diff --git a/.gitattributes b/.gitattributes index 55cab133643a2a73e083373d2106533678d0edd5..47d3b99403842255aec923c0bcbe6f6096d50ac7 100644 --- a/.gitattributes +++ b/.gitattributes @@ -56,3 +56,16 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text # Video files - compressed *.mp4 filter=lfs diff=lfs merge=lfs -text *.webm filter=lfs diff=lfs merge=lfs -text +database/baseball_1/baseball_1.sqlite filter=lfs diff=lfs merge=lfs -text +database/baseball_1/schema.sql filter=lfs diff=lfs merge=lfs -text +database/bike_1/bike_1.sqlite filter=lfs diff=lfs merge=lfs -text +database/college_2/college_2.sqlite filter=lfs diff=lfs merge=lfs -text +database/flight_4/flight_4.sqlite filter=lfs diff=lfs merge=lfs -text +database/formula_1/data_csv/lapTimes.csv filter=lfs diff=lfs merge=lfs -text +database/formula_1/formula_1.sqlite filter=lfs diff=lfs merge=lfs -text +database/sakila_1/sakila_1.sqlite filter=lfs diff=lfs merge=lfs -text +database/soccer_1/schema.sql filter=lfs diff=lfs merge=lfs -text +database/soccer_1/soccer_1.sqlite filter=lfs diff=lfs merge=lfs -text +database/store_1/store_1.sqlite filter=lfs diff=lfs merge=lfs -text +database/wta_1/wta_1.sqlite filter=lfs diff=lfs merge=lfs -text +train.json filter=lfs diff=lfs merge=lfs -text diff --git a/database/academic/academic.sqlite b/database/academic/academic.sqlite new file mode 100644 index 0000000000000000000000000000000000000000..a8ca1fcaa2a9071fa4c5fc31e6db42adf67ce972 Binary files /dev/null and b/database/academic/academic.sqlite differ diff --git a/database/academic/schema.sql b/database/academic/schema.sql new file mode 100644 index 0000000000000000000000000000000000000000..f78b5389d9e00d95ab5a0d9bb4ba69ab38d32d1b --- /dev/null +++ b/database/academic/schema.sql @@ -0,0 +1,108 @@ +PRAGMA foreign_keys = ON; +CREATE TABLE "author" ( +"aid" int, +"homepage" text, +"name" text, +"oid" int, +primary key("aid") +); +CREATE TABLE "conference" ( +"cid" int, +"homepage" text, +"name" text, +primary key ("cid") +); +CREATE TABLE "domain" ( +"did" int, +"name" text, +primary key ("did") +); +CREATE TABLE "domain_author" ( +"aid" int, +"did" int, +primary key ("did", "aid"), +foreign key("aid") references `author`("aid"), +foreign key("did") references `domain`("did") +); + +CREATE TABLE "domain_conference" ( +"cid" int, +"did" int, +primary key ("did", "cid"), +foreign key("cid") references `conference`("cid"), +foreign key("did") references `domain`("did") +); +CREATE TABLE "journal" ( +"homepage" text, +"jid" int, +"name" text, +primary key("jid") +); +CREATE TABLE "domain_journal" ( +"did" int, +"jid" int, +primary key ("did", "jid"), +foreign key("jid") references "journal"("jid"), +foreign key("did") references "domain"("did") +); +CREATE TABLE "keyword" ( +"keyword" text, +"kid" int, +primary key("kid") +); +CREATE TABLE "domain_keyword" ( +"did" int, +"kid" int, +primary key ("did", "kid"), +foreign key("kid") references "keyword"("kid"), +foreign key("did") references "domain"("did") +); +CREATE TABLE "publication" ( +"abstract" text, +"cid" text, +"citation_num" int, +"jid" int, +"pid" int, +"reference_num" int, +"title" text, +"year" int, +primary key("pid"), +foreign key("jid") references "journal"("jid"), +foreign key("cid") references "conference"("cid") +); +CREATE TABLE "domain_publication" ( +"did" int, +"pid" int, +primary key ("did", "pid"), +foreign key("pid") references "publication"("pid"), +foreign key("did") references "domain"("did") +); + +CREATE TABLE "organization" ( +"continent" text, +"homepage" text, +"name" text, +"oid" int, +primary key("oid") +); + +CREATE TABLE "publication_keyword" ( +"pid" int, +"kid" int, +primary key ("kid", "pid"), +foreign key("pid") references "publication"("pid"), +foreign key("kid") references "keyword"("kid") +); +CREATE TABLE "writes" ( +"aid" int, +"pid" int, +primary key ("aid", "pid"), +foreign key("pid") references "publication"("pid"), +foreign key("aid") references "author"("aid") +); +CREATE TABLE "cite" ( +"cited" int, +"citing" int, +foreign key("cited") references "publication"("pid"), +foreign key("citing") references "publication"("pid") +); diff --git a/database/activity_1/activity_1.sqlite b/database/activity_1/activity_1.sqlite new file mode 100644 index 0000000000000000000000000000000000000000..3226a20b0adc79993f4a00d9a5c2e8e61835d557 Binary files /dev/null and b/database/activity_1/activity_1.sqlite differ diff --git a/database/activity_1/schema.sql b/database/activity_1/schema.sql new file mode 100644 index 0000000000000000000000000000000000000000..ad20ed72797df12929cb4073c1ffd589bb4e972e --- /dev/null +++ b/database/activity_1/schema.sql @@ -0,0 +1,328 @@ +create table Activity ( + actid INTEGER PRIMARY KEY, + activity_name varchar(25) +); + +create table Participates_in ( + stuid INTEGER, + actid INTEGER, + FOREIGN KEY(stuid) REFERENCES Student(StuID), + FOREIGN KEY(actid) REFERENCES Activity(actid) +); + +create table Faculty_Participates_in ( + FacID INTEGER, + actid INTEGER, + FOREIGN KEY(FacID) REFERENCES Faculty(FacID), + FOREIGN KEY(actid) REFERENCES Activity(actid) +); + +create table Student ( + StuID INTEGER PRIMARY KEY, + LName VARCHAR(12), + Fname VARCHAR(12), + Age INTEGER, + Sex VARCHAR(1), + Major INTEGER, + Advisor INTEGER, + city_code VARCHAR(3) + ); + +create table Faculty ( + FacID INTEGER PRIMARY KEY, + Lname VARCHAR(15), + Fname VARCHAR(15), + Rank VARCHAR(15), + Sex VARCHAR(1), + Phone INTEGER, + Room VARCHAR(5), + Building VARCHAR(13) +); + + +insert into Faculty values ( 1082, 'Giuliano', 'Mark', 'Instructor', 'M', 2424, '224', 'NEB'); +insert into Faculty values ( 1121, 'Goodrich', 'Michael', 'Professor', 'M', 3593, '219', 'NEB'); +insert into Faculty values ( 1148, 'Masson', 'Gerald', 'Professor', 'M', 3402, '224B', 'NEB'); +insert into Faculty values ( 1193, 'Jones', 'Stacey', 'Instructor', 'F', 3550, '224', 'NEB'); +insert into Faculty values ( 2192, 'Yarowsky', 'David', 'AsstProf', 'M', 6587, '324', 'NEB'); +insert into Faculty values ( 3457, 'Smith', 'Scott', 'AssocProf', 'M', 1035, '318', 'NEB'); +insert into Faculty values ( 4230, 'Houlahan', 'Joanne', 'Instructor', 'F', 1260, '328', 'NEB'); +insert into Faculty values ( 6112, 'Beach', 'Louis', 'Instructor', 'M', 1838, '207', 'NEB'); +insert into Faculty values ( 7712, 'Awerbuch', 'Baruch', 'Professor', 'M', 2105, '220', 'NEB'); +insert into Faculty values ( 7792, 'Brill', 'Eric', 'AsstProf', 'M', 2303, '324B', 'NEB'); +insert into Faculty values ( 7723, 'Taylor', 'Russell', 'Professor', 'M', 2435, '317', 'NEB'); +insert into Faculty values ( 8114, 'Angelopoulou', 'Ellie', 'Instructor', 'F', 2152, '316', 'NEB'); +insert into Faculty values ( 8423, 'Kumar', 'Subodh', 'AsstProf', 'M', 2522, '218', 'NEB'); +insert into Faculty values ( 8721, 'Wolff', 'Lawrence', 'AssocProf', 'M', 2342, '316', 'NEB'); +insert into Faculty values ( 8741, 'Salzberg', 'Steven', 'AssocProf', 'M', 2641, '324A', 'NEB'); +insert into Faculty values ( 8918, 'Amir', 'Yair', 'AsstProf', 'M', 2672, '308', 'NEB'); +insert into Faculty values ( 9172, 'Kosaraju', 'Rao', 'Professor', 'M', 2757, '319', 'NEB'); +insert into Faculty values ( 9826, 'Delcher', 'Arthur', 'Instructor', 'M', 2956, '329', 'NEB'); +insert into Faculty values ( 1172, 'Runolfsson', 'Thordur', 'AssocProf', 'M', 3121, '119', 'Barton'); +insert into Faculty values ( 1177, 'Naiman', 'Daniel', 'Professor', 'M', 3571, '288', 'Krieger'); +insert into Faculty values ( 1823, 'Davidson', 'Frederic', 'Professor', 'M', 5629, '119', 'Barton'); +insert into Faculty values ( 2028, 'Brody', 'William', 'Professor', 'M', 6073, '119', 'Barton'); +insert into Faculty values ( 2119, 'Meyer', 'Gerard', 'Professor', 'M', 6350, '119', 'Barton'); +insert into Faculty values ( 2291, 'Scheinerman', 'Edward', 'Professor', 'M', 6654, '288', 'Krieger'); +insert into Faculty values ( 2311, 'Priebe', 'Carey', 'AsstProf', 'M', 6953, '288', 'Krieger'); +insert into Faculty values ( 2738, 'Fill', 'James', 'Professor', 'M', 8209, '288', 'Krieger'); +insert into Faculty values ( 2881, 'Goldman', 'Alan', 'Professor', 'M', 8335, '288', 'Krieger'); +insert into Faculty values ( 4432, 'Burzio', 'Luigi', 'Professor', 'M', 1813, '288', 'Krieger'); +insert into Faculty values ( 5718, 'Frank', 'Robert', 'AsstProf', 'M', 1751, '288', 'Krieger'); +insert into Faculty values ( 6182, 'Cheng', 'Cheng', 'AsstProf', 'M', 1856, '288', 'Krieger'); +insert into Faculty values ( 6191, 'Kaplan', 'Alexander', 'Professor', 'M', 1825, '119', 'Barton'); +insert into Faculty values ( 6330, 'Byrne', 'William', 'Instructor', 'M', 1691, '119', 'Barton'); +insert into Faculty values ( 6541, 'Han', 'Shih-Ping', 'Professor', 'M', 1914, '288', 'Krieger'); +insert into Faculty values ( 6910, 'Smolensky', 'Paul', 'Professor', 'M', 2072, '288', 'Krieger'); +insert into Faculty values ( 6925, 'Iglesias', 'Pablo', 'AsstProf', 'M', 2021, '119', 'Barton'); +insert into Faculty values ( 7134, 'Goutsias', 'John', 'Professor', 'M', 2184, '119', 'Barton'); +insert into Faculty values ( 7231, 'Rugh', 'Wilson', 'Professor', 'M', 2191, '119', 'Barton'); +insert into Faculty values ( 7271, 'Jelinek', 'Frederick', 'Professor', 'M', 2890, '119', 'Barton'); +insert into Faculty values ( 7506, 'Westgate', 'Charles', 'Professor', 'M', 2932, '119', 'Barton'); +insert into Faculty values ( 8102, 'James', 'Lancelot', 'AsstProf', 'M', 2792, '288', 'Krieger'); +insert into Faculty values ( 8118, 'Weinert', 'Howard', 'Professor', 'M', 3272, '119', 'Barton'); +insert into Faculty values ( 8122, 'Wierman', 'John', 'Professor', 'M', 3392,'288', 'Krieger'); +insert into Faculty values ( 8722, 'Cauwenberghs', 'Gert', 'AsstProf', 'M', 1372, '119', 'Barton'); +insert into Faculty values ( 8723, 'Andreou', 'Andreas', 'Professor', 'M', 1402, '119', 'Barton'); +insert into Faculty values ( 8772, 'Cowen', 'Lenore', 'AsstProf', 'F', 2870, '288', 'Krieger'); +insert into Faculty values ( 8791, 'McCloskey', 'Michael', 'Professor', 'M', 3440, '288', 'Krieger'); +insert into Faculty values ( 8989, 'Brent', 'Michael', 'AsstProf', 'M', 9373, '288', 'Krieger'); +insert into Faculty values ( 9011, 'Rapp', 'Brenda', 'AsstProf', 'F', 2032, '288', 'Krieger'); +insert into Faculty values ( 9191, 'Collins', 'Oliver', 'AssocProf', 'M', 5427, '119', 'Barton'); +insert into Faculty values ( 9199, 'Hughes', 'Brian', 'AssocProf', 'M', 5666, '119', 'Barton'); +insert into Faculty values ( 9210, 'Joseph', 'Richard', 'Professor', 'M', 5996, '119', 'Barton'); +insert into Faculty values ( 9514, 'Prince', 'Jerry', 'AssocProf', 'M', 5106, '119', 'Barton'); +insert into Faculty values ( 9823, 'Pang', 'Jong-Shi', 'Professor', 'M', 4366, '288', 'Krieger'); +insert into Faculty values ( 9824, 'Glaser', 'Robert', 'Instructor', 'M', 4396, '119', 'Barton'); +insert into Faculty values ( 9811, 'Wu', 'Colin', 'AsstProf', 'M', 2906, '288', 'Krieger'); +insert into Faculty values ( 9643, 'Legendre', 'Geraldine', 'AssocProf', 'F', 8972, '288', 'Krieger'); +insert into Faculty values ( 9379, 'Khurgin', 'Jacob', 'Professor', 'M', 1060, '119', 'Barton'); +insert into Faculty values ( 9922, 'Hall', 'Leslie', 'AsstProf', 'F', 7332, '288', 'Krieger'); + +insert into Student values ( 1001, 'Smith', 'Linda', 18, 'F', 600, 1121,'BAL'); + insert into Student values ( 1002, 'Kim', 'Tracy', 19, 'F', 600, 7712,'HKG'); + insert into Student values ( 1003, 'Jones', 'Shiela', 21, 'F', 600, 7792,'WAS'); + insert into Student values ( 1004, 'Kumar', 'Dinesh', 20, 'M', 600, 8423,'CHI'); + insert into Student values ( 1005, 'Gompers', 'Paul', 26, 'M', 600, 1121,'YYZ'); + insert into Student values ( 1006, 'Schultz', 'Andy', 18, 'M', 600, 1148,'BAL'); + insert into Student values ( 1007, 'Apap', 'Lisa', 18, 'F', 600, 8918,'PIT'); + insert into Student values ( 1008, 'Nelson', 'Jandy', 20, 'F', 600, 9172,'BAL'); + insert into Student values ( 1009, 'Tai', 'Eric', 19, 'M', 600, 2192,'YYZ'); + insert into Student values ( 1010, 'Lee', 'Derek', 17, 'M', 600, 2192,'HOU'); + insert into Student values ( 1011, 'Adams', 'David', 22, 'M', 600, 1148,'PHL'); + insert into Student values ( 1012, 'Davis', 'Steven', 20, 'M', 600, 7723,'PIT'); + insert into Student values ( 1014, 'Norris', 'Charles', 18, 'M', 600, 8741, 'DAL'); + insert into Student values ( 1015, 'Lee', 'Susan', 16, 'F', 600, 8721,'HKG'); + insert into Student values ( 1016, 'Schwartz', 'Mark', 17, 'M', 600, 2192,'DET'); + insert into Student values ( 1017, 'Wilson', 'Bruce', 27, 'M', 600, 1148,'LON'); + insert into Student values ( 1018, 'Leighton', 'Michael', 20, 'M', 600, 1121, 'PIT'); + insert into Student values ( 1019, 'Pang', 'Arthur', 18, 'M', 600, 2192,'WAS'); + insert into Student values ( 1020, 'Thornton', 'Ian', 22, 'M', 520, 7271,'NYC'); + insert into Student values ( 1021, 'Andreou', 'George', 19, 'M', 520, 8722, 'NYC'); + insert into Student values ( 1022, 'Woods', 'Michael', 17, 'M', 540, 8722,'PHL'); + insert into Student values ( 1023, 'Shieber', 'David', 20, 'M', 520, 8722,'NYC'); + insert into Student values ( 1024, 'Prater', 'Stacy', 18, 'F', 540, 7271,'BAL'); + insert into Student values ( 1025, 'Goldman', 'Mark', 18, 'M', 520, 7134,'PIT'); + insert into Student values ( 1026, 'Pang', 'Eric', 19, 'M', 520, 7134,'HKG'); + insert into Student values ( 1027, 'Brody', 'Paul', 18, 'M', 520, 8723,'LOS'); + insert into Student values ( 1028, 'Rugh', 'Eric', 20, 'M', 550, 2311,'ROC'); + insert into Student values ( 1029, 'Han', 'Jun', 17, 'M', 100, 2311,'PEK'); + insert into Student values ( 1030, 'Cheng', 'Lisa', 21, 'F', 550, 2311,'SFO'); + insert into Student values ( 1031, 'Smith', 'Sarah', 20, 'F', 550, 8772,'PHL'); + insert into Student values ( 1032, 'Brown', 'Eric', 20, 'M', 550, 8772,'ATL'); + insert into Student values ( 1033, 'Simms', 'William', 18, 'M', 550, 8772,'NAR'); + insert into Student values ( 1034, 'Epp', 'Eric', 18, 'M', 050, 5718,'BOS'); + insert into Student values ( 1035, 'Schmidt', 'Sarah', 26, 'F', 050, 5718,'WAS'); + +insert into Activity values ( 770 , 'Mountain Climbing' ) ; +insert into Activity values ( 771 , 'Canoeing' ) ; +insert into Activity values ( 772 , 'Kayaking' ) ; +insert into Activity values ( 773 , 'Spelunking' ) ; +insert into Activity values ( 777 , 'Soccer' ) ; +insert into Activity values ( 778 , 'Baseball' ) ; +insert into Activity values ( 780 , 'Football' ) ; +insert into Activity values ( 782 , 'Volleyball' ) ; +insert into Activity values ( 799 , 'Bungee Jumping' ) ; +insert into Activity values ( 779 , 'Accordion Ensemble' ) ; +insert into Activity values ( 784 , 'Canasta' ) ; +insert into Activity values ( 785 , 'Chess' ) ; +insert into Activity values ( 776 , 'Extreme Canasta' ) ; +insert into Activity values ( 790 , 'Crossword Puzzles' ) ; +insert into Activity values ( 791 , 'Proselytizing' ) ; +insert into Activity values ( 796 , 'Square Dancing' ) ; + + + + +insert into Participates_in values (1001 , 770) ; +insert into Participates_in values (1001 , 771) ; +insert into Participates_in values (1001 , 777) ; + +insert into Participates_in values (1002 , 772) ; +insert into Participates_in values (1002 , 771) ; + +insert into Participates_in values (1003 , 778) ; + + +insert into Participates_in values (1004 , 780) ; +insert into Participates_in values (1004 , 782) ; +insert into Participates_in values (1004 , 778) ; +insert into Participates_in values (1004 , 777) ; + +insert into Participates_in values (1005 , 770) ; + + +insert into Participates_in values (1006 , 773) ; + + +insert into Participates_in values (1007 , 773) ; +insert into Participates_in values (1007 , 784) ; + +insert into Participates_in values (1008 , 785) ; +insert into Participates_in values (1008 , 773) ; +insert into Participates_in values (1008 , 780) ; +insert into Participates_in values (1008 , 790) ; + +insert into Participates_in values (1009 , 778) ; +insert into Participates_in values (1009 , 777) ; +insert into Participates_in values (1009 , 782) ; + +insert into Participates_in values (1010 , 780) ; + + +insert into Participates_in values (1011 , 780) ; + + +insert into Participates_in values (1012 , 780) ; + + +insert into Participates_in values (1014 , 780) ; +insert into Participates_in values (1014 , 777) ; +insert into Participates_in values (1014 , 778) ; +insert into Participates_in values (1014 , 782) ; +insert into Participates_in values (1014 , 770) ; +insert into Participates_in values (1014 , 772) ; + +insert into Participates_in values (1015 , 785) ; + + +insert into Participates_in values (1016 , 791) ; +insert into Participates_in values (1016 , 772) ; + +insert into Participates_in values (1017 , 791) ; +insert into Participates_in values (1017 , 771) ; +insert into Participates_in values (1017 , 770) ; + +insert into Participates_in values (1018 , 790) ; +insert into Participates_in values (1018 , 785) ; +insert into Participates_in values (1018 , 784) ; +insert into Participates_in values (1018 , 777) ; +insert into Participates_in values (1018 , 772) ; +insert into Participates_in values (1018 , 770) ; + +insert into Participates_in values (1019 , 785) ; +insert into Participates_in values (1019 , 790) ; + +insert into Participates_in values (1020 , 780) ; + + +insert into Participates_in values (1021 , 780) ; +insert into Participates_in values (1021 , 776) ; + +insert into Participates_in values (1022 , 782) ; +insert into Participates_in values (1022 , 790) ; + +insert into Participates_in values (1023 , 790) ; +insert into Participates_in values (1023 , 776) ; + +insert into Participates_in values (1024 , 778) ; +insert into Participates_in values (1024 , 777) ; +insert into Participates_in values (1024 , 780) ; + +insert into Participates_in values (1025 , 780) ; +insert into Participates_in values (1025 , 777) ; +insert into Participates_in values (1025 , 770) ; + +insert into Participates_in values (1028 , 785) ; + + +insert into Participates_in values (1029 , 785) ; +insert into Participates_in values (1029 , 790) ; + +insert into Participates_in values (1030 , 780) ; +insert into Participates_in values (1030 , 790) ; + +insert into Participates_in values (1033 , 780) ; + +insert into Participates_in values (1034 , 780) ; +insert into Participates_in values (1034 , 777) ; +insert into Participates_in values (1034 , 772) ; +insert into Participates_in values (1034 , 771) ; + +insert into Participates_in values (1035 , 777) ; +insert into Participates_in values (1035 , 780) ; +insert into Participates_in values (1035 , 784) ; + + + + + + +insert into Faculty_Participates_in values ( 1082, 784) ; +insert into Faculty_Participates_in values ( 1082, 785) ; +insert into Faculty_Participates_in values ( 1082, 790) ; + +insert into Faculty_Participates_in values ( 1121, 771) ; +insert into Faculty_Participates_in values ( 1121, 777) ; +insert into Faculty_Participates_in values ( 1121, 770) ; + +insert into Faculty_Participates_in values ( 1193, 790) ; +insert into Faculty_Participates_in values ( 1193, 796) ; +insert into Faculty_Participates_in values ( 1193, 773) ; + +insert into Faculty_Participates_in values ( 2192, 773) ; +insert into Faculty_Participates_in values ( 2192, 790) ; +insert into Faculty_Participates_in values ( 2192, 778) ; + +insert into Faculty_Participates_in values ( 3457, 782) ; +insert into Faculty_Participates_in values ( 3457, 771) ; +insert into Faculty_Participates_in values ( 3457, 784) ; + +insert into Faculty_Participates_in values ( 4230, 790) ; +insert into Faculty_Participates_in values ( 4230, 785) ; + +insert into Faculty_Participates_in values ( 6112, 785) ; +insert into Faculty_Participates_in values ( 6112, 772) ; + +insert into Faculty_Participates_in values ( 7723, 785) ; +insert into Faculty_Participates_in values ( 7723, 770) ; + +insert into Faculty_Participates_in values ( 8114, 776) ; + +insert into Faculty_Participates_in values ( 8721, 770) ; +insert into Faculty_Participates_in values ( 8721, 780) ; + +insert into Faculty_Participates_in values ( 8741, 780) ; +insert into Faculty_Participates_in values ( 8741, 790) ; + +insert into Faculty_Participates_in values ( 8918, 780) ; +insert into Faculty_Participates_in values ( 8918, 782) ; +insert into Faculty_Participates_in values ( 8918, 771) ; + +insert into Faculty_Participates_in values ( 2881, 790) ; +insert into Faculty_Participates_in values ( 2881, 784) ; + +insert into Faculty_Participates_in values ( 4432, 770) ; +insert into Faculty_Participates_in values ( 4432, 771) ; + +insert into Faculty_Participates_in values ( 5718, 776) ; + + +insert into Faculty_Participates_in values ( 6182, 776) ; +insert into Faculty_Participates_in values ( 6182, 785) ; + +insert into Faculty_Participates_in values ( 1177, 790) ; +insert into Faculty_Participates_in values ( 1177, 770) ; +insert into Faculty_Participates_in values ( 1177, 770) ; + +insert into Faculty_Participates_in values ( 9922, 796) ; diff --git a/database/aircraft/aircraft.sqlite b/database/aircraft/aircraft.sqlite new file mode 100644 index 0000000000000000000000000000000000000000..23967c90aa67bff8ee56332781f5ec9fa7ad6fd4 Binary files /dev/null and b/database/aircraft/aircraft.sqlite differ diff --git a/database/aircraft/schema.sql b/database/aircraft/schema.sql new file mode 100644 index 0000000000000000000000000000000000000000..6d0bd2a3c8fafcdbc5df34b4a44d625292fcb7ae --- /dev/null +++ b/database/aircraft/schema.sql @@ -0,0 +1,108 @@ + +PRAGMA foreign_keys = ON; + + +CREATE TABLE `pilot` ( + `Pilot_Id` int(11) NOT NULL, + `Name` varchar(50) NOT NULL, + `Age` int(11) NOT NULL, + PRIMARY KEY (`Pilot_Id`) +); + +INSERT INTO `pilot` (`Pilot_Id`, `Name`, `age`) VALUES (1, 'Prof. Zackery Collins', 23); +INSERT INTO `pilot` (`Pilot_Id`, `Name`, `age`) VALUES (2, 'Katheryn Gorczany IV', 20); +INSERT INTO `pilot` (`Pilot_Id`, `Name`, `age`) VALUES (3, 'Mr. Cristian Halvorson II', 23); +INSERT INTO `pilot` (`Pilot_Id`, `Name`, `age`) VALUES (4, 'Ayana Spencer', 25); +INSERT INTO `pilot` (`Pilot_Id`, `Name`, `age`) VALUES (5, 'Ellen Ledner III', 31); +INSERT INTO `pilot` (`Pilot_Id`, `Name`, `age`) VALUES (6, 'Elisha Hickle V', 37); +INSERT INTO `pilot` (`Pilot_Id`, `Name`, `age`) VALUES (7, 'Dr. Jade Bradtke V', 26); +INSERT INTO `pilot` (`Pilot_Id`, `Name`, `age`) VALUES (8, 'Winnifred Boyle', 30); +INSERT INTO `pilot` (`Pilot_Id`, `Name`, `age`) VALUES (9, 'Della Lindgren', 29); +INSERT INTO `pilot` (`Pilot_Id`, `Name`, `age`) VALUES (10, 'Maxwell Graham', 26); +INSERT INTO `pilot` (`Pilot_Id`, `Name`, `age`) VALUES (11, 'Blaise Muller', 33); +INSERT INTO `pilot` (`Pilot_Id`, `Name`, `age`) VALUES (12, 'Baylee Steuber', 30); + + +CREATE TABLE `aircraft` ( + "Aircraft_ID" int(11) NOT NULL, + "Aircraft" varchar(50) NOT NULL, + "Description" varchar(50) NOT NULL, + "Max_Gross_Weight" varchar(50) NOT NULL, + "Total_disk_area" varchar(50) NOT NULL, + "Max_disk_Loading" varchar(50) NOT NULL, + PRIMARY KEY (`Aircraft_ID`) +); + + +CREATE TABLE `match` ( +"Round" real, +"Location" text, +"Country" text, +"Date" text, +"Fastest_Qualifying" text, +"Winning_Pilot" text, +"Winning_Aircraft" text, +PRIMARY KEY ("Round"), +FOREIGN KEY (`Winning_Aircraft`) REFERENCES `aircraft`(`Aircraft_ID`), +FOREIGN KEY (`Winning_Pilot`) REFERENCES `pilot`(`Pilot_Id`) +); + +CREATE TABLE `airport` ( +"Airport_ID" int, +"Airport_Name" text, +"Total_Passengers" real, +"%_Change_2007" text, +"International_Passengers" real, +"Domestic_Passengers" real, +"Transit_Passengers" real, +"Aircraft_Movements" real, +"Freight_Metric_Tonnes" real, +PRIMARY KEY ("Airport_ID") +); + +CREATE TABLE `airport_aircraft` ( +"ID" int, +"Airport_ID" int, +"Aircraft_ID" int, +PRIMARY KEY ("Airport_ID","Aircraft_ID"), +FOREIGN KEY ("Airport_ID") REFERENCES `airport`(`Airport_ID`), +FOREIGN KEY ("Aircraft_ID") REFERENCES `aircraft`(`Aircraft_ID`) +); + + + +INSERT INTO "aircraft" VALUES (1,"Robinson R-22","Light utility helicopter","1,370 lb (635 kg)","497 ft² (46.2 m²)","2.6 lb/ft² (14 kg/m²)"); +INSERT INTO "aircraft" VALUES (2,"Bell 206B3 JetRanger","Turboshaft utility helicopter","3,200 lb (1,451 kg)","872 ft² (81.1 m²)","3.7 lb/ft² (18 kg/m²)"); +INSERT INTO "aircraft" VALUES (3,"CH-47D Chinook","Tandem rotor helicopter","50,000 lb (22,680 kg)","5,655 ft² (526 m²)","8.8 lb/ft² (43 kg/m²)"); +INSERT INTO "aircraft" VALUES (4,"Mil Mi-26","Heavy-lift helicopter","123,500 lb (56,000 kg)","8,495 ft² (789 m²)","14.5 lb/ft² (71 kg/m²)"); +INSERT INTO "aircraft" VALUES (5,"CH-53E Super Stallion","Heavy-lift helicopter","73,500 lb (33,300 kg)","4,900 ft² (460 m²)","15 lb/ft² (72 kg/m²)"); + + +INSERT INTO "match" VALUES ("1","Mina' Zayid , Abu Dhabi","United Arab Emirates","March 26–27","Hannes Arch",1,1); +INSERT INTO "match" VALUES ("2","Swan River , Perth","Australia","April 17–18","Paul Bonhomme",4,1); +INSERT INTO "match" VALUES ("3","Flamengo Beach , Rio de Janeiro","Brazil","May 8–9","Hannes Arch",6,2); +INSERT INTO "match" VALUES ("4","Windsor , Ontario","Canada","June 5–6","Nigel Lamb",4,4); +INSERT INTO "match" VALUES ("5","New York City","United States","June 19–20","Hannes Arch",9,3); +INSERT INTO "match" VALUES ("6","EuroSpeedway Lausitz","Germany","August 7–8","Paul Bonhomme",2,4); +INSERT INTO "match" VALUES ("7","River Danube , Budapest","Hungary","Cancelled","Cancelled",6,5); + + + +INSERT INTO "airport" VALUES (1,"London Heathrow","67054745","1.5%","61344438","5562516","147791","478693","1397054"); +INSERT INTO "airport" VALUES (2,"London Gatwick","34205887","2.9%","30431051","3730963","43873","263653","107702"); +INSERT INTO "airport" VALUES (3,"London Stansted","22360364","6.0%","19996947","2343428","19989","193282","197738"); +INSERT INTO "airport" VALUES (4,"Manchester","21219195","4.0%","18119230","2943719","156246","204610","141781"); +INSERT INTO "airport" VALUES (5,"London Luton","10180734","2.6%","8853224","1320678","6832","117859","40518"); +INSERT INTO "airport" VALUES (6,"Birmingham Airport","9627589","4.3%","8105162","1471538","50889","112227","12192"); +INSERT INTO "airport" VALUES (7,"Edinburgh","9006702","0.5%","3711140","5281038","14524","125550","12418"); +INSERT INTO "airport" VALUES (8,"Glasgow International","8178891","7.0%","3943139","4192121","43631","100087","3546"); +INSERT INTO "airport" VALUES (9,"Bristol","6267114","5.7%","5057051","1171605","38458","76517","3"); +INSERT INTO "airport" VALUES (10,"East Midlands","5620673","3.8%","4870184","746094","4395","93038","261507"); + + + +INSERT INTO "airport_aircraft" VALUES (1,6,5); +INSERT INTO "airport_aircraft" VALUES (2,2,1); +INSERT INTO "airport_aircraft" VALUES (3,1,2); +INSERT INTO "airport_aircraft" VALUES (4,9,3); + diff --git a/database/allergy_1/allergy_1.sqlite b/database/allergy_1/allergy_1.sqlite new file mode 100644 index 0000000000000000000000000000000000000000..4c8e83e71d214bcbc9996af75a9af6cf6cf5a956 Binary files /dev/null and b/database/allergy_1/allergy_1.sqlite differ diff --git a/database/allergy_1/schema.sql b/database/allergy_1/schema.sql new file mode 100644 index 0000000000000000000000000000000000000000..652be297f814efdca2b91e93855784ab25c19222 --- /dev/null +++ b/database/allergy_1/schema.sql @@ -0,0 +1,132 @@ +create table Allergy_Type ( + Allergy VARCHAR(20) PRIMARY KEY, + AllergyType VARCHAR(20) +); + +create table Has_Allergy ( + StuID INTEGER, + Allergy VARCHAR(20), + FOREIGN KEY(StuID) REFERENCES Student(StuID), + FOREIGN KEY(Allergy) REFERENCES Allergy_Type(Allergy) +); + +create table Student ( + StuID INTEGER PRIMARY KEY, + LName VARCHAR(12), + Fname VARCHAR(12), + Age INTEGER, + Sex VARCHAR(1), + Major INTEGER, + Advisor INTEGER, + city_code VARCHAR(3) + ); + +insert into Student values ( 1001, 'Smith', 'Linda', 18, 'F', 600, 1121,'BAL'); + insert into Student values ( 1002, 'Kim', 'Tracy', 19, 'F', 600, 7712,'HKG'); + insert into Student values ( 1003, 'Jones', 'Shiela', 21, 'F', 600, 7792,'WAS'); + insert into Student values ( 1004, 'Kumar', 'Dinesh', 20, 'M', 600, 8423,'CHI'); + insert into Student values ( 1005, 'Gompers', 'Paul', 26, 'M', 600, 1121,'YYZ'); + insert into Student values ( 1006, 'Schultz', 'Andy', 18, 'M', 600, 1148,'BAL'); + insert into Student values ( 1007, 'Apap', 'Lisa', 18, 'F', 600, 8918,'PIT'); + insert into Student values ( 1008, 'Nelson', 'Jandy', 20, 'F', 600, 9172,'BAL'); + insert into Student values ( 1009, 'Tai', 'Eric', 19, 'M', 600, 2192,'YYZ'); + insert into Student values ( 1010, 'Lee', 'Derek', 17, 'M', 600, 2192,'HOU'); + insert into Student values ( 1011, 'Adams', 'David', 22, 'M', 600, 1148,'PHL'); + insert into Student values ( 1012, 'Davis', 'Steven', 20, 'M', 600, 7723,'PIT'); + insert into Student values ( 1014, 'Norris', 'Charles', 18, 'M', 600, 8741, 'DAL'); + insert into Student values ( 1015, 'Lee', 'Susan', 16, 'F', 600, 8721,'HKG'); + insert into Student values ( 1016, 'Schwartz', 'Mark', 17, 'M', 600, 2192,'DET'); + insert into Student values ( 1017, 'Wilson', 'Bruce', 27, 'M', 600, 1148,'LON'); + insert into Student values ( 1018, 'Leighton', 'Michael', 20, 'M', 600, 1121, 'PIT'); + insert into Student values ( 1019, 'Pang', 'Arthur', 18, 'M', 600, 2192,'WAS'); + insert into Student values ( 1020, 'Thornton', 'Ian', 22, 'M', 520, 7271,'NYC'); + insert into Student values ( 1021, 'Andreou', 'George', 19, 'M', 520, 8722, 'NYC'); + insert into Student values ( 1022, 'Woods', 'Michael', 17, 'M', 540, 8722,'PHL'); + insert into Student values ( 1023, 'Shieber', 'David', 20, 'M', 520, 8722,'NYC'); + insert into Student values ( 1024, 'Prater', 'Stacy', 18, 'F', 540, 7271,'BAL'); + insert into Student values ( 1025, 'Goldman', 'Mark', 18, 'M', 520, 7134,'PIT'); + insert into Student values ( 1026, 'Pang', 'Eric', 19, 'M', 520, 7134,'HKG'); + insert into Student values ( 1027, 'Brody', 'Paul', 18, 'M', 520, 8723,'LOS'); + insert into Student values ( 1028, 'Rugh', 'Eric', 20, 'M', 550, 2311,'ROC'); + insert into Student values ( 1029, 'Han', 'Jun', 17, 'M', 100, 2311,'PEK'); + insert into Student values ( 1030, 'Cheng', 'Lisa', 21, 'F', 550, 2311,'SFO'); + insert into Student values ( 1031, 'Smith', 'Sarah', 20, 'F', 550, 8772,'PHL'); + insert into Student values ( 1032, 'Brown', 'Eric', 20, 'M', 550, 8772,'ATL'); + insert into Student values ( 1033, 'Simms', 'William', 18, 'M', 550, 8772,'NAR'); + insert into Student values ( 1034, 'Epp', 'Eric', 18, 'M', 050, 5718,'BOS'); + insert into Student values ( 1035, 'Schmidt', 'Sarah', 26, 'F', 050, 5718,'WAS'); + +insert into Has_Allergy values ( 1001, 'Cat' ); +insert into Has_Allergy values ( 1002, 'Shellfish' ); +insert into Has_Allergy values ( 1002, 'Tree Pollen' ); +insert into Has_Allergy values ( 1003, 'Dog' ); +insert into Has_Allergy values ( 1004, 'Nuts' ); +insert into Has_Allergy values ( 1005, 'Nuts' ); +insert into Has_Allergy values ( 1005, 'Tree Pollen' ); +insert into Has_Allergy values ( 1006, 'Nuts' ); +insert into Has_Allergy values ( 1007, 'Ragweed' ); +insert into Has_Allergy values ( 1007, 'Tree Pollen' ); +insert into Has_Allergy values ( 1007, 'Grass Pollen' ); +insert into Has_Allergy values ( 1007, 'Eggs' ); +insert into Has_Allergy values ( 1007, 'Milk' ); +insert into Has_Allergy values ( 1007, 'Shellfish' ); +insert into Has_Allergy values ( 1007, 'Anchovies' ); +insert into Has_Allergy values ( 1007, 'Cat' ); +insert into Has_Allergy values ( 1007, 'Dog' ); +insert into Has_Allergy values ( 1009, 'Tree Pollen' ); +insert into Has_Allergy values ( 1010, 'Ragweed' ); +insert into Has_Allergy values ( 1010, 'Tree Pollen' ); +insert into Has_Allergy values ( 1010, 'Grass Pollen' ); +insert into Has_Allergy values ( 1010, 'Eggs' ); +insert into Has_Allergy values ( 1010, 'Milk' ); +insert into Has_Allergy values ( 1010, 'Shellfish' ); +insert into Has_Allergy values ( 1010, 'Anchovies' ); +insert into Has_Allergy values ( 1010, 'Cat' ); +insert into Has_Allergy values ( 1010, 'Dog' ); +insert into Has_Allergy values ( 1011, 'Ragweed' ); +insert into Has_Allergy values ( 1012, 'Ragweed' ); +insert into Has_Allergy values ( 1013, 'Ragweed' ); +insert into Has_Allergy values ( 1014, 'Nuts' ); +insert into Has_Allergy values ( 1015, 'Nuts' ); +insert into Has_Allergy values ( 1015, 'Soy' ); +insert into Has_Allergy values ( 1016, 'Nuts' ); +insert into Has_Allergy values ( 1016, 'Milk' ); +insert into Has_Allergy values ( 1017, 'Tree Pollen' ); +insert into Has_Allergy values ( 1018, 'Nuts' ); +insert into Has_Allergy values ( 1018, 'Soy' ); +insert into Has_Allergy values ( 1019, 'Tree Pollen' ); +insert into Has_Allergy values ( 1020, 'Tree Pollen' ); +insert into Has_Allergy values ( 1021, 'Tree Pollen' ); +insert into Has_Allergy values ( 1022, 'Nuts' ); +insert into Has_Allergy values ( 1022, 'Anchovies' ); +insert into Has_Allergy values ( 1023, 'Rodent' ); +insert into Has_Allergy values ( 1023, 'Cat' ); +insert into Has_Allergy values ( 1023, 'Nuts' ); +insert into Has_Allergy values ( 1024, 'Ragweed' ); +insert into Has_Allergy values ( 1024, 'Tree Pollen' ); +insert into Has_Allergy values ( 1025, 'Tree Pollen' ); +insert into Has_Allergy values ( 1026, 'Grass Pollen' ); +insert into Has_Allergy values ( 1027, 'Tree Pollen' ); +insert into Has_Allergy values ( 1028, 'Tree Pollen' ); +insert into Has_Allergy values ( 1029, 'Soy' ); +insert into Has_Allergy values ( 1029, 'Nuts' ); +insert into Has_Allergy values ( 1029, 'Eggs' ); +insert into Has_Allergy values ( 1030, 'Grass Pollen' ); +insert into Has_Allergy values ( 1031, 'Nuts' ); +insert into Has_Allergy values ( 1031, 'Shellfish' ); +insert into Has_Allergy values ( 1031, 'Soy' ); + +insert into Allergy_Type values ( 'Eggs', 'food' ); +insert into Allergy_Type values ( 'Nuts', 'food' ); +insert into Allergy_Type values ( 'Milk', 'food' ); +insert into Allergy_Type values ( 'Shellfish', 'food' ); +insert into Allergy_Type values ( 'Anchovies', 'food' ); +insert into Allergy_Type values ( 'Wheat', 'food' ); +insert into Allergy_Type values ( 'Soy', 'food' ); +insert into Allergy_Type values ( 'Ragweed', 'environmental' ); +insert into Allergy_Type values ( 'Tree Pollen', 'environmental' ); +insert into Allergy_Type values ( 'Grass Pollen', 'environmental' ); +insert into Allergy_Type values ( 'Cat', 'animal' ); +insert into Allergy_Type values ( 'Dog', 'animal' ); +insert into Allergy_Type values ( 'Rodent', 'animal' ); +insert into Allergy_Type values ( 'Bee Stings', 'animal' ); diff --git a/database/apartment_rentals/apartment_rentals.sqlite b/database/apartment_rentals/apartment_rentals.sqlite new file mode 100644 index 0000000000000000000000000000000000000000..52fac7d3652db0d983b23dd55e5721d516211955 Binary files /dev/null and b/database/apartment_rentals/apartment_rentals.sqlite differ diff --git a/database/apartment_rentals/schema.sql b/database/apartment_rentals/schema.sql new file mode 100644 index 0000000000000000000000000000000000000000..d27df125dcade9b67624d8f6a9d284a4217b9c7c --- /dev/null +++ b/database/apartment_rentals/schema.sql @@ -0,0 +1,170 @@ +PRAGMA foreign_keys = ON; + +CREATE TABLE Apartment_Buildings ( +building_id INTEGER NOT NULL, +building_short_name CHAR(15), +building_full_name VARCHAR(80), +building_description VARCHAR(255), +building_address VARCHAR(255), +building_manager VARCHAR(50), +building_phone VARCHAR(80), +PRIMARY KEY (building_id), +UNIQUE (building_id) +); + +INSERT INTO `Apartment_Buildings` (`building_id`, `building_short_name`, `building_full_name`, `building_description`, `building_address`, `building_manager`, `building_phone`) VALUES (133, 'Normandie Court', 'Normandie Court', 'Studio', '7950 Casper Vista Apt. 176 +Marquiseberg, CA 70496', 'Emma', '(948)040-1064x387'); +INSERT INTO `Apartment_Buildings` (`building_id`, `building_short_name`, `building_full_name`, `building_description`, `building_address`, `building_manager`, `building_phone`) VALUES (153, 'Mercedes House', 'Mercedes House', 'Studio', '354 Otto Villages +Charliefort, VT 71664', 'Brenden', '915-617-2408x832'); +INSERT INTO `Apartment_Buildings` (`building_id`, `building_short_name`, `building_full_name`, `building_description`, `building_address`, `building_manager`, `building_phone`) VALUES (191, 'The Eugene', 'The Eugene', 'Flat', '71537 Gorczany Inlet +Wisozkburgh, AL 08256', 'Melyssa', '(609)946-0491'); +INSERT INTO `Apartment_Buildings` (`building_id`, `building_short_name`, `building_full_name`, `building_description`, `building_address`, `building_manager`, `building_phone`) VALUES (196, 'VIA 57 WEST', 'VIA 57 WEST', 'Studio', '959 Ethel Viaduct +West Efrainburgh, DE 40074', 'Kathlyn', '681.772.2454'); +INSERT INTO `Apartment_Buildings` (`building_id`, `building_short_name`, `building_full_name`, `building_description`, `building_address`, `building_manager`, `building_phone`) VALUES (225, 'Columbus Square', 'Columbus Square', 'Studio', '0703 Danika Mountains Apt. 362 +Mohrland, AL 56839-5028', 'Kyle', '1-724-982-9507x640'); +INSERT INTO `Apartment_Buildings` (`building_id`, `building_short_name`, `building_full_name`, `building_description`, `building_address`, `building_manager`, `building_phone`) VALUES (532, 'Avalon Park', 'Avalon Park', 'Duplex', '6827 Kessler Parkway Suite 908 +Ahmedberg, WI 48788', 'Albert', '376-017-3538'); +INSERT INTO `Apartment_Buildings` (`building_id`, `building_short_name`, `building_full_name`, `building_description`, `building_address`, `building_manager`, `building_phone`) VALUES (556, 'Peter Cooper Village', 'Peter Cooper Village', 'Flat', '861 Narciso Glens Suite 392 +East Ottis, ND 73970', 'Darlene', '1-224-619-0295x13195'); +INSERT INTO `Apartment_Buildings` (`building_id`, `building_short_name`, `building_full_name`, `building_description`, `building_address`, `building_manager`, `building_phone`) VALUES (624, 'Stuyvesant Town', 'Stuyvesant Town', 'Studio', '101 Queenie Mountains Suite 619 +New Korbinmouth, KS 88726-1376', 'Marie', '(145)411-6406'); +INSERT INTO `Apartment_Buildings` (`building_id`, `building_short_name`, `building_full_name`, `building_description`, `building_address`, `building_manager`, `building_phone`) VALUES (644, 'The Anthem', 'The Anthem', 'Flat', '50804 Mason Isle Suite 844 +West Whitney, ID 66511', 'Ewald', '(909)086-5221x3455'); +INSERT INTO `Apartment_Buildings` (`building_id`, `building_short_name`, `building_full_name`, `building_description`, `building_address`, `building_manager`, `building_phone`) VALUES (673, 'Barclay Tower', 'Barclay Tower', 'Flat', '1579 Runte Forges Apt. 548 +Leuschkeland, OK 12009-8683', 'Rogers', '1-326-267-3386x613'); +INSERT INTO `Apartment_Buildings` (`building_id`, `building_short_name`, `building_full_name`, `building_description`, `building_address`, `building_manager`, `building_phone`) VALUES (734, 'Windsor Court', 'Windsor Court', 'Studio', '601 Graham Roads +Port Luz, VA 29660-6703', 'Olaf', '(480)480-7401'); +INSERT INTO `Apartment_Buildings` (`building_id`, `building_short_name`, `building_full_name`, `building_description`, `building_address`, `building_manager`, `building_phone`) VALUES (744, 'Silver Towers', 'Silver Towers', 'Flat', '1844 Armstrong Stravenue Suite 853 +Myrnatown, CT 13528', 'Claude', '1-667-728-2287x3158'); +INSERT INTO `Apartment_Buildings` (`building_id`, `building_short_name`, `building_full_name`, `building_description`, `building_address`, `building_manager`, `building_phone`) VALUES (790, 'Biltmore Plaza', 'Biltmore Plaza', 'Duplex', '489 Josh Orchard Apt. 998 +Sipesview, DE 69053', 'Sydni', '544-148-5565x2847'); +INSERT INTO `Apartment_Buildings` (`building_id`, `building_short_name`, `building_full_name`, `building_description`, `building_address`, `building_manager`, `building_phone`) VALUES (808, 'Petersfield', 'Petersfield', 'Studio', '54686 Christopher Circles Apt. 321 +Daytonland, ID 88081-3991', 'Juvenal', '318-398-8140'); +INSERT INTO `Apartment_Buildings` (`building_id`, `building_short_name`, `building_full_name`, `building_description`, `building_address`, `building_manager`, `building_phone`) VALUES (968, 'The Clinton', 'The Clinton', 'Flat', '012 Arnoldo Mountain +Gerholdland, ID 23342', 'Holly', '1-605-511-1973x25011'); + +CREATE TABLE Apartments ( +apt_id INTEGER NOT NULL , +building_id INTEGER NOT NULL, +apt_type_code CHAR(15), +apt_number CHAR(10), +bathroom_count INTEGER, +bedroom_count INTEGER, +room_count CHAR(5), +PRIMARY KEY (apt_id), +UNIQUE (apt_id), +FOREIGN KEY (building_id) REFERENCES Apartment_Buildings (building_id) +); +INSERT INTO `Apartments` (`apt_id`, `building_id`, `apt_type_code`, `apt_number`, `bathroom_count`, `bedroom_count`, `room_count`) VALUES (1, 808, 'Flat', 'Suite 645', 1, 3, '7'); +INSERT INTO `Apartments` (`apt_id`, `building_id`, `apt_type_code`, `apt_number`, `bathroom_count`, `bedroom_count`, `room_count`) VALUES (2, 624, 'Flat', 'Apt. 585', 2, 4, '5'); +INSERT INTO `Apartments` (`apt_id`, `building_id`, `apt_type_code`, `apt_number`, `bathroom_count`, `bedroom_count`, `room_count`) VALUES (3, 225, 'Studio', 'Apt. 908', 1, 6, '7'); +INSERT INTO `Apartments` (`apt_id`, `building_id`, `apt_type_code`, `apt_number`, `bathroom_count`, `bedroom_count`, `room_count`) VALUES (4, 225, 'Duplex', 'Suite 749', 1, 5, '8'); +INSERT INTO `Apartments` (`apt_id`, `building_id`, `apt_type_code`, `apt_number`, `bathroom_count`, `bedroom_count`, `room_count`) VALUES (5, 744, 'Flat', 'Suite 307', 2, 4, '9'); +INSERT INTO `Apartments` (`apt_id`, `building_id`, `apt_type_code`, `apt_number`, `bathroom_count`, `bedroom_count`, `room_count`) VALUES (6, 191, 'Studio', 'Apt. 187', 3, 5, '9'); +INSERT INTO `Apartments` (`apt_id`, `building_id`, `apt_type_code`, `apt_number`, `bathroom_count`, `bedroom_count`, `room_count`) VALUES (7, 790, 'Studio', 'Suite 088', 2, 4, '6'); +INSERT INTO `Apartments` (`apt_id`, `building_id`, `apt_type_code`, `apt_number`, `bathroom_count`, `bedroom_count`, `room_count`) VALUES (8, 153, 'Flat', 'Suite 693', 2, 3, '9'); +INSERT INTO `Apartments` (`apt_id`, `building_id`, `apt_type_code`, `apt_number`, `bathroom_count`, `bedroom_count`, `room_count`) VALUES (9, 624, 'Studio', 'Apt. 940', 1, 4, '8'); +INSERT INTO `Apartments` (`apt_id`, `building_id`, `apt_type_code`, `apt_number`, `bathroom_count`, `bedroom_count`, `room_count`) VALUES (10, 225, 'Duplex', 'Apt. 859', 2, 3, '6'); +INSERT INTO `Apartments` (`apt_id`, `building_id`, `apt_type_code`, `apt_number`, `bathroom_count`, `bedroom_count`, `room_count`) VALUES (11, 734, 'Flat', 'Apt. 794', 1, 5, '3'); +INSERT INTO `Apartments` (`apt_id`, `building_id`, `apt_type_code`, `apt_number`, `bathroom_count`, `bedroom_count`, `room_count`) VALUES (12, 673, 'Duplex', 'Apt. 477', 2, 6, '3'); +INSERT INTO `Apartments` (`apt_id`, `building_id`, `apt_type_code`, `apt_number`, `bathroom_count`, `bedroom_count`, `room_count`) VALUES (13, 744, 'Duplex', 'Apt. 411', 2, 5, '9'); +INSERT INTO `Apartments` (`apt_id`, `building_id`, `apt_type_code`, `apt_number`, `bathroom_count`, `bedroom_count`, `room_count`) VALUES (14, 225, 'Flat', 'Apt. 837', 2, 4, '8'); +INSERT INTO `Apartments` (`apt_id`, `building_id`, `apt_type_code`, `apt_number`, `bathroom_count`, `bedroom_count`, `room_count`) VALUES (15, 790, 'Duplex', 'Suite 634', 3, 6, '8'); + +CREATE TABLE Apartment_Facilities ( +apt_id INTEGER NOT NULL, +facility_code CHAR(15) NOT NULL, +PRIMARY KEY (apt_id, facility_code), +FOREIGN KEY (apt_id) REFERENCES Apartments (apt_id) +); +INSERT INTO `Apartment_Facilities` (`apt_id`, `facility_code`) VALUES (1, 'Boardband'); +INSERT INTO `Apartment_Facilities` (`apt_id`, `facility_code`) VALUES (2, 'Boardband'); +INSERT INTO `Apartment_Facilities` (`apt_id`, `facility_code`) VALUES (3, 'Gym'); +INSERT INTO `Apartment_Facilities` (`apt_id`, `facility_code`) VALUES (5, 'Swimming Pool'); +INSERT INTO `Apartment_Facilities` (`apt_id`, `facility_code`) VALUES (6, 'Cable TV'); +INSERT INTO `Apartment_Facilities` (`apt_id`, `facility_code`) VALUES (9, 'Boardband'); +INSERT INTO `Apartment_Facilities` (`apt_id`, `facility_code`) VALUES (15, 'Gym'); +CREATE TABLE Guests ( +guest_id INTEGER NOT NULL , +gender_code CHAR(1), +guest_first_name VARCHAR(80), +guest_last_name VARCHAR(80), +date_of_birth DATETIME, +PRIMARY KEY (guest_id), +UNIQUE (guest_id) +); + +INSERT INTO `Guests` (`guest_id`, `gender_code`, `guest_first_name`, `guest_last_name`, `date_of_birth`) VALUES (1, 'Male', 'Kip', 'DuBuque', '1995-11-04 07:09:57'); +INSERT INTO `Guests` (`guest_id`, `gender_code`, `guest_first_name`, `guest_last_name`, `date_of_birth`) VALUES (2, 'Unknown', 'Rebeca', 'Runolfsdottir', '1974-05-12 21:53:58'); +INSERT INTO `Guests` (`guest_id`, `gender_code`, `guest_first_name`, `guest_last_name`, `date_of_birth`) VALUES (3, 'Female', 'Keon', 'Treutel', '1974-08-20 09:28:05'); +INSERT INTO `Guests` (`guest_id`, `gender_code`, `guest_first_name`, `guest_last_name`, `date_of_birth`) VALUES (4, 'Female', 'Gabe', 'Bode', '2007-09-11 19:01:39'); +INSERT INTO `Guests` (`guest_id`, `gender_code`, `guest_first_name`, `guest_last_name`, `date_of_birth`) VALUES (5, 'Female', 'Lou', 'Grady', '1997-01-15 17:37:40'); +INSERT INTO `Guests` (`guest_id`, `gender_code`, `guest_first_name`, `guest_last_name`, `date_of_birth`) VALUES (6, 'Unknown', 'Josefina', 'Jerde', '1978-03-08 04:43:04'); +INSERT INTO `Guests` (`guest_id`, `gender_code`, `guest_first_name`, `guest_last_name`, `date_of_birth`) VALUES (7, 'Female', 'Mozell', 'Toy', '1997-01-20 17:11:31'); +INSERT INTO `Guests` (`guest_id`, `gender_code`, `guest_first_name`, `guest_last_name`, `date_of_birth`) VALUES (8, 'Unknown', 'Keith', 'Hoeger', '2001-06-18 20:05:55'); +INSERT INTO `Guests` (`guest_id`, `gender_code`, `guest_first_name`, `guest_last_name`, `date_of_birth`) VALUES (9, 'Female', 'Crystal', 'Runolfsson', '1971-01-04 04:22:58'); +INSERT INTO `Guests` (`guest_id`, `gender_code`, `guest_first_name`, `guest_last_name`, `date_of_birth`) VALUES (10, 'Female', 'Nikki', 'Lehner', '1980-06-20 18:15:39'); +INSERT INTO `Guests` (`guest_id`, `gender_code`, `guest_first_name`, `guest_last_name`, `date_of_birth`) VALUES (11, 'Male', 'Gregoria', 'Schowalter', '2015-02-03 23:34:13'); +INSERT INTO `Guests` (`guest_id`, `gender_code`, `guest_first_name`, `guest_last_name`, `date_of_birth`) VALUES (12, 'Male', 'Louvenia', 'Crona', '1983-08-26 15:45:08'); +INSERT INTO `Guests` (`guest_id`, `gender_code`, `guest_first_name`, `guest_last_name`, `date_of_birth`) VALUES (13, 'Female', 'Else', 'Roberts', '1971-11-02 01:51:56'); +INSERT INTO `Guests` (`guest_id`, `gender_code`, `guest_first_name`, `guest_last_name`, `date_of_birth`) VALUES (14, 'Female', 'Juvenal', 'Kautzer', '2003-07-29 22:08:15'); +INSERT INTO `Guests` (`guest_id`, `gender_code`, `guest_first_name`, `guest_last_name`, `date_of_birth`) VALUES (15, 'Female', 'Tamia', 'Mante', '2013-02-22 11:26:22'); + + +CREATE TABLE Apartment_Bookings ( +apt_booking_id INTEGER NOT NULL, +apt_id INTEGER, +guest_id INTEGER NOT NULL, +booking_status_code CHAR(15) NOT NULL, +booking_start_date DATETIME, +booking_end_date DATETIME, +PRIMARY KEY (apt_booking_id), +UNIQUE (apt_booking_id), +FOREIGN KEY (apt_id) REFERENCES Apartments (apt_id), +FOREIGN KEY (guest_id) REFERENCES Guests (guest_id) +); +CREATE TABLE View_Unit_Status ( +apt_id INTEGER, +apt_booking_id INTEGER, +status_date DATETIME NOT NULL, +available_yn BIT, +PRIMARY KEY (status_date), +FOREIGN KEY (apt_id) REFERENCES Apartments (apt_id), +FOREIGN KEY (apt_booking_id) REFERENCES Apartment_Bookings (apt_booking_id) +); +INSERT INTO `Apartment_Bookings` (`apt_booking_id`, `apt_id`, `guest_id`, `booking_status_code`, `booking_start_date`, `booking_end_date`) VALUES (258, 10, 2, 'Provisional', '2016-09-26 17:13:49', '2017-10-07 11:38:48'); +INSERT INTO `Apartment_Bookings` (`apt_booking_id`, `apt_id`, `guest_id`, `booking_status_code`, `booking_start_date`, `booking_end_date`) VALUES (279, 15, 15, 'Provisional', '2016-04-01 06:28:08', '2017-10-25 11:08:42'); +INSERT INTO `Apartment_Bookings` (`apt_booking_id`, `apt_id`, `guest_id`, `booking_status_code`, `booking_start_date`, `booking_end_date`) VALUES (337, 8, 5, 'Provisional', '2017-03-13 16:20:14', '2018-02-19 16:59:08'); +INSERT INTO `Apartment_Bookings` (`apt_booking_id`, `apt_id`, `guest_id`, `booking_status_code`, `booking_start_date`, `booking_end_date`) VALUES (343, 4, 13, 'Confirmed', '2016-08-04 10:33:00', '2017-09-29 12:43:50'); +INSERT INTO `Apartment_Bookings` (`apt_booking_id`, `apt_id`, `guest_id`, `booking_status_code`, `booking_start_date`, `booking_end_date`) VALUES (365, 9, 12, 'Confirmed', '2017-02-11 14:34:14', '2017-10-07 20:47:19'); +INSERT INTO `Apartment_Bookings` (`apt_booking_id`, `apt_id`, `guest_id`, `booking_status_code`, `booking_start_date`, `booking_end_date`) VALUES (401, 7, 14, 'Provisional', '2016-05-24 20:09:38', '2017-10-03 01:56:21'); +INSERT INTO `Apartment_Bookings` (`apt_booking_id`, `apt_id`, `guest_id`, `booking_status_code`, `booking_start_date`, `booking_end_date`) VALUES (497, 10, 8, 'Confirmed', '2016-07-25 02:57:04', '2017-09-28 11:08:15'); +INSERT INTO `Apartment_Bookings` (`apt_booking_id`, `apt_id`, `guest_id`, `booking_status_code`, `booking_start_date`, `booking_end_date`) VALUES (526, 8, 7, 'Confirmed', '2016-11-26 05:04:31', '2018-02-25 15:15:37'); +INSERT INTO `Apartment_Bookings` (`apt_booking_id`, `apt_id`, `guest_id`, `booking_status_code`, `booking_start_date`, `booking_end_date`) VALUES (575, 6, 3, 'Provisional', '2017-05-13 18:17:20', '2017-10-06 11:15:58'); +INSERT INTO `Apartment_Bookings` (`apt_booking_id`, `apt_id`, `guest_id`, `booking_status_code`, `booking_start_date`, `booking_end_date`) VALUES (577, 12, 2, 'Provisional', '2017-03-04 02:23:49', '2018-02-06 16:57:05'); +INSERT INTO `Apartment_Bookings` (`apt_booking_id`, `apt_id`, `guest_id`, `booking_status_code`, `booking_start_date`, `booking_end_date`) VALUES (623, 4, 5, 'Provisional', '2016-06-07 05:05:18', '2017-11-13 13:59:45'); +INSERT INTO `Apartment_Bookings` (`apt_booking_id`, `apt_id`, `guest_id`, `booking_status_code`, `booking_start_date`, `booking_end_date`) VALUES (807, 11, 2, 'Provisional', '2016-04-17 12:53:59', '2018-03-20 17:32:58'); +INSERT INTO `Apartment_Bookings` (`apt_booking_id`, `apt_id`, `guest_id`, `booking_status_code`, `booking_start_date`, `booking_end_date`) VALUES (889, 10, 4, 'Confirmed', '2016-09-28 05:00:50', '2017-09-30 18:41:04'); +INSERT INTO `Apartment_Bookings` (`apt_booking_id`, `apt_id`, `guest_id`, `booking_status_code`, `booking_start_date`, `booking_end_date`) VALUES (920, 2, 2, 'Confirmed', '2017-04-07 04:53:27', '2017-11-29 12:59:42'); +INSERT INTO `Apartment_Bookings` (`apt_booking_id`, `apt_id`, `guest_id`, `booking_status_code`, `booking_start_date`, `booking_end_date`) VALUES (924, 8, 3, 'Confirmed', '2017-07-03 14:15:56', '2017-11-12 01:05:09'); + +INSERT INTO `View_Unit_Status` (`apt_id`, `apt_booking_id`, `status_date`, `available_yn`) VALUES (11, 920, '1970-09-28 10:24:29', '1'); +INSERT INTO `View_Unit_Status` (`apt_id`, `apt_booking_id`, `status_date`, `available_yn`) VALUES (15, 575, '1972-03-23 22:55:53', '1'); +INSERT INTO `View_Unit_Status` (`apt_id`, `apt_booking_id`, `status_date`, `available_yn`) VALUES (15, 924, '1973-10-28 04:30:14', '1'); +INSERT INTO `View_Unit_Status` (`apt_id`, `apt_booking_id`, `status_date`, `available_yn`) VALUES (6, 497, '1976-12-18 04:03:51', '1'); +INSERT INTO `View_Unit_Status` (`apt_id`, `apt_booking_id`, `status_date`, `available_yn`) VALUES (12, 807, '1977-04-15 13:42:19', '1'); +INSERT INTO `View_Unit_Status` (`apt_id`, `apt_booking_id`, `status_date`, `available_yn`) VALUES (13, 575, '1978-12-28 11:53:34', '1'); +INSERT INTO `View_Unit_Status` (`apt_id`, `apt_booking_id`, `status_date`, `available_yn`) VALUES (2, 497, '1980-11-12 13:34:45', '1'); +INSERT INTO `View_Unit_Status` (`apt_id`, `apt_booking_id`, `status_date`, `available_yn`) VALUES (14, 401, '1985-11-05 11:46:35', '0'); +INSERT INTO `View_Unit_Status` (`apt_id`, `apt_booking_id`, `status_date`, `available_yn`) VALUES (11, 497, '1990-11-04 17:57:50', '1'); +INSERT INTO `View_Unit_Status` (`apt_id`, `apt_booking_id`, `status_date`, `available_yn`) VALUES (13, 337, '2000-02-04 07:50:09', '0'); +INSERT INTO `View_Unit_Status` (`apt_id`, `apt_booking_id`, `status_date`, `available_yn`) VALUES (14, 279, '2001-02-17 20:17:09', '1'); +INSERT INTO `View_Unit_Status` (`apt_id`, `apt_booking_id`, `status_date`, `available_yn`) VALUES (5, 337, '2003-07-25 10:13:48', '1'); +INSERT INTO `View_Unit_Status` (`apt_id`, `apt_booking_id`, `status_date`, `available_yn`) VALUES (1, 497, '2003-08-02 08:36:36', '1'); +INSERT INTO `View_Unit_Status` (`apt_id`, `apt_booking_id`, `status_date`, `available_yn`) VALUES (10, 497, '2006-02-23 05:50:04', '1'); +INSERT INTO `View_Unit_Status` (`apt_id`, `apt_booking_id`, `status_date`, `available_yn`) VALUES (6, 401, '2011-02-12 09:04:07', '1'); +INSERT INTO `View_Unit_Status` (`apt_id`, `apt_booking_id`, `status_date`, `available_yn`) VALUES (9, 623, '2011-11-06 22:08:42', '1'); +INSERT INTO `View_Unit_Status` (`apt_id`, `apt_booking_id`, `status_date`, `available_yn`) VALUES (14, 920, '2012-11-24 13:39:37', '0'); +INSERT INTO `View_Unit_Status` (`apt_id`, `apt_booking_id`, `status_date`, `available_yn`) VALUES (4, 258, '2014-12-10 13:53:21', '1'); +INSERT INTO `View_Unit_Status` (`apt_id`, `apt_booking_id`, `status_date`, `available_yn`) VALUES (13, 343, '2015-06-19 07:59:01', '1'); +INSERT INTO `View_Unit_Status` (`apt_id`, `apt_booking_id`, `status_date`, `available_yn`) VALUES (5, 889, '2015-07-15 11:06:29', '1'); diff --git a/database/architecture/architecture.sqlite b/database/architecture/architecture.sqlite new file mode 100644 index 0000000000000000000000000000000000000000..d41fe90bd88bef947545e8887c00a892cd77ca36 Binary files /dev/null and b/database/architecture/architecture.sqlite differ diff --git a/database/architecture/schema.sql b/database/architecture/schema.sql new file mode 100644 index 0000000000000000000000000000000000000000..a59677cd0a956d57ac3e5e1d9a41cabf268c775b --- /dev/null +++ b/database/architecture/schema.sql @@ -0,0 +1,65 @@ +PRAGMA foreign_keys = ON; + +CREATE TABLE "architect" ( +"id" text, +"name" text, +"nationality" text, +"gender" text, +primary key("id") +); + +CREATE TABLE "bridge" ( +"architect_id" int, +"id" int, +"name" text, +"location" text, +"length_meters" real, +"length_feet" real, +primary key("id"), +foreign key ("architect_id" ) references `architect`("id") +); + +CREATE TABLE "mill" ( +"architect_id" int, +"id" int, +"location" text, +"name" text, +"type" text, +"built_year" int, +"notes" text, +primary key ("id"), +foreign key ("architect_id" ) references `architect`("id") +); + + +INSERT INTO "architect" VALUES (1, "Frank Lloyd Wright", "American", "male"); +INSERT INTO "architect" VALUES (2, "Frank Gehry", "Canadian", "male"); +INSERT INTO "architect" VALUES (3, "Zaha Hadid", "Iraqi, British", "female"); +INSERT INTO "architect" VALUES (4, "Mies Van Der Rohe", "German, American", "male"); +INSERT INTO "architect" VALUES (5, "Le Corbusier", "Swiss, French", "male"); + + +INSERT INTO "bridge" VALUES (1,"1","Xian Ren Qiao (Fairy Bridge)","Guangxi , China","121","400"); +INSERT INTO "bridge" VALUES (2,"2","Landscape Arch","Arches National Park , Utah , USA","88","290"); +INSERT INTO "bridge" VALUES (3,"3","Kolob Arch","Zion National Park , Utah , USA","87","287"); +INSERT INTO "bridge" VALUES (4,"4","Aloba Arch","Ennedi Plateau , Chad","76","250"); +INSERT INTO "bridge" VALUES (5,"5","Morning Glory Natural Bridge","Negro Bill Canyon , Utah , USA","74","243"); +INSERT INTO "bridge" VALUES (5,"6","Rainbow Bridge","Glen Canyon National Recreation Area , Utah , USA","71","234"); +INSERT INTO "bridge" VALUES (4,"7","Gaotun Natural Bridge","Guizhou , China","70","230"); +INSERT INTO "bridge" VALUES (3,"8","Sipapu Natural Bridge","Natural Bridges National Monument , Utah , USA","69","225"); +INSERT INTO "bridge" VALUES (2,"9","Stevens Arch","Escalante Canyon , Utah , USA","67","220"); +INSERT INTO "bridge" VALUES (1,"10","Shipton's Arch","Xinjiang , China","65","212"); +INSERT INTO "bridge" VALUES (1,"11","Jiangzhou Arch","Guangxi , China","65","212"); +INSERT INTO "bridge" VALUES (1,"12","Hazarchishma Natural Bridge","Bamiyan Province , Afghanistan","64.2","210.6"); +INSERT INTO "bridge" VALUES (2,"13","Outlaw Arch","Dinosaur National Monument , Colorado , USA","63","206"); +INSERT INTO "bridge" VALUES (2,"14","Snake Bridge","Sanostee , New Mexico , USA","62","204"); +INSERT INTO "bridge" VALUES (5,"15","Wrather Arch","Wrather Canyon , Arizona , USA","75","246"); + + +INSERT INTO "mill" VALUES (1,1,"Coswarem","Le Vieux Molen","Grondzeiler","1840","Molenechos (Dutch)"); +INSERT INTO "mill" VALUES (1,2,"Donceel","Moulin Bertrand","Grondzeiler","1890","Molenechos (Dutch)"); +INSERT INTO "mill" VALUES (2,3,"Fexhe-le-haut-Clocher","Moulin de Fexhe","Grondzeiler","1843","Molenechos (Dutch)"); +INSERT INTO "mill" VALUES (3,4,"Momalle","Moulin de Momalle","Bergmolen","1850","Molenechos (Dutch)"); +INSERT INTO "mill" VALUES (4,5,"Othée","Moulin du Château","Grondzeiler","1856","Molenechos (Dutch)"); +INSERT INTO "mill" VALUES (4,6,"Pousset","Moulin de Pousset","Grondzeiler","1819","Molenechos (Dutch)"); + diff --git a/database/assets_maintenance/assets_maintenance.sqlite b/database/assets_maintenance/assets_maintenance.sqlite new file mode 100644 index 0000000000000000000000000000000000000000..98066158448fc2cca0434ede1cb09fb80295290c Binary files /dev/null and b/database/assets_maintenance/assets_maintenance.sqlite differ diff --git a/database/assets_maintenance/schema.sql b/database/assets_maintenance/schema.sql new file mode 100644 index 0000000000000000000000000000000000000000..85ec6b785b936e3ac079ead296760b5794523198 --- /dev/null +++ b/database/assets_maintenance/schema.sql @@ -0,0 +1,355 @@ +PRAGMA foreign_keys = ON; + +CREATE TABLE `Third_Party_Companies` ( +`company_id` INTEGER PRIMARY KEY , +`company_type` VARCHAR(5) NOT NULL, +`company_name` VARCHAR(255), +`company_address` VARCHAR(255), +`other_company_details` VARCHAR(255) +); + +INSERT INTO Third_Party_Companies (`company_id`, `company_type`, `company_name`, `company_address`, `other_company_details`) VALUES (1, 'Maintenance Contractor', 'Langworth-Funk', '615 Jacobs Mews', 'Uganda'); +INSERT INTO Third_Party_Companies (`company_id`, `company_type`, `company_name`, `company_address`, `other_company_details`) VALUES (2, 'Maintenance Contractor', 'McDermott Group', '873 Conrad Creek Apt. 286', 'China'); +INSERT INTO Third_Party_Companies (`company_id`, `company_type`, `company_name`, `company_address`, `other_company_details`) VALUES (3, 'Maintenance Contractor', 'Schuppe-Carroll', '066 Bechtelar Ridge', 'United Arab Emirates'); +INSERT INTO Third_Party_Companies (`company_id`, `company_type`, `company_name`, `company_address`, `other_company_details`) VALUES (4, 'Maintenance Contractor', 'Dooley-Langosh', '9576 Jacynthe Point Suite 747', 'Albania'); +INSERT INTO Third_Party_Companies (`company_id`, `company_type`, `company_name`, `company_address`, `other_company_details`) VALUES (5, 'Supplier', 'Dooley and Sons', '84631 Rosenbaum Well Suite 727', 'Palestinian Territory'); +INSERT INTO Third_Party_Companies (`company_id`, `company_type`, `company_name`, `company_address`, `other_company_details`) VALUES (6, 'Supplier', 'Grimes, Mosciski and Renner', '9405 Leffler Hollow Apt. 753', 'Kiribati'); +INSERT INTO Third_Party_Companies (`company_id`, `company_type`, `company_name`, `company_address`, `other_company_details`) VALUES (7, 'Maintenance Contractor', 'Weimann-Swift', '016 Kaitlyn Fall Suite 236', 'Egypt'); +INSERT INTO Third_Party_Companies (`company_id`, `company_type`, `company_name`, `company_address`, `other_company_details`) VALUES (8, 'Maintenance Contractor', 'Glover-Vandervort', '51515 Conn Corner Suite 696', 'Ethiopia'); +INSERT INTO Third_Party_Companies (`company_id`, `company_type`, `company_name`, `company_address`, `other_company_details`) VALUES (9, 'Maintenance Contractor', 'Wisoky, Toy and Bashirian', '605 D''Amore Oval', 'Iran'); +INSERT INTO Third_Party_Companies (`company_id`, `company_type`, `company_name`, `company_address`, `other_company_details`) VALUES (10, 'Maintenance Contractor', 'White Ltd', '680 Hammes Ways', 'Niue'); +INSERT INTO Third_Party_Companies (`company_id`, `company_type`, `company_name`, `company_address`, `other_company_details`) VALUES (11, 'Maintenance Contractor', 'Kuvalis, Boehm and Hettinger', '99335 Cummings Square Apt. 723', 'Somalia'); +INSERT INTO Third_Party_Companies (`company_id`, `company_type`, `company_name`, `company_address`, `other_company_details`) VALUES (12, 'Maintenance Contractor', 'Dicki, Erdman and Kris', '60743 Dion Harbors Suite 825', 'Western Sahara'); +INSERT INTO Third_Party_Companies (`company_id`, `company_type`, `company_name`, `company_address`, `other_company_details`) VALUES (13, 'Supplier', 'Greenholt-D''Amore', '1755 Schaefer Road', 'Slovenia'); +INSERT INTO Third_Party_Companies (`company_id`, `company_type`, `company_name`, `company_address`, `other_company_details`) VALUES (14, 'Supplier', 'Purdy Inc', '846 Casper Route', 'Saint Helena'); +INSERT INTO Third_Party_Companies (`company_id`, `company_type`, `company_name`, `company_address`, `other_company_details`) VALUES (15, 'Maintenance Contractor', 'Rau, Ullrich and King', '5147 Raul Burg Apt. 623', 'Armenia'); + + +CREATE TABLE `Maintenance_Contracts` ( +`maintenance_contract_id` INTEGER PRIMARY KEY, +`maintenance_contract_company_id` INTEGER NOT NULL, +`contract_start_date` DATETIME, +`contract_end_date` DATETIME, +`other_contract_details` VARCHAR(255), +FOREIGN KEY (`maintenance_contract_company_id` ) REFERENCES `Third_Party_Companies`(`company_id` ) +); + +INSERT INTO Maintenance_Contracts (`maintenance_contract_id`, `maintenance_contract_company_id`, `contract_start_date`, `contract_end_date`, `other_contract_details`) VALUES (1, 15, '2017-09-13 11:51:29', '2018-03-16 21:21:50', NULL); +INSERT INTO Maintenance_Contracts (`maintenance_contract_id`, `maintenance_contract_company_id`, `contract_start_date`, `contract_end_date`, `other_contract_details`) VALUES (2, 9, '2017-12-18 11:43:16', '2018-03-22 06:00:37', NULL); +INSERT INTO Maintenance_Contracts (`maintenance_contract_id`, `maintenance_contract_company_id`, `contract_start_date`, `contract_end_date`, `other_contract_details`) VALUES (3, 11, '2017-05-06 02:32:19', '2018-03-20 14:02:54', NULL); +INSERT INTO Maintenance_Contracts (`maintenance_contract_id`, `maintenance_contract_company_id`, `contract_start_date`, `contract_end_date`, `other_contract_details`) VALUES (4, 13, '2018-01-24 00:06:30', '2018-03-02 16:12:23', NULL); +INSERT INTO Maintenance_Contracts (`maintenance_contract_id`, `maintenance_contract_company_id`, `contract_start_date`, `contract_end_date`, `other_contract_details`) VALUES (5, 4, '2017-10-28 05:13:21', '2018-02-27 17:36:59', NULL); +INSERT INTO Maintenance_Contracts (`maintenance_contract_id`, `maintenance_contract_company_id`, `contract_start_date`, `contract_end_date`, `other_contract_details`) VALUES (6, 7, '2018-03-07 10:59:11', '2018-03-14 10:17:43', NULL); +INSERT INTO Maintenance_Contracts (`maintenance_contract_id`, `maintenance_contract_company_id`, `contract_start_date`, `contract_end_date`, `other_contract_details`) VALUES (7, 13, '2017-09-01 05:34:02', '2018-02-27 05:03:22', NULL); +INSERT INTO Maintenance_Contracts (`maintenance_contract_id`, `maintenance_contract_company_id`, `contract_start_date`, `contract_end_date`, `other_contract_details`) VALUES (8, 8, '2017-11-23 11:26:12', '2018-03-02 22:26:54', NULL); +INSERT INTO Maintenance_Contracts (`maintenance_contract_id`, `maintenance_contract_company_id`, `contract_start_date`, `contract_end_date`, `other_contract_details`) VALUES (9, 6, '2017-04-21 00:03:07', '2018-03-07 19:30:50', NULL); +INSERT INTO Maintenance_Contracts (`maintenance_contract_id`, `maintenance_contract_company_id`, `contract_start_date`, `contract_end_date`, `other_contract_details`) VALUES (10, 6, '2017-06-14 01:46:59', '2018-03-09 10:40:10', NULL); +INSERT INTO Maintenance_Contracts (`maintenance_contract_id`, `maintenance_contract_company_id`, `contract_start_date`, `contract_end_date`, `other_contract_details`) VALUES (11, 15, '2017-05-04 13:39:18', '2018-03-14 20:21:10', NULL); +INSERT INTO Maintenance_Contracts (`maintenance_contract_id`, `maintenance_contract_company_id`, `contract_start_date`, `contract_end_date`, `other_contract_details`) VALUES (12, 6, '2017-12-06 20:09:39', '2018-03-06 13:47:14', NULL); +INSERT INTO Maintenance_Contracts (`maintenance_contract_id`, `maintenance_contract_company_id`, `contract_start_date`, `contract_end_date`, `other_contract_details`) VALUES (13, 14, '2017-07-23 05:07:37', '2018-03-05 21:24:36', NULL); +INSERT INTO Maintenance_Contracts (`maintenance_contract_id`, `maintenance_contract_company_id`, `contract_start_date`, `contract_end_date`, `other_contract_details`) VALUES (14, 10, '2017-09-19 17:57:17', '2018-03-15 06:45:00', NULL); +INSERT INTO Maintenance_Contracts (`maintenance_contract_id`, `maintenance_contract_company_id`, `contract_start_date`, `contract_end_date`, `other_contract_details`) VALUES (15, 6, '2017-05-14 11:57:50', '2018-03-23 17:29:21', NULL); + + +CREATE TABLE `Parts` ( +`part_id` INTEGER PRIMARY KEY, +`part_name` VARCHAR(255), +`chargeable_yn` VARCHAR(1), +`chargeable_amount` VARCHAR(20), +`other_part_details` VARCHAR(255) +); + +INSERT INTO Parts (`part_id`, `part_name`, `chargeable_yn`, `chargeable_amount`, `other_part_details`) VALUES (1, 'top', '0', '4', NULL); +INSERT INTO Parts (`part_id`, `part_name`, `chargeable_yn`, `chargeable_amount`, `other_part_details`) VALUES (2, 'middle', '1', '9', NULL); +INSERT INTO Parts (`part_id`, `part_name`, `chargeable_yn`, `chargeable_amount`, `other_part_details`) VALUES (3, 'package', '1', '9', NULL); + +CREATE TABLE `Skills` ( +`skill_id` INTEGER PRIMARY KEY, +`skill_code` VARCHAR(20), +`skill_description` VARCHAR(255) +); + +INSERT INTO Skills (`skill_id`, `skill_code`, `skill_description`) VALUES (1, 'ELEC', 'Electrical'); +INSERT INTO Skills (`skill_id`, `skill_code`, `skill_description`) VALUES (2, 'MECH', 'Mechanical'); +INSERT INTO Skills (`skill_id`, `skill_code`, `skill_description`) VALUES (3, 'TV', 'TV, Video'); + + +CREATE TABLE `Staff` ( +`staff_id` INTEGER PRIMARY KEY, +`staff_name` VARCHAR(255), +`gender` VARCHAR(1), +`other_staff_details` VARCHAR(255) +); +INSERT INTO Staff (`staff_id`, `staff_name`, `gender`, `other_staff_details`) VALUES (1, 'Audreanne', '1', 'Manager'); +INSERT INTO Staff (`staff_id`, `staff_name`, `gender`, `other_staff_details`) VALUES (2, 'Berneice', '1', 'Manager'); +INSERT INTO Staff (`staff_id`, `staff_name`, `gender`, `other_staff_details`) VALUES (3, 'Helena', '1', NULL); +INSERT INTO Staff (`staff_id`, `staff_name`, `gender`, `other_staff_details`) VALUES (4, 'Edmond', '0', NULL); +INSERT INTO Staff (`staff_id`, `staff_name`, `gender`, `other_staff_details`) VALUES (5, 'Leola', '1', 'Manager'); +INSERT INTO Staff (`staff_id`, `staff_name`, `gender`, `other_staff_details`) VALUES (6, 'Rodger', '1', NULL); +INSERT INTO Staff (`staff_id`, `staff_name`, `gender`, `other_staff_details`) VALUES (7, 'Kadin', '1', NULL); +INSERT INTO Staff (`staff_id`, `staff_name`, `gender`, `other_staff_details`) VALUES (8, 'Christophe', '0', 'Woker'); +INSERT INTO Staff (`staff_id`, `staff_name`, `gender`, `other_staff_details`) VALUES (9, 'Bernice', '0', NULL); +INSERT INTO Staff (`staff_id`, `staff_name`, `gender`, `other_staff_details`) VALUES (10, 'Jayda', '1', NULL); +INSERT INTO Staff (`staff_id`, `staff_name`, `gender`, `other_staff_details`) VALUES (11, 'Estel', '0', NULL); +INSERT INTO Staff (`staff_id`, `staff_name`, `gender`, `other_staff_details`) VALUES (12, 'Oren', '1', NULL); +INSERT INTO Staff (`staff_id`, `staff_name`, `gender`, `other_staff_details`) VALUES (13, 'Howell', '0', NULL); +INSERT INTO Staff (`staff_id`, `staff_name`, `gender`, `other_staff_details`) VALUES (14, 'Cyrus', '0', NULL); +INSERT INTO Staff (`staff_id`, `staff_name`, `gender`, `other_staff_details`) VALUES (15, 'Jeffry', '0', NULL); + + + +CREATE TABLE `Assets` ( +`asset_id` INTEGER PRIMARY KEY, +`maintenance_contract_id` INTEGER NOT NULL, +`supplier_company_id` INTEGER NOT NULL, +`asset_details` VARCHAR(255), +`asset_make` VARCHAR(20), +`asset_model` VARCHAR(20), +`asset_acquired_date` DATETIME, +`asset_disposed_date` DATETIME, +`other_asset_details` VARCHAR(255), +FOREIGN KEY (`maintenance_contract_id` ) +REFERENCES `Maintenance_Contracts`(`maintenance_contract_id` ), +FOREIGN KEY (`supplier_company_id` ) REFERENCES `Third_Party_Companies`(`company_id` ) +); + + + +INSERT INTO Assets (`asset_id`, `maintenance_contract_id`, `supplier_company_id`, `asset_details`, `asset_make`, `asset_model`, `asset_acquired_date`, `asset_disposed_date`, `other_asset_details`) VALUES (1, 2, 2, 'dell laptop1', 'PT', '58 ub', '2017-12-25 00:31:27', '2018-03-14 10:50:00', NULL); +INSERT INTO Assets (`asset_id`, `maintenance_contract_id`, `supplier_company_id`, `asset_details`, `asset_make`, `asset_model`, `asset_acquired_date`, `asset_disposed_date`, `other_asset_details`) VALUES (2, 14, 1, 'dell laptop2', 'IN', '35 xt', '2018-01-27 00:59:46', '2018-03-20 04:24:09', NULL); +INSERT INTO Assets (`asset_id`, `maintenance_contract_id`, `supplier_company_id`, `asset_details`, `asset_make`, `asset_model`, `asset_acquired_date`, `asset_disposed_date`, `other_asset_details`) VALUES (3, 7, 2, 'dell laptop3', 'IT', '63 ok', '2017-09-07 08:13:15', '2018-03-08 20:50:40', 'Bad condition'); +INSERT INTO Assets (`asset_id`, `maintenance_contract_id`, `supplier_company_id`, `asset_details`, `asset_make`, `asset_model`, `asset_acquired_date`, `asset_disposed_date`, `other_asset_details`) VALUES (4, 11, 5, 'dell laptop4', 'RU', '69 uv', '2017-06-12 17:37:19', '2018-03-16 05:46:55', NULL); +INSERT INTO Assets (`asset_id`, `maintenance_contract_id`, `supplier_company_id`, `asset_details`, `asset_make`, `asset_model`, `asset_acquired_date`, `asset_disposed_date`, `other_asset_details`) VALUES (5, 8, 5, 'dell laptop5', 'DE', '90 oq', '2017-07-21 16:03:19', '2018-02-27 18:59:07', NULL); +INSERT INTO Assets (`asset_id`, `maintenance_contract_id`, `supplier_company_id`, `asset_details`, `asset_make`, `asset_model`, `asset_acquired_date`, `asset_disposed_date`, `other_asset_details`) VALUES (6, 8, 6, 'monitor1', 'CN', '91 ub', '2017-04-22 12:33:39', '2018-03-10 11:11:43', NULL); +INSERT INTO Assets (`asset_id`, `maintenance_contract_id`, `supplier_company_id`, `asset_details`, `asset_make`, `asset_model`, `asset_acquired_date`, `asset_disposed_date`, `other_asset_details`) VALUES (7, 6, 6, 'monitor2', 'CN', '27 du', '2017-07-18 01:22:58', '2018-03-20 22:45:00', NULL); +INSERT INTO Assets (`asset_id`, `maintenance_contract_id`, `supplier_company_id`, `asset_details`, `asset_make`, `asset_model`, `asset_acquired_date`, `asset_disposed_date`, `other_asset_details`) VALUES (8, 15, 7, 'monitor3', 'GB', '94 kg', '2017-10-24 04:29:17', '2018-02-28 18:14:13', 'Bad condition'); +INSERT INTO Assets (`asset_id`, `maintenance_contract_id`, `supplier_company_id`, `asset_details`, `asset_make`, `asset_model`, `asset_acquired_date`, `asset_disposed_date`, `other_asset_details`) VALUES (9, 12, 13, 'machine1', 'RU', '07 yt', '2017-04-16 12:19:25', '2018-03-08 18:42:41', NULL); +INSERT INTO Assets (`asset_id`, `maintenance_contract_id`, `supplier_company_id`, `asset_details`, `asset_make`, `asset_model`, `asset_acquired_date`, `asset_disposed_date`, `other_asset_details`) VALUES (10, 2, 2, 'machine2', 'FR', '20 tl', '2017-09-19 16:15:45', '2018-03-06 20:36:14', NULL); +INSERT INTO Assets (`asset_id`, `maintenance_contract_id`, `supplier_company_id`, `asset_details`, `asset_make`, `asset_model`, `asset_acquired_date`, `asset_disposed_date`, `other_asset_details`) VALUES (11, 7, 12, 'machine3', 'FR', '11 wi', '2017-11-25 05:04:20', '2018-03-17 00:51:14', NULL); +INSERT INTO Assets (`asset_id`, `maintenance_contract_id`, `supplier_company_id`, `asset_details`, `asset_make`, `asset_model`, `asset_acquired_date`, `asset_disposed_date`, `other_asset_details`) VALUES (12, 13, 14, 'machine4', 'RU', '95 vn', '2017-09-26 14:05:46', '2018-02-27 23:12:03', 'Bad condition'); +INSERT INTO Assets (`asset_id`, `maintenance_contract_id`, `supplier_company_id`, `asset_details`, `asset_make`, `asset_model`, `asset_acquired_date`, `asset_disposed_date`, `other_asset_details`) VALUES (13, 11, 8, 'system1', 'DE', '08 yy', '2017-12-20 14:05:17', '2018-03-07 20:35:19', 'Bad condition'); +INSERT INTO Assets (`asset_id`, `maintenance_contract_id`, `supplier_company_id`, `asset_details`, `asset_make`, `asset_model`, `asset_acquired_date`, `asset_disposed_date`, `other_asset_details`) VALUES (14, 10, 6, 'system2', 'IN', '66 xm', '2017-10-19 02:54:52', '2018-03-22 23:48:15', NULL); +INSERT INTO Assets (`asset_id`, `maintenance_contract_id`, `supplier_company_id`, `asset_details`, `asset_make`, `asset_model`, `asset_acquired_date`, `asset_disposed_date`, `other_asset_details`) VALUES (15, 6, 11, 'system3', 'IE', '24 ak', '2017-12-18 19:21:11', '2018-02-27 02:37:16', NULL); + + + +CREATE TABLE `Asset_Parts` ( +`asset_id` INTEGER NOT NULL, +`part_id` INTEGER NOT NULL, +FOREIGN KEY (`part_id` ) REFERENCES `Parts`(`part_id` ), +FOREIGN KEY (`asset_id` ) REFERENCES `Assets`(`asset_id` ) +); + +INSERT INTO Asset_Parts (`asset_id`, `part_id`) VALUES (5, 3); +INSERT INTO Asset_Parts (`asset_id`, `part_id`) VALUES (3, 3); +INSERT INTO Asset_Parts (`asset_id`, `part_id`) VALUES (10, 1); +INSERT INTO Asset_Parts (`asset_id`, `part_id`) VALUES (1, 2); +INSERT INTO Asset_Parts (`asset_id`, `part_id`) VALUES (3, 1); +INSERT INTO Asset_Parts (`asset_id`, `part_id`) VALUES (1, 3); +INSERT INTO Asset_Parts (`asset_id`, `part_id`) VALUES (6, 2); +INSERT INTO Asset_Parts (`asset_id`, `part_id`) VALUES (2, 3); +INSERT INTO Asset_Parts (`asset_id`, `part_id`) VALUES (3, 2); +INSERT INTO Asset_Parts (`asset_id`, `part_id`) VALUES (2, 2); +INSERT INTO Asset_Parts (`asset_id`, `part_id`) VALUES (3, 3); +INSERT INTO Asset_Parts (`asset_id`, `part_id`) VALUES (15, 3); +INSERT INTO Asset_Parts (`asset_id`, `part_id`) VALUES (4, 1); +INSERT INTO Asset_Parts (`asset_id`, `part_id`) VALUES (14, 1); +INSERT INTO Asset_Parts (`asset_id`, `part_id`) VALUES (15, 2); + + + +CREATE TABLE `Maintenance_Engineers` ( +`engineer_id` INTEGER PRIMARY KEY, +`company_id` INTEGER NOT NULL, +`first_name` VARCHAR(50), +`last_name` VARCHAR(50), +`other_details` VARCHAR(255), +FOREIGN KEY (`company_id` ) REFERENCES `Third_Party_Companies`(`company_id` ) +); + + +INSERT INTO Maintenance_Engineers (`engineer_id`, `company_id`, `first_name`, `last_name`, `other_details`) VALUES (1, 14, 'Etha', 'Reinger', 'Skilled'); +INSERT INTO Maintenance_Engineers (`engineer_id`, `company_id`, `first_name`, `last_name`, `other_details`) VALUES (2, 2, 'Clemens', 'Orn', NULL); +INSERT INTO Maintenance_Engineers (`engineer_id`, `company_id`, `first_name`, `last_name`, `other_details`) VALUES (3, 6, 'Samanta', 'Hauck', NULL); +INSERT INTO Maintenance_Engineers (`engineer_id`, `company_id`, `first_name`, `last_name`, `other_details`) VALUES (4, 3, 'Lorine', 'Morar', NULL); +INSERT INTO Maintenance_Engineers (`engineer_id`, `company_id`, `first_name`, `last_name`, `other_details`) VALUES (5, 15, 'Manley', 'Grady', NULL); +INSERT INTO Maintenance_Engineers (`engineer_id`, `company_id`, `first_name`, `last_name`, `other_details`) VALUES (6, 1, 'Courtney', 'Adams', NULL); +INSERT INTO Maintenance_Engineers (`engineer_id`, `company_id`, `first_name`, `last_name`, `other_details`) VALUES (7, 11, 'Josie', 'Harvey', 'Skilled'); +INSERT INTO Maintenance_Engineers (`engineer_id`, `company_id`, `first_name`, `last_name`, `other_details`) VALUES (8, 9, 'Nellie', 'Hirthe', NULL); +INSERT INTO Maintenance_Engineers (`engineer_id`, `company_id`, `first_name`, `last_name`, `other_details`) VALUES (9, 4, 'Brian', 'Stamm', NULL); +INSERT INTO Maintenance_Engineers (`engineer_id`, `company_id`, `first_name`, `last_name`, `other_details`) VALUES (10, 4, 'Naomi', 'Price', NULL); +INSERT INTO Maintenance_Engineers (`engineer_id`, `company_id`, `first_name`, `last_name`, `other_details`) VALUES (11, 7, 'Cullen', 'Kunde', NULL); +INSERT INTO Maintenance_Engineers (`engineer_id`, `company_id`, `first_name`, `last_name`, `other_details`) VALUES (12, 10, 'Alexys', 'Simonis', NULL); +INSERT INTO Maintenance_Engineers (`engineer_id`, `company_id`, `first_name`, `last_name`, `other_details`) VALUES (13, 2, 'Weston', 'Hahn', NULL); +INSERT INTO Maintenance_Engineers (`engineer_id`, `company_id`, `first_name`, `last_name`, `other_details`) VALUES (14, 11, 'Jules', 'Goldner', NULL); +INSERT INTO Maintenance_Engineers (`engineer_id`, `company_id`, `first_name`, `last_name`, `other_details`) VALUES (15, 3, 'Archibald', 'Streich', NULL); + + + +CREATE TABLE `Engineer_Skills` ( +`engineer_id` INTEGER NOT NULL, +`skill_id` INTEGER NOT NULL, +FOREIGN KEY (`engineer_id` ) REFERENCES `Maintenance_Engineers`(`engineer_id` ), +FOREIGN KEY (`skill_id` ) REFERENCES `Skills`(`skill_id` ) +); + +INSERT INTO Engineer_Skills (`engineer_id`, `skill_id`) VALUES (10, 2); +INSERT INTO Engineer_Skills (`engineer_id`, `skill_id`) VALUES (10, 1); +INSERT INTO Engineer_Skills (`engineer_id`, `skill_id`) VALUES (15, 1); +INSERT INTO Engineer_Skills (`engineer_id`, `skill_id`) VALUES (6, 1); +INSERT INTO Engineer_Skills (`engineer_id`, `skill_id`) VALUES (13, 1); +INSERT INTO Engineer_Skills (`engineer_id`, `skill_id`) VALUES (6, 3); +INSERT INTO Engineer_Skills (`engineer_id`, `skill_id`) VALUES (13, 2); +INSERT INTO Engineer_Skills (`engineer_id`, `skill_id`) VALUES (7, 3); +INSERT INTO Engineer_Skills (`engineer_id`, `skill_id`) VALUES (5, 2); +INSERT INTO Engineer_Skills (`engineer_id`, `skill_id`) VALUES (8, 3); +INSERT INTO Engineer_Skills (`engineer_id`, `skill_id`) VALUES (15, 3); +INSERT INTO Engineer_Skills (`engineer_id`, `skill_id`) VALUES (5, 1); +INSERT INTO Engineer_Skills (`engineer_id`, `skill_id`) VALUES (9, 3); +INSERT INTO Engineer_Skills (`engineer_id`, `skill_id`) VALUES (3, 1); +INSERT INTO Engineer_Skills (`engineer_id`, `skill_id`) VALUES (11, 2); +INSERT INTO Engineer_Skills (`engineer_id`, `skill_id`) VALUES (12, 2); +INSERT INTO Engineer_Skills (`engineer_id`, `skill_id`) VALUES (2, 2); +INSERT INTO Engineer_Skills (`engineer_id`, `skill_id`) VALUES (10, 1); +INSERT INTO Engineer_Skills (`engineer_id`, `skill_id`) VALUES (8, 1); +INSERT INTO Engineer_Skills (`engineer_id`, `skill_id`) VALUES (4, 1); + +CREATE TABLE `Fault_Log` ( +`fault_log_entry_id` INTEGER PRIMARY KEY, +`asset_id` INTEGER NOT NULL, +`recorded_by_staff_id` INTEGER NOT NULL, +`fault_log_entry_datetime` DATETIME, +`fault_description` VARCHAR(255), +`other_fault_details` VARCHAR(255), +FOREIGN KEY (`asset_id` ) REFERENCES `Assets`(`asset_id` ), +FOREIGN KEY (`recorded_by_staff_id` ) REFERENCES `Staff`(`staff_id` ) +); + +INSERT INTO Fault_Log (`fault_log_entry_id`, `asset_id`, `recorded_by_staff_id`, `fault_log_entry_datetime`, `fault_description`, `other_fault_details`) VALUES (1, 3, 14, '2018-03-21 04:25:00', 'system error', NULL); +INSERT INTO Fault_Log (`fault_log_entry_id`, `asset_id`, `recorded_by_staff_id`, `fault_log_entry_datetime`, `fault_description`, `other_fault_details`) VALUES (2, 7, 4, '2018-03-13 09:43:05', 'system error', NULL); +INSERT INTO Fault_Log (`fault_log_entry_id`, `asset_id`, `recorded_by_staff_id`, `fault_log_entry_datetime`, `fault_description`, `other_fault_details`) VALUES (3, 6, 9, '2018-02-24 09:28:20', 'system error', NULL); +INSERT INTO Fault_Log (`fault_log_entry_id`, `asset_id`, `recorded_by_staff_id`, `fault_log_entry_datetime`, `fault_description`, `other_fault_details`) VALUES (4, 5, 13, '2018-02-28 02:07:36', 'failed parts', NULL); +INSERT INTO Fault_Log (`fault_log_entry_id`, `asset_id`, `recorded_by_staff_id`, `fault_log_entry_datetime`, `fault_description`, `other_fault_details`) VALUES (5, 9, 11, '2018-03-02 03:14:46', 'system error', NULL); +INSERT INTO Fault_Log (`fault_log_entry_id`, `asset_id`, `recorded_by_staff_id`, `fault_log_entry_datetime`, `fault_description`, `other_fault_details`) VALUES (6, 8, 8, '2018-02-28 20:15:25', 'failed parts', NULL); +INSERT INTO Fault_Log (`fault_log_entry_id`, `asset_id`, `recorded_by_staff_id`, `fault_log_entry_datetime`, `fault_description`, `other_fault_details`) VALUES (7, 5, 14, '2018-03-05 09:44:08', 'system error', NULL); +INSERT INTO Fault_Log (`fault_log_entry_id`, `asset_id`, `recorded_by_staff_id`, `fault_log_entry_datetime`, `fault_description`, `other_fault_details`) VALUES (8, 12, 10, '2018-03-19 04:24:18', 'failed parts', NULL); +INSERT INTO Fault_Log (`fault_log_entry_id`, `asset_id`, `recorded_by_staff_id`, `fault_log_entry_datetime`, `fault_description`, `other_fault_details`) VALUES (9, 3, 5, '2018-03-06 15:52:54', 'system error', NULL); +INSERT INTO Fault_Log (`fault_log_entry_id`, `asset_id`, `recorded_by_staff_id`, `fault_log_entry_datetime`, `fault_description`, `other_fault_details`) VALUES (10, 2, 9, '2018-03-03 10:41:52', 'failed parts', NULL); +INSERT INTO Fault_Log (`fault_log_entry_id`, `asset_id`, `recorded_by_staff_id`, `fault_log_entry_datetime`, `fault_description`, `other_fault_details`) VALUES (11, 15, 12, '2018-03-21 15:02:17', 'failed parts', NULL); +INSERT INTO Fault_Log (`fault_log_entry_id`, `asset_id`, `recorded_by_staff_id`, `fault_log_entry_datetime`, `fault_description`, `other_fault_details`) VALUES (12, 8, 8, '2018-03-10 07:08:34', 'system error', NULL); +INSERT INTO Fault_Log (`fault_log_entry_id`, `asset_id`, `recorded_by_staff_id`, `fault_log_entry_datetime`, `fault_description`, `other_fault_details`) VALUES (13, 3, 13, '2018-03-11 14:00:39', 'system error', NULL); +INSERT INTO Fault_Log (`fault_log_entry_id`, `asset_id`, `recorded_by_staff_id`, `fault_log_entry_datetime`, `fault_description`, `other_fault_details`) VALUES (14, 3, 11, '2018-02-27 11:34:20', 'failed parts', NULL); +INSERT INTO Fault_Log (`fault_log_entry_id`, `asset_id`, `recorded_by_staff_id`, `fault_log_entry_datetime`, `fault_description`, `other_fault_details`) VALUES (15, 12, 13, '2018-03-01 08:52:58', 'system error', NULL); + +CREATE TABLE `Engineer_Visits` ( +`engineer_visit_id` INTEGER PRIMARY KEY, +`contact_staff_id` INTEGER, +`engineer_id` INTEGER NOT NULL, +`fault_log_entry_id` INTEGER NOT NULL, +`fault_status` VARCHAR(10) NOT NULL, +`visit_start_datetime` DATETIME, +`visit_end_datetime` DATETIME, +`other_visit_details` VARCHAR(255), +FOREIGN KEY (`fault_log_entry_id` ) REFERENCES `Fault_Log`(`fault_log_entry_id` ), +FOREIGN KEY (`engineer_id` ) REFERENCES `Maintenance_Engineers`(`engineer_id` ), +FOREIGN KEY (`contact_staff_id` ) REFERENCES `Staff`(`staff_id` ) +); + + + +INSERT INTO Engineer_Visits (`engineer_visit_id`, `contact_staff_id`, `engineer_id`, `fault_log_entry_id`, `fault_status`, `visit_start_datetime`, `visit_end_datetime`, `other_visit_details`) VALUES (1, 8, 8, 13, 'Waiting', '1978-10-12 23:14:40', '1988-01-07 06:41:51', NULL); +INSERT INTO Engineer_Visits (`engineer_visit_id`, `contact_staff_id`, `engineer_id`, `fault_log_entry_id`, `fault_status`, `visit_start_datetime`, `visit_end_datetime`, `other_visit_details`) VALUES (2, 7, 15, 13, 'Return', '1980-05-02 23:31:18', '1990-08-30 22:44:16', NULL); +INSERT INTO Engineer_Visits (`engineer_visit_id`, `contact_staff_id`, `engineer_id`, `fault_log_entry_id`, `fault_status`, `visit_start_datetime`, `visit_end_datetime`, `other_visit_details`) VALUES (3, 7, 15, 4, 'Waiting', '2010-02-23 18:16:23', '1982-05-13 02:08:41', NULL); +INSERT INTO Engineer_Visits (`engineer_visit_id`, `contact_staff_id`, `engineer_id`, `fault_log_entry_id`, `fault_status`, `visit_start_datetime`, `visit_end_datetime`, `other_visit_details`) VALUES (4, 12, 12, 13, 'Fixed', '1996-11-07 05:31:35', '1973-09-12 07:06:54', NULL); +INSERT INTO Engineer_Visits (`engineer_visit_id`, `contact_staff_id`, `engineer_id`, `fault_log_entry_id`, `fault_status`, `visit_start_datetime`, `visit_end_datetime`, `other_visit_details`) VALUES (5, 2, 4, 12, 'Fixed', '1994-07-27 22:35:48', '2008-03-24 22:18:47', NULL); +INSERT INTO Engineer_Visits (`engineer_visit_id`, `contact_staff_id`, `engineer_id`, `fault_log_entry_id`, `fault_status`, `visit_start_datetime`, `visit_end_datetime`, `other_visit_details`) VALUES (6, 4, 15, 11, 'Fixed', '1984-07-14 22:47:51', '2010-07-05 18:36:22', NULL); +INSERT INTO Engineer_Visits (`engineer_visit_id`, `contact_staff_id`, `engineer_id`, `fault_log_entry_id`, `fault_status`, `visit_start_datetime`, `visit_end_datetime`, `other_visit_details`) VALUES (7, 7, 15, 14, 'Reported', '1996-07-06 23:59:49', '2012-11-27 06:26:01', NULL); +INSERT INTO Engineer_Visits (`engineer_visit_id`, `contact_staff_id`, `engineer_id`, `fault_log_entry_id`, `fault_status`, `visit_start_datetime`, `visit_end_datetime`, `other_visit_details`) VALUES (8, 6, 15, 2, 'Waiting', '1985-08-26 01:02:49', '1971-03-29 23:46:30', NULL); +INSERT INTO Engineer_Visits (`engineer_visit_id`, `contact_staff_id`, `engineer_id`, `fault_log_entry_id`, `fault_status`, `visit_start_datetime`, `visit_end_datetime`, `other_visit_details`) VALUES (9, 7, 15, 12, 'Waiting', '1991-05-02 01:39:59', '1970-08-01 15:35:51', NULL); +INSERT INTO Engineer_Visits (`engineer_visit_id`, `contact_staff_id`, `engineer_id`, `fault_log_entry_id`, `fault_status`, `visit_start_datetime`, `visit_end_datetime`, `other_visit_details`) VALUES (10, 14, 10, 2, 'Fixed', '1996-07-12 22:38:46', '1970-03-25 14:44:29', NULL); +INSERT INTO Engineer_Visits (`engineer_visit_id`, `contact_staff_id`, `engineer_id`, `fault_log_entry_id`, `fault_status`, `visit_start_datetime`, `visit_end_datetime`, `other_visit_details`) VALUES (11, 9, 6, 3, 'Fixed', '1975-04-06 11:09:23', '2000-01-27 09:33:10', NULL); +INSERT INTO Engineer_Visits (`engineer_visit_id`, `contact_staff_id`, `engineer_id`, `fault_log_entry_id`, `fault_status`, `visit_start_datetime`, `visit_end_datetime`, `other_visit_details`) VALUES (12, 2, 1, 13, 'Return', '2006-03-31 20:03:10', '2013-09-29 20:50:24', NULL); +INSERT INTO Engineer_Visits (`engineer_visit_id`, `contact_staff_id`, `engineer_id`, `fault_log_entry_id`, `fault_status`, `visit_start_datetime`, `visit_end_datetime`, `other_visit_details`) VALUES (13, 4, 10, 8, 'Fixed', '2015-07-05 21:37:55', '1988-10-20 12:02:00', NULL); +INSERT INTO Engineer_Visits (`engineer_visit_id`, `contact_staff_id`, `engineer_id`, `fault_log_entry_id`, `fault_status`, `visit_start_datetime`, `visit_end_datetime`, `other_visit_details`) VALUES (14, 9, 4, 13, 'Return', '1997-06-23 17:45:21', '1980-12-19 08:30:46', NULL); +INSERT INTO Engineer_Visits (`engineer_visit_id`, `contact_staff_id`, `engineer_id`, `fault_log_entry_id`, `fault_status`, `visit_start_datetime`, `visit_end_datetime`, `other_visit_details`) VALUES (15, 4, 11, 10, 'Reported', '1970-07-19 19:21:32', '2007-11-12 04:24:01', NULL); + + + +CREATE TABLE `Part_Faults` ( +`part_fault_id` INTEGER PRIMARY KEY, +`part_id` INTEGER NOT NULL, +`fault_short_name` VARCHAR(20), +`fault_description` VARCHAR(255), +`other_fault_details` VARCHAR(255), +FOREIGN KEY (`part_id` ) REFERENCES `Parts`(`part_id` ) +); + + +CREATE TABLE `Fault_Log_Parts` ( +`fault_log_entry_id` INTEGER NOT NULL, +`part_fault_id` INTEGER NOT NULL, +`fault_status` VARCHAR(10) NOT NULL, +FOREIGN KEY (`part_fault_id` ) REFERENCES `Part_Faults`(`part_fault_id` ), +FOREIGN KEY (`fault_log_entry_id` ) REFERENCES `Fault_Log`(`fault_log_entry_id` ) +); + +INSERT INTO Part_Faults (`part_fault_id`, `part_id`, `fault_short_name`, `fault_description`, `other_fault_details`) VALUES (1, 1, 'PW', 'Package Wrong', NULL); +INSERT INTO Part_Faults (`part_fault_id`, `part_id`, `fault_short_name`, `fault_description`, `other_fault_details`) VALUES (2, 1, 'PW', 'Package Wrong', NULL); +INSERT INTO Part_Faults (`part_fault_id`, `part_id`, `fault_short_name`, `fault_description`, `other_fault_details`) VALUES (3, 3, 'TW', 'Top Parts Wrong', NULL); +INSERT INTO Part_Faults (`part_fault_id`, `part_id`, `fault_short_name`, `fault_description`, `other_fault_details`) VALUES (4, 1, 'PW', 'Package Wrong', NULL); +INSERT INTO Part_Faults (`part_fault_id`, `part_id`, `fault_short_name`, `fault_description`, `other_fault_details`) VALUES (5, 1, 'MW', 'Medium Scale Wrong', NULL); +INSERT INTO Part_Faults (`part_fault_id`, `part_id`, `fault_short_name`, `fault_description`, `other_fault_details`) VALUES (6, 2, 'PW', 'Package Wrong', NULL); +INSERT INTO Part_Faults (`part_fault_id`, `part_id`, `fault_short_name`, `fault_description`, `other_fault_details`) VALUES (7, 1, 'PW', 'Package Wrong', NULL); +INSERT INTO Part_Faults (`part_fault_id`, `part_id`, `fault_short_name`, `fault_description`, `other_fault_details`) VALUES (8, 3, 'TW', 'Top Parts Wrong', NULL); +INSERT INTO Part_Faults (`part_fault_id`, `part_id`, `fault_short_name`, `fault_description`, `other_fault_details`) VALUES (9, 3, 'PW', 'Package Wrong', NULL); +INSERT INTO Part_Faults (`part_fault_id`, `part_id`, `fault_short_name`, `fault_description`, `other_fault_details`) VALUES (10, 1, 'PW', 'Package Wrong', NULL); +INSERT INTO Part_Faults (`part_fault_id`, `part_id`, `fault_short_name`, `fault_description`, `other_fault_details`) VALUES (11, 3, 'MW', 'Medium Scale Wrong', NULL); +INSERT INTO Part_Faults (`part_fault_id`, `part_id`, `fault_short_name`, `fault_description`, `other_fault_details`) VALUES (12, 2, 'MW', 'Medium Scale Wrong', NULL); +INSERT INTO Part_Faults (`part_fault_id`, `part_id`, `fault_short_name`, `fault_description`, `other_fault_details`) VALUES (13, 3, 'TW', 'Top Parts Wrong', NULL); +INSERT INTO Part_Faults (`part_fault_id`, `part_id`, `fault_short_name`, `fault_description`, `other_fault_details`) VALUES (14, 1, 'TW', 'Top Parts Wrong', NULL); +INSERT INTO Part_Faults (`part_fault_id`, `part_id`, `fault_short_name`, `fault_description`, `other_fault_details`) VALUES (15, 3, 'MW', 'Medium Scale Wrong', NULL); + + + +INSERT INTO Fault_Log_Parts (`fault_log_entry_id`, `part_fault_id`, `fault_status`) VALUES (12, 3, 'Reported'); +INSERT INTO Fault_Log_Parts (`fault_log_entry_id`, `part_fault_id`, `fault_status`) VALUES (7, 4, 'Reported'); +INSERT INTO Fault_Log_Parts (`fault_log_entry_id`, `part_fault_id`, `fault_status`) VALUES (1, 9, 'Return'); +INSERT INTO Fault_Log_Parts (`fault_log_entry_id`, `part_fault_id`, `fault_status`) VALUES (1, 14, 'Fixed'); +INSERT INTO Fault_Log_Parts (`fault_log_entry_id`, `part_fault_id`, `fault_status`) VALUES (6, 4, 'Waiting'); +INSERT INTO Fault_Log_Parts (`fault_log_entry_id`, `part_fault_id`, `fault_status`) VALUES (14, 8, 'Waiting'); +INSERT INTO Fault_Log_Parts (`fault_log_entry_id`, `part_fault_id`, `fault_status`) VALUES (1, 10, 'Fixed'); +INSERT INTO Fault_Log_Parts (`fault_log_entry_id`, `part_fault_id`, `fault_status`) VALUES (3, 8, 'Return'); +INSERT INTO Fault_Log_Parts (`fault_log_entry_id`, `part_fault_id`, `fault_status`) VALUES (11, 2, 'Reported'); +INSERT INTO Fault_Log_Parts (`fault_log_entry_id`, `part_fault_id`, `fault_status`) VALUES (3, 11, 'Fixed'); +INSERT INTO Fault_Log_Parts (`fault_log_entry_id`, `part_fault_id`, `fault_status`) VALUES (11, 8, 'Reported'); +INSERT INTO Fault_Log_Parts (`fault_log_entry_id`, `part_fault_id`, `fault_status`) VALUES (4, 14, 'Waiting'); +INSERT INTO Fault_Log_Parts (`fault_log_entry_id`, `part_fault_id`, `fault_status`) VALUES (13, 15, 'Fixed'); +INSERT INTO Fault_Log_Parts (`fault_log_entry_id`, `part_fault_id`, `fault_status`) VALUES (13, 1, 'Fixed'); +INSERT INTO Fault_Log_Parts (`fault_log_entry_id`, `part_fault_id`, `fault_status`) VALUES (4, 6, 'Reported'); + + +CREATE TABLE `Skills_Required_To_Fix` ( +`part_fault_id` INTEGER NOT NULL, +`skill_id` INTEGER NOT NULL, +FOREIGN KEY (`part_fault_id` ) REFERENCES `Part_Faults`(`part_fault_id` ), +FOREIGN KEY (`skill_id` ) REFERENCES `Skills`(`skill_id` ) +); + + + + +INSERT INTO Skills_Required_To_Fix (`part_fault_id`, `skill_id`) VALUES (3, 2); +INSERT INTO Skills_Required_To_Fix (`part_fault_id`, `skill_id`) VALUES (12, 3); +INSERT INTO Skills_Required_To_Fix (`part_fault_id`, `skill_id`) VALUES (6, 1); +INSERT INTO Skills_Required_To_Fix (`part_fault_id`, `skill_id`) VALUES (15, 3); +INSERT INTO Skills_Required_To_Fix (`part_fault_id`, `skill_id`) VALUES (1, 3); +INSERT INTO Skills_Required_To_Fix (`part_fault_id`, `skill_id`) VALUES (1, 1); +INSERT INTO Skills_Required_To_Fix (`part_fault_id`, `skill_id`) VALUES (5, 3); +INSERT INTO Skills_Required_To_Fix (`part_fault_id`, `skill_id`) VALUES (13, 2); +INSERT INTO Skills_Required_To_Fix (`part_fault_id`, `skill_id`) VALUES (14, 3); +INSERT INTO Skills_Required_To_Fix (`part_fault_id`, `skill_id`) VALUES (10, 2); +INSERT INTO Skills_Required_To_Fix (`part_fault_id`, `skill_id`) VALUES (2, 1); +INSERT INTO Skills_Required_To_Fix (`part_fault_id`, `skill_id`) VALUES (7, 2); +INSERT INTO Skills_Required_To_Fix (`part_fault_id`, `skill_id`) VALUES (1, 3); +INSERT INTO Skills_Required_To_Fix (`part_fault_id`, `skill_id`) VALUES (15, 3); +INSERT INTO Skills_Required_To_Fix (`part_fault_id`, `skill_id`) VALUES (15, 2); diff --git a/database/baseball_1/baseball_1.sqlite b/database/baseball_1/baseball_1.sqlite new file mode 100644 index 0000000000000000000000000000000000000000..566d239a779f8899ce86e73b60a950b94516fabd --- /dev/null +++ b/database/baseball_1/baseball_1.sqlite @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cbeb49298ffc84465f7a27f3477fe73e05a2ced8d4c3c972d20d75c25820f29b +size 29794304 diff --git a/database/baseball_1/schema.sql b/database/baseball_1/schema.sql new file mode 100644 index 0000000000000000000000000000000000000000..a2f6317bd5ef3b4e1b1999cc460d9184567ec6cb --- /dev/null +++ b/database/baseball_1/schema.sql @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f2e61f0638e45f4d9f869c377b56f99f988d58f2a64999637c93691ebf2eb3a2 +size 57608249 diff --git a/database/battle_death/battle_death.sqlite b/database/battle_death/battle_death.sqlite new file mode 100644 index 0000000000000000000000000000000000000000..b7bb0daa4768cbd6e47c3ee7684e83907c0323be Binary files /dev/null and b/database/battle_death/battle_death.sqlite differ diff --git a/database/battle_death/schema.sql b/database/battle_death/schema.sql new file mode 100644 index 0000000000000000000000000000000000000000..71b3b57422cec3168f6c6c30e125c8872fefa1d6 --- /dev/null +++ b/database/battle_death/schema.sql @@ -0,0 +1,65 @@ +PRAGMA foreign_keys = ON; +CREATE TABLE "battle" ( +"id" int, +"name" text, +"date" text, +"bulgarian_commander" text, +"latin_commander" text, +"result" text, +primary key("id") +); + +CREATE TABLE "ship" ( +"lost_in_battle" int, +"id" int, +"name" text, +"tonnage" text, +"ship_type" text, +"location" text, +"disposition_of_ship" text, +primary key("id"), +foreign key (`lost_in_battle`) references `battle`("id") +); + + +CREATE TABLE "death" ( +"caused_by_ship_id" int, +"id" int, +"note" text, +"killed" int, +"injured" int, +primary key("id"), +foreign key ("caused_by_ship_id") references `ship`("id") +); + +INSERT INTO "battle" VALUES (1,"Battle of Adrianople","14 April 1205","Kaloyan","Baldwin I","Bulgarian victory"); +INSERT INTO "battle" VALUES (2,"Battle of Serres","June 1205","Kaloyan","Unknown","Bulgarian victory"); +INSERT INTO "battle" VALUES (3,"Battle of Rusion","31 January 1206","Kaloyan","Thierry de Termond","Bulgarian victory"); +INSERT INTO "battle" VALUES (4,"Battle of Rodosto","February 1206","Kaloyan","Unknown","Bulgarian victory"); +INSERT INTO "battle" VALUES (5,"Battle of Messinopolis","4 September 1207","Unknown","Boniface of Montferrat","Bulgarian victory"); +INSERT INTO "battle" VALUES (6,"Battle of Boruy","June 1205","Boril","Henry I","Bulgarian victory"); +INSERT INTO "battle" VALUES (7,"Battle of Philippopolis","31 June 1208","Boril","Henry I","Latin victory"); +INSERT INTO "battle" VALUES (8,"Siege of Constantinople","1235","Ivan Asen II","John of Brienne","Two Year Truce"); + + +INSERT INTO "ship" VALUES (8, 1, "Lettice","t","Brig","English Channel","Captured"); +INSERT INTO "ship" VALUES (7, 2, "Bon Accord","t","Brig","English Channel","Captured"); +INSERT INTO "ship" VALUES (6, 3, "Mary","t","Brig","English Channel","Captured"); +INSERT INTO "ship" VALUES (5, 4, "HMS Avon","391","18-gun Brig","English Channel","Wrecked"); +INSERT INTO "ship" VALUES (5, 5, "Three Brothers","t","Brig","SW Approaches","Scuttled"); +INSERT INTO "ship" VALUES (4, 6, "Bacchus","t","Brig","English Channel","Sank"); +INSERT INTO "ship" VALUES (8, 7, "HMS Atalanta","225","8 gun Brig","Mid-Atlantic","Captured"); + +INSERT INTO "death" VALUES (1, "1","Dantewada, Chhattisgarh","8","0"); +INSERT INTO "death" VALUES (2, "2","Dantewada, Chhattisgarh","3","0"); +INSERT INTO "death" VALUES (3, "13","Erraboru, Chhattisgarh","25","0"); +INSERT INTO "death" VALUES (3, "3","East Champaran, Bihar","2","0"); +INSERT INTO "death" VALUES (4, "4","Gajapati, Odisha","3","0"); +INSERT INTO "death" VALUES (4, "5","Sundargarh, Odisha","0","9"); +INSERT INTO "death" VALUES (5, "6","Dantewada, Chhattisgarh","0","0"); +INSERT INTO "death" VALUES (5, "7","Dantewada, Chhattisgarh","4","5"); +INSERT INTO "death" VALUES (6, "8","Kanker, Chhattisgarh","0","0"); +INSERT INTO "death" VALUES (1, "9","Dantewada, Chhattisgarh","29","0"); +INSERT INTO "death" VALUES (3, "10","WestMidnapore, West Bengal","0","0"); +INSERT INTO "death" VALUES (2, "11","Bastar, Chattisgarh","0","0"); +INSERT INTO "death" VALUES (5, "12","Bokaro, Jharkhand","14","0"); diff --git a/database/behavior_monitoring/behavior_monitoring.sqlite b/database/behavior_monitoring/behavior_monitoring.sqlite new file mode 100644 index 0000000000000000000000000000000000000000..c5604e0057cbe3525bee8f574b68da119f0ff3cd Binary files /dev/null and b/database/behavior_monitoring/behavior_monitoring.sqlite differ diff --git a/database/behavior_monitoring/schema.sql b/database/behavior_monitoring/schema.sql new file mode 100644 index 0000000000000000000000000000000000000000..f0de33d7567698b17d56cf3ccb0b9f490fd63c9b --- /dev/null +++ b/database/behavior_monitoring/schema.sql @@ -0,0 +1,258 @@ +PRAGMA foreign_keys = ON; +CREATE TABLE `Ref_Address_Types` ( +`address_type_code` VARCHAR(15) PRIMARY KEY, +`address_type_description` VARCHAR(80) +); +CREATE TABLE `Ref_Detention_Type` ( +`detention_type_code` VARCHAR(10) PRIMARY KEY, +`detention_type_description` VARCHAR(80) +); +CREATE TABLE `Ref_Incident_Type` ( +`incident_type_code` VARCHAR(10) PRIMARY KEY, +`incident_type_description` VARCHAR(80) +); + +INSERT INTO Ref_Address_Types (`address_type_code`, `address_type_description`) VALUES ('BILL', 'Billing'); +INSERT INTO Ref_Address_Types (`address_type_code`, `address_type_description`) VALUES ('HOME', 'Home or Residence'); +INSERT INTO Ref_Detention_Type (`detention_type_code`, `detention_type_description`) VALUES ('BREAK ', 'During Break time'); +INSERT INTO Ref_Detention_Type (`detention_type_code`, `detention_type_description`) VALUES ('AFTER', 'After School'); +INSERT INTO Ref_Detention_Type (`detention_type_code`, `detention_type_description`) VALUES ('LUNCH', 'Lunch-time'); +INSERT INTO Ref_Incident_Type (`incident_type_code`, `incident_type_description`) VALUES ('NOISE', 'Noise'); +INSERT INTO Ref_Incident_Type (`incident_type_code`, `incident_type_description`) VALUES ('VIOLENCE', 'Violence'); +INSERT INTO Ref_Incident_Type (`incident_type_code`, `incident_type_description`) VALUES ('DISTURB', 'Disturbance'); + + + + +CREATE TABLE `Addresses` ( +`address_id` INTEGER PRIMARY KEY, +`line_1` VARCHAR(120), +`line_2` VARCHAR(120), +`line_3` VARCHAR(120), +`city` VARCHAR(80), +`zip_postcode` VARCHAR(20), +`state_province_county` VARCHAR(50), +`country` VARCHAR(50), +`other_address_details` VARCHAR(255) +); + +INSERT INTO Addresses (`address_id`, `line_1`, `line_2`, `line_3`, `city`, `zip_postcode`, `state_province_county`, `country`, `other_address_details`) VALUES (1, '020 Orie Canyon', NULL, NULL, 'North Loyceville', '197', 'Hawaii', 'USA', NULL); +INSERT INTO Addresses (`address_id`, `line_1`, `line_2`, `line_3`, `city`, `zip_postcode`, `state_province_county`, `country`, `other_address_details`) VALUES (2, '1333 Boyle Lane', NULL, NULL, 'West Sean', '937', 'Illinois', 'USA', NULL); +INSERT INTO Addresses (`address_id`, `line_1`, `line_2`, `line_3`, `city`, `zip_postcode`, `state_province_county`, `country`, `other_address_details`) VALUES (3, '027 Kim Divide Apt. 492', NULL, NULL, 'Beierview', '918', 'Texas', 'USA', NULL); +INSERT INTO Addresses (`address_id`, `line_1`, `line_2`, `line_3`, `city`, `zip_postcode`, `state_province_county`, `country`, `other_address_details`) VALUES (4, '056 Murphy Stravenue Apt. 600', NULL, NULL, 'Elinoreport', '238', 'Wisconsin', 'USA', NULL); +INSERT INTO Addresses (`address_id`, `line_1`, `line_2`, `line_3`, `city`, `zip_postcode`, `state_province_county`, `country`, `other_address_details`) VALUES (5, '719 Pfannerstill Ridge Suite 663', NULL, NULL, 'Meganeland', '002', 'SouthDakota', 'USA', NULL); +INSERT INTO Addresses (`address_id`, `line_1`, `line_2`, `line_3`, `city`, `zip_postcode`, `state_province_county`, `country`, `other_address_details`) VALUES (6, '420 Zieme Oval', NULL, NULL, 'Corkeryborough', '744', 'Wisconsin', 'USA', NULL); +INSERT INTO Addresses (`address_id`, `line_1`, `line_2`, `line_3`, `city`, `zip_postcode`, `state_province_county`, `country`, `other_address_details`) VALUES (7, '27712 Marks Lake Apt. 752', NULL, NULL, 'Gleasonshire', '182', 'Maryland', 'USA', NULL); +INSERT INTO Addresses (`address_id`, `line_1`, `line_2`, `line_3`, `city`, `zip_postcode`, `state_province_county`, `country`, `other_address_details`) VALUES (8, '6960 O''Connell Dale Suite 622', NULL, NULL, 'New Annabellefort', '062', 'Kentucky', 'USA', NULL); +INSERT INTO Addresses (`address_id`, `line_1`, `line_2`, `line_3`, `city`, `zip_postcode`, `state_province_county`, `country`, `other_address_details`) VALUES (9, '18327 Jaime Terrace Suite 343', NULL, NULL, 'Edmundton', '520', 'Oregon', 'USA', NULL); +INSERT INTO Addresses (`address_id`, `line_1`, `line_2`, `line_3`, `city`, `zip_postcode`, `state_province_county`, `country`, `other_address_details`) VALUES (10, '3069 Garrison Squares', NULL, NULL, 'Lake Ahmadland', '748', 'Nevada', 'USA', NULL); +INSERT INTO Addresses (`address_id`, `line_1`, `line_2`, `line_3`, `city`, `zip_postcode`, `state_province_county`, `country`, `other_address_details`) VALUES (11, '668 Wilkinson Corners Apt. 992', NULL, NULL, 'North Jayceton', '612', 'Illinois', 'USA', NULL); +INSERT INTO Addresses (`address_id`, `line_1`, `line_2`, `line_3`, `city`, `zip_postcode`, `state_province_county`, `country`, `other_address_details`) VALUES (12, '11940 Pauline Shoals', NULL, NULL, 'West Lianafurt', '619', 'Arkansas', 'USA', NULL); +INSERT INTO Addresses (`address_id`, `line_1`, `line_2`, `line_3`, `city`, `zip_postcode`, `state_province_county`, `country`, `other_address_details`) VALUES (13, '39834 Anne Mission Apt. 956', NULL, NULL, 'North Orlobury', '663', 'Utah', 'USA', NULL); +INSERT INTO Addresses (`address_id`, `line_1`, `line_2`, `line_3`, `city`, `zip_postcode`, `state_province_county`, `country`, `other_address_details`) VALUES (14, '4115 Ebert Fall', NULL, NULL, 'North Fletcherside', '607', 'Arizona', 'USA', NULL); +INSERT INTO Addresses (`address_id`, `line_1`, `line_2`, `line_3`, `city`, `zip_postcode`, `state_province_county`, `country`, `other_address_details`) VALUES (15, '920 Brayan Harbors', NULL, NULL, 'Caitlynstad', '435', 'Montana', 'USA', NULL); +INSERT INTO Addresses (`address_id`, `line_1`, `line_2`, `line_3`, `city`, `zip_postcode`, `state_province_county`, `country`, `other_address_details`) VALUES (16, '014 Runte Haven Apt. 870', NULL, NULL, 'Tressamouth', '637', 'NewYork', 'USA', NULL); +INSERT INTO Addresses (`address_id`, `line_1`, `line_2`, `line_3`, `city`, `zip_postcode`, `state_province_county`, `country`, `other_address_details`) VALUES (17, '654 Fisher Roads', NULL, NULL, 'Hegmannborough', '397', 'Tennessee', 'USA', NULL); +INSERT INTO Addresses (`address_id`, `line_1`, `line_2`, `line_3`, `city`, `zip_postcode`, `state_province_county`, `country`, `other_address_details`) VALUES (18, '266 Kub Crossing', NULL, NULL, 'Hintzport', '865', 'Alabama', 'USA', NULL); +INSERT INTO Addresses (`address_id`, `line_1`, `line_2`, `line_3`, `city`, `zip_postcode`, `state_province_county`, `country`, `other_address_details`) VALUES (19, '51391 Dach Parkways Apt. 124', NULL, NULL, 'Unachester', '753', 'Wisconsin', 'USA', NULL); +INSERT INTO Addresses (`address_id`, `line_1`, `line_2`, `line_3`, `city`, `zip_postcode`, `state_province_county`, `country`, `other_address_details`) VALUES (20, '2451 Wiza Inlet', NULL, NULL, 'Larkinport', '545', 'NewYork', 'USA', NULL); + + +CREATE TABLE `Students` ( +`student_id` INTEGER PRIMARY KEY, +`address_id` INTEGER NOT NULL, +`first_name` VARCHAR(80), +`middle_name` VARCHAR(40), +`last_name` VARCHAR(40), +`cell_mobile_number` VARCHAR(40), +`email_address` VARCHAR(40), +`date_first_rental` DATETIME, +`date_left_university` DATETIME, +`other_student_details` VARCHAR(255), +FOREIGN KEY (`address_id` ) REFERENCES `Addresses`(`address_id` ) +); + +INSERT INTO Students (`student_id`, `address_id`, `first_name`, `middle_name`, `last_name`, `cell_mobile_number`, `email_address`, `date_first_rental`, `date_left_university`, `other_student_details`) VALUES (1, 19, 'Emma', 'Frederic', 'Rohan', '235.899.9744', 'derrick.jenkins@example.com', '2017-12-05 15:20:04', '2018-03-03 03:33:05', NULL); +INSERT INTO Students (`student_id`, `address_id`, `first_name`, `middle_name`, `last_name`, `cell_mobile_number`, `email_address`, `date_first_rental`, `date_left_university`, `other_student_details`) VALUES (2, 9, 'Louvenia', 'Fatima', 'Hansen', '1-247-673-8446', 'rohan.clarabelle@example.org', '2017-08-08 22:30:36', '2018-02-24 11:12:11', NULL); +INSERT INTO Students (`student_id`, `address_id`, `first_name`, `middle_name`, `last_name`, `cell_mobile_number`, `email_address`, `date_first_rental`, `date_left_university`, `other_student_details`) VALUES (3, 10, 'Rhea', 'Gardner', 'Bergnaum', '1-751-162-9676x115', 'kkirlin@example.org', '2017-11-15 04:57:28', '2018-03-19 12:49:20', NULL); +INSERT INTO Students (`student_id`, `address_id`, `first_name`, `middle_name`, `last_name`, `cell_mobile_number`, `email_address`, `date_first_rental`, `date_left_university`, `other_student_details`) VALUES (4, 8, 'David', 'Darlene', 'Gorczany', '1-895-196-9979', 'eolson@example.com', '2018-02-15 20:03:11', '2018-03-11 02:21:24', NULL); +INSERT INTO Students (`student_id`, `address_id`, `first_name`, `middle_name`, `last_name`, `cell_mobile_number`, `email_address`, `date_first_rental`, `date_left_university`, `other_student_details`) VALUES (5, 8, 'Lucile', 'Stone', 'Gottlieb', '1-036-062-5465', 'dicki.kathryne@example.org', '2017-07-20 18:20:27', '2018-03-18 16:07:42', NULL); +INSERT INTO Students (`student_id`, `address_id`, `first_name`, `middle_name`, `last_name`, `cell_mobile_number`, `email_address`, `date_first_rental`, `date_left_university`, `other_student_details`) VALUES (6, 12, 'Antonietta', 'Crystal', 'Fahey', '(874)070-9495', 'norwood.howell@example.org', '2017-10-31 12:33:09', '2018-03-20 22:01:07', NULL); +INSERT INTO Students (`student_id`, `address_id`, `first_name`, `middle_name`, `last_name`, `cell_mobile_number`, `email_address`, `date_first_rental`, `date_left_university`, `other_student_details`) VALUES (7, 20, 'Rupert', 'Lincoln', 'Marks', '763.072.5520x5907', 'lisette.brekke@example.net', '2017-09-25 12:02:23', '2018-03-01 08:56:04', 'first honor'); +INSERT INTO Students (`student_id`, `address_id`, `first_name`, `middle_name`, `last_name`, `cell_mobile_number`, `email_address`, `date_first_rental`, `date_left_university`, `other_student_details`) VALUES (8, 14, 'Julia', 'Arno', 'Balistreri', '319.497.4575x2214', 'jasmin.schuppe@example.com', '2018-02-23 02:28:07', '2018-03-01 16:03:55', NULL); +INSERT INTO Students (`student_id`, `address_id`, `first_name`, `middle_name`, `last_name`, `cell_mobile_number`, `email_address`, `date_first_rental`, `date_left_university`, `other_student_details`) VALUES (9, 19, 'Christy', 'Devonte', 'Huels', '(568)451-0917x3945', 'dora.zboncak@example.org', '2018-01-11 19:49:39', '2018-03-15 01:47:11', NULL); +INSERT INTO Students (`student_id`, `address_id`, `first_name`, `middle_name`, `last_name`, `cell_mobile_number`, `email_address`, `date_first_rental`, `date_left_university`, `other_student_details`) VALUES (10, 2, 'Adella', 'Chesley', 'Krajcik', '08605192839', 'frederique.mante@example.org', '2017-07-05 19:15:29', '2018-03-11 15:57:19', 'first honor'); +INSERT INTO Students (`student_id`, `address_id`, `first_name`, `middle_name`, `last_name`, `cell_mobile_number`, `email_address`, `date_first_rental`, `date_left_university`, `other_student_details`) VALUES (11, 2, 'Isac', 'Cleta', 'Fadel', '+60(5)3280072514', 'qharvey@example.com', '2017-09-13 04:06:15', '2018-03-05 07:30:22', 'first honor'); +INSERT INTO Students (`student_id`, `address_id`, `first_name`, `middle_name`, `last_name`, `cell_mobile_number`, `email_address`, `date_first_rental`, `date_left_university`, `other_student_details`) VALUES (12, 1, 'Ferne', 'Jerod', 'Weimann', '(921)011-7909x3518', 'mitchel55@example.net', '2017-05-24 05:00:18', '2018-02-28 12:33:53', NULL); +INSERT INTO Students (`student_id`, `address_id`, `first_name`, `middle_name`, `last_name`, `cell_mobile_number`, `email_address`, `date_first_rental`, `date_left_university`, `other_student_details`) VALUES (13, 17, 'Misael', 'Justyn', 'Will', '(062)892-7033', 'gbeatty@example.com', '2017-10-15 06:52:46', '2018-03-18 07:01:27', NULL); +INSERT INTO Students (`student_id`, `address_id`, `first_name`, `middle_name`, `last_name`, `cell_mobile_number`, `email_address`, `date_first_rental`, `date_left_university`, `other_student_details`) VALUES (14, 9, 'Fanny', 'Ashlee', 'Haley', '(820)260-5721', 'foster.zemlak@example.com', '2018-03-14 11:37:10', '2018-03-12 15:05:53', NULL); +INSERT INTO Students (`student_id`, `address_id`, `first_name`, `middle_name`, `last_name`, `cell_mobile_number`, `email_address`, `date_first_rental`, `date_left_university`, `other_student_details`) VALUES (15, 15, 'Eugene', 'Mustafa', 'Tremblay', '1-498-138-8088', 'kertzmann.devon@example.net', '2018-03-11 22:42:47', '2018-03-07 11:41:26', 'first honor'); + + +CREATE TABLE `Teachers` ( +`teacher_id` INTEGER PRIMARY KEY, +`address_id` INTEGER NOT NULL, +`first_name` VARCHAR(80), +`middle_name` VARCHAR(80), +`last_name` VARCHAR(80), +`gender` VARCHAR(1), +`cell_mobile_number` VARCHAR(40), +`email_address` VARCHAR(40), +`other_details` VARCHAR(255), +FOREIGN KEY (`address_id` ) REFERENCES `Addresses`(`address_id` ) +); +INSERT INTO Teachers (`teacher_id`, `address_id`, `first_name`, `middle_name`, `last_name`, `gender`, `cell_mobile_number`, `email_address`, `other_details`) VALUES (1, 15, 'Lyla', 'Wilson', 'Medhurst', '1', '792.333.7714', 'ohammes@example.com', NULL); +INSERT INTO Teachers (`teacher_id`, `address_id`, `first_name`, `middle_name`, `last_name`, `gender`, `cell_mobile_number`, `email_address`, `other_details`) VALUES (2, 7, 'Sid', 'Tremayne', 'Brakus', '1', '202.626.1698x9242', 'deborah37@example.com', NULL); +INSERT INTO Teachers (`teacher_id`, `address_id`, `first_name`, `middle_name`, `last_name`, `gender`, `cell_mobile_number`, `email_address`, `other_details`) VALUES (3, 8, 'Trystan', 'Alexane', 'Schuster', '1', '583-467-0403x647', 'hilll.kitty@example.com', NULL); +INSERT INTO Teachers (`teacher_id`, `address_id`, `first_name`, `middle_name`, `last_name`, `gender`, `cell_mobile_number`, `email_address`, `other_details`) VALUES (4, 7, 'Donnie', 'Morgan', 'Kuhic', '1', '07928511102', 'destany.reichert@example.net', NULL); +INSERT INTO Teachers (`teacher_id`, `address_id`, `first_name`, `middle_name`, `last_name`, `gender`, `cell_mobile_number`, `email_address`, `other_details`) VALUES (5, 15, 'Aniya', 'Ian', 'Becker', '1', '599.373.0773x67706', 'hahn.isom@example.com', 'Dean'); +INSERT INTO Teachers (`teacher_id`, `address_id`, `first_name`, `middle_name`, `last_name`, `gender`, `cell_mobile_number`, `email_address`, `other_details`) VALUES (6, 16, 'Citlalli', 'Ahmad', 'Kuhic', '1', '017.636.7409', 'kozey.adeline@example.org', NULL); +INSERT INTO Teachers (`teacher_id`, `address_id`, `first_name`, `middle_name`, `last_name`, `gender`, `cell_mobile_number`, `email_address`, `other_details`) VALUES (7, 3, 'Alvis', 'Macey', 'Schultz', '1', '944-154-5379x4990', 'everardo.lynch@example.net', NULL); +INSERT INTO Teachers (`teacher_id`, `address_id`, `first_name`, `middle_name`, `last_name`, `gender`, `cell_mobile_number`, `email_address`, `other_details`) VALUES (8, 13, 'Cecilia', 'Mitchel', 'Ward', '0', '809.852.7009', 'paula.abbott@example.org', NULL); +INSERT INTO Teachers (`teacher_id`, `address_id`, `first_name`, `middle_name`, `last_name`, `gender`, `cell_mobile_number`, `email_address`, `other_details`) VALUES (9, 2, 'Woodrow', 'Lilla', 'Goldner', '1', '084-270-4880', 'ierdman@example.com', NULL); +INSERT INTO Teachers (`teacher_id`, `address_id`, `first_name`, `middle_name`, `last_name`, `gender`, `cell_mobile_number`, `email_address`, `other_details`) VALUES (10, 8, 'Gregory', 'Ardith', 'Heller', '0', '908-759-1808x63115', 'valentina.yost@example.com', NULL); +INSERT INTO Teachers (`teacher_id`, `address_id`, `first_name`, `middle_name`, `last_name`, `gender`, `cell_mobile_number`, `email_address`, `other_details`) VALUES (11, 12, 'Edmond', 'Kailyn', 'Lang', '0', '(659)018-0143x379', 'lila58@example.com', NULL); +INSERT INTO Teachers (`teacher_id`, `address_id`, `first_name`, `middle_name`, `last_name`, `gender`, `cell_mobile_number`, `email_address`, `other_details`) VALUES (12, 10, 'Camren', 'Kendall', 'Moore', '1', '(381)799-4759x169', 'randy.gerhold@example.org', NULL); +INSERT INTO Teachers (`teacher_id`, `address_id`, `first_name`, `middle_name`, `last_name`, `gender`, `cell_mobile_number`, `email_address`, `other_details`) VALUES (13, 19, 'Stephanie', 'Tamara', 'Price', '0', '952.821.3392', 'kiana.lang@example.net', NULL); +INSERT INTO Teachers (`teacher_id`, `address_id`, `first_name`, `middle_name`, `last_name`, `gender`, `cell_mobile_number`, `email_address`, `other_details`) VALUES (14, 14, 'Evelyn', 'Keanu', 'Hansen', '0', '1-787-044-8336x606', 'maribel21@example.org', NULL); +INSERT INTO Teachers (`teacher_id`, `address_id`, `first_name`, `middle_name`, `last_name`, `gender`, `cell_mobile_number`, `email_address`, `other_details`) VALUES (15, 10, 'Hobart', 'Michel', 'Bergnaum', '1', '796-453-5175x64012', 'willms.lane@example.com', NULL); + + +CREATE TABLE `Assessment_Notes` ( +`notes_id` INTEGER NOT NULL , +`student_id` INTEGER, +`teacher_id` INTEGER NOT NULL, +`date_of_notes` DATETIME, +`text_of_notes` VARCHAR(255), +`other_details` VARCHAR(255), +FOREIGN KEY (`student_id` ) REFERENCES `Students`(`student_id` ), +FOREIGN KEY (`teacher_id` ) REFERENCES `Teachers`(`teacher_id` ) +); +INSERT INTO Assessment_Notes (`notes_id`, `student_id`, `teacher_id`, `date_of_notes`, `text_of_notes`, `other_details`) VALUES (1, 7, 3, '1978-04-15 04:49:18', NULL, NULL); +INSERT INTO Assessment_Notes (`notes_id`, `student_id`, `teacher_id`, `date_of_notes`, `text_of_notes`, `other_details`) VALUES (2, 11, 10, '2005-06-30 02:48:35', NULL, NULL); +INSERT INTO Assessment_Notes (`notes_id`, `student_id`, `teacher_id`, `date_of_notes`, `text_of_notes`, `other_details`) VALUES (3, 15, 3, '1988-06-09 00:24:01', NULL, NULL); +INSERT INTO Assessment_Notes (`notes_id`, `student_id`, `teacher_id`, `date_of_notes`, `text_of_notes`, `other_details`) VALUES (4, 12, 9, '1991-08-15 01:22:08', NULL, NULL); +INSERT INTO Assessment_Notes (`notes_id`, `student_id`, `teacher_id`, `date_of_notes`, `text_of_notes`, `other_details`) VALUES (5, 4, 10, '1971-05-05 20:07:08', NULL, NULL); +INSERT INTO Assessment_Notes (`notes_id`, `student_id`, `teacher_id`, `date_of_notes`, `text_of_notes`, `other_details`) VALUES (6, 12, 6, '2014-01-31 02:05:02', NULL, NULL); +INSERT INTO Assessment_Notes (`notes_id`, `student_id`, `teacher_id`, `date_of_notes`, `text_of_notes`, `other_details`) VALUES (7, 12, 7, '1984-12-13 23:04:28', NULL, NULL); +INSERT INTO Assessment_Notes (`notes_id`, `student_id`, `teacher_id`, `date_of_notes`, `text_of_notes`, `other_details`) VALUES (8, 7, 14, '1988-04-11 04:56:26', NULL, NULL); +INSERT INTO Assessment_Notes (`notes_id`, `student_id`, `teacher_id`, `date_of_notes`, `text_of_notes`, `other_details`) VALUES (9, 14, 15, '1972-04-27 04:51:51', NULL, NULL); +INSERT INTO Assessment_Notes (`notes_id`, `student_id`, `teacher_id`, `date_of_notes`, `text_of_notes`, `other_details`) VALUES (10, 13, 6, '2017-12-14 08:21:54', NULL, NULL); +INSERT INTO Assessment_Notes (`notes_id`, `student_id`, `teacher_id`, `date_of_notes`, `text_of_notes`, `other_details`) VALUES (11, 3, 14, '1993-08-16 17:39:53', NULL, NULL); +INSERT INTO Assessment_Notes (`notes_id`, `student_id`, `teacher_id`, `date_of_notes`, `text_of_notes`, `other_details`) VALUES (12, 1, 1, '1991-08-20 08:03:23', NULL, NULL); +INSERT INTO Assessment_Notes (`notes_id`, `student_id`, `teacher_id`, `date_of_notes`, `text_of_notes`, `other_details`) VALUES (13, 13, 3, '2014-04-28 02:07:53', NULL, NULL); +INSERT INTO Assessment_Notes (`notes_id`, `student_id`, `teacher_id`, `date_of_notes`, `text_of_notes`, `other_details`) VALUES (14, 14, 15, '1974-11-26 04:23:22', NULL, NULL); +INSERT INTO Assessment_Notes (`notes_id`, `student_id`, `teacher_id`, `date_of_notes`, `text_of_notes`, `other_details`) VALUES (15, 1, 9, '1984-09-10 01:18:34', NULL, NULL); + + +CREATE TABLE `Behavior_Incident` ( +`incident_id` INTEGER PRIMARY KEY, +`incident_type_code` VARCHAR(10) NOT NULL, +`student_id` INTEGER NOT NULL, +`date_incident_start` DATETIME, +`date_incident_end` DATETIME, +`incident_summary` VARCHAR(255), +`recommendations` VARCHAR(255), +`other_details` VARCHAR(255), +FOREIGN KEY (`incident_type_code` ) REFERENCES `Ref_Incident_Type`(`incident_type_code` ), +FOREIGN KEY (`student_id` ) REFERENCES `Students`(`student_id` ) +); +INSERT INTO Behavior_Incident (`incident_id`, `incident_type_code`, `student_id`, `date_incident_start`, `date_incident_end`, `incident_summary`, `recommendations`, `other_details`) VALUES (1, 'NOISE', 6, '2017-07-09 10:04:13', '2018-03-08 14:08:54', NULL, NULL, NULL); +INSERT INTO Behavior_Incident (`incident_id`, `incident_type_code`, `student_id`, `date_incident_start`, `date_incident_end`, `incident_summary`, `recommendations`, `other_details`) VALUES (2, 'DISTURB', 13, '2018-01-31 10:51:13', '2018-03-18 18:40:05', NULL, NULL, NULL); +INSERT INTO Behavior_Incident (`incident_id`, `incident_type_code`, `student_id`, `date_incident_start`, `date_incident_end`, `incident_summary`, `recommendations`, `other_details`) VALUES (3, 'VIOLENCE', 1, '2017-10-10 22:43:54', '2018-03-22 02:10:35', NULL, 'Transfer schools', NULL); +INSERT INTO Behavior_Incident (`incident_id`, `incident_type_code`, `student_id`, `date_incident_start`, `date_incident_end`, `incident_summary`, `recommendations`, `other_details`) VALUES (4, 'VIOLENCE', 10, '2017-07-20 17:43:50', '2018-03-09 06:28:44', NULL, NULL, NULL); +INSERT INTO Behavior_Incident (`incident_id`, `incident_type_code`, `student_id`, `date_incident_start`, `date_incident_end`, `incident_summary`, `recommendations`, `other_details`) VALUES (5, 'NOISE', 7, '2017-08-13 22:15:05', '2018-02-25 05:38:58', NULL, NULL, NULL); +INSERT INTO Behavior_Incident (`incident_id`, `incident_type_code`, `student_id`, `date_incident_start`, `date_incident_end`, `incident_summary`, `recommendations`, `other_details`) VALUES (6, 'VIOLENCE', 8, '2017-06-09 18:32:28', '2018-03-20 10:32:10', NULL, NULL, NULL); +INSERT INTO Behavior_Incident (`incident_id`, `incident_type_code`, `student_id`, `date_incident_start`, `date_incident_end`, `incident_summary`, `recommendations`, `other_details`) VALUES (7, 'VIOLENCE', 4, '2017-04-23 07:03:17', '2018-03-19 02:35:39', NULL, NULL, NULL); +INSERT INTO Behavior_Incident (`incident_id`, `incident_type_code`, `student_id`, `date_incident_start`, `date_incident_end`, `incident_summary`, `recommendations`, `other_details`) VALUES (8, 'DISTURB', 1, '2017-05-02 12:52:09', '2018-03-18 01:23:29', NULL, NULL, NULL); +INSERT INTO Behavior_Incident (`incident_id`, `incident_type_code`, `student_id`, `date_incident_start`, `date_incident_end`, `incident_summary`, `recommendations`, `other_details`) VALUES (9, 'NOISE', 11, '2017-06-19 14:25:54', '2018-03-08 09:36:36', NULL, NULL, NULL); +INSERT INTO Behavior_Incident (`incident_id`, `incident_type_code`, `student_id`, `date_incident_start`, `date_incident_end`, `incident_summary`, `recommendations`, `other_details`) VALUES (10, 'NOISE', 1, '2018-01-27 09:24:45', '2018-03-13 05:18:05', NULL, NULL, NULL); +INSERT INTO Behavior_Incident (`incident_id`, `incident_type_code`, `student_id`, `date_incident_start`, `date_incident_end`, `incident_summary`, `recommendations`, `other_details`) VALUES (11, 'VIOLENCE', 9, '2018-03-06 21:03:58', '2018-03-06 14:44:37', NULL, 'Transfer schools', NULL); +INSERT INTO Behavior_Incident (`incident_id`, `incident_type_code`, `student_id`, `date_incident_start`, `date_incident_end`, `incident_summary`, `recommendations`, `other_details`) VALUES (12, 'DISTURB', 7, '2017-08-27 03:21:30', '2018-03-02 16:06:34', NULL, NULL, NULL); +INSERT INTO Behavior_Incident (`incident_id`, `incident_type_code`, `student_id`, `date_incident_start`, `date_incident_end`, `incident_summary`, `recommendations`, `other_details`) VALUES (13, 'VIOLENCE', 5, '2017-05-25 15:02:53', '2018-03-10 21:12:22', NULL, NULL, NULL); +INSERT INTO Behavior_Incident (`incident_id`, `incident_type_code`, `student_id`, `date_incident_start`, `date_incident_end`, `incident_summary`, `recommendations`, `other_details`) VALUES (14, 'NOISE', 1, '2017-08-29 20:48:56', '2018-03-16 14:37:20', NULL, 'Transfer schools', NULL); +INSERT INTO Behavior_Incident (`incident_id`, `incident_type_code`, `student_id`, `date_incident_start`, `date_incident_end`, `incident_summary`, `recommendations`, `other_details`) VALUES (15, 'NOISE', 15, '2018-02-05 13:13:45', '2018-03-08 09:00:48', NULL, NULL, NULL); + + +CREATE TABLE `Detention` ( +`detention_id` INTEGER PRIMARY KEY, +`detention_type_code` VARCHAR(10) NOT NULL, +`teacher_id` INTEGER, +`datetime_detention_start` DATETIME, +`datetime_detention_end` DATETIME, +`detention_summary` VARCHAR(255), +`other_details` VARCHAR(255), +FOREIGN KEY (`detention_type_code` ) REFERENCES `Ref_Detention_Type`(`detention_type_code` ), +FOREIGN KEY (`teacher_id` ) REFERENCES `Teachers`(`teacher_id` ) +); + +CREATE TABLE `Student_Addresses` ( +`student_id` INTEGER NOT NULL, +`address_id` INTEGER NOT NULL, +`date_address_from` DATETIME NOT NULL, +`date_address_to` DATETIME, +`monthly_rental` DECIMAL(19,4), +`other_details` VARCHAR(255), +FOREIGN KEY (`address_id` ) REFERENCES `Addresses`(`address_id` ), +FOREIGN KEY (`student_id` ) REFERENCES `Students`(`student_id` ) +); + +CREATE TABLE `Students_in_Detention` ( +`student_id` INTEGER NOT NULL, +`detention_id` INTEGER NOT NULL, +`incident_id` INTEGER NOT NULL, +FOREIGN KEY (`incident_id` ) REFERENCES `Behavior_Incident`(`incident_id` ), +FOREIGN KEY (`detention_id` ) REFERENCES `Detention`(`detention_id` ), +FOREIGN KEY (`student_id` ) REFERENCES `Students`(`student_id` ) +); + +INSERT INTO Detention (`detention_id`, `detention_type_code`, `teacher_id`, `datetime_detention_start`, `datetime_detention_end`, `detention_summary`, `other_details`) VALUES (1, 'AFTER', 7, '2017-09-05 00:38:25', '2018-03-08 02:08:32', NULL, NULL); +INSERT INTO Detention (`detention_id`, `detention_type_code`, `teacher_id`, `datetime_detention_start`, `datetime_detention_end`, `detention_summary`, `other_details`) VALUES (2, 'AFTER', 14, '2018-01-10 08:09:02', '2018-03-07 04:24:48', NULL, NULL); +INSERT INTO Detention (`detention_id`, `detention_type_code`, `teacher_id`, `datetime_detention_start`, `datetime_detention_end`, `detention_summary`, `other_details`) VALUES (3, 'BREAK ', 11, '2017-12-14 06:40:29', '2018-03-08 09:16:38', NULL, NULL); +INSERT INTO Detention (`detention_id`, `detention_type_code`, `teacher_id`, `datetime_detention_start`, `datetime_detention_end`, `detention_summary`, `other_details`) VALUES (4, 'AFTER', 8, '2017-06-09 06:13:09', '2018-03-21 19:34:56', NULL, NULL); +INSERT INTO Detention (`detention_id`, `detention_type_code`, `teacher_id`, `datetime_detention_start`, `datetime_detention_end`, `detention_summary`, `other_details`) VALUES (5, 'BREAK ', 3, '2017-08-25 12:00:46', '2018-03-11 13:21:07', NULL, NULL); +INSERT INTO Detention (`detention_id`, `detention_type_code`, `teacher_id`, `datetime_detention_start`, `datetime_detention_end`, `detention_summary`, `other_details`) VALUES (6, 'BREAK ', 12, '2017-10-20 22:34:44', '2018-03-11 12:58:40', NULL, NULL); +INSERT INTO Detention (`detention_id`, `detention_type_code`, `teacher_id`, `datetime_detention_start`, `datetime_detention_end`, `detention_summary`, `other_details`) VALUES (7, 'BREAK ', 15, '2018-02-19 11:44:52', '2018-03-17 12:35:41', NULL, NULL); +INSERT INTO Detention (`detention_id`, `detention_type_code`, `teacher_id`, `datetime_detention_start`, `datetime_detention_end`, `detention_summary`, `other_details`) VALUES (8, 'BREAK ', 5, '2017-11-26 15:05:05', '2018-03-16 01:37:25', NULL, NULL); +INSERT INTO Detention (`detention_id`, `detention_type_code`, `teacher_id`, `datetime_detention_start`, `datetime_detention_end`, `detention_summary`, `other_details`) VALUES (9, 'LUNCH', 15, '2017-10-30 16:04:00', '2018-03-22 20:15:47', NULL, NULL); +INSERT INTO Detention (`detention_id`, `detention_type_code`, `teacher_id`, `datetime_detention_start`, `datetime_detention_end`, `detention_summary`, `other_details`) VALUES (10, 'AFTER', 15, '2018-01-29 20:43:45', '2018-03-05 03:31:24', NULL, NULL); +INSERT INTO Detention (`detention_id`, `detention_type_code`, `teacher_id`, `datetime_detention_start`, `datetime_detention_end`, `detention_summary`, `other_details`) VALUES (11, 'AFTER', 8, '2017-10-03 18:44:31', '2018-03-03 14:58:43', NULL, NULL); +INSERT INTO Detention (`detention_id`, `detention_type_code`, `teacher_id`, `datetime_detention_start`, `datetime_detention_end`, `detention_summary`, `other_details`) VALUES (12, 'LUNCH', 3, '2018-01-20 19:06:56', '2018-02-25 07:20:30', NULL, NULL); +INSERT INTO Detention (`detention_id`, `detention_type_code`, `teacher_id`, `datetime_detention_start`, `datetime_detention_end`, `detention_summary`, `other_details`) VALUES (13, 'BREAK ', 10, '2017-08-02 07:46:39', '2018-03-10 14:58:31', NULL, NULL); +INSERT INTO Detention (`detention_id`, `detention_type_code`, `teacher_id`, `datetime_detention_start`, `datetime_detention_end`, `detention_summary`, `other_details`) VALUES (14, 'AFTER', 12, '2017-12-18 13:47:51', '2018-03-04 20:52:51', NULL, NULL); +INSERT INTO Detention (`detention_id`, `detention_type_code`, `teacher_id`, `datetime_detention_start`, `datetime_detention_end`, `detention_summary`, `other_details`) VALUES (15, 'LUNCH', 11, '2017-08-21 06:41:29', '2018-03-13 20:37:39', NULL, NULL); +INSERT INTO Student_Addresses (`student_id`, `address_id`, `date_address_from`, `date_address_to`, `monthly_rental`, `other_details`) VALUES (6, 12, '2017-10-16 13:56:34', '2018-03-15 10:37:19', '826.4319', 'house'); +INSERT INTO Student_Addresses (`student_id`, `address_id`, `date_address_from`, `date_address_to`, `monthly_rental`, `other_details`) VALUES (3, 18, '2017-06-19 12:39:39', '2018-03-02 00:19:57', '1113.0996', 'house'); +INSERT INTO Student_Addresses (`student_id`, `address_id`, `date_address_from`, `date_address_to`, `monthly_rental`, `other_details`) VALUES (8, 1, '2017-10-31 12:40:34', '2018-02-25 05:21:34', '1297.3186', 'apartment'); +INSERT INTO Student_Addresses (`student_id`, `address_id`, `date_address_from`, `date_address_to`, `monthly_rental`, `other_details`) VALUES (7, 3, '2017-04-28 06:27:14', '2018-03-23 09:52:56', '894.0958', 'house'); +INSERT INTO Student_Addresses (`student_id`, `address_id`, `date_address_from`, `date_address_to`, `monthly_rental`, `other_details`) VALUES (13, 16, '2018-03-23 08:25:36', '2018-03-12 17:21:24', '1297.8070', 'apartment'); +INSERT INTO Student_Addresses (`student_id`, `address_id`, `date_address_from`, `date_address_to`, `monthly_rental`, `other_details`) VALUES (11, 12, '2018-02-18 06:58:49', '2018-02-27 04:45:57', '747.5312', 'house'); +INSERT INTO Student_Addresses (`student_id`, `address_id`, `date_address_from`, `date_address_to`, `monthly_rental`, `other_details`) VALUES (4, 1, '2017-06-22 12:20:52', '2018-03-04 17:04:35', '756.6745', 'house'); +INSERT INTO Student_Addresses (`student_id`, `address_id`, `date_address_from`, `date_address_to`, `monthly_rental`, `other_details`) VALUES (2, 8, '2017-07-21 10:13:10', '2018-03-20 09:02:48', '1287.5604', 'house'); +INSERT INTO Student_Addresses (`student_id`, `address_id`, `date_address_from`, `date_address_to`, `monthly_rental`, `other_details`) VALUES (7, 13, '2018-01-13 22:56:06', '2018-03-22 17:56:20', '1067.8383', 'house'); +INSERT INTO Student_Addresses (`student_id`, `address_id`, `date_address_from`, `date_address_to`, `monthly_rental`, `other_details`) VALUES (4, 2, '2017-09-10 19:41:10', '2018-03-04 06:51:19', '1132.7420', 'house'); +INSERT INTO Student_Addresses (`student_id`, `address_id`, `date_address_from`, `date_address_to`, `monthly_rental`, `other_details`) VALUES (8, 16, '2018-01-12 13:23:23', '2018-03-04 06:05:45', '683.0735', 'house'); +INSERT INTO Student_Addresses (`student_id`, `address_id`, `date_address_from`, `date_address_to`, `monthly_rental`, `other_details`) VALUES (5, 13, '2017-03-29 18:22:55', '2018-03-14 09:12:05', '1036.8462', 'apartment'); +INSERT INTO Student_Addresses (`student_id`, `address_id`, `date_address_from`, `date_address_to`, `monthly_rental`, `other_details`) VALUES (2, 3, '2017-08-12 18:28:31', '2018-03-06 21:41:20', '800.1214', 'house'); +INSERT INTO Student_Addresses (`student_id`, `address_id`, `date_address_from`, `date_address_to`, `monthly_rental`, `other_details`) VALUES (2, 8, '2017-04-18 05:36:44', '2018-03-07 04:29:28', '865.2615', 'house'); +INSERT INTO Student_Addresses (`student_id`, `address_id`, `date_address_from`, `date_address_to`, `monthly_rental`, `other_details`) VALUES (9, 9, '2018-02-04 02:28:04', '2018-03-12 02:57:48', '679.2988', 'house'); +INSERT INTO Student_Addresses (`student_id`, `address_id`, `date_address_from`, `date_address_to`, `monthly_rental`, `other_details`) VALUES (13, 19, '2017-08-17 11:51:00', '2018-03-04 13:24:28', '644.9306', 'apartment'); +INSERT INTO Student_Addresses (`student_id`, `address_id`, `date_address_from`, `date_address_to`, `monthly_rental`, `other_details`) VALUES (15, 1, '2018-03-05 19:28:26', '2018-03-15 04:44:58', '1032.8717', 'apartment'); +INSERT INTO Student_Addresses (`student_id`, `address_id`, `date_address_from`, `date_address_to`, `monthly_rental`, `other_details`) VALUES (12, 10, '2017-09-23 05:16:17', '2018-03-05 21:12:37', '1032.9782', 'apartment'); +INSERT INTO Student_Addresses (`student_id`, `address_id`, `date_address_from`, `date_address_to`, `monthly_rental`, `other_details`) VALUES (1, 5, '2017-11-12 04:24:02', '2018-03-14 17:00:44', '1007.2597', 'apartment'); +INSERT INTO Student_Addresses (`student_id`, `address_id`, `date_address_from`, `date_address_to`, `monthly_rental`, `other_details`) VALUES (10, 18, '2017-10-09 17:31:44', '2018-03-18 03:28:47', '620.2801', 'house'); +INSERT INTO Students_in_Detention (`student_id`, `detention_id`, `incident_id`) VALUES (3, 15, 1); +INSERT INTO Students_in_Detention (`student_id`, `detention_id`, `incident_id`) VALUES (8, 13, 3); +INSERT INTO Students_in_Detention (`student_id`, `detention_id`, `incident_id`) VALUES (11, 6, 11); +INSERT INTO Students_in_Detention (`student_id`, `detention_id`, `incident_id`) VALUES (12, 12, 1); +INSERT INTO Students_in_Detention (`student_id`, `detention_id`, `incident_id`) VALUES (14, 15, 13); +INSERT INTO Students_in_Detention (`student_id`, `detention_id`, `incident_id`) VALUES (7, 7, 8); +INSERT INTO Students_in_Detention (`student_id`, `detention_id`, `incident_id`) VALUES (13, 9, 12); +INSERT INTO Students_in_Detention (`student_id`, `detention_id`, `incident_id`) VALUES (10, 14, 8); +INSERT INTO Students_in_Detention (`student_id`, `detention_id`, `incident_id`) VALUES (12, 2, 13); +INSERT INTO Students_in_Detention (`student_id`, `detention_id`, `incident_id`) VALUES (12, 12, 1); +INSERT INTO Students_in_Detention (`student_id`, `detention_id`, `incident_id`) VALUES (9, 15, 15); +INSERT INTO Students_in_Detention (`student_id`, `detention_id`, `incident_id`) VALUES (10, 7, 12); +INSERT INTO Students_in_Detention (`student_id`, `detention_id`, `incident_id`) VALUES (13, 3, 3); +INSERT INTO Students_in_Detention (`student_id`, `detention_id`, `incident_id`) VALUES (8, 15, 14); +INSERT INTO Students_in_Detention (`student_id`, `detention_id`, `incident_id`) VALUES (8, 14, 14); diff --git a/database/bike_1/bike_1.sqlite b/database/bike_1/bike_1.sqlite new file mode 100644 index 0000000000000000000000000000000000000000..97a09e9c44b2caa456e3936dc1faea22d908e8f7 --- /dev/null +++ b/database/bike_1/bike_1.sqlite @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f5ae0e24e3a9d860a38ec6256828e3b9e37691c80931ef554adc202f8eb2950c +size 1785856 diff --git a/database/bike_1/schema.sql b/database/bike_1/schema.sql new file mode 100644 index 0000000000000000000000000000000000000000..bdbd667dcf9b6a3f020f63bdc6fc5a38c52acffb --- /dev/null +++ b/database/bike_1/schema.sql @@ -0,0 +1,22236 @@ +PRAGMA foreign_keys=OFF; +BEGIN TRANSACTION; +CREATE TABLE station ( + id INTEGER PRIMARY KEY, + name TEXT, + lat NUMERIC, + long NUMERIC, + dock_count INTEGER, + city TEXT, + installation_date TEXT); +INSERT INTO "station" VALUES(2,'San Jose Diridon Caltrain Station',37.329732,-1.21901782000000011405e+02,27,'San Jose','8/6/2013'); +INSERT INTO "station" VALUES(3,'San Jose Civic Center',37.330698,-121.888979,15,'San Jose','8/5/2013'); +INSERT INTO "station" VALUES(4,'Santa Clara at Almaden',37.333988,-121.894902,11,'San Jose','8/6/2013'); +INSERT INTO "station" VALUES(5,'Adobe on Almaden',37.331415,-121.8932,19,'San Jose','8/5/2013'); +INSERT INTO "station" VALUES(6,'San Pedro Square',3.73367210000000042673e+01,-121.894074,15,'San Jose','8/7/2013'); +INSERT INTO "station" VALUES(7,'Paseo de San Antonio',37.333798,-1.21886942999999988042e+02,15,'San Jose','8/7/2013'); +INSERT INTO "station" VALUES(8,'San Salvador at 1st',37.330165,-1.21885831000000010248e+02,15,'San Jose','8/5/2013'); +INSERT INTO "station" VALUES(9,'Japantown',37.348742,-1.21894714999999990827e+02,15,'San Jose','8/5/2013'); +INSERT INTO "station" VALUES(10,'San Jose City Hall',37.337391,-121.886995,15,'San Jose','8/6/2013'); +INSERT INTO "station" VALUES(11,'MLK Library',37.335885,-1.21885660000000015654e+02,19,'San Jose','8/6/2013'); +INSERT INTO "station" VALUES(12,'SJSU 4th at San Carlos',37.332808,-1.21883890999999991325e+02,19,'San Jose','8/7/2013'); +INSERT INTO "station" VALUES(13,'St James Park',37.339301,-1.21889937000000017522e+02,15,'San Jose','8/6/2013'); +INSERT INTO "station" VALUES(14,'Arena Green / SAP Center',37.332692,-121.900084,19,'San Jose','8/5/2013'); +INSERT INTO "station" VALUES(16,'SJSU - San Salvador at 9th',3.73339549999999960046e+01,-121.877349,15,'San Jose','8/7/2013'); +INSERT INTO "station" VALUES(21,'Franklin at Maple',37.481758,-122.226904,15,'Redwood City','8/12/2013'); +INSERT INTO "station" VALUES(22,'Redwood City Caltrain Station',3.74860780000000062264e+01,-1.22232088999999987776e+02,25,'Redwood City','8/15/2013'); +INSERT INTO "station" VALUES(23,'San Mateo County Center',3.74876159999999956093e+01,-122.229951,15,'Redwood City','8/15/2013'); +INSERT INTO "station" VALUES(24,'Redwood City Public Library',37.484219,-122.227424,15,'Redwood City','8/12/2013'); +INSERT INTO "station" VALUES(25,'Stanford in Redwood City',37.48537,-1.22203287999999986367e+02,15,'Redwood City','8/12/2013'); +INSERT INTO "station" VALUES(26,'Redwood City Medical Center',37.487682,-122.223492,15,'Redwood City','8/12/2013'); +INSERT INTO "station" VALUES(27,'Mountain View City Hall',37.389218,-122.081896,15,'Mountain View','8/16/2013'); +INSERT INTO "station" VALUES(28,'Mountain View Caltrain Station',3.73943580000000039839e+01,-1.22076712999999983824e+02,23,'Mountain View','8/15/2013'); +INSERT INTO "station" VALUES(29,'San Antonio Caltrain Station',3.74069400000000058521e+01,-1.22106758000000013451e+02,23,'Mountain View','8/15/2013'); +INSERT INTO "station" VALUES(30,'Evelyn Park and Ride',3.73902770000000046475e+01,-122.066553,15,'Mountain View','8/16/2013'); +INSERT INTO "station" VALUES(31,'San Antonio Shopping Center',37.400443,-1.2210833799999998916e+02,15,'Mountain View','12/31/2013'); +INSERT INTO "station" VALUES(32,'Castro Street and El Camino Real',37.385956,-122.083678,11,'Mountain View','12/31/2013'); +INSERT INTO "station" VALUES(33,'Rengstorff Avenue / California Street',3.74002409999999940737e+01,-122.099076,15,'Mountain View','8/16/2013'); +INSERT INTO "station" VALUES(34,'Palo Alto Caltrain Station',37.443988,-122.164759,23,'Palo Alto','8/14/2013'); +INSERT INTO "station" VALUES(35,'University and Emerson',37.444521,-1.22163092999999989274e+02,11,'Palo Alto','8/15/2013'); +INSERT INTO "station" VALUES(36,'California Ave Caltrain Station',37.429082,-1.2214280500000000984e+02,15,'Palo Alto','8/14/2013'); +INSERT INTO "station" VALUES(37,'Cowper at University',37.448598,-122.159504,11,'Palo Alto','8/14/2013'); +INSERT INTO "station" VALUES(38,'Park at Olive',3.74256838999999956745e+01,-1.22137777499999984338e+02,15,'Palo Alto','8/14/2013'); +INSERT INTO "station" VALUES(39,'Powell Street BART',3.77838710000000048698e+01,-122.408433,19,'San Francisco','8/25/2013'); +INSERT INTO "station" VALUES(41,'Clay at Battery',37.795001,-122.39997,15,'San Francisco','8/19/2013'); +INSERT INTO "station" VALUES(42,'Davis at Jackson',37.79728,-122.398436,15,'San Francisco','8/19/2013'); +INSERT INTO "station" VALUES(45,'Commercial at Montgomery',3.77942309999999963569e+01,-122.402923,15,'San Francisco','8/19/2013'); +INSERT INTO "station" VALUES(46,'Washington at Kearney',37.795425,-1.22404766999999992549e+02,15,'San Francisco','8/19/2013'); +INSERT INTO "station" VALUES(47,'Post at Kearney',37.788975,-122.403452,19,'San Francisco','8/19/2013'); +INSERT INTO "station" VALUES(48,'Embarcadero at Vallejo',37.799953,-122.398525,15,'San Francisco','8/19/2013'); +INSERT INTO "station" VALUES(49,'Spear at Folsom',3.77903020000000040563e+01,-1.22390637000000012334e+02,19,'San Francisco','8/20/2013'); +INSERT INTO "station" VALUES(50,'Harry Bridges Plaza (Ferry Building)',37.795392,-122.394203,23,'San Francisco','8/20/2013'); +INSERT INTO "station" VALUES(51,'Embarcadero at Folsom',3.77914640000000048294e+01,-122.391034,19,'San Francisco','8/20/2013'); +INSERT INTO "station" VALUES(54,'Embarcadero at Bryant',37.787152,-1.2238801299999998662e+02,15,'San Francisco','8/20/2013'); +INSERT INTO "station" VALUES(55,'Temporary Transbay Terminal (Howard at Beale)',37.789756,-1.2239464299999998786e+02,23,'San Francisco','8/20/2013'); +INSERT INTO "station" VALUES(56,'Beale at Market',37.792251,-1.2239708600000001582e+02,19,'San Francisco','8/20/2013'); +INSERT INTO "station" VALUES(57,'5th at Howard',3.77817520000000044437e+01,-1.22405127000000007347e+02,15,'San Francisco','8/21/2013'); +INSERT INTO "station" VALUES(58,'San Francisco City Hall',37.77865,-1.22418235000000009905e+02,19,'San Francisco','8/21/2013'); +INSERT INTO "station" VALUES(59,'Golden Gate at Polk',37.781332,-122.418603,23,'San Francisco','8/21/2013'); +INSERT INTO "station" VALUES(60,'Embarcadero at Sansome',37.80477,-1.22403234000000011856e+02,15,'San Francisco','8/21/2013'); +INSERT INTO "station" VALUES(61,'2nd at Townsend',37.780526,-1.22390287999999983984e+02,27,'San Francisco','8/22/2013'); +INSERT INTO "station" VALUES(62,'2nd at Folsom',37.785299,-1.22396236000000016022e+02,19,'San Francisco','8/22/2013'); +INSERT INTO "station" VALUES(63,'Howard at 2nd',3.77869780000000048407e+01,-1.2239810800000000768e+02,19,'San Francisco','8/22/2013'); +INSERT INTO "station" VALUES(64,'2nd at South Park',37.782259,-122.392738,15,'San Francisco','8/22/2013'); +INSERT INTO "station" VALUES(65,'Townsend at 7th',3.77710580000000035734e+01,-122.402717,15,'San Francisco','8/22/2013'); +INSERT INTO "station" VALUES(66,'South Van Ness at Market',37.774814,-122.418954,19,'San Francisco','8/23/2013'); +INSERT INTO "station" VALUES(67,'Market at 10th',3.77766190000000037221e+01,-1.22417385000000010107e+02,27,'San Francisco','8/23/2013'); +INSERT INTO "station" VALUES(68,'Yerba Buena Center of the Arts (3rd @ Howard)',3.77848780000000061818e+01,-1.22401013999999989326e+02,19,'San Francisco','8/23/2013'); +INSERT INTO "station" VALUES(69,'San Francisco Caltrain 2 (330 Townsend)',37.7766,-1.2239546999999998889e+02,23,'San Francisco','8/23/2013'); +INSERT INTO "station" VALUES(70,'San Francisco Caltrain (Townsend at 4th)',37.776617,-1.22395260000000007495e+02,19,'San Francisco','8/23/2013'); +INSERT INTO "station" VALUES(71,'Powell at Post (Union Square)',37.788446,-122.408499,19,'San Francisco','8/23/2013'); +INSERT INTO "station" VALUES(72,'Civic Center BART (7th at Market)',37.781039,-122.411748,23,'San Francisco','8/23/2013'); +INSERT INTO "station" VALUES(73,'Grant Avenue at Columbus Avenue',37.798522,-1.22407244999999988979e+02,15,'San Francisco','8/21/2013'); +INSERT INTO "station" VALUES(74,'Steuart at Market',37.794139,-122.394434,23,'San Francisco','8/25/2013'); +INSERT INTO "station" VALUES(75,'Mechanics Plaza (Market at Battery)',37.7913,-122.399051,19,'San Francisco','8/25/2013'); +INSERT INTO "station" VALUES(76,'Market at 4th',37.786305,-1.22404965999999987497e+02,19,'San Francisco','8/25/2013'); +INSERT INTO "station" VALUES(77,'Market at Sansome',37.789625,-122.400811,27,'San Francisco','8/25/2013'); +INSERT INTO "station" VALUES(80,'Santa Clara County Civic Center',37.352601,-1.21905733000000012107e+02,15,'San Jose','12/31/2013'); +INSERT INTO "station" VALUES(82,'Broadway St at Battery St',37.798541,-1.22400862000000017811e+02,15,'San Francisco','1/22/2014'); +INSERT INTO "station" VALUES(83,'Mezes Park',37.491269,-1.22236234000000010269e+02,15,'Redwood City','2/20/2014'); +INSERT INTO "station" VALUES(84,'Ryland Park',37.342725,-1.21895616999999987226e+02,15,'San Jose','4/9/2014'); +CREATE TABLE status ( + station_id INTEGER, + bikes_available INTEGER, + docks_available INTEGER, + time TEXT, + FOREIGN KEY (station_id) REFERENCES station(id) +); +INSERT INTO "status" VALUES(3,12,3,'2015-06-02 12:46:02'); +INSERT INTO "status" VALUES(3,12,3,'2015-06-02 12:47:02'); +INSERT INTO "status" VALUES(3,12,3,'2015-06-02 12:48:02'); +INSERT INTO "status" VALUES(3,12,3,'2015-06-02 12:49:02'); +INSERT INTO "status" VALUES(3,12,3,'2015-06-02 12:50:02'); +INSERT INTO "status" VALUES(3,12,3,'2015-06-02 12:51:02'); +INSERT INTO "status" VALUES(3,12,3,'2015-06-02 12:52:02'); +INSERT INTO "status" VALUES(3,12,3,'2015-06-02 12:53:03'); +INSERT INTO "status" VALUES(3,12,3,'2015-06-02 12:54:02'); +INSERT INTO "status" VALUES(3,12,3,'2015-06-02 12:55:02'); +INSERT INTO "status" VALUES(3,12,3,'2015-06-02 12:56:01'); +INSERT INTO "status" VALUES(3,12,3,'2015-06-02 12:57:02'); +INSERT INTO "status" VALUES(3,12,3,'2015-06-02 12:58:02'); +INSERT INTO "status" VALUES(3,12,3,'2015-06-02 12:59:02'); +INSERT INTO "status" VALUES(3,12,3,'2015-06-02 13:00:01'); +INSERT INTO "status" VALUES(3,12,3,'2015-06-02 13:01:03'); +INSERT INTO "status" VALUES(3,12,3,'2015-06-02 13:02:02'); +INSERT INTO "status" VALUES(3,12,3,'2015-06-02 13:03:02'); +INSERT INTO "status" VALUES(3,12,3,'2015-06-02 13:04:02'); +INSERT INTO "status" VALUES(3,12,3,'2015-06-02 13:05:03'); +INSERT INTO "status" VALUES(3,12,3,'2015-06-02 13:06:02'); +INSERT INTO "status" VALUES(3,12,3,'2015-06-02 13:07:02'); +INSERT INTO "status" VALUES(3,12,3,'2015-06-02 13:08:02'); +INSERT INTO "status" VALUES(3,12,3,'2015-06-02 13:09:02'); +INSERT INTO "status" VALUES(3,12,3,'2015-06-02 13:10:02'); +INSERT INTO "status" VALUES(3,12,3,'2015-06-02 13:11:02'); +INSERT INTO "status" VALUES(3,12,3,'2015-06-02 13:12:02'); +INSERT INTO "status" VALUES(3,12,3,'2015-06-02 13:13:03'); +INSERT INTO "status" VALUES(3,12,3,'2015-06-02 13:14:03'); +INSERT INTO "status" VALUES(3,12,3,'2015-06-02 13:15:02'); +INSERT INTO "status" VALUES(3,12,3,'2015-06-02 13:16:02'); +INSERT INTO "status" VALUES(3,12,3,'2015-06-02 13:17:02'); +INSERT INTO "status" VALUES(3,12,3,'2015-06-02 13:18:02'); +INSERT INTO "status" VALUES(3,12,3,'2015-06-02 13:19:02'); +INSERT INTO "status" VALUES(3,12,3,'2015-06-02 13:20:02'); +INSERT INTO "status" VALUES(3,12,3,'2015-06-02 13:21:02'); +INSERT INTO "status" VALUES(3,12,3,'2015-06-02 13:22:02'); +INSERT INTO "status" VALUES(3,12,3,'2015-06-02 13:23:02'); +INSERT INTO "status" VALUES(3,12,3,'2015-06-02 13:24:02'); +INSERT INTO "status" VALUES(3,12,3,'2015-06-02 13:25:02'); +INSERT INTO "status" VALUES(3,12,3,'2015-06-02 13:26:02'); +INSERT INTO "status" VALUES(3,12,3,'2015-06-02 13:27:02'); +INSERT INTO "status" VALUES(3,12,3,'2015-06-02 13:28:02'); +INSERT INTO "status" VALUES(3,12,3,'2015-06-02 13:29:02'); +INSERT INTO "status" VALUES(3,12,3,'2015-06-02 13:30:02'); +INSERT INTO "status" VALUES(3,12,3,'2015-06-02 13:31:02'); +INSERT INTO "status" VALUES(3,12,3,'2015-06-02 13:32:02'); +INSERT INTO "status" VALUES(3,12,3,'2015-06-02 13:33:02'); +INSERT INTO "status" VALUES(3,12,3,'2015-06-02 13:34:02'); +INSERT INTO "status" VALUES(3,12,3,'2015-06-02 13:35:02'); +INSERT INTO "status" VALUES(3,12,3,'2015-06-02 13:36:02'); +INSERT INTO "status" VALUES(3,12,3,'2015-06-02 13:37:02'); +INSERT INTO "status" VALUES(3,12,3,'2015-06-02 13:38:02'); +INSERT INTO "status" VALUES(3,12,3,'2015-06-02 13:39:02'); +INSERT INTO "status" VALUES(3,12,3,'2015-06-02 13:40:02'); +INSERT INTO "status" VALUES(3,12,3,'2015-06-02 13:41:03'); +INSERT INTO "status" VALUES(3,12,3,'2015-06-02 13:42:03'); +INSERT INTO "status" VALUES(3,12,3,'2015-06-02 13:43:03'); +INSERT INTO "status" VALUES(3,12,3,'2015-06-02 13:44:02'); +INSERT INTO "status" VALUES(3,12,3,'2015-06-02 13:45:03'); +INSERT INTO "status" VALUES(3,12,3,'2015-06-02 13:46:02'); +INSERT INTO "status" VALUES(3,12,3,'2015-06-02 13:47:02'); +INSERT INTO "status" VALUES(3,12,3,'2015-06-02 13:48:02'); +INSERT INTO "status" VALUES(3,12,3,'2015-06-02 13:49:02'); +INSERT INTO "status" VALUES(3,12,3,'2015-06-02 13:50:03'); +INSERT INTO "status" VALUES(3,12,3,'2015-06-02 13:51:02'); +INSERT INTO "status" VALUES(3,12,3,'2015-06-02 13:52:02'); +INSERT INTO "status" VALUES(3,12,3,'2015-06-02 13:53:02'); +INSERT INTO "status" VALUES(3,12,3,'2015-06-02 13:54:02'); +INSERT INTO "status" VALUES(3,12,3,'2015-06-02 13:55:03'); +INSERT INTO "status" VALUES(3,12,3,'2015-06-02 13:56:02'); +INSERT INTO "status" VALUES(3,12,3,'2015-06-02 13:57:02'); +INSERT INTO "status" VALUES(3,12,3,'2015-06-02 13:58:02'); +INSERT INTO "status" VALUES(3,12,3,'2015-06-02 13:59:02'); +INSERT INTO "status" VALUES(3,12,3,'2015-06-02 14:00:02'); +INSERT INTO "status" VALUES(3,12,3,'2015-06-02 14:01:02'); +INSERT INTO "status" VALUES(3,12,3,'2015-06-02 14:02:02'); +INSERT INTO "status" VALUES(3,12,3,'2015-06-02 14:03:02'); +INSERT INTO "status" VALUES(3,12,3,'2015-06-02 14:04:02'); +INSERT INTO "status" VALUES(3,12,3,'2015-06-02 14:05:02'); +INSERT INTO "status" VALUES(3,12,3,'2015-06-02 14:06:02'); +INSERT INTO "status" VALUES(3,12,3,'2015-06-02 14:07:02'); +INSERT INTO "status" VALUES(3,12,3,'2015-06-02 14:08:02'); +INSERT INTO "status" VALUES(3,12,3,'2015-06-02 14:09:02'); +INSERT INTO "status" VALUES(3,12,3,'2015-06-02 14:10:02'); +INSERT INTO "status" VALUES(3,12,3,'2015-06-02 14:11:02'); +INSERT INTO "status" VALUES(3,12,3,'2015-06-02 14:12:02'); +INSERT INTO "status" VALUES(3,12,3,'2015-06-02 14:13:02'); +INSERT INTO "status" VALUES(3,12,3,'2015-06-02 14:14:02'); +INSERT INTO "status" VALUES(3,12,3,'2015-06-02 14:15:02'); +INSERT INTO "status" VALUES(3,12,3,'2015-06-02 14:16:02'); +INSERT INTO "status" VALUES(3,12,3,'2015-06-02 14:17:02'); +INSERT INTO "status" VALUES(3,12,3,'2015-06-02 14:18:02'); +INSERT INTO "status" VALUES(3,12,3,'2015-06-02 14:19:02'); +INSERT INTO "status" VALUES(3,12,3,'2015-06-02 14:20:03'); +INSERT INTO "status" VALUES(3,12,3,'2015-06-02 14:21:02'); +INSERT INTO "status" VALUES(3,12,3,'2015-06-02 14:22:02'); +INSERT INTO "status" VALUES(3,12,3,'2015-06-02 14:23:03'); +INSERT INTO "status" VALUES(3,12,3,'2015-06-02 14:24:02'); +INSERT INTO "status" VALUES(3,12,3,'2015-06-02 14:25:01'); +INSERT INTO "status" VALUES(3,12,3,'2015-06-02 14:26:02'); +INSERT INTO "status" VALUES(3,12,3,'2015-06-02 14:27:02'); +INSERT INTO "status" VALUES(3,12,3,'2015-06-02 14:28:02'); +INSERT INTO "status" VALUES(3,12,3,'2015-06-02 14:29:02'); +INSERT INTO "status" VALUES(3,12,3,'2015-06-02 14:30:02'); +INSERT INTO "status" VALUES(3,12,3,'2015-06-02 14:31:02'); +INSERT INTO "status" VALUES(3,12,3,'2015-06-02 14:32:02'); +INSERT INTO "status" VALUES(3,12,3,'2015-06-02 14:33:02'); +INSERT INTO "status" VALUES(3,12,3,'2015-06-02 14:34:02'); +INSERT INTO "status" VALUES(3,12,3,'2015-06-02 14:35:02'); +INSERT INTO "status" VALUES(3,12,3,'2015-06-02 14:36:02'); +INSERT INTO "status" VALUES(3,12,3,'2015-06-02 14:37:02'); +INSERT INTO "status" VALUES(3,12,3,'2015-06-02 14:38:02'); +INSERT INTO "status" VALUES(3,12,3,'2015-06-02 14:39:02'); +INSERT INTO "status" VALUES(3,12,3,'2015-06-02 14:40:02'); +INSERT INTO "status" VALUES(3,12,3,'2015-06-02 14:41:02'); +INSERT INTO "status" VALUES(3,12,3,'2015-06-02 14:42:02'); +INSERT INTO "status" VALUES(3,12,3,'2015-06-02 14:43:02'); +INSERT INTO "status" VALUES(3,12,3,'2015-06-02 14:44:02'); +INSERT INTO "status" VALUES(3,12,3,'2015-06-02 14:45:02'); +INSERT INTO "status" VALUES(3,12,3,'2015-06-02 14:46:02'); +INSERT INTO "status" VALUES(3,12,3,'2015-06-02 14:47:02'); +INSERT INTO "status" VALUES(3,12,3,'2015-06-02 14:48:02'); +INSERT INTO "status" VALUES(4,6,5,'2015-06-02 12:46:02'); +INSERT INTO "status" VALUES(4,6,5,'2015-06-02 12:47:02'); +INSERT INTO "status" VALUES(4,6,5,'2015-06-02 12:48:02'); +INSERT INTO "status" VALUES(4,6,5,'2015-06-02 12:49:02'); +INSERT INTO "status" VALUES(4,6,5,'2015-06-02 12:50:02'); +INSERT INTO "status" VALUES(4,6,5,'2015-06-02 12:51:02'); +INSERT INTO "status" VALUES(4,6,5,'2015-06-02 12:52:02'); +INSERT INTO "status" VALUES(4,6,5,'2015-06-02 12:53:03'); +INSERT INTO "status" VALUES(4,6,5,'2015-06-02 12:54:02'); +INSERT INTO "status" VALUES(4,6,5,'2015-06-02 12:55:02'); +INSERT INTO "status" VALUES(4,6,5,'2015-06-02 12:56:01'); +INSERT INTO "status" VALUES(4,6,5,'2015-06-02 12:57:02'); +INSERT INTO "status" VALUES(4,6,5,'2015-06-02 12:58:02'); +INSERT INTO "status" VALUES(4,6,5,'2015-06-02 12:59:02'); +INSERT INTO "status" VALUES(4,6,5,'2015-06-02 13:00:01'); +INSERT INTO "status" VALUES(4,6,5,'2015-06-02 13:01:03'); +INSERT INTO "status" VALUES(4,6,5,'2015-06-02 13:02:02'); +INSERT INTO "status" VALUES(4,6,5,'2015-06-02 13:03:02'); +INSERT INTO "status" VALUES(4,6,5,'2015-06-02 13:04:02'); +INSERT INTO "status" VALUES(4,6,5,'2015-06-02 13:05:03'); +INSERT INTO "status" VALUES(4,6,5,'2015-06-02 13:06:02'); +INSERT INTO "status" VALUES(4,6,5,'2015-06-02 13:07:02'); +INSERT INTO "status" VALUES(4,6,5,'2015-06-02 13:08:02'); +INSERT INTO "status" VALUES(4,6,5,'2015-06-02 13:09:02'); +INSERT INTO "status" VALUES(4,6,5,'2015-06-02 13:10:02'); +INSERT INTO "status" VALUES(4,6,5,'2015-06-02 13:11:02'); +INSERT INTO "status" VALUES(4,6,5,'2015-06-02 13:12:02'); +INSERT INTO "status" VALUES(4,6,5,'2015-06-02 13:13:03'); +INSERT INTO "status" VALUES(4,6,5,'2015-06-02 13:14:03'); +INSERT INTO "status" VALUES(4,6,5,'2015-06-02 13:15:02'); +INSERT INTO "status" VALUES(4,6,5,'2015-06-02 13:16:02'); +INSERT INTO "status" VALUES(4,7,4,'2015-06-02 13:17:02'); +INSERT INTO "status" VALUES(4,7,4,'2015-06-02 13:18:02'); +INSERT INTO "status" VALUES(4,7,4,'2015-06-02 13:19:02'); +INSERT INTO "status" VALUES(4,7,4,'2015-06-02 13:20:02'); +INSERT INTO "status" VALUES(4,7,4,'2015-06-02 13:21:02'); +INSERT INTO "status" VALUES(4,7,4,'2015-06-02 13:22:02'); +INSERT INTO "status" VALUES(4,7,4,'2015-06-02 13:23:02'); +INSERT INTO "status" VALUES(4,7,4,'2015-06-02 13:24:02'); +INSERT INTO "status" VALUES(4,7,4,'2015-06-02 13:25:02'); +INSERT INTO "status" VALUES(4,7,4,'2015-06-02 13:26:02'); +INSERT INTO "status" VALUES(4,7,4,'2015-06-02 13:27:02'); +INSERT INTO "status" VALUES(4,7,4,'2015-06-02 13:28:02'); +INSERT INTO "status" VALUES(4,7,4,'2015-06-02 13:29:02'); +INSERT INTO "status" VALUES(4,7,4,'2015-06-02 13:30:02'); +INSERT INTO "status" VALUES(4,7,4,'2015-06-02 13:31:02'); +INSERT INTO "status" VALUES(4,7,4,'2015-06-02 13:32:02'); +INSERT INTO "status" VALUES(4,7,4,'2015-06-02 13:33:02'); +INSERT INTO "status" VALUES(4,7,4,'2015-06-02 13:34:02'); +INSERT INTO "status" VALUES(4,7,4,'2015-06-02 13:35:02'); +INSERT INTO "status" VALUES(4,7,4,'2015-06-02 13:36:02'); +INSERT INTO "status" VALUES(4,7,4,'2015-06-02 13:37:02'); +INSERT INTO "status" VALUES(4,7,4,'2015-06-02 13:38:02'); +INSERT INTO "status" VALUES(4,7,4,'2015-06-02 13:39:02'); +INSERT INTO "status" VALUES(4,7,4,'2015-06-02 13:40:02'); +INSERT INTO "status" VALUES(4,7,4,'2015-06-02 13:41:03'); +INSERT INTO "status" VALUES(4,7,4,'2015-06-02 13:42:03'); +INSERT INTO "status" VALUES(4,7,4,'2015-06-02 13:43:03'); +INSERT INTO "status" VALUES(4,7,4,'2015-06-02 13:44:02'); +INSERT INTO "status" VALUES(4,7,4,'2015-06-02 13:45:03'); +INSERT INTO "status" VALUES(4,7,4,'2015-06-02 13:46:02'); +INSERT INTO "status" VALUES(4,7,4,'2015-06-02 13:47:02'); +INSERT INTO "status" VALUES(4,7,4,'2015-06-02 13:48:02'); +INSERT INTO "status" VALUES(4,7,4,'2015-06-02 13:49:02'); +INSERT INTO "status" VALUES(4,7,4,'2015-06-02 13:50:03'); +INSERT INTO "status" VALUES(4,7,4,'2015-06-02 13:51:02'); +INSERT INTO "status" VALUES(4,7,4,'2015-06-02 13:52:02'); +INSERT INTO "status" VALUES(4,7,4,'2015-06-02 13:53:02'); +INSERT INTO "status" VALUES(4,7,4,'2015-06-02 13:54:02'); +INSERT INTO "status" VALUES(4,7,4,'2015-06-02 13:55:03'); +INSERT INTO "status" VALUES(4,7,4,'2015-06-02 13:56:02'); +INSERT INTO "status" VALUES(4,7,4,'2015-06-02 13:57:02'); +INSERT INTO "status" VALUES(4,7,4,'2015-06-02 13:58:02'); +INSERT INTO "status" VALUES(4,7,4,'2015-06-02 13:59:02'); +INSERT INTO "status" VALUES(4,7,4,'2015-06-02 14:00:02'); +INSERT INTO "status" VALUES(4,7,4,'2015-06-02 14:01:02'); +INSERT INTO "status" VALUES(4,7,4,'2015-06-02 14:02:02'); +INSERT INTO "status" VALUES(4,7,4,'2015-06-02 14:03:02'); +INSERT INTO "status" VALUES(4,7,4,'2015-06-02 14:04:02'); +INSERT INTO "status" VALUES(4,7,4,'2015-06-02 14:05:02'); +INSERT INTO "status" VALUES(4,7,4,'2015-06-02 14:06:02'); +INSERT INTO "status" VALUES(4,7,4,'2015-06-02 14:07:02'); +INSERT INTO "status" VALUES(4,7,4,'2015-06-02 14:08:02'); +INSERT INTO "status" VALUES(4,7,4,'2015-06-02 14:09:02'); +INSERT INTO "status" VALUES(4,7,4,'2015-06-02 14:10:02'); +INSERT INTO "status" VALUES(4,7,4,'2015-06-02 14:11:02'); +INSERT INTO "status" VALUES(4,7,4,'2015-06-02 14:12:02'); +INSERT INTO "status" VALUES(4,7,4,'2015-06-02 14:13:02'); +INSERT INTO "status" VALUES(4,7,4,'2015-06-02 14:14:02'); +INSERT INTO "status" VALUES(4,7,4,'2015-06-02 14:15:02'); +INSERT INTO "status" VALUES(4,7,4,'2015-06-02 14:16:02'); +INSERT INTO "status" VALUES(4,7,4,'2015-06-02 14:17:02'); +INSERT INTO "status" VALUES(4,7,4,'2015-06-02 14:18:02'); +INSERT INTO "status" VALUES(4,7,4,'2015-06-02 14:19:02'); +INSERT INTO "status" VALUES(4,7,4,'2015-06-02 14:20:03'); +INSERT INTO "status" VALUES(4,7,4,'2015-06-02 14:21:02'); +INSERT INTO "status" VALUES(4,7,4,'2015-06-02 14:22:02'); +INSERT INTO "status" VALUES(4,7,4,'2015-06-02 14:23:03'); +INSERT INTO "status" VALUES(4,7,4,'2015-06-02 14:24:02'); +INSERT INTO "status" VALUES(4,7,4,'2015-06-02 14:25:01'); +INSERT INTO "status" VALUES(4,7,4,'2015-06-02 14:26:02'); +INSERT INTO "status" VALUES(4,7,4,'2015-06-02 14:27:02'); +INSERT INTO "status" VALUES(4,7,4,'2015-06-02 14:28:02'); +INSERT INTO "status" VALUES(4,7,4,'2015-06-02 14:29:02'); +INSERT INTO "status" VALUES(4,7,4,'2015-06-02 14:30:02'); +INSERT INTO "status" VALUES(4,7,4,'2015-06-02 14:31:02'); +INSERT INTO "status" VALUES(4,7,4,'2015-06-02 14:32:02'); +INSERT INTO "status" VALUES(4,7,4,'2015-06-02 14:33:02'); +INSERT INTO "status" VALUES(4,7,4,'2015-06-02 14:34:02'); +INSERT INTO "status" VALUES(4,7,4,'2015-06-02 14:35:02'); +INSERT INTO "status" VALUES(4,7,4,'2015-06-02 14:36:02'); +INSERT INTO "status" VALUES(4,7,4,'2015-06-02 14:37:02'); +INSERT INTO "status" VALUES(4,7,4,'2015-06-02 14:38:02'); +INSERT INTO "status" VALUES(4,7,4,'2015-06-02 14:39:02'); +INSERT INTO "status" VALUES(4,7,4,'2015-06-02 14:40:02'); +INSERT INTO "status" VALUES(4,7,4,'2015-06-02 14:41:02'); +INSERT INTO "status" VALUES(4,7,4,'2015-06-02 14:42:02'); +INSERT INTO "status" VALUES(4,7,4,'2015-06-02 14:43:02'); +INSERT INTO "status" VALUES(4,7,4,'2015-06-02 14:44:02'); +INSERT INTO "status" VALUES(4,7,4,'2015-06-02 14:45:02'); +INSERT INTO "status" VALUES(4,7,4,'2015-06-02 14:46:02'); +INSERT INTO "status" VALUES(4,7,4,'2015-06-02 14:47:02'); +INSERT INTO "status" VALUES(4,7,4,'2015-06-02 14:48:02'); +INSERT INTO "status" VALUES(5,5,14,'2015-06-02 12:46:02'); +INSERT INTO "status" VALUES(5,5,14,'2015-06-02 12:47:02'); +INSERT INTO "status" VALUES(5,5,14,'2015-06-02 12:48:02'); +INSERT INTO "status" VALUES(5,5,14,'2015-06-02 12:49:02'); +INSERT INTO "status" VALUES(5,5,14,'2015-06-02 12:50:02'); +INSERT INTO "status" VALUES(5,5,14,'2015-06-02 12:51:02'); +INSERT INTO "status" VALUES(5,5,14,'2015-06-02 12:52:02'); +INSERT INTO "status" VALUES(5,5,14,'2015-06-02 12:53:03'); +INSERT INTO "status" VALUES(5,5,14,'2015-06-02 12:54:02'); +INSERT INTO "status" VALUES(5,5,14,'2015-06-02 12:55:02'); +INSERT INTO "status" VALUES(5,5,14,'2015-06-02 12:56:01'); +INSERT INTO "status" VALUES(5,5,14,'2015-06-02 12:57:02'); +INSERT INTO "status" VALUES(5,5,14,'2015-06-02 12:58:02'); +INSERT INTO "status" VALUES(5,5,14,'2015-06-02 12:59:02'); +INSERT INTO "status" VALUES(5,5,14,'2015-06-02 13:00:01'); +INSERT INTO "status" VALUES(5,5,14,'2015-06-02 13:01:03'); +INSERT INTO "status" VALUES(5,5,14,'2015-06-02 13:02:02'); +INSERT INTO "status" VALUES(5,5,14,'2015-06-02 13:03:02'); +INSERT INTO "status" VALUES(5,5,14,'2015-06-02 13:04:02'); +INSERT INTO "status" VALUES(5,5,14,'2015-06-02 13:05:03'); +INSERT INTO "status" VALUES(5,5,14,'2015-06-02 13:06:02'); +INSERT INTO "status" VALUES(5,5,14,'2015-06-02 13:07:02'); +INSERT INTO "status" VALUES(5,5,14,'2015-06-02 13:08:02'); +INSERT INTO "status" VALUES(5,5,14,'2015-06-02 13:09:02'); +INSERT INTO "status" VALUES(5,5,14,'2015-06-02 13:10:02'); +INSERT INTO "status" VALUES(5,5,14,'2015-06-02 13:11:02'); +INSERT INTO "status" VALUES(5,5,14,'2015-06-02 13:12:02'); +INSERT INTO "status" VALUES(5,5,14,'2015-06-02 13:13:03'); +INSERT INTO "status" VALUES(5,5,14,'2015-06-02 13:14:03'); +INSERT INTO "status" VALUES(5,5,14,'2015-06-02 13:15:02'); +INSERT INTO "status" VALUES(5,5,14,'2015-06-02 13:16:02'); +INSERT INTO "status" VALUES(5,5,14,'2015-06-02 13:17:02'); +INSERT INTO "status" VALUES(5,5,14,'2015-06-02 13:18:02'); +INSERT INTO "status" VALUES(5,5,14,'2015-06-02 13:19:02'); +INSERT INTO "status" VALUES(5,5,14,'2015-06-02 13:20:02'); +INSERT INTO "status" VALUES(5,5,14,'2015-06-02 13:21:02'); +INSERT INTO "status" VALUES(5,5,14,'2015-06-02 13:22:02'); +INSERT INTO "status" VALUES(5,5,14,'2015-06-02 13:23:02'); +INSERT INTO "status" VALUES(5,5,14,'2015-06-02 13:24:02'); +INSERT INTO "status" VALUES(5,5,14,'2015-06-02 13:25:02'); +INSERT INTO "status" VALUES(5,5,14,'2015-06-02 13:26:02'); +INSERT INTO "status" VALUES(5,5,14,'2015-06-02 13:27:02'); +INSERT INTO "status" VALUES(5,5,14,'2015-06-02 13:28:02'); +INSERT INTO "status" VALUES(5,5,14,'2015-06-02 13:29:02'); +INSERT INTO "status" VALUES(5,5,14,'2015-06-02 13:30:02'); +INSERT INTO "status" VALUES(5,5,14,'2015-06-02 13:31:02'); +INSERT INTO "status" VALUES(5,5,14,'2015-06-02 13:32:02'); +INSERT INTO "status" VALUES(5,5,14,'2015-06-02 13:33:02'); +INSERT INTO "status" VALUES(5,5,14,'2015-06-02 13:34:02'); +INSERT INTO "status" VALUES(5,5,14,'2015-06-02 13:35:02'); +INSERT INTO "status" VALUES(5,5,14,'2015-06-02 13:36:02'); +INSERT INTO "status" VALUES(5,5,14,'2015-06-02 13:37:02'); +INSERT INTO "status" VALUES(5,5,14,'2015-06-02 13:38:02'); +INSERT INTO "status" VALUES(5,5,14,'2015-06-02 13:39:02'); +INSERT INTO "status" VALUES(5,5,14,'2015-06-02 13:40:02'); +INSERT INTO "status" VALUES(5,5,14,'2015-06-02 13:41:03'); +INSERT INTO "status" VALUES(5,5,14,'2015-06-02 13:42:03'); +INSERT INTO "status" VALUES(5,5,14,'2015-06-02 13:43:03'); +INSERT INTO "status" VALUES(5,5,14,'2015-06-02 13:44:02'); +INSERT INTO "status" VALUES(5,5,14,'2015-06-02 13:45:03'); +INSERT INTO "status" VALUES(5,5,14,'2015-06-02 13:46:02'); +INSERT INTO "status" VALUES(5,5,14,'2015-06-02 13:47:02'); +INSERT INTO "status" VALUES(5,5,14,'2015-06-02 13:48:02'); +INSERT INTO "status" VALUES(5,5,14,'2015-06-02 13:49:02'); +INSERT INTO "status" VALUES(5,5,14,'2015-06-02 13:50:03'); +INSERT INTO "status" VALUES(5,5,14,'2015-06-02 13:51:02'); +INSERT INTO "status" VALUES(5,5,14,'2015-06-02 13:52:02'); +INSERT INTO "status" VALUES(5,5,14,'2015-06-02 13:53:02'); +INSERT INTO "status" VALUES(5,5,14,'2015-06-02 13:54:02'); +INSERT INTO "status" VALUES(5,5,14,'2015-06-02 13:55:03'); +INSERT INTO "status" VALUES(5,5,14,'2015-06-02 13:56:02'); +INSERT INTO "status" VALUES(5,5,14,'2015-06-02 13:57:02'); +INSERT INTO "status" VALUES(5,5,14,'2015-06-02 13:58:02'); +INSERT INTO "status" VALUES(5,5,14,'2015-06-02 13:59:02'); +INSERT INTO "status" VALUES(5,5,14,'2015-06-02 14:00:02'); +INSERT INTO "status" VALUES(5,5,14,'2015-06-02 14:01:02'); +INSERT INTO "status" VALUES(5,5,14,'2015-06-02 14:02:02'); +INSERT INTO "status" VALUES(5,5,14,'2015-06-02 14:03:02'); +INSERT INTO "status" VALUES(5,5,14,'2015-06-02 14:04:02'); +INSERT INTO "status" VALUES(5,5,14,'2015-06-02 14:05:02'); +INSERT INTO "status" VALUES(5,5,14,'2015-06-02 14:06:02'); +INSERT INTO "status" VALUES(5,5,14,'2015-06-02 14:07:02'); +INSERT INTO "status" VALUES(5,5,14,'2015-06-02 14:08:02'); +INSERT INTO "status" VALUES(5,5,14,'2015-06-02 14:09:02'); +INSERT INTO "status" VALUES(5,5,14,'2015-06-02 14:10:02'); +INSERT INTO "status" VALUES(5,5,14,'2015-06-02 14:11:02'); +INSERT INTO "status" VALUES(5,5,14,'2015-06-02 14:12:02'); +INSERT INTO "status" VALUES(5,5,14,'2015-06-02 14:13:02'); +INSERT INTO "status" VALUES(5,5,14,'2015-06-02 14:14:02'); +INSERT INTO "status" VALUES(5,5,14,'2015-06-02 14:15:02'); +INSERT INTO "status" VALUES(5,5,14,'2015-06-02 14:16:02'); +INSERT INTO "status" VALUES(5,5,14,'2015-06-02 14:17:02'); +INSERT INTO "status" VALUES(5,5,14,'2015-06-02 14:18:02'); +INSERT INTO "status" VALUES(5,5,14,'2015-06-02 14:19:02'); +INSERT INTO "status" VALUES(5,5,14,'2015-06-02 14:20:03'); +INSERT INTO "status" VALUES(5,5,14,'2015-06-02 14:21:02'); +INSERT INTO "status" VALUES(5,5,14,'2015-06-02 14:22:02'); +INSERT INTO "status" VALUES(5,5,14,'2015-06-02 14:23:03'); +INSERT INTO "status" VALUES(5,5,14,'2015-06-02 14:24:02'); +INSERT INTO "status" VALUES(5,5,14,'2015-06-02 14:25:01'); +INSERT INTO "status" VALUES(5,5,14,'2015-06-02 14:26:02'); +INSERT INTO "status" VALUES(5,5,14,'2015-06-02 14:27:02'); +INSERT INTO "status" VALUES(5,5,14,'2015-06-02 14:28:02'); +INSERT INTO "status" VALUES(5,5,14,'2015-06-02 14:29:02'); +INSERT INTO "status" VALUES(5,5,14,'2015-06-02 14:30:02'); +INSERT INTO "status" VALUES(5,5,14,'2015-06-02 14:31:02'); +INSERT INTO "status" VALUES(5,5,14,'2015-06-02 14:32:02'); +INSERT INTO "status" VALUES(5,5,14,'2015-06-02 14:33:02'); +INSERT INTO "status" VALUES(5,5,14,'2015-06-02 14:34:02'); +INSERT INTO "status" VALUES(5,5,14,'2015-06-02 14:35:02'); +INSERT INTO "status" VALUES(5,5,14,'2015-06-02 14:36:02'); +INSERT INTO "status" VALUES(5,5,14,'2015-06-02 14:37:02'); +INSERT INTO "status" VALUES(5,5,14,'2015-06-02 14:38:02'); +INSERT INTO "status" VALUES(5,5,14,'2015-06-02 14:39:02'); +INSERT INTO "status" VALUES(5,5,14,'2015-06-02 14:40:02'); +INSERT INTO "status" VALUES(5,5,14,'2015-06-02 14:41:02'); +INSERT INTO "status" VALUES(5,5,14,'2015-06-02 14:42:02'); +INSERT INTO "status" VALUES(5,5,14,'2015-06-02 14:43:02'); +INSERT INTO "status" VALUES(5,5,14,'2015-06-02 14:44:02'); +INSERT INTO "status" VALUES(5,5,14,'2015-06-02 14:45:02'); +INSERT INTO "status" VALUES(5,5,14,'2015-06-02 14:46:02'); +INSERT INTO "status" VALUES(5,5,14,'2015-06-02 14:47:02'); +INSERT INTO "status" VALUES(5,5,14,'2015-06-02 14:48:02'); +INSERT INTO "status" VALUES(6,5,10,'2015-06-02 12:46:02'); +INSERT INTO "status" VALUES(6,5,10,'2015-06-02 12:47:02'); +INSERT INTO "status" VALUES(6,5,10,'2015-06-02 12:48:02'); +INSERT INTO "status" VALUES(6,5,10,'2015-06-02 12:49:02'); +INSERT INTO "status" VALUES(6,5,10,'2015-06-02 12:50:02'); +INSERT INTO "status" VALUES(6,5,10,'2015-06-02 12:51:02'); +INSERT INTO "status" VALUES(6,5,10,'2015-06-02 12:52:02'); +INSERT INTO "status" VALUES(6,5,10,'2015-06-02 12:53:03'); +INSERT INTO "status" VALUES(6,5,10,'2015-06-02 12:54:02'); +INSERT INTO "status" VALUES(6,5,10,'2015-06-02 12:55:02'); +INSERT INTO "status" VALUES(6,5,10,'2015-06-02 12:56:01'); +INSERT INTO "status" VALUES(6,5,10,'2015-06-02 12:57:02'); +INSERT INTO "status" VALUES(6,5,10,'2015-06-02 12:58:02'); +INSERT INTO "status" VALUES(6,5,10,'2015-06-02 12:59:02'); +INSERT INTO "status" VALUES(6,5,10,'2015-06-02 13:00:01'); +INSERT INTO "status" VALUES(6,5,10,'2015-06-02 13:01:03'); +INSERT INTO "status" VALUES(6,6,9,'2015-06-02 13:02:02'); +INSERT INTO "status" VALUES(6,6,9,'2015-06-02 13:03:02'); +INSERT INTO "status" VALUES(6,6,9,'2015-06-02 13:04:02'); +INSERT INTO "status" VALUES(6,6,9,'2015-06-02 13:05:03'); +INSERT INTO "status" VALUES(6,5,10,'2015-06-02 13:06:02'); +INSERT INTO "status" VALUES(6,5,10,'2015-06-02 13:07:02'); +INSERT INTO "status" VALUES(6,5,10,'2015-06-02 13:08:02'); +INSERT INTO "status" VALUES(6,5,10,'2015-06-02 13:09:02'); +INSERT INTO "status" VALUES(6,5,10,'2015-06-02 13:10:02'); +INSERT INTO "status" VALUES(6,5,10,'2015-06-02 13:11:02'); +INSERT INTO "status" VALUES(6,5,10,'2015-06-02 13:12:02'); +INSERT INTO "status" VALUES(6,5,10,'2015-06-02 13:13:03'); +INSERT INTO "status" VALUES(6,5,10,'2015-06-02 13:14:03'); +INSERT INTO "status" VALUES(6,5,10,'2015-06-02 13:15:02'); +INSERT INTO "status" VALUES(6,5,10,'2015-06-02 13:16:02'); +INSERT INTO "status" VALUES(6,5,10,'2015-06-02 13:17:02'); +INSERT INTO "status" VALUES(6,5,10,'2015-06-02 13:18:02'); +INSERT INTO "status" VALUES(6,5,10,'2015-06-02 13:19:02'); +INSERT INTO "status" VALUES(6,5,10,'2015-06-02 13:20:02'); +INSERT INTO "status" VALUES(6,5,10,'2015-06-02 13:21:02'); +INSERT INTO "status" VALUES(6,5,10,'2015-06-02 13:22:02'); +INSERT INTO "status" VALUES(6,5,10,'2015-06-02 13:23:02'); +INSERT INTO "status" VALUES(6,5,10,'2015-06-02 13:24:02'); +INSERT INTO "status" VALUES(6,5,10,'2015-06-02 13:25:02'); +INSERT INTO "status" VALUES(6,5,10,'2015-06-02 13:26:02'); +INSERT INTO "status" VALUES(6,5,10,'2015-06-02 13:27:02'); +INSERT INTO "status" VALUES(6,5,10,'2015-06-02 13:28:02'); +INSERT INTO "status" VALUES(6,5,10,'2015-06-02 13:29:02'); +INSERT INTO "status" VALUES(6,5,10,'2015-06-02 13:30:02'); +INSERT INTO "status" VALUES(6,5,10,'2015-06-02 13:31:02'); +INSERT INTO "status" VALUES(6,5,10,'2015-06-02 13:32:02'); +INSERT INTO "status" VALUES(6,5,10,'2015-06-02 13:33:02'); +INSERT INTO "status" VALUES(6,5,10,'2015-06-02 13:34:02'); +INSERT INTO "status" VALUES(6,5,10,'2015-06-02 13:35:02'); +INSERT INTO "status" VALUES(6,5,10,'2015-06-02 13:36:02'); +INSERT INTO "status" VALUES(6,5,10,'2015-06-02 13:37:02'); +INSERT INTO "status" VALUES(6,5,10,'2015-06-02 13:38:02'); +INSERT INTO "status" VALUES(6,5,10,'2015-06-02 13:39:02'); +INSERT INTO "status" VALUES(6,5,10,'2015-06-02 13:40:02'); +INSERT INTO "status" VALUES(6,5,10,'2015-06-02 13:41:03'); +INSERT INTO "status" VALUES(6,5,10,'2015-06-02 13:42:03'); +INSERT INTO "status" VALUES(6,5,10,'2015-06-02 13:43:03'); +INSERT INTO "status" VALUES(6,5,10,'2015-06-02 13:44:02'); +INSERT INTO "status" VALUES(6,5,10,'2015-06-02 13:45:03'); +INSERT INTO "status" VALUES(6,5,10,'2015-06-02 13:46:02'); +INSERT INTO "status" VALUES(6,5,10,'2015-06-02 13:47:02'); +INSERT INTO "status" VALUES(6,5,10,'2015-06-02 13:48:02'); +INSERT INTO "status" VALUES(6,5,10,'2015-06-02 13:49:02'); +INSERT INTO "status" VALUES(6,5,10,'2015-06-02 13:50:03'); +INSERT INTO "status" VALUES(6,5,10,'2015-06-02 13:51:02'); +INSERT INTO "status" VALUES(6,5,10,'2015-06-02 13:52:02'); +INSERT INTO "status" VALUES(6,5,10,'2015-06-02 13:53:02'); +INSERT INTO "status" VALUES(6,5,10,'2015-06-02 13:54:02'); +INSERT INTO "status" VALUES(6,5,10,'2015-06-02 13:55:03'); +INSERT INTO "status" VALUES(6,5,10,'2015-06-02 13:56:02'); +INSERT INTO "status" VALUES(6,5,10,'2015-06-02 13:57:02'); +INSERT INTO "status" VALUES(6,5,10,'2015-06-02 13:58:02'); +INSERT INTO "status" VALUES(6,5,10,'2015-06-02 13:59:02'); +INSERT INTO "status" VALUES(6,5,10,'2015-06-02 14:00:02'); +INSERT INTO "status" VALUES(6,5,10,'2015-06-02 14:01:02'); +INSERT INTO "status" VALUES(6,5,10,'2015-06-02 14:02:02'); +INSERT INTO "status" VALUES(6,5,10,'2015-06-02 14:03:02'); +INSERT INTO "status" VALUES(6,5,10,'2015-06-02 14:04:02'); +INSERT INTO "status" VALUES(6,5,10,'2015-06-02 14:05:02'); +INSERT INTO "status" VALUES(6,5,10,'2015-06-02 14:06:02'); +INSERT INTO "status" VALUES(6,5,10,'2015-06-02 14:07:02'); +INSERT INTO "status" VALUES(6,5,10,'2015-06-02 14:08:02'); +INSERT INTO "status" VALUES(6,5,10,'2015-06-02 14:09:02'); +INSERT INTO "status" VALUES(6,5,10,'2015-06-02 14:10:02'); +INSERT INTO "status" VALUES(6,5,10,'2015-06-02 14:11:02'); +INSERT INTO "status" VALUES(6,5,10,'2015-06-02 14:12:02'); +INSERT INTO "status" VALUES(6,5,10,'2015-06-02 14:13:02'); +INSERT INTO "status" VALUES(6,5,10,'2015-06-02 14:14:02'); +INSERT INTO "status" VALUES(6,5,10,'2015-06-02 14:15:02'); +INSERT INTO "status" VALUES(6,5,10,'2015-06-02 14:16:02'); +INSERT INTO "status" VALUES(6,5,10,'2015-06-02 14:17:02'); +INSERT INTO "status" VALUES(6,5,10,'2015-06-02 14:18:02'); +INSERT INTO "status" VALUES(6,5,10,'2015-06-02 14:19:02'); +INSERT INTO "status" VALUES(6,5,10,'2015-06-02 14:20:03'); +INSERT INTO "status" VALUES(6,5,10,'2015-06-02 14:21:02'); +INSERT INTO "status" VALUES(6,5,10,'2015-06-02 14:22:02'); +INSERT INTO "status" VALUES(6,5,10,'2015-06-02 14:23:03'); +INSERT INTO "status" VALUES(6,5,10,'2015-06-02 14:24:02'); +INSERT INTO "status" VALUES(6,5,10,'2015-06-02 14:25:01'); +INSERT INTO "status" VALUES(6,5,10,'2015-06-02 14:26:02'); +INSERT INTO "status" VALUES(6,5,10,'2015-06-02 14:27:02'); +INSERT INTO "status" VALUES(6,5,10,'2015-06-02 14:28:02'); +INSERT INTO "status" VALUES(6,5,10,'2015-06-02 14:29:02'); +INSERT INTO "status" VALUES(6,5,10,'2015-06-02 14:30:02'); +INSERT INTO "status" VALUES(6,5,10,'2015-06-02 14:31:02'); +INSERT INTO "status" VALUES(6,5,10,'2015-06-02 14:32:02'); +INSERT INTO "status" VALUES(6,5,10,'2015-06-02 14:33:02'); +INSERT INTO "status" VALUES(6,5,10,'2015-06-02 14:34:02'); +INSERT INTO "status" VALUES(6,5,10,'2015-06-02 14:35:02'); +INSERT INTO "status" VALUES(6,5,10,'2015-06-02 14:36:02'); +INSERT INTO "status" VALUES(6,5,10,'2015-06-02 14:37:02'); +INSERT INTO "status" VALUES(6,5,10,'2015-06-02 14:38:02'); +INSERT INTO "status" VALUES(6,5,10,'2015-06-02 14:39:02'); +INSERT INTO "status" VALUES(6,5,10,'2015-06-02 14:40:02'); +INSERT INTO "status" VALUES(6,5,10,'2015-06-02 14:41:02'); +INSERT INTO "status" VALUES(6,5,10,'2015-06-02 14:42:02'); +INSERT INTO "status" VALUES(6,5,10,'2015-06-02 14:43:02'); +INSERT INTO "status" VALUES(6,5,10,'2015-06-02 14:44:02'); +INSERT INTO "status" VALUES(6,5,10,'2015-06-02 14:45:02'); +INSERT INTO "status" VALUES(6,4,11,'2015-06-02 14:46:02'); +INSERT INTO "status" VALUES(6,4,11,'2015-06-02 14:47:02'); +INSERT INTO "status" VALUES(6,4,11,'2015-06-02 14:48:02'); +INSERT INTO "status" VALUES(7,5,10,'2015-06-02 12:46:02'); +INSERT INTO "status" VALUES(7,5,10,'2015-06-02 12:47:02'); +INSERT INTO "status" VALUES(7,5,10,'2015-06-02 12:48:02'); +INSERT INTO "status" VALUES(7,5,10,'2015-06-02 12:49:02'); +INSERT INTO "status" VALUES(7,5,10,'2015-06-02 12:50:02'); +INSERT INTO "status" VALUES(7,5,10,'2015-06-02 12:51:02'); +INSERT INTO "status" VALUES(7,5,10,'2015-06-02 12:52:02'); +INSERT INTO "status" VALUES(7,5,10,'2015-06-02 12:53:03'); +INSERT INTO "status" VALUES(7,5,10,'2015-06-02 12:54:02'); +INSERT INTO "status" VALUES(7,5,10,'2015-06-02 12:55:02'); +INSERT INTO "status" VALUES(7,5,10,'2015-06-02 12:56:01'); +INSERT INTO "status" VALUES(7,5,10,'2015-06-02 12:57:02'); +INSERT INTO "status" VALUES(7,5,10,'2015-06-02 12:58:02'); +INSERT INTO "status" VALUES(7,5,10,'2015-06-02 12:59:02'); +INSERT INTO "status" VALUES(7,5,10,'2015-06-02 13:00:01'); +INSERT INTO "status" VALUES(7,5,10,'2015-06-02 13:01:03'); +INSERT INTO "status" VALUES(7,5,10,'2015-06-02 13:02:02'); +INSERT INTO "status" VALUES(7,5,10,'2015-06-02 13:03:02'); +INSERT INTO "status" VALUES(7,5,10,'2015-06-02 13:04:02'); +INSERT INTO "status" VALUES(7,5,10,'2015-06-02 13:05:03'); +INSERT INTO "status" VALUES(7,5,10,'2015-06-02 13:06:02'); +INSERT INTO "status" VALUES(7,5,10,'2015-06-02 13:07:02'); +INSERT INTO "status" VALUES(7,5,10,'2015-06-02 13:08:02'); +INSERT INTO "status" VALUES(7,5,10,'2015-06-02 13:09:02'); +INSERT INTO "status" VALUES(7,5,10,'2015-06-02 13:10:02'); +INSERT INTO "status" VALUES(7,5,10,'2015-06-02 13:11:02'); +INSERT INTO "status" VALUES(7,5,10,'2015-06-02 13:12:02'); +INSERT INTO "status" VALUES(7,5,10,'2015-06-02 13:13:03'); +INSERT INTO "status" VALUES(7,5,10,'2015-06-02 13:14:03'); +INSERT INTO "status" VALUES(7,5,10,'2015-06-02 13:15:02'); +INSERT INTO "status" VALUES(7,5,10,'2015-06-02 13:16:02'); +INSERT INTO "status" VALUES(7,5,10,'2015-06-02 13:17:02'); +INSERT INTO "status" VALUES(7,5,10,'2015-06-02 13:18:02'); +INSERT INTO "status" VALUES(7,5,10,'2015-06-02 13:19:02'); +INSERT INTO "status" VALUES(7,5,10,'2015-06-02 13:20:02'); +INSERT INTO "status" VALUES(7,5,10,'2015-06-02 13:21:02'); +INSERT INTO "status" VALUES(7,5,10,'2015-06-02 13:22:02'); +INSERT INTO "status" VALUES(7,5,10,'2015-06-02 13:23:02'); +INSERT INTO "status" VALUES(7,5,10,'2015-06-02 13:24:02'); +INSERT INTO "status" VALUES(7,5,10,'2015-06-02 13:25:02'); +INSERT INTO "status" VALUES(7,5,10,'2015-06-02 13:26:02'); +INSERT INTO "status" VALUES(7,5,10,'2015-06-02 13:27:02'); +INSERT INTO "status" VALUES(7,5,10,'2015-06-02 13:28:02'); +INSERT INTO "status" VALUES(7,5,10,'2015-06-02 13:29:02'); +INSERT INTO "status" VALUES(7,5,10,'2015-06-02 13:30:02'); +INSERT INTO "status" VALUES(7,5,10,'2015-06-02 13:31:02'); +INSERT INTO "status" VALUES(7,5,10,'2015-06-02 13:32:02'); +INSERT INTO "status" VALUES(7,5,10,'2015-06-02 13:33:02'); +INSERT INTO "status" VALUES(7,5,10,'2015-06-02 13:34:02'); +INSERT INTO "status" VALUES(7,5,10,'2015-06-02 13:35:02'); +INSERT INTO "status" VALUES(7,5,10,'2015-06-02 13:36:02'); +INSERT INTO "status" VALUES(7,5,10,'2015-06-02 13:37:02'); +INSERT INTO "status" VALUES(7,5,10,'2015-06-02 13:38:02'); +INSERT INTO "status" VALUES(7,5,10,'2015-06-02 13:39:02'); +INSERT INTO "status" VALUES(7,5,10,'2015-06-02 13:40:02'); +INSERT INTO "status" VALUES(7,5,10,'2015-06-02 13:41:03'); +INSERT INTO "status" VALUES(7,5,10,'2015-06-02 13:42:03'); +INSERT INTO "status" VALUES(7,5,10,'2015-06-02 13:43:03'); +INSERT INTO "status" VALUES(7,5,10,'2015-06-02 13:44:02'); +INSERT INTO "status" VALUES(7,5,10,'2015-06-02 13:45:03'); +INSERT INTO "status" VALUES(7,5,10,'2015-06-02 13:46:02'); +INSERT INTO "status" VALUES(7,5,10,'2015-06-02 13:47:02'); +INSERT INTO "status" VALUES(7,5,10,'2015-06-02 13:48:02'); +INSERT INTO "status" VALUES(7,5,10,'2015-06-02 13:49:02'); +INSERT INTO "status" VALUES(7,5,10,'2015-06-02 13:50:03'); +INSERT INTO "status" VALUES(7,5,10,'2015-06-02 13:51:02'); +INSERT INTO "status" VALUES(7,5,10,'2015-06-02 13:52:02'); +INSERT INTO "status" VALUES(7,5,10,'2015-06-02 13:53:02'); +INSERT INTO "status" VALUES(7,5,10,'2015-06-02 13:54:02'); +INSERT INTO "status" VALUES(7,5,10,'2015-06-02 13:55:03'); +INSERT INTO "status" VALUES(7,5,10,'2015-06-02 13:56:02'); +INSERT INTO "status" VALUES(7,5,10,'2015-06-02 13:57:02'); +INSERT INTO "status" VALUES(7,5,10,'2015-06-02 13:58:02'); +INSERT INTO "status" VALUES(7,5,10,'2015-06-02 13:59:02'); +INSERT INTO "status" VALUES(7,5,10,'2015-06-02 14:00:02'); +INSERT INTO "status" VALUES(7,5,10,'2015-06-02 14:01:02'); +INSERT INTO "status" VALUES(7,5,10,'2015-06-02 14:02:02'); +INSERT INTO "status" VALUES(7,5,10,'2015-06-02 14:03:02'); +INSERT INTO "status" VALUES(7,5,10,'2015-06-02 14:04:02'); +INSERT INTO "status" VALUES(7,5,10,'2015-06-02 14:05:02'); +INSERT INTO "status" VALUES(7,5,10,'2015-06-02 14:06:02'); +INSERT INTO "status" VALUES(7,5,10,'2015-06-02 14:07:02'); +INSERT INTO "status" VALUES(7,5,10,'2015-06-02 14:08:02'); +INSERT INTO "status" VALUES(7,5,10,'2015-06-02 14:09:02'); +INSERT INTO "status" VALUES(7,5,10,'2015-06-02 14:10:02'); +INSERT INTO "status" VALUES(7,5,10,'2015-06-02 14:11:02'); +INSERT INTO "status" VALUES(7,5,10,'2015-06-02 14:12:02'); +INSERT INTO "status" VALUES(7,5,10,'2015-06-02 14:13:02'); +INSERT INTO "status" VALUES(7,5,10,'2015-06-02 14:14:02'); +INSERT INTO "status" VALUES(7,5,10,'2015-06-02 14:15:02'); +INSERT INTO "status" VALUES(7,5,10,'2015-06-02 14:16:02'); +INSERT INTO "status" VALUES(7,5,10,'2015-06-02 14:17:02'); +INSERT INTO "status" VALUES(7,5,10,'2015-06-02 14:18:02'); +INSERT INTO "status" VALUES(7,5,10,'2015-06-02 14:19:02'); +INSERT INTO "status" VALUES(7,5,10,'2015-06-02 14:20:03'); +INSERT INTO "status" VALUES(7,5,10,'2015-06-02 14:21:02'); +INSERT INTO "status" VALUES(7,5,10,'2015-06-02 14:22:02'); +INSERT INTO "status" VALUES(7,5,10,'2015-06-02 14:23:03'); +INSERT INTO "status" VALUES(7,5,10,'2015-06-02 14:24:02'); +INSERT INTO "status" VALUES(7,5,10,'2015-06-02 14:25:01'); +INSERT INTO "status" VALUES(7,5,10,'2015-06-02 14:26:02'); +INSERT INTO "status" VALUES(7,5,10,'2015-06-02 14:27:02'); +INSERT INTO "status" VALUES(7,5,10,'2015-06-02 14:28:02'); +INSERT INTO "status" VALUES(7,5,10,'2015-06-02 14:29:02'); +INSERT INTO "status" VALUES(7,5,10,'2015-06-02 14:30:02'); +INSERT INTO "status" VALUES(7,5,10,'2015-06-02 14:31:02'); +INSERT INTO "status" VALUES(7,5,10,'2015-06-02 14:32:02'); +INSERT INTO "status" VALUES(7,5,10,'2015-06-02 14:33:02'); +INSERT INTO "status" VALUES(7,5,10,'2015-06-02 14:34:02'); +INSERT INTO "status" VALUES(7,5,10,'2015-06-02 14:35:02'); +INSERT INTO "status" VALUES(7,5,10,'2015-06-02 14:36:02'); +INSERT INTO "status" VALUES(7,5,10,'2015-06-02 14:37:02'); +INSERT INTO "status" VALUES(7,5,10,'2015-06-02 14:38:02'); +INSERT INTO "status" VALUES(7,5,10,'2015-06-02 14:39:02'); +INSERT INTO "status" VALUES(7,5,10,'2015-06-02 14:40:02'); +INSERT INTO "status" VALUES(7,5,10,'2015-06-02 14:41:02'); +INSERT INTO "status" VALUES(7,5,10,'2015-06-02 14:42:02'); +INSERT INTO "status" VALUES(7,5,10,'2015-06-02 14:43:02'); +INSERT INTO "status" VALUES(7,5,10,'2015-06-02 14:44:02'); +INSERT INTO "status" VALUES(7,5,10,'2015-06-02 14:45:02'); +INSERT INTO "status" VALUES(7,5,10,'2015-06-02 14:46:02'); +INSERT INTO "status" VALUES(7,5,10,'2015-06-02 14:47:02'); +INSERT INTO "status" VALUES(7,5,10,'2015-06-02 14:48:02'); +INSERT INTO "status" VALUES(8,7,7,'2015-06-02 12:46:02'); +INSERT INTO "status" VALUES(8,7,7,'2015-06-02 12:47:02'); +INSERT INTO "status" VALUES(8,7,7,'2015-06-02 12:48:02'); +INSERT INTO "status" VALUES(8,7,7,'2015-06-02 12:49:02'); +INSERT INTO "status" VALUES(8,7,7,'2015-06-02 12:50:02'); +INSERT INTO "status" VALUES(8,7,7,'2015-06-02 12:51:02'); +INSERT INTO "status" VALUES(8,7,7,'2015-06-02 12:52:02'); +INSERT INTO "status" VALUES(8,7,7,'2015-06-02 12:53:03'); +INSERT INTO "status" VALUES(8,7,7,'2015-06-02 12:54:02'); +INSERT INTO "status" VALUES(8,7,7,'2015-06-02 12:55:02'); +INSERT INTO "status" VALUES(8,7,7,'2015-06-02 12:56:01'); +INSERT INTO "status" VALUES(8,7,7,'2015-06-02 12:57:02'); +INSERT INTO "status" VALUES(8,7,7,'2015-06-02 12:58:02'); +INSERT INTO "status" VALUES(8,7,7,'2015-06-02 12:59:02'); +INSERT INTO "status" VALUES(8,7,7,'2015-06-02 13:00:01'); +INSERT INTO "status" VALUES(8,7,7,'2015-06-02 13:01:03'); +INSERT INTO "status" VALUES(8,7,7,'2015-06-02 13:02:02'); +INSERT INTO "status" VALUES(8,7,7,'2015-06-02 13:03:02'); +INSERT INTO "status" VALUES(8,7,7,'2015-06-02 13:04:02'); +INSERT INTO "status" VALUES(8,7,7,'2015-06-02 13:05:03'); +INSERT INTO "status" VALUES(8,7,7,'2015-06-02 13:06:02'); +INSERT INTO "status" VALUES(8,7,7,'2015-06-02 13:07:02'); +INSERT INTO "status" VALUES(8,7,7,'2015-06-02 13:08:02'); +INSERT INTO "status" VALUES(8,7,7,'2015-06-02 13:09:02'); +INSERT INTO "status" VALUES(8,7,7,'2015-06-02 13:10:02'); +INSERT INTO "status" VALUES(8,6,8,'2015-06-02 13:11:02'); +INSERT INTO "status" VALUES(8,6,8,'2015-06-02 13:12:02'); +INSERT INTO "status" VALUES(8,6,8,'2015-06-02 13:13:03'); +INSERT INTO "status" VALUES(8,6,8,'2015-06-02 13:14:03'); +INSERT INTO "status" VALUES(8,6,8,'2015-06-02 13:15:02'); +INSERT INTO "status" VALUES(8,6,8,'2015-06-02 13:16:02'); +INSERT INTO "status" VALUES(8,6,8,'2015-06-02 13:17:02'); +INSERT INTO "status" VALUES(8,6,8,'2015-06-02 13:18:02'); +INSERT INTO "status" VALUES(8,6,8,'2015-06-02 13:19:02'); +INSERT INTO "status" VALUES(8,6,8,'2015-06-02 13:20:02'); +INSERT INTO "status" VALUES(8,6,8,'2015-06-02 13:21:02'); +INSERT INTO "status" VALUES(8,6,8,'2015-06-02 13:22:02'); +INSERT INTO "status" VALUES(8,6,8,'2015-06-02 13:23:02'); +INSERT INTO "status" VALUES(8,6,8,'2015-06-02 13:24:02'); +INSERT INTO "status" VALUES(8,6,8,'2015-06-02 13:25:02'); +INSERT INTO "status" VALUES(8,6,8,'2015-06-02 13:26:02'); +INSERT INTO "status" VALUES(8,6,8,'2015-06-02 13:27:02'); +INSERT INTO "status" VALUES(8,6,8,'2015-06-02 13:28:02'); +INSERT INTO "status" VALUES(8,6,8,'2015-06-02 13:29:02'); +INSERT INTO "status" VALUES(8,6,8,'2015-06-02 13:30:02'); +INSERT INTO "status" VALUES(8,6,8,'2015-06-02 13:31:02'); +INSERT INTO "status" VALUES(8,6,8,'2015-06-02 13:32:02'); +INSERT INTO "status" VALUES(8,6,8,'2015-06-02 13:33:02'); +INSERT INTO "status" VALUES(8,6,8,'2015-06-02 13:34:02'); +INSERT INTO "status" VALUES(8,6,8,'2015-06-02 13:35:02'); +INSERT INTO "status" VALUES(8,6,8,'2015-06-02 13:36:02'); +INSERT INTO "status" VALUES(8,6,8,'2015-06-02 13:37:02'); +INSERT INTO "status" VALUES(8,6,8,'2015-06-02 13:38:02'); +INSERT INTO "status" VALUES(8,6,8,'2015-06-02 13:39:02'); +INSERT INTO "status" VALUES(8,6,8,'2015-06-02 13:40:02'); +INSERT INTO "status" VALUES(8,6,8,'2015-06-02 13:41:03'); +INSERT INTO "status" VALUES(8,6,8,'2015-06-02 13:42:03'); +INSERT INTO "status" VALUES(8,6,8,'2015-06-02 13:43:03'); +INSERT INTO "status" VALUES(8,6,8,'2015-06-02 13:44:02'); +INSERT INTO "status" VALUES(8,6,8,'2015-06-02 13:45:03'); +INSERT INTO "status" VALUES(8,6,8,'2015-06-02 13:46:02'); +INSERT INTO "status" VALUES(8,6,8,'2015-06-02 13:47:02'); +INSERT INTO "status" VALUES(8,6,8,'2015-06-02 13:48:02'); +INSERT INTO "status" VALUES(8,6,8,'2015-06-02 13:49:02'); +INSERT INTO "status" VALUES(8,6,8,'2015-06-02 13:50:03'); +INSERT INTO "status" VALUES(8,6,8,'2015-06-02 13:51:02'); +INSERT INTO "status" VALUES(8,6,8,'2015-06-02 13:52:02'); +INSERT INTO "status" VALUES(8,6,8,'2015-06-02 13:53:02'); +INSERT INTO "status" VALUES(8,6,8,'2015-06-02 13:54:02'); +INSERT INTO "status" VALUES(8,6,8,'2015-06-02 13:55:03'); +INSERT INTO "status" VALUES(8,6,8,'2015-06-02 13:56:02'); +INSERT INTO "status" VALUES(8,6,8,'2015-06-02 13:57:02'); +INSERT INTO "status" VALUES(8,6,8,'2015-06-02 13:58:02'); +INSERT INTO "status" VALUES(8,6,8,'2015-06-02 13:59:02'); +INSERT INTO "status" VALUES(8,6,8,'2015-06-02 14:00:02'); +INSERT INTO "status" VALUES(8,6,8,'2015-06-02 14:01:02'); +INSERT INTO "status" VALUES(8,6,8,'2015-06-02 14:02:02'); +INSERT INTO "status" VALUES(8,6,8,'2015-06-02 14:03:02'); +INSERT INTO "status" VALUES(8,6,8,'2015-06-02 14:04:02'); +INSERT INTO "status" VALUES(8,6,8,'2015-06-02 14:05:02'); +INSERT INTO "status" VALUES(8,6,8,'2015-06-02 14:06:02'); +INSERT INTO "status" VALUES(8,6,8,'2015-06-02 14:07:02'); +INSERT INTO "status" VALUES(8,6,8,'2015-06-02 14:08:02'); +INSERT INTO "status" VALUES(8,6,8,'2015-06-02 14:09:02'); +INSERT INTO "status" VALUES(8,6,8,'2015-06-02 14:10:02'); +INSERT INTO "status" VALUES(8,6,8,'2015-06-02 14:11:02'); +INSERT INTO "status" VALUES(8,6,8,'2015-06-02 14:12:02'); +INSERT INTO "status" VALUES(8,6,8,'2015-06-02 14:13:02'); +INSERT INTO "status" VALUES(8,6,8,'2015-06-02 14:14:02'); +INSERT INTO "status" VALUES(8,6,8,'2015-06-02 14:15:02'); +INSERT INTO "status" VALUES(8,6,8,'2015-06-02 14:16:02'); +INSERT INTO "status" VALUES(8,6,8,'2015-06-02 14:17:02'); +INSERT INTO "status" VALUES(8,6,8,'2015-06-02 14:18:02'); +INSERT INTO "status" VALUES(8,6,8,'2015-06-02 14:19:02'); +INSERT INTO "status" VALUES(8,6,8,'2015-06-02 14:20:03'); +INSERT INTO "status" VALUES(8,6,8,'2015-06-02 14:21:02'); +INSERT INTO "status" VALUES(8,6,8,'2015-06-02 14:22:02'); +INSERT INTO "status" VALUES(8,6,8,'2015-06-02 14:23:03'); +INSERT INTO "status" VALUES(8,6,8,'2015-06-02 14:24:02'); +INSERT INTO "status" VALUES(8,6,8,'2015-06-02 14:25:01'); +INSERT INTO "status" VALUES(8,6,8,'2015-06-02 14:26:02'); +INSERT INTO "status" VALUES(8,6,8,'2015-06-02 14:27:02'); +INSERT INTO "status" VALUES(8,6,8,'2015-06-02 14:28:02'); +INSERT INTO "status" VALUES(8,6,8,'2015-06-02 14:29:02'); +INSERT INTO "status" VALUES(8,6,8,'2015-06-02 14:30:02'); +INSERT INTO "status" VALUES(8,6,8,'2015-06-02 14:31:02'); +INSERT INTO "status" VALUES(8,6,8,'2015-06-02 14:32:02'); +INSERT INTO "status" VALUES(8,6,8,'2015-06-02 14:33:02'); +INSERT INTO "status" VALUES(8,6,8,'2015-06-02 14:34:02'); +INSERT INTO "status" VALUES(8,6,8,'2015-06-02 14:35:02'); +INSERT INTO "status" VALUES(8,6,8,'2015-06-02 14:36:02'); +INSERT INTO "status" VALUES(8,6,8,'2015-06-02 14:37:02'); +INSERT INTO "status" VALUES(8,6,8,'2015-06-02 14:38:02'); +INSERT INTO "status" VALUES(8,6,8,'2015-06-02 14:39:02'); +INSERT INTO "status" VALUES(8,6,8,'2015-06-02 14:40:02'); +INSERT INTO "status" VALUES(8,6,8,'2015-06-02 14:41:02'); +INSERT INTO "status" VALUES(8,6,8,'2015-06-02 14:42:02'); +INSERT INTO "status" VALUES(8,6,8,'2015-06-02 14:43:02'); +INSERT INTO "status" VALUES(8,6,8,'2015-06-02 14:44:02'); +INSERT INTO "status" VALUES(8,6,8,'2015-06-02 14:45:02'); +INSERT INTO "status" VALUES(8,6,8,'2015-06-02 14:46:02'); +INSERT INTO "status" VALUES(8,6,8,'2015-06-02 14:47:02'); +INSERT INTO "status" VALUES(8,6,8,'2015-06-02 14:48:02'); +INSERT INTO "status" VALUES(9,2,13,'2015-06-02 12:46:02'); +INSERT INTO "status" VALUES(9,2,13,'2015-06-02 12:47:02'); +INSERT INTO "status" VALUES(9,2,13,'2015-06-02 12:48:02'); +INSERT INTO "status" VALUES(9,2,13,'2015-06-02 12:49:02'); +INSERT INTO "status" VALUES(9,2,13,'2015-06-02 12:50:02'); +INSERT INTO "status" VALUES(9,2,13,'2015-06-02 12:51:02'); +INSERT INTO "status" VALUES(9,2,13,'2015-06-02 12:52:02'); +INSERT INTO "status" VALUES(9,1,14,'2015-06-02 12:53:03'); +INSERT INTO "status" VALUES(9,1,14,'2015-06-02 12:54:02'); +INSERT INTO "status" VALUES(9,1,14,'2015-06-02 12:55:02'); +INSERT INTO "status" VALUES(9,1,14,'2015-06-02 12:56:01'); +INSERT INTO "status" VALUES(9,1,14,'2015-06-02 12:57:02'); +INSERT INTO "status" VALUES(9,1,14,'2015-06-02 12:58:02'); +INSERT INTO "status" VALUES(9,1,14,'2015-06-02 12:59:02'); +INSERT INTO "status" VALUES(9,1,14,'2015-06-02 13:00:01'); +INSERT INTO "status" VALUES(9,1,14,'2015-06-02 13:01:03'); +INSERT INTO "status" VALUES(9,1,14,'2015-06-02 13:02:02'); +INSERT INTO "status" VALUES(9,1,14,'2015-06-02 13:03:02'); +INSERT INTO "status" VALUES(9,1,14,'2015-06-02 13:04:02'); +INSERT INTO "status" VALUES(9,1,14,'2015-06-02 13:05:03'); +INSERT INTO "status" VALUES(9,1,14,'2015-06-02 13:06:02'); +INSERT INTO "status" VALUES(9,1,14,'2015-06-02 13:07:02'); +INSERT INTO "status" VALUES(9,1,14,'2015-06-02 13:08:02'); +INSERT INTO "status" VALUES(9,1,14,'2015-06-02 13:09:02'); +INSERT INTO "status" VALUES(9,1,14,'2015-06-02 13:10:02'); +INSERT INTO "status" VALUES(9,1,14,'2015-06-02 13:11:02'); +INSERT INTO "status" VALUES(9,1,14,'2015-06-02 13:12:02'); +INSERT INTO "status" VALUES(9,1,14,'2015-06-02 13:13:03'); +INSERT INTO "status" VALUES(9,1,14,'2015-06-02 13:14:03'); +INSERT INTO "status" VALUES(9,1,14,'2015-06-02 13:15:02'); +INSERT INTO "status" VALUES(9,1,14,'2015-06-02 13:16:02'); +INSERT INTO "status" VALUES(9,1,14,'2015-06-02 13:17:02'); +INSERT INTO "status" VALUES(9,1,14,'2015-06-02 13:18:02'); +INSERT INTO "status" VALUES(9,1,14,'2015-06-02 13:19:02'); +INSERT INTO "status" VALUES(9,1,14,'2015-06-02 13:20:02'); +INSERT INTO "status" VALUES(9,1,14,'2015-06-02 13:21:02'); +INSERT INTO "status" VALUES(9,0,15,'2015-06-02 13:22:02'); +INSERT INTO "status" VALUES(9,0,15,'2015-06-02 13:23:02'); +INSERT INTO "status" VALUES(9,0,15,'2015-06-02 13:24:02'); +INSERT INTO "status" VALUES(9,0,15,'2015-06-02 13:25:02'); +INSERT INTO "status" VALUES(9,0,15,'2015-06-02 13:26:02'); +INSERT INTO "status" VALUES(9,0,15,'2015-06-02 13:27:02'); +INSERT INTO "status" VALUES(9,0,15,'2015-06-02 13:28:02'); +INSERT INTO "status" VALUES(9,0,15,'2015-06-02 13:29:02'); +INSERT INTO "status" VALUES(9,0,15,'2015-06-02 13:30:02'); +INSERT INTO "status" VALUES(9,0,15,'2015-06-02 13:31:02'); +INSERT INTO "status" VALUES(9,0,15,'2015-06-02 13:32:02'); +INSERT INTO "status" VALUES(9,0,15,'2015-06-02 13:33:02'); +INSERT INTO "status" VALUES(9,0,15,'2015-06-02 13:34:02'); +INSERT INTO "status" VALUES(9,0,15,'2015-06-02 13:35:02'); +INSERT INTO "status" VALUES(9,0,15,'2015-06-02 13:36:02'); +INSERT INTO "status" VALUES(9,0,15,'2015-06-02 13:37:02'); +INSERT INTO "status" VALUES(9,0,15,'2015-06-02 13:38:02'); +INSERT INTO "status" VALUES(9,0,15,'2015-06-02 13:39:02'); +INSERT INTO "status" VALUES(9,0,15,'2015-06-02 13:40:02'); +INSERT INTO "status" VALUES(9,0,15,'2015-06-02 13:41:03'); +INSERT INTO "status" VALUES(9,0,15,'2015-06-02 13:42:03'); +INSERT INTO "status" VALUES(9,0,15,'2015-06-02 13:43:03'); +INSERT INTO "status" VALUES(9,0,15,'2015-06-02 13:44:02'); +INSERT INTO "status" VALUES(9,0,15,'2015-06-02 13:45:03'); +INSERT INTO "status" VALUES(9,0,15,'2015-06-02 13:46:02'); +INSERT INTO "status" VALUES(9,0,15,'2015-06-02 13:47:02'); +INSERT INTO "status" VALUES(9,0,15,'2015-06-02 13:48:02'); +INSERT INTO "status" VALUES(9,0,15,'2015-06-02 13:49:02'); +INSERT INTO "status" VALUES(9,0,15,'2015-06-02 13:50:03'); +INSERT INTO "status" VALUES(9,0,15,'2015-06-02 13:51:02'); +INSERT INTO "status" VALUES(9,0,15,'2015-06-02 13:52:02'); +INSERT INTO "status" VALUES(9,0,15,'2015-06-02 13:53:02'); +INSERT INTO "status" VALUES(9,0,15,'2015-06-02 13:54:02'); +INSERT INTO "status" VALUES(9,0,15,'2015-06-02 13:55:03'); +INSERT INTO "status" VALUES(9,0,15,'2015-06-02 13:56:02'); +INSERT INTO "status" VALUES(9,0,15,'2015-06-02 13:57:02'); +INSERT INTO "status" VALUES(9,0,15,'2015-06-02 13:58:02'); +INSERT INTO "status" VALUES(9,0,15,'2015-06-02 13:59:02'); +INSERT INTO "status" VALUES(9,0,15,'2015-06-02 14:00:02'); +INSERT INTO "status" VALUES(9,0,15,'2015-06-02 14:01:02'); +INSERT INTO "status" VALUES(9,0,15,'2015-06-02 14:02:02'); +INSERT INTO "status" VALUES(9,0,15,'2015-06-02 14:03:02'); +INSERT INTO "status" VALUES(9,0,15,'2015-06-02 14:04:02'); +INSERT INTO "status" VALUES(9,0,15,'2015-06-02 14:05:02'); +INSERT INTO "status" VALUES(9,0,15,'2015-06-02 14:06:02'); +INSERT INTO "status" VALUES(9,0,15,'2015-06-02 14:07:02'); +INSERT INTO "status" VALUES(9,0,15,'2015-06-02 14:08:02'); +INSERT INTO "status" VALUES(9,0,15,'2015-06-02 14:09:02'); +INSERT INTO "status" VALUES(9,0,15,'2015-06-02 14:10:02'); +INSERT INTO "status" VALUES(9,0,15,'2015-06-02 14:11:02'); +INSERT INTO "status" VALUES(9,0,15,'2015-06-02 14:12:02'); +INSERT INTO "status" VALUES(9,0,15,'2015-06-02 14:13:02'); +INSERT INTO "status" VALUES(9,0,15,'2015-06-02 14:14:02'); +INSERT INTO "status" VALUES(9,0,15,'2015-06-02 14:15:02'); +INSERT INTO "status" VALUES(9,0,15,'2015-06-02 14:16:02'); +INSERT INTO "status" VALUES(9,0,15,'2015-06-02 14:17:02'); +INSERT INTO "status" VALUES(9,0,15,'2015-06-02 14:18:02'); +INSERT INTO "status" VALUES(9,0,15,'2015-06-02 14:19:02'); +INSERT INTO "status" VALUES(9,0,15,'2015-06-02 14:20:03'); +INSERT INTO "status" VALUES(9,0,15,'2015-06-02 14:21:02'); +INSERT INTO "status" VALUES(9,0,15,'2015-06-02 14:22:02'); +INSERT INTO "status" VALUES(9,0,15,'2015-06-02 14:23:03'); +INSERT INTO "status" VALUES(9,0,15,'2015-06-02 14:24:02'); +INSERT INTO "status" VALUES(9,0,15,'2015-06-02 14:25:01'); +INSERT INTO "status" VALUES(9,0,15,'2015-06-02 14:26:02'); +INSERT INTO "status" VALUES(9,0,15,'2015-06-02 14:27:02'); +INSERT INTO "status" VALUES(9,0,15,'2015-06-02 14:28:02'); +INSERT INTO "status" VALUES(9,0,15,'2015-06-02 14:29:02'); +INSERT INTO "status" VALUES(9,0,15,'2015-06-02 14:30:02'); +INSERT INTO "status" VALUES(9,0,15,'2015-06-02 14:31:02'); +INSERT INTO "status" VALUES(9,0,15,'2015-06-02 14:32:02'); +INSERT INTO "status" VALUES(9,0,15,'2015-06-02 14:33:02'); +INSERT INTO "status" VALUES(9,0,15,'2015-06-02 14:34:02'); +INSERT INTO "status" VALUES(9,0,15,'2015-06-02 14:35:02'); +INSERT INTO "status" VALUES(9,0,15,'2015-06-02 14:36:02'); +INSERT INTO "status" VALUES(9,0,15,'2015-06-02 14:37:02'); +INSERT INTO "status" VALUES(9,0,15,'2015-06-02 14:38:02'); +INSERT INTO "status" VALUES(9,0,15,'2015-06-02 14:39:02'); +INSERT INTO "status" VALUES(9,0,15,'2015-06-02 14:40:02'); +INSERT INTO "status" VALUES(9,0,15,'2015-06-02 14:41:02'); +INSERT INTO "status" VALUES(9,0,15,'2015-06-02 14:42:02'); +INSERT INTO "status" VALUES(9,0,15,'2015-06-02 14:43:02'); +INSERT INTO "status" VALUES(9,0,15,'2015-06-02 14:44:02'); +INSERT INTO "status" VALUES(9,0,15,'2015-06-02 14:45:02'); +INSERT INTO "status" VALUES(9,0,15,'2015-06-02 14:46:02'); +INSERT INTO "status" VALUES(9,0,15,'2015-06-02 14:47:02'); +INSERT INTO "status" VALUES(9,0,15,'2015-06-02 14:48:02'); +INSERT INTO "status" VALUES(10,8,7,'2015-06-02 12:46:02'); +INSERT INTO "status" VALUES(10,8,7,'2015-06-02 12:47:02'); +INSERT INTO "status" VALUES(10,8,7,'2015-06-02 12:48:02'); +INSERT INTO "status" VALUES(10,8,7,'2015-06-02 12:49:02'); +INSERT INTO "status" VALUES(10,8,7,'2015-06-02 12:50:02'); +INSERT INTO "status" VALUES(10,8,7,'2015-06-02 12:51:02'); +INSERT INTO "status" VALUES(10,8,7,'2015-06-02 12:52:02'); +INSERT INTO "status" VALUES(10,8,7,'2015-06-02 12:53:03'); +INSERT INTO "status" VALUES(10,8,7,'2015-06-02 12:54:02'); +INSERT INTO "status" VALUES(10,8,7,'2015-06-02 12:55:02'); +INSERT INTO "status" VALUES(10,8,7,'2015-06-02 12:56:01'); +INSERT INTO "status" VALUES(10,8,7,'2015-06-02 12:57:02'); +INSERT INTO "status" VALUES(10,8,7,'2015-06-02 12:58:02'); +INSERT INTO "status" VALUES(10,8,7,'2015-06-02 12:59:02'); +INSERT INTO "status" VALUES(10,8,7,'2015-06-02 13:00:01'); +INSERT INTO "status" VALUES(10,8,7,'2015-06-02 13:01:03'); +INSERT INTO "status" VALUES(10,8,7,'2015-06-02 13:02:02'); +INSERT INTO "status" VALUES(10,8,7,'2015-06-02 13:03:02'); +INSERT INTO "status" VALUES(10,8,7,'2015-06-02 13:04:02'); +INSERT INTO "status" VALUES(10,8,7,'2015-06-02 13:05:03'); +INSERT INTO "status" VALUES(10,8,7,'2015-06-02 13:06:02'); +INSERT INTO "status" VALUES(10,8,7,'2015-06-02 13:07:02'); +INSERT INTO "status" VALUES(10,8,7,'2015-06-02 13:08:02'); +INSERT INTO "status" VALUES(10,8,7,'2015-06-02 13:09:02'); +INSERT INTO "status" VALUES(10,8,7,'2015-06-02 13:10:02'); +INSERT INTO "status" VALUES(10,8,7,'2015-06-02 13:11:02'); +INSERT INTO "status" VALUES(10,8,7,'2015-06-02 13:12:02'); +INSERT INTO "status" VALUES(10,8,7,'2015-06-02 13:13:03'); +INSERT INTO "status" VALUES(10,8,7,'2015-06-02 13:14:03'); +INSERT INTO "status" VALUES(10,8,7,'2015-06-02 13:15:02'); +INSERT INTO "status" VALUES(10,8,7,'2015-06-02 13:16:02'); +INSERT INTO "status" VALUES(10,8,7,'2015-06-02 13:17:02'); +INSERT INTO "status" VALUES(10,8,7,'2015-06-02 13:18:02'); +INSERT INTO "status" VALUES(10,8,7,'2015-06-02 13:19:02'); +INSERT INTO "status" VALUES(10,8,7,'2015-06-02 13:20:02'); +INSERT INTO "status" VALUES(10,8,7,'2015-06-02 13:21:02'); +INSERT INTO "status" VALUES(10,8,7,'2015-06-02 13:22:02'); +INSERT INTO "status" VALUES(10,8,7,'2015-06-02 13:23:02'); +INSERT INTO "status" VALUES(10,8,7,'2015-06-02 13:24:02'); +INSERT INTO "status" VALUES(10,8,7,'2015-06-02 13:25:02'); +INSERT INTO "status" VALUES(10,8,7,'2015-06-02 13:26:02'); +INSERT INTO "status" VALUES(10,8,7,'2015-06-02 13:27:02'); +INSERT INTO "status" VALUES(10,8,7,'2015-06-02 13:28:02'); +INSERT INTO "status" VALUES(10,8,7,'2015-06-02 13:29:02'); +INSERT INTO "status" VALUES(10,9,6,'2015-06-02 13:30:02'); +INSERT INTO "status" VALUES(10,9,6,'2015-06-02 13:31:02'); +INSERT INTO "status" VALUES(10,9,6,'2015-06-02 13:32:02'); +INSERT INTO "status" VALUES(10,9,6,'2015-06-02 13:33:02'); +INSERT INTO "status" VALUES(10,9,6,'2015-06-02 13:34:02'); +INSERT INTO "status" VALUES(10,9,6,'2015-06-02 13:35:02'); +INSERT INTO "status" VALUES(10,9,6,'2015-06-02 13:36:02'); +INSERT INTO "status" VALUES(10,9,6,'2015-06-02 13:37:02'); +INSERT INTO "status" VALUES(10,9,6,'2015-06-02 13:38:02'); +INSERT INTO "status" VALUES(10,9,6,'2015-06-02 13:39:02'); +INSERT INTO "status" VALUES(10,9,6,'2015-06-02 13:40:02'); +INSERT INTO "status" VALUES(10,9,6,'2015-06-02 13:41:03'); +INSERT INTO "status" VALUES(10,9,6,'2015-06-02 13:42:03'); +INSERT INTO "status" VALUES(10,9,6,'2015-06-02 13:43:03'); +INSERT INTO "status" VALUES(10,9,6,'2015-06-02 13:44:02'); +INSERT INTO "status" VALUES(10,9,6,'2015-06-02 13:45:03'); +INSERT INTO "status" VALUES(10,9,6,'2015-06-02 13:46:02'); +INSERT INTO "status" VALUES(10,9,6,'2015-06-02 13:47:02'); +INSERT INTO "status" VALUES(10,9,6,'2015-06-02 13:48:02'); +INSERT INTO "status" VALUES(10,9,6,'2015-06-02 13:49:02'); +INSERT INTO "status" VALUES(10,9,6,'2015-06-02 13:50:03'); +INSERT INTO "status" VALUES(10,9,6,'2015-06-02 13:51:02'); +INSERT INTO "status" VALUES(10,9,6,'2015-06-02 13:52:02'); +INSERT INTO "status" VALUES(10,9,6,'2015-06-02 13:53:02'); +INSERT INTO "status" VALUES(10,9,6,'2015-06-02 13:54:02'); +INSERT INTO "status" VALUES(10,9,6,'2015-06-02 13:55:03'); +INSERT INTO "status" VALUES(10,9,6,'2015-06-02 13:56:02'); +INSERT INTO "status" VALUES(10,9,6,'2015-06-02 13:57:02'); +INSERT INTO "status" VALUES(10,9,6,'2015-06-02 13:58:02'); +INSERT INTO "status" VALUES(10,9,6,'2015-06-02 13:59:02'); +INSERT INTO "status" VALUES(10,9,6,'2015-06-02 14:00:02'); +INSERT INTO "status" VALUES(10,9,6,'2015-06-02 14:01:02'); +INSERT INTO "status" VALUES(10,9,6,'2015-06-02 14:02:02'); +INSERT INTO "status" VALUES(10,9,6,'2015-06-02 14:03:02'); +INSERT INTO "status" VALUES(10,9,6,'2015-06-02 14:04:02'); +INSERT INTO "status" VALUES(10,9,6,'2015-06-02 14:05:02'); +INSERT INTO "status" VALUES(10,9,6,'2015-06-02 14:06:02'); +INSERT INTO "status" VALUES(10,9,6,'2015-06-02 14:07:02'); +INSERT INTO "status" VALUES(10,9,6,'2015-06-02 14:08:02'); +INSERT INTO "status" VALUES(10,9,6,'2015-06-02 14:09:02'); +INSERT INTO "status" VALUES(10,9,6,'2015-06-02 14:10:02'); +INSERT INTO "status" VALUES(10,9,6,'2015-06-02 14:11:02'); +INSERT INTO "status" VALUES(10,9,6,'2015-06-02 14:12:02'); +INSERT INTO "status" VALUES(10,9,6,'2015-06-02 14:13:02'); +INSERT INTO "status" VALUES(10,9,6,'2015-06-02 14:14:02'); +INSERT INTO "status" VALUES(10,9,6,'2015-06-02 14:15:02'); +INSERT INTO "status" VALUES(10,9,6,'2015-06-02 14:16:02'); +INSERT INTO "status" VALUES(10,9,6,'2015-06-02 14:17:02'); +INSERT INTO "status" VALUES(10,9,6,'2015-06-02 14:18:02'); +INSERT INTO "status" VALUES(10,9,6,'2015-06-02 14:19:02'); +INSERT INTO "status" VALUES(10,9,6,'2015-06-02 14:20:03'); +INSERT INTO "status" VALUES(10,9,6,'2015-06-02 14:21:02'); +INSERT INTO "status" VALUES(10,9,6,'2015-06-02 14:22:02'); +INSERT INTO "status" VALUES(10,9,6,'2015-06-02 14:23:03'); +INSERT INTO "status" VALUES(10,9,6,'2015-06-02 14:24:02'); +INSERT INTO "status" VALUES(10,9,6,'2015-06-02 14:25:01'); +INSERT INTO "status" VALUES(10,9,6,'2015-06-02 14:26:02'); +INSERT INTO "status" VALUES(10,9,6,'2015-06-02 14:27:02'); +INSERT INTO "status" VALUES(10,9,6,'2015-06-02 14:28:02'); +INSERT INTO "status" VALUES(10,9,6,'2015-06-02 14:29:02'); +INSERT INTO "status" VALUES(10,9,6,'2015-06-02 14:30:02'); +INSERT INTO "status" VALUES(10,9,6,'2015-06-02 14:31:02'); +INSERT INTO "status" VALUES(10,9,6,'2015-06-02 14:32:02'); +INSERT INTO "status" VALUES(10,9,6,'2015-06-02 14:33:02'); +INSERT INTO "status" VALUES(10,9,6,'2015-06-02 14:34:02'); +INSERT INTO "status" VALUES(10,9,6,'2015-06-02 14:35:02'); +INSERT INTO "status" VALUES(10,9,6,'2015-06-02 14:36:02'); +INSERT INTO "status" VALUES(10,9,6,'2015-06-02 14:37:02'); +INSERT INTO "status" VALUES(10,9,6,'2015-06-02 14:38:02'); +INSERT INTO "status" VALUES(10,9,6,'2015-06-02 14:39:02'); +INSERT INTO "status" VALUES(10,9,6,'2015-06-02 14:40:02'); +INSERT INTO "status" VALUES(10,9,6,'2015-06-02 14:41:02'); +INSERT INTO "status" VALUES(10,9,6,'2015-06-02 14:42:02'); +INSERT INTO "status" VALUES(10,9,6,'2015-06-02 14:43:02'); +INSERT INTO "status" VALUES(10,9,6,'2015-06-02 14:44:02'); +INSERT INTO "status" VALUES(10,9,6,'2015-06-02 14:45:02'); +INSERT INTO "status" VALUES(10,9,6,'2015-06-02 14:46:02'); +INSERT INTO "status" VALUES(10,9,6,'2015-06-02 14:47:02'); +INSERT INTO "status" VALUES(10,9,6,'2015-06-02 14:48:02'); +INSERT INTO "status" VALUES(11,12,7,'2015-06-02 12:46:02'); +INSERT INTO "status" VALUES(11,12,7,'2015-06-02 12:47:02'); +INSERT INTO "status" VALUES(11,12,7,'2015-06-02 12:48:02'); +INSERT INTO "status" VALUES(11,12,7,'2015-06-02 12:49:02'); +INSERT INTO "status" VALUES(11,12,7,'2015-06-02 12:50:02'); +INSERT INTO "status" VALUES(11,12,7,'2015-06-02 12:51:02'); +INSERT INTO "status" VALUES(11,12,7,'2015-06-02 12:52:02'); +INSERT INTO "status" VALUES(11,12,7,'2015-06-02 12:53:03'); +INSERT INTO "status" VALUES(11,12,7,'2015-06-02 12:54:02'); +INSERT INTO "status" VALUES(11,12,7,'2015-06-02 12:55:02'); +INSERT INTO "status" VALUES(11,12,7,'2015-06-02 12:56:01'); +INSERT INTO "status" VALUES(11,12,7,'2015-06-02 12:57:02'); +INSERT INTO "status" VALUES(11,12,7,'2015-06-02 12:58:02'); +INSERT INTO "status" VALUES(11,12,7,'2015-06-02 12:59:02'); +INSERT INTO "status" VALUES(11,12,7,'2015-06-02 13:00:01'); +INSERT INTO "status" VALUES(11,12,7,'2015-06-02 13:01:03'); +INSERT INTO "status" VALUES(11,12,7,'2015-06-02 13:02:02'); +INSERT INTO "status" VALUES(11,12,7,'2015-06-02 13:03:02'); +INSERT INTO "status" VALUES(11,12,7,'2015-06-02 13:04:02'); +INSERT INTO "status" VALUES(11,12,7,'2015-06-02 13:05:03'); +INSERT INTO "status" VALUES(11,12,7,'2015-06-02 13:06:02'); +INSERT INTO "status" VALUES(11,12,7,'2015-06-02 13:07:02'); +INSERT INTO "status" VALUES(11,12,7,'2015-06-02 13:08:02'); +INSERT INTO "status" VALUES(11,12,7,'2015-06-02 13:09:02'); +INSERT INTO "status" VALUES(11,12,7,'2015-06-02 13:10:02'); +INSERT INTO "status" VALUES(11,12,7,'2015-06-02 13:11:02'); +INSERT INTO "status" VALUES(11,12,7,'2015-06-02 13:12:02'); +INSERT INTO "status" VALUES(11,12,7,'2015-06-02 13:13:03'); +INSERT INTO "status" VALUES(11,12,7,'2015-06-02 13:14:03'); +INSERT INTO "status" VALUES(11,12,7,'2015-06-02 13:15:02'); +INSERT INTO "status" VALUES(11,12,7,'2015-06-02 13:16:02'); +INSERT INTO "status" VALUES(11,12,7,'2015-06-02 13:17:02'); +INSERT INTO "status" VALUES(11,12,7,'2015-06-02 13:18:02'); +INSERT INTO "status" VALUES(11,12,7,'2015-06-02 13:19:02'); +INSERT INTO "status" VALUES(11,12,7,'2015-06-02 13:20:02'); +INSERT INTO "status" VALUES(11,12,7,'2015-06-02 13:21:02'); +INSERT INTO "status" VALUES(11,12,7,'2015-06-02 13:22:02'); +INSERT INTO "status" VALUES(11,12,7,'2015-06-02 13:23:02'); +INSERT INTO "status" VALUES(11,12,7,'2015-06-02 13:24:02'); +INSERT INTO "status" VALUES(11,12,7,'2015-06-02 13:25:02'); +INSERT INTO "status" VALUES(11,12,7,'2015-06-02 13:26:02'); +INSERT INTO "status" VALUES(11,12,7,'2015-06-02 13:27:02'); +INSERT INTO "status" VALUES(11,12,7,'2015-06-02 13:28:02'); +INSERT INTO "status" VALUES(11,12,7,'2015-06-02 13:29:02'); +INSERT INTO "status" VALUES(11,12,7,'2015-06-02 13:30:02'); +INSERT INTO "status" VALUES(11,12,7,'2015-06-02 13:31:02'); +INSERT INTO "status" VALUES(11,12,7,'2015-06-02 13:32:02'); +INSERT INTO "status" VALUES(11,12,7,'2015-06-02 13:33:02'); +INSERT INTO "status" VALUES(11,12,7,'2015-06-02 13:34:02'); +INSERT INTO "status" VALUES(11,12,7,'2015-06-02 13:35:02'); +INSERT INTO "status" VALUES(11,12,7,'2015-06-02 13:36:02'); +INSERT INTO "status" VALUES(11,12,7,'2015-06-02 13:37:02'); +INSERT INTO "status" VALUES(11,12,7,'2015-06-02 13:38:02'); +INSERT INTO "status" VALUES(11,12,7,'2015-06-02 13:39:02'); +INSERT INTO "status" VALUES(11,12,7,'2015-06-02 13:40:02'); +INSERT INTO "status" VALUES(11,12,7,'2015-06-02 13:41:03'); +INSERT INTO "status" VALUES(11,12,7,'2015-06-02 13:42:03'); +INSERT INTO "status" VALUES(11,12,7,'2015-06-02 13:43:03'); +INSERT INTO "status" VALUES(11,12,7,'2015-06-02 13:44:02'); +INSERT INTO "status" VALUES(11,12,7,'2015-06-02 13:45:03'); +INSERT INTO "status" VALUES(11,12,7,'2015-06-02 13:46:02'); +INSERT INTO "status" VALUES(11,12,7,'2015-06-02 13:47:02'); +INSERT INTO "status" VALUES(11,12,7,'2015-06-02 13:48:02'); +INSERT INTO "status" VALUES(11,12,7,'2015-06-02 13:49:02'); +INSERT INTO "status" VALUES(11,12,7,'2015-06-02 13:50:03'); +INSERT INTO "status" VALUES(11,12,7,'2015-06-02 13:51:02'); +INSERT INTO "status" VALUES(11,12,7,'2015-06-02 13:52:02'); +INSERT INTO "status" VALUES(11,12,7,'2015-06-02 13:53:02'); +INSERT INTO "status" VALUES(11,12,7,'2015-06-02 13:54:02'); +INSERT INTO "status" VALUES(11,12,7,'2015-06-02 13:55:03'); +INSERT INTO "status" VALUES(11,12,7,'2015-06-02 13:56:02'); +INSERT INTO "status" VALUES(11,12,7,'2015-06-02 13:57:02'); +INSERT INTO "status" VALUES(11,12,7,'2015-06-02 13:58:02'); +INSERT INTO "status" VALUES(11,12,7,'2015-06-02 13:59:02'); +INSERT INTO "status" VALUES(11,12,7,'2015-06-02 14:00:02'); +INSERT INTO "status" VALUES(11,12,7,'2015-06-02 14:01:02'); +INSERT INTO "status" VALUES(11,12,7,'2015-06-02 14:02:02'); +INSERT INTO "status" VALUES(11,12,7,'2015-06-02 14:03:02'); +INSERT INTO "status" VALUES(11,12,7,'2015-06-02 14:04:02'); +INSERT INTO "status" VALUES(11,12,7,'2015-06-02 14:05:02'); +INSERT INTO "status" VALUES(11,12,7,'2015-06-02 14:06:02'); +INSERT INTO "status" VALUES(11,12,7,'2015-06-02 14:07:02'); +INSERT INTO "status" VALUES(11,12,7,'2015-06-02 14:08:02'); +INSERT INTO "status" VALUES(11,12,7,'2015-06-02 14:09:02'); +INSERT INTO "status" VALUES(11,12,7,'2015-06-02 14:10:02'); +INSERT INTO "status" VALUES(11,12,7,'2015-06-02 14:11:02'); +INSERT INTO "status" VALUES(11,12,7,'2015-06-02 14:12:02'); +INSERT INTO "status" VALUES(11,12,7,'2015-06-02 14:13:02'); +INSERT INTO "status" VALUES(11,12,7,'2015-06-02 14:14:02'); +INSERT INTO "status" VALUES(11,12,7,'2015-06-02 14:15:02'); +INSERT INTO "status" VALUES(11,12,7,'2015-06-02 14:16:02'); +INSERT INTO "status" VALUES(11,12,7,'2015-06-02 14:17:02'); +INSERT INTO "status" VALUES(11,12,7,'2015-06-02 14:18:02'); +INSERT INTO "status" VALUES(11,12,7,'2015-06-02 14:19:02'); +INSERT INTO "status" VALUES(11,12,7,'2015-06-02 14:20:03'); +INSERT INTO "status" VALUES(11,12,7,'2015-06-02 14:21:02'); +INSERT INTO "status" VALUES(11,12,7,'2015-06-02 14:22:02'); +INSERT INTO "status" VALUES(11,12,7,'2015-06-02 14:23:03'); +INSERT INTO "status" VALUES(11,12,7,'2015-06-02 14:24:02'); +INSERT INTO "status" VALUES(11,12,7,'2015-06-02 14:25:01'); +INSERT INTO "status" VALUES(11,12,7,'2015-06-02 14:26:02'); +INSERT INTO "status" VALUES(11,12,7,'2015-06-02 14:27:02'); +INSERT INTO "status" VALUES(11,12,7,'2015-06-02 14:28:02'); +INSERT INTO "status" VALUES(11,12,7,'2015-06-02 14:29:02'); +INSERT INTO "status" VALUES(11,12,7,'2015-06-02 14:30:02'); +INSERT INTO "status" VALUES(11,12,7,'2015-06-02 14:31:02'); +INSERT INTO "status" VALUES(11,12,7,'2015-06-02 14:32:02'); +INSERT INTO "status" VALUES(11,12,7,'2015-06-02 14:33:02'); +INSERT INTO "status" VALUES(11,12,7,'2015-06-02 14:34:02'); +INSERT INTO "status" VALUES(11,12,7,'2015-06-02 14:35:02'); +INSERT INTO "status" VALUES(11,12,7,'2015-06-02 14:36:02'); +INSERT INTO "status" VALUES(11,12,7,'2015-06-02 14:37:02'); +INSERT INTO "status" VALUES(11,12,7,'2015-06-02 14:38:02'); +INSERT INTO "status" VALUES(11,12,7,'2015-06-02 14:39:02'); +INSERT INTO "status" VALUES(11,12,7,'2015-06-02 14:40:02'); +INSERT INTO "status" VALUES(11,12,7,'2015-06-02 14:41:02'); +INSERT INTO "status" VALUES(11,12,7,'2015-06-02 14:42:02'); +INSERT INTO "status" VALUES(11,12,7,'2015-06-02 14:43:02'); +INSERT INTO "status" VALUES(11,12,7,'2015-06-02 14:44:02'); +INSERT INTO "status" VALUES(11,12,7,'2015-06-02 14:45:02'); +INSERT INTO "status" VALUES(11,12,7,'2015-06-02 14:46:02'); +INSERT INTO "status" VALUES(11,12,7,'2015-06-02 14:47:02'); +INSERT INTO "status" VALUES(11,12,7,'2015-06-02 14:48:02'); +INSERT INTO "status" VALUES(12,11,8,'2015-06-02 12:46:02'); +INSERT INTO "status" VALUES(12,11,8,'2015-06-02 12:47:02'); +INSERT INTO "status" VALUES(12,11,8,'2015-06-02 12:48:02'); +INSERT INTO "status" VALUES(12,11,8,'2015-06-02 12:49:02'); +INSERT INTO "status" VALUES(12,11,8,'2015-06-02 12:50:02'); +INSERT INTO "status" VALUES(12,11,8,'2015-06-02 12:51:02'); +INSERT INTO "status" VALUES(12,11,8,'2015-06-02 12:52:02'); +INSERT INTO "status" VALUES(12,11,8,'2015-06-02 12:53:03'); +INSERT INTO "status" VALUES(12,11,8,'2015-06-02 12:54:02'); +INSERT INTO "status" VALUES(12,11,8,'2015-06-02 12:55:02'); +INSERT INTO "status" VALUES(12,11,8,'2015-06-02 12:56:01'); +INSERT INTO "status" VALUES(12,11,8,'2015-06-02 12:57:02'); +INSERT INTO "status" VALUES(12,11,8,'2015-06-02 12:58:02'); +INSERT INTO "status" VALUES(12,11,8,'2015-06-02 12:59:02'); +INSERT INTO "status" VALUES(12,11,8,'2015-06-02 13:00:01'); +INSERT INTO "status" VALUES(12,11,8,'2015-06-02 13:01:03'); +INSERT INTO "status" VALUES(12,11,8,'2015-06-02 13:02:02'); +INSERT INTO "status" VALUES(12,11,8,'2015-06-02 13:03:02'); +INSERT INTO "status" VALUES(12,11,8,'2015-06-02 13:04:02'); +INSERT INTO "status" VALUES(12,11,8,'2015-06-02 13:05:03'); +INSERT INTO "status" VALUES(12,11,8,'2015-06-02 13:06:02'); +INSERT INTO "status" VALUES(12,11,8,'2015-06-02 13:07:02'); +INSERT INTO "status" VALUES(12,11,8,'2015-06-02 13:08:02'); +INSERT INTO "status" VALUES(12,11,8,'2015-06-02 13:09:02'); +INSERT INTO "status" VALUES(12,11,8,'2015-06-02 13:10:02'); +INSERT INTO "status" VALUES(12,11,8,'2015-06-02 13:11:02'); +INSERT INTO "status" VALUES(12,11,8,'2015-06-02 13:12:02'); +INSERT INTO "status" VALUES(12,11,8,'2015-06-02 13:13:03'); +INSERT INTO "status" VALUES(12,11,8,'2015-06-02 13:14:03'); +INSERT INTO "status" VALUES(12,11,8,'2015-06-02 13:15:02'); +INSERT INTO "status" VALUES(12,11,8,'2015-06-02 13:16:02'); +INSERT INTO "status" VALUES(12,11,8,'2015-06-02 13:17:02'); +INSERT INTO "status" VALUES(12,11,8,'2015-06-02 13:18:02'); +INSERT INTO "status" VALUES(12,11,8,'2015-06-02 13:19:02'); +INSERT INTO "status" VALUES(12,11,8,'2015-06-02 13:20:02'); +INSERT INTO "status" VALUES(12,11,8,'2015-06-02 13:21:02'); +INSERT INTO "status" VALUES(12,11,8,'2015-06-02 13:22:02'); +INSERT INTO "status" VALUES(12,11,8,'2015-06-02 13:23:02'); +INSERT INTO "status" VALUES(12,11,8,'2015-06-02 13:24:02'); +INSERT INTO "status" VALUES(12,11,8,'2015-06-02 13:25:02'); +INSERT INTO "status" VALUES(12,11,8,'2015-06-02 13:26:02'); +INSERT INTO "status" VALUES(12,11,8,'2015-06-02 13:27:02'); +INSERT INTO "status" VALUES(12,11,8,'2015-06-02 13:28:02'); +INSERT INTO "status" VALUES(12,11,8,'2015-06-02 13:29:02'); +INSERT INTO "status" VALUES(12,11,8,'2015-06-02 13:30:02'); +INSERT INTO "status" VALUES(12,11,8,'2015-06-02 13:31:02'); +INSERT INTO "status" VALUES(12,11,8,'2015-06-02 13:32:02'); +INSERT INTO "status" VALUES(12,11,8,'2015-06-02 13:33:02'); +INSERT INTO "status" VALUES(12,11,8,'2015-06-02 13:34:02'); +INSERT INTO "status" VALUES(12,11,8,'2015-06-02 13:35:02'); +INSERT INTO "status" VALUES(12,11,8,'2015-06-02 13:36:02'); +INSERT INTO "status" VALUES(12,11,8,'2015-06-02 13:37:02'); +INSERT INTO "status" VALUES(12,11,8,'2015-06-02 13:38:02'); +INSERT INTO "status" VALUES(12,11,8,'2015-06-02 13:39:02'); +INSERT INTO "status" VALUES(12,11,8,'2015-06-02 13:40:02'); +INSERT INTO "status" VALUES(12,11,8,'2015-06-02 13:41:03'); +INSERT INTO "status" VALUES(12,11,8,'2015-06-02 13:42:03'); +INSERT INTO "status" VALUES(12,11,8,'2015-06-02 13:43:03'); +INSERT INTO "status" VALUES(12,11,8,'2015-06-02 13:44:02'); +INSERT INTO "status" VALUES(12,11,8,'2015-06-02 13:45:03'); +INSERT INTO "status" VALUES(12,11,8,'2015-06-02 13:46:02'); +INSERT INTO "status" VALUES(12,11,8,'2015-06-02 13:47:02'); +INSERT INTO "status" VALUES(12,11,8,'2015-06-02 13:48:02'); +INSERT INTO "status" VALUES(12,11,8,'2015-06-02 13:49:02'); +INSERT INTO "status" VALUES(12,11,8,'2015-06-02 13:50:03'); +INSERT INTO "status" VALUES(12,11,8,'2015-06-02 13:51:02'); +INSERT INTO "status" VALUES(12,11,8,'2015-06-02 13:52:02'); +INSERT INTO "status" VALUES(12,11,8,'2015-06-02 13:53:02'); +INSERT INTO "status" VALUES(12,11,8,'2015-06-02 13:54:02'); +INSERT INTO "status" VALUES(12,11,8,'2015-06-02 13:55:03'); +INSERT INTO "status" VALUES(12,11,8,'2015-06-02 13:56:02'); +INSERT INTO "status" VALUES(12,11,8,'2015-06-02 13:57:02'); +INSERT INTO "status" VALUES(12,11,8,'2015-06-02 13:58:02'); +INSERT INTO "status" VALUES(12,11,8,'2015-06-02 13:59:02'); +INSERT INTO "status" VALUES(12,11,8,'2015-06-02 14:00:02'); +INSERT INTO "status" VALUES(12,11,8,'2015-06-02 14:01:02'); +INSERT INTO "status" VALUES(12,11,8,'2015-06-02 14:02:02'); +INSERT INTO "status" VALUES(12,11,8,'2015-06-02 14:03:02'); +INSERT INTO "status" VALUES(12,11,8,'2015-06-02 14:04:02'); +INSERT INTO "status" VALUES(12,11,8,'2015-06-02 14:05:02'); +INSERT INTO "status" VALUES(12,11,8,'2015-06-02 14:06:02'); +INSERT INTO "status" VALUES(12,11,8,'2015-06-02 14:07:02'); +INSERT INTO "status" VALUES(12,11,8,'2015-06-02 14:08:02'); +INSERT INTO "status" VALUES(12,11,8,'2015-06-02 14:09:02'); +INSERT INTO "status" VALUES(12,11,8,'2015-06-02 14:10:02'); +INSERT INTO "status" VALUES(12,11,8,'2015-06-02 14:11:02'); +INSERT INTO "status" VALUES(12,11,8,'2015-06-02 14:12:02'); +INSERT INTO "status" VALUES(12,11,8,'2015-06-02 14:13:02'); +INSERT INTO "status" VALUES(12,11,8,'2015-06-02 14:14:02'); +INSERT INTO "status" VALUES(12,11,8,'2015-06-02 14:15:02'); +INSERT INTO "status" VALUES(12,11,8,'2015-06-02 14:16:02'); +INSERT INTO "status" VALUES(12,11,8,'2015-06-02 14:17:02'); +INSERT INTO "status" VALUES(12,11,8,'2015-06-02 14:18:02'); +INSERT INTO "status" VALUES(12,11,8,'2015-06-02 14:19:02'); +INSERT INTO "status" VALUES(12,11,8,'2015-06-02 14:20:03'); +INSERT INTO "status" VALUES(12,11,8,'2015-06-02 14:21:02'); +INSERT INTO "status" VALUES(12,11,8,'2015-06-02 14:22:02'); +INSERT INTO "status" VALUES(12,11,8,'2015-06-02 14:23:03'); +INSERT INTO "status" VALUES(12,11,8,'2015-06-02 14:24:02'); +INSERT INTO "status" VALUES(12,11,8,'2015-06-02 14:25:01'); +INSERT INTO "status" VALUES(12,11,8,'2015-06-02 14:26:02'); +INSERT INTO "status" VALUES(12,11,8,'2015-06-02 14:27:02'); +INSERT INTO "status" VALUES(12,11,8,'2015-06-02 14:28:02'); +INSERT INTO "status" VALUES(12,11,8,'2015-06-02 14:29:02'); +INSERT INTO "status" VALUES(12,11,8,'2015-06-02 14:30:02'); +INSERT INTO "status" VALUES(12,11,8,'2015-06-02 14:31:02'); +INSERT INTO "status" VALUES(12,11,8,'2015-06-02 14:32:02'); +INSERT INTO "status" VALUES(12,11,8,'2015-06-02 14:33:02'); +INSERT INTO "status" VALUES(12,11,8,'2015-06-02 14:34:02'); +INSERT INTO "status" VALUES(12,11,8,'2015-06-02 14:35:02'); +INSERT INTO "status" VALUES(12,11,8,'2015-06-02 14:36:02'); +INSERT INTO "status" VALUES(12,11,8,'2015-06-02 14:37:02'); +INSERT INTO "status" VALUES(12,12,7,'2015-06-02 14:38:02'); +INSERT INTO "status" VALUES(12,12,7,'2015-06-02 14:39:02'); +INSERT INTO "status" VALUES(12,12,7,'2015-06-02 14:40:02'); +INSERT INTO "status" VALUES(12,12,7,'2015-06-02 14:41:02'); +INSERT INTO "status" VALUES(12,12,7,'2015-06-02 14:42:02'); +INSERT INTO "status" VALUES(12,12,7,'2015-06-02 14:43:02'); +INSERT INTO "status" VALUES(12,12,7,'2015-06-02 14:44:02'); +INSERT INTO "status" VALUES(12,12,7,'2015-06-02 14:45:02'); +INSERT INTO "status" VALUES(12,12,7,'2015-06-02 14:46:02'); +INSERT INTO "status" VALUES(12,12,7,'2015-06-02 14:47:02'); +INSERT INTO "status" VALUES(12,12,7,'2015-06-02 14:48:02'); +INSERT INTO "status" VALUES(13,8,7,'2015-06-02 12:46:02'); +INSERT INTO "status" VALUES(13,8,7,'2015-06-02 12:47:02'); +INSERT INTO "status" VALUES(13,8,7,'2015-06-02 12:48:02'); +INSERT INTO "status" VALUES(13,8,7,'2015-06-02 12:49:02'); +INSERT INTO "status" VALUES(13,8,7,'2015-06-02 12:50:02'); +INSERT INTO "status" VALUES(13,8,7,'2015-06-02 12:51:02'); +INSERT INTO "status" VALUES(13,8,7,'2015-06-02 12:52:02'); +INSERT INTO "status" VALUES(13,8,7,'2015-06-02 12:53:03'); +INSERT INTO "status" VALUES(13,8,7,'2015-06-02 12:54:02'); +INSERT INTO "status" VALUES(13,8,7,'2015-06-02 12:55:02'); +INSERT INTO "status" VALUES(13,8,7,'2015-06-02 12:56:01'); +INSERT INTO "status" VALUES(13,8,7,'2015-06-02 12:57:02'); +INSERT INTO "status" VALUES(13,8,7,'2015-06-02 12:58:02'); +INSERT INTO "status" VALUES(13,8,7,'2015-06-02 12:59:02'); +INSERT INTO "status" VALUES(13,8,7,'2015-06-02 13:00:01'); +INSERT INTO "status" VALUES(13,8,7,'2015-06-02 13:01:03'); +INSERT INTO "status" VALUES(13,8,7,'2015-06-02 13:02:02'); +INSERT INTO "status" VALUES(13,8,7,'2015-06-02 13:03:02'); +INSERT INTO "status" VALUES(13,8,7,'2015-06-02 13:04:02'); +INSERT INTO "status" VALUES(13,8,7,'2015-06-02 13:05:03'); +INSERT INTO "status" VALUES(13,8,7,'2015-06-02 13:06:02'); +INSERT INTO "status" VALUES(13,8,7,'2015-06-02 13:07:02'); +INSERT INTO "status" VALUES(13,8,7,'2015-06-02 13:08:02'); +INSERT INTO "status" VALUES(13,8,7,'2015-06-02 13:09:02'); +INSERT INTO "status" VALUES(13,8,7,'2015-06-02 13:10:02'); +INSERT INTO "status" VALUES(13,8,7,'2015-06-02 13:11:02'); +INSERT INTO "status" VALUES(13,8,7,'2015-06-02 13:12:02'); +INSERT INTO "status" VALUES(13,8,7,'2015-06-02 13:13:03'); +INSERT INTO "status" VALUES(13,8,7,'2015-06-02 13:14:03'); +INSERT INTO "status" VALUES(13,8,7,'2015-06-02 13:15:02'); +INSERT INTO "status" VALUES(13,8,7,'2015-06-02 13:16:02'); +INSERT INTO "status" VALUES(13,8,7,'2015-06-02 13:17:02'); +INSERT INTO "status" VALUES(13,8,7,'2015-06-02 13:18:02'); +INSERT INTO "status" VALUES(13,8,7,'2015-06-02 13:19:02'); +INSERT INTO "status" VALUES(13,8,7,'2015-06-02 13:20:02'); +INSERT INTO "status" VALUES(13,8,7,'2015-06-02 13:21:02'); +INSERT INTO "status" VALUES(13,8,7,'2015-06-02 13:22:02'); +INSERT INTO "status" VALUES(13,8,7,'2015-06-02 13:23:02'); +INSERT INTO "status" VALUES(13,8,7,'2015-06-02 13:24:02'); +INSERT INTO "status" VALUES(13,8,7,'2015-06-02 13:25:02'); +INSERT INTO "status" VALUES(13,8,7,'2015-06-02 13:26:02'); +INSERT INTO "status" VALUES(13,8,7,'2015-06-02 13:27:02'); +INSERT INTO "status" VALUES(13,8,7,'2015-06-02 13:28:02'); +INSERT INTO "status" VALUES(13,8,7,'2015-06-02 13:29:02'); +INSERT INTO "status" VALUES(13,8,7,'2015-06-02 13:30:02'); +INSERT INTO "status" VALUES(13,8,7,'2015-06-02 13:31:02'); +INSERT INTO "status" VALUES(13,8,7,'2015-06-02 13:32:02'); +INSERT INTO "status" VALUES(13,8,7,'2015-06-02 13:33:02'); +INSERT INTO "status" VALUES(13,8,7,'2015-06-02 13:34:02'); +INSERT INTO "status" VALUES(13,8,7,'2015-06-02 13:35:02'); +INSERT INTO "status" VALUES(13,8,7,'2015-06-02 13:36:02'); +INSERT INTO "status" VALUES(13,8,7,'2015-06-02 13:37:02'); +INSERT INTO "status" VALUES(13,8,7,'2015-06-02 13:38:02'); +INSERT INTO "status" VALUES(13,8,7,'2015-06-02 13:39:02'); +INSERT INTO "status" VALUES(13,8,7,'2015-06-02 13:40:02'); +INSERT INTO "status" VALUES(13,8,7,'2015-06-02 13:41:03'); +INSERT INTO "status" VALUES(13,8,7,'2015-06-02 13:42:03'); +INSERT INTO "status" VALUES(13,8,7,'2015-06-02 13:43:03'); +INSERT INTO "status" VALUES(13,8,7,'2015-06-02 13:44:02'); +INSERT INTO "status" VALUES(13,8,7,'2015-06-02 13:45:03'); +INSERT INTO "status" VALUES(13,8,7,'2015-06-02 13:46:02'); +INSERT INTO "status" VALUES(13,8,7,'2015-06-02 13:47:02'); +INSERT INTO "status" VALUES(13,8,7,'2015-06-02 13:48:02'); +INSERT INTO "status" VALUES(13,8,7,'2015-06-02 13:49:02'); +INSERT INTO "status" VALUES(13,8,7,'2015-06-02 13:50:03'); +INSERT INTO "status" VALUES(13,8,7,'2015-06-02 13:51:02'); +INSERT INTO "status" VALUES(13,8,7,'2015-06-02 13:52:02'); +INSERT INTO "status" VALUES(13,8,7,'2015-06-02 13:53:02'); +INSERT INTO "status" VALUES(13,8,7,'2015-06-02 13:54:02'); +INSERT INTO "status" VALUES(13,8,7,'2015-06-02 13:55:03'); +INSERT INTO "status" VALUES(13,8,7,'2015-06-02 13:56:02'); +INSERT INTO "status" VALUES(13,8,7,'2015-06-02 13:57:02'); +INSERT INTO "status" VALUES(13,8,7,'2015-06-02 13:58:02'); +INSERT INTO "status" VALUES(13,8,7,'2015-06-02 13:59:02'); +INSERT INTO "status" VALUES(13,8,7,'2015-06-02 14:00:02'); +INSERT INTO "status" VALUES(13,8,7,'2015-06-02 14:01:02'); +INSERT INTO "status" VALUES(13,8,7,'2015-06-02 14:02:02'); +INSERT INTO "status" VALUES(13,8,7,'2015-06-02 14:03:02'); +INSERT INTO "status" VALUES(13,8,7,'2015-06-02 14:04:02'); +INSERT INTO "status" VALUES(13,8,7,'2015-06-02 14:05:02'); +INSERT INTO "status" VALUES(13,8,7,'2015-06-02 14:06:02'); +INSERT INTO "status" VALUES(13,8,7,'2015-06-02 14:07:02'); +INSERT INTO "status" VALUES(13,8,7,'2015-06-02 14:08:02'); +INSERT INTO "status" VALUES(13,8,7,'2015-06-02 14:09:02'); +INSERT INTO "status" VALUES(13,8,7,'2015-06-02 14:10:02'); +INSERT INTO "status" VALUES(13,8,7,'2015-06-02 14:11:02'); +INSERT INTO "status" VALUES(13,8,7,'2015-06-02 14:12:02'); +INSERT INTO "status" VALUES(13,8,7,'2015-06-02 14:13:02'); +INSERT INTO "status" VALUES(13,8,7,'2015-06-02 14:14:02'); +INSERT INTO "status" VALUES(13,8,7,'2015-06-02 14:15:02'); +INSERT INTO "status" VALUES(13,8,7,'2015-06-02 14:16:02'); +INSERT INTO "status" VALUES(13,8,7,'2015-06-02 14:17:02'); +INSERT INTO "status" VALUES(13,8,7,'2015-06-02 14:18:02'); +INSERT INTO "status" VALUES(13,8,7,'2015-06-02 14:19:02'); +INSERT INTO "status" VALUES(13,8,7,'2015-06-02 14:20:03'); +INSERT INTO "status" VALUES(13,8,7,'2015-06-02 14:21:02'); +INSERT INTO "status" VALUES(13,8,7,'2015-06-02 14:22:02'); +INSERT INTO "status" VALUES(13,8,7,'2015-06-02 14:23:03'); +INSERT INTO "status" VALUES(13,8,7,'2015-06-02 14:24:02'); +INSERT INTO "status" VALUES(13,8,7,'2015-06-02 14:25:01'); +INSERT INTO "status" VALUES(13,8,7,'2015-06-02 14:26:02'); +INSERT INTO "status" VALUES(13,8,7,'2015-06-02 14:27:02'); +INSERT INTO "status" VALUES(13,7,8,'2015-06-02 14:28:02'); +INSERT INTO "status" VALUES(13,7,8,'2015-06-02 14:29:02'); +INSERT INTO "status" VALUES(13,7,8,'2015-06-02 14:30:02'); +INSERT INTO "status" VALUES(13,7,8,'2015-06-02 14:31:02'); +INSERT INTO "status" VALUES(13,7,8,'2015-06-02 14:32:02'); +INSERT INTO "status" VALUES(13,7,8,'2015-06-02 14:33:02'); +INSERT INTO "status" VALUES(13,7,8,'2015-06-02 14:34:02'); +INSERT INTO "status" VALUES(13,7,8,'2015-06-02 14:35:02'); +INSERT INTO "status" VALUES(13,7,8,'2015-06-02 14:36:02'); +INSERT INTO "status" VALUES(13,7,8,'2015-06-02 14:37:02'); +INSERT INTO "status" VALUES(13,7,8,'2015-06-02 14:38:02'); +INSERT INTO "status" VALUES(13,7,8,'2015-06-02 14:39:02'); +INSERT INTO "status" VALUES(13,7,8,'2015-06-02 14:40:02'); +INSERT INTO "status" VALUES(13,7,8,'2015-06-02 14:41:02'); +INSERT INTO "status" VALUES(13,7,8,'2015-06-02 14:42:02'); +INSERT INTO "status" VALUES(13,7,8,'2015-06-02 14:43:02'); +INSERT INTO "status" VALUES(13,6,9,'2015-06-02 14:44:02'); +INSERT INTO "status" VALUES(13,6,9,'2015-06-02 14:45:02'); +INSERT INTO "status" VALUES(13,6,9,'2015-06-02 14:46:02'); +INSERT INTO "status" VALUES(13,6,9,'2015-06-02 14:47:02'); +INSERT INTO "status" VALUES(13,6,9,'2015-06-02 14:48:02'); +INSERT INTO "status" VALUES(14,7,12,'2015-06-02 12:46:02'); +INSERT INTO "status" VALUES(14,7,12,'2015-06-02 12:47:02'); +INSERT INTO "status" VALUES(14,7,12,'2015-06-02 12:48:02'); +INSERT INTO "status" VALUES(14,7,12,'2015-06-02 12:49:02'); +INSERT INTO "status" VALUES(14,7,12,'2015-06-02 12:50:02'); +INSERT INTO "status" VALUES(14,7,12,'2015-06-02 12:51:02'); +INSERT INTO "status" VALUES(14,7,12,'2015-06-02 12:52:02'); +INSERT INTO "status" VALUES(14,7,12,'2015-06-02 12:53:03'); +INSERT INTO "status" VALUES(14,7,12,'2015-06-02 12:54:02'); +INSERT INTO "status" VALUES(14,7,12,'2015-06-02 12:55:02'); +INSERT INTO "status" VALUES(14,7,12,'2015-06-02 12:56:01'); +INSERT INTO "status" VALUES(14,7,12,'2015-06-02 12:57:02'); +INSERT INTO "status" VALUES(14,7,12,'2015-06-02 12:58:02'); +INSERT INTO "status" VALUES(14,7,12,'2015-06-02 12:59:02'); +INSERT INTO "status" VALUES(14,7,12,'2015-06-02 13:00:01'); +INSERT INTO "status" VALUES(14,7,12,'2015-06-02 13:01:03'); +INSERT INTO "status" VALUES(14,7,12,'2015-06-02 13:02:02'); +INSERT INTO "status" VALUES(14,7,12,'2015-06-02 13:03:02'); +INSERT INTO "status" VALUES(14,7,12,'2015-06-02 13:04:02'); +INSERT INTO "status" VALUES(14,7,12,'2015-06-02 13:05:03'); +INSERT INTO "status" VALUES(14,7,12,'2015-06-02 13:06:02'); +INSERT INTO "status" VALUES(14,7,12,'2015-06-02 13:07:02'); +INSERT INTO "status" VALUES(14,7,12,'2015-06-02 13:08:02'); +INSERT INTO "status" VALUES(14,7,12,'2015-06-02 13:09:02'); +INSERT INTO "status" VALUES(14,7,12,'2015-06-02 13:10:02'); +INSERT INTO "status" VALUES(14,7,12,'2015-06-02 13:11:02'); +INSERT INTO "status" VALUES(14,7,12,'2015-06-02 13:12:02'); +INSERT INTO "status" VALUES(14,7,12,'2015-06-02 13:13:03'); +INSERT INTO "status" VALUES(14,7,12,'2015-06-02 13:14:03'); +INSERT INTO "status" VALUES(14,7,12,'2015-06-02 13:15:02'); +INSERT INTO "status" VALUES(14,7,12,'2015-06-02 13:16:02'); +INSERT INTO "status" VALUES(14,7,12,'2015-06-02 13:17:02'); +INSERT INTO "status" VALUES(14,7,12,'2015-06-02 13:18:02'); +INSERT INTO "status" VALUES(14,7,12,'2015-06-02 13:19:02'); +INSERT INTO "status" VALUES(14,7,12,'2015-06-02 13:20:02'); +INSERT INTO "status" VALUES(14,7,12,'2015-06-02 13:21:02'); +INSERT INTO "status" VALUES(14,7,12,'2015-06-02 13:22:02'); +INSERT INTO "status" VALUES(14,7,12,'2015-06-02 13:23:02'); +INSERT INTO "status" VALUES(14,7,12,'2015-06-02 13:24:02'); +INSERT INTO "status" VALUES(14,7,12,'2015-06-02 13:25:02'); +INSERT INTO "status" VALUES(14,7,12,'2015-06-02 13:26:02'); +INSERT INTO "status" VALUES(14,7,12,'2015-06-02 13:27:02'); +INSERT INTO "status" VALUES(14,7,12,'2015-06-02 13:28:02'); +INSERT INTO "status" VALUES(14,7,12,'2015-06-02 13:29:02'); +INSERT INTO "status" VALUES(14,7,12,'2015-06-02 13:30:02'); +INSERT INTO "status" VALUES(14,7,12,'2015-06-02 13:31:02'); +INSERT INTO "status" VALUES(14,7,12,'2015-06-02 13:32:02'); +INSERT INTO "status" VALUES(14,7,12,'2015-06-02 13:33:02'); +INSERT INTO "status" VALUES(14,7,12,'2015-06-02 13:34:02'); +INSERT INTO "status" VALUES(14,7,12,'2015-06-02 13:35:02'); +INSERT INTO "status" VALUES(14,7,12,'2015-06-02 13:36:02'); +INSERT INTO "status" VALUES(14,7,12,'2015-06-02 13:37:02'); +INSERT INTO "status" VALUES(14,7,12,'2015-06-02 13:38:02'); +INSERT INTO "status" VALUES(14,7,12,'2015-06-02 13:39:02'); +INSERT INTO "status" VALUES(14,7,12,'2015-06-02 13:40:02'); +INSERT INTO "status" VALUES(14,7,12,'2015-06-02 13:41:03'); +INSERT INTO "status" VALUES(14,7,12,'2015-06-02 13:42:03'); +INSERT INTO "status" VALUES(14,7,12,'2015-06-02 13:43:03'); +INSERT INTO "status" VALUES(14,7,12,'2015-06-02 13:44:02'); +INSERT INTO "status" VALUES(14,7,12,'2015-06-02 13:45:03'); +INSERT INTO "status" VALUES(14,7,12,'2015-06-02 13:46:02'); +INSERT INTO "status" VALUES(14,7,12,'2015-06-02 13:47:02'); +INSERT INTO "status" VALUES(14,7,12,'2015-06-02 13:48:02'); +INSERT INTO "status" VALUES(14,7,12,'2015-06-02 13:49:02'); +INSERT INTO "status" VALUES(14,7,12,'2015-06-02 13:50:03'); +INSERT INTO "status" VALUES(14,7,12,'2015-06-02 13:51:02'); +INSERT INTO "status" VALUES(14,7,12,'2015-06-02 13:52:02'); +INSERT INTO "status" VALUES(14,7,12,'2015-06-02 13:53:02'); +INSERT INTO "status" VALUES(14,7,12,'2015-06-02 13:54:02'); +INSERT INTO "status" VALUES(14,7,12,'2015-06-02 13:55:03'); +INSERT INTO "status" VALUES(14,7,12,'2015-06-02 13:56:02'); +INSERT INTO "status" VALUES(14,7,12,'2015-06-02 13:57:02'); +INSERT INTO "status" VALUES(14,7,12,'2015-06-02 13:58:02'); +INSERT INTO "status" VALUES(14,7,12,'2015-06-02 13:59:02'); +INSERT INTO "status" VALUES(14,7,12,'2015-06-02 14:00:02'); +INSERT INTO "status" VALUES(14,7,12,'2015-06-02 14:01:02'); +INSERT INTO "status" VALUES(14,7,12,'2015-06-02 14:02:02'); +INSERT INTO "status" VALUES(14,7,12,'2015-06-02 14:03:02'); +INSERT INTO "status" VALUES(14,7,12,'2015-06-02 14:04:02'); +INSERT INTO "status" VALUES(14,7,12,'2015-06-02 14:05:02'); +INSERT INTO "status" VALUES(14,7,12,'2015-06-02 14:06:02'); +INSERT INTO "status" VALUES(14,7,12,'2015-06-02 14:07:02'); +INSERT INTO "status" VALUES(14,7,12,'2015-06-02 14:08:02'); +INSERT INTO "status" VALUES(14,7,12,'2015-06-02 14:09:02'); +INSERT INTO "status" VALUES(14,7,12,'2015-06-02 14:10:02'); +INSERT INTO "status" VALUES(14,7,12,'2015-06-02 14:11:02'); +INSERT INTO "status" VALUES(14,7,12,'2015-06-02 14:12:02'); +INSERT INTO "status" VALUES(14,7,12,'2015-06-02 14:13:02'); +INSERT INTO "status" VALUES(14,7,12,'2015-06-02 14:14:02'); +INSERT INTO "status" VALUES(14,7,12,'2015-06-02 14:15:02'); +INSERT INTO "status" VALUES(14,7,12,'2015-06-02 14:16:02'); +INSERT INTO "status" VALUES(14,7,12,'2015-06-02 14:17:02'); +INSERT INTO "status" VALUES(14,7,12,'2015-06-02 14:18:02'); +INSERT INTO "status" VALUES(14,7,12,'2015-06-02 14:19:02'); +INSERT INTO "status" VALUES(14,7,12,'2015-06-02 14:20:03'); +INSERT INTO "status" VALUES(14,7,12,'2015-06-02 14:21:02'); +INSERT INTO "status" VALUES(14,7,12,'2015-06-02 14:22:02'); +INSERT INTO "status" VALUES(14,7,12,'2015-06-02 14:23:03'); +INSERT INTO "status" VALUES(14,7,12,'2015-06-02 14:24:02'); +INSERT INTO "status" VALUES(14,7,12,'2015-06-02 14:25:01'); +INSERT INTO "status" VALUES(14,7,12,'2015-06-02 14:26:02'); +INSERT INTO "status" VALUES(14,7,12,'2015-06-02 14:27:02'); +INSERT INTO "status" VALUES(14,7,12,'2015-06-02 14:28:02'); +INSERT INTO "status" VALUES(14,7,12,'2015-06-02 14:29:02'); +INSERT INTO "status" VALUES(14,7,12,'2015-06-02 14:30:02'); +INSERT INTO "status" VALUES(14,7,12,'2015-06-02 14:31:02'); +INSERT INTO "status" VALUES(14,7,12,'2015-06-02 14:32:02'); +INSERT INTO "status" VALUES(14,7,12,'2015-06-02 14:33:02'); +INSERT INTO "status" VALUES(14,7,12,'2015-06-02 14:34:02'); +INSERT INTO "status" VALUES(14,7,12,'2015-06-02 14:35:02'); +INSERT INTO "status" VALUES(14,7,12,'2015-06-02 14:36:02'); +INSERT INTO "status" VALUES(14,7,12,'2015-06-02 14:37:02'); +INSERT INTO "status" VALUES(14,7,12,'2015-06-02 14:38:02'); +INSERT INTO "status" VALUES(14,7,12,'2015-06-02 14:39:02'); +INSERT INTO "status" VALUES(14,7,12,'2015-06-02 14:40:02'); +INSERT INTO "status" VALUES(14,7,12,'2015-06-02 14:41:02'); +INSERT INTO "status" VALUES(14,7,12,'2015-06-02 14:42:02'); +INSERT INTO "status" VALUES(14,7,12,'2015-06-02 14:43:02'); +INSERT INTO "status" VALUES(14,7,12,'2015-06-02 14:44:02'); +INSERT INTO "status" VALUES(14,7,12,'2015-06-02 14:45:02'); +INSERT INTO "status" VALUES(14,7,12,'2015-06-02 14:46:02'); +INSERT INTO "status" VALUES(14,7,12,'2015-06-02 14:47:02'); +INSERT INTO "status" VALUES(14,7,12,'2015-06-02 14:48:02'); +INSERT INTO "status" VALUES(16,6,8,'2015-06-02 12:46:02'); +INSERT INTO "status" VALUES(16,6,8,'2015-06-02 12:47:02'); +INSERT INTO "status" VALUES(16,6,8,'2015-06-02 12:48:02'); +INSERT INTO "status" VALUES(16,6,8,'2015-06-02 12:49:02'); +INSERT INTO "status" VALUES(16,6,8,'2015-06-02 12:50:02'); +INSERT INTO "status" VALUES(16,6,8,'2015-06-02 12:51:02'); +INSERT INTO "status" VALUES(16,6,8,'2015-06-02 12:52:02'); +INSERT INTO "status" VALUES(16,6,8,'2015-06-02 12:53:03'); +INSERT INTO "status" VALUES(16,6,8,'2015-06-02 12:54:02'); +INSERT INTO "status" VALUES(16,6,8,'2015-06-02 12:55:02'); +INSERT INTO "status" VALUES(16,6,8,'2015-06-02 12:56:01'); +INSERT INTO "status" VALUES(16,6,8,'2015-06-02 12:57:02'); +INSERT INTO "status" VALUES(16,6,8,'2015-06-02 12:58:02'); +INSERT INTO "status" VALUES(16,6,8,'2015-06-02 12:59:02'); +INSERT INTO "status" VALUES(16,6,8,'2015-06-02 13:00:01'); +INSERT INTO "status" VALUES(16,6,8,'2015-06-02 13:01:03'); +INSERT INTO "status" VALUES(16,6,8,'2015-06-02 13:02:02'); +INSERT INTO "status" VALUES(16,6,8,'2015-06-02 13:03:02'); +INSERT INTO "status" VALUES(16,6,8,'2015-06-02 13:04:02'); +INSERT INTO "status" VALUES(16,6,8,'2015-06-02 13:05:03'); +INSERT INTO "status" VALUES(16,6,8,'2015-06-02 13:06:02'); +INSERT INTO "status" VALUES(16,6,8,'2015-06-02 13:07:02'); +INSERT INTO "status" VALUES(16,6,8,'2015-06-02 13:08:02'); +INSERT INTO "status" VALUES(16,6,8,'2015-06-02 13:09:02'); +INSERT INTO "status" VALUES(16,6,8,'2015-06-02 13:10:02'); +INSERT INTO "status" VALUES(16,6,8,'2015-06-02 13:11:02'); +INSERT INTO "status" VALUES(16,6,8,'2015-06-02 13:12:02'); +INSERT INTO "status" VALUES(16,6,8,'2015-06-02 13:13:03'); +INSERT INTO "status" VALUES(16,6,8,'2015-06-02 13:14:03'); +INSERT INTO "status" VALUES(16,6,8,'2015-06-02 13:15:02'); +INSERT INTO "status" VALUES(16,6,8,'2015-06-02 13:16:02'); +INSERT INTO "status" VALUES(16,6,8,'2015-06-02 13:17:02'); +INSERT INTO "status" VALUES(16,6,8,'2015-06-02 13:18:02'); +INSERT INTO "status" VALUES(16,6,8,'2015-06-02 13:19:02'); +INSERT INTO "status" VALUES(16,6,8,'2015-06-02 13:20:02'); +INSERT INTO "status" VALUES(16,6,8,'2015-06-02 13:21:02'); +INSERT INTO "status" VALUES(16,6,8,'2015-06-02 13:22:02'); +INSERT INTO "status" VALUES(16,6,8,'2015-06-02 13:23:02'); +INSERT INTO "status" VALUES(16,6,8,'2015-06-02 13:24:02'); +INSERT INTO "status" VALUES(16,6,8,'2015-06-02 13:25:02'); +INSERT INTO "status" VALUES(16,6,8,'2015-06-02 13:26:02'); +INSERT INTO "status" VALUES(16,6,8,'2015-06-02 13:27:02'); +INSERT INTO "status" VALUES(16,6,8,'2015-06-02 13:28:02'); +INSERT INTO "status" VALUES(16,6,8,'2015-06-02 13:29:02'); +INSERT INTO "status" VALUES(16,6,8,'2015-06-02 13:30:02'); +INSERT INTO "status" VALUES(16,6,8,'2015-06-02 13:31:02'); +INSERT INTO "status" VALUES(16,6,8,'2015-06-02 13:32:02'); +INSERT INTO "status" VALUES(16,6,8,'2015-06-02 13:33:02'); +INSERT INTO "status" VALUES(16,6,8,'2015-06-02 13:34:02'); +INSERT INTO "status" VALUES(16,6,8,'2015-06-02 13:35:02'); +INSERT INTO "status" VALUES(16,6,8,'2015-06-02 13:36:02'); +INSERT INTO "status" VALUES(16,6,8,'2015-06-02 13:37:02'); +INSERT INTO "status" VALUES(16,6,8,'2015-06-02 13:38:02'); +INSERT INTO "status" VALUES(16,6,8,'2015-06-02 13:39:02'); +INSERT INTO "status" VALUES(16,6,8,'2015-06-02 13:40:02'); +INSERT INTO "status" VALUES(16,6,8,'2015-06-02 13:41:03'); +INSERT INTO "status" VALUES(16,6,8,'2015-06-02 13:42:03'); +INSERT INTO "status" VALUES(16,6,8,'2015-06-02 13:43:03'); +INSERT INTO "status" VALUES(16,6,8,'2015-06-02 13:44:02'); +INSERT INTO "status" VALUES(16,6,8,'2015-06-02 13:45:03'); +INSERT INTO "status" VALUES(16,6,8,'2015-06-02 13:46:02'); +INSERT INTO "status" VALUES(16,6,8,'2015-06-02 13:47:02'); +INSERT INTO "status" VALUES(16,6,8,'2015-06-02 13:48:02'); +INSERT INTO "status" VALUES(16,6,8,'2015-06-02 13:49:02'); +INSERT INTO "status" VALUES(16,6,8,'2015-06-02 13:50:03'); +INSERT INTO "status" VALUES(16,6,8,'2015-06-02 13:51:02'); +INSERT INTO "status" VALUES(16,6,8,'2015-06-02 13:52:02'); +INSERT INTO "status" VALUES(16,6,8,'2015-06-02 13:53:02'); +INSERT INTO "status" VALUES(16,6,8,'2015-06-02 13:54:02'); +INSERT INTO "status" VALUES(16,6,8,'2015-06-02 13:55:03'); +INSERT INTO "status" VALUES(16,6,8,'2015-06-02 13:56:02'); +INSERT INTO "status" VALUES(16,6,8,'2015-06-02 13:57:02'); +INSERT INTO "status" VALUES(16,6,8,'2015-06-02 13:58:02'); +INSERT INTO "status" VALUES(16,6,8,'2015-06-02 13:59:02'); +INSERT INTO "status" VALUES(16,6,8,'2015-06-02 14:00:02'); +INSERT INTO "status" VALUES(16,6,8,'2015-06-02 14:01:02'); +INSERT INTO "status" VALUES(16,6,8,'2015-06-02 14:02:02'); +INSERT INTO "status" VALUES(16,6,8,'2015-06-02 14:03:02'); +INSERT INTO "status" VALUES(16,6,8,'2015-06-02 14:04:02'); +INSERT INTO "status" VALUES(16,6,8,'2015-06-02 14:05:02'); +INSERT INTO "status" VALUES(16,6,8,'2015-06-02 14:06:02'); +INSERT INTO "status" VALUES(16,6,8,'2015-06-02 14:07:02'); +INSERT INTO "status" VALUES(16,6,8,'2015-06-02 14:08:02'); +INSERT INTO "status" VALUES(16,6,8,'2015-06-02 14:09:02'); +INSERT INTO "status" VALUES(16,6,8,'2015-06-02 14:10:02'); +INSERT INTO "status" VALUES(16,6,8,'2015-06-02 14:11:02'); +INSERT INTO "status" VALUES(16,6,8,'2015-06-02 14:12:02'); +INSERT INTO "status" VALUES(16,6,8,'2015-06-02 14:13:02'); +INSERT INTO "status" VALUES(16,6,8,'2015-06-02 14:14:02'); +INSERT INTO "status" VALUES(16,6,8,'2015-06-02 14:15:02'); +INSERT INTO "status" VALUES(16,6,8,'2015-06-02 14:16:02'); +INSERT INTO "status" VALUES(16,6,8,'2015-06-02 14:17:02'); +INSERT INTO "status" VALUES(16,6,8,'2015-06-02 14:18:02'); +INSERT INTO "status" VALUES(16,6,8,'2015-06-02 14:19:02'); +INSERT INTO "status" VALUES(16,6,8,'2015-06-02 14:20:03'); +INSERT INTO "status" VALUES(16,6,8,'2015-06-02 14:21:02'); +INSERT INTO "status" VALUES(16,6,8,'2015-06-02 14:22:02'); +INSERT INTO "status" VALUES(16,6,8,'2015-06-02 14:23:03'); +INSERT INTO "status" VALUES(16,6,8,'2015-06-02 14:24:02'); +INSERT INTO "status" VALUES(16,6,8,'2015-06-02 14:25:01'); +INSERT INTO "status" VALUES(16,6,8,'2015-06-02 14:26:02'); +INSERT INTO "status" VALUES(16,6,8,'2015-06-02 14:27:02'); +INSERT INTO "status" VALUES(16,6,8,'2015-06-02 14:28:02'); +INSERT INTO "status" VALUES(16,6,8,'2015-06-02 14:29:02'); +INSERT INTO "status" VALUES(16,6,8,'2015-06-02 14:30:02'); +INSERT INTO "status" VALUES(16,6,8,'2015-06-02 14:31:02'); +INSERT INTO "status" VALUES(16,6,8,'2015-06-02 14:32:02'); +INSERT INTO "status" VALUES(16,6,8,'2015-06-02 14:33:02'); +INSERT INTO "status" VALUES(16,6,8,'2015-06-02 14:34:02'); +INSERT INTO "status" VALUES(16,6,8,'2015-06-02 14:35:02'); +INSERT INTO "status" VALUES(16,6,8,'2015-06-02 14:36:02'); +INSERT INTO "status" VALUES(16,6,8,'2015-06-02 14:37:02'); +INSERT INTO "status" VALUES(16,6,8,'2015-06-02 14:38:02'); +INSERT INTO "status" VALUES(16,6,8,'2015-06-02 14:39:02'); +INSERT INTO "status" VALUES(16,6,8,'2015-06-02 14:40:02'); +INSERT INTO "status" VALUES(16,6,8,'2015-06-02 14:41:02'); +INSERT INTO "status" VALUES(16,6,8,'2015-06-02 14:42:02'); +INSERT INTO "status" VALUES(16,6,8,'2015-06-02 14:43:02'); +INSERT INTO "status" VALUES(16,6,8,'2015-06-02 14:44:02'); +INSERT INTO "status" VALUES(16,6,8,'2015-06-02 14:45:02'); +INSERT INTO "status" VALUES(16,6,8,'2015-06-02 14:46:02'); +INSERT INTO "status" VALUES(16,6,8,'2015-06-02 14:47:02'); +INSERT INTO "status" VALUES(16,6,8,'2015-06-02 14:48:02'); +INSERT INTO "status" VALUES(21,3,12,'2015-06-02 12:46:02'); +INSERT INTO "status" VALUES(21,3,12,'2015-06-02 12:47:02'); +INSERT INTO "status" VALUES(21,3,12,'2015-06-02 12:48:02'); +INSERT INTO "status" VALUES(21,3,12,'2015-06-02 12:49:02'); +INSERT INTO "status" VALUES(21,3,12,'2015-06-02 12:50:02'); +INSERT INTO "status" VALUES(21,3,12,'2015-06-02 12:51:02'); +INSERT INTO "status" VALUES(21,3,12,'2015-06-02 12:52:02'); +INSERT INTO "status" VALUES(21,3,12,'2015-06-02 12:53:03'); +INSERT INTO "status" VALUES(21,3,12,'2015-06-02 12:54:02'); +INSERT INTO "status" VALUES(21,3,12,'2015-06-02 12:55:02'); +INSERT INTO "status" VALUES(21,3,12,'2015-06-02 12:56:01'); +INSERT INTO "status" VALUES(21,3,12,'2015-06-02 12:57:02'); +INSERT INTO "status" VALUES(21,3,12,'2015-06-02 12:58:02'); +INSERT INTO "status" VALUES(21,3,12,'2015-06-02 12:59:02'); +INSERT INTO "status" VALUES(21,3,12,'2015-06-02 13:00:01'); +INSERT INTO "status" VALUES(21,3,12,'2015-06-02 13:01:03'); +INSERT INTO "status" VALUES(21,3,12,'2015-06-02 13:02:02'); +INSERT INTO "status" VALUES(21,3,12,'2015-06-02 13:03:02'); +INSERT INTO "status" VALUES(21,3,12,'2015-06-02 13:04:02'); +INSERT INTO "status" VALUES(21,3,12,'2015-06-02 13:05:03'); +INSERT INTO "status" VALUES(21,3,12,'2015-06-02 13:06:02'); +INSERT INTO "status" VALUES(21,3,12,'2015-06-02 13:07:02'); +INSERT INTO "status" VALUES(21,3,12,'2015-06-02 13:08:02'); +INSERT INTO "status" VALUES(21,3,12,'2015-06-02 13:09:02'); +INSERT INTO "status" VALUES(21,3,12,'2015-06-02 13:10:02'); +INSERT INTO "status" VALUES(21,3,12,'2015-06-02 13:11:02'); +INSERT INTO "status" VALUES(21,3,12,'2015-06-02 13:12:02'); +INSERT INTO "status" VALUES(21,3,12,'2015-06-02 13:13:03'); +INSERT INTO "status" VALUES(21,3,12,'2015-06-02 13:14:03'); +INSERT INTO "status" VALUES(21,3,12,'2015-06-02 13:15:02'); +INSERT INTO "status" VALUES(21,3,12,'2015-06-02 13:16:02'); +INSERT INTO "status" VALUES(21,3,12,'2015-06-02 13:17:02'); +INSERT INTO "status" VALUES(21,3,12,'2015-06-02 13:18:02'); +INSERT INTO "status" VALUES(21,3,12,'2015-06-02 13:19:02'); +INSERT INTO "status" VALUES(21,3,12,'2015-06-02 13:20:02'); +INSERT INTO "status" VALUES(21,3,12,'2015-06-02 13:21:02'); +INSERT INTO "status" VALUES(21,3,12,'2015-06-02 13:22:02'); +INSERT INTO "status" VALUES(21,3,12,'2015-06-02 13:23:02'); +INSERT INTO "status" VALUES(21,3,12,'2015-06-02 13:24:02'); +INSERT INTO "status" VALUES(21,3,12,'2015-06-02 13:25:02'); +INSERT INTO "status" VALUES(21,3,12,'2015-06-02 13:26:02'); +INSERT INTO "status" VALUES(21,3,12,'2015-06-02 13:27:02'); +INSERT INTO "status" VALUES(21,3,12,'2015-06-02 13:28:02'); +INSERT INTO "status" VALUES(21,3,12,'2015-06-02 13:29:02'); +INSERT INTO "status" VALUES(21,3,12,'2015-06-02 13:30:02'); +INSERT INTO "status" VALUES(21,3,12,'2015-06-02 13:31:02'); +INSERT INTO "status" VALUES(21,3,12,'2015-06-02 13:32:02'); +INSERT INTO "status" VALUES(21,3,12,'2015-06-02 13:33:02'); +INSERT INTO "status" VALUES(21,3,12,'2015-06-02 13:34:02'); +INSERT INTO "status" VALUES(21,3,12,'2015-06-02 13:35:02'); +INSERT INTO "status" VALUES(21,3,12,'2015-06-02 13:36:02'); +INSERT INTO "status" VALUES(21,3,12,'2015-06-02 13:37:02'); +INSERT INTO "status" VALUES(21,3,12,'2015-06-02 13:38:02'); +INSERT INTO "status" VALUES(21,3,12,'2015-06-02 13:39:02'); +INSERT INTO "status" VALUES(21,3,12,'2015-06-02 13:40:02'); +INSERT INTO "status" VALUES(21,3,12,'2015-06-02 13:41:03'); +INSERT INTO "status" VALUES(21,3,12,'2015-06-02 13:42:03'); +INSERT INTO "status" VALUES(21,3,12,'2015-06-02 13:43:03'); +INSERT INTO "status" VALUES(21,3,12,'2015-06-02 13:44:02'); +INSERT INTO "status" VALUES(21,3,12,'2015-06-02 13:45:03'); +INSERT INTO "status" VALUES(21,3,12,'2015-06-02 13:46:02'); +INSERT INTO "status" VALUES(21,3,12,'2015-06-02 13:47:02'); +INSERT INTO "status" VALUES(21,3,12,'2015-06-02 13:48:02'); +INSERT INTO "status" VALUES(21,3,12,'2015-06-02 13:49:02'); +INSERT INTO "status" VALUES(21,3,12,'2015-06-02 13:50:03'); +INSERT INTO "status" VALUES(21,3,12,'2015-06-02 13:51:02'); +INSERT INTO "status" VALUES(21,3,12,'2015-06-02 13:52:02'); +INSERT INTO "status" VALUES(21,3,12,'2015-06-02 13:53:02'); +INSERT INTO "status" VALUES(21,3,12,'2015-06-02 13:54:02'); +INSERT INTO "status" VALUES(21,3,12,'2015-06-02 13:55:03'); +INSERT INTO "status" VALUES(21,3,12,'2015-06-02 13:56:02'); +INSERT INTO "status" VALUES(21,3,12,'2015-06-02 13:57:02'); +INSERT INTO "status" VALUES(21,3,12,'2015-06-02 13:58:02'); +INSERT INTO "status" VALUES(21,3,12,'2015-06-02 13:59:02'); +INSERT INTO "status" VALUES(21,3,12,'2015-06-02 14:00:02'); +INSERT INTO "status" VALUES(21,3,12,'2015-06-02 14:01:02'); +INSERT INTO "status" VALUES(21,3,12,'2015-06-02 14:02:02'); +INSERT INTO "status" VALUES(21,3,12,'2015-06-02 14:03:02'); +INSERT INTO "status" VALUES(21,3,12,'2015-06-02 14:04:02'); +INSERT INTO "status" VALUES(21,3,12,'2015-06-02 14:05:02'); +INSERT INTO "status" VALUES(21,3,12,'2015-06-02 14:06:02'); +INSERT INTO "status" VALUES(21,3,12,'2015-06-02 14:07:02'); +INSERT INTO "status" VALUES(21,3,12,'2015-06-02 14:08:02'); +INSERT INTO "status" VALUES(21,3,12,'2015-06-02 14:09:02'); +INSERT INTO "status" VALUES(21,3,12,'2015-06-02 14:10:02'); +INSERT INTO "status" VALUES(21,3,12,'2015-06-02 14:11:02'); +INSERT INTO "status" VALUES(21,3,12,'2015-06-02 14:12:02'); +INSERT INTO "status" VALUES(21,3,12,'2015-06-02 14:13:02'); +INSERT INTO "status" VALUES(21,3,12,'2015-06-02 14:14:02'); +INSERT INTO "status" VALUES(21,3,12,'2015-06-02 14:15:02'); +INSERT INTO "status" VALUES(21,3,12,'2015-06-02 14:16:02'); +INSERT INTO "status" VALUES(21,3,12,'2015-06-02 14:17:02'); +INSERT INTO "status" VALUES(21,3,12,'2015-06-02 14:18:02'); +INSERT INTO "status" VALUES(21,3,12,'2015-06-02 14:19:02'); +INSERT INTO "status" VALUES(21,3,12,'2015-06-02 14:20:03'); +INSERT INTO "status" VALUES(21,3,12,'2015-06-02 14:21:02'); +INSERT INTO "status" VALUES(21,3,12,'2015-06-02 14:22:02'); +INSERT INTO "status" VALUES(21,3,12,'2015-06-02 14:23:03'); +INSERT INTO "status" VALUES(21,3,12,'2015-06-02 14:24:02'); +INSERT INTO "status" VALUES(21,3,12,'2015-06-02 14:25:01'); +INSERT INTO "status" VALUES(21,3,12,'2015-06-02 14:26:02'); +INSERT INTO "status" VALUES(21,3,12,'2015-06-02 14:27:02'); +INSERT INTO "status" VALUES(21,3,12,'2015-06-02 14:28:02'); +INSERT INTO "status" VALUES(21,3,12,'2015-06-02 14:29:02'); +INSERT INTO "status" VALUES(21,3,12,'2015-06-02 14:30:02'); +INSERT INTO "status" VALUES(21,3,12,'2015-06-02 14:31:02'); +INSERT INTO "status" VALUES(21,3,12,'2015-06-02 14:32:02'); +INSERT INTO "status" VALUES(21,3,12,'2015-06-02 14:33:02'); +INSERT INTO "status" VALUES(21,3,12,'2015-06-02 14:34:02'); +INSERT INTO "status" VALUES(21,3,12,'2015-06-02 14:35:02'); +INSERT INTO "status" VALUES(21,3,12,'2015-06-02 14:36:02'); +INSERT INTO "status" VALUES(21,3,12,'2015-06-02 14:37:02'); +INSERT INTO "status" VALUES(21,3,12,'2015-06-02 14:38:02'); +INSERT INTO "status" VALUES(21,3,12,'2015-06-02 14:39:02'); +INSERT INTO "status" VALUES(21,3,12,'2015-06-02 14:40:02'); +INSERT INTO "status" VALUES(21,3,12,'2015-06-02 14:41:02'); +INSERT INTO "status" VALUES(21,3,12,'2015-06-02 14:42:02'); +INSERT INTO "status" VALUES(21,3,12,'2015-06-02 14:43:02'); +INSERT INTO "status" VALUES(21,3,12,'2015-06-02 14:44:02'); +INSERT INTO "status" VALUES(21,3,12,'2015-06-02 14:45:02'); +INSERT INTO "status" VALUES(21,3,12,'2015-06-02 14:46:02'); +INSERT INTO "status" VALUES(21,3,12,'2015-06-02 14:47:02'); +INSERT INTO "status" VALUES(21,3,12,'2015-06-02 14:48:02'); +INSERT INTO "status" VALUES(22,4,23,'2015-06-02 12:46:02'); +INSERT INTO "status" VALUES(22,4,23,'2015-06-02 12:47:02'); +INSERT INTO "status" VALUES(22,4,23,'2015-06-02 12:48:02'); +INSERT INTO "status" VALUES(22,4,23,'2015-06-02 12:49:02'); +INSERT INTO "status" VALUES(22,4,23,'2015-06-02 12:50:02'); +INSERT INTO "status" VALUES(22,4,23,'2015-06-02 12:51:02'); +INSERT INTO "status" VALUES(22,4,23,'2015-06-02 12:52:02'); +INSERT INTO "status" VALUES(22,4,23,'2015-06-02 12:53:03'); +INSERT INTO "status" VALUES(22,4,23,'2015-06-02 12:54:02'); +INSERT INTO "status" VALUES(22,4,23,'2015-06-02 12:55:02'); +INSERT INTO "status" VALUES(22,4,23,'2015-06-02 12:56:01'); +INSERT INTO "status" VALUES(22,4,23,'2015-06-02 12:57:02'); +INSERT INTO "status" VALUES(22,4,23,'2015-06-02 12:58:02'); +INSERT INTO "status" VALUES(22,4,23,'2015-06-02 12:59:02'); +INSERT INTO "status" VALUES(22,4,23,'2015-06-02 13:00:01'); +INSERT INTO "status" VALUES(22,4,23,'2015-06-02 13:01:03'); +INSERT INTO "status" VALUES(22,4,23,'2015-06-02 13:02:02'); +INSERT INTO "status" VALUES(22,4,23,'2015-06-02 13:03:02'); +INSERT INTO "status" VALUES(22,4,23,'2015-06-02 13:04:02'); +INSERT INTO "status" VALUES(22,4,23,'2015-06-02 13:05:03'); +INSERT INTO "status" VALUES(22,4,23,'2015-06-02 13:06:02'); +INSERT INTO "status" VALUES(22,4,23,'2015-06-02 13:07:02'); +INSERT INTO "status" VALUES(22,4,23,'2015-06-02 13:08:02'); +INSERT INTO "status" VALUES(22,4,23,'2015-06-02 13:09:02'); +INSERT INTO "status" VALUES(22,4,23,'2015-06-02 13:10:02'); +INSERT INTO "status" VALUES(22,4,23,'2015-06-02 13:11:02'); +INSERT INTO "status" VALUES(22,4,23,'2015-06-02 13:12:02'); +INSERT INTO "status" VALUES(22,4,23,'2015-06-02 13:13:03'); +INSERT INTO "status" VALUES(22,4,23,'2015-06-02 13:14:03'); +INSERT INTO "status" VALUES(22,4,23,'2015-06-02 13:15:02'); +INSERT INTO "status" VALUES(22,4,23,'2015-06-02 13:16:02'); +INSERT INTO "status" VALUES(22,4,23,'2015-06-02 13:17:02'); +INSERT INTO "status" VALUES(22,4,23,'2015-06-02 13:18:02'); +INSERT INTO "status" VALUES(22,4,23,'2015-06-02 13:19:02'); +INSERT INTO "status" VALUES(22,4,23,'2015-06-02 13:20:02'); +INSERT INTO "status" VALUES(22,4,23,'2015-06-02 13:21:02'); +INSERT INTO "status" VALUES(22,4,23,'2015-06-02 13:22:02'); +INSERT INTO "status" VALUES(22,4,23,'2015-06-02 13:23:02'); +INSERT INTO "status" VALUES(22,4,23,'2015-06-02 13:24:02'); +INSERT INTO "status" VALUES(22,4,23,'2015-06-02 13:25:02'); +INSERT INTO "status" VALUES(22,4,23,'2015-06-02 13:26:02'); +INSERT INTO "status" VALUES(22,4,23,'2015-06-02 13:27:02'); +INSERT INTO "status" VALUES(22,4,23,'2015-06-02 13:28:02'); +INSERT INTO "status" VALUES(22,4,23,'2015-06-02 13:29:02'); +INSERT INTO "status" VALUES(22,4,23,'2015-06-02 13:30:02'); +INSERT INTO "status" VALUES(22,4,23,'2015-06-02 13:31:02'); +INSERT INTO "status" VALUES(22,4,23,'2015-06-02 13:32:02'); +INSERT INTO "status" VALUES(22,4,23,'2015-06-02 13:33:02'); +INSERT INTO "status" VALUES(22,4,23,'2015-06-02 13:34:02'); +INSERT INTO "status" VALUES(22,4,23,'2015-06-02 13:35:02'); +INSERT INTO "status" VALUES(22,4,23,'2015-06-02 13:36:02'); +INSERT INTO "status" VALUES(22,4,23,'2015-06-02 13:37:02'); +INSERT INTO "status" VALUES(22,4,23,'2015-06-02 13:38:02'); +INSERT INTO "status" VALUES(22,4,23,'2015-06-02 13:39:02'); +INSERT INTO "status" VALUES(22,4,23,'2015-06-02 13:40:02'); +INSERT INTO "status" VALUES(22,4,23,'2015-06-02 13:41:03'); +INSERT INTO "status" VALUES(22,4,23,'2015-06-02 13:42:03'); +INSERT INTO "status" VALUES(22,4,23,'2015-06-02 13:43:03'); +INSERT INTO "status" VALUES(22,4,23,'2015-06-02 13:44:02'); +INSERT INTO "status" VALUES(22,4,23,'2015-06-02 13:45:03'); +INSERT INTO "status" VALUES(22,4,23,'2015-06-02 13:46:02'); +INSERT INTO "status" VALUES(22,4,23,'2015-06-02 13:47:02'); +INSERT INTO "status" VALUES(22,4,23,'2015-06-02 13:48:02'); +INSERT INTO "status" VALUES(22,4,23,'2015-06-02 13:49:02'); +INSERT INTO "status" VALUES(22,4,23,'2015-06-02 13:50:03'); +INSERT INTO "status" VALUES(22,4,23,'2015-06-02 13:51:02'); +INSERT INTO "status" VALUES(22,4,23,'2015-06-02 13:52:02'); +INSERT INTO "status" VALUES(22,4,23,'2015-06-02 13:53:02'); +INSERT INTO "status" VALUES(22,4,23,'2015-06-02 13:54:02'); +INSERT INTO "status" VALUES(22,4,23,'2015-06-02 13:55:03'); +INSERT INTO "status" VALUES(22,5,22,'2015-06-02 13:56:02'); +INSERT INTO "status" VALUES(22,5,22,'2015-06-02 13:57:02'); +INSERT INTO "status" VALUES(22,5,22,'2015-06-02 13:58:02'); +INSERT INTO "status" VALUES(22,5,22,'2015-06-02 13:59:02'); +INSERT INTO "status" VALUES(22,5,22,'2015-06-02 14:00:02'); +INSERT INTO "status" VALUES(22,5,22,'2015-06-02 14:01:02'); +INSERT INTO "status" VALUES(22,5,22,'2015-06-02 14:02:02'); +INSERT INTO "status" VALUES(22,5,22,'2015-06-02 14:03:02'); +INSERT INTO "status" VALUES(22,5,22,'2015-06-02 14:04:02'); +INSERT INTO "status" VALUES(22,5,22,'2015-06-02 14:05:02'); +INSERT INTO "status" VALUES(22,5,22,'2015-06-02 14:06:02'); +INSERT INTO "status" VALUES(22,5,22,'2015-06-02 14:07:02'); +INSERT INTO "status" VALUES(22,5,22,'2015-06-02 14:08:02'); +INSERT INTO "status" VALUES(22,5,22,'2015-06-02 14:09:02'); +INSERT INTO "status" VALUES(22,4,23,'2015-06-02 14:10:02'); +INSERT INTO "status" VALUES(22,4,23,'2015-06-02 14:11:02'); +INSERT INTO "status" VALUES(22,4,23,'2015-06-02 14:12:02'); +INSERT INTO "status" VALUES(22,4,23,'2015-06-02 14:13:02'); +INSERT INTO "status" VALUES(22,4,23,'2015-06-02 14:14:02'); +INSERT INTO "status" VALUES(22,4,23,'2015-06-02 14:15:02'); +INSERT INTO "status" VALUES(22,4,23,'2015-06-02 14:16:02'); +INSERT INTO "status" VALUES(22,4,23,'2015-06-02 14:17:02'); +INSERT INTO "status" VALUES(22,4,23,'2015-06-02 14:18:02'); +INSERT INTO "status" VALUES(22,4,23,'2015-06-02 14:19:02'); +INSERT INTO "status" VALUES(22,4,23,'2015-06-02 14:20:03'); +INSERT INTO "status" VALUES(22,4,23,'2015-06-02 14:21:02'); +INSERT INTO "status" VALUES(22,4,23,'2015-06-02 14:22:02'); +INSERT INTO "status" VALUES(22,4,23,'2015-06-02 14:23:03'); +INSERT INTO "status" VALUES(22,4,23,'2015-06-02 14:24:02'); +INSERT INTO "status" VALUES(22,4,23,'2015-06-02 14:25:01'); +INSERT INTO "status" VALUES(22,4,23,'2015-06-02 14:26:02'); +INSERT INTO "status" VALUES(22,4,23,'2015-06-02 14:27:02'); +INSERT INTO "status" VALUES(22,4,23,'2015-06-02 14:28:02'); +INSERT INTO "status" VALUES(22,4,23,'2015-06-02 14:29:02'); +INSERT INTO "status" VALUES(22,4,23,'2015-06-02 14:30:02'); +INSERT INTO "status" VALUES(22,4,23,'2015-06-02 14:31:02'); +INSERT INTO "status" VALUES(22,4,23,'2015-06-02 14:32:02'); +INSERT INTO "status" VALUES(22,4,23,'2015-06-02 14:33:02'); +INSERT INTO "status" VALUES(22,4,23,'2015-06-02 14:34:02'); +INSERT INTO "status" VALUES(22,4,23,'2015-06-02 14:35:02'); +INSERT INTO "status" VALUES(22,4,23,'2015-06-02 14:36:02'); +INSERT INTO "status" VALUES(22,4,23,'2015-06-02 14:37:02'); +INSERT INTO "status" VALUES(22,4,23,'2015-06-02 14:38:02'); +INSERT INTO "status" VALUES(22,4,23,'2015-06-02 14:39:02'); +INSERT INTO "status" VALUES(22,4,23,'2015-06-02 14:40:02'); +INSERT INTO "status" VALUES(22,4,23,'2015-06-02 14:41:02'); +INSERT INTO "status" VALUES(22,4,23,'2015-06-02 14:42:02'); +INSERT INTO "status" VALUES(22,4,23,'2015-06-02 14:43:02'); +INSERT INTO "status" VALUES(22,4,23,'2015-06-02 14:44:02'); +INSERT INTO "status" VALUES(22,4,23,'2015-06-02 14:45:02'); +INSERT INTO "status" VALUES(22,4,23,'2015-06-02 14:46:02'); +INSERT INTO "status" VALUES(22,4,23,'2015-06-02 14:47:02'); +INSERT INTO "status" VALUES(22,4,23,'2015-06-02 14:48:02'); +INSERT INTO "status" VALUES(23,6,9,'2015-06-02 12:46:02'); +INSERT INTO "status" VALUES(23,6,9,'2015-06-02 12:47:02'); +INSERT INTO "status" VALUES(23,6,9,'2015-06-02 12:48:02'); +INSERT INTO "status" VALUES(23,6,9,'2015-06-02 12:49:02'); +INSERT INTO "status" VALUES(23,6,9,'2015-06-02 12:50:02'); +INSERT INTO "status" VALUES(23,6,9,'2015-06-02 12:51:02'); +INSERT INTO "status" VALUES(23,5,10,'2015-06-02 12:52:02'); +INSERT INTO "status" VALUES(23,5,10,'2015-06-02 12:53:03'); +INSERT INTO "status" VALUES(23,5,10,'2015-06-02 12:54:02'); +INSERT INTO "status" VALUES(23,5,10,'2015-06-02 12:55:02'); +INSERT INTO "status" VALUES(23,5,10,'2015-06-02 12:56:01'); +INSERT INTO "status" VALUES(23,6,9,'2015-06-02 12:57:02'); +INSERT INTO "status" VALUES(23,6,9,'2015-06-02 12:58:02'); +INSERT INTO "status" VALUES(23,6,9,'2015-06-02 12:59:02'); +INSERT INTO "status" VALUES(23,6,9,'2015-06-02 13:00:01'); +INSERT INTO "status" VALUES(23,6,9,'2015-06-02 13:01:03'); +INSERT INTO "status" VALUES(23,5,10,'2015-06-02 13:02:02'); +INSERT INTO "status" VALUES(23,5,10,'2015-06-02 13:03:02'); +INSERT INTO "status" VALUES(23,5,10,'2015-06-02 13:04:02'); +INSERT INTO "status" VALUES(23,5,10,'2015-06-02 13:05:03'); +INSERT INTO "status" VALUES(23,5,10,'2015-06-02 13:06:02'); +INSERT INTO "status" VALUES(23,6,9,'2015-06-02 13:07:02'); +INSERT INTO "status" VALUES(23,6,9,'2015-06-02 13:08:02'); +INSERT INTO "status" VALUES(23,6,9,'2015-06-02 13:09:02'); +INSERT INTO "status" VALUES(23,6,9,'2015-06-02 13:10:02'); +INSERT INTO "status" VALUES(23,6,9,'2015-06-02 13:11:02'); +INSERT INTO "status" VALUES(23,6,9,'2015-06-02 13:12:02'); +INSERT INTO "status" VALUES(23,6,9,'2015-06-02 13:13:03'); +INSERT INTO "status" VALUES(23,6,9,'2015-06-02 13:14:03'); +INSERT INTO "status" VALUES(23,6,9,'2015-06-02 13:15:02'); +INSERT INTO "status" VALUES(23,6,9,'2015-06-02 13:16:02'); +INSERT INTO "status" VALUES(23,6,9,'2015-06-02 13:17:02'); +INSERT INTO "status" VALUES(23,6,9,'2015-06-02 13:18:02'); +INSERT INTO "status" VALUES(23,6,9,'2015-06-02 13:19:02'); +INSERT INTO "status" VALUES(23,6,9,'2015-06-02 13:20:02'); +INSERT INTO "status" VALUES(23,6,9,'2015-06-02 13:21:02'); +INSERT INTO "status" VALUES(23,6,9,'2015-06-02 13:22:02'); +INSERT INTO "status" VALUES(23,6,9,'2015-06-02 13:23:02'); +INSERT INTO "status" VALUES(23,6,9,'2015-06-02 13:24:02'); +INSERT INTO "status" VALUES(23,6,9,'2015-06-02 13:25:02'); +INSERT INTO "status" VALUES(23,6,9,'2015-06-02 13:26:02'); +INSERT INTO "status" VALUES(23,6,9,'2015-06-02 13:27:02'); +INSERT INTO "status" VALUES(23,6,9,'2015-06-02 13:28:02'); +INSERT INTO "status" VALUES(23,6,9,'2015-06-02 13:29:02'); +INSERT INTO "status" VALUES(23,6,9,'2015-06-02 13:30:02'); +INSERT INTO "status" VALUES(23,6,9,'2015-06-02 13:31:02'); +INSERT INTO "status" VALUES(23,6,9,'2015-06-02 13:32:02'); +INSERT INTO "status" VALUES(23,6,9,'2015-06-02 13:33:02'); +INSERT INTO "status" VALUES(23,6,9,'2015-06-02 13:34:02'); +INSERT INTO "status" VALUES(23,6,9,'2015-06-02 13:35:02'); +INSERT INTO "status" VALUES(23,6,9,'2015-06-02 13:36:02'); +INSERT INTO "status" VALUES(23,6,9,'2015-06-02 13:37:02'); +INSERT INTO "status" VALUES(23,6,9,'2015-06-02 13:38:02'); +INSERT INTO "status" VALUES(23,6,9,'2015-06-02 13:39:02'); +INSERT INTO "status" VALUES(23,6,9,'2015-06-02 13:40:02'); +INSERT INTO "status" VALUES(23,6,9,'2015-06-02 13:41:03'); +INSERT INTO "status" VALUES(23,6,9,'2015-06-02 13:42:03'); +INSERT INTO "status" VALUES(23,6,9,'2015-06-02 13:43:03'); +INSERT INTO "status" VALUES(23,6,9,'2015-06-02 13:44:02'); +INSERT INTO "status" VALUES(23,6,9,'2015-06-02 13:45:03'); +INSERT INTO "status" VALUES(23,6,9,'2015-06-02 13:46:02'); +INSERT INTO "status" VALUES(23,6,9,'2015-06-02 13:47:02'); +INSERT INTO "status" VALUES(23,6,9,'2015-06-02 13:48:02'); +INSERT INTO "status" VALUES(23,6,9,'2015-06-02 13:49:02'); +INSERT INTO "status" VALUES(23,6,9,'2015-06-02 13:50:03'); +INSERT INTO "status" VALUES(23,6,9,'2015-06-02 13:51:02'); +INSERT INTO "status" VALUES(23,5,10,'2015-06-02 13:52:02'); +INSERT INTO "status" VALUES(23,5,10,'2015-06-02 13:53:02'); +INSERT INTO "status" VALUES(23,5,10,'2015-06-02 13:54:02'); +INSERT INTO "status" VALUES(23,5,10,'2015-06-02 13:55:03'); +INSERT INTO "status" VALUES(23,5,10,'2015-06-02 13:56:02'); +INSERT INTO "status" VALUES(23,6,9,'2015-06-02 13:57:02'); +INSERT INTO "status" VALUES(23,6,9,'2015-06-02 13:58:02'); +INSERT INTO "status" VALUES(23,6,9,'2015-06-02 13:59:02'); +INSERT INTO "status" VALUES(23,6,9,'2015-06-02 14:00:02'); +INSERT INTO "status" VALUES(23,6,9,'2015-06-02 14:01:02'); +INSERT INTO "status" VALUES(23,6,9,'2015-06-02 14:02:02'); +INSERT INTO "status" VALUES(23,6,9,'2015-06-02 14:03:02'); +INSERT INTO "status" VALUES(23,6,9,'2015-06-02 14:04:02'); +INSERT INTO "status" VALUES(23,6,9,'2015-06-02 14:05:02'); +INSERT INTO "status" VALUES(23,6,9,'2015-06-02 14:06:02'); +INSERT INTO "status" VALUES(23,6,9,'2015-06-02 14:07:02'); +INSERT INTO "status" VALUES(23,6,9,'2015-06-02 14:08:02'); +INSERT INTO "status" VALUES(23,6,9,'2015-06-02 14:09:02'); +INSERT INTO "status" VALUES(23,6,9,'2015-06-02 14:10:02'); +INSERT INTO "status" VALUES(23,6,9,'2015-06-02 14:11:02'); +INSERT INTO "status" VALUES(23,6,9,'2015-06-02 14:12:02'); +INSERT INTO "status" VALUES(23,6,9,'2015-06-02 14:13:02'); +INSERT INTO "status" VALUES(23,6,9,'2015-06-02 14:14:02'); +INSERT INTO "status" VALUES(23,6,9,'2015-06-02 14:15:02'); +INSERT INTO "status" VALUES(23,6,9,'2015-06-02 14:16:02'); +INSERT INTO "status" VALUES(23,6,9,'2015-06-02 14:17:02'); +INSERT INTO "status" VALUES(23,6,9,'2015-06-02 14:18:02'); +INSERT INTO "status" VALUES(23,6,9,'2015-06-02 14:19:02'); +INSERT INTO "status" VALUES(23,6,9,'2015-06-02 14:20:03'); +INSERT INTO "status" VALUES(23,6,9,'2015-06-02 14:21:02'); +INSERT INTO "status" VALUES(23,5,10,'2015-06-02 14:22:02'); +INSERT INTO "status" VALUES(23,5,10,'2015-06-02 14:23:03'); +INSERT INTO "status" VALUES(23,5,10,'2015-06-02 14:24:02'); +INSERT INTO "status" VALUES(23,5,10,'2015-06-02 14:25:01'); +INSERT INTO "status" VALUES(23,5,10,'2015-06-02 14:26:02'); +INSERT INTO "status" VALUES(23,6,9,'2015-06-02 14:27:02'); +INSERT INTO "status" VALUES(23,6,9,'2015-06-02 14:28:02'); +INSERT INTO "status" VALUES(23,6,9,'2015-06-02 14:29:02'); +INSERT INTO "status" VALUES(23,6,9,'2015-06-02 14:30:02'); +INSERT INTO "status" VALUES(23,6,9,'2015-06-02 14:31:02'); +INSERT INTO "status" VALUES(23,6,9,'2015-06-02 14:32:02'); +INSERT INTO "status" VALUES(23,6,9,'2015-06-02 14:33:02'); +INSERT INTO "status" VALUES(23,6,9,'2015-06-02 14:34:02'); +INSERT INTO "status" VALUES(23,6,9,'2015-06-02 14:35:02'); +INSERT INTO "status" VALUES(23,6,9,'2015-06-02 14:36:02'); +INSERT INTO "status" VALUES(23,6,9,'2015-06-02 14:37:02'); +INSERT INTO "status" VALUES(23,6,9,'2015-06-02 14:38:02'); +INSERT INTO "status" VALUES(23,6,9,'2015-06-02 14:39:02'); +INSERT INTO "status" VALUES(23,6,9,'2015-06-02 14:40:02'); +INSERT INTO "status" VALUES(23,6,9,'2015-06-02 14:41:02'); +INSERT INTO "status" VALUES(23,6,9,'2015-06-02 14:42:02'); +INSERT INTO "status" VALUES(23,6,9,'2015-06-02 14:43:02'); +INSERT INTO "status" VALUES(23,6,9,'2015-06-02 14:44:02'); +INSERT INTO "status" VALUES(23,6,9,'2015-06-02 14:45:02'); +INSERT INTO "status" VALUES(23,6,9,'2015-06-02 14:46:02'); +INSERT INTO "status" VALUES(23,6,9,'2015-06-02 14:47:02'); +INSERT INTO "status" VALUES(23,6,9,'2015-06-02 14:48:02'); +INSERT INTO "status" VALUES(24,5,10,'2015-06-02 12:46:02'); +INSERT INTO "status" VALUES(24,5,10,'2015-06-02 12:47:02'); +INSERT INTO "status" VALUES(24,5,10,'2015-06-02 12:48:02'); +INSERT INTO "status" VALUES(24,5,10,'2015-06-02 12:49:02'); +INSERT INTO "status" VALUES(24,5,10,'2015-06-02 12:50:02'); +INSERT INTO "status" VALUES(24,5,10,'2015-06-02 12:51:02'); +INSERT INTO "status" VALUES(24,5,10,'2015-06-02 12:52:02'); +INSERT INTO "status" VALUES(24,5,10,'2015-06-02 12:53:03'); +INSERT INTO "status" VALUES(24,5,10,'2015-06-02 12:54:02'); +INSERT INTO "status" VALUES(24,5,10,'2015-06-02 12:55:02'); +INSERT INTO "status" VALUES(24,5,10,'2015-06-02 12:56:01'); +INSERT INTO "status" VALUES(24,5,10,'2015-06-02 12:57:02'); +INSERT INTO "status" VALUES(24,5,10,'2015-06-02 12:58:02'); +INSERT INTO "status" VALUES(24,5,10,'2015-06-02 12:59:02'); +INSERT INTO "status" VALUES(24,5,10,'2015-06-02 13:00:01'); +INSERT INTO "status" VALUES(24,5,10,'2015-06-02 13:01:03'); +INSERT INTO "status" VALUES(24,5,10,'2015-06-02 13:02:02'); +INSERT INTO "status" VALUES(24,5,10,'2015-06-02 13:03:02'); +INSERT INTO "status" VALUES(24,5,10,'2015-06-02 13:04:02'); +INSERT INTO "status" VALUES(24,5,10,'2015-06-02 13:05:03'); +INSERT INTO "status" VALUES(24,5,10,'2015-06-02 13:06:02'); +INSERT INTO "status" VALUES(24,5,10,'2015-06-02 13:07:02'); +INSERT INTO "status" VALUES(24,5,10,'2015-06-02 13:08:02'); +INSERT INTO "status" VALUES(24,5,10,'2015-06-02 13:09:02'); +INSERT INTO "status" VALUES(24,5,10,'2015-06-02 13:10:02'); +INSERT INTO "status" VALUES(24,5,10,'2015-06-02 13:11:02'); +INSERT INTO "status" VALUES(24,5,10,'2015-06-02 13:12:02'); +INSERT INTO "status" VALUES(24,5,10,'2015-06-02 13:13:03'); +INSERT INTO "status" VALUES(24,5,10,'2015-06-02 13:14:03'); +INSERT INTO "status" VALUES(24,5,10,'2015-06-02 13:15:02'); +INSERT INTO "status" VALUES(24,5,10,'2015-06-02 13:16:02'); +INSERT INTO "status" VALUES(24,5,10,'2015-06-02 13:17:02'); +INSERT INTO "status" VALUES(24,5,10,'2015-06-02 13:18:02'); +INSERT INTO "status" VALUES(24,5,10,'2015-06-02 13:19:02'); +INSERT INTO "status" VALUES(24,5,10,'2015-06-02 13:20:02'); +INSERT INTO "status" VALUES(24,5,10,'2015-06-02 13:21:02'); +INSERT INTO "status" VALUES(24,5,10,'2015-06-02 13:22:02'); +INSERT INTO "status" VALUES(24,5,10,'2015-06-02 13:23:02'); +INSERT INTO "status" VALUES(24,5,10,'2015-06-02 13:24:02'); +INSERT INTO "status" VALUES(24,5,10,'2015-06-02 13:25:02'); +INSERT INTO "status" VALUES(24,5,10,'2015-06-02 13:26:02'); +INSERT INTO "status" VALUES(24,5,10,'2015-06-02 13:27:02'); +INSERT INTO "status" VALUES(24,5,10,'2015-06-02 13:28:02'); +INSERT INTO "status" VALUES(24,5,10,'2015-06-02 13:29:02'); +INSERT INTO "status" VALUES(24,5,10,'2015-06-02 13:30:02'); +INSERT INTO "status" VALUES(24,5,10,'2015-06-02 13:31:02'); +INSERT INTO "status" VALUES(24,5,10,'2015-06-02 13:32:02'); +INSERT INTO "status" VALUES(24,5,10,'2015-06-02 13:33:02'); +INSERT INTO "status" VALUES(24,5,10,'2015-06-02 13:34:02'); +INSERT INTO "status" VALUES(24,5,10,'2015-06-02 13:35:02'); +INSERT INTO "status" VALUES(24,5,10,'2015-06-02 13:36:02'); +INSERT INTO "status" VALUES(24,5,10,'2015-06-02 13:37:02'); +INSERT INTO "status" VALUES(24,5,10,'2015-06-02 13:38:02'); +INSERT INTO "status" VALUES(24,5,10,'2015-06-02 13:39:02'); +INSERT INTO "status" VALUES(24,5,10,'2015-06-02 13:40:02'); +INSERT INTO "status" VALUES(24,5,10,'2015-06-02 13:41:03'); +INSERT INTO "status" VALUES(24,5,10,'2015-06-02 13:42:03'); +INSERT INTO "status" VALUES(24,5,10,'2015-06-02 13:43:03'); +INSERT INTO "status" VALUES(24,5,10,'2015-06-02 13:44:02'); +INSERT INTO "status" VALUES(24,5,10,'2015-06-02 13:45:03'); +INSERT INTO "status" VALUES(24,5,10,'2015-06-02 13:46:02'); +INSERT INTO "status" VALUES(24,5,10,'2015-06-02 13:47:02'); +INSERT INTO "status" VALUES(24,5,10,'2015-06-02 13:48:02'); +INSERT INTO "status" VALUES(24,5,10,'2015-06-02 13:49:02'); +INSERT INTO "status" VALUES(24,5,10,'2015-06-02 13:50:03'); +INSERT INTO "status" VALUES(24,5,10,'2015-06-02 13:51:02'); +INSERT INTO "status" VALUES(24,5,10,'2015-06-02 13:52:02'); +INSERT INTO "status" VALUES(24,5,10,'2015-06-02 13:53:02'); +INSERT INTO "status" VALUES(24,5,10,'2015-06-02 13:54:02'); +INSERT INTO "status" VALUES(24,5,10,'2015-06-02 13:55:03'); +INSERT INTO "status" VALUES(24,5,10,'2015-06-02 13:56:02'); +INSERT INTO "status" VALUES(24,5,10,'2015-06-02 13:57:02'); +INSERT INTO "status" VALUES(24,5,10,'2015-06-02 13:58:02'); +INSERT INTO "status" VALUES(24,5,10,'2015-06-02 13:59:02'); +INSERT INTO "status" VALUES(24,5,10,'2015-06-02 14:00:02'); +INSERT INTO "status" VALUES(24,5,10,'2015-06-02 14:01:02'); +INSERT INTO "status" VALUES(24,5,10,'2015-06-02 14:02:02'); +INSERT INTO "status" VALUES(24,5,10,'2015-06-02 14:03:02'); +INSERT INTO "status" VALUES(24,5,10,'2015-06-02 14:04:02'); +INSERT INTO "status" VALUES(24,5,10,'2015-06-02 14:05:02'); +INSERT INTO "status" VALUES(24,5,10,'2015-06-02 14:06:02'); +INSERT INTO "status" VALUES(24,5,10,'2015-06-02 14:07:02'); +INSERT INTO "status" VALUES(24,5,10,'2015-06-02 14:08:02'); +INSERT INTO "status" VALUES(24,5,10,'2015-06-02 14:09:02'); +INSERT INTO "status" VALUES(24,5,10,'2015-06-02 14:10:02'); +INSERT INTO "status" VALUES(24,5,10,'2015-06-02 14:11:02'); +INSERT INTO "status" VALUES(24,5,10,'2015-06-02 14:12:02'); +INSERT INTO "status" VALUES(24,5,10,'2015-06-02 14:13:02'); +INSERT INTO "status" VALUES(24,5,10,'2015-06-02 14:14:02'); +INSERT INTO "status" VALUES(24,5,10,'2015-06-02 14:15:02'); +INSERT INTO "status" VALUES(24,5,10,'2015-06-02 14:16:02'); +INSERT INTO "status" VALUES(24,5,10,'2015-06-02 14:17:02'); +INSERT INTO "status" VALUES(24,5,10,'2015-06-02 14:18:02'); +INSERT INTO "status" VALUES(24,5,10,'2015-06-02 14:19:02'); +INSERT INTO "status" VALUES(24,5,10,'2015-06-02 14:20:03'); +INSERT INTO "status" VALUES(24,5,10,'2015-06-02 14:21:02'); +INSERT INTO "status" VALUES(24,5,10,'2015-06-02 14:22:02'); +INSERT INTO "status" VALUES(24,5,10,'2015-06-02 14:23:03'); +INSERT INTO "status" VALUES(24,5,10,'2015-06-02 14:24:02'); +INSERT INTO "status" VALUES(24,5,10,'2015-06-02 14:25:01'); +INSERT INTO "status" VALUES(24,5,10,'2015-06-02 14:26:02'); +INSERT INTO "status" VALUES(24,5,10,'2015-06-02 14:27:02'); +INSERT INTO "status" VALUES(24,5,10,'2015-06-02 14:28:02'); +INSERT INTO "status" VALUES(24,5,10,'2015-06-02 14:29:02'); +INSERT INTO "status" VALUES(24,5,10,'2015-06-02 14:30:02'); +INSERT INTO "status" VALUES(24,5,10,'2015-06-02 14:31:02'); +INSERT INTO "status" VALUES(24,5,10,'2015-06-02 14:32:02'); +INSERT INTO "status" VALUES(24,5,10,'2015-06-02 14:33:02'); +INSERT INTO "status" VALUES(24,5,10,'2015-06-02 14:34:02'); +INSERT INTO "status" VALUES(24,5,10,'2015-06-02 14:35:02'); +INSERT INTO "status" VALUES(24,5,10,'2015-06-02 14:36:02'); +INSERT INTO "status" VALUES(24,5,10,'2015-06-02 14:37:02'); +INSERT INTO "status" VALUES(24,5,10,'2015-06-02 14:38:02'); +INSERT INTO "status" VALUES(24,5,10,'2015-06-02 14:39:02'); +INSERT INTO "status" VALUES(24,5,10,'2015-06-02 14:40:02'); +INSERT INTO "status" VALUES(24,5,10,'2015-06-02 14:41:02'); +INSERT INTO "status" VALUES(24,5,10,'2015-06-02 14:42:02'); +INSERT INTO "status" VALUES(24,5,10,'2015-06-02 14:43:02'); +INSERT INTO "status" VALUES(24,5,10,'2015-06-02 14:44:02'); +INSERT INTO "status" VALUES(24,5,10,'2015-06-02 14:45:02'); +INSERT INTO "status" VALUES(24,5,10,'2015-06-02 14:46:02'); +INSERT INTO "status" VALUES(24,5,10,'2015-06-02 14:47:02'); +INSERT INTO "status" VALUES(24,5,10,'2015-06-02 14:48:02'); +INSERT INTO "status" VALUES(25,9,6,'2015-06-02 12:46:02'); +INSERT INTO "status" VALUES(25,9,6,'2015-06-02 12:47:02'); +INSERT INTO "status" VALUES(25,9,6,'2015-06-02 12:48:02'); +INSERT INTO "status" VALUES(25,9,6,'2015-06-02 12:49:02'); +INSERT INTO "status" VALUES(25,9,6,'2015-06-02 12:50:02'); +INSERT INTO "status" VALUES(25,9,6,'2015-06-02 12:51:02'); +INSERT INTO "status" VALUES(25,10,5,'2015-06-02 12:52:02'); +INSERT INTO "status" VALUES(25,10,5,'2015-06-02 12:53:03'); +INSERT INTO "status" VALUES(25,10,5,'2015-06-02 12:54:02'); +INSERT INTO "status" VALUES(25,10,5,'2015-06-02 12:55:02'); +INSERT INTO "status" VALUES(25,10,5,'2015-06-02 12:56:01'); +INSERT INTO "status" VALUES(25,10,5,'2015-06-02 12:57:02'); +INSERT INTO "status" VALUES(25,10,5,'2015-06-02 12:58:02'); +INSERT INTO "status" VALUES(25,10,5,'2015-06-02 12:59:02'); +INSERT INTO "status" VALUES(25,10,5,'2015-06-02 13:00:01'); +INSERT INTO "status" VALUES(25,10,5,'2015-06-02 13:01:03'); +INSERT INTO "status" VALUES(25,10,5,'2015-06-02 13:02:02'); +INSERT INTO "status" VALUES(25,10,5,'2015-06-02 13:03:02'); +INSERT INTO "status" VALUES(25,10,5,'2015-06-02 13:04:02'); +INSERT INTO "status" VALUES(25,10,5,'2015-06-02 13:05:03'); +INSERT INTO "status" VALUES(25,10,5,'2015-06-02 13:06:02'); +INSERT INTO "status" VALUES(25,10,5,'2015-06-02 13:07:02'); +INSERT INTO "status" VALUES(25,10,5,'2015-06-02 13:08:02'); +INSERT INTO "status" VALUES(25,10,5,'2015-06-02 13:09:02'); +INSERT INTO "status" VALUES(25,10,5,'2015-06-02 13:10:02'); +INSERT INTO "status" VALUES(25,10,5,'2015-06-02 13:11:02'); +INSERT INTO "status" VALUES(25,10,5,'2015-06-02 13:12:02'); +INSERT INTO "status" VALUES(25,10,5,'2015-06-02 13:13:03'); +INSERT INTO "status" VALUES(25,10,5,'2015-06-02 13:14:03'); +INSERT INTO "status" VALUES(25,10,5,'2015-06-02 13:15:02'); +INSERT INTO "status" VALUES(25,10,5,'2015-06-02 13:16:02'); +INSERT INTO "status" VALUES(25,10,5,'2015-06-02 13:17:02'); +INSERT INTO "status" VALUES(25,10,5,'2015-06-02 13:18:02'); +INSERT INTO "status" VALUES(25,10,5,'2015-06-02 13:19:02'); +INSERT INTO "status" VALUES(25,10,5,'2015-06-02 13:20:02'); +INSERT INTO "status" VALUES(25,10,5,'2015-06-02 13:21:02'); +INSERT INTO "status" VALUES(25,10,5,'2015-06-02 13:22:02'); +INSERT INTO "status" VALUES(25,10,5,'2015-06-02 13:23:02'); +INSERT INTO "status" VALUES(25,10,5,'2015-06-02 13:24:02'); +INSERT INTO "status" VALUES(25,10,5,'2015-06-02 13:25:02'); +INSERT INTO "status" VALUES(25,10,5,'2015-06-02 13:26:02'); +INSERT INTO "status" VALUES(25,10,5,'2015-06-02 13:27:02'); +INSERT INTO "status" VALUES(25,10,5,'2015-06-02 13:28:02'); +INSERT INTO "status" VALUES(25,10,5,'2015-06-02 13:29:02'); +INSERT INTO "status" VALUES(25,10,5,'2015-06-02 13:30:02'); +INSERT INTO "status" VALUES(25,10,5,'2015-06-02 13:31:02'); +INSERT INTO "status" VALUES(25,10,5,'2015-06-02 13:32:02'); +INSERT INTO "status" VALUES(25,10,5,'2015-06-02 13:33:02'); +INSERT INTO "status" VALUES(25,10,5,'2015-06-02 13:34:02'); +INSERT INTO "status" VALUES(25,10,5,'2015-06-02 13:35:02'); +INSERT INTO "status" VALUES(25,10,5,'2015-06-02 13:36:02'); +INSERT INTO "status" VALUES(25,10,5,'2015-06-02 13:37:02'); +INSERT INTO "status" VALUES(25,10,5,'2015-06-02 13:38:02'); +INSERT INTO "status" VALUES(25,10,5,'2015-06-02 13:39:02'); +INSERT INTO "status" VALUES(25,10,5,'2015-06-02 13:40:02'); +INSERT INTO "status" VALUES(25,10,5,'2015-06-02 13:41:03'); +INSERT INTO "status" VALUES(25,10,5,'2015-06-02 13:42:03'); +INSERT INTO "status" VALUES(25,10,5,'2015-06-02 13:43:03'); +INSERT INTO "status" VALUES(25,10,5,'2015-06-02 13:44:02'); +INSERT INTO "status" VALUES(25,10,5,'2015-06-02 13:45:03'); +INSERT INTO "status" VALUES(25,10,5,'2015-06-02 13:46:02'); +INSERT INTO "status" VALUES(25,10,5,'2015-06-02 13:47:02'); +INSERT INTO "status" VALUES(25,10,5,'2015-06-02 13:48:02'); +INSERT INTO "status" VALUES(25,10,5,'2015-06-02 13:49:02'); +INSERT INTO "status" VALUES(25,10,5,'2015-06-02 13:50:03'); +INSERT INTO "status" VALUES(25,10,5,'2015-06-02 13:51:02'); +INSERT INTO "status" VALUES(25,10,5,'2015-06-02 13:52:02'); +INSERT INTO "status" VALUES(25,10,5,'2015-06-02 13:53:02'); +INSERT INTO "status" VALUES(25,10,5,'2015-06-02 13:54:02'); +INSERT INTO "status" VALUES(25,10,5,'2015-06-02 13:55:03'); +INSERT INTO "status" VALUES(25,10,5,'2015-06-02 13:56:02'); +INSERT INTO "status" VALUES(25,10,5,'2015-06-02 13:57:02'); +INSERT INTO "status" VALUES(25,10,5,'2015-06-02 13:58:02'); +INSERT INTO "status" VALUES(25,10,5,'2015-06-02 13:59:02'); +INSERT INTO "status" VALUES(25,10,5,'2015-06-02 14:00:02'); +INSERT INTO "status" VALUES(25,10,5,'2015-06-02 14:01:02'); +INSERT INTO "status" VALUES(25,10,5,'2015-06-02 14:02:02'); +INSERT INTO "status" VALUES(25,10,5,'2015-06-02 14:03:02'); +INSERT INTO "status" VALUES(25,10,5,'2015-06-02 14:04:02'); +INSERT INTO "status" VALUES(25,10,5,'2015-06-02 14:05:02'); +INSERT INTO "status" VALUES(25,10,5,'2015-06-02 14:06:02'); +INSERT INTO "status" VALUES(25,10,5,'2015-06-02 14:07:02'); +INSERT INTO "status" VALUES(25,10,5,'2015-06-02 14:08:02'); +INSERT INTO "status" VALUES(25,10,5,'2015-06-02 14:09:02'); +INSERT INTO "status" VALUES(25,10,5,'2015-06-02 14:10:02'); +INSERT INTO "status" VALUES(25,10,5,'2015-06-02 14:11:02'); +INSERT INTO "status" VALUES(25,10,5,'2015-06-02 14:12:02'); +INSERT INTO "status" VALUES(25,10,5,'2015-06-02 14:13:02'); +INSERT INTO "status" VALUES(25,10,5,'2015-06-02 14:14:02'); +INSERT INTO "status" VALUES(25,10,5,'2015-06-02 14:15:02'); +INSERT INTO "status" VALUES(25,10,5,'2015-06-02 14:16:02'); +INSERT INTO "status" VALUES(25,10,5,'2015-06-02 14:17:02'); +INSERT INTO "status" VALUES(25,10,5,'2015-06-02 14:18:02'); +INSERT INTO "status" VALUES(25,10,5,'2015-06-02 14:19:02'); +INSERT INTO "status" VALUES(25,10,5,'2015-06-02 14:20:03'); +INSERT INTO "status" VALUES(25,10,5,'2015-06-02 14:21:02'); +INSERT INTO "status" VALUES(25,10,5,'2015-06-02 14:22:02'); +INSERT INTO "status" VALUES(25,10,5,'2015-06-02 14:23:03'); +INSERT INTO "status" VALUES(25,10,5,'2015-06-02 14:24:02'); +INSERT INTO "status" VALUES(25,10,5,'2015-06-02 14:25:01'); +INSERT INTO "status" VALUES(25,10,5,'2015-06-02 14:26:02'); +INSERT INTO "status" VALUES(25,10,5,'2015-06-02 14:27:02'); +INSERT INTO "status" VALUES(25,10,5,'2015-06-02 14:28:02'); +INSERT INTO "status" VALUES(25,10,5,'2015-06-02 14:29:02'); +INSERT INTO "status" VALUES(25,10,5,'2015-06-02 14:30:02'); +INSERT INTO "status" VALUES(25,10,5,'2015-06-02 14:31:02'); +INSERT INTO "status" VALUES(25,10,5,'2015-06-02 14:32:02'); +INSERT INTO "status" VALUES(25,10,5,'2015-06-02 14:33:02'); +INSERT INTO "status" VALUES(25,10,5,'2015-06-02 14:34:02'); +INSERT INTO "status" VALUES(25,10,5,'2015-06-02 14:35:02'); +INSERT INTO "status" VALUES(25,10,5,'2015-06-02 14:36:02'); +INSERT INTO "status" VALUES(25,10,5,'2015-06-02 14:37:02'); +INSERT INTO "status" VALUES(25,10,5,'2015-06-02 14:38:02'); +INSERT INTO "status" VALUES(25,10,5,'2015-06-02 14:39:02'); +INSERT INTO "status" VALUES(25,10,5,'2015-06-02 14:40:02'); +INSERT INTO "status" VALUES(25,10,5,'2015-06-02 14:41:02'); +INSERT INTO "status" VALUES(25,10,5,'2015-06-02 14:42:02'); +INSERT INTO "status" VALUES(25,10,5,'2015-06-02 14:43:02'); +INSERT INTO "status" VALUES(25,10,5,'2015-06-02 14:44:02'); +INSERT INTO "status" VALUES(25,10,5,'2015-06-02 14:45:02'); +INSERT INTO "status" VALUES(25,10,5,'2015-06-02 14:46:02'); +INSERT INTO "status" VALUES(25,10,5,'2015-06-02 14:47:02'); +INSERT INTO "status" VALUES(25,10,5,'2015-06-02 14:48:02'); +INSERT INTO "status" VALUES(26,3,12,'2015-06-02 12:46:02'); +INSERT INTO "status" VALUES(26,3,12,'2015-06-02 12:47:02'); +INSERT INTO "status" VALUES(26,3,12,'2015-06-02 12:48:02'); +INSERT INTO "status" VALUES(26,3,12,'2015-06-02 12:49:02'); +INSERT INTO "status" VALUES(26,3,12,'2015-06-02 12:50:02'); +INSERT INTO "status" VALUES(26,3,12,'2015-06-02 12:51:02'); +INSERT INTO "status" VALUES(26,3,12,'2015-06-02 12:52:02'); +INSERT INTO "status" VALUES(26,3,12,'2015-06-02 12:53:03'); +INSERT INTO "status" VALUES(26,3,12,'2015-06-02 12:54:02'); +INSERT INTO "status" VALUES(26,3,12,'2015-06-02 12:55:02'); +INSERT INTO "status" VALUES(26,3,12,'2015-06-02 12:56:01'); +INSERT INTO "status" VALUES(26,3,12,'2015-06-02 12:57:02'); +INSERT INTO "status" VALUES(26,3,12,'2015-06-02 12:58:02'); +INSERT INTO "status" VALUES(26,3,12,'2015-06-02 12:59:02'); +INSERT INTO "status" VALUES(26,3,12,'2015-06-02 13:00:01'); +INSERT INTO "status" VALUES(26,3,12,'2015-06-02 13:01:03'); +INSERT INTO "status" VALUES(26,3,12,'2015-06-02 13:02:02'); +INSERT INTO "status" VALUES(26,3,12,'2015-06-02 13:03:02'); +INSERT INTO "status" VALUES(26,3,12,'2015-06-02 13:04:02'); +INSERT INTO "status" VALUES(26,3,12,'2015-06-02 13:05:03'); +INSERT INTO "status" VALUES(26,3,12,'2015-06-02 13:06:02'); +INSERT INTO "status" VALUES(26,3,12,'2015-06-02 13:07:02'); +INSERT INTO "status" VALUES(26,3,12,'2015-06-02 13:08:02'); +INSERT INTO "status" VALUES(26,3,12,'2015-06-02 13:09:02'); +INSERT INTO "status" VALUES(26,3,12,'2015-06-02 13:10:02'); +INSERT INTO "status" VALUES(26,3,12,'2015-06-02 13:11:02'); +INSERT INTO "status" VALUES(26,3,12,'2015-06-02 13:12:02'); +INSERT INTO "status" VALUES(26,3,12,'2015-06-02 13:13:03'); +INSERT INTO "status" VALUES(26,3,12,'2015-06-02 13:14:03'); +INSERT INTO "status" VALUES(26,3,12,'2015-06-02 13:15:02'); +INSERT INTO "status" VALUES(26,3,12,'2015-06-02 13:16:02'); +INSERT INTO "status" VALUES(26,3,12,'2015-06-02 13:17:02'); +INSERT INTO "status" VALUES(26,3,12,'2015-06-02 13:18:02'); +INSERT INTO "status" VALUES(26,3,12,'2015-06-02 13:19:02'); +INSERT INTO "status" VALUES(26,3,12,'2015-06-02 13:20:02'); +INSERT INTO "status" VALUES(26,3,12,'2015-06-02 13:21:02'); +INSERT INTO "status" VALUES(26,3,12,'2015-06-02 13:22:02'); +INSERT INTO "status" VALUES(26,3,12,'2015-06-02 13:23:02'); +INSERT INTO "status" VALUES(26,3,12,'2015-06-02 13:24:02'); +INSERT INTO "status" VALUES(26,3,12,'2015-06-02 13:25:02'); +INSERT INTO "status" VALUES(26,3,12,'2015-06-02 13:26:02'); +INSERT INTO "status" VALUES(26,3,12,'2015-06-02 13:27:02'); +INSERT INTO "status" VALUES(26,3,12,'2015-06-02 13:28:02'); +INSERT INTO "status" VALUES(26,3,12,'2015-06-02 13:29:02'); +INSERT INTO "status" VALUES(26,3,12,'2015-06-02 13:30:02'); +INSERT INTO "status" VALUES(26,3,12,'2015-06-02 13:31:02'); +INSERT INTO "status" VALUES(26,3,12,'2015-06-02 13:32:02'); +INSERT INTO "status" VALUES(26,3,12,'2015-06-02 13:33:02'); +INSERT INTO "status" VALUES(26,3,12,'2015-06-02 13:34:02'); +INSERT INTO "status" VALUES(26,3,12,'2015-06-02 13:35:02'); +INSERT INTO "status" VALUES(26,3,12,'2015-06-02 13:36:02'); +INSERT INTO "status" VALUES(26,3,12,'2015-06-02 13:37:02'); +INSERT INTO "status" VALUES(26,3,12,'2015-06-02 13:38:02'); +INSERT INTO "status" VALUES(26,3,12,'2015-06-02 13:39:02'); +INSERT INTO "status" VALUES(26,3,12,'2015-06-02 13:40:02'); +INSERT INTO "status" VALUES(26,3,12,'2015-06-02 13:41:03'); +INSERT INTO "status" VALUES(26,3,12,'2015-06-02 13:42:03'); +INSERT INTO "status" VALUES(26,3,12,'2015-06-02 13:43:03'); +INSERT INTO "status" VALUES(26,3,12,'2015-06-02 13:44:02'); +INSERT INTO "status" VALUES(26,3,12,'2015-06-02 13:45:03'); +INSERT INTO "status" VALUES(26,3,12,'2015-06-02 13:46:02'); +INSERT INTO "status" VALUES(26,3,12,'2015-06-02 13:47:02'); +INSERT INTO "status" VALUES(26,3,12,'2015-06-02 13:48:02'); +INSERT INTO "status" VALUES(26,3,12,'2015-06-02 13:49:02'); +INSERT INTO "status" VALUES(26,3,12,'2015-06-02 13:50:03'); +INSERT INTO "status" VALUES(26,3,12,'2015-06-02 13:51:02'); +INSERT INTO "status" VALUES(26,3,12,'2015-06-02 13:52:02'); +INSERT INTO "status" VALUES(26,3,12,'2015-06-02 13:53:02'); +INSERT INTO "status" VALUES(26,3,12,'2015-06-02 13:54:02'); +INSERT INTO "status" VALUES(26,3,12,'2015-06-02 13:55:03'); +INSERT INTO "status" VALUES(26,3,12,'2015-06-02 13:56:02'); +INSERT INTO "status" VALUES(26,3,12,'2015-06-02 13:57:02'); +INSERT INTO "status" VALUES(26,3,12,'2015-06-02 13:58:02'); +INSERT INTO "status" VALUES(26,3,12,'2015-06-02 13:59:02'); +INSERT INTO "status" VALUES(26,3,12,'2015-06-02 14:00:02'); +INSERT INTO "status" VALUES(26,3,12,'2015-06-02 14:01:02'); +INSERT INTO "status" VALUES(26,3,12,'2015-06-02 14:02:02'); +INSERT INTO "status" VALUES(26,3,12,'2015-06-02 14:03:02'); +INSERT INTO "status" VALUES(26,3,12,'2015-06-02 14:04:02'); +INSERT INTO "status" VALUES(26,3,12,'2015-06-02 14:05:02'); +INSERT INTO "status" VALUES(26,3,12,'2015-06-02 14:06:02'); +INSERT INTO "status" VALUES(26,3,12,'2015-06-02 14:07:02'); +INSERT INTO "status" VALUES(26,3,12,'2015-06-02 14:08:02'); +INSERT INTO "status" VALUES(26,3,12,'2015-06-02 14:09:02'); +INSERT INTO "status" VALUES(26,3,12,'2015-06-02 14:10:02'); +INSERT INTO "status" VALUES(26,3,12,'2015-06-02 14:11:02'); +INSERT INTO "status" VALUES(26,3,12,'2015-06-02 14:12:02'); +INSERT INTO "status" VALUES(26,3,12,'2015-06-02 14:13:02'); +INSERT INTO "status" VALUES(26,3,12,'2015-06-02 14:14:02'); +INSERT INTO "status" VALUES(26,3,12,'2015-06-02 14:15:02'); +INSERT INTO "status" VALUES(26,3,12,'2015-06-02 14:16:02'); +INSERT INTO "status" VALUES(26,3,12,'2015-06-02 14:17:02'); +INSERT INTO "status" VALUES(26,3,12,'2015-06-02 14:18:02'); +INSERT INTO "status" VALUES(26,3,12,'2015-06-02 14:19:02'); +INSERT INTO "status" VALUES(26,3,12,'2015-06-02 14:20:03'); +INSERT INTO "status" VALUES(26,3,12,'2015-06-02 14:21:02'); +INSERT INTO "status" VALUES(26,3,12,'2015-06-02 14:22:02'); +INSERT INTO "status" VALUES(26,3,12,'2015-06-02 14:23:03'); +INSERT INTO "status" VALUES(26,3,12,'2015-06-02 14:24:02'); +INSERT INTO "status" VALUES(26,3,12,'2015-06-02 14:25:01'); +INSERT INTO "status" VALUES(26,3,12,'2015-06-02 14:26:02'); +INSERT INTO "status" VALUES(26,3,12,'2015-06-02 14:27:02'); +INSERT INTO "status" VALUES(26,3,12,'2015-06-02 14:28:02'); +INSERT INTO "status" VALUES(26,3,12,'2015-06-02 14:29:02'); +INSERT INTO "status" VALUES(26,3,12,'2015-06-02 14:30:02'); +INSERT INTO "status" VALUES(26,3,12,'2015-06-02 14:31:02'); +INSERT INTO "status" VALUES(26,3,12,'2015-06-02 14:32:02'); +INSERT INTO "status" VALUES(26,3,12,'2015-06-02 14:33:02'); +INSERT INTO "status" VALUES(26,3,12,'2015-06-02 14:34:02'); +INSERT INTO "status" VALUES(26,3,12,'2015-06-02 14:35:02'); +INSERT INTO "status" VALUES(26,3,12,'2015-06-02 14:36:02'); +INSERT INTO "status" VALUES(26,3,12,'2015-06-02 14:37:02'); +INSERT INTO "status" VALUES(26,3,12,'2015-06-02 14:38:02'); +INSERT INTO "status" VALUES(26,3,12,'2015-06-02 14:39:02'); +INSERT INTO "status" VALUES(26,3,12,'2015-06-02 14:40:02'); +INSERT INTO "status" VALUES(26,3,12,'2015-06-02 14:41:02'); +INSERT INTO "status" VALUES(26,3,12,'2015-06-02 14:42:02'); +INSERT INTO "status" VALUES(26,3,12,'2015-06-02 14:43:02'); +INSERT INTO "status" VALUES(26,3,12,'2015-06-02 14:44:02'); +INSERT INTO "status" VALUES(26,3,12,'2015-06-02 14:45:02'); +INSERT INTO "status" VALUES(26,3,12,'2015-06-02 14:46:02'); +INSERT INTO "status" VALUES(26,3,12,'2015-06-02 14:47:02'); +INSERT INTO "status" VALUES(26,3,12,'2015-06-02 14:48:02'); +INSERT INTO "status" VALUES(27,9,6,'2015-06-02 12:46:02'); +INSERT INTO "status" VALUES(27,9,6,'2015-06-02 12:47:02'); +INSERT INTO "status" VALUES(27,9,6,'2015-06-02 12:48:02'); +INSERT INTO "status" VALUES(27,9,6,'2015-06-02 12:49:02'); +INSERT INTO "status" VALUES(27,9,6,'2015-06-02 12:50:02'); +INSERT INTO "status" VALUES(27,9,6,'2015-06-02 12:51:02'); +INSERT INTO "status" VALUES(27,9,6,'2015-06-02 12:52:02'); +INSERT INTO "status" VALUES(27,9,6,'2015-06-02 12:53:03'); +INSERT INTO "status" VALUES(27,9,6,'2015-06-02 12:54:02'); +INSERT INTO "status" VALUES(27,9,6,'2015-06-02 12:55:02'); +INSERT INTO "status" VALUES(27,9,6,'2015-06-02 12:56:01'); +INSERT INTO "status" VALUES(27,9,6,'2015-06-02 12:57:02'); +INSERT INTO "status" VALUES(27,9,6,'2015-06-02 12:58:02'); +INSERT INTO "status" VALUES(27,9,6,'2015-06-02 12:59:02'); +INSERT INTO "status" VALUES(27,9,6,'2015-06-02 13:00:01'); +INSERT INTO "status" VALUES(27,9,6,'2015-06-02 13:01:03'); +INSERT INTO "status" VALUES(27,9,6,'2015-06-02 13:02:02'); +INSERT INTO "status" VALUES(27,9,6,'2015-06-02 13:03:02'); +INSERT INTO "status" VALUES(27,9,6,'2015-06-02 13:04:02'); +INSERT INTO "status" VALUES(27,9,6,'2015-06-02 13:05:03'); +INSERT INTO "status" VALUES(27,9,6,'2015-06-02 13:06:02'); +INSERT INTO "status" VALUES(27,9,6,'2015-06-02 13:07:02'); +INSERT INTO "status" VALUES(27,9,6,'2015-06-02 13:08:02'); +INSERT INTO "status" VALUES(27,9,6,'2015-06-02 13:09:02'); +INSERT INTO "status" VALUES(27,9,6,'2015-06-02 13:10:02'); +INSERT INTO "status" VALUES(27,9,6,'2015-06-02 13:11:02'); +INSERT INTO "status" VALUES(27,9,6,'2015-06-02 13:12:02'); +INSERT INTO "status" VALUES(27,9,6,'2015-06-02 13:13:03'); +INSERT INTO "status" VALUES(27,9,6,'2015-06-02 13:14:03'); +INSERT INTO "status" VALUES(27,9,6,'2015-06-02 13:15:02'); +INSERT INTO "status" VALUES(27,9,6,'2015-06-02 13:16:02'); +INSERT INTO "status" VALUES(27,9,6,'2015-06-02 13:17:02'); +INSERT INTO "status" VALUES(27,9,6,'2015-06-02 13:18:02'); +INSERT INTO "status" VALUES(27,9,6,'2015-06-02 13:19:02'); +INSERT INTO "status" VALUES(27,9,6,'2015-06-02 13:20:02'); +INSERT INTO "status" VALUES(27,9,6,'2015-06-02 13:21:02'); +INSERT INTO "status" VALUES(27,9,6,'2015-06-02 13:22:02'); +INSERT INTO "status" VALUES(27,9,6,'2015-06-02 13:23:02'); +INSERT INTO "status" VALUES(27,9,6,'2015-06-02 13:24:02'); +INSERT INTO "status" VALUES(27,9,6,'2015-06-02 13:25:02'); +INSERT INTO "status" VALUES(27,9,6,'2015-06-02 13:26:02'); +INSERT INTO "status" VALUES(27,9,6,'2015-06-02 13:27:02'); +INSERT INTO "status" VALUES(27,9,6,'2015-06-02 13:28:02'); +INSERT INTO "status" VALUES(27,9,6,'2015-06-02 13:29:02'); +INSERT INTO "status" VALUES(27,9,6,'2015-06-02 13:30:02'); +INSERT INTO "status" VALUES(27,9,6,'2015-06-02 13:31:02'); +INSERT INTO "status" VALUES(27,9,6,'2015-06-02 13:32:02'); +INSERT INTO "status" VALUES(27,9,6,'2015-06-02 13:33:02'); +INSERT INTO "status" VALUES(27,9,6,'2015-06-02 13:34:02'); +INSERT INTO "status" VALUES(27,9,6,'2015-06-02 13:35:02'); +INSERT INTO "status" VALUES(27,9,6,'2015-06-02 13:36:02'); +INSERT INTO "status" VALUES(27,9,6,'2015-06-02 13:37:02'); +INSERT INTO "status" VALUES(27,9,6,'2015-06-02 13:38:02'); +INSERT INTO "status" VALUES(27,9,6,'2015-06-02 13:39:02'); +INSERT INTO "status" VALUES(27,9,6,'2015-06-02 13:40:02'); +INSERT INTO "status" VALUES(27,9,6,'2015-06-02 13:41:03'); +INSERT INTO "status" VALUES(27,9,6,'2015-06-02 13:42:03'); +INSERT INTO "status" VALUES(27,9,6,'2015-06-02 13:43:03'); +INSERT INTO "status" VALUES(27,9,6,'2015-06-02 13:44:02'); +INSERT INTO "status" VALUES(27,9,6,'2015-06-02 13:45:03'); +INSERT INTO "status" VALUES(27,9,6,'2015-06-02 13:46:02'); +INSERT INTO "status" VALUES(27,9,6,'2015-06-02 13:47:02'); +INSERT INTO "status" VALUES(27,9,6,'2015-06-02 13:48:02'); +INSERT INTO "status" VALUES(27,9,6,'2015-06-02 13:49:02'); +INSERT INTO "status" VALUES(27,9,6,'2015-06-02 13:50:03'); +INSERT INTO "status" VALUES(27,9,6,'2015-06-02 13:51:02'); +INSERT INTO "status" VALUES(27,9,6,'2015-06-02 13:52:02'); +INSERT INTO "status" VALUES(27,9,6,'2015-06-02 13:53:02'); +INSERT INTO "status" VALUES(27,9,6,'2015-06-02 13:54:02'); +INSERT INTO "status" VALUES(27,9,6,'2015-06-02 13:55:03'); +INSERT INTO "status" VALUES(27,9,6,'2015-06-02 13:56:02'); +INSERT INTO "status" VALUES(27,9,6,'2015-06-02 13:57:02'); +INSERT INTO "status" VALUES(27,9,6,'2015-06-02 13:58:02'); +INSERT INTO "status" VALUES(27,9,6,'2015-06-02 13:59:02'); +INSERT INTO "status" VALUES(27,9,6,'2015-06-02 14:00:02'); +INSERT INTO "status" VALUES(27,9,6,'2015-06-02 14:01:02'); +INSERT INTO "status" VALUES(27,9,6,'2015-06-02 14:02:02'); +INSERT INTO "status" VALUES(27,9,6,'2015-06-02 14:03:02'); +INSERT INTO "status" VALUES(27,9,6,'2015-06-02 14:04:02'); +INSERT INTO "status" VALUES(27,9,6,'2015-06-02 14:05:02'); +INSERT INTO "status" VALUES(27,9,6,'2015-06-02 14:06:02'); +INSERT INTO "status" VALUES(27,9,6,'2015-06-02 14:07:02'); +INSERT INTO "status" VALUES(27,9,6,'2015-06-02 14:08:02'); +INSERT INTO "status" VALUES(27,9,6,'2015-06-02 14:09:02'); +INSERT INTO "status" VALUES(27,9,6,'2015-06-02 14:10:02'); +INSERT INTO "status" VALUES(27,9,6,'2015-06-02 14:11:02'); +INSERT INTO "status" VALUES(27,9,6,'2015-06-02 14:12:02'); +INSERT INTO "status" VALUES(27,9,6,'2015-06-02 14:13:02'); +INSERT INTO "status" VALUES(27,9,6,'2015-06-02 14:14:02'); +INSERT INTO "status" VALUES(27,9,6,'2015-06-02 14:15:02'); +INSERT INTO "status" VALUES(27,9,6,'2015-06-02 14:16:02'); +INSERT INTO "status" VALUES(27,9,6,'2015-06-02 14:17:02'); +INSERT INTO "status" VALUES(27,9,6,'2015-06-02 14:18:02'); +INSERT INTO "status" VALUES(27,9,6,'2015-06-02 14:19:02'); +INSERT INTO "status" VALUES(27,9,6,'2015-06-02 14:20:03'); +INSERT INTO "status" VALUES(27,9,6,'2015-06-02 14:21:02'); +INSERT INTO "status" VALUES(27,9,6,'2015-06-02 14:22:02'); +INSERT INTO "status" VALUES(27,9,6,'2015-06-02 14:23:03'); +INSERT INTO "status" VALUES(27,9,6,'2015-06-02 14:24:02'); +INSERT INTO "status" VALUES(27,9,6,'2015-06-02 14:25:01'); +INSERT INTO "status" VALUES(27,9,6,'2015-06-02 14:26:02'); +INSERT INTO "status" VALUES(27,9,6,'2015-06-02 14:27:02'); +INSERT INTO "status" VALUES(27,9,6,'2015-06-02 14:28:02'); +INSERT INTO "status" VALUES(27,9,6,'2015-06-02 14:29:02'); +INSERT INTO "status" VALUES(27,9,6,'2015-06-02 14:30:02'); +INSERT INTO "status" VALUES(27,9,6,'2015-06-02 14:31:02'); +INSERT INTO "status" VALUES(27,9,6,'2015-06-02 14:32:02'); +INSERT INTO "status" VALUES(27,9,6,'2015-06-02 14:33:02'); +INSERT INTO "status" VALUES(27,9,6,'2015-06-02 14:34:02'); +INSERT INTO "status" VALUES(27,9,6,'2015-06-02 14:35:02'); +INSERT INTO "status" VALUES(27,9,6,'2015-06-02 14:36:02'); +INSERT INTO "status" VALUES(27,9,6,'2015-06-02 14:37:02'); +INSERT INTO "status" VALUES(27,9,6,'2015-06-02 14:38:02'); +INSERT INTO "status" VALUES(27,9,6,'2015-06-02 14:39:02'); +INSERT INTO "status" VALUES(27,9,6,'2015-06-02 14:40:02'); +INSERT INTO "status" VALUES(27,9,6,'2015-06-02 14:41:02'); +INSERT INTO "status" VALUES(27,9,6,'2015-06-02 14:42:02'); +INSERT INTO "status" VALUES(27,9,6,'2015-06-02 14:43:02'); +INSERT INTO "status" VALUES(27,9,6,'2015-06-02 14:44:02'); +INSERT INTO "status" VALUES(27,9,6,'2015-06-02 14:45:02'); +INSERT INTO "status" VALUES(27,9,6,'2015-06-02 14:46:02'); +INSERT INTO "status" VALUES(27,9,6,'2015-06-02 14:47:02'); +INSERT INTO "status" VALUES(27,9,6,'2015-06-02 14:48:02'); +INSERT INTO "status" VALUES(28,8,15,'2015-06-02 12:46:02'); +INSERT INTO "status" VALUES(28,8,15,'2015-06-02 12:47:02'); +INSERT INTO "status" VALUES(28,8,15,'2015-06-02 12:48:02'); +INSERT INTO "status" VALUES(28,8,15,'2015-06-02 12:49:02'); +INSERT INTO "status" VALUES(28,8,15,'2015-06-02 12:50:02'); +INSERT INTO "status" VALUES(28,8,15,'2015-06-02 12:51:02'); +INSERT INTO "status" VALUES(28,8,15,'2015-06-02 12:52:02'); +INSERT INTO "status" VALUES(28,8,15,'2015-06-02 12:53:03'); +INSERT INTO "status" VALUES(28,8,15,'2015-06-02 12:54:02'); +INSERT INTO "status" VALUES(28,8,15,'2015-06-02 12:55:02'); +INSERT INTO "status" VALUES(28,8,15,'2015-06-02 12:56:01'); +INSERT INTO "status" VALUES(28,8,15,'2015-06-02 12:57:02'); +INSERT INTO "status" VALUES(28,8,15,'2015-06-02 12:58:02'); +INSERT INTO "status" VALUES(28,8,15,'2015-06-02 12:59:02'); +INSERT INTO "status" VALUES(28,8,15,'2015-06-02 13:00:01'); +INSERT INTO "status" VALUES(28,8,15,'2015-06-02 13:01:03'); +INSERT INTO "status" VALUES(28,8,15,'2015-06-02 13:02:02'); +INSERT INTO "status" VALUES(28,8,15,'2015-06-02 13:03:02'); +INSERT INTO "status" VALUES(28,8,15,'2015-06-02 13:04:02'); +INSERT INTO "status" VALUES(28,8,15,'2015-06-02 13:05:03'); +INSERT INTO "status" VALUES(28,8,15,'2015-06-02 13:06:02'); +INSERT INTO "status" VALUES(28,8,15,'2015-06-02 13:07:02'); +INSERT INTO "status" VALUES(28,8,15,'2015-06-02 13:08:02'); +INSERT INTO "status" VALUES(28,8,15,'2015-06-02 13:09:02'); +INSERT INTO "status" VALUES(28,8,15,'2015-06-02 13:10:02'); +INSERT INTO "status" VALUES(28,8,15,'2015-06-02 13:11:02'); +INSERT INTO "status" VALUES(28,8,15,'2015-06-02 13:12:02'); +INSERT INTO "status" VALUES(28,8,15,'2015-06-02 13:13:03'); +INSERT INTO "status" VALUES(28,8,15,'2015-06-02 13:14:03'); +INSERT INTO "status" VALUES(28,8,15,'2015-06-02 13:15:02'); +INSERT INTO "status" VALUES(28,8,15,'2015-06-02 13:16:02'); +INSERT INTO "status" VALUES(28,8,15,'2015-06-02 13:17:02'); +INSERT INTO "status" VALUES(28,8,15,'2015-06-02 13:18:02'); +INSERT INTO "status" VALUES(28,8,15,'2015-06-02 13:19:02'); +INSERT INTO "status" VALUES(28,8,15,'2015-06-02 13:20:02'); +INSERT INTO "status" VALUES(28,8,15,'2015-06-02 13:21:02'); +INSERT INTO "status" VALUES(28,8,15,'2015-06-02 13:22:02'); +INSERT INTO "status" VALUES(28,8,15,'2015-06-02 13:23:02'); +INSERT INTO "status" VALUES(28,8,15,'2015-06-02 13:24:02'); +INSERT INTO "status" VALUES(28,8,15,'2015-06-02 13:25:02'); +INSERT INTO "status" VALUES(28,8,15,'2015-06-02 13:26:02'); +INSERT INTO "status" VALUES(28,8,15,'2015-06-02 13:27:02'); +INSERT INTO "status" VALUES(28,8,15,'2015-06-02 13:28:02'); +INSERT INTO "status" VALUES(28,8,15,'2015-06-02 13:29:02'); +INSERT INTO "status" VALUES(28,8,15,'2015-06-02 13:30:02'); +INSERT INTO "status" VALUES(28,8,15,'2015-06-02 13:31:02'); +INSERT INTO "status" VALUES(28,8,15,'2015-06-02 13:32:02'); +INSERT INTO "status" VALUES(28,8,15,'2015-06-02 13:33:02'); +INSERT INTO "status" VALUES(28,8,15,'2015-06-02 13:34:02'); +INSERT INTO "status" VALUES(28,8,15,'2015-06-02 13:35:02'); +INSERT INTO "status" VALUES(28,8,15,'2015-06-02 13:36:02'); +INSERT INTO "status" VALUES(28,8,15,'2015-06-02 13:37:02'); +INSERT INTO "status" VALUES(28,8,15,'2015-06-02 13:38:02'); +INSERT INTO "status" VALUES(28,8,15,'2015-06-02 13:39:02'); +INSERT INTO "status" VALUES(28,8,15,'2015-06-02 13:40:02'); +INSERT INTO "status" VALUES(28,8,15,'2015-06-02 13:41:03'); +INSERT INTO "status" VALUES(28,8,15,'2015-06-02 13:42:03'); +INSERT INTO "status" VALUES(28,8,15,'2015-06-02 13:43:03'); +INSERT INTO "status" VALUES(28,8,15,'2015-06-02 13:44:02'); +INSERT INTO "status" VALUES(28,8,15,'2015-06-02 13:45:03'); +INSERT INTO "status" VALUES(28,8,15,'2015-06-02 13:46:02'); +INSERT INTO "status" VALUES(28,8,15,'2015-06-02 13:47:02'); +INSERT INTO "status" VALUES(28,8,15,'2015-06-02 13:48:02'); +INSERT INTO "status" VALUES(28,8,15,'2015-06-02 13:49:02'); +INSERT INTO "status" VALUES(28,8,15,'2015-06-02 13:50:03'); +INSERT INTO "status" VALUES(28,8,15,'2015-06-02 13:51:02'); +INSERT INTO "status" VALUES(28,8,15,'2015-06-02 13:52:02'); +INSERT INTO "status" VALUES(28,8,15,'2015-06-02 13:53:02'); +INSERT INTO "status" VALUES(28,8,15,'2015-06-02 13:54:02'); +INSERT INTO "status" VALUES(28,8,15,'2015-06-02 13:55:03'); +INSERT INTO "status" VALUES(28,8,15,'2015-06-02 13:56:02'); +INSERT INTO "status" VALUES(28,8,15,'2015-06-02 13:57:02'); +INSERT INTO "status" VALUES(28,8,15,'2015-06-02 13:58:02'); +INSERT INTO "status" VALUES(28,8,15,'2015-06-02 13:59:02'); +INSERT INTO "status" VALUES(28,8,15,'2015-06-02 14:00:02'); +INSERT INTO "status" VALUES(28,8,15,'2015-06-02 14:01:02'); +INSERT INTO "status" VALUES(28,8,15,'2015-06-02 14:02:02'); +INSERT INTO "status" VALUES(28,8,15,'2015-06-02 14:03:02'); +INSERT INTO "status" VALUES(28,8,15,'2015-06-02 14:04:02'); +INSERT INTO "status" VALUES(28,8,15,'2015-06-02 14:05:02'); +INSERT INTO "status" VALUES(28,8,15,'2015-06-02 14:06:02'); +INSERT INTO "status" VALUES(28,8,15,'2015-06-02 14:07:02'); +INSERT INTO "status" VALUES(28,8,15,'2015-06-02 14:08:02'); +INSERT INTO "status" VALUES(28,8,15,'2015-06-02 14:09:02'); +INSERT INTO "status" VALUES(28,8,15,'2015-06-02 14:10:02'); +INSERT INTO "status" VALUES(28,8,15,'2015-06-02 14:11:02'); +INSERT INTO "status" VALUES(28,8,15,'2015-06-02 14:12:02'); +INSERT INTO "status" VALUES(28,8,15,'2015-06-02 14:13:02'); +INSERT INTO "status" VALUES(28,8,15,'2015-06-02 14:14:02'); +INSERT INTO "status" VALUES(28,8,15,'2015-06-02 14:15:02'); +INSERT INTO "status" VALUES(28,8,15,'2015-06-02 14:16:02'); +INSERT INTO "status" VALUES(28,8,15,'2015-06-02 14:17:02'); +INSERT INTO "status" VALUES(28,8,15,'2015-06-02 14:18:02'); +INSERT INTO "status" VALUES(28,8,15,'2015-06-02 14:19:02'); +INSERT INTO "status" VALUES(28,8,15,'2015-06-02 14:20:03'); +INSERT INTO "status" VALUES(28,8,15,'2015-06-02 14:21:02'); +INSERT INTO "status" VALUES(28,8,15,'2015-06-02 14:22:02'); +INSERT INTO "status" VALUES(28,8,15,'2015-06-02 14:23:03'); +INSERT INTO "status" VALUES(28,8,15,'2015-06-02 14:24:02'); +INSERT INTO "status" VALUES(28,8,15,'2015-06-02 14:25:01'); +INSERT INTO "status" VALUES(28,8,15,'2015-06-02 14:26:02'); +INSERT INTO "status" VALUES(28,8,15,'2015-06-02 14:27:02'); +INSERT INTO "status" VALUES(28,8,15,'2015-06-02 14:28:02'); +INSERT INTO "status" VALUES(28,8,15,'2015-06-02 14:29:02'); +INSERT INTO "status" VALUES(28,8,15,'2015-06-02 14:30:02'); +INSERT INTO "status" VALUES(28,8,15,'2015-06-02 14:31:02'); +INSERT INTO "status" VALUES(28,8,15,'2015-06-02 14:32:02'); +INSERT INTO "status" VALUES(28,8,15,'2015-06-02 14:33:02'); +INSERT INTO "status" VALUES(28,8,15,'2015-06-02 14:34:02'); +INSERT INTO "status" VALUES(28,8,15,'2015-06-02 14:35:02'); +INSERT INTO "status" VALUES(28,8,15,'2015-06-02 14:36:02'); +INSERT INTO "status" VALUES(28,8,15,'2015-06-02 14:37:02'); +INSERT INTO "status" VALUES(28,8,15,'2015-06-02 14:38:02'); +INSERT INTO "status" VALUES(28,8,15,'2015-06-02 14:39:02'); +INSERT INTO "status" VALUES(28,8,15,'2015-06-02 14:40:02'); +INSERT INTO "status" VALUES(28,8,15,'2015-06-02 14:41:02'); +INSERT INTO "status" VALUES(28,8,15,'2015-06-02 14:42:02'); +INSERT INTO "status" VALUES(28,8,15,'2015-06-02 14:43:02'); +INSERT INTO "status" VALUES(28,8,15,'2015-06-02 14:44:02'); +INSERT INTO "status" VALUES(28,8,15,'2015-06-02 14:45:02'); +INSERT INTO "status" VALUES(28,8,15,'2015-06-02 14:46:02'); +INSERT INTO "status" VALUES(28,8,15,'2015-06-02 14:47:02'); +INSERT INTO "status" VALUES(28,8,15,'2015-06-02 14:48:02'); +INSERT INTO "status" VALUES(29,6,17,'2015-06-02 12:46:02'); +INSERT INTO "status" VALUES(29,6,17,'2015-06-02 12:47:02'); +INSERT INTO "status" VALUES(29,6,17,'2015-06-02 12:48:02'); +INSERT INTO "status" VALUES(29,6,17,'2015-06-02 12:49:02'); +INSERT INTO "status" VALUES(29,6,17,'2015-06-02 12:50:02'); +INSERT INTO "status" VALUES(29,6,17,'2015-06-02 12:51:02'); +INSERT INTO "status" VALUES(29,6,17,'2015-06-02 12:52:02'); +INSERT INTO "status" VALUES(29,6,17,'2015-06-02 12:53:03'); +INSERT INTO "status" VALUES(29,6,17,'2015-06-02 12:54:02'); +INSERT INTO "status" VALUES(29,6,17,'2015-06-02 12:55:02'); +INSERT INTO "status" VALUES(29,6,17,'2015-06-02 12:56:01'); +INSERT INTO "status" VALUES(29,6,17,'2015-06-02 12:57:02'); +INSERT INTO "status" VALUES(29,6,17,'2015-06-02 12:58:02'); +INSERT INTO "status" VALUES(29,6,17,'2015-06-02 12:59:02'); +INSERT INTO "status" VALUES(29,6,17,'2015-06-02 13:00:01'); +INSERT INTO "status" VALUES(29,6,17,'2015-06-02 13:01:03'); +INSERT INTO "status" VALUES(29,6,17,'2015-06-02 13:02:02'); +INSERT INTO "status" VALUES(29,6,17,'2015-06-02 13:03:02'); +INSERT INTO "status" VALUES(29,6,17,'2015-06-02 13:04:02'); +INSERT INTO "status" VALUES(29,6,17,'2015-06-02 13:05:03'); +INSERT INTO "status" VALUES(29,6,17,'2015-06-02 13:06:02'); +INSERT INTO "status" VALUES(29,6,17,'2015-06-02 13:07:02'); +INSERT INTO "status" VALUES(29,6,17,'2015-06-02 13:08:02'); +INSERT INTO "status" VALUES(29,6,17,'2015-06-02 13:09:02'); +INSERT INTO "status" VALUES(29,6,17,'2015-06-02 13:10:02'); +INSERT INTO "status" VALUES(29,6,17,'2015-06-02 13:11:02'); +INSERT INTO "status" VALUES(29,6,17,'2015-06-02 13:12:02'); +INSERT INTO "status" VALUES(29,6,17,'2015-06-02 13:13:03'); +INSERT INTO "status" VALUES(29,6,17,'2015-06-02 13:14:03'); +INSERT INTO "status" VALUES(29,6,17,'2015-06-02 13:15:02'); +INSERT INTO "status" VALUES(29,6,17,'2015-06-02 13:16:02'); +INSERT INTO "status" VALUES(29,6,17,'2015-06-02 13:17:02'); +INSERT INTO "status" VALUES(29,6,17,'2015-06-02 13:18:02'); +INSERT INTO "status" VALUES(29,6,17,'2015-06-02 13:19:02'); +INSERT INTO "status" VALUES(29,6,17,'2015-06-02 13:20:02'); +INSERT INTO "status" VALUES(29,6,17,'2015-06-02 13:21:02'); +INSERT INTO "status" VALUES(29,6,17,'2015-06-02 13:22:02'); +INSERT INTO "status" VALUES(29,6,17,'2015-06-02 13:23:02'); +INSERT INTO "status" VALUES(29,6,17,'2015-06-02 13:24:02'); +INSERT INTO "status" VALUES(29,6,17,'2015-06-02 13:25:02'); +INSERT INTO "status" VALUES(29,6,17,'2015-06-02 13:26:02'); +INSERT INTO "status" VALUES(29,6,17,'2015-06-02 13:27:02'); +INSERT INTO "status" VALUES(29,6,17,'2015-06-02 13:28:02'); +INSERT INTO "status" VALUES(29,6,17,'2015-06-02 13:29:02'); +INSERT INTO "status" VALUES(29,6,17,'2015-06-02 13:30:02'); +INSERT INTO "status" VALUES(29,6,17,'2015-06-02 13:31:02'); +INSERT INTO "status" VALUES(29,6,17,'2015-06-02 13:32:02'); +INSERT INTO "status" VALUES(29,6,17,'2015-06-02 13:33:02'); +INSERT INTO "status" VALUES(29,6,17,'2015-06-02 13:34:02'); +INSERT INTO "status" VALUES(29,6,17,'2015-06-02 13:35:02'); +INSERT INTO "status" VALUES(29,6,17,'2015-06-02 13:36:02'); +INSERT INTO "status" VALUES(29,6,17,'2015-06-02 13:37:02'); +INSERT INTO "status" VALUES(29,6,17,'2015-06-02 13:38:02'); +INSERT INTO "status" VALUES(29,6,17,'2015-06-02 13:39:02'); +INSERT INTO "status" VALUES(29,6,17,'2015-06-02 13:40:02'); +INSERT INTO "status" VALUES(29,6,17,'2015-06-02 13:41:03'); +INSERT INTO "status" VALUES(29,6,17,'2015-06-02 13:42:03'); +INSERT INTO "status" VALUES(29,6,17,'2015-06-02 13:43:03'); +INSERT INTO "status" VALUES(29,6,17,'2015-06-02 13:44:02'); +INSERT INTO "status" VALUES(29,6,17,'2015-06-02 13:45:03'); +INSERT INTO "status" VALUES(29,6,17,'2015-06-02 13:46:02'); +INSERT INTO "status" VALUES(29,6,17,'2015-06-02 13:47:02'); +INSERT INTO "status" VALUES(29,6,17,'2015-06-02 13:48:02'); +INSERT INTO "status" VALUES(29,6,17,'2015-06-02 13:49:02'); +INSERT INTO "status" VALUES(29,6,17,'2015-06-02 13:50:03'); +INSERT INTO "status" VALUES(29,6,17,'2015-06-02 13:51:02'); +INSERT INTO "status" VALUES(29,6,17,'2015-06-02 13:52:02'); +INSERT INTO "status" VALUES(29,6,17,'2015-06-02 13:53:02'); +INSERT INTO "status" VALUES(29,6,17,'2015-06-02 13:54:02'); +INSERT INTO "status" VALUES(29,6,17,'2015-06-02 13:55:03'); +INSERT INTO "status" VALUES(29,6,17,'2015-06-02 13:56:02'); +INSERT INTO "status" VALUES(29,6,17,'2015-06-02 13:57:02'); +INSERT INTO "status" VALUES(29,6,17,'2015-06-02 13:58:02'); +INSERT INTO "status" VALUES(29,6,17,'2015-06-02 13:59:02'); +INSERT INTO "status" VALUES(29,6,17,'2015-06-02 14:00:02'); +INSERT INTO "status" VALUES(29,6,17,'2015-06-02 14:01:02'); +INSERT INTO "status" VALUES(29,6,17,'2015-06-02 14:02:02'); +INSERT INTO "status" VALUES(29,6,17,'2015-06-02 14:03:02'); +INSERT INTO "status" VALUES(29,6,17,'2015-06-02 14:04:02'); +INSERT INTO "status" VALUES(29,6,17,'2015-06-02 14:05:02'); +INSERT INTO "status" VALUES(29,6,17,'2015-06-02 14:06:02'); +INSERT INTO "status" VALUES(29,6,17,'2015-06-02 14:07:02'); +INSERT INTO "status" VALUES(29,6,17,'2015-06-02 14:08:02'); +INSERT INTO "status" VALUES(29,6,17,'2015-06-02 14:09:02'); +INSERT INTO "status" VALUES(29,6,17,'2015-06-02 14:10:02'); +INSERT INTO "status" VALUES(29,6,17,'2015-06-02 14:11:02'); +INSERT INTO "status" VALUES(29,6,17,'2015-06-02 14:12:02'); +INSERT INTO "status" VALUES(29,6,17,'2015-06-02 14:13:02'); +INSERT INTO "status" VALUES(29,6,17,'2015-06-02 14:14:02'); +INSERT INTO "status" VALUES(29,6,17,'2015-06-02 14:15:02'); +INSERT INTO "status" VALUES(29,6,17,'2015-06-02 14:16:02'); +INSERT INTO "status" VALUES(29,6,17,'2015-06-02 14:17:02'); +INSERT INTO "status" VALUES(29,6,17,'2015-06-02 14:18:02'); +INSERT INTO "status" VALUES(29,6,17,'2015-06-02 14:19:02'); +INSERT INTO "status" VALUES(29,6,17,'2015-06-02 14:20:03'); +INSERT INTO "status" VALUES(29,6,17,'2015-06-02 14:21:02'); +INSERT INTO "status" VALUES(29,6,17,'2015-06-02 14:22:02'); +INSERT INTO "status" VALUES(29,6,17,'2015-06-02 14:23:03'); +INSERT INTO "status" VALUES(29,6,17,'2015-06-02 14:24:02'); +INSERT INTO "status" VALUES(29,6,17,'2015-06-02 14:25:01'); +INSERT INTO "status" VALUES(29,6,17,'2015-06-02 14:26:02'); +INSERT INTO "status" VALUES(29,6,17,'2015-06-02 14:27:02'); +INSERT INTO "status" VALUES(29,6,17,'2015-06-02 14:28:02'); +INSERT INTO "status" VALUES(29,6,17,'2015-06-02 14:29:02'); +INSERT INTO "status" VALUES(29,6,17,'2015-06-02 14:30:02'); +INSERT INTO "status" VALUES(29,6,17,'2015-06-02 14:31:02'); +INSERT INTO "status" VALUES(29,6,17,'2015-06-02 14:32:02'); +INSERT INTO "status" VALUES(29,6,17,'2015-06-02 14:33:02'); +INSERT INTO "status" VALUES(29,6,17,'2015-06-02 14:34:02'); +INSERT INTO "status" VALUES(29,6,17,'2015-06-02 14:35:02'); +INSERT INTO "status" VALUES(29,6,17,'2015-06-02 14:36:02'); +INSERT INTO "status" VALUES(29,6,17,'2015-06-02 14:37:02'); +INSERT INTO "status" VALUES(29,6,17,'2015-06-02 14:38:02'); +INSERT INTO "status" VALUES(29,6,17,'2015-06-02 14:39:02'); +INSERT INTO "status" VALUES(29,6,17,'2015-06-02 14:40:02'); +INSERT INTO "status" VALUES(29,6,17,'2015-06-02 14:41:02'); +INSERT INTO "status" VALUES(29,6,17,'2015-06-02 14:42:02'); +INSERT INTO "status" VALUES(29,6,17,'2015-06-02 14:43:02'); +INSERT INTO "status" VALUES(29,6,17,'2015-06-02 14:44:02'); +INSERT INTO "status" VALUES(29,6,17,'2015-06-02 14:45:02'); +INSERT INTO "status" VALUES(29,6,17,'2015-06-02 14:46:02'); +INSERT INTO "status" VALUES(29,6,17,'2015-06-02 14:47:02'); +INSERT INTO "status" VALUES(29,6,17,'2015-06-02 14:48:02'); +INSERT INTO "status" VALUES(30,8,7,'2015-06-02 12:46:02'); +INSERT INTO "status" VALUES(30,8,7,'2015-06-02 12:47:02'); +INSERT INTO "status" VALUES(30,8,7,'2015-06-02 12:48:02'); +INSERT INTO "status" VALUES(30,8,7,'2015-06-02 12:49:02'); +INSERT INTO "status" VALUES(30,8,7,'2015-06-02 12:50:02'); +INSERT INTO "status" VALUES(30,8,7,'2015-06-02 12:51:02'); +INSERT INTO "status" VALUES(30,8,7,'2015-06-02 12:52:02'); +INSERT INTO "status" VALUES(30,8,7,'2015-06-02 12:53:03'); +INSERT INTO "status" VALUES(30,8,7,'2015-06-02 12:54:02'); +INSERT INTO "status" VALUES(30,8,7,'2015-06-02 12:55:02'); +INSERT INTO "status" VALUES(30,8,7,'2015-06-02 12:56:01'); +INSERT INTO "status" VALUES(30,8,7,'2015-06-02 12:57:02'); +INSERT INTO "status" VALUES(30,8,7,'2015-06-02 12:58:02'); +INSERT INTO "status" VALUES(30,8,7,'2015-06-02 12:59:02'); +INSERT INTO "status" VALUES(30,8,7,'2015-06-02 13:00:01'); +INSERT INTO "status" VALUES(30,8,7,'2015-06-02 13:01:03'); +INSERT INTO "status" VALUES(30,8,7,'2015-06-02 13:02:02'); +INSERT INTO "status" VALUES(30,8,7,'2015-06-02 13:03:02'); +INSERT INTO "status" VALUES(30,8,7,'2015-06-02 13:04:02'); +INSERT INTO "status" VALUES(30,8,7,'2015-06-02 13:05:03'); +INSERT INTO "status" VALUES(30,8,7,'2015-06-02 13:06:02'); +INSERT INTO "status" VALUES(30,8,7,'2015-06-02 13:07:02'); +INSERT INTO "status" VALUES(30,8,7,'2015-06-02 13:08:02'); +INSERT INTO "status" VALUES(30,8,7,'2015-06-02 13:09:02'); +INSERT INTO "status" VALUES(30,8,7,'2015-06-02 13:10:02'); +INSERT INTO "status" VALUES(30,8,7,'2015-06-02 13:11:02'); +INSERT INTO "status" VALUES(30,8,7,'2015-06-02 13:12:02'); +INSERT INTO "status" VALUES(30,8,7,'2015-06-02 13:13:03'); +INSERT INTO "status" VALUES(30,8,7,'2015-06-02 13:14:03'); +INSERT INTO "status" VALUES(30,8,7,'2015-06-02 13:15:02'); +INSERT INTO "status" VALUES(30,8,7,'2015-06-02 13:16:02'); +INSERT INTO "status" VALUES(30,8,7,'2015-06-02 13:17:02'); +INSERT INTO "status" VALUES(30,8,7,'2015-06-02 13:18:02'); +INSERT INTO "status" VALUES(30,8,7,'2015-06-02 13:19:02'); +INSERT INTO "status" VALUES(30,8,7,'2015-06-02 13:20:02'); +INSERT INTO "status" VALUES(30,8,7,'2015-06-02 13:21:02'); +INSERT INTO "status" VALUES(30,8,7,'2015-06-02 13:22:02'); +INSERT INTO "status" VALUES(30,8,7,'2015-06-02 13:23:02'); +INSERT INTO "status" VALUES(30,8,7,'2015-06-02 13:24:02'); +INSERT INTO "status" VALUES(30,8,7,'2015-06-02 13:25:02'); +INSERT INTO "status" VALUES(30,8,7,'2015-06-02 13:26:02'); +INSERT INTO "status" VALUES(30,8,7,'2015-06-02 13:27:02'); +INSERT INTO "status" VALUES(30,8,7,'2015-06-02 13:28:02'); +INSERT INTO "status" VALUES(30,8,7,'2015-06-02 13:29:02'); +INSERT INTO "status" VALUES(30,8,7,'2015-06-02 13:30:02'); +INSERT INTO "status" VALUES(30,8,7,'2015-06-02 13:31:02'); +INSERT INTO "status" VALUES(30,8,7,'2015-06-02 13:32:02'); +INSERT INTO "status" VALUES(30,8,7,'2015-06-02 13:33:02'); +INSERT INTO "status" VALUES(30,8,7,'2015-06-02 13:34:02'); +INSERT INTO "status" VALUES(30,8,7,'2015-06-02 13:35:02'); +INSERT INTO "status" VALUES(30,8,7,'2015-06-02 13:36:02'); +INSERT INTO "status" VALUES(30,8,7,'2015-06-02 13:37:02'); +INSERT INTO "status" VALUES(30,8,7,'2015-06-02 13:38:02'); +INSERT INTO "status" VALUES(30,8,7,'2015-06-02 13:39:02'); +INSERT INTO "status" VALUES(30,8,7,'2015-06-02 13:40:02'); +INSERT INTO "status" VALUES(30,8,7,'2015-06-02 13:41:03'); +INSERT INTO "status" VALUES(30,8,7,'2015-06-02 13:42:03'); +INSERT INTO "status" VALUES(30,8,7,'2015-06-02 13:43:03'); +INSERT INTO "status" VALUES(30,8,7,'2015-06-02 13:44:02'); +INSERT INTO "status" VALUES(30,8,7,'2015-06-02 13:45:03'); +INSERT INTO "status" VALUES(30,8,7,'2015-06-02 13:46:02'); +INSERT INTO "status" VALUES(30,8,7,'2015-06-02 13:47:02'); +INSERT INTO "status" VALUES(30,8,7,'2015-06-02 13:48:02'); +INSERT INTO "status" VALUES(30,8,7,'2015-06-02 13:49:02'); +INSERT INTO "status" VALUES(30,8,7,'2015-06-02 13:50:03'); +INSERT INTO "status" VALUES(30,8,7,'2015-06-02 13:51:02'); +INSERT INTO "status" VALUES(30,8,7,'2015-06-02 13:52:02'); +INSERT INTO "status" VALUES(30,8,7,'2015-06-02 13:53:02'); +INSERT INTO "status" VALUES(30,8,7,'2015-06-02 13:54:02'); +INSERT INTO "status" VALUES(30,8,7,'2015-06-02 13:55:03'); +INSERT INTO "status" VALUES(30,8,7,'2015-06-02 13:56:02'); +INSERT INTO "status" VALUES(30,8,7,'2015-06-02 13:57:02'); +INSERT INTO "status" VALUES(30,8,7,'2015-06-02 13:58:02'); +INSERT INTO "status" VALUES(30,8,7,'2015-06-02 13:59:02'); +INSERT INTO "status" VALUES(30,8,7,'2015-06-02 14:00:02'); +INSERT INTO "status" VALUES(30,8,7,'2015-06-02 14:01:02'); +INSERT INTO "status" VALUES(30,8,7,'2015-06-02 14:02:02'); +INSERT INTO "status" VALUES(30,8,7,'2015-06-02 14:03:02'); +INSERT INTO "status" VALUES(30,8,7,'2015-06-02 14:04:02'); +INSERT INTO "status" VALUES(30,8,7,'2015-06-02 14:05:02'); +INSERT INTO "status" VALUES(30,8,7,'2015-06-02 14:06:02'); +INSERT INTO "status" VALUES(30,8,7,'2015-06-02 14:07:02'); +INSERT INTO "status" VALUES(30,8,7,'2015-06-02 14:08:02'); +INSERT INTO "status" VALUES(30,8,7,'2015-06-02 14:09:02'); +INSERT INTO "status" VALUES(30,8,7,'2015-06-02 14:10:02'); +INSERT INTO "status" VALUES(30,8,7,'2015-06-02 14:11:02'); +INSERT INTO "status" VALUES(30,8,7,'2015-06-02 14:12:02'); +INSERT INTO "status" VALUES(30,8,7,'2015-06-02 14:13:02'); +INSERT INTO "status" VALUES(30,8,7,'2015-06-02 14:14:02'); +INSERT INTO "status" VALUES(30,8,7,'2015-06-02 14:15:02'); +INSERT INTO "status" VALUES(30,8,7,'2015-06-02 14:16:02'); +INSERT INTO "status" VALUES(30,8,7,'2015-06-02 14:17:02'); +INSERT INTO "status" VALUES(30,8,7,'2015-06-02 14:18:02'); +INSERT INTO "status" VALUES(30,8,7,'2015-06-02 14:19:02'); +INSERT INTO "status" VALUES(30,8,7,'2015-06-02 14:20:03'); +INSERT INTO "status" VALUES(30,8,7,'2015-06-02 14:21:02'); +INSERT INTO "status" VALUES(30,8,7,'2015-06-02 14:22:02'); +INSERT INTO "status" VALUES(30,8,7,'2015-06-02 14:23:03'); +INSERT INTO "status" VALUES(30,8,7,'2015-06-02 14:24:02'); +INSERT INTO "status" VALUES(30,8,7,'2015-06-02 14:25:01'); +INSERT INTO "status" VALUES(30,8,7,'2015-06-02 14:26:02'); +INSERT INTO "status" VALUES(30,8,7,'2015-06-02 14:27:02'); +INSERT INTO "status" VALUES(30,8,7,'2015-06-02 14:28:02'); +INSERT INTO "status" VALUES(30,8,7,'2015-06-02 14:29:02'); +INSERT INTO "status" VALUES(30,8,7,'2015-06-02 14:30:02'); +INSERT INTO "status" VALUES(30,8,7,'2015-06-02 14:31:02'); +INSERT INTO "status" VALUES(30,8,7,'2015-06-02 14:32:02'); +INSERT INTO "status" VALUES(30,8,7,'2015-06-02 14:33:02'); +INSERT INTO "status" VALUES(30,8,7,'2015-06-02 14:34:02'); +INSERT INTO "status" VALUES(30,8,7,'2015-06-02 14:35:02'); +INSERT INTO "status" VALUES(30,8,7,'2015-06-02 14:36:02'); +INSERT INTO "status" VALUES(30,8,7,'2015-06-02 14:37:02'); +INSERT INTO "status" VALUES(30,8,7,'2015-06-02 14:38:02'); +INSERT INTO "status" VALUES(30,8,7,'2015-06-02 14:39:02'); +INSERT INTO "status" VALUES(30,8,7,'2015-06-02 14:40:02'); +INSERT INTO "status" VALUES(30,8,7,'2015-06-02 14:41:02'); +INSERT INTO "status" VALUES(30,8,7,'2015-06-02 14:42:02'); +INSERT INTO "status" VALUES(30,8,7,'2015-06-02 14:43:02'); +INSERT INTO "status" VALUES(30,8,7,'2015-06-02 14:44:02'); +INSERT INTO "status" VALUES(30,8,7,'2015-06-02 14:45:02'); +INSERT INTO "status" VALUES(30,8,7,'2015-06-02 14:46:02'); +INSERT INTO "status" VALUES(30,8,7,'2015-06-02 14:47:02'); +INSERT INTO "status" VALUES(30,8,7,'2015-06-02 14:48:02'); +INSERT INTO "status" VALUES(31,9,6,'2015-06-02 12:46:02'); +INSERT INTO "status" VALUES(31,9,6,'2015-06-02 12:47:02'); +INSERT INTO "status" VALUES(31,9,6,'2015-06-02 12:48:02'); +INSERT INTO "status" VALUES(31,9,6,'2015-06-02 12:49:02'); +INSERT INTO "status" VALUES(31,9,6,'2015-06-02 12:50:02'); +INSERT INTO "status" VALUES(31,8,7,'2015-06-02 12:51:02'); +INSERT INTO "status" VALUES(31,8,7,'2015-06-02 12:52:02'); +INSERT INTO "status" VALUES(31,8,7,'2015-06-02 12:53:03'); +INSERT INTO "status" VALUES(31,8,7,'2015-06-02 12:54:02'); +INSERT INTO "status" VALUES(31,8,7,'2015-06-02 12:55:02'); +INSERT INTO "status" VALUES(31,8,7,'2015-06-02 12:56:01'); +INSERT INTO "status" VALUES(31,8,7,'2015-06-02 12:57:02'); +INSERT INTO "status" VALUES(31,8,7,'2015-06-02 12:58:02'); +INSERT INTO "status" VALUES(31,8,7,'2015-06-02 12:59:02'); +INSERT INTO "status" VALUES(31,8,7,'2015-06-02 13:00:01'); +INSERT INTO "status" VALUES(31,8,7,'2015-06-02 13:01:03'); +INSERT INTO "status" VALUES(31,8,7,'2015-06-02 13:02:02'); +INSERT INTO "status" VALUES(31,8,7,'2015-06-02 13:03:02'); +INSERT INTO "status" VALUES(31,8,7,'2015-06-02 13:04:02'); +INSERT INTO "status" VALUES(31,8,7,'2015-06-02 13:05:03'); +INSERT INTO "status" VALUES(31,8,7,'2015-06-02 13:06:02'); +INSERT INTO "status" VALUES(31,8,7,'2015-06-02 13:07:02'); +INSERT INTO "status" VALUES(31,8,7,'2015-06-02 13:08:02'); +INSERT INTO "status" VALUES(31,8,7,'2015-06-02 13:09:02'); +INSERT INTO "status" VALUES(31,8,7,'2015-06-02 13:10:02'); +INSERT INTO "status" VALUES(31,8,7,'2015-06-02 13:11:02'); +INSERT INTO "status" VALUES(31,8,7,'2015-06-02 13:12:02'); +INSERT INTO "status" VALUES(31,8,7,'2015-06-02 13:13:03'); +INSERT INTO "status" VALUES(31,8,7,'2015-06-02 13:14:03'); +INSERT INTO "status" VALUES(31,8,7,'2015-06-02 13:15:02'); +INSERT INTO "status" VALUES(31,8,7,'2015-06-02 13:16:02'); +INSERT INTO "status" VALUES(31,8,7,'2015-06-02 13:17:02'); +INSERT INTO "status" VALUES(31,8,7,'2015-06-02 13:18:02'); +INSERT INTO "status" VALUES(31,8,7,'2015-06-02 13:19:02'); +INSERT INTO "status" VALUES(31,8,7,'2015-06-02 13:20:02'); +INSERT INTO "status" VALUES(31,8,7,'2015-06-02 13:21:02'); +INSERT INTO "status" VALUES(31,8,7,'2015-06-02 13:22:02'); +INSERT INTO "status" VALUES(31,8,7,'2015-06-02 13:23:02'); +INSERT INTO "status" VALUES(31,8,7,'2015-06-02 13:24:02'); +INSERT INTO "status" VALUES(31,8,7,'2015-06-02 13:25:02'); +INSERT INTO "status" VALUES(31,8,7,'2015-06-02 13:26:02'); +INSERT INTO "status" VALUES(31,8,7,'2015-06-02 13:27:02'); +INSERT INTO "status" VALUES(31,8,7,'2015-06-02 13:28:02'); +INSERT INTO "status" VALUES(31,8,7,'2015-06-02 13:29:02'); +INSERT INTO "status" VALUES(31,8,7,'2015-06-02 13:30:02'); +INSERT INTO "status" VALUES(31,8,7,'2015-06-02 13:31:02'); +INSERT INTO "status" VALUES(31,8,7,'2015-06-02 13:32:02'); +INSERT INTO "status" VALUES(31,8,7,'2015-06-02 13:33:02'); +INSERT INTO "status" VALUES(31,8,7,'2015-06-02 13:34:02'); +INSERT INTO "status" VALUES(31,8,7,'2015-06-02 13:35:02'); +INSERT INTO "status" VALUES(31,8,7,'2015-06-02 13:36:02'); +INSERT INTO "status" VALUES(31,8,7,'2015-06-02 13:37:02'); +INSERT INTO "status" VALUES(31,8,7,'2015-06-02 13:38:02'); +INSERT INTO "status" VALUES(31,8,7,'2015-06-02 13:39:02'); +INSERT INTO "status" VALUES(31,8,7,'2015-06-02 13:40:02'); +INSERT INTO "status" VALUES(31,8,7,'2015-06-02 13:41:03'); +INSERT INTO "status" VALUES(31,8,7,'2015-06-02 13:42:03'); +INSERT INTO "status" VALUES(31,8,7,'2015-06-02 13:43:03'); +INSERT INTO "status" VALUES(31,8,7,'2015-06-02 13:44:02'); +INSERT INTO "status" VALUES(31,8,7,'2015-06-02 13:45:03'); +INSERT INTO "status" VALUES(31,8,7,'2015-06-02 13:46:02'); +INSERT INTO "status" VALUES(31,8,7,'2015-06-02 13:47:02'); +INSERT INTO "status" VALUES(31,8,7,'2015-06-02 13:48:02'); +INSERT INTO "status" VALUES(31,8,7,'2015-06-02 13:49:02'); +INSERT INTO "status" VALUES(31,8,7,'2015-06-02 13:50:03'); +INSERT INTO "status" VALUES(31,8,7,'2015-06-02 13:51:02'); +INSERT INTO "status" VALUES(31,8,7,'2015-06-02 13:52:02'); +INSERT INTO "status" VALUES(31,8,7,'2015-06-02 13:53:02'); +INSERT INTO "status" VALUES(31,8,7,'2015-06-02 13:54:02'); +INSERT INTO "status" VALUES(31,8,7,'2015-06-02 13:55:03'); +INSERT INTO "status" VALUES(31,8,7,'2015-06-02 13:56:02'); +INSERT INTO "status" VALUES(31,8,7,'2015-06-02 13:57:02'); +INSERT INTO "status" VALUES(31,8,7,'2015-06-02 13:58:02'); +INSERT INTO "status" VALUES(31,8,7,'2015-06-02 13:59:02'); +INSERT INTO "status" VALUES(31,8,7,'2015-06-02 14:00:02'); +INSERT INTO "status" VALUES(31,8,7,'2015-06-02 14:01:02'); +INSERT INTO "status" VALUES(31,8,7,'2015-06-02 14:02:02'); +INSERT INTO "status" VALUES(31,8,7,'2015-06-02 14:03:02'); +INSERT INTO "status" VALUES(31,8,7,'2015-06-02 14:04:02'); +INSERT INTO "status" VALUES(31,8,7,'2015-06-02 14:05:02'); +INSERT INTO "status" VALUES(31,8,7,'2015-06-02 14:06:02'); +INSERT INTO "status" VALUES(31,8,7,'2015-06-02 14:07:02'); +INSERT INTO "status" VALUES(31,8,7,'2015-06-02 14:08:02'); +INSERT INTO "status" VALUES(31,8,7,'2015-06-02 14:09:02'); +INSERT INTO "status" VALUES(31,8,7,'2015-06-02 14:10:02'); +INSERT INTO "status" VALUES(31,8,7,'2015-06-02 14:11:02'); +INSERT INTO "status" VALUES(31,8,7,'2015-06-02 14:12:02'); +INSERT INTO "status" VALUES(31,8,7,'2015-06-02 14:13:02'); +INSERT INTO "status" VALUES(31,8,7,'2015-06-02 14:14:02'); +INSERT INTO "status" VALUES(31,8,7,'2015-06-02 14:15:02'); +INSERT INTO "status" VALUES(31,8,7,'2015-06-02 14:16:02'); +INSERT INTO "status" VALUES(31,8,7,'2015-06-02 14:17:02'); +INSERT INTO "status" VALUES(31,8,7,'2015-06-02 14:18:02'); +INSERT INTO "status" VALUES(31,8,7,'2015-06-02 14:19:02'); +INSERT INTO "status" VALUES(31,8,7,'2015-06-02 14:20:03'); +INSERT INTO "status" VALUES(31,8,7,'2015-06-02 14:21:02'); +INSERT INTO "status" VALUES(31,8,7,'2015-06-02 14:22:02'); +INSERT INTO "status" VALUES(31,8,7,'2015-06-02 14:23:03'); +INSERT INTO "status" VALUES(31,8,7,'2015-06-02 14:24:02'); +INSERT INTO "status" VALUES(31,8,7,'2015-06-02 14:25:01'); +INSERT INTO "status" VALUES(31,8,7,'2015-06-02 14:26:02'); +INSERT INTO "status" VALUES(31,8,7,'2015-06-02 14:27:02'); +INSERT INTO "status" VALUES(31,8,7,'2015-06-02 14:28:02'); +INSERT INTO "status" VALUES(31,8,7,'2015-06-02 14:29:02'); +INSERT INTO "status" VALUES(31,8,7,'2015-06-02 14:30:02'); +INSERT INTO "status" VALUES(31,8,7,'2015-06-02 14:31:02'); +INSERT INTO "status" VALUES(31,8,7,'2015-06-02 14:32:02'); +INSERT INTO "status" VALUES(31,8,7,'2015-06-02 14:33:02'); +INSERT INTO "status" VALUES(31,8,7,'2015-06-02 14:34:02'); +INSERT INTO "status" VALUES(31,8,7,'2015-06-02 14:35:02'); +INSERT INTO "status" VALUES(31,8,7,'2015-06-02 14:36:02'); +INSERT INTO "status" VALUES(31,8,7,'2015-06-02 14:37:02'); +INSERT INTO "status" VALUES(31,8,7,'2015-06-02 14:38:02'); +INSERT INTO "status" VALUES(31,8,7,'2015-06-02 14:39:02'); +INSERT INTO "status" VALUES(31,8,7,'2015-06-02 14:40:02'); +INSERT INTO "status" VALUES(31,8,7,'2015-06-02 14:41:02'); +INSERT INTO "status" VALUES(31,8,7,'2015-06-02 14:42:02'); +INSERT INTO "status" VALUES(31,8,7,'2015-06-02 14:43:02'); +INSERT INTO "status" VALUES(31,8,7,'2015-06-02 14:44:02'); +INSERT INTO "status" VALUES(31,8,7,'2015-06-02 14:45:02'); +INSERT INTO "status" VALUES(31,8,7,'2015-06-02 14:46:02'); +INSERT INTO "status" VALUES(31,8,7,'2015-06-02 14:47:02'); +INSERT INTO "status" VALUES(31,8,7,'2015-06-02 14:48:02'); +INSERT INTO "status" VALUES(32,5,6,'2015-06-02 12:46:02'); +INSERT INTO "status" VALUES(32,5,6,'2015-06-02 12:47:02'); +INSERT INTO "status" VALUES(32,5,6,'2015-06-02 12:48:02'); +INSERT INTO "status" VALUES(32,5,6,'2015-06-02 12:49:02'); +INSERT INTO "status" VALUES(32,5,6,'2015-06-02 12:50:02'); +INSERT INTO "status" VALUES(32,5,6,'2015-06-02 12:51:02'); +INSERT INTO "status" VALUES(32,5,6,'2015-06-02 12:52:02'); +INSERT INTO "status" VALUES(32,5,6,'2015-06-02 12:53:03'); +INSERT INTO "status" VALUES(32,5,6,'2015-06-02 12:54:02'); +INSERT INTO "status" VALUES(32,5,6,'2015-06-02 12:55:02'); +INSERT INTO "status" VALUES(32,5,6,'2015-06-02 12:56:01'); +INSERT INTO "status" VALUES(32,5,6,'2015-06-02 12:57:02'); +INSERT INTO "status" VALUES(32,5,6,'2015-06-02 12:58:02'); +INSERT INTO "status" VALUES(32,5,6,'2015-06-02 12:59:02'); +INSERT INTO "status" VALUES(32,5,6,'2015-06-02 13:00:01'); +INSERT INTO "status" VALUES(32,5,6,'2015-06-02 13:01:03'); +INSERT INTO "status" VALUES(32,5,6,'2015-06-02 13:02:02'); +INSERT INTO "status" VALUES(32,5,6,'2015-06-02 13:03:02'); +INSERT INTO "status" VALUES(32,5,6,'2015-06-02 13:04:02'); +INSERT INTO "status" VALUES(32,5,6,'2015-06-02 13:05:03'); +INSERT INTO "status" VALUES(32,5,6,'2015-06-02 13:06:02'); +INSERT INTO "status" VALUES(32,5,6,'2015-06-02 13:07:02'); +INSERT INTO "status" VALUES(32,5,6,'2015-06-02 13:08:02'); +INSERT INTO "status" VALUES(32,5,6,'2015-06-02 13:09:02'); +INSERT INTO "status" VALUES(32,5,6,'2015-06-02 13:10:02'); +INSERT INTO "status" VALUES(32,5,6,'2015-06-02 13:11:02'); +INSERT INTO "status" VALUES(32,5,6,'2015-06-02 13:12:02'); +INSERT INTO "status" VALUES(32,5,6,'2015-06-02 13:13:03'); +INSERT INTO "status" VALUES(32,5,6,'2015-06-02 13:14:03'); +INSERT INTO "status" VALUES(32,5,6,'2015-06-02 13:15:02'); +INSERT INTO "status" VALUES(32,5,6,'2015-06-02 13:16:02'); +INSERT INTO "status" VALUES(32,5,6,'2015-06-02 13:17:02'); +INSERT INTO "status" VALUES(32,5,6,'2015-06-02 13:18:02'); +INSERT INTO "status" VALUES(32,5,6,'2015-06-02 13:19:02'); +INSERT INTO "status" VALUES(32,5,6,'2015-06-02 13:20:02'); +INSERT INTO "status" VALUES(32,5,6,'2015-06-02 13:21:02'); +INSERT INTO "status" VALUES(32,5,6,'2015-06-02 13:22:02'); +INSERT INTO "status" VALUES(32,5,6,'2015-06-02 13:23:02'); +INSERT INTO "status" VALUES(32,5,6,'2015-06-02 13:24:02'); +INSERT INTO "status" VALUES(32,5,6,'2015-06-02 13:25:02'); +INSERT INTO "status" VALUES(32,5,6,'2015-06-02 13:26:02'); +INSERT INTO "status" VALUES(32,5,6,'2015-06-02 13:27:02'); +INSERT INTO "status" VALUES(32,5,6,'2015-06-02 13:28:02'); +INSERT INTO "status" VALUES(32,5,6,'2015-06-02 13:29:02'); +INSERT INTO "status" VALUES(32,5,6,'2015-06-02 13:30:02'); +INSERT INTO "status" VALUES(32,5,6,'2015-06-02 13:31:02'); +INSERT INTO "status" VALUES(32,5,6,'2015-06-02 13:32:02'); +INSERT INTO "status" VALUES(32,5,6,'2015-06-02 13:33:02'); +INSERT INTO "status" VALUES(32,5,6,'2015-06-02 13:34:02'); +INSERT INTO "status" VALUES(32,5,6,'2015-06-02 13:35:02'); +INSERT INTO "status" VALUES(32,5,6,'2015-06-02 13:36:02'); +INSERT INTO "status" VALUES(32,5,6,'2015-06-02 13:37:02'); +INSERT INTO "status" VALUES(32,5,6,'2015-06-02 13:38:02'); +INSERT INTO "status" VALUES(32,5,6,'2015-06-02 13:39:02'); +INSERT INTO "status" VALUES(32,5,6,'2015-06-02 13:40:02'); +INSERT INTO "status" VALUES(32,5,6,'2015-06-02 13:41:03'); +INSERT INTO "status" VALUES(32,5,6,'2015-06-02 13:42:03'); +INSERT INTO "status" VALUES(32,5,6,'2015-06-02 13:43:03'); +INSERT INTO "status" VALUES(32,5,6,'2015-06-02 13:44:02'); +INSERT INTO "status" VALUES(32,5,6,'2015-06-02 13:45:03'); +INSERT INTO "status" VALUES(32,5,6,'2015-06-02 13:46:02'); +INSERT INTO "status" VALUES(32,5,6,'2015-06-02 13:47:02'); +INSERT INTO "status" VALUES(32,5,6,'2015-06-02 13:48:02'); +INSERT INTO "status" VALUES(32,5,6,'2015-06-02 13:49:02'); +INSERT INTO "status" VALUES(32,5,6,'2015-06-02 13:50:03'); +INSERT INTO "status" VALUES(32,5,6,'2015-06-02 13:51:02'); +INSERT INTO "status" VALUES(32,5,6,'2015-06-02 13:52:02'); +INSERT INTO "status" VALUES(32,5,6,'2015-06-02 13:53:02'); +INSERT INTO "status" VALUES(32,5,6,'2015-06-02 13:54:02'); +INSERT INTO "status" VALUES(32,5,6,'2015-06-02 13:55:03'); +INSERT INTO "status" VALUES(32,5,6,'2015-06-02 13:56:02'); +INSERT INTO "status" VALUES(32,5,6,'2015-06-02 13:57:02'); +INSERT INTO "status" VALUES(32,5,6,'2015-06-02 13:58:02'); +INSERT INTO "status" VALUES(32,5,6,'2015-06-02 13:59:02'); +INSERT INTO "status" VALUES(32,5,6,'2015-06-02 14:00:02'); +INSERT INTO "status" VALUES(32,5,6,'2015-06-02 14:01:02'); +INSERT INTO "status" VALUES(32,5,6,'2015-06-02 14:02:02'); +INSERT INTO "status" VALUES(32,5,6,'2015-06-02 14:03:02'); +INSERT INTO "status" VALUES(32,5,6,'2015-06-02 14:04:02'); +INSERT INTO "status" VALUES(32,5,6,'2015-06-02 14:05:02'); +INSERT INTO "status" VALUES(32,5,6,'2015-06-02 14:06:02'); +INSERT INTO "status" VALUES(32,5,6,'2015-06-02 14:07:02'); +INSERT INTO "status" VALUES(32,5,6,'2015-06-02 14:08:02'); +INSERT INTO "status" VALUES(32,5,6,'2015-06-02 14:09:02'); +INSERT INTO "status" VALUES(32,5,6,'2015-06-02 14:10:02'); +INSERT INTO "status" VALUES(32,5,6,'2015-06-02 14:11:02'); +INSERT INTO "status" VALUES(32,5,6,'2015-06-02 14:12:02'); +INSERT INTO "status" VALUES(32,5,6,'2015-06-02 14:13:02'); +INSERT INTO "status" VALUES(32,5,6,'2015-06-02 14:14:02'); +INSERT INTO "status" VALUES(32,5,6,'2015-06-02 14:15:02'); +INSERT INTO "status" VALUES(32,5,6,'2015-06-02 14:16:02'); +INSERT INTO "status" VALUES(32,5,6,'2015-06-02 14:17:02'); +INSERT INTO "status" VALUES(32,5,6,'2015-06-02 14:18:02'); +INSERT INTO "status" VALUES(32,5,6,'2015-06-02 14:19:02'); +INSERT INTO "status" VALUES(32,5,6,'2015-06-02 14:20:03'); +INSERT INTO "status" VALUES(32,5,6,'2015-06-02 14:21:02'); +INSERT INTO "status" VALUES(32,5,6,'2015-06-02 14:22:02'); +INSERT INTO "status" VALUES(32,5,6,'2015-06-02 14:23:03'); +INSERT INTO "status" VALUES(32,5,6,'2015-06-02 14:24:02'); +INSERT INTO "status" VALUES(32,5,6,'2015-06-02 14:25:01'); +INSERT INTO "status" VALUES(32,5,6,'2015-06-02 14:26:02'); +INSERT INTO "status" VALUES(32,5,6,'2015-06-02 14:27:02'); +INSERT INTO "status" VALUES(32,5,6,'2015-06-02 14:28:02'); +INSERT INTO "status" VALUES(32,5,6,'2015-06-02 14:29:02'); +INSERT INTO "status" VALUES(32,5,6,'2015-06-02 14:30:02'); +INSERT INTO "status" VALUES(32,5,6,'2015-06-02 14:31:02'); +INSERT INTO "status" VALUES(32,5,6,'2015-06-02 14:32:02'); +INSERT INTO "status" VALUES(32,5,6,'2015-06-02 14:33:02'); +INSERT INTO "status" VALUES(32,5,6,'2015-06-02 14:34:02'); +INSERT INTO "status" VALUES(32,5,6,'2015-06-02 14:35:02'); +INSERT INTO "status" VALUES(32,5,6,'2015-06-02 14:36:02'); +INSERT INTO "status" VALUES(32,5,6,'2015-06-02 14:37:02'); +INSERT INTO "status" VALUES(32,5,6,'2015-06-02 14:38:02'); +INSERT INTO "status" VALUES(32,5,6,'2015-06-02 14:39:02'); +INSERT INTO "status" VALUES(32,5,6,'2015-06-02 14:40:02'); +INSERT INTO "status" VALUES(32,5,6,'2015-06-02 14:41:02'); +INSERT INTO "status" VALUES(32,5,6,'2015-06-02 14:42:02'); +INSERT INTO "status" VALUES(32,5,6,'2015-06-02 14:43:02'); +INSERT INTO "status" VALUES(32,5,6,'2015-06-02 14:44:02'); +INSERT INTO "status" VALUES(32,5,6,'2015-06-02 14:45:02'); +INSERT INTO "status" VALUES(32,5,6,'2015-06-02 14:46:02'); +INSERT INTO "status" VALUES(32,5,6,'2015-06-02 14:47:02'); +INSERT INTO "status" VALUES(32,5,6,'2015-06-02 14:48:02'); +INSERT INTO "status" VALUES(33,4,11,'2015-06-02 12:46:02'); +INSERT INTO "status" VALUES(33,4,11,'2015-06-02 12:47:02'); +INSERT INTO "status" VALUES(33,4,11,'2015-06-02 12:48:02'); +INSERT INTO "status" VALUES(33,4,11,'2015-06-02 12:49:02'); +INSERT INTO "status" VALUES(33,4,11,'2015-06-02 12:50:02'); +INSERT INTO "status" VALUES(33,4,11,'2015-06-02 12:51:02'); +INSERT INTO "status" VALUES(33,4,11,'2015-06-02 12:52:02'); +INSERT INTO "status" VALUES(33,4,11,'2015-06-02 12:53:03'); +INSERT INTO "status" VALUES(33,4,11,'2015-06-02 12:54:02'); +INSERT INTO "status" VALUES(33,4,11,'2015-06-02 12:55:02'); +INSERT INTO "status" VALUES(33,4,11,'2015-06-02 12:56:01'); +INSERT INTO "status" VALUES(33,4,11,'2015-06-02 12:57:02'); +INSERT INTO "status" VALUES(33,4,11,'2015-06-02 12:58:02'); +INSERT INTO "status" VALUES(33,4,11,'2015-06-02 12:59:02'); +INSERT INTO "status" VALUES(33,4,11,'2015-06-02 13:00:01'); +INSERT INTO "status" VALUES(33,4,11,'2015-06-02 13:01:03'); +INSERT INTO "status" VALUES(33,4,11,'2015-06-02 13:02:02'); +INSERT INTO "status" VALUES(33,4,11,'2015-06-02 13:03:02'); +INSERT INTO "status" VALUES(33,4,11,'2015-06-02 13:04:02'); +INSERT INTO "status" VALUES(33,4,11,'2015-06-02 13:05:03'); +INSERT INTO "status" VALUES(33,4,11,'2015-06-02 13:06:02'); +INSERT INTO "status" VALUES(33,4,11,'2015-06-02 13:07:02'); +INSERT INTO "status" VALUES(33,4,11,'2015-06-02 13:08:02'); +INSERT INTO "status" VALUES(33,4,11,'2015-06-02 13:09:02'); +INSERT INTO "status" VALUES(33,4,11,'2015-06-02 13:10:02'); +INSERT INTO "status" VALUES(33,4,11,'2015-06-02 13:11:02'); +INSERT INTO "status" VALUES(33,4,11,'2015-06-02 13:12:02'); +INSERT INTO "status" VALUES(33,4,11,'2015-06-02 13:13:03'); +INSERT INTO "status" VALUES(33,4,11,'2015-06-02 13:14:03'); +INSERT INTO "status" VALUES(33,4,11,'2015-06-02 13:15:02'); +INSERT INTO "status" VALUES(33,4,11,'2015-06-02 13:16:02'); +INSERT INTO "status" VALUES(33,4,11,'2015-06-02 13:17:02'); +INSERT INTO "status" VALUES(33,4,11,'2015-06-02 13:18:02'); +INSERT INTO "status" VALUES(33,4,11,'2015-06-02 13:19:02'); +INSERT INTO "status" VALUES(33,4,11,'2015-06-02 13:20:02'); +INSERT INTO "status" VALUES(33,4,11,'2015-06-02 13:21:02'); +INSERT INTO "status" VALUES(33,4,11,'2015-06-02 13:22:02'); +INSERT INTO "status" VALUES(33,4,11,'2015-06-02 13:23:02'); +INSERT INTO "status" VALUES(33,4,11,'2015-06-02 13:24:02'); +INSERT INTO "status" VALUES(33,4,11,'2015-06-02 13:25:02'); +INSERT INTO "status" VALUES(33,4,11,'2015-06-02 13:26:02'); +INSERT INTO "status" VALUES(33,4,11,'2015-06-02 13:27:02'); +INSERT INTO "status" VALUES(33,4,11,'2015-06-02 13:28:02'); +INSERT INTO "status" VALUES(33,4,11,'2015-06-02 13:29:02'); +INSERT INTO "status" VALUES(33,4,11,'2015-06-02 13:30:02'); +INSERT INTO "status" VALUES(33,4,11,'2015-06-02 13:31:02'); +INSERT INTO "status" VALUES(33,4,11,'2015-06-02 13:32:02'); +INSERT INTO "status" VALUES(33,4,11,'2015-06-02 13:33:02'); +INSERT INTO "status" VALUES(33,4,11,'2015-06-02 13:34:02'); +INSERT INTO "status" VALUES(33,4,11,'2015-06-02 13:35:02'); +INSERT INTO "status" VALUES(33,4,11,'2015-06-02 13:36:02'); +INSERT INTO "status" VALUES(33,4,11,'2015-06-02 13:37:02'); +INSERT INTO "status" VALUES(33,4,11,'2015-06-02 13:38:02'); +INSERT INTO "status" VALUES(33,4,11,'2015-06-02 13:39:02'); +INSERT INTO "status" VALUES(33,4,11,'2015-06-02 13:40:02'); +INSERT INTO "status" VALUES(33,4,11,'2015-06-02 13:41:03'); +INSERT INTO "status" VALUES(33,4,11,'2015-06-02 13:42:03'); +INSERT INTO "status" VALUES(33,4,11,'2015-06-02 13:43:03'); +INSERT INTO "status" VALUES(33,4,11,'2015-06-02 13:44:02'); +INSERT INTO "status" VALUES(33,4,11,'2015-06-02 13:45:03'); +INSERT INTO "status" VALUES(33,4,11,'2015-06-02 13:46:02'); +INSERT INTO "status" VALUES(33,4,11,'2015-06-02 13:47:02'); +INSERT INTO "status" VALUES(33,4,11,'2015-06-02 13:48:02'); +INSERT INTO "status" VALUES(33,4,11,'2015-06-02 13:49:02'); +INSERT INTO "status" VALUES(33,4,11,'2015-06-02 13:50:03'); +INSERT INTO "status" VALUES(33,4,11,'2015-06-02 13:51:02'); +INSERT INTO "status" VALUES(33,4,11,'2015-06-02 13:52:02'); +INSERT INTO "status" VALUES(33,4,11,'2015-06-02 13:53:02'); +INSERT INTO "status" VALUES(33,4,11,'2015-06-02 13:54:02'); +INSERT INTO "status" VALUES(33,4,11,'2015-06-02 13:55:03'); +INSERT INTO "status" VALUES(33,4,11,'2015-06-02 13:56:02'); +INSERT INTO "status" VALUES(33,4,11,'2015-06-02 13:57:02'); +INSERT INTO "status" VALUES(33,4,11,'2015-06-02 13:58:02'); +INSERT INTO "status" VALUES(33,4,11,'2015-06-02 13:59:02'); +INSERT INTO "status" VALUES(33,4,11,'2015-06-02 14:00:02'); +INSERT INTO "status" VALUES(33,4,11,'2015-06-02 14:01:02'); +INSERT INTO "status" VALUES(33,4,11,'2015-06-02 14:02:02'); +INSERT INTO "status" VALUES(33,4,11,'2015-06-02 14:03:02'); +INSERT INTO "status" VALUES(33,4,11,'2015-06-02 14:04:02'); +INSERT INTO "status" VALUES(33,4,11,'2015-06-02 14:05:02'); +INSERT INTO "status" VALUES(33,4,11,'2015-06-02 14:06:02'); +INSERT INTO "status" VALUES(33,4,11,'2015-06-02 14:07:02'); +INSERT INTO "status" VALUES(33,4,11,'2015-06-02 14:08:02'); +INSERT INTO "status" VALUES(33,4,11,'2015-06-02 14:09:02'); +INSERT INTO "status" VALUES(33,4,11,'2015-06-02 14:10:02'); +INSERT INTO "status" VALUES(33,4,11,'2015-06-02 14:11:02'); +INSERT INTO "status" VALUES(33,4,11,'2015-06-02 14:12:02'); +INSERT INTO "status" VALUES(33,4,11,'2015-06-02 14:13:02'); +INSERT INTO "status" VALUES(33,4,11,'2015-06-02 14:14:02'); +INSERT INTO "status" VALUES(33,4,11,'2015-06-02 14:15:02'); +INSERT INTO "status" VALUES(33,4,11,'2015-06-02 14:16:02'); +INSERT INTO "status" VALUES(33,4,11,'2015-06-02 14:17:02'); +INSERT INTO "status" VALUES(33,4,11,'2015-06-02 14:18:02'); +INSERT INTO "status" VALUES(33,4,11,'2015-06-02 14:19:02'); +INSERT INTO "status" VALUES(33,4,11,'2015-06-02 14:20:03'); +INSERT INTO "status" VALUES(33,4,11,'2015-06-02 14:21:02'); +INSERT INTO "status" VALUES(33,4,11,'2015-06-02 14:22:02'); +INSERT INTO "status" VALUES(33,4,11,'2015-06-02 14:23:03'); +INSERT INTO "status" VALUES(33,4,11,'2015-06-02 14:24:02'); +INSERT INTO "status" VALUES(33,4,11,'2015-06-02 14:25:01'); +INSERT INTO "status" VALUES(33,4,11,'2015-06-02 14:26:02'); +INSERT INTO "status" VALUES(33,4,11,'2015-06-02 14:27:02'); +INSERT INTO "status" VALUES(33,4,11,'2015-06-02 14:28:02'); +INSERT INTO "status" VALUES(33,4,11,'2015-06-02 14:29:02'); +INSERT INTO "status" VALUES(33,4,11,'2015-06-02 14:30:02'); +INSERT INTO "status" VALUES(33,4,11,'2015-06-02 14:31:02'); +INSERT INTO "status" VALUES(33,4,11,'2015-06-02 14:32:02'); +INSERT INTO "status" VALUES(33,4,11,'2015-06-02 14:33:02'); +INSERT INTO "status" VALUES(33,4,11,'2015-06-02 14:34:02'); +INSERT INTO "status" VALUES(33,4,11,'2015-06-02 14:35:02'); +INSERT INTO "status" VALUES(33,4,11,'2015-06-02 14:36:02'); +INSERT INTO "status" VALUES(33,4,11,'2015-06-02 14:37:02'); +INSERT INTO "status" VALUES(33,4,11,'2015-06-02 14:38:02'); +INSERT INTO "status" VALUES(33,4,11,'2015-06-02 14:39:02'); +INSERT INTO "status" VALUES(33,4,11,'2015-06-02 14:40:02'); +INSERT INTO "status" VALUES(33,4,11,'2015-06-02 14:41:02'); +INSERT INTO "status" VALUES(33,4,11,'2015-06-02 14:42:02'); +INSERT INTO "status" VALUES(33,4,11,'2015-06-02 14:43:02'); +INSERT INTO "status" VALUES(33,4,11,'2015-06-02 14:44:02'); +INSERT INTO "status" VALUES(33,4,11,'2015-06-02 14:45:02'); +INSERT INTO "status" VALUES(33,4,11,'2015-06-02 14:46:02'); +INSERT INTO "status" VALUES(33,4,11,'2015-06-02 14:47:02'); +INSERT INTO "status" VALUES(33,4,11,'2015-06-02 14:48:02'); +INSERT INTO "status" VALUES(34,4,19,'2015-06-02 12:46:02'); +INSERT INTO "status" VALUES(34,4,19,'2015-06-02 12:47:02'); +INSERT INTO "status" VALUES(34,4,19,'2015-06-02 12:48:02'); +INSERT INTO "status" VALUES(34,4,19,'2015-06-02 12:49:02'); +INSERT INTO "status" VALUES(34,4,19,'2015-06-02 12:50:02'); +INSERT INTO "status" VALUES(34,4,19,'2015-06-02 12:51:02'); +INSERT INTO "status" VALUES(34,4,19,'2015-06-02 12:52:02'); +INSERT INTO "status" VALUES(34,4,19,'2015-06-02 12:53:03'); +INSERT INTO "status" VALUES(34,4,19,'2015-06-02 12:54:02'); +INSERT INTO "status" VALUES(34,4,19,'2015-06-02 12:55:02'); +INSERT INTO "status" VALUES(34,4,19,'2015-06-02 12:56:01'); +INSERT INTO "status" VALUES(34,4,19,'2015-06-02 12:57:02'); +INSERT INTO "status" VALUES(34,4,19,'2015-06-02 12:58:02'); +INSERT INTO "status" VALUES(34,4,19,'2015-06-02 12:59:02'); +INSERT INTO "status" VALUES(34,4,19,'2015-06-02 13:00:01'); +INSERT INTO "status" VALUES(34,4,19,'2015-06-02 13:01:03'); +INSERT INTO "status" VALUES(34,4,19,'2015-06-02 13:02:02'); +INSERT INTO "status" VALUES(34,4,19,'2015-06-02 13:03:02'); +INSERT INTO "status" VALUES(34,4,19,'2015-06-02 13:04:02'); +INSERT INTO "status" VALUES(34,4,19,'2015-06-02 13:05:03'); +INSERT INTO "status" VALUES(34,4,19,'2015-06-02 13:06:02'); +INSERT INTO "status" VALUES(34,4,19,'2015-06-02 13:07:02'); +INSERT INTO "status" VALUES(34,4,19,'2015-06-02 13:08:02'); +INSERT INTO "status" VALUES(34,4,19,'2015-06-02 13:09:02'); +INSERT INTO "status" VALUES(34,4,19,'2015-06-02 13:10:02'); +INSERT INTO "status" VALUES(34,4,19,'2015-06-02 13:11:02'); +INSERT INTO "status" VALUES(34,4,19,'2015-06-02 13:12:02'); +INSERT INTO "status" VALUES(34,4,19,'2015-06-02 13:13:03'); +INSERT INTO "status" VALUES(34,4,19,'2015-06-02 13:14:03'); +INSERT INTO "status" VALUES(34,4,19,'2015-06-02 13:15:02'); +INSERT INTO "status" VALUES(34,4,19,'2015-06-02 13:16:02'); +INSERT INTO "status" VALUES(34,4,19,'2015-06-02 13:17:02'); +INSERT INTO "status" VALUES(34,4,19,'2015-06-02 13:18:02'); +INSERT INTO "status" VALUES(34,4,19,'2015-06-02 13:19:02'); +INSERT INTO "status" VALUES(34,4,19,'2015-06-02 13:20:02'); +INSERT INTO "status" VALUES(34,4,19,'2015-06-02 13:21:02'); +INSERT INTO "status" VALUES(34,4,19,'2015-06-02 13:22:02'); +INSERT INTO "status" VALUES(34,4,19,'2015-06-02 13:23:02'); +INSERT INTO "status" VALUES(34,4,19,'2015-06-02 13:24:02'); +INSERT INTO "status" VALUES(34,4,19,'2015-06-02 13:25:02'); +INSERT INTO "status" VALUES(34,4,19,'2015-06-02 13:26:02'); +INSERT INTO "status" VALUES(34,4,19,'2015-06-02 13:27:02'); +INSERT INTO "status" VALUES(34,4,19,'2015-06-02 13:28:02'); +INSERT INTO "status" VALUES(34,4,19,'2015-06-02 13:29:02'); +INSERT INTO "status" VALUES(34,4,19,'2015-06-02 13:30:02'); +INSERT INTO "status" VALUES(34,4,19,'2015-06-02 13:31:02'); +INSERT INTO "status" VALUES(34,4,19,'2015-06-02 13:32:02'); +INSERT INTO "status" VALUES(34,4,19,'2015-06-02 13:33:02'); +INSERT INTO "status" VALUES(34,4,19,'2015-06-02 13:34:02'); +INSERT INTO "status" VALUES(34,4,19,'2015-06-02 13:35:02'); +INSERT INTO "status" VALUES(34,4,19,'2015-06-02 13:36:02'); +INSERT INTO "status" VALUES(34,4,19,'2015-06-02 13:37:02'); +INSERT INTO "status" VALUES(34,4,19,'2015-06-02 13:38:02'); +INSERT INTO "status" VALUES(34,4,19,'2015-06-02 13:39:02'); +INSERT INTO "status" VALUES(34,4,19,'2015-06-02 13:40:02'); +INSERT INTO "status" VALUES(34,4,19,'2015-06-02 13:41:03'); +INSERT INTO "status" VALUES(34,4,19,'2015-06-02 13:42:03'); +INSERT INTO "status" VALUES(34,4,19,'2015-06-02 13:43:03'); +INSERT INTO "status" VALUES(34,4,19,'2015-06-02 13:44:02'); +INSERT INTO "status" VALUES(34,4,19,'2015-06-02 13:45:03'); +INSERT INTO "status" VALUES(34,4,19,'2015-06-02 13:46:02'); +INSERT INTO "status" VALUES(34,4,19,'2015-06-02 13:47:02'); +INSERT INTO "status" VALUES(34,4,19,'2015-06-02 13:48:02'); +INSERT INTO "status" VALUES(34,4,19,'2015-06-02 13:49:02'); +INSERT INTO "status" VALUES(34,4,19,'2015-06-02 13:50:03'); +INSERT INTO "status" VALUES(34,4,19,'2015-06-02 13:51:02'); +INSERT INTO "status" VALUES(34,4,19,'2015-06-02 13:52:02'); +INSERT INTO "status" VALUES(34,4,19,'2015-06-02 13:53:02'); +INSERT INTO "status" VALUES(34,4,19,'2015-06-02 13:54:02'); +INSERT INTO "status" VALUES(34,4,19,'2015-06-02 13:55:03'); +INSERT INTO "status" VALUES(34,4,19,'2015-06-02 13:56:02'); +INSERT INTO "status" VALUES(34,4,19,'2015-06-02 13:57:02'); +INSERT INTO "status" VALUES(34,4,19,'2015-06-02 13:58:02'); +INSERT INTO "status" VALUES(34,4,19,'2015-06-02 13:59:02'); +INSERT INTO "status" VALUES(34,4,19,'2015-06-02 14:00:02'); +INSERT INTO "status" VALUES(34,4,19,'2015-06-02 14:01:02'); +INSERT INTO "status" VALUES(34,4,19,'2015-06-02 14:02:02'); +INSERT INTO "status" VALUES(34,4,19,'2015-06-02 14:03:02'); +INSERT INTO "status" VALUES(34,4,19,'2015-06-02 14:04:02'); +INSERT INTO "status" VALUES(34,4,19,'2015-06-02 14:05:02'); +INSERT INTO "status" VALUES(34,4,19,'2015-06-02 14:06:02'); +INSERT INTO "status" VALUES(34,4,19,'2015-06-02 14:07:02'); +INSERT INTO "status" VALUES(34,4,19,'2015-06-02 14:08:02'); +INSERT INTO "status" VALUES(34,4,19,'2015-06-02 14:09:02'); +INSERT INTO "status" VALUES(34,4,19,'2015-06-02 14:10:02'); +INSERT INTO "status" VALUES(34,4,19,'2015-06-02 14:11:02'); +INSERT INTO "status" VALUES(34,4,19,'2015-06-02 14:12:02'); +INSERT INTO "status" VALUES(34,4,19,'2015-06-02 14:13:02'); +INSERT INTO "status" VALUES(34,4,19,'2015-06-02 14:14:02'); +INSERT INTO "status" VALUES(34,4,19,'2015-06-02 14:15:02'); +INSERT INTO "status" VALUES(34,4,19,'2015-06-02 14:16:02'); +INSERT INTO "status" VALUES(34,4,19,'2015-06-02 14:17:02'); +INSERT INTO "status" VALUES(34,4,19,'2015-06-02 14:18:02'); +INSERT INTO "status" VALUES(34,4,19,'2015-06-02 14:19:02'); +INSERT INTO "status" VALUES(34,4,19,'2015-06-02 14:20:03'); +INSERT INTO "status" VALUES(34,4,19,'2015-06-02 14:21:02'); +INSERT INTO "status" VALUES(34,4,19,'2015-06-02 14:22:02'); +INSERT INTO "status" VALUES(34,4,19,'2015-06-02 14:23:03'); +INSERT INTO "status" VALUES(34,4,19,'2015-06-02 14:24:02'); +INSERT INTO "status" VALUES(34,4,19,'2015-06-02 14:25:01'); +INSERT INTO "status" VALUES(34,4,19,'2015-06-02 14:26:02'); +INSERT INTO "status" VALUES(34,4,19,'2015-06-02 14:27:02'); +INSERT INTO "status" VALUES(34,4,19,'2015-06-02 14:28:02'); +INSERT INTO "status" VALUES(34,4,19,'2015-06-02 14:29:02'); +INSERT INTO "status" VALUES(34,4,19,'2015-06-02 14:30:02'); +INSERT INTO "status" VALUES(34,4,19,'2015-06-02 14:31:02'); +INSERT INTO "status" VALUES(34,4,19,'2015-06-02 14:32:02'); +INSERT INTO "status" VALUES(34,4,19,'2015-06-02 14:33:02'); +INSERT INTO "status" VALUES(34,4,19,'2015-06-02 14:34:02'); +INSERT INTO "status" VALUES(34,4,19,'2015-06-02 14:35:02'); +INSERT INTO "status" VALUES(34,4,19,'2015-06-02 14:36:02'); +INSERT INTO "status" VALUES(34,4,19,'2015-06-02 14:37:02'); +INSERT INTO "status" VALUES(34,4,19,'2015-06-02 14:38:02'); +INSERT INTO "status" VALUES(34,4,19,'2015-06-02 14:39:02'); +INSERT INTO "status" VALUES(34,4,19,'2015-06-02 14:40:02'); +INSERT INTO "status" VALUES(34,4,19,'2015-06-02 14:41:02'); +INSERT INTO "status" VALUES(34,4,19,'2015-06-02 14:42:02'); +INSERT INTO "status" VALUES(34,4,19,'2015-06-02 14:43:02'); +INSERT INTO "status" VALUES(34,4,19,'2015-06-02 14:44:02'); +INSERT INTO "status" VALUES(34,4,19,'2015-06-02 14:45:02'); +INSERT INTO "status" VALUES(34,4,19,'2015-06-02 14:46:02'); +INSERT INTO "status" VALUES(34,4,19,'2015-06-02 14:47:02'); +INSERT INTO "status" VALUES(34,4,19,'2015-06-02 14:48:02'); +INSERT INTO "status" VALUES(35,8,3,'2015-06-02 12:46:02'); +INSERT INTO "status" VALUES(35,8,3,'2015-06-02 12:47:02'); +INSERT INTO "status" VALUES(35,8,3,'2015-06-02 12:48:02'); +INSERT INTO "status" VALUES(35,8,3,'2015-06-02 12:49:02'); +INSERT INTO "status" VALUES(35,8,3,'2015-06-02 12:50:02'); +INSERT INTO "status" VALUES(35,8,3,'2015-06-02 12:51:02'); +INSERT INTO "status" VALUES(35,8,3,'2015-06-02 12:52:02'); +INSERT INTO "status" VALUES(35,8,3,'2015-06-02 12:53:03'); +INSERT INTO "status" VALUES(35,8,3,'2015-06-02 12:54:02'); +INSERT INTO "status" VALUES(35,8,3,'2015-06-02 12:55:02'); +INSERT INTO "status" VALUES(35,8,3,'2015-06-02 12:56:01'); +INSERT INTO "status" VALUES(35,8,3,'2015-06-02 12:57:02'); +INSERT INTO "status" VALUES(35,8,3,'2015-06-02 12:58:02'); +INSERT INTO "status" VALUES(35,8,3,'2015-06-02 12:59:02'); +INSERT INTO "status" VALUES(35,8,3,'2015-06-02 13:00:01'); +INSERT INTO "status" VALUES(35,8,3,'2015-06-02 13:01:03'); +INSERT INTO "status" VALUES(35,8,3,'2015-06-02 13:02:02'); +INSERT INTO "status" VALUES(35,8,3,'2015-06-02 13:03:02'); +INSERT INTO "status" VALUES(35,8,3,'2015-06-02 13:04:02'); +INSERT INTO "status" VALUES(35,8,3,'2015-06-02 13:05:03'); +INSERT INTO "status" VALUES(35,8,3,'2015-06-02 13:06:02'); +INSERT INTO "status" VALUES(35,8,3,'2015-06-02 13:07:02'); +INSERT INTO "status" VALUES(35,8,3,'2015-06-02 13:08:02'); +INSERT INTO "status" VALUES(35,8,3,'2015-06-02 13:09:02'); +INSERT INTO "status" VALUES(35,8,3,'2015-06-02 13:10:02'); +INSERT INTO "status" VALUES(35,8,3,'2015-06-02 13:11:02'); +INSERT INTO "status" VALUES(35,8,3,'2015-06-02 13:12:02'); +INSERT INTO "status" VALUES(35,8,3,'2015-06-02 13:13:03'); +INSERT INTO "status" VALUES(35,8,3,'2015-06-02 13:14:03'); +INSERT INTO "status" VALUES(35,8,3,'2015-06-02 13:15:02'); +INSERT INTO "status" VALUES(35,9,2,'2015-06-02 13:16:02'); +INSERT INTO "status" VALUES(35,9,2,'2015-06-02 13:17:02'); +INSERT INTO "status" VALUES(35,9,2,'2015-06-02 13:18:02'); +INSERT INTO "status" VALUES(35,9,2,'2015-06-02 13:19:02'); +INSERT INTO "status" VALUES(35,9,2,'2015-06-02 13:20:02'); +INSERT INTO "status" VALUES(35,9,2,'2015-06-02 13:21:02'); +INSERT INTO "status" VALUES(35,9,2,'2015-06-02 13:22:02'); +INSERT INTO "status" VALUES(35,9,2,'2015-06-02 13:23:02'); +INSERT INTO "status" VALUES(35,9,2,'2015-06-02 13:24:02'); +INSERT INTO "status" VALUES(35,9,2,'2015-06-02 13:25:02'); +INSERT INTO "status" VALUES(35,9,2,'2015-06-02 13:26:02'); +INSERT INTO "status" VALUES(35,9,2,'2015-06-02 13:27:02'); +INSERT INTO "status" VALUES(35,9,2,'2015-06-02 13:28:02'); +INSERT INTO "status" VALUES(35,9,2,'2015-06-02 13:29:02'); +INSERT INTO "status" VALUES(35,9,2,'2015-06-02 13:30:02'); +INSERT INTO "status" VALUES(35,9,2,'2015-06-02 13:31:02'); +INSERT INTO "status" VALUES(35,9,2,'2015-06-02 13:32:02'); +INSERT INTO "status" VALUES(35,9,2,'2015-06-02 13:33:02'); +INSERT INTO "status" VALUES(35,9,2,'2015-06-02 13:34:02'); +INSERT INTO "status" VALUES(35,9,2,'2015-06-02 13:35:02'); +INSERT INTO "status" VALUES(35,9,2,'2015-06-02 13:36:02'); +INSERT INTO "status" VALUES(35,9,2,'2015-06-02 13:37:02'); +INSERT INTO "status" VALUES(35,9,2,'2015-06-02 13:38:02'); +INSERT INTO "status" VALUES(35,9,2,'2015-06-02 13:39:02'); +INSERT INTO "status" VALUES(35,9,2,'2015-06-02 13:40:02'); +INSERT INTO "status" VALUES(35,9,2,'2015-06-02 13:41:03'); +INSERT INTO "status" VALUES(35,9,2,'2015-06-02 13:42:03'); +INSERT INTO "status" VALUES(35,9,2,'2015-06-02 13:43:03'); +INSERT INTO "status" VALUES(35,9,2,'2015-06-02 13:44:02'); +INSERT INTO "status" VALUES(35,9,2,'2015-06-02 13:45:03'); +INSERT INTO "status" VALUES(35,9,2,'2015-06-02 13:46:02'); +INSERT INTO "status" VALUES(35,9,2,'2015-06-02 13:47:02'); +INSERT INTO "status" VALUES(35,9,2,'2015-06-02 13:48:02'); +INSERT INTO "status" VALUES(35,9,2,'2015-06-02 13:49:02'); +INSERT INTO "status" VALUES(35,9,2,'2015-06-02 13:50:03'); +INSERT INTO "status" VALUES(35,9,2,'2015-06-02 13:51:02'); +INSERT INTO "status" VALUES(35,9,2,'2015-06-02 13:52:02'); +INSERT INTO "status" VALUES(35,9,2,'2015-06-02 13:53:02'); +INSERT INTO "status" VALUES(35,9,2,'2015-06-02 13:54:02'); +INSERT INTO "status" VALUES(35,9,2,'2015-06-02 13:55:03'); +INSERT INTO "status" VALUES(35,9,2,'2015-06-02 13:56:02'); +INSERT INTO "status" VALUES(35,9,2,'2015-06-02 13:57:02'); +INSERT INTO "status" VALUES(35,9,2,'2015-06-02 13:58:02'); +INSERT INTO "status" VALUES(35,9,2,'2015-06-02 13:59:02'); +INSERT INTO "status" VALUES(35,9,2,'2015-06-02 14:00:02'); +INSERT INTO "status" VALUES(35,9,2,'2015-06-02 14:01:02'); +INSERT INTO "status" VALUES(35,9,2,'2015-06-02 14:02:02'); +INSERT INTO "status" VALUES(35,9,2,'2015-06-02 14:03:02'); +INSERT INTO "status" VALUES(35,9,2,'2015-06-02 14:04:02'); +INSERT INTO "status" VALUES(35,9,2,'2015-06-02 14:05:02'); +INSERT INTO "status" VALUES(35,9,2,'2015-06-02 14:06:02'); +INSERT INTO "status" VALUES(35,9,2,'2015-06-02 14:07:02'); +INSERT INTO "status" VALUES(35,9,2,'2015-06-02 14:08:02'); +INSERT INTO "status" VALUES(35,9,2,'2015-06-02 14:09:02'); +INSERT INTO "status" VALUES(35,9,2,'2015-06-02 14:10:02'); +INSERT INTO "status" VALUES(35,9,2,'2015-06-02 14:11:02'); +INSERT INTO "status" VALUES(35,9,2,'2015-06-02 14:12:02'); +INSERT INTO "status" VALUES(35,9,2,'2015-06-02 14:13:02'); +INSERT INTO "status" VALUES(35,9,2,'2015-06-02 14:14:02'); +INSERT INTO "status" VALUES(35,9,2,'2015-06-02 14:15:02'); +INSERT INTO "status" VALUES(35,9,2,'2015-06-02 14:16:02'); +INSERT INTO "status" VALUES(35,9,2,'2015-06-02 14:17:02'); +INSERT INTO "status" VALUES(35,9,2,'2015-06-02 14:18:02'); +INSERT INTO "status" VALUES(35,9,2,'2015-06-02 14:19:02'); +INSERT INTO "status" VALUES(35,9,2,'2015-06-02 14:20:03'); +INSERT INTO "status" VALUES(35,9,2,'2015-06-02 14:21:02'); +INSERT INTO "status" VALUES(35,9,2,'2015-06-02 14:22:02'); +INSERT INTO "status" VALUES(35,9,2,'2015-06-02 14:23:03'); +INSERT INTO "status" VALUES(35,9,2,'2015-06-02 14:24:02'); +INSERT INTO "status" VALUES(35,9,2,'2015-06-02 14:25:01'); +INSERT INTO "status" VALUES(35,9,2,'2015-06-02 14:26:02'); +INSERT INTO "status" VALUES(35,9,2,'2015-06-02 14:27:02'); +INSERT INTO "status" VALUES(35,9,2,'2015-06-02 14:28:02'); +INSERT INTO "status" VALUES(35,9,2,'2015-06-02 14:29:02'); +INSERT INTO "status" VALUES(35,9,2,'2015-06-02 14:30:02'); +INSERT INTO "status" VALUES(35,9,2,'2015-06-02 14:31:02'); +INSERT INTO "status" VALUES(35,9,2,'2015-06-02 14:32:02'); +INSERT INTO "status" VALUES(35,9,2,'2015-06-02 14:33:02'); +INSERT INTO "status" VALUES(35,9,2,'2015-06-02 14:34:02'); +INSERT INTO "status" VALUES(35,9,2,'2015-06-02 14:35:02'); +INSERT INTO "status" VALUES(35,9,2,'2015-06-02 14:36:02'); +INSERT INTO "status" VALUES(35,9,2,'2015-06-02 14:37:02'); +INSERT INTO "status" VALUES(35,9,2,'2015-06-02 14:38:02'); +INSERT INTO "status" VALUES(35,9,2,'2015-06-02 14:39:02'); +INSERT INTO "status" VALUES(35,9,2,'2015-06-02 14:40:02'); +INSERT INTO "status" VALUES(35,9,2,'2015-06-02 14:41:02'); +INSERT INTO "status" VALUES(35,9,2,'2015-06-02 14:42:02'); +INSERT INTO "status" VALUES(35,9,2,'2015-06-02 14:43:02'); +INSERT INTO "status" VALUES(35,9,2,'2015-06-02 14:44:02'); +INSERT INTO "status" VALUES(35,9,2,'2015-06-02 14:45:02'); +INSERT INTO "status" VALUES(35,9,2,'2015-06-02 14:46:02'); +INSERT INTO "status" VALUES(35,9,2,'2015-06-02 14:47:02'); +INSERT INTO "status" VALUES(35,9,2,'2015-06-02 14:48:02'); +INSERT INTO "status" VALUES(36,7,8,'2015-06-02 12:46:02'); +INSERT INTO "status" VALUES(36,7,8,'2015-06-02 12:47:02'); +INSERT INTO "status" VALUES(36,7,8,'2015-06-02 12:48:02'); +INSERT INTO "status" VALUES(36,7,8,'2015-06-02 12:49:02'); +INSERT INTO "status" VALUES(36,7,8,'2015-06-02 12:50:02'); +INSERT INTO "status" VALUES(36,7,8,'2015-06-02 12:51:02'); +INSERT INTO "status" VALUES(36,7,8,'2015-06-02 12:52:02'); +INSERT INTO "status" VALUES(36,7,8,'2015-06-02 12:53:03'); +INSERT INTO "status" VALUES(36,7,8,'2015-06-02 12:54:02'); +INSERT INTO "status" VALUES(36,7,8,'2015-06-02 12:55:02'); +INSERT INTO "status" VALUES(36,7,8,'2015-06-02 12:56:01'); +INSERT INTO "status" VALUES(36,7,8,'2015-06-02 12:57:02'); +INSERT INTO "status" VALUES(36,8,7,'2015-06-02 12:58:02'); +INSERT INTO "status" VALUES(36,8,7,'2015-06-02 12:59:02'); +INSERT INTO "status" VALUES(36,8,7,'2015-06-02 13:00:01'); +INSERT INTO "status" VALUES(36,8,7,'2015-06-02 13:01:03'); +INSERT INTO "status" VALUES(36,8,7,'2015-06-02 13:02:02'); +INSERT INTO "status" VALUES(36,8,7,'2015-06-02 13:03:02'); +INSERT INTO "status" VALUES(36,8,7,'2015-06-02 13:04:02'); +INSERT INTO "status" VALUES(36,8,7,'2015-06-02 13:05:03'); +INSERT INTO "status" VALUES(36,8,7,'2015-06-02 13:06:02'); +INSERT INTO "status" VALUES(36,8,7,'2015-06-02 13:07:02'); +INSERT INTO "status" VALUES(36,7,8,'2015-06-02 13:08:02'); +INSERT INTO "status" VALUES(36,7,8,'2015-06-02 13:09:02'); +INSERT INTO "status" VALUES(36,7,8,'2015-06-02 13:10:02'); +INSERT INTO "status" VALUES(36,7,8,'2015-06-02 13:11:02'); +INSERT INTO "status" VALUES(36,7,8,'2015-06-02 13:12:02'); +INSERT INTO "status" VALUES(36,8,7,'2015-06-02 13:13:03'); +INSERT INTO "status" VALUES(36,8,7,'2015-06-02 13:14:03'); +INSERT INTO "status" VALUES(36,8,7,'2015-06-02 13:15:02'); +INSERT INTO "status" VALUES(36,8,7,'2015-06-02 13:16:02'); +INSERT INTO "status" VALUES(36,8,7,'2015-06-02 13:17:02'); +INSERT INTO "status" VALUES(36,7,8,'2015-06-02 13:18:02'); +INSERT INTO "status" VALUES(36,7,8,'2015-06-02 13:19:02'); +INSERT INTO "status" VALUES(36,7,8,'2015-06-02 13:20:02'); +INSERT INTO "status" VALUES(36,7,8,'2015-06-02 13:21:02'); +INSERT INTO "status" VALUES(36,7,8,'2015-06-02 13:22:02'); +INSERT INTO "status" VALUES(36,7,8,'2015-06-02 13:23:02'); +INSERT INTO "status" VALUES(36,7,8,'2015-06-02 13:24:02'); +INSERT INTO "status" VALUES(36,7,8,'2015-06-02 13:25:02'); +INSERT INTO "status" VALUES(36,7,8,'2015-06-02 13:26:02'); +INSERT INTO "status" VALUES(36,7,8,'2015-06-02 13:27:02'); +INSERT INTO "status" VALUES(36,7,8,'2015-06-02 13:28:02'); +INSERT INTO "status" VALUES(36,7,8,'2015-06-02 13:29:02'); +INSERT INTO "status" VALUES(36,7,8,'2015-06-02 13:30:02'); +INSERT INTO "status" VALUES(36,7,8,'2015-06-02 13:31:02'); +INSERT INTO "status" VALUES(36,7,8,'2015-06-02 13:32:02'); +INSERT INTO "status" VALUES(36,7,8,'2015-06-02 13:33:02'); +INSERT INTO "status" VALUES(36,7,8,'2015-06-02 13:34:02'); +INSERT INTO "status" VALUES(36,7,8,'2015-06-02 13:35:02'); +INSERT INTO "status" VALUES(36,7,8,'2015-06-02 13:36:02'); +INSERT INTO "status" VALUES(36,7,8,'2015-06-02 13:37:02'); +INSERT INTO "status" VALUES(36,7,8,'2015-06-02 13:38:02'); +INSERT INTO "status" VALUES(36,7,8,'2015-06-02 13:39:02'); +INSERT INTO "status" VALUES(36,7,8,'2015-06-02 13:40:02'); +INSERT INTO "status" VALUES(36,7,8,'2015-06-02 13:41:03'); +INSERT INTO "status" VALUES(36,7,8,'2015-06-02 13:42:03'); +INSERT INTO "status" VALUES(36,7,8,'2015-06-02 13:43:03'); +INSERT INTO "status" VALUES(36,7,8,'2015-06-02 13:44:02'); +INSERT INTO "status" VALUES(36,7,8,'2015-06-02 13:45:03'); +INSERT INTO "status" VALUES(36,7,8,'2015-06-02 13:46:02'); +INSERT INTO "status" VALUES(36,7,8,'2015-06-02 13:47:02'); +INSERT INTO "status" VALUES(36,8,7,'2015-06-02 13:48:02'); +INSERT INTO "status" VALUES(36,8,7,'2015-06-02 13:49:02'); +INSERT INTO "status" VALUES(36,8,7,'2015-06-02 13:50:03'); +INSERT INTO "status" VALUES(36,8,7,'2015-06-02 13:51:02'); +INSERT INTO "status" VALUES(36,8,7,'2015-06-02 13:52:02'); +INSERT INTO "status" VALUES(36,7,8,'2015-06-02 13:53:02'); +INSERT INTO "status" VALUES(36,7,8,'2015-06-02 13:54:02'); +INSERT INTO "status" VALUES(36,7,8,'2015-06-02 13:55:03'); +INSERT INTO "status" VALUES(36,7,8,'2015-06-02 13:56:02'); +INSERT INTO "status" VALUES(36,7,8,'2015-06-02 13:57:02'); +INSERT INTO "status" VALUES(36,7,8,'2015-06-02 13:58:02'); +INSERT INTO "status" VALUES(36,7,8,'2015-06-02 13:59:02'); +INSERT INTO "status" VALUES(36,7,8,'2015-06-02 14:00:02'); +INSERT INTO "status" VALUES(36,7,8,'2015-06-02 14:01:02'); +INSERT INTO "status" VALUES(36,7,8,'2015-06-02 14:02:02'); +INSERT INTO "status" VALUES(36,8,7,'2015-06-02 14:03:02'); +INSERT INTO "status" VALUES(36,8,7,'2015-06-02 14:04:02'); +INSERT INTO "status" VALUES(36,8,7,'2015-06-02 14:05:02'); +INSERT INTO "status" VALUES(36,8,7,'2015-06-02 14:06:02'); +INSERT INTO "status" VALUES(36,8,7,'2015-06-02 14:07:02'); +INSERT INTO "status" VALUES(36,8,7,'2015-06-02 14:08:02'); +INSERT INTO "status" VALUES(36,8,7,'2015-06-02 14:09:02'); +INSERT INTO "status" VALUES(36,8,7,'2015-06-02 14:10:02'); +INSERT INTO "status" VALUES(36,8,7,'2015-06-02 14:11:02'); +INSERT INTO "status" VALUES(36,8,7,'2015-06-02 14:12:02'); +INSERT INTO "status" VALUES(36,7,8,'2015-06-02 14:13:02'); +INSERT INTO "status" VALUES(36,7,8,'2015-06-02 14:14:02'); +INSERT INTO "status" VALUES(36,7,8,'2015-06-02 14:15:02'); +INSERT INTO "status" VALUES(36,7,8,'2015-06-02 14:16:02'); +INSERT INTO "status" VALUES(36,7,8,'2015-06-02 14:17:02'); +INSERT INTO "status" VALUES(36,8,7,'2015-06-02 14:18:02'); +INSERT INTO "status" VALUES(36,8,7,'2015-06-02 14:19:02'); +INSERT INTO "status" VALUES(36,8,7,'2015-06-02 14:20:03'); +INSERT INTO "status" VALUES(36,8,7,'2015-06-02 14:21:02'); +INSERT INTO "status" VALUES(36,8,7,'2015-06-02 14:22:02'); +INSERT INTO "status" VALUES(36,7,8,'2015-06-02 14:23:03'); +INSERT INTO "status" VALUES(36,7,8,'2015-06-02 14:24:02'); +INSERT INTO "status" VALUES(36,7,8,'2015-06-02 14:25:01'); +INSERT INTO "status" VALUES(36,7,8,'2015-06-02 14:26:02'); +INSERT INTO "status" VALUES(36,7,8,'2015-06-02 14:27:02'); +INSERT INTO "status" VALUES(36,8,7,'2015-06-02 14:28:02'); +INSERT INTO "status" VALUES(36,8,7,'2015-06-02 14:29:02'); +INSERT INTO "status" VALUES(36,8,7,'2015-06-02 14:30:02'); +INSERT INTO "status" VALUES(36,8,7,'2015-06-02 14:31:02'); +INSERT INTO "status" VALUES(36,8,7,'2015-06-02 14:32:02'); +INSERT INTO "status" VALUES(36,7,8,'2015-06-02 14:33:02'); +INSERT INTO "status" VALUES(36,7,8,'2015-06-02 14:34:02'); +INSERT INTO "status" VALUES(36,7,8,'2015-06-02 14:35:02'); +INSERT INTO "status" VALUES(36,7,8,'2015-06-02 14:36:02'); +INSERT INTO "status" VALUES(36,7,8,'2015-06-02 14:37:02'); +INSERT INTO "status" VALUES(36,7,8,'2015-06-02 14:38:02'); +INSERT INTO "status" VALUES(36,7,8,'2015-06-02 14:39:02'); +INSERT INTO "status" VALUES(36,7,8,'2015-06-02 14:40:02'); +INSERT INTO "status" VALUES(36,7,8,'2015-06-02 14:41:02'); +INSERT INTO "status" VALUES(36,7,8,'2015-06-02 14:42:02'); +INSERT INTO "status" VALUES(36,7,8,'2015-06-02 14:43:02'); +INSERT INTO "status" VALUES(36,7,8,'2015-06-02 14:44:02'); +INSERT INTO "status" VALUES(36,7,8,'2015-06-02 14:45:02'); +INSERT INTO "status" VALUES(36,7,8,'2015-06-02 14:46:02'); +INSERT INTO "status" VALUES(36,7,8,'2015-06-02 14:47:02'); +INSERT INTO "status" VALUES(36,8,7,'2015-06-02 14:48:02'); +INSERT INTO "status" VALUES(37,9,2,'2015-06-02 12:46:02'); +INSERT INTO "status" VALUES(37,9,2,'2015-06-02 12:47:02'); +INSERT INTO "status" VALUES(37,10,1,'2015-06-02 12:48:02'); +INSERT INTO "status" VALUES(37,10,1,'2015-06-02 12:49:02'); +INSERT INTO "status" VALUES(37,10,1,'2015-06-02 12:50:02'); +INSERT INTO "status" VALUES(37,10,1,'2015-06-02 12:51:02'); +INSERT INTO "status" VALUES(37,10,1,'2015-06-02 12:52:02'); +INSERT INTO "status" VALUES(37,11,0,'2015-06-02 12:53:03'); +INSERT INTO "status" VALUES(37,11,0,'2015-06-02 12:54:02'); +INSERT INTO "status" VALUES(37,11,0,'2015-06-02 12:55:02'); +INSERT INTO "status" VALUES(37,11,0,'2015-06-02 12:56:01'); +INSERT INTO "status" VALUES(37,11,0,'2015-06-02 12:57:02'); +INSERT INTO "status" VALUES(37,10,1,'2015-06-02 12:58:02'); +INSERT INTO "status" VALUES(37,10,1,'2015-06-02 12:59:02'); +INSERT INTO "status" VALUES(37,10,1,'2015-06-02 13:00:01'); +INSERT INTO "status" VALUES(37,10,1,'2015-06-02 13:01:03'); +INSERT INTO "status" VALUES(37,10,1,'2015-06-02 13:02:02'); +INSERT INTO "status" VALUES(37,10,1,'2015-06-02 13:03:02'); +INSERT INTO "status" VALUES(37,10,1,'2015-06-02 13:04:02'); +INSERT INTO "status" VALUES(37,10,1,'2015-06-02 13:05:03'); +INSERT INTO "status" VALUES(37,10,1,'2015-06-02 13:06:02'); +INSERT INTO "status" VALUES(37,10,1,'2015-06-02 13:07:02'); +INSERT INTO "status" VALUES(37,10,1,'2015-06-02 13:08:02'); +INSERT INTO "status" VALUES(37,10,1,'2015-06-02 13:09:02'); +INSERT INTO "status" VALUES(37,10,1,'2015-06-02 13:10:02'); +INSERT INTO "status" VALUES(37,10,1,'2015-06-02 13:11:02'); +INSERT INTO "status" VALUES(37,10,1,'2015-06-02 13:12:02'); +INSERT INTO "status" VALUES(37,11,0,'2015-06-02 13:13:03'); +INSERT INTO "status" VALUES(37,11,0,'2015-06-02 13:14:03'); +INSERT INTO "status" VALUES(37,11,0,'2015-06-02 13:15:02'); +INSERT INTO "status" VALUES(37,11,0,'2015-06-02 13:16:02'); +INSERT INTO "status" VALUES(37,11,0,'2015-06-02 13:17:02'); +INSERT INTO "status" VALUES(37,9,2,'2015-06-02 13:18:02'); +INSERT INTO "status" VALUES(37,9,2,'2015-06-02 13:19:02'); +INSERT INTO "status" VALUES(37,9,2,'2015-06-02 13:20:02'); +INSERT INTO "status" VALUES(37,9,2,'2015-06-02 13:21:02'); +INSERT INTO "status" VALUES(37,9,2,'2015-06-02 13:22:02'); +INSERT INTO "status" VALUES(37,9,2,'2015-06-02 13:23:02'); +INSERT INTO "status" VALUES(37,9,2,'2015-06-02 13:24:02'); +INSERT INTO "status" VALUES(37,9,2,'2015-06-02 13:25:02'); +INSERT INTO "status" VALUES(37,9,2,'2015-06-02 13:26:02'); +INSERT INTO "status" VALUES(37,9,2,'2015-06-02 13:27:02'); +INSERT INTO "status" VALUES(37,11,0,'2015-06-02 13:28:02'); +INSERT INTO "status" VALUES(37,11,0,'2015-06-02 13:29:02'); +INSERT INTO "status" VALUES(37,11,0,'2015-06-02 13:30:02'); +INSERT INTO "status" VALUES(37,11,0,'2015-06-02 13:31:02'); +INSERT INTO "status" VALUES(37,11,0,'2015-06-02 13:32:02'); +INSERT INTO "status" VALUES(37,11,0,'2015-06-02 13:33:02'); +INSERT INTO "status" VALUES(37,11,0,'2015-06-02 13:34:02'); +INSERT INTO "status" VALUES(37,11,0,'2015-06-02 13:35:02'); +INSERT INTO "status" VALUES(37,11,0,'2015-06-02 13:36:02'); +INSERT INTO "status" VALUES(37,11,0,'2015-06-02 13:37:02'); +INSERT INTO "status" VALUES(37,10,1,'2015-06-02 13:38:02'); +INSERT INTO "status" VALUES(37,10,1,'2015-06-02 13:39:02'); +INSERT INTO "status" VALUES(37,10,1,'2015-06-02 13:40:02'); +INSERT INTO "status" VALUES(37,10,1,'2015-06-02 13:41:03'); +INSERT INTO "status" VALUES(37,10,1,'2015-06-02 13:42:03'); +INSERT INTO "status" VALUES(37,10,1,'2015-06-02 13:43:03'); +INSERT INTO "status" VALUES(37,10,1,'2015-06-02 13:44:02'); +INSERT INTO "status" VALUES(37,10,1,'2015-06-02 13:45:03'); +INSERT INTO "status" VALUES(37,10,1,'2015-06-02 13:46:02'); +INSERT INTO "status" VALUES(37,10,1,'2015-06-02 13:47:02'); +INSERT INTO "status" VALUES(37,9,2,'2015-06-02 13:48:02'); +INSERT INTO "status" VALUES(37,9,2,'2015-06-02 13:49:02'); +INSERT INTO "status" VALUES(37,9,2,'2015-06-02 13:50:03'); +INSERT INTO "status" VALUES(37,9,2,'2015-06-02 13:51:02'); +INSERT INTO "status" VALUES(37,9,2,'2015-06-02 13:52:02'); +INSERT INTO "status" VALUES(37,11,0,'2015-06-02 13:53:02'); +INSERT INTO "status" VALUES(37,11,0,'2015-06-02 13:54:02'); +INSERT INTO "status" VALUES(37,11,0,'2015-06-02 13:55:03'); +INSERT INTO "status" VALUES(37,11,0,'2015-06-02 13:56:02'); +INSERT INTO "status" VALUES(37,11,0,'2015-06-02 13:57:02'); +INSERT INTO "status" VALUES(37,11,0,'2015-06-02 13:58:02'); +INSERT INTO "status" VALUES(37,11,0,'2015-06-02 13:59:02'); +INSERT INTO "status" VALUES(37,11,0,'2015-06-02 14:00:02'); +INSERT INTO "status" VALUES(37,11,0,'2015-06-02 14:01:02'); +INSERT INTO "status" VALUES(37,11,0,'2015-06-02 14:02:02'); +INSERT INTO "status" VALUES(37,10,1,'2015-06-02 14:03:02'); +INSERT INTO "status" VALUES(37,10,1,'2015-06-02 14:04:02'); +INSERT INTO "status" VALUES(37,10,1,'2015-06-02 14:05:02'); +INSERT INTO "status" VALUES(37,10,1,'2015-06-02 14:06:02'); +INSERT INTO "status" VALUES(37,10,1,'2015-06-02 14:07:02'); +INSERT INTO "status" VALUES(37,10,1,'2015-06-02 14:08:02'); +INSERT INTO "status" VALUES(37,10,1,'2015-06-02 14:09:02'); +INSERT INTO "status" VALUES(37,10,1,'2015-06-02 14:10:02'); +INSERT INTO "status" VALUES(37,10,1,'2015-06-02 14:11:02'); +INSERT INTO "status" VALUES(37,10,1,'2015-06-02 14:12:02'); +INSERT INTO "status" VALUES(37,11,0,'2015-06-02 14:13:02'); +INSERT INTO "status" VALUES(37,11,0,'2015-06-02 14:14:02'); +INSERT INTO "status" VALUES(37,11,0,'2015-06-02 14:15:02'); +INSERT INTO "status" VALUES(37,11,0,'2015-06-02 14:16:02'); +INSERT INTO "status" VALUES(37,11,0,'2015-06-02 14:17:02'); +INSERT INTO "status" VALUES(37,10,1,'2015-06-02 14:18:02'); +INSERT INTO "status" VALUES(37,10,1,'2015-06-02 14:19:02'); +INSERT INTO "status" VALUES(37,10,1,'2015-06-02 14:20:03'); +INSERT INTO "status" VALUES(37,10,1,'2015-06-02 14:21:02'); +INSERT INTO "status" VALUES(37,10,1,'2015-06-02 14:22:02'); +INSERT INTO "status" VALUES(37,9,2,'2015-06-02 14:23:03'); +INSERT INTO "status" VALUES(37,9,2,'2015-06-02 14:24:02'); +INSERT INTO "status" VALUES(37,9,2,'2015-06-02 14:25:01'); +INSERT INTO "status" VALUES(37,9,2,'2015-06-02 14:26:02'); +INSERT INTO "status" VALUES(37,9,2,'2015-06-02 14:27:02'); +INSERT INTO "status" VALUES(37,9,2,'2015-06-02 14:28:02'); +INSERT INTO "status" VALUES(37,9,2,'2015-06-02 14:29:02'); +INSERT INTO "status" VALUES(37,9,2,'2015-06-02 14:30:02'); +INSERT INTO "status" VALUES(37,9,2,'2015-06-02 14:31:02'); +INSERT INTO "status" VALUES(37,9,2,'2015-06-02 14:32:02'); +INSERT INTO "status" VALUES(37,9,2,'2015-06-02 14:33:02'); +INSERT INTO "status" VALUES(37,9,2,'2015-06-02 14:34:02'); +INSERT INTO "status" VALUES(37,9,2,'2015-06-02 14:35:02'); +INSERT INTO "status" VALUES(37,9,2,'2015-06-02 14:36:02'); +INSERT INTO "status" VALUES(37,9,2,'2015-06-02 14:37:02'); +INSERT INTO "status" VALUES(37,10,1,'2015-06-02 14:38:02'); +INSERT INTO "status" VALUES(37,10,1,'2015-06-02 14:39:02'); +INSERT INTO "status" VALUES(37,10,1,'2015-06-02 14:40:02'); +INSERT INTO "status" VALUES(37,10,1,'2015-06-02 14:41:02'); +INSERT INTO "status" VALUES(37,10,1,'2015-06-02 14:42:02'); +INSERT INTO "status" VALUES(37,10,1,'2015-06-02 14:43:02'); +INSERT INTO "status" VALUES(37,10,1,'2015-06-02 14:44:02'); +INSERT INTO "status" VALUES(37,10,1,'2015-06-02 14:45:02'); +INSERT INTO "status" VALUES(37,10,1,'2015-06-02 14:46:02'); +INSERT INTO "status" VALUES(37,10,1,'2015-06-02 14:47:02'); +INSERT INTO "status" VALUES(37,10,1,'2015-06-02 14:48:02'); +INSERT INTO "status" VALUES(38,11,4,'2015-06-02 12:46:02'); +INSERT INTO "status" VALUES(38,11,4,'2015-06-02 12:47:02'); +INSERT INTO "status" VALUES(38,11,4,'2015-06-02 12:48:02'); +INSERT INTO "status" VALUES(38,11,4,'2015-06-02 12:49:02'); +INSERT INTO "status" VALUES(38,11,4,'2015-06-02 12:50:02'); +INSERT INTO "status" VALUES(38,11,4,'2015-06-02 12:51:02'); +INSERT INTO "status" VALUES(38,11,4,'2015-06-02 12:52:02'); +INSERT INTO "status" VALUES(38,11,4,'2015-06-02 12:53:03'); +INSERT INTO "status" VALUES(38,11,4,'2015-06-02 12:54:02'); +INSERT INTO "status" VALUES(38,11,4,'2015-06-02 12:55:02'); +INSERT INTO "status" VALUES(38,11,4,'2015-06-02 12:56:01'); +INSERT INTO "status" VALUES(38,11,4,'2015-06-02 12:57:02'); +INSERT INTO "status" VALUES(38,11,4,'2015-06-02 12:58:02'); +INSERT INTO "status" VALUES(38,11,4,'2015-06-02 12:59:02'); +INSERT INTO "status" VALUES(38,11,4,'2015-06-02 13:00:01'); +INSERT INTO "status" VALUES(38,11,4,'2015-06-02 13:01:03'); +INSERT INTO "status" VALUES(38,11,4,'2015-06-02 13:02:02'); +INSERT INTO "status" VALUES(38,11,4,'2015-06-02 13:03:02'); +INSERT INTO "status" VALUES(38,11,4,'2015-06-02 13:04:02'); +INSERT INTO "status" VALUES(38,11,4,'2015-06-02 13:05:03'); +INSERT INTO "status" VALUES(38,11,4,'2015-06-02 13:06:02'); +INSERT INTO "status" VALUES(38,11,4,'2015-06-02 13:07:02'); +INSERT INTO "status" VALUES(38,11,4,'2015-06-02 13:08:02'); +INSERT INTO "status" VALUES(38,11,4,'2015-06-02 13:09:02'); +INSERT INTO "status" VALUES(38,11,4,'2015-06-02 13:10:02'); +INSERT INTO "status" VALUES(38,11,4,'2015-06-02 13:11:02'); +INSERT INTO "status" VALUES(38,11,4,'2015-06-02 13:12:02'); +INSERT INTO "status" VALUES(38,11,4,'2015-06-02 13:13:03'); +INSERT INTO "status" VALUES(38,11,4,'2015-06-02 13:14:03'); +INSERT INTO "status" VALUES(38,11,4,'2015-06-02 13:15:02'); +INSERT INTO "status" VALUES(38,11,4,'2015-06-02 13:16:02'); +INSERT INTO "status" VALUES(38,11,4,'2015-06-02 13:17:02'); +INSERT INTO "status" VALUES(38,11,4,'2015-06-02 13:18:02'); +INSERT INTO "status" VALUES(38,11,4,'2015-06-02 13:19:02'); +INSERT INTO "status" VALUES(38,11,4,'2015-06-02 13:20:02'); +INSERT INTO "status" VALUES(38,11,4,'2015-06-02 13:21:02'); +INSERT INTO "status" VALUES(38,11,4,'2015-06-02 13:22:02'); +INSERT INTO "status" VALUES(38,11,4,'2015-06-02 13:23:02'); +INSERT INTO "status" VALUES(38,11,4,'2015-06-02 13:24:02'); +INSERT INTO "status" VALUES(38,11,4,'2015-06-02 13:25:02'); +INSERT INTO "status" VALUES(38,11,4,'2015-06-02 13:26:02'); +INSERT INTO "status" VALUES(38,11,4,'2015-06-02 13:27:02'); +INSERT INTO "status" VALUES(38,11,4,'2015-06-02 13:28:02'); +INSERT INTO "status" VALUES(38,11,4,'2015-06-02 13:29:02'); +INSERT INTO "status" VALUES(38,11,4,'2015-06-02 13:30:02'); +INSERT INTO "status" VALUES(38,11,4,'2015-06-02 13:31:02'); +INSERT INTO "status" VALUES(38,11,4,'2015-06-02 13:32:02'); +INSERT INTO "status" VALUES(38,11,4,'2015-06-02 13:33:02'); +INSERT INTO "status" VALUES(38,11,4,'2015-06-02 13:34:02'); +INSERT INTO "status" VALUES(38,11,4,'2015-06-02 13:35:02'); +INSERT INTO "status" VALUES(38,11,4,'2015-06-02 13:36:02'); +INSERT INTO "status" VALUES(38,11,4,'2015-06-02 13:37:02'); +INSERT INTO "status" VALUES(38,11,4,'2015-06-02 13:38:02'); +INSERT INTO "status" VALUES(38,11,4,'2015-06-02 13:39:02'); +INSERT INTO "status" VALUES(38,11,4,'2015-06-02 13:40:02'); +INSERT INTO "status" VALUES(38,11,4,'2015-06-02 13:41:03'); +INSERT INTO "status" VALUES(38,11,4,'2015-06-02 13:42:03'); +INSERT INTO "status" VALUES(38,11,4,'2015-06-02 13:43:03'); +INSERT INTO "status" VALUES(38,11,4,'2015-06-02 13:44:02'); +INSERT INTO "status" VALUES(38,11,4,'2015-06-02 13:45:03'); +INSERT INTO "status" VALUES(38,11,4,'2015-06-02 13:46:02'); +INSERT INTO "status" VALUES(38,11,4,'2015-06-02 13:47:02'); +INSERT INTO "status" VALUES(38,11,4,'2015-06-02 13:48:02'); +INSERT INTO "status" VALUES(38,11,4,'2015-06-02 13:49:02'); +INSERT INTO "status" VALUES(38,11,4,'2015-06-02 13:50:03'); +INSERT INTO "status" VALUES(38,11,4,'2015-06-02 13:51:02'); +INSERT INTO "status" VALUES(38,11,4,'2015-06-02 13:52:02'); +INSERT INTO "status" VALUES(38,11,4,'2015-06-02 13:53:02'); +INSERT INTO "status" VALUES(38,11,4,'2015-06-02 13:54:02'); +INSERT INTO "status" VALUES(38,11,4,'2015-06-02 13:55:03'); +INSERT INTO "status" VALUES(38,11,4,'2015-06-02 13:56:02'); +INSERT INTO "status" VALUES(38,11,4,'2015-06-02 13:57:02'); +INSERT INTO "status" VALUES(38,11,4,'2015-06-02 13:58:02'); +INSERT INTO "status" VALUES(38,11,4,'2015-06-02 13:59:02'); +INSERT INTO "status" VALUES(38,11,4,'2015-06-02 14:00:02'); +INSERT INTO "status" VALUES(38,11,4,'2015-06-02 14:01:02'); +INSERT INTO "status" VALUES(38,11,4,'2015-06-02 14:02:02'); +INSERT INTO "status" VALUES(38,11,4,'2015-06-02 14:03:02'); +INSERT INTO "status" VALUES(38,11,4,'2015-06-02 14:04:02'); +INSERT INTO "status" VALUES(38,11,4,'2015-06-02 14:05:02'); +INSERT INTO "status" VALUES(38,11,4,'2015-06-02 14:06:02'); +INSERT INTO "status" VALUES(38,11,4,'2015-06-02 14:07:02'); +INSERT INTO "status" VALUES(38,11,4,'2015-06-02 14:08:02'); +INSERT INTO "status" VALUES(38,11,4,'2015-06-02 14:09:02'); +INSERT INTO "status" VALUES(38,11,4,'2015-06-02 14:10:02'); +INSERT INTO "status" VALUES(38,11,4,'2015-06-02 14:11:02'); +INSERT INTO "status" VALUES(38,11,4,'2015-06-02 14:12:02'); +INSERT INTO "status" VALUES(38,11,4,'2015-06-02 14:13:02'); +INSERT INTO "status" VALUES(38,11,4,'2015-06-02 14:14:02'); +INSERT INTO "status" VALUES(38,11,4,'2015-06-02 14:15:02'); +INSERT INTO "status" VALUES(38,11,4,'2015-06-02 14:16:02'); +INSERT INTO "status" VALUES(38,11,4,'2015-06-02 14:17:02'); +INSERT INTO "status" VALUES(38,11,4,'2015-06-02 14:18:02'); +INSERT INTO "status" VALUES(38,11,4,'2015-06-02 14:19:02'); +INSERT INTO "status" VALUES(38,11,4,'2015-06-02 14:20:03'); +INSERT INTO "status" VALUES(38,11,4,'2015-06-02 14:21:02'); +INSERT INTO "status" VALUES(38,11,4,'2015-06-02 14:22:02'); +INSERT INTO "status" VALUES(38,11,4,'2015-06-02 14:23:03'); +INSERT INTO "status" VALUES(38,11,4,'2015-06-02 14:24:02'); +INSERT INTO "status" VALUES(38,11,4,'2015-06-02 14:25:01'); +INSERT INTO "status" VALUES(38,11,4,'2015-06-02 14:26:02'); +INSERT INTO "status" VALUES(38,11,4,'2015-06-02 14:27:02'); +INSERT INTO "status" VALUES(38,11,4,'2015-06-02 14:28:02'); +INSERT INTO "status" VALUES(38,11,4,'2015-06-02 14:29:02'); +INSERT INTO "status" VALUES(38,11,4,'2015-06-02 14:30:02'); +INSERT INTO "status" VALUES(38,11,4,'2015-06-02 14:31:02'); +INSERT INTO "status" VALUES(38,11,4,'2015-06-02 14:32:02'); +INSERT INTO "status" VALUES(38,11,4,'2015-06-02 14:33:02'); +INSERT INTO "status" VALUES(38,11,4,'2015-06-02 14:34:02'); +INSERT INTO "status" VALUES(38,11,4,'2015-06-02 14:35:02'); +INSERT INTO "status" VALUES(38,11,4,'2015-06-02 14:36:02'); +INSERT INTO "status" VALUES(38,11,4,'2015-06-02 14:37:02'); +INSERT INTO "status" VALUES(38,11,4,'2015-06-02 14:38:02'); +INSERT INTO "status" VALUES(38,11,4,'2015-06-02 14:39:02'); +INSERT INTO "status" VALUES(38,11,4,'2015-06-02 14:40:02'); +INSERT INTO "status" VALUES(38,11,4,'2015-06-02 14:41:02'); +INSERT INTO "status" VALUES(38,11,4,'2015-06-02 14:42:02'); +INSERT INTO "status" VALUES(38,11,4,'2015-06-02 14:43:02'); +INSERT INTO "status" VALUES(38,11,4,'2015-06-02 14:44:02'); +INSERT INTO "status" VALUES(38,11,4,'2015-06-02 14:45:02'); +INSERT INTO "status" VALUES(38,11,4,'2015-06-02 14:46:02'); +INSERT INTO "status" VALUES(38,11,4,'2015-06-02 14:47:02'); +INSERT INTO "status" VALUES(38,11,4,'2015-06-02 14:48:02'); +INSERT INTO "status" VALUES(39,8,11,'2015-06-02 12:46:02'); +INSERT INTO "status" VALUES(39,7,12,'2015-06-02 12:47:02'); +INSERT INTO "status" VALUES(39,7,12,'2015-06-02 12:48:02'); +INSERT INTO "status" VALUES(39,7,12,'2015-06-02 12:49:02'); +INSERT INTO "status" VALUES(39,7,12,'2015-06-02 12:50:02'); +INSERT INTO "status" VALUES(39,7,12,'2015-06-02 12:51:02'); +INSERT INTO "status" VALUES(39,7,12,'2015-06-02 12:52:02'); +INSERT INTO "status" VALUES(39,7,12,'2015-06-02 12:53:03'); +INSERT INTO "status" VALUES(39,7,12,'2015-06-02 12:54:02'); +INSERT INTO "status" VALUES(39,7,12,'2015-06-02 12:55:02'); +INSERT INTO "status" VALUES(39,7,12,'2015-06-02 12:56:01'); +INSERT INTO "status" VALUES(39,7,12,'2015-06-02 12:57:02'); +INSERT INTO "status" VALUES(39,7,12,'2015-06-02 12:58:02'); +INSERT INTO "status" VALUES(39,7,12,'2015-06-02 12:59:02'); +INSERT INTO "status" VALUES(39,7,12,'2015-06-02 13:00:01'); +INSERT INTO "status" VALUES(39,6,13,'2015-06-02 13:01:03'); +INSERT INTO "status" VALUES(39,6,13,'2015-06-02 13:02:02'); +INSERT INTO "status" VALUES(39,6,13,'2015-06-02 13:03:02'); +INSERT INTO "status" VALUES(39,6,13,'2015-06-02 13:04:02'); +INSERT INTO "status" VALUES(39,6,13,'2015-06-02 13:05:03'); +INSERT INTO "status" VALUES(39,6,13,'2015-06-02 13:06:02'); +INSERT INTO "status" VALUES(39,6,13,'2015-06-02 13:07:02'); +INSERT INTO "status" VALUES(39,6,13,'2015-06-02 13:08:02'); +INSERT INTO "status" VALUES(39,6,13,'2015-06-02 13:09:02'); +INSERT INTO "status" VALUES(39,6,13,'2015-06-02 13:10:02'); +INSERT INTO "status" VALUES(39,6,13,'2015-06-02 13:11:02'); +INSERT INTO "status" VALUES(39,6,13,'2015-06-02 13:12:02'); +INSERT INTO "status" VALUES(39,6,13,'2015-06-02 13:13:03'); +INSERT INTO "status" VALUES(39,6,13,'2015-06-02 13:14:03'); +INSERT INTO "status" VALUES(39,6,13,'2015-06-02 13:15:02'); +INSERT INTO "status" VALUES(39,6,13,'2015-06-02 13:16:02'); +INSERT INTO "status" VALUES(39,5,14,'2015-06-02 13:17:02'); +INSERT INTO "status" VALUES(39,5,14,'2015-06-02 13:18:02'); +INSERT INTO "status" VALUES(39,5,14,'2015-06-02 13:19:02'); +INSERT INTO "status" VALUES(39,5,14,'2015-06-02 13:20:02'); +INSERT INTO "status" VALUES(39,5,14,'2015-06-02 13:21:02'); +INSERT INTO "status" VALUES(39,5,14,'2015-06-02 13:22:02'); +INSERT INTO "status" VALUES(39,5,14,'2015-06-02 13:23:02'); +INSERT INTO "status" VALUES(39,5,14,'2015-06-02 13:24:02'); +INSERT INTO "status" VALUES(39,5,14,'2015-06-02 13:25:02'); +INSERT INTO "status" VALUES(39,5,14,'2015-06-02 13:26:02'); +INSERT INTO "status" VALUES(39,5,14,'2015-06-02 13:27:02'); +INSERT INTO "status" VALUES(39,5,14,'2015-06-02 13:28:02'); +INSERT INTO "status" VALUES(39,5,14,'2015-06-02 13:29:02'); +INSERT INTO "status" VALUES(39,5,14,'2015-06-02 13:30:02'); +INSERT INTO "status" VALUES(39,5,14,'2015-06-02 13:31:02'); +INSERT INTO "status" VALUES(39,5,14,'2015-06-02 13:32:02'); +INSERT INTO "status" VALUES(39,5,14,'2015-06-02 13:33:02'); +INSERT INTO "status" VALUES(39,5,14,'2015-06-02 13:34:02'); +INSERT INTO "status" VALUES(39,5,14,'2015-06-02 13:35:02'); +INSERT INTO "status" VALUES(39,5,14,'2015-06-02 13:36:02'); +INSERT INTO "status" VALUES(39,5,14,'2015-06-02 13:37:02'); +INSERT INTO "status" VALUES(39,5,14,'2015-06-02 13:38:02'); +INSERT INTO "status" VALUES(39,5,14,'2015-06-02 13:39:02'); +INSERT INTO "status" VALUES(39,5,14,'2015-06-02 13:40:02'); +INSERT INTO "status" VALUES(39,5,14,'2015-06-02 13:41:03'); +INSERT INTO "status" VALUES(39,5,14,'2015-06-02 13:42:03'); +INSERT INTO "status" VALUES(39,5,14,'2015-06-02 13:43:03'); +INSERT INTO "status" VALUES(39,5,14,'2015-06-02 13:44:02'); +INSERT INTO "status" VALUES(39,5,14,'2015-06-02 13:45:03'); +INSERT INTO "status" VALUES(39,5,14,'2015-06-02 13:46:02'); +INSERT INTO "status" VALUES(39,5,14,'2015-06-02 13:47:02'); +INSERT INTO "status" VALUES(39,5,14,'2015-06-02 13:48:02'); +INSERT INTO "status" VALUES(39,5,14,'2015-06-02 13:49:02'); +INSERT INTO "status" VALUES(39,5,14,'2015-06-02 13:50:03'); +INSERT INTO "status" VALUES(39,5,14,'2015-06-02 13:51:02'); +INSERT INTO "status" VALUES(39,5,14,'2015-06-02 13:52:02'); +INSERT INTO "status" VALUES(39,5,14,'2015-06-02 13:53:02'); +INSERT INTO "status" VALUES(39,5,14,'2015-06-02 13:54:02'); +INSERT INTO "status" VALUES(39,5,14,'2015-06-02 13:55:03'); +INSERT INTO "status" VALUES(39,6,13,'2015-06-02 13:56:02'); +INSERT INTO "status" VALUES(39,6,13,'2015-06-02 13:57:02'); +INSERT INTO "status" VALUES(39,6,13,'2015-06-02 13:58:02'); +INSERT INTO "status" VALUES(39,6,13,'2015-06-02 13:59:02'); +INSERT INTO "status" VALUES(39,6,13,'2015-06-02 14:00:02'); +INSERT INTO "status" VALUES(39,6,13,'2015-06-02 14:01:02'); +INSERT INTO "status" VALUES(39,6,13,'2015-06-02 14:02:02'); +INSERT INTO "status" VALUES(39,6,13,'2015-06-02 14:03:02'); +INSERT INTO "status" VALUES(39,6,13,'2015-06-02 14:04:02'); +INSERT INTO "status" VALUES(39,6,13,'2015-06-02 14:05:02'); +INSERT INTO "status" VALUES(39,6,13,'2015-06-02 14:06:02'); +INSERT INTO "status" VALUES(39,6,13,'2015-06-02 14:07:02'); +INSERT INTO "status" VALUES(39,6,13,'2015-06-02 14:08:02'); +INSERT INTO "status" VALUES(39,6,13,'2015-06-02 14:09:02'); +INSERT INTO "status" VALUES(39,6,13,'2015-06-02 14:10:02'); +INSERT INTO "status" VALUES(39,6,13,'2015-06-02 14:11:02'); +INSERT INTO "status" VALUES(39,6,13,'2015-06-02 14:12:02'); +INSERT INTO "status" VALUES(39,6,13,'2015-06-02 14:13:02'); +INSERT INTO "status" VALUES(39,6,13,'2015-06-02 14:14:02'); +INSERT INTO "status" VALUES(39,6,13,'2015-06-02 14:15:02'); +INSERT INTO "status" VALUES(39,6,13,'2015-06-02 14:16:02'); +INSERT INTO "status" VALUES(39,6,13,'2015-06-02 14:17:02'); +INSERT INTO "status" VALUES(39,6,13,'2015-06-02 14:18:02'); +INSERT INTO "status" VALUES(39,6,13,'2015-06-02 14:19:02'); +INSERT INTO "status" VALUES(39,6,13,'2015-06-02 14:20:03'); +INSERT INTO "status" VALUES(39,6,13,'2015-06-02 14:21:02'); +INSERT INTO "status" VALUES(39,6,13,'2015-06-02 14:22:02'); +INSERT INTO "status" VALUES(39,6,13,'2015-06-02 14:23:03'); +INSERT INTO "status" VALUES(39,6,13,'2015-06-02 14:24:02'); +INSERT INTO "status" VALUES(39,6,13,'2015-06-02 14:25:01'); +INSERT INTO "status" VALUES(39,6,13,'2015-06-02 14:26:02'); +INSERT INTO "status" VALUES(39,6,13,'2015-06-02 14:27:02'); +INSERT INTO "status" VALUES(39,6,13,'2015-06-02 14:28:02'); +INSERT INTO "status" VALUES(39,7,12,'2015-06-02 14:29:02'); +INSERT INTO "status" VALUES(39,7,12,'2015-06-02 14:30:02'); +INSERT INTO "status" VALUES(39,7,12,'2015-06-02 14:31:02'); +INSERT INTO "status" VALUES(39,7,12,'2015-06-02 14:32:02'); +INSERT INTO "status" VALUES(39,7,12,'2015-06-02 14:33:02'); +INSERT INTO "status" VALUES(39,7,12,'2015-06-02 14:34:02'); +INSERT INTO "status" VALUES(39,7,12,'2015-06-02 14:35:02'); +INSERT INTO "status" VALUES(39,7,12,'2015-06-02 14:36:02'); +INSERT INTO "status" VALUES(39,7,12,'2015-06-02 14:37:02'); +INSERT INTO "status" VALUES(39,7,12,'2015-06-02 14:38:02'); +INSERT INTO "status" VALUES(39,7,12,'2015-06-02 14:39:02'); +INSERT INTO "status" VALUES(39,7,12,'2015-06-02 14:40:02'); +INSERT INTO "status" VALUES(39,7,12,'2015-06-02 14:41:02'); +INSERT INTO "status" VALUES(39,7,12,'2015-06-02 14:42:02'); +INSERT INTO "status" VALUES(39,7,12,'2015-06-02 14:43:02'); +INSERT INTO "status" VALUES(39,7,12,'2015-06-02 14:44:02'); +INSERT INTO "status" VALUES(39,7,12,'2015-06-02 14:45:02'); +INSERT INTO "status" VALUES(39,7,12,'2015-06-02 14:46:02'); +INSERT INTO "status" VALUES(39,7,12,'2015-06-02 14:47:02'); +INSERT INTO "status" VALUES(39,7,12,'2015-06-02 14:48:02'); +INSERT INTO "status" VALUES(41,9,6,'2015-06-02 12:46:02'); +INSERT INTO "status" VALUES(41,9,6,'2015-06-02 12:47:02'); +INSERT INTO "status" VALUES(41,9,6,'2015-06-02 12:48:02'); +INSERT INTO "status" VALUES(41,9,6,'2015-06-02 12:49:02'); +INSERT INTO "status" VALUES(41,9,6,'2015-06-02 12:50:02'); +INSERT INTO "status" VALUES(41,9,6,'2015-06-02 12:51:02'); +INSERT INTO "status" VALUES(41,9,6,'2015-06-02 12:52:02'); +INSERT INTO "status" VALUES(41,9,6,'2015-06-02 12:53:03'); +INSERT INTO "status" VALUES(41,9,6,'2015-06-02 12:54:02'); +INSERT INTO "status" VALUES(41,9,6,'2015-06-02 12:55:02'); +INSERT INTO "status" VALUES(41,8,7,'2015-06-02 12:56:01'); +INSERT INTO "status" VALUES(41,7,8,'2015-06-02 12:57:02'); +INSERT INTO "status" VALUES(41,7,8,'2015-06-02 12:58:02'); +INSERT INTO "status" VALUES(41,7,8,'2015-06-02 12:59:02'); +INSERT INTO "status" VALUES(41,7,8,'2015-06-02 13:00:01'); +INSERT INTO "status" VALUES(41,7,8,'2015-06-02 13:01:03'); +INSERT INTO "status" VALUES(41,7,8,'2015-06-02 13:02:02'); +INSERT INTO "status" VALUES(41,7,8,'2015-06-02 13:03:02'); +INSERT INTO "status" VALUES(41,7,8,'2015-06-02 13:04:02'); +INSERT INTO "status" VALUES(41,7,8,'2015-06-02 13:05:03'); +INSERT INTO "status" VALUES(41,7,8,'2015-06-02 13:06:02'); +INSERT INTO "status" VALUES(41,7,8,'2015-06-02 13:07:02'); +INSERT INTO "status" VALUES(41,7,8,'2015-06-02 13:08:02'); +INSERT INTO "status" VALUES(41,7,8,'2015-06-02 13:09:02'); +INSERT INTO "status" VALUES(41,7,8,'2015-06-02 13:10:02'); +INSERT INTO "status" VALUES(41,7,8,'2015-06-02 13:11:02'); +INSERT INTO "status" VALUES(41,7,8,'2015-06-02 13:12:02'); +INSERT INTO "status" VALUES(41,7,8,'2015-06-02 13:13:03'); +INSERT INTO "status" VALUES(41,7,8,'2015-06-02 13:14:03'); +INSERT INTO "status" VALUES(41,7,8,'2015-06-02 13:15:02'); +INSERT INTO "status" VALUES(41,7,8,'2015-06-02 13:16:02'); +INSERT INTO "status" VALUES(41,7,8,'2015-06-02 13:17:02'); +INSERT INTO "status" VALUES(41,6,9,'2015-06-02 13:18:02'); +INSERT INTO "status" VALUES(41,6,9,'2015-06-02 13:19:02'); +INSERT INTO "status" VALUES(41,6,9,'2015-06-02 13:20:02'); +INSERT INTO "status" VALUES(41,6,9,'2015-06-02 13:21:02'); +INSERT INTO "status" VALUES(41,6,9,'2015-06-02 13:22:02'); +INSERT INTO "status" VALUES(41,6,9,'2015-06-02 13:23:02'); +INSERT INTO "status" VALUES(41,6,9,'2015-06-02 13:24:02'); +INSERT INTO "status" VALUES(41,6,9,'2015-06-02 13:25:02'); +INSERT INTO "status" VALUES(41,6,9,'2015-06-02 13:26:02'); +INSERT INTO "status" VALUES(41,6,9,'2015-06-02 13:27:02'); +INSERT INTO "status" VALUES(41,6,9,'2015-06-02 13:28:02'); +INSERT INTO "status" VALUES(41,6,9,'2015-06-02 13:29:02'); +INSERT INTO "status" VALUES(41,6,9,'2015-06-02 13:30:02'); +INSERT INTO "status" VALUES(41,6,9,'2015-06-02 13:31:02'); +INSERT INTO "status" VALUES(41,6,9,'2015-06-02 13:32:02'); +INSERT INTO "status" VALUES(41,6,9,'2015-06-02 13:33:02'); +INSERT INTO "status" VALUES(41,6,9,'2015-06-02 13:34:02'); +INSERT INTO "status" VALUES(41,6,9,'2015-06-02 13:35:02'); +INSERT INTO "status" VALUES(41,6,9,'2015-06-02 13:36:02'); +INSERT INTO "status" VALUES(41,6,9,'2015-06-02 13:37:02'); +INSERT INTO "status" VALUES(41,6,9,'2015-06-02 13:38:02'); +INSERT INTO "status" VALUES(41,7,8,'2015-06-02 13:39:02'); +INSERT INTO "status" VALUES(41,7,8,'2015-06-02 13:40:02'); +INSERT INTO "status" VALUES(41,7,8,'2015-06-02 13:41:03'); +INSERT INTO "status" VALUES(41,7,8,'2015-06-02 13:42:03'); +INSERT INTO "status" VALUES(41,8,7,'2015-06-02 13:43:03'); +INSERT INTO "status" VALUES(41,7,8,'2015-06-02 13:44:02'); +INSERT INTO "status" VALUES(41,7,8,'2015-06-02 13:45:03'); +INSERT INTO "status" VALUES(41,7,8,'2015-06-02 13:46:02'); +INSERT INTO "status" VALUES(41,7,8,'2015-06-02 13:47:02'); +INSERT INTO "status" VALUES(41,7,8,'2015-06-02 13:48:02'); +INSERT INTO "status" VALUES(41,7,8,'2015-06-02 13:49:02'); +INSERT INTO "status" VALUES(41,7,8,'2015-06-02 13:50:03'); +INSERT INTO "status" VALUES(41,7,8,'2015-06-02 13:51:02'); +INSERT INTO "status" VALUES(41,7,8,'2015-06-02 13:52:02'); +INSERT INTO "status" VALUES(41,7,8,'2015-06-02 13:53:02'); +INSERT INTO "status" VALUES(41,7,8,'2015-06-02 13:54:02'); +INSERT INTO "status" VALUES(41,7,8,'2015-06-02 13:55:03'); +INSERT INTO "status" VALUES(41,7,8,'2015-06-02 13:56:02'); +INSERT INTO "status" VALUES(41,7,8,'2015-06-02 13:57:02'); +INSERT INTO "status" VALUES(41,7,8,'2015-06-02 13:58:02'); +INSERT INTO "status" VALUES(41,7,8,'2015-06-02 13:59:02'); +INSERT INTO "status" VALUES(41,7,8,'2015-06-02 14:00:02'); +INSERT INTO "status" VALUES(41,7,8,'2015-06-02 14:01:02'); +INSERT INTO "status" VALUES(41,7,8,'2015-06-02 14:02:02'); +INSERT INTO "status" VALUES(41,6,9,'2015-06-02 14:03:02'); +INSERT INTO "status" VALUES(41,6,9,'2015-06-02 14:04:02'); +INSERT INTO "status" VALUES(41,6,9,'2015-06-02 14:05:02'); +INSERT INTO "status" VALUES(41,6,9,'2015-06-02 14:06:02'); +INSERT INTO "status" VALUES(41,6,9,'2015-06-02 14:07:02'); +INSERT INTO "status" VALUES(41,6,9,'2015-06-02 14:08:02'); +INSERT INTO "status" VALUES(41,6,9,'2015-06-02 14:09:02'); +INSERT INTO "status" VALUES(41,6,9,'2015-06-02 14:10:02'); +INSERT INTO "status" VALUES(41,6,9,'2015-06-02 14:11:02'); +INSERT INTO "status" VALUES(41,6,9,'2015-06-02 14:12:02'); +INSERT INTO "status" VALUES(41,6,9,'2015-06-02 14:13:02'); +INSERT INTO "status" VALUES(41,6,9,'2015-06-02 14:14:02'); +INSERT INTO "status" VALUES(41,6,9,'2015-06-02 14:15:02'); +INSERT INTO "status" VALUES(41,6,9,'2015-06-02 14:16:02'); +INSERT INTO "status" VALUES(41,6,9,'2015-06-02 14:17:02'); +INSERT INTO "status" VALUES(41,6,9,'2015-06-02 14:18:02'); +INSERT INTO "status" VALUES(41,6,9,'2015-06-02 14:19:02'); +INSERT INTO "status" VALUES(41,6,9,'2015-06-02 14:20:03'); +INSERT INTO "status" VALUES(41,6,9,'2015-06-02 14:21:02'); +INSERT INTO "status" VALUES(41,6,9,'2015-06-02 14:22:02'); +INSERT INTO "status" VALUES(41,6,9,'2015-06-02 14:23:03'); +INSERT INTO "status" VALUES(41,6,9,'2015-06-02 14:24:02'); +INSERT INTO "status" VALUES(41,6,9,'2015-06-02 14:25:01'); +INSERT INTO "status" VALUES(41,6,9,'2015-06-02 14:26:02'); +INSERT INTO "status" VALUES(41,6,9,'2015-06-02 14:27:02'); +INSERT INTO "status" VALUES(41,6,9,'2015-06-02 14:28:02'); +INSERT INTO "status" VALUES(41,6,9,'2015-06-02 14:29:02'); +INSERT INTO "status" VALUES(41,6,9,'2015-06-02 14:30:02'); +INSERT INTO "status" VALUES(41,6,9,'2015-06-02 14:31:02'); +INSERT INTO "status" VALUES(41,6,9,'2015-06-02 14:32:02'); +INSERT INTO "status" VALUES(41,6,9,'2015-06-02 14:33:02'); +INSERT INTO "status" VALUES(41,6,9,'2015-06-02 14:34:02'); +INSERT INTO "status" VALUES(41,6,9,'2015-06-02 14:35:02'); +INSERT INTO "status" VALUES(41,6,9,'2015-06-02 14:36:02'); +INSERT INTO "status" VALUES(41,6,9,'2015-06-02 14:37:02'); +INSERT INTO "status" VALUES(41,6,9,'2015-06-02 14:38:02'); +INSERT INTO "status" VALUES(41,6,9,'2015-06-02 14:39:02'); +INSERT INTO "status" VALUES(41,6,9,'2015-06-02 14:40:02'); +INSERT INTO "status" VALUES(41,6,9,'2015-06-02 14:41:02'); +INSERT INTO "status" VALUES(41,6,9,'2015-06-02 14:42:02'); +INSERT INTO "status" VALUES(41,6,9,'2015-06-02 14:43:02'); +INSERT INTO "status" VALUES(41,6,9,'2015-06-02 14:44:02'); +INSERT INTO "status" VALUES(41,6,9,'2015-06-02 14:45:02'); +INSERT INTO "status" VALUES(41,6,9,'2015-06-02 14:46:02'); +INSERT INTO "status" VALUES(41,6,9,'2015-06-02 14:47:02'); +INSERT INTO "status" VALUES(41,6,9,'2015-06-02 14:48:02'); +INSERT INTO "status" VALUES(42,9,6,'2015-06-02 12:46:02'); +INSERT INTO "status" VALUES(42,9,6,'2015-06-02 12:47:02'); +INSERT INTO "status" VALUES(42,9,6,'2015-06-02 12:48:02'); +INSERT INTO "status" VALUES(42,9,6,'2015-06-02 12:49:02'); +INSERT INTO "status" VALUES(42,9,6,'2015-06-02 12:50:02'); +INSERT INTO "status" VALUES(42,9,6,'2015-06-02 12:51:02'); +INSERT INTO "status" VALUES(42,9,6,'2015-06-02 12:52:02'); +INSERT INTO "status" VALUES(42,9,6,'2015-06-02 12:53:03'); +INSERT INTO "status" VALUES(42,9,6,'2015-06-02 12:54:02'); +INSERT INTO "status" VALUES(42,9,6,'2015-06-02 12:55:02'); +INSERT INTO "status" VALUES(42,9,6,'2015-06-02 12:56:01'); +INSERT INTO "status" VALUES(42,9,6,'2015-06-02 12:57:02'); +INSERT INTO "status" VALUES(42,9,6,'2015-06-02 12:58:02'); +INSERT INTO "status" VALUES(42,9,6,'2015-06-02 12:59:02'); +INSERT INTO "status" VALUES(42,9,6,'2015-06-02 13:00:01'); +INSERT INTO "status" VALUES(42,9,6,'2015-06-02 13:01:03'); +INSERT INTO "status" VALUES(42,9,6,'2015-06-02 13:02:02'); +INSERT INTO "status" VALUES(42,9,6,'2015-06-02 13:03:02'); +INSERT INTO "status" VALUES(42,9,6,'2015-06-02 13:04:02'); +INSERT INTO "status" VALUES(42,9,6,'2015-06-02 13:05:03'); +INSERT INTO "status" VALUES(42,9,6,'2015-06-02 13:06:02'); +INSERT INTO "status" VALUES(42,9,6,'2015-06-02 13:07:02'); +INSERT INTO "status" VALUES(42,8,7,'2015-06-02 13:08:02'); +INSERT INTO "status" VALUES(42,8,7,'2015-06-02 13:09:02'); +INSERT INTO "status" VALUES(42,8,7,'2015-06-02 13:10:02'); +INSERT INTO "status" VALUES(42,7,8,'2015-06-02 13:11:02'); +INSERT INTO "status" VALUES(42,7,8,'2015-06-02 13:12:02'); +INSERT INTO "status" VALUES(42,7,8,'2015-06-02 13:13:03'); +INSERT INTO "status" VALUES(42,7,8,'2015-06-02 13:14:03'); +INSERT INTO "status" VALUES(42,7,8,'2015-06-02 13:15:02'); +INSERT INTO "status" VALUES(42,7,8,'2015-06-02 13:16:02'); +INSERT INTO "status" VALUES(42,7,8,'2015-06-02 13:17:02'); +INSERT INTO "status" VALUES(42,7,8,'2015-06-02 13:18:02'); +INSERT INTO "status" VALUES(42,7,8,'2015-06-02 13:19:02'); +INSERT INTO "status" VALUES(42,7,8,'2015-06-02 13:20:02'); +INSERT INTO "status" VALUES(42,7,8,'2015-06-02 13:21:02'); +INSERT INTO "status" VALUES(42,7,8,'2015-06-02 13:22:02'); +INSERT INTO "status" VALUES(42,7,8,'2015-06-02 13:23:02'); +INSERT INTO "status" VALUES(42,7,8,'2015-06-02 13:24:02'); +INSERT INTO "status" VALUES(42,7,8,'2015-06-02 13:25:02'); +INSERT INTO "status" VALUES(42,7,8,'2015-06-02 13:26:02'); +INSERT INTO "status" VALUES(42,7,8,'2015-06-02 13:27:02'); +INSERT INTO "status" VALUES(42,7,8,'2015-06-02 13:28:02'); +INSERT INTO "status" VALUES(42,7,8,'2015-06-02 13:29:02'); +INSERT INTO "status" VALUES(42,7,8,'2015-06-02 13:30:02'); +INSERT INTO "status" VALUES(42,7,8,'2015-06-02 13:31:02'); +INSERT INTO "status" VALUES(42,7,8,'2015-06-02 13:32:02'); +INSERT INTO "status" VALUES(42,7,8,'2015-06-02 13:33:02'); +INSERT INTO "status" VALUES(42,7,8,'2015-06-02 13:34:02'); +INSERT INTO "status" VALUES(42,7,8,'2015-06-02 13:35:02'); +INSERT INTO "status" VALUES(42,7,8,'2015-06-02 13:36:02'); +INSERT INTO "status" VALUES(42,7,8,'2015-06-02 13:37:02'); +INSERT INTO "status" VALUES(42,7,8,'2015-06-02 13:38:02'); +INSERT INTO "status" VALUES(42,7,8,'2015-06-02 13:39:02'); +INSERT INTO "status" VALUES(42,7,8,'2015-06-02 13:40:02'); +INSERT INTO "status" VALUES(42,7,8,'2015-06-02 13:41:03'); +INSERT INTO "status" VALUES(42,7,8,'2015-06-02 13:42:03'); +INSERT INTO "status" VALUES(42,7,8,'2015-06-02 13:43:03'); +INSERT INTO "status" VALUES(42,7,8,'2015-06-02 13:44:02'); +INSERT INTO "status" VALUES(42,7,8,'2015-06-02 13:45:03'); +INSERT INTO "status" VALUES(42,7,8,'2015-06-02 13:46:02'); +INSERT INTO "status" VALUES(42,7,8,'2015-06-02 13:47:02'); +INSERT INTO "status" VALUES(42,7,8,'2015-06-02 13:48:02'); +INSERT INTO "status" VALUES(42,7,8,'2015-06-02 13:49:02'); +INSERT INTO "status" VALUES(42,7,8,'2015-06-02 13:50:03'); +INSERT INTO "status" VALUES(42,7,8,'2015-06-02 13:51:02'); +INSERT INTO "status" VALUES(42,7,8,'2015-06-02 13:52:02'); +INSERT INTO "status" VALUES(42,7,8,'2015-06-02 13:53:02'); +INSERT INTO "status" VALUES(42,7,8,'2015-06-02 13:54:02'); +INSERT INTO "status" VALUES(42,7,8,'2015-06-02 13:55:03'); +INSERT INTO "status" VALUES(42,7,8,'2015-06-02 13:56:02'); +INSERT INTO "status" VALUES(42,7,8,'2015-06-02 13:57:02'); +INSERT INTO "status" VALUES(42,7,8,'2015-06-02 13:58:02'); +INSERT INTO "status" VALUES(42,7,8,'2015-06-02 13:59:02'); +INSERT INTO "status" VALUES(42,7,8,'2015-06-02 14:00:02'); +INSERT INTO "status" VALUES(42,7,8,'2015-06-02 14:01:02'); +INSERT INTO "status" VALUES(42,7,8,'2015-06-02 14:02:02'); +INSERT INTO "status" VALUES(42,7,8,'2015-06-02 14:03:02'); +INSERT INTO "status" VALUES(42,7,8,'2015-06-02 14:04:02'); +INSERT INTO "status" VALUES(42,7,8,'2015-06-02 14:05:02'); +INSERT INTO "status" VALUES(42,7,8,'2015-06-02 14:06:02'); +INSERT INTO "status" VALUES(42,7,8,'2015-06-02 14:07:02'); +INSERT INTO "status" VALUES(42,7,8,'2015-06-02 14:08:02'); +INSERT INTO "status" VALUES(42,7,8,'2015-06-02 14:09:02'); +INSERT INTO "status" VALUES(42,7,8,'2015-06-02 14:10:02'); +INSERT INTO "status" VALUES(42,7,8,'2015-06-02 14:11:02'); +INSERT INTO "status" VALUES(42,7,8,'2015-06-02 14:12:02'); +INSERT INTO "status" VALUES(42,7,8,'2015-06-02 14:13:02'); +INSERT INTO "status" VALUES(42,7,8,'2015-06-02 14:14:02'); +INSERT INTO "status" VALUES(42,7,8,'2015-06-02 14:15:02'); +INSERT INTO "status" VALUES(42,7,8,'2015-06-02 14:16:02'); +INSERT INTO "status" VALUES(42,7,8,'2015-06-02 14:17:02'); +INSERT INTO "status" VALUES(42,7,8,'2015-06-02 14:18:02'); +INSERT INTO "status" VALUES(42,7,8,'2015-06-02 14:19:02'); +INSERT INTO "status" VALUES(42,7,8,'2015-06-02 14:20:03'); +INSERT INTO "status" VALUES(42,7,8,'2015-06-02 14:21:02'); +INSERT INTO "status" VALUES(42,7,8,'2015-06-02 14:22:02'); +INSERT INTO "status" VALUES(42,7,8,'2015-06-02 14:23:03'); +INSERT INTO "status" VALUES(42,7,8,'2015-06-02 14:24:02'); +INSERT INTO "status" VALUES(42,7,8,'2015-06-02 14:25:01'); +INSERT INTO "status" VALUES(42,7,8,'2015-06-02 14:26:02'); +INSERT INTO "status" VALUES(42,7,8,'2015-06-02 14:27:02'); +INSERT INTO "status" VALUES(42,7,8,'2015-06-02 14:28:02'); +INSERT INTO "status" VALUES(42,7,8,'2015-06-02 14:29:02'); +INSERT INTO "status" VALUES(42,7,8,'2015-06-02 14:30:02'); +INSERT INTO "status" VALUES(42,7,8,'2015-06-02 14:31:02'); +INSERT INTO "status" VALUES(42,7,8,'2015-06-02 14:32:02'); +INSERT INTO "status" VALUES(42,7,8,'2015-06-02 14:33:02'); +INSERT INTO "status" VALUES(42,7,8,'2015-06-02 14:34:02'); +INSERT INTO "status" VALUES(42,7,8,'2015-06-02 14:35:02'); +INSERT INTO "status" VALUES(42,7,8,'2015-06-02 14:36:02'); +INSERT INTO "status" VALUES(42,7,8,'2015-06-02 14:37:02'); +INSERT INTO "status" VALUES(42,7,8,'2015-06-02 14:38:02'); +INSERT INTO "status" VALUES(42,7,8,'2015-06-02 14:39:02'); +INSERT INTO "status" VALUES(42,7,8,'2015-06-02 14:40:02'); +INSERT INTO "status" VALUES(42,7,8,'2015-06-02 14:41:02'); +INSERT INTO "status" VALUES(42,7,8,'2015-06-02 14:42:02'); +INSERT INTO "status" VALUES(42,7,8,'2015-06-02 14:43:02'); +INSERT INTO "status" VALUES(42,8,7,'2015-06-02 14:44:02'); +INSERT INTO "status" VALUES(42,8,7,'2015-06-02 14:45:02'); +INSERT INTO "status" VALUES(42,9,6,'2015-06-02 14:46:02'); +INSERT INTO "status" VALUES(42,9,6,'2015-06-02 14:47:02'); +INSERT INTO "status" VALUES(42,9,6,'2015-06-02 14:48:02'); +INSERT INTO "status" VALUES(45,10,5,'2015-06-02 12:46:02'); +INSERT INTO "status" VALUES(45,10,5,'2015-06-02 12:47:02'); +INSERT INTO "status" VALUES(45,10,5,'2015-06-02 12:48:02'); +INSERT INTO "status" VALUES(45,10,5,'2015-06-02 12:49:02'); +INSERT INTO "status" VALUES(45,10,5,'2015-06-02 12:50:02'); +INSERT INTO "status" VALUES(45,10,5,'2015-06-02 12:51:02'); +INSERT INTO "status" VALUES(45,10,5,'2015-06-02 12:52:02'); +INSERT INTO "status" VALUES(45,10,5,'2015-06-02 12:53:03'); +INSERT INTO "status" VALUES(45,10,5,'2015-06-02 12:54:02'); +INSERT INTO "status" VALUES(45,10,5,'2015-06-02 12:55:02'); +INSERT INTO "status" VALUES(45,10,5,'2015-06-02 12:56:01'); +INSERT INTO "status" VALUES(45,10,5,'2015-06-02 12:57:02'); +INSERT INTO "status" VALUES(45,10,5,'2015-06-02 12:58:02'); +INSERT INTO "status" VALUES(45,10,5,'2015-06-02 12:59:02'); +INSERT INTO "status" VALUES(45,10,5,'2015-06-02 13:00:01'); +INSERT INTO "status" VALUES(45,10,5,'2015-06-02 13:01:03'); +INSERT INTO "status" VALUES(45,10,5,'2015-06-02 13:02:02'); +INSERT INTO "status" VALUES(45,10,5,'2015-06-02 13:03:02'); +INSERT INTO "status" VALUES(45,10,5,'2015-06-02 13:04:02'); +INSERT INTO "status" VALUES(45,10,5,'2015-06-02 13:05:03'); +INSERT INTO "status" VALUES(45,10,5,'2015-06-02 13:06:02'); +INSERT INTO "status" VALUES(45,10,5,'2015-06-02 13:07:02'); +INSERT INTO "status" VALUES(45,9,6,'2015-06-02 13:08:02'); +INSERT INTO "status" VALUES(45,9,6,'2015-06-02 13:09:02'); +INSERT INTO "status" VALUES(45,9,6,'2015-06-02 13:10:02'); +INSERT INTO "status" VALUES(45,9,6,'2015-06-02 13:11:02'); +INSERT INTO "status" VALUES(45,9,6,'2015-06-02 13:12:02'); +INSERT INTO "status" VALUES(45,9,6,'2015-06-02 13:13:03'); +INSERT INTO "status" VALUES(45,9,6,'2015-06-02 13:14:03'); +INSERT INTO "status" VALUES(45,9,6,'2015-06-02 13:15:02'); +INSERT INTO "status" VALUES(45,9,6,'2015-06-02 13:16:02'); +INSERT INTO "status" VALUES(45,9,6,'2015-06-02 13:17:02'); +INSERT INTO "status" VALUES(45,9,6,'2015-06-02 13:18:02'); +INSERT INTO "status" VALUES(45,9,6,'2015-06-02 13:19:02'); +INSERT INTO "status" VALUES(45,9,6,'2015-06-02 13:20:02'); +INSERT INTO "status" VALUES(45,9,6,'2015-06-02 13:21:02'); +INSERT INTO "status" VALUES(45,9,6,'2015-06-02 13:22:02'); +INSERT INTO "status" VALUES(45,9,6,'2015-06-02 13:23:02'); +INSERT INTO "status" VALUES(45,9,6,'2015-06-02 13:24:02'); +INSERT INTO "status" VALUES(45,10,5,'2015-06-02 13:25:02'); +INSERT INTO "status" VALUES(45,10,5,'2015-06-02 13:26:02'); +INSERT INTO "status" VALUES(45,11,4,'2015-06-02 13:27:02'); +INSERT INTO "status" VALUES(45,11,4,'2015-06-02 13:28:02'); +INSERT INTO "status" VALUES(45,11,4,'2015-06-02 13:29:02'); +INSERT INTO "status" VALUES(45,11,4,'2015-06-02 13:30:02'); +INSERT INTO "status" VALUES(45,11,4,'2015-06-02 13:31:02'); +INSERT INTO "status" VALUES(45,11,4,'2015-06-02 13:32:02'); +INSERT INTO "status" VALUES(45,11,4,'2015-06-02 13:33:02'); +INSERT INTO "status" VALUES(45,11,4,'2015-06-02 13:34:02'); +INSERT INTO "status" VALUES(45,12,3,'2015-06-02 13:35:02'); +INSERT INTO "status" VALUES(45,12,3,'2015-06-02 13:36:02'); +INSERT INTO "status" VALUES(45,12,3,'2015-06-02 13:37:02'); +INSERT INTO "status" VALUES(45,12,3,'2015-06-02 13:38:02'); +INSERT INTO "status" VALUES(45,12,3,'2015-06-02 13:39:02'); +INSERT INTO "status" VALUES(45,12,3,'2015-06-02 13:40:02'); +INSERT INTO "status" VALUES(45,12,3,'2015-06-02 13:41:03'); +INSERT INTO "status" VALUES(45,12,3,'2015-06-02 13:42:03'); +INSERT INTO "status" VALUES(45,12,3,'2015-06-02 13:43:03'); +INSERT INTO "status" VALUES(45,12,3,'2015-06-02 13:44:02'); +INSERT INTO "status" VALUES(45,12,3,'2015-06-02 13:45:03'); +INSERT INTO "status" VALUES(45,12,3,'2015-06-02 13:46:02'); +INSERT INTO "status" VALUES(45,12,3,'2015-06-02 13:47:02'); +INSERT INTO "status" VALUES(45,11,4,'2015-06-02 13:48:02'); +INSERT INTO "status" VALUES(45,11,4,'2015-06-02 13:49:02'); +INSERT INTO "status" VALUES(45,11,4,'2015-06-02 13:50:03'); +INSERT INTO "status" VALUES(45,11,4,'2015-06-02 13:51:02'); +INSERT INTO "status" VALUES(45,11,4,'2015-06-02 13:52:02'); +INSERT INTO "status" VALUES(45,11,4,'2015-06-02 13:53:02'); +INSERT INTO "status" VALUES(45,10,5,'2015-06-02 13:54:02'); +INSERT INTO "status" VALUES(45,10,5,'2015-06-02 13:55:03'); +INSERT INTO "status" VALUES(45,10,5,'2015-06-02 13:56:02'); +INSERT INTO "status" VALUES(45,10,5,'2015-06-02 13:57:02'); +INSERT INTO "status" VALUES(45,10,5,'2015-06-02 13:58:02'); +INSERT INTO "status" VALUES(45,10,5,'2015-06-02 13:59:02'); +INSERT INTO "status" VALUES(45,10,5,'2015-06-02 14:00:02'); +INSERT INTO "status" VALUES(45,10,5,'2015-06-02 14:01:02'); +INSERT INTO "status" VALUES(45,11,4,'2015-06-02 14:02:02'); +INSERT INTO "status" VALUES(45,11,4,'2015-06-02 14:03:02'); +INSERT INTO "status" VALUES(45,11,4,'2015-06-02 14:04:02'); +INSERT INTO "status" VALUES(45,11,4,'2015-06-02 14:05:02'); +INSERT INTO "status" VALUES(45,11,4,'2015-06-02 14:06:02'); +INSERT INTO "status" VALUES(45,11,4,'2015-06-02 14:07:02'); +INSERT INTO "status" VALUES(45,11,4,'2015-06-02 14:08:02'); +INSERT INTO "status" VALUES(45,11,4,'2015-06-02 14:09:02'); +INSERT INTO "status" VALUES(45,11,4,'2015-06-02 14:10:02'); +INSERT INTO "status" VALUES(45,13,2,'2015-06-02 14:11:02'); +INSERT INTO "status" VALUES(45,13,2,'2015-06-02 14:12:02'); +INSERT INTO "status" VALUES(45,13,2,'2015-06-02 14:13:02'); +INSERT INTO "status" VALUES(45,13,2,'2015-06-02 14:14:02'); +INSERT INTO "status" VALUES(45,13,2,'2015-06-02 14:15:02'); +INSERT INTO "status" VALUES(45,13,2,'2015-06-02 14:16:02'); +INSERT INTO "status" VALUES(45,13,2,'2015-06-02 14:17:02'); +INSERT INTO "status" VALUES(45,13,2,'2015-06-02 14:18:02'); +INSERT INTO "status" VALUES(45,11,4,'2015-06-02 14:19:02'); +INSERT INTO "status" VALUES(45,11,4,'2015-06-02 14:20:03'); +INSERT INTO "status" VALUES(45,11,4,'2015-06-02 14:21:02'); +INSERT INTO "status" VALUES(45,11,4,'2015-06-02 14:22:02'); +INSERT INTO "status" VALUES(45,11,4,'2015-06-02 14:23:03'); +INSERT INTO "status" VALUES(45,11,4,'2015-06-02 14:24:02'); +INSERT INTO "status" VALUES(45,11,4,'2015-06-02 14:25:01'); +INSERT INTO "status" VALUES(45,11,4,'2015-06-02 14:26:02'); +INSERT INTO "status" VALUES(45,11,4,'2015-06-02 14:27:02'); +INSERT INTO "status" VALUES(45,11,4,'2015-06-02 14:28:02'); +INSERT INTO "status" VALUES(45,11,4,'2015-06-02 14:29:02'); +INSERT INTO "status" VALUES(45,11,4,'2015-06-02 14:30:02'); +INSERT INTO "status" VALUES(45,11,4,'2015-06-02 14:31:02'); +INSERT INTO "status" VALUES(45,11,4,'2015-06-02 14:32:02'); +INSERT INTO "status" VALUES(45,11,4,'2015-06-02 14:33:02'); +INSERT INTO "status" VALUES(45,11,4,'2015-06-02 14:34:02'); +INSERT INTO "status" VALUES(45,11,4,'2015-06-02 14:35:02'); +INSERT INTO "status" VALUES(45,11,4,'2015-06-02 14:36:02'); +INSERT INTO "status" VALUES(45,11,4,'2015-06-02 14:37:02'); +INSERT INTO "status" VALUES(45,11,4,'2015-06-02 14:38:02'); +INSERT INTO "status" VALUES(45,11,4,'2015-06-02 14:39:02'); +INSERT INTO "status" VALUES(45,11,4,'2015-06-02 14:40:02'); +INSERT INTO "status" VALUES(45,11,4,'2015-06-02 14:41:02'); +INSERT INTO "status" VALUES(45,11,4,'2015-06-02 14:42:02'); +INSERT INTO "status" VALUES(45,11,4,'2015-06-02 14:43:02'); +INSERT INTO "status" VALUES(45,11,4,'2015-06-02 14:44:02'); +INSERT INTO "status" VALUES(45,11,4,'2015-06-02 14:45:02'); +INSERT INTO "status" VALUES(45,11,4,'2015-06-02 14:46:02'); +INSERT INTO "status" VALUES(45,11,4,'2015-06-02 14:47:02'); +INSERT INTO "status" VALUES(45,11,4,'2015-06-02 14:48:02'); +INSERT INTO "status" VALUES(46,7,8,'2015-06-02 12:46:02'); +INSERT INTO "status" VALUES(46,7,8,'2015-06-02 12:47:02'); +INSERT INTO "status" VALUES(46,7,8,'2015-06-02 12:48:02'); +INSERT INTO "status" VALUES(46,7,8,'2015-06-02 12:49:02'); +INSERT INTO "status" VALUES(46,7,8,'2015-06-02 12:50:02'); +INSERT INTO "status" VALUES(46,7,8,'2015-06-02 12:51:02'); +INSERT INTO "status" VALUES(46,7,8,'2015-06-02 12:52:02'); +INSERT INTO "status" VALUES(46,7,8,'2015-06-02 12:53:03'); +INSERT INTO "status" VALUES(46,7,8,'2015-06-02 12:54:02'); +INSERT INTO "status" VALUES(46,7,8,'2015-06-02 12:55:02'); +INSERT INTO "status" VALUES(46,7,8,'2015-06-02 12:56:01'); +INSERT INTO "status" VALUES(46,7,8,'2015-06-02 12:57:02'); +INSERT INTO "status" VALUES(46,7,8,'2015-06-02 12:58:02'); +INSERT INTO "status" VALUES(46,7,8,'2015-06-02 12:59:02'); +INSERT INTO "status" VALUES(46,8,7,'2015-06-02 13:00:01'); +INSERT INTO "status" VALUES(46,8,7,'2015-06-02 13:01:03'); +INSERT INTO "status" VALUES(46,8,7,'2015-06-02 13:02:02'); +INSERT INTO "status" VALUES(46,8,7,'2015-06-02 13:03:02'); +INSERT INTO "status" VALUES(46,8,7,'2015-06-02 13:04:02'); +INSERT INTO "status" VALUES(46,8,7,'2015-06-02 13:05:03'); +INSERT INTO "status" VALUES(46,8,7,'2015-06-02 13:06:02'); +INSERT INTO "status" VALUES(46,8,7,'2015-06-02 13:07:02'); +INSERT INTO "status" VALUES(46,8,7,'2015-06-02 13:08:02'); +INSERT INTO "status" VALUES(46,9,6,'2015-06-02 13:09:02'); +INSERT INTO "status" VALUES(46,9,6,'2015-06-02 13:10:02'); +INSERT INTO "status" VALUES(46,9,6,'2015-06-02 13:11:02'); +INSERT INTO "status" VALUES(46,9,6,'2015-06-02 13:12:02'); +INSERT INTO "status" VALUES(46,9,6,'2015-06-02 13:13:03'); +INSERT INTO "status" VALUES(46,9,6,'2015-06-02 13:14:03'); +INSERT INTO "status" VALUES(46,9,6,'2015-06-02 13:15:02'); +INSERT INTO "status" VALUES(46,9,6,'2015-06-02 13:16:02'); +INSERT INTO "status" VALUES(46,9,6,'2015-06-02 13:17:02'); +INSERT INTO "status" VALUES(46,9,6,'2015-06-02 13:18:02'); +INSERT INTO "status" VALUES(46,9,6,'2015-06-02 13:19:02'); +INSERT INTO "status" VALUES(46,9,6,'2015-06-02 13:20:02'); +INSERT INTO "status" VALUES(46,9,6,'2015-06-02 13:21:02'); +INSERT INTO "status" VALUES(46,9,6,'2015-06-02 13:22:02'); +INSERT INTO "status" VALUES(46,9,6,'2015-06-02 13:23:02'); +INSERT INTO "status" VALUES(46,9,6,'2015-06-02 13:24:02'); +INSERT INTO "status" VALUES(46,9,6,'2015-06-02 13:25:02'); +INSERT INTO "status" VALUES(46,9,6,'2015-06-02 13:26:02'); +INSERT INTO "status" VALUES(46,9,6,'2015-06-02 13:27:02'); +INSERT INTO "status" VALUES(46,9,6,'2015-06-02 13:28:02'); +INSERT INTO "status" VALUES(46,9,6,'2015-06-02 13:29:02'); +INSERT INTO "status" VALUES(46,9,6,'2015-06-02 13:30:02'); +INSERT INTO "status" VALUES(46,9,6,'2015-06-02 13:31:02'); +INSERT INTO "status" VALUES(46,9,6,'2015-06-02 13:32:02'); +INSERT INTO "status" VALUES(46,9,6,'2015-06-02 13:33:02'); +INSERT INTO "status" VALUES(46,8,7,'2015-06-02 13:34:02'); +INSERT INTO "status" VALUES(46,8,7,'2015-06-02 13:35:02'); +INSERT INTO "status" VALUES(46,8,7,'2015-06-02 13:36:02'); +INSERT INTO "status" VALUES(46,8,7,'2015-06-02 13:37:02'); +INSERT INTO "status" VALUES(46,8,7,'2015-06-02 13:38:02'); +INSERT INTO "status" VALUES(46,8,7,'2015-06-02 13:39:02'); +INSERT INTO "status" VALUES(46,8,7,'2015-06-02 13:40:02'); +INSERT INTO "status" VALUES(46,8,7,'2015-06-02 13:41:03'); +INSERT INTO "status" VALUES(46,8,7,'2015-06-02 13:42:03'); +INSERT INTO "status" VALUES(46,8,7,'2015-06-02 13:43:03'); +INSERT INTO "status" VALUES(46,8,7,'2015-06-02 13:44:02'); +INSERT INTO "status" VALUES(46,8,7,'2015-06-02 13:45:03'); +INSERT INTO "status" VALUES(46,8,7,'2015-06-02 13:46:02'); +INSERT INTO "status" VALUES(46,8,7,'2015-06-02 13:47:02'); +INSERT INTO "status" VALUES(46,8,7,'2015-06-02 13:48:02'); +INSERT INTO "status" VALUES(46,8,7,'2015-06-02 13:49:02'); +INSERT INTO "status" VALUES(46,8,7,'2015-06-02 13:50:03'); +INSERT INTO "status" VALUES(46,8,7,'2015-06-02 13:51:02'); +INSERT INTO "status" VALUES(46,8,7,'2015-06-02 13:52:02'); +INSERT INTO "status" VALUES(46,8,7,'2015-06-02 13:53:02'); +INSERT INTO "status" VALUES(46,8,7,'2015-06-02 13:54:02'); +INSERT INTO "status" VALUES(46,8,7,'2015-06-02 13:55:03'); +INSERT INTO "status" VALUES(46,8,7,'2015-06-02 13:56:02'); +INSERT INTO "status" VALUES(46,8,7,'2015-06-02 13:57:02'); +INSERT INTO "status" VALUES(46,8,7,'2015-06-02 13:58:02'); +INSERT INTO "status" VALUES(46,8,7,'2015-06-02 13:59:02'); +INSERT INTO "status" VALUES(46,8,7,'2015-06-02 14:00:02'); +INSERT INTO "status" VALUES(46,8,7,'2015-06-02 14:01:02'); +INSERT INTO "status" VALUES(46,8,7,'2015-06-02 14:02:02'); +INSERT INTO "status" VALUES(46,8,7,'2015-06-02 14:03:02'); +INSERT INTO "status" VALUES(46,8,7,'2015-06-02 14:04:02'); +INSERT INTO "status" VALUES(46,8,7,'2015-06-02 14:05:02'); +INSERT INTO "status" VALUES(46,8,7,'2015-06-02 14:06:02'); +INSERT INTO "status" VALUES(46,9,6,'2015-06-02 14:07:02'); +INSERT INTO "status" VALUES(46,9,6,'2015-06-02 14:08:02'); +INSERT INTO "status" VALUES(46,9,6,'2015-06-02 14:09:02'); +INSERT INTO "status" VALUES(46,9,6,'2015-06-02 14:10:02'); +INSERT INTO "status" VALUES(46,9,6,'2015-06-02 14:11:02'); +INSERT INTO "status" VALUES(46,9,6,'2015-06-02 14:12:02'); +INSERT INTO "status" VALUES(46,8,7,'2015-06-02 14:13:02'); +INSERT INTO "status" VALUES(46,8,7,'2015-06-02 14:14:02'); +INSERT INTO "status" VALUES(46,8,7,'2015-06-02 14:15:02'); +INSERT INTO "status" VALUES(46,8,7,'2015-06-02 14:16:02'); +INSERT INTO "status" VALUES(46,8,7,'2015-06-02 14:17:02'); +INSERT INTO "status" VALUES(46,8,7,'2015-06-02 14:18:02'); +INSERT INTO "status" VALUES(46,8,7,'2015-06-02 14:19:02'); +INSERT INTO "status" VALUES(46,8,7,'2015-06-02 14:20:03'); +INSERT INTO "status" VALUES(46,8,7,'2015-06-02 14:21:02'); +INSERT INTO "status" VALUES(46,8,7,'2015-06-02 14:22:02'); +INSERT INTO "status" VALUES(46,8,7,'2015-06-02 14:23:03'); +INSERT INTO "status" VALUES(46,8,7,'2015-06-02 14:24:02'); +INSERT INTO "status" VALUES(46,8,7,'2015-06-02 14:25:01'); +INSERT INTO "status" VALUES(46,8,7,'2015-06-02 14:26:02'); +INSERT INTO "status" VALUES(46,8,7,'2015-06-02 14:27:02'); +INSERT INTO "status" VALUES(46,8,7,'2015-06-02 14:28:02'); +INSERT INTO "status" VALUES(46,8,7,'2015-06-02 14:29:02'); +INSERT INTO "status" VALUES(46,8,7,'2015-06-02 14:30:02'); +INSERT INTO "status" VALUES(46,8,7,'2015-06-02 14:31:02'); +INSERT INTO "status" VALUES(46,8,7,'2015-06-02 14:32:02'); +INSERT INTO "status" VALUES(46,8,7,'2015-06-02 14:33:02'); +INSERT INTO "status" VALUES(46,8,7,'2015-06-02 14:34:02'); +INSERT INTO "status" VALUES(46,8,7,'2015-06-02 14:35:02'); +INSERT INTO "status" VALUES(46,8,7,'2015-06-02 14:36:02'); +INSERT INTO "status" VALUES(46,8,7,'2015-06-02 14:37:02'); +INSERT INTO "status" VALUES(46,8,7,'2015-06-02 14:38:02'); +INSERT INTO "status" VALUES(46,8,7,'2015-06-02 14:39:02'); +INSERT INTO "status" VALUES(46,8,7,'2015-06-02 14:40:02'); +INSERT INTO "status" VALUES(46,8,7,'2015-06-02 14:41:02'); +INSERT INTO "status" VALUES(46,8,7,'2015-06-02 14:42:02'); +INSERT INTO "status" VALUES(46,8,7,'2015-06-02 14:43:02'); +INSERT INTO "status" VALUES(46,8,7,'2015-06-02 14:44:02'); +INSERT INTO "status" VALUES(46,8,7,'2015-06-02 14:45:02'); +INSERT INTO "status" VALUES(46,8,7,'2015-06-02 14:46:02'); +INSERT INTO "status" VALUES(46,8,7,'2015-06-02 14:47:02'); +INSERT INTO "status" VALUES(46,8,7,'2015-06-02 14:48:02'); +INSERT INTO "status" VALUES(47,11,8,'2015-06-02 12:46:02'); +INSERT INTO "status" VALUES(47,11,8,'2015-06-02 12:47:02'); +INSERT INTO "status" VALUES(47,11,8,'2015-06-02 12:48:02'); +INSERT INTO "status" VALUES(47,11,8,'2015-06-02 12:49:02'); +INSERT INTO "status" VALUES(47,11,8,'2015-06-02 12:50:02'); +INSERT INTO "status" VALUES(47,11,8,'2015-06-02 12:51:02'); +INSERT INTO "status" VALUES(47,11,8,'2015-06-02 12:52:02'); +INSERT INTO "status" VALUES(47,11,8,'2015-06-02 12:53:03'); +INSERT INTO "status" VALUES(47,10,9,'2015-06-02 12:54:02'); +INSERT INTO "status" VALUES(47,9,10,'2015-06-02 12:55:02'); +INSERT INTO "status" VALUES(47,9,10,'2015-06-02 12:56:01'); +INSERT INTO "status" VALUES(47,9,10,'2015-06-02 12:57:02'); +INSERT INTO "status" VALUES(47,9,10,'2015-06-02 12:58:02'); +INSERT INTO "status" VALUES(47,9,10,'2015-06-02 12:59:02'); +INSERT INTO "status" VALUES(47,9,10,'2015-06-02 13:00:01'); +INSERT INTO "status" VALUES(47,9,10,'2015-06-02 13:01:03'); +INSERT INTO "status" VALUES(47,9,10,'2015-06-02 13:02:02'); +INSERT INTO "status" VALUES(47,9,10,'2015-06-02 13:03:02'); +INSERT INTO "status" VALUES(47,9,10,'2015-06-02 13:04:02'); +INSERT INTO "status" VALUES(47,9,10,'2015-06-02 13:05:03'); +INSERT INTO "status" VALUES(47,9,10,'2015-06-02 13:06:02'); +INSERT INTO "status" VALUES(47,9,10,'2015-06-02 13:07:02'); +INSERT INTO "status" VALUES(47,9,10,'2015-06-02 13:08:02'); +INSERT INTO "status" VALUES(47,8,11,'2015-06-02 13:09:02'); +INSERT INTO "status" VALUES(47,8,11,'2015-06-02 13:10:02'); +INSERT INTO "status" VALUES(47,8,11,'2015-06-02 13:11:02'); +INSERT INTO "status" VALUES(47,8,11,'2015-06-02 13:12:02'); +INSERT INTO "status" VALUES(47,8,11,'2015-06-02 13:13:03'); +INSERT INTO "status" VALUES(47,8,11,'2015-06-02 13:14:03'); +INSERT INTO "status" VALUES(47,8,11,'2015-06-02 13:15:02'); +INSERT INTO "status" VALUES(47,8,11,'2015-06-02 13:16:02'); +INSERT INTO "status" VALUES(47,8,11,'2015-06-02 13:17:02'); +INSERT INTO "status" VALUES(47,8,11,'2015-06-02 13:18:02'); +INSERT INTO "status" VALUES(47,8,11,'2015-06-02 13:19:02'); +INSERT INTO "status" VALUES(47,8,11,'2015-06-02 13:20:02'); +INSERT INTO "status" VALUES(47,8,11,'2015-06-02 13:21:02'); +INSERT INTO "status" VALUES(47,8,11,'2015-06-02 13:22:02'); +INSERT INTO "status" VALUES(47,8,11,'2015-06-02 13:23:02'); +INSERT INTO "status" VALUES(47,8,11,'2015-06-02 13:24:02'); +INSERT INTO "status" VALUES(47,9,10,'2015-06-02 13:25:02'); +INSERT INTO "status" VALUES(47,9,10,'2015-06-02 13:26:02'); +INSERT INTO "status" VALUES(47,9,10,'2015-06-02 13:27:02'); +INSERT INTO "status" VALUES(47,9,10,'2015-06-02 13:28:02'); +INSERT INTO "status" VALUES(47,9,10,'2015-06-02 13:29:02'); +INSERT INTO "status" VALUES(47,9,10,'2015-06-02 13:30:02'); +INSERT INTO "status" VALUES(47,9,10,'2015-06-02 13:31:02'); +INSERT INTO "status" VALUES(47,9,10,'2015-06-02 13:32:02'); +INSERT INTO "status" VALUES(47,9,10,'2015-06-02 13:33:02'); +INSERT INTO "status" VALUES(47,9,10,'2015-06-02 13:34:02'); +INSERT INTO "status" VALUES(47,9,10,'2015-06-02 13:35:02'); +INSERT INTO "status" VALUES(47,9,10,'2015-06-02 13:36:02'); +INSERT INTO "status" VALUES(47,9,10,'2015-06-02 13:37:02'); +INSERT INTO "status" VALUES(47,9,10,'2015-06-02 13:38:02'); +INSERT INTO "status" VALUES(47,9,10,'2015-06-02 13:39:02'); +INSERT INTO "status" VALUES(47,9,10,'2015-06-02 13:40:02'); +INSERT INTO "status" VALUES(47,9,10,'2015-06-02 13:41:03'); +INSERT INTO "status" VALUES(47,9,10,'2015-06-02 13:42:03'); +INSERT INTO "status" VALUES(47,9,10,'2015-06-02 13:43:03'); +INSERT INTO "status" VALUES(47,9,10,'2015-06-02 13:44:02'); +INSERT INTO "status" VALUES(47,9,10,'2015-06-02 13:45:03'); +INSERT INTO "status" VALUES(47,9,10,'2015-06-02 13:46:02'); +INSERT INTO "status" VALUES(47,9,10,'2015-06-02 13:47:02'); +INSERT INTO "status" VALUES(47,9,10,'2015-06-02 13:48:02'); +INSERT INTO "status" VALUES(47,9,10,'2015-06-02 13:49:02'); +INSERT INTO "status" VALUES(47,9,10,'2015-06-02 13:50:03'); +INSERT INTO "status" VALUES(47,9,10,'2015-06-02 13:51:02'); +INSERT INTO "status" VALUES(47,9,10,'2015-06-02 13:52:02'); +INSERT INTO "status" VALUES(47,9,10,'2015-06-02 13:53:02'); +INSERT INTO "status" VALUES(47,9,10,'2015-06-02 13:54:02'); +INSERT INTO "status" VALUES(47,9,10,'2015-06-02 13:55:03'); +INSERT INTO "status" VALUES(47,9,10,'2015-06-02 13:56:02'); +INSERT INTO "status" VALUES(47,9,10,'2015-06-02 13:57:02'); +INSERT INTO "status" VALUES(47,9,10,'2015-06-02 13:58:02'); +INSERT INTO "status" VALUES(47,9,10,'2015-06-02 13:59:02'); +INSERT INTO "status" VALUES(47,9,10,'2015-06-02 14:00:02'); +INSERT INTO "status" VALUES(47,9,10,'2015-06-02 14:01:02'); +INSERT INTO "status" VALUES(47,8,11,'2015-06-02 14:02:02'); +INSERT INTO "status" VALUES(47,7,12,'2015-06-02 14:03:02'); +INSERT INTO "status" VALUES(47,7,12,'2015-06-02 14:04:02'); +INSERT INTO "status" VALUES(47,7,12,'2015-06-02 14:05:02'); +INSERT INTO "status" VALUES(47,7,12,'2015-06-02 14:06:02'); +INSERT INTO "status" VALUES(47,7,12,'2015-06-02 14:07:02'); +INSERT INTO "status" VALUES(47,7,12,'2015-06-02 14:08:02'); +INSERT INTO "status" VALUES(47,7,12,'2015-06-02 14:09:02'); +INSERT INTO "status" VALUES(47,7,12,'2015-06-02 14:10:02'); +INSERT INTO "status" VALUES(47,7,12,'2015-06-02 14:11:02'); +INSERT INTO "status" VALUES(47,7,12,'2015-06-02 14:12:02'); +INSERT INTO "status" VALUES(47,7,12,'2015-06-02 14:13:02'); +INSERT INTO "status" VALUES(47,7,12,'2015-06-02 14:14:02'); +INSERT INTO "status" VALUES(47,7,12,'2015-06-02 14:15:02'); +INSERT INTO "status" VALUES(47,7,12,'2015-06-02 14:16:02'); +INSERT INTO "status" VALUES(47,7,12,'2015-06-02 14:17:02'); +INSERT INTO "status" VALUES(47,7,12,'2015-06-02 14:18:02'); +INSERT INTO "status" VALUES(47,8,11,'2015-06-02 14:19:02'); +INSERT INTO "status" VALUES(47,8,11,'2015-06-02 14:20:03'); +INSERT INTO "status" VALUES(47,8,11,'2015-06-02 14:21:02'); +INSERT INTO "status" VALUES(47,8,11,'2015-06-02 14:22:02'); +INSERT INTO "status" VALUES(47,8,11,'2015-06-02 14:23:03'); +INSERT INTO "status" VALUES(47,8,11,'2015-06-02 14:24:02'); +INSERT INTO "status" VALUES(47,7,12,'2015-06-02 14:25:01'); +INSERT INTO "status" VALUES(47,6,13,'2015-06-02 14:26:02'); +INSERT INTO "status" VALUES(47,6,13,'2015-06-02 14:27:02'); +INSERT INTO "status" VALUES(47,6,13,'2015-06-02 14:28:02'); +INSERT INTO "status" VALUES(47,6,13,'2015-06-02 14:29:02'); +INSERT INTO "status" VALUES(47,6,13,'2015-06-02 14:30:02'); +INSERT INTO "status" VALUES(47,6,13,'2015-06-02 14:31:02'); +INSERT INTO "status" VALUES(47,6,13,'2015-06-02 14:32:02'); +INSERT INTO "status" VALUES(47,6,13,'2015-06-02 14:33:02'); +INSERT INTO "status" VALUES(47,6,13,'2015-06-02 14:34:02'); +INSERT INTO "status" VALUES(47,6,13,'2015-06-02 14:35:02'); +INSERT INTO "status" VALUES(47,6,13,'2015-06-02 14:36:02'); +INSERT INTO "status" VALUES(47,6,13,'2015-06-02 14:37:02'); +INSERT INTO "status" VALUES(47,6,13,'2015-06-02 14:38:02'); +INSERT INTO "status" VALUES(47,5,14,'2015-06-02 14:39:02'); +INSERT INTO "status" VALUES(47,5,14,'2015-06-02 14:40:02'); +INSERT INTO "status" VALUES(47,5,14,'2015-06-02 14:41:02'); +INSERT INTO "status" VALUES(47,5,14,'2015-06-02 14:42:02'); +INSERT INTO "status" VALUES(47,5,14,'2015-06-02 14:43:02'); +INSERT INTO "status" VALUES(47,5,14,'2015-06-02 14:44:02'); +INSERT INTO "status" VALUES(47,5,14,'2015-06-02 14:45:02'); +INSERT INTO "status" VALUES(47,5,14,'2015-06-02 14:46:02'); +INSERT INTO "status" VALUES(47,5,14,'2015-06-02 14:47:02'); +INSERT INTO "status" VALUES(47,5,14,'2015-06-02 14:48:02'); +INSERT INTO "status" VALUES(48,8,7,'2015-06-02 12:46:02'); +INSERT INTO "status" VALUES(48,8,7,'2015-06-02 12:47:02'); +INSERT INTO "status" VALUES(48,8,7,'2015-06-02 12:48:02'); +INSERT INTO "status" VALUES(48,8,7,'2015-06-02 12:49:02'); +INSERT INTO "status" VALUES(48,8,7,'2015-06-02 12:50:02'); +INSERT INTO "status" VALUES(48,8,7,'2015-06-02 12:51:02'); +INSERT INTO "status" VALUES(48,8,7,'2015-06-02 12:52:02'); +INSERT INTO "status" VALUES(48,8,7,'2015-06-02 12:53:03'); +INSERT INTO "status" VALUES(48,8,7,'2015-06-02 12:54:02'); +INSERT INTO "status" VALUES(48,8,7,'2015-06-02 12:55:02'); +INSERT INTO "status" VALUES(48,8,7,'2015-06-02 12:56:01'); +INSERT INTO "status" VALUES(48,8,7,'2015-06-02 12:57:02'); +INSERT INTO "status" VALUES(48,8,7,'2015-06-02 12:58:02'); +INSERT INTO "status" VALUES(48,8,7,'2015-06-02 12:59:02'); +INSERT INTO "status" VALUES(48,8,7,'2015-06-02 13:00:01'); +INSERT INTO "status" VALUES(48,9,6,'2015-06-02 13:01:03'); +INSERT INTO "status" VALUES(48,9,6,'2015-06-02 13:02:02'); +INSERT INTO "status" VALUES(48,9,6,'2015-06-02 13:03:02'); +INSERT INTO "status" VALUES(48,9,6,'2015-06-02 13:04:02'); +INSERT INTO "status" VALUES(48,9,6,'2015-06-02 13:05:03'); +INSERT INTO "status" VALUES(48,9,6,'2015-06-02 13:06:02'); +INSERT INTO "status" VALUES(48,9,6,'2015-06-02 13:07:02'); +INSERT INTO "status" VALUES(48,9,6,'2015-06-02 13:08:02'); +INSERT INTO "status" VALUES(48,9,6,'2015-06-02 13:09:02'); +INSERT INTO "status" VALUES(48,9,6,'2015-06-02 13:10:02'); +INSERT INTO "status" VALUES(48,9,6,'2015-06-02 13:11:02'); +INSERT INTO "status" VALUES(48,9,6,'2015-06-02 13:12:02'); +INSERT INTO "status" VALUES(48,9,6,'2015-06-02 13:13:03'); +INSERT INTO "status" VALUES(48,9,6,'2015-06-02 13:14:03'); +INSERT INTO "status" VALUES(48,9,6,'2015-06-02 13:15:02'); +INSERT INTO "status" VALUES(48,9,6,'2015-06-02 13:16:02'); +INSERT INTO "status" VALUES(48,9,6,'2015-06-02 13:17:02'); +INSERT INTO "status" VALUES(48,9,6,'2015-06-02 13:18:02'); +INSERT INTO "status" VALUES(48,9,6,'2015-06-02 13:19:02'); +INSERT INTO "status" VALUES(48,9,6,'2015-06-02 13:20:02'); +INSERT INTO "status" VALUES(48,9,6,'2015-06-02 13:21:02'); +INSERT INTO "status" VALUES(48,8,7,'2015-06-02 13:22:02'); +INSERT INTO "status" VALUES(48,8,7,'2015-06-02 13:23:02'); +INSERT INTO "status" VALUES(48,8,7,'2015-06-02 13:24:02'); +INSERT INTO "status" VALUES(48,8,7,'2015-06-02 13:25:02'); +INSERT INTO "status" VALUES(48,8,7,'2015-06-02 13:26:02'); +INSERT INTO "status" VALUES(48,8,7,'2015-06-02 13:27:02'); +INSERT INTO "status" VALUES(48,8,7,'2015-06-02 13:28:02'); +INSERT INTO "status" VALUES(48,8,7,'2015-06-02 13:29:02'); +INSERT INTO "status" VALUES(48,8,7,'2015-06-02 13:30:02'); +INSERT INTO "status" VALUES(48,8,7,'2015-06-02 13:31:02'); +INSERT INTO "status" VALUES(48,8,7,'2015-06-02 13:32:02'); +INSERT INTO "status" VALUES(48,8,7,'2015-06-02 13:33:02'); +INSERT INTO "status" VALUES(48,8,7,'2015-06-02 13:34:02'); +INSERT INTO "status" VALUES(48,8,7,'2015-06-02 13:35:02'); +INSERT INTO "status" VALUES(48,8,7,'2015-06-02 13:36:02'); +INSERT INTO "status" VALUES(48,8,7,'2015-06-02 13:37:02'); +INSERT INTO "status" VALUES(48,8,7,'2015-06-02 13:38:02'); +INSERT INTO "status" VALUES(48,8,7,'2015-06-02 13:39:02'); +INSERT INTO "status" VALUES(48,8,7,'2015-06-02 13:40:02'); +INSERT INTO "status" VALUES(48,8,7,'2015-06-02 13:41:03'); +INSERT INTO "status" VALUES(48,8,7,'2015-06-02 13:42:03'); +INSERT INTO "status" VALUES(48,8,7,'2015-06-02 13:43:03'); +INSERT INTO "status" VALUES(48,8,7,'2015-06-02 13:44:02'); +INSERT INTO "status" VALUES(48,8,7,'2015-06-02 13:45:03'); +INSERT INTO "status" VALUES(48,8,7,'2015-06-02 13:46:02'); +INSERT INTO "status" VALUES(48,8,7,'2015-06-02 13:47:02'); +INSERT INTO "status" VALUES(48,8,7,'2015-06-02 13:48:02'); +INSERT INTO "status" VALUES(48,8,7,'2015-06-02 13:49:02'); +INSERT INTO "status" VALUES(48,14,1,'2015-06-02 13:50:03'); +INSERT INTO "status" VALUES(48,14,1,'2015-06-02 13:51:02'); +INSERT INTO "status" VALUES(48,14,1,'2015-06-02 13:52:02'); +INSERT INTO "status" VALUES(48,14,1,'2015-06-02 13:53:02'); +INSERT INTO "status" VALUES(48,14,1,'2015-06-02 13:54:02'); +INSERT INTO "status" VALUES(48,14,1,'2015-06-02 13:55:03'); +INSERT INTO "status" VALUES(48,14,1,'2015-06-02 13:56:02'); +INSERT INTO "status" VALUES(48,14,1,'2015-06-02 13:57:02'); +INSERT INTO "status" VALUES(48,14,1,'2015-06-02 13:58:02'); +INSERT INTO "status" VALUES(48,13,2,'2015-06-02 13:59:02'); +INSERT INTO "status" VALUES(48,13,2,'2015-06-02 14:00:02'); +INSERT INTO "status" VALUES(48,13,2,'2015-06-02 14:01:02'); +INSERT INTO "status" VALUES(48,13,2,'2015-06-02 14:02:02'); +INSERT INTO "status" VALUES(48,13,2,'2015-06-02 14:03:02'); +INSERT INTO "status" VALUES(48,13,2,'2015-06-02 14:04:02'); +INSERT INTO "status" VALUES(48,13,2,'2015-06-02 14:05:02'); +INSERT INTO "status" VALUES(48,13,2,'2015-06-02 14:06:02'); +INSERT INTO "status" VALUES(48,13,2,'2015-06-02 14:07:02'); +INSERT INTO "status" VALUES(48,13,2,'2015-06-02 14:08:02'); +INSERT INTO "status" VALUES(48,13,2,'2015-06-02 14:09:02'); +INSERT INTO "status" VALUES(48,13,2,'2015-06-02 14:10:02'); +INSERT INTO "status" VALUES(48,13,2,'2015-06-02 14:11:02'); +INSERT INTO "status" VALUES(48,13,2,'2015-06-02 14:12:02'); +INSERT INTO "status" VALUES(48,13,2,'2015-06-02 14:13:02'); +INSERT INTO "status" VALUES(48,13,2,'2015-06-02 14:14:02'); +INSERT INTO "status" VALUES(48,13,2,'2015-06-02 14:15:02'); +INSERT INTO "status" VALUES(48,13,2,'2015-06-02 14:16:02'); +INSERT INTO "status" VALUES(48,13,2,'2015-06-02 14:17:02'); +INSERT INTO "status" VALUES(48,13,2,'2015-06-02 14:18:02'); +INSERT INTO "status" VALUES(48,13,2,'2015-06-02 14:19:02'); +INSERT INTO "status" VALUES(48,13,2,'2015-06-02 14:20:03'); +INSERT INTO "status" VALUES(48,13,2,'2015-06-02 14:21:02'); +INSERT INTO "status" VALUES(48,13,2,'2015-06-02 14:22:02'); +INSERT INTO "status" VALUES(48,13,2,'2015-06-02 14:23:03'); +INSERT INTO "status" VALUES(48,13,2,'2015-06-02 14:24:02'); +INSERT INTO "status" VALUES(48,13,2,'2015-06-02 14:25:01'); +INSERT INTO "status" VALUES(48,13,2,'2015-06-02 14:26:02'); +INSERT INTO "status" VALUES(48,13,2,'2015-06-02 14:27:02'); +INSERT INTO "status" VALUES(48,13,2,'2015-06-02 14:28:02'); +INSERT INTO "status" VALUES(48,13,2,'2015-06-02 14:29:02'); +INSERT INTO "status" VALUES(48,13,2,'2015-06-02 14:30:02'); +INSERT INTO "status" VALUES(48,13,2,'2015-06-02 14:31:02'); +INSERT INTO "status" VALUES(48,13,2,'2015-06-02 14:32:02'); +INSERT INTO "status" VALUES(48,13,2,'2015-06-02 14:33:02'); +INSERT INTO "status" VALUES(48,13,2,'2015-06-02 14:34:02'); +INSERT INTO "status" VALUES(48,13,2,'2015-06-02 14:35:02'); +INSERT INTO "status" VALUES(48,13,2,'2015-06-02 14:36:02'); +INSERT INTO "status" VALUES(48,13,2,'2015-06-02 14:37:02'); +INSERT INTO "status" VALUES(48,13,2,'2015-06-02 14:38:02'); +INSERT INTO "status" VALUES(48,13,2,'2015-06-02 14:39:02'); +INSERT INTO "status" VALUES(48,13,2,'2015-06-02 14:40:02'); +INSERT INTO "status" VALUES(48,13,2,'2015-06-02 14:41:02'); +INSERT INTO "status" VALUES(48,13,2,'2015-06-02 14:42:02'); +INSERT INTO "status" VALUES(48,13,2,'2015-06-02 14:43:02'); +INSERT INTO "status" VALUES(48,13,2,'2015-06-02 14:44:02'); +INSERT INTO "status" VALUES(48,13,2,'2015-06-02 14:45:02'); +INSERT INTO "status" VALUES(48,13,2,'2015-06-02 14:46:02'); +INSERT INTO "status" VALUES(48,13,2,'2015-06-02 14:47:02'); +INSERT INTO "status" VALUES(48,13,2,'2015-06-02 14:48:02'); +INSERT INTO "status" VALUES(49,8,11,'2015-06-02 12:46:02'); +INSERT INTO "status" VALUES(49,8,11,'2015-06-02 12:47:02'); +INSERT INTO "status" VALUES(49,8,11,'2015-06-02 12:48:02'); +INSERT INTO "status" VALUES(49,8,11,'2015-06-02 12:49:02'); +INSERT INTO "status" VALUES(49,8,11,'2015-06-02 12:50:02'); +INSERT INTO "status" VALUES(49,8,11,'2015-06-02 12:51:02'); +INSERT INTO "status" VALUES(49,8,11,'2015-06-02 12:52:02'); +INSERT INTO "status" VALUES(49,8,11,'2015-06-02 12:53:03'); +INSERT INTO "status" VALUES(49,8,11,'2015-06-02 12:54:02'); +INSERT INTO "status" VALUES(49,8,11,'2015-06-02 12:55:02'); +INSERT INTO "status" VALUES(49,8,11,'2015-06-02 12:56:01'); +INSERT INTO "status" VALUES(49,8,11,'2015-06-02 12:57:02'); +INSERT INTO "status" VALUES(49,8,11,'2015-06-02 12:58:02'); +INSERT INTO "status" VALUES(49,8,11,'2015-06-02 12:59:02'); +INSERT INTO "status" VALUES(49,8,11,'2015-06-02 13:00:01'); +INSERT INTO "status" VALUES(49,8,11,'2015-06-02 13:01:03'); +INSERT INTO "status" VALUES(49,8,11,'2015-06-02 13:02:02'); +INSERT INTO "status" VALUES(49,8,11,'2015-06-02 13:03:02'); +INSERT INTO "status" VALUES(49,8,11,'2015-06-02 13:04:02'); +INSERT INTO "status" VALUES(49,8,11,'2015-06-02 13:05:03'); +INSERT INTO "status" VALUES(49,8,11,'2015-06-02 13:06:02'); +INSERT INTO "status" VALUES(49,8,11,'2015-06-02 13:07:02'); +INSERT INTO "status" VALUES(49,8,11,'2015-06-02 13:08:02'); +INSERT INTO "status" VALUES(49,8,11,'2015-06-02 13:09:02'); +INSERT INTO "status" VALUES(49,8,11,'2015-06-02 13:10:02'); +INSERT INTO "status" VALUES(49,8,11,'2015-06-02 13:11:02'); +INSERT INTO "status" VALUES(49,8,11,'2015-06-02 13:12:02'); +INSERT INTO "status" VALUES(49,8,11,'2015-06-02 13:13:03'); +INSERT INTO "status" VALUES(49,8,11,'2015-06-02 13:14:03'); +INSERT INTO "status" VALUES(49,8,11,'2015-06-02 13:15:02'); +INSERT INTO "status" VALUES(49,8,11,'2015-06-02 13:16:02'); +INSERT INTO "status" VALUES(49,8,11,'2015-06-02 13:17:02'); +INSERT INTO "status" VALUES(49,8,11,'2015-06-02 13:18:02'); +INSERT INTO "status" VALUES(49,8,11,'2015-06-02 13:19:02'); +INSERT INTO "status" VALUES(49,8,11,'2015-06-02 13:20:02'); +INSERT INTO "status" VALUES(49,8,11,'2015-06-02 13:21:02'); +INSERT INTO "status" VALUES(49,8,11,'2015-06-02 13:22:02'); +INSERT INTO "status" VALUES(49,8,11,'2015-06-02 13:23:02'); +INSERT INTO "status" VALUES(49,8,11,'2015-06-02 13:24:02'); +INSERT INTO "status" VALUES(49,8,11,'2015-06-02 13:25:02'); +INSERT INTO "status" VALUES(49,8,11,'2015-06-02 13:26:02'); +INSERT INTO "status" VALUES(49,8,11,'2015-06-02 13:27:02'); +INSERT INTO "status" VALUES(49,8,11,'2015-06-02 13:28:02'); +INSERT INTO "status" VALUES(49,8,11,'2015-06-02 13:29:02'); +INSERT INTO "status" VALUES(49,8,11,'2015-06-02 13:30:02'); +INSERT INTO "status" VALUES(49,8,11,'2015-06-02 13:31:02'); +INSERT INTO "status" VALUES(49,8,11,'2015-06-02 13:32:02'); +INSERT INTO "status" VALUES(49,8,11,'2015-06-02 13:33:02'); +INSERT INTO "status" VALUES(49,8,11,'2015-06-02 13:34:02'); +INSERT INTO "status" VALUES(49,8,11,'2015-06-02 13:35:02'); +INSERT INTO "status" VALUES(49,8,11,'2015-06-02 13:36:02'); +INSERT INTO "status" VALUES(49,8,11,'2015-06-02 13:37:02'); +INSERT INTO "status" VALUES(49,8,11,'2015-06-02 13:38:02'); +INSERT INTO "status" VALUES(49,8,11,'2015-06-02 13:39:02'); +INSERT INTO "status" VALUES(49,8,11,'2015-06-02 13:40:02'); +INSERT INTO "status" VALUES(49,8,11,'2015-06-02 13:41:03'); +INSERT INTO "status" VALUES(49,8,11,'2015-06-02 13:42:03'); +INSERT INTO "status" VALUES(49,8,11,'2015-06-02 13:43:03'); +INSERT INTO "status" VALUES(49,8,11,'2015-06-02 13:44:02'); +INSERT INTO "status" VALUES(49,8,11,'2015-06-02 13:45:03'); +INSERT INTO "status" VALUES(49,8,11,'2015-06-02 13:46:02'); +INSERT INTO "status" VALUES(49,8,11,'2015-06-02 13:47:02'); +INSERT INTO "status" VALUES(49,8,11,'2015-06-02 13:48:02'); +INSERT INTO "status" VALUES(49,8,11,'2015-06-02 13:49:02'); +INSERT INTO "status" VALUES(49,8,11,'2015-06-02 13:50:03'); +INSERT INTO "status" VALUES(49,8,11,'2015-06-02 13:51:02'); +INSERT INTO "status" VALUES(49,8,11,'2015-06-02 13:52:02'); +INSERT INTO "status" VALUES(49,8,11,'2015-06-02 13:53:02'); +INSERT INTO "status" VALUES(49,8,11,'2015-06-02 13:54:02'); +INSERT INTO "status" VALUES(49,8,11,'2015-06-02 13:55:03'); +INSERT INTO "status" VALUES(49,8,11,'2015-06-02 13:56:02'); +INSERT INTO "status" VALUES(49,8,11,'2015-06-02 13:57:02'); +INSERT INTO "status" VALUES(49,8,11,'2015-06-02 13:58:02'); +INSERT INTO "status" VALUES(49,8,11,'2015-06-02 13:59:02'); +INSERT INTO "status" VALUES(49,8,11,'2015-06-02 14:00:02'); +INSERT INTO "status" VALUES(49,9,10,'2015-06-02 14:01:02'); +INSERT INTO "status" VALUES(49,9,10,'2015-06-02 14:02:02'); +INSERT INTO "status" VALUES(49,9,10,'2015-06-02 14:03:02'); +INSERT INTO "status" VALUES(49,9,10,'2015-06-02 14:04:02'); +INSERT INTO "status" VALUES(49,9,10,'2015-06-02 14:05:02'); +INSERT INTO "status" VALUES(49,9,10,'2015-06-02 14:06:02'); +INSERT INTO "status" VALUES(49,9,10,'2015-06-02 14:07:02'); +INSERT INTO "status" VALUES(49,9,10,'2015-06-02 14:08:02'); +INSERT INTO "status" VALUES(49,9,10,'2015-06-02 14:09:02'); +INSERT INTO "status" VALUES(49,9,10,'2015-06-02 14:10:02'); +INSERT INTO "status" VALUES(49,9,10,'2015-06-02 14:11:02'); +INSERT INTO "status" VALUES(49,9,10,'2015-06-02 14:12:02'); +INSERT INTO "status" VALUES(49,9,10,'2015-06-02 14:13:02'); +INSERT INTO "status" VALUES(49,9,10,'2015-06-02 14:14:02'); +INSERT INTO "status" VALUES(49,9,10,'2015-06-02 14:15:02'); +INSERT INTO "status" VALUES(49,9,10,'2015-06-02 14:16:02'); +INSERT INTO "status" VALUES(49,9,10,'2015-06-02 14:17:02'); +INSERT INTO "status" VALUES(49,9,10,'2015-06-02 14:18:02'); +INSERT INTO "status" VALUES(49,9,10,'2015-06-02 14:19:02'); +INSERT INTO "status" VALUES(49,9,10,'2015-06-02 14:20:03'); +INSERT INTO "status" VALUES(49,9,10,'2015-06-02 14:21:02'); +INSERT INTO "status" VALUES(49,9,10,'2015-06-02 14:22:02'); +INSERT INTO "status" VALUES(49,9,10,'2015-06-02 14:23:03'); +INSERT INTO "status" VALUES(49,9,10,'2015-06-02 14:24:02'); +INSERT INTO "status" VALUES(49,8,11,'2015-06-02 14:25:01'); +INSERT INTO "status" VALUES(49,8,11,'2015-06-02 14:26:02'); +INSERT INTO "status" VALUES(49,8,11,'2015-06-02 14:27:02'); +INSERT INTO "status" VALUES(49,8,11,'2015-06-02 14:28:02'); +INSERT INTO "status" VALUES(49,8,11,'2015-06-02 14:29:02'); +INSERT INTO "status" VALUES(49,8,11,'2015-06-02 14:30:02'); +INSERT INTO "status" VALUES(49,8,11,'2015-06-02 14:31:02'); +INSERT INTO "status" VALUES(49,8,11,'2015-06-02 14:32:02'); +INSERT INTO "status" VALUES(49,8,11,'2015-06-02 14:33:02'); +INSERT INTO "status" VALUES(49,8,11,'2015-06-02 14:34:02'); +INSERT INTO "status" VALUES(49,8,11,'2015-06-02 14:35:02'); +INSERT INTO "status" VALUES(49,8,11,'2015-06-02 14:36:02'); +INSERT INTO "status" VALUES(49,8,11,'2015-06-02 14:37:02'); +INSERT INTO "status" VALUES(49,8,11,'2015-06-02 14:38:02'); +INSERT INTO "status" VALUES(49,8,11,'2015-06-02 14:39:02'); +INSERT INTO "status" VALUES(49,8,11,'2015-06-02 14:40:02'); +INSERT INTO "status" VALUES(49,8,11,'2015-06-02 14:41:02'); +INSERT INTO "status" VALUES(49,8,11,'2015-06-02 14:42:02'); +INSERT INTO "status" VALUES(49,8,11,'2015-06-02 14:43:02'); +INSERT INTO "status" VALUES(49,8,11,'2015-06-02 14:44:02'); +INSERT INTO "status" VALUES(49,8,11,'2015-06-02 14:45:02'); +INSERT INTO "status" VALUES(49,8,11,'2015-06-02 14:46:02'); +INSERT INTO "status" VALUES(49,8,11,'2015-06-02 14:47:02'); +INSERT INTO "status" VALUES(49,8,11,'2015-06-02 14:48:02'); +INSERT INTO "status" VALUES(50,6,17,'2015-06-02 12:46:02'); +INSERT INTO "status" VALUES(50,6,17,'2015-06-02 12:47:02'); +INSERT INTO "status" VALUES(50,6,17,'2015-06-02 12:48:02'); +INSERT INTO "status" VALUES(50,6,17,'2015-06-02 12:49:02'); +INSERT INTO "status" VALUES(50,5,18,'2015-06-02 12:50:02'); +INSERT INTO "status" VALUES(50,5,18,'2015-06-02 12:51:02'); +INSERT INTO "status" VALUES(50,5,18,'2015-06-02 12:52:02'); +INSERT INTO "status" VALUES(50,5,18,'2015-06-02 12:53:03'); +INSERT INTO "status" VALUES(50,6,17,'2015-06-02 12:54:02'); +INSERT INTO "status" VALUES(50,6,17,'2015-06-02 12:55:02'); +INSERT INTO "status" VALUES(50,6,17,'2015-06-02 12:56:01'); +INSERT INTO "status" VALUES(50,6,17,'2015-06-02 12:57:02'); +INSERT INTO "status" VALUES(50,6,17,'2015-06-02 12:58:02'); +INSERT INTO "status" VALUES(50,5,18,'2015-06-02 12:59:02'); +INSERT INTO "status" VALUES(50,5,18,'2015-06-02 13:00:01'); +INSERT INTO "status" VALUES(50,5,18,'2015-06-02 13:01:03'); +INSERT INTO "status" VALUES(50,5,18,'2015-06-02 13:02:02'); +INSERT INTO "status" VALUES(50,5,18,'2015-06-02 13:03:02'); +INSERT INTO "status" VALUES(50,5,18,'2015-06-02 13:04:02'); +INSERT INTO "status" VALUES(50,5,18,'2015-06-02 13:05:03'); +INSERT INTO "status" VALUES(50,5,18,'2015-06-02 13:06:02'); +INSERT INTO "status" VALUES(50,5,18,'2015-06-02 13:07:02'); +INSERT INTO "status" VALUES(50,5,18,'2015-06-02 13:08:02'); +INSERT INTO "status" VALUES(50,5,18,'2015-06-02 13:09:02'); +INSERT INTO "status" VALUES(50,5,18,'2015-06-02 13:10:02'); +INSERT INTO "status" VALUES(50,5,18,'2015-06-02 13:11:02'); +INSERT INTO "status" VALUES(50,5,18,'2015-06-02 13:12:02'); +INSERT INTO "status" VALUES(50,5,18,'2015-06-02 13:13:03'); +INSERT INTO "status" VALUES(50,6,17,'2015-06-02 13:14:03'); +INSERT INTO "status" VALUES(50,6,17,'2015-06-02 13:15:02'); +INSERT INTO "status" VALUES(50,6,17,'2015-06-02 13:16:02'); +INSERT INTO "status" VALUES(50,6,17,'2015-06-02 13:17:02'); +INSERT INTO "status" VALUES(50,6,17,'2015-06-02 13:18:02'); +INSERT INTO "status" VALUES(50,5,18,'2015-06-02 13:19:02'); +INSERT INTO "status" VALUES(50,5,18,'2015-06-02 13:20:02'); +INSERT INTO "status" VALUES(50,6,17,'2015-06-02 13:21:02'); +INSERT INTO "status" VALUES(50,6,17,'2015-06-02 13:22:02'); +INSERT INTO "status" VALUES(50,6,17,'2015-06-02 13:23:02'); +INSERT INTO "status" VALUES(50,6,17,'2015-06-02 13:24:02'); +INSERT INTO "status" VALUES(50,6,17,'2015-06-02 13:25:02'); +INSERT INTO "status" VALUES(50,6,17,'2015-06-02 13:26:02'); +INSERT INTO "status" VALUES(50,6,17,'2015-06-02 13:27:02'); +INSERT INTO "status" VALUES(50,6,17,'2015-06-02 13:28:02'); +INSERT INTO "status" VALUES(50,7,16,'2015-06-02 13:29:02'); +INSERT INTO "status" VALUES(50,6,17,'2015-06-02 13:30:02'); +INSERT INTO "status" VALUES(50,6,17,'2015-06-02 13:31:02'); +INSERT INTO "status" VALUES(50,6,17,'2015-06-02 13:32:02'); +INSERT INTO "status" VALUES(50,6,17,'2015-06-02 13:33:02'); +INSERT INTO "status" VALUES(50,6,17,'2015-06-02 13:34:02'); +INSERT INTO "status" VALUES(50,6,17,'2015-06-02 13:35:02'); +INSERT INTO "status" VALUES(50,6,17,'2015-06-02 13:36:02'); +INSERT INTO "status" VALUES(50,6,17,'2015-06-02 13:37:02'); +INSERT INTO "status" VALUES(50,6,17,'2015-06-02 13:38:02'); +INSERT INTO "status" VALUES(50,7,16,'2015-06-02 13:39:02'); +INSERT INTO "status" VALUES(50,7,16,'2015-06-02 13:40:02'); +INSERT INTO "status" VALUES(50,7,16,'2015-06-02 13:41:03'); +INSERT INTO "status" VALUES(50,7,16,'2015-06-02 13:42:03'); +INSERT INTO "status" VALUES(50,7,16,'2015-06-02 13:43:03'); +INSERT INTO "status" VALUES(50,7,16,'2015-06-02 13:44:02'); +INSERT INTO "status" VALUES(50,7,16,'2015-06-02 13:45:03'); +INSERT INTO "status" VALUES(50,7,16,'2015-06-02 13:46:02'); +INSERT INTO "status" VALUES(50,7,16,'2015-06-02 13:47:02'); +INSERT INTO "status" VALUES(50,7,16,'2015-06-02 13:48:02'); +INSERT INTO "status" VALUES(50,6,17,'2015-06-02 13:49:02'); +INSERT INTO "status" VALUES(50,6,17,'2015-06-02 13:50:03'); +INSERT INTO "status" VALUES(50,6,17,'2015-06-02 13:51:02'); +INSERT INTO "status" VALUES(50,6,17,'2015-06-02 13:52:02'); +INSERT INTO "status" VALUES(50,6,17,'2015-06-02 13:53:02'); +INSERT INTO "status" VALUES(50,7,16,'2015-06-02 13:54:02'); +INSERT INTO "status" VALUES(50,7,16,'2015-06-02 13:55:03'); +INSERT INTO "status" VALUES(50,7,16,'2015-06-02 13:56:02'); +INSERT INTO "status" VALUES(50,7,16,'2015-06-02 13:57:02'); +INSERT INTO "status" VALUES(50,7,16,'2015-06-02 13:58:02'); +INSERT INTO "status" VALUES(50,6,17,'2015-06-02 13:59:02'); +INSERT INTO "status" VALUES(50,6,17,'2015-06-02 14:00:02'); +INSERT INTO "status" VALUES(50,6,17,'2015-06-02 14:01:02'); +INSERT INTO "status" VALUES(50,6,17,'2015-06-02 14:02:02'); +INSERT INTO "status" VALUES(50,6,17,'2015-06-02 14:03:02'); +INSERT INTO "status" VALUES(50,6,17,'2015-06-02 14:04:02'); +INSERT INTO "status" VALUES(50,6,17,'2015-06-02 14:05:02'); +INSERT INTO "status" VALUES(50,6,17,'2015-06-02 14:06:02'); +INSERT INTO "status" VALUES(50,6,17,'2015-06-02 14:07:02'); +INSERT INTO "status" VALUES(50,6,17,'2015-06-02 14:08:02'); +INSERT INTO "status" VALUES(50,5,18,'2015-06-02 14:09:02'); +INSERT INTO "status" VALUES(50,5,18,'2015-06-02 14:10:02'); +INSERT INTO "status" VALUES(50,5,18,'2015-06-02 14:11:02'); +INSERT INTO "status" VALUES(50,5,18,'2015-06-02 14:12:02'); +INSERT INTO "status" VALUES(50,5,18,'2015-06-02 14:13:02'); +INSERT INTO "status" VALUES(50,5,18,'2015-06-02 14:14:02'); +INSERT INTO "status" VALUES(50,5,18,'2015-06-02 14:15:02'); +INSERT INTO "status" VALUES(50,5,18,'2015-06-02 14:16:02'); +INSERT INTO "status" VALUES(50,5,18,'2015-06-02 14:17:02'); +INSERT INTO "status" VALUES(50,5,18,'2015-06-02 14:18:02'); +INSERT INTO "status" VALUES(50,6,17,'2015-06-02 14:19:02'); +INSERT INTO "status" VALUES(50,8,15,'2015-06-02 14:20:03'); +INSERT INTO "status" VALUES(50,8,15,'2015-06-02 14:21:02'); +INSERT INTO "status" VALUES(50,8,15,'2015-06-02 14:22:02'); +INSERT INTO "status" VALUES(50,7,16,'2015-06-02 14:23:03'); +INSERT INTO "status" VALUES(50,6,17,'2015-06-02 14:24:02'); +INSERT INTO "status" VALUES(50,6,17,'2015-06-02 14:25:01'); +INSERT INTO "status" VALUES(50,6,17,'2015-06-02 14:26:02'); +INSERT INTO "status" VALUES(50,6,17,'2015-06-02 14:27:02'); +INSERT INTO "status" VALUES(50,6,17,'2015-06-02 14:28:02'); +INSERT INTO "status" VALUES(50,6,17,'2015-06-02 14:29:02'); +INSERT INTO "status" VALUES(50,5,18,'2015-06-02 14:30:02'); +INSERT INTO "status" VALUES(50,5,18,'2015-06-02 14:31:02'); +INSERT INTO "status" VALUES(50,5,18,'2015-06-02 14:32:02'); +INSERT INTO "status" VALUES(50,5,18,'2015-06-02 14:33:02'); +INSERT INTO "status" VALUES(50,4,19,'2015-06-02 14:34:02'); +INSERT INTO "status" VALUES(50,4,19,'2015-06-02 14:35:02'); +INSERT INTO "status" VALUES(50,4,19,'2015-06-02 14:36:02'); +INSERT INTO "status" VALUES(50,4,19,'2015-06-02 14:37:02'); +INSERT INTO "status" VALUES(50,4,19,'2015-06-02 14:38:02'); +INSERT INTO "status" VALUES(50,5,18,'2015-06-02 14:39:02'); +INSERT INTO "status" VALUES(50,5,18,'2015-06-02 14:40:02'); +INSERT INTO "status" VALUES(50,5,18,'2015-06-02 14:41:02'); +INSERT INTO "status" VALUES(50,7,16,'2015-06-02 14:42:02'); +INSERT INTO "status" VALUES(50,7,16,'2015-06-02 14:43:02'); +INSERT INTO "status" VALUES(50,7,16,'2015-06-02 14:44:02'); +INSERT INTO "status" VALUES(50,7,16,'2015-06-02 14:45:02'); +INSERT INTO "status" VALUES(50,7,16,'2015-06-02 14:46:02'); +INSERT INTO "status" VALUES(50,7,16,'2015-06-02 14:47:02'); +INSERT INTO "status" VALUES(50,7,16,'2015-06-02 14:48:02'); +INSERT INTO "status" VALUES(51,11,8,'2015-06-02 12:46:02'); +INSERT INTO "status" VALUES(51,11,8,'2015-06-02 12:47:02'); +INSERT INTO "status" VALUES(51,11,8,'2015-06-02 12:48:02'); +INSERT INTO "status" VALUES(51,11,8,'2015-06-02 12:49:02'); +INSERT INTO "status" VALUES(51,11,8,'2015-06-02 12:50:02'); +INSERT INTO "status" VALUES(51,11,8,'2015-06-02 12:51:02'); +INSERT INTO "status" VALUES(51,11,8,'2015-06-02 12:52:02'); +INSERT INTO "status" VALUES(51,11,8,'2015-06-02 12:53:03'); +INSERT INTO "status" VALUES(51,11,8,'2015-06-02 12:54:02'); +INSERT INTO "status" VALUES(51,11,8,'2015-06-02 12:55:02'); +INSERT INTO "status" VALUES(51,11,8,'2015-06-02 12:56:01'); +INSERT INTO "status" VALUES(51,11,8,'2015-06-02 12:57:02'); +INSERT INTO "status" VALUES(51,11,8,'2015-06-02 12:58:02'); +INSERT INTO "status" VALUES(51,11,8,'2015-06-02 12:59:02'); +INSERT INTO "status" VALUES(51,11,8,'2015-06-02 13:00:01'); +INSERT INTO "status" VALUES(51,11,8,'2015-06-02 13:01:03'); +INSERT INTO "status" VALUES(51,11,8,'2015-06-02 13:02:02'); +INSERT INTO "status" VALUES(51,11,8,'2015-06-02 13:03:02'); +INSERT INTO "status" VALUES(51,11,8,'2015-06-02 13:04:02'); +INSERT INTO "status" VALUES(51,11,8,'2015-06-02 13:05:03'); +INSERT INTO "status" VALUES(51,11,8,'2015-06-02 13:06:02'); +INSERT INTO "status" VALUES(51,11,8,'2015-06-02 13:07:02'); +INSERT INTO "status" VALUES(51,11,8,'2015-06-02 13:08:02'); +INSERT INTO "status" VALUES(51,11,8,'2015-06-02 13:09:02'); +INSERT INTO "status" VALUES(51,11,8,'2015-06-02 13:10:02'); +INSERT INTO "status" VALUES(51,11,8,'2015-06-02 13:11:02'); +INSERT INTO "status" VALUES(51,11,8,'2015-06-02 13:12:02'); +INSERT INTO "status" VALUES(51,11,8,'2015-06-02 13:13:03'); +INSERT INTO "status" VALUES(51,11,8,'2015-06-02 13:14:03'); +INSERT INTO "status" VALUES(51,11,8,'2015-06-02 13:15:02'); +INSERT INTO "status" VALUES(51,11,8,'2015-06-02 13:16:02'); +INSERT INTO "status" VALUES(51,11,8,'2015-06-02 13:17:02'); +INSERT INTO "status" VALUES(51,11,8,'2015-06-02 13:18:02'); +INSERT INTO "status" VALUES(51,11,8,'2015-06-02 13:19:02'); +INSERT INTO "status" VALUES(51,11,8,'2015-06-02 13:20:02'); +INSERT INTO "status" VALUES(51,11,8,'2015-06-02 13:21:02'); +INSERT INTO "status" VALUES(51,11,8,'2015-06-02 13:22:02'); +INSERT INTO "status" VALUES(51,11,8,'2015-06-02 13:23:02'); +INSERT INTO "status" VALUES(51,12,7,'2015-06-02 13:24:02'); +INSERT INTO "status" VALUES(51,12,7,'2015-06-02 13:25:02'); +INSERT INTO "status" VALUES(51,12,7,'2015-06-02 13:26:02'); +INSERT INTO "status" VALUES(51,12,7,'2015-06-02 13:27:02'); +INSERT INTO "status" VALUES(51,11,8,'2015-06-02 13:28:02'); +INSERT INTO "status" VALUES(51,11,8,'2015-06-02 13:29:02'); +INSERT INTO "status" VALUES(51,11,8,'2015-06-02 13:30:02'); +INSERT INTO "status" VALUES(51,11,8,'2015-06-02 13:31:02'); +INSERT INTO "status" VALUES(51,11,8,'2015-06-02 13:32:02'); +INSERT INTO "status" VALUES(51,11,8,'2015-06-02 13:33:02'); +INSERT INTO "status" VALUES(51,11,8,'2015-06-02 13:34:02'); +INSERT INTO "status" VALUES(51,12,7,'2015-06-02 13:35:02'); +INSERT INTO "status" VALUES(51,12,7,'2015-06-02 13:36:02'); +INSERT INTO "status" VALUES(51,12,7,'2015-06-02 13:37:02'); +INSERT INTO "status" VALUES(51,12,7,'2015-06-02 13:38:02'); +INSERT INTO "status" VALUES(51,12,7,'2015-06-02 13:39:02'); +INSERT INTO "status" VALUES(51,12,7,'2015-06-02 13:40:02'); +INSERT INTO "status" VALUES(51,12,7,'2015-06-02 13:41:03'); +INSERT INTO "status" VALUES(51,12,7,'2015-06-02 13:42:03'); +INSERT INTO "status" VALUES(51,12,7,'2015-06-02 13:43:03'); +INSERT INTO "status" VALUES(51,12,7,'2015-06-02 13:44:02'); +INSERT INTO "status" VALUES(51,12,7,'2015-06-02 13:45:03'); +INSERT INTO "status" VALUES(51,12,7,'2015-06-02 13:46:02'); +INSERT INTO "status" VALUES(51,12,7,'2015-06-02 13:47:02'); +INSERT INTO "status" VALUES(51,12,7,'2015-06-02 13:48:02'); +INSERT INTO "status" VALUES(51,12,7,'2015-06-02 13:49:02'); +INSERT INTO "status" VALUES(51,12,7,'2015-06-02 13:50:03'); +INSERT INTO "status" VALUES(51,12,7,'2015-06-02 13:51:02'); +INSERT INTO "status" VALUES(51,12,7,'2015-06-02 13:52:02'); +INSERT INTO "status" VALUES(51,12,7,'2015-06-02 13:53:02'); +INSERT INTO "status" VALUES(51,12,7,'2015-06-02 13:54:02'); +INSERT INTO "status" VALUES(51,12,7,'2015-06-02 13:55:03'); +INSERT INTO "status" VALUES(51,12,7,'2015-06-02 13:56:02'); +INSERT INTO "status" VALUES(51,12,7,'2015-06-02 13:57:02'); +INSERT INTO "status" VALUES(51,12,7,'2015-06-02 13:58:02'); +INSERT INTO "status" VALUES(51,12,7,'2015-06-02 13:59:02'); +INSERT INTO "status" VALUES(51,12,7,'2015-06-02 14:00:02'); +INSERT INTO "status" VALUES(51,12,7,'2015-06-02 14:01:02'); +INSERT INTO "status" VALUES(51,12,7,'2015-06-02 14:02:02'); +INSERT INTO "status" VALUES(51,12,7,'2015-06-02 14:03:02'); +INSERT INTO "status" VALUES(51,12,7,'2015-06-02 14:04:02'); +INSERT INTO "status" VALUES(51,12,7,'2015-06-02 14:05:02'); +INSERT INTO "status" VALUES(51,12,7,'2015-06-02 14:06:02'); +INSERT INTO "status" VALUES(51,12,7,'2015-06-02 14:07:02'); +INSERT INTO "status" VALUES(51,12,7,'2015-06-02 14:08:02'); +INSERT INTO "status" VALUES(51,12,7,'2015-06-02 14:09:02'); +INSERT INTO "status" VALUES(51,12,7,'2015-06-02 14:10:02'); +INSERT INTO "status" VALUES(51,12,7,'2015-06-02 14:11:02'); +INSERT INTO "status" VALUES(51,12,7,'2015-06-02 14:12:02'); +INSERT INTO "status" VALUES(51,12,7,'2015-06-02 14:13:02'); +INSERT INTO "status" VALUES(51,12,7,'2015-06-02 14:14:02'); +INSERT INTO "status" VALUES(51,12,7,'2015-06-02 14:15:02'); +INSERT INTO "status" VALUES(51,11,8,'2015-06-02 14:16:02'); +INSERT INTO "status" VALUES(51,11,8,'2015-06-02 14:17:02'); +INSERT INTO "status" VALUES(51,11,8,'2015-06-02 14:18:02'); +INSERT INTO "status" VALUES(51,11,8,'2015-06-02 14:19:02'); +INSERT INTO "status" VALUES(51,11,8,'2015-06-02 14:20:03'); +INSERT INTO "status" VALUES(51,11,8,'2015-06-02 14:21:02'); +INSERT INTO "status" VALUES(51,11,8,'2015-06-02 14:22:02'); +INSERT INTO "status" VALUES(51,11,8,'2015-06-02 14:23:03'); +INSERT INTO "status" VALUES(51,11,8,'2015-06-02 14:24:02'); +INSERT INTO "status" VALUES(51,11,8,'2015-06-02 14:25:01'); +INSERT INTO "status" VALUES(51,11,8,'2015-06-02 14:26:02'); +INSERT INTO "status" VALUES(51,11,8,'2015-06-02 14:27:02'); +INSERT INTO "status" VALUES(51,11,8,'2015-06-02 14:28:02'); +INSERT INTO "status" VALUES(51,11,8,'2015-06-02 14:29:02'); +INSERT INTO "status" VALUES(51,11,8,'2015-06-02 14:30:02'); +INSERT INTO "status" VALUES(51,11,8,'2015-06-02 14:31:02'); +INSERT INTO "status" VALUES(51,11,8,'2015-06-02 14:32:02'); +INSERT INTO "status" VALUES(51,11,8,'2015-06-02 14:33:02'); +INSERT INTO "status" VALUES(51,11,8,'2015-06-02 14:34:02'); +INSERT INTO "status" VALUES(51,11,8,'2015-06-02 14:35:02'); +INSERT INTO "status" VALUES(51,11,8,'2015-06-02 14:36:02'); +INSERT INTO "status" VALUES(51,11,8,'2015-06-02 14:37:02'); +INSERT INTO "status" VALUES(51,11,8,'2015-06-02 14:38:02'); +INSERT INTO "status" VALUES(51,11,8,'2015-06-02 14:39:02'); +INSERT INTO "status" VALUES(51,11,8,'2015-06-02 14:40:02'); +INSERT INTO "status" VALUES(51,11,8,'2015-06-02 14:41:02'); +INSERT INTO "status" VALUES(51,11,8,'2015-06-02 14:42:02'); +INSERT INTO "status" VALUES(51,11,8,'2015-06-02 14:43:02'); +INSERT INTO "status" VALUES(51,11,8,'2015-06-02 14:44:02'); +INSERT INTO "status" VALUES(51,11,8,'2015-06-02 14:45:02'); +INSERT INTO "status" VALUES(51,11,8,'2015-06-02 14:46:02'); +INSERT INTO "status" VALUES(51,11,8,'2015-06-02 14:47:02'); +INSERT INTO "status" VALUES(51,11,8,'2015-06-02 14:48:02'); +INSERT INTO "status" VALUES(54,9,6,'2015-06-02 12:46:02'); +INSERT INTO "status" VALUES(54,9,6,'2015-06-02 12:47:02'); +INSERT INTO "status" VALUES(54,9,6,'2015-06-02 12:48:02'); +INSERT INTO "status" VALUES(54,9,6,'2015-06-02 12:49:02'); +INSERT INTO "status" VALUES(54,9,6,'2015-06-02 12:50:02'); +INSERT INTO "status" VALUES(54,9,6,'2015-06-02 12:51:02'); +INSERT INTO "status" VALUES(54,9,6,'2015-06-02 12:52:02'); +INSERT INTO "status" VALUES(54,9,6,'2015-06-02 12:53:03'); +INSERT INTO "status" VALUES(54,9,6,'2015-06-02 12:54:02'); +INSERT INTO "status" VALUES(54,9,6,'2015-06-02 12:55:02'); +INSERT INTO "status" VALUES(54,9,6,'2015-06-02 12:56:01'); +INSERT INTO "status" VALUES(54,9,6,'2015-06-02 12:57:02'); +INSERT INTO "status" VALUES(54,9,6,'2015-06-02 12:58:02'); +INSERT INTO "status" VALUES(54,9,6,'2015-06-02 12:59:02'); +INSERT INTO "status" VALUES(54,9,6,'2015-06-02 13:00:01'); +INSERT INTO "status" VALUES(54,9,6,'2015-06-02 13:01:03'); +INSERT INTO "status" VALUES(54,9,6,'2015-06-02 13:02:02'); +INSERT INTO "status" VALUES(54,9,6,'2015-06-02 13:03:02'); +INSERT INTO "status" VALUES(54,9,6,'2015-06-02 13:04:02'); +INSERT INTO "status" VALUES(54,9,6,'2015-06-02 13:05:03'); +INSERT INTO "status" VALUES(54,9,6,'2015-06-02 13:06:02'); +INSERT INTO "status" VALUES(54,9,6,'2015-06-02 13:07:02'); +INSERT INTO "status" VALUES(54,9,6,'2015-06-02 13:08:02'); +INSERT INTO "status" VALUES(54,8,7,'2015-06-02 13:09:02'); +INSERT INTO "status" VALUES(54,8,7,'2015-06-02 13:10:02'); +INSERT INTO "status" VALUES(54,8,7,'2015-06-02 13:11:02'); +INSERT INTO "status" VALUES(54,8,7,'2015-06-02 13:12:02'); +INSERT INTO "status" VALUES(54,8,7,'2015-06-02 13:13:03'); +INSERT INTO "status" VALUES(54,8,7,'2015-06-02 13:14:03'); +INSERT INTO "status" VALUES(54,8,7,'2015-06-02 13:15:02'); +INSERT INTO "status" VALUES(54,8,7,'2015-06-02 13:16:02'); +INSERT INTO "status" VALUES(54,8,7,'2015-06-02 13:17:02'); +INSERT INTO "status" VALUES(54,8,7,'2015-06-02 13:18:02'); +INSERT INTO "status" VALUES(54,8,7,'2015-06-02 13:19:02'); +INSERT INTO "status" VALUES(54,8,7,'2015-06-02 13:20:02'); +INSERT INTO "status" VALUES(54,8,7,'2015-06-02 13:21:02'); +INSERT INTO "status" VALUES(54,8,7,'2015-06-02 13:22:02'); +INSERT INTO "status" VALUES(54,8,7,'2015-06-02 13:23:02'); +INSERT INTO "status" VALUES(54,8,7,'2015-06-02 13:24:02'); +INSERT INTO "status" VALUES(54,7,8,'2015-06-02 13:25:02'); +INSERT INTO "status" VALUES(54,8,7,'2015-06-02 13:26:02'); +INSERT INTO "status" VALUES(54,7,8,'2015-06-02 13:27:02'); +INSERT INTO "status" VALUES(54,7,8,'2015-06-02 13:28:02'); +INSERT INTO "status" VALUES(54,7,8,'2015-06-02 13:29:02'); +INSERT INTO "status" VALUES(54,7,8,'2015-06-02 13:30:02'); +INSERT INTO "status" VALUES(54,7,8,'2015-06-02 13:31:02'); +INSERT INTO "status" VALUES(54,7,8,'2015-06-02 13:32:02'); +INSERT INTO "status" VALUES(54,7,8,'2015-06-02 13:33:02'); +INSERT INTO "status" VALUES(54,7,8,'2015-06-02 13:34:02'); +INSERT INTO "status" VALUES(54,7,8,'2015-06-02 13:35:02'); +INSERT INTO "status" VALUES(54,7,8,'2015-06-02 13:36:02'); +INSERT INTO "status" VALUES(54,7,8,'2015-06-02 13:37:02'); +INSERT INTO "status" VALUES(54,7,8,'2015-06-02 13:38:02'); +INSERT INTO "status" VALUES(54,7,8,'2015-06-02 13:39:02'); +INSERT INTO "status" VALUES(54,7,8,'2015-06-02 13:40:02'); +INSERT INTO "status" VALUES(54,7,8,'2015-06-02 13:41:03'); +INSERT INTO "status" VALUES(54,7,8,'2015-06-02 13:42:03'); +INSERT INTO "status" VALUES(54,7,8,'2015-06-02 13:43:03'); +INSERT INTO "status" VALUES(54,7,8,'2015-06-02 13:44:02'); +INSERT INTO "status" VALUES(54,7,8,'2015-06-02 13:45:03'); +INSERT INTO "status" VALUES(54,7,8,'2015-06-02 13:46:02'); +INSERT INTO "status" VALUES(54,7,8,'2015-06-02 13:47:02'); +INSERT INTO "status" VALUES(54,7,8,'2015-06-02 13:48:02'); +INSERT INTO "status" VALUES(54,7,8,'2015-06-02 13:49:02'); +INSERT INTO "status" VALUES(54,7,8,'2015-06-02 13:50:03'); +INSERT INTO "status" VALUES(54,7,8,'2015-06-02 13:51:02'); +INSERT INTO "status" VALUES(54,7,8,'2015-06-02 13:52:02'); +INSERT INTO "status" VALUES(54,7,8,'2015-06-02 13:53:02'); +INSERT INTO "status" VALUES(54,7,8,'2015-06-02 13:54:02'); +INSERT INTO "status" VALUES(54,7,8,'2015-06-02 13:55:03'); +INSERT INTO "status" VALUES(54,7,8,'2015-06-02 13:56:02'); +INSERT INTO "status" VALUES(54,7,8,'2015-06-02 13:57:02'); +INSERT INTO "status" VALUES(54,7,8,'2015-06-02 13:58:02'); +INSERT INTO "status" VALUES(54,7,8,'2015-06-02 13:59:02'); +INSERT INTO "status" VALUES(54,7,8,'2015-06-02 14:00:02'); +INSERT INTO "status" VALUES(54,7,8,'2015-06-02 14:01:02'); +INSERT INTO "status" VALUES(54,7,8,'2015-06-02 14:02:02'); +INSERT INTO "status" VALUES(54,7,8,'2015-06-02 14:03:02'); +INSERT INTO "status" VALUES(54,7,8,'2015-06-02 14:04:02'); +INSERT INTO "status" VALUES(54,7,8,'2015-06-02 14:05:02'); +INSERT INTO "status" VALUES(54,8,7,'2015-06-02 14:06:02'); +INSERT INTO "status" VALUES(54,8,7,'2015-06-02 14:07:02'); +INSERT INTO "status" VALUES(54,8,7,'2015-06-02 14:08:02'); +INSERT INTO "status" VALUES(54,8,7,'2015-06-02 14:09:02'); +INSERT INTO "status" VALUES(54,8,7,'2015-06-02 14:10:02'); +INSERT INTO "status" VALUES(54,8,7,'2015-06-02 14:11:02'); +INSERT INTO "status" VALUES(54,7,8,'2015-06-02 14:12:02'); +INSERT INTO "status" VALUES(54,7,8,'2015-06-02 14:13:02'); +INSERT INTO "status" VALUES(54,7,8,'2015-06-02 14:14:02'); +INSERT INTO "status" VALUES(54,7,8,'2015-06-02 14:15:02'); +INSERT INTO "status" VALUES(54,7,8,'2015-06-02 14:16:02'); +INSERT INTO "status" VALUES(54,7,8,'2015-06-02 14:17:02'); +INSERT INTO "status" VALUES(54,7,8,'2015-06-02 14:18:02'); +INSERT INTO "status" VALUES(54,7,8,'2015-06-02 14:19:02'); +INSERT INTO "status" VALUES(54,7,8,'2015-06-02 14:20:03'); +INSERT INTO "status" VALUES(54,7,8,'2015-06-02 14:21:02'); +INSERT INTO "status" VALUES(54,7,8,'2015-06-02 14:22:02'); +INSERT INTO "status" VALUES(54,7,8,'2015-06-02 14:23:03'); +INSERT INTO "status" VALUES(54,7,8,'2015-06-02 14:24:02'); +INSERT INTO "status" VALUES(54,7,8,'2015-06-02 14:25:01'); +INSERT INTO "status" VALUES(54,7,8,'2015-06-02 14:26:02'); +INSERT INTO "status" VALUES(54,7,8,'2015-06-02 14:27:02'); +INSERT INTO "status" VALUES(54,7,8,'2015-06-02 14:28:02'); +INSERT INTO "status" VALUES(54,7,8,'2015-06-02 14:29:02'); +INSERT INTO "status" VALUES(54,7,8,'2015-06-02 14:30:02'); +INSERT INTO "status" VALUES(54,7,8,'2015-06-02 14:31:02'); +INSERT INTO "status" VALUES(54,7,8,'2015-06-02 14:32:02'); +INSERT INTO "status" VALUES(54,7,8,'2015-06-02 14:33:02'); +INSERT INTO "status" VALUES(54,7,8,'2015-06-02 14:34:02'); +INSERT INTO "status" VALUES(54,7,8,'2015-06-02 14:35:02'); +INSERT INTO "status" VALUES(54,7,8,'2015-06-02 14:36:02'); +INSERT INTO "status" VALUES(54,7,8,'2015-06-02 14:37:02'); +INSERT INTO "status" VALUES(54,7,8,'2015-06-02 14:38:02'); +INSERT INTO "status" VALUES(54,7,8,'2015-06-02 14:39:02'); +INSERT INTO "status" VALUES(54,7,8,'2015-06-02 14:40:02'); +INSERT INTO "status" VALUES(54,7,8,'2015-06-02 14:41:02'); +INSERT INTO "status" VALUES(54,6,9,'2015-06-02 14:42:02'); +INSERT INTO "status" VALUES(54,6,9,'2015-06-02 14:43:02'); +INSERT INTO "status" VALUES(54,6,9,'2015-06-02 14:44:02'); +INSERT INTO "status" VALUES(54,6,9,'2015-06-02 14:45:02'); +INSERT INTO "status" VALUES(54,6,9,'2015-06-02 14:46:02'); +INSERT INTO "status" VALUES(54,6,9,'2015-06-02 14:47:02'); +INSERT INTO "status" VALUES(54,6,9,'2015-06-02 14:48:02'); +INSERT INTO "status" VALUES(55,6,17,'2015-06-02 12:46:02'); +INSERT INTO "status" VALUES(55,6,17,'2015-06-02 12:47:02'); +INSERT INTO "status" VALUES(55,6,17,'2015-06-02 12:48:02'); +INSERT INTO "status" VALUES(55,7,16,'2015-06-02 12:49:02'); +INSERT INTO "status" VALUES(55,7,16,'2015-06-02 12:50:02'); +INSERT INTO "status" VALUES(55,7,16,'2015-06-02 12:51:02'); +INSERT INTO "status" VALUES(55,7,16,'2015-06-02 12:52:02'); +INSERT INTO "status" VALUES(55,7,16,'2015-06-02 12:53:03'); +INSERT INTO "status" VALUES(55,7,16,'2015-06-02 12:54:02'); +INSERT INTO "status" VALUES(55,7,16,'2015-06-02 12:55:02'); +INSERT INTO "status" VALUES(55,7,16,'2015-06-02 12:56:01'); +INSERT INTO "status" VALUES(55,7,16,'2015-06-02 12:57:02'); +INSERT INTO "status" VALUES(55,7,16,'2015-06-02 12:58:02'); +INSERT INTO "status" VALUES(55,7,16,'2015-06-02 12:59:02'); +INSERT INTO "status" VALUES(55,7,16,'2015-06-02 13:00:01'); +INSERT INTO "status" VALUES(55,7,16,'2015-06-02 13:01:03'); +INSERT INTO "status" VALUES(55,7,16,'2015-06-02 13:02:02'); +INSERT INTO "status" VALUES(55,6,17,'2015-06-02 13:03:02'); +INSERT INTO "status" VALUES(55,6,17,'2015-06-02 13:04:02'); +INSERT INTO "status" VALUES(55,6,17,'2015-06-02 13:05:03'); +INSERT INTO "status" VALUES(55,6,17,'2015-06-02 13:06:02'); +INSERT INTO "status" VALUES(55,6,17,'2015-06-02 13:07:02'); +INSERT INTO "status" VALUES(55,6,17,'2015-06-02 13:08:02'); +INSERT INTO "status" VALUES(55,6,17,'2015-06-02 13:09:02'); +INSERT INTO "status" VALUES(55,6,17,'2015-06-02 13:10:02'); +INSERT INTO "status" VALUES(55,6,17,'2015-06-02 13:11:02'); +INSERT INTO "status" VALUES(55,6,17,'2015-06-02 13:12:02'); +INSERT INTO "status" VALUES(55,7,16,'2015-06-02 13:13:03'); +INSERT INTO "status" VALUES(55,7,16,'2015-06-02 13:14:03'); +INSERT INTO "status" VALUES(55,7,16,'2015-06-02 13:15:02'); +INSERT INTO "status" VALUES(55,7,16,'2015-06-02 13:16:02'); +INSERT INTO "status" VALUES(55,7,16,'2015-06-02 13:17:02'); +INSERT INTO "status" VALUES(55,7,16,'2015-06-02 13:18:02'); +INSERT INTO "status" VALUES(55,7,16,'2015-06-02 13:19:02'); +INSERT INTO "status" VALUES(55,7,16,'2015-06-02 13:20:02'); +INSERT INTO "status" VALUES(55,7,16,'2015-06-02 13:21:02'); +INSERT INTO "status" VALUES(55,7,16,'2015-06-02 13:22:02'); +INSERT INTO "status" VALUES(55,7,16,'2015-06-02 13:23:02'); +INSERT INTO "status" VALUES(55,7,16,'2015-06-02 13:24:02'); +INSERT INTO "status" VALUES(55,7,16,'2015-06-02 13:25:02'); +INSERT INTO "status" VALUES(55,6,17,'2015-06-02 13:26:02'); +INSERT INTO "status" VALUES(55,6,17,'2015-06-02 13:27:02'); +INSERT INTO "status" VALUES(55,6,17,'2015-06-02 13:28:02'); +INSERT INTO "status" VALUES(55,6,17,'2015-06-02 13:29:02'); +INSERT INTO "status" VALUES(55,6,17,'2015-06-02 13:30:02'); +INSERT INTO "status" VALUES(55,6,17,'2015-06-02 13:31:02'); +INSERT INTO "status" VALUES(55,5,18,'2015-06-02 13:32:02'); +INSERT INTO "status" VALUES(55,5,18,'2015-06-02 13:33:02'); +INSERT INTO "status" VALUES(55,5,18,'2015-06-02 13:34:02'); +INSERT INTO "status" VALUES(55,5,18,'2015-06-02 13:35:02'); +INSERT INTO "status" VALUES(55,5,18,'2015-06-02 13:36:02'); +INSERT INTO "status" VALUES(55,5,18,'2015-06-02 13:37:02'); +INSERT INTO "status" VALUES(55,5,18,'2015-06-02 13:38:02'); +INSERT INTO "status" VALUES(55,5,18,'2015-06-02 13:39:02'); +INSERT INTO "status" VALUES(55,5,18,'2015-06-02 13:40:02'); +INSERT INTO "status" VALUES(55,5,18,'2015-06-02 13:41:03'); +INSERT INTO "status" VALUES(55,5,18,'2015-06-02 13:42:03'); +INSERT INTO "status" VALUES(55,5,18,'2015-06-02 13:43:03'); +INSERT INTO "status" VALUES(55,5,18,'2015-06-02 13:44:02'); +INSERT INTO "status" VALUES(55,5,18,'2015-06-02 13:45:03'); +INSERT INTO "status" VALUES(55,5,18,'2015-06-02 13:46:02'); +INSERT INTO "status" VALUES(55,5,18,'2015-06-02 13:47:02'); +INSERT INTO "status" VALUES(55,5,18,'2015-06-02 13:48:02'); +INSERT INTO "status" VALUES(55,5,18,'2015-06-02 13:49:02'); +INSERT INTO "status" VALUES(55,5,18,'2015-06-02 13:50:03'); +INSERT INTO "status" VALUES(55,5,18,'2015-06-02 13:51:02'); +INSERT INTO "status" VALUES(55,5,18,'2015-06-02 13:52:02'); +INSERT INTO "status" VALUES(55,5,18,'2015-06-02 13:53:02'); +INSERT INTO "status" VALUES(55,5,18,'2015-06-02 13:54:02'); +INSERT INTO "status" VALUES(55,5,18,'2015-06-02 13:55:03'); +INSERT INTO "status" VALUES(55,5,18,'2015-06-02 13:56:02'); +INSERT INTO "status" VALUES(55,5,18,'2015-06-02 13:57:02'); +INSERT INTO "status" VALUES(55,5,18,'2015-06-02 13:58:02'); +INSERT INTO "status" VALUES(55,5,18,'2015-06-02 13:59:02'); +INSERT INTO "status" VALUES(55,5,18,'2015-06-02 14:00:02'); +INSERT INTO "status" VALUES(55,5,18,'2015-06-02 14:01:02'); +INSERT INTO "status" VALUES(55,5,18,'2015-06-02 14:02:02'); +INSERT INTO "status" VALUES(55,5,18,'2015-06-02 14:03:02'); +INSERT INTO "status" VALUES(55,5,18,'2015-06-02 14:04:02'); +INSERT INTO "status" VALUES(55,5,18,'2015-06-02 14:05:02'); +INSERT INTO "status" VALUES(55,5,18,'2015-06-02 14:06:02'); +INSERT INTO "status" VALUES(55,5,18,'2015-06-02 14:07:02'); +INSERT INTO "status" VALUES(55,5,18,'2015-06-02 14:08:02'); +INSERT INTO "status" VALUES(55,5,18,'2015-06-02 14:09:02'); +INSERT INTO "status" VALUES(55,5,18,'2015-06-02 14:10:02'); +INSERT INTO "status" VALUES(55,5,18,'2015-06-02 14:11:02'); +INSERT INTO "status" VALUES(55,5,18,'2015-06-02 14:12:02'); +INSERT INTO "status" VALUES(55,5,18,'2015-06-02 14:13:02'); +INSERT INTO "status" VALUES(55,5,18,'2015-06-02 14:14:02'); +INSERT INTO "status" VALUES(55,5,18,'2015-06-02 14:15:02'); +INSERT INTO "status" VALUES(55,5,18,'2015-06-02 14:16:02'); +INSERT INTO "status" VALUES(55,5,18,'2015-06-02 14:17:02'); +INSERT INTO "status" VALUES(55,5,18,'2015-06-02 14:18:02'); +INSERT INTO "status" VALUES(55,5,18,'2015-06-02 14:19:02'); +INSERT INTO "status" VALUES(55,5,18,'2015-06-02 14:20:03'); +INSERT INTO "status" VALUES(55,5,18,'2015-06-02 14:21:02'); +INSERT INTO "status" VALUES(55,5,18,'2015-06-02 14:22:02'); +INSERT INTO "status" VALUES(55,5,18,'2015-06-02 14:23:03'); +INSERT INTO "status" VALUES(55,5,18,'2015-06-02 14:24:02'); +INSERT INTO "status" VALUES(55,5,18,'2015-06-02 14:25:01'); +INSERT INTO "status" VALUES(55,5,18,'2015-06-02 14:26:02'); +INSERT INTO "status" VALUES(55,5,18,'2015-06-02 14:27:02'); +INSERT INTO "status" VALUES(55,5,18,'2015-06-02 14:28:02'); +INSERT INTO "status" VALUES(55,5,18,'2015-06-02 14:29:02'); +INSERT INTO "status" VALUES(55,5,18,'2015-06-02 14:30:02'); +INSERT INTO "status" VALUES(55,5,18,'2015-06-02 14:31:02'); +INSERT INTO "status" VALUES(55,5,18,'2015-06-02 14:32:02'); +INSERT INTO "status" VALUES(55,5,18,'2015-06-02 14:33:02'); +INSERT INTO "status" VALUES(55,5,18,'2015-06-02 14:34:02'); +INSERT INTO "status" VALUES(55,5,18,'2015-06-02 14:35:02'); +INSERT INTO "status" VALUES(55,5,18,'2015-06-02 14:36:02'); +INSERT INTO "status" VALUES(55,5,18,'2015-06-02 14:37:02'); +INSERT INTO "status" VALUES(55,5,18,'2015-06-02 14:38:02'); +INSERT INTO "status" VALUES(55,5,18,'2015-06-02 14:39:02'); +INSERT INTO "status" VALUES(55,5,18,'2015-06-02 14:40:02'); +INSERT INTO "status" VALUES(55,5,18,'2015-06-02 14:41:02'); +INSERT INTO "status" VALUES(55,5,18,'2015-06-02 14:42:02'); +INSERT INTO "status" VALUES(55,5,18,'2015-06-02 14:43:02'); +INSERT INTO "status" VALUES(55,5,18,'2015-06-02 14:44:02'); +INSERT INTO "status" VALUES(55,5,18,'2015-06-02 14:45:02'); +INSERT INTO "status" VALUES(55,5,18,'2015-06-02 14:46:02'); +INSERT INTO "status" VALUES(55,5,18,'2015-06-02 14:47:02'); +INSERT INTO "status" VALUES(55,5,18,'2015-06-02 14:48:02'); +INSERT INTO "status" VALUES(56,8,11,'2015-06-02 12:46:02'); +INSERT INTO "status" VALUES(56,8,11,'2015-06-02 12:47:02'); +INSERT INTO "status" VALUES(56,8,11,'2015-06-02 12:48:02'); +INSERT INTO "status" VALUES(56,8,11,'2015-06-02 12:49:02'); +INSERT INTO "status" VALUES(56,8,11,'2015-06-02 12:50:02'); +INSERT INTO "status" VALUES(56,8,11,'2015-06-02 12:51:02'); +INSERT INTO "status" VALUES(56,8,11,'2015-06-02 12:52:02'); +INSERT INTO "status" VALUES(56,8,11,'2015-06-02 12:53:03'); +INSERT INTO "status" VALUES(56,8,11,'2015-06-02 12:54:02'); +INSERT INTO "status" VALUES(56,8,11,'2015-06-02 12:55:02'); +INSERT INTO "status" VALUES(56,8,11,'2015-06-02 12:56:01'); +INSERT INTO "status" VALUES(56,8,11,'2015-06-02 12:57:02'); +INSERT INTO "status" VALUES(56,8,11,'2015-06-02 12:58:02'); +INSERT INTO "status" VALUES(56,8,11,'2015-06-02 12:59:02'); +INSERT INTO "status" VALUES(56,8,11,'2015-06-02 13:00:01'); +INSERT INTO "status" VALUES(56,8,11,'2015-06-02 13:01:03'); +INSERT INTO "status" VALUES(56,9,10,'2015-06-02 13:02:02'); +INSERT INTO "status" VALUES(56,9,10,'2015-06-02 13:03:02'); +INSERT INTO "status" VALUES(56,9,10,'2015-06-02 13:04:02'); +INSERT INTO "status" VALUES(56,9,10,'2015-06-02 13:05:03'); +INSERT INTO "status" VALUES(56,9,10,'2015-06-02 13:06:02'); +INSERT INTO "status" VALUES(56,9,10,'2015-06-02 13:07:02'); +INSERT INTO "status" VALUES(56,9,10,'2015-06-02 13:08:02'); +INSERT INTO "status" VALUES(56,9,10,'2015-06-02 13:09:02'); +INSERT INTO "status" VALUES(56,9,10,'2015-06-02 13:10:02'); +INSERT INTO "status" VALUES(56,9,10,'2015-06-02 13:11:02'); +INSERT INTO "status" VALUES(56,10,9,'2015-06-02 13:12:02'); +INSERT INTO "status" VALUES(56,10,9,'2015-06-02 13:13:03'); +INSERT INTO "status" VALUES(56,10,9,'2015-06-02 13:14:03'); +INSERT INTO "status" VALUES(56,10,9,'2015-06-02 13:15:02'); +INSERT INTO "status" VALUES(56,10,9,'2015-06-02 13:16:02'); +INSERT INTO "status" VALUES(56,10,9,'2015-06-02 13:17:02'); +INSERT INTO "status" VALUES(56,10,9,'2015-06-02 13:18:02'); +INSERT INTO "status" VALUES(56,10,9,'2015-06-02 13:19:02'); +INSERT INTO "status" VALUES(56,10,9,'2015-06-02 13:20:02'); +INSERT INTO "status" VALUES(56,10,9,'2015-06-02 13:21:02'); +INSERT INTO "status" VALUES(56,10,9,'2015-06-02 13:22:02'); +INSERT INTO "status" VALUES(56,10,9,'2015-06-02 13:23:02'); +INSERT INTO "status" VALUES(56,10,9,'2015-06-02 13:24:02'); +INSERT INTO "status" VALUES(56,11,8,'2015-06-02 13:25:02'); +INSERT INTO "status" VALUES(56,11,8,'2015-06-02 13:26:02'); +INSERT INTO "status" VALUES(56,11,8,'2015-06-02 13:27:02'); +INSERT INTO "status" VALUES(56,11,8,'2015-06-02 13:28:02'); +INSERT INTO "status" VALUES(56,11,8,'2015-06-02 13:29:02'); +INSERT INTO "status" VALUES(56,11,8,'2015-06-02 13:30:02'); +INSERT INTO "status" VALUES(56,11,8,'2015-06-02 13:31:02'); +INSERT INTO "status" VALUES(56,11,8,'2015-06-02 13:32:02'); +INSERT INTO "status" VALUES(56,11,8,'2015-06-02 13:33:02'); +INSERT INTO "status" VALUES(56,11,8,'2015-06-02 13:34:02'); +INSERT INTO "status" VALUES(56,11,8,'2015-06-02 13:35:02'); +INSERT INTO "status" VALUES(56,11,8,'2015-06-02 13:36:02'); +INSERT INTO "status" VALUES(56,11,8,'2015-06-02 13:37:02'); +INSERT INTO "status" VALUES(56,11,8,'2015-06-02 13:38:02'); +INSERT INTO "status" VALUES(56,11,8,'2015-06-02 13:39:02'); +INSERT INTO "status" VALUES(56,11,8,'2015-06-02 13:40:02'); +INSERT INTO "status" VALUES(56,11,8,'2015-06-02 13:41:03'); +INSERT INTO "status" VALUES(56,12,7,'2015-06-02 13:42:03'); +INSERT INTO "status" VALUES(56,12,7,'2015-06-02 13:43:03'); +INSERT INTO "status" VALUES(56,12,7,'2015-06-02 13:44:02'); +INSERT INTO "status" VALUES(56,12,7,'2015-06-02 13:45:03'); +INSERT INTO "status" VALUES(56,13,6,'2015-06-02 13:46:02'); +INSERT INTO "status" VALUES(56,13,6,'2015-06-02 13:47:02'); +INSERT INTO "status" VALUES(56,13,6,'2015-06-02 13:48:02'); +INSERT INTO "status" VALUES(56,14,5,'2015-06-02 13:49:02'); +INSERT INTO "status" VALUES(56,14,5,'2015-06-02 13:50:03'); +INSERT INTO "status" VALUES(56,14,5,'2015-06-02 13:51:02'); +INSERT INTO "status" VALUES(56,14,5,'2015-06-02 13:52:02'); +INSERT INTO "status" VALUES(56,14,5,'2015-06-02 13:53:02'); +INSERT INTO "status" VALUES(56,14,5,'2015-06-02 13:54:02'); +INSERT INTO "status" VALUES(56,13,6,'2015-06-02 13:55:03'); +INSERT INTO "status" VALUES(56,13,6,'2015-06-02 13:56:02'); +INSERT INTO "status" VALUES(56,13,6,'2015-06-02 13:57:02'); +INSERT INTO "status" VALUES(56,12,7,'2015-06-02 13:58:02'); +INSERT INTO "status" VALUES(56,12,7,'2015-06-02 13:59:02'); +INSERT INTO "status" VALUES(56,12,7,'2015-06-02 14:00:02'); +INSERT INTO "status" VALUES(56,12,7,'2015-06-02 14:01:02'); +INSERT INTO "status" VALUES(56,12,7,'2015-06-02 14:02:02'); +INSERT INTO "status" VALUES(56,12,7,'2015-06-02 14:03:02'); +INSERT INTO "status" VALUES(56,12,7,'2015-06-02 14:04:02'); +INSERT INTO "status" VALUES(56,12,7,'2015-06-02 14:05:02'); +INSERT INTO "status" VALUES(56,12,7,'2015-06-02 14:06:02'); +INSERT INTO "status" VALUES(56,12,7,'2015-06-02 14:07:02'); +INSERT INTO "status" VALUES(56,12,7,'2015-06-02 14:08:02'); +INSERT INTO "status" VALUES(56,12,7,'2015-06-02 14:09:02'); +INSERT INTO "status" VALUES(56,12,7,'2015-06-02 14:10:02'); +INSERT INTO "status" VALUES(56,12,7,'2015-06-02 14:11:02'); +INSERT INTO "status" VALUES(56,12,7,'2015-06-02 14:12:02'); +INSERT INTO "status" VALUES(56,12,7,'2015-06-02 14:13:02'); +INSERT INTO "status" VALUES(56,12,7,'2015-06-02 14:14:02'); +INSERT INTO "status" VALUES(56,12,7,'2015-06-02 14:15:02'); +INSERT INTO "status" VALUES(56,12,7,'2015-06-02 14:16:02'); +INSERT INTO "status" VALUES(56,12,7,'2015-06-02 14:17:02'); +INSERT INTO "status" VALUES(56,12,7,'2015-06-02 14:18:02'); +INSERT INTO "status" VALUES(56,12,7,'2015-06-02 14:19:02'); +INSERT INTO "status" VALUES(56,12,7,'2015-06-02 14:20:03'); +INSERT INTO "status" VALUES(56,12,7,'2015-06-02 14:21:02'); +INSERT INTO "status" VALUES(56,12,7,'2015-06-02 14:22:02'); +INSERT INTO "status" VALUES(56,12,7,'2015-06-02 14:23:03'); +INSERT INTO "status" VALUES(56,12,7,'2015-06-02 14:24:02'); +INSERT INTO "status" VALUES(56,12,7,'2015-06-02 14:25:01'); +INSERT INTO "status" VALUES(56,12,7,'2015-06-02 14:26:02'); +INSERT INTO "status" VALUES(56,12,7,'2015-06-02 14:27:02'); +INSERT INTO "status" VALUES(56,12,7,'2015-06-02 14:28:02'); +INSERT INTO "status" VALUES(56,12,7,'2015-06-02 14:29:02'); +INSERT INTO "status" VALUES(56,12,7,'2015-06-02 14:30:02'); +INSERT INTO "status" VALUES(56,12,7,'2015-06-02 14:31:02'); +INSERT INTO "status" VALUES(56,12,7,'2015-06-02 14:32:02'); +INSERT INTO "status" VALUES(56,12,7,'2015-06-02 14:33:02'); +INSERT INTO "status" VALUES(56,12,7,'2015-06-02 14:34:02'); +INSERT INTO "status" VALUES(56,12,7,'2015-06-02 14:35:02'); +INSERT INTO "status" VALUES(56,12,7,'2015-06-02 14:36:02'); +INSERT INTO "status" VALUES(56,12,7,'2015-06-02 14:37:02'); +INSERT INTO "status" VALUES(56,12,7,'2015-06-02 14:38:02'); +INSERT INTO "status" VALUES(56,12,7,'2015-06-02 14:39:02'); +INSERT INTO "status" VALUES(56,12,7,'2015-06-02 14:40:02'); +INSERT INTO "status" VALUES(56,12,7,'2015-06-02 14:41:02'); +INSERT INTO "status" VALUES(56,12,7,'2015-06-02 14:42:02'); +INSERT INTO "status" VALUES(56,12,7,'2015-06-02 14:43:02'); +INSERT INTO "status" VALUES(56,12,7,'2015-06-02 14:44:02'); +INSERT INTO "status" VALUES(56,12,7,'2015-06-02 14:45:02'); +INSERT INTO "status" VALUES(56,12,7,'2015-06-02 14:46:02'); +INSERT INTO "status" VALUES(56,12,7,'2015-06-02 14:47:02'); +INSERT INTO "status" VALUES(56,12,7,'2015-06-02 14:48:02'); +INSERT INTO "status" VALUES(57,12,3,'2015-06-02 12:46:02'); +INSERT INTO "status" VALUES(57,12,3,'2015-06-02 12:47:02'); +INSERT INTO "status" VALUES(57,12,3,'2015-06-02 12:48:02'); +INSERT INTO "status" VALUES(57,12,3,'2015-06-02 12:49:02'); +INSERT INTO "status" VALUES(57,12,3,'2015-06-02 12:50:02'); +INSERT INTO "status" VALUES(57,12,3,'2015-06-02 12:51:02'); +INSERT INTO "status" VALUES(57,12,3,'2015-06-02 12:52:02'); +INSERT INTO "status" VALUES(57,12,3,'2015-06-02 12:53:03'); +INSERT INTO "status" VALUES(57,12,3,'2015-06-02 12:54:02'); +INSERT INTO "status" VALUES(57,12,3,'2015-06-02 12:55:02'); +INSERT INTO "status" VALUES(57,11,4,'2015-06-02 12:56:01'); +INSERT INTO "status" VALUES(57,11,4,'2015-06-02 12:57:02'); +INSERT INTO "status" VALUES(57,11,4,'2015-06-02 12:58:02'); +INSERT INTO "status" VALUES(57,11,4,'2015-06-02 12:59:02'); +INSERT INTO "status" VALUES(57,10,5,'2015-06-02 13:00:01'); +INSERT INTO "status" VALUES(57,10,5,'2015-06-02 13:01:03'); +INSERT INTO "status" VALUES(57,10,5,'2015-06-02 13:02:02'); +INSERT INTO "status" VALUES(57,10,5,'2015-06-02 13:03:02'); +INSERT INTO "status" VALUES(57,10,5,'2015-06-02 13:04:02'); +INSERT INTO "status" VALUES(57,10,5,'2015-06-02 13:05:03'); +INSERT INTO "status" VALUES(57,10,5,'2015-06-02 13:06:02'); +INSERT INTO "status" VALUES(57,10,5,'2015-06-02 13:07:02'); +INSERT INTO "status" VALUES(57,10,5,'2015-06-02 13:08:02'); +INSERT INTO "status" VALUES(57,10,5,'2015-06-02 13:09:02'); +INSERT INTO "status" VALUES(57,10,5,'2015-06-02 13:10:02'); +INSERT INTO "status" VALUES(57,10,5,'2015-06-02 13:11:02'); +INSERT INTO "status" VALUES(57,10,5,'2015-06-02 13:12:02'); +INSERT INTO "status" VALUES(57,10,5,'2015-06-02 13:13:03'); +INSERT INTO "status" VALUES(57,10,5,'2015-06-02 13:14:03'); +INSERT INTO "status" VALUES(57,10,5,'2015-06-02 13:15:02'); +INSERT INTO "status" VALUES(57,10,5,'2015-06-02 13:16:02'); +INSERT INTO "status" VALUES(57,10,5,'2015-06-02 13:17:02'); +INSERT INTO "status" VALUES(57,10,5,'2015-06-02 13:18:02'); +INSERT INTO "status" VALUES(57,10,5,'2015-06-02 13:19:02'); +INSERT INTO "status" VALUES(57,10,5,'2015-06-02 13:20:02'); +INSERT INTO "status" VALUES(57,10,5,'2015-06-02 13:21:02'); +INSERT INTO "status" VALUES(57,10,5,'2015-06-02 13:22:02'); +INSERT INTO "status" VALUES(57,10,5,'2015-06-02 13:23:02'); +INSERT INTO "status" VALUES(57,10,5,'2015-06-02 13:24:02'); +INSERT INTO "status" VALUES(57,10,5,'2015-06-02 13:25:02'); +INSERT INTO "status" VALUES(57,10,5,'2015-06-02 13:26:02'); +INSERT INTO "status" VALUES(57,10,5,'2015-06-02 13:27:02'); +INSERT INTO "status" VALUES(57,10,5,'2015-06-02 13:28:02'); +INSERT INTO "status" VALUES(57,10,5,'2015-06-02 13:29:02'); +INSERT INTO "status" VALUES(57,11,4,'2015-06-02 13:30:02'); +INSERT INTO "status" VALUES(57,11,4,'2015-06-02 13:31:02'); +INSERT INTO "status" VALUES(57,11,4,'2015-06-02 13:32:02'); +INSERT INTO "status" VALUES(57,11,4,'2015-06-02 13:33:02'); +INSERT INTO "status" VALUES(57,11,4,'2015-06-02 13:34:02'); +INSERT INTO "status" VALUES(57,11,4,'2015-06-02 13:35:02'); +INSERT INTO "status" VALUES(57,11,4,'2015-06-02 13:36:02'); +INSERT INTO "status" VALUES(57,11,4,'2015-06-02 13:37:02'); +INSERT INTO "status" VALUES(57,11,4,'2015-06-02 13:38:02'); +INSERT INTO "status" VALUES(57,11,4,'2015-06-02 13:39:02'); +INSERT INTO "status" VALUES(57,11,4,'2015-06-02 13:40:02'); +INSERT INTO "status" VALUES(57,11,4,'2015-06-02 13:41:03'); +INSERT INTO "status" VALUES(57,11,4,'2015-06-02 13:42:03'); +INSERT INTO "status" VALUES(57,11,4,'2015-06-02 13:43:03'); +INSERT INTO "status" VALUES(57,11,4,'2015-06-02 13:44:02'); +INSERT INTO "status" VALUES(57,11,4,'2015-06-02 13:45:03'); +INSERT INTO "status" VALUES(57,11,4,'2015-06-02 13:46:02'); +INSERT INTO "status" VALUES(57,11,4,'2015-06-02 13:47:02'); +INSERT INTO "status" VALUES(57,11,4,'2015-06-02 13:48:02'); +INSERT INTO "status" VALUES(57,11,4,'2015-06-02 13:49:02'); +INSERT INTO "status" VALUES(57,11,4,'2015-06-02 13:50:03'); +INSERT INTO "status" VALUES(57,11,4,'2015-06-02 13:51:02'); +INSERT INTO "status" VALUES(57,11,4,'2015-06-02 13:52:02'); +INSERT INTO "status" VALUES(57,11,4,'2015-06-02 13:53:02'); +INSERT INTO "status" VALUES(57,11,4,'2015-06-02 13:54:02'); +INSERT INTO "status" VALUES(57,11,4,'2015-06-02 13:55:03'); +INSERT INTO "status" VALUES(57,11,4,'2015-06-02 13:56:02'); +INSERT INTO "status" VALUES(57,13,2,'2015-06-02 13:57:02'); +INSERT INTO "status" VALUES(57,13,2,'2015-06-02 13:58:02'); +INSERT INTO "status" VALUES(57,13,2,'2015-06-02 13:59:02'); +INSERT INTO "status" VALUES(57,13,2,'2015-06-02 14:00:02'); +INSERT INTO "status" VALUES(57,13,2,'2015-06-02 14:01:02'); +INSERT INTO "status" VALUES(57,13,2,'2015-06-02 14:02:02'); +INSERT INTO "status" VALUES(57,13,2,'2015-06-02 14:03:02'); +INSERT INTO "status" VALUES(57,13,2,'2015-06-02 14:04:02'); +INSERT INTO "status" VALUES(57,13,2,'2015-06-02 14:05:02'); +INSERT INTO "status" VALUES(57,13,2,'2015-06-02 14:06:02'); +INSERT INTO "status" VALUES(57,13,2,'2015-06-02 14:07:02'); +INSERT INTO "status" VALUES(57,13,2,'2015-06-02 14:08:02'); +INSERT INTO "status" VALUES(57,13,2,'2015-06-02 14:09:02'); +INSERT INTO "status" VALUES(57,13,2,'2015-06-02 14:10:02'); +INSERT INTO "status" VALUES(57,13,2,'2015-06-02 14:11:02'); +INSERT INTO "status" VALUES(57,13,2,'2015-06-02 14:12:02'); +INSERT INTO "status" VALUES(57,13,2,'2015-06-02 14:13:02'); +INSERT INTO "status" VALUES(57,13,2,'2015-06-02 14:14:02'); +INSERT INTO "status" VALUES(57,13,2,'2015-06-02 14:15:02'); +INSERT INTO "status" VALUES(57,13,2,'2015-06-02 14:16:02'); +INSERT INTO "status" VALUES(57,13,2,'2015-06-02 14:17:02'); +INSERT INTO "status" VALUES(57,13,2,'2015-06-02 14:18:02'); +INSERT INTO "status" VALUES(57,13,2,'2015-06-02 14:19:02'); +INSERT INTO "status" VALUES(57,13,2,'2015-06-02 14:20:03'); +INSERT INTO "status" VALUES(57,13,2,'2015-06-02 14:21:02'); +INSERT INTO "status" VALUES(57,13,2,'2015-06-02 14:22:02'); +INSERT INTO "status" VALUES(57,13,2,'2015-06-02 14:23:03'); +INSERT INTO "status" VALUES(57,13,2,'2015-06-02 14:24:02'); +INSERT INTO "status" VALUES(57,13,2,'2015-06-02 14:25:01'); +INSERT INTO "status" VALUES(57,13,2,'2015-06-02 14:26:02'); +INSERT INTO "status" VALUES(57,13,2,'2015-06-02 14:27:02'); +INSERT INTO "status" VALUES(57,13,2,'2015-06-02 14:28:02'); +INSERT INTO "status" VALUES(57,13,2,'2015-06-02 14:29:02'); +INSERT INTO "status" VALUES(57,13,2,'2015-06-02 14:30:02'); +INSERT INTO "status" VALUES(57,13,2,'2015-06-02 14:31:02'); +INSERT INTO "status" VALUES(57,13,2,'2015-06-02 14:32:02'); +INSERT INTO "status" VALUES(57,13,2,'2015-06-02 14:33:02'); +INSERT INTO "status" VALUES(57,13,2,'2015-06-02 14:34:02'); +INSERT INTO "status" VALUES(57,13,2,'2015-06-02 14:35:02'); +INSERT INTO "status" VALUES(57,13,2,'2015-06-02 14:36:02'); +INSERT INTO "status" VALUES(57,13,2,'2015-06-02 14:37:02'); +INSERT INTO "status" VALUES(57,13,2,'2015-06-02 14:38:02'); +INSERT INTO "status" VALUES(57,13,2,'2015-06-02 14:39:02'); +INSERT INTO "status" VALUES(57,13,2,'2015-06-02 14:40:02'); +INSERT INTO "status" VALUES(57,13,2,'2015-06-02 14:41:02'); +INSERT INTO "status" VALUES(57,13,2,'2015-06-02 14:42:02'); +INSERT INTO "status" VALUES(57,13,2,'2015-06-02 14:43:02'); +INSERT INTO "status" VALUES(57,13,2,'2015-06-02 14:44:02'); +INSERT INTO "status" VALUES(57,13,2,'2015-06-02 14:45:02'); +INSERT INTO "status" VALUES(57,13,2,'2015-06-02 14:46:02'); +INSERT INTO "status" VALUES(57,13,2,'2015-06-02 14:47:02'); +INSERT INTO "status" VALUES(57,13,2,'2015-06-02 14:48:02'); +INSERT INTO "status" VALUES(58,7,12,'2015-06-02 12:46:02'); +INSERT INTO "status" VALUES(58,7,12,'2015-06-02 12:47:02'); +INSERT INTO "status" VALUES(58,7,12,'2015-06-02 12:48:02'); +INSERT INTO "status" VALUES(58,7,12,'2015-06-02 12:49:02'); +INSERT INTO "status" VALUES(58,7,12,'2015-06-02 12:50:02'); +INSERT INTO "status" VALUES(58,7,12,'2015-06-02 12:51:02'); +INSERT INTO "status" VALUES(58,7,12,'2015-06-02 12:52:02'); +INSERT INTO "status" VALUES(58,7,12,'2015-06-02 12:53:03'); +INSERT INTO "status" VALUES(58,7,12,'2015-06-02 12:54:02'); +INSERT INTO "status" VALUES(58,7,12,'2015-06-02 12:55:02'); +INSERT INTO "status" VALUES(58,7,12,'2015-06-02 12:56:01'); +INSERT INTO "status" VALUES(58,7,12,'2015-06-02 12:57:02'); +INSERT INTO "status" VALUES(58,7,12,'2015-06-02 12:58:02'); +INSERT INTO "status" VALUES(58,7,12,'2015-06-02 12:59:02'); +INSERT INTO "status" VALUES(58,7,12,'2015-06-02 13:00:01'); +INSERT INTO "status" VALUES(58,7,12,'2015-06-02 13:01:03'); +INSERT INTO "status" VALUES(58,7,12,'2015-06-02 13:02:02'); +INSERT INTO "status" VALUES(58,7,12,'2015-06-02 13:03:02'); +INSERT INTO "status" VALUES(58,7,12,'2015-06-02 13:04:02'); +INSERT INTO "status" VALUES(58,7,12,'2015-06-02 13:05:03'); +INSERT INTO "status" VALUES(58,7,12,'2015-06-02 13:06:02'); +INSERT INTO "status" VALUES(58,7,12,'2015-06-02 13:07:02'); +INSERT INTO "status" VALUES(58,7,12,'2015-06-02 13:08:02'); +INSERT INTO "status" VALUES(58,7,12,'2015-06-02 13:09:02'); +INSERT INTO "status" VALUES(58,7,12,'2015-06-02 13:10:02'); +INSERT INTO "status" VALUES(58,7,12,'2015-06-02 13:11:02'); +INSERT INTO "status" VALUES(58,7,12,'2015-06-02 13:12:02'); +INSERT INTO "status" VALUES(58,7,12,'2015-06-02 13:13:03'); +INSERT INTO "status" VALUES(58,7,12,'2015-06-02 13:14:03'); +INSERT INTO "status" VALUES(58,7,12,'2015-06-02 13:15:02'); +INSERT INTO "status" VALUES(58,7,12,'2015-06-02 13:16:02'); +INSERT INTO "status" VALUES(58,7,12,'2015-06-02 13:17:02'); +INSERT INTO "status" VALUES(58,7,12,'2015-06-02 13:18:02'); +INSERT INTO "status" VALUES(58,7,12,'2015-06-02 13:19:02'); +INSERT INTO "status" VALUES(58,7,12,'2015-06-02 13:20:02'); +INSERT INTO "status" VALUES(58,7,12,'2015-06-02 13:21:02'); +INSERT INTO "status" VALUES(58,7,12,'2015-06-02 13:22:02'); +INSERT INTO "status" VALUES(58,7,12,'2015-06-02 13:23:02'); +INSERT INTO "status" VALUES(58,7,12,'2015-06-02 13:24:02'); +INSERT INTO "status" VALUES(58,7,12,'2015-06-02 13:25:02'); +INSERT INTO "status" VALUES(58,7,12,'2015-06-02 13:26:02'); +INSERT INTO "status" VALUES(58,7,12,'2015-06-02 13:27:02'); +INSERT INTO "status" VALUES(58,7,12,'2015-06-02 13:28:02'); +INSERT INTO "status" VALUES(58,7,12,'2015-06-02 13:29:02'); +INSERT INTO "status" VALUES(58,7,12,'2015-06-02 13:30:02'); +INSERT INTO "status" VALUES(58,7,12,'2015-06-02 13:31:02'); +INSERT INTO "status" VALUES(58,7,12,'2015-06-02 13:32:02'); +INSERT INTO "status" VALUES(58,7,12,'2015-06-02 13:33:02'); +INSERT INTO "status" VALUES(58,7,12,'2015-06-02 13:34:02'); +INSERT INTO "status" VALUES(58,7,12,'2015-06-02 13:35:02'); +INSERT INTO "status" VALUES(58,7,12,'2015-06-02 13:36:02'); +INSERT INTO "status" VALUES(58,7,12,'2015-06-02 13:37:02'); +INSERT INTO "status" VALUES(58,7,12,'2015-06-02 13:38:02'); +INSERT INTO "status" VALUES(58,7,12,'2015-06-02 13:39:02'); +INSERT INTO "status" VALUES(58,7,12,'2015-06-02 13:40:02'); +INSERT INTO "status" VALUES(58,7,12,'2015-06-02 13:41:03'); +INSERT INTO "status" VALUES(58,7,12,'2015-06-02 13:42:03'); +INSERT INTO "status" VALUES(58,7,12,'2015-06-02 13:43:03'); +INSERT INTO "status" VALUES(58,7,12,'2015-06-02 13:44:02'); +INSERT INTO "status" VALUES(58,7,12,'2015-06-02 13:45:03'); +INSERT INTO "status" VALUES(58,7,12,'2015-06-02 13:46:02'); +INSERT INTO "status" VALUES(58,7,12,'2015-06-02 13:47:02'); +INSERT INTO "status" VALUES(58,7,12,'2015-06-02 13:48:02'); +INSERT INTO "status" VALUES(58,7,12,'2015-06-02 13:49:02'); +INSERT INTO "status" VALUES(58,7,12,'2015-06-02 13:50:03'); +INSERT INTO "status" VALUES(58,7,12,'2015-06-02 13:51:02'); +INSERT INTO "status" VALUES(58,7,12,'2015-06-02 13:52:02'); +INSERT INTO "status" VALUES(58,7,12,'2015-06-02 13:53:02'); +INSERT INTO "status" VALUES(58,7,12,'2015-06-02 13:54:02'); +INSERT INTO "status" VALUES(58,7,12,'2015-06-02 13:55:03'); +INSERT INTO "status" VALUES(58,7,12,'2015-06-02 13:56:02'); +INSERT INTO "status" VALUES(58,7,12,'2015-06-02 13:57:02'); +INSERT INTO "status" VALUES(58,7,12,'2015-06-02 13:58:02'); +INSERT INTO "status" VALUES(58,7,12,'2015-06-02 13:59:02'); +INSERT INTO "status" VALUES(58,7,12,'2015-06-02 14:00:02'); +INSERT INTO "status" VALUES(58,7,12,'2015-06-02 14:01:02'); +INSERT INTO "status" VALUES(58,7,12,'2015-06-02 14:02:02'); +INSERT INTO "status" VALUES(58,7,12,'2015-06-02 14:03:02'); +INSERT INTO "status" VALUES(58,7,12,'2015-06-02 14:04:02'); +INSERT INTO "status" VALUES(58,7,12,'2015-06-02 14:05:02'); +INSERT INTO "status" VALUES(58,7,12,'2015-06-02 14:06:02'); +INSERT INTO "status" VALUES(58,7,12,'2015-06-02 14:07:02'); +INSERT INTO "status" VALUES(58,7,12,'2015-06-02 14:08:02'); +INSERT INTO "status" VALUES(58,7,12,'2015-06-02 14:09:02'); +INSERT INTO "status" VALUES(58,7,12,'2015-06-02 14:10:02'); +INSERT INTO "status" VALUES(58,7,12,'2015-06-02 14:11:02'); +INSERT INTO "status" VALUES(58,7,12,'2015-06-02 14:12:02'); +INSERT INTO "status" VALUES(58,7,12,'2015-06-02 14:13:02'); +INSERT INTO "status" VALUES(58,7,12,'2015-06-02 14:14:02'); +INSERT INTO "status" VALUES(58,7,12,'2015-06-02 14:15:02'); +INSERT INTO "status" VALUES(58,7,12,'2015-06-02 14:16:02'); +INSERT INTO "status" VALUES(58,7,12,'2015-06-02 14:17:02'); +INSERT INTO "status" VALUES(58,7,12,'2015-06-02 14:18:02'); +INSERT INTO "status" VALUES(58,7,12,'2015-06-02 14:19:02'); +INSERT INTO "status" VALUES(58,7,12,'2015-06-02 14:20:03'); +INSERT INTO "status" VALUES(58,7,12,'2015-06-02 14:21:02'); +INSERT INTO "status" VALUES(58,7,12,'2015-06-02 14:22:02'); +INSERT INTO "status" VALUES(58,7,12,'2015-06-02 14:23:03'); +INSERT INTO "status" VALUES(58,7,12,'2015-06-02 14:24:02'); +INSERT INTO "status" VALUES(58,7,12,'2015-06-02 14:25:01'); +INSERT INTO "status" VALUES(58,7,12,'2015-06-02 14:26:02'); +INSERT INTO "status" VALUES(58,7,12,'2015-06-02 14:27:02'); +INSERT INTO "status" VALUES(58,7,12,'2015-06-02 14:28:02'); +INSERT INTO "status" VALUES(58,7,12,'2015-06-02 14:29:02'); +INSERT INTO "status" VALUES(58,7,12,'2015-06-02 14:30:02'); +INSERT INTO "status" VALUES(58,7,12,'2015-06-02 14:31:02'); +INSERT INTO "status" VALUES(58,7,12,'2015-06-02 14:32:02'); +INSERT INTO "status" VALUES(58,7,12,'2015-06-02 14:33:02'); +INSERT INTO "status" VALUES(58,7,12,'2015-06-02 14:34:02'); +INSERT INTO "status" VALUES(58,7,12,'2015-06-02 14:35:02'); +INSERT INTO "status" VALUES(58,7,12,'2015-06-02 14:36:02'); +INSERT INTO "status" VALUES(58,7,12,'2015-06-02 14:37:02'); +INSERT INTO "status" VALUES(58,7,12,'2015-06-02 14:38:02'); +INSERT INTO "status" VALUES(58,7,12,'2015-06-02 14:39:02'); +INSERT INTO "status" VALUES(58,7,12,'2015-06-02 14:40:02'); +INSERT INTO "status" VALUES(58,7,12,'2015-06-02 14:41:02'); +INSERT INTO "status" VALUES(58,7,12,'2015-06-02 14:42:02'); +INSERT INTO "status" VALUES(58,7,12,'2015-06-02 14:43:02'); +INSERT INTO "status" VALUES(58,7,12,'2015-06-02 14:44:02'); +INSERT INTO "status" VALUES(58,7,12,'2015-06-02 14:45:02'); +INSERT INTO "status" VALUES(58,7,12,'2015-06-02 14:46:02'); +INSERT INTO "status" VALUES(58,7,12,'2015-06-02 14:47:02'); +INSERT INTO "status" VALUES(58,7,12,'2015-06-02 14:48:02'); +INSERT INTO "status" VALUES(59,4,19,'2015-06-02 12:46:02'); +INSERT INTO "status" VALUES(59,4,19,'2015-06-02 12:47:02'); +INSERT INTO "status" VALUES(59,4,19,'2015-06-02 12:48:02'); +INSERT INTO "status" VALUES(59,4,19,'2015-06-02 12:49:02'); +INSERT INTO "status" VALUES(59,4,19,'2015-06-02 12:50:02'); +INSERT INTO "status" VALUES(59,4,19,'2015-06-02 12:51:02'); +INSERT INTO "status" VALUES(59,4,19,'2015-06-02 12:52:02'); +INSERT INTO "status" VALUES(59,4,19,'2015-06-02 12:53:03'); +INSERT INTO "status" VALUES(59,4,19,'2015-06-02 12:54:02'); +INSERT INTO "status" VALUES(59,4,19,'2015-06-02 12:55:02'); +INSERT INTO "status" VALUES(59,4,19,'2015-06-02 12:56:01'); +INSERT INTO "status" VALUES(59,4,19,'2015-06-02 12:57:02'); +INSERT INTO "status" VALUES(59,4,19,'2015-06-02 12:58:02'); +INSERT INTO "status" VALUES(59,4,19,'2015-06-02 12:59:02'); +INSERT INTO "status" VALUES(59,4,19,'2015-06-02 13:00:01'); +INSERT INTO "status" VALUES(59,4,19,'2015-06-02 13:01:03'); +INSERT INTO "status" VALUES(59,4,19,'2015-06-02 13:02:02'); +INSERT INTO "status" VALUES(59,4,19,'2015-06-02 13:03:02'); +INSERT INTO "status" VALUES(59,4,19,'2015-06-02 13:04:02'); +INSERT INTO "status" VALUES(59,4,19,'2015-06-02 13:05:03'); +INSERT INTO "status" VALUES(59,4,19,'2015-06-02 13:06:02'); +INSERT INTO "status" VALUES(59,4,19,'2015-06-02 13:07:02'); +INSERT INTO "status" VALUES(59,4,19,'2015-06-02 13:08:02'); +INSERT INTO "status" VALUES(59,4,19,'2015-06-02 13:09:02'); +INSERT INTO "status" VALUES(59,4,19,'2015-06-02 13:10:02'); +INSERT INTO "status" VALUES(59,4,19,'2015-06-02 13:11:02'); +INSERT INTO "status" VALUES(59,4,19,'2015-06-02 13:12:02'); +INSERT INTO "status" VALUES(59,4,19,'2015-06-02 13:13:03'); +INSERT INTO "status" VALUES(59,4,19,'2015-06-02 13:14:03'); +INSERT INTO "status" VALUES(59,4,19,'2015-06-02 13:15:02'); +INSERT INTO "status" VALUES(59,4,19,'2015-06-02 13:16:02'); +INSERT INTO "status" VALUES(59,4,19,'2015-06-02 13:17:02'); +INSERT INTO "status" VALUES(59,4,19,'2015-06-02 13:18:02'); +INSERT INTO "status" VALUES(59,4,19,'2015-06-02 13:19:02'); +INSERT INTO "status" VALUES(59,4,19,'2015-06-02 13:20:02'); +INSERT INTO "status" VALUES(59,4,19,'2015-06-02 13:21:02'); +INSERT INTO "status" VALUES(59,4,19,'2015-06-02 13:22:02'); +INSERT INTO "status" VALUES(59,4,19,'2015-06-02 13:23:02'); +INSERT INTO "status" VALUES(59,4,19,'2015-06-02 13:24:02'); +INSERT INTO "status" VALUES(59,4,19,'2015-06-02 13:25:02'); +INSERT INTO "status" VALUES(59,4,19,'2015-06-02 13:26:02'); +INSERT INTO "status" VALUES(59,4,19,'2015-06-02 13:27:02'); +INSERT INTO "status" VALUES(59,4,19,'2015-06-02 13:28:02'); +INSERT INTO "status" VALUES(59,4,19,'2015-06-02 13:29:02'); +INSERT INTO "status" VALUES(59,4,19,'2015-06-02 13:30:02'); +INSERT INTO "status" VALUES(59,4,19,'2015-06-02 13:31:02'); +INSERT INTO "status" VALUES(59,4,19,'2015-06-02 13:32:02'); +INSERT INTO "status" VALUES(59,4,19,'2015-06-02 13:33:02'); +INSERT INTO "status" VALUES(59,4,19,'2015-06-02 13:34:02'); +INSERT INTO "status" VALUES(59,4,19,'2015-06-02 13:35:02'); +INSERT INTO "status" VALUES(59,4,19,'2015-06-02 13:36:02'); +INSERT INTO "status" VALUES(59,4,19,'2015-06-02 13:37:02'); +INSERT INTO "status" VALUES(59,4,19,'2015-06-02 13:38:02'); +INSERT INTO "status" VALUES(59,4,19,'2015-06-02 13:39:02'); +INSERT INTO "status" VALUES(59,4,19,'2015-06-02 13:40:02'); +INSERT INTO "status" VALUES(59,4,19,'2015-06-02 13:41:03'); +INSERT INTO "status" VALUES(59,4,19,'2015-06-02 13:42:03'); +INSERT INTO "status" VALUES(59,4,19,'2015-06-02 13:43:03'); +INSERT INTO "status" VALUES(59,4,19,'2015-06-02 13:44:02'); +INSERT INTO "status" VALUES(59,4,19,'2015-06-02 13:45:03'); +INSERT INTO "status" VALUES(59,4,19,'2015-06-02 13:46:02'); +INSERT INTO "status" VALUES(59,4,19,'2015-06-02 13:47:02'); +INSERT INTO "status" VALUES(59,4,19,'2015-06-02 13:48:02'); +INSERT INTO "status" VALUES(59,4,19,'2015-06-02 13:49:02'); +INSERT INTO "status" VALUES(59,4,19,'2015-06-02 13:50:03'); +INSERT INTO "status" VALUES(59,4,19,'2015-06-02 13:51:02'); +INSERT INTO "status" VALUES(59,4,19,'2015-06-02 13:52:02'); +INSERT INTO "status" VALUES(59,4,19,'2015-06-02 13:53:02'); +INSERT INTO "status" VALUES(59,4,19,'2015-06-02 13:54:02'); +INSERT INTO "status" VALUES(59,4,19,'2015-06-02 13:55:03'); +INSERT INTO "status" VALUES(59,4,19,'2015-06-02 13:56:02'); +INSERT INTO "status" VALUES(59,4,19,'2015-06-02 13:57:02'); +INSERT INTO "status" VALUES(59,4,19,'2015-06-02 13:58:02'); +INSERT INTO "status" VALUES(59,4,19,'2015-06-02 13:59:02'); +INSERT INTO "status" VALUES(59,4,19,'2015-06-02 14:00:02'); +INSERT INTO "status" VALUES(59,4,19,'2015-06-02 14:01:02'); +INSERT INTO "status" VALUES(59,4,19,'2015-06-02 14:02:02'); +INSERT INTO "status" VALUES(59,4,19,'2015-06-02 14:03:02'); +INSERT INTO "status" VALUES(59,4,19,'2015-06-02 14:04:02'); +INSERT INTO "status" VALUES(59,4,19,'2015-06-02 14:05:02'); +INSERT INTO "status" VALUES(59,4,19,'2015-06-02 14:06:02'); +INSERT INTO "status" VALUES(59,4,19,'2015-06-02 14:07:02'); +INSERT INTO "status" VALUES(59,4,19,'2015-06-02 14:08:02'); +INSERT INTO "status" VALUES(59,4,19,'2015-06-02 14:09:02'); +INSERT INTO "status" VALUES(59,4,19,'2015-06-02 14:10:02'); +INSERT INTO "status" VALUES(59,4,19,'2015-06-02 14:11:02'); +INSERT INTO "status" VALUES(59,4,19,'2015-06-02 14:12:02'); +INSERT INTO "status" VALUES(59,4,19,'2015-06-02 14:13:02'); +INSERT INTO "status" VALUES(59,4,19,'2015-06-02 14:14:02'); +INSERT INTO "status" VALUES(59,4,19,'2015-06-02 14:15:02'); +INSERT INTO "status" VALUES(59,4,19,'2015-06-02 14:16:02'); +INSERT INTO "status" VALUES(59,4,19,'2015-06-02 14:17:02'); +INSERT INTO "status" VALUES(59,4,19,'2015-06-02 14:18:02'); +INSERT INTO "status" VALUES(59,4,19,'2015-06-02 14:19:02'); +INSERT INTO "status" VALUES(59,4,19,'2015-06-02 14:20:03'); +INSERT INTO "status" VALUES(59,4,19,'2015-06-02 14:21:02'); +INSERT INTO "status" VALUES(59,4,19,'2015-06-02 14:22:02'); +INSERT INTO "status" VALUES(59,4,19,'2015-06-02 14:23:03'); +INSERT INTO "status" VALUES(59,4,19,'2015-06-02 14:24:02'); +INSERT INTO "status" VALUES(59,4,19,'2015-06-02 14:25:01'); +INSERT INTO "status" VALUES(59,4,19,'2015-06-02 14:26:02'); +INSERT INTO "status" VALUES(59,4,19,'2015-06-02 14:27:02'); +INSERT INTO "status" VALUES(59,4,19,'2015-06-02 14:28:02'); +INSERT INTO "status" VALUES(59,4,19,'2015-06-02 14:29:02'); +INSERT INTO "status" VALUES(59,4,19,'2015-06-02 14:30:02'); +INSERT INTO "status" VALUES(59,4,19,'2015-06-02 14:31:02'); +INSERT INTO "status" VALUES(59,4,19,'2015-06-02 14:32:02'); +INSERT INTO "status" VALUES(59,4,19,'2015-06-02 14:33:02'); +INSERT INTO "status" VALUES(59,4,19,'2015-06-02 14:34:02'); +INSERT INTO "status" VALUES(59,4,19,'2015-06-02 14:35:02'); +INSERT INTO "status" VALUES(59,4,19,'2015-06-02 14:36:02'); +INSERT INTO "status" VALUES(59,4,19,'2015-06-02 14:37:02'); +INSERT INTO "status" VALUES(59,4,19,'2015-06-02 14:38:02'); +INSERT INTO "status" VALUES(59,4,19,'2015-06-02 14:39:02'); +INSERT INTO "status" VALUES(59,4,19,'2015-06-02 14:40:02'); +INSERT INTO "status" VALUES(59,4,19,'2015-06-02 14:41:02'); +INSERT INTO "status" VALUES(59,4,19,'2015-06-02 14:42:02'); +INSERT INTO "status" VALUES(59,4,19,'2015-06-02 14:43:02'); +INSERT INTO "status" VALUES(59,4,19,'2015-06-02 14:44:02'); +INSERT INTO "status" VALUES(59,4,19,'2015-06-02 14:45:02'); +INSERT INTO "status" VALUES(59,4,19,'2015-06-02 14:46:02'); +INSERT INTO "status" VALUES(59,4,19,'2015-06-02 14:47:02'); +INSERT INTO "status" VALUES(59,4,19,'2015-06-02 14:48:02'); +INSERT INTO "status" VALUES(60,9,6,'2015-06-02 12:46:02'); +INSERT INTO "status" VALUES(60,9,6,'2015-06-02 12:47:02'); +INSERT INTO "status" VALUES(60,9,6,'2015-06-02 12:48:02'); +INSERT INTO "status" VALUES(60,9,6,'2015-06-02 12:49:02'); +INSERT INTO "status" VALUES(60,9,6,'2015-06-02 12:50:02'); +INSERT INTO "status" VALUES(60,9,6,'2015-06-02 12:51:02'); +INSERT INTO "status" VALUES(60,9,6,'2015-06-02 12:52:02'); +INSERT INTO "status" VALUES(60,9,6,'2015-06-02 12:53:03'); +INSERT INTO "status" VALUES(60,9,6,'2015-06-02 12:54:02'); +INSERT INTO "status" VALUES(60,9,6,'2015-06-02 12:55:02'); +INSERT INTO "status" VALUES(60,9,6,'2015-06-02 12:56:01'); +INSERT INTO "status" VALUES(60,9,6,'2015-06-02 12:57:02'); +INSERT INTO "status" VALUES(60,9,6,'2015-06-02 12:58:02'); +INSERT INTO "status" VALUES(60,9,6,'2015-06-02 12:59:02'); +INSERT INTO "status" VALUES(60,9,6,'2015-06-02 13:00:01'); +INSERT INTO "status" VALUES(60,10,5,'2015-06-02 13:01:03'); +INSERT INTO "status" VALUES(60,10,5,'2015-06-02 13:02:02'); +INSERT INTO "status" VALUES(60,9,6,'2015-06-02 13:03:02'); +INSERT INTO "status" VALUES(60,9,6,'2015-06-02 13:04:02'); +INSERT INTO "status" VALUES(60,9,6,'2015-06-02 13:05:03'); +INSERT INTO "status" VALUES(60,8,7,'2015-06-02 13:06:02'); +INSERT INTO "status" VALUES(60,8,7,'2015-06-02 13:07:02'); +INSERT INTO "status" VALUES(60,8,7,'2015-06-02 13:08:02'); +INSERT INTO "status" VALUES(60,8,7,'2015-06-02 13:09:02'); +INSERT INTO "status" VALUES(60,8,7,'2015-06-02 13:10:02'); +INSERT INTO "status" VALUES(60,8,7,'2015-06-02 13:11:02'); +INSERT INTO "status" VALUES(60,8,7,'2015-06-02 13:12:02'); +INSERT INTO "status" VALUES(60,8,7,'2015-06-02 13:13:03'); +INSERT INTO "status" VALUES(60,8,7,'2015-06-02 13:14:03'); +INSERT INTO "status" VALUES(60,8,7,'2015-06-02 13:15:02'); +INSERT INTO "status" VALUES(60,8,7,'2015-06-02 13:16:02'); +INSERT INTO "status" VALUES(60,8,7,'2015-06-02 13:17:02'); +INSERT INTO "status" VALUES(60,8,7,'2015-06-02 13:18:02'); +INSERT INTO "status" VALUES(60,8,7,'2015-06-02 13:19:02'); +INSERT INTO "status" VALUES(60,8,7,'2015-06-02 13:20:02'); +INSERT INTO "status" VALUES(60,8,7,'2015-06-02 13:21:02'); +INSERT INTO "status" VALUES(60,8,7,'2015-06-02 13:22:02'); +INSERT INTO "status" VALUES(60,8,7,'2015-06-02 13:23:02'); +INSERT INTO "status" VALUES(60,8,7,'2015-06-02 13:24:02'); +INSERT INTO "status" VALUES(60,8,7,'2015-06-02 13:25:02'); +INSERT INTO "status" VALUES(60,8,7,'2015-06-02 13:26:02'); +INSERT INTO "status" VALUES(60,8,7,'2015-06-02 13:27:02'); +INSERT INTO "status" VALUES(60,8,7,'2015-06-02 13:28:02'); +INSERT INTO "status" VALUES(60,8,7,'2015-06-02 13:29:02'); +INSERT INTO "status" VALUES(60,8,7,'2015-06-02 13:30:02'); +INSERT INTO "status" VALUES(60,8,7,'2015-06-02 13:31:02'); +INSERT INTO "status" VALUES(60,8,7,'2015-06-02 13:32:02'); +INSERT INTO "status" VALUES(60,8,7,'2015-06-02 13:33:02'); +INSERT INTO "status" VALUES(60,8,7,'2015-06-02 13:34:02'); +INSERT INTO "status" VALUES(60,8,7,'2015-06-02 13:35:02'); +INSERT INTO "status" VALUES(60,8,7,'2015-06-02 13:36:02'); +INSERT INTO "status" VALUES(60,8,7,'2015-06-02 13:37:02'); +INSERT INTO "status" VALUES(60,8,7,'2015-06-02 13:38:02'); +INSERT INTO "status" VALUES(60,8,7,'2015-06-02 13:39:02'); +INSERT INTO "status" VALUES(60,8,7,'2015-06-02 13:40:02'); +INSERT INTO "status" VALUES(60,8,7,'2015-06-02 13:41:03'); +INSERT INTO "status" VALUES(60,8,7,'2015-06-02 13:42:03'); +INSERT INTO "status" VALUES(60,8,7,'2015-06-02 13:43:03'); +INSERT INTO "status" VALUES(60,8,7,'2015-06-02 13:44:02'); +INSERT INTO "status" VALUES(60,8,7,'2015-06-02 13:45:03'); +INSERT INTO "status" VALUES(60,8,7,'2015-06-02 13:46:02'); +INSERT INTO "status" VALUES(60,8,7,'2015-06-02 13:47:02'); +INSERT INTO "status" VALUES(60,8,7,'2015-06-02 13:48:02'); +INSERT INTO "status" VALUES(60,8,7,'2015-06-02 13:49:02'); +INSERT INTO "status" VALUES(60,8,7,'2015-06-02 13:50:03'); +INSERT INTO "status" VALUES(60,7,8,'2015-06-02 13:51:02'); +INSERT INTO "status" VALUES(60,7,8,'2015-06-02 13:52:02'); +INSERT INTO "status" VALUES(60,7,8,'2015-06-02 13:53:02'); +INSERT INTO "status" VALUES(60,7,8,'2015-06-02 13:54:02'); +INSERT INTO "status" VALUES(60,7,8,'2015-06-02 13:55:03'); +INSERT INTO "status" VALUES(60,7,8,'2015-06-02 13:56:02'); +INSERT INTO "status" VALUES(60,6,9,'2015-06-02 13:57:02'); +INSERT INTO "status" VALUES(60,6,9,'2015-06-02 13:58:02'); +INSERT INTO "status" VALUES(60,6,9,'2015-06-02 13:59:02'); +INSERT INTO "status" VALUES(60,7,8,'2015-06-02 14:00:02'); +INSERT INTO "status" VALUES(60,7,8,'2015-06-02 14:01:02'); +INSERT INTO "status" VALUES(60,5,10,'2015-06-02 14:02:02'); +INSERT INTO "status" VALUES(60,6,9,'2015-06-02 14:03:02'); +INSERT INTO "status" VALUES(60,7,8,'2015-06-02 14:04:02'); +INSERT INTO "status" VALUES(60,7,8,'2015-06-02 14:05:02'); +INSERT INTO "status" VALUES(60,7,8,'2015-06-02 14:06:02'); +INSERT INTO "status" VALUES(60,7,8,'2015-06-02 14:07:02'); +INSERT INTO "status" VALUES(60,7,8,'2015-06-02 14:08:02'); +INSERT INTO "status" VALUES(60,7,8,'2015-06-02 14:09:02'); +INSERT INTO "status" VALUES(60,6,9,'2015-06-02 14:10:02'); +INSERT INTO "status" VALUES(60,4,11,'2015-06-02 14:11:02'); +INSERT INTO "status" VALUES(60,5,10,'2015-06-02 14:12:02'); +INSERT INTO "status" VALUES(60,5,10,'2015-06-02 14:13:02'); +INSERT INTO "status" VALUES(60,5,10,'2015-06-02 14:14:02'); +INSERT INTO "status" VALUES(60,5,10,'2015-06-02 14:15:02'); +INSERT INTO "status" VALUES(60,5,10,'2015-06-02 14:16:02'); +INSERT INTO "status" VALUES(60,5,10,'2015-06-02 14:17:02'); +INSERT INTO "status" VALUES(60,5,10,'2015-06-02 14:18:02'); +INSERT INTO "status" VALUES(60,5,10,'2015-06-02 14:19:02'); +INSERT INTO "status" VALUES(60,5,10,'2015-06-02 14:20:03'); +INSERT INTO "status" VALUES(60,5,10,'2015-06-02 14:21:02'); +INSERT INTO "status" VALUES(60,5,10,'2015-06-02 14:22:02'); +INSERT INTO "status" VALUES(60,5,10,'2015-06-02 14:23:03'); +INSERT INTO "status" VALUES(60,5,10,'2015-06-02 14:24:02'); +INSERT INTO "status" VALUES(60,5,10,'2015-06-02 14:25:01'); +INSERT INTO "status" VALUES(60,5,10,'2015-06-02 14:26:02'); +INSERT INTO "status" VALUES(60,5,10,'2015-06-02 14:27:02'); +INSERT INTO "status" VALUES(60,5,10,'2015-06-02 14:28:02'); +INSERT INTO "status" VALUES(60,5,10,'2015-06-02 14:29:02'); +INSERT INTO "status" VALUES(60,5,10,'2015-06-02 14:30:02'); +INSERT INTO "status" VALUES(60,5,10,'2015-06-02 14:31:02'); +INSERT INTO "status" VALUES(60,5,10,'2015-06-02 14:32:02'); +INSERT INTO "status" VALUES(60,5,10,'2015-06-02 14:33:02'); +INSERT INTO "status" VALUES(60,5,10,'2015-06-02 14:34:02'); +INSERT INTO "status" VALUES(60,5,10,'2015-06-02 14:35:02'); +INSERT INTO "status" VALUES(60,5,10,'2015-06-02 14:36:02'); +INSERT INTO "status" VALUES(60,5,10,'2015-06-02 14:37:02'); +INSERT INTO "status" VALUES(60,5,10,'2015-06-02 14:38:02'); +INSERT INTO "status" VALUES(60,5,10,'2015-06-02 14:39:02'); +INSERT INTO "status" VALUES(60,5,10,'2015-06-02 14:40:02'); +INSERT INTO "status" VALUES(60,5,10,'2015-06-02 14:41:02'); +INSERT INTO "status" VALUES(60,5,10,'2015-06-02 14:42:02'); +INSERT INTO "status" VALUES(60,5,10,'2015-06-02 14:43:02'); +INSERT INTO "status" VALUES(60,5,10,'2015-06-02 14:44:02'); +INSERT INTO "status" VALUES(60,7,8,'2015-06-02 14:45:02'); +INSERT INTO "status" VALUES(60,7,8,'2015-06-02 14:46:02'); +INSERT INTO "status" VALUES(60,7,8,'2015-06-02 14:47:02'); +INSERT INTO "status" VALUES(60,7,8,'2015-06-02 14:48:02'); +INSERT INTO "status" VALUES(61,12,15,'2015-06-02 12:46:02'); +INSERT INTO "status" VALUES(61,11,16,'2015-06-02 12:47:02'); +INSERT INTO "status" VALUES(61,11,16,'2015-06-02 12:48:02'); +INSERT INTO "status" VALUES(61,11,16,'2015-06-02 12:49:02'); +INSERT INTO "status" VALUES(61,11,16,'2015-06-02 12:50:02'); +INSERT INTO "status" VALUES(61,11,16,'2015-06-02 12:51:02'); +INSERT INTO "status" VALUES(61,11,16,'2015-06-02 12:52:02'); +INSERT INTO "status" VALUES(61,10,17,'2015-06-02 12:53:03'); +INSERT INTO "status" VALUES(61,10,17,'2015-06-02 12:54:02'); +INSERT INTO "status" VALUES(61,10,17,'2015-06-02 12:55:02'); +INSERT INTO "status" VALUES(61,10,17,'2015-06-02 12:56:01'); +INSERT INTO "status" VALUES(61,11,16,'2015-06-02 12:57:02'); +INSERT INTO "status" VALUES(61,11,16,'2015-06-02 12:58:02'); +INSERT INTO "status" VALUES(61,11,16,'2015-06-02 12:59:02'); +INSERT INTO "status" VALUES(61,11,16,'2015-06-02 13:00:01'); +INSERT INTO "status" VALUES(61,11,16,'2015-06-02 13:01:03'); +INSERT INTO "status" VALUES(61,11,16,'2015-06-02 13:02:02'); +INSERT INTO "status" VALUES(61,11,16,'2015-06-02 13:03:02'); +INSERT INTO "status" VALUES(61,11,16,'2015-06-02 13:04:02'); +INSERT INTO "status" VALUES(61,11,16,'2015-06-02 13:05:03'); +INSERT INTO "status" VALUES(61,11,16,'2015-06-02 13:06:02'); +INSERT INTO "status" VALUES(61,11,16,'2015-06-02 13:07:02'); +INSERT INTO "status" VALUES(61,11,16,'2015-06-02 13:08:02'); +INSERT INTO "status" VALUES(61,11,16,'2015-06-02 13:09:02'); +INSERT INTO "status" VALUES(61,11,16,'2015-06-02 13:10:02'); +INSERT INTO "status" VALUES(61,11,16,'2015-06-02 13:11:02'); +INSERT INTO "status" VALUES(61,11,16,'2015-06-02 13:12:02'); +INSERT INTO "status" VALUES(61,11,16,'2015-06-02 13:13:03'); +INSERT INTO "status" VALUES(61,11,16,'2015-06-02 13:14:03'); +INSERT INTO "status" VALUES(61,11,16,'2015-06-02 13:15:02'); +INSERT INTO "status" VALUES(61,11,16,'2015-06-02 13:16:02'); +INSERT INTO "status" VALUES(61,11,16,'2015-06-02 13:17:02'); +INSERT INTO "status" VALUES(61,11,16,'2015-06-02 13:18:02'); +INSERT INTO "status" VALUES(61,10,17,'2015-06-02 13:19:02'); +INSERT INTO "status" VALUES(61,10,17,'2015-06-02 13:20:02'); +INSERT INTO "status" VALUES(61,10,17,'2015-06-02 13:21:02'); +INSERT INTO "status" VALUES(61,10,17,'2015-06-02 13:22:02'); +INSERT INTO "status" VALUES(61,9,18,'2015-06-02 13:23:02'); +INSERT INTO "status" VALUES(61,9,18,'2015-06-02 13:24:02'); +INSERT INTO "status" VALUES(61,9,18,'2015-06-02 13:25:02'); +INSERT INTO "status" VALUES(61,8,19,'2015-06-02 13:26:02'); +INSERT INTO "status" VALUES(61,8,19,'2015-06-02 13:27:02'); +INSERT INTO "status" VALUES(61,8,19,'2015-06-02 13:28:02'); +INSERT INTO "status" VALUES(61,6,21,'2015-06-02 13:29:02'); +INSERT INTO "status" VALUES(61,6,21,'2015-06-02 13:30:02'); +INSERT INTO "status" VALUES(61,6,21,'2015-06-02 13:31:02'); +INSERT INTO "status" VALUES(61,6,21,'2015-06-02 13:32:02'); +INSERT INTO "status" VALUES(61,6,21,'2015-06-02 13:33:02'); +INSERT INTO "status" VALUES(61,4,23,'2015-06-02 13:34:02'); +INSERT INTO "status" VALUES(61,4,23,'2015-06-02 13:35:02'); +INSERT INTO "status" VALUES(61,4,23,'2015-06-02 13:36:02'); +INSERT INTO "status" VALUES(61,3,24,'2015-06-02 13:37:02'); +INSERT INTO "status" VALUES(61,3,24,'2015-06-02 13:38:02'); +INSERT INTO "status" VALUES(61,3,24,'2015-06-02 13:39:02'); +INSERT INTO "status" VALUES(61,3,24,'2015-06-02 13:40:02'); +INSERT INTO "status" VALUES(61,3,24,'2015-06-02 13:41:03'); +INSERT INTO "status" VALUES(61,3,24,'2015-06-02 13:42:03'); +INSERT INTO "status" VALUES(61,3,24,'2015-06-02 13:43:03'); +INSERT INTO "status" VALUES(61,3,24,'2015-06-02 13:44:02'); +INSERT INTO "status" VALUES(61,3,24,'2015-06-02 13:45:03'); +INSERT INTO "status" VALUES(61,3,24,'2015-06-02 13:46:02'); +INSERT INTO "status" VALUES(61,2,25,'2015-06-02 13:47:02'); +INSERT INTO "status" VALUES(61,2,25,'2015-06-02 13:48:02'); +INSERT INTO "status" VALUES(61,2,25,'2015-06-02 13:49:02'); +INSERT INTO "status" VALUES(61,2,25,'2015-06-02 13:50:03'); +INSERT INTO "status" VALUES(61,2,25,'2015-06-02 13:51:02'); +INSERT INTO "status" VALUES(61,2,25,'2015-06-02 13:52:02'); +INSERT INTO "status" VALUES(61,2,25,'2015-06-02 13:53:02'); +INSERT INTO "status" VALUES(61,2,25,'2015-06-02 13:54:02'); +INSERT INTO "status" VALUES(61,2,25,'2015-06-02 13:55:03'); +INSERT INTO "status" VALUES(61,2,25,'2015-06-02 13:56:02'); +INSERT INTO "status" VALUES(61,2,25,'2015-06-02 13:57:02'); +INSERT INTO "status" VALUES(61,2,25,'2015-06-02 13:58:02'); +INSERT INTO "status" VALUES(61,2,25,'2015-06-02 13:59:02'); +INSERT INTO "status" VALUES(61,3,24,'2015-06-02 14:00:02'); +INSERT INTO "status" VALUES(61,3,24,'2015-06-02 14:01:02'); +INSERT INTO "status" VALUES(61,3,24,'2015-06-02 14:02:02'); +INSERT INTO "status" VALUES(61,3,24,'2015-06-02 14:03:02'); +INSERT INTO "status" VALUES(61,3,24,'2015-06-02 14:04:02'); +INSERT INTO "status" VALUES(61,3,24,'2015-06-02 14:05:02'); +INSERT INTO "status" VALUES(61,3,24,'2015-06-02 14:06:02'); +INSERT INTO "status" VALUES(61,3,24,'2015-06-02 14:07:02'); +INSERT INTO "status" VALUES(61,3,24,'2015-06-02 14:08:02'); +INSERT INTO "status" VALUES(61,3,24,'2015-06-02 14:09:02'); +INSERT INTO "status" VALUES(61,3,24,'2015-06-02 14:10:02'); +INSERT INTO "status" VALUES(61,3,24,'2015-06-02 14:11:02'); +INSERT INTO "status" VALUES(61,3,24,'2015-06-02 14:12:02'); +INSERT INTO "status" VALUES(61,3,24,'2015-06-02 14:13:02'); +INSERT INTO "status" VALUES(61,3,24,'2015-06-02 14:14:02'); +INSERT INTO "status" VALUES(61,3,24,'2015-06-02 14:15:02'); +INSERT INTO "status" VALUES(61,4,23,'2015-06-02 14:16:02'); +INSERT INTO "status" VALUES(61,4,23,'2015-06-02 14:17:02'); +INSERT INTO "status" VALUES(61,4,23,'2015-06-02 14:18:02'); +INSERT INTO "status" VALUES(61,4,23,'2015-06-02 14:19:02'); +INSERT INTO "status" VALUES(61,4,23,'2015-06-02 14:20:03'); +INSERT INTO "status" VALUES(61,4,23,'2015-06-02 14:21:02'); +INSERT INTO "status" VALUES(61,5,22,'2015-06-02 14:22:02'); +INSERT INTO "status" VALUES(61,5,22,'2015-06-02 14:23:03'); +INSERT INTO "status" VALUES(61,5,22,'2015-06-02 14:24:02'); +INSERT INTO "status" VALUES(61,5,22,'2015-06-02 14:25:01'); +INSERT INTO "status" VALUES(61,5,22,'2015-06-02 14:26:02'); +INSERT INTO "status" VALUES(61,5,22,'2015-06-02 14:27:02'); +INSERT INTO "status" VALUES(61,5,22,'2015-06-02 14:28:02'); +INSERT INTO "status" VALUES(61,5,22,'2015-06-02 14:29:02'); +INSERT INTO "status" VALUES(61,6,21,'2015-06-02 14:30:02'); +INSERT INTO "status" VALUES(61,8,19,'2015-06-02 14:31:02'); +INSERT INTO "status" VALUES(61,8,19,'2015-06-02 14:32:02'); +INSERT INTO "status" VALUES(61,8,19,'2015-06-02 14:33:02'); +INSERT INTO "status" VALUES(61,7,20,'2015-06-02 14:34:02'); +INSERT INTO "status" VALUES(61,7,20,'2015-06-02 14:35:02'); +INSERT INTO "status" VALUES(61,7,20,'2015-06-02 14:36:02'); +INSERT INTO "status" VALUES(61,7,20,'2015-06-02 14:37:02'); +INSERT INTO "status" VALUES(61,7,20,'2015-06-02 14:38:02'); +INSERT INTO "status" VALUES(61,7,20,'2015-06-02 14:39:02'); +INSERT INTO "status" VALUES(61,7,20,'2015-06-02 14:40:02'); +INSERT INTO "status" VALUES(61,7,20,'2015-06-02 14:41:02'); +INSERT INTO "status" VALUES(61,7,20,'2015-06-02 14:42:02'); +INSERT INTO "status" VALUES(61,7,20,'2015-06-02 14:43:02'); +INSERT INTO "status" VALUES(61,8,19,'2015-06-02 14:44:02'); +INSERT INTO "status" VALUES(61,8,19,'2015-06-02 14:45:02'); +INSERT INTO "status" VALUES(61,9,18,'2015-06-02 14:46:02'); +INSERT INTO "status" VALUES(61,9,18,'2015-06-02 14:47:02'); +INSERT INTO "status" VALUES(61,9,18,'2015-06-02 14:48:02'); +INSERT INTO "status" VALUES(62,12,7,'2015-06-02 12:46:02'); +INSERT INTO "status" VALUES(62,12,7,'2015-06-02 12:47:02'); +INSERT INTO "status" VALUES(62,12,7,'2015-06-02 12:48:02'); +INSERT INTO "status" VALUES(62,12,7,'2015-06-02 12:49:02'); +INSERT INTO "status" VALUES(62,12,7,'2015-06-02 12:50:02'); +INSERT INTO "status" VALUES(62,12,7,'2015-06-02 12:51:02'); +INSERT INTO "status" VALUES(62,12,7,'2015-06-02 12:52:02'); +INSERT INTO "status" VALUES(62,12,7,'2015-06-02 12:53:03'); +INSERT INTO "status" VALUES(62,12,7,'2015-06-02 12:54:02'); +INSERT INTO "status" VALUES(62,12,7,'2015-06-02 12:55:02'); +INSERT INTO "status" VALUES(62,12,7,'2015-06-02 12:56:01'); +INSERT INTO "status" VALUES(62,12,7,'2015-06-02 12:57:02'); +INSERT INTO "status" VALUES(62,12,7,'2015-06-02 12:58:02'); +INSERT INTO "status" VALUES(62,12,7,'2015-06-02 12:59:02'); +INSERT INTO "status" VALUES(62,12,7,'2015-06-02 13:00:01'); +INSERT INTO "status" VALUES(62,12,7,'2015-06-02 13:01:03'); +INSERT INTO "status" VALUES(62,12,7,'2015-06-02 13:02:02'); +INSERT INTO "status" VALUES(62,12,7,'2015-06-02 13:03:02'); +INSERT INTO "status" VALUES(62,12,7,'2015-06-02 13:04:02'); +INSERT INTO "status" VALUES(62,12,7,'2015-06-02 13:05:03'); +INSERT INTO "status" VALUES(62,12,7,'2015-06-02 13:06:02'); +INSERT INTO "status" VALUES(62,12,7,'2015-06-02 13:07:02'); +INSERT INTO "status" VALUES(62,12,7,'2015-06-02 13:08:02'); +INSERT INTO "status" VALUES(62,12,7,'2015-06-02 13:09:02'); +INSERT INTO "status" VALUES(62,12,7,'2015-06-02 13:10:02'); +INSERT INTO "status" VALUES(62,12,7,'2015-06-02 13:11:02'); +INSERT INTO "status" VALUES(62,12,7,'2015-06-02 13:12:02'); +INSERT INTO "status" VALUES(62,12,7,'2015-06-02 13:13:03'); +INSERT INTO "status" VALUES(62,12,7,'2015-06-02 13:14:03'); +INSERT INTO "status" VALUES(62,12,7,'2015-06-02 13:15:02'); +INSERT INTO "status" VALUES(62,12,7,'2015-06-02 13:16:02'); +INSERT INTO "status" VALUES(62,12,7,'2015-06-02 13:17:02'); +INSERT INTO "status" VALUES(62,11,8,'2015-06-02 13:18:02'); +INSERT INTO "status" VALUES(62,11,8,'2015-06-02 13:19:02'); +INSERT INTO "status" VALUES(62,11,8,'2015-06-02 13:20:02'); +INSERT INTO "status" VALUES(62,11,8,'2015-06-02 13:21:02'); +INSERT INTO "status" VALUES(62,11,8,'2015-06-02 13:22:02'); +INSERT INTO "status" VALUES(62,11,8,'2015-06-02 13:23:02'); +INSERT INTO "status" VALUES(62,11,8,'2015-06-02 13:24:02'); +INSERT INTO "status" VALUES(62,11,8,'2015-06-02 13:25:02'); +INSERT INTO "status" VALUES(62,11,8,'2015-06-02 13:26:02'); +INSERT INTO "status" VALUES(62,11,8,'2015-06-02 13:27:02'); +INSERT INTO "status" VALUES(62,11,8,'2015-06-02 13:28:02'); +INSERT INTO "status" VALUES(62,11,8,'2015-06-02 13:29:02'); +INSERT INTO "status" VALUES(62,11,8,'2015-06-02 13:30:02'); +INSERT INTO "status" VALUES(62,11,8,'2015-06-02 13:31:02'); +INSERT INTO "status" VALUES(62,11,8,'2015-06-02 13:32:02'); +INSERT INTO "status" VALUES(62,11,8,'2015-06-02 13:33:02'); +INSERT INTO "status" VALUES(62,11,8,'2015-06-02 13:34:02'); +INSERT INTO "status" VALUES(62,11,8,'2015-06-02 13:35:02'); +INSERT INTO "status" VALUES(62,11,8,'2015-06-02 13:36:02'); +INSERT INTO "status" VALUES(62,11,8,'2015-06-02 13:37:02'); +INSERT INTO "status" VALUES(62,11,8,'2015-06-02 13:38:02'); +INSERT INTO "status" VALUES(62,11,8,'2015-06-02 13:39:02'); +INSERT INTO "status" VALUES(62,11,8,'2015-06-02 13:40:02'); +INSERT INTO "status" VALUES(62,11,8,'2015-06-02 13:41:03'); +INSERT INTO "status" VALUES(62,11,8,'2015-06-02 13:42:03'); +INSERT INTO "status" VALUES(62,11,8,'2015-06-02 13:43:03'); +INSERT INTO "status" VALUES(62,11,8,'2015-06-02 13:44:02'); +INSERT INTO "status" VALUES(62,11,8,'2015-06-02 13:45:03'); +INSERT INTO "status" VALUES(62,11,8,'2015-06-02 13:46:02'); +INSERT INTO "status" VALUES(62,11,8,'2015-06-02 13:47:02'); +INSERT INTO "status" VALUES(62,11,8,'2015-06-02 13:48:02'); +INSERT INTO "status" VALUES(62,11,8,'2015-06-02 13:49:02'); +INSERT INTO "status" VALUES(62,11,8,'2015-06-02 13:50:03'); +INSERT INTO "status" VALUES(62,11,8,'2015-06-02 13:51:02'); +INSERT INTO "status" VALUES(62,11,8,'2015-06-02 13:52:02'); +INSERT INTO "status" VALUES(62,11,8,'2015-06-02 13:53:02'); +INSERT INTO "status" VALUES(62,10,9,'2015-06-02 13:54:02'); +INSERT INTO "status" VALUES(62,11,8,'2015-06-02 13:55:03'); +INSERT INTO "status" VALUES(62,11,8,'2015-06-02 13:56:02'); +INSERT INTO "status" VALUES(62,11,8,'2015-06-02 13:57:02'); +INSERT INTO "status" VALUES(62,11,8,'2015-06-02 13:58:02'); +INSERT INTO "status" VALUES(62,11,8,'2015-06-02 13:59:02'); +INSERT INTO "status" VALUES(62,11,8,'2015-06-02 14:00:02'); +INSERT INTO "status" VALUES(62,10,9,'2015-06-02 14:01:02'); +INSERT INTO "status" VALUES(62,10,9,'2015-06-02 14:02:02'); +INSERT INTO "status" VALUES(62,9,10,'2015-06-02 14:03:02'); +INSERT INTO "status" VALUES(62,9,10,'2015-06-02 14:04:02'); +INSERT INTO "status" VALUES(62,9,10,'2015-06-02 14:05:02'); +INSERT INTO "status" VALUES(62,9,10,'2015-06-02 14:06:02'); +INSERT INTO "status" VALUES(62,9,10,'2015-06-02 14:07:02'); +INSERT INTO "status" VALUES(62,9,10,'2015-06-02 14:08:02'); +INSERT INTO "status" VALUES(62,9,10,'2015-06-02 14:09:02'); +INSERT INTO "status" VALUES(62,9,10,'2015-06-02 14:10:02'); +INSERT INTO "status" VALUES(62,9,10,'2015-06-02 14:11:02'); +INSERT INTO "status" VALUES(62,9,10,'2015-06-02 14:12:02'); +INSERT INTO "status" VALUES(62,9,10,'2015-06-02 14:13:02'); +INSERT INTO "status" VALUES(62,9,10,'2015-06-02 14:14:02'); +INSERT INTO "status" VALUES(62,9,10,'2015-06-02 14:15:02'); +INSERT INTO "status" VALUES(62,9,10,'2015-06-02 14:16:02'); +INSERT INTO "status" VALUES(62,9,10,'2015-06-02 14:17:02'); +INSERT INTO "status" VALUES(62,9,10,'2015-06-02 14:18:02'); +INSERT INTO "status" VALUES(62,9,10,'2015-06-02 14:19:02'); +INSERT INTO "status" VALUES(62,9,10,'2015-06-02 14:20:03'); +INSERT INTO "status" VALUES(62,9,10,'2015-06-02 14:21:02'); +INSERT INTO "status" VALUES(62,9,10,'2015-06-02 14:22:02'); +INSERT INTO "status" VALUES(62,9,10,'2015-06-02 14:23:03'); +INSERT INTO "status" VALUES(62,9,10,'2015-06-02 14:24:02'); +INSERT INTO "status" VALUES(62,9,10,'2015-06-02 14:25:01'); +INSERT INTO "status" VALUES(62,9,10,'2015-06-02 14:26:02'); +INSERT INTO "status" VALUES(62,9,10,'2015-06-02 14:27:02'); +INSERT INTO "status" VALUES(62,9,10,'2015-06-02 14:28:02'); +INSERT INTO "status" VALUES(62,9,10,'2015-06-02 14:29:02'); +INSERT INTO "status" VALUES(62,10,9,'2015-06-02 14:30:02'); +INSERT INTO "status" VALUES(62,10,9,'2015-06-02 14:31:02'); +INSERT INTO "status" VALUES(62,10,9,'2015-06-02 14:32:02'); +INSERT INTO "status" VALUES(62,10,9,'2015-06-02 14:33:02'); +INSERT INTO "status" VALUES(62,10,9,'2015-06-02 14:34:02'); +INSERT INTO "status" VALUES(62,10,9,'2015-06-02 14:35:02'); +INSERT INTO "status" VALUES(62,10,9,'2015-06-02 14:36:02'); +INSERT INTO "status" VALUES(62,10,9,'2015-06-02 14:37:02'); +INSERT INTO "status" VALUES(62,10,9,'2015-06-02 14:38:02'); +INSERT INTO "status" VALUES(62,10,9,'2015-06-02 14:39:02'); +INSERT INTO "status" VALUES(62,10,9,'2015-06-02 14:40:02'); +INSERT INTO "status" VALUES(62,10,9,'2015-06-02 14:41:02'); +INSERT INTO "status" VALUES(62,10,9,'2015-06-02 14:42:02'); +INSERT INTO "status" VALUES(62,10,9,'2015-06-02 14:43:02'); +INSERT INTO "status" VALUES(62,10,9,'2015-06-02 14:44:02'); +INSERT INTO "status" VALUES(62,10,9,'2015-06-02 14:45:02'); +INSERT INTO "status" VALUES(62,10,9,'2015-06-02 14:46:02'); +INSERT INTO "status" VALUES(62,10,9,'2015-06-02 14:47:02'); +INSERT INTO "status" VALUES(62,10,9,'2015-06-02 14:48:02'); +INSERT INTO "status" VALUES(63,9,10,'2015-06-02 12:46:02'); +INSERT INTO "status" VALUES(63,9,10,'2015-06-02 12:47:02'); +INSERT INTO "status" VALUES(63,9,10,'2015-06-02 12:48:02'); +INSERT INTO "status" VALUES(63,9,10,'2015-06-02 12:49:02'); +INSERT INTO "status" VALUES(63,9,10,'2015-06-02 12:50:02'); +INSERT INTO "status" VALUES(63,9,10,'2015-06-02 12:51:02'); +INSERT INTO "status" VALUES(63,9,10,'2015-06-02 12:52:02'); +INSERT INTO "status" VALUES(63,9,10,'2015-06-02 12:53:03'); +INSERT INTO "status" VALUES(63,9,10,'2015-06-02 12:54:02'); +INSERT INTO "status" VALUES(63,9,10,'2015-06-02 12:55:02'); +INSERT INTO "status" VALUES(63,9,10,'2015-06-02 12:56:01'); +INSERT INTO "status" VALUES(63,9,10,'2015-06-02 12:57:02'); +INSERT INTO "status" VALUES(63,9,10,'2015-06-02 12:58:02'); +INSERT INTO "status" VALUES(63,9,10,'2015-06-02 12:59:02'); +INSERT INTO "status" VALUES(63,9,10,'2015-06-02 13:00:01'); +INSERT INTO "status" VALUES(63,9,10,'2015-06-02 13:01:03'); +INSERT INTO "status" VALUES(63,9,10,'2015-06-02 13:02:02'); +INSERT INTO "status" VALUES(63,9,10,'2015-06-02 13:03:02'); +INSERT INTO "status" VALUES(63,9,10,'2015-06-02 13:04:02'); +INSERT INTO "status" VALUES(63,9,10,'2015-06-02 13:05:03'); +INSERT INTO "status" VALUES(63,9,10,'2015-06-02 13:06:02'); +INSERT INTO "status" VALUES(63,9,10,'2015-06-02 13:07:02'); +INSERT INTO "status" VALUES(63,9,10,'2015-06-02 13:08:02'); +INSERT INTO "status" VALUES(63,9,10,'2015-06-02 13:09:02'); +INSERT INTO "status" VALUES(63,9,10,'2015-06-02 13:10:02'); +INSERT INTO "status" VALUES(63,9,10,'2015-06-02 13:11:02'); +INSERT INTO "status" VALUES(63,9,10,'2015-06-02 13:12:02'); +INSERT INTO "status" VALUES(63,9,10,'2015-06-02 13:13:03'); +INSERT INTO "status" VALUES(63,9,10,'2015-06-02 13:14:03'); +INSERT INTO "status" VALUES(63,9,10,'2015-06-02 13:15:02'); +INSERT INTO "status" VALUES(63,9,10,'2015-06-02 13:16:02'); +INSERT INTO "status" VALUES(63,9,10,'2015-06-02 13:17:02'); +INSERT INTO "status" VALUES(63,9,10,'2015-06-02 13:18:02'); +INSERT INTO "status" VALUES(63,9,10,'2015-06-02 13:19:02'); +INSERT INTO "status" VALUES(63,9,10,'2015-06-02 13:20:02'); +INSERT INTO "status" VALUES(63,9,10,'2015-06-02 13:21:02'); +INSERT INTO "status" VALUES(63,9,10,'2015-06-02 13:22:02'); +INSERT INTO "status" VALUES(63,9,10,'2015-06-02 13:23:02'); +INSERT INTO "status" VALUES(63,9,10,'2015-06-02 13:24:02'); +INSERT INTO "status" VALUES(63,9,10,'2015-06-02 13:25:02'); +INSERT INTO "status" VALUES(63,9,10,'2015-06-02 13:26:02'); +INSERT INTO "status" VALUES(63,9,10,'2015-06-02 13:27:02'); +INSERT INTO "status" VALUES(63,9,10,'2015-06-02 13:28:02'); +INSERT INTO "status" VALUES(63,9,10,'2015-06-02 13:29:02'); +INSERT INTO "status" VALUES(63,9,10,'2015-06-02 13:30:02'); +INSERT INTO "status" VALUES(63,9,10,'2015-06-02 13:31:02'); +INSERT INTO "status" VALUES(63,9,10,'2015-06-02 13:32:02'); +INSERT INTO "status" VALUES(63,9,10,'2015-06-02 13:33:02'); +INSERT INTO "status" VALUES(63,9,10,'2015-06-02 13:34:02'); +INSERT INTO "status" VALUES(63,10,9,'2015-06-02 13:35:02'); +INSERT INTO "status" VALUES(63,10,9,'2015-06-02 13:36:02'); +INSERT INTO "status" VALUES(63,10,9,'2015-06-02 13:37:02'); +INSERT INTO "status" VALUES(63,10,9,'2015-06-02 13:38:02'); +INSERT INTO "status" VALUES(63,10,9,'2015-06-02 13:39:02'); +INSERT INTO "status" VALUES(63,10,9,'2015-06-02 13:40:02'); +INSERT INTO "status" VALUES(63,10,9,'2015-06-02 13:41:03'); +INSERT INTO "status" VALUES(63,10,9,'2015-06-02 13:42:03'); +INSERT INTO "status" VALUES(63,10,9,'2015-06-02 13:43:03'); +INSERT INTO "status" VALUES(63,10,9,'2015-06-02 13:44:02'); +INSERT INTO "status" VALUES(63,10,9,'2015-06-02 13:45:03'); +INSERT INTO "status" VALUES(63,10,9,'2015-06-02 13:46:02'); +INSERT INTO "status" VALUES(63,10,9,'2015-06-02 13:47:02'); +INSERT INTO "status" VALUES(63,10,9,'2015-06-02 13:48:02'); +INSERT INTO "status" VALUES(63,10,9,'2015-06-02 13:49:02'); +INSERT INTO "status" VALUES(63,10,9,'2015-06-02 13:50:03'); +INSERT INTO "status" VALUES(63,10,9,'2015-06-02 13:51:02'); +INSERT INTO "status" VALUES(63,10,9,'2015-06-02 13:52:02'); +INSERT INTO "status" VALUES(63,9,10,'2015-06-02 13:53:02'); +INSERT INTO "status" VALUES(63,9,10,'2015-06-02 13:54:02'); +INSERT INTO "status" VALUES(63,9,10,'2015-06-02 13:55:03'); +INSERT INTO "status" VALUES(63,9,10,'2015-06-02 13:56:02'); +INSERT INTO "status" VALUES(63,9,10,'2015-06-02 13:57:02'); +INSERT INTO "status" VALUES(63,9,10,'2015-06-02 13:58:02'); +INSERT INTO "status" VALUES(63,9,10,'2015-06-02 13:59:02'); +INSERT INTO "status" VALUES(63,9,10,'2015-06-02 14:00:02'); +INSERT INTO "status" VALUES(63,9,10,'2015-06-02 14:01:02'); +INSERT INTO "status" VALUES(63,9,10,'2015-06-02 14:02:02'); +INSERT INTO "status" VALUES(63,10,9,'2015-06-02 14:03:02'); +INSERT INTO "status" VALUES(63,10,9,'2015-06-02 14:04:02'); +INSERT INTO "status" VALUES(63,10,9,'2015-06-02 14:05:02'); +INSERT INTO "status" VALUES(63,10,9,'2015-06-02 14:06:02'); +INSERT INTO "status" VALUES(63,11,8,'2015-06-02 14:07:02'); +INSERT INTO "status" VALUES(63,11,8,'2015-06-02 14:08:02'); +INSERT INTO "status" VALUES(63,11,8,'2015-06-02 14:09:02'); +INSERT INTO "status" VALUES(63,11,8,'2015-06-02 14:10:02'); +INSERT INTO "status" VALUES(63,11,8,'2015-06-02 14:11:02'); +INSERT INTO "status" VALUES(63,11,8,'2015-06-02 14:12:02'); +INSERT INTO "status" VALUES(63,11,8,'2015-06-02 14:13:02'); +INSERT INTO "status" VALUES(63,11,8,'2015-06-02 14:14:02'); +INSERT INTO "status" VALUES(63,11,8,'2015-06-02 14:15:02'); +INSERT INTO "status" VALUES(63,11,8,'2015-06-02 14:16:02'); +INSERT INTO "status" VALUES(63,11,8,'2015-06-02 14:17:02'); +INSERT INTO "status" VALUES(63,11,8,'2015-06-02 14:18:02'); +INSERT INTO "status" VALUES(63,11,8,'2015-06-02 14:19:02'); +INSERT INTO "status" VALUES(63,11,8,'2015-06-02 14:20:03'); +INSERT INTO "status" VALUES(63,11,8,'2015-06-02 14:21:02'); +INSERT INTO "status" VALUES(63,11,8,'2015-06-02 14:22:02'); +INSERT INTO "status" VALUES(63,11,8,'2015-06-02 14:23:03'); +INSERT INTO "status" VALUES(63,11,8,'2015-06-02 14:24:02'); +INSERT INTO "status" VALUES(63,11,8,'2015-06-02 14:25:01'); +INSERT INTO "status" VALUES(63,11,8,'2015-06-02 14:26:02'); +INSERT INTO "status" VALUES(63,11,8,'2015-06-02 14:27:02'); +INSERT INTO "status" VALUES(63,11,8,'2015-06-02 14:28:02'); +INSERT INTO "status" VALUES(63,11,8,'2015-06-02 14:29:02'); +INSERT INTO "status" VALUES(63,11,8,'2015-06-02 14:30:02'); +INSERT INTO "status" VALUES(63,11,8,'2015-06-02 14:31:02'); +INSERT INTO "status" VALUES(63,11,8,'2015-06-02 14:32:02'); +INSERT INTO "status" VALUES(63,11,8,'2015-06-02 14:33:02'); +INSERT INTO "status" VALUES(63,11,8,'2015-06-02 14:34:02'); +INSERT INTO "status" VALUES(63,11,8,'2015-06-02 14:35:02'); +INSERT INTO "status" VALUES(63,11,8,'2015-06-02 14:36:02'); +INSERT INTO "status" VALUES(63,11,8,'2015-06-02 14:37:02'); +INSERT INTO "status" VALUES(63,11,8,'2015-06-02 14:38:02'); +INSERT INTO "status" VALUES(63,11,8,'2015-06-02 14:39:02'); +INSERT INTO "status" VALUES(63,11,8,'2015-06-02 14:40:02'); +INSERT INTO "status" VALUES(63,11,8,'2015-06-02 14:41:02'); +INSERT INTO "status" VALUES(63,11,8,'2015-06-02 14:42:02'); +INSERT INTO "status" VALUES(63,11,8,'2015-06-02 14:43:02'); +INSERT INTO "status" VALUES(63,11,8,'2015-06-02 14:44:02'); +INSERT INTO "status" VALUES(63,11,8,'2015-06-02 14:45:02'); +INSERT INTO "status" VALUES(63,11,8,'2015-06-02 14:46:02'); +INSERT INTO "status" VALUES(63,11,8,'2015-06-02 14:47:02'); +INSERT INTO "status" VALUES(63,11,8,'2015-06-02 14:48:02'); +INSERT INTO "status" VALUES(64,7,8,'2015-06-02 12:46:02'); +INSERT INTO "status" VALUES(64,7,8,'2015-06-02 12:47:02'); +INSERT INTO "status" VALUES(64,7,8,'2015-06-02 12:48:02'); +INSERT INTO "status" VALUES(64,7,8,'2015-06-02 12:49:02'); +INSERT INTO "status" VALUES(64,8,7,'2015-06-02 12:50:02'); +INSERT INTO "status" VALUES(64,8,7,'2015-06-02 12:51:02'); +INSERT INTO "status" VALUES(64,8,7,'2015-06-02 12:52:02'); +INSERT INTO "status" VALUES(64,8,7,'2015-06-02 12:53:03'); +INSERT INTO "status" VALUES(64,8,7,'2015-06-02 12:54:02'); +INSERT INTO "status" VALUES(64,9,6,'2015-06-02 12:55:02'); +INSERT INTO "status" VALUES(64,9,6,'2015-06-02 12:56:01'); +INSERT INTO "status" VALUES(64,9,6,'2015-06-02 12:57:02'); +INSERT INTO "status" VALUES(64,9,6,'2015-06-02 12:58:02'); +INSERT INTO "status" VALUES(64,9,6,'2015-06-02 12:59:02'); +INSERT INTO "status" VALUES(64,9,6,'2015-06-02 13:00:01'); +INSERT INTO "status" VALUES(64,9,6,'2015-06-02 13:01:03'); +INSERT INTO "status" VALUES(64,9,6,'2015-06-02 13:02:02'); +INSERT INTO "status" VALUES(64,10,5,'2015-06-02 13:03:02'); +INSERT INTO "status" VALUES(64,10,5,'2015-06-02 13:04:02'); +INSERT INTO "status" VALUES(64,10,5,'2015-06-02 13:05:03'); +INSERT INTO "status" VALUES(64,10,5,'2015-06-02 13:06:02'); +INSERT INTO "status" VALUES(64,10,5,'2015-06-02 13:07:02'); +INSERT INTO "status" VALUES(64,10,5,'2015-06-02 13:08:02'); +INSERT INTO "status" VALUES(64,10,5,'2015-06-02 13:09:02'); +INSERT INTO "status" VALUES(64,10,5,'2015-06-02 13:10:02'); +INSERT INTO "status" VALUES(64,10,5,'2015-06-02 13:11:02'); +INSERT INTO "status" VALUES(64,10,5,'2015-06-02 13:12:02'); +INSERT INTO "status" VALUES(64,10,5,'2015-06-02 13:13:03'); +INSERT INTO "status" VALUES(64,10,5,'2015-06-02 13:14:03'); +INSERT INTO "status" VALUES(64,10,5,'2015-06-02 13:15:02'); +INSERT INTO "status" VALUES(64,10,5,'2015-06-02 13:16:02'); +INSERT INTO "status" VALUES(64,10,5,'2015-06-02 13:17:02'); +INSERT INTO "status" VALUES(64,10,5,'2015-06-02 13:18:02'); +INSERT INTO "status" VALUES(64,10,5,'2015-06-02 13:19:02'); +INSERT INTO "status" VALUES(64,10,5,'2015-06-02 13:20:02'); +INSERT INTO "status" VALUES(64,10,5,'2015-06-02 13:21:02'); +INSERT INTO "status" VALUES(64,10,5,'2015-06-02 13:22:02'); +INSERT INTO "status" VALUES(64,10,5,'2015-06-02 13:23:02'); +INSERT INTO "status" VALUES(64,10,5,'2015-06-02 13:24:02'); +INSERT INTO "status" VALUES(64,10,5,'2015-06-02 13:25:02'); +INSERT INTO "status" VALUES(64,10,5,'2015-06-02 13:26:02'); +INSERT INTO "status" VALUES(64,10,5,'2015-06-02 13:27:02'); +INSERT INTO "status" VALUES(64,10,5,'2015-06-02 13:28:02'); +INSERT INTO "status" VALUES(64,10,5,'2015-06-02 13:29:02'); +INSERT INTO "status" VALUES(64,10,5,'2015-06-02 13:30:02'); +INSERT INTO "status" VALUES(64,10,5,'2015-06-02 13:31:02'); +INSERT INTO "status" VALUES(64,10,5,'2015-06-02 13:32:02'); +INSERT INTO "status" VALUES(64,10,5,'2015-06-02 13:33:02'); +INSERT INTO "status" VALUES(64,10,5,'2015-06-02 13:34:02'); +INSERT INTO "status" VALUES(64,10,5,'2015-06-02 13:35:02'); +INSERT INTO "status" VALUES(64,10,5,'2015-06-02 13:36:02'); +INSERT INTO "status" VALUES(64,10,5,'2015-06-02 13:37:02'); +INSERT INTO "status" VALUES(64,10,5,'2015-06-02 13:38:02'); +INSERT INTO "status" VALUES(64,10,5,'2015-06-02 13:39:02'); +INSERT INTO "status" VALUES(64,10,5,'2015-06-02 13:40:02'); +INSERT INTO "status" VALUES(64,10,5,'2015-06-02 13:41:03'); +INSERT INTO "status" VALUES(64,10,5,'2015-06-02 13:42:03'); +INSERT INTO "status" VALUES(64,10,5,'2015-06-02 13:43:03'); +INSERT INTO "status" VALUES(64,10,5,'2015-06-02 13:44:02'); +INSERT INTO "status" VALUES(64,10,5,'2015-06-02 13:45:03'); +INSERT INTO "status" VALUES(64,10,5,'2015-06-02 13:46:02'); +INSERT INTO "status" VALUES(64,10,5,'2015-06-02 13:47:02'); +INSERT INTO "status" VALUES(64,10,5,'2015-06-02 13:48:02'); +INSERT INTO "status" VALUES(64,10,5,'2015-06-02 13:49:02'); +INSERT INTO "status" VALUES(64,10,5,'2015-06-02 13:50:03'); +INSERT INTO "status" VALUES(64,10,5,'2015-06-02 13:51:02'); +INSERT INTO "status" VALUES(64,10,5,'2015-06-02 13:52:02'); +INSERT INTO "status" VALUES(64,10,5,'2015-06-02 13:53:02'); +INSERT INTO "status" VALUES(64,10,5,'2015-06-02 13:54:02'); +INSERT INTO "status" VALUES(64,10,5,'2015-06-02 13:55:03'); +INSERT INTO "status" VALUES(64,10,5,'2015-06-02 13:56:02'); +INSERT INTO "status" VALUES(64,10,5,'2015-06-02 13:57:02'); +INSERT INTO "status" VALUES(64,10,5,'2015-06-02 13:58:02'); +INSERT INTO "status" VALUES(64,10,5,'2015-06-02 13:59:02'); +INSERT INTO "status" VALUES(64,11,4,'2015-06-02 14:00:02'); +INSERT INTO "status" VALUES(64,11,4,'2015-06-02 14:01:02'); +INSERT INTO "status" VALUES(64,11,4,'2015-06-02 14:02:02'); +INSERT INTO "status" VALUES(64,11,4,'2015-06-02 14:03:02'); +INSERT INTO "status" VALUES(64,11,4,'2015-06-02 14:04:02'); +INSERT INTO "status" VALUES(64,11,4,'2015-06-02 14:05:02'); +INSERT INTO "status" VALUES(64,11,4,'2015-06-02 14:06:02'); +INSERT INTO "status" VALUES(64,11,4,'2015-06-02 14:07:02'); +INSERT INTO "status" VALUES(64,11,4,'2015-06-02 14:08:02'); +INSERT INTO "status" VALUES(64,11,4,'2015-06-02 14:09:02'); +INSERT INTO "status" VALUES(64,11,4,'2015-06-02 14:10:02'); +INSERT INTO "status" VALUES(64,11,4,'2015-06-02 14:11:02'); +INSERT INTO "status" VALUES(64,11,4,'2015-06-02 14:12:02'); +INSERT INTO "status" VALUES(64,11,4,'2015-06-02 14:13:02'); +INSERT INTO "status" VALUES(64,11,4,'2015-06-02 14:14:02'); +INSERT INTO "status" VALUES(64,11,4,'2015-06-02 14:15:02'); +INSERT INTO "status" VALUES(64,11,4,'2015-06-02 14:16:02'); +INSERT INTO "status" VALUES(64,11,4,'2015-06-02 14:17:02'); +INSERT INTO "status" VALUES(64,11,4,'2015-06-02 14:18:02'); +INSERT INTO "status" VALUES(64,11,4,'2015-06-02 14:19:02'); +INSERT INTO "status" VALUES(64,11,4,'2015-06-02 14:20:03'); +INSERT INTO "status" VALUES(64,11,4,'2015-06-02 14:21:02'); +INSERT INTO "status" VALUES(64,11,4,'2015-06-02 14:22:02'); +INSERT INTO "status" VALUES(64,11,4,'2015-06-02 14:23:03'); +INSERT INTO "status" VALUES(64,11,4,'2015-06-02 14:24:02'); +INSERT INTO "status" VALUES(64,11,4,'2015-06-02 14:25:01'); +INSERT INTO "status" VALUES(64,11,4,'2015-06-02 14:26:02'); +INSERT INTO "status" VALUES(64,11,4,'2015-06-02 14:27:02'); +INSERT INTO "status" VALUES(64,11,4,'2015-06-02 14:28:02'); +INSERT INTO "status" VALUES(64,11,4,'2015-06-02 14:29:02'); +INSERT INTO "status" VALUES(64,11,4,'2015-06-02 14:30:02'); +INSERT INTO "status" VALUES(64,11,4,'2015-06-02 14:31:02'); +INSERT INTO "status" VALUES(64,11,4,'2015-06-02 14:32:02'); +INSERT INTO "status" VALUES(64,11,4,'2015-06-02 14:33:02'); +INSERT INTO "status" VALUES(64,11,4,'2015-06-02 14:34:02'); +INSERT INTO "status" VALUES(64,11,4,'2015-06-02 14:35:02'); +INSERT INTO "status" VALUES(64,11,4,'2015-06-02 14:36:02'); +INSERT INTO "status" VALUES(64,11,4,'2015-06-02 14:37:02'); +INSERT INTO "status" VALUES(64,11,4,'2015-06-02 14:38:02'); +INSERT INTO "status" VALUES(64,11,4,'2015-06-02 14:39:02'); +INSERT INTO "status" VALUES(64,11,4,'2015-06-02 14:40:02'); +INSERT INTO "status" VALUES(64,11,4,'2015-06-02 14:41:02'); +INSERT INTO "status" VALUES(64,11,4,'2015-06-02 14:42:02'); +INSERT INTO "status" VALUES(64,11,4,'2015-06-02 14:43:02'); +INSERT INTO "status" VALUES(64,11,4,'2015-06-02 14:44:02'); +INSERT INTO "status" VALUES(64,11,4,'2015-06-02 14:45:02'); +INSERT INTO "status" VALUES(64,11,4,'2015-06-02 14:46:02'); +INSERT INTO "status" VALUES(64,11,4,'2015-06-02 14:47:02'); +INSERT INTO "status" VALUES(64,11,4,'2015-06-02 14:48:02'); +INSERT INTO "status" VALUES(65,12,3,'2015-06-02 12:46:02'); +INSERT INTO "status" VALUES(65,11,4,'2015-06-02 12:47:02'); +INSERT INTO "status" VALUES(65,11,4,'2015-06-02 12:48:02'); +INSERT INTO "status" VALUES(65,11,4,'2015-06-02 12:49:02'); +INSERT INTO "status" VALUES(65,11,4,'2015-06-02 12:50:02'); +INSERT INTO "status" VALUES(65,11,4,'2015-06-02 12:51:02'); +INSERT INTO "status" VALUES(65,11,4,'2015-06-02 12:52:02'); +INSERT INTO "status" VALUES(65,11,4,'2015-06-02 12:53:03'); +INSERT INTO "status" VALUES(65,11,4,'2015-06-02 12:54:02'); +INSERT INTO "status" VALUES(65,11,4,'2015-06-02 12:55:02'); +INSERT INTO "status" VALUES(65,11,4,'2015-06-02 12:56:01'); +INSERT INTO "status" VALUES(65,11,4,'2015-06-02 12:57:02'); +INSERT INTO "status" VALUES(65,11,4,'2015-06-02 12:58:02'); +INSERT INTO "status" VALUES(65,11,4,'2015-06-02 12:59:02'); +INSERT INTO "status" VALUES(65,11,4,'2015-06-02 13:00:01'); +INSERT INTO "status" VALUES(65,11,4,'2015-06-02 13:01:03'); +INSERT INTO "status" VALUES(65,11,4,'2015-06-02 13:02:02'); +INSERT INTO "status" VALUES(65,11,4,'2015-06-02 13:03:02'); +INSERT INTO "status" VALUES(65,11,4,'2015-06-02 13:04:02'); +INSERT INTO "status" VALUES(65,11,4,'2015-06-02 13:05:03'); +INSERT INTO "status" VALUES(65,11,4,'2015-06-02 13:06:02'); +INSERT INTO "status" VALUES(65,11,4,'2015-06-02 13:07:02'); +INSERT INTO "status" VALUES(65,11,4,'2015-06-02 13:08:02'); +INSERT INTO "status" VALUES(65,11,4,'2015-06-02 13:09:02'); +INSERT INTO "status" VALUES(65,11,4,'2015-06-02 13:10:02'); +INSERT INTO "status" VALUES(65,11,4,'2015-06-02 13:11:02'); +INSERT INTO "status" VALUES(65,11,4,'2015-06-02 13:12:02'); +INSERT INTO "status" VALUES(65,11,4,'2015-06-02 13:13:03'); +INSERT INTO "status" VALUES(65,11,4,'2015-06-02 13:14:03'); +INSERT INTO "status" VALUES(65,11,4,'2015-06-02 13:15:02'); +INSERT INTO "status" VALUES(65,11,4,'2015-06-02 13:16:02'); +INSERT INTO "status" VALUES(65,11,4,'2015-06-02 13:17:02'); +INSERT INTO "status" VALUES(65,12,3,'2015-06-02 13:18:02'); +INSERT INTO "status" VALUES(65,12,3,'2015-06-02 13:19:02'); +INSERT INTO "status" VALUES(65,12,3,'2015-06-02 13:20:02'); +INSERT INTO "status" VALUES(65,12,3,'2015-06-02 13:21:02'); +INSERT INTO "status" VALUES(65,12,3,'2015-06-02 13:22:02'); +INSERT INTO "status" VALUES(65,12,3,'2015-06-02 13:23:02'); +INSERT INTO "status" VALUES(65,12,3,'2015-06-02 13:24:02'); +INSERT INTO "status" VALUES(65,12,3,'2015-06-02 13:25:02'); +INSERT INTO "status" VALUES(65,12,3,'2015-06-02 13:26:02'); +INSERT INTO "status" VALUES(65,12,3,'2015-06-02 13:27:02'); +INSERT INTO "status" VALUES(65,12,3,'2015-06-02 13:28:02'); +INSERT INTO "status" VALUES(65,12,3,'2015-06-02 13:29:02'); +INSERT INTO "status" VALUES(65,13,2,'2015-06-02 13:30:02'); +INSERT INTO "status" VALUES(65,13,2,'2015-06-02 13:31:02'); +INSERT INTO "status" VALUES(65,13,2,'2015-06-02 13:32:02'); +INSERT INTO "status" VALUES(65,13,2,'2015-06-02 13:33:02'); +INSERT INTO "status" VALUES(65,13,2,'2015-06-02 13:34:02'); +INSERT INTO "status" VALUES(65,13,2,'2015-06-02 13:35:02'); +INSERT INTO "status" VALUES(65,13,2,'2015-06-02 13:36:02'); +INSERT INTO "status" VALUES(65,13,2,'2015-06-02 13:37:02'); +INSERT INTO "status" VALUES(65,13,2,'2015-06-02 13:38:02'); +INSERT INTO "status" VALUES(65,14,1,'2015-06-02 13:39:02'); +INSERT INTO "status" VALUES(65,14,1,'2015-06-02 13:40:02'); +INSERT INTO "status" VALUES(65,14,1,'2015-06-02 13:41:03'); +INSERT INTO "status" VALUES(65,14,1,'2015-06-02 13:42:03'); +INSERT INTO "status" VALUES(65,14,1,'2015-06-02 13:43:03'); +INSERT INTO "status" VALUES(65,14,1,'2015-06-02 13:44:02'); +INSERT INTO "status" VALUES(65,14,1,'2015-06-02 13:45:03'); +INSERT INTO "status" VALUES(65,14,1,'2015-06-02 13:46:02'); +INSERT INTO "status" VALUES(65,14,1,'2015-06-02 13:47:02'); +INSERT INTO "status" VALUES(65,14,1,'2015-06-02 13:48:02'); +INSERT INTO "status" VALUES(65,14,1,'2015-06-02 13:49:02'); +INSERT INTO "status" VALUES(65,14,1,'2015-06-02 13:50:03'); +INSERT INTO "status" VALUES(65,14,1,'2015-06-02 13:51:02'); +INSERT INTO "status" VALUES(65,14,1,'2015-06-02 13:52:02'); +INSERT INTO "status" VALUES(65,14,1,'2015-06-02 13:53:02'); +INSERT INTO "status" VALUES(65,14,1,'2015-06-02 13:54:02'); +INSERT INTO "status" VALUES(65,14,1,'2015-06-02 13:55:03'); +INSERT INTO "status" VALUES(65,14,1,'2015-06-02 13:56:02'); +INSERT INTO "status" VALUES(65,14,1,'2015-06-02 13:57:02'); +INSERT INTO "status" VALUES(65,14,1,'2015-06-02 13:58:02'); +INSERT INTO "status" VALUES(65,14,1,'2015-06-02 13:59:02'); +INSERT INTO "status" VALUES(65,15,0,'2015-06-02 14:00:02'); +INSERT INTO "status" VALUES(65,15,0,'2015-06-02 14:01:02'); +INSERT INTO "status" VALUES(65,15,0,'2015-06-02 14:02:02'); +INSERT INTO "status" VALUES(65,15,0,'2015-06-02 14:03:02'); +INSERT INTO "status" VALUES(65,15,0,'2015-06-02 14:04:02'); +INSERT INTO "status" VALUES(65,15,0,'2015-06-02 14:05:02'); +INSERT INTO "status" VALUES(65,15,0,'2015-06-02 14:06:02'); +INSERT INTO "status" VALUES(65,15,0,'2015-06-02 14:07:02'); +INSERT INTO "status" VALUES(65,15,0,'2015-06-02 14:08:02'); +INSERT INTO "status" VALUES(65,15,0,'2015-06-02 14:09:02'); +INSERT INTO "status" VALUES(65,15,0,'2015-06-02 14:10:02'); +INSERT INTO "status" VALUES(65,15,0,'2015-06-02 14:11:02'); +INSERT INTO "status" VALUES(65,15,0,'2015-06-02 14:12:02'); +INSERT INTO "status" VALUES(65,15,0,'2015-06-02 14:13:02'); +INSERT INTO "status" VALUES(65,15,0,'2015-06-02 14:14:02'); +INSERT INTO "status" VALUES(65,15,0,'2015-06-02 14:15:02'); +INSERT INTO "status" VALUES(65,15,0,'2015-06-02 14:16:02'); +INSERT INTO "status" VALUES(65,15,0,'2015-06-02 14:17:02'); +INSERT INTO "status" VALUES(65,15,0,'2015-06-02 14:18:02'); +INSERT INTO "status" VALUES(65,15,0,'2015-06-02 14:19:02'); +INSERT INTO "status" VALUES(65,15,0,'2015-06-02 14:20:03'); +INSERT INTO "status" VALUES(65,15,0,'2015-06-02 14:21:02'); +INSERT INTO "status" VALUES(65,15,0,'2015-06-02 14:22:02'); +INSERT INTO "status" VALUES(65,15,0,'2015-06-02 14:23:03'); +INSERT INTO "status" VALUES(65,15,0,'2015-06-02 14:24:02'); +INSERT INTO "status" VALUES(65,15,0,'2015-06-02 14:25:01'); +INSERT INTO "status" VALUES(65,15,0,'2015-06-02 14:26:02'); +INSERT INTO "status" VALUES(65,15,0,'2015-06-02 14:27:02'); +INSERT INTO "status" VALUES(65,15,0,'2015-06-02 14:28:02'); +INSERT INTO "status" VALUES(65,15,0,'2015-06-02 14:29:02'); +INSERT INTO "status" VALUES(65,15,0,'2015-06-02 14:30:02'); +INSERT INTO "status" VALUES(65,15,0,'2015-06-02 14:31:02'); +INSERT INTO "status" VALUES(65,15,0,'2015-06-02 14:32:02'); +INSERT INTO "status" VALUES(65,15,0,'2015-06-02 14:33:02'); +INSERT INTO "status" VALUES(65,15,0,'2015-06-02 14:34:02'); +INSERT INTO "status" VALUES(65,15,0,'2015-06-02 14:35:02'); +INSERT INTO "status" VALUES(65,15,0,'2015-06-02 14:36:02'); +INSERT INTO "status" VALUES(65,15,0,'2015-06-02 14:37:02'); +INSERT INTO "status" VALUES(65,15,0,'2015-06-02 14:38:02'); +INSERT INTO "status" VALUES(65,15,0,'2015-06-02 14:39:02'); +INSERT INTO "status" VALUES(65,15,0,'2015-06-02 14:40:02'); +INSERT INTO "status" VALUES(65,15,0,'2015-06-02 14:41:02'); +INSERT INTO "status" VALUES(65,15,0,'2015-06-02 14:42:02'); +INSERT INTO "status" VALUES(65,15,0,'2015-06-02 14:43:02'); +INSERT INTO "status" VALUES(65,15,0,'2015-06-02 14:44:02'); +INSERT INTO "status" VALUES(65,15,0,'2015-06-02 14:45:02'); +INSERT INTO "status" VALUES(65,14,1,'2015-06-02 14:46:02'); +INSERT INTO "status" VALUES(65,14,1,'2015-06-02 14:47:02'); +INSERT INTO "status" VALUES(65,13,2,'2015-06-02 14:48:02'); +INSERT INTO "status" VALUES(66,6,13,'2015-06-02 12:46:02'); +INSERT INTO "status" VALUES(66,6,13,'2015-06-02 12:47:02'); +INSERT INTO "status" VALUES(66,6,13,'2015-06-02 12:48:02'); +INSERT INTO "status" VALUES(66,6,13,'2015-06-02 12:49:02'); +INSERT INTO "status" VALUES(66,6,13,'2015-06-02 12:50:02'); +INSERT INTO "status" VALUES(66,6,13,'2015-06-02 12:51:02'); +INSERT INTO "status" VALUES(66,6,13,'2015-06-02 12:52:02'); +INSERT INTO "status" VALUES(66,6,13,'2015-06-02 12:53:03'); +INSERT INTO "status" VALUES(66,6,13,'2015-06-02 12:54:02'); +INSERT INTO "status" VALUES(66,6,13,'2015-06-02 12:55:02'); +INSERT INTO "status" VALUES(66,6,13,'2015-06-02 12:56:01'); +INSERT INTO "status" VALUES(66,6,13,'2015-06-02 12:57:02'); +INSERT INTO "status" VALUES(66,6,13,'2015-06-02 12:58:02'); +INSERT INTO "status" VALUES(66,6,13,'2015-06-02 12:59:02'); +INSERT INTO "status" VALUES(66,6,13,'2015-06-02 13:00:01'); +INSERT INTO "status" VALUES(66,6,13,'2015-06-02 13:01:03'); +INSERT INTO "status" VALUES(66,6,13,'2015-06-02 13:02:02'); +INSERT INTO "status" VALUES(66,6,13,'2015-06-02 13:03:02'); +INSERT INTO "status" VALUES(66,6,13,'2015-06-02 13:04:02'); +INSERT INTO "status" VALUES(66,6,13,'2015-06-02 13:05:03'); +INSERT INTO "status" VALUES(66,6,13,'2015-06-02 13:06:02'); +INSERT INTO "status" VALUES(66,6,13,'2015-06-02 13:07:02'); +INSERT INTO "status" VALUES(66,6,13,'2015-06-02 13:08:02'); +INSERT INTO "status" VALUES(66,6,13,'2015-06-02 13:09:02'); +INSERT INTO "status" VALUES(66,5,14,'2015-06-02 13:10:02'); +INSERT INTO "status" VALUES(66,5,14,'2015-06-02 13:11:02'); +INSERT INTO "status" VALUES(66,5,14,'2015-06-02 13:12:02'); +INSERT INTO "status" VALUES(66,5,14,'2015-06-02 13:13:03'); +INSERT INTO "status" VALUES(66,5,14,'2015-06-02 13:14:03'); +INSERT INTO "status" VALUES(66,5,14,'2015-06-02 13:15:02'); +INSERT INTO "status" VALUES(66,5,14,'2015-06-02 13:16:02'); +INSERT INTO "status" VALUES(66,5,14,'2015-06-02 13:17:02'); +INSERT INTO "status" VALUES(66,5,14,'2015-06-02 13:18:02'); +INSERT INTO "status" VALUES(66,5,14,'2015-06-02 13:19:02'); +INSERT INTO "status" VALUES(66,5,14,'2015-06-02 13:20:02'); +INSERT INTO "status" VALUES(66,5,14,'2015-06-02 13:21:02'); +INSERT INTO "status" VALUES(66,5,14,'2015-06-02 13:22:02'); +INSERT INTO "status" VALUES(66,5,14,'2015-06-02 13:23:02'); +INSERT INTO "status" VALUES(66,5,14,'2015-06-02 13:24:02'); +INSERT INTO "status" VALUES(66,5,14,'2015-06-02 13:25:02'); +INSERT INTO "status" VALUES(66,5,14,'2015-06-02 13:26:02'); +INSERT INTO "status" VALUES(66,5,14,'2015-06-02 13:27:02'); +INSERT INTO "status" VALUES(66,5,14,'2015-06-02 13:28:02'); +INSERT INTO "status" VALUES(66,5,14,'2015-06-02 13:29:02'); +INSERT INTO "status" VALUES(66,5,14,'2015-06-02 13:30:02'); +INSERT INTO "status" VALUES(66,5,14,'2015-06-02 13:31:02'); +INSERT INTO "status" VALUES(66,5,14,'2015-06-02 13:32:02'); +INSERT INTO "status" VALUES(66,5,14,'2015-06-02 13:33:02'); +INSERT INTO "status" VALUES(66,5,14,'2015-06-02 13:34:02'); +INSERT INTO "status" VALUES(66,5,14,'2015-06-02 13:35:02'); +INSERT INTO "status" VALUES(66,5,14,'2015-06-02 13:36:02'); +INSERT INTO "status" VALUES(66,5,14,'2015-06-02 13:37:02'); +INSERT INTO "status" VALUES(66,5,14,'2015-06-02 13:38:02'); +INSERT INTO "status" VALUES(66,5,14,'2015-06-02 13:39:02'); +INSERT INTO "status" VALUES(66,5,14,'2015-06-02 13:40:02'); +INSERT INTO "status" VALUES(66,5,14,'2015-06-02 13:41:03'); +INSERT INTO "status" VALUES(66,5,14,'2015-06-02 13:42:03'); +INSERT INTO "status" VALUES(66,5,14,'2015-06-02 13:43:03'); +INSERT INTO "status" VALUES(66,5,14,'2015-06-02 13:44:02'); +INSERT INTO "status" VALUES(66,5,14,'2015-06-02 13:45:03'); +INSERT INTO "status" VALUES(66,5,14,'2015-06-02 13:46:02'); +INSERT INTO "status" VALUES(66,5,14,'2015-06-02 13:47:02'); +INSERT INTO "status" VALUES(66,5,14,'2015-06-02 13:48:02'); +INSERT INTO "status" VALUES(66,5,14,'2015-06-02 13:49:02'); +INSERT INTO "status" VALUES(66,5,14,'2015-06-02 13:50:03'); +INSERT INTO "status" VALUES(66,5,14,'2015-06-02 13:51:02'); +INSERT INTO "status" VALUES(66,5,14,'2015-06-02 13:52:02'); +INSERT INTO "status" VALUES(66,5,14,'2015-06-02 13:53:02'); +INSERT INTO "status" VALUES(66,5,14,'2015-06-02 13:54:02'); +INSERT INTO "status" VALUES(66,5,14,'2015-06-02 13:55:03'); +INSERT INTO "status" VALUES(66,5,14,'2015-06-02 13:56:02'); +INSERT INTO "status" VALUES(66,5,14,'2015-06-02 13:57:02'); +INSERT INTO "status" VALUES(66,5,14,'2015-06-02 13:58:02'); +INSERT INTO "status" VALUES(66,5,14,'2015-06-02 13:59:02'); +INSERT INTO "status" VALUES(66,5,14,'2015-06-02 14:00:02'); +INSERT INTO "status" VALUES(66,5,14,'2015-06-02 14:01:02'); +INSERT INTO "status" VALUES(66,5,14,'2015-06-02 14:02:02'); +INSERT INTO "status" VALUES(66,5,14,'2015-06-02 14:03:02'); +INSERT INTO "status" VALUES(66,5,14,'2015-06-02 14:04:02'); +INSERT INTO "status" VALUES(66,5,14,'2015-06-02 14:05:02'); +INSERT INTO "status" VALUES(66,5,14,'2015-06-02 14:06:02'); +INSERT INTO "status" VALUES(66,5,14,'2015-06-02 14:07:02'); +INSERT INTO "status" VALUES(66,5,14,'2015-06-02 14:08:02'); +INSERT INTO "status" VALUES(66,5,14,'2015-06-02 14:09:02'); +INSERT INTO "status" VALUES(66,5,14,'2015-06-02 14:10:02'); +INSERT INTO "status" VALUES(66,5,14,'2015-06-02 14:11:02'); +INSERT INTO "status" VALUES(66,5,14,'2015-06-02 14:12:02'); +INSERT INTO "status" VALUES(66,6,13,'2015-06-02 14:13:02'); +INSERT INTO "status" VALUES(66,6,13,'2015-06-02 14:14:02'); +INSERT INTO "status" VALUES(66,6,13,'2015-06-02 14:15:02'); +INSERT INTO "status" VALUES(66,6,13,'2015-06-02 14:16:02'); +INSERT INTO "status" VALUES(66,6,13,'2015-06-02 14:17:02'); +INSERT INTO "status" VALUES(66,6,13,'2015-06-02 14:18:02'); +INSERT INTO "status" VALUES(66,6,13,'2015-06-02 14:19:02'); +INSERT INTO "status" VALUES(66,6,13,'2015-06-02 14:20:03'); +INSERT INTO "status" VALUES(66,6,13,'2015-06-02 14:21:02'); +INSERT INTO "status" VALUES(66,6,13,'2015-06-02 14:22:02'); +INSERT INTO "status" VALUES(66,6,13,'2015-06-02 14:23:03'); +INSERT INTO "status" VALUES(66,6,13,'2015-06-02 14:24:02'); +INSERT INTO "status" VALUES(66,6,13,'2015-06-02 14:25:01'); +INSERT INTO "status" VALUES(66,6,13,'2015-06-02 14:26:02'); +INSERT INTO "status" VALUES(66,6,13,'2015-06-02 14:27:02'); +INSERT INTO "status" VALUES(66,6,13,'2015-06-02 14:28:02'); +INSERT INTO "status" VALUES(66,6,13,'2015-06-02 14:29:02'); +INSERT INTO "status" VALUES(66,6,13,'2015-06-02 14:30:02'); +INSERT INTO "status" VALUES(66,6,13,'2015-06-02 14:31:02'); +INSERT INTO "status" VALUES(66,6,13,'2015-06-02 14:32:02'); +INSERT INTO "status" VALUES(66,6,13,'2015-06-02 14:33:02'); +INSERT INTO "status" VALUES(66,6,13,'2015-06-02 14:34:02'); +INSERT INTO "status" VALUES(66,6,13,'2015-06-02 14:35:02'); +INSERT INTO "status" VALUES(66,6,13,'2015-06-02 14:36:02'); +INSERT INTO "status" VALUES(66,6,13,'2015-06-02 14:37:02'); +INSERT INTO "status" VALUES(66,5,14,'2015-06-02 14:38:02'); +INSERT INTO "status" VALUES(66,5,14,'2015-06-02 14:39:02'); +INSERT INTO "status" VALUES(66,5,14,'2015-06-02 14:40:02'); +INSERT INTO "status" VALUES(66,5,14,'2015-06-02 14:41:02'); +INSERT INTO "status" VALUES(66,5,14,'2015-06-02 14:42:02'); +INSERT INTO "status" VALUES(66,5,14,'2015-06-02 14:43:02'); +INSERT INTO "status" VALUES(66,5,14,'2015-06-02 14:44:02'); +INSERT INTO "status" VALUES(66,5,14,'2015-06-02 14:45:02'); +INSERT INTO "status" VALUES(66,5,14,'2015-06-02 14:46:02'); +INSERT INTO "status" VALUES(66,5,14,'2015-06-02 14:47:02'); +INSERT INTO "status" VALUES(66,5,14,'2015-06-02 14:48:02'); +INSERT INTO "status" VALUES(67,11,16,'2015-06-02 12:46:02'); +INSERT INTO "status" VALUES(67,11,16,'2015-06-02 12:47:02'); +INSERT INTO "status" VALUES(67,11,16,'2015-06-02 12:48:02'); +INSERT INTO "status" VALUES(67,11,16,'2015-06-02 12:49:02'); +INSERT INTO "status" VALUES(67,11,16,'2015-06-02 12:50:02'); +INSERT INTO "status" VALUES(67,11,16,'2015-06-02 12:51:02'); +INSERT INTO "status" VALUES(67,11,16,'2015-06-02 12:52:02'); +INSERT INTO "status" VALUES(67,11,16,'2015-06-02 12:53:03'); +INSERT INTO "status" VALUES(67,11,16,'2015-06-02 12:54:02'); +INSERT INTO "status" VALUES(67,11,16,'2015-06-02 12:55:02'); +INSERT INTO "status" VALUES(67,11,16,'2015-06-02 12:56:01'); +INSERT INTO "status" VALUES(67,10,17,'2015-06-02 12:57:02'); +INSERT INTO "status" VALUES(67,10,17,'2015-06-02 12:58:02'); +INSERT INTO "status" VALUES(67,10,17,'2015-06-02 12:59:02'); +INSERT INTO "status" VALUES(67,10,17,'2015-06-02 13:00:01'); +INSERT INTO "status" VALUES(67,10,17,'2015-06-02 13:01:03'); +INSERT INTO "status" VALUES(67,10,17,'2015-06-02 13:02:02'); +INSERT INTO "status" VALUES(67,10,17,'2015-06-02 13:03:02'); +INSERT INTO "status" VALUES(67,10,17,'2015-06-02 13:04:02'); +INSERT INTO "status" VALUES(67,10,17,'2015-06-02 13:05:03'); +INSERT INTO "status" VALUES(67,10,17,'2015-06-02 13:06:02'); +INSERT INTO "status" VALUES(67,10,17,'2015-06-02 13:07:02'); +INSERT INTO "status" VALUES(67,10,17,'2015-06-02 13:08:02'); +INSERT INTO "status" VALUES(67,10,17,'2015-06-02 13:09:02'); +INSERT INTO "status" VALUES(67,10,17,'2015-06-02 13:10:02'); +INSERT INTO "status" VALUES(67,10,17,'2015-06-02 13:11:02'); +INSERT INTO "status" VALUES(67,10,17,'2015-06-02 13:12:02'); +INSERT INTO "status" VALUES(67,10,17,'2015-06-02 13:13:03'); +INSERT INTO "status" VALUES(67,10,17,'2015-06-02 13:14:03'); +INSERT INTO "status" VALUES(67,10,17,'2015-06-02 13:15:02'); +INSERT INTO "status" VALUES(67,10,17,'2015-06-02 13:16:02'); +INSERT INTO "status" VALUES(67,10,17,'2015-06-02 13:17:02'); +INSERT INTO "status" VALUES(67,11,16,'2015-06-02 13:18:02'); +INSERT INTO "status" VALUES(67,11,16,'2015-06-02 13:19:02'); +INSERT INTO "status" VALUES(67,11,16,'2015-06-02 13:20:02'); +INSERT INTO "status" VALUES(67,11,16,'2015-06-02 13:21:02'); +INSERT INTO "status" VALUES(67,11,16,'2015-06-02 13:22:02'); +INSERT INTO "status" VALUES(67,11,16,'2015-06-02 13:23:02'); +INSERT INTO "status" VALUES(67,11,16,'2015-06-02 13:24:02'); +INSERT INTO "status" VALUES(67,11,16,'2015-06-02 13:25:02'); +INSERT INTO "status" VALUES(67,11,16,'2015-06-02 13:26:02'); +INSERT INTO "status" VALUES(67,11,16,'2015-06-02 13:27:02'); +INSERT INTO "status" VALUES(67,11,16,'2015-06-02 13:28:02'); +INSERT INTO "status" VALUES(67,11,16,'2015-06-02 13:29:02'); +INSERT INTO "status" VALUES(67,11,16,'2015-06-02 13:30:02'); +INSERT INTO "status" VALUES(67,11,16,'2015-06-02 13:31:02'); +INSERT INTO "status" VALUES(67,11,16,'2015-06-02 13:32:02'); +INSERT INTO "status" VALUES(67,11,16,'2015-06-02 13:33:02'); +INSERT INTO "status" VALUES(67,11,16,'2015-06-02 13:34:02'); +INSERT INTO "status" VALUES(67,11,16,'2015-06-02 13:35:02'); +INSERT INTO "status" VALUES(67,11,16,'2015-06-02 13:36:02'); +INSERT INTO "status" VALUES(67,11,16,'2015-06-02 13:37:02'); +INSERT INTO "status" VALUES(67,11,16,'2015-06-02 13:38:02'); +INSERT INTO "status" VALUES(67,11,16,'2015-06-02 13:39:02'); +INSERT INTO "status" VALUES(67,11,16,'2015-06-02 13:40:02'); +INSERT INTO "status" VALUES(67,11,16,'2015-06-02 13:41:03'); +INSERT INTO "status" VALUES(67,11,16,'2015-06-02 13:42:03'); +INSERT INTO "status" VALUES(67,11,16,'2015-06-02 13:43:03'); +INSERT INTO "status" VALUES(67,11,16,'2015-06-02 13:44:02'); +INSERT INTO "status" VALUES(67,11,16,'2015-06-02 13:45:03'); +INSERT INTO "status" VALUES(67,11,16,'2015-06-02 13:46:02'); +INSERT INTO "status" VALUES(67,11,16,'2015-06-02 13:47:02'); +INSERT INTO "status" VALUES(67,11,16,'2015-06-02 13:48:02'); +INSERT INTO "status" VALUES(67,11,16,'2015-06-02 13:49:02'); +INSERT INTO "status" VALUES(67,10,17,'2015-06-02 13:50:03'); +INSERT INTO "status" VALUES(67,10,17,'2015-06-02 13:51:02'); +INSERT INTO "status" VALUES(67,10,17,'2015-06-02 13:52:02'); +INSERT INTO "status" VALUES(67,10,17,'2015-06-02 13:53:02'); +INSERT INTO "status" VALUES(67,9,18,'2015-06-02 13:54:02'); +INSERT INTO "status" VALUES(67,9,18,'2015-06-02 13:55:03'); +INSERT INTO "status" VALUES(67,9,18,'2015-06-02 13:56:02'); +INSERT INTO "status" VALUES(67,9,18,'2015-06-02 13:57:02'); +INSERT INTO "status" VALUES(67,9,18,'2015-06-02 13:58:02'); +INSERT INTO "status" VALUES(67,9,18,'2015-06-02 13:59:02'); +INSERT INTO "status" VALUES(67,9,18,'2015-06-02 14:00:02'); +INSERT INTO "status" VALUES(67,9,18,'2015-06-02 14:01:02'); +INSERT INTO "status" VALUES(67,9,18,'2015-06-02 14:02:02'); +INSERT INTO "status" VALUES(67,9,18,'2015-06-02 14:03:02'); +INSERT INTO "status" VALUES(67,9,18,'2015-06-02 14:04:02'); +INSERT INTO "status" VALUES(67,9,18,'2015-06-02 14:05:02'); +INSERT INTO "status" VALUES(67,9,18,'2015-06-02 14:06:02'); +INSERT INTO "status" VALUES(67,9,18,'2015-06-02 14:07:02'); +INSERT INTO "status" VALUES(67,9,18,'2015-06-02 14:08:02'); +INSERT INTO "status" VALUES(67,9,18,'2015-06-02 14:09:02'); +INSERT INTO "status" VALUES(67,9,18,'2015-06-02 14:10:02'); +INSERT INTO "status" VALUES(67,9,18,'2015-06-02 14:11:02'); +INSERT INTO "status" VALUES(67,9,18,'2015-06-02 14:12:02'); +INSERT INTO "status" VALUES(67,9,18,'2015-06-02 14:13:02'); +INSERT INTO "status" VALUES(67,9,18,'2015-06-02 14:14:02'); +INSERT INTO "status" VALUES(67,9,18,'2015-06-02 14:15:02'); +INSERT INTO "status" VALUES(67,9,18,'2015-06-02 14:16:02'); +INSERT INTO "status" VALUES(67,9,18,'2015-06-02 14:17:02'); +INSERT INTO "status" VALUES(67,9,18,'2015-06-02 14:18:02'); +INSERT INTO "status" VALUES(67,9,18,'2015-06-02 14:19:02'); +INSERT INTO "status" VALUES(67,9,18,'2015-06-02 14:20:03'); +INSERT INTO "status" VALUES(67,9,18,'2015-06-02 14:21:02'); +INSERT INTO "status" VALUES(67,9,18,'2015-06-02 14:22:02'); +INSERT INTO "status" VALUES(67,9,18,'2015-06-02 14:23:03'); +INSERT INTO "status" VALUES(67,9,18,'2015-06-02 14:24:02'); +INSERT INTO "status" VALUES(67,9,18,'2015-06-02 14:25:01'); +INSERT INTO "status" VALUES(67,9,18,'2015-06-02 14:26:02'); +INSERT INTO "status" VALUES(67,9,18,'2015-06-02 14:27:02'); +INSERT INTO "status" VALUES(67,9,18,'2015-06-02 14:28:02'); +INSERT INTO "status" VALUES(67,9,18,'2015-06-02 14:29:02'); +INSERT INTO "status" VALUES(67,9,18,'2015-06-02 14:30:02'); +INSERT INTO "status" VALUES(67,9,18,'2015-06-02 14:31:02'); +INSERT INTO "status" VALUES(67,9,18,'2015-06-02 14:32:02'); +INSERT INTO "status" VALUES(67,9,18,'2015-06-02 14:33:02'); +INSERT INTO "status" VALUES(67,9,18,'2015-06-02 14:34:02'); +INSERT INTO "status" VALUES(67,9,18,'2015-06-02 14:35:02'); +INSERT INTO "status" VALUES(67,9,18,'2015-06-02 14:36:02'); +INSERT INTO "status" VALUES(67,10,17,'2015-06-02 14:37:02'); +INSERT INTO "status" VALUES(67,10,17,'2015-06-02 14:38:02'); +INSERT INTO "status" VALUES(67,10,17,'2015-06-02 14:39:02'); +INSERT INTO "status" VALUES(67,10,17,'2015-06-02 14:40:02'); +INSERT INTO "status" VALUES(67,10,17,'2015-06-02 14:41:02'); +INSERT INTO "status" VALUES(67,10,17,'2015-06-02 14:42:02'); +INSERT INTO "status" VALUES(67,10,17,'2015-06-02 14:43:02'); +INSERT INTO "status" VALUES(67,10,17,'2015-06-02 14:44:02'); +INSERT INTO "status" VALUES(67,10,17,'2015-06-02 14:45:02'); +INSERT INTO "status" VALUES(67,10,17,'2015-06-02 14:46:02'); +INSERT INTO "status" VALUES(67,10,17,'2015-06-02 14:47:02'); +INSERT INTO "status" VALUES(67,10,17,'2015-06-02 14:48:02'); +INSERT INTO "status" VALUES(68,13,6,'2015-06-02 12:46:02'); +INSERT INTO "status" VALUES(68,13,6,'2015-06-02 12:47:02'); +INSERT INTO "status" VALUES(68,13,6,'2015-06-02 12:48:02'); +INSERT INTO "status" VALUES(68,13,6,'2015-06-02 12:49:02'); +INSERT INTO "status" VALUES(68,13,6,'2015-06-02 12:50:02'); +INSERT INTO "status" VALUES(68,13,6,'2015-06-02 12:51:02'); +INSERT INTO "status" VALUES(68,13,6,'2015-06-02 12:52:02'); +INSERT INTO "status" VALUES(68,13,6,'2015-06-02 12:53:03'); +INSERT INTO "status" VALUES(68,13,6,'2015-06-02 12:54:02'); +INSERT INTO "status" VALUES(68,13,6,'2015-06-02 12:55:02'); +INSERT INTO "status" VALUES(68,13,6,'2015-06-02 12:56:01'); +INSERT INTO "status" VALUES(68,13,6,'2015-06-02 12:57:02'); +INSERT INTO "status" VALUES(68,13,6,'2015-06-02 12:58:02'); +INSERT INTO "status" VALUES(68,13,6,'2015-06-02 12:59:02'); +INSERT INTO "status" VALUES(68,13,6,'2015-06-02 13:00:01'); +INSERT INTO "status" VALUES(68,13,6,'2015-06-02 13:01:03'); +INSERT INTO "status" VALUES(68,13,6,'2015-06-02 13:02:02'); +INSERT INTO "status" VALUES(68,13,6,'2015-06-02 13:03:02'); +INSERT INTO "status" VALUES(68,13,6,'2015-06-02 13:04:02'); +INSERT INTO "status" VALUES(68,13,6,'2015-06-02 13:05:03'); +INSERT INTO "status" VALUES(68,13,6,'2015-06-02 13:06:02'); +INSERT INTO "status" VALUES(68,13,6,'2015-06-02 13:07:02'); +INSERT INTO "status" VALUES(68,13,6,'2015-06-02 13:08:02'); +INSERT INTO "status" VALUES(68,13,6,'2015-06-02 13:09:02'); +INSERT INTO "status" VALUES(68,13,6,'2015-06-02 13:10:02'); +INSERT INTO "status" VALUES(68,13,6,'2015-06-02 13:11:02'); +INSERT INTO "status" VALUES(68,13,6,'2015-06-02 13:12:02'); +INSERT INTO "status" VALUES(68,13,6,'2015-06-02 13:13:03'); +INSERT INTO "status" VALUES(68,13,6,'2015-06-02 13:14:03'); +INSERT INTO "status" VALUES(68,13,6,'2015-06-02 13:15:02'); +INSERT INTO "status" VALUES(68,13,6,'2015-06-02 13:16:02'); +INSERT INTO "status" VALUES(68,12,7,'2015-06-02 13:17:02'); +INSERT INTO "status" VALUES(68,12,7,'2015-06-02 13:18:02'); +INSERT INTO "status" VALUES(68,12,7,'2015-06-02 13:19:02'); +INSERT INTO "status" VALUES(68,12,7,'2015-06-02 13:20:02'); +INSERT INTO "status" VALUES(68,12,7,'2015-06-02 13:21:02'); +INSERT INTO "status" VALUES(68,12,7,'2015-06-02 13:22:02'); +INSERT INTO "status" VALUES(68,12,7,'2015-06-02 13:23:02'); +INSERT INTO "status" VALUES(68,12,7,'2015-06-02 13:24:02'); +INSERT INTO "status" VALUES(68,12,7,'2015-06-02 13:25:02'); +INSERT INTO "status" VALUES(68,12,7,'2015-06-02 13:26:02'); +INSERT INTO "status" VALUES(68,12,7,'2015-06-02 13:27:02'); +INSERT INTO "status" VALUES(68,12,7,'2015-06-02 13:28:02'); +INSERT INTO "status" VALUES(68,12,7,'2015-06-02 13:29:02'); +INSERT INTO "status" VALUES(68,12,7,'2015-06-02 13:30:02'); +INSERT INTO "status" VALUES(68,12,7,'2015-06-02 13:31:02'); +INSERT INTO "status" VALUES(68,12,7,'2015-06-02 13:32:02'); +INSERT INTO "status" VALUES(68,12,7,'2015-06-02 13:33:02'); +INSERT INTO "status" VALUES(68,12,7,'2015-06-02 13:34:02'); +INSERT INTO "status" VALUES(68,12,7,'2015-06-02 13:35:02'); +INSERT INTO "status" VALUES(68,12,7,'2015-06-02 13:36:02'); +INSERT INTO "status" VALUES(68,12,7,'2015-06-02 13:37:02'); +INSERT INTO "status" VALUES(68,12,7,'2015-06-02 13:38:02'); +INSERT INTO "status" VALUES(68,12,7,'2015-06-02 13:39:02'); +INSERT INTO "status" VALUES(68,12,7,'2015-06-02 13:40:02'); +INSERT INTO "status" VALUES(68,12,7,'2015-06-02 13:41:03'); +INSERT INTO "status" VALUES(68,12,7,'2015-06-02 13:42:03'); +INSERT INTO "status" VALUES(68,12,7,'2015-06-02 13:43:03'); +INSERT INTO "status" VALUES(68,12,7,'2015-06-02 13:44:02'); +INSERT INTO "status" VALUES(68,12,7,'2015-06-02 13:45:03'); +INSERT INTO "status" VALUES(68,12,7,'2015-06-02 13:46:02'); +INSERT INTO "status" VALUES(68,12,7,'2015-06-02 13:47:02'); +INSERT INTO "status" VALUES(68,12,7,'2015-06-02 13:48:02'); +INSERT INTO "status" VALUES(68,12,7,'2015-06-02 13:49:02'); +INSERT INTO "status" VALUES(68,12,7,'2015-06-02 13:50:03'); +INSERT INTO "status" VALUES(68,12,7,'2015-06-02 13:51:02'); +INSERT INTO "status" VALUES(68,12,7,'2015-06-02 13:52:02'); +INSERT INTO "status" VALUES(68,12,7,'2015-06-02 13:53:02'); +INSERT INTO "status" VALUES(68,12,7,'2015-06-02 13:54:02'); +INSERT INTO "status" VALUES(68,12,7,'2015-06-02 13:55:03'); +INSERT INTO "status" VALUES(68,12,7,'2015-06-02 13:56:02'); +INSERT INTO "status" VALUES(68,12,7,'2015-06-02 13:57:02'); +INSERT INTO "status" VALUES(68,12,7,'2015-06-02 13:58:02'); +INSERT INTO "status" VALUES(68,12,7,'2015-06-02 13:59:02'); +INSERT INTO "status" VALUES(68,12,7,'2015-06-02 14:00:02'); +INSERT INTO "status" VALUES(68,12,7,'2015-06-02 14:01:02'); +INSERT INTO "status" VALUES(68,12,7,'2015-06-02 14:02:02'); +INSERT INTO "status" VALUES(68,12,7,'2015-06-02 14:03:02'); +INSERT INTO "status" VALUES(68,12,7,'2015-06-02 14:04:02'); +INSERT INTO "status" VALUES(68,12,7,'2015-06-02 14:05:02'); +INSERT INTO "status" VALUES(68,12,7,'2015-06-02 14:06:02'); +INSERT INTO "status" VALUES(68,12,7,'2015-06-02 14:07:02'); +INSERT INTO "status" VALUES(68,12,7,'2015-06-02 14:08:02'); +INSERT INTO "status" VALUES(68,12,7,'2015-06-02 14:09:02'); +INSERT INTO "status" VALUES(68,12,7,'2015-06-02 14:10:02'); +INSERT INTO "status" VALUES(68,12,7,'2015-06-02 14:11:02'); +INSERT INTO "status" VALUES(68,12,7,'2015-06-02 14:12:02'); +INSERT INTO "status" VALUES(68,12,7,'2015-06-02 14:13:02'); +INSERT INTO "status" VALUES(68,12,7,'2015-06-02 14:14:02'); +INSERT INTO "status" VALUES(68,12,7,'2015-06-02 14:15:02'); +INSERT INTO "status" VALUES(68,12,7,'2015-06-02 14:16:02'); +INSERT INTO "status" VALUES(68,12,7,'2015-06-02 14:17:02'); +INSERT INTO "status" VALUES(68,12,7,'2015-06-02 14:18:02'); +INSERT INTO "status" VALUES(68,12,7,'2015-06-02 14:19:02'); +INSERT INTO "status" VALUES(68,12,7,'2015-06-02 14:20:03'); +INSERT INTO "status" VALUES(68,12,7,'2015-06-02 14:21:02'); +INSERT INTO "status" VALUES(68,12,7,'2015-06-02 14:22:02'); +INSERT INTO "status" VALUES(68,12,7,'2015-06-02 14:23:03'); +INSERT INTO "status" VALUES(68,12,7,'2015-06-02 14:24:02'); +INSERT INTO "status" VALUES(68,12,7,'2015-06-02 14:25:01'); +INSERT INTO "status" VALUES(68,12,7,'2015-06-02 14:26:02'); +INSERT INTO "status" VALUES(68,12,7,'2015-06-02 14:27:02'); +INSERT INTO "status" VALUES(68,12,7,'2015-06-02 14:28:02'); +INSERT INTO "status" VALUES(68,12,7,'2015-06-02 14:29:02'); +INSERT INTO "status" VALUES(68,12,7,'2015-06-02 14:30:02'); +INSERT INTO "status" VALUES(68,12,7,'2015-06-02 14:31:02'); +INSERT INTO "status" VALUES(68,12,7,'2015-06-02 14:32:02'); +INSERT INTO "status" VALUES(68,12,7,'2015-06-02 14:33:02'); +INSERT INTO "status" VALUES(68,12,7,'2015-06-02 14:34:02'); +INSERT INTO "status" VALUES(68,11,8,'2015-06-02 14:35:02'); +INSERT INTO "status" VALUES(68,11,8,'2015-06-02 14:36:02'); +INSERT INTO "status" VALUES(68,11,8,'2015-06-02 14:37:02'); +INSERT INTO "status" VALUES(68,11,8,'2015-06-02 14:38:02'); +INSERT INTO "status" VALUES(68,11,8,'2015-06-02 14:39:02'); +INSERT INTO "status" VALUES(68,11,8,'2015-06-02 14:40:02'); +INSERT INTO "status" VALUES(68,11,8,'2015-06-02 14:41:02'); +INSERT INTO "status" VALUES(68,11,8,'2015-06-02 14:42:02'); +INSERT INTO "status" VALUES(68,11,8,'2015-06-02 14:43:02'); +INSERT INTO "status" VALUES(68,11,8,'2015-06-02 14:44:02'); +INSERT INTO "status" VALUES(68,11,8,'2015-06-02 14:45:02'); +INSERT INTO "status" VALUES(68,11,8,'2015-06-02 14:46:02'); +INSERT INTO "status" VALUES(68,11,8,'2015-06-02 14:47:02'); +INSERT INTO "status" VALUES(68,11,8,'2015-06-02 14:48:02'); +INSERT INTO "status" VALUES(69,4,19,'2015-06-02 12:46:02'); +INSERT INTO "status" VALUES(69,4,19,'2015-06-02 12:47:02'); +INSERT INTO "status" VALUES(69,4,19,'2015-06-02 12:48:02'); +INSERT INTO "status" VALUES(69,4,19,'2015-06-02 12:49:02'); +INSERT INTO "status" VALUES(69,4,19,'2015-06-02 12:50:02'); +INSERT INTO "status" VALUES(69,5,18,'2015-06-02 12:51:02'); +INSERT INTO "status" VALUES(69,5,18,'2015-06-02 12:52:02'); +INSERT INTO "status" VALUES(69,5,18,'2015-06-02 12:53:03'); +INSERT INTO "status" VALUES(69,5,18,'2015-06-02 12:54:02'); +INSERT INTO "status" VALUES(69,5,18,'2015-06-02 12:55:02'); +INSERT INTO "status" VALUES(69,5,18,'2015-06-02 12:56:01'); +INSERT INTO "status" VALUES(69,5,18,'2015-06-02 12:57:02'); +INSERT INTO "status" VALUES(69,5,18,'2015-06-02 12:58:02'); +INSERT INTO "status" VALUES(69,5,18,'2015-06-02 12:59:02'); +INSERT INTO "status" VALUES(69,5,18,'2015-06-02 13:00:01'); +INSERT INTO "status" VALUES(69,5,18,'2015-06-02 13:01:03'); +INSERT INTO "status" VALUES(69,5,18,'2015-06-02 13:02:02'); +INSERT INTO "status" VALUES(69,5,18,'2015-06-02 13:03:02'); +INSERT INTO "status" VALUES(69,5,18,'2015-06-02 13:04:02'); +INSERT INTO "status" VALUES(69,5,18,'2015-06-02 13:05:03'); +INSERT INTO "status" VALUES(69,5,18,'2015-06-02 13:06:02'); +INSERT INTO "status" VALUES(69,5,18,'2015-06-02 13:07:02'); +INSERT INTO "status" VALUES(69,5,18,'2015-06-02 13:08:02'); +INSERT INTO "status" VALUES(69,5,18,'2015-06-02 13:09:02'); +INSERT INTO "status" VALUES(69,5,18,'2015-06-02 13:10:02'); +INSERT INTO "status" VALUES(69,5,18,'2015-06-02 13:11:02'); +INSERT INTO "status" VALUES(69,5,18,'2015-06-02 13:12:02'); +INSERT INTO "status" VALUES(69,4,19,'2015-06-02 13:13:03'); +INSERT INTO "status" VALUES(69,4,19,'2015-06-02 13:14:03'); +INSERT INTO "status" VALUES(69,4,19,'2015-06-02 13:15:02'); +INSERT INTO "status" VALUES(69,4,19,'2015-06-02 13:16:02'); +INSERT INTO "status" VALUES(69,4,19,'2015-06-02 13:17:02'); +INSERT INTO "status" VALUES(69,4,19,'2015-06-02 13:18:02'); +INSERT INTO "status" VALUES(69,4,19,'2015-06-02 13:19:02'); +INSERT INTO "status" VALUES(69,4,19,'2015-06-02 13:20:02'); +INSERT INTO "status" VALUES(69,4,19,'2015-06-02 13:21:02'); +INSERT INTO "status" VALUES(69,4,19,'2015-06-02 13:22:02'); +INSERT INTO "status" VALUES(69,4,19,'2015-06-02 13:23:02'); +INSERT INTO "status" VALUES(69,4,19,'2015-06-02 13:24:02'); +INSERT INTO "status" VALUES(69,4,19,'2015-06-02 13:25:02'); +INSERT INTO "status" VALUES(69,4,19,'2015-06-02 13:26:02'); +INSERT INTO "status" VALUES(69,4,19,'2015-06-02 13:27:02'); +INSERT INTO "status" VALUES(69,4,19,'2015-06-02 13:28:02'); +INSERT INTO "status" VALUES(69,4,19,'2015-06-02 13:29:02'); +INSERT INTO "status" VALUES(69,4,19,'2015-06-02 13:30:02'); +INSERT INTO "status" VALUES(69,4,19,'2015-06-02 13:31:02'); +INSERT INTO "status" VALUES(69,4,19,'2015-06-02 13:32:02'); +INSERT INTO "status" VALUES(69,4,19,'2015-06-02 13:33:02'); +INSERT INTO "status" VALUES(69,4,19,'2015-06-02 13:34:02'); +INSERT INTO "status" VALUES(69,4,19,'2015-06-02 13:35:02'); +INSERT INTO "status" VALUES(69,4,19,'2015-06-02 13:36:02'); +INSERT INTO "status" VALUES(69,4,19,'2015-06-02 13:37:02'); +INSERT INTO "status" VALUES(69,5,18,'2015-06-02 13:38:02'); +INSERT INTO "status" VALUES(69,5,18,'2015-06-02 13:39:02'); +INSERT INTO "status" VALUES(69,5,18,'2015-06-02 13:40:02'); +INSERT INTO "status" VALUES(69,5,18,'2015-06-02 13:41:03'); +INSERT INTO "status" VALUES(69,5,18,'2015-06-02 13:42:03'); +INSERT INTO "status" VALUES(69,5,18,'2015-06-02 13:43:03'); +INSERT INTO "status" VALUES(69,5,18,'2015-06-02 13:44:02'); +INSERT INTO "status" VALUES(69,5,18,'2015-06-02 13:45:03'); +INSERT INTO "status" VALUES(69,5,18,'2015-06-02 13:46:02'); +INSERT INTO "status" VALUES(69,5,18,'2015-06-02 13:47:02'); +INSERT INTO "status" VALUES(69,5,18,'2015-06-02 13:48:02'); +INSERT INTO "status" VALUES(69,5,18,'2015-06-02 13:49:02'); +INSERT INTO "status" VALUES(69,5,18,'2015-06-02 13:50:03'); +INSERT INTO "status" VALUES(69,5,18,'2015-06-02 13:51:02'); +INSERT INTO "status" VALUES(69,5,18,'2015-06-02 13:52:02'); +INSERT INTO "status" VALUES(69,5,18,'2015-06-02 13:53:02'); +INSERT INTO "status" VALUES(69,5,18,'2015-06-02 13:54:02'); +INSERT INTO "status" VALUES(69,5,18,'2015-06-02 13:55:03'); +INSERT INTO "status" VALUES(69,5,18,'2015-06-02 13:56:02'); +INSERT INTO "status" VALUES(69,5,18,'2015-06-02 13:57:02'); +INSERT INTO "status" VALUES(69,5,18,'2015-06-02 13:58:02'); +INSERT INTO "status" VALUES(69,5,18,'2015-06-02 13:59:02'); +INSERT INTO "status" VALUES(69,5,18,'2015-06-02 14:00:02'); +INSERT INTO "status" VALUES(69,5,18,'2015-06-02 14:01:02'); +INSERT INTO "status" VALUES(69,5,18,'2015-06-02 14:02:02'); +INSERT INTO "status" VALUES(69,5,18,'2015-06-02 14:03:02'); +INSERT INTO "status" VALUES(69,5,18,'2015-06-02 14:04:02'); +INSERT INTO "status" VALUES(69,5,18,'2015-06-02 14:05:02'); +INSERT INTO "status" VALUES(69,6,17,'2015-06-02 14:06:02'); +INSERT INTO "status" VALUES(69,6,17,'2015-06-02 14:07:02'); +INSERT INTO "status" VALUES(69,6,17,'2015-06-02 14:08:02'); +INSERT INTO "status" VALUES(69,6,17,'2015-06-02 14:09:02'); +INSERT INTO "status" VALUES(69,6,17,'2015-06-02 14:10:02'); +INSERT INTO "status" VALUES(69,6,17,'2015-06-02 14:11:02'); +INSERT INTO "status" VALUES(69,6,17,'2015-06-02 14:12:02'); +INSERT INTO "status" VALUES(69,6,17,'2015-06-02 14:13:02'); +INSERT INTO "status" VALUES(69,6,17,'2015-06-02 14:14:02'); +INSERT INTO "status" VALUES(69,6,17,'2015-06-02 14:15:02'); +INSERT INTO "status" VALUES(69,6,17,'2015-06-02 14:16:02'); +INSERT INTO "status" VALUES(69,6,17,'2015-06-02 14:17:02'); +INSERT INTO "status" VALUES(69,6,17,'2015-06-02 14:18:02'); +INSERT INTO "status" VALUES(69,6,17,'2015-06-02 14:19:02'); +INSERT INTO "status" VALUES(69,6,17,'2015-06-02 14:20:03'); +INSERT INTO "status" VALUES(69,6,17,'2015-06-02 14:21:02'); +INSERT INTO "status" VALUES(69,6,17,'2015-06-02 14:22:02'); +INSERT INTO "status" VALUES(69,6,17,'2015-06-02 14:23:03'); +INSERT INTO "status" VALUES(69,6,17,'2015-06-02 14:24:02'); +INSERT INTO "status" VALUES(69,6,17,'2015-06-02 14:25:01'); +INSERT INTO "status" VALUES(69,6,17,'2015-06-02 14:26:02'); +INSERT INTO "status" VALUES(69,6,17,'2015-06-02 14:27:02'); +INSERT INTO "status" VALUES(69,6,17,'2015-06-02 14:28:02'); +INSERT INTO "status" VALUES(69,6,17,'2015-06-02 14:29:02'); +INSERT INTO "status" VALUES(69,6,17,'2015-06-02 14:30:02'); +INSERT INTO "status" VALUES(69,6,17,'2015-06-02 14:31:02'); +INSERT INTO "status" VALUES(69,6,17,'2015-06-02 14:32:02'); +INSERT INTO "status" VALUES(69,6,17,'2015-06-02 14:33:02'); +INSERT INTO "status" VALUES(69,6,17,'2015-06-02 14:34:02'); +INSERT INTO "status" VALUES(69,6,17,'2015-06-02 14:35:02'); +INSERT INTO "status" VALUES(69,6,17,'2015-06-02 14:36:02'); +INSERT INTO "status" VALUES(69,6,17,'2015-06-02 14:37:02'); +INSERT INTO "status" VALUES(69,6,17,'2015-06-02 14:38:02'); +INSERT INTO "status" VALUES(69,6,17,'2015-06-02 14:39:02'); +INSERT INTO "status" VALUES(69,6,17,'2015-06-02 14:40:02'); +INSERT INTO "status" VALUES(69,6,17,'2015-06-02 14:41:02'); +INSERT INTO "status" VALUES(69,6,17,'2015-06-02 14:42:02'); +INSERT INTO "status" VALUES(69,6,17,'2015-06-02 14:43:02'); +INSERT INTO "status" VALUES(69,6,17,'2015-06-02 14:44:02'); +INSERT INTO "status" VALUES(69,6,17,'2015-06-02 14:45:02'); +INSERT INTO "status" VALUES(69,6,17,'2015-06-02 14:46:02'); +INSERT INTO "status" VALUES(69,6,17,'2015-06-02 14:47:02'); +INSERT INTO "status" VALUES(69,6,17,'2015-06-02 14:48:02'); +INSERT INTO "status" VALUES(70,4,15,'2015-06-02 12:46:02'); +INSERT INTO "status" VALUES(70,3,16,'2015-06-02 12:47:02'); +INSERT INTO "status" VALUES(70,3,16,'2015-06-02 12:48:02'); +INSERT INTO "status" VALUES(70,3,16,'2015-06-02 12:49:02'); +INSERT INTO "status" VALUES(70,3,16,'2015-06-02 12:50:02'); +INSERT INTO "status" VALUES(70,3,16,'2015-06-02 12:51:02'); +INSERT INTO "status" VALUES(70,3,16,'2015-06-02 12:52:02'); +INSERT INTO "status" VALUES(70,3,16,'2015-06-02 12:53:03'); +INSERT INTO "status" VALUES(70,3,16,'2015-06-02 12:54:02'); +INSERT INTO "status" VALUES(70,3,16,'2015-06-02 12:55:02'); +INSERT INTO "status" VALUES(70,3,16,'2015-06-02 12:56:01'); +INSERT INTO "status" VALUES(70,3,16,'2015-06-02 12:57:02'); +INSERT INTO "status" VALUES(70,3,16,'2015-06-02 12:58:02'); +INSERT INTO "status" VALUES(70,3,16,'2015-06-02 12:59:02'); +INSERT INTO "status" VALUES(70,3,16,'2015-06-02 13:00:01'); +INSERT INTO "status" VALUES(70,3,16,'2015-06-02 13:01:03'); +INSERT INTO "status" VALUES(70,3,16,'2015-06-02 13:02:02'); +INSERT INTO "status" VALUES(70,3,16,'2015-06-02 13:03:02'); +INSERT INTO "status" VALUES(70,3,16,'2015-06-02 13:04:02'); +INSERT INTO "status" VALUES(70,3,16,'2015-06-02 13:05:03'); +INSERT INTO "status" VALUES(70,3,16,'2015-06-02 13:06:02'); +INSERT INTO "status" VALUES(70,3,16,'2015-06-02 13:07:02'); +INSERT INTO "status" VALUES(70,4,15,'2015-06-02 13:08:02'); +INSERT INTO "status" VALUES(70,4,15,'2015-06-02 13:09:02'); +INSERT INTO "status" VALUES(70,4,15,'2015-06-02 13:10:02'); +INSERT INTO "status" VALUES(70,4,15,'2015-06-02 13:11:02'); +INSERT INTO "status" VALUES(70,4,15,'2015-06-02 13:12:02'); +INSERT INTO "status" VALUES(70,4,15,'2015-06-02 13:13:03'); +INSERT INTO "status" VALUES(70,4,15,'2015-06-02 13:14:03'); +INSERT INTO "status" VALUES(70,4,15,'2015-06-02 13:15:02'); +INSERT INTO "status" VALUES(70,4,15,'2015-06-02 13:16:02'); +INSERT INTO "status" VALUES(70,4,15,'2015-06-02 13:17:02'); +INSERT INTO "status" VALUES(70,4,15,'2015-06-02 13:18:02'); +INSERT INTO "status" VALUES(70,4,15,'2015-06-02 13:19:02'); +INSERT INTO "status" VALUES(70,4,15,'2015-06-02 13:20:02'); +INSERT INTO "status" VALUES(70,4,15,'2015-06-02 13:21:02'); +INSERT INTO "status" VALUES(70,4,15,'2015-06-02 13:22:02'); +INSERT INTO "status" VALUES(70,4,15,'2015-06-02 13:23:02'); +INSERT INTO "status" VALUES(70,4,15,'2015-06-02 13:24:02'); +INSERT INTO "status" VALUES(70,4,15,'2015-06-02 13:25:02'); +INSERT INTO "status" VALUES(70,4,15,'2015-06-02 13:26:02'); +INSERT INTO "status" VALUES(70,4,15,'2015-06-02 13:27:02'); +INSERT INTO "status" VALUES(70,4,15,'2015-06-02 13:28:02'); +INSERT INTO "status" VALUES(70,4,15,'2015-06-02 13:29:02'); +INSERT INTO "status" VALUES(70,4,15,'2015-06-02 13:30:02'); +INSERT INTO "status" VALUES(70,4,15,'2015-06-02 13:31:02'); +INSERT INTO "status" VALUES(70,4,15,'2015-06-02 13:32:02'); +INSERT INTO "status" VALUES(70,4,15,'2015-06-02 13:33:02'); +INSERT INTO "status" VALUES(70,4,15,'2015-06-02 13:34:02'); +INSERT INTO "status" VALUES(70,4,15,'2015-06-02 13:35:02'); +INSERT INTO "status" VALUES(70,4,15,'2015-06-02 13:36:02'); +INSERT INTO "status" VALUES(70,4,15,'2015-06-02 13:37:02'); +INSERT INTO "status" VALUES(70,4,15,'2015-06-02 13:38:02'); +INSERT INTO "status" VALUES(70,4,15,'2015-06-02 13:39:02'); +INSERT INTO "status" VALUES(70,4,15,'2015-06-02 13:40:02'); +INSERT INTO "status" VALUES(70,4,15,'2015-06-02 13:41:03'); +INSERT INTO "status" VALUES(70,4,15,'2015-06-02 13:42:03'); +INSERT INTO "status" VALUES(70,4,15,'2015-06-02 13:43:03'); +INSERT INTO "status" VALUES(70,4,15,'2015-06-02 13:44:02'); +INSERT INTO "status" VALUES(70,4,15,'2015-06-02 13:45:03'); +INSERT INTO "status" VALUES(70,4,15,'2015-06-02 13:46:02'); +INSERT INTO "status" VALUES(70,4,15,'2015-06-02 13:47:02'); +INSERT INTO "status" VALUES(70,4,15,'2015-06-02 13:48:02'); +INSERT INTO "status" VALUES(70,4,15,'2015-06-02 13:49:02'); +INSERT INTO "status" VALUES(70,4,15,'2015-06-02 13:50:03'); +INSERT INTO "status" VALUES(70,4,15,'2015-06-02 13:51:02'); +INSERT INTO "status" VALUES(70,4,15,'2015-06-02 13:52:02'); +INSERT INTO "status" VALUES(70,4,15,'2015-06-02 13:53:02'); +INSERT INTO "status" VALUES(70,4,15,'2015-06-02 13:54:02'); +INSERT INTO "status" VALUES(70,4,15,'2015-06-02 13:55:03'); +INSERT INTO "status" VALUES(70,4,15,'2015-06-02 13:56:02'); +INSERT INTO "status" VALUES(70,4,15,'2015-06-02 13:57:02'); +INSERT INTO "status" VALUES(70,4,15,'2015-06-02 13:58:02'); +INSERT INTO "status" VALUES(70,4,15,'2015-06-02 13:59:02'); +INSERT INTO "status" VALUES(70,4,15,'2015-06-02 14:00:02'); +INSERT INTO "status" VALUES(70,4,15,'2015-06-02 14:01:02'); +INSERT INTO "status" VALUES(70,4,15,'2015-06-02 14:02:02'); +INSERT INTO "status" VALUES(70,4,15,'2015-06-02 14:03:02'); +INSERT INTO "status" VALUES(70,4,15,'2015-06-02 14:04:02'); +INSERT INTO "status" VALUES(70,4,15,'2015-06-02 14:05:02'); +INSERT INTO "status" VALUES(70,4,15,'2015-06-02 14:06:02'); +INSERT INTO "status" VALUES(70,4,15,'2015-06-02 14:07:02'); +INSERT INTO "status" VALUES(70,4,15,'2015-06-02 14:08:02'); +INSERT INTO "status" VALUES(70,4,15,'2015-06-02 14:09:02'); +INSERT INTO "status" VALUES(70,4,15,'2015-06-02 14:10:02'); +INSERT INTO "status" VALUES(70,4,15,'2015-06-02 14:11:02'); +INSERT INTO "status" VALUES(70,4,15,'2015-06-02 14:12:02'); +INSERT INTO "status" VALUES(70,4,15,'2015-06-02 14:13:02'); +INSERT INTO "status" VALUES(70,4,15,'2015-06-02 14:14:02'); +INSERT INTO "status" VALUES(70,4,15,'2015-06-02 14:15:02'); +INSERT INTO "status" VALUES(70,4,15,'2015-06-02 14:16:02'); +INSERT INTO "status" VALUES(70,4,15,'2015-06-02 14:17:02'); +INSERT INTO "status" VALUES(70,4,15,'2015-06-02 14:18:02'); +INSERT INTO "status" VALUES(70,4,15,'2015-06-02 14:19:02'); +INSERT INTO "status" VALUES(70,4,15,'2015-06-02 14:20:03'); +INSERT INTO "status" VALUES(70,4,15,'2015-06-02 14:21:02'); +INSERT INTO "status" VALUES(70,4,15,'2015-06-02 14:22:02'); +INSERT INTO "status" VALUES(70,4,15,'2015-06-02 14:23:03'); +INSERT INTO "status" VALUES(70,4,15,'2015-06-02 14:24:02'); +INSERT INTO "status" VALUES(70,4,15,'2015-06-02 14:25:01'); +INSERT INTO "status" VALUES(70,4,15,'2015-06-02 14:26:02'); +INSERT INTO "status" VALUES(70,4,15,'2015-06-02 14:27:02'); +INSERT INTO "status" VALUES(70,4,15,'2015-06-02 14:28:02'); +INSERT INTO "status" VALUES(70,4,15,'2015-06-02 14:29:02'); +INSERT INTO "status" VALUES(70,4,15,'2015-06-02 14:30:02'); +INSERT INTO "status" VALUES(70,4,15,'2015-06-02 14:31:02'); +INSERT INTO "status" VALUES(70,4,15,'2015-06-02 14:32:02'); +INSERT INTO "status" VALUES(70,4,15,'2015-06-02 14:33:02'); +INSERT INTO "status" VALUES(70,4,15,'2015-06-02 14:34:02'); +INSERT INTO "status" VALUES(70,4,15,'2015-06-02 14:35:02'); +INSERT INTO "status" VALUES(70,4,15,'2015-06-02 14:36:02'); +INSERT INTO "status" VALUES(70,4,15,'2015-06-02 14:37:02'); +INSERT INTO "status" VALUES(70,4,15,'2015-06-02 14:38:02'); +INSERT INTO "status" VALUES(70,4,15,'2015-06-02 14:39:02'); +INSERT INTO "status" VALUES(70,4,15,'2015-06-02 14:40:02'); +INSERT INTO "status" VALUES(70,4,15,'2015-06-02 14:41:02'); +INSERT INTO "status" VALUES(70,4,15,'2015-06-02 14:42:02'); +INSERT INTO "status" VALUES(70,4,15,'2015-06-02 14:43:02'); +INSERT INTO "status" VALUES(70,4,15,'2015-06-02 14:44:02'); +INSERT INTO "status" VALUES(70,4,15,'2015-06-02 14:45:02'); +INSERT INTO "status" VALUES(70,4,15,'2015-06-02 14:46:02'); +INSERT INTO "status" VALUES(70,4,15,'2015-06-02 14:47:02'); +INSERT INTO "status" VALUES(70,4,15,'2015-06-02 14:48:02'); +INSERT INTO "status" VALUES(71,12,7,'2015-06-02 12:46:02'); +INSERT INTO "status" VALUES(71,12,7,'2015-06-02 12:47:02'); +INSERT INTO "status" VALUES(71,12,7,'2015-06-02 12:48:02'); +INSERT INTO "status" VALUES(71,12,7,'2015-06-02 12:49:02'); +INSERT INTO "status" VALUES(71,12,7,'2015-06-02 12:50:02'); +INSERT INTO "status" VALUES(71,12,7,'2015-06-02 12:51:02'); +INSERT INTO "status" VALUES(71,12,7,'2015-06-02 12:52:02'); +INSERT INTO "status" VALUES(71,12,7,'2015-06-02 12:53:03'); +INSERT INTO "status" VALUES(71,12,7,'2015-06-02 12:54:02'); +INSERT INTO "status" VALUES(71,12,7,'2015-06-02 12:55:02'); +INSERT INTO "status" VALUES(71,12,7,'2015-06-02 12:56:01'); +INSERT INTO "status" VALUES(71,12,7,'2015-06-02 12:57:02'); +INSERT INTO "status" VALUES(71,12,7,'2015-06-02 12:58:02'); +INSERT INTO "status" VALUES(71,12,7,'2015-06-02 12:59:02'); +INSERT INTO "status" VALUES(71,12,7,'2015-06-02 13:00:01'); +INSERT INTO "status" VALUES(71,12,7,'2015-06-02 13:01:03'); +INSERT INTO "status" VALUES(71,12,7,'2015-06-02 13:02:02'); +INSERT INTO "status" VALUES(71,12,7,'2015-06-02 13:03:02'); +INSERT INTO "status" VALUES(71,12,7,'2015-06-02 13:04:02'); +INSERT INTO "status" VALUES(71,12,7,'2015-06-02 13:05:03'); +INSERT INTO "status" VALUES(71,12,7,'2015-06-02 13:06:02'); +INSERT INTO "status" VALUES(71,12,7,'2015-06-02 13:07:02'); +INSERT INTO "status" VALUES(71,12,7,'2015-06-02 13:08:02'); +INSERT INTO "status" VALUES(71,12,7,'2015-06-02 13:09:02'); +INSERT INTO "status" VALUES(71,12,7,'2015-06-02 13:10:02'); +INSERT INTO "status" VALUES(71,12,7,'2015-06-02 13:11:02'); +INSERT INTO "status" VALUES(71,12,7,'2015-06-02 13:12:02'); +INSERT INTO "status" VALUES(71,12,7,'2015-06-02 13:13:03'); +INSERT INTO "status" VALUES(71,12,7,'2015-06-02 13:14:03'); +INSERT INTO "status" VALUES(71,12,7,'2015-06-02 13:15:02'); +INSERT INTO "status" VALUES(71,12,7,'2015-06-02 13:16:02'); +INSERT INTO "status" VALUES(71,12,7,'2015-06-02 13:17:02'); +INSERT INTO "status" VALUES(71,12,7,'2015-06-02 13:18:02'); +INSERT INTO "status" VALUES(71,12,7,'2015-06-02 13:19:02'); +INSERT INTO "status" VALUES(71,12,7,'2015-06-02 13:20:02'); +INSERT INTO "status" VALUES(71,12,7,'2015-06-02 13:21:02'); +INSERT INTO "status" VALUES(71,12,7,'2015-06-02 13:22:02'); +INSERT INTO "status" VALUES(71,12,7,'2015-06-02 13:23:02'); +INSERT INTO "status" VALUES(71,12,7,'2015-06-02 13:24:02'); +INSERT INTO "status" VALUES(71,12,7,'2015-06-02 13:25:02'); +INSERT INTO "status" VALUES(71,12,7,'2015-06-02 13:26:02'); +INSERT INTO "status" VALUES(71,12,7,'2015-06-02 13:27:02'); +INSERT INTO "status" VALUES(71,12,7,'2015-06-02 13:28:02'); +INSERT INTO "status" VALUES(71,12,7,'2015-06-02 13:29:02'); +INSERT INTO "status" VALUES(71,12,7,'2015-06-02 13:30:02'); +INSERT INTO "status" VALUES(71,12,7,'2015-06-02 13:31:02'); +INSERT INTO "status" VALUES(71,12,7,'2015-06-02 13:32:02'); +INSERT INTO "status" VALUES(71,12,7,'2015-06-02 13:33:02'); +INSERT INTO "status" VALUES(71,12,7,'2015-06-02 13:34:02'); +INSERT INTO "status" VALUES(71,12,7,'2015-06-02 13:35:02'); +INSERT INTO "status" VALUES(71,12,7,'2015-06-02 13:36:02'); +INSERT INTO "status" VALUES(71,12,7,'2015-06-02 13:37:02'); +INSERT INTO "status" VALUES(71,12,7,'2015-06-02 13:38:02'); +INSERT INTO "status" VALUES(71,12,7,'2015-06-02 13:39:02'); +INSERT INTO "status" VALUES(71,12,7,'2015-06-02 13:40:02'); +INSERT INTO "status" VALUES(71,12,7,'2015-06-02 13:41:03'); +INSERT INTO "status" VALUES(71,12,7,'2015-06-02 13:42:03'); +INSERT INTO "status" VALUES(71,12,7,'2015-06-02 13:43:03'); +INSERT INTO "status" VALUES(71,12,7,'2015-06-02 13:44:02'); +INSERT INTO "status" VALUES(71,12,7,'2015-06-02 13:45:03'); +INSERT INTO "status" VALUES(71,12,7,'2015-06-02 13:46:02'); +INSERT INTO "status" VALUES(71,12,7,'2015-06-02 13:47:02'); +INSERT INTO "status" VALUES(71,12,7,'2015-06-02 13:48:02'); +INSERT INTO "status" VALUES(71,12,7,'2015-06-02 13:49:02'); +INSERT INTO "status" VALUES(71,12,7,'2015-06-02 13:50:03'); +INSERT INTO "status" VALUES(71,12,7,'2015-06-02 13:51:02'); +INSERT INTO "status" VALUES(71,12,7,'2015-06-02 13:52:02'); +INSERT INTO "status" VALUES(71,12,7,'2015-06-02 13:53:02'); +INSERT INTO "status" VALUES(71,12,7,'2015-06-02 13:54:02'); +INSERT INTO "status" VALUES(71,12,7,'2015-06-02 13:55:03'); +INSERT INTO "status" VALUES(71,12,7,'2015-06-02 13:56:02'); +INSERT INTO "status" VALUES(71,12,7,'2015-06-02 13:57:02'); +INSERT INTO "status" VALUES(71,12,7,'2015-06-02 13:58:02'); +INSERT INTO "status" VALUES(71,12,7,'2015-06-02 13:59:02'); +INSERT INTO "status" VALUES(71,12,7,'2015-06-02 14:00:02'); +INSERT INTO "status" VALUES(71,12,7,'2015-06-02 14:01:02'); +INSERT INTO "status" VALUES(71,12,7,'2015-06-02 14:02:02'); +INSERT INTO "status" VALUES(71,12,7,'2015-06-02 14:03:02'); +INSERT INTO "status" VALUES(71,12,7,'2015-06-02 14:04:02'); +INSERT INTO "status" VALUES(71,12,7,'2015-06-02 14:05:02'); +INSERT INTO "status" VALUES(71,12,7,'2015-06-02 14:06:02'); +INSERT INTO "status" VALUES(71,12,7,'2015-06-02 14:07:02'); +INSERT INTO "status" VALUES(71,11,8,'2015-06-02 14:08:02'); +INSERT INTO "status" VALUES(71,10,9,'2015-06-02 14:09:02'); +INSERT INTO "status" VALUES(71,10,9,'2015-06-02 14:10:02'); +INSERT INTO "status" VALUES(71,10,9,'2015-06-02 14:11:02'); +INSERT INTO "status" VALUES(71,10,9,'2015-06-02 14:12:02'); +INSERT INTO "status" VALUES(71,10,9,'2015-06-02 14:13:02'); +INSERT INTO "status" VALUES(71,10,9,'2015-06-02 14:14:02'); +INSERT INTO "status" VALUES(71,10,9,'2015-06-02 14:15:02'); +INSERT INTO "status" VALUES(71,10,9,'2015-06-02 14:16:02'); +INSERT INTO "status" VALUES(71,10,9,'2015-06-02 14:17:02'); +INSERT INTO "status" VALUES(71,10,9,'2015-06-02 14:18:02'); +INSERT INTO "status" VALUES(71,10,9,'2015-06-02 14:19:02'); +INSERT INTO "status" VALUES(71,10,9,'2015-06-02 14:20:03'); +INSERT INTO "status" VALUES(71,10,9,'2015-06-02 14:21:02'); +INSERT INTO "status" VALUES(71,10,9,'2015-06-02 14:22:02'); +INSERT INTO "status" VALUES(71,10,9,'2015-06-02 14:23:03'); +INSERT INTO "status" VALUES(71,10,9,'2015-06-02 14:24:02'); +INSERT INTO "status" VALUES(71,10,9,'2015-06-02 14:25:01'); +INSERT INTO "status" VALUES(71,10,9,'2015-06-02 14:26:02'); +INSERT INTO "status" VALUES(71,10,9,'2015-06-02 14:27:02'); +INSERT INTO "status" VALUES(71,10,9,'2015-06-02 14:28:02'); +INSERT INTO "status" VALUES(71,10,9,'2015-06-02 14:29:02'); +INSERT INTO "status" VALUES(71,10,9,'2015-06-02 14:30:02'); +INSERT INTO "status" VALUES(71,10,9,'2015-06-02 14:31:02'); +INSERT INTO "status" VALUES(71,10,9,'2015-06-02 14:32:02'); +INSERT INTO "status" VALUES(71,10,9,'2015-06-02 14:33:02'); +INSERT INTO "status" VALUES(71,10,9,'2015-06-02 14:34:02'); +INSERT INTO "status" VALUES(71,10,9,'2015-06-02 14:35:02'); +INSERT INTO "status" VALUES(71,10,9,'2015-06-02 14:36:02'); +INSERT INTO "status" VALUES(71,10,9,'2015-06-02 14:37:02'); +INSERT INTO "status" VALUES(71,10,9,'2015-06-02 14:38:02'); +INSERT INTO "status" VALUES(71,10,9,'2015-06-02 14:39:02'); +INSERT INTO "status" VALUES(71,10,9,'2015-06-02 14:40:02'); +INSERT INTO "status" VALUES(71,10,9,'2015-06-02 14:41:02'); +INSERT INTO "status" VALUES(71,10,9,'2015-06-02 14:42:02'); +INSERT INTO "status" VALUES(71,10,9,'2015-06-02 14:43:02'); +INSERT INTO "status" VALUES(71,10,9,'2015-06-02 14:44:02'); +INSERT INTO "status" VALUES(71,10,9,'2015-06-02 14:45:02'); +INSERT INTO "status" VALUES(71,10,9,'2015-06-02 14:46:02'); +INSERT INTO "status" VALUES(71,10,9,'2015-06-02 14:47:02'); +INSERT INTO "status" VALUES(71,10,9,'2015-06-02 14:48:02'); +INSERT INTO "status" VALUES(72,14,9,'2015-06-02 12:46:02'); +INSERT INTO "status" VALUES(72,14,9,'2015-06-02 12:47:02'); +INSERT INTO "status" VALUES(72,14,9,'2015-06-02 12:48:02'); +INSERT INTO "status" VALUES(72,14,9,'2015-06-02 12:49:02'); +INSERT INTO "status" VALUES(72,14,9,'2015-06-02 12:50:02'); +INSERT INTO "status" VALUES(72,14,9,'2015-06-02 12:51:02'); +INSERT INTO "status" VALUES(72,14,9,'2015-06-02 12:52:02'); +INSERT INTO "status" VALUES(72,14,9,'2015-06-02 12:53:03'); +INSERT INTO "status" VALUES(72,14,9,'2015-06-02 12:54:02'); +INSERT INTO "status" VALUES(72,14,9,'2015-06-02 12:55:02'); +INSERT INTO "status" VALUES(72,14,9,'2015-06-02 12:56:01'); +INSERT INTO "status" VALUES(72,14,9,'2015-06-02 12:57:02'); +INSERT INTO "status" VALUES(72,14,9,'2015-06-02 12:58:02'); +INSERT INTO "status" VALUES(72,14,9,'2015-06-02 12:59:02'); +INSERT INTO "status" VALUES(72,14,9,'2015-06-02 13:00:01'); +INSERT INTO "status" VALUES(72,14,9,'2015-06-02 13:01:03'); +INSERT INTO "status" VALUES(72,14,9,'2015-06-02 13:02:02'); +INSERT INTO "status" VALUES(72,14,9,'2015-06-02 13:03:02'); +INSERT INTO "status" VALUES(72,14,9,'2015-06-02 13:04:02'); +INSERT INTO "status" VALUES(72,14,9,'2015-06-02 13:05:03'); +INSERT INTO "status" VALUES(72,15,8,'2015-06-02 13:06:02'); +INSERT INTO "status" VALUES(72,15,8,'2015-06-02 13:07:02'); +INSERT INTO "status" VALUES(72,15,8,'2015-06-02 13:08:02'); +INSERT INTO "status" VALUES(72,15,8,'2015-06-02 13:09:02'); +INSERT INTO "status" VALUES(72,15,8,'2015-06-02 13:10:02'); +INSERT INTO "status" VALUES(72,15,8,'2015-06-02 13:11:02'); +INSERT INTO "status" VALUES(72,15,8,'2015-06-02 13:12:02'); +INSERT INTO "status" VALUES(72,15,8,'2015-06-02 13:13:03'); +INSERT INTO "status" VALUES(72,15,8,'2015-06-02 13:14:03'); +INSERT INTO "status" VALUES(72,15,8,'2015-06-02 13:15:02'); +INSERT INTO "status" VALUES(72,15,8,'2015-06-02 13:16:02'); +INSERT INTO "status" VALUES(72,15,8,'2015-06-02 13:17:02'); +INSERT INTO "status" VALUES(72,15,8,'2015-06-02 13:18:02'); +INSERT INTO "status" VALUES(72,15,8,'2015-06-02 13:19:02'); +INSERT INTO "status" VALUES(72,15,8,'2015-06-02 13:20:02'); +INSERT INTO "status" VALUES(72,15,8,'2015-06-02 13:21:02'); +INSERT INTO "status" VALUES(72,15,8,'2015-06-02 13:22:02'); +INSERT INTO "status" VALUES(72,15,8,'2015-06-02 13:23:02'); +INSERT INTO "status" VALUES(72,15,8,'2015-06-02 13:24:02'); +INSERT INTO "status" VALUES(72,15,8,'2015-06-02 13:25:02'); +INSERT INTO "status" VALUES(72,15,8,'2015-06-02 13:26:02'); +INSERT INTO "status" VALUES(72,15,8,'2015-06-02 13:27:02'); +INSERT INTO "status" VALUES(72,15,8,'2015-06-02 13:28:02'); +INSERT INTO "status" VALUES(72,15,8,'2015-06-02 13:29:02'); +INSERT INTO "status" VALUES(72,15,8,'2015-06-02 13:30:02'); +INSERT INTO "status" VALUES(72,15,8,'2015-06-02 13:31:02'); +INSERT INTO "status" VALUES(72,15,8,'2015-06-02 13:32:02'); +INSERT INTO "status" VALUES(72,15,8,'2015-06-02 13:33:02'); +INSERT INTO "status" VALUES(72,15,8,'2015-06-02 13:34:02'); +INSERT INTO "status" VALUES(72,15,8,'2015-06-02 13:35:02'); +INSERT INTO "status" VALUES(72,15,8,'2015-06-02 13:36:02'); +INSERT INTO "status" VALUES(72,15,8,'2015-06-02 13:37:02'); +INSERT INTO "status" VALUES(72,15,8,'2015-06-02 13:38:02'); +INSERT INTO "status" VALUES(72,15,8,'2015-06-02 13:39:02'); +INSERT INTO "status" VALUES(72,15,8,'2015-06-02 13:40:02'); +INSERT INTO "status" VALUES(72,15,8,'2015-06-02 13:41:03'); +INSERT INTO "status" VALUES(72,15,8,'2015-06-02 13:42:03'); +INSERT INTO "status" VALUES(72,15,8,'2015-06-02 13:43:03'); +INSERT INTO "status" VALUES(72,15,8,'2015-06-02 13:44:02'); +INSERT INTO "status" VALUES(72,15,8,'2015-06-02 13:45:03'); +INSERT INTO "status" VALUES(72,15,8,'2015-06-02 13:46:02'); +INSERT INTO "status" VALUES(72,15,8,'2015-06-02 13:47:02'); +INSERT INTO "status" VALUES(72,15,8,'2015-06-02 13:48:02'); +INSERT INTO "status" VALUES(72,15,8,'2015-06-02 13:49:02'); +INSERT INTO "status" VALUES(72,15,8,'2015-06-02 13:50:03'); +INSERT INTO "status" VALUES(72,14,9,'2015-06-02 13:51:02'); +INSERT INTO "status" VALUES(72,14,9,'2015-06-02 13:52:02'); +INSERT INTO "status" VALUES(72,13,10,'2015-06-02 13:53:02'); +INSERT INTO "status" VALUES(72,13,10,'2015-06-02 13:54:02'); +INSERT INTO "status" VALUES(72,13,10,'2015-06-02 13:55:03'); +INSERT INTO "status" VALUES(72,13,10,'2015-06-02 13:56:02'); +INSERT INTO "status" VALUES(72,13,10,'2015-06-02 13:57:02'); +INSERT INTO "status" VALUES(72,13,10,'2015-06-02 13:58:02'); +INSERT INTO "status" VALUES(72,13,10,'2015-06-02 13:59:02'); +INSERT INTO "status" VALUES(72,13,10,'2015-06-02 14:00:02'); +INSERT INTO "status" VALUES(72,13,10,'2015-06-02 14:01:02'); +INSERT INTO "status" VALUES(72,13,10,'2015-06-02 14:02:02'); +INSERT INTO "status" VALUES(72,13,10,'2015-06-02 14:03:02'); +INSERT INTO "status" VALUES(72,13,10,'2015-06-02 14:04:02'); +INSERT INTO "status" VALUES(72,13,10,'2015-06-02 14:05:02'); +INSERT INTO "status" VALUES(72,13,10,'2015-06-02 14:06:02'); +INSERT INTO "status" VALUES(72,13,10,'2015-06-02 14:07:02'); +INSERT INTO "status" VALUES(72,13,10,'2015-06-02 14:08:02'); +INSERT INTO "status" VALUES(72,13,10,'2015-06-02 14:09:02'); +INSERT INTO "status" VALUES(72,13,10,'2015-06-02 14:10:02'); +INSERT INTO "status" VALUES(72,13,10,'2015-06-02 14:11:02'); +INSERT INTO "status" VALUES(72,13,10,'2015-06-02 14:12:02'); +INSERT INTO "status" VALUES(72,13,10,'2015-06-02 14:13:02'); +INSERT INTO "status" VALUES(72,13,10,'2015-06-02 14:14:02'); +INSERT INTO "status" VALUES(72,13,10,'2015-06-02 14:15:02'); +INSERT INTO "status" VALUES(72,13,10,'2015-06-02 14:16:02'); +INSERT INTO "status" VALUES(72,13,10,'2015-06-02 14:17:02'); +INSERT INTO "status" VALUES(72,13,10,'2015-06-02 14:18:02'); +INSERT INTO "status" VALUES(72,13,10,'2015-06-02 14:19:02'); +INSERT INTO "status" VALUES(72,13,10,'2015-06-02 14:20:03'); +INSERT INTO "status" VALUES(72,13,10,'2015-06-02 14:21:02'); +INSERT INTO "status" VALUES(72,13,10,'2015-06-02 14:22:02'); +INSERT INTO "status" VALUES(72,13,10,'2015-06-02 14:23:03'); +INSERT INTO "status" VALUES(72,13,10,'2015-06-02 14:24:02'); +INSERT INTO "status" VALUES(72,13,10,'2015-06-02 14:25:01'); +INSERT INTO "status" VALUES(72,13,10,'2015-06-02 14:26:02'); +INSERT INTO "status" VALUES(72,13,10,'2015-06-02 14:27:02'); +INSERT INTO "status" VALUES(72,13,10,'2015-06-02 14:28:02'); +INSERT INTO "status" VALUES(72,13,10,'2015-06-02 14:29:02'); +INSERT INTO "status" VALUES(72,13,10,'2015-06-02 14:30:02'); +INSERT INTO "status" VALUES(72,13,10,'2015-06-02 14:31:02'); +INSERT INTO "status" VALUES(72,13,10,'2015-06-02 14:32:02'); +INSERT INTO "status" VALUES(72,13,10,'2015-06-02 14:33:02'); +INSERT INTO "status" VALUES(72,13,10,'2015-06-02 14:34:02'); +INSERT INTO "status" VALUES(72,13,10,'2015-06-02 14:35:02'); +INSERT INTO "status" VALUES(72,13,10,'2015-06-02 14:36:02'); +INSERT INTO "status" VALUES(72,13,10,'2015-06-02 14:37:02'); +INSERT INTO "status" VALUES(72,13,10,'2015-06-02 14:38:02'); +INSERT INTO "status" VALUES(72,14,9,'2015-06-02 14:39:02'); +INSERT INTO "status" VALUES(72,14,9,'2015-06-02 14:40:02'); +INSERT INTO "status" VALUES(72,15,8,'2015-06-02 14:41:02'); +INSERT INTO "status" VALUES(72,15,8,'2015-06-02 14:42:02'); +INSERT INTO "status" VALUES(72,15,8,'2015-06-02 14:43:02'); +INSERT INTO "status" VALUES(72,15,8,'2015-06-02 14:44:02'); +INSERT INTO "status" VALUES(72,16,7,'2015-06-02 14:45:02'); +INSERT INTO "status" VALUES(72,16,7,'2015-06-02 14:46:02'); +INSERT INTO "status" VALUES(72,16,7,'2015-06-02 14:47:02'); +INSERT INTO "status" VALUES(72,16,7,'2015-06-02 14:48:02'); +INSERT INTO "status" VALUES(73,11,4,'2015-06-02 12:46:02'); +INSERT INTO "status" VALUES(73,11,4,'2015-06-02 12:47:02'); +INSERT INTO "status" VALUES(73,11,4,'2015-06-02 12:48:02'); +INSERT INTO "status" VALUES(73,11,4,'2015-06-02 12:49:02'); +INSERT INTO "status" VALUES(73,11,4,'2015-06-02 12:50:02'); +INSERT INTO "status" VALUES(73,11,4,'2015-06-02 12:51:02'); +INSERT INTO "status" VALUES(73,11,4,'2015-06-02 12:52:02'); +INSERT INTO "status" VALUES(73,11,4,'2015-06-02 12:53:03'); +INSERT INTO "status" VALUES(73,11,4,'2015-06-02 12:54:02'); +INSERT INTO "status" VALUES(73,11,4,'2015-06-02 12:55:02'); +INSERT INTO "status" VALUES(73,11,4,'2015-06-02 12:56:01'); +INSERT INTO "status" VALUES(73,11,4,'2015-06-02 12:57:02'); +INSERT INTO "status" VALUES(73,11,4,'2015-06-02 12:58:02'); +INSERT INTO "status" VALUES(73,11,4,'2015-06-02 12:59:02'); +INSERT INTO "status" VALUES(73,11,4,'2015-06-02 13:00:01'); +INSERT INTO "status" VALUES(73,11,4,'2015-06-02 13:01:03'); +INSERT INTO "status" VALUES(73,11,4,'2015-06-02 13:02:02'); +INSERT INTO "status" VALUES(73,11,4,'2015-06-02 13:03:02'); +INSERT INTO "status" VALUES(73,11,4,'2015-06-02 13:04:02'); +INSERT INTO "status" VALUES(73,11,4,'2015-06-02 13:05:03'); +INSERT INTO "status" VALUES(73,11,4,'2015-06-02 13:06:02'); +INSERT INTO "status" VALUES(73,11,4,'2015-06-02 13:07:02'); +INSERT INTO "status" VALUES(73,11,4,'2015-06-02 13:08:02'); +INSERT INTO "status" VALUES(73,11,4,'2015-06-02 13:09:02'); +INSERT INTO "status" VALUES(73,11,4,'2015-06-02 13:10:02'); +INSERT INTO "status" VALUES(73,11,4,'2015-06-02 13:11:02'); +INSERT INTO "status" VALUES(73,11,4,'2015-06-02 13:12:02'); +INSERT INTO "status" VALUES(73,11,4,'2015-06-02 13:13:03'); +INSERT INTO "status" VALUES(73,11,4,'2015-06-02 13:14:03'); +INSERT INTO "status" VALUES(73,11,4,'2015-06-02 13:15:02'); +INSERT INTO "status" VALUES(73,11,4,'2015-06-02 13:16:02'); +INSERT INTO "status" VALUES(73,11,4,'2015-06-02 13:17:02'); +INSERT INTO "status" VALUES(73,11,4,'2015-06-02 13:18:02'); +INSERT INTO "status" VALUES(73,11,4,'2015-06-02 13:19:02'); +INSERT INTO "status" VALUES(73,11,4,'2015-06-02 13:20:02'); +INSERT INTO "status" VALUES(73,11,4,'2015-06-02 13:21:02'); +INSERT INTO "status" VALUES(73,11,4,'2015-06-02 13:22:02'); +INSERT INTO "status" VALUES(73,11,4,'2015-06-02 13:23:02'); +INSERT INTO "status" VALUES(73,11,4,'2015-06-02 13:24:02'); +INSERT INTO "status" VALUES(73,11,4,'2015-06-02 13:25:02'); +INSERT INTO "status" VALUES(73,11,4,'2015-06-02 13:26:02'); +INSERT INTO "status" VALUES(73,11,4,'2015-06-02 13:27:02'); +INSERT INTO "status" VALUES(73,11,4,'2015-06-02 13:28:02'); +INSERT INTO "status" VALUES(73,11,4,'2015-06-02 13:29:02'); +INSERT INTO "status" VALUES(73,11,4,'2015-06-02 13:30:02'); +INSERT INTO "status" VALUES(73,11,4,'2015-06-02 13:31:02'); +INSERT INTO "status" VALUES(73,11,4,'2015-06-02 13:32:02'); +INSERT INTO "status" VALUES(73,11,4,'2015-06-02 13:33:02'); +INSERT INTO "status" VALUES(73,11,4,'2015-06-02 13:34:02'); +INSERT INTO "status" VALUES(73,10,5,'2015-06-02 13:35:02'); +INSERT INTO "status" VALUES(73,10,5,'2015-06-02 13:36:02'); +INSERT INTO "status" VALUES(73,10,5,'2015-06-02 13:37:02'); +INSERT INTO "status" VALUES(73,10,5,'2015-06-02 13:38:02'); +INSERT INTO "status" VALUES(73,10,5,'2015-06-02 13:39:02'); +INSERT INTO "status" VALUES(73,10,5,'2015-06-02 13:40:02'); +INSERT INTO "status" VALUES(73,10,5,'2015-06-02 13:41:03'); +INSERT INTO "status" VALUES(73,10,5,'2015-06-02 13:42:03'); +INSERT INTO "status" VALUES(73,10,5,'2015-06-02 13:43:03'); +INSERT INTO "status" VALUES(73,10,5,'2015-06-02 13:44:02'); +INSERT INTO "status" VALUES(73,10,5,'2015-06-02 13:45:03'); +INSERT INTO "status" VALUES(73,10,5,'2015-06-02 13:46:02'); +INSERT INTO "status" VALUES(73,10,5,'2015-06-02 13:47:02'); +INSERT INTO "status" VALUES(73,10,5,'2015-06-02 13:48:02'); +INSERT INTO "status" VALUES(73,10,5,'2015-06-02 13:49:02'); +INSERT INTO "status" VALUES(73,10,5,'2015-06-02 13:50:03'); +INSERT INTO "status" VALUES(73,10,5,'2015-06-02 13:51:02'); +INSERT INTO "status" VALUES(73,10,5,'2015-06-02 13:52:02'); +INSERT INTO "status" VALUES(73,10,5,'2015-06-02 13:53:02'); +INSERT INTO "status" VALUES(73,10,5,'2015-06-02 13:54:02'); +INSERT INTO "status" VALUES(73,10,5,'2015-06-02 13:55:03'); +INSERT INTO "status" VALUES(73,10,5,'2015-06-02 13:56:02'); +INSERT INTO "status" VALUES(73,10,5,'2015-06-02 13:57:02'); +INSERT INTO "status" VALUES(73,10,5,'2015-06-02 13:58:02'); +INSERT INTO "status" VALUES(73,10,5,'2015-06-02 13:59:02'); +INSERT INTO "status" VALUES(73,10,5,'2015-06-02 14:00:02'); +INSERT INTO "status" VALUES(73,10,5,'2015-06-02 14:01:02'); +INSERT INTO "status" VALUES(73,10,5,'2015-06-02 14:02:02'); +INSERT INTO "status" VALUES(73,10,5,'2015-06-02 14:03:02'); +INSERT INTO "status" VALUES(73,10,5,'2015-06-02 14:04:02'); +INSERT INTO "status" VALUES(73,10,5,'2015-06-02 14:05:02'); +INSERT INTO "status" VALUES(73,10,5,'2015-06-02 14:06:02'); +INSERT INTO "status" VALUES(73,10,5,'2015-06-02 14:07:02'); +INSERT INTO "status" VALUES(73,10,5,'2015-06-02 14:08:02'); +INSERT INTO "status" VALUES(73,10,5,'2015-06-02 14:09:02'); +INSERT INTO "status" VALUES(73,10,5,'2015-06-02 14:10:02'); +INSERT INTO "status" VALUES(73,10,5,'2015-06-02 14:11:02'); +INSERT INTO "status" VALUES(73,10,5,'2015-06-02 14:12:02'); +INSERT INTO "status" VALUES(73,10,5,'2015-06-02 14:13:02'); +INSERT INTO "status" VALUES(73,10,5,'2015-06-02 14:14:02'); +INSERT INTO "status" VALUES(73,10,5,'2015-06-02 14:15:02'); +INSERT INTO "status" VALUES(73,10,5,'2015-06-02 14:16:02'); +INSERT INTO "status" VALUES(73,10,5,'2015-06-02 14:17:02'); +INSERT INTO "status" VALUES(73,10,5,'2015-06-02 14:18:02'); +INSERT INTO "status" VALUES(73,10,5,'2015-06-02 14:19:02'); +INSERT INTO "status" VALUES(73,10,5,'2015-06-02 14:20:03'); +INSERT INTO "status" VALUES(73,10,5,'2015-06-02 14:21:02'); +INSERT INTO "status" VALUES(73,10,5,'2015-06-02 14:22:02'); +INSERT INTO "status" VALUES(73,10,5,'2015-06-02 14:23:03'); +INSERT INTO "status" VALUES(73,10,5,'2015-06-02 14:24:02'); +INSERT INTO "status" VALUES(73,10,5,'2015-06-02 14:25:01'); +INSERT INTO "status" VALUES(73,10,5,'2015-06-02 14:26:02'); +INSERT INTO "status" VALUES(73,10,5,'2015-06-02 14:27:02'); +INSERT INTO "status" VALUES(73,10,5,'2015-06-02 14:28:02'); +INSERT INTO "status" VALUES(73,10,5,'2015-06-02 14:29:02'); +INSERT INTO "status" VALUES(73,10,5,'2015-06-02 14:30:02'); +INSERT INTO "status" VALUES(73,10,5,'2015-06-02 14:31:02'); +INSERT INTO "status" VALUES(73,10,5,'2015-06-02 14:32:02'); +INSERT INTO "status" VALUES(73,10,5,'2015-06-02 14:33:02'); +INSERT INTO "status" VALUES(73,10,5,'2015-06-02 14:34:02'); +INSERT INTO "status" VALUES(73,10,5,'2015-06-02 14:35:02'); +INSERT INTO "status" VALUES(73,10,5,'2015-06-02 14:36:02'); +INSERT INTO "status" VALUES(73,10,5,'2015-06-02 14:37:02'); +INSERT INTO "status" VALUES(73,10,5,'2015-06-02 14:38:02'); +INSERT INTO "status" VALUES(73,10,5,'2015-06-02 14:39:02'); +INSERT INTO "status" VALUES(73,10,5,'2015-06-02 14:40:02'); +INSERT INTO "status" VALUES(73,10,5,'2015-06-02 14:41:02'); +INSERT INTO "status" VALUES(73,10,5,'2015-06-02 14:42:02'); +INSERT INTO "status" VALUES(73,10,5,'2015-06-02 14:43:02'); +INSERT INTO "status" VALUES(73,10,5,'2015-06-02 14:44:02'); +INSERT INTO "status" VALUES(73,10,5,'2015-06-02 14:45:02'); +INSERT INTO "status" VALUES(73,10,5,'2015-06-02 14:46:02'); +INSERT INTO "status" VALUES(73,10,5,'2015-06-02 14:47:02'); +INSERT INTO "status" VALUES(73,10,5,'2015-06-02 14:48:02'); +INSERT INTO "status" VALUES(74,6,17,'2015-06-02 12:46:02'); +INSERT INTO "status" VALUES(74,6,17,'2015-06-02 12:47:02'); +INSERT INTO "status" VALUES(74,6,17,'2015-06-02 12:48:02'); +INSERT INTO "status" VALUES(74,6,17,'2015-06-02 12:49:02'); +INSERT INTO "status" VALUES(74,6,17,'2015-06-02 12:50:02'); +INSERT INTO "status" VALUES(74,6,17,'2015-06-02 12:51:02'); +INSERT INTO "status" VALUES(74,6,17,'2015-06-02 12:52:02'); +INSERT INTO "status" VALUES(74,6,17,'2015-06-02 12:53:03'); +INSERT INTO "status" VALUES(74,6,17,'2015-06-02 12:54:02'); +INSERT INTO "status" VALUES(74,6,17,'2015-06-02 12:55:02'); +INSERT INTO "status" VALUES(74,6,17,'2015-06-02 12:56:01'); +INSERT INTO "status" VALUES(74,6,17,'2015-06-02 12:57:02'); +INSERT INTO "status" VALUES(74,6,17,'2015-06-02 12:58:02'); +INSERT INTO "status" VALUES(74,6,17,'2015-06-02 12:59:02'); +INSERT INTO "status" VALUES(74,8,15,'2015-06-02 13:00:01'); +INSERT INTO "status" VALUES(74,8,15,'2015-06-02 13:01:03'); +INSERT INTO "status" VALUES(74,8,15,'2015-06-02 13:02:02'); +INSERT INTO "status" VALUES(74,7,16,'2015-06-02 13:03:02'); +INSERT INTO "status" VALUES(74,7,16,'2015-06-02 13:04:02'); +INSERT INTO "status" VALUES(74,7,16,'2015-06-02 13:05:03'); +INSERT INTO "status" VALUES(74,7,16,'2015-06-02 13:06:02'); +INSERT INTO "status" VALUES(74,7,16,'2015-06-02 13:07:02'); +INSERT INTO "status" VALUES(74,7,16,'2015-06-02 13:08:02'); +INSERT INTO "status" VALUES(74,7,16,'2015-06-02 13:09:02'); +INSERT INTO "status" VALUES(74,7,16,'2015-06-02 13:10:02'); +INSERT INTO "status" VALUES(74,7,16,'2015-06-02 13:11:02'); +INSERT INTO "status" VALUES(74,7,16,'2015-06-02 13:12:02'); +INSERT INTO "status" VALUES(74,7,16,'2015-06-02 13:13:03'); +INSERT INTO "status" VALUES(74,7,16,'2015-06-02 13:14:03'); +INSERT INTO "status" VALUES(74,7,16,'2015-06-02 13:15:02'); +INSERT INTO "status" VALUES(74,7,16,'2015-06-02 13:16:02'); +INSERT INTO "status" VALUES(74,7,16,'2015-06-02 13:17:02'); +INSERT INTO "status" VALUES(74,7,16,'2015-06-02 13:18:02'); +INSERT INTO "status" VALUES(74,7,16,'2015-06-02 13:19:02'); +INSERT INTO "status" VALUES(74,7,16,'2015-06-02 13:20:02'); +INSERT INTO "status" VALUES(74,7,16,'2015-06-02 13:21:02'); +INSERT INTO "status" VALUES(74,7,16,'2015-06-02 13:22:02'); +INSERT INTO "status" VALUES(74,7,16,'2015-06-02 13:23:02'); +INSERT INTO "status" VALUES(74,7,16,'2015-06-02 13:24:02'); +INSERT INTO "status" VALUES(74,7,16,'2015-06-02 13:25:02'); +INSERT INTO "status" VALUES(74,7,16,'2015-06-02 13:26:02'); +INSERT INTO "status" VALUES(74,7,16,'2015-06-02 13:27:02'); +INSERT INTO "status" VALUES(74,7,16,'2015-06-02 13:28:02'); +INSERT INTO "status" VALUES(74,7,16,'2015-06-02 13:29:02'); +INSERT INTO "status" VALUES(74,7,16,'2015-06-02 13:30:02'); +INSERT INTO "status" VALUES(74,7,16,'2015-06-02 13:31:02'); +INSERT INTO "status" VALUES(74,7,16,'2015-06-02 13:32:02'); +INSERT INTO "status" VALUES(74,7,16,'2015-06-02 13:33:02'); +INSERT INTO "status" VALUES(74,7,16,'2015-06-02 13:34:02'); +INSERT INTO "status" VALUES(74,8,15,'2015-06-02 13:35:02'); +INSERT INTO "status" VALUES(74,8,15,'2015-06-02 13:36:02'); +INSERT INTO "status" VALUES(74,8,15,'2015-06-02 13:37:02'); +INSERT INTO "status" VALUES(74,8,15,'2015-06-02 13:38:02'); +INSERT INTO "status" VALUES(74,8,15,'2015-06-02 13:39:02'); +INSERT INTO "status" VALUES(74,8,15,'2015-06-02 13:40:02'); +INSERT INTO "status" VALUES(74,8,15,'2015-06-02 13:41:03'); +INSERT INTO "status" VALUES(74,8,15,'2015-06-02 13:42:03'); +INSERT INTO "status" VALUES(74,8,15,'2015-06-02 13:43:03'); +INSERT INTO "status" VALUES(74,8,15,'2015-06-02 13:44:02'); +INSERT INTO "status" VALUES(74,8,15,'2015-06-02 13:45:03'); +INSERT INTO "status" VALUES(74,8,15,'2015-06-02 13:46:02'); +INSERT INTO "status" VALUES(74,8,15,'2015-06-02 13:47:02'); +INSERT INTO "status" VALUES(74,7,16,'2015-06-02 13:48:02'); +INSERT INTO "status" VALUES(74,7,16,'2015-06-02 13:49:02'); +INSERT INTO "status" VALUES(74,7,16,'2015-06-02 13:50:03'); +INSERT INTO "status" VALUES(74,7,16,'2015-06-02 13:51:02'); +INSERT INTO "status" VALUES(74,7,16,'2015-06-02 13:52:02'); +INSERT INTO "status" VALUES(74,7,16,'2015-06-02 13:53:02'); +INSERT INTO "status" VALUES(74,7,16,'2015-06-02 13:54:02'); +INSERT INTO "status" VALUES(74,7,16,'2015-06-02 13:55:03'); +INSERT INTO "status" VALUES(74,7,16,'2015-06-02 13:56:02'); +INSERT INTO "status" VALUES(74,7,16,'2015-06-02 13:57:02'); +INSERT INTO "status" VALUES(74,7,16,'2015-06-02 13:58:02'); +INSERT INTO "status" VALUES(74,7,16,'2015-06-02 13:59:02'); +INSERT INTO "status" VALUES(74,7,16,'2015-06-02 14:00:02'); +INSERT INTO "status" VALUES(74,7,16,'2015-06-02 14:01:02'); +INSERT INTO "status" VALUES(74,7,16,'2015-06-02 14:02:02'); +INSERT INTO "status" VALUES(74,7,16,'2015-06-02 14:03:02'); +INSERT INTO "status" VALUES(74,7,16,'2015-06-02 14:04:02'); +INSERT INTO "status" VALUES(74,7,16,'2015-06-02 14:05:02'); +INSERT INTO "status" VALUES(74,7,16,'2015-06-02 14:06:02'); +INSERT INTO "status" VALUES(74,7,16,'2015-06-02 14:07:02'); +INSERT INTO "status" VALUES(74,7,16,'2015-06-02 14:08:02'); +INSERT INTO "status" VALUES(74,7,16,'2015-06-02 14:09:02'); +INSERT INTO "status" VALUES(74,8,15,'2015-06-02 14:10:02'); +INSERT INTO "status" VALUES(74,8,15,'2015-06-02 14:11:02'); +INSERT INTO "status" VALUES(74,8,15,'2015-06-02 14:12:02'); +INSERT INTO "status" VALUES(74,8,15,'2015-06-02 14:13:02'); +INSERT INTO "status" VALUES(74,8,15,'2015-06-02 14:14:02'); +INSERT INTO "status" VALUES(74,8,15,'2015-06-02 14:15:02'); +INSERT INTO "status" VALUES(74,8,15,'2015-06-02 14:16:02'); +INSERT INTO "status" VALUES(74,8,15,'2015-06-02 14:17:02'); +INSERT INTO "status" VALUES(74,8,15,'2015-06-02 14:18:02'); +INSERT INTO "status" VALUES(74,8,15,'2015-06-02 14:19:02'); +INSERT INTO "status" VALUES(74,8,15,'2015-06-02 14:20:03'); +INSERT INTO "status" VALUES(74,8,15,'2015-06-02 14:21:02'); +INSERT INTO "status" VALUES(74,8,15,'2015-06-02 14:22:02'); +INSERT INTO "status" VALUES(74,8,15,'2015-06-02 14:23:03'); +INSERT INTO "status" VALUES(74,8,15,'2015-06-02 14:24:02'); +INSERT INTO "status" VALUES(74,8,15,'2015-06-02 14:25:01'); +INSERT INTO "status" VALUES(74,8,15,'2015-06-02 14:26:02'); +INSERT INTO "status" VALUES(74,8,15,'2015-06-02 14:27:02'); +INSERT INTO "status" VALUES(74,8,15,'2015-06-02 14:28:02'); +INSERT INTO "status" VALUES(74,8,15,'2015-06-02 14:29:02'); +INSERT INTO "status" VALUES(74,8,15,'2015-06-02 14:30:02'); +INSERT INTO "status" VALUES(74,8,15,'2015-06-02 14:31:02'); +INSERT INTO "status" VALUES(74,8,15,'2015-06-02 14:32:02'); +INSERT INTO "status" VALUES(74,8,15,'2015-06-02 14:33:02'); +INSERT INTO "status" VALUES(74,8,15,'2015-06-02 14:34:02'); +INSERT INTO "status" VALUES(74,8,15,'2015-06-02 14:35:02'); +INSERT INTO "status" VALUES(74,8,15,'2015-06-02 14:36:02'); +INSERT INTO "status" VALUES(74,9,14,'2015-06-02 14:37:02'); +INSERT INTO "status" VALUES(74,9,14,'2015-06-02 14:38:02'); +INSERT INTO "status" VALUES(74,9,14,'2015-06-02 14:39:02'); +INSERT INTO "status" VALUES(74,9,14,'2015-06-02 14:40:02'); +INSERT INTO "status" VALUES(74,9,14,'2015-06-02 14:41:02'); +INSERT INTO "status" VALUES(74,9,14,'2015-06-02 14:42:02'); +INSERT INTO "status" VALUES(74,9,14,'2015-06-02 14:43:02'); +INSERT INTO "status" VALUES(74,9,14,'2015-06-02 14:44:02'); +INSERT INTO "status" VALUES(74,9,14,'2015-06-02 14:45:02'); +INSERT INTO "status" VALUES(74,9,14,'2015-06-02 14:46:02'); +INSERT INTO "status" VALUES(74,9,14,'2015-06-02 14:47:02'); +INSERT INTO "status" VALUES(74,9,14,'2015-06-02 14:48:02'); +INSERT INTO "status" VALUES(75,10,9,'2015-06-02 12:46:02'); +INSERT INTO "status" VALUES(75,10,9,'2015-06-02 12:47:02'); +INSERT INTO "status" VALUES(75,10,9,'2015-06-02 12:48:02'); +INSERT INTO "status" VALUES(75,10,9,'2015-06-02 12:49:02'); +INSERT INTO "status" VALUES(75,10,9,'2015-06-02 12:50:02'); +INSERT INTO "status" VALUES(75,10,9,'2015-06-02 12:51:02'); +INSERT INTO "status" VALUES(75,10,9,'2015-06-02 12:52:02'); +INSERT INTO "status" VALUES(75,10,9,'2015-06-02 12:53:03'); +INSERT INTO "status" VALUES(75,9,10,'2015-06-02 12:54:02'); +INSERT INTO "status" VALUES(75,9,10,'2015-06-02 12:55:02'); +INSERT INTO "status" VALUES(75,9,10,'2015-06-02 12:56:01'); +INSERT INTO "status" VALUES(75,9,10,'2015-06-02 12:57:02'); +INSERT INTO "status" VALUES(75,9,10,'2015-06-02 12:58:02'); +INSERT INTO "status" VALUES(75,9,10,'2015-06-02 12:59:02'); +INSERT INTO "status" VALUES(75,9,10,'2015-06-02 13:00:01'); +INSERT INTO "status" VALUES(75,9,10,'2015-06-02 13:01:03'); +INSERT INTO "status" VALUES(75,9,10,'2015-06-02 13:02:02'); +INSERT INTO "status" VALUES(75,9,10,'2015-06-02 13:03:02'); +INSERT INTO "status" VALUES(75,9,10,'2015-06-02 13:04:02'); +INSERT INTO "status" VALUES(75,9,10,'2015-06-02 13:05:03'); +INSERT INTO "status" VALUES(75,9,10,'2015-06-02 13:06:02'); +INSERT INTO "status" VALUES(75,9,10,'2015-06-02 13:07:02'); +INSERT INTO "status" VALUES(75,9,10,'2015-06-02 13:08:02'); +INSERT INTO "status" VALUES(75,9,10,'2015-06-02 13:09:02'); +INSERT INTO "status" VALUES(75,9,10,'2015-06-02 13:10:02'); +INSERT INTO "status" VALUES(75,9,10,'2015-06-02 13:11:02'); +INSERT INTO "status" VALUES(75,9,10,'2015-06-02 13:12:02'); +INSERT INTO "status" VALUES(75,9,10,'2015-06-02 13:13:03'); +INSERT INTO "status" VALUES(75,9,10,'2015-06-02 13:14:03'); +INSERT INTO "status" VALUES(75,9,10,'2015-06-02 13:15:02'); +INSERT INTO "status" VALUES(75,9,10,'2015-06-02 13:16:02'); +INSERT INTO "status" VALUES(75,9,10,'2015-06-02 13:17:02'); +INSERT INTO "status" VALUES(75,9,10,'2015-06-02 13:18:02'); +INSERT INTO "status" VALUES(75,9,10,'2015-06-02 13:19:02'); +INSERT INTO "status" VALUES(75,10,9,'2015-06-02 13:20:02'); +INSERT INTO "status" VALUES(75,10,9,'2015-06-02 13:21:02'); +INSERT INTO "status" VALUES(75,10,9,'2015-06-02 13:22:02'); +INSERT INTO "status" VALUES(75,10,9,'2015-06-02 13:23:02'); +INSERT INTO "status" VALUES(75,10,9,'2015-06-02 13:24:02'); +INSERT INTO "status" VALUES(75,10,9,'2015-06-02 13:25:02'); +INSERT INTO "status" VALUES(75,10,9,'2015-06-02 13:26:02'); +INSERT INTO "status" VALUES(75,10,9,'2015-06-02 13:27:02'); +INSERT INTO "status" VALUES(75,10,9,'2015-06-02 13:28:02'); +INSERT INTO "status" VALUES(75,10,9,'2015-06-02 13:29:02'); +INSERT INTO "status" VALUES(75,11,8,'2015-06-02 13:30:02'); +INSERT INTO "status" VALUES(75,11,8,'2015-06-02 13:31:02'); +INSERT INTO "status" VALUES(75,11,8,'2015-06-02 13:32:02'); +INSERT INTO "status" VALUES(75,11,8,'2015-06-02 13:33:02'); +INSERT INTO "status" VALUES(75,11,8,'2015-06-02 13:34:02'); +INSERT INTO "status" VALUES(75,11,8,'2015-06-02 13:35:02'); +INSERT INTO "status" VALUES(75,11,8,'2015-06-02 13:36:02'); +INSERT INTO "status" VALUES(75,11,8,'2015-06-02 13:37:02'); +INSERT INTO "status" VALUES(75,11,8,'2015-06-02 13:38:02'); +INSERT INTO "status" VALUES(75,12,7,'2015-06-02 13:39:02'); +INSERT INTO "status" VALUES(75,12,7,'2015-06-02 13:40:02'); +INSERT INTO "status" VALUES(75,12,7,'2015-06-02 13:41:03'); +INSERT INTO "status" VALUES(75,12,7,'2015-06-02 13:42:03'); +INSERT INTO "status" VALUES(75,12,7,'2015-06-02 13:43:03'); +INSERT INTO "status" VALUES(75,12,7,'2015-06-02 13:44:02'); +INSERT INTO "status" VALUES(75,12,7,'2015-06-02 13:45:03'); +INSERT INTO "status" VALUES(75,12,7,'2015-06-02 13:46:02'); +INSERT INTO "status" VALUES(75,12,7,'2015-06-02 13:47:02'); +INSERT INTO "status" VALUES(75,12,7,'2015-06-02 13:48:02'); +INSERT INTO "status" VALUES(75,12,7,'2015-06-02 13:49:02'); +INSERT INTO "status" VALUES(75,12,7,'2015-06-02 13:50:03'); +INSERT INTO "status" VALUES(75,12,7,'2015-06-02 13:51:02'); +INSERT INTO "status" VALUES(75,12,7,'2015-06-02 13:52:02'); +INSERT INTO "status" VALUES(75,12,7,'2015-06-02 13:53:02'); +INSERT INTO "status" VALUES(75,12,7,'2015-06-02 13:54:02'); +INSERT INTO "status" VALUES(75,12,7,'2015-06-02 13:55:03'); +INSERT INTO "status" VALUES(75,12,7,'2015-06-02 13:56:02'); +INSERT INTO "status" VALUES(75,12,7,'2015-06-02 13:57:02'); +INSERT INTO "status" VALUES(75,12,7,'2015-06-02 13:58:02'); +INSERT INTO "status" VALUES(75,12,7,'2015-06-02 13:59:02'); +INSERT INTO "status" VALUES(75,12,7,'2015-06-02 14:00:02'); +INSERT INTO "status" VALUES(75,12,7,'2015-06-02 14:01:02'); +INSERT INTO "status" VALUES(75,12,7,'2015-06-02 14:02:02'); +INSERT INTO "status" VALUES(75,12,7,'2015-06-02 14:03:02'); +INSERT INTO "status" VALUES(75,12,7,'2015-06-02 14:04:02'); +INSERT INTO "status" VALUES(75,12,7,'2015-06-02 14:05:02'); +INSERT INTO "status" VALUES(75,12,7,'2015-06-02 14:06:02'); +INSERT INTO "status" VALUES(75,12,7,'2015-06-02 14:07:02'); +INSERT INTO "status" VALUES(75,12,7,'2015-06-02 14:08:02'); +INSERT INTO "status" VALUES(75,12,7,'2015-06-02 14:09:02'); +INSERT INTO "status" VALUES(75,12,7,'2015-06-02 14:10:02'); +INSERT INTO "status" VALUES(75,12,7,'2015-06-02 14:11:02'); +INSERT INTO "status" VALUES(75,12,7,'2015-06-02 14:12:02'); +INSERT INTO "status" VALUES(75,12,7,'2015-06-02 14:13:02'); +INSERT INTO "status" VALUES(75,12,7,'2015-06-02 14:14:02'); +INSERT INTO "status" VALUES(75,12,7,'2015-06-02 14:15:02'); +INSERT INTO "status" VALUES(75,12,7,'2015-06-02 14:16:02'); +INSERT INTO "status" VALUES(75,12,7,'2015-06-02 14:17:02'); +INSERT INTO "status" VALUES(75,12,7,'2015-06-02 14:18:02'); +INSERT INTO "status" VALUES(75,12,7,'2015-06-02 14:19:02'); +INSERT INTO "status" VALUES(75,12,7,'2015-06-02 14:20:03'); +INSERT INTO "status" VALUES(75,12,7,'2015-06-02 14:21:02'); +INSERT INTO "status" VALUES(75,12,7,'2015-06-02 14:22:02'); +INSERT INTO "status" VALUES(75,12,7,'2015-06-02 14:23:03'); +INSERT INTO "status" VALUES(75,12,7,'2015-06-02 14:24:02'); +INSERT INTO "status" VALUES(75,12,7,'2015-06-02 14:25:01'); +INSERT INTO "status" VALUES(75,12,7,'2015-06-02 14:26:02'); +INSERT INTO "status" VALUES(75,12,7,'2015-06-02 14:27:02'); +INSERT INTO "status" VALUES(75,12,7,'2015-06-02 14:28:02'); +INSERT INTO "status" VALUES(75,12,7,'2015-06-02 14:29:02'); +INSERT INTO "status" VALUES(75,12,7,'2015-06-02 14:30:02'); +INSERT INTO "status" VALUES(75,12,7,'2015-06-02 14:31:02'); +INSERT INTO "status" VALUES(75,12,7,'2015-06-02 14:32:02'); +INSERT INTO "status" VALUES(75,12,7,'2015-06-02 14:33:02'); +INSERT INTO "status" VALUES(75,12,7,'2015-06-02 14:34:02'); +INSERT INTO "status" VALUES(75,13,6,'2015-06-02 14:35:02'); +INSERT INTO "status" VALUES(75,13,6,'2015-06-02 14:36:02'); +INSERT INTO "status" VALUES(75,13,6,'2015-06-02 14:37:02'); +INSERT INTO "status" VALUES(75,13,6,'2015-06-02 14:38:02'); +INSERT INTO "status" VALUES(75,13,6,'2015-06-02 14:39:02'); +INSERT INTO "status" VALUES(75,13,6,'2015-06-02 14:40:02'); +INSERT INTO "status" VALUES(75,13,6,'2015-06-02 14:41:02'); +INSERT INTO "status" VALUES(75,13,6,'2015-06-02 14:42:02'); +INSERT INTO "status" VALUES(75,13,6,'2015-06-02 14:43:02'); +INSERT INTO "status" VALUES(75,13,6,'2015-06-02 14:44:02'); +INSERT INTO "status" VALUES(75,13,6,'2015-06-02 14:45:02'); +INSERT INTO "status" VALUES(75,13,6,'2015-06-02 14:46:02'); +INSERT INTO "status" VALUES(75,13,6,'2015-06-02 14:47:02'); +INSERT INTO "status" VALUES(75,13,6,'2015-06-02 14:48:02'); +INSERT INTO "status" VALUES(76,8,11,'2015-06-02 12:46:02'); +INSERT INTO "status" VALUES(76,8,11,'2015-06-02 12:47:02'); +INSERT INTO "status" VALUES(76,8,11,'2015-06-02 12:48:02'); +INSERT INTO "status" VALUES(76,8,11,'2015-06-02 12:49:02'); +INSERT INTO "status" VALUES(76,8,11,'2015-06-02 12:50:02'); +INSERT INTO "status" VALUES(76,8,11,'2015-06-02 12:51:02'); +INSERT INTO "status" VALUES(76,8,11,'2015-06-02 12:52:02'); +INSERT INTO "status" VALUES(76,8,11,'2015-06-02 12:53:03'); +INSERT INTO "status" VALUES(76,8,11,'2015-06-02 12:54:02'); +INSERT INTO "status" VALUES(76,8,11,'2015-06-02 12:55:02'); +INSERT INTO "status" VALUES(76,8,11,'2015-06-02 12:56:01'); +INSERT INTO "status" VALUES(76,8,11,'2015-06-02 12:57:02'); +INSERT INTO "status" VALUES(76,9,10,'2015-06-02 12:58:02'); +INSERT INTO "status" VALUES(76,10,9,'2015-06-02 12:59:02'); +INSERT INTO "status" VALUES(76,10,9,'2015-06-02 13:00:01'); +INSERT INTO "status" VALUES(76,10,9,'2015-06-02 13:01:03'); +INSERT INTO "status" VALUES(76,10,9,'2015-06-02 13:02:02'); +INSERT INTO "status" VALUES(76,10,9,'2015-06-02 13:03:02'); +INSERT INTO "status" VALUES(76,11,8,'2015-06-02 13:04:02'); +INSERT INTO "status" VALUES(76,11,8,'2015-06-02 13:05:03'); +INSERT INTO "status" VALUES(76,11,8,'2015-06-02 13:06:02'); +INSERT INTO "status" VALUES(76,11,8,'2015-06-02 13:07:02'); +INSERT INTO "status" VALUES(76,11,8,'2015-06-02 13:08:02'); +INSERT INTO "status" VALUES(76,11,8,'2015-06-02 13:09:02'); +INSERT INTO "status" VALUES(76,11,8,'2015-06-02 13:10:02'); +INSERT INTO "status" VALUES(76,11,8,'2015-06-02 13:11:02'); +INSERT INTO "status" VALUES(76,11,8,'2015-06-02 13:12:02'); +INSERT INTO "status" VALUES(76,11,8,'2015-06-02 13:13:03'); +INSERT INTO "status" VALUES(76,11,8,'2015-06-02 13:14:03'); +INSERT INTO "status" VALUES(76,11,8,'2015-06-02 13:15:02'); +INSERT INTO "status" VALUES(76,11,8,'2015-06-02 13:16:02'); +INSERT INTO "status" VALUES(76,11,8,'2015-06-02 13:17:02'); +INSERT INTO "status" VALUES(76,11,8,'2015-06-02 13:18:02'); +INSERT INTO "status" VALUES(76,11,8,'2015-06-02 13:19:02'); +INSERT INTO "status" VALUES(76,11,8,'2015-06-02 13:20:02'); +INSERT INTO "status" VALUES(76,11,8,'2015-06-02 13:21:02'); +INSERT INTO "status" VALUES(76,11,8,'2015-06-02 13:22:02'); +INSERT INTO "status" VALUES(76,11,8,'2015-06-02 13:23:02'); +INSERT INTO "status" VALUES(76,11,8,'2015-06-02 13:24:02'); +INSERT INTO "status" VALUES(76,11,8,'2015-06-02 13:25:02'); +INSERT INTO "status" VALUES(76,10,9,'2015-06-02 13:26:02'); +INSERT INTO "status" VALUES(76,10,9,'2015-06-02 13:27:02'); +INSERT INTO "status" VALUES(76,10,9,'2015-06-02 13:28:02'); +INSERT INTO "status" VALUES(76,10,9,'2015-06-02 13:29:02'); +INSERT INTO "status" VALUES(76,10,9,'2015-06-02 13:30:02'); +INSERT INTO "status" VALUES(76,10,9,'2015-06-02 13:31:02'); +INSERT INTO "status" VALUES(76,10,9,'2015-06-02 13:32:02'); +INSERT INTO "status" VALUES(76,10,9,'2015-06-02 13:33:02'); +INSERT INTO "status" VALUES(76,10,9,'2015-06-02 13:34:02'); +INSERT INTO "status" VALUES(76,10,9,'2015-06-02 13:35:02'); +INSERT INTO "status" VALUES(76,10,9,'2015-06-02 13:36:02'); +INSERT INTO "status" VALUES(76,10,9,'2015-06-02 13:37:02'); +INSERT INTO "status" VALUES(76,10,9,'2015-06-02 13:38:02'); +INSERT INTO "status" VALUES(76,10,9,'2015-06-02 13:39:02'); +INSERT INTO "status" VALUES(76,10,9,'2015-06-02 13:40:02'); +INSERT INTO "status" VALUES(76,10,9,'2015-06-02 13:41:03'); +INSERT INTO "status" VALUES(76,10,9,'2015-06-02 13:42:03'); +INSERT INTO "status" VALUES(76,10,9,'2015-06-02 13:43:03'); +INSERT INTO "status" VALUES(76,10,9,'2015-06-02 13:44:02'); +INSERT INTO "status" VALUES(76,10,9,'2015-06-02 13:45:03'); +INSERT INTO "status" VALUES(76,10,9,'2015-06-02 13:46:02'); +INSERT INTO "status" VALUES(76,10,9,'2015-06-02 13:47:02'); +INSERT INTO "status" VALUES(76,10,9,'2015-06-02 13:48:02'); +INSERT INTO "status" VALUES(76,10,9,'2015-06-02 13:49:02'); +INSERT INTO "status" VALUES(76,10,9,'2015-06-02 13:50:03'); +INSERT INTO "status" VALUES(76,10,9,'2015-06-02 13:51:02'); +INSERT INTO "status" VALUES(76,10,9,'2015-06-02 13:52:02'); +INSERT INTO "status" VALUES(76,10,9,'2015-06-02 13:53:02'); +INSERT INTO "status" VALUES(76,10,9,'2015-06-02 13:54:02'); +INSERT INTO "status" VALUES(76,10,9,'2015-06-02 13:55:03'); +INSERT INTO "status" VALUES(76,10,9,'2015-06-02 13:56:02'); +INSERT INTO "status" VALUES(76,10,9,'2015-06-02 13:57:02'); +INSERT INTO "status" VALUES(76,10,9,'2015-06-02 13:58:02'); +INSERT INTO "status" VALUES(76,10,9,'2015-06-02 13:59:02'); +INSERT INTO "status" VALUES(76,10,9,'2015-06-02 14:00:02'); +INSERT INTO "status" VALUES(76,10,9,'2015-06-02 14:01:02'); +INSERT INTO "status" VALUES(76,10,9,'2015-06-02 14:02:02'); +INSERT INTO "status" VALUES(76,10,9,'2015-06-02 14:03:02'); +INSERT INTO "status" VALUES(76,10,9,'2015-06-02 14:04:02'); +INSERT INTO "status" VALUES(76,10,9,'2015-06-02 14:05:02'); +INSERT INTO "status" VALUES(76,10,9,'2015-06-02 14:06:02'); +INSERT INTO "status" VALUES(76,10,9,'2015-06-02 14:07:02'); +INSERT INTO "status" VALUES(76,10,9,'2015-06-02 14:08:02'); +INSERT INTO "status" VALUES(76,10,9,'2015-06-02 14:09:02'); +INSERT INTO "status" VALUES(76,10,9,'2015-06-02 14:10:02'); +INSERT INTO "status" VALUES(76,10,9,'2015-06-02 14:11:02'); +INSERT INTO "status" VALUES(76,10,9,'2015-06-02 14:12:02'); +INSERT INTO "status" VALUES(76,10,9,'2015-06-02 14:13:02'); +INSERT INTO "status" VALUES(76,10,9,'2015-06-02 14:14:02'); +INSERT INTO "status" VALUES(76,10,9,'2015-06-02 14:15:02'); +INSERT INTO "status" VALUES(76,10,9,'2015-06-02 14:16:02'); +INSERT INTO "status" VALUES(76,10,9,'2015-06-02 14:17:02'); +INSERT INTO "status" VALUES(76,10,9,'2015-06-02 14:18:02'); +INSERT INTO "status" VALUES(76,10,9,'2015-06-02 14:19:02'); +INSERT INTO "status" VALUES(76,10,9,'2015-06-02 14:20:03'); +INSERT INTO "status" VALUES(76,10,9,'2015-06-02 14:21:02'); +INSERT INTO "status" VALUES(76,10,9,'2015-06-02 14:22:02'); +INSERT INTO "status" VALUES(76,10,9,'2015-06-02 14:23:03'); +INSERT INTO "status" VALUES(76,10,9,'2015-06-02 14:24:02'); +INSERT INTO "status" VALUES(76,10,9,'2015-06-02 14:25:01'); +INSERT INTO "status" VALUES(76,9,10,'2015-06-02 14:26:02'); +INSERT INTO "status" VALUES(76,9,10,'2015-06-02 14:27:02'); +INSERT INTO "status" VALUES(76,9,10,'2015-06-02 14:28:02'); +INSERT INTO "status" VALUES(76,9,10,'2015-06-02 14:29:02'); +INSERT INTO "status" VALUES(76,9,10,'2015-06-02 14:30:02'); +INSERT INTO "status" VALUES(76,9,10,'2015-06-02 14:31:02'); +INSERT INTO "status" VALUES(76,9,10,'2015-06-02 14:32:02'); +INSERT INTO "status" VALUES(76,9,10,'2015-06-02 14:33:02'); +INSERT INTO "status" VALUES(76,9,10,'2015-06-02 14:34:02'); +INSERT INTO "status" VALUES(76,9,10,'2015-06-02 14:35:02'); +INSERT INTO "status" VALUES(76,9,10,'2015-06-02 14:36:02'); +INSERT INTO "status" VALUES(76,9,10,'2015-06-02 14:37:02'); +INSERT INTO "status" VALUES(76,9,10,'2015-06-02 14:38:02'); +INSERT INTO "status" VALUES(76,9,10,'2015-06-02 14:39:02'); +INSERT INTO "status" VALUES(76,9,10,'2015-06-02 14:40:02'); +INSERT INTO "status" VALUES(76,9,10,'2015-06-02 14:41:02'); +INSERT INTO "status" VALUES(76,9,10,'2015-06-02 14:42:02'); +INSERT INTO "status" VALUES(76,9,10,'2015-06-02 14:43:02'); +INSERT INTO "status" VALUES(76,9,10,'2015-06-02 14:44:02'); +INSERT INTO "status" VALUES(76,9,10,'2015-06-02 14:45:02'); +INSERT INTO "status" VALUES(76,9,10,'2015-06-02 14:46:02'); +INSERT INTO "status" VALUES(76,9,10,'2015-06-02 14:47:02'); +INSERT INTO "status" VALUES(76,9,10,'2015-06-02 14:48:02'); +INSERT INTO "status" VALUES(77,15,12,'2015-06-02 12:46:02'); +INSERT INTO "status" VALUES(77,15,12,'2015-06-02 12:47:02'); +INSERT INTO "status" VALUES(77,15,12,'2015-06-02 12:48:02'); +INSERT INTO "status" VALUES(77,15,12,'2015-06-02 12:49:02'); +INSERT INTO "status" VALUES(77,15,12,'2015-06-02 12:50:02'); +INSERT INTO "status" VALUES(77,15,12,'2015-06-02 12:51:02'); +INSERT INTO "status" VALUES(77,15,12,'2015-06-02 12:52:02'); +INSERT INTO "status" VALUES(77,15,12,'2015-06-02 12:53:03'); +INSERT INTO "status" VALUES(77,14,13,'2015-06-02 12:54:02'); +INSERT INTO "status" VALUES(77,14,13,'2015-06-02 12:55:02'); +INSERT INTO "status" VALUES(77,14,13,'2015-06-02 12:56:01'); +INSERT INTO "status" VALUES(77,14,13,'2015-06-02 12:57:02'); +INSERT INTO "status" VALUES(77,14,13,'2015-06-02 12:58:02'); +INSERT INTO "status" VALUES(77,14,13,'2015-06-02 12:59:02'); +INSERT INTO "status" VALUES(77,13,14,'2015-06-02 13:00:01'); +INSERT INTO "status" VALUES(77,14,13,'2015-06-02 13:01:03'); +INSERT INTO "status" VALUES(77,14,13,'2015-06-02 13:02:02'); +INSERT INTO "status" VALUES(77,14,13,'2015-06-02 13:03:02'); +INSERT INTO "status" VALUES(77,14,13,'2015-06-02 13:04:02'); +INSERT INTO "status" VALUES(77,14,13,'2015-06-02 13:05:03'); +INSERT INTO "status" VALUES(77,14,13,'2015-06-02 13:06:02'); +INSERT INTO "status" VALUES(77,14,13,'2015-06-02 13:07:02'); +INSERT INTO "status" VALUES(77,14,13,'2015-06-02 13:08:02'); +INSERT INTO "status" VALUES(77,15,12,'2015-06-02 13:09:02'); +INSERT INTO "status" VALUES(77,15,12,'2015-06-02 13:10:02'); +INSERT INTO "status" VALUES(77,15,12,'2015-06-02 13:11:02'); +INSERT INTO "status" VALUES(77,15,12,'2015-06-02 13:12:02'); +INSERT INTO "status" VALUES(77,15,12,'2015-06-02 13:13:03'); +INSERT INTO "status" VALUES(77,15,12,'2015-06-02 13:14:03'); +INSERT INTO "status" VALUES(77,15,12,'2015-06-02 13:15:02'); +INSERT INTO "status" VALUES(77,15,12,'2015-06-02 13:16:02'); +INSERT INTO "status" VALUES(77,15,12,'2015-06-02 13:17:02'); +INSERT INTO "status" VALUES(77,14,13,'2015-06-02 13:18:02'); +INSERT INTO "status" VALUES(77,14,13,'2015-06-02 13:19:02'); +INSERT INTO "status" VALUES(77,14,13,'2015-06-02 13:20:02'); +INSERT INTO "status" VALUES(77,15,12,'2015-06-02 13:21:02'); +INSERT INTO "status" VALUES(77,15,12,'2015-06-02 13:22:02'); +INSERT INTO "status" VALUES(77,15,12,'2015-06-02 13:23:02'); +INSERT INTO "status" VALUES(77,15,12,'2015-06-02 13:24:02'); +INSERT INTO "status" VALUES(77,15,12,'2015-06-02 13:25:02'); +INSERT INTO "status" VALUES(77,15,12,'2015-06-02 13:26:02'); +INSERT INTO "status" VALUES(77,15,12,'2015-06-02 13:27:02'); +INSERT INTO "status" VALUES(77,15,12,'2015-06-02 13:28:02'); +INSERT INTO "status" VALUES(77,15,12,'2015-06-02 13:29:02'); +INSERT INTO "status" VALUES(77,15,12,'2015-06-02 13:30:02'); +INSERT INTO "status" VALUES(77,15,12,'2015-06-02 13:31:02'); +INSERT INTO "status" VALUES(77,15,12,'2015-06-02 13:32:02'); +INSERT INTO "status" VALUES(77,15,12,'2015-06-02 13:33:02'); +INSERT INTO "status" VALUES(77,15,12,'2015-06-02 13:34:02'); +INSERT INTO "status" VALUES(77,15,12,'2015-06-02 13:35:02'); +INSERT INTO "status" VALUES(77,15,12,'2015-06-02 13:36:02'); +INSERT INTO "status" VALUES(77,15,12,'2015-06-02 13:37:02'); +INSERT INTO "status" VALUES(77,16,11,'2015-06-02 13:38:02'); +INSERT INTO "status" VALUES(77,16,11,'2015-06-02 13:39:02'); +INSERT INTO "status" VALUES(77,16,11,'2015-06-02 13:40:02'); +INSERT INTO "status" VALUES(77,16,11,'2015-06-02 13:41:03'); +INSERT INTO "status" VALUES(77,16,11,'2015-06-02 13:42:03'); +INSERT INTO "status" VALUES(77,16,11,'2015-06-02 13:43:03'); +INSERT INTO "status" VALUES(77,16,11,'2015-06-02 13:44:02'); +INSERT INTO "status" VALUES(77,16,11,'2015-06-02 13:45:03'); +INSERT INTO "status" VALUES(77,15,12,'2015-06-02 13:46:02'); +INSERT INTO "status" VALUES(77,15,12,'2015-06-02 13:47:02'); +INSERT INTO "status" VALUES(77,15,12,'2015-06-02 13:48:02'); +INSERT INTO "status" VALUES(77,15,12,'2015-06-02 13:49:02'); +INSERT INTO "status" VALUES(77,15,12,'2015-06-02 13:50:03'); +INSERT INTO "status" VALUES(77,15,12,'2015-06-02 13:51:02'); +INSERT INTO "status" VALUES(77,15,12,'2015-06-02 13:52:02'); +INSERT INTO "status" VALUES(77,15,12,'2015-06-02 13:53:02'); +INSERT INTO "status" VALUES(77,15,12,'2015-06-02 13:54:02'); +INSERT INTO "status" VALUES(77,15,12,'2015-06-02 13:55:03'); +INSERT INTO "status" VALUES(77,15,12,'2015-06-02 13:56:02'); +INSERT INTO "status" VALUES(77,16,11,'2015-06-02 13:57:02'); +INSERT INTO "status" VALUES(77,16,11,'2015-06-02 13:58:02'); +INSERT INTO "status" VALUES(77,16,11,'2015-06-02 13:59:02'); +INSERT INTO "status" VALUES(77,16,11,'2015-06-02 14:00:02'); +INSERT INTO "status" VALUES(77,16,11,'2015-06-02 14:01:02'); +INSERT INTO "status" VALUES(77,17,10,'2015-06-02 14:02:02'); +INSERT INTO "status" VALUES(77,17,10,'2015-06-02 14:03:02'); +INSERT INTO "status" VALUES(77,17,10,'2015-06-02 14:04:02'); +INSERT INTO "status" VALUES(77,17,10,'2015-06-02 14:05:02'); +INSERT INTO "status" VALUES(77,17,10,'2015-06-02 14:06:02'); +INSERT INTO "status" VALUES(77,17,10,'2015-06-02 14:07:02'); +INSERT INTO "status" VALUES(77,17,10,'2015-06-02 14:08:02'); +INSERT INTO "status" VALUES(77,17,10,'2015-06-02 14:09:02'); +INSERT INTO "status" VALUES(77,17,10,'2015-06-02 14:10:02'); +INSERT INTO "status" VALUES(77,17,10,'2015-06-02 14:11:02'); +INSERT INTO "status" VALUES(77,17,10,'2015-06-02 14:12:02'); +INSERT INTO "status" VALUES(77,17,10,'2015-06-02 14:13:02'); +INSERT INTO "status" VALUES(77,17,10,'2015-06-02 14:14:02'); +INSERT INTO "status" VALUES(77,17,10,'2015-06-02 14:15:02'); +INSERT INTO "status" VALUES(77,17,10,'2015-06-02 14:16:02'); +INSERT INTO "status" VALUES(77,17,10,'2015-06-02 14:17:02'); +INSERT INTO "status" VALUES(77,17,10,'2015-06-02 14:18:02'); +INSERT INTO "status" VALUES(77,17,10,'2015-06-02 14:19:02'); +INSERT INTO "status" VALUES(77,17,10,'2015-06-02 14:20:03'); +INSERT INTO "status" VALUES(77,17,10,'2015-06-02 14:21:02'); +INSERT INTO "status" VALUES(77,17,10,'2015-06-02 14:22:02'); +INSERT INTO "status" VALUES(77,17,10,'2015-06-02 14:23:03'); +INSERT INTO "status" VALUES(77,17,10,'2015-06-02 14:24:02'); +INSERT INTO "status" VALUES(77,17,10,'2015-06-02 14:25:01'); +INSERT INTO "status" VALUES(77,17,10,'2015-06-02 14:26:02'); +INSERT INTO "status" VALUES(77,17,10,'2015-06-02 14:27:02'); +INSERT INTO "status" VALUES(77,17,10,'2015-06-02 14:28:02'); +INSERT INTO "status" VALUES(77,17,10,'2015-06-02 14:29:02'); +INSERT INTO "status" VALUES(77,17,10,'2015-06-02 14:30:02'); +INSERT INTO "status" VALUES(77,17,10,'2015-06-02 14:31:02'); +INSERT INTO "status" VALUES(77,17,10,'2015-06-02 14:32:02'); +INSERT INTO "status" VALUES(77,17,10,'2015-06-02 14:33:02'); +INSERT INTO "status" VALUES(77,16,11,'2015-06-02 14:34:02'); +INSERT INTO "status" VALUES(77,16,11,'2015-06-02 14:35:02'); +INSERT INTO "status" VALUES(77,16,11,'2015-06-02 14:36:02'); +INSERT INTO "status" VALUES(77,16,11,'2015-06-02 14:37:02'); +INSERT INTO "status" VALUES(77,15,12,'2015-06-02 14:38:02'); +INSERT INTO "status" VALUES(77,14,13,'2015-06-02 14:39:02'); +INSERT INTO "status" VALUES(77,14,13,'2015-06-02 14:40:02'); +INSERT INTO "status" VALUES(77,14,13,'2015-06-02 14:41:02'); +INSERT INTO "status" VALUES(77,14,13,'2015-06-02 14:42:02'); +INSERT INTO "status" VALUES(77,14,13,'2015-06-02 14:43:02'); +INSERT INTO "status" VALUES(77,14,13,'2015-06-02 14:44:02'); +INSERT INTO "status" VALUES(77,14,13,'2015-06-02 14:45:02'); +INSERT INTO "status" VALUES(77,14,13,'2015-06-02 14:46:02'); +INSERT INTO "status" VALUES(77,14,13,'2015-06-02 14:47:02'); +INSERT INTO "status" VALUES(77,14,13,'2015-06-02 14:48:02'); +INSERT INTO "status" VALUES(80,0,15,'2015-06-02 12:46:02'); +INSERT INTO "status" VALUES(80,0,15,'2015-06-02 12:47:02'); +INSERT INTO "status" VALUES(80,0,15,'2015-06-02 12:48:02'); +INSERT INTO "status" VALUES(80,0,15,'2015-06-02 12:49:02'); +INSERT INTO "status" VALUES(80,0,15,'2015-06-02 12:50:02'); +INSERT INTO "status" VALUES(80,0,15,'2015-06-02 12:51:02'); +INSERT INTO "status" VALUES(80,0,15,'2015-06-02 12:52:02'); +INSERT INTO "status" VALUES(80,0,15,'2015-06-02 12:53:03'); +INSERT INTO "status" VALUES(80,0,15,'2015-06-02 12:54:02'); +INSERT INTO "status" VALUES(80,0,15,'2015-06-02 12:55:02'); +INSERT INTO "status" VALUES(80,0,15,'2015-06-02 12:56:01'); +INSERT INTO "status" VALUES(80,0,15,'2015-06-02 12:57:02'); +INSERT INTO "status" VALUES(80,0,15,'2015-06-02 12:58:02'); +INSERT INTO "status" VALUES(80,0,15,'2015-06-02 12:59:02'); +INSERT INTO "status" VALUES(80,0,15,'2015-06-02 13:00:01'); +INSERT INTO "status" VALUES(80,0,15,'2015-06-02 13:01:03'); +INSERT INTO "status" VALUES(80,0,15,'2015-06-02 13:02:02'); +INSERT INTO "status" VALUES(80,0,15,'2015-06-02 13:03:02'); +INSERT INTO "status" VALUES(80,0,15,'2015-06-02 13:04:02'); +INSERT INTO "status" VALUES(80,0,15,'2015-06-02 13:05:03'); +INSERT INTO "status" VALUES(80,0,15,'2015-06-02 13:06:02'); +INSERT INTO "status" VALUES(80,0,15,'2015-06-02 13:07:02'); +INSERT INTO "status" VALUES(80,0,15,'2015-06-02 13:08:02'); +INSERT INTO "status" VALUES(80,0,15,'2015-06-02 13:09:02'); +INSERT INTO "status" VALUES(80,0,15,'2015-06-02 13:10:02'); +INSERT INTO "status" VALUES(80,0,15,'2015-06-02 13:11:02'); +INSERT INTO "status" VALUES(80,0,15,'2015-06-02 13:12:02'); +INSERT INTO "status" VALUES(80,0,15,'2015-06-02 13:13:03'); +INSERT INTO "status" VALUES(80,0,15,'2015-06-02 13:14:03'); +INSERT INTO "status" VALUES(80,0,15,'2015-06-02 13:15:02'); +INSERT INTO "status" VALUES(80,0,15,'2015-06-02 13:16:02'); +INSERT INTO "status" VALUES(80,1,14,'2015-06-02 13:17:02'); +INSERT INTO "status" VALUES(80,1,14,'2015-06-02 13:18:02'); +INSERT INTO "status" VALUES(80,1,14,'2015-06-02 13:19:02'); +INSERT INTO "status" VALUES(80,1,14,'2015-06-02 13:20:02'); +INSERT INTO "status" VALUES(80,1,14,'2015-06-02 13:21:02'); +INSERT INTO "status" VALUES(80,1,14,'2015-06-02 13:22:02'); +INSERT INTO "status" VALUES(80,2,13,'2015-06-02 13:23:02'); +INSERT INTO "status" VALUES(80,2,13,'2015-06-02 13:24:02'); +INSERT INTO "status" VALUES(80,2,13,'2015-06-02 13:25:02'); +INSERT INTO "status" VALUES(80,2,13,'2015-06-02 13:26:02'); +INSERT INTO "status" VALUES(80,2,13,'2015-06-02 13:27:02'); +INSERT INTO "status" VALUES(80,2,13,'2015-06-02 13:28:02'); +INSERT INTO "status" VALUES(80,2,13,'2015-06-02 13:29:02'); +INSERT INTO "status" VALUES(80,2,13,'2015-06-02 13:30:02'); +INSERT INTO "status" VALUES(80,2,13,'2015-06-02 13:31:02'); +INSERT INTO "status" VALUES(80,2,13,'2015-06-02 13:32:02'); +INSERT INTO "status" VALUES(80,2,13,'2015-06-02 13:33:02'); +INSERT INTO "status" VALUES(80,2,13,'2015-06-02 13:34:02'); +INSERT INTO "status" VALUES(80,2,13,'2015-06-02 13:35:02'); +INSERT INTO "status" VALUES(80,2,13,'2015-06-02 13:36:02'); +INSERT INTO "status" VALUES(80,2,13,'2015-06-02 13:37:02'); +INSERT INTO "status" VALUES(80,2,13,'2015-06-02 13:38:02'); +INSERT INTO "status" VALUES(80,2,13,'2015-06-02 13:39:02'); +INSERT INTO "status" VALUES(80,2,13,'2015-06-02 13:40:02'); +INSERT INTO "status" VALUES(80,2,13,'2015-06-02 13:41:03'); +INSERT INTO "status" VALUES(80,2,13,'2015-06-02 13:42:03'); +INSERT INTO "status" VALUES(80,2,13,'2015-06-02 13:43:03'); +INSERT INTO "status" VALUES(80,2,13,'2015-06-02 13:44:02'); +INSERT INTO "status" VALUES(80,2,13,'2015-06-02 13:45:03'); +INSERT INTO "status" VALUES(80,2,13,'2015-06-02 13:46:02'); +INSERT INTO "status" VALUES(80,2,13,'2015-06-02 13:47:02'); +INSERT INTO "status" VALUES(80,2,13,'2015-06-02 13:48:02'); +INSERT INTO "status" VALUES(80,2,13,'2015-06-02 13:49:02'); +INSERT INTO "status" VALUES(80,2,13,'2015-06-02 13:50:03'); +INSERT INTO "status" VALUES(80,2,13,'2015-06-02 13:51:02'); +INSERT INTO "status" VALUES(80,2,13,'2015-06-02 13:52:02'); +INSERT INTO "status" VALUES(80,2,13,'2015-06-02 13:53:02'); +INSERT INTO "status" VALUES(80,2,13,'2015-06-02 13:54:02'); +INSERT INTO "status" VALUES(80,2,13,'2015-06-02 13:55:03'); +INSERT INTO "status" VALUES(80,2,13,'2015-06-02 13:56:02'); +INSERT INTO "status" VALUES(80,2,13,'2015-06-02 13:57:02'); +INSERT INTO "status" VALUES(80,2,13,'2015-06-02 13:58:02'); +INSERT INTO "status" VALUES(80,2,13,'2015-06-02 13:59:02'); +INSERT INTO "status" VALUES(80,2,13,'2015-06-02 14:00:02'); +INSERT INTO "status" VALUES(80,2,13,'2015-06-02 14:01:02'); +INSERT INTO "status" VALUES(80,2,13,'2015-06-02 14:02:02'); +INSERT INTO "status" VALUES(80,2,13,'2015-06-02 14:03:02'); +INSERT INTO "status" VALUES(80,2,13,'2015-06-02 14:04:02'); +INSERT INTO "status" VALUES(80,2,13,'2015-06-02 14:05:02'); +INSERT INTO "status" VALUES(80,2,13,'2015-06-02 14:06:02'); +INSERT INTO "status" VALUES(80,2,13,'2015-06-02 14:07:02'); +INSERT INTO "status" VALUES(80,2,13,'2015-06-02 14:08:02'); +INSERT INTO "status" VALUES(80,2,13,'2015-06-02 14:09:02'); +INSERT INTO "status" VALUES(80,2,13,'2015-06-02 14:10:02'); +INSERT INTO "status" VALUES(80,2,13,'2015-06-02 14:11:02'); +INSERT INTO "status" VALUES(80,2,13,'2015-06-02 14:12:02'); +INSERT INTO "status" VALUES(80,2,13,'2015-06-02 14:13:02'); +INSERT INTO "status" VALUES(80,2,13,'2015-06-02 14:14:02'); +INSERT INTO "status" VALUES(80,2,13,'2015-06-02 14:15:02'); +INSERT INTO "status" VALUES(80,2,13,'2015-06-02 14:16:02'); +INSERT INTO "status" VALUES(80,2,13,'2015-06-02 14:17:02'); +INSERT INTO "status" VALUES(80,2,13,'2015-06-02 14:18:02'); +INSERT INTO "status" VALUES(80,2,13,'2015-06-02 14:19:02'); +INSERT INTO "status" VALUES(80,2,13,'2015-06-02 14:20:03'); +INSERT INTO "status" VALUES(80,2,13,'2015-06-02 14:21:02'); +INSERT INTO "status" VALUES(80,2,13,'2015-06-02 14:22:02'); +INSERT INTO "status" VALUES(80,2,13,'2015-06-02 14:23:03'); +INSERT INTO "status" VALUES(80,2,13,'2015-06-02 14:24:02'); +INSERT INTO "status" VALUES(80,2,13,'2015-06-02 14:25:01'); +INSERT INTO "status" VALUES(80,2,13,'2015-06-02 14:26:02'); +INSERT INTO "status" VALUES(80,2,13,'2015-06-02 14:27:02'); +INSERT INTO "status" VALUES(80,2,13,'2015-06-02 14:28:02'); +INSERT INTO "status" VALUES(80,2,13,'2015-06-02 14:29:02'); +INSERT INTO "status" VALUES(80,2,13,'2015-06-02 14:30:02'); +INSERT INTO "status" VALUES(80,2,13,'2015-06-02 14:31:02'); +INSERT INTO "status" VALUES(80,2,13,'2015-06-02 14:32:02'); +INSERT INTO "status" VALUES(80,2,13,'2015-06-02 14:33:02'); +INSERT INTO "status" VALUES(80,2,13,'2015-06-02 14:34:02'); +INSERT INTO "status" VALUES(80,2,13,'2015-06-02 14:35:02'); +INSERT INTO "status" VALUES(80,2,13,'2015-06-02 14:36:02'); +INSERT INTO "status" VALUES(80,2,13,'2015-06-02 14:37:02'); +INSERT INTO "status" VALUES(80,2,13,'2015-06-02 14:38:02'); +INSERT INTO "status" VALUES(80,2,13,'2015-06-02 14:39:02'); +INSERT INTO "status" VALUES(80,2,13,'2015-06-02 14:40:02'); +INSERT INTO "status" VALUES(80,2,13,'2015-06-02 14:41:02'); +INSERT INTO "status" VALUES(80,2,13,'2015-06-02 14:42:02'); +INSERT INTO "status" VALUES(80,2,13,'2015-06-02 14:43:02'); +INSERT INTO "status" VALUES(80,2,13,'2015-06-02 14:44:02'); +INSERT INTO "status" VALUES(80,2,13,'2015-06-02 14:45:02'); +INSERT INTO "status" VALUES(80,2,13,'2015-06-02 14:46:02'); +INSERT INTO "status" VALUES(80,2,13,'2015-06-02 14:47:02'); +INSERT INTO "status" VALUES(80,2,13,'2015-06-02 14:48:02'); +INSERT INTO "status" VALUES(82,6,9,'2015-06-02 12:46:02'); +INSERT INTO "status" VALUES(82,6,9,'2015-06-02 12:47:02'); +INSERT INTO "status" VALUES(82,6,9,'2015-06-02 12:48:02'); +INSERT INTO "status" VALUES(82,6,9,'2015-06-02 12:49:02'); +INSERT INTO "status" VALUES(82,6,9,'2015-06-02 12:50:02'); +INSERT INTO "status" VALUES(82,6,9,'2015-06-02 12:51:02'); +INSERT INTO "status" VALUES(82,6,9,'2015-06-02 12:52:02'); +INSERT INTO "status" VALUES(82,6,9,'2015-06-02 12:53:03'); +INSERT INTO "status" VALUES(82,6,9,'2015-06-02 12:54:02'); +INSERT INTO "status" VALUES(82,6,9,'2015-06-02 12:55:02'); +INSERT INTO "status" VALUES(82,6,9,'2015-06-02 12:56:01'); +INSERT INTO "status" VALUES(82,6,9,'2015-06-02 12:57:02'); +INSERT INTO "status" VALUES(82,6,9,'2015-06-02 12:58:02'); +INSERT INTO "status" VALUES(82,6,9,'2015-06-02 12:59:02'); +INSERT INTO "status" VALUES(82,6,9,'2015-06-02 13:00:01'); +INSERT INTO "status" VALUES(82,6,9,'2015-06-02 13:01:03'); +INSERT INTO "status" VALUES(82,6,9,'2015-06-02 13:02:02'); +INSERT INTO "status" VALUES(82,6,9,'2015-06-02 13:03:02'); +INSERT INTO "status" VALUES(82,6,9,'2015-06-02 13:04:02'); +INSERT INTO "status" VALUES(82,6,9,'2015-06-02 13:05:03'); +INSERT INTO "status" VALUES(82,6,9,'2015-06-02 13:06:02'); +INSERT INTO "status" VALUES(82,6,9,'2015-06-02 13:07:02'); +INSERT INTO "status" VALUES(82,6,9,'2015-06-02 13:08:02'); +INSERT INTO "status" VALUES(82,6,9,'2015-06-02 13:09:02'); +INSERT INTO "status" VALUES(82,6,9,'2015-06-02 13:10:02'); +INSERT INTO "status" VALUES(82,6,9,'2015-06-02 13:11:02'); +INSERT INTO "status" VALUES(82,6,9,'2015-06-02 13:12:02'); +INSERT INTO "status" VALUES(82,6,9,'2015-06-02 13:13:03'); +INSERT INTO "status" VALUES(82,6,9,'2015-06-02 13:14:03'); +INSERT INTO "status" VALUES(82,6,9,'2015-06-02 13:15:02'); +INSERT INTO "status" VALUES(82,6,9,'2015-06-02 13:16:02'); +INSERT INTO "status" VALUES(82,5,10,'2015-06-02 13:17:02'); +INSERT INTO "status" VALUES(82,5,10,'2015-06-02 13:18:02'); +INSERT INTO "status" VALUES(82,5,10,'2015-06-02 13:19:02'); +INSERT INTO "status" VALUES(82,5,10,'2015-06-02 13:20:02'); +INSERT INTO "status" VALUES(82,5,10,'2015-06-02 13:21:02'); +INSERT INTO "status" VALUES(82,5,10,'2015-06-02 13:22:02'); +INSERT INTO "status" VALUES(82,5,10,'2015-06-02 13:23:02'); +INSERT INTO "status" VALUES(82,4,11,'2015-06-02 13:24:02'); +INSERT INTO "status" VALUES(82,4,11,'2015-06-02 13:25:02'); +INSERT INTO "status" VALUES(82,3,12,'2015-06-02 13:26:02'); +INSERT INTO "status" VALUES(82,3,12,'2015-06-02 13:27:02'); +INSERT INTO "status" VALUES(82,3,12,'2015-06-02 13:28:02'); +INSERT INTO "status" VALUES(82,3,12,'2015-06-02 13:29:02'); +INSERT INTO "status" VALUES(82,3,12,'2015-06-02 13:30:02'); +INSERT INTO "status" VALUES(82,3,12,'2015-06-02 13:31:02'); +INSERT INTO "status" VALUES(82,3,12,'2015-06-02 13:32:02'); +INSERT INTO "status" VALUES(82,3,12,'2015-06-02 13:33:02'); +INSERT INTO "status" VALUES(82,3,12,'2015-06-02 13:34:02'); +INSERT INTO "status" VALUES(82,3,12,'2015-06-02 13:35:02'); +INSERT INTO "status" VALUES(82,3,12,'2015-06-02 13:36:02'); +INSERT INTO "status" VALUES(82,3,12,'2015-06-02 13:37:02'); +INSERT INTO "status" VALUES(82,3,12,'2015-06-02 13:38:02'); +INSERT INTO "status" VALUES(82,3,12,'2015-06-02 13:39:02'); +INSERT INTO "status" VALUES(82,3,12,'2015-06-02 13:40:02'); +INSERT INTO "status" VALUES(82,3,12,'2015-06-02 13:41:03'); +INSERT INTO "status" VALUES(82,3,12,'2015-06-02 13:42:03'); +INSERT INTO "status" VALUES(82,3,12,'2015-06-02 13:43:03'); +INSERT INTO "status" VALUES(82,3,12,'2015-06-02 13:44:02'); +INSERT INTO "status" VALUES(82,3,12,'2015-06-02 13:45:03'); +INSERT INTO "status" VALUES(82,2,13,'2015-06-02 13:46:02'); +INSERT INTO "status" VALUES(82,2,13,'2015-06-02 13:47:02'); +INSERT INTO "status" VALUES(82,2,13,'2015-06-02 13:48:02'); +INSERT INTO "status" VALUES(82,2,13,'2015-06-02 13:49:02'); +INSERT INTO "status" VALUES(82,2,13,'2015-06-02 13:50:03'); +INSERT INTO "status" VALUES(82,2,13,'2015-06-02 13:51:02'); +INSERT INTO "status" VALUES(82,2,13,'2015-06-02 13:52:02'); +INSERT INTO "status" VALUES(82,2,13,'2015-06-02 13:53:02'); +INSERT INTO "status" VALUES(82,2,13,'2015-06-02 13:54:02'); +INSERT INTO "status" VALUES(82,2,13,'2015-06-02 13:55:03'); +INSERT INTO "status" VALUES(82,2,13,'2015-06-02 13:56:02'); +INSERT INTO "status" VALUES(82,2,13,'2015-06-02 13:57:02'); +INSERT INTO "status" VALUES(82,2,13,'2015-06-02 13:58:02'); +INSERT INTO "status" VALUES(82,2,13,'2015-06-02 13:59:02'); +INSERT INTO "status" VALUES(82,2,13,'2015-06-02 14:00:02'); +INSERT INTO "status" VALUES(82,2,13,'2015-06-02 14:01:02'); +INSERT INTO "status" VALUES(82,2,13,'2015-06-02 14:02:02'); +INSERT INTO "status" VALUES(82,2,13,'2015-06-02 14:03:02'); +INSERT INTO "status" VALUES(82,2,13,'2015-06-02 14:04:02'); +INSERT INTO "status" VALUES(82,2,13,'2015-06-02 14:05:02'); +INSERT INTO "status" VALUES(82,2,13,'2015-06-02 14:06:02'); +INSERT INTO "status" VALUES(82,2,13,'2015-06-02 14:07:02'); +INSERT INTO "status" VALUES(82,2,13,'2015-06-02 14:08:02'); +INSERT INTO "status" VALUES(82,2,13,'2015-06-02 14:09:02'); +INSERT INTO "status" VALUES(82,3,12,'2015-06-02 14:10:02'); +INSERT INTO "status" VALUES(82,3,12,'2015-06-02 14:11:02'); +INSERT INTO "status" VALUES(82,3,12,'2015-06-02 14:12:02'); +INSERT INTO "status" VALUES(82,3,12,'2015-06-02 14:13:02'); +INSERT INTO "status" VALUES(82,3,12,'2015-06-02 14:14:02'); +INSERT INTO "status" VALUES(82,3,12,'2015-06-02 14:15:02'); +INSERT INTO "status" VALUES(82,3,12,'2015-06-02 14:16:02'); +INSERT INTO "status" VALUES(82,3,12,'2015-06-02 14:17:02'); +INSERT INTO "status" VALUES(82,3,12,'2015-06-02 14:18:02'); +INSERT INTO "status" VALUES(82,3,12,'2015-06-02 14:19:02'); +INSERT INTO "status" VALUES(82,3,12,'2015-06-02 14:20:03'); +INSERT INTO "status" VALUES(82,3,12,'2015-06-02 14:21:02'); +INSERT INTO "status" VALUES(82,3,12,'2015-06-02 14:22:02'); +INSERT INTO "status" VALUES(82,3,12,'2015-06-02 14:23:03'); +INSERT INTO "status" VALUES(82,3,12,'2015-06-02 14:24:02'); +INSERT INTO "status" VALUES(82,3,12,'2015-06-02 14:25:01'); +INSERT INTO "status" VALUES(82,3,12,'2015-06-02 14:26:02'); +INSERT INTO "status" VALUES(82,3,12,'2015-06-02 14:27:02'); +INSERT INTO "status" VALUES(82,3,12,'2015-06-02 14:28:02'); +INSERT INTO "status" VALUES(82,3,12,'2015-06-02 14:29:02'); +INSERT INTO "status" VALUES(82,3,12,'2015-06-02 14:30:02'); +INSERT INTO "status" VALUES(82,3,12,'2015-06-02 14:31:02'); +INSERT INTO "status" VALUES(82,3,12,'2015-06-02 14:32:02'); +INSERT INTO "status" VALUES(82,3,12,'2015-06-02 14:33:02'); +INSERT INTO "status" VALUES(82,3,12,'2015-06-02 14:34:02'); +INSERT INTO "status" VALUES(82,3,12,'2015-06-02 14:35:02'); +INSERT INTO "status" VALUES(82,3,12,'2015-06-02 14:36:02'); +INSERT INTO "status" VALUES(82,3,12,'2015-06-02 14:37:02'); +INSERT INTO "status" VALUES(82,3,12,'2015-06-02 14:38:02'); +INSERT INTO "status" VALUES(82,3,12,'2015-06-02 14:39:02'); +INSERT INTO "status" VALUES(82,3,12,'2015-06-02 14:40:02'); +INSERT INTO "status" VALUES(82,3,12,'2015-06-02 14:41:02'); +INSERT INTO "status" VALUES(82,3,12,'2015-06-02 14:42:02'); +INSERT INTO "status" VALUES(82,3,12,'2015-06-02 14:43:02'); +INSERT INTO "status" VALUES(82,2,13,'2015-06-02 14:44:02'); +INSERT INTO "status" VALUES(82,2,13,'2015-06-02 14:45:02'); +INSERT INTO "status" VALUES(82,2,13,'2015-06-02 14:46:02'); +INSERT INTO "status" VALUES(82,2,13,'2015-06-02 14:47:02'); +INSERT INTO "status" VALUES(82,2,13,'2015-06-02 14:48:02'); +INSERT INTO "status" VALUES(83,2,13,'2015-06-02 12:46:02'); +INSERT INTO "status" VALUES(83,2,13,'2015-06-02 12:47:02'); +INSERT INTO "status" VALUES(83,2,13,'2015-06-02 12:48:02'); +INSERT INTO "status" VALUES(83,2,13,'2015-06-02 12:49:02'); +INSERT INTO "status" VALUES(83,2,13,'2015-06-02 12:50:02'); +INSERT INTO "status" VALUES(83,2,13,'2015-06-02 12:51:02'); +INSERT INTO "status" VALUES(83,2,13,'2015-06-02 12:52:02'); +INSERT INTO "status" VALUES(83,2,13,'2015-06-02 12:53:03'); +INSERT INTO "status" VALUES(83,2,13,'2015-06-02 12:54:02'); +INSERT INTO "status" VALUES(83,2,13,'2015-06-02 12:55:02'); +INSERT INTO "status" VALUES(83,2,13,'2015-06-02 12:56:01'); +INSERT INTO "status" VALUES(83,2,13,'2015-06-02 12:57:02'); +INSERT INTO "status" VALUES(83,2,13,'2015-06-02 12:58:02'); +INSERT INTO "status" VALUES(83,2,13,'2015-06-02 12:59:02'); +INSERT INTO "status" VALUES(83,2,13,'2015-06-02 13:00:01'); +INSERT INTO "status" VALUES(83,2,13,'2015-06-02 13:01:03'); +INSERT INTO "status" VALUES(83,2,13,'2015-06-02 13:02:02'); +INSERT INTO "status" VALUES(83,2,13,'2015-06-02 13:03:02'); +INSERT INTO "status" VALUES(83,2,13,'2015-06-02 13:04:02'); +INSERT INTO "status" VALUES(83,2,13,'2015-06-02 13:05:03'); +INSERT INTO "status" VALUES(83,2,13,'2015-06-02 13:06:02'); +INSERT INTO "status" VALUES(83,2,13,'2015-06-02 13:07:02'); +INSERT INTO "status" VALUES(83,2,13,'2015-06-02 13:08:02'); +INSERT INTO "status" VALUES(83,2,13,'2015-06-02 13:09:02'); +INSERT INTO "status" VALUES(83,2,13,'2015-06-02 13:10:02'); +INSERT INTO "status" VALUES(83,2,13,'2015-06-02 13:11:02'); +INSERT INTO "status" VALUES(83,2,13,'2015-06-02 13:12:02'); +INSERT INTO "status" VALUES(83,2,13,'2015-06-02 13:13:03'); +INSERT INTO "status" VALUES(83,2,13,'2015-06-02 13:14:03'); +INSERT INTO "status" VALUES(83,2,13,'2015-06-02 13:15:02'); +INSERT INTO "status" VALUES(83,2,13,'2015-06-02 13:16:02'); +INSERT INTO "status" VALUES(83,2,13,'2015-06-02 13:17:02'); +INSERT INTO "status" VALUES(83,2,13,'2015-06-02 13:18:02'); +INSERT INTO "status" VALUES(83,2,13,'2015-06-02 13:19:02'); +INSERT INTO "status" VALUES(83,2,13,'2015-06-02 13:20:02'); +INSERT INTO "status" VALUES(83,2,13,'2015-06-02 13:21:02'); +INSERT INTO "status" VALUES(83,2,13,'2015-06-02 13:22:02'); +INSERT INTO "status" VALUES(83,2,13,'2015-06-02 13:23:02'); +INSERT INTO "status" VALUES(83,2,13,'2015-06-02 13:24:02'); +INSERT INTO "status" VALUES(83,2,13,'2015-06-02 13:25:02'); +INSERT INTO "status" VALUES(83,2,13,'2015-06-02 13:26:02'); +INSERT INTO "status" VALUES(83,2,13,'2015-06-02 13:27:02'); +INSERT INTO "status" VALUES(83,2,13,'2015-06-02 13:28:02'); +INSERT INTO "status" VALUES(83,2,13,'2015-06-02 13:29:02'); +INSERT INTO "status" VALUES(83,2,13,'2015-06-02 13:30:02'); +INSERT INTO "status" VALUES(83,2,13,'2015-06-02 13:31:02'); +INSERT INTO "status" VALUES(83,2,13,'2015-06-02 13:32:02'); +INSERT INTO "status" VALUES(83,2,13,'2015-06-02 13:33:02'); +INSERT INTO "status" VALUES(83,2,13,'2015-06-02 13:34:02'); +INSERT INTO "status" VALUES(83,2,13,'2015-06-02 13:35:02'); +INSERT INTO "status" VALUES(83,2,13,'2015-06-02 13:36:02'); +INSERT INTO "status" VALUES(83,2,13,'2015-06-02 13:37:02'); +INSERT INTO "status" VALUES(83,2,13,'2015-06-02 13:38:02'); +INSERT INTO "status" VALUES(83,2,13,'2015-06-02 13:39:02'); +INSERT INTO "status" VALUES(83,2,13,'2015-06-02 13:40:02'); +INSERT INTO "status" VALUES(83,2,13,'2015-06-02 13:41:03'); +INSERT INTO "status" VALUES(83,2,13,'2015-06-02 13:42:03'); +INSERT INTO "status" VALUES(83,2,13,'2015-06-02 13:43:03'); +INSERT INTO "status" VALUES(83,2,13,'2015-06-02 13:44:02'); +INSERT INTO "status" VALUES(83,2,13,'2015-06-02 13:45:03'); +INSERT INTO "status" VALUES(83,2,13,'2015-06-02 13:46:02'); +INSERT INTO "status" VALUES(83,2,13,'2015-06-02 13:47:02'); +INSERT INTO "status" VALUES(83,2,13,'2015-06-02 13:48:02'); +INSERT INTO "status" VALUES(83,2,13,'2015-06-02 13:49:02'); +INSERT INTO "status" VALUES(83,2,13,'2015-06-02 13:50:03'); +INSERT INTO "status" VALUES(83,2,13,'2015-06-02 13:51:02'); +INSERT INTO "status" VALUES(83,1,14,'2015-06-02 13:52:02'); +INSERT INTO "status" VALUES(83,1,14,'2015-06-02 13:53:02'); +INSERT INTO "status" VALUES(83,1,14,'2015-06-02 13:54:02'); +INSERT INTO "status" VALUES(83,1,14,'2015-06-02 13:55:03'); +INSERT INTO "status" VALUES(83,1,14,'2015-06-02 13:56:02'); +INSERT INTO "status" VALUES(83,1,14,'2015-06-02 13:57:02'); +INSERT INTO "status" VALUES(83,1,14,'2015-06-02 13:58:02'); +INSERT INTO "status" VALUES(83,1,14,'2015-06-02 13:59:02'); +INSERT INTO "status" VALUES(83,1,14,'2015-06-02 14:00:02'); +INSERT INTO "status" VALUES(83,1,14,'2015-06-02 14:01:02'); +INSERT INTO "status" VALUES(83,1,14,'2015-06-02 14:02:02'); +INSERT INTO "status" VALUES(83,1,14,'2015-06-02 14:03:02'); +INSERT INTO "status" VALUES(83,1,14,'2015-06-02 14:04:02'); +INSERT INTO "status" VALUES(83,1,14,'2015-06-02 14:05:02'); +INSERT INTO "status" VALUES(83,1,14,'2015-06-02 14:06:02'); +INSERT INTO "status" VALUES(83,1,14,'2015-06-02 14:07:02'); +INSERT INTO "status" VALUES(83,1,14,'2015-06-02 14:08:02'); +INSERT INTO "status" VALUES(83,1,14,'2015-06-02 14:09:02'); +INSERT INTO "status" VALUES(83,1,14,'2015-06-02 14:10:02'); +INSERT INTO "status" VALUES(83,1,14,'2015-06-02 14:11:02'); +INSERT INTO "status" VALUES(83,1,14,'2015-06-02 14:12:02'); +INSERT INTO "status" VALUES(83,1,14,'2015-06-02 14:13:02'); +INSERT INTO "status" VALUES(83,1,14,'2015-06-02 14:14:02'); +INSERT INTO "status" VALUES(83,1,14,'2015-06-02 14:15:02'); +INSERT INTO "status" VALUES(83,1,14,'2015-06-02 14:16:02'); +INSERT INTO "status" VALUES(83,1,14,'2015-06-02 14:17:02'); +INSERT INTO "status" VALUES(83,1,14,'2015-06-02 14:18:02'); +INSERT INTO "status" VALUES(83,1,14,'2015-06-02 14:19:02'); +INSERT INTO "status" VALUES(83,1,14,'2015-06-02 14:20:03'); +INSERT INTO "status" VALUES(83,1,14,'2015-06-02 14:21:02'); +INSERT INTO "status" VALUES(83,1,14,'2015-06-02 14:22:02'); +INSERT INTO "status" VALUES(83,1,14,'2015-06-02 14:23:03'); +INSERT INTO "status" VALUES(83,1,14,'2015-06-02 14:24:02'); +INSERT INTO "status" VALUES(83,1,14,'2015-06-02 14:25:01'); +INSERT INTO "status" VALUES(83,1,14,'2015-06-02 14:26:02'); +INSERT INTO "status" VALUES(83,1,14,'2015-06-02 14:27:02'); +INSERT INTO "status" VALUES(83,1,14,'2015-06-02 14:28:02'); +INSERT INTO "status" VALUES(83,1,14,'2015-06-02 14:29:02'); +INSERT INTO "status" VALUES(83,1,14,'2015-06-02 14:30:02'); +INSERT INTO "status" VALUES(83,1,14,'2015-06-02 14:31:02'); +INSERT INTO "status" VALUES(83,1,14,'2015-06-02 14:32:02'); +INSERT INTO "status" VALUES(83,1,14,'2015-06-02 14:33:02'); +INSERT INTO "status" VALUES(83,1,14,'2015-06-02 14:34:02'); +INSERT INTO "status" VALUES(83,1,14,'2015-06-02 14:35:02'); +INSERT INTO "status" VALUES(83,1,14,'2015-06-02 14:36:02'); +INSERT INTO "status" VALUES(83,1,14,'2015-06-02 14:37:02'); +INSERT INTO "status" VALUES(83,1,14,'2015-06-02 14:38:02'); +INSERT INTO "status" VALUES(83,1,14,'2015-06-02 14:39:02'); +INSERT INTO "status" VALUES(83,1,14,'2015-06-02 14:40:02'); +INSERT INTO "status" VALUES(83,1,14,'2015-06-02 14:41:02'); +INSERT INTO "status" VALUES(83,1,14,'2015-06-02 14:42:02'); +INSERT INTO "status" VALUES(83,1,14,'2015-06-02 14:43:02'); +INSERT INTO "status" VALUES(83,1,14,'2015-06-02 14:44:02'); +INSERT INTO "status" VALUES(83,1,14,'2015-06-02 14:45:02'); +INSERT INTO "status" VALUES(83,1,14,'2015-06-02 14:46:02'); +INSERT INTO "status" VALUES(83,1,14,'2015-06-02 14:47:02'); +INSERT INTO "status" VALUES(83,1,14,'2015-06-02 14:48:02'); +INSERT INTO "status" VALUES(84,9,6,'2015-06-02 12:46:02'); +INSERT INTO "status" VALUES(84,9,6,'2015-06-02 12:47:02'); +INSERT INTO "status" VALUES(84,9,6,'2015-06-02 12:48:02'); +INSERT INTO "status" VALUES(84,9,6,'2015-06-02 12:49:02'); +INSERT INTO "status" VALUES(84,9,6,'2015-06-02 12:50:02'); +INSERT INTO "status" VALUES(84,9,6,'2015-06-02 12:51:02'); +INSERT INTO "status" VALUES(84,9,6,'2015-06-02 12:52:02'); +INSERT INTO "status" VALUES(84,9,6,'2015-06-02 12:53:03'); +INSERT INTO "status" VALUES(84,9,6,'2015-06-02 12:54:02'); +INSERT INTO "status" VALUES(84,9,6,'2015-06-02 12:55:02'); +INSERT INTO "status" VALUES(84,9,6,'2015-06-02 12:56:01'); +INSERT INTO "status" VALUES(84,9,6,'2015-06-02 12:57:02'); +INSERT INTO "status" VALUES(84,9,6,'2015-06-02 12:58:02'); +INSERT INTO "status" VALUES(84,9,6,'2015-06-02 12:59:02'); +INSERT INTO "status" VALUES(84,9,6,'2015-06-02 13:00:01'); +INSERT INTO "status" VALUES(84,9,6,'2015-06-02 13:01:03'); +INSERT INTO "status" VALUES(84,9,6,'2015-06-02 13:02:02'); +INSERT INTO "status" VALUES(84,9,6,'2015-06-02 13:03:02'); +INSERT INTO "status" VALUES(84,9,6,'2015-06-02 13:04:02'); +INSERT INTO "status" VALUES(84,9,6,'2015-06-02 13:05:03'); +INSERT INTO "status" VALUES(84,9,6,'2015-06-02 13:06:02'); +INSERT INTO "status" VALUES(84,9,6,'2015-06-02 13:07:02'); +INSERT INTO "status" VALUES(84,9,6,'2015-06-02 13:08:02'); +INSERT INTO "status" VALUES(84,9,6,'2015-06-02 13:09:02'); +INSERT INTO "status" VALUES(84,9,6,'2015-06-02 13:10:02'); +INSERT INTO "status" VALUES(84,9,6,'2015-06-02 13:11:02'); +INSERT INTO "status" VALUES(84,9,6,'2015-06-02 13:12:02'); +INSERT INTO "status" VALUES(84,9,6,'2015-06-02 13:13:03'); +INSERT INTO "status" VALUES(84,9,6,'2015-06-02 13:14:03'); +INSERT INTO "status" VALUES(84,8,7,'2015-06-02 13:15:02'); +INSERT INTO "status" VALUES(84,8,7,'2015-06-02 13:16:02'); +INSERT INTO "status" VALUES(84,8,7,'2015-06-02 13:17:02'); +INSERT INTO "status" VALUES(84,8,7,'2015-06-02 13:18:02'); +INSERT INTO "status" VALUES(84,8,7,'2015-06-02 13:19:02'); +INSERT INTO "status" VALUES(84,8,7,'2015-06-02 13:20:02'); +INSERT INTO "status" VALUES(84,8,7,'2015-06-02 13:21:02'); +INSERT INTO "status" VALUES(84,8,7,'2015-06-02 13:22:02'); +INSERT INTO "status" VALUES(84,8,7,'2015-06-02 13:23:02'); +INSERT INTO "status" VALUES(84,8,7,'2015-06-02 13:24:02'); +INSERT INTO "status" VALUES(84,8,7,'2015-06-02 13:25:02'); +INSERT INTO "status" VALUES(84,8,7,'2015-06-02 13:26:02'); +INSERT INTO "status" VALUES(84,8,7,'2015-06-02 13:27:02'); +INSERT INTO "status" VALUES(84,8,7,'2015-06-02 13:28:02'); +INSERT INTO "status" VALUES(84,8,7,'2015-06-02 13:29:02'); +INSERT INTO "status" VALUES(84,8,7,'2015-06-02 13:30:02'); +INSERT INTO "status" VALUES(84,8,7,'2015-06-02 13:31:02'); +INSERT INTO "status" VALUES(84,8,7,'2015-06-02 13:32:02'); +INSERT INTO "status" VALUES(84,8,7,'2015-06-02 13:33:02'); +INSERT INTO "status" VALUES(84,8,7,'2015-06-02 13:34:02'); +INSERT INTO "status" VALUES(84,8,7,'2015-06-02 13:35:02'); +INSERT INTO "status" VALUES(84,8,7,'2015-06-02 13:36:02'); +INSERT INTO "status" VALUES(84,8,7,'2015-06-02 13:37:02'); +INSERT INTO "status" VALUES(84,8,7,'2015-06-02 13:38:02'); +INSERT INTO "status" VALUES(84,8,7,'2015-06-02 13:39:02'); +INSERT INTO "status" VALUES(84,8,7,'2015-06-02 13:40:02'); +INSERT INTO "status" VALUES(84,8,7,'2015-06-02 13:41:03'); +INSERT INTO "status" VALUES(84,8,7,'2015-06-02 13:42:03'); +INSERT INTO "status" VALUES(84,8,7,'2015-06-02 13:43:03'); +INSERT INTO "status" VALUES(84,8,7,'2015-06-02 13:44:02'); +INSERT INTO "status" VALUES(84,8,7,'2015-06-02 13:45:03'); +INSERT INTO "status" VALUES(84,8,7,'2015-06-02 13:46:02'); +INSERT INTO "status" VALUES(84,8,7,'2015-06-02 13:47:02'); +INSERT INTO "status" VALUES(84,8,7,'2015-06-02 13:48:02'); +INSERT INTO "status" VALUES(84,8,7,'2015-06-02 13:49:02'); +INSERT INTO "status" VALUES(84,8,7,'2015-06-02 13:50:03'); +INSERT INTO "status" VALUES(84,8,7,'2015-06-02 13:51:02'); +INSERT INTO "status" VALUES(84,8,7,'2015-06-02 13:52:02'); +INSERT INTO "status" VALUES(84,8,7,'2015-06-02 13:53:02'); +INSERT INTO "status" VALUES(84,8,7,'2015-06-02 13:54:02'); +INSERT INTO "status" VALUES(84,8,7,'2015-06-02 13:55:03'); +INSERT INTO "status" VALUES(84,8,7,'2015-06-02 13:56:02'); +INSERT INTO "status" VALUES(84,8,7,'2015-06-02 13:57:02'); +INSERT INTO "status" VALUES(84,8,7,'2015-06-02 13:58:02'); +INSERT INTO "status" VALUES(84,8,7,'2015-06-02 13:59:02'); +INSERT INTO "status" VALUES(84,8,7,'2015-06-02 14:00:02'); +INSERT INTO "status" VALUES(84,8,7,'2015-06-02 14:01:02'); +INSERT INTO "status" VALUES(84,8,7,'2015-06-02 14:02:02'); +INSERT INTO "status" VALUES(84,8,7,'2015-06-02 14:03:02'); +INSERT INTO "status" VALUES(84,8,7,'2015-06-02 14:04:02'); +INSERT INTO "status" VALUES(84,8,7,'2015-06-02 14:05:02'); +INSERT INTO "status" VALUES(84,8,7,'2015-06-02 14:06:02'); +INSERT INTO "status" VALUES(84,8,7,'2015-06-02 14:07:02'); +INSERT INTO "status" VALUES(84,8,7,'2015-06-02 14:08:02'); +INSERT INTO "status" VALUES(84,8,7,'2015-06-02 14:09:02'); +INSERT INTO "status" VALUES(84,8,7,'2015-06-02 14:10:02'); +INSERT INTO "status" VALUES(84,8,7,'2015-06-02 14:11:02'); +INSERT INTO "status" VALUES(84,8,7,'2015-06-02 14:12:02'); +INSERT INTO "status" VALUES(84,8,7,'2015-06-02 14:13:02'); +INSERT INTO "status" VALUES(84,8,7,'2015-06-02 14:14:02'); +INSERT INTO "status" VALUES(84,8,7,'2015-06-02 14:15:02'); +INSERT INTO "status" VALUES(84,8,7,'2015-06-02 14:16:02'); +INSERT INTO "status" VALUES(84,8,7,'2015-06-02 14:17:02'); +INSERT INTO "status" VALUES(84,8,7,'2015-06-02 14:18:02'); +INSERT INTO "status" VALUES(84,8,7,'2015-06-02 14:19:02'); +INSERT INTO "status" VALUES(84,8,7,'2015-06-02 14:20:03'); +INSERT INTO "status" VALUES(84,8,7,'2015-06-02 14:21:02'); +INSERT INTO "status" VALUES(84,8,7,'2015-06-02 14:22:02'); +INSERT INTO "status" VALUES(84,8,7,'2015-06-02 14:23:03'); +INSERT INTO "status" VALUES(84,8,7,'2015-06-02 14:24:02'); +INSERT INTO "status" VALUES(84,8,7,'2015-06-02 14:25:01'); +INSERT INTO "status" VALUES(84,8,7,'2015-06-02 14:26:02'); +INSERT INTO "status" VALUES(84,8,7,'2015-06-02 14:27:02'); +INSERT INTO "status" VALUES(84,8,7,'2015-06-02 14:28:02'); +INSERT INTO "status" VALUES(84,8,7,'2015-06-02 14:29:02'); +INSERT INTO "status" VALUES(84,8,7,'2015-06-02 14:30:02'); +INSERT INTO "status" VALUES(84,8,7,'2015-06-02 14:31:02'); +INSERT INTO "status" VALUES(84,8,7,'2015-06-02 14:32:02'); +INSERT INTO "status" VALUES(84,8,7,'2015-06-02 14:33:02'); +INSERT INTO "status" VALUES(84,8,7,'2015-06-02 14:34:02'); +INSERT INTO "status" VALUES(84,8,7,'2015-06-02 14:35:02'); +INSERT INTO "status" VALUES(84,8,7,'2015-06-02 14:36:02'); +INSERT INTO "status" VALUES(84,8,7,'2015-06-02 14:37:02'); +INSERT INTO "status" VALUES(84,8,7,'2015-06-02 14:38:02'); +INSERT INTO "status" VALUES(84,8,7,'2015-06-02 14:39:02'); +INSERT INTO "status" VALUES(84,8,7,'2015-06-02 14:40:02'); +INSERT INTO "status" VALUES(84,8,7,'2015-06-02 14:41:02'); +INSERT INTO "status" VALUES(84,8,7,'2015-06-02 14:42:02'); +INSERT INTO "status" VALUES(84,8,7,'2015-06-02 14:43:02'); +INSERT INTO "status" VALUES(84,8,7,'2015-06-02 14:44:02'); +INSERT INTO "status" VALUES(84,8,7,'2015-06-02 14:45:02'); +INSERT INTO "status" VALUES(84,8,7,'2015-06-02 14:46:02'); +INSERT INTO "status" VALUES(84,8,7,'2015-06-02 14:47:02'); +INSERT INTO "status" VALUES(84,8,7,'2015-06-02 14:48:02'); +CREATE TABLE trip ( + id INTEGER PRIMARY KEY, + duration INTEGER, + start_date TEXT, + start_station_name TEXT, -- this should be removed + start_station_id INTEGER, + end_date TEXT, + end_station_name TEXT, -- this should be removed + end_station_id INTEGER, + bike_id INTEGER, + subscription_type TEXT, + zip_code INTEGER); +INSERT INTO "trip" VALUES(900504,384,'8/21/2015 17:03','Howard at 2nd',63,'8/21/2015 17:10','San Francisco Caltrain 2 (330 Townsend)',69,454,'Subscriber',94041); +INSERT INTO "trip" VALUES(900505,588,'8/21/2015 17:03','South Van Ness at Market',66,'8/21/2015 17:13','San Francisco Caltrain 2 (330 Townsend)',69,574,'Subscriber',95119); +INSERT INTO "trip" VALUES(900506,196,'8/21/2015 17:04','Market at Sansome',77,'8/21/2015 17:07','Harry Bridges Plaza (Ferry Building)',50,636,'Subscriber',94925); +INSERT INTO "trip" VALUES(900507,823,'8/21/2015 17:04','Washington at Kearny',46,'8/21/2015 17:18','2nd at Townsend',61,187,'Subscriber',94103); +INSERT INTO "trip" VALUES(900508,1059,'8/21/2015 17:04','Beale at Market',56,'8/21/2015 17:22','San Francisco Caltrain (Townsend at 4th)',70,363,'Customer',94107); +INSERT INTO "trip" VALUES(900509,362,'8/21/2015 17:05','Clay at Battery',41,'8/21/2015 17:11','Howard at 2nd',63,16,'Subscriber',94107); +INSERT INTO "trip" VALUES(900511,528,'8/21/2015 17:05','Embarcadero at Vallejo',48,'8/21/2015 17:14','Temporary Transbay Terminal (Howard at Beale)',55,67,'Subscriber',94608); +INSERT INTO "trip" VALUES(900514,984,'8/21/2015 17:06','Davis at Jackson',42,'8/21/2015 17:22','San Francisco Caltrain (Townsend at 4th)',70,427,'Subscriber',94087); +INSERT INTO "trip" VALUES(900515,982,'8/21/2015 17:06','Davis at Jackson',42,'8/21/2015 17:22','San Francisco Caltrain 2 (330 Townsend)',69,603,'Subscriber',94107); +INSERT INTO "trip" VALUES(900518,422,'8/21/2015 17:07','Howard at 2nd',63,'8/21/2015 17:14','San Francisco Caltrain 2 (330 Townsend)',69,503,'Subscriber',94010); +INSERT INTO "trip" VALUES(900519,837,'8/21/2015 17:07','2nd at Townsend',61,'8/21/2015 17:21','Market at Sansome',77,351,'Subscriber',94609); +INSERT INTO "trip" VALUES(900520,710,'8/21/2015 17:07','Powell Street BART',39,'8/21/2015 17:19','Townsend at 7th',65,507,'Subscriber',94107); +INSERT INTO "trip" VALUES(900521,209,'8/21/2015 17:07','Temporary Transbay Terminal (Howard at Beale)',55,'8/21/2015 17:11','Harry Bridges Plaza (Ferry Building)',50,415,'Subscriber',94901); +INSERT INTO "trip" VALUES(900522,1155,'8/21/2015 17:07','Clay at Battery',41,'8/21/2015 17:26','San Francisco Caltrain 2 (330 Townsend)',69,29,'Subscriber',94061); +INSERT INTO "trip" VALUES(900523,841,'8/21/2015 17:08','Park at Olive',38,'8/21/2015 17:22','Palo Alto Caltrain Station',34,110,'Subscriber',94002); +INSERT INTO "trip" VALUES(900524,693,'8/21/2015 17:08','Market at Sansome',77,'8/21/2015 17:20','Market at 10th',67,343,'Subscriber',94117); +INSERT INTO "trip" VALUES(900527,614,'8/21/2015 17:08','2nd at South Park',64,'8/21/2015 17:19','Civic Center BART (7th at Market)',72,374,'Subscriber',94122); +INSERT INTO "trip" VALUES(900528,400,'8/21/2015 17:09','Embarcadero at Vallejo',48,'8/21/2015 17:15','Embarcadero at Folsom',51,520,'Subscriber',94547); +INSERT INTO "trip" VALUES(900529,787,'8/21/2015 17:08','Market at Sansome',77,'8/21/2015 17:22','Grant Avenue at Columbus Avenue',73,531,'Subscriber',94133); +INSERT INTO "trip" VALUES(900530,278,'8/21/2015 17:09','Market at Sansome',77,'8/21/2015 17:13','Market at 4th',76,521,'Subscriber',94107); +INSERT INTO "trip" VALUES(900531,804,'8/21/2015 17:09','Harry Bridges Plaza (Ferry Building)',50,'8/21/2015 17:22','5th at Howard',57,636,'Subscriber',94107); +INSERT INTO "trip" VALUES(900534,915,'8/21/2015 17:10','Steuart at Market',74,'8/21/2015 17:25','South Van Ness at Market',66,512,'Subscriber',94114); +INSERT INTO "trip" VALUES(900536,1131,'8/21/2015 17:10','Embarcadero at Sansome',60,'8/21/2015 17:29','San Francisco Caltrain 2 (330 Townsend)',69,275,'Subscriber',95111); +INSERT INTO "trip" VALUES(900537,535,'8/21/2015 17:10','Powell Street BART',39,'8/21/2015 17:19','Steuart at Market',74,137,'Subscriber',94941); +INSERT INTO "trip" VALUES(900538,419,'8/21/2015 17:10','5th at Howard',57,'8/21/2015 17:17','Temporary Transbay Terminal (Howard at Beale)',55,451,'Subscriber',94170); +INSERT INTO "trip" VALUES(900539,336,'8/21/2015 17:10','2nd at Townsend',61,'8/21/2015 17:16','Harry Bridges Plaza (Ferry Building)',50,259,'Subscriber',94901); +INSERT INTO "trip" VALUES(900540,673,'8/21/2015 17:11','Spear at Folsom',49,'8/21/2015 17:22','Townsend at 7th',65,537,'Subscriber',94105); +INSERT INTO "trip" VALUES(900541,693,'8/21/2015 17:11','South Van Ness at Market',66,'8/21/2015 17:23','San Francisco Caltrain 2 (330 Townsend)',69,563,'Subscriber',95118); +INSERT INTO "trip" VALUES(900542,404,'8/21/2015 17:11','Embarcadero at Sansome',60,'8/21/2015 17:18','Steuart at Market',74,425,'Subscriber',94102); +INSERT INTO "trip" VALUES(900543,785,'8/21/2015 17:11','San Francisco Caltrain (Townsend at 4th)',70,'8/21/2015 17:24','Powell at Post (Union Square)',71,266,'Subscriber',94070); +INSERT INTO "trip" VALUES(900544,251,'8/21/2015 17:12','Market at Sansome',77,'8/21/2015 17:16','Harry Bridges Plaza (Ferry Building)',50,538,'Subscriber',94925); +INSERT INTO "trip" VALUES(900545,680,'8/21/2015 17:12','Temporary Transbay Terminal (Howard at Beale)',55,'8/21/2015 17:23','San Francisco Caltrain 2 (330 Townsend)',69,285,'Subscriber',95110); +INSERT INTO "trip" VALUES(900546,222,'8/21/2015 17:12','2nd at South Park',64,'8/21/2015 17:16','San Francisco Caltrain 2 (330 Townsend)',69,434,'Subscriber',95014); +INSERT INTO "trip" VALUES(900547,319,'8/21/2015 17:12','Yerba Buena Center of the Arts (3rd @ Howard)',68,'8/21/2015 17:17','San Francisco Caltrain 2 (330 Townsend)',69,360,'Subscriber',94401); +INSERT INTO "trip" VALUES(900548,461,'8/21/2015 17:12','Embarcadero at Bryant',54,'8/21/2015 17:20','San Francisco Caltrain 2 (330 Townsend)',69,528,'Subscriber',94005); +INSERT INTO "trip" VALUES(900549,262,'8/21/2015 17:12','Market at 10th',67,'8/21/2015 17:17','Powell Street BART',39,193,'Subscriber',94103); +INSERT INTO "trip" VALUES(900550,803,'8/21/2015 17:12','Embarcadero at Folsom',51,'8/21/2015 17:26','2nd at Townsend',61,535,'Customer',94549); +INSERT INTO "trip" VALUES(900551,511,'8/21/2015 17:13','Yerba Buena Center of the Arts (3rd @ Howard)',68,'8/21/2015 17:22','San Francisco Caltrain (Townsend at 4th)',70,593,'Subscriber',95014); +INSERT INTO "trip" VALUES(900552,839,'8/21/2015 17:13','San Francisco Caltrain (Townsend at 4th)',70,'8/21/2015 17:27','Steuart at Market',74,448,'Subscriber',94609); +INSERT INTO "trip" VALUES(900553,705,'8/21/2015 17:13','Spear at Folsom',49,'8/21/2015 17:25','San Francisco Caltrain 2 (330 Townsend)',69,416,'Subscriber',94404); +INSERT INTO "trip" VALUES(900554,646,'8/21/2015 17:13','San Francisco Caltrain (Townsend at 4th)',70,'8/21/2015 17:24','Market at Sansome',77,687,'Subscriber',94549); +INSERT INTO "trip" VALUES(900555,810,'8/21/2015 17:13','Townsend at 7th',65,'8/21/2015 17:27','Harry Bridges Plaza (Ferry Building)',50,552,'Subscriber',94904); +INSERT INTO "trip" VALUES(900556,445,'8/21/2015 17:10','Market at 4th',76,'8/21/2015 17:18','San Francisco Caltrain (Townsend at 4th)',70,449,'Subscriber',94403); +INSERT INTO "trip" VALUES(900557,243,'8/21/2015 17:15','Mountain View City Hall',27,'8/21/2015 17:19','Mountain View Caltrain Station',28,90,'Subscriber',94107); +INSERT INTO "trip" VALUES(900558,389,'8/21/2015 17:16','5th at Howard',57,'8/21/2015 17:22','San Francisco Caltrain 2 (330 Townsend)',69,522,'Subscriber',94402); +INSERT INTO "trip" VALUES(900560,278,'8/21/2015 17:16','Beale at Market',56,'8/21/2015 17:21','Commercial at Montgomery',45,370,'Subscriber',94133); +INSERT INTO "trip" VALUES(900561,261,'8/21/2015 17:17','Mountain View City Hall',27,'8/21/2015 17:21','Mountain View Caltrain Station',28,94,'Subscriber',94040); +INSERT INTO "trip" VALUES(900562,647,'8/21/2015 17:17','Commercial at Montgomery',45,'8/21/2015 17:27','San Francisco Caltrain 2 (330 Townsend)',69,386,'Subscriber',94087); +INSERT INTO "trip" VALUES(900563,811,'8/21/2015 17:17','Market at Sansome',77,'8/21/2015 17:30','Market at 10th',67,260,'Subscriber',94110); +INSERT INTO "trip" VALUES(900564,234,'8/21/2015 17:17','Embarcadero at Vallejo',48,'8/21/2015 17:21','Steuart at Market',74,418,'Subscriber',94102); +INSERT INTO "trip" VALUES(900565,808,'8/21/2015 17:17','Embarcadero at Vallejo',48,'8/21/2015 17:30','San Francisco Caltrain 2 (330 Townsend)',69,359,'Subscriber',94103); +INSERT INTO "trip" VALUES(900566,685,'8/21/2015 17:17','San Francisco Caltrain 2 (330 Townsend)',69,'8/21/2015 17:29','Harry Bridges Plaza (Ferry Building)',50,405,'Subscriber',94965); +INSERT INTO "trip" VALUES(900567,607,'8/21/2015 17:17','2nd at Townsend',61,'8/21/2015 17:27','Davis at Jackson',42,598,'Subscriber',94111); +INSERT INTO "trip" VALUES(900568,679,'8/21/2015 17:17','Market at 10th',67,'8/21/2015 17:28','San Francisco Caltrain 2 (330 Townsend)',69,327,'Subscriber',94401); +INSERT INTO "trip" VALUES(900569,253,'8/21/2015 17:18','Mountain View Caltrain Station',28,'8/21/2015 17:23','Mountain View Caltrain Station',28,233,'Subscriber',94109); +INSERT INTO "trip" VALUES(900570,464,'8/21/2015 17:19','San Pedro Square',6,'8/21/2015 17:26','San Jose Diridon Caltrain Station',2,57,'Subscriber',95377); +INSERT INTO "trip" VALUES(900571,554,'8/21/2015 17:19','Golden Gate at Polk',59,'8/21/2015 17:28','Temporary Transbay Terminal (Howard at Beale)',55,672,'Subscriber',94610); +INSERT INTO "trip" VALUES(900572,509,'8/21/2015 17:19','2nd at Townsend',61,'8/21/2015 17:28','Market at Sansome',77,187,'Subscriber',94107); +INSERT INTO "trip" VALUES(900573,508,'8/21/2015 17:20','Townsend at 7th',65,'8/21/2015 17:28','2nd at Townsend',61,507,'Subscriber',94107); +INSERT INTO "trip" VALUES(900574,273,'8/21/2015 17:20','2nd at South Park',64,'8/21/2015 17:24','Howard at 2nd',63,441,'Subscriber',94108); +INSERT INTO "trip" VALUES(900576,201,'8/21/2015 17:20','Townsend at 7th',65,'8/21/2015 17:23','San Francisco Caltrain 2 (330 Townsend)',69,408,'Customer',94134); +INSERT INTO "trip" VALUES(900577,874,'8/21/2015 17:20','Beale at Market',56,'8/21/2015 17:35','Golden Gate at Polk',59,111,'Subscriber',94109); +INSERT INTO "trip" VALUES(900578,438,'8/21/2015 17:20','Market at 4th',76,'8/21/2015 17:28','San Francisco Caltrain 2 (330 Townsend)',69,625,'Subscriber',94107); +INSERT INTO "trip" VALUES(900579,447,'8/21/2015 17:21','Embarcadero at Folsom',51,'8/21/2015 17:28','San Francisco Caltrain 2 (330 Townsend)',69,628,'Subscriber',94303); +INSERT INTO "trip" VALUES(900580,406,'8/21/2015 17:21','Market at Sansome',77,'8/21/2015 17:28','2nd at South Park',64,351,'Subscriber',94121); +INSERT INTO "trip" VALUES(900581,614,'8/21/2015 17:21','2nd at South Park',64,'8/21/2015 17:31','Powell Street BART',39,392,'Subscriber',94612); +INSERT INTO "trip" VALUES(900583,767,'8/21/2015 17:22','San Francisco Caltrain (Townsend at 4th)',70,'8/21/2015 17:35','Spear at Folsom',49,449,'Subscriber',94061); +INSERT INTO "trip" VALUES(900584,341,'8/21/2015 17:22','2nd at South Park',64,'8/21/2015 17:28','Market at Sansome',77,361,'Subscriber',94610); +INSERT INTO "trip" VALUES(900585,222,'8/21/2015 17:19','Embarcadero at Vallejo',48,'8/21/2015 17:23','Steuart at Market',74,473,'Subscriber',94597); +INSERT INTO "trip" VALUES(900586,422,'8/21/2015 17:19','Embarcadero at Vallejo',48,'8/21/2015 17:26','Temporary Transbay Terminal (Howard at Beale)',55,279,'Subscriber',94611); +INSERT INTO "trip" VALUES(900587,71,'8/21/2015 17:23','2nd at South Park',64,'8/21/2015 17:24','2nd at South Park',64,282,'Subscriber',94901); +INSERT INTO "trip" VALUES(900588,834,'8/21/2015 17:23','Steuart at Market',74,'8/21/2015 17:37','San Francisco Caltrain 2 (330 Townsend)',69,575,'Subscriber',94404); +INSERT INTO "trip" VALUES(900589,279,'8/21/2015 17:22','Steuart at Market',74,'8/21/2015 17:26','Embarcadero at Bryant',54,590,'Subscriber',94105); +INSERT INTO "trip" VALUES(900590,265,'8/21/2015 17:24','Embarcadero at Vallejo',48,'8/21/2015 17:28','Steuart at Market',74,278,'Subscriber',94556); +INSERT INTO "trip" VALUES(900591,69,'8/21/2015 17:24','2nd at South Park',64,'8/21/2015 17:25','2nd at Townsend',61,282,'Subscriber',94107); +INSERT INTO "trip" VALUES(900592,479,'8/21/2015 17:24','Embarcadero at Folsom',51,'8/21/2015 17:32','Embarcadero at Sansome',60,422,'Subscriber',94133); +INSERT INTO "trip" VALUES(900594,371,'8/21/2015 17:26','Santa Clara at Almaden',4,'8/21/2015 17:32','San Jose Diridon Caltrain Station',2,20,'Subscriber',94306); +INSERT INTO "trip" VALUES(900598,768,'8/21/2015 17:27','Davis at Jackson',42,'8/21/2015 17:40','San Francisco Caltrain 2 (330 Townsend)',69,546,'Subscriber',94025); +INSERT INTO "trip" VALUES(900601,557,'8/21/2015 17:28','Steuart at Market',74,'8/21/2015 17:37','San Francisco Caltrain 2 (330 Townsend)',69,425,'Subscriber',94061); +INSERT INTO "trip" VALUES(900604,394,'8/21/2015 17:29','Civic Center BART (7th at Market)',72,'8/21/2015 17:35','Market at 4th',76,315,'Subscriber',94110); +INSERT INTO "trip" VALUES(900607,335,'8/21/2015 17:30','Embarcadero at Sansome',60,'8/21/2015 17:35','Harry Bridges Plaza (Ferry Building)',50,470,'Subscriber',94602); +INSERT INTO "trip" VALUES(900610,648,'8/21/2015 17:30','Steuart at Market',74,'8/21/2015 17:41','San Francisco Caltrain 2 (330 Townsend)',69,473,'Subscriber',94024); +INSERT INTO "trip" VALUES(900613,446,'8/21/2015 17:31','2nd at Folsom',62,'8/21/2015 17:38','Harry Bridges Plaza (Ferry Building)',50,289,'Subscriber',94949); +INSERT INTO "trip" VALUES(900616,202,'8/21/2015 17:32','Townsend at 7th',65,'8/21/2015 17:35','San Francisco Caltrain 2 (330 Townsend)',69,537,'Subscriber',94127); +INSERT INTO "trip" VALUES(900617,605,'8/21/2015 17:32','Civic Center BART (7th at Market)',72,'8/21/2015 17:42','Townsend at 7th',65,659,'Subscriber',94112); +INSERT INTO "trip" VALUES(900618,627,'8/21/2015 17:32','San Francisco City Hall',58,'8/21/2015 17:43','5th at Howard',57,292,'Subscriber',94103); +INSERT INTO "trip" VALUES(900619,557,'8/21/2015 17:33','Yerba Buena Center of the Arts (3rd @ Howard)',68,'8/21/2015 17:42','San Francisco Caltrain (Townsend at 4th)',70,602,'Subscriber',94402); +INSERT INTO "trip" VALUES(900620,622,'8/21/2015 17:33','San Francisco Caltrain 2 (330 Townsend)',69,'8/21/2015 17:44','Market at 10th',67,581,'Subscriber',94102); +INSERT INTO "trip" VALUES(900621,636,'8/21/2015 17:33','Embarcadero at Sansome',60,'8/21/2015 17:44','Post at Kearny',47,422,'Subscriber',94109); +INSERT INTO "trip" VALUES(900622,777,'8/21/2015 17:33','Temporary Transbay Terminal (Howard at Beale)',55,'8/21/2015 17:46','San Francisco Caltrain (Townsend at 4th)',70,573,'Subscriber',94030); +INSERT INTO "trip" VALUES(900623,453,'8/21/2015 17:34','Howard at 2nd',63,'8/21/2015 17:41','San Francisco Caltrain 2 (330 Townsend)',69,437,'Subscriber',94061); +INSERT INTO "trip" VALUES(900624,365,'8/21/2015 17:34','2nd at South Park',64,'8/21/2015 17:40','Market at Sansome',77,351,'Subscriber',94607); +INSERT INTO "trip" VALUES(900625,2146,'8/21/2015 17:34','Golden Gate at Polk',59,'8/21/2015 18:10','Davis at Jackson',42,417,'Subscriber',94530); +INSERT INTO "trip" VALUES(900626,348,'8/21/2015 17:35','Yerba Buena Center of the Arts (3rd @ Howard)',68,'8/21/2015 17:40','San Francisco Caltrain (Townsend at 4th)',70,578,'Subscriber',94087); +INSERT INTO "trip" VALUES(900629,530,'8/21/2015 17:36','2nd at Townsend',61,'8/21/2015 17:45','Townsend at 7th',65,535,'Subscriber',94103); +INSERT INTO "trip" VALUES(900630,691,'8/21/2015 17:36','Mountain View Caltrain Station',28,'8/21/2015 17:47','Rengstorff Avenue / California Street',33,105,'Subscriber','94040-1724'); +INSERT INTO "trip" VALUES(900631,712,'8/21/2015 17:33','Redwood City Medical Center',26,'8/21/2015 17:45','San Mateo County Center',23,299,'Subscriber',94040); +INSERT INTO "trip" VALUES(900632,410,'8/21/2015 17:37','Market at 4th',76,'8/21/2015 17:43','Temporary Transbay Terminal (Howard at Beale)',55,309,'Subscriber',94501); +INSERT INTO "trip" VALUES(900635,971,'8/21/2015 17:37','Spear at Folsom',49,'8/21/2015 17:53','Market at 4th',76,449,'Subscriber',94117); +INSERT INTO "trip" VALUES(900636,892,'8/21/2015 17:37','Embarcadero at Folsom',51,'8/21/2015 17:52','Civic Center BART (7th at Market)',72,494,'Subscriber',94080); +INSERT INTO "trip" VALUES(900639,427,'8/21/2015 17:38','Embarcadero at Folsom',51,'8/21/2015 17:45','2nd at Townsend',61,520,'Subscriber',94107); +INSERT INTO "trip" VALUES(900640,509,'8/21/2015 17:38','2nd at Townsend',61,'8/21/2015 17:47','Harry Bridges Plaza (Ferry Building)',50,507,'Subscriber',94960); +INSERT INTO "trip" VALUES(900641,552,'8/21/2015 17:38','Powell Street BART',39,'8/21/2015 17:47','San Francisco Caltrain 2 (330 Townsend)',69,392,'Subscriber',94306); +INSERT INTO "trip" VALUES(900644,636,'8/21/2015 17:39','Golden Gate at Polk',59,'8/21/2015 17:49','San Francisco Caltrain 2 (330 Townsend)',69,388,'Subscriber',94306); +INSERT INTO "trip" VALUES(900645,290,'8/21/2015 17:40','5th at Howard',57,'8/21/2015 17:45','San Francisco Caltrain 2 (330 Townsend)',69,572,'Subscriber',94303); +INSERT INTO "trip" VALUES(900646,2027,'8/21/2015 17:41','Market at Sansome',77,'8/21/2015 18:14','Market at 10th',67,351,'Subscriber',94103); +INSERT INTO "trip" VALUES(900647,894,'8/21/2015 17:41','San Francisco Caltrain (Townsend at 4th)',70,'8/21/2015 17:56','Embarcadero at Sansome',60,593,'Subscriber',94133); +INSERT INTO "trip" VALUES(900648,557,'8/21/2015 17:41','San Jose Diridon Caltrain Station',2,'8/21/2015 17:50','Paseo de San Antonio',7,20,'Subscriber',95113); +INSERT INTO "trip" VALUES(900649,265,'8/21/2015 17:42','Temporary Transbay Terminal (Howard at Beale)',55,'8/21/2015 17:46','Yerba Buena Center of the Arts (3rd @ Howard)',68,555,'Subscriber',94403); +INSERT INTO "trip" VALUES(900650,776,'8/21/2015 17:42','San Francisco Caltrain 2 (330 Townsend)',69,'8/21/2015 17:55','Broadway St at Battery St',82,191,'Subscriber',94105); +INSERT INTO "trip" VALUES(900651,836,'8/21/2015 17:42','Steuart at Market',74,'8/21/2015 17:56','San Francisco Caltrain (Townsend at 4th)',70,137,'Subscriber',95111); +INSERT INTO "trip" VALUES(900656,814,'8/21/2015 17:43','Santa Clara County Civic Center',80,'8/21/2015 17:56','Ryland Park',84,231,'Subscriber',95112); +INSERT INTO "trip" VALUES(900660,354,'8/21/2015 17:45','Embarcadero at Folsom',51,'8/21/2015 17:51','Howard at 2nd',63,384,'Subscriber',94105); +INSERT INTO "trip" VALUES(900661,511,'8/21/2015 17:45','Commercial at Montgomery',45,'8/21/2015 17:53','Market at 4th',76,370,'Subscriber',94704); +INSERT INTO "trip" VALUES(900662,403,'8/21/2015 17:45','2nd at Folsom',62,'8/21/2015 17:52','San Francisco Caltrain (Townsend at 4th)',70,312,'Subscriber',94403); +INSERT INTO "trip" VALUES(900663,4029,'8/21/2015 17:46','2nd at South Park',64,'8/21/2015 18:53','Townsend at 7th',65,327,'Subscriber',94612); +INSERT INTO "trip" VALUES(900664,836,'8/21/2015 17:46','Harry Bridges Plaza (Ferry Building)',50,'8/21/2015 18:00','San Francisco Caltrain (Townsend at 4th)',70,268,'Subscriber',94111); +INSERT INTO "trip" VALUES(900665,309,'8/21/2015 17:47','Embarcadero at Bryant',54,'8/21/2015 17:52','Beale at Market',56,492,'Subscriber',94105); +INSERT INTO "trip" VALUES(900666,154,'8/21/2015 17:47','San Jose Civic Center',3,'8/21/2015 17:50','Paseo de San Antonio',7,64,'Subscriber',95112); +INSERT INTO "trip" VALUES(900667,439,'8/21/2015 17:47','San Francisco Caltrain 2 (330 Townsend)',69,'8/21/2015 17:55','5th at Howard',57,212,'Subscriber',94103); +INSERT INTO "trip" VALUES(900668,967,'8/21/2015 17:47','Steuart at Market',74,'8/21/2015 18:03','Post at Kearny',47,623,'Customer','nil'); +INSERT INTO "trip" VALUES(900669,969,'8/21/2015 17:47','Steuart at Market',74,'8/21/2015 18:04','Post at Kearny',47,600,'Customer','nil'); +INSERT INTO "trip" VALUES(900670,961,'8/21/2015 17:48','Steuart at Market',74,'8/21/2015 18:04','Post at Kearny',47,418,'Customer','nil'); +INSERT INTO "trip" VALUES(900671,940,'8/21/2015 17:48','Steuart at Market',74,'8/21/2015 18:04','Post at Kearny',47,33,'Customer','nil'); +INSERT INTO "trip" VALUES(900672,237,'8/21/2015 17:48','Howard at 2nd',63,'8/21/2015 17:52','2nd at South Park',64,441,'Subscriber',94107); +INSERT INTO "trip" VALUES(900673,1103,'8/21/2015 17:48','Embarcadero at Sansome',60,'8/21/2015 18:07','Townsend at 7th',65,56,'Subscriber',94110); +INSERT INTO "trip" VALUES(900674,604,'8/21/2015 17:49','San Francisco Caltrain (Townsend at 4th)',70,'8/21/2015 17:59','Civic Center BART (7th at Market)',72,427,'Subscriber',94601); +INSERT INTO "trip" VALUES(900675,1187,'8/21/2015 17:51','San Francisco Caltrain (Townsend at 4th)',70,'8/21/2015 18:11','Clay at Battery',41,436,'Subscriber',94133); +INSERT INTO "trip" VALUES(900676,366,'8/21/2015 17:51','SJSU 4th at San Carlos',12,'8/21/2015 17:57','San Pedro Square',6,65,'Subscriber',95110); +INSERT INTO "trip" VALUES(900677,192,'8/21/2015 17:52','Townsend at 7th',65,'8/21/2015 17:55','San Francisco Caltrain 2 (330 Townsend)',69,455,'Subscriber',94404); +INSERT INTO "trip" VALUES(900678,322,'8/21/2015 17:52','2nd at Folsom',62,'8/21/2015 17:58','San Francisco Caltrain (Townsend at 4th)',70,478,'Subscriber',94002); +INSERT INTO "trip" VALUES(900679,708,'8/21/2015 17:53','Broadway St at Battery St',82,'8/21/2015 18:05','2nd at Townsend',61,562,'Subscriber',95111); +INSERT INTO "trip" VALUES(900680,353,'8/21/2015 17:53','Davis at Jackson',42,'8/21/2015 17:59','Temporary Transbay Terminal (Howard at Beale)',55,362,'Subscriber',94602); +INSERT INTO "trip" VALUES(900683,182,'8/21/2015 17:54','Embarcadero at Vallejo',48,'8/21/2015 17:57','Steuart at Market',74,617,'Subscriber',94608); +INSERT INTO "trip" VALUES(900684,629,'8/21/2015 17:54','San Jose Diridon Caltrain Station',2,'8/21/2015 18:04','Ryland Park',84,143,'Subscriber',95110); +INSERT INTO "trip" VALUES(900685,519,'8/21/2015 17:54','Market at Sansome',77,'8/21/2015 18:02','2nd at Townsend',61,372,'Subscriber',94107); +INSERT INTO "trip" VALUES(900688,286,'8/21/2015 17:54','Temporary Transbay Terminal (Howard at Beale)',55,'8/21/2015 17:59','Market at Sansome',77,651,'Subscriber',94105); +INSERT INTO "trip" VALUES(900689,838,'8/21/2015 17:54','San Francisco Caltrain (Townsend at 4th)',70,'8/21/2015 18:08','Market at 10th',67,573,'Subscriber',94102); +INSERT INTO "trip" VALUES(900692,738,'8/21/2015 17:55','2nd at South Park',64,'8/21/2015 18:07','Townsend at 7th',65,416,'Subscriber',94105); +INSERT INTO "trip" VALUES(900693,561,'8/21/2015 17:55','San Francisco Caltrain 2 (330 Townsend)',69,'8/21/2015 18:05','Powell Street BART',39,359,'Subscriber',94597); +INSERT INTO "trip" VALUES(900694,357,'8/21/2015 17:55','San Pedro Square',6,'8/21/2015 18:01','San Jose Diridon Caltrain Station',2,696,'Subscriber',94002); +INSERT INTO "trip" VALUES(900699,422,'8/21/2015 17:56','Embarcadero at Sansome',60,'8/21/2015 18:03','Harry Bridges Plaza (Ferry Building)',50,400,'Subscriber',94566); +INSERT INTO "trip" VALUES(900700,723,'8/21/2015 17:57','Clay at Battery',41,'8/21/2015 18:09','San Francisco Caltrain 2 (330 Townsend)',69,514,'Subscriber',94087); +INSERT INTO "trip" VALUES(900701,660,'8/21/2015 17:57','South Van Ness at Market',66,'8/21/2015 18:08','San Francisco Caltrain 2 (330 Townsend)',69,355,'Subscriber',94010); +INSERT INTO "trip" VALUES(900704,1004,'8/21/2015 17:57','Broadway St at Battery St',82,'8/21/2015 18:14','San Francisco Caltrain (Townsend at 4th)',70,331,'Subscriber',94065); +INSERT INTO "trip" VALUES(900705,535,'8/21/2015 17:58','2nd at Folsom',62,'8/21/2015 18:07','San Francisco Caltrain (Townsend at 4th)',70,426,'Subscriber',95008); +INSERT INTO "trip" VALUES(900706,574,'8/21/2015 17:58','San Francisco Caltrain 2 (330 Townsend)',69,'8/21/2015 18:08','Embarcadero at Folsom',51,473,'Subscriber',94105); +INSERT INTO "trip" VALUES(900707,848,'8/21/2015 17:59','University and Emerson',35,'8/21/2015 18:13','Park at Olive',38,243,'Subscriber',94040); +INSERT INTO "trip" VALUES(900709,342,'8/21/2015 18:01','Yerba Buena Center of the Arts (3rd @ Howard)',68,'8/21/2015 18:06','Powell Street BART',39,375,'Subscriber',94804); +INSERT INTO "trip" VALUES(900711,751,'8/21/2015 18:01','Embarcadero at Folsom',51,'8/21/2015 18:13','San Francisco Caltrain (Townsend at 4th)',70,373,'Subscriber',94062); +INSERT INTO "trip" VALUES(900712,277,'8/21/2015 18:01','2nd at Folsom',62,'8/21/2015 18:06','2nd at Townsend',61,504,'Subscriber',94107); +INSERT INTO "trip" VALUES(900713,407,'8/21/2015 18:01','2nd at Townsend',61,'8/21/2015 18:08','Spear at Folsom',49,282,'Subscriber',94102); +INSERT INTO "trip" VALUES(900714,412,'8/21/2015 18:01','Embarcadero at Sansome',60,'8/21/2015 18:08','Steuart at Market',74,509,'Subscriber',94114); +INSERT INTO "trip" VALUES(900715,708,'8/21/2015 18:02','Commercial at Montgomery',45,'8/21/2015 18:13','2nd at Folsom',62,109,'Subscriber',94107); +INSERT INTO "trip" VALUES(900716,759,'8/21/2015 18:02','San Francisco Caltrain (Townsend at 4th)',70,'8/21/2015 18:14','Harry Bridges Plaza (Ferry Building)',50,137,'Subscriber',94930); +INSERT INTO "trip" VALUES(900717,174,'8/21/2015 18:02','Townsend at 7th',65,'8/21/2015 18:05','San Francisco Caltrain 2 (330 Townsend)',69,659,'Subscriber',95051); +INSERT INTO "trip" VALUES(900718,329,'8/21/2015 18:02','Mountain View Caltrain Station',28,'8/21/2015 18:08','Castro Street and El Camino Real',32,90,'Subscriber',94022); +INSERT INTO "trip" VALUES(900719,819,'8/21/2015 18:02','Yerba Buena Center of the Arts (3rd @ Howard)',68,'8/21/2015 18:16','Townsend at 7th',65,555,'Subscriber',94107); +INSERT INTO "trip" VALUES(900720,457,'8/21/2015 18:03','Temporary Transbay Terminal (Howard at Beale)',55,'8/21/2015 18:11','5th at Howard',57,309,'Subscriber',94109); +INSERT INTO "trip" VALUES(900721,542,'8/21/2015 18:04','5th at Howard',57,'8/21/2015 18:13','Steuart at Market',74,636,'Subscriber',94903); +INSERT INTO "trip" VALUES(900722,444,'8/21/2015 18:04','Embarcadero at Sansome',60,'8/21/2015 18:11','Grant Avenue at Columbus Avenue',73,593,'Subscriber',94133); +INSERT INTO "trip" VALUES(900723,860,'8/21/2015 18:04','Washington at Kearny',46,'8/21/2015 18:19','Temporary Transbay Terminal (Howard at Beale)',55,479,'Subscriber',94705); +INSERT INTO "trip" VALUES(900724,1155,'8/21/2015 18:05','Post at Kearny',47,'8/21/2015 18:24','Golden Gate at Polk',59,429,'Customer',85009); +INSERT INTO "trip" VALUES(900725,1050,'8/21/2015 18:06','Davis at Jackson',42,'8/21/2015 18:23','San Francisco Caltrain 2 (330 Townsend)',69,541,'Subscriber',94086); +INSERT INTO "trip" VALUES(900726,473,'8/21/2015 18:06','Howard at 2nd',63,'8/21/2015 18:14','San Francisco Caltrain 2 (330 Townsend)',69,300,'Subscriber',94070); +INSERT INTO "trip" VALUES(900727,295,'8/21/2015 18:06','Howard at 2nd',63,'8/21/2015 18:11','Harry Bridges Plaza (Ferry Building)',50,384,'Subscriber',94115); +INSERT INTO "trip" VALUES(900728,299,'8/21/2015 18:06','Yerba Buena Center of the Arts (3rd @ Howard)',68,'8/21/2015 18:11','San Francisco Caltrain (Townsend at 4th)',70,586,'Subscriber',94070); +INSERT INTO "trip" VALUES(900729,250,'8/21/2015 18:07','Townsend at 7th',65,'8/21/2015 18:11','San Francisco Caltrain 2 (330 Townsend)',69,535,'Subscriber',94401); +INSERT INTO "trip" VALUES(900730,791,'8/21/2015 18:07','2nd at Townsend',61,'8/21/2015 18:20','Powell Street BART',39,395,'Customer',94549); +INSERT INTO "trip" VALUES(900731,832,'8/21/2015 18:07','Broadway St at Battery St',82,'8/21/2015 18:21','San Francisco Caltrain (Townsend at 4th)',70,191,'Subscriber',95130); +INSERT INTO "trip" VALUES(900732,827,'8/21/2015 18:08','San Francisco Caltrain (Townsend at 4th)',70,'8/21/2015 18:22','Harry Bridges Plaza (Ferry Building)',50,569,'Subscriber',94111); +INSERT INTO "trip" VALUES(900733,179,'8/21/2015 18:08','2nd at Folsom',62,'8/21/2015 18:11','Market at Sansome',77,423,'Subscriber',94105); +INSERT INTO "trip" VALUES(900734,499,'8/21/2015 18:08','Steuart at Market',74,'8/21/2015 18:16','Powell at Post (Union Square)',71,448,'Subscriber',94108); +INSERT INTO "trip" VALUES(900735,336,'8/21/2015 18:08','Embarcadero at Sansome',60,'8/21/2015 18:14','Steuart at Market',74,450,'Subscriber',94102); +INSERT INTO "trip" VALUES(900736,836,'8/21/2015 18:10','San Francisco Caltrain (Townsend at 4th)',70,'8/21/2015 18:24','Broadway St at Battery St',82,478,'Subscriber',94133); +INSERT INTO "trip" VALUES(900737,855,'8/21/2015 18:10','Market at 10th',67,'8/21/2015 18:25','2nd at Folsom',62,420,'Subscriber',94709); +INSERT INTO "trip" VALUES(900738,232,'8/21/2015 18:11','2nd at Folsom',62,'8/21/2015 18:15','2nd at Townsend',61,500,'Subscriber',94043); +INSERT INTO "trip" VALUES(900739,708,'8/21/2015 18:11','Steuart at Market',74,'8/21/2015 18:23','2nd at Townsend',61,463,'Subscriber',94158); +INSERT INTO "trip" VALUES(900740,230,'8/21/2015 18:11','2nd at Folsom',62,'8/21/2015 18:15','Market at Sansome',77,443,'Subscriber',94612); +INSERT INTO "trip" VALUES(900741,231,'8/21/2015 18:13','2nd at South Park',64,'8/21/2015 18:17','San Francisco Caltrain (Townsend at 4th)',70,603,'Subscriber',94301); +INSERT INTO "trip" VALUES(900742,126,'8/21/2015 18:13','Howard at 2nd',63,'8/21/2015 18:15','Market at Sansome',77,274,'Subscriber',94114); +INSERT INTO "trip" VALUES(900743,1161,'8/21/2015 18:13','Park at Olive',38,'8/21/2015 18:33','Rengstorff Avenue / California Street',33,243,'Subscriber',94040); +INSERT INTO "trip" VALUES(900745,246,'8/21/2015 18:15','Broadway St at Battery St',82,'8/21/2015 18:19','Beale at Market',56,502,'Subscriber',94618); +INSERT INTO "trip" VALUES(900746,651,'8/21/2015 18:16','Palo Alto Caltrain Station',34,'8/21/2015 18:26','California Ave Caltrain Station',36,301,'Subscriber',94040); +INSERT INTO "trip" VALUES(900747,786,'8/21/2015 18:16','Broadway St at Battery St',82,'8/21/2015 18:29','San Francisco Caltrain (Townsend at 4th)',70,505,'Subscriber',95129); +INSERT INTO "trip" VALUES(900748,1134,'8/21/2015 18:16','Golden Gate at Polk',59,'8/21/2015 18:35','Embarcadero at Sansome',60,547,'Subscriber',94133); +INSERT INTO "trip" VALUES(900749,780,'8/21/2015 18:17','Harry Bridges Plaza (Ferry Building)',50,'8/21/2015 18:30','San Francisco Caltrain 2 (330 Townsend)',69,259,'Subscriber',94086); +INSERT INTO "trip" VALUES(900750,597,'8/21/2015 18:18','Market at Sansome',77,'8/21/2015 18:28','Grant Avenue at Columbus Avenue',73,361,'Subscriber',94133); +INSERT INTO "trip" VALUES(900751,470,'8/21/2015 18:19','San Jose Diridon Caltrain Station',2,'8/21/2015 18:27','San Salvador at 1st',8,696,'Subscriber',94111); +INSERT INTO "trip" VALUES(900752,844,'8/21/2015 18:19','Grant Avenue at Columbus Avenue',73,'8/21/2015 18:33','Powell at Post (Union Square)',71,431,'Customer','nil'); +INSERT INTO "trip" VALUES(900753,822,'8/21/2015 18:19','Grant Avenue at Columbus Avenue',73,'8/21/2015 18:33','Powell at Post (Union Square)',71,532,'Customer','nil'); +INSERT INTO "trip" VALUES(900755,196,'8/21/2015 18:22','Townsend at 7th',65,'8/21/2015 18:26','San Francisco Caltrain 2 (330 Townsend)',69,56,'Subscriber',94107); +INSERT INTO "trip" VALUES(900756,329,'8/21/2015 18:23','Beale at Market',56,'8/21/2015 18:29','Embarcadero at Bryant',54,454,'Subscriber',94107); +INSERT INTO "trip" VALUES(900757,690,'8/21/2015 18:24','Beale at Market',56,'8/21/2015 18:35','Market at 10th',67,563,'Subscriber',94102); +INSERT INTO "trip" VALUES(900758,301,'8/21/2015 18:24','Market at Sansome',77,'8/21/2015 18:29','Market at 4th',76,187,'Subscriber',94111); +INSERT INTO "trip" VALUES(900760,177,'8/21/2015 18:26','5th at Howard',57,'8/21/2015 18:29','Powell Street BART',39,292,'Subscriber',94118); +INSERT INTO "trip" VALUES(900761,275,'8/21/2015 18:27','Commercial at Montgomery',45,'8/21/2015 18:31','Yerba Buena Center of the Arts (3rd @ Howard)',68,214,'Subscriber',94107); +INSERT INTO "trip" VALUES(900762,234,'8/21/2015 18:27','San Francisco Caltrain 2 (330 Townsend)',69,'8/21/2015 18:31','Townsend at 7th',65,355,'Subscriber',94107); +INSERT INTO "trip" VALUES(900763,1107,'8/21/2015 18:28','San Francisco Caltrain 2 (330 Townsend)',69,'8/21/2015 18:46','Embarcadero at Sansome',60,503,'Subscriber',94109); +INSERT INTO "trip" VALUES(900764,482,'8/21/2015 18:28','Powell Street BART',39,'8/21/2015 18:36','South Van Ness at Market',66,193,'Subscriber',94117); +INSERT INTO "trip" VALUES(900766,386,'8/21/2015 18:26','San Jose Diridon Caltrain Station',2,'8/21/2015 18:33','Santa Clara at Almaden',4,293,'Subscriber',95110); +INSERT INTO "trip" VALUES(900767,782,'8/21/2015 18:30','Townsend at 7th',65,'8/21/2015 18:43','Temporary Transbay Terminal (Howard at Beale)',55,416,'Subscriber',94103); +INSERT INTO "trip" VALUES(900768,529,'8/21/2015 18:31','Townsend at 7th',65,'8/21/2015 18:40','2nd at South Park',64,329,'Subscriber',94107); +INSERT INTO "trip" VALUES(900769,623,'8/21/2015 18:32','Clay at Battery',41,'8/21/2015 18:42','San Francisco Caltrain (Townsend at 4th)',70,436,'Subscriber',95014); +INSERT INTO "trip" VALUES(900770,792,'8/21/2015 18:32','Embarcadero at Sansome',60,'8/21/2015 18:46','Grant Avenue at Columbus Avenue',73,86,'Customer',1); +INSERT INTO "trip" VALUES(900771,767,'8/21/2015 18:33','Embarcadero at Sansome',60,'8/21/2015 18:46','Grant Avenue at Columbus Avenue',73,602,'Customer',1); +INSERT INTO "trip" VALUES(900772,1190,'8/21/2015 18:33','Market at Sansome',77,'8/21/2015 18:53','Townsend at 7th',65,651,'Customer',94107); +INSERT INTO "trip" VALUES(900774,589,'8/21/2015 18:34','Harry Bridges Plaza (Ferry Building)',50,'8/21/2015 18:44','2nd at Townsend',61,415,'Subscriber',94107); +INSERT INTO "trip" VALUES(900775,792,'8/21/2015 18:34','Harry Bridges Plaza (Ferry Building)',50,'8/21/2015 18:47','San Francisco Caltrain (Townsend at 4th)',70,538,'Subscriber',94025); +INSERT INTO "trip" VALUES(900776,540,'8/21/2015 18:34','Townsend at 7th',65,'8/21/2015 18:43','Civic Center BART (7th at Market)',72,355,'Subscriber',94107); +INSERT INTO "trip" VALUES(900777,653,'8/21/2015 18:35','Embarcadero at Folsom',51,'8/21/2015 18:46','Commercial at Montgomery',45,589,'Subscriber',94108); +INSERT INTO "trip" VALUES(900778,1022,'8/21/2015 18:35','Market at Sansome',77,'8/21/2015 18:52','Embarcadero at Sansome',60,353,'Subscriber',94303); +INSERT INTO "trip" VALUES(900780,556,'8/21/2015 18:36','Townsend at 7th',65,'8/21/2015 18:46','Civic Center BART (7th at Market)',72,555,'Subscriber',94551); +INSERT INTO "trip" VALUES(900781,354,'8/21/2015 18:37','Embarcadero at Sansome',60,'8/21/2015 18:43','Steuart at Market',74,585,'Subscriber',94111); +INSERT INTO "trip" VALUES(900782,179,'8/21/2015 18:37','San Francisco Caltrain (Townsend at 4th)',70,'8/21/2015 18:40','2nd at Townsend',61,268,'Subscriber',94107); +INSERT INTO "trip" VALUES(900783,1576,'8/21/2015 18:37','Redwood City Caltrain Station',22,'8/21/2015 19:03','San Mateo County Center',23,136,'Customer',16100); +INSERT INTO "trip" VALUES(900784,466,'8/21/2015 18:38','San Francisco Caltrain (Townsend at 4th)',70,'8/21/2015 18:46','Powell Street BART',39,426,'Subscriber',94109); +INSERT INTO "trip" VALUES(900785,237,'8/21/2015 18:38','San Francisco Caltrain (Townsend at 4th)',70,'8/21/2015 18:42','2nd at Townsend',61,373,'Subscriber',94107); +INSERT INTO "trip" VALUES(900786,729,'8/21/2015 18:38','San Francisco Caltrain (Townsend at 4th)',70,'8/21/2015 18:50','Golden Gate at Polk',59,366,'Subscriber',94109); +INSERT INTO "trip" VALUES(900787,355,'8/21/2015 18:38','San Francisco Caltrain (Townsend at 4th)',70,'8/21/2015 18:44','Yerba Buena Center of the Arts (3rd @ Howard)',68,335,'Subscriber',94107); +INSERT INTO "trip" VALUES(900789,495,'8/21/2015 18:40','2nd at Townsend',61,'8/21/2015 18:48','Steuart at Market',74,500,'Subscriber',94107); +INSERT INTO "trip" VALUES(900790,696,'8/21/2015 18:40','Embarcadero at Folsom',51,'8/21/2015 18:52','San Francisco Caltrain (Townsend at 4th)',70,473,'Subscriber',95129); +INSERT INTO "trip" VALUES(900795,726,'8/21/2015 18:42','2nd at Folsom',62,'8/21/2015 18:54','Market at 10th',67,420,'Subscriber',94107); +INSERT INTO "trip" VALUES(900796,233,'8/21/2015 18:42','2nd at South Park',64,'8/21/2015 18:46','Howard at 2nd',63,329,'Subscriber',94107); +INSERT INTO "trip" VALUES(900799,940,'8/21/2015 18:44','South Van Ness at Market',66,'8/21/2015 19:00','Harry Bridges Plaza (Ferry Building)',50,193,'Subscriber',94103); +INSERT INTO "trip" VALUES(900800,388,'8/21/2015 18:45','Spear at Folsom',49,'8/21/2015 18:51','Commercial at Montgomery',45,401,'Subscriber',94107); +INSERT INTO "trip" VALUES(900801,211,'8/21/2015 18:44','2nd at South Park',64,'8/21/2015 18:48','San Francisco Caltrain (Townsend at 4th)',70,537,'Subscriber',94115); +INSERT INTO "trip" VALUES(900802,664,'8/21/2015 18:48','Market at 10th',67,'8/21/2015 18:59','San Francisco Caltrain 2 (330 Townsend)',69,351,'Subscriber',95035); +INSERT INTO "trip" VALUES(900803,259,'8/21/2015 18:46','2nd at South Park',64,'8/21/2015 18:50','Market at Sansome',77,628,'Subscriber',94609); +INSERT INTO "trip" VALUES(900804,910,'8/21/2015 18:52','San Francisco Caltrain (Townsend at 4th)',70,'8/21/2015 19:07','Washington at Kearny',46,379,'Customer',94131); +INSERT INTO "trip" VALUES(900805,271,'8/21/2015 18:52','San Francisco Caltrain (Townsend at 4th)',70,'8/21/2015 18:57','2nd at South Park',64,538,'Subscriber',94107); +INSERT INTO "trip" VALUES(900806,726,'8/21/2015 18:53','Townsend at 7th',65,'8/21/2015 19:05','South Van Ness at Market',66,336,'Subscriber',94107); +INSERT INTO "trip" VALUES(900807,717,'8/21/2015 18:53','Townsend at 7th',65,'8/21/2015 19:05','South Van Ness at Market',66,468,'Subscriber',94107); +INSERT INTO "trip" VALUES(900808,246,'8/21/2015 18:55','Commercial at Montgomery',45,'8/21/2015 18:59','Temporary Transbay Terminal (Howard at Beale)',55,392,'Subscriber',94611); +INSERT INTO "trip" VALUES(900809,582,'8/21/2015 18:55','Japantown',9,'8/21/2015 19:05','MLK Library',11,131,'Subscriber',95112); +INSERT INTO "trip" VALUES(900810,719,'8/21/2015 18:56','Beale at Market',56,'8/21/2015 19:08','Market at 10th',67,408,'Subscriber',94104); +INSERT INTO "trip" VALUES(900811,357,'8/21/2015 18:58','Harry Bridges Plaza (Ferry Building)',50,'8/21/2015 19:04','Embarcadero at Bryant',54,384,'Subscriber',94105); +INSERT INTO "trip" VALUES(900812,817,'8/21/2015 18:58','2nd at Townsend',61,'8/21/2015 19:12','Grant Avenue at Columbus Avenue',73,268,'Subscriber',94133); +INSERT INTO "trip" VALUES(900813,356,'8/21/2015 18:59','Market at 4th',76,'8/21/2015 19:05','San Francisco Caltrain (Townsend at 4th)',70,370,'Subscriber',94158); +INSERT INTO "trip" VALUES(900814,343,'8/21/2015 19:00','2nd at South Park',64,'8/21/2015 19:06','Market at Sansome',77,410,'Subscriber',94544); +INSERT INTO "trip" VALUES(900815,252,'8/21/2015 19:03','Broadway St at Battery St',82,'8/21/2015 19:07','Steuart at Market',74,592,'Subscriber',94132); +INSERT INTO "trip" VALUES(900816,461,'8/21/2015 19:06','San Francisco Caltrain 2 (330 Townsend)',69,'8/21/2015 19:13','Powell Street BART',39,572,'Subscriber',94107); +INSERT INTO "trip" VALUES(900817,484,'8/21/2015 19:06','San Francisco Caltrain (Townsend at 4th)',70,'8/21/2015 19:14','Market at 4th',76,403,'Subscriber',95054); +INSERT INTO "trip" VALUES(900818,931,'8/21/2015 19:07','Temporary Transbay Terminal (Howard at Beale)',55,'8/21/2015 19:22','Market at 10th',67,416,'Subscriber',94102); +INSERT INTO "trip" VALUES(900819,512,'8/21/2015 19:09','Market at 10th',67,'8/21/2015 19:17','Post at Kearny',47,573,'Subscriber',94133); +INSERT INTO "trip" VALUES(900820,322,'8/21/2015 19:09','Market at Sansome',77,'8/21/2015 19:14','Grant Avenue at Columbus Avenue',73,628,'Subscriber',94133); +INSERT INTO "trip" VALUES(900821,286,'8/21/2015 19:09','San Salvador at 1st',8,'8/21/2015 19:14','San Jose City Hall',10,55,'Subscriber',95113); +INSERT INTO "trip" VALUES(900822,298,'8/21/2015 19:10','Howard at 2nd',63,'8/21/2015 19:15','2nd at Townsend',61,16,'Subscriber',94105); +INSERT INTO "trip" VALUES(900823,301,'8/21/2015 19:10','Market at 4th',76,'8/21/2015 19:15','Civic Center BART (7th at Market)',72,635,'Subscriber',94105); +INSERT INTO "trip" VALUES(900824,372,'8/21/2015 19:10','Embarcadero at Sansome',60,'8/21/2015 19:16','Steuart at Market',74,547,'Subscriber',94612); +INSERT INTO "trip" VALUES(900825,735,'8/21/2015 19:12','South Van Ness at Market',66,'8/21/2015 19:24','Temporary Transbay Terminal (Howard at Beale)',55,512,'Subscriber',94611); +INSERT INTO "trip" VALUES(900826,289,'8/21/2015 19:13','Post at Kearny',47,'8/21/2015 19:17','5th at Howard',57,33,'Subscriber',94107); +INSERT INTO "trip" VALUES(900828,1590,'8/21/2015 19:15','2nd at South Park',64,'8/21/2015 19:41','Harry Bridges Plaza (Ferry Building)',50,363,'Customer',94553); +INSERT INTO "trip" VALUES(900830,305,'8/21/2015 19:17','Clay at Battery',41,'8/21/2015 19:22','Embarcadero at Sansome',60,69,'Subscriber',94133); +INSERT INTO "trip" VALUES(900831,237,'8/21/2015 19:21','2nd at South Park',64,'8/21/2015 19:25','San Francisco Caltrain (Townsend at 4th)',70,574,'Subscriber',94066); +INSERT INTO "trip" VALUES(900832,581,'8/21/2015 19:22','San Francisco Caltrain (Townsend at 4th)',70,'8/21/2015 19:31','Powell Street BART',39,537,'Subscriber',94607); +INSERT INTO "trip" VALUES(900833,801,'8/21/2015 19:22','Market at Sansome',77,'8/21/2015 19:35','Golden Gate at Polk',59,557,'Subscriber',94107); +INSERT INTO "trip" VALUES(900834,538,'8/21/2015 19:23','Spear at Folsom',49,'8/21/2015 19:32','Broadway St at Battery St',82,518,'Subscriber',94133); +INSERT INTO "trip" VALUES(900835,10029,'8/21/2015 19:24','Powell Street BART',39,'8/21/2015 22:11','Powell Street BART',39,359,'Customer',93446); +INSERT INTO "trip" VALUES(900836,188,'8/21/2015 19:24','Castro Street and El Camino Real',32,'8/21/2015 19:28','Mountain View City Hall',27,28,'Subscriber',2780); +INSERT INTO "trip" VALUES(900840,1233,'8/21/2015 19:31','Santa Clara at Almaden',4,'8/21/2015 19:52','Santa Clara at Almaden',4,117,'Subscriber',95110); +INSERT INTO "trip" VALUES(900841,395,'8/21/2015 19:31','2nd at Townsend',61,'8/21/2015 19:38','Steuart at Market',74,428,'Subscriber',94523); +INSERT INTO "trip" VALUES(900842,374,'8/21/2015 19:32','2nd at Folsom',62,'8/21/2015 19:38','San Francisco Caltrain (Townsend at 4th)',70,109,'Customer',85601); +INSERT INTO "trip" VALUES(900843,573,'8/21/2015 19:35','San Salvador at 1st',8,'8/21/2015 19:45','Japantown',9,32,'Subscriber',94111); +INSERT INTO "trip" VALUES(900844,435,'8/21/2015 19:46','San Francisco Caltrain 2 (330 Townsend)',69,'8/21/2015 19:53','Powell Street BART',39,659,'Subscriber',94107); +INSERT INTO "trip" VALUES(900846,662,'8/21/2015 19:49','Yerba Buena Center of the Arts (3rd @ Howard)',68,'8/21/2015 20:00','Harry Bridges Plaza (Ferry Building)',50,214,'Subscriber',94590); +INSERT INTO "trip" VALUES(900847,773,'8/21/2015 19:52','2nd at South Park',64,'8/21/2015 20:05','Market at 4th',76,275,'Subscriber',94401); +INSERT INTO "trip" VALUES(900849,843,'8/21/2015 19:54','Embarcadero at Sansome',60,'8/21/2015 20:08','5th at Howard',57,578,'Subscriber',94303); +INSERT INTO "trip" VALUES(900853,654,'8/21/2015 19:58','Powell Street BART',39,'8/21/2015 20:08','Washington at Kearny',46,537,'Customer',80020); +INSERT INTO "trip" VALUES(900854,334,'8/21/2015 20:02','Civic Center BART (7th at Market)',72,'8/21/2015 20:08','Market at 4th',76,620,'Subscriber',94702); +INSERT INTO "trip" VALUES(900855,1204,'8/21/2015 20:02','Civic Center BART (7th at Market)',72,'8/21/2015 20:22','San Francisco Caltrain 2 (330 Townsend)',69,355,'Subscriber',94105); +INSERT INTO "trip" VALUES(900856,866,'8/21/2015 20:03','San Francisco Caltrain 2 (330 Townsend)',69,'8/21/2015 20:18','5th at Howard',57,300,'Subscriber',94103); +INSERT INTO "trip" VALUES(900857,748,'8/21/2015 20:06','San Francisco Caltrain 2 (330 Townsend)',69,'8/21/2015 20:18','Market at 10th',67,56,'Subscriber',94103); +INSERT INTO "trip" VALUES(900858,250,'8/21/2015 20:07','San Francisco Caltrain 2 (330 Townsend)',69,'8/21/2015 20:11','Townsend at 7th',65,514,'Subscriber',94107); +INSERT INTO "trip" VALUES(900859,4388,'8/21/2015 20:11','Harry Bridges Plaza (Ferry Building)',50,'8/21/2015 21:24','Harry Bridges Plaza (Ferry Building)',50,507,'Customer','nil'); +INSERT INTO "trip" VALUES(900860,369,'8/21/2015 20:17','Yerba Buena Center of the Arts (3rd @ Howard)',68,'8/21/2015 20:23','San Francisco Caltrain (Townsend at 4th)',70,576,'Subscriber',94305); +INSERT INTO "trip" VALUES(900861,4001,'8/21/2015 20:17','Harry Bridges Plaza (Ferry Building)',50,'8/21/2015 21:24','Harry Bridges Plaza (Ferry Building)',50,193,'Customer','nil'); +INSERT INTO "trip" VALUES(900862,410,'8/21/2015 20:18','Market at 4th',76,'8/21/2015 20:25','Embarcadero at Bryant',54,521,'Subscriber',94102); +INSERT INTO "trip" VALUES(900865,607,'8/21/2015 20:21','Washington at Kearny',46,'8/21/2015 20:31','Beale at Market',56,878,'Customer',85009); +INSERT INTO "trip" VALUES(900866,605,'8/21/2015 20:22','Steuart at Market',74,'8/21/2015 20:32','San Francisco Caltrain (Townsend at 4th)',70,450,'Subscriber',94303); +INSERT INTO "trip" VALUES(900867,145,'8/21/2015 20:24','Mountain View City Hall',27,'8/21/2015 20:26','Mountain View City Hall',27,28,'Subscriber',95054); +INSERT INTO "trip" VALUES(900868,359,'8/21/2015 20:29','2nd at Folsom',62,'8/21/2015 20:35','San Francisco Caltrain (Townsend at 4th)',70,96,'Subscriber',94403); +INSERT INTO "trip" VALUES(900871,493,'8/21/2015 20:31','2nd at Townsend',61,'8/21/2015 20:39','Townsend at 7th',65,591,'Subscriber',94107); +INSERT INTO "trip" VALUES(900874,306,'8/21/2015 20:33','Davis at Jackson',42,'8/21/2015 20:38','Embarcadero at Sansome',60,598,'Subscriber',94133); +INSERT INTO "trip" VALUES(900875,587,'8/21/2015 20:35','Market at Sansome',77,'8/21/2015 20:45','Post at Kearny',47,274,'Subscriber',94107); +INSERT INTO "trip" VALUES(900876,241,'8/21/2015 20:38','2nd at Townsend',61,'8/21/2015 20:42','San Francisco Caltrain 2 (330 Townsend)',69,562,'Subscriber',94107); +INSERT INTO "trip" VALUES(900877,619,'8/21/2015 20:40','Post at Kearny',47,'8/21/2015 20:50','South Van Ness at Market',66,573,'Subscriber',94103); +INSERT INTO "trip" VALUES(900878,453,'8/21/2015 20:42','Beale at Market',56,'8/21/2015 20:49','Embarcadero at Sansome',60,419,'Subscriber',94111); +INSERT INTO "trip" VALUES(900879,463,'8/21/2015 20:42','Beale at Market',56,'8/21/2015 20:50','Embarcadero at Sansome',60,434,'Subscriber',94111); +INSERT INTO "trip" VALUES(900880,485,'8/21/2015 20:45','Mountain View Caltrain Station',28,'8/21/2015 20:53','Castro Street and El Camino Real',32,203,'Subscriber',95032); +INSERT INTO "trip" VALUES(900881,258,'8/21/2015 20:48','2nd at Folsom',62,'8/21/2015 20:52','Market at Sansome',77,621,'Subscriber',94709); +INSERT INTO "trip" VALUES(900882,205,'8/21/2015 20:48','Civic Center BART (7th at Market)',72,'8/21/2015 20:52','5th at Howard',57,494,'Subscriber',94102); +INSERT INTO "trip" VALUES(900883,13088,'8/21/2015 21:00','Harry Bridges Plaza (Ferry Building)',50,'8/22/2015 0:39','Harry Bridges Plaza (Ferry Building)',50,363,'Customer',95118); +INSERT INTO "trip" VALUES(900884,954,'8/21/2015 21:13','Arena Green / SAP Center',14,'8/21/2015 21:29','Ryland Park',84,488,'Customer',95050); +INSERT INTO "trip" VALUES(900885,959,'8/21/2015 21:13','Arena Green / SAP Center',14,'8/21/2015 21:29','Ryland Park',84,654,'Customer',95050); +INSERT INTO "trip" VALUES(900886,265,'8/21/2015 21:28','Embarcadero at Bryant',54,'8/21/2015 21:32','2nd at South Park',64,364,'Subscriber',94105); +INSERT INTO "trip" VALUES(900887,1240,'8/21/2015 21:28','Embarcadero at Sansome',60,'8/21/2015 21:49','Powell Street BART',39,503,'Subscriber',94112); +INSERT INTO "trip" VALUES(900888,530,'8/21/2015 21:27','Steuart at Market',74,'8/21/2015 21:36','San Francisco Caltrain 2 (330 Townsend)',69,500,'Subscriber',94105); +INSERT INTO "trip" VALUES(900889,359,'8/21/2015 21:31','Clay at Battery',41,'8/21/2015 21:37','Embarcadero at Sansome',60,677,'Subscriber',94133); +INSERT INTO "trip" VALUES(900890,855,'8/21/2015 21:33','Ryland Park',84,'8/21/2015 21:47','Santa Clara County Civic Center',80,143,'Customer',95050); +INSERT INTO "trip" VALUES(900891,842,'8/21/2015 21:33','Ryland Park',84,'8/21/2015 21:47','Santa Clara County Civic Center',80,654,'Customer',95050); +INSERT INTO "trip" VALUES(900892,734,'8/21/2015 21:38','Golden Gate at Polk',59,'8/21/2015 21:50','Townsend at 7th',65,557,'Subscriber',94107); +INSERT INTO "trip" VALUES(900893,445,'8/21/2015 21:41','Civic Center BART (7th at Market)',72,'8/21/2015 21:49','Townsend at 7th',65,340,'Subscriber',94107); +INSERT INTO "trip" VALUES(900894,422,'8/21/2015 21:49','Powell Street BART',39,'8/21/2015 21:56','South Van Ness at Market',66,503,'Subscriber',94112); +INSERT INTO "trip" VALUES(900895,886,'8/21/2015 22:04','Market at 10th',67,'8/21/2015 22:19','Commercial at Montgomery',45,511,'Subscriber',94702); +INSERT INTO "trip" VALUES(900896,673,'8/21/2015 22:05','San Francisco Caltrain (Townsend at 4th)',70,'8/21/2015 22:16','Grant Avenue at Columbus Avenue',73,109,'Subscriber',94133); +INSERT INTO "trip" VALUES(900897,174,'8/21/2015 22:08','Arena Green / SAP Center',14,'8/21/2015 22:11','Arena Green / SAP Center',14,206,'Subscriber',95113); +INSERT INTO "trip" VALUES(900898,443,'8/21/2015 22:08','Powell at Post (Union Square)',71,'8/21/2015 22:15','Beale at Market',56,597,'Subscriber',94105); +INSERT INTO "trip" VALUES(900899,285,'8/21/2015 22:24','Howard at 2nd',63,'8/21/2015 22:29','Harry Bridges Plaza (Ferry Building)',50,329,'Subscriber',94107); +INSERT INTO "trip" VALUES(900900,459,'8/21/2015 22:25','Arena Green / SAP Center',14,'8/21/2015 22:32','Santa Clara at Almaden',4,206,'Subscriber',95113); +INSERT INTO "trip" VALUES(900901,267,'8/21/2015 22:25','Post at Kearny',47,'8/21/2015 22:29','Yerba Buena Center of the Arts (3rd @ Howard)',68,526,'Subscriber',94107); +INSERT INTO "trip" VALUES(900902,711,'8/21/2015 22:31','Steuart at Market',74,'8/21/2015 22:43','San Francisco Caltrain (Townsend at 4th)',70,585,'Subscriber',94158); +INSERT INTO "trip" VALUES(900903,420,'8/21/2015 22:36','2nd at Townsend',61,'8/21/2015 22:43','Spear at Folsom',49,463,'Subscriber',94102); +INSERT INTO "trip" VALUES(900904,529,'8/21/2015 22:42','Yerba Buena Center of the Arts (3rd @ Howard)',68,'8/21/2015 22:50','Washington at Kearny',46,335,'Subscriber',94105); +INSERT INTO "trip" VALUES(900905,531,'8/21/2015 22:41','Yerba Buena Center of the Arts (3rd @ Howard)',68,'8/21/2015 22:50','Washington at Kearny',46,526,'Subscriber',94105); +INSERT INTO "trip" VALUES(900906,364,'8/21/2015 22:55','Harry Bridges Plaza (Ferry Building)',50,'8/21/2015 23:01','Embarcadero at Sansome',60,552,'Subscriber',94111); +INSERT INTO "trip" VALUES(900907,278,'8/21/2015 22:59','2nd at South Park',64,'8/21/2015 23:04','Spear at Folsom',49,441,'Subscriber',94105); +INSERT INTO "trip" VALUES(900908,2749,'8/21/2015 23:06','Embarcadero at Vallejo',48,'8/21/2015 23:52','Embarcadero at Vallejo',48,560,'Customer',94531); +INSERT INTO "trip" VALUES(900909,2756,'8/21/2015 23:06','Embarcadero at Vallejo',48,'8/21/2015 23:52','Embarcadero at Vallejo',48,285,'Customer',94531); +INSERT INTO "trip" VALUES(900910,525,'8/21/2015 23:08','Yerba Buena Center of the Arts (3rd @ Howard)',68,'8/21/2015 23:16','2nd at Townsend',61,606,'Subscriber',94107); +INSERT INTO "trip" VALUES(900911,152,'8/21/2015 23:23','Temporary Transbay Terminal (Howard at Beale)',55,'8/21/2015 23:25','Beale at Market',56,479,'Subscriber',94030); +INSERT INTO "trip" VALUES(900912,716,'8/21/2015 23:28','Market at Sansome',77,'8/21/2015 23:40','Embarcadero at Sansome',60,423,'Customer','nil'); +INSERT INTO "trip" VALUES(900913,869,'8/21/2015 23:28','Embarcadero at Vallejo',48,'8/21/2015 23:42','Embarcadero at Sansome',60,522,'Customer',30322); +INSERT INTO "trip" VALUES(900914,136,'8/21/2015 23:50','5th at Howard',57,'8/21/2015 23:52','Powell Street BART',39,309,'Subscriber',94110); +INSERT INTO "trip" VALUES(900915,548,'8/21/2015 23:51','Washington at Kearny',46,'8/22/2015 0:00','Howard at 2nd',63,526,'Subscriber',94105); +INSERT INTO "trip" VALUES(900916,552,'8/21/2015 23:51','Washington at Kearny',46,'8/22/2015 0:00','Howard at 2nd',63,335,'Subscriber',94105); +INSERT INTO "trip" VALUES(900917,654,'8/21/2015 23:52','Beale at Market',56,'8/22/2015 0:03','San Francisco Caltrain 2 (330 Townsend)',69,502,'Subscriber',94107); +INSERT INTO "trip" VALUES(900918,392,'8/22/2015 0:02','Embarcadero at Sansome',60,'8/22/2015 0:08','Grant Avenue at Columbus Avenue',73,434,'Customer','nil'); +INSERT INTO "trip" VALUES(900919,349,'8/22/2015 0:02','Japantown',9,'8/22/2015 0:08','St James Park',13,643,'Subscriber',95112); +INSERT INTO "trip" VALUES(900920,475,'8/22/2015 0:15','Civic Center BART (7th at Market)',72,'8/22/2015 0:23','San Francisco Caltrain 2 (330 Townsend)',69,427,'Subscriber',94107); +INSERT INTO "trip" VALUES(900922,1736,'8/22/2015 0:37','San Francisco Caltrain (Townsend at 4th)',70,'8/22/2015 1:06','Market at 10th',67,505,'Customer',49506); +INSERT INTO "trip" VALUES(900923,1073,'8/22/2015 0:51','Washington at Kearny',46,'8/22/2015 1:09','Civic Center BART (7th at Market)',72,629,'Customer',80020); +INSERT INTO "trip" VALUES(900924,379,'8/22/2015 1:11','Powell Street BART',39,'8/22/2015 1:17','Market at 10th',67,395,'Subscriber',94102); +INSERT INTO "trip" VALUES(900925,964,'8/22/2015 1:26','Spear at Folsom',49,'8/22/2015 1:42','Powell at Post (Union Square)',71,630,'Subscriber',94102); +INSERT INTO "trip" VALUES(900926,345,'8/22/2015 1:57','Powell at Post (Union Square)',71,'8/22/2015 2:03','2nd at South Park',64,270,'Subscriber',94107); +INSERT INTO "trip" VALUES(900927,794,'8/22/2015 2:49','San Francisco Caltrain 2 (330 Townsend)',69,'8/22/2015 3:03','San Francisco City Hall',58,437,'Subscriber',94107); +INSERT INTO "trip" VALUES(900928,247,'8/22/2015 4:39','Spear at Folsom',49,'8/22/2015 4:43','Davis at Jackson',42,282,'Subscriber',92064); +INSERT INTO "trip" VALUES(900929,1260,'8/22/2015 5:34','Townsend at 7th',65,'8/22/2015 5:55','Howard at 2nd',63,354,'Subscriber',94107); +INSERT INTO "trip" VALUES(900930,205,'8/22/2015 6:13','Civic Center BART (7th at Market)',72,'8/22/2015 6:16','Market at 4th',76,407,'Subscriber',94103); +INSERT INTO "trip" VALUES(900931,43800,'8/22/2015 6:27','Civic Center BART (7th at Market)',72,'8/22/2015 18:37','Powell Street BART',39,314,'Customer',8108); +INSERT INTO "trip" VALUES(900932,12834,'8/22/2015 6:26','Civic Center BART (7th at Market)',72,'8/22/2015 10:00','Market at 10th',67,555,'Customer',8108); +INSERT INTO "trip" VALUES(900933,327,'8/22/2015 6:51','Grant Avenue at Columbus Avenue',73,'8/22/2015 6:56','Post at Kearny',47,434,'Subscriber',94133); +INSERT INTO "trip" VALUES(900934,683,'8/22/2015 6:54','Embarcadero at Bryant',54,'8/22/2015 7:06','Embarcadero at Sansome',60,384,'Subscriber',94105); +INSERT INTO "trip" VALUES(900936,1516,'8/22/2015 7:12','Spear at Folsom',49,'8/22/2015 7:37','Embarcadero at Sansome',60,463,'Subscriber',94105); +INSERT INTO "trip" VALUES(900937,359,'8/22/2015 7:35','Embarcadero at Sansome',60,'8/22/2015 7:41','Harry Bridges Plaza (Ferry Building)',50,552,'Subscriber',94111); +INSERT INTO "trip" VALUES(900938,155,'8/22/2015 7:45','Harry Bridges Plaza (Ferry Building)',50,'8/22/2015 7:48','Davis at Jackson',42,289,'Subscriber',94111); +INSERT INTO "trip" VALUES(900939,309,'8/22/2015 7:48','Grant Avenue at Columbus Avenue',73,'8/22/2015 7:53','Harry Bridges Plaza (Ferry Building)',50,531,'Subscriber',94133); +INSERT INTO "trip" VALUES(900941,749,'8/22/2015 7:49','South Van Ness at Market',66,'8/22/2015 8:01','Beale at Market',56,468,'Subscriber',94110); +INSERT INTO "trip" VALUES(900943,297,'8/22/2015 7:50','Grant Avenue at Columbus Avenue',73,'8/22/2015 7:55','Mechanics Plaza (Market at Battery)',75,109,'Subscriber',94133); +INSERT INTO "trip" VALUES(900945,401,'8/22/2015 7:52','Spear at Folsom',49,'8/22/2015 7:59','Yerba Buena Center of the Arts (3rd @ Howard)',68,441,'Subscriber',94103); +INSERT INTO "trip" VALUES(900946,358,'8/22/2015 7:59','Washington at Kearny',46,'8/22/2015 8:05','Harry Bridges Plaza (Ferry Building)',50,579,'Subscriber',94109); +INSERT INTO "trip" VALUES(900947,513,'8/22/2015 8:01','Market at 10th',67,'8/22/2015 8:10','Market at Sansome',77,391,'Subscriber',94103); +INSERT INTO "trip" VALUES(900948,806,'8/22/2015 8:04','Market at 4th',76,'8/22/2015 8:18','Harry Bridges Plaza (Ferry Building)',50,517,'Customer',''); +INSERT INTO "trip" VALUES(900949,725,'8/22/2015 8:05','Market at 4th',76,'8/22/2015 8:17','Harry Bridges Plaza (Ferry Building)',50,403,'Customer','nil'); +INSERT INTO "trip" VALUES(900955,270,'8/22/2015 8:10','Davis at Jackson',42,'8/22/2015 8:15','Embarcadero at Sansome',60,289,'Subscriber',94111); +INSERT INTO "trip" VALUES(900956,1408,'8/22/2015 8:14','Mountain View City Hall',27,'8/22/2015 8:37','Mountain View City Hall',27,48,'Subscriber',94041); +INSERT INTO "trip" VALUES(900961,162,'8/22/2015 8:20','2nd at Folsom',62,'8/22/2015 8:23','Market at Sansome',77,498,'Subscriber',94107); +INSERT INTO "trip" VALUES(900962,364,'8/22/2015 8:20','Commercial at Montgomery',45,'8/22/2015 8:26','2nd at Folsom',62,401,'Subscriber',94133); +INSERT INTO "trip" VALUES(900963,519,'8/22/2015 8:29','Harry Bridges Plaza (Ferry Building)',50,'8/22/2015 8:37','Grant Avenue at Columbus Avenue',73,552,'Subscriber',94133); +INSERT INTO "trip" VALUES(900964,683,'8/22/2015 8:37','San Francisco Caltrain (Townsend at 4th)',70,'8/22/2015 8:49','Powell Street BART',39,287,'Subscriber',94102); +INSERT INTO "trip" VALUES(900965,302,'8/22/2015 8:39','Davis at Jackson',42,'8/22/2015 8:44','Spear at Folsom',49,282,'Subscriber',92064); +INSERT INTO "trip" VALUES(900966,3356,'8/22/2015 8:40','Post at Kearny',47,'8/22/2015 9:36','Golden Gate at Polk',59,583,'Customer',91355); +INSERT INTO "trip" VALUES(900968,646,'8/22/2015 8:48','Townsend at 7th',65,'8/22/2015 8:58','Market at Sansome',77,514,'Subscriber',94107); +INSERT INTO "trip" VALUES(900969,417,'8/22/2015 8:49','2nd at Townsend',61,'8/22/2015 8:56','Harry Bridges Plaza (Ferry Building)',50,290,'Subscriber',94025); +INSERT INTO "trip" VALUES(900970,376,'8/22/2015 8:55','2nd at Folsom',62,'8/22/2015 9:01','San Francisco Caltrain 2 (330 Townsend)',69,584,'Subscriber',94107); +INSERT INTO "trip" VALUES(900971,1420,'8/22/2015 8:56','Harry Bridges Plaza (Ferry Building)',50,'8/22/2015 9:20','Market at 4th',76,193,'Customer',''); +INSERT INTO "trip" VALUES(900972,1348,'8/22/2015 8:58','Harry Bridges Plaza (Ferry Building)',50,'8/22/2015 9:20','Market at 4th',76,329,'Customer','nil'); +INSERT INTO "trip" VALUES(900973,198,'8/22/2015 9:08','2nd at Townsend',61,'8/22/2015 9:11','2nd at Folsom',62,606,'Subscriber',94107); +INSERT INTO "trip" VALUES(900974,538,'8/22/2015 9:15','San Francisco Caltrain (Townsend at 4th)',70,'8/22/2015 9:24','Market at 4th',76,473,'Subscriber',94158); +INSERT INTO "trip" VALUES(900976,347,'8/22/2015 9:27','Post at Kearny',47,'8/22/2015 9:33','Steuart at Market',74,274,'Customer',75600); +INSERT INTO "trip" VALUES(900977,350,'8/22/2015 9:27','Post at Kearny',47,'8/22/2015 9:33','Steuart at Market',74,418,'Customer',75600); +INSERT INTO "trip" VALUES(900978,654,'8/22/2015 9:35','Post at Kearny',47,'8/22/2015 9:46','Embarcadero at Sansome',60,624,'Customer',9208); +INSERT INTO "trip" VALUES(900979,1550,'8/22/2015 9:39','Post at Kearny',47,'8/22/2015 10:05','San Francisco City Hall',58,652,'Customer',1); +INSERT INTO "trip" VALUES(900980,1559,'8/22/2015 9:39','Post at Kearny',47,'8/22/2015 10:05','San Francisco City Hall',58,619,'Customer',1); +INSERT INTO "trip" VALUES(900981,574,'8/22/2015 9:42','Embarcadero at Sansome',60,'8/22/2015 9:52','Clay at Battery',41,598,'Subscriber',94111); +INSERT INTO "trip" VALUES(900982,1410,'8/22/2015 9:42','Embarcadero at Sansome',60,'8/22/2015 10:06','Market at 10th',67,353,'Customer',90042); +INSERT INTO "trip" VALUES(900983,578,'8/22/2015 9:44','San Francisco Caltrain (Townsend at 4th)',70,'8/22/2015 9:54','Harry Bridges Plaza (Ferry Building)',50,312,'Subscriber',95035); +INSERT INTO "trip" VALUES(900984,915,'8/22/2015 9:44','Davis at Jackson',42,'8/22/2015 9:59','Market at 10th',67,134,'Subscriber',94111); +INSERT INTO "trip" VALUES(900985,320,'8/22/2015 9:45','Embarcadero at Sansome',60,'8/22/2015 9:50','Harry Bridges Plaza (Ferry Building)',50,289,'Subscriber',94111); +INSERT INTO "trip" VALUES(900986,319,'8/22/2015 9:45','Embarcadero at Sansome',60,'8/22/2015 9:50','Harry Bridges Plaza (Ferry Building)',50,356,'Subscriber',94111); +INSERT INTO "trip" VALUES(900987,720,'8/22/2015 9:45','Rengstorff Avenue / California Street',33,'8/22/2015 9:57','Mountain View City Hall',27,243,'Subscriber',94040); +INSERT INTO "trip" VALUES(900988,483,'8/22/2015 9:46','Santa Clara at Almaden',4,'8/22/2015 9:54','Arena Green / SAP Center',14,206,'Subscriber',95113); +INSERT INTO "trip" VALUES(900989,983,'8/22/2015 9:50','Powell at Post (Union Square)',71,'8/22/2015 10:06','Powell at Post (Union Square)',71,448,'Customer',44042); +INSERT INTO "trip" VALUES(900990,582,'8/22/2015 9:51','Santa Clara at Almaden',4,'8/22/2015 10:01','SJSU - San Salvador at 9th',16,117,'Subscriber',95110); +INSERT INTO "trip" VALUES(900992,809,'8/22/2015 9:54','Powell at Post (Union Square)',71,'8/22/2015 10:07','Steuart at Market',74,501,'Customer',49); +INSERT INTO "trip" VALUES(900993,761,'8/22/2015 9:55','Powell at Post (Union Square)',71,'8/22/2015 10:07','Steuart at Market',74,469,'Customer',49); +INSERT INTO "trip" VALUES(900994,628,'8/22/2015 9:59','Embarcadero at Sansome',60,'8/22/2015 10:10','Embarcadero at Bryant',54,423,'Subscriber',94105); +INSERT INTO "trip" VALUES(900995,375,'8/22/2015 10:01','Temporary Transbay Terminal (Howard at Beale)',55,'8/22/2015 10:07','Embarcadero at Vallejo',48,67,'Subscriber',94608); +INSERT INTO "trip" VALUES(900996,1756,'8/22/2015 10:13','Embarcadero at Vallejo',48,'8/22/2015 10:42','Embarcadero at Sansome',60,560,'Customer',75600); +INSERT INTO "trip" VALUES(900997,1740,'8/22/2015 10:13','Embarcadero at Vallejo',48,'8/22/2015 10:42','Embarcadero at Sansome',60,285,'Customer',75600); +INSERT INTO "trip" VALUES(900998,402,'8/22/2015 10:14','Market at 10th',67,'8/22/2015 10:21','Powell Street BART',39,56,'Subscriber',94109); +INSERT INTO "trip" VALUES(900999,467,'8/22/2015 10:15','Market at Sansome',77,'8/22/2015 10:23','Steuart at Market',74,443,'Customer',91208); +INSERT INTO "trip" VALUES(901002,340,'8/22/2015 10:18','Market at Sansome',77,'8/22/2015 10:23','Steuart at Market',74,410,'Customer',91208); +INSERT INTO "trip" VALUES(901003,370,'8/22/2015 10:18','Temporary Transbay Terminal (Howard at Beale)',55,'8/22/2015 10:24','5th at Howard',57,392,'Subscriber',94105); +INSERT INTO "trip" VALUES(901004,878,'8/22/2015 10:18','Howard at 2nd',63,'8/22/2015 10:33','San Francisco Caltrain 2 (330 Townsend)',69,354,'Subscriber',94107); +INSERT INTO "trip" VALUES(901005,310,'8/22/2015 10:20','Davis at Jackson',42,'8/22/2015 10:25','Temporary Transbay Terminal (Howard at Beale)',55,462,'Subscriber',94103); +INSERT INTO "trip" VALUES(901006,2488,'8/22/2015 10:21','Harry Bridges Plaza (Ferry Building)',50,'8/22/2015 11:03','Harry Bridges Plaza (Ferry Building)',50,312,'Customer',94703); +INSERT INTO "trip" VALUES(901007,1281,'8/22/2015 10:29','Rengstorff Avenue / California Street',33,'8/22/2015 10:50','California Ave Caltrain Station',36,105,'Customer',94306); +INSERT INTO "trip" VALUES(901008,1276,'8/22/2015 10:29','Rengstorff Avenue / California Street',33,'8/22/2015 10:50','California Ave Caltrain Station',36,194,'Customer',94306); +INSERT INTO "trip" VALUES(901009,220,'8/22/2015 10:30','San Francisco Caltrain 2 (330 Townsend)',69,'8/22/2015 10:34','Townsend at 7th',65,500,'Subscriber',94107); +INSERT INTO "trip" VALUES(901010,240,'8/22/2015 10:32','Townsend at 7th',65,'8/22/2015 10:36','San Francisco Caltrain (Townsend at 4th)',70,651,'Subscriber',94107); +INSERT INTO "trip" VALUES(901011,908,'8/22/2015 10:33','Market at 4th',76,'8/22/2015 10:48','Embarcadero at Sansome',60,613,'Subscriber',94109); +INSERT INTO "trip" VALUES(901012,1067,'8/22/2015 10:33','Market at 10th',67,'8/22/2015 10:51','Powell at Post (Union Square)',71,563,'Customer',90042); +INSERT INTO "trip" VALUES(901013,1006,'8/22/2015 10:33','2nd at Folsom',62,'8/22/2015 10:50','San Francisco Caltrain (Townsend at 4th)',70,158,'Subscriber',94158); +INSERT INTO "trip" VALUES(901014,308,'8/22/2015 10:35','Embarcadero at Bryant',54,'8/22/2015 10:41','Harry Bridges Plaza (Ferry Building)',50,238,'Subscriber',94105); +INSERT INTO "trip" VALUES(901015,1196,'8/22/2015 10:39','San Francisco Caltrain (Townsend at 4th)',70,'8/22/2015 10:59','Harry Bridges Plaza (Ferry Building)',50,370,'Subscriber',94102); +INSERT INTO "trip" VALUES(901016,299,'8/22/2015 10:40','2nd at Townsend',61,'8/22/2015 10:45','Howard at 2nd',63,373,'Subscriber',94107); +INSERT INTO "trip" VALUES(901017,9322,'8/22/2015 10:44','Cowper at University',37,'8/22/2015 13:20','Cowper at University',37,248,'Subscriber',94301); +INSERT INTO "trip" VALUES(901018,779,'8/22/2015 10:48','5th at Howard',57,'8/22/2015 11:01','Harry Bridges Plaza (Ferry Building)',50,358,'Subscriber',94122); +INSERT INTO "trip" VALUES(901020,446,'8/22/2015 10:53','2nd at South Park',64,'8/22/2015 11:00','Embarcadero at Folsom',51,538,'Subscriber',94107); +INSERT INTO "trip" VALUES(901021,862,'8/22/2015 10:53','2nd at Townsend',61,'8/22/2015 11:08','Embarcadero at Sansome',60,372,'Subscriber',94043); +INSERT INTO "trip" VALUES(901022,441,'8/22/2015 10:54','Spear at Folsom',49,'8/22/2015 11:02','Harry Bridges Plaza (Ferry Building)',50,348,'Customer',94105); +INSERT INTO "trip" VALUES(901023,808,'8/22/2015 10:54','Post at Kearny',47,'8/22/2015 11:08','Townsend at 7th',65,508,'Subscriber',94107); +INSERT INTO "trip" VALUES(901024,414,'8/22/2015 10:55','Embarcadero at Sansome',60,'8/22/2015 11:02','Mechanics Plaza (Market at Battery)',75,560,'Customer',94111); +INSERT INTO "trip" VALUES(901025,1785,'8/22/2015 10:55','Market at 10th',67,'8/22/2015 11:25','Embarcadero at Sansome',60,267,'Customer',92067); +INSERT INTO "trip" VALUES(901026,1776,'8/22/2015 10:56','Market at 10th',67,'8/22/2015 11:25','Embarcadero at Sansome',60,581,'Customer',92067); +INSERT INTO "trip" VALUES(901027,840,'8/22/2015 10:59','South Van Ness at Market',66,'8/22/2015 11:13','Beale at Market',56,336,'Subscriber',94110); +INSERT INTO "trip" VALUES(901028,1264,'8/22/2015 10:59','2nd at South Park',64,'8/22/2015 11:20','Golden Gate at Polk',59,360,'Subscriber',94107); +INSERT INTO "trip" VALUES(901029,1232,'8/22/2015 11:00','2nd at South Park',64,'8/22/2015 11:20','Golden Gate at Polk',59,364,'Subscriber',94107); +INSERT INTO "trip" VALUES(901034,303,'8/22/2015 11:02','Davis at Jackson',42,'8/22/2015 11:07','Embarcadero at Sansome',60,325,'Subscriber',94111); +INSERT INTO "trip" VALUES(901036,356,'8/22/2015 11:02','2nd at South Park',64,'8/22/2015 11:08','Market at Sansome',77,625,'Subscriber',94107); +INSERT INTO "trip" VALUES(901037,656,'8/22/2015 11:04','2nd at Townsend',61,'8/22/2015 11:15','Powell at Post (Union Square)',71,383,'Subscriber',94107); +INSERT INTO "trip" VALUES(901038,678,'8/22/2015 11:04','Steuart at Market',74,'8/22/2015 11:16','Grant Avenue at Columbus Avenue',73,428,'Customer',80923); +INSERT INTO "trip" VALUES(901039,573,'8/22/2015 11:06','Mechanics Plaza (Market at Battery)',75,'8/22/2015 11:15','Market at 10th',67,109,'Subscriber',94104); +INSERT INTO "trip" VALUES(901040,548,'8/22/2015 11:07','Harry Bridges Plaza (Ferry Building)',50,'8/22/2015 11:16','Embarcadero at Sansome',60,507,'Customer',60654); +INSERT INTO "trip" VALUES(901041,529,'8/22/2015 11:07','Harry Bridges Plaza (Ferry Building)',50,'8/22/2015 11:16','Embarcadero at Sansome',60,569,'Customer',60654); +INSERT INTO "trip" VALUES(901042,482,'8/22/2015 11:08','Civic Center BART (7th at Market)',72,'8/22/2015 11:16','Market at Sansome',77,629,'Subscriber',94102); +INSERT INTO "trip" VALUES(901044,6481,'8/22/2015 11:09','Harry Bridges Plaza (Ferry Building)',50,'8/22/2015 12:57','Embarcadero at Sansome',60,608,'Customer',49); +INSERT INTO "trip" VALUES(901045,6494,'8/22/2015 11:09','Harry Bridges Plaza (Ferry Building)',50,'8/22/2015 12:57','Embarcadero at Sansome',60,531,'Customer',49); +INSERT INTO "trip" VALUES(901046,3029,'8/22/2015 11:10','Harry Bridges Plaza (Ferry Building)',50,'8/22/2015 12:01','Harry Bridges Plaza (Ferry Building)',50,312,'Customer',94703); +INSERT INTO "trip" VALUES(901047,4133,'8/22/2015 11:14','Harry Bridges Plaza (Ferry Building)',50,'8/22/2015 12:23','Harry Bridges Plaza (Ferry Building)',50,317,'Customer',91344); +INSERT INTO "trip" VALUES(901051,1051,'8/22/2015 11:15','Townsend at 7th',65,'8/22/2015 11:33','Harry Bridges Plaza (Ferry Building)',50,340,'Subscriber',94107); +INSERT INTO "trip" VALUES(901052,1040,'8/22/2015 11:15','Townsend at 7th',65,'8/22/2015 11:33','Harry Bridges Plaza (Ferry Building)',50,591,'Subscriber',94107); +INSERT INTO "trip" VALUES(901054,1429,'8/22/2015 11:18','Harry Bridges Plaza (Ferry Building)',50,'8/22/2015 11:42','Embarcadero at Sansome',60,363,'Customer',91601); +INSERT INTO "trip" VALUES(901055,1400,'8/22/2015 11:18','Harry Bridges Plaza (Ferry Building)',50,'8/22/2015 11:42','Embarcadero at Sansome',60,405,'Customer',91601); +INSERT INTO "trip" VALUES(901056,335,'8/22/2015 11:21','Temporary Transbay Terminal (Howard at Beale)',55,'8/22/2015 11:26','Yerba Buena Center of the Arts (3rd @ Howard)',68,540,'Customer',94608); +INSERT INTO "trip" VALUES(901057,759,'8/22/2015 11:21','Mechanics Plaza (Market at Battery)',75,'8/22/2015 11:33','Embarcadero at Vallejo',48,338,'Customer',94111); +INSERT INTO "trip" VALUES(901058,1422,'8/22/2015 11:22','Harry Bridges Plaza (Ferry Building)',50,'8/22/2015 11:46','Embarcadero at Vallejo',48,400,'Customer','nil'); +INSERT INTO "trip" VALUES(901059,555,'8/22/2015 11:22','Powell at Post (Union Square)',71,'8/22/2015 11:31','Grant Avenue at Columbus Avenue',73,383,'Subscriber',94105); +INSERT INTO "trip" VALUES(901060,1298,'8/22/2015 11:22','Harry Bridges Plaza (Ferry Building)',50,'8/22/2015 11:44','Spear at Folsom',49,238,'Customer',94105); +INSERT INTO "trip" VALUES(901061,1409,'8/22/2015 11:22','Harry Bridges Plaza (Ferry Building)',50,'8/22/2015 11:46','Embarcadero at Vallejo',48,137,'Customer','nil'); +INSERT INTO "trip" VALUES(901062,761,'8/22/2015 11:24','Townsend at 7th',65,'8/22/2015 11:36','Yerba Buena Center of the Arts (3rd @ Howard)',68,500,'Subscriber',94107); +INSERT INTO "trip" VALUES(901063,446,'8/22/2015 11:32','Powell Street BART',39,'8/22/2015 11:40','San Francisco Caltrain 2 (330 Townsend)',69,286,'Subscriber',94606); +INSERT INTO "trip" VALUES(901064,586,'8/22/2015 11:33','Beale at Market',56,'8/22/2015 11:43','Steuart at Market',74,597,'Customer',27713); +INSERT INTO "trip" VALUES(901065,2525,'8/22/2015 11:34','Embarcadero at Vallejo',48,'8/22/2015 12:16','Embarcadero at Vallejo',48,554,'Customer',32216); +INSERT INTO "trip" VALUES(901066,813,'8/22/2015 11:34','Mechanics Plaza (Market at Battery)',75,'8/22/2015 11:48','South Van Ness at Market',66,560,'Subscriber',94110); +INSERT INTO "trip" VALUES(901067,2950,'8/22/2015 11:34','Harry Bridges Plaza (Ferry Building)',50,'8/22/2015 12:23','Embarcadero at Sansome',60,340,'Customer',91208); +INSERT INTO "trip" VALUES(901068,2509,'8/22/2015 11:34','Embarcadero at Vallejo',48,'8/22/2015 12:16','Embarcadero at Vallejo',48,517,'Customer',32216); +INSERT INTO "trip" VALUES(901069,410,'8/22/2015 11:36','Beale at Market',56,'8/22/2015 11:43','Steuart at Market',74,878,'Customer',27713); +INSERT INTO "trip" VALUES(901070,3123,'8/22/2015 11:36','Harry Bridges Plaza (Ferry Building)',50,'8/22/2015 12:28','Embarcadero at Sansome',60,290,'Customer',91208); +INSERT INTO "trip" VALUES(901071,1389,'8/22/2015 11:37','Market at 4th',76,'8/22/2015 12:00','Steuart at Market',74,382,'Customer','nil'); +INSERT INTO "trip" VALUES(901072,2327,'8/22/2015 11:37','Embarcadero at Vallejo',48,'8/22/2015 12:16','Embarcadero at Vallejo',48,386,'Customer',32244); +INSERT INTO "trip" VALUES(901073,635,'8/22/2015 11:37','San Francisco Caltrain (Townsend at 4th)',70,'8/22/2015 11:48','Powell Street BART',39,585,'Subscriber',2780); +INSERT INTO "trip" VALUES(901074,492,'8/22/2015 11:38','Market at 4th',76,'8/22/2015 11:46','Steuart at Market',74,275,'Customer',''); +INSERT INTO "trip" VALUES(901075,294,'8/22/2015 11:38','5th at Howard',57,'8/22/2015 11:43','Civic Center BART (7th at Market)',72,491,'Subscriber',94107); +INSERT INTO "trip" VALUES(901076,421,'8/22/2015 11:39','Market at 4th',76,'8/22/2015 11:46','Steuart at Market',74,449,'Customer','nil'); +INSERT INTO "trip" VALUES(901077,1004,'8/22/2015 11:39','Civic Center BART (7th at Market)',72,'8/22/2015 11:56','San Francisco Caltrain 2 (330 Townsend)',69,374,'Subscriber',94108); +INSERT INTO "trip" VALUES(901078,2213,'8/22/2015 11:40','Embarcadero at Vallejo',48,'8/22/2015 12:16','Embarcadero at Vallejo',48,67,'Customer',94545); +INSERT INTO "trip" VALUES(901079,2202,'8/22/2015 11:40','Embarcadero at Vallejo',48,'8/22/2015 12:16','Embarcadero at Vallejo',48,66,'Customer',94545); +INSERT INTO "trip" VALUES(901080,293,'8/22/2015 11:40','SJSU 4th at San Carlos',12,'8/22/2015 11:45','Santa Clara at Almaden',4,245,'Subscriber',95110); +INSERT INTO "trip" VALUES(901081,1186,'8/22/2015 11:40','Market at 4th',76,'8/22/2015 12:00','Steuart at Market',74,407,'Customer','nil'); +INSERT INTO "trip" VALUES(901082,9730,'8/22/2015 11:41','Embarcadero at Sansome',60,'8/22/2015 14:23','Clay at Battery',41,371,'Customer',94588); +INSERT INTO "trip" VALUES(901083,9689,'8/22/2015 11:41','Embarcadero at Sansome',60,'8/22/2015 14:23','Clay at Battery',41,575,'Customer',94588); +INSERT INTO "trip" VALUES(901085,550,'8/22/2015 11:45','Embarcadero at Vallejo',48,'8/22/2015 11:54','Temporary Transbay Terminal (Howard at Beale)',55,404,'Customer',9208); +INSERT INTO "trip" VALUES(901086,897,'8/22/2015 11:45','Market at 4th',76,'8/22/2015 12:00','Steuart at Market',74,329,'Customer','nil'); +INSERT INTO "trip" VALUES(901087,233,'8/22/2015 11:47','California Ave Caltrain Station',36,'8/22/2015 11:51','California Ave Caltrain Station',36,252,'Customer',94306); +INSERT INTO "trip" VALUES(901088,920,'8/22/2015 11:48','San Francisco Caltrain 2 (330 Townsend)',69,'8/22/2015 12:03','Embarcadero at Sansome',60,502,'Subscriber',94158); +INSERT INTO "trip" VALUES(901089,758,'8/22/2015 11:47','Market at 4th',76,'8/22/2015 12:00','Steuart at Market',74,385,'Customer','nil'); +INSERT INTO "trip" VALUES(901090,162,'8/22/2015 11:48','California Ave Caltrain Station',36,'8/22/2015 11:50','California Ave Caltrain Station',36,88,'Customer',94306); +INSERT INTO "trip" VALUES(901092,614,'8/22/2015 11:50','Market at 4th',76,'8/22/2015 12:01','Steuart at Market',74,620,'Customer','nil'); +INSERT INTO "trip" VALUES(901093,494,'8/22/2015 11:55','Embarcadero at Sansome',60,'8/22/2015 12:03','Harry Bridges Plaza (Ferry Building)',50,405,'Customer',60654); +INSERT INTO "trip" VALUES(901094,486,'8/22/2015 11:55','Embarcadero at Sansome',60,'8/22/2015 12:03','Harry Bridges Plaza (Ferry Building)',50,507,'Customer',60654); +INSERT INTO "trip" VALUES(901096,798,'8/22/2015 11:56','5th at Howard',57,'8/22/2015 12:09','Townsend at 7th',65,475,'Customer',94608); +INSERT INTO "trip" VALUES(901097,10937,'8/22/2015 12:01','Post at Kearny',47,'8/22/2015 15:03','Market at Sansome',77,422,'Customer',91355); +INSERT INTO "trip" VALUES(901099,3578,'8/22/2015 12:02','Harry Bridges Plaza (Ferry Building)',50,'8/22/2015 13:02','Embarcadero at Vallejo',48,591,'Customer',1121); +INSERT INTO "trip" VALUES(901100,1738,'8/22/2015 12:04','2nd at South Park',64,'8/22/2015 12:32','2nd at South Park',64,270,'Subscriber',94118); +INSERT INTO "trip" VALUES(901101,3027,'8/22/2015 12:04','Harry Bridges Plaza (Ferry Building)',50,'8/22/2015 12:54','Embarcadero at Vallejo',48,312,'Customer',94703); +INSERT INTO "trip" VALUES(901102,3906,'8/22/2015 12:06','Embarcadero at Folsom',51,'8/22/2015 13:11','Grant Avenue at Columbus Avenue',73,538,'Customer',31000); +INSERT INTO "trip" VALUES(901103,23823,'8/22/2015 12:06','Market at 10th',67,'8/22/2015 18:43','Harry Bridges Plaza (Ferry Building)',50,353,'Customer',94114); +INSERT INTO "trip" VALUES(901104,23847,'8/22/2015 12:05','Market at 10th',67,'8/22/2015 18:43','Harry Bridges Plaza (Ferry Building)',50,505,'Customer',94114); +INSERT INTO "trip" VALUES(901105,684,'8/22/2015 12:06','Steuart at Market',74,'8/22/2015 12:18','Market at 4th',76,382,'Customer',''); +INSERT INTO "trip" VALUES(901106,3852,'8/22/2015 12:07','Embarcadero at Folsom',51,'8/22/2015 13:11','Grant Avenue at Columbus Avenue',73,587,'Customer',31000); +INSERT INTO "trip" VALUES(901107,618,'8/22/2015 12:07','Steuart at Market',74,'8/22/2015 12:18','Market at 4th',76,449,'Customer','nil'); +INSERT INTO "trip" VALUES(901108,2768,'8/22/2015 12:08','Harry Bridges Plaza (Ferry Building)',50,'8/22/2015 12:54','Embarcadero at Vallejo',48,358,'Customer',94703); +INSERT INTO "trip" VALUES(901109,190,'8/22/2015 12:09','Civic Center BART (7th at Market)',72,'8/22/2015 12:12','Powell Street BART',39,491,'Subscriber',94107); +INSERT INTO "trip" VALUES(901110,697,'8/22/2015 12:10','Grant Avenue at Columbus Avenue',73,'8/22/2015 12:22','Harry Bridges Plaza (Ferry Building)',50,268,'Subscriber',94133); +INSERT INTO "trip" VALUES(901111,2305,'8/22/2015 12:10','Market at 4th',76,'8/22/2015 12:49','Embarcadero at Vallejo',48,193,'Customer',85016); +INSERT INTO "trip" VALUES(901112,2136,'8/22/2015 12:13','Market at 4th',76,'8/22/2015 12:48','Embarcadero at Vallejo',48,568,'Customer',85016); +INSERT INTO "trip" VALUES(901114,1260,'8/22/2015 12:17','Mountain View City Hall',27,'8/22/2015 12:38','Rengstorff Avenue / California Street',33,243,'Subscriber',94040); +INSERT INTO "trip" VALUES(901115,5109,'8/22/2015 12:18','Adobe on Almaden',5,'8/22/2015 13:43','Adobe on Almaden',5,692,'Customer','nil'); +INSERT INTO "trip" VALUES(901116,5050,'8/22/2015 12:18','Adobe on Almaden',5,'8/22/2015 13:42','Adobe on Almaden',5,190,'Customer','nil'); +INSERT INTO "trip" VALUES(901119,257,'8/22/2015 12:22','Post at Kearny',47,'8/22/2015 12:26','5th at Howard',57,623,'Subscriber',94107); +INSERT INTO "trip" VALUES(901120,2318,'8/22/2015 12:24','San Francisco Caltrain 2 (330 Townsend)',69,'8/22/2015 13:03','Market at 4th',76,562,'Customer',94063); +INSERT INTO "trip" VALUES(901122,487,'8/22/2015 12:28','Embarcadero at Sansome',60,'8/22/2015 12:36','Broadway St at Battery St',82,285,'Customer',4102); +INSERT INTO "trip" VALUES(901123,407,'8/22/2015 12:29','Powell Street BART',39,'8/22/2015 12:35','San Francisco Caltrain 2 (330 Townsend)',69,585,'Subscriber',94107); +INSERT INTO "trip" VALUES(901124,751,'8/22/2015 12:30','San Francisco Caltrain 2 (330 Townsend)',69,'8/22/2015 12:42','Temporary Transbay Terminal (Howard at Beale)',55,286,'Subscriber',94606); +INSERT INTO "trip" VALUES(901125,1534,'8/22/2015 12:31','San Francisco Caltrain 2 (330 Townsend)',69,'8/22/2015 12:56','Embarcadero at Vallejo',48,427,'Customer',85601); +INSERT INTO "trip" VALUES(901126,2037,'8/22/2015 12:31','San Francisco Caltrain (Townsend at 4th)',70,'8/22/2015 13:05','Harry Bridges Plaza (Ferry Building)',50,191,'Customer',1); +INSERT INTO "trip" VALUES(901127,1846,'8/22/2015 12:33','San Francisco Caltrain (Townsend at 4th)',70,'8/22/2015 13:04','Harry Bridges Plaza (Ferry Building)',50,576,'Customer',86); +INSERT INTO "trip" VALUES(901128,1521,'8/22/2015 12:34','Embarcadero at Vallejo',48,'8/22/2015 12:59','Embarcadero at Sansome',60,386,'Customer','nil'); +INSERT INTO "trip" VALUES(901129,1652,'8/22/2015 12:34','Embarcadero at Vallejo',48,'8/22/2015 13:02','Embarcadero at Sansome',60,400,'Customer','nil'); +INSERT INTO "trip" VALUES(901130,1667,'8/22/2015 12:34','Embarcadero at Vallejo',48,'8/22/2015 13:02','Embarcadero at Sansome',60,677,'Customer','nil'); +INSERT INTO "trip" VALUES(901131,1578,'8/22/2015 12:35','Embarcadero at Vallejo',48,'8/22/2015 13:01','Embarcadero at Sansome',60,338,'Customer','nil'); +INSERT INTO "trip" VALUES(901132,928,'8/22/2015 12:35','2nd at South Park',64,'8/22/2015 12:51','2nd at South Park',64,384,'Subscriber',94118); +INSERT INTO "trip" VALUES(901133,994,'8/22/2015 12:37','2nd at Townsend',61,'8/22/2015 12:53','Washington at Kearny',46,504,'Customer',98109); +INSERT INTO "trip" VALUES(901134,986,'8/22/2015 12:37','2nd at Townsend',61,'8/22/2015 12:53','Washington at Kearny',46,16,'Customer',98109); +INSERT INTO "trip" VALUES(901135,1319,'8/22/2015 12:37','Embarcadero at Vallejo',48,'8/22/2015 12:59','Embarcadero at Sansome',60,67,'Customer','nil'); +INSERT INTO "trip" VALUES(901136,518,'8/22/2015 12:38','Market at Sansome',77,'8/22/2015 12:46','Harry Bridges Plaza (Ferry Building)',50,625,'Customer',10011); +INSERT INTO "trip" VALUES(901137,479,'8/22/2015 12:38','Market at Sansome',77,'8/22/2015 12:46','Harry Bridges Plaza (Ferry Building)',50,514,'Customer',10011); +INSERT INTO "trip" VALUES(901138,297,'8/22/2015 12:39','Broadway St at Battery St',82,'8/22/2015 12:44','Grant Avenue at Columbus Avenue',73,285,'Customer',4102); +INSERT INTO "trip" VALUES(901139,6207,'8/22/2015 12:41','Embarcadero at Vallejo',48,'8/22/2015 14:25','Embarcadero at Vallejo',48,554,'Customer',52317); +INSERT INTO "trip" VALUES(901140,19645,'8/22/2015 12:41','Beale at Market',56,'8/22/2015 18:09','Grant Avenue at Columbus Avenue',73,336,'Customer',63122); +INSERT INTO "trip" VALUES(901141,6195,'8/22/2015 12:41','Embarcadero at Vallejo',48,'8/22/2015 14:25','Embarcadero at Vallejo',48,66,'Customer',52317); +INSERT INTO "trip" VALUES(901142,19635,'8/22/2015 12:42','Beale at Market',56,'8/22/2015 18:09','Grant Avenue at Columbus Avenue',73,468,'Customer',63122); +INSERT INTO "trip" VALUES(901143,7238,'8/22/2015 12:43','Harry Bridges Plaza (Ferry Building)',50,'8/22/2015 14:44','South Van Ness at Market',66,470,'Customer',93710); +INSERT INTO "trip" VALUES(901144,7237,'8/22/2015 12:43','Harry Bridges Plaza (Ferry Building)',50,'8/22/2015 14:44','South Van Ness at Market',66,579,'Customer',93710); +INSERT INTO "trip" VALUES(901145,463,'8/22/2015 12:47','San Pedro Square',6,'8/22/2015 12:54','SJSU 4th at San Carlos',12,648,'Subscriber',95110); +INSERT INTO "trip" VALUES(901146,4264,'8/22/2015 12:47','Harry Bridges Plaza (Ferry Building)',50,'8/22/2015 13:58','Grant Avenue at Columbus Avenue',73,625,'Customer',10011); +INSERT INTO "trip" VALUES(901147,4239,'8/22/2015 12:47','Harry Bridges Plaza (Ferry Building)',50,'8/22/2015 13:58','Grant Avenue at Columbus Avenue',73,514,'Customer',10011); +INSERT INTO "trip" VALUES(901148,581,'8/22/2015 12:48','Grant Avenue at Columbus Avenue',73,'8/22/2015 12:57','Steuart at Market',74,593,'Customer',80923); +INSERT INTO "trip" VALUES(901149,303,'8/22/2015 12:48','5th at Howard',57,'8/22/2015 12:53','Post at Kearny',47,623,'Subscriber',94107); +INSERT INTO "trip" VALUES(901150,369,'8/22/2015 12:50','Embarcadero at Bryant',54,'8/22/2015 12:56','Harry Bridges Plaza (Ferry Building)',50,631,'Subscriber',94105); +INSERT INTO "trip" VALUES(901151,414,'8/22/2015 12:51','Davis at Jackson',42,'8/22/2015 12:57','Grant Avenue at Columbus Avenue',73,417,'Customer',94111); +INSERT INTO "trip" VALUES(901154,378,'8/22/2015 12:56','Harry Bridges Plaza (Ferry Building)',50,'8/22/2015 13:02','Spear at Folsom',49,268,'Subscriber',94102); +INSERT INTO "trip" VALUES(901159,369,'8/22/2015 12:59','Market at Sansome',77,'8/22/2015 13:05','2nd at South Park',64,629,'Subscriber',94107); +INSERT INTO "trip" VALUES(901164,817,'8/22/2015 13:04','Harry Bridges Plaza (Ferry Building)',50,'8/22/2015 13:18','Market at 4th',76,507,'Customer','nil'); +INSERT INTO "trip" VALUES(901167,995,'8/22/2015 13:07','Harry Bridges Plaza (Ferry Building)',50,'8/22/2015 13:23','San Francisco Caltrain (Townsend at 4th)',70,317,'Customer',60654); +INSERT INTO "trip" VALUES(901168,1778,'8/22/2015 13:07','Embarcadero at Sansome',60,'8/22/2015 13:36','Powell at Post (Union Square)',71,340,'Customer','nil'); +INSERT INTO "trip" VALUES(901170,979,'8/22/2015 13:07','Harry Bridges Plaza (Ferry Building)',50,'8/22/2015 13:23','San Francisco Caltrain (Townsend at 4th)',70,405,'Customer',60654); +INSERT INTO "trip" VALUES(901171,1742,'8/22/2015 13:07','Embarcadero at Sansome',60,'8/22/2015 13:36','Powell at Post (Union Square)',71,267,'Customer','nil'); +INSERT INTO "trip" VALUES(901172,102,'8/22/2015 13:08','Embarcadero at Sansome',60,'8/22/2015 13:09','Embarcadero at Sansome',60,569,'Customer','nil'); +INSERT INTO "trip" VALUES(901173,1631,'8/22/2015 13:08','Embarcadero at Vallejo',48,'8/22/2015 13:35','Embarcadero at Folsom',51,591,'Customer',1121); +INSERT INTO "trip" VALUES(901174,1688,'8/22/2015 13:08','Embarcadero at Sansome',60,'8/22/2015 13:36','Powell at Post (Union Square)',71,400,'Customer','nil'); +INSERT INTO "trip" VALUES(901175,1628,'8/22/2015 13:09','Embarcadero at Sansome',60,'8/22/2015 13:36','Powell at Post (Union Square)',71,677,'Customer','nil'); +INSERT INTO "trip" VALUES(901176,316,'8/22/2015 13:09','Powell at Post (Union Square)',71,'8/22/2015 13:14','Howard at 2nd',63,448,'Subscriber',94108); +INSERT INTO "trip" VALUES(901177,1568,'8/22/2015 13:10','Embarcadero at Sansome',60,'8/22/2015 13:36','Powell at Post (Union Square)',71,608,'Customer','nil'); +INSERT INTO "trip" VALUES(901178,62,'8/22/2015 13:17','Embarcadero at Sansome',60,'8/22/2015 13:18','Embarcadero at Sansome',60,569,'Customer',49); +INSERT INTO "trip" VALUES(901180,642,'8/22/2015 13:18','2nd at South Park',64,'8/22/2015 13:28','San Francisco Caltrain 2 (330 Townsend)',69,384,'Subscriber',94118); +INSERT INTO "trip" VALUES(901181,1577,'8/22/2015 13:18','Market at 4th',76,'8/22/2015 13:44','Powell at Post (Union Square)',71,562,'Customer',94063); +INSERT INTO "trip" VALUES(901182,1286,'8/22/2015 13:19','Embarcadero at Sansome',60,'8/22/2015 13:40','Post at Kearny',47,613,'Customer',49); +INSERT INTO "trip" VALUES(901183,132,'8/22/2015 13:20','Steuart at Market',74,'8/22/2015 13:22','Embarcadero at Folsom',51,410,'Subscriber',94804); +INSERT INTO "trip" VALUES(901184,7565,'8/22/2015 13:22','University and Emerson',35,'8/22/2015 15:28','University and Emerson',35,253,'Customer',94131); +INSERT INTO "trip" VALUES(901185,7508,'8/22/2015 13:23','University and Emerson',35,'8/22/2015 15:28','University and Emerson',35,638,'Customer',94131); +INSERT INTO "trip" VALUES(901187,399,'8/22/2015 13:27','Harry Bridges Plaza (Ferry Building)',50,'8/22/2015 13:34','Embarcadero at Bryant',54,631,'Subscriber',94080); +INSERT INTO "trip" VALUES(901188,930,'8/22/2015 13:29','San Francisco Caltrain (Townsend at 4th)',70,'8/22/2015 13:44','Powell Street BART',39,405,'Customer',60654); +INSERT INTO "trip" VALUES(901189,752,'8/22/2015 13:30','2nd at South Park',64,'8/22/2015 13:43','Powell at Post (Union Square)',71,629,'Subscriber',94107); +INSERT INTO "trip" VALUES(901190,207,'8/22/2015 13:33','2nd at Townsend',61,'8/22/2015 13:36','San Francisco Caltrain 2 (330 Townsend)',69,520,'Subscriber',94107); +INSERT INTO "trip" VALUES(901191,633,'8/22/2015 13:33','Civic Center BART (7th at Market)',72,'8/22/2015 13:44','Steuart at Market',74,525,'Customer',11206); +INSERT INTO "trip" VALUES(901192,707,'8/22/2015 13:35','Market at 10th',67,'8/22/2015 13:47','2nd at Folsom',62,544,'Customer',94103); +INSERT INTO "trip" VALUES(901193,701,'8/22/2015 13:36','Market at 10th',67,'8/22/2015 13:47','2nd at Folsom',62,134,'Customer',94103); +INSERT INTO "trip" VALUES(901198,515,'8/22/2015 13:46','2nd at Folsom',62,'8/22/2015 13:55','Embarcadero at Folsom',51,401,'Subscriber',94107); +INSERT INTO "trip" VALUES(901200,628,'8/22/2015 13:48','Harry Bridges Plaza (Ferry Building)',50,'8/22/2015 13:58','Market at 4th',76,403,'Subscriber',94105); +INSERT INTO "trip" VALUES(901201,4256,'8/22/2015 13:50','Clay at Battery',41,'8/22/2015 15:01','Embarcadero at Sansome',60,389,'Customer',75751); +INSERT INTO "trip" VALUES(901202,580,'8/22/2015 13:52','Powell Street BART',39,'8/22/2015 14:01','San Francisco Caltrain 2 (330 Townsend)',69,359,'Subscriber',94107); +INSERT INTO "trip" VALUES(901203,4167,'8/22/2015 13:52','Clay at Battery',41,'8/22/2015 15:01','Embarcadero at Sansome',60,632,'Customer',75751); +INSERT INTO "trip" VALUES(901204,3507,'8/22/2015 13:53','Yerba Buena Center of the Arts (3rd @ Howard)',68,'8/22/2015 14:51','Market at 10th',67,441,'Customer',94107); +INSERT INTO "trip" VALUES(901205,298,'8/22/2015 13:54','Howard at 2nd',63,'8/22/2015 13:59','Market at 4th',76,335,'Subscriber',94105); +INSERT INTO "trip" VALUES(901206,3928,'8/22/2015 13:56','Clay at Battery',41,'8/22/2015 15:01','Embarcadero at Sansome',60,598,'Customer','nil'); +INSERT INTO "trip" VALUES(901207,133,'8/22/2015 13:58','Embarcadero at Vallejo',48,'8/22/2015 14:01','Embarcadero at Vallejo',48,137,'Customer',84105); +INSERT INTO "trip" VALUES(901208,1028,'8/22/2015 14:00','Civic Center BART (7th at Market)',72,'8/22/2015 14:17','Steuart at Market',74,635,'Customer',1425080); +INSERT INTO "trip" VALUES(901209,2930,'8/22/2015 14:03','Embarcadero at Vallejo',48,'8/22/2015 14:52','Embarcadero at Sansome',60,312,'Customer',84105); +INSERT INTO "trip" VALUES(901210,2507,'8/22/2015 14:03','Embarcadero at Vallejo',48,'8/22/2015 14:45','Embarcadero at Sansome',60,358,'Customer',83730); +INSERT INTO "trip" VALUES(901211,2886,'8/22/2015 14:03','Embarcadero at Vallejo',48,'8/22/2015 14:51','Embarcadero at Sansome',60,568,'Customer',84105); +INSERT INTO "trip" VALUES(901212,2859,'8/22/2015 14:03','Embarcadero at Vallejo',48,'8/22/2015 14:51','Embarcadero at Sansome',60,137,'Customer',83730); +INSERT INTO "trip" VALUES(901213,380,'8/22/2015 14:07','Market at 4th',76,'8/22/2015 14:13','Temporary Transbay Terminal (Howard at Beale)',55,335,'Subscriber',94110); +INSERT INTO "trip" VALUES(901214,266,'8/22/2015 14:11','2nd at Townsend',61,'8/22/2015 14:15','San Francisco Caltrain (Townsend at 4th)',70,415,'Subscriber',94107); +INSERT INTO "trip" VALUES(901215,684,'8/22/2015 14:18','Steuart at Market',74,'8/22/2015 14:29','San Francisco Caltrain (Townsend at 4th)',70,385,'Subscriber',94158); +INSERT INTO "trip" VALUES(901216,790,'8/22/2015 14:19','Townsend at 7th',65,'8/22/2015 14:32','Civic Center BART (7th at Market)',72,557,'Customer',94608); +INSERT INTO "trip" VALUES(901217,985,'8/22/2015 14:20','Embarcadero at Sansome',60,'8/22/2015 14:36','San Francisco Caltrain (Townsend at 4th)',70,372,'Customer',85601); +INSERT INTO "trip" VALUES(901218,1395,'8/22/2015 14:21','Yerba Buena Center of the Arts (3rd @ Howard)',68,'8/22/2015 14:44','2nd at Townsend',61,510,'Subscriber',94107); +INSERT INTO "trip" VALUES(901219,650,'8/22/2015 14:21','Harry Bridges Plaza (Ferry Building)',50,'8/22/2015 14:32','Embarcadero at Sansome',60,191,'Customer',11206); +INSERT INTO "trip" VALUES(901220,2067,'8/22/2015 14:29','Embarcadero at Sansome',60,'8/22/2015 15:04','Embarcadero at Sansome',60,569,'Customer',39); +INSERT INTO "trip" VALUES(901221,2037,'8/22/2015 14:30','Embarcadero at Sansome',60,'8/22/2015 15:04','Embarcadero at Sansome',60,581,'Customer',39); +INSERT INTO "trip" VALUES(901222,4877,'8/22/2015 14:35','Embarcadero at Sansome',60,'8/22/2015 15:56','Golden Gate at Polk',59,191,'Customer',11206); +INSERT INTO "trip" VALUES(901224,1730,'8/22/2015 14:38','Beale at Market',56,'8/22/2015 15:07','South Van Ness at Market',66,492,'Customer',1425080); +INSERT INTO "trip" VALUES(901225,341,'8/22/2015 14:42','2nd at South Park',64,'8/22/2015 14:48','Embarcadero at Bryant',54,270,'Customer',94103); +INSERT INTO "trip" VALUES(901226,326,'8/22/2015 14:43','2nd at South Park',64,'8/22/2015 14:48','Embarcadero at Bryant',54,519,'Customer',94103); +INSERT INTO "trip" VALUES(901227,2302,'8/22/2015 14:46','South Van Ness at Market',66,'8/22/2015 15:24','Market at 4th',76,560,'Customer',93710); +INSERT INTO "trip" VALUES(901228,2302,'8/22/2015 14:46','South Van Ness at Market',66,'8/22/2015 15:24','Market at 4th',76,470,'Customer',93710); +INSERT INTO "trip" VALUES(901230,243,'8/22/2015 14:49','Embarcadero at Sansome',60,'8/22/2015 14:53','Embarcadero at Sansome',60,67,'Customer',83730); +INSERT INTO "trip" VALUES(901231,11251,'8/22/2015 14:52','Powell at Post (Union Square)',71,'8/22/2015 18:00','Powell at Post (Union Square)',71,611,'Customer',95209); +INSERT INTO "trip" VALUES(901232,1653,'8/22/2015 14:53','Embarcadero at Folsom',51,'8/22/2015 15:21','Embarcadero at Sansome',60,591,'Customer',1121); +INSERT INTO "trip" VALUES(901233,1082,'8/22/2015 14:54','Harry Bridges Plaza (Ferry Building)',50,'8/22/2015 15:12','Washington at Kearny',46,289,'Subscriber',94133); +INSERT INTO "trip" VALUES(901234,1415,'8/22/2015 15:01','Powell at Post (Union Square)',71,'8/22/2015 15:24','South Van Ness at Market',66,562,'Customer','nil'); +INSERT INTO "trip" VALUES(901235,1348,'8/22/2015 15:02','Powell at Post (Union Square)',71,'8/22/2015 15:24','South Van Ness at Market',66,629,'Customer','nil'); +INSERT INTO "trip" VALUES(901236,1339,'8/22/2015 15:02','Powell at Post (Union Square)',71,'8/22/2015 15:24','South Van Ness at Market',66,266,'Customer','nil'); +INSERT INTO "trip" VALUES(901237,308,'8/22/2015 15:02','Market at 4th',76,'8/22/2015 15:07','Powell Street BART',39,507,'Customer','nil'); +INSERT INTO "trip" VALUES(901238,1308,'8/22/2015 15:02','Powell at Post (Union Square)',71,'8/22/2015 15:24','South Van Ness at Market',66,340,'Customer','nil'); +INSERT INTO "trip" VALUES(901239,1881,'8/22/2015 15:03','Rengstorff Avenue / California Street',33,'8/22/2015 15:34','Park at Olive',38,77,'Customer',60563); +INSERT INTO "trip" VALUES(901240,1189,'8/22/2015 15:07','Market at 4th',76,'8/22/2015 15:27','Harry Bridges Plaza (Ferry Building)',50,382,'Customer',94063); +INSERT INTO "trip" VALUES(901241,5616,'8/22/2015 15:08','5th at Howard',57,'8/22/2015 16:41','5th at Howard',57,33,'Customer',94107); +INSERT INTO "trip" VALUES(901242,298,'8/22/2015 15:10','San Francisco Caltrain (Townsend at 4th)',70,'8/22/2015 15:15','Townsend at 7th',65,489,'Customer',94401); +INSERT INTO "trip" VALUES(901243,848,'8/22/2015 15:12','Civic Center BART (7th at Market)',72,'8/22/2015 15:26','Steuart at Market',74,557,'Customer',80020); +INSERT INTO "trip" VALUES(901244,70882,'8/22/2015 15:19','Market at 10th',67,'8/23/2015 11:00','Yerba Buena Center of the Arts (3rd @ Howard)',68,395,'Customer',94107); +INSERT INTO "trip" VALUES(901245,812,'8/22/2015 15:21','Powell at Post (Union Square)',71,'8/22/2015 15:35','San Francisco Caltrain (Townsend at 4th)',70,532,'Subscriber',94102); +INSERT INTO "trip" VALUES(901246,562,'8/22/2015 15:22','Embarcadero at Sansome',60,'8/22/2015 15:31','Harry Bridges Plaza (Ferry Building)',50,591,'Customer',1121); +INSERT INTO "trip" VALUES(901247,579,'8/22/2015 15:19','Davis at Jackson',42,'8/22/2015 15:29','Market at 4th',76,322,'Subscriber',94111); +INSERT INTO "trip" VALUES(901248,324,'8/22/2015 15:28','2nd at Folsom',62,'8/22/2015 15:33','Market at 4th',76,134,'Subscriber',94105); +INSERT INTO "trip" VALUES(901249,543,'8/22/2015 15:29','Embarcadero at Bryant',54,'8/22/2015 15:38','Broadway St at Battery St',82,519,'Customer',94103); +INSERT INTO "trip" VALUES(901250,512,'8/22/2015 15:30','Embarcadero at Bryant',54,'8/22/2015 15:38','Broadway St at Battery St',82,454,'Customer',94103); +INSERT INTO "trip" VALUES(901257,531,'8/22/2015 15:31','Civic Center BART (7th at Market)',72,'8/22/2015 15:40','Townsend at 7th',65,497,'Subscriber',94102); +INSERT INTO "trip" VALUES(901258,1352,'8/22/2015 15:32','Powell at Post (Union Square)',71,'8/22/2015 15:55','Market at Sansome',77,677,'Customer',37068); +INSERT INTO "trip" VALUES(901259,320,'8/22/2015 15:33','Broadway St at Battery St',82,'8/22/2015 15:38','Grant Avenue at Columbus Avenue',73,530,'Customer',94710); +INSERT INTO "trip" VALUES(901260,324,'8/22/2015 15:33','Broadway St at Battery St',82,'8/22/2015 15:39','Grant Avenue at Columbus Avenue',73,478,'Customer',94710); +INSERT INTO "trip" VALUES(901261,609,'8/22/2015 15:33','5th at Howard',57,'8/22/2015 15:44','Townsend at 7th',65,283,'Customer',94306); +INSERT INTO "trip" VALUES(901262,562,'8/22/2015 15:34','5th at Howard',57,'8/22/2015 15:44','Townsend at 7th',65,212,'Customer',94306); +INSERT INTO "trip" VALUES(901263,265,'8/22/2015 15:36','Park at Olive',38,'8/22/2015 15:40','California Ave Caltrain Station',36,75,'Customer',60563); +INSERT INTO "trip" VALUES(901264,738,'8/22/2015 15:40','Steuart at Market',74,'8/22/2015 15:52','San Francisco Caltrain (Townsend at 4th)',70,407,'Subscriber',95035); +INSERT INTO "trip" VALUES(901265,807,'8/22/2015 15:43','Powell at Post (Union Square)',71,'8/22/2015 15:56','Steuart at Market',74,347,'Customer',10115); +INSERT INTO "trip" VALUES(901266,754,'8/22/2015 15:44','Powell at Post (Union Square)',71,'8/22/2015 15:57','Steuart at Market',74,306,'Customer',10115); +INSERT INTO "trip" VALUES(901267,981,'8/22/2015 15:49','Steuart at Market',74,'8/22/2015 16:05','San Francisco Caltrain (Townsend at 4th)',70,636,'Customer',94063); +INSERT INTO "trip" VALUES(901268,235,'8/22/2015 15:54','Davis at Jackson',42,'8/22/2015 15:58','Steuart at Market',74,285,'Subscriber',94107); +INSERT INTO "trip" VALUES(901269,1314,'8/22/2015 15:54','Steuart at Market',74,'8/22/2015 16:15','Grant Avenue at Columbus Avenue',73,418,'Customer',92120); +INSERT INTO "trip" VALUES(901270,1276,'8/22/2015 15:54','Steuart at Market',74,'8/22/2015 16:15','Grant Avenue at Columbus Avenue',73,547,'Customer',92120); +INSERT INTO "trip" VALUES(901272,1406,'8/22/2015 15:56','Mountain View City Hall',27,'8/22/2015 16:19','Mountain View City Hall',27,28,'Subscriber',94041); +INSERT INTO "trip" VALUES(901273,2265,'8/22/2015 15:56','Market at Sansome',77,'8/22/2015 16:34','Embarcadero at Sansome',60,677,'Customer',37068); +INSERT INTO "trip" VALUES(901274,542,'8/22/2015 15:56','Market at 4th',76,'8/22/2015 16:05','Spear at Folsom',49,134,'Subscriber',94105); +INSERT INTO "trip" VALUES(901275,6010,'8/22/2015 15:57','California Ave Caltrain Station',36,'8/22/2015 17:37','California Ave Caltrain Station',36,105,'Customer',92127); +INSERT INTO "trip" VALUES(901276,1093,'8/22/2015 15:57','Steuart at Market',74,'8/22/2015 16:15','Grant Avenue at Columbus Avenue',73,597,'Customer',95816); +INSERT INTO "trip" VALUES(901277,1118,'8/22/2015 15:57','Steuart at Market',74,'8/22/2015 16:16','Grant Avenue at Columbus Avenue',73,329,'Customer',95816); +INSERT INTO "trip" VALUES(901278,588,'8/22/2015 15:58','Howard at 2nd',63,'8/22/2015 16:07','Golden Gate at Polk',59,526,'Subscriber',94105); +INSERT INTO "trip" VALUES(901279,315,'8/22/2015 15:59','Market at 4th',76,'8/22/2015 16:05','2nd at Folsom',62,470,'Subscriber',94105); +INSERT INTO "trip" VALUES(901283,713,'8/22/2015 16:01','Market at 10th',67,'8/22/2015 16:12','Market at 4th',76,343,'Customer',92067); +INSERT INTO "trip" VALUES(901284,714,'8/22/2015 16:01','Market at 10th',67,'8/22/2015 16:13','Market at 4th',76,582,'Customer',92067); +INSERT INTO "trip" VALUES(901288,1339,'8/22/2015 16:02','Steuart at Market',74,'8/22/2015 16:24','Embarcadero at Sansome',60,469,'Customer',77003); +INSERT INTO "trip" VALUES(901289,1299,'8/22/2015 16:03','Steuart at Market',74,'8/22/2015 16:24','Embarcadero at Sansome',60,593,'Customer',77003); +INSERT INTO "trip" VALUES(901290,574,'8/22/2015 16:03','Grant Avenue at Columbus Avenue',73,'8/22/2015 16:12','Mechanics Plaza (Market at Battery)',75,552,'Subscriber',94133); +INSERT INTO "trip" VALUES(901293,648,'8/22/2015 16:04','Steuart at Market',74,'8/22/2015 16:15','Grant Avenue at Columbus Avenue',73,347,'Customer',80020); +INSERT INTO "trip" VALUES(901294,1242,'8/22/2015 16:05','Townsend at 7th',65,'8/22/2015 16:26','South Van Ness at Market',66,212,'Customer',94401); +INSERT INTO "trip" VALUES(901295,1560,'8/22/2015 16:08','Steuart at Market',74,'8/22/2015 16:34','Washington at Kearny',46,592,'Customer',94109); +INSERT INTO "trip" VALUES(901296,1538,'8/22/2015 16:08','Steuart at Market',74,'8/22/2015 16:34','Washington at Kearny',46,509,'Customer',94109); +INSERT INTO "trip" VALUES(901297,940,'8/22/2015 16:11','Steuart at Market',74,'8/22/2015 16:27','Grant Avenue at Columbus Avenue',73,557,'Customer',94109); +INSERT INTO "trip" VALUES(901298,679,'8/22/2015 16:12','Grant Avenue at Columbus Avenue',73,'8/22/2015 16:23','Post at Kearny',47,538,'Customer',75600); +INSERT INTO "trip" VALUES(901299,669,'8/22/2015 16:12','Grant Avenue at Columbus Avenue',73,'8/22/2015 16:23','Post at Kearny',47,514,'Customer',75600); +INSERT INTO "trip" VALUES(901300,109,'8/22/2015 16:21','Market at 4th',76,'8/22/2015 16:23','Powell Street BART',39,403,'Subscriber',94705); +INSERT INTO "trip" VALUES(901301,301,'8/22/2015 16:22','Embarcadero at Bryant',54,'8/22/2015 16:27','Harry Bridges Plaza (Ferry Building)',50,483,'Subscriber',94080); +INSERT INTO "trip" VALUES(901302,644,'8/22/2015 16:27','St James Park',13,'8/22/2015 16:37','San Jose Diridon Caltrain Station',2,643,'Subscriber',97214); +INSERT INTO "trip" VALUES(901307,2778,'8/22/2015 16:34','Embarcadero at Sansome',60,'8/22/2015 17:20','Embarcadero at Vallejo',48,677,'Customer',37068); +INSERT INTO "trip" VALUES(901308,439,'8/22/2015 16:35','2nd at South Park',64,'8/22/2015 16:42','Post at Kearny',47,362,'Subscriber',94107); +INSERT INTO "trip" VALUES(901309,189,'8/22/2015 16:39','Townsend at 7th',65,'8/22/2015 16:43','San Francisco Caltrain 2 (330 Townsend)',69,489,'Subscriber',94107); +INSERT INTO "trip" VALUES(901310,485,'8/22/2015 16:42','Commercial at Montgomery',45,'8/22/2015 16:50','Embarcadero at Folsom',51,589,'Subscriber',94108); +INSERT INTO "trip" VALUES(901316,622,'8/22/2015 16:52','Embarcadero at Sansome',60,'8/22/2015 17:02','Harry Bridges Plaza (Ferry Building)',50,312,'Subscriber',94133); +INSERT INTO "trip" VALUES(901317,839,'8/22/2015 16:54','Steuart at Market',74,'8/22/2015 17:08','Embarcadero at Sansome',60,878,'Customer',10115); +INSERT INTO "trip" VALUES(901318,836,'8/22/2015 16:54','Steuart at Market',74,'8/22/2015 17:08','Embarcadero at Sansome',60,620,'Customer',10115); +INSERT INTO "trip" VALUES(901319,649,'8/22/2015 16:55','Powell Street BART',39,'8/22/2015 17:05','San Francisco Caltrain (Townsend at 4th)',70,376,'Subscriber',94102); +INSERT INTO "trip" VALUES(901320,1150,'8/22/2015 16:56','Washington at Kearny',46,'8/22/2015 17:15','San Francisco Caltrain (Townsend at 4th)',70,592,'Customer',98109); +INSERT INTO "trip" VALUES(901321,1116,'8/22/2015 16:56','Washington at Kearny',46,'8/22/2015 17:15','San Francisco Caltrain (Townsend at 4th)',70,16,'Customer',98109); +INSERT INTO "trip" VALUES(901322,261,'8/22/2015 16:59','Embarcadero at Sansome',60,'8/22/2015 17:03','Broadway St at Battery St',82,469,'Subscriber',94107); +INSERT INTO "trip" VALUES(901323,869,'8/22/2015 17:02','Embarcadero at Sansome',60,'8/22/2015 17:17','Market at Sansome',77,358,'Customer',10011); +INSERT INTO "trip" VALUES(901324,847,'8/22/2015 17:03','Embarcadero at Sansome',60,'8/22/2015 17:17','Market at Sansome',77,593,'Customer',10011); +INSERT INTO "trip" VALUES(901325,1157,'8/22/2015 17:09','Grant Avenue at Columbus Avenue',73,'8/22/2015 17:29','Powell Street BART',39,557,'Customer',80020); +INSERT INTO "trip" VALUES(901326,405,'8/22/2015 17:09','Post at Kearny',47,'8/22/2015 17:16','Powell at Post (Union Square)',71,362,'Subscriber',2780); +INSERT INTO "trip" VALUES(901329,461,'8/22/2015 17:12','Powell Street BART',39,'8/22/2015 17:20','Beale at Market',56,507,'Customer',10027); +INSERT INTO "trip" VALUES(901330,505,'8/22/2015 17:12','Redwood City Caltrain Station',22,'8/22/2015 17:21','Franklin at Maple',21,219,'Customer',94063); +INSERT INTO "trip" VALUES(901335,744,'8/22/2015 17:16','Grant Avenue at Columbus Avenue',73,'8/22/2015 17:28','Powell at Post (Union Square)',71,361,'Customer',94710); +INSERT INTO "trip" VALUES(901336,735,'8/22/2015 17:16','Grant Avenue at Columbus Avenue',73,'8/22/2015 17:28','Powell at Post (Union Square)',71,530,'Customer',94710); +INSERT INTO "trip" VALUES(901337,313,'8/22/2015 17:19','Ryland Park',84,'8/22/2015 17:24','Japantown',9,205,'Subscriber',95110); +INSERT INTO "trip" VALUES(901338,647,'8/22/2015 17:19','Embarcadero at Sansome',60,'8/22/2015 17:30','Market at 4th',76,620,'Customer','nil'); +INSERT INTO "trip" VALUES(901339,486,'8/22/2015 17:20','Harry Bridges Plaza (Ferry Building)',50,'8/22/2015 17:28','Broadway St at Battery St',82,576,'Subscriber',94133); +INSERT INTO "trip" VALUES(901340,1145,'8/22/2015 17:20','Market at 4th',76,'8/22/2015 17:40','Steuart at Market',74,560,'Subscriber',94107); +INSERT INTO "trip" VALUES(901341,851,'8/22/2015 17:22','Powell Street BART',39,'8/22/2015 17:36','South Van Ness at Market',66,485,'Customer',83730); +INSERT INTO "trip" VALUES(901342,331,'8/22/2015 17:22','Embarcadero at Folsom',51,'8/22/2015 17:28','2nd at Townsend',61,401,'Subscriber',94107); +INSERT INTO "trip" VALUES(901343,827,'8/22/2015 17:22','Powell Street BART',39,'8/22/2015 17:36','South Van Ness at Market',66,426,'Customer',83730); +INSERT INTO "trip" VALUES(901344,826,'8/22/2015 17:23','Powell Street BART',39,'8/22/2015 17:36','South Van Ness at Market',66,311,'Customer',84105); +INSERT INTO "trip" VALUES(901345,1039,'8/22/2015 17:23','Embarcadero at Vallejo',48,'8/22/2015 17:40','Powell at Post (Union Square)',71,677,'Customer',37068); +INSERT INTO "trip" VALUES(901346,764,'8/22/2015 17:23','Powell Street BART',39,'8/22/2015 17:36','South Van Ness at Market',66,572,'Customer',84105); +INSERT INTO "trip" VALUES(901347,556,'8/22/2015 17:29','Arena Green / SAP Center',14,'8/22/2015 17:39','Santa Clara at Almaden',4,206,'Subscriber',95113); +INSERT INTO "trip" VALUES(901348,1167,'8/22/2015 17:42','2nd at Townsend',61,'8/22/2015 18:01','Golden Gate at Polk',59,401,'Subscriber',94107); +INSERT INTO "trip" VALUES(901349,340,'8/22/2015 17:43','Market at 10th',67,'8/22/2015 17:49','Market at 4th',76,408,'Subscriber',94108); +INSERT INTO "trip" VALUES(901350,2066,'8/22/2015 17:44','Beale at Market',56,'8/22/2015 18:19','Market at 4th',76,455,'Customer',10027); +INSERT INTO "trip" VALUES(901351,185,'8/22/2015 17:45','Market at 10th',67,'8/22/2015 17:48','Civic Center BART (7th at Market)',72,567,'Customer',94103); +INSERT INTO "trip" VALUES(901352,322,'8/22/2015 17:46','Powell Street BART',39,'8/22/2015 17:52','Market at 10th',67,287,'Subscriber',94107); +INSERT INTO "trip" VALUES(901353,649,'8/22/2015 17:47','5th at Howard',57,'8/22/2015 17:58','Market at 4th',76,445,'Customer','nil'); +INSERT INTO "trip" VALUES(901354,281,'8/22/2015 17:50','Civic Center BART (7th at Market)',72,'8/22/2015 17:54','Market at 10th',67,491,'Customer',94103); +INSERT INTO "trip" VALUES(901355,1372,'8/22/2015 17:50','Embarcadero at Sansome',60,'8/22/2015 18:13','San Francisco Caltrain (Townsend at 4th)',70,598,'Customer',1); +INSERT INTO "trip" VALUES(901356,1347,'8/22/2015 17:50','Embarcadero at Sansome',60,'8/22/2015 18:12','San Francisco Caltrain (Townsend at 4th)',70,632,'Customer',86); +INSERT INTO "trip" VALUES(901357,289,'8/22/2015 17:56','Post at Kearny',47,'8/22/2015 18:00','2nd at South Park',64,623,'Subscriber',94107); +INSERT INTO "trip" VALUES(901358,602,'8/22/2015 18:03','Yerba Buena Center of the Arts (3rd @ Howard)',68,'8/22/2015 18:13','Townsend at 7th',65,540,'Subscriber',94107); +INSERT INTO "trip" VALUES(901359,183,'8/22/2015 18:07','Powell Street BART',39,'8/22/2015 18:10','Civic Center BART (7th at Market)',72,292,'Customer',80020); +INSERT INTO "trip" VALUES(901360,1093,'8/22/2015 18:12','Embarcadero at Sansome',60,'8/22/2015 18:30','Mechanics Plaza (Market at Battery)',75,568,'Customer',77003); +INSERT INTO "trip" VALUES(901361,1078,'8/22/2015 18:13','Embarcadero at Sansome',60,'8/22/2015 18:31','Mechanics Plaza (Market at Battery)',75,878,'Customer',77003); +INSERT INTO "trip" VALUES(901362,535,'8/22/2015 18:20','Market at 4th',76,'8/22/2015 18:29','Beale at Market',56,445,'Customer','nil'); +INSERT INTO "trip" VALUES(901363,641,'8/22/2015 18:24','Grant Avenue at Columbus Avenue',73,'8/22/2015 18:35','Civic Center BART (7th at Market)',72,336,'Subscriber',94133); +INSERT INTO "trip" VALUES(901364,509,'8/22/2015 18:26','San Jose City Hall',10,'8/22/2015 18:34','Santa Clara at Almaden',4,55,'Subscriber',95110); +INSERT INTO "trip" VALUES(901371,1481,'8/22/2015 18:27','2nd at Townsend',61,'8/22/2015 18:52','Embarcadero at Bryant',54,69,'Customer',94403); +INSERT INTO "trip" VALUES(901372,1071,'8/22/2015 18:34','Mechanics Plaza (Market at Battery)',75,'8/22/2015 18:52','Market at 10th',67,568,'Customer',77003); +INSERT INTO "trip" VALUES(901373,1073,'8/22/2015 18:34','Mechanics Plaza (Market at Battery)',75,'8/22/2015 18:52','Market at 10th',67,878,'Customer',77003); +INSERT INTO "trip" VALUES(901374,305,'8/22/2015 18:31','Adobe on Almaden',5,'8/22/2015 18:36','Arena Green / SAP Center',14,308,'Subscriber',95136); +INSERT INTO "trip" VALUES(901375,349,'8/22/2015 18:40','South Van Ness at Market',66,'8/22/2015 18:45','Powell Street BART',39,579,'Customer',94401); +INSERT INTO "trip" VALUES(901376,676,'8/22/2015 18:40','Washington at Kearny',46,'8/22/2015 18:52','2nd at Townsend',61,379,'Subscriber',94133); +INSERT INTO "trip" VALUES(901377,426,'8/22/2015 18:46','Market at 4th',76,'8/22/2015 18:53','Howard at 2nd',63,408,'Customer','nil'); +INSERT INTO "trip" VALUES(901378,1005,'8/22/2015 18:50','South Van Ness at Market',66,'8/22/2015 19:07','San Francisco Caltrain 2 (330 Townsend)',69,573,'Subscriber',94117); +INSERT INTO "trip" VALUES(901379,780,'8/22/2015 18:50','Embarcadero at Sansome',60,'8/22/2015 19:03','Harry Bridges Plaza (Ferry Building)',50,389,'Subscriber',94107); +INSERT INTO "trip" VALUES(901380,761,'8/22/2015 18:51','Embarcadero at Sansome',60,'8/22/2015 19:03','Harry Bridges Plaza (Ferry Building)',50,581,'Subscriber',94107); +INSERT INTO "trip" VALUES(901382,1326,'8/22/2015 18:54','Embarcadero at Sansome',60,'8/22/2015 19:16','Embarcadero at Sansome',60,569,'Customer',21231); +INSERT INTO "trip" VALUES(901383,1329,'8/22/2015 18:54','Embarcadero at Sansome',60,'8/22/2015 19:16','Embarcadero at Sansome',60,533,'Customer',21231); +INSERT INTO "trip" VALUES(901384,149,'8/22/2015 18:56','Yerba Buena Center of the Arts (3rd @ Howard)',68,'8/22/2015 18:59','Market at 4th',76,500,'Subscriber',94107); +INSERT INTO "trip" VALUES(901385,293,'8/22/2015 19:01','California Ave Caltrain Station',36,'8/22/2015 19:06','Park at Olive',38,194,'Customer',60563); +INSERT INTO "trip" VALUES(901386,247,'8/22/2015 19:03','Howard at 2nd',63,'8/22/2015 19:07','Steuart at Market',74,408,'Customer','nil'); +INSERT INTO "trip" VALUES(901387,1902,'8/22/2015 19:07','Park at Olive',38,'8/22/2015 19:38','Rengstorff Avenue / California Street',33,194,'Customer',60563); +INSERT INTO "trip" VALUES(901388,505,'8/22/2015 19:10','Powell Street BART',39,'8/22/2015 19:18','San Francisco Caltrain (Townsend at 4th)',70,579,'Customer',94401); +INSERT INTO "trip" VALUES(901389,360,'8/22/2015 19:13','Rengstorff Avenue / California Street',33,'8/22/2015 19:19','San Antonio Caltrain Station',29,123,'Subscriber',94040); +INSERT INTO "trip" VALUES(901390,194,'8/22/2015 19:20','Grant Avenue at Columbus Avenue',73,'8/22/2015 19:23','Clay at Battery',41,587,'Subscriber',94133); +INSERT INTO "trip" VALUES(901391,1038,'8/22/2015 19:27','Embarcadero at Sansome',60,'8/22/2015 19:44','Washington at Kearny',46,325,'Customer',21231); +INSERT INTO "trip" VALUES(901392,1039,'8/22/2015 19:27','Embarcadero at Sansome',60,'8/22/2015 19:44','Washington at Kearny',46,67,'Customer',21231); +INSERT INTO "trip" VALUES(901393,309,'8/22/2015 19:34','San Francisco Caltrain 2 (330 Townsend)',69,'8/22/2015 19:39','Townsend at 7th',65,425,'Customer',98109); +INSERT INTO "trip" VALUES(901394,288,'8/22/2015 19:34','San Francisco Caltrain 2 (330 Townsend)',69,'8/22/2015 19:39','Townsend at 7th',65,541,'Customer',98109); +INSERT INTO "trip" VALUES(901395,414,'8/22/2015 19:36','Harry Bridges Plaza (Ferry Building)',50,'8/22/2015 19:42','Embarcadero at Sansome',60,483,'Customer','nil'); +INSERT INTO "trip" VALUES(901396,542,'8/22/2015 19:54','San Francisco Caltrain (Townsend at 4th)',70,'8/22/2015 20:03','Yerba Buena Center of the Arts (3rd @ Howard)',68,651,'Customer',86); +INSERT INTO "trip" VALUES(901397,526,'8/22/2015 19:55','San Francisco Caltrain (Townsend at 4th)',70,'8/22/2015 20:03','Yerba Buena Center of the Arts (3rd @ Howard)',68,317,'Customer',1); +INSERT INTO "trip" VALUES(901398,608,'8/22/2015 19:58','2nd at Townsend',61,'8/22/2015 20:08','5th at Howard',57,379,'Subscriber',94107); +INSERT INTO "trip" VALUES(901400,573,'8/22/2015 19:58','2nd at Townsend',61,'8/22/2015 20:08','5th at Howard',57,510,'Subscriber',94043); +INSERT INTO "trip" VALUES(901401,821,'8/22/2015 20:17','Grant Avenue at Columbus Avenue',73,'8/22/2015 20:30','Market at 4th',76,347,'Customer',21231); +INSERT INTO "trip" VALUES(901402,811,'8/22/2015 20:17','Grant Avenue at Columbus Avenue',73,'8/22/2015 20:30','Market at 4th',76,383,'Customer',21231); +INSERT INTO "trip" VALUES(901403,665,'8/22/2015 20:20','2nd at South Park',64,'8/22/2015 20:32','Powell at Post (Union Square)',71,628,'Subscriber',94107); +INSERT INTO "trip" VALUES(901404,444,'8/22/2015 20:36','Powell Street BART',39,'8/22/2015 20:43','South Van Ness at Market',66,309,'Customer',21231); +INSERT INTO "trip" VALUES(901405,438,'8/22/2015 20:36','Powell Street BART',39,'8/22/2015 20:43','South Van Ness at Market',66,403,'Customer',21231); +INSERT INTO "trip" VALUES(901406,7063,'8/22/2015 20:37','MLK Library',11,'8/22/2015 22:35','MLK Library',11,676,'Customer','nil'); +INSERT INTO "trip" VALUES(901407,1005,'8/22/2015 20:42','Market at 4th',76,'8/22/2015 20:58','San Francisco Caltrain (Townsend at 4th)',70,582,'Customer',1); +INSERT INTO "trip" VALUES(901408,974,'8/22/2015 20:42','Market at 4th',76,'8/22/2015 20:58','San Francisco Caltrain (Townsend at 4th)',70,455,'Customer',86); +INSERT INTO "trip" VALUES(901409,1044,'8/22/2015 20:46','San Francisco Caltrain (Townsend at 4th)',70,'8/22/2015 21:04','Market at 10th',67,574,'Subscriber',94306); +INSERT INTO "trip" VALUES(901410,681,'8/22/2015 20:57','Civic Center BART (7th at Market)',72,'8/22/2015 21:08','Market at 10th',67,567,'Subscriber',94114); +INSERT INTO "trip" VALUES(901411,930,'8/22/2015 21:04','Golden Gate at Polk',59,'8/22/2015 21:20','2nd at Townsend',61,401,'Subscriber',94107); +INSERT INTO "trip" VALUES(901412,162,'8/22/2015 21:06','Embarcadero at Vallejo',48,'8/22/2015 21:08','Steuart at Market',74,66,'Subscriber',94608); +INSERT INTO "trip" VALUES(901413,887,'8/22/2015 21:24','Embarcadero at Sansome',60,'8/22/2015 21:39','Powell at Post (Union Square)',71,483,'Customer','nil'); +INSERT INTO "trip" VALUES(901414,498,'8/22/2015 21:31','San Antonio Caltrain Station',29,'8/22/2015 21:39','Rengstorff Avenue / California Street',33,118,'Customer',94306); +INSERT INTO "trip" VALUES(901415,414,'8/22/2015 21:32','San Antonio Caltrain Station',29,'8/22/2015 21:38','Rengstorff Avenue / California Street',33,683,'Customer',94306); +INSERT INTO "trip" VALUES(901416,188,'8/22/2015 21:37','Townsend at 7th',65,'8/22/2015 21:40','San Francisco Caltrain 2 (330 Townsend)',69,327,'Customer',21231); +INSERT INTO "trip" VALUES(901417,211,'8/22/2015 21:37','Townsend at 7th',65,'8/22/2015 21:40','San Francisco Caltrain 2 (330 Townsend)',69,508,'Customer',21231); +INSERT INTO "trip" VALUES(901418,217,'8/22/2015 21:45','Harry Bridges Plaza (Ferry Building)',50,'8/22/2015 21:49','Temporary Transbay Terminal (Howard at Beale)',55,382,'Subscriber',94130); +INSERT INTO "trip" VALUES(901419,495,'8/22/2015 21:48','5th at Howard',57,'8/22/2015 21:56','Townsend at 7th',65,494,'Subscriber',94107); +INSERT INTO "trip" VALUES(901420,142,'8/22/2015 21:54','Market at 4th',76,'8/22/2015 21:56','Post at Kearny',47,315,'Subscriber',94107); +INSERT INTO "trip" VALUES(901421,771,'8/22/2015 21:58','San Jose Diridon Caltrain Station',2,'8/22/2015 22:11','St James Park',13,643,'Subscriber',97214); +INSERT INTO "trip" VALUES(901422,673,'8/22/2015 22:16','Steuart at Market',74,'8/22/2015 22:27','San Francisco Caltrain (Townsend at 4th)',70,66,'Subscriber',94158); +INSERT INTO "trip" VALUES(901423,394,'8/22/2015 22:17','South Van Ness at Market',66,'8/22/2015 22:24','Powell Street BART',39,309,'Customer',83730); +INSERT INTO "trip" VALUES(901424,375,'8/22/2015 22:18','South Van Ness at Market',66,'8/22/2015 22:24','Powell Street BART',39,326,'Customer',83730); +INSERT INTO "trip" VALUES(901425,378,'8/22/2015 22:18','South Van Ness at Market',66,'8/22/2015 22:24','Powell Street BART',39,492,'Customer',84105); +INSERT INTO "trip" VALUES(901426,351,'8/22/2015 22:18','South Van Ness at Market',66,'8/22/2015 22:24','Powell Street BART',39,485,'Customer',84105); +INSERT INTO "trip" VALUES(901427,690,'8/22/2015 22:25','Civic Center BART (7th at Market)',72,'8/22/2015 22:36','Grant Avenue at Columbus Avenue',73,336,'Subscriber',94133); +INSERT INTO "trip" VALUES(901428,1079,'8/22/2015 22:33','Market at 4th',76,'8/22/2015 22:51','Grant Avenue at Columbus Avenue',73,383,'Customer','nil'); +INSERT INTO "trip" VALUES(901429,644,'8/22/2015 22:38','Powell at Post (Union Square)',71,'8/22/2015 22:48','Temporary Transbay Terminal (Howard at Beale)',55,628,'Subscriber',94107); +INSERT INTO "trip" VALUES(901430,1211,'8/22/2015 22:42','South Van Ness at Market',66,'8/22/2015 23:03','Embarcadero at Sansome',60,403,'Subscriber',94133); +INSERT INTO "trip" VALUES(901431,364,'8/22/2015 22:43','San Francisco Caltrain 2 (330 Townsend)',69,'8/22/2015 22:49','5th at Howard',57,355,'Subscriber',94107); +INSERT INTO "trip" VALUES(901432,162,'8/22/2015 22:44','Market at 10th',67,'8/22/2015 22:47','South Van Ness at Market',66,590,'Customer',80020); +INSERT INTO "trip" VALUES(901433,1129,'8/22/2015 22:44','South Van Ness at Market',66,'8/22/2015 23:03','Embarcadero at Sansome',60,212,'Subscriber',94133); +INSERT INTO "trip" VALUES(901434,477,'8/22/2015 23:31','Steuart at Market',74,'8/22/2015 23:39','2nd at Townsend',61,635,'Subscriber',94107); +INSERT INTO "trip" VALUES(901435,658,'8/22/2015 23:33','Market at 4th',76,'8/22/2015 23:44','Harry Bridges Plaza (Ferry Building)',50,343,'Customer',94103); +INSERT INTO "trip" VALUES(901436,477,'8/22/2015 23:49','Harry Bridges Plaza (Ferry Building)',50,'8/22/2015 23:57','Harry Bridges Plaza (Ferry Building)',50,343,'Customer',94103); +INSERT INTO "trip" VALUES(901437,187,'8/23/2015 0:03','San Francisco Caltrain 2 (330 Townsend)',69,'8/23/2015 0:07','Townsend at 7th',65,354,'Subscriber',94118); +INSERT INTO "trip" VALUES(901438,147,'8/23/2015 0:26','South Van Ness at Market',66,'8/23/2015 0:29','Market at 10th',67,590,'Customer',80020); +INSERT INTO "trip" VALUES(901439,368,'8/23/2015 0:36','Market at 10th',67,'8/23/2015 0:42','5th at Howard',57,568,'Subscriber',94103); +INSERT INTO "trip" VALUES(901440,784,'8/23/2015 1:25','Spear at Folsom',49,'8/23/2015 1:38','Powell Street BART',39,238,'Subscriber',94102); +INSERT INTO "trip" VALUES(901441,234,'8/23/2015 2:16','San Francisco Caltrain 2 (330 Townsend)',69,'8/23/2015 2:20','Townsend at 7th',65,327,'Subscriber',94107); +INSERT INTO "trip" VALUES(901443,904,'8/23/2015 3:23','Embarcadero at Bryant',54,'8/23/2015 3:38','Powell at Post (Union Square)',71,624,'Subscriber',94103); +INSERT INTO "trip" VALUES(901444,862,'8/23/2015 5:33','Townsend at 7th',65,'8/23/2015 5:47','Howard at 2nd',63,494,'Subscriber',94107); +INSERT INTO "trip" VALUES(901445,5932,'8/23/2015 5:57','San Francisco Caltrain (Townsend at 4th)',70,'8/23/2015 7:36','San Francisco Caltrain (Townsend at 4th)',70,592,'Customer',1420); +INSERT INTO "trip" VALUES(901446,318,'8/23/2015 6:07','Market at 10th',67,'8/23/2015 6:12','Market at 4th',76,567,'Subscriber',94102); +INSERT INTO "trip" VALUES(901447,215,'8/23/2015 6:15','Embarcadero at Bryant',54,'8/23/2015 6:19','2nd at Townsend',61,459,'Subscriber',94122); +INSERT INTO "trip" VALUES(901448,1495,'8/23/2015 7:03','Powell at Post (Union Square)',71,'8/23/2015 7:28','2nd at Townsend',61,530,'Customer',94107); +INSERT INTO "trip" VALUES(901449,2072,'8/23/2015 7:16','Market at 4th',76,'8/23/2015 7:50','Market at 4th',76,347,'Customer',95661); +INSERT INTO "trip" VALUES(901453,375,'8/23/2015 7:43','Embarcadero at Bryant',54,'8/23/2015 7:49','San Francisco Caltrain (Townsend at 4th)',70,631,'Subscriber',94105); +INSERT INTO "trip" VALUES(901455,8286,'8/23/2015 7:51','Clay at Battery',41,'8/23/2015 10:09','Clay at Battery',41,570,'Customer',95746); +INSERT INTO "trip" VALUES(901456,404,'8/23/2015 7:52','Howard at 2nd',63,'8/23/2015 7:58','San Francisco Caltrain 2 (330 Townsend)',69,494,'Subscriber',94107); +INSERT INTO "trip" VALUES(901457,1058,'8/23/2015 7:53','Market at 4th',76,'8/23/2015 8:11','Howard at 2nd',63,187,'Subscriber',94107); +INSERT INTO "trip" VALUES(901458,249,'8/23/2015 8:08','2nd at Townsend',61,'8/23/2015 8:13','Embarcadero at Bryant',54,459,'Subscriber',94122); +INSERT INTO "trip" VALUES(901459,205,'8/23/2015 8:18','Spear at Folsom',49,'8/23/2015 8:21','Steuart at Market',74,268,'Subscriber',94105); +INSERT INTO "trip" VALUES(901460,804,'8/23/2015 8:27','Embarcadero at Bryant',54,'8/23/2015 8:40','Embarcadero at Sansome',60,270,'Subscriber',94105); +INSERT INTO "trip" VALUES(901461,582,'8/23/2015 8:36','Temporary Transbay Terminal (Howard at Beale)',55,'8/23/2015 8:46','Civic Center BART (7th at Market)',72,335,'Subscriber',94103); +INSERT INTO "trip" VALUES(901462,211,'8/23/2015 8:38','Market at Sansome',77,'8/23/2015 8:42','2nd at Folsom',62,498,'Subscriber',94606); +INSERT INTO "trip" VALUES(901466,592,'8/23/2015 8:45','Clay at Battery',41,'8/23/2015 8:55','Harry Bridges Plaza (Ferry Building)',50,371,'Customer','nil'); +INSERT INTO "trip" VALUES(901467,557,'8/23/2015 8:45','Clay at Battery',41,'8/23/2015 8:54','Harry Bridges Plaza (Ferry Building)',50,587,'Customer','nil'); +INSERT INTO "trip" VALUES(901468,635,'8/23/2015 8:46','Embarcadero at Bryant',54,'8/23/2015 8:57','Embarcadero at Sansome',60,423,'Subscriber',94107); +INSERT INTO "trip" VALUES(901470,3060,'8/23/2015 8:57','Harry Bridges Plaza (Ferry Building)',50,'8/23/2015 9:48','Harry Bridges Plaza (Ferry Building)',50,343,'Customer',92688); +INSERT INTO "trip" VALUES(901471,600,'8/23/2015 9:07','Civic Center BART (7th at Market)',72,'8/23/2015 9:17','Temporary Transbay Terminal (Howard at Beale)',55,335,'Subscriber',94103); +INSERT INTO "trip" VALUES(901472,1964,'8/23/2015 9:16','Temporary Transbay Terminal (Howard at Beale)',55,'8/23/2015 9:49','Embarcadero at Sansome',60,512,'Customer',85937); +INSERT INTO "trip" VALUES(901473,850,'8/23/2015 9:20','Powell at Post (Union Square)',71,'8/23/2015 9:34','Market at 10th',67,267,'Customer',92067); +INSERT INTO "trip" VALUES(901474,804,'8/23/2015 9:21','Powell at Post (Union Square)',71,'8/23/2015 9:34','Market at 10th',67,563,'Customer',92067); +INSERT INTO "trip" VALUES(901478,3451,'8/23/2015 9:39','Palo Alto Caltrain Station',34,'8/23/2015 10:37','University and Emerson',35,716,'Customer',90017); +INSERT INTO "trip" VALUES(901479,3437,'8/23/2015 9:40','Palo Alto Caltrain Station',34,'8/23/2015 10:37','University and Emerson',35,110,'Customer',90017); +INSERT INTO "trip" VALUES(901480,214,'8/23/2015 9:41','Spear at Folsom',49,'8/23/2015 9:44','2nd at Folsom',62,558,'Subscriber',94105); +INSERT INTO "trip" VALUES(901481,241,'8/23/2015 9:42','Powell at Post (Union Square)',71,'8/23/2015 9:46','Beale at Market',56,361,'Subscriber',94109); +INSERT INTO "trip" VALUES(901482,400,'8/23/2015 9:42','Embarcadero at Sansome',60,'8/23/2015 9:49','Steuart at Market',74,569,'Subscriber',94111); +INSERT INTO "trip" VALUES(901489,1281,'8/23/2015 9:53','Mountain View City Hall',27,'8/23/2015 10:14','Mountain View City Hall',27,12,'Subscriber',94041); +INSERT INTO "trip" VALUES(901490,653,'8/23/2015 9:54','Temporary Transbay Terminal (Howard at Beale)',55,'8/23/2015 10:05','Washington at Kearny',46,404,'Subscriber',94705); +INSERT INTO "trip" VALUES(901491,429,'8/23/2015 9:57','Market at Sansome',77,'8/23/2015 10:04','Harry Bridges Plaza (Ferry Building)',50,358,'Customer',63122); +INSERT INTO "trip" VALUES(901492,415,'8/23/2015 9:57','Market at Sansome',77,'8/23/2015 10:04','Harry Bridges Plaza (Ferry Building)',50,621,'Customer',63122); +INSERT INTO "trip" VALUES(901493,520,'8/23/2015 9:58','Powell at Post (Union Square)',71,'8/23/2015 10:07','Embarcadero at Sansome',60,483,'Subscriber',94108); +INSERT INTO "trip" VALUES(901494,651,'8/23/2015 10:04','Howard at 2nd',63,'8/23/2015 10:15','Harry Bridges Plaza (Ferry Building)',50,187,'Subscriber',94107); +INSERT INTO "trip" VALUES(901495,2384,'8/23/2015 10:08','University and Emerson',35,'8/23/2015 10:48','University and Emerson',35,27,'Customer',123007); +INSERT INTO "trip" VALUES(901496,181,'8/23/2015 10:13','2nd at Folsom',62,'8/23/2015 10:16','Yerba Buena Center of the Arts (3rd @ Howard)',68,470,'Subscriber',94107); +INSERT INTO "trip" VALUES(901497,750,'8/23/2015 10:13','University and Emerson',35,'8/23/2015 10:26','University and Emerson',35,253,'Customer',94301); +INSERT INTO "trip" VALUES(901498,306,'8/23/2015 10:14','Davis at Jackson',42,'8/23/2015 10:19','Embarcadero at Sansome',60,342,'Subscriber',94111); +INSERT INTO "trip" VALUES(901499,465,'8/23/2015 10:18','San Pedro Square',6,'8/23/2015 10:26','San Jose Diridon Caltrain Station',2,250,'Subscriber',95112); +INSERT INTO "trip" VALUES(901500,499,'8/23/2015 10:18','San Pedro Square',6,'8/23/2015 10:26','San Jose Diridon Caltrain Station',2,82,'Subscriber',95112); +INSERT INTO "trip" VALUES(901503,124,'8/23/2015 10:23','Embarcadero at Folsom',51,'8/23/2015 10:25','Embarcadero at Folsom',51,419,'Customer',94549); +INSERT INTO "trip" VALUES(901504,18593,'8/23/2015 10:23','Embarcadero at Folsom',51,'8/23/2015 15:33','Steuart at Market',74,386,'Customer',94549); +INSERT INTO "trip" VALUES(901505,334,'8/23/2015 10:18','Embarcadero at Sansome',60,'8/23/2015 10:24','Washington at Kearny',46,512,'Subscriber',94111); +INSERT INTO "trip" VALUES(901506,346,'8/23/2015 10:18','Embarcadero at Sansome',60,'8/23/2015 10:24','Washington at Kearny',46,533,'Subscriber',94111); +INSERT INTO "trip" VALUES(901507,920,'8/23/2015 10:23','Powell at Post (Union Square)',71,'8/23/2015 10:39','Harry Bridges Plaza (Ferry Building)',50,400,'Customer',39); +INSERT INTO "trip" VALUES(901508,914,'8/23/2015 10:24','Powell at Post (Union Square)',71,'8/23/2015 10:39','Harry Bridges Plaza (Ferry Building)',50,608,'Customer',39); +INSERT INTO "trip" VALUES(901511,471,'8/23/2015 10:25','2nd at Townsend',61,'8/23/2015 10:33','Townsend at 7th',65,401,'Subscriber',94107); +INSERT INTO "trip" VALUES(901512,18458,'8/23/2015 10:27','Embarcadero at Folsom',51,'8/23/2015 15:34','Steuart at Market',74,531,'Customer',94549); +INSERT INTO "trip" VALUES(901513,752,'8/23/2015 10:33','Spear at Folsom',49,'8/23/2015 10:46','San Francisco Caltrain (Townsend at 4th)',70,214,'Customer',10001); +INSERT INTO "trip" VALUES(901514,551,'8/23/2015 10:34','Powell Street BART',39,'8/23/2015 10:44','San Francisco Caltrain (Townsend at 4th)',70,309,'Subscriber',2780); +INSERT INTO "trip" VALUES(901515,890,'8/23/2015 10:35','Harry Bridges Plaza (Ferry Building)',50,'8/23/2015 10:50','Powell Street BART',39,621,'Customer','nil'); +INSERT INTO "trip" VALUES(901516,832,'8/23/2015 10:35','Harry Bridges Plaza (Ferry Building)',50,'8/23/2015 10:49','Powell Street BART',39,371,'Customer','nil'); +INSERT INTO "trip" VALUES(901517,349,'8/23/2015 10:41','Powell at Post (Union Square)',71,'8/23/2015 10:46','Post at Kearny',47,622,'Customer',60137); +INSERT INTO "trip" VALUES(901518,330,'8/23/2015 10:41','Powell at Post (Union Square)',71,'8/23/2015 10:46','Post at Kearny',47,362,'Customer',60137); +INSERT INTO "trip" VALUES(901519,547,'8/23/2015 10:41','Harry Bridges Plaza (Ferry Building)',50,'8/23/2015 10:50','Embarcadero at Sansome',60,358,'Customer',63122); +INSERT INTO "trip" VALUES(901520,482,'8/23/2015 10:41','Harry Bridges Plaza (Ferry Building)',50,'8/23/2015 10:49','Embarcadero at Sansome',60,400,'Customer',63122); +INSERT INTO "trip" VALUES(901521,350,'8/23/2015 10:42','Embarcadero at Sansome',60,'8/23/2015 10:48','Davis at Jackson',42,270,'Subscriber',94105); +INSERT INTO "trip" VALUES(901522,296,'8/23/2015 10:46','Grant Avenue at Columbus Avenue',73,'8/23/2015 10:51','Embarcadero at Sansome',60,383,'Subscriber',94111); +INSERT INTO "trip" VALUES(901523,286,'8/23/2015 10:46','Grant Avenue at Columbus Avenue',73,'8/23/2015 10:51','Embarcadero at Sansome',60,468,'Subscriber',94111); +INSERT INTO "trip" VALUES(901524,1561,'8/23/2015 10:47','Post at Kearny',47,'8/23/2015 11:13','Harry Bridges Plaza (Ferry Building)',50,538,'Customer',60137); +INSERT INTO "trip" VALUES(901525,1547,'8/23/2015 10:47','Post at Kearny',47,'8/23/2015 11:13','Harry Bridges Plaza (Ferry Building)',50,514,'Customer',60137); +INSERT INTO "trip" VALUES(901526,564,'8/23/2015 10:47','Embarcadero at Sansome',60,'8/23/2015 10:57','Embarcadero at Bryant',54,423,'Subscriber',94107); +INSERT INTO "trip" VALUES(901527,782,'8/23/2015 10:49','Harry Bridges Plaza (Ferry Building)',50,'8/23/2015 11:02','Market at 4th',76,343,'Subscriber',94107); +INSERT INTO "trip" VALUES(901528,625,'8/23/2015 10:55','Davis at Jackson',42,'8/23/2015 11:05','Embarcadero at Bryant',54,270,'Subscriber',94105); +INSERT INTO "trip" VALUES(901529,6000,'8/23/2015 10:56','San Francisco City Hall',58,'8/23/2015 12:36','Embarcadero at Sansome',60,284,'Customer',8500); +INSERT INTO "trip" VALUES(901530,1123,'8/23/2015 10:57','Davis at Jackson',42,'8/23/2015 11:16','Townsend at 7th',65,461,'Customer',8844); +INSERT INTO "trip" VALUES(901531,772,'8/23/2015 10:57','Powell Street BART',39,'8/23/2015 11:10','South Van Ness at Market',66,238,'Customer',46); +INSERT INTO "trip" VALUES(901532,28178,'8/23/2015 10:58','Grant Avenue at Columbus Avenue',73,'8/23/2015 18:47','Grant Avenue at Columbus Avenue',73,336,'Customer',5411); +INSERT INTO "trip" VALUES(901533,5839,'8/23/2015 10:59','San Francisco City Hall',58,'8/23/2015 12:36','Embarcadero at Sansome',60,619,'Customer',8700); +INSERT INTO "trip" VALUES(901534,5730,'8/23/2015 11:02','San Francisco City Hall',58,'8/23/2015 12:37','Embarcadero at Sansome',60,437,'Customer',8860); +INSERT INTO "trip" VALUES(901535,450,'8/23/2015 11:03','Market at 4th',76,'8/23/2015 11:10','Powell at Post (Union Square)',71,322,'Subscriber',94107); +INSERT INTO "trip" VALUES(901537,5370,'8/23/2015 11:06','Harry Bridges Plaza (Ferry Building)',50,'8/23/2015 12:36','Harry Bridges Plaza (Ferry Building)',50,581,'Customer',1746); +INSERT INTO "trip" VALUES(901538,27668,'8/23/2015 11:06','Grant Avenue at Columbus Avenue',73,'8/23/2015 18:47','Grant Avenue at Columbus Avenue',73,547,'Customer','nil'); +INSERT INTO "trip" VALUES(901539,5325,'8/23/2015 11:07','Harry Bridges Plaza (Ferry Building)',50,'8/23/2015 12:36','Harry Bridges Plaza (Ferry Building)',50,389,'Customer',1746); +INSERT INTO "trip" VALUES(901540,684,'8/23/2015 11:13','Powell Street BART',39,'8/23/2015 11:24','Clay at Battery',41,621,'Customer','nil'); +INSERT INTO "trip" VALUES(901541,687,'8/23/2015 11:13','Powell Street BART',39,'8/23/2015 11:24','Clay at Battery',41,603,'Customer','nil'); +INSERT INTO "trip" VALUES(901542,1067,'8/23/2015 11:14','Harry Bridges Plaza (Ferry Building)',50,'8/23/2015 11:32','Embarcadero at Sansome',60,538,'Customer',60137); +INSERT INTO "trip" VALUES(901543,1053,'8/23/2015 11:15','Harry Bridges Plaza (Ferry Building)',50,'8/23/2015 11:32','Embarcadero at Sansome',60,514,'Customer',60137); +INSERT INTO "trip" VALUES(901544,367,'8/23/2015 11:15','Commercial at Montgomery',45,'8/23/2015 11:22','2nd at Folsom',62,528,'Subscriber',94133); +INSERT INTO "trip" VALUES(901545,248,'8/23/2015 11:16','Santa Clara at Almaden',4,'8/23/2015 11:20','Arena Green / SAP Center',14,206,'Subscriber',95113); +INSERT INTO "trip" VALUES(901546,705,'8/23/2015 11:16','Harry Bridges Plaza (Ferry Building)',50,'8/23/2015 11:28','Embarcadero at Sansome',60,353,'Customer',39); +INSERT INTO "trip" VALUES(901547,308,'8/23/2015 11:16','Mountain View City Hall',27,'8/23/2015 11:21','Mountain View Caltrain Station',28,197,'Subscriber',94041); +INSERT INTO "trip" VALUES(901548,697,'8/23/2015 11:16','Harry Bridges Plaza (Ferry Building)',50,'8/23/2015 11:28','Embarcadero at Sansome',60,608,'Customer',39); +INSERT INTO "trip" VALUES(901551,190,'8/23/2015 11:30','Powell at Post (Union Square)',71,'8/23/2015 11:33','Market at 4th',76,322,'Subscriber',94107); +INSERT INTO "trip" VALUES(901552,626,'8/23/2015 11:31','Embarcadero at Sansome',60,'8/23/2015 11:41','Market at 4th',76,403,'Subscriber',94111); +INSERT INTO "trip" VALUES(901553,2711,'8/23/2015 11:32','Powell at Post (Union Square)',71,'8/23/2015 12:17','Embarcadero at Sansome',60,677,'Customer',1494); +INSERT INTO "trip" VALUES(901554,2648,'8/23/2015 11:32','Powell at Post (Union Square)',71,'8/23/2015 12:16','Embarcadero at Sansome',60,624,'Customer',1494); +INSERT INTO "trip" VALUES(901555,605,'8/23/2015 11:38','San Francisco Caltrain (Townsend at 4th)',70,'8/23/2015 11:48','2nd at Townsend',61,450,'Subscriber',94401); +INSERT INTO "trip" VALUES(901556,702,'8/23/2015 11:40','Embarcadero at Sansome',60,'8/23/2015 11:51','Harry Bridges Plaza (Ferry Building)',50,538,'Customer',91601); +INSERT INTO "trip" VALUES(901557,661,'8/23/2015 11:40','Embarcadero at Sansome',60,'8/23/2015 11:51','Harry Bridges Plaza (Ferry Building)',50,358,'Subscriber',94133); +INSERT INTO "trip" VALUES(901558,733,'8/23/2015 11:43','Townsend at 7th',65,'8/23/2015 11:56','Powell Street BART',39,540,'Subscriber',94102); +INSERT INTO "trip" VALUES(901559,396,'8/23/2015 11:45','Golden Gate at Polk',59,'8/23/2015 11:52','Market at 4th',76,288,'Subscriber',94102); +INSERT INTO "trip" VALUES(901560,487,'8/23/2015 11:45','Civic Center BART (7th at Market)',72,'8/23/2015 11:54','South Van Ness at Market',66,604,'Customer',77003); +INSERT INTO "trip" VALUES(901561,488,'8/23/2015 11:45','Civic Center BART (7th at Market)',72,'8/23/2015 11:54','South Van Ness at Market',66,516,'Customer',77003); +INSERT INTO "trip" VALUES(901562,1768,'8/23/2015 11:49','Harry Bridges Plaza (Ferry Building)',50,'8/23/2015 12:19','Harry Bridges Plaza (Ferry Building)',50,591,'Customer',94080); +INSERT INTO "trip" VALUES(901563,5860,'8/23/2015 11:50','Embarcadero at Folsom',51,'8/23/2015 13:28','Embarcadero at Folsom',51,482,'Customer',94549); +INSERT INTO "trip" VALUES(901565,4501,'8/23/2015 11:56','South Van Ness at Market',66,'8/23/2015 13:11','Market at 10th',67,516,'Customer',77003); +INSERT INTO "trip" VALUES(901566,4511,'8/23/2015 11:56','South Van Ness at Market',66,'8/23/2015 13:12','Market at 10th',67,604,'Customer',77003); +INSERT INTO "trip" VALUES(901567,858,'8/23/2015 11:57','San Francisco Caltrain 2 (330 Townsend)',69,'8/23/2015 12:11','Harry Bridges Plaza (Ferry Building)',50,359,'Customer','nil'); +INSERT INTO "trip" VALUES(901568,846,'8/23/2015 11:57','San Francisco Caltrain 2 (330 Townsend)',69,'8/23/2015 12:11','Harry Bridges Plaza (Ferry Building)',50,535,'Customer','nil'); +INSERT INTO "trip" VALUES(901569,377,'8/23/2015 11:59','2nd at South Park',64,'8/23/2015 12:05','Post at Kearny',47,623,'Subscriber',94107); +INSERT INTO "trip" VALUES(901572,350,'8/23/2015 12:02','Market at 4th',76,'8/23/2015 12:08','Civic Center BART (7th at Market)',72,288,'Subscriber',94102); +INSERT INTO "trip" VALUES(901573,545,'8/23/2015 12:02','2nd at Townsend',61,'8/23/2015 12:11','Spear at Folsom',49,290,'Customer',10001); +INSERT INTO "trip" VALUES(901583,158,'8/23/2015 12:14','Embarcadero at Folsom',51,'8/23/2015 12:16','Embarcadero at Bryant',54,410,'Subscriber',94105); +INSERT INTO "trip" VALUES(901584,1516,'8/23/2015 12:14','Harry Bridges Plaza (Ferry Building)',50,'8/23/2015 12:39','Harry Bridges Plaza (Ferry Building)',50,312,'Customer',91601); +INSERT INTO "trip" VALUES(901585,1490,'8/23/2015 12:14','Harry Bridges Plaza (Ferry Building)',50,'8/23/2015 12:39','Harry Bridges Plaza (Ferry Building)',50,538,'Subscriber',94133); +INSERT INTO "trip" VALUES(901586,1166,'8/23/2015 12:24','2nd at Townsend',61,'8/23/2015 12:44','Embarcadero at Sansome',60,463,'Customer',94133); +INSERT INTO "trip" VALUES(901587,1151,'8/23/2015 12:25','2nd at Townsend',61,'8/23/2015 12:44','Embarcadero at Sansome',60,363,'Customer',94133); +INSERT INTO "trip" VALUES(901588,1441,'8/23/2015 12:28','San Antonio Shopping Center',31,'8/23/2015 12:52','Castro Street and El Camino Real',32,46,'Customer',94040); +INSERT INTO "trip" VALUES(901589,1433,'8/23/2015 12:28','San Antonio Shopping Center',31,'8/23/2015 12:51','Castro Street and El Camino Real',32,296,'Customer',94040); +INSERT INTO "trip" VALUES(901590,1417,'8/23/2015 12:29','Broadway St at Battery St',82,'8/23/2015 12:53','Harry Bridges Plaza (Ferry Building)',50,548,'Customer',94133); +INSERT INTO "trip" VALUES(901591,1404,'8/23/2015 12:29','Broadway St at Battery St',82,'8/23/2015 12:53','Harry Bridges Plaza (Ferry Building)',50,607,'Customer',94133); +INSERT INTO "trip" VALUES(901592,1548,'8/23/2015 12:30','Townsend at 7th',65,'8/23/2015 12:56','Embarcadero at Vallejo',48,401,'Customer',8844); +INSERT INTO "trip" VALUES(901593,5579,'8/23/2015 12:31','SJSU - San Salvador at 9th',16,'8/23/2015 14:04','SJSU - San Salvador at 9th',16,98,'Customer','nil'); +INSERT INTO "trip" VALUES(901594,133,'8/23/2015 12:31','San Francisco City Hall',58,'8/23/2015 12:33','Golden Gate at Polk',59,409,'Subscriber',94102); +INSERT INTO "trip" VALUES(901595,570,'8/23/2015 12:32','Market at 4th',76,'8/23/2015 12:42','Spear at Folsom',49,403,'Subscriber',94105); +INSERT INTO "trip" VALUES(901596,483,'8/23/2015 12:36','San Antonio Caltrain Station',29,'8/23/2015 12:44','Rengstorff Avenue / California Street',33,123,'Subscriber',2780); +INSERT INTO "trip" VALUES(901598,264,'8/23/2015 12:37','San Francisco Caltrain (Townsend at 4th)',70,'8/23/2015 12:42','2nd at Townsend',61,385,'Subscriber',94107); +INSERT INTO "trip" VALUES(901599,63,'8/23/2015 12:39','Embarcadero at Folsom',51,'8/23/2015 12:40','Embarcadero at Folsom',51,514,'Subscriber',94105); +INSERT INTO "trip" VALUES(901600,367,'8/23/2015 12:40','Powell Street BART',39,'8/23/2015 12:46','Powell Street BART',39,371,'Customer',4226); +INSERT INTO "trip" VALUES(901601,321,'8/23/2015 12:41','Commercial at Montgomery',45,'8/23/2015 12:46','Embarcadero at Sansome',60,394,'Subscriber',94108); +INSERT INTO "trip" VALUES(901602,146,'8/23/2015 12:43','Powell at Post (Union Square)',71,'8/23/2015 12:45','Powell Street BART',39,350,'Subscriber',94108); +INSERT INTO "trip" VALUES(901603,378,'8/23/2015 12:43','Embarcadero at Folsom',51,'8/23/2015 12:49','Yerba Buena Center of the Arts (3rd @ Howard)',68,338,'Subscriber',94105); +INSERT INTO "trip" VALUES(901604,569,'8/23/2015 12:43','Harry Bridges Plaza (Ferry Building)',50,'8/23/2015 12:53','Embarcadero at Sansome',60,538,'Customer',91601); +INSERT INTO "trip" VALUES(901605,530,'8/23/2015 12:44','Harry Bridges Plaza (Ferry Building)',50,'8/23/2015 12:53','Embarcadero at Sansome',60,358,'Subscriber',94133); +INSERT INTO "trip" VALUES(901608,864,'8/23/2015 12:56','Embarcadero at Vallejo',48,'8/23/2015 13:11','Davis at Jackson',42,401,'Customer',8844); +INSERT INTO "trip" VALUES(901609,2070,'8/23/2015 12:57','Embarcadero at Bryant',54,'8/23/2015 13:32','San Francisco City Hall',58,342,'Customer',92629); +INSERT INTO "trip" VALUES(901610,2064,'8/23/2015 12:57','Embarcadero at Bryant',54,'8/23/2015 13:32','San Francisco City Hall',58,402,'Customer',92629); +INSERT INTO "trip" VALUES(901611,263,'8/23/2015 12:59','Powell Street BART',39,'8/23/2015 13:03','Powell at Post (Union Square)',71,350,'Subscriber',94108); +INSERT INTO "trip" VALUES(901612,1841,'8/23/2015 13:01','Embarcadero at Bryant',54,'8/23/2015 13:32','San Francisco City Hall',58,412,'Customer',92651); +INSERT INTO "trip" VALUES(901613,748,'8/23/2015 13:02','Market at 4th',76,'8/23/2015 13:14','San Francisco City Hall',58,500,'Subscriber',94107); +INSERT INTO "trip" VALUES(901614,1794,'8/23/2015 13:02','Embarcadero at Bryant',54,'8/23/2015 13:32','San Francisco City Hall',58,483,'Customer',92651); +INSERT INTO "trip" VALUES(901615,465,'8/23/2015 13:03','Market at 10th',67,'8/23/2015 13:11','Powell Street BART',39,380,'Subscriber',94306); +INSERT INTO "trip" VALUES(901616,327,'8/23/2015 13:07','South Van Ness at Market',66,'8/23/2015 13:13','Civic Center BART (7th at Market)',72,629,'Subscriber',94117); +INSERT INTO "trip" VALUES(901617,337,'8/23/2015 13:08','Market at 10th',67,'8/23/2015 13:14','5th at Howard',57,441,'Subscriber',94103); +INSERT INTO "trip" VALUES(901618,1040,'8/23/2015 13:09','Steuart at Market',74,'8/23/2015 13:26','Steuart at Market',74,569,'Customer',15216); +INSERT INTO "trip" VALUES(901619,784,'8/23/2015 13:17','Harry Bridges Plaza (Ferry Building)',50,'8/23/2015 13:30','Powell Street BART',39,548,'Customer','nil'); +INSERT INTO "trip" VALUES(901620,784,'8/23/2015 13:17','Harry Bridges Plaza (Ferry Building)',50,'8/23/2015 13:30','Powell Street BART',39,359,'Customer','nil'); +INSERT INTO "trip" VALUES(901621,874,'8/23/2015 13:18','Market at 4th',76,'8/23/2015 13:32','Embarcadero at Vallejo',48,343,'Subscriber',94111); +INSERT INTO "trip" VALUES(901622,629,'8/23/2015 13:19','Washington at Kearny',46,'8/23/2015 13:30','Temporary Transbay Terminal (Howard at Beale)',55,404,'Subscriber',94705); +INSERT INTO "trip" VALUES(901623,736,'8/23/2015 13:21','Washington at Kearny',46,'8/23/2015 13:33','Temporary Transbay Terminal (Howard at Beale)',55,512,'Subscriber',94608); +INSERT INTO "trip" VALUES(901624,466,'8/23/2015 13:22','Powell Street BART',39,'8/23/2015 13:30','San Francisco Caltrain 2 (330 Townsend)',69,540,'Subscriber',94107); +INSERT INTO "trip" VALUES(901625,421,'8/23/2015 13:24','Yerba Buena Center of the Arts (3rd @ Howard)',68,'8/23/2015 13:31','2nd at Townsend',61,534,'Subscriber',94105); +INSERT INTO "trip" VALUES(901626,322,'8/23/2015 13:24','SJSU - San Salvador at 9th',16,'8/23/2015 13:29','MLK Library',11,712,'Subscriber',95112); +INSERT INTO "trip" VALUES(901627,297,'8/23/2015 13:32','2nd at Townsend',61,'8/23/2015 13:37','San Francisco Caltrain 2 (330 Townsend)',69,450,'Subscriber',94107); +INSERT INTO "trip" VALUES(901628,304,'8/23/2015 13:41','Howard at 2nd',63,'8/23/2015 13:46','Market at 4th',76,542,'Subscriber',94105); +INSERT INTO "trip" VALUES(901629,1480,'8/23/2015 13:46','Broadway St at Battery St',82,'8/23/2015 14:11','Powell at Post (Union Square)',71,576,'Customer','nil'); +INSERT INTO "trip" VALUES(901630,1493,'8/23/2015 13:46','Broadway St at Battery St',82,'8/23/2015 14:11','Powell at Post (Union Square)',71,495,'Customer','nil'); +INSERT INTO "trip" VALUES(901631,259,'8/23/2015 13:46','Ryland Park',84,'8/23/2015 13:51','Japantown',9,488,'Subscriber',95110); +INSERT INTO "trip" VALUES(901632,1037,'8/23/2015 13:49','Harry Bridges Plaza (Ferry Building)',50,'8/23/2015 14:06','Embarcadero at Vallejo',48,607,'Customer',94133); +INSERT INTO "trip" VALUES(901633,199,'8/23/2015 13:50','San Francisco Caltrain (Townsend at 4th)',70,'8/23/2015 13:53','2nd at Townsend',61,453,'Subscriber',94107); +INSERT INTO "trip" VALUES(901634,970,'8/23/2015 13:50','Harry Bridges Plaza (Ferry Building)',50,'8/23/2015 14:06','Embarcadero at Vallejo',48,187,'Customer',94133); +INSERT INTO "trip" VALUES(901635,3457,'8/23/2015 13:52','University and Emerson',35,'8/23/2015 14:49','University and Emerson',35,253,'Customer',57); +INSERT INTO "trip" VALUES(901636,292,'8/23/2015 13:54','Howard at 2nd',63,'8/23/2015 13:59','Post at Kearny',47,334,'Subscriber',94105); +INSERT INTO "trip" VALUES(901637,296,'8/23/2015 13:54','Howard at 2nd',63,'8/23/2015 13:59','Post at Kearny',47,496,'Subscriber',94105); +INSERT INTO "trip" VALUES(901638,1949,'8/23/2015 13:54','St James Park',13,'8/23/2015 14:27','St James Park',13,14,'Customer',90017); +INSERT INTO "trip" VALUES(901639,1919,'8/23/2015 13:55','St James Park',13,'8/23/2015 14:27','St James Park',13,78,'Customer',90017); +INSERT INTO "trip" VALUES(901640,1369,'8/23/2015 13:56','San Jose Diridon Caltrain Station',2,'8/23/2015 14:19','Japantown',9,38,'Customer',94115); +INSERT INTO "trip" VALUES(901641,515,'8/23/2015 14:00','5th at Howard',57,'8/23/2015 14:08','Market at 10th',67,441,'Subscriber',94103); +INSERT INTO "trip" VALUES(901642,137,'8/23/2015 14:00','2nd at Folsom',62,'8/23/2015 14:03','2nd at Townsend',61,558,'Subscriber',94105); +INSERT INTO "trip" VALUES(901643,1024,'8/23/2015 14:18','Davis at Jackson',42,'8/23/2015 14:35','South Van Ness at Market',66,428,'Subscriber',94111); +INSERT INTO "trip" VALUES(901644,1367,'8/23/2015 14:21','Embarcadero at Sansome',60,'8/23/2015 14:44','Embarcadero at Sansome',60,624,'Customer',98052); +INSERT INTO "trip" VALUES(901645,511,'8/23/2015 14:21','San Francisco Caltrain 2 (330 Townsend)',69,'8/23/2015 14:30','Powell Street BART',39,540,'Subscriber',94107); +INSERT INTO "trip" VALUES(901646,205,'8/23/2015 14:23','2nd at Townsend',61,'8/23/2015 14:26','San Francisco Caltrain 2 (330 Townsend)',69,453,'Subscriber',94107); +INSERT INTO "trip" VALUES(901647,926,'8/23/2015 14:28','Embarcadero at Bryant',54,'8/23/2015 14:44','Harry Bridges Plaza (Ferry Building)',50,137,'Customer',94107); +INSERT INTO "trip" VALUES(901648,415,'8/23/2015 14:29','Embarcadero at Sansome',60,'8/23/2015 14:36','Embarcadero at Folsom',51,363,'Subscriber',94111); +INSERT INTO "trip" VALUES(901649,411,'8/23/2015 14:29','Embarcadero at Sansome',60,'8/23/2015 14:36','Embarcadero at Folsom',51,358,'Subscriber',94111); +INSERT INTO "trip" VALUES(901650,491,'8/23/2015 14:31','San Francisco Caltrain (Townsend at 4th)',70,'8/23/2015 14:39','5th at Howard',57,592,'Customer',85601); +INSERT INTO "trip" VALUES(901651,1359,'8/23/2015 14:33','Steuart at Market',74,'8/23/2015 14:55','Embarcadero at Sansome',60,525,'Customer',94070); +INSERT INTO "trip" VALUES(901652,4072,'8/23/2015 14:33','Powell at Post (Union Square)',71,'8/23/2015 15:41','Powell at Post (Union Square)',71,495,'Customer','nil'); +INSERT INTO "trip" VALUES(901653,4057,'8/23/2015 14:33','Powell at Post (Union Square)',71,'8/23/2015 15:41','Powell at Post (Union Square)',71,576,'Customer','nil'); +INSERT INTO "trip" VALUES(901654,1287,'8/23/2015 14:34','Steuart at Market',74,'8/23/2015 14:56','Embarcadero at Sansome',60,285,'Customer',94070); +INSERT INTO "trip" VALUES(901655,205,'8/23/2015 14:37','Civic Center BART (7th at Market)',72,'8/23/2015 14:41','Powell Street BART',39,56,'Customer',46); +INSERT INTO "trip" VALUES(901656,765,'8/23/2015 14:52','Embarcadero at Bryant',54,'8/23/2015 15:04','Post at Kearny',47,410,'Subscriber',94105); +INSERT INTO "trip" VALUES(901657,661,'8/23/2015 14:52','2nd at South Park',64,'8/23/2015 15:03','Davis at Jackson',42,158,'Subscriber',94107); +INSERT INTO "trip" VALUES(901658,667,'8/23/2015 14:52','2nd at South Park',64,'8/23/2015 15:03','Davis at Jackson',42,329,'Subscriber',94107); +INSERT INTO "trip" VALUES(901659,5343,'8/23/2015 14:52','Franklin at Maple',21,'8/23/2015 16:21','Cowper at University',37,219,'Customer',94063); +INSERT INTO "trip" VALUES(901660,5617,'8/23/2015 14:53','Franklin at Maple',21,'8/23/2015 16:27','University and Emerson',35,649,'Customer',94063); +INSERT INTO "trip" VALUES(901661,556,'8/23/2015 15:04','San Francisco City Hall',58,'8/23/2015 15:13','5th at Howard',57,500,'Subscriber',94107); +INSERT INTO "trip" VALUES(901662,263,'8/23/2015 15:06','Mountain View City Hall',27,'8/23/2015 15:10','Mountain View Caltrain Station',28,48,'Subscriber',95032); +INSERT INTO "trip" VALUES(901663,1028,'8/23/2015 15:09','San Antonio Caltrain Station',29,'8/23/2015 15:26','Mountain View Caltrain Station',28,147,'Subscriber',94040); +INSERT INTO "trip" VALUES(901664,1139,'8/23/2015 15:12','Market at 4th',76,'8/23/2015 15:31','Embarcadero at Vallejo',48,322,'Customer',16509); +INSERT INTO "trip" VALUES(901665,1171,'8/23/2015 15:14','Powell Street BART',39,'8/23/2015 15:34','Grant Avenue at Columbus Avenue',73,56,'Customer',46); +INSERT INTO "trip" VALUES(901666,933,'8/23/2015 15:15','Market at 4th',76,'8/23/2015 15:30','Embarcadero at Vallejo',48,542,'Customer',14020); +INSERT INTO "trip" VALUES(901667,261,'8/23/2015 15:16','Rengstorff Avenue / California Street',33,'8/23/2015 15:20','San Antonio Caltrain Station',29,118,'Subscriber',94041); +INSERT INTO "trip" VALUES(901668,71227,'8/23/2015 15:18','Market at 4th',76,'8/24/2015 11:05','Embarcadero at Sansome',60,347,'Customer',1004); +INSERT INTO "trip" VALUES(901669,4081,'8/23/2015 15:20','Beale at Market',56,'8/23/2015 16:28','Beale at Market',56,361,'Customer',43235); +INSERT INTO "trip" VALUES(901670,807,'8/23/2015 15:30','Harry Bridges Plaza (Ferry Building)',50,'8/23/2015 15:43','San Francisco Caltrain (Townsend at 4th)',70,348,'Subscriber',95035); +INSERT INTO "trip" VALUES(901671,284,'8/23/2015 15:30','Japantown',9,'8/23/2015 15:35','Ryland Park',84,488,'Subscriber',95110); +INSERT INTO "trip" VALUES(901672,94,'8/23/2015 15:34','Post at Kearny',47,'8/23/2015 15:35','Post at Kearny',47,622,'Customer','nil'); +INSERT INTO "trip" VALUES(901674,4839,'8/23/2015 15:40','Evelyn Park and Ride',30,'8/23/2015 17:00','Evelyn Park and Ride',30,141,'Customer',97006); +INSERT INTO "trip" VALUES(901675,4845,'8/23/2015 15:40','Evelyn Park and Ride',30,'8/23/2015 17:00','Evelyn Park and Ride',30,139,'Customer',97006); +INSERT INTO "trip" VALUES(901676,2261,'8/23/2015 15:40','San Francisco Caltrain 2 (330 Townsend)',69,'8/23/2015 16:18','Harry Bridges Plaza (Ferry Building)',50,494,'Subscriber',94107); +INSERT INTO "trip" VALUES(901677,818,'8/23/2015 15:41','Post at Kearny',47,'8/23/2015 15:54','Harry Bridges Plaza (Ferry Building)',50,432,'Customer','nil'); +INSERT INTO "trip" VALUES(901678,2191,'8/23/2015 15:41','San Francisco Caltrain 2 (330 Townsend)',69,'8/23/2015 16:18','Harry Bridges Plaza (Ferry Building)',50,450,'Subscriber',94107); +INSERT INTO "trip" VALUES(901679,866,'8/23/2015 15:42','South Van Ness at Market',66,'8/23/2015 15:56','Temporary Transbay Terminal (Howard at Beale)',55,311,'Subscriber',94118); +INSERT INTO "trip" VALUES(901681,3056,'8/23/2015 15:45','5th at Howard',57,'8/23/2015 16:36','5th at Howard',57,609,'Subscriber',94107); +INSERT INTO "trip" VALUES(901682,844,'8/23/2015 15:52','Civic Center BART (7th at Market)',72,'8/23/2015 16:06','Yerba Buena Center of the Arts (3rd @ Howard)',68,288,'Customer',80020); +INSERT INTO "trip" VALUES(901683,467,'8/23/2015 15:58','Washington at Kearny',46,'8/23/2015 16:06','Harry Bridges Plaza (Ferry Building)',50,504,'Customer',97401); +INSERT INTO "trip" VALUES(901686,733,'8/23/2015 16:08','Clay at Battery',41,'8/23/2015 16:20','Howard at 2nd',63,570,'Subscriber',94107); +INSERT INTO "trip" VALUES(901687,1113,'8/23/2015 16:08','Clay at Battery',41,'8/23/2015 16:27','San Francisco Caltrain (Townsend at 4th)',70,597,'Subscriber',94107); +INSERT INTO "trip" VALUES(901688,656,'8/23/2015 16:15','Townsend at 7th',65,'8/23/2015 16:26','Embarcadero at Bryant',54,425,'Subscriber',94107); +INSERT INTO "trip" VALUES(901689,529,'8/23/2015 16:15','Powell Street BART',39,'8/23/2015 16:24','Howard at 2nd',63,380,'Subscriber',94105); +INSERT INTO "trip" VALUES(901690,508,'8/23/2015 16:16','Powell Street BART',39,'8/23/2015 16:24','Howard at 2nd',63,371,'Subscriber',94105); +INSERT INTO "trip" VALUES(901691,272,'8/23/2015 16:18','Rengstorff Avenue / California Street',33,'8/23/2015 16:22','San Antonio Caltrain Station',29,123,'Subscriber',2780); +INSERT INTO "trip" VALUES(901692,538,'8/23/2015 16:18','Post at Kearny',47,'8/23/2015 16:27','Post at Kearny',47,622,'Customer',95695); +INSERT INTO "trip" VALUES(901693,757,'8/23/2015 16:19','Embarcadero at Folsom',51,'8/23/2015 16:32','San Francisco Caltrain (Townsend at 4th)',70,482,'Customer',97401); +INSERT INTO "trip" VALUES(901694,300,'8/23/2015 16:22','Post at Kearny',47,'8/23/2015 16:27','Post at Kearny',47,623,'Customer',95616); +INSERT INTO "trip" VALUES(901695,966,'8/23/2015 16:23','Mountain View City Hall',27,'8/23/2015 16:39','San Antonio Shopping Center',31,12,'Customer',94040); +INSERT INTO "trip" VALUES(901696,947,'8/23/2015 16:23','Mountain View City Hall',27,'8/23/2015 16:39','San Antonio Shopping Center',31,255,'Customer',94040); +INSERT INTO "trip" VALUES(901700,205,'8/23/2015 16:33','Temporary Transbay Terminal (Howard at Beale)',55,'8/23/2015 16:36','Market at Sansome',77,387,'Subscriber',94063); +INSERT INTO "trip" VALUES(901701,228,'8/23/2015 16:46','Beale at Market',56,'8/23/2015 16:50','Harry Bridges Plaza (Ferry Building)',50,421,'Subscriber',94105); +INSERT INTO "trip" VALUES(901702,251,'8/23/2015 16:50','Market at Sansome',77,'8/23/2015 16:54','Clay at Battery',41,593,'Subscriber',94132); +INSERT INTO "trip" VALUES(901703,566,'8/23/2015 16:53','Davis at Jackson',42,'8/23/2015 17:03','Market at 4th',76,329,'Subscriber',94111); +INSERT INTO "trip" VALUES(901704,433,'8/23/2015 16:54','Embarcadero at Bryant',54,'8/23/2015 17:02','2nd at Townsend',61,270,'Subscriber',94105); +INSERT INTO "trip" VALUES(901705,742,'8/23/2015 16:59','Yerba Buena Center of the Arts (3rd @ Howard)',68,'8/23/2015 17:12','Market at 10th',67,651,'Customer',80020); +INSERT INTO "trip" VALUES(901706,500,'8/23/2015 17:06','Cowper at University',37,'8/23/2015 17:15','Palo Alto Caltrain Station',34,41,'Customer',94063); +INSERT INTO "trip" VALUES(901707,447,'8/23/2015 17:07','Cowper at University',37,'8/23/2015 17:15','Palo Alto Caltrain Station',34,707,'Customer',94063); +INSERT INTO "trip" VALUES(901708,370,'8/23/2015 17:13','2nd at Folsom',62,'8/23/2015 17:19','San Francisco Caltrain (Townsend at 4th)',70,544,'Subscriber',94158); +INSERT INTO "trip" VALUES(901709,841,'8/23/2015 17:16','Market at 10th',67,'8/23/2015 17:30','Davis at Jackson',42,563,'Subscriber',94111); +INSERT INTO "trip" VALUES(901710,3426,'8/23/2015 17:17','Palo Alto Caltrain Station',34,'8/23/2015 18:14','Palo Alto Caltrain Station',34,235,'Customer',94063); +INSERT INTO "trip" VALUES(901711,3399,'8/23/2015 17:17','Palo Alto Caltrain Station',34,'8/23/2015 18:14','Palo Alto Caltrain Station',34,218,'Customer',94063); +INSERT INTO "trip" VALUES(901712,468,'8/23/2015 17:18','Grant Avenue at Columbus Avenue',73,'8/23/2015 17:26','Temporary Transbay Terminal (Howard at Beale)',55,332,'Subscriber',94133); +INSERT INTO "trip" VALUES(901713,1550,'8/23/2015 17:20','Post at Kearny',47,'8/23/2015 17:45','Market at 10th',67,623,'Customer',0); +INSERT INTO "trip" VALUES(901714,388,'8/23/2015 17:20','Market at 10th',67,'8/23/2015 17:27','Market at 4th',76,416,'Subscriber',94102); +INSERT INTO "trip" VALUES(901718,1340,'8/23/2015 17:30','Grant Avenue at Columbus Avenue',73,'8/23/2015 17:52','San Francisco Caltrain (Townsend at 4th)',70,56,'Customer',46); +INSERT INTO "trip" VALUES(901719,353,'8/23/2015 17:30','5th at Howard',57,'8/23/2015 17:36','San Francisco Caltrain 2 (330 Townsend)',69,578,'Customer',94148); +INSERT INTO "trip" VALUES(901722,176,'8/23/2015 17:33','Market at Sansome',77,'8/23/2015 17:36','Temporary Transbay Terminal (Howard at Beale)',55,391,'Subscriber',94117); +INSERT INTO "trip" VALUES(901725,798,'8/23/2015 17:42','Harry Bridges Plaza (Ferry Building)',50,'8/23/2015 17:55','Harry Bridges Plaza (Ferry Building)',50,370,'Subscriber',94107); +INSERT INTO "trip" VALUES(901726,1060,'8/23/2015 17:43','2nd at Folsom',62,'8/23/2015 18:01','Civic Center BART (7th at Market)',72,498,'Customer',94105); +INSERT INTO "trip" VALUES(901727,217,'8/23/2015 17:44','San Francisco Caltrain 2 (330 Townsend)',69,'8/23/2015 17:48','Townsend at 7th',65,585,'Subscriber',94107); +INSERT INTO "trip" VALUES(901728,202,'8/23/2015 17:44','2nd at Townsend',61,'8/23/2015 17:48','San Francisco Caltrain (Townsend at 4th)',70,534,'Subscriber',94107); +INSERT INTO "trip" VALUES(901729,1813,'8/23/2015 17:48','Harry Bridges Plaza (Ferry Building)',50,'8/23/2015 18:18','Embarcadero at Sansome',60,137,'Customer',92109); +INSERT INTO "trip" VALUES(901732,1655,'8/23/2015 17:51','Harry Bridges Plaza (Ferry Building)',50,'8/23/2015 18:18','Embarcadero at Sansome',60,312,'Customer',92128); +INSERT INTO "trip" VALUES(901733,321,'8/23/2015 17:51','Beale at Market',56,'8/23/2015 17:57','Embarcadero at Bryant',54,445,'Subscriber',94105); +INSERT INTO "trip" VALUES(901734,320,'8/23/2015 17:54','Market at 10th',67,'8/23/2015 17:59','Townsend at 7th',65,623,'Subscriber',94103); +INSERT INTO "trip" VALUES(901735,364,'8/23/2015 17:57','Powell at Post (Union Square)',71,'8/23/2015 18:03','Howard at 2nd',63,630,'Subscriber',94105); +INSERT INTO "trip" VALUES(901736,779,'8/23/2015 18:00','Harry Bridges Plaza (Ferry Building)',50,'8/23/2015 18:13','San Francisco Caltrain (Townsend at 4th)',70,421,'Customer','nil'); +INSERT INTO "trip" VALUES(901737,770,'8/23/2015 18:00','Harry Bridges Plaza (Ferry Building)',50,'8/23/2015 18:13','San Francisco Caltrain (Townsend at 4th)',70,535,'Customer','nil'); +INSERT INTO "trip" VALUES(901739,385,'8/23/2015 18:08','Howard at 2nd',63,'8/23/2015 18:14','San Francisco Caltrain (Townsend at 4th)',70,630,'Subscriber',94105); +INSERT INTO "trip" VALUES(901740,250,'8/23/2015 18:08','San Francisco Caltrain (Townsend at 4th)',70,'8/23/2015 18:12','2nd at Townsend',61,631,'Subscriber',94107); +INSERT INTO "trip" VALUES(901741,378,'8/23/2015 18:14','San Francisco Caltrain 2 (330 Townsend)',69,'8/23/2015 18:20','5th at Howard',57,259,'Subscriber',94107); +INSERT INTO "trip" VALUES(901743,634,'8/23/2015 18:19','Embarcadero at Bryant',54,'8/23/2015 18:30','Townsend at 7th',65,425,'Subscriber',94107); +INSERT INTO "trip" VALUES(901744,585,'8/23/2015 18:24','Embarcadero at Sansome',60,'8/23/2015 18:34','Embarcadero at Folsom',51,285,'Customer',2000); +INSERT INTO "trip" VALUES(901749,1459,'8/23/2015 18:47','Embarcadero at Sansome',60,'8/23/2015 19:11','Embarcadero at Vallejo',48,284,'Customer',7604); +INSERT INTO "trip" VALUES(901750,1345,'8/23/2015 18:49','Embarcadero at Sansome',60,'8/23/2015 19:11','Embarcadero at Vallejo',48,137,'Customer','nil'); +INSERT INTO "trip" VALUES(901751,1325,'8/23/2015 18:49','Embarcadero at Sansome',60,'8/23/2015 19:11','Embarcadero at Vallejo',48,212,'Customer','nil'); +INSERT INTO "trip" VALUES(901752,501,'8/23/2015 18:51','Market at 10th',67,'8/23/2015 18:59','Powell Street BART',39,441,'Customer',94103); +INSERT INTO "trip" VALUES(901753,441,'8/23/2015 18:51','Grant Avenue at Columbus Avenue',73,'8/23/2015 18:59','Market at Sansome',77,336,'Subscriber',94133); +INSERT INTO "trip" VALUES(901754,375,'8/23/2015 18:53','Embarcadero at Bryant',54,'8/23/2015 19:00','San Francisco Caltrain (Townsend at 4th)',70,459,'Subscriber',94105); +INSERT INTO "trip" VALUES(901755,1264,'8/23/2015 18:57','Paseo de San Antonio',7,'8/23/2015 19:18','San Jose City Hall',10,71,'Customer',95112); +INSERT INTO "trip" VALUES(901756,663,'8/23/2015 19:04','2nd at Folsom',62,'8/23/2015 19:15','Embarcadero at Sansome',60,606,'Subscriber',94133); +INSERT INTO "trip" VALUES(901757,884,'8/23/2015 19:10','Civic Center BART (7th at Market)',72,'8/23/2015 19:24','Grant Avenue at Columbus Avenue',73,498,'Customer',80020); +INSERT INTO "trip" VALUES(901758,495,'8/23/2015 19:19','Townsend at 7th',65,'8/23/2015 19:27','Market at 10th',67,623,'Subscriber',94103); +INSERT INTO "trip" VALUES(901759,481,'8/23/2015 19:21','Civic Center BART (7th at Market)',72,'8/23/2015 19:30','Market at 10th',67,618,'Customer',94103); +INSERT INTO "trip" VALUES(901760,447,'8/23/2015 19:24','Market at Sansome',77,'8/23/2015 19:31','Grant Avenue at Columbus Avenue',73,422,'Subscriber',94133); +INSERT INTO "trip" VALUES(901761,711,'8/23/2015 19:25','Market at 4th',76,'8/23/2015 19:37','San Francisco Caltrain (Townsend at 4th)',70,416,'Customer',85601); +INSERT INTO "trip" VALUES(901762,1610,'8/23/2015 19:27','San Jose City Hall',10,'8/23/2015 19:54','San Salvador at 1st',8,167,'Customer',95112); +INSERT INTO "trip" VALUES(901763,761,'8/23/2015 19:32','Embarcadero at Folsom',51,'8/23/2015 19:45','Commercial at Montgomery',45,400,'Subscriber',94108); +INSERT INTO "trip" VALUES(901764,556,'8/23/2015 19:33','San Francisco Caltrain (Townsend at 4th)',70,'8/23/2015 19:43','Powell Street BART',39,535,'Subscriber',2780); +INSERT INTO "trip" VALUES(901765,1185,'8/23/2015 19:34','San Francisco Caltrain (Townsend at 4th)',70,'8/23/2015 19:54','Embarcadero at Bryant',54,421,'Subscriber',94105); +INSERT INTO "trip" VALUES(901766,791,'8/23/2015 19:35','Howard at 2nd',63,'8/23/2015 19:48','Embarcadero at Vallejo',48,570,'Subscriber',94105); +INSERT INTO "trip" VALUES(901767,528,'8/23/2015 19:38','Temporary Transbay Terminal (Howard at Beale)',55,'8/23/2015 19:47','Grant Avenue at Columbus Avenue',73,332,'Subscriber',94133); +INSERT INTO "trip" VALUES(901768,1133,'8/23/2015 19:46','San Antonio Shopping Center',31,'8/23/2015 20:05','San Antonio Shopping Center',31,84,'Customer',94040); +INSERT INTO "trip" VALUES(901769,338,'8/23/2015 19:49','Beale at Market',56,'8/23/2015 19:55','Powell at Post (Union Square)',71,328,'Subscriber',94109); +INSERT INTO "trip" VALUES(901772,2595,'8/23/2015 20:01','Cowper at University',37,'8/23/2015 20:44','Franklin at Maple',21,221,'Customer',94063); +INSERT INTO "trip" VALUES(901773,198,'8/23/2015 20:01','Beale at Market',56,'8/23/2015 20:04','Temporary Transbay Terminal (Howard at Beale)',55,361,'Subscriber',94063); +INSERT INTO "trip" VALUES(901774,2468,'8/23/2015 20:02','Cowper at University',37,'8/23/2015 20:43','Franklin at Maple',21,219,'Customer',94063); +INSERT INTO "trip" VALUES(901775,261,'8/23/2015 20:02','St James Park',13,'8/23/2015 20:06','Japantown',9,684,'Subscriber',95112); +INSERT INTO "trip" VALUES(901776,803,'8/23/2015 20:03','Cowper at University',37,'8/23/2015 20:17','Cowper at University',37,230,'Subscriber',94070); +INSERT INTO "trip" VALUES(901778,380,'8/23/2015 20:04','South Van Ness at Market',66,'8/23/2015 20:11','5th at Howard',57,428,'Subscriber',94107); +INSERT INTO "trip" VALUES(901779,259,'8/23/2015 20:05','Broadway St at Battery St',82,'8/23/2015 20:09','Washington at Kearny',46,469,'Subscriber',94107); +INSERT INTO "trip" VALUES(901782,897,'8/23/2015 20:08','Grant Avenue at Columbus Avenue',73,'8/23/2015 20:23','Civic Center BART (7th at Market)',72,498,'Customer',80020); +INSERT INTO "trip" VALUES(901783,1316,'8/23/2015 20:06','Civic Center BART (7th at Market)',72,'8/23/2015 20:28','South Van Ness at Market',66,375,'Subscriber',94103); +INSERT INTO "trip" VALUES(901785,118,'8/23/2015 20:09','Howard at 2nd',63,'8/23/2015 20:11','Market at Sansome',77,373,'Subscriber',94117); +INSERT INTO "trip" VALUES(901786,1026,'8/23/2015 20:15','Powell at Post (Union Square)',71,'8/23/2015 20:32','Harry Bridges Plaza (Ferry Building)',50,495,'Customer',39); +INSERT INTO "trip" VALUES(901787,1017,'8/23/2015 20:15','Powell at Post (Union Square)',71,'8/23/2015 20:32','Harry Bridges Plaza (Ferry Building)',50,576,'Customer',39); +INSERT INTO "trip" VALUES(901788,237,'8/23/2015 20:18','Arena Green / SAP Center',14,'8/23/2015 20:22','Santa Clara at Almaden',4,206,'Subscriber',95113); +INSERT INTO "trip" VALUES(901789,303,'8/23/2015 20:23','Market at 4th',76,'8/23/2015 20:29','San Francisco Caltrain (Townsend at 4th)',70,329,'Subscriber',94105); +INSERT INTO "trip" VALUES(901794,852,'8/23/2015 20:28','South Van Ness at Market',66,'8/23/2015 20:43','Civic Center BART (7th at Market)',72,375,'Subscriber',94103); +INSERT INTO "trip" VALUES(901795,221,'8/23/2015 20:30','2nd at South Park',64,'8/23/2015 20:34','Howard at 2nd',63,546,'Subscriber',94107); +INSERT INTO "trip" VALUES(901796,555,'8/23/2015 20:33','Harry Bridges Plaza (Ferry Building)',50,'8/23/2015 20:42','Embarcadero at Sansome',60,576,'Customer',39); +INSERT INTO "trip" VALUES(901797,550,'8/23/2015 20:33','Harry Bridges Plaza (Ferry Building)',50,'8/23/2015 20:42','Embarcadero at Sansome',60,495,'Customer',39); +INSERT INTO "trip" VALUES(901798,293,'8/23/2015 20:40','San Francisco Caltrain 2 (330 Townsend)',69,'8/23/2015 20:45','Townsend at 7th',65,453,'Subscriber',94107); +INSERT INTO "trip" VALUES(901800,333,'8/23/2015 20:50','Japantown',9,'8/23/2015 20:56','St James Park',13,37,'Subscriber',95112); +INSERT INTO "trip" VALUES(901801,1068,'8/23/2015 20:56','Mountain View Caltrain Station',28,'8/23/2015 21:14','Castro Street and El Camino Real',32,147,'Subscriber',95032); +INSERT INTO "trip" VALUES(901802,1191,'8/23/2015 21:11','Mountain View Caltrain Station',28,'8/23/2015 21:31','San Antonio Caltrain Station',29,48,'Subscriber',94040); +INSERT INTO "trip" VALUES(901803,270,'8/23/2015 21:12','Washington at Kearny',46,'8/23/2015 21:16','Broadway St at Battery St',82,469,'Subscriber',94107); +INSERT INTO "trip" VALUES(901804,245,'8/23/2015 21:21','Embarcadero at Sansome',60,'8/23/2015 21:25','Broadway St at Battery St',82,606,'Subscriber',94102); +INSERT INTO "trip" VALUES(901805,365,'8/23/2015 21:32','San Francisco Caltrain (Townsend at 4th)',70,'8/23/2015 21:38','Embarcadero at Bryant',54,329,'Subscriber',94105); +INSERT INTO "trip" VALUES(901806,842,'8/23/2015 21:33','Mountain View City Hall',27,'8/23/2015 21:47','Rengstorff Avenue / California Street',33,80,'Subscriber',94041); +INSERT INTO "trip" VALUES(901807,668,'8/23/2015 21:44','San Francisco Caltrain (Townsend at 4th)',70,'8/23/2015 21:56','Washington at Kearny',46,66,'Subscriber',94133); +INSERT INTO "trip" VALUES(901808,683,'8/23/2015 21:50','San Francisco Caltrain 2 (330 Townsend)',69,'8/23/2015 22:01','Market at 10th',67,578,'Subscriber',94107); +INSERT INTO "trip" VALUES(901809,582,'8/23/2015 21:55','Market at 4th',76,'8/23/2015 22:04','2nd at Townsend',61,567,'Subscriber',94107); +INSERT INTO "trip" VALUES(901810,338,'8/23/2015 21:57','5th at Howard',57,'8/23/2015 22:03','San Francisco Caltrain 2 (330 Townsend)',69,500,'Subscriber',94107); +INSERT INTO "trip" VALUES(901811,1177,'8/23/2015 22:02','Post at Kearny',47,'8/23/2015 22:21','San Francisco Caltrain (Townsend at 4th)',70,502,'Customer',29204); +INSERT INTO "trip" VALUES(901812,153,'8/23/2015 22:03','Spear at Folsom',49,'8/23/2015 22:06','Temporary Transbay Terminal (Howard at Beale)',55,403,'Subscriber',94105); +INSERT INTO "trip" VALUES(901813,143,'8/23/2015 22:17','Washington at Kearny',46,'8/23/2015 22:19','Grant Avenue at Columbus Avenue',73,465,'Subscriber',94133); +INSERT INTO "trip" VALUES(901814,588,'8/23/2015 22:53','Embarcadero at Sansome',60,'8/23/2015 23:03','Harry Bridges Plaza (Ferry Building)',50,495,'Customer',39); +INSERT INTO "trip" VALUES(901815,581,'8/23/2015 22:53','Embarcadero at Sansome',60,'8/23/2015 23:03','Harry Bridges Plaza (Ferry Building)',50,576,'Customer',39); +INSERT INTO "trip" VALUES(901816,1076,'8/23/2015 23:04','Harry Bridges Plaza (Ferry Building)',50,'8/23/2015 23:22','Powell at Post (Union Square)',71,576,'Customer',39); +INSERT INTO "trip" VALUES(901817,1076,'8/23/2015 23:04','Harry Bridges Plaza (Ferry Building)',50,'8/23/2015 23:22','Powell at Post (Union Square)',71,495,'Customer',39); +INSERT INTO "trip" VALUES(901818,95,'8/23/2015 23:29','Post at Kearny',47,'8/23/2015 23:30','Post at Kearny',47,622,'Subscriber',94104); +INSERT INTO "trip" VALUES(901819,368,'8/23/2015 23:30','Post at Kearny',47,'8/23/2015 23:37','Grant Avenue at Columbus Avenue',73,315,'Subscriber',94104); +INSERT INTO "trip" VALUES(901820,1063,'8/23/2015 23:44','Embarcadero at Sansome',60,'8/24/2015 0:02','Powell at Post (Union Square)',71,383,'Customer',0); +INSERT INTO "trip" VALUES(901821,609,'8/24/2015 0:11','Powell at Post (Union Square)',71,'8/24/2015 0:21','Grant Avenue at Columbus Avenue',73,611,'Customer',0); +INSERT INTO "trip" VALUES(901822,429,'8/24/2015 1:03','Grant Avenue at Columbus Avenue',73,'8/24/2015 1:10','Post at Kearny',47,422,'Subscriber',94104); +INSERT INTO "trip" VALUES(901823,677,'8/24/2015 1:43','Embarcadero at Bryant',54,'8/24/2015 1:54','Powell Street BART',39,69,'Subscriber',94103); +INSERT INTO "trip" VALUES(901824,666,'8/24/2015 4:01','Townsend at 7th',65,'8/24/2015 4:12','Howard at 2nd',63,453,'Subscriber',94107); +INSERT INTO "trip" VALUES(901825,371,'8/24/2015 4:30','Market at 10th',67,'8/24/2015 4:36','Townsend at 7th',65,491,'Subscriber',94102); +INSERT INTO "trip" VALUES(901826,174,'8/24/2015 4:52','2nd at Folsom',62,'8/24/2015 4:55','Market at Sansome',77,528,'Subscriber',94107); +INSERT INTO "trip" VALUES(901827,754,'8/24/2015 4:56','Embarcadero at Bryant',54,'8/24/2015 5:08','Embarcadero at Sansome',60,329,'Subscriber',94105); +INSERT INTO "trip" VALUES(901828,779,'8/24/2015 5:01','Davis at Jackson',42,'8/24/2015 5:14','San Francisco Caltrain (Townsend at 4th)',70,158,'Subscriber',94111); +INSERT INTO "trip" VALUES(901829,256,'8/24/2015 5:11','Grant Avenue at Columbus Avenue',73,'8/24/2015 5:15','Market at Sansome',77,315,'Subscriber',94133); +INSERT INTO "trip" VALUES(901830,642,'8/24/2015 5:33','5th at Howard',57,'8/24/2015 5:43','Steuart at Market',74,355,'Subscriber',94112); +INSERT INTO "trip" VALUES(901831,659,'8/24/2015 5:37','Golden Gate at Polk',59,'8/24/2015 5:48','San Francisco Caltrain 2 (330 Townsend)',69,409,'Subscriber',94107); +INSERT INTO "trip" VALUES(901832,1511,'8/24/2015 5:46','Embarcadero at Sansome',60,'8/24/2015 6:11','San Francisco Caltrain (Townsend at 4th)',70,472,'Subscriber',94111); +INSERT INTO "trip" VALUES(901833,553,'8/24/2015 5:49','San Francisco Caltrain (Townsend at 4th)',70,'8/24/2015 5:58','Market at Sansome',77,636,'Subscriber',94158); +INSERT INTO "trip" VALUES(901834,817,'8/24/2015 5:50','Market at 10th',67,'8/24/2015 6:03','Davis at Jackson',42,578,'Subscriber',94102); +INSERT INTO "trip" VALUES(901835,359,'8/24/2015 5:55','5th at Howard',57,'8/24/2015 6:01','San Francisco Caltrain 2 (330 Townsend)',69,33,'Subscriber',94107); +INSERT INTO "trip" VALUES(901836,431,'8/24/2015 5:56','Market at 10th',67,'8/24/2015 6:03','Market at Sansome',77,420,'Subscriber',94102); +INSERT INTO "trip" VALUES(901837,315,'8/24/2015 6:04','Grant Avenue at Columbus Avenue',73,'8/24/2015 6:09','Market at Sansome',77,538,'Subscriber',94133); +INSERT INTO "trip" VALUES(901838,385,'8/24/2015 6:05','Townsend at 7th',65,'8/24/2015 6:12','2nd at Townsend',61,327,'Subscriber',94107); +INSERT INTO "trip" VALUES(901839,570,'8/24/2015 6:10','Embarcadero at Bryant',54,'8/24/2015 6:19','Townsend at 7th',65,521,'Subscriber',94103); +INSERT INTO "trip" VALUES(901840,397,'8/24/2015 6:10','Temporary Transbay Terminal (Howard at Beale)',55,'8/24/2015 6:17','2nd at Townsend',61,311,'Subscriber',94610); +INSERT INTO "trip" VALUES(901841,614,'8/24/2015 6:13','Powell Street BART',39,'8/24/2015 6:24','San Francisco Caltrain 2 (330 Townsend)',69,535,'Subscriber',94107); +INSERT INTO "trip" VALUES(901842,617,'8/24/2015 6:14','Embarcadero at Sansome',60,'8/24/2015 6:24','2nd at Townsend',61,353,'Subscriber',94111); +INSERT INTO "trip" VALUES(901843,194,'8/24/2015 6:20','2nd at Townsend',61,'8/24/2015 6:24','San Francisco Caltrain 2 (330 Townsend)',69,327,'Subscriber',94107); +INSERT INTO "trip" VALUES(901844,368,'8/24/2015 6:22','Harry Bridges Plaza (Ferry Building)',50,'8/24/2015 6:28','2nd at Folsom',62,432,'Subscriber',94901); +INSERT INTO "trip" VALUES(901845,579,'8/24/2015 6:22','Clay at Battery',41,'8/24/2015 6:31','2nd at Townsend',61,593,'Subscriber',94945); +INSERT INTO "trip" VALUES(901846,590,'8/24/2015 6:24','St James Park',13,'8/24/2015 6:33','San Jose Diridon Caltrain Station',2,643,'Subscriber',97214); +INSERT INTO "trip" VALUES(901847,335,'8/24/2015 6:24','San Pedro Square',6,'8/24/2015 6:29','San Jose Diridon Caltrain Station',2,65,'Subscriber',95110); +INSERT INTO "trip" VALUES(901848,306,'8/24/2015 6:24','Commercial at Montgomery',45,'8/24/2015 6:30','Embarcadero at Sansome',60,189,'Subscriber',94111); +INSERT INTO "trip" VALUES(901849,424,'8/24/2015 6:26','Embarcadero at Sansome',60,'8/24/2015 6:33','Temporary Transbay Terminal (Howard at Beale)',55,329,'Subscriber',94111); +INSERT INTO "trip" VALUES(901850,708,'8/24/2015 6:26','Embarcadero at Folsom',51,'8/24/2015 6:38','Townsend at 7th',65,285,'Subscriber',94501); +INSERT INTO "trip" VALUES(901851,191,'8/24/2015 6:27','Powell at Post (Union Square)',71,'8/24/2015 6:31','Beale at Market',56,328,'Subscriber',94109); +INSERT INTO "trip" VALUES(901852,276,'8/24/2015 6:28','Santa Clara at Almaden',4,'8/24/2015 6:33','San Jose Diridon Caltrain Station',2,30,'Subscriber',95110); +INSERT INTO "trip" VALUES(901853,464,'8/24/2015 6:31','Temporary Transbay Terminal (Howard at Beale)',55,'8/24/2015 6:38','Broadway St at Battery St',82,391,'Subscriber',94610); +INSERT INTO "trip" VALUES(901854,940,'8/24/2015 6:38','Grant Avenue at Columbus Avenue',73,'8/24/2015 6:53','San Francisco Caltrain (Townsend at 4th)',70,332,'Subscriber',94133); +INSERT INTO "trip" VALUES(901855,809,'8/24/2015 6:40','San Francisco Caltrain (Townsend at 4th)',70,'8/24/2015 6:53','Harry Bridges Plaza (Ferry Building)',50,472,'Subscriber',94065); +INSERT INTO "trip" VALUES(901856,384,'8/24/2015 6:41','San Francisco Caltrain (Townsend at 4th)',70,'8/24/2015 6:47','5th at Howard',57,502,'Subscriber',94401); +INSERT INTO "trip" VALUES(901857,928,'8/24/2015 6:43','San Francisco Caltrain (Townsend at 4th)',70,'8/24/2015 6:58','Market at 10th',67,459,'Subscriber',94306); +INSERT INTO "trip" VALUES(901858,482,'8/24/2015 6:43','Paseo de San Antonio',7,'8/24/2015 6:51','San Jose Diridon Caltrain Station',2,688,'Subscriber',95113); +INSERT INTO "trip" VALUES(901859,424,'8/24/2015 6:44','Temporary Transbay Terminal (Howard at Beale)',55,'8/24/2015 6:51','Market at 4th',76,403,'Subscriber',94501); +INSERT INTO "trip" VALUES(901860,594,'8/24/2015 6:44','Market at Sansome',77,'8/24/2015 6:54','San Francisco Caltrain (Townsend at 4th)',70,687,'Subscriber',94595); +INSERT INTO "trip" VALUES(901861,468,'8/24/2015 6:46','San Francisco Caltrain (Townsend at 4th)',70,'8/24/2015 6:54','Post at Kearny',47,597,'Subscriber',94002); +INSERT INTO "trip" VALUES(901862,556,'8/24/2015 6:46','San Francisco Caltrain (Townsend at 4th)',70,'8/24/2015 6:55','Beale at Market',56,415,'Subscriber',94303); +INSERT INTO "trip" VALUES(901863,613,'8/24/2015 6:46','San Francisco Caltrain (Townsend at 4th)',70,'8/24/2015 6:56','Harry Bridges Plaza (Ferry Building)',50,158,'Subscriber',94111); +INSERT INTO "trip" VALUES(901864,729,'8/24/2015 6:47','San Francisco Caltrain (Townsend at 4th)',70,'8/24/2015 6:59','Steuart at Market',74,586,'Subscriber',95111); +INSERT INTO "trip" VALUES(901865,568,'8/24/2015 6:48','San Francisco Caltrain (Townsend at 4th)',70,'8/24/2015 6:58','Market at Sansome',77,579,'Subscriber',94305); +INSERT INTO "trip" VALUES(901866,280,'8/24/2015 6:48','Evelyn Park and Ride',30,'8/24/2015 6:53','Mountain View Caltrain Station',28,693,'Subscriber',94087); +INSERT INTO "trip" VALUES(901867,1114,'8/24/2015 6:49','San Francisco Caltrain (Townsend at 4th)',70,'8/24/2015 7:08','Embarcadero at Sansome',60,416,'Subscriber',95129); +INSERT INTO "trip" VALUES(901868,183,'8/24/2015 6:50','2nd at Townsend',61,'8/24/2015 6:53','San Francisco Caltrain (Townsend at 4th)',70,631,'Subscriber',94107); +INSERT INTO "trip" VALUES(901869,459,'8/24/2015 6:53','Market at 10th',67,'8/24/2015 7:01','Yerba Buena Center of the Arts (3rd @ Howard)',68,590,'Subscriber',94107); +INSERT INTO "trip" VALUES(901870,459,'8/24/2015 6:55','Davis at Jackson',42,'8/24/2015 7:02','Post at Kearny',47,578,'Subscriber',94111); +INSERT INTO "trip" VALUES(901871,408,'8/24/2015 6:57','Temporary Transbay Terminal (Howard at Beale)',55,'8/24/2015 7:03','Commercial at Montgomery',45,672,'Subscriber',94611); +INSERT INTO "trip" VALUES(901873,248,'8/24/2015 6:59','San Jose Diridon Caltrain Station',2,'8/24/2015 7:04','Santa Clara at Almaden',4,643,'Subscriber',95020); +INSERT INTO "trip" VALUES(901874,272,'8/24/2015 7:00','2nd at Townsend',61,'8/24/2015 7:05','San Francisco Caltrain (Townsend at 4th)',70,593,'Subscriber',94043); +INSERT INTO "trip" VALUES(901875,585,'8/24/2015 7:02','Townsend at 7th',65,'8/24/2015 7:12','Powell Street BART',39,491,'Subscriber',94107); +INSERT INTO "trip" VALUES(901877,633,'8/24/2015 7:04','Temporary Transbay Terminal (Howard at Beale)',55,'8/24/2015 7:14','Civic Center BART (7th at Market)',72,487,'Subscriber',94710); +INSERT INTO "trip" VALUES(901878,558,'8/24/2015 7:05','San Francisco Caltrain (Townsend at 4th)',70,'8/24/2015 7:14','Beale at Market',56,332,'Subscriber',95136); +INSERT INTO "trip" VALUES(901879,550,'8/24/2015 7:05','San Francisco Caltrain 2 (330 Townsend)',69,'8/24/2015 7:14','Market at Sansome',77,500,'Subscriber',94303); +INSERT INTO "trip" VALUES(901880,1199,'8/24/2015 7:05','San Francisco Caltrain (Townsend at 4th)',70,'8/24/2015 7:25','Embarcadero at Sansome',60,687,'Subscriber',95111); +INSERT INTO "trip" VALUES(901881,436,'8/24/2015 7:06','San Francisco Caltrain 2 (330 Townsend)',69,'8/24/2015 7:14','Howard at 2nd',63,409,'Subscriber',94107); +INSERT INTO "trip" VALUES(901882,854,'8/24/2015 7:07','San Francisco Caltrain (Townsend at 4th)',70,'8/24/2015 7:21','Clay at Battery',41,309,'Subscriber',94402); +INSERT INTO "trip" VALUES(901883,796,'8/24/2015 7:07','Harry Bridges Plaza (Ferry Building)',50,'8/24/2015 7:20','Yerba Buena Center of the Arts (3rd @ Howard)',68,472,'Subscriber',94590); +INSERT INTO "trip" VALUES(901884,465,'8/24/2015 7:08','Market at 10th',67,'8/24/2015 7:15','San Francisco Caltrain 2 (330 Townsend)',69,623,'Subscriber',94102); +INSERT INTO "trip" VALUES(901886,312,'8/24/2015 7:11','Market at Sansome',77,'8/24/2015 7:16','2nd at South Park',64,636,'Subscriber',95973); +INSERT INTO "trip" VALUES(901887,342,'8/24/2015 7:11','Harry Bridges Plaza (Ferry Building)',50,'8/24/2015 7:17','Post at Kearny',47,505,'Subscriber',94957); +INSERT INTO "trip" VALUES(901888,1406,'8/24/2015 7:07','Palo Alto Caltrain Station',34,'8/24/2015 7:31','Stanford in Redwood City',25,707,'Subscriber',95131); +INSERT INTO "trip" VALUES(901889,289,'8/24/2015 7:12','Mountain View Caltrain Station',28,'8/24/2015 7:16','Castro Street and El Camino Real',32,706,'Subscriber',94118); +INSERT INTO "trip" VALUES(901890,175,'8/24/2015 7:12','Yerba Buena Center of the Arts (3rd @ Howard)',68,'8/24/2015 7:15','Market at Sansome',77,590,'Subscriber',94107); +INSERT INTO "trip" VALUES(901894,398,'8/24/2015 7:13','Harry Bridges Plaza (Ferry Building)',50,'8/24/2015 7:20','Howard at 2nd',63,158,'Subscriber',94954); +INSERT INTO "trip" VALUES(901901,240,'8/24/2015 7:15','Townsend at 7th',65,'8/24/2015 7:19','San Francisco Caltrain (Townsend at 4th)',70,541,'Subscriber',94107); +INSERT INTO "trip" VALUES(901902,652,'8/24/2015 7:16','Temporary Transbay Terminal (Howard at Beale)',55,'8/24/2015 7:27','San Francisco Caltrain 2 (330 Townsend)',69,628,'Subscriber',94107); +INSERT INTO "trip" VALUES(901903,493,'8/24/2015 7:17','Steuart at Market',74,'8/24/2015 7:25','2nd at Townsend',61,560,'Subscriber',94588); +INSERT INTO "trip" VALUES(901904,173,'8/24/2015 7:17','Market at 4th',76,'8/24/2015 7:20','Market at Sansome',77,403,'Subscriber',94107); +INSERT INTO "trip" VALUES(901905,346,'8/24/2015 7:18','Spear at Folsom',49,'8/24/2015 7:24','Commercial at Montgomery',45,423,'Subscriber',94105); +INSERT INTO "trip" VALUES(901906,268,'8/24/2015 7:20','Townsend at 7th',65,'8/24/2015 7:25','San Francisco Caltrain 2 (330 Townsend)',69,354,'Subscriber',94044); +INSERT INTO "trip" VALUES(901907,246,'8/24/2015 7:21','Embarcadero at Sansome',60,'8/24/2015 7:25','Davis at Jackson',42,677,'Subscriber',94133); +INSERT INTO "trip" VALUES(901908,239,'8/24/2015 7:22','Townsend at 7th',65,'8/24/2015 7:26','San Francisco Caltrain 2 (330 Townsend)',69,475,'Subscriber',94107); +INSERT INTO "trip" VALUES(901909,654,'8/24/2015 7:22','5th at Howard',57,'8/24/2015 7:33','Harry Bridges Plaza (Ferry Building)',50,502,'Subscriber',94107); +INSERT INTO "trip" VALUES(901910,284,'8/24/2015 7:23','Redwood City Caltrain Station',22,'8/24/2015 7:27','Redwood City Medical Center',26,179,'Subscriber',94158); +INSERT INTO "trip" VALUES(901911,814,'8/24/2015 7:23','San Francisco Caltrain (Townsend at 4th)',70,'8/24/2015 7:36','Clay at Battery',41,582,'Subscriber',94022); +INSERT INTO "trip" VALUES(901912,833,'8/24/2015 7:23','San Francisco Caltrain 2 (330 Townsend)',69,'8/24/2015 7:37','Davis at Jackson',42,630,'Subscriber',94025); +INSERT INTO "trip" VALUES(901913,802,'8/24/2015 7:23','San Francisco Caltrain (Townsend at 4th)',70,'8/24/2015 7:37','Golden Gate at Polk',59,544,'Subscriber',94306); +INSERT INTO "trip" VALUES(901914,878,'8/24/2015 7:24','San Francisco Caltrain (Townsend at 4th)',70,'8/24/2015 7:38','Beale at Market',56,425,'Subscriber',94303); +INSERT INTO "trip" VALUES(901915,583,'8/24/2015 7:24','San Francisco Caltrain (Townsend at 4th)',70,'8/24/2015 7:33','Embarcadero at Folsom',51,348,'Subscriber',94403); +INSERT INTO "trip" VALUES(901916,530,'8/24/2015 7:22','Civic Center BART (7th at Market)',72,'8/24/2015 7:31','Townsend at 7th',65,498,'Subscriber',94582); +INSERT INTO "trip" VALUES(901917,357,'8/24/2015 7:24','Temporary Transbay Terminal (Howard at Beale)',55,'8/24/2015 7:30','2nd at Townsend',61,462,'Subscriber',94107); +INSERT INTO "trip" VALUES(901918,787,'8/24/2015 7:24','San Francisco Caltrain (Townsend at 4th)',70,'8/24/2015 7:37','Powell Street BART',39,541,'Subscriber',94102); +INSERT INTO "trip" VALUES(901919,468,'8/24/2015 7:23','Powell at Post (Union Square)',71,'8/24/2015 7:31','Harry Bridges Plaza (Ferry Building)',50,495,'Subscriber',94111); +INSERT INTO "trip" VALUES(901920,795,'8/24/2015 7:24','San Francisco Caltrain 2 (330 Townsend)',69,'8/24/2015 7:38','Harry Bridges Plaza (Ferry Building)',50,623,'Subscriber',94025); +INSERT INTO "trip" VALUES(901921,442,'8/24/2015 7:25','Market at Sansome',77,'8/24/2015 7:32','2nd at South Park',64,528,'Subscriber',94549); +INSERT INTO "trip" VALUES(901922,957,'8/24/2015 7:25','San Francisco Caltrain (Townsend at 4th)',70,'8/24/2015 7:41','South Van Ness at Market',66,593,'Subscriber',94403); +INSERT INTO "trip" VALUES(901923,465,'8/24/2015 7:26','Mountain View Caltrain Station',28,'8/24/2015 7:33','Mountain View City Hall',27,94,'Subscriber',93950); +INSERT INTO "trip" VALUES(901925,592,'8/24/2015 7:26','5th at Howard',57,'8/24/2015 7:36','Harry Bridges Plaza (Ferry Building)',50,300,'Subscriber',94107); +INSERT INTO "trip" VALUES(901926,280,'8/24/2015 7:27','Powell at Post (Union Square)',71,'8/24/2015 7:31','Howard at 2nd',63,383,'Subscriber',94109); +INSERT INTO "trip" VALUES(901929,722,'8/24/2015 7:28','Japantown',9,'8/24/2015 7:40','San Jose Diridon Caltrain Station',2,31,'Subscriber',95112); +INSERT INTO "trip" VALUES(901930,361,'8/24/2015 7:29','Embarcadero at Sansome',60,'8/24/2015 7:35','Beale at Market',56,189,'Subscriber',94111); +INSERT INTO "trip" VALUES(901931,614,'8/24/2015 7:29','Temporary Transbay Terminal (Howard at Beale)',55,'8/24/2015 7:39','Embarcadero at Sansome',60,335,'Subscriber',94549); +INSERT INTO "trip" VALUES(901932,127,'8/24/2015 7:30','Steuart at Market',74,'8/24/2015 7:32','Embarcadero at Folsom',51,268,'Subscriber',94044); +INSERT INTO "trip" VALUES(901933,917,'8/24/2015 7:33','Redwood City Caltrain Station',22,'8/24/2015 7:48','Stanford in Redwood City',25,689,'Subscriber',94115); +INSERT INTO "trip" VALUES(901934,822,'8/24/2015 7:33','Grant Avenue at Columbus Avenue',73,'8/24/2015 7:46','San Francisco Caltrain (Townsend at 4th)',70,417,'Subscriber',94133); +INSERT INTO "trip" VALUES(901935,261,'8/24/2015 7:33','5th at Howard',57,'8/24/2015 7:38','San Francisco Caltrain 2 (330 Townsend)',69,568,'Subscriber',94103); +INSERT INTO "trip" VALUES(901938,305,'8/24/2015 7:34','Harry Bridges Plaza (Ferry Building)',50,'8/24/2015 7:39','Embarcadero at Sansome',60,495,'Subscriber',94588); +INSERT INTO "trip" VALUES(901939,541,'8/24/2015 7:34','Market at 10th',67,'8/24/2015 7:43','Market at Sansome',77,516,'Subscriber',94301); +INSERT INTO "trip" VALUES(901940,419,'8/24/2015 7:34','2nd at Townsend',61,'8/24/2015 7:41','Market at Sansome',77,567,'Subscriber',94107); +INSERT INTO "trip" VALUES(901944,571,'8/24/2015 7:36','MLK Library',11,'8/24/2015 7:45','San Jose Diridon Caltrain Station',2,186,'Subscriber',95112); +INSERT INTO "trip" VALUES(901945,564,'8/24/2015 7:36','MLK Library',11,'8/24/2015 7:45','San Jose Diridon Caltrain Station',2,658,'Subscriber',95113); +INSERT INTO "trip" VALUES(901948,338,'8/24/2015 7:36','Spear at Folsom',49,'8/24/2015 7:42','2nd at South Park',64,614,'Subscriber',94105); +INSERT INTO "trip" VALUES(901950,425,'8/24/2015 7:37','Civic Center BART (7th at Market)',72,'8/24/2015 7:44','Townsend at 7th',65,375,'Subscriber',94598); +INSERT INTO "trip" VALUES(901951,230,'8/24/2015 7:37','Temporary Transbay Terminal (Howard at Beale)',55,'8/24/2015 7:41','2nd at Folsom',62,451,'Subscriber',94602); +INSERT INTO "trip" VALUES(901952,452,'8/24/2015 7:38','Harry Bridges Plaza (Ferry Building)',50,'8/24/2015 7:45','Yerba Buena Center of the Arts (3rd @ Howard)',68,450,'Subscriber',94107); +INSERT INTO "trip" VALUES(901953,502,'8/24/2015 7:38','Civic Center BART (7th at Market)',72,'8/24/2015 7:46','Townsend at 7th',65,487,'Subscriber',94582); +INSERT INTO "trip" VALUES(901955,589,'8/24/2015 7:39','Harry Bridges Plaza (Ferry Building)',50,'8/24/2015 7:49','5th at Howard',57,494,'Subscriber',94925); +INSERT INTO "trip" VALUES(901957,404,'8/24/2015 7:35','San Jose Diridon Caltrain Station',2,'8/24/2015 7:42','San Pedro Square',6,57,'Subscriber',94110); +INSERT INTO "trip" VALUES(901958,343,'8/24/2015 7:40','Santa Clara at Almaden',4,'8/24/2015 7:46','San Jose Diridon Caltrain Station',2,643,'Subscriber',95110); +INSERT INTO "trip" VALUES(901959,536,'8/24/2015 7:41','Powell at Post (Union Square)',71,'8/24/2015 7:50','San Francisco Caltrain 2 (330 Townsend)',69,350,'Subscriber',94109); +INSERT INTO "trip" VALUES(901960,640,'8/24/2015 7:41','Golden Gate at Polk',59,'8/24/2015 7:52','San Francisco Caltrain 2 (330 Townsend)',69,583,'Subscriber',94109); +INSERT INTO "trip" VALUES(901961,872,'8/24/2015 7:42','Mechanics Plaza (Market at Battery)',75,'8/24/2015 7:57','2nd at Townsend',61,318,'Subscriber',94401); +INSERT INTO "trip" VALUES(901962,456,'8/24/2015 7:43','Harry Bridges Plaza (Ferry Building)',50,'8/24/2015 7:50','Embarcadero at Sansome',60,549,'Subscriber',94939); +INSERT INTO "trip" VALUES(901963,846,'8/24/2015 7:43','Steuart at Market',74,'8/24/2015 7:57','Townsend at 7th',65,569,'Subscriber',94965); +INSERT INTO "trip" VALUES(901964,1539,'8/24/2015 7:43','Harry Bridges Plaza (Ferry Building)',50,'8/24/2015 8:09','2nd at Townsend',61,300,'Subscriber',94960); +INSERT INTO "trip" VALUES(901965,578,'8/24/2015 7:43','2nd at South Park',64,'8/24/2015 7:52','Powell Street BART',39,614,'Subscriber',94107); +INSERT INTO "trip" VALUES(901966,502,'8/24/2015 7:44','Market at 10th',67,'8/24/2015 7:52','San Francisco Caltrain 2 (330 Townsend)',69,459,'Subscriber',94102); +INSERT INTO "trip" VALUES(901967,573,'8/24/2015 7:44','Harry Bridges Plaza (Ferry Building)',50,'8/24/2015 7:53','2nd at Townsend',61,504,'Subscriber',94949); +INSERT INTO "trip" VALUES(901968,167,'8/24/2015 7:44','Townsend at 7th',65,'8/24/2015 7:46','San Francisco Caltrain 2 (330 Townsend)',69,498,'Subscriber',94103); +INSERT INTO "trip" VALUES(901969,415,'8/24/2015 7:44','San Jose Diridon Caltrain Station',2,'8/24/2015 7:51','San Pedro Square',6,127,'Subscriber',94002); +INSERT INTO "trip" VALUES(901970,338,'8/24/2015 7:44','Embarcadero at Folsom',51,'8/24/2015 7:49','2nd at Townsend',61,348,'Subscriber',94945); +INSERT INTO "trip" VALUES(901971,499,'8/24/2015 7:44','2nd at Folsom',62,'8/24/2015 7:53','San Francisco Caltrain (Townsend at 4th)',70,269,'Subscriber',94549); +INSERT INTO "trip" VALUES(901972,573,'8/24/2015 7:44','Market at 10th',67,'8/24/2015 7:54','Mechanics Plaza (Market at Battery)',75,260,'Subscriber',94102); +INSERT INTO "trip" VALUES(901973,807,'8/24/2015 7:45','Steuart at Market',74,'8/24/2015 7:59','Townsend at 7th',65,501,'Subscriber',94105); +INSERT INTO "trip" VALUES(901974,517,'8/24/2015 7:46','Market at 10th',67,'8/24/2015 7:54','San Francisco Caltrain 2 (330 Townsend)',69,267,'Subscriber',94103); +INSERT INTO "trip" VALUES(901975,654,'8/24/2015 7:46','Temporary Transbay Terminal (Howard at Beale)',55,'8/24/2015 7:57','Townsend at 7th',65,329,'Subscriber',94103); +INSERT INTO "trip" VALUES(901976,429,'8/24/2015 7:47','Steuart at Market',74,'8/24/2015 7:54','Embarcadero at Sansome',60,617,'Subscriber',94565); +INSERT INTO "trip" VALUES(901977,205,'8/24/2015 7:47','Mountain View Caltrain Station',28,'8/24/2015 7:51','Evelyn Park and Ride',30,693,'Subscriber',94111); +INSERT INTO "trip" VALUES(901978,334,'8/24/2015 7:47','San Francisco Caltrain 2 (330 Townsend)',69,'8/24/2015 7:53','5th at Howard',57,568,'Subscriber',94042); +INSERT INTO "trip" VALUES(901979,557,'8/24/2015 7:47','Spear at Folsom',49,'8/24/2015 7:57','San Francisco Caltrain (Townsend at 4th)',70,134,'Subscriber',94601); +INSERT INTO "trip" VALUES(901980,519,'8/24/2015 7:48','San Francisco Caltrain 2 (330 Townsend)',69,'8/24/2015 7:56','Temporary Transbay Terminal (Howard at Beale)',55,534,'Subscriber',94010); +INSERT INTO "trip" VALUES(901981,725,'8/24/2015 7:48','San Francisco Caltrain 2 (330 Townsend)',69,'8/24/2015 8:00','Market at 10th',67,628,'Subscriber',94582); +INSERT INTO "trip" VALUES(901982,628,'8/24/2015 7:48','San Francisco Caltrain (Townsend at 4th)',70,'8/24/2015 7:58','Mechanics Plaza (Market at Battery)',75,585,'Subscriber',94040); +INSERT INTO "trip" VALUES(901983,910,'8/24/2015 7:48','San Francisco Caltrain (Townsend at 4th)',70,'8/24/2015 8:03','San Francisco City Hall',58,521,'Subscriber',94087); +INSERT INTO "trip" VALUES(901984,724,'8/24/2015 7:48','San Francisco Caltrain (Townsend at 4th)',70,'8/24/2015 8:00','Clay at Battery',41,417,'Subscriber',94065); +INSERT INTO "trip" VALUES(901985,914,'8/24/2015 7:48','San Francisco Caltrain (Townsend at 4th)',70,'8/24/2015 8:03','Market at 10th',67,285,'Subscriber',95122); +INSERT INTO "trip" VALUES(901986,556,'8/24/2015 7:49','San Francisco Caltrain (Townsend at 4th)',70,'8/24/2015 7:59','Embarcadero at Folsom',51,497,'Subscriber',94070); +INSERT INTO "trip" VALUES(901987,847,'8/24/2015 7:49','San Francisco Caltrain (Townsend at 4th)',70,'8/24/2015 8:04','Steuart at Market',74,283,'Subscriber',95134); +INSERT INTO "trip" VALUES(901988,703,'8/24/2015 7:50','San Francisco Caltrain 2 (330 Townsend)',69,'8/24/2015 8:02','Harry Bridges Plaza (Ferry Building)',50,520,'Subscriber',95054); +INSERT INTO "trip" VALUES(901991,703,'8/24/2015 7:50','Market at 10th',67,'8/24/2015 8:02','Temporary Transbay Terminal (Howard at Beale)',55,651,'Subscriber',94102); +INSERT INTO "trip" VALUES(901992,1458,'8/24/2015 7:50','Spear at Folsom',49,'8/24/2015 8:15','Embarcadero at Sansome',60,282,'Subscriber',94105); +INSERT INTO "trip" VALUES(901993,732,'8/24/2015 7:50','San Francisco Caltrain (Townsend at 4th)',70,'8/24/2015 8:03','Harry Bridges Plaza (Ferry Building)',50,455,'Subscriber',94402); +INSERT INTO "trip" VALUES(901994,855,'8/24/2015 7:51','San Francisco Caltrain (Townsend at 4th)',70,'8/24/2015 8:05','South Van Ness at Market',66,461,'Subscriber',95122); +INSERT INTO "trip" VALUES(901995,220,'8/24/2015 7:51','Market at Sansome',77,'8/24/2015 7:55','Commercial at Montgomery',45,590,'Subscriber',94122); +INSERT INTO "trip" VALUES(901998,249,'8/24/2015 7:51','Evelyn Park and Ride',30,'8/24/2015 7:55','Mountain View Caltrain Station',28,141,'Subscriber',94041); +INSERT INTO "trip" VALUES(901999,666,'8/24/2015 7:51','San Francisco Caltrain 2 (330 Townsend)',69,'8/24/2015 8:02','Embarcadero at Folsom',51,350,'Subscriber',94306); +INSERT INTO "trip" VALUES(902000,528,'8/24/2015 7:51','Grant Avenue at Columbus Avenue',73,'8/24/2015 8:00','Powell Street BART',39,611,'Subscriber',94133); +INSERT INTO "trip" VALUES(902001,282,'8/24/2015 7:51','Castro Street and El Camino Real',32,'8/24/2015 7:56','Mountain View Caltrain Station',28,90,'Subscriber',94022); +INSERT INTO "trip" VALUES(902002,297,'8/24/2015 7:52','Howard at 2nd',63,'8/24/2015 7:57','5th at Howard',57,158,'Subscriber',94610); +INSERT INTO "trip" VALUES(902003,619,'8/24/2015 7:52','San Francisco Caltrain 2 (330 Townsend)',69,'8/24/2015 8:02','Temporary Transbay Terminal (Howard at Beale)',55,634,'Subscriber',94030); +INSERT INTO "trip" VALUES(902004,587,'8/24/2015 7:52','Market at 10th',67,'8/24/2015 8:02','Market at Sansome',77,618,'Subscriber',94102); +INSERT INTO "trip" VALUES(902007,237,'8/24/2015 7:53','Mountain View Caltrain Station',28,'8/24/2015 7:57','Mountain View City Hall',27,35,'Subscriber',94107); +INSERT INTO "trip" VALUES(902010,775,'8/24/2015 7:54','Broadway St at Battery St',82,'8/24/2015 8:07','San Francisco Caltrain (Townsend at 4th)',70,469,'Subscriber',94133); +INSERT INTO "trip" VALUES(902011,319,'8/24/2015 7:54','Howard at 2nd',63,'8/24/2015 8:00','2nd at Townsend',61,453,'Subscriber',94939); +INSERT INTO "trip" VALUES(902012,296,'8/24/2015 7:55','Grant Avenue at Columbus Avenue',73,'8/24/2015 7:59','Market at Sansome',77,465,'Subscriber',94133); +INSERT INTO "trip" VALUES(902013,452,'8/24/2015 7:55','Temporary Transbay Terminal (Howard at Beale)',55,'8/24/2015 8:02','Embarcadero at Vallejo',48,512,'Subscriber',94706); +INSERT INTO "trip" VALUES(902014,465,'8/24/2015 7:55','Market at 10th',67,'8/24/2015 8:03','Post at Kearny',47,604,'Subscriber',94122); +INSERT INTO "trip" VALUES(902015,831,'8/24/2015 7:55','Temporary Transbay Terminal (Howard at Beale)',55,'8/24/2015 8:09','Townsend at 7th',65,56,'Subscriber',94602); +INSERT INTO "trip" VALUES(902017,229,'8/24/2015 7:56','Temporary Transbay Terminal (Howard at Beale)',55,'8/24/2015 8:00','Clay at Battery',41,361,'Subscriber',94501); +INSERT INTO "trip" VALUES(902018,128,'8/24/2015 7:57','Howard at 2nd',63,'8/24/2015 7:59','Market at Sansome',77,380,'Subscriber',94107); +INSERT INTO "trip" VALUES(902019,700,'8/24/2015 7:57','Redwood City Caltrain Station',22,'8/24/2015 8:09','Stanford in Redwood City',25,122,'Subscriber',95037); +INSERT INTO "trip" VALUES(902020,558,'8/24/2015 7:58','Market at 10th',67,'8/24/2015 8:08','Market at Sansome',77,574,'Subscriber',94117); +INSERT INTO "trip" VALUES(902021,330,'8/24/2015 8:00','Temporary Transbay Terminal (Howard at Beale)',55,'8/24/2015 8:05','Market at Sansome',77,286,'Subscriber',94618); +INSERT INTO "trip" VALUES(902022,423,'8/24/2015 8:01','Temporary Transbay Terminal (Howard at Beale)',55,'8/24/2015 8:08','Embarcadero at Vallejo',48,279,'Subscriber',94611); +INSERT INTO "trip" VALUES(902023,322,'8/24/2015 8:02','5th at Howard',57,'8/24/2015 8:07','San Francisco Caltrain 2 (330 Townsend)',69,392,'Subscriber',94103); +INSERT INTO "trip" VALUES(902024,438,'8/24/2015 8:02','San Francisco Caltrain (Townsend at 4th)',70,'8/24/2015 8:09','Post at Kearny',47,134,'Subscriber',94010); +INSERT INTO "trip" VALUES(902025,315,'8/24/2015 8:02','Mountain View Caltrain Station',28,'8/24/2015 8:08','Castro Street and El Camino Real',32,197,'Subscriber',94158); +INSERT INTO "trip" VALUES(902026,744,'8/24/2015 8:02','San Francisco Caltrain 2 (330 Townsend)',69,'8/24/2015 8:15','Beale at Market',56,459,'Subscriber',94070); +INSERT INTO "trip" VALUES(902027,648,'8/24/2015 8:03','San Francisco Caltrain 2 (330 Townsend)',69,'8/24/2015 8:13','Embarcadero at Folsom',51,327,'Subscriber',94010); +INSERT INTO "trip" VALUES(902029,840,'8/24/2015 8:03','San Francisco Caltrain 2 (330 Townsend)',69,'8/24/2015 8:17','Embarcadero at Vallejo',48,267,'Subscriber',94025); +INSERT INTO "trip" VALUES(902031,734,'8/24/2015 8:03','San Francisco Caltrain 2 (330 Townsend)',69,'8/24/2015 8:16','Market at Sansome',77,583,'Subscriber',94402); +INSERT INTO "trip" VALUES(902032,345,'8/24/2015 8:04','Harry Bridges Plaza (Ferry Building)',50,'8/24/2015 8:09','2nd at Folsom',62,623,'Subscriber',94949); +INSERT INTO "trip" VALUES(902033,848,'8/24/2015 8:04','Temporary Transbay Terminal (Howard at Beale)',55,'8/24/2015 8:18','Townsend at 7th',65,404,'Subscriber',94501); +INSERT INTO "trip" VALUES(902034,859,'8/24/2015 8:04','San Francisco Caltrain (Townsend at 4th)',70,'8/24/2015 8:18','Market at 10th',67,269,'Subscriber',94401); +INSERT INTO "trip" VALUES(902035,497,'8/24/2015 8:04','Harry Bridges Plaza (Ferry Building)',50,'8/24/2015 8:12','2nd at South Park',64,356,'Subscriber',94510); +INSERT INTO "trip" VALUES(902036,518,'8/24/2015 8:04','Embarcadero at Sansome',60,'8/24/2015 8:13','Commercial at Montgomery',45,687,'Subscriber',94115); +INSERT INTO "trip" VALUES(902037,1067,'8/24/2015 8:04','Harry Bridges Plaza (Ferry Building)',50,'8/24/2015 8:22','Townsend at 7th',65,591,'Subscriber',94590); +INSERT INTO "trip" VALUES(902038,995,'8/24/2015 8:04','San Francisco Caltrain 2 (330 Townsend)',69,'8/24/2015 8:21','Davis at Jackson',42,16,'Subscriber',94111); +INSERT INTO "trip" VALUES(902039,898,'8/24/2015 8:04','San Francisco Caltrain 2 (330 Townsend)',69,'8/24/2015 8:19','Embarcadero at Vallejo',48,384,'Subscriber',94065); +INSERT INTO "trip" VALUES(902040,330,'8/24/2015 8:05','Harry Bridges Plaza (Ferry Building)',50,'8/24/2015 8:10','Market at Sansome',77,587,'Subscriber',94534); +INSERT INTO "trip" VALUES(902041,443,'8/24/2015 8:05','Harry Bridges Plaza (Ferry Building)',50,'8/24/2015 8:12','2nd at Townsend',61,455,'Subscriber',94903); +INSERT INTO "trip" VALUES(902042,290,'8/24/2015 8:05','Harry Bridges Plaza (Ferry Building)',50,'8/24/2015 8:09','Market at Sansome',77,520,'Subscriber',94105); +INSERT INTO "trip" VALUES(902043,366,'8/24/2015 8:05','Embarcadero at Bryant',54,'8/24/2015 8:11','San Francisco Caltrain (Townsend at 4th)',70,421,'Subscriber',94105); +INSERT INTO "trip" VALUES(902044,191,'8/24/2015 8:05','San Francisco Caltrain 2 (330 Townsend)',69,'8/24/2015 8:08','Townsend at 7th',65,508,'Subscriber',94043); +INSERT INTO "trip" VALUES(902045,809,'8/24/2015 8:05','San Francisco Caltrain 2 (330 Townsend)',69,'8/24/2015 8:19','Davis at Jackson',42,489,'Subscriber',95014); +INSERT INTO "trip" VALUES(902046,480,'8/24/2015 8:06','Embarcadero at Bryant',54,'8/24/2015 8:14','San Francisco Caltrain (Townsend at 4th)',70,445,'Subscriber',94105); +INSERT INTO "trip" VALUES(902047,304,'8/24/2015 8:06','SJSU - San Salvador at 9th',16,'8/24/2015 8:11','Paseo de San Antonio',7,98,'Subscriber',95112); +INSERT INTO "trip" VALUES(902048,480,'8/24/2015 8:06','Beale at Market',56,'8/24/2015 8:14','Yerba Buena Center of the Arts (3rd @ Howard)',68,187,'Subscriber',94109); +INSERT INTO "trip" VALUES(902049,1351,'8/24/2015 8:06','San Francisco Caltrain 2 (330 Townsend)',69,'8/24/2015 8:29','Davis at Jackson',42,498,'Subscriber',94303); +INSERT INTO "trip" VALUES(902051,124,'8/24/2015 8:07','Market at Sansome',77,'8/24/2015 8:09','Howard at 2nd',63,403,'Subscriber',94114); +INSERT INTO "trip" VALUES(902052,560,'8/24/2015 8:07','5th at Howard',57,'8/24/2015 8:17','Steuart at Market',74,379,'Subscriber',94107); +INSERT INTO "trip" VALUES(902054,406,'8/24/2015 8:07','Market at Sansome',77,'8/24/2015 8:14','2nd at South Park',64,516,'Subscriber',94612); +INSERT INTO "trip" VALUES(902055,266,'8/24/2015 8:08','Embarcadero at Sansome',60,'8/24/2015 8:12','Davis at Jackson',42,495,'Subscriber',94111); +INSERT INTO "trip" VALUES(902056,304,'8/24/2015 8:08','Mountain View Caltrain Station',28,'8/24/2015 8:13','Mountain View City Hall',27,141,'Subscriber',95110); +INSERT INTO "trip" VALUES(902057,785,'8/24/2015 8:08','San Francisco Caltrain 2 (330 Townsend)',69,'8/24/2015 8:21','Temporary Transbay Terminal (Howard at Beale)',55,392,'Subscriber',95118); +INSERT INTO "trip" VALUES(902058,660,'8/24/2015 8:08','San Francisco Caltrain (Townsend at 4th)',70,'8/24/2015 8:19','Harry Bridges Plaza (Ferry Building)',50,484,'Subscriber',95148); +INSERT INTO "trip" VALUES(902059,560,'8/24/2015 8:08','San Francisco City Hall',58,'8/24/2015 8:18','San Francisco Caltrain 2 (330 Townsend)',69,412,'Subscriber',94102); +INSERT INTO "trip" VALUES(902060,464,'8/24/2015 8:08','Market at Sansome',77,'8/24/2015 8:16','2nd at Townsend',61,420,'Subscriber',94708); +INSERT INTO "trip" VALUES(902061,663,'8/24/2015 8:08','San Francisco Caltrain (Townsend at 4th)',70,'8/24/2015 8:19','Embarcadero at Folsom',51,291,'Subscriber',94085); +INSERT INTO "trip" VALUES(902062,422,'8/24/2015 8:08','San Francisco Caltrain (Townsend at 4th)',70,'8/24/2015 8:15','Howard at 2nd',63,288,'Subscriber',94061); +INSERT INTO "trip" VALUES(902063,550,'8/24/2015 8:08','San Francisco Caltrain (Townsend at 4th)',70,'8/24/2015 8:18','Yerba Buena Center of the Arts (3rd @ Howard)',68,471,'Subscriber',94087); +INSERT INTO "trip" VALUES(902064,611,'8/24/2015 8:08','Civic Center BART (7th at Market)',72,'8/24/2015 8:18','Spear at Folsom',49,659,'Subscriber',94080); +INSERT INTO "trip" VALUES(902065,590,'8/24/2015 8:09','San Francisco Caltrain (Townsend at 4th)',70,'8/24/2015 8:19','Temporary Transbay Terminal (Howard at Beale)',55,469,'Subscriber',94062); +INSERT INTO "trip" VALUES(902066,552,'8/24/2015 8:09','San Francisco Caltrain 2 (330 Townsend)',69,'8/24/2015 8:18','Civic Center BART (7th at Market)',72,354,'Subscriber',94062); +INSERT INTO "trip" VALUES(902067,126,'8/24/2015 8:09','Market at 4th',76,'8/24/2015 8:11','Yerba Buena Center of the Arts (3rd @ Howard)',68,620,'Subscriber',94707); +INSERT INTO "trip" VALUES(902068,898,'8/24/2015 8:09','San Francisco Caltrain 2 (330 Townsend)',69,'8/24/2015 8:24','Golden Gate at Polk',59,573,'Subscriber',94305); +INSERT INTO "trip" VALUES(902069,894,'8/24/2015 8:09','San Francisco Caltrain 2 (330 Townsend)',69,'8/24/2015 8:24','Mechanics Plaza (Market at Battery)',75,33,'Subscriber',95054); +INSERT INTO "trip" VALUES(902070,395,'8/24/2015 8:09','Commercial at Montgomery',45,'8/24/2015 8:16','2nd at Folsom',62,672,'Subscriber',94133); +INSERT INTO "trip" VALUES(902071,425,'8/24/2015 8:09','San Francisco Caltrain 2 (330 Townsend)',69,'8/24/2015 8:17','Howard at 2nd',63,388,'Subscriber',94062); +INSERT INTO "trip" VALUES(902072,523,'8/24/2015 8:09','Temporary Transbay Terminal (Howard at Beale)',55,'8/24/2015 8:18','San Francisco Caltrain (Townsend at 4th)',70,651,'Subscriber',94707); +INSERT INTO "trip" VALUES(902073,708,'8/24/2015 8:09','San Francisco City Hall',58,'8/24/2015 8:21','Mechanics Plaza (Market at Battery)',75,483,'Subscriber',94102); +INSERT INTO "trip" VALUES(902074,439,'8/24/2015 8:09','Embarcadero at Bryant',54,'8/24/2015 8:17','Embarcadero at Vallejo',48,493,'Subscriber',94105); +INSERT INTO "trip" VALUES(902075,1010,'8/24/2015 8:10','San Francisco Caltrain 2 (330 Townsend)',69,'8/24/2015 8:27','Broadway St at Battery St',82,351,'Subscriber',95128); +INSERT INTO "trip" VALUES(902076,592,'8/24/2015 8:10','San Francisco Caltrain 2 (330 Townsend)',69,'8/24/2015 8:20','Market at 4th',76,535,'Subscriber',95123); +INSERT INTO "trip" VALUES(902077,791,'8/24/2015 8:10','San Francisco Caltrain 2 (330 Townsend)',69,'8/24/2015 8:23','Market at 10th',67,374,'Subscriber',94061); +INSERT INTO "trip" VALUES(902078,1485,'8/24/2015 8:10','San Francisco Caltrain 2 (330 Townsend)',69,'8/24/2015 8:35','Harry Bridges Plaza (Ferry Building)',50,214,'Subscriber',95122); +INSERT INTO "trip" VALUES(902079,569,'8/24/2015 8:10','San Francisco Caltrain 2 (330 Townsend)',69,'8/24/2015 8:20','Steuart at Market',74,475,'Subscriber',94061); +INSERT INTO "trip" VALUES(902080,582,'8/24/2015 8:11','San Francisco Caltrain (Townsend at 4th)',70,'8/24/2015 8:21','Market at Sansome',77,470,'Subscriber',94010); +INSERT INTO "trip" VALUES(902081,513,'8/24/2015 8:11','San Francisco Caltrain 2 (330 Townsend)',69,'8/24/2015 8:19','Townsend at 7th',65,270,'Subscriber',94086); +INSERT INTO "trip" VALUES(902082,528,'8/24/2015 8:11','2nd at Folsom',62,'8/24/2015 8:20','San Francisco Caltrain (Townsend at 4th)',70,877,'Subscriber',94105); +INSERT INTO "trip" VALUES(902083,300,'8/24/2015 8:12','2nd at Townsend',61,'8/24/2015 8:17','San Francisco Caltrain (Townsend at 4th)',70,318,'Subscriber',94107); +INSERT INTO "trip" VALUES(902084,863,'8/24/2015 8:12','San Francisco Caltrain (Townsend at 4th)',70,'8/24/2015 8:26','Davis at Jackson',42,421,'Subscriber',94040); +INSERT INTO "trip" VALUES(902085,690,'8/24/2015 8:13','Davis at Jackson',42,'8/24/2015 8:25','San Francisco Caltrain (Townsend at 4th)',70,563,'Subscriber',94111); +INSERT INTO "trip" VALUES(902086,312,'8/24/2015 8:14','2nd at South Park',64,'8/24/2015 8:19','Post at Kearny',47,636,'Subscriber',94107); +INSERT INTO "trip" VALUES(902087,651,'8/24/2015 8:14','Redwood City Caltrain Station',22,'8/24/2015 8:25','Stanford in Redwood City',25,647,'Subscriber',94131); +INSERT INTO "trip" VALUES(902089,336,'8/24/2015 8:15','Embarcadero at Sansome',60,'8/24/2015 8:21','Harry Bridges Plaza (Ferry Building)',50,437,'Subscriber',94111); +INSERT INTO "trip" VALUES(902091,518,'8/24/2015 8:16','Grant Avenue at Columbus Avenue',73,'8/24/2015 8:24','Temporary Transbay Terminal (Howard at Beale)',55,468,'Subscriber',94133); +INSERT INTO "trip" VALUES(902092,628,'8/24/2015 8:16','Temporary Transbay Terminal (Howard at Beale)',55,'8/24/2015 8:26','Embarcadero at Sansome',60,634,'Subscriber',94602); +INSERT INTO "trip" VALUES(902093,1302,'8/24/2015 8:17','Harry Bridges Plaza (Ferry Building)',50,'8/24/2015 8:38','Embarcadero at Sansome',60,378,'Subscriber',94110); +INSERT INTO "trip" VALUES(902094,358,'8/24/2015 8:17','Mountain View Caltrain Station',28,'8/24/2015 8:23','Castro Street and El Camino Real',32,90,'Subscriber',94401); +INSERT INTO "trip" VALUES(902098,297,'8/24/2015 8:18','Evelyn Park and Ride',30,'8/24/2015 8:23','Mountain View Caltrain Station',28,650,'Subscriber',94040); +INSERT INTO "trip" VALUES(902100,591,'8/24/2015 8:18','Townsend at 7th',65,'8/24/2015 8:28','2nd at Folsom',62,329,'Subscriber',94107); +INSERT INTO "trip" VALUES(902101,519,'8/24/2015 8:19','2nd at Townsend',61,'8/24/2015 8:27','Steuart at Market',74,348,'Subscriber',95120); +INSERT INTO "trip" VALUES(902103,503,'8/24/2015 8:19','Harry Bridges Plaza (Ferry Building)',50,'8/24/2015 8:27','2nd at South Park',64,389,'Subscriber',94920); +INSERT INTO "trip" VALUES(902104,416,'8/24/2015 8:19','Steuart at Market',74,'8/24/2015 8:26','2nd at Townsend',61,278,'Subscriber',94563); +INSERT INTO "trip" VALUES(902105,797,'8/24/2015 8:20','Market at Sansome',77,'8/24/2015 8:33','Townsend at 7th',65,587,'Subscriber',94115); +INSERT INTO "trip" VALUES(902106,429,'8/24/2015 8:20','2nd at Townsend',61,'8/24/2015 8:27','Townsend at 7th',65,455,'Subscriber',94107); +INSERT INTO "trip" VALUES(902107,370,'8/24/2015 8:20','San Jose Diridon Caltrain Station',2,'8/24/2015 8:26','Santa Clara at Almaden',4,31,'Subscriber',94103); +INSERT INTO "trip" VALUES(902108,131,'8/24/2015 8:20','2nd at Townsend',61,'8/24/2015 8:22','2nd at South Park',64,420,'Subscriber',94107); +INSERT INTO "trip" VALUES(902109,418,'8/24/2015 8:20','Embarcadero at Folsom',51,'8/24/2015 8:27','2nd at South Park',64,277,'Subscriber',94105); +INSERT INTO "trip" VALUES(902110,390,'8/24/2015 8:21','2nd at Townsend',61,'8/24/2015 8:27','Townsend at 7th',65,300,'Subscriber',94105); +INSERT INTO "trip" VALUES(902111,772,'8/24/2015 8:21','Palo Alto Caltrain Station',34,'8/24/2015 8:34','Park at Olive',38,218,'Subscriber',94002); +INSERT INTO "trip" VALUES(902112,903,'8/24/2015 8:22','Temporary Transbay Terminal (Howard at Beale)',55,'8/24/2015 8:37','South Van Ness at Market',66,534,'Subscriber',9611); +INSERT INTO "trip" VALUES(902113,470,'8/24/2015 8:23','Harry Bridges Plaza (Ferry Building)',50,'8/24/2015 8:31','Embarcadero at Sansome',60,370,'Subscriber',94583); +INSERT INTO "trip" VALUES(902114,700,'8/24/2015 8:23','Washington at Kearny',46,'8/24/2015 8:35','2nd at South Park',64,509,'Subscriber',94133); +INSERT INTO "trip" VALUES(902115,508,'8/24/2015 8:24','Steuart at Market',74,'8/24/2015 8:32','2nd at Townsend',61,408,'Subscriber',94612); +INSERT INTO "trip" VALUES(902117,373,'8/24/2015 8:24','Grant Avenue at Columbus Avenue',73,'8/24/2015 8:30','Beale at Market',56,525,'Subscriber',94133); +INSERT INTO "trip" VALUES(902118,1071,'8/24/2015 8:24','Spear at Folsom',49,'8/24/2015 8:42','Market at 10th',67,659,'Subscriber',94105); +INSERT INTO "trip" VALUES(902119,159,'8/24/2015 8:25','Beale at Market',56,'8/24/2015 8:27','Market at Sansome',77,189,'Subscriber',94610); +INSERT INTO "trip" VALUES(902121,972,'8/24/2015 8:26','Powell at Post (Union Square)',71,'8/24/2015 8:42','Townsend at 7th',65,576,'Subscriber',94109); +INSERT INTO "trip" VALUES(902122,206,'8/24/2015 8:26','Grant Avenue at Columbus Avenue',73,'8/24/2015 8:30','Clay at Battery',41,547,'Subscriber',94111); +INSERT INTO "trip" VALUES(902123,328,'8/24/2015 8:26','2nd at Folsom',62,'8/24/2015 8:32','2nd at Townsend',61,444,'Subscriber',94110); +INSERT INTO "trip" VALUES(902124,241,'8/24/2015 8:27','Steuart at Market',74,'8/24/2015 8:31','Broadway St at Battery St',82,274,'Subscriber',94702); +INSERT INTO "trip" VALUES(902125,415,'8/24/2015 8:28','San Francisco Caltrain (Townsend at 4th)',70,'8/24/2015 8:35','2nd at Townsend',61,445,'Subscriber',94111); +INSERT INTO "trip" VALUES(902126,600,'8/24/2015 8:28','San Francisco Caltrain 2 (330 Townsend)',69,'8/24/2015 8:38','Market at 10th',67,456,'Subscriber',94404); +INSERT INTO "trip" VALUES(902127,536,'8/24/2015 8:28','San Francisco Caltrain (Townsend at 4th)',70,'8/24/2015 8:37','Embarcadero at Folsom',51,651,'Subscriber',94087); +INSERT INTO "trip" VALUES(902128,545,'8/24/2015 8:28','Harry Bridges Plaza (Ferry Building)',50,'8/24/2015 8:38','Powell Street BART',39,484,'Subscriber',94941); +INSERT INTO "trip" VALUES(902129,742,'8/24/2015 8:28','San Francisco Caltrain (Townsend at 4th)',70,'8/24/2015 8:41','Spear at Folsom',49,635,'Subscriber',94062); +INSERT INTO "trip" VALUES(902130,474,'8/24/2015 8:29','Powell at Post (Union Square)',71,'8/24/2015 8:37','San Francisco Caltrain 2 (330 Townsend)',69,320,'Subscriber',94109); +INSERT INTO "trip" VALUES(902132,658,'8/24/2015 8:29','San Francisco Caltrain (Townsend at 4th)',70,'8/24/2015 8:40','Steuart at Market',74,318,'Subscriber',94024); +INSERT INTO "trip" VALUES(902133,781,'8/24/2015 8:29','San Francisco Caltrain (Townsend at 4th)',70,'8/24/2015 8:42','Steuart at Market',74,530,'Subscriber',95051); +INSERT INTO "trip" VALUES(902134,3081,'8/24/2015 8:29','Harry Bridges Plaza (Ferry Building)',50,'8/24/2015 9:20','2nd at Townsend',61,437,'Subscriber',94949); +INSERT INTO "trip" VALUES(902135,555,'8/24/2015 8:29','San Francisco Caltrain (Townsend at 4th)',70,'8/24/2015 8:39','Temporary Transbay Terminal (Howard at Beale)',55,385,'Subscriber',94025); +INSERT INTO "trip" VALUES(902136,760,'8/24/2015 8:30','San Francisco Caltrain 2 (330 Townsend)',69,'8/24/2015 8:42','Broadway St at Battery St',82,412,'Subscriber',95130); +INSERT INTO "trip" VALUES(902137,363,'8/24/2015 8:30','Steuart at Market',74,'8/24/2015 8:36','Howard at 2nd',63,475,'Subscriber',94115); +INSERT INTO "trip" VALUES(902138,112,'8/24/2015 8:30','Beale at Market',56,'8/24/2015 8:31','Temporary Transbay Terminal (Howard at Beale)',55,332,'Subscriber',94110); +INSERT INTO "trip" VALUES(902139,631,'8/24/2015 8:30','San Francisco Caltrain 2 (330 Townsend)',69,'8/24/2015 8:40','Beale at Market',56,442,'Subscriber',94089); +INSERT INTO "trip" VALUES(902140,829,'8/24/2015 8:30','San Francisco Caltrain (Townsend at 4th)',70,'8/24/2015 8:44','Harry Bridges Plaza (Ferry Building)',50,313,'Subscriber',94086); +INSERT INTO "trip" VALUES(902141,623,'8/24/2015 8:30','San Francisco Caltrain 2 (330 Townsend)',69,'8/24/2015 8:40','Market at Sansome',77,353,'Subscriber',94002); +INSERT INTO "trip" VALUES(902142,1226,'8/24/2015 8:30','Harry Bridges Plaza (Ferry Building)',50,'8/24/2015 8:51','San Francisco Caltrain 2 (330 Townsend)',69,502,'Subscriber',94901); +INSERT INTO "trip" VALUES(902143,190,'8/24/2015 8:31','Temporary Transbay Terminal (Howard at Beale)',55,'8/24/2015 8:34','Mechanics Plaza (Market at Battery)',75,377,'Subscriber',94111); +INSERT INTO "trip" VALUES(902145,212,'8/24/2015 8:31','Commercial at Montgomery',45,'8/24/2015 8:35','Beale at Market',56,687,'Subscriber',94611); +INSERT INTO "trip" VALUES(902146,475,'8/24/2015 8:31','Powell at Post (Union Square)',71,'8/24/2015 8:39','Market at 4th',76,431,'Customer',85298); +INSERT INTO "trip" VALUES(902147,1019,'8/24/2015 8:31','San Francisco Caltrain 2 (330 Townsend)',69,'8/24/2015 8:48','Davis at Jackson',42,560,'Subscriber',94002); +INSERT INTO "trip" VALUES(902148,546,'8/24/2015 8:32','Harry Bridges Plaza (Ferry Building)',50,'8/24/2015 8:41','2nd at South Park',64,472,'Subscriber',94587); +INSERT INTO "trip" VALUES(902149,735,'8/24/2015 8:32','San Francisco Caltrain 2 (330 Townsend)',69,'8/24/2015 8:44','Market at 10th',67,462,'Subscriber',94025); +INSERT INTO "trip" VALUES(902150,501,'8/24/2015 8:32','Harry Bridges Plaza (Ferry Building)',50,'8/24/2015 8:40','2nd at Folsom',62,581,'Subscriber',94973); +INSERT INTO "trip" VALUES(902151,650,'8/24/2015 8:33','Embarcadero at Sansome',60,'8/24/2015 8:43','Temporary Transbay Terminal (Howard at Beale)',55,617,'Subscriber',94941); +INSERT INTO "trip" VALUES(902157,182,'8/24/2015 8:35','Market at 4th',76,'8/24/2015 8:38','5th at Howard',57,535,'Subscriber',94103); +INSERT INTO "trip" VALUES(902158,567,'8/24/2015 8:35','Steuart at Market',74,'8/24/2015 8:45','Clay at Battery',41,348,'Subscriber',94925); +INSERT INTO "trip" VALUES(902159,291,'8/24/2015 8:35','Spear at Folsom',49,'8/24/2015 8:40','Mechanics Plaza (Market at Battery)',75,310,'Subscriber',94105); +INSERT INTO "trip" VALUES(902160,363,'8/24/2015 8:36','2nd at South Park',64,'8/24/2015 8:42','San Francisco Caltrain (Townsend at 4th)',70,389,'Subscriber',94107); +INSERT INTO "trip" VALUES(902164,424,'8/24/2015 8:37','2nd at Townsend',61,'8/24/2015 8:44','Townsend at 7th',65,408,'Subscriber',94107); +INSERT INTO "trip" VALUES(902165,651,'8/24/2015 8:38','Embarcadero at Sansome',60,'8/24/2015 8:48','Mechanics Plaza (Market at Battery)',75,416,'Subscriber',94109); +INSERT INTO "trip" VALUES(902166,613,'8/24/2015 8:38','2nd at Townsend',61,'8/24/2015 8:48','Davis at Jackson',42,445,'Subscriber',94024); +INSERT INTO "trip" VALUES(902167,223,'8/24/2015 8:38','San Francisco Caltrain 2 (330 Townsend)',69,'8/24/2015 8:42','Townsend at 7th',65,320,'Subscriber',94118); +INSERT INTO "trip" VALUES(902168,598,'8/24/2015 8:36','Civic Center BART (7th at Market)',72,'8/24/2015 8:46','Townsend at 7th',65,393,'Subscriber',94618); +INSERT INTO "trip" VALUES(902169,387,'8/24/2015 8:39','Mountain View City Hall',27,'8/24/2015 8:45','Mountain View Caltrain Station',28,35,'Subscriber',94041); +INSERT INTO "trip" VALUES(902170,440,'8/24/2015 8:39','Grant Avenue at Columbus Avenue',73,'8/24/2015 8:46','Market at Sansome',77,463,'Subscriber',94133); +INSERT INTO "trip" VALUES(902172,155,'8/24/2015 8:40','Beale at Market',56,'8/24/2015 8:43','Temporary Transbay Terminal (Howard at Beale)',55,372,'Subscriber',94030); +INSERT INTO "trip" VALUES(902173,370,'8/24/2015 8:40','Market at Sansome',77,'8/24/2015 8:46','2nd at South Park',64,567,'Subscriber',94612); +INSERT INTO "trip" VALUES(902174,5638,'8/24/2015 8:40','San Francisco Caltrain 2 (330 Townsend)',69,'8/24/2015 10:14','San Francisco Caltrain 2 (330 Townsend)',69,482,'Customer',94158); +INSERT INTO "trip" VALUES(902175,404,'8/24/2015 8:41','Temporary Transbay Terminal (Howard at Beale)',55,'8/24/2015 8:48','2nd at Townsend',61,332,'Subscriber',94610); +INSERT INTO "trip" VALUES(902177,349,'8/24/2015 8:42','Temporary Transbay Terminal (Howard at Beale)',55,'8/24/2015 8:48','Steuart at Market',74,382,'Subscriber',95620); +INSERT INTO "trip" VALUES(902178,294,'8/24/2015 8:43','2nd at South Park',64,'8/24/2015 8:48','San Francisco Caltrain (Townsend at 4th)',70,472,'Subscriber',94107); +INSERT INTO "trip" VALUES(902179,375,'8/24/2015 8:43','Howard at 2nd',63,'8/24/2015 8:50','2nd at Townsend',61,546,'Subscriber',94609); +INSERT INTO "trip" VALUES(902180,448,'8/24/2015 8:44','Market at 4th',76,'8/24/2015 8:51','Market at 10th',67,449,'Subscriber',11201); +INSERT INTO "trip" VALUES(902181,424,'8/24/2015 8:44','Howard at 2nd',63,'8/24/2015 8:51','San Francisco Caltrain (Townsend at 4th)',70,475,'Subscriber',94105); +INSERT INTO "trip" VALUES(902182,718,'8/24/2015 8:44','Steuart at Market',74,'8/24/2015 8:56','2nd at Townsend',61,318,'Subscriber',94539); +INSERT INTO "trip" VALUES(902183,654,'8/24/2015 8:44','Golden Gate at Polk',59,'8/24/2015 8:55','Post at Kearny',47,526,'Subscriber',94110); +INSERT INTO "trip" VALUES(902184,646,'8/24/2015 8:44','2nd at Townsend',61,'8/24/2015 8:55','Davis at Jackson',42,558,'Subscriber',94107); +INSERT INTO "trip" VALUES(902185,926,'8/24/2015 8:45','Temporary Transbay Terminal (Howard at Beale)',55,'8/24/2015 9:00','South Van Ness at Market',66,469,'Subscriber',94609); +INSERT INTO "trip" VALUES(902186,664,'8/24/2015 8:45','Grant Avenue at Columbus Avenue',73,'8/24/2015 8:56','Market at Sansome',77,624,'Subscriber',94133); +INSERT INTO "trip" VALUES(902187,308,'8/24/2015 8:45','Beale at Market',56,'8/24/2015 8:50','Broadway St at Battery St',82,687,'Subscriber',94114); +INSERT INTO "trip" VALUES(902188,201,'8/24/2015 8:45','Townsend at 7th',65,'8/24/2015 8:49','San Francisco Caltrain 2 (330 Townsend)',69,56,'Subscriber',94107); +INSERT INTO "trip" VALUES(902189,683,'8/24/2015 8:45','Temporary Transbay Terminal (Howard at Beale)',55,'8/24/2015 8:57','San Francisco Caltrain (Townsend at 4th)',70,372,'Subscriber',94703); +INSERT INTO "trip" VALUES(902190,627,'8/24/2015 8:46','Embarcadero at Folsom',51,'8/24/2015 8:56','Embarcadero at Sansome',60,608,'Subscriber',94124); +INSERT INTO "trip" VALUES(902191,393,'8/24/2015 8:46','Harry Bridges Plaza (Ferry Building)',50,'8/24/2015 8:52','2nd at Townsend',61,313,'Subscriber',94591); +INSERT INTO "trip" VALUES(902192,515,'8/24/2015 8:46','Harry Bridges Plaza (Ferry Building)',50,'8/24/2015 8:55','2nd at Folsom',62,214,'Subscriber',94558); +INSERT INTO "trip" VALUES(902194,642,'8/24/2015 8:46','San Pedro Square',6,'8/24/2015 8:57','Santa Clara County Civic Center',80,57,'Subscriber',95110); +INSERT INTO "trip" VALUES(902195,425,'8/24/2015 8:46','Beale at Market',56,'8/24/2015 8:53','2nd at South Park',64,525,'Subscriber',94607); +INSERT INTO "trip" VALUES(902196,207,'8/24/2015 8:47','Steuart at Market',74,'8/24/2015 8:51','Spear at Folsom',49,355,'Subscriber',94114); +INSERT INTO "trip" VALUES(902197,346,'8/24/2015 8:48','Beale at Market',56,'8/24/2015 8:54','2nd at Townsend',61,479,'Subscriber',94607); +INSERT INTO "trip" VALUES(902199,415,'8/24/2015 8:48','Steuart at Market',74,'8/24/2015 8:55','Embarcadero at Sansome',60,530,'Subscriber',94597); +INSERT INTO "trip" VALUES(902201,601,'8/24/2015 8:49','2nd at Townsend',61,'8/24/2015 8:59','Powell Street BART',39,332,'Subscriber',94107); +INSERT INTO "trip" VALUES(902202,563,'8/24/2015 8:49','Temporary Transbay Terminal (Howard at Beale)',55,'8/24/2015 8:58','San Francisco Caltrain (Townsend at 4th)',70,385,'Subscriber',94610); +INSERT INTO "trip" VALUES(902203,990,'8/24/2015 8:49','Harry Bridges Plaza (Ferry Building)',50,'8/24/2015 9:06','San Francisco Caltrain (Townsend at 4th)',70,563,'Subscriber',94501); +INSERT INTO "trip" VALUES(902204,271,'8/24/2015 8:49','Steuart at Market',74,'8/24/2015 8:54','Davis at Jackson',42,386,'Subscriber',94102); +INSERT INTO "trip" VALUES(902205,316,'8/24/2015 8:50','Market at Sansome',77,'8/24/2015 8:55','2nd at South Park',64,500,'Subscriber',94115); +INSERT INTO "trip" VALUES(902206,336,'8/24/2015 8:50','San Francisco Caltrain (Townsend at 4th)',70,'8/24/2015 8:56','Howard at 2nd',63,389,'Subscriber',94306); +INSERT INTO "trip" VALUES(902207,240,'8/24/2015 8:50','Embarcadero at Folsom',51,'8/24/2015 8:54','Harry Bridges Plaza (Ferry Building)',50,327,'Subscriber',94105); +INSERT INTO "trip" VALUES(902208,653,'8/24/2015 8:50','San Francisco Caltrain (Townsend at 4th)',70,'8/24/2015 9:01','Temporary Transbay Terminal (Howard at Beale)',55,472,'Subscriber',95008); +INSERT INTO "trip" VALUES(902209,695,'8/24/2015 8:50','Civic Center BART (7th at Market)',72,'8/24/2015 9:02','Steuart at Market',74,436,'Subscriber',94103); +INSERT INTO "trip" VALUES(902210,394,'8/24/2015 8:50','2nd at Folsom',62,'8/24/2015 8:57','Clay at Battery',41,432,'Subscriber',94107); +INSERT INTO "trip" VALUES(902211,812,'8/24/2015 8:50','Rengstorff Avenue / California Street',33,'8/24/2015 9:04','Mountain View Caltrain Station',28,80,'Subscriber',94040); +INSERT INTO "trip" VALUES(902212,435,'8/24/2015 8:50','Civic Center BART (7th at Market)',72,'8/24/2015 8:58','Townsend at 7th',65,629,'Subscriber',94609); +INSERT INTO "trip" VALUES(902213,540,'8/24/2015 8:51','San Francisco Caltrain (Townsend at 4th)',70,'8/24/2015 9:00','Temporary Transbay Terminal (Howard at Beale)',55,420,'Subscriber',94022); +INSERT INTO "trip" VALUES(902214,676,'8/24/2015 8:51','San Francisco Caltrain (Townsend at 4th)',70,'8/24/2015 9:02','Spear at Folsom',49,528,'Subscriber',94070); +INSERT INTO "trip" VALUES(902215,449,'8/24/2015 8:51','Spear at Folsom',49,'8/24/2015 8:58','Market at 4th',76,390,'Subscriber',94105); +INSERT INTO "trip" VALUES(902216,694,'8/24/2015 8:51','San Francisco Caltrain (Townsend at 4th)',70,'8/24/2015 9:02','Temporary Transbay Terminal (Howard at Beale)',55,453,'Subscriber',95110); +INSERT INTO "trip" VALUES(902217,803,'8/24/2015 8:51','SJSU - San Salvador at 9th',16,'8/24/2015 9:04','San Jose Diridon Caltrain Station',2,95,'Subscriber',95112); +INSERT INTO "trip" VALUES(902218,552,'8/24/2015 8:51','San Francisco Caltrain 2 (330 Townsend)',69,'8/24/2015 9:00','Market at Sansome',77,56,'Subscriber',95134); +INSERT INTO "trip" VALUES(902219,493,'8/24/2015 8:51','Civic Center BART (7th at Market)',72,'8/24/2015 8:59','Mechanics Plaza (Market at Battery)',75,407,'Subscriber',94103); +INSERT INTO "trip" VALUES(902220,677,'8/24/2015 8:51','Townsend at 7th',65,'8/24/2015 9:03','Howard at 2nd',63,455,'Subscriber',94116); +INSERT INTO "trip" VALUES(902221,353,'8/24/2015 8:51','San Francisco Caltrain 2 (330 Townsend)',69,'8/24/2015 8:57','2nd at South Park',64,502,'Subscriber',94158); +INSERT INTO "trip" VALUES(902222,572,'8/24/2015 8:51','San Francisco Caltrain 2 (330 Townsend)',69,'8/24/2015 9:01','Temporary Transbay Terminal (Howard at Beale)',55,504,'Subscriber',94402); +INSERT INTO "trip" VALUES(902223,754,'8/24/2015 8:52','San Francisco Caltrain (Townsend at 4th)',70,'8/24/2015 9:04','Steuart at Market',74,475,'Subscriber',95008); +INSERT INTO "trip" VALUES(902224,260,'8/24/2015 8:52','Market at Sansome',77,'8/24/2015 8:56','2nd at Folsom',62,520,'Subscriber',94612); +INSERT INTO "trip" VALUES(902225,538,'8/24/2015 8:52','Steuart at Market',74,'8/24/2015 9:01','2nd at Townsend',61,379,'Subscriber',94534); +INSERT INTO "trip" VALUES(902226,669,'8/24/2015 8:52','San Francisco Caltrain (Townsend at 4th)',70,'8/24/2015 9:03','Market at Sansome',77,277,'Subscriber',94002); +INSERT INTO "trip" VALUES(902227,733,'8/24/2015 8:52','San Francisco Caltrain 2 (330 Townsend)',69,'8/24/2015 9:05','Spear at Folsom',49,356,'Subscriber',94040); +INSERT INTO "trip" VALUES(902228,928,'8/24/2015 8:52','San Francisco Caltrain 2 (330 Townsend)',69,'8/24/2015 9:08','Clay at Battery',41,96,'Subscriber',94301); +INSERT INTO "trip" VALUES(902229,343,'8/24/2015 8:53','Broadway St at Battery St',82,'8/24/2015 8:58','Temporary Transbay Terminal (Howard at Beale)',55,606,'Subscriber',94566); +INSERT INTO "trip" VALUES(902230,379,'8/24/2015 8:53','San Francisco Caltrain 2 (330 Townsend)',69,'8/24/2015 8:59','Townsend at 7th',65,29,'Subscriber',94040); +INSERT INTO "trip" VALUES(902231,380,'8/24/2015 8:53','Temporary Transbay Terminal (Howard at Beale)',55,'8/24/2015 9:00','2nd at Townsend',61,617,'Subscriber',94608); +INSERT INTO "trip" VALUES(902232,567,'8/24/2015 8:53','Civic Center BART (7th at Market)',72,'8/24/2015 9:03','Townsend at 7th',65,292,'Subscriber',94551); +INSERT INTO "trip" VALUES(902233,462,'8/24/2015 8:54','Steuart at Market',74,'8/24/2015 9:02','2nd at Townsend',61,382,'Subscriber',94609); +INSERT INTO "trip" VALUES(902234,271,'8/24/2015 8:54','2nd at Townsend',61,'8/24/2015 8:58','Howard at 2nd',63,313,'Subscriber',94105); +INSERT INTO "trip" VALUES(902235,662,'8/24/2015 8:54','Japantown',9,'8/24/2015 9:05','San Jose Diridon Caltrain Station',2,663,'Subscriber',94111); +INSERT INTO "trip" VALUES(902236,570,'8/24/2015 8:54','Civic Center BART (7th at Market)',72,'8/24/2015 9:04','Townsend at 7th',65,598,'Subscriber',94501); +INSERT INTO "trip" VALUES(902237,358,'8/24/2015 8:55','Market at 4th',76,'8/24/2015 9:01','San Francisco Caltrain (Townsend at 4th)',70,473,'Subscriber',95054); +INSERT INTO "trip" VALUES(902238,389,'8/24/2015 8:55','Powell Street BART',39,'8/24/2015 9:02','San Francisco Caltrain (Townsend at 4th)',70,611,'Subscriber',2780); +INSERT INTO "trip" VALUES(902239,389,'8/24/2015 8:56','Market at Sansome',77,'8/24/2015 9:02','2nd at South Park',64,336,'Subscriber',94105); +INSERT INTO "trip" VALUES(902241,390,'8/24/2015 8:57','2nd at Folsom',62,'8/24/2015 9:03','Commercial at Montgomery',45,623,'Subscriber',94107); +INSERT INTO "trip" VALUES(902242,1039,'8/24/2015 8:57','San Francisco Caltrain (Townsend at 4th)',70,'8/24/2015 9:14','Temporary Transbay Terminal (Howard at Beale)',55,372,'Subscriber',95112); +INSERT INTO "trip" VALUES(902243,550,'8/24/2015 8:58','Embarcadero at Sansome',60,'8/24/2015 9:07','Market at 4th',76,282,'Subscriber',94111); +INSERT INTO "trip" VALUES(902244,164,'8/24/2015 8:58','Market at Sansome',77,'8/24/2015 9:01','Howard at 2nd',63,624,'Subscriber',94518); +INSERT INTO "trip" VALUES(902245,1055,'8/24/2015 8:59','Temporary Transbay Terminal (Howard at Beale)',55,'8/24/2015 9:16','South Van Ness at Market',66,392,'Subscriber',94611); +INSERT INTO "trip" VALUES(902246,183,'8/24/2015 8:59','Embarcadero at Folsom',51,'8/24/2015 9:02','Steuart at Market',74,419,'Subscriber',94111); +INSERT INTO "trip" VALUES(902247,593,'8/24/2015 9:00','Temporary Transbay Terminal (Howard at Beale)',55,'8/24/2015 9:09','Grant Avenue at Columbus Avenue',73,468,'Subscriber',94708); +INSERT INTO "trip" VALUES(902248,119,'8/24/2015 8:59','Beale at Market',56,'8/24/2015 9:01','Temporary Transbay Terminal (Howard at Beale)',55,322,'Subscriber',94111); +INSERT INTO "trip" VALUES(902249,883,'8/24/2015 9:00','2nd at Townsend',61,'8/24/2015 9:15','Broadway St at Battery St',82,479,'Subscriber',94107); +INSERT INTO "trip" VALUES(902250,496,'8/24/2015 9:00','Harry Bridges Plaza (Ferry Building)',50,'8/24/2015 9:08','2nd at South Park',64,327,'Subscriber',94960); +INSERT INTO "trip" VALUES(902251,239,'8/24/2015 9:00','2nd at Folsom',62,'8/24/2015 9:04','Market at Sansome',77,214,'Subscriber',94107); +INSERT INTO "trip" VALUES(902252,287,'8/24/2015 9:01','2nd at Townsend',61,'8/24/2015 9:05','Howard at 2nd',63,444,'Subscriber',94041); +INSERT INTO "trip" VALUES(902253,296,'8/24/2015 9:01','Post at Kearny',47,'8/24/2015 9:06','5th at Howard',57,636,'Subscriber',94618); +INSERT INTO "trip" VALUES(902254,1247,'8/24/2015 9:01','San Francisco Caltrain (Townsend at 4th)',70,'8/24/2015 9:22','Mechanics Plaza (Market at Battery)',75,385,'Subscriber',94087); +INSERT INTO "trip" VALUES(902255,203,'8/24/2015 9:01','Golden Gate at Polk',59,'8/24/2015 9:05','Market at 10th',67,573,'Subscriber',94121); +INSERT INTO "trip" VALUES(902256,452,'8/24/2015 9:01','Howard at 2nd',63,'8/24/2015 9:09','San Francisco Caltrain 2 (330 Townsend)',69,313,'Subscriber',94518); +INSERT INTO "trip" VALUES(902258,536,'8/24/2015 9:02','2nd at Townsend',61,'8/24/2015 9:11','Harry Bridges Plaza (Ferry Building)',50,617,'Subscriber',93401); +INSERT INTO "trip" VALUES(902259,230,'8/24/2015 9:02','Mechanics Plaza (Market at Battery)',75,'8/24/2015 9:06','Market at 4th',76,310,'Subscriber',94558); +INSERT INTO "trip" VALUES(902260,268,'8/24/2015 9:02','Mountain View Caltrain Station',28,'8/24/2015 9:07','Evelyn Park and Ride',30,233,'Subscriber',94133); +INSERT INTO "trip" VALUES(902262,357,'8/24/2015 9:03','Powell Street BART',39,'8/24/2015 9:09','San Francisco Caltrain 2 (330 Townsend)',69,441,'Subscriber',94107); +INSERT INTO "trip" VALUES(902263,956,'8/24/2015 9:03','Steuart at Market',74,'8/24/2015 9:19','Townsend at 7th',65,283,'Subscriber',94903); +INSERT INTO "trip" VALUES(902264,321,'8/24/2015 9:03','Market at Sansome',77,'8/24/2015 9:08','2nd at South Park',64,538,'Subscriber',94610); +INSERT INTO "trip" VALUES(902265,1070,'8/24/2015 8:59','Townsend at 7th',65,'8/24/2015 9:17','Commercial at Montgomery',45,375,'Subscriber',94107); +INSERT INTO "trip" VALUES(902266,482,'8/24/2015 9:03','2nd at Townsend',61,'8/24/2015 9:11','Temporary Transbay Terminal (Howard at Beale)',55,318,'Subscriber',94117); +INSERT INTO "trip" VALUES(902268,417,'8/24/2015 9:04','Steuart at Market',74,'8/24/2015 9:11','Howard at 2nd',63,531,'Subscriber',94903); +INSERT INTO "trip" VALUES(902269,296,'8/24/2015 9:04','San Jose Diridon Caltrain Station',2,'8/24/2015 9:09','Adobe on Almaden',5,250,'Subscriber',94002); +INSERT INTO "trip" VALUES(902273,200,'8/24/2015 9:05','San Francisco Caltrain (Townsend at 4th)',70,'8/24/2015 9:08','Townsend at 7th',65,611,'Subscriber',94404); +INSERT INTO "trip" VALUES(902274,464,'8/24/2015 9:05','Golden Gate at Polk',59,'8/24/2015 9:13','Market at Sansome',77,209,'Subscriber',94102); +INSERT INTO "trip" VALUES(902275,562,'8/24/2015 9:05','San Francisco Caltrain (Townsend at 4th)',70,'8/24/2015 9:15','Powell Street BART',39,473,'Subscriber',94306); +INSERT INTO "trip" VALUES(902276,329,'8/24/2015 9:05','Steuart at Market',74,'8/24/2015 9:11','Embarcadero at Sansome',60,475,'Subscriber',94611); +INSERT INTO "trip" VALUES(902277,457,'8/24/2015 9:05','2nd at Townsend',61,'8/24/2015 9:13','Steuart at Market',74,382,'Subscriber',94158); +INSERT INTO "trip" VALUES(902278,413,'8/24/2015 9:06','Steuart at Market',74,'8/24/2015 9:12','2nd at Townsend',61,436,'Subscriber',94901); +INSERT INTO "trip" VALUES(902279,515,'8/24/2015 9:06','Golden Gate at Polk',59,'8/24/2015 9:14','Yerba Buena Center of the Arts (3rd @ Howard)',68,191,'Subscriber',94941); +INSERT INTO "trip" VALUES(902283,437,'8/24/2015 9:06','Golden Gate at Polk',59,'8/24/2015 9:13','Beale at Market',56,271,'Subscriber',94109); +INSERT INTO "trip" VALUES(902284,528,'8/24/2015 9:06','Steuart at Market',74,'8/24/2015 9:15','Broadway St at Battery St',82,443,'Subscriber',94114); +INSERT INTO "trip" VALUES(902286,346,'8/24/2015 9:06','Temporary Transbay Terminal (Howard at Beale)',55,'8/24/2015 9:12','Commercial at Montgomery',45,322,'Subscriber',94710); +INSERT INTO "trip" VALUES(902287,1108,'8/24/2015 9:06','San Francisco Caltrain (Townsend at 4th)',70,'8/24/2015 9:25','Broadway St at Battery St',82,563,'Subscriber',95051); +INSERT INTO "trip" VALUES(902288,377,'8/24/2015 9:07','Post at Kearny',47,'8/24/2015 9:13','Embarcadero at Folsom',51,134,'Subscriber',94133); +INSERT INTO "trip" VALUES(902289,358,'8/24/2015 9:07','San Jose Diridon Caltrain Station',2,'8/24/2015 9:13','Adobe on Almaden',5,163,'Subscriber',94110); +INSERT INTO "trip" VALUES(902292,355,'8/24/2015 9:07','5th at Howard',57,'8/24/2015 9:13','San Francisco Caltrain 2 (330 Townsend)',69,636,'Subscriber',94107); +INSERT INTO "trip" VALUES(902293,517,'8/24/2015 9:08','Civic Center BART (7th at Market)',72,'8/24/2015 9:17','Townsend at 7th',65,331,'Subscriber',94598); +INSERT INTO "trip" VALUES(902294,331,'8/24/2015 9:08','Market at Sansome',77,'8/24/2015 9:14','2nd at Townsend',61,380,'Subscriber',94611); +INSERT INTO "trip" VALUES(902299,1370,'8/24/2015 9:09','Mountain View City Hall',27,'8/24/2015 9:31','Mountain View City Hall',27,251,'Subscriber',94041); +INSERT INTO "trip" VALUES(902300,502,'8/24/2015 9:09','Steuart at Market',74,'8/24/2015 9:17','2nd at Townsend',61,275,'Subscriber',94110); +INSERT INTO "trip" VALUES(902301,963,'8/24/2015 9:09','San Francisco Caltrain 2 (330 Townsend)',69,'8/24/2015 9:25','Mechanics Plaza (Market at Battery)',75,441,'Subscriber',94301); +INSERT INTO "trip" VALUES(902302,621,'8/24/2015 9:09','Beale at Market',56,'8/24/2015 9:20','San Francisco Caltrain (Townsend at 4th)',70,459,'Subscriber',94117); +INSERT INTO "trip" VALUES(902303,689,'8/24/2015 9:09','San Francisco Caltrain 2 (330 Townsend)',69,'8/24/2015 9:21','Broadway St at Battery St',82,313,'Subscriber',95120); +INSERT INTO "trip" VALUES(902305,423,'8/24/2015 9:10','Steuart at Market',74,'8/24/2015 9:17','Embarcadero at Sansome',60,419,'Subscriber',94947); +INSERT INTO "trip" VALUES(902306,97,'8/24/2015 9:10','Beale at Market',56,'8/24/2015 9:12','Temporary Transbay Terminal (Howard at Beale)',55,328,'Subscriber',94010); +INSERT INTO "trip" VALUES(902307,820,'8/24/2015 9:10','Market at 4th',76,'8/24/2015 9:24','Powell at Post (Union Square)',71,431,'Customer',85298); +INSERT INTO "trip" VALUES(902308,62,'8/24/2015 9:10','2nd at Folsom',62,'8/24/2015 9:11','Howard at 2nd',63,520,'Subscriber',94107); +INSERT INTO "trip" VALUES(902309,395,'8/24/2015 9:11','Beale at Market',56,'8/24/2015 9:17','Broadway St at Battery St',82,607,'Subscriber',94111); +INSERT INTO "trip" VALUES(902310,595,'8/24/2015 9:11','Embarcadero at Sansome',60,'8/24/2015 9:21','Harry Bridges Plaza (Ferry Building)',50,549,'Subscriber',94133); +INSERT INTO "trip" VALUES(902312,604,'8/24/2015 9:12','Steuart at Market',74,'8/24/2015 9:22','2nd at Townsend',61,586,'Subscriber',94107); +INSERT INTO "trip" VALUES(902313,513,'8/24/2015 9:13','2nd at Townsend',61,'8/24/2015 9:21','Embarcadero at Folsom',51,379,'Subscriber',95014); +INSERT INTO "trip" VALUES(902316,513,'8/24/2015 9:13','Market at 10th',67,'8/24/2015 9:22','Market at Sansome',77,462,'Subscriber',94103); +INSERT INTO "trip" VALUES(902317,491,'8/24/2015 9:14','Harry Bridges Plaza (Ferry Building)',50,'8/24/2015 9:22','Post at Kearny',47,617,'Subscriber',95442); +INSERT INTO "trip" VALUES(902318,247,'8/24/2015 9:14','Mountain View Caltrain Station',28,'8/24/2015 9:19','Mountain View City Hall',27,35,'Subscriber',94107); +INSERT INTO "trip" VALUES(902319,481,'8/24/2015 9:15','2nd at Townsend',61,'8/24/2015 9:23','Spear at Folsom',49,546,'Subscriber',94404); +INSERT INTO "trip" VALUES(902320,232,'8/24/2015 9:15','Broadway St at Battery St',82,'8/24/2015 9:19','Steuart at Market',74,556,'Subscriber',94133); +INSERT INTO "trip" VALUES(902321,509,'8/24/2015 9:15','2nd at Townsend',61,'8/24/2015 9:24','Harry Bridges Plaza (Ferry Building)',50,436,'Subscriber',94107); +INSERT INTO "trip" VALUES(902322,614,'8/24/2015 9:15','Castro Street and El Camino Real',32,'8/24/2015 9:26','Mountain View Caltrain Station',28,705,'Subscriber',94103); +INSERT INTO "trip" VALUES(902323,752,'8/24/2015 9:16','Market at 10th',67,'8/24/2015 9:29','2nd at Townsend',61,659,'Subscriber',94107); +INSERT INTO "trip" VALUES(902324,745,'8/24/2015 9:17','Market at 10th',67,'8/24/2015 9:29','2nd at Townsend',61,449,'Subscriber',94549); +INSERT INTO "trip" VALUES(902325,355,'8/24/2015 9:17','San Jose Diridon Caltrain Station',2,'8/24/2015 9:23','San Pedro Square',6,82,'Subscriber',94105); +INSERT INTO "trip" VALUES(902326,535,'8/24/2015 9:17','2nd at Townsend',61,'8/24/2015 9:26','Broadway St at Battery St',82,380,'Subscriber',94027); +INSERT INTO "trip" VALUES(902327,364,'8/24/2015 9:17','Temporary Transbay Terminal (Howard at Beale)',55,'8/24/2015 9:23','2nd at Townsend',61,328,'Subscriber',94705); +INSERT INTO "trip" VALUES(902328,304,'8/24/2015 9:18','Market at 10th',67,'8/24/2015 9:23','Powell Street BART',39,374,'Subscriber',94102); +INSERT INTO "trip" VALUES(902329,741,'8/24/2015 9:18','2nd at Townsend',61,'8/24/2015 9:31','Davis at Jackson',42,275,'Subscriber',95111); +INSERT INTO "trip" VALUES(902330,582,'8/24/2015 9:20','2nd at Townsend',61,'8/24/2015 9:29','Broadway St at Battery St',82,278,'Subscriber',95129); +INSERT INTO "trip" VALUES(902331,671,'8/24/2015 9:20','San Francisco Caltrain 2 (330 Townsend)',69,'8/24/2015 9:31','Market at 10th',67,29,'Subscriber',95119); +INSERT INTO "trip" VALUES(902332,650,'8/24/2015 9:20','Temporary Transbay Terminal (Howard at Beale)',55,'8/24/2015 9:31','Embarcadero at Sansome',60,504,'Subscriber',94547); +INSERT INTO "trip" VALUES(902333,239,'8/24/2015 9:20','2nd at Townsend',61,'8/24/2015 9:24','San Francisco Caltrain 2 (330 Townsend)',69,437,'Subscriber',94107); +INSERT INTO "trip" VALUES(902334,487,'8/24/2015 9:21','2nd at Townsend',61,'8/24/2015 9:29','Embarcadero at Folsom',51,311,'Subscriber',94062); +INSERT INTO "trip" VALUES(902335,468,'8/24/2015 9:21','Temporary Transbay Terminal (Howard at Beale)',55,'8/24/2015 9:29','Broadway St at Battery St',82,372,'Subscriber',94602); +INSERT INTO "trip" VALUES(902336,253,'8/24/2015 9:21','2nd at Folsom',62,'8/24/2015 9:25','2nd at South Park',64,329,'Subscriber',94549); +INSERT INTO "trip" VALUES(902337,508,'8/24/2015 9:22','2nd at Townsend',61,'8/24/2015 9:30','Steuart at Market',74,586,'Subscriber',95120); +INSERT INTO "trip" VALUES(902338,389,'8/24/2015 9:22','San Jose Diridon Caltrain Station',2,'8/24/2015 9:29','San Jose Diridon Caltrain Station',2,688,'Subscriber',94040); +INSERT INTO "trip" VALUES(902340,259,'8/24/2015 9:23','Broadway St at Battery St',82,'8/24/2015 9:27','Steuart at Market',74,274,'Subscriber',94133); +INSERT INTO "trip" VALUES(902341,376,'8/24/2015 9:23','Beale at Market',56,'8/24/2015 9:29','Embarcadero at Bryant',54,271,'Subscriber',94080); +INSERT INTO "trip" VALUES(902343,642,'8/24/2015 9:23','Steuart at Market',74,'8/24/2015 9:34','2nd at South Park',64,556,'Subscriber',94901); +INSERT INTO "trip" VALUES(902346,677,'8/24/2015 9:23','Market at Sansome',77,'8/24/2015 9:35','Clay at Battery',41,56,'Subscriber',94132); +INSERT INTO "trip" VALUES(902347,505,'8/24/2015 9:24','Steuart at Market',74,'8/24/2015 9:32','Embarcadero at Sansome',60,382,'Subscriber',94111); +INSERT INTO "trip" VALUES(902348,459,'8/24/2015 9:24','Harry Bridges Plaza (Ferry Building)',50,'8/24/2015 9:32','Howard at 2nd',63,549,'Subscriber',94590); +INSERT INTO "trip" VALUES(902349,564,'8/24/2015 9:24','Grant Avenue at Columbus Avenue',73,'8/24/2015 9:34','Market at 4th',76,468,'Subscriber',94133); +INSERT INTO "trip" VALUES(902350,397,'8/24/2015 9:25','5th at Howard',57,'8/24/2015 9:31','Post at Kearny',47,535,'Subscriber',94107); +INSERT INTO "trip" VALUES(902353,476,'8/24/2015 9:25','Market at 10th',67,'8/24/2015 9:33','Market at 4th',76,599,'Subscriber',94103); +INSERT INTO "trip" VALUES(902354,197,'8/24/2015 9:26','Evelyn Park and Ride',30,'8/24/2015 9:29','Mountain View Caltrain Station',28,693,'Subscriber',95051); +INSERT INTO "trip" VALUES(902355,151,'8/24/2015 9:26','Temporary Transbay Terminal (Howard at Beale)',55,'8/24/2015 9:28','Embarcadero at Folsom',51,318,'Subscriber',94804); +INSERT INTO "trip" VALUES(902356,488,'8/24/2015 9:26','Ryland Park',84,'8/24/2015 9:34','San Jose Diridon Caltrain Station',2,488,'Subscriber',95110); +INSERT INTO "trip" VALUES(902357,739,'8/24/2015 9:26','Post at Kearny',47,'8/24/2015 9:38','Broadway St at Battery St',82,617,'Subscriber',94109); +INSERT INTO "trip" VALUES(902358,178,'8/24/2015 9:26','2nd at Folsom',62,'8/24/2015 9:29','Temporary Transbay Terminal (Howard at Beale)',55,581,'Subscriber',94158); +INSERT INTO "trip" VALUES(902359,411,'8/24/2015 9:26','Harry Bridges Plaza (Ferry Building)',50,'8/24/2015 9:33','Embarcadero at Sansome',60,436,'Subscriber',94566); +INSERT INTO "trip" VALUES(902360,293,'8/24/2015 9:27','5th at Howard',57,'8/24/2015 9:31','Market at 4th',76,158,'Subscriber',94103); +INSERT INTO "trip" VALUES(902361,494,'8/24/2015 9:27','2nd at South Park',64,'8/24/2015 9:35','Mechanics Plaza (Market at Battery)',75,516,'Subscriber',94107); +INSERT INTO "trip" VALUES(902362,1170,'8/24/2015 9:27','Clay at Battery',41,'8/24/2015 9:47','San Francisco Caltrain (Townsend at 4th)',70,478,'Subscriber',94133); +INSERT INTO "trip" VALUES(902363,401,'8/24/2015 9:27','Powell at Post (Union Square)',71,'8/24/2015 9:34','Steuart at Market',74,431,'Subscriber',94108); +INSERT INTO "trip" VALUES(902364,543,'8/24/2015 9:28','Temporary Transbay Terminal (Howard at Beale)',55,'8/24/2015 9:37','San Francisco Caltrain (Townsend at 4th)',70,472,'Subscriber',94602); +INSERT INTO "trip" VALUES(902365,717,'8/24/2015 9:29','Davis at Jackson',42,'8/24/2015 9:41','2nd at Townsend',61,558,'Subscriber',94111); +INSERT INTO "trip" VALUES(902366,595,'8/24/2015 9:29','Golden Gate at Polk',59,'8/24/2015 9:39','Howard at 2nd',63,429,'Subscriber',94102); +INSERT INTO "trip" VALUES(902367,434,'8/24/2015 9:29','Embarcadero at Sansome',60,'8/24/2015 9:36','Steuart at Market',74,415,'Customer','nil'); +INSERT INTO "trip" VALUES(902368,739,'8/24/2015 9:29','San Francisco Caltrain 2 (330 Townsend)',69,'8/24/2015 9:41','Mechanics Plaza (Market at Battery)',75,437,'Subscriber',94063); +INSERT INTO "trip" VALUES(902369,262,'8/24/2015 9:29','San Francisco Caltrain (Townsend at 4th)',70,'8/24/2015 9:34','Townsend at 7th',65,270,'Subscriber',94043); +INSERT INTO "trip" VALUES(902370,357,'8/24/2015 9:30','San Francisco Caltrain 2 (330 Townsend)',69,'8/24/2015 9:35','5th at Howard',57,569,'Subscriber',95050); +INSERT INTO "trip" VALUES(902371,333,'8/24/2015 9:30','Mechanics Plaza (Market at Battery)',75,'8/24/2015 9:35','Commercial at Montgomery',45,441,'Subscriber',94704); +INSERT INTO "trip" VALUES(902372,912,'8/24/2015 9:30','San Francisco Caltrain (Townsend at 4th)',70,'8/24/2015 9:45','Steuart at Market',74,300,'Subscriber',94404); +INSERT INTO "trip" VALUES(902373,682,'8/24/2015 9:30','San Francisco Caltrain (Townsend at 4th)',70,'8/24/2015 9:41','Embarcadero at Folsom',51,576,'Subscriber',95129); +INSERT INTO "trip" VALUES(902374,640,'8/24/2015 9:30','San Francisco Caltrain 2 (330 Townsend)',69,'8/24/2015 9:41','Steuart at Market',74,587,'Subscriber',94025); +INSERT INTO "trip" VALUES(902375,297,'8/24/2015 9:30','Temporary Transbay Terminal (Howard at Beale)',55,'8/24/2015 9:35','Yerba Buena Center of the Arts (3rd @ Howard)',68,581,'Subscriber',94610); +INSERT INTO "trip" VALUES(902376,570,'8/24/2015 9:30','San Francisco Caltrain 2 (330 Townsend)',69,'8/24/2015 9:40','Market at Sansome',77,408,'Subscriber',94303); +INSERT INTO "trip" VALUES(902377,435,'8/24/2015 9:31','2nd at Townsend',61,'8/24/2015 9:38','Townsend at 7th',65,659,'Subscriber',94107); +INSERT INTO "trip" VALUES(902378,259,'8/24/2015 9:31','San Francisco Caltrain 2 (330 Townsend)',69,'8/24/2015 9:35','Townsend at 7th',65,591,'Subscriber',94103); +INSERT INTO "trip" VALUES(902379,347,'8/24/2015 9:31','Powell Street BART',39,'8/24/2015 9:37','San Francisco Caltrain 2 (330 Townsend)',69,491,'Subscriber',94107); +INSERT INTO "trip" VALUES(902380,151,'8/24/2015 9:32','Powell Street BART',39,'8/24/2015 9:34','5th at Howard',57,326,'Subscriber',94024); +INSERT INTO "trip" VALUES(902381,301,'8/24/2015 9:32','Mechanics Plaza (Market at Battery)',75,'8/24/2015 9:37','Embarcadero at Folsom',51,407,'Subscriber',94941); +INSERT INTO "trip" VALUES(902382,252,'8/24/2015 9:34','Broadway St at Battery St',82,'8/24/2015 9:38','Beale at Market',56,351,'Subscriber',94107); +INSERT INTO "trip" VALUES(902383,383,'8/24/2015 9:34','Spear at Folsom',49,'8/24/2015 9:40','Commercial at Montgomery',45,355,'Subscriber',94105); +INSERT INTO "trip" VALUES(902384,407,'8/24/2015 9:34','Temporary Transbay Terminal (Howard at Beale)',55,'8/24/2015 9:41','Market at 4th',76,453,'Subscriber',94105); +INSERT INTO "trip" VALUES(902385,897,'8/24/2015 9:36','San Jose Diridon Caltrain Station',2,'8/24/2015 9:51','SJSU 4th at San Carlos',12,186,'Subscriber',94040); +INSERT INTO "trip" VALUES(902386,722,'8/24/2015 9:36','Market at 10th',67,'8/24/2015 9:48','Beale at Market',56,628,'Subscriber',94103); +INSERT INTO "trip" VALUES(902393,304,'8/24/2015 9:38','San Jose Diridon Caltrain Station',2,'8/24/2015 9:44','Santa Clara at Almaden',4,488,'Subscriber',94114); +INSERT INTO "trip" VALUES(902394,646,'8/24/2015 9:39','Townsend at 7th',65,'8/24/2015 9:50','Yerba Buena Center of the Arts (3rd @ Howard)',68,283,'Subscriber',94107); +INSERT INTO "trip" VALUES(902397,274,'8/24/2015 9:42','Townsend at 7th',65,'8/24/2015 9:46','San Francisco Caltrain 2 (330 Townsend)',69,611,'Subscriber',94103); +INSERT INTO "trip" VALUES(902399,247,'8/24/2015 9:42','Mountain View Caltrain Station',28,'8/24/2015 9:46','Mountain View City Hall',27,693,'Subscriber',94401); +INSERT INTO "trip" VALUES(902401,1594,'8/24/2015 9:43','Palo Alto Caltrain Station',34,'8/24/2015 10:09','California Ave Caltrain Station',36,715,'Subscriber',94115); +INSERT INTO "trip" VALUES(902402,460,'8/24/2015 9:44','Embarcadero at Sansome',60,'8/24/2015 9:52','Spear at Folsom',49,475,'Customer',94119); +INSERT INTO "trip" VALUES(902403,1498,'8/24/2015 9:44','Steuart at Market',74,'8/24/2015 10:09','Embarcadero at Sansome',60,587,'Subscriber',94608); +INSERT INTO "trip" VALUES(902404,596,'8/24/2015 9:44','2nd at Townsend',61,'8/24/2015 9:54','Harry Bridges Plaza (Ferry Building)',50,449,'Subscriber',94107); +INSERT INTO "trip" VALUES(902408,1123,'8/24/2015 9:45','Embarcadero at Bryant',54,'8/24/2015 10:03','Mechanics Plaza (Market at Battery)',75,271,'Subscriber',94105); +INSERT INTO "trip" VALUES(902409,383,'8/24/2015 9:45','Temporary Transbay Terminal (Howard at Beale)',55,'8/24/2015 9:51','2nd at South Park',64,606,'Subscriber',94610); +INSERT INTO "trip" VALUES(902410,234,'8/24/2015 9:45','Temporary Transbay Terminal (Howard at Beale)',55,'8/24/2015 9:49','Howard at 2nd',63,420,'Subscriber',94806); +INSERT INTO "trip" VALUES(902411,726,'8/24/2015 9:45','Market at Sansome',77,'8/24/2015 9:57','San Francisco Caltrain (Townsend at 4th)',70,462,'Subscriber',94549); +INSERT INTO "trip" VALUES(902412,778,'8/24/2015 9:46','Washington at Kearny',46,'8/24/2015 9:59','2nd at South Park',64,537,'Subscriber',94133); +INSERT INTO "trip" VALUES(902413,355,'8/24/2015 9:49','Market at Sansome',77,'8/24/2015 9:55','2nd at South Park',64,373,'Subscriber',94611); +INSERT INTO "trip" VALUES(902414,308,'8/24/2015 9:50','Embarcadero at Sansome',60,'8/24/2015 9:55','Steuart at Market',74,608,'Subscriber',94133); +INSERT INTO "trip" VALUES(902415,653,'8/24/2015 9:50','Civic Center BART (7th at Market)',72,'8/24/2015 10:01','Temporary Transbay Terminal (Howard at Beale)',55,354,'Subscriber',94103); +INSERT INTO "trip" VALUES(902416,465,'8/24/2015 9:51','Market at 4th',76,'8/24/2015 9:58','San Francisco Caltrain (Townsend at 4th)',70,282,'Subscriber',94105); +INSERT INTO "trip" VALUES(902417,313,'8/24/2015 9:51','Mountain View Caltrain Station',28,'8/24/2015 9:56','Castro Street and El Camino Real',32,705,'Subscriber',94105); +INSERT INTO "trip" VALUES(902418,634,'8/24/2015 9:51','San Francisco Caltrain (Townsend at 4th)',70,'8/24/2015 10:02','Steuart at Market',74,478,'Subscriber',94061); +INSERT INTO "trip" VALUES(902419,388,'8/24/2015 9:52','San Francisco Caltrain (Townsend at 4th)',70,'8/24/2015 9:59','Howard at 2nd',63,472,'Subscriber',94066); +INSERT INTO "trip" VALUES(902420,305,'8/24/2015 9:52','San Francisco Caltrain (Townsend at 4th)',70,'8/24/2015 9:57','Townsend at 7th',65,292,'Subscriber',94086); +INSERT INTO "trip" VALUES(902421,483,'8/24/2015 9:52','San Francisco Caltrain 2 (330 Townsend)',69,'8/24/2015 10:00','Yerba Buena Center of the Arts (3rd @ Howard)',68,611,'Subscriber',94070); +INSERT INTO "trip" VALUES(902422,250,'8/24/2015 9:52','Mountain View Caltrain Station',28,'8/24/2015 9:56','Mountain View City Hall',27,80,'Subscriber',94107); +INSERT INTO "trip" VALUES(902423,335,'8/24/2015 9:52','Howard at 2nd',63,'8/24/2015 9:58','Steuart at Market',74,455,'Subscriber',94105); +INSERT INTO "trip" VALUES(902424,677,'8/24/2015 9:55','Howard at 2nd',63,'8/24/2015 10:06','Townsend at 7th',65,409,'Subscriber',94608); +INSERT INTO "trip" VALUES(902425,571,'8/24/2015 9:55','San Francisco Caltrain 2 (330 Townsend)',69,'8/24/2015 10:04','Beale at Market',56,491,'Subscriber',94577); +INSERT INTO "trip" VALUES(902427,273,'8/24/2015 9:56','Market at 10th',67,'8/24/2015 10:01','Powell Street BART',39,573,'Subscriber',94117); +INSERT INTO "trip" VALUES(902428,414,'8/24/2015 9:57','Steuart at Market',74,'8/24/2015 10:04','Embarcadero at Sansome',60,431,'Subscriber',94111); +INSERT INTO "trip" VALUES(902429,521,'8/24/2015 9:58','San Francisco Caltrain (Townsend at 4th)',70,'8/24/2015 10:07','2nd at Folsom',62,462,'Subscriber',94105); +INSERT INTO "trip" VALUES(902431,168,'8/24/2015 10:00','Beale at Market',56,'8/24/2015 10:03','Temporary Transbay Terminal (Howard at Beale)',55,628,'Subscriber',94122); +INSERT INTO "trip" VALUES(902432,742,'8/24/2015 10:02','2nd at South Park',64,'8/24/2015 10:15','Embarcadero at Vallejo',48,606,'Subscriber',94602); +INSERT INTO "trip" VALUES(902434,1877,'8/24/2015 10:04','Embarcadero at Folsom',51,'8/24/2015 10:35','South Van Ness at Market',66,350,'Customer',92651); +INSERT INTO "trip" VALUES(902435,216,'8/24/2015 10:04','Post at Kearny',47,'8/24/2015 10:08','Howard at 2nd',63,535,'Subscriber',94108); +INSERT INTO "trip" VALUES(902436,434,'8/24/2015 10:04','Harry Bridges Plaza (Ferry Building)',50,'8/24/2015 10:11','Embarcadero at Sansome',60,449,'Subscriber',94612); +INSERT INTO "trip" VALUES(902437,989,'8/24/2015 10:04','5th at Howard',57,'8/24/2015 10:21','Harry Bridges Plaza (Ferry Building)',50,259,'Customer',7030); +INSERT INTO "trip" VALUES(902438,969,'8/24/2015 10:05','5th at Howard',57,'8/24/2015 10:21','Harry Bridges Plaza (Ferry Building)',50,569,'Customer',7030); +INSERT INTO "trip" VALUES(902439,597,'8/24/2015 10:06','Embarcadero at Sansome',60,'8/24/2015 10:16','Market at Sansome',77,530,'Subscriber',94111); +INSERT INTO "trip" VALUES(902440,460,'8/24/2015 10:07','Mechanics Plaza (Market at Battery)',75,'8/24/2015 10:14','Powell Street BART',39,416,'Subscriber',94102); +INSERT INTO "trip" VALUES(902441,726,'8/24/2015 10:05','Townsend at 7th',65,'8/24/2015 10:17','Temporary Transbay Terminal (Howard at Beale)',55,508,'Subscriber',94107); +INSERT INTO "trip" VALUES(902442,423,'8/24/2015 10:09','Market at 4th',76,'8/24/2015 10:16','Beale at Market',56,390,'Subscriber',94107); +INSERT INTO "trip" VALUES(902443,315,'8/24/2015 10:08','Market at 4th',76,'8/24/2015 10:14','San Francisco Caltrain (Townsend at 4th)',70,453,'Subscriber',94607); +INSERT INTO "trip" VALUES(902444,432,'8/24/2015 10:10','Temporary Transbay Terminal (Howard at Beale)',55,'8/24/2015 10:17','Market at 4th',76,628,'Subscriber',94608); +INSERT INTO "trip" VALUES(902445,592,'8/24/2015 10:11','Temporary Transbay Terminal (Howard at Beale)',55,'8/24/2015 10:21','Broadway St at Battery St',82,354,'Subscriber',94608); +INSERT INTO "trip" VALUES(902446,803,'8/24/2015 10:11','San Antonio Shopping Center',31,'8/24/2015 10:24','Mountain View Caltrain Station',28,123,'Subscriber',94040); +INSERT INTO "trip" VALUES(902448,465,'8/24/2015 10:14','Embarcadero at Vallejo',48,'8/24/2015 10:21','Temporary Transbay Terminal (Howard at Beale)',55,343,'Subscriber',94107); +INSERT INTO "trip" VALUES(902449,223,'8/24/2015 10:15','Palo Alto Caltrain Station',34,'8/24/2015 10:19','Cowper at University',37,41,'Subscriber',94107); +INSERT INTO "trip" VALUES(902450,464,'8/24/2015 10:16','5th at Howard',57,'8/24/2015 10:24','Temporary Transbay Terminal (Howard at Beale)',55,568,'Subscriber',94170); +INSERT INTO "trip" VALUES(902451,843,'8/24/2015 10:16','2nd at Folsom',62,'8/24/2015 10:30','Broadway St at Battery St',82,451,'Subscriber',94110); +INSERT INTO "trip" VALUES(902452,191,'8/24/2015 10:14','Palo Alto Caltrain Station',34,'8/24/2015 10:18','Cowper at University',37,120,'Subscriber',94108); +INSERT INTO "trip" VALUES(902453,245,'8/24/2015 10:17','Townsend at 7th',65,'8/24/2015 10:21','San Francisco Caltrain 2 (330 Townsend)',69,659,'Subscriber',94107); +INSERT INTO "trip" VALUES(902454,518,'8/24/2015 10:17','San Francisco Caltrain (Townsend at 4th)',70,'8/24/2015 10:26','Temporary Transbay Terminal (Howard at Beale)',55,453,'Subscriber',95014); +INSERT INTO "trip" VALUES(902455,234,'8/24/2015 10:18','Broadway St at Battery St',82,'8/24/2015 10:22','Mechanics Plaza (Market at Battery)',75,313,'Subscriber',94117); +INSERT INTO "trip" VALUES(902458,801,'8/24/2015 10:18','Market at 4th',76,'8/24/2015 10:31','Embarcadero at Sansome',60,158,'Subscriber',94521); +INSERT INTO "trip" VALUES(902459,1084,'8/24/2015 10:18','San Francisco Caltrain (Townsend at 4th)',70,'8/24/2015 10:36','South Van Ness at Market',66,282,'Subscriber',95118); +INSERT INTO "trip" VALUES(902460,462,'8/24/2015 10:18','Mechanics Plaza (Market at Battery)',75,'8/24/2015 10:26','Washington at Kearny',46,585,'Subscriber',94702); +INSERT INTO "trip" VALUES(902463,444,'8/24/2015 10:19','San Francisco Caltrain (Townsend at 4th)',70,'8/24/2015 10:27','Market at 4th',76,509,'Subscriber',94306); +INSERT INTO "trip" VALUES(902465,528,'8/24/2015 10:21','San Francisco Caltrain (Townsend at 4th)',70,'8/24/2015 10:29','2nd at Folsom',62,500,'Subscriber',94403); +INSERT INTO "trip" VALUES(902467,489,'8/24/2015 10:21','Spear at Folsom',49,'8/24/2015 10:29','Harry Bridges Plaza (Ferry Building)',50,522,'Subscriber',94105); +INSERT INTO "trip" VALUES(902468,483,'8/24/2015 10:21','San Francisco Caltrain (Townsend at 4th)',70,'8/24/2015 10:29','Temporary Transbay Terminal (Howard at Beale)',55,598,'Subscriber',94401); +INSERT INTO "trip" VALUES(902471,634,'8/24/2015 10:22','Mechanics Plaza (Market at Battery)',75,'8/24/2015 10:33','Embarcadero at Bryant',54,271,'Subscriber',94105); +INSERT INTO "trip" VALUES(902472,303,'8/24/2015 10:22','Clay at Battery',41,'8/24/2015 10:27','Temporary Transbay Terminal (Howard at Beale)',55,631,'Subscriber',94133); +INSERT INTO "trip" VALUES(902474,789,'8/24/2015 10:26','Broadway St at Battery St',82,'8/24/2015 10:39','2nd at Townsend',61,412,'Subscriber',94133); +INSERT INTO "trip" VALUES(902475,450,'8/24/2015 10:30','Mountain View Caltrain Station',28,'8/24/2015 10:37','Mountain View City Hall',27,673,'Subscriber',2780); +INSERT INTO "trip" VALUES(902476,494,'8/24/2015 10:30','Steuart at Market',74,'8/24/2015 10:38','2nd at Townsend',61,455,'Subscriber',94107); +INSERT INTO "trip" VALUES(902477,348,'8/24/2015 10:31','Market at Sansome',77,'8/24/2015 10:37','2nd at South Park',64,286,'Subscriber',94544); +INSERT INTO "trip" VALUES(902478,453,'8/24/2015 10:36','Powell Street BART',39,'8/24/2015 10:43','San Francisco Caltrain 2 (330 Townsend)',69,359,'Subscriber',94107); +INSERT INTO "trip" VALUES(902479,276,'8/24/2015 10:39','San Antonio Caltrain Station',29,'8/24/2015 10:43','San Antonio Shopping Center',31,239,'Subscriber',94115); +INSERT INTO "trip" VALUES(902480,83921,'8/24/2015 10:39','Harry Bridges Plaza (Ferry Building)',50,'8/25/2015 9:58','Harry Bridges Plaza (Ferry Building)',50,259,'Customer',76185); +INSERT INTO "trip" VALUES(902481,83888,'8/24/2015 10:40','Harry Bridges Plaza (Ferry Building)',50,'8/25/2015 9:58','Harry Bridges Plaza (Ferry Building)',50,569,'Customer',76185); +INSERT INTO "trip" VALUES(902482,446,'8/24/2015 10:41','Embarcadero at Bryant',54,'8/24/2015 10:48','Beale at Market',56,271,'Subscriber',94105); +INSERT INTO "trip" VALUES(902483,669,'8/24/2015 10:42','Steuart at Market',74,'8/24/2015 10:53','San Francisco Caltrain (Townsend at 4th)',70,274,'Subscriber',94705); +INSERT INTO "trip" VALUES(902484,1316,'8/24/2015 10:43','Powell at Post (Union Square)',71,'8/24/2015 11:05','Embarcadero at Sansome',60,444,'Subscriber',94109); +INSERT INTO "trip" VALUES(902485,139,'8/24/2015 10:43','Davis at Jackson',42,'8/24/2015 10:46','Harry Bridges Plaza (Ferry Building)',50,495,'Subscriber',94105); +INSERT INTO "trip" VALUES(902486,29292,'8/24/2015 10:45','Mountain View Caltrain Station',28,'8/24/2015 18:53','Mountain View Caltrain Station',28,123,'Customer',94041); +INSERT INTO "trip" VALUES(902487,83511,'8/24/2015 10:46','Harry Bridges Plaza (Ferry Building)',50,'8/25/2015 9:57','Harry Bridges Plaza (Ferry Building)',50,522,'Customer',76185); +INSERT INTO "trip" VALUES(902488,498,'8/24/2015 10:48','Post at Kearny',47,'8/24/2015 10:57','Embarcadero at Folsom',51,496,'Subscriber',95442); +INSERT INTO "trip" VALUES(902489,470,'8/24/2015 10:51','San Francisco Caltrain 2 (330 Townsend)',69,'8/24/2015 10:59','Howard at 2nd',63,659,'Subscriber',94111); +INSERT INTO "trip" VALUES(902490,778,'8/24/2015 10:52','San Francisco Caltrain 2 (330 Townsend)',69,'8/24/2015 11:05','Market at 10th',67,404,'Subscriber',94041); +INSERT INTO "trip" VALUES(902491,589,'8/24/2015 10:52','San Francisco Caltrain 2 (330 Townsend)',69,'8/24/2015 11:02','Howard at 2nd',63,359,'Subscriber',94070); +INSERT INTO "trip" VALUES(902492,240,'8/24/2015 10:53','San Francisco Caltrain 2 (330 Townsend)',69,'8/24/2015 10:57','Townsend at 7th',65,567,'Subscriber',94103); +INSERT INTO "trip" VALUES(902493,661,'8/24/2015 10:54','San Francisco Caltrain (Townsend at 4th)',70,'8/24/2015 11:06','Commercial at Montgomery',45,525,'Subscriber',95014); +INSERT INTO "trip" VALUES(902494,241,'8/24/2015 10:55','St James Park',13,'8/24/2015 10:59','MLK Library',11,37,'Subscriber',94551); +INSERT INTO "trip" VALUES(902497,3058,'8/24/2015 11:03','Embarcadero at Sansome',60,'8/24/2015 11:54','Broadway St at Battery St',82,504,'Customer',92833); +INSERT INTO "trip" VALUES(902498,3109,'8/24/2015 11:03','Embarcadero at Sansome',60,'8/24/2015 11:55','Broadway St at Battery St',82,158,'Customer',92833); +INSERT INTO "trip" VALUES(902499,867,'8/24/2015 11:04','Spear at Folsom',49,'8/24/2015 11:19','Townsend at 7th',65,475,'Subscriber',94105); +INSERT INTO "trip" VALUES(902504,24430,'8/24/2015 11:08','Davis at Jackson',42,'8/24/2015 17:55','Davis at Jackson',42,630,'Customer',94596); +INSERT INTO "trip" VALUES(902505,1360,'8/24/2015 11:09','Townsend at 7th',65,'8/24/2015 11:31','Market at 4th',76,567,'Subscriber',94302); +INSERT INTO "trip" VALUES(902507,24187,'8/24/2015 11:12','Davis at Jackson',42,'8/24/2015 17:55','Davis at Jackson',42,386,'Customer',94596); +INSERT INTO "trip" VALUES(902508,471,'8/24/2015 11:16','Market at Sansome',77,'8/24/2015 11:24','San Francisco Caltrain 2 (330 Townsend)',69,465,'Subscriber',94111); +INSERT INTO "trip" VALUES(902509,758,'8/24/2015 11:17','Golden Gate at Polk',59,'8/24/2015 11:29','Temporary Transbay Terminal (Howard at Beale)',55,364,'Subscriber',94109); +INSERT INTO "trip" VALUES(902510,1173,'8/24/2015 11:18','Powell Street BART',39,'8/24/2015 11:37','Broadway St at Battery St',82,614,'Subscriber',94102); +INSERT INTO "trip" VALUES(902511,425,'8/24/2015 11:23','2nd at Townsend',61,'8/24/2015 11:30','Market at 4th',76,455,'Subscriber',94107); +INSERT INTO "trip" VALUES(902512,566,'8/24/2015 11:25','San Francisco Caltrain (Townsend at 4th)',70,'8/24/2015 11:34','Temporary Transbay Terminal (Howard at Beale)',55,459,'Subscriber',94010); +INSERT INTO "trip" VALUES(902513,358,'8/24/2015 11:25','Market at Sansome',77,'8/24/2015 11:31','Embarcadero at Folsom',51,353,'Subscriber',94549); +INSERT INTO "trip" VALUES(902514,202,'8/24/2015 11:25','Temporary Transbay Terminal (Howard at Beale)',55,'8/24/2015 11:28','Beale at Market',56,598,'Subscriber',94111); +INSERT INTO "trip" VALUES(902515,339,'8/24/2015 11:26','San Francisco Caltrain 2 (330 Townsend)',69,'8/24/2015 11:32','5th at Howard',57,556,'Subscriber',94402); +INSERT INTO "trip" VALUES(902516,1185,'8/24/2015 11:26','San Francisco Caltrain 2 (330 Townsend)',69,'8/24/2015 11:46','Davis at Jackson',42,393,'Subscriber',94086); +INSERT INTO "trip" VALUES(902517,226,'8/24/2015 11:26','Mountain View Caltrain Station',28,'8/24/2015 11:30','Mountain View City Hall',27,182,'Subscriber',94114); +INSERT INTO "trip" VALUES(902518,808,'8/24/2015 11:28','Steuart at Market',74,'8/24/2015 11:41','5th at Howard',57,415,'Customer',7030); +INSERT INTO "trip" VALUES(902519,814,'8/24/2015 11:28','Steuart at Market',74,'8/24/2015 11:41','5th at Howard',57,300,'Customer',7030); +INSERT INTO "trip" VALUES(902520,813,'8/24/2015 11:30','Mountain View Caltrain Station',28,'8/24/2015 11:44','San Antonio Shopping Center',31,650,'Customer',94920); +INSERT INTO "trip" VALUES(902524,203,'8/24/2015 11:32','Commercial at Montgomery',45,'8/24/2015 11:36','Beale at Market',56,590,'Subscriber',94596); +INSERT INTO "trip" VALUES(902528,522,'8/24/2015 11:37','Beale at Market',56,'8/24/2015 11:45','2nd at Townsend',61,351,'Subscriber',94107); +INSERT INTO "trip" VALUES(902529,247,'8/24/2015 11:41','2nd at Folsom',62,'8/24/2015 11:45','Spear at Folsom',49,672,'Subscriber',94105); +INSERT INTO "trip" VALUES(902530,276,'8/24/2015 11:44','Steuart at Market',74,'8/24/2015 11:48','Market at Sansome',77,608,'Subscriber',94117); +INSERT INTO "trip" VALUES(902532,629,'8/24/2015 11:44','Powell at Post (Union Square)',71,'8/24/2015 11:55','Spear at Folsom',49,411,'Subscriber',94102); +INSERT INTO "trip" VALUES(902533,1253,'8/24/2015 11:44','Powell Street BART',39,'8/24/2015 12:05','Market at 10th',67,557,'Customer',3054); +INSERT INTO "trip" VALUES(902534,1203,'8/24/2015 11:45','Powell Street BART',39,'8/24/2015 12:05','Market at 10th',67,541,'Customer',3054); +INSERT INTO "trip" VALUES(902535,511,'8/24/2015 11:45','Market at 10th',67,'8/24/2015 11:54','Market at Sansome',77,566,'Subscriber',94041); +INSERT INTO "trip" VALUES(902536,368,'8/24/2015 11:46','Temporary Transbay Terminal (Howard at Beale)',55,'8/24/2015 11:52','5th at Howard',57,459,'Subscriber',94170); +INSERT INTO "trip" VALUES(902538,268,'8/24/2015 11:48','St James Park',13,'8/24/2015 11:52','MLK Library',11,14,'Subscriber',95112); +INSERT INTO "trip" VALUES(902539,535,'8/24/2015 11:48','Grant Avenue at Columbus Avenue',73,'8/24/2015 11:57','Market at 4th',76,278,'Subscriber',94133); +INSERT INTO "trip" VALUES(902540,621,'8/24/2015 11:50','San Francisco Caltrain 2 (330 Townsend)',69,'8/24/2015 12:00','Spear at Folsom',49,502,'Subscriber',94107); +INSERT INTO "trip" VALUES(902541,292,'8/24/2015 11:50','Beale at Market',56,'8/24/2015 11:55','Broadway St at Battery St',82,590,'Subscriber',94112); +INSERT INTO "trip" VALUES(902542,449,'8/24/2015 11:52','2nd at Townsend',61,'8/24/2015 12:00','Harry Bridges Plaza (Ferry Building)',50,328,'Subscriber',94549); +INSERT INTO "trip" VALUES(902543,614,'8/24/2015 11:53','Embarcadero at Vallejo',48,'8/24/2015 12:03','2nd at Townsend',61,606,'Subscriber',94595); +INSERT INTO "trip" VALUES(902544,321,'8/24/2015 11:53','Howard at 2nd',63,'8/24/2015 11:59','Embarcadero at Bryant',54,535,'Subscriber',94107); +INSERT INTO "trip" VALUES(902545,597,'8/24/2015 11:54','San Francisco City Hall',58,'8/24/2015 12:04','San Francisco Caltrain 2 (330 Townsend)',69,402,'Subscriber',94107); +INSERT INTO "trip" VALUES(902546,438,'8/24/2015 11:54','Embarcadero at Sansome',60,'8/24/2015 12:01','Harry Bridges Plaza (Ferry Building)',50,335,'Subscriber',94941); +INSERT INTO "trip" VALUES(902547,735,'8/24/2015 11:55','San Francisco Caltrain 2 (330 Townsend)',69,'8/24/2015 12:07','San Francisco Caltrain 2 (330 Townsend)',69,465,'Subscriber',94044); +INSERT INTO "trip" VALUES(902552,128,'8/24/2015 11:57','2nd at South Park',64,'8/24/2015 11:59','2nd at Folsom',62,336,'Subscriber',95113); +INSERT INTO "trip" VALUES(902555,753,'8/24/2015 11:59','San Francisco Caltrain 2 (330 Townsend)',69,'8/24/2015 12:11','5th at Howard',57,482,'Customer','nil'); +INSERT INTO "trip" VALUES(902556,275,'8/24/2015 11:59','Steuart at Market',74,'8/24/2015 12:04','Embarcadero at Vallejo',48,478,'Subscriber',94103); +INSERT INTO "trip" VALUES(902557,183,'8/24/2015 12:00','2nd at Townsend',61,'8/24/2015 12:03','San Francisco Caltrain (Townsend at 4th)',70,558,'Subscriber',94107); +INSERT INTO "trip" VALUES(902558,371,'8/24/2015 12:01','Mechanics Plaza (Market at Battery)',75,'8/24/2015 12:07','Spear at Folsom',49,437,'Subscriber',94901); +INSERT INTO "trip" VALUES(902559,626,'8/24/2015 12:01','San Francisco Caltrain (Townsend at 4th)',70,'8/24/2015 12:11','5th at Howard',57,629,'Customer','nil'); +INSERT INTO "trip" VALUES(902560,186,'8/24/2015 12:03','Embarcadero at Bryant',54,'8/24/2015 12:06','Embarcadero at Folsom',51,535,'Subscriber',94401); +INSERT INTO "trip" VALUES(902561,312,'8/24/2015 12:04','Beale at Market',56,'8/24/2015 12:09','Embarcadero at Vallejo',48,271,'Subscriber',94941); +INSERT INTO "trip" VALUES(902564,214,'8/24/2015 12:05','2nd at South Park',64,'8/24/2015 12:08','Howard at 2nd',63,373,'Subscriber',94611); +INSERT INTO "trip" VALUES(902565,328,'8/24/2015 12:05','Commercial at Montgomery',45,'8/24/2015 12:11','Yerba Buena Center of the Arts (3rd @ Howard)',68,527,'Subscriber',94107); +INSERT INTO "trip" VALUES(902568,406,'8/24/2015 12:06','San Francisco City Hall',58,'8/24/2015 12:13','Civic Center BART (7th at Market)',72,652,'Subscriber',94061); +INSERT INTO "trip" VALUES(902575,378,'8/24/2015 12:12','5th at Howard',57,'8/24/2015 12:18','Market at 4th',76,482,'Customer','nil'); +INSERT INTO "trip" VALUES(902576,310,'8/24/2015 12:13','5th at Howard',57,'8/24/2015 12:18','Market at 4th',76,629,'Customer','nil'); +INSERT INTO "trip" VALUES(902579,401,'8/24/2015 12:18','Commercial at Montgomery',45,'8/24/2015 12:25','Market at Sansome',77,525,'Subscriber',94704); +INSERT INTO "trip" VALUES(902582,331,'8/24/2015 12:22','Beale at Market',56,'8/24/2015 12:27','Commercial at Montgomery',45,390,'Subscriber',94596); +INSERT INTO "trip" VALUES(902583,564,'8/24/2015 12:22','San Francisco Caltrain (Townsend at 4th)',70,'8/24/2015 12:32','Post at Kearny',47,274,'Subscriber',94111); +INSERT INTO "trip" VALUES(902584,440,'8/24/2015 12:22','Embarcadero at Vallejo',48,'8/24/2015 12:30','Embarcadero at Bryant',54,279,'Subscriber',94105); +INSERT INTO "trip" VALUES(902585,1316,'8/24/2015 12:23','Temporary Transbay Terminal (Howard at Beale)',55,'8/24/2015 12:45','Temporary Transbay Terminal (Howard at Beale)',55,631,'Subscriber',94501); +INSERT INTO "trip" VALUES(902586,359,'8/24/2015 12:24','5th at Howard',57,'8/24/2015 12:30','2nd at South Park',64,415,'Subscriber',94118); +INSERT INTO "trip" VALUES(902587,511,'8/24/2015 12:25','Steuart at Market',74,'8/24/2015 12:34','Market at 4th',76,586,'Subscriber',94306); +INSERT INTO "trip" VALUES(902588,464,'8/24/2015 12:26','Market at Sansome',77,'8/24/2015 12:34','Davis at Jackson',42,408,'Subscriber',94117); +INSERT INTO "trip" VALUES(902589,804,'8/24/2015 12:28','2nd at South Park',64,'8/24/2015 12:41','Embarcadero at Sansome',60,286,'Subscriber',94595); +INSERT INTO "trip" VALUES(902598,319,'8/24/2015 12:34','San Francisco Caltrain 2 (330 Townsend)',69,'8/24/2015 12:40','Townsend at 7th',65,402,'Subscriber',94107); +INSERT INTO "trip" VALUES(902601,406,'8/24/2015 12:39','2nd at Folsom',62,'8/24/2015 12:46','San Francisco Caltrain (Townsend at 4th)',70,336,'Subscriber',95113); +INSERT INTO "trip" VALUES(902602,492,'8/24/2015 12:43','Embarcadero at Bryant',54,'8/24/2015 12:52','Howard at 2nd',63,279,'Subscriber',94107); +INSERT INTO "trip" VALUES(902603,670,'8/24/2015 12:44','Beale at Market',56,'8/24/2015 12:55','Golden Gate at Polk',59,507,'Subscriber',94109); +INSERT INTO "trip" VALUES(902604,531,'8/24/2015 12:47','Harry Bridges Plaza (Ferry Building)',50,'8/24/2015 12:56','2nd at Townsend',61,328,'Subscriber',94549); +INSERT INTO "trip" VALUES(902605,171,'8/24/2015 12:45','Civic Center BART (7th at Market)',72,'8/24/2015 12:48','Powell Street BART',39,652,'Subscriber',94501); +INSERT INTO "trip" VALUES(902606,461,'8/24/2015 12:50','Castro Street and El Camino Real',32,'8/24/2015 12:58','Mountain View Caltrain Station',28,46,'Subscriber',94536); +INSERT INTO "trip" VALUES(902607,233,'8/24/2015 12:51','Market at 10th',67,'8/24/2015 12:55','Powell Street BART',39,636,'Subscriber',94107); +INSERT INTO "trip" VALUES(902608,431,'8/24/2015 12:54','Post at Kearny',47,'8/24/2015 13:02','Steuart at Market',74,362,'Subscriber',94306); +INSERT INTO "trip" VALUES(902609,661,'8/24/2015 12:55','2nd at Folsom',62,'8/24/2015 13:06','Townsend at 7th',65,462,'Subscriber',94403); +INSERT INTO "trip" VALUES(902610,349,'8/24/2015 12:57','Embarcadero at Folsom',51,'8/24/2015 13:02','Market at Sansome',77,407,'Subscriber',94549); +INSERT INTO "trip" VALUES(902611,317,'8/24/2015 13:00','Embarcadero at Vallejo',48,'8/24/2015 13:05','Beale at Market',56,512,'Subscriber',94941); +INSERT INTO "trip" VALUES(902612,1116,'8/24/2015 13:00','Mechanics Plaza (Market at Battery)',75,'8/24/2015 13:18','San Francisco Caltrain (Townsend at 4th)',70,516,'Customer','nil'); +INSERT INTO "trip" VALUES(902613,455,'8/24/2015 13:03','Mechanics Plaza (Market at Battery)',75,'8/24/2015 13:10','Embarcadero at Bryant',54,483,'Subscriber',94105); +INSERT INTO "trip" VALUES(902614,221,'8/24/2015 13:06','2nd at South Park',64,'8/24/2015 13:09','Howard at 2nd',63,415,'Subscriber',94118); +INSERT INTO "trip" VALUES(902615,6419,'8/24/2015 13:07','San Francisco Caltrain 2 (330 Townsend)',69,'8/24/2015 14:54','Embarcadero at Sansome',60,329,'Customer',85255); +INSERT INTO "trip" VALUES(902616,6401,'8/24/2015 13:08','San Francisco Caltrain 2 (330 Townsend)',69,'8/24/2015 14:55','Embarcadero at Sansome',60,320,'Customer',85255); +INSERT INTO "trip" VALUES(902617,337,'8/24/2015 13:09','Spear at Folsom',49,'8/24/2015 13:14','Mechanics Plaza (Market at Battery)',75,672,'Subscriber',94901); +INSERT INTO "trip" VALUES(902618,272,'8/24/2015 13:12','Davis at Jackson',42,'8/24/2015 13:16','Temporary Transbay Terminal (Howard at Beale)',55,408,'Subscriber',94111); +INSERT INTO "trip" VALUES(902619,166,'8/24/2015 13:12','Mountain View City Hall',27,'8/24/2015 13:15','Castro Street and El Camino Real',32,94,'Subscriber',94536); +INSERT INTO "trip" VALUES(902620,545,'8/24/2015 13:14','Embarcadero at Bryant',54,'8/24/2015 13:23','Embarcadero at Vallejo',48,483,'Subscriber',94105); +INSERT INTO "trip" VALUES(902621,382,'8/24/2015 13:15','Post at Kearny',47,'8/24/2015 13:21','Steuart at Market',74,578,'Subscriber',94117); +INSERT INTO "trip" VALUES(902622,275,'8/24/2015 13:18','2nd at Folsom',62,'8/24/2015 13:22','Commercial at Montgomery',45,500,'Subscriber',94107); +INSERT INTO "trip" VALUES(902623,1021,'8/24/2015 13:19','Davis at Jackson',42,'8/24/2015 13:36','Townsend at 7th',65,275,'Subscriber',94111); +INSERT INTO "trip" VALUES(902624,252,'8/24/2015 13:19','Howard at 2nd',63,'8/24/2015 13:23','5th at Howard',57,520,'Subscriber',94118); +INSERT INTO "trip" VALUES(902625,434,'8/24/2015 13:22','2nd at South Park',64,'8/24/2015 13:29','Post at Kearny',47,537,'Subscriber',94107); +INSERT INTO "trip" VALUES(902626,1320,'8/24/2015 13:25','Townsend at 7th',65,'8/24/2015 13:47','Townsend at 7th',65,462,'Subscriber',94551); +INSERT INTO "trip" VALUES(902627,2137,'8/24/2015 13:26','Howard at 2nd',63,'8/24/2015 14:02','Townsend at 7th',65,549,'Subscriber',94105); +INSERT INTO "trip" VALUES(902628,332,'8/24/2015 13:27','Davis at Jackson',42,'8/24/2015 13:32','Market at Sansome',77,498,'Subscriber',94117); +INSERT INTO "trip" VALUES(902630,510,'8/24/2015 13:34','Golden Gate at Polk',59,'8/24/2015 13:42','Beale at Market',56,507,'Subscriber',94109); +INSERT INTO "trip" VALUES(902631,517,'8/24/2015 13:37','2nd at Townsend',61,'8/24/2015 13:45','Harry Bridges Plaza (Ferry Building)',50,606,'Subscriber',94612); +INSERT INTO "trip" VALUES(902632,374,'8/24/2015 13:39','Clay at Battery',41,'8/24/2015 13:45','Embarcadero at Sansome',60,575,'Subscriber',94941); +INSERT INTO "trip" VALUES(902633,153,'8/24/2015 13:40','Powell Street BART',39,'8/24/2015 13:43','Civic Center BART (7th at Market)',72,652,'Subscriber',94501); +INSERT INTO "trip" VALUES(902635,459,'8/24/2015 13:43','Broadway St at Battery St',82,'8/24/2015 13:51','Embarcadero at Sansome',60,614,'Subscriber',94118); +INSERT INTO "trip" VALUES(902636,466,'8/24/2015 13:47','San Jose Diridon Caltrain Station',2,'8/24/2015 13:55','St James Park',13,65,'Subscriber',94107); +INSERT INTO "trip" VALUES(902637,177,'8/24/2015 13:50','Davis at Jackson',42,'8/24/2015 13:53','Embarcadero at Vallejo',48,393,'Subscriber',94804); +INSERT INTO "trip" VALUES(902638,785,'8/24/2015 13:50','5th at Howard',57,'8/24/2015 14:03','Market at 10th',67,520,'Subscriber',94103); +INSERT INTO "trip" VALUES(902639,564,'8/24/2015 13:52','Market at 10th',67,'8/24/2015 14:02','Market at Sansome',77,29,'Subscriber',94611); +INSERT INTO "trip" VALUES(902640,487,'8/24/2015 13:57','Ryland Park',84,'8/24/2015 14:05','Santa Clara County Civic Center',80,61,'Subscriber',95112); +INSERT INTO "trip" VALUES(902641,529,'8/24/2015 14:01','Powell Street BART',39,'8/24/2015 14:10','San Francisco Caltrain 2 (330 Townsend)',69,632,'Subscriber',94061); +INSERT INTO "trip" VALUES(902642,693,'8/24/2015 14:02','Powell Street BART',39,'8/24/2015 14:13','Embarcadero at Vallejo',48,473,'Subscriber',94114); +INSERT INTO "trip" VALUES(902644,805,'8/24/2015 14:10','Townsend at 7th',65,'8/24/2015 14:23','2nd at Folsom',62,591,'Subscriber',94403); +INSERT INTO "trip" VALUES(902645,506,'8/24/2015 14:10','Temporary Transbay Terminal (Howard at Beale)',55,'8/24/2015 14:19','Grant Avenue at Columbus Avenue',73,343,'Subscriber',94133); +INSERT INTO "trip" VALUES(902646,1090,'8/24/2015 14:12','California Ave Caltrain Station',36,'8/24/2015 14:30','Palo Alto Caltrain Station',34,105,'Subscriber',94306); +INSERT INTO "trip" VALUES(902647,1074,'8/24/2015 14:12','California Ave Caltrain Station',36,'8/24/2015 14:30','Palo Alto Caltrain Station',34,252,'Subscriber',94306); +INSERT INTO "trip" VALUES(902648,120,'8/24/2015 14:15','Temporary Transbay Terminal (Howard at Beale)',55,'8/24/2015 14:17','Howard at 2nd',63,453,'Subscriber',94403); +INSERT INTO "trip" VALUES(902649,520,'8/24/2015 14:17','Harry Bridges Plaza (Ferry Building)',50,'8/24/2015 14:25','San Francisco Caltrain (Townsend at 4th)',70,335,'Subscriber',94062); +INSERT INTO "trip" VALUES(902650,633,'8/24/2015 14:18','Embarcadero at Folsom',51,'8/24/2015 14:28','Post at Kearny',47,134,'Subscriber',95442); +INSERT INTO "trip" VALUES(902651,219,'8/24/2015 14:18','Clay at Battery',41,'8/24/2015 14:21','Temporary Transbay Terminal (Howard at Beale)',55,56,'Subscriber',94105); +INSERT INTO "trip" VALUES(902652,1363,'8/24/2015 14:18','San Francisco Caltrain (Townsend at 4th)',70,'8/24/2015 14:41','Market at 10th',67,327,'Customer',81543); +INSERT INTO "trip" VALUES(902654,999,'8/24/2015 14:23','Mechanics Plaza (Market at Battery)',75,'8/24/2015 14:40','Mechanics Plaza (Market at Battery)',75,313,'Subscriber',94126); +INSERT INTO "trip" VALUES(902655,506,'8/24/2015 14:21','Market at 4th',76,'8/24/2015 14:30','Broadway St at Battery St',82,468,'Subscriber',94302); +INSERT INTO "trip" VALUES(902656,299,'8/24/2015 14:25','2nd at South Park',64,'8/24/2015 14:30','Market at Sansome',77,538,'Subscriber',95973); +INSERT INTO "trip" VALUES(902657,653,'8/24/2015 14:31','Mechanics Plaza (Market at Battery)',75,'8/24/2015 14:42','Embarcadero at Bryant',54,397,'Subscriber',94066); +INSERT INTO "trip" VALUES(902658,508,'8/24/2015 14:34','Cowper at University',37,'8/24/2015 14:43','Palo Alto Caltrain Station',34,41,'Subscriber',94105); +INSERT INTO "trip" VALUES(902659,425,'8/24/2015 14:36','Embarcadero at Bryant',54,'8/24/2015 14:43','Mechanics Plaza (Market at Battery)',75,311,'Subscriber',94105); +INSERT INTO "trip" VALUES(902660,840,'8/24/2015 14:37','Market at 10th',67,'8/24/2015 14:51','Davis at Jackson',42,404,'Subscriber',94111); +INSERT INTO "trip" VALUES(902661,180,'8/24/2015 14:37','Commercial at Montgomery',45,'8/24/2015 14:40','Market at Sansome',77,355,'Subscriber',94122); +INSERT INTO "trip" VALUES(902662,313,'8/24/2015 14:38','Embarcadero at Sansome',60,'8/24/2015 14:44','Broadway St at Battery St',82,614,'Subscriber',94118); +INSERT INTO "trip" VALUES(902663,836,'8/24/2015 14:39','San Francisco Caltrain 2 (330 Townsend)',69,'8/24/2015 14:53','Harry Bridges Plaza (Ferry Building)',50,465,'Subscriber',94501); +INSERT INTO "trip" VALUES(902664,427,'8/24/2015 14:40','San Jose City Hall',10,'8/24/2015 14:47','Adobe on Almaden',5,71,'Subscriber',94041); +INSERT INTO "trip" VALUES(902666,1036,'8/24/2015 14:43','Embarcadero at Bryant',54,'8/24/2015 15:00','Powell Street BART',39,397,'Subscriber',94707); +INSERT INTO "trip" VALUES(902668,782,'8/24/2015 14:44','Civic Center BART (7th at Market)',72,'8/24/2015 14:57','Market at 10th',67,535,'Customer',94103); +INSERT INTO "trip" VALUES(902669,246,'8/24/2015 14:44','Market at 10th',67,'8/24/2015 14:48','Powell Street BART',39,541,'Subscriber',95122); +INSERT INTO "trip" VALUES(902670,998,'8/24/2015 14:45','San Francisco Caltrain (Townsend at 4th)',70,'8/24/2015 15:01','Golden Gate at Polk',59,558,'Subscriber',94107); +INSERT INTO "trip" VALUES(902671,595,'8/24/2015 14:45','Townsend at 7th',65,'8/24/2015 14:55','Market at 10th',67,462,'Subscriber',94102); +INSERT INTO "trip" VALUES(902672,523,'8/24/2015 14:48','2nd at Townsend',61,'8/24/2015 14:57','Market at Sansome',77,328,'Subscriber',94539); +INSERT INTO "trip" VALUES(902673,1102,'8/24/2015 14:48','Mountain View City Hall',27,'8/24/2015 15:06','San Antonio Shopping Center',31,693,'Subscriber',95032); +INSERT INTO "trip" VALUES(902674,159,'8/24/2015 14:48','MLK Library',11,'8/24/2015 14:51','St James Park',13,661,'Subscriber',94551); +INSERT INTO "trip" VALUES(902675,773,'8/24/2015 14:50','2nd at Folsom',62,'8/24/2015 15:03','Yerba Buena Center of the Arts (3rd @ Howard)',68,591,'Subscriber',94107); +INSERT INTO "trip" VALUES(902676,359,'8/24/2015 14:52','Howard at 2nd',63,'8/24/2015 14:58','Market at 4th',76,388,'Subscriber',94941); +INSERT INTO "trip" VALUES(902677,583,'8/24/2015 14:53','Market at Sansome',77,'8/24/2015 15:02','Market at 10th',67,618,'Subscriber',94402); +INSERT INTO "trip" VALUES(902678,813,'8/24/2015 14:54','Townsend at 7th',65,'8/24/2015 15:07','Temporary Transbay Terminal (Howard at Beale)',55,475,'Subscriber',94501); +INSERT INTO "trip" VALUES(902679,351,'8/24/2015 14:55','Market at 4th',76,'8/24/2015 15:00','Temporary Transbay Terminal (Howard at Beale)',55,455,'Subscriber',94602); +INSERT INTO "trip" VALUES(902680,431,'8/24/2015 14:57','MLK Library',11,'8/24/2015 15:04','San Pedro Square',6,129,'Subscriber',95112); +INSERT INTO "trip" VALUES(902682,784,'8/24/2015 15:05','Beale at Market',56,'8/24/2015 15:18','San Francisco Caltrain (Townsend at 4th)',70,512,'Subscriber',95051); +INSERT INTO "trip" VALUES(902683,1092,'8/24/2015 15:05','Spear at Folsom',49,'8/24/2015 15:23','Golden Gate at Polk',59,546,'Subscriber',94109); +INSERT INTO "trip" VALUES(902684,667,'8/24/2015 15:06','Commercial at Montgomery',45,'8/24/2015 15:17','Embarcadero at Bryant',54,500,'Subscriber',94105); +INSERT INTO "trip" VALUES(902686,679,'8/24/2015 15:06','Embarcadero at Bryant',54,'8/24/2015 15:18','San Francisco Caltrain 2 (330 Townsend)',69,497,'Customer','nil'); +INSERT INTO "trip" VALUES(902687,602,'8/24/2015 15:08','Embarcadero at Bryant',54,'8/24/2015 15:18','San Francisco Caltrain 2 (330 Townsend)',69,514,'Customer','nil'); +INSERT INTO "trip" VALUES(902688,347,'8/24/2015 15:08','San Francisco Caltrain (Townsend at 4th)',70,'8/24/2015 15:14','5th at Howard',57,516,'Subscriber',94117); +INSERT INTO "trip" VALUES(902689,414,'8/24/2015 15:08','2nd at Townsend',61,'8/24/2015 15:15','Harry Bridges Plaza (Ferry Building)',50,412,'Subscriber',94945); +INSERT INTO "trip" VALUES(902690,427,'8/24/2015 15:09','Market at Sansome',77,'8/24/2015 15:16','2nd at Townsend',61,29,'Subscriber',94539); +INSERT INTO "trip" VALUES(902691,4048,'8/24/2015 15:17','Market at 4th',76,'8/24/2015 16:25','Powell Street BART',39,482,'Customer',41); +INSERT INTO "trip" VALUES(902692,4094,'8/24/2015 15:17','Market at 4th',76,'8/24/2015 16:26','Powell Street BART',39,310,'Customer',41); +INSERT INTO "trip" VALUES(902693,447,'8/24/2015 15:19','San Jose Civic Center',3,'8/24/2015 15:27','San Jose Diridon Caltrain Station',2,65,'Subscriber',94107); +INSERT INTO "trip" VALUES(902694,6102,'8/24/2015 15:20','Embarcadero at Bryant',54,'8/24/2015 17:02','Embarcadero at Bryant',54,506,'Customer',94107); +INSERT INTO "trip" VALUES(902695,6068,'8/24/2015 15:20','Embarcadero at Bryant',54,'8/24/2015 17:01','Embarcadero at Bryant',54,589,'Customer',94107); +INSERT INTO "trip" VALUES(902696,262,'8/24/2015 15:27','Market at 10th',67,'8/24/2015 15:32','South Van Ness at Market',66,285,'Customer',94103); +INSERT INTO "trip" VALUES(902697,465,'8/24/2015 15:28','2nd at South Park',64,'8/24/2015 15:36','Townsend at 7th',65,418,'Subscriber',94544); +INSERT INTO "trip" VALUES(902698,1125,'8/24/2015 15:29','University and Emerson',35,'8/24/2015 15:48','California Ave Caltrain Station',36,686,'Subscriber',94306); +INSERT INTO "trip" VALUES(902699,1114,'8/24/2015 15:29','University and Emerson',35,'8/24/2015 15:48','California Ave Caltrain Station',36,27,'Subscriber',94306); +INSERT INTO "trip" VALUES(902700,496,'8/24/2015 15:29','Beale at Market',56,'8/24/2015 15:38','2nd at Townsend',61,598,'Subscriber',94107); +INSERT INTO "trip" VALUES(902701,575,'8/24/2015 15:30','Embarcadero at Folsom',51,'8/24/2015 15:39','San Francisco Caltrain (Townsend at 4th)',70,576,'Subscriber',94306); +INSERT INTO "trip" VALUES(902702,971,'8/24/2015 15:32','Embarcadero at Sansome',60,'8/24/2015 15:48','San Francisco Caltrain (Townsend at 4th)',70,431,'Subscriber',95129); +INSERT INTO "trip" VALUES(902703,248,'8/24/2015 15:33','Townsend at 7th',65,'8/24/2015 15:37','San Francisco Caltrain (Townsend at 4th)',70,270,'Subscriber',94043); +INSERT INTO "trip" VALUES(902704,740,'8/24/2015 15:34','Clay at Battery',41,'8/24/2015 15:46','San Francisco Caltrain (Townsend at 4th)',70,582,'Subscriber',94089); +INSERT INTO "trip" VALUES(902705,239,'8/24/2015 15:37','Broadway St at Battery St',82,'8/24/2015 15:41','Harry Bridges Plaza (Ferry Building)',50,504,'Subscriber',94302); +INSERT INTO "trip" VALUES(902706,505,'8/24/2015 15:37','Mechanics Plaza (Market at Battery)',75,'8/24/2015 15:45','Broadway St at Battery St',82,672,'Subscriber',94117); +INSERT INTO "trip" VALUES(902709,677,'8/24/2015 15:40','San Francisco Caltrain 2 (330 Townsend)',69,'8/24/2015 15:52','Civic Center BART (7th at Market)',72,497,'Subscriber',94107); +INSERT INTO "trip" VALUES(902712,676,'8/24/2015 15:42','Harry Bridges Plaza (Ferry Building)',50,'8/24/2015 15:54','San Francisco Caltrain (Townsend at 4th)',70,554,'Subscriber',93401); +INSERT INTO "trip" VALUES(902714,1121,'8/24/2015 15:43','Beale at Market',56,'8/24/2015 16:01','San Francisco Caltrain (Townsend at 4th)',70,425,'Subscriber',94303); +INSERT INTO "trip" VALUES(902715,18826,'8/24/2015 15:43','Embarcadero at Sansome',60,'8/24/2015 20:57','Broadway St at Battery St',82,419,'Customer',92833); +INSERT INTO "trip" VALUES(902716,18842,'8/24/2015 15:43','Embarcadero at Sansome',60,'8/24/2015 20:57','Broadway St at Battery St',82,370,'Customer',92833); +INSERT INTO "trip" VALUES(902718,640,'8/24/2015 15:44','Temporary Transbay Terminal (Howard at Beale)',55,'8/24/2015 15:54','San Francisco Caltrain (Townsend at 4th)',70,568,'Subscriber',94030); +INSERT INTO "trip" VALUES(902720,279,'8/24/2015 15:44','Yerba Buena Center of the Arts (3rd @ Howard)',68,'8/24/2015 15:49','2nd at South Park',64,283,'Subscriber',94107); +INSERT INTO "trip" VALUES(902721,697,'8/24/2015 15:44','Mechanics Plaza (Market at Battery)',75,'8/24/2015 15:56','San Francisco Caltrain (Townsend at 4th)',70,311,'Subscriber',94040); +INSERT INTO "trip" VALUES(902725,434,'8/24/2015 15:47','Arena Green / SAP Center',14,'8/24/2015 15:54','St James Park',13,681,'Subscriber',97214); +INSERT INTO "trip" VALUES(902727,431,'8/24/2015 15:48','Townsend at 7th',65,'8/24/2015 15:55','Civic Center BART (7th at Market)',72,501,'Subscriber',94598); +INSERT INTO "trip" VALUES(902728,305,'8/24/2015 15:48','Howard at 2nd',63,'8/24/2015 15:53','2nd at South Park',64,659,'Subscriber',94114); +INSERT INTO "trip" VALUES(902729,313,'8/24/2015 15:49','Post at Kearny',47,'8/24/2015 15:54','Harry Bridges Plaza (Ferry Building)',50,604,'Subscriber',94957); +INSERT INTO "trip" VALUES(902730,8917,'8/24/2015 15:49','Market at 10th',67,'8/24/2015 18:18','Market at 10th',67,557,'Customer',90210); +INSERT INTO "trip" VALUES(902731,804,'8/24/2015 15:51','Broadway St at Battery St',82,'8/24/2015 16:04','San Francisco Caltrain (Townsend at 4th)',70,687,'Subscriber',95054); +INSERT INTO "trip" VALUES(902732,801,'8/24/2015 15:51','Broadway St at Battery St',82,'8/24/2015 16:04','San Francisco Caltrain (Townsend at 4th)',70,372,'Subscriber',95120); +INSERT INTO "trip" VALUES(902733,8799,'8/24/2015 15:51','Market at 10th',67,'8/24/2015 18:18','Market at 10th',67,618,'Customer',90210); +INSERT INTO "trip" VALUES(902734,245,'8/24/2015 15:52','San Francisco Caltrain 2 (330 Townsend)',69,'8/24/2015 15:56','Townsend at 7th',65,514,'Subscriber',94044); +INSERT INTO "trip" VALUES(902735,714,'8/24/2015 15:53','Beale at Market',56,'8/24/2015 16:05','San Francisco Caltrain (Townsend at 4th)',70,507,'Subscriber',95136); +INSERT INTO "trip" VALUES(902737,495,'8/24/2015 15:54','Embarcadero at Bryant',54,'8/24/2015 16:03','San Francisco Caltrain (Townsend at 4th)',70,496,'Subscriber',95050); +INSERT INTO "trip" VALUES(902738,469,'8/24/2015 15:55','Embarcadero at Bryant',54,'8/24/2015 16:03','San Francisco Caltrain (Townsend at 4th)',70,353,'Subscriber',94087); +INSERT INTO "trip" VALUES(902739,940,'8/24/2015 15:55','Temporary Transbay Terminal (Howard at Beale)',55,'8/24/2015 16:11','San Francisco Caltrain (Townsend at 4th)',70,631,'Subscriber',94158); +INSERT INTO "trip" VALUES(902740,605,'8/24/2015 15:55','San Francisco Caltrain (Townsend at 4th)',70,'8/24/2015 16:05','Spear at Folsom',49,335,'Subscriber',94105); +INSERT INTO "trip" VALUES(902741,252,'8/24/2015 15:55','Harry Bridges Plaza (Ferry Building)',50,'8/24/2015 16:00','Embarcadero at Folsom',51,504,'Subscriber',94302); +INSERT INTO "trip" VALUES(902742,1015,'8/24/2015 15:56','Steuart at Market',74,'8/24/2015 16:13','San Francisco Caltrain (Townsend at 4th)',70,578,'Subscriber',94065); +INSERT INTO "trip" VALUES(902743,280,'8/24/2015 15:57','San Antonio Shopping Center',31,'8/24/2015 16:02','San Antonio Caltrain Station',29,239,'Subscriber',94115); +INSERT INTO "trip" VALUES(902744,932,'8/24/2015 15:58','Clay at Battery',41,'8/24/2015 16:13','San Francisco Caltrain (Townsend at 4th)',70,432,'Subscriber',94401); +INSERT INTO "trip" VALUES(902745,562,'8/24/2015 15:59','Commercial at Montgomery',45,'8/24/2015 16:09','Spear at Folsom',49,423,'Subscriber',94105); +INSERT INTO "trip" VALUES(902746,889,'8/24/2015 15:59','Mechanics Plaza (Market at Battery)',75,'8/24/2015 16:14','San Francisco Caltrain (Townsend at 4th)',70,260,'Subscriber',94403); +INSERT INTO "trip" VALUES(902748,720,'8/24/2015 16:01','San Francisco Caltrain (Townsend at 4th)',70,'8/24/2015 16:13','Civic Center BART (7th at Market)',72,554,'Subscriber',94107); +INSERT INTO "trip" VALUES(902749,1793,'8/24/2015 16:01','5th at Howard',57,'8/24/2015 16:31','San Francisco City Hall',58,516,'Customer',20009); +INSERT INTO "trip" VALUES(902751,441,'8/24/2015 16:01','Post at Kearny',47,'8/24/2015 16:09','Harry Bridges Plaza (Ferry Building)',50,537,'Subscriber',95442); +INSERT INTO "trip" VALUES(902752,425,'8/24/2015 16:01','Post at Kearny',47,'8/24/2015 16:09','Harry Bridges Plaza (Ferry Building)',50,134,'Subscriber',95442); +INSERT INTO "trip" VALUES(902753,436,'8/24/2015 16:02','Mechanics Plaza (Market at Battery)',75,'8/24/2015 16:09','Powell Street BART',39,377,'Subscriber',94404); +INSERT INTO "trip" VALUES(902755,270,'8/24/2015 16:03','5th at Howard',57,'8/24/2015 16:07','San Francisco Caltrain 2 (330 Townsend)',69,326,'Subscriber',94303); +INSERT INTO "trip" VALUES(902760,378,'8/24/2015 16:03','Post at Kearny',47,'8/24/2015 16:10','2nd at South Park',64,334,'Subscriber',94107); +INSERT INTO "trip" VALUES(902763,669,'8/24/2015 16:04','Howard at 2nd',63,'8/24/2015 16:15','San Francisco Caltrain 2 (330 Townsend)',69,389,'Subscriber',94070); +INSERT INTO "trip" VALUES(902769,480,'8/24/2015 16:06','Market at 4th',76,'8/24/2015 16:14','Temporary Transbay Terminal (Howard at Beale)',55,388,'Subscriber',94501); +INSERT INTO "trip" VALUES(902770,738,'8/24/2015 16:07','Steuart at Market',74,'8/24/2015 16:19','San Francisco Caltrain (Townsend at 4th)',70,362,'Subscriber',95008); +INSERT INTO "trip" VALUES(902771,7468,'8/24/2015 16:07','Embarcadero at Sansome',60,'8/24/2015 18:12','Embarcadero at Sansome',60,320,'Customer',8527); +INSERT INTO "trip" VALUES(902773,329,'8/24/2015 16:07','Townsend at 7th',65,'8/24/2015 16:13','San Francisco Caltrain 2 (330 Townsend)',69,418,'Subscriber',94086); +INSERT INTO "trip" VALUES(902774,347,'8/24/2015 16:08','Market at Sansome',77,'8/24/2015 16:14','Harry Bridges Plaza (Ferry Building)',50,407,'Subscriber',94534); +INSERT INTO "trip" VALUES(902775,677,'8/24/2015 16:08','San Francisco Caltrain 2 (330 Townsend)',69,'8/24/2015 16:20','Spear at Folsom',49,326,'Subscriber',94601); +INSERT INTO "trip" VALUES(902777,494,'8/24/2015 16:09','Temporary Transbay Terminal (Howard at Beale)',55,'8/24/2015 16:17','San Francisco Caltrain (Townsend at 4th)',70,364,'Subscriber',94010); +INSERT INTO "trip" VALUES(902778,178,'8/24/2015 16:09','Commercial at Montgomery',45,'8/24/2015 16:12','Beale at Market',56,322,'Subscriber',94710); +INSERT INTO "trip" VALUES(902779,398,'8/24/2015 16:09','2nd at Townsend',61,'8/24/2015 16:16','Harry Bridges Plaza (Ferry Building)',50,29,'Subscriber',94904); +INSERT INTO "trip" VALUES(902782,541,'8/24/2015 16:09','Beale at Market',56,'8/24/2015 16:18','2nd at Townsend',61,491,'Subscriber',95050); +INSERT INTO "trip" VALUES(902783,906,'8/24/2015 16:10','Davis at Jackson',42,'8/24/2015 16:25','San Francisco Caltrain (Townsend at 4th)',70,560,'Subscriber',94040); +INSERT INTO "trip" VALUES(902786,7236,'8/24/2015 16:11','Embarcadero at Sansome',60,'8/24/2015 18:11','Embarcadero at Sansome',60,619,'Customer',8854); +INSERT INTO "trip" VALUES(902788,591,'8/24/2015 16:11','South Van Ness at Market',66,'8/24/2015 16:21','San Francisco Caltrain 2 (330 Townsend)',69,461,'Subscriber',95122); +INSERT INTO "trip" VALUES(902789,424,'8/24/2015 16:11','Townsend at 7th',65,'8/24/2015 16:18','Civic Center BART (7th at Market)',72,331,'Subscriber',94598); +INSERT INTO "trip" VALUES(902790,228,'8/24/2015 16:11','Townsend at 7th',65,'8/24/2015 16:15','San Francisco Caltrain 2 (330 Townsend)',69,409,'Subscriber',94133); +INSERT INTO "trip" VALUES(902791,565,'8/24/2015 16:11','2nd at South Park',64,'8/24/2015 16:21','Powell Street BART',39,191,'Subscriber',94549); +INSERT INTO "trip" VALUES(902796,587,'8/24/2015 16:13','San Francisco Caltrain 2 (330 Townsend)',69,'8/24/2015 16:23','Harry Bridges Plaza (Ferry Building)',50,632,'Subscriber',94602); +INSERT INTO "trip" VALUES(902797,7093,'8/24/2015 16:14','Embarcadero at Sansome',60,'8/24/2015 18:12','Embarcadero at Sansome',60,286,'Customer',7834); +INSERT INTO "trip" VALUES(902798,193,'8/24/2015 16:14','2nd at South Park',64,'8/24/2015 16:17','San Francisco Caltrain (Townsend at 4th)',70,591,'Subscriber',95110); +INSERT INTO "trip" VALUES(902800,860,'8/24/2015 16:15','Beale at Market',56,'8/24/2015 16:29','San Francisco Caltrain 2 (330 Townsend)',69,442,'Subscriber',94085); +INSERT INTO "trip" VALUES(902802,323,'8/24/2015 16:15','Embarcadero at Sansome',60,'8/24/2015 16:21','Harry Bridges Plaza (Ferry Building)',50,444,'Subscriber',94939); +INSERT INTO "trip" VALUES(902803,988,'8/24/2015 16:15','San Francisco City Hall',58,'8/24/2015 16:32','Grant Avenue at Columbus Avenue',73,399,'Subscriber',94133); +INSERT INTO "trip" VALUES(902804,452,'8/24/2015 16:16','San Francisco Caltrain (Townsend at 4th)',70,'8/24/2015 16:23','Civic Center BART (7th at Market)',72,582,'Subscriber',94563); +INSERT INTO "trip" VALUES(902806,309,'8/24/2015 16:16','Yerba Buena Center of the Arts (3rd @ Howard)',68,'8/24/2015 16:21','San Francisco Caltrain (Townsend at 4th)',70,450,'Subscriber',94070); +INSERT INTO "trip" VALUES(902807,445,'8/24/2015 16:16','2nd at Folsom',62,'8/24/2015 16:24','Harry Bridges Plaza (Ferry Building)',50,477,'Subscriber',94558); +INSERT INTO "trip" VALUES(902808,599,'8/24/2015 16:17','Post at Kearny',47,'8/24/2015 16:27','San Francisco Caltrain (Townsend at 4th)',70,505,'Subscriber',94401); +INSERT INTO "trip" VALUES(902810,331,'8/24/2015 16:17','Beale at Market',56,'8/24/2015 16:23','Embarcadero at Bryant',54,322,'Subscriber',94702); +INSERT INTO "trip" VALUES(902812,465,'8/24/2015 16:18','Howard at 2nd',63,'8/24/2015 16:26','San Francisco Caltrain 2 (330 Townsend)',69,373,'Subscriber',94402); +INSERT INTO "trip" VALUES(902814,330,'8/24/2015 16:20','2nd at South Park',64,'8/24/2015 16:25','San Francisco Caltrain 2 (330 Townsend)',69,471,'Subscriber',94107); +INSERT INTO "trip" VALUES(902815,1266,'8/24/2015 16:20','Embarcadero at Vallejo',48,'8/24/2015 16:41','San Francisco Caltrain (Townsend at 4th)',70,483,'Subscriber',95122); +INSERT INTO "trip" VALUES(902817,463,'8/24/2015 16:21','Temporary Transbay Terminal (Howard at Beale)',55,'8/24/2015 16:28','San Francisco Caltrain (Townsend at 4th)',70,388,'Subscriber',95112); +INSERT INTO "trip" VALUES(902819,278,'8/24/2015 16:21','2nd at South Park',64,'8/24/2015 16:26','Market at Sansome',77,659,'Subscriber',94587); +INSERT INTO "trip" VALUES(902820,462,'8/24/2015 16:21','Townsend at 7th',65,'8/24/2015 16:29','Civic Center BART (7th at Market)',72,292,'Subscriber',94618); +INSERT INTO "trip" VALUES(902821,469,'8/24/2015 16:22','Temporary Transbay Terminal (Howard at Beale)',55,'8/24/2015 16:30','San Francisco Caltrain (Townsend at 4th)',70,475,'Subscriber',95008); +INSERT INTO "trip" VALUES(902823,1352,'8/24/2015 16:18','Harry Bridges Plaza (Ferry Building)',50,'8/24/2015 16:40','Townsend at 7th',65,427,'Subscriber',94107); +INSERT INTO "trip" VALUES(902824,552,'8/24/2015 16:21','Harry Bridges Plaza (Ferry Building)',50,'8/24/2015 16:30','San Francisco Caltrain (Townsend at 4th)',70,407,'Subscriber',95060); +INSERT INTO "trip" VALUES(902827,439,'8/24/2015 16:24','Temporary Transbay Terminal (Howard at Beale)',55,'8/24/2015 16:31','San Francisco Caltrain 2 (330 Townsend)',69,508,'Subscriber',94010); +INSERT INTO "trip" VALUES(902830,353,'8/24/2015 16:25','Powell Street BART',39,'8/24/2015 16:31','San Francisco City Hall',58,332,'Customer',20009); +INSERT INTO "trip" VALUES(902831,784,'8/24/2015 16:26','Townsend at 7th',65,'8/24/2015 16:39','Harry Bridges Plaza (Ferry Building)',50,514,'Subscriber',94903); +INSERT INTO "trip" VALUES(902834,710,'8/24/2015 16:27','Harry Bridges Plaza (Ferry Building)',50,'8/24/2015 16:39','San Francisco Caltrain (Townsend at 4th)',70,444,'Subscriber',94061); +INSERT INTO "trip" VALUES(902835,945,'8/24/2015 16:27','Embarcadero at Vallejo',48,'8/24/2015 16:43','San Francisco Caltrain (Townsend at 4th)',70,384,'Subscriber',94002); +INSERT INTO "trip" VALUES(902836,434,'8/24/2015 16:28','2nd at Townsend',61,'8/24/2015 16:35','Market at Sansome',77,491,'Subscriber',94706); +INSERT INTO "trip" VALUES(902837,786,'8/24/2015 16:28','Market at Sansome',77,'8/24/2015 16:41','San Francisco Caltrain (Townsend at 4th)',70,583,'Subscriber',94087); +INSERT INTO "trip" VALUES(902838,904,'8/24/2015 16:24','Townsend at 7th',65,'8/24/2015 16:39','Harry Bridges Plaza (Ferry Building)',50,402,'Subscriber',94904); +INSERT INTO "trip" VALUES(902839,226,'8/24/2015 16:28','Santa Clara at Almaden',4,'8/24/2015 16:32','San Jose Diridon Caltrain Station',2,206,'Subscriber',95020); +INSERT INTO "trip" VALUES(902840,327,'8/24/2015 16:29','Clay at Battery',41,'8/24/2015 16:34','Temporary Transbay Terminal (Howard at Beale)',55,96,'Subscriber',94501); +INSERT INTO "trip" VALUES(902841,763,'8/24/2015 16:30','Embarcadero at Vallejo',48,'8/24/2015 16:43','Harry Bridges Plaza (Ferry Building)',50,393,'Customer',11232); +INSERT INTO "trip" VALUES(902842,459,'8/24/2015 16:31','Market at 10th',67,'8/24/2015 16:39','San Francisco Caltrain 2 (330 Townsend)',69,462,'Subscriber',94041); +INSERT INTO "trip" VALUES(902843,414,'8/24/2015 16:32','Market at 10th',67,'8/24/2015 16:39','San Francisco Caltrain 2 (330 Townsend)',69,555,'Subscriber',94404); +INSERT INTO "trip" VALUES(902844,942,'8/24/2015 16:32','Mechanics Plaza (Market at Battery)',75,'8/24/2015 16:48','San Francisco Caltrain 2 (330 Townsend)',69,33,'Subscriber',95133); +INSERT INTO "trip" VALUES(902845,1577,'8/24/2015 16:32','Stanford in Redwood City',25,'8/24/2015 16:58','Palo Alto Caltrain Station',34,689,'Subscriber',95131); +INSERT INTO "trip" VALUES(902847,841,'8/24/2015 16:33','Clay at Battery',41,'8/24/2015 16:47','San Francisco Caltrain (Townsend at 4th)',70,348,'Subscriber',94025); +INSERT INTO "trip" VALUES(902848,927,'8/24/2015 16:34','Commercial at Montgomery',45,'8/24/2015 16:49','San Francisco Caltrain (Townsend at 4th)',70,390,'Subscriber',94010); +INSERT INTO "trip" VALUES(902849,624,'8/24/2015 16:34','Mechanics Plaza (Market at Battery)',75,'8/24/2015 16:45','San Francisco Caltrain (Townsend at 4th)',70,313,'Subscriber',94303); +INSERT INTO "trip" VALUES(902850,599,'8/24/2015 16:35','5th at Howard',57,'8/24/2015 16:45','Harry Bridges Plaza (Ferry Building)',50,494,'Subscriber',94925); +INSERT INTO "trip" VALUES(902851,252,'8/24/2015 16:35','Santa Clara at Almaden',4,'8/24/2015 16:39','San Jose Diridon Caltrain Station',2,31,'Subscriber',94103); +INSERT INTO "trip" VALUES(902852,603,'8/24/2015 16:35','Spear at Folsom',49,'8/24/2015 16:45','San Francisco Caltrain 2 (330 Townsend)',69,635,'Subscriber',94105); +INSERT INTO "trip" VALUES(902853,427,'8/24/2015 16:36','Embarcadero at Sansome',60,'8/24/2015 16:43','Steuart at Market',74,347,'Subscriber',94521); +INSERT INTO "trip" VALUES(902854,513,'8/24/2015 16:36','Market at 4th',76,'8/24/2015 16:45','San Francisco Caltrain 2 (330 Townsend)',69,509,'Subscriber',95123); +INSERT INTO "trip" VALUES(902855,853,'8/24/2015 16:36','Harry Bridges Plaza (Ferry Building)',50,'8/24/2015 16:51','San Francisco Caltrain (Townsend at 4th)',70,632,'Subscriber',95111); +INSERT INTO "trip" VALUES(902856,1071,'8/24/2015 16:37','Clay at Battery',41,'8/24/2015 16:55','San Francisco Caltrain 2 (330 Townsend)',69,361,'Subscriber',94301); +INSERT INTO "trip" VALUES(902857,725,'8/24/2015 16:37','Mechanics Plaza (Market at Battery)',75,'8/24/2015 16:49','Civic Center BART (7th at Market)',72,357,'Customer',94582); +INSERT INTO "trip" VALUES(902858,552,'8/24/2015 16:38','Post at Kearny',47,'8/24/2015 16:47','San Francisco Caltrain (Townsend at 4th)',70,410,'Subscriber',94114); +INSERT INTO "trip" VALUES(902859,660,'8/24/2015 16:38','Embarcadero at Sansome',60,'8/24/2015 16:49','Market at Sansome',77,575,'Subscriber',94611); +INSERT INTO "trip" VALUES(902860,532,'8/24/2015 16:38','2nd at South Park',64,'8/24/2015 16:47','Harry Bridges Plaza (Ferry Building)',50,283,'Subscriber',94949); +INSERT INTO "trip" VALUES(902861,410,'8/24/2015 16:38','2nd at Townsend',61,'8/24/2015 16:45','Harry Bridges Plaza (Ferry Building)',50,598,'Subscriber',94945); +INSERT INTO "trip" VALUES(902862,671,'8/24/2015 16:38','Civic Center BART (7th at Market)',72,'8/24/2015 16:49','Beale at Market',56,292,'Subscriber',94618); +INSERT INTO "trip" VALUES(902864,597,'8/24/2015 16:39','Temporary Transbay Terminal (Howard at Beale)',55,'8/24/2015 16:49','San Francisco Caltrain (Townsend at 4th)',70,96,'Subscriber',94025); +INSERT INTO "trip" VALUES(902865,539,'8/24/2015 16:39','Market at 10th',67,'8/24/2015 16:48','San Francisco Caltrain 2 (330 Townsend)',69,535,'Subscriber',94061); +INSERT INTO "trip" VALUES(902866,249,'8/24/2015 16:40','Embarcadero at Folsom',51,'8/24/2015 16:44','Howard at 2nd',63,651,'Subscriber',94044); +INSERT INTO "trip" VALUES(902867,1435,'8/24/2015 16:40','Davis at Jackson',42,'8/24/2015 17:04','San Francisco Caltrain 2 (330 Townsend)',69,412,'Subscriber',94111); +INSERT INTO "trip" VALUES(902868,364,'8/24/2015 16:40','Embarcadero at Vallejo',48,'8/24/2015 16:46','Embarcadero at Folsom',51,473,'Subscriber',94547); +INSERT INTO "trip" VALUES(902871,278,'8/24/2015 16:41','Golden Gate at Polk',59,'8/24/2015 16:46','Powell Street BART',39,111,'Subscriber',94107); +INSERT INTO "trip" VALUES(902873,332,'8/24/2015 16:42','Powell Street BART',39,'8/24/2015 16:47','Market at 10th',67,310,'Subscriber',94127); +INSERT INTO "trip" VALUES(902875,284,'8/24/2015 16:42','Commercial at Montgomery',45,'8/24/2015 16:47','Davis at Jackson',42,375,'Subscriber',94108); +INSERT INTO "trip" VALUES(902876,622,'8/24/2015 16:42','Market at 4th',76,'8/24/2015 16:53','San Francisco Caltrain 2 (330 Townsend)',69,278,'Subscriber',95122); +INSERT INTO "trip" VALUES(902878,508,'8/24/2015 16:43','Market at 10th',67,'8/24/2015 16:52','San Francisco Caltrain 2 (330 Townsend)',69,456,'Subscriber',94061); +INSERT INTO "trip" VALUES(902879,504,'8/24/2015 16:43','Clay at Battery',41,'8/24/2015 16:52','Embarcadero at Bryant',54,621,'Subscriber',94107); +INSERT INTO "trip" VALUES(902880,529,'8/24/2015 16:43','Temporary Transbay Terminal (Howard at Beale)',55,'8/24/2015 16:52','San Francisco Caltrain (Townsend at 4th)',70,455,'Subscriber',94022); +INSERT INTO "trip" VALUES(902882,432,'8/24/2015 16:43','San Jose Civic Center',3,'8/24/2015 16:50','San Jose Diridon Caltrain Station',2,643,'Subscriber',94070); +INSERT INTO "trip" VALUES(902883,531,'8/24/2015 16:44','Market at 10th',67,'8/24/2015 16:53','San Francisco Caltrain 2 (330 Townsend)',69,109,'Subscriber',94582); +INSERT INTO "trip" VALUES(902884,294,'8/24/2015 16:44','2nd at South Park',64,'8/24/2015 16:49','San Francisco Caltrain (Townsend at 4th)',70,334,'Subscriber',94403); +INSERT INTO "trip" VALUES(902885,593,'8/24/2015 16:45','Mechanics Plaza (Market at Battery)',75,'8/24/2015 16:54','Embarcadero at Sansome',60,709,'Subscriber',94610); +INSERT INTO "trip" VALUES(902886,584,'8/24/2015 16:45','Spear at Folsom',49,'8/24/2015 16:55','San Francisco Caltrain 2 (330 Townsend)',69,356,'Subscriber',94062); +INSERT INTO "trip" VALUES(902887,475,'8/24/2015 16:45','San Francisco Caltrain (Townsend at 4th)',70,'8/24/2015 16:53','Spear at Folsom',49,407,'Subscriber',94605); +INSERT INTO "trip" VALUES(902888,716,'8/24/2015 16:46','Clay at Battery',41,'8/24/2015 16:57','San Francisco Caltrain 2 (330 Townsend)',69,458,'Subscriber',94065); +INSERT INTO "trip" VALUES(902889,587,'8/24/2015 16:46','Mechanics Plaza (Market at Battery)',75,'8/24/2015 16:56','Embarcadero at Sansome',60,552,'Subscriber',94111); +INSERT INTO "trip" VALUES(902890,566,'8/24/2015 16:46','Powell at Post (Union Square)',71,'8/24/2015 16:56','San Francisco Caltrain 2 (330 Townsend)',69,448,'Subscriber',94158); +INSERT INTO "trip" VALUES(902891,597,'8/24/2015 16:47','Civic Center BART (7th at Market)',72,'8/24/2015 16:57','Commercial at Montgomery',45,652,'Subscriber',94702); +INSERT INTO "trip" VALUES(902892,679,'8/24/2015 16:47','Post at Kearny',47,'8/24/2015 16:58','San Francisco Caltrain 2 (330 Townsend)',69,422,'Subscriber',95112); +INSERT INTO "trip" VALUES(902893,448,'8/24/2015 16:47','Embarcadero at Sansome',60,'8/24/2015 16:55','Steuart at Market',74,329,'Subscriber',94588); +INSERT INTO "trip" VALUES(902894,310,'8/24/2015 16:47','2nd at Folsom',62,'8/24/2015 16:52','Spear at Folsom',49,336,'Subscriber',94105); +INSERT INTO "trip" VALUES(902895,273,'8/24/2015 16:48','Mountain View City Hall',27,'8/24/2015 16:53','Mountain View Caltrain Station',28,673,'Subscriber',94107); +INSERT INTO "trip" VALUES(902897,518,'8/24/2015 16:49','South Van Ness at Market',66,'8/24/2015 16:58','San Francisco Caltrain 2 (330 Townsend)',69,350,'Subscriber',95030); +INSERT INTO "trip" VALUES(902898,830,'8/24/2015 16:50','Market at Sansome',77,'8/24/2015 17:04','San Francisco Caltrain 2 (330 Townsend)',69,525,'Customer',94401); +INSERT INTO "trip" VALUES(902899,334,'8/24/2015 16:51','San Pedro Square',6,'8/24/2015 16:56','San Jose Diridon Caltrain Station',2,129,'Subscriber',94002); +INSERT INTO "trip" VALUES(902900,577,'8/24/2015 16:51','Market at Sansome',77,'8/24/2015 17:01','San Francisco Caltrain 2 (330 Townsend)',69,463,'Subscriber',94301); +INSERT INTO "trip" VALUES(902901,946,'8/24/2015 16:52','Beale at Market',56,'8/24/2015 17:07','San Francisco Caltrain 2 (330 Townsend)',69,292,'Subscriber',94402); +INSERT INTO "trip" VALUES(902902,194,'8/24/2015 16:52','Townsend at 7th',65,'8/24/2015 16:55','San Francisco Caltrain 2 (330 Townsend)',69,549,'Subscriber',94544); +INSERT INTO "trip" VALUES(902903,785,'8/24/2015 16:52','Townsend at 7th',65,'8/24/2015 17:05','Embarcadero at Folsom',51,275,'Subscriber',94501); +INSERT INTO "trip" VALUES(902904,241,'8/24/2015 16:52','Townsend at 7th',65,'8/24/2015 16:56','San Francisco Caltrain 2 (330 Townsend)',69,427,'Subscriber',94087); +INSERT INTO "trip" VALUES(902906,453,'8/24/2015 16:52','2nd at Townsend',61,'8/24/2015 17:00','Harry Bridges Plaza (Ferry Building)',50,351,'Subscriber',94591); +INSERT INTO "trip" VALUES(902907,234,'8/24/2015 16:52','Castro Street and El Camino Real',32,'8/24/2015 16:56','Mountain View Caltrain Station',28,706,'Subscriber',94118); +INSERT INTO "trip" VALUES(902908,609,'8/24/2015 16:53','2nd at Folsom',62,'8/24/2015 17:03','Townsend at 7th',65,512,'Subscriber',94107); +INSERT INTO "trip" VALUES(902910,187,'8/24/2015 16:54','Embarcadero at Sansome',60,'8/24/2015 16:57','Embarcadero at Vallejo',48,382,'Subscriber',94941); +INSERT INTO "trip" VALUES(902911,442,'8/24/2015 16:54','2nd at South Park',64,'8/24/2015 17:01','Harry Bridges Plaza (Ferry Building)',50,317,'Subscriber',94510); +INSERT INTO "trip" VALUES(902912,467,'8/24/2015 16:54','Broadway St at Battery St',82,'8/24/2015 17:01','Temporary Transbay Terminal (Howard at Beale)',55,391,'Subscriber',94608); +INSERT INTO "trip" VALUES(902913,584,'8/24/2015 16:55','Embarcadero at Folsom',51,'8/24/2015 17:05','San Francisco Caltrain 2 (330 Townsend)',69,504,'Subscriber',94070); +INSERT INTO "trip" VALUES(902914,600,'8/24/2015 16:55','Temporary Transbay Terminal (Howard at Beale)',55,'8/24/2015 17:05','San Francisco Caltrain 2 (330 Townsend)',69,56,'Subscriber',95014); +INSERT INTO "trip" VALUES(902915,503,'8/24/2015 16:55','2nd at Folsom',62,'8/24/2015 17:03','San Francisco Caltrain 2 (330 Townsend)',69,372,'Subscriber',95112); +INSERT INTO "trip" VALUES(902916,856,'8/24/2015 16:55','Temporary Transbay Terminal (Howard at Beale)',55,'8/24/2015 17:09','South Van Ness at Market',66,408,'Subscriber',94110); +INSERT INTO "trip" VALUES(902917,644,'8/24/2015 16:56','Embarcadero at Folsom',51,'8/24/2015 17:06','San Francisco Caltrain 2 (330 Townsend)',69,318,'Subscriber',95014); +INSERT INTO "trip" VALUES(902918,569,'8/24/2015 16:56','5th at Howard',57,'8/24/2015 17:05','Steuart at Market',74,556,'Subscriber',94930); +INSERT INTO "trip" VALUES(902919,860,'8/24/2015 16:56','Broadway St at Battery St',82,'8/24/2015 17:11','San Francisco Caltrain (Townsend at 4th)',70,479,'Subscriber',94025); +INSERT INTO "trip" VALUES(902920,1016,'8/24/2015 16:57','Clay at Battery',41,'8/24/2015 17:14','San Francisco Caltrain 2 (330 Townsend)',69,309,'Subscriber',94402); +INSERT INTO "trip" VALUES(902921,241,'8/24/2015 16:59','Embarcadero at Vallejo',48,'8/24/2015 17:03','Steuart at Market',74,542,'Subscriber',94708); +INSERT INTO "trip" VALUES(902922,435,'8/24/2015 17:00','Howard at 2nd',63,'8/24/2015 17:07','San Francisco Caltrain (Townsend at 4th)',70,651,'Subscriber',94403); +INSERT INTO "trip" VALUES(902923,637,'8/24/2015 17:00','Embarcadero at Folsom',51,'8/24/2015 17:10','San Francisco Caltrain 2 (330 Townsend)',69,473,'Subscriber',94085); +INSERT INTO "trip" VALUES(902924,356,'8/24/2015 17:02','Broadway St at Battery St',82,'8/24/2015 17:07','Market at Sansome',77,451,'Subscriber',94588); +INSERT INTO "trip" VALUES(902925,436,'8/24/2015 17:02','Howard at 2nd',63,'8/24/2015 17:09','San Francisco Caltrain 2 (330 Townsend)',69,371,'Subscriber',94062); +INSERT INTO "trip" VALUES(902926,308,'8/24/2015 17:02','Temporary Transbay Terminal (Howard at Beale)',55,'8/24/2015 17:07','2nd at Townsend',61,391,'Subscriber',94117); +INSERT INTO "trip" VALUES(902927,782,'8/24/2015 17:03','Embarcadero at Folsom',51,'8/24/2015 17:16','San Francisco Caltrain 2 (330 Townsend)',69,268,'Subscriber',95131); +INSERT INTO "trip" VALUES(902930,464,'8/24/2015 17:03','Adobe on Almaden',5,'8/24/2015 17:11','San Jose Diridon Caltrain Station',2,163,'Subscriber',94110); +INSERT INTO "trip" VALUES(902931,408,'8/24/2015 17:04','Embarcadero at Bryant',54,'8/24/2015 17:10','Harry Bridges Plaza (Ferry Building)',50,322,'Subscriber',94949); +INSERT INTO "trip" VALUES(902934,199,'8/24/2015 17:04','Townsend at 7th',65,'8/24/2015 17:07','San Francisco Caltrain 2 (330 Townsend)',69,512,'Subscriber',94065); +INSERT INTO "trip" VALUES(902935,764,'8/24/2015 17:04','Stanford in Redwood City',25,'8/24/2015 17:17','Redwood City Caltrain Station',22,647,'Subscriber',94131); +INSERT INTO "trip" VALUES(902936,610,'8/24/2015 17:04','Embarcadero at Folsom',51,'8/24/2015 17:14','San Francisco Caltrain 2 (330 Townsend)',69,358,'Subscriber',95118); +INSERT INTO "trip" VALUES(902937,605,'8/24/2015 17:04','Steuart at Market',74,'8/24/2015 17:14','San Francisco Caltrain 2 (330 Townsend)',69,329,'Subscriber',94002); +INSERT INTO "trip" VALUES(902938,454,'8/24/2015 17:04','2nd at Folsom',62,'8/24/2015 17:12','Harry Bridges Plaza (Ferry Building)',50,496,'Subscriber',94973); +INSERT INTO "trip" VALUES(902940,217,'8/24/2015 17:04','Broadway St at Battery St',82,'8/24/2015 17:08','Steuart at Market',74,518,'Subscriber',94132); +INSERT INTO "trip" VALUES(902942,597,'8/24/2015 17:05','Embarcadero at Bryant',54,'8/24/2015 17:15','Beale at Market',56,506,'Subscriber',94702); +INSERT INTO "trip" VALUES(902943,373,'8/24/2015 17:05','Howard at 2nd',63,'8/24/2015 17:12','San Francisco Caltrain 2 (330 Townsend)',69,453,'Subscriber',94041); +INSERT INTO "trip" VALUES(902944,1098,'8/24/2015 17:05','Embarcadero at Folsom',51,'8/24/2015 17:24','Post at Kearny',47,275,'Subscriber',94133); +INSERT INTO "trip" VALUES(902945,288,'8/24/2015 17:06','Market at Sansome',77,'8/24/2015 17:11','Harry Bridges Plaza (Ferry Building)',50,659,'Subscriber',94925); +INSERT INTO "trip" VALUES(902946,392,'8/24/2015 17:06','San Francisco Caltrain (Townsend at 4th)',70,'8/24/2015 17:13','5th at Howard',57,583,'Subscriber',94107); +INSERT INTO "trip" VALUES(902948,752,'8/24/2015 17:06','Steuart at Market',74,'8/24/2015 17:19','San Francisco Caltrain (Townsend at 4th)',70,347,'Subscriber',95054); +INSERT INTO "trip" VALUES(902949,811,'8/24/2015 17:06','Stanford in Redwood City',25,'8/24/2015 17:20','Redwood City Caltrain Station',22,40,'Subscriber',95037); +INSERT INTO "trip" VALUES(902950,651,'8/24/2015 17:06','San Francisco Caltrain 2 (330 Townsend)',69,'8/24/2015 17:17','Harry Bridges Plaza (Ferry Building)',50,422,'Subscriber',94901); +INSERT INTO "trip" VALUES(902952,895,'8/24/2015 17:07','Park at Olive',38,'8/24/2015 17:22','Palo Alto Caltrain Station',34,140,'Subscriber',94002); +INSERT INTO "trip" VALUES(902954,835,'8/24/2015 17:07','2nd at Townsend',61,'8/24/2015 17:21','Grant Avenue at Columbus Avenue',73,391,'Subscriber',94133); +INSERT INTO "trip" VALUES(902955,432,'8/24/2015 17:08','Yerba Buena Center of the Arts (3rd @ Howard)',68,'8/24/2015 17:15','Harry Bridges Plaza (Ferry Building)',50,395,'Subscriber',94107); +INSERT INTO "trip" VALUES(902956,619,'8/24/2015 17:08','Market at 10th',67,'8/24/2015 17:18','Market at 4th',76,287,'Subscriber',94112); +INSERT INTO "trip" VALUES(902958,819,'8/24/2015 17:08','5th at Howard',57,'8/24/2015 17:22','Spear at Folsom',49,428,'Subscriber',94105); +INSERT INTO "trip" VALUES(902959,641,'8/24/2015 17:08','Embarcadero at Vallejo',48,'8/24/2015 17:18','2nd at Townsend',61,267,'Subscriber',94107); +INSERT INTO "trip" VALUES(902960,374,'8/24/2015 17:08','Market at Sansome',77,'8/24/2015 17:14','Yerba Buena Center of the Arts (3rd @ Howard)',68,451,'Subscriber',94030); +INSERT INTO "trip" VALUES(902962,201,'8/24/2015 17:08','Santa Clara at Almaden',4,'8/24/2015 17:12','San Jose Diridon Caltrain Station',2,160,'Subscriber',94158); +INSERT INTO "trip" VALUES(902963,590,'8/24/2015 17:09','Market at 10th',67,'8/24/2015 17:18','San Francisco Caltrain 2 (330 Townsend)',69,520,'Subscriber',94403); +INSERT INTO "trip" VALUES(902964,590,'8/24/2015 17:09','Golden Gate at Polk',59,'8/24/2015 17:19','San Francisco Caltrain 2 (330 Townsend)',69,558,'Subscriber',94305); +INSERT INTO "trip" VALUES(902965,294,'8/24/2015 17:09','Davis at Jackson',42,'8/24/2015 17:14','Embarcadero at Sansome',60,404,'Subscriber',94111); +INSERT INTO "trip" VALUES(902966,370,'8/24/2015 17:09','Davis at Jackson',42,'8/24/2015 17:15','Embarcadero at Sansome',60,489,'Subscriber',94111); +INSERT INTO "trip" VALUES(902967,406,'8/24/2015 17:09','Spear at Folsom',49,'8/24/2015 17:16','San Francisco Caltrain 2 (330 Townsend)',69,437,'Subscriber',94402); +INSERT INTO "trip" VALUES(902968,249,'8/24/2015 17:09','Market at Sansome',77,'8/24/2015 17:13','Market at 4th',76,413,'Subscriber',94588); +INSERT INTO "trip" VALUES(902970,467,'8/24/2015 17:10','Steuart at Market',74,'8/24/2015 17:17','2nd at Townsend',61,556,'Subscriber',94158); +INSERT INTO "trip" VALUES(902971,679,'8/24/2015 17:10','San Francisco Caltrain 2 (330 Townsend)',69,'8/24/2015 17:21','Powell at Post (Union Square)',71,463,'Subscriber',94107); +INSERT INTO "trip" VALUES(902972,495,'8/24/2015 17:10','5th at Howard',57,'8/24/2015 17:18','San Francisco Caltrain 2 (330 Townsend)',69,459,'Subscriber',94401); +INSERT INTO "trip" VALUES(902973,631,'8/24/2015 17:10','Mechanics Plaza (Market at Battery)',75,'8/24/2015 17:20','Market at 10th',67,385,'Subscriber',94102); +INSERT INTO "trip" VALUES(902975,637,'8/24/2015 17:10','Steuart at Market',74,'8/24/2015 17:21','San Francisco Caltrain 2 (330 Townsend)',69,518,'Subscriber',94061); +INSERT INTO "trip" VALUES(902976,433,'8/24/2015 17:11','Market at 4th',76,'8/24/2015 17:18','San Francisco Caltrain 2 (330 Townsend)',69,628,'Subscriber',94403); +INSERT INTO "trip" VALUES(902977,572,'8/24/2015 17:11','Yerba Buena Center of the Arts (3rd @ Howard)',68,'8/24/2015 17:20','Commercial at Montgomery',45,338,'Subscriber',94133); +INSERT INTO "trip" VALUES(902978,1150,'8/24/2015 17:12','South Van Ness at Market',66,'8/24/2015 17:31','Howard at 2nd',63,593,'Subscriber',94103); +INSERT INTO "trip" VALUES(902979,566,'8/24/2015 17:12','South Van Ness at Market',66,'8/24/2015 17:21','San Francisco Caltrain 2 (330 Townsend)',69,282,'Subscriber',95119); +INSERT INTO "trip" VALUES(902980,464,'8/24/2015 17:12','St James Park',13,'8/24/2015 17:20','San Jose Diridon Caltrain Station',2,51,'Subscriber',94105); +INSERT INTO "trip" VALUES(902981,429,'8/24/2015 17:12','2nd at Folsom',62,'8/24/2015 17:19','San Francisco Caltrain 2 (330 Townsend)',69,471,'Subscriber',95125); +INSERT INTO "trip" VALUES(902982,549,'8/24/2015 17:12','2nd at South Park',64,'8/24/2015 17:22','Market at 4th',76,611,'Subscriber',94612); +INSERT INTO "trip" VALUES(902984,208,'8/24/2015 17:13','Broadway St at Battery St',82,'8/24/2015 17:17','Beale at Market',56,454,'Subscriber',94114); +INSERT INTO "trip" VALUES(902987,242,'8/24/2015 17:14','Adobe on Almaden',5,'8/24/2015 17:18','San Jose Diridon Caltrain Station',2,240,'Subscriber',94002); +INSERT INTO "trip" VALUES(902988,682,'8/24/2015 17:14','South Van Ness at Market',66,'8/24/2015 17:26','Beale at Market',56,408,'Subscriber',9611); +INSERT INTO "trip" VALUES(902989,755,'8/24/2015 17:15','San Francisco Caltrain 2 (330 Townsend)',69,'8/24/2015 17:27','Harry Bridges Plaza (Ferry Building)',50,458,'Subscriber',94590); +INSERT INTO "trip" VALUES(902990,477,'8/24/2015 17:15','Embarcadero at Bryant',54,'8/24/2015 17:23','San Francisco Caltrain (Townsend at 4th)',70,500,'Subscriber',94087); +INSERT INTO "trip" VALUES(902991,374,'8/24/2015 17:15','Embarcadero at Sansome',60,'8/24/2015 17:21','Harry Bridges Plaza (Ferry Building)',50,489,'Subscriber',94501); +INSERT INTO "trip" VALUES(902992,670,'8/24/2015 17:15','Market at Sansome',77,'8/24/2015 17:26','Grant Avenue at Columbus Avenue',73,328,'Subscriber',94133); +INSERT INTO "trip" VALUES(902995,406,'8/24/2015 17:16','5th at Howard',57,'8/24/2015 17:23','San Francisco Caltrain 2 (330 Townsend)',69,583,'Subscriber',94086); +INSERT INTO "trip" VALUES(902996,467,'8/24/2015 17:16','Grant Avenue at Columbus Avenue',73,'8/24/2015 17:24','Temporary Transbay Terminal (Howard at Beale)',55,380,'Subscriber',94133); +INSERT INTO "trip" VALUES(902999,414,'8/24/2015 17:17','Howard at 2nd',63,'8/24/2015 17:24','San Francisco Caltrain (Townsend at 4th)',70,279,'Subscriber',94070); +INSERT INTO "trip" VALUES(903000,690,'8/24/2015 17:17','Civic Center BART (7th at Market)',72,'8/24/2015 17:29','San Francisco Caltrain 2 (330 Townsend)',69,554,'Subscriber',94062); +INSERT INTO "trip" VALUES(903003,907,'8/24/2015 17:18','Embarcadero at Sansome',60,'8/24/2015 17:33','Market at 4th',76,552,'Subscriber',94102); +INSERT INTO "trip" VALUES(903004,400,'8/24/2015 17:18','Market at 4th',76,'8/24/2015 17:25','Harry Bridges Plaza (Ferry Building)',50,599,'Subscriber',94558); +INSERT INTO "trip" VALUES(903007,417,'8/24/2015 17:18','2nd at Townsend',61,'8/24/2015 17:25','Harry Bridges Plaza (Ferry Building)',50,556,'Subscriber',94901); +INSERT INTO "trip" VALUES(903009,935,'8/24/2015 17:18','Davis at Jackson',42,'8/24/2015 17:34','San Francisco Caltrain (Townsend at 4th)',70,134,'Subscriber',94024); +INSERT INTO "trip" VALUES(903010,928,'8/24/2015 17:19','2nd at Townsend',61,'8/24/2015 17:35','Civic Center BART (7th at Market)',72,267,'Subscriber',94538); +INSERT INTO "trip" VALUES(903012,384,'8/24/2015 17:20','Harry Bridges Plaza (Ferry Building)',50,'8/24/2015 17:26','Embarcadero at Sansome',60,402,'Subscriber',94920); +INSERT INTO "trip" VALUES(903014,495,'8/24/2015 17:20','Market at Sansome',77,'8/24/2015 17:29','San Francisco Caltrain (Townsend at 4th)',70,214,'Subscriber',94306); +INSERT INTO "trip" VALUES(903015,605,'8/24/2015 17:20','Civic Center BART (7th at Market)',72,'8/24/2015 17:30','Temporary Transbay Terminal (Howard at Beale)',55,501,'Subscriber',94710); +INSERT INTO "trip" VALUES(903016,1530,'8/24/2015 17:21','Embarcadero at Bryant',54,'8/24/2015 17:47','Embarcadero at Folsom',51,621,'Subscriber',94107); +INSERT INTO "trip" VALUES(903018,174,'8/24/2015 17:21','Powell Street BART',39,'8/24/2015 17:24','Market at 4th',76,541,'Subscriber',94107); +INSERT INTO "trip" VALUES(903020,1170,'8/24/2015 17:22','Santa Clara County Civic Center',80,'8/24/2015 17:42','MLK Library',11,61,'Subscriber',95112); +INSERT INTO "trip" VALUES(903021,279,'8/24/2015 17:22','Embarcadero at Bryant',54,'8/24/2015 17:27','Harry Bridges Plaza (Ferry Building)',50,291,'Subscriber',94105); +INSERT INTO "trip" VALUES(903022,426,'8/24/2015 17:22','San Francisco Caltrain (Townsend at 4th)',70,'8/24/2015 17:29','Embarcadero at Folsom',51,353,'Subscriber',94105); +INSERT INTO "trip" VALUES(903023,420,'8/24/2015 17:22','Beale at Market',56,'8/24/2015 17:29','Embarcadero at Bryant',54,454,'Subscriber',94107); +INSERT INTO "trip" VALUES(903025,1161,'8/24/2015 17:22','Market at 10th',67,'8/24/2015 17:42','Spear at Folsom',49,385,'Subscriber',94402); +INSERT INTO "trip" VALUES(903026,1059,'8/24/2015 17:23','Embarcadero at Sansome',60,'8/24/2015 17:40','Powell Street BART',39,404,'Subscriber',94102); +INSERT INTO "trip" VALUES(903027,829,'8/24/2015 17:23','Clay at Battery',41,'8/24/2015 17:37','2nd at Townsend',61,513,'Subscriber',94022); +INSERT INTO "trip" VALUES(903028,435,'8/24/2015 17:23','Howard at 2nd',63,'8/24/2015 17:30','San Francisco Caltrain 2 (330 Townsend)',69,359,'Subscriber',94107); +INSERT INTO "trip" VALUES(903029,435,'8/24/2015 17:24','2nd at Townsend',61,'8/24/2015 17:31','Temporary Transbay Terminal (Howard at Beale)',55,448,'Subscriber',94608); +INSERT INTO "trip" VALUES(903030,332,'8/24/2015 17:24','Market at 4th',76,'8/24/2015 17:29','Temporary Transbay Terminal (Howard at Beale)',55,567,'Subscriber',94706); +INSERT INTO "trip" VALUES(903031,674,'8/24/2015 17:24','San Francisco Caltrain 2 (330 Townsend)',69,'8/24/2015 17:36','Temporary Transbay Terminal (Howard at Beale)',55,437,'Subscriber',94608); +INSERT INTO "trip" VALUES(903032,346,'8/24/2015 17:25','Howard at 2nd',63,'8/24/2015 17:30','Steuart at Market',74,531,'Subscriber',94590); +INSERT INTO "trip" VALUES(903033,1865,'8/24/2015 17:25','Post at Kearny',47,'8/24/2015 17:56','Embarcadero at Sansome',60,274,'Customer',22201); +INSERT INTO "trip" VALUES(903034,275,'8/24/2015 17:25','San Francisco Caltrain 2 (330 Townsend)',69,'8/24/2015 17:30','Townsend at 7th',65,56,'Subscriber',94133); +INSERT INTO "trip" VALUES(903035,916,'8/24/2015 17:26','Market at Sansome',77,'8/24/2015 17:41','San Francisco Caltrain 2 (330 Townsend)',69,608,'Subscriber',94002); +INSERT INTO "trip" VALUES(903036,256,'8/24/2015 17:27','Castro Street and El Camino Real',32,'8/24/2015 17:31','Mountain View Caltrain Station',28,94,'Subscriber',94105); +INSERT INTO "trip" VALUES(903037,1028,'8/24/2015 17:27','San Francisco Caltrain (Townsend at 4th)',70,'8/24/2015 17:45','South Van Ness at Market',66,651,'Subscriber',94115); +INSERT INTO "trip" VALUES(903039,273,'8/24/2015 17:28','San Francisco Caltrain 2 (330 Townsend)',69,'8/24/2015 17:33','Townsend at 7th',65,268,'Subscriber',94158); +INSERT INTO "trip" VALUES(903040,646,'8/24/2015 17:28','Steuart at Market',74,'8/24/2015 17:39','San Francisco Caltrain (Townsend at 4th)',70,542,'Subscriber',94403); +INSERT INTO "trip" VALUES(903041,696,'8/24/2015 17:29','Embarcadero at Vallejo',48,'8/24/2015 17:40','2nd at South Park',64,382,'Subscriber',94602); +INSERT INTO "trip" VALUES(903042,597,'8/24/2015 17:29','Davis at Jackson',42,'8/24/2015 17:39','2nd at Townsend',61,478,'Subscriber',94025); +INSERT INTO "trip" VALUES(903043,642,'8/24/2015 17:29','Market at 10th',67,'8/24/2015 17:40','San Francisco Caltrain 2 (330 Townsend)',69,310,'Subscriber',94025); +INSERT INTO "trip" VALUES(903044,849,'8/24/2015 17:30','Davis at Jackson',42,'8/24/2015 17:44','San Francisco Caltrain (Townsend at 4th)',70,604,'Subscriber',95014); +INSERT INTO "trip" VALUES(903045,1059,'8/24/2015 17:31','Townsend at 7th',65,'8/24/2015 17:49','Embarcadero at Sansome',60,504,'Subscriber',94109); +INSERT INTO "trip" VALUES(903047,256,'8/24/2015 17:31','San Francisco Caltrain 2 (330 Townsend)',69,'8/24/2015 17:36','Townsend at 7th',65,518,'Subscriber',94107); +INSERT INTO "trip" VALUES(903048,343,'8/24/2015 17:32','Embarcadero at Sansome',60,'8/24/2015 17:37','Steuart at Market',74,402,'Subscriber',94103); +INSERT INTO "trip" VALUES(903049,704,'8/24/2015 17:32','Steuart at Market',74,'8/24/2015 17:44','San Francisco Caltrain 2 (330 Townsend)',69,531,'Subscriber',94024); +INSERT INTO "trip" VALUES(903050,707,'8/24/2015 17:32','Beale at Market',56,'8/24/2015 17:44','San Francisco Caltrain (Townsend at 4th)',70,408,'Subscriber',94010); +INSERT INTO "trip" VALUES(903053,289,'8/24/2015 17:33','San Francisco Caltrain (Townsend at 4th)',70,'8/24/2015 17:38','Townsend at 7th',65,214,'Subscriber',94102); +INSERT INTO "trip" VALUES(903054,479,'8/24/2015 17:33','Powell Street BART',39,'8/24/2015 17:41','Market at 10th',67,374,'Subscriber',94102); +INSERT INTO "trip" VALUES(903055,703,'8/24/2015 17:33','San Francisco Caltrain 2 (330 Townsend)',69,'8/24/2015 17:45','Embarcadero at Folsom',51,473,'Subscriber',94608); +INSERT INTO "trip" VALUES(903058,140,'8/24/2015 17:34','5th at Howard',57,'8/24/2015 17:37','Powell Street BART',39,300,'Subscriber',94024); +INSERT INTO "trip" VALUES(903059,1115,'8/24/2015 17:35','Townsend at 7th',65,'8/24/2015 17:53','Powell at Post (Union Square)',71,409,'Subscriber',94109); +INSERT INTO "trip" VALUES(903062,641,'8/24/2015 17:36','Market at Sansome',77,'8/24/2015 17:46','San Francisco Caltrain (Townsend at 4th)',70,579,'Subscriber',94002); +INSERT INTO "trip" VALUES(903063,877,'8/24/2015 17:36','San Antonio Caltrain Station',29,'8/24/2015 17:51','Mountain View Caltrain Station',28,48,'Subscriber',94706); +INSERT INTO "trip" VALUES(903064,290,'8/24/2015 17:36','Howard at 2nd',63,'8/24/2015 17:41','Steuart at Market',74,593,'Subscriber',94115); +INSERT INTO "trip" VALUES(903065,538,'8/24/2015 17:36','Market at Sansome',77,'8/24/2015 17:45','Embarcadero at Sansome',60,355,'Subscriber',94133); +INSERT INTO "trip" VALUES(903066,366,'8/24/2015 17:37','2nd at Folsom',62,'8/24/2015 17:43','Harry Bridges Plaza (Ferry Building)',50,560,'Subscriber',94949); +INSERT INTO "trip" VALUES(903070,171,'8/24/2015 17:37','Embarcadero at Vallejo',48,'8/24/2015 17:40','Steuart at Market',74,493,'Subscriber',94114); +INSERT INTO "trip" VALUES(903071,309,'8/24/2015 17:37','Cowper at University',37,'8/24/2015 17:42','Palo Alto Caltrain Station',34,248,'Subscriber',94107); +INSERT INTO "trip" VALUES(903072,306,'8/24/2015 17:37','Cowper at University',37,'8/24/2015 17:42','Palo Alto Caltrain Station',34,230,'Subscriber',94102); +INSERT INTO "trip" VALUES(903075,360,'8/24/2015 17:38','5th at Howard',57,'8/24/2015 17:44','San Francisco Caltrain 2 (330 Townsend)',69,592,'Subscriber',95050); +INSERT INTO "trip" VALUES(903077,444,'8/24/2015 17:39','2nd at Folsom',62,'8/24/2015 17:46','San Francisco Caltrain (Townsend at 4th)',70,631,'Subscriber',94403); +INSERT INTO "trip" VALUES(903078,882,'8/24/2015 17:39','Steuart at Market',74,'8/24/2015 17:54','San Francisco Caltrain (Townsend at 4th)',70,402,'Subscriber',94404); +INSERT INTO "trip" VALUES(903079,396,'8/24/2015 17:39','2nd at Townsend',61,'8/24/2015 17:46','Harry Bridges Plaza (Ferry Building)',50,535,'Subscriber',94903); +INSERT INTO "trip" VALUES(903080,773,'8/24/2015 17:39','San Jose Diridon Caltrain Station',2,'8/24/2015 17:52','Japantown',9,31,'Subscriber',95112); +INSERT INTO "trip" VALUES(903082,786,'8/24/2015 17:39','Howard at 2nd',63,'8/24/2015 17:53','Townsend at 7th',65,415,'Subscriber',94107); +INSERT INTO "trip" VALUES(903083,828,'8/24/2015 17:39','Temporary Transbay Terminal (Howard at Beale)',55,'8/24/2015 17:53','San Francisco Caltrain (Townsend at 4th)',70,448,'Subscriber',95014); +INSERT INTO "trip" VALUES(903084,478,'8/24/2015 17:39','Market at 4th',76,'8/24/2015 17:47','San Francisco Caltrain (Townsend at 4th)',70,552,'Subscriber',94303); +INSERT INTO "trip" VALUES(903085,225,'8/24/2015 17:40','San Jose Diridon Caltrain Station',2,'8/24/2015 17:43','Santa Clara at Almaden',4,95,'Subscriber',95110); +INSERT INTO "trip" VALUES(903087,277,'8/24/2015 17:40','Embarcadero at Sansome',60,'8/24/2015 17:45','Harry Bridges Plaza (Ferry Building)',50,587,'Subscriber',94947); +INSERT INTO "trip" VALUES(903088,339,'8/24/2015 17:40','Yerba Buena Center of the Arts (3rd @ Howard)',68,'8/24/2015 17:46','San Francisco Caltrain (Townsend at 4th)',70,451,'Subscriber',94087); +INSERT INTO "trip" VALUES(903093,671,'8/24/2015 17:42','Harry Bridges Plaza (Ferry Building)',50,'8/24/2015 17:53','San Francisco Caltrain (Townsend at 4th)',70,514,'Subscriber',95051); +INSERT INTO "trip" VALUES(903094,189,'8/24/2015 17:43','2nd at Folsom',62,'8/24/2015 17:46','Market at Sansome',77,418,'Subscriber',94612); +INSERT INTO "trip" VALUES(903095,249,'8/24/2015 17:43','Embarcadero at Vallejo',48,'8/24/2015 17:47','Steuart at Market',74,137,'Subscriber',94102); +INSERT INTO "trip" VALUES(903096,914,'8/24/2015 17:43','Market at 10th',67,'8/24/2015 17:58','Spear at Folsom',49,327,'Subscriber',94105); +INSERT INTO "trip" VALUES(903097,654,'8/24/2015 17:43','Powell Street BART',39,'8/24/2015 17:54','Townsend at 7th',65,482,'Subscriber',94107); +INSERT INTO "trip" VALUES(903098,498,'8/24/2015 17:44','Temporary Transbay Terminal (Howard at Beale)',55,'8/24/2015 17:52','San Francisco Caltrain (Townsend at 4th)',70,567,'Subscriber',94010); +INSERT INTO "trip" VALUES(903101,279,'8/24/2015 17:44','Broadway St at Battery St',82,'8/24/2015 17:49','Steuart at Market',74,607,'Subscriber',94702); +INSERT INTO "trip" VALUES(903102,770,'8/24/2015 17:44','Yerba Buena Center of the Arts (3rd @ Howard)',68,'8/24/2015 17:57','South Van Ness at Market',66,187,'Subscriber',94102); +INSERT INTO "trip" VALUES(903103,431,'8/24/2015 17:44','South Van Ness at Market',66,'8/24/2015 17:52','Powell Street BART',39,238,'Subscriber',94803); +INSERT INTO "trip" VALUES(903106,340,'8/24/2015 17:45','2nd at South Park',64,'8/24/2015 17:51','Market at Sansome',77,382,'Subscriber',94610); +INSERT INTO "trip" VALUES(903107,646,'8/24/2015 17:46','Townsend at 7th',65,'8/24/2015 17:56','South Van Ness at Market',66,518,'Subscriber',94131); +INSERT INTO "trip" VALUES(903108,616,'8/24/2015 17:46','Harry Bridges Plaza (Ferry Building)',50,'8/24/2015 17:56','2nd at Townsend',61,283,'Subscriber',94111); +INSERT INTO "trip" VALUES(903111,578,'8/24/2015 17:46','Temporary Transbay Terminal (Howard at Beale)',55,'8/24/2015 17:56','San Francisco Caltrain (Townsend at 4th)',70,501,'Subscriber',94022); +INSERT INTO "trip" VALUES(903112,342,'8/24/2015 17:47','San Francisco Caltrain (Townsend at 4th)',70,'8/24/2015 17:52','2nd at South Park',64,388,'Subscriber',94107); +INSERT INTO "trip" VALUES(903114,1058,'8/24/2015 17:47','Embarcadero at Sansome',60,'8/24/2015 18:04','San Francisco Caltrain (Townsend at 4th)',70,709,'Subscriber',94103); +INSERT INTO "trip" VALUES(903115,717,'8/24/2015 17:47','San Francisco Caltrain (Townsend at 4th)',70,'8/24/2015 17:59','Market at Sansome',77,134,'Subscriber',94549); +INSERT INTO "trip" VALUES(903116,241,'8/24/2015 17:47','Mountain View City Hall',27,'8/24/2015 17:51','Mountain View Caltrain Station',28,251,'Subscriber',94103); +INSERT INTO "trip" VALUES(903117,714,'8/24/2015 17:48','Temporary Transbay Terminal (Howard at Beale)',55,'8/24/2015 17:59','San Francisco Caltrain (Townsend at 4th)',70,437,'Subscriber',95110); +INSERT INTO "trip" VALUES(903118,1074,'8/24/2015 17:48','Commercial at Montgomery',45,'8/24/2015 18:06','San Francisco Caltrain 2 (330 Townsend)',69,441,'Subscriber',94107); +INSERT INTO "trip" VALUES(903121,280,'8/24/2015 17:48','Mountain View City Hall',27,'8/24/2015 17:53','Mountain View Caltrain Station',28,141,'Subscriber',95110); +INSERT INTO "trip" VALUES(903123,653,'8/24/2015 17:49','Howard at 2nd',63,'8/24/2015 18:00','San Francisco Caltrain 2 (330 Townsend)',69,383,'Subscriber',94111); +INSERT INTO "trip" VALUES(903124,925,'8/24/2015 17:49','Harry Bridges Plaza (Ferry Building)',50,'8/24/2015 18:05','San Francisco Caltrain (Townsend at 4th)',70,556,'Subscriber',94111); +INSERT INTO "trip" VALUES(903125,661,'8/24/2015 17:50','South Van Ness at Market',66,'8/24/2015 18:01','San Francisco Caltrain 2 (330 Townsend)',69,534,'Subscriber',94403); +INSERT INTO "trip" VALUES(903126,789,'8/24/2015 17:50','South Van Ness at Market',66,'8/24/2015 18:03','San Francisco Caltrain 2 (330 Townsend)',69,562,'Subscriber',94085); +INSERT INTO "trip" VALUES(903128,867,'8/24/2015 17:50','Steuart at Market',74,'8/24/2015 18:04','San Francisco Caltrain (Townsend at 4th)',70,493,'Subscriber',95134); +INSERT INTO "trip" VALUES(903130,345,'8/24/2015 17:51','5th at Howard',57,'8/24/2015 17:57','San Francisco Caltrain 2 (330 Townsend)',69,510,'Subscriber',94401); +INSERT INTO "trip" VALUES(903132,538,'8/24/2015 17:51','Embarcadero at Folsom',51,'8/24/2015 18:00','Grant Avenue at Columbus Avenue',73,621,'Subscriber',94133); +INSERT INTO "trip" VALUES(903134,329,'8/24/2015 17:52','Embarcadero at Sansome',60,'8/24/2015 17:57','Steuart at Market',74,504,'Subscriber',94597); +INSERT INTO "trip" VALUES(903135,750,'8/24/2015 17:52','Davis at Jackson',42,'8/24/2015 18:05','Civic Center BART (7th at Market)',72,375,'Subscriber',94103); +INSERT INTO "trip" VALUES(903136,436,'8/24/2015 17:53','2nd at Townsend',61,'8/24/2015 18:00','Market at Sansome',77,570,'Subscriber',94107); +INSERT INTO "trip" VALUES(903137,354,'8/24/2015 17:53','Broadway St at Battery St',82,'8/24/2015 17:59','Temporary Transbay Terminal (Howard at Beale)',55,519,'Subscriber',94610); +INSERT INTO "trip" VALUES(903138,553,'8/24/2015 17:52','2nd at Folsom',62,'8/24/2015 18:01','Washington at Kearny',46,450,'Subscriber',94133); +INSERT INTO "trip" VALUES(903139,444,'8/24/2015 17:53','Market at Sansome',77,'8/24/2015 18:00','Grant Avenue at Columbus Avenue',73,538,'Subscriber',94133); +INSERT INTO "trip" VALUES(903140,535,'8/24/2015 17:54','Embarcadero at Folsom',51,'8/24/2015 18:02','San Francisco Caltrain (Townsend at 4th)',70,473,'Subscriber',95070); +INSERT INTO "trip" VALUES(903141,810,'8/24/2015 17:54','Steuart at Market',74,'8/24/2015 18:08','San Francisco Caltrain 2 (330 Townsend)',69,593,'Subscriber',94010); +INSERT INTO "trip" VALUES(903142,451,'8/24/2015 17:56','2nd at South Park',64,'8/24/2015 18:03','Harry Bridges Plaza (Ferry Building)',50,388,'Subscriber',94960); +INSERT INTO "trip" VALUES(903143,151,'8/24/2015 17:56','Howard at 2nd',63,'8/24/2015 17:58','Market at Sansome',77,624,'Subscriber',94114); +INSERT INTO "trip" VALUES(903144,568,'8/24/2015 17:56','Market at Sansome',77,'8/24/2015 18:05','San Francisco Caltrain 2 (330 Townsend)',69,277,'Subscriber',95134); +INSERT INTO "trip" VALUES(903145,784,'8/24/2015 17:56','Washington at Kearny',46,'8/24/2015 18:09','San Francisco Caltrain 2 (330 Townsend)',69,584,'Subscriber',94087); +INSERT INTO "trip" VALUES(903146,923,'8/24/2015 17:56','San Francisco Caltrain (Townsend at 4th)',70,'8/24/2015 18:11','Embarcadero at Sansome',60,567,'Subscriber',94133); +INSERT INTO "trip" VALUES(903147,242,'8/24/2015 17:57','Mountain View City Hall',27,'8/24/2015 18:01','Mountain View Caltrain Station',28,182,'Subscriber',94107); +INSERT INTO "trip" VALUES(903148,566,'8/24/2015 17:57','San Francisco Caltrain (Townsend at 4th)',70,'8/24/2015 18:06','Steuart at Market',74,542,'Subscriber',94705); +INSERT INTO "trip" VALUES(903149,339,'8/24/2015 17:58','Davis at Jackson',42,'8/24/2015 18:03','Temporary Transbay Terminal (Howard at Beale)',55,537,'Subscriber',94611); +INSERT INTO "trip" VALUES(903151,179,'8/24/2015 17:59','Townsend at 7th',65,'8/24/2015 18:02','San Francisco Caltrain (Townsend at 4th)',70,628,'Subscriber',94404); +INSERT INTO "trip" VALUES(903152,428,'8/24/2015 17:59','Howard at 2nd',63,'8/24/2015 18:06','San Francisco Caltrain 2 (330 Townsend)',69,429,'Subscriber',94066); +INSERT INTO "trip" VALUES(903153,617,'8/24/2015 17:59','South Van Ness at Market',66,'8/24/2015 18:09','San Francisco Caltrain 2 (330 Townsend)',69,469,'Subscriber',95118); +INSERT INTO "trip" VALUES(903154,367,'8/24/2015 17:59','2nd at South Park',64,'8/24/2015 18:05','San Francisco Caltrain 2 (330 Townsend)',69,631,'Subscriber',94105); +INSERT INTO "trip" VALUES(903156,660,'8/24/2015 17:59','Golden Gate at Polk',59,'8/24/2015 18:10','San Francisco Caltrain 2 (330 Townsend)',69,544,'Subscriber',94306); +INSERT INTO "trip" VALUES(903157,655,'8/24/2015 17:59','San Jose Diridon Caltrain Station',2,'8/24/2015 18:10','Ryland Park',84,688,'Subscriber',95110); +INSERT INTO "trip" VALUES(903158,280,'8/24/2015 18:01','Market at Sansome',77,'8/24/2015 18:06','Temporary Transbay Terminal (Howard at Beale)',55,209,'Subscriber',94610); +INSERT INTO "trip" VALUES(903159,290,'8/24/2015 18:01','Townsend at 7th',65,'8/24/2015 18:06','San Francisco Caltrain 2 (330 Townsend)',69,268,'Subscriber',94040); +INSERT INTO "trip" VALUES(903160,788,'8/24/2015 18:02','Temporary Transbay Terminal (Howard at Beale)',55,'8/24/2015 18:15','San Francisco Caltrain 2 (330 Townsend)',69,519,'Subscriber',94030); +INSERT INTO "trip" VALUES(903161,788,'8/24/2015 18:02','2nd at Townsend',61,'8/24/2015 18:15','Davis at Jackson',42,292,'Subscriber',94111); +INSERT INTO "trip" VALUES(903162,799,'8/24/2015 18:03','Temporary Transbay Terminal (Howard at Beale)',55,'8/24/2015 18:16','Townsend at 7th',65,380,'Subscriber',94107); +INSERT INTO "trip" VALUES(903163,562,'8/24/2015 18:03','Market at 4th',76,'8/24/2015 18:12','San Francisco Caltrain 2 (330 Townsend)',69,629,'Subscriber',94107); +INSERT INTO "trip" VALUES(903164,404,'8/24/2015 18:03','2nd at South Park',64,'8/24/2015 18:10','Market at Sansome',77,558,'Subscriber',94607); +INSERT INTO "trip" VALUES(903165,1117,'8/24/2015 18:03','Embarcadero at Sansome',60,'8/24/2015 18:22','Steuart at Market',74,355,'Subscriber',94110); +INSERT INTO "trip" VALUES(903166,1016,'8/24/2015 18:04','Embarcadero at Sansome',60,'8/24/2015 18:21','San Francisco Caltrain (Townsend at 4th)',70,274,'Subscriber',95128); +INSERT INTO "trip" VALUES(903167,559,'8/24/2015 18:05','Harry Bridges Plaza (Ferry Building)',50,'8/24/2015 18:14','2nd at Townsend',61,599,'Subscriber',95111); +INSERT INTO "trip" VALUES(903168,704,'8/24/2015 18:05','Davis at Jackson',42,'8/24/2015 18:17','Yerba Buena Center of the Arts (3rd @ Howard)',68,630,'Subscriber',98033); +INSERT INTO "trip" VALUES(903169,693,'8/24/2015 18:05','Market at 10th',67,'8/24/2015 18:17','Steuart at Market',74,374,'Subscriber',94501); +INSERT INTO "trip" VALUES(903170,1092,'8/24/2015 18:06','2nd at Townsend',61,'8/24/2015 18:24','Embarcadero at Sansome',60,508,'Subscriber',94107); +INSERT INTO "trip" VALUES(903171,320,'8/24/2015 18:06','Commercial at Montgomery',45,'8/24/2015 18:11','Market at Sansome',77,338,'Subscriber',94704); +INSERT INTO "trip" VALUES(903172,477,'8/24/2015 18:06','Spear at Folsom',49,'8/24/2015 18:14','San Francisco Caltrain 2 (330 Townsend)',69,407,'Subscriber',94010); +INSERT INTO "trip" VALUES(903173,420,'8/24/2015 18:06','Market at Sansome',77,'8/24/2015 18:13','5th at Howard',57,189,'Subscriber',94105); +INSERT INTO "trip" VALUES(903174,560,'8/24/2015 18:06','Market at 10th',67,'8/24/2015 18:16','San Francisco Caltrain 2 (330 Townsend)',69,878,'Subscriber',94066); +INSERT INTO "trip" VALUES(903175,462,'8/24/2015 18:07','Davis at Jackson',42,'8/24/2015 18:14','Embarcadero at Bryant',54,193,'Subscriber',94105); +INSERT INTO "trip" VALUES(903176,264,'8/24/2015 18:07','Santa Clara at Almaden',4,'8/24/2015 18:11','San Jose Diridon Caltrain Station',2,488,'Subscriber',94114); +INSERT INTO "trip" VALUES(903177,582,'8/24/2015 18:07','Temporary Transbay Terminal (Howard at Beale)',55,'8/24/2015 18:16','San Francisco Caltrain 2 (330 Townsend)',69,209,'Subscriber',94158); +INSERT INTO "trip" VALUES(903178,297,'8/24/2015 18:09','Mountain View Caltrain Station',28,'8/24/2015 18:14','Castro Street and El Camino Real',32,182,'Subscriber',94022); +INSERT INTO "trip" VALUES(903179,362,'8/24/2015 18:08','2nd at Townsend',61,'8/24/2015 18:15','Market at Sansome',77,361,'Subscriber',94708); +INSERT INTO "trip" VALUES(903180,646,'8/24/2015 18:09','Mountain View Caltrain Station',28,'8/24/2015 18:19','Rengstorff Avenue / California Street',33,46,'Subscriber',94040); +INSERT INTO "trip" VALUES(903181,314,'8/24/2015 18:09','Powell at Post (Union Square)',71,'8/24/2015 18:14','Howard at 2nd',63,29,'Subscriber',94109); +INSERT INTO "trip" VALUES(903182,715,'8/24/2015 18:09','San Francisco Caltrain 2 (330 Townsend)',69,'8/24/2015 18:21','San Francisco City Hall',58,309,'Subscriber',94102); +INSERT INTO "trip" VALUES(903183,343,'8/24/2015 18:09','Mountain View Caltrain Station',28,'8/24/2015 18:14','Evelyn Park and Ride',30,673,'Subscriber',94087); +INSERT INTO "trip" VALUES(903184,395,'8/24/2015 18:09','Redwood City Medical Center',26,'8/24/2015 18:16','Redwood City Caltrain Station',22,690,'Subscriber',94040); +INSERT INTO "trip" VALUES(903185,143,'8/24/2015 18:10','Beale at Market',56,'8/24/2015 18:13','Temporary Transbay Terminal (Howard at Beale)',55,506,'Subscriber',94501); +INSERT INTO "trip" VALUES(903186,374,'8/24/2015 18:10','Townsend at 7th',65,'8/24/2015 18:17','Civic Center BART (7th at Market)',72,482,'Subscriber',94518); +INSERT INTO "trip" VALUES(903187,272,'8/24/2015 18:10','Commercial at Montgomery',45,'8/24/2015 18:15','Yerba Buena Center of the Arts (3rd @ Howard)',68,623,'Subscriber',94107); +INSERT INTO "trip" VALUES(903188,864,'8/24/2015 18:11','San Francisco Caltrain 2 (330 Townsend)',69,'8/24/2015 18:25','Market at 10th',67,469,'Subscriber',94103); +INSERT INTO "trip" VALUES(903189,602,'8/24/2015 18:11','Spear at Folsom',49,'8/24/2015 18:21','San Francisco Caltrain (Townsend at 4th)',70,528,'Subscriber',94404); +INSERT INTO "trip" VALUES(903190,739,'8/24/2015 18:11','Embarcadero at Vallejo',48,'8/24/2015 18:24','2nd at Townsend',61,554,'Subscriber',94107); +INSERT INTO "trip" VALUES(903191,474,'8/24/2015 18:12','Embarcadero at Sansome',60,'8/24/2015 18:20','Harry Bridges Plaza (Ferry Building)',50,567,'Subscriber',94920); +INSERT INTO "trip" VALUES(903194,892,'8/24/2015 18:13','Market at Sansome',77,'8/24/2015 18:27','San Francisco Caltrain (Townsend at 4th)',70,566,'Subscriber',94087); +INSERT INTO "trip" VALUES(903195,106,'8/24/2015 18:14','Powell Street BART',39,'8/24/2015 18:16','Civic Center BART (7th at Market)',72,300,'Subscriber',94111); +INSERT INTO "trip" VALUES(903198,207,'8/24/2015 18:14','Clay at Battery',41,'8/24/2015 18:18','Market at Sansome',77,603,'Subscriber',94305); +INSERT INTO "trip" VALUES(903202,630,'8/24/2015 18:15','Embarcadero at Vallejo',48,'8/24/2015 18:26','San Francisco Caltrain (Townsend at 4th)',70,310,'Subscriber',94027); +INSERT INTO "trip" VALUES(903203,746,'8/24/2015 18:16','San Francisco Caltrain 2 (330 Townsend)',69,'8/24/2015 18:28','South Van Ness at Market',66,350,'Subscriber',94306); +INSERT INTO "trip" VALUES(903205,678,'8/24/2015 18:16','Davis at Jackson',42,'8/24/2015 18:27','San Francisco Caltrain (Townsend at 4th)',70,495,'Subscriber',95129); +INSERT INTO "trip" VALUES(903207,327,'8/24/2015 18:16','Powell at Post (Union Square)',71,'8/24/2015 18:21','Mechanics Plaza (Market at Battery)',75,472,'Subscriber',94115); +INSERT INTO "trip" VALUES(903209,378,'8/24/2015 18:17','2nd at South Park',64,'8/24/2015 18:23','Harry Bridges Plaza (Ferry Building)',50,592,'Subscriber',94920); +INSERT INTO "trip" VALUES(903210,351,'8/24/2015 18:17','Steuart at Market',74,'8/24/2015 18:23','Broadway St at Battery St',82,607,'Subscriber',94133); +INSERT INTO "trip" VALUES(903211,1100,'8/24/2015 18:17','Clay at Battery',41,'8/24/2015 18:35','San Francisco Caltrain (Townsend at 4th)',70,547,'Subscriber',94086); +INSERT INTO "trip" VALUES(903212,312,'8/24/2015 18:17','Yerba Buena Center of the Arts (3rd @ Howard)',68,'8/24/2015 18:22','Powell Street BART',39,527,'Subscriber',94804); +INSERT INTO "trip" VALUES(903213,478,'8/24/2015 18:18','Embarcadero at Sansome',60,'8/24/2015 18:26','Mechanics Plaza (Market at Battery)',75,320,'Subscriber',94111); +INSERT INTO "trip" VALUES(903214,470,'8/24/2015 18:18','Temporary Transbay Terminal (Howard at Beale)',55,'8/24/2015 18:26','San Francisco Caltrain (Townsend at 4th)',70,537,'Subscriber',94062); +INSERT INTO "trip" VALUES(903218,908,'8/24/2015 18:19','Broadway St at Battery St',82,'8/24/2015 18:34','San Francisco Caltrain 2 (330 Townsend)',69,384,'Subscriber',95130); +INSERT INTO "trip" VALUES(903221,920,'8/24/2015 18:19','Commercial at Montgomery',45,'8/24/2015 18:35','Townsend at 7th',65,553,'Subscriber',94107); +INSERT INTO "trip" VALUES(903222,339,'8/24/2015 18:20','2nd at South Park',64,'8/24/2015 18:26','Market at Sansome',77,604,'Subscriber',94607); +INSERT INTO "trip" VALUES(903223,466,'8/24/2015 18:20','Market at 4th',76,'8/24/2015 18:28','San Francisco Caltrain (Townsend at 4th)',70,413,'Subscriber',94002); +INSERT INTO "trip" VALUES(903224,421,'8/24/2015 18:20','Washington at Kearny',46,'8/24/2015 18:27','Temporary Transbay Terminal (Howard at Beale)',55,67,'Subscriber',94608); +INSERT INTO "trip" VALUES(903228,693,'8/24/2015 18:23','Townsend at 7th',65,'8/24/2015 18:34','South Van Ness at Market',66,415,'Subscriber',94107); +INSERT INTO "trip" VALUES(903229,344,'8/24/2015 18:23','Temporary Transbay Terminal (Howard at Beale)',55,'8/24/2015 18:29','Commercial at Montgomery',45,506,'Subscriber',94117); +INSERT INTO "trip" VALUES(903231,465,'8/24/2015 18:23','Market at Sansome',77,'8/24/2015 18:31','Embarcadero at Bryant',54,575,'Subscriber',94105); +INSERT INTO "trip" VALUES(903232,327,'8/24/2015 18:24','Steuart at Market',74,'8/24/2015 18:29','Howard at 2nd',63,137,'Customer','nil'); +INSERT INTO "trip" VALUES(903234,501,'8/24/2015 18:24','Howard at 2nd',63,'8/24/2015 18:33','San Francisco Caltrain (Townsend at 4th)',70,29,'Subscriber',95118); +INSERT INTO "trip" VALUES(903236,506,'8/24/2015 18:25','Market at 4th',76,'8/24/2015 18:33','Temporary Transbay Terminal (Howard at Beale)',55,287,'Subscriber',94608); +INSERT INTO "trip" VALUES(903237,474,'8/24/2015 18:25','Market at 4th',76,'8/24/2015 18:33','Harry Bridges Plaza (Ferry Building)',50,541,'Subscriber',95126); +INSERT INTO "trip" VALUES(903238,254,'8/24/2015 18:26','Evelyn Park and Ride',30,'8/24/2015 18:30','Mountain View Caltrain Station',28,233,'Subscriber',94133); +INSERT INTO "trip" VALUES(903239,894,'8/24/2015 18:26','Powell Street BART',39,'8/24/2015 18:41','2nd at Townsend',61,191,'Subscriber',94107); +INSERT INTO "trip" VALUES(903240,258,'8/24/2015 18:26','2nd at Folsom',62,'8/24/2015 18:30','Market at Sansome',77,389,'Subscriber',94612); +INSERT INTO "trip" VALUES(903241,297,'8/24/2015 18:26','San Jose Diridon Caltrain Station',2,'8/24/2015 18:31','Santa Clara at Almaden',4,643,'Subscriber',95110); +INSERT INTO "trip" VALUES(903243,343,'8/24/2015 18:26','Broadway St at Battery St',82,'8/24/2015 18:32','Temporary Transbay Terminal (Howard at Beale)',55,329,'Subscriber',94602); +INSERT INTO "trip" VALUES(903244,342,'8/24/2015 18:27','Broadway St at Battery St',82,'8/24/2015 18:32','Beale at Market',56,471,'Subscriber',94118); +INSERT INTO "trip" VALUES(903245,344,'8/24/2015 18:27','San Francisco Caltrain 2 (330 Townsend)',69,'8/24/2015 18:33','Townsend at 7th',65,544,'Subscriber',94103); +INSERT INTO "trip" VALUES(903246,280,'8/24/2015 18:28','San Jose Diridon Caltrain Station',2,'8/24/2015 18:33','San Pedro Square',6,206,'Subscriber',95112); +INSERT INTO "trip" VALUES(903247,1106,'8/24/2015 18:29','Embarcadero at Sansome',60,'8/24/2015 18:47','South Van Ness at Market',66,286,'Subscriber',94102); +INSERT INTO "trip" VALUES(903248,862,'8/24/2015 18:29','San Antonio Shopping Center',31,'8/24/2015 18:43','Mountain View Caltrain Station',28,255,'Subscriber',94109); +INSERT INTO "trip" VALUES(903249,166,'8/24/2015 18:29','Howard at 2nd',63,'8/24/2015 18:32','Market at Sansome',77,137,'Subscriber',94105); +INSERT INTO "trip" VALUES(903250,292,'8/24/2015 18:29','Yerba Buena Center of the Arts (3rd @ Howard)',68,'8/24/2015 18:34','2nd at South Park',64,623,'Subscriber',94107); +INSERT INTO "trip" VALUES(903251,694,'8/24/2015 18:31','Townsend at 7th',65,'8/24/2015 18:42','South Van Ness at Market',66,56,'Subscriber',94133); +INSERT INTO "trip" VALUES(903252,378,'8/24/2015 18:31','San Francisco Caltrain (Townsend at 4th)',70,'8/24/2015 18:38','Yerba Buena Center of the Arts (3rd @ Howard)',68,473,'Subscriber',94105); +INSERT INTO "trip" VALUES(903253,222,'8/24/2015 18:32','San Francisco Caltrain (Townsend at 4th)',70,'8/24/2015 18:35','Townsend at 7th',65,628,'Subscriber',94103); +INSERT INTO "trip" VALUES(903254,592,'8/24/2015 18:32','San Francisco Caltrain (Townsend at 4th)',70,'8/24/2015 18:42','Temporary Transbay Terminal (Howard at Beale)',55,448,'Subscriber',94707); +INSERT INTO "trip" VALUES(903255,456,'8/24/2015 18:32','Mechanics Plaza (Market at Battery)',75,'8/24/2015 18:40','Embarcadero at Sansome',60,472,'Subscriber',94111); +INSERT INTO "trip" VALUES(903256,183,'8/24/2015 18:32','San Francisco Caltrain 2 (330 Townsend)',69,'8/24/2015 18:35','2nd at Townsend',61,383,'Subscriber',94158); +INSERT INTO "trip" VALUES(903257,686,'8/24/2015 18:32','San Francisco Caltrain 2 (330 Townsend)',69,'8/24/2015 18:44','Market at 10th',67,509,'Subscriber',94102); +INSERT INTO "trip" VALUES(903258,743,'8/24/2015 18:33','San Francisco Caltrain (Townsend at 4th)',70,'8/24/2015 18:45','Golden Gate at Polk',59,493,'Subscriber',94109); +INSERT INTO "trip" VALUES(903259,501,'8/24/2015 18:33','Market at 4th',76,'8/24/2015 18:41','Market at 4th',76,611,'Customer','nil'); +INSERT INTO "trip" VALUES(903260,1125,'8/24/2015 18:32','Broadway St at Battery St',82,'8/24/2015 18:51','San Francisco Caltrain 2 (330 Townsend)',69,358,'Subscriber',94065); +INSERT INTO "trip" VALUES(903261,432,'8/24/2015 18:34','Spear at Folsom',49,'8/24/2015 18:41','San Francisco Caltrain (Townsend at 4th)',70,428,'Subscriber',94403); +INSERT INTO "trip" VALUES(903262,897,'8/24/2015 18:34','Civic Center BART (7th at Market)',72,'8/24/2015 18:49','Embarcadero at Sansome',60,267,'Subscriber',94111); +INSERT INTO "trip" VALUES(903263,610,'8/24/2015 18:34','San Francisco Caltrain 2 (330 Townsend)',69,'8/24/2015 18:44','Powell Street BART',39,372,'Subscriber',94109); +INSERT INTO "trip" VALUES(903264,755,'8/24/2015 18:35','Mechanics Plaza (Market at Battery)',75,'8/24/2015 18:47','Market at 10th',67,320,'Subscriber',94102); +INSERT INTO "trip" VALUES(903265,639,'8/24/2015 18:35','Market at 10th',67,'8/24/2015 18:45','San Francisco Caltrain 2 (330 Townsend)',69,618,'Subscriber',94306); +INSERT INTO "trip" VALUES(903266,287,'8/24/2015 18:35','Castro Street and El Camino Real',32,'8/24/2015 18:40','Mountain View Caltrain Station',28,92,'Subscriber',94401); +INSERT INTO "trip" VALUES(903267,168,'8/24/2015 18:35','Temporary Transbay Terminal (Howard at Beale)',55,'8/24/2015 18:38','Howard at 2nd',63,287,'Subscriber',94105); +INSERT INTO "trip" VALUES(903268,566,'8/24/2015 18:36','Spear at Folsom',49,'8/24/2015 18:45','San Francisco Caltrain (Townsend at 4th)',70,411,'Subscriber',94403); +INSERT INTO "trip" VALUES(903269,524,'8/24/2015 18:36','2nd at Folsom',62,'8/24/2015 18:45','San Francisco Caltrain (Townsend at 4th)',70,425,'Customer',94025); +INSERT INTO "trip" VALUES(903270,786,'8/24/2015 18:36','2nd at Townsend',61,'8/24/2015 18:49','Mechanics Plaza (Market at Battery)',75,513,'Subscriber',94609); +INSERT INTO "trip" VALUES(903271,657,'8/24/2015 18:37','Powell Street BART',39,'8/24/2015 18:48','San Francisco Caltrain (Townsend at 4th)',70,540,'Subscriber',94102); +INSERT INTO "trip" VALUES(903272,242,'8/24/2015 18:37','Cowper at University',37,'8/24/2015 18:41','Palo Alto Caltrain Station',34,257,'Subscriber',94107); +INSERT INTO "trip" VALUES(903273,620,'8/24/2015 18:37','Market at 10th',67,'8/24/2015 18:48','San Francisco Caltrain 2 (330 Townsend)',69,469,'Subscriber',94065); +INSERT INTO "trip" VALUES(903274,664,'8/24/2015 18:38','Beale at Market',56,'8/24/2015 18:49','Golden Gate at Polk',59,471,'Subscriber',94109); +INSERT INTO "trip" VALUES(903275,569,'8/24/2015 18:38','2nd at Townsend',61,'8/24/2015 18:48','Embarcadero at Sansome',60,383,'Subscriber',94111); +INSERT INTO "trip" VALUES(903277,524,'8/24/2015 18:39','Spear at Folsom',49,'8/24/2015 18:48','San Francisco Caltrain 2 (330 Townsend)',69,326,'Subscriber',94105); +INSERT INTO "trip" VALUES(903278,446,'8/24/2015 18:40','Howard at 2nd',63,'8/24/2015 18:47','San Francisco Caltrain (Townsend at 4th)',70,287,'Subscriber',94063); +INSERT INTO "trip" VALUES(903279,708,'8/24/2015 18:40','Steuart at Market',74,'8/24/2015 18:52','San Francisco Caltrain 2 (330 Townsend)',69,457,'Subscriber',94025); +INSERT INTO "trip" VALUES(903280,274,'8/24/2015 18:40','Embarcadero at Sansome',60,'8/24/2015 18:44','Steuart at Market',74,508,'Subscriber',94609); +INSERT INTO "trip" VALUES(903282,480,'8/24/2015 18:42','San Francisco Caltrain (Townsend at 4th)',70,'8/24/2015 18:50','Powell Street BART',39,428,'Subscriber',94607); +INSERT INTO "trip" VALUES(903283,673,'8/24/2015 18:42','Steuart at Market',74,'8/24/2015 18:53','2nd at Townsend',61,542,'Subscriber',94158); +INSERT INTO "trip" VALUES(903284,804,'8/24/2015 18:43','Townsend at 7th',65,'8/24/2015 18:56','Powell at Post (Union Square)',71,553,'Subscriber',94103); +INSERT INTO "trip" VALUES(903285,1030,'8/24/2015 18:43','Townsend at 7th',65,'8/24/2015 19:00','Clay at Battery',41,520,'Subscriber',94103); +INSERT INTO "trip" VALUES(903287,199,'8/24/2015 18:43','Townsend at 7th',65,'8/24/2015 18:46','San Francisco Caltrain 2 (330 Townsend)',69,544,'Subscriber',95051); +INSERT INTO "trip" VALUES(903288,440,'8/24/2015 18:43','Post at Kearny',47,'8/24/2015 18:51','Davis at Jackson',42,275,'Subscriber',94111); +INSERT INTO "trip" VALUES(903289,409,'8/24/2015 18:44','San Jose Diridon Caltrain Station',2,'8/24/2015 18:50','Paseo de San Antonio',7,488,'Subscriber',95113); +INSERT INTO "trip" VALUES(903291,858,'8/24/2015 18:44','Embarcadero at Vallejo',48,'8/24/2015 18:58','San Francisco Caltrain 2 (330 Townsend)',69,282,'Subscriber',94403); +INSERT INTO "trip" VALUES(903292,393,'8/24/2015 18:44','2nd at South Park',64,'8/24/2015 18:51','Temporary Transbay Terminal (Howard at Beale)',55,313,'Subscriber',94610); +INSERT INTO "trip" VALUES(903293,1031,'8/24/2015 18:44','Clay at Battery',41,'8/24/2015 19:02','San Francisco City Hall',58,500,'Subscriber',94102); +INSERT INTO "trip" VALUES(903295,435,'8/24/2015 18:45','San Jose Diridon Caltrain Station',2,'8/24/2015 18:52','Paseo de San Antonio',7,240,'Subscriber',95112); +INSERT INTO "trip" VALUES(903296,485,'8/24/2015 18:45','San Francisco City Hall',58,'8/24/2015 18:53','Market at 4th',76,516,'Subscriber',94105); +INSERT INTO "trip" VALUES(903297,429,'8/24/2015 18:45','San Jose Diridon Caltrain Station',2,'8/24/2015 18:52','Paseo de San Antonio',7,51,'Subscriber',95113); +INSERT INTO "trip" VALUES(903298,248,'8/24/2015 18:46','Embarcadero at Vallejo',48,'8/24/2015 18:50','Steuart at Market',74,483,'Subscriber',94110); +INSERT INTO "trip" VALUES(903299,424,'8/24/2015 18:46','Market at 10th',67,'8/24/2015 18:53','Post at Kearny',47,557,'Subscriber',94103); +INSERT INTO "trip" VALUES(903300,457,'8/24/2015 18:46','San Francisco Caltrain (Townsend at 4th)',70,'8/24/2015 18:54','Embarcadero at Bryant',54,566,'Subscriber',94105); +INSERT INTO "trip" VALUES(903301,273,'8/24/2015 18:47','2nd at Folsom',62,'8/24/2015 18:51','Market at Sansome',77,362,'Subscriber',94530); +INSERT INTO "trip" VALUES(903303,570,'8/24/2015 18:49','Embarcadero at Folsom',51,'8/24/2015 18:58','San Francisco Caltrain 2 (330 Townsend)',69,353,'Subscriber',94062); +INSERT INTO "trip" VALUES(903306,184,'8/24/2015 18:49','Townsend at 7th',65,'8/24/2015 18:52','San Francisco Caltrain 2 (330 Townsend)',69,214,'Subscriber',94103); +INSERT INTO "trip" VALUES(903307,185,'8/24/2015 18:49','Townsend at 7th',65,'8/24/2015 18:53','San Francisco Caltrain 2 (330 Townsend)',69,628,'Subscriber',94107); +INSERT INTO "trip" VALUES(903308,295,'8/24/2015 18:50','Steuart at Market',74,'8/24/2015 18:54','Embarcadero at Bryant',54,504,'Subscriber',94105); +INSERT INTO "trip" VALUES(903309,1613,'8/24/2015 18:51','San Francisco Caltrain 2 (330 Townsend)',69,'8/24/2015 19:18','Market at 10th',67,429,'Subscriber',94103); +INSERT INTO "trip" VALUES(903312,376,'8/24/2015 18:52','San Jose Diridon Caltrain Station',2,'8/24/2015 18:58','San Pedro Square',6,65,'Subscriber',95110); +INSERT INTO "trip" VALUES(903313,750,'8/24/2015 18:52','Harry Bridges Plaza (Ferry Building)',50,'8/24/2015 19:05','2nd at Townsend',61,592,'Subscriber',94025); +INSERT INTO "trip" VALUES(903314,57918,'8/24/2015 18:52','Embarcadero at Sansome',60,'8/25/2015 10:58','Townsend at 7th',65,619,'Customer',94533); +INSERT INTO "trip" VALUES(903315,231,'8/24/2015 18:53','Broadway St at Battery St',82,'8/24/2015 18:57','Steuart at Market',74,607,'Subscriber',94706); +INSERT INTO "trip" VALUES(903316,761,'8/24/2015 18:53','San Francisco Caltrain 2 (330 Townsend)',69,'8/24/2015 19:06','Embarcadero at Vallejo',48,456,'Subscriber',94117); +INSERT INTO "trip" VALUES(903320,521,'8/24/2015 18:50','San Francisco Caltrain 2 (330 Townsend)',69,'8/24/2015 18:59','Embarcadero at Bryant',54,326,'Subscriber',94105); +INSERT INTO "trip" VALUES(903321,43559,'8/24/2015 18:54','Embarcadero at Sansome',60,'8/25/2015 7:00','Civic Center BART (7th at Market)',72,383,'Customer',94533); +INSERT INTO "trip" VALUES(903322,450,'8/24/2015 18:54','5th at Howard',57,'8/24/2015 19:01','Golden Gate at Polk',59,189,'Subscriber',94102); +INSERT INTO "trip" VALUES(903325,497,'8/24/2015 18:55','2nd at Townsend',61,'8/24/2015 19:03','Harry Bridges Plaza (Ferry Building)',50,191,'Subscriber',94960); +INSERT INTO "trip" VALUES(903326,253,'8/24/2015 18:55','Castro Street and El Camino Real',32,'8/24/2015 18:59','Mountain View Caltrain Station',28,182,'Subscriber',2780); +INSERT INTO "trip" VALUES(903327,808,'8/24/2015 18:55','2nd at South Park',64,'8/24/2015 19:09','Civic Center BART (7th at Market)',72,579,'Subscriber',94103); +INSERT INTO "trip" VALUES(903328,4960,'8/24/2015 18:56','Market at 4th',76,'8/24/2015 20:19','Market at 4th',76,516,'Customer','nil'); +INSERT INTO "trip" VALUES(903329,283,'8/24/2015 18:56','Harry Bridges Plaza (Ferry Building)',50,'8/24/2015 19:01','Embarcadero at Bryant',54,659,'Subscriber',94105); +INSERT INTO "trip" VALUES(903330,4978,'8/24/2015 18:56','Market at 4th',76,'8/24/2015 20:19','Market at 4th',76,611,'Customer','nil'); +INSERT INTO "trip" VALUES(903333,746,'8/24/2015 18:58','Commercial at Montgomery',45,'8/24/2015 19:10','Market at 4th',76,511,'Subscriber',94110); +INSERT INTO "trip" VALUES(903334,535,'8/24/2015 18:58','Embarcadero at Sansome',60,'8/24/2015 19:07','Harry Bridges Plaza (Ferry Building)',50,267,'Subscriber',94566); +INSERT INTO "trip" VALUES(903339,723,'8/24/2015 19:02','Clay at Battery',41,'8/24/2015 19:14','5th at Howard',57,614,'Subscriber',94107); +INSERT INTO "trip" VALUES(903341,760,'8/24/2015 19:02','Howard at 2nd',63,'8/24/2015 19:15','Embarcadero at Sansome',60,407,'Customer','nil'); +INSERT INTO "trip" VALUES(903342,73,'8/24/2015 19:02','Post at Kearny',47,'8/24/2015 19:03','Post at Kearny',47,622,'Subscriber',94107); +INSERT INTO "trip" VALUES(903343,1166,'8/24/2015 19:03','Post at Kearny',47,'8/24/2015 19:23','Townsend at 7th',65,557,'Subscriber',94107); +INSERT INTO "trip" VALUES(903344,292,'8/24/2015 19:04','San Francisco Caltrain 2 (330 Townsend)',69,'8/24/2015 19:09','5th at Howard',57,469,'Subscriber',94103); +INSERT INTO "trip" VALUES(903345,213,'8/24/2015 19:04','San Francisco Caltrain (Townsend at 4th)',70,'8/24/2015 19:08','2nd at Townsend',61,475,'Subscriber',94107); +INSERT INTO "trip" VALUES(903346,624,'8/24/2015 19:06','Yerba Buena Center of the Arts (3rd @ Howard)',68,'8/24/2015 19:16','Steuart at Market',74,630,'Subscriber',94590); +INSERT INTO "trip" VALUES(903347,203,'8/24/2015 19:06','Embarcadero at Vallejo',48,'8/24/2015 19:10','Embarcadero at Sansome',60,456,'Subscriber',94941); +INSERT INTO "trip" VALUES(903348,928,'8/24/2015 19:06','San Francisco Caltrain 2 (330 Townsend)',69,'8/24/2015 19:22','Powell Street BART',39,628,'Subscriber',94107); +INSERT INTO "trip" VALUES(903349,775,'8/24/2015 19:07','South Van Ness at Market',66,'8/24/2015 19:20','Temporary Transbay Terminal (Howard at Beale)',55,379,'Subscriber',94611); +INSERT INTO "trip" VALUES(903350,512,'8/24/2015 19:07','Powell Street BART',39,'8/24/2015 19:15','San Francisco Caltrain 2 (330 Townsend)',69,527,'Subscriber',94306); +INSERT INTO "trip" VALUES(903352,1266,'8/24/2015 19:07','Embarcadero at Sansome',60,'8/24/2015 19:29','Market at Sansome',77,472,'Subscriber',94109); +INSERT INTO "trip" VALUES(903353,397,'8/24/2015 19:08','Commercial at Montgomery',45,'8/24/2015 19:15','Embarcadero at Sansome',60,652,'Subscriber',94133); +INSERT INTO "trip" VALUES(903354,446,'8/24/2015 19:08','Townsend at 7th',65,'8/24/2015 19:16','2nd at Townsend',61,380,'Subscriber',94107); +INSERT INTO "trip" VALUES(903355,252,'8/24/2015 19:10','Davis at Jackson',42,'8/24/2015 19:14','Embarcadero at Sansome',60,292,'Subscriber',94133); +INSERT INTO "trip" VALUES(903356,297,'8/24/2015 19:10','Embarcadero at Sansome',60,'8/24/2015 19:15','Steuart at Market',74,456,'Subscriber',94549); +INSERT INTO "trip" VALUES(903357,146,'8/24/2015 19:10','Powell Street BART',39,'8/24/2015 19:13','Civic Center BART (7th at Market)',72,372,'Subscriber',94103); +INSERT INTO "trip" VALUES(903358,479,'8/24/2015 19:11','Steuart at Market',74,'8/24/2015 19:19','Grant Avenue at Columbus Avenue',73,607,'Subscriber',94133); +INSERT INTO "trip" VALUES(903359,818,'8/24/2015 19:13','Broadway St at Battery St',82,'8/24/2015 19:26','Powell Street BART',39,410,'Subscriber',94107); +INSERT INTO "trip" VALUES(903360,271,'8/24/2015 19:13','Commercial at Montgomery',45,'8/24/2015 19:17','Temporary Transbay Terminal (Howard at Beale)',55,506,'Subscriber',94117); +INSERT INTO "trip" VALUES(903361,393,'8/24/2015 19:13','Market at Sansome',77,'8/24/2015 19:19','Spear at Folsom',49,137,'Subscriber',94105); +INSERT INTO "trip" VALUES(903362,185,'8/24/2015 19:13','2nd at Townsend',61,'8/24/2015 19:16','2nd at Folsom',62,592,'Subscriber',94610); +INSERT INTO "trip" VALUES(903363,942,'8/24/2015 19:13','San Antonio Shopping Center',31,'8/24/2015 19:29','Mountain View Caltrain Station',28,693,'Customer',94043); +INSERT INTO "trip" VALUES(903364,259,'8/24/2015 19:13','Market at 4th',76,'8/24/2015 19:18','Civic Center BART (7th at Market)',72,511,'Subscriber',94702); +INSERT INTO "trip" VALUES(903365,192,'8/24/2015 19:14','Townsend at 7th',65,'8/24/2015 19:17','San Francisco Caltrain 2 (330 Townsend)',69,96,'Subscriber',94401); +INSERT INTO "trip" VALUES(903366,382,'8/24/2015 19:14','5th at Howard',57,'8/24/2015 19:20','San Francisco Caltrain 2 (330 Townsend)',69,629,'Subscriber',94402); +INSERT INTO "trip" VALUES(903367,342,'8/24/2015 19:15','Clay at Battery',41,'8/24/2015 19:21','Embarcadero at Sansome',60,672,'Subscriber',94133); +INSERT INTO "trip" VALUES(903368,311,'8/24/2015 19:16','Howard at 2nd',63,'8/24/2015 19:21','San Francisco Caltrain 2 (330 Townsend)',69,556,'Subscriber',94061); +INSERT INTO "trip" VALUES(903369,152,'8/24/2015 19:17','Market at Sansome',77,'8/24/2015 19:19','Howard at 2nd',63,604,'Subscriber',94107); +INSERT INTO "trip" VALUES(903370,566,'8/24/2015 19:17','Market at Sansome',77,'8/24/2015 19:26','Embarcadero at Sansome',60,574,'Subscriber',94111); +INSERT INTO "trip" VALUES(903373,350,'8/24/2015 19:20','Steuart at Market',74,'8/24/2015 19:26','Yerba Buena Center of the Arts (3rd @ Howard)',68,483,'Subscriber',95616); +INSERT INTO "trip" VALUES(903374,682,'8/24/2015 19:20','San Jose Diridon Caltrain Station',2,'8/24/2015 19:32','Japantown',9,658,'Subscriber',94111); +INSERT INTO "trip" VALUES(903375,850,'8/24/2015 19:21','Townsend at 7th',65,'8/24/2015 19:36','Spear at Folsom',49,442,'Subscriber',94105); +INSERT INTO "trip" VALUES(903376,161,'8/24/2015 19:23','Paseo de San Antonio',7,'8/24/2015 19:25','San Salvador at 1st',8,98,'Subscriber',95113); +INSERT INTO "trip" VALUES(903377,176,'8/24/2015 19:23','San Francisco Caltrain (Townsend at 4th)',70,'8/24/2015 19:26','2nd at Townsend',61,547,'Subscriber',94107); +INSERT INTO "trip" VALUES(903378,767,'8/24/2015 19:23','Temporary Transbay Terminal (Howard at Beale)',55,'8/24/2015 19:36','Civic Center BART (7th at Market)',72,576,'Subscriber',94103); +INSERT INTO "trip" VALUES(903379,741,'8/24/2015 19:23','Embarcadero at Sansome',60,'8/24/2015 19:36','Mechanics Plaza (Market at Battery)',75,292,'Subscriber',94122); +INSERT INTO "trip" VALUES(903380,901,'8/24/2015 19:24','San Francisco Caltrain (Townsend at 4th)',70,'8/24/2015 19:39','South Van Ness at Market',66,687,'Subscriber',94114); +INSERT INTO "trip" VALUES(903381,580,'8/24/2015 19:24','Civic Center BART (7th at Market)',72,'8/24/2015 19:34','Commercial at Montgomery',45,357,'Subscriber',94702); +INSERT INTO "trip" VALUES(903382,592,'8/24/2015 19:25','Howard at 2nd',63,'8/24/2015 19:35','Davis at Jackson',42,33,'Subscriber',94105); +INSERT INTO "trip" VALUES(903383,615,'8/24/2015 19:25','Howard at 2nd',63,'8/24/2015 19:35','Davis at Jackson',42,549,'Subscriber',94105); +INSERT INTO "trip" VALUES(903384,1193,'8/24/2015 19:25','San Francisco Caltrain (Townsend at 4th)',70,'8/24/2015 19:45','Clay at Battery',41,411,'Subscriber',94133); +INSERT INTO "trip" VALUES(903385,605,'8/24/2015 19:26','San Francisco Caltrain 2 (330 Townsend)',69,'8/24/2015 19:36','Spear at Folsom',49,384,'Subscriber',94105); +INSERT INTO "trip" VALUES(903386,11983,'8/24/2015 19:26','Castro Street and El Camino Real',32,'8/24/2015 22:46','Castro Street and El Camino Real',32,705,'Customer','nil'); +INSERT INTO "trip" VALUES(903387,11984,'8/24/2015 19:27','Castro Street and El Camino Real',32,'8/24/2015 22:47','Castro Street and El Camino Real',32,90,'Customer','nil'); +INSERT INTO "trip" VALUES(903388,229,'8/24/2015 19:30','San Francisco Caltrain 2 (330 Townsend)',69,'8/24/2015 19:33','Townsend at 7th',65,534,'Subscriber',94107); +INSERT INTO "trip" VALUES(903389,325,'8/24/2015 19:30','San Francisco Caltrain 2 (330 Townsend)',69,'8/24/2015 19:35','Yerba Buena Center of the Arts (3rd @ Howard)',68,353,'Subscriber',94105); +INSERT INTO "trip" VALUES(903390,852,'8/24/2015 19:30','San Francisco Caltrain 2 (330 Townsend)',69,'8/24/2015 19:44','Clay at Battery',41,282,'Subscriber',94111); +INSERT INTO "trip" VALUES(903391,336,'8/24/2015 19:30','San Francisco Caltrain (Townsend at 4th)',70,'8/24/2015 19:36','2nd at Townsend',61,505,'Subscriber',94107); +INSERT INTO "trip" VALUES(903392,246,'8/24/2015 19:30','Howard at 2nd',63,'8/24/2015 19:34','2nd at South Park',64,401,'Subscriber',94107); +INSERT INTO "trip" VALUES(903393,443,'8/24/2015 19:33','Grant Avenue at Columbus Avenue',73,'8/24/2015 19:40','Market at Sansome',77,607,'Subscriber',94708); +INSERT INTO "trip" VALUES(903394,455,'8/24/2015 19:33','2nd at Townsend',61,'8/24/2015 19:40','Market at Sansome',77,380,'Subscriber',94705); +INSERT INTO "trip" VALUES(903396,829,'8/24/2015 19:35','San Francisco Caltrain (Townsend at 4th)',70,'8/24/2015 19:48','Davis at Jackson',42,287,'Subscriber',94111); +INSERT INTO "trip" VALUES(903398,489,'8/24/2015 19:41','Market at Sansome',77,'8/24/2015 19:49','2nd at South Park',64,362,'Subscriber',94107); +INSERT INTO "trip" VALUES(903399,2722,'8/24/2015 19:41','San Pedro Square',6,'8/24/2015 20:26','San Pedro Square',6,127,'Customer',94539); +INSERT INTO "trip" VALUES(903400,739,'8/24/2015 19:42','San Jose Diridon Caltrain Station',2,'8/24/2015 19:55','Japantown',9,163,'Subscriber',95112); +INSERT INTO "trip" VALUES(903401,673,'8/24/2015 19:43','San Francisco Caltrain 2 (330 Townsend)',69,'8/24/2015 19:55','Powell at Post (Union Square)',71,268,'Subscriber',94109); +INSERT INTO "trip" VALUES(903402,251,'8/24/2015 19:43','Post at Kearny',47,'8/24/2015 19:48','5th at Howard',57,600,'Subscriber',94107); +INSERT INTO "trip" VALUES(903403,398,'8/24/2015 19:44','Embarcadero at Sansome',60,'8/24/2015 19:51','Steuart at Market',74,574,'Subscriber',94612); +INSERT INTO "trip" VALUES(903404,2554,'8/24/2015 19:45','San Pedro Square',6,'8/24/2015 20:27','San Pedro Square',6,206,'Customer',94539); +INSERT INTO "trip" VALUES(903405,430,'8/24/2015 19:45','Townsend at 7th',65,'8/24/2015 19:52','2nd at Townsend',61,557,'Subscriber',94107); +INSERT INTO "trip" VALUES(903406,483,'8/24/2015 19:45','2nd at South Park',64,'8/24/2015 19:54','Steuart at Market',74,608,'Subscriber',94901); +INSERT INTO "trip" VALUES(903407,912,'8/24/2015 19:46','South Van Ness at Market',66,'8/24/2015 20:01','Commercial at Montgomery',45,503,'Subscriber',94103); +INSERT INTO "trip" VALUES(903408,437,'8/24/2015 19:46','Market at Sansome',77,'8/24/2015 19:54','Grant Avenue at Columbus Avenue',73,315,'Subscriber',94133); +INSERT INTO "trip" VALUES(903409,267,'8/24/2015 19:48','2nd at Folsom',62,'8/24/2015 19:52','Embarcadero at Bryant',54,432,'Subscriber',94105); +INSERT INTO "trip" VALUES(903410,546,'8/24/2015 19:49','Embarcadero at Bryant',54,'8/24/2015 19:58','Embarcadero at Vallejo',48,575,'Subscriber',94105); +INSERT INTO "trip" VALUES(903411,2167,'8/24/2015 19:51','San Pedro Square',6,'8/24/2015 20:27','San Pedro Square',6,65,'Customer',94539); +INSERT INTO "trip" VALUES(903412,374,'8/24/2015 19:53','Embarcadero at Sansome',60,'8/24/2015 20:00','Beale at Market',56,652,'Subscriber',94111); +INSERT INTO "trip" VALUES(903416,256,'8/24/2015 19:57','San Francisco Caltrain 2 (330 Townsend)',69,'8/24/2015 20:01','Townsend at 7th',65,555,'Subscriber',94107); +INSERT INTO "trip" VALUES(903417,247,'8/24/2015 19:57','Mountain View Caltrain Station',28,'8/24/2015 20:02','Evelyn Park and Ride',30,123,'Subscriber',95051); +INSERT INTO "trip" VALUES(903418,508,'8/24/2015 19:58','Mountain View Caltrain Station',28,'8/24/2015 20:06','Castro Street and El Camino Real',32,94,'Subscriber',94103); +INSERT INTO "trip" VALUES(903419,574,'8/24/2015 19:58','Embarcadero at Vallejo',48,'8/24/2015 20:07','Harry Bridges Plaza (Ferry Building)',50,575,'Subscriber',94105); +INSERT INTO "trip" VALUES(903420,706,'8/24/2015 19:59','Harry Bridges Plaza (Ferry Building)',50,'8/24/2015 20:10','2nd at Townsend',61,465,'Subscriber',94107); +INSERT INTO "trip" VALUES(903421,466,'8/24/2015 20:02','Commercial at Montgomery',45,'8/24/2015 20:10','Market at 4th',76,400,'Subscriber',94702); +INSERT INTO "trip" VALUES(903422,523,'8/24/2015 20:02','Embarcadero at Folsom',51,'8/24/2015 20:11','Market at 4th',76,878,'Subscriber',94105); +INSERT INTO "trip" VALUES(903423,184,'8/24/2015 20:03','Townsend at 7th',65,'8/24/2015 20:06','San Francisco Caltrain 2 (330 Townsend)',69,347,'Subscriber',94118); +INSERT INTO "trip" VALUES(903424,535,'8/24/2015 20:04','San Francisco Caltrain (Townsend at 4th)',70,'8/24/2015 20:12','Market at 4th',76,390,'Subscriber',95054); +INSERT INTO "trip" VALUES(903425,1252,'8/24/2015 20:04','San Francisco Caltrain (Townsend at 4th)',70,'8/24/2015 20:24','Market at 4th',76,437,'Subscriber',2780); +INSERT INTO "trip" VALUES(903426,178,'8/24/2015 20:05','San Francisco Caltrain (Townsend at 4th)',70,'8/24/2015 20:08','2nd at Townsend',61,29,'Subscriber',94107); +INSERT INTO "trip" VALUES(903427,424,'8/24/2015 20:05','Yerba Buena Center of the Arts (3rd @ Howard)',68,'8/24/2015 20:12','San Francisco Caltrain (Townsend at 4th)',70,877,'Subscriber',94158); +INSERT INTO "trip" VALUES(903432,544,'8/24/2015 20:08','San Francisco Caltrain 2 (330 Townsend)',69,'8/24/2015 20:17','Spear at Folsom',49,347,'Subscriber',94105); +INSERT INTO "trip" VALUES(903435,828,'8/24/2015 20:10','Beale at Market',56,'8/24/2015 20:23','San Francisco Caltrain 2 (330 Townsend)',69,652,'Subscriber',94577); +INSERT INTO "trip" VALUES(903438,691,'8/24/2015 20:13','Market at Sansome',77,'8/24/2015 20:25','2nd at Townsend',61,603,'Subscriber',94105); +INSERT INTO "trip" VALUES(903442,532,'8/24/2015 20:22','Steuart at Market',74,'8/24/2015 20:31','5th at Howard',57,374,'Subscriber',94107); +INSERT INTO "trip" VALUES(903447,214,'8/24/2015 20:25','South Van Ness at Market',66,'8/24/2015 20:29','Civic Center BART (7th at Market)',72,415,'Subscriber',94611); +INSERT INTO "trip" VALUES(903451,618,'8/24/2015 20:28','Powell Street BART',39,'8/24/2015 20:38','Townsend at 7th',65,377,'Subscriber',94116); +INSERT INTO "trip" VALUES(903454,353,'8/24/2015 20:27','Market at 4th',76,'8/24/2015 20:33','San Francisco Caltrain (Townsend at 4th)',70,611,'Subscriber',94306); +INSERT INTO "trip" VALUES(903456,384,'8/24/2015 20:32','Temporary Transbay Terminal (Howard at Beale)',55,'8/24/2015 20:39','San Francisco Caltrain 2 (330 Townsend)',69,283,'Subscriber',94401); +INSERT INTO "trip" VALUES(903458,493,'8/24/2015 20:37','San Francisco Caltrain 2 (330 Townsend)',69,'8/24/2015 20:45','Powell Street BART',39,441,'Subscriber',94107); +INSERT INTO "trip" VALUES(903461,512,'8/24/2015 20:38','5th at Howard',57,'8/24/2015 20:46','Townsend at 7th',65,356,'Subscriber',94107); +INSERT INTO "trip" VALUES(903464,836,'8/24/2015 20:41','Market at 10th',67,'8/24/2015 20:55','San Francisco Caltrain 2 (330 Townsend)',69,572,'Subscriber',94103); +INSERT INTO "trip" VALUES(903470,324,'8/24/2015 20:51','2nd at South Park',64,'8/24/2015 20:56','Market at Sansome',77,109,'Subscriber',94544); +INSERT INTO "trip" VALUES(903471,327,'8/24/2015 20:52','Temporary Transbay Terminal (Howard at Beale)',55,'8/24/2015 20:57','Beale at Market',56,212,'Customer',11232); +INSERT INTO "trip" VALUES(903472,188,'8/24/2015 20:52','Embarcadero at Vallejo',48,'8/24/2015 20:55','Steuart at Market',74,317,'Subscriber',94608); +INSERT INTO "trip" VALUES(903473,693,'8/24/2015 20:54','South Van Ness at Market',66,'8/24/2015 21:06','Beale at Market',56,340,'Subscriber',94103); +INSERT INTO "trip" VALUES(903474,344,'8/24/2015 20:55','Harry Bridges Plaza (Ferry Building)',50,'8/24/2015 21:01','Embarcadero at Bryant',54,575,'Subscriber',94105); +INSERT INTO "trip" VALUES(903475,864,'8/24/2015 20:56','Market at 10th',67,'8/24/2015 21:11','Clay at Battery',41,509,'Subscriber',94117); +INSERT INTO "trip" VALUES(903476,487,'8/24/2015 20:57','Japantown',9,'8/24/2015 21:05','San Jose City Hall',10,31,'Subscriber',95112); +INSERT INTO "trip" VALUES(903477,119,'8/24/2015 20:59','Howard at 2nd',63,'8/24/2015 21:01','Market at Sansome',77,604,'Subscriber',94117); +INSERT INTO "trip" VALUES(903480,4045,'8/24/2015 21:14','Redwood City Caltrain Station',22,'8/24/2015 22:22','Franklin at Maple',21,144,'Customer',94061); +INSERT INTO "trip" VALUES(903481,849,'8/24/2015 21:14','Powell at Post (Union Square)',71,'8/24/2015 21:29','Townsend at 7th',65,268,'Subscriber',94103); +INSERT INTO "trip" VALUES(903482,76592,'8/24/2015 21:17','Redwood City Caltrain Station',22,'8/25/2015 18:34','Redwood City Medical Center',26,128,'Customer',94063); +INSERT INTO "trip" VALUES(903483,792,'8/24/2015 21:17','2nd at Folsom',62,'8/24/2015 21:31','South Van Ness at Market',66,592,'Subscriber',94103); +INSERT INTO "trip" VALUES(903484,651,'8/24/2015 21:23','Temporary Transbay Terminal (Howard at Beale)',55,'8/24/2015 21:34','Civic Center BART (7th at Market)',72,67,'Subscriber',94103); +INSERT INTO "trip" VALUES(903485,200,'8/24/2015 21:24','Townsend at 7th',65,'8/24/2015 21:27','San Francisco Caltrain 2 (330 Townsend)',69,334,'Subscriber',94103); +INSERT INTO "trip" VALUES(903486,100,'8/24/2015 21:28','Beale at Market',56,'8/24/2015 21:29','Temporary Transbay Terminal (Howard at Beale)',55,340,'Subscriber',94130); +INSERT INTO "trip" VALUES(903488,729,'8/24/2015 21:32','Market at Sansome',77,'8/24/2015 21:44','2nd at Townsend',61,109,'Subscriber',94107); +INSERT INTO "trip" VALUES(903491,123,'8/24/2015 21:47','Temporary Transbay Terminal (Howard at Beale)',55,'8/24/2015 21:49','Beale at Market',56,329,'Subscriber',94030); +INSERT INTO "trip" VALUES(903493,408,'8/24/2015 21:53','2nd at Folsom',62,'8/24/2015 22:00','San Francisco Caltrain 2 (330 Townsend)',69,260,'Subscriber',94158); +INSERT INTO "trip" VALUES(903494,1729,'8/24/2015 21:58','Embarcadero at Folsom',51,'8/24/2015 22:26','Clay at Battery',41,274,'Customer',86); +INSERT INTO "trip" VALUES(903495,380,'8/24/2015 21:58','Market at Sansome',77,'8/24/2015 22:04','2nd at South Park',64,338,'Subscriber',94107); +INSERT INTO "trip" VALUES(903496,272,'8/24/2015 21:58','Steuart at Market',74,'8/24/2015 22:03','Howard at 2nd',63,456,'Subscriber',94105); +INSERT INTO "trip" VALUES(903497,302,'8/24/2015 22:03','2nd at South Park',64,'8/24/2015 22:08','Spear at Folsom',49,462,'Subscriber',94105); +INSERT INTO "trip" VALUES(903498,280,'8/24/2015 22:06','San Francisco Caltrain 2 (330 Townsend)',69,'8/24/2015 22:11','Townsend at 7th',65,214,'Subscriber',94107); +INSERT INTO "trip" VALUES(903499,630,'8/24/2015 22:13','Temporary Transbay Terminal (Howard at Beale)',55,'8/24/2015 22:23','Grant Avenue at Columbus Avenue',73,506,'Subscriber',94133); +INSERT INTO "trip" VALUES(903500,329,'8/24/2015 22:14','Embarcadero at Sansome',60,'8/24/2015 22:19','Embarcadero at Folsom',51,407,'Subscriber',94124); +INSERT INTO "trip" VALUES(903501,711,'8/24/2015 22:17','Mechanics Plaza (Market at Battery)',75,'8/24/2015 22:29','San Francisco Caltrain (Townsend at 4th)',70,292,'Subscriber',94085); +INSERT INTO "trip" VALUES(903502,351,'8/24/2015 22:28','Post at Kearny',47,'8/24/2015 22:33','2nd at South Park',64,597,'Subscriber',94107); +INSERT INTO "trip" VALUES(903503,1131,'8/24/2015 22:28','Cowper at University',37,'8/24/2015 22:47','California Ave Caltrain Station',36,675,'Subscriber',95032); +INSERT INTO "trip" VALUES(903506,200,'8/24/2015 22:35','2nd at Folsom',62,'8/24/2015 22:38','2nd at Townsend',61,364,'Subscriber',94107); +INSERT INTO "trip" VALUES(903507,818,'8/24/2015 22:40','2nd at Townsend',61,'8/24/2015 22:54','Broadway St at Battery St',82,542,'Subscriber',94133); +INSERT INTO "trip" VALUES(903508,354,'8/24/2015 22:41','2nd at Townsend',61,'8/24/2015 22:47','Spear at Folsom',49,603,'Subscriber',94102); +INSERT INTO "trip" VALUES(903509,388,'8/24/2015 22:48','Market at 4th',76,'8/24/2015 22:55','Steuart at Market',74,390,'Subscriber',95616); +INSERT INTO "trip" VALUES(903510,333,'8/24/2015 22:56','Mountain View Caltrain Station',28,'8/24/2015 23:02','Castro Street and El Camino Real',32,203,'Subscriber',94040); +INSERT INTO "trip" VALUES(903511,760,'8/24/2015 22:45','San Jose City Hall',10,'8/24/2015 22:57','Japantown',9,31,'Subscriber',95112); +INSERT INTO "trip" VALUES(903512,1374,'8/24/2015 22:58','California Ave Caltrain Station',36,'8/24/2015 23:21','San Antonio Caltrain Station',29,27,'Subscriber',95032); +INSERT INTO "trip" VALUES(903514,826,'8/24/2015 23:02','San Francisco Caltrain (Townsend at 4th)',70,'8/24/2015 23:16','Washington at Kearny',46,611,'Subscriber',94133); +INSERT INTO "trip" VALUES(903515,427,'8/24/2015 23:10','Market at 4th',76,'8/24/2015 23:18','Golden Gate at Polk',59,437,'Subscriber',94102); +INSERT INTO "trip" VALUES(903516,844,'8/24/2015 23:26','San Francisco Caltrain 2 (330 Townsend)',69,'8/24/2015 23:40','San Francisco City Hall',58,96,'Subscriber',94107); +INSERT INTO "trip" VALUES(903517,146,'8/24/2015 23:42','Spear at Folsom',49,'8/24/2015 23:44','Temporary Transbay Terminal (Howard at Beale)',55,137,'Subscriber',94105); +INSERT INTO "trip" VALUES(903518,1105,'8/24/2015 23:49','San Antonio Shopping Center',31,'8/25/2015 0:07','Mountain View City Hall',27,650,'Subscriber',95032); +INSERT INTO "trip" VALUES(903519,407,'8/25/2015 0:22','Paseo de San Antonio',7,'8/25/2015 0:29','San Pedro Square',6,646,'Subscriber',95113); +INSERT INTO "trip" VALUES(903520,1082,'8/25/2015 3:35','Townsend at 7th',65,'8/25/2015 3:53','Howard at 2nd',63,356,'Subscriber',94107); +INSERT INTO "trip" VALUES(903521,362,'8/25/2015 4:24','Market at 10th',67,'8/25/2015 4:30','Townsend at 7th',65,518,'Subscriber',94102); +INSERT INTO "trip" VALUES(903522,620,'8/25/2015 4:37','Market at 10th',67,'8/25/2015 4:47','Washington at Kearny',46,320,'Subscriber',94102); +INSERT INTO "trip" VALUES(903523,158,'8/25/2015 4:56','2nd at Folsom',62,'8/25/2015 4:59','Market at Sansome',77,578,'Subscriber',94107); +INSERT INTO "trip" VALUES(903524,264,'8/25/2015 5:13','Temporary Transbay Terminal (Howard at Beale)',55,'8/25/2015 5:17','Steuart at Market',74,137,'Subscriber',94112); +INSERT INTO "trip" VALUES(903525,290,'8/25/2015 5:30','Grant Avenue at Columbus Avenue',73,'8/25/2015 5:35','Market at Sansome',77,315,'Subscriber',94133); +INSERT INTO "trip" VALUES(903526,630,'8/25/2015 5:37','Embarcadero at Sansome',60,'8/25/2015 5:48','2nd at South Park',64,672,'Subscriber',94111); +INSERT INTO "trip" VALUES(903527,598,'8/25/2015 5:37','Golden Gate at Polk',59,'8/25/2015 5:47','San Francisco Caltrain 2 (330 Townsend)',69,471,'Subscriber',94107); +INSERT INTO "trip" VALUES(903528,438,'8/25/2015 5:44','Civic Center BART (7th at Market)',72,'8/25/2015 5:52','San Francisco Caltrain (Townsend at 4th)',70,372,'Subscriber',94103); +INSERT INTO "trip" VALUES(903529,268,'8/25/2015 6:01','Spear at Folsom',49,'8/25/2015 6:05','Howard at 2nd',63,336,'Subscriber',94103); +INSERT INTO "trip" VALUES(903530,385,'8/25/2015 6:03','Townsend at 7th',65,'8/25/2015 6:09','2nd at Townsend',61,214,'Subscriber',94107); +INSERT INTO "trip" VALUES(903531,418,'8/25/2015 6:03','San Francisco Caltrain (Townsend at 4th)',70,'8/25/2015 6:10','2nd at Folsom',62,292,'Subscriber',94002); +INSERT INTO "trip" VALUES(903532,680,'8/25/2015 6:06','Embarcadero at Bryant',54,'8/25/2015 6:17','Embarcadero at Sansome',60,659,'Subscriber',94105); +INSERT INTO "trip" VALUES(903535,516,'8/25/2015 6:12','Townsend at 7th',65,'8/25/2015 6:21','South Van Ness at Market',66,555,'Subscriber',94107); +INSERT INTO "trip" VALUES(903536,1639,'8/25/2015 6:16','Powell Street BART',39,'8/25/2015 6:44','Market at 4th',76,492,'Subscriber',94107); +INSERT INTO "trip" VALUES(903537,687,'8/25/2015 6:19','San Francisco Caltrain 2 (330 Townsend)',69,'8/25/2015 6:30','Embarcadero at Folsom',51,556,'Subscriber',94107); +INSERT INTO "trip" VALUES(903538,684,'8/25/2015 6:19','San Francisco Caltrain 2 (330 Townsend)',69,'8/25/2015 6:30','Embarcadero at Folsom',51,527,'Subscriber',94107); +INSERT INTO "trip" VALUES(903539,318,'8/25/2015 6:20','Beale at Market',56,'8/25/2015 6:25','Broadway St at Battery St',82,329,'Subscriber',94610); +INSERT INTO "trip" VALUES(903540,321,'8/25/2015 6:21','Powell Street BART',39,'8/25/2015 6:26','San Francisco Caltrain 2 (330 Townsend)',69,441,'Subscriber',94107); +INSERT INTO "trip" VALUES(903541,331,'8/25/2015 6:22','Harry Bridges Plaza (Ferry Building)',50,'8/25/2015 6:27','Post at Kearny',47,496,'Subscriber',94957); +INSERT INTO "trip" VALUES(903542,418,'8/25/2015 6:21','Harry Bridges Plaza (Ferry Building)',50,'8/25/2015 6:28','2nd at Folsom',62,191,'Subscriber',94901); +INSERT INTO "trip" VALUES(903543,185,'8/25/2015 6:27','Davis at Jackson',42,'8/25/2015 6:31','Commercial at Montgomery',45,33,'Subscriber',94111); +INSERT INTO "trip" VALUES(903544,273,'8/25/2015 6:28','Grant Avenue at Columbus Avenue',73,'8/25/2015 6:32','Market at Sansome',77,538,'Subscriber',94133); +INSERT INTO "trip" VALUES(903545,548,'8/25/2015 6:29','Market at 4th',76,'8/25/2015 6:38','San Francisco City Hall',58,878,'Subscriber',94108); +INSERT INTO "trip" VALUES(903546,275,'8/25/2015 6:29','Santa Clara at Almaden',4,'8/25/2015 6:34','San Jose Diridon Caltrain Station',2,95,'Subscriber',95110); +INSERT INTO "trip" VALUES(903547,286,'8/25/2015 6:35','Santa Clara at Almaden',4,'8/25/2015 6:40','San Jose Diridon Caltrain Station',2,643,'Subscriber',95110); +INSERT INTO "trip" VALUES(903548,620,'8/25/2015 6:36','San Francisco Caltrain 2 (330 Townsend)',69,'8/25/2015 6:46','Market at Sansome',77,457,'Subscriber',94402); +INSERT INTO "trip" VALUES(903549,766,'8/25/2015 6:36','San Francisco Caltrain (Townsend at 4th)',70,'8/25/2015 6:49','Steuart at Market',74,372,'Subscriber',95111); +INSERT INTO "trip" VALUES(903550,218,'8/25/2015 6:37','2nd at Townsend',61,'8/25/2015 6:40','San Francisco Caltrain (Townsend at 4th)',70,475,'Subscriber',95134); +INSERT INTO "trip" VALUES(903551,385,'8/25/2015 6:40','Grant Avenue at Columbus Avenue',73,'8/25/2015 6:46','Market at Sansome',77,391,'Subscriber',94133); +INSERT INTO "trip" VALUES(903552,542,'8/25/2015 6:41','Market at 10th',67,'8/25/2015 6:50','Mechanics Plaza (Market at Battery)',75,429,'Subscriber',94102); +INSERT INTO "trip" VALUES(903553,261,'8/25/2015 6:43','Powell at Post (Union Square)',71,'8/25/2015 6:47','Beale at Market',56,463,'Subscriber',94109); +INSERT INTO "trip" VALUES(903554,218,'8/25/2015 6:43','Civic Center BART (7th at Market)',72,'8/25/2015 6:46','5th at Howard',57,67,'Subscriber',94107); +INSERT INTO "trip" VALUES(903555,536,'8/25/2015 6:44','San Francisco Caltrain (Townsend at 4th)',70,'8/25/2015 6:53','Temporary Transbay Terminal (Howard at Beale)',55,877,'Subscriber',94403); +INSERT INTO "trip" VALUES(903556,434,'8/25/2015 6:45','Embarcadero at Sansome',60,'8/25/2015 6:52','Temporary Transbay Terminal (Howard at Beale)',55,659,'Subscriber',94111); +INSERT INTO "trip" VALUES(903557,248,'8/25/2015 6:45','Temporary Transbay Terminal (Howard at Beale)',55,'8/25/2015 6:49','Clay at Battery',41,313,'Subscriber',94501); +INSERT INTO "trip" VALUES(903558,513,'8/25/2015 6:45','Grant Avenue at Columbus Avenue',73,'8/25/2015 6:54','Embarcadero at Folsom',51,328,'Subscriber',94563); +INSERT INTO "trip" VALUES(903559,802,'8/25/2015 6:45','San Francisco Caltrain (Townsend at 4th)',70,'8/25/2015 6:58','Temporary Transbay Terminal (Howard at Beale)',55,552,'Subscriber',94030); +INSERT INTO "trip" VALUES(903560,510,'8/25/2015 6:45','San Francisco Caltrain (Townsend at 4th)',70,'8/25/2015 6:54','Post at Kearny',47,413,'Subscriber',94002); +INSERT INTO "trip" VALUES(903561,606,'8/25/2015 6:45','San Francisco Caltrain (Townsend at 4th)',70,'8/25/2015 6:55','Clay at Battery',41,425,'Subscriber',94065); +INSERT INTO "trip" VALUES(903562,539,'8/25/2015 6:45','Powell at Post (Union Square)',71,'8/25/2015 6:54','South Van Ness at Market',66,403,'Subscriber',94108); +INSERT INTO "trip" VALUES(903563,574,'8/25/2015 6:46','Market at Sansome',77,'8/25/2015 6:55','San Francisco Caltrain 2 (330 Townsend)',69,578,'Subscriber',94595); +INSERT INTO "trip" VALUES(903564,565,'8/25/2015 6:46','Broadway St at Battery St',82,'8/25/2015 6:56','2nd at Townsend',61,348,'Subscriber',94107); +INSERT INTO "trip" VALUES(903565,928,'8/25/2015 6:47','San Francisco Caltrain (Townsend at 4th)',70,'8/25/2015 7:02','South Van Ness at Market',66,495,'Subscriber',95122); +INSERT INTO "trip" VALUES(903566,465,'8/25/2015 6:48','Steuart at Market',74,'8/25/2015 6:55','2nd at Townsend',61,317,'Subscriber',94588); +INSERT INTO "trip" VALUES(903567,264,'8/25/2015 6:49','2nd at South Park',64,'8/25/2015 6:53','San Francisco Caltrain (Townsend at 4th)',70,672,'Subscriber',94158); +INSERT INTO "trip" VALUES(903568,476,'8/25/2015 6:49','Temporary Transbay Terminal (Howard at Beale)',55,'8/25/2015 6:57','Market at 4th',76,340,'Subscriber',94501); +INSERT INTO "trip" VALUES(903569,438,'8/25/2015 6:50','South Van Ness at Market',66,'8/25/2015 6:57','Townsend at 7th',65,592,'Subscriber',94133); +INSERT INTO "trip" VALUES(903570,274,'8/25/2015 6:51','Evelyn Park and Ride',30,'8/25/2015 6:55','Mountain View Caltrain Station',28,13,'Subscriber',94087); +INSERT INTO "trip" VALUES(903572,407,'8/25/2015 6:52','San Francisco Caltrain 2 (330 Townsend)',69,'8/25/2015 6:59','Howard at 2nd',63,544,'Subscriber',94107); +INSERT INTO "trip" VALUES(903574,291,'8/25/2015 6:52','San Pedro Square',6,'8/25/2015 6:57','San Jose Diridon Caltrain Station',2,65,'Subscriber',95112); +INSERT INTO "trip" VALUES(903577,277,'8/25/2015 6:54','Temporary Transbay Terminal (Howard at Beale)',55,'8/25/2015 6:59','Harry Bridges Plaza (Ferry Building)',50,448,'Subscriber',94611); +INSERT INTO "trip" VALUES(903581,712,'8/25/2015 6:56','Davis at Jackson',42,'8/25/2015 7:08','San Francisco Caltrain (Townsend at 4th)',70,275,'Subscriber',94111); +INSERT INTO "trip" VALUES(903583,411,'8/25/2015 6:58','Spear at Folsom',49,'8/25/2015 7:05','Commercial at Montgomery',45,423,'Subscriber',94105); +INSERT INTO "trip" VALUES(903592,517,'8/25/2015 7:04','San Francisco Caltrain (Townsend at 4th)',70,'8/25/2015 7:13','Beale at Market',56,672,'Subscriber',95136); +INSERT INTO "trip" VALUES(903593,1076,'8/25/2015 7:04','San Francisco Caltrain 2 (330 Townsend)',69,'8/25/2015 7:22','Embarcadero at Sansome',60,578,'Subscriber',95111); +INSERT INTO "trip" VALUES(903594,608,'8/25/2015 7:04','San Francisco Caltrain 2 (330 Townsend)',69,'8/25/2015 7:14','Market at Sansome',77,572,'Subscriber',94303); +INSERT INTO "trip" VALUES(903595,1185,'8/25/2015 7:04','San Francisco Caltrain 2 (330 Townsend)',69,'8/25/2015 7:24','Embarcadero at Vallejo',48,358,'Subscriber',95122); +INSERT INTO "trip" VALUES(903597,699,'8/25/2015 7:05','San Francisco Caltrain (Townsend at 4th)',70,'8/25/2015 7:16','Post at Kearny',47,475,'Subscriber',94401); +INSERT INTO "trip" VALUES(903599,954,'8/25/2015 7:05','San Francisco Caltrain (Townsend at 4th)',70,'8/25/2015 7:21','Clay at Battery',41,537,'Subscriber',94402); +INSERT INTO "trip" VALUES(903600,984,'8/25/2015 7:05','Steuart at Market',74,'8/25/2015 7:22','Townsend at 7th',65,574,'Subscriber',94706); +INSERT INTO "trip" VALUES(903603,507,'8/25/2015 7:07','San Francisco Caltrain 2 (330 Townsend)',69,'8/25/2015 7:15','Embarcadero at Bryant',54,652,'Subscriber',95124); +INSERT INTO "trip" VALUES(903605,1433,'8/25/2015 7:07','Palo Alto Caltrain Station',34,'8/25/2015 7:31','Stanford in Redwood City',25,216,'Subscriber',95131); +INSERT INTO "trip" VALUES(903607,347,'8/25/2015 7:09','Market at Sansome',77,'8/25/2015 7:14','2nd at South Park',64,538,'Subscriber',94549); +INSERT INTO "trip" VALUES(903608,319,'8/25/2015 7:09','2nd at Townsend',61,'8/25/2015 7:14','San Francisco Caltrain (Townsend at 4th)',70,465,'Subscriber',94107); +INSERT INTO "trip" VALUES(903609,453,'8/25/2015 7:09','Market at 10th',67,'8/25/2015 7:17','San Francisco Caltrain 2 (330 Townsend)',69,266,'Subscriber',94102); +INSERT INTO "trip" VALUES(903614,1511,'8/25/2015 7:11','Grant Avenue at Columbus Avenue',73,'8/25/2015 7:36','Townsend at 7th',65,421,'Subscriber',94133); +INSERT INTO "trip" VALUES(903616,614,'8/25/2015 7:11','San Francisco Caltrain (Townsend at 4th)',70,'8/25/2015 7:22','Civic Center BART (7th at Market)',72,310,'Subscriber',94103); +INSERT INTO "trip" VALUES(903617,198,'8/25/2015 7:11','Townsend at 7th',65,'8/25/2015 7:15','San Francisco Caltrain 2 (330 Townsend)',69,377,'Subscriber',94044); +INSERT INTO "trip" VALUES(903618,313,'8/25/2015 7:13','Temporary Transbay Terminal (Howard at Beale)',55,'8/25/2015 7:18','Commercial at Montgomery',45,599,'Subscriber',94611); +INSERT INTO "trip" VALUES(903619,473,'8/25/2015 7:13','Harry Bridges Plaza (Ferry Building)',50,'8/25/2015 7:21','Yerba Buena Center of the Arts (3rd @ Howard)',68,598,'Subscriber',94901); +INSERT INTO "trip" VALUES(903620,694,'8/25/2015 7:13','Harry Bridges Plaza (Ferry Building)',50,'8/25/2015 7:25','San Francisco Caltrain (Townsend at 4th)',70,448,'Subscriber',94930); +INSERT INTO "trip" VALUES(903621,339,'8/25/2015 7:14','Harry Bridges Plaza (Ferry Building)',50,'8/25/2015 7:20','Howard at 2nd',63,489,'Subscriber',94954); +INSERT INTO "trip" VALUES(903622,733,'8/25/2015 7:15','Redwood City Caltrain Station',22,'8/25/2015 7:27','Stanford in Redwood City',25,188,'Subscriber',94070); +INSERT INTO "trip" VALUES(903623,321,'8/25/2015 7:15','Temporary Transbay Terminal (Howard at Beale)',55,'8/25/2015 7:20','Market at Sansome',77,525,'Subscriber',94618); +INSERT INTO "trip" VALUES(903624,698,'8/25/2015 7:15','Yerba Buena Center of the Arts (3rd @ Howard)',68,'8/25/2015 7:27','Townsend at 7th',65,353,'Subscriber',94103); +INSERT INTO "trip" VALUES(903625,457,'8/25/2015 7:16','Market at 10th',67,'8/25/2015 7:23','Market at Sansome',77,285,'Customer',94103); +INSERT INTO "trip" VALUES(903626,172,'8/25/2015 7:16','Market at 4th',76,'8/25/2015 7:19','Market at Sansome',77,492,'Subscriber',94107); +INSERT INTO "trip" VALUES(903627,464,'8/25/2015 7:18','Davis at Jackson',42,'8/25/2015 7:26','Post at Kearny',47,287,'Subscriber',94111); +INSERT INTO "trip" VALUES(903628,845,'8/25/2015 7:18','Embarcadero at Folsom',51,'8/25/2015 7:32','Townsend at 7th',65,407,'Subscriber',94501); +INSERT INTO "trip" VALUES(903629,776,'8/25/2015 7:18','Powell at Post (Union Square)',71,'8/25/2015 7:31','San Francisco Caltrain 2 (330 Townsend)',69,288,'Subscriber',94108); +INSERT INTO "trip" VALUES(903630,413,'8/25/2015 7:21','San Francisco Caltrain 2 (330 Townsend)',69,'8/25/2015 7:28','2nd at Folsom',62,377,'Subscriber',94403); +INSERT INTO "trip" VALUES(903631,196,'8/25/2015 7:22','Townsend at 7th',65,'8/25/2015 7:25','San Francisco Caltrain 2 (330 Townsend)',69,574,'Subscriber',94107); +INSERT INTO "trip" VALUES(903632,713,'8/25/2015 7:22','Market at 10th',67,'8/25/2015 7:34','San Francisco Caltrain (Townsend at 4th)',70,687,'Subscriber',94103); +INSERT INTO "trip" VALUES(903633,730,'8/25/2015 7:22','San Francisco Caltrain (Townsend at 4th)',70,'8/25/2015 7:35','Davis at Jackson',42,465,'Subscriber',94030); +INSERT INTO "trip" VALUES(903635,370,'8/25/2015 7:23','Embarcadero at Sansome',60,'8/25/2015 7:29','Beale at Market',56,578,'Subscriber',94111); +INSERT INTO "trip" VALUES(903636,600,'8/25/2015 7:23','San Francisco Caltrain (Townsend at 4th)',70,'8/25/2015 7:33','Embarcadero at Folsom',51,275,'Subscriber',94403); +INSERT INTO "trip" VALUES(903637,559,'8/25/2015 7:23','San Francisco Caltrain 2 (330 Townsend)',69,'8/25/2015 7:33','Howard at 2nd',63,334,'Subscriber',94062); +INSERT INTO "trip" VALUES(903638,889,'8/25/2015 7:23','San Francisco Caltrain 2 (330 Townsend)',69,'8/25/2015 7:38','Beale at Market',56,266,'Subscriber',94303); +INSERT INTO "trip" VALUES(903639,735,'8/25/2015 7:23','San Francisco Caltrain (Townsend at 4th)',70,'8/25/2015 7:36','Powell Street BART',39,540,'Subscriber',94102); +INSERT INTO "trip" VALUES(903640,547,'8/25/2015 7:24','San Francisco Caltrain 2 (330 Townsend)',69,'8/25/2015 7:33','Howard at 2nd',63,277,'Subscriber',94025); +INSERT INTO "trip" VALUES(903641,939,'8/25/2015 7:24','San Francisco Caltrain 2 (330 Townsend)',69,'8/25/2015 7:40','Golden Gate at Polk',59,618,'Subscriber',94306); +INSERT INTO "trip" VALUES(903642,563,'8/25/2015 7:24','San Francisco Caltrain 2 (330 Townsend)',69,'8/25/2015 7:34','Temporary Transbay Terminal (Howard at Beale)',55,260,'Subscriber',94025); +INSERT INTO "trip" VALUES(903643,546,'8/25/2015 7:25','Paseo de San Antonio',7,'8/25/2015 7:34','San Jose Diridon Caltrain Station',2,488,'Subscriber',95113); +INSERT INTO "trip" VALUES(903644,454,'8/25/2015 7:25','Temporary Transbay Terminal (Howard at Beale)',55,'8/25/2015 7:33','2nd at Townsend',61,877,'Subscriber',94610); +INSERT INTO "trip" VALUES(903645,303,'8/25/2015 7:26','Temporary Transbay Terminal (Howard at Beale)',55,'8/25/2015 7:31','2nd at Townsend',61,379,'Subscriber',94107); +INSERT INTO "trip" VALUES(903646,405,'8/25/2015 7:26','Market at Sansome',77,'8/25/2015 7:33','2nd at Townsend',61,525,'Subscriber',94706); +INSERT INTO "trip" VALUES(903647,723,'8/25/2015 7:26','San Francisco Caltrain 2 (330 Townsend)',69,'8/25/2015 7:38','Market at 10th',67,631,'Subscriber',94025); +INSERT INTO "trip" VALUES(903648,703,'8/25/2015 7:26','Broadway St at Battery St',82,'8/25/2015 7:38','San Francisco Caltrain (Townsend at 4th)',70,370,'Subscriber',94133); +INSERT INTO "trip" VALUES(903649,490,'8/25/2015 7:27','Powell Street BART',39,'8/25/2015 7:35','San Francisco Caltrain (Townsend at 4th)',70,628,'Subscriber',94612); +INSERT INTO "trip" VALUES(903650,760,'8/25/2015 7:30','5th at Howard',57,'8/25/2015 7:42','Harry Bridges Plaza (Ferry Building)',50,562,'Subscriber',94107); +INSERT INTO "trip" VALUES(903651,392,'8/25/2015 7:31','Civic Center BART (7th at Market)',72,'8/25/2015 7:37','Townsend at 7th',65,576,'Subscriber',94598); +INSERT INTO "trip" VALUES(903652,321,'8/25/2015 7:31','Santa Clara at Almaden',4,'8/25/2015 7:36','San Jose Diridon Caltrain Station',2,55,'Customer',95113); +INSERT INTO "trip" VALUES(903654,269,'8/25/2015 7:32','Santa Clara at Almaden',4,'8/25/2015 7:36','San Jose Diridon Caltrain Station',2,245,'Subscriber',95110); +INSERT INTO "trip" VALUES(903655,691,'8/25/2015 7:32','Golden Gate at Polk',59,'8/25/2015 7:44','San Francisco Caltrain 2 (330 Townsend)',69,546,'Subscriber',94109); +INSERT INTO "trip" VALUES(903656,801,'8/25/2015 7:32','South Van Ness at Market',66,'8/25/2015 7:46','Spear at Folsom',49,555,'Subscriber',94102); +INSERT INTO "trip" VALUES(903657,505,'8/25/2015 7:33','5th at Howard',57,'8/25/2015 7:41','Harry Bridges Plaza (Ferry Building)',50,614,'Subscriber',94107); +INSERT INTO "trip" VALUES(903658,203,'8/25/2015 7:34','2nd at Townsend',61,'8/25/2015 7:37','2nd at Folsom',62,379,'Subscriber',94107); +INSERT INTO "trip" VALUES(903659,264,'8/25/2015 7:34','San Jose Diridon Caltrain Station',2,'8/25/2015 7:38','Santa Clara at Almaden',4,65,'Subscriber',94305); +INSERT INTO "trip" VALUES(903660,620,'8/25/2015 7:34','Embarcadero at Folsom',51,'8/25/2015 7:44','San Francisco Caltrain (Townsend at 4th)',70,556,'Subscriber',94107); +INSERT INTO "trip" VALUES(903661,242,'8/25/2015 7:34','Townsend at 7th',65,'8/25/2015 7:38','San Francisco Caltrain (Townsend at 4th)',70,353,'Subscriber',94107); +INSERT INTO "trip" VALUES(903662,628,'8/25/2015 7:34','Embarcadero at Sansome',60,'8/25/2015 7:45','Powell Street BART',39,590,'Subscriber',94133); +INSERT INTO "trip" VALUES(903663,763,'8/25/2015 7:35','Redwood City Caltrain Station',22,'8/25/2015 7:47','Stanford in Redwood City',25,126,'Subscriber',94110); +INSERT INTO "trip" VALUES(903664,1171,'8/25/2015 7:35','Spear at Folsom',49,'8/25/2015 7:54','Market at 10th',67,327,'Subscriber',94105); +INSERT INTO "trip" VALUES(903665,415,'8/25/2015 7:33','San Jose Diridon Caltrain Station',2,'8/25/2015 7:40','San Pedro Square',6,643,'Subscriber',94110); +INSERT INTO "trip" VALUES(903666,490,'8/25/2015 7:35','Harry Bridges Plaza (Ferry Building)',50,'8/25/2015 7:43','Yerba Buena Center of the Arts (3rd @ Howard)',68,422,'Subscriber',94107); +INSERT INTO "trip" VALUES(903667,699,'8/25/2015 7:35','MLK Library',11,'8/25/2015 7:47','San Jose Diridon Caltrain Station',2,712,'Subscriber',95113); +INSERT INTO "trip" VALUES(903668,677,'8/25/2015 7:36','Steuart at Market',74,'8/25/2015 7:47','San Francisco Caltrain (Townsend at 4th)',70,390,'Subscriber',94609); +INSERT INTO "trip" VALUES(903669,627,'8/25/2015 7:37','MLK Library',11,'8/25/2015 7:47','San Jose Diridon Caltrain Station',2,61,'Subscriber',95112); +INSERT INTO "trip" VALUES(903670,567,'8/25/2015 7:39','South Van Ness at Market',66,'8/25/2015 7:48','Market at Sansome',77,403,'Subscriber',94102); +INSERT INTO "trip" VALUES(903672,281,'8/25/2015 7:40','Mountain View Caltrain Station',28,'8/25/2015 7:44','Mountain View City Hall',27,147,'Subscriber',93950); +INSERT INTO "trip" VALUES(903673,224,'8/25/2015 7:40','Temporary Transbay Terminal (Howard at Beale)',55,'8/25/2015 7:44','2nd at Folsom',62,260,'Subscriber',94602); +INSERT INTO "trip" VALUES(903674,909,'8/25/2015 7:41','Temporary Transbay Terminal (Howard at Beale)',55,'8/25/2015 7:56','Market at 10th',67,278,'Subscriber',94618); +INSERT INTO "trip" VALUES(903675,501,'8/25/2015 7:42','San Jose Diridon Caltrain Station',2,'8/25/2015 7:50','Paseo de San Antonio',7,55,'Subscriber',95126); +INSERT INTO "trip" VALUES(903676,717,'8/25/2015 7:42','Rengstorff Avenue / California Street',33,'8/25/2015 7:54','Mountain View Caltrain Station',28,194,'Subscriber','94040-1724'); +INSERT INTO "trip" VALUES(903678,810,'8/25/2015 7:42','Japantown',9,'8/25/2015 7:56','San Jose Diridon Caltrain Station',2,658,'Subscriber',94111); +INSERT INTO "trip" VALUES(903679,244,'8/25/2015 7:43','Harry Bridges Plaza (Ferry Building)',50,'8/25/2015 7:47','Embarcadero at Folsom',51,562,'Subscriber',94501); +INSERT INTO "trip" VALUES(903680,471,'8/25/2015 7:43','Market at 10th',67,'8/25/2015 7:50','San Francisco Caltrain 2 (330 Townsend)',69,631,'Subscriber',94102); +INSERT INTO "trip" VALUES(903681,1053,'8/25/2015 7:44','Harry Bridges Plaza (Ferry Building)',50,'8/25/2015 8:01','Townsend at 7th',65,517,'Customer',94965); +INSERT INTO "trip" VALUES(903683,374,'8/25/2015 7:44','Harry Bridges Plaza (Ferry Building)',50,'8/25/2015 7:51','Embarcadero at Sansome',60,291,'Subscriber',94939); +INSERT INTO "trip" VALUES(903684,182,'8/25/2015 7:45','Grant Avenue at Columbus Avenue',73,'8/25/2015 7:48','Commercial at Montgomery',45,621,'Subscriber',94133); +INSERT INTO "trip" VALUES(903685,375,'8/25/2015 7:45','San Jose Diridon Caltrain Station',2,'8/25/2015 7:51','San Pedro Square',6,95,'Subscriber',94002); +INSERT INTO "trip" VALUES(903686,170,'8/25/2015 7:45','Yerba Buena Center of the Arts (3rd @ Howard)',68,'8/25/2015 7:48','5th at Howard',57,483,'Subscriber',94042); +INSERT INTO "trip" VALUES(903687,1041,'8/25/2015 7:46','Temporary Transbay Terminal (Howard at Beale)',55,'8/25/2015 8:04','South Van Ness at Market',66,552,'Subscriber',94703); +INSERT INTO "trip" VALUES(903688,410,'8/25/2015 7:47','Embarcadero at Folsom',51,'8/25/2015 7:53','2nd at Townsend',61,275,'Subscriber',94945); +INSERT INTO "trip" VALUES(903689,721,'8/25/2015 7:47','Harry Bridges Plaza (Ferry Building)',50,'8/25/2015 7:59','Yerba Buena Center of the Arts (3rd @ Howard)',68,535,'Subscriber',94590); +INSERT INTO "trip" VALUES(903690,849,'8/25/2015 7:47','Embarcadero at Folsom',51,'8/25/2015 8:01','Townsend at 7th',65,528,'Subscriber',94501); +INSERT INTO "trip" VALUES(903691,564,'8/25/2015 7:47','Ryland Park',84,'8/25/2015 7:56','San Jose Diridon Caltrain Station',2,50,'Subscriber',95112); +INSERT INTO "trip" VALUES(903692,727,'8/25/2015 7:48','Harry Bridges Plaza (Ferry Building)',50,'8/25/2015 8:00','2nd at Townsend',61,395,'Subscriber',94960); +INSERT INTO "trip" VALUES(903693,169,'8/25/2015 7:48','Townsend at 7th',65,'8/25/2015 7:51','San Francisco Caltrain (Townsend at 4th)',70,592,'Subscriber',94103); +INSERT INTO "trip" VALUES(903694,757,'8/25/2015 7:49','San Francisco Caltrain 2 (330 Townsend)',69,'8/25/2015 8:02','Market at 10th',67,408,'Subscriber',94582); +INSERT INTO "trip" VALUES(903695,805,'8/25/2015 7:49','San Francisco Caltrain (Townsend at 4th)',70,'8/25/2015 8:03','Harry Bridges Plaza (Ferry Building)',50,390,'Subscriber',94065); +INSERT INTO "trip" VALUES(903696,784,'8/25/2015 7:49','San Francisco Caltrain (Townsend at 4th)',70,'8/25/2015 8:03','Commercial at Montgomery',45,628,'Subscriber',94002); +INSERT INTO "trip" VALUES(903697,1118,'8/25/2015 7:50','San Francisco Caltrain (Townsend at 4th)',70,'8/25/2015 8:08','Golden Gate at Polk',59,597,'Subscriber',94087); +INSERT INTO "trip" VALUES(903698,621,'8/25/2015 7:50','San Francisco Caltrain (Townsend at 4th)',70,'8/25/2015 8:00','Beale at Market',56,556,'Subscriber',94303); +INSERT INTO "trip" VALUES(903699,860,'8/25/2015 7:51','San Francisco Caltrain (Townsend at 4th)',70,'8/25/2015 8:05','Steuart at Market',74,284,'Subscriber',95134); +INSERT INTO "trip" VALUES(903700,784,'8/25/2015 7:51','San Francisco Caltrain (Townsend at 4th)',70,'8/25/2015 8:04','Embarcadero at Folsom',51,592,'Subscriber',95014); +INSERT INTO "trip" VALUES(903701,677,'8/25/2015 7:51','San Francisco Caltrain 2 (330 Townsend)',69,'8/25/2015 8:03','Embarcadero at Vallejo',48,546,'Subscriber',95128); +INSERT INTO "trip" VALUES(903702,656,'8/25/2015 7:52','San Francisco Caltrain (Townsend at 4th)',70,'8/25/2015 8:02','Mechanics Plaza (Market at Battery)',75,687,'Subscriber',94040); +INSERT INTO "trip" VALUES(903703,140,'8/25/2015 7:52','Powell Street BART',39,'8/25/2015 7:54','Market at 4th',76,590,'Subscriber',94133); +INSERT INTO "trip" VALUES(903704,279,'8/25/2015 7:52','Embarcadero at Sansome',60,'8/25/2015 7:57','Davis at Jackson',42,291,'Subscriber',94133); +INSERT INTO "trip" VALUES(903705,483,'8/25/2015 7:52','Temporary Transbay Terminal (Howard at Beale)',55,'8/25/2015 8:00','Embarcadero at Vallejo',48,568,'Subscriber',94611); +INSERT INTO "trip" VALUES(903706,735,'8/25/2015 7:53','San Francisco Caltrain (Townsend at 4th)',70,'8/25/2015 8:05','Harry Bridges Plaza (Ferry Building)',50,632,'Subscriber',94070); +INSERT INTO "trip" VALUES(903707,221,'8/25/2015 7:53','Temporary Transbay Terminal (Howard at Beale)',55,'8/25/2015 7:56','Commercial at Montgomery',45,507,'Subscriber',94611); +INSERT INTO "trip" VALUES(903708,800,'8/25/2015 7:52','San Francisco Caltrain 2 (330 Townsend)',69,'8/25/2015 8:06','Davis at Jackson',42,557,'Subscriber',94303); +INSERT INTO "trip" VALUES(903709,693,'8/25/2015 7:53','San Francisco Caltrain 2 (330 Townsend)',69,'8/25/2015 8:04','Temporary Transbay Terminal (Howard at Beale)',55,317,'Subscriber',94030); +INSERT INTO "trip" VALUES(903710,1513,'8/25/2015 7:53','Grant Avenue at Columbus Avenue',73,'8/25/2015 8:18','San Francisco Caltrain (Townsend at 4th)',70,354,'Subscriber',94133); +INSERT INTO "trip" VALUES(903711,783,'8/25/2015 7:53','San Francisco Caltrain 2 (330 Townsend)',69,'8/25/2015 8:06','Embarcadero at Vallejo',48,505,'Subscriber',94025); +INSERT INTO "trip" VALUES(903713,845,'8/25/2015 7:54','San Francisco Caltrain (Townsend at 4th)',70,'8/25/2015 8:08','Davis at Jackson',42,353,'Subscriber',94040); +INSERT INTO "trip" VALUES(903714,831,'8/25/2015 7:54','San Francisco Caltrain 2 (330 Townsend)',69,'8/25/2015 8:08','South Van Ness at Market',66,631,'Subscriber',95030); +INSERT INTO "trip" VALUES(903715,694,'8/25/2015 7:54','San Francisco Caltrain 2 (330 Townsend)',69,'8/25/2015 8:06','Temporary Transbay Terminal (Howard at Beale)',55,629,'Subscriber',94010); +INSERT INTO "trip" VALUES(903716,345,'8/25/2015 7:54','Temporary Transbay Terminal (Howard at Beale)',55,'8/25/2015 8:00','Commercial at Montgomery',45,659,'Subscriber',94611); +INSERT INTO "trip" VALUES(903717,226,'8/25/2015 7:54','San Jose Diridon Caltrain Station',2,'8/25/2015 7:58','Santa Clara at Almaden',4,488,'Subscriber',95020); +INSERT INTO "trip" VALUES(903718,6695,'8/25/2015 7:55','Clay at Battery',41,'8/25/2015 9:47','Civic Center BART (7th at Market)',72,411,'Customer',86); +INSERT INTO "trip" VALUES(903719,569,'8/25/2015 7:56','Market at 10th',67,'8/25/2015 8:05','San Francisco Caltrain 2 (330 Townsend)',69,327,'Subscriber',94103); +INSERT INTO "trip" VALUES(903720,728,'8/25/2015 7:56','Redwood City Caltrain Station',22,'8/25/2015 8:08','Stanford in Redwood City',25,40,'Subscriber',95037); +INSERT INTO "trip" VALUES(903724,828,'8/25/2015 7:57','Spear at Folsom',49,'8/25/2015 8:11','San Francisco Caltrain (Townsend at 4th)',70,290,'Subscriber',94610); +INSERT INTO "trip" VALUES(903725,175,'8/25/2015 7:57','Powell Street BART',39,'8/25/2015 8:00','5th at Howard',57,238,'Subscriber',94024); +INSERT INTO "trip" VALUES(903728,348,'8/25/2015 7:57','5th at Howard',57,'8/25/2015 8:03','San Francisco Caltrain 2 (330 Townsend)',69,374,'Subscriber',94103); +INSERT INTO "trip" VALUES(903729,431,'8/25/2015 7:58','Harry Bridges Plaza (Ferry Building)',50,'8/25/2015 8:05','Embarcadero at Sansome',60,351,'Subscriber',94110); +INSERT INTO "trip" VALUES(903730,432,'8/25/2015 7:58','2nd at South Park',64,'8/25/2015 8:05','Steuart at Market',74,362,'Subscriber',94602); +INSERT INTO "trip" VALUES(903731,997,'8/25/2015 7:58','San Francisco Caltrain (Townsend at 4th)',70,'8/25/2015 8:15','Steuart at Market',74,370,'Subscriber',94025); +INSERT INTO "trip" VALUES(903734,471,'8/25/2015 7:58','Grant Avenue at Columbus Avenue',73,'8/25/2015 8:06','Powell Street BART',39,506,'Subscriber',94133); +INSERT INTO "trip" VALUES(903735,200,'8/25/2015 7:59','Temporary Transbay Terminal (Howard at Beale)',55,'8/25/2015 8:02','Steuart at Market',74,453,'Subscriber',94501); +INSERT INTO "trip" VALUES(903736,422,'8/25/2015 7:59','Temporary Transbay Terminal (Howard at Beale)',55,'8/25/2015 8:06','Embarcadero at Vallejo',48,318,'Subscriber',94706); +INSERT INTO "trip" VALUES(903740,206,'8/25/2015 8:00','Market at 4th',76,'8/25/2015 8:04','Civic Center BART (7th at Market)',72,586,'Subscriber',94107); +INSERT INTO "trip" VALUES(903741,581,'8/25/2015 8:00','San Francisco City Hall',58,'8/25/2015 8:10','San Francisco Caltrain 2 (330 Townsend)',69,309,'Subscriber',94102); +INSERT INTO "trip" VALUES(903743,275,'8/25/2015 8:01','Mountain View Caltrain Station',28,'8/25/2015 8:06','Mountain View City Hall',27,194,'Subscriber',95110); +INSERT INTO "trip" VALUES(903745,596,'8/25/2015 8:02','South Van Ness at Market',66,'8/25/2015 8:12','Post at Kearny',47,286,'Subscriber',94122); +INSERT INTO "trip" VALUES(903746,114,'8/25/2015 8:02','Howard at 2nd',63,'8/25/2015 8:04','Market at Sansome',77,334,'Subscriber',94107); +INSERT INTO "trip" VALUES(903747,291,'8/25/2015 8:03','Grant Avenue at Columbus Avenue',73,'8/25/2015 8:07','Commercial at Montgomery',45,399,'Subscriber',94133); +INSERT INTO "trip" VALUES(903748,830,'8/25/2015 8:04','Civic Center BART (7th at Market)',72,'8/25/2015 8:18','Spear at Folsom',49,378,'Subscriber',94080); +INSERT INTO "trip" VALUES(903750,588,'8/25/2015 8:04','San Francisco Caltrain (Townsend at 4th)',70,'8/25/2015 8:14','Harry Bridges Plaza (Ferry Building)',50,448,'Subscriber',94002); +INSERT INTO "trip" VALUES(903751,354,'8/25/2015 8:05','2nd at Townsend',61,'8/25/2015 8:11','Howard at 2nd',63,525,'Subscriber',94107); +INSERT INTO "trip" VALUES(903752,373,'8/25/2015 8:05','Embarcadero at Bryant',54,'8/25/2015 8:11','San Francisco Caltrain (Townsend at 4th)',70,504,'Subscriber',94105); +INSERT INTO "trip" VALUES(903753,608,'8/25/2015 8:05','San Francisco Caltrain 2 (330 Townsend)',69,'8/25/2015 8:15','Embarcadero at Folsom',51,547,'Subscriber',94070); +INSERT INTO "trip" VALUES(903754,288,'8/25/2015 8:05','5th at Howard',57,'8/25/2015 8:10','San Francisco Caltrain 2 (330 Townsend)',69,67,'Subscriber',94103); +INSERT INTO "trip" VALUES(903756,588,'8/25/2015 8:05','Howard at 2nd',63,'8/25/2015 8:15','Townsend at 7th',65,356,'Subscriber',94103); +INSERT INTO "trip" VALUES(903757,318,'8/25/2015 8:05','5th at Howard',57,'8/25/2015 8:11','San Francisco Caltrain 2 (330 Townsend)',69,469,'Subscriber',94103); +INSERT INTO "trip" VALUES(903758,791,'8/25/2015 8:06','San Francisco Caltrain 2 (330 Townsend)',69,'8/25/2015 8:19','Beale at Market',56,584,'Subscriber',94070); +INSERT INTO "trip" VALUES(903759,760,'8/25/2015 8:05','San Francisco Caltrain (Townsend at 4th)',70,'8/25/2015 8:18','Market at 10th',67,288,'Subscriber',94401); +INSERT INTO "trip" VALUES(903760,1023,'8/25/2015 8:06','San Francisco Caltrain (Townsend at 4th)',70,'8/25/2015 8:23','Embarcadero at Vallejo',48,531,'Subscriber',94065); +INSERT INTO "trip" VALUES(903761,1048,'8/25/2015 8:06','Harry Bridges Plaza (Ferry Building)',50,'8/25/2015 8:24','Townsend at 7th',65,458,'Subscriber',94590); +INSERT INTO "trip" VALUES(903762,373,'8/25/2015 8:06','Harry Bridges Plaza (Ferry Building)',50,'8/25/2015 8:13','2nd at Folsom',62,390,'Subscriber',94949); +INSERT INTO "trip" VALUES(903763,694,'8/25/2015 8:06','San Francisco Caltrain 2 (330 Townsend)',69,'8/25/2015 8:18','Market at 10th',67,371,'Subscriber',95122); +INSERT INTO "trip" VALUES(903764,351,'8/25/2015 8:07','2nd at South Park',64,'8/25/2015 8:12','Market at Sansome',77,338,'Subscriber',94107); +INSERT INTO "trip" VALUES(903765,568,'8/25/2015 8:07','San Jose Diridon Caltrain Station',2,'8/25/2015 8:16','MLK Library',11,50,'Subscriber',94110); +INSERT INTO "trip" VALUES(903766,1059,'8/25/2015 8:07','San Francisco Caltrain 2 (330 Townsend)',69,'8/25/2015 8:25','Commercial at Montgomery',45,214,'Subscriber',94070); +INSERT INTO "trip" VALUES(903767,955,'8/25/2015 8:07','Harry Bridges Plaza (Ferry Building)',50,'8/25/2015 8:23','2nd at South Park',64,632,'Subscriber',94939); +INSERT INTO "trip" VALUES(903768,665,'8/25/2015 8:07','Harry Bridges Plaza (Ferry Building)',50,'8/25/2015 8:18','2nd at South Park',64,567,'Subscriber',94510); +INSERT INTO "trip" VALUES(903769,227,'8/25/2015 8:07','San Francisco Caltrain 2 (330 Townsend)',69,'8/25/2015 8:11','Townsend at 7th',65,327,'Subscriber',94063); +INSERT INTO "trip" VALUES(903770,670,'8/25/2015 8:07','San Francisco Caltrain 2 (330 Townsend)',69,'8/25/2015 8:19','Market at Sansome',77,29,'Subscriber',94002); +INSERT INTO "trip" VALUES(903771,531,'8/25/2015 8:07','Harry Bridges Plaza (Ferry Building)',50,'8/25/2015 8:16','2nd at Townsend',61,614,'Subscriber',94903); +INSERT INTO "trip" VALUES(903772,324,'8/25/2015 8:07','Powell Street BART',39,'8/25/2015 8:13','San Francisco Caltrain 2 (330 Townsend)',69,573,'Subscriber',2780); +INSERT INTO "trip" VALUES(903773,487,'8/25/2015 8:08','San Francisco Caltrain 2 (330 Townsend)',69,'8/25/2015 8:16','Yerba Buena Center of the Arts (3rd @ Howard)',68,109,'Subscriber',94087); +INSERT INTO "trip" VALUES(903774,655,'8/25/2015 8:08','Temporary Transbay Terminal (Howard at Beale)',55,'8/25/2015 8:19','San Francisco Caltrain (Townsend at 4th)',70,317,'Subscriber',94602); +INSERT INTO "trip" VALUES(903775,890,'8/25/2015 8:08','San Francisco Caltrain 2 (330 Townsend)',69,'8/25/2015 8:23','Davis at Jackson',42,574,'Subscriber',95014); +INSERT INTO "trip" VALUES(903776,517,'8/25/2015 8:08','San Francisco Caltrain 2 (330 Townsend)',69,'8/25/2015 8:17','Howard at 2nd',63,554,'Subscriber',94070); +INSERT INTO "trip" VALUES(903777,579,'8/25/2015 8:08','San Francisco Caltrain 2 (330 Townsend)',69,'8/25/2015 8:18','Harry Bridges Plaza (Ferry Building)',50,364,'Subscriber',95148); +INSERT INTO "trip" VALUES(903778,587,'8/25/2015 8:08','Harry Bridges Plaza (Ferry Building)',50,'8/25/2015 8:18','San Francisco Caltrain (Townsend at 4th)',70,541,'Subscriber',94901); +INSERT INTO "trip" VALUES(903779,626,'8/25/2015 8:08','San Francisco Caltrain 2 (330 Townsend)',69,'8/25/2015 8:19','Embarcadero at Folsom',51,271,'Subscriber',94306); +INSERT INTO "trip" VALUES(903780,562,'8/25/2015 8:09','San Francisco Caltrain 2 (330 Townsend)',69,'8/25/2015 8:18','Civic Center BART (7th at Market)',72,471,'Subscriber',94062); +INSERT INTO "trip" VALUES(903781,259,'8/25/2015 8:09','Steuart at Market',74,'8/25/2015 8:13','Broadway St at Battery St',82,362,'Subscriber',94702); +INSERT INTO "trip" VALUES(903782,710,'8/25/2015 8:09','San Francisco Caltrain 2 (330 Townsend)',69,'8/25/2015 8:21','Market at 10th',67,348,'Subscriber',94061); +INSERT INTO "trip" VALUES(903783,480,'8/25/2015 8:09','San Francisco Caltrain 2 (330 Townsend)',69,'8/25/2015 8:17','Embarcadero at Folsom',51,269,'Subscriber',94061); +INSERT INTO "trip" VALUES(903784,509,'8/25/2015 8:09','Steuart at Market',74,'8/25/2015 8:18','Embarcadero at Sansome',60,372,'Subscriber',94114); +INSERT INTO "trip" VALUES(903785,590,'8/25/2015 8:09','San Francisco Caltrain 2 (330 Townsend)',69,'8/25/2015 8:19','Embarcadero at Folsom',51,441,'Subscriber',94085); +INSERT INTO "trip" VALUES(903786,510,'8/25/2015 8:09','San Francisco Caltrain 2 (330 Townsend)',69,'8/25/2015 8:18','Steuart at Market',74,606,'Subscriber',94061); +INSERT INTO "trip" VALUES(903787,248,'8/25/2015 8:09','Townsend at 7th',65,'8/25/2015 8:14','San Francisco Caltrain 2 (330 Townsend)',69,421,'Subscriber',94133); +INSERT INTO "trip" VALUES(903788,195,'8/25/2015 8:08','San Jose Diridon Caltrain Station',2,'8/25/2015 8:11','Santa Clara at Almaden',4,61,'Subscriber',94158); +INSERT INTO "trip" VALUES(903789,330,'8/25/2015 8:10','Embarcadero at Sansome',60,'8/25/2015 8:15','Davis at Jackson',42,388,'Subscriber',94111); +INSERT INTO "trip" VALUES(903790,786,'8/25/2015 8:10','San Francisco Caltrain 2 (330 Townsend)',69,'8/25/2015 8:23','Harry Bridges Plaza (Ferry Building)',50,67,'Subscriber',94086); +INSERT INTO "trip" VALUES(903791,435,'8/25/2015 8:10','Civic Center BART (7th at Market)',72,'8/25/2015 8:17','Townsend at 7th',65,394,'Subscriber',94609); +INSERT INTO "trip" VALUES(903792,865,'8/25/2015 8:10','San Francisco Caltrain 2 (330 Townsend)',69,'8/25/2015 8:25','Harry Bridges Plaza (Ferry Building)',50,309,'Subscriber',93401); +INSERT INTO "trip" VALUES(903793,477,'8/25/2015 8:11','Harry Bridges Plaza (Ferry Building)',50,'8/25/2015 8:18','2nd at Folsom',62,322,'Subscriber',94973); +INSERT INTO "trip" VALUES(903794,973,'8/25/2015 8:11','San Francisco Caltrain (Townsend at 4th)',70,'8/25/2015 8:27','Golden Gate at Polk',59,290,'Subscriber',94305); +INSERT INTO "trip" VALUES(903795,999,'8/25/2015 8:11','South Van Ness at Market',66,'8/25/2015 8:28','Embarcadero at Sansome',60,631,'Subscriber',94102); +INSERT INTO "trip" VALUES(903796,392,'8/25/2015 8:11','Temporary Transbay Terminal (Howard at Beale)',55,'8/25/2015 8:17','5th at Howard',57,629,'Subscriber',94103); +INSERT INTO "trip" VALUES(903797,533,'8/25/2015 8:11','Temporary Transbay Terminal (Howard at Beale)',55,'8/25/2015 8:20','San Francisco Caltrain (Townsend at 4th)',70,530,'Subscriber',94707); +INSERT INTO "trip" VALUES(903798,840,'8/25/2015 8:11','San Francisco Caltrain 2 (330 Townsend)',69,'8/25/2015 8:25','Beale at Market',56,469,'Subscriber',95133); +INSERT INTO "trip" VALUES(903799,505,'8/25/2015 8:12','Steuart at Market',74,'8/25/2015 8:20','2nd at Townsend',61,508,'Subscriber',94563); +INSERT INTO "trip" VALUES(903801,585,'8/25/2015 8:12','San Francisco Caltrain (Townsend at 4th)',70,'8/25/2015 8:22','Steuart at Market',74,504,'Subscriber',94086); +INSERT INTO "trip" VALUES(903802,181,'8/25/2015 8:13','Townsend at 7th',65,'8/25/2015 8:16','San Francisco Caltrain 2 (330 Townsend)',69,327,'Subscriber',94107); +INSERT INTO "trip" VALUES(903803,364,'8/25/2015 8:13','2nd at Townsend',61,'8/25/2015 8:19','Townsend at 7th',65,395,'Subscriber',94107); +INSERT INTO "trip" VALUES(903804,504,'8/25/2015 8:13','South Van Ness at Market',66,'8/25/2015 8:21','Market at 4th',76,426,'Subscriber',94102); +INSERT INTO "trip" VALUES(903805,431,'8/25/2015 8:14','Grant Avenue at Columbus Avenue',73,'8/25/2015 8:21','Market at 4th',76,677,'Subscriber',94133); +INSERT INTO "trip" VALUES(903806,434,'8/25/2015 8:14','Grant Avenue at Columbus Avenue',73,'8/25/2015 8:21','Temporary Transbay Terminal (Howard at Beale)',55,617,'Subscriber',94133); +INSERT INTO "trip" VALUES(903807,459,'8/25/2015 8:14','Grant Avenue at Columbus Avenue',73,'8/25/2015 8:22','Temporary Transbay Terminal (Howard at Beale)',55,16,'Subscriber',94133); +INSERT INTO "trip" VALUES(903808,304,'8/25/2015 8:15','Grant Avenue at Columbus Avenue',73,'8/25/2015 8:20','Beale at Market',56,563,'Subscriber',94133); +INSERT INTO "trip" VALUES(903809,1083,'8/25/2015 8:15','2nd at Townsend',61,'8/25/2015 8:33','Davis at Jackson',42,443,'Subscriber',94025); +INSERT INTO "trip" VALUES(903810,787,'8/25/2015 8:15','2nd at Townsend',61,'8/25/2015 8:28','Embarcadero at Vallejo',48,275,'Subscriber',94107); +INSERT INTO "trip" VALUES(903811,320,'8/25/2015 8:15','Evelyn Park and Ride',30,'8/25/2015 8:21','Mountain View Caltrain Station',28,123,'Subscriber',94040); +INSERT INTO "trip" VALUES(903812,330,'8/25/2015 8:16','Harry Bridges Plaza (Ferry Building)',50,'8/25/2015 8:22','Embarcadero at Sansome',60,448,'Subscriber',94110); +INSERT INTO "trip" VALUES(903813,715,'8/25/2015 8:17','Rengstorff Avenue / California Street',33,'8/25/2015 8:28','Mountain View Caltrain Station',28,46,'Subscriber',94040); +INSERT INTO "trip" VALUES(903814,396,'8/25/2015 8:17','Steuart at Market',74,'8/25/2015 8:23','Embarcadero at Sansome',60,370,'Subscriber',94565); +INSERT INTO "trip" VALUES(903816,310,'8/25/2015 8:18','Rengstorff Avenue / California Street',33,'8/25/2015 8:23','San Antonio Caltrain Station',29,243,'Subscriber',94041); +INSERT INTO "trip" VALUES(903817,420,'8/25/2015 8:18','2nd at Townsend',61,'8/25/2015 8:25','Steuart at Market',74,877,'Subscriber',95120); +INSERT INTO "trip" VALUES(903818,662,'8/25/2015 8:19','Temporary Transbay Terminal (Howard at Beale)',55,'8/25/2015 8:30','San Francisco Caltrain 2 (330 Townsend)',69,491,'Subscriber',94611); +INSERT INTO "trip" VALUES(903819,328,'8/25/2015 8:19','San Jose Diridon Caltrain Station',2,'8/25/2015 8:24','Santa Clara at Almaden',4,245,'Subscriber',94103); +INSERT INTO "trip" VALUES(903820,948,'8/25/2015 8:19','Market at 10th',67,'8/25/2015 8:35','Beale at Market',56,408,'Subscriber',94103); +INSERT INTO "trip" VALUES(903821,302,'8/25/2015 8:21','Embarcadero at Sansome',60,'8/25/2015 8:26','Clay at Battery',41,372,'Subscriber',94133); +INSERT INTO "trip" VALUES(903822,1909,'8/25/2015 8:21','Harry Bridges Plaza (Ferry Building)',50,'8/25/2015 8:53','Grant Avenue at Columbus Avenue',73,364,'Customer',41); +INSERT INTO "trip" VALUES(903823,472,'8/25/2015 8:24','Beale at Market',56,'8/25/2015 8:32','Embarcadero at Sansome',60,463,'Subscriber',94609); +INSERT INTO "trip" VALUES(903824,985,'8/25/2015 8:24','Townsend at 7th',65,'8/25/2015 8:41','Embarcadero at Vallejo',48,394,'Subscriber',94107); +INSERT INTO "trip" VALUES(903825,964,'8/25/2015 8:24','Palo Alto Caltrain Station',34,'8/25/2015 8:40','Park at Olive',38,252,'Subscriber',94002); +INSERT INTO "trip" VALUES(903826,620,'8/25/2015 8:24','Powell Street BART',39,'8/25/2015 8:35','2nd at Folsom',62,397,'Customer',78702); +INSERT INTO "trip" VALUES(903827,887,'8/25/2015 8:25','Steuart at Market',74,'8/25/2015 8:40','Townsend at 7th',65,608,'Subscriber',94568); +INSERT INTO "trip" VALUES(903830,354,'8/25/2015 8:25','Howard at 2nd',63,'8/25/2015 8:31','5th at Howard',57,277,'Subscriber',94610); +INSERT INTO "trip" VALUES(903831,649,'8/25/2015 8:25','Temporary Transbay Terminal (Howard at Beale)',55,'8/25/2015 8:36','Embarcadero at Sansome',60,617,'Subscriber',94111); +INSERT INTO "trip" VALUES(903832,1047,'8/25/2015 8:26','South Van Ness at Market',66,'8/25/2015 8:43','Commercial at Montgomery',45,524,'Subscriber',94103); +INSERT INTO "trip" VALUES(903835,355,'8/25/2015 8:27','2nd at South Park',64,'8/25/2015 8:33','Market at Sansome',77,451,'Subscriber',94107); +INSERT INTO "trip" VALUES(903836,390,'8/25/2015 8:28','San Francisco Caltrain (Townsend at 4th)',70,'8/25/2015 8:34','Yerba Buena Center of the Arts (3rd @ Howard)',68,354,'Subscriber',94158); +INSERT INTO "trip" VALUES(903837,539,'8/25/2015 8:28','San Francisco Caltrain 2 (330 Townsend)',69,'8/25/2015 8:37','Howard at 2nd',63,573,'Subscriber',94063); +INSERT INTO "trip" VALUES(903840,614,'8/25/2015 8:28','Market at 10th',67,'8/25/2015 8:38','San Francisco Caltrain 2 (330 Townsend)',69,348,'Subscriber',94103); +INSERT INTO "trip" VALUES(903841,249,'8/25/2015 8:28','Harry Bridges Plaza (Ferry Building)',50,'8/25/2015 8:32','Market at Sansome',77,67,'Subscriber',94930); +INSERT INTO "trip" VALUES(903842,274,'8/25/2015 8:29','Temporary Transbay Terminal (Howard at Beale)',55,'8/25/2015 8:33','2nd at Folsom',62,624,'Subscriber',94611); +INSERT INTO "trip" VALUES(903845,650,'8/25/2015 8:29','San Francisco Caltrain (Townsend at 4th)',70,'8/25/2015 8:40','Steuart at Market',74,317,'Subscriber',95051); +INSERT INTO "trip" VALUES(903846,562,'8/25/2015 8:29','Powell at Post (Union Square)',71,'8/25/2015 8:39','San Francisco Caltrain 2 (330 Townsend)',69,447,'Subscriber',94109); +INSERT INTO "trip" VALUES(903847,791,'8/25/2015 8:29','San Francisco Caltrain (Townsend at 4th)',70,'8/25/2015 8:43','Davis at Jackson',42,541,'Subscriber',94024); +INSERT INTO "trip" VALUES(903848,206,'8/25/2015 8:29','San Francisco Caltrain 2 (330 Townsend)',69,'8/25/2015 8:33','Townsend at 7th',65,534,'Subscriber',94065); +INSERT INTO "trip" VALUES(903849,1012,'8/25/2015 8:30','San Francisco Caltrain 2 (330 Townsend)',69,'8/25/2015 8:46','Embarcadero at Vallejo',48,327,'Subscriber',94403); +INSERT INTO "trip" VALUES(903850,470,'8/25/2015 8:30','Powell Street BART',39,'8/25/2015 8:38','San Francisco Caltrain 2 (330 Townsend)',69,410,'Subscriber',94109); +INSERT INTO "trip" VALUES(903851,1063,'8/25/2015 8:29','San Francisco Caltrain (Townsend at 4th)',70,'8/25/2015 8:47','Clay at Battery',41,530,'Subscriber',94061); +INSERT INTO "trip" VALUES(903852,741,'8/25/2015 8:30','San Francisco Caltrain 2 (330 Townsend)',69,'8/25/2015 8:42','Beale at Market',56,427,'Subscriber',94089); +INSERT INTO "trip" VALUES(903853,342,'8/25/2015 8:30','Steuart at Market',74,'8/25/2015 8:36','Howard at 2nd',63,306,'Subscriber',94115); +INSERT INTO "trip" VALUES(903854,586,'8/25/2015 8:30','Steuart at Market',74,'8/25/2015 8:40','2nd at Townsend',61,606,'Subscriber',94612); +INSERT INTO "trip" VALUES(903857,545,'8/25/2015 8:31','San Francisco Caltrain 2 (330 Townsend)',69,'8/25/2015 8:40','Howard at 2nd',63,421,'Subscriber',94061); +INSERT INTO "trip" VALUES(903858,432,'8/25/2015 8:31','Steuart at Market',74,'8/25/2015 8:38','2nd at Townsend',61,651,'Subscriber',94107); +INSERT INTO "trip" VALUES(903859,1102,'8/25/2015 8:31','Market at 4th',76,'8/25/2015 8:49','Embarcadero at Sansome',60,426,'Customer','nil'); +INSERT INTO "trip" VALUES(903860,1067,'8/25/2015 8:31','Market at 4th',76,'8/25/2015 8:49','Embarcadero at Sansome',60,404,'Customer','nil'); +INSERT INTO "trip" VALUES(903861,354,'8/25/2015 8:31','Temporary Transbay Terminal (Howard at Beale)',55,'8/25/2015 8:37','Embarcadero at Vallejo',48,16,'Subscriber',94102); +INSERT INTO "trip" VALUES(903862,677,'8/25/2015 8:31','San Francisco Caltrain 2 (330 Townsend)',69,'8/25/2015 8:43','Market at Sansome',77,491,'Subscriber',94002); +INSERT INTO "trip" VALUES(903863,882,'8/25/2015 8:31','Townsend at 7th',65,'8/25/2015 8:46','Temporary Transbay Terminal (Howard at Beale)',55,356,'Subscriber',94107); +INSERT INTO "trip" VALUES(903865,354,'8/25/2015 8:32','Market at Sansome',77,'8/25/2015 8:38','2nd at South Park',64,391,'Subscriber',94612); +INSERT INTO "trip" VALUES(903866,349,'8/25/2015 8:32','Market at Sansome',77,'8/25/2015 8:38','Broadway St at Battery St',82,492,'Subscriber',94610); +INSERT INTO "trip" VALUES(903867,194,'8/25/2015 8:32','Townsend at 7th',65,'8/25/2015 8:35','San Francisco Caltrain 2 (330 Townsend)',69,395,'Subscriber',94107); +INSERT INTO "trip" VALUES(903868,822,'8/25/2015 8:32','Temporary Transbay Terminal (Howard at Beale)',55,'8/25/2015 8:46','Townsend at 7th',65,134,'Subscriber',94602); +INSERT INTO "trip" VALUES(903869,563,'8/25/2015 8:33','Embarcadero at Sansome',60,'8/25/2015 8:42','Temporary Transbay Terminal (Howard at Beale)',55,351,'Subscriber',94941); +INSERT INTO "trip" VALUES(903872,326,'8/25/2015 8:33','Harry Bridges Plaza (Ferry Building)',50,'8/25/2015 8:39','Market at Sansome',77,309,'Subscriber',94925); +INSERT INTO "trip" VALUES(903873,501,'8/25/2015 8:33','Harry Bridges Plaza (Ferry Building)',50,'8/25/2015 8:41','2nd at Townsend',61,587,'Subscriber',94949); +INSERT INTO "trip" VALUES(903874,477,'8/25/2015 8:34','Steuart at Market',74,'8/25/2015 8:42','2nd at Townsend',61,355,'Subscriber',94607); +INSERT INTO "trip" VALUES(903876,143,'8/25/2015 8:34','Steuart at Market',74,'8/25/2015 8:37','Embarcadero at Folsom',51,630,'Subscriber',94044); +INSERT INTO "trip" VALUES(903880,1058,'8/25/2015 8:39','Grant Avenue at Columbus Avenue',73,'8/25/2015 8:57','Civic Center BART (7th at Market)',72,343,'Subscriber',94133); +INSERT INTO "trip" VALUES(903881,178,'8/25/2015 8:40','Broadway St at Battery St',82,'8/25/2015 8:43','Embarcadero at Sansome',60,492,'Subscriber',94109); +INSERT INTO "trip" VALUES(903882,277,'8/25/2015 8:40','San Antonio Caltrain Station',29,'8/25/2015 8:44','San Antonio Shopping Center',31,263,'Subscriber',94103); +INSERT INTO "trip" VALUES(903885,227,'8/25/2015 8:41','San Antonio Caltrain Station',29,'8/25/2015 8:44','San Antonio Shopping Center',31,27,'Subscriber',94133); +INSERT INTO "trip" VALUES(903886,810,'8/25/2015 8:41','Steuart at Market',74,'8/25/2015 8:54','San Francisco Caltrain 2 (330 Townsend)',69,284,'Subscriber',94601); +INSERT INTO "trip" VALUES(903887,315,'8/25/2015 8:42','Harry Bridges Plaza (Ferry Building)',50,'8/25/2015 8:47','Embarcadero at Sansome',60,477,'Subscriber',94947); +INSERT INTO "trip" VALUES(903891,454,'8/25/2015 8:42','Embarcadero at Bryant',54,'8/25/2015 8:50','Embarcadero at Vallejo',48,652,'Subscriber',94105); +INSERT INTO "trip" VALUES(903893,338,'8/25/2015 8:43','San Francisco Caltrain 2 (330 Townsend)',69,'8/25/2015 8:48','2nd at South Park',64,447,'Subscriber',94158); +INSERT INTO "trip" VALUES(903894,418,'8/25/2015 8:43','2nd at Folsom',62,'8/25/2015 8:50','Clay at Battery',41,292,'Subscriber',94107); +INSERT INTO "trip" VALUES(903895,831,'8/25/2015 8:43','Temporary Transbay Terminal (Howard at Beale)',55,'8/25/2015 8:57','Golden Gate at Polk',59,351,'Subscriber',94610); +INSERT INTO "trip" VALUES(903898,212,'8/25/2015 8:44','2nd at South Park',64,'8/25/2015 8:47','San Francisco Caltrain (Townsend at 4th)',70,538,'Subscriber',94107); +INSERT INTO "trip" VALUES(903899,262,'8/25/2015 8:44','San Jose Diridon Caltrain Station',2,'8/25/2015 8:48','Adobe on Almaden',5,160,'Subscriber',94002); +INSERT INTO "trip" VALUES(903900,473,'8/25/2015 8:44','Steuart at Market',74,'8/25/2015 8:52','2nd at Townsend',61,453,'Subscriber',94501); +INSERT INTO "trip" VALUES(903901,1152,'8/25/2015 8:44','Steuart at Market',74,'8/25/2015 9:04','Townsend at 7th',65,317,'Subscriber',95616); +INSERT INTO "trip" VALUES(903902,459,'8/25/2015 8:45','Spear at Folsom',49,'8/25/2015 8:53','Market at 4th',76,385,'Subscriber',94105); +INSERT INTO "trip" VALUES(903904,624,'8/25/2015 8:45','Civic Center BART (7th at Market)',72,'8/25/2015 8:56','Steuart at Market',74,586,'Subscriber',94103); +INSERT INTO "trip" VALUES(903905,395,'8/25/2015 8:46','Mountain View Caltrain Station',28,'8/25/2015 8:52','Castro Street and El Camino Real',32,251,'Subscriber',94401); +INSERT INTO "trip" VALUES(903907,651,'8/25/2015 8:46','Townsend at 7th',65,'8/25/2015 8:57','2nd at Folsom',62,458,'Subscriber',94107); +INSERT INTO "trip" VALUES(903908,502,'8/25/2015 8:46','Market at Sansome',77,'8/25/2015 8:54','Market at 10th',67,309,'Customer',94103); +INSERT INTO "trip" VALUES(903909,500,'8/25/2015 8:47','Washington at Kearny',46,'8/25/2015 8:55','Market at 4th',76,325,'Subscriber',94133); +INSERT INTO "trip" VALUES(903910,228,'8/25/2015 8:47','Townsend at 7th',65,'8/25/2015 8:51','San Francisco Caltrain 2 (330 Townsend)',69,608,'Subscriber',94107); +INSERT INTO "trip" VALUES(903911,465,'8/25/2015 8:47','Howard at 2nd',63,'8/25/2015 8:55','San Francisco Caltrain (Townsend at 4th)',70,456,'Subscriber',94105); +INSERT INTO "trip" VALUES(903913,235,'8/25/2015 8:47','Davis at Jackson',42,'8/25/2015 8:51','Beale at Market',56,557,'Subscriber',94122); +INSERT INTO "trip" VALUES(903914,489,'8/25/2015 8:47','Civic Center BART (7th at Market)',72,'8/25/2015 8:55','Townsend at 7th',65,383,'Subscriber',94598); +INSERT INTO "trip" VALUES(903915,366,'8/25/2015 8:47','Embarcadero at Bryant',54,'8/25/2015 8:53','Harry Bridges Plaza (Ferry Building)',50,373,'Subscriber',94105); +INSERT INTO "trip" VALUES(903918,265,'8/25/2015 8:48','2nd at Folsom',62,'8/25/2015 8:53','2nd at Townsend',61,624,'Subscriber',94110); +INSERT INTO "trip" VALUES(903919,438,'8/25/2015 8:48','San Francisco Caltrain 2 (330 Townsend)',69,'8/25/2015 8:56','Howard at 2nd',63,410,'Subscriber',94306); +INSERT INTO "trip" VALUES(903920,375,'8/25/2015 8:49','Market at 4th',76,'8/25/2015 8:55','Clay at Battery',41,590,'Subscriber',94102); +INSERT INTO "trip" VALUES(903921,847,'8/25/2015 8:49','San Francisco Caltrain (Townsend at 4th)',70,'8/25/2015 9:03','Clay at Battery',41,538,'Subscriber',94301); +INSERT INTO "trip" VALUES(903922,314,'8/25/2015 8:49','Broadway St at Battery St',82,'8/25/2015 8:54','Temporary Transbay Terminal (Howard at Beale)',55,419,'Subscriber',94566); +INSERT INTO "trip" VALUES(903923,412,'8/25/2015 8:49','5th at Howard',57,'8/25/2015 8:56','San Francisco Caltrain 2 (330 Townsend)',69,600,'Subscriber',94107); +INSERT INTO "trip" VALUES(903924,866,'8/25/2015 8:50','5th at Howard',57,'8/25/2015 9:04','Broadway St at Battery St',82,277,'Subscriber',94107); +INSERT INTO "trip" VALUES(903925,601,'8/25/2015 8:50','Steuart at Market',74,'8/25/2015 9:00','2nd at Townsend',61,877,'Subscriber',94534); +INSERT INTO "trip" VALUES(903927,397,'8/25/2015 8:50','Embarcadero at Bryant',54,'8/25/2015 8:56','San Francisco Caltrain (Townsend at 4th)',70,326,'Subscriber',94063); +INSERT INTO "trip" VALUES(903928,471,'8/25/2015 8:50','Steuart at Market',74,'8/25/2015 8:58','2nd at Townsend',61,56,'Subscriber',94609); +INSERT INTO "trip" VALUES(903929,482,'8/25/2015 8:50','San Francisco Caltrain (Townsend at 4th)',70,'8/25/2015 8:58','Market at Sansome',77,517,'Subscriber',95134); +INSERT INTO "trip" VALUES(903930,289,'8/25/2015 8:50','San Francisco Caltrain 2 (330 Townsend)',69,'8/25/2015 8:55','Yerba Buena Center of the Arts (3rd @ Howard)',68,459,'Subscriber',94041); +INSERT INTO "trip" VALUES(903931,563,'8/25/2015 8:51','San Francisco Caltrain 2 (330 Townsend)',69,'8/25/2015 9:00','Temporary Transbay Terminal (Howard at Beale)',55,483,'Subscriber',94010); +INSERT INTO "trip" VALUES(903933,441,'8/25/2015 8:51','2nd at Townsend',61,'8/25/2015 8:58','Townsend at 7th',65,606,'Subscriber',94107); +INSERT INTO "trip" VALUES(903934,703,'8/25/2015 8:51','San Francisco Caltrain 2 (330 Townsend)',69,'8/25/2015 9:03','Spear at Folsom',49,528,'Subscriber',94040); +INSERT INTO "trip" VALUES(903935,431,'8/25/2015 8:51','San Francisco Caltrain 2 (330 Townsend)',69,'8/25/2015 8:59','Howard at 2nd',63,510,'Subscriber',94041); +INSERT INTO "trip" VALUES(903936,776,'8/25/2015 8:51','San Francisco Caltrain 2 (330 Townsend)',69,'8/25/2015 9:04','Civic Center BART (7th at Market)',72,348,'Subscriber',94040); +INSERT INTO "trip" VALUES(903937,367,'8/25/2015 8:52','Embarcadero at Sansome',60,'8/25/2015 8:58','Spear at Folsom',49,560,'Customer',94119); +INSERT INTO "trip" VALUES(903938,653,'8/25/2015 8:52','2nd at Townsend',61,'8/25/2015 9:02','Market at 4th',76,614,'Subscriber',94107); +INSERT INTO "trip" VALUES(903939,585,'8/25/2015 8:52','Market at 4th',76,'8/25/2015 9:02','San Francisco Caltrain (Townsend at 4th)',70,416,'Subscriber',94107); +INSERT INTO "trip" VALUES(903940,804,'8/25/2015 8:52','San Francisco Caltrain 2 (330 Townsend)',69,'8/25/2015 9:05','Mechanics Plaza (Market at Battery)',75,519,'Subscriber',94403); +INSERT INTO "trip" VALUES(903941,302,'8/25/2015 8:52','2nd at Townsend',61,'8/25/2015 8:57','San Francisco Caltrain (Townsend at 4th)',70,587,'Subscriber',94107); +INSERT INTO "trip" VALUES(903942,365,'8/25/2015 8:52','San Francisco Caltrain 2 (330 Townsend)',69,'8/25/2015 8:58','Townsend at 7th',65,608,'Subscriber',94040); +INSERT INTO "trip" VALUES(903943,272,'8/25/2015 8:52','2nd at Townsend',61,'8/25/2015 8:57','San Francisco Caltrain (Townsend at 4th)',70,355,'Subscriber',94040); +INSERT INTO "trip" VALUES(903944,302,'8/25/2015 8:52','Mountain View Caltrain Station',28,'8/25/2015 8:57','Evelyn Park and Ride',30,141,'Subscriber',94108); +INSERT INTO "trip" VALUES(903945,330,'8/25/2015 8:52','Redwood City Caltrain Station',22,'8/25/2015 8:58','Redwood City Medical Center',26,28,'Subscriber',94041); +INSERT INTO "trip" VALUES(903946,742,'8/25/2015 8:52','San Francisco Caltrain (Townsend at 4th)',70,'8/25/2015 9:05','Howard at 2nd',63,377,'Subscriber',94403); +INSERT INTO "trip" VALUES(903947,305,'8/25/2015 8:52','Mechanics Plaza (Market at Battery)',75,'8/25/2015 8:58','2nd at Folsom',62,513,'Subscriber',94558); +INSERT INTO "trip" VALUES(903948,353,'8/25/2015 8:53','San Francisco Caltrain 2 (330 Townsend)',69,'8/25/2015 8:58','5th at Howard',57,609,'Subscriber',94401); +INSERT INTO "trip" VALUES(903949,320,'8/25/2015 8:53','2nd at Folsom',62,'8/25/2015 8:58','Commercial at Montgomery',45,379,'Subscriber',94107); +INSERT INTO "trip" VALUES(903950,773,'8/25/2015 8:53','Rengstorff Avenue / California Street',33,'8/25/2015 9:06','Mountain View Caltrain Station',28,683,'Subscriber',94040); +INSERT INTO "trip" VALUES(903951,409,'8/25/2015 8:54','Temporary Transbay Terminal (Howard at Beale)',55,'8/25/2015 9:00','Market at Sansome',77,584,'Subscriber',94105); +INSERT INTO "trip" VALUES(903952,265,'8/25/2015 8:54','Market at Sansome',77,'8/25/2015 8:58','2nd at Folsom',62,67,'Subscriber',94612); +INSERT INTO "trip" VALUES(903953,213,'8/25/2015 8:54','San Jose Diridon Caltrain Station',2,'8/25/2015 8:57','Santa Clara at Almaden',4,658,'Subscriber',95126); +INSERT INTO "trip" VALUES(903954,299,'8/25/2015 8:54','Steuart at Market',74,'8/25/2015 8:59','Temporary Transbay Terminal (Howard at Beale)',55,392,'Subscriber',94965); +INSERT INTO "trip" VALUES(903955,447,'8/25/2015 8:54','2nd at South Park',64,'8/25/2015 9:01','Market at Sansome',77,567,'Subscriber',94107); +INSERT INTO "trip" VALUES(903956,1179,'8/25/2015 8:55','Townsend at 7th',65,'8/25/2015 9:14','Commercial at Montgomery',45,134,'Subscriber',94107); +INSERT INTO "trip" VALUES(903957,396,'8/25/2015 8:55','Embarcadero at Sansome',60,'8/25/2015 9:01','Steuart at Market',74,477,'Subscriber',94133); +INSERT INTO "trip" VALUES(903958,409,'8/25/2015 8:55','Market at Sansome',77,'8/25/2015 9:02','2nd at South Park',64,334,'Subscriber',94610); +INSERT INTO "trip" VALUES(903959,594,'8/25/2015 8:55','Embarcadero at Sansome',60,'8/25/2015 9:05','Market at Sansome',77,617,'Subscriber',94111); +INSERT INTO "trip" VALUES(903960,119,'8/25/2015 8:55','Beale at Market',56,'8/25/2015 8:57','Temporary Transbay Terminal (Howard at Beale)',55,469,'Subscriber',94030); +INSERT INTO "trip" VALUES(903961,575,'8/25/2015 8:55','Civic Center BART (7th at Market)',72,'8/25/2015 9:05','Townsend at 7th',65,487,'Subscriber',94551); +INSERT INTO "trip" VALUES(903962,791,'8/25/2015 8:56','Embarcadero at Sansome',60,'8/25/2015 9:09','Powell Street BART',39,492,'Subscriber',94133); +INSERT INTO "trip" VALUES(903963,806,'8/25/2015 8:56','Golden Gate at Polk',59,'8/25/2015 9:09','San Francisco Caltrain 2 (330 Townsend)',69,366,'Subscriber',94102); +INSERT INTO "trip" VALUES(903964,843,'8/25/2015 8:56','San Francisco Caltrain 2 (330 Townsend)',69,'8/25/2015 9:10','Market at Sansome',77,518,'Subscriber',94087); +INSERT INTO "trip" VALUES(903965,473,'8/25/2015 8:56','Grant Avenue at Columbus Avenue',73,'8/25/2015 9:04','Beale at Market',56,364,'Subscriber',94133); +INSERT INTO "trip" VALUES(903966,431,'8/25/2015 8:56','Powell Street BART',39,'8/25/2015 9:03','San Francisco Caltrain 2 (330 Townsend)',69,548,'Subscriber',94703); +INSERT INTO "trip" VALUES(903967,247,'8/25/2015 8:56','San Francisco Caltrain 2 (330 Townsend)',69,'8/25/2015 9:00','Townsend at 7th',65,268,'Subscriber',95051); +INSERT INTO "trip" VALUES(903968,773,'8/25/2015 8:56','Townsend at 7th',65,'8/25/2015 9:09','Howard at 2nd',63,383,'Subscriber',94116); +INSERT INTO "trip" VALUES(903969,218,'8/25/2015 8:56','Palo Alto Caltrain Station',34,'8/25/2015 9:00','Cowper at University',37,72,'Subscriber',94102); +INSERT INTO "trip" VALUES(903970,496,'8/25/2015 8:56','Beale at Market',56,'8/25/2015 9:05','2nd at South Park',64,557,'Subscriber',94607); +INSERT INTO "trip" VALUES(903971,509,'8/25/2015 8:56','Embarcadero at Bryant',54,'8/25/2015 9:05','Commercial at Montgomery',45,454,'Subscriber',94105); +INSERT INTO "trip" VALUES(903972,556,'8/25/2015 8:57','Washington at Kearny',46,'8/25/2015 9:06','Spear at Folsom',49,450,'Subscriber',94105); +INSERT INTO "trip" VALUES(903973,227,'8/25/2015 8:57','Howard at 2nd',63,'8/25/2015 9:01','Yerba Buena Center of the Arts (3rd @ Howard)',68,573,'Subscriber',94558); +INSERT INTO "trip" VALUES(903974,535,'8/25/2015 8:57','2nd at Townsend',61,'8/25/2015 9:06','Steuart at Market',74,624,'Subscriber',94158); +INSERT INTO "trip" VALUES(903975,688,'8/25/2015 8:57','Temporary Transbay Terminal (Howard at Beale)',55,'8/25/2015 9:08','Townsend at 7th',65,266,'Subscriber',94608); +INSERT INTO "trip" VALUES(903976,692,'8/25/2015 8:57','2nd at Townsend',61,'8/25/2015 9:08','Commercial at Montgomery',45,453,'Subscriber',94107); +INSERT INTO "trip" VALUES(903977,671,'8/25/2015 8:57','San Francisco Caltrain 2 (330 Townsend)',69,'8/25/2015 9:08','Temporary Transbay Terminal (Howard at Beale)',55,395,'Subscriber',94402); +INSERT INTO "trip" VALUES(903979,646,'8/25/2015 8:57','San Francisco Caltrain (Townsend at 4th)',70,'8/25/2015 9:08','Temporary Transbay Terminal (Howard at Beale)',55,456,'Subscriber',94117); +INSERT INTO "trip" VALUES(903981,511,'8/25/2015 8:58','Steuart at Market',74,'8/25/2015 9:07','2nd at Townsend',61,137,'Subscriber',94110); +INSERT INTO "trip" VALUES(903982,608,'8/25/2015 8:58','Market at 4th',76,'8/25/2015 9:08','Market at 10th',67,516,'Subscriber',11201); +INSERT INTO "trip" VALUES(903983,296,'8/25/2015 8:59','Market at Sansome',77,'8/25/2015 9:04','2nd at South Park',64,517,'Subscriber',94115); +INSERT INTO "trip" VALUES(903984,483,'8/25/2015 8:59','Golden Gate at Polk',59,'8/25/2015 9:07','Beale at Market',56,290,'Subscriber',94109); +INSERT INTO "trip" VALUES(903985,306,'8/25/2015 9:00','Beale at Market',56,'8/25/2015 9:05','Broadway St at Battery St',82,556,'Subscriber',94111); +INSERT INTO "trip" VALUES(903986,216,'8/25/2015 9:00','2nd at Townsend',61,'8/25/2015 9:04','San Francisco Caltrain (Townsend at 4th)',70,634,'Subscriber',94107); +INSERT INTO "trip" VALUES(903987,326,'8/25/2015 9:00','2nd at Townsend',61,'8/25/2015 9:06','Howard at 2nd',63,877,'Subscriber',94105); +INSERT INTO "trip" VALUES(903988,797,'8/25/2015 9:01','South Van Ness at Market',66,'8/25/2015 9:14','Harry Bridges Plaza (Ferry Building)',50,552,'Subscriber',94131); +INSERT INTO "trip" VALUES(903989,411,'8/25/2015 9:01','Embarcadero at Folsom',51,'8/25/2015 9:08','Embarcadero at Sansome',60,592,'Subscriber',94124); +INSERT INTO "trip" VALUES(903990,1117,'8/25/2015 9:01','Civic Center BART (7th at Market)',72,'8/25/2015 9:20','Temporary Transbay Terminal (Howard at Beale)',55,582,'Subscriber',94103); +INSERT INTO "trip" VALUES(903991,346,'8/25/2015 9:02','2nd at South Park',64,'8/25/2015 9:08','Post at Kearny',47,447,'Subscriber',94107); +INSERT INTO "trip" VALUES(903992,591,'8/25/2015 9:02','San Francisco Caltrain (Townsend at 4th)',70,'8/25/2015 9:12','Post at Kearny',47,587,'Subscriber',92067); +INSERT INTO "trip" VALUES(903993,576,'8/25/2015 9:02','Golden Gate at Polk',59,'8/25/2015 9:12','Yerba Buena Center of the Arts (3rd @ Howard)',68,597,'Subscriber',94941); +INSERT INTO "trip" VALUES(903994,157,'8/25/2015 9:02','Powell Street BART',39,'8/25/2015 9:05','Market at 4th',76,485,'Subscriber',94107); +INSERT INTO "trip" VALUES(903995,350,'8/25/2015 9:03','Temporary Transbay Terminal (Howard at Beale)',55,'8/25/2015 9:09','2nd at South Park',64,483,'Subscriber',94710); +INSERT INTO "trip" VALUES(903996,320,'8/25/2015 9:03','Mechanics Plaza (Market at Battery)',75,'8/25/2015 9:08','Embarcadero at Folsom',51,687,'Subscriber',94941); +INSERT INTO "trip" VALUES(903997,610,'8/25/2015 9:04','Embarcadero at Bryant',54,'8/25/2015 9:14','Mechanics Plaza (Market at Battery)',75,575,'Subscriber',94105); +INSERT INTO "trip" VALUES(903999,447,'8/25/2015 9:05','Market at Sansome',77,'8/25/2015 9:12','5th at Howard',57,584,'Subscriber',94127); +INSERT INTO "trip" VALUES(904000,549,'8/25/2015 9:05','Harry Bridges Plaza (Ferry Building)',50,'8/25/2015 9:14','2nd at Townsend',61,373,'Subscriber',94901); +INSERT INTO "trip" VALUES(904001,404,'8/25/2015 9:05','Temporary Transbay Terminal (Howard at Beale)',55,'8/25/2015 9:12','5th at Howard',57,469,'Subscriber',94702); +INSERT INTO "trip" VALUES(904002,427,'8/25/2015 9:05','Steuart at Market',74,'8/25/2015 9:12','Embarcadero at Vallejo',48,636,'Subscriber',94536); +INSERT INTO "trip" VALUES(904003,340,'8/25/2015 9:05','Market at 4th',76,'8/25/2015 9:11','Beale at Market',56,325,'Subscriber',94107); +INSERT INTO "trip" VALUES(904004,277,'8/25/2015 9:06','Mountain View Caltrain Station',28,'8/25/2015 9:10','Evelyn Park and Ride',30,48,'Subscriber',94110); +INSERT INTO "trip" VALUES(904005,415,'8/25/2015 9:06','Steuart at Market',74,'8/25/2015 9:13','Howard at 2nd',63,586,'Subscriber',94903); +INSERT INTO "trip" VALUES(904006,411,'8/25/2015 9:06','Market at Sansome',77,'8/25/2015 9:13','Broadway St at Battery St',82,567,'Subscriber',94132); +INSERT INTO "trip" VALUES(904007,299,'8/25/2015 9:06','Mountain View Caltrain Station',28,'8/25/2015 9:11','Evelyn Park and Ride',30,233,'Subscriber',94133); +INSERT INTO "trip" VALUES(904008,725,'8/25/2015 9:06','Golden Gate at Polk',59,'8/25/2015 9:19','Steuart at Market',74,189,'Subscriber',94102); +INSERT INTO "trip" VALUES(904009,271,'8/25/2015 9:07','Mountain View Caltrain Station',28,'8/25/2015 9:11','Castro Street and El Camino Real',32,197,'Subscriber',2780); +INSERT INTO "trip" VALUES(904010,969,'8/25/2015 9:07','Townsend at 7th',65,'8/25/2015 9:23','Spear at Folsom',49,534,'Subscriber',94131); +INSERT INTO "trip" VALUES(904011,253,'8/25/2015 9:07','Powell at Post (Union Square)',71,'8/25/2015 9:12','Powell Street BART',39,409,'Subscriber',94109); +INSERT INTO "trip" VALUES(904012,525,'8/25/2015 9:08','Washington at Kearny',46,'8/25/2015 9:17','Market at Sansome',77,585,'Subscriber',94133); +INSERT INTO "trip" VALUES(904013,402,'8/25/2015 9:08','Market at Sansome',77,'8/25/2015 9:15','2nd at Townsend',61,558,'Subscriber',94611); +INSERT INTO "trip" VALUES(904014,435,'8/25/2015 9:09','2nd at Townsend',61,'8/25/2015 9:16','Townsend at 7th',65,137,'Subscriber',94107); +INSERT INTO "trip" VALUES(904015,224,'8/25/2015 9:09','Steuart at Market',74,'8/25/2015 9:13','Spear at Folsom',49,504,'Subscriber',94114); +INSERT INTO "trip" VALUES(904016,491,'8/25/2015 9:09','Temporary Transbay Terminal (Howard at Beale)',55,'8/25/2015 9:17','Post at Kearny',47,419,'Subscriber',94501); +INSERT INTO "trip" VALUES(904017,218,'8/25/2015 9:06','San Jose Diridon Caltrain Station',2,'8/25/2015 9:10','Santa Clara at Almaden',4,656,'Subscriber',94158); +INSERT INTO "trip" VALUES(904018,341,'8/25/2015 9:10','San Jose Diridon Caltrain Station',2,'8/25/2015 9:15','Adobe on Almaden',5,104,'Subscriber',94043); +INSERT INTO "trip" VALUES(904019,257,'8/25/2015 9:11','San Francisco Caltrain 2 (330 Townsend)',69,'8/25/2015 9:15','Townsend at 7th',65,407,'Subscriber',94611); +INSERT INTO "trip" VALUES(904021,745,'8/25/2015 9:11','San Francisco Caltrain (Townsend at 4th)',70,'8/25/2015 9:24','Spear at Folsom',49,593,'Subscriber',94070); +INSERT INTO "trip" VALUES(904022,596,'8/25/2015 9:11','San Francisco Caltrain (Townsend at 4th)',70,'8/25/2015 9:21','Temporary Transbay Terminal (Howard at Beale)',55,634,'Subscriber',95008); +INSERT INTO "trip" VALUES(904023,263,'8/25/2015 9:12','San Francisco Caltrain (Townsend at 4th)',70,'8/25/2015 9:16','Townsend at 7th',65,416,'Subscriber',94401); +INSERT INTO "trip" VALUES(904024,559,'8/25/2015 9:12','San Francisco Caltrain (Townsend at 4th)',70,'8/25/2015 9:21','Temporary Transbay Terminal (Howard at Beale)',55,355,'Subscriber',95110); +INSERT INTO "trip" VALUES(904025,675,'8/25/2015 9:12','San Francisco Caltrain 2 (330 Townsend)',69,'8/25/2015 9:23','Market at Sansome',77,366,'Subscriber',94306); +INSERT INTO "trip" VALUES(904026,840,'8/25/2015 9:12','Mechanics Plaza (Market at Battery)',75,'8/25/2015 9:26','South Van Ness at Market',66,519,'Subscriber',94611); +INSERT INTO "trip" VALUES(904027,721,'8/25/2015 9:12','San Francisco Caltrain 2 (330 Townsend)',69,'8/25/2015 9:24','Beale at Market',56,576,'Subscriber',94085); +INSERT INTO "trip" VALUES(904028,481,'8/25/2015 9:13','San Francisco Caltrain 2 (330 Townsend)',69,'8/25/2015 9:21','Howard at 2nd',63,600,'Subscriber',94070); +INSERT INTO "trip" VALUES(904029,889,'8/25/2015 9:13','San Francisco Caltrain (Townsend at 4th)',70,'8/25/2015 9:28','Clay at Battery',41,326,'Subscriber',94043); +INSERT INTO "trip" VALUES(904030,507,'8/25/2015 9:13','San Francisco Caltrain 2 (330 Townsend)',69,'8/25/2015 9:22','Temporary Transbay Terminal (Howard at Beale)',55,479,'Subscriber',95032); +INSERT INTO "trip" VALUES(904031,523,'8/25/2015 9:13','Temporary Transbay Terminal (Howard at Beale)',55,'8/25/2015 9:22','Broadway St at Battery St',82,356,'Subscriber',94602); +INSERT INTO "trip" VALUES(904032,357,'8/25/2015 9:13','Market at 4th',76,'8/25/2015 9:19','Market at 10th',67,385,'Subscriber',94109); +INSERT INTO "trip" VALUES(904033,309,'8/25/2015 9:13','Commercial at Montgomery',45,'8/25/2015 9:19','Howard at 2nd',63,503,'Subscriber',94114); +INSERT INTO "trip" VALUES(904034,299,'8/25/2015 9:14','Howard at 2nd',63,'8/25/2015 9:19','2nd at Townsend',61,410,'Subscriber',94939); +INSERT INTO "trip" VALUES(904035,403,'8/25/2015 9:14','Temporary Transbay Terminal (Howard at Beale)',55,'8/25/2015 9:20','Commercial at Montgomery',45,285,'Subscriber',94530); +INSERT INTO "trip" VALUES(904036,1429,'8/25/2015 9:14','San Francisco Caltrain 2 (330 Townsend)',69,'8/25/2015 9:38','Steuart at Market',74,461,'Subscriber',94404); +INSERT INTO "trip" VALUES(904037,487,'8/25/2015 9:14','Steuart at Market',74,'8/25/2015 9:22','2nd at Townsend',61,477,'Subscriber',94526); +INSERT INTO "trip" VALUES(904038,495,'8/25/2015 9:14','Commercial at Montgomery',45,'8/25/2015 9:23','2nd at Folsom',62,399,'Subscriber',94133); +INSERT INTO "trip" VALUES(904039,198,'8/25/2015 9:15','2nd at Folsom',62,'8/25/2015 9:18','Temporary Transbay Terminal (Howard at Beale)',55,513,'Subscriber',94158); +INSERT INTO "trip" VALUES(904040,658,'8/25/2015 9:15','San Francisco Caltrain 2 (330 Townsend)',69,'8/25/2015 9:26','Harry Bridges Plaza (Ferry Building)',50,548,'Subscriber',94303); +INSERT INTO "trip" VALUES(904041,792,'8/25/2015 9:15','Market at 10th',67,'8/25/2015 9:28','2nd at Townsend',61,278,'Subscriber',94107); +INSERT INTO "trip" VALUES(904042,560,'8/25/2015 9:15','Harry Bridges Plaza (Ferry Building)',50,'8/25/2015 9:24','2nd at South Park',64,552,'Subscriber',94920); +INSERT INTO "trip" VALUES(904043,363,'8/25/2015 9:15','Embarcadero at Folsom',51,'8/25/2015 9:21','2nd at Townsend',61,269,'Subscriber',94303); +INSERT INTO "trip" VALUES(904045,214,'8/25/2015 9:15','Steuart at Market',74,'8/25/2015 9:19','Embarcadero at Vallejo',48,624,'Subscriber',94608); +INSERT INTO "trip" VALUES(904046,769,'8/25/2015 9:15','Market at 10th',67,'8/25/2015 9:28','2nd at Townsend',61,288,'Subscriber',94549); +INSERT INTO "trip" VALUES(904047,685,'8/25/2015 9:15','Embarcadero at Bryant',54,'8/25/2015 9:27','Washington at Kearny',46,193,'Subscriber',94105); +INSERT INTO "trip" VALUES(904048,300,'8/25/2015 9:15','Clay at Battery',41,'8/25/2015 9:20','Temporary Transbay Terminal (Howard at Beale)',55,425,'Subscriber',94111); +INSERT INTO "trip" VALUES(904049,534,'8/25/2015 9:16','Embarcadero at Bryant',54,'8/25/2015 9:25','Mechanics Plaza (Market at Battery)',75,566,'Subscriber',94105); +INSERT INTO "trip" VALUES(904050,875,'8/25/2015 9:17','Temporary Transbay Terminal (Howard at Beale)',55,'8/25/2015 9:31','Townsend at 7th',65,392,'Subscriber',94608); +INSERT INTO "trip" VALUES(904051,417,'8/25/2015 9:17','San Francisco Caltrain 2 (330 Townsend)',69,'8/25/2015 9:24','5th at Howard',57,512,'Subscriber',94086); +INSERT INTO "trip" VALUES(904052,1157,'8/25/2015 9:18','San Francisco Caltrain 2 (330 Townsend)',69,'8/25/2015 9:37','Davis at Jackson',42,283,'Subscriber',94086); +INSERT INTO "trip" VALUES(904053,512,'8/25/2015 9:15','2nd at Folsom',62,'8/25/2015 9:23','Townsend at 7th',65,67,'Subscriber',94105); +INSERT INTO "trip" VALUES(904054,506,'8/25/2015 9:18','Civic Center BART (7th at Market)',72,'8/25/2015 9:27','Mechanics Plaza (Market at Battery)',75,579,'Subscriber',94103); +INSERT INTO "trip" VALUES(904055,215,'8/25/2015 9:18','Davis at Jackson',42,'8/25/2015 9:22','Steuart at Market',74,574,'Subscriber',94107); +INSERT INTO "trip" VALUES(904058,686,'8/25/2015 9:19','2nd at Townsend',61,'8/25/2015 9:31','Harry Bridges Plaza (Ferry Building)',50,558,'Subscriber',94107); +INSERT INTO "trip" VALUES(904059,455,'8/25/2015 9:20','Steuart at Market',74,'8/25/2015 9:28','Embarcadero at Sansome',60,189,'Subscriber',94111); +INSERT INTO "trip" VALUES(904061,486,'8/25/2015 9:21','Market at 10th',67,'8/25/2015 9:29','Post at Kearny',47,516,'Subscriber',94102); +INSERT INTO "trip" VALUES(904062,356,'8/25/2015 9:21','Steuart at Market',74,'8/25/2015 9:27','Embarcadero at Sansome',60,405,'Subscriber',94611); +INSERT INTO "trip" VALUES(904064,211,'8/25/2015 9:22','Powell at Post (Union Square)',71,'8/25/2015 9:25','Market at Sansome',77,553,'Subscriber',94117); +INSERT INTO "trip" VALUES(904065,342,'8/25/2015 9:22','Temporary Transbay Terminal (Howard at Beale)',55,'8/25/2015 9:27','2nd at Townsend',61,425,'Subscriber',94705); +INSERT INTO "trip" VALUES(904066,410,'8/25/2015 9:22','2nd at Folsom',62,'8/25/2015 9:29','San Francisco Caltrain (Townsend at 4th)',70,260,'Subscriber',94107); +INSERT INTO "trip" VALUES(904067,458,'8/25/2015 9:22','San Jose Diridon Caltrain Station',2,'8/25/2015 9:30','St James Park',13,142,'Subscriber',94105); +INSERT INTO "trip" VALUES(904068,453,'8/25/2015 9:22','Steuart at Market',74,'8/25/2015 9:30','Embarcadero at Sansome',60,574,'Subscriber',94566); +INSERT INTO "trip" VALUES(904071,680,'8/25/2015 9:23','2nd at Townsend',61,'8/25/2015 9:34','Post at Kearny',47,373,'Subscriber',94306); +INSERT INTO "trip" VALUES(904072,449,'8/25/2015 9:24','Howard at 2nd',63,'8/25/2015 9:32','San Francisco Caltrain (Townsend at 4th)',70,503,'Subscriber',94105); +INSERT INTO "trip" VALUES(904073,249,'8/25/2015 9:26','Evelyn Park and Ride',30,'8/25/2015 9:30','Mountain View Caltrain Station',28,22,'Subscriber',95051); +INSERT INTO "trip" VALUES(904074,199,'8/25/2015 9:26','5th at Howard',57,'8/25/2015 9:29','Market at 4th',76,469,'Subscriber',94103); +INSERT INTO "trip" VALUES(904075,1221,'8/25/2015 9:27','Clay at Battery',41,'8/25/2015 9:47','San Francisco Caltrain (Townsend at 4th)',70,292,'Subscriber',94133); +INSERT INTO "trip" VALUES(904076,470,'8/25/2015 9:27','2nd at Townsend',61,'8/25/2015 9:35','Steuart at Market',74,269,'Subscriber',95120); +INSERT INTO "trip" VALUES(904077,738,'8/25/2015 9:28','2nd at Townsend',61,'8/25/2015 9:40','Davis at Jackson',42,410,'Subscriber',95051); +INSERT INTO "trip" VALUES(904080,589,'8/25/2015 9:28','2nd at Townsend',61,'8/25/2015 9:38','Harry Bridges Plaza (Ferry Building)',50,288,'Subscriber',94107); +INSERT INTO "trip" VALUES(904083,595,'8/25/2015 9:28','2nd at Townsend',61,'8/25/2015 9:38','Broadway St at Battery St',82,425,'Subscriber',95129); +INSERT INTO "trip" VALUES(904084,682,'8/25/2015 9:29','Yerba Buena Center of the Arts (3rd @ Howard)',68,'8/25/2015 9:40','Clay at Battery',41,597,'Subscriber',94117); +INSERT INTO "trip" VALUES(904085,847,'8/25/2015 9:29','Embarcadero at Sansome',60,'8/25/2015 9:43','Market at 4th',76,267,'Subscriber',94111); +INSERT INTO "trip" VALUES(904086,488,'8/25/2015 9:30','2nd at Townsend',61,'8/25/2015 9:38','Beale at Market',56,477,'Customer',37221); +INSERT INTO "trip" VALUES(904087,87,'8/25/2015 9:30','Beale at Market',56,'8/25/2015 9:32','Mechanics Plaza (Market at Battery)',75,578,'Subscriber',94105); +INSERT INTO "trip" VALUES(904090,492,'8/25/2015 9:30','Beale at Market',56,'8/25/2015 9:39','Embarcadero at Sansome',60,364,'Subscriber',94549); +INSERT INTO "trip" VALUES(904091,838,'8/25/2015 9:30','Temporary Transbay Terminal (Howard at Beale)',55,'8/25/2015 9:44','Market at 10th',67,582,'Subscriber',94706); +INSERT INTO "trip" VALUES(904092,385,'8/25/2015 9:32','Powell at Post (Union Square)',71,'8/25/2015 9:38','Steuart at Market',74,420,'Subscriber',94108); +INSERT INTO "trip" VALUES(904093,398,'8/25/2015 9:32','Temporary Transbay Terminal (Howard at Beale)',55,'8/25/2015 9:38','2nd at Townsend',61,634,'Subscriber',94608); +INSERT INTO "trip" VALUES(904094,1012,'8/25/2015 9:32','San Francisco Caltrain (Townsend at 4th)',70,'8/25/2015 9:49','Market at 10th',67,503,'Subscriber',94065); +INSERT INTO "trip" VALUES(904097,265,'8/25/2015 9:33','San Francisco Caltrain (Townsend at 4th)',70,'8/25/2015 9:37','Townsend at 7th',65,260,'Subscriber',94043); +INSERT INTO "trip" VALUES(904098,253,'8/25/2015 9:33','Mountain View City Hall',27,'8/25/2015 9:37','Mountain View Caltrain Station',28,650,'Subscriber',94041); +INSERT INTO "trip" VALUES(904099,799,'8/25/2015 9:33','2nd at South Park',64,'8/25/2015 9:46','Commercial at Montgomery',45,552,'Subscriber',94107); +INSERT INTO "trip" VALUES(904100,252,'8/25/2015 9:34','Harry Bridges Plaza (Ferry Building)',50,'8/25/2015 9:38','Embarcadero at Vallejo',48,548,'Subscriber',94556); +INSERT INTO "trip" VALUES(904101,912,'8/25/2015 9:34','Temporary Transbay Terminal (Howard at Beale)',55,'8/25/2015 9:49','Market at 10th',67,355,'Subscriber',94709); +INSERT INTO "trip" VALUES(904104,684,'8/25/2015 9:34','2nd at Townsend',61,'8/25/2015 9:46','Clay at Battery',41,278,'Subscriber',94111); +INSERT INTO "trip" VALUES(904105,379,'8/25/2015 9:34','Embarcadero at Bryant',54,'8/25/2015 9:41','San Francisco Caltrain (Townsend at 4th)',70,432,'Subscriber',94939); +INSERT INTO "trip" VALUES(904106,565,'8/25/2015 9:36','Townsend at 7th',65,'8/25/2015 9:45','Market at 10th',67,608,'Subscriber',95119); +INSERT INTO "trip" VALUES(904109,612,'8/25/2015 9:36','Townsend at 7th',65,'8/25/2015 9:46','Powell Street BART',39,407,'Subscriber',94107); +INSERT INTO "trip" VALUES(904110,430,'8/25/2015 9:36','Harry Bridges Plaza (Ferry Building)',50,'8/25/2015 9:43','Embarcadero at Sansome',60,558,'Subscriber',94521); +INSERT INTO "trip" VALUES(904111,441,'8/25/2015 9:36','Market at Sansome',77,'8/25/2015 9:43','2nd at South Park',64,518,'Subscriber',94901); +INSERT INTO "trip" VALUES(904112,121,'8/25/2015 9:36','Civic Center BART (7th at Market)',72,'8/25/2015 9:38','Powell Street BART',39,331,'Subscriber',94103); +INSERT INTO "trip" VALUES(904114,400,'8/25/2015 9:37','Market at 4th',76,'8/25/2015 9:43','San Francisco Caltrain (Townsend at 4th)',70,614,'Subscriber',95054); +INSERT INTO "trip" VALUES(904115,429,'8/25/2015 9:37','Embarcadero at Folsom',51,'8/25/2015 9:44','2nd at Folsom',62,687,'Customer',94901); +INSERT INTO "trip" VALUES(904118,842,'8/25/2015 9:37','Temporary Transbay Terminal (Howard at Beale)',55,'8/25/2015 9:51','Market at 10th',67,513,'Subscriber',94608); +INSERT INTO "trip" VALUES(904119,920,'8/25/2015 9:37','Civic Center BART (7th at Market)',72,'8/25/2015 9:52','Townsend at 7th',65,471,'Subscriber',94618); +INSERT INTO "trip" VALUES(904120,597,'8/25/2015 9:38','Grant Avenue at Columbus Avenue',73,'8/25/2015 9:48','Embarcadero at Folsom',51,570,'Subscriber',94124); +INSERT INTO "trip" VALUES(904121,354,'8/25/2015 9:38','Powell Street BART',39,'8/25/2015 9:44','San Francisco Caltrain 2 (330 Townsend)',69,428,'Subscriber',94606); +INSERT INTO "trip" VALUES(904122,399,'8/25/2015 9:39','2nd at Townsend',61,'8/25/2015 9:45','Market at Sansome',77,508,'Subscriber',94303); +INSERT INTO "trip" VALUES(904123,203,'8/25/2015 9:40','San Antonio Caltrain Station',29,'8/25/2015 9:43','San Antonio Shopping Center',31,561,'Subscriber',94103); +INSERT INTO "trip" VALUES(904124,251,'8/25/2015 9:40','Broadway St at Battery St',82,'8/25/2015 9:44','Mechanics Plaza (Market at Battery)',75,277,'Subscriber',94107); +INSERT INTO "trip" VALUES(904125,280,'8/25/2015 9:40','San Antonio Caltrain Station',29,'8/25/2015 9:45','San Antonio Shopping Center',31,239,'Subscriber',94109); +INSERT INTO "trip" VALUES(904127,345,'8/25/2015 9:41','Temporary Transbay Terminal (Howard at Beale)',55,'8/25/2015 9:47','Market at 4th',76,395,'Subscriber',94105); +INSERT INTO "trip" VALUES(904129,200,'8/25/2015 9:41','Powell at Post (Union Square)',71,'8/25/2015 9:45','Market at Sansome',77,529,'Subscriber',94109); +INSERT INTO "trip" VALUES(904131,269,'8/25/2015 9:41','Beale at Market',56,'8/25/2015 9:46','Embarcadero at Vallejo',48,325,'Subscriber',94112); +INSERT INTO "trip" VALUES(904132,598,'8/25/2015 9:42','Civic Center BART (7th at Market)',72,'8/25/2015 9:52','Beale at Market',56,436,'Subscriber',94103); +INSERT INTO "trip" VALUES(904133,214,'8/25/2015 9:42','Palo Alto Caltrain Station',34,'8/25/2015 9:46','Cowper at University',37,41,'Subscriber',94107); +INSERT INTO "trip" VALUES(904134,184,'8/25/2015 9:43','Palo Alto Caltrain Station',34,'8/25/2015 9:46','Cowper at University',37,689,'Subscriber',94108); +INSERT INTO "trip" VALUES(904136,1263,'8/25/2015 9:43','San Francisco Caltrain (Townsend at 4th)',70,'8/25/2015 10:04','Market at 10th',67,56,'Subscriber',94107); +INSERT INTO "trip" VALUES(904137,578,'8/25/2015 9:43','Davis at Jackson',42,'8/25/2015 9:53','2nd at Townsend',61,465,'Subscriber',94111); +INSERT INTO "trip" VALUES(904138,285,'8/25/2015 9:44','San Francisco Caltrain 2 (330 Townsend)',69,'8/25/2015 9:49','Townsend at 7th',65,651,'Subscriber',94105); +INSERT INTO "trip" VALUES(904139,444,'8/25/2015 9:46','Temporary Transbay Terminal (Howard at Beale)',55,'8/25/2015 9:53','Washington at Kearny',46,456,'Subscriber',94608); +INSERT INTO "trip" VALUES(904140,425,'8/25/2015 9:46','Commercial at Montgomery',45,'8/25/2015 9:53','2nd at South Park',64,33,'Subscriber',94122); +INSERT INTO "trip" VALUES(904141,256,'8/25/2015 9:46','Townsend at 7th',65,'8/25/2015 9:50','San Francisco Caltrain 2 (330 Townsend)',69,416,'Subscriber',94107); +INSERT INTO "trip" VALUES(904142,482,'8/25/2015 9:47','San Francisco Caltrain 2 (330 Townsend)',69,'8/25/2015 9:55','Steuart at Market',74,284,'Subscriber',94002); +INSERT INTO "trip" VALUES(904143,559,'8/25/2015 9:47','San Francisco Caltrain (Townsend at 4th)',70,'8/25/2015 9:56','Davis at Jackson',42,614,'Subscriber',95120); +INSERT INTO "trip" VALUES(904144,429,'8/25/2015 9:47','San Francisco Caltrain (Townsend at 4th)',70,'8/25/2015 9:55','Howard at 2nd',63,432,'Subscriber',94066); +INSERT INTO "trip" VALUES(904145,490,'8/25/2015 9:47','San Francisco Caltrain (Townsend at 4th)',70,'8/25/2015 9:56','Yerba Buena Center of the Arts (3rd @ Howard)',68,292,'Subscriber',94070); +INSERT INTO "trip" VALUES(904146,547,'8/25/2015 9:48','San Francisco Caltrain (Townsend at 4th)',70,'8/25/2015 9:57','Howard at 2nd',63,527,'Subscriber',94402); +INSERT INTO "trip" VALUES(904147,417,'8/25/2015 9:48','Market at 4th',76,'8/25/2015 9:55','Market at 10th',67,469,'Subscriber',94133); +INSERT INTO "trip" VALUES(904148,799,'8/25/2015 9:48','San Francisco Caltrain 2 (330 Townsend)',69,'8/25/2015 10:02','Market at Sansome',77,441,'Subscriber',94087); +INSERT INTO "trip" VALUES(904149,514,'8/25/2015 9:48','Temporary Transbay Terminal (Howard at Beale)',55,'8/25/2015 9:57','Broadway St at Battery St',82,563,'Subscriber',94608); +INSERT INTO "trip" VALUES(904150,623,'8/25/2015 9:49','Harry Bridges Plaza (Ferry Building)',50,'8/25/2015 9:59','San Francisco Caltrain (Townsend at 4th)',70,288,'Subscriber',94107); +INSERT INTO "trip" VALUES(904151,160,'8/25/2015 9:50','Mountain View Caltrain Station',28,'8/25/2015 9:53','Mountain View City Hall',27,13,'Subscriber',94107); +INSERT INTO "trip" VALUES(904152,295,'8/25/2015 9:51','Mountain View Caltrain Station',28,'8/25/2015 9:55','Castro Street and El Camino Real',32,706,'Subscriber',94109); +INSERT INTO "trip" VALUES(904153,550,'8/25/2015 9:51','Harry Bridges Plaza (Ferry Building)',50,'8/25/2015 10:00','Powell Street BART',39,275,'Subscriber',94941); +INSERT INTO "trip" VALUES(904154,556,'8/25/2015 9:52','Spear at Folsom',49,'8/25/2015 10:01','San Francisco Caltrain (Townsend at 4th)',70,502,'Subscriber',94105); +INSERT INTO "trip" VALUES(904155,288,'8/25/2015 9:52','Broadway St at Battery St',82,'8/25/2015 9:57','Steuart at Market',74,356,'Subscriber',94133); +INSERT INTO "trip" VALUES(904156,321,'8/25/2015 9:52','Howard at 2nd',63,'8/25/2015 9:58','Embarcadero at Folsom',51,336,'Subscriber',94105); +INSERT INTO "trip" VALUES(904157,924,'8/25/2015 9:53','Washington at Kearny',46,'8/25/2015 10:09','2nd at South Park',64,66,'Subscriber',94133); +INSERT INTO "trip" VALUES(904158,354,'8/25/2015 9:53','Redwood City Medical Center',26,'8/25/2015 9:59','Redwood City Caltrain Station',22,655,'Subscriber',94041); +INSERT INTO "trip" VALUES(904159,404,'8/25/2015 9:53','Market at 4th',76,'8/25/2015 10:00','San Francisco Caltrain (Townsend at 4th)',70,395,'Subscriber',94607); +INSERT INTO "trip" VALUES(904160,708,'8/25/2015 9:54','Golden Gate at Polk',59,'8/25/2015 10:06','San Francisco Caltrain 2 (330 Townsend)',69,618,'Subscriber',94107); +INSERT INTO "trip" VALUES(904161,444,'8/25/2015 9:54','Temporary Transbay Terminal (Howard at Beale)',55,'8/25/2015 10:01','2nd at South Park',64,520,'Subscriber',94610); +INSERT INTO "trip" VALUES(904164,533,'8/25/2015 9:55','South Van Ness at Market',66,'8/25/2015 10:04','Market at 4th',76,519,'Subscriber',94105); +INSERT INTO "trip" VALUES(904167,594,'8/25/2015 9:56','Beale at Market',56,'8/25/2015 10:06','2nd at Townsend',61,290,'Subscriber',94945); +INSERT INTO "trip" VALUES(904168,598,'8/25/2015 9:56','Beale at Market',56,'8/25/2015 10:06','2nd at Townsend',61,477,'Subscriber',95476); +INSERT INTO "trip" VALUES(904171,1299,'8/25/2015 9:58','Harry Bridges Plaza (Ferry Building)',50,'8/25/2015 10:20','Harry Bridges Plaza (Ferry Building)',50,636,'Customer',11232); +INSERT INTO "trip" VALUES(904174,81,'8/25/2015 10:01','2nd at South Park',64,'8/25/2015 10:03','2nd at Townsend',61,33,'Subscriber',94107); +INSERT INTO "trip" VALUES(904175,262,'8/25/2015 10:03','Harry Bridges Plaza (Ferry Building)',50,'8/25/2015 10:07','Embarcadero at Vallejo',48,569,'Subscriber',94610); +INSERT INTO "trip" VALUES(904176,464,'8/25/2015 10:03','Powell Street BART',39,'8/25/2015 10:11','Townsend at 7th',65,407,'Subscriber',94518); +INSERT INTO "trip" VALUES(904177,251,'8/25/2015 10:04','Harry Bridges Plaza (Ferry Building)',50,'8/25/2015 10:09','Embarcadero at Vallejo',48,568,'Subscriber',94607); +INSERT INTO "trip" VALUES(904178,318,'8/25/2015 10:06','Market at Sansome',77,'8/25/2015 10:11','2nd at Townsend',61,366,'Subscriber',94708); +INSERT INTO "trip" VALUES(904179,627,'8/25/2015 10:06','Steuart at Market',74,'8/25/2015 10:17','San Francisco Caltrain (Townsend at 4th)',70,356,'Subscriber',94610); +INSERT INTO "trip" VALUES(904181,215,'8/25/2015 10:08','Broadway St at Battery St',82,'8/25/2015 10:11','Mechanics Plaza (Market at Battery)',75,567,'Subscriber',94117); +INSERT INTO "trip" VALUES(904182,525,'8/25/2015 10:08','Embarcadero at Folsom',51,'8/25/2015 10:17','2nd at Townsend',61,570,'Subscriber',94949); +INSERT INTO "trip" VALUES(904183,363,'8/25/2015 10:09','Harry Bridges Plaza (Ferry Building)',50,'8/25/2015 10:15','Embarcadero at Sansome',60,327,'Subscriber',94114); +INSERT INTO "trip" VALUES(904184,10204,'8/25/2015 10:08','Mountain View Caltrain Station',28,'8/25/2015 12:59','Mountain View Caltrain Station',28,683,'Customer',94105); +INSERT INTO "trip" VALUES(904185,742,'8/25/2015 10:09','2nd at South Park',64,'8/25/2015 10:21','Davis at Jackson',42,520,'Subscriber',94037); +INSERT INTO "trip" VALUES(904186,661,'8/25/2015 10:10','Harry Bridges Plaza (Ferry Building)',50,'8/25/2015 10:21','San Francisco Caltrain (Townsend at 4th)',70,522,'Subscriber',94705); +INSERT INTO "trip" VALUES(904187,345,'8/25/2015 10:10','Embarcadero at Sansome',60,'8/25/2015 10:16','Steuart at Market',74,370,'Customer','nil'); +INSERT INTO "trip" VALUES(904188,560,'8/25/2015 10:10','2nd at South Park',64,'8/25/2015 10:20','Commercial at Montgomery',45,334,'Subscriber',94122); +INSERT INTO "trip" VALUES(904191,384,'8/25/2015 10:12','Temporary Transbay Terminal (Howard at Beale)',55,'8/25/2015 10:19','Davis at Jackson',42,279,'Subscriber',94111); +INSERT INTO "trip" VALUES(904195,259,'8/25/2015 10:14','San Jose Diridon Caltrain Station',2,'8/25/2015 10:18','Santa Clara at Almaden',4,691,'Subscriber',94114); +INSERT INTO "trip" VALUES(904196,416,'8/25/2015 10:14','2nd at Townsend',61,'8/25/2015 10:21','Steuart at Market',74,33,'Subscriber',94501); +INSERT INTO "trip" VALUES(904197,668,'8/25/2015 10:14','San Francisco Caltrain 2 (330 Townsend)',69,'8/25/2015 10:25','Temporary Transbay Terminal (Howard at Beale)',55,428,'Subscriber',94401); +INSERT INTO "trip" VALUES(904198,744,'8/25/2015 10:15','Market at Sansome',77,'8/25/2015 10:27','2nd at Townsend',61,617,'Customer',80129); +INSERT INTO "trip" VALUES(904199,586,'8/25/2015 10:15','San Francisco Caltrain 2 (330 Townsend)',69,'8/25/2015 10:25','Harry Bridges Plaza (Ferry Building)',50,209,'Subscriber',94403); +INSERT INTO "trip" VALUES(904202,250,'8/25/2015 10:15','San Francisco Caltrain (Townsend at 4th)',70,'8/25/2015 10:20','Townsend at 7th',65,288,'Subscriber',94107); +INSERT INTO "trip" VALUES(904204,504,'8/25/2015 10:17','Harry Bridges Plaza (Ferry Building)',50,'8/25/2015 10:25','2nd at Townsend',61,259,'Subscriber',94612); +INSERT INTO "trip" VALUES(904208,728,'8/25/2015 10:18','Townsend at 7th',65,'8/25/2015 10:30','Temporary Transbay Terminal (Howard at Beale)',55,407,'Subscriber',94107); +INSERT INTO "trip" VALUES(904209,273,'8/25/2015 10:18','Mountain View Caltrain Station',28,'8/25/2015 10:23','Mountain View City Hall',27,22,'Subscriber',94107); +INSERT INTO "trip" VALUES(904210,503,'8/25/2015 10:19','Temporary Transbay Terminal (Howard at Beale)',55,'8/25/2015 10:27','Market at 4th',76,269,'Subscriber',94608); +INSERT INTO "trip" VALUES(904213,379,'8/25/2015 10:20','2nd at Townsend',61,'8/25/2015 10:27','Spear at Folsom',49,477,'Subscriber',94563); +INSERT INTO "trip" VALUES(904214,752,'8/25/2015 10:20','Market at 10th',67,'8/25/2015 10:33','2nd at Townsend',61,355,'Subscriber',94158); +INSERT INTO "trip" VALUES(904215,253,'8/25/2015 10:21','Steuart at Market',74,'8/25/2015 10:25','Embarcadero at Vallejo',48,370,'Subscriber',94602); +INSERT INTO "trip" VALUES(904217,338,'8/25/2015 10:23','Temporary Transbay Terminal (Howard at Beale)',55,'8/25/2015 10:28','Yerba Buena Center of the Arts (3rd @ Howard)',68,479,'Subscriber',94130); +INSERT INTO "trip" VALUES(904220,292,'8/25/2015 10:24','Mechanics Plaza (Market at Battery)',75,'8/25/2015 10:29','Yerba Buena Center of the Arts (3rd @ Howard)',68,277,'Subscriber',94804); +INSERT INTO "trip" VALUES(904222,210,'8/25/2015 10:25','Townsend at 7th',65,'8/25/2015 10:29','San Francisco Caltrain 2 (330 Townsend)',69,67,'Subscriber',94611); +INSERT INTO "trip" VALUES(904223,359,'8/25/2015 10:27','Washington at Kearny',46,'8/25/2015 10:33','Market at Sansome',77,611,'Subscriber',94709); +INSERT INTO "trip" VALUES(904224,295,'8/25/2015 10:28','Yerba Buena Center of the Arts (3rd @ Howard)',68,'8/25/2015 10:32','Market at Sansome',77,535,'Subscriber',94030); +INSERT INTO "trip" VALUES(904225,474,'8/25/2015 10:28','Market at 4th',76,'8/25/2015 10:36','San Francisco Caltrain 2 (330 Townsend)',69,269,'Subscriber',94541); +INSERT INTO "trip" VALUES(904228,232,'8/25/2015 10:29','Embarcadero at Bryant',54,'8/25/2015 10:33','Embarcadero at Folsom',51,589,'Subscriber',94107); +INSERT INTO "trip" VALUES(904235,517,'8/25/2015 10:34','Market at Sansome',77,'8/25/2015 10:42','San Francisco Caltrain (Townsend at 4th)',70,508,'Subscriber',94549); +INSERT INTO "trip" VALUES(904236,499,'8/25/2015 10:34','Golden Gate at Polk',59,'8/25/2015 10:42','Townsend at 7th',65,351,'Subscriber',94102); +INSERT INTO "trip" VALUES(904237,462,'8/25/2015 10:34','Powell Street BART',39,'8/25/2015 10:42','San Francisco Caltrain 2 (330 Townsend)',69,314,'Subscriber',94107); +INSERT INTO "trip" VALUES(904239,229,'8/25/2015 10:35','Grant Avenue at Columbus Avenue',73,'8/25/2015 10:39','Commercial at Montgomery',45,604,'Subscriber',94133); +INSERT INTO "trip" VALUES(904240,868,'8/25/2015 10:35','Grant Avenue at Columbus Avenue',73,'8/25/2015 10:49','Market at 10th',67,380,'Subscriber',94133); +INSERT INTO "trip" VALUES(904241,504,'8/25/2015 10:37','Powell at Post (Union Square)',71,'8/25/2015 10:45','Embarcadero at Vallejo',48,392,'Subscriber',94109); +INSERT INTO "trip" VALUES(904242,559,'8/25/2015 10:38','2nd at Folsom',62,'8/25/2015 10:47','Embarcadero at Vallejo',48,458,'Subscriber',94110); +INSERT INTO "trip" VALUES(904243,318,'8/25/2015 10:38','San Antonio Caltrain Station',29,'8/25/2015 10:43','San Antonio Shopping Center',31,118,'Subscriber',94115); +INSERT INTO "trip" VALUES(904244,357,'8/25/2015 10:42','San Francisco Caltrain 2 (330 Townsend)',69,'8/25/2015 10:48','Townsend at 7th',65,402,'Subscriber',94103); +INSERT INTO "trip" VALUES(904245,582,'8/25/2015 10:43','Market at 10th',67,'8/25/2015 10:53','Market at Sansome',77,309,'Subscriber',94102); +INSERT INTO "trip" VALUES(904246,196,'8/25/2015 10:44','Townsend at 7th',65,'8/25/2015 10:47','San Francisco Caltrain 2 (330 Townsend)',69,288,'Subscriber',94306); +INSERT INTO "trip" VALUES(904247,621,'8/25/2015 10:45','Market at 4th',76,'8/25/2015 10:55','San Francisco Caltrain (Townsend at 4th)',70,677,'Subscriber',94542); +INSERT INTO "trip" VALUES(904248,405,'8/25/2015 10:46','Beale at Market',56,'8/25/2015 10:53','2nd at South Park',64,576,'Subscriber',94591); +INSERT INTO "trip" VALUES(904249,326,'8/25/2015 10:46','Powell at Post (Union Square)',71,'8/25/2015 10:52','Howard at 2nd',63,651,'Subscriber',94108); +INSERT INTO "trip" VALUES(904250,19068,'8/25/2015 10:47','Market at Sansome',77,'8/25/2015 16:05','Embarcadero at Sansome',60,491,'Customer',31040); +INSERT INTO "trip" VALUES(904251,18854,'8/25/2015 10:48','Market at Sansome',77,'8/25/2015 16:02','Embarcadero at Sansome',60,585,'Customer',31040); +INSERT INTO "trip" VALUES(904254,485,'8/25/2015 10:52','2nd at Townsend',61,'8/25/2015 11:00','Yerba Buena Center of the Arts (3rd @ Howard)',68,634,'Subscriber',94107); +INSERT INTO "trip" VALUES(904255,638,'8/25/2015 10:52','Broadway St at Battery St',82,'8/25/2015 11:03','Market at Sansome',77,542,'Subscriber',94107); +INSERT INTO "trip" VALUES(904256,642,'8/25/2015 10:53','Market at 4th',76,'8/25/2015 11:04','Embarcadero at Vallejo',48,400,'Subscriber',94002); +INSERT INTO "trip" VALUES(904257,673,'8/25/2015 10:54','Golden Gate at Polk',59,'8/25/2015 11:05','Howard at 2nd',63,493,'Subscriber',94102); +INSERT INTO "trip" VALUES(904258,199,'8/25/2015 10:55','Civic Center BART (7th at Market)',72,'8/25/2015 10:58','5th at Howard',57,415,'Subscriber',94118); +INSERT INTO "trip" VALUES(904259,585,'8/25/2015 10:56','2nd at Folsom',62,'8/25/2015 11:05','Commercial at Montgomery',45,270,'Subscriber',94105); +INSERT INTO "trip" VALUES(904260,391,'8/25/2015 10:59','San Francisco Caltrain (Townsend at 4th)',70,'8/25/2015 11:06','Yerba Buena Center of the Arts (3rd @ Howard)',68,522,'Subscriber',94306); +INSERT INTO "trip" VALUES(904262,568,'8/25/2015 11:00','San Francisco Caltrain (Townsend at 4th)',70,'8/25/2015 11:09','Powell Street BART',39,356,'Subscriber',95060); +INSERT INTO "trip" VALUES(904263,194,'8/25/2015 11:00','Market at Sansome',77,'8/25/2015 11:03','Howard at 2nd',63,529,'Subscriber',94109); +INSERT INTO "trip" VALUES(904264,152,'8/25/2015 11:01','Steuart at Market',74,'8/25/2015 11:04','Embarcadero at Folsom',51,420,'Subscriber',94804); +INSERT INTO "trip" VALUES(904266,996,'8/25/2015 11:04','Civic Center BART (7th at Market)',72,'8/25/2015 11:20','Embarcadero at Sansome',60,449,'Subscriber',94102); +INSERT INTO "trip" VALUES(904268,419,'8/25/2015 11:05','San Jose Diridon Caltrain Station',2,'8/25/2015 11:12','MLK Library',11,129,'Subscriber',94118); +INSERT INTO "trip" VALUES(904271,551,'8/25/2015 11:08','Embarcadero at Sansome',60,'8/25/2015 11:18','Spear at Folsom',49,463,'Customer','nil'); +INSERT INTO "trip" VALUES(904272,530,'8/25/2015 11:09','Embarcadero at Sansome',60,'8/25/2015 11:17','Spear at Folsom',49,327,'Subscriber',94015); +INSERT INTO "trip" VALUES(904281,356,'8/25/2015 11:15','Market at Sansome',77,'8/25/2015 11:21','Embarcadero at Folsom',51,309,'Subscriber',94549); +INSERT INTO "trip" VALUES(904283,485,'8/25/2015 11:15','Townsend at 7th',65,'8/25/2015 11:23','2nd at Folsom',62,317,'Subscriber',94706); +INSERT INTO "trip" VALUES(904285,298,'8/25/2015 11:19','Castro Street and El Camino Real',32,'8/25/2015 11:24','Mountain View Caltrain Station',28,251,'Subscriber',95032); +INSERT INTO "trip" VALUES(904286,629,'8/25/2015 11:21','Powell Street BART',39,'8/25/2015 11:32','Broadway St at Battery St',82,492,'Subscriber',94107); +INSERT INTO "trip" VALUES(904287,283,'8/25/2015 11:21','Post at Kearny',47,'8/25/2015 11:26','Howard at 2nd',63,373,'Subscriber',94306); +INSERT INTO "trip" VALUES(904288,587,'8/25/2015 11:23','San Francisco Caltrain (Townsend at 4th)',70,'8/25/2015 11:33','Temporary Transbay Terminal (Howard at Beale)',55,508,'Subscriber',95014); +INSERT INTO "trip" VALUES(904289,662,'8/25/2015 11:23','Beale at Market',56,'8/25/2015 11:34','Powell at Post (Union Square)',71,436,'Subscriber',94553); +INSERT INTO "trip" VALUES(904290,310,'8/25/2015 11:24','San Francisco Caltrain 2 (330 Townsend)',69,'8/25/2015 11:29','5th at Howard',57,67,'Subscriber',94402); +INSERT INTO "trip" VALUES(904291,237,'8/25/2015 11:25','Townsend at 7th',65,'8/25/2015 11:29','San Francisco Caltrain 2 (330 Townsend)',69,351,'Subscriber',94107); +INSERT INTO "trip" VALUES(904294,366,'8/25/2015 11:26','Market at Sansome',77,'8/25/2015 11:32','2nd at South Park',64,389,'Subscriber',94544); +INSERT INTO "trip" VALUES(904295,755,'8/25/2015 11:26','Powell at Post (Union Square)',71,'8/25/2015 11:39','Townsend at 7th',65,471,'Subscriber',94103); +INSERT INTO "trip" VALUES(904296,503,'8/25/2015 11:26','Broadway St at Battery St',82,'8/25/2015 11:35','Powell Street BART',39,362,'Subscriber',94107); +INSERT INTO "trip" VALUES(904300,778,'8/25/2015 11:28','Spear at Folsom',49,'8/25/2015 11:41','Townsend at 7th',65,534,'Subscriber',94105); +INSERT INTO "trip" VALUES(904303,153,'8/25/2015 11:29','Clay at Battery',41,'8/25/2015 11:31','Commercial at Montgomery',45,278,'Subscriber',94111); +INSERT INTO "trip" VALUES(904304,613,'8/25/2015 11:31','Civic Center BART (7th at Market)',72,'8/25/2015 11:41','South Van Ness at Market',66,312,'Customer',94100); +INSERT INTO "trip" VALUES(904305,621,'8/25/2015 11:31','Civic Center BART (7th at Market)',72,'8/25/2015 11:41','South Van Ness at Market',66,602,'Customer',94100); +INSERT INTO "trip" VALUES(904306,243,'8/25/2015 11:33','Embarcadero at Bryant',54,'8/25/2015 11:37','Embarcadero at Folsom',51,538,'Subscriber',94105); +INSERT INTO "trip" VALUES(904307,969,'8/25/2015 11:32','2nd at Townsend',61,'8/25/2015 11:49','Harry Bridges Plaza (Ferry Building)',50,617,'Customer',94043); +INSERT INTO "trip" VALUES(904308,892,'8/25/2015 11:34','2nd at Townsend',61,'8/25/2015 11:48','Harry Bridges Plaza (Ferry Building)',50,259,'Customer',94043); +INSERT INTO "trip" VALUES(904309,460,'8/25/2015 11:35','Beale at Market',56,'8/25/2015 11:43','2nd at Townsend',61,408,'Subscriber',94107); +INSERT INTO "trip" VALUES(904310,23970,'8/25/2015 11:36','Embarcadero at Sansome',60,'8/25/2015 18:16','Mechanics Plaza (Market at Battery)',75,574,'Customer',49); +INSERT INTO "trip" VALUES(904311,293,'8/25/2015 11:38','2nd at Folsom',62,'8/25/2015 11:43','Spear at Folsom',49,397,'Subscriber',94105); +INSERT INTO "trip" VALUES(904312,317,'8/25/2015 11:39','Market at Sansome',77,'8/25/2015 11:45','Harry Bridges Plaza (Ferry Building)',50,470,'Subscriber',94104); +INSERT INTO "trip" VALUES(904313,613,'8/25/2015 11:40','Harry Bridges Plaza (Ferry Building)',50,'8/25/2015 11:50','Embarcadero at Sansome',60,636,'Subscriber',94122); +INSERT INTO "trip" VALUES(904314,23750,'8/25/2015 11:40','Embarcadero at Sansome',60,'8/25/2015 18:16','Mechanics Plaza (Market at Battery)',75,405,'Customer',49); +INSERT INTO "trip" VALUES(904315,4476,'8/25/2015 11:43','San Francisco City Hall',58,'8/25/2015 12:57','San Francisco City Hall',58,878,'Customer','nil'); +INSERT INTO "trip" VALUES(904316,443,'8/25/2015 11:44','Clay at Battery',41,'8/25/2015 11:51','Market at 4th',76,590,'Subscriber',94102); +INSERT INTO "trip" VALUES(904317,7199,'8/25/2015 11:46','Embarcadero at Sansome',60,'8/25/2015 13:46','Embarcadero at Sansome',60,404,'Customer',3100); +INSERT INTO "trip" VALUES(904319,182,'8/25/2015 11:46','Embarcadero at Folsom',51,'8/25/2015 11:49','Embarcadero at Bryant',54,538,'Subscriber',94105); +INSERT INTO "trip" VALUES(904320,152,'8/25/2015 11:46','Beale at Market',56,'8/25/2015 11:49','Steuart at Market',74,635,'Subscriber',94089); +INSERT INTO "trip" VALUES(904321,152,'8/25/2015 11:46','Beale at Market',56,'8/25/2015 11:49','Steuart at Market',74,455,'Subscriber',94085); +INSERT INTO "trip" VALUES(904322,337,'8/25/2015 11:47','San Francisco Caltrain 2 (330 Townsend)',69,'8/25/2015 11:53','5th at Howard',57,416,'Subscriber',94403); +INSERT INTO "trip" VALUES(904323,170,'8/25/2015 11:49','Commercial at Montgomery',45,'8/25/2015 11:52','Market at Sansome',77,334,'Subscriber',94122); +INSERT INTO "trip" VALUES(904324,319,'8/25/2015 11:51','Commercial at Montgomery',45,'8/25/2015 11:56','Yerba Buena Center of the Arts (3rd @ Howard)',68,379,'Subscriber',94107); +INSERT INTO "trip" VALUES(904325,97,'8/25/2015 11:51','Commercial at Montgomery',45,'8/25/2015 11:53','Clay at Battery',41,278,'Subscriber',94111); +INSERT INTO "trip" VALUES(904326,351,'8/25/2015 11:53','Embarcadero at Vallejo',48,'8/25/2015 11:59','Embarcadero at Bryant',54,325,'Subscriber',94105); +INSERT INTO "trip" VALUES(904327,108,'8/25/2015 11:53','Market at Sansome',77,'8/25/2015 11:54','Beale at Market',56,611,'Subscriber',94105); +INSERT INTO "trip" VALUES(904329,341,'8/25/2015 11:54','2nd at Townsend',61,'8/25/2015 12:00','2nd at Folsom',62,570,'Subscriber',94070); +INSERT INTO "trip" VALUES(904330,212,'8/25/2015 11:55','Market at Sansome',77,'8/25/2015 11:58','Commercial at Montgomery',45,451,'Subscriber',94122); +INSERT INTO "trip" VALUES(904331,204,'8/25/2015 11:57','Commercial at Montgomery',45,'8/25/2015 12:00','Davis at Jackson',42,552,'Subscriber',94111); +INSERT INTO "trip" VALUES(904333,286,'8/25/2015 12:00','Beale at Market',56,'8/25/2015 12:05','Davis at Jackson',42,158,'Subscriber',94122); +INSERT INTO "trip" VALUES(904334,1045,'8/25/2015 12:01','Broadway St at Battery St',82,'8/25/2015 12:19','Embarcadero at Folsom',51,563,'Subscriber',94105); +INSERT INTO "trip" VALUES(904336,272,'8/25/2015 12:05','Temporary Transbay Terminal (Howard at Beale)',55,'8/25/2015 12:09','Clay at Battery',41,428,'Subscriber',94403); +INSERT INTO "trip" VALUES(904337,204,'8/25/2015 12:05','Howard at 2nd',63,'8/25/2015 12:09','Market at Sansome',77,432,'Subscriber',94109); +INSERT INTO "trip" VALUES(904338,1205,'8/25/2015 12:05','5th at Howard',57,'8/25/2015 12:25','Powell at Post (Union Square)',71,238,'Customer',351); +INSERT INTO "trip" VALUES(904339,555,'8/25/2015 12:05','Broadway St at Battery St',82,'8/25/2015 12:15','2nd at South Park',64,556,'Subscriber',94107); +INSERT INTO "trip" VALUES(904340,1136,'8/25/2015 12:06','5th at Howard',57,'8/25/2015 12:25','Powell at Post (Union Square)',71,629,'Customer',351); +INSERT INTO "trip" VALUES(904342,767,'8/25/2015 12:07','San Francisco City Hall',58,'8/25/2015 12:20','San Francisco Caltrain 2 (330 Townsend)',69,96,'Subscriber',94107); +INSERT INTO "trip" VALUES(904344,244,'8/25/2015 12:10','Powell at Post (Union Square)',71,'8/25/2015 12:14','Powell Street BART',39,436,'Subscriber',94553); +INSERT INTO "trip" VALUES(904345,134,'8/25/2015 12:11','Broadway St at Battery St',82,'8/25/2015 12:13','Clay at Battery',41,492,'Subscriber',94610); +INSERT INTO "trip" VALUES(904347,771,'8/25/2015 12:12','Townsend at 7th',65,'8/25/2015 12:25','Embarcadero at Folsom',51,137,'Subscriber',94105); +INSERT INTO "trip" VALUES(904348,394,'8/25/2015 12:13','San Antonio Shopping Center',31,'8/25/2015 12:20','Rengstorff Avenue / California Street',33,239,'Subscriber',94070); +INSERT INTO "trip" VALUES(904349,551,'8/25/2015 12:14','Commercial at Montgomery',45,'8/25/2015 12:23','Yerba Buena Center of the Arts (3rd @ Howard)',68,270,'Subscriber',94105); +INSERT INTO "trip" VALUES(904350,257,'8/25/2015 12:14','Embarcadero at Bryant',54,'8/25/2015 12:19','Temporary Transbay Terminal (Howard at Beale)',55,325,'Subscriber',94010); +INSERT INTO "trip" VALUES(904352,633,'8/25/2015 12:15','Beale at Market',56,'8/25/2015 12:25','Golden Gate at Polk',59,212,'Subscriber',94109); +INSERT INTO "trip" VALUES(904353,593,'8/25/2015 12:16','Santa Clara County Civic Center',80,'8/25/2015 12:26','Ryland Park',84,679,'Subscriber',95112); +INSERT INTO "trip" VALUES(904354,337,'8/25/2015 12:17','Howard at 2nd',63,'8/25/2015 12:23','San Francisco Caltrain (Townsend at 4th)',70,651,'Subscriber',94115); +INSERT INTO "trip" VALUES(904355,668,'8/25/2015 12:17','San Francisco Caltrain (Townsend at 4th)',70,'8/25/2015 12:28','Spear at Folsom',49,502,'Customer',94116); +INSERT INTO "trip" VALUES(904356,294,'8/25/2015 12:18','Commercial at Montgomery',45,'8/25/2015 12:23','Powell Street BART',39,451,'Subscriber',94122); +INSERT INTO "trip" VALUES(904357,773,'8/25/2015 12:19','Spear at Folsom',49,'8/25/2015 12:32','Spear at Folsom',49,603,'Subscriber',94107); +INSERT INTO "trip" VALUES(904358,509,'8/25/2015 12:19','Steuart at Market',74,'8/25/2015 12:27','2nd at Townsend',61,455,'Subscriber',95401); +INSERT INTO "trip" VALUES(904359,7757,'8/25/2015 12:19','Palo Alto Caltrain Station',34,'8/25/2015 14:28','Palo Alto Caltrain Station',34,248,'Customer',48116); +INSERT INTO "trip" VALUES(904360,7647,'8/25/2015 12:20','Palo Alto Caltrain Station',34,'8/25/2015 14:27','Palo Alto Caltrain Station',34,257,'Customer',48116); +INSERT INTO "trip" VALUES(904361,216,'8/25/2015 12:21','2nd at Townsend',61,'8/25/2015 12:25','San Francisco Caltrain 2 (330 Townsend)',69,677,'Subscriber',94549); +INSERT INTO "trip" VALUES(904362,558,'8/25/2015 12:23','2nd at Folsom',62,'8/25/2015 12:33','Townsend at 7th',65,317,'Subscriber',94706); +INSERT INTO "trip" VALUES(904363,278,'8/25/2015 12:24','Howard at 2nd',63,'8/25/2015 12:28','2nd at Townsend',61,527,'Subscriber',94115); +INSERT INTO "trip" VALUES(904364,912,'8/25/2015 12:26','Beale at Market',56,'8/25/2015 12:42','Embarcadero at Sansome',60,611,'Subscriber',94523); +INSERT INTO "trip" VALUES(904366,1309,'8/25/2015 12:30','Embarcadero at Sansome',60,'8/25/2015 12:51','Golden Gate at Polk',59,592,'Subscriber',94133); +INSERT INTO "trip" VALUES(904367,161,'8/25/2015 12:31','Davis at Jackson',42,'8/25/2015 12:33','Steuart at Market',74,353,'Subscriber',94107); +INSERT INTO "trip" VALUES(904368,802,'8/25/2015 12:32','Golden Gate at Polk',59,'8/25/2015 12:45','Temporary Transbay Terminal (Howard at Beale)',55,437,'Subscriber',94109); +INSERT INTO "trip" VALUES(904369,391,'8/25/2015 12:32','Embarcadero at Folsom',51,'8/25/2015 12:39','Market at Sansome',77,563,'Subscriber',94549); +INSERT INTO "trip" VALUES(904370,214,'8/25/2015 12:32','San Francisco Caltrain 2 (330 Townsend)',69,'8/25/2015 12:36','Townsend at 7th',65,288,'Subscriber',94107); +INSERT INTO "trip" VALUES(904371,328,'8/25/2015 12:33','Rengstorff Avenue / California Street',33,'8/25/2015 12:38','San Antonio Shopping Center',31,694,'Subscriber',94070); +INSERT INTO "trip" VALUES(904372,648,'8/25/2015 12:30','2nd at South Park',64,'8/25/2015 12:40','Beale at Market',56,66,'Subscriber',95476); +INSERT INTO "trip" VALUES(904373,687,'8/25/2015 12:30','2nd at South Park',64,'8/25/2015 12:41','Beale at Market',56,389,'Subscriber',94945); +INSERT INTO "trip" VALUES(904374,385,'8/25/2015 12:34','Powell Street BART',39,'8/25/2015 12:40','San Francisco Caltrain 2 (330 Townsend)',69,451,'Subscriber',94107); +INSERT INTO "trip" VALUES(904375,227,'8/25/2015 12:34','Steuart at Market',74,'8/25/2015 12:38','Embarcadero at Vallejo',48,353,'Subscriber',94105); +INSERT INTO "trip" VALUES(904376,278,'8/25/2015 12:35','Market at Sansome',77,'8/25/2015 12:39','Davis at Jackson',42,432,'Subscriber',94306); +INSERT INTO "trip" VALUES(904378,510,'8/25/2015 12:35','Temporary Transbay Terminal (Howard at Beale)',55,'8/25/2015 12:44','Grant Avenue at Columbus Avenue',73,508,'Subscriber',94133); +INSERT INTO "trip" VALUES(904379,378,'8/25/2015 12:36','2nd at Folsom',62,'8/25/2015 12:42','Harry Bridges Plaza (Ferry Building)',50,687,'Customer',94901); +INSERT INTO "trip" VALUES(904380,468,'8/25/2015 12:36','Embarcadero at Bryant',54,'8/25/2015 12:44','Embarcadero at Vallejo',48,538,'Subscriber',94105); +INSERT INTO "trip" VALUES(904381,858,'8/25/2015 12:33','Harry Bridges Plaza (Ferry Building)',50,'8/25/2015 12:47','San Francisco City Hall',58,259,'Subscriber',94598); +INSERT INTO "trip" VALUES(904383,198,'8/25/2015 12:38','San Francisco Caltrain 2 (330 Townsend)',69,'8/25/2015 12:41','2nd at Townsend',61,269,'Subscriber',94549); +INSERT INTO "trip" VALUES(904385,545,'8/25/2015 12:40','Market at Sansome',77,'8/25/2015 12:49','Embarcadero at Sansome',60,542,'Subscriber',94111); +INSERT INTO "trip" VALUES(904386,369,'8/25/2015 12:42','Spear at Folsom',49,'8/25/2015 12:48','2nd at Townsend',61,477,'Subscriber',94563); +INSERT INTO "trip" VALUES(904387,644,'8/25/2015 12:42','2nd at Townsend',61,'8/25/2015 12:53','Steuart at Market',74,269,'Subscriber',94107); +INSERT INTO "trip" VALUES(904388,984,'8/25/2015 12:42','Powell Street BART',39,'8/25/2015 12:59','Beale at Market',56,362,'Subscriber',94553); +INSERT INTO "trip" VALUES(904389,390,'8/25/2015 12:42','Davis at Jackson',42,'8/25/2015 12:49','Temporary Transbay Terminal (Howard at Beale)',55,158,'Subscriber',94122); +INSERT INTO "trip" VALUES(904390,215,'8/25/2015 12:43','Clay at Battery',41,'8/25/2015 12:46','Broadway St at Battery St',82,282,'Subscriber',94610); +INSERT INTO "trip" VALUES(904391,540,'8/25/2015 12:43','Japantown',9,'8/25/2015 12:52','San Pedro Square',6,163,'Subscriber',95112); +INSERT INTO "trip" VALUES(904392,857,'8/25/2015 12:44','Yerba Buena Center of the Arts (3rd @ Howard)',68,'8/25/2015 12:58','Harry Bridges Plaza (Ferry Building)',50,598,'Subscriber',94804); +INSERT INTO "trip" VALUES(904393,211,'8/25/2015 12:44','Civic Center BART (7th at Market)',72,'8/25/2015 12:47','Powell Street BART',39,375,'Subscriber',94501); +INSERT INTO "trip" VALUES(904395,460,'8/25/2015 12:47','San Francisco Caltrain 2 (330 Townsend)',69,'8/25/2015 12:55','Townsend at 7th',65,451,'Subscriber',94118); +INSERT INTO "trip" VALUES(904396,448,'8/25/2015 12:49','Embarcadero at Vallejo',48,'8/25/2015 12:56','Market at Sansome',77,400,'Subscriber',94002); +INSERT INTO "trip" VALUES(904398,406,'8/25/2015 12:50','Market at 4th',76,'8/25/2015 12:57','Market at 10th',67,340,'Subscriber',94039); +INSERT INTO "trip" VALUES(904399,310,'8/25/2015 12:54','Commercial at Montgomery',45,'8/25/2015 12:59','Mechanics Plaza (Market at Battery)',75,604,'Subscriber',94702); +INSERT INTO "trip" VALUES(904400,726,'8/25/2015 12:54','South Van Ness at Market',66,'8/25/2015 13:06','Beale at Market',56,602,'Subscriber',94103); +INSERT INTO "trip" VALUES(904401,934,'8/25/2015 12:55','Beale at Market',56,'8/25/2015 13:11','Embarcadero at Bryant',54,66,'Subscriber',94105); +INSERT INTO "trip" VALUES(904405,255,'8/25/2015 12:59','Commercial at Montgomery',45,'8/25/2015 13:03','Market at Sansome',77,524,'Subscriber',94105); +INSERT INTO "trip" VALUES(904406,586,'8/25/2015 12:59','Steuart at Market',74,'8/25/2015 13:09','Yerba Buena Center of the Arts (3rd @ Howard)',68,614,'Subscriber',94112); +INSERT INTO "trip" VALUES(904407,364,'8/25/2015 12:59','2nd at Folsom',62,'8/25/2015 13:05','Commercial at Montgomery',45,399,'Subscriber',94107); +INSERT INTO "trip" VALUES(904408,1539,'8/25/2015 13:01','Harry Bridges Plaza (Ferry Building)',50,'8/25/2015 13:27','Embarcadero at Vallejo',48,394,'Customer',1); +INSERT INTO "trip" VALUES(904409,1532,'8/25/2015 13:01','Harry Bridges Plaza (Ferry Building)',50,'8/25/2015 13:27','Embarcadero at Vallejo',48,624,'Customer',1); +INSERT INTO "trip" VALUES(904410,268,'8/25/2015 13:03','Embarcadero at Vallejo',48,'8/25/2015 13:08','Steuart at Market',74,568,'Subscriber',94708); +INSERT INTO "trip" VALUES(904411,260,'8/25/2015 13:03','Powell Street BART',39,'8/25/2015 13:08','Market at Sansome',77,331,'Subscriber',94122); +INSERT INTO "trip" VALUES(904413,419,'8/25/2015 13:04','Howard at 2nd',63,'8/25/2015 13:11','Beale at Market',56,600,'Subscriber',94122); +INSERT INTO "trip" VALUES(904414,1104,'8/25/2015 13:04','Harry Bridges Plaza (Ferry Building)',50,'8/25/2015 13:22','San Francisco Caltrain (Townsend at 4th)',70,209,'Subscriber',94107); +INSERT INTO "trip" VALUES(904415,2126,'8/25/2015 13:04','Clay at Battery',41,'8/25/2015 13:39','Commercial at Montgomery',45,492,'Subscriber',94305); +INSERT INTO "trip" VALUES(904418,615,'8/25/2015 13:06','Post at Kearny',47,'8/25/2015 13:16','Embarcadero at Sansome',60,287,'Subscriber',94111); +INSERT INTO "trip" VALUES(904419,526,'8/25/2015 13:07','5th at Howard',57,'8/25/2015 13:16','Washington at Kearny',46,609,'Subscriber',94133); +INSERT INTO "trip" VALUES(904420,377,'8/25/2015 13:11','Paseo de San Antonio',7,'8/25/2015 13:17','San Pedro Square',6,55,'Subscriber',95113); +INSERT INTO "trip" VALUES(904421,579,'8/25/2015 13:14','Golden Gate at Polk',59,'8/25/2015 13:23','Beale at Market',56,212,'Subscriber',94109); +INSERT INTO "trip" VALUES(904422,327,'8/25/2015 13:14','Steuart at Market',74,'8/25/2015 13:19','Embarcadero at Vallejo',48,291,'Subscriber',94708); +INSERT INTO "trip" VALUES(904423,173,'8/25/2015 13:15','Clay at Battery',41,'8/25/2015 13:18','Beale at Market',56,278,'Subscriber',94523); +INSERT INTO "trip" VALUES(904424,661,'8/25/2015 13:16','San Francisco Caltrain 2 (330 Townsend)',69,'8/25/2015 13:27','Beale at Market',56,96,'Subscriber',94107); +INSERT INTO "trip" VALUES(904425,503,'8/25/2015 13:17','Steuart at Market',74,'8/25/2015 13:26','Post at Kearny',47,443,'Subscriber',94610); +INSERT INTO "trip" VALUES(904426,211,'8/25/2015 13:18','2nd at South Park',64,'8/25/2015 13:22','Howard at 2nd',63,553,'Subscriber',94118); +INSERT INTO "trip" VALUES(904427,880,'8/25/2015 13:19','San Francisco Caltrain (Townsend at 4th)',70,'8/25/2015 13:33','5th at Howard',57,651,'Customer',11222); +INSERT INTO "trip" VALUES(904428,492,'8/25/2015 13:21','Ryland Park',84,'8/25/2015 13:30','Santa Clara County Civic Center',80,679,'Subscriber',95112); +INSERT INTO "trip" VALUES(904430,695,'8/25/2015 13:23','Embarcadero at Sansome',60,'8/25/2015 13:35','Market at 4th',76,189,'Subscriber',94133); +INSERT INTO "trip" VALUES(904431,355,'8/25/2015 13:25','Davis at Jackson',42,'8/25/2015 13:31','Market at Sansome',77,432,'Subscriber',94306); +INSERT INTO "trip" VALUES(904433,599,'8/25/2015 13:26','Spear at Folsom',49,'8/25/2015 13:36','San Francisco Caltrain (Townsend at 4th)',70,450,'Customer',94116); +INSERT INTO "trip" VALUES(904434,1173,'8/25/2015 13:26','Townsend at 7th',65,'8/25/2015 13:46','Washington at Kearny',46,534,'Subscriber',94107); +INSERT INTO "trip" VALUES(904436,111,'8/25/2015 13:27','Howard at 2nd',63,'8/25/2015 13:28','2nd at Folsom',62,553,'Subscriber',94114); +INSERT INTO "trip" VALUES(904437,1448,'8/25/2015 13:28','Embarcadero at Vallejo',48,'8/25/2015 13:52','Embarcadero at Sansome',60,624,'Customer',1); +INSERT INTO "trip" VALUES(904441,811,'8/25/2015 13:28','Powell at Post (Union Square)',71,'8/25/2015 13:41','Spear at Folsom',49,629,'Subscriber',94102); +INSERT INTO "trip" VALUES(904442,1393,'8/25/2015 13:29','Embarcadero at Vallejo',48,'8/25/2015 13:52','Embarcadero at Sansome',60,394,'Customer',1); +INSERT INTO "trip" VALUES(904444,532,'8/25/2015 13:30','San Francisco Caltrain (Townsend at 4th)',70,'8/25/2015 13:39','Howard at 2nd',63,677,'Subscriber',94115); +INSERT INTO "trip" VALUES(904445,1501,'8/25/2015 13:30','Civic Center BART (7th at Market)',72,'8/25/2015 13:55','Grant Avenue at Columbus Avenue',73,495,'Customer',94100); +INSERT INTO "trip" VALUES(904446,363,'8/25/2015 13:30','Civic Center BART (7th at Market)',72,'8/25/2015 13:36','Market at 4th',76,625,'Customer',46013); +INSERT INTO "trip" VALUES(904447,354,'8/25/2015 13:30','Civic Center BART (7th at Market)',72,'8/25/2015 13:36','Market at 4th',76,411,'Customer',46013); +INSERT INTO "trip" VALUES(904448,1393,'8/25/2015 13:32','Civic Center BART (7th at Market)',72,'8/25/2015 13:55','Grant Avenue at Columbus Avenue',73,350,'Customer',94100); +INSERT INTO "trip" VALUES(904449,249,'8/25/2015 13:34','Clay at Battery',41,'8/25/2015 13:38','Temporary Transbay Terminal (Howard at Beale)',55,428,'Subscriber',94403); +INSERT INTO "trip" VALUES(904450,879,'8/25/2015 13:38','Yerba Buena Center of the Arts (3rd @ Howard)',68,'8/25/2015 13:53','Townsend at 7th',65,270,'Subscriber',94103); +INSERT INTO "trip" VALUES(904452,1108,'8/25/2015 13:44','Powell at Post (Union Square)',71,'8/25/2015 14:02','Embarcadero at Sansome',60,606,'Subscriber',94708); +INSERT INTO "trip" VALUES(904453,646,'8/25/2015 13:45','Civic Center BART (7th at Market)',72,'8/25/2015 13:56','Steuart at Market',74,340,'Customer','nil'); +INSERT INTO "trip" VALUES(904454,478,'8/25/2015 13:46','Powell Street BART',39,'8/25/2015 13:54','South Van Ness at Market',66,69,'Subscriber',94103); +INSERT INTO "trip" VALUES(904455,610,'8/25/2015 13:48','2nd at South Park',64,'8/25/2015 13:58','Embarcadero at Folsom',51,517,'Subscriber',94115); +INSERT INTO "trip" VALUES(904456,273,'8/25/2015 13:49','Steuart at Market',74,'8/25/2015 13:53','Mechanics Plaza (Market at Battery)',75,33,'Subscriber',94121); +INSERT INTO "trip" VALUES(904457,283,'8/25/2015 13:50','Embarcadero at Sansome',60,'8/25/2015 13:55','Davis at Jackson',42,448,'Subscriber',94111); +INSERT INTO "trip" VALUES(904458,132,'8/25/2015 13:53','2nd at Folsom',62,'8/25/2015 13:55','Howard at 2nd',63,390,'Subscriber',94114); +INSERT INTO "trip" VALUES(904459,233,'8/25/2015 13:54','Civic Center BART (7th at Market)',72,'8/25/2015 13:58','5th at Howard',57,497,'Subscriber',95035); +INSERT INTO "trip" VALUES(904461,452,'8/25/2015 13:55','Market at Sansome',77,'8/25/2015 14:02','Embarcadero at Vallejo',48,400,'Subscriber',94002); +INSERT INTO "trip" VALUES(904464,466,'8/25/2015 14:00','Embarcadero at Sansome',60,'8/25/2015 14:08','Mechanics Plaza (Market at Battery)',75,542,'Subscriber',94111); +INSERT INTO "trip" VALUES(904465,219,'8/25/2015 14:02','San Pedro Square',6,'8/25/2015 14:06','San Jose City Hall',10,646,'Subscriber',95113); +INSERT INTO "trip" VALUES(904466,403,'8/25/2015 14:04','Market at Sansome',77,'8/25/2015 14:10','Steuart at Market',74,524,'Subscriber',94121); +INSERT INTO "trip" VALUES(904467,293,'8/25/2015 14:08','Embarcadero at Vallejo',48,'8/25/2015 14:13','Steuart at Market',74,505,'Subscriber',94103); +INSERT INTO "trip" VALUES(904468,485,'8/25/2015 14:08','Embarcadero at Sansome',60,'8/25/2015 14:16','Grant Avenue at Columbus Avenue',73,449,'Subscriber',94708); +INSERT INTO "trip" VALUES(904469,500,'8/25/2015 14:12','Washington at Kearny',46,'8/25/2015 14:20','Beale at Market',56,609,'Subscriber',94133); +INSERT INTO "trip" VALUES(904470,509,'8/25/2015 14:19','Beale at Market',56,'8/25/2015 14:28','Embarcadero at Sansome',60,364,'Subscriber',94111); +INSERT INTO "trip" VALUES(904471,678,'8/25/2015 14:22','Market at 4th',76,'8/25/2015 14:33','Commercial at Montgomery',45,411,'Customer',46013); +INSERT INTO "trip" VALUES(904472,675,'8/25/2015 14:22','Market at 4th',76,'8/25/2015 14:34','Commercial at Montgomery',45,519,'Customer',46013); +INSERT INTO "trip" VALUES(904473,679,'8/25/2015 14:23','Market at 4th',76,'8/25/2015 14:35','Harry Bridges Plaza (Ferry Building)',50,625,'Customer',351); +INSERT INTO "trip" VALUES(904474,657,'8/25/2015 14:23','Market at 4th',76,'8/25/2015 14:34','Harry Bridges Plaza (Ferry Building)',50,484,'Customer',351); +INSERT INTO "trip" VALUES(904475,432,'8/25/2015 14:24','Embarcadero at Bryant',54,'8/25/2015 14:32','Mechanics Plaza (Market at Battery)',75,66,'Subscriber',94105); +INSERT INTO "trip" VALUES(904476,747,'8/25/2015 14:28','Embarcadero at Bryant',54,'8/25/2015 14:40','Embarcadero at Sansome',60,537,'Subscriber',94105); +INSERT INTO "trip" VALUES(904477,838,'8/25/2015 14:31','San Francisco Caltrain 2 (330 Townsend)',69,'8/25/2015 14:45','Golden Gate at Polk',59,351,'Subscriber',94107); +INSERT INTO "trip" VALUES(904478,450,'8/25/2015 14:31','Post at Kearny',47,'8/25/2015 14:38','5th at Howard',57,447,'Subscriber',98103); +INSERT INTO "trip" VALUES(904479,443,'8/25/2015 14:31','Post at Kearny',47,'8/25/2015 14:38','5th at Howard',57,475,'Subscriber',98034); +INSERT INTO "trip" VALUES(904480,368,'8/25/2015 14:31','Market at 4th',76,'8/25/2015 14:37','San Francisco Caltrain (Townsend at 4th)',70,189,'Subscriber',94501); +INSERT INTO "trip" VALUES(904481,182,'8/25/2015 14:32','Market at Sansome',77,'8/25/2015 14:35','Beale at Market',56,331,'Subscriber',94306); +INSERT INTO "trip" VALUES(904482,396,'8/25/2015 14:33','Beale at Market',56,'8/25/2015 14:39','Embarcadero at Sansome',60,602,'Customer','nil'); +INSERT INTO "trip" VALUES(904483,412,'8/25/2015 14:37','Davis at Jackson',42,'8/25/2015 14:44','Embarcadero at Sansome',60,520,'Subscriber',94111); +INSERT INTO "trip" VALUES(904484,229,'8/25/2015 14:38','San Francisco Caltrain 2 (330 Townsend)',69,'8/25/2015 14:42','Townsend at 7th',65,618,'Subscriber',94044); +INSERT INTO "trip" VALUES(904485,602,'8/25/2015 14:41','Temporary Transbay Terminal (Howard at Beale)',55,'8/25/2015 14:51','San Francisco Caltrain 2 (330 Townsend)',69,428,'Subscriber',94158); +INSERT INTO "trip" VALUES(904486,310,'8/25/2015 14:44','San Francisco City Hall',58,'8/25/2015 14:49','Powell Street BART',39,500,'Subscriber',94707); +INSERT INTO "trip" VALUES(904487,689,'8/25/2015 14:46','5th at Howard',57,'8/25/2015 14:57','2nd at Townsend',61,497,'Subscriber',94112); +INSERT INTO "trip" VALUES(904488,728,'8/25/2015 14:46','San Francisco Caltrain (Townsend at 4th)',70,'8/25/2015 14:58','Davis at Jackson',42,209,'Subscriber',95035); +INSERT INTO "trip" VALUES(904489,1162,'8/25/2015 14:47','Harry Bridges Plaza (Ferry Building)',50,'8/25/2015 15:06','Embarcadero at Sansome',60,318,'Subscriber',95014); +INSERT INTO "trip" VALUES(904490,836,'8/25/2015 14:47','Beale at Market',56,'8/25/2015 15:01','San Francisco Caltrain 2 (330 Townsend)',69,609,'Subscriber',94107); +INSERT INTO "trip" VALUES(904491,479,'8/25/2015 14:49','South Van Ness at Market',66,'8/25/2015 14:57','Market at 4th',76,312,'Subscriber',94618); +INSERT INTO "trip" VALUES(904492,518,'8/25/2015 14:49','Harry Bridges Plaza (Ferry Building)',50,'8/25/2015 14:58','Yerba Buena Center of the Arts (3rd @ Howard)',68,546,'Subscriber',94804); +INSERT INTO "trip" VALUES(904493,195,'8/25/2015 14:52','Civic Center BART (7th at Market)',72,'8/25/2015 14:55','Market at 4th',76,111,'Subscriber',94103); +INSERT INTO "trip" VALUES(904494,723,'8/25/2015 14:54','Market at 10th',67,'8/25/2015 15:06','Steuart at Market',74,385,'Subscriber',94105); +INSERT INTO "trip" VALUES(904496,959,'8/25/2015 14:59','Post at Kearny',47,'8/25/2015 15:15','Embarcadero at Bryant',54,419,'Customer',60137); +INSERT INTO "trip" VALUES(904497,936,'8/25/2015 14:59','Post at Kearny',47,'8/25/2015 15:14','Embarcadero at Bryant',54,526,'Customer',60137); +INSERT INTO "trip" VALUES(904498,109,'8/25/2015 15:01','Powell at Post (Union Square)',71,'8/25/2015 15:03','Post at Kearny',47,487,'Subscriber',94117); +INSERT INTO "trip" VALUES(904499,582,'8/25/2015 15:02','Townsend at 7th',65,'8/25/2015 15:12','Market at 10th',67,471,'Subscriber',94102); +INSERT INTO "trip" VALUES(904500,477,'8/25/2015 15:02','South Van Ness at Market',66,'8/25/2015 15:10','Townsend at 7th',65,69,'Subscriber',94107); +INSERT INTO "trip" VALUES(904502,315,'8/25/2015 15:03','Market at 4th',76,'8/25/2015 15:09','Commercial at Montgomery',45,111,'Subscriber',94107); +INSERT INTO "trip" VALUES(904504,408,'8/25/2015 15:05','2nd at Townsend',61,'8/25/2015 15:11','Howard at 2nd',63,465,'Subscriber',94965); +INSERT INTO "trip" VALUES(904505,613,'8/25/2015 15:07','Steuart at Market',74,'8/25/2015 15:18','Grant Avenue at Columbus Avenue',73,385,'Subscriber',94121); +INSERT INTO "trip" VALUES(904506,829,'8/25/2015 15:09','Clay at Battery',41,'8/25/2015 15:23','San Francisco Caltrain (Townsend at 4th)',70,359,'Subscriber',94401); +INSERT INTO "trip" VALUES(904507,2090,'8/25/2015 15:10','Grant Avenue at Columbus Avenue',73,'8/25/2015 15:45','San Francisco Caltrain 2 (330 Townsend)',69,350,'Customer',20002); +INSERT INTO "trip" VALUES(904508,2082,'8/25/2015 15:10','Grant Avenue at Columbus Avenue',73,'8/25/2015 15:45','San Francisco Caltrain (Townsend at 4th)',70,29,'Customer',20002); +INSERT INTO "trip" VALUES(904509,245,'8/25/2015 15:11','Harry Bridges Plaza (Ferry Building)',50,'8/25/2015 15:15','Mechanics Plaza (Market at Battery)',75,625,'Subscriber',94105); +INSERT INTO "trip" VALUES(904510,335,'8/25/2015 15:12','Embarcadero at Sansome',60,'8/25/2015 15:18','Harry Bridges Plaza (Ferry Building)',50,558,'Subscriber',94947); +INSERT INTO "trip" VALUES(904511,461,'8/25/2015 15:13','South Van Ness at Market',66,'8/25/2015 15:21','Powell Street BART',39,187,'Subscriber',94103); +INSERT INTO "trip" VALUES(904512,459,'8/25/2015 15:15','Embarcadero at Bryant',54,'8/25/2015 15:23','2nd at Townsend',61,419,'Customer',60137); +INSERT INTO "trip" VALUES(904513,483,'8/25/2015 15:15','Embarcadero at Bryant',54,'8/25/2015 15:23','2nd at Townsend',61,509,'Customer',60137); +INSERT INTO "trip" VALUES(904514,696,'8/25/2015 15:16','Broadway St at Battery St',82,'8/25/2015 15:28','San Francisco Caltrain (Townsend at 4th)',70,214,'Subscriber',94132); +INSERT INTO "trip" VALUES(904515,524,'8/25/2015 15:17','2nd at Townsend',61,'8/25/2015 15:25','Market at Sansome',77,527,'Subscriber',94611); +INSERT INTO "trip" VALUES(904516,486,'8/25/2015 15:18','San Jose City Hall',10,'8/25/2015 15:26','San Pedro Square',6,646,'Subscriber',95113); +INSERT INTO "trip" VALUES(904517,780,'8/25/2015 15:18','Townsend at 7th',65,'8/25/2015 15:31','Embarcadero at Bryant',54,402,'Subscriber',94402); +INSERT INTO "trip" VALUES(904518,534,'8/25/2015 15:19','Temporary Transbay Terminal (Howard at Beale)',55,'8/25/2015 15:27','San Francisco Caltrain 2 (330 Townsend)',69,325,'Subscriber',94025); +INSERT INTO "trip" VALUES(904519,211,'8/25/2015 15:22','Market at Sansome',77,'8/25/2015 15:26','Harry Bridges Plaza (Ferry Building)',50,418,'Subscriber',94930); +INSERT INTO "trip" VALUES(904522,594,'8/25/2015 15:22','2nd at South Park',64,'8/25/2015 15:32','Powell Street BART',39,556,'Subscriber',94107); +INSERT INTO "trip" VALUES(904524,669,'8/25/2015 15:26','Embarcadero at Bryant',54,'8/25/2015 15:37','Embarcadero at Sansome',60,621,'Subscriber',94105); +INSERT INTO "trip" VALUES(904527,905,'8/25/2015 15:32','Embarcadero at Folsom',51,'8/25/2015 15:47','San Francisco Caltrain (Townsend at 4th)',70,271,'Subscriber',95148); +INSERT INTO "trip" VALUES(904529,628,'8/25/2015 15:34','Embarcadero at Sansome',60,'8/25/2015 15:44','Embarcadero at Bryant',54,537,'Subscriber',94105); +INSERT INTO "trip" VALUES(904530,1081,'8/25/2015 15:34','Beale at Market',56,'8/25/2015 15:52','San Francisco Caltrain (Townsend at 4th)',70,478,'Subscriber',95133); +INSERT INTO "trip" VALUES(904531,530,'8/25/2015 15:36','Commercial at Montgomery',45,'8/25/2015 15:45','Powell at Post (Union Square)',71,411,'Subscriber',94118); +INSERT INTO "trip" VALUES(904532,618,'8/25/2015 15:38','Beale at Market',56,'8/25/2015 15:49','2nd at Townsend',61,362,'Subscriber',94107); +INSERT INTO "trip" VALUES(904533,297,'8/25/2015 15:39','Powell at Post (Union Square)',71,'8/25/2015 15:44','Market at Sansome',77,238,'Subscriber',94708); +INSERT INTO "trip" VALUES(904534,230,'8/25/2015 15:41','Beale at Market',56,'8/25/2015 15:45','Market at Sansome',77,278,'Subscriber',94306); +INSERT INTO "trip" VALUES(904535,709,'8/25/2015 15:42','Townsend at 7th',65,'8/25/2015 15:53','Powell Street BART',39,317,'Subscriber',94133); +INSERT INTO "trip" VALUES(904536,829,'8/25/2015 15:42','Mechanics Plaza (Market at Battery)',75,'8/25/2015 15:56','San Francisco Caltrain (Townsend at 4th)',70,575,'Subscriber',94040); +INSERT INTO "trip" VALUES(904537,419,'8/25/2015 15:42','Temporary Transbay Terminal (Howard at Beale)',55,'8/25/2015 15:49','San Francisco Caltrain (Townsend at 4th)',70,407,'Subscriber',95032); +INSERT INTO "trip" VALUES(904538,711,'8/25/2015 15:44','Temporary Transbay Terminal (Howard at Beale)',55,'8/25/2015 15:56','San Francisco Caltrain (Townsend at 4th)',70,427,'Subscriber',94030); +INSERT INTO "trip" VALUES(904539,663,'8/25/2015 15:45','Embarcadero at Folsom',51,'8/25/2015 15:56','San Francisco Caltrain (Townsend at 4th)',70,309,'Subscriber',94306); +INSERT INTO "trip" VALUES(904544,1012,'8/25/2015 15:47','Grant Avenue at Columbus Avenue',73,'8/25/2015 16:04','Powell at Post (Union Square)',71,385,'Customer','nil'); +INSERT INTO "trip" VALUES(904545,1000,'8/25/2015 15:47','Grant Avenue at Columbus Avenue',73,'8/25/2015 16:04','Powell at Post (Union Square)',71,338,'Customer','nil'); +INSERT INTO "trip" VALUES(904546,644,'8/25/2015 15:48','Embarcadero at Bryant',54,'8/25/2015 15:58','San Francisco Caltrain (Townsend at 4th)',70,537,'Subscriber',95124); +INSERT INTO "trip" VALUES(904549,526,'8/25/2015 15:48','2nd at Townsend',61,'8/25/2015 15:57','Harry Bridges Plaza (Ferry Building)',50,455,'Subscriber',94612); +INSERT INTO "trip" VALUES(904550,287,'8/25/2015 15:48','Castro Street and El Camino Real',32,'8/25/2015 15:53','Mountain View Caltrain Station',28,197,'Subscriber',94158); +INSERT INTO "trip" VALUES(904551,569,'8/25/2015 15:48','Beale at Market',56,'8/25/2015 15:58','San Francisco Caltrain 2 (330 Townsend)',69,389,'Subscriber',95136); +INSERT INTO "trip" VALUES(904552,721,'8/25/2015 15:49','Embarcadero at Folsom',51,'8/25/2015 16:01','San Francisco Caltrain (Townsend at 4th)',70,589,'Subscriber',95014); +INSERT INTO "trip" VALUES(904553,727,'8/25/2015 15:49','Steuart at Market',74,'8/25/2015 16:01','San Francisco Caltrain (Townsend at 4th)',70,549,'Subscriber',95111); +INSERT INTO "trip" VALUES(904554,584,'8/25/2015 15:51','San Francisco Caltrain 2 (330 Townsend)',69,'8/25/2015 16:01','Yerba Buena Center of the Arts (3rd @ Howard)',68,314,'Customer',20002); +INSERT INTO "trip" VALUES(904555,622,'8/25/2015 15:51','San Francisco Caltrain 2 (330 Townsend)',69,'8/25/2015 16:02','Yerba Buena Center of the Arts (3rd @ Howard)',68,609,'Customer',20002); +INSERT INTO "trip" VALUES(904556,822,'8/25/2015 15:52','Broadway St at Battery St',82,'8/25/2015 16:06','San Francisco Caltrain (Townsend at 4th)',70,285,'Subscriber',95054); +INSERT INTO "trip" VALUES(904557,1013,'8/25/2015 15:53','Steuart at Market',74,'8/25/2015 16:10','Embarcadero at Sansome',60,386,'Customer',11222); +INSERT INTO "trip" VALUES(904558,654,'8/25/2015 15:54','2nd at Townsend',61,'8/25/2015 16:04','Powell Street BART',39,497,'Customer',80129); +INSERT INTO "trip" VALUES(904559,258,'8/25/2015 15:55','2nd at Folsom',62,'8/25/2015 15:59','2nd at Townsend',61,570,'Subscriber',94107); +INSERT INTO "trip" VALUES(904560,327,'8/25/2015 15:55','Harry Bridges Plaza (Ferry Building)',50,'8/25/2015 16:00','Embarcadero at Sansome',60,418,'Subscriber',94131); +INSERT INTO "trip" VALUES(904561,492,'8/25/2015 15:56','2nd at Folsom',62,'8/25/2015 16:04','Post at Kearny',47,553,'Customer',94901); +INSERT INTO "trip" VALUES(904563,182,'8/25/2015 15:56','San Antonio Shopping Center',31,'8/25/2015 15:59','San Antonio Caltrain Station',29,27,'Subscriber',94103); +INSERT INTO "trip" VALUES(904564,907,'8/25/2015 15:57','Townsend at 7th',65,'8/25/2015 16:12','Harry Bridges Plaza (Ferry Building)',50,69,'Subscriber',94590); +INSERT INTO "trip" VALUES(904565,413,'8/25/2015 15:58','MLK Library',11,'8/25/2015 16:05','San Jose Diridon Caltrain Station',2,131,'Subscriber',94110); +INSERT INTO "trip" VALUES(904566,814,'8/25/2015 15:58','Broadway St at Battery St',82,'8/25/2015 16:11','San Francisco Caltrain (Townsend at 4th)',70,628,'Subscriber',95120); +INSERT INTO "trip" VALUES(904569,1506,'8/25/2015 15:59','Grant Avenue at Columbus Avenue',73,'8/25/2015 16:24','Embarcadero at Sansome',60,495,'Customer',94100); +INSERT INTO "trip" VALUES(904572,533,'8/25/2015 15:59','Howard at 2nd',63,'8/25/2015 16:08','San Francisco Caltrain 2 (330 Townsend)',69,554,'Subscriber',94070); +INSERT INTO "trip" VALUES(904574,1408,'8/25/2015 16:00','Grant Avenue at Columbus Avenue',73,'8/25/2015 16:23','Embarcadero at Sansome',60,387,'Customer',94100); +INSERT INTO "trip" VALUES(904576,606,'8/25/2015 16:00','Post at Kearny',47,'8/25/2015 16:10','Davis at Jackson',42,413,'Subscriber',94111); +INSERT INTO "trip" VALUES(904577,607,'8/25/2015 16:00','Temporary Transbay Terminal (Howard at Beale)',55,'8/25/2015 16:10','San Francisco Caltrain (Townsend at 4th)',70,672,'Subscriber',94010); +INSERT INTO "trip" VALUES(904578,475,'8/25/2015 16:00','San Francisco Caltrain (Townsend at 4th)',70,'8/25/2015 16:08','Powell Street BART',39,427,'Subscriber',94107); +INSERT INTO "trip" VALUES(904579,3959,'8/25/2015 16:01','Steuart at Market',74,'8/25/2015 17:07','Grant Avenue at Columbus Avenue',73,445,'Customer',351); +INSERT INTO "trip" VALUES(904581,3913,'8/25/2015 16:01','Steuart at Market',74,'8/25/2015 17:07','Grant Avenue at Columbus Avenue',73,340,'Customer',351); +INSERT INTO "trip" VALUES(904582,200,'8/25/2015 16:02','San Antonio Shopping Center',31,'8/25/2015 16:05','San Antonio Caltrain Station',29,561,'Subscriber',94115); +INSERT INTO "trip" VALUES(904583,723,'8/25/2015 16:02','Beale at Market',56,'8/25/2015 16:15','San Francisco Caltrain (Townsend at 4th)',70,331,'Subscriber',94303); +INSERT INTO "trip" VALUES(904584,675,'8/25/2015 16:04','Steuart at Market',74,'8/25/2015 16:15','San Francisco Caltrain (Townsend at 4th)',70,524,'Subscriber',94002); +INSERT INTO "trip" VALUES(904586,1238,'8/25/2015 16:06','Embarcadero at Vallejo',48,'8/25/2015 16:27','San Francisco Caltrain (Townsend at 4th)',70,494,'Subscriber',95122); +INSERT INTO "trip" VALUES(904587,589,'8/25/2015 16:06','2nd at South Park',64,'8/25/2015 16:16','Powell Street BART',39,483,'Subscriber',94549); +INSERT INTO "trip" VALUES(904589,1274,'8/25/2015 16:07','Embarcadero at Sansome',60,'8/25/2015 16:28','Temporary Transbay Terminal (Howard at Beale)',55,624,'Customer',48170); +INSERT INTO "trip" VALUES(904590,757,'8/25/2015 16:07','Commercial at Montgomery',45,'8/25/2015 16:19','Golden Gate at Polk',59,492,'Subscriber',94122); +INSERT INTO "trip" VALUES(904592,454,'8/25/2015 16:08','Embarcadero at Sansome',60,'8/25/2015 16:16','Steuart at Market',74,602,'Subscriber',94111); +INSERT INTO "trip" VALUES(904594,506,'8/25/2015 16:09','Beale at Market',56,'8/25/2015 16:17','2nd at Townsend',61,286,'Subscriber',95050); +INSERT INTO "trip" VALUES(904595,535,'8/25/2015 16:09','Spear at Folsom',49,'8/25/2015 16:18','Clay at Battery',41,335,'Subscriber',94105); +INSERT INTO "trip" VALUES(904596,273,'8/25/2015 16:09','Market at Sansome',77,'8/25/2015 16:14','Temporary Transbay Terminal (Howard at Beale)',55,527,'Subscriber',94105); +INSERT INTO "trip" VALUES(904597,72,'8/25/2015 16:10','Beale at Market',56,'8/25/2015 16:11','Beale at Market',56,96,'Subscriber',94089); +INSERT INTO "trip" VALUES(904598,1045,'8/25/2015 16:10','Embarcadero at Sansome',60,'8/25/2015 16:27','Temporary Transbay Terminal (Howard at Beale)',55,621,'Customer',48170); +INSERT INTO "trip" VALUES(904599,729,'8/25/2015 16:10','South Van Ness at Market',66,'8/25/2015 16:22','San Francisco Caltrain 2 (330 Townsend)',69,479,'Subscriber',95122); +INSERT INTO "trip" VALUES(904600,526,'8/25/2015 16:10','Post at Kearny',47,'8/25/2015 16:19','San Francisco Caltrain 2 (330 Townsend)',69,443,'Subscriber',94114); +INSERT INTO "trip" VALUES(904603,217,'8/25/2015 16:11','Grant Avenue at Columbus Avenue',73,'8/25/2015 16:15','Clay at Battery',41,449,'Subscriber',94133); +INSERT INTO "trip" VALUES(904604,808,'8/25/2015 16:11','Beale at Market',56,'8/25/2015 16:25','San Francisco Caltrain 2 (330 Townsend)',69,279,'Subscriber',94085); +INSERT INTO "trip" VALUES(904605,480,'8/25/2015 16:11','2nd at Folsom',62,'8/25/2015 16:19','Harry Bridges Plaza (Ferry Building)',50,322,'Subscriber',94558); +INSERT INTO "trip" VALUES(904606,781,'8/25/2015 16:12','Beale at Market',56,'8/25/2015 16:25','San Francisco Caltrain (Townsend at 4th)',70,96,'Subscriber',94089); +INSERT INTO "trip" VALUES(904609,301,'8/25/2015 16:12','2nd at South Park',64,'8/25/2015 16:17','San Francisco Caltrain (Townsend at 4th)',70,444,'Subscriber',95110); +INSERT INTO "trip" VALUES(904610,794,'8/25/2015 16:14','Powell at Post (Union Square)',71,'8/25/2015 16:28','2nd at Townsend',61,385,'Subscriber',94109); +INSERT INTO "trip" VALUES(904611,606,'8/25/2015 16:15','Post at Kearny',47,'8/25/2015 16:25','San Francisco Caltrain (Townsend at 4th)',70,434,'Subscriber',94401); +INSERT INTO "trip" VALUES(904612,521,'8/25/2015 16:17','Embarcadero at Vallejo',48,'8/25/2015 16:26','Howard at 2nd',63,291,'Subscriber',94110); +INSERT INTO "trip" VALUES(904613,350,'8/25/2015 16:18','Santa Clara at Almaden',4,'8/25/2015 16:24','San Jose Diridon Caltrain Station',2,702,'Subscriber',94158); +INSERT INTO "trip" VALUES(904614,632,'8/25/2015 16:19','Davis at Jackson',42,'8/25/2015 16:29','Temporary Transbay Terminal (Howard at Beale)',55,209,'Subscriber',94105); +INSERT INTO "trip" VALUES(904615,626,'8/25/2015 16:19','Post at Kearny',47,'8/25/2015 16:29','Harry Bridges Plaza (Ferry Building)',50,406,'Subscriber',95442); +INSERT INTO "trip" VALUES(904616,507,'8/25/2015 16:19','Beale at Market',56,'8/25/2015 16:28','Powell Street BART',39,212,'Subscriber',94107); +INSERT INTO "trip" VALUES(904619,238,'8/25/2015 16:21','Market at Sansome',77,'8/25/2015 16:25','Harry Bridges Plaza (Ferry Building)',50,278,'Customer',94901); +INSERT INTO "trip" VALUES(904620,248,'8/25/2015 16:21','Civic Center BART (7th at Market)',72,'8/25/2015 16:25','Market at 4th',76,310,'Subscriber',94602); +INSERT INTO "trip" VALUES(904623,915,'8/25/2015 16:23','Commercial at Montgomery',45,'8/25/2015 16:38','San Francisco Caltrain (Townsend at 4th)',70,440,'Subscriber',94002); +INSERT INTO "trip" VALUES(904624,1110,'8/25/2015 16:23','Embarcadero at Vallejo',48,'8/25/2015 16:42','Townsend at 7th',65,548,'Subscriber',94107); +INSERT INTO "trip" VALUES(904628,458,'8/25/2015 16:24','2nd at Townsend',61,'8/25/2015 16:31','Harry Bridges Plaza (Ferry Building)',50,570,'Subscriber',94903); +INSERT INTO "trip" VALUES(904629,611,'8/25/2015 16:24','Powell at Post (Union Square)',71,'8/25/2015 16:34','Spear at Folsom',49,411,'Subscriber',94109); +INSERT INTO "trip" VALUES(904630,220,'8/25/2015 16:25','Santa Clara at Almaden',4,'8/25/2015 16:28','San Jose Diridon Caltrain Station',2,488,'Subscriber',95020); +INSERT INTO "trip" VALUES(904631,342,'8/25/2015 16:25','Post at Kearny',47,'8/25/2015 16:30','Harry Bridges Plaza (Ferry Building)',50,487,'Subscriber',94957); +INSERT INTO "trip" VALUES(904635,941,'8/25/2015 16:26','Broadway St at Battery St',82,'8/25/2015 16:42','San Francisco Caltrain (Townsend at 4th)',70,454,'Subscriber',94107); +INSERT INTO "trip" VALUES(904638,340,'8/25/2015 16:27','Commercial at Montgomery',45,'8/25/2015 16:33','Temporary Transbay Terminal (Howard at Beale)',55,111,'Subscriber',94710); +INSERT INTO "trip" VALUES(904639,639,'8/25/2015 16:27','Spear at Folsom',49,'8/25/2015 16:38','Grant Avenue at Columbus Avenue',73,347,'Subscriber',94133); +INSERT INTO "trip" VALUES(904640,183,'8/25/2015 16:28','Powell at Post (Union Square)',71,'8/25/2015 16:31','Powell Street BART',39,266,'Subscriber',94501); +INSERT INTO "trip" VALUES(904643,847,'8/25/2015 16:28','Mechanics Plaza (Market at Battery)',75,'8/25/2015 16:42','San Francisco Caltrain (Townsend at 4th)',70,429,'Subscriber',94403); +INSERT INTO "trip" VALUES(904644,305,'8/25/2015 16:28','Adobe on Almaden',5,'8/25/2015 16:33','San Jose Diridon Caltrain Station',2,250,'Subscriber',94043); +INSERT INTO "trip" VALUES(904645,638,'8/25/2015 16:28','Harry Bridges Plaza (Ferry Building)',50,'8/25/2015 16:39','San Francisco Caltrain (Townsend at 4th)',70,470,'Subscriber',94303); +INSERT INTO "trip" VALUES(904646,542,'8/25/2015 16:29','Market at 4th',76,'8/25/2015 16:38','San Francisco Caltrain (Townsend at 4th)',70,267,'Subscriber',95123); +INSERT INTO "trip" VALUES(904651,770,'8/25/2015 16:32','Townsend at 7th',65,'8/25/2015 16:44','Harry Bridges Plaza (Ferry Building)',50,619,'Subscriber',94904); +INSERT INTO "trip" VALUES(904653,696,'8/25/2015 16:32','Harry Bridges Plaza (Ferry Building)',50,'8/25/2015 16:43','San Francisco Caltrain (Townsend at 4th)',70,598,'Subscriber',93401); +INSERT INTO "trip" VALUES(904654,843,'8/25/2015 16:32','Steuart at Market',74,'8/25/2015 16:46','San Francisco Caltrain (Townsend at 4th)',70,635,'Subscriber',94404); +INSERT INTO "trip" VALUES(904656,814,'8/25/2015 16:32','Civic Center BART (7th at Market)',72,'8/25/2015 16:46','San Francisco Caltrain 2 (330 Townsend)',69,270,'Subscriber',94062); +INSERT INTO "trip" VALUES(904657,451,'8/25/2015 16:33','2nd at Townsend',61,'8/25/2015 16:40','Market at Sansome',77,385,'Subscriber',94706); +INSERT INTO "trip" VALUES(904659,644,'8/25/2015 16:33','San Francisco Caltrain 2 (330 Townsend)',69,'8/25/2015 16:44','Harry Bridges Plaza (Ferry Building)',50,672,'Subscriber',94939); +INSERT INTO "trip" VALUES(904660,580,'8/25/2015 16:33','Temporary Transbay Terminal (Howard at Beale)',55,'8/25/2015 16:43','San Francisco Caltrain (Townsend at 4th)',70,624,'Subscriber',94403); +INSERT INTO "trip" VALUES(904661,808,'8/25/2015 16:34','2nd at Townsend',61,'8/25/2015 16:47','Embarcadero at Sansome',60,477,'Subscriber',94563); +INSERT INTO "trip" VALUES(904662,717,'8/25/2015 16:34','Powell Street BART',39,'8/25/2015 16:46','South Van Ness at Market',66,266,'Subscriber',94103); +INSERT INTO "trip" VALUES(904664,419,'8/25/2015 16:35','Market at 4th',76,'8/25/2015 16:42','San Francisco Caltrain (Townsend at 4th)',70,310,'Subscriber',95030); +INSERT INTO "trip" VALUES(904667,1252,'8/25/2015 16:37','Spear at Folsom',49,'8/25/2015 16:58','Spear at Folsom',49,378,'Customer',10001); +INSERT INTO "trip" VALUES(904668,259,'8/25/2015 16:37','Santa Clara at Almaden',4,'8/25/2015 16:42','San Jose Diridon Caltrain Station',2,245,'Subscriber',94103); +INSERT INTO "trip" VALUES(904669,1393,'8/25/2015 16:37','Stanford in Redwood City',25,'8/25/2015 17:01','Palo Alto Caltrain Station',34,707,'Subscriber',95131); +INSERT INTO "trip" VALUES(904670,626,'8/25/2015 16:39','San Francisco Caltrain (Townsend at 4th)',70,'8/25/2015 16:49','Steuart at Market',74,407,'Subscriber',94705); +INSERT INTO "trip" VALUES(904671,554,'8/25/2015 16:39','Beale at Market',56,'8/25/2015 16:48','San Francisco Caltrain (Townsend at 4th)',70,388,'Subscriber',94403); +INSERT INTO "trip" VALUES(904672,1014,'8/25/2015 16:39','Clay at Battery',41,'8/25/2015 16:56','San Francisco Caltrain (Townsend at 4th)',70,335,'Subscriber',94301); +INSERT INTO "trip" VALUES(904673,658,'8/25/2015 16:39','Embarcadero at Folsom',51,'8/25/2015 16:50','Market at 4th',76,517,'Subscriber',94062); +INSERT INTO "trip" VALUES(904674,466,'8/25/2015 16:40','Commercial at Montgomery',45,'8/25/2015 16:47','Temporary Transbay Terminal (Howard at Beale)',55,417,'Subscriber',94530); +INSERT INTO "trip" VALUES(904675,424,'8/25/2015 16:40','2nd at Townsend',61,'8/25/2015 16:47','Harry Bridges Plaza (Ferry Building)',50,355,'Subscriber',94945); +INSERT INTO "trip" VALUES(904676,539,'8/25/2015 16:40','Market at 10th',67,'8/25/2015 16:49','San Francisco Caltrain 2 (330 Townsend)',69,371,'Subscriber',94061); +INSERT INTO "trip" VALUES(904677,154,'8/25/2015 16:40','2nd at Folsom',62,'8/25/2015 16:43','Temporary Transbay Terminal (Howard at Beale)',55,191,'Subscriber',94602); +INSERT INTO "trip" VALUES(904678,2065,'8/25/2015 16:42','Powell Street BART',39,'8/25/2015 17:16','Spear at Folsom',49,540,'Customer',86); +INSERT INTO "trip" VALUES(904679,209,'8/25/2015 16:42','Powell Street BART',39,'8/25/2015 16:45','Powell at Post (Union Square)',71,409,'Subscriber',94501); +INSERT INTO "trip" VALUES(904682,538,'8/25/2015 16:43','Post at Kearny',47,'8/25/2015 16:52','Market at 10th',67,553,'Subscriber',95112); +INSERT INTO "trip" VALUES(904683,691,'8/25/2015 16:43','Embarcadero at Folsom',51,'8/25/2015 16:54','San Francisco Caltrain (Townsend at 4th)',70,137,'Subscriber',94070); +INSERT INTO "trip" VALUES(904687,887,'8/25/2015 16:45','Steuart at Market',74,'8/25/2015 17:00','Embarcadero at Vallejo',48,269,'Customer',67654); +INSERT INTO "trip" VALUES(904690,654,'8/25/2015 16:46','Civic Center BART (7th at Market)',72,'8/25/2015 16:56','San Francisco Caltrain 2 (330 Townsend)',69,300,'Subscriber',94040); +INSERT INTO "trip" VALUES(904691,948,'8/25/2015 16:46','Steuart at Market',74,'8/25/2015 17:02','San Francisco Caltrain (Townsend at 4th)',70,461,'Subscriber',95134); +INSERT INTO "trip" VALUES(904692,860,'8/25/2015 16:46','Townsend at 7th',65,'8/25/2015 17:01','Harry Bridges Plaza (Ferry Building)',50,548,'Subscriber',94501); +INSERT INTO "trip" VALUES(904696,369,'8/25/2015 16:47','Howard at 2nd',63,'8/25/2015 16:53','Harry Bridges Plaza (Ferry Building)',50,489,'Subscriber',94973); +INSERT INTO "trip" VALUES(904698,644,'8/25/2015 16:48','San Francisco Caltrain 2 (330 Townsend)',69,'8/25/2015 16:59','Powell Street BART',39,270,'Subscriber',94107); +INSERT INTO "trip" VALUES(904699,243,'8/25/2015 16:46','2nd at South Park',64,'8/25/2015 16:50','San Francisco Caltrain (Townsend at 4th)',70,576,'Subscriber',94403); +INSERT INTO "trip" VALUES(904700,597,'8/25/2015 16:49','Commercial at Montgomery',45,'8/25/2015 16:59','Spear at Folsom',49,404,'Subscriber',94105); +INSERT INTO "trip" VALUES(904702,361,'8/25/2015 16:49','San Jose Civic Center',3,'8/25/2015 16:55','San Jose Diridon Caltrain Station',2,712,'Subscriber',94070); +INSERT INTO "trip" VALUES(904703,563,'8/25/2015 16:49','Steuart at Market',74,'8/25/2015 16:59','San Francisco Caltrain (Townsend at 4th)',70,602,'Subscriber',94403); +INSERT INTO "trip" VALUES(904704,379,'8/25/2015 16:49','2nd at South Park',64,'8/25/2015 16:56','Market at Sansome',77,623,'Subscriber',94612); +INSERT INTO "trip" VALUES(904705,945,'8/25/2015 16:50','Beale at Market',56,'8/25/2015 17:06','San Francisco Caltrain (Townsend at 4th)',70,587,'Subscriber',95148); +INSERT INTO "trip" VALUES(904706,265,'8/25/2015 16:50','Townsend at 7th',65,'8/25/2015 16:54','San Francisco Caltrain 2 (330 Townsend)',69,428,'Subscriber',94087); +INSERT INTO "trip" VALUES(904707,1011,'8/25/2015 16:51','Broadway St at Battery St',82,'8/25/2015 17:08','San Francisco Caltrain (Townsend at 4th)',70,282,'Subscriber',94025); +INSERT INTO "trip" VALUES(904708,593,'8/25/2015 16:51','South Van Ness at Market',66,'8/25/2015 17:01','San Francisco Caltrain 2 (330 Townsend)',69,266,'Subscriber',95030); +INSERT INTO "trip" VALUES(904709,609,'8/25/2015 16:52','Embarcadero at Folsom',51,'8/25/2015 17:02','San Francisco Caltrain (Townsend at 4th)',70,547,'Subscriber',95131); +INSERT INTO "trip" VALUES(904711,664,'8/25/2015 16:54','2nd at Townsend',61,'8/25/2015 17:05','Harry Bridges Plaza (Ferry Building)',50,421,'Subscriber',94949); +INSERT INTO "trip" VALUES(904712,1105,'8/25/2015 16:54','Post at Kearny',47,'8/25/2015 17:12','San Francisco Caltrain 2 (330 Townsend)',69,613,'Subscriber',94002); +INSERT INTO "trip" VALUES(904713,207,'8/25/2015 16:54','Adobe on Almaden',5,'8/25/2015 16:58','San Jose Diridon Caltrain Station',2,160,'Subscriber',94002); +INSERT INTO "trip" VALUES(904714,872,'8/25/2015 16:54','Commercial at Montgomery',45,'8/25/2015 17:09','San Francisco Caltrain (Townsend at 4th)',70,659,'Subscriber',94010); +INSERT INTO "trip" VALUES(904715,561,'8/25/2015 16:54','2nd at South Park',64,'8/25/2015 17:04','Harry Bridges Plaza (Ferry Building)',50,632,'Subscriber',94939); +INSERT INTO "trip" VALUES(904716,262,'8/25/2015 16:54','Beale at Market',56,'8/25/2015 16:59','Davis at Jackson',42,412,'Subscriber',94122); +INSERT INTO "trip" VALUES(904717,654,'8/25/2015 16:55','Temporary Transbay Terminal (Howard at Beale)',55,'8/25/2015 17:06','San Francisco Caltrain (Townsend at 4th)',70,417,'Subscriber',95014); +INSERT INTO "trip" VALUES(904718,765,'8/25/2015 16:55','Davis at Jackson',42,'8/25/2015 17:08','San Francisco Caltrain (Townsend at 4th)',70,541,'Subscriber',94040); +INSERT INTO "trip" VALUES(904721,554,'8/25/2015 16:55','Mechanics Plaza (Market at Battery)',75,'8/25/2015 17:05','San Francisco Caltrain (Townsend at 4th)',70,578,'Subscriber',94303); +INSERT INTO "trip" VALUES(904723,758,'8/25/2015 16:56','5th at Howard',57,'8/25/2015 17:09','Steuart at Market',74,67,'Subscriber',94930); +INSERT INTO "trip" VALUES(904724,850,'8/25/2015 16:56','Washington at Kearny',46,'8/25/2015 17:10','San Francisco Caltrain 2 (330 Townsend)',69,534,'Subscriber',94087); +INSERT INTO "trip" VALUES(904725,756,'8/25/2015 16:56','Embarcadero at Bryant',54,'8/25/2015 17:09','Townsend at 7th',65,402,'Subscriber',94402); +INSERT INTO "trip" VALUES(904726,541,'8/25/2015 16:56','Steuart at Market',74,'8/25/2015 17:05','2nd at Townsend',61,286,'Subscriber',94560); +INSERT INTO "trip" VALUES(904727,306,'8/25/2015 16:56','Embarcadero at Sansome',60,'8/25/2015 17:02','Harry Bridges Plaza (Ferry Building)',50,387,'Subscriber',94501); +INSERT INTO "trip" VALUES(904728,199,'8/25/2015 16:56','Cowper at University',37,'8/25/2015 17:00','Palo Alto Caltrain Station',34,120,'Subscriber',94102); +INSERT INTO "trip" VALUES(904730,746,'8/25/2015 16:57','Market at 10th',67,'8/25/2015 17:09','San Francisco Caltrain 2 (330 Townsend)',69,553,'Subscriber',95122); +INSERT INTO "trip" VALUES(904731,790,'8/25/2015 16:57','Stanford in Redwood City',25,'8/25/2015 17:10','Redwood City Caltrain Station',22,122,'Subscriber',95037); +INSERT INTO "trip" VALUES(904732,778,'8/25/2015 16:57','Spear at Folsom',49,'8/25/2015 17:10','Townsend at 7th',65,528,'Customer',10011); +INSERT INTO "trip" VALUES(904733,498,'8/25/2015 16:57','Temporary Transbay Terminal (Howard at Beale)',55,'8/25/2015 17:05','San Francisco Caltrain (Townsend at 4th)',70,527,'Subscriber',95008); +INSERT INTO "trip" VALUES(904734,595,'8/25/2015 16:57','San Francisco Caltrain 2 (330 Townsend)',69,'8/25/2015 17:07','Temporary Transbay Terminal (Howard at Beale)',55,300,'Subscriber',94602); +INSERT INTO "trip" VALUES(904736,507,'8/25/2015 16:57','2nd at Townsend',61,'8/25/2015 17:06','Steuart at Market',74,290,'Subscriber',94110); +INSERT INTO "trip" VALUES(904737,217,'8/25/2015 16:57','Embarcadero at Vallejo',48,'8/25/2015 17:01','Steuart at Market',74,458,'Subscriber',94708); +INSERT INTO "trip" VALUES(904738,414,'8/25/2015 16:58','2nd at South Park',64,'8/25/2015 17:05','San Francisco Caltrain (Townsend at 4th)',70,401,'Subscriber',95112); +INSERT INTO "trip" VALUES(904739,540,'8/25/2015 16:58','2nd at Townsend',61,'8/25/2015 17:07','Steuart at Market',74,493,'Subscriber',94526); +INSERT INTO "trip" VALUES(904741,700,'8/25/2015 16:59','San Francisco Caltrain 2 (330 Townsend)',69,'8/25/2015 17:11','Powell Street BART',39,428,'Subscriber',94703); +INSERT INTO "trip" VALUES(904742,741,'8/25/2015 16:59','Embarcadero at Vallejo',48,'8/25/2015 17:12','2nd at South Park',64,393,'Subscriber',94602); +INSERT INTO "trip" VALUES(904743,522,'8/25/2015 16:59','Harry Bridges Plaza (Ferry Building)',50,'8/25/2015 17:08','2nd at Townsend',61,487,'Subscriber',94002); +INSERT INTO "trip" VALUES(904744,424,'8/25/2015 17:00','Howard at 2nd',63,'8/25/2015 17:07','San Francisco Caltrain (Townsend at 4th)',70,390,'Subscriber',94041); +INSERT INTO "trip" VALUES(904745,555,'8/25/2015 17:00','Embarcadero at Folsom',51,'8/25/2015 17:09','San Francisco Caltrain (Townsend at 4th)',70,328,'Subscriber',94085); +INSERT INTO "trip" VALUES(904746,307,'8/25/2015 17:00','Market at Sansome',77,'8/25/2015 17:05','Harry Bridges Plaza (Ferry Building)',50,385,'Subscriber',94925); +INSERT INTO "trip" VALUES(904747,731,'8/25/2015 17:00','Market at Sansome',77,'8/25/2015 17:12','San Francisco Caltrain (Townsend at 4th)',70,315,'Subscriber',94087); +INSERT INTO "trip" VALUES(904748,570,'8/25/2015 17:01','Beale at Market',56,'8/25/2015 17:10','Embarcadero at Sansome',60,311,'Subscriber',94111); +INSERT INTO "trip" VALUES(904749,202,'8/25/2015 17:01','San Antonio Shopping Center',31,'8/25/2015 17:04','San Antonio Caltrain Station',29,700,'Subscriber',94040); +INSERT INTO "trip" VALUES(904750,1276,'8/25/2015 17:01','Embarcadero at Vallejo',48,'8/25/2015 17:22','Embarcadero at Sansome',60,269,'Customer',67654); +INSERT INTO "trip" VALUES(904751,534,'8/25/2015 17:01','Commercial at Montgomery',45,'8/25/2015 17:10','Embarcadero at Bryant',54,519,'Subscriber',94105); +INSERT INTO "trip" VALUES(904752,1038,'8/25/2015 17:01','Clay at Battery',41,'8/25/2015 17:19','San Francisco Caltrain 2 (330 Townsend)',69,449,'Subscriber',94402); +INSERT INTO "trip" VALUES(904753,549,'8/25/2015 17:02','Spear at Folsom',49,'8/25/2015 17:11','San Francisco Caltrain 2 (330 Townsend)',69,555,'Subscriber',94061); +INSERT INTO "trip" VALUES(904754,646,'8/25/2015 17:02','Embarcadero at Sansome',60,'8/25/2015 17:13','Steuart at Market',74,611,'Subscriber',94114); +INSERT INTO "trip" VALUES(904755,616,'8/25/2015 17:02','Clay at Battery',41,'8/25/2015 17:12','Embarcadero at Bryant',54,318,'Subscriber',94105); +INSERT INTO "trip" VALUES(904756,634,'8/25/2015 17:02','Temporary Transbay Terminal (Howard at Beale)',55,'8/25/2015 17:13','San Francisco Caltrain 2 (330 Townsend)',69,621,'Subscriber',94402); +INSERT INTO "trip" VALUES(904758,638,'8/25/2015 17:04','South Van Ness at Market',66,'8/25/2015 17:15','Beale at Market',56,446,'Subscriber',9611); +INSERT INTO "trip" VALUES(904759,213,'8/25/2015 17:04','Townsend at 7th',65,'8/25/2015 17:08','San Francisco Caltrain 2 (330 Townsend)',69,554,'Subscriber',94065); +INSERT INTO "trip" VALUES(904760,1711,'8/25/2015 17:04','Embarcadero at Sansome',60,'8/25/2015 17:33','San Francisco Caltrain 2 (330 Townsend)',69,491,'Subscriber',95111); +INSERT INTO "trip" VALUES(904761,320,'8/25/2015 17:05','Mechanics Plaza (Market at Battery)',75,'8/25/2015 17:10','Market at 4th',76,579,'Subscriber',94117); +INSERT INTO "trip" VALUES(904762,770,'8/25/2015 17:05','Townsend at 7th',65,'8/25/2015 17:18','Temporary Transbay Terminal (Howard at Beale)',55,29,'Subscriber',94608); +INSERT INTO "trip" VALUES(904763,587,'8/25/2015 17:05','Mechanics Plaza (Market at Battery)',75,'8/25/2015 17:15','San Francisco Caltrain 2 (330 Townsend)',69,33,'Subscriber',94403); +INSERT INTO "trip" VALUES(904764,478,'8/25/2015 17:05','Market at 10th',67,'8/25/2015 17:13','San Francisco Caltrain 2 (330 Townsend)',69,582,'Subscriber',94066); +INSERT INTO "trip" VALUES(904766,554,'8/25/2015 17:05','Commercial at Montgomery',45,'8/25/2015 17:14','Powell Street BART',39,520,'Subscriber',94111); +INSERT INTO "trip" VALUES(904767,641,'8/25/2015 17:05','Howard at 2nd',63,'8/25/2015 17:16','Grant Avenue at Columbus Avenue',73,677,'Subscriber',94109); +INSERT INTO "trip" VALUES(904768,645,'8/25/2015 17:05','Golden Gate at Polk',59,'8/25/2015 17:16','San Francisco Caltrain 2 (330 Townsend)',69,351,'Subscriber',94306); +INSERT INTO "trip" VALUES(904771,907,'8/25/2015 17:06','Park at Olive',38,'8/25/2015 17:21','Palo Alto Caltrain Station',34,252,'Subscriber',94002); +INSERT INTO "trip" VALUES(904773,282,'8/25/2015 17:06','Powell at Post (Union Square)',71,'8/25/2015 17:11','5th at Howard',57,409,'Subscriber',94109); +INSERT INTO "trip" VALUES(904774,651,'8/25/2015 17:07','Market at Sansome',77,'8/25/2015 17:17','Grant Avenue at Columbus Avenue',73,563,'Subscriber',94133); +INSERT INTO "trip" VALUES(904775,262,'8/25/2015 17:07','San Jose Diridon Caltrain Station',2,'8/25/2015 17:11','Santa Clara at Almaden',4,131,'Subscriber',95110); +INSERT INTO "trip" VALUES(904777,712,'8/25/2015 17:07','Mountain View Caltrain Station',28,'8/25/2015 17:19','Rengstorff Avenue / California Street',33,197,'Subscriber',92064); +INSERT INTO "trip" VALUES(904778,494,'8/25/2015 17:07','Embarcadero at Vallejo',48,'8/25/2015 17:15','Temporary Transbay Terminal (Howard at Beale)',55,370,'Subscriber',94608); +INSERT INTO "trip" VALUES(904779,688,'8/25/2015 17:07','MLK Library',11,'8/25/2015 17:19','San Jose Diridon Caltrain Station',2,50,'Subscriber',95126); +INSERT INTO "trip" VALUES(904780,1234,'8/25/2015 17:08','Embarcadero at Sansome',60,'8/25/2015 17:28','2nd at Townsend',61,394,'Subscriber',95129); +INSERT INTO "trip" VALUES(904781,759,'8/25/2015 17:08','Davis at Jackson',42,'8/25/2015 17:20','San Francisco Caltrain 2 (330 Townsend)',69,448,'Subscriber',94030); +INSERT INTO "trip" VALUES(904782,904,'8/25/2015 17:08','Townsend at 7th',65,'8/25/2015 17:23','Harry Bridges Plaza (Ferry Building)',50,537,'Customer',94965); +INSERT INTO "trip" VALUES(904783,475,'8/25/2015 17:08','Beale at Market',56,'8/25/2015 17:16','San Francisco Caltrain 2 (330 Townsend)',69,468,'Customer',37221); +INSERT INTO "trip" VALUES(904784,312,'8/25/2015 17:08','Temporary Transbay Terminal (Howard at Beale)',55,'8/25/2015 17:14','Embarcadero at Bryant',54,111,'Subscriber',94010); +INSERT INTO "trip" VALUES(904785,341,'8/25/2015 17:09','Embarcadero at Vallejo',48,'8/25/2015 17:15','Embarcadero at Folsom',51,538,'Subscriber',94547); +INSERT INTO "trip" VALUES(904786,550,'8/25/2015 17:09','Temporary Transbay Terminal (Howard at Beale)',55,'8/25/2015 17:19','San Francisco Caltrain 2 (330 Townsend)',69,191,'Subscriber',94025); +INSERT INTO "trip" VALUES(904787,1894,'8/25/2015 17:10','Post at Kearny',47,'8/25/2015 17:41','Mechanics Plaza (Market at Battery)',75,516,'Customer','nil'); +INSERT INTO "trip" VALUES(904788,480,'8/25/2015 17:10','Market at 4th',76,'8/25/2015 17:18','San Francisco Caltrain 2 (330 Townsend)',69,517,'Subscriber',94403); +INSERT INTO "trip" VALUES(904789,570,'8/25/2015 17:10','Steuart at Market',74,'8/25/2015 17:20','2nd at Townsend',61,290,'Subscriber',94158); +INSERT INTO "trip" VALUES(904790,463,'8/25/2015 17:10','St James Park',13,'8/25/2015 17:18','San Jose Diridon Caltrain Station',2,142,'Subscriber',94105); +INSERT INTO "trip" VALUES(904791,896,'8/25/2015 17:10','Townsend at 7th',65,'8/25/2015 17:25','Embarcadero at Sansome',60,501,'Subscriber',94109); +INSERT INTO "trip" VALUES(904792,324,'8/25/2015 17:10','Yerba Buena Center of the Arts (3rd @ Howard)',68,'8/25/2015 17:16','San Francisco Caltrain 2 (330 Townsend)',69,109,'Subscriber',94087); +INSERT INTO "trip" VALUES(904795,525,'8/25/2015 17:11','Market at 10th',67,'8/25/2015 17:20','Powell Street BART',39,285,'Subscriber',94112); +INSERT INTO "trip" VALUES(904796,449,'8/25/2015 17:11','Howard at 2nd',63,'8/25/2015 17:18','San Francisco Caltrain 2 (330 Townsend)',69,383,'Subscriber',94062); +INSERT INTO "trip" VALUES(904797,388,'8/25/2015 17:11','2nd at Townsend',61,'8/25/2015 17:17','Harry Bridges Plaza (Ferry Building)',50,286,'Subscriber',94901); +INSERT INTO "trip" VALUES(904798,610,'8/25/2015 17:11','Steuart at Market',74,'8/25/2015 17:21','San Francisco Caltrain 2 (330 Townsend)',69,505,'Subscriber',94061); +INSERT INTO "trip" VALUES(904800,460,'8/25/2015 17:11','Yerba Buena Center of the Arts (3rd @ Howard)',68,'8/25/2015 17:19','Clay at Battery',41,459,'Subscriber',94133); +INSERT INTO "trip" VALUES(904802,571,'8/25/2015 17:12','South Van Ness at Market',66,'8/25/2015 17:21','San Francisco Caltrain 2 (330 Townsend)',69,431,'Subscriber',95119); +INSERT INTO "trip" VALUES(904805,398,'8/25/2015 17:12','Howard at 2nd',63,'8/25/2015 17:19','San Francisco Caltrain 2 (330 Townsend)',69,377,'Subscriber',94402); +INSERT INTO "trip" VALUES(904806,1270,'8/25/2015 17:13','Golden Gate at Polk',59,'8/25/2015 17:34','San Francisco Caltrain 2 (330 Townsend)',69,492,'Subscriber',94305); +INSERT INTO "trip" VALUES(904808,794,'8/25/2015 17:13','Steuart at Market',74,'8/25/2015 17:26','2nd at Townsend',61,458,'Subscriber',94070); +INSERT INTO "trip" VALUES(904809,1380,'8/25/2015 17:13','Clay at Battery',41,'8/25/2015 17:36','San Francisco Caltrain (Townsend at 4th)',70,193,'Subscriber',94061); +INSERT INTO "trip" VALUES(904811,304,'8/25/2015 17:14','Santa Clara at Almaden',4,'8/25/2015 17:19','San Jose Diridon Caltrain Station',2,691,'Subscriber',94114); +INSERT INTO "trip" VALUES(904812,344,'8/25/2015 17:14','Embarcadero at Sansome',60,'8/25/2015 17:20','Steuart at Market',74,418,'Subscriber',94595); +INSERT INTO "trip" VALUES(904813,649,'8/25/2015 17:14','Clay at Battery',41,'8/25/2015 17:25','2nd at Townsend',61,583,'Subscriber',94107); +INSERT INTO "trip" VALUES(904814,454,'8/25/2015 17:14','Howard at 2nd',63,'8/25/2015 17:22','San Francisco Caltrain 2 (330 Townsend)',69,291,'Subscriber',94061); +INSERT INTO "trip" VALUES(904815,513,'8/25/2015 17:15','San Francisco Caltrain 2 (330 Townsend)',69,'8/25/2015 17:23','Powell Street BART',39,266,'Subscriber',94606); +INSERT INTO "trip" VALUES(904816,359,'8/25/2015 17:15','Temporary Transbay Terminal (Howard at Beale)',55,'8/25/2015 17:21','Harry Bridges Plaza (Ferry Building)',50,158,'Subscriber',94903); +INSERT INTO "trip" VALUES(904817,1150,'8/25/2015 17:15','Commercial at Montgomery',45,'8/25/2015 17:34','San Francisco Caltrain 2 (330 Townsend)',69,399,'Subscriber',95014); +INSERT INTO "trip" VALUES(904818,1169,'8/25/2015 17:15','Yerba Buena Center of the Arts (3rd @ Howard)',68,'8/25/2015 17:35','San Francisco Caltrain 2 (330 Townsend)',69,614,'Subscriber',94070); +INSERT INTO "trip" VALUES(904819,421,'8/25/2015 17:16','Commercial at Montgomery',45,'8/25/2015 17:23','Temporary Transbay Terminal (Howard at Beale)',55,357,'Subscriber',94611); +INSERT INTO "trip" VALUES(904820,913,'8/25/2015 17:16','Market at 10th',67,'8/25/2015 17:31','Spear at Folsom',49,469,'Subscriber',94105); +INSERT INTO "trip" VALUES(904821,814,'8/25/2015 17:17','Golden Gate at Polk',59,'8/25/2015 17:30','Temporary Transbay Terminal (Howard at Beale)',55,373,'Subscriber',94610); +INSERT INTO "trip" VALUES(904822,308,'8/25/2015 17:17','Market at Sansome',77,'8/25/2015 17:22','Yerba Buena Center of the Arts (3rd @ Howard)',68,535,'Subscriber',94030); +INSERT INTO "trip" VALUES(904823,1468,'8/25/2015 17:18','Embarcadero at Sansome',60,'8/25/2015 17:43','Market at Sansome',77,585,'Customer',31040); +INSERT INTO "trip" VALUES(904824,453,'8/25/2015 17:19','2nd at Townsend',61,'8/25/2015 17:26','Howard at 2nd',63,408,'Subscriber',94110); +INSERT INTO "trip" VALUES(904825,702,'8/25/2015 17:19','Broadway St at Battery St',82,'8/25/2015 17:31','2nd at Townsend',61,599,'Subscriber',94111); +INSERT INTO "trip" VALUES(904826,440,'8/25/2015 17:19','San Pedro Square',6,'8/25/2015 17:26','San Jose Diridon Caltrain Station',2,643,'Subscriber',95377); +INSERT INTO "trip" VALUES(904827,952,'8/25/2015 17:19','Spear at Folsom',49,'8/25/2015 17:35','Davis at Jackson',42,540,'Customer',86); +INSERT INTO "trip" VALUES(904828,1404,'8/25/2015 17:19','Embarcadero at Sansome',60,'8/25/2015 17:43','Market at Sansome',77,364,'Customer',31040); +INSERT INTO "trip" VALUES(904829,705,'8/25/2015 17:19','Embarcadero at Folsom',51,'8/25/2015 17:31','San Francisco Caltrain 2 (330 Townsend)',69,630,'Subscriber',95118); +INSERT INTO "trip" VALUES(904830,675,'8/25/2015 17:20','Market at 10th',67,'8/25/2015 17:31','San Francisco Caltrain 2 (330 Townsend)',69,549,'Subscriber',94401); +INSERT INTO "trip" VALUES(904831,655,'8/25/2015 17:20','Santa Clara County Civic Center',80,'8/25/2015 17:31','Ryland Park',84,679,'Subscriber',95112); +INSERT INTO "trip" VALUES(904832,716,'8/25/2015 17:21','Embarcadero at Folsom',51,'8/25/2015 17:32','San Francisco Caltrain 2 (330 Townsend)',69,538,'Subscriber',94303); +INSERT INTO "trip" VALUES(904833,423,'8/25/2015 17:21','Washington at Kearny',46,'8/25/2015 17:28','Temporary Transbay Terminal (Howard at Beale)',55,289,'Subscriber',94611); +INSERT INTO "trip" VALUES(904834,347,'8/25/2015 17:21','Post at Kearny',47,'8/25/2015 17:27','Powell at Post (Union Square)',71,496,'Subscriber',94107); +INSERT INTO "trip" VALUES(904835,734,'8/25/2015 17:21','Townsend at 7th',65,'8/25/2015 17:34','Embarcadero at Folsom',51,528,'Subscriber',94501); +INSERT INTO "trip" VALUES(904836,284,'8/25/2015 17:22','San Francisco Caltrain 2 (330 Townsend)',69,'8/25/2015 17:26','2nd at Townsend',61,448,'Subscriber',94107); +INSERT INTO "trip" VALUES(904837,510,'8/25/2015 17:22','2nd at South Park',64,'8/25/2015 17:30','Harry Bridges Plaza (Ferry Building)',50,393,'Subscriber',94904); +INSERT INTO "trip" VALUES(904838,690,'8/25/2015 17:22','Steuart at Market',74,'8/25/2015 17:34','2nd at South Park',64,418,'Subscriber',94025); +INSERT INTO "trip" VALUES(904839,671,'8/25/2015 17:22','Market at 4th',76,'8/25/2015 17:34','Embarcadero at Sansome',60,590,'Subscriber',94111); +INSERT INTO "trip" VALUES(904841,486,'8/25/2015 17:23','Market at 10th',67,'8/25/2015 17:31','5th at Howard',57,444,'Subscriber',94103); +INSERT INTO "trip" VALUES(904842,524,'8/25/2015 17:23','Mechanics Plaza (Market at Battery)',75,'8/25/2015 17:32','Embarcadero at Sansome',60,625,'Subscriber',94133); +INSERT INTO "trip" VALUES(904843,830,'8/25/2015 17:23','Beale at Market',56,'8/25/2015 17:37','San Francisco City Hall',58,446,'Subscriber',94102); +INSERT INTO "trip" VALUES(904844,550,'8/25/2015 17:23','Golden Gate at Polk',59,'8/25/2015 17:32','Commercial at Montgomery',45,592,'Subscriber',94122); +INSERT INTO "trip" VALUES(904845,387,'8/25/2015 17:24','Embarcadero at Sansome',60,'8/25/2015 17:30','Harry Bridges Plaza (Ferry Building)',50,269,'Subscriber',94501); +INSERT INTO "trip" VALUES(904846,654,'8/25/2015 17:24','Embarcadero at Folsom',51,'8/25/2015 17:35','2nd at South Park',64,420,'Subscriber',94115); +INSERT INTO "trip" VALUES(904847,640,'8/25/2015 17:24','Davis at Jackson',42,'8/25/2015 17:35','Howard at 2nd',63,552,'Subscriber',94024); +INSERT INTO "trip" VALUES(904848,710,'8/25/2015 17:25','Mechanics Plaza (Market at Battery)',75,'8/25/2015 17:37','2nd at Townsend',61,567,'Subscriber',94133); +INSERT INTO "trip" VALUES(904849,338,'8/25/2015 17:25','Santa Clara at Almaden',4,'8/25/2015 17:31','San Jose Diridon Caltrain Station',2,65,'Subscriber',94305); +INSERT INTO "trip" VALUES(904850,702,'8/25/2015 17:26','San Antonio Shopping Center',31,'8/25/2015 17:37','Mountain View Caltrain Station',28,263,'Subscriber',94133); +INSERT INTO "trip" VALUES(904851,472,'8/25/2015 17:26','Temporary Transbay Terminal (Howard at Beale)',55,'8/25/2015 17:34','2nd at Townsend',61,300,'Subscriber',94105); +INSERT INTO "trip" VALUES(904852,371,'8/25/2015 17:26','Market at 4th',76,'8/25/2015 17:32','Temporary Transbay Terminal (Howard at Beale)',55,579,'Subscriber',94706); +INSERT INTO "trip" VALUES(904853,1735,'8/25/2015 17:27','Spear at Folsom',49,'8/25/2015 17:56','Townsend at 7th',65,629,'Subscriber',94131); +INSERT INTO "trip" VALUES(904854,392,'8/25/2015 17:27','Paseo de San Antonio',7,'8/25/2015 17:34','SJSU - San Salvador at 9th',16,64,'Subscriber',95112); +INSERT INTO "trip" VALUES(904855,238,'8/25/2015 17:28','Castro Street and El Camino Real',32,'8/25/2015 17:32','Mountain View Caltrain Station',28,706,'Subscriber',94105); +INSERT INTO "trip" VALUES(904856,238,'8/25/2015 17:28','Temporary Transbay Terminal (Howard at Beale)',55,'8/25/2015 17:32','2nd at Folsom',62,29,'Subscriber',94158); +INSERT INTO "trip" VALUES(904857,814,'8/25/2015 17:29','Davis at Jackson',42,'8/25/2015 17:42','San Francisco Caltrain (Townsend at 4th)',70,410,'Subscriber',95014); +INSERT INTO "trip" VALUES(904858,533,'8/25/2015 17:29','Embarcadero at Vallejo',48,'8/25/2015 17:38','Market at 4th',76,400,'Subscriber',94107); +INSERT INTO "trip" VALUES(904861,765,'8/25/2015 17:30','Powell Street BART',39,'8/25/2015 17:43','Townsend at 7th',65,187,'Subscriber',94107); +INSERT INTO "trip" VALUES(904862,350,'8/25/2015 17:30','Yerba Buena Center of the Arts (3rd @ Howard)',68,'8/25/2015 17:36','Steuart at Market',74,422,'Subscriber',94107); +INSERT INTO "trip" VALUES(904863,393,'8/25/2015 17:31','Powell Street BART',39,'8/25/2015 17:37','San Francisco Caltrain 2 (330 Townsend)',69,556,'Subscriber',94109); +INSERT INTO "trip" VALUES(904866,238,'8/25/2015 17:32','Howard at 2nd',63,'8/25/2015 17:36','Steuart at Market',74,525,'Subscriber',94949); +INSERT INTO "trip" VALUES(904867,1592,'8/25/2015 17:32','Embarcadero at Bryant',54,'8/25/2015 17:58','2nd at Townsend',61,526,'Customer',94122); +INSERT INTO "trip" VALUES(904868,66,'8/25/2015 17:32','San Francisco Caltrain (Townsend at 4th)',70,'8/25/2015 17:33','San Francisco Caltrain (Townsend at 4th)',70,137,'Subscriber',94925); +INSERT INTO "trip" VALUES(904869,342,'8/25/2015 17:32','Howard at 2nd',63,'8/25/2015 17:38','Harry Bridges Plaza (Ferry Building)',50,408,'Subscriber',94115); +INSERT INTO "trip" VALUES(904870,347,'8/25/2015 17:32','2nd at South Park',64,'8/25/2015 17:38','Market at Sansome',77,391,'Subscriber',94610); +INSERT INTO "trip" VALUES(904871,764,'8/25/2015 17:32','San Jose Diridon Caltrain Station',2,'8/25/2015 17:45','Ryland Park',84,304,'Subscriber',95110); +INSERT INTO "trip" VALUES(904872,321,'8/25/2015 17:32','Townsend at 7th',65,'8/25/2015 17:38','San Francisco Caltrain 2 (330 Townsend)',69,478,'Subscriber',94301); +INSERT INTO "trip" VALUES(904876,374,'8/25/2015 17:33','Embarcadero at Vallejo',48,'8/25/2015 17:39','Embarcadero at Bryant',54,392,'Subscriber',94105); +INSERT INTO "trip" VALUES(904877,470,'8/25/2015 17:33','San Francisco Caltrain 2 (330 Townsend)',69,'8/25/2015 17:41','Harry Bridges Plaza (Ferry Building)',50,377,'Subscriber',94901); +INSERT INTO "trip" VALUES(904878,632,'8/25/2015 17:33','San Francisco Caltrain (Townsend at 4th)',70,'8/25/2015 17:44','Steuart at Market',74,388,'Subscriber',94925); +INSERT INTO "trip" VALUES(904879,382,'8/25/2015 17:33','2nd at Townsend',61,'8/25/2015 17:40','Market at Sansome',77,394,'Subscriber',94117); +INSERT INTO "trip" VALUES(904880,397,'8/25/2015 17:34','2nd at Townsend',61,'8/25/2015 17:41','Temporary Transbay Terminal (Howard at Beale)',55,583,'Subscriber',94608); +INSERT INTO "trip" VALUES(904881,858,'8/25/2015 17:34','2nd at South Park',64,'8/25/2015 17:49','San Francisco Caltrain 2 (330 Townsend)',69,418,'Subscriber',94107); +INSERT INTO "trip" VALUES(904882,514,'8/25/2015 17:34','Market at Sansome',77,'8/25/2015 17:43','San Francisco Caltrain 2 (330 Townsend)',69,441,'Subscriber',94306); +INSERT INTO "trip" VALUES(904885,434,'8/25/2015 17:35','Steuart at Market',74,'8/25/2015 17:42','Embarcadero at Sansome',60,611,'Subscriber',94133); +INSERT INTO "trip" VALUES(904886,720,'8/25/2015 17:35','San Francisco Caltrain (Townsend at 4th)',70,'8/25/2015 17:47','Market at 10th',67,461,'Subscriber',94102); +INSERT INTO "trip" VALUES(904887,206,'8/25/2015 17:36','Townsend at 7th',65,'8/25/2015 17:39','San Francisco Caltrain 2 (330 Townsend)',69,389,'Subscriber',94063); +INSERT INTO "trip" VALUES(904892,664,'8/25/2015 17:38','Steuart at Market',74,'8/25/2015 17:49','San Francisco Caltrain 2 (330 Townsend)',69,493,'Subscriber',94086); +INSERT INTO "trip" VALUES(904893,194,'8/25/2015 17:38','Commercial at Montgomery',45,'8/25/2015 17:41','Market at Sansome',77,592,'Subscriber',94122); +INSERT INTO "trip" VALUES(904894,768,'8/25/2015 17:38','2nd at Townsend',61,'8/25/2015 17:51','Embarcadero at Sansome',60,290,'Subscriber',94133); +INSERT INTO "trip" VALUES(904895,129,'8/25/2015 17:38','5th at Howard',57,'8/25/2015 17:40','Powell Street BART',39,409,'Subscriber',94024); +INSERT INTO "trip" VALUES(904898,435,'8/25/2015 17:38','2nd at South Park',64,'8/25/2015 17:45','Temporary Transbay Terminal (Howard at Beale)',55,420,'Subscriber',94610); +INSERT INTO "trip" VALUES(904899,976,'8/25/2015 17:38','Davis at Jackson',42,'8/25/2015 17:55','San Francisco Caltrain (Townsend at 4th)',70,413,'Subscriber',95051); +INSERT INTO "trip" VALUES(904900,287,'8/25/2015 17:39','Castro Street and El Camino Real',32,'8/25/2015 17:44','Mountain View Caltrain Station',28,94,'Subscriber',94401); +INSERT INTO "trip" VALUES(904901,750,'8/25/2015 17:39','Market at Sansome',77,'8/25/2015 17:51','San Francisco Caltrain 2 (330 Townsend)',69,382,'Subscriber',94002); +INSERT INTO "trip" VALUES(904902,1369,'8/25/2015 17:39','Commercial at Montgomery',45,'8/25/2015 18:02','Townsend at 7th',65,322,'Subscriber',94107); +INSERT INTO "trip" VALUES(904906,1116,'8/25/2015 17:40','Embarcadero at Sansome',60,'8/25/2015 17:58','2nd at Townsend',61,287,'Subscriber',94002); +INSERT INTO "trip" VALUES(904907,458,'8/25/2015 17:40','Market at 4th',76,'8/25/2015 17:47','San Francisco Caltrain (Townsend at 4th)',70,312,'Subscriber',94303); +INSERT INTO "trip" VALUES(904909,1094,'8/25/2015 17:40','Embarcadero at Sansome',60,'8/25/2015 17:58','2nd at Townsend',61,495,'Subscriber',94002); +INSERT INTO "trip" VALUES(904910,12312,'8/25/2015 17:40','South Van Ness at Market',66,'8/25/2015 21:06','Mechanics Plaza (Market at Battery)',75,379,'Customer',31201); +INSERT INTO "trip" VALUES(904911,458,'8/25/2015 17:41','Powell Street BART',39,'8/25/2015 17:49','Steuart at Market',74,506,'Subscriber',94941); +INSERT INTO "trip" VALUES(904912,685,'8/25/2015 17:41','South Van Ness at Market',66,'8/25/2015 17:52','San Francisco Caltrain 2 (330 Townsend)',69,352,'Subscriber',94103); +INSERT INTO "trip" VALUES(904913,275,'8/25/2015 17:41','San Jose Diridon Caltrain Station',2,'8/25/2015 17:46','Santa Clara at Almaden',4,702,'Subscriber',95110); +INSERT INTO "trip" VALUES(904916,452,'8/25/2015 17:42','2nd at Folsom',62,'8/25/2015 17:49','Steuart at Market',74,29,'Subscriber',94558); +INSERT INTO "trip" VALUES(904917,1539,'8/25/2015 17:42','Mechanics Plaza (Market at Battery)',75,'8/25/2015 18:07','Market at 4th',76,516,'Customer','nil'); +INSERT INTO "trip" VALUES(904918,752,'8/25/2015 17:42','Temporary Transbay Terminal (Howard at Beale)',55,'8/25/2015 17:55','San Francisco Caltrain (Townsend at 4th)',70,579,'Subscriber',95110); +INSERT INTO "trip" VALUES(904919,299,'8/25/2015 17:42','Broadway St at Battery St',82,'8/25/2015 17:47','Steuart at Market',74,423,'Subscriber',94110); +INSERT INTO "trip" VALUES(904921,583,'8/25/2015 17:43','Market at 10th',67,'8/25/2015 17:53','San Francisco Caltrain 2 (330 Townsend)',69,628,'Subscriber',94582); +INSERT INTO "trip" VALUES(904922,516,'8/25/2015 17:43','Market at Sansome',77,'8/25/2015 17:52','Grant Avenue at Columbus Avenue',73,403,'Subscriber',94133); +INSERT INTO "trip" VALUES(904924,235,'8/25/2015 17:43','Broadway St at Battery St',82,'8/25/2015 17:47','Steuart at Market',74,134,'Subscriber',94702); +INSERT INTO "trip" VALUES(904925,580,'8/25/2015 17:44','San Jose Diridon Caltrain Station',2,'8/25/2015 17:53','Ryland Park',84,643,'Subscriber',95112); +INSERT INTO "trip" VALUES(904927,457,'8/25/2015 17:44','Market at 4th',76,'8/25/2015 17:51','San Francisco Caltrain (Townsend at 4th)',70,400,'Subscriber',92067); +INSERT INTO "trip" VALUES(904930,359,'8/25/2015 17:46','Mechanics Plaza (Market at Battery)',75,'8/25/2015 17:52','Embarcadero at Bryant',54,542,'Subscriber',94105); +INSERT INTO "trip" VALUES(904931,497,'8/25/2015 17:48','Embarcadero at Folsom',51,'8/25/2015 17:56','San Francisco Caltrain 2 (330 Townsend)',69,528,'Subscriber',94010); +INSERT INTO "trip" VALUES(904932,884,'8/25/2015 17:48','South Van Ness at Market',66,'8/25/2015 18:03','2nd at Townsend',61,620,'Subscriber',94127); +INSERT INTO "trip" VALUES(904933,269,'8/25/2015 17:48','Mountain View City Hall',27,'8/25/2015 17:53','Mountain View Caltrain Station',28,13,'Subscriber',94103); +INSERT INTO "trip" VALUES(904935,849,'8/25/2015 17:49','South Van Ness at Market',66,'8/25/2015 18:03','2nd at Townsend',61,292,'Subscriber',94127); +INSERT INTO "trip" VALUES(904937,371,'8/25/2015 17:49','Embarcadero at Vallejo',48,'8/25/2015 17:56','Steuart at Market',74,569,'Customer',67654); +INSERT INTO "trip" VALUES(904939,732,'8/25/2015 17:50','California Ave Caltrain Station',36,'8/25/2015 18:02','Palo Alto Caltrain Station',34,715,'Subscriber',94115); +INSERT INTO "trip" VALUES(904940,627,'8/25/2015 17:50','Market at Sansome',77,'8/25/2015 18:01','San Francisco Caltrain (Townsend at 4th)',70,592,'Subscriber',94306); +INSERT INTO "trip" VALUES(904943,615,'8/25/2015 17:50','Yerba Buena Center of the Arts (3rd @ Howard)',68,'8/25/2015 18:01','Harry Bridges Plaza (Ferry Building)',50,609,'Subscriber',94590); +INSERT INTO "trip" VALUES(904944,794,'8/25/2015 17:51','South Van Ness at Market',66,'8/25/2015 18:04','San Francisco Caltrain 2 (330 Townsend)',69,546,'Subscriber',94085); +INSERT INTO "trip" VALUES(904945,77,'8/25/2015 17:51','San Francisco Caltrain 2 (330 Townsend)',69,'8/25/2015 17:52','San Francisco Caltrain 2 (330 Townsend)',69,493,'Subscriber',94107); +INSERT INTO "trip" VALUES(904946,389,'8/25/2015 17:51','San Pedro Square',6,'8/25/2015 17:57','San Jose Diridon Caltrain Station',2,95,'Subscriber',94002); +INSERT INTO "trip" VALUES(904947,627,'8/25/2015 17:51','Clay at Battery',41,'8/25/2015 18:02','Embarcadero at Bryant',54,530,'Subscriber',94070); +INSERT INTO "trip" VALUES(904948,591,'8/25/2015 17:51','Howard at 2nd',63,'8/25/2015 18:01','Embarcadero at Sansome',60,529,'Subscriber',94133); +INSERT INTO "trip" VALUES(904949,789,'8/25/2015 17:51','Steuart at Market',74,'8/25/2015 18:05','San Francisco Caltrain 2 (330 Townsend)',69,423,'Subscriber',94010); +INSERT INTO "trip" VALUES(904950,657,'8/25/2015 17:52','San Francisco Caltrain 2 (330 Townsend)',69,'8/25/2015 18:03','Post at Kearny',47,325,'Subscriber',94114); +INSERT INTO "trip" VALUES(904951,263,'8/25/2015 17:52','Embarcadero at Sansome',60,'8/25/2015 17:56','Steuart at Market',74,631,'Subscriber',94611); +INSERT INTO "trip" VALUES(904952,423,'8/25/2015 17:52','Embarcadero at Vallejo',48,'8/25/2015 17:59','Temporary Transbay Terminal (Howard at Beale)',55,353,'Subscriber',94611); +INSERT INTO "trip" VALUES(904953,427,'8/25/2015 17:52','Grant Avenue at Columbus Avenue',73,'8/25/2015 17:59','Clay at Battery',41,607,'Subscriber',94066); +INSERT INTO "trip" VALUES(904954,399,'8/25/2015 17:53','Embarcadero at Vallejo',48,'8/25/2015 17:59','Embarcadero at Folsom',51,358,'Subscriber',94602); +INSERT INTO "trip" VALUES(904955,774,'8/25/2015 17:53','Market at Sansome',77,'8/25/2015 18:06','San Francisco Caltrain 2 (330 Townsend)',69,391,'Subscriber',94107); +INSERT INTO "trip" VALUES(904956,1599,'8/25/2015 17:53','Broadway St at Battery St',82,'8/25/2015 18:20','San Francisco Caltrain 2 (330 Townsend)',69,507,'Subscriber',94303); +INSERT INTO "trip" VALUES(904957,1918,'8/25/2015 17:54','Embarcadero at Bryant',54,'8/25/2015 18:26','Embarcadero at Folsom',51,392,'Customer',32603); +INSERT INTO "trip" VALUES(904958,641,'8/25/2015 17:54','Steuart at Market',74,'8/25/2015 18:05','San Francisco Caltrain (Townsend at 4th)',70,506,'Subscriber',95051); +INSERT INTO "trip" VALUES(904959,259,'8/25/2015 17:55','Market at Sansome',77,'8/25/2015 17:59','Embarcadero at Folsom',51,585,'Subscriber',94602); +INSERT INTO "trip" VALUES(904960,303,'8/25/2015 17:55','Market at Sansome',77,'8/25/2015 18:00','Temporary Transbay Terminal (Howard at Beale)',55,394,'Subscriber',94618); +INSERT INTO "trip" VALUES(904961,482,'8/25/2015 17:55','San Francisco Caltrain 2 (330 Townsend)',69,'8/25/2015 18:03','Embarcadero at Folsom',51,352,'Subscriber',94105); +INSERT INTO "trip" VALUES(904963,2231,'8/25/2015 17:55','Temporary Transbay Terminal (Howard at Beale)',55,'8/25/2015 18:32','San Francisco Caltrain 2 (330 Townsend)',69,437,'Subscriber',94404); +INSERT INTO "trip" VALUES(904964,189,'8/25/2015 17:55','Mountain View City Hall',27,'8/25/2015 17:58','Mountain View Caltrain Station',28,22,'Subscriber',94107); +INSERT INTO "trip" VALUES(904965,457,'8/25/2015 17:55','Broadway St at Battery St',82,'8/25/2015 18:02','Temporary Transbay Terminal (Howard at Beale)',55,440,'Subscriber',94608); +INSERT INTO "trip" VALUES(904966,221,'8/25/2015 17:55','Mountain View City Hall',27,'8/25/2015 17:59','Mountain View Caltrain Station',28,194,'Subscriber',94107); +INSERT INTO "trip" VALUES(904967,432,'8/25/2015 17:56','5th at Howard',57,'8/25/2015 18:03','San Francisco Caltrain 2 (330 Townsend)',69,444,'Subscriber',94401); +INSERT INTO "trip" VALUES(904968,375,'8/25/2015 17:56','Embarcadero at Sansome',60,'8/25/2015 18:02','Steuart at Market',74,611,'Subscriber',94565); +INSERT INTO "trip" VALUES(904969,341,'8/25/2015 17:56','Temporary Transbay Terminal (Howard at Beale)',55,'8/25/2015 18:02','2nd at Townsend',61,209,'Subscriber',94117); +INSERT INTO "trip" VALUES(904970,602,'8/25/2015 17:56','Davis at Jackson',42,'8/25/2015 18:07','Spear at Folsom',49,283,'Subscriber',94105); +INSERT INTO "trip" VALUES(904971,590,'8/25/2015 17:58','Spear at Folsom',49,'8/25/2015 18:07','Commercial at Montgomery',45,378,'Subscriber',94108); +INSERT INTO "trip" VALUES(904972,1616,'8/25/2015 17:58','Spear at Folsom',49,'8/25/2015 18:25','San Francisco Caltrain 2 (330 Townsend)',69,463,'Subscriber',94080); +INSERT INTO "trip" VALUES(904973,271,'8/25/2015 17:58','Embarcadero at Vallejo',48,'8/25/2015 18:03','Steuart at Market',74,429,'Subscriber',94102); +INSERT INTO "trip" VALUES(904975,374,'8/25/2015 17:58','2nd at South Park',64,'8/25/2015 18:05','San Francisco Caltrain (Townsend at 4th)',70,556,'Subscriber',95008); +INSERT INTO "trip" VALUES(904976,1206,'8/25/2015 17:58','Spear at Folsom',49,'8/25/2015 18:19','San Francisco Caltrain 2 (330 Townsend)',69,504,'Subscriber',94107); +INSERT INTO "trip" VALUES(904977,680,'8/25/2015 17:59','2nd at Townsend',61,'8/25/2015 18:10','Davis at Jackson',42,599,'Subscriber',94111); +INSERT INTO "trip" VALUES(904978,2014,'8/25/2015 17:59','Embarcadero at Folsom',51,'8/25/2015 18:33','San Francisco Caltrain 2 (330 Townsend)',69,585,'Subscriber',94403); +INSERT INTO "trip" VALUES(904979,1602,'8/25/2015 17:59','Market at 10th',67,'8/25/2015 18:26','San Francisco Caltrain 2 (330 Townsend)',69,461,'Subscriber',95120); +INSERT INTO "trip" VALUES(904980,244,'8/25/2015 17:59','San Francisco Caltrain 2 (330 Townsend)',69,'8/25/2015 18:04','Townsend at 7th',65,493,'Subscriber',94107); +INSERT INTO "trip" VALUES(904981,391,'8/25/2015 17:59','Howard at 2nd',63,'8/25/2015 18:06','San Francisco Caltrain (Townsend at 4th)',70,510,'Subscriber',94066); +INSERT INTO "trip" VALUES(904982,1474,'8/25/2015 18:00','Harry Bridges Plaza (Ferry Building)',50,'8/25/2015 18:25','San Francisco Caltrain 2 (330 Townsend)',69,687,'Subscriber',94403); +INSERT INTO "trip" VALUES(904983,554,'8/25/2015 18:01','Market at 10th',67,'8/25/2015 18:10','Mechanics Plaza (Market at Battery)',75,513,'Subscriber',94702); +INSERT INTO "trip" VALUES(904984,909,'8/25/2015 18:01','Market at Sansome',77,'8/25/2015 18:16','San Francisco Caltrain (Townsend at 4th)',70,364,'Subscriber',95134); +INSERT INTO "trip" VALUES(904985,302,'8/25/2015 18:01','Mountain View Caltrain Station',28,'8/25/2015 18:06','Evelyn Park and Ride',30,255,'Subscriber',94087); +INSERT INTO "trip" VALUES(904986,647,'8/25/2015 18:01','Mountain View Caltrain Station',28,'8/25/2015 18:12','Rengstorff Avenue / California Street',33,46,'Subscriber',94040); +INSERT INTO "trip" VALUES(904987,142,'8/25/2015 18:01','Temporary Transbay Terminal (Howard at Beale)',55,'8/25/2015 18:04','Mechanics Plaza (Market at Battery)',75,373,'Subscriber',94960); +INSERT INTO "trip" VALUES(904988,1922,'8/25/2015 18:02','Embarcadero at Bryant',54,'8/25/2015 18:34','San Francisco Caltrain 2 (330 Townsend)',69,453,'Subscriber',94070); +INSERT INTO "trip" VALUES(904989,1138,'8/25/2015 18:02','Howard at 2nd',63,'8/25/2015 18:21','Townsend at 7th',65,465,'Subscriber',94070); +INSERT INTO "trip" VALUES(904990,267,'8/25/2015 18:02','Mountain View City Hall',27,'8/25/2015 18:06','Mountain View Caltrain Station',28,80,'Subscriber',95110); +INSERT INTO "trip" VALUES(904991,205,'8/25/2015 18:02','San Antonio Shopping Center',31,'8/25/2015 18:05','San Antonio Caltrain Station',29,10,'Subscriber',94103); +INSERT INTO "trip" VALUES(904992,1254,'8/25/2015 18:02','Embarcadero at Sansome',60,'8/25/2015 18:23','San Francisco Caltrain 2 (330 Townsend)',69,529,'Subscriber',95128); +INSERT INTO "trip" VALUES(904993,663,'8/25/2015 18:02','2nd at South Park',64,'8/25/2015 18:13','San Francisco Caltrain (Townsend at 4th)',70,517,'Subscriber',94002); +INSERT INTO "trip" VALUES(904994,791,'8/25/2015 18:03','San Francisco Caltrain 2 (330 Townsend)',69,'8/25/2015 18:16','5th at Howard',57,582,'Subscriber',94107); +INSERT INTO "trip" VALUES(904995,1429,'8/25/2015 18:03','Powell Street BART',39,'8/25/2015 18:26','San Francisco Caltrain 2 (330 Townsend)',69,497,'Subscriber',94403); +INSERT INTO "trip" VALUES(904996,1959,'8/25/2015 18:03','Market at 10th',67,'8/25/2015 18:35','San Francisco Caltrain 2 (330 Townsend)',69,56,'Subscriber',94065); +INSERT INTO "trip" VALUES(904997,786,'8/25/2015 18:03','Market at Sansome',77,'8/25/2015 18:16','Grant Avenue at Columbus Avenue',73,432,'Customer','nil'); +INSERT INTO "trip" VALUES(904998,773,'8/25/2015 18:03','Market at Sansome',77,'8/25/2015 18:16','Grant Avenue at Columbus Avenue',73,498,'Customer','nil'); +INSERT INTO "trip" VALUES(904999,410,'8/25/2015 18:03','Townsend at 7th',65,'8/25/2015 18:10','2nd at Townsend',61,322,'Subscriber',94901); +INSERT INTO "trip" VALUES(905000,448,'8/25/2015 18:04','Yerba Buena Center of the Arts (3rd @ Howard)',68,'8/25/2015 18:12','2nd at Townsend',61,634,'Subscriber',94041); +INSERT INTO "trip" VALUES(905001,1408,'8/25/2015 18:05','Spear at Folsom',49,'8/25/2015 18:29','San Francisco Caltrain 2 (330 Townsend)',69,327,'Subscriber',94404); +INSERT INTO "trip" VALUES(905002,645,'8/25/2015 18:05','San Francisco Caltrain (Townsend at 4th)',70,'8/25/2015 18:16','Harry Bridges Plaza (Ferry Building)',50,312,'Subscriber',94930); +INSERT INTO "trip" VALUES(905003,478,'8/25/2015 18:05','Civic Center BART (7th at Market)',72,'8/25/2015 18:13','Beale at Market',56,511,'Subscriber',94608); +INSERT INTO "trip" VALUES(905004,956,'8/25/2015 18:06','2nd at Townsend',61,'8/25/2015 18:22','Broadway St at Battery St',82,292,'Subscriber',94133); +INSERT INTO "trip" VALUES(905006,565,'8/25/2015 18:06','Market at Sansome',77,'8/25/2015 18:16','Embarcadero at Sansome',60,361,'Subscriber',94133); +INSERT INTO "trip" VALUES(905007,969,'8/25/2015 18:06','Temporary Transbay Terminal (Howard at Beale)',55,'8/25/2015 18:23','San Francisco Caltrain 2 (330 Townsend)',69,440,'Subscriber',94401); +INSERT INTO "trip" VALUES(905008,790,'8/25/2015 18:07','2nd at South Park',64,'8/25/2015 18:20','Market at Sansome',77,557,'Subscriber',94607); +INSERT INTO "trip" VALUES(905009,1107,'8/25/2015 18:08','Embarcadero at Sansome',60,'8/25/2015 18:26','South Van Ness at Market',66,311,'Subscriber',94102); +INSERT INTO "trip" VALUES(905010,605,'8/25/2015 18:08','Powell Street BART',39,'8/25/2015 18:18','2nd at Townsend',61,409,'Subscriber',95060); +INSERT INTO "trip" VALUES(905011,1006,'8/25/2015 18:04','2nd at South Park',64,'8/25/2015 18:21','2nd at Townsend',61,328,'Subscriber',95014); +INSERT INTO "trip" VALUES(905012,238,'8/25/2015 18:08','Santa Clara at Almaden',4,'8/25/2015 18:12','San Jose Diridon Caltrain Station',2,658,'Subscriber',94158); +INSERT INTO "trip" VALUES(905013,933,'8/25/2015 18:09','Embarcadero at Sansome',60,'8/25/2015 18:24','San Francisco Caltrain (Townsend at 4th)',70,290,'Subscriber',94103); +INSERT INTO "trip" VALUES(905014,292,'8/25/2015 18:09','SJSU - San Salvador at 9th',16,'8/25/2015 18:14','Paseo de San Antonio',7,64,'Subscriber',95112); +INSERT INTO "trip" VALUES(905015,777,'8/25/2015 18:09','Market at Sansome',77,'8/25/2015 18:22','San Francisco Caltrain 2 (330 Townsend)',69,623,'Subscriber',94303); +INSERT INTO "trip" VALUES(905016,405,'8/25/2015 18:09','Harry Bridges Plaza (Ferry Building)',50,'8/25/2015 18:16','Embarcadero at Sansome',60,672,'Subscriber',94107); +INSERT INTO "trip" VALUES(905017,249,'8/25/2015 18:10','Post at Kearny',47,'8/25/2015 18:14','Clay at Battery',41,325,'Subscriber',94111); +INSERT INTO "trip" VALUES(905018,810,'8/25/2015 18:10','Embarcadero at Sansome',60,'8/25/2015 18:24','2nd at Townsend',61,590,'Customer',94123); +INSERT INTO "trip" VALUES(905019,1116,'8/25/2015 18:11','Embarcadero at Vallejo',48,'8/25/2015 18:29','San Francisco Caltrain 2 (330 Townsend)',69,214,'Subscriber',94403); +INSERT INTO "trip" VALUES(905020,652,'8/25/2015 18:11','2nd at Townsend',61,'8/25/2015 18:22','Steuart at Market',74,322,'Subscriber',94609); +INSERT INTO "trip" VALUES(905021,485,'8/25/2015 18:12','2nd at South Park',64,'8/25/2015 18:20','Steuart at Market',74,659,'Subscriber',94901); +INSERT INTO "trip" VALUES(905023,563,'8/25/2015 18:12','Market at 10th',67,'8/25/2015 18:22','Market at Sansome',77,309,'Subscriber',94556); +INSERT INTO "trip" VALUES(905024,205,'8/25/2015 18:13','Broadway St at Battery St',82,'8/25/2015 18:16','Steuart at Market',74,189,'Subscriber',94556); +INSERT INTO "trip" VALUES(905025,227,'8/25/2015 18:13','Broadway St at Battery St',82,'8/25/2015 18:17','Harry Bridges Plaza (Ferry Building)',50,267,'Subscriber',94610); +INSERT INTO "trip" VALUES(905026,534,'8/25/2015 18:13','San Francisco Caltrain (Townsend at 4th)',70,'8/25/2015 18:22','Embarcadero at Bryant',54,527,'Subscriber',94105); +INSERT INTO "trip" VALUES(905029,372,'8/25/2015 18:14','2nd at Townsend',61,'8/25/2015 18:20','Steuart at Market',74,634,'Subscriber',95401); +INSERT INTO "trip" VALUES(905032,786,'8/25/2015 18:15','Market at Sansome',77,'8/25/2015 18:28','San Francisco Caltrain 2 (330 Townsend)',69,334,'Subscriber',94087); +INSERT INTO "trip" VALUES(905033,460,'8/25/2015 18:15','5th at Howard',57,'8/25/2015 18:23','San Francisco Caltrain 2 (330 Townsend)',69,584,'Subscriber',94402); +INSERT INTO "trip" VALUES(905034,285,'8/25/2015 18:15','Broadway St at Battery St',82,'8/25/2015 18:20','Beale at Market',56,329,'Subscriber',94112); +INSERT INTO "trip" VALUES(905035,680,'8/25/2015 18:16','Broadway St at Battery St',82,'8/25/2015 18:27','San Francisco Caltrain 2 (330 Townsend)',69,454,'Subscriber',95129); +INSERT INTO "trip" VALUES(905036,852,'8/25/2015 18:16','San Francisco Caltrain (Townsend at 4th)',70,'8/25/2015 18:30','Golden Gate at Polk',59,602,'Subscriber',94109); +INSERT INTO "trip" VALUES(905037,395,'8/25/2015 18:16','Broadway St at Battery St',82,'8/25/2015 18:23','Temporary Transbay Terminal (Howard at Beale)',55,598,'Subscriber',94602); +INSERT INTO "trip" VALUES(905042,587,'8/25/2015 18:17','Howard at 2nd',63,'8/25/2015 18:27','San Francisco Caltrain 2 (330 Townsend)',69,306,'Subscriber',94010); +INSERT INTO "trip" VALUES(905043,877,'8/25/2015 18:18','San Francisco Caltrain 2 (330 Townsend)',69,'8/25/2015 18:32','South Van Ness at Market',66,505,'Subscriber',94102); +INSERT INTO "trip" VALUES(905044,311,'8/25/2015 18:18','San Francisco Caltrain 2 (330 Townsend)',69,'8/25/2015 18:23','2nd at Townsend',61,350,'Subscriber',94107); +INSERT INTO "trip" VALUES(905045,754,'8/25/2015 18:18','Harry Bridges Plaza (Ferry Building)',50,'8/25/2015 18:31','2nd at Townsend',61,609,'Subscriber',94107); +INSERT INTO "trip" VALUES(905049,249,'8/25/2015 18:20','Market at Sansome',77,'8/25/2015 18:24','Harry Bridges Plaza (Ferry Building)',50,557,'Subscriber',94105); +INSERT INTO "trip" VALUES(905050,222,'8/25/2015 18:20','2nd at Townsend',61,'8/25/2015 18:24','2nd at Folsom',62,526,'Subscriber',94610); +INSERT INTO "trip" VALUES(905051,741,'8/25/2015 18:20','Townsend at 7th',65,'8/25/2015 18:33','Yerba Buena Center of the Arts (3rd @ Howard)',68,493,'Subscriber',94107); +INSERT INTO "trip" VALUES(905052,351,'8/25/2015 18:21','Embarcadero at Sansome',60,'8/25/2015 18:26','Steuart at Market',74,386,'Subscriber',94111); +INSERT INTO "trip" VALUES(905053,469,'8/25/2015 18:21','Powell Street BART',39,'8/25/2015 18:29','Market at 10th',67,270,'Subscriber',94102); +INSERT INTO "trip" VALUES(905054,622,'8/25/2015 18:21','Market at 4th',76,'8/25/2015 18:31','San Francisco Caltrain (Townsend at 4th)',70,516,'Subscriber',94107); +INSERT INTO "trip" VALUES(905057,772,'8/25/2015 18:21','Beale at Market',56,'8/25/2015 18:34','Golden Gate at Polk',59,329,'Subscriber',94109); +INSERT INTO "trip" VALUES(905058,759,'8/25/2015 18:22','San Francisco Caltrain (Townsend at 4th)',70,'8/25/2015 18:34','Market at 4th',76,364,'Subscriber',94542); +INSERT INTO "trip" VALUES(905061,125,'8/25/2015 18:23','Howard at 2nd',63,'8/25/2015 18:25','Market at Sansome',77,877,'Subscriber',94114); +INSERT INTO "trip" VALUES(905062,717,'8/25/2015 18:18','Embarcadero at Folsom',51,'8/25/2015 18:30','San Francisco Caltrain 2 (330 Townsend)',69,358,'Subscriber',95129); +INSERT INTO "trip" VALUES(905063,749,'8/25/2015 18:23','Steuart at Market',74,'8/25/2015 18:35','5th at Howard',57,569,'Subscriber',94107); +INSERT INTO "trip" VALUES(905066,476,'8/25/2015 18:24','Townsend at 7th',65,'8/25/2015 18:32','2nd at Townsend',61,575,'Subscriber',94105); +INSERT INTO "trip" VALUES(905067,809,'8/25/2015 18:24','San Antonio Shopping Center',31,'8/25/2015 18:38','Mountain View Caltrain Station',28,258,'Subscriber',94109); +INSERT INTO "trip" VALUES(905068,723,'8/25/2015 18:24','Townsend at 7th',65,'8/25/2015 18:36','Embarcadero at Bryant',54,494,'Subscriber',94103); +INSERT INTO "trip" VALUES(905069,292,'8/25/2015 18:25','Mountain View City Hall',27,'8/25/2015 18:30','Mountain View Caltrain Station',28,262,'Subscriber',94110); +INSERT INTO "trip" VALUES(905071,516,'8/25/2015 18:25','Grant Avenue at Columbus Avenue',73,'8/25/2015 18:33','Temporary Transbay Terminal (Howard at Beale)',55,508,'Subscriber',94133); +INSERT INTO "trip" VALUES(905074,554,'8/25/2015 18:25','Steuart at Market',74,'8/25/2015 18:34','2nd at Townsend',61,429,'Subscriber',94107); +INSERT INTO "trip" VALUES(905075,347,'8/25/2015 18:26','2nd at Townsend',61,'8/25/2015 18:31','San Francisco Caltrain 2 (330 Townsend)',69,567,'Subscriber',94403); +INSERT INTO "trip" VALUES(905076,601,'8/25/2015 18:26','Embarcadero at Sansome',60,'8/25/2015 18:36','Grant Avenue at Columbus Avenue',73,625,'Customer',94100); +INSERT INTO "trip" VALUES(905077,579,'8/25/2015 18:26','Embarcadero at Sansome',60,'8/25/2015 18:36','Grant Avenue at Columbus Avenue',73,636,'Customer',94100); +INSERT INTO "trip" VALUES(905078,225,'8/25/2015 18:26','Embarcadero at Vallejo',48,'8/25/2015 18:30','Steuart at Market',74,624,'Subscriber',94608); +INSERT INTO "trip" VALUES(905079,302,'8/25/2015 18:26','Evelyn Park and Ride',30,'8/25/2015 18:31','Mountain View Caltrain Station',28,255,'Subscriber',94110); +INSERT INTO "trip" VALUES(905082,323,'8/25/2015 18:27','Yerba Buena Center of the Arts (3rd @ Howard)',68,'8/25/2015 18:32','Powell Street BART',39,473,'Subscriber',94804); +INSERT INTO "trip" VALUES(905083,951,'8/25/2015 18:27','San Jose Diridon Caltrain Station',2,'8/25/2015 18:43','SJSU - San Salvador at 9th',16,488,'Subscriber',95112); +INSERT INTO "trip" VALUES(905086,873,'8/25/2015 18:28','Powell Street BART',39,'8/25/2015 18:42','Embarcadero at Sansome',60,428,'Subscriber',94133); +INSERT INTO "trip" VALUES(905090,488,'8/25/2015 18:30','Embarcadero at Folsom',51,'8/25/2015 18:38','2nd at Townsend',61,392,'Subscriber',94107); +INSERT INTO "trip" VALUES(905092,478,'8/25/2015 18:31','San Francisco Caltrain (Townsend at 4th)',70,'8/25/2015 18:39','Embarcadero at Bryant',54,193,'Subscriber',94105); +INSERT INTO "trip" VALUES(905093,495,'8/25/2015 18:31','Spear at Folsom',49,'8/25/2015 18:39','San Francisco Caltrain (Townsend at 4th)',70,560,'Subscriber',94105); +INSERT INTO "trip" VALUES(905095,280,'8/25/2015 18:32','Evelyn Park and Ride',30,'8/25/2015 18:37','Mountain View Caltrain Station',28,141,'Subscriber',94133); +INSERT INTO "trip" VALUES(905097,229,'8/25/2015 18:32','Mountain View City Hall',27,'8/25/2015 18:36','Mountain View Caltrain Station',28,147,'Subscriber',93950); +INSERT INTO "trip" VALUES(905098,1136,'8/25/2015 18:33','Powell Street BART',39,'8/25/2015 18:52','Embarcadero at Sansome',60,317,'Customer',20002); +INSERT INTO "trip" VALUES(905099,313,'8/25/2015 18:33','Redwood City Caltrain Station',22,'8/25/2015 18:38','Redwood City Medical Center',26,655,'Subscriber',94063); +INSERT INTO "trip" VALUES(905101,340,'8/25/2015 18:33','Redwood City Caltrain Station',22,'8/25/2015 18:39','Mezes Park',83,699,'Subscriber',94070); +INSERT INTO "trip" VALUES(905102,509,'8/25/2015 18:33','Temporary Transbay Terminal (Howard at Beale)',55,'8/25/2015 18:42','5th at Howard',57,420,'Subscriber',94105); +INSERT INTO "trip" VALUES(905104,1008,'8/25/2015 18:35','Powell Street BART',39,'8/25/2015 18:52','Embarcadero at Sansome',60,483,'Customer',20002); +INSERT INTO "trip" VALUES(905105,508,'8/25/2015 18:35','Market at Sansome',77,'8/25/2015 18:44','2nd at Townsend',61,877,'Subscriber',94002); +INSERT INTO "trip" VALUES(905106,1347,'8/25/2015 18:35','Broadway St at Battery St',82,'8/25/2015 18:57','San Francisco Caltrain 2 (330 Townsend)',69,267,'Subscriber',94065); +INSERT INTO "trip" VALUES(905107,1169,'8/25/2015 18:36','Embarcadero at Sansome',60,'8/25/2015 18:55','Market at 4th',76,501,'Subscriber',94122); +INSERT INTO "trip" VALUES(905108,270,'8/25/2015 18:36','San Jose Diridon Caltrain Station',2,'8/25/2015 18:40','Santa Clara at Almaden',4,142,'Subscriber',95110); +INSERT INTO "trip" VALUES(905109,513,'8/25/2015 18:36','Temporary Transbay Terminal (Howard at Beale)',55,'8/25/2015 18:44','San Francisco Caltrain (Townsend at 4th)',70,583,'Subscriber',94062); +INSERT INTO "trip" VALUES(905110,453,'8/25/2015 18:36','San Jose Diridon Caltrain Station',2,'8/25/2015 18:44','Paseo de San Antonio',7,65,'Subscriber',95112); +INSERT INTO "trip" VALUES(905111,438,'8/25/2015 18:36','2nd at Townsend',61,'8/25/2015 18:43','Market at Sansome',77,575,'Subscriber',94705); +INSERT INTO "trip" VALUES(905112,442,'8/25/2015 18:36','San Jose Diridon Caltrain Station',2,'8/25/2015 18:44','Paseo de San Antonio',7,712,'Subscriber',95113); +INSERT INTO "trip" VALUES(905113,808,'8/25/2015 18:36','Grant Avenue at Columbus Avenue',73,'8/25/2015 18:50','Post at Kearny',47,625,'Customer',94100); +INSERT INTO "trip" VALUES(905114,770,'8/25/2015 18:36','Grant Avenue at Columbus Avenue',73,'8/25/2015 18:49','Post at Kearny',47,636,'Customer',94100); +INSERT INTO "trip" VALUES(905115,431,'8/25/2015 18:36','Embarcadero at Sansome',60,'8/25/2015 18:44','Embarcadero at Folsom',51,426,'Subscriber',94124); +INSERT INTO "trip" VALUES(905116,542,'8/25/2015 18:36','Howard at 2nd',63,'8/25/2015 18:46','San Francisco Caltrain 2 (330 Townsend)',69,552,'Subscriber',94063); +INSERT INTO "trip" VALUES(905117,465,'8/25/2015 18:37','Spear at Folsom',49,'8/25/2015 18:45','San Francisco Caltrain (Townsend at 4th)',70,411,'Subscriber',94403); +INSERT INTO "trip" VALUES(905118,385,'8/25/2015 18:38','Steuart at Market',74,'8/25/2015 18:44','Embarcadero at Sansome',60,611,'Customer','nil'); +INSERT INTO "trip" VALUES(905119,700,'8/25/2015 18:38','Mountain View Caltrain Station',28,'8/25/2015 18:49','Rengstorff Avenue / California Street',33,22,'Subscriber',94040); +INSERT INTO "trip" VALUES(905120,399,'8/25/2015 18:39','San Francisco Caltrain (Townsend at 4th)',70,'8/25/2015 18:45','Embarcadero at Bryant',54,510,'Subscriber',94105); +INSERT INTO "trip" VALUES(905121,447,'8/25/2015 18:39','San Jose Diridon Caltrain Station',2,'8/25/2015 18:47','Santa Clara at Almaden',4,95,'Customer',95113); +INSERT INTO "trip" VALUES(905122,563,'8/25/2015 18:40','San Francisco Caltrain (Townsend at 4th)',70,'8/25/2015 18:49','Harry Bridges Plaza (Ferry Building)',50,470,'Subscriber',94133); +INSERT INTO "trip" VALUES(905124,76,'8/25/2015 18:41','Commercial at Montgomery',45,'8/25/2015 18:42','Commercial at Montgomery',45,335,'Subscriber',94107); +INSERT INTO "trip" VALUES(905125,365,'8/25/2015 18:42','San Francisco Caltrain (Townsend at 4th)',70,'8/25/2015 18:48','Townsend at 7th',65,576,'Subscriber',94107); +INSERT INTO "trip" VALUES(905126,480,'8/25/2015 18:42','Market at 4th',76,'8/25/2015 18:50','Temporary Transbay Terminal (Howard at Beale)',55,364,'Subscriber',94608); +INSERT INTO "trip" VALUES(905127,895,'8/25/2015 18:42','Townsend at 7th',65,'8/25/2015 18:57','San Francisco Caltrain (Townsend at 4th)',70,465,'Subscriber',94040); +INSERT INTO "trip" VALUES(905128,386,'8/25/2015 18:42','2nd at South Park',64,'8/25/2015 18:49','San Francisco Caltrain (Townsend at 4th)',70,410,'Subscriber',94301); +INSERT INTO "trip" VALUES(905129,383,'8/25/2015 18:43','San Jose Diridon Caltrain Station',2,'8/25/2015 18:49','Paseo de San Antonio',7,691,'Subscriber',95113); +INSERT INTO "trip" VALUES(905130,669,'8/25/2015 18:43','Townsend at 7th',65,'8/25/2015 18:54','San Francisco Caltrain (Townsend at 4th)',70,437,'Subscriber',94043); +INSERT INTO "trip" VALUES(905131,627,'8/25/2015 18:43','Temporary Transbay Terminal (Howard at Beale)',55,'8/25/2015 18:54','Embarcadero at Sansome',60,370,'Subscriber',94133); +INSERT INTO "trip" VALUES(905132,201,'8/25/2015 18:43','San Francisco Caltrain 2 (330 Townsend)',69,'8/25/2015 18:47','2nd at South Park',64,504,'Subscriber',94107); +INSERT INTO "trip" VALUES(905133,1053,'8/25/2015 18:43','2nd at Townsend',61,'8/25/2015 19:01','Clay at Battery',41,350,'Subscriber',94133); +INSERT INTO "trip" VALUES(905134,293,'8/25/2015 18:44','San Jose Diridon Caltrain Station',2,'8/25/2015 18:49','Santa Clara at Almaden',4,208,'Subscriber',95110); +INSERT INTO "trip" VALUES(905135,489,'8/25/2015 18:44','Spear at Folsom',49,'8/25/2015 18:52','Broadway St at Battery St',82,502,'Subscriber',94133); +INSERT INTO "trip" VALUES(905136,223,'8/25/2015 18:45','Temporary Transbay Terminal (Howard at Beale)',55,'8/25/2015 18:48','Harry Bridges Plaza (Ferry Building)',50,508,'Subscriber',94965); +INSERT INTO "trip" VALUES(905138,346,'8/25/2015 18:45','Commercial at Montgomery',45,'8/25/2015 18:51','Yerba Buena Center of the Arts (3rd @ Howard)',68,378,'Subscriber',94107); +INSERT INTO "trip" VALUES(905140,646,'8/25/2015 18:45','Davis at Jackson',42,'8/25/2015 18:56','2nd at South Park',64,269,'Subscriber',95610); +INSERT INTO "trip" VALUES(905141,643,'8/25/2015 18:46','Spear at Folsom',49,'8/25/2015 18:56','San Francisco Caltrain 2 (330 Townsend)',69,283,'Subscriber',94105); +INSERT INTO "trip" VALUES(905142,788,'8/25/2015 18:46','2nd at South Park',64,'8/25/2015 18:59','Davis at Jackson',42,374,'Subscriber',94133); +INSERT INTO "trip" VALUES(905143,150,'8/25/2015 18:46','Steuart at Market',74,'8/25/2015 18:48','Davis at Jackson',42,659,'Subscriber',94133); +INSERT INTO "trip" VALUES(905144,739,'8/25/2015 18:46','Beale at Market',56,'8/25/2015 18:58','San Francisco Caltrain 2 (330 Townsend)',69,511,'Subscriber',94611); +INSERT INTO "trip" VALUES(905145,676,'8/25/2015 18:46','Yerba Buena Center of the Arts (3rd @ Howard)',68,'8/25/2015 18:57','San Francisco Caltrain (Townsend at 4th)',70,354,'Subscriber',94158); +INSERT INTO "trip" VALUES(905146,256,'8/25/2015 18:46','San Jose Diridon Caltrain Station',2,'8/25/2015 18:51','Santa Clara at Almaden',4,50,'Subscriber',95110); +INSERT INTO "trip" VALUES(905147,653,'8/25/2015 18:47','Mechanics Plaza (Market at Battery)',75,'8/25/2015 18:57','Embarcadero at Sansome',60,405,'Subscriber',94133); +INSERT INTO "trip" VALUES(905148,3439,'8/25/2015 18:47','Harry Bridges Plaza (Ferry Building)',50,'8/25/2015 19:44','Golden Gate at Polk',59,558,'Customer',32603); +INSERT INTO "trip" VALUES(905150,688,'8/25/2015 18:47','Yerba Buena Center of the Arts (3rd @ Howard)',68,'8/25/2015 18:59','Townsend at 7th',65,493,'Subscriber',94116); +INSERT INTO "trip" VALUES(905151,504,'8/25/2015 18:48','San Francisco Caltrain (Townsend at 4th)',70,'8/25/2015 18:57','Temporary Transbay Terminal (Howard at Beale)',55,560,'Subscriber',94707); +INSERT INTO "trip" VALUES(905152,466,'8/25/2015 18:50','Mechanics Plaza (Market at Battery)',75,'8/25/2015 18:58','Powell Street BART',39,566,'Subscriber',94103); +INSERT INTO "trip" VALUES(905153,584,'8/25/2015 18:50','Embarcadero at Sansome',60,'8/25/2015 19:00','Market at Sansome',77,361,'Subscriber',94109); +INSERT INTO "trip" VALUES(905154,272,'8/25/2015 18:51','San Antonio Caltrain Station',29,'8/25/2015 18:55','San Antonio Shopping Center',31,27,'Subscriber',94040); +INSERT INTO "trip" VALUES(905155,589,'8/25/2015 18:53','Mechanics Plaza (Market at Battery)',75,'8/25/2015 19:02','Embarcadero at Bryant',54,513,'Subscriber',94105); +INSERT INTO "trip" VALUES(905156,496,'8/25/2015 18:53','San Francisco Caltrain (Townsend at 4th)',70,'8/25/2015 19:01','Powell Street BART',39,516,'Subscriber',94607); +INSERT INTO "trip" VALUES(905157,806,'8/25/2015 18:54','Townsend at 7th',65,'8/25/2015 19:07','Temporary Transbay Terminal (Howard at Beale)',55,576,'Subscriber',94103); +INSERT INTO "trip" VALUES(905158,753,'8/25/2015 18:54','Townsend at 7th',65,'8/25/2015 19:07','Yerba Buena Center of the Arts (3rd @ Howard)',68,529,'Customer',92606); +INSERT INTO "trip" VALUES(905159,522,'8/25/2015 18:55','Powell at Post (Union Square)',71,'8/25/2015 19:04','San Francisco Caltrain (Townsend at 4th)',70,338,'Subscriber',94158); +INSERT INTO "trip" VALUES(905160,149,'8/25/2015 18:56','Temporary Transbay Terminal (Howard at Beale)',55,'8/25/2015 18:58','Beale at Market',56,394,'Subscriber',94030); +INSERT INTO "trip" VALUES(905161,399,'8/25/2015 18:56','San Francisco Caltrain 2 (330 Townsend)',69,'8/25/2015 19:03','5th at Howard',57,534,'Subscriber',94103); +INSERT INTO "trip" VALUES(905162,389,'8/25/2015 18:56','Harry Bridges Plaza (Ferry Building)',50,'8/25/2015 19:03','Embarcadero at Sansome',60,570,'Subscriber',94108); +INSERT INTO "trip" VALUES(905163,238,'8/25/2015 18:56','Castro Street and El Camino Real',32,'8/25/2015 19:00','Mountain View Caltrain Station',28,203,'Subscriber',2780); +INSERT INTO "trip" VALUES(905164,761,'8/25/2015 18:56','Harry Bridges Plaza (Ferry Building)',50,'8/25/2015 19:09','San Francisco Caltrain 2 (330 Townsend)',69,385,'Subscriber',95051); +INSERT INTO "trip" VALUES(905165,357,'8/25/2015 18:57','San Francisco Caltrain (Townsend at 4th)',70,'8/25/2015 19:03','2nd at South Park',64,290,'Subscriber',94107); +INSERT INTO "trip" VALUES(905166,351,'8/25/2015 18:57','San Francisco Caltrain 2 (330 Townsend)',69,'8/25/2015 19:02','5th at Howard',57,56,'Subscriber',94103); +INSERT INTO "trip" VALUES(905167,51769,'8/25/2015 18:57','SJSU - San Salvador at 9th',16,'8/26/2015 9:20','SJSU - San Salvador at 9th',16,63,'Customer','nil'); +INSERT INTO "trip" VALUES(905168,253,'8/25/2015 18:57','San Francisco Caltrain (Townsend at 4th)',70,'8/25/2015 19:01','2nd at Townsend',61,583,'Subscriber',94107); +INSERT INTO "trip" VALUES(905169,726,'8/25/2015 18:57','San Francisco Caltrain (Townsend at 4th)',70,'8/25/2015 19:09','Davis at Jackson',42,437,'Subscriber',94111); +INSERT INTO "trip" VALUES(905170,519,'8/25/2015 18:57','San Francisco Caltrain 2 (330 Townsend)',69,'8/25/2015 19:06','Harry Bridges Plaza (Ferry Building)',50,283,'Subscriber',94610); +INSERT INTO "trip" VALUES(905171,411,'8/25/2015 19:00','SJSU 4th at San Carlos',12,'8/25/2015 19:07','MLK Library',11,648,'Subscriber',95032); +INSERT INTO "trip" VALUES(905172,585,'8/25/2015 19:01','Powell Street BART',39,'8/25/2015 19:11','2nd at South Park',64,500,'Subscriber',94705); +INSERT INTO "trip" VALUES(905173,546,'8/25/2015 19:01','2nd at Townsend',61,'8/25/2015 19:10','Harry Bridges Plaza (Ferry Building)',50,392,'Subscriber',94960); +INSERT INTO "trip" VALUES(905174,925,'8/25/2015 19:01','Steuart at Market',74,'8/25/2015 19:17','San Francisco Caltrain (Townsend at 4th)',70,67,'Subscriber',94107); +INSERT INTO "trip" VALUES(905175,445,'8/25/2015 19:02','San Francisco Caltrain 2 (330 Townsend)',69,'8/25/2015 19:10','Embarcadero at Bryant',54,555,'Subscriber',94105); +INSERT INTO "trip" VALUES(905177,809,'8/25/2015 19:03','Beale at Market',56,'8/25/2015 19:16','Market at 10th',67,394,'Subscriber',94117); +INSERT INTO "trip" VALUES(905178,285,'8/25/2015 19:03','Steuart at Market',74,'8/25/2015 19:08','Broadway St at Battery St',82,134,'Subscriber',94133); +INSERT INTO "trip" VALUES(905179,385,'8/25/2015 19:04','Mountain View Caltrain Station',28,'8/25/2015 19:10','Evelyn Park and Ride',30,203,'Subscriber',94040); +INSERT INTO "trip" VALUES(905180,474,'8/25/2015 19:04','Market at Sansome',77,'8/25/2015 19:12','Embarcadero at Sansome',60,309,'Subscriber',94111); +INSERT INTO "trip" VALUES(905181,452,'8/25/2015 19:04','Market at 4th',76,'8/25/2015 19:12','Spear at Folsom',49,501,'Subscriber',94105); +INSERT INTO "trip" VALUES(905182,750,'8/25/2015 19:04','Temporary Transbay Terminal (Howard at Beale)',55,'8/25/2015 19:17','San Francisco Caltrain 2 (330 Townsend)',69,560,'Subscriber',94030); +INSERT INTO "trip" VALUES(905183,472,'8/25/2015 19:04','Harry Bridges Plaza (Ferry Building)',50,'8/25/2015 19:12','Spear at Folsom',49,69,'Subscriber',94105); +INSERT INTO "trip" VALUES(905184,163,'8/25/2015 19:05','Post at Kearny',47,'8/25/2015 19:07','Commercial at Montgomery',45,625,'Subscriber',94114); +INSERT INTO "trip" VALUES(905185,241,'8/25/2015 19:09','Davis at Jackson',42,'8/25/2015 19:14','Embarcadero at Sansome',60,599,'Subscriber',94133); +INSERT INTO "trip" VALUES(905186,474,'8/25/2015 19:10','Market at 10th',67,'8/25/2015 19:18','San Francisco Caltrain 2 (330 Townsend)',69,471,'Subscriber',94025); +INSERT INTO "trip" VALUES(905187,203,'8/25/2015 19:10','Civic Center BART (7th at Market)',72,'8/25/2015 19:13','Powell Street BART',39,451,'Subscriber',94133); +INSERT INTO "trip" VALUES(905188,980,'8/25/2015 19:10','Broadway St at Battery St',82,'8/25/2015 19:27','5th at Howard',57,331,'Subscriber',94107); +INSERT INTO "trip" VALUES(905189,419,'8/25/2015 19:10','2nd at Folsom',62,'8/25/2015 19:17','San Francisco Caltrain 2 (330 Townsend)',69,526,'Subscriber',94025); +INSERT INTO "trip" VALUES(905190,486,'8/25/2015 19:11','San Francisco City Hall',58,'8/25/2015 19:19','Market at 4th',76,332,'Subscriber',94105); +INSERT INTO "trip" VALUES(905191,626,'8/25/2015 19:11','San Francisco Caltrain 2 (330 Townsend)',69,'8/25/2015 19:21','Powell Street BART',39,291,'Subscriber',94107); +INSERT INTO "trip" VALUES(905192,290,'8/25/2015 19:11','Market at Sansome',77,'8/25/2015 19:16','2nd at Folsom',62,361,'Subscriber',94107); +INSERT INTO "trip" VALUES(905193,1296,'8/25/2015 19:11','Townsend at 7th',65,'8/25/2015 19:33','Broadway St at Battery St',82,454,'Subscriber',98033); +INSERT INTO "trip" VALUES(905194,411,'8/25/2015 19:11','5th at Howard',57,'8/25/2015 19:18','San Francisco Caltrain (Townsend at 4th)',70,56,'Subscriber',94303); +INSERT INTO "trip" VALUES(905195,374,'8/25/2015 19:11','San Francisco Caltrain 2 (330 Townsend)',69,'8/25/2015 19:17','5th at Howard',57,511,'Subscriber',94103); +INSERT INTO "trip" VALUES(905196,338,'8/25/2015 19:12','San Francisco Caltrain 2 (330 Townsend)',69,'8/25/2015 19:17','5th at Howard',57,507,'Subscriber',94103); +INSERT INTO "trip" VALUES(905197,485,'8/25/2015 19:12','San Francisco Caltrain (Townsend at 4th)',70,'8/25/2015 19:20','Howard at 2nd',63,338,'Subscriber',94105); +INSERT INTO "trip" VALUES(905198,218,'8/25/2015 19:14','San Francisco Caltrain 2 (330 Townsend)',69,'8/25/2015 19:18','Townsend at 7th',65,443,'Subscriber',94306); +INSERT INTO "trip" VALUES(905199,457,'8/25/2015 19:15','MLK Library',11,'8/25/2015 19:23','San Jose Diridon Caltrain Station',2,213,'Subscriber',94118); +INSERT INTO "trip" VALUES(905200,749,'8/25/2015 19:16','Clay at Battery',41,'8/25/2015 19:28','San Francisco Caltrain (Townsend at 4th)',70,459,'Subscriber',94043); +INSERT INTO "trip" VALUES(905201,980,'8/25/2015 19:17','Townsend at 7th',65,'8/25/2015 19:33','Spear at Folsom',49,327,'Subscriber',94103); +INSERT INTO "trip" VALUES(905204,319,'8/25/2015 19:18','Commercial at Montgomery',45,'8/25/2015 19:23','Temporary Transbay Terminal (Howard at Beale)',55,335,'Subscriber',94611); +INSERT INTO "trip" VALUES(905205,352,'8/25/2015 19:19','Market at Sansome',77,'8/25/2015 19:24','2nd at South Park',64,575,'Subscriber',94107); +INSERT INTO "trip" VALUES(905208,243,'8/25/2015 19:20','Grant Avenue at Columbus Avenue',73,'8/25/2015 19:24','Clay at Battery',41,572,'Subscriber',94109); +INSERT INTO "trip" VALUES(905211,625,'8/25/2015 19:21','Market at 4th',76,'8/25/2015 19:31','San Francisco City Hall',58,332,'Subscriber',94102); +INSERT INTO "trip" VALUES(905214,4851,'8/25/2015 19:21','California Ave Caltrain Station',36,'8/25/2015 20:42','Mountain View Caltrain Station',28,301,'Customer',5020881); +INSERT INTO "trip" VALUES(905217,393,'8/25/2015 19:22','2nd at Folsom',62,'8/25/2015 19:29','Beale at Market',56,361,'Subscriber',94015); +INSERT INTO "trip" VALUES(905220,253,'8/25/2015 19:23','Embarcadero at Vallejo',48,'8/25/2015 19:27','Steuart at Market',74,589,'Subscriber',94706); +INSERT INTO "trip" VALUES(905226,570,'8/25/2015 19:27','Rengstorff Avenue / California Street',33,'8/25/2015 19:36','Mountain View Caltrain Station',28,264,'Subscriber',92064); +INSERT INTO "trip" VALUES(905228,267,'8/25/2015 19:28','San Francisco Caltrain 2 (330 Townsend)',69,'8/25/2015 19:32','2nd at Townsend',61,526,'Subscriber',94158); +INSERT INTO "trip" VALUES(905229,257,'8/25/2015 19:28','San Francisco Caltrain 2 (330 Townsend)',69,'8/25/2015 19:32','2nd at Townsend',61,553,'Subscriber',94107); +INSERT INTO "trip" VALUES(905230,583,'8/25/2015 19:28','San Francisco Caltrain 2 (330 Townsend)',69,'8/25/2015 19:37','Market at 10th',67,554,'Subscriber',94102); +INSERT INTO "trip" VALUES(905232,500,'8/25/2015 19:31','Townsend at 7th',65,'8/25/2015 19:39','2nd at Townsend',61,567,'Subscriber',94107); +INSERT INTO "trip" VALUES(905233,617,'8/25/2015 19:31','Clay at Battery',41,'8/25/2015 19:42','2nd at South Park',64,572,'Subscriber',94117); +INSERT INTO "trip" VALUES(905234,64,'8/25/2015 19:32','Steuart at Market',74,'8/25/2015 19:33','Steuart at Market',74,589,'Subscriber',94706); +INSERT INTO "trip" VALUES(905237,497,'8/25/2015 19:33','Temporary Transbay Terminal (Howard at Beale)',55,'8/25/2015 19:41','Grant Avenue at Columbus Avenue',73,335,'Subscriber',94566); +INSERT INTO "trip" VALUES(905238,453,'8/25/2015 19:32','Clay at Battery',41,'8/25/2015 19:40','Grant Avenue at Columbus Avenue',73,325,'Subscriber',94109); +INSERT INTO "trip" VALUES(905241,768,'8/25/2015 19:36','Spear at Folsom',49,'8/25/2015 19:49','Townsend at 7th',65,442,'Subscriber',94103); +INSERT INTO "trip" VALUES(905242,359,'8/25/2015 19:38','5th at Howard',57,'8/25/2015 19:44','Post at Kearny',47,582,'Subscriber',94103); +INSERT INTO "trip" VALUES(905243,755,'8/25/2015 19:39','South Van Ness at Market',66,'8/25/2015 19:51','Temporary Transbay Terminal (Howard at Beale)',55,311,'Subscriber',94611); +INSERT INTO "trip" VALUES(905244,608,'8/25/2015 19:39','Mechanics Plaza (Market at Battery)',75,'8/25/2015 19:49','Market at 10th',67,574,'Subscriber',94102); +INSERT INTO "trip" VALUES(905245,231,'8/25/2015 19:40','2nd at Folsom',62,'8/25/2015 19:44','2nd at South Park',64,579,'Subscriber',94306); +INSERT INTO "trip" VALUES(905246,156,'8/25/2015 19:40','Post at Kearny',47,'8/25/2015 19:43','Market at Sansome',77,636,'Customer',94100); +INSERT INTO "trip" VALUES(905247,774,'8/25/2015 19:41','Ryland Park',84,'8/25/2015 19:54','Japantown',9,688,'Customer',84092); +INSERT INTO "trip" VALUES(905248,189,'8/25/2015 19:43','Commercial at Montgomery',45,'8/25/2015 19:46','Broadway St at Battery St',82,371,'Subscriber',94114); +INSERT INTO "trip" VALUES(905249,450,'8/25/2015 19:43','Spear at Folsom',49,'8/25/2015 19:51','Embarcadero at Sansome',60,404,'Customer',94119); +INSERT INTO "trip" VALUES(905250,937,'8/25/2015 19:45','Market at Sansome',77,'8/25/2015 20:00','Powell Street BART',39,636,'Customer',94100); +INSERT INTO "trip" VALUES(905251,522,'8/25/2015 19:45','San Francisco Caltrain (Townsend at 4th)',70,'8/25/2015 19:54','Powell Street BART',39,578,'Subscriber',94549); +INSERT INTO "trip" VALUES(905252,562,'8/25/2015 19:46','Market at 10th',67,'8/25/2015 19:55','Washington at Kearny',46,394,'Subscriber',94103); +INSERT INTO "trip" VALUES(905255,468,'8/25/2015 19:50','Yerba Buena Center of the Arts (3rd @ Howard)',68,'8/25/2015 19:57','2nd at Townsend',61,581,'Subscriber',94107); +INSERT INTO "trip" VALUES(905262,700,'8/25/2015 19:51','Embarcadero at Folsom',51,'8/25/2015 20:03','San Francisco Caltrain 2 (330 Townsend)',69,313,'Subscriber',94107); +INSERT INTO "trip" VALUES(905265,87,'8/25/2015 19:52','2nd at South Park',64,'8/25/2015 19:53','2nd at Townsend',61,572,'Subscriber',94117); +INSERT INTO "trip" VALUES(905267,473,'8/25/2015 19:52','Powell Street BART',39,'8/25/2015 20:00','Market at 10th',67,566,'Subscriber',94103); +INSERT INTO "trip" VALUES(905270,593,'8/25/2015 19:54','Spear at Folsom',49,'8/25/2015 20:04','Spear at Folsom',49,397,'Subscriber',94105); +INSERT INTO "trip" VALUES(905272,260,'8/25/2015 19:57','2nd at Folsom',62,'8/25/2015 20:02','Spear at Folsom',49,592,'Subscriber',94070); +INSERT INTO "trip" VALUES(905273,341,'8/25/2015 19:58','Mountain View Caltrain Station',28,'8/25/2015 20:03','Mountain View City Hall',27,251,'Subscriber',94041); +INSERT INTO "trip" VALUES(905274,458,'8/25/2015 19:57','Harry Bridges Plaza (Ferry Building)',50,'8/25/2015 20:04','Embarcadero at Bryant',54,470,'Subscriber',94107); +INSERT INTO "trip" VALUES(905280,413,'8/25/2015 20:02','Howard at 2nd',63,'8/25/2015 20:09','San Francisco Caltrain 2 (330 Townsend)',69,338,'Subscriber',94107); +INSERT INTO "trip" VALUES(905281,450,'8/25/2015 20:03','Embarcadero at Sansome',60,'8/25/2015 20:10','Steuart at Market',74,309,'Subscriber',94549); +INSERT INTO "trip" VALUES(905282,827,'8/25/2015 20:03','San Francisco Caltrain 2 (330 Townsend)',69,'8/25/2015 20:17','Townsend at 7th',65,313,'Subscriber',94107); +INSERT INTO "trip" VALUES(905283,909,'8/25/2015 20:03','Powell Street BART',39,'8/25/2015 20:19','Grant Avenue at Columbus Avenue',73,451,'Subscriber',94133); +INSERT INTO "trip" VALUES(905284,75,'8/25/2015 20:04','San Francisco Caltrain (Townsend at 4th)',70,'8/25/2015 20:05','San Francisco Caltrain (Townsend at 4th)',70,547,'Subscriber',94105); +INSERT INTO "trip" VALUES(905285,1172,'8/25/2015 20:06','San Francisco Caltrain 2 (330 Townsend)',69,'8/25/2015 20:26','Golden Gate at Polk',59,630,'Subscriber',94109); +INSERT INTO "trip" VALUES(905286,551,'8/25/2015 20:07','San Francisco Caltrain (Townsend at 4th)',70,'8/25/2015 20:16','Spear at Folsom',49,547,'Subscriber',94105); +INSERT INTO "trip" VALUES(905287,862,'8/25/2015 20:09','Temporary Transbay Terminal (Howard at Beale)',55,'8/25/2015 20:23','Golden Gate at Polk',59,289,'Subscriber',94109); +INSERT INTO "trip" VALUES(905288,531,'8/25/2015 20:10','Embarcadero at Sansome',60,'8/25/2015 20:19','Harry Bridges Plaza (Ferry Building)',50,611,'Subscriber',94566); +INSERT INTO "trip" VALUES(905289,251,'8/25/2015 20:13','5th at Howard',57,'8/25/2015 20:17','Market at 4th',76,507,'Subscriber',94107); +INSERT INTO "trip" VALUES(905290,280,'8/25/2015 20:18','St James Park',13,'8/25/2015 20:22','Japantown',9,661,'Subscriber',95112); +INSERT INTO "trip" VALUES(905291,253,'8/25/2015 20:18','San Francisco Caltrain 2 (330 Townsend)',69,'8/25/2015 20:23','Townsend at 7th',65,338,'Subscriber',94107); +INSERT INTO "trip" VALUES(905292,291,'8/25/2015 20:19','Post at Kearny',47,'8/25/2015 20:23','2nd at South Park',64,582,'Subscriber',94107); +INSERT INTO "trip" VALUES(905293,492,'8/25/2015 20:19','Townsend at 7th',65,'8/25/2015 20:27','2nd at Townsend',61,493,'Subscriber',94107); +INSERT INTO "trip" VALUES(905294,590,'8/25/2015 20:22','Market at 4th',76,'8/25/2015 20:32','2nd at South Park',64,420,'Subscriber',94107); +INSERT INTO "trip" VALUES(905295,407,'8/25/2015 20:24','5th at Howard',57,'8/25/2015 20:31','Golden Gate at Polk',59,415,'Subscriber',94118); +INSERT INTO "trip" VALUES(905296,149,'8/25/2015 20:27','Embarcadero at Folsom',51,'8/25/2015 20:30','Embarcadero at Bryant',54,513,'Subscriber',94105); +INSERT INTO "trip" VALUES(905299,529,'8/25/2015 20:33','San Francisco Caltrain (Townsend at 4th)',70,'8/25/2015 20:41','Powell Street BART',39,354,'Subscriber',2780); +INSERT INTO "trip" VALUES(905302,430,'8/25/2015 20:36','Temporary Transbay Terminal (Howard at Beale)',55,'8/25/2015 20:43','5th at Howard',57,598,'Subscriber',94103); +INSERT INTO "trip" VALUES(905305,254,'8/25/2015 20:38','2nd at South Park',64,'8/25/2015 20:43','Market at Sansome',77,582,'Subscriber',94544); +INSERT INTO "trip" VALUES(905307,537,'8/25/2015 20:39','South Van Ness at Market',66,'8/25/2015 20:48','Market at 4th',76,687,'Subscriber',94108); +INSERT INTO "trip" VALUES(905310,202,'8/25/2015 20:41','Broadway St at Battery St',82,'8/25/2015 20:45','Beale at Market',56,292,'Subscriber',94114); +INSERT INTO "trip" VALUES(905311,484,'8/25/2015 20:42','Market at 4th',76,'8/25/2015 20:50','San Francisco Caltrain 2 (330 Townsend)',69,569,'Subscriber',94107); +INSERT INTO "trip" VALUES(905312,1118,'8/25/2015 20:44','Golden Gate at Polk',59,'8/25/2015 21:03','2nd at Townsend',61,329,'Subscriber',94107); +INSERT INTO "trip" VALUES(905320,593,'8/25/2015 20:52','2nd at Townsend',61,'8/25/2015 21:02','Davis at Jackson',42,468,'Customer',94903); +INSERT INTO "trip" VALUES(905323,350,'8/25/2015 21:00','Spear at Folsom',49,'8/25/2015 21:05','Embarcadero at Bryant',54,397,'Subscriber',94070); +INSERT INTO "trip" VALUES(905327,157,'8/25/2015 21:05','Townsend at 7th',65,'8/25/2015 21:07','San Francisco Caltrain 2 (330 Townsend)',69,443,'Subscriber',94118); +INSERT INTO "trip" VALUES(905328,574,'8/25/2015 21:05','San Francisco Caltrain (Townsend at 4th)',70,'8/25/2015 21:15','Market at 4th',76,411,'Subscriber',95054); +INSERT INTO "trip" VALUES(905331,386,'8/25/2015 21:06','Market at Sansome',77,'8/25/2015 21:12','Grant Avenue at Columbus Avenue',73,582,'Subscriber',94133); +INSERT INTO "trip" VALUES(905332,170,'8/25/2015 21:04','Howard at 2nd',63,'8/25/2015 21:07','Market at Sansome',77,506,'Subscriber',94117); +INSERT INTO "trip" VALUES(905334,339,'8/25/2015 21:10','5th at Howard',57,'8/25/2015 21:16','San Francisco Caltrain 2 (330 Townsend)',69,475,'Subscriber',94107); +INSERT INTO "trip" VALUES(905335,431,'8/25/2015 21:10','Market at Sansome',77,'8/25/2015 21:18','2nd at Townsend',61,238,'Subscriber',94105); +INSERT INTO "trip" VALUES(905336,247,'8/25/2015 21:11','Embarcadero at Vallejo',48,'8/25/2015 21:15','Steuart at Market',74,477,'Subscriber',94610); +INSERT INTO "trip" VALUES(905342,711,'8/25/2015 21:07','2nd at Townsend',61,'8/25/2015 21:19','Davis at Jackson',42,329,'Subscriber',94005); +INSERT INTO "trip" VALUES(905344,646,'8/25/2015 21:22','Powell Street BART',39,'8/25/2015 21:32','San Francisco Caltrain (Townsend at 4th)',70,285,'Subscriber',94102); +INSERT INTO "trip" VALUES(905346,596,'8/25/2015 21:22','Harry Bridges Plaza (Ferry Building)',50,'8/25/2015 21:32','San Francisco Caltrain 2 (330 Townsend)',69,158,'Subscriber',95035); +INSERT INTO "trip" VALUES(905347,444,'8/25/2015 21:23','2nd at Townsend',61,'8/25/2015 21:31','Market at Sansome',77,300,'Subscriber',94401); +INSERT INTO "trip" VALUES(905348,189,'8/25/2015 21:24','Embarcadero at Sansome',60,'8/25/2015 21:27','Broadway St at Battery St',82,428,'Subscriber',94107); +INSERT INTO "trip" VALUES(905349,239,'8/25/2015 21:29','San Francisco Caltrain (Townsend at 4th)',70,'8/25/2015 21:33','Townsend at 7th',65,417,'Subscriber',94107); +INSERT INTO "trip" VALUES(905350,348,'8/25/2015 21:30','Market at 4th',76,'8/25/2015 21:36','Clay at Battery',41,687,'Subscriber',94133); +INSERT INTO "trip" VALUES(905351,163,'8/25/2015 21:31','5th at Howard',57,'8/25/2015 21:34','Powell Street BART',39,331,'Subscriber',94110); +INSERT INTO "trip" VALUES(905352,271,'8/25/2015 21:31','2nd at South Park',64,'8/25/2015 21:36','San Francisco Caltrain 2 (330 Townsend)',69,575,'Subscriber',94158); +INSERT INTO "trip" VALUES(905353,444,'8/25/2015 21:52','Yerba Buena Center of the Arts (3rd @ Howard)',68,'8/25/2015 21:59','Grant Avenue at Columbus Avenue',73,522,'Subscriber',94133); +INSERT INTO "trip" VALUES(905354,104,'8/25/2015 21:50','Beale at Market',56,'8/25/2015 21:52','Temporary Transbay Terminal (Howard at Beale)',55,600,'Subscriber',94130); +INSERT INTO "trip" VALUES(905355,164,'8/25/2015 21:51','Temporary Transbay Terminal (Howard at Beale)',55,'8/25/2015 21:53','Howard at 2nd',63,576,'Subscriber',94105); +INSERT INTO "trip" VALUES(905356,425,'8/25/2015 21:46','2nd at Townsend',61,'8/25/2015 21:53','Townsend at 7th',65,553,'Subscriber',94901); +INSERT INTO "trip" VALUES(905357,895,'8/25/2015 21:47','San Francisco Caltrain 2 (330 Townsend)',69,'8/25/2015 22:02','Spear at Folsom',49,569,'Subscriber',94102); +INSERT INTO "trip" VALUES(905358,350,'8/25/2015 21:53','Japantown',9,'8/25/2015 21:59','St James Park',13,661,'Subscriber',95112); +INSERT INTO "trip" VALUES(905359,234,'8/25/2015 22:01','Mountain View Caltrain Station',28,'8/25/2015 22:05','Evelyn Park and Ride',30,693,'Subscriber',95051); +INSERT INTO "trip" VALUES(905360,280,'8/25/2015 22:06','San Francisco Caltrain 2 (330 Townsend)',69,'8/25/2015 22:11','Townsend at 7th',65,471,'Subscriber',94107); +INSERT INTO "trip" VALUES(905361,455,'8/25/2015 22:09','Mountain View Caltrain Station',28,'8/25/2015 22:17','Castro Street and El Camino Real',32,296,'Subscriber',95032); +INSERT INTO "trip" VALUES(905363,703,'8/25/2015 22:19','Temporary Transbay Terminal (Howard at Beale)',55,'8/25/2015 22:30','Washington at Kearny',46,311,'Subscriber',94133); +INSERT INTO "trip" VALUES(905365,529,'8/25/2015 22:22','5th at Howard',57,'8/25/2015 22:31','Townsend at 7th',65,288,'Customer',92606); +INSERT INTO "trip" VALUES(905366,294,'8/25/2015 22:19','Howard at 2nd',63,'8/25/2015 22:24','Post at Kearny',47,576,'Subscriber',94107); +INSERT INTO "trip" VALUES(905367,245,'8/25/2015 22:28','2nd at Townsend',61,'8/25/2015 22:33','Embarcadero at Bryant',54,448,'Subscriber',94122); +INSERT INTO "trip" VALUES(905368,716,'8/25/2015 22:32','Steuart at Market',74,'8/25/2015 22:44','San Francisco Caltrain (Townsend at 4th)',70,477,'Subscriber',94158); +INSERT INTO "trip" VALUES(905369,380,'8/25/2015 22:28','Embarcadero at Folsom',51,'8/25/2015 22:35','2nd at Townsend',61,372,'Subscriber',94107); +INSERT INTO "trip" VALUES(905370,806,'8/25/2015 22:33','2nd at Townsend',61,'8/25/2015 22:46','Embarcadero at Sansome',60,362,'Customer',94123); +INSERT INTO "trip" VALUES(905371,611,'8/25/2015 22:37','2nd at Townsend',61,'8/25/2015 22:47','Beale at Market',56,238,'Subscriber',94105); +INSERT INTO "trip" VALUES(905372,689,'8/25/2015 22:42','2nd at Townsend',61,'8/25/2015 22:54','Powell at Post (Union Square)',71,526,'Subscriber',94109); +INSERT INTO "trip" VALUES(905373,522,'8/25/2015 22:44','Powell Street BART',39,'8/25/2015 22:52','South Van Ness at Market',66,291,'Subscriber',94702); +INSERT INTO "trip" VALUES(905374,506,'8/25/2015 22:44','2nd at Townsend',61,'8/25/2015 22:52','Townsend at 7th',65,399,'Subscriber',94107); +INSERT INTO "trip" VALUES(905375,363,'8/25/2015 22:50','Embarcadero at Bryant',54,'8/25/2015 22:56','Broadway St at Battery St',82,542,'Subscriber',94107); +INSERT INTO "trip" VALUES(905376,751,'8/25/2015 23:06','San Francisco Caltrain 2 (330 Townsend)',69,'8/25/2015 23:19','South Van Ness at Market',66,443,'Subscriber',94103); +INSERT INTO "trip" VALUES(905377,387,'8/25/2015 23:10','Powell Street BART',39,'8/25/2015 23:16','Market at 10th',67,331,'Subscriber',94102); +INSERT INTO "trip" VALUES(905378,225,'8/25/2015 23:15','San Francisco Caltrain 2 (330 Townsend)',69,'8/25/2015 23:19','Townsend at 7th',65,575,'Subscriber',94107); +INSERT INTO "trip" VALUES(905379,216,'8/26/2015 0:21','Embarcadero at Bryant',54,'8/26/2015 0:25','Temporary Transbay Terminal (Howard at Beale)',55,519,'Subscriber',94105); +INSERT INTO "trip" VALUES(905380,342,'8/26/2015 0:30','Post at Kearny',47,'8/26/2015 0:36','Temporary Transbay Terminal (Howard at Beale)',55,470,'Subscriber',94107); +INSERT INTO "trip" VALUES(905381,776,'8/26/2015 1:01','San Francisco Caltrain 2 (330 Townsend)',69,'8/26/2015 1:14','San Francisco City Hall',58,552,'Subscriber',94107); +INSERT INTO "trip" VALUES(905382,12139,'8/26/2015 1:11','Market at Sansome',77,'8/26/2015 4:33','Market at 4th',76,479,'Customer',98199); +INSERT INTO "trip" VALUES(905383,12105,'8/26/2015 1:11','Market at Sansome',77,'8/26/2015 4:33','Market at 4th',76,338,'Customer',98199); +INSERT INTO "trip" VALUES(905384,925,'8/26/2015 1:35','Spear at Folsom',49,'8/26/2015 1:50','Powell at Post (Union Square)',71,501,'Subscriber',94102); +INSERT INTO "trip" VALUES(905385,397,'8/26/2015 4:24','Market at 10th',67,'8/26/2015 4:30','Townsend at 7th',65,574,'Subscriber',94102); +INSERT INTO "trip" VALUES(905386,174,'8/26/2015 4:58','2nd at Folsom',62,'8/26/2015 5:01','Market at Sansome',77,413,'Subscriber',94107); +INSERT INTO "trip" VALUES(905387,751,'8/26/2015 5:02','Davis at Jackson',42,'8/26/2015 5:15','San Francisco Caltrain (Townsend at 4th)',70,374,'Subscriber',94111); +INSERT INTO "trip" VALUES(905388,1255,'8/26/2015 5:22','Post at Kearny',47,'8/26/2015 5:43','Steuart at Market',74,530,'Customer',94107); +INSERT INTO "trip" VALUES(905389,250,'8/26/2015 5:23','Grant Avenue at Columbus Avenue',73,'8/26/2015 5:27','Market at Sansome',77,340,'Subscriber',94133); +INSERT INTO "trip" VALUES(905390,273,'8/26/2015 5:26','Grant Avenue at Columbus Avenue',73,'8/26/2015 5:30','Market at Sansome',77,498,'Subscriber',94133); +INSERT INTO "trip" VALUES(905391,644,'8/26/2015 5:34','Embarcadero at Sansome',60,'8/26/2015 5:45','2nd at South Park',64,405,'Subscriber',94111); +INSERT INTO "trip" VALUES(905392,463,'8/26/2015 5:35','Powell Street BART',39,'8/26/2015 5:42','San Francisco Caltrain 2 (330 Townsend)',69,212,'Subscriber',94605); +INSERT INTO "trip" VALUES(905393,468,'8/26/2015 5:38','Powell Street BART',39,'8/26/2015 5:46','San Francisco Caltrain 2 (330 Townsend)',69,275,'Subscriber',94107); +INSERT INTO "trip" VALUES(905394,236,'8/26/2015 5:39','Temporary Transbay Terminal (Howard at Beale)',55,'8/26/2015 5:43','Steuart at Market',74,353,'Subscriber',94112); +INSERT INTO "trip" VALUES(905395,286,'8/26/2015 5:57','Beale at Market',56,'8/26/2015 6:02','Broadway St at Battery St',82,292,'Subscriber',94610); +INSERT INTO "trip" VALUES(905396,506,'8/26/2015 6:02','San Francisco Caltrain (Townsend at 4th)',70,'8/26/2015 6:10','2nd at Folsom',62,635,'Subscriber',94002); +INSERT INTO "trip" VALUES(905397,246,'8/26/2015 6:05','San Francisco Caltrain (Townsend at 4th)',70,'8/26/2015 6:09','Townsend at 7th',65,137,'Subscriber',94118); +INSERT INTO "trip" VALUES(905398,332,'8/26/2015 6:08','Spear at Folsom',49,'8/26/2015 6:13','Harry Bridges Plaza (Ferry Building)',50,327,'Subscriber',94105); +INSERT INTO "trip" VALUES(905399,579,'8/26/2015 6:10','Embarcadero at Bryant',54,'8/26/2015 6:19','Townsend at 7th',65,510,'Subscriber',94103); +INSERT INTO "trip" VALUES(905400,524,'8/26/2015 6:16','Market at 10th',67,'8/26/2015 6:25','San Francisco Caltrain (Townsend at 4th)',70,566,'Subscriber',94103); +INSERT INTO "trip" VALUES(905401,458,'8/26/2015 6:15','Townsend at 7th',65,'8/26/2015 6:23','South Van Ness at Market',66,442,'Subscriber',94107); +INSERT INTO "trip" VALUES(905402,475,'8/26/2015 6:24','Harry Bridges Plaza (Ferry Building)',50,'8/26/2015 6:32','2nd at Townsend',61,283,'Subscriber',94945); +INSERT INTO "trip" VALUES(905403,6103,'8/26/2015 6:25','Market at 10th',67,'8/26/2015 8:07','Market at 10th',67,96,'Customer',53594); +INSERT INTO "trip" VALUES(905404,415,'8/26/2015 6:26','Temporary Transbay Terminal (Howard at Beale)',55,'8/26/2015 6:33','2nd at Townsend',61,364,'Subscriber',94610); +INSERT INTO "trip" VALUES(905405,292,'8/26/2015 6:29','Santa Clara at Almaden',4,'8/26/2015 6:34','San Jose Diridon Caltrain Station',2,702,'Subscriber',95110); +INSERT INTO "trip" VALUES(905406,365,'8/26/2015 6:32','Temporary Transbay Terminal (Howard at Beale)',55,'8/26/2015 6:38','Broadway St at Battery St',82,470,'Subscriber',94610); +INSERT INTO "trip" VALUES(905407,662,'8/26/2015 6:33','Harry Bridges Plaza (Ferry Building)',50,'8/26/2015 6:44','San Francisco Caltrain (Townsend at 4th)',70,327,'Subscriber',94591); +INSERT INTO "trip" VALUES(905408,229,'8/26/2015 6:33','2nd at Townsend',61,'8/26/2015 6:37','San Francisco Caltrain (Townsend at 4th)',70,283,'Subscriber',95134); +INSERT INTO "trip" VALUES(905409,659,'8/26/2015 6:36','San Francisco Caltrain (Townsend at 4th)',70,'8/26/2015 6:47','Embarcadero at Folsom',51,67,'Subscriber',94107); +INSERT INTO "trip" VALUES(905410,874,'8/26/2015 6:36','San Francisco Caltrain 2 (330 Townsend)',69,'8/26/2015 6:51','Embarcadero at Vallejo',48,212,'Subscriber',94025); +INSERT INTO "trip" VALUES(905411,298,'8/26/2015 6:36','SJSU - San Salvador at 9th',16,'8/26/2015 6:41','San Salvador at 1st',8,488,'Subscriber',95112); +INSERT INTO "trip" VALUES(905412,289,'8/26/2015 6:37','Santa Clara at Almaden',4,'8/26/2015 6:42','San Jose Diridon Caltrain Station',2,131,'Subscriber',95110); +INSERT INTO "trip" VALUES(905413,176,'8/26/2015 6:40','Davis at Jackson',42,'8/26/2015 6:43','Commercial at Montgomery',45,437,'Subscriber',94111); +INSERT INTO "trip" VALUES(905415,847,'8/26/2015 6:44','San Francisco Caltrain (Townsend at 4th)',70,'8/26/2015 6:59','Harry Bridges Plaza (Ferry Building)',50,410,'Subscriber',94065); +INSERT INTO "trip" VALUES(905416,325,'8/26/2015 6:45','Evelyn Park and Ride',30,'8/26/2015 6:50','Mountain View Caltrain Station',28,48,'Subscriber',94087); +INSERT INTO "trip" VALUES(905417,506,'8/26/2015 6:45','Grant Avenue at Columbus Avenue',73,'8/26/2015 6:53','Embarcadero at Folsom',51,451,'Subscriber',94563); +INSERT INTO "trip" VALUES(905418,762,'8/26/2015 6:45','San Francisco Caltrain (Townsend at 4th)',70,'8/26/2015 6:58','Temporary Transbay Terminal (Howard at Beale)',55,517,'Subscriber',94030); +INSERT INTO "trip" VALUES(905419,571,'8/26/2015 6:46','San Francisco Caltrain (Townsend at 4th)',70,'8/26/2015 6:55','Harry Bridges Plaza (Ferry Building)',50,285,'Subscriber',94111); +INSERT INTO "trip" VALUES(905420,447,'8/26/2015 6:45','San Francisco Caltrain (Townsend at 4th)',70,'8/26/2015 6:53','Howard at 2nd',63,374,'Subscriber',95008); +INSERT INTO "trip" VALUES(905421,863,'8/26/2015 6:47','San Francisco Caltrain 2 (330 Townsend)',69,'8/26/2015 7:01','Embarcadero at Sansome',60,549,'Subscriber',95129); +INSERT INTO "trip" VALUES(905425,1142,'8/26/2015 6:48','San Francisco Caltrain (Townsend at 4th)',70,'8/26/2015 7:07','South Van Ness at Market',66,283,'Subscriber',95122); +INSERT INTO "trip" VALUES(905426,471,'8/26/2015 6:49','Temporary Transbay Terminal (Howard at Beale)',55,'8/26/2015 6:57','Market at 4th',76,519,'Subscriber',94501); +INSERT INTO "trip" VALUES(905427,516,'8/26/2015 6:49','San Francisco Caltrain (Townsend at 4th)',70,'8/26/2015 6:57','Post at Kearny',47,566,'Subscriber',94002); +INSERT INTO "trip" VALUES(905428,261,'8/26/2015 6:50','Temporary Transbay Terminal (Howard at Beale)',55,'8/26/2015 6:54','Yerba Buena Center of the Arts (3rd @ Howard)',68,357,'Subscriber',94618); +INSERT INTO "trip" VALUES(905429,166,'8/26/2015 6:50','2nd at South Park',64,'8/26/2015 6:53','San Francisco Caltrain (Townsend at 4th)',70,405,'Subscriber',94158); +INSERT INTO "trip" VALUES(905430,780,'8/26/2015 6:51','Embarcadero at Folsom',51,'8/26/2015 7:04','Townsend at 7th',65,352,'Subscriber',94501); +INSERT INTO "trip" VALUES(905431,556,'8/26/2015 6:53','Harry Bridges Plaza (Ferry Building)',50,'8/26/2015 7:03','2nd at Townsend',61,557,'Subscriber',94558); +INSERT INTO "trip" VALUES(905432,629,'8/26/2015 6:54','Embarcadero at Bryant',54,'8/26/2015 7:05','Embarcadero at Sansome',60,494,'Subscriber',94105); +INSERT INTO "trip" VALUES(905433,442,'8/26/2015 6:56','Embarcadero at Sansome',60,'8/26/2015 7:03','Temporary Transbay Terminal (Howard at Beale)',55,599,'Subscriber',94111); +INSERT INTO "trip" VALUES(905434,114,'8/26/2015 6:56','Grant Avenue at Columbus Avenue',73,'8/26/2015 6:58','Commercial at Montgomery',45,522,'Subscriber',94133); +INSERT INTO "trip" VALUES(905435,374,'8/26/2015 6:56','San Francisco Caltrain (Townsend at 4th)',70,'8/26/2015 7:03','Howard at 2nd',63,327,'Subscriber',94107); +INSERT INTO "trip" VALUES(905437,428,'8/26/2015 6:57','Temporary Transbay Terminal (Howard at Beale)',55,'8/26/2015 7:04','Market at 4th',76,600,'Subscriber',94501); +INSERT INTO "trip" VALUES(905438,365,'8/26/2015 6:58','Grant Avenue at Columbus Avenue',73,'8/26/2015 7:04','Mechanics Plaza (Market at Battery)',75,677,'Subscriber',94133); +INSERT INTO "trip" VALUES(905439,357,'8/26/2015 7:00','Temporary Transbay Terminal (Howard at Beale)',55,'8/26/2015 7:06','Commercial at Montgomery',45,517,'Subscriber',94611); +INSERT INTO "trip" VALUES(905440,3608,'8/26/2015 7:01','Harry Bridges Plaza (Ferry Building)',50,'8/26/2015 8:01','Embarcadero at Sansome',60,508,'Subscriber',94110); +INSERT INTO "trip" VALUES(905441,437,'8/26/2015 7:02','Steuart at Market',74,'8/26/2015 7:10','2nd at Townsend',61,407,'Subscriber',94588); +INSERT INTO "trip" VALUES(905444,456,'8/26/2015 7:03','Spear at Folsom',49,'8/26/2015 7:11','Commercial at Montgomery',45,547,'Subscriber',94105); +INSERT INTO "trip" VALUES(905445,511,'8/26/2015 7:04','Temporary Transbay Terminal (Howard at Beale)',55,'8/26/2015 7:12','San Francisco Caltrain (Townsend at 4th)',70,599,'Subscriber',94530); +INSERT INTO "trip" VALUES(905446,164,'8/26/2015 7:04','Townsend at 7th',65,'8/26/2015 7:06','San Francisco Caltrain 2 (330 Townsend)',69,288,'Subscriber',94103); +INSERT INTO "trip" VALUES(905447,920,'8/26/2015 7:04','Steuart at Market',74,'8/26/2015 7:19','Townsend at 7th',65,631,'Subscriber',94501); +INSERT INTO "trip" VALUES(905448,541,'8/26/2015 7:04','Embarcadero at Sansome',60,'8/26/2015 7:13','Harry Bridges Plaza (Ferry Building)',50,549,'Subscriber',94133); +INSERT INTO "trip" VALUES(905449,1025,'8/26/2015 7:04','San Francisco Caltrain (Townsend at 4th)',70,'8/26/2015 7:21','Embarcadero at Sansome',60,405,'Subscriber',95111); +INSERT INTO "trip" VALUES(905450,764,'8/26/2015 7:05','San Francisco Caltrain (Townsend at 4th)',70,'8/26/2015 7:18','Steuart at Market',74,56,'Subscriber',95111); +INSERT INTO "trip" VALUES(905451,914,'8/26/2015 7:06','San Francisco Caltrain (Townsend at 4th)',70,'8/26/2015 7:21','Embarcadero at Sansome',60,459,'Subscriber',94103); +INSERT INTO "trip" VALUES(905452,663,'8/26/2015 7:06','San Francisco Caltrain (Townsend at 4th)',70,'8/26/2015 7:17','Harry Bridges Plaza (Ferry Building)',50,465,'Subscriber',94402); +INSERT INTO "trip" VALUES(905453,574,'8/26/2015 7:07','San Francisco Caltrain (Townsend at 4th)',70,'8/26/2015 7:17','Post at Kearny',47,401,'Subscriber',94401); +INSERT INTO "trip" VALUES(905454,80,'8/26/2015 7:07','Palo Alto Caltrain Station',34,'8/26/2015 7:09','Palo Alto Caltrain Station',34,230,'Subscriber',95131); +INSERT INTO "trip" VALUES(905455,522,'8/26/2015 7:09','Embarcadero at Folsom',51,'8/26/2015 7:18','San Francisco Caltrain (Townsend at 4th)',70,426,'Subscriber',94501); +INSERT INTO "trip" VALUES(905456,232,'8/26/2015 7:10','2nd at Townsend',61,'8/26/2015 7:14','San Francisco Caltrain (Townsend at 4th)',70,372,'Subscriber',94107); +INSERT INTO "trip" VALUES(905457,1519,'8/26/2015 7:10','Palo Alto Caltrain Station',34,'8/26/2015 7:36','Stanford in Redwood City',25,248,'Subscriber',95131); +INSERT INTO "trip" VALUES(905458,679,'8/26/2015 7:12','Harry Bridges Plaza (Ferry Building)',50,'8/26/2015 7:23','San Francisco Caltrain (Townsend at 4th)',70,285,'Subscriber',94930); +INSERT INTO "trip" VALUES(905459,258,'8/26/2015 7:12','Harry Bridges Plaza (Ferry Building)',50,'8/26/2015 7:16','Temporary Transbay Terminal (Howard at Beale)',55,489,'Subscriber',94901); +INSERT INTO "trip" VALUES(905460,342,'8/26/2015 7:13','Harry Bridges Plaza (Ferry Building)',50,'8/26/2015 7:18','Howard at 2nd',63,455,'Subscriber',94954); +INSERT INTO "trip" VALUES(905461,609,'8/26/2015 7:14','Market at 10th',67,'8/26/2015 7:24','Mechanics Plaza (Market at Battery)',75,554,'Subscriber',94102); +INSERT INTO "trip" VALUES(905462,270,'8/26/2015 7:15','Embarcadero at Sansome',60,'8/26/2015 7:20','Davis at Jackson',42,404,'Subscriber',94133); +INSERT INTO "trip" VALUES(905463,432,'8/26/2015 7:15','Paseo de San Antonio',7,'8/26/2015 7:22','San Jose Diridon Caltrain Station',2,691,'Subscriber',95113); +INSERT INTO "trip" VALUES(905464,217,'8/26/2015 7:15','Embarcadero at Bryant',54,'8/26/2015 7:19','Temporary Transbay Terminal (Howard at Beale)',55,193,'Subscriber',94403); +INSERT INTO "trip" VALUES(905465,594,'8/26/2015 7:17','Civic Center BART (7th at Market)',72,'8/26/2015 7:27','Grant Avenue at Columbus Avenue',73,348,'Subscriber',94122); +INSERT INTO "trip" VALUES(905466,333,'8/26/2015 7:18','Market at Sansome',77,'8/26/2015 7:23','2nd at South Park',64,300,'Subscriber',95973); +INSERT INTO "trip" VALUES(905467,370,'8/26/2015 7:19','Embarcadero at Sansome',60,'8/26/2015 7:25','Clay at Battery',41,362,'Subscriber',94133); +INSERT INTO "trip" VALUES(905468,896,'8/26/2015 7:22','Golden Gate at Polk',59,'8/26/2015 7:37','Spear at Folsom',49,558,'Subscriber',94109); +INSERT INTO "trip" VALUES(905469,329,'8/26/2015 7:22','San Francisco Caltrain (Townsend at 4th)',70,'8/26/2015 7:27','2nd at Folsom',62,477,'Subscriber',94403); +INSERT INTO "trip" VALUES(905470,653,'8/26/2015 7:22','Redwood City Caltrain Station',22,'8/26/2015 7:33','Stanford in Redwood City',25,159,'Subscriber',94131); +INSERT INTO "trip" VALUES(905472,866,'8/26/2015 7:22','Temporary Transbay Terminal (Howard at Beale)',55,'8/26/2015 7:37','Golden Gate at Polk',59,193,'Subscriber',94602); +INSERT INTO "trip" VALUES(905473,722,'8/26/2015 7:23','San Francisco Caltrain (Townsend at 4th)',70,'8/26/2015 7:35','Davis at Jackson',42,426,'Subscriber',94030); +INSERT INTO "trip" VALUES(905474,841,'8/26/2015 7:23','San Francisco Caltrain (Townsend at 4th)',70,'8/26/2015 7:37','Clay at Battery',41,372,'Subscriber',94025); +INSERT INTO "trip" VALUES(905475,640,'8/26/2015 7:23','Ryland Park',84,'8/26/2015 7:34','San Jose Diridon Caltrain Station',2,679,'Subscriber',94040); +INSERT INTO "trip" VALUES(905476,231,'8/26/2015 7:23','Townsend at 7th',65,'8/26/2015 7:27','San Francisco Caltrain 2 (330 Townsend)',69,631,'Subscriber',94044); +INSERT INTO "trip" VALUES(905477,406,'8/26/2015 7:23','Civic Center BART (7th at Market)',72,'8/26/2015 7:30','Townsend at 7th',65,363,'Subscriber',94582); +INSERT INTO "trip" VALUES(905478,869,'8/26/2015 7:23','San Francisco Caltrain (Townsend at 4th)',70,'8/26/2015 7:38','Beale at Market',56,285,'Subscriber',94303); +INSERT INTO "trip" VALUES(905479,671,'8/26/2015 7:24','San Francisco Caltrain 2 (330 Townsend)',69,'8/26/2015 7:35','Davis at Jackson',42,158,'Subscriber',94025); +INSERT INTO "trip" VALUES(905480,930,'8/26/2015 7:24','San Francisco Caltrain 2 (330 Townsend)',69,'8/26/2015 7:40','Golden Gate at Polk',59,623,'Subscriber',94306); +INSERT INTO "trip" VALUES(905481,235,'8/26/2015 7:25','Broadway St at Battery St',82,'8/26/2015 7:29','Beale at Market',56,542,'Subscriber',94107); +INSERT INTO "trip" VALUES(905482,832,'8/26/2015 7:25','San Francisco Caltrain (Townsend at 4th)',70,'8/26/2015 7:39','South Van Ness at Market',66,599,'Subscriber',94403); +INSERT INTO "trip" VALUES(905483,926,'8/26/2015 7:26','Temporary Transbay Terminal (Howard at Beale)',55,'8/26/2015 7:41','Townsend at 7th',65,489,'Subscriber',94707); +INSERT INTO "trip" VALUES(905484,370,'8/26/2015 7:26','2nd at Townsend',61,'8/26/2015 7:32','Harry Bridges Plaza (Ferry Building)',50,567,'Subscriber',94107); +INSERT INTO "trip" VALUES(905486,199,'8/26/2015 7:26','Temporary Transbay Terminal (Howard at Beale)',55,'8/26/2015 7:30','2nd at Folsom',62,585,'Subscriber',94602); +INSERT INTO "trip" VALUES(905487,294,'8/26/2015 7:26','Powell at Post (Union Square)',71,'8/26/2015 7:31','Howard at 2nd',63,501,'Subscriber',94109); +INSERT INTO "trip" VALUES(905488,654,'8/26/2015 7:27','San Francisco Caltrain 2 (330 Townsend)',69,'8/26/2015 7:38','Market at 10th',67,631,'Subscriber',94025); +INSERT INTO "trip" VALUES(905489,340,'8/26/2015 7:29','Market at Sansome',77,'8/26/2015 7:34','2nd at South Park',64,506,'Subscriber',94549); +INSERT INTO "trip" VALUES(905490,298,'8/26/2015 7:29','Temporary Transbay Terminal (Howard at Beale)',55,'8/26/2015 7:34','2nd at Townsend',61,454,'Subscriber',94107); +INSERT INTO "trip" VALUES(905491,433,'8/26/2015 7:29','Temporary Transbay Terminal (Howard at Beale)',55,'8/26/2015 7:36','Embarcadero at Vallejo',48,461,'Subscriber',94608); +INSERT INTO "trip" VALUES(905492,480,'8/26/2015 7:26','2nd at Townsend',61,'8/26/2015 7:34','Market at Sansome',77,581,'Subscriber',94107); +INSERT INTO "trip" VALUES(905497,429,'8/26/2015 7:30','San Jose Diridon Caltrain Station',2,'8/26/2015 7:37','San Pedro Square',6,691,'Subscriber',94110); +INSERT INTO "trip" VALUES(905498,703,'8/26/2015 7:31','Ryland Park',84,'8/26/2015 7:43','San Jose Diridon Caltrain Station',2,231,'Subscriber',95110); +INSERT INTO "trip" VALUES(905499,243,'8/26/2015 7:31','Grant Avenue at Columbus Avenue',73,'8/26/2015 7:35','Commercial at Montgomery',45,457,'Subscriber',94103); +INSERT INTO "trip" VALUES(905500,379,'8/26/2015 7:31','Grant Avenue at Columbus Avenue',73,'8/26/2015 7:38','Mechanics Plaza (Market at Battery)',75,445,'Subscriber',94133); +INSERT INTO "trip" VALUES(905501,460,'8/26/2015 7:32','Temporary Transbay Terminal (Howard at Beale)',55,'8/26/2015 7:40','2nd at Townsend',61,371,'Subscriber',94610); +INSERT INTO "trip" VALUES(905502,1031,'8/26/2015 7:32','Grant Avenue at Columbus Avenue',73,'8/26/2015 7:49','San Francisco Caltrain (Townsend at 4th)',70,348,'Subscriber',94133); +INSERT INTO "trip" VALUES(905503,520,'8/26/2015 7:32','Harry Bridges Plaza (Ferry Building)',50,'8/26/2015 7:41','Yerba Buena Center of the Arts (3rd @ Howard)',68,548,'Subscriber',94107); +INSERT INTO "trip" VALUES(905504,1663,'8/26/2015 7:32','Spear at Folsom',49,'8/26/2015 8:00','Embarcadero at Sansome',60,69,'Subscriber',94105); +INSERT INTO "trip" VALUES(905505,698,'8/26/2015 7:33','Redwood City Caltrain Station',22,'8/26/2015 7:45','Stanford in Redwood City',25,122,'Subscriber',94110); +INSERT INTO "trip" VALUES(905506,380,'8/26/2015 7:31','Civic Center BART (7th at Market)',72,'8/26/2015 7:37','Townsend at 7th',65,375,'Subscriber',94598); +INSERT INTO "trip" VALUES(905507,251,'8/26/2015 7:34','Townsend at 7th',65,'8/26/2015 7:39','San Francisco Caltrain (Townsend at 4th)',70,399,'Subscriber',94107); +INSERT INTO "trip" VALUES(905509,930,'8/26/2015 7:35','Market at 10th',67,'8/26/2015 7:50','Market at Sansome',77,331,'Subscriber',94102); +INSERT INTO "trip" VALUES(905510,652,'8/26/2015 7:35','MLK Library',11,'8/26/2015 7:46','San Jose Diridon Caltrain Station',2,648,'Subscriber',95113); +INSERT INTO "trip" VALUES(905511,401,'8/26/2015 7:35','Embarcadero at Sansome',60,'8/26/2015 7:42','Beale at Market',56,459,'Subscriber',94111); +INSERT INTO "trip" VALUES(905514,295,'8/26/2015 7:36','Powell at Post (Union Square)',71,'8/26/2015 7:41','Mechanics Plaza (Market at Battery)',75,526,'Subscriber',94102); +INSERT INTO "trip" VALUES(905515,586,'8/26/2015 7:36','MLK Library',11,'8/26/2015 7:46','San Jose Diridon Caltrain Station',2,14,'Subscriber',95112); +INSERT INTO "trip" VALUES(905517,335,'8/26/2015 7:38','Grant Avenue at Columbus Avenue',73,'8/26/2015 7:44','Beale at Market',56,582,'Subscriber',94133); +INSERT INTO "trip" VALUES(905518,780,'8/26/2015 7:39','5th at Howard',57,'8/26/2015 7:52','Harry Bridges Plaza (Ferry Building)',50,651,'Subscriber',94107); +INSERT INTO "trip" VALUES(905519,695,'8/26/2015 7:39','San Francisco City Hall',58,'8/26/2015 7:50','Market at Sansome',77,878,'Subscriber',94117); +INSERT INTO "trip" VALUES(905520,198,'8/26/2015 7:41','San Antonio Caltrain Station',29,'8/26/2015 7:44','San Antonio Shopping Center',31,700,'Subscriber',94103); +INSERT INTO "trip" VALUES(905521,596,'8/26/2015 7:42','Harry Bridges Plaza (Ferry Building)',50,'8/26/2015 7:52','5th at Howard',57,392,'Subscriber',94925); +INSERT INTO "trip" VALUES(905522,651,'8/26/2015 7:43','Golden Gate at Polk',59,'8/26/2015 7:53','San Francisco Caltrain 2 (330 Townsend)',69,602,'Subscriber',94109); +INSERT INTO "trip" VALUES(905523,443,'8/26/2015 7:43','Harry Bridges Plaza (Ferry Building)',50,'8/26/2015 7:50','Embarcadero at Sansome',60,567,'Subscriber',94939); +INSERT INTO "trip" VALUES(905524,281,'8/26/2015 7:43','Embarcadero at Folsom',51,'8/26/2015 7:48','Embarcadero at Vallejo',48,67,'Subscriber',94611); +INSERT INTO "trip" VALUES(905525,1265,'8/26/2015 7:43','Steuart at Market',74,'8/26/2015 8:04','Townsend at 7th',65,386,'Subscriber',94965); +INSERT INTO "trip" VALUES(905526,501,'8/26/2015 7:44','Market at 10th',67,'8/26/2015 7:53','Mechanics Plaza (Market at Battery)',75,631,'Subscriber',94102); +INSERT INTO "trip" VALUES(905528,439,'8/26/2015 7:44','San Jose Diridon Caltrain Station',2,'8/26/2015 7:52','San Pedro Square',6,679,'Subscriber',94002); +INSERT INTO "trip" VALUES(905529,533,'8/26/2015 7:45','Grant Avenue at Columbus Avenue',73,'8/26/2015 7:54','Powell Street BART',39,335,'Subscriber',94133); +INSERT INTO "trip" VALUES(905530,621,'8/26/2015 7:44','Ryland Park',84,'8/26/2015 7:55','San Jose Diridon Caltrain Station',2,643,'Subscriber',95112); +INSERT INTO "trip" VALUES(905533,818,'8/26/2015 7:46','Market at 10th',67,'8/26/2015 7:59','Temporary Transbay Terminal (Howard at Beale)',55,270,'Subscriber',94102); +INSERT INTO "trip" VALUES(905535,799,'8/26/2015 7:46','San Francisco Caltrain 2 (330 Townsend)',69,'8/26/2015 8:00','Harry Bridges Plaza (Ferry Building)',50,475,'Subscriber',94107); +INSERT INTO "trip" VALUES(905536,636,'8/26/2015 7:46','San Francisco Caltrain 2 (330 Townsend)',69,'8/26/2015 7:57','Market at Sansome',77,385,'Subscriber',95112); +INSERT INTO "trip" VALUES(905538,684,'8/26/2015 7:46','Japantown',9,'8/26/2015 7:58','San Jose Diridon Caltrain Station',2,18,'Subscriber',95112); +INSERT INTO "trip" VALUES(905539,341,'8/26/2015 7:46','Clay at Battery',41,'8/26/2015 7:52','Howard at 2nd',63,687,'Subscriber',94107); +INSERT INTO "trip" VALUES(905541,318,'8/26/2015 7:47','Embarcadero at Folsom',51,'8/26/2015 7:52','2nd at Townsend',61,555,'Subscriber',94945); +INSERT INTO "trip" VALUES(905542,683,'8/26/2015 7:47','San Francisco Caltrain (Townsend at 4th)',70,'8/26/2015 7:58','Mechanics Plaza (Market at Battery)',75,404,'Subscriber',94040); +INSERT INTO "trip" VALUES(905544,649,'8/26/2015 7:47','Harry Bridges Plaza (Ferry Building)',50,'8/26/2015 7:58','2nd at Townsend',61,465,'Subscriber',94960); +INSERT INTO "trip" VALUES(905545,257,'8/26/2015 7:47','Castro Street and El Camino Real',32,'8/26/2015 7:51','Mountain View Caltrain Station',28,296,'Subscriber',94022); +INSERT INTO "trip" VALUES(905546,543,'8/26/2015 7:47','San Francisco Caltrain (Townsend at 4th)',70,'8/26/2015 7:56','Beale at Market',56,399,'Subscriber',94303); +INSERT INTO "trip" VALUES(905547,734,'8/26/2015 7:47','San Francisco Caltrain 2 (330 Townsend)',69,'8/26/2015 8:00','Market at 10th',67,584,'Subscriber',95122); +INSERT INTO "trip" VALUES(905549,906,'8/26/2015 7:47','San Francisco Caltrain (Townsend at 4th)',70,'8/26/2015 8:03','Golden Gate at Polk',59,364,'Subscriber',94087); +INSERT INTO "trip" VALUES(905550,742,'8/26/2015 7:48','San Francisco Caltrain (Townsend at 4th)',70,'8/26/2015 8:00','Steuart at Market',74,407,'Subscriber',95134); +INSERT INTO "trip" VALUES(905552,517,'8/26/2015 7:48','San Francisco Caltrain 2 (330 Townsend)',69,'8/26/2015 7:57','Embarcadero at Folsom',51,214,'Subscriber',94070); +INSERT INTO "trip" VALUES(905553,702,'8/26/2015 7:48','San Francisco Caltrain 2 (330 Townsend)',69,'8/26/2015 8:00','Clay at Battery',41,391,'Subscriber',94065); +INSERT INTO "trip" VALUES(905554,746,'8/26/2015 7:48','San Francisco Caltrain 2 (330 Townsend)',69,'8/26/2015 8:01','Embarcadero at Folsom',51,191,'Subscriber',95014); +INSERT INTO "trip" VALUES(905555,534,'8/26/2015 7:49','San Francisco Caltrain (Townsend at 4th)',70,'8/26/2015 7:57','Howard at 2nd',63,419,'Subscriber',94403); +INSERT INTO "trip" VALUES(905557,482,'8/26/2015 7:49','San Francisco Caltrain 2 (330 Townsend)',69,'8/26/2015 7:57','Embarcadero at Folsom',51,418,'Subscriber',95054); +INSERT INTO "trip" VALUES(905558,340,'8/26/2015 7:49','Evelyn Park and Ride',30,'8/26/2015 7:55','Mountain View Caltrain Station',28,693,'Subscriber',94041); +INSERT INTO "trip" VALUES(905560,565,'8/26/2015 7:49','San Salvador at 1st',8,'8/26/2015 7:59','San Jose Diridon Caltrain Station',2,488,'Subscriber',95112); +INSERT INTO "trip" VALUES(905561,810,'8/26/2015 7:49','San Francisco Caltrain 2 (330 Townsend)',69,'8/26/2015 8:03','Harry Bridges Plaza (Ferry Building)',50,351,'Subscriber',93401); +INSERT INTO "trip" VALUES(905562,459,'8/26/2015 7:42','2nd at Townsend',61,'8/26/2015 7:50','Temporary Transbay Terminal (Howard at Beale)',55,454,'Subscriber',94025); +INSERT INTO "trip" VALUES(905563,280,'8/26/2015 7:50','Temporary Transbay Terminal (Howard at Beale)',55,'8/26/2015 7:55','Commercial at Montgomery',45,454,'Subscriber',94608); +INSERT INTO "trip" VALUES(905565,701,'8/26/2015 7:51','San Francisco Caltrain (Townsend at 4th)',70,'8/26/2015 8:02','Temporary Transbay Terminal (Howard at Beale)',55,509,'Subscriber',94030); +INSERT INTO "trip" VALUES(905566,279,'8/26/2015 7:51','Mountain View Caltrain Station',28,'8/26/2015 7:55','Castro Street and El Camino Real',32,94,'Subscriber',94118); +INSERT INTO "trip" VALUES(905567,821,'8/26/2015 7:51','San Francisco Caltrain (Townsend at 4th)',70,'8/26/2015 8:04','Davis at Jackson',42,458,'Subscriber',94040); +INSERT INTO "trip" VALUES(905568,255,'8/26/2015 7:51','2nd at South Park',64,'8/26/2015 7:56','Howard at 2nd',63,506,'Subscriber',94107); +INSERT INTO "trip" VALUES(905569,814,'8/26/2015 7:51','San Francisco Caltrain 2 (330 Townsend)',69,'8/26/2015 8:05','South Van Ness at Market',66,383,'Subscriber',95030); +INSERT INTO "trip" VALUES(905570,205,'8/26/2015 7:52','St James Park',13,'8/26/2015 7:55','SJSU 4th at San Carlos',12,669,'Subscriber',95112); +INSERT INTO "trip" VALUES(905573,433,'8/26/2015 7:53','South Van Ness at Market',66,'8/26/2015 8:00','Market at 4th',76,291,'Subscriber',94102); +INSERT INTO "trip" VALUES(905574,378,'8/26/2015 7:53','San Jose Diridon Caltrain Station',2,'8/26/2015 8:00','San Pedro Square',6,648,'Subscriber',95377); +INSERT INTO "trip" VALUES(905575,287,'8/26/2015 7:54','Embarcadero at Bryant',54,'8/26/2015 7:59','Harry Bridges Plaza (Ferry Building)',50,326,'Subscriber',94010); +INSERT INTO "trip" VALUES(905576,325,'8/26/2015 7:54','Civic Center BART (7th at Market)',72,'8/26/2015 8:00','South Van Ness at Market',66,618,'Subscriber',94611); +INSERT INTO "trip" VALUES(905577,808,'8/26/2015 7:54','Powell Street BART',39,'8/26/2015 8:08','2nd at Townsend',61,335,'Customer',80129); +INSERT INTO "trip" VALUES(905578,1420,'8/26/2015 7:55','San Francisco Caltrain (Townsend at 4th)',70,'8/26/2015 8:18','Harry Bridges Plaza (Ferry Building)',50,348,'Subscriber',95060); +INSERT INTO "trip" VALUES(905580,412,'8/26/2015 7:55','Commercial at Montgomery',45,'8/26/2015 8:02','2nd at Folsom',62,454,'Subscriber',94133); +INSERT INTO "trip" VALUES(905581,169,'8/26/2015 7:56','San Jose Diridon Caltrain Station',2,'8/26/2015 7:59','Santa Clara at Almaden',4,213,'Subscriber',95020); +INSERT INTO "trip" VALUES(905582,662,'8/26/2015 7:57','Redwood City Caltrain Station',22,'8/26/2015 8:08','Stanford in Redwood City',25,671,'Subscriber',95037); +INSERT INTO "trip" VALUES(905583,1059,'8/26/2015 7:58','Civic Center BART (7th at Market)',72,'8/26/2015 8:15','Embarcadero at Folsom',51,604,'Subscriber',94080); +INSERT INTO "trip" VALUES(905584,362,'8/26/2015 7:58','Clay at Battery',41,'8/26/2015 8:04','Embarcadero at Folsom',51,362,'Subscriber',94133); +INSERT INTO "trip" VALUES(905585,515,'8/26/2015 7:50','2nd at Townsend',61,'8/26/2015 7:58','Embarcadero at Vallejo',48,493,'Subscriber',94107); +INSERT INTO "trip" VALUES(905586,615,'8/26/2015 7:58','Palo Alto Caltrain Station',34,'8/26/2015 8:09','California Ave Caltrain Station',36,257,'Subscriber',94530); +INSERT INTO "trip" VALUES(905587,641,'8/26/2015 7:59','Rengstorff Avenue / California Street',33,'8/26/2015 8:10','Mountain View Caltrain Station',28,46,'Subscriber','94040-1724'); +INSERT INTO "trip" VALUES(905588,330,'8/26/2015 8:00','Clay at Battery',41,'8/26/2015 8:05','Embarcadero at Sansome',60,315,'Subscriber',94111); +INSERT INTO "trip" VALUES(905589,522,'8/26/2015 8:00','Market at 10th',67,'8/26/2015 8:09','San Francisco Caltrain 2 (330 Townsend)',69,608,'Subscriber',94102); +INSERT INTO "trip" VALUES(905590,544,'8/26/2015 8:00','5th at Howard',57,'8/26/2015 8:09','Steuart at Market',74,392,'Subscriber',94107); +INSERT INTO "trip" VALUES(905591,1062,'8/26/2015 8:00','Market at 4th',76,'8/26/2015 8:18','Embarcadero at Sansome',60,534,'Subscriber',94122); +INSERT INTO "trip" VALUES(905592,537,'8/26/2015 8:01','Mountain View Caltrain Station',28,'8/26/2015 8:10','Mountain View City Hall',27,80,'Subscriber',95110); +INSERT INTO "trip" VALUES(905594,388,'8/26/2015 8:00','Embarcadero at Bryant',54,'8/26/2015 8:07','San Francisco Caltrain (Townsend at 4th)',70,397,'Subscriber',94105); +INSERT INTO "trip" VALUES(905598,304,'8/26/2015 8:04','5th at Howard',57,'8/26/2015 8:09','San Francisco Caltrain (Townsend at 4th)',70,447,'Subscriber',94103); +INSERT INTO "trip" VALUES(905599,503,'8/26/2015 8:04','Harry Bridges Plaza (Ferry Building)',50,'8/26/2015 8:12','2nd at South Park',64,549,'Subscriber',94510); +INSERT INTO "trip" VALUES(905601,408,'8/26/2015 8:04','Howard at 2nd',63,'8/26/2015 8:11','San Francisco Caltrain (Townsend at 4th)',70,419,'Subscriber',94105); +INSERT INTO "trip" VALUES(905603,372,'8/26/2015 8:04','Temporary Transbay Terminal (Howard at Beale)',55,'8/26/2015 8:10','Market at Sansome',77,270,'Subscriber',94618); +INSERT INTO "trip" VALUES(905605,570,'8/26/2015 8:05','San Francisco City Hall',58,'8/26/2015 8:15','San Francisco Caltrain 2 (330 Townsend)',69,446,'Subscriber',94102); +INSERT INTO "trip" VALUES(905606,365,'8/26/2015 8:05','5th at Howard',57,'8/26/2015 8:11','San Francisco Caltrain 2 (330 Townsend)',69,598,'Subscriber',94103); +INSERT INTO "trip" VALUES(905607,934,'8/26/2015 8:05','South Van Ness at Market',66,'8/26/2015 8:21','Embarcadero at Sansome',60,618,'Subscriber',94102); +INSERT INTO "trip" VALUES(905608,119,'8/26/2015 8:06','Market at Sansome',77,'8/26/2015 8:08','Howard at 2nd',63,340,'Subscriber',94114); +INSERT INTO "trip" VALUES(905612,1090,'8/26/2015 8:07','Harry Bridges Plaza (Ferry Building)',50,'8/26/2015 8:25','Yerba Buena Center of the Arts (3rd @ Howard)',68,475,'Subscriber',94590); +INSERT INTO "trip" VALUES(905614,585,'8/26/2015 8:07','San Jose Diridon Caltrain Station',2,'8/26/2015 8:16','MLK Library',11,18,'Subscriber',94110); +INSERT INTO "trip" VALUES(905615,645,'8/26/2015 8:07','South Van Ness at Market',66,'8/26/2015 8:18','Beale at Market',56,443,'Subscriber',94103); +INSERT INTO "trip" VALUES(905616,424,'8/26/2015 8:07','San Francisco Caltrain (Townsend at 4th)',70,'8/26/2015 8:14','Post at Kearny',47,397,'Subscriber',94010); +INSERT INTO "trip" VALUES(905617,210,'8/26/2015 8:07','San Jose Diridon Caltrain Station',2,'8/26/2015 8:11','Santa Clara at Almaden',4,14,'Subscriber',94158); +INSERT INTO "trip" VALUES(905620,928,'8/26/2015 8:07','San Francisco Caltrain (Townsend at 4th)',70,'8/26/2015 8:23','Embarcadero at Vallejo',48,622,'Subscriber',94065); +INSERT INTO "trip" VALUES(905621,747,'8/26/2015 8:08','San Francisco Caltrain (Townsend at 4th)',70,'8/26/2015 8:20','Beale at Market',56,594,'Subscriber',94070); +INSERT INTO "trip" VALUES(905622,414,'8/26/2015 8:08','Embarcadero at Bryant',54,'8/26/2015 8:15','San Francisco Caltrain (Townsend at 4th)',70,111,'Subscriber',94105); +INSERT INTO "trip" VALUES(905623,546,'8/26/2015 8:08','South Van Ness at Market',66,'8/26/2015 8:17','Post at Kearny',47,440,'Subscriber',94122); +INSERT INTO "trip" VALUES(905626,436,'8/26/2015 8:08','Grant Avenue at Columbus Avenue',73,'8/26/2015 8:15','Clay at Battery',41,403,'Subscriber',94133); +INSERT INTO "trip" VALUES(905628,238,'8/26/2015 8:08','Steuart at Market',74,'8/26/2015 8:12','Broadway St at Battery St',82,309,'Subscriber',94702); +INSERT INTO "trip" VALUES(905629,797,'8/26/2015 8:08','San Francisco Caltrain 2 (330 Townsend)',69,'8/26/2015 8:21','Washington at Kearny',46,602,'Subscriber',94087); +INSERT INTO "trip" VALUES(905630,245,'8/26/2015 8:08','Harry Bridges Plaza (Ferry Building)',50,'8/26/2015 8:12','Mechanics Plaza (Market at Battery)',75,351,'Subscriber',94925); +INSERT INTO "trip" VALUES(905631,451,'8/26/2015 8:08','Civic Center BART (7th at Market)',72,'8/26/2015 8:16','Mechanics Plaza (Market at Battery)',75,380,'Subscriber',94103); +INSERT INTO "trip" VALUES(905632,343,'8/26/2015 8:08','Harry Bridges Plaza (Ferry Building)',50,'8/26/2015 8:14','2nd at Folsom',62,410,'Subscriber',94949); +INSERT INTO "trip" VALUES(905633,651,'8/26/2015 8:08','San Francisco Caltrain 2 (330 Townsend)',69,'8/26/2015 8:19','Market at Sansome',77,591,'Subscriber',94402); +INSERT INTO "trip" VALUES(905635,232,'8/26/2015 8:09','Evelyn Park and Ride',30,'8/26/2015 8:13','Mountain View Caltrain Station',28,673,'Subscriber',94043); +INSERT INTO "trip" VALUES(905638,603,'8/26/2015 8:10','San Francisco Caltrain (Townsend at 4th)',70,'8/26/2015 8:20','Embarcadero at Folsom',51,366,'Subscriber',95131); +INSERT INTO "trip" VALUES(905639,337,'8/26/2015 8:10','San Francisco Caltrain (Townsend at 4th)',70,'8/26/2015 8:15','5th at Howard',57,485,'Subscriber',94303); +INSERT INTO "trip" VALUES(905640,705,'8/26/2015 8:10','San Francisco Caltrain (Townsend at 4th)',70,'8/26/2015 8:22','Market at Sansome',77,572,'Subscriber',94087); +INSERT INTO "trip" VALUES(905641,750,'8/26/2015 8:10','San Francisco Caltrain 2 (330 Townsend)',69,'8/26/2015 8:23','Market at 10th',67,439,'Subscriber',94025); +INSERT INTO "trip" VALUES(905642,843,'8/26/2015 8:10','San Francisco Caltrain 2 (330 Townsend)',69,'8/26/2015 8:24','Market at 10th',67,608,'Subscriber',94401); +INSERT INTO "trip" VALUES(905643,312,'8/26/2015 8:10','San Francisco Caltrain (Townsend at 4th)',70,'8/26/2015 8:15','Townsend at 7th',65,590,'Subscriber',94301); +INSERT INTO "trip" VALUES(905644,137,'8/26/2015 8:10','2nd at Folsom',62,'8/26/2015 8:13','Temporary Transbay Terminal (Howard at Beale)',55,477,'Subscriber',94158); +INSERT INTO "trip" VALUES(905646,92,'8/26/2015 8:09','2nd at Townsend',61,'8/26/2015 8:11','2nd at South Park',64,371,'Subscriber',94107); +INSERT INTO "trip" VALUES(905647,577,'8/26/2015 8:10','Steuart at Market',74,'8/26/2015 8:20','5th at Howard',57,56,'Subscriber',94930); +INSERT INTO "trip" VALUES(905649,713,'8/26/2015 8:11','San Francisco Caltrain (Townsend at 4th)',70,'8/26/2015 8:23','Davis at Jackson',42,562,'Subscriber',95014); +INSERT INTO "trip" VALUES(905650,421,'8/26/2015 8:11','Market at 10th',67,'8/26/2015 8:18','San Francisco Caltrain 2 (330 Townsend)',69,584,'Subscriber',94102); +INSERT INTO "trip" VALUES(905651,288,'8/26/2015 8:11','Evelyn Park and Ride',30,'8/26/2015 8:16','Mountain View Caltrain Station',28,228,'Subscriber',94040); +INSERT INTO "trip" VALUES(905652,784,'8/26/2015 8:12','Temporary Transbay Terminal (Howard at Beale)',55,'8/26/2015 8:25','Townsend at 7th',65,509,'Subscriber',94103); +INSERT INTO "trip" VALUES(905655,468,'8/26/2015 8:12','San Francisco Caltrain (Townsend at 4th)',70,'8/26/2015 8:20','Yerba Buena Center of the Arts (3rd @ Howard)',68,419,'Subscriber',94087); +INSERT INTO "trip" VALUES(905656,218,'8/26/2015 8:12','San Francisco Caltrain 2 (330 Townsend)',69,'8/26/2015 8:16','Townsend at 7th',65,598,'Subscriber',94063); +INSERT INTO "trip" VALUES(905657,577,'8/26/2015 8:12','San Francisco Caltrain 2 (330 Townsend)',69,'8/26/2015 8:22','Market at 4th',76,275,'Subscriber',95125); +INSERT INTO "trip" VALUES(905658,549,'8/26/2015 8:12','San Francisco Caltrain (Townsend at 4th)',70,'8/26/2015 8:21','Harry Bridges Plaza (Ferry Building)',50,447,'Subscriber',95148); +INSERT INTO "trip" VALUES(905659,1004,'8/26/2015 8:13','San Francisco Caltrain 2 (330 Townsend)',69,'8/26/2015 8:29','Clay at Battery',41,288,'Subscriber',94111); +INSERT INTO "trip" VALUES(905660,1042,'8/26/2015 8:13','San Francisco Caltrain 2 (330 Townsend)',69,'8/26/2015 8:30','Embarcadero at Vallejo',48,429,'Subscriber',95122); +INSERT INTO "trip" VALUES(905661,30294,'8/26/2015 8:13','Harry Bridges Plaza (Ferry Building)',50,'8/26/2015 16:38','Harry Bridges Plaza (Ferry Building)',50,611,'Subscriber',94939); +INSERT INTO "trip" VALUES(905662,609,'8/26/2015 8:13','San Francisco Caltrain 2 (330 Townsend)',69,'8/26/2015 8:23','Embarcadero at Folsom',51,518,'Subscriber',94061); +INSERT INTO "trip" VALUES(905663,1600,'8/26/2015 8:13','San Francisco Caltrain 2 (330 Townsend)',69,'8/26/2015 8:40','Davis at Jackson',42,614,'Subscriber',94111); +INSERT INTO "trip" VALUES(905665,439,'8/26/2015 8:13','Embarcadero at Sansome',60,'8/26/2015 8:21','Mechanics Plaza (Market at Battery)',75,508,'Subscriber',94133); +INSERT INTO "trip" VALUES(905666,632,'8/26/2015 8:13','Harry Bridges Plaza (Ferry Building)',50,'8/26/2015 8:24','2nd at Folsom',62,355,'Subscriber',94960); +INSERT INTO "trip" VALUES(905669,854,'8/26/2015 8:14','San Francisco Caltrain (Townsend at 4th)',70,'8/26/2015 8:28','Broadway St at Battery St',82,268,'Subscriber',95130); +INSERT INTO "trip" VALUES(905670,249,'8/26/2015 8:14','Steuart at Market',74,'8/26/2015 8:18','Davis at Jackson',42,422,'Subscriber',94107); +INSERT INTO "trip" VALUES(905671,767,'8/26/2015 8:14','Grant Avenue at Columbus Avenue',73,'8/26/2015 8:27','2nd at Townsend',61,347,'Subscriber',94133); +INSERT INTO "trip" VALUES(905672,535,'8/26/2015 8:14','San Francisco Caltrain 2 (330 Townsend)',69,'8/26/2015 8:23','Embarcadero at Folsom',51,431,'Subscriber',94085); +INSERT INTO "trip" VALUES(905673,346,'8/26/2015 8:14','Embarcadero at Bryant',54,'8/26/2015 8:20','Harry Bridges Plaza (Ferry Building)',50,527,'Subscriber',94105); +INSERT INTO "trip" VALUES(905674,818,'8/26/2015 8:15','Market at 10th',67,'8/26/2015 8:29','Beale at Market',56,96,'Subscriber',94103); +INSERT INTO "trip" VALUES(905675,487,'8/26/2015 8:15','Grant Avenue at Columbus Avenue',73,'8/26/2015 8:23','Temporary Transbay Terminal (Howard at Beale)',55,325,'Subscriber',94133); +INSERT INTO "trip" VALUES(905676,625,'8/26/2015 8:15','San Francisco Caltrain 2 (330 Townsend)',69,'8/26/2015 8:25','Market at Sansome',77,446,'Subscriber',94010); +INSERT INTO "trip" VALUES(905679,900,'8/26/2015 8:16','San Francisco Caltrain (Townsend at 4th)',70,'8/26/2015 8:31','Harry Bridges Plaza (Ferry Building)',50,111,'Subscriber',94087); +INSERT INTO "trip" VALUES(905680,366,'8/26/2015 8:17','Steuart at Market',74,'8/26/2015 8:23','Embarcadero at Vallejo',48,388,'Subscriber',94556); +INSERT INTO "trip" VALUES(905681,486,'8/26/2015 8:17','Market at Sansome',77,'8/26/2015 8:25','2nd at Townsend',61,581,'Subscriber',94401); +INSERT INTO "trip" VALUES(905682,1270,'8/26/2015 8:18','Washington at Kearny',46,'8/26/2015 8:39','2nd at Townsend',61,533,'Subscriber',94133); +INSERT INTO "trip" VALUES(905683,453,'8/26/2015 8:19','Civic Center BART (7th at Market)',72,'8/26/2015 8:27','Townsend at 7th',65,496,'Subscriber',94609); +INSERT INTO "trip" VALUES(905685,434,'8/26/2015 8:19','Temporary Transbay Terminal (Howard at Beale)',55,'8/26/2015 8:27','2nd at Townsend',61,477,'Subscriber',94610); +INSERT INTO "trip" VALUES(905686,104,'8/26/2015 8:20','Beale at Market',56,'8/26/2015 8:21','Temporary Transbay Terminal (Howard at Beale)',55,582,'Subscriber',94110); +INSERT INTO "trip" VALUES(905687,337,'8/26/2015 8:22','Temporary Transbay Terminal (Howard at Beale)',55,'8/26/2015 8:27','Commercial at Montgomery',45,582,'Subscriber',94105); +INSERT INTO "trip" VALUES(905688,880,'8/26/2015 8:22','Palo Alto Caltrain Station',34,'8/26/2015 8:37','Park at Olive',38,252,'Subscriber',94002); +INSERT INTO "trip" VALUES(905689,902,'8/26/2015 8:23','Embarcadero at Folsom',51,'8/26/2015 8:38','2nd at South Park',64,336,'Subscriber',94105); +INSERT INTO "trip" VALUES(905690,945,'8/26/2015 8:23','South Van Ness at Market',66,'8/26/2015 8:39','Harry Bridges Plaza (Ferry Building)',50,382,'Subscriber',94131); +INSERT INTO "trip" VALUES(905691,340,'8/26/2015 8:23','Howard at 2nd',63,'8/26/2015 8:29','2nd at Townsend',61,506,'Subscriber',94965); +INSERT INTO "trip" VALUES(905692,820,'8/26/2015 8:23','Harry Bridges Plaza (Ferry Building)',50,'8/26/2015 8:37','San Francisco Caltrain 2 (330 Townsend)',69,632,'Customer',94609); +INSERT INTO "trip" VALUES(905693,982,'8/26/2015 8:24','San Jose Diridon Caltrain Station',2,'8/26/2015 8:40','Santa Clara County Civic Center',80,702,'Subscriber',94115); +INSERT INTO "trip" VALUES(905694,376,'8/26/2015 8:24','San Jose Diridon Caltrain Station',2,'8/26/2015 8:30','Santa Clara at Almaden',4,231,'Subscriber',94103); +INSERT INTO "trip" VALUES(905695,237,'8/26/2015 8:24','Powell at Post (Union Square)',71,'8/26/2015 8:28','Howard at 2nd',63,260,'Subscriber',94109); +INSERT INTO "trip" VALUES(905696,270,'8/26/2015 8:24','2nd at Folsom',62,'8/26/2015 8:29','2nd at Townsend',61,453,'Subscriber',94110); +INSERT INTO "trip" VALUES(905697,489,'8/26/2015 8:25','Beale at Market',56,'8/26/2015 8:33','Embarcadero at Sansome',60,609,'Subscriber',94549); +INSERT INTO "trip" VALUES(905698,405,'8/26/2015 8:25','Steuart at Market',74,'8/26/2015 8:32','2nd at Townsend',61,525,'Subscriber',94107); +INSERT INTO "trip" VALUES(905699,308,'8/26/2015 8:20','2nd at Townsend',61,'8/26/2015 8:26','Howard at 2nd',63,557,'Subscriber',94062); +INSERT INTO "trip" VALUES(905700,527,'8/26/2015 8:17','2nd at Townsend',61,'8/26/2015 8:26','Steuart at Market',74,495,'Subscriber',94070); +INSERT INTO "trip" VALUES(905701,351,'8/26/2015 8:20','2nd at Townsend',61,'8/26/2015 8:26','Steuart at Market',74,555,'Subscriber',94061); +INSERT INTO "trip" VALUES(905702,861,'8/26/2015 8:26','Broadway St at Battery St',82,'8/26/2015 8:40','San Francisco Caltrain (Townsend at 4th)',70,309,'Subscriber',94133); +INSERT INTO "trip" VALUES(905703,672,'8/26/2015 8:26','San Francisco Caltrain (Townsend at 4th)',70,'8/26/2015 8:38','Harry Bridges Plaza (Ferry Building)',50,510,'Subscriber',94111); +INSERT INTO "trip" VALUES(905704,357,'8/26/2015 8:26','Steuart at Market',74,'8/26/2015 8:32','Embarcadero at Sansome',60,29,'Subscriber',94597); +INSERT INTO "trip" VALUES(905705,517,'8/26/2015 8:26','San Francisco Caltrain (Townsend at 4th)',70,'8/26/2015 8:35','2nd at Folsom',62,417,'Subscriber',94025); +INSERT INTO "trip" VALUES(905706,564,'8/26/2015 8:26','San Francisco Caltrain (Townsend at 4th)',70,'8/26/2015 8:36','Embarcadero at Folsom',51,313,'Subscriber',94403); +INSERT INTO "trip" VALUES(905707,353,'8/26/2015 8:21','2nd at Townsend',61,'8/26/2015 8:27','Howard at 2nd',63,465,'Subscriber',94107); +INSERT INTO "trip" VALUES(905708,511,'8/26/2015 8:27','San Francisco Caltrain (Townsend at 4th)',70,'8/26/2015 8:35','Post at Kearny',47,386,'Subscriber',94303); +INSERT INTO "trip" VALUES(905709,549,'8/26/2015 8:27','San Francisco Caltrain 2 (330 Townsend)',69,'8/26/2015 8:36','Steuart at Market',74,584,'Subscriber',94024); +INSERT INTO "trip" VALUES(905710,600,'8/26/2015 8:27','San Francisco Caltrain 2 (330 Townsend)',69,'8/26/2015 8:37','Embarcadero at Folsom',51,137,'Subscriber',94062); +INSERT INTO "trip" VALUES(905711,278,'8/26/2015 8:27','Mechanics Plaza (Market at Battery)',75,'8/26/2015 8:32','Post at Kearny',47,508,'Subscriber',94610); +INSERT INTO "trip" VALUES(905712,929,'8/26/2015 8:27','San Francisco Caltrain (Townsend at 4th)',70,'8/26/2015 8:43','Clay at Battery',41,575,'Subscriber',94061); +INSERT INTO "trip" VALUES(905713,353,'8/26/2015 8:27','Harry Bridges Plaza (Ferry Building)',50,'8/26/2015 8:33','Howard at 2nd',63,278,'Subscriber',94115); +INSERT INTO "trip" VALUES(905714,376,'8/26/2015 8:27','Market at Sansome',77,'8/26/2015 8:34','2nd at Townsend',61,878,'Subscriber',94708); +INSERT INTO "trip" VALUES(905715,627,'8/26/2015 8:28','San Francisco Caltrain 2 (330 Townsend)',69,'8/26/2015 8:38','Steuart at Market',74,358,'Subscriber',95051); +INSERT INTO "trip" VALUES(905716,365,'8/26/2015 8:22','2nd at Townsend',61,'8/26/2015 8:28','Townsend at 7th',65,335,'Subscriber',94107); +INSERT INTO "trip" VALUES(905717,246,'8/26/2015 8:28','Harry Bridges Plaza (Ferry Building)',50,'8/26/2015 8:32','Market at Sansome',77,617,'Subscriber',94930); +INSERT INTO "trip" VALUES(905718,1106,'8/26/2015 8:28','Harry Bridges Plaza (Ferry Building)',50,'8/26/2015 8:47','Market at 10th',67,619,'Subscriber',94903); +INSERT INTO "trip" VALUES(905719,590,'8/26/2015 8:28','Harry Bridges Plaza (Ferry Building)',50,'8/26/2015 8:38','5th at Howard',57,447,'Subscriber',94903); +INSERT INTO "trip" VALUES(905720,448,'8/26/2015 8:28','Harry Bridges Plaza (Ferry Building)',50,'8/26/2015 8:36','2nd at Townsend',61,326,'Subscriber',94903); +INSERT INTO "trip" VALUES(905721,653,'8/26/2015 8:30','Steuart at Market',74,'8/26/2015 8:40','San Francisco Caltrain (Townsend at 4th)',70,589,'Subscriber',94601); +INSERT INTO "trip" VALUES(905722,919,'8/26/2015 8:30','Steuart at Market',74,'8/26/2015 8:45','Townsend at 7th',65,555,'Subscriber',94607); +INSERT INTO "trip" VALUES(905723,901,'8/26/2015 8:30','San Francisco Caltrain 2 (330 Townsend)',69,'8/26/2015 8:45','Harry Bridges Plaza (Ferry Building)',50,574,'Subscriber',94303); +INSERT INTO "trip" VALUES(905724,513,'8/26/2015 8:30','Steuart at Market',74,'8/26/2015 8:39','2nd at Townsend',61,353,'Subscriber',94939); +INSERT INTO "trip" VALUES(905725,815,'8/26/2015 8:30','San Francisco Caltrain 2 (330 Townsend)',69,'8/26/2015 8:44','Howard at 2nd',63,352,'Subscriber',94040); +INSERT INTO "trip" VALUES(905726,288,'8/26/2015 8:31','Temporary Transbay Terminal (Howard at Beale)',55,'8/26/2015 8:36','Commercial at Montgomery',45,325,'Subscriber',94611); +INSERT INTO "trip" VALUES(905727,612,'8/26/2015 8:31','Harry Bridges Plaza (Ferry Building)',50,'8/26/2015 8:41','2nd at Townsend',61,348,'Subscriber',94949); +INSERT INTO "trip" VALUES(905728,363,'8/26/2015 8:32','Golden Gate at Polk',59,'8/26/2015 8:38','5th at Howard',57,630,'Subscriber',94109); +INSERT INTO "trip" VALUES(905729,833,'8/26/2015 8:32','South Van Ness at Market',66,'8/26/2015 8:46','Beale at Market',56,442,'Subscriber',94117); +INSERT INTO "trip" VALUES(905731,528,'8/26/2015 8:32','Harry Bridges Plaza (Ferry Building)',50,'8/26/2015 8:41','2nd at Townsend',61,111,'Subscriber',94904); +INSERT INTO "trip" VALUES(905732,270,'8/26/2015 8:32','Howard at 2nd',63,'8/26/2015 8:37','5th at Howard',57,465,'Subscriber',94610); +INSERT INTO "trip" VALUES(905733,406,'8/26/2015 8:33','Grant Avenue at Columbus Avenue',73,'8/26/2015 8:39','Market at Sansome',77,472,'Subscriber',94133); +INSERT INTO "trip" VALUES(905734,947,'8/26/2015 8:27','Spear at Folsom',49,'8/26/2015 8:42','Market at 10th',67,592,'Subscriber',94105); +INSERT INTO "trip" VALUES(905735,461,'8/26/2015 8:28','Spear at Folsom',49,'8/26/2015 8:36','San Francisco Caltrain (Townsend at 4th)',70,469,'Subscriber',94707); +INSERT INTO "trip" VALUES(905736,557,'8/26/2015 8:32','Grant Avenue at Columbus Avenue',73,'8/26/2015 8:42','Market at Sansome',77,563,'Subscriber',94133); +INSERT INTO "trip" VALUES(905737,560,'8/26/2015 8:24','2nd at Townsend',61,'8/26/2015 8:33','Steuart at Market',74,287,'Subscriber',95120); +INSERT INTO "trip" VALUES(905738,197,'8/26/2015 8:33','Market at 4th',76,'8/26/2015 8:36','5th at Howard',57,291,'Subscriber',94103); +INSERT INTO "trip" VALUES(905739,317,'8/26/2015 8:33','Harry Bridges Plaza (Ferry Building)',50,'8/26/2015 8:38','Market at Sansome',77,527,'Subscriber',94925); +INSERT INTO "trip" VALUES(905740,509,'8/26/2015 8:33','Market at 10th',67,'8/26/2015 8:42','Post at Kearny',47,524,'Subscriber',94105); +INSERT INTO "trip" VALUES(905741,533,'8/26/2015 8:33','Powell Street BART',39,'8/26/2015 8:42','2nd at Folsom',62,636,'Customer',78702); +INSERT INTO "trip" VALUES(905743,711,'8/26/2015 8:22','2nd at Townsend',61,'8/26/2015 8:34','Embarcadero at Vallejo',48,492,'Subscriber',95128); +INSERT INTO "trip" VALUES(905744,755,'8/26/2015 8:22','2nd at Townsend',61,'8/26/2015 8:34','Mechanics Plaza (Market at Battery)',75,538,'Subscriber',95054); +INSERT INTO "trip" VALUES(905745,229,'8/26/2015 8:35','Townsend at 7th',65,'8/26/2015 8:39','San Francisco Caltrain 2 (330 Townsend)',69,496,'Subscriber',94107); +INSERT INTO "trip" VALUES(905749,345,'8/26/2015 8:38','San Francisco Caltrain 2 (330 Townsend)',69,'8/26/2015 8:43','2nd at South Park',64,632,'Subscriber',94158); +INSERT INTO "trip" VALUES(905750,146,'8/26/2015 8:38','Davis at Jackson',42,'8/26/2015 8:40','Embarcadero at Vallejo',48,329,'Subscriber',94708); +INSERT INTO "trip" VALUES(905751,575,'8/26/2015 8:38','San Francisco Caltrain (Townsend at 4th)',70,'8/26/2015 8:48','Powell Street BART',39,471,'Subscriber',94158); +INSERT INTO "trip" VALUES(905752,358,'8/26/2015 8:38','Embarcadero at Bryant',54,'8/26/2015 8:44','Steuart at Market',74,318,'Subscriber',94105); +INSERT INTO "trip" VALUES(905753,565,'8/26/2015 8:38','South Van Ness at Market',66,'8/26/2015 8:48','Townsend at 7th',65,593,'Subscriber',94102); +INSERT INTO "trip" VALUES(905754,676,'8/26/2015 8:38','Golden Gate at Polk',59,'8/26/2015 8:49','San Francisco Caltrain 2 (330 Townsend)',69,364,'Subscriber',94102); +INSERT INTO "trip" VALUES(905755,1060,'8/26/2015 8:38','Rengstorff Avenue / California Street',33,'8/26/2015 8:56','Mountain View Caltrain Station',28,239,'Subscriber',94040); +INSERT INTO "trip" VALUES(905756,449,'8/26/2015 8:39','Embarcadero at Bryant',54,'8/26/2015 8:46','Mechanics Plaza (Market at Battery)',75,448,'Subscriber',94105); +INSERT INTO "trip" VALUES(905757,387,'8/26/2015 8:39','Steuart at Market',74,'8/26/2015 8:45','Embarcadero at Sansome',60,584,'Subscriber',94565); +INSERT INTO "trip" VALUES(905758,926,'8/26/2015 8:39','Temporary Transbay Terminal (Howard at Beale)',55,'8/26/2015 8:54','Townsend at 7th',65,425,'Subscriber',94568); +INSERT INTO "trip" VALUES(905759,716,'8/26/2015 8:39','2nd at Folsom',62,'8/26/2015 8:51','Townsend at 7th',65,417,'Subscriber',94610); +INSERT INTO "trip" VALUES(905760,128,'8/26/2015 8:39','Beale at Market',56,'8/26/2015 8:41','Temporary Transbay Terminal (Howard at Beale)',55,361,'Subscriber',94010); +INSERT INTO "trip" VALUES(905762,304,'8/26/2015 8:40','Embarcadero at Sansome',60,'8/26/2015 8:45','Steuart at Market',74,69,'Subscriber',94133); +INSERT INTO "trip" VALUES(905763,502,'8/26/2015 8:39','Powell Street BART',39,'8/26/2015 8:48','Beale at Market',56,266,'Subscriber',94107); +INSERT INTO "trip" VALUES(905764,687,'8/26/2015 8:40','Townsend at 7th',65,'8/26/2015 8:51','Temporary Transbay Terminal (Howard at Beale)',55,509,'Subscriber',94107); +INSERT INTO "trip" VALUES(905767,354,'8/26/2015 8:40','Beale at Market',56,'8/26/2015 8:46','2nd at South Park',64,96,'Subscriber',94618); +INSERT INTO "trip" VALUES(905768,582,'8/26/2015 8:41','Embarcadero at Sansome',60,'8/26/2015 8:50','Temporary Transbay Terminal (Howard at Beale)',55,567,'Subscriber',94941); +INSERT INTO "trip" VALUES(905769,422,'8/26/2015 8:41','Temporary Transbay Terminal (Howard at Beale)',55,'8/26/2015 8:48','5th at Howard',57,421,'Subscriber',94103); +INSERT INTO "trip" VALUES(905770,68,'8/26/2015 8:41','2nd at South Park',64,'8/26/2015 8:42','2nd at Townsend',61,300,'Subscriber',94107); +INSERT INTO "trip" VALUES(905771,350,'8/26/2015 8:41','2nd at Folsom',62,'8/26/2015 8:47','Clay at Battery',41,454,'Subscriber',94107); +INSERT INTO "trip" VALUES(905772,794,'8/26/2015 8:41','Steuart at Market',74,'8/26/2015 8:54','Townsend at 7th',65,634,'Subscriber',94105); +INSERT INTO "trip" VALUES(905773,424,'8/26/2015 8:41','Harry Bridges Plaza (Ferry Building)',50,'8/26/2015 8:48','Embarcadero at Sansome',60,382,'Subscriber',94602); +INSERT INTO "trip" VALUES(905774,435,'8/26/2015 8:42','Powell Street BART',39,'8/26/2015 8:49','San Francisco Caltrain 2 (330 Townsend)',69,473,'Subscriber',94109); +INSERT INTO "trip" VALUES(905775,203,'8/26/2015 8:38','2nd at Townsend',61,'8/26/2015 8:42','San Francisco Caltrain (Townsend at 4th)',70,878,'Subscriber',94107); +INSERT INTO "trip" VALUES(905776,224,'8/26/2015 8:42','Steuart at Market',74,'8/26/2015 8:46','Embarcadero at Vallejo',48,495,'Subscriber',94608); +INSERT INTO "trip" VALUES(905777,587,'8/26/2015 8:42','Market at 10th',67,'8/26/2015 8:52','Yerba Buena Center of the Arts (3rd @ Howard)',68,450,'Subscriber',94102); +INSERT INTO "trip" VALUES(905778,392,'8/26/2015 8:43','Powell Street BART',39,'8/26/2015 8:49','San Francisco Caltrain 2 (330 Townsend)',69,356,'Subscriber',94107); +INSERT INTO "trip" VALUES(905779,733,'8/26/2015 8:44','Howard at 2nd',63,'8/26/2015 8:56','Townsend at 7th',65,260,'Subscriber',94901); +INSERT INTO "trip" VALUES(905780,518,'8/26/2015 8:44','Townsend at 7th',65,'8/26/2015 8:52','2nd at Folsom',62,335,'Subscriber',94107); +INSERT INTO "trip" VALUES(905783,556,'8/26/2015 8:44','Embarcadero at Folsom',51,'8/26/2015 8:54','Embarcadero at Sansome',60,313,'Subscriber',94602); +INSERT INTO "trip" VALUES(905784,333,'8/26/2015 8:45','2nd at Folsom',62,'8/26/2015 8:51','Commercial at Montgomery',45,400,'Subscriber',94107); +INSERT INTO "trip" VALUES(905785,551,'8/26/2015 8:45','Steuart at Market',74,'8/26/2015 8:55','2nd at Townsend',61,322,'Subscriber',94609); +INSERT INTO "trip" VALUES(905788,205,'8/26/2015 8:48','Townsend at 7th',65,'8/26/2015 8:51','San Francisco Caltrain 2 (330 Townsend)',69,555,'Subscriber',94107); +INSERT INTO "trip" VALUES(905791,377,'8/26/2015 8:48','Harry Bridges Plaza (Ferry Building)',50,'8/26/2015 8:54','Embarcadero at Sansome',60,387,'Subscriber',94595); +INSERT INTO "trip" VALUES(905793,367,'8/26/2015 8:48','Harry Bridges Plaza (Ferry Building)',50,'8/26/2015 8:54','Embarcadero at Sansome',60,510,'Subscriber',94947); +INSERT INTO "trip" VALUES(905794,358,'8/26/2015 8:48','Embarcadero at Sansome',60,'8/26/2015 8:54','Steuart at Market',74,370,'Subscriber',94133); +INSERT INTO "trip" VALUES(905795,358,'8/26/2015 8:49','2nd at Folsom',62,'8/26/2015 8:55','San Francisco Caltrain (Townsend at 4th)',70,636,'Subscriber',94105); +INSERT INTO "trip" VALUES(905796,361,'8/26/2015 8:49','Powell Street BART',39,'8/26/2015 8:55','San Francisco Caltrain 2 (330 Townsend)',69,471,'Subscriber',94108); +INSERT INTO "trip" VALUES(905797,667,'8/26/2015 8:49','Embarcadero at Sansome',60,'8/26/2015 9:00','Mechanics Plaza (Market at Battery)',75,29,'Subscriber',94109); +INSERT INTO "trip" VALUES(905798,404,'8/26/2015 8:49','Harry Bridges Plaza (Ferry Building)',50,'8/26/2015 8:56','Embarcadero at Sansome',60,393,'Subscriber',94501); +INSERT INTO "trip" VALUES(905799,507,'8/26/2015 8:50','Steuart at Market',74,'8/26/2015 8:58','Embarcadero at Sansome',60,358,'Subscriber',94568); +INSERT INTO "trip" VALUES(905800,528,'8/26/2015 8:50','San Francisco Caltrain (Townsend at 4th)',70,'8/26/2015 8:59','Temporary Transbay Terminal (Howard at Beale)',55,309,'Subscriber',94022); +INSERT INTO "trip" VALUES(905803,919,'8/26/2015 8:51','Temporary Transbay Terminal (Howard at Beale)',55,'8/26/2015 9:06','South Van Ness at Market',66,567,'Subscriber',94609); +INSERT INTO "trip" VALUES(905804,602,'8/26/2015 8:51','San Francisco Caltrain (Townsend at 4th)',70,'8/26/2015 9:01','Beale at Market',56,469,'Subscriber',95136); +INSERT INTO "trip" VALUES(905805,846,'8/26/2015 8:51','San Francisco Caltrain (Townsend at 4th)',70,'8/26/2015 9:05','Temporary Transbay Terminal (Howard at Beale)',55,878,'Subscriber',95008); +INSERT INTO "trip" VALUES(905806,463,'8/26/2015 8:51','Temporary Transbay Terminal (Howard at Beale)',55,'8/26/2015 8:59','Clay at Battery',41,361,'Subscriber',94501); +INSERT INTO "trip" VALUES(905808,509,'8/26/2015 8:51','Harry Bridges Plaza (Ferry Building)',50,'8/26/2015 9:00','2nd at Folsom',62,405,'Subscriber',94558); +INSERT INTO "trip" VALUES(905809,315,'8/26/2015 8:51','Post at Kearny',47,'8/26/2015 8:57','Steuart at Market',74,524,'Subscriber',94108); +INSERT INTO "trip" VALUES(905810,337,'8/26/2015 8:51','San Francisco Caltrain 2 (330 Townsend)',69,'8/26/2015 8:57','Yerba Buena Center of the Arts (3rd @ Howard)',68,473,'Subscriber',94041); +INSERT INTO "trip" VALUES(905811,538,'8/26/2015 8:51','San Francisco Caltrain (Townsend at 4th)',70,'8/26/2015 9:00','Market at Sansome',77,589,'Subscriber',95134); +INSERT INTO "trip" VALUES(905812,92,'8/26/2015 8:52','Washington at Kearny',46,'8/26/2015 8:54','Clay at Battery',41,394,'Subscriber',94111); +INSERT INTO "trip" VALUES(905815,621,'8/26/2015 8:53','San Francisco Caltrain 2 (330 Townsend)',69,'8/26/2015 9:03','Embarcadero at Folsom',51,364,'Subscriber',94303); +INSERT INTO "trip" VALUES(905816,239,'8/26/2015 8:53','Mountain View Caltrain Station',28,'8/26/2015 8:57','Evelyn Park and Ride',30,706,'Subscriber',94108); +INSERT INTO "trip" VALUES(905818,565,'8/26/2015 8:53','Market at 10th',67,'8/26/2015 9:02','Market at 4th',76,592,'Subscriber',94103); +INSERT INTO "trip" VALUES(905819,439,'8/26/2015 8:53','San Francisco Caltrain 2 (330 Townsend)',69,'8/26/2015 9:00','5th at Howard',57,496,'Subscriber',94401); +INSERT INTO "trip" VALUES(905820,625,'8/26/2015 8:53','Harry Bridges Plaza (Ferry Building)',50,'8/26/2015 9:04','Post at Kearny',47,651,'Subscriber',95442); +INSERT INTO "trip" VALUES(905821,698,'8/26/2015 8:53','San Francisco Caltrain 2 (330 Townsend)',69,'8/26/2015 9:05','Spear at Folsom',49,553,'Subscriber',94040); +INSERT INTO "trip" VALUES(905822,358,'8/26/2015 8:49','2nd at Townsend',61,'8/26/2015 8:55','San Francisco Caltrain (Townsend at 4th)',70,581,'Subscriber',94107); +INSERT INTO "trip" VALUES(905823,425,'8/26/2015 8:49','2nd at Townsend',61,'8/26/2015 8:56','Townsend at 7th',65,326,'Subscriber',94107); +INSERT INTO "trip" VALUES(905824,449,'8/26/2015 8:49','2nd at Townsend',61,'8/26/2015 8:57','Harry Bridges Plaza (Ferry Building)',50,477,'Subscriber',94107); +INSERT INTO "trip" VALUES(905825,346,'8/26/2015 8:52','2nd at Townsend',61,'8/26/2015 8:58','Howard at 2nd',63,533,'Subscriber',94105); +INSERT INTO "trip" VALUES(905826,416,'8/26/2015 8:53','Beale at Market',56,'8/26/2015 9:00','2nd at South Park',64,266,'Subscriber',94607); +INSERT INTO "trip" VALUES(905827,493,'8/26/2015 8:53','San Francisco Caltrain 2 (330 Townsend)',69,'8/26/2015 9:02','2nd at Folsom',62,555,'Subscriber',95112); +INSERT INTO "trip" VALUES(905828,320,'8/26/2015 8:53','Temporary Transbay Terminal (Howard at Beale)',55,'8/26/2015 8:59','Harry Bridges Plaza (Ferry Building)',50,547,'Subscriber',94608); +INSERT INTO "trip" VALUES(905829,308,'8/26/2015 8:53','2nd at Folsom',62,'8/26/2015 8:59','Market at Sansome',77,355,'Subscriber',94107); +INSERT INTO "trip" VALUES(905830,933,'8/26/2015 8:54','Harry Bridges Plaza (Ferry Building)',50,'8/26/2015 9:09','Townsend at 7th',65,408,'Customer',94965); +INSERT INTO "trip" VALUES(905831,301,'8/26/2015 8:54','San Francisco Caltrain 2 (330 Townsend)',69,'8/26/2015 8:59','Townsend at 7th',65,356,'Subscriber',94040); +INSERT INTO "trip" VALUES(905832,399,'8/26/2015 8:54','San Francisco Caltrain 2 (330 Townsend)',69,'8/26/2015 9:00','Howard at 2nd',63,375,'Subscriber',94041); +INSERT INTO "trip" VALUES(905833,615,'8/26/2015 8:54','South Van Ness at Market',66,'8/26/2015 9:04','Market at Sansome',77,599,'Subscriber',94117); +INSERT INTO "trip" VALUES(905834,412,'8/26/2015 8:54','Powell Street BART',39,'8/26/2015 9:01','San Francisco Caltrain 2 (330 Townsend)',69,516,'Subscriber',94107); +INSERT INTO "trip" VALUES(905835,793,'8/26/2015 8:54','Townsend at 7th',65,'8/26/2015 9:07','Market at Sansome',77,598,'Subscriber',94107); +INSERT INTO "trip" VALUES(905836,399,'8/26/2015 8:54','2nd at Townsend',61,'8/26/2015 9:01','Steuart at Market',74,300,'Subscriber',94158); +INSERT INTO "trip" VALUES(905837,1038,'8/26/2015 8:54','5th at Howard',57,'8/26/2015 9:12','Broadway St at Battery St',82,630,'Subscriber',94107); +INSERT INTO "trip" VALUES(905838,898,'8/26/2015 8:54','Temporary Transbay Terminal (Howard at Beale)',55,'8/26/2015 9:09','South Van Ness at Market',66,509,'Subscriber',94703); +INSERT INTO "trip" VALUES(905839,557,'8/26/2015 8:55','Civic Center BART (7th at Market)',72,'8/26/2015 9:04','Townsend at 7th',65,512,'Subscriber',94551); +INSERT INTO "trip" VALUES(905840,110,'8/26/2015 8:55','Powell Street BART',39,'8/26/2015 8:57','5th at Howard',57,354,'Subscriber',94024); +INSERT INTO "trip" VALUES(905842,404,'8/26/2015 8:55','Market at Sansome',77,'8/26/2015 9:02','2nd at South Park',64,591,'Subscriber',94105); +INSERT INTO "trip" VALUES(905843,477,'8/26/2015 8:56','Embarcadero at Folsom',51,'8/26/2015 9:03','Embarcadero at Sansome',60,518,'Subscriber',94124); +INSERT INTO "trip" VALUES(905844,384,'8/26/2015 8:56','Civic Center BART (7th at Market)',72,'8/26/2015 9:02','Townsend at 7th',65,462,'Subscriber',94518); +INSERT INTO "trip" VALUES(905845,1068,'8/26/2015 8:56','San Francisco Caltrain (Townsend at 4th)',70,'8/26/2015 9:14','Broadway St at Battery St',82,636,'Subscriber',94403); +INSERT INTO "trip" VALUES(905846,336,'8/26/2015 8:56','Embarcadero at Sansome',60,'8/26/2015 9:02','Clay at Battery',41,510,'Subscriber',94133); +INSERT INTO "trip" VALUES(905847,707,'8/26/2015 8:56','San Francisco Caltrain (Townsend at 4th)',70,'8/26/2015 9:08','Temporary Transbay Terminal (Howard at Beale)',55,581,'Subscriber',94402); +INSERT INTO "trip" VALUES(905848,161,'8/26/2015 8:57','Howard at 2nd',63,'8/26/2015 8:59','Market at Sansome',77,557,'Subscriber',94107); +INSERT INTO "trip" VALUES(905849,665,'8/26/2015 8:57','San Francisco Caltrain 2 (330 Townsend)',69,'8/26/2015 9:08','Steuart at Market',74,471,'Subscriber',94002); +INSERT INTO "trip" VALUES(905850,702,'8/26/2015 8:58','2nd at Folsom',62,'8/26/2015 9:09','Market at 10th',67,410,'Subscriber',94107); +INSERT INTO "trip" VALUES(905851,255,'8/26/2015 8:58','Beale at Market',56,'8/26/2015 9:02','Broadway St at Battery St',82,442,'Subscriber',94618); +INSERT INTO "trip" VALUES(905852,256,'8/26/2015 8:58','Steuart at Market',74,'8/26/2015 9:03','Davis at Jackson',42,524,'Subscriber',94102); +INSERT INTO "trip" VALUES(905853,1041,'8/26/2015 8:58','Temporary Transbay Terminal (Howard at Beale)',55,'8/26/2015 9:16','Broadway St at Battery St',82,457,'Subscriber',94111); +INSERT INTO "trip" VALUES(905854,1247,'8/26/2015 8:58','Clay at Battery',41,'8/26/2015 9:19','San Francisco Caltrain (Townsend at 4th)',70,454,'Subscriber',94133); +INSERT INTO "trip" VALUES(905855,261,'8/26/2015 8:59','Steuart at Market',74,'8/26/2015 9:03','Embarcadero at Sansome',60,318,'Subscriber',94611); +INSERT INTO "trip" VALUES(905856,981,'8/26/2015 8:59','Harry Bridges Plaza (Ferry Building)',50,'8/26/2015 9:15','Temporary Transbay Terminal (Howard at Beale)',55,574,'Subscriber',94612); +INSERT INTO "trip" VALUES(905857,331,'8/26/2015 8:59','Market at Sansome',77,'8/26/2015 9:04','2nd at Folsom',62,527,'Subscriber',94612); +INSERT INTO "trip" VALUES(905858,542,'8/26/2015 8:59','Powell Street BART',39,'8/26/2015 9:08','San Francisco Caltrain 2 (330 Townsend)',69,520,'Subscriber',94703); +INSERT INTO "trip" VALUES(905860,351,'8/26/2015 9:00','Temporary Transbay Terminal (Howard at Beale)',55,'8/26/2015 9:05','Yerba Buena Center of the Arts (3rd @ Howard)',68,625,'Subscriber',94610); +INSERT INTO "trip" VALUES(905861,711,'8/26/2015 9:00','Rengstorff Avenue / California Street',33,'8/26/2015 9:11','Mountain View Caltrain Station',28,22,'Subscriber',94040); +INSERT INTO "trip" VALUES(905862,801,'8/26/2015 9:00','Townsend at 7th',65,'8/26/2015 9:13','Howard at 2nd',63,629,'Subscriber',94116); +INSERT INTO "trip" VALUES(905863,520,'8/26/2015 9:00','Steuart at Market',74,'8/26/2015 9:08','2nd at Townsend',61,392,'Subscriber',94110); +INSERT INTO "trip" VALUES(905864,566,'8/26/2015 9:00','Temporary Transbay Terminal (Howard at Beale)',55,'8/26/2015 9:09','San Francisco Caltrain (Townsend at 4th)',70,309,'Subscriber',94610); +INSERT INTO "trip" VALUES(905865,651,'8/26/2015 9:00','Steuart at Market',74,'8/26/2015 9:11','2nd at Townsend',61,624,'Subscriber',94610); +INSERT INTO "trip" VALUES(905866,340,'8/26/2015 9:01','Powell Street BART',39,'8/26/2015 9:07','San Francisco Caltrain (Townsend at 4th)',70,427,'Subscriber',2780); +INSERT INTO "trip" VALUES(905867,444,'8/26/2015 9:01','Market at Sansome',77,'8/26/2015 9:09','2nd at Townsend',61,572,'Subscriber',94611); +INSERT INTO "trip" VALUES(905868,801,'8/26/2015 9:01','Market at Sansome',77,'8/26/2015 9:15','2nd at Townsend',61,557,'Subscriber',94609); +INSERT INTO "trip" VALUES(905869,807,'8/26/2015 9:02','Civic Center BART (7th at Market)',72,'8/26/2015 9:15','Temporary Transbay Terminal (Howard at Beale)',55,187,'Subscriber',94103); +INSERT INTO "trip" VALUES(905871,843,'8/26/2015 9:02','San Francisco Caltrain 2 (330 Townsend)',69,'8/26/2015 9:16','Mechanics Plaza (Market at Battery)',75,516,'Subscriber',94301); +INSERT INTO "trip" VALUES(905872,263,'8/26/2015 9:02','Broadway St at Battery St',82,'8/26/2015 9:07','Beale at Market',56,428,'Subscriber',94133); +INSERT INTO "trip" VALUES(905875,287,'8/26/2015 9:03','Broadway St at Battery St',82,'8/26/2015 9:08','Temporary Transbay Terminal (Howard at Beale)',55,442,'Subscriber',94566); +INSERT INTO "trip" VALUES(905876,273,'8/26/2015 9:03','Davis at Jackson',42,'8/26/2015 9:08','Beale at Market',56,422,'Subscriber',94122); +INSERT INTO "trip" VALUES(905877,352,'8/26/2015 9:04','Market at Sansome',77,'8/26/2015 9:09','Powell at Post (Union Square)',71,563,'Subscriber',94062); +INSERT INTO "trip" VALUES(905878,267,'8/26/2015 9:04','San Francisco Caltrain 2 (330 Townsend)',69,'8/26/2015 9:08','Townsend at 7th',65,420,'Subscriber',94401); +INSERT INTO "trip" VALUES(905879,229,'8/26/2015 9:04','Embarcadero at Bryant',54,'8/26/2015 9:08','Embarcadero at Folsom',51,597,'Subscriber',94103); +INSERT INTO "trip" VALUES(905880,269,'8/26/2015 9:04','San Jose Diridon Caltrain Station',2,'8/26/2015 9:08','Santa Clara at Almaden',4,175,'Subscriber',94158); +INSERT INTO "trip" VALUES(905881,734,'8/26/2015 9:04','San Francisco Caltrain 2 (330 Townsend)',69,'8/26/2015 9:16','Beale at Market',56,500,'Subscriber',94085); +INSERT INTO "trip" VALUES(905882,416,'8/26/2015 9:04','Market at 4th',76,'8/26/2015 9:11','San Francisco Caltrain (Townsend at 4th)',70,519,'Subscriber',94117); +INSERT INTO "trip" VALUES(905884,565,'8/26/2015 9:04','San Francisco Caltrain 2 (330 Townsend)',69,'8/26/2015 9:14','Powell Street BART',39,504,'Subscriber',94403); +INSERT INTO "trip" VALUES(905885,1295,'8/26/2015 9:05','San Francisco Caltrain 2 (330 Townsend)',69,'8/26/2015 9:26','Steuart at Market',74,282,'Subscriber',94404); +INSERT INTO "trip" VALUES(905886,251,'8/26/2015 9:05','San Francisco Caltrain 2 (330 Townsend)',69,'8/26/2015 9:09','Townsend at 7th',65,579,'Subscriber',94043); +INSERT INTO "trip" VALUES(905887,273,'8/26/2015 9:05','Mountain View Caltrain Station',28,'8/26/2015 9:09','Evelyn Park and Ride',30,141,'Subscriber',94133); +INSERT INTO "trip" VALUES(905888,1110,'8/26/2015 9:05','Townsend at 7th',65,'8/26/2015 9:24','Commercial at Montgomery',45,462,'Subscriber',94107); +INSERT INTO "trip" VALUES(905889,926,'8/26/2015 9:05','Mechanics Plaza (Market at Battery)',75,'8/26/2015 9:21','South Van Ness at Market',66,379,'Subscriber',94611); +INSERT INTO "trip" VALUES(905890,451,'8/26/2015 9:05','Mountain View Caltrain Station',28,'8/26/2015 9:13','Castro Street and El Camino Real',32,194,'Subscriber',94109); +INSERT INTO "trip" VALUES(905891,241,'8/26/2015 9:06','Mountain View Caltrain Station',28,'8/26/2015 9:10','Mountain View City Hall',27,182,'Subscriber',94107); +INSERT INTO "trip" VALUES(905892,363,'8/26/2015 9:06','Mountain View Caltrain Station',28,'8/26/2015 9:12','Castro Street and El Camino Real',32,673,'Subscriber',94105); +INSERT INTO "trip" VALUES(905893,297,'8/26/2015 9:06','5th at Howard',57,'8/26/2015 9:11','Post at Kearny',47,465,'Subscriber',94107); +INSERT INTO "trip" VALUES(905894,420,'8/26/2015 9:06','Market at 4th',76,'8/26/2015 9:13','San Francisco Caltrain (Townsend at 4th)',70,338,'Subscriber',94105); +INSERT INTO "trip" VALUES(905895,428,'8/26/2015 9:07','Harry Bridges Plaza (Ferry Building)',50,'8/26/2015 9:14','2nd at Folsom',62,547,'Subscriber',94973); +INSERT INTO "trip" VALUES(905896,265,'8/26/2015 9:07','Market at Sansome',77,'8/26/2015 9:11','2nd at South Park',64,270,'Subscriber',94115); +INSERT INTO "trip" VALUES(905897,383,'8/26/2015 9:07','Market at Sansome',77,'8/26/2015 9:13','2nd at South Park',64,472,'Subscriber',94610); +INSERT INTO "trip" VALUES(905898,619,'8/26/2015 9:08','Townsend at 7th',65,'8/26/2015 9:18','Powell Street BART',39,489,'Subscriber',94107); +INSERT INTO "trip" VALUES(905899,528,'8/26/2015 9:08','Temporary Transbay Terminal (Howard at Beale)',55,'8/26/2015 9:17','Broadway St at Battery St',82,878,'Subscriber',94602); +INSERT INTO "trip" VALUES(905900,297,'8/26/2015 9:08','San Francisco Caltrain 2 (330 Townsend)',69,'8/26/2015 9:13','Townsend at 7th',65,520,'Subscriber',94107); +INSERT INTO "trip" VALUES(905901,134,'8/26/2015 9:08','Market at 4th',76,'8/26/2015 9:10','Yerba Buena Center of the Arts (3rd @ Howard)',68,411,'Subscriber',94123); +INSERT INTO "trip" VALUES(905902,484,'8/26/2015 9:08','Harry Bridges Plaza (Ferry Building)',50,'8/26/2015 9:16','2nd at Townsend',61,377,'Subscriber',94901); +INSERT INTO "trip" VALUES(905903,652,'8/26/2015 9:08','Davis at Jackson',42,'8/26/2015 9:19','2nd at Townsend',61,468,'Subscriber',94111); +INSERT INTO "trip" VALUES(905904,198,'8/26/2015 9:09','Beale at Market',56,'8/26/2015 9:13','Davis at Jackson',42,469,'Subscriber',94111); +INSERT INTO "trip" VALUES(905905,843,'8/26/2015 8:56','2nd at Townsend',61,'8/26/2015 9:10','Commercial at Montgomery',45,111,'Subscriber',94107); +INSERT INTO "trip" VALUES(905907,430,'8/26/2015 9:04','2nd at Townsend',61,'8/26/2015 9:11','Steuart at Market',74,453,'Subscriber',94002); +INSERT INTO "trip" VALUES(905908,703,'8/26/2015 9:11','Powell at Post (Union Square)',71,'8/26/2015 9:23','Spear at Folsom',49,563,'Subscriber',94102); +INSERT INTO "trip" VALUES(905909,698,'8/26/2015 9:12','Golden Gate at Polk',59,'8/26/2015 9:23','Beale at Market',56,544,'Subscriber',94109); +INSERT INTO "trip" VALUES(905910,726,'8/26/2015 9:12','San Francisco Caltrain (Townsend at 4th)',70,'8/26/2015 9:24','Broadway St at Battery St',82,427,'Subscriber',94027); +INSERT INTO "trip" VALUES(905912,1059,'8/26/2015 9:13','San Francisco Caltrain (Townsend at 4th)',70,'8/26/2015 9:30','Davis at Jackson',42,309,'Subscriber',94086); +INSERT INTO "trip" VALUES(905913,555,'8/26/2015 9:04','2nd at Townsend',61,'8/26/2015 9:13','Market at 4th',76,506,'Subscriber',94107); +INSERT INTO "trip" VALUES(905914,326,'8/26/2015 9:13','Howard at 2nd',63,'8/26/2015 9:19','Embarcadero at Folsom',51,278,'Subscriber',94105); +INSERT INTO "trip" VALUES(905915,1055,'8/26/2015 9:14','San Francisco Caltrain (Townsend at 4th)',70,'8/26/2015 9:31','Market at 10th',67,338,'Subscriber',95119); +INSERT INTO "trip" VALUES(905916,614,'8/26/2015 9:14','San Francisco Caltrain 2 (330 Townsend)',69,'8/26/2015 9:24','Market at 10th',67,290,'Subscriber',94061); +INSERT INTO "trip" VALUES(905917,470,'8/26/2015 9:14','San Francisco Caltrain 2 (330 Townsend)',69,'8/26/2015 9:22','Market at Sansome',77,269,'Subscriber',94306); +INSERT INTO "trip" VALUES(905918,681,'8/26/2015 9:14','Golden Gate at Polk',59,'8/26/2015 9:26','Mechanics Plaza (Market at Battery)',75,623,'Subscriber',94111); +INSERT INTO "trip" VALUES(905919,1185,'8/26/2015 9:15','Temporary Transbay Terminal (Howard at Beale)',55,'8/26/2015 9:34','South Van Ness at Market',66,581,'Subscriber',94618); +INSERT INTO "trip" VALUES(905920,880,'8/26/2015 9:14','San Francisco Caltrain (Townsend at 4th)',70,'8/26/2015 9:29','Broadway St at Battery St',82,336,'Subscriber',95129); +INSERT INTO "trip" VALUES(905921,708,'8/26/2015 9:15','San Francisco Caltrain (Townsend at 4th)',70,'8/26/2015 9:26','Steuart at Market',74,549,'Subscriber',95035); +INSERT INTO "trip" VALUES(905922,526,'8/26/2015 9:15','Townsend at 7th',65,'8/26/2015 9:24','2nd at Townsend',61,420,'Subscriber',94107); +INSERT INTO "trip" VALUES(905923,363,'8/26/2015 9:15','Powell Street BART',39,'8/26/2015 9:21','San Francisco Caltrain 2 (330 Townsend)',69,504,'Subscriber',94606); +INSERT INTO "trip" VALUES(905924,609,'8/26/2015 9:15','Temporary Transbay Terminal (Howard at Beale)',55,'8/26/2015 9:25','Market at 4th',76,517,'Subscriber',94608); +INSERT INTO "trip" VALUES(905925,664,'8/26/2015 9:15','San Francisco Caltrain (Townsend at 4th)',70,'8/26/2015 9:26','Steuart at Market',74,632,'Subscriber',95008); +INSERT INTO "trip" VALUES(905926,281,'8/26/2015 9:15','San Francisco Caltrain 2 (330 Townsend)',69,'8/26/2015 9:20','Townsend at 7th',65,371,'Subscriber',95136); +INSERT INTO "trip" VALUES(905927,863,'8/26/2015 9:16','San Francisco Caltrain (Townsend at 4th)',70,'8/26/2015 9:30','Davis at Jackson',42,587,'Subscriber',95111); +INSERT INTO "trip" VALUES(905928,660,'8/26/2015 9:16','San Francisco Caltrain 2 (330 Townsend)',69,'8/26/2015 9:27','Embarcadero at Folsom',51,389,'Subscriber',95118); +INSERT INTO "trip" VALUES(905929,416,'8/26/2015 9:17','Market at Sansome',77,'8/26/2015 9:23','Broadway St at Battery St',82,331,'Subscriber',94132); +INSERT INTO "trip" VALUES(905930,980,'8/26/2015 9:17','South Van Ness at Market',66,'8/26/2015 9:34','Commercial at Montgomery',45,546,'Subscriber',94103); +INSERT INTO "trip" VALUES(905931,199,'8/26/2015 9:18','University and Emerson',35,'8/26/2015 9:21','Cowper at University',37,649,'Subscriber',94107); +INSERT INTO "trip" VALUES(905932,265,'8/26/2015 9:20','Temporary Transbay Terminal (Howard at Beale)',55,'8/26/2015 9:24','Embarcadero at Bryant',54,363,'Subscriber',94610); +INSERT INTO "trip" VALUES(905933,271,'8/26/2015 9:20','Mountain View Caltrain Station',28,'8/26/2015 9:24','Castro Street and El Camino Real',32,13,'Subscriber',94401); +INSERT INTO "trip" VALUES(905938,755,'8/26/2015 9:20','San Jose Diridon Caltrain Station',2,'8/26/2015 9:33','SJSU 4th at San Carlos',12,200,'Subscriber',94040); +INSERT INTO "trip" VALUES(905940,558,'8/26/2015 9:21','Market at Sansome',77,'8/26/2015 9:30','5th at Howard',57,355,'Subscriber',94127); +INSERT INTO "trip" VALUES(905941,415,'8/26/2015 9:21','Market at 10th',67,'8/26/2015 9:28','Post at Kearny',47,608,'Subscriber',94102); +INSERT INTO "trip" VALUES(905944,755,'8/26/2015 9:21','Golden Gate at Polk',59,'8/26/2015 9:34','San Francisco Caltrain 2 (330 Townsend)',69,514,'Subscriber',94040); +INSERT INTO "trip" VALUES(905945,490,'8/26/2015 9:22','Ryland Park',84,'8/26/2015 9:30','San Jose Diridon Caltrain Station',2,304,'Subscriber',95110); +INSERT INTO "trip" VALUES(905947,275,'8/26/2015 9:22','Post at Kearny',47,'8/26/2015 9:27','Commercial at Montgomery',45,397,'Subscriber',94109); +INSERT INTO "trip" VALUES(905951,350,'8/26/2015 9:23','Temporary Transbay Terminal (Howard at Beale)',55,'8/26/2015 9:29','2nd at Townsend',61,442,'Subscriber',94608); +INSERT INTO "trip" VALUES(905952,715,'8/26/2015 9:24','Market at 10th',67,'8/26/2015 9:36','2nd at Townsend',61,439,'Subscriber',94549); +INSERT INTO "trip" VALUES(905955,225,'8/26/2015 9:24','Evelyn Park and Ride',30,'8/26/2015 9:28','Mountain View Caltrain Station',28,141,'Subscriber',95051); +INSERT INTO "trip" VALUES(905956,761,'8/26/2015 9:24','Civic Center BART (7th at Market)',72,'8/26/2015 9:37','Clay at Battery',41,434,'Subscriber',94065); +INSERT INTO "trip" VALUES(905958,411,'8/26/2015 9:25','2nd at Folsom',62,'8/26/2015 9:32','San Francisco Caltrain (Townsend at 4th)',70,527,'Subscriber',94107); +INSERT INTO "trip" VALUES(905959,252,'8/26/2015 9:25','Temporary Transbay Terminal (Howard at Beale)',55,'8/26/2015 9:29','Commercial at Montgomery',45,187,'Subscriber',94611); +INSERT INTO "trip" VALUES(905960,162,'8/26/2015 9:25','Redwood City Caltrain Station',22,'8/26/2015 9:28','San Mateo County Center',23,647,'Subscriber',94707); +INSERT INTO "trip" VALUES(905963,303,'8/26/2015 9:21','2nd at Townsend',61,'8/26/2015 9:26','Howard at 2nd',63,377,'Subscriber',94070); +INSERT INTO "trip" VALUES(905964,448,'8/26/2015 9:18','2nd at Townsend',61,'8/26/2015 9:26','Steuart at Market',74,557,'Subscriber',95120); +INSERT INTO "trip" VALUES(905965,581,'8/26/2015 9:26','Temporary Transbay Terminal (Howard at Beale)',55,'8/26/2015 9:36','Davis at Jackson',42,574,'Subscriber',94602); +INSERT INTO "trip" VALUES(905966,296,'8/26/2015 9:26','Rengstorff Avenue / California Street',33,'8/26/2015 9:31','San Antonio Caltrain Station',29,197,'Subscriber',94041); +INSERT INTO "trip" VALUES(905968,612,'8/26/2015 9:27','5th at Howard',57,'8/26/2015 9:37','San Francisco Caltrain 2 (330 Townsend)',69,485,'Subscriber',94107); +INSERT INTO "trip" VALUES(905969,248,'8/26/2015 9:27','Beale at Market',56,'8/26/2015 9:31','Broadway St at Battery St',82,459,'Subscriber',94114); +INSERT INTO "trip" VALUES(905970,615,'8/26/2015 9:27','Market at 10th',67,'8/26/2015 9:38','Powell at Post (Union Square)',71,619,'Subscriber',94102); +INSERT INTO "trip" VALUES(905971,445,'8/26/2015 9:28','Steuart at Market',74,'8/26/2015 9:35','Howard at 2nd',63,549,'Subscriber',94903); +INSERT INTO "trip" VALUES(905972,722,'8/26/2015 9:27','2nd at South Park',64,'8/26/2015 9:39','Davis at Jackson',42,478,'Subscriber',94037); +INSERT INTO "trip" VALUES(905973,312,'8/26/2015 9:28','Howard at 2nd',63,'8/26/2015 9:33','San Francisco Caltrain (Townsend at 4th)',70,501,'Subscriber',94105); +INSERT INTO "trip" VALUES(905974,700,'8/26/2015 9:28','Steuart at Market',74,'8/26/2015 9:40','2nd at Townsend',61,471,'Subscriber',94539); +INSERT INTO "trip" VALUES(905975,306,'8/26/2015 9:29','Steuart at Market',74,'8/26/2015 9:34','Spear at Folsom',49,282,'Subscriber',94133); +INSERT INTO "trip" VALUES(905976,567,'8/26/2015 9:30','Market at 4th',76,'8/26/2015 9:39','Market at 10th',67,506,'Subscriber',11201); +INSERT INTO "trip" VALUES(905979,526,'8/26/2015 9:30','Steuart at Market',74,'8/26/2015 9:39','2nd at Townsend',61,300,'Subscriber',94612); +INSERT INTO "trip" VALUES(905980,1519,'8/26/2015 9:31','San Antonio Shopping Center',31,'8/26/2015 9:56','University and Emerson',35,694,'Subscriber',94301); +INSERT INTO "trip" VALUES(905981,816,'8/26/2015 9:31','Redwood City Caltrain Station',22,'8/26/2015 9:44','Stanford in Redwood City',25,690,'Subscriber',94158); +INSERT INTO "trip" VALUES(905982,115,'8/26/2015 9:31','Steuart at Market',74,'8/26/2015 9:33','Embarcadero at Folsom',51,407,'Subscriber',94044); +INSERT INTO "trip" VALUES(905983,967,'8/26/2015 9:31','Grant Avenue at Columbus Avenue',73,'8/26/2015 9:47','Market at 10th',67,432,'Subscriber',94133); +INSERT INTO "trip" VALUES(905984,421,'8/26/2015 9:32','Powell Street BART',39,'8/26/2015 9:39','Townsend at 7th',65,489,'Subscriber',94518); +INSERT INTO "trip" VALUES(905985,645,'8/26/2015 9:32','Golden Gate at Polk',59,'8/26/2015 9:43','Yerba Buena Center of the Arts (3rd @ Howard)',68,586,'Subscriber',94941); +INSERT INTO "trip" VALUES(905986,436,'8/26/2015 9:32','Yerba Buena Center of the Arts (3rd @ Howard)',68,'8/26/2015 9:39','Mechanics Plaza (Market at Battery)',75,378,'Subscriber',94107); +INSERT INTO "trip" VALUES(905987,279,'8/26/2015 9:28','2nd at Townsend',61,'8/26/2015 9:33','San Francisco Caltrain (Townsend at 4th)',70,392,'Subscriber',94107); +INSERT INTO "trip" VALUES(905988,526,'8/26/2015 9:33','San Francisco Caltrain (Townsend at 4th)',70,'8/26/2015 9:42','Howard at 2nd',63,527,'Subscriber',94063); +INSERT INTO "trip" VALUES(905989,672,'8/26/2015 9:33','San Francisco Caltrain (Townsend at 4th)',70,'8/26/2015 9:44','Market at Sansome',77,392,'Subscriber',94002); +INSERT INTO "trip" VALUES(905990,608,'8/26/2015 9:33','San Francisco Caltrain (Townsend at 4th)',70,'8/26/2015 9:43','Spear at Folsom',49,454,'Subscriber',94041); +INSERT INTO "trip" VALUES(905993,480,'8/26/2015 9:30','2nd at Townsend',61,'8/26/2015 9:38','Harry Bridges Plaza (Ferry Building)',50,468,'Subscriber',94107); +INSERT INTO "trip" VALUES(905994,650,'8/26/2015 9:33','San Francisco Caltrain (Townsend at 4th)',70,'8/26/2015 9:44','Steuart at Market',74,501,'Subscriber',94025); +INSERT INTO "trip" VALUES(905995,533,'8/26/2015 9:33','Market at 4th',76,'8/26/2015 9:42','2nd at South Park',64,517,'Subscriber',94526); +INSERT INTO "trip" VALUES(905996,927,'8/26/2015 9:34','San Francisco Caltrain (Townsend at 4th)',70,'8/26/2015 9:49','Market at 10th',67,376,'Subscriber',94065); +INSERT INTO "trip" VALUES(905997,736,'8/26/2015 9:35','San Francisco Caltrain 2 (330 Townsend)',69,'8/26/2015 9:47','Mechanics Plaza (Market at Battery)',75,514,'Subscriber',94061); +INSERT INTO "trip" VALUES(905998,652,'8/26/2015 9:36','San Francisco Caltrain 2 (330 Townsend)',69,'8/26/2015 9:47','Harry Bridges Plaza (Ferry Building)',50,390,'Subscriber',94403); +INSERT INTO "trip" VALUES(905999,322,'8/26/2015 9:37','Mountain View City Hall',27,'8/26/2015 9:42','Mountain View Caltrain Station',28,251,'Subscriber',94041); +INSERT INTO "trip" VALUES(906001,602,'8/26/2015 9:39','Harry Bridges Plaza (Ferry Building)',50,'8/26/2015 9:49','San Francisco Caltrain (Townsend at 4th)',70,468,'Subscriber',94705); +INSERT INTO "trip" VALUES(906002,512,'8/26/2015 9:39','Embarcadero at Bryant',54,'8/26/2015 9:48','Washington at Kearny',46,363,'Subscriber',94105); +INSERT INTO "trip" VALUES(906003,271,'8/26/2015 9:39','5th at Howard',57,'8/26/2015 9:44','Market at 4th',76,291,'Subscriber',94103); +INSERT INTO "trip" VALUES(906004,929,'8/26/2015 9:40','Beale at Market',56,'8/26/2015 9:55','Washington at Kearny',46,238,'Subscriber',94530); +INSERT INTO "trip" VALUES(906005,602,'8/26/2015 9:40','Howard at 2nd',63,'8/26/2015 9:50','Market at 10th',67,423,'Subscriber',94608); +INSERT INTO "trip" VALUES(906006,230,'8/26/2015 9:41','Palo Alto Caltrain Station',34,'8/26/2015 9:45','Cowper at University',37,105,'Subscriber',94107); +INSERT INTO "trip" VALUES(906007,344,'8/26/2015 9:40','Palo Alto Caltrain Station',34,'8/26/2015 9:46','Cowper at University',37,707,'Subscriber',94108); +INSERT INTO "trip" VALUES(906008,250,'8/26/2015 9:41','Townsend at 7th',65,'8/26/2015 9:45','San Francisco Caltrain 2 (330 Townsend)',69,260,'Subscriber',94107); +INSERT INTO "trip" VALUES(906009,657,'8/26/2015 9:41','Howard at 2nd',63,'8/26/2015 9:52','Townsend at 7th',65,560,'Subscriber',94608); +INSERT INTO "trip" VALUES(906010,759,'8/26/2015 9:42','South Van Ness at Market',66,'8/26/2015 9:54','Market at Sansome',77,509,'Subscriber',94105); +INSERT INTO "trip" VALUES(906011,636,'8/26/2015 9:42','San Francisco Caltrain (Townsend at 4th)',70,'8/26/2015 9:53','Harry Bridges Plaza (Ferry Building)',50,371,'Subscriber',94062); +INSERT INTO "trip" VALUES(906012,473,'8/26/2015 9:43','Embarcadero at Sansome',60,'8/26/2015 9:51','Beale at Market',56,534,'Subscriber',94111); +INSERT INTO "trip" VALUES(906013,625,'8/26/2015 9:44','South Van Ness at Market',66,'8/26/2015 9:54','Townsend at 7th',65,581,'Subscriber',94122); +INSERT INTO "trip" VALUES(906015,89,'8/26/2015 9:44','Beale at Market',56,'8/26/2015 9:46','Temporary Transbay Terminal (Howard at Beale)',55,544,'Subscriber',94114); +INSERT INTO "trip" VALUES(906021,504,'8/26/2015 9:46','Harry Bridges Plaza (Ferry Building)',50,'8/26/2015 9:54','2nd at South Park',64,477,'Subscriber',94587); +INSERT INTO "trip" VALUES(906022,547,'8/26/2015 9:46','Temporary Transbay Terminal (Howard at Beale)',55,'8/26/2015 9:55','Broadway St at Battery St',82,544,'Subscriber',94608); +INSERT INTO "trip" VALUES(906023,617,'8/26/2015 9:47','Market at 10th',67,'8/26/2015 9:57','San Francisco Caltrain 2 (330 Townsend)',69,338,'Subscriber',94158); +INSERT INTO "trip" VALUES(906024,345,'8/26/2015 9:43','Spear at Folsom',49,'8/26/2015 9:49','2nd at Townsend',61,563,'Subscriber',94702); +INSERT INTO "trip" VALUES(906025,564,'8/26/2015 9:46','Spear at Folsom',49,'8/26/2015 9:56','San Francisco Caltrain (Townsend at 4th)',70,282,'Subscriber',94105); +INSERT INTO "trip" VALUES(906027,222,'8/26/2015 9:47','Mountain View Caltrain Station',28,'8/26/2015 9:51','Mountain View City Hall',27,251,'Subscriber',94107); +INSERT INTO "trip" VALUES(906030,259,'8/26/2015 9:49','Mountain View Caltrain Station',28,'8/26/2015 9:53','Mountain View City Hall',27,46,'Subscriber',94107); +INSERT INTO "trip" VALUES(906034,471,'8/26/2015 9:50','Steuart at Market',74,'8/26/2015 9:58','Embarcadero at Sansome',60,370,'Subscriber',94521); +INSERT INTO "trip" VALUES(906035,476,'8/26/2015 9:50','Embarcadero at Folsom',51,'8/26/2015 9:58','Market at 4th',76,389,'Subscriber',94105); +INSERT INTO "trip" VALUES(906036,570,'8/26/2015 9:52','Harry Bridges Plaza (Ferry Building)',50,'8/26/2015 10:01','2nd at Folsom',62,390,'Subscriber',94901); +INSERT INTO "trip" VALUES(906038,272,'8/26/2015 9:52','2nd at Townsend',61,'8/26/2015 9:56','2nd at Folsom',62,620,'Subscriber',94070); +INSERT INTO "trip" VALUES(906039,298,'8/26/2015 9:52','Powell at Post (Union Square)',71,'8/26/2015 9:57','Howard at 2nd',63,619,'Subscriber',94108); +INSERT INTO "trip" VALUES(906040,233,'8/26/2015 9:52','Mountain View Caltrain Station',28,'8/26/2015 9:56','Mountain View City Hall',27,141,'Subscriber',94114); +INSERT INTO "trip" VALUES(906041,1122,'8/26/2015 9:53','Townsend at 7th',65,'8/26/2015 10:11','Embarcadero at Sansome',60,590,'Subscriber',94111); +INSERT INTO "trip" VALUES(906042,850,'8/26/2015 9:53','Mountain View Caltrain Station',28,'8/26/2015 10:07','San Antonio Shopping Center',31,255,'Subscriber',94109); +INSERT INTO "trip" VALUES(906044,544,'8/26/2015 9:56','Post at Kearny',47,'8/26/2015 10:05','2nd at Townsend',61,508,'Subscriber',94303); +INSERT INTO "trip" VALUES(906045,1091,'8/26/2015 9:56','Townsend at 7th',65,'8/26/2015 10:14','Davis at Jackson',42,489,'Subscriber',94107); +INSERT INTO "trip" VALUES(906046,652,'8/26/2015 9:56','Harry Bridges Plaza (Ferry Building)',50,'8/26/2015 10:07','San Francisco Caltrain 2 (330 Townsend)',69,158,'Subscriber',94107); +INSERT INTO "trip" VALUES(906049,1210,'8/26/2015 9:48','Spear at Folsom',49,'8/26/2015 10:08','Market at Sansome',77,384,'Subscriber',94105); +INSERT INTO "trip" VALUES(906050,1248,'8/26/2015 9:58','Embarcadero at Sansome',60,'8/26/2015 10:18','Golden Gate at Polk',59,315,'Subscriber',94133); +INSERT INTO "trip" VALUES(906051,533,'8/26/2015 9:58','San Francisco Caltrain (Townsend at 4th)',70,'8/26/2015 10:07','Spear at Folsom',49,282,'Subscriber',94061); +INSERT INTO "trip" VALUES(906053,321,'8/26/2015 9:59','San Francisco Caltrain (Townsend at 4th)',70,'8/26/2015 10:04','Townsend at 7th',65,468,'Subscriber',94086); +INSERT INTO "trip" VALUES(906054,299,'8/26/2015 9:59','San Francisco Caltrain 2 (330 Townsend)',69,'8/26/2015 10:04','Townsend at 7th',65,338,'Subscriber',95129); +INSERT INTO "trip" VALUES(906057,374,'8/26/2015 9:59','Harry Bridges Plaza (Ferry Building)',50,'8/26/2015 10:06','Embarcadero at Sansome',60,286,'Subscriber',94015); +INSERT INTO "trip" VALUES(906058,348,'8/26/2015 10:00','San Francisco Caltrain 2 (330 Townsend)',69,'8/26/2015 10:05','5th at Howard',57,425,'Subscriber',94402); +INSERT INTO "trip" VALUES(906061,435,'8/26/2015 10:01','Commercial at Montgomery',45,'8/26/2015 10:09','2nd at South Park',64,325,'Subscriber',94109); +INSERT INTO "trip" VALUES(906062,828,'8/26/2015 10:02','Steuart at Market',74,'8/26/2015 10:16','Townsend at 7th',65,557,'Subscriber',94501); +INSERT INTO "trip" VALUES(906067,553,'8/26/2015 10:06','San Jose Diridon Caltrain Station',2,'8/26/2015 10:15','MLK Library',11,658,'Subscriber',94516); +INSERT INTO "trip" VALUES(906068,862,'8/26/2015 10:06','Washington at Kearny',46,'8/26/2015 10:20','2nd at South Park',64,363,'Subscriber',94133); +INSERT INTO "trip" VALUES(906073,235,'8/26/2015 10:08','Steuart at Market',74,'8/26/2015 10:12','Embarcadero at Vallejo',48,501,'Subscriber',94610); +INSERT INTO "trip" VALUES(906074,330,'8/26/2015 10:11','Mountain View Caltrain Station',28,'8/26/2015 10:16','Mountain View City Hall',27,263,'Subscriber',94041); +INSERT INTO "trip" VALUES(906075,342,'8/26/2015 10:11','San Jose Diridon Caltrain Station',2,'8/26/2015 10:17','Santa Clara at Almaden',4,304,'Subscriber',94114); +INSERT INTO "trip" VALUES(906076,722,'8/26/2015 10:11','San Francisco Caltrain (Townsend at 4th)',70,'8/26/2015 10:23','Steuart at Market',74,634,'Subscriber',94002); +INSERT INTO "trip" VALUES(906077,571,'8/26/2015 10:11','San Francisco Caltrain (Townsend at 4th)',70,'8/26/2015 10:21','2nd at Folsom',62,326,'Subscriber',95008); +INSERT INTO "trip" VALUES(906078,359,'8/26/2015 10:12','San Francisco Caltrain 2 (330 Townsend)',69,'8/26/2015 10:18','5th at Howard',57,158,'Subscriber',95050); +INSERT INTO "trip" VALUES(906079,582,'8/26/2015 10:12','Clay at Battery',41,'8/26/2015 10:21','2nd at Townsend',61,510,'Subscriber',94501); +INSERT INTO "trip" VALUES(906081,442,'8/26/2015 10:12','Embarcadero at Sansome',60,'8/26/2015 10:19','Spear at Folsom',49,494,'Customer',94119); +INSERT INTO "trip" VALUES(906082,926,'8/26/2015 10:13','San Francisco Caltrain (Townsend at 4th)',70,'8/26/2015 10:28','Commercial at Montgomery',45,512,'Subscriber',94070); +INSERT INTO "trip" VALUES(906083,454,'8/26/2015 10:14','Embarcadero at Sansome',60,'8/26/2015 10:21','Market at Sansome',77,609,'Subscriber',94111); +INSERT INTO "trip" VALUES(906084,553,'8/26/2015 10:14','San Francisco Caltrain 2 (330 Townsend)',69,'8/26/2015 10:23','Temporary Transbay Terminal (Howard at Beale)',55,260,'Subscriber',94401); +INSERT INTO "trip" VALUES(906085,338,'8/26/2015 10:15','Embarcadero at Sansome',60,'8/26/2015 10:21','Steuart at Market',74,590,'Customer','nil'); +INSERT INTO "trip" VALUES(906086,261,'8/26/2015 10:16','Townsend at 7th',65,'8/26/2015 10:20','San Francisco Caltrain 2 (330 Townsend)',69,338,'Subscriber',94107); +INSERT INTO "trip" VALUES(906087,277,'8/26/2015 10:16','Post at Kearny',47,'8/26/2015 10:21','Harry Bridges Plaza (Ferry Building)',50,608,'Subscriber',94111); +INSERT INTO "trip" VALUES(906089,626,'8/26/2015 10:17','Washington at Kearny',46,'8/26/2015 10:28','Powell Street BART',39,602,'Subscriber',94133); +INSERT INTO "trip" VALUES(906090,503,'8/26/2015 10:17','Market at 4th',76,'8/26/2015 10:26','San Francisco Caltrain (Townsend at 4th)',70,291,'Subscriber',94542); +INSERT INTO "trip" VALUES(906091,275,'8/26/2015 10:18','Market at 4th',76,'8/26/2015 10:23','Mechanics Plaza (Market at Battery)',75,600,'Subscriber',94102); +INSERT INTO "trip" VALUES(906092,2698,'8/26/2015 10:19','Market at 4th',76,'8/26/2015 11:04','Embarcadero at Sansome',60,507,'Customer',55109); +INSERT INTO "trip" VALUES(906093,439,'8/26/2015 10:20','Market at 4th',76,'8/26/2015 10:27','Steuart at Market',74,479,'Subscriber',94112); +INSERT INTO "trip" VALUES(906094,880,'8/26/2015 10:20','San Francisco Caltrain (Townsend at 4th)',70,'8/26/2015 10:34','Market at Sansome',77,356,'Subscriber',94303); +INSERT INTO "trip" VALUES(906095,2577,'8/26/2015 10:21','Market at 4th',76,'8/26/2015 11:04','Embarcadero at Sansome',60,275,'Customer',55075); +INSERT INTO "trip" VALUES(906097,385,'8/26/2015 10:23','Mechanics Plaza (Market at Battery)',75,'8/26/2015 10:29','Washington at Kearny',46,404,'Subscriber',94702); +INSERT INTO "trip" VALUES(906098,677,'8/26/2015 10:23','2nd at Folsom',62,'8/26/2015 10:34','Embarcadero at Vallejo',48,335,'Subscriber',94110); +INSERT INTO "trip" VALUES(906099,1056,'8/26/2015 10:27','Beale at Market',56,'8/26/2015 10:44','Market at Sansome',77,542,'Subscriber',94107); +INSERT INTO "trip" VALUES(906100,416,'8/26/2015 10:28','Yerba Buena Center of the Arts (3rd @ Howard)',68,'8/26/2015 10:34','San Francisco Caltrain 2 (330 Townsend)',69,529,'Subscriber',94107); +INSERT INTO "trip" VALUES(906101,380,'8/26/2015 10:29','Harry Bridges Plaza (Ferry Building)',50,'8/26/2015 10:35','Embarcadero at Sansome',60,608,'Subscriber',94507); +INSERT INTO "trip" VALUES(906102,306,'8/26/2015 10:33','Embarcadero at Folsom',51,'8/26/2015 10:38','Howard at 2nd',63,191,'Subscriber',94105); +INSERT INTO "trip" VALUES(906103,444,'8/26/2015 10:34','San Francisco Caltrain (Townsend at 4th)',70,'8/26/2015 10:41','Yerba Buena Center of the Arts (3rd @ Howard)',68,291,'Subscriber',94158); +INSERT INTO "trip" VALUES(906104,1040,'8/26/2015 10:34','Clay at Battery',41,'8/26/2015 10:52','San Francisco Caltrain (Townsend at 4th)',70,274,'Subscriber',94111); +INSERT INTO "trip" VALUES(906105,424,'8/26/2015 10:37','Beale at Market',56,'8/26/2015 10:44','2nd at South Park',64,328,'Subscriber',94591); +INSERT INTO "trip" VALUES(906106,330,'8/26/2015 10:39','Harry Bridges Plaza (Ferry Building)',50,'8/26/2015 10:45','Embarcadero at Sansome',60,371,'Subscriber',94612); +INSERT INTO "trip" VALUES(906107,302,'8/26/2015 10:39','San Antonio Caltrain Station',29,'8/26/2015 10:44','San Antonio Shopping Center',31,10,'Subscriber',94115); +INSERT INTO "trip" VALUES(906108,323,'8/26/2015 10:40','San Antonio Caltrain Station',29,'8/26/2015 10:45','San Antonio Shopping Center',31,192,'Subscriber',94040); +INSERT INTO "trip" VALUES(906109,197,'8/26/2015 10:43','Mountain View Caltrain Station',28,'8/26/2015 10:46','Mountain View City Hall',27,262,'Subscriber',94401); +INSERT INTO "trip" VALUES(906110,276,'8/26/2015 10:44','Market at 4th',76,'8/26/2015 10:49','Civic Center BART (7th at Market)',72,389,'Subscriber',94105); +INSERT INTO "trip" VALUES(906113,610,'8/26/2015 10:47','San Francisco Caltrain 2 (330 Townsend)',69,'8/26/2015 10:58','Steuart at Market',74,338,'Subscriber',94061); +INSERT INTO "trip" VALUES(906114,644,'8/26/2015 10:48','SJSU - San Salvador at 9th',16,'8/26/2015 10:58','San Jose Diridon Caltrain Station',2,117,'Subscriber',95112); +INSERT INTO "trip" VALUES(906115,628,'8/26/2015 10:48','San Francisco Caltrain 2 (330 Townsend)',69,'8/26/2015 10:58','Temporary Transbay Terminal (Howard at Beale)',55,529,'Subscriber',95014); +INSERT INTO "trip" VALUES(906116,138,'8/26/2015 10:48','San Francisco City Hall',58,'8/26/2015 10:50','Market at 10th',67,321,'Subscriber',94133); +INSERT INTO "trip" VALUES(906117,451,'8/26/2015 10:48','San Francisco Caltrain (Townsend at 4th)',70,'8/26/2015 10:56','Yerba Buena Center of the Arts (3rd @ Howard)',68,417,'Subscriber',94070); +INSERT INTO "trip" VALUES(906118,560,'8/26/2015 10:48','Beale at Market',56,'8/26/2015 10:58','2nd at Townsend',61,583,'Subscriber',94107); +INSERT INTO "trip" VALUES(906120,550,'8/26/2015 10:49','San Francisco Caltrain 2 (330 Townsend)',69,'8/26/2015 10:58','Howard at 2nd',63,504,'Subscriber',94402); +INSERT INTO "trip" VALUES(906125,318,'8/26/2015 10:51','Market at 4th',76,'8/26/2015 10:56','San Francisco Caltrain (Townsend at 4th)',70,416,'Subscriber',95054); +INSERT INTO "trip" VALUES(906126,185,'8/26/2015 10:52','San Francisco Caltrain 2 (330 Townsend)',69,'8/26/2015 10:55','Townsend at 7th',65,485,'Subscriber',95051); +INSERT INTO "trip" VALUES(906135,581,'8/26/2015 10:57','Temporary Transbay Terminal (Howard at Beale)',55,'8/26/2015 11:07','Powell Street BART',39,260,'Subscriber',94103); +INSERT INTO "trip" VALUES(906136,318,'8/26/2015 10:58','Market at Sansome',77,'8/26/2015 11:04','2nd at South Park',64,356,'Subscriber',94705); +INSERT INTO "trip" VALUES(906139,930,'8/26/2015 11:00','Steuart at Market',74,'8/26/2015 11:16','Townsend at 7th',65,634,'Subscriber',94590); +INSERT INTO "trip" VALUES(906142,284,'8/26/2015 11:01','Market at Sansome',77,'8/26/2015 11:06','2nd at South Park',64,392,'Subscriber',94544); +INSERT INTO "trip" VALUES(906145,198,'8/26/2015 11:04','Steuart at Market',74,'8/26/2015 11:07','Embarcadero at Vallejo',48,453,'Subscriber',94952); +INSERT INTO "trip" VALUES(906146,291,'8/26/2015 11:05','Commercial at Montgomery',45,'8/26/2015 11:10','Yerba Buena Center of the Arts (3rd @ Howard)',68,400,'Subscriber',94107); +INSERT INTO "trip" VALUES(906147,276,'8/26/2015 11:06','Grant Avenue at Columbus Avenue',73,'8/26/2015 11:11','Commercial at Montgomery',45,495,'Subscriber',94133); +INSERT INTO "trip" VALUES(906149,498,'8/26/2015 11:01','2nd at Townsend',61,'8/26/2015 11:09','Market at 4th',76,510,'Subscriber',94107); +INSERT INTO "trip" VALUES(906151,2121,'8/26/2015 11:11','Embarcadero at Folsom',51,'8/26/2015 11:46','Spear at Folsom',49,418,'Customer',94022); +INSERT INTO "trip" VALUES(906153,122,'8/26/2015 11:12','Powell Street BART',39,'8/26/2015 11:14','Civic Center BART (7th at Market)',72,260,'Subscriber',94103); +INSERT INTO "trip" VALUES(906158,721,'8/26/2015 11:14','San Francisco Caltrain (Townsend at 4th)',70,'8/26/2015 11:26','Harry Bridges Plaza (Ferry Building)',50,274,'Subscriber',94111); +INSERT INTO "trip" VALUES(906159,207,'8/26/2015 11:14','Townsend at 7th',65,'8/26/2015 11:18','San Francisco Caltrain 2 (330 Townsend)',69,581,'Subscriber',94107); +INSERT INTO "trip" VALUES(906160,462,'8/26/2015 11:18','Commercial at Montgomery',45,'8/26/2015 11:26','Powell at Post (Union Square)',71,187,'Subscriber',94118); +INSERT INTO "trip" VALUES(906161,119,'8/26/2015 11:19','Market at Sansome',77,'8/26/2015 11:21','Howard at 2nd',63,598,'Subscriber',94107); +INSERT INTO "trip" VALUES(906162,1144,'8/26/2015 11:19','Townsend at 7th',65,'8/26/2015 11:38','Post at Kearny',47,468,'Subscriber',94107); +INSERT INTO "trip" VALUES(906163,252,'8/26/2015 11:21','Howard at 2nd',63,'8/26/2015 11:25','5th at Howard',57,340,'Subscriber',94114); +INSERT INTO "trip" VALUES(906165,558,'8/26/2015 11:24','Market at Sansome',77,'8/26/2015 11:34','San Francisco Caltrain (Townsend at 4th)',70,609,'Subscriber',94549); +INSERT INTO "trip" VALUES(906166,540,'8/26/2015 11:25','San Francisco Caltrain 2 (330 Townsend)',69,'8/26/2015 11:34','2nd at Folsom',62,593,'Subscriber',94403); +INSERT INTO "trip" VALUES(906167,5864,'8/26/2015 11:25','South Van Ness at Market',66,'8/26/2015 13:03','Golden Gate at Polk',59,567,'Customer',11218); +INSERT INTO "trip" VALUES(906168,5864,'8/26/2015 11:25','South Van Ness at Market',66,'8/26/2015 13:03','Golden Gate at Polk',59,379,'Customer',11218); +INSERT INTO "trip" VALUES(906169,952,'8/26/2015 11:26','Temporary Transbay Terminal (Howard at Beale)',55,'8/26/2015 11:42','Townsend at 7th',65,629,'Subscriber',94806); +INSERT INTO "trip" VALUES(906170,1615,'8/26/2015 11:26','Embarcadero at Bryant',54,'8/26/2015 11:53','Embarcadero at Vallejo',48,462,'Customer','nil'); +INSERT INTO "trip" VALUES(906171,338,'8/26/2015 11:26','Market at 4th',76,'8/26/2015 11:32','Civic Center BART (7th at Market)',72,510,'Subscriber',94117); +INSERT INTO "trip" VALUES(906174,608,'8/26/2015 11:28','Grant Avenue at Columbus Avenue',73,'8/26/2015 11:38','Post at Kearny',47,672,'Subscriber',94104); +INSERT INTO "trip" VALUES(906177,927,'8/26/2015 11:28','Harry Bridges Plaza (Ferry Building)',50,'8/26/2015 11:44','San Francisco Caltrain (Townsend at 4th)',70,274,'Subscriber',94107); +INSERT INTO "trip" VALUES(906181,473,'8/26/2015 11:31','Embarcadero at Vallejo',48,'8/26/2015 11:39','Beale at Market',56,271,'Subscriber',94086); +INSERT INTO "trip" VALUES(906182,745,'8/26/2015 11:33','Spear at Folsom',49,'8/26/2015 11:45','Harry Bridges Plaza (Ferry Building)',50,454,'Customer',94105); +INSERT INTO "trip" VALUES(906183,212,'8/26/2015 11:34','Market at Sansome',77,'8/26/2015 11:37','Clay at Battery',41,617,'Subscriber',94305); +INSERT INTO "trip" VALUES(906188,553,'8/26/2015 11:35','San Jose Diridon Caltrain Station',2,'8/26/2015 11:44','San Pedro Square',6,643,'Subscriber',95126); +INSERT INTO "trip" VALUES(906190,3311,'8/26/2015 11:36','San Francisco Caltrain 2 (330 Townsend)',69,'8/26/2015 12:31','Embarcadero at Sansome',60,408,'Customer',94158); +INSERT INTO "trip" VALUES(906191,3291,'8/26/2015 11:36','San Francisco Caltrain 2 (330 Townsend)',69,'8/26/2015 12:31','Embarcadero at Sansome',60,579,'Customer',94158); +INSERT INTO "trip" VALUES(906192,685,'8/26/2015 11:36','Golden Gate at Polk',59,'8/26/2015 11:48','Market at Sansome',77,709,'Subscriber',94102); +INSERT INTO "trip" VALUES(906194,1045,'8/26/2015 11:39','Grant Avenue at Columbus Avenue',73,'8/26/2015 11:56','San Francisco Caltrain (Townsend at 4th)',70,622,'Subscriber',94133); +INSERT INTO "trip" VALUES(906198,284,'8/26/2015 11:41','Market at 10th',67,'8/26/2015 11:45','Powell Street BART',39,432,'Subscriber',94103); +INSERT INTO "trip" VALUES(906199,224,'8/26/2015 11:41','Steuart at Market',74,'8/26/2015 11:44','Mechanics Plaza (Market at Battery)',75,284,'Subscriber',94133); +INSERT INTO "trip" VALUES(906200,511,'8/26/2015 11:41','Townsend at 7th',65,'8/26/2015 11:50','2nd at Townsend',61,560,'Subscriber',94597); +INSERT INTO "trip" VALUES(906201,393,'8/26/2015 11:42','Civic Center BART (7th at Market)',72,'8/26/2015 11:48','Market at Sansome',77,510,'Subscriber',94103); +INSERT INTO "trip" VALUES(906204,585,'8/26/2015 11:44','2nd at Folsom',62,'8/26/2015 11:54','Powell at Post (Union Square)',71,390,'Subscriber',94114); +INSERT INTO "trip" VALUES(906207,765,'8/26/2015 11:44','5th at Howard',57,'8/26/2015 11:57','Embarcadero at Bryant',54,421,'Subscriber',94401); +INSERT INTO "trip" VALUES(906210,61,'8/26/2015 11:46','San Francisco Caltrain (Townsend at 4th)',70,'8/26/2015 11:47','San Francisco Caltrain (Townsend at 4th)',70,416,'Subscriber',94002); +INSERT INTO "trip" VALUES(906211,494,'8/26/2015 11:47','Harry Bridges Plaza (Ferry Building)',50,'8/26/2015 11:55','2nd at Townsend',61,454,'Subscriber',94503); +INSERT INTO "trip" VALUES(906214,494,'8/26/2015 11:49','San Francisco City Hall',58,'8/26/2015 11:57','San Francisco Caltrain 2 (330 Townsend)',69,552,'Subscriber',94107); +INSERT INTO "trip" VALUES(906215,917,'8/26/2015 11:50','San Francisco Caltrain 2 (330 Townsend)',69,'8/26/2015 12:05','Market at 10th',67,581,'Subscriber',94501); +INSERT INTO "trip" VALUES(906216,434,'8/26/2015 11:51','Harry Bridges Plaza (Ferry Building)',50,'8/26/2015 11:59','Spear at Folsom',49,537,'Customer',94105); +INSERT INTO "trip" VALUES(906217,660,'8/26/2015 11:52','Townsend at 7th',65,'8/26/2015 12:03','San Francisco City Hall',58,557,'Subscriber',94103); +INSERT INTO "trip" VALUES(906218,525,'8/26/2015 11:54','2nd at South Park',64,'8/26/2015 12:03','Commercial at Montgomery',45,517,'Subscriber',94109); +INSERT INTO "trip" VALUES(906219,257,'8/26/2015 11:54','Market at Sansome',77,'8/26/2015 11:59','Temporary Transbay Terminal (Howard at Beale)',55,542,'Subscriber',94103); +INSERT INTO "trip" VALUES(906221,1619,'8/26/2015 11:55','Embarcadero at Vallejo',48,'8/26/2015 12:22','Embarcadero at Sansome',60,453,'Customer','nil'); +INSERT INTO "trip" VALUES(906222,227,'8/26/2015 11:57','Embarcadero at Folsom',51,'8/26/2015 12:01','Steuart at Market',74,407,'Subscriber',94080); +INSERT INTO "trip" VALUES(906223,512,'8/26/2015 11:58','Beale at Market',56,'8/26/2015 12:06','2nd at South Park',64,500,'Subscriber',94553); +INSERT INTO "trip" VALUES(906224,757,'8/26/2015 11:58','San Salvador at 1st',8,'8/26/2015 12:11','St James Park',13,98,'Subscriber',95113); +INSERT INTO "trip" VALUES(906225,780,'8/26/2015 11:58','San Salvador at 1st',8,'8/26/2015 12:11','St James Park',13,681,'Subscriber',95113); +INSERT INTO "trip" VALUES(906226,20707,'8/26/2015 11:59','Harry Bridges Plaza (Ferry Building)',50,'8/26/2015 17:45','Embarcadero at Sansome',60,587,'Customer',1); +INSERT INTO "trip" VALUES(906227,20636,'8/26/2015 12:00','Harry Bridges Plaza (Ferry Building)',50,'8/26/2015 17:44','Embarcadero at Sansome',60,458,'Customer',1); +INSERT INTO "trip" VALUES(906228,20530,'8/26/2015 12:03','Harry Bridges Plaza (Ferry Building)',50,'8/26/2015 17:45','Embarcadero at Sansome',60,487,'Customer',1); +INSERT INTO "trip" VALUES(906229,626,'8/26/2015 12:03','Market at 4th',76,'8/26/2015 12:13','2nd at Townsend',61,592,'Subscriber',94519); +INSERT INTO "trip" VALUES(906230,20485,'8/26/2015 12:03','Harry Bridges Plaza (Ferry Building)',50,'8/26/2015 17:45','Embarcadero at Sansome',60,524,'Customer',1); +INSERT INTO "trip" VALUES(906231,362,'8/26/2015 12:06','2nd at Folsom',62,'8/26/2015 12:12','Commercial at Montgomery',45,620,'Subscriber',94107); +INSERT INTO "trip" VALUES(906232,271,'8/26/2015 12:08','Mechanics Plaza (Market at Battery)',75,'8/26/2015 12:12','Market at 4th',76,448,'Subscriber',94102); +INSERT INTO "trip" VALUES(906235,1161,'8/26/2015 12:11','Harry Bridges Plaza (Ferry Building)',50,'8/26/2015 12:30','Harry Bridges Plaza (Ferry Building)',50,584,'Subscriber',94087); +INSERT INTO "trip" VALUES(906236,208,'8/26/2015 12:11','San Francisco Caltrain 2 (330 Townsend)',69,'8/26/2015 12:15','Townsend at 7th',65,552,'Subscriber',94608); +INSERT INTO "trip" VALUES(906244,452,'8/26/2015 12:19','Steuart at Market',74,'8/26/2015 12:27','2nd at Townsend',61,407,'Subscriber',95401); +INSERT INTO "trip" VALUES(906245,491,'8/26/2015 12:19','Temporary Transbay Terminal (Howard at Beale)',55,'8/26/2015 12:27','Washington at Kearny',46,377,'Subscriber',94122); +INSERT INTO "trip" VALUES(906246,438,'8/26/2015 12:20','San Pedro Square',6,'8/26/2015 12:27','San Jose Diridon Caltrain Station',2,643,'Subscriber',95126); +INSERT INTO "trip" VALUES(906247,341,'8/26/2015 12:20','St James Park',13,'8/26/2015 12:26','Japantown',9,681,'Subscriber',95113); +INSERT INTO "trip" VALUES(906248,339,'8/26/2015 12:20','St James Park',13,'8/26/2015 12:26','Japantown',9,98,'Subscriber',95113); +INSERT INTO "trip" VALUES(906249,4883,'8/26/2015 12:20','University and Emerson',35,'8/26/2015 13:42','University and Emerson',35,253,'Customer',30075); +INSERT INTO "trip" VALUES(906250,320,'8/26/2015 12:22','Embarcadero at Bryant',54,'8/26/2015 12:27','2nd at South Park',64,522,'Subscriber',94607); +INSERT INTO "trip" VALUES(906252,139,'8/26/2015 12:23','Temporary Transbay Terminal (Howard at Beale)',55,'8/26/2015 12:25','Spear at Folsom',49,542,'Subscriber',94941); +INSERT INTO "trip" VALUES(906253,331,'8/26/2015 12:22','Mechanics Plaza (Market at Battery)',75,'8/26/2015 12:28','Powell at Post (Union Square)',71,554,'Subscriber',94121); +INSERT INTO "trip" VALUES(906255,318,'8/26/2015 12:25','Market at Sansome',77,'8/26/2015 12:30','Powell Street BART',39,509,'Subscriber',94133); +INSERT INTO "trip" VALUES(906256,538,'8/26/2015 12:26','Post at Kearny',47,'8/26/2015 12:35','Grant Avenue at Columbus Avenue',73,401,'Subscriber',94104); +INSERT INTO "trip" VALUES(906257,701,'8/26/2015 12:26','Spear at Folsom',49,'8/26/2015 12:38','Harry Bridges Plaza (Ferry Building)',50,418,'Customer',94115); +INSERT INTO "trip" VALUES(906262,533,'8/26/2015 12:29','Spear at Folsom',49,'8/26/2015 12:38','Harry Bridges Plaza (Ferry Building)',50,494,'Customer',94105); +INSERT INTO "trip" VALUES(906268,241,'8/26/2015 12:36','Beale at Market',56,'8/26/2015 12:40','Spear at Folsom',49,428,'Subscriber',94080); +INSERT INTO "trip" VALUES(906269,430,'8/26/2015 12:37','Embarcadero at Bryant',54,'8/26/2015 12:44','Embarcadero at Vallejo',48,421,'Subscriber',94105); +INSERT INTO "trip" VALUES(906271,709,'8/26/2015 12:37','Embarcadero at Vallejo',48,'8/26/2015 12:49','2nd at Townsend',61,429,'Subscriber',94107); +INSERT INTO "trip" VALUES(906273,646,'8/26/2015 12:40','Market at Sansome',77,'8/26/2015 12:50','Embarcadero at Sansome',60,446,'Subscriber',94111); +INSERT INTO "trip" VALUES(906274,440,'8/26/2015 12:40','Powell at Post (Union Square)',71,'8/26/2015 12:47','Mechanics Plaza (Market at Battery)',75,554,'Subscriber',94121); +INSERT INTO "trip" VALUES(906276,1000,'8/26/2015 12:41','South Van Ness at Market',66,'8/26/2015 12:58','Townsend at 7th',65,505,'Customer',94117); +INSERT INTO "trip" VALUES(906277,356,'8/26/2015 12:42','Washington at Kearny',46,'8/26/2015 12:48','Harry Bridges Plaza (Ferry Building)',50,377,'Subscriber',94706); +INSERT INTO "trip" VALUES(906278,698,'8/26/2015 12:45','South Van Ness at Market',66,'8/26/2015 12:57','Townsend at 7th',65,628,'Customer',94117); +INSERT INTO "trip" VALUES(906279,210,'8/26/2015 12:42','Civic Center BART (7th at Market)',72,'8/26/2015 12:46','Powell Street BART',39,441,'Subscriber',94501); +INSERT INTO "trip" VALUES(906280,208,'8/26/2015 12:46','Embarcadero at Sansome',60,'8/26/2015 12:49','Broadway St at Battery St',82,618,'Subscriber',94111); +INSERT INTO "trip" VALUES(906281,342,'8/26/2015 12:47','Davis at Jackson',42,'8/26/2015 12:53','Market at Sansome',77,489,'Subscriber',94105); +INSERT INTO "trip" VALUES(906282,479,'8/26/2015 12:47','Davis at Jackson',42,'8/26/2015 12:55','Spear at Folsom',49,540,'Subscriber',94105); +INSERT INTO "trip" VALUES(906283,467,'8/26/2015 12:43','2nd at Townsend',61,'8/26/2015 12:51','Townsend at 7th',65,583,'Subscriber',94597); +INSERT INTO "trip" VALUES(906284,1799,'8/26/2015 12:49','2nd at South Park',64,'8/26/2015 13:19','Steuart at Market',74,500,'Subscriber',94553); +INSERT INTO "trip" VALUES(906285,776,'8/26/2015 12:49','San Francisco Caltrain (Townsend at 4th)',70,'8/26/2015 13:02','San Francisco City Hall',58,274,'Subscriber',95112); +INSERT INTO "trip" VALUES(906287,477,'8/26/2015 12:49','Spear at Folsom',49,'8/26/2015 12:57','Howard at 2nd',63,569,'Subscriber',94611); +INSERT INTO "trip" VALUES(906288,416,'8/26/2015 12:51','Market at Sansome',77,'8/26/2015 12:58','Davis at Jackson',42,385,'Subscriber',94306); +INSERT INTO "trip" VALUES(906290,706,'8/26/2015 12:52','San Francisco Caltrain 2 (330 Townsend)',69,'8/26/2015 13:04','Beale at Market',56,402,'Customer',37221); +INSERT INTO "trip" VALUES(906292,265,'8/26/2015 12:58','2nd at Folsom',62,'8/26/2015 13:02','Market at Sansome',77,593,'Subscriber',94901); +INSERT INTO "trip" VALUES(906293,586,'8/26/2015 12:58','Japantown',9,'8/26/2015 13:08','San Pedro Square',6,31,'Subscriber',95112); +INSERT INTO "trip" VALUES(906294,333,'8/26/2015 12:59','Market at Sansome',77,'8/26/2015 13:04','Davis at Jackson',42,489,'Subscriber',94117); +INSERT INTO "trip" VALUES(906295,1030,'8/26/2015 13:00','Townsend at 7th',65,'8/26/2015 13:17','San Francisco Caltrain 2 (330 Townsend)',69,505,'Customer',94117); +INSERT INTO "trip" VALUES(906296,1030,'8/26/2015 13:00','Townsend at 7th',65,'8/26/2015 13:17','San Francisco Caltrain 2 (330 Townsend)',69,628,'Customer',94117); +INSERT INTO "trip" VALUES(906297,178,'8/26/2015 13:02','Temporary Transbay Terminal (Howard at Beale)',55,'8/26/2015 13:05','Beale at Market',56,191,'Subscriber',94010); +INSERT INTO "trip" VALUES(906298,309,'8/26/2015 13:02','2nd at South Park',64,'8/26/2015 13:07','Embarcadero at Bryant',54,522,'Subscriber',94607); +INSERT INTO "trip" VALUES(906299,645,'8/26/2015 13:00','Embarcadero at Bryant',54,'8/26/2015 13:11','Embarcadero at Sansome',60,111,'Subscriber',94105); +INSERT INTO "trip" VALUES(906300,747,'8/26/2015 13:03','Redwood City Caltrain Station',22,'8/26/2015 13:15','Redwood City Medical Center',26,577,'Subscriber',94110); +INSERT INTO "trip" VALUES(906301,444,'8/26/2015 13:03','Grant Avenue at Columbus Avenue',73,'8/26/2015 13:11','Beale at Market',56,461,'Subscriber',94133); +INSERT INTO "trip" VALUES(906302,302,'8/26/2015 13:04','Powell Street BART',39,'8/26/2015 13:09','San Francisco Caltrain 2 (330 Townsend)',69,509,'Subscriber',94107); +INSERT INTO "trip" VALUES(906308,416,'8/26/2015 13:08','Ryland Park',84,'8/26/2015 13:15','Santa Clara County Civic Center',80,155,'Subscriber',95112); +INSERT INTO "trip" VALUES(906311,120,'8/26/2015 13:08','Beale at Market',56,'8/26/2015 13:10','Temporary Transbay Terminal (Howard at Beale)',55,191,'Subscriber',94010); +INSERT INTO "trip" VALUES(906314,992,'8/26/2015 13:09','Japantown',9,'8/26/2015 13:26','San Salvador at 1st',8,98,'Subscriber',95113); +INSERT INTO "trip" VALUES(906315,190,'8/26/2015 13:09','Townsend at 7th',65,'8/26/2015 13:13','San Francisco Caltrain 2 (330 Townsend)',69,634,'Subscriber',94501); +INSERT INTO "trip" VALUES(906316,975,'8/26/2015 13:10','Japantown',9,'8/26/2015 13:26','San Salvador at 1st',8,681,'Subscriber',95113); +INSERT INTO "trip" VALUES(906317,331,'8/26/2015 13:10','2nd at South Park',64,'8/26/2015 13:15','Market at Sansome',77,591,'Subscriber',94952); +INSERT INTO "trip" VALUES(906320,306,'8/26/2015 13:10','Market at 10th',67,'8/26/2015 13:16','Powell Street BART',39,410,'Subscriber',94109); +INSERT INTO "trip" VALUES(906321,1197,'8/26/2015 13:11','Clay at Battery',41,'8/26/2015 13:31','Clay at Battery',41,617,'Subscriber',94305); +INSERT INTO "trip" VALUES(906322,870,'8/26/2015 13:11','Powell Street BART',39,'8/26/2015 13:25','Civic Center BART (7th at Market)',72,578,'Subscriber',94707); +INSERT INTO "trip" VALUES(906323,297,'8/26/2015 13:14','Powell Street BART',39,'8/26/2015 13:19','Market at Sansome',77,432,'Subscriber',94133); +INSERT INTO "trip" VALUES(906324,643,'8/26/2015 13:15','South Van Ness at Market',66,'8/26/2015 13:26','Mechanics Plaza (Market at Battery)',75,463,'Subscriber',94117); +INSERT INTO "trip" VALUES(906325,1542,'8/26/2015 13:16','Post at Kearny',47,'8/26/2015 13:42','Townsend at 7th',65,468,'Subscriber',94107); +INSERT INTO "trip" VALUES(906326,2441,'8/26/2015 13:17','San Francisco City Hall',58,'8/26/2015 13:57','Civic Center BART (7th at Market)',72,521,'Customer',90039); +INSERT INTO "trip" VALUES(906327,498,'8/26/2015 13:18','Commercial at Montgomery',45,'8/26/2015 13:26','2nd at South Park',64,517,'Subscriber',94109); +INSERT INTO "trip" VALUES(906328,583,'8/26/2015 13:19','San Pedro Square',6,'8/26/2015 13:29','Santa Clara County Civic Center',80,127,'Subscriber',95110); +INSERT INTO "trip" VALUES(906329,1026,'8/26/2015 13:21','Market at 10th',67,'8/26/2015 13:38','Steuart at Market',74,260,'Customer',32); +INSERT INTO "trip" VALUES(906330,184,'8/26/2015 13:23','Powell Street BART',39,'8/26/2015 13:26','Civic Center BART (7th at Market)',72,441,'Subscriber',94501); +INSERT INTO "trip" VALUES(906331,259,'8/26/2015 13:23','Broadway St at Battery St',82,'8/26/2015 13:28','Embarcadero at Sansome',60,459,'Subscriber',94111); +INSERT INTO "trip" VALUES(906332,419,'8/26/2015 13:24','Market at Sansome',77,'8/26/2015 13:31','Civic Center BART (7th at Market)',72,432,'Subscriber',94105); +INSERT INTO "trip" VALUES(906333,1995,'8/26/2015 13:24','San Francisco City Hall',58,'8/26/2015 13:57','Civic Center BART (7th at Market)',72,557,'Customer',90039); +INSERT INTO "trip" VALUES(906334,102,'8/26/2015 13:26','Broadway St at Battery St',82,'8/26/2015 13:28','Clay at Battery',41,618,'Subscriber',94114); +INSERT INTO "trip" VALUES(906336,4613,'8/26/2015 13:28','Powell Street BART',39,'8/26/2015 14:45','5th at Howard',57,109,'Customer',30160032); +INSERT INTO "trip" VALUES(906339,424,'8/26/2015 13:29','Beale at Market',56,'8/26/2015 13:36','Broadway St at Battery St',82,534,'Subscriber',94111); +INSERT INTO "trip" VALUES(906340,1671,'8/26/2015 13:30','San Francisco Caltrain 2 (330 Townsend)',69,'8/26/2015 13:58','San Francisco Caltrain (Townsend at 4th)',70,509,'Customer',94117); +INSERT INTO "trip" VALUES(906341,1649,'8/26/2015 13:30','San Francisco Caltrain 2 (330 Townsend)',69,'8/26/2015 13:57','San Francisco Caltrain (Townsend at 4th)',70,628,'Customer',94117); +INSERT INTO "trip" VALUES(906342,4406,'8/26/2015 13:32','Powell Street BART',39,'8/26/2015 14:45','5th at Howard',57,528,'Customer',30160032); +INSERT INTO "trip" VALUES(906346,2838,'8/26/2015 13:35','Harry Bridges Plaza (Ferry Building)',50,'8/26/2015 14:22','Spear at Folsom',49,418,'Customer',94115); +INSERT INTO "trip" VALUES(906347,2829,'8/26/2015 13:35','Harry Bridges Plaza (Ferry Building)',50,'8/26/2015 14:22','Spear at Folsom',49,494,'Customer',94105); +INSERT INTO "trip" VALUES(906348,2810,'8/26/2015 13:35','Harry Bridges Plaza (Ferry Building)',50,'8/26/2015 14:22','Spear at Folsom',49,537,'Customer',94115); +INSERT INTO "trip" VALUES(906349,512,'8/26/2015 13:36','Market at Sansome',77,'8/26/2015 13:45','Embarcadero at Bryant',54,589,'Subscriber',94941); +INSERT INTO "trip" VALUES(906350,328,'8/26/2015 13:37','Powell Street BART',39,'8/26/2015 13:42','Market at 10th',67,410,'Subscriber',94103); +INSERT INTO "trip" VALUES(906352,598,'8/26/2015 13:40','Embarcadero at Folsom',51,'8/26/2015 13:50','2nd at Townsend',61,214,'Subscriber',94115); +INSERT INTO "trip" VALUES(906354,730,'8/26/2015 13:44','Market at 10th',67,'8/26/2015 13:57','Steuart at Market',74,423,'Subscriber',94930); +INSERT INTO "trip" VALUES(906355,866,'8/26/2015 13:45','Civic Center BART (7th at Market)',72,'8/26/2015 13:59','Embarcadero at Bryant',54,432,'Subscriber',94103); +INSERT INTO "trip" VALUES(906356,135,'8/26/2015 13:46','Davis at Jackson',42,'8/26/2015 13:48','Clay at Battery',41,469,'Subscriber',94117); +INSERT INTO "trip" VALUES(906357,606,'8/26/2015 13:50','Townsend at 7th',65,'8/26/2015 14:00','Yerba Buena Center of the Arts (3rd @ Howard)',68,468,'Subscriber',94107); +INSERT INTO "trip" VALUES(906358,412,'8/26/2015 13:51','Embarcadero at Sansome',60,'8/26/2015 13:58','Davis at Jackson',42,459,'Subscriber',94111); +INSERT INTO "trip" VALUES(906359,534,'8/26/2015 13:52','San Francisco City Hall',58,'8/26/2015 14:01','Townsend at 7th',65,332,'Subscriber',94103); +INSERT INTO "trip" VALUES(906360,373,'8/26/2015 13:53','Davis at Jackson',42,'8/26/2015 14:00','Market at Sansome',77,385,'Subscriber',94306); +INSERT INTO "trip" VALUES(906361,421,'8/26/2015 13:53','Market at Sansome',77,'8/26/2015 14:00','2nd at Folsom',62,591,'Subscriber',94107); +INSERT INTO "trip" VALUES(906362,246,'8/26/2015 13:54','2nd at South Park',64,'8/26/2015 13:58','Howard at 2nd',63,96,'Subscriber',95014); +INSERT INTO "trip" VALUES(906363,268,'8/26/2015 13:54','Temporary Transbay Terminal (Howard at Beale)',55,'8/26/2015 13:59','Embarcadero at Bryant',54,327,'Subscriber',94403); +INSERT INTO "trip" VALUES(906364,2714,'8/26/2015 13:56','Embarcadero at Vallejo',48,'8/26/2015 14:41','Harry Bridges Plaza (Ferry Building)',50,335,'Customer',60654); +INSERT INTO "trip" VALUES(906365,2706,'8/26/2015 13:56','Embarcadero at Vallejo',48,'8/26/2015 14:41','Harry Bridges Plaza (Ferry Building)',50,501,'Customer',60654); +INSERT INTO "trip" VALUES(906366,473,'8/26/2015 13:57','Washington at Kearny',46,'8/26/2015 14:05','Temporary Transbay Terminal (Howard at Beale)',55,404,'Subscriber',94122); +INSERT INTO "trip" VALUES(906368,927,'8/26/2015 14:07','Golden Gate at Polk',59,'8/26/2015 14:23','Steuart at Market',74,415,'Subscriber',94109); +INSERT INTO "trip" VALUES(906369,531,'8/26/2015 14:08','Civic Center BART (7th at Market)',72,'8/26/2015 14:17','Market at Sansome',77,568,'Subscriber',94105); +INSERT INTO "trip" VALUES(906370,10346,'8/26/2015 14:08','Market at 4th',76,'8/26/2015 17:01','Market at 4th',76,29,'Customer',84058); +INSERT INTO "trip" VALUES(906371,10319,'8/26/2015 14:08','Market at 4th',76,'8/26/2015 17:00','Market at 4th',76,538,'Customer',84058); +INSERT INTO "trip" VALUES(906372,525,'8/26/2015 14:10','Embarcadero at Sansome',60,'8/26/2015 14:18','Market at Sansome',77,446,'Subscriber',94111); +INSERT INTO "trip" VALUES(906373,2453,'8/26/2015 14:10','Grant Avenue at Columbus Avenue',73,'8/26/2015 14:51','Commercial at Montgomery',45,483,'Customer','nil'); +INSERT INTO "trip" VALUES(906374,2244,'8/26/2015 14:14','Grant Avenue at Columbus Avenue',73,'8/26/2015 14:51','Commercial at Montgomery',45,401,'Customer','nil'); +INSERT INTO "trip" VALUES(906375,808,'8/26/2015 14:15','Davis at Jackson',42,'8/26/2015 14:28','San Francisco Caltrain 2 (330 Townsend)',69,426,'Subscriber',94025); +INSERT INTO "trip" VALUES(906377,1507,'8/26/2015 14:20','Townsend at 7th',65,'8/26/2015 14:45','Townsend at 7th',65,552,'Subscriber',94551); +INSERT INTO "trip" VALUES(906378,1027,'8/26/2015 14:20','2nd at Townsend',61,'8/26/2015 14:37','Embarcadero at Sansome',60,525,'Customer',94117); +INSERT INTO "trip" VALUES(906379,274,'8/26/2015 14:22','2nd at Townsend',61,'8/26/2015 14:26','2nd at South Park',64,624,'Subscriber',94107); +INSERT INTO "trip" VALUES(906380,394,'8/26/2015 14:23','Embarcadero at Sansome',60,'8/26/2015 14:29','Harry Bridges Plaza (Ferry Building)',50,608,'Subscriber',94507); +INSERT INTO "trip" VALUES(906381,471,'8/26/2015 14:23','2nd at Townsend',61,'8/26/2015 14:30','Howard at 2nd',63,439,'Subscriber',94107); +INSERT INTO "trip" VALUES(906382,334,'8/26/2015 14:32','Market at Sansome',77,'8/26/2015 14:37','2nd at South Park',64,568,'Subscriber',94952); +INSERT INTO "trip" VALUES(906383,182,'8/26/2015 14:33','2nd at South Park',64,'8/26/2015 14:36','2nd at Folsom',62,325,'Subscriber',95113); +INSERT INTO "trip" VALUES(906385,998,'8/26/2015 14:38','Embarcadero at Sansome',60,'8/26/2015 14:55','Market at 4th',76,525,'Customer',94117); +INSERT INTO "trip" VALUES(906386,973,'8/26/2015 14:39','Embarcadero at Sansome',60,'8/26/2015 14:55','Market at 4th',76,634,'Customer',94117); +INSERT INTO "trip" VALUES(906387,1193,'8/26/2015 14:40','Redwood City Medical Center',26,'8/26/2015 15:00','Redwood City Public Library',24,655,'Subscriber',94110); +INSERT INTO "trip" VALUES(906388,644,'8/26/2015 14:41','5th at Howard',57,'8/26/2015 14:52','Clay at Battery',41,56,'Subscriber',94925); +INSERT INTO "trip" VALUES(906389,1016,'8/26/2015 14:45','Civic Center BART (7th at Market)',72,'8/26/2015 15:02','Powell Street BART',39,441,'Customer',90039); +INSERT INTO "trip" VALUES(906390,1800,'8/26/2015 14:45','Powell Street BART',39,'8/26/2015 15:15','Powell Street BART',39,283,'Subscriber',94117); +INSERT INTO "trip" VALUES(906391,980,'8/26/2015 14:46','Civic Center BART (7th at Market)',72,'8/26/2015 15:02','Powell Street BART',39,557,'Customer',90039); +INSERT INTO "trip" VALUES(906392,577,'8/26/2015 14:46','Steuart at Market',74,'8/26/2015 14:56','2nd at Townsend',61,590,'Subscriber',94112); +INSERT INTO "trip" VALUES(906393,585,'8/26/2015 14:47','Townsend at 7th',65,'8/26/2015 14:56','Market at 10th',67,332,'Subscriber',94102); +INSERT INTO "trip" VALUES(906394,195,'8/26/2015 14:49','Market at Sansome',77,'8/26/2015 14:52','Harry Bridges Plaza (Ferry Building)',50,395,'Subscriber',94930); +INSERT INTO "trip" VALUES(906395,630,'8/26/2015 14:49','Steuart at Market',74,'8/26/2015 14:59','San Francisco Caltrain (Townsend at 4th)',70,632,'Subscriber',94105); +INSERT INTO "trip" VALUES(906396,818,'8/26/2015 14:50','Harry Bridges Plaza (Ferry Building)',50,'8/26/2015 15:04','San Francisco Caltrain (Townsend at 4th)',70,335,'Subscriber',94107); +INSERT INTO "trip" VALUES(906397,1048,'8/26/2015 14:52','San Francisco Caltrain (Townsend at 4th)',70,'8/26/2015 15:09','San Francisco City Hall',58,609,'Subscriber',94061); +INSERT INTO "trip" VALUES(906398,517,'8/26/2015 14:54','Spear at Folsom',49,'8/26/2015 15:03','San Francisco Caltrain (Townsend at 4th)',70,282,'Subscriber',94041); +INSERT INTO "trip" VALUES(906399,448,'8/26/2015 14:55','MLK Library',11,'8/26/2015 15:02','San Jose Diridon Caltrain Station',2,658,'Subscriber',94516); +INSERT INTO "trip" VALUES(906400,5140,'8/26/2015 14:57','Market at 4th',76,'8/26/2015 16:22','Market at 10th',67,473,'Customer',11218); +INSERT INTO "trip" VALUES(906401,5097,'8/26/2015 14:57','Market at 4th',76,'8/26/2015 16:22','Market at 10th',67,450,'Customer',11218); +INSERT INTO "trip" VALUES(906404,463,'8/26/2015 14:58','Market at 10th',67,'8/26/2015 15:06','San Francisco Caltrain 2 (330 Townsend)',69,376,'Subscriber',94066); +INSERT INTO "trip" VALUES(906408,629,'8/26/2015 15:00','San Francisco Caltrain 2 (330 Townsend)',69,'8/26/2015 15:10','Howard at 2nd',63,505,'Customer',95131); +INSERT INTO "trip" VALUES(906409,487,'8/26/2015 15:01','2nd at Townsend',61,'8/26/2015 15:09','Harry Bridges Plaza (Ferry Building)',50,348,'Subscriber',94107); +INSERT INTO "trip" VALUES(906411,741,'8/26/2015 15:01','Redwood City Public Library',24,'8/26/2015 15:13','Redwood City Medical Center',26,655,'Subscriber',94110); +INSERT INTO "trip" VALUES(906412,449,'8/26/2015 15:02','South Van Ness at Market',66,'8/26/2015 15:10','Townsend at 7th',65,621,'Subscriber',94107); +INSERT INTO "trip" VALUES(906415,948,'8/26/2015 15:03','Mountain View Caltrain Station',28,'8/26/2015 15:19','Rengstorff Avenue / California Street',33,239,'Subscriber',94040); +INSERT INTO "trip" VALUES(906416,885,'8/26/2015 15:04','Clay at Battery',41,'8/26/2015 15:19','San Francisco Caltrain (Townsend at 4th)',70,403,'Subscriber',94401); +INSERT INTO "trip" VALUES(906418,943,'8/26/2015 15:05','Post at Kearny',47,'8/26/2015 15:21','San Francisco Caltrain (Townsend at 4th)',70,440,'Subscriber',94402); +INSERT INTO "trip" VALUES(906419,267,'8/26/2015 15:05','2nd at Townsend',61,'8/26/2015 15:10','San Francisco Caltrain (Townsend at 4th)',70,429,'Subscriber',94549); +INSERT INTO "trip" VALUES(906420,505,'8/26/2015 15:06','Embarcadero at Folsom',51,'8/26/2015 15:14','Embarcadero at Folsom',51,604,'Subscriber',94401); +INSERT INTO "trip" VALUES(906421,526,'8/26/2015 15:07','Powell Street BART',39,'8/26/2015 15:15','Market at 10th',67,33,'Subscriber',94103); +INSERT INTO "trip" VALUES(906422,617,'8/26/2015 15:08','2nd at Townsend',61,'8/26/2015 15:19','Market at 4th',76,322,'Subscriber',94107); +INSERT INTO "trip" VALUES(906423,411,'8/26/2015 15:09','2nd at Townsend',61,'8/26/2015 15:16','Harry Bridges Plaza (Ferry Building)',50,590,'Subscriber',94945); +INSERT INTO "trip" VALUES(906424,664,'8/26/2015 15:10','Powell Street BART',39,'8/26/2015 15:21','San Francisco City Hall',58,444,'Customer',90039); +INSERT INTO "trip" VALUES(906427,860,'8/26/2015 15:10','Embarcadero at Sansome',60,'8/26/2015 15:25','Mechanics Plaza (Market at Battery)',75,370,'Customer',32301); +INSERT INTO "trip" VALUES(906428,809,'8/26/2015 15:11','Embarcadero at Sansome',60,'8/26/2015 15:24','Mechanics Plaza (Market at Battery)',75,453,'Customer',32301); +INSERT INTO "trip" VALUES(906429,523,'8/26/2015 15:11','San Francisco City Hall',58,'8/26/2015 15:20','San Francisco Caltrain (Townsend at 4th)',70,342,'Subscriber',95112); +INSERT INTO "trip" VALUES(906431,787,'8/26/2015 15:11','San Francisco Caltrain 2 (330 Townsend)',69,'8/26/2015 15:24','Harry Bridges Plaza (Ferry Building)',50,376,'Customer',94609); +INSERT INTO "trip" VALUES(906432,618,'8/26/2015 15:11','Powell Street BART',39,'8/26/2015 15:21','San Francisco City Hall',58,557,'Customer',90039); +INSERT INTO "trip" VALUES(906433,329,'8/26/2015 15:11','Howard at 2nd',63,'8/26/2015 15:17','Harry Bridges Plaza (Ferry Building)',50,598,'Subscriber',94590); +INSERT INTO "trip" VALUES(906434,807,'8/26/2015 15:12','Beale at Market',56,'8/26/2015 15:25','San Francisco Caltrain (Townsend at 4th)',70,399,'Subscriber',95051); +INSERT INTO "trip" VALUES(906435,250,'8/26/2015 15:13','Steuart at Market',74,'8/26/2015 15:17','Embarcadero at Vallejo',48,415,'Subscriber',94608); +INSERT INTO "trip" VALUES(906438,304,'8/26/2015 15:15','Castro Street and El Camino Real',32,'8/26/2015 15:20','Mountain View Caltrain Station',28,194,'Subscriber',94109); +INSERT INTO "trip" VALUES(906439,615,'8/26/2015 15:16','Embarcadero at Folsom',51,'8/26/2015 15:26','San Francisco Caltrain (Townsend at 4th)',70,137,'Subscriber',95118); +INSERT INTO "trip" VALUES(906440,746,'8/26/2015 15:19','Harry Bridges Plaza (Ferry Building)',50,'8/26/2015 15:32','San Francisco Caltrain 2 (330 Townsend)',69,358,'Subscriber',94062); +INSERT INTO "trip" VALUES(906441,996,'8/26/2015 15:19','Market at Sansome',77,'8/26/2015 15:36','Embarcadero at Vallejo',48,446,'Customer',30160032); +INSERT INTO "trip" VALUES(906442,497,'8/26/2015 15:20','Townsend at 7th',65,'8/26/2015 15:28','Civic Center BART (7th at Market)',72,485,'Subscriber',94549); +INSERT INTO "trip" VALUES(906443,127,'8/26/2015 15:20','2nd at Folsom',62,'8/26/2015 15:22','2nd at South Park',64,326,'Subscriber',95113); +INSERT INTO "trip" VALUES(906444,943,'8/26/2015 15:21','Market at Sansome',77,'8/26/2015 15:36','Embarcadero at Vallejo',48,269,'Customer',30160032); +INSERT INTO "trip" VALUES(906445,592,'8/26/2015 15:21','Commercial at Montgomery',45,'8/26/2015 15:31','Spear at Folsom',49,495,'Subscriber',94105); +INSERT INTO "trip" VALUES(906447,426,'8/26/2015 15:23','2nd at Folsom',62,'8/26/2015 15:30','Davis at Jackson',42,325,'Subscriber',94117); +INSERT INTO "trip" VALUES(906451,1013,'8/26/2015 15:26','Embarcadero at Sansome',60,'8/26/2015 15:43','San Francisco Caltrain 2 (330 Townsend)',69,387,'Subscriber',95129); +INSERT INTO "trip" VALUES(906452,398,'8/26/2015 15:26','5th at Howard',57,'8/26/2015 15:33','Post at Kearny',47,496,'Subscriber',94702); +INSERT INTO "trip" VALUES(906455,931,'8/26/2015 15:26','Embarcadero at Bryant',54,'8/26/2015 15:42','Powell at Post (Union Square)',71,432,'Subscriber',94103); +INSERT INTO "trip" VALUES(906456,506,'8/26/2015 15:28','Davis at Jackson',42,'8/26/2015 15:36','Embarcadero at Folsom',51,562,'Subscriber',94111); +INSERT INTO "trip" VALUES(906457,898,'8/26/2015 15:29','Embarcadero at Folsom',51,'8/26/2015 15:44','San Francisco Caltrain (Townsend at 4th)',70,597,'Subscriber',95148); +INSERT INTO "trip" VALUES(906459,496,'8/26/2015 15:30','2nd at South Park',64,'8/26/2015 15:38','Harry Bridges Plaza (Ferry Building)',50,624,'Subscriber',94904); +INSERT INTO "trip" VALUES(906460,746,'8/26/2015 15:31','South Van Ness at Market',66,'8/26/2015 15:43','Yerba Buena Center of the Arts (3rd @ Howard)',68,300,'Subscriber',94103); +INSERT INTO "trip" VALUES(906461,955,'8/26/2015 15:31','Mechanics Plaza (Market at Battery)',75,'8/26/2015 15:47','San Francisco Caltrain 2 (330 Townsend)',69,453,'Subscriber',94301); +INSERT INTO "trip" VALUES(906462,215,'8/26/2015 15:34','Broadway St at Battery St',82,'8/26/2015 15:37','Harry Bridges Plaza (Ferry Building)',50,534,'Subscriber',94608); +INSERT INTO "trip" VALUES(906463,257,'8/26/2015 15:35','San Francisco Caltrain 2 (330 Townsend)',69,'8/26/2015 15:40','Townsend at 7th',65,426,'Subscriber',94044); +INSERT INTO "trip" VALUES(906464,473,'8/26/2015 15:37','Temporary Transbay Terminal (Howard at Beale)',55,'8/26/2015 15:45','2nd at Townsend',61,504,'Subscriber',94158); +INSERT INTO "trip" VALUES(906465,340,'8/26/2015 15:37','Powell Street BART',39,'8/26/2015 15:43','Powell at Post (Union Square)',71,383,'Subscriber',94127); +INSERT INTO "trip" VALUES(906466,6046,'8/26/2015 15:38','Grant Avenue at Columbus Avenue',73,'8/26/2015 17:19','Golden Gate at Polk',59,518,'Customer','nil'); +INSERT INTO "trip" VALUES(906467,477,'8/26/2015 15:40','Beale at Market',56,'8/26/2015 15:48','2nd at Townsend',61,461,'Subscriber',94107); +INSERT INTO "trip" VALUES(906468,669,'8/26/2015 15:43','Temporary Transbay Terminal (Howard at Beale)',55,'8/26/2015 15:54','San Francisco Caltrain (Townsend at 4th)',70,533,'Subscriber',94030); +INSERT INTO "trip" VALUES(906469,638,'8/26/2015 15:43','Mechanics Plaza (Market at Battery)',75,'8/26/2015 15:54','San Francisco Caltrain (Townsend at 4th)',70,463,'Subscriber',94040); +INSERT INTO "trip" VALUES(906470,860,'8/26/2015 15:45','2nd at South Park',64,'8/26/2015 15:59','2nd at South Park',64,326,'Subscriber',94107); +INSERT INTO "trip" VALUES(906471,861,'8/26/2015 15:47','Broadway St at Battery St',82,'8/26/2015 16:01','San Francisco Caltrain (Townsend at 4th)',70,630,'Subscriber',95054); +INSERT INTO "trip" VALUES(906473,666,'8/26/2015 15:48','Temporary Transbay Terminal (Howard at Beale)',55,'8/26/2015 15:59','Post at Kearny',47,404,'Customer',96003); +INSERT INTO "trip" VALUES(906474,516,'8/26/2015 15:49','Market at 4th',76,'8/26/2015 15:58','2nd at South Park',64,525,'Subscriber',94107); +INSERT INTO "trip" VALUES(906476,774,'8/26/2015 15:50','Harry Bridges Plaza (Ferry Building)',50,'8/26/2015 16:03','San Francisco Caltrain (Townsend at 4th)',70,608,'Subscriber',93401); +INSERT INTO "trip" VALUES(906477,743,'8/26/2015 15:51','Beale at Market',56,'8/26/2015 16:03','San Francisco Caltrain (Townsend at 4th)',70,877,'Subscriber',94085); +INSERT INTO "trip" VALUES(906478,208,'8/26/2015 15:51','Market at 4th',76,'8/26/2015 15:54','Beale at Market',56,448,'Subscriber',94123); +INSERT INTO "trip" VALUES(906479,231,'8/26/2015 15:52','Townsend at 7th',65,'8/26/2015 15:56','San Francisco Caltrain 2 (330 Townsend)',69,454,'Subscriber',94103); +INSERT INTO "trip" VALUES(906480,232,'8/26/2015 15:52','Townsend at 7th',65,'8/26/2015 15:56','San Francisco Caltrain 2 (330 Townsend)',69,472,'Subscriber',94043); +INSERT INTO "trip" VALUES(906481,347,'8/26/2015 15:52','Embarcadero at Sansome',60,'8/26/2015 15:58','Steuart at Market',74,579,'Subscriber',94111); +INSERT INTO "trip" VALUES(906482,708,'8/26/2015 15:53','Townsend at 7th',65,'8/26/2015 16:05','Harry Bridges Plaza (Ferry Building)',50,621,'Subscriber',94501); +INSERT INTO "trip" VALUES(906483,403,'8/26/2015 15:53','Yerba Buena Center of the Arts (3rd @ Howard)',68,'8/26/2015 16:00','San Francisco Caltrain 2 (330 Townsend)',69,419,'Subscriber',94117); +INSERT INTO "trip" VALUES(906484,532,'8/26/2015 15:54','San Francisco Caltrain 2 (330 Townsend)',69,'8/26/2015 16:03','Spear at Folsom',49,358,'Subscriber',94501); +INSERT INTO "trip" VALUES(906485,763,'8/26/2015 15:55','Townsend at 7th',65,'8/26/2015 16:07','Harry Bridges Plaza (Ferry Building)',50,583,'Subscriber',94901); +INSERT INTO "trip" VALUES(906488,494,'8/26/2015 15:56','Santa Clara at Almaden',4,'8/26/2015 16:05','San Jose Diridon Caltrain Station',2,208,'Customer',94086); +INSERT INTO "trip" VALUES(906489,483,'8/26/2015 15:57','Embarcadero at Folsom',51,'8/26/2015 16:05','San Francisco Caltrain (Townsend at 4th)',70,431,'Subscriber',95054); +INSERT INTO "trip" VALUES(906490,626,'8/26/2015 15:57','South Van Ness at Market',66,'8/26/2015 16:07','San Francisco Caltrain 2 (330 Townsend)',69,508,'Subscriber',95122); +INSERT INTO "trip" VALUES(906495,670,'8/26/2015 15:57','Embarcadero at Folsom',51,'8/26/2015 16:08','San Francisco Caltrain (Townsend at 4th)',70,364,'Subscriber',95035); +INSERT INTO "trip" VALUES(906496,1281,'8/26/2015 15:57','Market at Sansome',77,'8/26/2015 16:19','San Francisco Caltrain (Townsend at 4th)',70,498,'Subscriber',94403); +INSERT INTO "trip" VALUES(906498,291,'8/26/2015 15:58','Clay at Battery',41,'8/26/2015 16:03','Temporary Transbay Terminal (Howard at Beale)',55,56,'Subscriber',94501); +INSERT INTO "trip" VALUES(906502,644,'8/26/2015 15:59','San Francisco Caltrain (Townsend at 4th)',70,'8/26/2015 16:10','Temporary Transbay Terminal (Howard at Beale)',55,533,'Subscriber',94530); +INSERT INTO "trip" VALUES(906505,589,'8/26/2015 16:00','5th at Howard',57,'8/26/2015 16:10','Harry Bridges Plaza (Ferry Building)',50,425,'Subscriber',94930); +INSERT INTO "trip" VALUES(906507,207,'8/26/2015 16:01','San Antonio Shopping Center',31,'8/26/2015 16:04','San Antonio Caltrain Station',29,10,'Subscriber',94115); +INSERT INTO "trip" VALUES(906512,736,'8/26/2015 16:03','Stanford in Redwood City',25,'8/26/2015 16:15','Redwood City Caltrain Station',22,188,'Subscriber',94131); +INSERT INTO "trip" VALUES(906513,880,'8/26/2015 16:03','Beale at Market',56,'8/26/2015 16:17','San Francisco Caltrain 2 (330 Townsend)',69,594,'Subscriber',95133); +INSERT INTO "trip" VALUES(906514,424,'8/26/2015 16:02','2nd at Townsend',61,'8/26/2015 16:09','Harry Bridges Plaza (Ferry Building)',50,504,'Subscriber',94558); +INSERT INTO "trip" VALUES(906515,769,'8/26/2015 16:03','Beale at Market',56,'8/26/2015 16:16','San Francisco Caltrain (Townsend at 4th)',70,285,'Subscriber',94303); +INSERT INTO "trip" VALUES(906518,546,'8/26/2015 16:04','Market at 4th',76,'8/26/2015 16:13','Temporary Transbay Terminal (Howard at Beale)',55,634,'Subscriber',94501); +INSERT INTO "trip" VALUES(906520,236,'8/26/2015 16:05','Townsend at 7th',65,'8/26/2015 16:09','San Francisco Caltrain 2 (330 Townsend)',69,629,'Subscriber',94402); +INSERT INTO "trip" VALUES(906521,590,'8/26/2015 16:05','Howard at 2nd',63,'8/26/2015 16:15','San Francisco Caltrain 2 (330 Townsend)',69,569,'Subscriber',94070); +INSERT INTO "trip" VALUES(906522,586,'8/26/2015 16:06','Steuart at Market',74,'8/26/2015 16:15','San Francisco Caltrain (Townsend at 4th)',70,69,'Subscriber',94002); +INSERT INTO "trip" VALUES(906523,453,'8/26/2015 16:07','Townsend at 7th',65,'8/26/2015 16:14','Civic Center BART (7th at Market)',72,426,'Subscriber',94582); +INSERT INTO "trip" VALUES(906524,396,'8/26/2015 16:07','Market at 4th',76,'8/26/2015 16:13','San Francisco Caltrain (Townsend at 4th)',70,322,'Subscriber',95125); +INSERT INTO "trip" VALUES(906525,303,'8/26/2015 16:08','Embarcadero at Sansome',60,'8/26/2015 16:13','Harry Bridges Plaza (Ferry Building)',50,318,'Subscriber',94939); +INSERT INTO "trip" VALUES(906526,446,'8/26/2015 16:08','Post at Kearny',47,'8/26/2015 16:15','Harry Bridges Plaza (Ferry Building)',50,404,'Subscriber',95442); +INSERT INTO "trip" VALUES(906527,408,'8/26/2015 16:08','2nd at Townsend',61,'8/26/2015 16:15','Market at Sansome',77,461,'Subscriber',94539); +INSERT INTO "trip" VALUES(906528,406,'8/26/2015 16:08','Embarcadero at Folsom',51,'8/26/2015 16:15','San Francisco Caltrain (Townsend at 4th)',70,362,'Subscriber',95118); +INSERT INTO "trip" VALUES(906529,645,'8/26/2015 16:09','Beale at Market',56,'8/26/2015 16:20','San Francisco Caltrain (Townsend at 4th)',70,409,'Subscriber',95136); +INSERT INTO "trip" VALUES(906530,450,'8/26/2015 16:11','Spear at Folsom',49,'8/26/2015 16:18','Post at Kearny',47,495,'Subscriber',94105); +INSERT INTO "trip" VALUES(906531,441,'8/26/2015 16:11','Temporary Transbay Terminal (Howard at Beale)',55,'8/26/2015 16:18','2nd at Townsend',61,56,'Subscriber',95050); +INSERT INTO "trip" VALUES(906532,353,'8/26/2015 16:11','Townsend at 7th',65,'8/26/2015 16:17','Civic Center BART (7th at Market)',72,520,'Subscriber',94598); +INSERT INTO "trip" VALUES(906533,337,'8/26/2015 16:12','Market at 4th',76,'8/26/2015 16:17','San Francisco Caltrain (Townsend at 4th)',70,511,'Subscriber',95014); +INSERT INTO "trip" VALUES(906534,4125,'8/26/2015 16:12','South Van Ness at Market',66,'8/26/2015 17:21','Embarcadero at Sansome',60,353,'Customer',94087); +INSERT INTO "trip" VALUES(906535,508,'8/26/2015 16:12','2nd at South Park',64,'8/26/2015 16:21','Powell Street BART',39,525,'Subscriber',94549); +INSERT INTO "trip" VALUES(906536,186,'8/26/2015 16:12','Castro Street and El Camino Real',32,'8/26/2015 16:15','Castro Street and El Camino Real',32,705,'Customer',14580); +INSERT INTO "trip" VALUES(906537,338,'8/26/2015 16:13','Paseo de San Antonio',7,'8/26/2015 16:18','San Jose Diridon Caltrain Station',2,712,'Subscriber',95112); +INSERT INTO "trip" VALUES(906538,1070,'8/26/2015 16:13','Japantown',9,'8/26/2015 16:31','SJSU 4th at San Carlos',12,684,'Subscriber',95112); +INSERT INTO "trip" VALUES(906539,219,'8/26/2015 16:13','2nd at South Park',64,'8/26/2015 16:17','San Francisco Caltrain (Townsend at 4th)',70,541,'Subscriber',95110); +INSERT INTO "trip" VALUES(906540,697,'8/26/2015 16:15','Post at Kearny',47,'8/26/2015 16:26','San Francisco Caltrain (Townsend at 4th)',70,672,'Subscriber',94401); +INSERT INTO "trip" VALUES(906541,552,'8/26/2015 16:15','Golden Gate at Polk',59,'8/26/2015 16:24','Steuart at Market',74,193,'Subscriber',94610); +INSERT INTO "trip" VALUES(906542,1052,'8/26/2015 16:15','San Francisco Caltrain (Townsend at 4th)',70,'8/26/2015 16:33','Market at 10th',67,364,'Subscriber',94107); +INSERT INTO "trip" VALUES(906545,1053,'8/26/2015 16:15','Palo Alto Caltrain Station',34,'8/26/2015 16:32','Palo Alto Caltrain Station',34,715,'Customer',95122); +INSERT INTO "trip" VALUES(906547,3279,'8/26/2015 16:16','Castro Street and El Camino Real',32,'8/26/2015 17:10','Mountain View City Hall',27,673,'Customer',14580); +INSERT INTO "trip" VALUES(906548,396,'8/26/2015 16:16','Embarcadero at Vallejo',48,'8/26/2015 16:22','Temporary Transbay Terminal (Howard at Beale)',55,212,'Subscriber',94602); +INSERT INTO "trip" VALUES(906549,488,'8/26/2015 16:17','Embarcadero at Vallejo',48,'8/26/2015 16:26','Harry Bridges Plaza (Ferry Building)',50,421,'Customer',30160032); +INSERT INTO "trip" VALUES(906550,450,'8/26/2015 16:18','Embarcadero at Vallejo',48,'8/26/2015 16:25','Harry Bridges Plaza (Ferry Building)',50,462,'Customer',30160032); +INSERT INTO "trip" VALUES(906551,380,'8/26/2015 16:18','2nd at Townsend',61,'8/26/2015 16:24','Steuart at Market',74,407,'Subscriber',94588); +INSERT INTO "trip" VALUES(906552,881,'8/26/2015 16:18','Palo Alto Caltrain Station',34,'8/26/2015 16:33','Palo Alto Caltrain Station',34,21,'Customer',95122); +INSERT INTO "trip" VALUES(906553,543,'8/26/2015 16:19','Clay at Battery',41,'8/26/2015 16:28','5th at Howard',57,618,'Subscriber',94925); +INSERT INTO "trip" VALUES(906554,237,'8/26/2015 16:19','Townsend at 7th',65,'8/26/2015 16:23','San Francisco Caltrain 2 (330 Townsend)',69,552,'Subscriber',95129); +INSERT INTO "trip" VALUES(906556,400,'8/26/2015 16:20','Howard at 2nd',63,'8/26/2015 16:27','Harry Bridges Plaza (Ferry Building)',50,374,'Subscriber',94954); +INSERT INTO "trip" VALUES(906557,399,'8/26/2015 16:21','2nd at Folsom',62,'8/26/2015 16:27','Embarcadero at Folsom',51,632,'Subscriber',94105); +INSERT INTO "trip" VALUES(906558,227,'8/26/2015 16:21','Steuart at Market',74,'8/26/2015 16:24','Temporary Transbay Terminal (Howard at Beale)',55,189,'Subscriber',94108); +INSERT INTO "trip" VALUES(906559,528,'8/26/2015 16:21','Harry Bridges Plaza (Ferry Building)',50,'8/26/2015 16:30','San Francisco Caltrain (Townsend at 4th)',70,504,'Subscriber',95060); +INSERT INTO "trip" VALUES(906560,418,'8/26/2015 16:21','2nd at Folsom',62,'8/26/2015 16:28','San Francisco Caltrain (Townsend at 4th)',70,622,'Subscriber',94403); +INSERT INTO "trip" VALUES(906561,3534,'8/26/2015 16:21','South Van Ness at Market',66,'8/26/2015 17:20','Embarcadero at Sansome',60,613,'Customer',94087); +INSERT INTO "trip" VALUES(906562,2765,'8/26/2015 16:19','Spear at Folsom',49,'8/26/2015 17:05','Golden Gate at Polk',59,558,'Subscriber',94109); +INSERT INTO "trip" VALUES(906563,273,'8/26/2015 16:23','Castro Street and El Camino Real',32,'8/26/2015 16:28','Mountain View Caltrain Station',28,13,'Subscriber',94041); +INSERT INTO "trip" VALUES(906565,382,'8/26/2015 16:25','2nd at South Park',64,'8/26/2015 16:31','Market at Sansome',77,363,'Subscriber',95973); +INSERT INTO "trip" VALUES(906566,280,'8/26/2015 16:26','Harry Bridges Plaza (Ferry Building)',50,'8/26/2015 16:31','Broadway St at Battery St',82,382,'Subscriber',94608); +INSERT INTO "trip" VALUES(906567,490,'8/26/2015 16:26','MLK Library',11,'8/26/2015 16:35','San Jose Diridon Caltrain Station',2,18,'Subscriber',94110); +INSERT INTO "trip" VALUES(906568,472,'8/26/2015 16:27','Embarcadero at Sansome',60,'8/26/2015 16:35','Steuart at Market',74,111,'Subscriber',94568); +INSERT INTO "trip" VALUES(906569,1015,'8/26/2015 16:28','Stanford in Redwood City',25,'8/26/2015 16:44','Redwood City Caltrain Station',22,40,'Subscriber',94110); +INSERT INTO "trip" VALUES(906570,286,'8/26/2015 16:24','2nd at Townsend',61,'8/26/2015 16:29','San Francisco Caltrain 2 (330 Townsend)',69,56,'Subscriber',94107); +INSERT INTO "trip" VALUES(906571,684,'8/26/2015 16:28','Harry Bridges Plaza (Ferry Building)',50,'8/26/2015 16:40','Embarcadero at Sansome',60,374,'Subscriber',94305); +INSERT INTO "trip" VALUES(906572,690,'8/26/2015 16:28','Harry Bridges Plaza (Ferry Building)',50,'8/26/2015 16:40','Embarcadero at Sansome',60,583,'Subscriber',94114); +INSERT INTO "trip" VALUES(906573,197,'8/26/2015 16:29','Mountain View City Hall',27,'8/26/2015 16:32','Mountain View Caltrain Station',28,639,'Subscriber',94107); +INSERT INTO "trip" VALUES(906574,703,'8/26/2015 16:29','Harry Bridges Plaza (Ferry Building)',50,'8/26/2015 16:40','San Francisco Caltrain (Townsend at 4th)',70,377,'Subscriber',94303); +INSERT INTO "trip" VALUES(906575,418,'8/26/2015 16:29','Grant Avenue at Columbus Avenue',73,'8/26/2015 16:36','Market at Sansome',77,570,'Subscriber',94133); +INSERT INTO "trip" VALUES(906576,321,'8/26/2015 16:29','Commercial at Montgomery',45,'8/26/2015 16:34','Temporary Transbay Terminal (Howard at Beale)',55,401,'Subscriber',94710); +INSERT INTO "trip" VALUES(906577,195,'8/26/2015 16:30','Santa Clara at Almaden',4,'8/26/2015 16:33','San Jose Diridon Caltrain Station',2,213,'Subscriber',95020); +INSERT INTO "trip" VALUES(906578,637,'8/26/2015 16:30','Powell at Post (Union Square)',71,'8/26/2015 16:41','Commercial at Montgomery',45,383,'Subscriber',94127); +INSERT INTO "trip" VALUES(906579,927,'8/26/2015 16:31','Commercial at Montgomery',45,'8/26/2015 16:47','San Francisco Caltrain (Townsend at 4th)',70,437,'Subscriber',94010); +INSERT INTO "trip" VALUES(906580,598,'8/26/2015 16:32','Market at 10th',67,'8/26/2015 16:42','San Francisco Caltrain 2 (330 Townsend)',69,450,'Subscriber',94025); +INSERT INTO "trip" VALUES(906581,354,'8/26/2015 16:33','2nd at Folsom',62,'8/26/2015 16:39','San Francisco Caltrain (Townsend at 4th)',70,591,'Subscriber',94403); +INSERT INTO "trip" VALUES(906582,534,'8/26/2015 16:30','2nd at Townsend',61,'8/26/2015 16:39','Harry Bridges Plaza (Ferry Building)',50,572,'Subscriber',94612); +INSERT INTO "trip" VALUES(906583,904,'8/26/2015 16:33','Clay at Battery',41,'8/26/2015 16:48','San Francisco Caltrain (Townsend at 4th)',70,288,'Subscriber',94025); +INSERT INTO "trip" VALUES(906584,1540,'8/26/2015 16:33','Stanford in Redwood City',25,'8/26/2015 16:59','Palo Alto Caltrain Station',34,148,'Subscriber',95131); +INSERT INTO "trip" VALUES(906587,792,'8/26/2015 16:35','Steuart at Market',74,'8/26/2015 16:48','San Francisco Caltrain (Townsend at 4th)',70,391,'Subscriber',94404); +INSERT INTO "trip" VALUES(906588,443,'8/26/2015 16:35','Spear at Folsom',49,'8/26/2015 16:43','Broadway St at Battery St',82,494,'Subscriber',94133); +INSERT INTO "trip" VALUES(906591,582,'8/26/2015 16:36','San Francisco Caltrain 2 (330 Townsend)',69,'8/26/2015 16:46','Powell Street BART',39,508,'Subscriber',94107); +INSERT INTO "trip" VALUES(906592,980,'8/26/2015 16:36','Spear at Folsom',49,'8/26/2015 16:53','Townsend at 7th',65,553,'Subscriber',94107); +INSERT INTO "trip" VALUES(906593,231,'8/26/2015 16:37','Evelyn Park and Ride',30,'8/26/2015 16:41','Mountain View Caltrain Station',28,706,'Subscriber',94111); +INSERT INTO "trip" VALUES(906594,410,'8/26/2015 16:37','Mechanics Plaza (Market at Battery)',75,'8/26/2015 16:44','Yerba Buena Center of the Arts (3rd @ Howard)',68,445,'Subscriber',95008); +INSERT INTO "trip" VALUES(906595,379,'8/26/2015 16:37','5th at Howard',57,'8/26/2015 16:43','San Francisco Caltrain 2 (330 Townsend)',69,528,'Subscriber',94401); +INSERT INTO "trip" VALUES(906596,231,'8/26/2015 16:37','Embarcadero at Vallejo',48,'8/26/2015 16:41','Steuart at Market',74,415,'Subscriber',94602); +INSERT INTO "trip" VALUES(906597,261,'8/26/2015 16:38','Mountain View City Hall',27,'8/26/2015 16:42','Mountain View Caltrain Station',28,251,'Subscriber',95032); +INSERT INTO "trip" VALUES(906598,597,'8/26/2015 16:38','2nd at South Park',64,'8/26/2015 16:48','Harry Bridges Plaza (Ferry Building)',50,477,'Subscriber',94949); +INSERT INTO "trip" VALUES(906599,428,'8/26/2015 16:38','2nd at Townsend',61,'8/26/2015 16:45','Harry Bridges Plaza (Ferry Building)',50,592,'Subscriber',94903); +INSERT INTO "trip" VALUES(906600,562,'8/26/2015 16:39','Embarcadero at Folsom',51,'8/26/2015 16:48','Washington at Kearny',46,366,'Subscriber',94124); +INSERT INTO "trip" VALUES(906601,327,'8/26/2015 16:39','Market at 4th',76,'8/26/2015 16:45','Mechanics Plaza (Market at Battery)',75,625,'Subscriber',94107); +INSERT INTO "trip" VALUES(906602,714,'8/26/2015 16:40','Powell at Post (Union Square)',71,'8/26/2015 16:52','2nd at Townsend',61,187,'Subscriber',94109); +INSERT INTO "trip" VALUES(906603,874,'8/26/2015 16:40','Redwood City Medical Center',26,'8/26/2015 16:55','Redwood City Caltrain Station',22,655,'Subscriber',94110); +INSERT INTO "trip" VALUES(906604,112,'8/26/2015 16:41','2nd at Folsom',62,'8/26/2015 16:43','Temporary Transbay Terminal (Howard at Beale)',55,405,'Subscriber',94602); +INSERT INTO "trip" VALUES(906605,2529,'8/26/2015 16:41','University and Emerson',35,'8/26/2015 17:24','University and Emerson',35,253,'Customer',6878); +INSERT INTO "trip" VALUES(906606,495,'8/26/2015 16:42','San Francisco Caltrain 2 (330 Townsend)',69,'8/26/2015 16:50','Powell Street BART',39,569,'Subscriber',94606); +INSERT INTO "trip" VALUES(906607,2511,'8/26/2015 16:42','University and Emerson',35,'8/26/2015 17:24','University and Emerson',35,716,'Customer',6878); +INSERT INTO "trip" VALUES(906608,512,'8/26/2015 16:42','San Francisco Caltrain 2 (330 Townsend)',69,'8/26/2015 16:51','Powell Street BART',39,419,'Subscriber',94703); +INSERT INTO "trip" VALUES(906609,542,'8/26/2015 16:43','Embarcadero at Sansome',60,'8/26/2015 16:52','Temporary Transbay Terminal (Howard at Beale)',55,583,'Subscriber',94501); +INSERT INTO "trip" VALUES(906610,194,'8/26/2015 16:44','Embarcadero at Vallejo',48,'8/26/2015 16:47','Steuart at Market',74,493,'Subscriber',94547); +INSERT INTO "trip" VALUES(906611,174,'8/26/2015 16:43','Townsend at 7th',65,'8/26/2015 16:46','San Francisco Caltrain 2 (330 Townsend)',69,266,'Subscriber',94065); +INSERT INTO "trip" VALUES(906612,661,'8/26/2015 16:44','South Van Ness at Market',66,'8/26/2015 16:55','San Francisco Caltrain 2 (330 Townsend)',69,601,'Subscriber',95119); +INSERT INTO "trip" VALUES(906613,681,'8/26/2015 16:44','Harry Bridges Plaza (Ferry Building)',50,'8/26/2015 16:56','San Francisco Caltrain (Townsend at 4th)',70,572,'Subscriber',94002); +INSERT INTO "trip" VALUES(906614,753,'8/26/2015 16:44','Steuart at Market',74,'8/26/2015 16:57','San Francisco Caltrain (Townsend at 4th)',70,407,'Subscriber',95008); +INSERT INTO "trip" VALUES(906615,540,'8/26/2015 16:45','5th at Howard',57,'8/26/2015 16:54','Harry Bridges Plaza (Ferry Building)',50,355,'Subscriber',94925); +INSERT INTO "trip" VALUES(906616,563,'8/26/2015 16:45','Temporary Transbay Terminal (Howard at Beale)',55,'8/26/2015 16:54','San Francisco Caltrain (Townsend at 4th)',70,533,'Subscriber',94022); +INSERT INTO "trip" VALUES(906617,495,'8/26/2015 16:46','Beale at Market',56,'8/26/2015 16:54','Broadway St at Battery St',82,422,'Subscriber',94122); +INSERT INTO "trip" VALUES(906618,975,'8/26/2015 16:46','Davis at Jackson',42,'8/26/2015 17:03','San Francisco Caltrain (Townsend at 4th)',70,614,'Subscriber',94040); +INSERT INTO "trip" VALUES(906619,763,'8/26/2015 16:47','Golden Gate at Polk',59,'8/26/2015 17:00','Temporary Transbay Terminal (Howard at Beale)',55,289,'Subscriber',94602); +INSERT INTO "trip" VALUES(906620,570,'8/26/2015 16:47','Embarcadero at Folsom',51,'8/26/2015 16:57','San Francisco Caltrain (Townsend at 4th)',70,562,'Subscriber',94070); +INSERT INTO "trip" VALUES(906622,513,'8/26/2015 16:48','Townsend at 7th',65,'8/26/2015 16:56','Civic Center BART (7th at Market)',72,568,'Subscriber',94590); +INSERT INTO "trip" VALUES(906623,544,'8/26/2015 16:48','Powell Street BART',39,'8/26/2015 16:57','South Van Ness at Market',66,525,'Subscriber',94103); +INSERT INTO "trip" VALUES(906626,189,'8/26/2015 16:48','Beale at Market',56,'8/26/2015 16:51','Commercial at Montgomery',45,271,'Subscriber',94133); +INSERT INTO "trip" VALUES(906627,1063,'8/26/2015 16:49','Embarcadero at Sansome',60,'8/26/2015 17:07','San Francisco Caltrain (Townsend at 4th)',70,275,'Subscriber',95111); +INSERT INTO "trip" VALUES(906628,461,'8/26/2015 16:49','2nd at Folsom',62,'8/26/2015 16:57','Harry Bridges Plaza (Ferry Building)',50,547,'Subscriber',94558); +INSERT INTO "trip" VALUES(906629,227,'8/26/2015 16:49','Steuart at Market',74,'8/26/2015 16:53','Embarcadero at Bryant',54,579,'Subscriber',94105); +INSERT INTO "trip" VALUES(906630,511,'8/26/2015 16:49','Spear at Folsom',49,'8/26/2015 16:58','San Francisco Caltrain (Townsend at 4th)',70,603,'Subscriber',94105); +INSERT INTO "trip" VALUES(906631,418,'8/26/2015 16:50','San Francisco Caltrain 2 (330 Townsend)',69,'8/26/2015 16:57','Townsend at 7th',65,450,'Subscriber',94116); +INSERT INTO "trip" VALUES(906634,505,'8/26/2015 16:51','2nd at South Park',64,'8/26/2015 16:59','Harry Bridges Plaza (Ferry Building)',50,326,'Subscriber',94510); +INSERT INTO "trip" VALUES(906635,580,'8/26/2015 16:51','Market at 10th',67,'8/26/2015 17:00','San Francisco Caltrain 2 (330 Townsend)',69,359,'Subscriber',95123); +INSERT INTO "trip" VALUES(906637,566,'8/26/2015 16:51','Beale at Market',56,'8/26/2015 17:01','San Francisco Caltrain 2 (330 Townsend)',69,402,'Subscriber',94403); +INSERT INTO "trip" VALUES(906638,663,'8/26/2015 16:52','Mechanics Plaza (Market at Battery)',75,'8/26/2015 17:03','San Francisco Caltrain (Townsend at 4th)',70,554,'Subscriber',94303); +INSERT INTO "trip" VALUES(906640,878,'8/26/2015 16:52','Beale at Market',56,'8/26/2015 17:07','San Francisco Caltrain (Townsend at 4th)',70,448,'Subscriber',94402); +INSERT INTO "trip" VALUES(906641,1076,'8/26/2015 16:53','Davis at Jackson',42,'8/26/2015 17:11','San Francisco Caltrain (Townsend at 4th)',70,325,'Subscriber',94111); +INSERT INTO "trip" VALUES(906642,657,'8/26/2015 16:53','South Van Ness at Market',66,'8/26/2015 17:04','San Francisco Caltrain 2 (330 Townsend)',69,471,'Subscriber',95030); +INSERT INTO "trip" VALUES(906643,967,'8/26/2015 16:54','Townsend at 7th',65,'8/26/2015 17:10','Embarcadero at Folsom',51,553,'Subscriber',94501); +INSERT INTO "trip" VALUES(906644,518,'8/26/2015 16:54','Market at 4th',76,'8/26/2015 17:03','San Francisco Caltrain (Townsend at 4th)',70,314,'Subscriber',94002); +INSERT INTO "trip" VALUES(906645,1021,'8/26/2015 16:54','Broadway St at Battery St',82,'8/26/2015 17:11','San Francisco Caltrain 2 (330 Townsend)',69,427,'Subscriber',94025); +INSERT INTO "trip" VALUES(906646,657,'8/26/2015 16:55','Temporary Transbay Terminal (Howard at Beale)',55,'8/26/2015 17:06','San Francisco Caltrain (Townsend at 4th)',70,529,'Subscriber',95014); +INSERT INTO "trip" VALUES(906647,488,'8/26/2015 16:55','2nd at Folsom',62,'8/26/2015 17:03','Harry Bridges Plaza (Ferry Building)',50,282,'Subscriber',94558); +INSERT INTO "trip" VALUES(906648,224,'8/26/2015 16:55','San Antonio Shopping Center',31,'8/26/2015 16:59','San Antonio Caltrain Station',29,700,'Subscriber',94103); +INSERT INTO "trip" VALUES(906649,364,'8/26/2015 16:55','2nd at South Park',64,'8/26/2015 17:01','Market at Sansome',77,356,'Subscriber',94105); +INSERT INTO "trip" VALUES(906650,561,'8/26/2015 16:56','Embarcadero at Folsom',51,'8/26/2015 17:05','San Francisco Caltrain (Townsend at 4th)',70,604,'Subscriber',94085); +INSERT INTO "trip" VALUES(906651,992,'8/26/2015 16:56','Santa Clara County Civic Center',80,'8/26/2015 17:13','San Jose Diridon Caltrain Station',2,702,'Subscriber',94115); +INSERT INTO "trip" VALUES(906652,672,'8/26/2015 16:57','Embarcadero at Folsom',51,'8/26/2015 17:08','San Francisco Caltrain 2 (330 Townsend)',69,278,'Subscriber',95131); +INSERT INTO "trip" VALUES(906653,586,'8/26/2015 16:57','2nd at Townsend',61,'8/26/2015 17:06','Embarcadero at Folsom',51,187,'Subscriber',94115); +INSERT INTO "trip" VALUES(906654,659,'8/26/2015 16:58','Temporary Transbay Terminal (Howard at Beale)',55,'8/26/2015 17:09','San Francisco Caltrain 2 (330 Townsend)',69,634,'Subscriber',94117); +INSERT INTO "trip" VALUES(906655,680,'8/26/2015 16:58','Market at Sansome',77,'8/26/2015 17:10','Embarcadero at Sansome',60,628,'Subscriber',94105); +INSERT INTO "trip" VALUES(906656,961,'8/26/2015 16:59','Howard at 2nd',63,'8/26/2015 17:15','South Van Ness at Market',66,687,'Subscriber',94114); +INSERT INTO "trip" VALUES(906659,1280,'8/26/2015 16:59','Embarcadero at Vallejo',48,'8/26/2015 17:21','San Francisco Caltrain (Townsend at 4th)',70,329,'Subscriber',95122); +INSERT INTO "trip" VALUES(906660,1021,'8/26/2015 16:59','Clay at Battery',41,'8/26/2015 17:16','San Francisco Caltrain (Townsend at 4th)',70,394,'Subscriber',94070); +INSERT INTO "trip" VALUES(906661,667,'8/26/2015 16:59','South Van Ness at Market',66,'8/26/2015 17:11','Beale at Market',56,442,'Subscriber',9611); +INSERT INTO "trip" VALUES(906662,887,'8/26/2015 17:00','Townsend at 7th',65,'8/26/2015 17:15','Steuart at Market',74,450,'Subscriber',94904); +INSERT INTO "trip" VALUES(906663,264,'8/26/2015 17:00','Cowper at University',37,'8/26/2015 17:05','Palo Alto Caltrain Station',34,689,'Subscriber',94108); +INSERT INTO "trip" VALUES(906666,326,'8/26/2015 17:00','Mountain View City Hall',27,'8/26/2015 17:06','Mountain View Caltrain Station',28,80,'Subscriber',95110); +INSERT INTO "trip" VALUES(906667,558,'8/26/2015 17:00','San Francisco Caltrain 2 (330 Townsend)',69,'8/26/2015 17:10','Temporary Transbay Terminal (Howard at Beale)',55,601,'Subscriber',94602); +INSERT INTO "trip" VALUES(906668,831,'8/26/2015 17:00','San Francisco Caltrain 2 (330 Townsend)',69,'8/26/2015 17:14','Embarcadero at Sansome',60,472,'Subscriber',94105); +INSERT INTO "trip" VALUES(906669,621,'8/26/2015 17:01','Steuart at Market',74,'8/26/2015 17:11','San Francisco Caltrain (Townsend at 4th)',70,415,'Subscriber',94070); +INSERT INTO "trip" VALUES(906670,565,'8/26/2015 17:01','Temporary Transbay Terminal (Howard at Beale)',55,'8/26/2015 17:10','San Francisco Caltrain 2 (330 Townsend)',69,542,'Subscriber',95008); +INSERT INTO "trip" VALUES(906671,639,'8/26/2015 17:01','Embarcadero at Folsom',51,'8/26/2015 17:12','San Francisco Caltrain 2 (330 Townsend)',69,209,'Subscriber',94061); +INSERT INTO "trip" VALUES(906672,243,'8/26/2015 17:01','Embarcadero at Vallejo',48,'8/26/2015 17:05','Steuart at Market',74,492,'Subscriber',94708); +INSERT INTO "trip" VALUES(906675,290,'8/26/2015 17:02','Powell at Post (Union Square)',71,'8/26/2015 17:07','Howard at 2nd',63,432,'Subscriber',94105); +INSERT INTO "trip" VALUES(906676,399,'8/26/2015 17:02','2nd at Townsend',61,'8/26/2015 17:09','Harry Bridges Plaza (Ferry Building)',50,214,'Subscriber',94903); +INSERT INTO "trip" VALUES(906677,757,'8/26/2015 17:02','Civic Center BART (7th at Market)',72,'8/26/2015 17:15','Steuart at Market',74,389,'Customer',80020); +INSERT INTO "trip" VALUES(906678,357,'8/26/2015 17:03','5th at Howard',57,'8/26/2015 17:08','San Francisco Caltrain 2 (330 Townsend)',69,109,'Subscriber',94303); +INSERT INTO "trip" VALUES(906679,499,'8/26/2015 17:03','Market at Sansome',77,'8/26/2015 17:11','San Francisco Caltrain 2 (330 Townsend)',69,497,'Subscriber',95112); +INSERT INTO "trip" VALUES(906680,198,'8/26/2015 17:03','Civic Center BART (7th at Market)',72,'8/26/2015 17:06','Powell Street BART',39,578,'Subscriber',94618); +INSERT INTO "trip" VALUES(906681,952,'8/26/2015 17:03','Stanford in Redwood City',25,'8/26/2015 17:19','Redwood City Caltrain Station',22,122,'Subscriber',95037); +INSERT INTO "trip" VALUES(906682,287,'8/26/2015 17:03','Yerba Buena Center of the Arts (3rd @ Howard)',68,'8/26/2015 17:08','San Francisco Caltrain (Townsend at 4th)',70,400,'Subscriber',94070); +INSERT INTO "trip" VALUES(906685,889,'8/26/2015 17:03','Mechanics Plaza (Market at Battery)',75,'8/26/2015 17:18','San Francisco Caltrain (Townsend at 4th)',70,625,'Subscriber',95054); +INSERT INTO "trip" VALUES(906686,672,'8/26/2015 17:04','Spear at Folsom',49,'8/26/2015 17:15','San Francisco Caltrain 2 (330 Townsend)',69,418,'Subscriber',94040); +INSERT INTO "trip" VALUES(906688,406,'8/26/2015 17:05','Embarcadero at Vallejo',48,'8/26/2015 17:12','Temporary Transbay Terminal (Howard at Beale)',55,67,'Subscriber',94611); +INSERT INTO "trip" VALUES(906689,481,'8/26/2015 17:05','Yerba Buena Center of the Arts (3rd @ Howard)',68,'8/26/2015 17:13','Steuart at Market',74,300,'Subscriber',94107); +INSERT INTO "trip" VALUES(906690,511,'8/26/2015 17:05','Temporary Transbay Terminal (Howard at Beale)',55,'8/26/2015 17:13','San Francisco Caltrain (Townsend at 4th)',70,212,'Subscriber',94070); +INSERT INTO "trip" VALUES(906691,396,'8/26/2015 17:05','San Pedro Square',6,'8/26/2015 17:11','San Jose Diridon Caltrain Station',2,679,'Subscriber',94002); +INSERT INTO "trip" VALUES(906692,641,'8/26/2015 17:06','Golden Gate at Polk',59,'8/26/2015 17:16','San Francisco Caltrain 2 (330 Townsend)',69,567,'Subscriber',94306); +INSERT INTO "trip" VALUES(906693,555,'8/26/2015 17:06','Market at 10th',67,'8/26/2015 17:15','San Francisco Caltrain (Townsend at 4th)',70,364,'Subscriber',95122); +INSERT INTO "trip" VALUES(906694,972,'8/26/2015 17:06','Steuart at Market',74,'8/26/2015 17:23','San Francisco Caltrain (Townsend at 4th)',70,287,'Subscriber',95134); +INSERT INTO "trip" VALUES(906695,706,'8/26/2015 17:07','Mechanics Plaza (Market at Battery)',75,'8/26/2015 17:18','San Francisco Caltrain (Townsend at 4th)',70,378,'Subscriber',94070); +INSERT INTO "trip" VALUES(906696,633,'8/26/2015 17:07','Steuart at Market',74,'8/26/2015 17:17','San Francisco Caltrain 2 (330 Townsend)',69,493,'Subscriber',94061); +INSERT INTO "trip" VALUES(906697,309,'8/26/2015 17:07','Broadway St at Battery St',82,'8/26/2015 17:12','Steuart at Market',74,457,'Subscriber',94556); +INSERT INTO "trip" VALUES(906698,902,'8/26/2015 17:07','Embarcadero at Vallejo',48,'8/26/2015 17:22','San Francisco Caltrain (Townsend at 4th)',70,310,'Subscriber',95128); +INSERT INTO "trip" VALUES(906699,261,'8/26/2015 17:08','Market at Sansome',77,'8/26/2015 17:12','Steuart at Market',74,384,'Subscriber',94925); +INSERT INTO "trip" VALUES(906700,457,'8/26/2015 17:08','Howard at 2nd',63,'8/26/2015 17:15','San Francisco Caltrain 2 (330 Townsend)',69,432,'Subscriber',94062); +INSERT INTO "trip" VALUES(906701,274,'8/26/2015 17:08','Castro Street and El Camino Real',32,'8/26/2015 17:12','Mountain View Caltrain Station',28,94,'Subscriber',94105); +INSERT INTO "trip" VALUES(906702,418,'8/26/2015 17:08','2nd at Townsend',61,'8/26/2015 17:15','Steuart at Market',74,563,'Subscriber',94901); +INSERT INTO "trip" VALUES(906703,617,'8/26/2015 17:08','Embarcadero at Sansome',60,'8/26/2015 17:18','Temporary Transbay Terminal (Howard at Beale)',55,374,'Subscriber',94602); +INSERT INTO "trip" VALUES(906704,312,'8/26/2015 17:09','Davis at Jackson',42,'8/26/2015 17:14','Embarcadero at Sansome',60,459,'Subscriber',94111); +INSERT INTO "trip" VALUES(906705,484,'8/26/2015 17:09','Steuart at Market',74,'8/26/2015 17:17','2nd at Townsend',61,260,'Subscriber',94158); +INSERT INTO "trip" VALUES(906706,811,'8/26/2015 17:10','Park at Olive',38,'8/26/2015 17:23','Palo Alto Caltrain Station',34,252,'Subscriber',94002); +INSERT INTO "trip" VALUES(906707,759,'8/26/2015 17:10','Steuart at Market',74,'8/26/2015 17:22','San Francisco Caltrain (Townsend at 4th)',70,111,'Subscriber',95111); +INSERT INTO "trip" VALUES(906708,205,'8/26/2015 17:10','Temporary Transbay Terminal (Howard at Beale)',55,'8/26/2015 17:13','Harry Bridges Plaza (Ferry Building)',50,189,'Subscriber',94960); +INSERT INTO "trip" VALUES(906709,455,'8/26/2015 17:10','San Francisco Caltrain 2 (330 Townsend)',69,'8/26/2015 17:17','Steuart at Market',74,634,'Subscriber',94501); +INSERT INTO "trip" VALUES(906710,321,'8/26/2015 17:10','Market at Sansome',77,'8/26/2015 17:15','Steuart at Market',74,356,'Subscriber',94925); +INSERT INTO "trip" VALUES(906711,650,'8/26/2015 17:10','2nd at South Park',64,'8/26/2015 17:21','Washington at Kearny',46,392,'Subscriber',94133); +INSERT INTO "trip" VALUES(906712,488,'8/26/2015 17:10','Embarcadero at Vallejo',48,'8/26/2015 17:18','Temporary Transbay Terminal (Howard at Beale)',55,446,'Subscriber',94608); +INSERT INTO "trip" VALUES(906713,721,'8/26/2015 17:10','San Francisco Caltrain (Townsend at 4th)',70,'8/26/2015 17:22','Market at 4th',76,877,'Subscriber',94542); +INSERT INTO "trip" VALUES(906716,395,'8/26/2015 17:10','Howard at 2nd',63,'8/26/2015 17:17','San Francisco Caltrain 2 (330 Townsend)',69,505,'Subscriber',94402); +INSERT INTO "trip" VALUES(906717,3073,'8/26/2015 17:10','Embarcadero at Vallejo',48,'8/26/2015 18:02','Post at Kearny',47,388,'Customer',10458); +INSERT INTO "trip" VALUES(906718,753,'8/26/2015 17:11','Market at Sansome',77,'8/26/2015 17:23','San Francisco Caltrain 2 (330 Townsend)',69,440,'Subscriber',94303); +INSERT INTO "trip" VALUES(906719,724,'8/26/2015 17:11','Yerba Buena Center of the Arts (3rd @ Howard)',68,'8/26/2015 17:23','South Van Ness at Market',66,445,'Subscriber',94102); +INSERT INTO "trip" VALUES(906722,372,'8/26/2015 17:12','Embarcadero at Sansome',60,'8/26/2015 17:18','Steuart at Market',74,628,'Subscriber',94549); +INSERT INTO "trip" VALUES(906723,390,'8/26/2015 17:12','Redwood City Medical Center',26,'8/26/2015 17:18','Redwood City Caltrain Station',22,28,'Subscriber',94040); +INSERT INTO "trip" VALUES(906724,431,'8/26/2015 17:12','Embarcadero at Folsom',51,'8/26/2015 17:19','San Francisco Caltrain (Townsend at 4th)',70,632,'Subscriber',94303); +INSERT INTO "trip" VALUES(906725,344,'8/26/2015 17:12','San Francisco Caltrain (Townsend at 4th)',70,'8/26/2015 17:18','Townsend at 7th',65,325,'Subscriber',94107); +INSERT INTO "trip" VALUES(906726,436,'8/26/2015 17:12','2nd at Folsom',62,'8/26/2015 17:19','San Francisco Caltrain (Townsend at 4th)',70,555,'Subscriber',95125); +INSERT INTO "trip" VALUES(906727,396,'8/26/2015 17:12','San Francisco Caltrain (Townsend at 4th)',70,'8/26/2015 17:19','2nd at Folsom',62,69,'Subscriber',94303); +INSERT INTO "trip" VALUES(906728,898,'8/26/2015 17:13','Mechanics Plaza (Market at Battery)',75,'8/26/2015 17:28','Grant Avenue at Columbus Avenue',73,284,'Subscriber',94402); +INSERT INTO "trip" VALUES(906731,371,'8/26/2015 17:11','2nd at Townsend',61,'8/26/2015 17:18','Temporary Transbay Terminal (Howard at Beale)',55,449,'Subscriber',94608); +INSERT INTO "trip" VALUES(906732,603,'8/26/2015 17:13','Temporary Transbay Terminal (Howard at Beale)',55,'8/26/2015 17:23','San Francisco Caltrain (Townsend at 4th)',70,405,'Subscriber',95110); +INSERT INTO "trip" VALUES(906733,421,'8/26/2015 17:13','Temporary Transbay Terminal (Howard at Beale)',55,'8/26/2015 17:20','Yerba Buena Center of the Arts (3rd @ Howard)',68,375,'Subscriber',94103); +INSERT INTO "trip" VALUES(906734,414,'8/26/2015 17:09','2nd at South Park',64,'8/26/2015 17:16','Temporary Transbay Terminal (Howard at Beale)',55,328,'Subscriber',94920); +INSERT INTO "trip" VALUES(906735,367,'8/26/2015 17:13','Embarcadero at Sansome',60,'8/26/2015 17:19','Steuart at Market',74,507,'Subscriber',94947); +INSERT INTO "trip" VALUES(906737,858,'8/26/2015 17:14','San Jose Diridon Caltrain Station',2,'8/26/2015 17:28','SJSU - San Salvador at 9th',16,658,'Subscriber',95112); +INSERT INTO "trip" VALUES(906739,432,'8/26/2015 17:14','2nd at Townsend',61,'8/26/2015 17:21','Market at Sansome',77,347,'Subscriber',94107); +INSERT INTO "trip" VALUES(906740,483,'8/26/2015 17:14','Embarcadero at Vallejo',48,'8/26/2015 17:22','Spear at Folsom',49,269,'Subscriber',94608); +INSERT INTO "trip" VALUES(906743,446,'8/26/2015 17:15','Commercial at Montgomery',45,'8/26/2015 17:22','Powell at Post (Union Square)',71,483,'Subscriber',94133); +INSERT INTO "trip" VALUES(906744,763,'8/26/2015 17:15','2nd at Folsom',62,'8/26/2015 17:28','Townsend at 7th',65,630,'Subscriber',94107); +INSERT INTO "trip" VALUES(906745,692,'8/26/2015 17:15','San Francisco Caltrain 2 (330 Townsend)',69,'8/26/2015 17:27','Civic Center BART (7th at Market)',72,594,'Subscriber',94105); +INSERT INTO "trip" VALUES(906748,335,'8/26/2015 17:16','Steuart at Market',74,'8/26/2015 17:21','Howard at 2nd',63,384,'Customer','nil'); +INSERT INTO "trip" VALUES(906749,1305,'8/26/2015 17:16','San Francisco Caltrain (Townsend at 4th)',70,'8/26/2015 17:37','Grant Avenue at Columbus Avenue',73,511,'Subscriber',94133); +INSERT INTO "trip" VALUES(906750,457,'8/26/2015 17:16','Mechanics Plaza (Market at Battery)',75,'8/26/2015 17:23','Embarcadero at Sansome',60,677,'Subscriber',94133); +INSERT INTO "trip" VALUES(906751,534,'8/26/2015 17:16','Yerba Buena Center of the Arts (3rd @ Howard)',68,'8/26/2015 17:25','Commercial at Montgomery',45,468,'Subscriber',94133); +INSERT INTO "trip" VALUES(906752,492,'8/26/2015 17:16','Market at Sansome',77,'8/26/2015 17:24','San Francisco Caltrain 2 (330 Townsend)',69,403,'Subscriber',94306); +INSERT INTO "trip" VALUES(906753,718,'8/26/2015 17:16','South Van Ness at Market',66,'8/26/2015 17:28','Washington at Kearny',46,525,'Subscriber',94115); +INSERT INTO "trip" VALUES(906754,598,'8/26/2015 17:16','San Francisco Caltrain (Townsend at 4th)',70,'8/26/2015 17:26','Powell Street BART',39,415,'Subscriber',94549); +INSERT INTO "trip" VALUES(906755,522,'8/26/2015 17:16','Beale at Market',56,'8/26/2015 17:25','San Francisco Caltrain 2 (330 Townsend)',69,442,'Customer',37221); +INSERT INTO "trip" VALUES(906758,429,'8/26/2015 17:18','Broadway St at Battery St',82,'8/26/2015 17:25','Mechanics Plaza (Market at Battery)',75,382,'Subscriber',94107); +INSERT INTO "trip" VALUES(906759,1020,'8/26/2015 17:18','Commercial at Montgomery',45,'8/26/2015 17:35','Townsend at 7th',65,383,'Subscriber',94107); +INSERT INTO "trip" VALUES(906762,702,'8/26/2015 17:18','Davis at Jackson',42,'8/26/2015 17:30','San Francisco Caltrain (Townsend at 4th)',70,478,'Subscriber',94030); +INSERT INTO "trip" VALUES(906763,186,'8/26/2015 17:18','Townsend at 7th',65,'8/26/2015 17:21','San Francisco Caltrain 2 (330 Townsend)',69,325,'Subscriber',95051); +INSERT INTO "trip" VALUES(906764,215,'8/26/2015 17:19','Temporary Transbay Terminal (Howard at Beale)',55,'8/26/2015 17:22','2nd at Folsom',62,289,'Subscriber',94158); +INSERT INTO "trip" VALUES(906765,367,'8/26/2015 17:19','Embarcadero at Sansome',60,'8/26/2015 17:25','Steuart at Market',74,371,'Subscriber',94565); +INSERT INTO "trip" VALUES(906766,414,'8/26/2015 17:19','Davis at Jackson',42,'8/26/2015 17:26','Embarcadero at Folsom',51,412,'Subscriber',94602); +INSERT INTO "trip" VALUES(906769,606,'8/26/2015 17:20','Market at 10th',67,'8/26/2015 17:30','San Francisco Caltrain 2 (330 Townsend)',69,473,'Subscriber',94401); +INSERT INTO "trip" VALUES(906770,377,'8/26/2015 17:20','San Pedro Square',6,'8/26/2015 17:27','San Jose Diridon Caltrain Station',2,691,'Subscriber',95377); +INSERT INTO "trip" VALUES(906773,311,'8/26/2015 17:21','2nd at Townsend',61,'8/26/2015 17:26','Spear at Folsom',49,260,'Subscriber',94702); +INSERT INTO "trip" VALUES(906774,889,'8/26/2015 17:21','San Francisco Caltrain 2 (330 Townsend)',69,'8/26/2015 17:36','Embarcadero at Sansome',60,505,'Subscriber',94109); +INSERT INTO "trip" VALUES(906775,82,'8/26/2015 17:22','2nd at South Park',64,'8/26/2015 17:24','2nd at Townsend',61,517,'Subscriber',94107); +INSERT INTO "trip" VALUES(906776,245,'8/26/2015 17:22','Mountain View City Hall',27,'8/26/2015 17:26','Mountain View Caltrain Station',28,262,'Subscriber',94103); +INSERT INTO "trip" VALUES(906777,565,'8/26/2015 17:22','Clay at Battery',41,'8/26/2015 17:32','Powell at Post (Union Square)',71,617,'Subscriber',94109); +INSERT INTO "trip" VALUES(906778,371,'8/26/2015 17:23','Market at 4th',76,'8/26/2015 17:29','Temporary Transbay Terminal (Howard at Beale)',55,29,'Subscriber',94706); +INSERT INTO "trip" VALUES(906779,592,'8/26/2015 17:23','Commercial at Montgomery',45,'8/26/2015 17:33','Powell Street BART',39,546,'Subscriber',94111); +INSERT INTO "trip" VALUES(906780,458,'8/26/2015 17:20','2nd at Townsend',61,'8/26/2015 17:27','Market at Sansome',77,491,'Subscriber',94611); +INSERT INTO "trip" VALUES(906781,309,'8/26/2015 17:23','San Francisco Caltrain 2 (330 Townsend)',69,'8/26/2015 17:28','5th at Howard',57,493,'Subscriber',94107); +INSERT INTO "trip" VALUES(906785,476,'8/26/2015 17:24','Howard at 2nd',63,'8/26/2015 17:32','Embarcadero at Bryant',54,384,'Subscriber',94105); +INSERT INTO "trip" VALUES(906786,917,'8/26/2015 17:24','Steuart at Market',74,'8/26/2015 17:40','San Francisco Caltrain (Townsend at 4th)',70,492,'Subscriber',94107); +INSERT INTO "trip" VALUES(906787,740,'8/26/2015 17:24','Market at Sansome',77,'8/26/2015 17:37','Grant Avenue at Columbus Avenue',73,570,'Subscriber',94133); +INSERT INTO "trip" VALUES(906788,549,'8/26/2015 17:26','San Francisco Caltrain (Townsend at 4th)',70,'8/26/2015 17:35','Steuart at Market',74,394,'Subscriber',94705); +INSERT INTO "trip" VALUES(906789,645,'8/26/2015 17:26','Steuart at Market',74,'8/26/2015 17:36','San Francisco Caltrain (Townsend at 4th)',70,371,'Subscriber',94403); +INSERT INTO "trip" VALUES(906790,290,'8/26/2015 17:26','Commercial at Montgomery',45,'8/26/2015 17:31','Temporary Transbay Terminal (Howard at Beale)',55,271,'Subscriber',94611); +INSERT INTO "trip" VALUES(906791,1433,'8/26/2015 17:26','Townsend at 7th',65,'8/26/2015 17:50','Mechanics Plaza (Market at Battery)',75,614,'Subscriber',94568); +INSERT INTO "trip" VALUES(906792,801,'8/26/2015 17:26','Clay at Battery',41,'8/26/2015 17:40','2nd at Townsend',61,361,'Subscriber',94107); +INSERT INTO "trip" VALUES(906793,578,'8/26/2015 17:27','2nd at Townsend',61,'8/26/2015 17:36','Harry Bridges Plaza (Ferry Building)',50,517,'Subscriber',94503); +INSERT INTO "trip" VALUES(906794,206,'8/26/2015 17:27','Mezes Park',83,'8/26/2015 17:30','Redwood City Caltrain Station',22,704,'Subscriber',94010); +INSERT INTO "trip" VALUES(906795,345,'8/26/2015 17:28','San Francisco Caltrain (Townsend at 4th)',70,'8/26/2015 17:33','5th at Howard',57,362,'Subscriber',94117); +INSERT INTO "trip" VALUES(906796,201,'8/26/2015 17:28','Clay at Battery',41,'8/26/2015 17:31','Temporary Transbay Terminal (Howard at Beale)',55,372,'Subscriber',94133); +INSERT INTO "trip" VALUES(906797,358,'8/26/2015 17:28','Embarcadero at Sansome',60,'8/26/2015 17:34','Steuart at Market',74,472,'Subscriber',94595); +INSERT INTO "trip" VALUES(906798,382,'8/26/2015 17:29','Mechanics Plaza (Market at Battery)',75,'8/26/2015 17:35','Powell Street BART',39,351,'Subscriber',94107); +INSERT INTO "trip" VALUES(906799,870,'8/26/2015 17:26','Mechanics Plaza (Market at Battery)',75,'8/26/2015 17:41','Market at 10th',67,382,'Subscriber',94102); +INSERT INTO "trip" VALUES(906800,303,'8/26/2015 17:29','Broadway St at Battery St',82,'8/26/2015 17:34','Beale at Market',56,636,'Subscriber',94111); +INSERT INTO "trip" VALUES(906801,397,'8/26/2015 17:29','Steuart at Market',74,'8/26/2015 17:36','Embarcadero at Sansome',60,634,'Subscriber',94133); +INSERT INTO "trip" VALUES(906802,646,'8/26/2015 17:29','Market at 10th',67,'8/26/2015 17:40','San Francisco Caltrain 2 (330 Townsend)',69,581,'Subscriber',94108); +INSERT INTO "trip" VALUES(906803,574,'8/26/2015 17:30','South Van Ness at Market',66,'8/26/2015 17:39','Market at 4th',76,687,'Subscriber',94103); +INSERT INTO "trip" VALUES(906804,823,'8/26/2015 17:31','Davis at Jackson',42,'8/26/2015 17:44','San Francisco Caltrain (Townsend at 4th)',70,489,'Subscriber',95014); +INSERT INTO "trip" VALUES(906805,650,'8/26/2015 17:31','Steuart at Market',74,'8/26/2015 17:42','San Francisco Caltrain (Townsend at 4th)',70,628,'Subscriber',90803); +INSERT INTO "trip" VALUES(906806,925,'8/26/2015 17:32','San Francisco Caltrain (Townsend at 4th)',70,'8/26/2015 17:48','South Van Ness at Market',66,632,'Subscriber',94115); +INSERT INTO "trip" VALUES(906807,739,'8/26/2015 17:32','Townsend at 7th',65,'8/26/2015 17:45','South Van Ness at Market',66,359,'Subscriber',94618); +INSERT INTO "trip" VALUES(906808,1152,'8/26/2015 17:32','Harry Bridges Plaza (Ferry Building)',50,'8/26/2015 17:52','San Francisco Caltrain 2 (330 Townsend)',69,598,'Subscriber',94087); +INSERT INTO "trip" VALUES(906809,554,'8/26/2015 17:33','Embarcadero at Bryant',54,'8/26/2015 17:42','Davis at Jackson',42,397,'Subscriber',94110); +INSERT INTO "trip" VALUES(906810,368,'8/26/2015 17:33','San Francisco Caltrain (Townsend at 4th)',70,'8/26/2015 17:39','2nd at Townsend',61,478,'Subscriber',94107); +INSERT INTO "trip" VALUES(906811,956,'8/26/2015 17:33','San Francisco Caltrain 2 (330 Townsend)',69,'8/26/2015 17:49','Powell at Post (Union Square)',71,432,'Subscriber',94109); +INSERT INTO "trip" VALUES(906812,277,'8/26/2015 17:33','Broadway St at Battery St',82,'8/26/2015 17:38','Steuart at Market',74,331,'Subscriber',94132); +INSERT INTO "trip" VALUES(906813,165,'8/26/2015 17:33','5th at Howard',57,'8/26/2015 17:36','Powell Street BART',39,493,'Subscriber',94024); +INSERT INTO "trip" VALUES(906814,651,'8/26/2015 17:34','Temporary Transbay Terminal (Howard at Beale)',55,'8/26/2015 17:45','San Francisco Caltrain (Townsend at 4th)',70,67,'Subscriber',94025); +INSERT INTO "trip" VALUES(906815,275,'8/26/2015 17:34','San Jose Diridon Caltrain Station',2,'8/26/2015 17:38','Santa Clara at Almaden',4,117,'Subscriber',95110); +INSERT INTO "trip" VALUES(906817,261,'8/26/2015 17:34','San Francisco Caltrain (Townsend at 4th)',70,'8/26/2015 17:38','Townsend at 7th',65,285,'Subscriber',94102); +INSERT INTO "trip" VALUES(906818,796,'8/26/2015 17:34','Market at Sansome',77,'8/26/2015 17:47','San Francisco Caltrain 2 (330 Townsend)',69,413,'Subscriber',94002); +INSERT INTO "trip" VALUES(906819,644,'8/26/2015 17:35','Steuart at Market',74,'8/26/2015 17:45','San Francisco Caltrain 2 (330 Townsend)',69,457,'Subscriber',94024); +INSERT INTO "trip" VALUES(906820,643,'8/26/2015 17:35','Steuart at Market',74,'8/26/2015 17:46','San Francisco Caltrain 2 (330 Townsend)',69,563,'Subscriber',94010); +INSERT INTO "trip" VALUES(906821,769,'8/26/2015 17:35','Stanford in Redwood City',25,'8/26/2015 17:48','Redwood City Caltrain Station',22,295,'Subscriber',94158); +INSERT INTO "trip" VALUES(906823,174,'8/26/2015 17:35','Temporary Transbay Terminal (Howard at Beale)',55,'8/26/2015 17:38','Beale at Market',56,372,'Subscriber',94110); +INSERT INTO "trip" VALUES(906824,335,'8/26/2015 17:35','2nd at South Park',64,'8/26/2015 17:41','Market at Sansome',77,528,'Subscriber',94544); +INSERT INTO "trip" VALUES(906825,421,'8/26/2015 17:35','Yerba Buena Center of the Arts (3rd @ Howard)',68,'8/26/2015 17:42','San Francisco Caltrain (Townsend at 4th)',70,411,'Subscriber',94087); +INSERT INTO "trip" VALUES(906826,1082,'8/26/2015 17:36','Davis at Jackson',42,'8/26/2015 17:54','San Francisco Caltrain (Townsend at 4th)',70,309,'Subscriber',94111); +INSERT INTO "trip" VALUES(906827,720,'8/26/2015 17:36','Howard at 2nd',63,'8/26/2015 17:48','San Francisco Caltrain (Townsend at 4th)',70,96,'Subscriber',94025); +INSERT INTO "trip" VALUES(906828,244,'8/26/2015 17:37','Townsend at 7th',65,'8/26/2015 17:41','San Francisco Caltrain 2 (330 Townsend)',69,554,'Subscriber',94301); +INSERT INTO "trip" VALUES(906829,283,'8/26/2015 17:37','Santa Clara at Almaden',4,'8/26/2015 17:42','San Jose Diridon Caltrain Station',2,231,'Subscriber',94103); +INSERT INTO "trip" VALUES(906830,1080,'8/26/2015 17:38','San Francisco City Hall',58,'8/26/2015 17:56','2nd at Folsom',62,557,'Customer',10128); +INSERT INTO "trip" VALUES(906831,588,'8/26/2015 17:38','2nd at Townsend',61,'8/26/2015 17:48','Steuart at Market',74,529,'Subscriber',94526); +INSERT INTO "trip" VALUES(906832,252,'8/26/2015 17:38','Townsend at 7th',65,'8/26/2015 17:43','San Francisco Caltrain 2 (330 Townsend)',69,603,'Subscriber',94040); +INSERT INTO "trip" VALUES(906833,502,'8/26/2015 17:39','Howard at 2nd',63,'8/26/2015 17:47','San Francisco Caltrain 2 (330 Townsend)',69,556,'Subscriber',94061); +INSERT INTO "trip" VALUES(906834,342,'8/26/2015 17:39','Mountain View City Hall',27,'8/26/2015 17:44','Mountain View Caltrain Station',28,182,'Subscriber',94110); +INSERT INTO "trip" VALUES(906835,828,'8/26/2015 17:39','Mechanics Plaza (Market at Battery)',75,'8/26/2015 17:52','Market at 10th',67,373,'Subscriber',94102); +INSERT INTO "trip" VALUES(906836,252,'8/26/2015 17:39','Cowper at University',37,'8/26/2015 17:43','Palo Alto Caltrain Station',34,41,'Subscriber',94107); +INSERT INTO "trip" VALUES(906837,297,'8/26/2015 17:40','Howard at 2nd',63,'8/26/2015 17:45','Steuart at Market',74,527,'Customer','nil'); +INSERT INTO "trip" VALUES(906838,853,'8/26/2015 17:40','Embarcadero at Sansome',60,'8/26/2015 17:54','San Francisco Caltrain (Townsend at 4th)',70,505,'Subscriber',94027); +INSERT INTO "trip" VALUES(906840,462,'8/26/2015 17:41','Mechanics Plaza (Market at Battery)',75,'8/26/2015 17:49','Embarcadero at Bryant',54,380,'Subscriber',94105); +INSERT INTO "trip" VALUES(906841,492,'8/26/2015 17:42','Townsend at 7th',65,'8/26/2015 17:50','Civic Center BART (7th at Market)',72,572,'Subscriber',94107); +INSERT INTO "trip" VALUES(906842,928,'8/26/2015 17:42','Harry Bridges Plaza (Ferry Building)',50,'8/26/2015 17:58','San Francisco Caltrain (Townsend at 4th)',70,592,'Subscriber',94111); +INSERT INTO "trip" VALUES(906843,483,'8/26/2015 17:42','Townsend at 7th',65,'8/26/2015 17:50','Civic Center BART (7th at Market)',72,630,'Subscriber',94107); +INSERT INTO "trip" VALUES(906844,393,'8/26/2015 17:42','Embarcadero at Sansome',60,'8/26/2015 17:49','Steuart at Market',74,634,'Subscriber',94597); +INSERT INTO "trip" VALUES(906845,265,'8/26/2015 17:43','San Jose Diridon Caltrain Station',2,'8/26/2015 17:47','Santa Clara at Almaden',4,702,'Subscriber',95110); +INSERT INTO "trip" VALUES(906846,371,'8/26/2015 17:41','2nd at South Park',64,'8/26/2015 17:47','Market at Sansome',77,625,'Subscriber',94610); +INSERT INTO "trip" VALUES(906847,562,'8/26/2015 17:43','Embarcadero at Sansome',60,'8/26/2015 17:52','Steuart at Market',74,408,'Subscriber',94566); +INSERT INTO "trip" VALUES(906848,954,'8/26/2015 17:44','Temporary Transbay Terminal (Howard at Beale)',55,'8/26/2015 17:59','Townsend at 7th',65,328,'Subscriber',94107); +INSERT INTO "trip" VALUES(906849,573,'8/26/2015 17:42','Mechanics Plaza (Market at Battery)',75,'8/26/2015 17:52','2nd at Townsend',61,370,'Subscriber',94107); +INSERT INTO "trip" VALUES(906850,748,'8/26/2015 17:44','Powell Street BART',39,'8/26/2015 17:56','Townsend at 7th',65,283,'Subscriber',94107); +INSERT INTO "trip" VALUES(906851,1007,'8/26/2015 17:45','Broadway St at Battery St',82,'8/26/2015 18:02','San Francisco Caltrain (Townsend at 4th)',70,134,'Subscriber',94403); +INSERT INTO "trip" VALUES(906852,456,'8/26/2015 17:46','Market at 4th',76,'8/26/2015 17:53','San Francisco Caltrain (Townsend at 4th)',70,687,'Subscriber',94403); +INSERT INTO "trip" VALUES(906853,537,'8/26/2015 17:46','2nd at Townsend',61,'8/26/2015 17:55','Steuart at Market',74,275,'Subscriber',94110); +INSERT INTO "trip" VALUES(906854,498,'8/26/2015 17:46','Townsend at 7th',65,'8/26/2015 17:54','2nd at Townsend',61,285,'Subscriber',94107); +INSERT INTO "trip" VALUES(906856,954,'8/26/2015 17:47','Townsend at 7th',65,'8/26/2015 18:03','Powell at Post (Union Square)',71,471,'Subscriber',94110); +INSERT INTO "trip" VALUES(906857,833,'8/26/2015 17:47','South Van Ness at Market',66,'8/26/2015 18:01','San Francisco Caltrain 2 (330 Townsend)',69,359,'Subscriber',94403); +INSERT INTO "trip" VALUES(906858,794,'8/26/2015 17:47','Embarcadero at Folsom',51,'8/26/2015 18:01','San Francisco Caltrain (Townsend at 4th)',70,553,'Subscriber',94310); +INSERT INTO "trip" VALUES(906859,289,'8/26/2015 17:47','Castro Street and El Camino Real',32,'8/26/2015 17:52','Mountain View Caltrain Station',28,93,'Subscriber',94118); +INSERT INTO "trip" VALUES(906862,421,'8/26/2015 17:48','Paseo de San Antonio',7,'8/26/2015 17:55','San Jose Diridon Caltrain Station',2,65,'Subscriber',94110); +INSERT INTO "trip" VALUES(906863,1051,'8/26/2015 17:48','South Van Ness at Market',66,'8/26/2015 18:05','Embarcadero at Folsom',51,420,'Subscriber',94708); +INSERT INTO "trip" VALUES(906866,1143,'8/26/2015 17:49','Embarcadero at Sansome',60,'8/26/2015 18:08','South Van Ness at Market',66,459,'Subscriber',94102); +INSERT INTO "trip" VALUES(906869,578,'8/26/2015 17:50','2nd at Townsend',61,'8/26/2015 17:59','Harry Bridges Plaza (Ferry Building)',50,448,'Customer',94402); +INSERT INTO "trip" VALUES(906870,196,'8/26/2015 17:50','Howard at 2nd',63,'8/26/2015 17:53','Yerba Buena Center of the Arts (3rd @ Howard)',68,352,'Subscriber',94108); +INSERT INTO "trip" VALUES(906871,443,'8/26/2015 17:50','Mechanics Plaza (Market at Battery)',75,'8/26/2015 17:58','Embarcadero at Bryant',54,614,'Subscriber',94105); +INSERT INTO "trip" VALUES(906874,193,'8/26/2015 17:51','2nd at Folsom',62,'8/26/2015 17:54','Market at Sansome',77,289,'Subscriber',94117); +INSERT INTO "trip" VALUES(906875,413,'8/26/2015 17:51','Embarcadero at Sansome',60,'8/26/2015 17:58','Steuart at Market',74,458,'Subscriber',94521); +INSERT INTO "trip" VALUES(906878,588,'8/26/2015 17:52','Harry Bridges Plaza (Ferry Building)',50,'8/26/2015 18:02','2nd at Townsend',61,355,'Subscriber',94111); +INSERT INTO "trip" VALUES(906879,371,'8/26/2015 17:52','Howard at 2nd',63,'8/26/2015 17:59','2nd at Townsend',61,549,'Subscriber',94618); +INSERT INTO "trip" VALUES(906880,194,'8/26/2015 17:53','Mountain View City Hall',27,'8/26/2015 17:56','Mountain View Caltrain Station',28,263,'Subscriber',94107); +INSERT INTO "trip" VALUES(906881,647,'8/26/2015 17:53','Townsend at 7th',65,'8/26/2015 18:04','South Van Ness at Market',66,383,'Subscriber',94131); +INSERT INTO "trip" VALUES(906882,394,'8/26/2015 17:53','Steuart at Market',74,'8/26/2015 18:00','Embarcadero at Sansome',60,300,'Customer','nil'); +INSERT INTO "trip" VALUES(906885,940,'8/26/2015 17:51','South Van Ness at Market',66,'8/26/2015 18:06','San Francisco Caltrain 2 (330 Townsend)',69,560,'Subscriber',94611); +INSERT INTO "trip" VALUES(906886,797,'8/26/2015 17:52','South Van Ness at Market',66,'8/26/2015 18:05','San Francisco Caltrain 2 (330 Townsend)',69,632,'Subscriber',94085); +INSERT INTO "trip" VALUES(906887,496,'8/26/2015 17:54','Townsend at 7th',65,'8/26/2015 18:02','Civic Center BART (7th at Market)',72,407,'Subscriber',94518); +INSERT INTO "trip" VALUES(906888,429,'8/26/2015 17:54','Market at Sansome',77,'8/26/2015 18:01','Grant Avenue at Columbus Avenue',73,461,'Subscriber',94133); +INSERT INTO "trip" VALUES(906889,381,'8/26/2015 17:54','Powell Street BART',39,'8/26/2015 18:01','Market at 10th',67,602,'Subscriber',94102); +INSERT INTO "trip" VALUES(906893,246,'8/26/2015 17:55','Broadway St at Battery St',82,'8/26/2015 17:59','Steuart at Market',74,494,'Subscriber',94702); +INSERT INTO "trip" VALUES(906894,731,'8/26/2015 17:55','Broadway St at Battery St',82,'8/26/2015 18:07','2nd at Townsend',61,878,'Subscriber',95111); +INSERT INTO "trip" VALUES(906895,408,'8/26/2015 17:55','Grant Avenue at Columbus Avenue',73,'8/26/2015 18:02','Market at Sansome',77,284,'Subscriber',94133); +INSERT INTO "trip" VALUES(906897,739,'8/26/2015 17:55','Temporary Transbay Terminal (Howard at Beale)',55,'8/26/2015 18:08','San Francisco Caltrain 2 (330 Townsend)',69,619,'Subscriber',94102); +INSERT INTO "trip" VALUES(906898,388,'8/26/2015 17:55','2nd at Folsom',62,'8/26/2015 18:02','San Francisco Caltrain (Townsend at 4th)',70,387,'Subscriber',94305); +INSERT INTO "trip" VALUES(906902,1158,'8/26/2015 17:56','Clay at Battery',41,'8/26/2015 18:15','San Francisco Caltrain 2 (330 Townsend)',69,607,'Subscriber',94158); +INSERT INTO "trip" VALUES(906905,199,'8/26/2015 17:56','Broadway St at Battery St',82,'8/26/2015 18:00','Beale at Market',56,502,'Subscriber',94114); +INSERT INTO "trip" VALUES(906906,693,'8/26/2015 17:57','Market at Sansome',77,'8/26/2015 18:08','Market at 10th',67,335,'Subscriber',94117); +INSERT INTO "trip" VALUES(906907,487,'8/26/2015 17:57','Market at Sansome',77,'8/26/2015 18:05','San Francisco Caltrain (Townsend at 4th)',70,289,'Subscriber',95134); +INSERT INTO "trip" VALUES(906908,346,'8/26/2015 17:57','Steuart at Market',74,'8/26/2015 18:03','Embarcadero at Bryant',54,275,'Subscriber',94105); +INSERT INTO "trip" VALUES(906910,200,'8/26/2015 17:57','Market at Sansome',77,'8/26/2015 18:00','Temporary Transbay Terminal (Howard at Beale)',55,509,'Subscriber',94618); +INSERT INTO "trip" VALUES(906912,892,'8/26/2015 17:58','Townsend at 7th',65,'8/26/2015 18:12','Spear at Folsom',49,283,'Subscriber',94127); +INSERT INTO "trip" VALUES(906914,141,'8/26/2015 17:58','Temporary Transbay Terminal (Howard at Beale)',55,'8/26/2015 18:00','Beale at Market',56,29,'Subscriber',94010); +INSERT INTO "trip" VALUES(906918,605,'8/26/2015 17:59','Post at Kearny',47,'8/26/2015 18:09','Embarcadero at Bryant',54,496,'Subscriber',94920); +INSERT INTO "trip" VALUES(906919,358,'8/26/2015 17:59','Santa Clara at Almaden',4,'8/26/2015 18:05','San Jose Diridon Caltrain Station',2,702,'Subscriber',94158); +INSERT INTO "trip" VALUES(906921,330,'8/26/2015 17:59','2nd at Folsom',62,'8/26/2015 18:05','San Francisco Caltrain 2 (330 Townsend)',69,557,'Subscriber',94002); +INSERT INTO "trip" VALUES(906922,621,'8/26/2015 17:59','Market at 10th',67,'8/26/2015 18:10','San Francisco Caltrain 2 (330 Townsend)',69,382,'Subscriber',95120); +INSERT INTO "trip" VALUES(906923,555,'8/26/2015 18:00','2nd at Folsom',62,'8/26/2015 18:09','Embarcadero at Sansome',60,69,'Subscriber',94133); +INSERT INTO "trip" VALUES(906926,365,'8/26/2015 18:00','Broadway St at Battery St',82,'8/26/2015 18:06','Temporary Transbay Terminal (Howard at Beale)',55,336,'Subscriber',94610); +INSERT INTO "trip" VALUES(906927,475,'8/26/2015 18:00','2nd at South Park',64,'8/26/2015 18:08','Market at Sansome',77,212,'Subscriber',94607); +INSERT INTO "trip" VALUES(906928,3656,'8/26/2015 18:01','Embarcadero at Sansome',60,'8/26/2015 19:01','2nd at South Park',64,353,'Subscriber',94122); +INSERT INTO "trip" VALUES(906929,964,'8/26/2015 18:00','Embarcadero at Sansome',60,'8/26/2015 18:16','San Francisco Caltrain 2 (330 Townsend)',69,487,'Subscriber',94103); +INSERT INTO "trip" VALUES(906930,754,'8/26/2015 18:01','2nd at Folsom',62,'8/26/2015 18:13','2nd at Townsend',61,453,'Customer',10128); +INSERT INTO "trip" VALUES(906931,745,'8/26/2015 18:01','Broadway St at Battery St',82,'8/26/2015 18:13','2nd at South Park',64,292,'Subscriber',94111); +INSERT INTO "trip" VALUES(906932,554,'8/26/2015 18:01','Market at 4th',76,'8/26/2015 18:10','Clay at Battery',41,877,'Customer',94107); +INSERT INTO "trip" VALUES(906933,524,'8/26/2015 18:01','Embarcadero at Sansome',60,'8/26/2015 18:10','Embarcadero at Folsom',51,587,'Subscriber',94124); +INSERT INTO "trip" VALUES(906934,340,'8/26/2015 18:01','2nd at Folsom',62,'8/26/2015 18:07','Harry Bridges Plaza (Ferry Building)',50,429,'Subscriber',94949); +INSERT INTO "trip" VALUES(906936,461,'8/26/2015 18:02','Commercial at Montgomery',45,'8/26/2015 18:10','Temporary Transbay Terminal (Howard at Beale)',55,620,'Subscriber',94530); +INSERT INTO "trip" VALUES(906937,682,'8/26/2015 18:02','Steuart at Market',74,'8/26/2015 18:14','San Francisco Caltrain (Townsend at 4th)',70,634,'Subscriber',94010); +INSERT INTO "trip" VALUES(906938,1027,'8/26/2015 18:03','Beale at Market',56,'8/26/2015 18:20','Market at 10th',67,372,'Subscriber',94103); +INSERT INTO "trip" VALUES(906939,766,'8/26/2015 18:03','Temporary Transbay Terminal (Howard at Beale)',55,'8/26/2015 18:16','San Francisco Caltrain (Townsend at 4th)',70,271,'Subscriber',94030); +INSERT INTO "trip" VALUES(906940,469,'8/26/2015 18:03','Howard at 2nd',63,'8/26/2015 18:11','San Francisco Caltrain 2 (330 Townsend)',69,439,'Subscriber',94041); +INSERT INTO "trip" VALUES(906941,751,'8/26/2015 18:04','San Francisco Caltrain (Townsend at 4th)',70,'8/26/2015 18:16','Harry Bridges Plaza (Ferry Building)',50,608,'Subscriber',94930); +INSERT INTO "trip" VALUES(906942,1043,'8/26/2015 18:04','Davis at Jackson',42,'8/26/2015 18:21','San Francisco Caltrain 2 (330 Townsend)',69,397,'Subscriber',94086); +INSERT INTO "trip" VALUES(906943,817,'8/26/2015 18:04','Embarcadero at Sansome',60,'8/26/2015 18:18','2nd at Folsom',62,677,'Subscriber',94111); +INSERT INTO "trip" VALUES(906944,221,'8/26/2015 18:05','Townsend at 7th',65,'8/26/2015 18:08','San Francisco Caltrain 2 (330 Townsend)',69,562,'Subscriber',94043); +INSERT INTO "trip" VALUES(906945,248,'8/26/2015 18:05','Yerba Buena Center of the Arts (3rd @ Howard)',68,'8/26/2015 18:09','San Francisco Caltrain 2 (330 Townsend)',69,417,'Subscriber',94041); +INSERT INTO "trip" VALUES(906946,762,'8/26/2015 18:05','2nd at Townsend',61,'8/26/2015 18:18','Harry Bridges Plaza (Ferry Building)',50,361,'Subscriber',94960); +INSERT INTO "trip" VALUES(906947,798,'8/26/2015 18:05','Steuart at Market',74,'8/26/2015 18:19','San Francisco Caltrain 2 (330 Townsend)',69,507,'Subscriber',94061); +INSERT INTO "trip" VALUES(906948,459,'8/26/2015 18:06','2nd at South Park',64,'8/26/2015 18:13','Temporary Transbay Terminal (Howard at Beale)',55,555,'Subscriber',94610); +INSERT INTO "trip" VALUES(906949,898,'8/26/2015 18:07','Harry Bridges Plaza (Ferry Building)',50,'8/26/2015 18:22','Townsend at 7th',65,282,'Subscriber',94107); +INSERT INTO "trip" VALUES(906950,659,'8/26/2015 18:07','Civic Center BART (7th at Market)',72,'8/26/2015 18:18','Steuart at Market',74,343,'Subscriber',94608); +INSERT INTO "trip" VALUES(906951,519,'8/26/2015 18:07','Spear at Folsom',49,'8/26/2015 18:16','Broadway St at Battery St',82,540,'Subscriber',94133); +INSERT INTO "trip" VALUES(906952,331,'8/26/2015 18:07','2nd at South Park',64,'8/26/2015 18:12','Market at Sansome',77,314,'Subscriber',94587); +INSERT INTO "trip" VALUES(906953,326,'8/26/2015 18:07','5th at Howard',57,'8/26/2015 18:13','San Francisco Caltrain 2 (330 Townsend)',69,362,'Subscriber',95050); +INSERT INTO "trip" VALUES(906954,540,'8/26/2015 18:07','Powell Street BART',39,'8/26/2015 18:16','San Francisco Caltrain 2 (330 Townsend)',69,578,'Subscriber',94403); +INSERT INTO "trip" VALUES(906955,667,'8/26/2015 18:04','2nd at Townsend',61,'8/26/2015 18:15','Davis at Jackson',42,370,'Subscriber',94111); +INSERT INTO "trip" VALUES(906956,339,'8/26/2015 18:08','Mountain View Caltrain Station',28,'8/26/2015 18:14','Castro Street and El Camino Real',32,194,'Subscriber',94022); +INSERT INTO "trip" VALUES(906957,361,'8/26/2015 18:08','Mountain View Caltrain Station',28,'8/26/2015 18:14','Evelyn Park and Ride',30,13,'Subscriber',94087); +INSERT INTO "trip" VALUES(906958,198,'8/26/2015 18:08','Redwood City Caltrain Station',22,'8/26/2015 18:12','Franklin at Maple',21,655,'Subscriber',94061); +INSERT INTO "trip" VALUES(906959,300,'8/26/2015 18:09','Howard at 2nd',63,'8/26/2015 18:14','Harry Bridges Plaza (Ferry Building)',50,267,'Subscriber',94110); +INSERT INTO "trip" VALUES(906960,1314,'8/26/2015 18:09','Townsend at 7th',65,'8/26/2015 18:31','Harry Bridges Plaza (Ferry Building)',50,328,'Subscriber',98033); +INSERT INTO "trip" VALUES(906961,794,'8/26/2015 18:11','Commercial at Montgomery',45,'8/26/2015 18:24','San Francisco City Hall',58,468,'Subscriber',94065); +INSERT INTO "trip" VALUES(906962,241,'8/26/2015 18:11','Broadway St at Battery St',82,'8/26/2015 18:15','Beale at Market',56,544,'Subscriber',94618); +INSERT INTO "trip" VALUES(906963,790,'8/26/2015 18:11','Embarcadero at Sansome',60,'8/26/2015 18:25','2nd at Townsend',61,69,'Subscriber',94111); +INSERT INTO "trip" VALUES(906964,410,'8/26/2015 18:12','2nd at South Park',64,'8/26/2015 18:19','Harry Bridges Plaza (Ferry Building)',50,604,'Subscriber',94939); +INSERT INTO "trip" VALUES(906965,267,'8/26/2015 18:12','Embarcadero at Sansome',60,'8/26/2015 18:16','Steuart at Market',74,524,'Subscriber',94611); +INSERT INTO "trip" VALUES(906966,582,'8/26/2015 18:12','San Francisco Caltrain 2 (330 Townsend)',69,'8/26/2015 18:22','Harry Bridges Plaza (Ferry Building)',50,325,'Subscriber',94591); +INSERT INTO "trip" VALUES(906967,255,'8/26/2015 18:12','Temporary Transbay Terminal (Howard at Beale)',55,'8/26/2015 18:16','Harry Bridges Plaza (Ferry Building)',50,583,'Subscriber',94115); +INSERT INTO "trip" VALUES(906968,940,'8/26/2015 18:13','San Francisco Caltrain (Townsend at 4th)',70,'8/26/2015 18:28','Davis at Jackson',42,371,'Subscriber',94111); +INSERT INTO "trip" VALUES(906969,390,'8/26/2015 18:13','Broadway St at Battery St',82,'8/26/2015 18:19','Temporary Transbay Terminal (Howard at Beale)',55,470,'Subscriber',94602); +INSERT INTO "trip" VALUES(906970,241,'8/26/2015 18:13','Santa Clara at Almaden',4,'8/26/2015 18:17','San Jose Diridon Caltrain Station',2,14,'Subscriber',94158); +INSERT INTO "trip" VALUES(906971,314,'8/26/2015 18:14','Beale at Market',56,'8/26/2015 18:19','Harry Bridges Plaza (Ferry Building)',50,636,'Subscriber',94109); +INSERT INTO "trip" VALUES(906974,1186,'8/26/2015 18:14','Broadway St at Battery St',82,'8/26/2015 18:34','San Francisco Caltrain 2 (330 Townsend)',69,268,'Subscriber',95130); +INSERT INTO "trip" VALUES(906975,273,'8/26/2015 18:14','San Francisco Caltrain (Townsend at 4th)',70,'8/26/2015 18:19','Townsend at 7th',65,289,'Subscriber',94109); +INSERT INTO "trip" VALUES(906976,618,'8/26/2015 18:14','2nd at Townsend',61,'8/26/2015 18:25','Steuart at Market',74,878,'Subscriber',94612); +INSERT INTO "trip" VALUES(906977,865,'8/26/2015 18:14','Harry Bridges Plaza (Ferry Building)',50,'8/26/2015 18:29','2nd at Townsend',61,611,'Subscriber',94107); +INSERT INTO "trip" VALUES(906978,412,'8/26/2015 18:15','2nd at Townsend',61,'8/26/2015 18:22','Harry Bridges Plaza (Ferry Building)',50,549,'Subscriber',95401); +INSERT INTO "trip" VALUES(906979,549,'8/26/2015 18:15','Market at Sansome',77,'8/26/2015 18:24','Embarcadero at Sansome',60,314,'Subscriber',94133); +INSERT INTO "trip" VALUES(906980,137,'8/26/2015 18:15','Beale at Market',56,'8/26/2015 18:18','Temporary Transbay Terminal (Howard at Beale)',55,502,'Subscriber',94111); +INSERT INTO "trip" VALUES(906981,307,'8/26/2015 18:15','Howard at 2nd',63,'8/26/2015 18:20','2nd at South Park',64,457,'Subscriber',94105); +INSERT INTO "trip" VALUES(906982,332,'8/26/2015 18:16','Steuart at Market',74,'8/26/2015 18:21','Embarcadero at Sansome',60,472,'Subscriber',94133); +INSERT INTO "trip" VALUES(906983,209,'8/26/2015 18:16','Steuart at Market',74,'8/26/2015 18:19','Harry Bridges Plaza (Ferry Building)',50,331,'Subscriber',94109); +INSERT INTO "trip" VALUES(906984,1562,'8/26/2015 18:16','Broadway St at Battery St',82,'8/26/2015 18:42','2nd at Townsend',61,540,'Subscriber',95129); +INSERT INTO "trip" VALUES(906985,991,'8/26/2015 18:17','Market at 10th',67,'8/26/2015 18:33','San Francisco Caltrain (Townsend at 4th)',70,33,'Subscriber',94025); +INSERT INTO "trip" VALUES(906986,805,'8/26/2015 18:17','Harry Bridges Plaza (Ferry Building)',50,'8/26/2015 18:31','5th at Howard',57,421,'Subscriber',94107); +INSERT INTO "trip" VALUES(906987,261,'8/26/2015 18:17','Howard at 2nd',63,'8/26/2015 18:22','Steuart at Market',74,442,'Subscriber',94973); +INSERT INTO "trip" VALUES(906988,1201,'8/26/2015 18:18','Market at 10th',67,'8/26/2015 18:38','San Francisco Caltrain 2 (330 Townsend)',69,503,'Subscriber',94061); +INSERT INTO "trip" VALUES(906989,1055,'8/26/2015 18:18','Embarcadero at Bryant',54,'8/26/2015 18:35','San Francisco Caltrain 2 (330 Townsend)',69,496,'Subscriber',94087); +INSERT INTO "trip" VALUES(906990,299,'8/26/2015 18:18','Steuart at Market',74,'8/26/2015 18:23','Howard at 2nd',63,527,'Subscriber',94107); +INSERT INTO "trip" VALUES(906993,545,'8/26/2015 18:18','Powell Street BART',39,'8/26/2015 18:27','Temporary Transbay Terminal (Howard at Beale)',55,415,'Subscriber',94602); +INSERT INTO "trip" VALUES(906994,1450,'8/26/2015 18:18','Davis at Jackson',42,'8/26/2015 18:42','2nd at Townsend',61,370,'Subscriber',94065); +INSERT INTO "trip" VALUES(906995,358,'8/26/2015 18:19','Yerba Buena Center of the Arts (3rd @ Howard)',68,'8/26/2015 18:25','Powell Street BART',39,375,'Subscriber',94804); +INSERT INTO "trip" VALUES(906996,390,'8/26/2015 18:20','Townsend at 7th',65,'8/26/2015 18:26','San Francisco Caltrain (Townsend at 4th)',70,289,'Subscriber',94107); +INSERT INTO "trip" VALUES(906997,279,'8/26/2015 18:20','Market at 4th',76,'8/26/2015 18:25','Temporary Transbay Terminal (Howard at Beale)',55,538,'Subscriber',94501); +INSERT INTO "trip" VALUES(906998,744,'8/26/2015 18:20','Embarcadero at Vallejo',48,'8/26/2015 18:33','2nd at Townsend',61,517,'Subscriber',94111); +INSERT INTO "trip" VALUES(906999,336,'8/26/2015 18:20','South Van Ness at Market',66,'8/26/2015 18:26','Golden Gate at Polk',59,459,'Subscriber',94952); +INSERT INTO "trip" VALUES(907000,406,'8/26/2015 18:21','Powell Street BART',39,'8/26/2015 18:27','Market at 10th',67,419,'Subscriber',94102); +INSERT INTO "trip" VALUES(907001,578,'8/26/2015 18:21','5th at Howard',57,'8/26/2015 18:30','2nd at Townsend',61,618,'Subscriber',94925); +INSERT INTO "trip" VALUES(907002,13947,'8/26/2015 18:20','Harry Bridges Plaza (Ferry Building)',50,'8/26/2015 22:13','2nd at Townsend',61,608,'Customer','nil'); +INSERT INTO "trip" VALUES(907003,278,'8/26/2015 18:21','Market at 10th',67,'8/26/2015 18:26','Powell Street BART',39,506,'Subscriber',94709); +INSERT INTO "trip" VALUES(907004,462,'8/26/2015 18:22','Washington at Kearny',46,'8/26/2015 18:29','Temporary Transbay Terminal (Howard at Beale)',55,525,'Subscriber',94608); +INSERT INTO "trip" VALUES(907006,308,'8/26/2015 18:22','2nd at South Park',64,'8/26/2015 18:27','Market at Sansome',77,109,'Subscriber',94618); +INSERT INTO "trip" VALUES(907007,748,'8/26/2015 18:22','Embarcadero at Folsom',51,'8/26/2015 18:34','Post at Kearny',47,420,'Subscriber',94708); +INSERT INTO "trip" VALUES(907008,459,'8/26/2015 18:23','Steuart at Market',74,'8/26/2015 18:31','Grant Avenue at Columbus Avenue',73,494,'Subscriber',94133); +INSERT INTO "trip" VALUES(907009,713,'8/26/2015 18:24','Steuart at Market',74,'8/26/2015 18:36','2nd at Townsend',61,442,'Subscriber',94107); +INSERT INTO "trip" VALUES(907010,942,'8/26/2015 18:25','Steuart at Market',74,'8/26/2015 18:40','2nd at South Park',64,408,'Subscriber',94107); +INSERT INTO "trip" VALUES(907011,969,'8/26/2015 18:25','2nd at Townsend',61,'8/26/2015 18:41','Embarcadero at Vallejo',48,453,'Customer',10128); +INSERT INTO "trip" VALUES(907012,335,'8/26/2015 18:26','Temporary Transbay Terminal (Howard at Beale)',55,'8/26/2015 18:31','Davis at Jackson',42,509,'Subscriber',94121); +INSERT INTO "trip" VALUES(907013,545,'8/26/2015 18:26','San Francisco Caltrain (Townsend at 4th)',70,'8/26/2015 18:35','Embarcadero at Bryant',54,309,'Subscriber',94105); +INSERT INTO "trip" VALUES(907015,610,'8/26/2015 18:27','Embarcadero at Folsom',51,'8/26/2015 18:37','Commercial at Montgomery',45,187,'Subscriber',94108); +INSERT INTO "trip" VALUES(907016,361,'8/26/2015 18:29','Spear at Folsom',49,'8/26/2015 18:35','2nd at Townsend',61,269,'Subscriber',94107); +INSERT INTO "trip" VALUES(907018,760,'8/26/2015 18:31','San Jose Diridon Caltrain Station',2,'8/26/2015 18:44','SJSU - San Salvador at 9th',16,488,'Subscriber',95112); +INSERT INTO "trip" VALUES(907019,281,'8/26/2015 18:32','2nd at Folsom',62,'8/26/2015 18:37','2nd at South Park',64,677,'Subscriber',94103); +INSERT INTO "trip" VALUES(907020,916,'8/26/2015 18:32','Embarcadero at Vallejo',48,'8/26/2015 18:48','San Francisco Caltrain (Townsend at 4th)',70,448,'Subscriber',94105); +INSERT INTO "trip" VALUES(907021,536,'8/26/2015 18:33','San Francisco Caltrain (Townsend at 4th)',70,'8/26/2015 18:42','Temporary Transbay Terminal (Howard at Beale)',55,431,'Subscriber',94707); +INSERT INTO "trip" VALUES(907022,251,'8/26/2015 18:33','San Francisco Caltrain 2 (330 Townsend)',69,'8/26/2015 18:38','Townsend at 7th',65,418,'Subscriber',94610); +INSERT INTO "trip" VALUES(907023,457,'8/26/2015 18:34','Market at 10th',67,'8/26/2015 18:42','Market at Sansome',77,332,'Subscriber',94103); +INSERT INTO "trip" VALUES(907024,397,'8/26/2015 18:35','San Francisco Caltrain 2 (330 Townsend)',69,'8/26/2015 18:41','5th at Howard',57,607,'Subscriber',94103); +INSERT INTO "trip" VALUES(907025,436,'8/26/2015 18:35','Broadway St at Battery St',82,'8/26/2015 18:42','Temporary Transbay Terminal (Howard at Beale)',55,621,'Subscriber',94608); +INSERT INTO "trip" VALUES(907026,5805,'8/26/2015 18:35','Embarcadero at Vallejo',48,'8/26/2015 20:12','Harry Bridges Plaza (Ferry Building)',50,501,'Customer',30160032); +INSERT INTO "trip" VALUES(907027,580,'8/26/2015 18:35','Steuart at Market',74,'8/26/2015 18:45','Powell Street BART',39,423,'Subscriber',94105); +INSERT INTO "trip" VALUES(907028,5796,'8/26/2015 18:36','Embarcadero at Vallejo',48,'8/26/2015 20:12','Harry Bridges Plaza (Ferry Building)',50,318,'Customer',30160032); +INSERT INTO "trip" VALUES(907029,288,'8/26/2015 18:37','San Jose Diridon Caltrain Station',2,'8/26/2015 18:42','Santa Clara at Almaden',4,231,'Subscriber',95110); +INSERT INTO "trip" VALUES(907030,329,'8/26/2015 18:37','San Francisco Caltrain 2 (330 Townsend)',69,'8/26/2015 18:43','5th at Howard',57,417,'Subscriber',94103); +INSERT INTO "trip" VALUES(907031,10861,'8/26/2015 18:38','Embarcadero at Sansome',60,'8/26/2015 21:39','Embarcadero at Sansome',60,286,'Customer',94087); +INSERT INTO "trip" VALUES(907032,615,'8/26/2015 18:38','Harry Bridges Plaza (Ferry Building)',50,'8/26/2015 18:48','2nd at Townsend',61,429,'Customer','nil'); +INSERT INTO "trip" VALUES(907033,566,'8/26/2015 18:38','San Jose Diridon Caltrain Station',2,'8/26/2015 18:48','Paseo de San Antonio',7,643,'Subscriber',95113); +INSERT INTO "trip" VALUES(907034,579,'8/26/2015 18:39','Market at 10th',67,'8/26/2015 18:48','San Francisco Caltrain 2 (330 Townsend)',69,419,'Subscriber',94065); +INSERT INTO "trip" VALUES(907035,10775,'8/26/2015 18:39','Embarcadero at Sansome',60,'8/26/2015 21:38','Embarcadero at Sansome',60,472,'Customer',94087); +INSERT INTO "trip" VALUES(907036,237,'8/26/2015 18:39','Castro Street and El Camino Real',32,'8/26/2015 18:43','Mountain View Caltrain Station',28,194,'Subscriber',94401); +INSERT INTO "trip" VALUES(907037,547,'8/26/2015 18:40','Beale at Market',56,'8/26/2015 18:49','Powell Street BART',39,29,'Subscriber',94577); +INSERT INTO "trip" VALUES(907038,199,'8/26/2015 18:37','Cowper at University',37,'8/26/2015 18:40','Palo Alto Caltrain Station',34,649,'Subscriber',94102); +INSERT INTO "trip" VALUES(907039,1080,'8/26/2015 18:41','Davis at Jackson',42,'8/26/2015 18:59','Grant Avenue at Columbus Avenue',73,659,'Subscriber',94133); +INSERT INTO "trip" VALUES(907040,598,'8/26/2015 18:41','Embarcadero at Folsom',51,'8/26/2015 18:51','San Francisco Caltrain (Townsend at 4th)',70,412,'Subscriber',94403); +INSERT INTO "trip" VALUES(907041,441,'8/26/2015 18:42','2nd at South Park',64,'8/26/2015 18:50','Harry Bridges Plaza (Ferry Building)',50,457,'Subscriber',94960); +INSERT INTO "trip" VALUES(907042,524,'8/26/2015 18:38','Spear at Folsom',49,'8/26/2015 18:47','San Francisco Caltrain (Townsend at 4th)',70,428,'Subscriber',94105); +INSERT INTO "trip" VALUES(907043,663,'8/26/2015 18:43','Beale at Market',56,'8/26/2015 18:54','Golden Gate at Polk',59,544,'Subscriber',94109); +INSERT INTO "trip" VALUES(907048,418,'8/26/2015 18:44','Embarcadero at Vallejo',48,'8/26/2015 18:51','Grant Avenue at Columbus Avenue',73,453,'Customer',10128); +INSERT INTO "trip" VALUES(907051,468,'8/26/2015 18:44','Townsend at 7th',65,'8/26/2015 18:52','2nd at Townsend',61,282,'Subscriber',94107); +INSERT INTO "trip" VALUES(907054,371,'8/26/2015 18:45','Harry Bridges Plaza (Ferry Building)',50,'8/26/2015 18:51','Embarcadero at Bryant',54,214,'Subscriber',94105); +INSERT INTO "trip" VALUES(907056,1031,'8/26/2015 18:45','Temporary Transbay Terminal (Howard at Beale)',55,'8/26/2015 19:03','South Van Ness at Market',66,620,'Subscriber',94102); +INSERT INTO "trip" VALUES(907057,453,'8/26/2015 18:46','Embarcadero at Sansome',60,'8/26/2015 18:53','Steuart at Market',74,314,'Subscriber',94305); +INSERT INTO "trip" VALUES(907058,321,'8/26/2015 18:46','Howard at 2nd',63,'8/26/2015 18:51','Steuart at Market',74,527,'Customer',94124); +INSERT INTO "trip" VALUES(907059,109,'8/26/2015 18:46','Broadway St at Battery St',82,'8/26/2015 18:48','Clay at Battery',41,425,'Subscriber',94610); +INSERT INTO "trip" VALUES(907063,1197,'8/26/2015 18:46','Embarcadero at Sansome',60,'8/26/2015 19:06','Golden Gate at Polk',59,313,'Subscriber',94109); +INSERT INTO "trip" VALUES(907064,406,'8/26/2015 18:46','Embarcadero at Sansome',60,'8/26/2015 18:53','Steuart at Market',74,300,'Subscriber',94114); +INSERT INTO "trip" VALUES(907069,352,'8/26/2015 18:48','Embarcadero at Sansome',60,'8/26/2015 18:54','Steuart at Market',74,400,'Subscriber',94609); +INSERT INTO "trip" VALUES(907070,209,'8/26/2015 18:48','Embarcadero at Bryant',54,'8/26/2015 18:51','2nd at Townsend',61,384,'Subscriber',94920); +INSERT INTO "trip" VALUES(907071,386,'8/26/2015 18:48','Market at Sansome',77,'8/26/2015 18:55','2nd at South Park',64,399,'Subscriber',94602); +INSERT INTO "trip" VALUES(907072,1436,'8/26/2015 18:49','Townsend at 7th',65,'8/26/2015 19:13','Commercial at Montgomery',45,418,'Customer',92606); +INSERT INTO "trip" VALUES(907073,838,'8/26/2015 18:49','Spear at Folsom',49,'8/26/2015 19:03','2nd at Townsend',61,358,'Customer',94941); +INSERT INTO "trip" VALUES(907074,1017,'8/26/2015 18:49','Spear at Folsom',49,'8/26/2015 19:06','2nd at South Park',64,537,'Customer',94941); +INSERT INTO "trip" VALUES(907075,289,'8/26/2015 18:50','San Jose Diridon Caltrain Station',2,'8/26/2015 18:55','Santa Clara at Almaden',4,712,'Subscriber',95110); +INSERT INTO "trip" VALUES(907076,606,'8/26/2015 18:50','Howard at 2nd',63,'8/26/2015 19:00','Civic Center BART (7th at Market)',72,567,'Subscriber',94103); +INSERT INTO "trip" VALUES(907077,602,'8/26/2015 18:52','Davis at Jackson',42,'8/26/2015 19:02','2nd at Townsend',61,371,'Subscriber',94111); +INSERT INTO "trip" VALUES(907078,340,'8/26/2015 18:52','San Francisco Caltrain (Townsend at 4th)',70,'8/26/2015 18:57','2nd at Townsend',61,329,'Subscriber',94105); +INSERT INTO "trip" VALUES(907079,539,'8/26/2015 18:52','Davis at Jackson',42,'8/26/2015 19:01','2nd at Townsend',61,509,'Subscriber',94111); +INSERT INTO "trip" VALUES(907080,392,'8/26/2015 18:53','San Antonio Caltrain Station',29,'8/26/2015 18:59','San Antonio Shopping Center',31,35,'Customer',94040); +INSERT INTO "trip" VALUES(907081,1491,'8/26/2015 18:53','Powell Street BART',39,'8/26/2015 19:18','South Van Ness at Market',66,375,'Customer',75209); +INSERT INTO "trip" VALUES(907082,500,'8/26/2015 18:53','San Pedro Square',6,'8/26/2015 19:02','Japantown',9,31,'Subscriber',95112); +INSERT INTO "trip" VALUES(907083,474,'8/26/2015 18:53','Powell at Post (Union Square)',71,'8/26/2015 19:01','Steuart at Market',74,390,'Subscriber',94066); +INSERT INTO "trip" VALUES(907084,1481,'8/26/2015 18:53','Powell Street BART',39,'8/26/2015 19:18','South Van Ness at Market',66,29,'Customer',75209); +INSERT INTO "trip" VALUES(907085,271,'8/26/2015 18:55','Mountain View Caltrain Station',28,'8/26/2015 19:00','Evelyn Park and Ride',30,251,'Subscriber',94041); +INSERT INTO "trip" VALUES(907086,551,'8/26/2015 18:55','Powell Street BART',39,'8/26/2015 19:05','Townsend at 7th',65,546,'Subscriber',94107); +INSERT INTO "trip" VALUES(907087,164,'8/26/2015 18:56','Clay at Battery',41,'8/26/2015 18:59','Broadway St at Battery St',82,877,'Subscriber',94610); +INSERT INTO "trip" VALUES(907088,631,'8/26/2015 19:00','Mountain View Caltrain Station',28,'8/26/2015 19:11','Rengstorff Avenue / California Street',33,22,'Subscriber',94040); +INSERT INTO "trip" VALUES(907090,1710,'8/26/2015 19:02','5th at Howard',57,'8/26/2015 19:30','Civic Center BART (7th at Market)',72,607,'Customer','nil'); +INSERT INTO "trip" VALUES(907091,219,'8/26/2015 19:03','Mountain View City Hall',27,'8/26/2015 19:07','Mountain View Caltrain Station',28,175,'Subscriber',94401); +INSERT INTO "trip" VALUES(907092,526,'8/26/2015 19:03','Yerba Buena Center of the Arts (3rd @ Howard)',68,'8/26/2015 19:12','Harry Bridges Plaza (Ferry Building)',50,443,'Subscriber',94590); +INSERT INTO "trip" VALUES(907095,809,'8/26/2015 19:05','Post at Kearny',47,'8/26/2015 19:19','2nd at South Park',64,388,'Subscriber',94107); +INSERT INTO "trip" VALUES(907096,290,'8/26/2015 19:06','2nd at Townsend',61,'8/26/2015 19:11','Spear at Folsom',49,478,'Subscriber',94111); +INSERT INTO "trip" VALUES(907099,1112,'8/26/2015 19:07','Embarcadero at Folsom',51,'8/26/2015 19:25','2nd at South Park',64,413,'Customer',94957); +INSERT INTO "trip" VALUES(907100,466,'8/26/2015 19:07','Powell Street BART',39,'8/26/2015 19:14','San Francisco Caltrain 2 (330 Townsend)',69,506,'Subscriber',94002); +INSERT INTO "trip" VALUES(907101,471,'8/26/2015 19:07','Powell at Post (Union Square)',71,'8/26/2015 19:15','San Francisco Caltrain (Townsend at 4th)',70,617,'Subscriber',94158); +INSERT INTO "trip" VALUES(907102,225,'8/26/2015 19:07','Redwood City Caltrain Station',22,'8/26/2015 19:11','Redwood City Medical Center',26,40,'Subscriber',94063); +INSERT INTO "trip" VALUES(907103,217,'8/26/2015 19:08','Broadway St at Battery St',82,'8/26/2015 19:11','Steuart at Market',74,288,'Subscriber',94111); +INSERT INTO "trip" VALUES(907104,809,'8/26/2015 19:10','Embarcadero at Folsom',51,'8/26/2015 19:23','2nd at Townsend',61,687,'Customer',94710); +INSERT INTO "trip" VALUES(907105,730,'8/26/2015 19:10','Santa Clara County Civic Center',80,'8/26/2015 19:23','San Pedro Square',6,127,'Subscriber',95110); +INSERT INTO "trip" VALUES(907106,311,'8/26/2015 19:10','San Francisco Caltrain (Townsend at 4th)',70,'8/26/2015 19:16','Townsend at 7th',65,111,'Subscriber',94107); +INSERT INTO "trip" VALUES(907107,508,'8/26/2015 19:11','San Francisco Caltrain (Townsend at 4th)',70,'8/26/2015 19:19','Powell Street BART',39,492,'Subscriber',94607); +INSERT INTO "trip" VALUES(907108,576,'8/26/2015 19:11','Embarcadero at Folsom',51,'8/26/2015 19:21','San Francisco Caltrain (Townsend at 4th)',70,592,'Subscriber',95014); +INSERT INTO "trip" VALUES(907109,1223,'8/26/2015 19:11','Market at 10th',67,'8/26/2015 19:32','San Francisco Caltrain 2 (330 Townsend)',69,602,'Customer',94115); +INSERT INTO "trip" VALUES(907110,224,'8/26/2015 19:11','Spear at Folsom',49,'8/26/2015 19:15','Steuart at Market',74,260,'Subscriber',94608); +INSERT INTO "trip" VALUES(907112,604,'8/26/2015 19:14','Steuart at Market',74,'8/26/2015 19:24','2nd at South Park',64,394,'Subscriber',94123); +INSERT INTO "trip" VALUES(907113,444,'8/26/2015 19:14','San Francisco Caltrain 2 (330 Townsend)',69,'8/26/2015 19:21','Powell Street BART',39,560,'Subscriber',94107); +INSERT INTO "trip" VALUES(907114,633,'8/26/2015 19:14','2nd at South Park',64,'8/26/2015 19:25','Davis at Jackson',42,292,'Subscriber',94133); +INSERT INTO "trip" VALUES(907115,551,'8/26/2015 19:14','Howard at 2nd',63,'8/26/2015 19:24','San Francisco Caltrain (Townsend at 4th)',70,67,'Subscriber',94117); +INSERT INTO "trip" VALUES(907116,914,'8/26/2015 19:15','Townsend at 7th',65,'8/26/2015 19:30','Temporary Transbay Terminal (Howard at Beale)',55,402,'Subscriber',94806); +INSERT INTO "trip" VALUES(907117,251,'8/26/2015 19:15','Post at Kearny',47,'8/26/2015 19:20','Harry Bridges Plaza (Ferry Building)',50,576,'Subscriber',94903); +INSERT INTO "trip" VALUES(907118,594,'8/26/2015 19:15','San Francisco Caltrain (Townsend at 4th)',70,'8/26/2015 19:25','Howard at 2nd',63,634,'Subscriber',94105); +INSERT INTO "trip" VALUES(907119,691,'8/26/2015 19:16','San Jose Diridon Caltrain Station',2,'8/26/2015 19:27','Japantown',9,213,'Subscriber',95112); +INSERT INTO "trip" VALUES(907120,695,'8/26/2015 19:16','Yerba Buena Center of the Arts (3rd @ Howard)',68,'8/26/2015 19:28','Townsend at 7th',65,352,'Subscriber',94107); +INSERT INTO "trip" VALUES(907121,1182,'8/26/2015 19:18','2nd at Townsend',61,'8/26/2015 19:37','Clay at Battery',41,611,'Subscriber',94133); +INSERT INTO "trip" VALUES(907122,222,'8/26/2015 19:18','Townsend at 7th',65,'8/26/2015 19:22','San Francisco Caltrain 2 (330 Townsend)',69,111,'Subscriber',94401); +INSERT INTO "trip" VALUES(907123,260,'8/26/2015 19:19','Civic Center BART (7th at Market)',72,'8/26/2015 19:23','Market at 10th',67,572,'Subscriber',94102); +INSERT INTO "trip" VALUES(907124,365,'8/26/2015 19:20','5th at Howard',57,'8/26/2015 19:26','San Francisco Caltrain 2 (330 Townsend)',69,158,'Subscriber',94402); +INSERT INTO "trip" VALUES(907125,13199,'8/26/2015 19:21','Broadway St at Battery St',82,'8/26/2015 23:01','Harry Bridges Plaza (Ferry Building)',50,391,'Customer',90031); +INSERT INTO "trip" VALUES(907126,883,'8/26/2015 19:21','South Van Ness at Market',66,'8/26/2015 19:36','Commercial at Montgomery',45,620,'Subscriber',94103); +INSERT INTO "trip" VALUES(907127,294,'8/26/2015 19:23','2nd at South Park',64,'8/26/2015 19:28','Market at Sansome',77,408,'Subscriber',94607); +INSERT INTO "trip" VALUES(907129,12982,'8/26/2015 19:25','Broadway St at Battery St',82,'8/26/2015 23:01','Harry Bridges Plaza (Ferry Building)',50,877,'Customer',90031); +INSERT INTO "trip" VALUES(907130,290,'8/26/2015 19:25','Powell Street BART',39,'8/26/2015 19:30','Market at 10th',67,493,'Subscriber',94109); +INSERT INTO "trip" VALUES(907131,311,'8/26/2015 19:26','Howard at 2nd',63,'8/26/2015 19:31','2nd at South Park',64,405,'Subscriber',94107); +INSERT INTO "trip" VALUES(907133,500,'8/26/2015 19:26','Embarcadero at Bryant',54,'8/26/2015 19:34','San Francisco Caltrain (Townsend at 4th)',70,275,'Customer',94403); +INSERT INTO "trip" VALUES(907134,269,'8/26/2015 19:26','Commercial at Montgomery',45,'8/26/2015 19:31','Yerba Buena Center of the Arts (3rd @ Howard)',68,418,'Subscriber',94107); +INSERT INTO "trip" VALUES(907135,189,'8/26/2015 19:27','Steuart at Market',74,'8/26/2015 19:30','Embarcadero at Folsom',51,878,'Subscriber',94111); +INSERT INTO "trip" VALUES(907136,120,'8/26/2015 19:28','Market at 10th',67,'8/26/2015 19:30','San Francisco City Hall',58,572,'Subscriber',94133); +INSERT INTO "trip" VALUES(907137,198,'8/26/2015 19:30','Market at Sansome',77,'8/26/2015 19:33','Temporary Transbay Terminal (Howard at Beale)',55,109,'Subscriber',94610); +INSERT INTO "trip" VALUES(907140,567,'8/26/2015 19:31','San Francisco Caltrain 2 (330 Townsend)',69,'8/26/2015 19:40','Market at 10th',67,266,'Subscriber',94102); +INSERT INTO "trip" VALUES(907141,181,'8/26/2015 19:31','San Francisco Caltrain 2 (330 Townsend)',69,'8/26/2015 19:34','2nd at Townsend',61,496,'Subscriber',94158); +INSERT INTO "trip" VALUES(907144,211,'8/26/2015 19:32','San Francisco Caltrain (Townsend at 4th)',70,'8/26/2015 19:35','2nd at Townsend',61,592,'Subscriber',94107); +INSERT INTO "trip" VALUES(907145,772,'8/26/2015 19:32','San Francisco Caltrain (Townsend at 4th)',70,'8/26/2015 19:45','Harry Bridges Plaza (Ferry Building)',50,67,'Subscriber',94111); +INSERT INTO "trip" VALUES(907146,535,'8/26/2015 19:33','Market at Sansome',77,'8/26/2015 19:42','San Francisco Caltrain 2 (330 Townsend)',69,363,'Subscriber',94577); +INSERT INTO "trip" VALUES(907148,334,'8/26/2015 19:33','San Francisco Caltrain (Townsend at 4th)',70,'8/26/2015 19:39','2nd at South Park',64,287,'Subscriber',94107); +INSERT INTO "trip" VALUES(907150,898,'8/26/2015 19:33','San Francisco Caltrain (Townsend at 4th)',70,'8/26/2015 19:48','South Van Ness at Market',66,342,'Subscriber',94102); +INSERT INTO "trip" VALUES(907151,708,'8/26/2015 19:33','SJSU - San Salvador at 9th',16,'8/26/2015 19:45','Japantown',9,658,'Subscriber',95112); +INSERT INTO "trip" VALUES(907152,279,'8/26/2015 19:34','2nd at South Park',64,'8/26/2015 19:38','Market at Sansome',77,399,'Subscriber',94705); +INSERT INTO "trip" VALUES(907153,353,'8/26/2015 19:34','Civic Center BART (7th at Market)',72,'8/26/2015 19:40','Market at 4th',76,594,'Customer','nil'); +INSERT INTO "trip" VALUES(907154,436,'8/26/2015 19:35','San Francisco Caltrain (Townsend at 4th)',70,'8/26/2015 19:42','Embarcadero at Bryant',54,96,'Subscriber',94105); +INSERT INTO "trip" VALUES(907156,1776,'8/26/2015 19:37','Market at 10th',67,'8/26/2015 20:07','Powell Street BART',39,493,'Subscriber',94107); +INSERT INTO "trip" VALUES(907157,869,'8/26/2015 19:38','2nd at Townsend',61,'8/26/2015 19:52','2nd at Townsend',61,592,'Subscriber',94107); +INSERT INTO "trip" VALUES(907158,801,'8/26/2015 19:38','South Van Ness at Market',66,'8/26/2015 19:51','Temporary Transbay Terminal (Howard at Beale)',55,445,'Subscriber',94611); +INSERT INTO "trip" VALUES(907159,619,'8/26/2015 19:39','5th at Howard',57,'8/26/2015 19:50','San Francisco City Hall',58,417,'Customer',11215); +INSERT INTO "trip" VALUES(907162,11932,'8/26/2015 19:42','Embarcadero at Vallejo',48,'8/26/2015 23:01','Harry Bridges Plaza (Ferry Building)',50,376,'Customer',90032); +INSERT INTO "trip" VALUES(907166,324,'8/26/2015 19:46','2nd at Folsom',62,'8/26/2015 19:51','Spear at Folsom',49,487,'Subscriber',94070); +INSERT INTO "trip" VALUES(907167,458,'8/26/2015 19:47','Harry Bridges Plaza (Ferry Building)',50,'8/26/2015 19:54','Embarcadero at Sansome',60,636,'Subscriber',94133); +INSERT INTO "trip" VALUES(907168,665,'8/26/2015 19:48','Townsend at 7th',65,'8/26/2015 19:59','Embarcadero at Bryant',54,352,'Subscriber',94103); +INSERT INTO "trip" VALUES(907170,330,'8/26/2015 19:50','Post at Kearny',47,'8/26/2015 19:55','5th at Howard',57,495,'Subscriber',94107); +INSERT INTO "trip" VALUES(907171,504,'8/26/2015 19:50','San Francisco Caltrain (Townsend at 4th)',70,'8/26/2015 19:58','Market at 4th',76,33,'Subscriber',95054); +INSERT INTO "trip" VALUES(907172,479,'8/26/2015 19:56','Spear at Folsom',49,'8/26/2015 20:04','2nd at South Park',64,487,'Subscriber',94070); +INSERT INTO "trip" VALUES(907173,272,'8/26/2015 19:57','Commercial at Montgomery',45,'8/26/2015 20:01','Grant Avenue at Columbus Avenue',73,620,'Subscriber',94133); +INSERT INTO "trip" VALUES(907174,480,'8/26/2015 19:58','Mountain View Caltrain Station',28,'8/26/2015 20:06','Evelyn Park and Ride',30,639,'Subscriber',94040); +INSERT INTO "trip" VALUES(907176,373,'8/26/2015 19:59','Embarcadero at Sansome',60,'8/26/2015 20:06','Steuart at Market',74,636,'Subscriber',94612); +INSERT INTO "trip" VALUES(907177,467,'8/26/2015 20:04','Spear at Folsom',49,'8/26/2015 20:12','Embarcadero at Sansome',60,507,'Customer',94119); +INSERT INTO "trip" VALUES(907178,758,'8/26/2015 20:06','San Francisco Caltrain 2 (330 Townsend)',69,'8/26/2015 20:18','Golden Gate at Polk',59,359,'Subscriber',94107); +INSERT INTO "trip" VALUES(907179,300,'8/26/2015 20:06','Post at Kearny',47,'8/26/2015 20:11','Powell Street BART',39,386,'Subscriber',94109); +INSERT INTO "trip" VALUES(907180,1006,'8/26/2015 20:06','San Francisco Caltrain (Townsend at 4th)',70,'8/26/2015 20:22','South Van Ness at Market',66,275,'Subscriber',94102); +INSERT INTO "trip" VALUES(907181,302,'8/26/2015 20:08','2nd at South Park',64,'8/26/2015 20:13','Market at Sansome',77,287,'Subscriber',94103); +INSERT INTO "trip" VALUES(907182,469,'8/26/2015 20:10','Davis at Jackson',42,'8/26/2015 20:17','Embarcadero at Sansome',60,292,'Subscriber',94133); +INSERT INTO "trip" VALUES(907183,623,'8/26/2015 20:10','San Francisco Caltrain 2 (330 Townsend)',69,'8/26/2015 20:20','Spear at Folsom',49,440,'Subscriber',94105); +INSERT INTO "trip" VALUES(907184,1994,'8/26/2015 20:10','Market at 4th',76,'8/26/2015 20:44','San Francisco Caltrain 2 (330 Townsend)',69,364,'Customer','nil'); +INSERT INTO "trip" VALUES(907185,329,'8/26/2015 20:16','Davis at Jackson',42,'8/26/2015 20:21','Embarcadero at Sansome',60,574,'Subscriber',94111); +INSERT INTO "trip" VALUES(907186,378,'8/26/2015 20:16','Grant Avenue at Columbus Avenue',73,'8/26/2015 20:23','Market at Sansome',77,511,'Subscriber',94549); +INSERT INTO "trip" VALUES(907187,418,'8/26/2015 20:18','Steuart at Market',74,'8/26/2015 20:25','2nd at Townsend',61,260,'Subscriber',94107); +INSERT INTO "trip" VALUES(907188,408,'8/26/2015 20:19','Civic Center BART (7th at Market)',72,'8/26/2015 20:26','Townsend at 7th',65,568,'Subscriber',94107); +INSERT INTO "trip" VALUES(907189,728,'8/26/2015 20:19','Harry Bridges Plaza (Ferry Building)',50,'8/26/2015 20:31','San Francisco Caltrain (Townsend at 4th)',70,328,'Subscriber',94403); +INSERT INTO "trip" VALUES(907190,397,'8/26/2015 20:19','Civic Center BART (7th at Market)',72,'8/26/2015 20:26','Townsend at 7th',65,607,'Subscriber',94107); +INSERT INTO "trip" VALUES(907191,400,'8/26/2015 20:21','MLK Library',11,'8/26/2015 20:28','San Pedro Square',6,676,'Subscriber',95113); +INSERT INTO "trip" VALUES(907192,310,'8/26/2015 20:24','Clay at Battery',41,'8/26/2015 20:29','Embarcadero at Sansome',60,611,'Subscriber',94133); +INSERT INTO "trip" VALUES(907193,498,'8/26/2015 20:25','2nd at Folsom',62,'8/26/2015 20:34','San Francisco Caltrain (Townsend at 4th)',70,268,'Subscriber',94403); +INSERT INTO "trip" VALUES(907194,180,'8/26/2015 20:26','San Pedro Square',6,'8/26/2015 20:29','St James Park',13,646,'Subscriber',95113); +INSERT INTO "trip" VALUES(907195,562,'8/26/2015 20:30','Washington at Kearny',46,'8/26/2015 20:40','Temporary Transbay Terminal (Howard at Beale)',55,392,'Subscriber',94705); +INSERT INTO "trip" VALUES(907197,246,'8/26/2015 20:32','Mountain View City Hall',27,'8/26/2015 20:36','Mountain View Caltrain Station',28,142,'Subscriber',94117); +INSERT INTO "trip" VALUES(907198,497,'8/26/2015 20:34','Powell at Post (Union Square)',71,'8/26/2015 20:42','Grant Avenue at Columbus Avenue',73,483,'Subscriber',94133); +INSERT INTO "trip" VALUES(907200,140,'8/26/2015 20:39','Embarcadero at Sansome',60,'8/26/2015 20:41','Embarcadero at Vallejo',48,56,'Subscriber',94111); +INSERT INTO "trip" VALUES(907202,231,'8/26/2015 20:40','Broadway St at Battery St',82,'8/26/2015 20:44','Mechanics Plaza (Market at Battery)',75,591,'Subscriber',94610); +INSERT INTO "trip" VALUES(907203,907,'8/26/2015 20:41','Powell Street BART',39,'8/26/2015 20:56','Grant Avenue at Columbus Avenue',73,351,'Subscriber',94133); +INSERT INTO "trip" VALUES(907205,282,'8/26/2015 20:42','Redwood City Caltrain Station',22,'8/26/2015 20:47','Redwood City Caltrain Station',22,216,'Customer',84058); +INSERT INTO "trip" VALUES(907206,267,'8/26/2015 20:42','Redwood City Caltrain Station',22,'8/26/2015 20:47','Redwood City Caltrain Station',22,671,'Customer',84058); +INSERT INTO "trip" VALUES(907208,188,'8/26/2015 20:52','Embarcadero at Vallejo',48,'8/26/2015 20:55','Steuart at Market',74,56,'Subscriber',94608); +INSERT INTO "trip" VALUES(907210,512,'8/26/2015 20:57','South Van Ness at Market',66,'8/26/2015 21:05','Market at 4th',76,383,'Subscriber',94108); +INSERT INTO "trip" VALUES(907211,657,'8/26/2015 20:57','San Francisco Caltrain (Townsend at 4th)',70,'8/26/2015 21:08','Spear at Folsom',49,271,'Subscriber',94105); +INSERT INTO "trip" VALUES(907214,1534,'8/26/2015 21:02','Temporary Transbay Terminal (Howard at Beale)',55,'8/26/2015 21:28','Temporary Transbay Terminal (Howard at Beale)',55,445,'Customer',90006); +INSERT INTO "trip" VALUES(907215,156,'8/26/2015 21:02','Market at Sansome',77,'8/26/2015 21:05','Howard at 2nd',63,625,'Subscriber',94107); +INSERT INTO "trip" VALUES(907221,447,'8/26/2015 21:08','2nd at Folsom',62,'8/26/2015 21:15','San Francisco Caltrain 2 (330 Townsend)',69,585,'Subscriber',94158); +INSERT INTO "trip" VALUES(907224,273,'8/26/2015 21:20','San Francisco Caltrain 2 (330 Townsend)',69,'8/26/2015 21:25','Townsend at 7th',65,578,'Subscriber',94107); +INSERT INTO "trip" VALUES(907225,815,'8/26/2015 21:23','Howard at 2nd',63,'8/26/2015 21:36','Townsend at 7th',65,634,'Subscriber',94116); +INSERT INTO "trip" VALUES(907226,182,'8/26/2015 21:25','St James Park',13,'8/26/2015 21:28','San Pedro Square',6,646,'Subscriber',95113); +INSERT INTO "trip" VALUES(907227,307,'8/26/2015 21:27','Embarcadero at Bryant',54,'8/26/2015 21:33','San Francisco Caltrain (Townsend at 4th)',70,352,'Subscriber',94303); +INSERT INTO "trip" VALUES(907228,1020,'8/26/2015 21:29','2nd at Townsend',61,'8/26/2015 21:46','South Van Ness at Market',66,384,'Subscriber',94102); +INSERT INTO "trip" VALUES(907229,472,'8/26/2015 21:29','Temporary Transbay Terminal (Howard at Beale)',55,'8/26/2015 21:37','Grant Avenue at Columbus Avenue',73,392,'Subscriber',94133); +INSERT INTO "trip" VALUES(907230,306,'8/26/2015 21:30','Market at Sansome',77,'8/26/2015 21:35','Harry Bridges Plaza (Ferry Building)',50,599,'Customer',30160032); +INSERT INTO "trip" VALUES(907231,287,'8/26/2015 21:31','Market at Sansome',77,'8/26/2015 21:36','Harry Bridges Plaza (Ferry Building)',50,511,'Customer',30160032); +INSERT INTO "trip" VALUES(907237,312,'8/26/2015 21:35','Embarcadero at Sansome',60,'8/26/2015 21:40','Davis at Jackson',42,507,'Subscriber',94111); +INSERT INTO "trip" VALUES(907238,242,'8/26/2015 21:36','Post at Kearny',47,'8/26/2015 21:40','Washington at Kearny',46,465,'Subscriber',94133); +INSERT INTO "trip" VALUES(907239,239,'8/26/2015 21:36','Embarcadero at Vallejo',48,'8/26/2015 21:40','Steuart at Market',74,416,'Subscriber',94610); +INSERT INTO "trip" VALUES(907240,246,'8/26/2015 21:37','San Antonio Shopping Center',31,'8/26/2015 21:41','San Antonio Caltrain Station',29,192,'Subscriber',94109); +INSERT INTO "trip" VALUES(907241,839,'8/26/2015 21:39','Spear at Folsom',49,'8/26/2015 21:53','Townsend at 7th',65,440,'Subscriber',94127); +INSERT INTO "trip" VALUES(907242,446,'8/26/2015 21:45','Howard at 2nd',63,'8/26/2015 21:52','San Francisco Caltrain (Townsend at 4th)',70,625,'Subscriber',94107); +INSERT INTO "trip" VALUES(907243,215,'8/26/2015 21:46','Castro Street and El Camino Real',32,'8/26/2015 21:49','Mountain View Caltrain Station',28,678,'Subscriber',2780); +INSERT INTO "trip" VALUES(907244,935,'8/26/2015 21:52','San Francisco Caltrain (Townsend at 4th)',70,'8/26/2015 22:07','Davis at Jackson',42,289,'Subscriber',94111); +INSERT INTO "trip" VALUES(907245,546,'8/26/2015 21:55','2nd at Townsend',61,'8/26/2015 22:04','Spear at Folsom',49,509,'Customer',94941); +INSERT INTO "trip" VALUES(907246,555,'8/26/2015 21:55','2nd at Townsend',61,'8/26/2015 22:05','Spear at Folsom',49,358,'Customer',94941); +INSERT INTO "trip" VALUES(907247,239,'8/26/2015 21:55','Commercial at Montgomery',45,'8/26/2015 21:59','Mechanics Plaza (Market at Battery)',75,16,'Subscriber',94704); +INSERT INTO "trip" VALUES(907248,476,'8/26/2015 21:56','Harry Bridges Plaza (Ferry Building)',50,'8/26/2015 22:04','Embarcadero at Sansome',60,443,'Subscriber',94111); +INSERT INTO "trip" VALUES(907249,903,'8/26/2015 21:57','Broadway St at Battery St',82,'8/26/2015 22:12','South Van Ness at Market',66,69,'Subscriber',94133); +INSERT INTO "trip" VALUES(907250,473,'8/26/2015 21:58','2nd at Townsend',61,'8/26/2015 22:06','Market at Sansome',77,429,'Subscriber',94131); +INSERT INTO "trip" VALUES(907251,461,'8/26/2015 21:58','2nd at Townsend',61,'8/26/2015 22:05','Market at Sansome',77,329,'Subscriber',94103); +INSERT INTO "trip" VALUES(907254,908,'8/26/2015 21:59','2nd at Townsend',61,'8/26/2015 22:15','South Van Ness at Market',66,134,'Subscriber',94103); +INSERT INTO "trip" VALUES(907256,405,'8/26/2015 22:03','2nd at Townsend',61,'8/26/2015 22:09','Embarcadero at Folsom',51,260,'Subscriber',94123); +INSERT INTO "trip" VALUES(907257,887,'8/26/2015 22:05','Embarcadero at Bryant',54,'8/26/2015 22:19','Broadway St at Battery St',82,579,'Subscriber',94133); +INSERT INTO "trip" VALUES(907258,606,'8/26/2015 22:08','2nd at Townsend',61,'8/26/2015 22:18','Post at Kearny',47,442,'Subscriber',94920); +INSERT INTO "trip" VALUES(907259,471,'8/26/2015 22:12','Mountain View Caltrain Station',28,'8/26/2015 22:20','Castro Street and El Camino Real',32,80,'Subscriber',95032); +INSERT INTO "trip" VALUES(907260,989,'8/26/2015 22:13','2nd at Townsend',61,'8/26/2015 22:29','Washington at Kearny',46,608,'Subscriber',94111); +INSERT INTO "trip" VALUES(907261,1550,'8/26/2015 22:13','South Van Ness at Market',66,'8/26/2015 22:39','South Van Ness at Market',66,69,'Subscriber',94133); +INSERT INTO "trip" VALUES(907262,268,'8/26/2015 22:13','San Francisco Caltrain 2 (330 Townsend)',69,'8/26/2015 22:18','Townsend at 7th',65,364,'Subscriber',94107); +INSERT INTO "trip" VALUES(907263,1065,'8/26/2015 22:15','San Francisco Caltrain 2 (330 Townsend)',69,'8/26/2015 22:33','San Francisco City Hall',58,557,'Subscriber',94102); +INSERT INTO "trip" VALUES(907264,647,'8/26/2015 22:15','2nd at Townsend',61,'8/26/2015 22:26','Broadway St at Battery St',82,371,'Subscriber',94111); +INSERT INTO "trip" VALUES(907265,501,'8/26/2015 22:17','2nd at Townsend',61,'8/26/2015 22:25','Steuart at Market',74,540,'Subscriber',94609); +INSERT INTO "trip" VALUES(907267,1117,'8/26/2015 22:25','2nd at Townsend',61,'8/26/2015 22:43','Market at 10th',67,282,'Customer',94102); +INSERT INTO "trip" VALUES(907268,1139,'8/26/2015 22:25','2nd at Townsend',61,'8/26/2015 22:44','Market at 10th',67,370,'Customer',94102); +INSERT INTO "trip" VALUES(907269,352,'8/26/2015 22:26','Spear at Folsom',49,'8/26/2015 22:32','2nd at Townsend',61,387,'Subscriber',89451); +INSERT INTO "trip" VALUES(907270,178,'8/26/2015 22:26','Commercial at Montgomery',45,'8/26/2015 22:29','Market at Sansome',77,187,'Subscriber',94105); +INSERT INTO "trip" VALUES(907271,831,'8/26/2015 22:31','2nd at Townsend',61,'8/26/2015 22:45','Powell at Post (Union Square)',71,496,'Subscriber',94109); +INSERT INTO "trip" VALUES(907273,371,'8/26/2015 22:36','Commercial at Montgomery',45,'8/26/2015 22:42','Embarcadero at Sansome',60,406,'Subscriber',94111); +INSERT INTO "trip" VALUES(907274,851,'8/26/2015 22:39','South Van Ness at Market',66,'8/26/2015 22:54','Grant Avenue at Columbus Avenue',73,69,'Subscriber',94133); +INSERT INTO "trip" VALUES(907275,1095,'8/26/2015 23:00','Mountain View Caltrain Station',28,'8/26/2015 23:18','Mountain View City Hall',27,678,'Subscriber',94041); +INSERT INTO "trip" VALUES(907276,668,'8/26/2015 23:03','San Francisco Caltrain (Townsend at 4th)',70,'8/26/2015 23:14','Powell at Post (Union Square)',71,328,'Subscriber',94109); +INSERT INTO "trip" VALUES(907277,555,'8/26/2015 23:03','San Francisco Caltrain (Townsend at 4th)',70,'8/26/2015 23:12','Powell Street BART',39,411,'Subscriber',2780); +INSERT INTO "trip" VALUES(907278,595,'8/26/2015 23:04','2nd at Townsend',61,'8/26/2015 23:14','5th at Howard',57,618,'Subscriber',94112); +INSERT INTO "trip" VALUES(907279,351,'8/26/2015 23:11','Embarcadero at Bryant',54,'8/26/2015 23:17','Beale at Market',56,582,'Subscriber',94114); +INSERT INTO "trip" VALUES(907280,383,'8/26/2015 23:14','Market at 4th',76,'8/26/2015 23:20','Golden Gate at Polk',59,33,'Subscriber',94102); +INSERT INTO "trip" VALUES(907281,651,'8/26/2015 23:26','South Van Ness at Market',66,'8/26/2015 23:37','San Francisco Caltrain 2 (330 Townsend)',69,29,'Subscriber',94401); +INSERT INTO "trip" VALUES(907282,513,'8/26/2015 23:33','Grant Avenue at Columbus Avenue',73,'8/26/2015 23:42','Powell at Post (Union Square)',71,483,'Subscriber',94109); +INSERT INTO "trip" VALUES(907283,247,'8/26/2015 23:44','San Francisco Caltrain 2 (330 Townsend)',69,'8/26/2015 23:48','Townsend at 7th',65,602,'Subscriber',94110); +INSERT INTO "trip" VALUES(907284,429,'8/26/2015 23:44','San Jose Diridon Caltrain Station',2,'8/26/2015 23:51','Paseo de San Antonio',7,679,'Subscriber',95112); +INSERT INTO "trip" VALUES(907286,220,'8/26/2015 23:49','Beale at Market',56,'8/26/2015 23:53','Howard at 2nd',63,582,'Subscriber',94119); +INSERT INTO "trip" VALUES(907287,751,'8/27/2015 0:41','San Francisco Caltrain 2 (330 Townsend)',69,'8/27/2015 0:53','Golden Gate at Polk',59,382,'Subscriber',94107); +INSERT INTO "trip" VALUES(907288,284,'8/27/2015 1:10','Powell Street BART',39,'8/27/2015 1:15','Mechanics Plaza (Market at Battery)',75,411,'Subscriber',94103); +INSERT INTO "trip" VALUES(907289,643,'8/27/2015 2:31','Clay at Battery',41,'8/27/2015 2:42','Grant Avenue at Columbus Avenue',73,575,'Subscriber',94133); +INSERT INTO "trip" VALUES(907290,2294,'8/27/2015 3:46','Embarcadero at Bryant',54,'8/27/2015 4:24','Clay at Battery',41,327,'Customer',94109); +INSERT INTO "trip" VALUES(907291,450,'8/27/2015 4:26','Market at 10th',67,'8/27/2015 4:33','Townsend at 7th',65,370,'Subscriber',94102); +INSERT INTO "trip" VALUES(907292,689,'8/27/2015 5:00','Embarcadero at Bryant',54,'8/27/2015 5:11','Embarcadero at Sansome',60,214,'Subscriber',94105); +INSERT INTO "trip" VALUES(907293,710,'8/27/2015 5:02','Castro Street and El Camino Real',32,'8/27/2015 5:14','San Antonio Shopping Center',31,80,'Subscriber',95032); +INSERT INTO "trip" VALUES(907294,195,'8/27/2015 5:06','2nd at Folsom',62,'8/27/2015 5:09','Market at Sansome',77,598,'Subscriber',94107); +INSERT INTO "trip" VALUES(907295,1460,'8/27/2015 5:07','Commercial at Montgomery',45,'8/27/2015 5:31','Commercial at Montgomery',45,531,'Customer',28277); +INSERT INTO "trip" VALUES(907296,276,'8/27/2015 5:33','Grant Avenue at Columbus Avenue',73,'8/27/2015 5:38','Market at Sansome',77,620,'Subscriber',94133); +INSERT INTO "trip" VALUES(907297,1495,'8/27/2015 5:35','Yerba Buena Center of the Arts (3rd @ Howard)',68,'8/27/2015 6:00','Townsend at 7th',65,418,'Subscriber',94107); +INSERT INTO "trip" VALUES(907298,425,'8/27/2015 5:38','Powell Street BART',39,'8/27/2015 5:45','San Francisco Caltrain 2 (330 Townsend)',69,508,'Subscriber',94107); +INSERT INTO "trip" VALUES(907299,939,'8/27/2015 5:41','Powell Street BART',39,'8/27/2015 5:56','Embarcadero at Sansome',60,560,'Customer',12345); +INSERT INTO "trip" VALUES(907300,876,'8/27/2015 5:41','Powell Street BART',39,'8/27/2015 5:56','Embarcadero at Sansome',60,492,'Customer',12345); +INSERT INTO "trip" VALUES(907301,657,'8/27/2015 5:41','San Francisco Caltrain 2 (330 Townsend)',69,'8/27/2015 5:52','Embarcadero at Folsom',51,363,'Subscriber',94107); +INSERT INTO "trip" VALUES(907302,652,'8/27/2015 5:41','San Francisco Caltrain 2 (330 Townsend)',69,'8/27/2015 5:52','Embarcadero at Folsom',51,158,'Subscriber',94107); +INSERT INTO "trip" VALUES(907303,503,'8/27/2015 5:45','Civic Center BART (7th at Market)',72,'8/27/2015 5:53','San Francisco Caltrain (Townsend at 4th)',70,407,'Subscriber',94103); +INSERT INTO "trip" VALUES(907304,751,'8/27/2015 5:59','5th at Howard',57,'8/27/2015 6:12','Harry Bridges Plaza (Ferry Building)',50,495,'Subscriber',94112); +INSERT INTO "trip" VALUES(907305,481,'8/27/2015 6:03','San Francisco Caltrain (Townsend at 4th)',70,'8/27/2015 6:11','2nd at Folsom',62,268,'Subscriber',94002); +INSERT INTO "trip" VALUES(907306,421,'8/27/2015 6:08','Townsend at 7th',65,'8/27/2015 6:15','2nd at Townsend',61,634,'Subscriber',94107); +INSERT INTO "trip" VALUES(907307,547,'8/27/2015 6:08','Spear at Folsom',49,'8/27/2015 6:17','Embarcadero at Folsom',51,553,'Subscriber',94105); +INSERT INTO "trip" VALUES(907308,385,'8/27/2015 6:13','Temporary Transbay Terminal (Howard at Beale)',55,'8/27/2015 6:19','2nd at Townsend',61,555,'Subscriber',94610); +INSERT INTO "trip" VALUES(907309,530,'8/27/2015 6:14','Townsend at 7th',65,'8/27/2015 6:22','South Van Ness at Market',66,546,'Subscriber',94107); +INSERT INTO "trip" VALUES(907310,298,'8/27/2015 6:15','Beale at Market',56,'8/27/2015 6:20','Broadway St at Battery St',82,380,'Subscriber',94610); +INSERT INTO "trip" VALUES(907312,363,'8/27/2015 6:20','Harry Bridges Plaza (Ferry Building)',50,'8/27/2015 6:26','2nd at Folsom',62,495,'Subscriber',94901); +INSERT INTO "trip" VALUES(907313,365,'8/27/2015 6:20','Harry Bridges Plaza (Ferry Building)',50,'8/27/2015 6:26','Yerba Buena Center of the Arts (3rd @ Howard)',68,576,'Subscriber',94105); +INSERT INTO "trip" VALUES(907314,269,'8/27/2015 6:20','Harry Bridges Plaza (Ferry Building)',50,'8/27/2015 6:25','Commercial at Montgomery',45,67,'Subscriber',94904); +INSERT INTO "trip" VALUES(907316,371,'8/27/2015 6:21','Harry Bridges Plaza (Ferry Building)',50,'8/27/2015 6:27','Post at Kearny',47,457,'Subscriber',94957); +INSERT INTO "trip" VALUES(907317,505,'8/27/2015 6:29','South Van Ness at Market',66,'8/27/2015 6:37','Townsend at 7th',65,275,'Subscriber',94133); +INSERT INTO "trip" VALUES(907318,409,'8/27/2015 6:31','Powell Street BART',39,'8/27/2015 6:38','San Francisco Caltrain 2 (330 Townsend)',69,569,'Subscriber',94605); +INSERT INTO "trip" VALUES(907319,440,'8/27/2015 6:34','Temporary Transbay Terminal (Howard at Beale)',55,'8/27/2015 6:42','Broadway St at Battery St',82,431,'Subscriber',94610); +INSERT INTO "trip" VALUES(907320,164,'8/27/2015 6:36','2nd at Townsend',61,'8/27/2015 6:39','San Francisco Caltrain 2 (330 Townsend)',69,290,'Subscriber',95134); +INSERT INTO "trip" VALUES(907321,513,'8/27/2015 6:38','Powell at Post (Union Square)',71,'8/27/2015 6:46','San Francisco City Hall',58,483,'Subscriber',94108); +INSERT INTO "trip" VALUES(907322,518,'8/27/2015 6:38','Temporary Transbay Terminal (Howard at Beale)',55,'8/27/2015 6:47','Market at 4th',76,109,'Subscriber',94501); +INSERT INTO "trip" VALUES(907323,349,'8/27/2015 6:38','Santa Clara at Almaden',4,'8/27/2015 6:44','San Jose Diridon Caltrain Station',2,231,'Subscriber',95110); +INSERT INTO "trip" VALUES(907324,631,'8/27/2015 6:41','Market at 10th',67,'8/27/2015 6:51','Mechanics Plaza (Market at Battery)',75,321,'Subscriber',94102); +INSERT INTO "trip" VALUES(907325,591,'8/27/2015 6:43','San Francisco Caltrain (Townsend at 4th)',70,'8/27/2015 6:52','Beale at Market',56,352,'Subscriber',95136); +INSERT INTO "trip" VALUES(907326,808,'8/27/2015 6:43','San Francisco Caltrain (Townsend at 4th)',70,'8/27/2015 6:56','Temporary Transbay Terminal (Howard at Beale)',55,625,'Subscriber',94030); +INSERT INTO "trip" VALUES(907327,477,'8/27/2015 6:43','San Francisco Caltrain (Townsend at 4th)',70,'8/27/2015 6:51','Post at Kearny',47,617,'Subscriber',94002); +INSERT INTO "trip" VALUES(907328,523,'8/27/2015 6:44','Market at 10th',67,'8/27/2015 6:52','Mechanics Plaza (Market at Battery)',75,266,'Subscriber',94102); +INSERT INTO "trip" VALUES(907329,806,'8/27/2015 6:44','San Francisco Caltrain (Townsend at 4th)',70,'8/27/2015 6:57','Harry Bridges Plaza (Ferry Building)',50,505,'Subscriber',95111); +INSERT INTO "trip" VALUES(907330,572,'8/27/2015 6:44','San Francisco Caltrain (Townsend at 4th)',70,'8/27/2015 6:54','Embarcadero at Bryant',54,412,'Subscriber',95124); +INSERT INTO "trip" VALUES(907331,809,'8/27/2015 6:44','San Francisco Caltrain (Townsend at 4th)',70,'8/27/2015 6:58','Beale at Market',56,407,'Subscriber',94070); +INSERT INTO "trip" VALUES(907332,515,'8/27/2015 6:45','Grant Avenue at Columbus Avenue',73,'8/27/2015 6:54','Embarcadero at Folsom',51,570,'Subscriber',94563); +INSERT INTO "trip" VALUES(907333,995,'8/27/2015 6:46','San Francisco Caltrain 2 (330 Townsend)',69,'8/27/2015 7:03','Embarcadero at Sansome',60,585,'Subscriber',95129); +INSERT INTO "trip" VALUES(907334,841,'8/27/2015 6:46','San Francisco Caltrain (Townsend at 4th)',70,'8/27/2015 7:00','South Van Ness at Market',66,463,'Subscriber',95122); +INSERT INTO "trip" VALUES(907335,433,'8/27/2015 6:48','Powell at Post (Union Square)',71,'8/27/2015 6:55','San Francisco Caltrain (Townsend at 4th)',70,312,'Subscriber',94109); +INSERT INTO "trip" VALUES(907336,164,'8/27/2015 6:50','2nd at South Park',64,'8/27/2015 6:53','San Francisco Caltrain (Townsend at 4th)',70,353,'Subscriber',94158); +INSERT INTO "trip" VALUES(907337,785,'8/27/2015 6:50','Harry Bridges Plaza (Ferry Building)',50,'8/27/2015 7:03','Yerba Buena Center of the Arts (3rd @ Howard)',68,391,'Subscriber',94590); +INSERT INTO "trip" VALUES(907340,430,'8/27/2015 6:52','Embarcadero at Sansome',60,'8/27/2015 6:59','Temporary Transbay Terminal (Howard at Beale)',55,492,'Subscriber',94111); +INSERT INTO "trip" VALUES(907341,494,'8/27/2015 6:52','Harry Bridges Plaza (Ferry Building)',50,'8/27/2015 7:00','2nd at Townsend',61,267,'Subscriber',94558); +INSERT INTO "trip" VALUES(907345,437,'8/27/2015 6:55','Davis at Jackson',42,'8/27/2015 7:02','Post at Kearny',47,507,'Subscriber',94111); +INSERT INTO "trip" VALUES(907354,337,'8/27/2015 7:01','Temporary Transbay Terminal (Howard at Beale)',55,'8/27/2015 7:07','Yerba Buena Center of the Arts (3rd @ Howard)',68,601,'Subscriber',94618); +INSERT INTO "trip" VALUES(907357,329,'8/27/2015 7:02','Grant Avenue at Columbus Avenue',73,'8/27/2015 7:08','Mechanics Plaza (Market at Battery)',75,575,'Subscriber',94133); +INSERT INTO "trip" VALUES(907358,844,'8/27/2015 7:02','Embarcadero at Folsom',51,'8/27/2015 7:16','Townsend at 7th',65,260,'Subscriber',94501); +INSERT INTO "trip" VALUES(907361,492,'8/27/2015 7:03','Steuart at Market',74,'8/27/2015 7:12','2nd at Townsend',61,356,'Subscriber',94588); +INSERT INTO "trip" VALUES(907366,1059,'8/27/2015 7:05','San Francisco Caltrain (Townsend at 4th)',70,'8/27/2015 7:23','Embarcadero at Sansome',60,312,'Subscriber',95111); +INSERT INTO "trip" VALUES(907367,894,'8/27/2015 7:06','Steuart at Market',74,'8/27/2015 7:20','Townsend at 7th',65,288,'Subscriber',94501); +INSERT INTO "trip" VALUES(907369,407,'8/27/2015 7:06','Spear at Folsom',49,'8/27/2015 7:13','Commercial at Montgomery',45,358,'Subscriber',94105); +INSERT INTO "trip" VALUES(907370,591,'8/27/2015 7:07','San Francisco Caltrain 2 (330 Townsend)',69,'8/27/2015 7:16','Civic Center BART (7th at Market)',72,569,'Subscriber',94103); +INSERT INTO "trip" VALUES(907372,178,'8/27/2015 7:07','2nd at South Park',64,'8/27/2015 7:10','Howard at 2nd',63,487,'Subscriber',94105); +INSERT INTO "trip" VALUES(907373,1075,'8/27/2015 7:07','Steuart at Market',74,'8/27/2015 7:25','Townsend at 7th',65,343,'Subscriber',94706); +INSERT INTO "trip" VALUES(907375,443,'8/27/2015 7:07','Civic Center BART (7th at Market)',72,'8/27/2015 7:15','Townsend at 7th',65,485,'Subscriber',94582); +INSERT INTO "trip" VALUES(907376,758,'8/27/2015 7:08','San Francisco Caltrain 2 (330 Townsend)',69,'8/27/2015 7:20','Harry Bridges Plaza (Ferry Building)',50,290,'Subscriber',94402); +INSERT INTO "trip" VALUES(907378,534,'8/27/2015 7:08','Market at 10th',67,'8/27/2015 7:17','San Francisco Caltrain 2 (330 Townsend)',69,410,'Subscriber',94102); +INSERT INTO "trip" VALUES(907380,736,'8/27/2015 7:09','Temporary Transbay Terminal (Howard at Beale)',55,'8/27/2015 7:22','Civic Center BART (7th at Market)',72,525,'Subscriber',94710); +INSERT INTO "trip" VALUES(907381,468,'8/27/2015 7:09','Temporary Transbay Terminal (Howard at Beale)',55,'8/27/2015 7:17','San Francisco Caltrain (Townsend at 4th)',70,191,'Subscriber',94530); +INSERT INTO "trip" VALUES(907383,205,'8/27/2015 7:11','Townsend at 7th',65,'8/27/2015 7:14','San Francisco Caltrain 2 (330 Townsend)',69,578,'Subscriber',94044); +INSERT INTO "trip" VALUES(907384,568,'8/27/2015 7:11','Temporary Transbay Terminal (Howard at Beale)',55,'8/27/2015 7:21','Embarcadero at Sansome',60,445,'Subscriber',94105); +INSERT INTO "trip" VALUES(907386,643,'8/27/2015 7:12','Harry Bridges Plaza (Ferry Building)',50,'8/27/2015 7:23','San Francisco Caltrain (Townsend at 4th)',70,505,'Subscriber',94930); +INSERT INTO "trip" VALUES(907387,443,'8/27/2015 7:14','Harry Bridges Plaza (Ferry Building)',50,'8/27/2015 7:21','Howard at 2nd',63,318,'Subscriber',94954); +INSERT INTO "trip" VALUES(907388,396,'8/27/2015 7:14','San Francisco Caltrain 2 (330 Townsend)',69,'8/27/2015 7:21','Howard at 2nd',63,508,'Subscriber',94107); +INSERT INTO "trip" VALUES(907389,614,'8/27/2015 7:15','Yerba Buena Center of the Arts (3rd @ Howard)',68,'8/27/2015 7:25','Townsend at 7th',65,576,'Subscriber',84060); +INSERT INTO "trip" VALUES(907390,450,'8/27/2015 7:16','Powell at Post (Union Square)',71,'8/27/2015 7:23','2nd at South Park',64,526,'Subscriber',94108); +INSERT INTO "trip" VALUES(907391,505,'8/27/2015 7:16','Embarcadero at Folsom',51,'8/27/2015 7:25','San Francisco Caltrain (Townsend at 4th)',70,363,'Subscriber',94107); +INSERT INTO "trip" VALUES(907392,636,'8/27/2015 7:17','Ryland Park',84,'8/27/2015 7:27','San Jose Diridon Caltrain Station',2,708,'Subscriber',95112); +INSERT INTO "trip" VALUES(907393,656,'8/27/2015 7:17','South Van Ness at Market',66,'8/27/2015 7:28','Commercial at Montgomery',45,342,'Subscriber',94002); +INSERT INTO "trip" VALUES(907394,189,'8/27/2015 7:17','Market at 4th',76,'8/27/2015 7:20','Market at Sansome',77,109,'Subscriber',94107); +INSERT INTO "trip" VALUES(907395,697,'8/27/2015 7:18','Davis at Jackson',42,'8/27/2015 7:30','San Francisco Caltrain (Townsend at 4th)',70,321,'Subscriber',94111); +INSERT INTO "trip" VALUES(907396,250,'8/27/2015 7:20','Townsend at 7th',65,'8/27/2015 7:24','San Francisco Caltrain (Townsend at 4th)',70,111,'Subscriber',94107); +INSERT INTO "trip" VALUES(907397,384,'8/27/2015 7:20','Embarcadero at Sansome',60,'8/27/2015 7:27','Beale at Market',56,574,'Subscriber',94111); +INSERT INTO "trip" VALUES(907398,239,'8/27/2015 7:22','Redwood City Caltrain Station',22,'8/27/2015 7:26','Redwood City Medical Center',26,28,'Subscriber',94158); +INSERT INTO "trip" VALUES(907399,670,'8/27/2015 7:23','Redwood City Caltrain Station',22,'8/27/2015 7:34','Stanford in Redwood City',25,188,'Subscriber',94131); +INSERT INTO "trip" VALUES(907400,736,'8/27/2015 7:23','Broadway St at Battery St',82,'8/27/2015 7:36','San Francisco Caltrain (Townsend at 4th)',70,579,'Subscriber',94133); +INSERT INTO "trip" VALUES(907406,786,'8/27/2015 7:26','San Francisco Caltrain (Townsend at 4th)',70,'8/27/2015 7:40','Clay at Battery',41,363,'Subscriber',94025); +INSERT INTO "trip" VALUES(907407,773,'8/27/2015 7:27','San Francisco Caltrain (Townsend at 4th)',70,'8/27/2015 7:39','Golden Gate at Polk',59,191,'Subscriber',94306); +INSERT INTO "trip" VALUES(907408,699,'8/27/2015 7:27','San Francisco Caltrain 2 (330 Townsend)',69,'8/27/2015 7:39','Harry Bridges Plaza (Ferry Building)',50,410,'Subscriber',94025); +INSERT INTO "trip" VALUES(907409,709,'8/27/2015 7:27','Temporary Transbay Terminal (Howard at Beale)',55,'8/27/2015 7:39','Townsend at 7th',65,336,'Subscriber',94501); +INSERT INTO "trip" VALUES(907410,656,'8/27/2015 7:25','Spear at Folsom',49,'8/27/2015 7:36','San Francisco Caltrain (Townsend at 4th)',70,283,'Subscriber',94105); +INSERT INTO "trip" VALUES(907411,751,'8/27/2015 7:28','San Francisco Caltrain (Townsend at 4th)',70,'8/27/2015 7:41','Powell Street BART',39,111,'Subscriber',94102); +INSERT INTO "trip" VALUES(907412,497,'8/27/2015 7:29','Embarcadero at Bryant',54,'8/27/2015 7:37','Howard at 2nd',63,412,'Subscriber',94066); +INSERT INTO "trip" VALUES(907413,445,'8/27/2015 7:30','Howard at 2nd',63,'8/27/2015 7:37','San Francisco Caltrain (Townsend at 4th)',70,487,'Subscriber',94105); +INSERT INTO "trip" VALUES(907414,457,'8/27/2015 7:31','Market at 4th',76,'8/27/2015 7:39','San Francisco Caltrain (Townsend at 4th)',70,278,'Subscriber',95054); +INSERT INTO "trip" VALUES(907415,981,'8/27/2015 7:32','San Francisco Caltrain (Townsend at 4th)',70,'8/27/2015 7:48','Beale at Market',56,505,'Subscriber',94303); +INSERT INTO "trip" VALUES(907416,5559,'8/27/2015 7:33','2nd at Townsend',61,'8/27/2015 9:05','Market at 10th',67,387,'Subscriber',89451); +INSERT INTO "trip" VALUES(907417,308,'8/27/2015 7:33','Santa Clara at Almaden',4,'8/27/2015 7:38','San Jose Diridon Caltrain Station',2,117,'Subscriber',95110); +INSERT INTO "trip" VALUES(907419,486,'8/27/2015 7:35','Market at Sansome',77,'8/27/2015 7:43','2nd at Townsend',61,429,'Subscriber',94401); +INSERT INTO "trip" VALUES(907420,674,'8/27/2015 7:35','Harry Bridges Plaza (Ferry Building)',50,'8/27/2015 7:46','5th at Howard',57,624,'Subscriber',94925); +INSERT INTO "trip" VALUES(907421,189,'8/27/2015 7:36','Grant Avenue at Columbus Avenue',73,'8/27/2015 7:39','Commercial at Montgomery',45,659,'Subscriber',94133); +INSERT INTO "trip" VALUES(907422,354,'8/27/2015 7:36','San Jose Diridon Caltrain Station',2,'8/27/2015 7:42','San Pedro Square',6,708,'Subscriber',94110); +INSERT INTO "trip" VALUES(907423,322,'8/27/2015 7:37','2nd at Townsend',61,'8/27/2015 7:42','Howard at 2nd',63,356,'Subscriber',94107); +INSERT INTO "trip" VALUES(907424,616,'8/27/2015 7:37','MLK Library',11,'8/27/2015 7:47','San Jose Diridon Caltrain Station',2,127,'Subscriber',95113); +INSERT INTO "trip" VALUES(907425,417,'8/27/2015 7:37','Steuart at Market',74,'8/27/2015 7:44','Embarcadero at Vallejo',48,450,'Subscriber',94618); +INSERT INTO "trip" VALUES(907426,586,'8/27/2015 7:37','MLK Library',11,'8/27/2015 7:47','San Jose Diridon Caltrain Station',2,129,'Subscriber',95112); +INSERT INTO "trip" VALUES(907427,751,'8/27/2015 7:37','Harry Bridges Plaza (Ferry Building)',50,'8/27/2015 7:50','2nd at Townsend',61,290,'Subscriber',94949); +INSERT INTO "trip" VALUES(907428,427,'8/27/2015 7:38','Harry Bridges Plaza (Ferry Building)',50,'8/27/2015 7:45','Embarcadero at Sansome',60,331,'Subscriber',94939); +INSERT INTO "trip" VALUES(907429,1772,'8/27/2015 7:38','Harry Bridges Plaza (Ferry Building)',50,'8/27/2015 8:08','2nd at Townsend',61,604,'Subscriber',94960); +INSERT INTO "trip" VALUES(907431,464,'8/27/2015 7:39','Powell at Post (Union Square)',71,'8/27/2015 7:47','San Francisco Caltrain 2 (330 Townsend)',69,471,'Subscriber',94109); +INSERT INTO "trip" VALUES(907432,739,'8/27/2015 7:39','5th at Howard',57,'8/27/2015 7:52','Harry Bridges Plaza (Ferry Building)',50,421,'Subscriber',94107); +INSERT INTO "trip" VALUES(907433,436,'8/27/2015 7:40','Temporary Transbay Terminal (Howard at Beale)',55,'8/27/2015 7:47','Market at 4th',76,415,'Subscriber',94501); +INSERT INTO "trip" VALUES(907434,280,'8/27/2015 7:42','San Jose Diridon Caltrain Station',2,'8/27/2015 7:47','Santa Clara at Almaden',4,691,'Subscriber',94305); +INSERT INTO "trip" VALUES(907435,820,'8/27/2015 7:42','Japantown',9,'8/27/2015 7:56','San Jose Diridon Caltrain Station',2,32,'Subscriber',94111); +INSERT INTO "trip" VALUES(907436,416,'8/27/2015 7:43','Grant Avenue at Columbus Avenue',73,'8/27/2015 7:50','Beale at Market',56,427,'Subscriber',94133); +INSERT INTO "trip" VALUES(907437,205,'8/27/2015 7:43','Harry Bridges Plaza (Ferry Building)',50,'8/27/2015 7:46','Davis at Jackson',42,410,'Subscriber',94025); +INSERT INTO "trip" VALUES(907438,686,'8/27/2015 7:38','Townsend at 7th',65,'8/27/2015 7:50','2nd at Folsom',62,362,'Subscriber',94107); +INSERT INTO "trip" VALUES(907440,507,'8/27/2015 7:43','Market at 10th',67,'8/27/2015 7:52','San Francisco Caltrain 2 (330 Townsend)',69,373,'Subscriber',94102); +INSERT INTO "trip" VALUES(907441,206,'8/27/2015 7:44','Temporary Transbay Terminal (Howard at Beale)',55,'8/27/2015 7:47','2nd at Folsom',62,502,'Subscriber',94602); +INSERT INTO "trip" VALUES(907443,499,'8/27/2015 7:45','Market at 10th',67,'8/27/2015 7:53','Market at Sansome',77,372,'Subscriber',94102); +INSERT INTO "trip" VALUES(907444,184,'8/27/2015 7:45','Townsend at 7th',65,'8/27/2015 7:48','San Francisco Caltrain (Townsend at 4th)',70,336,'Subscriber',94103); +INSERT INTO "trip" VALUES(907447,368,'8/27/2015 7:46','Embarcadero at Bryant',54,'8/27/2015 7:53','San Francisco Caltrain (Townsend at 4th)',70,614,'Subscriber',94105); +INSERT INTO "trip" VALUES(907449,675,'8/27/2015 7:47','Embarcadero at Bryant',54,'8/27/2015 7:58','Townsend at 7th',65,309,'Subscriber',94103); +INSERT INTO "trip" VALUES(907450,753,'8/27/2015 7:48','San Francisco Caltrain 2 (330 Townsend)',69,'8/27/2015 8:01','Market at 10th',67,275,'Subscriber',94582); +INSERT INTO "trip" VALUES(907451,785,'8/27/2015 7:48','Golden Gate at Polk',59,'8/27/2015 8:01','Spear at Folsom',49,379,'Subscriber',94109); +INSERT INTO "trip" VALUES(907453,511,'8/27/2015 7:48','San Francisco Caltrain 2 (330 Townsend)',69,'8/27/2015 7:57','Market at Sansome',77,471,'Subscriber',95112); +INSERT INTO "trip" VALUES(907454,564,'8/27/2015 7:49','San Francisco Caltrain (Townsend at 4th)',70,'8/27/2015 7:58','Beale at Market',56,579,'Subscriber',94303); +INSERT INTO "trip" VALUES(907455,521,'8/27/2015 7:49','Grant Avenue at Columbus Avenue',73,'8/27/2015 7:57','Powell Street BART',39,351,'Subscriber',94133); +INSERT INTO "trip" VALUES(907456,655,'8/27/2015 7:49','Grant Avenue at Columbus Avenue',73,'8/27/2015 8:00','Spear at Folsom',49,209,'Subscriber',94105); +INSERT INTO "trip" VALUES(907457,260,'8/27/2015 7:49','Castro Street and El Camino Real',32,'8/27/2015 7:53','Mountain View Caltrain Station',28,705,'Subscriber',94022); +INSERT INTO "trip" VALUES(907458,399,'8/27/2015 7:49','San Jose Diridon Caltrain Station',2,'8/27/2015 7:56','San Pedro Square',6,129,'Subscriber',95377); +INSERT INTO "trip" VALUES(907459,388,'8/27/2015 7:50','Powell at Post (Union Square)',71,'8/27/2015 7:56','Howard at 2nd',63,484,'Subscriber',94109); +INSERT INTO "trip" VALUES(907460,1055,'8/27/2015 7:50','Grant Avenue at Columbus Avenue',73,'8/27/2015 8:08','San Francisco Caltrain (Townsend at 4th)',70,453,'Subscriber',94133); +INSERT INTO "trip" VALUES(907461,640,'8/27/2015 7:50','San Francisco Caltrain (Townsend at 4th)',70,'8/27/2015 8:01','Mechanics Plaza (Market at Battery)',75,487,'Subscriber',94040); +INSERT INTO "trip" VALUES(907462,627,'8/27/2015 7:50','San Francisco Caltrain (Townsend at 4th)',70,'8/27/2015 8:01','Embarcadero at Folsom',51,278,'Subscriber',95014); +INSERT INTO "trip" VALUES(907463,600,'8/27/2015 7:50','San Francisco Caltrain 2 (330 Townsend)',69,'8/27/2015 8:00','Post at Kearny',47,578,'Subscriber',94002); +INSERT INTO "trip" VALUES(907464,638,'8/27/2015 7:50','San Francisco Caltrain (Townsend at 4th)',70,'8/27/2015 8:01','Harry Bridges Plaza (Ferry Building)',50,283,'Subscriber',94002); +INSERT INTO "trip" VALUES(907465,675,'8/27/2015 7:51','San Francisco Caltrain (Townsend at 4th)',70,'8/27/2015 8:02','Clay at Battery',41,353,'Subscriber',94065); +INSERT INTO "trip" VALUES(907466,248,'8/27/2015 7:51','Embarcadero at Sansome',60,'8/27/2015 7:55','Davis at Jackson',42,331,'Subscriber',94133); +INSERT INTO "trip" VALUES(907467,959,'8/27/2015 7:51','Grant Avenue at Columbus Avenue',73,'8/27/2015 8:07','San Francisco Caltrain (Townsend at 4th)',70,540,'Subscriber',94133); +INSERT INTO "trip" VALUES(907468,1059,'8/27/2015 7:51','Embarcadero at Sansome',60,'8/27/2015 8:09','Powell Street BART',39,445,'Customer',12345); +INSERT INTO "trip" VALUES(907469,1035,'8/27/2015 7:52','Embarcadero at Sansome',60,'8/27/2015 8:09','Powell Street BART',39,560,'Customer',12345); +INSERT INTO "trip" VALUES(907470,886,'8/27/2015 7:52','Steuart at Market',74,'8/27/2015 8:06','San Francisco Caltrain 2 (330 Townsend)',69,300,'Subscriber',94618); +INSERT INTO "trip" VALUES(907471,777,'8/27/2015 7:52','San Francisco Caltrain (Townsend at 4th)',70,'8/27/2015 8:04','Harry Bridges Plaza (Ferry Building)',50,321,'Subscriber',93401); +INSERT INTO "trip" VALUES(907472,624,'8/27/2015 7:52','San Francisco Caltrain 2 (330 Townsend)',69,'8/27/2015 8:02','Temporary Transbay Terminal (Howard at Beale)',55,602,'Subscriber',94030); +INSERT INTO "trip" VALUES(907473,414,'8/27/2015 7:52','San Francisco Caltrain (Townsend at 4th)',70,'8/27/2015 7:59','2nd at Folsom',62,336,'Subscriber',95060); +INSERT INTO "trip" VALUES(907474,266,'8/27/2015 7:52','Mountain View Caltrain Station',28,'8/27/2015 7:57','Castro Street and El Camino Real',32,175,'Subscriber',94118); +INSERT INTO "trip" VALUES(907475,420,'8/27/2015 7:52','Mechanics Plaza (Market at Battery)',75,'8/27/2015 7:59','Broadway St at Battery St',82,591,'Subscriber',94703); +INSERT INTO "trip" VALUES(907477,396,'8/27/2015 7:53','Temporary Transbay Terminal (Howard at Beale)',55,'8/27/2015 7:59','Market at 4th',76,625,'Subscriber',94602); +INSERT INTO "trip" VALUES(907479,813,'8/27/2015 7:53','San Francisco Caltrain (Townsend at 4th)',70,'8/27/2015 8:06','Davis at Jackson',42,592,'Subscriber',94040); +INSERT INTO "trip" VALUES(907480,769,'8/27/2015 7:54','San Francisco Caltrain 2 (330 Townsend)',69,'8/27/2015 8:07','Harry Bridges Plaza (Ferry Building)',50,517,'Subscriber',94403); +INSERT INTO "trip" VALUES(907482,669,'8/27/2015 7:54','San Francisco Caltrain 2 (330 Townsend)',69,'8/27/2015 8:05','South Van Ness at Market',66,439,'Subscriber',95030); +INSERT INTO "trip" VALUES(907484,207,'8/27/2015 7:54','San Jose Diridon Caltrain Station',2,'8/27/2015 7:58','Santa Clara at Almaden',4,117,'Subscriber',95020); +INSERT INTO "trip" VALUES(907489,767,'8/27/2015 7:56','San Francisco Caltrain 2 (330 Townsend)',69,'8/27/2015 8:09','Market at 10th',67,269,'Subscriber',94025); +INSERT INTO "trip" VALUES(907493,726,'8/27/2015 7:58','Temporary Transbay Terminal (Howard at Beale)',55,'8/27/2015 8:10','Embarcadero at Vallejo',48,538,'Subscriber',94611); +INSERT INTO "trip" VALUES(907494,824,'8/27/2015 7:58','Redwood City Caltrain Station',22,'8/27/2015 8:12','Stanford in Redwood City',25,159,'Subscriber',95037); +INSERT INTO "trip" VALUES(907495,262,'8/27/2015 7:59','Temporary Transbay Terminal (Howard at Beale)',55,'8/27/2015 8:04','Clay at Battery',41,492,'Subscriber',94501); +INSERT INTO "trip" VALUES(907496,888,'8/27/2015 7:59','South Van Ness at Market',66,'8/27/2015 8:14','Embarcadero at Sansome',60,134,'Subscriber',94102); +INSERT INTO "trip" VALUES(907497,862,'8/27/2015 8:00','Steuart at Market',74,'8/27/2015 8:14','Townsend at 7th',65,458,'Subscriber',94105); +INSERT INTO "trip" VALUES(907499,950,'8/27/2015 8:00','Townsend at 7th',65,'8/27/2015 8:16','Market at Sansome',77,576,'Subscriber',94112); +INSERT INTO "trip" VALUES(907500,405,'8/27/2015 8:00','2nd at Townsend',61,'8/27/2015 8:07','Townsend at 7th',65,290,'Subscriber',94107); +INSERT INTO "trip" VALUES(907501,483,'8/27/2015 8:00','Market at 4th',76,'8/27/2015 8:08','San Francisco Caltrain (Townsend at 4th)',70,594,'Customer',94121); +INSERT INTO "trip" VALUES(907502,259,'8/27/2015 8:00','Mountain View Caltrain Station',28,'8/27/2015 8:05','Mountain View City Hall',27,262,'Subscriber',95110); +INSERT INTO "trip" VALUES(907504,253,'8/27/2015 8:01','Steuart at Market',74,'8/27/2015 8:05','Broadway St at Battery St',82,636,'Subscriber',94702); +INSERT INTO "trip" VALUES(907505,633,'8/27/2015 8:01','Temporary Transbay Terminal (Howard at Beale)',55,'8/27/2015 8:11','San Francisco City Hall',58,449,'Subscriber',94530); +INSERT INTO "trip" VALUES(907506,499,'8/27/2015 8:01','Spear at Folsom',49,'8/27/2015 8:09','San Francisco Caltrain (Townsend at 4th)',70,271,'Subscriber',94602); +INSERT INTO "trip" VALUES(907508,776,'8/27/2015 8:01','Japantown',9,'8/27/2015 8:14','San Jose Diridon Caltrain Station',2,213,'Subscriber',95112); +INSERT INTO "trip" VALUES(907509,398,'8/27/2015 8:02','Embarcadero at Bryant',54,'8/27/2015 8:09','San Francisco Caltrain (Townsend at 4th)',70,96,'Subscriber',94105); +INSERT INTO "trip" VALUES(907510,541,'8/27/2015 8:03','Temporary Transbay Terminal (Howard at Beale)',55,'8/27/2015 8:12','Commercial at Montgomery',45,402,'Subscriber',94530); +INSERT INTO "trip" VALUES(907511,209,'8/27/2015 8:03','2nd at South Park',64,'8/27/2015 8:06','San Francisco Caltrain (Townsend at 4th)',70,593,'Subscriber',94107); +INSERT INTO "trip" VALUES(907512,426,'8/27/2015 8:03','South Van Ness at Market',66,'8/27/2015 8:10','Post at Kearny',47,546,'Subscriber',94122); +INSERT INTO "trip" VALUES(907514,537,'8/27/2015 8:04','Harry Bridges Plaza (Ferry Building)',50,'8/27/2015 8:13','2nd at South Park',64,283,'Subscriber',94510); +INSERT INTO "trip" VALUES(907515,588,'8/27/2015 8:04','Spear at Folsom',49,'8/27/2015 8:14','San Francisco Caltrain (Townsend at 4th)',70,379,'Subscriber',94709); +INSERT INTO "trip" VALUES(907516,1133,'8/27/2015 8:05','Japantown',9,'8/27/2015 8:23','San Jose Diridon Caltrain Station',2,205,'Customer',95112); +INSERT INTO "trip" VALUES(907517,691,'8/27/2015 8:06','Washington at Kearny',46,'8/27/2015 8:17','2nd at South Park',64,366,'Subscriber',94133); +INSERT INTO "trip" VALUES(907518,651,'8/27/2015 8:06','Golden Gate at Polk',59,'8/27/2015 8:17','San Francisco Caltrain 2 (330 Townsend)',69,518,'Subscriber',94109); +INSERT INTO "trip" VALUES(907519,376,'8/27/2015 8:06','Harry Bridges Plaza (Ferry Building)',50,'8/27/2015 8:13','2nd at Folsom',62,321,'Subscriber',94949); +INSERT INTO "trip" VALUES(907520,271,'8/27/2015 8:06','Harry Bridges Plaza (Ferry Building)',50,'8/27/2015 8:11','Market at Sansome',77,599,'Subscriber',94105); +INSERT INTO "trip" VALUES(907523,659,'8/27/2015 8:07','Harry Bridges Plaza (Ferry Building)',50,'8/27/2015 8:18','San Francisco Caltrain (Townsend at 4th)',70,598,'Subscriber',94925); +INSERT INTO "trip" VALUES(907524,554,'8/27/2015 8:07','San Jose Diridon Caltrain Station',2,'8/27/2015 8:16','MLK Library',11,18,'Subscriber',94110); +INSERT INTO "trip" VALUES(907525,181,'8/27/2015 8:07','San Jose Diridon Caltrain Station',2,'8/27/2015 8:10','Santa Clara at Almaden',4,14,'Subscriber',94158); +INSERT INTO "trip" VALUES(907526,436,'8/27/2015 8:07','Embarcadero at Bryant',54,'8/27/2015 8:15','San Francisco Caltrain (Townsend at 4th)',70,348,'Subscriber',94105); +INSERT INTO "trip" VALUES(907528,874,'8/27/2015 8:07','San Francisco Caltrain 2 (330 Townsend)',69,'8/27/2015 8:22','Washington at Kearny',46,485,'Subscriber',94087); +INSERT INTO "trip" VALUES(907529,818,'8/27/2015 8:08','San Francisco Caltrain (Townsend at 4th)',70,'8/27/2015 8:21','Embarcadero at Vallejo',48,267,'Subscriber',94065); +INSERT INTO "trip" VALUES(907531,761,'8/27/2015 8:08','San Francisco Caltrain 2 (330 Townsend)',69,'8/27/2015 8:21','Embarcadero at Vallejo',48,581,'Subscriber',94025); +INSERT INTO "trip" VALUES(907532,646,'8/27/2015 8:08','San Francisco Caltrain 2 (330 Townsend)',69,'8/27/2015 8:19','Beale at Market',56,300,'Subscriber',94070); +INSERT INTO "trip" VALUES(907533,440,'8/27/2015 8:08','Spear at Folsom',49,'8/27/2015 8:16','2nd at Townsend',61,209,'Subscriber',94610); +INSERT INTO "trip" VALUES(907534,520,'8/27/2015 8:08','San Francisco Caltrain (Townsend at 4th)',70,'8/27/2015 8:17','Embarcadero at Folsom',51,448,'Subscriber',94070); +INSERT INTO "trip" VALUES(907535,726,'8/27/2015 8:08','Grant Avenue at Columbus Avenue',73,'8/27/2015 8:21','2nd at Townsend',61,461,'Subscriber',94133); +INSERT INTO "trip" VALUES(907536,914,'8/27/2015 8:09','San Francisco Caltrain (Townsend at 4th)',70,'8/27/2015 8:24','Civic Center BART (7th at Market)',72,453,'Subscriber',94070); +INSERT INTO "trip" VALUES(907537,262,'8/27/2015 8:09','2nd at Townsend',61,'8/27/2015 8:13','San Francisco Caltrain (Townsend at 4th)',70,429,'Subscriber',94107); +INSERT INTO "trip" VALUES(907538,829,'8/27/2015 8:09','Civic Center BART (7th at Market)',72,'8/27/2015 8:22','Embarcadero at Folsom',51,521,'Customer',94080); +INSERT INTO "trip" VALUES(907539,528,'8/27/2015 8:09','San Francisco Caltrain (Townsend at 4th)',70,'8/27/2015 8:18','Howard at 2nd',63,614,'Subscriber',94306); +INSERT INTO "trip" VALUES(907540,624,'8/27/2015 8:09','San Francisco Caltrain (Townsend at 4th)',70,'8/27/2015 8:19','Embarcadero at Folsom',51,594,'Subscriber',94085); +INSERT INTO "trip" VALUES(907541,742,'8/27/2015 8:09','San Francisco Caltrain (Townsend at 4th)',70,'8/27/2015 8:21','Market at 10th',67,540,'Subscriber',94401); +INSERT INTO "trip" VALUES(907542,778,'8/27/2015 8:09','San Francisco Caltrain (Townsend at 4th)',70,'8/27/2015 8:22','Embarcadero at Folsom',51,394,'Subscriber',94111); +INSERT INTO "trip" VALUES(907544,843,'8/27/2015 8:09','San Francisco Caltrain (Townsend at 4th)',70,'8/27/2015 8:23','Harry Bridges Plaza (Ferry Building)',50,677,'Subscriber',94086); +INSERT INTO "trip" VALUES(907545,337,'8/27/2015 8:09','Embarcadero at Sansome',60,'8/27/2015 8:15','Clay at Battery',41,443,'Subscriber',94133); +INSERT INTO "trip" VALUES(907546,792,'8/27/2015 8:09','San Francisco Caltrain (Townsend at 4th)',70,'8/27/2015 8:22','Market at 4th',76,413,'Subscriber',95122); +INSERT INTO "trip" VALUES(907547,497,'8/27/2015 8:09','San Francisco Caltrain 2 (330 Townsend)',69,'8/27/2015 8:17','Market at Sansome',77,454,'Subscriber',94303); +INSERT INTO "trip" VALUES(907548,1160,'8/27/2015 8:10','San Francisco Caltrain (Townsend at 4th)',70,'8/27/2015 8:29','Commercial at Montgomery',45,388,'Subscriber',94070); +INSERT INTO "trip" VALUES(907549,1027,'8/27/2015 8:10','San Francisco Caltrain 2 (330 Townsend)',69,'8/27/2015 8:27','Market at Sansome',77,373,'Subscriber',94105); +INSERT INTO "trip" VALUES(907550,661,'8/27/2015 8:10','San Francisco Caltrain (Townsend at 4th)',70,'8/27/2015 8:21','Post at Kearny',47,593,'Subscriber',94010); +INSERT INTO "trip" VALUES(907551,320,'8/27/2015 8:10','San Francisco Caltrain 2 (330 Townsend)',69,'8/27/2015 8:15','5th at Howard',57,503,'Subscriber',94303); +INSERT INTO "trip" VALUES(907552,186,'8/27/2015 8:10','2nd at South Park',64,'8/27/2015 8:13','Howard at 2nd',63,526,'Subscriber',94107); +INSERT INTO "trip" VALUES(907553,465,'8/27/2015 8:11','Embarcadero at Folsom',51,'8/27/2015 8:18','San Francisco Caltrain (Townsend at 4th)',70,878,'Subscriber',94901); +INSERT INTO "trip" VALUES(907554,565,'8/27/2015 8:11','San Francisco Caltrain (Townsend at 4th)',70,'8/27/2015 8:20','Temporary Transbay Terminal (Howard at Beale)',55,271,'Subscriber',95110); +INSERT INTO "trip" VALUES(907555,302,'8/27/2015 8:11','San Francisco Caltrain 2 (330 Townsend)',69,'8/27/2015 8:16','Townsend at 7th',65,419,'Subscriber',94043); +INSERT INTO "trip" VALUES(907556,423,'8/27/2015 8:11','2nd at Folsom',62,'8/27/2015 8:18','San Francisco Caltrain (Townsend at 4th)',70,489,'Subscriber',94549); +INSERT INTO "trip" VALUES(907557,281,'8/27/2015 8:11','2nd at Townsend',61,'8/27/2015 8:16','San Francisco Caltrain (Townsend at 4th)',70,604,'Subscriber',94107); +INSERT INTO "trip" VALUES(907558,695,'8/27/2015 8:11','San Francisco Caltrain 2 (330 Townsend)',69,'8/27/2015 8:23','Davis at Jackson',42,343,'Subscriber',95014); +INSERT INTO "trip" VALUES(907559,1033,'8/27/2015 8:12','Market at 4th',76,'8/27/2015 8:29','Embarcadero at Sansome',60,563,'Subscriber',94122); +INSERT INTO "trip" VALUES(907560,434,'8/27/2015 8:11','San Francisco Caltrain 2 (330 Townsend)',69,'8/27/2015 8:19','Townsend at 7th',65,632,'Subscriber',94086); +INSERT INTO "trip" VALUES(907561,527,'8/27/2015 8:12','San Francisco Caltrain 2 (330 Townsend)',69,'8/27/2015 8:21','Embarcadero at Folsom',51,285,'Subscriber',94061); +INSERT INTO "trip" VALUES(907562,661,'8/27/2015 8:12','Embarcadero at Folsom',51,'8/27/2015 8:23','San Francisco Caltrain (Townsend at 4th)',70,570,'Subscriber',94105); +INSERT INTO "trip" VALUES(907563,554,'8/27/2015 8:12','San Francisco Caltrain 2 (330 Townsend)',69,'8/27/2015 8:21','Embarcadero at Folsom',51,364,'Subscriber',94087); +INSERT INTO "trip" VALUES(907565,563,'8/27/2015 8:12','San Francisco Caltrain 2 (330 Townsend)',69,'8/27/2015 8:21','Harry Bridges Plaza (Ferry Building)',50,619,'Subscriber',95148); +INSERT INTO "trip" VALUES(907566,863,'8/27/2015 8:12','San Francisco Caltrain 2 (330 Townsend)',69,'8/27/2015 8:26','Embarcadero at Vallejo',48,542,'Subscriber',95122); +INSERT INTO "trip" VALUES(907567,390,'8/27/2015 8:12','Grant Avenue at Columbus Avenue',73,'8/27/2015 8:19','Commercial at Montgomery',45,494,'Subscriber',94103); +INSERT INTO "trip" VALUES(907568,323,'8/27/2015 8:12','San Francisco Caltrain 2 (330 Townsend)',69,'8/27/2015 8:17','Townsend at 7th',65,29,'Subscriber',94301); +INSERT INTO "trip" VALUES(907569,467,'8/27/2015 8:12','Embarcadero at Bryant',54,'8/27/2015 8:20','San Francisco Caltrain (Townsend at 4th)',70,395,'Subscriber',94105); +INSERT INTO "trip" VALUES(907570,501,'8/27/2015 8:12','San Francisco Caltrain 2 (330 Townsend)',69,'8/27/2015 8:21','Howard at 2nd',63,355,'Subscriber',94062); +INSERT INTO "trip" VALUES(907571,950,'8/27/2015 8:12','San Francisco Caltrain (Townsend at 4th)',70,'8/27/2015 8:28','Mechanics Plaza (Market at Battery)',75,96,'Subscriber',95054); +INSERT INTO "trip" VALUES(907572,661,'8/27/2015 8:12','San Francisco Caltrain 2 (330 Townsend)',69,'8/27/2015 8:23','Howard at 2nd',63,497,'Subscriber',94061); +INSERT INTO "trip" VALUES(907573,929,'8/27/2015 8:13','San Francisco Caltrain 2 (330 Townsend)',69,'8/27/2015 8:28','Embarcadero at Vallejo',48,634,'Subscriber',95128); +INSERT INTO "trip" VALUES(907574,266,'8/27/2015 8:13','San Francisco Caltrain (Townsend at 4th)',70,'8/27/2015 8:18','2nd at Townsend',61,429,'Subscriber',94061); +INSERT INTO "trip" VALUES(907576,342,'8/27/2015 8:14','San Francisco Caltrain 2 (330 Townsend)',69,'8/27/2015 8:19','2nd at Folsom',62,587,'Subscriber',94107); +INSERT INTO "trip" VALUES(907578,456,'8/27/2015 8:14','South Van Ness at Market',66,'8/27/2015 8:22','Market at 4th',76,384,'Subscriber',94102); +INSERT INTO "trip" VALUES(907579,652,'8/27/2015 8:15','San Francisco Caltrain (Townsend at 4th)',70,'8/27/2015 8:26','Market at Sansome',77,379,'Subscriber',94010); +INSERT INTO "trip" VALUES(907580,554,'8/27/2015 8:15','5th at Howard',57,'8/27/2015 8:25','Steuart at Market',74,618,'Subscriber',94107); +INSERT INTO "trip" VALUES(907581,387,'8/27/2015 8:16','Temporary Transbay Terminal (Howard at Beale)',55,'8/27/2015 8:22','2nd at Townsend',61,602,'Subscriber',94610); +INSERT INTO "trip" VALUES(907582,202,'8/27/2015 8:16','Temporary Transbay Terminal (Howard at Beale)',55,'8/27/2015 8:20','Steuart at Market',74,401,'Subscriber',94501); +INSERT INTO "trip" VALUES(907583,397,'8/27/2015 8:17','Temporary Transbay Terminal (Howard at Beale)',55,'8/27/2015 8:24','San Francisco Caltrain (Townsend at 4th)',70,446,'Subscriber',94707); +INSERT INTO "trip" VALUES(907584,220,'8/27/2015 8:18','Townsend at 7th',65,'8/27/2015 8:21','San Francisco Caltrain 2 (330 Townsend)',69,290,'Subscriber',94107); +INSERT INTO "trip" VALUES(907585,546,'8/27/2015 8:18','2nd at South Park',64,'8/27/2015 8:27','Townsend at 7th',65,283,'Subscriber',94602); +INSERT INTO "trip" VALUES(907586,397,'8/27/2015 8:18','Temporary Transbay Terminal (Howard at Beale)',55,'8/27/2015 8:25','5th at Howard',57,374,'Subscriber',94103); +INSERT INTO "trip" VALUES(907587,311,'8/27/2015 8:18','Temporary Transbay Terminal (Howard at Beale)',55,'8/27/2015 8:23','Davis at Jackson',42,621,'Subscriber',94111); +INSERT INTO "trip" VALUES(907588,420,'8/27/2015 8:19','2nd at Townsend',61,'8/27/2015 8:26','Steuart at Market',74,555,'Subscriber',94061); +INSERT INTO "trip" VALUES(907589,278,'8/27/2015 8:19','South Van Ness at Market',66,'8/27/2015 8:24','Golden Gate at Polk',59,439,'Subscriber',94124); +INSERT INTO "trip" VALUES(907590,374,'8/27/2015 8:19','Market at Sansome',77,'8/27/2015 8:26','2nd at Townsend',61,287,'Subscriber',94551); +INSERT INTO "trip" VALUES(907591,894,'8/27/2015 8:19','Powell at Post (Union Square)',71,'8/27/2015 8:34','Townsend at 7th',65,432,'Subscriber',94109); +INSERT INTO "trip" VALUES(907592,692,'8/27/2015 8:20','Embarcadero at Sansome',60,'8/27/2015 8:31','Market at Sansome',77,134,'Subscriber',94111); +INSERT INTO "trip" VALUES(907593,248,'8/27/2015 8:20','San Jose Diridon Caltrain Station',2,'8/27/2015 8:24','Santa Clara at Almaden',4,213,'Subscriber',94103); +INSERT INTO "trip" VALUES(907595,489,'8/27/2015 8:22','San Francisco Caltrain (Townsend at 4th)',70,'8/27/2015 8:30','Embarcadero at Folsom',51,604,'Subscriber',94087); +INSERT INTO "trip" VALUES(907596,747,'8/27/2015 8:22','San Francisco Caltrain (Townsend at 4th)',70,'8/27/2015 8:34','Market at Sansome',77,395,'Subscriber',94087); +INSERT INTO "trip" VALUES(907597,571,'8/27/2015 8:22','Market at 10th',67,'8/27/2015 8:32','Market at Sansome',77,540,'Subscriber',94109); +INSERT INTO "trip" VALUES(907598,289,'8/27/2015 8:22','Steuart at Market',74,'8/27/2015 8:27','Clay at Battery',41,524,'Subscriber',94305); +INSERT INTO "trip" VALUES(907599,631,'8/27/2015 8:23','San Francisco Caltrain 2 (330 Townsend)',69,'8/27/2015 8:33','Market at 10th',67,518,'Subscriber',94061); +INSERT INTO "trip" VALUES(907600,378,'8/27/2015 8:22','Powell Street BART',39,'8/27/2015 8:29','Mechanics Plaza (Market at Battery)',75,441,'Subscriber',94102); +INSERT INTO "trip" VALUES(907601,612,'8/27/2015 8:23','Civic Center BART (7th at Market)',72,'8/27/2015 8:33','Steuart at Market',74,569,'Subscriber',94103); +INSERT INTO "trip" VALUES(907602,593,'8/27/2015 8:23','2nd at Townsend',61,'8/27/2015 8:33','Harry Bridges Plaza (Ferry Building)',50,602,'Subscriber',94087); +INSERT INTO "trip" VALUES(907603,534,'8/27/2015 8:23','San Francisco Caltrain (Townsend at 4th)',70,'8/27/2015 8:32','Embarcadero at Folsom',51,348,'Subscriber',94062); +INSERT INTO "trip" VALUES(907604,252,'8/27/2015 8:24','Market at 4th',76,'8/27/2015 8:28','5th at Howard',57,384,'Subscriber',94103); +INSERT INTO "trip" VALUES(907605,708,'8/27/2015 8:24','San Francisco Caltrain (Townsend at 4th)',70,'8/27/2015 8:36','Temporary Transbay Terminal (Howard at Beale)',55,878,'Subscriber',94025); +INSERT INTO "trip" VALUES(907607,322,'8/27/2015 8:24','2nd at Townsend',61,'8/27/2015 8:29','Howard at 2nd',63,429,'Subscriber',94105); +INSERT INTO "trip" VALUES(907608,424,'8/27/2015 8:24','Embarcadero at Sansome',60,'8/27/2015 8:31','Temporary Transbay Terminal (Howard at Beale)',55,286,'Customer','nil'); +INSERT INTO "trip" VALUES(907609,406,'8/27/2015 8:24','Beale at Market',56,'8/27/2015 8:31','2nd at South Park',64,583,'Subscriber',94618); +INSERT INTO "trip" VALUES(907610,171,'8/27/2015 8:24','Temporary Transbay Terminal (Howard at Beale)',55,'8/27/2015 8:27','Mechanics Plaza (Market at Battery)',75,271,'Subscriber',94618); +INSERT INTO "trip" VALUES(907611,807,'8/27/2015 8:24','San Francisco Caltrain 2 (330 Townsend)',69,'8/27/2015 8:38','Howard at 2nd',63,309,'Subscriber',94040); +INSERT INTO "trip" VALUES(907612,332,'8/27/2015 8:25','Steuart at Market',74,'8/27/2015 8:30','Embarcadero at Sansome',60,389,'Subscriber',94611); +INSERT INTO "trip" VALUES(907613,1007,'8/27/2015 8:25','San Francisco Caltrain 2 (330 Townsend)',69,'8/27/2015 8:42','Clay at Battery',41,290,'Subscriber',94301); +INSERT INTO "trip" VALUES(907614,401,'8/27/2015 8:25','Harry Bridges Plaza (Ferry Building)',50,'8/27/2015 8:32','Howard at 2nd',63,517,'Subscriber',94115); +INSERT INTO "trip" VALUES(907615,849,'8/27/2015 8:25','San Francisco Caltrain 2 (330 Townsend)',69,'8/27/2015 8:39','Clay at Battery',41,418,'Subscriber',94303); +INSERT INTO "trip" VALUES(907617,488,'8/27/2015 8:26','Steuart at Market',74,'8/27/2015 8:34','2nd at Townsend',61,193,'Subscriber',94107); +INSERT INTO "trip" VALUES(907618,1015,'8/27/2015 8:26','2nd at Townsend',61,'8/27/2015 8:43','Powell at Post (Union Square)',71,287,'Customer',94111); +INSERT INTO "trip" VALUES(907619,432,'8/27/2015 8:26','Temporary Transbay Terminal (Howard at Beale)',55,'8/27/2015 8:33','Davis at Jackson',42,470,'Subscriber',94706); +INSERT INTO "trip" VALUES(907620,462,'8/27/2015 8:26','Harry Bridges Plaza (Ferry Building)',50,'8/27/2015 8:34','2nd at South Park',64,619,'Subscriber',94947); +INSERT INTO "trip" VALUES(907621,742,'8/27/2015 8:27','Market at 10th',67,'8/27/2015 8:39','Beale at Market',56,269,'Subscriber',94103); +INSERT INTO "trip" VALUES(907622,1115,'8/27/2015 8:27','Harry Bridges Plaza (Ferry Building)',50,'8/27/2015 8:45','Market at 10th',67,462,'Subscriber',94903); +INSERT INTO "trip" VALUES(907623,348,'8/27/2015 8:27','Howard at 2nd',63,'8/27/2015 8:33','2nd at Townsend',61,412,'Subscriber',94939); +INSERT INTO "trip" VALUES(907624,460,'8/27/2015 8:27','Harry Bridges Plaza (Ferry Building)',50,'8/27/2015 8:35','2nd at Townsend',61,677,'Subscriber',94903); +INSERT INTO "trip" VALUES(907626,310,'8/27/2015 8:27','Steuart at Market',74,'8/27/2015 8:32','Embarcadero at Vallejo',48,479,'Subscriber',94708); +INSERT INTO "trip" VALUES(907627,409,'8/27/2015 8:27','Grant Avenue at Columbus Avenue',73,'8/27/2015 8:34','Clay at Battery',41,687,'Subscriber',94133); +INSERT INTO "trip" VALUES(907628,829,'8/27/2015 8:27','Harry Bridges Plaza (Ferry Building)',50,'8/27/2015 8:41','Townsend at 7th',65,534,'Subscriber',94901); +INSERT INTO "trip" VALUES(907629,585,'8/27/2015 8:27','San Francisco Caltrain (Townsend at 4th)',70,'8/27/2015 8:37','Embarcadero at Folsom',51,489,'Subscriber',94105); +INSERT INTO "trip" VALUES(907630,527,'8/27/2015 8:28','Embarcadero at Folsom',51,'8/27/2015 8:36','San Francisco Caltrain (Townsend at 4th)',70,364,'Subscriber',94105); +INSERT INTO "trip" VALUES(907631,550,'8/27/2015 8:29','Harry Bridges Plaza (Ferry Building)',50,'8/27/2015 8:38','2nd at Townsend',61,376,'Subscriber',94903); +INSERT INTO "trip" VALUES(907632,585,'8/27/2015 8:25','Civic Center BART (7th at Market)',72,'8/27/2015 8:35','Townsend at 7th',65,453,'Subscriber',94602); +INSERT INTO "trip" VALUES(907633,428,'8/27/2015 8:29','Powell Street BART',39,'8/27/2015 8:36','San Francisco Caltrain 2 (330 Townsend)',69,386,'Subscriber',94606); +INSERT INTO "trip" VALUES(907634,548,'8/27/2015 8:30','Grant Avenue at Columbus Avenue',73,'8/27/2015 8:39','Beale at Market',56,392,'Subscriber',94133); +INSERT INTO "trip" VALUES(907635,433,'8/27/2015 8:31','Beale at Market',56,'8/27/2015 8:38','Embarcadero at Sansome',60,352,'Subscriber',94609); +INSERT INTO "trip" VALUES(907636,546,'8/27/2015 8:31','Howard at 2nd',63,'8/27/2015 8:40','Townsend at 7th',65,377,'Subscriber',94103); +INSERT INTO "trip" VALUES(907637,281,'8/27/2015 8:31','Beale at Market',56,'8/27/2015 8:36','Commercial at Montgomery',45,300,'Subscriber',94611); +INSERT INTO "trip" VALUES(907638,249,'8/27/2015 8:33','Grant Avenue at Columbus Avenue',73,'8/27/2015 8:37','Clay at Battery',41,69,'Subscriber',94111); +INSERT INTO "trip" VALUES(907639,233,'8/27/2015 8:33','San Francisco City Hall',58,'8/27/2015 8:37','South Van Ness at Market',66,449,'Subscriber',94108); +INSERT INTO "trip" VALUES(907640,147,'8/27/2015 8:34','Howard at 2nd',63,'8/27/2015 8:36','Market at Sansome',77,355,'Subscriber',94107); +INSERT INTO "trip" VALUES(907641,455,'8/27/2015 8:34','Powell Street BART',39,'8/27/2015 8:41','Mechanics Plaza (Market at Battery)',75,351,'Customer',94103); +INSERT INTO "trip" VALUES(907642,419,'8/27/2015 8:34','Powell Street BART',39,'8/27/2015 8:41','San Francisco Caltrain 2 (330 Townsend)',69,493,'Subscriber',94107); +INSERT INTO "trip" VALUES(907644,443,'8/27/2015 8:35','Powell Street BART',39,'8/27/2015 8:42','San Francisco Caltrain 2 (330 Townsend)',69,560,'Subscriber',94103); +INSERT INTO "trip" VALUES(907645,965,'8/27/2015 8:35','Temporary Transbay Terminal (Howard at Beale)',55,'8/27/2015 8:51','South Van Ness at Market',66,286,'Subscriber',94618); +INSERT INTO "trip" VALUES(907646,469,'8/27/2015 8:35','Spear at Folsom',49,'8/27/2015 8:43','Mechanics Plaza (Market at Battery)',75,509,'Subscriber',94105); +INSERT INTO "trip" VALUES(907647,144,'8/27/2015 8:36','2nd at Townsend',61,'8/27/2015 8:39','2nd at South Park',64,677,'Subscriber',94107); +INSERT INTO "trip" VALUES(907648,427,'8/27/2015 8:36','Market at 4th',76,'8/27/2015 8:43','San Francisco Caltrain (Townsend at 4th)',70,403,'Subscriber',94105); +INSERT INTO "trip" VALUES(907649,396,'8/27/2015 8:36','Harry Bridges Plaza (Ferry Building)',50,'8/27/2015 8:43','Embarcadero at Sansome',60,187,'Subscriber',94602); +INSERT INTO "trip" VALUES(907650,425,'8/27/2015 8:37','San Francisco Caltrain (Townsend at 4th)',70,'8/27/2015 8:44','Yerba Buena Center of the Arts (3rd @ Howard)',68,570,'Subscriber',94158); +INSERT INTO "trip" VALUES(907651,391,'8/27/2015 8:37','Embarcadero at Folsom',51,'8/27/2015 8:44','Embarcadero at Sansome',60,448,'Subscriber',94124); +INSERT INTO "trip" VALUES(907655,541,'8/27/2015 8:38','Market at Sansome',77,'8/27/2015 8:47','Embarcadero at Sansome',60,134,'Subscriber',94111); +INSERT INTO "trip" VALUES(907657,588,'8/27/2015 8:38','Grant Avenue at Columbus Avenue',73,'8/27/2015 8:48','Market at Sansome',77,629,'Subscriber',94133); +INSERT INTO "trip" VALUES(907660,411,'8/27/2015 8:40','Market at Sansome',77,'8/27/2015 8:46','2nd at South Park',64,379,'Subscriber',94610); +INSERT INTO "trip" VALUES(907662,248,'8/27/2015 8:40','San Antonio Caltrain Station',29,'8/27/2015 8:44','San Antonio Shopping Center',31,197,'Subscriber',94133); +INSERT INTO "trip" VALUES(907663,308,'8/27/2015 8:40','Embarcadero at Sansome',60,'8/27/2015 8:45','Steuart at Market',74,214,'Subscriber',94133); +INSERT INTO "trip" VALUES(907665,387,'8/27/2015 8:40','Golden Gate at Polk',59,'8/27/2015 8:47','5th at Howard',57,459,'Subscriber',94109); +INSERT INTO "trip" VALUES(907667,605,'8/27/2015 8:40','2nd at Townsend',61,'8/27/2015 8:50','Embarcadero at Vallejo',48,376,'Subscriber',94107); +INSERT INTO "trip" VALUES(907672,593,'8/27/2015 8:42','Embarcadero at Folsom',51,'8/27/2015 8:52','Commercial at Montgomery',45,285,'Subscriber',94611); +INSERT INTO "trip" VALUES(907673,447,'8/27/2015 8:43','Spear at Folsom',49,'8/27/2015 8:50','Embarcadero at Vallejo',48,478,'Subscriber',94105); +INSERT INTO "trip" VALUES(907675,266,'8/27/2015 8:43','Howard at 2nd',63,'8/27/2015 8:47','5th at Howard',57,497,'Subscriber',94610); +INSERT INTO "trip" VALUES(907676,294,'8/27/2015 8:44','Market at 4th',76,'8/27/2015 8:49','Steuart at Market',74,672,'Subscriber',94107); +INSERT INTO "trip" VALUES(907677,684,'8/27/2015 8:44','Mechanics Plaza (Market at Battery)',75,'8/27/2015 8:55','2nd at Townsend',61,487,'Subscriber',94121); +INSERT INTO "trip" VALUES(907678,732,'8/27/2015 8:44','Steuart at Market',74,'8/27/2015 8:56','2nd at Townsend',61,569,'Subscriber',94539); +INSERT INTO "trip" VALUES(907680,657,'8/27/2015 8:44','Steuart at Market',74,'8/27/2015 8:55','San Francisco Caltrain (Townsend at 4th)',70,314,'Subscriber',94601); +INSERT INTO "trip" VALUES(907681,1188,'8/27/2015 8:44','Steuart at Market',74,'8/27/2015 9:04','Townsend at 7th',65,401,'Subscriber',94501); +INSERT INTO "trip" VALUES(907682,130,'8/27/2015 8:45','Steuart at Market',74,'8/27/2015 8:47','Embarcadero at Folsom',51,555,'Subscriber',94044); +INSERT INTO "trip" VALUES(907683,967,'8/27/2015 8:45','Townsend at 7th',65,'8/27/2015 9:01','Market at Sansome',77,283,'Subscriber',94107); +INSERT INTO "trip" VALUES(907684,677,'8/27/2015 8:45','Market at 10th',67,'8/27/2015 8:57','Townsend at 7th',65,282,'Subscriber',94568); +INSERT INTO "trip" VALUES(907685,419,'8/27/2015 8:46','Market at Sansome',77,'8/27/2015 8:53','2nd at South Park',64,347,'Subscriber',94612); +INSERT INTO "trip" VALUES(907686,237,'8/27/2015 8:46','San Jose Diridon Caltrain Station',2,'8/27/2015 8:50','Adobe on Almaden',5,32,'Subscriber',94002); +INSERT INTO "trip" VALUES(907687,782,'8/27/2015 8:46','Temporary Transbay Terminal (Howard at Beale)',55,'8/27/2015 8:59','South Van Ness at Market',66,878,'Subscriber',94702); +INSERT INTO "trip" VALUES(907688,344,'8/27/2015 8:46','San Jose Diridon Caltrain Station',2,'8/27/2015 8:52','San Pedro Square',6,127,'Subscriber',94002); +INSERT INTO "trip" VALUES(907689,684,'8/27/2015 8:46','2nd at Townsend',61,'8/27/2015 8:58','Commercial at Montgomery',45,412,'Subscriber',94107); +INSERT INTO "trip" VALUES(907690,429,'8/27/2015 8:47','2nd at Townsend',61,'8/27/2015 8:54','Townsend at 7th',65,209,'Subscriber',94107); +INSERT INTO "trip" VALUES(907691,286,'8/27/2015 8:47','Steuart at Market',74,'8/27/2015 8:52','Embarcadero at Vallejo',48,618,'Subscriber',94102); +INSERT INTO "trip" VALUES(907693,393,'8/27/2015 8:48','Market at 4th',76,'8/27/2015 8:54','2nd at Townsend',61,413,'Subscriber',94107); +INSERT INTO "trip" VALUES(907694,167,'8/27/2015 8:48','Market at Sansome',77,'8/27/2015 8:50','Howard at 2nd',63,373,'Subscriber',94114); +INSERT INTO "trip" VALUES(907695,662,'8/27/2015 8:48','Embarcadero at Sansome',60,'8/27/2015 8:59','Temporary Transbay Terminal (Howard at Beale)',55,134,'Subscriber',94941); +INSERT INTO "trip" VALUES(907696,210,'8/27/2015 8:48','Embarcadero at Folsom',51,'8/27/2015 8:52','Harry Bridges Plaza (Ferry Building)',50,489,'Subscriber',94105); +INSERT INTO "trip" VALUES(907697,459,'8/27/2015 8:49','Powell Street BART',39,'8/27/2015 8:56','Beale at Market',56,423,'Subscriber',94107); +INSERT INTO "trip" VALUES(907698,258,'8/27/2015 8:49','2nd at South Park',64,'8/27/2015 8:53','San Francisco Caltrain (Townsend at 4th)',70,677,'Subscriber',94105); +INSERT INTO "trip" VALUES(907699,806,'8/27/2015 8:49','Mountain View Caltrain Station',28,'8/27/2015 9:02','San Antonio Shopping Center',31,705,'Subscriber',94109); +INSERT INTO "trip" VALUES(907700,890,'8/27/2015 8:49','2nd at Townsend',61,'8/27/2015 9:04','Embarcadero at Sansome',60,193,'Subscriber',94107); +INSERT INTO "trip" VALUES(907701,283,'8/27/2015 8:49','Mountain View Caltrain Station',28,'8/27/2015 8:54','Evelyn Park and Ride',30,263,'Subscriber',94108); +INSERT INTO "trip" VALUES(907702,287,'8/27/2015 8:50','Harry Bridges Plaza (Ferry Building)',50,'8/27/2015 8:55','Embarcadero at Sansome',60,334,'Subscriber',94111); +INSERT INTO "trip" VALUES(907703,899,'8/27/2015 8:50','San Francisco Caltrain (Townsend at 4th)',70,'8/27/2015 9:05','Embarcadero at Folsom',51,403,'Subscriber',94062); +INSERT INTO "trip" VALUES(907704,782,'8/27/2015 8:50','2nd at Folsom',62,'8/27/2015 9:03','Mechanics Plaza (Market at Battery)',75,268,'Subscriber',94107); +INSERT INTO "trip" VALUES(907705,378,'8/27/2015 8:50','Steuart at Market',74,'8/27/2015 8:57','Embarcadero at Sansome',60,214,'Subscriber',94568); +INSERT INTO "trip" VALUES(907706,402,'8/27/2015 8:51','San Francisco Caltrain 2 (330 Townsend)',69,'8/27/2015 8:57','5th at Howard',57,29,'Subscriber',94401); +INSERT INTO "trip" VALUES(907707,283,'8/27/2015 8:51','San Francisco Caltrain 2 (330 Townsend)',69,'8/27/2015 8:56','Townsend at 7th',65,493,'Subscriber',94404); +INSERT INTO "trip" VALUES(907708,726,'8/27/2015 8:51','San Francisco Caltrain 2 (330 Townsend)',69,'8/27/2015 9:03','Spear at Folsom',49,453,'Subscriber',94040); +INSERT INTO "trip" VALUES(907709,496,'8/27/2015 8:51','San Francisco Caltrain (Townsend at 4th)',70,'8/27/2015 9:00','Temporary Transbay Terminal (Howard at Beale)',55,364,'Subscriber',94022); +INSERT INTO "trip" VALUES(907710,820,'8/27/2015 8:51','San Francisco Caltrain 2 (330 Townsend)',69,'8/27/2015 9:05','Temporary Transbay Terminal (Howard at Beale)',55,386,'Subscriber',95008); +INSERT INTO "trip" VALUES(907711,827,'8/27/2015 8:52','San Francisco Caltrain (Townsend at 4th)',70,'8/27/2015 9:05','Golden Gate at Polk',59,598,'Subscriber',94305); +INSERT INTO "trip" VALUES(907712,757,'8/27/2015 8:52','San Pedro Square',6,'8/27/2015 9:04','Santa Clara County Civic Center',80,646,'Subscriber',95110); +INSERT INTO "trip" VALUES(907713,351,'8/27/2015 8:52','2nd at Folsom',62,'8/27/2015 8:58','Commercial at Montgomery',45,321,'Subscriber',94107); +INSERT INTO "trip" VALUES(907714,670,'8/27/2015 8:52','San Francisco Caltrain (Townsend at 4th)',70,'8/27/2015 9:03','Embarcadero at Folsom',51,419,'Subscriber',95131); +INSERT INTO "trip" VALUES(907715,280,'8/27/2015 8:52','San Francisco Caltrain 2 (330 Townsend)',69,'8/27/2015 8:56','Yerba Buena Center of the Arts (3rd @ Howard)',68,632,'Subscriber',94041); +INSERT INTO "trip" VALUES(907716,609,'8/27/2015 8:52','San Francisco Caltrain 2 (330 Townsend)',69,'8/27/2015 9:02','Market at Sansome',77,377,'Subscriber',94002); +INSERT INTO "trip" VALUES(907718,1378,'8/27/2015 8:52','San Francisco Caltrain 2 (330 Townsend)',69,'8/27/2015 9:15','Clay at Battery',41,560,'Subscriber',94022); +INSERT INTO "trip" VALUES(907719,134,'8/27/2015 8:52','Beale at Market',56,'8/27/2015 8:54','Temporary Transbay Terminal (Howard at Beale)',55,589,'Subscriber',94110); +INSERT INTO "trip" VALUES(907720,229,'8/27/2015 8:53','2nd at Folsom',62,'8/27/2015 8:57','Market at Sansome',77,336,'Subscriber',95060); +INSERT INTO "trip" VALUES(907721,794,'8/27/2015 8:53','Civic Center BART (7th at Market)',72,'8/27/2015 9:06','Temporary Transbay Terminal (Howard at Beale)',55,482,'Subscriber',94103); +INSERT INTO "trip" VALUES(907722,354,'8/27/2015 8:53','Market at Sansome',77,'8/27/2015 8:59','2nd at Folsom',62,395,'Subscriber',94612); +INSERT INTO "trip" VALUES(907723,258,'8/27/2015 8:53','San Francisco Caltrain 2 (330 Townsend)',69,'8/27/2015 8:57','Townsend at 7th',65,568,'Subscriber',94040); +INSERT INTO "trip" VALUES(907724,396,'8/27/2015 8:53','Steuart at Market',74,'8/27/2015 9:00','Embarcadero at Sansome',60,672,'Subscriber',94565); +INSERT INTO "trip" VALUES(907725,588,'8/27/2015 8:54','Harry Bridges Plaza (Ferry Building)',50,'8/27/2015 9:03','2nd at Townsend',61,511,'Subscriber',94612); +INSERT INTO "trip" VALUES(907726,736,'8/27/2015 8:54','San Francisco Caltrain 2 (330 Townsend)',69,'8/27/2015 9:06','Civic Center BART (7th at Market)',72,370,'Subscriber',94040); +INSERT INTO "trip" VALUES(907727,268,'8/27/2015 8:54','Davis at Jackson',42,'8/27/2015 8:58','Broadway St at Battery St',82,470,'Subscriber',94706); +INSERT INTO "trip" VALUES(907728,225,'8/27/2015 8:54','San Francisco Caltrain (Townsend at 4th)',70,'8/27/2015 8:58','2nd at Townsend',61,432,'Subscriber',94403); +INSERT INTO "trip" VALUES(907729,869,'8/27/2015 8:55','Powell at Post (Union Square)',71,'8/27/2015 9:09','Davis at Jackson',42,514,'Subscriber',94109); +INSERT INTO "trip" VALUES(907731,329,'8/27/2015 8:56','Embarcadero at Sansome',60,'8/27/2015 9:01','Steuart at Market',74,448,'Subscriber',94133); +INSERT INTO "trip" VALUES(907733,543,'8/27/2015 8:56','Civic Center BART (7th at Market)',72,'8/27/2015 9:05','Townsend at 7th',65,426,'Subscriber',94551); +INSERT INTO "trip" VALUES(907734,946,'8/27/2015 8:56','San Francisco Caltrain 2 (330 Townsend)',69,'8/27/2015 9:12','Market at 10th',67,397,'Customer',94403); +INSERT INTO "trip" VALUES(907735,1127,'8/27/2015 8:56','San Francisco Caltrain 2 (330 Townsend)',69,'8/27/2015 9:15','Broadway St at Battery St',82,534,'Subscriber',94403); +INSERT INTO "trip" VALUES(907736,682,'8/27/2015 8:56','San Francisco Caltrain 2 (330 Townsend)',69,'8/27/2015 9:08','Steuart at Market',74,506,'Subscriber',94002); +INSERT INTO "trip" VALUES(907737,701,'8/27/2015 8:56','Harry Bridges Plaza (Ferry Building)',50,'8/27/2015 9:08','San Francisco Caltrain (Townsend at 4th)',70,404,'Subscriber',94591); +INSERT INTO "trip" VALUES(907738,521,'8/27/2015 8:56','Harry Bridges Plaza (Ferry Building)',50,'8/27/2015 9:05','Yerba Buena Center of the Arts (3rd @ Howard)',68,489,'Subscriber',94901); +INSERT INTO "trip" VALUES(907739,566,'8/27/2015 8:57','Harry Bridges Plaza (Ferry Building)',50,'8/27/2015 9:06','Powell Street BART',39,326,'Subscriber',94941); +INSERT INTO "trip" VALUES(907740,657,'8/27/2015 8:57','Harry Bridges Plaza (Ferry Building)',50,'8/27/2015 9:08','5th at Howard',57,501,'Subscriber',94903); +INSERT INTO "trip" VALUES(907741,243,'8/27/2015 8:57','Embarcadero at Folsom',51,'8/27/2015 9:01','Mechanics Plaza (Market at Battery)',75,555,'Subscriber',94105); +INSERT INTO "trip" VALUES(907742,836,'8/27/2015 8:57','San Francisco Caltrain 2 (330 Townsend)',69,'8/27/2015 9:11','Broadway St at Battery St',82,288,'Subscriber',95130); +INSERT INTO "trip" VALUES(907743,616,'8/27/2015 8:57','Howard at 2nd',63,'8/27/2015 9:08','San Francisco Caltrain (Townsend at 4th)',70,356,'Subscriber',94703); +INSERT INTO "trip" VALUES(907744,454,'8/27/2015 8:57','Powell Street BART',39,'8/27/2015 9:05','San Francisco Caltrain (Townsend at 4th)',70,436,'Subscriber',2780); +INSERT INTO "trip" VALUES(907745,684,'8/27/2015 8:58','San Francisco Caltrain 2 (330 Townsend)',69,'8/27/2015 9:09','Temporary Transbay Terminal (Howard at Beale)',55,562,'Subscriber',94402); +INSERT INTO "trip" VALUES(907746,457,'8/27/2015 8:58','Redwood City Caltrain Station',22,'8/27/2015 9:05','Redwood City Medical Center',26,690,'Subscriber',94040); +INSERT INTO "trip" VALUES(907747,680,'8/27/2015 8:58','San Francisco Caltrain (Townsend at 4th)',70,'8/27/2015 9:09','Temporary Transbay Terminal (Howard at Beale)',55,314,'Subscriber',94117); +INSERT INTO "trip" VALUES(907748,536,'8/27/2015 8:58','Harry Bridges Plaza (Ferry Building)',50,'8/27/2015 9:07','2nd at Townsend',61,393,'Subscriber',94949); +INSERT INTO "trip" VALUES(907749,293,'8/27/2015 8:58','Broadway St at Battery St',82,'8/27/2015 9:03','Embarcadero at Folsom',51,636,'Subscriber',94133); +INSERT INTO "trip" VALUES(907750,273,'8/27/2015 8:58','Davis at Jackson',42,'8/27/2015 9:03','Mechanics Plaza (Market at Battery)',75,621,'Subscriber',94121); +INSERT INTO "trip" VALUES(907751,771,'8/27/2015 8:58','Townsend at 7th',65,'8/27/2015 9:11','Howard at 2nd',63,493,'Subscriber',94116); +INSERT INTO "trip" VALUES(907753,415,'8/27/2015 8:58','2nd at South Park',64,'8/27/2015 9:05','Post at Kearny',47,421,'Subscriber',94107); +INSERT INTO "trip" VALUES(907754,401,'8/27/2015 8:58','Beale at Market',56,'8/27/2015 9:05','Broadway St at Battery St',82,423,'Subscriber',94618); +INSERT INTO "trip" VALUES(907755,323,'8/27/2015 8:59','Broadway St at Battery St',82,'8/27/2015 9:04','Mechanics Plaza (Market at Battery)',75,431,'Subscriber',94960); +INSERT INTO "trip" VALUES(907756,885,'8/27/2015 8:59','Harry Bridges Plaza (Ferry Building)',50,'8/27/2015 9:14','Townsend at 7th',65,877,'Subscriber',94903); +INSERT INTO "trip" VALUES(907758,478,'8/27/2015 9:00','2nd at Townsend',61,'8/27/2015 9:08','Steuart at Market',74,487,'Subscriber',94158); +INSERT INTO "trip" VALUES(907759,510,'8/27/2015 8:59','Harry Bridges Plaza (Ferry Building)',50,'8/27/2015 9:08','2nd at Townsend',61,606,'Subscriber',94901); +INSERT INTO "trip" VALUES(907760,271,'8/27/2015 9:00','Powell at Post (Union Square)',71,'8/27/2015 9:04','Yerba Buena Center of the Arts (3rd @ Howard)',68,328,'Subscriber',94123); +INSERT INTO "trip" VALUES(907761,419,'8/27/2015 9:00','Steuart at Market',74,'8/27/2015 9:07','Embarcadero at Sansome',60,56,'Subscriber',94111); +INSERT INTO "trip" VALUES(907762,450,'8/27/2015 9:00','Embarcadero at Sansome',60,'8/27/2015 9:08','Mechanics Plaza (Market at Battery)',75,389,'Subscriber',94133); +INSERT INTO "trip" VALUES(907763,427,'8/27/2015 9:00','Market at Sansome',77,'8/27/2015 9:08','2nd at Townsend',61,336,'Subscriber',94611); +INSERT INTO "trip" VALUES(907764,300,'8/27/2015 9:01','Temporary Transbay Terminal (Howard at Beale)',55,'8/27/2015 9:06','Steuart at Market',74,589,'Subscriber',95620); +INSERT INTO "trip" VALUES(907766,127,'8/27/2015 9:02','Powell Street BART',39,'8/27/2015 9:04','5th at Howard',57,445,'Subscriber',94024); +INSERT INTO "trip" VALUES(907767,657,'8/27/2015 9:02','Ryland Park',84,'8/27/2015 9:13','San Jose Diridon Caltrain Station',2,157,'Subscriber',95112); +INSERT INTO "trip" VALUES(907768,422,'8/27/2015 9:02','Steuart at Market',74,'8/27/2015 9:09','Howard at 2nd',63,527,'Subscriber',94903); +INSERT INTO "trip" VALUES(907769,307,'8/27/2015 9:02','Harry Bridges Plaza (Ferry Building)',50,'8/27/2015 9:08','Embarcadero at Sansome',60,212,'Subscriber',94947); +INSERT INTO "trip" VALUES(907770,559,'8/27/2015 9:03','2nd at Townsend',61,'8/27/2015 9:12','Embarcadero at Folsom',51,461,'Subscriber',95148); +INSERT INTO "trip" VALUES(907771,393,'8/27/2015 9:03','Powell Street BART',39,'8/27/2015 9:10','San Francisco Caltrain 2 (330 Townsend)',69,111,'Subscriber',94107); +INSERT INTO "trip" VALUES(907772,867,'8/27/2015 9:04','Rengstorff Avenue / California Street',33,'8/27/2015 9:18','Mountain View Caltrain Station',28,22,'Subscriber',94040); +INSERT INTO "trip" VALUES(907773,466,'8/27/2015 9:04','Powell at Post (Union Square)',71,'8/27/2015 9:12','Steuart at Market',74,496,'Subscriber',94108); +INSERT INTO "trip" VALUES(907774,259,'8/27/2015 9:05','Mountain View Caltrain Station',28,'8/27/2015 9:09','Mountain View City Hall',27,48,'Subscriber',94107); +INSERT INTO "trip" VALUES(907775,670,'8/27/2015 9:06','Temporary Transbay Terminal (Howard at Beale)',55,'8/27/2015 9:17','San Francisco Caltrain (Townsend at 4th)',70,392,'Subscriber',94610); +INSERT INTO "trip" VALUES(907778,372,'8/27/2015 9:06','Embarcadero at Folsom',51,'8/27/2015 9:12','2nd at Townsend',61,594,'Subscriber',94609); +INSERT INTO "trip" VALUES(907779,400,'8/27/2015 9:08','Market at Sansome',77,'8/27/2015 9:14','2nd at South Park',64,329,'Subscriber',94105); +INSERT INTO "trip" VALUES(907780,483,'8/27/2015 9:08','San Jose Diridon Caltrain Station',2,'8/27/2015 9:16','St James Park',13,231,'Subscriber',94105); +INSERT INTO "trip" VALUES(907781,847,'8/27/2015 9:08','South Van Ness at Market',66,'8/27/2015 9:22','2nd at South Park',64,449,'Subscriber',94114); +INSERT INTO "trip" VALUES(907782,483,'8/27/2015 9:08','Beale at Market',56,'8/27/2015 9:16','2nd at South Park',64,407,'Subscriber',94607); +INSERT INTO "trip" VALUES(907783,581,'8/27/2015 9:10','Temporary Transbay Terminal (Howard at Beale)',55,'8/27/2015 9:19','2nd at South Park',64,325,'Subscriber',94710); +INSERT INTO "trip" VALUES(907786,788,'8/27/2015 9:11','Ryland Park',84,'8/27/2015 9:24','San Jose Diridon Caltrain Station',2,701,'Subscriber',95110); +INSERT INTO "trip" VALUES(907787,1037,'8/27/2015 9:11','Civic Center BART (7th at Market)',72,'8/27/2015 9:29','Mechanics Plaza (Market at Battery)',75,520,'Subscriber',94065); +INSERT INTO "trip" VALUES(907790,267,'8/27/2015 9:12','2nd at Folsom',62,'8/27/2015 9:17','2nd at Townsend',61,362,'Subscriber',94105); +INSERT INTO "trip" VALUES(907791,536,'8/27/2015 9:12','Market at 4th',76,'8/27/2015 9:21','Market at 10th',67,383,'Subscriber',11201); +INSERT INTO "trip" VALUES(907792,219,'8/27/2015 9:12','San Francisco Caltrain (Townsend at 4th)',70,'8/27/2015 9:16','Townsend at 7th',65,436,'Subscriber',94404); +INSERT INTO "trip" VALUES(907793,713,'8/27/2015 9:12','San Francisco Caltrain (Townsend at 4th)',70,'8/27/2015 9:24','Market at 10th',67,404,'Subscriber',94108); +INSERT INTO "trip" VALUES(907795,356,'8/27/2015 9:13','San Francisco Caltrain 2 (330 Townsend)',69,'8/27/2015 9:19','Yerba Buena Center of the Arts (3rd @ Howard)',68,111,'Subscriber',94306); +INSERT INTO "trip" VALUES(907797,740,'8/27/2015 9:13','San Francisco Caltrain (Townsend at 4th)',70,'8/27/2015 9:25','Mechanics Plaza (Market at Battery)',75,356,'Subscriber',94301); +INSERT INTO "trip" VALUES(907798,608,'8/27/2015 9:13','San Francisco Caltrain 2 (330 Townsend)',69,'8/27/2015 9:23','Market at Sansome',77,440,'Subscriber',94306); +INSERT INTO "trip" VALUES(907799,321,'8/27/2015 9:13','Broadway St at Battery St',82,'8/27/2015 9:18','Temporary Transbay Terminal (Howard at Beale)',55,541,'Subscriber',94566); +INSERT INTO "trip" VALUES(907800,653,'8/27/2015 9:13','Spear at Folsom',49,'8/27/2015 9:24','Townsend at 7th',65,453,'Subscriber',94110); +INSERT INTO "trip" VALUES(907801,204,'8/27/2015 9:13','Market at 4th',76,'8/27/2015 9:17','Civic Center BART (7th at Market)',72,625,'Subscriber',94602); +INSERT INTO "trip" VALUES(907802,555,'8/27/2015 9:13','San Francisco Caltrain 2 (330 Townsend)',69,'8/27/2015 9:22','Market at Sansome',77,607,'Subscriber',95134); +INSERT INTO "trip" VALUES(907803,337,'8/27/2015 9:13','Mountain View Caltrain Station',28,'8/27/2015 9:19','Castro Street and El Camino Real',32,194,'Subscriber',94401); +INSERT INTO "trip" VALUES(907804,683,'8/27/2015 9:13','Townsend at 7th',65,'8/27/2015 9:25','Powell Street BART',39,568,'Subscriber',94107); +INSERT INTO "trip" VALUES(907805,222,'8/27/2015 9:13','Harry Bridges Plaza (Ferry Building)',50,'8/27/2015 9:17','Embarcadero at Folsom',51,317,'Subscriber',95442); +INSERT INTO "trip" VALUES(907806,556,'8/27/2015 9:13','Harry Bridges Plaza (Ferry Building)',50,'8/27/2015 9:23','Post at Kearny',47,189,'Subscriber',95442); +INSERT INTO "trip" VALUES(907808,473,'8/27/2015 9:13','Civic Center BART (7th at Market)',72,'8/27/2015 9:21','Townsend at 7th',65,525,'Subscriber',94618); +INSERT INTO "trip" VALUES(907809,501,'8/27/2015 9:14','Harry Bridges Plaza (Ferry Building)',50,'8/27/2015 9:22','2nd at South Park',64,446,'Subscriber',94920); +INSERT INTO "trip" VALUES(907811,422,'8/27/2015 9:14','San Francisco Caltrain 2 (330 Townsend)',69,'8/27/2015 9:21','Howard at 2nd',63,260,'Subscriber',94070); +INSERT INTO "trip" VALUES(907812,922,'8/27/2015 9:14','5th at Howard',57,'8/27/2015 9:29','Broadway St at Battery St',82,29,'Subscriber',94107); +INSERT INTO "trip" VALUES(907813,561,'8/27/2015 9:14','Golden Gate at Polk',59,'8/27/2015 9:23','Beale at Market',56,315,'Subscriber',94109); +INSERT INTO "trip" VALUES(907814,513,'8/27/2015 9:15','Embarcadero at Folsom',51,'8/27/2015 9:23','Washington at Kearny',46,419,'Subscriber',94105); +INSERT INTO "trip" VALUES(907815,727,'8/27/2015 9:15','Market at 10th',67,'8/27/2015 9:27','Beale at Market',56,462,'Subscriber',94117); +INSERT INTO "trip" VALUES(907816,1593,'8/27/2015 9:15','Clay at Battery',41,'8/27/2015 9:41','San Francisco Caltrain (Townsend at 4th)',70,327,'Subscriber',94133); +INSERT INTO "trip" VALUES(907817,81,'8/27/2015 9:16','2nd at South Park',64,'8/27/2015 9:17','2nd at Townsend',61,583,'Subscriber',94107); +INSERT INTO "trip" VALUES(907818,589,'8/27/2015 9:16','Market at 10th',67,'8/27/2015 9:25','Market at Sansome',77,275,'Subscriber',94102); +INSERT INTO "trip" VALUES(907819,545,'8/27/2015 9:16','Golden Gate at Polk',59,'8/27/2015 9:25','Yerba Buena Center of the Arts (3rd @ Howard)',68,382,'Subscriber',94941); +INSERT INTO "trip" VALUES(907820,450,'8/27/2015 9:16','Steuart at Market',74,'8/27/2015 9:24','2nd at Townsend',61,448,'Subscriber',94563); +INSERT INTO "trip" VALUES(907821,320,'8/27/2015 9:17','Market at 10th',67,'8/27/2015 9:22','Powell Street BART',39,387,'Subscriber',94102); +INSERT INTO "trip" VALUES(907822,313,'8/27/2015 9:17','Temporary Transbay Terminal (Howard at Beale)',55,'8/27/2015 9:22','Embarcadero at Bryant',54,482,'Subscriber',94610); +INSERT INTO "trip" VALUES(907823,488,'8/27/2015 9:17','2nd at Townsend',61,'8/27/2015 9:25','Harry Bridges Plaza (Ferry Building)',50,569,'Subscriber',94107); +INSERT INTO "trip" VALUES(907824,495,'8/27/2015 9:17','Temporary Transbay Terminal (Howard at Beale)',55,'8/27/2015 9:25','Davis at Jackson',42,386,'Subscriber',94602); +INSERT INTO "trip" VALUES(907825,684,'8/27/2015 9:17','San Francisco Caltrain (Townsend at 4th)',70,'8/27/2015 9:29','Davis at Jackson',42,392,'Subscriber',95120); +INSERT INTO "trip" VALUES(907826,328,'8/27/2015 9:19','Embarcadero at Folsom',51,'8/27/2015 9:25','2nd at South Park',64,461,'Subscriber',94587); +INSERT INTO "trip" VALUES(907827,573,'8/27/2015 9:20','2nd at Townsend',61,'8/27/2015 9:29','Market at 4th',76,594,'Subscriber',94107); +INSERT INTO "trip" VALUES(907828,251,'8/27/2015 9:21','Washington at Kearny',46,'8/27/2015 9:25','Beale at Market',56,465,'Subscriber',94133); +INSERT INTO "trip" VALUES(907829,1086,'8/27/2015 9:21','Palo Alto Caltrain Station',34,'8/27/2015 9:39','California Ave Caltrain Station',36,649,'Subscriber',94611); +INSERT INTO "trip" VALUES(907830,115,'8/27/2015 9:21','Harry Bridges Plaza (Ferry Building)',50,'8/27/2015 9:23','Steuart at Market',74,602,'Subscriber',94501); +INSERT INTO "trip" VALUES(907831,1405,'8/27/2015 9:21','Temporary Transbay Terminal (Howard at Beale)',55,'8/27/2015 9:45','South Van Ness at Market',66,134,'Subscriber',94611); +INSERT INTO "trip" VALUES(907832,497,'8/27/2015 9:21','Embarcadero at Folsom',51,'8/27/2015 9:30','San Francisco Caltrain (Townsend at 4th)',70,636,'Subscriber',94501); +INSERT INTO "trip" VALUES(907833,126,'8/27/2015 9:22','Redwood City Caltrain Station',22,'8/27/2015 9:24','San Mateo County Center',23,671,'Subscriber',94707); +INSERT INTO "trip" VALUES(907834,473,'8/27/2015 9:23','Market at 10th',67,'8/27/2015 9:30','Post at Kearny',47,383,'Subscriber',94102); +INSERT INTO "trip" VALUES(907835,948,'8/27/2015 9:23','Temporary Transbay Terminal (Howard at Beale)',55,'8/27/2015 9:39','Townsend at 7th',65,361,'Subscriber',94608); +INSERT INTO "trip" VALUES(907836,317,'8/27/2015 9:23','Temporary Transbay Terminal (Howard at Beale)',55,'8/27/2015 9:28','2nd at Townsend',61,562,'Subscriber',94608); +INSERT INTO "trip" VALUES(907837,220,'8/27/2015 9:23','Civic Center BART (7th at Market)',72,'8/27/2015 9:27','Market at 4th',76,279,'Subscriber',94103); +INSERT INTO "trip" VALUES(907838,605,'8/27/2015 9:23','Steuart at Market',74,'8/27/2015 9:33','2nd at Townsend',61,506,'Subscriber',94501); +INSERT INTO "trip" VALUES(907839,711,'8/27/2015 9:24','Golden Gate at Polk',59,'8/27/2015 9:36','San Francisco Caltrain 2 (330 Townsend)',69,313,'Subscriber',94107); +INSERT INTO "trip" VALUES(907840,434,'8/27/2015 9:24','Temporary Transbay Terminal (Howard at Beale)',55,'8/27/2015 9:31','Broadway St at Battery St',82,549,'Subscriber',94602); +INSERT INTO "trip" VALUES(907841,512,'8/27/2015 9:24','2nd at Townsend',61,'8/27/2015 9:33','Spear at Folsom',49,413,'Subscriber',94404); +INSERT INTO "trip" VALUES(907842,187,'8/27/2015 9:24','Steuart at Market',74,'8/27/2015 9:27','Davis at Jackson',42,602,'Subscriber',94608); +INSERT INTO "trip" VALUES(907843,291,'8/27/2015 9:24','Beale at Market',56,'8/27/2015 9:29','Broadway St at Battery St',82,269,'Subscriber',94111); +INSERT INTO "trip" VALUES(907844,405,'8/27/2015 9:24','2nd at South Park',64,'8/27/2015 9:31','Market at Sansome',77,533,'Subscriber',94107); +INSERT INTO "trip" VALUES(907845,289,'8/27/2015 9:25','Clay at Battery',41,'8/27/2015 9:29','Temporary Transbay Terminal (Howard at Beale)',55,353,'Subscriber',94111); +INSERT INTO "trip" VALUES(907846,533,'8/27/2015 9:25','Embarcadero at Bryant',54,'8/27/2015 9:34','Washington at Kearny',46,482,'Subscriber',94105); +INSERT INTO "trip" VALUES(907847,785,'8/27/2015 9:26','2nd at Townsend',61,'8/27/2015 9:39','Davis at Jackson',42,432,'Subscriber',95051); +INSERT INTO "trip" VALUES(907849,405,'8/27/2015 9:26','Steuart at Market',74,'8/27/2015 9:33','Embarcadero at Sansome',60,529,'Subscriber',94612); +INSERT INTO "trip" VALUES(907850,597,'8/27/2015 9:27','2nd at Townsend',61,'8/27/2015 9:37','Broadway St at Battery St',82,393,'Subscriber',95129); +INSERT INTO "trip" VALUES(907851,609,'8/27/2015 9:27','2nd at Townsend',61,'8/27/2015 9:37','Broadway St at Battery St',82,583,'Subscriber',95111); +INSERT INTO "trip" VALUES(907852,296,'8/27/2015 9:27','5th at Howard',57,'8/27/2015 9:32','San Francisco Caltrain 2 (330 Townsend)',69,459,'Subscriber',94103); +INSERT INTO "trip" VALUES(907853,656,'8/27/2015 9:27','Howard at 2nd',63,'8/27/2015 9:38','Embarcadero at Bryant',54,493,'Subscriber',94066); +INSERT INTO "trip" VALUES(907854,414,'8/27/2015 9:27','2nd at Folsom',62,'8/27/2015 9:34','San Francisco Caltrain (Townsend at 4th)',70,502,'Subscriber',94107); +INSERT INTO "trip" VALUES(907855,327,'8/27/2015 9:28','5th at Howard',57,'8/27/2015 9:33','Market at 4th',76,384,'Subscriber',94103); +INSERT INTO "trip" VALUES(907856,269,'8/27/2015 9:28','2nd at Townsend',61,'8/27/2015 9:32','Howard at 2nd',63,606,'Subscriber',94111); +INSERT INTO "trip" VALUES(907857,649,'8/27/2015 9:29','Temporary Transbay Terminal (Howard at Beale)',55,'8/27/2015 9:40','2nd at Townsend',61,364,'Subscriber',94549); +INSERT INTO "trip" VALUES(907858,269,'8/27/2015 9:29','2nd at Townsend',61,'8/27/2015 9:33','San Francisco Caltrain (Townsend at 4th)',70,562,'Subscriber',94107); +INSERT INTO "trip" VALUES(907859,812,'8/27/2015 9:29','Embarcadero at Sansome',60,'8/27/2015 9:42','Powell Street BART',39,672,'Subscriber',94133); +INSERT INTO "trip" VALUES(907860,742,'8/27/2015 9:29','2nd at Townsend',61,'8/27/2015 9:42','Davis at Jackson',42,362,'Subscriber',94086); +INSERT INTO "trip" VALUES(907861,337,'8/27/2015 9:29','Rengstorff Avenue / California Street',33,'8/27/2015 9:35','San Antonio Caltrain Station',29,239,'Subscriber',94041); +INSERT INTO "trip" VALUES(907862,735,'8/27/2015 9:30','Yerba Buena Center of the Arts (3rd @ Howard)',68,'8/27/2015 9:42','Clay at Battery',41,548,'Subscriber',94117); +INSERT INTO "trip" VALUES(907863,645,'8/27/2015 9:30','Rengstorff Avenue / California Street',33,'8/27/2015 9:40','Mountain View Caltrain Station',28,693,'Subscriber',94040); +INSERT INTO "trip" VALUES(907864,2441,'8/27/2015 9:30','Market at 10th',67,'8/27/2015 10:11','Powell at Post (Union Square)',71,518,'Customer',20832); +INSERT INTO "trip" VALUES(907865,746,'8/27/2015 9:30','San Francisco Caltrain (Townsend at 4th)',70,'8/27/2015 9:42','Harry Bridges Plaza (Ferry Building)',50,636,'Subscriber',94062); +INSERT INTO "trip" VALUES(907866,2405,'8/27/2015 9:30','Market at 10th',67,'8/27/2015 10:10','Powell at Post (Union Square)',71,404,'Customer',20832); +INSERT INTO "trip" VALUES(907868,338,'8/27/2015 9:30','Embarcadero at Sansome',60,'8/27/2015 9:36','Steuart at Market',74,585,'Customer','nil'); +INSERT INTO "trip" VALUES(907869,641,'8/27/2015 9:31','San Francisco Caltrain 2 (330 Townsend)',69,'8/27/2015 9:41','Market at 10th',67,429,'Subscriber',95119); +INSERT INTO "trip" VALUES(907870,488,'8/27/2015 9:31','Steuart at Market',74,'8/27/2015 9:39','Embarcadero at Sansome',60,487,'Subscriber',94521); +INSERT INTO "trip" VALUES(907871,538,'8/27/2015 9:32','2nd at Townsend',61,'8/27/2015 9:41','Market at Sansome',77,511,'Subscriber',94303); +INSERT INTO "trip" VALUES(907872,314,'8/27/2015 9:32','Market at Sansome',77,'8/27/2015 9:37','2nd at South Park',64,491,'Subscriber',94122); +INSERT INTO "trip" VALUES(907873,152,'8/27/2015 9:32','Steuart at Market',74,'8/27/2015 9:35','Spear at Folsom',49,400,'Subscriber',94582); +INSERT INTO "trip" VALUES(907874,827,'8/27/2015 9:32','2nd at Townsend',61,'8/27/2015 9:46','Embarcadero at Sansome',60,448,'Subscriber',94027); +INSERT INTO "trip" VALUES(907875,747,'8/27/2015 9:33','Market at 10th',67,'8/27/2015 9:45','Market at Sansome',77,335,'Subscriber',94301); +INSERT INTO "trip" VALUES(907876,1335,'8/27/2015 9:33','San Francisco Caltrain (Townsend at 4th)',70,'8/27/2015 9:56','Steuart at Market',74,373,'Subscriber',94404); +INSERT INTO "trip" VALUES(907877,749,'8/27/2015 9:35','Market at 10th',67,'8/27/2015 9:47','2nd at Townsend',61,397,'Subscriber',94549); +INSERT INTO "trip" VALUES(907878,256,'8/27/2015 9:35','Beale at Market',56,'8/27/2015 9:40','Spear at Folsom',49,462,'Subscriber',94611); +INSERT INTO "trip" VALUES(907879,708,'8/27/2015 9:36','Davis at Jackson',42,'8/27/2015 9:47','2nd at Townsend',61,331,'Subscriber',94111); +INSERT INTO "trip" VALUES(907880,327,'8/27/2015 9:37','Embarcadero at Sansome',60,'8/27/2015 9:42','Clay at Battery',41,352,'Subscriber',94107); +INSERT INTO "trip" VALUES(907882,487,'8/27/2015 9:37','Beale at Market',56,'8/27/2015 9:45','Davis at Jackson',42,623,'Subscriber',94112); +INSERT INTO "trip" VALUES(907883,537,'8/27/2015 9:38','Townsend at 7th',65,'8/27/2015 9:46','Market at 10th',67,426,'Subscriber',94061); +INSERT INTO "trip" VALUES(907884,270,'8/27/2015 9:38','Townsend at 7th',65,'8/27/2015 9:42','San Francisco Caltrain (Townsend at 4th)',70,436,'Subscriber',94107); +INSERT INTO "trip" VALUES(907886,581,'8/27/2015 9:38','Temporary Transbay Terminal (Howard at Beale)',55,'8/27/2015 9:48','San Francisco Caltrain (Townsend at 4th)',70,353,'Subscriber',94602); +INSERT INTO "trip" VALUES(907887,761,'8/27/2015 9:38','Temporary Transbay Terminal (Howard at Beale)',55,'8/27/2015 9:51','Townsend at 7th',65,541,'Subscriber',94608); +INSERT INTO "trip" VALUES(907890,463,'8/27/2015 9:39','5th at Howard',57,'8/27/2015 9:47','Post at Kearny',47,503,'Subscriber',94107); +INSERT INTO "trip" VALUES(907891,647,'8/27/2015 9:39','2nd at South Park',64,'8/27/2015 9:50','Davis at Jackson',42,491,'Subscriber',94602); +INSERT INTO "trip" VALUES(907892,291,'8/27/2015 9:39','Mechanics Plaza (Market at Battery)',75,'8/27/2015 9:44','Embarcadero at Folsom',51,555,'Subscriber',94941); +INSERT INTO "trip" VALUES(907893,357,'8/27/2015 9:40','Mechanics Plaza (Market at Battery)',75,'8/27/2015 9:46','Clay at Battery',41,96,'Subscriber',94704); +INSERT INTO "trip" VALUES(907895,543,'8/27/2015 9:40','Townsend at 7th',65,'8/27/2015 9:49','2nd at Townsend',61,877,'Subscriber',94107); +INSERT INTO "trip" VALUES(907896,275,'8/27/2015 9:41','San Jose Diridon Caltrain Station',2,'8/27/2015 9:45','Santa Clara at Almaden',4,205,'Subscriber',94114); +INSERT INTO "trip" VALUES(907898,566,'8/27/2015 9:41','Civic Center BART (7th at Market)',72,'8/27/2015 9:51','Beale at Market',56,567,'Subscriber',94103); +INSERT INTO "trip" VALUES(907899,438,'8/27/2015 9:42','Harry Bridges Plaza (Ferry Building)',50,'8/27/2015 9:49','Embarcadero at Bryant',54,569,'Subscriber',94114); +INSERT INTO "trip" VALUES(907900,282,'8/27/2015 9:42','5th at Howard',57,'8/27/2015 9:47','San Francisco Caltrain (Townsend at 4th)',70,374,'Subscriber',94103); +INSERT INTO "trip" VALUES(907901,928,'8/27/2015 9:43','2nd at South Park',64,'8/27/2015 9:58','Harry Bridges Plaza (Ferry Building)',50,329,'Subscriber',94107); +INSERT INTO "trip" VALUES(907902,431,'8/27/2015 9:43','Embarcadero at Bryant',54,'8/27/2015 9:50','San Francisco Caltrain (Townsend at 4th)',70,620,'Subscriber',94105); +INSERT INTO "trip" VALUES(907903,444,'8/27/2015 9:43','Howard at 2nd',63,'8/27/2015 9:51','Washington at Kearny',46,508,'Subscriber',94608); +INSERT INTO "trip" VALUES(907904,375,'8/27/2015 9:44','Beale at Market',56,'8/27/2015 9:50','Clay at Battery',41,574,'Subscriber',94114); +INSERT INTO "trip" VALUES(907905,268,'8/27/2015 9:45','Post at Kearny',47,'8/27/2015 9:49','Powell Street BART',39,442,'Subscriber',94707); +INSERT INTO "trip" VALUES(907906,510,'8/27/2015 9:45','Powell Street BART',39,'8/27/2015 9:54','2nd at Folsom',62,387,'Customer',78702); +INSERT INTO "trip" VALUES(907908,970,'8/27/2015 9:46','2nd at South Park',64,'8/27/2015 10:03','Washington at Kearny',46,347,'Subscriber',94107); +INSERT INTO "trip" VALUES(907910,310,'8/27/2015 9:47','2nd at South Park',64,'8/27/2015 9:52','5th at Howard',57,322,'Subscriber',94002); +INSERT INTO "trip" VALUES(907911,432,'8/27/2015 9:47','Powell Street BART',39,'8/27/2015 9:54','San Francisco Caltrain 2 (330 Townsend)',69,568,'Subscriber',94107); +INSERT INTO "trip" VALUES(907915,242,'8/27/2015 9:48','Townsend at 7th',65,'8/27/2015 9:53','San Francisco Caltrain 2 (330 Townsend)',69,453,'Subscriber',94107); +INSERT INTO "trip" VALUES(907916,981,'8/27/2015 9:49','Harry Bridges Plaza (Ferry Building)',50,'8/27/2015 10:05','Broadway St at Battery St',82,636,'Subscriber',94114); +INSERT INTO "trip" VALUES(907918,565,'8/27/2015 9:49','Market at 4th',76,'8/27/2015 9:58','2nd at South Park',64,594,'Subscriber',94526); +INSERT INTO "trip" VALUES(907920,127,'8/27/2015 9:49','Beale at Market',56,'8/27/2015 9:51','Temporary Transbay Terminal (Howard at Beale)',55,465,'Subscriber',94114); +INSERT INTO "trip" VALUES(907921,902,'8/27/2015 9:49','Temporary Transbay Terminal (Howard at Beale)',55,'8/27/2015 10:04','Market at 10th',67,314,'Subscriber',94706); +INSERT INTO "trip" VALUES(907922,545,'8/27/2015 9:49','San Francisco Caltrain (Townsend at 4th)',70,'8/27/2015 9:59','Embarcadero at Folsom',51,562,'Subscriber',95129); +INSERT INTO "trip" VALUES(907923,326,'8/27/2015 9:50','San Francisco Caltrain (Townsend at 4th)',70,'8/27/2015 9:55','Townsend at 7th',65,353,'Subscriber',94086); +INSERT INTO "trip" VALUES(907924,303,'8/27/2015 9:50','Mezes Park',83,'8/27/2015 9:55','Redwood City Caltrain Station',22,294,'Subscriber',94063); +INSERT INTO "trip" VALUES(907925,412,'8/27/2015 9:51','San Francisco Caltrain (Townsend at 4th)',70,'8/27/2015 9:58','Yerba Buena Center of the Arts (3rd @ Howard)',68,620,'Subscriber',94070); +INSERT INTO "trip" VALUES(907926,327,'8/27/2015 9:51','Mountain View Caltrain Station',28,'8/27/2015 9:56','Evelyn Park and Ride',30,258,'Subscriber',94110); +INSERT INTO "trip" VALUES(907927,1922,'8/27/2015 9:51','Market at 4th',76,'8/27/2015 10:23','Davis at Jackson',42,552,'Customer','nil'); +INSERT INTO "trip" VALUES(907928,660,'8/27/2015 9:51','Golden Gate at Polk',59,'8/27/2015 10:02','Steuart at Market',74,558,'Subscriber',94102); +INSERT INTO "trip" VALUES(907929,484,'8/27/2015 9:52','San Francisco Caltrain 2 (330 Townsend)',69,'8/27/2015 10:00','Howard at 2nd',63,459,'Subscriber',94063); +INSERT INTO "trip" VALUES(907930,333,'8/27/2015 9:52','Washington at Kearny',46,'8/27/2015 9:57','Market at 4th',76,508,'Subscriber',94133); +INSERT INTO "trip" VALUES(907931,202,'8/27/2015 9:52','Powell at Post (Union Square)',71,'8/27/2015 9:56','Market at Sansome',77,516,'Subscriber',94109); +INSERT INTO "trip" VALUES(907933,1319,'8/27/2015 9:54','Market at 4th',76,'8/27/2015 10:15','Embarcadero at Sansome',60,384,'Customer','nil'); +INSERT INTO "trip" VALUES(907935,316,'8/27/2015 9:54','Howard at 2nd',63,'8/27/2015 9:59','Embarcadero at Folsom',51,606,'Subscriber',94105); +INSERT INTO "trip" VALUES(907937,320,'8/27/2015 9:55','Powell at Post (Union Square)',71,'8/27/2015 10:00','Howard at 2nd',63,631,'Subscriber',94108); +INSERT INTO "trip" VALUES(907941,364,'8/27/2015 9:56','Clay at Battery',41,'8/27/2015 10:02','Market at 4th',76,96,'Subscriber',94130); +INSERT INTO "trip" VALUES(907943,350,'8/27/2015 9:57','Washington at Kearny',46,'8/27/2015 10:03','Market at Sansome',77,320,'Subscriber',94133); +INSERT INTO "trip" VALUES(907945,692,'8/27/2015 9:58','Temporary Transbay Terminal (Howard at Beale)',55,'8/27/2015 10:10','Market at 4th',76,465,'Subscriber',94608); +INSERT INTO "trip" VALUES(907946,598,'8/27/2015 9:59','San Francisco Caltrain 2 (330 Townsend)',69,'8/27/2015 10:09','Temporary Transbay Terminal (Howard at Beale)',55,517,'Subscriber',94401); +INSERT INTO "trip" VALUES(907947,1116,'8/27/2015 9:59','2nd at Folsom',62,'8/27/2015 10:18','Townsend at 7th',65,387,'Subscriber',94105); +INSERT INTO "trip" VALUES(907948,574,'8/27/2015 9:59','Steuart at Market',74,'8/27/2015 10:09','San Francisco Caltrain (Townsend at 4th)',70,338,'Subscriber',94610); +INSERT INTO "trip" VALUES(907949,532,'8/27/2015 10:03','Harry Bridges Plaza (Ferry Building)',50,'8/27/2015 10:12','2nd at Townsend',61,329,'Subscriber',94503); +INSERT INTO "trip" VALUES(907951,177,'8/27/2015 10:05','Mechanics Plaza (Market at Battery)',75,'8/27/2015 10:08','Post at Kearny',47,441,'Subscriber',94702); +INSERT INTO "trip" VALUES(907952,302,'8/27/2015 10:06','Broadway St at Battery St',82,'8/27/2015 10:11','Steuart at Market',74,534,'Subscriber',94133); +INSERT INTO "trip" VALUES(907953,139,'8/27/2015 10:06','Beale at Market',56,'8/27/2015 10:08','Temporary Transbay Terminal (Howard at Beale)',55,579,'Subscriber',94122); +INSERT INTO "trip" VALUES(907954,741,'8/27/2015 10:09','Temporary Transbay Terminal (Howard at Beale)',55,'8/27/2015 10:21','San Francisco Caltrain (Townsend at 4th)',70,579,'Subscriber',94158); +INSERT INTO "trip" VALUES(907956,409,'8/27/2015 10:09','Embarcadero at Folsom',51,'8/27/2015 10:16','Broadway St at Battery St',82,428,'Subscriber',94608); +INSERT INTO "trip" VALUES(907957,414,'8/27/2015 10:09','Grant Avenue at Columbus Avenue',73,'8/27/2015 10:16','Market at Sansome',77,560,'Subscriber',94133); +INSERT INTO "trip" VALUES(907958,666,'8/27/2015 10:10','Powell at Post (Union Square)',71,'8/27/2015 10:21','2nd at Townsend',61,287,'Subscriber',94109); +INSERT INTO "trip" VALUES(907959,814,'8/27/2015 10:12','Washington at Kearny',46,'8/27/2015 10:26','2nd at South Park',64,419,'Subscriber',94133); +INSERT INTO "trip" VALUES(907960,409,'8/27/2015 10:15','Market at 4th',76,'8/27/2015 10:22','San Francisco Caltrain (Townsend at 4th)',70,96,'Subscriber',94607); +INSERT INTO "trip" VALUES(907961,288,'8/27/2015 10:15','Embarcadero at Sansome',60,'8/27/2015 10:20','Harry Bridges Plaza (Ferry Building)',50,529,'Subscriber',94111); +INSERT INTO "trip" VALUES(907962,808,'8/27/2015 10:16','San Francisco Caltrain (Townsend at 4th)',70,'8/27/2015 10:29','Clay at Battery',41,338,'Subscriber',94070); +INSERT INTO "trip" VALUES(907963,224,'8/27/2015 10:16','San Francisco Caltrain 2 (330 Townsend)',69,'8/27/2015 10:20','Townsend at 7th',65,568,'Subscriber',95051); +INSERT INTO "trip" VALUES(907964,681,'8/27/2015 10:16','Market at Sansome',77,'8/27/2015 10:28','San Francisco Caltrain (Townsend at 4th)',70,284,'Subscriber',94549); +INSERT INTO "trip" VALUES(907965,782,'8/27/2015 10:17','Powell at Post (Union Square)',71,'8/27/2015 10:30','Townsend at 7th',65,404,'Subscriber',94595); +INSERT INTO "trip" VALUES(907966,549,'8/27/2015 10:17','San Francisco Caltrain 2 (330 Townsend)',69,'8/27/2015 10:26','Howard at 2nd',63,628,'Customer',95131); +INSERT INTO "trip" VALUES(907967,289,'8/27/2015 10:18','Howard at 2nd',63,'8/27/2015 10:22','Steuart at Market',74,526,'Subscriber',94061); +INSERT INTO "trip" VALUES(907968,1345,'8/27/2015 10:19','San Francisco Caltrain (Townsend at 4th)',70,'8/27/2015 10:41','Market at 10th',67,309,'Subscriber',94306); +INSERT INTO "trip" VALUES(907969,466,'8/27/2015 10:20','Yerba Buena Center of the Arts (3rd @ Howard)',68,'8/27/2015 10:28','Temporary Transbay Terminal (Howard at Beale)',55,382,'Subscriber',94130); +INSERT INTO "trip" VALUES(907970,338,'8/27/2015 10:21','Temporary Transbay Terminal (Howard at Beale)',55,'8/27/2015 10:26','2nd at South Park',64,517,'Subscriber',94610); +INSERT INTO "trip" VALUES(907974,327,'8/27/2015 10:23','Harry Bridges Plaza (Ferry Building)',50,'8/27/2015 10:29','Embarcadero at Sansome',60,529,'Subscriber',94612); +INSERT INTO "trip" VALUES(907975,451,'8/27/2015 10:25','Mechanics Plaza (Market at Battery)',75,'8/27/2015 10:32','Washington at Kearny',46,268,'Subscriber',94702); +INSERT INTO "trip" VALUES(907978,636,'8/27/2015 10:30','Steuart at Market',74,'8/27/2015 10:41','2nd at Townsend',61,530,'Subscriber',94109); +INSERT INTO "trip" VALUES(907981,317,'8/27/2015 10:31','Market at Sansome',77,'8/27/2015 10:37','2nd at South Park',64,332,'Subscriber',94609); +INSERT INTO "trip" VALUES(907984,311,'8/27/2015 10:33','Steuart at Market',74,'8/27/2015 10:38','Embarcadero at Vallejo',48,534,'Subscriber',94610); +INSERT INTO "trip" VALUES(907985,213,'8/27/2015 10:33','Market at Sansome',77,'8/27/2015 10:37','Steuart at Market',74,540,'Subscriber',94133); +INSERT INTO "trip" VALUES(907986,19266,'8/27/2015 10:34','Steuart at Market',74,'8/27/2015 15:55','2nd at Folsom',62,613,'Subscriber',94563); +INSERT INTO "trip" VALUES(907987,919,'8/27/2015 10:35','South Van Ness at Market',66,'8/27/2015 10:50','Washington at Kearny',46,286,'Subscriber',94103); +INSERT INTO "trip" VALUES(907988,843,'8/27/2015 10:37','Spear at Folsom',49,'8/27/2015 10:51','Townsend at 7th',65,462,'Subscriber',94105); +INSERT INTO "trip" VALUES(907989,606,'8/27/2015 10:37','2nd at South Park',64,'8/27/2015 10:47','Commercial at Montgomery',45,619,'Subscriber',94107); +INSERT INTO "trip" VALUES(907990,376,'8/27/2015 10:38','Clay at Battery',41,'8/27/2015 10:44','2nd at Folsom',62,338,'Subscriber',94107); +INSERT INTO "trip" VALUES(907991,379,'8/27/2015 10:39','Market at 4th',76,'8/27/2015 10:45','Market at 10th',67,279,'Subscriber',94133); +INSERT INTO "trip" VALUES(907992,353,'8/27/2015 10:39','San Antonio Caltrain Station',29,'8/27/2015 10:45','San Antonio Shopping Center',31,141,'Subscriber',94040); +INSERT INTO "trip" VALUES(907993,418,'8/27/2015 10:40','Davis at Jackson',42,'8/27/2015 10:47','Market at Sansome',77,386,'Customer',94903); +INSERT INTO "trip" VALUES(907994,428,'8/27/2015 10:40','2nd at Townsend',61,'8/27/2015 10:48','2nd at Folsom',62,506,'Subscriber',94105); +INSERT INTO "trip" VALUES(907996,388,'8/27/2015 10:43','Mountain View Caltrain Station',28,'8/27/2015 10:49','Castro Street and El Camino Real',32,142,'Subscriber',94109); +INSERT INTO "trip" VALUES(907997,462,'8/27/2015 10:45','Powell Street BART',39,'8/27/2015 10:52','San Francisco Caltrain 2 (330 Townsend)',69,442,'Subscriber',94107); +INSERT INTO "trip" VALUES(907998,529,'8/27/2015 10:45','Commercial at Montgomery',45,'8/27/2015 10:54','Market at 4th',76,412,'Subscriber',94133); +INSERT INTO "trip" VALUES(907999,314,'8/27/2015 10:52','Davis at Jackson',42,'8/27/2015 10:57','Harry Bridges Plaza (Ferry Building)',50,432,'Subscriber',94111); +INSERT INTO "trip" VALUES(908000,998,'8/27/2015 10:52','Clay at Battery',41,'8/27/2015 11:09','Townsend at 7th',65,352,'Subscriber',94065); +INSERT INTO "trip" VALUES(908001,507,'8/27/2015 10:54','Harry Bridges Plaza (Ferry Building)',50,'8/27/2015 11:02','2nd at Folsom',62,687,'Subscriber',94973); +INSERT INTO "trip" VALUES(908002,790,'8/27/2015 10:56','California Ave Caltrain Station',36,'8/27/2015 11:09','Palo Alto Caltrain Station',34,649,'Subscriber',94611); +INSERT INTO "trip" VALUES(908003,422,'8/27/2015 10:56','Steuart at Market',74,'8/27/2015 11:03','2nd at Townsend',61,540,'Subscriber',94549); +INSERT INTO "trip" VALUES(908004,932,'8/27/2015 11:00','Civic Center BART (7th at Market)',72,'8/27/2015 11:16','Embarcadero at Bryant',54,625,'Subscriber',94109); +INSERT INTO "trip" VALUES(908005,126,'8/27/2015 11:01','2nd at Folsom',62,'8/27/2015 11:03','Howard at 2nd',63,338,'Subscriber',94110); +INSERT INTO "trip" VALUES(908006,704,'8/27/2015 11:02','San Francisco Caltrain (Townsend at 4th)',70,'8/27/2015 11:14','Temporary Transbay Terminal (Howard at Beale)',55,579,'Subscriber',95014); +INSERT INTO "trip" VALUES(908007,836,'8/27/2015 11:02','San Francisco Caltrain (Townsend at 4th)',70,'8/27/2015 11:16','Market at Sansome',77,284,'Subscriber',94087); +INSERT INTO "trip" VALUES(908008,155,'8/27/2015 11:03','San Francisco City Hall',58,'8/27/2015 11:05','Market at 10th',67,468,'Subscriber',94133); +INSERT INTO "trip" VALUES(908009,297,'8/27/2015 11:03','Howard at 2nd',63,'8/27/2015 11:08','Market at 4th',76,527,'Subscriber',94110); +INSERT INTO "trip" VALUES(908010,809,'8/27/2015 11:06','Powell at Post (Union Square)',71,'8/27/2015 11:20','Embarcadero at Sansome',60,600,'Subscriber',94115); +INSERT INTO "trip" VALUES(908012,531,'8/27/2015 11:07','Broadway St at Battery St',82,'8/27/2015 11:16','Powell Street BART',39,583,'Subscriber',94107); +INSERT INTO "trip" VALUES(908013,730,'8/27/2015 11:08','5th at Howard',57,'8/27/2015 11:20','2nd at Townsend',61,445,'Subscriber',94002); +INSERT INTO "trip" VALUES(908014,534,'8/27/2015 11:09','Embarcadero at Folsom',51,'8/27/2015 11:18','San Francisco Caltrain (Townsend at 4th)',70,278,'Subscriber',94105); +INSERT INTO "trip" VALUES(908015,974,'8/27/2015 11:10','Powell Street BART',39,'8/27/2015 11:27','South Van Ness at Market',66,326,'Customer',12345); +INSERT INTO "trip" VALUES(908016,961,'8/27/2015 11:10','Powell Street BART',39,'8/27/2015 11:26','South Van Ness at Market',66,672,'Customer',12345); +INSERT INTO "trip" VALUES(908017,312,'8/27/2015 11:11','Market at 10th',67,'8/27/2015 11:16','Powell Street BART',39,309,'Subscriber',94103); +INSERT INTO "trip" VALUES(908018,265,'8/27/2015 11:13','2nd at South Park',64,'8/27/2015 11:17','Market at Sansome',77,517,'Subscriber',94952); +INSERT INTO "trip" VALUES(908019,518,'8/27/2015 11:14','Embarcadero at Bryant',54,'8/27/2015 11:22','Clay at Battery',41,569,'Subscriber',94105); +INSERT INTO "trip" VALUES(908020,1699,'8/27/2015 11:14','Post at Kearny',47,'8/27/2015 11:43','Mechanics Plaza (Market at Battery)',75,617,'Customer',20832); +INSERT INTO "trip" VALUES(908021,474,'8/27/2015 11:15','2nd at South Park',64,'8/27/2015 11:23','Beale at Market',56,594,'Subscriber',94010); +INSERT INTO "trip" VALUES(908022,1679,'8/27/2015 11:15','Post at Kearny',47,'8/27/2015 11:43','Mechanics Plaza (Market at Battery)',75,566,'Customer',20832); +INSERT INTO "trip" VALUES(908023,255,'8/27/2015 11:16','Harry Bridges Plaza (Ferry Building)',50,'8/27/2015 11:20','Davis at Jackson',42,432,'Subscriber',94111); +INSERT INTO "trip" VALUES(908024,211,'8/27/2015 11:20','Palo Alto Caltrain Station',34,'8/27/2015 11:24','Cowper at University',37,148,'Subscriber',94108); +INSERT INTO "trip" VALUES(908025,311,'8/27/2015 11:21','2nd at South Park',64,'8/27/2015 11:26','San Francisco Caltrain (Townsend at 4th)',70,332,'Subscriber',94107); +INSERT INTO "trip" VALUES(908026,569,'8/27/2015 11:22','Powell at Post (Union Square)',71,'8/27/2015 11:32','2nd at Folsom',62,518,'Subscriber',94117); +INSERT INTO "trip" VALUES(908027,767,'8/27/2015 11:23','Franklin at Maple',21,'8/27/2015 11:36','Stanford in Redwood City',25,144,'Customer',94063); +INSERT INTO "trip" VALUES(908028,305,'8/27/2015 11:23','San Francisco Caltrain 2 (330 Townsend)',69,'8/27/2015 11:28','2nd at South Park',64,554,'Subscriber',94301); +INSERT INTO "trip" VALUES(908029,386,'8/27/2015 11:24','Mechanics Plaza (Market at Battery)',75,'8/27/2015 11:30','Embarcadero at Bryant',54,351,'Subscriber',94105); +INSERT INTO "trip" VALUES(908030,428,'8/27/2015 11:26','San Francisco Caltrain 2 (330 Townsend)',69,'8/27/2015 11:33','5th at Howard',57,313,'Subscriber',94402); +INSERT INTO "trip" VALUES(908031,717,'8/27/2015 11:26','South Van Ness at Market',66,'8/27/2015 11:38','Beale at Market',56,375,'Subscriber',94103); +INSERT INTO "trip" VALUES(908032,467,'8/27/2015 11:27','Embarcadero at Vallejo',48,'8/27/2015 11:34','Mechanics Plaza (Market at Battery)',75,581,'Subscriber',94618); +INSERT INTO "trip" VALUES(908036,213,'8/27/2015 11:27','Townsend at 7th',65,'8/27/2015 11:31','San Francisco Caltrain 2 (330 Townsend)',69,404,'Subscriber',94107); +INSERT INTO "trip" VALUES(908037,376,'8/27/2015 11:27','Civic Center BART (7th at Market)',72,'8/27/2015 11:34','Post at Kearny',47,86,'Subscriber',94122); +INSERT INTO "trip" VALUES(908039,1592,'8/27/2015 11:28','South Van Ness at Market',66,'8/27/2015 11:54','South Van Ness at Market',66,326,'Customer',12345); +INSERT INTO "trip" VALUES(908040,1578,'8/27/2015 11:28','South Van Ness at Market',66,'8/27/2015 11:54','South Van Ness at Market',66,672,'Customer',12345); +INSERT INTO "trip" VALUES(908041,526,'8/27/2015 11:28','Beale at Market',56,'8/27/2015 11:37','2nd at Townsend',61,315,'Subscriber',94107); +INSERT INTO "trip" VALUES(908043,431,'8/27/2015 11:29','2nd at South Park',64,'8/27/2015 11:36','Steuart at Market',74,366,'Subscriber',94107); +INSERT INTO "trip" VALUES(908044,465,'8/27/2015 11:29','Post at Kearny',47,'8/27/2015 11:37','2nd at Townsend',61,421,'Subscriber',94117); +INSERT INTO "trip" VALUES(908045,452,'8/27/2015 11:29','Post at Kearny',47,'8/27/2015 11:37','2nd at Townsend',61,546,'Subscriber',94109); +INSERT INTO "trip" VALUES(908046,1130,'8/27/2015 11:33','Harry Bridges Plaza (Ferry Building)',50,'8/27/2015 11:51','San Francisco Caltrain (Townsend at 4th)',70,492,'Subscriber',94402); +INSERT INTO "trip" VALUES(908047,657,'8/27/2015 11:33','Market at 4th',76,'8/27/2015 11:44','Spear at Folsom',49,508,'Subscriber',94102); +INSERT INTO "trip" VALUES(908048,415,'8/27/2015 11:35','Commercial at Montgomery',45,'8/27/2015 11:42','Yerba Buena Center of the Arts (3rd @ Howard)',68,67,'Subscriber',94619); +INSERT INTO "trip" VALUES(908049,503,'8/27/2015 11:37','San Pedro Square',6,'8/27/2015 11:45','Japantown',9,102,'Subscriber',95112); +INSERT INTO "trip" VALUES(908050,437,'8/27/2015 11:38','San Francisco Caltrain (Townsend at 4th)',70,'8/27/2015 11:45','2nd at Folsom',62,278,'Subscriber',94025); +INSERT INTO "trip" VALUES(908051,379,'8/27/2015 11:38','Embarcadero at Vallejo',48,'8/27/2015 11:44','Embarcadero at Bryant',54,450,'Subscriber',94105); +INSERT INTO "trip" VALUES(908052,325,'8/27/2015 11:39','Powell Street BART',39,'8/27/2015 11:44','Market at 10th',67,583,'Subscriber',94108); +INSERT INTO "trip" VALUES(908053,498,'8/27/2015 11:41','5th at Howard',57,'8/27/2015 11:49','Powell at Post (Union Square)',71,624,'Customer',45); +INSERT INTO "trip" VALUES(908054,19936,'8/27/2015 11:41','Powell Street BART',39,'8/27/2015 17:13','Powell at Post (Union Square)',71,405,'Customer',175); +INSERT INTO "trip" VALUES(908055,1489,'8/27/2015 11:42','San Francisco Caltrain (Townsend at 4th)',70,'8/27/2015 12:06','San Francisco Caltrain (Townsend at 4th)',70,502,'Subscriber',94014); +INSERT INTO "trip" VALUES(908056,234,'8/27/2015 11:43','Davis at Jackson',42,'8/27/2015 11:47','Embarcadero at Folsom',51,592,'Subscriber',94111); +INSERT INTO "trip" VALUES(908057,19757,'8/27/2015 11:44','Powell Street BART',39,'8/27/2015 17:13','Powell at Post (Union Square)',71,409,'Customer','nil'); +INSERT INTO "trip" VALUES(908059,544,'8/27/2015 11:44','Broadway St at Battery St',82,'8/27/2015 11:53','Market at 4th',76,549,'Subscriber',94133); +INSERT INTO "trip" VALUES(908061,382,'8/27/2015 11:45','Market at Sansome',77,'8/27/2015 11:52','2nd at South Park',64,386,'Subscriber',94705); +INSERT INTO "trip" VALUES(908065,486,'8/27/2015 11:47','Post at Kearny',47,'8/27/2015 11:55','Grant Avenue at Columbus Avenue',73,593,'Subscriber',94111); +INSERT INTO "trip" VALUES(908067,300,'8/27/2015 11:48','Temporary Transbay Terminal (Howard at Beale)',55,'8/27/2015 11:53','Yerba Buena Center of the Arts (3rd @ Howard)',68,579,'Subscriber',94612); +INSERT INTO "trip" VALUES(908068,495,'8/27/2015 11:50','Post at Kearny',47,'8/27/2015 11:58','Harry Bridges Plaza (Ferry Building)',50,189,'Subscriber',94708); +INSERT INTO "trip" VALUES(908069,247,'8/27/2015 11:50','Townsend at 7th',65,'8/27/2015 11:54','San Francisco Caltrain 2 (330 Townsend)',69,361,'Subscriber',94133); +INSERT INTO "trip" VALUES(908070,360,'8/27/2015 11:51','Harry Bridges Plaza (Ferry Building)',50,'8/27/2015 11:57','Embarcadero at Sansome',60,478,'Subscriber',94110); +INSERT INTO "trip" VALUES(908071,192,'8/27/2015 11:52','Broadway St at Battery St',82,'8/27/2015 11:55','Harry Bridges Plaza (Ferry Building)',50,636,'Subscriber',94133); +INSERT INTO "trip" VALUES(908072,789,'8/27/2015 11:52','Townsend at 7th',65,'8/27/2015 12:05','Market at Sansome',77,209,'Subscriber',94133); +INSERT INTO "trip" VALUES(908073,266,'8/27/2015 11:53','Broadway St at Battery St',82,'8/27/2015 11:57','Commercial at Montgomery',45,428,'Subscriber',94109); +INSERT INTO "trip" VALUES(908074,600,'8/27/2015 11:53','Powell at Post (Union Square)',71,'8/27/2015 12:03','San Francisco City Hall',58,624,'Subscriber',94110); +INSERT INTO "trip" VALUES(908075,597,'8/27/2015 11:54','Market at 10th',67,'8/27/2015 12:04','San Francisco Caltrain 2 (330 Townsend)',69,426,'Subscriber',94107); +INSERT INTO "trip" VALUES(908076,501,'8/27/2015 11:55','Post at Kearny',47,'8/27/2015 12:04','Commercial at Montgomery',45,513,'Subscriber',94103); +INSERT INTO "trip" VALUES(908077,341,'8/27/2015 11:55','Harry Bridges Plaza (Ferry Building)',50,'8/27/2015 12:01','Embarcadero at Bryant',54,636,'Subscriber',94080); +INSERT INTO "trip" VALUES(908078,448,'8/27/2015 11:56','Powell Street BART',39,'8/27/2015 12:03','San Francisco Caltrain 2 (330 Townsend)',69,449,'Subscriber',94110); +INSERT INTO "trip" VALUES(908079,469,'8/27/2015 11:56','Embarcadero at Vallejo',48,'8/27/2015 12:04','Harry Bridges Plaza (Ferry Building)',50,634,'Subscriber',94087); +INSERT INTO "trip" VALUES(908080,543,'8/27/2015 11:57','Harry Bridges Plaza (Ferry Building)',50,'8/27/2015 12:06','2nd at Townsend',61,477,'Subscriber',94925); +INSERT INTO "trip" VALUES(908083,144,'8/27/2015 11:59','Beale at Market',56,'8/27/2015 12:01','Market at Sansome',77,567,'Subscriber',94109); +INSERT INTO "trip" VALUES(908084,517,'8/27/2015 11:59','2nd at South Park',64,'8/27/2015 12:08','Post at Kearny',47,386,'Subscriber',94107); +INSERT INTO "trip" VALUES(908087,1702,'8/27/2015 12:00','Embarcadero at Sansome',60,'8/27/2015 12:28','2nd at Townsend',61,472,'Subscriber',94587); +INSERT INTO "trip" VALUES(908088,891,'8/27/2015 12:00','South Van Ness at Market',66,'8/27/2015 12:15','Steuart at Market',74,134,'Subscriber',94803); +INSERT INTO "trip" VALUES(908090,236,'8/27/2015 12:02','Grant Avenue at Columbus Avenue',73,'8/27/2015 12:06','Commercial at Montgomery',45,437,'Subscriber',94133); +INSERT INTO "trip" VALUES(908091,490,'8/27/2015 12:02','Powell Street BART',39,'8/27/2015 12:10','San Francisco Caltrain 2 (330 Townsend)',69,537,'Subscriber',94597); +INSERT INTO "trip" VALUES(908092,353,'8/27/2015 12:02','Commercial at Montgomery',45,'8/27/2015 12:08','Yerba Buena Center of the Arts (3rd @ Howard)',68,321,'Subscriber',94107); +INSERT INTO "trip" VALUES(908093,973,'8/27/2015 12:03','Embarcadero at Sansome',60,'8/27/2015 12:20','2nd at Townsend',61,611,'Subscriber',94568); +INSERT INTO "trip" VALUES(908094,361,'8/27/2015 12:04','2nd at Folsom',62,'8/27/2015 12:10','Clay at Battery',41,278,'Subscriber',94107); +INSERT INTO "trip" VALUES(908095,255,'8/27/2015 12:04','Embarcadero at Vallejo',48,'8/27/2015 12:09','Steuart at Market',74,538,'Subscriber',94115); +INSERT INTO "trip" VALUES(908096,144,'8/27/2015 12:05','2nd at South Park',64,'8/27/2015 12:07','2nd at Folsom',62,554,'Subscriber',95113); +INSERT INTO "trip" VALUES(908097,513,'8/27/2015 12:06','Embarcadero at Sansome',60,'8/27/2015 12:14','Mechanics Plaza (Market at Battery)',75,478,'Subscriber',94111); +INSERT INTO "trip" VALUES(908098,571,'8/27/2015 12:07','2nd at South Park',64,'8/27/2015 12:17','Clay at Battery',41,379,'Subscriber',94107); +INSERT INTO "trip" VALUES(908099,663,'8/27/2015 12:07','Commercial at Montgomery',45,'8/27/2015 12:18','Civic Center BART (7th at Market)',72,513,'Subscriber',94702); +INSERT INTO "trip" VALUES(908100,937,'8/27/2015 12:07','Santa Clara County Civic Center',80,'8/27/2015 12:23','MLK Library',11,646,'Subscriber',95110); +INSERT INTO "trip" VALUES(908101,554,'8/27/2015 12:08','Embarcadero at Folsom',51,'8/27/2015 12:17','2nd at Townsend',61,553,'Subscriber',94118); +INSERT INTO "trip" VALUES(908102,13634,'8/27/2015 12:09','Embarcadero at Folsom',51,'8/27/2015 15:56','Embarcadero at Folsom',51,606,'Customer',93103); +INSERT INTO "trip" VALUES(908103,3682,'8/27/2015 12:10','Embarcadero at Sansome',60,'8/27/2015 13:12','Temporary Transbay Terminal (Howard at Beale)',55,600,'Customer',33619); +INSERT INTO "trip" VALUES(908104,3657,'8/27/2015 12:10','Embarcadero at Sansome',60,'8/27/2015 13:11','Temporary Transbay Terminal (Howard at Beale)',55,529,'Customer',33619); +INSERT INTO "trip" VALUES(908105,848,'8/27/2015 12:11','Embarcadero at Sansome',60,'8/27/2015 12:25','2nd at Townsend',61,193,'Subscriber',94611); +INSERT INTO "trip" VALUES(908106,250,'8/27/2015 12:11','Civic Center BART (7th at Market)',72,'8/27/2015 12:15','Market at 4th',76,325,'Subscriber',94109); +INSERT INTO "trip" VALUES(908107,464,'8/27/2015 12:13','Embarcadero at Vallejo',48,'8/27/2015 12:20','Steuart at Market',74,479,'Subscriber',94708); +INSERT INTO "trip" VALUES(908108,486,'8/27/2015 12:14','Post at Kearny',47,'8/27/2015 12:22','Steuart at Market',74,386,'Subscriber',95442); +INSERT INTO "trip" VALUES(908109,937,'8/27/2015 12:15','Steuart at Market',74,'8/27/2015 12:31','San Francisco Caltrain (Townsend at 4th)',70,558,'Customer',94563); +INSERT INTO "trip" VALUES(908110,798,'8/27/2015 12:15','Powell at Post (Union Square)',71,'8/27/2015 12:29','Davis at Jackson',42,461,'Subscriber',94118); +INSERT INTO "trip" VALUES(908111,439,'8/27/2015 12:16','Embarcadero at Sansome',60,'8/27/2015 12:23','Harry Bridges Plaza (Ferry Building)',50,187,'Subscriber',94122); +INSERT INTO "trip" VALUES(908112,250,'8/27/2015 12:17','Embarcadero at Bryant',54,'8/27/2015 12:21','Embarcadero at Folsom',51,625,'Subscriber',94103); +INSERT INTO "trip" VALUES(908113,964,'8/27/2015 12:18','Commercial at Montgomery',45,'8/27/2015 12:35','2nd at Townsend',61,531,'Customer',90211); +INSERT INTO "trip" VALUES(908114,502,'8/27/2015 12:19','Spear at Folsom',49,'8/27/2015 12:27','Market at 4th',76,508,'Subscriber',94105); +INSERT INTO "trip" VALUES(908115,486,'8/27/2015 12:24','Embarcadero at Bryant',54,'8/27/2015 12:32','Embarcadero at Vallejo',48,493,'Subscriber',94105); +INSERT INTO "trip" VALUES(908116,71,'8/27/2015 12:24','Embarcadero at Sansome',60,'8/27/2015 12:25','Embarcadero at Sansome',60,384,'Subscriber',94115); +INSERT INTO "trip" VALUES(908119,885,'8/27/2015 12:26','Embarcadero at Sansome',60,'8/27/2015 12:41','Powell at Post (Union Square)',71,214,'Subscriber',94115); +INSERT INTO "trip" VALUES(908120,710,'8/27/2015 12:26','Spear at Folsom',49,'8/27/2015 12:38','San Francisco Caltrain (Townsend at 4th)',70,413,'Subscriber',94043); +INSERT INTO "trip" VALUES(908121,244,'8/27/2015 12:26','San Francisco Caltrain 2 (330 Townsend)',69,'8/27/2015 12:31','Townsend at 7th',65,361,'Subscriber',94107); +INSERT INTO "trip" VALUES(908122,284,'8/27/2015 12:27','Mechanics Plaza (Market at Battery)',75,'8/27/2015 12:31','Harry Bridges Plaza (Ferry Building)',50,520,'Subscriber',94110); +INSERT INTO "trip" VALUES(908123,179,'8/27/2015 12:27','Market at Sansome',77,'8/27/2015 12:30','Beale at Market',56,335,'Subscriber',94105); +INSERT INTO "trip" VALUES(908124,217,'8/27/2015 12:27','Steuart at Market',74,'8/27/2015 12:31','Spear at Folsom',49,479,'Subscriber',94110); +INSERT INTO "trip" VALUES(908126,1005,'8/27/2015 12:30','Townsend at 7th',65,'8/27/2015 12:47','Clay at Battery',41,401,'Subscriber',94065); +INSERT INTO "trip" VALUES(908127,636,'8/27/2015 12:31','Market at 10th',67,'8/27/2015 12:41','Beale at Market',56,314,'Subscriber',94103); +INSERT INTO "trip" VALUES(908128,4208,'8/27/2015 12:31','Market at Sansome',77,'8/27/2015 13:41','Embarcadero at Sansome',60,284,'Customer','nil'); +INSERT INTO "trip" VALUES(908129,469,'8/27/2015 12:31','Howard at 2nd',63,'8/27/2015 12:39','2nd at Townsend',61,631,'Subscriber',94111); +INSERT INTO "trip" VALUES(908130,446,'8/27/2015 12:32','Steuart at Market',74,'8/27/2015 12:39','Embarcadero at Vallejo',48,500,'Subscriber',94708); +INSERT INTO "trip" VALUES(908131,1642,'8/27/2015 12:35','Embarcadero at Sansome',60,'8/27/2015 13:02','Golden Gate at Polk',59,334,'Subscriber',94133); +INSERT INTO "trip" VALUES(908132,683,'8/27/2015 12:35','Market at 10th',67,'8/27/2015 12:47','Market at Sansome',77,279,'Subscriber',29103); +INSERT INTO "trip" VALUES(908133,3518,'8/27/2015 12:35','Market at Sansome',77,'8/27/2015 13:34','Embarcadero at Sansome',60,576,'Customer','nil'); +INSERT INTO "trip" VALUES(908134,710,'8/27/2015 12:36','Embarcadero at Sansome',60,'8/27/2015 12:48','2nd at Townsend',61,448,'Customer',94123); +INSERT INTO "trip" VALUES(908135,488,'8/27/2015 12:39','Harry Bridges Plaza (Ferry Building)',50,'8/27/2015 12:47','2nd at Townsend',61,520,'Subscriber',94111); +INSERT INTO "trip" VALUES(908136,139,'8/27/2015 12:39','Beale at Market',56,'8/27/2015 12:42','Temporary Transbay Terminal (Howard at Beale)',55,335,'Subscriber',94030); +INSERT INTO "trip" VALUES(908137,282,'8/27/2015 12:42','Embarcadero at Bryant',54,'8/27/2015 12:46','2nd at Townsend',61,351,'Subscriber',94582); +INSERT INTO "trip" VALUES(908138,588,'8/27/2015 12:43','South Van Ness at Market',66,'8/27/2015 12:53','Townsend at 7th',65,326,'Subscriber',94607); +INSERT INTO "trip" VALUES(908139,534,'8/27/2015 12:46','Howard at 2nd',63,'8/27/2015 12:55','Civic Center BART (7th at Market)',72,459,'Subscriber',94105); +INSERT INTO "trip" VALUES(908141,455,'8/27/2015 12:47','Powell at Post (Union Square)',71,'8/27/2015 12:55','Harry Bridges Plaza (Ferry Building)',50,214,'Subscriber',94117); +INSERT INTO "trip" VALUES(908142,492,'8/27/2015 12:47','Japantown',9,'8/27/2015 12:55','San Pedro Square',6,31,'Subscriber',95112); +INSERT INTO "trip" VALUES(908143,793,'8/27/2015 12:47','Embarcadero at Sansome',60,'8/27/2015 13:01','2nd at Townsend',61,384,'Subscriber',94102); +INSERT INTO "trip" VALUES(908144,263,'8/27/2015 12:49','Market at Sansome',77,'8/27/2015 12:53','Steuart at Market',74,372,'Subscriber',94109); +INSERT INTO "trip" VALUES(908145,205,'8/27/2015 12:50','Powell at Post (Union Square)',71,'8/27/2015 12:53','Post at Kearny',47,570,'Subscriber',94107); +INSERT INTO "trip" VALUES(908146,250,'8/27/2015 12:52','Clay at Battery',41,'8/27/2015 12:56','Harry Bridges Plaza (Ferry Building)',50,574,'Subscriber',94303); +INSERT INTO "trip" VALUES(908147,220,'8/27/2015 12:53','Townsend at 7th',65,'8/27/2015 12:57','San Francisco Caltrain 2 (330 Townsend)',69,568,'Subscriber',94015); +INSERT INTO "trip" VALUES(908149,420,'8/27/2015 12:54','Embarcadero at Folsom',51,'8/27/2015 13:01','2nd at Townsend',61,403,'Subscriber',94403); +INSERT INTO "trip" VALUES(908150,236,'8/27/2015 12:54','Market at Sansome',77,'8/27/2015 12:58','2nd at Folsom',62,320,'Subscriber',94158); +INSERT INTO "trip" VALUES(908152,334,'8/27/2015 12:54','2nd at Folsom',62,'8/27/2015 13:00','Clay at Battery',41,518,'Subscriber',94107); +INSERT INTO "trip" VALUES(908154,252,'8/27/2015 12:54','2nd at Folsom',62,'8/27/2015 12:59','2nd at South Park',64,687,'Subscriber',95113); +INSERT INTO "trip" VALUES(908155,130,'8/27/2015 12:55','Market at 10th',67,'8/27/2015 12:57','San Francisco City Hall',58,468,'Subscriber',94530); +INSERT INTO "trip" VALUES(908156,1028,'8/27/2015 12:57','Embarcadero at Sansome',60,'8/27/2015 13:15','Steuart at Market',74,312,'Customer',20002); +INSERT INTO "trip" VALUES(908157,1026,'8/27/2015 12:57','Embarcadero at Sansome',60,'8/27/2015 13:15','Steuart at Market',74,487,'Customer',20002); +INSERT INTO "trip" VALUES(908158,332,'8/27/2015 12:58','Market at Sansome',77,'8/27/2015 13:04','Davis at Jackson',42,209,'Subscriber',94117); +INSERT INTO "trip" VALUES(908159,393,'8/27/2015 12:59','Market at Sansome',77,'8/27/2015 13:05','Davis at Jackson',42,454,'Customer',94903); +INSERT INTO "trip" VALUES(908160,1818,'8/27/2015 12:59','San Francisco Caltrain 2 (330 Townsend)',69,'8/27/2015 13:30','San Francisco Caltrain 2 (330 Townsend)',69,453,'Subscriber',94107); +INSERT INTO "trip" VALUES(908161,252,'8/27/2015 13:00','Market at 4th',76,'8/27/2015 13:04','Civic Center BART (7th at Market)',72,325,'Subscriber',94109); +INSERT INTO "trip" VALUES(908162,839,'8/27/2015 13:01','Beale at Market',56,'8/27/2015 13:15','Market at 10th',67,314,'Subscriber',94103); +INSERT INTO "trip" VALUES(908163,191,'8/27/2015 13:02','2nd at Folsom',62,'8/27/2015 13:05','Market at Sansome',77,587,'Subscriber',94117); +INSERT INTO "trip" VALUES(908164,918,'8/27/2015 13:03','Powell Street BART',39,'8/27/2015 13:18','2nd at Townsend',61,391,'Customer','nil'); +INSERT INTO "trip" VALUES(908165,951,'8/27/2015 13:03','Clay at Battery',41,'8/27/2015 13:19','Market at 10th',67,425,'Subscriber',94103); +INSERT INTO "trip" VALUES(908166,888,'8/27/2015 13:03','Powell Street BART',39,'8/27/2015 13:18','2nd at Townsend',61,579,'Customer','nil'); +INSERT INTO "trip" VALUES(908167,893,'8/27/2015 13:04','Harry Bridges Plaza (Ferry Building)',50,'8/27/2015 13:18','San Francisco Caltrain (Townsend at 4th)',70,56,'Subscriber',94107); +INSERT INTO "trip" VALUES(908168,435,'8/27/2015 13:05','Ryland Park',84,'8/27/2015 13:12','Santa Clara County Civic Center',80,232,'Subscriber',95112); +INSERT INTO "trip" VALUES(908169,756,'8/27/2015 13:06','San Jose City Hall',10,'8/27/2015 13:19','Santa Clara County Civic Center',80,249,'Subscriber',95110); +INSERT INTO "trip" VALUES(908170,221,'8/27/2015 13:06','San Francisco Caltrain 2 (330 Townsend)',69,'8/27/2015 13:10','Townsend at 7th',65,404,'Subscriber',94103); +INSERT INTO "trip" VALUES(908171,352,'8/27/2015 13:06','Embarcadero at Folsom',51,'8/27/2015 13:12','2nd at South Park',64,625,'Subscriber',94107); +INSERT INTO "trip" VALUES(908172,255,'8/27/2015 13:10','Embarcadero at Vallejo',48,'8/27/2015 13:15','Broadway St at Battery St',82,542,'Subscriber',94610); +INSERT INTO "trip" VALUES(908173,386,'8/27/2015 13:13','Commercial at Montgomery',45,'8/27/2015 13:19','Embarcadero at Vallejo',48,428,'Subscriber',94109); +INSERT INTO "trip" VALUES(908174,24365,'8/27/2015 13:13','Market at 4th',76,'8/27/2015 19:59','Grant Avenue at Columbus Avenue',73,412,'Customer',94110); +INSERT INTO "trip" VALUES(908175,24360,'8/27/2015 13:13','Market at 4th',76,'8/27/2015 19:59','Grant Avenue at Columbus Avenue',73,556,'Customer',94110); +INSERT INTO "trip" VALUES(908176,24360,'8/27/2015 13:13','Market at 4th',76,'8/27/2015 19:59','Grant Avenue at Columbus Avenue',73,465,'Customer',94110); +INSERT INTO "trip" VALUES(908177,254,'8/27/2015 13:13','San Francisco Caltrain 2 (330 Townsend)',69,'8/27/2015 13:18','Townsend at 7th',65,442,'Subscriber',94133); +INSERT INTO "trip" VALUES(908178,12519,'8/27/2015 13:13','Grant Avenue at Columbus Avenue',73,'8/27/2015 16:41','Market at Sansome',77,498,'Customer',34); +INSERT INTO "trip" VALUES(908179,254,'8/27/2015 13:14','2nd at Folsom',62,'8/27/2015 13:18','Market at Sansome',77,395,'Subscriber',94158); +INSERT INTO "trip" VALUES(908180,487,'8/27/2015 13:15','Harry Bridges Plaza (Ferry Building)',50,'8/27/2015 13:24','Howard at 2nd',63,292,'Subscriber',94107); +INSERT INTO "trip" VALUES(908181,338,'8/27/2015 13:16','Powell Street BART',39,'8/27/2015 13:21','Post at Kearny',47,309,'Subscriber',94103); +INSERT INTO "trip" VALUES(908182,592,'8/27/2015 13:16','Townsend at 7th',65,'8/27/2015 13:26','2nd at South Park',64,462,'Subscriber',94123); +INSERT INTO "trip" VALUES(908183,7911,'8/27/2015 13:17','Grant Avenue at Columbus Avenue',73,'8/27/2015 15:29','Grant Avenue at Columbus Avenue',73,423,'Customer',34); +INSERT INTO "trip" VALUES(908184,982,'8/27/2015 13:18','Embarcadero at Bryant',54,'8/27/2015 13:34','San Francisco Caltrain (Townsend at 4th)',70,450,'Subscriber',94105); +INSERT INTO "trip" VALUES(908186,1321,'8/27/2015 13:19','Powell at Post (Union Square)',71,'8/27/2015 13:41','Embarcadero at Sansome',60,601,'Subscriber',94109); +INSERT INTO "trip" VALUES(908187,172,'8/27/2015 13:20','Santa Clara at Almaden',4,'8/27/2015 13:23','Arena Green / SAP Center',14,14,'Subscriber',95113); +INSERT INTO "trip" VALUES(908189,549,'8/27/2015 13:24','Beale at Market',56,'8/27/2015 13:33','2nd at Townsend',61,594,'Subscriber',94941); +INSERT INTO "trip" VALUES(908190,566,'8/27/2015 13:25','Grant Avenue at Columbus Avenue',73,'8/27/2015 13:34','Embarcadero at Folsom',51,290,'Subscriber',94133); +INSERT INTO "trip" VALUES(908191,391,'8/27/2015 13:26','5th at Howard',57,'8/27/2015 13:32','Civic Center BART (7th at Market)',72,501,'Subscriber',95035); +INSERT INTO "trip" VALUES(908192,767,'8/27/2015 13:26','Harry Bridges Plaza (Ferry Building)',50,'8/27/2015 13:39','Embarcadero at Sansome',60,187,'Subscriber',94122); +INSERT INTO "trip" VALUES(908193,708,'8/27/2015 13:32','2nd at Townsend',61,'8/27/2015 13:44','Embarcadero at Sansome',60,553,'Subscriber',94102); +INSERT INTO "trip" VALUES(908194,211,'8/27/2015 13:32','Broadway St at Battery St',82,'8/27/2015 13:36','Clay at Battery',41,29,'Subscriber',94602); +INSERT INTO "trip" VALUES(908195,422,'8/27/2015 13:34','Steuart at Market',74,'8/27/2015 13:41','Howard at 2nd',63,487,'Subscriber',94105); +INSERT INTO "trip" VALUES(908196,649,'8/27/2015 13:34','San Francisco Caltrain (Townsend at 4th)',70,'8/27/2015 13:45','Embarcadero at Bryant',54,450,'Subscriber',94105); +INSERT INTO "trip" VALUES(908197,439,'8/27/2015 13:37','Embarcadero at Sansome',60,'8/27/2015 13:45','Steuart at Market',74,576,'Subscriber',94521); +INSERT INTO "trip" VALUES(908198,512,'8/27/2015 13:38','2nd at South Park',64,'8/27/2015 13:46','Harry Bridges Plaza (Ferry Building)',50,625,'Subscriber',94704); +INSERT INTO "trip" VALUES(908199,277,'8/27/2015 13:38','Market at Sansome',77,'8/27/2015 13:43','2nd at Folsom',62,283,'Subscriber',94117); +INSERT INTO "trip" VALUES(908200,380,'8/27/2015 13:39','2nd at Folsom',62,'8/27/2015 13:45','Clay at Battery',41,495,'Subscriber',94110); +INSERT INTO "trip" VALUES(908201,484,'8/27/2015 13:39','Market at 4th',76,'8/27/2015 13:47','San Francisco Caltrain (Townsend at 4th)',70,508,'Subscriber',94070); +INSERT INTO "trip" VALUES(908202,242,'8/27/2015 13:46','Harry Bridges Plaza (Ferry Building)',50,'8/27/2015 13:50','Embarcadero at Vallejo',48,574,'Subscriber',94115); +INSERT INTO "trip" VALUES(908203,911,'8/27/2015 13:46','Steuart at Market',74,'8/27/2015 14:01','2nd at South Park',64,585,'Customer',94117); +INSERT INTO "trip" VALUES(908204,470,'8/27/2015 13:47','San Francisco Caltrain (Townsend at 4th)',70,'8/27/2015 13:55','Harry Bridges Plaza (Ferry Building)',50,558,'Subscriber',94925); +INSERT INTO "trip" VALUES(908205,487,'8/27/2015 13:48','Steuart at Market',74,'8/27/2015 13:56','Post at Kearny',47,312,'Subscriber',95442); +INSERT INTO "trip" VALUES(908206,488,'8/27/2015 13:48','Steuart at Market',74,'8/27/2015 13:56','Post at Kearny',47,496,'Subscriber',95442); +INSERT INTO "trip" VALUES(908207,1708,'8/27/2015 13:49','Mechanics Plaza (Market at Battery)',75,'8/27/2015 14:18','San Francisco Caltrain (Townsend at 4th)',70,617,'Subscriber',94105); +INSERT INTO "trip" VALUES(908208,328,'8/27/2015 13:51','Embarcadero at Sansome',60,'8/27/2015 13:56','Steuart at Market',74,553,'Subscriber',94597); +INSERT INTO "trip" VALUES(908209,356,'8/27/2015 13:55','Civic Center BART (7th at Market)',72,'8/27/2015 14:01','San Francisco City Hall',58,501,'Subscriber',94115); +INSERT INTO "trip" VALUES(908210,237,'8/27/2015 13:56','Clay at Battery',41,'8/27/2015 14:00','Embarcadero at Vallejo',48,495,'Subscriber',94110); +INSERT INTO "trip" VALUES(908211,604,'8/27/2015 13:56','San Francisco City Hall',58,'8/27/2015 14:06','Market at 4th',76,624,'Customer',77449); +INSERT INTO "trip" VALUES(908212,239,'8/27/2015 13:58','Temporary Transbay Terminal (Howard at Beale)',55,'8/27/2015 14:02','Clay at Battery',41,529,'Subscriber',94965); +INSERT INTO "trip" VALUES(908213,305,'8/27/2015 13:59','Civic Center BART (7th at Market)',72,'8/27/2015 14:04','5th at Howard',57,459,'Subscriber',95035); +INSERT INTO "trip" VALUES(908214,515,'8/27/2015 13:59','Harry Bridges Plaza (Ferry Building)',50,'8/27/2015 14:08','Powell at Post (Union Square)',71,214,'Subscriber',94117); +INSERT INTO "trip" VALUES(908215,147,'8/27/2015 14:00','San Jose Civic Center',3,'8/27/2015 14:02','Paseo de San Antonio',7,714,'Subscriber',95112); +INSERT INTO "trip" VALUES(908216,742,'8/27/2015 14:00','2nd at Townsend',61,'8/27/2015 14:12','Powell at Post (Union Square)',71,287,'Subscriber',94107); +INSERT INTO "trip" VALUES(908217,274,'8/27/2015 14:00','5th at Howard',57,'8/27/2015 14:05','San Francisco Caltrain 2 (330 Townsend)',69,313,'Subscriber',94107); +INSERT INTO "trip" VALUES(908218,249,'8/27/2015 14:03','Market at 10th',67,'8/27/2015 14:07','Powell Street BART',39,583,'Subscriber',94401); +INSERT INTO "trip" VALUES(908219,312,'8/27/2015 14:03','Davis at Jackson',42,'8/27/2015 14:09','Market at Sansome',77,209,'Subscriber',94117); +INSERT INTO "trip" VALUES(908220,907,'8/27/2015 14:04','San Francisco City Hall',58,'8/27/2015 14:19','Harry Bridges Plaza (Ferry Building)',50,609,'Subscriber',94941); +INSERT INTO "trip" VALUES(908226,1172,'8/27/2015 14:11','Post at Kearny',47,'8/27/2015 14:31','Embarcadero at Sansome',60,86,'Customer',45); +INSERT INTO "trip" VALUES(908228,763,'8/27/2015 14:12','Spear at Folsom',49,'8/27/2015 14:25','2nd at South Park',64,400,'Subscriber',94102); +INSERT INTO "trip" VALUES(908229,543,'8/27/2015 14:12','Embarcadero at Vallejo',48,'8/27/2015 14:21','Embarcadero at Vallejo',48,597,'Subscriber',94602); +INSERT INTO "trip" VALUES(908230,626,'8/27/2015 14:13','South Van Ness at Market',66,'8/27/2015 14:24','5th at Howard',57,878,'Subscriber',94702); +INSERT INTO "trip" VALUES(908231,357,'8/27/2015 14:13','2nd at Townsend',61,'8/27/2015 14:19','Spear at Folsom',49,477,'Subscriber',94582); +INSERT INTO "trip" VALUES(908232,144,'8/27/2015 14:16','Temporary Transbay Terminal (Howard at Beale)',55,'8/27/2015 14:19','Beale at Market',56,382,'Subscriber',94010); +INSERT INTO "trip" VALUES(908233,113,'8/27/2015 14:16','Beale at Market',56,'8/27/2015 14:18','Temporary Transbay Terminal (Howard at Beale)',55,427,'Subscriber',94111); +INSERT INTO "trip" VALUES(908234,336,'8/27/2015 14:17','Spear at Folsom',49,'8/27/2015 14:23','2nd at Townsend',61,479,'Subscriber',94131); +INSERT INTO "trip" VALUES(908235,510,'8/27/2015 14:18','Howard at 2nd',63,'8/27/2015 14:26','Harry Bridges Plaza (Ferry Building)',50,484,'Subscriber',94107); +INSERT INTO "trip" VALUES(908236,223,'8/27/2015 14:19','San Francisco Caltrain 2 (330 Townsend)',69,'8/27/2015 14:22','San Francisco Caltrain 2 (330 Townsend)',69,449,'Subscriber',94107); +INSERT INTO "trip" VALUES(908237,712,'8/27/2015 14:19','Steuart at Market',74,'8/27/2015 14:30','San Francisco Caltrain 2 (330 Townsend)',69,576,'Subscriber',94010); +INSERT INTO "trip" VALUES(908238,641,'8/27/2015 14:19','Harry Bridges Plaza (Ferry Building)',50,'8/27/2015 14:30','Harry Bridges Plaza (Ferry Building)',50,406,'Subscriber',94606); +INSERT INTO "trip" VALUES(908239,189,'8/27/2015 14:21','Townsend at 7th',65,'8/27/2015 14:24','San Francisco Caltrain 2 (330 Townsend)',69,361,'Subscriber',94102); +INSERT INTO "trip" VALUES(908241,534,'8/27/2015 14:24','2nd at Townsend',61,'8/27/2015 14:33','Steuart at Market',74,397,'Subscriber',94568); +INSERT INTO "trip" VALUES(908242,404,'8/27/2015 14:25','Powell Street BART',39,'8/27/2015 14:32','Market at 10th',67,583,'Subscriber',94401); +INSERT INTO "trip" VALUES(908243,342,'8/27/2015 14:26','Spear at Folsom',49,'8/27/2015 14:32','Howard at 2nd',63,363,'Subscriber',94105); +INSERT INTO "trip" VALUES(908244,833,'8/27/2015 14:27','2nd at Townsend',61,'8/27/2015 14:41','Broadway St at Battery St',82,594,'Subscriber',94563); +INSERT INTO "trip" VALUES(908245,420,'8/27/2015 14:29','Steuart at Market',74,'8/27/2015 14:36','Embarcadero at Bryant',54,553,'Subscriber',94114); +INSERT INTO "trip" VALUES(908247,998,'8/27/2015 14:33','Embarcadero at Folsom',51,'8/27/2015 14:49','2nd at Townsend',61,555,'Subscriber',94115); +INSERT INTO "trip" VALUES(908248,658,'8/27/2015 14:33','Townsend at 7th',65,'8/27/2015 14:44','South Van Ness at Market',66,387,'Subscriber',94107); +INSERT INTO "trip" VALUES(908249,177,'8/27/2015 14:34','Spear at Folsom',49,'8/27/2015 14:37','Steuart at Market',74,477,'Subscriber',94582); +INSERT INTO "trip" VALUES(908250,515,'8/27/2015 14:36','2nd at Townsend',61,'8/27/2015 14:44','Harry Bridges Plaza (Ferry Building)',50,479,'Subscriber',94945); +INSERT INTO "trip" VALUES(908252,606,'8/27/2015 14:37','Townsend at 7th',65,'8/27/2015 14:48','Market at 10th',67,352,'Subscriber',94102); +INSERT INTO "trip" VALUES(908253,932,'8/27/2015 14:39','Steuart at Market',74,'8/27/2015 14:54','San Francisco Caltrain (Townsend at 4th)',70,477,'Customer',20002); +INSERT INTO "trip" VALUES(908254,924,'8/27/2015 14:39','Steuart at Market',74,'8/27/2015 14:54','San Francisco Caltrain (Townsend at 4th)',70,397,'Customer',20002); +INSERT INTO "trip" VALUES(908255,365,'8/27/2015 14:39','Adobe on Almaden',5,'8/27/2015 14:45','Paseo de San Antonio',7,692,'Subscriber','94040-1724'); +INSERT INTO "trip" VALUES(908256,321,'8/27/2015 14:42','Market at Sansome',77,'8/27/2015 14:48','Powell Street BART',39,209,'Subscriber',94105); +INSERT INTO "trip" VALUES(908257,329,'8/27/2015 14:42','2nd at Folsom',62,'8/27/2015 14:48','Harry Bridges Plaza (Ferry Building)',50,283,'Subscriber',94105); +INSERT INTO "trip" VALUES(908258,109,'8/27/2015 14:43','2nd at Folsom',62,'8/27/2015 14:45','2nd at South Park',64,554,'Subscriber',94015); +INSERT INTO "trip" VALUES(908259,826,'8/27/2015 14:43','Townsend at 7th',65,'8/27/2015 14:57','Harry Bridges Plaza (Ferry Building)',50,404,'Subscriber',94501); +INSERT INTO "trip" VALUES(908260,290,'8/27/2015 14:43','Clay at Battery',41,'8/27/2015 14:48','Temporary Transbay Terminal (Howard at Beale)',55,524,'Subscriber',94965); +INSERT INTO "trip" VALUES(908261,571,'8/27/2015 14:45','South Van Ness at Market',66,'8/27/2015 14:55','San Francisco Caltrain 2 (330 Townsend)',69,463,'Subscriber',95122); +INSERT INTO "trip" VALUES(908263,604,'8/27/2015 14:49','Market at 10th',67,'8/27/2015 14:59','5th at Howard',57,425,'Customer',10002); +INSERT INTO "trip" VALUES(908264,597,'8/27/2015 14:49','Mechanics Plaza (Market at Battery)',75,'8/27/2015 14:59','San Francisco Caltrain (Townsend at 4th)',70,566,'Subscriber',94040); +INSERT INTO "trip" VALUES(908265,590,'8/27/2015 14:49','Market at 10th',67,'8/27/2015 14:59','5th at Howard',57,314,'Customer',10002); +INSERT INTO "trip" VALUES(908266,1165,'8/27/2015 14:50','Davis at Jackson',42,'8/27/2015 15:10','2nd at Townsend',61,362,'Subscriber',94111); +INSERT INTO "trip" VALUES(908267,431,'8/27/2015 14:51','Temporary Transbay Terminal (Howard at Beale)',55,'8/27/2015 14:58','2nd at Townsend',61,600,'Subscriber',94025); +INSERT INTO "trip" VALUES(908268,712,'8/27/2015 14:51','Market at 10th',67,'8/27/2015 15:03','Steuart at Market',74,583,'Subscriber',94105); +INSERT INTO "trip" VALUES(908269,190,'8/27/2015 14:53','Townsend at 7th',65,'8/27/2015 14:56','San Francisco Caltrain 2 (330 Townsend)',69,525,'Subscriber',94103); +INSERT INTO "trip" VALUES(908270,248,'8/27/2015 14:55','San Francisco City Hall',58,'8/27/2015 14:59','Powell Street BART',39,274,'Subscriber',94115); +INSERT INTO "trip" VALUES(908271,320,'8/27/2015 14:55','Paseo de San Antonio',7,'8/27/2015 15:00','Adobe on Almaden',5,692,'Subscriber','94040-1724'); +INSERT INTO "trip" VALUES(908272,648,'8/27/2015 14:56','San Jose Diridon Caltrain Station',2,'8/27/2015 15:07','MLK Library',11,157,'Subscriber',94114); +INSERT INTO "trip" VALUES(908273,688,'8/27/2015 14:57','San Francisco Caltrain 2 (330 Townsend)',69,'8/27/2015 15:09','Powell Street BART',39,568,'Subscriber',94605); +INSERT INTO "trip" VALUES(908274,1092,'8/27/2015 14:58','Townsend at 7th',65,'8/27/2015 15:17','Harry Bridges Plaza (Ferry Building)',50,353,'Subscriber',94568); +INSERT INTO "trip" VALUES(908275,437,'8/27/2015 15:00','2nd at Townsend',61,'8/27/2015 15:07','Harry Bridges Plaza (Ferry Building)',50,600,'Subscriber',94503); +INSERT INTO "trip" VALUES(908276,519,'8/27/2015 15:03','South Van Ness at Market',66,'8/27/2015 15:12','Townsend at 7th',65,672,'Subscriber',94107); +INSERT INTO "trip" VALUES(908277,330,'8/27/2015 15:04','South Van Ness at Market',66,'8/27/2015 15:10','Civic Center BART (7th at Market)',72,387,'Subscriber',94107); +INSERT INTO "trip" VALUES(908278,732,'8/27/2015 15:04','Spear at Folsom',49,'8/27/2015 15:16','Steuart at Market',74,456,'Customer',94105); +INSERT INTO "trip" VALUES(908279,268,'8/27/2015 15:05','Civic Center BART (7th at Market)',72,'8/27/2015 15:09','5th at Howard',57,325,'Subscriber',94109); +INSERT INTO "trip" VALUES(908280,729,'8/27/2015 15:05','Powell Street BART',39,'8/27/2015 15:17','Harry Bridges Plaza (Ferry Building)',50,209,'Subscriber',94109); +INSERT INTO "trip" VALUES(908281,954,'8/27/2015 15:05','Clay at Battery',41,'8/27/2015 15:21','San Francisco Caltrain 2 (330 Townsend)',69,379,'Subscriber',94401); +INSERT INTO "trip" VALUES(908282,2131,'8/27/2015 15:05','Clay at Battery',41,'8/27/2015 15:41','Embarcadero at Vallejo',48,529,'Customer',5414025); +INSERT INTO "trip" VALUES(908283,377,'8/27/2015 15:13','Howard at 2nd',63,'8/27/2015 15:19','2nd at Townsend',61,614,'Subscriber',94606); +INSERT INTO "trip" VALUES(908284,219,'8/27/2015 15:14','Townsend at 7th',65,'8/27/2015 15:17','San Francisco Caltrain 2 (330 Townsend)',69,541,'Subscriber',94404); +INSERT INTO "trip" VALUES(908285,815,'8/27/2015 15:15','San Jose Diridon Caltrain Station',2,'8/27/2015 15:29','Japantown',9,702,'Subscriber',95112); +INSERT INTO "trip" VALUES(908286,432,'8/27/2015 15:16','Broadway St at Battery St',82,'8/27/2015 15:23','Mechanics Plaza (Market at Battery)',75,594,'Subscriber',94041); +INSERT INTO "trip" VALUES(908287,439,'8/27/2015 15:16','2nd at South Park',64,'8/27/2015 15:24','Embarcadero at Folsom',51,462,'Subscriber',94105); +INSERT INTO "trip" VALUES(908288,500,'8/27/2015 15:17','2nd at Townsend',61,'8/27/2015 15:25','Harry Bridges Plaza (Ferry Building)',50,555,'Subscriber',94941); +INSERT INTO "trip" VALUES(908289,576,'8/27/2015 15:20','5th at Howard',57,'8/27/2015 15:29','Market at 10th',67,425,'Subscriber',94103); +INSERT INTO "trip" VALUES(908290,209,'8/27/2015 15:22','San Francisco Caltrain 2 (330 Townsend)',69,'8/27/2015 15:26','Townsend at 7th',65,313,'Subscriber',94044); +INSERT INTO "trip" VALUES(908291,835,'8/27/2015 15:23','2nd at Townsend',61,'8/27/2015 15:37','Embarcadero at Sansome',60,546,'Customer',94123); +INSERT INTO "trip" VALUES(908292,181,'8/27/2015 15:23','Clay at Battery',41,'8/27/2015 15:26','Harry Bridges Plaza (Ferry Building)',50,69,'Subscriber',94904); +INSERT INTO "trip" VALUES(908293,876,'8/27/2015 15:24','Market at Sansome',77,'8/27/2015 15:39','Embarcadero at Sansome',60,399,'Subscriber',94111); +INSERT INTO "trip" VALUES(908294,353,'8/27/2015 15:24','2nd at Folsom',62,'8/27/2015 15:30','Harry Bridges Plaza (Ferry Building)',50,320,'Subscriber',94973); +INSERT INTO "trip" VALUES(908297,483,'8/27/2015 15:26','2nd at Townsend',61,'8/27/2015 15:35','Harry Bridges Plaza (Ferry Building)',50,520,'Subscriber',94111); +INSERT INTO "trip" VALUES(908298,850,'8/27/2015 15:27','Embarcadero at Folsom',51,'8/27/2015 15:41','2nd at Townsend',61,462,'Subscriber',95148); +INSERT INTO "trip" VALUES(908301,329,'8/27/2015 15:28','Post at Kearny',47,'8/27/2015 15:33','Harry Bridges Plaza (Ferry Building)',50,503,'Subscriber',94957); +INSERT INTO "trip" VALUES(908303,482,'8/27/2015 15:28','2nd at Townsend',61,'8/27/2015 15:37','Steuart at Market',74,579,'Subscriber',94588); +INSERT INTO "trip" VALUES(908304,500,'8/27/2015 15:28','5th at Howard',57,'8/27/2015 15:37','San Francisco City Hall',58,497,'Subscriber',94702); +INSERT INTO "trip" VALUES(908306,663,'8/27/2015 15:29','Beale at Market',56,'8/27/2015 15:40','San Francisco Caltrain (Townsend at 4th)',70,382,'Subscriber',95136); +INSERT INTO "trip" VALUES(908310,658,'8/27/2015 15:30','Townsend at 7th',65,'8/27/2015 15:41','Civic Center BART (7th at Market)',72,442,'Subscriber',94551); +INSERT INTO "trip" VALUES(908311,953,'8/27/2015 15:30','Embarcadero at Sansome',60,'8/27/2015 15:46','San Francisco Caltrain 2 (330 Townsend)',69,601,'Subscriber',95129); +INSERT INTO "trip" VALUES(908312,523,'8/27/2015 15:31','Broadway St at Battery St',82,'8/27/2015 15:40','Broadway St at Battery St',82,542,'Subscriber',94111); +INSERT INTO "trip" VALUES(908313,417,'8/27/2015 15:31','Harry Bridges Plaza (Ferry Building)',50,'8/27/2015 15:38','Embarcadero at Bryant',54,189,'Subscriber',94114); +INSERT INTO "trip" VALUES(908314,3042,'8/27/2015 15:31','2nd at Townsend',61,'8/27/2015 16:22','Embarcadero at Sansome',60,611,'Customer',7016); +INSERT INTO "trip" VALUES(908315,433,'8/27/2015 15:32','2nd at Townsend',61,'8/27/2015 15:39','Market at Sansome',77,421,'Subscriber',94117); +INSERT INTO "trip" VALUES(908316,431,'8/27/2015 15:32','2nd at Townsend',61,'8/27/2015 15:39','Market at Sansome',77,540,'Subscriber',94109); +INSERT INTO "trip" VALUES(908317,737,'8/27/2015 15:34','2nd at Townsend',61,'8/27/2015 15:47','Embarcadero at Folsom',51,193,'Subscriber',94118); +INSERT INTO "trip" VALUES(908318,1117,'8/27/2015 15:35','2nd at Townsend',61,'8/27/2015 15:53','Civic Center BART (7th at Market)',72,384,'Customer',60622); +INSERT INTO "trip" VALUES(908319,945,'8/27/2015 15:35','2nd at Townsend',61,'8/27/2015 15:50','Broadway St at Battery St',82,445,'Subscriber',94111); +INSERT INTO "trip" VALUES(908320,1070,'8/27/2015 15:35','2nd at Townsend',61,'8/27/2015 15:53','Civic Center BART (7th at Market)',72,448,'Customer',60622); +INSERT INTO "trip" VALUES(908321,903,'8/27/2015 15:35','Embarcadero at Bryant',54,'8/27/2015 15:50','Embarcadero at Sansome',60,416,'Customer',78701); +INSERT INTO "trip" VALUES(908322,883,'8/27/2015 15:36','Embarcadero at Bryant',54,'8/27/2015 15:50','Embarcadero at Sansome',60,390,'Customer',78701); +INSERT INTO "trip" VALUES(908323,445,'8/27/2015 15:36','2nd at Townsend',61,'8/27/2015 15:44','Spear at Folsom',49,531,'Subscriber',94131); +INSERT INTO "trip" VALUES(908324,926,'8/27/2015 15:37','2nd at Townsend',61,'8/27/2015 15:53','Civic Center BART (7th at Market)',72,631,'Customer',94715); +INSERT INTO "trip" VALUES(908325,345,'8/27/2015 15:38','Market at Sansome',77,'8/27/2015 15:43','Harry Bridges Plaza (Ferry Building)',50,109,'Customer',77449); +INSERT INTO "trip" VALUES(908326,956,'8/27/2015 15:38','San Francisco Caltrain 2 (330 Townsend)',69,'8/27/2015 15:54','Steuart at Market',74,463,'Customer',94563); +INSERT INTO "trip" VALUES(908327,229,'8/27/2015 15:42','Embarcadero at Bryant',54,'8/27/2015 15:45','Harry Bridges Plaza (Ferry Building)',50,636,'Subscriber',94939); +INSERT INTO "trip" VALUES(908328,739,'8/27/2015 15:42','Howard at 2nd',63,'8/27/2015 15:54','San Francisco Caltrain (Townsend at 4th)',70,338,'Customer',94965); +INSERT INTO "trip" VALUES(908329,876,'8/27/2015 15:42','Temporary Transbay Terminal (Howard at Beale)',55,'8/27/2015 15:56','San Francisco Caltrain (Townsend at 4th)',70,517,'Subscriber',94030); +INSERT INTO "trip" VALUES(908332,1659,'8/27/2015 15:43','2nd at Townsend',61,'8/27/2015 16:11','2nd at Townsend',61,391,'Subscriber',94107); +INSERT INTO "trip" VALUES(908335,1118,'8/27/2015 15:44','Broadway St at Battery St',82,'8/27/2015 16:03','Broadway St at Battery St',82,709,'Subscriber',94111); +INSERT INTO "trip" VALUES(908336,718,'8/27/2015 15:44','Harry Bridges Plaza (Ferry Building)',50,'8/27/2015 15:56','San Francisco Caltrain (Townsend at 4th)',70,283,'Subscriber',94303); +INSERT INTO "trip" VALUES(908343,286,'8/27/2015 15:47','Mechanics Plaza (Market at Battery)',75,'8/27/2015 15:52','Davis at Jackson',42,621,'Subscriber',94960); +INSERT INTO "trip" VALUES(908344,286,'8/27/2015 15:49','San Francisco Caltrain 2 (330 Townsend)',69,'8/27/2015 15:54','Townsend at 7th',65,541,'Subscriber',94015); +INSERT INTO "trip" VALUES(908345,460,'8/27/2015 15:50','2nd at Townsend',61,'8/27/2015 15:58','Market at Sansome',77,530,'Subscriber',94539); +INSERT INTO "trip" VALUES(908346,483,'8/27/2015 15:50','2nd at Townsend',61,'8/27/2015 15:58','Howard at 2nd',63,351,'Subscriber',94111); +INSERT INTO "trip" VALUES(908347,713,'8/27/2015 15:52','Broadway St at Battery St',82,'8/27/2015 16:04','San Francisco Caltrain (Townsend at 4th)',70,422,'Subscriber',95120); +INSERT INTO "trip" VALUES(908348,901,'8/27/2015 15:53','Market at Sansome',77,'8/27/2015 16:08','San Francisco Caltrain 2 (330 Townsend)',69,516,'Subscriber',94403); +INSERT INTO "trip" VALUES(908349,204,'8/27/2015 15:53','Townsend at 7th',65,'8/27/2015 15:57','San Francisco Caltrain 2 (330 Townsend)',69,313,'Subscriber',94043); +INSERT INTO "trip" VALUES(908350,697,'8/27/2015 15:53','Temporary Transbay Terminal (Howard at Beale)',55,'8/27/2015 16:05','San Francisco Caltrain (Townsend at 4th)',70,342,'Subscriber',95110); +INSERT INTO "trip" VALUES(908351,10693,'8/27/2015 15:54','San Francisco Caltrain (Townsend at 4th)',70,'8/27/2015 18:52','Market at 10th',67,56,'Subscriber',94618); +INSERT INTO "trip" VALUES(908352,405,'8/27/2015 15:54','Market at Sansome',77,'8/27/2015 16:01','2nd at South Park',64,540,'Subscriber',94107); +INSERT INTO "trip" VALUES(908353,114,'8/27/2015 15:54','Davis at Jackson',42,'8/27/2015 15:56','Harry Bridges Plaza (Ferry Building)',50,621,'Subscriber',94965); +INSERT INTO "trip" VALUES(908354,80,'8/27/2015 15:54','2nd at Townsend',61,'8/27/2015 15:56','2nd at Townsend',61,403,'Subscriber',94111); +INSERT INTO "trip" VALUES(908355,4597,'8/27/2015 15:55','Embarcadero at Vallejo',48,'8/27/2015 17:11','Embarcadero at Sansome',60,528,'Customer',94301); +INSERT INTO "trip" VALUES(908356,792,'8/27/2015 15:55','2nd at Townsend',61,'8/27/2015 16:09','Embarcadero at Sansome',60,472,'Subscriber',94531); +INSERT INTO "trip" VALUES(908357,844,'8/27/2015 15:56','Embarcadero at Bryant',54,'8/27/2015 16:10','Harry Bridges Plaza (Ferry Building)',50,590,'Customer','nil'); +INSERT INTO "trip" VALUES(908358,648,'8/27/2015 15:56','Stanford in Redwood City',25,'8/27/2015 16:07','Redwood City Caltrain Station',22,188,'Subscriber',94131); +INSERT INTO "trip" VALUES(908360,792,'8/27/2015 15:57','Embarcadero at Bryant',54,'8/27/2015 16:10','Harry Bridges Plaza (Ferry Building)',50,450,'Customer','nil'); +INSERT INTO "trip" VALUES(908361,1117,'8/27/2015 15:57','2nd at South Park',64,'8/27/2015 16:15','Market at 10th',67,585,'Customer',1); +INSERT INTO "trip" VALUES(908363,1095,'8/27/2015 15:57','2nd at South Park',64,'8/27/2015 16:15','Market at 10th',67,554,'Customer',1); +INSERT INTO "trip" VALUES(908364,548,'8/27/2015 15:57','San Francisco Caltrain 2 (330 Townsend)',69,'8/27/2015 16:06','Powell Street BART',39,361,'Subscriber',94606); +INSERT INTO "trip" VALUES(908365,228,'8/27/2015 15:57','Adobe on Almaden',5,'8/27/2015 16:01','San Jose Diridon Caltrain Station',2,71,'Subscriber',94002); +INSERT INTO "trip" VALUES(908366,675,'8/27/2015 15:58','Harry Bridges Plaza (Ferry Building)',50,'8/27/2015 16:09','Market at 4th',76,479,'Subscriber',94109); +INSERT INTO "trip" VALUES(908367,693,'8/27/2015 15:58','Post at Kearny',47,'8/27/2015 16:10','San Francisco Caltrain 2 (330 Townsend)',69,457,'Subscriber',94401); +INSERT INTO "trip" VALUES(908369,256,'8/27/2015 15:59','Townsend at 7th',65,'8/27/2015 16:03','San Francisco Caltrain 2 (330 Townsend)',69,672,'Subscriber',94043); +INSERT INTO "trip" VALUES(908370,1471,'8/27/2015 16:00','Townsend at 7th',65,'8/27/2015 16:24','Davis at Jackson',42,326,'Subscriber',98033); +INSERT INTO "trip" VALUES(908371,19825,'8/27/2015 16:00','Embarcadero at Vallejo',48,'8/27/2015 21:30','Embarcadero at Vallejo',48,408,'Customer',95023); +INSERT INTO "trip" VALUES(908372,866,'8/27/2015 16:00','Beale at Market',56,'8/27/2015 16:15','San Francisco Caltrain (Townsend at 4th)',70,505,'Subscriber',94303); +INSERT INTO "trip" VALUES(908373,307,'8/27/2015 16:01','Mechanics Plaza (Market at Battery)',75,'8/27/2015 16:06','Embarcadero at Folsom',51,677,'Customer',94025); +INSERT INTO "trip" VALUES(908374,525,'8/27/2015 16:02','San Francisco Caltrain 2 (330 Townsend)',69,'8/27/2015 16:11','Embarcadero at Folsom',51,313,'Subscriber',94105); +INSERT INTO "trip" VALUES(908375,411,'8/27/2015 16:02','Townsend at 7th',65,'8/27/2015 16:09','San Francisco Caltrain 2 (330 Townsend)',69,541,'Customer',94086); +INSERT INTO "trip" VALUES(908376,791,'8/27/2015 16:03','San Francisco Caltrain 2 (330 Townsend)',69,'8/27/2015 16:16','Harry Bridges Plaza (Ferry Building)',50,426,'Subscriber',94501); +INSERT INTO "trip" VALUES(908377,19635,'8/27/2015 16:03','Embarcadero at Vallejo',48,'8/27/2015 21:30','Embarcadero at Vallejo',48,534,'Customer',95023); +INSERT INTO "trip" VALUES(908378,192,'8/27/2015 16:03','San Antonio Shopping Center',31,'8/27/2015 16:06','San Antonio Caltrain Station',29,197,'Subscriber',94133); +INSERT INTO "trip" VALUES(908379,19616,'8/27/2015 16:03','Embarcadero at Vallejo',48,'8/27/2015 21:30','Embarcadero at Vallejo',48,493,'Customer',95023); +INSERT INTO "trip" VALUES(908381,646,'8/27/2015 16:04','Mechanics Plaza (Market at Battery)',75,'8/27/2015 16:15','San Francisco Caltrain (Townsend at 4th)',70,594,'Subscriber',94403); +INSERT INTO "trip" VALUES(908382,387,'8/27/2015 16:05','Mechanics Plaza (Market at Battery)',75,'8/27/2015 16:11','Yerba Buena Center of the Arts (3rd @ Howard)',68,575,'Subscriber',94117); +INSERT INTO "trip" VALUES(908383,476,'8/27/2015 16:05','Embarcadero at Bryant',54,'8/27/2015 16:13','San Francisco Caltrain 2 (330 Townsend)',69,189,'Subscriber',95050); +INSERT INTO "trip" VALUES(908384,593,'8/27/2015 16:05','MLK Library',11,'8/27/2015 16:15','San Jose Diridon Caltrain Station',2,18,'Subscriber',94110); +INSERT INTO "trip" VALUES(908385,387,'8/27/2015 16:05','Yerba Buena Center of the Arts (3rd @ Howard)',68,'8/27/2015 16:12','San Francisco Caltrain (Townsend at 4th)',70,632,'Subscriber',94070); +INSERT INTO "trip" VALUES(908386,12103,'8/27/2015 16:06','San Francisco Caltrain 2 (330 Townsend)',69,'8/27/2015 19:28','Embarcadero at Sansome',60,672,'Customer',5500002); +INSERT INTO "trip" VALUES(908387,709,'8/27/2015 16:07','San Francisco City Hall',58,'8/27/2015 16:18','Beale at Market',56,417,'Subscriber',9611); +INSERT INTO "trip" VALUES(908388,736,'8/27/2015 16:07','Commercial at Montgomery',45,'8/27/2015 16:19','Temporary Transbay Terminal (Howard at Beale)',55,300,'Subscriber',94530); +INSERT INTO "trip" VALUES(908389,274,'8/27/2015 16:07','Broadway St at Battery St',82,'8/27/2015 16:11','Steuart at Market',74,269,'Subscriber',94556); +INSERT INTO "trip" VALUES(908390,963,'8/27/2015 16:07','2nd at South Park',64,'8/27/2015 16:23','Post at Kearny',47,687,'Customer',95127); +INSERT INTO "trip" VALUES(908391,12077,'8/27/2015 16:06','San Francisco Caltrain 2 (330 Townsend)',69,'8/27/2015 19:28','Embarcadero at Sansome',60,525,'Customer',5500002); +INSERT INTO "trip" VALUES(908392,2790,'8/27/2015 16:07','Broadway St at Battery St',82,'8/27/2015 16:54','Harry Bridges Plaza (Ferry Building)',50,709,'Customer',94559); +INSERT INTO "trip" VALUES(908393,968,'8/27/2015 16:07','2nd at South Park',64,'8/27/2015 16:23','Post at Kearny',47,540,'Customer',95127); +INSERT INTO "trip" VALUES(908394,716,'8/27/2015 16:05','Steuart at Market',74,'8/27/2015 16:16','San Francisco Caltrain (Townsend at 4th)',70,583,'Subscriber',94086); +INSERT INTO "trip" VALUES(908395,2683,'8/27/2015 16:09','Broadway St at Battery St',82,'8/27/2015 16:54','Harry Bridges Plaza (Ferry Building)',50,591,'Customer',94559); +INSERT INTO "trip" VALUES(908396,409,'8/27/2015 16:11','St James Park',13,'8/27/2015 16:18','San Jose Diridon Caltrain Station',2,78,'Subscriber',94105); +INSERT INTO "trip" VALUES(908397,281,'8/27/2015 16:11','Embarcadero at Bryant',54,'8/27/2015 16:16','Beale at Market',56,584,'Subscriber',94105); +INSERT INTO "trip" VALUES(908398,2535,'8/27/2015 16:11','Broadway St at Battery St',82,'8/27/2015 16:53','Harry Bridges Plaza (Ferry Building)',50,542,'Customer',94559); +INSERT INTO "trip" VALUES(908404,1011,'8/27/2015 16:15','Beale at Market',56,'8/27/2015 16:32','San Francisco Caltrain (Townsend at 4th)',70,375,'Subscriber',95133); +INSERT INTO "trip" VALUES(908407,308,'8/27/2015 16:16','Howard at 2nd',63,'8/27/2015 16:21','Harry Bridges Plaza (Ferry Building)',50,363,'Subscriber',94954); +INSERT INTO "trip" VALUES(908408,1519,'8/27/2015 16:17','2nd at Townsend',61,'8/27/2015 16:43','Market at 4th',76,391,'Subscriber',94107); +INSERT INTO "trip" VALUES(908413,965,'8/27/2015 16:18','Clay at Battery',41,'8/27/2015 16:35','San Francisco Caltrain (Townsend at 4th)',70,401,'Subscriber',94025); +INSERT INTO "trip" VALUES(908416,595,'8/27/2015 16:19','Howard at 2nd',63,'8/27/2015 16:29','San Francisco Caltrain (Townsend at 4th)',70,351,'Subscriber',94306); +INSERT INTO "trip" VALUES(908418,749,'8/27/2015 16:20','Mountain View City Hall',27,'8/27/2015 16:32','San Antonio Shopping Center',31,673,'Subscriber',94041); +INSERT INTO "trip" VALUES(908419,358,'8/27/2015 16:20','Embarcadero at Vallejo',48,'8/27/2015 16:26','Temporary Transbay Terminal (Howard at Beale)',55,529,'Subscriber',94602); +INSERT INTO "trip" VALUES(908423,644,'8/27/2015 16:21','Harry Bridges Plaza (Ferry Building)',50,'8/27/2015 16:32','San Francisco Caltrain 2 (330 Townsend)',69,636,'Subscriber',95060); +INSERT INTO "trip" VALUES(908429,508,'8/27/2015 16:24','Post at Kearny',47,'8/27/2015 16:32','Powell at Post (Union Square)',71,687,'Customer',95127); +INSERT INTO "trip" VALUES(908431,1213,'8/27/2015 16:24','Embarcadero at Folsom',51,'8/27/2015 16:44','South Van Ness at Market',66,562,'Subscriber',94103); +INSERT INTO "trip" VALUES(908432,400,'8/27/2015 16:24','Market at 10th',67,'8/27/2015 16:31','5th at Howard',57,425,'Subscriber',94103); +INSERT INTO "trip" VALUES(908435,288,'8/27/2015 16:25','Castro Street and El Camino Real',32,'8/27/2015 16:30','Mountain View Caltrain Station',28,142,'Subscriber',94118); +INSERT INTO "trip" VALUES(908436,411,'8/27/2015 16:25','Post at Kearny',47,'8/27/2015 16:32','Powell at Post (Union Square)',71,540,'Customer',95127); +INSERT INTO "trip" VALUES(908437,687,'8/27/2015 16:26','5th at Howard',57,'8/27/2015 16:37','Market at 10th',67,322,'Customer',10002); +INSERT INTO "trip" VALUES(908438,675,'8/27/2015 16:26','5th at Howard',57,'8/27/2015 16:37','Market at 10th',67,459,'Customer',10002); +INSERT INTO "trip" VALUES(908440,785,'8/27/2015 16:27','Davis at Jackson',42,'8/27/2015 16:40','San Francisco Caltrain (Townsend at 4th)',70,432,'Subscriber',94025); +INSERT INTO "trip" VALUES(908442,501,'8/27/2015 16:28','2nd at Townsend',61,'8/27/2015 16:37','Harry Bridges Plaza (Ferry Building)',50,403,'Subscriber',94558); +INSERT INTO "trip" VALUES(908444,863,'8/27/2015 16:29','2nd at Townsend',61,'8/27/2015 16:44','Washington at Kearny',46,315,'Subscriber',94109); +INSERT INTO "trip" VALUES(908445,223,'8/27/2015 16:30','Santa Clara at Almaden',4,'8/27/2015 16:34','San Jose Diridon Caltrain Station',2,117,'Subscriber',95020); +INSERT INTO "trip" VALUES(908446,294,'8/27/2015 16:31','Broadway St at Battery St',82,'8/27/2015 16:35','Market at Sansome',77,445,'Subscriber',94588); +INSERT INTO "trip" VALUES(908447,609,'8/27/2015 16:31','Embarcadero at Vallejo',48,'8/27/2015 16:41','2nd at Townsend',61,495,'Subscriber',94107); +INSERT INTO "trip" VALUES(908448,406,'8/27/2015 16:32','Clay at Battery',41,'8/27/2015 16:38','Temporary Transbay Terminal (Howard at Beale)',55,29,'Subscriber',94501); +INSERT INTO "trip" VALUES(908449,683,'8/27/2015 16:33','San Francisco Caltrain (Townsend at 4th)',70,'8/27/2015 16:44','Civic Center BART (7th at Market)',72,332,'Subscriber',94105); +INSERT INTO "trip" VALUES(908450,1778,'8/27/2015 16:34','2nd at Folsom',62,'8/27/2015 17:03','San Francisco Caltrain (Townsend at 4th)',70,877,'Subscriber',94025); +INSERT INTO "trip" VALUES(908451,979,'8/27/2015 16:34','Commercial at Montgomery',45,'8/27/2015 16:50','San Francisco Caltrain (Townsend at 4th)',70,285,'Subscriber',94010); +INSERT INTO "trip" VALUES(908452,438,'8/27/2015 16:34','Market at 4th',76,'8/27/2015 16:42','Temporary Transbay Terminal (Howard at Beale)',55,527,'Subscriber',94501); +INSERT INTO "trip" VALUES(908453,845,'8/27/2015 16:35','Embarcadero at Folsom',51,'8/27/2015 16:49','San Francisco Caltrain (Townsend at 4th)',70,158,'Subscriber',94062); +INSERT INTO "trip" VALUES(908454,266,'8/27/2015 16:35','Santa Clara at Almaden',4,'8/27/2015 16:40','San Jose Diridon Caltrain Station',2,213,'Subscriber',94103); +INSERT INTO "trip" VALUES(908455,280,'8/27/2015 16:36','Evelyn Park and Ride',30,'8/27/2015 16:41','Mountain View Caltrain Station',28,139,'Subscriber',94110); +INSERT INTO "trip" VALUES(908456,1033,'8/27/2015 16:38','Clay at Battery',41,'8/27/2015 16:55','San Francisco Caltrain (Townsend at 4th)',70,443,'Subscriber',94301); +INSERT INTO "trip" VALUES(908457,480,'8/27/2015 16:38','Spear at Folsom',49,'8/27/2015 16:46','San Francisco Caltrain 2 (330 Townsend)',69,531,'Subscriber',94105); +INSERT INTO "trip" VALUES(908458,779,'8/27/2015 16:38','Harry Bridges Plaza (Ferry Building)',50,'8/27/2015 16:51','San Francisco Caltrain (Townsend at 4th)',70,600,'Subscriber',93401); +INSERT INTO "trip" VALUES(908459,634,'8/27/2015 16:38','San Francisco Caltrain (Townsend at 4th)',70,'8/27/2015 16:49','Market at 4th',76,508,'Subscriber',2139); +INSERT INTO "trip" VALUES(908460,489,'8/27/2015 16:38','Civic Center BART (7th at Market)',72,'8/27/2015 16:46','Temporary Transbay Terminal (Howard at Beale)',55,448,'Subscriber',94710); +INSERT INTO "trip" VALUES(908462,594,'8/27/2015 16:40','Steuart at Market',74,'8/27/2015 16:50','2nd at Townsend',61,538,'Subscriber',94560); +INSERT INTO "trip" VALUES(908463,1113,'8/27/2015 16:40','Townsend at 7th',65,'8/27/2015 16:58','Steuart at Market',74,457,'Subscriber',94107); +INSERT INTO "trip" VALUES(908464,728,'8/27/2015 16:40','San Francisco Caltrain (Townsend at 4th)',70,'8/27/2015 16:52','Powell at Post (Union Square)',71,492,'Subscriber',94109); +INSERT INTO "trip" VALUES(908465,593,'8/27/2015 16:40','Temporary Transbay Terminal (Howard at Beale)',55,'8/27/2015 16:50','San Francisco Caltrain 2 (330 Townsend)',69,300,'Subscriber',94404); +INSERT INTO "trip" VALUES(908467,503,'8/27/2015 16:42','Embarcadero at Sansome',60,'8/27/2015 16:50','Embarcadero at Folsom',51,611,'Subscriber',94105); +INSERT INTO "trip" VALUES(908468,398,'8/27/2015 16:42','2nd at Townsend',61,'8/27/2015 16:49','Harry Bridges Plaza (Ferry Building)',50,495,'Subscriber',94903); +INSERT INTO "trip" VALUES(908469,491,'8/27/2015 16:43','Market at 10th',67,'8/27/2015 16:51','San Francisco Caltrain 2 (330 Townsend)',69,585,'Subscriber',94061); +INSERT INTO "trip" VALUES(908470,743,'8/27/2015 16:43','San Francisco Caltrain (Townsend at 4th)',70,'8/27/2015 16:56','Harry Bridges Plaza (Ferry Building)',50,422,'Subscriber',94930); +INSERT INTO "trip" VALUES(908471,755,'8/27/2015 16:44','Embarcadero at Folsom',51,'8/27/2015 16:56','San Francisco Caltrain (Townsend at 4th)',70,606,'Subscriber',94070); +INSERT INTO "trip" VALUES(908472,587,'8/27/2015 16:44','Civic Center BART (7th at Market)',72,'8/27/2015 16:54','2nd at Folsom',62,370,'Subscriber',94105); +INSERT INTO "trip" VALUES(908473,819,'8/27/2015 16:44','Commercial at Montgomery',45,'8/27/2015 16:58','San Francisco Caltrain 2 (330 Townsend)',69,659,'Subscriber',94107); +INSERT INTO "trip" VALUES(908475,655,'8/27/2015 16:44','Clay at Battery',41,'8/27/2015 16:55','San Francisco Caltrain (Townsend at 4th)',70,434,'Subscriber',94065); +INSERT INTO "trip" VALUES(908476,572,'8/27/2015 16:45','San Francisco Caltrain 2 (330 Townsend)',69,'8/27/2015 16:54','Harry Bridges Plaza (Ferry Building)',50,636,'Subscriber',94901); +INSERT INTO "trip" VALUES(908477,576,'8/27/2015 16:45','Townsend at 7th',65,'8/27/2015 16:54','Civic Center BART (7th at Market)',72,537,'Subscriber',94582); +INSERT INTO "trip" VALUES(908478,455,'8/27/2015 16:45','2nd at South Park',64,'8/27/2015 16:52','Harry Bridges Plaza (Ferry Building)',50,400,'Subscriber',94510); +INSERT INTO "trip" VALUES(908479,317,'8/27/2015 16:45','Yerba Buena Center of the Arts (3rd @ Howard)',68,'8/27/2015 16:51','San Francisco Caltrain (Townsend at 4th)',70,489,'Subscriber',94041); +INSERT INTO "trip" VALUES(908480,588,'8/27/2015 16:46','Broadway St at Battery St',82,'8/27/2015 16:55','Beale at Market',56,410,'Subscriber',94118); +INSERT INTO "trip" VALUES(908483,544,'8/27/2015 16:46','Market at 4th',76,'8/27/2015 16:55','San Francisco Caltrain (Townsend at 4th)',70,391,'Subscriber',94002); +INSERT INTO "trip" VALUES(908485,634,'8/27/2015 16:47','Civic Center BART (7th at Market)',72,'8/27/2015 16:58','San Francisco Caltrain 2 (330 Townsend)',69,630,'Subscriber',94040); +INSERT INTO "trip" VALUES(908488,460,'8/27/2015 16:49','Broadway St at Battery St',82,'8/27/2015 16:56','Beale at Market',56,380,'Subscriber',94607); +INSERT INTO "trip" VALUES(908489,420,'8/27/2015 16:49','San Pedro Square',6,'8/27/2015 16:56','San Jose Diridon Caltrain Station',2,129,'Subscriber',94002); +INSERT INTO "trip" VALUES(908490,588,'8/27/2015 16:49','2nd at Folsom',62,'8/27/2015 16:59','Grant Avenue at Columbus Avenue',73,362,'Subscriber',94109); +INSERT INTO "trip" VALUES(908491,903,'8/27/2015 16:49','Beale at Market',56,'8/27/2015 17:04','San Francisco Caltrain (Townsend at 4th)',70,584,'Subscriber',95148); +INSERT INTO "trip" VALUES(908492,277,'8/27/2015 16:49','Embarcadero at Bryant',54,'8/27/2015 16:53','2nd at Townsend',61,553,'Subscriber',94105); +INSERT INTO "trip" VALUES(908493,293,'8/27/2015 16:49','Embarcadero at Sansome',60,'8/27/2015 16:54','Steuart at Market',74,86,'Subscriber',94103); +INSERT INTO "trip" VALUES(908494,934,'8/27/2015 16:46','Mechanics Plaza (Market at Battery)',75,'8/27/2015 17:01','San Francisco Caltrain 2 (330 Townsend)',69,356,'Subscriber',94301); +INSERT INTO "trip" VALUES(908495,136,'8/27/2015 16:49','2nd at Folsom',62,'8/27/2015 16:51','Market at Sansome',77,614,'Subscriber',94602); +INSERT INTO "trip" VALUES(908496,397,'8/27/2015 16:50','Broadway St at Battery St',82,'8/27/2015 16:57','Market at Sansome',77,288,'Subscriber',94025); +INSERT INTO "trip" VALUES(908497,354,'8/27/2015 16:51','Howard at 2nd',63,'8/27/2015 16:56','Harry Bridges Plaza (Ferry Building)',50,318,'Subscriber',94590); +INSERT INTO "trip" VALUES(908498,451,'8/27/2015 16:51','2nd at Townsend',61,'8/27/2015 16:58','Harry Bridges Plaza (Ferry Building)',50,538,'Subscriber',94903); +INSERT INTO "trip" VALUES(908499,585,'8/27/2015 16:51','Market at 10th',67,'8/27/2015 17:00','San Francisco Caltrain 2 (330 Townsend)',69,322,'Subscriber',95123); +INSERT INTO "trip" VALUES(908500,1085,'8/27/2015 16:51','Clay at Battery',41,'8/27/2015 17:09','San Francisco Caltrain (Townsend at 4th)',70,518,'Subscriber',94070); +INSERT INTO "trip" VALUES(908501,693,'8/27/2015 16:51','Mechanics Plaza (Market at Battery)',75,'8/27/2015 17:03','San Francisco Caltrain (Townsend at 4th)',70,431,'Subscriber',94303); +INSERT INTO "trip" VALUES(908502,415,'8/27/2015 16:51','2nd at Townsend',61,'8/27/2015 16:58','2nd at Folsom',62,462,'Subscriber',94110); +INSERT INTO "trip" VALUES(908505,433,'8/27/2015 16:53','2nd at Folsom',62,'8/27/2015 17:00','San Francisco Caltrain (Townsend at 4th)',70,329,'Subscriber',94403); +INSERT INTO "trip" VALUES(908506,675,'8/27/2015 16:53','Harry Bridges Plaza (Ferry Building)',50,'8/27/2015 17:04','San Francisco Caltrain (Townsend at 4th)',70,450,'Subscriber',94062); +INSERT INTO "trip" VALUES(908507,970,'8/27/2015 16:53','Davis at Jackson',42,'8/27/2015 17:09','San Francisco Caltrain (Townsend at 4th)',70,623,'Subscriber',94040); +INSERT INTO "trip" VALUES(908508,777,'8/27/2015 16:53','Grant Avenue at Columbus Avenue',73,'8/27/2015 17:06','Powell at Post (Union Square)',71,593,'Customer',45); +INSERT INTO "trip" VALUES(908511,930,'8/27/2015 16:53','Beale at Market',56,'8/27/2015 17:09','San Francisco Caltrain (Townsend at 4th)',70,417,'Subscriber',94402); +INSERT INTO "trip" VALUES(908512,607,'8/27/2015 16:49','South Van Ness at Market',66,'8/27/2015 16:59','San Francisco Caltrain 2 (330 Townsend)',69,562,'Subscriber',95030); +INSERT INTO "trip" VALUES(908515,301,'8/27/2015 16:53','2nd at South Park',64,'8/27/2015 16:59','Market at Sansome',77,419,'Subscriber',95973); +INSERT INTO "trip" VALUES(908516,292,'8/27/2015 16:54','5th at Howard',57,'8/27/2015 16:58','Civic Center BART (7th at Market)',72,425,'Subscriber',94109); +INSERT INTO "trip" VALUES(908517,497,'8/27/2015 16:54','2nd at Townsend',61,'8/27/2015 17:02','Townsend at 7th',65,553,'Subscriber',94560); +INSERT INTO "trip" VALUES(908518,619,'8/27/2015 16:54','Harry Bridges Plaza (Ferry Building)',50,'8/27/2015 17:04','Civic Center BART (7th at Market)',72,426,'Subscriber',94941); +INSERT INTO "trip" VALUES(908520,945,'8/27/2015 16:55','Broadway St at Battery St',82,'8/27/2015 17:10','San Francisco Caltrain 2 (330 Townsend)',69,470,'Subscriber',94025); +INSERT INTO "trip" VALUES(908521,1138,'8/27/2015 16:55','Embarcadero at Vallejo',48,'8/27/2015 17:14','San Francisco Caltrain 2 (330 Townsend)',69,428,'Subscriber',95122); +INSERT INTO "trip" VALUES(908522,734,'8/27/2015 16:55','Temporary Transbay Terminal (Howard at Beale)',55,'8/27/2015 17:07','San Francisco Caltrain (Townsend at 4th)',70,335,'Subscriber',95014); +INSERT INTO "trip" VALUES(908525,459,'8/27/2015 16:56','Powell Street BART',39,'8/27/2015 17:03','San Francisco Caltrain (Townsend at 4th)',70,568,'Subscriber',94070); +INSERT INTO "trip" VALUES(908526,697,'8/27/2015 16:56','Temporary Transbay Terminal (Howard at Beale)',55,'8/27/2015 17:07','San Francisco Caltrain (Townsend at 4th)',70,29,'Subscriber',94070); +INSERT INTO "trip" VALUES(908528,603,'8/27/2015 16:57','Embarcadero at Folsom',51,'8/27/2015 17:07','San Francisco Caltrain (Townsend at 4th)',70,592,'Subscriber',95014); +INSERT INTO "trip" VALUES(908529,543,'8/27/2015 16:57','2nd at South Park',64,'8/27/2015 17:06','Harry Bridges Plaza (Ferry Building)',50,446,'Subscriber',94115); +INSERT INTO "trip" VALUES(908530,488,'8/27/2015 16:57','Embarcadero at Folsom',51,'8/27/2015 17:05','San Francisco Caltrain (Townsend at 4th)',70,394,'Subscriber',94085); +INSERT INTO "trip" VALUES(908531,928,'8/27/2015 16:57','Embarcadero at Sansome',60,'8/27/2015 17:12','San Francisco Caltrain 2 (330 Townsend)',69,187,'Subscriber',95111); +INSERT INTO "trip" VALUES(908532,725,'8/27/2015 16:57','Embarcadero at Folsom',51,'8/27/2015 17:09','San Francisco Caltrain 2 (330 Townsend)',69,521,'Subscriber',95131); +INSERT INTO "trip" VALUES(908533,25892,'8/27/2015 16:57','Harry Bridges Plaza (Ferry Building)',50,'8/28/2015 0:09','Embarcadero at Bryant',54,69,'Subscriber',94930); +INSERT INTO "trip" VALUES(908534,618,'8/27/2015 16:57','Broadway St at Battery St',82,'8/27/2015 17:07','Temporary Transbay Terminal (Howard at Beale)',55,602,'Subscriber',94608); +INSERT INTO "trip" VALUES(908536,1120,'8/27/2015 16:58','San Francisco Caltrain 2 (330 Townsend)',69,'8/27/2015 17:16','Golden Gate at Polk',59,453,'Subscriber',94102); +INSERT INTO "trip" VALUES(908538,252,'8/27/2015 16:58','Embarcadero at Vallejo',48,'8/27/2015 17:02','Steuart at Market',74,376,'Subscriber',94708); +INSERT INTO "trip" VALUES(908540,197,'8/27/2015 16:58','San Antonio Shopping Center',31,'8/27/2015 17:02','San Antonio Caltrain Station',29,673,'Subscriber',94109); +INSERT INTO "trip" VALUES(908543,436,'8/27/2015 16:59','2nd at South Park',64,'8/27/2015 17:06','Temporary Transbay Terminal (Howard at Beale)',55,407,'Subscriber',94123); +INSERT INTO "trip" VALUES(908544,518,'8/27/2015 16:59','Market at 4th',76,'8/27/2015 17:08','San Francisco Caltrain (Townsend at 4th)',70,479,'Subscriber',95122); +INSERT INTO "trip" VALUES(908545,579,'8/27/2015 17:00','Temporary Transbay Terminal (Howard at Beale)',55,'8/27/2015 17:09','San Francisco Caltrain (Townsend at 4th)',70,527,'Subscriber',94070); +INSERT INTO "trip" VALUES(908546,559,'8/27/2015 17:00','Market at Sansome',77,'8/27/2015 17:09','San Francisco Caltrain 2 (330 Townsend)',69,445,'Subscriber',95112); +INSERT INTO "trip" VALUES(908547,533,'8/27/2015 17:00','Temporary Transbay Terminal (Howard at Beale)',55,'8/27/2015 17:09','San Francisco Caltrain (Townsend at 4th)',70,427,'Subscriber',94402); +INSERT INTO "trip" VALUES(908548,525,'8/27/2015 17:00','Post at Kearny',47,'8/27/2015 17:09','Steuart at Market',74,496,'Subscriber',95442); +INSERT INTO "trip" VALUES(908549,516,'8/27/2015 17:00','Post at Kearny',47,'8/27/2015 17:09','Steuart at Market',74,570,'Subscriber',95442); +INSERT INTO "trip" VALUES(908550,560,'8/27/2015 17:00','Embarcadero at Folsom',51,'8/27/2015 17:10','Grant Avenue at Columbus Avenue',73,313,'Subscriber',94133); +INSERT INTO "trip" VALUES(908551,530,'8/27/2015 17:01','Beale at Market',56,'8/27/2015 17:09','Embarcadero at Sansome',60,410,'Subscriber',94111); +INSERT INTO "trip" VALUES(908552,592,'8/27/2015 17:01','Civic Center BART (7th at Market)',72,'8/27/2015 17:11','Temporary Transbay Terminal (Howard at Beale)',55,425,'Subscriber',94602); +INSERT INTO "trip" VALUES(908553,545,'8/27/2015 17:02','2nd at Folsom',62,'8/27/2015 17:11','Steuart at Market',74,462,'Subscriber',94949); +INSERT INTO "trip" VALUES(908554,499,'8/27/2015 17:02','Temporary Transbay Terminal (Howard at Beale)',55,'8/27/2015 17:10','San Francisco Caltrain (Townsend at 4th)',70,524,'Subscriber',95008); +INSERT INTO "trip" VALUES(908555,495,'8/27/2015 17:02','5th at Howard',57,'8/27/2015 17:10','Temporary Transbay Terminal (Howard at Beale)',55,878,'Subscriber',94170); +INSERT INTO "trip" VALUES(908556,852,'8/27/2015 17:02','Townsend at 7th',65,'8/27/2015 17:16','Steuart at Market',74,379,'Subscriber',94903); +INSERT INTO "trip" VALUES(908557,1063,'8/27/2015 17:02','Mechanics Plaza (Market at Battery)',75,'8/27/2015 17:20','San Francisco Caltrain 2 (330 Townsend)',69,271,'Subscriber',95054); +INSERT INTO "trip" VALUES(908558,220,'8/27/2015 17:02','San Antonio Shopping Center',31,'8/27/2015 17:06','San Antonio Caltrain Station',29,141,'Subscriber',94040); +INSERT INTO "trip" VALUES(908559,501,'8/27/2015 17:02','Mechanics Plaza (Market at Battery)',75,'8/27/2015 17:11','Civic Center BART (7th at Market)',72,389,'Subscriber',94122); +INSERT INTO "trip" VALUES(908560,638,'8/27/2015 17:02','Yerba Buena Center of the Arts (3rd @ Howard)',68,'8/27/2015 17:13','Steuart at Market',74,321,'Subscriber',94590); +INSERT INTO "trip" VALUES(908561,535,'8/27/2015 17:03','Market at 4th',76,'8/27/2015 17:12','San Francisco Caltrain 2 (330 Townsend)',69,624,'Subscriber',94608); +INSERT INTO "trip" VALUES(908562,487,'8/27/2015 17:03','5th at Howard',57,'8/27/2015 17:11','Temporary Transbay Terminal (Howard at Beale)',55,354,'Subscriber',94610); +INSERT INTO "trip" VALUES(908564,553,'8/27/2015 17:04','Powell Street BART',39,'8/27/2015 17:13','San Francisco Caltrain 2 (330 Townsend)',69,274,'Subscriber',94102); +INSERT INTO "trip" VALUES(908567,295,'8/27/2015 17:04','5th at Howard',57,'8/27/2015 17:09','San Francisco Caltrain 2 (330 Townsend)',69,314,'Subscriber',94303); +INSERT INTO "trip" VALUES(908568,1203,'8/27/2015 17:04','Spear at Folsom',49,'8/27/2015 17:24','Golden Gate at Polk',59,484,'Subscriber',94109); +INSERT INTO "trip" VALUES(908569,370,'8/27/2015 17:05','Market at 10th',67,'8/27/2015 17:11','Powell Street BART',39,352,'Subscriber',94803); +INSERT INTO "trip" VALUES(908570,771,'8/27/2015 17:05','Mechanics Plaza (Market at Battery)',75,'8/27/2015 17:18','San Francisco Caltrain 2 (330 Townsend)',69,266,'Subscriber',94070); +INSERT INTO "trip" VALUES(908571,3445,'8/27/2015 17:05','Embarcadero at Sansome',60,'8/27/2015 18:02','Embarcadero at Sansome',60,390,'Customer',15108); +INSERT INTO "trip" VALUES(908572,706,'8/27/2015 17:05','Embarcadero at Folsom',51,'8/27/2015 17:17','San Francisco Caltrain 2 (330 Townsend)',69,290,'Subscriber',95129); +INSERT INTO "trip" VALUES(908573,495,'8/27/2015 17:06','Townsend at 7th',65,'8/27/2015 17:14','Civic Center BART (7th at Market)',72,553,'Subscriber',94706); +INSERT INTO "trip" VALUES(908574,440,'8/27/2015 17:06','Steuart at Market',74,'8/27/2015 17:13','2nd at Townsend',61,373,'Subscriber',94158); +INSERT INTO "trip" VALUES(908575,879,'8/27/2015 17:06','Market at Sansome',77,'8/27/2015 17:21','San Francisco Caltrain 2 (330 Townsend)',69,306,'Subscriber',94087); +INSERT INTO "trip" VALUES(908577,921,'8/27/2015 17:07','Market at 10th',67,'8/27/2015 17:22','Embarcadero at Folsom',51,459,'Subscriber',94105); +INSERT INTO "trip" VALUES(908578,368,'8/27/2015 17:07','San Francisco Caltrain (Townsend at 4th)',70,'8/27/2015 17:14','Embarcadero at Bryant',54,606,'Subscriber',95608); +INSERT INTO "trip" VALUES(908579,359,'8/27/2015 17:08','Steuart at Market',74,'8/27/2015 17:14','Spear at Folsom',49,86,'Customer',94105); +INSERT INTO "trip" VALUES(908580,252,'8/27/2015 17:09','San Francisco Caltrain 2 (330 Townsend)',69,'8/27/2015 17:13','Townsend at 7th',65,562,'Subscriber',94107); +INSERT INTO "trip" VALUES(908581,707,'8/27/2015 17:09','2nd at Folsom',62,'8/27/2015 17:20','Steuart at Market',74,331,'Subscriber',94903); +INSERT INTO "trip" VALUES(908582,669,'8/27/2015 17:09','Mechanics Plaza (Market at Battery)',75,'8/27/2015 17:20','Market at 10th',67,478,'Subscriber',94102); +INSERT INTO "trip" VALUES(908584,574,'8/27/2015 17:05','Steuart at Market',74,'8/27/2015 17:14','San Francisco Caltrain 2 (330 Townsend)',69,589,'Subscriber',94002); +INSERT INTO "trip" VALUES(908585,637,'8/27/2015 17:06','Steuart at Market',74,'8/27/2015 17:17','Civic Center BART (7th at Market)',72,579,'Subscriber',94103); +INSERT INTO "trip" VALUES(908586,107,'8/27/2015 17:09','Market at 10th',67,'8/27/2015 17:11','Market at 10th',67,554,'Customer','nil'); +INSERT INTO "trip" VALUES(908587,902,'8/27/2015 17:09','Embarcadero at Vallejo',48,'8/27/2015 17:24','San Francisco Caltrain 2 (330 Townsend)',69,547,'Subscriber',95128); +INSERT INTO "trip" VALUES(908589,808,'8/27/2015 17:09','Stanford in Redwood City',25,'8/27/2015 17:23','Redwood City Caltrain Station',22,159,'Subscriber',95037); +INSERT INTO "trip" VALUES(908590,459,'8/27/2015 17:10','Market at 10th',67,'8/27/2015 17:17','Powell Street BART',39,429,'Subscriber',94112); +INSERT INTO "trip" VALUES(908592,652,'8/27/2015 17:10','Yerba Buena Center of the Arts (3rd @ Howard)',68,'8/27/2015 17:21','South Van Ness at Market',66,586,'Subscriber',94105); +INSERT INTO "trip" VALUES(908593,308,'8/27/2015 17:10','Steuart at Market',74,'8/27/2015 17:15','Embarcadero at Bryant',54,134,'Subscriber',94105); +INSERT INTO "trip" VALUES(908594,496,'8/27/2015 17:10','5th at Howard',57,'8/27/2015 17:18','Temporary Transbay Terminal (Howard at Beale)',55,340,'Subscriber',94530); +INSERT INTO "trip" VALUES(908595,643,'8/27/2015 17:10','Steuart at Market',74,'8/27/2015 17:21','San Francisco Caltrain 2 (330 Townsend)',69,456,'Subscriber',94061); +INSERT INTO "trip" VALUES(908596,318,'8/27/2015 17:11','Cowper at University',37,'8/27/2015 17:16','Palo Alto Caltrain Station',34,148,'Subscriber',94108); +INSERT INTO "trip" VALUES(908597,365,'8/27/2015 17:11','Embarcadero at Sansome',60,'8/27/2015 17:17','Steuart at Market',74,410,'Subscriber',94111); +INSERT INTO "trip" VALUES(908598,558,'8/27/2015 17:11','5th at Howard',57,'8/27/2015 17:21','Steuart at Market',74,325,'Subscriber',94903); +INSERT INTO "trip" VALUES(908599,465,'8/27/2015 17:11','Redwood City Medical Center',26,'8/27/2015 17:19','Redwood City Caltrain Station',22,690,'Subscriber',94040); +INSERT INTO "trip" VALUES(908600,296,'8/27/2015 17:12','Powell Street BART',39,'8/27/2015 17:17','Market at 10th',67,352,'Subscriber',94102); +INSERT INTO "trip" VALUES(908602,472,'8/27/2015 17:12','Howard at 2nd',63,'8/27/2015 17:20','San Francisco Caltrain 2 (330 Townsend)',69,628,'Subscriber',94062); +INSERT INTO "trip" VALUES(908604,422,'8/27/2015 17:13','2nd at Folsom',62,'8/27/2015 17:20','San Francisco Caltrain 2 (330 Townsend)',69,613,'Subscriber',95125); +INSERT INTO "trip" VALUES(908605,890,'8/27/2015 17:14','Townsend at 7th',65,'8/27/2015 17:29','Temporary Transbay Terminal (Howard at Beale)',55,338,'Subscriber',94608); +INSERT INTO "trip" VALUES(908606,420,'8/27/2015 17:10','Market at 4th',76,'8/27/2015 17:17','San Francisco Caltrain 2 (330 Townsend)',69,508,'Subscriber',95030); +INSERT INTO "trip" VALUES(908607,736,'8/27/2015 17:14','2nd at Folsom',62,'8/27/2015 17:26','San Francisco Caltrain (Townsend at 4th)',70,506,'Subscriber',95008); +INSERT INTO "trip" VALUES(908608,681,'8/27/2015 17:14','Market at Sansome',77,'8/27/2015 17:26','Market at 10th',67,560,'Subscriber',94102); +INSERT INTO "trip" VALUES(908609,414,'8/27/2015 17:14','Beale at Market',56,'8/27/2015 17:21','Grant Avenue at Columbus Avenue',73,380,'Subscriber',94133); +INSERT INTO "trip" VALUES(908610,208,'8/27/2015 17:15','Golden Gate at Polk',59,'8/27/2015 17:19','Civic Center BART (7th at Market)',72,439,'Subscriber',94103); +INSERT INTO "trip" VALUES(908611,586,'8/27/2015 17:15','2nd at Folsom',62,'8/27/2015 17:25','Grant Avenue at Columbus Avenue',73,370,'Subscriber',94133); +INSERT INTO "trip" VALUES(908612,426,'8/27/2015 17:16','Yerba Buena Center of the Arts (3rd @ Howard)',68,'8/27/2015 17:23','Commercial at Montgomery',45,292,'Subscriber',94133); +INSERT INTO "trip" VALUES(908613,898,'8/27/2015 17:16','Spear at Folsom',49,'8/27/2015 17:31','San Francisco Caltrain 2 (330 Townsend)',69,109,'Subscriber',94404); +INSERT INTO "trip" VALUES(908614,877,'8/27/2015 17:17','Golden Gate at Polk',59,'8/27/2015 17:31','Temporary Transbay Terminal (Howard at Beale)',55,598,'Subscriber',94602); +INSERT INTO "trip" VALUES(908615,315,'8/27/2015 17:17','Townsend at 7th',65,'8/27/2015 17:23','San Francisco Caltrain 2 (330 Townsend)',69,436,'Subscriber',94086); +INSERT INTO "trip" VALUES(908616,522,'8/27/2015 17:18','2nd at Townsend',61,'8/27/2015 17:26','Embarcadero at Folsom',51,373,'Subscriber',94109); +INSERT INTO "trip" VALUES(908617,853,'8/27/2015 17:18','Temporary Transbay Terminal (Howard at Beale)',55,'8/27/2015 17:32','San Francisco Caltrain 2 (330 Townsend)',69,448,'Subscriber',94062); +INSERT INTO "trip" VALUES(908618,327,'8/27/2015 17:20','Temporary Transbay Terminal (Howard at Beale)',55,'8/27/2015 17:26','Harry Bridges Plaza (Ferry Building)',50,354,'Subscriber',94903); +INSERT INTO "trip" VALUES(908619,404,'8/27/2015 17:20','San Pedro Square',6,'8/27/2015 17:27','San Jose Diridon Caltrain Station',2,708,'Subscriber',95377); +INSERT INTO "trip" VALUES(908620,585,'8/27/2015 17:21','Harry Bridges Plaza (Ferry Building)',50,'8/27/2015 17:31','San Francisco Caltrain 2 (330 Townsend)',69,555,'Subscriber',94102); +INSERT INTO "trip" VALUES(908623,629,'8/27/2015 17:21','Market at 10th',67,'8/27/2015 17:32','San Francisco Caltrain 2 (330 Townsend)',69,352,'Subscriber',94401); +INSERT INTO "trip" VALUES(908624,235,'8/27/2015 17:22','Mechanics Plaza (Market at Battery)',75,'8/27/2015 17:26','Temporary Transbay Terminal (Howard at Beale)',55,509,'Subscriber',94618); +INSERT INTO "trip" VALUES(908625,502,'8/27/2015 17:22','Mechanics Plaza (Market at Battery)',75,'8/27/2015 17:30','Embarcadero at Sansome',60,581,'Subscriber',94133); +INSERT INTO "trip" VALUES(908626,318,'8/27/2015 17:22','San Francisco Caltrain 2 (330 Townsend)',69,'8/27/2015 17:27','5th at Howard',57,456,'Subscriber',94107); +INSERT INTO "trip" VALUES(908627,788,'8/27/2015 17:22','Post at Kearny',47,'8/27/2015 17:36','South Van Ness at Market',66,420,'Subscriber',94102); +INSERT INTO "trip" VALUES(908628,341,'8/27/2015 17:23','Commercial at Montgomery',45,'8/27/2015 17:28','Temporary Transbay Terminal (Howard at Beale)',55,512,'Subscriber',94611); +INSERT INTO "trip" VALUES(908629,1866,'8/27/2015 17:23','Townsend at 7th',65,'8/27/2015 17:54','Market at Sansome',77,477,'Subscriber',94618); +INSERT INTO "trip" VALUES(908630,364,'8/27/2015 17:23','Temporary Transbay Terminal (Howard at Beale)',55,'8/27/2015 17:29','Davis at Jackson',42,878,'Subscriber',94111); +INSERT INTO "trip" VALUES(908631,313,'8/27/2015 17:24','Embarcadero at Vallejo',48,'8/27/2015 17:29','Steuart at Market',74,574,'Subscriber',94547); +INSERT INTO "trip" VALUES(908632,542,'8/27/2015 17:24','San Francisco Caltrain 2 (330 Townsend)',69,'8/27/2015 17:33','Steuart at Market',74,508,'Subscriber',94901); +INSERT INTO "trip" VALUES(908633,450,'8/27/2015 17:24','Embarcadero at Sansome',60,'8/27/2015 17:31','Steuart at Market',74,212,'Subscriber',94565); +INSERT INTO "trip" VALUES(908634,337,'8/27/2015 17:24','Steuart at Market',74,'8/27/2015 17:30','Davis at Jackson',42,386,'Subscriber',94107); +INSERT INTO "trip" VALUES(908635,540,'8/27/2015 17:25','Mountain View City Hall',27,'8/27/2015 17:34','Mountain View Caltrain Station',28,262,'Subscriber',95032); +INSERT INTO "trip" VALUES(908636,526,'8/27/2015 17:26','Temporary Transbay Terminal (Howard at Beale)',55,'8/27/2015 17:35','San Francisco Caltrain 2 (330 Townsend)',69,529,'Subscriber',94025); +INSERT INTO "trip" VALUES(908637,778,'8/27/2015 17:26','San Francisco Caltrain (Townsend at 4th)',70,'8/27/2015 17:39','Steuart at Market',74,431,'Subscriber',94591); +INSERT INTO "trip" VALUES(908638,292,'8/27/2015 17:27','Market at Sansome',77,'8/27/2015 17:32','Temporary Transbay Terminal (Howard at Beale)',55,421,'Subscriber',94618); +INSERT INTO "trip" VALUES(908639,522,'8/27/2015 17:28','Embarcadero at Folsom',51,'8/27/2015 17:36','San Francisco Caltrain (Townsend at 4th)',70,317,'Subscriber',94061); +INSERT INTO "trip" VALUES(908640,302,'8/27/2015 17:28','Market at Sansome',77,'8/27/2015 17:33','Temporary Transbay Terminal (Howard at Beale)',55,419,'Subscriber',94610); +INSERT INTO "trip" VALUES(908641,514,'8/27/2015 17:28','Commercial at Montgomery',45,'8/27/2015 17:37','Spear at Folsom',49,619,'Subscriber',94105); +INSERT INTO "trip" VALUES(908642,161,'8/27/2015 17:28','Howard at 2nd',63,'8/27/2015 17:31','Market at Sansome',77,260,'Subscriber',94114); +INSERT INTO "trip" VALUES(908643,504,'8/27/2015 17:29','Mechanics Plaza (Market at Battery)',75,'8/27/2015 17:37','Embarcadero at Bryant',54,16,'Subscriber',94105); +INSERT INTO "trip" VALUES(908644,1255,'8/27/2015 17:28','Steuart at Market',74,'8/27/2015 17:49','Embarcadero at Folsom',51,496,'Subscriber',95111); +INSERT INTO "trip" VALUES(908645,744,'8/27/2015 17:29','Townsend at 7th',65,'8/27/2015 17:42','South Van Ness at Market',66,562,'Subscriber',94131); +INSERT INTO "trip" VALUES(908646,374,'8/27/2015 17:30','Embarcadero at Sansome',60,'8/27/2015 17:36','Harry Bridges Plaza (Ferry Building)',50,472,'Subscriber',94124); +INSERT INTO "trip" VALUES(908649,538,'8/27/2015 17:30','Powell Street BART',39,'8/27/2015 17:39','San Francisco Caltrain 2 (330 Townsend)',69,361,'Subscriber',94002); +INSERT INTO "trip" VALUES(908650,541,'8/27/2015 17:31','Embarcadero at Bryant',54,'8/27/2015 17:40','Mechanics Plaza (Market at Battery)',75,606,'Subscriber',94121); +INSERT INTO "trip" VALUES(908651,754,'8/27/2015 17:31','Davis at Jackson',42,'8/27/2015 17:43','San Francisco Caltrain (Townsend at 4th)',70,289,'Subscriber',95014); +INSERT INTO "trip" VALUES(908652,465,'8/27/2015 17:31','Yerba Buena Center of the Arts (3rd @ Howard)',68,'8/27/2015 17:39','Temporary Transbay Terminal (Howard at Beale)',55,620,'Subscriber',94610); +INSERT INTO "trip" VALUES(908655,266,'8/27/2015 17:31','Civic Center BART (7th at Market)',72,'8/27/2015 17:36','Civic Center BART (7th at Market)',72,332,'Customer','nil'); +INSERT INTO "trip" VALUES(908656,447,'8/27/2015 17:32','San Francisco Caltrain (Townsend at 4th)',70,'8/27/2015 17:40','Embarcadero at Bryant',54,391,'Subscriber',94105); +INSERT INTO "trip" VALUES(908657,348,'8/27/2015 17:33','San Francisco Caltrain (Townsend at 4th)',70,'8/27/2015 17:38','Embarcadero at Bryant',54,434,'Subscriber',94105); +INSERT INTO "trip" VALUES(908660,675,'8/27/2015 17:33','San Francisco Caltrain 2 (330 Townsend)',69,'8/27/2015 17:44','Civic Center BART (7th at Market)',72,521,'Subscriber',94549); +INSERT INTO "trip" VALUES(908661,993,'8/27/2015 17:33','Townsend at 7th',65,'8/27/2015 17:49','Powell at Post (Union Square)',71,189,'Subscriber',94109); +INSERT INTO "trip" VALUES(908662,246,'8/27/2015 17:33','Townsend at 7th',65,'8/27/2015 17:37','San Francisco Caltrain 2 (330 Townsend)',69,96,'Subscriber',94301); +INSERT INTO "trip" VALUES(908665,1041,'8/27/2015 17:34','Harry Bridges Plaza (Ferry Building)',50,'8/27/2015 17:51','San Francisco Caltrain (Townsend at 4th)',70,709,'Subscriber',94087); +INSERT INTO "trip" VALUES(908666,373,'8/27/2015 17:34','Temporary Transbay Terminal (Howard at Beale)',55,'8/27/2015 17:40','Steuart at Market',74,338,'Subscriber',94901); +INSERT INTO "trip" VALUES(908669,858,'8/27/2015 17:35','Broadway St at Battery St',82,'8/27/2015 17:49','San Francisco Caltrain 2 (330 Townsend)',69,413,'Customer',98103); +INSERT INTO "trip" VALUES(908670,260,'8/27/2015 17:35','Broadway St at Battery St',82,'8/27/2015 17:39','Mechanics Plaza (Market at Battery)',75,375,'Subscriber',94114); +INSERT INTO "trip" VALUES(908671,217,'8/27/2015 17:35','Townsend at 7th',65,'8/27/2015 17:39','San Francisco Caltrain 2 (330 Townsend)',69,583,'Subscriber',94306); +INSERT INTO "trip" VALUES(908674,163,'8/27/2015 17:35','5th at Howard',57,'8/27/2015 17:38','Powell Street BART',39,456,'Subscriber',94024); +INSERT INTO "trip" VALUES(908675,506,'8/27/2015 17:36','Broadway St at Battery St',82,'8/27/2015 17:44','Mechanics Plaza (Market at Battery)',75,659,'Subscriber',94107); +INSERT INTO "trip" VALUES(908678,418,'8/27/2015 17:36','Steuart at Market',74,'8/27/2015 17:43','Embarcadero at Sansome',60,212,'Subscriber',94133); +INSERT INTO "trip" VALUES(908679,2768,'8/27/2015 17:37','Clay at Battery',41,'8/27/2015 18:23','Embarcadero at Sansome',60,278,'Customer',53051); +INSERT INTO "trip" VALUES(908680,345,'8/27/2015 17:37','Embarcadero at Sansome',60,'8/27/2015 17:42','Steuart at Market',74,546,'Subscriber',94609); +INSERT INTO "trip" VALUES(908681,346,'8/27/2015 17:36','Howard at 2nd',63,'8/27/2015 17:42','Steuart at Market',74,487,'Subscriber',94115); +INSERT INTO "trip" VALUES(908682,717,'8/27/2015 17:37','San Francisco Caltrain (Townsend at 4th)',70,'8/27/2015 17:49','Market at 10th',67,329,'Subscriber',94102); +INSERT INTO "trip" VALUES(908684,596,'8/27/2015 17:38','Embarcadero at Folsom',51,'8/27/2015 17:48','San Francisco Caltrain (Townsend at 4th)',70,459,'Subscriber',94087); +INSERT INTO "trip" VALUES(908687,493,'8/27/2015 17:38','Grant Avenue at Columbus Avenue',73,'8/27/2015 17:46','Market at Sansome',77,393,'Subscriber',94133); +INSERT INTO "trip" VALUES(908688,260,'8/27/2015 17:38','Embarcadero at Bryant',54,'8/27/2015 17:43','Steuart at Market',74,16,'Subscriber',94901); +INSERT INTO "trip" VALUES(908689,284,'8/27/2015 17:38','Market at Sansome',77,'8/27/2015 17:43','Clay at Battery',41,385,'Subscriber',94107); +INSERT INTO "trip" VALUES(908690,355,'8/27/2015 17:38','San Jose Diridon Caltrain Station',2,'8/27/2015 17:44','Santa Clara at Almaden',4,117,'Subscriber',95110); +INSERT INTO "trip" VALUES(908691,714,'8/27/2015 17:39','San Francisco Caltrain 2 (330 Townsend)',69,'8/27/2015 17:50','Embarcadero at Folsom',51,576,'Subscriber',94608); +INSERT INTO "trip" VALUES(908694,391,'8/27/2015 17:39','Embarcadero at Sansome',60,'8/27/2015 17:46','Steuart at Market',74,399,'Subscriber',94947); +INSERT INTO "trip" VALUES(908695,576,'8/27/2015 17:40','Townsend at 7th',65,'8/27/2015 17:49','Embarcadero at Bryant',54,374,'Subscriber',94105); +INSERT INTO "trip" VALUES(908696,816,'8/27/2015 17:40','San Francisco Caltrain 2 (330 Townsend)',69,'8/27/2015 17:53','Harry Bridges Plaza (Ferry Building)',50,314,'Customer',20002); +INSERT INTO "trip" VALUES(908697,909,'8/27/2015 17:40','Davis at Jackson',42,'8/27/2015 17:55','Civic Center BART (7th at Market)',72,454,'Subscriber',94103); +INSERT INTO "trip" VALUES(908698,808,'8/27/2015 17:40','San Francisco Caltrain 2 (330 Townsend)',69,'8/27/2015 17:53','Harry Bridges Plaza (Ferry Building)',50,589,'Customer',20002); +INSERT INTO "trip" VALUES(908699,825,'8/27/2015 17:40','Embarcadero at Vallejo',48,'8/27/2015 17:54','2nd at South Park',64,500,'Subscriber',94602); +INSERT INTO "trip" VALUES(908700,953,'8/27/2015 17:40','Washington at Kearny',46,'8/27/2015 17:56','San Francisco Caltrain (Townsend at 4th)',70,485,'Subscriber',94087); +INSERT INTO "trip" VALUES(908701,260,'8/27/2015 17:40','Broadway St at Battery St',82,'8/27/2015 17:45','Beale at Market',56,584,'Subscriber',94112); +INSERT INTO "trip" VALUES(908702,292,'8/27/2015 17:41','Embarcadero at Vallejo',48,'8/27/2015 17:45','Steuart at Market',74,618,'Subscriber',94706); +INSERT INTO "trip" VALUES(908705,414,'8/27/2015 17:41','Market at 4th',76,'8/27/2015 17:48','San Francisco Caltrain (Townsend at 4th)',70,549,'Subscriber',94303); +INSERT INTO "trip" VALUES(908706,781,'8/27/2015 17:41','San Francisco Caltrain (Townsend at 4th)',70,'8/27/2015 17:54','Powell Street BART',39,506,'Subscriber',94105); +INSERT INTO "trip" VALUES(908707,371,'8/27/2015 17:41','Clay at Battery',41,'8/27/2015 17:47','Embarcadero at Sansome',60,569,'Subscriber',94107); +INSERT INTO "trip" VALUES(908710,421,'8/27/2015 17:42','Embarcadero at Vallejo',48,'8/27/2015 17:49','Steuart at Market',74,267,'Subscriber',94501); +INSERT INTO "trip" VALUES(908711,737,'8/27/2015 17:42','San Francisco Caltrain 2 (330 Townsend)',69,'8/27/2015 17:55','Harry Bridges Plaza (Ferry Building)',50,352,'Customer',94110); +INSERT INTO "trip" VALUES(908712,977,'8/27/2015 17:43','Embarcadero at Bryant',54,'8/27/2015 17:59','Commercial at Montgomery',45,391,'Customer',8812); +INSERT INTO "trip" VALUES(908713,291,'8/27/2015 17:43','Embarcadero at Bryant',54,'8/27/2015 17:48','2nd at Townsend',61,134,'Subscriber',94080); +INSERT INTO "trip" VALUES(908714,5210,'8/27/2015 17:42','Market at Sansome',77,'8/27/2015 19:09','San Francisco Caltrain 2 (330 Townsend)',69,260,'Customer',90031); +INSERT INTO "trip" VALUES(908715,519,'8/27/2015 17:43','Steuart at Market',74,'8/27/2015 17:52','Embarcadero at Sansome',60,321,'Customer','nil'); +INSERT INTO "trip" VALUES(908716,3148,'8/27/2015 17:44','Civic Center BART (7th at Market)',72,'8/27/2015 18:36','Grant Avenue at Columbus Avenue',73,332,'Customer','nil'); +INSERT INTO "trip" VALUES(908717,3094,'8/27/2015 17:44','Civic Center BART (7th at Market)',72,'8/27/2015 18:36','Grant Avenue at Columbus Avenue',73,387,'Customer','nil'); +INSERT INTO "trip" VALUES(908718,307,'8/27/2015 17:44','Broadway St at Battery St',82,'8/27/2015 17:50','Steuart at Market',74,622,'Subscriber',94702); +INSERT INTO "trip" VALUES(908719,618,'8/27/2015 17:46','Temporary Transbay Terminal (Howard at Beale)',55,'8/27/2015 17:56','San Francisco Caltrain (Townsend at 4th)',70,425,'Subscriber',94022); +INSERT INTO "trip" VALUES(908720,600,'8/27/2015 17:46','Broadway St at Battery St',82,'8/27/2015 17:56','Market at Sansome',77,630,'Subscriber',94109); +INSERT INTO "trip" VALUES(908721,1513,'8/27/2015 17:46','Commercial at Montgomery',45,'8/27/2015 18:12','San Francisco Caltrain (Townsend at 4th)',70,437,'Subscriber',94301); +INSERT INTO "trip" VALUES(908722,714,'8/27/2015 17:47','Market at 10th',67,'8/27/2015 17:59','San Francisco Caltrain 2 (330 Townsend)',69,478,'Subscriber',95119); +INSERT INTO "trip" VALUES(908723,725,'8/27/2015 17:47','San Francisco City Hall',58,'8/27/2015 17:59','Temporary Transbay Terminal (Howard at Beale)',55,557,'Subscriber',94530); +INSERT INTO "trip" VALUES(908724,842,'8/27/2015 17:47','Embarcadero at Vallejo',48,'8/27/2015 18:01','5th at Howard',57,601,'Subscriber',94107); +INSERT INTO "trip" VALUES(908726,859,'8/27/2015 17:48','Clay at Battery',41,'8/27/2015 18:03','2nd at Townsend',61,418,'Subscriber',94022); +INSERT INTO "trip" VALUES(908727,698,'8/27/2015 17:49','Santa Clara County Civic Center',80,'8/27/2015 18:00','San Pedro Square',6,57,'Subscriber',95110); +INSERT INTO "trip" VALUES(908728,389,'8/27/2015 17:49','Market at 4th',76,'8/27/2015 17:55','San Francisco Caltrain (Townsend at 4th)',70,473,'Subscriber',94403); +INSERT INTO "trip" VALUES(908729,836,'8/27/2015 17:49','Steuart at Market',74,'8/27/2015 18:03','San Francisco Caltrain 2 (330 Townsend)',69,463,'Subscriber',94010); +INSERT INTO "trip" VALUES(908730,507,'8/27/2015 17:49','Powell at Post (Union Square)',71,'8/27/2015 17:57','San Francisco Caltrain (Townsend at 4th)',70,328,'Subscriber',94158); +INSERT INTO "trip" VALUES(908731,651,'8/27/2015 17:49','Post at Kearny',47,'8/27/2015 18:00','South Van Ness at Market',66,507,'Subscriber',94116); +INSERT INTO "trip" VALUES(908732,667,'8/27/2015 17:49','2nd at Townsend',61,'8/27/2015 18:00','Mechanics Plaza (Market at Battery)',75,134,'Subscriber',94110); +INSERT INTO "trip" VALUES(908733,620,'8/27/2015 17:50','Market at Sansome',77,'8/27/2015 18:00','San Francisco Caltrain (Townsend at 4th)',70,530,'Subscriber',95134); +INSERT INTO "trip" VALUES(908734,1182,'8/27/2015 17:50','Santa Clara County Civic Center',80,'8/27/2015 18:10','San Jose Diridon Caltrain Station',2,150,'Subscriber',94115); +INSERT INTO "trip" VALUES(908735,321,'8/27/2015 17:51','Temporary Transbay Terminal (Howard at Beale)',55,'8/27/2015 17:56','Harry Bridges Plaza (Ferry Building)',50,421,'Subscriber',94960); +INSERT INTO "trip" VALUES(908736,269,'8/27/2015 17:51','Evelyn Park and Ride',30,'8/27/2015 17:55','Mountain View Caltrain Station',28,263,'Subscriber',94133); +INSERT INTO "trip" VALUES(908737,208,'8/27/2015 17:51','2nd at Townsend',61,'8/27/2015 17:54','San Francisco Caltrain (Townsend at 4th)',70,394,'Subscriber',94063); +INSERT INTO "trip" VALUES(908738,1749,'8/27/2015 17:51','Mountain View City Hall',27,'8/27/2015 18:20','San Antonio Caltrain Station',29,293,'Customer',94022); +INSERT INTO "trip" VALUES(908739,1720,'8/27/2015 17:51','Mountain View City Hall',27,'8/27/2015 18:20','San Antonio Caltrain Station',29,678,'Customer',94022); +INSERT INTO "trip" VALUES(908740,712,'8/27/2015 17:52','South Van Ness at Market',66,'8/27/2015 18:04','San Francisco Caltrain 2 (330 Townsend)',69,505,'Subscriber',94085); +INSERT INTO "trip" VALUES(908741,576,'8/27/2015 17:52','Market at 10th',67,'8/27/2015 18:02','San Francisco Caltrain 2 (330 Townsend)',69,560,'Subscriber',94025); +INSERT INTO "trip" VALUES(908742,708,'8/27/2015 17:52','Powell Street BART',39,'8/27/2015 18:04','Townsend at 7th',65,429,'Subscriber',94107); +INSERT INTO "trip" VALUES(908743,754,'8/27/2015 17:52','Townsend at 7th',65,'8/27/2015 18:05','Embarcadero at Folsom',51,632,'Subscriber',94501); +INSERT INTO "trip" VALUES(908746,655,'8/27/2015 17:53','Clay at Battery',41,'8/27/2015 18:04','2nd at Townsend',61,350,'Subscriber',94107); +INSERT INTO "trip" VALUES(908747,434,'8/27/2015 17:53','Commercial at Montgomery',45,'8/27/2015 18:00','Powell at Post (Union Square)',71,358,'Subscriber',94105); +INSERT INTO "trip" VALUES(908748,594,'8/27/2015 17:54','Market at 10th',67,'8/27/2015 18:03','San Francisco Caltrain 2 (330 Townsend)',69,329,'Subscriber',95035); +INSERT INTO "trip" VALUES(908749,186,'8/27/2015 17:54','Market at Sansome',77,'8/27/2015 17:57','Harry Bridges Plaza (Ferry Building)',50,587,'Subscriber',94105); +INSERT INTO "trip" VALUES(908751,225,'8/27/2015 17:54','Townsend at 7th',65,'8/27/2015 17:58','San Francisco Caltrain 2 (330 Townsend)',69,449,'Subscriber',94404); +INSERT INTO "trip" VALUES(908752,231,'8/27/2015 17:54','2nd at South Park',64,'8/27/2015 17:58','San Francisco Caltrain (Townsend at 4th)',70,500,'Subscriber',94002); +INSERT INTO "trip" VALUES(908753,686,'8/27/2015 17:54','Embarcadero at Folsom',51,'8/27/2015 18:06','San Francisco Caltrain 2 (330 Townsend)',69,677,'Subscriber',95111); +INSERT INTO "trip" VALUES(908754,547,'8/27/2015 17:55','Mechanics Plaza (Market at Battery)',75,'8/27/2015 18:04','Embarcadero at Bryant',54,375,'Subscriber',94107); +INSERT INTO "trip" VALUES(908755,721,'8/27/2015 17:55','San Francisco Caltrain (Townsend at 4th)',70,'8/27/2015 18:07','Civic Center BART (7th at Market)',72,317,'Subscriber',94601); +INSERT INTO "trip" VALUES(908756,752,'8/27/2015 17:55','Broadway St at Battery St',82,'8/27/2015 18:08','2nd at Townsend',61,158,'Subscriber',95111); +INSERT INTO "trip" VALUES(908757,574,'8/27/2015 17:55','Market at 10th',67,'8/27/2015 18:05','San Francisco Caltrain 2 (330 Townsend)',69,554,'Subscriber',94086); +INSERT INTO "trip" VALUES(908758,838,'8/27/2015 17:55','San Francisco Caltrain 2 (330 Townsend)',69,'8/27/2015 18:09','South Van Ness at Market',66,529,'Subscriber',94102); +INSERT INTO "trip" VALUES(908761,260,'8/27/2015 17:56','Broadway St at Battery St',82,'8/27/2015 18:00','Steuart at Market',74,443,'Subscriber',94111); +INSERT INTO "trip" VALUES(908762,954,'8/27/2015 17:56','Townsend at 7th',65,'8/27/2015 18:12','Temporary Transbay Terminal (Howard at Beale)',55,603,'Subscriber',94501); +INSERT INTO "trip" VALUES(908763,1037,'8/27/2015 17:56','Embarcadero at Sansome',60,'8/27/2015 18:13','San Francisco Caltrain (Townsend at 4th)',70,284,'Subscriber',94103); +INSERT INTO "trip" VALUES(908766,396,'8/27/2015 17:57','Embarcadero at Vallejo',48,'8/27/2015 18:04','Beale at Market',56,432,'Subscriber',94102); +INSERT INTO "trip" VALUES(908767,989,'8/27/2015 17:57','Grant Avenue at Columbus Avenue',73,'8/27/2015 18:14','Powell at Post (Union Square)',71,423,'Customer',5414025); +INSERT INTO "trip" VALUES(908769,745,'8/27/2015 17:57','2nd at Townsend',61,'8/27/2015 18:10','Davis at Jackson',42,266,'Subscriber',94111); +INSERT INTO "trip" VALUES(908771,738,'8/27/2015 17:58','Palo Alto Caltrain Station',34,'8/27/2015 18:10','Park at Olive',38,252,'Subscriber',94306); +INSERT INTO "trip" VALUES(908772,453,'8/27/2015 17:58','Steuart at Market',74,'8/27/2015 18:06','Mechanics Plaza (Market at Battery)',75,410,'Subscriber',94108); +INSERT INTO "trip" VALUES(908773,964,'8/27/2015 17:58','Broadway St at Battery St',82,'8/27/2015 18:14','San Francisco Caltrain (Townsend at 4th)',70,585,'Subscriber',95130); +INSERT INTO "trip" VALUES(908774,737,'8/27/2015 17:58','San Francisco Caltrain (Townsend at 4th)',70,'8/27/2015 18:11','Market at Sansome',77,549,'Subscriber',94549); +INSERT INTO "trip" VALUES(908778,471,'8/27/2015 17:59','Mechanics Plaza (Market at Battery)',75,'8/27/2015 18:07','Powell at Post (Union Square)',71,606,'Subscriber',94111); +INSERT INTO "trip" VALUES(908779,842,'8/27/2015 18:00','Temporary Transbay Terminal (Howard at Beale)',55,'8/27/2015 18:14','San Francisco Caltrain (Townsend at 4th)',70,620,'Subscriber',94030); +INSERT INTO "trip" VALUES(908780,409,'8/27/2015 18:00','Temporary Transbay Terminal (Howard at Beale)',55,'8/27/2015 18:07','San Francisco Caltrain 2 (330 Townsend)',69,557,'Subscriber',94117); +INSERT INTO "trip" VALUES(908781,519,'8/27/2015 18:01','Embarcadero at Sansome',60,'8/27/2015 18:09','Harry Bridges Plaza (Ferry Building)',50,416,'Subscriber',94122); +INSERT INTO "trip" VALUES(908782,359,'8/27/2015 18:01','Santa Clara at Almaden',4,'8/27/2015 18:07','San Jose Diridon Caltrain Station',2,205,'Subscriber',94114); +INSERT INTO "trip" VALUES(908783,695,'8/27/2015 18:01','Beale at Market',56,'8/27/2015 18:13','Golden Gate at Polk',59,584,'Subscriber',94109); +INSERT INTO "trip" VALUES(908784,616,'8/27/2015 18:02','San Francisco Caltrain 2 (330 Townsend)',69,'8/27/2015 18:12','Spear at Folsom',49,583,'Customer',94121); +INSERT INTO "trip" VALUES(908785,568,'8/27/2015 18:02','Powell Street BART',39,'8/27/2015 18:12','San Francisco Caltrain 2 (330 Townsend)',69,456,'Subscriber',94403); +INSERT INTO "trip" VALUES(908786,278,'8/27/2015 18:02','Mountain View City Hall',27,'8/27/2015 18:07','Mountain View Caltrain Station',28,107,'Subscriber',95110); +INSERT INTO "trip" VALUES(908787,934,'8/27/2015 18:02','Market at Sansome',77,'8/27/2015 18:18','Embarcadero at Vallejo',48,393,'Subscriber',94105); +INSERT INTO "trip" VALUES(908789,1021,'8/27/2015 18:03','Davis at Jackson',42,'8/27/2015 18:20','San Francisco Caltrain (Townsend at 4th)',70,343,'Subscriber',95051); +INSERT INTO "trip" VALUES(908790,632,'8/27/2015 18:04','Mechanics Plaza (Market at Battery)',75,'8/27/2015 18:14','Embarcadero at Sansome',60,659,'Subscriber',94109); +INSERT INTO "trip" VALUES(908791,251,'8/27/2015 18:05','Townsend at 7th',65,'8/27/2015 18:09','San Francisco Caltrain 2 (330 Townsend)',69,566,'Subscriber',94040); +INSERT INTO "trip" VALUES(908792,606,'8/27/2015 18:05','Clay at Battery',41,'8/27/2015 18:15','Powell Street BART',39,469,'Subscriber',94111); +INSERT INTO "trip" VALUES(908793,1071,'8/27/2015 18:06','Embarcadero at Vallejo',48,'8/27/2015 18:24','San Francisco Caltrain (Townsend at 4th)',70,401,'Subscriber',94086); +INSERT INTO "trip" VALUES(908795,497,'8/27/2015 18:06','Embarcadero at Folsom',51,'8/27/2015 18:15','San Francisco Caltrain 2 (330 Townsend)',69,496,'Subscriber',94303); +INSERT INTO "trip" VALUES(908796,1159,'8/27/2015 18:07','Post at Kearny',47,'8/27/2015 18:26','Embarcadero at Sansome',60,383,'Customer',20010); +INSERT INTO "trip" VALUES(908797,414,'8/27/2015 18:07','Paseo de San Antonio',7,'8/27/2015 18:14','SJSU - San Salvador at 9th',16,714,'Subscriber',95112); +INSERT INTO "trip" VALUES(908798,440,'8/27/2015 18:07','San Francisco Caltrain 2 (330 Townsend)',69,'8/27/2015 18:15','5th at Howard',57,505,'Subscriber',94158); +INSERT INTO "trip" VALUES(908800,206,'8/27/2015 18:08','Redwood City Caltrain Station',22,'8/27/2015 18:11','Franklin at Maple',21,295,'Subscriber',94061); +INSERT INTO "trip" VALUES(908801,753,'8/27/2015 18:08','San Jose Diridon Caltrain Station',2,'8/27/2015 18:21','SJSU 4th at San Carlos',12,131,'Subscriber',95112); +INSERT INTO "trip" VALUES(908802,677,'8/27/2015 18:09','2nd at Townsend',61,'8/27/2015 18:20','Beale at Market',56,552,'Subscriber',94609); +INSERT INTO "trip" VALUES(908803,1110,'8/27/2015 18:09','Embarcadero at Sansome',60,'8/27/2015 18:27','South Van Ness at Market',66,569,'Subscriber',94102); +INSERT INTO "trip" VALUES(908804,1042,'8/27/2015 18:09','San Francisco Caltrain (Townsend at 4th)',70,'8/27/2015 18:26','Market at 10th',67,530,'Subscriber',94103); +INSERT INTO "trip" VALUES(908805,435,'8/27/2015 18:09','Embarcadero at Bryant',54,'8/27/2015 18:17','San Francisco Caltrain 2 (330 Townsend)',69,374,'Subscriber',94061); +INSERT INTO "trip" VALUES(908806,355,'8/27/2015 18:10','Embarcadero at Bryant',54,'8/27/2015 18:15','Steuart at Market',74,375,'Subscriber',94610); +INSERT INTO "trip" VALUES(908807,574,'8/27/2015 18:10','Mountain View Caltrain Station',28,'8/27/2015 18:19','Rengstorff Avenue / California Street',33,693,'Subscriber',94040); +INSERT INTO "trip" VALUES(908808,233,'8/27/2015 18:10','South Van Ness at Market',66,'8/27/2015 18:14','Civic Center BART (7th at Market)',72,382,'Subscriber',94134); +INSERT INTO "trip" VALUES(908809,526,'8/27/2015 18:10','Steuart at Market',74,'8/27/2015 18:19','San Francisco Caltrain 2 (330 Townsend)',69,574,'Subscriber',94403); +INSERT INTO "trip" VALUES(908810,184,'8/27/2015 18:10','Townsend at 7th',65,'8/27/2015 18:13','San Francisco Caltrain 2 (330 Townsend)',69,429,'Subscriber',95051); +INSERT INTO "trip" VALUES(908811,560,'8/27/2015 18:11','San Francisco Caltrain 2 (330 Townsend)',69,'8/27/2015 18:20','Powell Street BART',39,560,'Subscriber',94107); +INSERT INTO "trip" VALUES(908812,548,'8/27/2015 18:11','Powell Street BART',39,'8/27/2015 18:20','Harry Bridges Plaza (Ferry Building)',50,506,'Subscriber',94941); +INSERT INTO "trip" VALUES(908813,241,'8/27/2015 18:11','2nd at Townsend',61,'8/27/2015 18:15','2nd at Folsom',62,158,'Subscriber',94610); +INSERT INTO "trip" VALUES(908814,737,'8/27/2015 18:12','Civic Center BART (7th at Market)',72,'8/27/2015 18:24','Harry Bridges Plaza (Ferry Building)',50,389,'Subscriber',94103); +INSERT INTO "trip" VALUES(908815,499,'8/27/2015 18:13','San Francisco Caltrain (Townsend at 4th)',70,'8/27/2015 18:21','Embarcadero at Bryant',54,394,'Subscriber',94105); +INSERT INTO "trip" VALUES(908816,760,'8/27/2015 18:13','Market at Sansome',77,'8/27/2015 18:25','San Francisco Caltrain 2 (330 Townsend)',69,355,'Subscriber',94303); +INSERT INTO "trip" VALUES(908817,662,'8/27/2015 18:13','San Francisco Caltrain (Townsend at 4th)',70,'8/27/2015 18:24','Civic Center BART (7th at Market)',72,427,'Subscriber',94109); +INSERT INTO "trip" VALUES(908818,901,'8/27/2015 18:13','Civic Center BART (7th at Market)',72,'8/27/2015 18:28','San Francisco Caltrain (Townsend at 4th)',70,521,'Subscriber',94105); +INSERT INTO "trip" VALUES(908819,897,'8/27/2015 18:13','Civic Center BART (7th at Market)',72,'8/27/2015 18:28','San Francisco Caltrain (Townsend at 4th)',70,454,'Subscriber',94105); +INSERT INTO "trip" VALUES(908820,441,'8/27/2015 18:14','Temporary Transbay Terminal (Howard at Beale)',55,'8/27/2015 18:21','San Francisco Caltrain (Townsend at 4th)',70,340,'Subscriber',94401); +INSERT INTO "trip" VALUES(908826,426,'8/27/2015 18:15','5th at Howard',57,'8/27/2015 18:23','San Francisco Caltrain 2 (330 Townsend)',69,505,'Subscriber',94402); +INSERT INTO "trip" VALUES(908827,573,'8/27/2015 18:16','Washington at Kearny',46,'8/27/2015 18:26','Embarcadero at Folsom',51,347,'Subscriber',94608); +INSERT INTO "trip" VALUES(908830,633,'8/27/2015 18:17','Embarcadero at Sansome',60,'8/27/2015 18:28','Beale at Market',56,212,'Subscriber',94531); +INSERT INTO "trip" VALUES(908831,729,'8/27/2015 18:17','Davis at Jackson',42,'8/27/2015 18:29','San Francisco Caltrain (Townsend at 4th)',70,386,'Subscriber',95129); +INSERT INTO "trip" VALUES(908832,361,'8/27/2015 18:17','Davis at Jackson',42,'8/27/2015 18:23','Temporary Transbay Terminal (Howard at Beale)',55,461,'Subscriber',94602); +INSERT INTO "trip" VALUES(908833,417,'8/27/2015 18:17','Yerba Buena Center of the Arts (3rd @ Howard)',68,'8/27/2015 18:24','San Francisco Caltrain 2 (330 Townsend)',69,67,'Subscriber',94158); +INSERT INTO "trip" VALUES(908838,598,'8/27/2015 18:18','Market at 4th',76,'8/27/2015 18:28','San Francisco Caltrain (Townsend at 4th)',70,415,'Subscriber',94107); +INSERT INTO "trip" VALUES(908839,334,'8/27/2015 18:18','Commercial at Montgomery',45,'8/27/2015 18:24','Market at Sansome',77,402,'Subscriber',94704); +INSERT INTO "trip" VALUES(908840,795,'8/27/2015 18:19','Beale at Market',56,'8/27/2015 18:32','South Van Ness at Market',66,432,'Subscriber',94103); +INSERT INTO "trip" VALUES(908843,203,'8/27/2015 18:19','Mechanics Plaza (Market at Battery)',75,'8/27/2015 18:23','Temporary Transbay Terminal (Howard at Beale)',55,410,'Subscriber',94111); +INSERT INTO "trip" VALUES(908844,1275,'8/27/2015 18:19','Embarcadero at Vallejo',48,'8/27/2015 18:41','San Francisco Caltrain (Townsend at 4th)',70,393,'Subscriber',94403); +INSERT INTO "trip" VALUES(908847,490,'8/27/2015 18:21','San Francisco Caltrain 2 (330 Townsend)',69,'8/27/2015 18:29','Harry Bridges Plaza (Ferry Building)',50,557,'Subscriber',94610); +INSERT INTO "trip" VALUES(908848,598,'8/27/2015 18:21','2nd at Townsend',61,'8/27/2015 18:31','Post at Kearny',47,335,'Subscriber',94109); +INSERT INTO "trip" VALUES(908849,188,'8/27/2015 18:21','2nd at Folsom',62,'8/27/2015 18:24','Spear at Folsom',49,158,'Subscriber',94105); +INSERT INTO "trip" VALUES(908851,1639,'8/27/2015 18:22','Harry Bridges Plaza (Ferry Building)',50,'8/27/2015 18:49','Townsend at 7th',65,416,'Subscriber',94103); +INSERT INTO "trip" VALUES(908855,1301,'8/27/2015 18:23','Davis at Jackson',42,'8/27/2015 18:45','San Francisco Caltrain (Townsend at 4th)',70,514,'Subscriber',94111); +INSERT INTO "trip" VALUES(908857,1307,'8/27/2015 18:24','San Francisco Caltrain (Townsend at 4th)',70,'8/27/2015 18:45','Clay at Battery',41,485,'Subscriber',94133); +INSERT INTO "trip" VALUES(908858,793,'8/27/2015 18:24','Spear at Folsom',49,'8/27/2015 18:37','Civic Center BART (7th at Market)',72,583,'Customer',94080); +INSERT INTO "trip" VALUES(908863,644,'8/27/2015 18:24','Harry Bridges Plaza (Ferry Building)',50,'8/27/2015 18:35','Market at 4th',76,395,'Customer','nil'); +INSERT INTO "trip" VALUES(908864,643,'8/27/2015 18:25','Harry Bridges Plaza (Ferry Building)',50,'8/27/2015 18:35','Market at 4th',76,621,'Customer','nil'); +INSERT INTO "trip" VALUES(908869,775,'8/27/2015 18:27','Commercial at Montgomery',45,'8/27/2015 18:40','San Francisco City Hall',58,292,'Subscriber',94065); +INSERT INTO "trip" VALUES(908870,344,'8/27/2015 18:27','San Jose Diridon Caltrain Station',2,'8/27/2015 18:32','Santa Clara at Almaden',4,213,'Subscriber',95110); +INSERT INTO "trip" VALUES(908873,483,'8/27/2015 18:28','Clay at Battery',41,'8/27/2015 18:36','Spear at Folsom',49,548,'Subscriber',94105); +INSERT INTO "trip" VALUES(908874,511,'8/27/2015 18:31','2nd at Townsend',61,'8/27/2015 18:39','Townsend at 7th',65,350,'Subscriber',94107); +INSERT INTO "trip" VALUES(908875,660,'8/27/2015 18:32','Spear at Folsom',49,'8/27/2015 18:43','Townsend at 7th',65,619,'Subscriber',94107); +INSERT INTO "trip" VALUES(908876,707,'8/27/2015 18:32','San Francisco Caltrain (Townsend at 4th)',70,'8/27/2015 18:44','Temporary Transbay Terminal (Howard at Beale)',55,284,'Subscriber',94707); +INSERT INTO "trip" VALUES(908877,795,'8/27/2015 18:33','Yerba Buena Center of the Arts (3rd @ Howard)',68,'8/27/2015 18:46','Townsend at 7th',65,607,'Customer','nil'); +INSERT INTO "trip" VALUES(908878,756,'8/27/2015 18:33','San Francisco Caltrain (Townsend at 4th)',70,'8/27/2015 18:45','Davis at Jackson',42,437,'Subscriber',94111); +INSERT INTO "trip" VALUES(908879,824,'8/27/2015 18:33','Embarcadero at Vallejo',48,'8/27/2015 18:46','2nd at Townsend',61,531,'Subscriber',94065); +INSERT INTO "trip" VALUES(908881,697,'8/27/2015 18:34','San Francisco Caltrain (Townsend at 4th)',70,'8/27/2015 18:45','Temporary Transbay Terminal (Howard at Beale)',55,459,'Subscriber',94602); +INSERT INTO "trip" VALUES(908882,558,'8/27/2015 18:34','San Jose Diridon Caltrain Station',2,'8/27/2015 18:43','Ryland Park',84,129,'Subscriber',95112); +INSERT INTO "trip" VALUES(908883,359,'8/27/2015 18:34','San Francisco Caltrain (Townsend at 4th)',70,'8/27/2015 18:40','5th at Howard',57,877,'Subscriber',94103); +INSERT INTO "trip" VALUES(908884,269,'8/27/2015 18:36','Santa Clara at Almaden',4,'8/27/2015 18:40','San Jose Diridon Caltrain Station',2,95,'Subscriber',94305); +INSERT INTO "trip" VALUES(908885,522,'8/27/2015 18:36','San Francisco Caltrain (Townsend at 4th)',70,'8/27/2015 18:45','Spear at Folsom',49,289,'Subscriber',94702); +INSERT INTO "trip" VALUES(908887,856,'8/27/2015 18:37','Temporary Transbay Terminal (Howard at Beale)',55,'8/27/2015 18:51','Civic Center BART (7th at Market)',72,410,'Subscriber',94103); +INSERT INTO "trip" VALUES(908888,661,'8/27/2015 18:37','San Jose Diridon Caltrain Station',2,'8/27/2015 18:48','Paseo de San Antonio',7,708,'Subscriber',95112); +INSERT INTO "trip" VALUES(908889,661,'8/27/2015 18:37','San Jose Diridon Caltrain Station',2,'8/27/2015 18:48','Paseo de San Antonio',7,71,'Subscriber',95113); +INSERT INTO "trip" VALUES(908890,215,'8/27/2015 18:37','Market at Sansome',77,'8/27/2015 18:41','Market at 4th',76,288,'Subscriber',94103); +INSERT INTO "trip" VALUES(908891,403,'8/27/2015 18:38','Market at 4th',76,'8/27/2015 18:45','San Francisco Caltrain 2 (330 Townsend)',69,621,'Subscriber',2139); +INSERT INTO "trip" VALUES(908892,718,'8/27/2015 18:40','Harry Bridges Plaza (Ferry Building)',50,'8/27/2015 18:52','San Francisco Caltrain (Townsend at 4th)',70,403,'Subscriber',94403); +INSERT INTO "trip" VALUES(908893,510,'8/27/2015 18:40','Market at 10th',67,'8/27/2015 18:49','San Francisco Caltrain 2 (330 Townsend)',69,491,'Subscriber',94065); +INSERT INTO "trip" VALUES(908894,528,'8/27/2015 18:40','San Francisco Caltrain 2 (330 Townsend)',69,'8/27/2015 18:49','Temporary Transbay Terminal (Howard at Beale)',55,374,'Subscriber',94602); +INSERT INTO "trip" VALUES(908896,873,'8/27/2015 18:40','Townsend at 7th',65,'8/27/2015 18:55','Post at Kearny',47,456,'Subscriber',94103); +INSERT INTO "trip" VALUES(908897,829,'8/27/2015 18:41','South Van Ness at Market',66,'8/27/2015 18:54','Temporary Transbay Terminal (Howard at Beale)',55,507,'Subscriber',94611); +INSERT INTO "trip" VALUES(908898,358,'8/27/2015 18:41','Yerba Buena Center of the Arts (3rd @ Howard)',68,'8/27/2015 18:47','San Francisco Caltrain (Townsend at 4th)',70,575,'Subscriber',94061); +INSERT INTO "trip" VALUES(908899,933,'8/27/2015 18:41','Powell Street BART',39,'8/27/2015 18:57','Embarcadero at Sansome',60,560,'Subscriber',94133); +INSERT INTO "trip" VALUES(908900,611,'8/27/2015 18:42','Golden Gate at Polk',59,'8/27/2015 18:52','San Francisco Caltrain 2 (330 Townsend)',69,359,'Subscriber',94306); +INSERT INTO "trip" VALUES(908901,830,'8/27/2015 18:42','Powell at Post (Union Square)',71,'8/27/2015 18:56','Embarcadero at Vallejo',48,687,'Subscriber',94107); +INSERT INTO "trip" VALUES(908902,596,'8/27/2015 18:44','San Francisco Caltrain 2 (330 Townsend)',69,'8/27/2015 18:54','Market at 4th',76,470,'Customer',94583); +INSERT INTO "trip" VALUES(908903,445,'8/27/2015 18:44','Post at Kearny',47,'8/27/2015 18:51','San Francisco Caltrain (Townsend at 4th)',70,578,'Customer',94063); +INSERT INTO "trip" VALUES(908906,394,'8/27/2015 18:46','Mechanics Plaza (Market at Battery)',75,'8/27/2015 18:53','Powell Street BART',39,134,'Subscriber',94107); +INSERT INTO "trip" VALUES(908907,302,'8/27/2015 18:46','Market at 10th',67,'8/27/2015 18:51','Powell Street BART',39,530,'Subscriber',94133); +INSERT INTO "trip" VALUES(908910,221,'8/27/2015 18:48','Townsend at 7th',65,'8/27/2015 18:51','San Francisco Caltrain 2 (330 Townsend)',69,619,'Subscriber',94103); +INSERT INTO "trip" VALUES(908911,514,'8/27/2015 18:48','San Francisco Caltrain 2 (330 Townsend)',69,'8/27/2015 18:56','Powell Street BART',39,574,'Subscriber',94597); +INSERT INTO "trip" VALUES(908912,319,'8/27/2015 18:48','Mountain View City Hall',27,'8/27/2015 18:53','Mountain View Caltrain Station',28,48,'Subscriber',94107); +INSERT INTO "trip" VALUES(908913,366,'8/27/2015 18:49','San Francisco Caltrain 2 (330 Townsend)',69,'8/27/2015 18:55','Townsend at 7th',65,624,'Subscriber',94107); +INSERT INTO "trip" VALUES(908914,1089,'8/27/2015 18:49','Civic Center BART (7th at Market)',72,'8/27/2015 19:07','Embarcadero at Vallejo',48,427,'Subscriber',94102); +INSERT INTO "trip" VALUES(908916,601,'8/27/2015 18:50','Embarcadero at Sansome',60,'8/27/2015 19:00','Harry Bridges Plaza (Ferry Building)',50,383,'Subscriber',94105); +INSERT INTO "trip" VALUES(908917,607,'8/27/2015 18:50','Market at Sansome',77,'8/27/2015 19:00','Grant Avenue at Columbus Avenue',73,498,'Subscriber',94133); +INSERT INTO "trip" VALUES(908918,994,'8/27/2015 18:52','San Jose Diridon Caltrain Station',2,'8/27/2015 19:08','Japantown',9,95,'Customer',95112); +INSERT INTO "trip" VALUES(908919,495,'8/27/2015 18:52','San Francisco Caltrain (Townsend at 4th)',70,'8/27/2015 19:00','2nd at Folsom',62,578,'Subscriber',94105); +INSERT INTO "trip" VALUES(908920,484,'8/27/2015 18:52','San Francisco Caltrain (Townsend at 4th)',70,'8/27/2015 19:00','2nd at Folsom',62,393,'Subscriber',94105); +INSERT INTO "trip" VALUES(908921,644,'8/27/2015 18:53','San Francisco Caltrain (Townsend at 4th)',70,'8/27/2015 19:04','Yerba Buena Center of the Arts (3rd @ Howard)',68,514,'Subscriber',94105); +INSERT INTO "trip" VALUES(908922,609,'8/27/2015 18:53','Market at 10th',67,'8/27/2015 19:03','Townsend at 7th',65,623,'Subscriber',94112); +INSERT INTO "trip" VALUES(908923,413,'8/27/2015 18:56','Steuart at Market',74,'8/27/2015 19:03','Embarcadero at Sansome',60,375,'Subscriber',94133); +INSERT INTO "trip" VALUES(908924,477,'8/27/2015 18:56','Embarcadero at Vallejo',48,'8/27/2015 19:04','Embarcadero at Vallejo',48,285,'Subscriber',94107); +INSERT INTO "trip" VALUES(908925,648,'8/27/2015 18:56','Civic Center BART (7th at Market)',72,'8/27/2015 19:07','San Francisco Caltrain 2 (330 Townsend)',69,382,'Customer',78233); +INSERT INTO "trip" VALUES(908926,648,'8/27/2015 18:57','5th at Howard',57,'8/27/2015 19:07','Townsend at 7th',65,877,'Subscriber',94103); +INSERT INTO "trip" VALUES(908927,516,'8/27/2015 18:57','Market at 4th',76,'8/27/2015 19:06','Spear at Folsom',49,288,'Subscriber',94105); +INSERT INTO "trip" VALUES(908928,731,'8/27/2015 18:57','Townsend at 7th',65,'8/27/2015 19:09','Market at 10th',67,624,'Subscriber',94107); +INSERT INTO "trip" VALUES(908929,882,'8/27/2015 18:57','San Francisco Caltrain 2 (330 Townsend)',69,'8/27/2015 19:12','Golden Gate at Polk',59,445,'Subscriber',94109); +INSERT INTO "trip" VALUES(908930,288,'8/27/2015 18:57','San Francisco Caltrain 2 (330 Townsend)',69,'8/27/2015 19:02','2nd at South Park',64,463,'Subscriber',94107); +INSERT INTO "trip" VALUES(908931,832,'8/27/2015 18:58','Commercial at Montgomery',45,'8/27/2015 19:12','South Van Ness at Market',66,391,'Subscriber',94103); +INSERT INTO "trip" VALUES(908932,453,'8/27/2015 18:59','San Francisco Caltrain (Townsend at 4th)',70,'8/27/2015 19:06','Powell Street BART',39,575,'Subscriber',94607); +INSERT INTO "trip" VALUES(908933,7235,'8/27/2015 18:59','SJSU - San Salvador at 9th',16,'8/27/2015 21:00','SJSU - San Salvador at 9th',16,488,'Customer','nil'); +INSERT INTO "trip" VALUES(908935,476,'8/27/2015 19:00','2nd at Townsend',61,'8/27/2015 19:08','Harry Bridges Plaza (Ferry Building)',50,322,'Subscriber',94080); +INSERT INTO "trip" VALUES(908936,619,'8/27/2015 19:02','2nd at Folsom',62,'8/27/2015 19:12','Harry Bridges Plaza (Ferry Building)',50,393,'Subscriber',94107); +INSERT INTO "trip" VALUES(908937,595,'8/27/2015 19:02','Harry Bridges Plaza (Ferry Building)',50,'8/27/2015 19:12','Embarcadero at Sansome',60,503,'Customer',20002); +INSERT INTO "trip" VALUES(908938,590,'8/27/2015 19:02','Harry Bridges Plaza (Ferry Building)',50,'8/27/2015 19:12','Embarcadero at Sansome',60,557,'Customer',20002); +INSERT INTO "trip" VALUES(908939,292,'8/27/2015 19:02','Mountain View Caltrain Station',28,'8/27/2015 19:07','Castro Street and El Camino Real',32,263,'Subscriber',94022); +INSERT INTO "trip" VALUES(908940,290,'8/27/2015 19:04','2nd at Folsom',62,'8/27/2015 19:09','Spear at Folsom',49,578,'Customer',85601); +INSERT INTO "trip" VALUES(908941,604,'8/27/2015 19:04','Townsend at 7th',65,'8/27/2015 19:14','2nd at Townsend',61,350,'Subscriber',94107); +INSERT INTO "trip" VALUES(908942,803,'8/27/2015 19:04','Embarcadero at Vallejo',48,'8/27/2015 19:18','2nd at Townsend',61,687,'Subscriber',94107); +INSERT INTO "trip" VALUES(908943,458,'8/27/2015 19:05','2nd at Townsend',61,'8/27/2015 19:13','Harry Bridges Plaza (Ferry Building)',50,531,'Subscriber',94901); +INSERT INTO "trip" VALUES(908944,90,'8/27/2015 19:05','Steuart at Market',74,'8/27/2015 19:07','Steuart at Market',74,618,'Subscriber',94105); +INSERT INTO "trip" VALUES(908945,2863,'8/27/2015 19:06','Market at 4th',76,'8/27/2015 19:53','San Francisco City Hall',58,470,'Customer',94606); +INSERT INTO "trip" VALUES(908946,438,'8/27/2015 19:07','San Francisco Caltrain (Townsend at 4th)',70,'8/27/2015 19:14','2nd at Folsom',62,521,'Subscriber',95134); +INSERT INTO "trip" VALUES(908947,299,'8/27/2015 19:07','San Francisco Caltrain 2 (330 Townsend)',69,'8/27/2015 19:12','5th at Howard',57,619,'Subscriber',94103); +INSERT INTO "trip" VALUES(908948,797,'8/27/2015 19:08','Steuart at Market',74,'8/27/2015 19:21','Powell Street BART',39,526,'Subscriber',94105); +INSERT INTO "trip" VALUES(908949,705,'8/27/2015 19:10','Embarcadero at Folsom',51,'8/27/2015 19:22','Commercial at Montgomery',45,609,'Subscriber',94108); +INSERT INTO "trip" VALUES(908950,369,'8/27/2015 19:12','Powell at Post (Union Square)',71,'8/27/2015 19:18','Civic Center BART (7th at Market)',72,593,'Subscriber',94107); +INSERT INTO "trip" VALUES(908953,439,'8/27/2015 19:14','Harry Bridges Plaza (Ferry Building)',50,'8/27/2015 19:21','Embarcadero at Sansome',60,538,'Subscriber',94133); +INSERT INTO "trip" VALUES(908954,211,'8/27/2015 19:14','Townsend at 7th',65,'8/27/2015 19:18','San Francisco Caltrain 2 (330 Townsend)',69,585,'Subscriber',94103); +INSERT INTO "trip" VALUES(908955,334,'8/27/2015 19:15','Embarcadero at Sansome',60,'8/27/2015 19:21','Steuart at Market',74,560,'Subscriber',94111); +INSERT INTO "trip" VALUES(908956,552,'8/27/2015 19:15','Market at 10th',67,'8/27/2015 19:24','San Francisco Caltrain 2 (330 Townsend)',69,478,'Subscriber',94582); +INSERT INTO "trip" VALUES(908957,238,'8/27/2015 19:15','Townsend at 7th',65,'8/27/2015 19:19','San Francisco Caltrain 2 (330 Townsend)',69,877,'Subscriber',94401); +INSERT INTO "trip" VALUES(908958,617,'8/27/2015 19:16','Mountain View Caltrain Station',28,'8/27/2015 19:26','Rengstorff Avenue / California Street',33,123,'Subscriber',94040); +INSERT INTO "trip" VALUES(908959,577,'8/27/2015 19:17','Mountain View Caltrain Station',28,'8/27/2015 19:26','Evelyn Park and Ride',30,107,'Subscriber',95051); +INSERT INTO "trip" VALUES(908960,315,'8/27/2015 19:17','Market at 4th',76,'8/27/2015 19:22','Civic Center BART (7th at Market)',72,395,'Subscriber',94104); +INSERT INTO "trip" VALUES(908961,1190,'8/27/2015 19:18','2nd at South Park',64,'8/27/2015 19:38','Civic Center BART (7th at Market)',72,463,'Subscriber',94103); +INSERT INTO "trip" VALUES(908962,432,'8/27/2015 19:18','San Jose Diridon Caltrain Station',2,'8/27/2015 19:26','Paseo de San Antonio',7,205,'Subscriber',95113); +INSERT INTO "trip" VALUES(908963,484,'8/27/2015 19:19','Powell Street BART',39,'8/27/2015 19:27','South Van Ness at Market',66,469,'Subscriber',94117); +INSERT INTO "trip" VALUES(908964,4628,'8/27/2015 19:20','Harry Bridges Plaza (Ferry Building)',50,'8/27/2015 20:37','Harry Bridges Plaza (Ferry Building)',50,393,'Customer','nil'); +INSERT INTO "trip" VALUES(908965,4566,'8/27/2015 19:21','Harry Bridges Plaza (Ferry Building)',50,'8/27/2015 20:37','Harry Bridges Plaza (Ferry Building)',50,322,'Customer','nil'); +INSERT INTO "trip" VALUES(908966,594,'8/27/2015 19:21','Yerba Buena Center of the Arts (3rd @ Howard)',68,'8/27/2015 19:31','Townsend at 7th',65,535,'Subscriber',94107); +INSERT INTO "trip" VALUES(908967,487,'8/27/2015 19:22','Embarcadero at Bryant',54,'8/27/2015 19:30','San Francisco Caltrain (Townsend at 4th)',70,518,'Customer',95008); +INSERT INTO "trip" VALUES(908968,409,'8/27/2015 19:23','San Francisco Caltrain (Townsend at 4th)',70,'8/27/2015 19:29','Embarcadero at Bryant',54,568,'Subscriber',94105); +INSERT INTO "trip" VALUES(908970,507,'8/27/2015 19:23','San Francisco Caltrain 2 (330 Townsend)',69,'8/27/2015 19:31','Powell Street BART',39,260,'Subscriber',94107); +INSERT INTO "trip" VALUES(908971,534,'8/27/2015 19:23','Harry Bridges Plaza (Ferry Building)',50,'8/27/2015 19:32','2nd at Townsend',61,531,'Subscriber',94107); +INSERT INTO "trip" VALUES(908972,7073,'8/27/2015 19:26','Post at Kearny',47,'8/27/2015 21:24','Powell at Post (Union Square)',71,456,'Customer',22201); +INSERT INTO "trip" VALUES(908973,203,'8/27/2015 19:27','San Francisco Caltrain 2 (330 Townsend)',69,'8/27/2015 19:30','2nd at Townsend',61,382,'Subscriber',94107); +INSERT INTO "trip" VALUES(908974,225,'8/27/2015 19:28','2nd at Folsom',62,'8/27/2015 19:31','Market at Sansome',77,521,'Subscriber',94612); +INSERT INTO "trip" VALUES(908977,338,'8/27/2015 19:34','Harry Bridges Plaza (Ferry Building)',50,'8/27/2015 19:39','Embarcadero at Bryant',54,383,'Subscriber',94105); +INSERT INTO "trip" VALUES(908978,384,'8/27/2015 19:35','Embarcadero at Sansome',60,'8/27/2015 19:41','Steuart at Market',74,321,'Subscriber',94612); +INSERT INTO "trip" VALUES(908979,206,'8/27/2015 19:38','2nd at South Park',64,'8/27/2015 19:42','Market at Sansome',77,566,'Subscriber',94587); +INSERT INTO "trip" VALUES(908980,299,'8/27/2015 19:39','2nd at South Park',64,'8/27/2015 19:44','Market at Sansome',77,329,'Subscriber',94705); +INSERT INTO "trip" VALUES(908981,708,'8/27/2015 19:40','SJSU 4th at San Carlos',12,'8/27/2015 19:52','San Jose Diridon Caltrain Station',2,641,'Subscriber',94114); +INSERT INTO "trip" VALUES(908982,415,'8/27/2015 19:41','Market at Sansome',77,'8/27/2015 19:48','Grant Avenue at Columbus Avenue',73,567,'Subscriber',94104); +INSERT INTO "trip" VALUES(908983,853,'8/27/2015 19:42','2nd at South Park',64,'8/27/2015 19:56','Washington at Kearny',46,677,'Subscriber',94133); +INSERT INTO "trip" VALUES(908984,439,'8/27/2015 19:42','Market at Sansome',77,'8/27/2015 19:49','Grant Avenue at Columbus Avenue',73,521,'Subscriber',94133); +INSERT INTO "trip" VALUES(908985,535,'8/27/2015 19:42','Steuart at Market',74,'8/27/2015 19:51','Broadway St at Battery St',82,457,'Subscriber',94133); +INSERT INTO "trip" VALUES(908986,506,'8/27/2015 19:44','Market at 4th',76,'8/27/2015 19:52','2nd at South Park',64,378,'Subscriber',94103); +INSERT INTO "trip" VALUES(908988,603,'8/27/2015 19:45','San Jose Diridon Caltrain Station',2,'8/27/2015 19:55','Ryland Park',84,250,'Subscriber',94040); +INSERT INTO "trip" VALUES(908989,398,'8/27/2015 19:45','Townsend at 7th',65,'8/27/2015 19:52','2nd at Townsend',61,623,'Subscriber',94107); +INSERT INTO "trip" VALUES(908990,340,'8/27/2015 19:46','Spear at Folsom',49,'8/27/2015 19:52','Davis at Jackson',42,520,'Subscriber',94133); +INSERT INTO "trip" VALUES(908991,255,'8/27/2015 19:47','Castro Street and El Camino Real',32,'8/27/2015 19:51','Mountain View Caltrain Station',28,194,'Subscriber',2780); +INSERT INTO "trip" VALUES(908992,533,'8/27/2015 19:47','5th at Howard',57,'8/27/2015 19:56','Steuart at Market',74,619,'Subscriber',94930); +INSERT INTO "trip" VALUES(908993,619,'8/27/2015 19:47','5th at Howard',57,'8/27/2015 19:58','2nd at Folsom',62,601,'Subscriber',94042); +INSERT INTO "trip" VALUES(908994,1115,'8/27/2015 19:48','Townsend at 7th',65,'8/27/2015 20:06','Spear at Folsom',49,416,'Subscriber',94105); +INSERT INTO "trip" VALUES(908999,267,'8/27/2015 19:51','Market at Sansome',77,'8/27/2015 19:56','2nd at Folsom',62,477,'Subscriber',94107); +INSERT INTO "trip" VALUES(909000,741,'8/27/2015 19:52','Yerba Buena Center of the Arts (3rd @ Howard)',68,'8/27/2015 20:04','Embarcadero at Bryant',54,277,'Subscriber',94105); +INSERT INTO "trip" VALUES(909002,289,'8/27/2015 19:52','Harry Bridges Plaza (Ferry Building)',50,'8/27/2015 19:57','Embarcadero at Sansome',60,354,'Subscriber',94108); +INSERT INTO "trip" VALUES(909003,354,'8/27/2015 19:53','Commercial at Montgomery',45,'8/27/2015 19:59','Market at 4th',76,318,'Subscriber',94107); +INSERT INTO "trip" VALUES(909004,140,'8/27/2015 19:54','Temporary Transbay Terminal (Howard at Beale)',55,'8/27/2015 19:56','Beale at Market',56,507,'Subscriber',94110); +INSERT INTO "trip" VALUES(909005,3360,'8/27/2015 19:55','Harry Bridges Plaza (Ferry Building)',50,'8/27/2015 20:51','Embarcadero at Sansome',60,558,'Customer',23226); +INSERT INTO "trip" VALUES(909006,3328,'8/27/2015 19:56','Harry Bridges Plaza (Ferry Building)',50,'8/27/2015 20:51','Embarcadero at Sansome',60,400,'Customer',23226); +INSERT INTO "trip" VALUES(909013,372,'8/27/2015 20:01','Commercial at Montgomery',45,'8/27/2015 20:07','Yerba Buena Center of the Arts (3rd @ Howard)',68,591,'Subscriber',94107); +INSERT INTO "trip" VALUES(909018,698,'8/27/2015 20:02','Embarcadero at Folsom',51,'8/27/2015 20:14','San Francisco Caltrain (Townsend at 4th)',70,576,'Customer',85601); +INSERT INTO "trip" VALUES(909023,387,'8/27/2015 20:04','Davis at Jackson',42,'8/27/2015 20:10','Spear at Folsom',49,520,'Subscriber',94111); +INSERT INTO "trip" VALUES(909028,529,'8/27/2015 20:06','2nd at Townsend',61,'8/27/2015 20:15','Harry Bridges Plaza (Ferry Building)',50,274,'Subscriber',94612); +INSERT INTO "trip" VALUES(909032,377,'8/27/2015 20:11','Beale at Market',56,'8/27/2015 20:17','Embarcadero at Bryant',54,507,'Subscriber',94105); +INSERT INTO "trip" VALUES(909033,508,'8/27/2015 20:12','South Van Ness at Market',66,'8/27/2015 20:20','Market at 4th',76,562,'Subscriber',94108); +INSERT INTO "trip" VALUES(909034,746,'8/27/2015 20:13','Embarcadero at Sansome',60,'8/27/2015 20:25','Beale at Market',56,278,'Subscriber',94105); +INSERT INTO "trip" VALUES(909035,506,'8/27/2015 20:14','Civic Center BART (7th at Market)',72,'8/27/2015 20:23','Washington at Kearny',46,593,'Subscriber',94103); +INSERT INTO "trip" VALUES(909036,884,'8/27/2015 20:19','2nd at Folsom',62,'8/27/2015 20:33','Townsend at 7th',65,601,'Subscriber',94107); +INSERT INTO "trip" VALUES(909038,566,'8/27/2015 20:21','2nd at Townsend',61,'8/27/2015 20:31','Market at Sansome',77,628,'Subscriber',94401); +INSERT INTO "trip" VALUES(909039,830,'8/27/2015 20:22','Market at Sansome',77,'8/27/2015 20:36','San Francisco Caltrain (Townsend at 4th)',70,549,'Subscriber',94087); +INSERT INTO "trip" VALUES(909040,776,'8/27/2015 20:22','Powell Street BART',39,'8/27/2015 20:35','Grant Avenue at Columbus Avenue',73,575,'Subscriber',94133); +INSERT INTO "trip" VALUES(909041,129,'8/27/2015 20:24','Howard at 2nd',63,'8/27/2015 20:26','Market at Sansome',77,449,'Subscriber',94117); +INSERT INTO "trip" VALUES(909042,261,'8/27/2015 20:29','2nd at South Park',64,'8/27/2015 20:34','San Francisco Caltrain (Townsend at 4th)',70,378,'Subscriber',94301); +INSERT INTO "trip" VALUES(909043,509,'8/27/2015 20:31','Civic Center BART (7th at Market)',72,'8/27/2015 20:39','San Francisco Caltrain 2 (330 Townsend)',69,537,'Customer',94403); +INSERT INTO "trip" VALUES(909044,568,'8/27/2015 20:33','Washington at Kearny',46,'8/27/2015 20:42','Temporary Transbay Terminal (Howard at Beale)',55,268,'Subscriber',94705); +INSERT INTO "trip" VALUES(909045,301,'8/27/2015 20:34','Davis at Jackson',42,'8/27/2015 20:39','Embarcadero at Sansome',60,392,'Subscriber',94111); +INSERT INTO "trip" VALUES(909046,500,'8/27/2015 20:35','Beale at Market',56,'8/27/2015 20:43','Market at 4th',76,212,'Subscriber',94102); +INSERT INTO "trip" VALUES(909052,1249,'8/27/2015 20:37','Mountain View Caltrain Station',28,'8/27/2015 20:58','Castro Street and El Camino Real',32,262,'Subscriber',95032); +INSERT INTO "trip" VALUES(909055,210,'8/27/2015 20:40','Market at 4th',76,'8/27/2015 20:44','Yerba Buena Center of the Arts (3rd @ Howard)',68,562,'Subscriber',94107); +INSERT INTO "trip" VALUES(909059,338,'8/27/2015 20:46','Howard at 2nd',63,'8/27/2015 20:51','Market at 4th',76,407,'Subscriber',94108); +INSERT INTO "trip" VALUES(909061,580,'8/27/2015 20:49','Temporary Transbay Terminal (Howard at Beale)',55,'8/27/2015 20:59','Civic Center BART (7th at Market)',72,137,'Subscriber',94103); +INSERT INTO "trip" VALUES(909063,597,'8/27/2015 21:04','San Francisco Caltrain (Townsend at 4th)',70,'8/27/2015 21:14','Powell Street BART',39,29,'Subscriber',2780); +INSERT INTO "trip" VALUES(909064,452,'8/27/2015 21:06','2nd at Townsend',61,'8/27/2015 21:14','Harry Bridges Plaza (Ferry Building)',50,613,'Subscriber',94960); +INSERT INTO "trip" VALUES(909065,467,'8/27/2015 21:06','Embarcadero at Bryant',54,'8/27/2015 21:14','2nd at Townsend',61,434,'Subscriber',94107); +INSERT INTO "trip" VALUES(909067,422,'8/27/2015 21:08','Embarcadero at Sansome',60,'8/27/2015 21:15','Harry Bridges Plaza (Ferry Building)',50,354,'Customer',12345); +INSERT INTO "trip" VALUES(909068,504,'8/27/2015 21:09','2nd at Townsend',61,'8/27/2015 21:17','Steuart at Market',74,428,'Subscriber',94611); +INSERT INTO "trip" VALUES(909069,395,'8/27/2015 21:09','Embarcadero at Sansome',60,'8/27/2015 21:15','Harry Bridges Plaza (Ferry Building)',50,503,'Customer',12345); +INSERT INTO "trip" VALUES(909071,347,'8/27/2015 21:15','Embarcadero at Sansome',60,'8/27/2015 21:21','Davis at Jackson',42,375,'Subscriber',94111); +INSERT INTO "trip" VALUES(909072,615,'8/27/2015 21:16','Temporary Transbay Terminal (Howard at Beale)',55,'8/27/2015 21:26','Powell Street BART',39,461,'Subscriber',94105); +INSERT INTO "trip" VALUES(909073,212,'8/27/2015 21:17','Embarcadero at Vallejo',48,'8/27/2015 21:20','Steuart at Market',74,427,'Subscriber',94610); +INSERT INTO "trip" VALUES(909074,689,'8/27/2015 21:17','Civic Center BART (7th at Market)',72,'8/27/2015 21:29','2nd at Townsend',61,317,'Subscriber',94107); +INSERT INTO "trip" VALUES(909076,872,'8/27/2015 21:20','Harry Bridges Plaza (Ferry Building)',50,'8/27/2015 21:34','Embarcadero at Sansome',60,406,'Customer',8812); +INSERT INTO "trip" VALUES(909078,408,'8/27/2015 21:20','Paseo de San Antonio',7,'8/27/2015 21:27','San Jose Diridon Caltrain Station',2,51,'Subscriber',94118); +INSERT INTO "trip" VALUES(909079,418,'8/27/2015 21:22','Commercial at Montgomery',45,'8/27/2015 21:29','Embarcadero at Bryant',54,609,'Subscriber',94105); +INSERT INTO "trip" VALUES(909080,422,'8/27/2015 21:23','Market at Sansome',77,'8/27/2015 21:30','Embarcadero at Sansome',60,566,'Subscriber',94111); +INSERT INTO "trip" VALUES(909081,259,'8/27/2015 21:29','San Jose Diridon Caltrain Station',2,'8/27/2015 21:34','Santa Clara at Almaden',4,78,'Subscriber',95126); +INSERT INTO "trip" VALUES(909082,729,'8/27/2015 21:33','San Francisco Caltrain (Townsend at 4th)',70,'8/27/2015 21:45','Civic Center BART (7th at Market)',72,454,'Subscriber',94107); +INSERT INTO "trip" VALUES(909084,604,'8/27/2015 21:36','Embarcadero at Sansome',60,'8/27/2015 21:46','Mechanics Plaza (Market at Battery)',75,406,'Customer',8812); +INSERT INTO "trip" VALUES(909085,693,'8/27/2015 21:36','2nd at South Park',64,'8/27/2015 21:48','Powell at Post (Union Square)',71,328,'Subscriber',94103); +INSERT INTO "trip" VALUES(909086,460,'8/27/2015 21:40','Market at 4th',76,'8/27/2015 21:48','Clay at Battery',41,531,'Subscriber',94133); +INSERT INTO "trip" VALUES(909087,219,'8/27/2015 21:42','Paseo de San Antonio',7,'8/27/2015 21:45','St James Park',13,708,'Subscriber',95112); +INSERT INTO "trip" VALUES(909088,792,'8/27/2015 21:45','Civic Center BART (7th at Market)',72,'8/27/2015 21:59','2nd at Townsend',61,454,'Subscriber',94040); +INSERT INTO "trip" VALUES(909090,643,'8/27/2015 21:51','Embarcadero at Sansome',60,'8/27/2015 22:02','Market at Sansome',77,581,'Subscriber',94109); +INSERT INTO "trip" VALUES(909091,2947,'8/27/2015 21:52','Mechanics Plaza (Market at Battery)',75,'8/27/2015 22:41','South Van Ness at Market',66,406,'Customer','nil'); +INSERT INTO "trip" VALUES(909092,794,'8/27/2015 21:53','Embarcadero at Sansome',60,'8/27/2015 22:06','Powell Street BART',39,390,'Subscriber',94108); +INSERT INTO "trip" VALUES(909093,860,'8/27/2015 21:53','Market at Sansome',77,'8/27/2015 22:08','2nd at Townsend',61,329,'Subscriber',94105); +INSERT INTO "trip" VALUES(909094,286,'8/27/2015 22:07','San Francisco Caltrain (Townsend at 4th)',70,'8/27/2015 22:12','Townsend at 7th',65,386,'Subscriber',94107); +INSERT INTO "trip" VALUES(909095,306,'8/27/2015 22:08','Post at Kearny',47,'8/27/2015 22:13','2nd at South Park',64,312,'Subscriber',94107); +INSERT INTO "trip" VALUES(909096,280,'8/27/2015 22:12','Davis at Jackson',42,'8/27/2015 22:17','Embarcadero at Sansome',60,375,'Subscriber',94133); +INSERT INTO "trip" VALUES(909097,182,'8/27/2015 22:14','Embarcadero at Vallejo',48,'8/27/2015 22:17','Steuart at Market',74,285,'Subscriber',94608); +INSERT INTO "trip" VALUES(909098,224,'8/27/2015 22:15','2nd at South Park',64,'8/27/2015 22:19','San Francisco Caltrain 2 (330 Townsend)',69,500,'Subscriber',94107); +INSERT INTO "trip" VALUES(909099,223,'8/27/2015 22:16','2nd at South Park',64,'8/27/2015 22:19','San Francisco Caltrain 2 (330 Townsend)',69,413,'Subscriber',94107); +INSERT INTO "trip" VALUES(909100,553,'8/27/2015 22:22','Powell Street BART',39,'8/27/2015 22:31','Market at 10th',67,461,'Subscriber',94107); +INSERT INTO "trip" VALUES(909101,746,'8/27/2015 22:23','Beale at Market',56,'8/27/2015 22:35','San Francisco Caltrain (Townsend at 4th)',70,552,'Customer','nil'); +INSERT INTO "trip" VALUES(909102,436,'8/27/2015 22:29','Post at Kearny',47,'8/27/2015 22:36','5th at Howard',57,309,'Subscriber',94107); +INSERT INTO "trip" VALUES(909103,706,'8/27/2015 22:29','Palo Alto Caltrain Station',34,'8/27/2015 22:41','California Ave Caltrain Station',36,152,'Subscriber',94306); +INSERT INTO "trip" VALUES(909104,723,'8/27/2015 22:29','Palo Alto Caltrain Station',34,'8/27/2015 22:41','California Ave Caltrain Station',36,235,'Subscriber',94306); +INSERT INTO "trip" VALUES(909105,864,'8/27/2015 22:38','Powell Street BART',39,'8/27/2015 22:53','Broadway St at Battery St',82,29,'Subscriber',94111); +INSERT INTO "trip" VALUES(909106,426,'8/27/2015 22:40','Post at Kearny',47,'8/27/2015 22:48','Embarcadero at Folsom',51,335,'Subscriber',95131); +INSERT INTO "trip" VALUES(909108,204,'8/27/2015 22:50','Arena Green / SAP Center',14,'8/27/2015 22:54','Santa Clara at Almaden',4,14,'Subscriber',95113); +INSERT INTO "trip" VALUES(909109,784,'8/27/2015 22:54','Mechanics Plaza (Market at Battery)',75,'8/27/2015 23:07','San Francisco Caltrain (Townsend at 4th)',70,388,'Subscriber',94085); +INSERT INTO "trip" VALUES(909110,402,'8/27/2015 22:56','Howard at 2nd',63,'8/27/2015 23:03','San Francisco Caltrain (Townsend at 4th)',70,512,'Subscriber',94107); +INSERT INTO "trip" VALUES(909111,441,'8/27/2015 23:06','5th at Howard',57,'8/27/2015 23:13','2nd at South Park',64,382,'Subscriber',94158); +INSERT INTO "trip" VALUES(909112,479,'8/27/2015 23:06','San Francisco Caltrain (Townsend at 4th)',70,'8/27/2015 23:14','Market at 4th',76,512,'Subscriber',95054); +INSERT INTO "trip" VALUES(909113,384,'8/27/2015 23:09','Embarcadero at Bryant',54,'8/27/2015 23:16','Steuart at Market',74,383,'Subscriber',94114); +INSERT INTO "trip" VALUES(909115,444,'8/27/2015 23:19','2nd at Folsom',62,'8/27/2015 23:26','San Francisco Caltrain (Townsend at 4th)',70,350,'Subscriber',94158); +INSERT INTO "trip" VALUES(909116,606,'8/27/2015 23:20','Post at Kearny',47,'8/27/2015 23:30','Washington at Kearny',46,441,'Subscriber',94104); +INSERT INTO "trip" VALUES(909117,1332,'8/27/2015 23:21','Spear at Folsom',49,'8/27/2015 23:44','South Van Ness at Market',66,288,'Subscriber',94102); +INSERT INTO "trip" VALUES(909118,523,'8/27/2015 23:26','Powell Street BART',39,'8/27/2015 23:35','San Francisco Caltrain 2 (330 Townsend)',69,574,'Subscriber',94105); +INSERT INTO "trip" VALUES(909119,247,'8/27/2015 23:50','Santa Clara at Almaden',4,'8/27/2015 23:54','San Jose Diridon Caltrain Station',2,78,'Subscriber',95126); +INSERT INTO "trip" VALUES(909120,612,'8/28/2015 0:18','San Jose Diridon Caltrain Station',2,'8/28/2015 0:28','Japantown',9,51,'Subscriber',94111); +INSERT INTO "trip" VALUES(909121,341,'8/28/2015 1:25','Grant Avenue at Columbus Avenue',73,'8/28/2015 1:31','Post at Kearny',47,313,'Subscriber',94104); +INSERT INTO "trip" VALUES(909122,467,'8/28/2015 1:54','Clay at Battery',41,'8/28/2015 2:01','Grant Avenue at Columbus Avenue',73,485,'Subscriber',94133); +INSERT INTO "trip" VALUES(909123,394,'8/28/2015 4:24','Market at 10th',67,'8/28/2015 4:30','Townsend at 7th',65,554,'Subscriber',94102); +INSERT INTO "trip" VALUES(909124,145,'8/28/2015 4:57','2nd at Folsom',62,'8/28/2015 4:59','Market at Sansome',77,477,'Subscriber',94107); +INSERT INTO "trip" VALUES(909125,759,'8/28/2015 5:01','Davis at Jackson',42,'8/28/2015 5:14','San Francisco Caltrain (Townsend at 4th)',70,266,'Subscriber',94111); +INSERT INTO "trip" VALUES(909126,295,'8/28/2015 5:09','Temporary Transbay Terminal (Howard at Beale)',55,'8/28/2015 5:13','Steuart at Market',74,374,'Subscriber',94112); +INSERT INTO "trip" VALUES(909127,623,'8/28/2015 5:10','South Van Ness at Market',66,'8/28/2015 5:20','San Francisco Caltrain 2 (330 Townsend)',69,517,'Subscriber',94102); +INSERT INTO "trip" VALUES(909128,826,'8/28/2015 5:10','Market at 10th',67,'8/28/2015 5:24','Davis at Jackson',42,461,'Subscriber',94102); +INSERT INTO "trip" VALUES(909131,445,'8/28/2015 5:39','Powell Street BART',39,'8/28/2015 5:46','San Francisco Caltrain 2 (330 Townsend)',69,526,'Subscriber',94107); +INSERT INTO "trip" VALUES(909132,432,'8/28/2015 5:48','5th at Howard',57,'8/28/2015 5:55','San Francisco Caltrain 2 (330 Townsend)',69,436,'Subscriber',94107); +INSERT INTO "trip" VALUES(909133,341,'8/28/2015 6:02','Grant Avenue at Columbus Avenue',73,'8/28/2015 6:08','Market at Sansome',77,387,'Subscriber',94133); +INSERT INTO "trip" VALUES(909134,568,'8/28/2015 6:04','Market at 10th',67,'8/28/2015 6:14','Market at Sansome',77,624,'Subscriber',94103); +INSERT INTO "trip" VALUES(909135,325,'8/28/2015 6:07','Embarcadero at Sansome',60,'8/28/2015 6:13','Steuart at Market',74,375,'Subscriber',94133); +INSERT INTO "trip" VALUES(909136,564,'8/28/2015 6:14','Embarcadero at Folsom',51,'8/28/2015 6:24','Embarcadero at Sansome',60,632,'Subscriber',94111); +INSERT INTO "trip" VALUES(909137,571,'8/28/2015 6:14','Townsend at 7th',65,'8/28/2015 6:24','South Van Ness at Market',66,554,'Subscriber',94107); +INSERT INTO "trip" VALUES(909138,547,'8/28/2015 6:19','San Francisco City Hall',58,'8/28/2015 6:28','San Francisco Caltrain (Townsend at 4th)',70,259,'Subscriber',94065); +INSERT INTO "trip" VALUES(909139,424,'8/28/2015 6:20','Harry Bridges Plaza (Ferry Building)',50,'8/28/2015 6:27','2nd at Folsom',62,625,'Subscriber',94901); +INSERT INTO "trip" VALUES(909140,468,'8/28/2015 6:20','Harry Bridges Plaza (Ferry Building)',50,'8/28/2015 6:28','Post at Kearny',47,503,'Subscriber',94957); +INSERT INTO "trip" VALUES(909141,425,'8/28/2015 6:28','Powell Street BART',39,'8/28/2015 6:35','San Francisco Caltrain 2 (330 Townsend)',69,260,'Subscriber',94605); +INSERT INTO "trip" VALUES(909142,545,'8/28/2015 6:29','Embarcadero at Sansome',60,'8/28/2015 6:38','2nd at Townsend',61,392,'Subscriber',94111); +INSERT INTO "trip" VALUES(909143,585,'8/28/2015 6:37','San Francisco Caltrain (Townsend at 4th)',70,'8/28/2015 6:46','Embarcadero at Folsom',51,552,'Subscriber',94107); +INSERT INTO "trip" VALUES(909144,912,'8/28/2015 6:37','San Francisco Caltrain (Townsend at 4th)',70,'8/28/2015 6:52','Market at 10th',67,473,'Subscriber',94306); +INSERT INTO "trip" VALUES(909146,306,'8/28/2015 6:38','Santa Clara at Almaden',4,'8/28/2015 6:43','San Jose Diridon Caltrain Station',2,117,'Subscriber',95110); +INSERT INTO "trip" VALUES(909147,439,'8/28/2015 6:43','Temporary Transbay Terminal (Howard at Beale)',55,'8/28/2015 6:51','Market at 4th',76,471,'Subscriber',94501); +INSERT INTO "trip" VALUES(909148,678,'8/28/2015 6:44','San Francisco Caltrain (Townsend at 4th)',70,'8/28/2015 6:55','Harry Bridges Plaza (Ferry Building)',50,549,'Subscriber',94065); +INSERT INTO "trip" VALUES(909149,557,'8/28/2015 6:44','San Francisco Caltrain (Townsend at 4th)',70,'8/28/2015 6:54','Harry Bridges Plaza (Ferry Building)',50,378,'Subscriber',94111); +INSERT INTO "trip" VALUES(909150,850,'8/28/2015 6:44','San Francisco Caltrain (Townsend at 4th)',70,'8/28/2015 6:58','Temporary Transbay Terminal (Howard at Beale)',55,479,'Subscriber',94030); +INSERT INTO "trip" VALUES(909151,266,'8/28/2015 6:45','SJSU - San Salvador at 9th',16,'8/28/2015 6:49','San Salvador at 1st',8,488,'Subscriber',95112); +INSERT INTO "trip" VALUES(909152,487,'8/28/2015 6:45','San Francisco Caltrain (Townsend at 4th)',70,'8/28/2015 6:53','Embarcadero at Bryant',54,388,'Subscriber',95050); +INSERT INTO "trip" VALUES(909153,560,'8/28/2015 6:46','San Francisco Caltrain (Townsend at 4th)',70,'8/28/2015 6:55','Post at Kearny',47,518,'Subscriber',94002); +INSERT INTO "trip" VALUES(909154,324,'8/28/2015 6:47','Evelyn Park and Ride',30,'8/28/2015 6:53','Mountain View Caltrain Station',28,258,'Subscriber',94087); +INSERT INTO "trip" VALUES(909166,574,'8/28/2015 6:53','Market at 10th',67,'8/28/2015 7:02','Mechanics Plaza (Market at Battery)',75,56,'Subscriber',94102); +INSERT INTO "trip" VALUES(909168,223,'8/28/2015 6:53','Embarcadero at Bryant',54,'8/28/2015 6:57','2nd at Townsend',61,277,'Subscriber',94103); +INSERT INTO "trip" VALUES(909173,571,'8/28/2015 6:55','Embarcadero at Folsom',51,'8/28/2015 7:05','San Francisco Caltrain (Townsend at 4th)',70,347,'Subscriber',94501); +INSERT INTO "trip" VALUES(909176,413,'8/28/2015 6:57','Grant Avenue at Columbus Avenue',73,'8/28/2015 7:04','Mechanics Plaza (Market at Battery)',75,412,'Subscriber',94133); +INSERT INTO "trip" VALUES(909179,200,'8/28/2015 6:58','Davis at Jackson',42,'8/28/2015 7:01','Commercial at Montgomery',45,437,'Subscriber',94111); +INSERT INTO "trip" VALUES(909180,317,'8/28/2015 7:00','Harry Bridges Plaza (Ferry Building)',50,'8/28/2015 7:05','Embarcadero at Sansome',60,613,'Subscriber',94110); +INSERT INTO "trip" VALUES(909181,548,'8/28/2015 7:00','Mechanics Plaza (Market at Battery)',75,'8/28/2015 7:09','Civic Center BART (7th at Market)',72,511,'Subscriber',94107); +INSERT INTO "trip" VALUES(909182,443,'8/28/2015 7:02','South Van Ness at Market',66,'8/28/2015 7:09','Townsend at 7th',65,327,'Subscriber',94133); +INSERT INTO "trip" VALUES(909183,524,'8/28/2015 7:04','Temporary Transbay Terminal (Howard at Beale)',55,'8/28/2015 7:12','Civic Center BART (7th at Market)',72,629,'Subscriber',94710); +INSERT INTO "trip" VALUES(909184,239,'8/28/2015 7:04','Temporary Transbay Terminal (Howard at Beale)',55,'8/28/2015 7:08','Clay at Battery',41,479,'Subscriber',94501); +INSERT INTO "trip" VALUES(909185,1239,'8/28/2015 7:04','California Ave Caltrain Station',36,'8/28/2015 7:24','California Ave Caltrain Station',36,235,'Subscriber',94306); +INSERT INTO "trip" VALUES(909186,1234,'8/28/2015 7:04','California Ave Caltrain Station',36,'8/28/2015 7:25','California Ave Caltrain Station',36,75,'Subscriber',94306); +INSERT INTO "trip" VALUES(909187,1043,'8/28/2015 7:05','San Francisco Caltrain (Townsend at 4th)',70,'8/28/2015 7:23','Embarcadero at Sansome',60,347,'Subscriber',95111); +INSERT INTO "trip" VALUES(909188,822,'8/28/2015 7:05','Embarcadero at Folsom',51,'8/28/2015 7:19','Townsend at 7th',65,193,'Subscriber',94501); +INSERT INTO "trip" VALUES(909189,910,'8/28/2015 7:06','Steuart at Market',74,'8/28/2015 7:21','Townsend at 7th',65,267,'Subscriber',94501); +INSERT INTO "trip" VALUES(909190,437,'8/28/2015 7:06','Embarcadero at Sansome',60,'8/28/2015 7:13','Harry Bridges Plaza (Ferry Building)',50,557,'Subscriber',94133); +INSERT INTO "trip" VALUES(909191,469,'8/28/2015 7:07','San Francisco Caltrain 2 (330 Townsend)',69,'8/28/2015 7:15','Embarcadero at Folsom',51,413,'Subscriber',94062); +INSERT INTO "trip" VALUES(909192,497,'8/28/2015 7:07','Beale at Market',56,'8/28/2015 7:15','Embarcadero at Sansome',60,672,'Subscriber',94549); +INSERT INTO "trip" VALUES(909193,952,'8/28/2015 7:08','San Francisco Caltrain (Townsend at 4th)',70,'8/28/2015 7:24','South Van Ness at Market',66,450,'Subscriber',95122); +INSERT INTO "trip" VALUES(909194,856,'8/28/2015 7:08','San Francisco Caltrain (Townsend at 4th)',70,'8/28/2015 7:22','Davis at Jackson',42,351,'Subscriber',94087); +INSERT INTO "trip" VALUES(909195,836,'8/28/2015 7:08','San Francisco Caltrain 2 (330 Townsend)',69,'8/28/2015 7:22','Harry Bridges Plaza (Ferry Building)',50,516,'Subscriber',94402); +INSERT INTO "trip" VALUES(909196,704,'8/28/2015 7:08','Temporary Transbay Terminal (Howard at Beale)',55,'8/28/2015 7:20','San Francisco City Hall',58,268,'Subscriber',94530); +INSERT INTO "trip" VALUES(909197,672,'8/28/2015 7:09','Embarcadero at Bryant',54,'8/28/2015 7:20','Commercial at Montgomery',45,69,'Subscriber',94010); +INSERT INTO "trip" VALUES(909198,237,'8/28/2015 7:10','2nd at Townsend',61,'8/28/2015 7:14','San Francisco Caltrain (Townsend at 4th)',70,547,'Subscriber',94107); +INSERT INTO "trip" VALUES(909199,681,'8/28/2015 7:10','Steuart at Market',74,'8/28/2015 7:21','2nd at Townsend',61,431,'Subscriber',94563); +INSERT INTO "trip" VALUES(909200,453,'8/28/2015 7:10','Grant Avenue at Columbus Avenue',73,'8/28/2015 7:18','Beale at Market',56,504,'Subscriber',94133); +INSERT INTO "trip" VALUES(909201,1618,'8/28/2015 7:12','Spear at Folsom',49,'8/28/2015 7:39','Embarcadero at Sansome',60,578,'Subscriber',94105); +INSERT INTO "trip" VALUES(909202,331,'8/28/2015 7:12','Temporary Transbay Terminal (Howard at Beale)',55,'8/28/2015 7:18','Market at Sansome',77,338,'Subscriber',94105); +INSERT INTO "trip" VALUES(909203,331,'8/28/2015 7:13','Townsend at 7th',65,'8/28/2015 7:18','San Francisco Caltrain 2 (330 Townsend)',69,327,'Subscriber',94044); +INSERT INTO "trip" VALUES(909204,963,'8/28/2015 7:14','Harry Bridges Plaza (Ferry Building)',50,'8/28/2015 7:30','Townsend at 7th',65,404,'Subscriber',94941); +INSERT INTO "trip" VALUES(909205,442,'8/28/2015 7:15','Clay at Battery',41,'8/28/2015 7:22','Embarcadero at Folsom',51,479,'Subscriber',94111); +INSERT INTO "trip" VALUES(909206,372,'8/28/2015 7:15','Harry Bridges Plaza (Ferry Building)',50,'8/28/2015 7:21','Howard at 2nd',63,378,'Subscriber',94954); +INSERT INTO "trip" VALUES(909207,655,'8/28/2015 7:16','Ryland Park',84,'8/28/2015 7:27','San Jose Diridon Caltrain Station',2,250,'Subscriber',94040); +INSERT INTO "trip" VALUES(909208,400,'8/28/2015 7:16','Embarcadero at Bryant',54,'8/28/2015 7:23','Steuart at Market',74,568,'Subscriber',92506); +INSERT INTO "trip" VALUES(909210,372,'8/28/2015 7:18','San Francisco Caltrain 2 (330 Townsend)',69,'8/28/2015 7:25','Howard at 2nd',63,877,'Subscriber',94107); +INSERT INTO "trip" VALUES(909211,835,'8/28/2015 7:19','Embarcadero at Sansome',60,'8/28/2015 7:33','San Francisco Caltrain (Townsend at 4th)',70,566,'Subscriber',94111); +INSERT INTO "trip" VALUES(909212,380,'8/28/2015 7:20','San Francisco Caltrain 2 (330 Townsend)',69,'8/28/2015 7:26','2nd at Folsom',62,327,'Subscriber',94403); +INSERT INTO "trip" VALUES(909213,474,'8/28/2015 7:20','Steuart at Market',74,'8/28/2015 7:28','2nd at Townsend',61,269,'Subscriber',94588); +INSERT INTO "trip" VALUES(909214,849,'8/28/2015 7:20','San Francisco Caltrain (Townsend at 4th)',70,'8/28/2015 7:35','Commercial at Montgomery',45,547,'Subscriber',94002); +INSERT INTO "trip" VALUES(909215,707,'8/28/2015 7:21','San Francisco Caltrain 2 (330 Townsend)',69,'8/28/2015 7:33','Davis at Jackson',42,541,'Subscriber',94025); +INSERT INTO "trip" VALUES(909218,1127,'8/28/2015 7:21','San Francisco Caltrain 2 (330 Townsend)',69,'8/28/2015 7:40','Beale at Market',56,585,'Subscriber',94303); +INSERT INTO "trip" VALUES(909219,1312,'8/28/2015 7:22','San Francisco Caltrain 2 (330 Townsend)',69,'8/28/2015 7:44','Golden Gate at Polk',59,621,'Subscriber',94306); +INSERT INTO "trip" VALUES(909220,661,'8/28/2015 7:22','San Francisco Caltrain (Townsend at 4th)',70,'8/28/2015 7:33','Temporary Transbay Terminal (Howard at Beale)',55,576,'Subscriber',94025); +INSERT INTO "trip" VALUES(909223,425,'8/28/2015 7:23','2nd at Townsend',61,'8/28/2015 7:30','Market at Sansome',77,317,'Subscriber',94107); +INSERT INTO "trip" VALUES(909224,450,'8/28/2015 7:24','Harry Bridges Plaza (Ferry Building)',50,'8/28/2015 7:31','Embarcadero at Sansome',60,549,'Subscriber',94530); +INSERT INTO "trip" VALUES(909226,443,'8/28/2015 7:24','Civic Center BART (7th at Market)',72,'8/28/2015 7:31','Townsend at 7th',65,511,'Subscriber',94582); +INSERT INTO "trip" VALUES(909228,472,'8/28/2015 7:25','2nd at Townsend',61,'8/28/2015 7:32','Mechanics Plaza (Market at Battery)',75,277,'Subscriber',94107); +INSERT INTO "trip" VALUES(909231,4155,'8/28/2015 7:25','Market at 4th',76,'8/28/2015 8:34','Market at 4th',76,512,'Customer',10022); +INSERT INTO "trip" VALUES(909232,335,'8/28/2015 7:25','Powell at Post (Union Square)',71,'8/28/2015 7:30','Howard at 2nd',63,405,'Subscriber',94109); +INSERT INTO "trip" VALUES(909233,497,'8/28/2015 7:25','5th at Howard',57,'8/28/2015 7:33','Mechanics Plaza (Market at Battery)',75,309,'Customer',94103); +INSERT INTO "trip" VALUES(909234,863,'8/28/2015 7:25','San Francisco Caltrain 2 (330 Townsend)',69,'8/28/2015 7:39','Market at 10th',67,300,'Subscriber',94025); +INSERT INTO "trip" VALUES(909237,395,'8/28/2015 7:28','San Jose Diridon Caltrain Station',2,'8/28/2015 7:35','San Pedro Square',6,641,'Subscriber',94110); +INSERT INTO "trip" VALUES(909240,341,'8/28/2015 7:29','Temporary Transbay Terminal (Howard at Beale)',55,'8/28/2015 7:35','5th at Howard',57,619,'Subscriber',94501); +INSERT INTO "trip" VALUES(909241,187,'8/28/2015 7:33','Spear at Folsom',49,'8/28/2015 7:36','Steuart at Market',74,86,'Subscriber',94105); +INSERT INTO "trip" VALUES(909242,755,'8/28/2015 7:33','Temporary Transbay Terminal (Howard at Beale)',55,'8/28/2015 7:45','Embarcadero at Sansome',60,428,'Subscriber',94619); +INSERT INTO "trip" VALUES(909243,712,'8/28/2015 7:33','MLK Library',11,'8/28/2015 7:45','San Jose Diridon Caltrain Station',2,157,'Subscriber',95113); +INSERT INTO "trip" VALUES(909244,808,'8/28/2015 7:33','Golden Gate at Polk',59,'8/28/2015 7:47','Spear at Folsom',49,544,'Subscriber',94109); +INSERT INTO "trip" VALUES(909245,166,'8/28/2015 7:33','San Francisco Caltrain (Townsend at 4th)',70,'8/28/2015 7:36','2nd at Townsend',61,401,'Subscriber',94107); +INSERT INTO "trip" VALUES(909248,774,'8/28/2015 7:34','Redwood City Caltrain Station',22,'8/28/2015 7:47','Stanford in Redwood City',25,122,'Subscriber',94110); +INSERT INTO "trip" VALUES(909249,294,'8/28/2015 7:37','5th at Howard',57,'8/28/2015 7:42','San Francisco Caltrain 2 (330 Townsend)',69,619,'Subscriber',94103); +INSERT INTO "trip" VALUES(909250,461,'8/28/2015 7:37','MLK Library',11,'8/28/2015 7:45','San Jose Diridon Caltrain Station',2,646,'Subscriber',95112); +INSERT INTO "trip" VALUES(909252,450,'8/28/2015 7:38','Temporary Transbay Terminal (Howard at Beale)',55,'8/28/2015 7:46','Embarcadero at Vallejo',48,576,'Subscriber',94611); +INSERT INTO "trip" VALUES(909253,505,'8/28/2015 7:39','Steuart at Market',74,'8/28/2015 7:47','2nd at Townsend',61,321,'Subscriber',94612); +INSERT INTO "trip" VALUES(909254,1036,'8/28/2015 7:42','Harry Bridges Plaza (Ferry Building)',50,'8/28/2015 7:59','Townsend at 7th',65,322,'Subscriber',94965); +INSERT INTO "trip" VALUES(909255,445,'8/28/2015 7:43','Market at 4th',76,'8/28/2015 7:50','San Francisco Caltrain (Townsend at 4th)',70,407,'Subscriber',94117); +INSERT INTO "trip" VALUES(909256,805,'8/28/2015 7:44','Steuart at Market',74,'8/28/2015 7:57','Townsend at 7th',65,462,'Subscriber',94965); +INSERT INTO "trip" VALUES(909257,345,'8/28/2015 7:44','San Jose Diridon Caltrain Station',2,'8/28/2015 7:49','San Pedro Square',6,250,'Subscriber',94002); +INSERT INTO "trip" VALUES(909259,650,'8/28/2015 7:45','Golden Gate at Polk',59,'8/28/2015 7:56','San Francisco Caltrain 2 (330 Townsend)',69,484,'Subscriber',94109); +INSERT INTO "trip" VALUES(909260,448,'8/28/2015 7:45','Market at Sansome',77,'8/28/2015 7:53','2nd at Townsend',61,628,'Subscriber',94401); +INSERT INTO "trip" VALUES(909261,594,'8/28/2015 7:45','2nd at Townsend',61,'8/28/2015 7:55','Harry Bridges Plaza (Ferry Building)',50,434,'Subscriber',94107); +INSERT INTO "trip" VALUES(909262,283,'8/28/2015 7:46','Evelyn Park and Ride',30,'8/28/2015 7:50','Mountain View Caltrain Station',28,251,'Subscriber',94041); +INSERT INTO "trip" VALUES(909264,514,'8/28/2015 7:46','Temporary Transbay Terminal (Howard at Beale)',55,'8/28/2015 7:54','Embarcadero at Sansome',60,383,'Subscriber',94105); +INSERT INTO "trip" VALUES(909265,359,'8/28/2015 7:46','Embarcadero at Sansome',60,'8/28/2015 7:52','Beale at Market',56,632,'Subscriber',94111); +INSERT INTO "trip" VALUES(909266,263,'8/28/2015 7:46','Castro Street and El Camino Real',32,'8/28/2015 7:50','Mountain View Caltrain Station',28,263,'Subscriber',94022); +INSERT INTO "trip" VALUES(909267,711,'8/28/2015 7:46','Beale at Market',56,'8/28/2015 7:58','San Francisco Caltrain (Townsend at 4th)',70,585,'Customer',94121); +INSERT INTO "trip" VALUES(909268,462,'8/28/2015 7:47','Howard at 2nd',63,'8/28/2015 7:54','San Francisco Caltrain (Townsend at 4th)',70,378,'Subscriber',94105); +INSERT INTO "trip" VALUES(909269,868,'8/28/2015 7:47','San Francisco Caltrain 2 (330 Townsend)',69,'8/28/2015 8:01','Harry Bridges Plaza (Ferry Building)',50,619,'Subscriber',94107); +INSERT INTO "trip" VALUES(909270,701,'8/28/2015 7:47','San Francisco Caltrain (Townsend at 4th)',70,'8/28/2015 7:58','Davis at Jackson',42,236,'Subscriber',94030); +INSERT INTO "trip" VALUES(909271,573,'8/28/2015 7:47','San Francisco Caltrain (Townsend at 4th)',70,'8/28/2015 7:57','Beale at Market',56,566,'Subscriber',94303); +INSERT INTO "trip" VALUES(909272,550,'8/28/2015 7:47','San Francisco Caltrain 2 (330 Townsend)',69,'8/28/2015 7:56','Beale at Market',56,356,'Subscriber',95136); +INSERT INTO "trip" VALUES(909273,390,'8/28/2015 7:47','San Pedro Square',6,'8/28/2015 7:54','MLK Library',11,641,'Subscriber',95110); +INSERT INTO "trip" VALUES(909274,296,'8/28/2015 7:47','Embarcadero at Sansome',60,'8/28/2015 7:52','Davis at Jackson',42,672,'Subscriber',94133); +INSERT INTO "trip" VALUES(909275,708,'8/28/2015 7:48','San Francisco Caltrain (Townsend at 4th)',70,'8/28/2015 7:59','Mechanics Plaza (Market at Battery)',75,288,'Subscriber',94040); +INSERT INTO "trip" VALUES(909276,616,'8/28/2015 7:48','San Francisco Caltrain 2 (330 Townsend)',69,'8/28/2015 7:58','Market at 10th',67,478,'Subscriber',94582); +INSERT INTO "trip" VALUES(909277,484,'8/28/2015 7:45','2nd at Folsom',62,'8/28/2015 7:53','San Francisco Caltrain (Townsend at 4th)',70,418,'Subscriber',94549); +INSERT INTO "trip" VALUES(909278,927,'8/28/2015 7:48','San Francisco Caltrain (Townsend at 4th)',70,'8/28/2015 8:03','Golden Gate at Polk',59,431,'Subscriber',94087); +INSERT INTO "trip" VALUES(909279,705,'8/28/2015 7:48','San Francisco Caltrain (Townsend at 4th)',70,'8/28/2015 8:00','Clay at Battery',41,529,'Subscriber',94065); +INSERT INTO "trip" VALUES(909280,169,'8/28/2015 7:49','Townsend at 7th',65,'8/28/2015 7:51','San Francisco Caltrain 2 (330 Townsend)',69,511,'Subscriber',94103); +INSERT INTO "trip" VALUES(909281,634,'8/28/2015 7:49','San Francisco Caltrain (Townsend at 4th)',70,'8/28/2015 8:00','Market at Sansome',77,266,'Subscriber',95122); +INSERT INTO "trip" VALUES(909282,221,'8/28/2015 7:49','San Francisco Caltrain 2 (330 Townsend)',69,'8/28/2015 7:53','Townsend at 7th',65,500,'Subscriber',94043); +INSERT INTO "trip" VALUES(909283,864,'8/28/2015 7:49','San Francisco Caltrain (Townsend at 4th)',70,'8/28/2015 8:04','Steuart at Market',74,329,'Subscriber',95134); +INSERT INTO "trip" VALUES(909284,566,'8/28/2015 7:49','San Salvador at 1st',8,'8/28/2015 7:59','San Jose Diridon Caltrain Station',2,488,'Subscriber',95112); +INSERT INTO "trip" VALUES(909285,448,'8/28/2015 7:49','2nd at Townsend',61,'8/28/2015 7:57','Spear at Folsom',49,401,'Subscriber',89451); +INSERT INTO "trip" VALUES(909286,362,'8/28/2015 7:50','San Jose Diridon Caltrain Station',2,'8/28/2015 7:56','San Pedro Square',6,646,'Subscriber',95377); +INSERT INTO "trip" VALUES(909287,1244,'8/28/2015 7:50','Powell at Post (Union Square)',71,'8/28/2015 8:11','San Francisco Caltrain 2 (330 Townsend)',69,456,'Subscriber',94109); +INSERT INTO "trip" VALUES(909288,848,'8/28/2015 7:50','San Francisco Caltrain (Townsend at 4th)',70,'8/28/2015 8:04','Harry Bridges Plaza (Ferry Building)',50,586,'Subscriber',93401); +INSERT INTO "trip" VALUES(909289,250,'8/28/2015 7:51','Mountain View Caltrain Station',28,'8/28/2015 7:55','Evelyn Park and Ride',30,251,'Subscriber',94111); +INSERT INTO "trip" VALUES(909290,922,'8/28/2015 7:51','San Francisco Caltrain (Townsend at 4th)',70,'8/28/2015 8:06','Davis at Jackson',42,407,'Subscriber',94040); +INSERT INTO "trip" VALUES(909291,551,'8/28/2015 7:51','Market at 10th',67,'8/28/2015 8:00','Market at Sansome',77,300,'Subscriber',94102); +INSERT INTO "trip" VALUES(909292,394,'8/28/2015 7:51','2nd at Townsend',61,'8/28/2015 7:58','Harry Bridges Plaza (Ferry Building)',50,592,'Subscriber',94107); +INSERT INTO "trip" VALUES(909293,628,'8/28/2015 7:52','San Francisco Caltrain 2 (330 Townsend)',69,'8/28/2015 8:02','Temporary Transbay Terminal (Howard at Beale)',55,511,'Subscriber',94030); +INSERT INTO "trip" VALUES(909294,473,'8/28/2015 7:52','Santa Clara at Almaden',4,'8/28/2015 7:59','San Jose Diridon Caltrain Station',2,213,'Subscriber',95110); +INSERT INTO "trip" VALUES(909295,489,'8/28/2015 7:52','San Francisco Caltrain (Townsend at 4th)',70,'8/28/2015 8:00','Embarcadero at Folsom',51,469,'Subscriber',94062); +INSERT INTO "trip" VALUES(909296,397,'8/28/2015 7:53','Civic Center BART (7th at Market)',72,'8/28/2015 8:00','Townsend at 7th',65,137,'Subscriber',94598); +INSERT INTO "trip" VALUES(909298,273,'8/28/2015 7:54','5th at Howard',57,'8/28/2015 7:58','Market at Sansome',77,555,'Subscriber',94107); +INSERT INTO "trip" VALUES(909299,163,'8/28/2015 7:54','Market at 4th',76,'8/28/2015 7:56','Yerba Buena Center of the Arts (3rd @ Howard)',68,594,'Subscriber',94707); +INSERT INTO "trip" VALUES(909300,313,'8/28/2015 7:55','Spear at Folsom',49,'8/28/2015 8:00','2nd at South Park',64,320,'Subscriber',94105); +INSERT INTO "trip" VALUES(909301,410,'8/28/2015 7:55','Grant Avenue at Columbus Avenue',73,'8/28/2015 8:02','Market at 4th',76,498,'Subscriber',94133); +INSERT INTO "trip" VALUES(909302,1299,'8/28/2015 7:55','Temporary Transbay Terminal (Howard at Beale)',55,'8/28/2015 8:17','San Francisco Caltrain 2 (330 Townsend)',69,570,'Subscriber',94608); +INSERT INTO "trip" VALUES(909303,1030,'8/28/2015 7:56','Grant Avenue at Columbus Avenue',73,'8/28/2015 8:13','San Francisco Caltrain (Townsend at 4th)',70,465,'Subscriber',94133); +INSERT INTO "trip" VALUES(909304,722,'8/28/2015 7:57','Japantown',9,'8/28/2015 8:09','San Jose Diridon Caltrain Station',2,51,'Subscriber',94111); +INSERT INTO "trip" VALUES(909305,329,'8/28/2015 7:57','Temporary Transbay Terminal (Howard at Beale)',55,'8/28/2015 8:03','Market at Sansome',77,618,'Subscriber',94618); +INSERT INTO "trip" VALUES(909306,673,'8/28/2015 7:57','Redwood City Caltrain Station',22,'8/28/2015 8:08','Stanford in Redwood City',25,294,'Subscriber',95037); +INSERT INTO "trip" VALUES(909308,429,'8/28/2015 7:59','Embarcadero at Folsom',51,'8/28/2015 8:06','San Francisco Caltrain (Townsend at 4th)',70,413,'Subscriber',94105); +INSERT INTO "trip" VALUES(909309,1208,'8/28/2015 7:59','2nd at Townsend',61,'8/28/2015 8:19','Townsend at 7th',65,628,'Subscriber',94107); +INSERT INTO "trip" VALUES(909310,242,'8/28/2015 7:59','Howard at 2nd',63,'8/28/2015 8:03','2nd at South Park',64,603,'Subscriber',94549); +INSERT INTO "trip" VALUES(909311,511,'8/28/2015 8:00','Steuart at Market',74,'8/28/2015 8:08','2nd at South Park',64,366,'Subscriber',94601); +INSERT INTO "trip" VALUES(909313,592,'8/28/2015 8:01','Harry Bridges Plaza (Ferry Building)',50,'8/28/2015 8:11','Yerba Buena Center of the Arts (3rd @ Howard)',68,352,'Subscriber',94107); +INSERT INTO "trip" VALUES(909314,503,'8/28/2015 8:01','Harry Bridges Plaza (Ferry Building)',50,'8/28/2015 8:10','2nd at Folsom',62,506,'Subscriber',94558); +INSERT INTO "trip" VALUES(909315,530,'8/28/2015 8:02','Harry Bridges Plaza (Ferry Building)',50,'8/28/2015 8:11','2nd at South Park',64,209,'Subscriber',94510); +INSERT INTO "trip" VALUES(909316,367,'8/28/2015 8:03','Temporary Transbay Terminal (Howard at Beale)',55,'8/28/2015 8:09','Steuart at Market',74,374,'Subscriber',95620); +INSERT INTO "trip" VALUES(909317,863,'8/28/2015 8:03','2nd at Townsend',61,'8/28/2015 8:17','San Francisco Caltrain 2 (330 Townsend)',69,269,'Subscriber',94103); +INSERT INTO "trip" VALUES(909318,784,'8/28/2015 8:03','Washington at Kearny',46,'8/28/2015 8:16','2nd at South Park',64,286,'Subscriber',94133); +INSERT INTO "trip" VALUES(909319,720,'8/28/2015 8:03','Rengstorff Avenue / California Street',33,'8/28/2015 8:15','Mountain View Caltrain Station',28,693,'Subscriber',94040); +INSERT INTO "trip" VALUES(909321,316,'8/28/2015 8:04','Grant Avenue at Columbus Avenue',73,'8/28/2015 8:09','Clay at Battery',41,521,'Subscriber',94133); +INSERT INTO "trip" VALUES(909322,639,'8/28/2015 8:05','South Van Ness at Market',66,'8/28/2015 8:16','Market at Sansome',77,342,'Subscriber',94117); +INSERT INTO "trip" VALUES(909324,719,'8/28/2015 8:06','Grant Avenue at Columbus Avenue',73,'8/28/2015 8:18','2nd at Townsend',61,567,'Subscriber',94133); +INSERT INTO "trip" VALUES(909325,350,'8/28/2015 8:06','Embarcadero at Sansome',60,'8/28/2015 8:12','Steuart at Market',74,613,'Subscriber',94109); +INSERT INTO "trip" VALUES(909326,439,'8/28/2015 8:06','Embarcadero at Bryant',54,'8/28/2015 8:14','Embarcadero at Vallejo',48,546,'Subscriber',94107); +INSERT INTO "trip" VALUES(909327,975,'8/28/2015 8:06','Spear at Folsom',49,'8/28/2015 8:23','Market at 10th',67,548,'Subscriber',94105); +INSERT INTO "trip" VALUES(909328,605,'8/28/2015 8:07','Broadway St at Battery St',82,'8/28/2015 8:17','San Francisco Caltrain (Townsend at 4th)',70,29,'Subscriber',94027); +INSERT INTO "trip" VALUES(909329,409,'8/28/2015 8:07','San Francisco Caltrain (Townsend at 4th)',70,'8/28/2015 8:13','Post at Kearny',47,378,'Subscriber',94010); +INSERT INTO "trip" VALUES(909330,870,'8/28/2015 8:07','San Francisco City Hall',58,'8/28/2015 8:22','Post at Kearny',47,501,'Subscriber',94117); +INSERT INTO "trip" VALUES(909331,801,'8/28/2015 8:07','San Francisco Caltrain (Townsend at 4th)',70,'8/28/2015 8:21','Embarcadero at Vallejo',48,413,'Subscriber',94025); +INSERT INTO "trip" VALUES(909332,490,'8/28/2015 8:07','San Francisco Caltrain 2 (330 Townsend)',69,'8/28/2015 8:15','5th at Howard',57,290,'Subscriber',94401); +INSERT INTO "trip" VALUES(909333,696,'8/28/2015 8:07','San Francisco Caltrain 2 (330 Townsend)',69,'8/28/2015 8:19','Townsend at 7th',65,484,'Subscriber',94301); +INSERT INTO "trip" VALUES(909334,680,'8/28/2015 8:08','San Francisco Caltrain 2 (330 Townsend)',69,'8/28/2015 8:19','Market at Sansome',77,537,'Subscriber',94402); +INSERT INTO "trip" VALUES(909335,307,'8/28/2015 8:08','2nd at Townsend',61,'8/28/2015 8:13','San Francisco Caltrain (Townsend at 4th)',70,524,'Subscriber',94107); +INSERT INTO "trip" VALUES(909336,596,'8/28/2015 8:08','San Jose Diridon Caltrain Station',2,'8/28/2015 8:18','MLK Library',11,78,'Subscriber',94110); +INSERT INTO "trip" VALUES(909337,537,'8/28/2015 8:08','San Francisco Caltrain (Townsend at 4th)',70,'8/28/2015 8:17','Embarcadero at Folsom',51,432,'Subscriber',94070); +INSERT INTO "trip" VALUES(909338,512,'8/28/2015 8:08','Temporary Transbay Terminal (Howard at Beale)',55,'8/28/2015 8:17','San Francisco Caltrain (Townsend at 4th)',70,511,'Subscriber',94602); +INSERT INTO "trip" VALUES(909340,568,'8/28/2015 8:08','Market at 4th',76,'8/28/2015 8:18','South Van Ness at Market',66,498,'Subscriber',94108); +INSERT INTO "trip" VALUES(909341,367,'8/28/2015 8:08','Embarcadero at Bryant',54,'8/28/2015 8:15','San Francisco Caltrain (Townsend at 4th)',70,609,'Subscriber',94105); +INSERT INTO "trip" VALUES(909342,409,'8/28/2015 8:09','San Francisco Caltrain (Townsend at 4th)',70,'8/28/2015 8:16','Howard at 2nd',63,259,'Subscriber',94062); +INSERT INTO "trip" VALUES(909343,289,'8/28/2015 8:09','Steuart at Market',74,'8/28/2015 8:14','Broadway St at Battery St',82,560,'Subscriber',94702); +INSERT INTO "trip" VALUES(909344,1155,'8/28/2015 8:09','San Francisco Caltrain 2 (330 Townsend)',69,'8/28/2015 8:28','Commercial at Montgomery',45,187,'Subscriber',94070); +INSERT INTO "trip" VALUES(909345,712,'8/28/2015 8:09','San Francisco Caltrain (Townsend at 4th)',70,'8/28/2015 8:21','Market at 10th',67,418,'Subscriber',94401); +INSERT INTO "trip" VALUES(909346,305,'8/28/2015 8:10','Temporary Transbay Terminal (Howard at Beale)',55,'8/28/2015 8:15','2nd at Townsend',61,375,'Subscriber',94602); +INSERT INTO "trip" VALUES(909348,773,'8/28/2015 8:09','San Francisco Caltrain (Townsend at 4th)',70,'8/28/2015 8:22','Mechanics Plaza (Market at Battery)',75,585,'Subscriber',94089); +INSERT INTO "trip" VALUES(909349,501,'8/28/2015 8:10','San Francisco Caltrain 2 (330 Townsend)',69,'8/28/2015 8:18','5th at Howard',57,574,'Subscriber',95070); +INSERT INTO "trip" VALUES(909350,968,'8/28/2015 8:10','San Francisco Caltrain (Townsend at 4th)',70,'8/28/2015 8:26','Davis at Jackson',42,454,'Subscriber',95014); +INSERT INTO "trip" VALUES(909351,660,'8/28/2015 8:10','San Francisco Caltrain (Townsend at 4th)',70,'8/28/2015 8:21','Harry Bridges Plaza (Ferry Building)',50,403,'Subscriber',95148); +INSERT INTO "trip" VALUES(909352,677,'8/28/2015 8:10','San Francisco Caltrain (Townsend at 4th)',70,'8/28/2015 8:22','Harry Bridges Plaza (Ferry Building)',50,709,'Subscriber',94010); +INSERT INTO "trip" VALUES(909353,644,'8/28/2015 8:10','San Francisco Caltrain 2 (330 Townsend)',69,'8/28/2015 8:21','Embarcadero at Folsom',51,436,'Subscriber',94306); +INSERT INTO "trip" VALUES(909354,433,'8/28/2015 8:11','Embarcadero at Sansome',60,'8/28/2015 8:18','Mechanics Plaza (Market at Battery)',75,347,'Subscriber',94133); +INSERT INTO "trip" VALUES(909355,780,'8/28/2015 8:11','San Francisco Caltrain 2 (330 Townsend)',69,'8/28/2015 8:24','Temporary Transbay Terminal (Howard at Beale)',55,491,'Subscriber',95118); +INSERT INTO "trip" VALUES(909356,590,'8/28/2015 8:11','San Francisco Caltrain 2 (330 Townsend)',69,'8/28/2015 8:21','Embarcadero at Folsom',51,526,'Subscriber',95054); +INSERT INTO "trip" VALUES(909357,366,'8/28/2015 8:11','Evelyn Park and Ride',30,'8/28/2015 8:17','Mountain View Caltrain Station',28,639,'Subscriber',94040); +INSERT INTO "trip" VALUES(909358,126,'8/28/2015 8:11','Market at Sansome',77,'8/28/2015 8:13','Howard at 2nd',63,555,'Subscriber',94114); +INSERT INTO "trip" VALUES(909359,263,'8/28/2015 8:11','Steuart at Market',74,'8/28/2015 8:16','Embarcadero at Vallejo',48,374,'Subscriber',94608); +INSERT INTO "trip" VALUES(909360,574,'8/28/2015 8:11','San Francisco Caltrain 2 (330 Townsend)',69,'8/28/2015 8:21','Embarcadero at Folsom',51,355,'Subscriber',94061); +INSERT INTO "trip" VALUES(909361,474,'8/28/2015 8:11','Temporary Transbay Terminal (Howard at Beale)',55,'8/28/2015 8:19','Commercial at Montgomery',45,325,'Subscriber',94530); +INSERT INTO "trip" VALUES(909362,1354,'8/28/2015 8:12','San Francisco Caltrain 2 (330 Townsend)',69,'8/28/2015 8:34','Davis at Jackson',42,271,'Subscriber',94111); +INSERT INTO "trip" VALUES(909363,993,'8/28/2015 8:12','San Francisco Caltrain (Townsend at 4th)',70,'8/28/2015 8:28','Mechanics Plaza (Market at Battery)',75,415,'Subscriber',95054); +INSERT INTO "trip" VALUES(909364,594,'8/28/2015 8:12','San Francisco Caltrain 2 (330 Townsend)',69,'8/28/2015 8:22','Steuart at Market',74,517,'Subscriber',94061); +INSERT INTO "trip" VALUES(909365,338,'8/28/2015 8:12','Harry Bridges Plaza (Ferry Building)',50,'8/28/2015 8:17','2nd at Folsom',62,592,'Subscriber',94949); +INSERT INTO "trip" VALUES(909366,459,'8/28/2015 8:12','Harry Bridges Plaza (Ferry Building)',50,'8/28/2015 8:20','2nd at Townsend',61,586,'Subscriber',94904); +INSERT INTO "trip" VALUES(909367,558,'8/28/2015 8:12','San Francisco Caltrain 2 (330 Townsend)',69,'8/28/2015 8:21','Yerba Buena Center of the Arts (3rd @ Howard)',68,392,'Subscriber',94087); +INSERT INTO "trip" VALUES(909368,613,'8/28/2015 8:12','San Francisco Caltrain 2 (330 Townsend)',69,'8/28/2015 8:22','Civic Center BART (7th at Market)',72,456,'Subscriber',94062); +INSERT INTO "trip" VALUES(909369,462,'8/28/2015 8:12','Harry Bridges Plaza (Ferry Building)',50,'8/28/2015 8:20','San Francisco Caltrain (Townsend at 4th)',70,434,'Subscriber',94925); +INSERT INTO "trip" VALUES(909370,951,'8/28/2015 8:12','San Francisco Caltrain 2 (330 Townsend)',69,'8/28/2015 8:28','Embarcadero at Vallejo',48,260,'Subscriber',95128); +INSERT INTO "trip" VALUES(909371,467,'8/28/2015 8:13','Temporary Transbay Terminal (Howard at Beale)',55,'8/28/2015 8:21','5th at Howard',57,285,'Subscriber',94170); +INSERT INTO "trip" VALUES(909372,265,'8/28/2015 8:13','2nd at Folsom',62,'8/28/2015 8:18','5th at Howard',57,625,'Subscriber',94105); +INSERT INTO "trip" VALUES(909373,786,'8/28/2015 8:14','San Francisco Caltrain (Townsend at 4th)',70,'8/28/2015 8:27','Broadway St at Battery St',82,465,'Subscriber',95130); +INSERT INTO "trip" VALUES(909374,621,'8/28/2015 8:14','San Francisco Caltrain (Townsend at 4th)',70,'8/28/2015 8:24','Market at Sansome',77,524,'Subscriber',94010); +INSERT INTO "trip" VALUES(909375,456,'8/28/2015 8:14','Powell at Post (Union Square)',71,'8/28/2015 8:22','Harry Bridges Plaza (Ferry Building)',50,409,'Subscriber',94111); +INSERT INTO "trip" VALUES(909376,492,'8/28/2015 8:15','Powell at Post (Union Square)',71,'8/28/2015 8:23','2nd at South Park',64,606,'Subscriber',94108); +INSERT INTO "trip" VALUES(909377,476,'8/28/2015 8:15','2nd at Townsend',61,'8/28/2015 8:23','Harry Bridges Plaza (Ferry Building)',50,375,'Subscriber',94002); +INSERT INTO "trip" VALUES(909378,768,'8/28/2015 8:16','Harry Bridges Plaza (Ferry Building)',50,'8/28/2015 8:29','2nd at Townsend',61,619,'Subscriber',94960); +INSERT INTO "trip" VALUES(909379,473,'8/28/2015 8:17','Grant Avenue at Columbus Avenue',73,'8/28/2015 8:24','Temporary Transbay Terminal (Howard at Beale)',55,485,'Subscriber',94133); +INSERT INTO "trip" VALUES(909380,482,'8/28/2015 8:17','2nd at Townsend',61,'8/28/2015 8:25','Steuart at Market',74,361,'Subscriber',94070); +INSERT INTO "trip" VALUES(909381,917,'8/28/2015 8:17','San Francisco Caltrain (Townsend at 4th)',70,'8/28/2015 8:33','Harry Bridges Plaza (Ferry Building)',50,609,'Subscriber',94087); +INSERT INTO "trip" VALUES(909382,634,'8/28/2015 8:18','2nd at Folsom',62,'8/28/2015 8:28','Civic Center BART (7th at Market)',72,687,'Subscriber',94105); +INSERT INTO "trip" VALUES(909383,624,'8/28/2015 8:18','2nd at Folsom',62,'8/28/2015 8:28','Civic Center BART (7th at Market)',72,506,'Subscriber',94105); +INSERT INTO "trip" VALUES(909384,1210,'8/28/2015 8:18','Market at 4th',76,'8/28/2015 8:38','Embarcadero at Sansome',60,502,'Subscriber',94122); +INSERT INTO "trip" VALUES(909385,267,'8/28/2015 8:18','SJSU - San Salvador at 9th',16,'8/28/2015 8:22','Paseo de San Antonio',7,714,'Subscriber',95112); +INSERT INTO "trip" VALUES(909386,399,'8/28/2015 8:18','Embarcadero at Bryant',54,'8/28/2015 8:25','Mechanics Plaza (Market at Battery)',75,394,'Subscriber',94105); +INSERT INTO "trip" VALUES(909387,719,'8/28/2015 8:19','South Van Ness at Market',66,'8/28/2015 8:31','Beale at Market',56,569,'Subscriber',94117); +INSERT INTO "trip" VALUES(909390,562,'8/28/2015 8:19','Harry Bridges Plaza (Ferry Building)',50,'8/28/2015 8:28','2nd at South Park',64,421,'Subscriber',94920); +INSERT INTO "trip" VALUES(909393,326,'8/28/2015 8:19','Steuart at Market',74,'8/28/2015 8:25','Davis at Jackson',42,329,'Subscriber',94107); +INSERT INTO "trip" VALUES(909396,125,'8/28/2015 8:21','Steuart at Market',74,'8/28/2015 8:23','Embarcadero at Folsom',51,379,'Subscriber',94044); +INSERT INTO "trip" VALUES(909400,383,'8/28/2015 8:21','Embarcadero at Folsom',51,'8/28/2015 8:27','Embarcadero at Sansome',60,552,'Subscriber',94124); +INSERT INTO "trip" VALUES(909404,430,'8/28/2015 8:22','Civic Center BART (7th at Market)',72,'8/28/2015 8:29','Townsend at 7th',65,579,'Subscriber',94609); +INSERT INTO "trip" VALUES(909405,260,'8/28/2015 8:22','Embarcadero at Bryant',54,'8/28/2015 8:27','Embarcadero at Folsom',51,388,'Subscriber',94103); +INSERT INTO "trip" VALUES(909409,528,'8/28/2015 8:23','San Francisco Caltrain (Townsend at 4th)',70,'8/28/2015 8:32','Howard at 2nd',63,511,'Subscriber',94025); +INSERT INTO "trip" VALUES(909410,513,'8/28/2015 8:23','Golden Gate at Polk',59,'8/28/2015 8:32','Townsend at 7th',65,584,'Subscriber',94109); +INSERT INTO "trip" VALUES(909413,889,'8/28/2015 8:23','2nd at Townsend',61,'8/28/2015 8:38','Embarcadero at Sansome',60,586,'Subscriber',94089); +INSERT INTO "trip" VALUES(909414,1256,'8/28/2015 8:23','Harry Bridges Plaza (Ferry Building)',50,'8/28/2015 8:44','Market at 10th',67,516,'Subscriber',94903); +INSERT INTO "trip" VALUES(909415,603,'8/28/2015 8:23','San Francisco Caltrain (Townsend at 4th)',70,'8/28/2015 8:34','Embarcadero at Folsom',51,434,'Subscriber',94303); +INSERT INTO "trip" VALUES(909416,426,'8/28/2015 8:23','Harry Bridges Plaza (Ferry Building)',50,'8/28/2015 8:31','2nd at Townsend',61,709,'Subscriber',94903); +INSERT INTO "trip" VALUES(909417,748,'8/28/2015 8:24','San Francisco Caltrain (Townsend at 4th)',70,'8/28/2015 8:36','Harry Bridges Plaza (Ferry Building)',50,29,'Subscriber',94086); +INSERT INTO "trip" VALUES(909418,308,'8/28/2015 8:24','Mountain View Caltrain Station',28,'8/28/2015 8:29','Mountain View City Hall',27,706,'Subscriber',95110); +INSERT INTO "trip" VALUES(909421,728,'8/28/2015 8:24','San Francisco Caltrain (Townsend at 4th)',70,'8/28/2015 8:36','Steuart at Market',74,350,'Subscriber',94024); +INSERT INTO "trip" VALUES(909423,478,'8/28/2015 8:24','San Francisco Caltrain 2 (330 Townsend)',69,'8/28/2015 8:32','Temporary Transbay Terminal (Howard at Beale)',55,269,'Subscriber',94062); +INSERT INTO "trip" VALUES(909424,433,'8/28/2015 8:24','Temporary Transbay Terminal (Howard at Beale)',55,'8/28/2015 8:32','Embarcadero at Vallejo',48,491,'Subscriber',94602); +INSERT INTO "trip" VALUES(909427,422,'8/28/2015 8:25','Steuart at Market',74,'8/28/2015 8:32','2nd at Townsend',61,86,'Subscriber',94107); +INSERT INTO "trip" VALUES(909428,498,'8/28/2015 8:25','Harry Bridges Plaza (Ferry Building)',50,'8/28/2015 8:34','2nd at South Park',64,375,'Subscriber',94960); +INSERT INTO "trip" VALUES(909432,339,'8/28/2015 8:26','Steuart at Market',74,'8/28/2015 8:32','Howard at 2nd',63,517,'Subscriber',94115); +INSERT INTO "trip" VALUES(909433,567,'8/28/2015 8:27','Grant Avenue at Columbus Avenue',73,'8/28/2015 8:36','Market at Sansome',77,556,'Subscriber',94133); +INSERT INTO "trip" VALUES(909434,347,'8/28/2015 8:27','Beale at Market',56,'8/28/2015 8:32','Broadway St at Battery St',82,504,'Subscriber',94610); +INSERT INTO "trip" VALUES(909435,605,'8/28/2015 8:27','Steuart at Market',74,'8/28/2015 8:37','2nd at Townsend',61,359,'Subscriber',94904); +INSERT INTO "trip" VALUES(909436,278,'8/28/2015 8:27','Steuart at Market',74,'8/28/2015 8:32','Clay at Battery',41,508,'Subscriber',94305); +INSERT INTO "trip" VALUES(909437,278,'8/28/2015 8:27','Howard at 2nd',63,'8/28/2015 8:32','Market at 4th',76,259,'Subscriber',94105); +INSERT INTO "trip" VALUES(909438,517,'8/28/2015 8:28','2nd at Townsend',61,'8/28/2015 8:37','Steuart at Market',74,321,'Subscriber',95120); +INSERT INTO "trip" VALUES(909439,718,'8/28/2015 8:29','2nd at Townsend',61,'8/28/2015 8:41','Howard at 2nd',63,527,'Subscriber',94040); +INSERT INTO "trip" VALUES(909440,240,'8/28/2015 8:29','Golden Gate at Polk',59,'8/28/2015 8:33','Market at 10th',67,334,'Subscriber',94121); +INSERT INTO "trip" VALUES(909441,461,'8/28/2015 8:29','Howard at 2nd',63,'8/28/2015 8:37','Civic Center BART (7th at Market)',72,877,'Subscriber',94602); +INSERT INTO "trip" VALUES(909442,318,'8/28/2015 8:30','2nd at South Park',64,'8/28/2015 8:35','San Francisco Caltrain (Townsend at 4th)',70,320,'Subscriber',94601); +INSERT INTO "trip" VALUES(909443,200,'8/28/2015 8:30','Evelyn Park and Ride',30,'8/28/2015 8:34','Mountain View Caltrain Station',28,107,'Subscriber',94043); +INSERT INTO "trip" VALUES(909444,298,'8/28/2015 8:31','Howard at 2nd',63,'8/28/2015 8:35','5th at Howard',57,555,'Subscriber',94610); +INSERT INTO "trip" VALUES(909445,245,'8/28/2015 8:31','Beale at Market',56,'8/28/2015 8:35','Howard at 2nd',63,632,'Subscriber',94602); +INSERT INTO "trip" VALUES(909446,550,'8/28/2015 8:32','2nd at Townsend',61,'8/28/2015 8:41','Harry Bridges Plaza (Ferry Building)',50,570,'Subscriber',94303); +INSERT INTO "trip" VALUES(909447,412,'8/28/2015 8:32','Grant Avenue at Columbus Avenue',73,'8/28/2015 8:39','Beale at Market',56,380,'Subscriber',94133); +INSERT INTO "trip" VALUES(909448,376,'8/28/2015 8:33','Broadway St at Battery St',82,'8/28/2015 8:39','Steuart at Market',74,363,'Subscriber',94133); +INSERT INTO "trip" VALUES(909449,227,'8/28/2015 8:33','Market at 4th',76,'8/28/2015 8:36','5th at Howard',57,471,'Subscriber',94103); +INSERT INTO "trip" VALUES(909450,214,'8/28/2015 8:33','Townsend at 7th',65,'8/28/2015 8:36','San Francisco Caltrain (Townsend at 4th)',70,579,'Subscriber',94107); +INSERT INTO "trip" VALUES(909452,409,'8/28/2015 8:33','Ryland Park',84,'8/28/2015 8:40','Santa Clara County Civic Center',80,249,'Subscriber',95112); +INSERT INTO "trip" VALUES(909453,246,'8/28/2015 8:34','2nd at Townsend',61,'8/28/2015 8:39','San Francisco Caltrain (Townsend at 4th)',70,86,'Subscriber',94107); +INSERT INTO "trip" VALUES(909454,217,'8/28/2015 8:34','Steuart at Market',74,'8/28/2015 8:38','Spear at Folsom',49,372,'Subscriber',94114); +INSERT INTO "trip" VALUES(909455,189,'8/28/2015 8:35','Grant Avenue at Columbus Avenue',73,'8/28/2015 8:38','Clay at Battery',41,362,'Subscriber',94111); +INSERT INTO "trip" VALUES(909456,463,'8/28/2015 8:35','Embarcadero at Bryant',54,'8/28/2015 8:43','Embarcadero at Vallejo',48,443,'Subscriber',94105); +INSERT INTO "trip" VALUES(909457,713,'8/28/2015 8:35','Townsend at 7th',65,'8/28/2015 8:47','Yerba Buena Center of the Arts (3rd @ Howard)',68,193,'Subscriber',94107); +INSERT INTO "trip" VALUES(909458,432,'8/28/2015 8:38','Market at Sansome',77,'8/28/2015 8:45','2nd at South Park',64,338,'Subscriber',94612); +INSERT INTO "trip" VALUES(909459,657,'8/28/2015 8:38','Steuart at Market',74,'8/28/2015 8:49','2nd at South Park',64,568,'Subscriber',94602); +INSERT INTO "trip" VALUES(909460,401,'8/28/2015 8:38','Powell Street BART',39,'8/28/2015 8:45','San Francisco Caltrain 2 (330 Townsend)',69,390,'Subscriber',94107); +INSERT INTO "trip" VALUES(909462,634,'8/28/2015 8:39','Temporary Transbay Terminal (Howard at Beale)',55,'8/28/2015 8:49','Grant Avenue at Columbus Avenue',73,402,'Subscriber',94708); +INSERT INTO "trip" VALUES(909463,350,'8/28/2015 8:39','Golden Gate at Polk',59,'8/28/2015 8:45','5th at Howard',57,445,'Subscriber',94109); +INSERT INTO "trip" VALUES(909464,370,'8/28/2015 8:39','Steuart at Market',74,'8/28/2015 8:45','Embarcadero at Sansome',60,321,'Subscriber',94595); +INSERT INTO "trip" VALUES(909465,461,'8/28/2015 8:39','Embarcadero at Folsom',51,'8/28/2015 8:47','2nd at Townsend',61,436,'Subscriber',94107); +INSERT INTO "trip" VALUES(909466,422,'8/28/2015 8:39','Market at Sansome',77,'8/28/2015 8:46','2nd at South Park',64,537,'Subscriber',94549); +INSERT INTO "trip" VALUES(909468,315,'8/28/2015 8:40','Steuart at Market',74,'8/28/2015 8:45','Embarcadero at Sansome',60,350,'Subscriber',94597); +INSERT INTO "trip" VALUES(909469,517,'8/28/2015 8:41','Civic Center BART (7th at Market)',72,'8/28/2015 8:49','Townsend at 7th',65,442,'Subscriber',94602); +INSERT INTO "trip" VALUES(909470,483,'8/28/2015 8:41','Embarcadero at Folsom',51,'8/28/2015 8:50','2nd at South Park',64,353,'Subscriber',94105); +INSERT INTO "trip" VALUES(909471,241,'8/28/2015 8:42','5th at Howard',57,'8/28/2015 8:46','Civic Center BART (7th at Market)',72,471,'Customer',78233); +INSERT INTO "trip" VALUES(909472,413,'8/28/2015 8:42','Embarcadero at Folsom',51,'8/28/2015 8:49','2nd at Townsend',61,469,'Subscriber',94563); +INSERT INTO "trip" VALUES(909473,433,'8/28/2015 8:42','Beale at Market',56,'8/28/2015 8:49','Broadway St at Battery St',82,419,'Subscriber',94114); +INSERT INTO "trip" VALUES(909474,596,'8/28/2015 8:43','San Pedro Square',6,'8/28/2015 8:53','Santa Clara County Civic Center',80,250,'Subscriber',95110); +INSERT INTO "trip" VALUES(909475,427,'8/28/2015 8:43','Embarcadero at Bryant',54,'8/28/2015 8:50','Mechanics Plaza (Market at Battery)',75,507,'Subscriber',94105); +INSERT INTO "trip" VALUES(909476,529,'8/28/2015 8:43','Embarcadero at Bryant',54,'8/28/2015 8:52','Mechanics Plaza (Market at Battery)',75,16,'Subscriber',94105); +INSERT INTO "trip" VALUES(909477,637,'8/28/2015 8:44','Market at 10th',67,'8/28/2015 8:54','Beale at Market',56,334,'Subscriber',94103); +INSERT INTO "trip" VALUES(909478,1039,'8/28/2015 8:43','Clay at Battery',41,'8/28/2015 9:01','San Francisco Caltrain 2 (330 Townsend)',69,521,'Subscriber',94111); +INSERT INTO "trip" VALUES(909482,685,'8/28/2015 8:45','Steuart at Market',74,'8/28/2015 8:56','2nd at Townsend',61,613,'Subscriber',94539); +INSERT INTO "trip" VALUES(909485,591,'8/28/2015 8:46','San Francisco Caltrain 2 (330 Townsend)',69,'8/28/2015 8:56','5th at Howard',57,500,'Customer','nil'); +INSERT INTO "trip" VALUES(909486,557,'8/28/2015 8:46','San Francisco Caltrain 2 (330 Townsend)',69,'8/28/2015 8:56','5th at Howard',57,386,'Customer','nil'); +INSERT INTO "trip" VALUES(909487,237,'8/28/2015 8:47','San Jose Diridon Caltrain Station',2,'8/28/2015 8:50','Santa Clara at Almaden',4,117,'Subscriber',95126); +INSERT INTO "trip" VALUES(909488,385,'8/28/2015 8:47','Powell at Post (Union Square)',71,'8/28/2015 8:53','Mechanics Plaza (Market at Battery)',75,287,'Subscriber',94941); +INSERT INTO "trip" VALUES(909489,565,'8/28/2015 8:47','San Francisco Caltrain 2 (330 Townsend)',69,'8/28/2015 8:56','Powell Street BART',39,505,'Subscriber',94158); +INSERT INTO "trip" VALUES(909490,471,'8/28/2015 8:47','Powell at Post (Union Square)',71,'8/28/2015 8:55','San Francisco Caltrain 2 (330 Townsend)',69,358,'Subscriber',94108); +INSERT INTO "trip" VALUES(909495,796,'8/28/2015 8:47','Harry Bridges Plaza (Ferry Building)',50,'8/28/2015 9:01','San Francisco Caltrain (Townsend at 4th)',70,389,'Subscriber',94591); +INSERT INTO "trip" VALUES(909496,319,'8/28/2015 8:48','2nd at Folsom',62,'8/28/2015 8:53','2nd at Townsend',61,327,'Subscriber',94110); +INSERT INTO "trip" VALUES(909497,482,'8/28/2015 8:48','Spear at Folsom',49,'8/28/2015 8:56','Market at 4th',76,158,'Subscriber',94105); +INSERT INTO "trip" VALUES(909498,476,'8/28/2015 8:48','Powell Street BART',39,'8/28/2015 8:56','Beale at Market',56,134,'Subscriber',94107); +INSERT INTO "trip" VALUES(909502,777,'8/28/2015 8:48','Powell at Post (Union Square)',71,'8/28/2015 9:01','Davis at Jackson',42,189,'Subscriber',94109); +INSERT INTO "trip" VALUES(909503,540,'8/28/2015 8:48','Embarcadero at Bryant',54,'8/28/2015 8:57','Steuart at Market',74,487,'Subscriber',94105); +INSERT INTO "trip" VALUES(909504,386,'8/28/2015 8:48','Castro Street and El Camino Real',32,'8/28/2015 8:55','Mountain View Caltrain Station',28,90,'Subscriber',94040); +INSERT INTO "trip" VALUES(909505,453,'8/28/2015 8:48','Harry Bridges Plaza (Ferry Building)',50,'8/28/2015 8:56','2nd at Townsend',61,609,'Subscriber',94591); +INSERT INTO "trip" VALUES(909506,727,'8/28/2015 8:48','Townsend at 7th',65,'8/28/2015 9:01','2nd at Folsom',62,584,'Subscriber',94107); +INSERT INTO "trip" VALUES(909508,325,'8/28/2015 8:49','Mountain View Caltrain Station',28,'8/28/2015 8:55','Castro Street and El Camino Real',32,48,'Subscriber',94105); +INSERT INTO "trip" VALUES(909509,398,'8/28/2015 8:49','Temporary Transbay Terminal (Howard at Beale)',55,'8/28/2015 8:56','2nd at Townsend',61,630,'Customer',94123); +INSERT INTO "trip" VALUES(909510,453,'8/28/2015 8:49','Market at Sansome',77,'8/28/2015 8:57','2nd at South Park',64,556,'Subscriber',94606); +INSERT INTO "trip" VALUES(909511,365,'8/28/2015 8:50','Embarcadero at Folsom',51,'8/28/2015 8:56','Embarcadero at Vallejo',48,355,'Subscriber',94602); +INSERT INTO "trip" VALUES(909516,569,'8/28/2015 8:50','San Francisco Caltrain (Townsend at 4th)',70,'8/28/2015 8:59','Market at Sansome',77,137,'Subscriber',94303); +INSERT INTO "trip" VALUES(909517,789,'8/28/2015 8:50','San Francisco Caltrain 2 (330 Townsend)',69,'8/28/2015 9:03','Mechanics Plaza (Market at Battery)',75,484,'Subscriber',94301); +INSERT INTO "trip" VALUES(909518,682,'8/28/2015 8:50','SJSU 4th at San Carlos',12,'8/28/2015 9:02','Santa Clara at Almaden',4,164,'Subscriber',95054); +INSERT INTO "trip" VALUES(909519,880,'8/28/2015 8:50','San Francisco Caltrain (Townsend at 4th)',70,'8/28/2015 9:05','Temporary Transbay Terminal (Howard at Beale)',55,579,'Subscriber',95008); +INSERT INTO "trip" VALUES(909520,693,'8/28/2015 8:51','San Francisco Caltrain (Townsend at 4th)',70,'8/28/2015 9:02','Harry Bridges Plaza (Ferry Building)',50,86,'Subscriber',94062); +INSERT INTO "trip" VALUES(909521,751,'8/28/2015 8:51','San Francisco Caltrain (Townsend at 4th)',70,'8/28/2015 9:03','Market at Sansome',77,510,'Subscriber',94002); +INSERT INTO "trip" VALUES(909524,683,'8/28/2015 8:51','San Francisco Caltrain 2 (330 Townsend)',69,'8/28/2015 9:02','Market at 10th',67,368,'Subscriber',94404); +INSERT INTO "trip" VALUES(909525,339,'8/28/2015 8:51','San Francisco Caltrain 2 (330 Townsend)',69,'8/28/2015 8:57','Yerba Buena Center of the Arts (3rd @ Howard)',68,67,'Subscriber',94041); +INSERT INTO "trip" VALUES(909526,230,'8/28/2015 8:52','San Francisco Caltrain 2 (330 Townsend)',69,'8/28/2015 8:56','Townsend at 7th',65,628,'Subscriber',94040); +INSERT INTO "trip" VALUES(909527,1062,'8/28/2015 8:52','San Francisco Caltrain (Townsend at 4th)',70,'8/28/2015 9:10','Market at Sansome',77,340,'Subscriber',94087); +INSERT INTO "trip" VALUES(909528,394,'8/28/2015 8:52','Powell Street BART',39,'8/28/2015 8:59','San Francisco Caltrain (Townsend at 4th)',70,530,'Subscriber',2780); +INSERT INTO "trip" VALUES(909529,257,'8/28/2015 8:53','San Francisco Caltrain 2 (330 Townsend)',69,'8/28/2015 8:57','Townsend at 7th',65,390,'Subscriber',94065); +INSERT INTO "trip" VALUES(909531,916,'8/28/2015 8:53','Rengstorff Avenue / California Street',33,'8/28/2015 9:08','Mountain View Caltrain Station',28,123,'Subscriber',94040); +INSERT INTO "trip" VALUES(909533,519,'8/28/2015 8:53','Steuart at Market',74,'8/28/2015 9:02','2nd at Townsend',61,331,'Subscriber',94609); +INSERT INTO "trip" VALUES(909536,538,'8/28/2015 8:53','Civic Center BART (7th at Market)',72,'8/28/2015 9:02','Townsend at 7th',65,687,'Subscriber',94551); +INSERT INTO "trip" VALUES(909537,917,'8/28/2015 8:54','San Francisco Caltrain (Townsend at 4th)',70,'8/28/2015 9:09','Steuart at Market',74,607,'Subscriber',95131); +INSERT INTO "trip" VALUES(909538,516,'8/28/2015 8:54','San Francisco Caltrain 2 (330 Townsend)',69,'8/28/2015 9:02','Howard at 2nd',63,462,'Subscriber',94403); +INSERT INTO "trip" VALUES(909539,594,'8/28/2015 8:54','San Francisco Caltrain (Townsend at 4th)',70,'8/28/2015 9:04','Steuart at Market',74,404,'Subscriber',94002); +INSERT INTO "trip" VALUES(909540,699,'8/28/2015 8:54','San Francisco Caltrain (Townsend at 4th)',70,'8/28/2015 9:06','Steuart at Market',74,320,'Subscriber',95051); +INSERT INTO "trip" VALUES(909541,705,'8/28/2015 8:54','San Francisco Caltrain (Townsend at 4th)',70,'8/28/2015 9:06','Temporary Transbay Terminal (Howard at Beale)',55,322,'Subscriber',94402); +INSERT INTO "trip" VALUES(909542,176,'8/28/2015 8:55','Palo Alto Caltrain Station',34,'8/28/2015 8:57','Cowper at University',37,689,'Subscriber',94102); +INSERT INTO "trip" VALUES(909543,754,'8/28/2015 8:55','Grant Avenue at Columbus Avenue',73,'8/28/2015 9:07','San Francisco Caltrain (Townsend at 4th)',70,402,'Subscriber',94133); +INSERT INTO "trip" VALUES(909544,356,'8/28/2015 8:55','Market at Sansome',77,'8/28/2015 9:01','2nd at Folsom',62,599,'Subscriber',94612); +INSERT INTO "trip" VALUES(909545,344,'8/28/2015 8:55','Grant Avenue at Columbus Avenue',73,'8/28/2015 9:01','Market at Sansome',77,370,'Subscriber',94133); +INSERT INTO "trip" VALUES(909547,378,'8/28/2015 8:55','2nd at Folsom',62,'8/28/2015 9:01','Clay at Battery',41,592,'Subscriber',94107); +INSERT INTO "trip" VALUES(909549,445,'8/28/2015 8:55','San Francisco Caltrain 2 (330 Townsend)',69,'8/28/2015 9:03','Post at Kearny',47,358,'Subscriber',95014); +INSERT INTO "trip" VALUES(909550,1056,'8/28/2015 8:55','San Francisco Caltrain 2 (330 Townsend)',69,'8/28/2015 9:13','Broadway St at Battery St',82,267,'Subscriber',94403); +INSERT INTO "trip" VALUES(909551,717,'8/28/2015 8:56','2nd at Townsend',61,'8/28/2015 9:07','Commercial at Montgomery',45,359,'Subscriber',94107); +INSERT INTO "trip" VALUES(909552,536,'8/28/2015 8:56','Harry Bridges Plaza (Ferry Building)',50,'8/28/2015 9:05','2nd at South Park',64,422,'Subscriber',94947); +INSERT INTO "trip" VALUES(909553,270,'8/28/2015 8:56','Steuart at Market',74,'8/28/2015 9:01','Davis at Jackson',42,361,'Subscriber',94102); +INSERT INTO "trip" VALUES(909554,172,'8/28/2015 8:57','2nd at Folsom',62,'8/28/2015 9:00','Temporary Transbay Terminal (Howard at Beale)',55,274,'Subscriber',94158); +INSERT INTO "trip" VALUES(909555,558,'8/28/2015 8:57','Market at 10th',67,'8/28/2015 9:07','Powell at Post (Union Square)',71,473,'Subscriber',94102); +INSERT INTO "trip" VALUES(909556,275,'8/28/2015 8:58','5th at Howard',57,'8/28/2015 9:02','San Francisco Caltrain 2 (330 Townsend)',69,625,'Subscriber',94107); +INSERT INTO "trip" VALUES(909557,978,'8/28/2015 8:58','Grant Avenue at Columbus Avenue',73,'8/28/2015 9:14','Civic Center BART (7th at Market)',72,575,'Subscriber',94133); +INSERT INTO "trip" VALUES(909558,278,'8/28/2015 8:58','2nd at Townsend',61,'8/28/2015 9:03','Howard at 2nd',63,356,'Subscriber',94105); +INSERT INTO "trip" VALUES(909559,582,'8/28/2015 8:58','Harry Bridges Plaza (Ferry Building)',50,'8/28/2015 9:08','2nd at South Park',64,393,'Subscriber',94587); +INSERT INTO "trip" VALUES(909560,473,'8/28/2015 8:58','Steuart at Market',74,'8/28/2015 9:06','2nd at Townsend',61,376,'Subscriber',94110); +INSERT INTO "trip" VALUES(909561,552,'8/28/2015 8:59','2nd at Townsend',61,'8/28/2015 9:08','Market at 4th',76,630,'Subscriber',94107); +INSERT INTO "trip" VALUES(909562,457,'8/28/2015 8:59','Market at Sansome',77,'8/28/2015 9:06','2nd at South Park',64,317,'Subscriber',94607); +INSERT INTO "trip" VALUES(909563,299,'8/28/2015 8:59','5th at Howard',57,'8/28/2015 9:04','Post at Kearny',47,574,'Subscriber',94107); +INSERT INTO "trip" VALUES(909567,498,'8/28/2015 8:59','San Francisco Caltrain (Townsend at 4th)',70,'8/28/2015 9:08','2nd at Folsom',62,530,'Subscriber',95008); +INSERT INTO "trip" VALUES(909568,473,'8/28/2015 8:59','5th at Howard',57,'8/28/2015 9:07','San Francisco Caltrain 2 (330 Townsend)',69,445,'Subscriber',94703); +INSERT INTO "trip" VALUES(909570,462,'8/28/2015 9:00','Redwood City Caltrain Station',22,'8/28/2015 9:07','Redwood City Medical Center',26,690,'Subscriber',94040); +INSERT INTO "trip" VALUES(909571,381,'8/28/2015 9:00','Steuart at Market',74,'8/28/2015 9:06','Howard at 2nd',63,487,'Subscriber',94903); +INSERT INTO "trip" VALUES(909572,124,'8/28/2015 9:01','Howard at 2nd',63,'8/28/2015 9:03','Market at Sansome',77,405,'Subscriber',94107); +INSERT INTO "trip" VALUES(909574,579,'8/28/2015 9:01','San Francisco Caltrain 2 (330 Townsend)',69,'8/28/2015 9:11','Embarcadero at Folsom',51,521,'Subscriber',94010); +INSERT INTO "trip" VALUES(909575,328,'8/28/2015 9:01','San Francisco Caltrain (Townsend at 4th)',70,'8/28/2015 9:07','5th at Howard',57,389,'Subscriber',94401); +INSERT INTO "trip" VALUES(909576,108,'8/28/2015 9:01','Powell Street BART',39,'8/28/2015 9:03','5th at Howard',57,505,'Subscriber',94024); +INSERT INTO "trip" VALUES(909577,836,'8/28/2015 9:02','San Francisco Caltrain 2 (330 Townsend)',69,'8/28/2015 9:16','Mechanics Plaza (Market at Battery)',75,366,'Subscriber',94002); +INSERT INTO "trip" VALUES(909578,454,'8/28/2015 9:02','Steuart at Market',74,'8/28/2015 9:09','Embarcadero at Sansome',60,427,'Subscriber',94111); +INSERT INTO "trip" VALUES(909579,560,'8/28/2015 9:02','Market at 10th',67,'8/28/2015 9:12','Yerba Buena Center of the Arts (3rd @ Howard)',68,516,'Subscriber',94102); +INSERT INTO "trip" VALUES(909580,229,'8/28/2015 9:03','San Francisco Caltrain 2 (330 Townsend)',69,'8/28/2015 9:06','Townsend at 7th',65,353,'Subscriber',94401); +INSERT INTO "trip" VALUES(909581,307,'8/28/2015 9:03','Mountain View Caltrain Station',28,'8/28/2015 9:08','Evelyn Park and Ride',30,92,'Subscriber',94133); +INSERT INTO "trip" VALUES(909582,322,'8/28/2015 9:03','Temporary Transbay Terminal (Howard at Beale)',55,'8/28/2015 9:08','Harry Bridges Plaza (Ferry Building)',50,377,'Subscriber',94608); +INSERT INTO "trip" VALUES(909583,260,'8/28/2015 9:03','Mountain View Caltrain Station',28,'8/28/2015 9:07','Mountain View City Hall',27,258,'Subscriber',94107); +INSERT INTO "trip" VALUES(909584,884,'8/28/2015 9:03','San Francisco Caltrain (Townsend at 4th)',70,'8/28/2015 9:18','Post at Kearny',47,421,'Subscriber',94401); +INSERT INTO "trip" VALUES(909585,286,'8/28/2015 9:04','San Jose Diridon Caltrain Station',2,'8/28/2015 9:08','Santa Clara at Almaden',4,488,'Subscriber',94158); +INSERT INTO "trip" VALUES(909586,274,'8/28/2015 9:04','San Jose Diridon Caltrain Station',2,'8/28/2015 9:09','Adobe on Almaden',5,680,'Subscriber',94043); +INSERT INTO "trip" VALUES(909587,747,'8/28/2015 9:04','Civic Center BART (7th at Market)',72,'8/28/2015 9:17','Temporary Transbay Terminal (Howard at Beale)',55,410,'Subscriber',94103); +INSERT INTO "trip" VALUES(909588,239,'8/28/2015 9:05','2nd at South Park',64,'8/28/2015 9:09','Howard at 2nd',63,209,'Subscriber',94107); +INSERT INTO "trip" VALUES(909589,428,'8/28/2015 9:05','2nd at Townsend',61,'8/28/2015 9:12','Temporary Transbay Terminal (Howard at Beale)',55,609,'Subscriber',95110); +INSERT INTO "trip" VALUES(909590,473,'8/28/2015 9:05','Beale at Market',56,'8/28/2015 9:13','Embarcadero at Sansome',60,134,'Subscriber',94114); +INSERT INTO "trip" VALUES(909591,549,'8/28/2015 9:05','Temporary Transbay Terminal (Howard at Beale)',55,'8/28/2015 9:15','Embarcadero at Sansome',60,624,'Subscriber',94602); +INSERT INTO "trip" VALUES(909592,471,'8/28/2015 9:05','2nd at Townsend',61,'8/28/2015 9:13','Temporary Transbay Terminal (Howard at Beale)',55,613,'Subscriber',94117); +INSERT INTO "trip" VALUES(909593,474,'8/28/2015 9:06','Embarcadero at Sansome',60,'8/28/2015 9:14','Clay at Battery',41,586,'Subscriber',94133); +INSERT INTO "trip" VALUES(909594,448,'8/28/2015 9:07','Santa Clara at Almaden',4,'8/28/2015 9:14','SJSU 4th at San Carlos',12,14,'Subscriber',95110); +INSERT INTO "trip" VALUES(909595,257,'8/28/2015 9:10','Powell at Post (Union Square)',71,'8/28/2015 9:14','Market at Sansome',77,423,'Subscriber',94109); +INSERT INTO "trip" VALUES(909596,226,'8/28/2015 9:10','Market at 4th',76,'8/28/2015 9:14','Market at Sansome',77,630,'Subscriber',94116); +INSERT INTO "trip" VALUES(909597,309,'8/28/2015 9:10','Beale at Market',56,'8/28/2015 9:15','Broadway St at Battery St',82,569,'Subscriber',94618); +INSERT INTO "trip" VALUES(909598,299,'8/28/2015 9:11','Golden Gate at Polk',59,'8/28/2015 9:16','Powell Street BART',39,453,'Subscriber',94122); +INSERT INTO "trip" VALUES(909599,596,'8/28/2015 9:11','Golden Gate at Polk',59,'8/28/2015 9:21','Beale at Market',56,431,'Subscriber',94109); +INSERT INTO "trip" VALUES(909600,140,'8/28/2015 9:11','2nd at Townsend',61,'8/28/2015 9:13','2nd at South Park',64,376,'Subscriber',94107); +INSERT INTO "trip" VALUES(909601,537,'8/28/2015 9:11','San Francisco Caltrain (Townsend at 4th)',70,'8/28/2015 9:20','Market at Sansome',77,402,'Subscriber',95134); +INSERT INTO "trip" VALUES(909602,393,'8/28/2015 9:11','Grant Avenue at Columbus Avenue',73,'8/28/2015 9:18','Temporary Transbay Terminal (Howard at Beale)',55,332,'Subscriber',94566); +INSERT INTO "trip" VALUES(909603,381,'8/28/2015 9:12','Steuart at Market',74,'8/28/2015 9:19','Broadway St at Battery St',82,404,'Subscriber',94556); +INSERT INTO "trip" VALUES(909604,1078,'8/28/2015 9:12','Temporary Transbay Terminal (Howard at Beale)',55,'8/28/2015 9:30','South Van Ness at Market',66,269,'Subscriber',94611); +INSERT INTO "trip" VALUES(909605,489,'8/28/2015 9:12','San Francisco Caltrain (Townsend at 4th)',70,'8/28/2015 9:21','Howard at 2nd',63,459,'Subscriber',94402); +INSERT INTO "trip" VALUES(909606,1076,'8/28/2015 9:13','5th at Howard',57,'8/28/2015 9:31','Davis at Jackson',42,389,'Subscriber',94107); +INSERT INTO "trip" VALUES(909607,672,'8/28/2015 9:13','Townsend at 7th',65,'8/28/2015 9:24','Powell Street BART',39,390,'Subscriber',94107); +INSERT INTO "trip" VALUES(909608,860,'8/28/2015 9:13','San Francisco Caltrain (Townsend at 4th)',70,'8/28/2015 9:28','Broadway St at Battery St',82,382,'Subscriber',95129); +INSERT INTO "trip" VALUES(909610,308,'8/28/2015 9:14','San Francisco Caltrain 2 (330 Townsend)',69,'8/28/2015 9:19','Townsend at 7th',65,445,'Subscriber',94086); +INSERT INTO "trip" VALUES(909611,839,'8/28/2015 9:14','San Francisco Caltrain (Townsend at 4th)',70,'8/28/2015 9:28','Broadway St at Battery St',82,338,'Subscriber',95111); +INSERT INTO "trip" VALUES(909612,373,'8/28/2015 9:14','Market at 4th',76,'8/28/2015 9:20','Market at 10th',67,212,'Subscriber',94109); +INSERT INTO "trip" VALUES(909613,411,'8/28/2015 9:14','2nd at Townsend',61,'8/28/2015 9:21','Townsend at 7th',65,619,'Subscriber',94602); +INSERT INTO "trip" VALUES(909615,557,'8/28/2015 9:15','Ryland Park',84,'8/28/2015 9:24','San Jose Diridon Caltrain Station',2,129,'Subscriber',95110); +INSERT INTO "trip" VALUES(909616,463,'8/28/2015 9:15','San Francisco Caltrain (Townsend at 4th)',70,'8/28/2015 9:23','Howard at 2nd',63,286,'Subscriber',94117); +INSERT INTO "trip" VALUES(909617,218,'8/28/2015 9:15','San Francisco Caltrain 2 (330 Townsend)',69,'8/28/2015 9:19','Townsend at 7th',65,606,'Subscriber',95051); +INSERT INTO "trip" VALUES(909618,716,'8/28/2015 9:15','San Francisco Caltrain (Townsend at 4th)',70,'8/28/2015 9:27','Embarcadero at Vallejo',48,494,'Subscriber',94107); +INSERT INTO "trip" VALUES(909619,304,'8/28/2015 9:16','Beale at Market',56,'8/28/2015 9:21','Broadway St at Battery St',82,566,'Subscriber',94111); +INSERT INTO "trip" VALUES(909620,444,'8/28/2015 9:16','Embarcadero at Sansome',60,'8/28/2015 9:23','Temporary Transbay Terminal (Howard at Beale)',55,549,'Subscriber',94111); +INSERT INTO "trip" VALUES(909621,310,'8/28/2015 9:16','Market at Sansome',77,'8/28/2015 9:22','2nd at South Park',64,370,'Subscriber',95973); +INSERT INTO "trip" VALUES(909622,408,'8/28/2015 9:17','Market at 4th',76,'8/28/2015 9:23','San Francisco Caltrain 2 (330 Townsend)',69,259,'Subscriber',94606); +INSERT INTO "trip" VALUES(909623,532,'8/28/2015 9:17','Market at 10th',67,'8/28/2015 9:25','Post at Kearny',47,425,'Subscriber',94102); +INSERT INTO "trip" VALUES(909624,778,'8/28/2015 9:17','Harry Bridges Plaza (Ferry Building)',50,'8/28/2015 9:30','2nd at Townsend',61,557,'Customer',94501); +INSERT INTO "trip" VALUES(909625,761,'8/28/2015 9:17','Harry Bridges Plaza (Ferry Building)',50,'8/28/2015 9:30','2nd at Townsend',61,354,'Customer',94501); +INSERT INTO "trip" VALUES(909628,353,'8/28/2015 9:18','Market at 4th',76,'8/28/2015 9:23','San Francisco Caltrain (Townsend at 4th)',70,158,'Subscriber',95054); +INSERT INTO "trip" VALUES(909629,276,'8/28/2015 9:18','Mountain View Caltrain Station',28,'8/28/2015 9:23','Castro Street and El Camino Real',32,194,'Subscriber',94401); +INSERT INTO "trip" VALUES(909630,225,'8/28/2015 9:19','Embarcadero at Vallejo',48,'8/28/2015 9:22','Embarcadero at Sansome',60,374,'Subscriber',94103); +INSERT INTO "trip" VALUES(909634,442,'8/28/2015 9:20','Harry Bridges Plaza (Ferry Building)',50,'8/28/2015 9:28','Howard at 2nd',63,409,'Subscriber',94590); +INSERT INTO "trip" VALUES(909636,2073,'8/28/2015 9:20','Market at Sansome',77,'8/28/2015 9:55','Townsend at 7th',65,387,'Subscriber',94705); +INSERT INTO "trip" VALUES(909637,543,'8/28/2015 9:21','Spear at Folsom',49,'8/28/2015 9:30','San Francisco Caltrain (Townsend at 4th)',70,563,'Subscriber',94105); +INSERT INTO "trip" VALUES(909638,488,'8/28/2015 9:21','2nd at Townsend',61,'8/28/2015 9:29','Townsend at 7th',65,327,'Subscriber',94107); +INSERT INTO "trip" VALUES(909639,393,'8/28/2015 9:22','Harry Bridges Plaza (Ferry Building)',50,'8/28/2015 9:29','2nd at Townsend',61,636,'Subscriber',94901); +INSERT INTO "trip" VALUES(909640,548,'8/28/2015 9:23','Market at Sansome',77,'8/28/2015 9:32','2nd at Townsend',61,630,'Subscriber',94608); +INSERT INTO "trip" VALUES(909642,690,'8/28/2015 9:23','San Francisco Caltrain 2 (330 Townsend)',69,'8/28/2015 9:35','Market at Sansome',77,625,'Subscriber',94105); +INSERT INTO "trip" VALUES(909643,371,'8/28/2015 9:23','Embarcadero at Sansome',60,'8/28/2015 9:29','Clay at Battery',41,578,'Subscriber',94107); +INSERT INTO "trip" VALUES(909644,779,'8/28/2015 9:24','2nd at South Park',64,'8/28/2015 9:37','Commercial at Montgomery',45,422,'Subscriber',94107); +INSERT INTO "trip" VALUES(909645,480,'8/28/2015 9:24','Howard at 2nd',63,'8/28/2015 9:32','San Francisco Caltrain (Townsend at 4th)',70,462,'Subscriber',94105); +INSERT INTO "trip" VALUES(909646,425,'8/28/2015 9:24','Harry Bridges Plaza (Ferry Building)',50,'8/28/2015 9:31','Embarcadero at Sansome',60,377,'Subscriber',94566); +INSERT INTO "trip" VALUES(909647,348,'8/28/2015 9:25','5th at Howard',57,'8/28/2015 9:31','San Francisco Caltrain 2 (330 Townsend)',69,555,'Subscriber',94103); +INSERT INTO "trip" VALUES(909648,375,'8/28/2015 9:25','2nd at Folsom',62,'8/28/2015 9:31','San Francisco Caltrain 2 (330 Townsend)',69,599,'Subscriber',94107); +INSERT INTO "trip" VALUES(909649,151,'8/28/2015 9:25','Beale at Market',56,'8/28/2015 9:28','Temporary Transbay Terminal (Howard at Beale)',55,538,'Subscriber',94111); +INSERT INTO "trip" VALUES(909650,1085,'8/28/2015 9:26','San Francisco Caltrain (Townsend at 4th)',70,'8/28/2015 9:44','Embarcadero at Vallejo',48,158,'Subscriber',94086); +INSERT INTO "trip" VALUES(909651,1241,'8/28/2015 9:26','Clay at Battery',41,'8/28/2015 9:47','San Francisco Caltrain (Townsend at 4th)',70,362,'Subscriber',94133); +INSERT INTO "trip" VALUES(909652,594,'8/28/2015 9:26','San Francisco Caltrain 2 (330 Townsend)',69,'8/28/2015 9:36','Harry Bridges Plaza (Ferry Building)',50,259,'Subscriber',95035); +INSERT INTO "trip" VALUES(909653,145,'8/28/2015 9:27','2nd at Folsom',62,'8/28/2015 9:29','2nd at South Park',64,530,'Subscriber',94107); +INSERT INTO "trip" VALUES(909654,360,'8/28/2015 9:27','San Francisco Caltrain 2 (330 Townsend)',69,'8/28/2015 9:33','Howard at 2nd',63,603,'Subscriber',94061); +INSERT INTO "trip" VALUES(909655,404,'8/28/2015 9:27','Embarcadero at Bryant',54,'8/28/2015 9:33','San Francisco Caltrain (Townsend at 4th)',70,394,'Subscriber',94105); +INSERT INTO "trip" VALUES(909656,982,'8/28/2015 9:27','San Francisco Caltrain 2 (330 Townsend)',69,'8/28/2015 9:43','Market at 10th',67,568,'Subscriber',94065); +INSERT INTO "trip" VALUES(909658,629,'8/28/2015 9:27','San Francisco Caltrain 2 (330 Townsend)',69,'8/28/2015 9:38','Harry Bridges Plaza (Ferry Building)',50,537,'Subscriber',94025); +INSERT INTO "trip" VALUES(909662,331,'8/28/2015 9:28','Beale at Market',56,'8/28/2015 9:34','2nd at Townsend',61,380,'Subscriber',94563); +INSERT INTO "trip" VALUES(909664,554,'8/28/2015 9:29','Yerba Buena Center of the Arts (3rd @ Howard)',68,'8/28/2015 9:38','Commercial at Montgomery',45,514,'Subscriber',94117); +INSERT INTO "trip" VALUES(909665,486,'8/28/2015 9:29','South Van Ness at Market',66,'8/28/2015 9:37','Townsend at 7th',65,498,'Subscriber',94131); +INSERT INTO "trip" VALUES(909668,245,'8/28/2015 9:29','2nd at South Park',64,'8/28/2015 9:33','San Francisco Caltrain (Townsend at 4th)',70,376,'Subscriber',94107); +INSERT INTO "trip" VALUES(909673,371,'8/28/2015 9:31','South Van Ness at Market',66,'8/28/2015 9:37','Powell Street BART',39,554,'Subscriber',94117); +INSERT INTO "trip" VALUES(909677,406,'8/28/2015 9:31','Embarcadero at Bryant',54,'8/28/2015 9:38','Mechanics Plaza (Market at Battery)',75,509,'Subscriber',94105); +INSERT INTO "trip" VALUES(909678,420,'8/28/2015 9:31','Harry Bridges Plaza (Ferry Building)',50,'8/28/2015 9:38','Embarcadero at Sansome',60,403,'Subscriber',94947); +INSERT INTO "trip" VALUES(909679,333,'8/28/2015 9:32','Beale at Market',56,'8/28/2015 9:38','Embarcadero at Vallejo',48,431,'Subscriber',94112); +INSERT INTO "trip" VALUES(909680,626,'8/28/2015 9:32','Mechanics Plaza (Market at Battery)',75,'8/28/2015 9:43','Embarcadero at Folsom',51,507,'Subscriber',94105); +INSERT INTO "trip" VALUES(909682,673,'8/28/2015 9:33','Market at 10th',67,'8/28/2015 9:44','San Francisco Caltrain 2 (330 Townsend)',69,418,'Subscriber',94549); +INSERT INTO "trip" VALUES(909683,669,'8/28/2015 9:33','Market at 10th',67,'8/28/2015 9:44','San Francisco Caltrain 2 (330 Townsend)',69,478,'Subscriber',94107); +INSERT INTO "trip" VALUES(909684,265,'8/28/2015 9:34','Broadway St at Battery St',82,'8/28/2015 9:38','Steuart at Market',74,569,'Subscriber',94133); +INSERT INTO "trip" VALUES(909685,307,'8/28/2015 9:34','5th at Howard',57,'8/28/2015 9:39','Market at 4th',76,500,'Subscriber',94103); +INSERT INTO "trip" VALUES(909686,786,'8/28/2015 9:35','Temporary Transbay Terminal (Howard at Beale)',55,'8/28/2015 9:48','Market at 10th',67,549,'Subscriber',94608); +INSERT INTO "trip" VALUES(909687,764,'8/28/2015 9:35','Temporary Transbay Terminal (Howard at Beale)',55,'8/28/2015 9:48','Townsend at 7th',65,274,'Subscriber',94608); +INSERT INTO "trip" VALUES(909688,854,'8/28/2015 9:36','San Francisco Caltrain (Townsend at 4th)',70,'8/28/2015 9:50','Steuart at Market',74,394,'Subscriber',94404); +INSERT INTO "trip" VALUES(909691,410,'8/28/2015 9:37','Market at 4th',76,'8/28/2015 9:44','San Francisco Caltrain (Townsend at 4th)',70,512,'Subscriber',94105); +INSERT INTO "trip" VALUES(909693,387,'8/28/2015 9:39','2nd at South Park',64,'8/28/2015 9:46','Market at Sansome',77,393,'Subscriber',94107); +INSERT INTO "trip" VALUES(909694,292,'8/28/2015 9:39','Palo Alto Caltrain Station',34,'8/28/2015 9:44','Cowper at University',37,649,'Subscriber',94108); +INSERT INTO "trip" VALUES(909695,287,'8/28/2015 9:40','Embarcadero at Sansome',60,'8/28/2015 9:44','Steuart at Market',74,374,'Customer','nil'); +INSERT INTO "trip" VALUES(909696,548,'8/28/2015 9:40','Harry Bridges Plaza (Ferry Building)',50,'8/28/2015 9:49','2nd at Townsend',61,537,'Subscriber',94503); +INSERT INTO "trip" VALUES(909697,238,'8/28/2015 9:41','Mountain View Caltrain Station',28,'8/28/2015 9:45','Mountain View City Hall',27,107,'Subscriber',94107); +INSERT INTO "trip" VALUES(909698,234,'8/28/2015 9:41','Mountain View Caltrain Station',28,'8/28/2015 9:45','Mountain View City Hall',27,142,'Subscriber',94401); +INSERT INTO "trip" VALUES(909699,250,'8/28/2015 9:41','Townsend at 7th',65,'8/28/2015 9:46','San Francisco Caltrain 2 (330 Townsend)',69,353,'Subscriber',94107); +INSERT INTO "trip" VALUES(909701,1021,'8/28/2015 9:42','San Jose Diridon Caltrain Station',2,'8/28/2015 9:59','Adobe on Almaden',5,129,'Subscriber',94114); +INSERT INTO "trip" VALUES(909702,534,'8/28/2015 9:42','Civic Center BART (7th at Market)',72,'8/28/2015 9:51','Beale at Market',56,384,'Subscriber',94103); +INSERT INTO "trip" VALUES(909703,555,'8/28/2015 9:43','Temporary Transbay Terminal (Howard at Beale)',55,'8/28/2015 9:52','Broadway St at Battery St',82,279,'Subscriber',94608); +INSERT INTO "trip" VALUES(909706,405,'8/28/2015 9:43','Powell at Post (Union Square)',71,'8/28/2015 9:50','Steuart at Market',74,492,'Subscriber',94108); +INSERT INTO "trip" VALUES(909708,334,'8/28/2015 9:45','Temporary Transbay Terminal (Howard at Beale)',55,'8/28/2015 9:50','2nd at Townsend',61,613,'Subscriber',94608); +INSERT INTO "trip" VALUES(909711,461,'8/28/2015 9:47','2nd at Townsend',61,'8/28/2015 9:54','Harry Bridges Plaza (Ferry Building)',50,354,'Subscriber',94403); +INSERT INTO "trip" VALUES(909712,335,'8/28/2015 9:47','Mountain View City Hall',27,'8/28/2015 9:53','Mountain View Caltrain Station',28,142,'Subscriber',94041); +INSERT INTO "trip" VALUES(909713,545,'8/28/2015 9:47','2nd at Townsend',61,'8/28/2015 9:56','Harry Bridges Plaza (Ferry Building)',50,436,'Subscriber',94107); +INSERT INTO "trip" VALUES(909714,455,'8/28/2015 9:48','Powell at Post (Union Square)',71,'8/28/2015 9:55','Mechanics Plaza (Market at Battery)',75,328,'Subscriber',94115); +INSERT INTO "trip" VALUES(909715,592,'8/28/2015 9:48','Market at 10th',67,'8/28/2015 9:58','Howard at 2nd',63,212,'Subscriber',94103); +INSERT INTO "trip" VALUES(909716,5933,'8/28/2015 9:49','San Jose Civic Center',3,'8/28/2015 11:28','San Jose Civic Center',3,18,'Customer',97006); +INSERT INTO "trip" VALUES(909717,267,'8/28/2015 9:49','Rengstorff Avenue / California Street',33,'8/28/2015 9:54','San Antonio Shopping Center',31,650,'Subscriber',94041); +INSERT INTO "trip" VALUES(909718,511,'8/28/2015 9:50','Commercial at Montgomery',45,'8/28/2015 9:58','Embarcadero at Folsom',51,359,'Subscriber',94133); +INSERT INTO "trip" VALUES(909719,73,'8/28/2015 9:50','2nd at South Park',64,'8/28/2015 9:51','2nd at Townsend',61,375,'Subscriber',94107); +INSERT INTO "trip" VALUES(909720,640,'8/28/2015 9:50','Golden Gate at Polk',59,'8/28/2015 10:00','2nd at South Park',64,360,'Subscriber',94109); +INSERT INTO "trip" VALUES(909721,354,'8/28/2015 9:50','2nd at South Park',64,'8/28/2015 9:56','Post at Kearny',47,312,'Subscriber',94107); +INSERT INTO "trip" VALUES(909722,233,'8/28/2015 9:51','Civic Center BART (7th at Market)',72,'8/28/2015 9:55','5th at Howard',57,456,'Subscriber',94118); +INSERT INTO "trip" VALUES(909723,491,'8/28/2015 9:52','Embarcadero at Sansome',60,'8/28/2015 10:00','Market at Sansome',77,427,'Subscriber',94111); +INSERT INTO "trip" VALUES(909724,285,'8/28/2015 9:51','San Jose Civic Center',3,'8/28/2015 9:56','Adobe on Almaden',5,685,'Subscriber',95113); +INSERT INTO "trip" VALUES(909725,330,'8/28/2015 9:52','Beale at Market',56,'8/28/2015 9:57','2nd at Townsend',61,384,'Subscriber',94111); +INSERT INTO "trip" VALUES(909726,184,'8/28/2015 9:52','San Francisco Caltrain 2 (330 Townsend)',69,'8/28/2015 9:55','2nd at Townsend',61,599,'Subscriber',94002); +INSERT INTO "trip" VALUES(909727,629,'8/28/2015 9:52','Civic Center BART (7th at Market)',72,'8/28/2015 10:03','Townsend at 7th',65,631,'Subscriber',94568); +INSERT INTO "trip" VALUES(909728,386,'8/28/2015 9:52','San Francisco Caltrain (Townsend at 4th)',70,'8/28/2015 9:59','Howard at 2nd',63,512,'Subscriber',94066); +INSERT INTO "trip" VALUES(909729,627,'8/28/2015 9:53','Davis at Jackson',42,'8/28/2015 10:03','San Francisco Caltrain (Townsend at 4th)',70,236,'Subscriber',94111); +INSERT INTO "trip" VALUES(909730,536,'8/28/2015 9:53','San Francisco Caltrain 2 (330 Townsend)',69,'8/28/2015 10:02','Embarcadero at Folsom',51,353,'Subscriber',95129); +INSERT INTO "trip" VALUES(909731,467,'8/28/2015 9:53','Davis at Jackson',42,'8/28/2015 10:01','Post at Kearny',47,189,'Subscriber',94111); +INSERT INTO "trip" VALUES(909732,524,'8/28/2015 9:53','San Francisco Caltrain 2 (330 Townsend)',69,'8/28/2015 10:02','Howard at 2nd',63,628,'Subscriber',94111); +INSERT INTO "trip" VALUES(909733,445,'8/28/2015 9:54','2nd at Townsend',61,'8/28/2015 10:01','Temporary Transbay Terminal (Howard at Beale)',55,331,'Customer',94123); +INSERT INTO "trip" VALUES(909734,575,'8/28/2015 9:54','Davis at Jackson',42,'8/28/2015 10:04','2nd at Townsend',61,351,'Subscriber',94111); +INSERT INTO "trip" VALUES(909735,689,'8/28/2015 9:55','San Francisco Caltrain (Townsend at 4th)',70,'8/28/2015 10:06','Temporary Transbay Terminal (Howard at Beale)',55,563,'Subscriber',94401); +INSERT INTO "trip" VALUES(909736,332,'8/28/2015 9:55','Harry Bridges Plaza (Ferry Building)',50,'8/28/2015 10:00','Clay at Battery',41,354,'Subscriber',94925); +INSERT INTO "trip" VALUES(909738,386,'8/28/2015 9:56','2nd at Townsend',61,'8/28/2015 10:02','Steuart at Market',74,375,'Subscriber',94002); +INSERT INTO "trip" VALUES(909739,315,'8/28/2015 9:56','Grant Avenue at Columbus Avenue',73,'8/28/2015 10:01','Market at Sansome',77,399,'Subscriber',94104); +INSERT INTO "trip" VALUES(909740,488,'8/28/2015 9:59','Market at 4th',76,'8/28/2015 10:07','San Francisco Caltrain 2 (330 Townsend)',69,500,'Subscriber',94542); +INSERT INTO "trip" VALUES(909742,302,'8/28/2015 10:04','Civic Center BART (7th at Market)',72,'8/28/2015 10:09','Market at 10th',67,471,'Subscriber',94112); +INSERT INTO "trip" VALUES(909743,263,'8/28/2015 10:04','Broadway St at Battery St',82,'8/28/2015 10:09','Steuart at Market',74,504,'Subscriber',94133); +INSERT INTO "trip" VALUES(909744,187,'8/28/2015 10:05','Market at 4th',76,'8/28/2015 10:08','Market at Sansome',77,318,'Subscriber',94117); +INSERT INTO "trip" VALUES(909745,476,'8/28/2015 10:05','2nd at Townsend',61,'8/28/2015 10:13','Beale at Market',56,380,'Subscriber',94111); +INSERT INTO "trip" VALUES(909746,387,'8/28/2015 10:06','Grant Avenue at Columbus Avenue',73,'8/28/2015 10:12','Embarcadero at Sansome',60,493,'Subscriber',94109); +INSERT INTO "trip" VALUES(909751,207,'8/28/2015 10:10','Market at Sansome',77,'8/28/2015 10:14','2nd at Folsom',62,581,'Subscriber',94117); +INSERT INTO "trip" VALUES(909752,376,'8/28/2015 10:10','San Francisco Caltrain (Townsend at 4th)',70,'8/28/2015 10:17','Yerba Buena Center of the Arts (3rd @ Howard)',68,376,'Subscriber',94070); +INSERT INTO "trip" VALUES(909753,446,'8/28/2015 10:11','San Francisco Caltrain 2 (330 Townsend)',69,'8/28/2015 10:18','Howard at 2nd',63,500,'Subscriber',94063); +INSERT INTO "trip" VALUES(909754,927,'8/28/2015 10:11','South Van Ness at Market',66,'8/28/2015 10:27','Embarcadero at Folsom',51,450,'Subscriber',94103); +INSERT INTO "trip" VALUES(909755,661,'8/28/2015 10:12','5th at Howard',57,'8/28/2015 10:23','Washington at Kearny',46,456,'Subscriber',94608); +INSERT INTO "trip" VALUES(909758,685,'8/28/2015 10:13','San Francisco Caltrain (Townsend at 4th)',70,'8/28/2015 10:25','Embarcadero at Folsom',51,445,'Subscriber',95118); +INSERT INTO "trip" VALUES(909765,627,'8/28/2015 10:19','Embarcadero at Sansome',60,'8/28/2015 10:29','Embarcadero at Folsom',51,321,'Subscriber',94111); +INSERT INTO "trip" VALUES(909766,398,'8/28/2015 10:19','Market at 4th',76,'8/28/2015 10:26','San Francisco Caltrain (Townsend at 4th)',70,623,'Subscriber',94607); +INSERT INTO "trip" VALUES(909767,5856,'8/28/2015 10:21','Post at Kearny',47,'8/28/2015 11:58','Embarcadero at Sansome',60,313,'Customer',19027); +INSERT INTO "trip" VALUES(909768,459,'8/28/2015 10:22','Steuart at Market',74,'8/28/2015 10:29','Embarcadero at Sansome',60,374,'Subscriber',94612); +INSERT INTO "trip" VALUES(909769,384,'8/28/2015 10:23','Mountain View Caltrain Station',28,'8/28/2015 10:30','Mountain View City Hall',27,94,'Subscriber',94111); +INSERT INTO "trip" VALUES(909770,875,'8/28/2015 10:27','Market at 10th',67,'8/28/2015 10:42','Spear at Folsom',49,568,'Subscriber',94103); +INSERT INTO "trip" VALUES(909771,1057,'8/28/2015 10:28','Grant Avenue at Columbus Avenue',73,'8/28/2015 10:46','San Francisco Caltrain (Townsend at 4th)',70,457,'Subscriber',94105); +INSERT INTO "trip" VALUES(909772,278,'8/28/2015 10:29','Mechanics Plaza (Market at Battery)',75,'8/28/2015 10:33','Post at Kearny',47,287,'Subscriber',94105); +INSERT INTO "trip" VALUES(909775,1547,'8/28/2015 10:30','Davis at Jackson',42,'8/28/2015 10:56','Embarcadero at Sansome',60,672,'Customer',43); +INSERT INTO "trip" VALUES(909776,1462,'8/28/2015 10:32','Davis at Jackson',42,'8/28/2015 10:56','Embarcadero at Sansome',60,271,'Customer',43); +INSERT INTO "trip" VALUES(909778,319,'8/28/2015 10:33','Embarcadero at Sansome',60,'8/28/2015 10:38','Steuart at Market',74,374,'Subscriber',94110); +INSERT INTO "trip" VALUES(909783,297,'8/28/2015 10:36','Embarcadero at Folsom',51,'8/28/2015 10:41','Mechanics Plaza (Market at Battery)',75,507,'Subscriber',94105); +INSERT INTO "trip" VALUES(909785,470,'8/28/2015 10:37','Mechanics Plaza (Market at Battery)',75,'8/28/2015 10:45','Embarcadero at Vallejo',48,484,'Subscriber',94706); +INSERT INTO "trip" VALUES(909786,1317,'8/28/2015 10:37','2nd at Townsend',61,'8/28/2015 10:59','San Francisco Caltrain 2 (330 Townsend)',69,613,'Subscriber',94124); +INSERT INTO "trip" VALUES(909787,390,'8/28/2015 10:37','Harry Bridges Plaza (Ferry Building)',50,'8/28/2015 10:44','Embarcadero at Sansome',60,86,'Subscriber',94612); +INSERT INTO "trip" VALUES(909788,367,'8/28/2015 10:37','Beale at Market',56,'8/28/2015 10:43','Embarcadero at Vallejo',48,380,'Subscriber',94610); +INSERT INTO "trip" VALUES(909789,89,'8/28/2015 10:39','Beale at Market',56,'8/28/2015 10:40','Temporary Transbay Terminal (Howard at Beale)',55,334,'Subscriber',94114); +INSERT INTO "trip" VALUES(909790,310,'8/28/2015 10:41','Mountain View Caltrain Station',28,'8/28/2015 10:46','Castro Street and El Camino Real',32,693,'Subscriber',94158); +INSERT INTO "trip" VALUES(909791,238,'8/28/2015 10:41','Mountain View Caltrain Station',28,'8/28/2015 10:45','Mountain View City Hall',27,147,'Subscriber',94103); +INSERT INTO "trip" VALUES(909792,728,'8/28/2015 10:42','Market at 4th',76,'8/28/2015 10:54','Davis at Jackson',42,391,'Customer',94111); +INSERT INTO "trip" VALUES(909793,739,'8/28/2015 10:42','Market at 4th',76,'8/28/2015 10:54','Davis at Jackson',42,283,'Customer',94111); +INSERT INTO "trip" VALUES(909794,336,'8/28/2015 10:43','Market at Sansome',77,'8/28/2015 10:48','2nd at South Park',64,405,'Subscriber',94544); +INSERT INTO "trip" VALUES(909795,222,'8/28/2015 10:44','2nd at Townsend',61,'8/28/2015 10:47','San Francisco Caltrain (Townsend at 4th)',70,537,'Subscriber',94107); +INSERT INTO "trip" VALUES(909796,704,'8/28/2015 10:46','Broadway St at Battery St',82,'8/28/2015 10:57','Market at 4th',76,279,'Subscriber',94111); +INSERT INTO "trip" VALUES(909797,246,'8/28/2015 10:46','Howard at 2nd',63,'8/28/2015 10:50','Embarcadero at Folsom',51,409,'Subscriber',94105); +INSERT INTO "trip" VALUES(909798,515,'8/28/2015 10:48','Embarcadero at Bryant',54,'8/28/2015 10:57','Clay at Battery',41,347,'Subscriber',94105); +INSERT INTO "trip" VALUES(909801,611,'8/28/2015 10:50','San Francisco Caltrain 2 (330 Townsend)',69,'8/28/2015 11:00','Market at 10th',67,442,'Subscriber',94041); +INSERT INTO "trip" VALUES(909802,477,'8/28/2015 10:51','San Francisco Caltrain (Townsend at 4th)',70,'8/28/2015 10:59','Embarcadero at Bryant',54,537,'Subscriber',94087); +INSERT INTO "trip" VALUES(909803,222,'8/28/2015 10:54','5th at Howard',57,'8/28/2015 10:58','Market at 4th',76,290,'Subscriber',94103); +INSERT INTO "trip" VALUES(909804,406,'8/28/2015 10:58','Temporary Transbay Terminal (Howard at Beale)',55,'8/28/2015 11:05','Post at Kearny',47,533,'Customer',95762); +INSERT INTO "trip" VALUES(909805,381,'8/28/2015 10:58','Temporary Transbay Terminal (Howard at Beale)',55,'8/28/2015 11:05','Post at Kearny',47,214,'Customer','nil'); +INSERT INTO "trip" VALUES(909818,210,'8/28/2015 11:06','Mechanics Plaza (Market at Battery)',75,'8/28/2015 11:10','Clay at Battery',41,509,'Subscriber',94105); +INSERT INTO "trip" VALUES(909821,2577,'8/28/2015 11:07','Market at 4th',76,'8/28/2015 11:50','Embarcadero at Sansome',60,279,'Customer','nil'); +INSERT INTO "trip" VALUES(909822,2550,'8/28/2015 11:07','Market at 4th',76,'8/28/2015 11:50','Embarcadero at Sansome',60,290,'Customer','nil'); +INSERT INTO "trip" VALUES(909825,139,'8/28/2015 11:08','Townsend at 7th',65,'8/28/2015 11:10','Townsend at 7th',65,274,'Subscriber',94124); +INSERT INTO "trip" VALUES(909826,456,'8/28/2015 11:09','Embarcadero at Sansome',60,'8/28/2015 11:17','Harry Bridges Plaza (Ferry Building)',50,271,'Subscriber',94965); +INSERT INTO "trip" VALUES(909827,412,'8/28/2015 11:13','Market at Sansome',77,'8/28/2015 11:20','Embarcadero at Folsom',51,402,'Subscriber',94549); +INSERT INTO "trip" VALUES(909828,327,'8/28/2015 11:14','Mechanics Plaza (Market at Battery)',75,'8/28/2015 11:20','Commercial at Montgomery',45,412,'Subscriber',94030); +INSERT INTO "trip" VALUES(909831,168,'8/28/2015 11:15','Powell at Post (Union Square)',71,'8/28/2015 11:18','Post at Kearny',47,473,'Subscriber',94118); +INSERT INTO "trip" VALUES(909833,745,'8/28/2015 11:18','San Francisco Caltrain (Townsend at 4th)',70,'8/28/2015 11:30','Temporary Transbay Terminal (Howard at Beale)',55,623,'Subscriber',95014); +INSERT INTO "trip" VALUES(909834,385,'8/28/2015 11:19','San Francisco Caltrain (Townsend at 4th)',70,'8/28/2015 11:25','2nd at South Park',64,448,'Subscriber',94301); +INSERT INTO "trip" VALUES(909835,320,'8/28/2015 11:22','Market at Sansome',77,'8/28/2015 11:27','2nd at South Park',64,524,'Subscriber',94609); +INSERT INTO "trip" VALUES(909843,614,'8/28/2015 11:25','Market at 10th',67,'8/28/2015 11:36','Beale at Market',56,471,'Subscriber',94103); +INSERT INTO "trip" VALUES(909844,360,'8/28/2015 11:26','Harry Bridges Plaza (Ferry Building)',50,'8/28/2015 11:32','Embarcadero at Sansome',60,29,'Subscriber',94133); +INSERT INTO "trip" VALUES(909845,192,'8/28/2015 11:26','2nd at South Park',64,'8/28/2015 11:29','Howard at 2nd',63,405,'Subscriber',94107); +INSERT INTO "trip" VALUES(909846,431,'8/28/2015 11:26','Civic Center BART (7th at Market)',72,'8/28/2015 11:33','Beale at Market',56,506,'Subscriber',94941); +INSERT INTO "trip" VALUES(909849,428,'8/28/2015 11:27','Market at Sansome',77,'8/28/2015 11:34','Powell at Post (Union Square)',71,625,'Subscriber',94115); +INSERT INTO "trip" VALUES(909850,755,'8/28/2015 11:29','Steuart at Market',74,'8/28/2015 11:41','San Francisco Caltrain (Townsend at 4th)',70,569,'Subscriber',94110); +INSERT INTO "trip" VALUES(909851,674,'8/28/2015 11:29','Santa Clara County Civic Center',80,'8/28/2015 11:41','Ryland Park',84,232,'Subscriber',95112); +INSERT INTO "trip" VALUES(909852,195,'8/28/2015 11:35','Powell at Post (Union Square)',71,'8/28/2015 11:38','Market at Sansome',77,625,'Subscriber',94109); +INSERT INTO "trip" VALUES(909853,222,'8/28/2015 11:35','Grant Avenue at Columbus Avenue',73,'8/28/2015 11:39','Commercial at Montgomery',45,454,'Subscriber',94133); +INSERT INTO "trip" VALUES(909855,425,'8/28/2015 11:36','Embarcadero at Folsom',51,'8/28/2015 11:43','Davis at Jackson',42,335,'Subscriber',94111); +INSERT INTO "trip" VALUES(909856,418,'8/28/2015 11:37','Embarcadero at Vallejo',48,'8/28/2015 11:44','Embarcadero at Bryant',54,576,'Subscriber',94105); +INSERT INTO "trip" VALUES(909859,613,'8/28/2015 11:38','Powell Street BART',39,'8/28/2015 11:48','2nd at Townsend',61,453,'Subscriber',94519); +INSERT INTO "trip" VALUES(909860,753,'8/28/2015 11:38','Market at 10th',67,'8/28/2015 11:51','San Francisco Caltrain 2 (330 Townsend)',69,368,'Subscriber',94103); +INSERT INTO "trip" VALUES(909863,540,'8/28/2015 11:39','Harry Bridges Plaza (Ferry Building)',50,'8/28/2015 11:48','2nd at Townsend',61,259,'Subscriber',94534); +INSERT INTO "trip" VALUES(909864,221,'8/28/2015 11:40','Townsend at 7th',65,'8/28/2015 11:44','San Francisco Caltrain 2 (330 Townsend)',69,387,'Subscriber',94107); +INSERT INTO "trip" VALUES(909865,1361,'8/28/2015 11:40','Commercial at Montgomery',45,'8/28/2015 12:03','2nd at South Park',64,454,'Customer',94123); +INSERT INTO "trip" VALUES(909866,1217,'8/28/2015 11:42','Commercial at Montgomery',45,'8/28/2015 12:03','2nd at South Park',64,187,'Customer',94123); +INSERT INTO "trip" VALUES(909867,642,'8/28/2015 11:43','2nd at South Park',64,'8/28/2015 11:53','Commercial at Montgomery',45,524,'Subscriber',94107); +INSERT INTO "trip" VALUES(909868,241,'8/28/2015 11:45','Mechanics Plaza (Market at Battery)',75,'8/28/2015 11:49','Harry Bridges Plaza (Ferry Building)',50,309,'Subscriber',94110); +INSERT INTO "trip" VALUES(909869,214,'8/28/2015 11:45','Clay at Battery',41,'8/28/2015 11:49','Mechanics Plaza (Market at Battery)',75,508,'Subscriber',94105); +INSERT INTO "trip" VALUES(909870,368,'8/28/2015 11:45','Powell at Post (Union Square)',71,'8/28/2015 11:52','Howard at 2nd',63,540,'Subscriber',94108); +INSERT INTO "trip" VALUES(909871,721,'8/28/2015 11:46','Townsend at 7th',65,'8/28/2015 11:58','Market at Sansome',77,327,'Subscriber',94131); +INSERT INTO "trip" VALUES(909872,7070,'8/28/2015 11:48','Civic Center BART (7th at Market)',72,'8/28/2015 13:46','Embarcadero at Sansome',60,553,'Customer',41); +INSERT INTO "trip" VALUES(909873,7045,'8/28/2015 11:48','Civic Center BART (7th at Market)',72,'8/28/2015 13:46','Embarcadero at Sansome',60,439,'Customer',41); +INSERT INTO "trip" VALUES(909874,2202,'8/28/2015 11:48','San Francisco Caltrain 2 (330 Townsend)',69,'8/28/2015 12:25','Harry Bridges Plaza (Ferry Building)',50,478,'Customer',94086); +INSERT INTO "trip" VALUES(909875,359,'8/28/2015 11:50','Broadway St at Battery St',82,'8/28/2015 11:56','Market at Sansome',77,404,'Subscriber',94109); +INSERT INTO "trip" VALUES(909876,2562,'8/28/2015 11:53','Embarcadero at Sansome',60,'8/28/2015 12:36','Grant Avenue at Columbus Avenue',73,29,'Customer','nil'); +INSERT INTO "trip" VALUES(909877,2524,'8/28/2015 11:53','Embarcadero at Sansome',60,'8/28/2015 12:35','Grant Avenue at Columbus Avenue',73,493,'Customer','nil'); +INSERT INTO "trip" VALUES(909878,300,'8/28/2015 11:53','Embarcadero at Sansome',60,'8/28/2015 11:58','Clay at Battery',41,350,'Subscriber',94111); +INSERT INTO "trip" VALUES(909879,414,'8/28/2015 11:54','Washington at Kearny',46,'8/28/2015 12:01','Mechanics Plaza (Market at Battery)',75,238,'Subscriber',94030); +INSERT INTO "trip" VALUES(909880,231,'8/28/2015 11:56','Civic Center BART (7th at Market)',72,'8/28/2015 12:00','Market at 4th',76,395,'Subscriber',94602); +INSERT INTO "trip" VALUES(909881,1316,'8/28/2015 11:58','Harry Bridges Plaza (Ferry Building)',50,'8/28/2015 12:20','Harry Bridges Plaza (Ferry Building)',50,436,'Subscriber',94087); +INSERT INTO "trip" VALUES(909882,2368,'8/28/2015 11:58','Market at 10th',67,'8/28/2015 12:38','San Francisco Caltrain 2 (330 Townsend)',69,442,'Subscriber',94107); +INSERT INTO "trip" VALUES(909883,624,'8/28/2015 11:59','University and Emerson',35,'8/28/2015 12:09','California Ave Caltrain Station',36,253,'Subscriber',94105); +INSERT INTO "trip" VALUES(909884,771,'8/28/2015 11:59','San Francisco Caltrain (Townsend at 4th)',70,'8/28/2015 12:12','Market at 4th',76,457,'Subscriber',94158); +INSERT INTO "trip" VALUES(909886,362,'8/28/2015 12:03','Mechanics Plaza (Market at Battery)',75,'8/28/2015 12:10','Spear at Folsom',49,238,'Subscriber',94107); +INSERT INTO "trip" VALUES(909887,361,'8/28/2015 12:04','Commercial at Montgomery',45,'8/28/2015 12:10','Yerba Buena Center of the Arts (3rd @ Howard)',68,542,'Subscriber',94107); +INSERT INTO "trip" VALUES(909888,561,'8/28/2015 12:05','Market at 10th',67,'8/28/2015 12:14','Washington at Kearny',46,549,'Subscriber',94117); +INSERT INTO "trip" VALUES(909889,320,'8/28/2015 12:06','San Antonio Shopping Center',31,'8/28/2015 12:12','Rengstorff Avenue / California Street',33,705,'Subscriber',94070); +INSERT INTO "trip" VALUES(909890,230,'8/28/2015 12:08','2nd at Townsend',61,'8/28/2015 12:12','San Francisco Caltrain 2 (330 Townsend)',69,351,'Subscriber',94107); +INSERT INTO "trip" VALUES(909891,253,'8/28/2015 12:10','Commercial at Montgomery',45,'8/28/2015 12:14','Market at Sansome',77,437,'Subscriber',94122); +INSERT INTO "trip" VALUES(909892,273,'8/28/2015 12:11','Broadway St at Battery St',82,'8/28/2015 12:16','Harry Bridges Plaza (Ferry Building)',50,338,'Subscriber',94107); +INSERT INTO "trip" VALUES(909894,813,'8/28/2015 12:12','Powell at Post (Union Square)',71,'8/28/2015 12:25','Spear at Folsom',49,558,'Subscriber',94102); +INSERT INTO "trip" VALUES(909895,292,'8/28/2015 12:13','South Van Ness at Market',66,'8/28/2015 12:17','Civic Center BART (7th at Market)',72,397,'Subscriber',94702); +INSERT INTO "trip" VALUES(909896,259,'8/28/2015 12:14','Howard at 2nd',63,'8/28/2015 12:18','Steuart at Market',74,540,'Subscriber',94041); +INSERT INTO "trip" VALUES(909897,288,'8/28/2015 12:14','Harry Bridges Plaza (Ferry Building)',50,'8/28/2015 12:19','Mechanics Plaza (Market at Battery)',75,309,'Subscriber',94110); +INSERT INTO "trip" VALUES(909898,489,'8/28/2015 12:15','Clay at Battery',41,'8/28/2015 12:23','Embarcadero at Sansome',60,592,'Subscriber',94107); +INSERT INTO "trip" VALUES(909899,188,'8/28/2015 12:16','Market at Sansome',77,'8/28/2015 12:20','Beale at Market',56,327,'Subscriber',94903); +INSERT INTO "trip" VALUES(909900,1821,'8/28/2015 12:18','Temporary Transbay Terminal (Howard at Beale)',55,'8/28/2015 12:49','Temporary Transbay Terminal (Howard at Beale)',55,623,'Subscriber',94111); +INSERT INTO "trip" VALUES(909901,479,'8/28/2015 12:19','Embarcadero at Sansome',60,'8/28/2015 12:27','Harry Bridges Plaza (Ferry Building)',50,313,'Subscriber',94122); +INSERT INTO "trip" VALUES(909902,340,'8/28/2015 12:19','Market at Sansome',77,'8/28/2015 12:25','Powell Street BART',39,625,'Subscriber',94122); +INSERT INTO "trip" VALUES(909903,963,'8/28/2015 12:20','Townsend at 7th',65,'8/28/2015 12:36','Post at Kearny',47,498,'Subscriber',94941); +INSERT INTO "trip" VALUES(909904,742,'8/28/2015 12:21','Beale at Market',56,'8/28/2015 12:33','Golden Gate at Polk',59,327,'Subscriber',94109); +INSERT INTO "trip" VALUES(909905,294,'8/28/2015 12:23','Market at 4th',76,'8/28/2015 12:28','Civic Center BART (7th at Market)',72,457,'Subscriber',95035); +INSERT INTO "trip" VALUES(909906,920,'8/28/2015 12:26','San Francisco Caltrain 2 (330 Townsend)',69,'8/28/2015 12:41','San Francisco Caltrain (Townsend at 4th)',70,351,'Subscriber',94107); +INSERT INTO "trip" VALUES(909907,254,'8/28/2015 12:26','Beale at Market',56,'8/28/2015 12:31','Spear at Folsom',49,471,'Subscriber',94611); +INSERT INTO "trip" VALUES(909908,603,'8/28/2015 12:27','Embarcadero at Bryant',54,'8/28/2015 12:37','Embarcadero at Vallejo',48,576,'Subscriber',94105); +INSERT INTO "trip" VALUES(909909,310,'8/28/2015 12:27','Embarcadero at Bryant',54,'8/28/2015 12:33','Temporary Transbay Terminal (Howard at Beale)',55,537,'Subscriber',94010); +INSERT INTO "trip" VALUES(909910,1047,'8/28/2015 12:26','2nd at South Park',64,'8/28/2015 12:44','Market at 10th',67,448,'Subscriber',94602); +INSERT INTO "trip" VALUES(909912,144,'8/28/2015 12:29','Howard at 2nd',63,'8/28/2015 12:31','Market at Sansome',77,209,'Subscriber',94117); +INSERT INTO "trip" VALUES(909913,302,'8/28/2015 12:29','Rengstorff Avenue / California Street',33,'8/28/2015 12:34','San Antonio Shopping Center',31,705,'Subscriber',94070); +INSERT INTO "trip" VALUES(909914,400,'8/28/2015 12:32','Mechanics Plaza (Market at Battery)',75,'8/28/2015 12:39','Powell Street BART',39,366,'Subscriber',94111); +INSERT INTO "trip" VALUES(909915,5437,'8/28/2015 12:34','Civic Center BART (7th at Market)',72,'8/28/2015 14:05','Civic Center BART (7th at Market)',72,583,'Customer','nil'); +INSERT INTO "trip" VALUES(909916,5413,'8/28/2015 12:34','Civic Center BART (7th at Market)',72,'8/28/2015 14:04','Civic Center BART (7th at Market)',72,463,'Customer','nil'); +INSERT INTO "trip" VALUES(909918,452,'8/28/2015 12:36','Howard at 2nd',63,'8/28/2015 12:44','Powell Street BART',39,286,'Subscriber',94109); +INSERT INTO "trip" VALUES(909920,667,'8/28/2015 12:42','Spear at Folsom',49,'8/28/2015 12:53','San Francisco Caltrain (Townsend at 4th)',70,568,'Subscriber',94070); +INSERT INTO "trip" VALUES(909921,686,'8/28/2015 12:48','Beale at Market',56,'8/28/2015 12:59','Market at 10th',67,659,'Subscriber',94103); +INSERT INTO "trip" VALUES(909923,440,'8/28/2015 12:50','Embarcadero at Folsom',51,'8/28/2015 12:58','Market at Sansome',77,604,'Subscriber',94549); +INSERT INTO "trip" VALUES(909924,939,'8/28/2015 12:52','Broadway St at Battery St',82,'8/28/2015 13:07','Embarcadero at Vallejo',48,382,'Subscriber',94105); +INSERT INTO "trip" VALUES(909925,346,'8/28/2015 12:52','Powell Street BART',39,'8/28/2015 12:58','San Francisco Caltrain 2 (330 Townsend)',69,366,'Subscriber',94107); +INSERT INTO "trip" VALUES(909926,281,'8/28/2015 12:53','San Francisco Caltrain (Townsend at 4th)',70,'8/28/2015 12:58','2nd at Townsend',61,351,'Subscriber',94107); +INSERT INTO "trip" VALUES(909927,221,'8/28/2015 12:53','2nd at South Park',64,'8/28/2015 12:57','Howard at 2nd',63,454,'Subscriber',94118); +INSERT INTO "trip" VALUES(909928,411,'8/28/2015 12:54','Market at Sansome',77,'8/28/2015 13:01','Davis at Jackson',42,342,'Subscriber',94109); +INSERT INTO "trip" VALUES(909929,381,'8/28/2015 12:55','Yerba Buena Center of the Arts (3rd @ Howard)',68,'8/28/2015 13:02','Clay at Battery',41,591,'Subscriber',94107); +INSERT INTO "trip" VALUES(909930,523,'8/28/2015 12:57','Powell Street BART',39,'8/28/2015 13:06','Commercial at Montgomery',45,625,'Subscriber',94122); +INSERT INTO "trip" VALUES(909931,1137,'8/28/2015 12:57','2nd at South Park',64,'8/28/2015 13:16','Commercial at Montgomery',45,187,'Customer',94123); +INSERT INTO "trip" VALUES(909932,1120,'8/28/2015 12:58','2nd at South Park',64,'8/28/2015 13:16','Commercial at Montgomery',45,556,'Customer',94123); +INSERT INTO "trip" VALUES(909933,198,'8/28/2015 12:58','Beale at Market',56,'8/28/2015 13:02','Harry Bridges Plaza (Ferry Building)',50,278,'Subscriber',94105); +INSERT INTO "trip" VALUES(909934,430,'8/28/2015 13:01','2nd at Townsend',61,'8/28/2015 13:08','Harry Bridges Plaza (Ferry Building)',50,384,'Subscriber',94945); +INSERT INTO "trip" VALUES(909935,686,'8/28/2015 13:05','Davis at Jackson',42,'8/28/2015 13:17','2nd at Townsend',61,389,'Subscriber',94107); +INSERT INTO "trip" VALUES(909936,441,'8/28/2015 13:06','Market at 4th',76,'8/28/2015 13:14','Howard at 2nd',63,395,'Subscriber',94109); +INSERT INTO "trip" VALUES(909937,293,'8/28/2015 13:06','2nd at Folsom',62,'8/28/2015 13:11','Commercial at Montgomery',45,359,'Subscriber',94107); +INSERT INTO "trip" VALUES(909938,664,'8/28/2015 13:07','Embarcadero at Folsom',51,'8/28/2015 13:18','Embarcadero at Folsom',51,434,'Subscriber',94804); +INSERT INTO "trip" VALUES(909939,440,'8/28/2015 13:05','2nd at South Park',64,'8/28/2015 13:13','Townsend at 7th',65,428,'Subscriber',94102); +INSERT INTO "trip" VALUES(909940,558,'8/28/2015 13:10','Harry Bridges Plaza (Ferry Building)',50,'8/28/2015 13:19','Beale at Market',56,338,'Subscriber',94105); +INSERT INTO "trip" VALUES(909941,2375,'8/28/2015 13:10','Townsend at 7th',65,'8/28/2015 13:49','Market at 4th',76,687,'Customer',90021); +INSERT INTO "trip" VALUES(909942,604,'8/28/2015 13:10','Market at Sansome',77,'8/28/2015 13:20','Embarcadero at Sansome',60,437,'Subscriber',94111); +INSERT INTO "trip" VALUES(909943,491,'8/28/2015 13:11','Ryland Park',84,'8/28/2015 13:19','Santa Clara County Civic Center',80,232,'Subscriber',95112); +INSERT INTO "trip" VALUES(909944,748,'8/28/2015 13:11','Market at Sansome',77,'8/28/2015 13:24','Townsend at 7th',65,209,'Subscriber',94131); +INSERT INTO "trip" VALUES(909945,387,'8/28/2015 13:15','Mechanics Plaza (Market at Battery)',75,'8/28/2015 13:21','Embarcadero at Bryant',54,508,'Subscriber',94105); +INSERT INTO "trip" VALUES(909946,161,'8/28/2015 13:15','Market at Sansome',77,'8/28/2015 13:18','Market at Sansome',77,614,'Subscriber',94402); +INSERT INTO "trip" VALUES(909947,627,'8/28/2015 13:17','Golden Gate at Polk',59,'8/28/2015 13:27','Beale at Market',56,327,'Subscriber',94109); +INSERT INTO "trip" VALUES(909948,262,'8/28/2015 13:18','Market at 4th',76,'8/28/2015 13:23','Civic Center BART (7th at Market)',72,393,'Subscriber',94602); +INSERT INTO "trip" VALUES(909949,663,'8/28/2015 13:08','Civic Center BART (7th at Market)',72,'8/28/2015 13:19','Commercial at Montgomery',45,426,'Subscriber',94702); +INSERT INTO "trip" VALUES(909950,307,'8/28/2015 13:21','Market at 10th',67,'8/28/2015 13:26','Powell Street BART',39,448,'Subscriber',94602); +INSERT INTO "trip" VALUES(909951,499,'8/28/2015 13:21','Steuart at Market',74,'8/28/2015 13:29','Howard at 2nd',63,540,'Subscriber',94041); +INSERT INTO "trip" VALUES(909952,452,'8/28/2015 13:22','Embarcadero at Sansome',60,'8/28/2015 13:29','Davis at Jackson',42,403,'Customer',43); +INSERT INTO "trip" VALUES(909953,430,'8/28/2015 13:22','Embarcadero at Sansome',60,'8/28/2015 13:29','Davis at Jackson',42,134,'Customer',43); +INSERT INTO "trip" VALUES(909954,636,'8/28/2015 13:26','Market at Sansome',77,'8/28/2015 13:36','Market at 10th',67,275,'Subscriber',94402); +INSERT INTO "trip" VALUES(909955,7029,'8/28/2015 13:26','Embarcadero at Sansome',60,'8/28/2015 15:23','Broadway St at Battery St',82,383,'Customer',45); +INSERT INTO "trip" VALUES(909956,271,'8/28/2015 13:26','2nd at South Park',64,'8/28/2015 13:31','Market at Sansome',77,370,'Subscriber',95973); +INSERT INTO "trip" VALUES(909957,7001,'8/28/2015 13:26','Embarcadero at Sansome',60,'8/28/2015 15:23','Broadway St at Battery St',82,552,'Customer',45); +INSERT INTO "trip" VALUES(909958,840,'8/28/2015 13:28','Post at Kearny',47,'8/28/2015 13:42','Townsend at 7th',65,287,'Subscriber',94941); +INSERT INTO "trip" VALUES(909959,959,'8/28/2015 13:33','Market at 4th',76,'8/28/2015 13:49','Embarcadero at Vallejo',48,137,'Subscriber',94111); +INSERT INTO "trip" VALUES(909960,432,'8/28/2015 13:36','2nd at Folsom',62,'8/28/2015 13:43','San Francisco Caltrain (Townsend at 4th)',70,584,'Subscriber',94590); +INSERT INTO "trip" VALUES(909961,627,'8/28/2015 13:38','Washington at Kearny',46,'8/28/2015 13:49','Market at Sansome',77,311,'Subscriber',94111); +INSERT INTO "trip" VALUES(909962,508,'8/28/2015 13:40','Market at Sansome',77,'8/28/2015 13:48','Powell Street BART',39,318,'Customer',43302); +INSERT INTO "trip" VALUES(909963,292,'8/28/2015 13:40','Japantown',9,'8/28/2015 13:45','Ryland Park',84,702,'Subscriber',95112); +INSERT INTO "trip" VALUES(909964,286,'8/28/2015 13:43','San Jose Diridon Caltrain Station',2,'8/28/2015 13:48','Santa Clara at Almaden',4,51,'Subscriber',95110); +INSERT INTO "trip" VALUES(909965,165,'8/28/2015 13:44','Santa Clara at Almaden',4,'8/28/2015 13:46','Arena Green / SAP Center',14,304,'Subscriber',95113); +INSERT INTO "trip" VALUES(909966,427,'8/28/2015 13:47','Mechanics Plaza (Market at Battery)',75,'8/28/2015 13:54','Embarcadero at Bryant',54,328,'Subscriber',94105); +INSERT INTO "trip" VALUES(909967,745,'8/28/2015 13:48','Market at 10th',67,'8/28/2015 14:00','Commercial at Montgomery',45,659,'Subscriber',94117); +INSERT INTO "trip" VALUES(909968,11280,'8/28/2015 13:47','Embarcadero at Sansome',60,'8/28/2015 16:55','Mechanics Plaza (Market at Battery)',75,439,'Customer',94566); +INSERT INTO "trip" VALUES(909969,8586,'8/28/2015 13:50','San Francisco Caltrain 2 (330 Townsend)',69,'8/28/2015 16:13','Embarcadero at Sansome',60,555,'Customer',94401); +INSERT INTO "trip" VALUES(909970,8596,'8/28/2015 13:50','San Francisco Caltrain 2 (330 Townsend)',69,'8/28/2015 16:13','Embarcadero at Sansome',60,535,'Customer',94401); +INSERT INTO "trip" VALUES(909971,482,'8/28/2015 13:51','Yerba Buena Center of the Arts (3rd @ Howard)',68,'8/28/2015 13:59','2nd at South Park',64,594,'Subscriber',94602); +INSERT INTO "trip" VALUES(909972,668,'8/28/2015 13:52','Clay at Battery',41,'8/28/2015 14:03','Powell Street BART',39,578,'Customer',43); +INSERT INTO "trip" VALUES(909973,702,'8/28/2015 13:52','Clay at Battery',41,'8/28/2015 14:04','Powell Street BART',39,385,'Customer',43); +INSERT INTO "trip" VALUES(909974,329,'8/28/2015 13:54','Embarcadero at Sansome',60,'8/28/2015 13:59','Clay at Battery',41,553,'Subscriber',94133); +INSERT INTO "trip" VALUES(909975,243,'8/28/2015 13:54','San Jose Civic Center',3,'8/28/2015 13:58','SJSU 4th at San Carlos',12,213,'Subscriber',94070); +INSERT INTO "trip" VALUES(909976,521,'8/28/2015 13:55','Harry Bridges Plaza (Ferry Building)',50,'8/28/2015 14:04','Embarcadero at Sansome',60,478,'Subscriber',94122); +INSERT INTO "trip" VALUES(909977,501,'8/28/2015 13:56','San Francisco Caltrain (Townsend at 4th)',70,'8/28/2015 14:04','2nd at Folsom',62,568,'Subscriber',94590); +INSERT INTO "trip" VALUES(909978,883,'8/28/2015 13:56','Spear at Folsom',49,'8/28/2015 14:11','Grant Avenue at Columbus Avenue',73,558,'Subscriber',94133); +INSERT INTO "trip" VALUES(909979,400,'8/28/2015 14:00','Grant Avenue at Columbus Avenue',73,'8/28/2015 14:06','Market at Sansome',77,493,'Subscriber',94133); +INSERT INTO "trip" VALUES(909980,709,'8/28/2015 14:02','Temporary Transbay Terminal (Howard at Beale)',55,'8/28/2015 14:14','Townsend at 7th',65,284,'Subscriber',94119); +INSERT INTO "trip" VALUES(909981,299,'8/28/2015 13:59','Civic Center BART (7th at Market)',72,'8/28/2015 14:04','5th at Howard',57,457,'Subscriber',95035); +INSERT INTO "trip" VALUES(909982,263,'8/28/2015 14:04','Clay at Battery',41,'8/28/2015 14:09','Davis at Jackson',42,553,'Subscriber',94925); +INSERT INTO "trip" VALUES(909983,293,'8/28/2015 14:07','Market at 10th',67,'8/28/2015 14:12','Powell Street BART',39,332,'Subscriber',94702); +INSERT INTO "trip" VALUES(909984,961,'8/28/2015 14:08','Washington at Kearny',46,'8/28/2015 14:24','Powell Street BART',39,456,'Subscriber',94133); +INSERT INTO "trip" VALUES(909985,218,'8/28/2015 14:11','Howard at 2nd',63,'8/28/2015 14:14','2nd at South Park',64,454,'Subscriber',94118); +INSERT INTO "trip" VALUES(909986,748,'8/28/2015 14:12','Commercial at Montgomery',45,'8/28/2015 14:24','Embarcadero at Bryant',54,659,'Subscriber',94105); +INSERT INTO "trip" VALUES(909987,1173,'8/28/2015 14:12','Market at Sansome',77,'8/28/2015 14:31','Embarcadero at Bryant',54,370,'Subscriber',94105); +INSERT INTO "trip" VALUES(909988,545,'8/28/2015 14:13','2nd at Townsend',61,'8/28/2015 14:22','Harry Bridges Plaza (Ferry Building)',50,636,'Subscriber',94107); +INSERT INTO "trip" VALUES(909989,905,'8/28/2015 14:15','Washington at Kearny',46,'8/28/2015 14:30','Washington at Kearny',46,480,'Customer',94086); +INSERT INTO "trip" VALUES(909990,518,'8/28/2015 14:17','Market at 10th',67,'8/28/2015 14:25','Market at Sansome',77,275,'Subscriber',94402); +INSERT INTO "trip" VALUES(909991,587,'8/28/2015 14:17','5th at Howard',57,'8/28/2015 14:27','Temporary Transbay Terminal (Howard at Beale)',55,285,'Subscriber',94610); +INSERT INTO "trip" VALUES(909992,1253,'8/28/2015 14:18','Powell Street BART',39,'8/28/2015 14:39','Commercial at Montgomery',45,318,'Customer',43302); +INSERT INTO "trip" VALUES(909993,240,'8/28/2015 14:18','Townsend at 7th',65,'8/28/2015 14:22','San Francisco Caltrain 2 (330 Townsend)',69,284,'Subscriber',94107); +INSERT INTO "trip" VALUES(909994,211,'8/28/2015 14:19','SJSU 4th at San Carlos',12,'8/28/2015 14:22','San Jose Civic Center',3,213,'Subscriber',94070); +INSERT INTO "trip" VALUES(909995,412,'8/28/2015 14:20','Embarcadero at Sansome',60,'8/28/2015 14:27','Mechanics Plaza (Market at Battery)',75,86,'Subscriber',94111); +INSERT INTO "trip" VALUES(909996,599,'8/28/2015 14:23','Townsend at 7th',65,'8/28/2015 14:33','Market at 10th',67,631,'Subscriber',94102); +INSERT INTO "trip" VALUES(909997,251,'8/28/2015 14:23','Spear at Folsom',49,'8/28/2015 14:28','Steuart at Market',74,401,'Subscriber',94105); +INSERT INTO "trip" VALUES(909998,557,'8/28/2015 14:31','Embarcadero at Folsom',51,'8/28/2015 14:40','San Francisco Caltrain 2 (330 Townsend)',69,526,'Subscriber',94606); +INSERT INTO "trip" VALUES(909999,460,'8/28/2015 14:36','2nd at Townsend',61,'8/28/2015 14:44','Steuart at Market',74,453,'Subscriber',94588); +INSERT INTO "trip" VALUES(910000,649,'8/28/2015 14:44','Townsend at 7th',65,'8/28/2015 14:55','Embarcadero at Folsom',51,606,'Subscriber',94119); +INSERT INTO "trip" VALUES(910001,494,'8/28/2015 14:44','Golden Gate at Polk',59,'8/28/2015 14:52','Powell at Post (Union Square)',71,191,'Subscriber',94602); +INSERT INTO "trip" VALUES(910002,168,'8/28/2015 14:45','Yerba Buena Center of the Arts (3rd @ Howard)',68,'8/28/2015 14:48','Market at 4th',76,352,'Subscriber',94707); +INSERT INTO "trip" VALUES(910003,362,'8/28/2015 14:46','Embarcadero at Bryant',54,'8/28/2015 14:52','Mechanics Plaza (Market at Battery)',75,508,'Subscriber',94105); +INSERT INTO "trip" VALUES(910004,161,'8/28/2015 14:47','2nd at Townsend',61,'8/28/2015 14:49','2nd at South Park',64,602,'Subscriber',94107); +INSERT INTO "trip" VALUES(910005,963,'8/28/2015 14:47','Clay at Battery',41,'8/28/2015 15:03','San Francisco Caltrain 2 (330 Townsend)',69,531,'Subscriber',94025); +INSERT INTO "trip" VALUES(910006,689,'8/28/2015 14:47','Mechanics Plaza (Market at Battery)',75,'8/28/2015 14:59','Embarcadero at Sansome',60,277,'Customer',10024); +INSERT INTO "trip" VALUES(910007,614,'8/28/2015 14:50','Steuart at Market',74,'8/28/2015 15:00','San Francisco Caltrain 2 (330 Townsend)',69,375,'Subscriber',94105); +INSERT INTO "trip" VALUES(910008,918,'8/28/2015 14:53','Spear at Folsom',49,'8/28/2015 15:08','Golden Gate at Polk',59,544,'Subscriber',94109); +INSERT INTO "trip" VALUES(910009,539,'8/28/2015 14:53','Temporary Transbay Terminal (Howard at Beale)',55,'8/28/2015 15:02','San Francisco Caltrain 2 (330 Townsend)',69,579,'Subscriber',94404); +INSERT INTO "trip" VALUES(910010,550,'8/28/2015 14:59','Davis at Jackson',42,'8/28/2015 15:08','Embarcadero at Sansome',60,342,'Customer',94086); +INSERT INTO "trip" VALUES(910011,277,'8/28/2015 14:59','Howard at 2nd',63,'8/28/2015 15:04','5th at Howard',57,511,'Subscriber',94116); +INSERT INTO "trip" VALUES(910012,643,'8/28/2015 15:01','Clay at Battery',41,'8/28/2015 15:12','Spear at Folsom',49,586,'Customer',94111); +INSERT INTO "trip" VALUES(910013,660,'8/28/2015 15:01','Embarcadero at Sansome',60,'8/28/2015 15:12','Market at Sansome',77,290,'Subscriber',94947); +INSERT INTO "trip" VALUES(910014,855,'8/28/2015 15:02','Townsend at 7th',65,'8/28/2015 15:17','Harry Bridges Plaza (Ferry Building)',50,287,'Subscriber',94941); +INSERT INTO "trip" VALUES(910015,1196,'8/28/2015 15:02','Embarcadero at Sansome',60,'8/28/2015 15:22','San Francisco Caltrain (Townsend at 4th)',70,502,'Customer',10024); +INSERT INTO "trip" VALUES(910016,854,'8/28/2015 15:02','Clay at Battery',41,'8/28/2015 15:17','San Francisco Caltrain 2 (330 Townsend)',69,350,'Subscriber',94401); +INSERT INTO "trip" VALUES(910017,500,'8/28/2015 15:02','South Van Ness at Market',66,'8/28/2015 15:11','Townsend at 7th',65,269,'Subscriber',94107); +INSERT INTO "trip" VALUES(910018,653,'8/28/2015 15:03','San Francisco Caltrain 2 (330 Townsend)',69,'8/28/2015 15:14','Steuart at Market',74,366,'Subscriber',94606); +INSERT INTO "trip" VALUES(910019,650,'8/28/2015 15:03','San Francisco Caltrain 2 (330 Townsend)',69,'8/28/2015 15:14','San Francisco Caltrain (Townsend at 4th)',70,579,'Subscriber',94404); +INSERT INTO "trip" VALUES(910020,649,'8/28/2015 15:03','Harry Bridges Plaza (Ferry Building)',50,'8/28/2015 15:14','San Francisco Caltrain (Townsend at 4th)',70,271,'Subscriber',94062); +INSERT INTO "trip" VALUES(910021,866,'8/28/2015 15:04','2nd at Townsend',61,'8/28/2015 15:19','Embarcadero at Sansome',60,259,'Customer','nil'); +INSERT INTO "trip" VALUES(910023,654,'8/28/2015 15:07','Embarcadero at Folsom',51,'8/28/2015 15:18','San Francisco Caltrain (Townsend at 4th)',70,379,'Subscriber',94062); +INSERT INTO "trip" VALUES(910024,356,'8/28/2015 15:07','Broadway St at Battery St',82,'8/28/2015 15:13','Mechanics Plaza (Market at Battery)',75,465,'Subscriber',94114); +INSERT INTO "trip" VALUES(910027,209,'8/28/2015 15:09','St James Park',13,'8/28/2015 15:13','MLK Library',11,168,'Subscriber',95035); +INSERT INTO "trip" VALUES(910028,422,'8/28/2015 15:09','Broadway St at Battery St',82,'8/28/2015 15:16','Temporary Transbay Terminal (Howard at Beale)',55,419,'Subscriber',94608); +INSERT INTO "trip" VALUES(910029,785,'8/28/2015 15:12','Embarcadero at Vallejo',48,'8/28/2015 15:25','San Francisco Caltrain (Townsend at 4th)',70,431,'Customer',94114); +INSERT INTO "trip" VALUES(910030,1294,'8/28/2015 15:12','Mechanics Plaza (Market at Battery)',75,'8/28/2015 15:33','San Francisco Caltrain (Townsend at 4th)',70,288,'Subscriber',94040); +INSERT INTO "trip" VALUES(910031,297,'8/28/2015 15:12','Civic Center BART (7th at Market)',72,'8/28/2015 15:17','Yerba Buena Center of the Arts (3rd @ Howard)',68,397,'Subscriber',94102); +INSERT INTO "trip" VALUES(910033,644,'8/28/2015 15:13','Temporary Transbay Terminal (Howard at Beale)',55,'8/28/2015 15:24','San Francisco Caltrain (Townsend at 4th)',70,537,'Subscriber',94025); +INSERT INTO "trip" VALUES(910037,352,'8/28/2015 15:20','2nd at South Park',64,'8/28/2015 15:26','Embarcadero at Folsom',51,530,'Subscriber',94947); +INSERT INTO "trip" VALUES(910040,385,'8/28/2015 15:20','Embarcadero at Vallejo',48,'8/28/2015 15:26','Beale at Market',56,494,'Subscriber',94610); +INSERT INTO "trip" VALUES(910041,209,'8/28/2015 15:20','Post at Kearny',47,'8/28/2015 15:24','Washington at Kearny',46,421,'Subscriber',94133); +INSERT INTO "trip" VALUES(910044,717,'8/28/2015 15:22','Yerba Buena Center of the Arts (3rd @ Howard)',68,'8/28/2015 15:34','Townsend at 7th',65,291,'Subscriber',94107); +INSERT INTO "trip" VALUES(910045,1308,'8/28/2015 15:23','Civic Center BART (7th at Market)',72,'8/28/2015 15:45','Embarcadero at Sansome',60,463,'Customer',18977); +INSERT INTO "trip" VALUES(910048,707,'8/28/2015 15:24','Davis at Jackson',42,'8/28/2015 15:35','Powell Street BART',39,403,'Customer',94111); +INSERT INTO "trip" VALUES(910050,638,'8/28/2015 15:24','Commercial at Montgomery',45,'8/28/2015 15:35','Civic Center BART (7th at Market)',72,514,'Subscriber',94702); +INSERT INTO "trip" VALUES(910054,2070,'8/28/2015 15:26','Embarcadero at Sansome',60,'8/28/2015 16:00','Golden Gate at Polk',59,672,'Customer',20002); +INSERT INTO "trip" VALUES(910055,2070,'8/28/2015 15:26','Embarcadero at Sansome',60,'8/28/2015 16:00','Golden Gate at Polk',59,437,'Customer',20002); +INSERT INTO "trip" VALUES(910056,787,'8/28/2015 15:27','Broadway St at Battery St',82,'8/28/2015 15:40','Market at 4th',76,553,'Subscriber',94118); +INSERT INTO "trip" VALUES(910058,4634,'8/28/2015 15:27','Grant Avenue at Columbus Avenue',73,'8/28/2015 16:45','Embarcadero at Sansome',60,622,'Customer',80123); +INSERT INTO "trip" VALUES(910060,4612,'8/28/2015 15:28','Grant Avenue at Columbus Avenue',73,'8/28/2015 16:45','Embarcadero at Sansome',60,495,'Customer',80123); +INSERT INTO "trip" VALUES(910061,557,'8/28/2015 15:29','Temporary Transbay Terminal (Howard at Beale)',55,'8/28/2015 15:39','San Francisco Caltrain 2 (330 Townsend)',69,623,'Subscriber',94158); +INSERT INTO "trip" VALUES(910063,742,'8/28/2015 15:31','Stanford in Redwood City',25,'8/28/2015 15:43','Redwood City Caltrain Station',22,122,'Subscriber',95037); +INSERT INTO "trip" VALUES(910064,447,'8/28/2015 15:31','San Jose City Hall',10,'8/28/2015 15:39','San Jose Diridon Caltrain Station',2,64,'Subscriber',94110); +INSERT INTO "trip" VALUES(910065,247,'8/28/2015 15:32','2nd at South Park',64,'8/28/2015 15:36','Howard at 2nd',63,594,'Subscriber',94107); +INSERT INTO "trip" VALUES(910066,11543,'8/28/2015 15:35','Embarcadero at Sansome',60,'8/28/2015 18:48','Steuart at Market',74,277,'Customer','nil'); +INSERT INTO "trip" VALUES(910067,270,'8/28/2015 15:36','Davis at Jackson',42,'8/28/2015 15:41','Clay at Battery',41,283,'Subscriber',94925); +INSERT INTO "trip" VALUES(910068,873,'8/28/2015 15:38','Yerba Buena Center of the Arts (3rd @ Howard)',68,'8/28/2015 15:53','Townsend at 7th',65,193,'Subscriber',94107); +INSERT INTO "trip" VALUES(910069,770,'8/28/2015 15:39','Harry Bridges Plaza (Ferry Building)',50,'8/28/2015 15:52','San Francisco Caltrain (Townsend at 4th)',70,636,'Subscriber',93401); +INSERT INTO "trip" VALUES(910070,819,'8/28/2015 15:39','Townsend at 7th',65,'8/28/2015 15:53','Harry Bridges Plaza (Ferry Building)',50,274,'Subscriber',94501); +INSERT INTO "trip" VALUES(910071,377,'8/28/2015 15:40','Beale at Market',56,'8/28/2015 15:46','Embarcadero at Vallejo',48,494,'Subscriber',94610); +INSERT INTO "trip" VALUES(910072,142,'8/28/2015 15:41','2nd at South Park',64,'8/28/2015 15:43','2nd at Townsend',61,602,'Subscriber',94107); +INSERT INTO "trip" VALUES(910073,621,'8/28/2015 15:41','Market at Sansome',77,'8/28/2015 15:51','Grant Avenue at Columbus Avenue',73,290,'Subscriber',94133); +INSERT INTO "trip" VALUES(910075,11128,'8/28/2015 15:42','Embarcadero at Sansome',60,'8/28/2015 18:47','Steuart at Market',74,478,'Customer','nil'); +INSERT INTO "trip" VALUES(910076,655,'8/28/2015 15:42','2nd at Townsend',61,'8/28/2015 15:53','Harry Bridges Plaza (Ferry Building)',50,599,'Customer',94501); +INSERT INTO "trip" VALUES(910077,574,'8/28/2015 15:43','Embarcadero at Folsom',51,'8/28/2015 15:52','San Francisco Caltrain (Townsend at 4th)',70,606,'Subscriber',94306); +INSERT INTO "trip" VALUES(910078,203,'8/28/2015 15:46','Townsend at 7th',65,'8/28/2015 15:50','San Francisco Caltrain 2 (330 Townsend)',69,428,'Subscriber',94107); +INSERT INTO "trip" VALUES(910079,832,'8/28/2015 15:47','San Francisco Caltrain 2 (330 Townsend)',69,'8/28/2015 16:00','Market at 4th',76,531,'Customer',10024); +INSERT INTO "trip" VALUES(910080,1154,'8/28/2015 15:46','Beale at Market',56,'8/28/2015 16:06','San Francisco Caltrain (Townsend at 4th)',70,338,'Subscriber',94303); +INSERT INTO "trip" VALUES(910081,709,'8/28/2015 15:47','San Francisco Caltrain (Townsend at 4th)',70,'8/28/2015 15:58','Harry Bridges Plaza (Ferry Building)',50,579,'Subscriber',94591); +INSERT INTO "trip" VALUES(910082,493,'8/28/2015 15:48','San Francisco Caltrain 2 (330 Townsend)',69,'8/28/2015 15:56','Civic Center BART (7th at Market)',72,375,'Subscriber',94563); +INSERT INTO "trip" VALUES(910083,390,'8/28/2015 15:48','2nd at Townsend',61,'8/28/2015 15:55','Market at Sansome',77,351,'Subscriber',94539); +INSERT INTO "trip" VALUES(910084,1091,'8/28/2015 15:49','Steuart at Market',74,'8/28/2015 16:07','San Francisco Caltrain (Townsend at 4th)',70,401,'Subscriber',94065); +INSERT INTO "trip" VALUES(910085,811,'8/28/2015 15:50','Commercial at Montgomery',45,'8/28/2015 16:04','San Francisco Caltrain (Townsend at 4th)',70,318,'Subscriber',94043); +INSERT INTO "trip" VALUES(910086,178,'8/28/2015 15:52','Townsend at 7th',65,'8/28/2015 15:55','San Francisco Caltrain 2 (330 Townsend)',69,209,'Subscriber',94043); +INSERT INTO "trip" VALUES(910087,608,'8/28/2015 15:52','Howard at 2nd',63,'8/28/2015 16:02','San Francisco Caltrain (Townsend at 4th)',70,212,'Subscriber',94070); +INSERT INTO "trip" VALUES(910088,262,'8/28/2015 15:52','Steuart at Market',74,'8/28/2015 15:57','Embarcadero at Bryant',54,504,'Subscriber',94105); +INSERT INTO "trip" VALUES(910089,528,'8/28/2015 15:53','Townsend at 7th',65,'8/28/2015 16:01','Golden Gate at Polk',59,269,'Subscriber',94109); +INSERT INTO "trip" VALUES(910091,107,'8/28/2015 15:56','San Francisco City Hall',58,'8/28/2015 15:58','Golden Gate at Polk',59,483,'Subscriber',94121); +INSERT INTO "trip" VALUES(910092,479,'8/28/2015 15:56','2nd at South Park',64,'8/28/2015 16:04','Harry Bridges Plaza (Ferry Building)',50,454,'Subscriber',94904); +INSERT INTO "trip" VALUES(910093,421,'8/28/2015 15:56','Embarcadero at Vallejo',48,'8/28/2015 16:03','Temporary Transbay Terminal (Howard at Beale)',55,534,'Subscriber',94602); +INSERT INTO "trip" VALUES(910094,589,'8/28/2015 15:57','Temporary Transbay Terminal (Howard at Beale)',55,'8/28/2015 16:06','San Francisco Caltrain (Townsend at 4th)',70,334,'Subscriber',95050); +INSERT INTO "trip" VALUES(910095,485,'8/28/2015 15:57','Civic Center BART (7th at Market)',72,'8/28/2015 16:05','Temporary Transbay Terminal (Howard at Beale)',55,393,'Subscriber',94602); +INSERT INTO "trip" VALUES(910096,791,'8/28/2015 15:59','Spear at Folsom',49,'8/28/2015 16:13','Townsend at 7th',65,416,'Subscriber',94103); +INSERT INTO "trip" VALUES(910097,354,'8/28/2015 16:00','Clay at Battery',41,'8/28/2015 16:06','Temporary Transbay Terminal (Howard at Beale)',55,283,'Subscriber',94501); +INSERT INTO "trip" VALUES(910098,403,'8/28/2015 16:00','Howard at 2nd',63,'8/28/2015 16:07','San Francisco Caltrain 2 (330 Townsend)',69,632,'Subscriber',94062); +INSERT INTO "trip" VALUES(910099,257,'8/28/2015 16:01','Broadway St at Battery St',82,'8/28/2015 16:05','Harry Bridges Plaza (Ferry Building)',50,566,'Subscriber',94941); +INSERT INTO "trip" VALUES(910100,757,'8/28/2015 16:02','Market at Sansome',77,'8/28/2015 16:14','San Francisco Caltrain 2 (330 Townsend)',69,404,'Subscriber',94002); +INSERT INTO "trip" VALUES(910101,243,'8/28/2015 16:03','2nd at Folsom',62,'8/28/2015 16:07','Beale at Market',56,373,'Subscriber',94602); +INSERT INTO "trip" VALUES(910102,514,'8/28/2015 16:03','Embarcadero at Sansome',60,'8/28/2015 16:12','Harry Bridges Plaza (Ferry Building)',50,463,'Subscriber',94530); +INSERT INTO "trip" VALUES(910103,505,'8/28/2015 16:03','Steuart at Market',74,'8/28/2015 16:12','Post at Kearny',47,453,'Customer',94965); +INSERT INTO "trip" VALUES(910104,680,'8/28/2015 16:04','Steuart at Market',74,'8/28/2015 16:16','San Francisco Caltrain (Townsend at 4th)',70,394,'Subscriber',94002); +INSERT INTO "trip" VALUES(910105,419,'8/28/2015 16:05','5th at Howard',57,'8/28/2015 16:12','Temporary Transbay Terminal (Howard at Beale)',55,505,'Subscriber',94501); +INSERT INTO "trip" VALUES(910106,860,'8/28/2015 16:06','San Francisco Caltrain 2 (330 Townsend)',69,'8/28/2015 16:20','Commercial at Montgomery',45,428,'Customer',94611); +INSERT INTO "trip" VALUES(910107,611,'8/28/2015 16:06','Temporary Transbay Terminal (Howard at Beale)',55,'8/28/2015 16:17','San Francisco Caltrain (Townsend at 4th)',70,563,'Subscriber',94022); +INSERT INTO "trip" VALUES(910108,294,'8/28/2015 16:06','Adobe on Almaden',5,'8/28/2015 16:11','San Jose Diridon Caltrain Station',2,32,'Subscriber',94043); +INSERT INTO "trip" VALUES(910109,1162,'8/28/2015 16:06','Clay at Battery',41,'8/28/2015 16:26','San Francisco Caltrain (Townsend at 4th)',70,590,'Subscriber',94061); +INSERT INTO "trip" VALUES(910110,740,'8/28/2015 16:07','South Van Ness at Market',66,'8/28/2015 16:19','San Francisco Caltrain 2 (330 Townsend)',69,601,'Subscriber',95122); +INSERT INTO "trip" VALUES(910111,742,'8/28/2015 16:07','Temporary Transbay Terminal (Howard at Beale)',55,'8/28/2015 16:20','San Francisco Caltrain (Townsend at 4th)',70,609,'Subscriber',94030); +INSERT INTO "trip" VALUES(910112,832,'8/28/2015 16:08','San Francisco Caltrain (Townsend at 4th)',70,'8/28/2015 16:21','Clay at Battery',41,318,'Subscriber',94111); +INSERT INTO "trip" VALUES(910113,247,'8/28/2015 16:08','Cowper at University',37,'8/28/2015 16:12','Palo Alto Caltrain Station',34,707,'Subscriber',94108); +INSERT INTO "trip" VALUES(910114,680,'8/28/2015 16:08','Beale at Market',56,'8/28/2015 16:20','San Francisco Caltrain (Townsend at 4th)',70,373,'Subscriber',94117); +INSERT INTO "trip" VALUES(910115,325,'8/28/2015 16:08','5th at Howard',57,'8/28/2015 16:14','San Francisco Caltrain 2 (330 Townsend)',69,386,'Subscriber',94401); +INSERT INTO "trip" VALUES(910118,771,'8/28/2015 16:09','South Van Ness at Market',66,'8/28/2015 16:22','Howard at 2nd',63,431,'Subscriber',94709); +INSERT INTO "trip" VALUES(910119,639,'8/28/2015 16:10','2nd at Townsend',61,'8/28/2015 16:21','Harry Bridges Plaza (Ferry Building)',50,602,'Subscriber',94904); +INSERT INTO "trip" VALUES(910122,589,'8/28/2015 16:10','South Van Ness at Market',66,'8/28/2015 16:20','San Francisco Caltrain 2 (330 Townsend)',69,469,'Subscriber',94107); +INSERT INTO "trip" VALUES(910123,758,'8/28/2015 16:11','Beale at Market',56,'8/28/2015 16:24','San Francisco Caltrain 2 (330 Townsend)',69,506,'Subscriber',95136); +INSERT INTO "trip" VALUES(910125,176,'8/28/2015 16:12','Broadway St at Battery St',82,'8/28/2015 16:15','Clay at Battery',41,335,'Subscriber',94111); +INSERT INTO "trip" VALUES(910126,889,'8/28/2015 16:12','Embarcadero at Folsom',51,'8/28/2015 16:27','Townsend at 7th',65,409,'Subscriber',94107); +INSERT INTO "trip" VALUES(910127,731,'8/28/2015 16:12','Beale at Market',56,'8/28/2015 16:24','Powell Street BART',39,525,'Customer',94501); +INSERT INTO "trip" VALUES(910128,657,'8/28/2015 16:13','Beale at Market',56,'8/28/2015 16:23','Powell Street BART',39,327,'Customer',94501); +INSERT INTO "trip" VALUES(910130,427,'8/28/2015 16:13','Townsend at 7th',65,'8/28/2015 16:20','Civic Center BART (7th at Market)',72,416,'Subscriber',94582); +INSERT INTO "trip" VALUES(910131,473,'8/28/2015 16:13','Embarcadero at Folsom',51,'8/28/2015 16:21','San Francisco Caltrain (Townsend at 4th)',70,434,'Subscriber',94070); +INSERT INTO "trip" VALUES(910134,557,'8/28/2015 16:14','Townsend at 7th',65,'8/28/2015 16:23','San Francisco Caltrain 2 (330 Townsend)',69,193,'Customer',95691); +INSERT INTO "trip" VALUES(910136,557,'8/28/2015 16:14','Temporary Transbay Terminal (Howard at Beale)',55,'8/28/2015 16:23','San Francisco Caltrain (Townsend at 4th)',70,505,'Subscriber',95008); +INSERT INTO "trip" VALUES(910138,163,'8/28/2015 16:14','San Francisco City Hall',58,'8/28/2015 16:17','South Van Ness at Market',66,468,'Subscriber',94530); +INSERT INTO "trip" VALUES(910139,552,'8/28/2015 16:15','2nd at South Park',64,'8/28/2015 16:24','Market at Sansome',77,317,'Subscriber',94549); +INSERT INTO "trip" VALUES(910140,342,'8/28/2015 16:15','Evelyn Park and Ride',30,'8/28/2015 16:20','Mountain View Caltrain Station',28,251,'Subscriber',94111); +INSERT INTO "trip" VALUES(910141,392,'8/28/2015 16:15','Embarcadero at Vallejo',48,'8/28/2015 16:21','Temporary Transbay Terminal (Howard at Beale)',55,576,'Subscriber',94611); +INSERT INTO "trip" VALUES(910143,418,'8/28/2015 16:15','2nd at Folsom',62,'8/28/2015 16:22','Harry Bridges Plaza (Ferry Building)',50,450,'Subscriber',94558); +INSERT INTO "trip" VALUES(910144,261,'8/28/2015 16:15','Howard at 2nd',63,'8/28/2015 16:20','5th at Howard',57,517,'Subscriber',94117); +INSERT INTO "trip" VALUES(910145,1841,'8/28/2015 16:16','Townsend at 7th',65,'8/28/2015 16:47','Harry Bridges Plaza (Ferry Building)',50,291,'Customer',95819); +INSERT INTO "trip" VALUES(910146,700,'8/28/2015 16:17','San Francisco City Hall',58,'8/28/2015 16:29','San Francisco Caltrain 2 (330 Townsend)',69,572,'Customer',10579); +INSERT INTO "trip" VALUES(910147,436,'8/28/2015 16:18','Civic Center BART (7th at Market)',72,'8/28/2015 16:25','Temporary Transbay Terminal (Howard at Beale)',55,375,'Subscriber',94710); +INSERT INTO "trip" VALUES(910148,244,'8/28/2015 16:18','Embarcadero at Vallejo',48,'8/28/2015 16:22','Steuart at Market',74,494,'Subscriber',94608); +INSERT INTO "trip" VALUES(910149,567,'8/28/2015 16:18','Temporary Transbay Terminal (Howard at Beale)',55,'8/28/2015 16:28','San Francisco Caltrain (Townsend at 4th)',70,534,'Subscriber',95014); +INSERT INTO "trip" VALUES(910151,378,'8/28/2015 16:20','San Jose Civic Center',3,'8/28/2015 16:26','San Jose Diridon Caltrain Station',2,213,'Subscriber',94070); +INSERT INTO "trip" VALUES(910152,250,'8/28/2015 16:20','Embarcadero at Vallejo',48,'8/28/2015 16:24','Steuart at Market',74,413,'Subscriber',94706); +INSERT INTO "trip" VALUES(910153,410,'8/28/2015 16:20','5th at Howard',57,'8/28/2015 16:27','2nd at South Park',64,457,'Customer',95062); +INSERT INTO "trip" VALUES(910154,577,'8/28/2015 16:20','Commercial at Montgomery',45,'8/28/2015 16:30','Embarcadero at Bryant',54,359,'Subscriber',94010); +INSERT INTO "trip" VALUES(910155,805,'8/28/2015 16:21','Embarcadero at Vallejo',48,'8/28/2015 16:34','San Francisco Caltrain (Townsend at 4th)',70,137,'Subscriber',94089); +INSERT INTO "trip" VALUES(910156,391,'8/28/2015 16:21','5th at Howard',57,'8/28/2015 16:27','2nd at South Park',64,511,'Customer',95062); +INSERT INTO "trip" VALUES(910157,440,'8/28/2015 16:21','Market at Sansome',77,'8/28/2015 16:28','Grant Avenue at Columbus Avenue',73,351,'Subscriber',94104); +INSERT INTO "trip" VALUES(910158,622,'8/28/2015 16:22','San Francisco Caltrain 2 (330 Townsend)',69,'8/28/2015 16:33','2nd at South Park',64,469,'Subscriber',94107); +INSERT INTO "trip" VALUES(910159,225,'8/28/2015 16:25','Clay at Battery',41,'8/28/2015 16:28','Broadway St at Battery St',82,335,'Subscriber',94111); +INSERT INTO "trip" VALUES(910160,1350,'8/28/2015 16:25','California Ave Caltrain Station',36,'8/28/2015 16:47','Cowper at University',37,75,'Customer',55); +INSERT INTO "trip" VALUES(910161,408,'8/28/2015 16:26','Commercial at Montgomery',45,'8/28/2015 16:33','Temporary Transbay Terminal (Howard at Beale)',55,325,'Subscriber',94530); +INSERT INTO "trip" VALUES(910162,526,'8/28/2015 16:27','San Francisco Caltrain 2 (330 Townsend)',69,'8/28/2015 16:36','Harry Bridges Plaza (Ferry Building)',50,193,'Subscriber',94901); +INSERT INTO "trip" VALUES(910164,672,'8/28/2015 16:29','Harry Bridges Plaza (Ferry Building)',50,'8/28/2015 16:40','San Francisco Caltrain (Townsend at 4th)',70,384,'Subscriber',94303); +INSERT INTO "trip" VALUES(910165,414,'8/28/2015 16:29','2nd at Folsom',62,'8/28/2015 16:36','San Francisco Caltrain (Townsend at 4th)',70,568,'Subscriber',94403); +INSERT INTO "trip" VALUES(910166,744,'8/28/2015 16:30','Mechanics Plaza (Market at Battery)',75,'8/28/2015 16:42','San Francisco Caltrain 2 (330 Townsend)',69,415,'Subscriber',94070); +INSERT INTO "trip" VALUES(910167,826,'8/28/2015 16:31','San Francisco City Hall',58,'8/28/2015 16:45','San Francisco Caltrain 2 (330 Townsend)',69,497,'Subscriber',94087); +INSERT INTO "trip" VALUES(910168,62,'8/28/2015 16:32','Embarcadero at Sansome',60,'8/28/2015 16:33','Embarcadero at Sansome',60,535,'Customer',18977); +INSERT INTO "trip" VALUES(910169,113,'8/28/2015 16:32','Howard at 2nd',63,'8/28/2015 16:34','Market at Sansome',77,395,'Subscriber',94114); +INSERT INTO "trip" VALUES(910170,534,'8/28/2015 16:32','Mechanics Plaza (Market at Battery)',75,'8/28/2015 16:41','San Francisco Caltrain (Townsend at 4th)',70,309,'Subscriber',95014); +INSERT INTO "trip" VALUES(910173,657,'8/28/2015 16:33','Steuart at Market',74,'8/28/2015 16:44','San Francisco Caltrain 2 (330 Townsend)',69,494,'Subscriber',94024); +INSERT INTO "trip" VALUES(910174,809,'8/28/2015 16:33','Embarcadero at Sansome',60,'8/28/2015 16:47','Temporary Transbay Terminal (Howard at Beale)',55,592,'Customer',18977); +INSERT INTO "trip" VALUES(910175,560,'8/28/2015 16:34','Market at 10th',67,'8/28/2015 16:43','San Francisco Caltrain 2 (330 Townsend)',69,538,'Subscriber',94041); +INSERT INTO "trip" VALUES(910176,774,'8/28/2015 16:34','Powell at Post (Union Square)',71,'8/28/2015 16:47','2nd at Townsend',61,529,'Subscriber',94109); +INSERT INTO "trip" VALUES(910177,524,'8/28/2015 16:34','Market at 10th',67,'8/28/2015 16:43','San Francisco Caltrain 2 (330 Townsend)',69,631,'Subscriber',94404); +INSERT INTO "trip" VALUES(910178,726,'8/28/2015 16:34','Commercial at Montgomery',45,'8/28/2015 16:46','San Francisco Caltrain 2 (330 Townsend)',69,187,'Subscriber',94002); +INSERT INTO "trip" VALUES(910179,465,'8/28/2015 16:35','2nd at Townsend',61,'8/28/2015 16:42','Harry Bridges Plaza (Ferry Building)',50,557,'Subscriber',94503); +INSERT INTO "trip" VALUES(910180,470,'8/28/2015 16:35','San Francisco Caltrain 2 (330 Townsend)',69,'8/28/2015 16:43','Powell Street BART',39,601,'Subscriber',94606); +INSERT INTO "trip" VALUES(910181,252,'8/28/2015 16:35','Beale at Market',56,'8/28/2015 16:39','Davis at Jackson',42,387,'Subscriber',94111); +INSERT INTO "trip" VALUES(910182,372,'8/28/2015 16:35','2nd at Townsend',61,'8/28/2015 16:41','Harry Bridges Plaza (Ferry Building)',50,389,'Subscriber',94903); +INSERT INTO "trip" VALUES(910183,475,'8/28/2015 16:35','Market at 4th',76,'8/28/2015 16:43','Temporary Transbay Terminal (Howard at Beale)',55,687,'Subscriber',94501); +INSERT INTO "trip" VALUES(910184,745,'8/28/2015 16:35','2nd at South Park',64,'8/28/2015 16:48','Golden Gate at Polk',59,360,'Subscriber',94109); +INSERT INTO "trip" VALUES(910185,436,'8/28/2015 16:36','Townsend at 7th',65,'8/28/2015 16:43','Civic Center BART (7th at Market)',72,409,'Subscriber',94598); +INSERT INTO "trip" VALUES(910186,447,'8/28/2015 16:36','Mechanics Plaza (Market at Battery)',75,'8/28/2015 16:44','Embarcadero at Sansome',60,86,'Subscriber',94133); +INSERT INTO "trip" VALUES(910187,273,'8/28/2015 16:36','Embarcadero at Sansome',60,'8/28/2015 16:41','Steuart at Market',74,259,'Subscriber',94611); +INSERT INTO "trip" VALUES(910188,1222,'8/28/2015 16:37','2nd at Townsend',61,'8/28/2015 16:57','Townsend at 7th',65,630,'Subscriber',94107); +INSERT INTO "trip" VALUES(910189,874,'8/28/2015 16:37','San Francisco Caltrain (Townsend at 4th)',70,'8/28/2015 16:52','Embarcadero at Sansome',60,609,'Subscriber',94133); +INSERT INTO "trip" VALUES(910190,430,'8/28/2015 16:38','Market at Sansome',77,'8/28/2015 16:45','2nd at South Park',64,266,'Subscriber',94110); +INSERT INTO "trip" VALUES(910191,524,'8/28/2015 16:38','Embarcadero at Sansome',60,'8/28/2015 16:47','Embarcadero at Sansome',60,279,'Subscriber',94133); +INSERT INTO "trip" VALUES(910192,745,'8/28/2015 16:39','Market at Sansome',77,'8/28/2015 16:51','San Francisco Caltrain (Townsend at 4th)',70,477,'Subscriber',94002); +INSERT INTO "trip" VALUES(910193,566,'8/28/2015 16:39','2nd at South Park',64,'8/28/2015 16:49','Harry Bridges Plaza (Ferry Building)',50,469,'Subscriber',94602); +INSERT INTO "trip" VALUES(910194,206,'8/28/2015 16:40','Mountain View City Hall',27,'8/28/2015 16:43','Mountain View Caltrain Station',28,192,'Subscriber',94103); +INSERT INTO "trip" VALUES(910195,579,'8/28/2015 16:40','Embarcadero at Sansome',60,'8/28/2015 16:50','Harry Bridges Plaza (Ferry Building)',50,535,'Subscriber',94587); +INSERT INTO "trip" VALUES(910196,365,'8/28/2015 16:40','Embarcadero at Sansome',60,'8/28/2015 16:46','Steuart at Market',74,342,'Subscriber',94609); +INSERT INTO "trip" VALUES(910197,1086,'8/28/2015 16:41','Clay at Battery',41,'8/28/2015 17:00','San Francisco Caltrain 2 (330 Townsend)',69,458,'Subscriber',94111); +INSERT INTO "trip" VALUES(910198,189,'8/28/2015 16:42','Embarcadero at Folsom',51,'8/28/2015 16:45','Harry Bridges Plaza (Ferry Building)',50,432,'Subscriber',94114); +INSERT INTO "trip" VALUES(910199,1251,'8/28/2015 16:42','5th at Howard',57,'8/28/2015 17:03','Market at Sansome',77,517,'Subscriber',94107); +INSERT INTO "trip" VALUES(910201,614,'8/28/2015 16:42','Temporary Transbay Terminal (Howard at Beale)',55,'8/28/2015 16:53','San Francisco Caltrain (Townsend at 4th)',70,283,'Subscriber',94402); +INSERT INTO "trip" VALUES(910202,184,'8/28/2015 16:42','Townsend at 7th',65,'8/28/2015 16:45','San Francisco Caltrain 2 (330 Townsend)',69,418,'Subscriber',94301); +INSERT INTO "trip" VALUES(910203,300,'8/28/2015 16:43','Broadway St at Battery St',82,'8/28/2015 16:48','Steuart at Market',74,335,'Subscriber',94556); +INSERT INTO "trip" VALUES(910204,523,'8/28/2015 16:43','Townsend at 7th',65,'8/28/2015 16:52','5th at Howard',57,364,'Subscriber',94107); +INSERT INTO "trip" VALUES(910205,578,'8/28/2015 16:43','Davis at Jackson',42,'8/28/2015 16:53','Market at 4th',76,391,'Subscriber',94111); +INSERT INTO "trip" VALUES(910206,254,'8/28/2015 16:44','Temporary Transbay Terminal (Howard at Beale)',55,'8/28/2015 16:48','2nd at Folsom',62,285,'Subscriber',94158); +INSERT INTO "trip" VALUES(910207,441,'8/28/2015 16:44','2nd at Folsom',62,'8/28/2015 16:51','Harry Bridges Plaza (Ferry Building)',50,402,'Subscriber',94973); +INSERT INTO "trip" VALUES(910208,1142,'8/28/2015 16:44','Golden Gate at Polk',59,'8/28/2015 17:03','2nd at Townsend',61,33,'Subscriber',94109); +INSERT INTO "trip" VALUES(910209,497,'8/28/2015 16:45','San Francisco Caltrain 2 (330 Townsend)',69,'8/28/2015 16:53','Townsend at 7th',65,538,'Customer',95691); +INSERT INTO "trip" VALUES(910211,405,'8/28/2015 16:45','Embarcadero at Sansome',60,'8/28/2015 16:52','Steuart at Market',74,622,'Subscriber',94595); +INSERT INTO "trip" VALUES(910212,3518,'8/28/2015 16:46','5th at Howard',57,'8/28/2015 17:44','5th at Howard',57,306,'Customer',81); +INSERT INTO "trip" VALUES(910213,379,'8/28/2015 16:48','Howard at 2nd',63,'8/28/2015 16:54','Harry Bridges Plaza (Ferry Building)',50,594,'Subscriber',94590); +INSERT INTO "trip" VALUES(910214,484,'8/28/2015 16:48','Temporary Transbay Terminal (Howard at Beale)',55,'8/28/2015 16:56','San Francisco Caltrain 2 (330 Townsend)',69,576,'Subscriber',94022); +INSERT INTO "trip" VALUES(910215,982,'8/28/2015 16:48','Davis at Jackson',42,'8/28/2015 17:04','San Francisco Caltrain (Townsend at 4th)',70,387,'Subscriber',94040); +INSERT INTO "trip" VALUES(910216,1789,'8/28/2015 16:48','Grant Avenue at Columbus Avenue',73,'8/28/2015 17:18','Grant Avenue at Columbus Avenue',73,351,'Customer',43302); +INSERT INTO "trip" VALUES(910217,905,'8/28/2015 16:48','Steuart at Market',74,'8/28/2015 17:03','Powell Street BART',39,492,'Subscriber',94108); +INSERT INTO "trip" VALUES(910218,695,'8/28/2015 16:49','Embarcadero at Folsom',51,'8/28/2015 17:00','San Francisco Caltrain (Townsend at 4th)',70,445,'Subscriber',95131); +INSERT INTO "trip" VALUES(910219,561,'8/28/2015 16:49','South Van Ness at Market',66,'8/28/2015 16:58','San Francisco Caltrain 2 (330 Townsend)',69,468,'Subscriber',95030); +INSERT INTO "trip" VALUES(910220,734,'8/28/2015 16:49','Townsend at 7th',65,'8/28/2015 17:01','Temporary Transbay Terminal (Howard at Beale)',55,455,'Subscriber',94602); +INSERT INTO "trip" VALUES(910221,616,'8/28/2015 16:50','Clay at Battery',41,'8/28/2015 17:00','Yerba Buena Center of the Arts (3rd @ Howard)',68,591,'Subscriber',94107); +INSERT INTO "trip" VALUES(910222,516,'8/28/2015 16:50','Howard at 2nd',63,'8/28/2015 16:59','San Francisco Caltrain 2 (330 Townsend)',69,431,'Subscriber',94111); +INSERT INTO "trip" VALUES(910223,464,'8/28/2015 16:50','2nd at Folsom',62,'8/28/2015 16:58','San Francisco Caltrain (Townsend at 4th)',70,581,'Subscriber',95112); +INSERT INTO "trip" VALUES(910224,801,'8/28/2015 16:50','2nd at South Park',64,'8/28/2015 17:04','Powell Street BART',39,266,'Customer',95062); +INSERT INTO "trip" VALUES(910225,526,'8/28/2015 16:51','San Francisco Caltrain (Townsend at 4th)',70,'8/28/2015 16:59','Powell Street BART',39,636,'Subscriber',94107); +INSERT INTO "trip" VALUES(910226,1248,'8/28/2015 16:51','2nd at South Park',64,'8/28/2015 17:11','Powell Street BART',39,511,'Customer',95062); +INSERT INTO "trip" VALUES(910227,758,'8/28/2015 16:52','Steuart at Market',74,'8/28/2015 17:04','San Francisco Caltrain (Townsend at 4th)',70,607,'Subscriber',95134); +INSERT INTO "trip" VALUES(910228,870,'8/28/2015 16:53','Beale at Market',56,'8/28/2015 17:08','San Francisco Caltrain 2 (330 Townsend)',69,386,'Subscriber',95148); +INSERT INTO "trip" VALUES(910229,947,'8/28/2015 16:54','Beale at Market',56,'8/28/2015 17:09','San Francisco Caltrain (Townsend at 4th)',70,632,'Subscriber',94402); +INSERT INTO "trip" VALUES(910230,876,'8/28/2015 16:54','Washington at Kearny',46,'8/28/2015 17:08','2nd at South Park',64,677,'Subscriber',94127); +INSERT INTO "trip" VALUES(910231,805,'8/28/2015 16:54','Broadway St at Battery St',82,'8/28/2015 17:07','San Francisco Caltrain (Townsend at 4th)',70,552,'Subscriber',94025); +INSERT INTO "trip" VALUES(910232,595,'8/28/2015 16:54','Commercial at Montgomery',45,'8/28/2015 17:04','Powell at Post (Union Square)',71,422,'Subscriber',94111); +INSERT INTO "trip" VALUES(910233,323,'8/28/2015 16:54','Davis at Jackson',42,'8/28/2015 17:00','Embarcadero at Sansome',60,878,'Subscriber',94111); +INSERT INTO "trip" VALUES(910236,397,'8/28/2015 16:56','South Van Ness at Market',66,'8/28/2015 17:02','Golden Gate at Polk',59,236,'Subscriber',94114); +INSERT INTO "trip" VALUES(910237,396,'8/28/2015 16:56','2nd at Folsom',62,'8/28/2015 17:03','Harry Bridges Plaza (Ferry Building)',50,285,'Subscriber',94949); +INSERT INTO "trip" VALUES(910238,237,'8/28/2015 16:57','Embarcadero at Vallejo',48,'8/28/2015 17:01','Steuart at Market',74,382,'Subscriber',94102); +INSERT INTO "trip" VALUES(910239,587,'8/28/2015 16:57','Steuart at Market',74,'8/28/2015 17:07','San Francisco Caltrain (Townsend at 4th)',70,342,'Subscriber',94070); +INSERT INTO "trip" VALUES(910242,305,'8/28/2015 16:57','Redwood City Medical Center',26,'8/28/2015 17:02','San Mateo County Center',23,28,'Subscriber',94040); +INSERT INTO "trip" VALUES(910243,908,'8/28/2015 16:58','Clay at Battery',41,'8/28/2015 17:13','San Francisco Caltrain (Townsend at 4th)',70,635,'Subscriber',94070); +INSERT INTO "trip" VALUES(910244,605,'8/28/2015 16:58','San Francisco Caltrain 2 (330 Townsend)',69,'8/28/2015 17:08','Powell Street BART',39,209,'Subscriber',94605); +INSERT INTO "trip" VALUES(910245,503,'8/28/2015 16:58','Market at Sansome',77,'8/28/2015 17:06','San Francisco Caltrain 2 (330 Townsend)',69,614,'Subscriber',94403); +INSERT INTO "trip" VALUES(910246,839,'8/28/2015 16:58','Embarcadero at Sansome',60,'8/28/2015 17:12','San Francisco Caltrain (Townsend at 4th)',70,495,'Subscriber',95111); +INSERT INTO "trip" VALUES(910247,237,'8/28/2015 16:58','Commercial at Montgomery',45,'8/28/2015 17:02','Market at Sansome',77,625,'Subscriber',94305); +INSERT INTO "trip" VALUES(910248,662,'8/28/2015 16:59','Market at Sansome',77,'8/28/2015 17:10','San Francisco Caltrain 2 (330 Townsend)',69,399,'Subscriber',95122); +INSERT INTO "trip" VALUES(910251,715,'8/28/2015 16:59','Temporary Transbay Terminal (Howard at Beale)',55,'8/28/2015 17:11','San Francisco Caltrain (Townsend at 4th)',70,325,'Subscriber',94070); +INSERT INTO "trip" VALUES(910252,628,'8/28/2015 16:59','Civic Center BART (7th at Market)',72,'8/28/2015 17:10','Clay at Battery',41,409,'Subscriber',94103); +INSERT INTO "trip" VALUES(910253,592,'8/28/2015 17:00','Spear at Folsom',49,'8/28/2015 17:10','San Francisco Caltrain (Townsend at 4th)',70,471,'Subscriber',94404); +INSERT INTO "trip" VALUES(910254,424,'8/28/2015 17:00','2nd at South Park',64,'8/28/2015 17:07','Steuart at Market',74,624,'Subscriber',94960); +INSERT INTO "trip" VALUES(910257,713,'8/28/2015 17:01','Embarcadero at Vallejo',48,'8/28/2015 17:12','San Francisco Caltrain (Townsend at 4th)',70,443,'Subscriber',95128); +INSERT INTO "trip" VALUES(910258,151,'8/28/2015 17:01','Park at Olive',38,'8/28/2015 17:03','California Ave Caltrain Station',36,252,'Subscriber',94306); +INSERT INTO "trip" VALUES(910259,425,'8/28/2015 17:01','Yerba Buena Center of the Arts (3rd @ Howard)',68,'8/28/2015 17:08','Commercial at Montgomery',45,67,'Subscriber',94133); +INSERT INTO "trip" VALUES(910260,514,'8/28/2015 17:01','2nd at Folsom',62,'8/28/2015 17:10','San Francisco Caltrain (Townsend at 4th)',70,485,'Subscriber',94403); +INSERT INTO "trip" VALUES(910261,343,'8/28/2015 17:01','Yerba Buena Center of the Arts (3rd @ Howard)',68,'8/28/2015 17:07','San Francisco Caltrain (Townsend at 4th)',70,562,'Subscriber',94070); +INSERT INTO "trip" VALUES(910262,220,'8/28/2015 17:01','Townsend at 7th',65,'8/28/2015 17:05','San Francisco Caltrain 2 (330 Townsend)',69,538,'Subscriber',94065); +INSERT INTO "trip" VALUES(910263,923,'8/28/2015 17:02','Broadway St at Battery St',82,'8/28/2015 17:17','5th at Howard',57,361,'Subscriber',94107); +INSERT INTO "trip" VALUES(910264,688,'8/28/2015 17:02','Townsend at 7th',65,'8/28/2015 17:13','South Van Ness at Market',66,709,'Subscriber',94131); +INSERT INTO "trip" VALUES(910267,587,'8/28/2015 17:03','San Francisco Caltrain 2 (330 Townsend)',69,'8/28/2015 17:13','Powell Street BART',39,506,'Subscriber',94703); +INSERT INTO "trip" VALUES(910268,585,'8/28/2015 17:03','Embarcadero at Folsom',51,'8/28/2015 17:13','San Francisco Caltrain 2 (330 Townsend)',69,530,'Subscriber',94010); +INSERT INTO "trip" VALUES(910269,316,'8/28/2015 17:03','San Francisco Caltrain 2 (330 Townsend)',69,'8/28/2015 17:08','5th at Howard',57,458,'Customer',10579); +INSERT INTO "trip" VALUES(910270,940,'8/28/2015 17:03','Commercial at Montgomery',45,'8/28/2015 17:19','San Francisco City Hall',58,412,'Subscriber',94102); +INSERT INTO "trip" VALUES(910271,1053,'8/28/2015 17:04','Clay at Battery',41,'8/28/2015 17:21','2nd at Townsend',61,472,'Subscriber',94107); +INSERT INTO "trip" VALUES(910272,349,'8/28/2015 17:04','5th at Howard',57,'8/28/2015 17:09','San Francisco Caltrain 2 (330 Townsend)',69,364,'Subscriber',94303); +INSERT INTO "trip" VALUES(910275,1296,'8/28/2015 17:04','2nd at South Park',64,'8/28/2015 17:26','Market at Sansome',77,457,'Subscriber',94606); +INSERT INTO "trip" VALUES(910276,732,'8/28/2015 17:05','2nd at Townsend',61,'8/28/2015 17:17','Grant Avenue at Columbus Avenue',73,529,'Subscriber',94133); +INSERT INTO "trip" VALUES(910278,224,'8/28/2015 17:05','Yerba Buena Center of the Arts (3rd @ Howard)',68,'8/28/2015 17:09','San Francisco Caltrain (Townsend at 4th)',70,397,'Subscriber',94041); +INSERT INTO "trip" VALUES(910279,294,'8/28/2015 17:06','Commercial at Montgomery',45,'8/28/2015 17:11','Mechanics Plaza (Market at Battery)',75,556,'Subscriber',94704); +INSERT INTO "trip" VALUES(910281,277,'8/28/2015 17:06','Townsend at 7th',65,'8/28/2015 17:10','San Francisco Caltrain 2 (330 Townsend)',69,336,'Subscriber',94040); +INSERT INTO "trip" VALUES(910282,555,'8/28/2015 17:06','San Francisco Caltrain (Townsend at 4th)',70,'8/28/2015 17:15','Harry Bridges Plaza (Ferry Building)',50,505,'Subscriber',94925); +INSERT INTO "trip" VALUES(910283,651,'8/28/2015 17:06','Steuart at Market',74,'8/28/2015 17:17','San Francisco Caltrain 2 (330 Townsend)',69,382,'Subscriber',94002); +INSERT INTO "trip" VALUES(910285,901,'8/28/2015 17:06','Davis at Jackson',42,'8/28/2015 17:21','San Francisco Caltrain 2 (330 Townsend)',69,461,'Subscriber',94087); +INSERT INTO "trip" VALUES(910288,972,'8/28/2015 17:07','Harry Bridges Plaza (Ferry Building)',50,'8/28/2015 17:23','San Francisco Caltrain 2 (330 Townsend)',69,599,'Subscriber',94087); +INSERT INTO "trip" VALUES(910289,370,'8/28/2015 17:07','Embarcadero at Sansome',60,'8/28/2015 17:13','Steuart at Market',74,878,'Subscriber',94111); +INSERT INTO "trip" VALUES(910291,550,'8/28/2015 17:08','Steuart at Market',74,'8/28/2015 17:17','San Francisco Caltrain 2 (330 Townsend)',69,366,'Subscriber',94061); +INSERT INTO "trip" VALUES(910292,1042,'8/28/2015 17:07','2nd at South Park',64,'8/28/2015 17:25','South Van Ness at Market',66,617,'Subscriber',94110); +INSERT INTO "trip" VALUES(910293,542,'8/28/2015 17:08','2nd at Townsend',61,'8/28/2015 17:17','Temporary Transbay Terminal (Howard at Beale)',55,33,'Subscriber',94608); +INSERT INTO "trip" VALUES(910294,281,'8/28/2015 17:08','Mechanics Plaza (Market at Battery)',75,'8/28/2015 17:13','Powell at Post (Union Square)',71,508,'Subscriber',94941); +INSERT INTO "trip" VALUES(910298,318,'8/28/2015 17:09','Townsend at 7th',65,'8/28/2015 17:14','2nd at Townsend',61,619,'Subscriber',94133); +INSERT INTO "trip" VALUES(910299,484,'8/28/2015 17:09','Post at Kearny',47,'8/28/2015 17:17','Steuart at Market',74,378,'Customer',94965); +INSERT INTO "trip" VALUES(910300,618,'8/28/2015 17:09','Embarcadero at Sansome',60,'8/28/2015 17:19','Embarcadero at Bryant',54,279,'Subscriber',94107); +INSERT INTO "trip" VALUES(910302,428,'8/28/2015 17:09','Howard at 2nd',63,'8/28/2015 17:16','San Francisco Caltrain (Townsend at 4th)',70,459,'Subscriber',94402); +INSERT INTO "trip" VALUES(910305,641,'8/28/2015 17:09','San Francisco Caltrain (Townsend at 4th)',70,'8/28/2015 17:20','Civic Center BART (7th at Market)',72,334,'Subscriber',94105); +INSERT INTO "trip" VALUES(910309,737,'8/28/2015 17:10','Townsend at 7th',65,'8/28/2015 17:22','Temporary Transbay Terminal (Howard at Beale)',55,442,'Subscriber',94103); +INSERT INTO "trip" VALUES(910311,1365,'8/28/2015 17:10','Powell Street BART',39,'8/28/2015 17:33','San Francisco Caltrain 2 (330 Townsend)',69,266,'Subscriber',94117); +INSERT INTO "trip" VALUES(910315,971,'8/28/2015 17:11','San Francisco Caltrain 2 (330 Townsend)',69,'8/28/2015 17:27','Broadway St at Battery St',82,187,'Subscriber',94105); +INSERT INTO "trip" VALUES(910316,1070,'8/28/2015 17:11','San Francisco City Hall',58,'8/28/2015 17:29','Washington at Kearny',46,292,'Subscriber',94112); +INSERT INTO "trip" VALUES(910317,449,'8/28/2015 17:11','San Francisco Caltrain (Townsend at 4th)',70,'8/28/2015 17:19','5th at Howard',57,309,'Subscriber',94107); +INSERT INTO "trip" VALUES(910318,332,'8/28/2015 17:11','Mechanics Plaza (Market at Battery)',75,'8/28/2015 17:17','Harry Bridges Plaza (Ferry Building)',50,439,'Subscriber',94109); +INSERT INTO "trip" VALUES(910319,891,'8/28/2015 17:11','San Francisco Caltrain (Townsend at 4th)',70,'8/28/2015 17:26','Davis at Jackson',42,434,'Subscriber',94111); +INSERT INTO "trip" VALUES(910320,146,'8/28/2015 17:11','5th at Howard',57,'8/28/2015 17:14','Powell Street BART',39,458,'Subscriber',94024); +INSERT INTO "trip" VALUES(910321,207,'8/28/2015 17:12','Townsend at 7th',65,'8/28/2015 17:15','San Francisco Caltrain 2 (330 Townsend)',69,417,'Subscriber',94965); +INSERT INTO "trip" VALUES(910324,408,'8/28/2015 17:12','Market at 4th',76,'8/28/2015 17:19','San Francisco Caltrain 2 (330 Townsend)',69,553,'Subscriber',94403); +INSERT INTO "trip" VALUES(910325,560,'8/28/2015 17:12','Steuart at Market',74,'8/28/2015 17:21','San Francisco Caltrain 2 (330 Townsend)',69,320,'Subscriber',94005); +INSERT INTO "trip" VALUES(910326,994,'8/28/2015 17:13','Commercial at Montgomery',45,'8/28/2015 17:29','Howard at 2nd',63,428,'Subscriber',94105); +INSERT INTO "trip" VALUES(910327,373,'8/28/2015 17:13','Embarcadero at Bryant',54,'8/28/2015 17:19','Harry Bridges Plaza (Ferry Building)',50,370,'Subscriber',94920); +INSERT INTO "trip" VALUES(910328,595,'8/28/2015 17:13','South Van Ness at Market',66,'8/28/2015 17:23','Civic Center BART (7th at Market)',72,406,'Subscriber',94134); +INSERT INTO "trip" VALUES(910329,537,'8/28/2015 17:14','Embarcadero at Vallejo',48,'8/28/2015 17:22','Temporary Transbay Terminal (Howard at Beale)',55,260,'Subscriber',94608); +INSERT INTO "trip" VALUES(910330,727,'8/28/2015 17:14','Embarcadero at Folsom',51,'8/28/2015 17:26','San Francisco Caltrain 2 (330 Townsend)',69,611,'Subscriber',95129); +INSERT INTO "trip" VALUES(910331,168,'8/28/2015 17:14','Temporary Transbay Terminal (Howard at Beale)',55,'8/28/2015 17:17','Embarcadero at Bryant',54,393,'Subscriber',94010); +INSERT INTO "trip" VALUES(910332,433,'8/28/2015 17:15','2nd at South Park',64,'8/28/2015 17:22','Harry Bridges Plaza (Ferry Building)',50,677,'Subscriber',94901); +INSERT INTO "trip" VALUES(910333,633,'8/28/2015 17:16','Davis at Jackson',42,'8/28/2015 17:27','San Francisco Caltrain 2 (330 Townsend)',69,326,'Subscriber',94030); +INSERT INTO "trip" VALUES(910334,914,'8/28/2015 17:17','Townsend at 7th',65,'8/28/2015 17:32','Embarcadero at Folsom',51,630,'Subscriber',94501); +INSERT INTO "trip" VALUES(910335,657,'8/28/2015 17:17','2nd at Townsend',61,'8/28/2015 17:28','Davis at Jackson',42,619,'Subscriber',94111); +INSERT INTO "trip" VALUES(910336,1103,'8/28/2015 17:17','Broadway St at Battery St',82,'8/28/2015 17:36','2nd at Townsend',61,344,'Subscriber',94111); +INSERT INTO "trip" VALUES(910337,443,'8/28/2015 17:18','Embarcadero at Folsom',51,'8/28/2015 17:25','San Francisco Caltrain 2 (330 Townsend)',69,348,'Subscriber',94303); +INSERT INTO "trip" VALUES(910338,471,'8/28/2015 17:18','Post at Kearny',47,'8/28/2015 17:26','San Francisco Caltrain 2 (330 Townsend)',69,574,'Subscriber',94010); +INSERT INTO "trip" VALUES(910339,598,'8/28/2015 17:18','Mechanics Plaza (Market at Battery)',75,'8/28/2015 17:28','Embarcadero at Bryant',54,465,'Subscriber',94107); +INSERT INTO "trip" VALUES(910340,552,'8/28/2015 17:18','Embarcadero at Folsom',51,'8/28/2015 17:27','San Francisco Caltrain 2 (330 Townsend)',69,521,'Subscriber',94010); +INSERT INTO "trip" VALUES(910341,870,'8/28/2015 17:18','Powell Street BART',39,'8/28/2015 17:33','Townsend at 7th',65,209,'Subscriber',94107); +INSERT INTO "trip" VALUES(910342,395,'8/28/2015 17:19','Harry Bridges Plaza (Ferry Building)',50,'8/28/2015 17:25','Embarcadero at Sansome',60,287,'Subscriber',94109); +INSERT INTO "trip" VALUES(910343,369,'8/28/2015 17:19','Harry Bridges Plaza (Ferry Building)',50,'8/28/2015 17:25','Embarcadero at Sansome',60,439,'Subscriber',94109); +INSERT INTO "trip" VALUES(910344,607,'8/28/2015 17:20','San Francisco Caltrain 2 (330 Townsend)',69,'8/28/2015 17:30','Embarcadero at Folsom',51,631,'Subscriber',94105); +INSERT INTO "trip" VALUES(910345,171,'8/28/2015 17:20','Civic Center BART (7th at Market)',72,'8/28/2015 17:23','Powell Street BART',39,583,'Subscriber',94608); +INSERT INTO "trip" VALUES(910346,465,'8/28/2015 17:21','San Pedro Square',6,'8/28/2015 17:28','San Jose Diridon Caltrain Station',2,162,'Subscriber',95377); +INSERT INTO "trip" VALUES(910347,519,'8/28/2015 17:22','2nd at South Park',64,'8/28/2015 17:30','San Francisco Caltrain (Townsend at 4th)',70,528,'Subscriber',95008); +INSERT INTO "trip" VALUES(910348,309,'8/28/2015 17:22','Embarcadero at Sansome',60,'8/28/2015 17:27','Steuart at Market',74,609,'Subscriber',94597); +INSERT INTO "trip" VALUES(910349,383,'8/28/2015 17:22','2nd at South Park',64,'8/28/2015 17:28','Embarcadero at Folsom',51,377,'Subscriber',94105); +INSERT INTO "trip" VALUES(910350,767,'8/28/2015 17:22','Washington at Kearny',46,'8/28/2015 17:35','Temporary Transbay Terminal (Howard at Beale)',55,480,'Subscriber',94705); +INSERT INTO "trip" VALUES(910351,1131,'8/28/2015 17:22','Market at 4th',76,'8/28/2015 17:41','Embarcadero at Vallejo',48,391,'Customer','nil'); +INSERT INTO "trip" VALUES(910352,698,'8/28/2015 17:22','Townsend at 7th',65,'8/28/2015 17:34','South Van Ness at Market',66,282,'Subscriber',94618); +INSERT INTO "trip" VALUES(910354,352,'8/28/2015 17:23','Yerba Buena Center of the Arts (3rd @ Howard)',68,'8/28/2015 17:28','Temporary Transbay Terminal (Howard at Beale)',55,111,'Subscriber',94170); +INSERT INTO "trip" VALUES(910355,543,'8/28/2015 17:23','Clay at Battery',41,'8/28/2015 17:32','Grant Avenue at Columbus Avenue',73,318,'Subscriber',94114); +INSERT INTO "trip" VALUES(910356,1033,'8/28/2015 17:23','Civic Center BART (7th at Market)',72,'8/28/2015 17:41','Grant Avenue at Columbus Avenue',73,514,'Subscriber',94133); +INSERT INTO "trip" VALUES(910357,686,'8/28/2015 17:24','Davis at Jackson',42,'8/28/2015 17:36','2nd at Townsend',61,134,'Subscriber',94025); +INSERT INTO "trip" VALUES(910358,478,'8/28/2015 17:25','Temporary Transbay Terminal (Howard at Beale)',55,'8/28/2015 17:33','Market at 4th',76,592,'Subscriber',94105); +INSERT INTO "trip" VALUES(910359,647,'8/28/2015 17:26','Market at Sansome',77,'8/28/2015 17:36','Market at 10th',67,275,'Subscriber',94102); +INSERT INTO "trip" VALUES(910360,1018,'8/28/2015 17:26','San Francisco City Hall',58,'8/28/2015 17:43','Harry Bridges Plaza (Ferry Building)',50,470,'Subscriber',94903); +INSERT INTO "trip" VALUES(910361,881,'8/28/2015 17:27','San Francisco Caltrain 2 (330 Townsend)',69,'8/28/2015 17:42','Steuart at Market',74,320,'Subscriber',94965); +INSERT INTO "trip" VALUES(910362,583,'8/28/2015 17:27','2nd at Townsend',61,'8/28/2015 17:37','Steuart at Market',74,472,'Subscriber',94110); +INSERT INTO "trip" VALUES(910363,242,'8/28/2015 17:27','Castro Street and El Camino Real',32,'8/28/2015 17:32','Mountain View Caltrain Station',28,48,'Subscriber',94105); +INSERT INTO "trip" VALUES(910364,810,'8/28/2015 17:30','San Francisco Caltrain (Townsend at 4th)',70,'8/28/2015 17:43','Embarcadero at Sansome',60,563,'Subscriber',94111); +INSERT INTO "trip" VALUES(910365,5046,'8/28/2015 17:30','Market at Sansome',77,'8/28/2015 18:54','Embarcadero at Sansome',60,493,'Customer',11219); +INSERT INTO "trip" VALUES(910366,547,'8/28/2015 17:31','Embarcadero at Vallejo',48,'8/28/2015 17:40','Embarcadero at Bryant',54,535,'Subscriber',94107); +INSERT INTO "trip" VALUES(910367,762,'8/28/2015 17:31','Davis at Jackson',42,'8/28/2015 17:44','San Francisco Caltrain 2 (330 Townsend)',69,434,'Subscriber',95014); +INSERT INTO "trip" VALUES(910368,925,'8/28/2015 17:32','Santa Clara County Civic Center',80,'8/28/2015 17:47','Ryland Park',84,232,'Subscriber',95112); +INSERT INTO "trip" VALUES(910369,464,'8/28/2015 17:33','Embarcadero at Bryant',54,'8/28/2015 17:41','Steuart at Market',74,328,'Subscriber',94107); +INSERT INTO "trip" VALUES(910370,279,'8/28/2015 17:33','5th at Howard',57,'8/28/2015 17:38','2nd at Folsom',62,309,'Subscriber',94105); +INSERT INTO "trip" VALUES(910371,828,'8/28/2015 17:33','Steuart at Market',74,'8/28/2015 17:47','San Francisco City Hall',58,374,'Subscriber',94102); +INSERT INTO "trip" VALUES(910372,459,'8/28/2015 17:33','Civic Center BART (7th at Market)',72,'8/28/2015 17:40','Market at Sansome',77,334,'Subscriber',94401); +INSERT INTO "trip" VALUES(910373,788,'8/28/2015 17:35','Harry Bridges Plaza (Ferry Building)',50,'8/28/2015 17:48','San Francisco Caltrain 2 (330 Townsend)',69,469,'Subscriber',95051); +INSERT INTO "trip" VALUES(910374,574,'8/28/2015 17:36','2nd at Townsend',61,'8/28/2015 17:45','Harry Bridges Plaza (Ferry Building)',50,134,'Subscriber',94960); +INSERT INTO "trip" VALUES(910375,965,'8/28/2015 17:36','Mechanics Plaza (Market at Battery)',75,'8/28/2015 17:52','San Francisco Caltrain 2 (330 Townsend)',69,556,'Subscriber',94301); +INSERT INTO "trip" VALUES(910376,320,'8/28/2015 17:36','Howard at 2nd',63,'8/28/2015 17:42','Harry Bridges Plaza (Ferry Building)',50,428,'Subscriber',94115); +INSERT INTO "trip" VALUES(910377,1170,'8/28/2015 17:36','Market at 4th',76,'8/28/2015 17:56','2nd at Townsend',61,575,'Subscriber',94116); +INSERT INTO "trip" VALUES(910378,890,'8/28/2015 17:37','Steuart at Market',74,'8/28/2015 17:52','2nd at Townsend',61,378,'Subscriber',94404); +INSERT INTO "trip" VALUES(910379,266,'8/28/2015 17:38','Townsend at 7th',65,'8/28/2015 17:42','San Francisco Caltrain 2 (330 Townsend)',69,209,'Subscriber',94107); +INSERT INTO "trip" VALUES(910380,418,'8/28/2015 17:38','Yerba Buena Center of the Arts (3rd @ Howard)',68,'8/28/2015 17:45','San Francisco Caltrain 2 (330 Townsend)',69,542,'Subscriber',94087); +INSERT INTO "trip" VALUES(910381,334,'8/28/2015 17:38','Howard at 2nd',63,'8/28/2015 17:44','2nd at Townsend',61,356,'Subscriber',94025); +INSERT INTO "trip" VALUES(910382,191,'8/28/2015 17:39','Mountain View City Hall',27,'8/28/2015 17:42','Mountain View Caltrain Station',28,147,'Subscriber',94107); +INSERT INTO "trip" VALUES(910383,621,'8/28/2015 17:39','Temporary Transbay Terminal (Howard at Beale)',55,'8/28/2015 17:49','San Francisco Caltrain (Townsend at 4th)',70,33,'Subscriber',94117); +INSERT INTO "trip" VALUES(910384,560,'8/28/2015 17:39','Market at 10th',67,'8/28/2015 17:49','San Francisco Caltrain 2 (330 Townsend)',69,275,'Subscriber',94025); +INSERT INTO "trip" VALUES(910385,231,'8/28/2015 17:39','Mountain View City Hall',27,'8/28/2015 17:43','Mountain View Caltrain Station',28,700,'Subscriber',94107); +INSERT INTO "trip" VALUES(910386,559,'8/28/2015 17:40','Market at Sansome',77,'8/28/2015 17:49','Embarcadero at Sansome',60,457,'Subscriber',94132); +INSERT INTO "trip" VALUES(910387,197,'8/28/2015 17:40','Castro Street and El Camino Real',32,'8/28/2015 17:44','Mountain View Caltrain Station',28,262,'Subscriber',94401); +INSERT INTO "trip" VALUES(910388,971,'8/28/2015 17:41','Commercial at Montgomery',45,'8/28/2015 17:57','2nd at South Park',64,524,'Subscriber',94107); +INSERT INTO "trip" VALUES(910389,559,'8/28/2015 17:41','Howard at 2nd',63,'8/28/2015 17:51','Harry Bridges Plaza (Ferry Building)',50,512,'Subscriber',94105); +INSERT INTO "trip" VALUES(910390,564,'8/28/2015 17:42','Mechanics Plaza (Market at Battery)',75,'8/28/2015 17:51','Market at 10th',67,507,'Subscriber',94102); +INSERT INTO "trip" VALUES(910391,616,'8/28/2015 17:42','Howard at 2nd',63,'8/28/2015 17:52','San Francisco Caltrain (Townsend at 4th)',70,628,'Subscriber',94087); +INSERT INTO "trip" VALUES(910392,808,'8/28/2015 17:42','San Francisco Caltrain 2 (330 Townsend)',69,'8/28/2015 17:55','Market at 10th',67,574,'Customer',94114); +INSERT INTO "trip" VALUES(910393,546,'8/28/2015 17:42','2nd at Townsend',61,'8/28/2015 17:51','Spear at Folsom',49,344,'Subscriber',95616); +INSERT INTO "trip" VALUES(910394,374,'8/28/2015 17:44','South Van Ness at Market',66,'8/28/2015 17:50','Golden Gate at Polk',59,282,'Subscriber',94117); +INSERT INTO "trip" VALUES(910395,632,'8/28/2015 17:44','San Francisco Caltrain 2 (330 Townsend)',69,'8/28/2015 17:54','Spear at Folsom',49,553,'Customer',94121); +INSERT INTO "trip" VALUES(910397,1085,'8/28/2015 17:44','Market at 4th',76,'8/28/2015 18:02','2nd at Townsend',61,618,'Subscriber',94158); +INSERT INTO "trip" VALUES(910398,667,'8/28/2015 17:44','Embarcadero at Sansome',60,'8/28/2015 17:55','2nd at Townsend',61,563,'Customer','nil'); +INSERT INTO "trip" VALUES(910399,398,'8/28/2015 17:45','San Francisco Caltrain 2 (330 Townsend)',69,'8/28/2015 17:51','5th at Howard',57,521,'Subscriber',94103); +INSERT INTO "trip" VALUES(910400,554,'8/28/2015 17:45','2nd at Townsend',61,'8/28/2015 17:54','Steuart at Market',74,356,'Subscriber',94609); +INSERT INTO "trip" VALUES(910401,1031,'8/28/2015 17:45','Harry Bridges Plaza (Ferry Building)',50,'8/28/2015 18:02','San Francisco Caltrain 2 (330 Townsend)',69,278,'Subscriber',94111); +INSERT INTO "trip" VALUES(910402,995,'8/28/2015 17:46','Temporary Transbay Terminal (Howard at Beale)',55,'8/28/2015 18:02','San Francisco Caltrain 2 (330 Townsend)',69,375,'Subscriber',95110); +INSERT INTO "trip" VALUES(910403,678,'8/28/2015 17:45','Clay at Battery',41,'8/28/2015 17:57','Harry Bridges Plaza (Ferry Building)',50,451,'Customer',97203); +INSERT INTO "trip" VALUES(910404,324,'8/28/2015 17:46','Mountain View City Hall',27,'8/28/2015 17:52','Mountain View Caltrain Station',28,706,'Subscriber',95110); +INSERT INTO "trip" VALUES(910405,153,'8/28/2015 17:46','Embarcadero at Folsom',51,'8/28/2015 17:49','Steuart at Market',74,479,'Subscriber',94111); +INSERT INTO "trip" VALUES(910406,248,'8/28/2015 17:47','2nd at Folsom',62,'8/28/2015 17:51','Spear at Folsom',49,364,'Subscriber',94558); +INSERT INTO "trip" VALUES(910408,460,'8/28/2015 17:47','San Francisco Caltrain 2 (330 Townsend)',69,'8/28/2015 17:55','Embarcadero at Bryant',54,382,'Subscriber',94103); +INSERT INTO "trip" VALUES(910409,393,'8/28/2015 17:47','Howard at 2nd',63,'8/28/2015 17:54','San Francisco Caltrain 2 (330 Townsend)',69,527,'Subscriber',94061); +INSERT INTO "trip" VALUES(910410,390,'8/28/2015 17:48','San Francisco Caltrain 2 (330 Townsend)',69,'8/28/2015 17:55','5th at Howard',57,399,'Subscriber',94103); +INSERT INTO "trip" VALUES(910411,876,'8/28/2015 17:49','Market at Sansome',77,'8/28/2015 18:03','San Francisco Caltrain 2 (330 Townsend)',69,604,'Subscriber',95134); +INSERT INTO "trip" VALUES(910412,419,'8/28/2015 17:49','Embarcadero at Sansome',60,'8/28/2015 17:56','Embarcadero at Folsom',51,439,'Subscriber',94105); +INSERT INTO "trip" VALUES(910413,776,'8/28/2015 17:49','San Francisco Caltrain (Townsend at 4th)',70,'8/28/2015 18:02','Market at Sansome',77,394,'Subscriber',94549); +INSERT INTO "trip" VALUES(910414,856,'8/28/2015 17:49','South Van Ness at Market',66,'8/28/2015 18:03','San Francisco Caltrain 2 (330 Townsend)',69,652,'Subscriber',94085); +INSERT INTO "trip" VALUES(910415,537,'8/28/2015 17:50','Embarcadero at Sansome',60,'8/28/2015 17:59','Steuart at Market',74,287,'Subscriber',94111); +INSERT INTO "trip" VALUES(910416,227,'8/28/2015 17:50','Mountain View City Hall',27,'8/28/2015 17:54','Mountain View Caltrain Station',28,293,'Subscriber',94107); +INSERT INTO "trip" VALUES(910417,350,'8/28/2015 17:50','Market at 4th',76,'8/28/2015 17:56','San Francisco Caltrain (Townsend at 4th)',70,592,'Subscriber',94158); +INSERT INTO "trip" VALUES(910418,709,'8/28/2015 17:52','San Jose Diridon Caltrain Station',2,'8/28/2015 18:03','Ryland Park',84,162,'Subscriber',95110); +INSERT INTO "trip" VALUES(910419,401,'8/28/2015 17:51','San Francisco Caltrain (Townsend at 4th)',70,'8/28/2015 17:58','Howard at 2nd',63,33,'Subscriber',94105); +INSERT INTO "trip" VALUES(910420,287,'8/28/2015 17:52','San Francisco Caltrain 2 (330 Townsend)',69,'8/28/2015 17:57','Townsend at 7th',65,417,'Subscriber',94107); +INSERT INTO "trip" VALUES(910421,760,'8/28/2015 17:52','Market at 10th',67,'8/28/2015 18:05','San Francisco Caltrain 2 (330 Townsend)',69,507,'Subscriber',95035); +INSERT INTO "trip" VALUES(910422,233,'8/28/2015 17:52','Howard at 2nd',63,'8/28/2015 17:56','Yerba Buena Center of the Arts (3rd @ Howard)',68,405,'Subscriber',94107); +INSERT INTO "trip" VALUES(910423,636,'8/28/2015 17:52','Commercial at Montgomery',45,'8/28/2015 18:03','5th at Howard',57,547,'Subscriber',94608); +INSERT INTO "trip" VALUES(910424,360,'8/28/2015 17:52','Steuart at Market',74,'8/28/2015 17:58','Embarcadero at Bryant',54,335,'Subscriber',92506); +INSERT INTO "trip" VALUES(910425,771,'8/28/2015 17:53','Temporary Transbay Terminal (Howard at Beale)',55,'8/28/2015 18:06','San Francisco Caltrain 2 (330 Townsend)',69,442,'Subscriber',94401); +INSERT INTO "trip" VALUES(910426,936,'8/28/2015 17:53','San Francisco Caltrain 2 (330 Townsend)',69,'8/28/2015 18:09','Civic Center BART (7th at Market)',72,336,'Subscriber',94551); +INSERT INTO "trip" VALUES(910427,714,'8/28/2015 17:54','Howard at 2nd',63,'8/28/2015 18:06','San Francisco Caltrain 2 (330 Townsend)',69,487,'Subscriber',94061); +INSERT INTO "trip" VALUES(910428,683,'8/28/2015 17:54','Market at 4th',76,'8/28/2015 18:05','Embarcadero at Sansome',60,352,'Subscriber',94111); +INSERT INTO "trip" VALUES(910429,5775,'8/28/2015 17:54','Steuart at Market',74,'8/28/2015 19:30','San Francisco City Hall',58,363,'Customer',1425); +INSERT INTO "trip" VALUES(910430,625,'8/28/2015 17:50','Mechanics Plaza (Market at Battery)',75,'8/28/2015 18:00','Market at 10th',67,411,'Subscriber',94102); +INSERT INTO "trip" VALUES(910431,5773,'8/28/2015 17:54','Steuart at Market',74,'8/28/2015 19:31','San Francisco City Hall',58,878,'Customer',1425); +INSERT INTO "trip" VALUES(910433,494,'8/28/2015 17:55','Harry Bridges Plaza (Ferry Building)',50,'8/28/2015 18:03','2nd at Townsend',61,579,'Customer',92618); +INSERT INTO "trip" VALUES(910434,646,'8/28/2015 17:55','Yerba Buena Center of the Arts (3rd @ Howard)',68,'8/28/2015 18:05','Market at 10th',67,591,'Subscriber',94102); +INSERT INTO "trip" VALUES(910435,280,'8/28/2015 17:55','Market at Sansome',77,'8/28/2015 17:59','Temporary Transbay Terminal (Howard at Beale)',55,334,'Subscriber',94618); +INSERT INTO "trip" VALUES(910436,839,'8/28/2015 17:55','Broadway St at Battery St',82,'8/28/2015 18:09','2nd at Townsend',61,450,'Subscriber',95111); +INSERT INTO "trip" VALUES(910437,175,'8/28/2015 17:55','2nd at Folsom',62,'8/28/2015 17:58','Market at Sansome',77,309,'Subscriber',94544); +INSERT INTO "trip" VALUES(910438,432,'8/28/2015 17:55','Embarcadero at Sansome',60,'8/28/2015 18:02','Steuart at Market',74,457,'Subscriber',94612); +INSERT INTO "trip" VALUES(910439,473,'8/28/2015 17:56','San Francisco Caltrain (Townsend at 4th)',70,'8/28/2015 18:04','Embarcadero at Bryant',54,401,'Subscriber',94105); +INSERT INTO "trip" VALUES(910440,511,'8/28/2015 17:56','5th at Howard',57,'8/28/2015 18:05','San Francisco Caltrain 2 (330 Townsend)',69,361,'Subscriber',94401); +INSERT INTO "trip" VALUES(910441,705,'8/28/2015 17:56','Steuart at Market',74,'8/28/2015 18:08','San Francisco Caltrain 2 (330 Townsend)',69,609,'Subscriber',94010); +INSERT INTO "trip" VALUES(910442,639,'8/28/2015 17:57','Steuart at Market',74,'8/28/2015 18:07','2nd at Townsend',61,479,'Subscriber',94107); +INSERT INTO "trip" VALUES(910443,605,'8/28/2015 17:57','Embarcadero at Bryant',54,'8/28/2015 18:07','San Francisco Caltrain 2 (330 Townsend)',69,585,'Subscriber',95050); +INSERT INTO "trip" VALUES(910444,6343,'8/28/2015 17:57','Embarcadero at Vallejo',48,'8/28/2015 19:43','Harry Bridges Plaza (Ferry Building)',50,291,'Customer','nil'); +INSERT INTO "trip" VALUES(910445,249,'8/28/2015 17:58','Broadway St at Battery St',82,'8/28/2015 18:02','Steuart at Market',74,267,'Subscriber',94702); +INSERT INTO "trip" VALUES(910446,10785,'8/28/2015 17:58','Harry Bridges Plaza (Ferry Building)',50,'8/28/2015 20:58','Powell at Post (Union Square)',71,512,'Customer',97203); +INSERT INTO "trip" VALUES(910447,4973,'8/28/2015 17:58','Embarcadero at Sansome',60,'8/28/2015 19:21','Embarcadero at Sansome',60,86,'Customer',11217); +INSERT INTO "trip" VALUES(910448,504,'8/28/2015 17:59','Embarcadero at Bryant',54,'8/28/2015 18:07','San Francisco Caltrain 2 (330 Townsend)',69,465,'Subscriber',94087); +INSERT INTO "trip" VALUES(910449,501,'8/28/2015 17:59','Powell Street BART',39,'8/28/2015 18:07','San Francisco Caltrain 2 (330 Townsend)',69,403,'Subscriber',94403); +INSERT INTO "trip" VALUES(910450,558,'8/28/2015 17:59','Temporary Transbay Terminal (Howard at Beale)',55,'8/28/2015 18:09','Grant Avenue at Columbus Avenue',73,111,'Subscriber',94566); +INSERT INTO "trip" VALUES(910451,458,'8/28/2015 18:00','5th at Howard',57,'8/28/2015 18:08','San Francisco Caltrain 2 (330 Townsend)',69,521,'Subscriber',95070); +INSERT INTO "trip" VALUES(910452,670,'8/28/2015 18:02','Market at Sansome',77,'8/28/2015 18:13','San Francisco Caltrain 2 (330 Townsend)',69,395,'Subscriber',94303); +INSERT INTO "trip" VALUES(910454,304,'8/28/2015 18:02','Temporary Transbay Terminal (Howard at Beale)',55,'8/28/2015 18:07','Davis at Jackson',42,260,'Subscriber',94111); +INSERT INTO "trip" VALUES(910456,872,'8/28/2015 18:02','Broadway St at Battery St',82,'8/28/2015 18:17','San Francisco Caltrain 2 (330 Townsend)',69,187,'Subscriber',95130); +INSERT INTO "trip" VALUES(910457,557,'8/28/2015 18:02','Howard at 2nd',63,'8/28/2015 18:12','San Francisco Caltrain 2 (330 Townsend)',69,33,'Subscriber',94002); +INSERT INTO "trip" VALUES(910458,712,'8/28/2015 18:03','Mountain View Caltrain Station',28,'8/28/2015 18:15','Rengstorff Avenue / California Street',33,123,'Subscriber',94040); +INSERT INTO "trip" VALUES(910462,681,'8/28/2015 18:04','Embarcadero at Folsom',51,'8/28/2015 18:16','San Francisco Caltrain 2 (330 Townsend)',69,321,'Subscriber',94061); +INSERT INTO "trip" VALUES(910463,670,'8/28/2015 18:04','Embarcadero at Folsom',51,'8/28/2015 18:15','San Francisco Caltrain 2 (330 Townsend)',69,439,'Subscriber',95054); +INSERT INTO "trip" VALUES(910467,504,'8/28/2015 18:06','Spear at Folsom',49,'8/28/2015 18:14','Spear at Folsom',49,372,'Subscriber',94122); +INSERT INTO "trip" VALUES(910468,239,'8/28/2015 18:06','Townsend at 7th',65,'8/28/2015 18:10','San Francisco Caltrain 2 (330 Townsend)',69,417,'Subscriber',94401); +INSERT INTO "trip" VALUES(910469,373,'8/28/2015 18:06','Santa Clara at Almaden',4,'8/28/2015 18:12','San Jose Diridon Caltrain Station',2,117,'Subscriber',94158); +INSERT INTO "trip" VALUES(910471,940,'8/28/2015 18:06','Arena Green / SAP Center',14,'8/28/2015 18:22','San Jose Diridon Caltrain Station',2,304,'Subscriber',94539); +INSERT INTO "trip" VALUES(910475,321,'8/28/2015 18:07','Mountain View Caltrain Station',28,'8/28/2015 18:13','Castro Street and El Camino Real',32,251,'Subscriber',94022); +INSERT INTO "trip" VALUES(910479,4119,'8/28/2015 18:08','Cowper at University',37,'8/28/2015 19:17','California Ave Caltrain Station',36,698,'Customer',55); +INSERT INTO "trip" VALUES(910481,500,'8/28/2015 18:09','Mountain View Caltrain Station',28,'8/28/2015 18:17','Evelyn Park and Ride',30,228,'Subscriber',94040); +INSERT INTO "trip" VALUES(910483,963,'8/28/2015 18:09','Steuart at Market',74,'8/28/2015 18:25','San Francisco Caltrain (Townsend at 4th)',70,624,'Subscriber',94086); +INSERT INTO "trip" VALUES(910484,4042,'8/28/2015 18:09','Steuart at Market',74,'8/28/2015 19:16','Embarcadero at Sansome',60,356,'Customer',19027); +INSERT INTO "trip" VALUES(910485,859,'8/28/2015 18:09','Beale at Market',56,'8/28/2015 18:23','Steuart at Market',74,613,'Subscriber',94112); +INSERT INTO "trip" VALUES(910487,374,'8/28/2015 18:09','Steuart at Market',74,'8/28/2015 18:15','Howard at 2nd',63,320,'Customer','nil'); +INSERT INTO "trip" VALUES(910488,1576,'8/28/2015 18:11','Grant Avenue at Columbus Avenue',73,'8/28/2015 18:38','Embarcadero at Sansome',60,351,'Customer',43302); +INSERT INTO "trip" VALUES(910489,636,'8/28/2015 18:12','Embarcadero at Sansome',60,'8/28/2015 18:22','Temporary Transbay Terminal (Howard at Beale)',55,555,'Subscriber',94602); +INSERT INTO "trip" VALUES(910490,774,'8/28/2015 18:12','Broadway St at Battery St',82,'8/28/2015 18:25','San Francisco Caltrain (Townsend at 4th)',70,560,'Subscriber',95129); +INSERT INTO "trip" VALUES(910491,618,'8/28/2015 18:12','Steuart at Market',74,'8/28/2015 18:23','San Francisco Caltrain (Townsend at 4th)',70,413,'Subscriber',94025); +INSERT INTO "trip" VALUES(910492,7674,'8/28/2015 18:12','Mechanics Plaza (Market at Battery)',75,'8/28/2015 20:20','Embarcadero at Sansome',60,66,'Customer',94116); +INSERT INTO "trip" VALUES(910493,292,'8/28/2015 18:13','Embarcadero at Sansome',60,'8/28/2015 18:18','Steuart at Market',74,352,'Subscriber',94549); +INSERT INTO "trip" VALUES(910494,192,'8/28/2015 18:14','2nd at Folsom',62,'8/28/2015 18:17','Market at Sansome',77,283,'Subscriber',94117); +INSERT INTO "trip" VALUES(910495,7542,'8/28/2015 18:14','Market at Sansome',77,'8/28/2015 20:20','Embarcadero at Sansome',60,317,'Customer',94619); +INSERT INTO "trip" VALUES(910498,328,'8/28/2015 18:15','Howard at 2nd',63,'8/28/2015 18:21','2nd at Townsend',61,603,'Subscriber',94105); +INSERT INTO "trip" VALUES(910499,319,'8/28/2015 18:16','2nd at South Park',64,'8/28/2015 18:21','Market at Sansome',77,524,'Subscriber',94607); +INSERT INTO "trip" VALUES(910502,538,'8/28/2015 18:17','Davis at Jackson',42,'8/28/2015 18:26','Embarcadero at Bryant',54,619,'Customer',90046); +INSERT INTO "trip" VALUES(910503,375,'8/28/2015 18:17','San Francisco Caltrain (Townsend at 4th)',70,'8/28/2015 18:23','Embarcadero at Bryant',54,635,'Subscriber',94105); +INSERT INTO "trip" VALUES(910504,526,'8/28/2015 18:17','2nd at Folsom',62,'8/28/2015 18:26','San Francisco Caltrain (Townsend at 4th)',70,431,'Subscriber',94105); +INSERT INTO "trip" VALUES(910507,334,'8/28/2015 18:18','Market at 4th',76,'8/28/2015 18:23','Temporary Transbay Terminal (Howard at Beale)',55,877,'Subscriber',94501); +INSERT INTO "trip" VALUES(910508,1715,'8/28/2015 18:18','Clay at Battery',41,'8/28/2015 18:46','2nd at South Park',64,409,'Subscriber',94103); +INSERT INTO "trip" VALUES(910511,854,'8/28/2015 18:19','Davis at Jackson',42,'8/28/2015 18:33','Market at 4th',76,329,'Customer',94111); +INSERT INTO "trip" VALUES(910512,905,'8/28/2015 18:19','San Francisco Caltrain (Townsend at 4th)',70,'8/28/2015 18:34','Embarcadero at Sansome',60,477,'Subscriber',94111); +INSERT INTO "trip" VALUES(910513,480,'8/28/2015 18:19','Temporary Transbay Terminal (Howard at Beale)',55,'8/28/2015 18:27','San Francisco Caltrain (Townsend at 4th)',70,455,'Subscriber',94062); +INSERT INTO "trip" VALUES(910514,574,'8/28/2015 18:19','Steuart at Market',74,'8/28/2015 18:29','San Francisco Caltrain (Townsend at 4th)',70,622,'Subscriber',94025); +INSERT INTO "trip" VALUES(910515,147,'8/28/2015 18:20','Yerba Buena Center of the Arts (3rd @ Howard)',68,'8/28/2015 18:22','5th at Howard',57,516,'Subscriber',94107); +INSERT INTO "trip" VALUES(910518,882,'8/28/2015 18:20','San Francisco Caltrain 2 (330 Townsend)',69,'8/28/2015 18:35','Golden Gate at Polk',59,321,'Subscriber',94109); +INSERT INTO "trip" VALUES(910519,1599,'8/28/2015 18:20','Clay at Battery',41,'8/28/2015 18:47','San Francisco Caltrain 2 (330 Townsend)',69,559,'Customer','nil'); +INSERT INTO "trip" VALUES(910520,780,'8/28/2015 18:21','Market at 10th',67,'8/28/2015 18:34','San Francisco Caltrain 2 (330 Townsend)',69,574,'Subscriber',94306); +INSERT INTO "trip" VALUES(910523,425,'8/28/2015 18:22','Grant Avenue at Columbus Avenue',73,'8/28/2015 18:29','Market at 4th',76,514,'Subscriber',94133); +INSERT INTO "trip" VALUES(910527,351,'8/28/2015 18:24','San Jose Diridon Caltrain Station',2,'8/28/2015 18:30','Santa Clara at Almaden',4,32,'Subscriber',95110); +INSERT INTO "trip" VALUES(910528,663,'8/28/2015 18:24','San Jose Diridon Caltrain Station',2,'8/28/2015 18:35','Ryland Park',84,165,'Subscriber',94040); +INSERT INTO "trip" VALUES(910530,746,'8/28/2015 18:24','San Jose Diridon Caltrain Station',2,'8/28/2015 18:37','Japantown',9,64,'Subscriber',94111); +INSERT INTO "trip" VALUES(910533,876,'8/28/2015 18:25','San Jose Diridon Caltrain Station',2,'8/28/2015 18:40','SJSU - San Salvador at 9th',16,208,'Subscriber',95112); +INSERT INTO "trip" VALUES(910534,555,'8/28/2015 18:26','Embarcadero at Vallejo',48,'8/28/2015 18:36','2nd at Townsend',61,391,'Subscriber',94107); +INSERT INTO "trip" VALUES(910535,625,'8/28/2015 18:27','University and Emerson',35,'8/28/2015 18:38','California Ave Caltrain Station',36,716,'Subscriber',94303); +INSERT INTO "trip" VALUES(910536,833,'8/28/2015 18:27','Steuart at Market',74,'8/28/2015 18:41','5th at Howard',57,613,'Subscriber',94112); +INSERT INTO "trip" VALUES(910538,418,'8/28/2015 18:29','2nd at Townsend',61,'8/28/2015 18:36','Townsend at 7th',65,450,'Subscriber',94903); +INSERT INTO "trip" VALUES(910539,237,'8/28/2015 18:30','Evelyn Park and Ride',30,'8/28/2015 18:34','Mountain View Caltrain Station',28,233,'Subscriber',94133); +INSERT INTO "trip" VALUES(910540,441,'8/28/2015 18:32','5th at Howard',57,'8/28/2015 18:39','San Francisco Caltrain 2 (330 Townsend)',69,516,'Subscriber','94107-3471'); +INSERT INTO "trip" VALUES(910542,684,'8/28/2015 18:33','Harry Bridges Plaza (Ferry Building)',50,'8/28/2015 18:45','San Francisco Caltrain (Townsend at 4th)',70,134,'Subscriber',94111); +INSERT INTO "trip" VALUES(910543,292,'8/28/2015 18:35','Embarcadero at Vallejo',48,'8/28/2015 18:40','Embarcadero at Folsom',51,546,'Subscriber',94124); +INSERT INTO "trip" VALUES(910544,862,'8/28/2015 18:36','Harry Bridges Plaza (Ferry Building)',50,'8/28/2015 18:51','San Francisco Caltrain 2 (330 Townsend)',69,677,'Subscriber',94403); +INSERT INTO "trip" VALUES(910545,196,'8/28/2015 18:37','San Francisco Caltrain (Townsend at 4th)',70,'8/28/2015 18:40','2nd at Townsend',61,342,'Subscriber',94107); +INSERT INTO "trip" VALUES(910546,277,'8/28/2015 18:37','San Francisco Caltrain 2 (330 Townsend)',69,'8/28/2015 18:42','2nd at South Park',64,33,'Subscriber',94107); +INSERT INTO "trip" VALUES(910547,235,'8/28/2015 18:38','San Francisco Caltrain 2 (330 Townsend)',69,'8/28/2015 18:42','Townsend at 7th',65,439,'Subscriber',94103); +INSERT INTO "trip" VALUES(910548,819,'8/28/2015 18:38','Market at Sansome',77,'8/28/2015 18:51','Market at 10th',67,510,'Subscriber',94103); +INSERT INTO "trip" VALUES(910549,988,'8/28/2015 18:39','2nd at Townsend',61,'8/28/2015 18:56','Clay at Battery',41,618,'Subscriber',94133); +INSERT INTO "trip" VALUES(910550,415,'8/28/2015 18:40','Post at Kearny',47,'8/28/2015 18:47','Grant Avenue at Columbus Avenue',73,533,'Subscriber',94111); +INSERT INTO "trip" VALUES(910551,129,'8/28/2015 18:40','2nd at Folsom',62,'8/28/2015 18:42','Market at Sansome',77,568,'Subscriber',94587); +INSERT INTO "trip" VALUES(910552,685,'8/28/2015 18:40','5th at Howard',57,'8/28/2015 18:51','Golden Gate at Polk',59,306,'Subscriber',94117); +INSERT INTO "trip" VALUES(910553,541,'8/28/2015 18:40','Market at 10th',67,'8/28/2015 18:49','San Francisco Caltrain 2 (330 Townsend)',69,591,'Subscriber',94065); +INSERT INTO "trip" VALUES(910554,1484,'8/28/2015 18:40','Embarcadero at Sansome',60,'8/28/2015 19:05','Embarcadero at Sansome',60,351,'Customer',43302); +INSERT INTO "trip" VALUES(910555,479,'8/28/2015 18:41','2nd at Townsend',61,'8/28/2015 18:49','Steuart at Market',74,575,'Subscriber',94612); +INSERT INTO "trip" VALUES(910556,475,'8/28/2015 18:41','Civic Center BART (7th at Market)',72,'8/28/2015 18:48','Powell Street BART',39,336,'Subscriber',94133); +INSERT INTO "trip" VALUES(910557,662,'8/28/2015 18:41','5th at Howard',57,'8/28/2015 18:52','San Francisco Caltrain (Townsend at 4th)',70,613,'Subscriber',94112); +INSERT INTO "trip" VALUES(910558,567,'8/28/2015 18:42','2nd at South Park',64,'8/28/2015 18:51','Steuart at Market',74,33,'Subscriber',94607); +INSERT INTO "trip" VALUES(910559,523,'8/28/2015 18:45','San Jose Diridon Caltrain Station',2,'8/28/2015 18:53','San Jose Civic Center',3,304,'Subscriber',95136); +INSERT INTO "trip" VALUES(910560,586,'8/28/2015 18:45','Beale at Market',56,'8/28/2015 18:55','Civic Center BART (7th at Market)',72,284,'Subscriber',94107); +INSERT INTO "trip" VALUES(910561,305,'8/28/2015 18:48','Broadway St at Battery St',82,'8/28/2015 18:53','Mechanics Plaza (Market at Battery)',75,383,'Subscriber',94111); +INSERT INTO "trip" VALUES(910562,348,'8/28/2015 18:48','Howard at 2nd',63,'8/28/2015 18:54','San Francisco Caltrain (Townsend at 4th)',70,500,'Subscriber',94066); +INSERT INTO "trip" VALUES(910563,287,'8/28/2015 18:49','San Francisco Caltrain (Townsend at 4th)',70,'8/28/2015 18:54','2nd at Townsend',61,495,'Subscriber',94107); +INSERT INTO "trip" VALUES(910564,469,'8/28/2015 18:49','Howard at 2nd',63,'8/28/2015 18:57','San Francisco Caltrain 2 (330 Townsend)',69,320,'Subscriber',94107); +INSERT INTO "trip" VALUES(910566,1078,'8/28/2015 18:51','Townsend at 7th',65,'8/28/2015 19:09','Temporary Transbay Terminal (Howard at Beale)',55,439,'Subscriber',94806); +INSERT INTO "trip" VALUES(910567,1809,'8/28/2015 18:52','San Francisco Caltrain (Townsend at 4th)',70,'8/28/2015 19:23','South Van Ness at Market',66,613,'Subscriber',94112); +INSERT INTO "trip" VALUES(910568,474,'8/28/2015 18:53','Market at 4th',76,'8/28/2015 19:01','Spear at Folsom',49,329,'Subscriber',94105); +INSERT INTO "trip" VALUES(910569,286,'8/28/2015 18:54','Market at Sansome',77,'8/28/2015 18:59','Harry Bridges Plaza (Ferry Building)',50,568,'Subscriber',94947); +INSERT INTO "trip" VALUES(910570,558,'8/28/2015 18:55','Grant Avenue at Columbus Avenue',73,'8/28/2015 19:04','Steuart at Market',74,558,'Customer',94112); +INSERT INTO "trip" VALUES(910571,396,'8/28/2015 18:56','2nd at Townsend',61,'8/28/2015 19:02','Harry Bridges Plaza (Ferry Building)',50,495,'Subscriber',94591); +INSERT INTO "trip" VALUES(910572,679,'8/28/2015 18:56','San Francisco Caltrain 2 (330 Townsend)',69,'8/28/2015 19:07','Market at 10th',67,609,'Subscriber',94103); +INSERT INTO "trip" VALUES(910573,1173,'8/28/2015 18:56','Embarcadero at Sansome',60,'8/28/2015 19:16','Embarcadero at Folsom',51,493,'Customer',11219); +INSERT INTO "trip" VALUES(910574,237,'8/28/2015 18:57','San Francisco Caltrain 2 (330 Townsend)',69,'8/28/2015 19:01','Townsend at 7th',65,677,'Subscriber',94107); +INSERT INTO "trip" VALUES(910575,250,'8/28/2015 18:57','Spear at Folsom',49,'8/28/2015 19:01','Steuart at Market',74,372,'Subscriber',94105); +INSERT INTO "trip" VALUES(910576,356,'8/28/2015 18:57','Davis at Jackson',42,'8/28/2015 19:03','Embarcadero at Sansome',60,361,'Subscriber',94133); +INSERT INTO "trip" VALUES(910577,705,'8/28/2015 18:57','Santa Clara County Civic Center',80,'8/28/2015 19:09','San Pedro Square',6,250,'Subscriber',95110); +INSERT INTO "trip" VALUES(910578,903,'8/28/2015 18:57','Spear at Folsom',49,'8/28/2015 19:13','Powell at Post (Union Square)',71,548,'Subscriber',94102); +INSERT INTO "trip" VALUES(910579,497,'8/28/2015 19:00','Spear at Folsom',49,'8/28/2015 19:08','Davis at Jackson',42,553,'Subscriber',94111); +INSERT INTO "trip" VALUES(910580,918,'8/28/2015 19:00','Embarcadero at Folsom',51,'8/28/2015 19:16','San Francisco Caltrain (Townsend at 4th)',70,546,'Subscriber',94133); +INSERT INTO "trip" VALUES(910581,336,'8/28/2015 19:03','Mountain View Caltrain Station',28,'8/28/2015 19:09','Evelyn Park and Ride',30,192,'Subscriber',94041); +INSERT INTO "trip" VALUES(910582,808,'8/28/2015 19:03','Temporary Transbay Terminal (Howard at Beale)',55,'8/28/2015 19:17','San Francisco Caltrain 2 (330 Townsend)',69,877,'Subscriber',94030); +INSERT INTO "trip" VALUES(910583,816,'8/28/2015 19:05','Embarcadero at Vallejo',48,'8/28/2015 19:19','San Francisco Caltrain (Townsend at 4th)',70,491,'Subscriber',94403); +INSERT INTO "trip" VALUES(910584,658,'8/28/2015 19:05','South Van Ness at Market',66,'8/28/2015 19:16','Market at Sansome',77,502,'Subscriber',94103); +INSERT INTO "trip" VALUES(910585,540,'8/28/2015 19:06','Embarcadero at Sansome',60,'8/28/2015 19:15','Beale at Market',56,351,'Customer',43302); +INSERT INTO "trip" VALUES(910586,878,'8/28/2015 19:06','Market at 4th',76,'8/28/2015 19:20','San Francisco Caltrain (Townsend at 4th)',70,514,'Customer','nil'); +INSERT INTO "trip" VALUES(910587,355,'8/28/2015 19:06','Harry Bridges Plaza (Ferry Building)',50,'8/28/2015 19:12','Embarcadero at Bryant',54,370,'Subscriber',94105); +INSERT INTO "trip" VALUES(910588,897,'8/28/2015 19:07','San Francisco Caltrain (Townsend at 4th)',70,'8/28/2015 19:22','Embarcadero at Bryant',54,628,'Subscriber',94105); +INSERT INTO "trip" VALUES(910589,398,'8/28/2015 19:08','Golden Gate at Polk',59,'8/28/2015 19:14','Market at 4th',76,269,'Subscriber',94306); +INSERT INTO "trip" VALUES(910593,283,'8/28/2015 19:09','Ryland Park',84,'8/28/2015 19:13','Santa Clara at Almaden',4,165,'Subscriber',95110); +INSERT INTO "trip" VALUES(910594,477,'8/28/2015 19:09','Howard at 2nd',63,'8/28/2015 19:17','San Francisco Caltrain (Townsend at 4th)',70,540,'Subscriber',94404); +INSERT INTO "trip" VALUES(910599,844,'8/28/2015 19:11','South Van Ness at Market',66,'8/28/2015 19:25','Temporary Transbay Terminal (Howard at Beale)',55,567,'Subscriber',94611); +INSERT INTO "trip" VALUES(910600,663,'8/28/2015 19:12','Market at 4th',76,'8/28/2015 19:23','2nd at Townsend',61,531,'Subscriber',94107); +INSERT INTO "trip" VALUES(910601,200,'8/28/2015 19:14','5th at Howard',57,'8/28/2015 19:17','Yerba Buena Center of the Arts (3rd @ Howard)',68,399,'Subscriber',94133); +INSERT INTO "trip" VALUES(910602,1357,'8/28/2015 19:17','Embarcadero at Folsom',51,'8/28/2015 19:39','2nd at Townsend',61,493,'Customer',11219); +INSERT INTO "trip" VALUES(910603,233,'8/28/2015 19:17','Embarcadero at Vallejo',48,'8/28/2015 19:21','Steuart at Market',74,432,'Subscriber',94610); +INSERT INTO "trip" VALUES(910604,442,'8/28/2015 19:21','Market at 4th',76,'8/28/2015 19:28','Davis at Jackson',42,269,'Customer',94111); +INSERT INTO "trip" VALUES(910605,716,'8/28/2015 19:22','Embarcadero at Bryant',54,'8/28/2015 19:34','Embarcadero at Bryant',54,628,'Subscriber',94105); +INSERT INTO "trip" VALUES(910606,543,'8/28/2015 19:22','Steuart at Market',74,'8/28/2015 19:31','Washington at Kearny',46,267,'Subscriber',94107); +INSERT INTO "trip" VALUES(910607,1667,'8/28/2015 19:24','South Van Ness at Market',66,'8/28/2015 19:52','Washington at Kearny',46,613,'Subscriber',94112); +INSERT INTO "trip" VALUES(910608,480,'8/28/2015 19:26','Powell Street BART',39,'8/28/2015 19:34','Market at 10th',67,578,'Subscriber',94306); +INSERT INTO "trip" VALUES(910609,184,'8/28/2015 19:29','San Francisco Caltrain (Townsend at 4th)',70,'8/28/2015 19:32','2nd at Townsend',61,546,'Subscriber',94107); +INSERT INTO "trip" VALUES(910610,548,'8/28/2015 19:29','San Francisco Caltrain (Townsend at 4th)',70,'8/28/2015 19:39','Market at 4th',76,413,'Subscriber',95054); +INSERT INTO "trip" VALUES(910611,539,'8/28/2015 19:30','San Francisco Caltrain (Townsend at 4th)',70,'8/28/2015 19:39','Embarcadero at Bryant',54,373,'Subscriber',94105); +INSERT INTO "trip" VALUES(910615,263,'8/28/2015 19:35','Commercial at Montgomery',45,'8/28/2015 19:40','Yerba Buena Center of the Arts (3rd @ Howard)',68,426,'Subscriber',94107); +INSERT INTO "trip" VALUES(910618,346,'8/28/2015 19:39','San Jose Diridon Caltrain Station',2,'8/28/2015 19:44','Santa Clara at Almaden',4,117,'Subscriber',95110); +INSERT INTO "trip" VALUES(910619,410,'8/28/2015 19:39','Civic Center BART (7th at Market)',72,'8/28/2015 19:46','Post at Kearny',47,416,'Subscriber',94107); +INSERT INTO "trip" VALUES(910620,258,'8/28/2015 19:42','Grant Avenue at Columbus Avenue',73,'8/28/2015 19:46','Commercial at Montgomery',45,541,'Subscriber',94111); +INSERT INTO "trip" VALUES(910627,881,'8/28/2015 19:56','Washington at Kearny',46,'8/28/2015 20:11','Embarcadero at Sansome',60,613,'Subscriber',94112); +INSERT INTO "trip" VALUES(910628,983,'8/28/2015 20:01','Powell Street BART',39,'8/28/2015 20:18','Broadway St at Battery St',82,327,'Subscriber',94133); +INSERT INTO "trip" VALUES(910629,805,'8/28/2015 20:04','San Francisco Caltrain (Townsend at 4th)',70,'8/28/2015 20:17','Grant Avenue at Columbus Avenue',73,528,'Subscriber',94133); +INSERT INTO "trip" VALUES(910631,891,'8/28/2015 20:18','Washington at Kearny',46,'8/28/2015 20:33','2nd at Townsend',61,267,'Subscriber',94107); +INSERT INTO "trip" VALUES(910632,1507,'8/28/2015 20:20','University and Emerson',35,'8/28/2015 20:45','San Antonio Shopping Center',31,149,'Subscriber',94301); +INSERT INTO "trip" VALUES(910633,431,'8/28/2015 20:24','Powell Street BART',39,'8/28/2015 20:32','Market at 10th',67,601,'Subscriber',94158); +INSERT INTO "trip" VALUES(910634,420,'8/28/2015 20:25','Powell Street BART',39,'8/28/2015 20:32','Market at 10th',67,456,'Subscriber',94158); +INSERT INTO "trip" VALUES(910635,1212,'8/28/2015 20:25','Embarcadero at Sansome',60,'8/28/2015 20:45','Market at 10th',67,415,'Customer',94619); +INSERT INTO "trip" VALUES(910638,1176,'8/28/2015 20:26','Embarcadero at Sansome',60,'8/28/2015 20:46','Market at 10th',67,404,'Customer',94116); +INSERT INTO "trip" VALUES(910639,143,'8/28/2015 20:27','Spear at Folsom',49,'8/28/2015 20:30','Temporary Transbay Terminal (Howard at Beale)',55,344,'Subscriber',94105); +INSERT INTO "trip" VALUES(910642,276,'8/28/2015 20:30','2nd at South Park',64,'8/28/2015 20:35','San Francisco Caltrain (Townsend at 4th)',70,592,'Subscriber',94303); +INSERT INTO "trip" VALUES(910643,1147,'8/28/2015 20:33','2nd at Townsend',61,'8/28/2015 20:52','Market at Sansome',77,579,'Customer',11219); +INSERT INTO "trip" VALUES(910644,620,'8/28/2015 20:34','Powell at Post (Union Square)',71,'8/28/2015 20:44','Spear at Folsom',49,548,'Subscriber',94102); +INSERT INTO "trip" VALUES(910645,331,'8/28/2015 20:35','2nd at Townsend',61,'8/28/2015 20:40','San Francisco Caltrain (Townsend at 4th)',70,535,'Subscriber',94107); +INSERT INTO "trip" VALUES(910646,138,'8/28/2015 20:35','Townsend at 7th',65,'8/28/2015 20:38','Townsend at 7th',65,450,'Subscriber',94107); +INSERT INTO "trip" VALUES(910647,305,'8/28/2015 20:36','Market at Sansome',77,'8/28/2015 20:41','Powell Street BART',39,625,'Subscriber',94133); +INSERT INTO "trip" VALUES(910648,279,'8/28/2015 20:36','Paseo de San Antonio',7,'8/28/2015 20:41','Santa Clara at Almaden',4,205,'Subscriber',95110); +INSERT INTO "trip" VALUES(910649,518,'8/28/2015 20:36','Market at Sansome',77,'8/28/2015 20:45','Embarcadero at Sansome',60,283,'Subscriber',94111); +INSERT INTO "trip" VALUES(910650,1075,'8/28/2015 20:37','Market at Sansome',77,'8/28/2015 20:54','San Francisco Caltrain (Townsend at 4th)',70,309,'Subscriber',94401); +INSERT INTO "trip" VALUES(910651,641,'8/28/2015 20:40','2nd at Townsend',61,'8/28/2015 20:51','Market at 4th',76,659,'Subscriber',94401); +INSERT INTO "trip" VALUES(910652,779,'8/28/2015 20:52','San Francisco Caltrain 2 (330 Townsend)',69,'8/28/2015 21:05','Golden Gate at Polk',59,559,'Subscriber',94107); +INSERT INTO "trip" VALUES(910657,614,'8/28/2015 20:54','Harry Bridges Plaza (Ferry Building)',50,'8/28/2015 21:04','2nd at Townsend',61,495,'Subscriber',94107); +INSERT INTO "trip" VALUES(910665,278,'8/28/2015 21:04','Post at Kearny',47,'8/28/2015 21:08','5th at Howard',57,416,'Subscriber',94107); +INSERT INTO "trip" VALUES(910666,55805,'8/28/2015 21:16','Broadway St at Battery St',82,'8/29/2015 12:46','Steuart at Market',74,212,'Subscriber',94111); +INSERT INTO "trip" VALUES(910667,465,'8/28/2015 21:17','Palo Alto Caltrain Station',34,'8/28/2015 21:24','Cowper at University',37,707,'Subscriber',94131); +INSERT INTO "trip" VALUES(910669,426,'8/28/2015 21:18','Paseo de San Antonio',7,'8/28/2015 21:25','Adobe on Almaden',5,714,'Subscriber',94709); +INSERT INTO "trip" VALUES(910670,655,'8/28/2015 21:18','2nd at Townsend',61,'8/28/2015 21:29','Embarcadero at Sansome',60,342,'Subscriber',94107); +INSERT INTO "trip" VALUES(910672,198,'8/28/2015 21:27','San Francisco Caltrain 2 (330 Townsend)',69,'8/28/2015 21:31','Townsend at 7th',65,434,'Subscriber',94107); +INSERT INTO "trip" VALUES(910673,1384,'8/28/2015 21:29','Embarcadero at Sansome',60,'8/28/2015 21:53','San Francisco Caltrain (Townsend at 4th)',70,342,'Subscriber',94107); +INSERT INTO "trip" VALUES(910674,327,'8/28/2015 21:33','5th at Howard',57,'8/28/2015 21:38','San Francisco Caltrain 2 (330 Townsend)',69,416,'Customer',94306); +INSERT INTO "trip" VALUES(910675,1531,'8/28/2015 21:39','Arena Green / SAP Center',14,'8/28/2015 22:04','Santa Clara at Almaden',4,308,'Subscriber',95113); +INSERT INTO "trip" VALUES(910676,6920,'8/28/2015 21:41','Embarcadero at Bryant',54,'8/28/2015 23:36','Embarcadero at Bryant',54,598,'Customer',95035); +INSERT INTO "trip" VALUES(910677,6876,'8/28/2015 21:42','Embarcadero at Bryant',54,'8/28/2015 23:36','Embarcadero at Bryant',54,619,'Customer',95035); +INSERT INTO "trip" VALUES(910678,302,'8/28/2015 21:47','Post at Kearny',47,'8/28/2015 21:52','2nd at South Park',64,312,'Subscriber',94107); +INSERT INTO "trip" VALUES(910680,262,'8/28/2015 22:00','Steuart at Market',74,'8/28/2015 22:05','Spear at Folsom',49,432,'Subscriber',94111); +INSERT INTO "trip" VALUES(910681,591,'8/28/2015 22:05','San Francisco Caltrain (Townsend at 4th)',70,'8/28/2015 22:15','Powell Street BART',39,309,'Subscriber',2780); +INSERT INTO "trip" VALUES(910682,123,'8/28/2015 22:19','Beale at Market',56,'8/28/2015 22:21','Temporary Transbay Terminal (Howard at Beale)',55,584,'Subscriber',94130); +INSERT INTO "trip" VALUES(910685,1166,'8/28/2015 22:27','Embarcadero at Sansome',60,'8/28/2015 22:47','2nd at Townsend',61,356,'Subscriber',94107); +INSERT INTO "trip" VALUES(910686,437,'8/28/2015 22:34','2nd at Townsend',61,'8/28/2015 22:42','Temporary Transbay Terminal (Howard at Beale)',55,493,'Customer',94123); +INSERT INTO "trip" VALUES(910687,427,'8/28/2015 22:45','Embarcadero at Folsom',51,'8/28/2015 22:52','Davis at Jackson',42,630,'Customer',90046); +INSERT INTO "trip" VALUES(910688,596,'8/28/2015 22:46','Temporary Transbay Terminal (Howard at Beale)',55,'8/28/2015 22:56','Embarcadero at Sansome',60,567,'Customer',94123); +INSERT INTO "trip" VALUES(910689,292,'8/28/2015 22:50','Paseo de San Antonio',7,'8/28/2015 22:55','SJSU - San Salvador at 9th',16,679,'Subscriber',95112); +INSERT INTO "trip" VALUES(910690,2072,'8/28/2015 22:56','Harry Bridges Plaza (Ferry Building)',50,'8/28/2015 23:31','Embarcadero at Sansome',60,451,'Customer',94704); +INSERT INTO "trip" VALUES(910691,298,'8/28/2015 23:09','Embarcadero at Bryant',54,'8/28/2015 23:14','Steuart at Market',74,370,'Subscriber',94114); +INSERT INTO "trip" VALUES(910692,809,'8/28/2015 23:14','2nd at Townsend',61,'8/28/2015 23:27','Powell at Post (Union Square)',71,497,'Subscriber',94109); +INSERT INTO "trip" VALUES(910693,418,'8/28/2015 23:23','Townsend at 7th',65,'8/28/2015 23:30','2nd at Townsend',61,434,'Subscriber',94107); +INSERT INTO "trip" VALUES(910694,476,'8/28/2015 23:40','Grant Avenue at Columbus Avenue',73,'8/28/2015 23:47','Market at Sansome',77,489,'Subscriber',94610); +INSERT INTO "trip" VALUES(910695,240,'8/28/2015 23:55','San Francisco Caltrain (Townsend at 4th)',70,'8/28/2015 23:59','2nd at Townsend',61,540,'Subscriber',94107); +INSERT INTO "trip" VALUES(910696,420,'8/29/2015 0:09','Clay at Battery',41,'8/29/2015 0:16','Grant Avenue at Columbus Avenue',73,618,'Subscriber',94133); +INSERT INTO "trip" VALUES(910697,619,'8/29/2015 0:11','2nd at Folsom',62,'8/29/2015 0:21','Broadway St at Battery St',82,581,'Subscriber',94133); +INSERT INTO "trip" VALUES(910699,400,'8/29/2015 0:19','San Francisco Caltrain 2 (330 Townsend)',69,'8/29/2015 0:26','2nd at Folsom',62,320,'Subscriber',94107); +INSERT INTO "trip" VALUES(910700,749,'8/29/2015 0:59','South Van Ness at Market',66,'8/29/2015 1:11','Grant Avenue at Columbus Avenue',73,617,'Subscriber',94133); +INSERT INTO "trip" VALUES(910701,286,'8/29/2015 1:17','Market at 4th',76,'8/29/2015 1:21','Civic Center BART (7th at Market)',72,413,'Subscriber',94107); +INSERT INTO "trip" VALUES(910702,940,'8/29/2015 1:22','Spear at Folsom',49,'8/29/2015 1:38','Powell at Post (Union Square)',71,329,'Subscriber',94102); +INSERT INTO "trip" VALUES(910703,5678,'8/29/2015 1:38','Grant Avenue at Columbus Avenue',73,'8/29/2015 3:12','Embarcadero at Sansome',60,533,'Customer',95383); +INSERT INTO "trip" VALUES(910704,5442,'8/29/2015 1:41','Grant Avenue at Columbus Avenue',73,'8/29/2015 3:12','Embarcadero at Sansome',60,528,'Customer',96151); +INSERT INTO "trip" VALUES(910705,1455,'8/29/2015 1:43','University and Emerson',35,'8/29/2015 2:07','California Ave Caltrain Station',36,110,'Customer',55); +INSERT INTO "trip" VALUES(910706,5192,'8/29/2015 1:45','Grant Avenue at Columbus Avenue',73,'8/29/2015 3:12','Embarcadero at Sansome',60,318,'Customer','nil'); +INSERT INTO "trip" VALUES(910707,499,'8/29/2015 2:10','Market at 4th',76,'8/29/2015 2:18','Market at 10th',67,449,'Subscriber',94103); +INSERT INTO "trip" VALUES(910709,829,'8/29/2015 5:59','Castro Street and El Camino Real',32,'8/29/2015 6:13','San Antonio Shopping Center',31,194,'Subscriber',95032); +INSERT INTO "trip" VALUES(910710,1029,'8/29/2015 6:38','Davis at Jackson',42,'8/29/2015 6:55','Harry Bridges Plaza (Ferry Building)',50,260,'Customer',90046); +INSERT INTO "trip" VALUES(910711,537,'8/29/2015 6:48','Post at Kearny',47,'8/29/2015 6:57','Harry Bridges Plaza (Ferry Building)',50,189,'Customer',''); +INSERT INTO "trip" VALUES(910712,589,'8/29/2015 7:16','Embarcadero at Bryant',54,'8/29/2015 7:26','Embarcadero at Sansome',60,382,'Subscriber',94107); +INSERT INTO "trip" VALUES(910713,4323,'8/29/2015 7:26','Embarcadero at Vallejo',48,'8/29/2015 8:38','Embarcadero at Vallejo',48,355,'Customer',''); +INSERT INTO "trip" VALUES(910715,220,'8/29/2015 7:44','Harry Bridges Plaza (Ferry Building)',50,'8/29/2015 7:48','Davis at Jackson',42,313,'Customer',90046); +INSERT INTO "trip" VALUES(910716,16904,'8/29/2015 7:50','Harry Bridges Plaza (Ferry Building)',50,'8/29/2015 12:32','Harry Bridges Plaza (Ferry Building)',50,566,'Customer',94117); +INSERT INTO "trip" VALUES(910718,16876,'8/29/2015 7:50','Harry Bridges Plaza (Ferry Building)',50,'8/29/2015 12:32','Harry Bridges Plaza (Ferry Building)',50,470,'Customer',94117); +INSERT INTO "trip" VALUES(910722,325,'8/29/2015 7:55','Washington at Kearny',46,'8/29/2015 8:01','Harry Bridges Plaza (Ferry Building)',50,315,'Subscriber',94109); +INSERT INTO "trip" VALUES(910738,457,'8/29/2015 8:09','Grant Avenue at Columbus Avenue',73,'8/29/2015 8:16','Temporary Transbay Terminal (Howard at Beale)',55,407,'Subscriber',94133); +INSERT INTO "trip" VALUES(910740,335,'8/29/2015 8:10','Embarcadero at Bryant',54,'8/29/2015 8:15','Mechanics Plaza (Market at Battery)',75,393,'Subscriber',94105); +INSERT INTO "trip" VALUES(910741,344,'8/29/2015 8:13','Grant Avenue at Columbus Avenue',73,'8/29/2015 8:19','Harry Bridges Plaza (Ferry Building)',50,618,'Subscriber',94133); +INSERT INTO "trip" VALUES(910742,672,'8/29/2015 8:38','Paseo de San Antonio',7,'8/29/2015 8:49','San Jose Diridon Caltrain Station',2,261,'Customer',91324); +INSERT INTO "trip" VALUES(910743,324,'8/29/2015 8:46','Davis at Jackson',42,'8/29/2015 8:51','Harry Bridges Plaza (Ferry Building)',50,630,'Subscriber',94111); +INSERT INTO "trip" VALUES(910744,377,'8/29/2015 8:47','2nd at South Park',64,'8/29/2015 8:54','Post at Kearny',47,312,'Subscriber',94107); +INSERT INTO "trip" VALUES(910745,461,'8/29/2015 8:48','Harry Bridges Plaza (Ferry Building)',50,'8/29/2015 8:56','Grant Avenue at Columbus Avenue',73,618,'Subscriber',94133); +INSERT INTO "trip" VALUES(910746,554,'8/29/2015 8:53','Market at 10th',67,'8/29/2015 9:03','Market at Sansome',77,510,'Subscriber',94103); +INSERT INTO "trip" VALUES(910747,234,'8/29/2015 8:55','San Pedro Square',6,'8/29/2015 8:59','Paseo de San Antonio',7,250,'Subscriber',95110); +INSERT INTO "trip" VALUES(910748,9829,'8/29/2015 8:57','Washington at Kearny',46,'8/29/2015 11:41','Washington at Kearny',46,292,'Customer',32801); +INSERT INTO "trip" VALUES(910749,9797,'8/29/2015 8:58','Washington at Kearny',46,'8/29/2015 11:41','Washington at Kearny',46,441,'Customer',32801); +INSERT INTO "trip" VALUES(910752,586,'8/29/2015 9:01','Harry Bridges Plaza (Ferry Building)',50,'8/29/2015 9:10','Powell at Post (Union Square)',71,260,'Customer',''); +INSERT INTO "trip" VALUES(910753,610,'8/29/2015 9:01','San Francisco Caltrain 2 (330 Townsend)',69,'8/29/2015 9:11','Embarcadero at Folsom',51,591,'Subscriber',94107); +INSERT INTO "trip" VALUES(910754,189,'8/29/2015 9:04','Powell Street BART',39,'8/29/2015 9:07','Market at Sansome',77,309,'Subscriber',94107); +INSERT INTO "trip" VALUES(910755,217,'8/29/2015 9:08','Embarcadero at Bryant',54,'8/29/2015 9:12','2nd at Townsend',61,479,'Subscriber',94103); +INSERT INTO "trip" VALUES(910756,1807,'8/29/2015 9:09','Market at 4th',76,'8/29/2015 9:39','Harry Bridges Plaza (Ferry Building)',50,423,'Subscriber',90803); +INSERT INTO "trip" VALUES(910758,460,'8/29/2015 9:13','5th at Howard',57,'8/29/2015 9:21','Market at 10th',67,547,'Subscriber',94103); +INSERT INTO "trip" VALUES(910759,615,'8/29/2015 9:14','Mechanics Plaza (Market at Battery)',75,'8/29/2015 9:24','Civic Center BART (7th at Market)',72,652,'Subscriber',94133); +INSERT INTO "trip" VALUES(910760,999,'8/29/2015 9:22','Market at 4th',76,'8/29/2015 9:39','Harry Bridges Plaza (Ferry Building)',50,522,'Customer',90803); +INSERT INTO "trip" VALUES(910761,986,'8/29/2015 9:23','Market at 4th',76,'8/29/2015 9:39','Harry Bridges Plaza (Ferry Building)',50,519,'Customer',90803); +INSERT INTO "trip" VALUES(910762,582,'8/29/2015 9:36','Embarcadero at Sansome',60,'8/29/2015 9:45','Embarcadero at Bryant',54,613,'Subscriber',94107); +INSERT INTO "trip" VALUES(910763,2822,'8/29/2015 9:36','San Antonio Shopping Center',31,'8/29/2015 10:23','Evelyn Park and Ride',30,194,'Subscriber',95032); +INSERT INTO "trip" VALUES(910764,546,'8/29/2015 9:37','Grant Avenue at Columbus Avenue',73,'8/29/2015 9:46','Harry Bridges Plaza (Ferry Building)',50,86,'Subscriber',94133); +INSERT INTO "trip" VALUES(910766,438,'8/29/2015 9:41','Mechanics Plaza (Market at Battery)',75,'8/29/2015 9:48','Embarcadero at Bryant',54,383,'Subscriber',94105); +INSERT INTO "trip" VALUES(910770,478,'8/29/2015 9:45','Market at 10th',67,'8/29/2015 9:53','Post at Kearny',47,620,'Subscriber',94102); +INSERT INTO "trip" VALUES(910771,459,'8/29/2015 9:45','San Antonio Caltrain Station',29,'8/29/2015 9:53','San Antonio Caltrain Station',29,10,'Customer','nil'); +INSERT INTO "trip" VALUES(910772,541,'8/29/2015 9:46','St James Park',13,'8/29/2015 9:55','San Salvador at 1st',8,661,'Subscriber',95112); +INSERT INTO "trip" VALUES(910776,5064,'8/29/2015 9:58','Embarcadero at Vallejo',48,'8/29/2015 11:23','Harry Bridges Plaza (Ferry Building)',50,355,'Customer',23226); +INSERT INTO "trip" VALUES(910777,704,'8/29/2015 10:02','Townsend at 7th',65,'8/29/2015 10:13','Spear at Folsom',49,677,'Subscriber',94107); +INSERT INTO "trip" VALUES(910778,1047,'8/29/2015 10:06','Temporary Transbay Terminal (Howard at Beale)',55,'8/29/2015 10:23','Townsend at 7th',65,687,'Subscriber',94501); +INSERT INTO "trip" VALUES(910779,296,'8/29/2015 10:21','2nd at Townsend',61,'8/29/2015 10:25','Embarcadero at Bryant',54,479,'Subscriber',94103); +INSERT INTO "trip" VALUES(910780,1275,'8/29/2015 10:23','2nd at Townsend',61,'8/29/2015 10:44','Harry Bridges Plaza (Ferry Building)',50,378,'Customer',80108); +INSERT INTO "trip" VALUES(910781,1275,'8/29/2015 10:23','2nd at Townsend',61,'8/29/2015 10:44','Harry Bridges Plaza (Ferry Building)',50,391,'Customer',80108); +INSERT INTO "trip" VALUES(910782,828,'8/29/2015 10:23','Embarcadero at Folsom',51,'8/29/2015 10:37','San Francisco Caltrain (Townsend at 4th)',70,591,'Subscriber',94107); +INSERT INTO "trip" VALUES(910783,827,'8/29/2015 10:23','Embarcadero at Folsom',51,'8/29/2015 10:37','San Francisco Caltrain (Townsend at 4th)',70,350,'Subscriber',94107); +INSERT INTO "trip" VALUES(910784,17937,'8/29/2015 10:26','Market at 4th',76,'8/29/2015 15:25','Market at 4th',76,310,'Customer',8203); +INSERT INTO "trip" VALUES(910785,17924,'8/29/2015 10:27','Market at 4th',76,'8/29/2015 15:25','Market at 4th',76,564,'Customer',8203); +INSERT INTO "trip" VALUES(910786,1594,'8/29/2015 10:28','5th at Howard',57,'8/29/2015 10:54','Market at 10th',67,403,'Customer',94103); +INSERT INTO "trip" VALUES(910787,398,'8/29/2015 10:29','2nd at Folsom',62,'8/29/2015 10:36','Powell Street BART',39,607,'Subscriber',94105); +INSERT INTO "trip" VALUES(910789,547,'8/29/2015 10:33','Powell at Post (Union Square)',71,'8/29/2015 10:42','2nd at Townsend',61,497,'Subscriber',94109); +INSERT INTO "trip" VALUES(910791,1009,'8/29/2015 10:37','Rengstorff Avenue / California Street',33,'8/29/2015 10:54','Park at Olive',38,123,'Subscriber',94306); +INSERT INTO "trip" VALUES(910793,294,'8/29/2015 10:38','Spear at Folsom',49,'8/29/2015 10:43','2nd at South Park',64,548,'Subscriber',94105); +INSERT INTO "trip" VALUES(910797,1122,'8/29/2015 10:42','Embarcadero at Bryant',54,'8/29/2015 11:01','Grant Avenue at Columbus Avenue',73,383,'Subscriber',94105); +INSERT INTO "trip" VALUES(910799,372,'8/29/2015 10:43','Market at 10th',67,'8/29/2015 10:49','5th at Howard',57,578,'Subscriber',94103); +INSERT INTO "trip" VALUES(910800,213,'8/29/2015 10:48','Steuart at Market',74,'8/29/2015 10:51','Embarcadero at Vallejo',48,575,'Subscriber',94608); +INSERT INTO "trip" VALUES(910803,2115,'8/29/2015 10:56','Harry Bridges Plaza (Ferry Building)',50,'8/29/2015 11:31','San Francisco Caltrain (Townsend at 4th)',70,522,'Customer',90803); +INSERT INTO "trip" VALUES(910804,170,'8/29/2015 10:56','2nd at Folsom',62,'8/29/2015 10:59','Market at Sansome',77,445,'Subscriber',94107); +INSERT INTO "trip" VALUES(910805,2075,'8/29/2015 10:56','Harry Bridges Plaza (Ferry Building)',50,'8/29/2015 11:31','San Francisco Caltrain (Townsend at 4th)',70,189,'Customer',90803); +INSERT INTO "trip" VALUES(910806,2081,'8/29/2015 10:56','Harry Bridges Plaza (Ferry Building)',50,'8/29/2015 11:31','San Francisco Caltrain (Townsend at 4th)',70,423,'Subscriber',90803); +INSERT INTO "trip" VALUES(910807,289,'8/29/2015 10:59','Grant Avenue at Columbus Avenue',73,'8/29/2015 11:04','Beale at Market',56,618,'Subscriber',94133); +INSERT INTO "trip" VALUES(910808,192,'8/29/2015 10:59','Embarcadero at Bryant',54,'8/29/2015 11:02','Spear at Folsom',49,359,'Subscriber',94111); +INSERT INTO "trip" VALUES(910809,683,'8/29/2015 11:01','Harry Bridges Plaza (Ferry Building)',50,'8/29/2015 11:12','2nd at South Park',64,274,'Subscriber',94107); +INSERT INTO "trip" VALUES(910812,1627,'8/29/2015 11:06','Grant Avenue at Columbus Avenue',73,'8/29/2015 11:33','Grant Avenue at Columbus Avenue',73,383,'Subscriber',94105); +INSERT INTO "trip" VALUES(910815,766,'8/29/2015 11:12','5th at Howard',57,'8/29/2015 11:24','Spear at Folsom',49,585,'Customer',94558); +INSERT INTO "trip" VALUES(910816,581,'8/29/2015 11:15','5th at Howard',57,'8/29/2015 11:24','Spear at Folsom',49,385,'Customer','nil'); +INSERT INTO "trip" VALUES(910817,589,'8/29/2015 11:15','5th at Howard',57,'8/29/2015 11:25','Spear at Folsom',49,390,'Customer','nil'); +INSERT INTO "trip" VALUES(910818,628,'8/29/2015 11:17','Mountain View Caltrain Station',28,'8/29/2015 11:27','Mountain View City Hall',27,700,'Subscriber',94041); +INSERT INTO "trip" VALUES(910819,11762,'8/29/2015 11:20','Market at 4th',76,'8/29/2015 14:36','Market at 4th',76,659,'Customer','nil'); +INSERT INTO "trip" VALUES(910823,356,'8/29/2015 11:25','2nd at South Park',64,'8/29/2015 11:31','Spear at Folsom',49,548,'Subscriber',94105); +INSERT INTO "trip" VALUES(910828,944,'8/29/2015 11:33','Grant Avenue at Columbus Avenue',73,'8/29/2015 11:49','Harry Bridges Plaza (Ferry Building)',50,383,'Subscriber',94105); +INSERT INTO "trip" VALUES(910829,833,'8/29/2015 11:35','Townsend at 7th',65,'8/29/2015 11:49','San Francisco City Hall',58,417,'Subscriber',94107); +INSERT INTO "trip" VALUES(910830,600,'8/29/2015 11:36','Market at 10th',67,'8/29/2015 11:46','Market at 4th',76,427,'Customer',4901); +INSERT INTO "trip" VALUES(910831,581,'8/29/2015 11:36','Market at 10th',67,'8/29/2015 11:46','Market at 4th',76,340,'Customer',4901); +INSERT INTO "trip" VALUES(910832,775,'8/29/2015 11:38','Temporary Transbay Terminal (Howard at Beale)',55,'8/29/2015 11:51','Washington at Kearny',46,407,'Subscriber',94608); +INSERT INTO "trip" VALUES(910833,9343,'8/29/2015 11:39','Grant Avenue at Columbus Avenue',73,'8/29/2015 14:14','San Francisco Caltrain (Townsend at 4th)',70,408,'Customer',93401); +INSERT INTO "trip" VALUES(910834,812,'8/29/2015 11:39','San Francisco Caltrain (Townsend at 4th)',70,'8/29/2015 11:52','Market at 10th',67,591,'Subscriber',94107); +INSERT INTO "trip" VALUES(910835,8702,'8/29/2015 11:39','Grant Avenue at Columbus Avenue',73,'8/29/2015 14:04','2nd at South Park',64,617,'Customer',93401); +INSERT INTO "trip" VALUES(910836,695,'8/29/2015 11:40','SJSU - San Salvador at 9th',16,'8/29/2015 11:51','San Jose Diridon Caltrain Station',2,213,'Subscriber',95126); +INSERT INTO "trip" VALUES(910837,104,'8/29/2015 11:40','Howard at 2nd',63,'8/29/2015 11:41','Market at Sansome',77,16,'Subscriber',94107); +INSERT INTO "trip" VALUES(910838,829,'8/29/2015 11:40','Townsend at 7th',65,'8/29/2015 11:54','Yerba Buena Center of the Arts (3rd @ Howard)',68,687,'Subscriber',94107); +INSERT INTO "trip" VALUES(910839,504,'8/29/2015 11:42','Market at 4th',76,'8/29/2015 11:50','Harry Bridges Plaza (Ferry Building)',50,300,'Subscriber',94103); +INSERT INTO "trip" VALUES(910840,818,'8/29/2015 11:43','Harry Bridges Plaza (Ferry Building)',50,'8/29/2015 11:57','Washington at Kearny',46,463,'Subscriber',94109); +INSERT INTO "trip" VALUES(910841,560,'8/29/2015 11:45','San Francisco Caltrain (Townsend at 4th)',70,'8/29/2015 11:54','Embarcadero at Folsom',51,592,'Subscriber',95131); +INSERT INTO "trip" VALUES(910842,714,'8/29/2015 11:46','Harry Bridges Plaza (Ferry Building)',50,'8/29/2015 11:58','Washington at Kearny',46,391,'Subscriber',94109); +INSERT INTO "trip" VALUES(910844,100,'8/29/2015 11:51','San Francisco Caltrain 2 (330 Townsend)',69,'8/29/2015 11:53','San Francisco Caltrain 2 (330 Townsend)',69,623,'Subscriber',94107); +INSERT INTO "trip" VALUES(910846,2471,'8/29/2015 11:52','Mountain View City Hall',27,'8/29/2015 12:33','Park at Olive',38,700,'Customer',94539); +INSERT INTO "trip" VALUES(910847,2465,'8/29/2015 11:52','Mountain View City Hall',27,'8/29/2015 12:33','Park at Olive',38,678,'Customer',94539); +INSERT INTO "trip" VALUES(910848,394,'8/29/2015 11:54','Market at Sansome',77,'8/29/2015 12:00','2nd at South Park',64,502,'Subscriber',94107); +INSERT INTO "trip" VALUES(910850,603,'8/29/2015 11:56','San Francisco Caltrain 2 (330 Townsend)',69,'8/29/2015 12:06','Powell at Post (Union Square)',71,623,'Subscriber',94107); +INSERT INTO "trip" VALUES(910851,1259,'8/29/2015 11:56','Washington at Kearny',46,'8/29/2015 12:17','Harry Bridges Plaza (Ferry Building)',50,292,'Customer',55372); +INSERT INTO "trip" VALUES(910852,322,'8/29/2015 11:57','Spear at Folsom',49,'8/29/2015 12:03','Yerba Buena Center of the Arts (3rd @ Howard)',68,548,'Subscriber',94105); +INSERT INTO "trip" VALUES(910853,521,'8/29/2015 11:58','Clay at Battery',41,'8/29/2015 12:06','Market at Sansome',77,29,'Subscriber',2780); +INSERT INTO "trip" VALUES(910854,174,'8/29/2015 11:57','San Francisco Caltrain 2 (330 Townsend)',69,'8/29/2015 12:00','San Francisco Caltrain 2 (330 Townsend)',69,348,'Subscriber',94107); +INSERT INTO "trip" VALUES(910855,416,'8/29/2015 12:00','Beale at Market',56,'8/29/2015 12:07','Grant Avenue at Columbus Avenue',73,618,'Subscriber',94133); +INSERT INTO "trip" VALUES(910856,514,'8/29/2015 12:01','Steuart at Market',74,'8/29/2015 12:10','Spear at Folsom',49,33,'Customer','nil'); +INSERT INTO "trip" VALUES(910857,374,'8/29/2015 12:02','Market at 10th',67,'8/29/2015 12:08','Market at 4th',76,591,'Subscriber',94107); +INSERT INTO "trip" VALUES(910858,494,'8/29/2015 12:02','Steuart at Market',74,'8/29/2015 12:10','Spear at Folsom',49,259,'Customer','nil'); +INSERT INTO "trip" VALUES(910859,461,'8/29/2015 12:02','Steuart at Market',74,'8/29/2015 12:10','Spear at Folsom',49,558,'Customer',94558); +INSERT INTO "trip" VALUES(910860,307,'8/29/2015 12:03','Davis at Jackson',42,'8/29/2015 12:08','Embarcadero at Sansome',60,553,'Subscriber',94111); +INSERT INTO "trip" VALUES(910861,2189,'8/29/2015 12:03','Harry Bridges Plaza (Ferry Building)',50,'8/29/2015 12:40','San Francisco Caltrain (Townsend at 4th)',70,630,'Customer',94507); +INSERT INTO "trip" VALUES(910862,769,'8/29/2015 12:04','Washington at Kearny',46,'8/29/2015 12:16','Harry Bridges Plaza (Ferry Building)',50,391,'Customer',55372); +INSERT INTO "trip" VALUES(910863,1852,'8/29/2015 12:09','Harry Bridges Plaza (Ferry Building)',50,'8/29/2015 12:40','San Francisco Caltrain (Townsend at 4th)',70,291,'Customer',94523); +INSERT INTO "trip" VALUES(910864,214,'8/29/2015 12:10','2nd at Folsom',62,'8/29/2015 12:14','2nd at Townsend',61,552,'Subscriber',94105); +INSERT INTO "trip" VALUES(910865,1023,'8/29/2015 12:12','San Francisco Caltrain 2 (330 Townsend)',69,'8/29/2015 12:29','Harry Bridges Plaza (Ferry Building)',50,611,'Customer',94087); +INSERT INTO "trip" VALUES(910866,272,'8/29/2015 12:16','Market at Sansome',77,'8/29/2015 12:20','Steuart at Market',74,16,'Subscriber',94133); +INSERT INTO "trip" VALUES(910867,308,'8/29/2015 12:18','Market at Sansome',77,'8/29/2015 12:23','Yerba Buena Center of the Arts (3rd @ Howard)',68,394,'Subscriber',2780); +INSERT INTO "trip" VALUES(910868,1151,'8/29/2015 12:19','Embarcadero at Sansome',60,'8/29/2015 12:38','Golden Gate at Polk',59,553,'Subscriber',94133); +INSERT INTO "trip" VALUES(910869,1121,'8/29/2015 12:19','Embarcadero at Sansome',60,'8/29/2015 12:38','Golden Gate at Polk',59,451,'Subscriber',94133); +INSERT INTO "trip" VALUES(910870,871,'8/29/2015 12:19','Harry Bridges Plaza (Ferry Building)',50,'8/29/2015 12:34','Embarcadero at Folsom',51,568,'Subscriber',94105); +INSERT INTO "trip" VALUES(910871,886,'8/29/2015 12:21','Powell Street BART',39,'8/29/2015 12:36','Market at 10th',67,607,'Customer',4901); +INSERT INTO "trip" VALUES(910872,885,'8/29/2015 12:21','Powell Street BART',39,'8/29/2015 12:36','Market at 10th',67,286,'Customer',4901); +INSERT INTO "trip" VALUES(910873,1066,'8/29/2015 12:22','Steuart at Market',74,'8/29/2015 12:40','San Francisco Caltrain (Townsend at 4th)',70,16,'Customer',90260); +INSERT INTO "trip" VALUES(910874,959,'8/29/2015 12:24','Steuart at Market',74,'8/29/2015 12:40','San Francisco Caltrain (Townsend at 4th)',70,328,'Customer','nil'); +INSERT INTO "trip" VALUES(910875,431,'8/29/2015 12:24','Beale at Market',56,'8/29/2015 12:31','Embarcadero at Vallejo',48,351,'Subscriber',94610); +INSERT INTO "trip" VALUES(910876,18135,'8/29/2015 12:25','San Francisco City Hall',58,'8/29/2015 17:27','Embarcadero at Sansome',60,363,'Customer',92336); +INSERT INTO "trip" VALUES(910878,784,'8/29/2015 12:30','Howard at 2nd',63,'8/29/2015 12:43','Grant Avenue at Columbus Avenue',73,635,'Subscriber',94105); +INSERT INTO "trip" VALUES(910879,791,'8/29/2015 12:30','Howard at 2nd',63,'8/29/2015 12:43','Grant Avenue at Columbus Avenue',73,335,'Subscriber',94105); +INSERT INTO "trip" VALUES(910880,206,'8/29/2015 12:31','Spear at Folsom',49,'8/29/2015 12:34','Steuart at Market',74,585,'Subscriber',94105); +INSERT INTO "trip" VALUES(910881,401,'8/29/2015 12:31','Spear at Folsom',49,'8/29/2015 12:38','2nd at Townsend',61,432,'Subscriber',94080); +INSERT INTO "trip" VALUES(910882,539,'8/29/2015 12:32','Golden Gate at Polk',59,'8/29/2015 12:41','Townsend at 7th',65,544,'Subscriber',94109); +INSERT INTO "trip" VALUES(910883,431,'8/29/2015 12:32','Powell at Post (Union Square)',71,'8/29/2015 12:39','San Francisco Caltrain 2 (330 Townsend)',69,512,'Subscriber',94109); +INSERT INTO "trip" VALUES(910884,446,'8/29/2015 12:35','Embarcadero at Vallejo',48,'8/29/2015 12:42','Embarcadero at Sansome',60,557,'Customer',80108); +INSERT INTO "trip" VALUES(910885,327,'8/29/2015 12:35','Embarcadero at Vallejo',48,'8/29/2015 12:41','Embarcadero at Sansome',60,389,'Customer',80108); +INSERT INTO "trip" VALUES(910886,412,'8/29/2015 12:35','Spear at Folsom',49,'8/29/2015 12:42','Yerba Buena Center of the Arts (3rd @ Howard)',68,677,'Subscriber',94105); +INSERT INTO "trip" VALUES(910888,695,'8/29/2015 12:39','2nd at South Park',64,'8/29/2015 12:50','Harry Bridges Plaza (Ferry Building)',50,502,'Subscriber',94107); +INSERT INTO "trip" VALUES(910889,645,'8/29/2015 12:41','Washington at Kearny',46,'8/29/2015 12:52','Temporary Transbay Terminal (Howard at Beale)',55,407,'Subscriber',94608); +INSERT INTO "trip" VALUES(910890,795,'8/29/2015 12:41','San Francisco Caltrain (Townsend at 4th)',70,'8/29/2015 12:55','Civic Center BART (7th at Market)',72,189,'Customer',78233); +INSERT INTO "trip" VALUES(910892,488,'8/29/2015 12:44','2nd at Townsend',61,'8/29/2015 12:52','Steuart at Market',74,434,'Subscriber',94107); +INSERT INTO "trip" VALUES(910893,243,'8/29/2015 12:44','Embarcadero at Vallejo',48,'8/29/2015 12:48','Steuart at Market',74,351,'Subscriber',94610); +INSERT INTO "trip" VALUES(910894,830,'8/29/2015 12:46','Steuart at Market',74,'8/29/2015 13:00','2nd at Townsend',61,352,'Customer',94133); +INSERT INTO "trip" VALUES(910895,742,'8/29/2015 12:47','San Francisco Caltrain (Townsend at 4th)',70,'8/29/2015 12:59','Harry Bridges Plaza (Ferry Building)',50,630,'Subscriber',94158); +INSERT INTO "trip" VALUES(910896,796,'8/29/2015 12:47','Steuart at Market',74,'8/29/2015 13:00','2nd at Townsend',61,472,'Customer',94133); +INSERT INTO "trip" VALUES(910897,4993,'8/29/2015 12:48','Embarcadero at Sansome',60,'8/29/2015 14:11','Grant Avenue at Columbus Avenue',73,66,'Customer',94133); +INSERT INTO "trip" VALUES(910898,4979,'8/29/2015 12:48','Embarcadero at Sansome',60,'8/29/2015 14:11','Grant Avenue at Columbus Avenue',73,557,'Customer',94133); +INSERT INTO "trip" VALUES(910899,175,'8/29/2015 12:49','Post at Kearny',47,'8/29/2015 12:52','Washington at Kearny',46,312,'Subscriber',94107); +INSERT INTO "trip" VALUES(910900,399,'8/29/2015 12:51','Steuart at Market',74,'8/29/2015 12:57','Embarcadero at Sansome',60,212,'Customer',94087); +INSERT INTO "trip" VALUES(910901,1228,'8/29/2015 12:51','Grant Avenue at Columbus Avenue',73,'8/29/2015 13:11','2nd at Townsend',61,335,'Subscriber',94133); +INSERT INTO "trip" VALUES(910903,1135,'8/29/2015 12:52','Grant Avenue at Columbus Avenue',73,'8/29/2015 13:11','2nd at Townsend',61,635,'Subscriber',94133); +INSERT INTO "trip" VALUES(910904,697,'8/29/2015 12:57','Powell at Post (Union Square)',71,'8/29/2015 13:09','2nd at Townsend',61,347,'Subscriber',94107); +INSERT INTO "trip" VALUES(910905,320,'8/29/2015 12:57','San Francisco Caltrain (Townsend at 4th)',70,'8/29/2015 13:03','2nd at South Park',64,462,'Subscriber',94107); +INSERT INTO "trip" VALUES(910906,301,'8/29/2015 12:57','San Francisco Caltrain (Townsend at 4th)',70,'8/29/2015 13:02','2nd at South Park',64,328,'Subscriber',94107); +INSERT INTO "trip" VALUES(910907,496,'8/29/2015 12:58','Grant Avenue at Columbus Avenue',73,'8/29/2015 13:06','Powell Street BART',39,618,'Subscriber',94133); +INSERT INTO "trip" VALUES(910908,715,'8/29/2015 12:59','Market at Sansome',77,'8/29/2015 13:11','Embarcadero at Sansome',60,311,'Subscriber',94107); +INSERT INTO "trip" VALUES(910909,514,'8/29/2015 13:02','Harry Bridges Plaza (Ferry Building)',50,'8/29/2015 13:11','2nd at Folsom',62,383,'Subscriber',94103); +INSERT INTO "trip" VALUES(910910,3491,'8/29/2015 13:07','University and Emerson',35,'8/29/2015 14:05','University and Emerson',35,638,'Customer',123007); +INSERT INTO "trip" VALUES(910911,472,'8/29/2015 13:10','Spear at Folsom',49,'8/29/2015 13:18','2nd at Townsend',61,364,'Customer',94558); +INSERT INTO "trip" VALUES(910912,444,'8/29/2015 13:10','Spear at Folsom',49,'8/29/2015 13:18','2nd at Townsend',61,586,'Customer','nil'); +INSERT INTO "trip" VALUES(910913,432,'8/29/2015 13:11','Spear at Folsom',49,'8/29/2015 13:18','2nd at Townsend',61,238,'Customer','nil'); +INSERT INTO "trip" VALUES(910914,655,'8/29/2015 13:15','Embarcadero at Bryant',54,'8/29/2015 13:26','Commercial at Montgomery',45,401,'Subscriber',94107); +INSERT INTO "trip" VALUES(910915,633,'8/29/2015 13:15','Embarcadero at Bryant',54,'8/29/2015 13:26','Commercial at Montgomery',45,613,'Subscriber',94107); +INSERT INTO "trip" VALUES(910916,486,'8/29/2015 13:17','Market at 10th',67,'8/29/2015 13:25','Market at 4th',76,286,'Customer',94103); +INSERT INTO "trip" VALUES(910917,1680,'8/29/2015 13:19','San Francisco Caltrain 2 (330 Townsend)',69,'8/29/2015 13:47','San Francisco Caltrain 2 (330 Townsend)',69,266,'Customer',94109); +INSERT INTO "trip" VALUES(910918,859,'8/29/2015 13:24','5th at Howard',57,'8/29/2015 13:38','Davis at Jackson',42,578,'Customer',94111); +INSERT INTO "trip" VALUES(910919,378,'8/29/2015 13:26','Embarcadero at Bryant',54,'8/29/2015 13:32','Steuart at Market',74,504,'Subscriber',94105); +INSERT INTO "trip" VALUES(910920,1598,'8/29/2015 13:26','Steuart at Market',74,'8/29/2015 13:53','San Francisco Caltrain (Townsend at 4th)',70,434,'Customer',95060); +INSERT INTO "trip" VALUES(910921,1604,'8/29/2015 13:26','Steuart at Market',74,'8/29/2015 13:53','San Francisco Caltrain (Townsend at 4th)',70,585,'Customer',95060); +INSERT INTO "trip" VALUES(910923,627,'8/29/2015 13:29','2nd at South Park',64,'8/29/2015 13:39','Market at 4th',76,632,'Subscriber',94107); +INSERT INTO "trip" VALUES(910924,562,'8/29/2015 13:30','2nd at South Park',64,'8/29/2015 13:39','Market at 4th',76,274,'Subscriber',94107); +INSERT INTO "trip" VALUES(910925,610,'8/29/2015 13:32','Harry Bridges Plaza (Ferry Building)',50,'8/29/2015 13:42','2nd at Townsend',61,292,'Subscriber',94107); +INSERT INTO "trip" VALUES(910926,568,'8/29/2015 13:32','Harry Bridges Plaza (Ferry Building)',50,'8/29/2015 13:42','2nd at Townsend',61,300,'Subscriber',94107); +INSERT INTO "trip" VALUES(910927,2068,'8/29/2015 13:35','Market at Sansome',77,'8/29/2015 14:10','Embarcadero at Sansome',60,579,'Customer',94103); +INSERT INTO "trip" VALUES(910928,376,'8/29/2015 13:37','Beale at Market',56,'8/29/2015 13:43','Market at 4th',76,526,'Subscriber',94133); +INSERT INTO "trip" VALUES(910929,143,'8/29/2015 13:39','Embarcadero at Folsom',51,'8/29/2015 13:42','Embarcadero at Bryant',54,568,'Subscriber',94105); +INSERT INTO "trip" VALUES(910931,504,'8/29/2015 13:42','Mountain View Caltrain Station',28,'8/29/2015 13:50','Castro Street and El Camino Real',32,142,'Subscriber',94043); +INSERT INTO "trip" VALUES(910936,337,'8/29/2015 13:47','Steuart at Market',74,'8/29/2015 13:52','Embarcadero at Vallejo',48,457,'Subscriber',94610); +INSERT INTO "trip" VALUES(910937,477,'8/29/2015 13:47','Spear at Folsom',49,'8/29/2015 13:55','Embarcadero at Sansome',60,359,'Subscriber',94105); +INSERT INTO "trip" VALUES(910941,1543,'8/29/2015 13:50','Embarcadero at Vallejo',48,'8/29/2015 14:16','Embarcadero at Sansome',60,402,'Customer',55372); +INSERT INTO "trip" VALUES(910942,1553,'8/29/2015 13:50','Embarcadero at Vallejo',48,'8/29/2015 14:16','Embarcadero at Sansome',60,594,'Customer',55372); +INSERT INTO "trip" VALUES(910946,622,'8/29/2015 13:57','San Francisco Caltrain 2 (330 Townsend)',69,'8/29/2015 14:07','Powell at Post (Union Square)',71,368,'Subscriber',94109); +INSERT INTO "trip" VALUES(910947,294,'8/29/2015 14:02','Embarcadero at Vallejo',48,'8/29/2015 14:07','Steuart at Market',74,575,'Subscriber',94610); +INSERT INTO "trip" VALUES(910948,15327,'8/29/2015 14:04','Civic Center BART (7th at Market)',72,'8/29/2015 18:20','Civic Center BART (7th at Market)',72,413,'Customer',94588); +INSERT INTO "trip" VALUES(910949,15288,'8/29/2015 14:05','Civic Center BART (7th at Market)',72,'8/29/2015 18:20','Civic Center BART (7th at Market)',72,189,'Customer',94588); +INSERT INTO "trip" VALUES(910950,1460,'8/29/2015 14:09','Embarcadero at Bryant',54,'8/29/2015 14:34','Embarcadero at Sansome',60,279,'Customer',44); +INSERT INTO "trip" VALUES(910951,495,'8/29/2015 14:15','Powell Street BART',39,'8/29/2015 14:23','Commercial at Montgomery',45,332,'Subscriber',94133); +INSERT INTO "trip" VALUES(910952,5654,'8/29/2015 14:16','Washington at Kearny',46,'8/29/2015 15:50','Market at 4th',76,608,'Customer',90301); +INSERT INTO "trip" VALUES(910953,1888,'8/29/2015 14:18','Golden Gate at Polk',59,'8/29/2015 14:50','Market at Sansome',77,513,'Customer',94102); +INSERT INTO "trip" VALUES(910954,5444,'8/29/2015 14:19','Washington at Kearny',46,'8/29/2015 15:50','Market at 4th',76,482,'Customer','nil'); +INSERT INTO "trip" VALUES(910955,550,'8/29/2015 14:20','Commercial at Montgomery',45,'8/29/2015 14:29','Powell Street BART',39,401,'Subscriber',94107); +INSERT INTO "trip" VALUES(910956,547,'8/29/2015 14:20','Commercial at Montgomery',45,'8/29/2015 14:29','Powell Street BART',39,541,'Subscriber',94107); +INSERT INTO "trip" VALUES(910957,771,'8/29/2015 14:21','Powell at Post (Union Square)',71,'8/29/2015 14:33','San Francisco Caltrain 2 (330 Townsend)',69,380,'Subscriber',94107); +INSERT INTO "trip" VALUES(910958,1672,'8/29/2015 14:22','Golden Gate at Polk',59,'8/29/2015 14:50','Market at Sansome',77,629,'Customer',94102); +INSERT INTO "trip" VALUES(910959,1618,'8/29/2015 14:23','Golden Gate at Polk',59,'8/29/2015 14:50','Market at Sansome',77,236,'Customer',94102); +INSERT INTO "trip" VALUES(910960,248,'8/29/2015 14:27','Steuart at Market',74,'8/29/2015 14:31','Mechanics Plaza (Market at Battery)',75,372,'Subscriber',94104); +INSERT INTO "trip" VALUES(910962,980,'8/29/2015 14:29','Market at 4th',76,'8/29/2015 14:45','5th at Howard',57,286,'Subscriber',94107); +INSERT INTO "trip" VALUES(910963,264,'8/29/2015 14:32','Grant Avenue at Columbus Avenue',73,'8/29/2015 14:36','Harry Bridges Plaza (Ferry Building)',50,587,'Subscriber',94104); +INSERT INTO "trip" VALUES(910964,9580,'8/29/2015 14:38','Steuart at Market',74,'8/29/2015 17:17','Embarcadero at Sansome',60,277,'Customer',33161); +INSERT INTO "trip" VALUES(910965,9556,'8/29/2015 14:38','Steuart at Market',74,'8/29/2015 17:17','Embarcadero at Sansome',60,351,'Customer',33161); +INSERT INTO "trip" VALUES(910966,357,'8/29/2015 14:42','Yerba Buena Center of the Arts (3rd @ Howard)',68,'8/29/2015 14:48','Spear at Folsom',49,548,'Subscriber',94105); +INSERT INTO "trip" VALUES(910967,6815,'8/29/2015 14:48','Market at 4th',76,'8/29/2015 16:41','San Francisco City Hall',58,526,'Customer',32118); +INSERT INTO "trip" VALUES(910968,648,'8/29/2015 14:49','2nd at Folsom',62,'8/29/2015 15:00','Embarcadero at Folsom',51,383,'Customer','nil'); +INSERT INTO "trip" VALUES(910969,632,'8/29/2015 14:50','2nd at Folsom',62,'8/29/2015 15:00','Embarcadero at Folsom',51,614,'Customer','nil'); +INSERT INTO "trip" VALUES(910970,619,'8/29/2015 14:50','2nd at Folsom',62,'8/29/2015 15:00','Embarcadero at Folsom',51,538,'Customer',94558); +INSERT INTO "trip" VALUES(910971,390,'8/29/2015 14:53','Broadway St at Battery St',82,'8/29/2015 14:59','Embarcadero at Folsom',51,436,'Subscriber',94107); +INSERT INTO "trip" VALUES(910972,390,'8/29/2015 14:53','Broadway St at Battery St',82,'8/29/2015 14:59','Embarcadero at Folsom',51,327,'Subscriber',94107); +INSERT INTO "trip" VALUES(910973,791,'8/29/2015 14:56','Embarcadero at Vallejo',48,'8/29/2015 15:09','Yerba Buena Center of the Arts (3rd @ Howard)',68,457,'Subscriber',94107); +INSERT INTO "trip" VALUES(910974,210,'8/29/2015 15:01','Davis at Jackson',42,'8/29/2015 15:04','Commercial at Montgomery',45,578,'Subscriber',94111); +INSERT INTO "trip" VALUES(910975,11761,'8/29/2015 15:03','Davis at Jackson',42,'8/29/2015 18:19','Davis at Jackson',42,494,'Customer',94111); +INSERT INTO "trip" VALUES(910976,858,'8/29/2015 15:08','Embarcadero at Bryant',54,'8/29/2015 15:23','Grant Avenue at Columbus Avenue',73,568,'Subscriber',94105); +INSERT INTO "trip" VALUES(910977,318,'8/29/2015 15:09','Market at 10th',67,'8/29/2015 15:14','Powell Street BART',39,607,'Subscriber',94709); +INSERT INTO "trip" VALUES(910978,342,'8/29/2015 15:10','Embarcadero at Sansome',60,'8/29/2015 15:16','Steuart at Market',74,212,'Customer','nil'); +INSERT INTO "trip" VALUES(910979,9111,'8/29/2015 15:10','Steuart at Market',74,'8/29/2015 17:42','Steuart at Market',74,575,'Customer',30338); +INSERT INTO "trip" VALUES(910980,873,'8/29/2015 15:14','Embarcadero at Folsom',51,'8/29/2015 15:29','Market at 4th',76,383,'Customer','nil'); +INSERT INTO "trip" VALUES(910981,863,'8/29/2015 15:14','Embarcadero at Folsom',51,'8/29/2015 15:29','Market at 4th',76,353,'Customer','nil'); +INSERT INTO "trip" VALUES(910982,835,'8/29/2015 15:15','Embarcadero at Folsom',51,'8/29/2015 15:29','Market at 4th',76,567,'Customer',94558); +INSERT INTO "trip" VALUES(910983,11301,'8/29/2015 15:24','Steuart at Market',74,'8/29/2015 18:33','Grant Avenue at Columbus Avenue',73,504,'Customer',94135); +INSERT INTO "trip" VALUES(910984,858,'8/29/2015 15:25','Davis at Jackson',42,'8/29/2015 15:39','Market at 10th',67,269,'Subscriber',94111); +INSERT INTO "trip" VALUES(910985,11135,'8/29/2015 15:27','Steuart at Market',74,'8/29/2015 18:33','Grant Avenue at Columbus Avenue',73,370,'Customer',81611); +INSERT INTO "trip" VALUES(910986,11138,'8/29/2015 15:27','Steuart at Market',74,'8/29/2015 18:33','Grant Avenue at Columbus Avenue',73,478,'Customer',81611); +INSERT INTO "trip" VALUES(910987,298,'8/29/2015 15:32','Embarcadero at Bryant',54,'8/29/2015 15:37','2nd at South Park',64,619,'Subscriber',94107); +INSERT INTO "trip" VALUES(910988,1182,'8/29/2015 15:32','Golden Gate at Polk',59,'8/29/2015 15:52','Embarcadero at Sansome',60,553,'Subscriber',94133); +INSERT INTO "trip" VALUES(910989,1186,'8/29/2015 15:32','Golden Gate at Polk',59,'8/29/2015 15:52','Embarcadero at Sansome',60,451,'Subscriber',94133); +INSERT INTO "trip" VALUES(910990,792,'8/29/2015 15:33','Rengstorff Avenue / California Street',33,'8/29/2015 15:46','Mountain View Caltrain Station',28,264,'Subscriber',94040); +INSERT INTO "trip" VALUES(910993,494,'8/29/2015 15:39','Beale at Market',56,'8/29/2015 15:47','Market at 4th',76,420,'Subscriber',94105); +INSERT INTO "trip" VALUES(910994,610,'8/29/2015 15:40','Market at 10th',67,'8/29/2015 15:50','Market at 10th',67,609,'Subscriber',94111); +INSERT INTO "trip" VALUES(910995,633,'8/29/2015 15:46','University and Emerson',35,'8/29/2015 15:56','California Ave Caltrain Station',36,638,'Subscriber',94306); +INSERT INTO "trip" VALUES(910998,243,'8/29/2015 15:48','5th at Howard',57,'8/29/2015 15:52','Yerba Buena Center of the Arts (3rd @ Howard)',68,521,'Subscriber',94109); +INSERT INTO "trip" VALUES(911000,800,'8/29/2015 15:50','Market at 10th',67,'8/29/2015 16:04','Davis at Jackson',42,547,'Subscriber',94111); +INSERT INTO "trip" VALUES(911001,407,'8/29/2015 15:57','Grant Avenue at Columbus Avenue',73,'8/29/2015 16:04','Market at Sansome',77,568,'Subscriber',94105); +INSERT INTO "trip" VALUES(911002,1162,'8/29/2015 15:58','2nd at Townsend',61,'8/29/2015 16:17','Commercial at Montgomery',45,530,'Subscriber',94107); +INSERT INTO "trip" VALUES(911003,1646,'8/29/2015 16:00','Evelyn Park and Ride',30,'8/29/2015 16:28','Evelyn Park and Ride',30,92,'Customer',94526); +INSERT INTO "trip" VALUES(911004,1635,'8/29/2015 16:00','Evelyn Park and Ride',30,'8/29/2015 16:28','Evelyn Park and Ride',30,13,'Customer',94526); +INSERT INTO "trip" VALUES(911008,486,'8/29/2015 16:02','Mechanics Plaza (Market at Battery)',75,'8/29/2015 16:10','Harry Bridges Plaza (Ferry Building)',50,393,'Customer',80239); +INSERT INTO "trip" VALUES(911009,317,'8/29/2015 16:04','Yerba Buena Center of the Arts (3rd @ Howard)',68,'8/29/2015 16:09','Powell Street BART',39,521,'Subscriber',94109); +INSERT INTO "trip" VALUES(911011,284,'8/29/2015 16:06','Grant Avenue at Columbus Avenue',73,'8/29/2015 16:10','Market at Sansome',77,557,'Subscriber',94133); +INSERT INTO "trip" VALUES(911012,763,'8/29/2015 16:14','Powell Street BART',39,'8/29/2015 16:27','Embarcadero at Vallejo',48,448,'Subscriber',94610); +INSERT INTO "trip" VALUES(911013,837,'8/29/2015 16:14','Yerba Buena Center of the Arts (3rd @ Howard)',68,'8/29/2015 16:28','Powell at Post (Union Square)',71,687,'Customer',7746); +INSERT INTO "trip" VALUES(911014,644,'8/29/2015 16:17','5th at Howard',57,'8/29/2015 16:28','Townsend at 7th',65,286,'Subscriber',94107); +INSERT INTO "trip" VALUES(911015,1209,'8/29/2015 16:17','2nd at South Park',64,'8/29/2015 16:38','Embarcadero at Sansome',60,397,'Customer',93401); +INSERT INTO "trip" VALUES(911016,200,'8/29/2015 16:18','Spear at Folsom',49,'8/29/2015 16:21','Harry Bridges Plaza (Ferry Building)',50,33,'Subscriber',94103); +INSERT INTO "trip" VALUES(911017,154368,'8/29/2015 16:18','2nd at Townsend',61,'8/31/2015 11:11','5th at Howard',57,635,'Customer',95060); +INSERT INTO "trip" VALUES(911018,1079,'8/29/2015 16:18','2nd at Townsend',61,'8/29/2015 16:36','5th at Howard',57,586,'Customer',95060); +INSERT INTO "trip" VALUES(911019,1095,'8/29/2015 16:19','2nd at South Park',64,'8/29/2015 16:37','Embarcadero at Sansome',60,562,'Customer',93401); +INSERT INTO "trip" VALUES(911020,834,'8/29/2015 16:27','Townsend at 7th',65,'8/29/2015 16:41','Temporary Transbay Terminal (Howard at Beale)',55,544,'Subscriber',94501); +INSERT INTO "trip" VALUES(911021,1906,'8/29/2015 16:28','2nd at Townsend',61,'8/29/2015 16:59','2nd at Townsend',61,576,'Subscriber',94107); +INSERT INTO "trip" VALUES(911022,577,'8/29/2015 16:29','Powell at Post (Union Square)',71,'8/29/2015 16:39','Powell at Post (Union Square)',71,687,'Customer',7746); +INSERT INTO "trip" VALUES(911023,850,'8/29/2015 16:34','San Francisco Caltrain (Townsend at 4th)',70,'8/29/2015 16:48','Davis at Jackson',42,585,'Subscriber',94017); +INSERT INTO "trip" VALUES(911027,1415,'8/29/2015 16:38','Santa Clara at Almaden',4,'8/29/2015 17:01','Santa Clara at Almaden',4,51,'Subscriber',95110); +INSERT INTO "trip" VALUES(911034,340,'8/29/2015 16:44','Market at 4th',76,'8/29/2015 16:49','Howard at 2nd',63,632,'Subscriber',94105); +INSERT INTO "trip" VALUES(911035,12249,'8/29/2015 16:44','Market at 4th',76,'8/29/2015 20:08','South Van Ness at Market',66,564,'Customer',44); +INSERT INTO "trip" VALUES(911040,12147,'8/29/2015 16:46','Market at 4th',76,'8/29/2015 20:09','South Van Ness at Market',66,353,'Customer',44); +INSERT INTO "trip" VALUES(911041,1002,'8/29/2015 16:46','Civic Center BART (7th at Market)',72,'8/29/2015 17:03','Grant Avenue at Columbus Avenue',73,284,'Subscriber',94103); +INSERT INTO "trip" VALUES(911044,919,'8/29/2015 16:49','Powell at Post (Union Square)',71,'8/29/2015 17:04','Harry Bridges Plaza (Ferry Building)',50,687,'Customer',7746); +INSERT INTO "trip" VALUES(911047,1103,'8/29/2015 17:02','Santa Clara at Almaden',4,'8/29/2015 17:20','Santa Clara at Almaden',4,51,'Subscriber',95110); +INSERT INTO "trip" VALUES(911048,898,'8/29/2015 16:59','California Ave Caltrain Station',36,'8/29/2015 17:14','University and Emerson',35,253,'Subscriber',94105); +INSERT INTO "trip" VALUES(911051,247,'8/29/2015 17:04','Embarcadero at Vallejo',48,'8/29/2015 17:08','Steuart at Market',74,448,'Subscriber',94610); +INSERT INTO "trip" VALUES(911052,2140,'8/29/2015 17:06','Grant Avenue at Columbus Avenue',73,'8/29/2015 17:42','Spear at Folsom',49,361,'Customer',10306); +INSERT INTO "trip" VALUES(911053,1451,'8/29/2015 17:07','Temporary Transbay Terminal (Howard at Beale)',55,'8/29/2015 17:32','Embarcadero at Vallejo',48,344,'Subscriber',94105); +INSERT INTO "trip" VALUES(911054,2154,'8/29/2015 17:08','Grant Avenue at Columbus Avenue',73,'8/29/2015 17:44','Spear at Folsom',49,318,'Customer',29577); +INSERT INTO "trip" VALUES(911055,685,'8/29/2015 17:11','Commercial at Montgomery',45,'8/29/2015 17:22','Harry Bridges Plaza (Ferry Building)',50,371,'Customer','nil'); +INSERT INTO "trip" VALUES(911056,2015,'8/29/2015 17:11','Grant Avenue at Columbus Avenue',73,'8/29/2015 17:44','Spear at Folsom',49,477,'Customer','nil'); +INSERT INTO "trip" VALUES(911057,668,'8/29/2015 17:11','Commercial at Montgomery',45,'8/29/2015 17:22','Harry Bridges Plaza (Ferry Building)',50,578,'Customer','nil'); +INSERT INTO "trip" VALUES(911058,581,'8/29/2015 17:13','Arena Green / SAP Center',14,'8/29/2015 17:22','San Pedro Square',6,119,'Subscriber',95113); +INSERT INTO "trip" VALUES(911059,1688,'8/29/2015 17:19','San Francisco Caltrain (Townsend at 4th)',70,'8/29/2015 17:47','Embarcadero at Vallejo',48,443,'Customer',90260); +INSERT INTO "trip" VALUES(911060,7328,'8/29/2015 17:19','San Francisco Caltrain (Townsend at 4th)',70,'8/29/2015 19:21','Embarcadero at Vallejo',48,338,'Customer',94507); +INSERT INTO "trip" VALUES(911062,1512,'8/29/2015 17:21','San Francisco Caltrain (Townsend at 4th)',70,'8/29/2015 17:46','Embarcadero at Vallejo',48,434,'Customer',95006); +INSERT INTO "trip" VALUES(911063,282,'8/29/2015 17:22','Harry Bridges Plaza (Ferry Building)',50,'8/29/2015 17:27','Spear at Folsom',49,33,'Subscriber',94103); +INSERT INTO "trip" VALUES(911064,7114,'8/29/2015 17:22','San Francisco Caltrain (Townsend at 4th)',70,'8/29/2015 19:20','Embarcadero at Vallejo',48,491,'Customer','nil'); +INSERT INTO "trip" VALUES(911067,261,'8/29/2015 17:23','Market at 10th',67,'8/29/2015 17:27','Powell Street BART',39,456,'Customer',94087); +INSERT INTO "trip" VALUES(911068,1925,'8/29/2015 17:23','Market at 10th',67,'8/29/2015 17:55','Grant Avenue at Columbus Avenue',73,404,'Customer','nil'); +INSERT INTO "trip" VALUES(911069,1840,'8/29/2015 17:23','Market at 10th',67,'8/29/2015 17:54','Grant Avenue at Columbus Avenue',73,601,'Customer','nil'); +INSERT INTO "trip" VALUES(911070,1269,'8/29/2015 17:25','2nd at Townsend',61,'8/29/2015 17:46','Golden Gate at Polk',59,546,'Subscriber',94109); +INSERT INTO "trip" VALUES(911071,221,'8/29/2015 17:27','Embarcadero at Vallejo',48,'8/29/2015 17:31','Steuart at Market',74,431,'Subscriber',94608); +INSERT INTO "trip" VALUES(911072,725,'8/29/2015 17:29','Steuart at Market',74,'8/29/2015 17:41','Market at 4th',76,212,'Customer','nil'); +INSERT INTO "trip" VALUES(911074,4255,'8/29/2015 17:33','Embarcadero at Vallejo',48,'8/29/2015 18:44','Harry Bridges Plaza (Ferry Building)',50,344,'Customer',7746); +INSERT INTO "trip" VALUES(911075,1238,'8/29/2015 17:34','Commercial at Montgomery',45,'8/29/2015 17:55','Market at 4th',76,69,'Subscriber',94107); +INSERT INTO "trip" VALUES(911076,538,'8/29/2015 17:36','Steuart at Market',74,'8/29/2015 17:45','Embarcadero at Sansome',60,431,'Customer','nil'); +INSERT INTO "trip" VALUES(911077,4804,'8/29/2015 17:37','Embarcadero at Bryant',54,'8/29/2015 18:57','Embarcadero at Sansome',60,495,'Customer',96151); +INSERT INTO "trip" VALUES(911078,807,'8/29/2015 17:39','Market at 4th',76,'8/29/2015 17:52','Market at 10th',67,482,'Customer',94103); +INSERT INTO "trip" VALUES(911082,2001,'8/29/2015 17:43','Spear at Folsom',49,'8/29/2015 18:16','Beale at Market',56,361,'Customer',10306); +INSERT INTO "trip" VALUES(911087,1844,'8/29/2015 17:45','Spear at Folsom',49,'8/29/2015 18:16','Beale at Market',56,318,'Customer',29577); +INSERT INTO "trip" VALUES(911091,1812,'8/29/2015 17:46','Spear at Folsom',49,'8/29/2015 18:16','Beale at Market',56,385,'Customer','nil'); +INSERT INTO "trip" VALUES(911094,341,'8/29/2015 17:46','5th at Howard',57,'8/29/2015 17:52','San Francisco Caltrain 2 (330 Townsend)',69,542,'Customer',94087); +INSERT INTO "trip" VALUES(911098,3017,'8/29/2015 17:48','San Francisco Caltrain 2 (330 Townsend)',69,'8/29/2015 18:38','San Francisco Caltrain (Townsend at 4th)',70,416,'Subscriber',90803); +INSERT INTO "trip" VALUES(911099,2995,'8/29/2015 17:48','San Francisco Caltrain 2 (330 Townsend)',69,'8/29/2015 18:38','San Francisco Caltrain (Townsend at 4th)',70,471,'Customer',90803); +INSERT INTO "trip" VALUES(911100,2973,'8/29/2015 17:49','San Francisco Caltrain 2 (330 Townsend)',69,'8/29/2015 18:38','San Francisco Caltrain (Townsend at 4th)',70,380,'Customer',90803); +INSERT INTO "trip" VALUES(911101,3841,'8/29/2015 17:53','Embarcadero at Folsom',51,'8/29/2015 18:57','Embarcadero at Sansome',60,283,'Customer',96151); +INSERT INTO "trip" VALUES(911102,3821,'8/29/2015 17:53','Embarcadero at Folsom',51,'8/29/2015 18:57','Embarcadero at Sansome',60,614,'Customer',96151); +INSERT INTO "trip" VALUES(911103,3708,'8/29/2015 17:56','Embarcadero at Folsom',51,'8/29/2015 18:57','Embarcadero at Sansome',60,377,'Customer',96151); +INSERT INTO "trip" VALUES(911104,3677,'8/29/2015 17:56','Embarcadero at Folsom',51,'8/29/2015 18:57','Embarcadero at Sansome',60,475,'Customer',96151); +INSERT INTO "trip" VALUES(911105,1533,'8/29/2015 18:06','Paseo de San Antonio',7,'8/29/2015 18:32','Paseo de San Antonio',7,250,'Customer',94085); +INSERT INTO "trip" VALUES(911106,1506,'8/29/2015 18:07','Paseo de San Antonio',7,'8/29/2015 18:32','Paseo de San Antonio',7,648,'Customer',94085); +INSERT INTO "trip" VALUES(911107,1285,'8/29/2015 18:10','Harry Bridges Plaza (Ferry Building)',50,'8/29/2015 18:31','San Francisco City Hall',58,86,'Subscriber',94114); +INSERT INTO "trip" VALUES(911110,168,'8/29/2015 18:15','Embarcadero at Folsom',51,'8/29/2015 18:18','Embarcadero at Bryant',54,592,'Subscriber',94105); +INSERT INTO "trip" VALUES(911111,1728,'8/29/2015 18:17','2nd at Townsend',61,'8/29/2015 18:45','Embarcadero at Sansome',60,472,'Customer','nil'); +INSERT INTO "trip" VALUES(911112,1710,'8/29/2015 18:17','2nd at Townsend',61,'8/29/2015 18:45','Embarcadero at Sansome',60,352,'Customer','nil'); +INSERT INTO "trip" VALUES(911114,506,'8/29/2015 18:18','2nd at Townsend',61,'8/29/2015 18:26','Harry Bridges Plaza (Ferry Building)',50,347,'Subscriber',94107); +INSERT INTO "trip" VALUES(911117,542,'8/29/2015 18:19','Market at 4th',76,'8/29/2015 18:28','Grant Avenue at Columbus Avenue',73,69,'Subscriber',94107); +INSERT INTO "trip" VALUES(911120,2276,'8/29/2015 18:24','Castro Street and El Camino Real',32,'8/29/2015 19:02','Castro Street and El Camino Real',32,175,'Customer',94041); +INSERT INTO "trip" VALUES(911123,2131,'8/29/2015 18:26','Castro Street and El Camino Real',32,'8/29/2015 19:02','Castro Street and El Camino Real',32,693,'Customer',94041); +INSERT INTO "trip" VALUES(911124,180,'8/29/2015 18:29','Commercial at Montgomery',45,'8/29/2015 18:32','Market at Sansome',77,530,'Subscriber',94111); +INSERT INTO "trip" VALUES(911126,1767,'8/29/2015 18:34','California Ave Caltrain Station',36,'8/29/2015 19:03','California Ave Caltrain Station',36,235,'Customer',95050); +INSERT INTO "trip" VALUES(911129,644,'8/29/2015 18:40','2nd at Townsend',61,'8/29/2015 18:51','Harry Bridges Plaza (Ferry Building)',50,497,'Subscriber',94107); +INSERT INTO "trip" VALUES(911130,496,'8/29/2015 18:44','Temporary Transbay Terminal (Howard at Beale)',55,'8/29/2015 18:52','Powell Street BART',39,584,'Subscriber',94103); +INSERT INTO "trip" VALUES(911131,1621,'8/29/2015 18:44','San Francisco Caltrain (Townsend at 4th)',70,'8/29/2015 19:11','Market at 4th',76,380,'Subscriber',90803); +INSERT INTO "trip" VALUES(911132,1612,'8/29/2015 18:44','San Francisco Caltrain (Townsend at 4th)',70,'8/29/2015 19:11','Market at 4th',76,416,'Customer',90803); +INSERT INTO "trip" VALUES(911133,1736,'8/29/2015 18:44','Palo Alto Caltrain Station',34,'8/29/2015 19:13','Cowper at University',37,41,'Customer',45); +INSERT INTO "trip" VALUES(911134,1380,'8/29/2015 18:48','San Francisco Caltrain (Townsend at 4th)',70,'8/29/2015 19:11','Market at 4th',76,471,'Customer',90803); +INSERT INTO "trip" VALUES(911135,2562,'8/29/2015 18:56','San Pedro Square',6,'8/29/2015 19:39','San Pedro Square',6,119,'Customer',95125); +INSERT INTO "trip" VALUES(911136,1102,'8/29/2015 18:57','Market at 4th',76,'8/29/2015 19:15','Embarcadero at Sansome',60,591,'Customer',6067); +INSERT INTO "trip" VALUES(911137,2474,'8/29/2015 18:58','San Pedro Square',6,'8/29/2015 19:39','San Pedro Square',6,103,'Customer',95125); +INSERT INTO "trip" VALUES(911138,10383,'8/29/2015 19:07','Market at 4th',76,'8/29/2015 22:00','Market at 4th',76,310,'Customer',8203); +INSERT INTO "trip" VALUES(911139,10386,'8/29/2015 19:07','Market at 4th',76,'8/29/2015 22:00','Market at 4th',76,582,'Customer',8203); +INSERT INTO "trip" VALUES(911142,353,'8/29/2015 19:14','5th at Howard',57,'8/29/2015 19:20','San Francisco Caltrain 2 (330 Townsend)',69,586,'Subscriber',94109); +INSERT INTO "trip" VALUES(911143,946,'8/29/2015 19:16','Embarcadero at Sansome',60,'8/29/2015 19:32','Embarcadero at Sansome',60,591,'Customer',6067); +INSERT INTO "trip" VALUES(911144,292,'8/29/2015 19:18','Powell at Post (Union Square)',71,'8/29/2015 19:23','Howard at 2nd',63,260,'Subscriber',94105); +INSERT INTO "trip" VALUES(911145,880,'8/29/2015 19:26','Commercial at Montgomery',45,'8/29/2015 19:41','San Francisco Caltrain 2 (330 Townsend)',69,67,'Subscriber',94111); +INSERT INTO "trip" VALUES(911146,958,'8/29/2015 19:29','Powell Street BART',39,'8/29/2015 19:44','Grant Avenue at Columbus Avenue',73,541,'Subscriber',94133); +INSERT INTO "trip" VALUES(911147,735,'8/29/2015 19:33','Embarcadero at Sansome',60,'8/29/2015 19:45','Commercial at Montgomery',45,591,'Customer',6067); +INSERT INTO "trip" VALUES(911148,1181,'8/29/2015 19:38','Harry Bridges Plaza (Ferry Building)',50,'8/29/2015 19:57','San Francisco Caltrain (Townsend at 4th)',70,347,'Subscriber',94402); +INSERT INTO "trip" VALUES(911149,1106,'8/29/2015 19:39','Harry Bridges Plaza (Ferry Building)',50,'8/29/2015 19:57','San Francisco Caltrain (Townsend at 4th)',70,344,'Subscriber',94402); +INSERT INTO "trip" VALUES(911150,238,'8/29/2015 19:44','2nd at Townsend',61,'8/29/2015 19:48','Embarcadero at Bryant',54,527,'Subscriber',94109); +INSERT INTO "trip" VALUES(911153,1774,'8/29/2015 19:50','Embarcadero at Bryant',54,'8/29/2015 20:20','Embarcadero at Sansome',60,598,'Customer',1); +INSERT INTO "trip" VALUES(911154,658,'8/29/2015 20:01','Harry Bridges Plaza (Ferry Building)',50,'8/29/2015 20:12','2nd at Townsend',61,393,'Subscriber',94107); +INSERT INTO "trip" VALUES(911156,70,'8/29/2015 20:12','South Van Ness at Market',66,'8/29/2015 20:14','South Van Ness at Market',66,564,'Customer',44); +INSERT INTO "trip" VALUES(911157,538,'8/29/2015 20:13','Market at Sansome',77,'8/29/2015 20:22','Grant Avenue at Columbus Avenue',73,445,'Subscriber',94104); +INSERT INTO "trip" VALUES(911159,379,'8/29/2015 20:17','Grant Avenue at Columbus Avenue',73,'8/29/2015 20:24','Post at Kearny',47,284,'Subscriber',94104); +INSERT INTO "trip" VALUES(911166,479,'8/29/2015 20:52','Powell Street BART',39,'8/29/2015 21:00','Temporary Transbay Terminal (Howard at Beale)',55,521,'Subscriber',94103); +INSERT INTO "trip" VALUES(911167,408,'8/29/2015 20:55','Market at 10th',67,'8/29/2015 21:02','Market at 4th',76,343,'Subscriber',94102); +INSERT INTO "trip" VALUES(911168,428,'8/29/2015 21:09','Civic Center BART (7th at Market)',72,'8/29/2015 21:16','Washington at Kearny',46,413,'Subscriber',94104); +INSERT INTO "trip" VALUES(911169,594,'8/29/2015 21:12','Market at Sansome',77,'8/29/2015 21:22','Beale at Market',56,568,'Subscriber',94105); +INSERT INTO "trip" VALUES(911170,778,'8/29/2015 21:16','Harry Bridges Plaza (Ferry Building)',50,'8/29/2015 21:29','2nd at Townsend',61,687,'Subscriber',94107); +INSERT INTO "trip" VALUES(911171,319,'8/29/2015 21:39','Post at Kearny',47,'8/29/2015 21:44','2nd at Townsend',61,498,'Subscriber',94107); +INSERT INTO "trip" VALUES(911172,191,'8/29/2015 21:59','Post at Kearny',47,'8/29/2015 22:02','Commercial at Montgomery',45,620,'Subscriber',94111); +INSERT INTO "trip" VALUES(911173,270,'8/29/2015 22:01','Powell at Post (Union Square)',71,'8/29/2015 22:06','Washington at Kearny',46,508,'Subscriber',94108); +INSERT INTO "trip" VALUES(911174,2083,'8/29/2015 22:23','Embarcadero at Folsom',51,'8/29/2015 22:58','Embarcadero at Sansome',60,600,'Customer',94111); +INSERT INTO "trip" VALUES(911175,389,'8/29/2015 22:29','Temporary Transbay Terminal (Howard at Beale)',55,'8/29/2015 22:36','5th at Howard',57,521,'Subscriber',94109); +INSERT INTO "trip" VALUES(911176,436,'8/29/2015 22:35','Mountain View Caltrain Station',28,'8/29/2015 22:42','Mountain View City Hall',27,182,'Customer',94041); +INSERT INTO "trip" VALUES(911177,395,'8/29/2015 22:35','Mountain View Caltrain Station',28,'8/29/2015 22:42','Mountain View City Hall',27,139,'Subscriber',94041); +INSERT INTO "trip" VALUES(911178,550,'8/29/2015 22:48','Steuart at Market',74,'8/29/2015 22:57','2nd at Townsend',61,575,'Subscriber',94107); +INSERT INTO "trip" VALUES(911179,1654,'8/29/2015 22:55','Grant Avenue at Columbus Avenue',73,'8/29/2015 23:23','Embarcadero at Bryant',54,541,'Subscriber',94105); +INSERT INTO "trip" VALUES(911180,291,'8/29/2015 23:10','Embarcadero at Bryant',54,'8/29/2015 23:15','Steuart at Market',74,527,'Subscriber',94114); +INSERT INTO "trip" VALUES(911182,567,'8/29/2015 23:30','Grant Avenue at Columbus Avenue',73,'8/29/2015 23:40','Civic Center BART (7th at Market)',72,111,'Subscriber',94104); +INSERT INTO "trip" VALUES(911183,375,'8/30/2015 0:00','Powell at Post (Union Square)',71,'8/30/2015 0:07','2nd at Folsom',62,191,'Subscriber',94105); +INSERT INTO "trip" VALUES(911184,777,'8/30/2015 0:12','Mountain View Caltrain Station',28,'8/30/2015 0:25','Rengstorff Avenue / California Street',33,264,'Subscriber',94040); +INSERT INTO "trip" VALUES(911185,383,'8/30/2015 2:14','Embarcadero at Bryant',54,'8/30/2015 2:20','Howard at 2nd',63,479,'Subscriber',94105); +INSERT INTO "trip" VALUES(911186,370,'8/30/2015 2:16','Howard at 2nd',63,'8/30/2015 2:22','Powell at Post (Union Square)',71,632,'Subscriber',94108); +INSERT INTO "trip" VALUES(911187,453,'8/30/2015 2:18','Civic Center BART (7th at Market)',72,'8/30/2015 2:25','San Francisco Caltrain 2 (330 Townsend)',69,652,'Customer',78233); +INSERT INTO "trip" VALUES(911188,523,'8/30/2015 3:00','Embarcadero at Bryant',54,'8/30/2015 3:09','Market at Sansome',77,541,'Subscriber',94103); +INSERT INTO "trip" VALUES(911189,636,'8/30/2015 4:20','Market at 4th',76,'8/30/2015 4:31','Steuart at Market',74,608,'Customer',95035); +INSERT INTO "trip" VALUES(911190,86,'8/30/2015 4:32','Steuart at Market',74,'8/30/2015 4:33','Steuart at Market',74,608,'Customer',95035); +INSERT INTO "trip" VALUES(911191,203,'8/30/2015 4:35','Steuart at Market',74,'8/30/2015 4:38','Steuart at Market',74,608,'Customer',95035); +INSERT INTO "trip" VALUES(911192,219,'8/30/2015 6:19','Grant Avenue at Columbus Avenue',73,'8/30/2015 6:23','Clay at Battery',41,445,'Subscriber',94133); +INSERT INTO "trip" VALUES(911193,1167,'8/30/2015 7:13','South Van Ness at Market',66,'8/30/2015 7:33','Washington at Kearny',46,709,'Subscriber',94102); +INSERT INTO "trip" VALUES(911194,1704,'8/30/2015 7:36','Spear at Folsom',49,'8/30/2015 8:05','Embarcadero at Sansome',60,548,'Subscriber',94105); +INSERT INTO "trip" VALUES(911195,4040,'8/30/2015 7:46','Grant Avenue at Columbus Avenue',73,'8/30/2015 8:53','Powell at Post (Union Square)',71,504,'Customer',430850); +INSERT INTO "trip" VALUES(911196,3996,'8/30/2015 7:46','Grant Avenue at Columbus Avenue',73,'8/30/2015 8:53','Powell at Post (Union Square)',71,404,'Customer',430850); +INSERT INTO "trip" VALUES(911197,314,'8/30/2015 8:02','Embarcadero at Bryant',54,'8/30/2015 8:08','2nd at Townsend',61,377,'Subscriber',94105); +INSERT INTO "trip" VALUES(911200,1477,'8/30/2015 8:06','Davis at Jackson',42,'8/30/2015 8:31','Davis at Jackson',42,585,'Subscriber',94111); +INSERT INTO "trip" VALUES(911202,6481,'8/30/2015 8:24','Powell at Post (Union Square)',71,'8/30/2015 10:12','Powell at Post (Union Square)',71,354,'Customer','nil'); +INSERT INTO "trip" VALUES(911203,104,'8/30/2015 8:32','Market at 10th',67,'8/30/2015 8:34','Market at 10th',67,449,'Subscriber',94103); +INSERT INTO "trip" VALUES(911204,17108,'8/30/2015 8:39','Washington at Kearny',46,'8/30/2015 13:25','Harry Bridges Plaza (Ferry Building)',50,312,'Customer',92673); +INSERT INTO "trip" VALUES(911205,16935,'8/30/2015 8:42','Washington at Kearny',46,'8/30/2015 13:24','Harry Bridges Plaza (Ferry Building)',50,441,'Customer',92673); +INSERT INTO "trip" VALUES(911206,309,'8/30/2015 8:42','Embarcadero at Bryant',54,'8/30/2015 8:48','2nd at Townsend',61,472,'Customer',2500); +INSERT INTO "trip" VALUES(911207,222,'8/30/2015 8:49','Embarcadero at Folsom',51,'8/30/2015 8:53','Harry Bridges Plaza (Ferry Building)',50,465,'Subscriber',94111); +INSERT INTO "trip" VALUES(911208,452,'8/30/2015 8:58','Market at 10th',67,'8/30/2015 9:06','Mechanics Plaza (Market at Battery)',75,482,'Subscriber',94102); +INSERT INTO "trip" VALUES(911209,606,'8/30/2015 8:58','Yerba Buena Center of the Arts (3rd @ Howard)',68,'8/30/2015 9:08','Steuart at Market',74,392,'Customer',94028); +INSERT INTO "trip" VALUES(911210,551,'8/30/2015 9:00','Steuart at Market',74,'8/30/2015 9:09','Embarcadero at Sansome',60,519,'Subscriber',94553); +INSERT INTO "trip" VALUES(911211,311,'8/30/2015 9:08','2nd at South Park',64,'8/30/2015 9:13','Post at Kearny',47,387,'Subscriber',94107); +INSERT INTO "trip" VALUES(911213,317,'8/30/2015 9:09','Harry Bridges Plaza (Ferry Building)',50,'8/30/2015 9:14','Embarcadero at Folsom',51,465,'Subscriber',94111); +INSERT INTO "trip" VALUES(911214,493,'8/30/2015 9:10','Embarcadero at Folsom',51,'8/30/2015 9:18','San Francisco Caltrain 2 (330 Townsend)',69,538,'Subscriber',95131); +INSERT INTO "trip" VALUES(911215,229,'8/30/2015 9:13','Cowper at University',37,'8/30/2015 9:16','Palo Alto Caltrain Station',34,689,'Subscriber',94301); +INSERT INTO "trip" VALUES(911216,634,'8/30/2015 9:17','San Francisco Caltrain 2 (330 Townsend)',69,'8/30/2015 9:28','Embarcadero at Folsom',51,67,'Subscriber',94107); +INSERT INTO "trip" VALUES(911217,647,'8/30/2015 9:17','San Francisco Caltrain 2 (330 Townsend)',69,'8/30/2015 9:28','Embarcadero at Folsom',51,652,'Subscriber',94107); +INSERT INTO "trip" VALUES(911218,521,'8/30/2015 9:23','San Salvador at 1st',8,'8/30/2015 9:31','San Pedro Square',6,181,'Subscriber',95113); +INSERT INTO "trip" VALUES(911219,476,'8/30/2015 9:25','Embarcadero at Bryant',54,'8/30/2015 9:33','Yerba Buena Center of the Arts (3rd @ Howard)',68,495,'Subscriber',94105); +INSERT INTO "trip" VALUES(911220,6114,'8/30/2015 9:28','Embarcadero at Bryant',54,'8/30/2015 11:10','Embarcadero at Sansome',60,352,'Customer',20817); +INSERT INTO "trip" VALUES(911221,520,'8/30/2015 9:29','2nd at Townsend',61,'8/30/2015 9:38','Temporary Transbay Terminal (Howard at Beale)',55,576,'Subscriber',94107); +INSERT INTO "trip" VALUES(911222,815,'8/30/2015 9:33','Embarcadero at Bryant',54,'8/30/2015 9:46','Harry Bridges Plaza (Ferry Building)',50,592,'Subscriber',94105); +INSERT INTO "trip" VALUES(911223,353,'8/30/2015 9:34','2nd at Townsend',61,'8/30/2015 9:40','Harry Bridges Plaza (Ferry Building)',50,498,'Subscriber',94107); +INSERT INTO "trip" VALUES(911224,1381,'8/30/2015 9:46','2nd at Townsend',61,'8/30/2015 10:09','Townsend at 7th',65,563,'Customer',2500); +INSERT INTO "trip" VALUES(911225,476,'8/30/2015 9:47','Spear at Folsom',49,'8/30/2015 9:55','Embarcadero at Sansome',60,137,'Subscriber',94107); +INSERT INTO "trip" VALUES(911226,7339,'8/30/2015 9:49','Steuart at Market',74,'8/30/2015 11:51','Steuart at Market',74,602,'Customer',93401); +INSERT INTO "trip" VALUES(911227,7314,'8/30/2015 9:49','Steuart at Market',74,'8/30/2015 11:51','Steuart at Market',74,448,'Customer',93401); +INSERT INTO "trip" VALUES(911228,593,'8/30/2015 9:49','Civic Center BART (7th at Market)',72,'8/30/2015 9:59','San Francisco Caltrain 2 (330 Townsend)',69,189,'Subscriber',94103); +INSERT INTO "trip" VALUES(911229,1276,'8/30/2015 9:51','Powell at Post (Union Square)',71,'8/30/2015 10:12','Embarcadero at Bryant',54,623,'Customer',94109); +INSERT INTO "trip" VALUES(911230,426,'8/30/2015 9:53','Harry Bridges Plaza (Ferry Building)',50,'8/30/2015 10:00','2nd at Townsend',61,498,'Subscriber',94107); +INSERT INTO "trip" VALUES(911231,1181,'8/30/2015 9:54','Powell at Post (Union Square)',71,'8/30/2015 10:13','Embarcadero at Bryant',54,404,'Customer',94109); +INSERT INTO "trip" VALUES(911233,8217,'8/30/2015 10:00','Japantown',9,'8/30/2015 12:17','Japantown',9,176,'Customer',95116); +INSERT INTO "trip" VALUES(911234,8216,'8/30/2015 10:00','Japantown',9,'8/30/2015 12:17','Japantown',9,668,'Customer',95111); +INSERT INTO "trip" VALUES(911235,274,'8/30/2015 10:02','Mountain View City Hall',27,'8/30/2015 10:06','Mountain View Caltrain Station',28,107,'Subscriber',94041); +INSERT INTO "trip" VALUES(911236,667,'8/30/2015 10:02','2nd at Folsom',62,'8/30/2015 10:13','Civic Center BART (7th at Market)',72,191,'Subscriber',94105); +INSERT INTO "trip" VALUES(911237,688,'8/30/2015 10:02','2nd at Folsom',62,'8/30/2015 10:14','Civic Center BART (7th at Market)',72,320,'Subscriber',94105); +INSERT INTO "trip" VALUES(911238,563,'8/30/2015 10:07','5th at Howard',57,'8/30/2015 10:17','Embarcadero at Folsom',51,336,'Customer',38133); +INSERT INTO "trip" VALUES(911239,445,'8/30/2015 10:10','Market at 10th',67,'8/30/2015 10:18','Post at Kearny',47,403,'Subscriber',94102); +INSERT INTO "trip" VALUES(911240,448,'8/30/2015 10:12','Civic Center BART (7th at Market)',72,'8/30/2015 10:19','San Francisco Caltrain (Townsend at 4th)',70,111,'Subscriber',94103); +INSERT INTO "trip" VALUES(911241,1117,'8/30/2015 10:12','Townsend at 7th',65,'8/30/2015 10:30','2nd at South Park',64,563,'Customer',2500); +INSERT INTO "trip" VALUES(911242,211,'8/30/2015 10:14','Market at 4th',76,'8/30/2015 10:17','5th at Howard',57,343,'Subscriber',94103); +INSERT INTO "trip" VALUES(911243,360,'8/30/2015 10:16','Mountain View Caltrain Station',28,'8/30/2015 10:22','Mountain View City Hall',27,107,'Subscriber',94041); +INSERT INTO "trip" VALUES(911244,239,'8/30/2015 10:16','Adobe on Almaden',5,'8/30/2015 10:20','San Pedro Square',6,680,'Subscriber',94301); +INSERT INTO "trip" VALUES(911245,1400,'8/30/2015 10:26','Powell Street BART',39,'8/30/2015 10:49','Embarcadero at Vallejo',48,456,'Customer',60654); +INSERT INTO "trip" VALUES(911246,1301,'8/30/2015 10:28','Powell Street BART',39,'8/30/2015 10:49','Embarcadero at Vallejo',48,607,'Customer',60654); +INSERT INTO "trip" VALUES(911247,297,'8/30/2015 10:31','Townsend at 7th',65,'8/30/2015 10:36','2nd at Townsend',61,286,'Subscriber',94107); +INSERT INTO "trip" VALUES(911250,347,'8/30/2015 10:35','Golden Gate at Polk',59,'8/30/2015 10:41','5th at Howard',57,321,'Subscriber',94109); +INSERT INTO "trip" VALUES(911253,1236,'8/30/2015 10:36','Embarcadero at Folsom',51,'8/30/2015 10:57','San Francisco Caltrain (Townsend at 4th)',70,67,'Subscriber',94107); +INSERT INTO "trip" VALUES(911254,1202,'8/30/2015 10:37','Embarcadero at Folsom',51,'8/30/2015 10:57','San Francisco Caltrain (Townsend at 4th)',70,652,'Subscriber',94107); +INSERT INTO "trip" VALUES(911255,719,'8/30/2015 10:38','San Francisco Caltrain (Townsend at 4th)',70,'8/30/2015 10:49','Harry Bridges Plaza (Ferry Building)',50,611,'Subscriber',95131); +INSERT INTO "trip" VALUES(911256,3065,'8/30/2015 10:38','Market at 10th',67,'8/30/2015 11:29','Grant Avenue at Columbus Avenue',73,415,'Customer',84104); +INSERT INTO "trip" VALUES(911259,316,'8/30/2015 10:40','Embarcadero at Sansome',60,'8/30/2015 10:45','Davis at Jackson',42,548,'Subscriber',94111); +INSERT INTO "trip" VALUES(911261,1127,'8/30/2015 10:40','Spear at Folsom',49,'8/30/2015 10:59','Market at 10th',67,558,'Customer',94105); +INSERT INTO "trip" VALUES(911263,298,'8/30/2015 10:42','Howard at 2nd',63,'8/30/2015 10:47','Steuart at Market',74,56,'Subscriber',94105); +INSERT INTO "trip" VALUES(911264,2820,'8/30/2015 10:42','Market at 10th',67,'8/30/2015 11:29','Grant Avenue at Columbus Avenue',73,109,'Customer',84105); +INSERT INTO "trip" VALUES(911265,3215,'8/30/2015 10:43','Embarcadero at Sansome',60,'8/30/2015 11:37','Embarcadero at Sansome',60,553,'Customer',94002); +INSERT INTO "trip" VALUES(911266,3146,'8/30/2015 10:43','Embarcadero at Sansome',60,'8/30/2015 11:36','Embarcadero at Sansome',60,311,'Customer',94002); +INSERT INTO "trip" VALUES(911267,512,'8/30/2015 10:43','Powell at Post (Union Square)',71,'8/30/2015 10:52','2nd at Townsend',61,504,'Subscriber',94109); +INSERT INTO "trip" VALUES(911268,9791,'8/30/2015 10:44','Market at Sansome',77,'8/30/2015 13:27','Grant Avenue at Columbus Avenue',73,629,'Customer','nil'); +INSERT INTO "trip" VALUES(911269,2816,'8/30/2015 10:45','University and Emerson',35,'8/30/2015 11:32','University and Emerson',35,211,'Customer',60630); +INSERT INTO "trip" VALUES(911270,2813,'8/30/2015 10:45','University and Emerson',35,'8/30/2015 11:32','University and Emerson',35,257,'Customer',60630); +INSERT INTO "trip" VALUES(911271,2987,'8/30/2015 10:46','Embarcadero at Sansome',60,'8/30/2015 11:36','Embarcadero at Sansome',60,579,'Customer',94002); +INSERT INTO "trip" VALUES(911272,421,'8/30/2015 10:46','2nd at South Park',64,'8/30/2015 10:53','Market at Sansome',77,563,'Customer',2500); +INSERT INTO "trip" VALUES(911273,9581,'8/30/2015 10:47','Market at Sansome',77,'8/30/2015 13:27','Grant Avenue at Columbus Avenue',73,513,'Customer','nil'); +INSERT INTO "trip" VALUES(911274,2616,'8/30/2015 10:48','University and Emerson',35,'8/30/2015 11:32','University and Emerson',35,694,'Customer',60630); +INSERT INTO "trip" VALUES(911275,131,'8/30/2015 10:49','2nd at Folsom',62,'8/30/2015 10:51','2nd at South Park',64,468,'Subscriber',94105); +INSERT INTO "trip" VALUES(911276,2595,'8/30/2015 10:51','Embarcadero at Vallejo',48,'8/30/2015 11:34','Embarcadero at Sansome',60,607,'Customer',60654); +INSERT INTO "trip" VALUES(911277,2592,'8/30/2015 10:51','Embarcadero at Vallejo',48,'8/30/2015 11:34','Embarcadero at Sansome',60,456,'Customer',60654); +INSERT INTO "trip" VALUES(911278,4611,'8/30/2015 10:58','Post at Kearny',47,'8/30/2015 12:15','Embarcadero at Sansome',60,501,'Customer',6715); +INSERT INTO "trip" VALUES(911279,435,'8/30/2015 10:58','Castro Street and El Camino Real',32,'8/30/2015 11:05','Mountain View Caltrain Station',28,693,'Subscriber',94040); +INSERT INTO "trip" VALUES(911280,4576,'8/30/2015 10:58','Post at Kearny',47,'8/30/2015 12:15','Embarcadero at Sansome',60,284,'Customer',6715); +INSERT INTO "trip" VALUES(911281,304,'8/30/2015 11:03','Davis at Jackson',42,'8/30/2015 11:08','Embarcadero at Sansome',60,548,'Subscriber',94111); +INSERT INTO "trip" VALUES(911282,308,'8/30/2015 11:03','SJSU - San Salvador at 9th',16,'8/30/2015 11:08','Paseo de San Antonio',7,679,'Subscriber',95112); +INSERT INTO "trip" VALUES(911285,8275,'8/30/2015 11:08','Beale at Market',56,'8/30/2015 13:25','5th at Howard',57,134,'Customer',2076); +INSERT INTO "trip" VALUES(911286,8229,'8/30/2015 11:08','Beale at Market',56,'8/30/2015 13:25','5th at Howard',57,599,'Customer',2076); +INSERT INTO "trip" VALUES(911287,1538,'8/30/2015 11:15','Steuart at Market',74,'8/30/2015 11:41','Embarcadero at Sansome',60,193,'Customer',54601); +INSERT INTO "trip" VALUES(911288,1507,'8/30/2015 11:16','Steuart at Market',74,'8/30/2015 11:41','Embarcadero at Sansome',60,454,'Customer',54601); +INSERT INTO "trip" VALUES(911289,221,'8/30/2015 11:17','Santa Clara at Almaden',4,'8/30/2015 11:21','Arena Green / SAP Center',14,308,'Subscriber',95113); +INSERT INTO "trip" VALUES(911290,1026,'8/30/2015 11:20','Harry Bridges Plaza (Ferry Building)',50,'8/30/2015 11:38','Market at 4th',76,578,'Subscriber',94709); +INSERT INTO "trip" VALUES(911291,5352,'8/30/2015 11:21','Evelyn Park and Ride',30,'8/30/2015 12:50','Evelyn Park and Ride',30,13,'Customer',94086); +INSERT INTO "trip" VALUES(911292,101,'8/30/2015 11:21','St James Park',13,'8/30/2015 11:23','St James Park',13,138,'Subscriber',95112); +INSERT INTO "trip" VALUES(911293,255,'8/30/2015 11:22','2nd at Townsend',61,'8/30/2015 11:26','San Francisco Caltrain 2 (330 Townsend)',69,498,'Subscriber',94158); +INSERT INTO "trip" VALUES(911294,1935,'8/30/2015 11:25','Embarcadero at Bryant',54,'8/30/2015 11:57','San Francisco Caltrain 2 (330 Townsend)',69,475,'Customer',94105); +INSERT INTO "trip" VALUES(911295,1965,'8/30/2015 11:24','Embarcadero at Bryant',54,'8/30/2015 11:57','San Francisco Caltrain 2 (330 Townsend)',69,598,'Customer',94105); +INSERT INTO "trip" VALUES(911296,1174,'8/30/2015 11:25','2nd at Townsend',61,'8/30/2015 11:45','Embarcadero at Sansome',60,384,'Subscriber',94107); +INSERT INTO "trip" VALUES(911297,760,'8/30/2015 11:26','South Van Ness at Market',66,'8/30/2015 11:39','San Francisco Caltrain (Townsend at 4th)',70,564,'Subscriber',94105); +INSERT INTO "trip" VALUES(911298,1126,'8/30/2015 11:31','SJSU 4th at San Carlos',12,'8/30/2015 11:50','Japantown',9,654,'Subscriber',95112); +INSERT INTO "trip" VALUES(911299,609,'8/30/2015 11:32','Embarcadero at Sansome',60,'8/30/2015 11:42','Spear at Folsom',49,352,'Subscriber',94107); +INSERT INTO "trip" VALUES(911300,986,'8/30/2015 11:35','Market at 10th',67,'8/30/2015 11:51','2nd at Townsend',61,609,'Customer',90042); +INSERT INTO "trip" VALUES(911301,1107,'8/30/2015 11:39','Embarcadero at Folsom',51,'8/30/2015 11:58','Market at 10th',67,465,'Customer',38133); +INSERT INTO "trip" VALUES(911302,13999,'8/30/2015 11:40','San Francisco City Hall',58,'8/30/2015 15:33','Market at Sansome',77,526,'Customer',90403); +INSERT INTO "trip" VALUES(911303,13964,'8/30/2015 11:41','San Francisco City Hall',58,'8/30/2015 15:33','Market at Sansome',77,412,'Customer',90403); +INSERT INTO "trip" VALUES(911304,637,'8/30/2015 11:43','Mountain View Caltrain Station',28,'8/30/2015 11:54','Castro Street and El Camino Real',32,90,'Subscriber',94040); +INSERT INTO "trip" VALUES(911305,2237,'8/30/2015 11:45','Embarcadero at Vallejo',48,'8/30/2015 12:22','Embarcadero at Sansome',60,455,'Customer',30082); +INSERT INTO "trip" VALUES(911306,18353,'8/30/2015 11:45','Palo Alto Caltrain Station',34,'8/30/2015 16:51','Mountain View Caltrain Station',28,148,'Customer','nil'); +INSERT INTO "trip" VALUES(911307,329,'8/30/2015 11:50','Harry Bridges Plaza (Ferry Building)',50,'8/30/2015 11:56','Embarcadero at Folsom',51,611,'Subscriber',94105); +INSERT INTO "trip" VALUES(911308,2559,'8/30/2015 11:51','Mechanics Plaza (Market at Battery)',75,'8/30/2015 12:33','South Van Ness at Market',66,482,'Customer',90026); +INSERT INTO "trip" VALUES(911309,450,'8/30/2015 11:51','Mountain View City Hall',27,'8/30/2015 11:59','Mountain View Caltrain Station',28,182,'Customer',94041); +INSERT INTO "trip" VALUES(911310,392,'8/30/2015 11:52','Mountain View City Hall',27,'8/30/2015 11:58','Mountain View Caltrain Station',28,107,'Subscriber',94041); +INSERT INTO "trip" VALUES(911311,751,'8/30/2015 12:01','Townsend at 7th',65,'8/30/2015 12:13','Howard at 2nd',63,450,'Subscriber',94107); +INSERT INTO "trip" VALUES(911312,1217,'8/30/2015 12:01','Washington at Kearny',46,'8/30/2015 12:21','Civic Center BART (7th at Market)',72,709,'Customer',94109); +INSERT INTO "trip" VALUES(911313,1227,'8/30/2015 12:01','Washington at Kearny',46,'8/30/2015 12:21','Civic Center BART (7th at Market)',72,463,'Customer',94109); +INSERT INTO "trip" VALUES(911314,264,'8/30/2015 12:02','Mechanics Plaza (Market at Battery)',75,'8/30/2015 12:07','Market at 4th',76,372,'Subscriber',94102); +INSERT INTO "trip" VALUES(911315,527,'8/30/2015 12:03','San Francisco Caltrain (Townsend at 4th)',70,'8/30/2015 12:12','Civic Center BART (7th at Market)',72,535,'Subscriber',94103); +INSERT INTO "trip" VALUES(911316,361,'8/30/2015 12:03','Post at Kearny',47,'8/30/2015 12:09','5th at Howard',57,503,'Subscriber',94103); +INSERT INTO "trip" VALUES(911317,642,'8/30/2015 12:05','Market at 10th',67,'8/30/2015 12:16','San Francisco Caltrain 2 (330 Townsend)',69,558,'Subscriber',94103); +INSERT INTO "trip" VALUES(911318,633,'8/30/2015 12:06','San Francisco Caltrain 2 (330 Townsend)',69,'8/30/2015 12:16','Powell Street BART',39,586,'Subscriber',94107); +INSERT INTO "trip" VALUES(911321,590,'8/30/2015 12:08','Powell at Post (Union Square)',71,'8/30/2015 12:18','Harry Bridges Plaza (Ferry Building)',50,509,'Customer',2446); +INSERT INTO "trip" VALUES(911322,84,'8/30/2015 12:09','Davis at Jackson',42,'8/30/2015 12:10','Davis at Jackson',42,520,'Customer',19010); +INSERT INTO "trip" VALUES(911323,568,'8/30/2015 12:09','Powell at Post (Union Square)',71,'8/30/2015 12:18','Harry Bridges Plaza (Ferry Building)',50,368,'Customer',2446); +INSERT INTO "trip" VALUES(911328,374,'8/30/2015 12:13','Market at 4th',76,'8/30/2015 12:19','Market at 10th',67,372,'Subscriber',94102); +INSERT INTO "trip" VALUES(911329,4762,'8/30/2015 12:20','University and Emerson',35,'8/30/2015 13:40','University and Emerson',35,105,'Customer',94301); +INSERT INTO "trip" VALUES(911331,399,'8/30/2015 12:23','Howard at 2nd',63,'8/30/2015 12:30','Market at 4th',76,450,'Subscriber',94105); +INSERT INTO "trip" VALUES(911332,397,'8/30/2015 12:23','Howard at 2nd',63,'8/30/2015 12:30','Market at 4th',76,479,'Subscriber',94105); +INSERT INTO "trip" VALUES(911333,4568,'8/30/2015 12:23','University and Emerson',35,'8/30/2015 13:40','University and Emerson',35,211,'Customer',94301); +INSERT INTO "trip" VALUES(911334,422,'8/30/2015 12:28','San Francisco Caltrain 2 (330 Townsend)',69,'8/30/2015 12:35','Townsend at 7th',65,538,'Subscriber',94158); +INSERT INTO "trip" VALUES(911335,4886,'8/30/2015 12:33','University and Emerson',35,'8/30/2015 13:54','University and Emerson',35,649,'Customer',94301); +INSERT INTO "trip" VALUES(911336,4808,'8/30/2015 12:34','University and Emerson',35,'8/30/2015 13:54','University and Emerson',35,257,'Customer',94301); +INSERT INTO "trip" VALUES(911337,671,'8/30/2015 12:38','Commercial at Montgomery',45,'8/30/2015 12:49','San Francisco City Hall',58,620,'Subscriber',94111); +INSERT INTO "trip" VALUES(911338,210,'8/30/2015 12:41','Steuart at Market',74,'8/30/2015 12:45','Steuart at Market',74,56,'Customer',94704); +INSERT INTO "trip" VALUES(911339,102,'8/30/2015 12:44','2nd at Folsom',62,'8/30/2015 12:45','2nd at South Park',64,534,'Subscriber',94107); +INSERT INTO "trip" VALUES(911342,933,'8/30/2015 12:48','Embarcadero at Sansome',60,'8/30/2015 13:04','Townsend at 7th',65,548,'Subscriber',94111); +INSERT INTO "trip" VALUES(911343,898,'8/30/2015 12:50','Embarcadero at Folsom',51,'8/30/2015 13:05','2nd at Townsend',61,631,'Customer',85054); +INSERT INTO "trip" VALUES(911344,869,'8/30/2015 12:50','Embarcadero at Folsom',51,'8/30/2015 13:05','2nd at Townsend',61,336,'Customer',85054); +INSERT INTO "trip" VALUES(911345,1640,'8/30/2015 12:51','Clay at Battery',41,'8/30/2015 13:18','2nd at Townsend',61,314,'Customer',94111); +INSERT INTO "trip" VALUES(911346,1609,'8/30/2015 12:51','Clay at Battery',41,'8/30/2015 13:18','2nd at Townsend',61,529,'Subscriber',94111); +INSERT INTO "trip" VALUES(911347,436,'8/30/2015 12:52','San Francisco Caltrain (Townsend at 4th)',70,'8/30/2015 12:59','2nd at Folsom',62,652,'Customer',78233); +INSERT INTO "trip" VALUES(911348,5295,'8/30/2015 12:56','Steuart at Market',74,'8/30/2015 14:25','Powell at Post (Union Square)',71,602,'Customer',2446); +INSERT INTO "trip" VALUES(911349,5281,'8/30/2015 12:57','Steuart at Market',74,'8/30/2015 14:25','Powell at Post (Union Square)',71,448,'Customer',2446); +INSERT INTO "trip" VALUES(911350,10573,'8/30/2015 13:00','Davis at Jackson',42,'8/30/2015 15:56','Grant Avenue at Columbus Avenue',73,494,'Customer',94133); +INSERT INTO "trip" VALUES(911351,10541,'8/30/2015 13:00','Davis at Jackson',42,'8/30/2015 15:56','Grant Avenue at Columbus Avenue',73,604,'Customer',94133); +INSERT INTO "trip" VALUES(911353,17145,'8/30/2015 13:05','Embarcadero at Vallejo',48,'8/30/2015 17:50','Grant Avenue at Columbus Avenue',73,338,'Customer',94133); +INSERT INTO "trip" VALUES(911354,533,'8/30/2015 13:06','5th at Howard',57,'8/30/2015 13:14','Embarcadero at Bryant',54,521,'Subscriber',94109); +INSERT INTO "trip" VALUES(911355,4586,'8/30/2015 13:06','Market at 4th',76,'8/30/2015 14:22','Market at 4th',76,479,'Customer','nil'); +INSERT INTO "trip" VALUES(911356,745,'8/30/2015 13:09','San Francisco City Hall',58,'8/30/2015 13:21','Commercial at Montgomery',45,620,'Subscriber',94111); +INSERT INTO "trip" VALUES(911357,329,'8/30/2015 13:10','2nd at Folsom',62,'8/30/2015 13:16','Market at 4th',76,652,'Subscriber',94105); +INSERT INTO "trip" VALUES(911358,632,'8/30/2015 13:12','Market at 4th',76,'8/30/2015 13:22','San Francisco City Hall',58,357,'Subscriber',94109); +INSERT INTO "trip" VALUES(911359,26978,'8/30/2015 13:17','San Francisco Caltrain (Townsend at 4th)',70,'8/30/2015 20:46','San Francisco Caltrain (Townsend at 4th)',70,67,'Customer',94301); +INSERT INTO "trip" VALUES(911360,26961,'8/30/2015 13:17','San Francisco Caltrain (Townsend at 4th)',70,'8/30/2015 20:46','San Francisco Caltrain (Townsend at 4th)',70,564,'Customer',94301); +INSERT INTO "trip" VALUES(911361,307,'8/30/2015 13:18','Steuart at Market',74,'8/30/2015 13:24','Embarcadero at Bryant',54,392,'Subscriber',95131); +INSERT INTO "trip" VALUES(911362,835,'8/30/2015 13:22','Yerba Buena Center of the Arts (3rd @ Howard)',68,'8/30/2015 13:36','Steuart at Market',74,426,'Customer',84041); +INSERT INTO "trip" VALUES(911363,605,'8/30/2015 13:22','Grant Avenue at Columbus Avenue',73,'8/30/2015 13:32','Temporary Transbay Terminal (Howard at Beale)',55,478,'Subscriber',94133); +INSERT INTO "trip" VALUES(911364,801,'8/30/2015 13:22','Yerba Buena Center of the Arts (3rd @ Howard)',68,'8/30/2015 13:36','Steuart at Market',74,405,'Customer',84041); +INSERT INTO "trip" VALUES(911365,1166,'8/30/2015 13:25','Powell at Post (Union Square)',71,'8/30/2015 13:44','Embarcadero at Sansome',60,632,'Subscriber',94109); +INSERT INTO "trip" VALUES(911366,378,'8/30/2015 13:30','Market at Sansome',77,'8/30/2015 13:37','2nd at South Park',64,541,'Subscriber',94105); +INSERT INTO "trip" VALUES(911367,2834,'8/30/2015 13:34','Embarcadero at Sansome',60,'8/30/2015 14:21','Embarcadero at Sansome',60,455,'Customer',84104); +INSERT INTO "trip" VALUES(911368,2807,'8/30/2015 13:34','Embarcadero at Sansome',60,'8/30/2015 14:21','Embarcadero at Sansome',60,501,'Customer',84105); +INSERT INTO "trip" VALUES(911369,940,'8/30/2015 13:35','Post at Kearny',47,'8/30/2015 13:51','Embarcadero at Bryant',54,387,'Customer','nil'); +INSERT INTO "trip" VALUES(911370,1172,'8/30/2015 13:42','SJSU - San Salvador at 9th',16,'8/30/2015 14:02','San Pedro Square',6,208,'Customer',95112); +INSERT INTO "trip" VALUES(911371,1029,'8/30/2015 13:45','SJSU - San Salvador at 9th',16,'8/30/2015 14:02','San Pedro Square',6,61,'Customer',94566); +INSERT INTO "trip" VALUES(911372,681,'8/30/2015 13:46','Grant Avenue at Columbus Avenue',73,'8/30/2015 13:58','Embarcadero at Folsom',51,317,'Subscriber',94105); +INSERT INTO "trip" VALUES(911373,686,'8/30/2015 13:46','Grant Avenue at Columbus Avenue',73,'8/30/2015 13:58','Embarcadero at Folsom',51,528,'Subscriber',94105); +INSERT INTO "trip" VALUES(911374,944,'8/30/2015 13:47','SJSU - San Salvador at 9th',16,'8/30/2015 14:03','San Pedro Square',6,43,'Customer',92109); +INSERT INTO "trip" VALUES(911375,699,'8/30/2015 13:47','Civic Center BART (7th at Market)',72,'8/30/2015 13:59','Harry Bridges Plaza (Ferry Building)',50,709,'Customer',31); +INSERT INTO "trip" VALUES(911376,289,'8/30/2015 13:48','Townsend at 7th',65,'8/30/2015 13:53','2nd at Townsend',61,427,'Subscriber',94111); +INSERT INTO "trip" VALUES(911378,801,'8/30/2015 13:49','SJSU - San Salvador at 9th',16,'8/30/2015 14:02','San Pedro Square',6,656,'Customer','nil'); +INSERT INTO "trip" VALUES(911379,676,'8/30/2015 13:51','SJSU - San Salvador at 9th',16,'8/30/2015 14:02','San Pedro Square',6,63,'Customer','nil'); +INSERT INTO "trip" VALUES(911380,628,'8/30/2015 13:52','SJSU - San Salvador at 9th',16,'8/30/2015 14:03','San Pedro Square',6,83,'Customer',94507); +INSERT INTO "trip" VALUES(911381,1409,'8/30/2015 13:55','Mountain View Caltrain Station',28,'8/30/2015 14:18','Rengstorff Avenue / California Street',33,107,'Customer',94022); +INSERT INTO "trip" VALUES(911382,1411,'8/30/2015 13:55','Mountain View Caltrain Station',28,'8/30/2015 14:19','Rengstorff Avenue / California Street',33,182,'Customer',94022); +INSERT INTO "trip" VALUES(911383,577,'8/30/2015 13:55','Yerba Buena Center of the Arts (3rd @ Howard)',68,'8/30/2015 14:05','Embarcadero at Bryant',54,376,'Subscriber',94105); +INSERT INTO "trip" VALUES(911384,1339,'8/30/2015 13:57','Golden Gate at Polk',59,'8/30/2015 14:19','Yerba Buena Center of the Arts (3rd @ Howard)',68,672,'Subscriber',94043); +INSERT INTO "trip" VALUES(911385,456,'8/30/2015 13:59','Golden Gate at Polk',59,'8/30/2015 14:07','Market at 4th',76,546,'Subscriber',94102); +INSERT INTO "trip" VALUES(911386,470,'8/30/2015 14:00','San Jose Civic Center',3,'8/30/2015 14:08','SJSU 4th at San Carlos',12,145,'Subscriber',95125); +INSERT INTO "trip" VALUES(911387,665,'8/30/2015 14:08','Temporary Transbay Terminal (Howard at Beale)',55,'8/30/2015 14:19','Washington at Kearny',46,407,'Subscriber',94608); +INSERT INTO "trip" VALUES(911388,22480,'8/30/2015 14:14','Embarcadero at Sansome',60,'8/30/2015 20:28','Embarcadero at Sansome',60,456,'Customer',8702); +INSERT INTO "trip" VALUES(911389,3400,'8/30/2015 14:14','Embarcadero at Vallejo',48,'8/30/2015 15:11','Market at 10th',67,491,'Customer',31); +INSERT INTO "trip" VALUES(911390,711,'8/30/2015 14:14','2nd at Folsom',62,'8/30/2015 14:26','San Francisco Caltrain (Townsend at 4th)',70,288,'Customer',78233); +INSERT INTO "trip" VALUES(911391,22435,'8/30/2015 14:14','Embarcadero at Sansome',60,'8/30/2015 20:28','Embarcadero at Sansome',60,284,'Customer',8702); +INSERT INTO "trip" VALUES(911392,268,'8/30/2015 14:16','2nd at South Park',64,'8/30/2015 14:20','Yerba Buena Center of the Arts (3rd @ Howard)',68,328,'Subscriber',94111); +INSERT INTO "trip" VALUES(911393,564,'8/30/2015 14:18','Post at Kearny',47,'8/30/2015 14:27','Civic Center BART (7th at Market)',72,473,'Subscriber',94102); +INSERT INTO "trip" VALUES(911394,536,'8/30/2015 14:19','University and Emerson',35,'8/30/2015 14:27','Palo Alto Caltrain Station',34,211,'Subscriber',94025); +INSERT INTO "trip" VALUES(911396,516,'8/30/2015 14:23','Commercial at Montgomery',45,'8/30/2015 14:31','Embarcadero at Folsom',51,591,'Subscriber',94108); +INSERT INTO "trip" VALUES(911397,21770,'8/30/2015 14:25','Embarcadero at Sansome',60,'8/30/2015 20:28','Embarcadero at Sansome',60,311,'Customer',5245); +INSERT INTO "trip" VALUES(911398,2650,'8/30/2015 14:31','Redwood City Caltrain Station',22,'8/30/2015 15:15','University and Emerson',35,188,'Customer',20010); +INSERT INTO "trip" VALUES(911399,219,'8/30/2015 14:31','Embarcadero at Folsom',51,'8/30/2015 14:35','Embarcadero at Bryant',54,611,'Subscriber',94105); +INSERT INTO "trip" VALUES(911400,562,'8/30/2015 14:34','Embarcadero at Folsom',51,'8/30/2015 14:43','2nd at South Park',64,317,'Customer',77477); +INSERT INTO "trip" VALUES(911401,1113,'8/30/2015 14:37','Market at 4th',76,'8/30/2015 14:55','San Francisco Caltrain (Townsend at 4th)',70,479,'Subscriber',94118); +INSERT INTO "trip" VALUES(911402,3344,'8/30/2015 14:41','Evelyn Park and Ride',30,'8/30/2015 15:37','Evelyn Park and Ride',30,92,'Customer',94040); +INSERT INTO "trip" VALUES(911403,3328,'8/30/2015 14:41','Evelyn Park and Ride',30,'8/30/2015 15:37','Evelyn Park and Ride',30,194,'Customer',94040); +INSERT INTO "trip" VALUES(911404,336,'8/30/2015 14:42','Japantown',9,'8/30/2015 14:48','Ryland Park',84,95,'Subscriber',95110); +INSERT INTO "trip" VALUES(911405,529,'8/30/2015 14:46','Steuart at Market',74,'8/30/2015 14:55','Washington at Kearny',46,405,'Customer',60657); +INSERT INTO "trip" VALUES(911406,505,'8/30/2015 14:47','Powell Street BART',39,'8/30/2015 14:55','Market at 10th',67,458,'Customer',2500); +INSERT INTO "trip" VALUES(911407,519,'8/30/2015 14:51','Powell at Post (Union Square)',71,'8/30/2015 14:59','Steuart at Market',74,484,'Customer',43214); +INSERT INTO "trip" VALUES(911408,388,'8/30/2015 14:55','Powell at Post (Union Square)',71,'8/30/2015 15:01','2nd at South Park',64,329,'Subscriber',94111); +INSERT INTO "trip" VALUES(911409,633,'8/30/2015 15:00','Yerba Buena Center of the Arts (3rd @ Howard)',68,'8/30/2015 15:11','Harry Bridges Plaza (Ferry Building)',50,457,'Subscriber',94590); +INSERT INTO "trip" VALUES(911410,1495,'8/30/2015 15:01','San Pedro Square',6,'8/30/2015 15:26','SJSU - San Salvador at 9th',16,656,'Customer','nil'); +INSERT INTO "trip" VALUES(911411,1447,'8/30/2015 15:02','San Pedro Square',6,'8/30/2015 15:26','SJSU - San Salvador at 9th',16,61,'Customer','nil'); +INSERT INTO "trip" VALUES(911412,1511,'8/30/2015 15:02','San Pedro Square',6,'8/30/2015 15:27','SJSU - San Salvador at 9th',16,181,'Customer',94566); +INSERT INTO "trip" VALUES(911414,657,'8/30/2015 15:02','Steuart at Market',74,'8/30/2015 15:13','Yerba Buena Center of the Arts (3rd @ Howard)',68,587,'Customer',94028); +INSERT INTO "trip" VALUES(911415,1343,'8/30/2015 15:03','San Pedro Square',6,'8/30/2015 15:26','SJSU - San Salvador at 9th',16,208,'Customer',95112); +INSERT INTO "trip" VALUES(911416,1418,'8/30/2015 15:04','San Pedro Square',6,'8/30/2015 15:27','SJSU - San Salvador at 9th',16,680,'Customer',92109); +INSERT INTO "trip" VALUES(911417,1295,'8/30/2015 15:04','San Pedro Square',6,'8/30/2015 15:26','SJSU - San Salvador at 9th',16,43,'Customer',94507); +INSERT INTO "trip" VALUES(911418,666,'8/30/2015 15:05','Washington at Kearny',46,'8/30/2015 15:16','Temporary Transbay Terminal (Howard at Beale)',55,407,'Subscriber',94608); +INSERT INTO "trip" VALUES(911419,735,'8/30/2015 15:08','Embarcadero at Sansome',60,'8/30/2015 15:20','2nd at Townsend',61,501,'Subscriber',94111); +INSERT INTO "trip" VALUES(911420,464,'8/30/2015 15:10','5th at Howard',57,'8/30/2015 15:18','2nd at South Park',64,134,'Subscriber',94117); +INSERT INTO "trip" VALUES(911421,1178,'8/30/2015 15:10','California Ave Caltrain Station',36,'8/30/2015 15:30','University and Emerson',35,698,'Customer',55); +INSERT INTO "trip" VALUES(911422,943,'8/30/2015 15:11','Commercial at Montgomery',45,'8/30/2015 15:27','San Francisco City Hall',58,332,'Subscriber',94102); +INSERT INTO "trip" VALUES(911423,5254,'8/30/2015 15:11','Steuart at Market',74,'8/30/2015 16:39','Steuart at Market',74,608,'Customer','nil'); +INSERT INTO "trip" VALUES(911424,967,'8/30/2015 15:12','2nd at Townsend',61,'8/30/2015 15:28','Powell at Post (Union Square)',71,609,'Subscriber',94109); +INSERT INTO "trip" VALUES(911425,525,'8/30/2015 15:12','2nd at Townsend',61,'8/30/2015 15:21','Townsend at 7th',65,529,'Subscriber',94107); +INSERT INTO "trip" VALUES(911426,264,'8/30/2015 15:13','San Francisco Caltrain (Townsend at 4th)',70,'8/30/2015 15:17','Townsend at 7th',65,288,'Subscriber',94107); +INSERT INTO "trip" VALUES(911428,357,'8/30/2015 15:14','Market at 10th',67,'8/30/2015 15:20','5th at Howard',57,465,'Subscriber',94102); +INSERT INTO "trip" VALUES(911429,4851,'8/30/2015 15:18','Steuart at Market',74,'8/30/2015 16:39','Steuart at Market',74,426,'Customer',96162); +INSERT INTO "trip" VALUES(911430,4652,'8/30/2015 15:22','Steuart at Market',74,'8/30/2015 16:39','Steuart at Market',74,56,'Customer','nil'); +INSERT INTO "trip" VALUES(911433,321,'8/30/2015 15:22','2nd at South Park',64,'8/30/2015 15:27','Spear at Folsom',49,317,'Subscriber',94105); +INSERT INTO "trip" VALUES(911435,21182,'8/30/2015 15:22','Powell Street BART',39,'8/30/2015 21:15','Embarcadero at Sansome',60,586,'Customer','nil'); +INSERT INTO "trip" VALUES(911436,21180,'8/30/2015 15:22','Powell Street BART',39,'8/30/2015 21:15','Embarcadero at Sansome',60,618,'Customer','nil'); +INSERT INTO "trip" VALUES(911439,932,'8/30/2015 15:23','San Francisco Caltrain (Townsend at 4th)',70,'8/30/2015 15:39','Clay at Battery',41,479,'Subscriber',94118); +INSERT INTO "trip" VALUES(911444,4424,'8/30/2015 15:25','Steuart at Market',74,'8/30/2015 16:39','Steuart at Market',74,484,'Customer','nil'); +INSERT INTO "trip" VALUES(911445,1203,'8/30/2015 15:26','Steuart at Market',74,'8/30/2015 15:46','Powell at Post (Union Square)',71,527,'Customer',43214); +INSERT INTO "trip" VALUES(911446,20958,'8/30/2015 15:26','Powell Street BART',39,'8/30/2015 21:15','Embarcadero at Sansome',60,584,'Customer','nil'); +INSERT INTO "trip" VALUES(911447,307,'8/30/2015 15:27','Market at Sansome',77,'8/30/2015 15:32','Powell Street BART',39,309,'Subscriber',94107); +INSERT INTO "trip" VALUES(911448,452,'8/30/2015 15:30','Market at 10th',67,'8/30/2015 15:38','Market at 4th',76,491,'Customer',2500); +INSERT INTO "trip" VALUES(911449,200,'8/30/2015 15:33','Cowper at University',37,'8/30/2015 15:36','Palo Alto Caltrain Station',34,41,'Subscriber',94301); +INSERT INTO "trip" VALUES(911452,6022,'8/30/2015 15:34','San Jose Diridon Caltrain Station',2,'8/30/2015 17:14','San Jose Diridon Caltrain Station',2,117,'Customer',95110); +INSERT INTO "trip" VALUES(911453,6028,'8/30/2015 15:34','San Jose Diridon Caltrain Station',2,'8/30/2015 17:14','San Jose Diridon Caltrain Station',2,213,'Customer',95110); +INSERT INTO "trip" VALUES(911454,793,'8/30/2015 15:38','Temporary Transbay Terminal (Howard at Beale)',55,'8/30/2015 15:51','Golden Gate at Polk',59,478,'Subscriber',94109); +INSERT INTO "trip" VALUES(911458,469,'8/30/2015 15:42','Spear at Folsom',49,'8/30/2015 15:50','2nd at Townsend',61,634,'Subscriber',94501); +INSERT INTO "trip" VALUES(911459,6012,'8/30/2015 15:42','Embarcadero at Vallejo',48,'8/30/2015 17:22','Embarcadero at Sansome',60,16,'Customer',94704); +INSERT INTO "trip" VALUES(911460,5848,'8/30/2015 15:45','Embarcadero at Vallejo',48,'8/30/2015 17:23','Embarcadero at Sansome',60,434,'Customer',94704); +INSERT INTO "trip" VALUES(911461,309,'8/30/2015 15:47','Davis at Jackson',42,'8/30/2015 15:53','Temporary Transbay Terminal (Howard at Beale)',55,487,'Subscriber',94111); +INSERT INTO "trip" VALUES(911462,6137,'8/30/2015 15:48','Embarcadero at Vallejo',48,'8/30/2015 17:30','Embarcadero at Sansome',60,624,'Customer',94704); +INSERT INTO "trip" VALUES(911463,541,'8/30/2015 15:48','2nd at Townsend',61,'8/30/2015 15:57','Yerba Buena Center of the Arts (3rd @ Howard)',68,472,'Customer',77477); +INSERT INTO "trip" VALUES(911464,625,'8/30/2015 15:48','Powell Street BART',39,'8/30/2015 15:58','San Francisco Caltrain 2 (330 Townsend)',69,525,'Subscriber',94107); +INSERT INTO "trip" VALUES(911465,3818,'8/30/2015 15:48','Broadway St at Battery St',82,'8/30/2015 16:52','South Van Ness at Market',66,594,'Customer','nil'); +INSERT INTO "trip" VALUES(911466,687,'8/30/2015 15:49','Embarcadero at Bryant',54,'8/30/2015 16:01','Townsend at 7th',65,387,'Subscriber',94103); +INSERT INTO "trip" VALUES(911467,5537,'8/30/2015 15:50','Embarcadero at Vallejo',48,'8/30/2015 17:22','2nd at Townsend',61,560,'Customer',33146); +INSERT INTO "trip" VALUES(911468,898,'8/30/2015 15:51','Evelyn Park and Ride',30,'8/30/2015 16:06','Evelyn Park and Ride',30,194,'Subscriber',94085); +INSERT INTO "trip" VALUES(911469,166,'8/30/2015 16:02','California Ave Caltrain Station',36,'8/30/2015 16:04','Park at Olive',38,252,'Subscriber',94306); +INSERT INTO "trip" VALUES(911470,874,'8/30/2015 16:09','Market at 4th',76,'8/30/2015 16:23','Beale at Market',56,491,'Subscriber',94705); +INSERT INTO "trip" VALUES(911471,1516,'8/30/2015 16:09','St James Park',13,'8/30/2015 16:34','Japantown',9,708,'Customer',94901); +INSERT INTO "trip" VALUES(911472,1406,'8/30/2015 16:09','St James Park',13,'8/30/2015 16:33','Japantown',9,138,'Customer',94901); +INSERT INTO "trip" VALUES(911473,1117,'8/30/2015 16:13','Washington at Kearny',46,'8/30/2015 16:32','Steuart at Market',74,549,'Customer',60657); +INSERT INTO "trip" VALUES(911474,696,'8/30/2015 16:13','Howard at 2nd',63,'8/30/2015 16:25','Townsend at 7th',65,260,'Subscriber',94107); +INSERT INTO "trip" VALUES(911475,2270,'8/30/2015 16:17','San Francisco Caltrain (Townsend at 4th)',70,'8/30/2015 16:55','Embarcadero at Sansome',60,342,'Customer',52); +INSERT INTO "trip" VALUES(911476,1939,'8/30/2015 16:23','Post at Kearny',47,'8/30/2015 16:55','Embarcadero at Sansome',60,518,'Customer',2500); +INSERT INTO "trip" VALUES(911477,665,'8/30/2015 16:23','Market at 10th',67,'8/30/2015 16:34','Washington at Kearny',46,449,'Customer',94105); +INSERT INTO "trip" VALUES(911479,1259,'8/30/2015 16:32','Grant Avenue at Columbus Avenue',73,'8/30/2015 16:53','Yerba Buena Center of the Arts (3rd @ Howard)',68,513,'Customer',84041); +INSERT INTO "trip" VALUES(911480,1307,'8/30/2015 16:32','Grant Avenue at Columbus Avenue',73,'8/30/2015 16:54','Yerba Buena Center of the Arts (3rd @ Howard)',68,370,'Customer',84041); +INSERT INTO "trip" VALUES(911481,6356,'8/30/2015 16:32','Castro Street and El Camino Real',32,'8/30/2015 18:18','Castro Street and El Camino Real',32,142,'Customer',94041); +INSERT INTO "trip" VALUES(911482,1950,'8/30/2015 16:39','Japantown',9,'8/30/2015 17:11','St James Park',13,64,'Customer',94901); +INSERT INTO "trip" VALUES(911483,1920,'8/30/2015 16:39','Japantown',9,'8/30/2015 17:11','St James Park',13,708,'Customer',94901); +INSERT INTO "trip" VALUES(911484,890,'8/30/2015 16:46','Grant Avenue at Columbus Avenue',73,'8/30/2015 17:00','San Francisco Caltrain (Townsend at 4th)',70,629,'Subscriber',94104); +INSERT INTO "trip" VALUES(911486,6390,'8/30/2015 16:52','University and Emerson',35,'8/30/2015 18:38','California Ave Caltrain Station',36,188,'Customer',55); +INSERT INTO "trip" VALUES(911491,600,'8/30/2015 16:57','Embarcadero at Sansome',60,'8/30/2015 17:07','Market at Sansome',77,518,'Customer',2500); +INSERT INTO "trip" VALUES(911494,645,'8/30/2015 16:58','Harry Bridges Plaza (Ferry Building)',50,'8/30/2015 17:09','2nd at Townsend',61,457,'Subscriber',94107); +INSERT INTO "trip" VALUES(911497,1099,'8/30/2015 16:59','Clay at Battery',41,'8/30/2015 17:17','Clay at Battery',41,445,'Customer',94133); +INSERT INTO "trip" VALUES(911498,238,'8/30/2015 17:01','2nd at Townsend',61,'8/30/2015 17:05','San Francisco Caltrain 2 (330 Townsend)',69,501,'Subscriber',94107); +INSERT INTO "trip" VALUES(911499,459,'8/30/2015 17:03','Powell Street BART',39,'8/30/2015 17:11','South Van Ness at Market',66,572,'Subscriber',94107); +INSERT INTO "trip" VALUES(911500,1844,'8/30/2015 17:07','Market at 4th',76,'8/30/2015 17:38','Market at 4th',76,420,'Customer',94015); +INSERT INTO "trip" VALUES(911501,500,'8/30/2015 17:09','Grant Avenue at Columbus Avenue',73,'8/30/2015 17:17','Temporary Transbay Terminal (Howard at Beale)',55,533,'Subscriber',94133); +INSERT INTO "trip" VALUES(911502,446,'8/30/2015 17:11','Market at 10th',67,'8/30/2015 17:19','Post at Kearny',47,269,'Subscriber',94104); +INSERT INTO "trip" VALUES(911503,272,'8/30/2015 17:20','Mechanics Plaza (Market at Battery)',75,'8/30/2015 17:24','Davis at Jackson',42,569,'Subscriber',94111); +INSERT INTO "trip" VALUES(911506,689,'8/30/2015 17:29','Washington at Kearny',46,'8/30/2015 17:40','Spear at Folsom',49,404,'Customer',94105); +INSERT INTO "trip" VALUES(911507,523,'8/30/2015 17:29','Temporary Transbay Terminal (Howard at Beale)',55,'8/30/2015 17:38','2nd at Townsend',61,334,'Subscriber',94107); +INSERT INTO "trip" VALUES(911508,668,'8/30/2015 17:30','Civic Center BART (7th at Market)',72,'8/30/2015 17:41','2nd at Folsom',62,473,'Subscriber',94105); +INSERT INTO "trip" VALUES(911509,649,'8/30/2015 17:30','Civic Center BART (7th at Market)',72,'8/30/2015 17:41','2nd at Folsom',62,389,'Subscriber',94105); +INSERT INTO "trip" VALUES(911510,616,'8/30/2015 17:33','2nd at Townsend',61,'8/30/2015 17:43','5th at Howard',57,432,'Subscriber',94112); +INSERT INTO "trip" VALUES(911516,2953,'8/30/2015 17:42','Market at 4th',76,'8/30/2015 18:31','Post at Kearny',47,212,'Customer',94015); +INSERT INTO "trip" VALUES(911517,444,'8/30/2015 17:44','Powell at Post (Union Square)',71,'8/30/2015 17:51','San Francisco City Hall',58,609,'Subscriber',94109); +INSERT INTO "trip" VALUES(911518,2706,'8/30/2015 17:45','Market at 4th',76,'8/30/2015 18:30','Post at Kearny',47,582,'Customer',94015); +INSERT INTO "trip" VALUES(911519,732,'8/30/2015 17:49','Grant Avenue at Columbus Avenue',73,'8/30/2015 18:01','Powell Street BART',39,69,'Subscriber',94105); +INSERT INTO "trip" VALUES(911520,1116,'8/30/2015 17:49','Clay at Battery',41,'8/30/2015 18:08','Embarcadero at Sansome',60,589,'Customer',1); +INSERT INTO "trip" VALUES(911521,1050,'8/30/2015 17:49','Clay at Battery',41,'8/30/2015 18:07','Embarcadero at Sansome',60,446,'Customer',1); +INSERT INTO "trip" VALUES(911522,3673,'8/30/2015 17:50','Market at 4th',76,'8/30/2015 18:51','Market at 4th',76,450,'Customer',94015); +INSERT INTO "trip" VALUES(911523,497,'8/30/2015 17:56','San Francisco Caltrain 2 (330 Townsend)',69,'8/30/2015 18:04','Embarcadero at Bryant',54,475,'Subscriber',94107); +INSERT INTO "trip" VALUES(911533,173,'8/30/2015 18:08','Temporary Transbay Terminal (Howard at Beale)',55,'8/30/2015 18:11','Howard at 2nd',63,487,'Subscriber',94105); +INSERT INTO "trip" VALUES(911535,1548,'8/30/2015 18:10','Yerba Buena Center of the Arts (3rd @ Howard)',68,'8/30/2015 18:36','Golden Gate at Polk',59,370,'Subscriber',94043); +INSERT INTO "trip" VALUES(911536,545,'8/30/2015 18:12','2nd at Folsom',62,'8/30/2015 18:21','Post at Kearny',47,389,'Customer','nil'); +INSERT INTO "trip" VALUES(911537,469,'8/30/2015 18:13','2nd at Folsom',62,'8/30/2015 18:21','Post at Kearny',47,473,'Customer',89052); +INSERT INTO "trip" VALUES(911538,492,'8/30/2015 18:15','2nd at Folsom',62,'8/30/2015 18:23','Post at Kearny',47,468,'Customer','nil'); +INSERT INTO "trip" VALUES(911539,534,'8/30/2015 18:21','Steuart at Market',74,'8/30/2015 18:29','Yerba Buena Center of the Arts (3rd @ Howard)',68,56,'Customer',90007); +INSERT INTO "trip" VALUES(911541,842,'8/30/2015 18:31','Embarcadero at Folsom',51,'8/30/2015 18:45','Commercial at Montgomery',45,591,'Subscriber',94108); +INSERT INTO "trip" VALUES(911542,2430,'8/30/2015 18:36','Cowper at University',37,'8/30/2015 19:16','San Antonio Caltrain Station',29,707,'Subscriber',94301); +INSERT INTO "trip" VALUES(911543,1370,'8/30/2015 18:37','Santa Clara at Almaden',4,'8/30/2015 18:59','Santa Clara at Almaden',4,205,'Subscriber',95110); +INSERT INTO "trip" VALUES(911545,636,'8/30/2015 18:43','Davis at Jackson',42,'8/30/2015 18:53','5th at Howard',57,547,'Customer',84102); +INSERT INTO "trip" VALUES(911546,552,'8/30/2015 18:43','San Francisco Caltrain (Townsend at 4th)',70,'8/30/2015 18:52','Harry Bridges Plaza (Ferry Building)',50,344,'Subscriber',94114); +INSERT INTO "trip" VALUES(911547,543,'8/30/2015 18:44','Davis at Jackson',42,'8/30/2015 18:53','5th at Howard',57,313,'Customer',94111); +INSERT INTO "trip" VALUES(911548,743,'8/30/2015 18:50','Clay at Battery',41,'8/30/2015 19:02','Clay at Battery',41,597,'Customer',76051); +INSERT INTO "trip" VALUES(911549,1502,'8/30/2015 18:55','Embarcadero at Sansome',60,'8/30/2015 19:21','Broadway St at Battery St',82,446,'Customer','nil'); +INSERT INTO "trip" VALUES(911550,818,'8/30/2015 19:06','Embarcadero at Sansome',60,'8/30/2015 19:20','Broadway St at Battery St',82,624,'Customer','nil'); +INSERT INTO "trip" VALUES(911551,1244,'8/30/2015 19:08','South Van Ness at Market',66,'8/30/2015 19:29','Embarcadero at Folsom',51,594,'Customer',38133); +INSERT INTO "trip" VALUES(911552,369,'8/30/2015 19:11','2nd at South Park',64,'8/30/2015 19:18','5th at Howard',57,409,'Subscriber',94107); +INSERT INTO "trip" VALUES(911553,222,'8/30/2015 19:16','Townsend at 7th',65,'8/30/2015 19:19','San Francisco Caltrain 2 (330 Townsend)',69,387,'Subscriber',94103); +INSERT INTO "trip" VALUES(911554,639,'8/30/2015 19:20','Yerba Buena Center of the Arts (3rd @ Howard)',68,'8/30/2015 19:31','Steuart at Market',74,587,'Customer',90007); +INSERT INTO "trip" VALUES(911555,1241,'8/30/2015 19:20','Civic Center BART (7th at Market)',72,'8/30/2015 19:41','Embarcadero at Bryant',54,406,'Customer',94105); +INSERT INTO "trip" VALUES(911556,908,'8/30/2015 19:23','Civic Center BART (7th at Market)',72,'8/30/2015 19:38','Embarcadero at Folsom',51,191,'Customer',94107); +INSERT INTO "trip" VALUES(911557,418,'8/30/2015 19:27','Spear at Folsom',49,'8/30/2015 19:34','Davis at Jackson',42,33,'Subscriber',94111); +INSERT INTO "trip" VALUES(911558,417,'8/30/2015 19:25','South Van Ness at Market',66,'8/30/2015 19:32','Market at 4th',76,572,'Subscriber',94108); +INSERT INTO "trip" VALUES(911559,327,'8/30/2015 19:29','2nd at Folsom',62,'8/30/2015 19:35','Post at Kearny',47,134,'Subscriber',94105); +INSERT INTO "trip" VALUES(911560,555,'8/30/2015 19:31','Embarcadero at Folsom',51,'8/30/2015 19:40','Market at 4th',76,388,'Customer',1); +INSERT INTO "trip" VALUES(911561,1026,'8/30/2015 19:33','Castro Street and El Camino Real',32,'8/30/2015 19:50','Mountain View Caltrain Station',28,90,'Customer',94041); +INSERT INTO "trip" VALUES(911562,994,'8/30/2015 19:34','Castro Street and El Camino Real',32,'8/30/2015 19:50','Mountain View Caltrain Station',28,251,'Customer',94041); +INSERT INTO "trip" VALUES(911568,938,'8/30/2015 19:55','Embarcadero at Sansome',60,'8/30/2015 20:11','San Francisco Caltrain (Townsend at 4th)',70,455,'Customer',52); +INSERT INTO "trip" VALUES(911569,270,'8/30/2015 20:00','San Francisco Caltrain (Townsend at 4th)',70,'8/30/2015 20:05','2nd at Townsend',61,408,'Subscriber',94107); +INSERT INTO "trip" VALUES(911574,3339,'8/30/2015 20:03','Davis at Jackson',42,'8/30/2015 20:59','Davis at Jackson',42,507,'Customer',94111); +INSERT INTO "trip" VALUES(911575,367,'8/30/2015 20:06','Mechanics Plaza (Market at Battery)',75,'8/30/2015 20:12','Market at 4th',76,275,'Subscriber',94104); +INSERT INTO "trip" VALUES(911576,3077,'8/30/2015 20:06','Davis at Jackson',42,'8/30/2015 20:57','Davis at Jackson',42,390,'Customer',94111); +INSERT INTO "trip" VALUES(911577,563,'8/30/2015 20:08','Temporary Transbay Terminal (Howard at Beale)',55,'8/30/2015 20:17','Grant Avenue at Columbus Avenue',73,533,'Subscriber',94133); +INSERT INTO "trip" VALUES(911578,2821,'8/30/2015 20:10','Davis at Jackson',42,'8/30/2015 20:57','Davis at Jackson',42,442,'Customer',94111); +INSERT INTO "trip" VALUES(911579,277,'8/30/2015 20:12','Arena Green / SAP Center',14,'8/30/2015 20:17','San Pedro Square',6,308,'Subscriber',95113); +INSERT INTO "trip" VALUES(911580,1265,'8/30/2015 20:13','Embarcadero at Sansome',60,'8/30/2015 20:34','Townsend at 7th',65,277,'Subscriber',94107); +INSERT INTO "trip" VALUES(911581,1332,'8/30/2015 20:18','Embarcadero at Sansome',60,'8/30/2015 20:40','Clay at Battery',41,589,'Customer',1); +INSERT INTO "trip" VALUES(911582,1320,'8/30/2015 20:18','Embarcadero at Sansome',60,'8/30/2015 20:40','Clay at Battery',41,342,'Customer',1); +INSERT INTO "trip" VALUES(911583,382,'8/30/2015 20:25','Market at 4th',76,'8/30/2015 20:31','Powell at Post (Union Square)',71,578,'Customer',43214); +INSERT INTO "trip" VALUES(911584,545,'8/30/2015 20:41','Market at 4th',76,'8/30/2015 20:50','Steuart at Market',74,420,'Subscriber',94104); +INSERT INTO "trip" VALUES(911590,434,'8/30/2015 21:04','2nd at Townsend',61,'8/30/2015 21:11','Harry Bridges Plaza (Ferry Building)',50,300,'Customer',94566); +INSERT INTO "trip" VALUES(911591,278,'8/30/2015 21:16','Post at Kearny',47,'8/30/2015 21:21','2nd at Folsom',62,269,'Subscriber',94105); +INSERT INTO "trip" VALUES(911603,236,'8/30/2015 21:43','Davis at Jackson',42,'8/30/2015 21:47','Commercial at Montgomery',45,585,'Subscriber',94111); +INSERT INTO "trip" VALUES(911605,269,'8/30/2015 21:52','Japantown',9,'8/30/2015 21:56','Ryland Park',84,658,'Subscriber',95110); +INSERT INTO "trip" VALUES(911606,2915,'8/30/2015 22:31','San Jose City Hall',10,'8/30/2015 23:20','San Jose City Hall',10,68,'Customer',95035); +INSERT INTO "trip" VALUES(911607,2915,'8/30/2015 22:32','San Jose City Hall',10,'8/30/2015 23:20','San Jose City Hall',10,25,'Customer',95035); +INSERT INTO "trip" VALUES(911608,349,'8/30/2015 22:47','Post at Kearny',47,'8/30/2015 22:53','2nd at South Park',64,134,'Subscriber',94107); +INSERT INTO "trip" VALUES(911609,200,'8/30/2015 22:58','Steuart at Market',74,'8/30/2015 23:01','Spear at Folsom',49,587,'Subscriber',94111); +INSERT INTO "trip" VALUES(911610,225,'8/30/2015 23:09','Embarcadero at Bryant',54,'8/30/2015 23:13','Steuart at Market',74,611,'Subscriber',94114); +INSERT INTO "trip" VALUES(911611,347,'8/30/2015 23:42','Clay at Battery',41,'8/30/2015 23:48','Grant Avenue at Columbus Avenue',73,479,'Subscriber',94133); +INSERT INTO "trip" VALUES(911612,908,'8/31/2015 0:03','5th at Howard',57,'8/31/2015 0:18','Embarcadero at Sansome',60,409,'Customer',94111); +INSERT INTO "trip" VALUES(911613,870,'8/31/2015 0:04','5th at Howard',57,'8/31/2015 0:18','Embarcadero at Sansome',60,503,'Customer',84102); +INSERT INTO "trip" VALUES(911615,1859,'8/31/2015 0:27','Embarcadero at Sansome',60,'8/31/2015 0:58','Davis at Jackson',42,456,'Customer',94111); +INSERT INTO "trip" VALUES(911616,1619,'8/31/2015 0:28','Embarcadero at Sansome',60,'8/31/2015 0:55','Davis at Jackson',42,284,'Customer',84102); +INSERT INTO "trip" VALUES(911617,1239,'8/31/2015 1:26','Grant Avenue at Columbus Avenue',73,'8/31/2015 1:46','Broadway St at Battery St',82,338,'Subscriber',94066); +INSERT INTO "trip" VALUES(911618,1114,'8/31/2015 3:35','Townsend at 7th',65,'8/31/2015 3:53','Howard at 2nd',63,277,'Subscriber',94107); +INSERT INTO "trip" VALUES(911619,394,'8/31/2015 4:57','Market at 10th',67,'8/31/2015 5:04','Townsend at 7th',65,410,'Subscriber',94102); +INSERT INTO "trip" VALUES(911620,872,'8/31/2015 5:01','Davis at Jackson',42,'8/31/2015 5:15','San Francisco Caltrain (Townsend at 4th)',70,284,'Subscriber',94111); +INSERT INTO "trip" VALUES(911621,476,'8/31/2015 5:38','Powell Street BART',39,'8/31/2015 5:46','San Francisco Caltrain 2 (330 Townsend)',69,401,'Subscriber',94107); +INSERT INTO "trip" VALUES(911622,247,'8/31/2015 5:44','Grant Avenue at Columbus Avenue',73,'8/31/2015 5:48','Market at Sansome',77,604,'Subscriber',94133); +INSERT INTO "trip" VALUES(911623,559,'8/31/2015 5:54','5th at Howard',57,'8/31/2015 6:04','Steuart at Market',74,321,'Subscriber',94112); +INSERT INTO "trip" VALUES(911624,701,'8/31/2015 6:02','Embarcadero at Bryant',54,'8/31/2015 6:14','Embarcadero at Sansome',60,454,'Subscriber',94105); +INSERT INTO "trip" VALUES(911625,326,'8/31/2015 6:07','Embarcadero at Sansome',60,'8/31/2015 6:12','Steuart at Market',74,311,'Subscriber',94133); +INSERT INTO "trip" VALUES(911626,368,'8/31/2015 6:08','Temporary Transbay Terminal (Howard at Beale)',55,'8/31/2015 6:14','2nd at Townsend',61,576,'Subscriber',94610); +INSERT INTO "trip" VALUES(911627,572,'8/31/2015 6:12','Embarcadero at Sansome',60,'8/31/2015 6:21','2nd at Townsend',61,16,'Subscriber',94111); +INSERT INTO "trip" VALUES(911628,557,'8/31/2015 6:15','Townsend at 7th',65,'8/31/2015 6:25','South Van Ness at Market',66,288,'Subscriber',94107); +INSERT INTO "trip" VALUES(911629,299,'8/31/2015 6:17','Embarcadero at Bryant',54,'8/31/2015 6:22','Temporary Transbay Terminal (Howard at Beale)',55,392,'Subscriber',94403); +INSERT INTO "trip" VALUES(911630,786,'8/31/2015 6:18','Embarcadero at Folsom',51,'8/31/2015 6:31','Townsend at 7th',65,594,'Subscriber',94501); +INSERT INTO "trip" VALUES(911631,241,'8/31/2015 6:20','Temporary Transbay Terminal (Howard at Beale)',55,'8/31/2015 6:24','Commercial at Montgomery',45,331,'Subscriber',94611); +INSERT INTO "trip" VALUES(911632,514,'8/31/2015 6:22','Harry Bridges Plaza (Ferry Building)',50,'8/31/2015 6:30','2nd at Townsend',61,368,'Subscriber',94945); +INSERT INTO "trip" VALUES(911633,855,'8/31/2015 6:22','Powell at Post (Union Square)',71,'8/31/2015 6:36','Townsend at 7th',65,602,'Customer',2500); +INSERT INTO "trip" VALUES(911634,332,'8/31/2015 6:22','Harry Bridges Plaza (Ferry Building)',50,'8/31/2015 6:27','Post at Kearny',47,300,'Subscriber',94957); +INSERT INTO "trip" VALUES(911635,287,'8/31/2015 6:24','Commercial at Montgomery',45,'8/31/2015 6:28','Embarcadero at Sansome',60,613,'Subscriber',94111); +INSERT INTO "trip" VALUES(911637,430,'8/31/2015 6:29','Temporary Transbay Terminal (Howard at Beale)',55,'8/31/2015 6:36','Broadway St at Battery St',82,392,'Subscriber',94610); +INSERT INTO "trip" VALUES(911638,298,'8/31/2015 6:32','2nd at Folsom',62,'8/31/2015 6:37','San Francisco Caltrain 2 (330 Townsend)',69,521,'Subscriber',94107); +INSERT INTO "trip" VALUES(911639,264,'8/31/2015 6:33','Commercial at Montgomery',45,'8/31/2015 6:37','Howard at 2nd',63,620,'Subscriber',94107); +INSERT INTO "trip" VALUES(911640,704,'8/31/2015 6:38','Japantown',9,'8/31/2015 6:49','San Jose Diridon Caltrain Station',2,688,'Subscriber',94111); +INSERT INTO "trip" VALUES(911642,488,'8/31/2015 6:39','Davis at Jackson',42,'8/31/2015 6:47','Post at Kearny',47,456,'Subscriber',94111); +INSERT INTO "trip" VALUES(911643,321,'8/31/2015 6:39','Santa Clara at Almaden',4,'8/31/2015 6:45','San Jose Diridon Caltrain Station',2,32,'Subscriber',95110); +INSERT INTO "trip" VALUES(911644,513,'8/31/2015 6:39','Spear at Folsom',49,'8/31/2015 6:48','5th at Howard',57,317,'Subscriber',94103); +INSERT INTO "trip" VALUES(911645,704,'8/31/2015 6:40','Davis at Jackson',42,'8/31/2015 6:52','San Francisco Caltrain (Townsend at 4th)',70,390,'Subscriber',94111); +INSERT INTO "trip" VALUES(911646,493,'8/31/2015 6:42','Paseo de San Antonio',7,'8/31/2015 6:50','San Jose Diridon Caltrain Station',2,679,'Subscriber',95113); +INSERT INTO "trip" VALUES(911647,625,'8/31/2015 6:44','MLK Library',11,'8/31/2015 6:54','San Jose Diridon Caltrain Station',2,74,'Customer',95112); +INSERT INTO "trip" VALUES(911649,713,'8/31/2015 6:44','San Francisco Caltrain 2 (330 Townsend)',69,'8/31/2015 6:56','Market at 10th',67,622,'Subscriber',94582); +INSERT INTO "trip" VALUES(911650,561,'8/31/2015 6:45','San Francisco Caltrain 2 (330 Townsend)',69,'8/31/2015 6:54','Market at Sansome',77,521,'Subscriber',94303); +INSERT INTO "trip" VALUES(911653,511,'8/31/2015 6:45','San Francisco Caltrain (Townsend at 4th)',70,'8/31/2015 6:54','Post at Kearny',47,391,'Subscriber',94002); +INSERT INTO "trip" VALUES(911654,789,'8/31/2015 6:45','San Francisco Caltrain (Townsend at 4th)',70,'8/31/2015 6:58','Temporary Transbay Terminal (Howard at Beale)',55,347,'Subscriber',94030); +INSERT INTO "trip" VALUES(911655,802,'8/31/2015 6:45','San Francisco Caltrain (Townsend at 4th)',70,'8/31/2015 6:58','Harry Bridges Plaza (Ferry Building)',50,564,'Subscriber',94065); +INSERT INTO "trip" VALUES(911656,592,'8/31/2015 6:45','San Francisco Caltrain (Townsend at 4th)',70,'8/31/2015 6:55','Harry Bridges Plaza (Ferry Building)',50,630,'Subscriber',94111); +INSERT INTO "trip" VALUES(911657,722,'8/31/2015 6:46','San Francisco Caltrain (Townsend at 4th)',70,'8/31/2015 6:58','Steuart at Market',74,67,'Subscriber',95111); +INSERT INTO "trip" VALUES(911660,1044,'8/31/2015 6:47','San Francisco Caltrain 2 (330 Townsend)',69,'8/31/2015 7:05','Embarcadero at Sansome',60,387,'Subscriber',95129); +INSERT INTO "trip" VALUES(911661,199,'8/31/2015 6:48','Davis at Jackson',42,'8/31/2015 6:51','Commercial at Montgomery',45,33,'Subscriber',94111); +INSERT INTO "trip" VALUES(911664,313,'8/31/2015 6:49','Evelyn Park and Ride',30,'8/31/2015 6:55','Mountain View Caltrain Station',28,228,'Subscriber',94087); +INSERT INTO "trip" VALUES(911667,482,'8/31/2015 6:50','Temporary Transbay Terminal (Howard at Beale)',55,'8/31/2015 6:58','Market at 4th',76,407,'Subscriber',94501); +INSERT INTO "trip" VALUES(911668,273,'8/31/2015 6:52','Temporary Transbay Terminal (Howard at Beale)',55,'8/31/2015 6:56','Yerba Buena Center of the Arts (3rd @ Howard)',68,544,'Subscriber',94618); +INSERT INTO "trip" VALUES(911671,1326,'8/31/2015 6:52','Grant Avenue at Columbus Avenue',73,'8/31/2015 7:14','San Francisco Caltrain (Townsend at 4th)',70,479,'Subscriber',94133); +INSERT INTO "trip" VALUES(911675,312,'8/31/2015 6:55','Market at Sansome',77,'8/31/2015 7:00','2nd at South Park',64,557,'Subscriber',95973); +INSERT INTO "trip" VALUES(911677,512,'8/31/2015 6:56','Temporary Transbay Terminal (Howard at Beale)',55,'8/31/2015 7:05','Embarcadero at Sansome',60,555,'Subscriber',94105); +INSERT INTO "trip" VALUES(911680,772,'8/31/2015 6:57','Grant Avenue at Columbus Avenue',73,'8/31/2015 7:10','San Francisco Caltrain (Townsend at 4th)',70,494,'Subscriber',94133); +INSERT INTO "trip" VALUES(911681,463,'8/31/2015 6:58','Grant Avenue at Columbus Avenue',73,'8/31/2015 7:06','Mechanics Plaza (Market at Battery)',75,109,'Subscriber',94133); +INSERT INTO "trip" VALUES(911682,245,'8/31/2015 6:58','San Jose Diridon Caltrain Station',2,'8/31/2015 7:02','Santa Clara at Almaden',4,688,'Subscriber',95020); +INSERT INTO "trip" VALUES(911685,582,'8/31/2015 6:58','2nd at Folsom',62,'8/31/2015 7:08','Civic Center BART (7th at Market)',72,269,'Subscriber',94105); +INSERT INTO "trip" VALUES(911687,364,'8/31/2015 7:02','San Francisco Caltrain 2 (330 Townsend)',69,'8/31/2015 7:08','Howard at 2nd',63,401,'Subscriber',94107); +INSERT INTO "trip" VALUES(911688,1516,'8/31/2015 7:02','Davis at Jackson',42,'8/31/2015 7:28','Clay at Battery',41,507,'Subscriber',94111); +INSERT INTO "trip" VALUES(911689,322,'8/31/2015 7:03','2nd at Townsend',61,'8/31/2015 7:09','San Francisco Caltrain (Townsend at 4th)',70,576,'Subscriber',94043); +INSERT INTO "trip" VALUES(911690,449,'8/31/2015 7:04','Temporary Transbay Terminal (Howard at Beale)',55,'8/31/2015 7:11','Commercial at Montgomery',45,439,'Subscriber',94611); +INSERT INTO "trip" VALUES(911691,891,'8/31/2015 7:04','Steuart at Market',74,'8/31/2015 7:19','Townsend at 7th',65,611,'Subscriber',94501); +INSERT INTO "trip" VALUES(911692,522,'8/31/2015 7:05','San Francisco Caltrain 2 (330 Townsend)',69,'8/31/2015 7:14','Beale at Market',56,16,'Subscriber',95136); +INSERT INTO "trip" VALUES(911693,1149,'8/31/2015 7:05','San Francisco Caltrain (Townsend at 4th)',70,'8/31/2015 7:24','Embarcadero at Sansome',60,390,'Subscriber',95111); +INSERT INTO "trip" VALUES(911694,509,'8/31/2015 7:06','San Francisco Caltrain (Townsend at 4th)',70,'8/31/2015 7:14','Howard at 2nd',63,189,'Subscriber',94062); +INSERT INTO "trip" VALUES(911695,642,'8/31/2015 7:06','Temporary Transbay Terminal (Howard at Beale)',55,'8/31/2015 7:17','Civic Center BART (7th at Market)',72,493,'Subscriber',94710); +INSERT INTO "trip" VALUES(911696,751,'8/31/2015 7:07','Golden Gate at Polk',59,'8/31/2015 7:19','Spear at Folsom',49,559,'Subscriber',94109); +INSERT INTO "trip" VALUES(911697,937,'8/31/2015 7:07','San Francisco Caltrain (Townsend at 4th)',70,'8/31/2015 7:23','Clay at Battery',41,502,'Subscriber',94402); +INSERT INTO "trip" VALUES(911698,466,'8/31/2015 7:07','Civic Center BART (7th at Market)',72,'8/31/2015 7:15','Townsend at 7th',65,320,'Subscriber',94582); +INSERT INTO "trip" VALUES(911699,638,'8/31/2015 7:07','Temporary Transbay Terminal (Howard at Beale)',55,'8/31/2015 7:17','Embarcadero at Sansome',60,419,'Customer',94501); +INSERT INTO "trip" VALUES(911700,692,'8/31/2015 7:07','San Francisco Caltrain (Townsend at 4th)',70,'8/31/2015 7:19','Post at Kearny',47,629,'Subscriber',94401); +INSERT INTO "trip" VALUES(911701,1398,'8/31/2015 7:07','Palo Alto Caltrain Station',34,'8/31/2015 7:30','Stanford in Redwood City',25,230,'Subscriber',95131); +INSERT INTO "trip" VALUES(911702,474,'8/31/2015 7:07','Civic Center BART (7th at Market)',72,'8/31/2015 7:15','Townsend at 7th',65,463,'Subscriber',94601); +INSERT INTO "trip" VALUES(911703,660,'8/31/2015 7:08','San Francisco Caltrain (Townsend at 4th)',70,'8/31/2015 7:19','Harry Bridges Plaza (Ferry Building)',50,455,'Subscriber',94402); +INSERT INTO "trip" VALUES(911705,808,'8/31/2015 7:13','San Francisco Caltrain (Townsend at 4th)',70,'8/31/2015 7:27','Market at 10th',67,576,'Subscriber',94306); +INSERT INTO "trip" VALUES(911706,448,'8/31/2015 7:14','2nd at Townsend',61,'8/31/2015 7:21','Market at Sansome',77,334,'Subscriber',94107); +INSERT INTO "trip" VALUES(911707,626,'8/31/2015 7:15','South Van Ness at Market',66,'8/31/2015 7:26','Commercial at Montgomery',45,362,'Subscriber',94002); +INSERT INTO "trip" VALUES(911708,632,'8/31/2015 7:16','Embarcadero at Folsom',51,'8/31/2015 7:27','San Francisco Caltrain (Townsend at 4th)',70,327,'Subscriber',94501); +INSERT INTO "trip" VALUES(911709,447,'8/31/2015 7:17','Harry Bridges Plaza (Ferry Building)',50,'8/31/2015 7:24','Howard at 2nd',63,630,'Subscriber',94954); +INSERT INTO "trip" VALUES(911710,447,'8/31/2015 7:17','Clay at Battery',41,'8/31/2015 7:25','Spear at Folsom',49,342,'Subscriber',94111); +INSERT INTO "trip" VALUES(911711,175,'8/31/2015 7:17','Market at 4th',76,'8/31/2015 7:20','Market at Sansome',77,659,'Subscriber',94107); +INSERT INTO "trip" VALUES(911712,474,'8/31/2015 7:17','Steuart at Market',74,'8/31/2015 7:25','2nd at Townsend',61,321,'Subscriber',94588); +INSERT INTO "trip" VALUES(911713,293,'8/31/2015 7:18','Harry Bridges Plaza (Ferry Building)',50,'8/31/2015 7:23','Embarcadero at Sansome',60,564,'Subscriber',94588); +INSERT INTO "trip" VALUES(911714,1380,'8/31/2015 7:19','San Francisco Caltrain (Townsend at 4th)',70,'8/31/2015 7:42','Embarcadero at Vallejo',48,504,'Customer',94023); +INSERT INTO "trip" VALUES(911715,207,'8/31/2015 7:20','Townsend at 7th',65,'8/31/2015 7:23','San Francisco Caltrain 2 (330 Townsend)',69,260,'Subscriber',94107); +INSERT INTO "trip" VALUES(911716,279,'8/31/2015 7:20','Embarcadero at Sansome',60,'8/31/2015 7:24','Clay at Battery',41,555,'Subscriber',94133); +INSERT INTO "trip" VALUES(911717,581,'8/31/2015 7:20','Market at 10th',67,'8/31/2015 7:29','Market at Sansome',77,622,'Subscriber',94103); +INSERT INTO "trip" VALUES(911718,636,'8/31/2015 7:20','Ryland Park',84,'8/31/2015 7:31','San Jose Diridon Caltrain Station',2,95,'Subscriber',94040); +INSERT INTO "trip" VALUES(911719,358,'8/31/2015 7:21','San Francisco Caltrain 2 (330 Townsend)',69,'8/31/2015 7:27','2nd at Folsom',62,575,'Subscriber',94403); +INSERT INTO "trip" VALUES(911720,739,'8/31/2015 7:22','San Francisco Caltrain (Townsend at 4th)',70,'8/31/2015 7:34','Clay at Battery',41,531,'Subscriber',94025); +INSERT INTO "trip" VALUES(911721,609,'8/31/2015 7:22','Steuart at Market',74,'8/31/2015 7:32','Yerba Buena Center of the Arts (3rd @ Howard)',68,420,'Customer',90007); +INSERT INTO "trip" VALUES(911722,454,'8/31/2015 7:22','San Francisco Caltrain (Townsend at 4th)',70,'8/31/2015 7:30','Embarcadero at Folsom',51,494,'Subscriber',94062); +INSERT INTO "trip" VALUES(911723,716,'8/31/2015 7:23','San Francisco Caltrain 2 (330 Townsend)',69,'8/31/2015 7:35','Davis at Jackson',42,418,'Subscriber',94025); +INSERT INTO "trip" VALUES(911724,633,'8/31/2015 7:23','Temporary Transbay Terminal (Howard at Beale)',55,'8/31/2015 7:34','San Francisco City Hall',58,480,'Subscriber',94530); +INSERT INTO "trip" VALUES(911725,728,'8/31/2015 7:24','San Francisco Caltrain (Townsend at 4th)',70,'8/31/2015 7:36','Powell Street BART',39,631,'Subscriber',94102); +INSERT INTO "trip" VALUES(911726,669,'8/31/2015 7:24','San Francisco Caltrain (Townsend at 4th)',70,'8/31/2015 7:36','Temporary Transbay Terminal (Howard at Beale)',55,498,'Subscriber',94025); +INSERT INTO "trip" VALUES(911727,557,'8/31/2015 7:24','Embarcadero at Sansome',60,'8/31/2015 7:34','Beale at Market',56,613,'Subscriber',94111); +INSERT INTO "trip" VALUES(911728,422,'8/31/2015 7:25','Market at Sansome',77,'8/31/2015 7:32','2nd at South Park',64,412,'Subscriber',94549); +INSERT INTO "trip" VALUES(911729,279,'8/31/2015 7:25','Harry Bridges Plaza (Ferry Building)',50,'8/31/2015 7:30','Embarcadero at Sansome',60,455,'Subscriber',94124); +INSERT INTO "trip" VALUES(911730,697,'8/31/2015 7:25','San Francisco Caltrain 2 (330 Townsend)',69,'8/31/2015 7:37','Market at 10th',67,540,'Subscriber',94025); +INSERT INTO "trip" VALUES(911731,618,'8/31/2015 7:26','Temporary Transbay Terminal (Howard at Beale)',55,'8/31/2015 7:36','San Francisco Caltrain (Townsend at 4th)',70,347,'Subscriber',94530); +INSERT INTO "trip" VALUES(911732,259,'8/31/2015 7:26','Townsend at 7th',65,'8/31/2015 7:30','San Francisco Caltrain 2 (330 Townsend)',69,463,'Subscriber',94107); +INSERT INTO "trip" VALUES(911733,186,'8/31/2015 7:27','Spear at Folsom',49,'8/31/2015 7:30','Steuart at Market',74,559,'Subscriber',94105); +INSERT INTO "trip" VALUES(911734,536,'8/31/2015 7:28','Embarcadero at Bryant',54,'8/31/2015 7:37','San Francisco Caltrain (Townsend at 4th)',70,607,'Subscriber',94105); +INSERT INTO "trip" VALUES(911735,698,'8/31/2015 7:28','Broadway St at Battery St',82,'8/31/2015 7:40','San Francisco Caltrain (Townsend at 4th)',70,392,'Subscriber',94133); +INSERT INTO "trip" VALUES(911736,433,'8/31/2015 7:29','Powell at Post (Union Square)',71,'8/31/2015 7:36','Harry Bridges Plaza (Ferry Building)',50,578,'Subscriber',94111); +INSERT INTO "trip" VALUES(911738,588,'8/31/2015 7:29','5th at Howard',57,'8/31/2015 7:39','Harry Bridges Plaza (Ferry Building)',50,636,'Subscriber',94107); +INSERT INTO "trip" VALUES(911739,357,'8/31/2015 7:30','Powell at Post (Union Square)',71,'8/31/2015 7:36','Howard at 2nd',63,354,'Subscriber',94109); +INSERT INTO "trip" VALUES(911740,307,'8/31/2015 7:31','Grant Avenue at Columbus Avenue',73,'8/31/2015 7:36','Commercial at Montgomery',45,533,'Subscriber',94103); +INSERT INTO "trip" VALUES(911743,614,'8/31/2015 7:31','Harry Bridges Plaza (Ferry Building)',50,'8/31/2015 7:41','Yerba Buena Center of the Arts (3rd @ Howard)',68,441,'Subscriber',94107); +INSERT INTO "trip" VALUES(911744,388,'8/31/2015 7:32','San Jose Diridon Caltrain Station',2,'8/31/2015 7:38','San Pedro Square',6,95,'Subscriber',94110); +INSERT INTO "trip" VALUES(911745,769,'8/31/2015 7:32','Market at 10th',67,'8/31/2015 7:45','Washington at Kearny',46,372,'Subscriber',94102); +INSERT INTO "trip" VALUES(911748,803,'8/31/2015 7:32','Redwood City Caltrain Station',22,'8/31/2015 7:46','Stanford in Redwood City',25,196,'Subscriber',94115); +INSERT INTO "trip" VALUES(911749,790,'8/31/2015 7:32','Redwood City Caltrain Station',22,'8/31/2015 7:46','Stanford in Redwood City',25,671,'Subscriber',94110); +INSERT INTO "trip" VALUES(911750,710,'8/31/2015 7:32','Mechanics Plaza (Market at Battery)',75,'8/31/2015 7:44','Golden Gate at Polk',59,284,'Subscriber',94602); +INSERT INTO "trip" VALUES(911751,611,'8/31/2015 7:33','Harry Bridges Plaza (Ferry Building)',50,'8/31/2015 7:43','5th at Howard',57,592,'Subscriber',94925); +INSERT INTO "trip" VALUES(911752,519,'8/31/2015 7:33','Market at 10th',67,'8/31/2015 7:42','Market at Sansome',77,576,'Subscriber',94102); +INSERT INTO "trip" VALUES(911753,537,'8/31/2015 7:33','Market at 10th',67,'8/31/2015 7:42','Townsend at 7th',65,458,'Subscriber',94102); +INSERT INTO "trip" VALUES(911754,440,'8/31/2015 7:33','Market at Sansome',77,'8/31/2015 7:41','2nd at Townsend',61,334,'Subscriber',94706); +INSERT INTO "trip" VALUES(911757,298,'8/31/2015 7:34','5th at Howard',57,'8/31/2015 7:39','San Francisco Caltrain 2 (330 Townsend)',69,350,'Subscriber',94103); +INSERT INTO "trip" VALUES(911760,761,'8/31/2015 7:35','Redwood City Caltrain Station',22,'8/31/2015 7:48','Stanford in Redwood City',25,215,'Subscriber',95037); +INSERT INTO "trip" VALUES(911761,1026,'8/31/2015 7:36','Grant Avenue at Columbus Avenue',73,'8/31/2015 7:53','San Francisco Caltrain (Townsend at 4th)',70,415,'Subscriber',94133); +INSERT INTO "trip" VALUES(911762,219,'8/31/2015 7:36','Howard at 2nd',63,'8/31/2015 7:40','5th at Howard',57,496,'Subscriber',94501); +INSERT INTO "trip" VALUES(911763,886,'8/31/2015 7:37','Clay at Battery',41,'8/31/2015 7:51','San Francisco Caltrain (Townsend at 4th)',70,290,'Subscriber',94111); +INSERT INTO "trip" VALUES(911764,607,'8/31/2015 7:37','MLK Library',11,'8/31/2015 7:47','San Jose Diridon Caltrain Station',2,37,'Subscriber',95113); +INSERT INTO "trip" VALUES(911765,383,'8/31/2015 7:37','Civic Center BART (7th at Market)',72,'8/31/2015 7:43','Townsend at 7th',65,535,'Subscriber',94582); +INSERT INTO "trip" VALUES(911767,1567,'8/31/2015 7:38','Harry Bridges Plaza (Ferry Building)',50,'8/31/2015 8:04','2nd at Townsend',61,578,'Subscriber',94960); +INSERT INTO "trip" VALUES(911768,407,'8/31/2015 7:38','Embarcadero at Folsom',51,'8/31/2015 7:44','2nd at Townsend',61,191,'Subscriber',94945); +INSERT INTO "trip" VALUES(911769,111,'8/31/2015 7:39','Howard at 2nd',63,'8/31/2015 7:40','Market at Sansome',77,189,'Subscriber',94107); +INSERT INTO "trip" VALUES(911770,253,'8/31/2015 7:39','Mountain View Caltrain Station',28,'8/31/2015 7:43','Mountain View City Hall',27,228,'Subscriber',93950); +INSERT INTO "trip" VALUES(911771,511,'8/31/2015 7:39','Spear at Folsom',49,'8/31/2015 7:47','San Francisco Caltrain (Townsend at 4th)',70,289,'Subscriber',94301); +INSERT INTO "trip" VALUES(911772,507,'8/31/2015 7:39','MLK Library',11,'8/31/2015 7:47','San Jose Diridon Caltrain Station',2,168,'Subscriber',95112); +INSERT INTO "trip" VALUES(911773,567,'8/31/2015 7:39','5th at Howard',57,'8/31/2015 7:48','Townsend at 7th',65,317,'Subscriber',94103); +INSERT INTO "trip" VALUES(911774,799,'8/31/2015 7:39','SJSU - San Salvador at 9th',16,'8/31/2015 7:52','San Jose Diridon Caltrain Station',2,656,'Subscriber',95112); +INSERT INTO "trip" VALUES(911776,978,'8/31/2015 7:42','Temporary Transbay Terminal (Howard at Beale)',55,'8/31/2015 7:58','Market at 10th',67,498,'Subscriber',94618); +INSERT INTO "trip" VALUES(911777,318,'8/31/2015 7:42','Mountain View City Hall',27,'8/31/2015 7:47','Mountain View Caltrain Station',28,197,'Subscriber',94041); +INSERT INTO "trip" VALUES(911778,170,'8/31/2015 7:43','Townsend at 7th',65,'8/31/2015 7:46','San Francisco Caltrain 2 (330 Townsend)',69,458,'Subscriber',94103); +INSERT INTO "trip" VALUES(911780,479,'8/31/2015 7:44','Market at 10th',67,'8/31/2015 7:52','San Francisco Caltrain 2 (330 Townsend)',69,322,'Subscriber',94102); +INSERT INTO "trip" VALUES(911781,439,'8/31/2015 7:44','San Jose Diridon Caltrain Station',2,'8/31/2015 7:52','San Pedro Square',6,679,'Subscriber',94002); +INSERT INTO "trip" VALUES(911782,229,'8/31/2015 7:45','Commercial at Montgomery',45,'8/31/2015 7:49','Davis at Jackson',42,439,'Subscriber',94111); +INSERT INTO "trip" VALUES(911783,867,'8/31/2015 7:45','Steuart at Market',74,'8/31/2015 8:00','Townsend at 7th',65,311,'Subscriber',94965); +INSERT INTO "trip" VALUES(911784,497,'8/31/2015 7:45','Grant Avenue at Columbus Avenue',73,'8/31/2015 7:54','Powell Street BART',39,601,'Subscriber',94133); +INSERT INTO "trip" VALUES(911785,541,'8/31/2015 7:46','San Francisco Caltrain (Townsend at 4th)',70,'8/31/2015 7:55','Civic Center BART (7th at Market)',72,525,'Customer',78233); +INSERT INTO "trip" VALUES(911786,692,'8/31/2015 7:46','South Van Ness at Market',66,'8/31/2015 7:58','Townsend at 7th',65,96,'Subscriber',94102); +INSERT INTO "trip" VALUES(911787,781,'8/31/2015 7:46','San Francisco Caltrain 2 (330 Townsend)',69,'8/31/2015 7:59','Harry Bridges Plaza (Ferry Building)',50,463,'Subscriber',94107); +INSERT INTO "trip" VALUES(911788,265,'8/31/2015 7:47','Evelyn Park and Ride',30,'8/31/2015 7:51','Mountain View Caltrain Station',28,192,'Subscriber',94041); +INSERT INTO "trip" VALUES(911789,191,'8/31/2015 7:47','Mountain View Caltrain Station',28,'8/31/2015 7:50','Evelyn Park and Ride',30,706,'Subscriber',94111); +INSERT INTO "trip" VALUES(911791,658,'8/31/2015 7:49','Market at 10th',67,'8/31/2015 8:00','San Francisco Caltrain 2 (330 Townsend)',69,540,'Subscriber',94103); +INSERT INTO "trip" VALUES(911792,278,'8/31/2015 7:49','Castro Street and El Camino Real',32,'8/31/2015 7:54','Mountain View Caltrain Station',28,46,'Subscriber',94022); +INSERT INTO "trip" VALUES(911793,578,'8/31/2015 7:49','San Francisco Caltrain (Townsend at 4th)',70,'8/31/2015 7:59','Harry Bridges Plaza (Ferry Building)',50,327,'Subscriber',94002); +INSERT INTO "trip" VALUES(911794,978,'8/31/2015 7:50','Harry Bridges Plaza (Ferry Building)',50,'8/31/2015 8:06','Townsend at 7th',65,509,'Subscriber',94568); +INSERT INTO "trip" VALUES(911795,105,'8/31/2015 7:50','Davis at Jackson',42,'8/31/2015 7:51','Broadway St at Battery St',82,439,'Subscriber',94618); +INSERT INTO "trip" VALUES(911796,535,'8/31/2015 7:50','San Francisco Caltrain (Townsend at 4th)',70,'8/31/2015 7:59','Beale at Market',56,392,'Subscriber',94303); +INSERT INTO "trip" VALUES(911797,630,'8/31/2015 7:50','San Francisco Caltrain (Townsend at 4th)',70,'8/31/2015 8:01','Mechanics Plaza (Market at Battery)',75,347,'Subscriber',94040); +INSERT INTO "trip" VALUES(911798,782,'8/31/2015 7:50','San Francisco Caltrain 2 (330 Townsend)',69,'8/31/2015 8:03','Market at 10th',67,458,'Subscriber',95122); +INSERT INTO "trip" VALUES(911799,335,'8/31/2015 7:51','San Francisco Caltrain 2 (330 Townsend)',69,'8/31/2015 7:56','Townsend at 7th',65,350,'Subscriber',94103); +INSERT INTO "trip" VALUES(911800,1083,'8/31/2015 7:51','San Francisco Caltrain (Townsend at 4th)',70,'8/31/2015 8:09','Golden Gate at Polk',59,607,'Subscriber',94087); +INSERT INTO "trip" VALUES(911801,560,'8/31/2015 7:51','Embarcadero at Folsom',51,'8/31/2015 8:00','San Francisco Caltrain (Townsend at 4th)',70,494,'Subscriber',94105); +INSERT INTO "trip" VALUES(911802,681,'8/31/2015 7:51','Golden Gate at Polk',59,'8/31/2015 8:03','San Francisco Caltrain 2 (330 Townsend)',69,282,'Subscriber',94109); +INSERT INTO "trip" VALUES(911803,730,'8/31/2015 7:51','San Francisco Caltrain (Townsend at 4th)',70,'8/31/2015 8:04','Steuart at Market',74,479,'Subscriber',95134); +INSERT INTO "trip" VALUES(911804,381,'8/31/2015 7:51','San Jose Diridon Caltrain Station',2,'8/31/2015 7:58','San Pedro Square',6,168,'Subscriber',95377); +INSERT INTO "trip" VALUES(911806,534,'8/31/2015 7:52','San Francisco Caltrain (Townsend at 4th)',70,'8/31/2015 8:01','Embarcadero at Folsom',51,598,'Subscriber',94070); +INSERT INTO "trip" VALUES(911807,264,'8/31/2015 7:52','Mountain View Caltrain Station',28,'8/31/2015 7:56','Castro Street and El Camino Real',32,147,'Subscriber',94118); +INSERT INTO "trip" VALUES(911808,274,'8/31/2015 7:52','San Francisco Caltrain 2 (330 Townsend)',69,'8/31/2015 7:56','Townsend at 7th',65,558,'Subscriber',94043); +INSERT INTO "trip" VALUES(911810,411,'8/31/2015 7:52','Powell at Post (Union Square)',71,'8/31/2015 7:59','Steuart at Market',74,356,'Subscriber',94108); +INSERT INTO "trip" VALUES(911811,917,'8/31/2015 7:53','San Francisco Caltrain (Townsend at 4th)',70,'8/31/2015 8:09','Clay at Battery',41,556,'Subscriber',95110); +INSERT INTO "trip" VALUES(911812,914,'8/31/2015 7:54','Howard at 2nd',63,'8/31/2015 8:09','Townsend at 7th',65,630,'Subscriber',94618); +INSERT INTO "trip" VALUES(911813,679,'8/31/2015 7:54','San Francisco Caltrain (Townsend at 4th)',70,'8/31/2015 8:05','Temporary Transbay Terminal (Howard at Beale)',55,415,'Subscriber',94030); +INSERT INTO "trip" VALUES(911814,300,'8/31/2015 7:54','Golden Gate at Polk',59,'8/31/2015 7:59','Market at 4th',76,621,'Subscriber',94109); +INSERT INTO "trip" VALUES(911815,786,'8/31/2015 7:55','Steuart at Market',74,'8/31/2015 8:08','Townsend at 7th',65,426,'Subscriber',94105); +INSERT INTO "trip" VALUES(911816,775,'8/31/2015 7:55','San Francisco Caltrain 2 (330 Townsend)',69,'8/31/2015 8:08','South Van Ness at Market',66,322,'Subscriber',95030); +INSERT INTO "trip" VALUES(911818,154,'8/31/2015 7:55','Market at 4th',76,'8/31/2015 7:58','Yerba Buena Center of the Arts (3rd @ Howard)',68,572,'Subscriber',94707); +INSERT INTO "trip" VALUES(911819,595,'8/31/2015 7:55','San Francisco Caltrain 2 (330 Townsend)',69,'8/31/2015 8:05','Steuart at Market',74,423,'Subscriber',94005); +INSERT INTO "trip" VALUES(911820,394,'8/31/2015 7:55','Embarcadero at Bryant',54,'8/31/2015 8:02','San Francisco Caltrain (Townsend at 4th)',70,406,'Subscriber',94105); +INSERT INTO "trip" VALUES(911821,591,'8/31/2015 7:56','San Francisco Caltrain 2 (330 Townsend)',69,'8/31/2015 8:06','Steuart at Market',74,260,'Subscriber',94002); +INSERT INTO "trip" VALUES(911822,813,'8/31/2015 7:56','San Francisco Caltrain 2 (330 Townsend)',69,'8/31/2015 8:10','Embarcadero at Vallejo',48,512,'Subscriber',94025); +INSERT INTO "trip" VALUES(911823,525,'8/31/2015 7:57','Temporary Transbay Terminal (Howard at Beale)',55,'8/31/2015 8:06','Market at 4th',76,187,'Subscriber',94501); +INSERT INTO "trip" VALUES(911824,2095,'8/31/2015 7:58','Spear at Folsom',49,'8/31/2015 8:33','Embarcadero at Vallejo',48,259,'Subscriber',94105); +INSERT INTO "trip" VALUES(911825,482,'8/31/2015 7:59','Steuart at Market',74,'8/31/2015 8:07','2nd at Townsend',61,559,'Subscriber',94563); +INSERT INTO "trip" VALUES(911826,561,'8/31/2015 7:59','Beale at Market',56,'8/31/2015 8:08','Embarcadero at Sansome',60,318,'Subscriber',94549); +INSERT INTO "trip" VALUES(911827,371,'8/31/2015 7:58','Embarcadero at Sansome',60,'8/31/2015 8:05','Steuart at Market',74,503,'Subscriber',94133); +INSERT INTO "trip" VALUES(911828,525,'8/31/2015 8:00','2nd at Folsom',62,'8/31/2015 8:09','San Francisco Caltrain (Townsend at 4th)',70,402,'Subscriber',94549); +INSERT INTO "trip" VALUES(911829,609,'8/31/2015 8:00','Powell at Post (Union Square)',71,'8/31/2015 8:10','San Francisco Caltrain (Townsend at 4th)',70,400,'Subscriber',94108); +INSERT INTO "trip" VALUES(911831,338,'8/31/2015 8:01','Steuart at Market',74,'8/31/2015 8:07','Embarcadero at Sansome',60,549,'Subscriber',94565); +INSERT INTO "trip" VALUES(911832,135,'8/31/2015 8:01','Market at Sansome',77,'8/31/2015 8:03','Howard at 2nd',63,604,'Subscriber',94114); +INSERT INTO "trip" VALUES(911833,295,'8/31/2015 8:01','Powell Street BART',39,'8/31/2015 8:06','Market at 10th',67,69,'Subscriber',94107); +INSERT INTO "trip" VALUES(911835,542,'8/31/2015 8:01','Harry Bridges Plaza (Ferry Building)',50,'8/31/2015 8:10','2nd at South Park',64,327,'Subscriber',94510); +INSERT INTO "trip" VALUES(911836,445,'8/31/2015 8:01','Harry Bridges Plaza (Ferry Building)',50,'8/31/2015 8:09','2nd at Folsom',62,371,'Subscriber',94558); +INSERT INTO "trip" VALUES(911839,542,'8/31/2015 8:02','Howard at 2nd',63,'8/31/2015 8:11','San Francisco Caltrain (Townsend at 4th)',70,620,'Subscriber',94105); +INSERT INTO "trip" VALUES(911841,625,'8/31/2015 8:03','Steuart at Market',74,'8/31/2015 8:13','San Francisco Caltrain (Townsend at 4th)',70,67,'Subscriber',94601); +INSERT INTO "trip" VALUES(911843,791,'8/31/2015 8:02','San Francisco Caltrain (Townsend at 4th)',70,'8/31/2015 8:16','Embarcadero at Vallejo',48,290,'Subscriber',94065); +INSERT INTO "trip" VALUES(911844,917,'8/31/2015 8:03','San Francisco Caltrain 2 (330 Townsend)',69,'8/31/2015 8:18','Washington at Kearny',46,540,'Subscriber',94087); +INSERT INTO "trip" VALUES(911845,751,'8/31/2015 8:03','San Francisco Caltrain (Townsend at 4th)',70,'8/31/2015 8:16','Embarcadero at Folsom',51,494,'Subscriber',95131); +INSERT INTO "trip" VALUES(911846,344,'8/31/2015 8:03','Powell at Post (Union Square)',71,'8/31/2015 8:09','Howard at 2nd',63,158,'Subscriber',94108); +INSERT INTO "trip" VALUES(911848,798,'8/31/2015 8:03','San Francisco Caltrain (Townsend at 4th)',70,'8/31/2015 8:17','Market at 10th',67,406,'Subscriber',94401); +INSERT INTO "trip" VALUES(911850,710,'8/31/2015 8:04','San Francisco Caltrain 2 (330 Townsend)',69,'8/31/2015 8:15','Embarcadero at Folsom',51,603,'Subscriber',94085); +INSERT INTO "trip" VALUES(911851,452,'8/31/2015 8:04','San Francisco Caltrain (Townsend at 4th)',70,'8/31/2015 8:11','Powell Street BART',39,111,'Subscriber',94070); +INSERT INTO "trip" VALUES(911852,428,'8/31/2015 8:04','Commercial at Montgomery',45,'8/31/2015 8:11','Davis at Jackson',42,331,'Subscriber',94111); +INSERT INTO "trip" VALUES(911853,399,'8/31/2015 8:04','San Francisco Caltrain (Townsend at 4th)',70,'8/31/2015 8:10','5th at Howard',57,552,'Subscriber',94303); +INSERT INTO "trip" VALUES(911854,448,'8/31/2015 8:04','Temporary Transbay Terminal (Howard at Beale)',55,'8/31/2015 8:11','Embarcadero at Vallejo',48,320,'Subscriber',94611); +INSERT INTO "trip" VALUES(911855,337,'8/31/2015 8:05','Grant Avenue at Columbus Avenue',73,'8/31/2015 8:10','Market at Sansome',77,66,'Subscriber',94133); +INSERT INTO "trip" VALUES(911856,396,'8/31/2015 8:05','Harry Bridges Plaza (Ferry Building)',50,'8/31/2015 8:11','2nd at Folsom',62,709,'Subscriber',94949); +INSERT INTO "trip" VALUES(911857,752,'8/31/2015 8:05','San Francisco Caltrain 2 (330 Townsend)',69,'8/31/2015 8:17','Davis at Jackson',42,282,'Subscriber',95014); +INSERT INTO "trip" VALUES(911858,321,'8/31/2015 8:05','Harry Bridges Plaza (Ferry Building)',50,'8/31/2015 8:11','Embarcadero at Sansome',60,497,'Subscriber',94568); +INSERT INTO "trip" VALUES(911859,533,'8/31/2015 8:05','Harry Bridges Plaza (Ferry Building)',50,'8/31/2015 8:14','2nd at Townsend',61,636,'Subscriber',94949); +INSERT INTO "trip" VALUES(911860,473,'8/31/2015 8:06','San Francisco Caltrain 2 (330 Townsend)',69,'8/31/2015 8:14','Yerba Buena Center of the Arts (3rd @ Howard)',68,359,'Subscriber',94087); +INSERT INTO "trip" VALUES(911861,232,'8/31/2015 8:06','San Francisco Caltrain (Townsend at 4th)',70,'8/31/2015 8:10','Townsend at 7th',65,267,'Subscriber',94063); +INSERT INTO "trip" VALUES(911862,312,'8/31/2015 8:06','2nd at South Park',64,'8/31/2015 8:11','Post at Kearny',47,557,'Subscriber',94107); +INSERT INTO "trip" VALUES(911863,292,'8/31/2015 8:06','San Francisco Caltrain 2 (330 Townsend)',69,'8/31/2015 8:11','Townsend at 7th',65,514,'Subscriber',94301); +INSERT INTO "trip" VALUES(911864,723,'8/31/2015 8:06','San Francisco Caltrain 2 (330 Townsend)',69,'8/31/2015 8:18','Temporary Transbay Terminal (Howard at Beale)',55,461,'Subscriber',95008); +INSERT INTO "trip" VALUES(911865,804,'8/31/2015 8:07','Embarcadero at Sansome',60,'8/31/2015 8:20','Powell Street BART',39,434,'Subscriber',94133); +INSERT INTO "trip" VALUES(911866,533,'8/31/2015 8:06','San Francisco Caltrain 2 (330 Townsend)',69,'8/31/2015 8:15','Embarcadero at Folsom',51,501,'Subscriber',94061); +INSERT INTO "trip" VALUES(911867,683,'8/31/2015 8:07','San Francisco Caltrain 2 (330 Townsend)',69,'8/31/2015 8:18','Market at Sansome',77,522,'Subscriber',94402); +INSERT INTO "trip" VALUES(911868,540,'8/31/2015 8:07','San Francisco City Hall',58,'8/31/2015 8:16','San Francisco Caltrain 2 (330 Townsend)',69,86,'Subscriber',94102); +INSERT INTO "trip" VALUES(911869,558,'8/31/2015 8:07','San Francisco Caltrain 2 (330 Townsend)',69,'8/31/2015 8:16','Steuart at Market',74,279,'Subscriber',94061); +INSERT INTO "trip" VALUES(911870,518,'8/31/2015 8:07','San Francisco Caltrain 2 (330 Townsend)',69,'8/31/2015 8:16','Embarcadero at Folsom',51,397,'Subscriber',94306); +INSERT INTO "trip" VALUES(911871,658,'8/31/2015 8:07','Townsend at 7th',65,'8/31/2015 8:18','2nd at Folsom',62,311,'Subscriber',94107); +INSERT INTO "trip" VALUES(911872,651,'8/31/2015 8:07','San Francisco Caltrain 2 (330 Townsend)',69,'8/31/2015 8:18','Civic Center BART (7th at Market)',72,562,'Subscriber',94062); +INSERT INTO "trip" VALUES(911873,738,'8/31/2015 8:07','Temporary Transbay Terminal (Howard at Beale)',55,'8/31/2015 8:20','Townsend at 7th',65,415,'Subscriber',94103); +INSERT INTO "trip" VALUES(911874,529,'8/31/2015 8:08','San Jose Diridon Caltrain Station',2,'8/31/2015 8:16','MLK Library',11,656,'Subscriber',94110); +INSERT INTO "trip" VALUES(911875,825,'8/31/2015 8:07','San Francisco Caltrain 2 (330 Townsend)',69,'8/31/2015 8:21','Davis at Jackson',42,363,'Subscriber',94040); +INSERT INTO "trip" VALUES(911876,780,'8/31/2015 8:08','San Francisco Caltrain 2 (330 Townsend)',69,'8/31/2015 8:21','Embarcadero at Vallejo',48,266,'Subscriber',95128); +INSERT INTO "trip" VALUES(911878,910,'8/31/2015 8:08','San Francisco Caltrain (Townsend at 4th)',70,'8/31/2015 8:23','Mechanics Plaza (Market at Battery)',75,355,'Subscriber',95054); +INSERT INTO "trip" VALUES(911879,453,'8/31/2015 8:08','Temporary Transbay Terminal (Howard at Beale)',55,'8/31/2015 8:16','Commercial at Montgomery',45,594,'Subscriber',94530); +INSERT INTO "trip" VALUES(911880,670,'8/31/2015 8:08','Harry Bridges Plaza (Ferry Building)',50,'8/31/2015 8:20','2nd at Townsend',61,463,'Subscriber',94949); +INSERT INTO "trip" VALUES(911883,632,'8/31/2015 8:09','Embarcadero at Bryant',54,'8/31/2015 8:19','Embarcadero at Vallejo',48,376,'Subscriber',94105); +INSERT INTO "trip" VALUES(911884,596,'8/31/2015 8:09','Harry Bridges Plaza (Ferry Building)',50,'8/31/2015 8:19','2nd at South Park',64,470,'Subscriber',94939); +INSERT INTO "trip" VALUES(911885,918,'8/31/2015 8:09','San Francisco Caltrain (Townsend at 4th)',70,'8/31/2015 8:25','Davis at Jackson',42,402,'Subscriber',94111); +INSERT INTO "trip" VALUES(911886,549,'8/31/2015 8:09','San Francisco Caltrain 2 (330 Townsend)',69,'8/31/2015 8:18','Yerba Buena Center of the Arts (3rd @ Howard)',68,351,'Customer',94086); +INSERT INTO "trip" VALUES(911887,764,'8/31/2015 8:10','San Francisco Caltrain 2 (330 Townsend)',69,'8/31/2015 8:22','Broadway St at Battery St',82,542,'Subscriber',95130); +INSERT INTO "trip" VALUES(911888,784,'8/31/2015 8:10','Steuart at Market',74,'8/31/2015 8:23','5th at Howard',57,260,'Subscriber',94930); +INSERT INTO "trip" VALUES(911889,503,'8/31/2015 8:10','2nd at Folsom',62,'8/31/2015 8:18','Civic Center BART (7th at Market)',72,600,'Subscriber',94105); +INSERT INTO "trip" VALUES(911892,877,'8/31/2015 8:11','Harry Bridges Plaza (Ferry Building)',50,'8/31/2015 8:26','Yerba Buena Center of the Arts (3rd @ Howard)',68,312,'Subscriber',94590); +INSERT INTO "trip" VALUES(911894,786,'8/31/2015 8:11','San Francisco Caltrain (Townsend at 4th)',70,'8/31/2015 8:24','Temporary Transbay Terminal (Howard at Beale)',55,620,'Customer',94066); +INSERT INTO "trip" VALUES(911896,917,'8/31/2015 8:11','San Francisco Caltrain (Townsend at 4th)',70,'8/31/2015 8:27','Harry Bridges Plaza (Ferry Building)',50,400,'Subscriber',94087); +INSERT INTO "trip" VALUES(911897,516,'8/31/2015 8:11','Spear at Folsom',49,'8/31/2015 8:20','San Francisco Caltrain (Townsend at 4th)',70,404,'Subscriber',94707); +INSERT INTO "trip" VALUES(911898,764,'8/31/2015 8:12','Civic Center BART (7th at Market)',72,'8/31/2015 8:24','Spear at Folsom',49,451,'Subscriber',94080); +INSERT INTO "trip" VALUES(911899,498,'8/31/2015 8:12','2nd at Townsend',61,'8/31/2015 8:20','Steuart at Market',74,377,'Subscriber',94070); +INSERT INTO "trip" VALUES(911900,656,'8/31/2015 8:12','Embarcadero at Folsom',51,'8/31/2015 8:23','2nd at Townsend',61,382,'Subscriber',94107); +INSERT INTO "trip" VALUES(911901,185,'8/31/2015 8:12','Townsend at 7th',65,'8/31/2015 8:16','San Francisco Caltrain 2 (330 Townsend)',69,535,'Subscriber',94107); +INSERT INTO "trip" VALUES(911904,264,'8/31/2015 8:13','Steuart at Market',74,'8/31/2015 8:17','Clay at Battery',41,484,'Subscriber',94596); +INSERT INTO "trip" VALUES(911905,390,'8/31/2015 8:13','Steuart at Market',74,'8/31/2015 8:19','Embarcadero at Sansome',60,423,'Subscriber',94597); +INSERT INTO "trip" VALUES(911906,334,'8/31/2015 8:13','2nd at Townsend',61,'8/31/2015 8:19','San Francisco Caltrain (Townsend at 4th)',70,578,'Subscriber',94107); +INSERT INTO "trip" VALUES(911907,1025,'8/31/2015 8:13','San Francisco Caltrain (Townsend at 4th)',70,'8/31/2015 8:30','Commercial at Montgomery',45,67,'Subscriber',94070); +INSERT INTO "trip" VALUES(911908,522,'8/31/2015 8:13','Market at Sansome',77,'8/31/2015 8:22','2nd at Townsend',61,526,'Subscriber',94401); +INSERT INTO "trip" VALUES(911909,214,'8/31/2015 8:13','Evelyn Park and Ride',30,'8/31/2015 8:17','Mountain View Caltrain Station',28,13,'Subscriber',94043); +INSERT INTO "trip" VALUES(911910,312,'8/31/2015 8:14','Civic Center BART (7th at Market)',72,'8/31/2015 8:19','South Van Ness at Market',66,493,'Subscriber',94611); +INSERT INTO "trip" VALUES(911911,592,'8/31/2015 8:15','Embarcadero at Bryant',54,'8/31/2015 8:24','Commercial at Montgomery',45,553,'Subscriber',94105); +INSERT INTO "trip" VALUES(911912,443,'8/31/2015 8:15','Embarcadero at Sansome',60,'8/31/2015 8:22','Mechanics Plaza (Market at Battery)',75,549,'Subscriber',94133); +INSERT INTO "trip" VALUES(911913,604,'8/31/2015 8:15','Embarcadero at Folsom',51,'8/31/2015 8:25','Yerba Buena Center of the Arts (3rd @ Howard)',68,528,'Subscriber',95131); +INSERT INTO "trip" VALUES(911914,1005,'8/31/2015 8:16','Spear at Folsom',49,'8/31/2015 8:33','Market at 10th',67,352,'Subscriber',94105); +INSERT INTO "trip" VALUES(911915,594,'8/31/2015 8:17','Embarcadero at Bryant',54,'8/31/2015 8:27','Townsend at 7th',65,431,'Subscriber',94105); +INSERT INTO "trip" VALUES(911916,335,'8/31/2015 8:18','Washington at Kearny',46,'8/31/2015 8:23','Temporary Transbay Terminal (Howard at Beale)',55,593,'Subscriber',94133); +INSERT INTO "trip" VALUES(911917,324,'8/31/2015 8:18','Evelyn Park and Ride',30,'8/31/2015 8:23','Mountain View Caltrain Station',28,92,'Subscriber',94040); +INSERT INTO "trip" VALUES(911918,758,'8/31/2015 8:17','Townsend at 7th',65,'8/31/2015 8:30','Post at Kearny',47,509,'Subscriber',94111); +INSERT INTO "trip" VALUES(911919,722,'8/31/2015 8:18','Townsend at 7th',65,'8/31/2015 8:30','Spear at Folsom',49,514,'Subscriber',94103); +INSERT INTO "trip" VALUES(911920,259,'8/31/2015 8:18','Steuart at Market',74,'8/31/2015 8:23','Clay at Battery',41,279,'Subscriber',94305); +INSERT INTO "trip" VALUES(911922,578,'8/31/2015 8:18','Embarcadero at Bryant',54,'8/31/2015 8:28','Yerba Buena Center of the Arts (3rd @ Howard)',68,579,'Subscriber',94105); +INSERT INTO "trip" VALUES(911923,299,'8/31/2015 8:20','Embarcadero at Bryant',54,'8/31/2015 8:25','Embarcadero at Folsom',51,137,'Subscriber',94103); +INSERT INTO "trip" VALUES(911924,657,'8/31/2015 8:20','2nd at Townsend',61,'8/31/2015 8:31','Harry Bridges Plaza (Ferry Building)',50,408,'Customer',94087); +INSERT INTO "trip" VALUES(911925,655,'8/31/2015 8:20','2nd at Townsend',61,'8/31/2015 8:31','Harry Bridges Plaza (Ferry Building)',50,334,'Subscriber',95148); +INSERT INTO "trip" VALUES(911926,566,'8/31/2015 8:20','Harry Bridges Plaza (Ferry Building)',50,'8/31/2015 8:30','Post at Kearny',47,566,'Subscriber',95442); +INSERT INTO "trip" VALUES(911928,432,'8/31/2015 8:20','Beale at Market',56,'8/31/2015 8:28','Broadway St at Battery St',82,613,'Subscriber',94114); +INSERT INTO "trip" VALUES(911930,582,'8/31/2015 8:21','Harry Bridges Plaza (Ferry Building)',50,'8/31/2015 8:30','2nd at South Park',64,505,'Subscriber',94920); +INSERT INTO "trip" VALUES(911931,277,'8/31/2015 8:21','Steuart at Market',74,'8/31/2015 8:25','Broadway St at Battery St',82,377,'Subscriber',94702); +INSERT INTO "trip" VALUES(911932,366,'8/31/2015 8:21','Beale at Market',56,'8/31/2015 8:28','2nd at Townsend',61,385,'Subscriber',94563); +INSERT INTO "trip" VALUES(911933,699,'8/31/2015 8:22','Market at 10th',67,'8/31/2015 8:33','Market at Sansome',77,498,'Subscriber',94105); +INSERT INTO "trip" VALUES(911934,209,'8/31/2015 8:22','Temporary Transbay Terminal (Howard at Beale)',55,'8/31/2015 8:26','Mechanics Plaza (Market at Battery)',75,459,'Subscriber',94618); +INSERT INTO "trip" VALUES(911935,458,'8/31/2015 8:23','San Francisco Caltrain (Townsend at 4th)',70,'8/31/2015 8:31','Howard at 2nd',63,404,'Subscriber',94107); +INSERT INTO "trip" VALUES(911936,880,'8/31/2015 8:24','Palo Alto Caltrain Station',34,'8/31/2015 8:38','Park at Olive',38,211,'Subscriber',94002); +INSERT INTO "trip" VALUES(911937,525,'8/31/2015 8:24','2nd at Townsend',61,'8/31/2015 8:33','Steuart at Market',74,191,'Subscriber',95120); +INSERT INTO "trip" VALUES(911938,112,'8/31/2015 8:24','2nd at Townsend',61,'8/31/2015 8:26','2nd at South Park',64,321,'Subscriber',94107); +INSERT INTO "trip" VALUES(911940,539,'8/31/2015 8:25','Market at 10th',67,'8/31/2015 8:34','San Francisco Caltrain 2 (330 Townsend)',69,406,'Subscriber',94103); +INSERT INTO "trip" VALUES(911941,931,'8/31/2015 8:26','Broadway St at Battery St',82,'8/31/2015 8:41','San Francisco Caltrain (Townsend at 4th)',70,614,'Subscriber',94105); +INSERT INTO "trip" VALUES(911942,238,'8/31/2015 8:26','San Francisco Caltrain (Townsend at 4th)',70,'8/31/2015 8:30','Townsend at 7th',65,578,'Subscriber',94010); +INSERT INTO "trip" VALUES(911943,312,'8/31/2015 8:26','Howard at 2nd',63,'8/31/2015 8:32','2nd at Townsend',61,487,'Subscriber',94965); +INSERT INTO "trip" VALUES(911944,967,'8/31/2015 8:27','San Francisco Caltrain 2 (330 Townsend)',69,'8/31/2015 8:43','Davis at Jackson',42,328,'Subscriber',94024); +INSERT INTO "trip" VALUES(911945,811,'8/31/2015 8:27','San Francisco Caltrain (Townsend at 4th)',70,'8/31/2015 8:40','Beale at Market',56,513,'Subscriber',94089); +INSERT INTO "trip" VALUES(911946,849,'8/31/2015 8:27','San Francisco Caltrain 2 (330 Townsend)',69,'8/31/2015 8:41','Davis at Jackson',42,86,'Subscriber',94002); +INSERT INTO "trip" VALUES(911947,660,'8/31/2015 8:27','San Francisco Caltrain 2 (330 Townsend)',69,'8/31/2015 8:38','Market at 10th',67,544,'Subscriber',94061); +INSERT INTO "trip" VALUES(911948,714,'8/31/2015 8:27','Washington at Kearny',46,'8/31/2015 8:39','2nd at South Park',64,405,'Subscriber',94133); +INSERT INTO "trip" VALUES(911949,390,'8/31/2015 8:28','Market at 4th',76,'8/31/2015 8:34','San Francisco Caltrain (Townsend at 4th)',70,187,'Subscriber',95054); +INSERT INTO "trip" VALUES(911950,480,'8/31/2015 8:28','Harry Bridges Plaza (Ferry Building)',50,'8/31/2015 8:36','Embarcadero at Vallejo',48,344,'Subscriber',94595); +INSERT INTO "trip" VALUES(911951,649,'8/31/2015 8:28','Civic Center BART (7th at Market)',72,'8/31/2015 8:39','Clay at Battery',41,269,'Subscriber',94110); +INSERT INTO "trip" VALUES(911952,459,'8/31/2015 8:28','Beale at Market',56,'8/31/2015 8:36','2nd at Townsend',61,16,'Subscriber',94607); +INSERT INTO "trip" VALUES(911953,792,'8/31/2015 8:28','San Francisco Caltrain 2 (330 Townsend)',69,'8/31/2015 8:41','Harry Bridges Plaza (Ferry Building)',50,56,'Subscriber',94086); +INSERT INTO "trip" VALUES(911954,605,'8/31/2015 8:28','San Francisco Caltrain (Townsend at 4th)',70,'8/31/2015 8:39','Howard at 2nd',63,238,'Subscriber',94025); +INSERT INTO "trip" VALUES(911955,691,'8/31/2015 8:29','San Francisco Caltrain (Townsend at 4th)',70,'8/31/2015 8:40','Post at Kearny',47,472,'Subscriber',94002); +INSERT INTO "trip" VALUES(911956,1090,'8/31/2015 8:28','Harry Bridges Plaza (Ferry Building)',50,'8/31/2015 8:47','Market at 10th',67,428,'Subscriber',94903); +INSERT INTO "trip" VALUES(911957,966,'8/31/2015 8:29','San Francisco Caltrain 2 (330 Townsend)',69,'8/31/2015 8:45','Embarcadero at Vallejo',48,535,'Subscriber',94403); +INSERT INTO "trip" VALUES(911958,588,'8/31/2015 8:29','San Francisco Caltrain (Townsend at 4th)',70,'8/31/2015 8:39','Howard at 2nd',63,292,'Subscriber',94111); +INSERT INTO "trip" VALUES(911959,512,'8/31/2015 8:29','Harry Bridges Plaza (Ferry Building)',50,'8/31/2015 8:38','Powell Street BART',39,400,'Subscriber',94941); +INSERT INTO "trip" VALUES(911960,527,'8/31/2015 8:29','Steuart at Market',74,'8/31/2015 8:38','2nd at Townsend',61,608,'Subscriber',94110); +INSERT INTO "trip" VALUES(911961,644,'8/31/2015 8:29','San Francisco Caltrain 2 (330 Townsend)',69,'8/31/2015 8:40','Temporary Transbay Terminal (Howard at Beale)',55,335,'Subscriber',94010); +INSERT INTO "trip" VALUES(911962,429,'8/31/2015 8:29','Harry Bridges Plaza (Ferry Building)',50,'8/31/2015 8:37','2nd at Townsend',61,378,'Subscriber',94903); +INSERT INTO "trip" VALUES(911963,1033,'8/31/2015 8:30','Evelyn Park and Ride',30,'8/31/2015 8:47','Mountain View City Hall',27,194,'Customer',94022); +INSERT INTO "trip" VALUES(911964,381,'8/31/2015 8:30','2nd at Townsend',61,'8/31/2015 8:36','Howard at 2nd',63,636,'Subscriber',94105); +INSERT INTO "trip" VALUES(911965,485,'8/31/2015 8:30','Embarcadero at Folsom',51,'8/31/2015 8:38','2nd at South Park',64,603,'Subscriber',94105); +INSERT INTO "trip" VALUES(911966,550,'8/31/2015 8:30','San Francisco Caltrain 2 (330 Townsend)',69,'8/31/2015 8:39','Embarcadero at Folsom',51,399,'Subscriber',94303); +INSERT INTO "trip" VALUES(911967,753,'8/31/2015 8:31','Temporary Transbay Terminal (Howard at Beale)',55,'8/31/2015 8:43','San Francisco Caltrain (Townsend at 4th)',70,461,'Subscriber',94107); +INSERT INTO "trip" VALUES(911968,527,'8/31/2015 8:31','Townsend at 7th',65,'8/31/2015 8:40','South Van Ness at Market',66,431,'Subscriber',94010); +INSERT INTO "trip" VALUES(911969,537,'8/31/2015 8:32','San Francisco Caltrain (Townsend at 4th)',70,'8/31/2015 8:41','Market at Sansome',77,687,'Subscriber',94158); +INSERT INTO "trip" VALUES(911970,560,'8/31/2015 8:32','Temporary Transbay Terminal (Howard at Beale)',55,'8/31/2015 8:42','Embarcadero at Sansome',60,410,'Subscriber',94602); +INSERT INTO "trip" VALUES(911971,472,'8/31/2015 8:32','Steuart at Market',74,'8/31/2015 8:40','2nd at South Park',64,356,'Subscriber',94947); +INSERT INTO "trip" VALUES(911972,562,'8/31/2015 8:33','Golden Gate at Polk',59,'8/31/2015 8:42','Beale at Market',56,607,'Subscriber',94109); +INSERT INTO "trip" VALUES(911973,193,'8/31/2015 8:33','Market at 4th',76,'8/31/2015 8:36','5th at Howard',57,407,'Subscriber',94103); +INSERT INTO "trip" VALUES(911974,393,'8/31/2015 8:33','Steuart at Market',74,'8/31/2015 8:40','2nd at South Park',64,191,'Subscriber',94960); +INSERT INTO "trip" VALUES(911975,240,'8/31/2015 8:33','2nd at Folsom',62,'8/31/2015 8:37','Temporary Transbay Terminal (Howard at Beale)',55,709,'Subscriber',94107); +INSERT INTO "trip" VALUES(911976,296,'8/31/2015 8:34','Harry Bridges Plaza (Ferry Building)',50,'8/31/2015 8:39','Market at Sansome',77,334,'Subscriber',94925); +INSERT INTO "trip" VALUES(911977,506,'8/31/2015 8:34','Harry Bridges Plaza (Ferry Building)',50,'8/31/2015 8:42','2nd at Folsom',62,408,'Subscriber',94973); +INSERT INTO "trip" VALUES(911978,431,'8/31/2015 8:34','2nd at Townsend',61,'8/31/2015 8:41','Spear at Folsom',49,382,'Subscriber',89451); +INSERT INTO "trip" VALUES(911979,426,'8/31/2015 8:34','Spear at Folsom',49,'8/31/2015 8:41','Mechanics Plaza (Market at Battery)',75,477,'Subscriber',94105); +INSERT INTO "trip" VALUES(911980,572,'8/31/2015 8:35','Temporary Transbay Terminal (Howard at Beale)',55,'8/31/2015 8:44','San Francisco Caltrain (Townsend at 4th)',70,538,'Subscriber',94602); +INSERT INTO "trip" VALUES(911981,352,'8/31/2015 8:35','2nd at Folsom',62,'8/31/2015 8:41','Clay at Battery',41,590,'Subscriber',94107); +INSERT INTO "trip" VALUES(911982,487,'8/31/2015 8:36','Steuart at Market',74,'8/31/2015 8:44','2nd at South Park',64,503,'Subscriber',94904); +INSERT INTO "trip" VALUES(911983,1479,'8/31/2015 8:36','Embarcadero at Folsom',51,'8/31/2015 9:00','Embarcadero at Folsom',51,501,'Customer',94546); +INSERT INTO "trip" VALUES(911984,305,'8/31/2015 8:36','Broadway St at Battery St',82,'8/31/2015 8:41','Temporary Transbay Terminal (Howard at Beale)',55,271,'Subscriber',94566); +INSERT INTO "trip" VALUES(911985,787,'8/31/2015 8:35','Rengstorff Avenue / California Street',33,'8/31/2015 8:48','Mountain View Caltrain Station',28,683,'Subscriber',94040); +INSERT INTO "trip" VALUES(911989,257,'8/31/2015 8:38','2nd at Townsend',61,'8/31/2015 8:42','San Francisco Caltrain (Townsend at 4th)',70,393,'Subscriber',94107); +INSERT INTO "trip" VALUES(911990,397,'8/31/2015 8:37','Redwood City Medical Center',26,'8/31/2015 8:44','Redwood City Caltrain Station',22,666,'Customer',94066); +INSERT INTO "trip" VALUES(911991,579,'8/31/2015 8:38','Market at 10th',67,'8/31/2015 8:48','Mechanics Plaza (Market at Battery)',75,352,'Subscriber',94102); +INSERT INTO "trip" VALUES(911992,357,'8/31/2015 8:38','5th at Howard',57,'8/31/2015 8:44','San Francisco Caltrain 2 (330 Townsend)',69,496,'Subscriber',94103); +INSERT INTO "trip" VALUES(911993,657,'8/31/2015 8:38','Market at 10th',67,'8/31/2015 8:49','Market at Sansome',77,458,'Subscriber',94105); +INSERT INTO "trip" VALUES(911995,358,'8/31/2015 8:38','Steuart at Market',74,'8/31/2015 8:44','Embarcadero at Vallejo',48,572,'Subscriber',94708); +INSERT INTO "trip" VALUES(911998,375,'8/31/2015 8:39','Embarcadero at Sansome',60,'8/31/2015 8:45','Clay at Battery',41,564,'Subscriber',94133); +INSERT INTO "trip" VALUES(911999,125,'8/31/2015 8:39','Washington at Kearny',46,'8/31/2015 8:41','Clay at Battery',41,449,'Subscriber',94111); +INSERT INTO "trip" VALUES(912003,494,'8/31/2015 8:40','Commercial at Montgomery',45,'8/31/2015 8:49','Spear at Folsom',49,362,'Subscriber',94105); +INSERT INTO "trip" VALUES(912006,602,'8/31/2015 8:41','Market at 10th',67,'8/31/2015 8:51','Market at Sansome',77,69,'Subscriber',94114); +INSERT INTO "trip" VALUES(912007,210,'8/31/2015 8:41','Steuart at Market',74,'8/31/2015 8:45','Spear at Folsom',49,479,'Subscriber',94114); +INSERT INTO "trip" VALUES(912008,280,'8/31/2015 8:41','Temporary Transbay Terminal (Howard at Beale)',55,'8/31/2015 8:46','Steuart at Market',74,602,'Subscriber',95620); +INSERT INTO "trip" VALUES(912009,669,'8/31/2015 8:41','Harry Bridges Plaza (Ferry Building)',50,'8/31/2015 8:53','Yerba Buena Center of the Arts (3rd @ Howard)',68,368,'Subscriber',94602); +INSERT INTO "trip" VALUES(912012,269,'8/31/2015 8:42','San Antonio Caltrain Station',29,'8/31/2015 8:46','San Antonio Shopping Center',31,707,'Subscriber',94133); +INSERT INTO "trip" VALUES(912013,681,'8/31/2015 8:42','2nd at Townsend',61,'8/31/2015 8:54','Broadway St at Battery St',82,378,'Subscriber',94107); +INSERT INTO "trip" VALUES(912014,341,'8/31/2015 8:42','Temporary Transbay Terminal (Howard at Beale)',55,'8/31/2015 8:48','Harry Bridges Plaza (Ferry Building)',50,593,'Subscriber',94608); +INSERT INTO "trip" VALUES(912017,586,'8/31/2015 8:42','Powell at Post (Union Square)',71,'8/31/2015 8:52','Market at 10th',67,448,'Subscriber',94108); +INSERT INTO "trip" VALUES(912018,524,'8/31/2015 8:43','Beale at Market',56,'8/31/2015 8:51','Embarcadero at Vallejo',48,491,'Subscriber',94609); +INSERT INTO "trip" VALUES(912019,798,'8/31/2015 8:42','Golden Gate at Polk',59,'8/31/2015 8:56','Yerba Buena Center of the Arts (3rd @ Howard)',68,370,'Subscriber',94043); +INSERT INTO "trip" VALUES(912020,290,'8/31/2015 8:43','Embarcadero at Folsom',51,'8/31/2015 8:48','Embarcadero at Vallejo',48,598,'Subscriber',94602); +INSERT INTO "trip" VALUES(912023,747,'8/31/2015 8:41','South Van Ness at Market',66,'8/31/2015 8:54','Beale at Market',56,482,'Subscriber',94103); +INSERT INTO "trip" VALUES(912024,250,'8/31/2015 8:44','Townsend at 7th',65,'8/31/2015 8:48','San Francisco Caltrain 2 (330 Townsend)',69,426,'Subscriber',94103); +INSERT INTO "trip" VALUES(912027,240,'8/31/2015 8:45','2nd at South Park',64,'8/31/2015 8:49','San Francisco Caltrain (Townsend at 4th)',70,541,'Subscriber',94107); +INSERT INTO "trip" VALUES(912028,449,'8/31/2015 8:46','2nd at Townsend',61,'8/31/2015 8:53','Steuart at Market',74,16,'Subscriber',94158); +INSERT INTO "trip" VALUES(912030,613,'8/31/2015 8:47','Steuart at Market',74,'8/31/2015 8:57','San Francisco Caltrain (Townsend at 4th)',70,602,'Subscriber',94703); +INSERT INTO "trip" VALUES(912031,229,'8/31/2015 8:47','Townsend at 7th',65,'8/31/2015 8:51','San Francisco Caltrain 2 (330 Townsend)',69,317,'Subscriber',94107); +INSERT INTO "trip" VALUES(912032,289,'8/31/2015 8:47','Mountain View Caltrain Station',28,'8/31/2015 8:52','Castro Street and El Camino Real',32,197,'Subscriber',94401); +INSERT INTO "trip" VALUES(912033,285,'8/31/2015 8:47','Market at Sansome',77,'8/31/2015 8:52','2nd at South Park',64,576,'Subscriber',94609); +INSERT INTO "trip" VALUES(912034,181,'8/31/2015 8:47','Yerba Buena Center of the Arts (3rd @ Howard)',68,'8/31/2015 8:51','5th at Howard',57,351,'Subscriber',94119); +INSERT INTO "trip" VALUES(912035,1010,'8/31/2015 8:48','Temporary Transbay Terminal (Howard at Beale)',55,'8/31/2015 9:04','South Van Ness at Market',66,677,'Subscriber',94609); +INSERT INTO "trip" VALUES(912036,411,'8/31/2015 8:47','Howard at 2nd',63,'8/31/2015 8:54','San Francisco Caltrain (Townsend at 4th)',70,292,'Subscriber',94105); +INSERT INTO "trip" VALUES(912037,560,'8/31/2015 8:48','Mechanics Plaza (Market at Battery)',75,'8/31/2015 8:57','2nd at Townsend',61,347,'Subscriber',94121); +INSERT INTO "trip" VALUES(912038,483,'8/31/2015 8:48','Harry Bridges Plaza (Ferry Building)',50,'8/31/2015 8:56','2nd at Townsend',61,56,'Subscriber',94558); +INSERT INTO "trip" VALUES(912039,217,'8/31/2015 8:48','Powell at Post (Union Square)',71,'8/31/2015 8:51','Market at Sansome',77,422,'Subscriber',94109); +INSERT INTO "trip" VALUES(912040,507,'8/31/2015 8:48','Market at 10th',67,'8/31/2015 8:57','Yerba Buena Center of the Arts (3rd @ Howard)',68,428,'Subscriber',94102); +INSERT INTO "trip" VALUES(912041,470,'8/31/2015 8:49','San Francisco Caltrain (Townsend at 4th)',70,'8/31/2015 8:57','Howard at 2nd',63,393,'Subscriber',94306); +INSERT INTO "trip" VALUES(912042,634,'8/31/2015 8:49','San Francisco Caltrain (Townsend at 4th)',70,'8/31/2015 8:59','Harry Bridges Plaza (Ferry Building)',50,187,'Subscriber',94403); +INSERT INTO "trip" VALUES(912043,373,'8/31/2015 8:49','Temporary Transbay Terminal (Howard at Beale)',55,'8/31/2015 8:55','2nd at South Park',64,335,'Subscriber',94710); +INSERT INTO "trip" VALUES(912046,666,'8/31/2015 8:50','Harry Bridges Plaza (Ferry Building)',50,'8/31/2015 9:01','San Francisco Caltrain (Townsend at 4th)',70,593,'Subscriber',94591); +INSERT INTO "trip" VALUES(912047,787,'8/31/2015 8:50','Golden Gate at Polk',59,'8/31/2015 9:03','Market at Sansome',77,478,'Subscriber',94116); +INSERT INTO "trip" VALUES(912049,608,'8/31/2015 8:50','Washington at Kearny',46,'8/31/2015 9:00','San Francisco Caltrain (Townsend at 4th)',70,421,'Subscriber',94133); +INSERT INTO "trip" VALUES(912050,1072,'8/31/2015 8:50','San Francisco Caltrain 2 (330 Townsend)',69,'8/31/2015 9:08','Embarcadero at Folsom',51,426,'Subscriber',94070); +INSERT INTO "trip" VALUES(912051,679,'8/31/2015 8:50','Townsend at 7th',65,'8/31/2015 9:01','Howard at 2nd',63,548,'Subscriber',94116); +INSERT INTO "trip" VALUES(912052,291,'8/31/2015 8:50','Broadway St at Battery St',82,'8/31/2015 8:55','Mechanics Plaza (Market at Battery)',75,537,'Subscriber',94107); +INSERT INTO "trip" VALUES(912053,470,'8/31/2015 8:50','San Francisco Caltrain 2 (330 Townsend)',69,'8/31/2015 8:58','Yerba Buena Center of the Arts (3rd @ Howard)',68,560,'Subscriber',94301); +INSERT INTO "trip" VALUES(912054,631,'8/31/2015 8:51','Townsend at 7th',65,'8/31/2015 9:01','Powell Street BART',39,350,'Subscriber',94107); +INSERT INTO "trip" VALUES(912055,315,'8/31/2015 8:51','Spear at Folsom',49,'8/31/2015 8:56','Commercial at Montgomery',45,451,'Subscriber',94105); +INSERT INTO "trip" VALUES(912056,639,'8/31/2015 8:51','San Francisco Caltrain (Townsend at 4th)',70,'8/31/2015 9:01','Harry Bridges Plaza (Ferry Building)',50,541,'Subscriber',94022); +INSERT INTO "trip" VALUES(912057,368,'8/31/2015 8:50','San Francisco Caltrain (Townsend at 4th)',70,'8/31/2015 8:57','Yerba Buena Center of the Arts (3rd @ Howard)',68,538,'Subscriber',94041); +INSERT INTO "trip" VALUES(912058,694,'8/31/2015 8:51','San Francisco Caltrain 2 (330 Townsend)',69,'8/31/2015 9:02','Market at 10th',67,406,'Subscriber',94404); +INSERT INTO "trip" VALUES(912059,467,'8/31/2015 8:51','Washington at Kearny',46,'8/31/2015 8:59','Market at Sansome',77,372,'Subscriber',94133); +INSERT INTO "trip" VALUES(912060,392,'8/31/2015 8:51','2nd at Folsom',62,'8/31/2015 8:57','Commercial at Montgomery',45,575,'Subscriber',94107); +INSERT INTO "trip" VALUES(912061,752,'8/31/2015 8:51','Market at 10th',67,'8/31/2015 9:04','2nd at Townsend',61,544,'Subscriber',94158); +INSERT INTO "trip" VALUES(912062,699,'8/31/2015 8:52','Golden Gate at Polk',59,'8/31/2015 9:03','2nd at South Park',64,360,'Subscriber',94109); +INSERT INTO "trip" VALUES(912063,488,'8/31/2015 8:52','Market at 4th',76,'8/31/2015 9:00','San Francisco Caltrain (Townsend at 4th)',70,388,'Subscriber',94117); +INSERT INTO "trip" VALUES(912064,727,'8/31/2015 8:52','Davis at Jackson',42,'8/31/2015 9:04','2nd at Townsend',61,331,'Subscriber',94111); +INSERT INTO "trip" VALUES(912065,336,'8/31/2015 8:52','San Francisco Caltrain (Townsend at 4th)',70,'8/31/2015 8:57','Townsend at 7th',65,614,'Subscriber',94040); +INSERT INTO "trip" VALUES(912066,186,'8/31/2015 8:52','Golden Gate at Polk',59,'8/31/2015 8:55','Market at 10th',67,483,'Subscriber',94121); +INSERT INTO "trip" VALUES(912067,353,'8/31/2015 8:52','Market at Sansome',77,'8/31/2015 8:58','2nd at South Park',64,498,'Subscriber',94612); +INSERT INTO "trip" VALUES(912068,335,'8/31/2015 8:53','Mountain View Caltrain Station',28,'8/31/2015 8:58','Castro Street and El Camino Real',32,251,'Subscriber',94158); +INSERT INTO "trip" VALUES(912069,669,'8/31/2015 8:53','San Francisco Caltrain 2 (330 Townsend)',69,'8/31/2015 9:04','Steuart at Market',74,503,'Subscriber',95008); +INSERT INTO "trip" VALUES(912070,351,'8/31/2015 8:53','Mountain View Caltrain Station',28,'8/31/2015 8:59','Castro Street and El Camino Real',32,683,'Subscriber',94111); +INSERT INTO "trip" VALUES(912071,1094,'8/31/2015 8:53','San Francisco Caltrain 2 (330 Townsend)',69,'8/31/2015 9:11','Commercial at Montgomery',45,534,'Subscriber',94301); +INSERT INTO "trip" VALUES(912072,528,'8/31/2015 8:53','Ryland Park',84,'8/31/2015 9:02','Santa Clara County Civic Center',80,232,'Subscriber',95112); +INSERT INTO "trip" VALUES(912073,266,'8/31/2015 8:53','Yerba Buena Center of the Arts (3rd @ Howard)',68,'8/31/2015 8:58','San Francisco Caltrain 2 (330 Townsend)',69,368,'Subscriber',94105); +INSERT INTO "trip" VALUES(912074,873,'8/31/2015 8:53','San Francisco Caltrain 2 (330 Townsend)',69,'8/31/2015 9:08','Broadway St at Battery St',82,505,'Subscriber',95054); +INSERT INTO "trip" VALUES(912075,649,'8/31/2015 8:54','South Van Ness at Market',66,'8/31/2015 9:04','Market at Sansome',77,322,'Subscriber',94117); +INSERT INTO "trip" VALUES(912076,879,'8/31/2015 8:54','San Francisco Caltrain 2 (330 Townsend)',69,'8/31/2015 9:08','Mechanics Plaza (Market at Battery)',75,412,'Subscriber',94301); +INSERT INTO "trip" VALUES(912077,441,'8/31/2015 8:54','Powell Street BART',39,'8/31/2015 9:01','San Francisco Caltrain 2 (330 Townsend)',69,400,'Subscriber',94107); +INSERT INTO "trip" VALUES(912078,720,'8/31/2015 8:53','Townsend at 7th',65,'8/31/2015 9:05','Harry Bridges Plaza (Ferry Building)',50,415,'Subscriber',94107); +INSERT INTO "trip" VALUES(912079,567,'8/31/2015 8:54','Powell Street BART',39,'8/31/2015 9:03','San Francisco Caltrain 2 (330 Townsend)',69,309,'Subscriber',94703); +INSERT INTO "trip" VALUES(912080,793,'8/31/2015 8:54','San Francisco Caltrain 2 (330 Townsend)',69,'8/31/2015 9:07','Temporary Transbay Terminal (Howard at Beale)',55,470,'Subscriber',95112); +INSERT INTO "trip" VALUES(912081,829,'8/31/2015 8:54','San Francisco Caltrain 2 (330 Townsend)',69,'8/31/2015 9:08','Broadway St at Battery St',82,134,'Subscriber',94303); +INSERT INTO "trip" VALUES(912082,953,'8/31/2015 8:54','San Francisco Caltrain (Townsend at 4th)',70,'8/31/2015 9:10','Market at Sansome',77,292,'Subscriber',94070); +INSERT INTO "trip" VALUES(912083,453,'8/31/2015 8:54','San Francisco Caltrain 2 (330 Townsend)',69,'8/31/2015 9:02','2nd at Folsom',62,325,'Subscriber',95112); +INSERT INTO "trip" VALUES(912084,181,'8/31/2015 8:54','Palo Alto Caltrain Station',34,'8/31/2015 8:57','Cowper at University',37,689,'Subscriber',94108); +INSERT INTO "trip" VALUES(912085,605,'8/31/2015 8:54','San Francisco Caltrain 2 (330 Townsend)',69,'8/31/2015 9:05','Market at Sansome',77,191,'Subscriber',94002); +INSERT INTO "trip" VALUES(912087,708,'8/31/2015 8:55','San Francisco Caltrain 2 (330 Townsend)',69,'8/31/2015 9:07','Mechanics Plaza (Market at Battery)',75,329,'Subscriber',94062); +INSERT INTO "trip" VALUES(912088,233,'8/31/2015 8:55','Palo Alto Caltrain Station',34,'8/31/2015 8:59','Cowper at University',37,41,'Subscriber',94107); +INSERT INTO "trip" VALUES(912089,652,'8/31/2015 8:55','San Francisco Caltrain 2 (330 Townsend)',69,'8/31/2015 9:06','Steuart at Market',74,603,'Subscriber',95051); +INSERT INTO "trip" VALUES(912090,627,'8/31/2015 8:55','San Francisco Caltrain 2 (330 Townsend)',69,'8/31/2015 9:06','Steuart at Market',74,366,'Subscriber',94002); +INSERT INTO "trip" VALUES(912091,908,'8/31/2015 8:56','Steuart at Market',74,'8/31/2015 9:11','Townsend at 7th',65,16,'Subscriber',94965); +INSERT INTO "trip" VALUES(912092,232,'8/31/2015 8:56','San Francisco Caltrain (Townsend at 4th)',70,'8/31/2015 9:00','2nd at Townsend',61,469,'Subscriber',94403); +INSERT INTO "trip" VALUES(912093,914,'8/31/2015 8:56','San Francisco Caltrain 2 (330 Townsend)',69,'8/31/2015 9:11','Market at Sansome',77,619,'Subscriber',94087); +INSERT INTO "trip" VALUES(912094,169,'8/31/2015 8:56','2nd at Townsend',61,'8/31/2015 8:59','2nd at Townsend',61,463,'Subscriber',94107); +INSERT INTO "trip" VALUES(912096,319,'8/31/2015 8:57','Davis at Jackson',42,'8/31/2015 9:03','Embarcadero at Sansome',60,282,'Subscriber',94568); +INSERT INTO "trip" VALUES(912097,624,'8/31/2015 8:58','San Francisco Caltrain 2 (330 Townsend)',69,'8/31/2015 9:08','Temporary Transbay Terminal (Howard at Beale)',55,368,'Subscriber',94402); +INSERT INTO "trip" VALUES(912098,410,'8/31/2015 8:58','Embarcadero at Folsom',51,'8/31/2015 9:05','2nd at Townsend',61,494,'Subscriber',94534); +INSERT INTO "trip" VALUES(912099,363,'8/31/2015 8:58','2nd at Townsend',61,'8/31/2015 9:04','Temporary Transbay Terminal (Howard at Beale)',55,56,'Subscriber',94022); +INSERT INTO "trip" VALUES(912101,553,'8/31/2015 8:59','2nd at Townsend',61,'8/31/2015 9:08','Steuart at Market',74,526,'Subscriber',94111); +INSERT INTO "trip" VALUES(912102,744,'8/31/2015 9:00','Rengstorff Avenue / California Street',33,'8/31/2015 9:12','Mountain View Caltrain Station',28,296,'Subscriber','94040-1724'); +INSERT INTO "trip" VALUES(912103,1046,'8/31/2015 9:00','Temporary Transbay Terminal (Howard at Beale)',55,'8/31/2015 9:17','Broadway St at Battery St',82,709,'Subscriber',94111); +INSERT INTO "trip" VALUES(912106,689,'8/31/2015 9:01','Beale at Market',56,'8/31/2015 9:12','Powell Street BART',39,291,'Subscriber',94903); +INSERT INTO "trip" VALUES(912107,517,'8/31/2015 9:00','Embarcadero at Sansome',60,'8/31/2015 9:09','Beale at Market',56,584,'Subscriber',94115); +INSERT INTO "trip" VALUES(912108,535,'8/31/2015 9:01','Powell Street BART',39,'8/31/2015 9:10','Steuart at Market',74,434,'Subscriber',94103); +INSERT INTO "trip" VALUES(912109,177,'8/31/2015 9:01','Powell Street BART',39,'8/31/2015 9:04','5th at Howard',57,492,'Subscriber',94024); +INSERT INTO "trip" VALUES(912110,526,'8/31/2015 9:01','Beale at Market',56,'8/31/2015 9:10','2nd at South Park',64,568,'Subscriber',94607); +INSERT INTO "trip" VALUES(912111,647,'8/31/2015 9:02','Powell Street BART',39,'8/31/2015 9:12','Townsend at 7th',65,554,'Subscriber',94551); +INSERT INTO "trip" VALUES(912112,620,'8/31/2015 9:02','Davis at Jackson',42,'8/31/2015 9:13','2nd at Townsend',61,363,'Subscriber',94111); +INSERT INTO "trip" VALUES(912113,1088,'8/31/2015 9:02','Harry Bridges Plaza (Ferry Building)',50,'8/31/2015 9:21','Embarcadero at Sansome',60,541,'Subscriber',94501); +INSERT INTO "trip" VALUES(912114,367,'8/31/2015 9:03','Mountain View Caltrain Station',28,'8/31/2015 9:09','Castro Street and El Camino Real',32,148,'Subscriber',94105); +INSERT INTO "trip" VALUES(912115,341,'8/31/2015 9:03','Embarcadero at Folsom',51,'8/31/2015 9:08','2nd at South Park',64,501,'Subscriber',94591); +INSERT INTO "trip" VALUES(912116,836,'8/31/2015 9:03','Temporary Transbay Terminal (Howard at Beale)',55,'8/31/2015 9:17','2nd at Townsend',61,416,'Subscriber',94609); +INSERT INTO "trip" VALUES(912118,441,'8/31/2015 9:03','Temporary Transbay Terminal (Howard at Beale)',55,'8/31/2015 9:11','2nd at Townsend',61,620,'Subscriber',94608); +INSERT INTO "trip" VALUES(912119,659,'8/31/2015 9:04','Powell Street BART',39,'8/31/2015 9:15','Temporary Transbay Terminal (Howard at Beale)',55,583,'Subscriber',94103); +INSERT INTO "trip" VALUES(912121,533,'8/31/2015 9:04','Golden Gate at Polk',59,'8/31/2015 9:13','Yerba Buena Center of the Arts (3rd @ Howard)',68,284,'Subscriber',94941); +INSERT INTO "trip" VALUES(912122,408,'8/31/2015 9:05','Embarcadero at Folsom',51,'8/31/2015 9:12','2nd at South Park',64,137,'Subscriber',94587); +INSERT INTO "trip" VALUES(912123,660,'8/31/2015 9:05','Embarcadero at Folsom',51,'8/31/2015 9:16','Townsend at 7th',65,399,'Subscriber',94903); +INSERT INTO "trip" VALUES(912124,1107,'8/31/2015 9:05','Townsend at 7th',65,'8/31/2015 9:24','Commercial at Montgomery',45,317,'Subscriber',94107); +INSERT INTO "trip" VALUES(912125,512,'8/31/2015 9:05','2nd at South Park',64,'8/31/2015 9:14','Mechanics Plaza (Market at Battery)',75,405,'Subscriber',94107); +INSERT INTO "trip" VALUES(912126,251,'8/31/2015 9:05','Mezes Park',83,'8/31/2015 9:10','Redwood City Caltrain Station',22,699,'Subscriber',94063); +INSERT INTO "trip" VALUES(912127,646,'8/31/2015 9:06','San Francisco City Hall',58,'8/31/2015 9:16','San Francisco Caltrain 2 (330 Townsend)',69,374,'Subscriber',94115); +INSERT INTO "trip" VALUES(912128,216,'8/31/2015 9:06','2nd at Folsom',62,'8/31/2015 9:09','Temporary Transbay Terminal (Howard at Beale)',55,408,'Subscriber',94107); +INSERT INTO "trip" VALUES(912129,621,'8/31/2015 9:06','Rengstorff Avenue / California Street',33,'8/31/2015 9:17','Mountain View Caltrain Station',28,107,'Subscriber',94040); +INSERT INTO "trip" VALUES(912130,398,'8/31/2015 9:06','2nd at Townsend',61,'8/31/2015 9:13','Townsend at 7th',65,494,'Subscriber',94107); +INSERT INTO "trip" VALUES(912131,1062,'8/31/2015 9:07','San Francisco Caltrain (Townsend at 4th)',70,'8/31/2015 9:24','Mechanics Plaza (Market at Battery)',75,593,'Subscriber',94402); +INSERT INTO "trip" VALUES(912133,625,'8/31/2015 9:07','Palo Alto Caltrain Station',34,'8/31/2015 9:17','California Ave Caltrain Station',36,713,'Subscriber',94115); +INSERT INTO "trip" VALUES(912134,890,'8/31/2015 9:07','Townsend at 7th',65,'8/31/2015 9:22','Mechanics Plaza (Market at Battery)',75,630,'Subscriber',94107); +INSERT INTO "trip" VALUES(912135,718,'8/31/2015 9:07','San Francisco Caltrain (Townsend at 4th)',70,'8/31/2015 9:19','Powell Street BART',39,421,'Subscriber',94306); +INSERT INTO "trip" VALUES(912136,653,'8/31/2015 9:07','San Francisco Caltrain (Townsend at 4th)',70,'8/31/2015 9:18','Embarcadero at Folsom',51,388,'Subscriber',95054); +INSERT INTO "trip" VALUES(912137,268,'8/31/2015 9:07','Commercial at Montgomery',45,'8/31/2015 9:12','Beale at Market',56,33,'Subscriber',94133); +INSERT INTO "trip" VALUES(912138,241,'8/31/2015 9:07','San Francisco Caltrain 2 (330 Townsend)',69,'8/31/2015 9:11','Townsend at 7th',65,309,'Subscriber',95129); +INSERT INTO "trip" VALUES(912139,1009,'8/31/2015 9:07','Beale at Market',56,'8/31/2015 9:24','Davis at Jackson',42,482,'Subscriber',94131); +INSERT INTO "trip" VALUES(912140,302,'8/31/2015 9:07','Market at Sansome',77,'8/31/2015 9:13','2nd at Folsom',62,521,'Subscriber',94612); +INSERT INTO "trip" VALUES(912141,328,'8/31/2015 9:08','Beale at Market',56,'8/31/2015 9:13','Embarcadero at Bryant',54,326,'Subscriber',94080); +INSERT INTO "trip" VALUES(912142,480,'8/31/2015 9:08','San Francisco Caltrain 2 (330 Townsend)',69,'8/31/2015 9:16','Embarcadero at Folsom',51,400,'Subscriber',95014); +INSERT INTO "trip" VALUES(912143,483,'8/31/2015 9:08','Harry Bridges Plaza (Ferry Building)',50,'8/31/2015 9:16','2nd at Townsend',61,415,'Subscriber',94612); +INSERT INTO "trip" VALUES(912144,708,'8/31/2015 9:08','Temporary Transbay Terminal (Howard at Beale)',55,'8/31/2015 9:20','Embarcadero at Sansome',60,56,'Subscriber',94547); +INSERT INTO "trip" VALUES(912145,329,'8/31/2015 9:09','Market at Sansome',77,'8/31/2015 9:14','2nd at South Park',64,461,'Subscriber',94115); +INSERT INTO "trip" VALUES(912146,225,'8/31/2015 9:09','Steuart at Market',74,'8/31/2015 9:13','Davis at Jackson',42,503,'Subscriber',94102); +INSERT INTO "trip" VALUES(912147,439,'8/31/2015 9:09','2nd at Townsend',61,'8/31/2015 9:16','Embarcadero at Folsom',51,364,'Subscriber',94062); +INSERT INTO "trip" VALUES(912148,298,'8/31/2015 9:09','San Jose Diridon Caltrain Station',2,'8/31/2015 9:14','Adobe on Almaden',5,37,'Subscriber',94043); +INSERT INTO "trip" VALUES(912149,507,'8/31/2015 9:09','2nd at Townsend',61,'8/31/2015 9:18','Market at 4th',76,347,'Subscriber',94107); +INSERT INTO "trip" VALUES(912150,303,'8/31/2015 9:09','Temporary Transbay Terminal (Howard at Beale)',55,'8/31/2015 9:14','Yerba Buena Center of the Arts (3rd @ Howard)',68,271,'Subscriber',94115); +INSERT INTO "trip" VALUES(912151,526,'8/31/2015 9:09','2nd at Townsend',61,'8/31/2015 9:18','Harry Bridges Plaza (Ferry Building)',50,331,'Subscriber',94107); +INSERT INTO "trip" VALUES(912152,276,'8/31/2015 9:10','San Jose Diridon Caltrain Station',2,'8/31/2015 9:14','Adobe on Almaden',5,261,'Subscriber',94043); +INSERT INTO "trip" VALUES(912153,357,'8/31/2015 9:10','Steuart at Market',74,'8/31/2015 9:16','Embarcadero at Sansome',60,434,'Subscriber',94111); +INSERT INTO "trip" VALUES(912154,586,'8/31/2015 9:10','Steuart at Market',74,'8/31/2015 9:20','2nd at Townsend',61,526,'Subscriber',94609); +INSERT INTO "trip" VALUES(912155,755,'8/31/2015 9:11','Golden Gate at Polk',59,'8/31/2015 9:23','San Francisco Caltrain 2 (330 Townsend)',69,437,'Subscriber',94107); +INSERT INTO "trip" VALUES(912157,447,'8/31/2015 9:12','Powell Street BART',39,'8/31/2015 9:19','San Francisco Caltrain 2 (330 Townsend)',69,625,'Subscriber',94102); +INSERT INTO "trip" VALUES(912158,569,'8/31/2015 9:12','Market at 10th',67,'8/31/2015 9:21','Mechanics Plaza (Market at Battery)',75,448,'Subscriber',94103); +INSERT INTO "trip" VALUES(912159,201,'8/31/2015 9:13','Mountain View Caltrain Station',28,'8/31/2015 9:17','Mountain View City Hall',27,192,'Subscriber',94107); +INSERT INTO "trip" VALUES(912160,602,'8/31/2015 9:14','Market at 10th',67,'8/31/2015 9:24','Market at Sansome',77,483,'Subscriber',94102); +INSERT INTO "trip" VALUES(912161,282,'8/31/2015 9:14','Mountain View Caltrain Station',28,'8/31/2015 9:19','Mountain View City Hall',27,293,'Subscriber',94110); +INSERT INTO "trip" VALUES(912162,705,'8/31/2015 9:15','San Jose Diridon Caltrain Station',2,'8/31/2015 9:27','SJSU 4th at San Carlos',12,50,'Subscriber',94040); +INSERT INTO "trip" VALUES(912163,417,'8/31/2015 9:15','Embarcadero at Sansome',60,'8/31/2015 9:22','Beale at Market',56,318,'Subscriber',92084); +INSERT INTO "trip" VALUES(912165,633,'8/31/2015 9:16','Harry Bridges Plaza (Ferry Building)',50,'8/31/2015 9:26','Market at Sansome',77,187,'Subscriber',95442); +INSERT INTO "trip" VALUES(912166,865,'8/31/2015 9:16','2nd at Townsend',61,'8/31/2015 9:31','Clay at Battery',41,544,'Subscriber',94111); +INSERT INTO "trip" VALUES(912167,503,'8/31/2015 9:17','Steuart at Market',74,'8/31/2015 9:25','2nd at Townsend',61,603,'Subscriber',94612); +INSERT INTO "trip" VALUES(912168,517,'8/31/2015 9:16','SJSU 4th at San Carlos',12,'8/31/2015 9:25','Santa Clara at Almaden',4,14,'Subscriber',95054); +INSERT INTO "trip" VALUES(912169,339,'8/31/2015 9:17','5th at Howard',57,'8/31/2015 9:22','Market at 10th',67,599,'Subscriber',94107); +INSERT INTO "trip" VALUES(912170,464,'8/31/2015 9:17','Steuart at Market',74,'8/31/2015 9:24','Embarcadero at Sansome',60,366,'Subscriber',94521); +INSERT INTO "trip" VALUES(912171,595,'8/31/2015 9:17','2nd at Townsend',61,'8/31/2015 9:27','Temporary Transbay Terminal (Howard at Beale)',55,469,'Subscriber',94117); +INSERT INTO "trip" VALUES(912172,677,'8/31/2015 9:17','Golden Gate at Polk',59,'8/31/2015 9:29','Steuart at Market',74,306,'Subscriber',94102); +INSERT INTO "trip" VALUES(912173,733,'8/31/2015 9:18','Temporary Transbay Terminal (Howard at Beale)',55,'8/31/2015 9:30','Embarcadero at Sansome',60,583,'Subscriber',94602); +INSERT INTO "trip" VALUES(912175,1071,'8/31/2015 9:18','Temporary Transbay Terminal (Howard at Beale)',55,'8/31/2015 9:36','South Van Ness at Market',66,368,'Subscriber',94611); +INSERT INTO "trip" VALUES(912176,650,'8/31/2015 9:18','Temporary Transbay Terminal (Howard at Beale)',55,'8/31/2015 9:29','Davis at Jackson',42,408,'Subscriber',94602); +INSERT INTO "trip" VALUES(912177,357,'8/31/2015 9:18','Beale at Market',56,'8/31/2015 9:24','Davis at Jackson',42,584,'Subscriber',94112); +INSERT INTO "trip" VALUES(912178,524,'8/31/2015 9:19','Ryland Park',84,'8/31/2015 9:27','San Jose Diridon Caltrain Station',2,702,'Subscriber',95110); +INSERT INTO "trip" VALUES(912179,490,'8/31/2015 9:19','2nd at Townsend',61,'8/31/2015 9:27','Harry Bridges Plaza (Ferry Building)',50,620,'Subscriber',94010); +INSERT INTO "trip" VALUES(912180,103,'8/31/2015 9:19','2nd at South Park',64,'8/31/2015 9:21','2nd at Townsend',61,335,'Subscriber',94107); +INSERT INTO "trip" VALUES(912181,729,'8/31/2015 9:19','Embarcadero at Sansome',60,'8/31/2015 9:31','Embarcadero at Folsom',51,454,'Subscriber',94111); +INSERT INTO "trip" VALUES(912184,777,'8/31/2015 9:20','2nd at Townsend',61,'8/31/2015 9:33','Embarcadero at Sansome',60,487,'Subscriber',94133); +INSERT INTO "trip" VALUES(912185,893,'8/31/2015 9:20','2nd at Townsend',61,'8/31/2015 9:35','Commercial at Montgomery',45,463,'Subscriber',95014); +INSERT INTO "trip" VALUES(912186,745,'8/31/2015 9:20','Market at 4th',76,'8/31/2015 9:33','2nd at South Park',64,310,'Subscriber',94105); +INSERT INTO "trip" VALUES(912187,376,'8/31/2015 9:21','San Jose Diridon Caltrain Station',2,'8/31/2015 9:27','Adobe on Almaden',5,157,'Subscriber',94110); +INSERT INTO "trip" VALUES(912188,690,'8/31/2015 9:21','2nd at Townsend',61,'8/31/2015 9:32','Davis at Jackson',42,363,'Subscriber',95111); +INSERT INTO "trip" VALUES(912191,448,'8/31/2015 9:21','Civic Center BART (7th at Market)',72,'8/31/2015 9:28','Mechanics Plaza (Market at Battery)',75,525,'Subscriber',94103); +INSERT INTO "trip" VALUES(912194,302,'8/31/2015 9:22','Civic Center BART (7th at Market)',72,'8/31/2015 9:27','Market at 10th',67,600,'Subscriber',94112); +INSERT INTO "trip" VALUES(912195,298,'8/31/2015 9:23','2nd at Townsend',61,'8/31/2015 9:28','San Francisco Caltrain (Townsend at 4th)',70,385,'Subscriber',94107); +INSERT INTO "trip" VALUES(912196,1199,'8/31/2015 9:23','San Francisco City Hall',58,'8/31/2015 9:43','Commercial at Montgomery',45,480,'Subscriber',94065); +INSERT INTO "trip" VALUES(912197,361,'8/31/2015 9:23','Howard at 2nd',63,'8/31/2015 9:29','Commercial at Montgomery',45,636,'Subscriber',94611); +INSERT INTO "trip" VALUES(912200,819,'8/31/2015 9:24','San Francisco Caltrain 2 (330 Townsend)',69,'8/31/2015 9:37','Market at 10th',67,625,'Subscriber',94107); +INSERT INTO "trip" VALUES(912201,647,'8/31/2015 9:24','5th at Howard',57,'8/31/2015 9:35','Washington at Kearny',46,351,'Subscriber',94107); +INSERT INTO "trip" VALUES(912202,314,'8/31/2015 9:24','Market at Sansome',77,'8/31/2015 9:29','2nd at Folsom',62,489,'Subscriber',94710); +INSERT INTO "trip" VALUES(912203,519,'8/31/2015 9:24','Embarcadero at Sansome',60,'8/31/2015 9:33','Steuart at Market',74,410,'Customer','nil'); +INSERT INTO "trip" VALUES(912204,430,'8/31/2015 9:24','Castro Street and El Camino Real',32,'8/31/2015 9:31','Mountain View Caltrain Station',28,148,'Subscriber',94103); +INSERT INTO "trip" VALUES(912205,563,'8/31/2015 9:24','Market at Sansome',77,'8/31/2015 9:34','Davis at Jackson',42,530,'Subscriber',94107); +INSERT INTO "trip" VALUES(912206,309,'8/31/2015 9:25','2nd at Folsom',62,'8/31/2015 9:30','Market at Sansome',77,521,'Subscriber',94107); +INSERT INTO "trip" VALUES(912209,744,'8/31/2015 9:25','2nd at Townsend',61,'8/31/2015 9:38','Davis at Jackson',42,526,'Subscriber',95124); +INSERT INTO "trip" VALUES(912210,304,'8/31/2015 9:25','5th at Howard',57,'8/31/2015 9:30','Market at 4th',76,343,'Subscriber',94103); +INSERT INTO "trip" VALUES(912211,507,'8/31/2015 9:26','Howard at 2nd',63,'8/31/2015 9:34','Civic Center BART (7th at Market)',72,393,'Subscriber',94611); +INSERT INTO "trip" VALUES(912214,390,'8/31/2015 9:26','Harry Bridges Plaza (Ferry Building)',50,'8/31/2015 9:33','Embarcadero at Sansome',60,331,'Subscriber',94111); +INSERT INTO "trip" VALUES(912217,209,'8/31/2015 9:27','Evelyn Park and Ride',30,'8/31/2015 9:31','Mountain View Caltrain Station',28,706,'Subscriber',95051); +INSERT INTO "trip" VALUES(912218,199,'8/31/2015 9:27','Market at 10th',67,'8/31/2015 9:30','Civic Center BART (7th at Market)',72,599,'Subscriber',94102); +INSERT INTO "trip" VALUES(912219,1274,'8/31/2015 9:28','Clay at Battery',41,'8/31/2015 9:49','San Francisco Caltrain (Townsend at 4th)',70,590,'Subscriber',94133); +INSERT INTO "trip" VALUES(912222,291,'8/31/2015 9:28','Embarcadero at Bryant',54,'8/31/2015 9:33','Steuart at Market',74,326,'Subscriber',94110); +INSERT INTO "trip" VALUES(912224,723,'8/31/2015 9:29','Commercial at Montgomery',45,'8/31/2015 9:41','San Francisco City Hall',58,553,'Subscriber',94105); +INSERT INTO "trip" VALUES(912225,913,'8/31/2015 9:29','Market at 10th',67,'8/31/2015 9:44','2nd at Townsend',61,600,'Subscriber',94107); +INSERT INTO "trip" VALUES(912228,711,'8/31/2015 9:29','San Francisco Caltrain (Townsend at 4th)',70,'8/31/2015 9:41','Howard at 2nd',63,385,'Subscriber',94025); +INSERT INTO "trip" VALUES(912229,588,'8/31/2015 9:29','San Francisco Caltrain 2 (330 Townsend)',69,'8/31/2015 9:39','Temporary Transbay Terminal (Howard at Beale)',55,437,'Subscriber',94030); +INSERT INTO "trip" VALUES(912230,873,'8/31/2015 9:29','Market at 10th',67,'8/31/2015 9:44','2nd at Townsend',61,411,'Subscriber',94549); +INSERT INTO "trip" VALUES(912233,684,'8/31/2015 9:30','San Francisco Caltrain 2 (330 Townsend)',69,'8/31/2015 9:41','Steuart at Market',74,374,'Subscriber',94025); +INSERT INTO "trip" VALUES(912246,336,'8/31/2015 9:32','Steuart at Market',74,'8/31/2015 9:38','Embarcadero at Vallejo',48,306,'Subscriber',94556); +INSERT INTO "trip" VALUES(912247,742,'8/31/2015 9:32','Townsend at 7th',65,'8/31/2015 9:45','Market at 4th',76,494,'Subscriber',94107); +INSERT INTO "trip" VALUES(912248,124,'8/31/2015 9:33','Beale at Market',56,'8/31/2015 9:35','Temporary Transbay Terminal (Howard at Beale)',55,607,'Subscriber',94602); +INSERT INTO "trip" VALUES(912249,1129,'8/31/2015 9:33','University and Emerson',35,'8/31/2015 9:52','University and Emerson',35,253,'Customer',94062); +INSERT INTO "trip" VALUES(912253,455,'8/31/2015 9:33','Powell Street BART',39,'8/31/2015 9:41','Townsend at 7th',65,511,'Subscriber',94518); +INSERT INTO "trip" VALUES(912254,405,'8/31/2015 9:33','Powell Street BART',39,'8/31/2015 9:40','San Francisco Caltrain 2 (330 Townsend)',69,506,'Subscriber',94606); +INSERT INTO "trip" VALUES(912257,180,'8/31/2015 9:33','2nd at Folsom',62,'8/31/2015 9:36','2nd at South Park',64,462,'Subscriber',94549); +INSERT INTO "trip" VALUES(912258,122,'8/31/2015 9:34','2nd at Folsom',62,'8/31/2015 9:36','Temporary Transbay Terminal (Howard at Beale)',55,489,'Subscriber',94158); +INSERT INTO "trip" VALUES(912261,1457,'8/31/2015 9:35','Embarcadero at Folsom',51,'8/31/2015 9:59','San Francisco Caltrain 2 (330 Townsend)',69,426,'Subscriber',94618); +INSERT INTO "trip" VALUES(912262,513,'8/31/2015 9:34','San Salvador at 1st',8,'8/31/2015 9:43','Adobe on Almaden',5,670,'Subscriber',95113); +INSERT INTO "trip" VALUES(912263,357,'8/31/2015 9:36','2nd at Townsend',61,'8/31/2015 9:42','Townsend at 7th',65,335,'Subscriber',94107); +INSERT INTO "trip" VALUES(912265,751,'8/31/2015 9:36','Market at 10th',67,'8/31/2015 9:49','Beale at Market',56,406,'Subscriber',94103); +INSERT INTO "trip" VALUES(912266,321,'8/31/2015 9:36','Mountain View City Hall',27,'8/31/2015 9:42','Mountain View Caltrain Station',28,228,'Subscriber',94041); +INSERT INTO "trip" VALUES(912267,358,'8/31/2015 9:36','Steuart at Market',74,'8/31/2015 9:42','Embarcadero at Sansome',60,410,'Subscriber',94612); +INSERT INTO "trip" VALUES(912268,458,'8/31/2015 9:37','2nd at Townsend',61,'8/31/2015 9:44','Market at Sansome',77,415,'Subscriber',94303); +INSERT INTO "trip" VALUES(912270,518,'8/31/2015 9:37','Harry Bridges Plaza (Ferry Building)',50,'8/31/2015 9:46','Embarcadero at Sansome',60,620,'Subscriber',94566); +INSERT INTO "trip" VALUES(912272,246,'8/31/2015 9:40','San Antonio Caltrain Station',29,'8/31/2015 9:44','San Antonio Shopping Center',31,10,'Subscriber',94103); +INSERT INTO "trip" VALUES(912273,1639,'8/31/2015 9:40','San Francisco Caltrain 2 (330 Townsend)',69,'8/31/2015 10:08','Steuart at Market',74,506,'Subscriber',94404); +INSERT INTO "trip" VALUES(912274,643,'8/31/2015 9:41','Grant Avenue at Columbus Avenue',73,'8/31/2015 9:51','Embarcadero at Folsom',51,290,'Subscriber',94124); +INSERT INTO "trip" VALUES(912275,869,'8/31/2015 9:42','2nd at Townsend',61,'8/31/2015 9:56','Harry Bridges Plaza (Ferry Building)',50,603,'Subscriber',94025); +INSERT INTO "trip" VALUES(912276,1072,'8/31/2015 9:42','South Van Ness at Market',66,'8/31/2015 10:00','Market at Sansome',77,395,'Customer',90038); +INSERT INTO "trip" VALUES(912277,729,'8/31/2015 9:42','2nd at Townsend',61,'8/31/2015 9:54','Embarcadero at Vallejo',48,608,'Subscriber',94086); +INSERT INTO "trip" VALUES(912278,786,'8/31/2015 9:42','Temporary Transbay Terminal (Howard at Beale)',55,'8/31/2015 9:56','Golden Gate at Polk',59,469,'Subscriber',94610); +INSERT INTO "trip" VALUES(912279,221,'8/31/2015 9:43','Palo Alto Caltrain Station',34,'8/31/2015 9:47','Cowper at University',37,140,'Subscriber',94107); +INSERT INTO "trip" VALUES(912281,461,'8/31/2015 9:44','Embarcadero at Sansome',60,'8/31/2015 9:52','Davis at Jackson',42,282,'Subscriber',94107); +INSERT INTO "trip" VALUES(912282,260,'8/31/2015 9:45','Steuart at Market',74,'8/31/2015 9:49','Embarcadero at Vallejo',48,374,'Subscriber',94501); +INSERT INTO "trip" VALUES(912283,237,'8/31/2015 9:45','Mountain View Caltrain Station',28,'8/31/2015 9:49','Mountain View City Hall',27,706,'Subscriber',94107); +INSERT INTO "trip" VALUES(912284,326,'8/31/2015 9:45','Mechanics Plaza (Market at Battery)',75,'8/31/2015 9:51','Embarcadero at Folsom',51,352,'Subscriber',94941); +INSERT INTO "trip" VALUES(912285,327,'8/31/2015 9:47','Howard at 2nd',63,'8/31/2015 9:53','Steuart at Market',74,385,'Subscriber',94105); +INSERT INTO "trip" VALUES(912288,556,'8/31/2015 9:48','Market at 4th',76,'8/31/2015 9:57','San Francisco Caltrain (Townsend at 4th)',70,546,'Subscriber',94542); +INSERT INTO "trip" VALUES(912291,525,'8/31/2015 9:48','Civic Center BART (7th at Market)',72,'8/31/2015 9:56','Beale at Market',56,393,'Subscriber',94103); +INSERT INTO "trip" VALUES(912294,600,'8/31/2015 9:50','San Francisco Caltrain (Townsend at 4th)',70,'8/31/2015 10:00','Davis at Jackson',42,590,'Subscriber',95120); +INSERT INTO "trip" VALUES(912295,250,'8/31/2015 9:51','Mountain View Caltrain Station',28,'8/31/2015 9:55','Mountain View City Hall',27,233,'Subscriber',94107); +INSERT INTO "trip" VALUES(912296,274,'8/31/2015 9:51','Mountain View Caltrain Station',28,'8/31/2015 9:56','Evelyn Park and Ride',30,46,'Subscriber',94108); +INSERT INTO "trip" VALUES(912297,251,'8/31/2015 9:51','Mountain View Caltrain Station',28,'8/31/2015 9:55','Mountain View City Hall',27,262,'Subscriber',94103); +INSERT INTO "trip" VALUES(912298,313,'8/31/2015 9:52','Mountain View Caltrain Station',28,'8/31/2015 9:57','Castro Street and El Camino Real',32,13,'Subscriber',94109); +INSERT INTO "trip" VALUES(912299,609,'8/31/2015 9:52','San Francisco Caltrain 2 (330 Townsend)',69,'8/31/2015 10:02','Embarcadero at Folsom',51,334,'Subscriber',95129); +INSERT INTO "trip" VALUES(912301,657,'8/31/2015 9:52','Mechanics Plaza (Market at Battery)',75,'8/31/2015 10:03','Market at 10th',67,448,'Subscriber',94103); +INSERT INTO "trip" VALUES(912302,490,'8/31/2015 9:53','Davis at Jackson',42,'8/31/2015 10:01','Embarcadero at Folsom',51,482,'Customer',94111); +INSERT INTO "trip" VALUES(912305,668,'8/31/2015 9:54','Temporary Transbay Terminal (Howard at Beale)',55,'8/31/2015 10:05','Market at 10th',67,470,'Subscriber',94608); +INSERT INTO "trip" VALUES(912306,715,'8/31/2015 9:54','Steuart at Market',74,'8/31/2015 10:06','San Francisco Caltrain (Townsend at 4th)',70,385,'Subscriber',94705); +INSERT INTO "trip" VALUES(912307,145,'8/31/2015 9:54','South Van Ness at Market',66,'8/31/2015 9:56','Market at 10th',67,493,'Subscriber',94596); +INSERT INTO "trip" VALUES(912311,246,'8/31/2015 9:55','Market at Sansome',77,'8/31/2015 9:59','Howard at 2nd',63,415,'Customer',94703); +INSERT INTO "trip" VALUES(912312,1249,'8/31/2015 9:55','Embarcadero at Sansome',60,'8/31/2015 10:16','Golden Gate at Polk',59,620,'Subscriber',94133); +INSERT INTO "trip" VALUES(912315,557,'8/31/2015 9:56','2nd at Townsend',61,'8/31/2015 10:05','Harry Bridges Plaza (Ferry Building)',50,559,'Subscriber',94107); +INSERT INTO "trip" VALUES(912316,430,'8/31/2015 9:57','San Francisco Caltrain (Townsend at 4th)',70,'8/31/2015 10:04','Yerba Buena Center of the Arts (3rd @ Howard)',68,187,'Subscriber',94070); +INSERT INTO "trip" VALUES(912319,570,'8/31/2015 9:58','Harry Bridges Plaza (Ferry Building)',50,'8/31/2015 10:07','2nd at Folsom',62,603,'Subscriber',94590); +INSERT INTO "trip" VALUES(912321,351,'8/31/2015 9:59','2nd at Folsom',62,'8/31/2015 10:05','San Francisco Caltrain 2 (330 Townsend)',69,325,'Subscriber',94107); +INSERT INTO "trip" VALUES(912322,295,'8/31/2015 10:00','Powell Street BART',39,'8/31/2015 10:05','San Francisco Caltrain 2 (330 Townsend)',69,601,'Subscriber',94107); +INSERT INTO "trip" VALUES(912323,539,'8/31/2015 10:02','San Francisco Caltrain (Townsend at 4th)',70,'8/31/2015 10:11','Steuart at Market',74,372,'Subscriber',94703); +INSERT INTO "trip" VALUES(912324,362,'8/31/2015 10:02','Embarcadero at Folsom',51,'8/31/2015 10:08','Mechanics Plaza (Market at Battery)',75,454,'Subscriber',94105); +INSERT INTO "trip" VALUES(912325,405,'8/31/2015 10:04','Temporary Transbay Terminal (Howard at Beale)',55,'8/31/2015 10:10','2nd at South Park',64,496,'Subscriber',94610); +INSERT INTO "trip" VALUES(912326,322,'8/31/2015 10:07','Harry Bridges Plaza (Ferry Building)',50,'8/31/2015 10:13','Embarcadero at Sansome',60,559,'Subscriber',94612); +INSERT INTO "trip" VALUES(912329,870,'8/31/2015 10:10','Embarcadero at Sansome',60,'8/31/2015 10:24','2nd at South Park',64,632,'Subscriber',94133); +INSERT INTO "trip" VALUES(912332,431,'8/31/2015 10:11','Market at 10th',67,'8/31/2015 10:18','Market at 4th',76,493,'Subscriber',94130); +INSERT INTO "trip" VALUES(912333,261,'8/31/2015 10:11','Temporary Transbay Terminal (Howard at Beale)',55,'8/31/2015 10:15','Yerba Buena Center of the Arts (3rd @ Howard)',68,607,'Subscriber',94804); +INSERT INTO "trip" VALUES(912334,540,'8/31/2015 10:11','Temporary Transbay Terminal (Howard at Beale)',55,'8/31/2015 10:20','Broadway St at Battery St',82,489,'Subscriber',94608); +INSERT INTO "trip" VALUES(912341,510,'8/31/2015 10:14','San Francisco Caltrain (Townsend at 4th)',70,'8/31/2015 10:23','Temporary Transbay Terminal (Howard at Beale)',55,385,'Subscriber',95014); +INSERT INTO "trip" VALUES(912343,799,'8/31/2015 10:15','2nd at Folsom',62,'8/31/2015 10:28','Embarcadero at Vallejo',48,603,'Subscriber',94110); +INSERT INTO "trip" VALUES(912344,509,'8/31/2015 10:15','Temporary Transbay Terminal (Howard at Beale)',55,'8/31/2015 10:24','Market at 4th',76,437,'Subscriber',94608); +INSERT INTO "trip" VALUES(912345,611,'8/31/2015 10:18','San Francisco Caltrain 2 (330 Townsend)',69,'8/31/2015 10:28','Temporary Transbay Terminal (Howard at Beale)',55,191,'Subscriber',94401); +INSERT INTO "trip" VALUES(912346,336,'8/31/2015 10:18','San Francisco Caltrain 2 (330 Townsend)',69,'8/31/2015 10:24','5th at Howard',57,236,'Subscriber',94402); +INSERT INTO "trip" VALUES(912347,550,'8/31/2015 10:18','San Francisco Caltrain (Townsend at 4th)',70,'8/31/2015 10:27','2nd at Folsom',62,522,'Subscriber',95125); +INSERT INTO "trip" VALUES(912348,755,'8/31/2015 10:19','Clay at Battery',41,'8/31/2015 10:31','Golden Gate at Polk',59,555,'Subscriber',94602); +INSERT INTO "trip" VALUES(912349,258,'8/31/2015 10:21','San Francisco Caltrain 2 (330 Townsend)',69,'8/31/2015 10:26','Townsend at 7th',65,426,'Subscriber',94402); +INSERT INTO "trip" VALUES(912350,258,'8/31/2015 10:25','Townsend at 7th',65,'8/31/2015 10:30','San Francisco Caltrain 2 (330 Townsend)',69,485,'Subscriber',94107); +INSERT INTO "trip" VALUES(912351,372,'8/31/2015 10:26','Market at 4th',76,'8/31/2015 10:32','San Francisco Caltrain (Townsend at 4th)',70,621,'Subscriber',94607); +INSERT INTO "trip" VALUES(912352,421,'8/31/2015 10:26','Mechanics Plaza (Market at Battery)',75,'8/31/2015 10:33','Washington at Kearny',46,329,'Subscriber',94702); +INSERT INTO "trip" VALUES(912353,346,'8/31/2015 10:30','Market at Sansome',77,'8/31/2015 10:35','2nd at South Park',64,521,'Subscriber',94544); +INSERT INTO "trip" VALUES(912354,996,'8/31/2015 10:30','Broadway St at Battery St',82,'8/31/2015 10:46','Broadway St at Battery St',82,283,'Subscriber',94111); +INSERT INTO "trip" VALUES(912355,582,'8/31/2015 10:30','2nd at South Park',64,'8/31/2015 10:39','Embarcadero at Vallejo',48,356,'Subscriber',94602); +INSERT INTO "trip" VALUES(912356,286,'8/31/2015 10:37','Mechanics Plaza (Market at Battery)',75,'8/31/2015 10:42','Market at 4th',76,454,'Subscriber',94133); +INSERT INTO "trip" VALUES(912357,428,'8/31/2015 10:40','Powell Street BART',39,'8/31/2015 10:47','Market at 10th',67,350,'Subscriber',94102); +INSERT INTO "trip" VALUES(912358,427,'8/31/2015 10:40','Grant Avenue at Columbus Avenue',73,'8/31/2015 10:47','Market at Sansome',77,512,'Subscriber',94104); +INSERT INTO "trip" VALUES(912359,178,'8/31/2015 10:44','Embarcadero at Bryant',54,'8/31/2015 10:47','Spear at Folsom',49,564,'Subscriber',94401); +INSERT INTO "trip" VALUES(912364,460,'8/31/2015 10:49','Embarcadero at Sansome',60,'8/31/2015 10:57','Embarcadero at Folsom',51,410,'Subscriber',94133); +INSERT INTO "trip" VALUES(912365,570,'8/31/2015 10:51','Embarcadero at Bryant',54,'8/31/2015 11:00','Clay at Battery',41,377,'Subscriber',94105); +INSERT INTO "trip" VALUES(912366,379,'8/31/2015 10:51','San Francisco Caltrain 2 (330 Townsend)',69,'8/31/2015 10:58','5th at Howard',57,325,'Subscriber',95050); +INSERT INTO "trip" VALUES(912367,803,'8/31/2015 10:52','Grant Avenue at Columbus Avenue',73,'8/31/2015 11:05','Temporary Transbay Terminal (Howard at Beale)',55,598,'Subscriber',94108); +INSERT INTO "trip" VALUES(912368,240,'8/31/2015 10:52','Post at Kearny',47,'8/31/2015 10:56','2nd at Folsom',62,300,'Subscriber',94107); +INSERT INTO "trip" VALUES(912369,256,'8/31/2015 10:52','San Francisco Caltrain (Townsend at 4th)',70,'8/31/2015 10:57','Townsend at 7th',65,621,'Subscriber',94103); +INSERT INTO "trip" VALUES(912370,468,'8/31/2015 10:52','Market at Sansome',77,'8/31/2015 11:00','Clay at Battery',41,395,'Subscriber',94703); +INSERT INTO "trip" VALUES(912371,674,'8/31/2015 10:52','San Francisco Caltrain 2 (330 Townsend)',69,'8/31/2015 11:04','Market at 10th',67,69,'Subscriber',94041); +INSERT INTO "trip" VALUES(912372,547,'8/31/2015 10:53','Grant Avenue at Columbus Avenue',73,'8/31/2015 11:02','Mechanics Plaza (Market at Battery)',75,390,'Subscriber',94133); +INSERT INTO "trip" VALUES(912373,682,'8/31/2015 10:54','San Francisco Caltrain 2 (330 Townsend)',69,'8/31/2015 11:06','Market at Sansome',77,485,'Subscriber',95014); +INSERT INTO "trip" VALUES(912374,238,'8/31/2015 11:00','Davis at Jackson',42,'8/31/2015 11:04','Embarcadero at Folsom',51,363,'Subscriber',94111); +INSERT INTO "trip" VALUES(912385,252,'8/31/2015 11:07','Mechanics Plaza (Market at Battery)',75,'8/31/2015 11:11','Market at 4th',76,525,'Subscriber',94030); +INSERT INTO "trip" VALUES(912386,405,'8/31/2015 11:10','San Francisco City Hall',58,'8/31/2015 11:17','Market at 4th',76,417,'Subscriber',94117); +INSERT INTO "trip" VALUES(912387,554,'8/31/2015 11:11','2nd at South Park',64,'8/31/2015 11:20','Powell Street BART',39,310,'Subscriber',94107); +INSERT INTO "trip" VALUES(912388,366,'8/31/2015 11:12','Market at Sansome',77,'8/31/2015 11:18','Embarcadero at Folsom',51,422,'Subscriber',94549); +INSERT INTO "trip" VALUES(912389,147,'8/31/2015 11:13','Steuart at Market',74,'8/31/2015 11:16','Embarcadero at Folsom',51,372,'Subscriber',94804); +INSERT INTO "trip" VALUES(912391,367,'8/31/2015 11:15','2nd at South Park',64,'8/31/2015 11:21','5th at Howard',57,576,'Subscriber',94107); +INSERT INTO "trip" VALUES(912393,743,'8/31/2015 11:19','2nd at South Park',64,'8/31/2015 11:31','Market at 4th',76,462,'Subscriber',94105); +INSERT INTO "trip" VALUES(912394,649,'8/31/2015 11:20','Embarcadero at Folsom',51,'8/31/2015 11:31','Market at 4th',76,388,'Subscriber',94901); +INSERT INTO "trip" VALUES(912395,250,'8/31/2015 11:21','Market at 4th',76,'8/31/2015 11:26','Market at Sansome',77,525,'Subscriber',94030); +INSERT INTO "trip" VALUES(912396,618,'8/31/2015 11:28','Golden Gate at Polk',59,'8/31/2015 11:38','Clay at Battery',41,555,'Subscriber',94602); +INSERT INTO "trip" VALUES(912397,395,'8/31/2015 11:30','2nd at Folsom',62,'8/31/2015 11:37','Mechanics Plaza (Market at Battery)',75,300,'Customer',94703); +INSERT INTO "trip" VALUES(912398,977,'8/31/2015 11:30','Townsend at 7th',65,'8/31/2015 11:47','Clay at Battery',41,426,'Subscriber',94043); +INSERT INTO "trip" VALUES(912399,558,'8/31/2015 11:31','2nd at Townsend',61,'8/31/2015 11:40','Mechanics Plaza (Market at Battery)',75,600,'Subscriber',94901); +INSERT INTO "trip" VALUES(912400,274,'8/31/2015 11:31','Townsend at 7th',65,'8/31/2015 11:36','San Francisco Caltrain 2 (330 Townsend)',69,621,'Subscriber',94107); +INSERT INTO "trip" VALUES(912401,670,'8/31/2015 11:32','Embarcadero at Bryant',54,'8/31/2015 11:43','2nd at Folsom',62,484,'Subscriber',94066); +INSERT INTO "trip" VALUES(912402,165,'8/31/2015 11:36','South Van Ness at Market',66,'8/31/2015 11:39','San Francisco City Hall',58,431,'Subscriber',94134); +INSERT INTO "trip" VALUES(912403,88,'8/31/2015 11:39','Beale at Market',56,'8/31/2015 11:40','Temporary Transbay Terminal (Howard at Beale)',55,361,'Subscriber',94114); +INSERT INTO "trip" VALUES(912404,667,'8/31/2015 11:39','2nd at South Park',64,'8/31/2015 11:50','Powell Street BART',39,521,'Subscriber',94115); +INSERT INTO "trip" VALUES(912405,801,'8/31/2015 11:39','Powell at Post (Union Square)',71,'8/31/2015 11:52','Spear at Folsom',49,611,'Subscriber',94102); +INSERT INTO "trip" VALUES(912406,365,'8/31/2015 11:43','Market at Sansome',77,'8/31/2015 11:49','2nd at South Park',64,66,'Subscriber',94705); +INSERT INTO "trip" VALUES(912407,676,'8/31/2015 11:46','Mechanics Plaza (Market at Battery)',75,'8/31/2015 11:57','Market at Sansome',77,412,'Subscriber',94122); +INSERT INTO "trip" VALUES(912408,313,'8/31/2015 11:46','Davis at Jackson',42,'8/31/2015 11:52','Temporary Transbay Terminal (Howard at Beale)',55,418,'Subscriber',94111); +INSERT INTO "trip" VALUES(912409,297,'8/31/2015 11:46','Broadway St at Battery St',82,'8/31/2015 11:51','Mechanics Plaza (Market at Battery)',75,283,'Subscriber',94133); +INSERT INTO "trip" VALUES(912410,257,'8/31/2015 11:48','Market at 10th',67,'8/31/2015 11:53','Powell Street BART',39,350,'Subscriber',94102); +INSERT INTO "trip" VALUES(912411,273,'8/31/2015 11:49','Temporary Transbay Terminal (Howard at Beale)',55,'8/31/2015 11:53','Commercial at Montgomery',45,598,'Subscriber',94403); +INSERT INTO "trip" VALUES(912412,820,'8/31/2015 11:50','Spear at Folsom',49,'8/31/2015 12:03','Townsend at 7th',65,382,'Subscriber',94105); +INSERT INTO "trip" VALUES(912413,228,'8/31/2015 11:52','Commercial at Montgomery',45,'8/31/2015 11:55','Steuart at Market',74,451,'Subscriber',94904); +INSERT INTO "trip" VALUES(912416,788,'8/31/2015 11:55','Embarcadero at Bryant',54,'8/31/2015 12:08','Embarcadero at Sansome',60,507,'Customer',80521); +INSERT INTO "trip" VALUES(912417,768,'8/31/2015 11:55','Embarcadero at Bryant',54,'8/31/2015 12:08','Embarcadero at Sansome',60,613,'Customer',80521); +INSERT INTO "trip" VALUES(912418,343,'8/31/2015 11:56','2nd at South Park',64,'8/31/2015 12:01','Market at Sansome',77,66,'Subscriber',94920); +INSERT INTO "trip" VALUES(912419,629,'8/31/2015 11:58','Embarcadero at Bryant',54,'8/31/2015 12:08','Embarcadero at Sansome',60,289,'Customer',80220); +INSERT INTO "trip" VALUES(912420,2250,'8/31/2015 11:59','2nd at South Park',64,'8/31/2015 12:36','5th at Howard',57,321,'Subscriber',94939); +INSERT INTO "trip" VALUES(912421,14880,'8/31/2015 11:59','Grant Avenue at Columbus Avenue',73,'8/31/2015 16:07','Market at 10th',67,259,'Customer',44); +INSERT INTO "trip" VALUES(912422,14874,'8/31/2015 12:00','Grant Avenue at Columbus Avenue',73,'8/31/2015 16:08','Market at 10th',67,344,'Customer',44); +INSERT INTO "trip" VALUES(912423,337,'8/31/2015 12:00','Embarcadero at Folsom',51,'8/31/2015 12:06','Davis at Jackson',42,327,'Subscriber',94114); +INSERT INTO "trip" VALUES(912425,294,'8/31/2015 12:04','Commercial at Montgomery',45,'8/31/2015 12:09','Yerba Buena Center of the Arts (3rd @ Howard)',68,575,'Subscriber',94107); +INSERT INTO "trip" VALUES(912426,291,'8/31/2015 12:04','Embarcadero at Vallejo',48,'8/31/2015 12:09','Steuart at Market',74,516,'Subscriber',94708); +INSERT INTO "trip" VALUES(912427,230,'8/31/2015 12:04','Commercial at Montgomery',45,'8/31/2015 12:08','Davis at Jackson',42,534,'Subscriber',94111); +INSERT INTO "trip" VALUES(912428,202,'8/31/2015 12:08','Yerba Buena Center of the Arts (3rd @ Howard)',68,'8/31/2015 12:11','Market at 4th',76,441,'Subscriber',94707); +INSERT INTO "trip" VALUES(912429,190,'8/31/2015 12:08','Beale at Market',56,'8/31/2015 12:11','Market at Sansome',77,33,'Subscriber',94109); +INSERT INTO "trip" VALUES(912430,3912,'8/31/2015 12:08','Golden Gate at Polk',59,'8/31/2015 13:13','Golden Gate at Polk',59,469,'Subscriber',94109); +INSERT INTO "trip" VALUES(912431,2051,'8/31/2015 12:09','Market at 4th',76,'8/31/2015 12:43','2nd at South Park',64,567,'Subscriber',94105); +INSERT INTO "trip" VALUES(912432,626,'8/31/2015 12:10','Santa Clara County Civic Center',80,'8/31/2015 12:21','Ryland Park',84,232,'Subscriber',95112); +INSERT INTO "trip" VALUES(912434,860,'8/31/2015 12:10','Golden Gate at Polk',59,'8/31/2015 12:25','Steuart at Market',74,558,'Subscriber',94109); +INSERT INTO "trip" VALUES(912435,625,'8/31/2015 12:11','Beale at Market',56,'8/31/2015 12:21','Golden Gate at Polk',59,209,'Subscriber',94109); +INSERT INTO "trip" VALUES(912436,379,'8/31/2015 12:13','South Van Ness at Market',66,'8/31/2015 12:19','Powell Street BART',39,368,'Subscriber',94803); +INSERT INTO "trip" VALUES(912437,578,'8/31/2015 12:17','Market at Sansome',77,'8/31/2015 12:27','San Francisco Caltrain (Townsend at 4th)',70,412,'Subscriber',94549); +INSERT INTO "trip" VALUES(912438,299,'8/31/2015 12:18','Steuart at Market',74,'8/31/2015 12:23','Embarcadero at Vallejo',48,516,'Subscriber',94708); +INSERT INTO "trip" VALUES(912439,1436,'8/31/2015 12:18','Cowper at University',37,'8/31/2015 12:42','Cowper at University',37,75,'Customer',94062); +INSERT INTO "trip" VALUES(912441,382,'8/31/2015 12:19','Spear at Folsom',49,'8/31/2015 12:26','Embarcadero at Vallejo',48,514,'Subscriber',94941); +INSERT INTO "trip" VALUES(912442,326,'8/31/2015 12:21','Davis at Jackson',42,'8/31/2015 12:26','Embarcadero at Folsom',51,327,'Subscriber',94114); +INSERT INTO "trip" VALUES(912443,133,'8/31/2015 12:21','Market at 4th',76,'8/31/2015 12:23','Powell Street BART',39,494,'Subscriber',94102); +INSERT INTO "trip" VALUES(912444,391,'8/31/2015 12:21','Spear at Folsom',49,'8/31/2015 12:28','2nd at Townsend',61,479,'Subscriber',94105); +INSERT INTO "trip" VALUES(912445,116,'8/31/2015 12:22','Broadway St at Battery St',82,'8/31/2015 12:24','Davis at Jackson',42,489,'Subscriber',94618); +INSERT INTO "trip" VALUES(912446,218,'8/31/2015 12:24','Embarcadero at Sansome',60,'8/31/2015 12:28','Davis at Jackson',42,331,'Subscriber',94595); +INSERT INTO "trip" VALUES(912447,432,'8/31/2015 12:26','Market at 4th',76,'8/31/2015 12:34','San Francisco Caltrain (Townsend at 4th)',70,275,'Subscriber',94105); +INSERT INTO "trip" VALUES(912448,224,'8/31/2015 12:26','2nd at South Park',64,'8/31/2015 12:30','San Francisco Caltrain (Townsend at 4th)',70,315,'Subscriber',94110); +INSERT INTO "trip" VALUES(912449,654,'8/31/2015 12:27','Golden Gate at Polk',59,'8/31/2015 12:37','Washington at Kearny',46,209,'Subscriber',94105); +INSERT INTO "trip" VALUES(912450,274,'8/31/2015 12:27','Market at Sansome',77,'8/31/2015 12:31','Davis at Jackson',42,66,'Customer',94117); +INSERT INTO "trip" VALUES(912453,604,'8/31/2015 12:37','Mechanics Plaza (Market at Battery)',75,'8/31/2015 12:47','2nd at Townsend',61,405,'Subscriber',94901); +INSERT INTO "trip" VALUES(912454,339,'8/31/2015 12:37','2nd at Townsend',61,'8/31/2015 12:43','2nd at Folsom',62,479,'Subscriber',94070); +INSERT INTO "trip" VALUES(912455,2092,'8/31/2015 12:40','SJSU 4th at San Carlos',12,'8/31/2015 13:14','SJSU 4th at San Carlos',12,186,'Customer',''); +INSERT INTO "trip" VALUES(912456,448,'8/31/2015 12:41','Powell Street BART',39,'8/31/2015 12:48','Market at 10th',67,111,'Subscriber',94102); +INSERT INTO "trip" VALUES(912457,546,'8/31/2015 12:41','Temporary Transbay Terminal (Howard at Beale)',55,'8/31/2015 12:50','Post at Kearny',47,497,'Subscriber',94061); +INSERT INTO "trip" VALUES(912458,251,'8/31/2015 12:41','Temporary Transbay Terminal (Howard at Beale)',55,'8/31/2015 12:45','Beale at Market',56,191,'Subscriber',94111); +INSERT INTO "trip" VALUES(912459,436,'8/31/2015 12:41','Embarcadero at Folsom',51,'8/31/2015 12:49','Market at Sansome',77,327,'Subscriber',94549); +INSERT INTO "trip" VALUES(912460,176,'8/31/2015 12:41','Civic Center BART (7th at Market)',72,'8/31/2015 12:44','Powell Street BART',39,599,'Subscriber',94501); +INSERT INTO "trip" VALUES(912461,86,'8/31/2015 12:42','Beale at Market',56,'8/31/2015 12:44','Temporary Transbay Terminal (Howard at Beale)',55,406,'Subscriber',94010); +INSERT INTO "trip" VALUES(912462,614,'8/31/2015 12:44','Post at Kearny',47,'8/31/2015 12:54','Market at 10th',67,425,'Subscriber',94110); +INSERT INTO "trip" VALUES(912463,508,'8/31/2015 12:45','Embarcadero at Vallejo',48,'8/31/2015 12:54','Market at Sansome',77,608,'Subscriber',94002); +INSERT INTO "trip" VALUES(912464,1288,'8/31/2015 12:46','Harry Bridges Plaza (Ferry Building)',50,'8/31/2015 13:08','Broadway St at Battery St',82,384,'Subscriber',94110); +INSERT INTO "trip" VALUES(912465,905,'8/31/2015 12:49','San Francisco City Hall',58,'8/31/2015 13:04','Beale at Market',56,878,'Subscriber',94103); +INSERT INTO "trip" VALUES(912466,416,'8/31/2015 12:51','Japantown',9,'8/31/2015 12:58','San Pedro Square',6,102,'Subscriber',95112); +INSERT INTO "trip" VALUES(912467,409,'8/31/2015 12:53','Steuart at Market',74,'8/31/2015 12:59','Post at Kearny',47,326,'Subscriber',94110); +INSERT INTO "trip" VALUES(912468,591,'8/31/2015 12:53','Powell Street BART',39,'8/31/2015 13:03','South Van Ness at Market',66,368,'Subscriber',94803); +INSERT INTO "trip" VALUES(912469,374,'8/31/2015 12:57','2nd at Townsend',61,'8/31/2015 13:03','Market at Sansome',77,405,'Subscriber',94107); +INSERT INTO "trip" VALUES(912470,841,'8/31/2015 12:58','Powell at Post (Union Square)',71,'8/31/2015 13:12','Broadway St at Battery St',82,614,'Subscriber',94118); +INSERT INTO "trip" VALUES(912471,920,'8/31/2015 13:06','Harry Bridges Plaza (Ferry Building)',50,'8/31/2015 13:22','San Francisco Caltrain (Townsend at 4th)',70,387,'Subscriber',94107); +INSERT INTO "trip" VALUES(912472,642,'8/31/2015 13:07','Embarcadero at Bryant',54,'8/31/2015 13:18','Embarcadero at Sansome',60,457,'Subscriber',94105); +INSERT INTO "trip" VALUES(912473,1064,'8/31/2015 13:08','Broadway St at Battery St',82,'8/31/2015 13:26','Market at 4th',76,384,'Subscriber',94110); +INSERT INTO "trip" VALUES(912474,230,'8/31/2015 13:09','Market at 10th',67,'8/31/2015 13:13','Civic Center BART (7th at Market)',72,69,'Subscriber',94118); +INSERT INTO "trip" VALUES(912476,569,'8/31/2015 13:10','Golden Gate at Polk',59,'8/31/2015 13:20','Beale at Market',56,620,'Subscriber',94109); +INSERT INTO "trip" VALUES(912477,579,'8/31/2015 13:11','Market at Sansome',77,'8/31/2015 13:20','Embarcadero at Sansome',60,405,'Subscriber',94111); +INSERT INTO "trip" VALUES(912478,216,'8/31/2015 13:13','2nd at South Park',64,'8/31/2015 13:16','Howard at 2nd',63,568,'Subscriber',94118); +INSERT INTO "trip" VALUES(912479,284,'8/31/2015 13:13','Market at Sansome',77,'8/31/2015 13:17','Davis at Jackson',42,33,'Subscriber',94306); +INSERT INTO "trip" VALUES(912480,483,'8/31/2015 13:16','Steuart at Market',74,'8/31/2015 13:24','5th at Howard',57,506,'Subscriber',94114); +INSERT INTO "trip" VALUES(912481,112,'8/31/2015 13:16','Beale at Market',56,'8/31/2015 13:18','Temporary Transbay Terminal (Howard at Beale)',55,191,'Subscriber',94111); +INSERT INTO "trip" VALUES(912483,283,'8/31/2015 13:18','Adobe on Almaden',5,'8/31/2015 13:23','San Salvador at 1st',8,670,'Subscriber',95113); +INSERT INTO "trip" VALUES(912484,296,'8/31/2015 13:18','2nd at Folsom',62,'8/31/2015 13:23','Commercial at Montgomery',45,522,'Subscriber',94107); +INSERT INTO "trip" VALUES(912485,438,'8/31/2015 13:20','Embarcadero at Folsom',51,'8/31/2015 13:27','San Francisco Caltrain 2 (330 Townsend)',69,436,'Subscriber',94107); +INSERT INTO "trip" VALUES(912486,1033,'8/31/2015 13:20','Market at 10th',67,'8/31/2015 13:37','2nd at South Park',64,111,'Subscriber',94552); +INSERT INTO "trip" VALUES(912487,355,'8/31/2015 13:20','Mechanics Plaza (Market at Battery)',75,'8/31/2015 13:26','Embarcadero at Folsom',51,459,'Subscriber',95442); +INSERT INTO "trip" VALUES(912489,371,'8/31/2015 13:23','Harry Bridges Plaza (Ferry Building)',50,'8/31/2015 13:29','Embarcadero at Bryant',54,455,'Subscriber',94611); +INSERT INTO "trip" VALUES(912490,232,'8/31/2015 13:23','Powell Street BART',39,'8/31/2015 13:27','Civic Center BART (7th at Market)',72,599,'Subscriber',94501); +INSERT INTO "trip" VALUES(912491,248,'8/31/2015 13:24','Market at Sansome',77,'8/31/2015 13:28','2nd at Folsom',62,327,'Subscriber',94705); +INSERT INTO "trip" VALUES(912492,705,'8/31/2015 13:25','Steuart at Market',74,'8/31/2015 13:37','5th at Howard',57,478,'Subscriber',94112); +INSERT INTO "trip" VALUES(912493,894,'8/31/2015 13:26','Spear at Folsom',49,'8/31/2015 13:41','Golden Gate at Polk',59,631,'Subscriber',94109); +INSERT INTO "trip" VALUES(912494,629,'8/31/2015 13:28','Market at 4th',76,'8/31/2015 13:38','San Francisco City Hall',58,384,'Subscriber',94110); +INSERT INTO "trip" VALUES(912495,749,'8/31/2015 13:28','Commercial at Montgomery',45,'8/31/2015 13:41','Commercial at Montgomery',45,598,'Subscriber',94305); +INSERT INTO "trip" VALUES(912497,604,'8/31/2015 13:29','Civic Center BART (7th at Market)',72,'8/31/2015 13:39','Commercial at Montgomery',45,599,'Subscriber',94702); +INSERT INTO "trip" VALUES(912498,469,'8/31/2015 13:29','Ryland Park',84,'8/31/2015 13:37','Santa Clara County Civic Center',80,232,'Subscriber',95112); +INSERT INTO "trip" VALUES(912499,643,'8/31/2015 13:31','San Pedro Square',6,'8/31/2015 13:42','Santa Clara County Civic Center',80,308,'Subscriber',95110); +INSERT INTO "trip" VALUES(912500,749,'8/31/2015 13:32','Beale at Market',56,'8/31/2015 13:44','Market at 10th',67,878,'Subscriber',94103); +INSERT INTO "trip" VALUES(912501,1305,'8/31/2015 13:35','Mountain View City Hall',27,'8/31/2015 13:57','San Antonio Caltrain Station',29,194,'Subscriber',95032); +INSERT INTO "trip" VALUES(912502,909,'8/31/2015 13:37','Post at Kearny',47,'8/31/2015 13:52','Steuart at Market',74,326,'Subscriber',94110); +INSERT INTO "trip" VALUES(912503,104,'8/31/2015 13:37','Civic Center BART (7th at Market)',72,'8/31/2015 13:39','Powell Street BART',39,519,'Subscriber',94608); +INSERT INTO "trip" VALUES(912504,260,'8/31/2015 13:39','2nd at Folsom',62,'8/31/2015 13:44','2nd at Townsend',61,327,'Subscriber',94705); +INSERT INTO "trip" VALUES(912505,1107,'8/31/2015 13:39','Powell at Post (Union Square)',71,'8/31/2015 13:57','Embarcadero at Sansome',60,511,'Subscriber',94109); +INSERT INTO "trip" VALUES(912506,14443,'8/31/2015 13:40','Civic Center BART (7th at Market)',72,'8/31/2015 17:40','Civic Center BART (7th at Market)',72,562,'Customer',19123); +INSERT INTO "trip" VALUES(912507,14424,'8/31/2015 13:40','Civic Center BART (7th at Market)',72,'8/31/2015 17:40','Civic Center BART (7th at Market)',72,69,'Customer',19123); +INSERT INTO "trip" VALUES(912508,534,'8/31/2015 13:40','Steuart at Market',74,'8/31/2015 13:49','Washington at Kearny',46,451,'Subscriber',94702); +INSERT INTO "trip" VALUES(912509,21124,'8/31/2015 13:41','Powell Street BART',39,'8/31/2015 19:33','Civic Center BART (7th at Market)',72,350,'Customer',27607); +INSERT INTO "trip" VALUES(912510,580,'8/31/2015 13:41','Mechanics Plaza (Market at Battery)',75,'8/31/2015 13:51','Embarcadero at Bryant',54,477,'Subscriber',94105); +INSERT INTO "trip" VALUES(912511,224,'8/31/2015 13:42','Market at Sansome',77,'8/31/2015 13:46','Harry Bridges Plaza (Ferry Building)',50,687,'Subscriber',94602); +INSERT INTO "trip" VALUES(912512,355,'8/31/2015 13:43','Civic Center BART (7th at Market)',72,'8/31/2015 13:49','Post at Kearny',47,617,'Subscriber',94118); +INSERT INTO "trip" VALUES(912513,435,'8/31/2015 13:43','Beale at Market',56,'8/31/2015 13:51','Embarcadero at Vallejo',48,393,'Subscriber',94610); +INSERT INTO "trip" VALUES(912514,883,'8/31/2015 13:44','Temporary Transbay Terminal (Howard at Beale)',55,'8/31/2015 13:58','Embarcadero at Sansome',60,406,'Subscriber',94114); +INSERT INTO "trip" VALUES(912515,20926,'8/31/2015 13:44','Powell Street BART',39,'8/31/2015 19:33','Civic Center BART (7th at Market)',72,519,'Customer',27607); +INSERT INTO "trip" VALUES(912516,342,'8/31/2015 13:46','Post at Kearny',47,'8/31/2015 13:51','Temporary Transbay Terminal (Howard at Beale)',55,403,'Subscriber',94061); +INSERT INTO "trip" VALUES(912517,348,'8/31/2015 13:50','Powell Street BART',39,'8/31/2015 13:56','San Francisco Caltrain 2 (330 Townsend)',69,421,'Subscriber',94107); +INSERT INTO "trip" VALUES(912518,339,'8/31/2015 13:51','Harry Bridges Plaza (Ferry Building)',50,'8/31/2015 13:57','Embarcadero at Sansome',60,687,'Subscriber',94131); +INSERT INTO "trip" VALUES(912519,435,'8/31/2015 13:52','Market at Sansome',77,'8/31/2015 13:59','Embarcadero at Vallejo',48,619,'Subscriber',94002); +INSERT INTO "trip" VALUES(912520,205,'8/31/2015 13:56','Clay at Battery',41,'8/31/2015 13:59','Market at Sansome',77,426,'Customer',94117); +INSERT INTO "trip" VALUES(912521,295,'8/31/2015 13:56','Commercial at Montgomery',45,'8/31/2015 14:01','Market at Sansome',77,463,'Subscriber',94703); +INSERT INTO "trip" VALUES(912522,974,'8/31/2015 13:57','Clay at Battery',41,'8/31/2015 14:13','San Francisco Caltrain 2 (330 Townsend)',69,555,'Subscriber',94043); +INSERT INTO "trip" VALUES(912523,712,'8/31/2015 13:58','Embarcadero at Sansome',60,'8/31/2015 14:10','Embarcadero at Bryant',54,613,'Customer',80521); +INSERT INTO "trip" VALUES(912524,719,'8/31/2015 13:58','Embarcadero at Sansome',60,'8/31/2015 14:10','Embarcadero at Bryant',54,507,'Customer',80521); +INSERT INTO "trip" VALUES(912525,672,'8/31/2015 13:59','Embarcadero at Sansome',60,'8/31/2015 14:10','Embarcadero at Bryant',54,289,'Customer',80220); +INSERT INTO "trip" VALUES(912527,1250,'8/31/2015 14:00','2nd at South Park',64,'8/31/2015 14:20','Market at 10th',67,111,'Subscriber',94552); +INSERT INTO "trip" VALUES(912528,711,'8/31/2015 14:02','2nd at Townsend',61,'8/31/2015 14:14','Powell Street BART',39,411,'Subscriber',94070); +INSERT INTO "trip" VALUES(912529,669,'8/31/2015 14:06','Steuart at Market',74,'8/31/2015 14:17','San Francisco Caltrain (Townsend at 4th)',70,558,'Subscriber',94002); +INSERT INTO "trip" VALUES(912530,327,'8/31/2015 14:06','Davis at Jackson',42,'8/31/2015 14:12','Market at Sansome',77,33,'Subscriber',94306); +INSERT INTO "trip" VALUES(912531,385,'8/31/2015 14:06','Embarcadero at Folsom',51,'8/31/2015 14:13','Howard at 2nd',63,397,'Subscriber',94105); +INSERT INTO "trip" VALUES(912532,23124,'8/31/2015 14:08','Embarcadero at Vallejo',48,'8/31/2015 20:33','Golden Gate at Polk',59,374,'Customer',88113420); +INSERT INTO "trip" VALUES(912533,23088,'8/31/2015 14:09','Embarcadero at Vallejo',48,'8/31/2015 20:34','Golden Gate at Polk',59,306,'Customer',88113420); +INSERT INTO "trip" VALUES(912534,291,'8/31/2015 14:09','Powell Street BART',39,'8/31/2015 14:14','Market at 10th',67,494,'Subscriber',94608); +INSERT INTO "trip" VALUES(912535,145,'8/31/2015 14:14','Beale at Market',56,'8/31/2015 14:17','Temporary Transbay Terminal (Howard at Beale)',55,620,'Subscriber',94130); +INSERT INTO "trip" VALUES(912536,672,'8/31/2015 14:19','2nd at Townsend',61,'8/31/2015 14:30','Powell at Post (Union Square)',71,327,'Subscriber',94107); +INSERT INTO "trip" VALUES(912537,1140,'8/31/2015 14:20','Mechanics Plaza (Market at Battery)',75,'8/31/2015 14:39','San Francisco Caltrain 2 (330 Townsend)',69,375,'Customer',94301); +INSERT INTO "trip" VALUES(912538,271,'8/31/2015 14:20','Temporary Transbay Terminal (Howard at Beale)',55,'8/31/2015 14:25','Embarcadero at Bryant',54,403,'Subscriber',94403); +INSERT INTO "trip" VALUES(912539,482,'8/31/2015 14:24','Steuart at Market',74,'8/31/2015 14:32','2nd at Townsend',61,326,'Subscriber',94107); +INSERT INTO "trip" VALUES(912540,571,'8/31/2015 14:25','5th at Howard',57,'8/31/2015 14:35','2nd at Townsend',61,592,'Subscriber',94070); +INSERT INTO "trip" VALUES(912541,365,'8/31/2015 14:31','Post at Kearny',47,'8/31/2015 14:37','Harry Bridges Plaza (Ferry Building)',50,617,'Subscriber',94957); +INSERT INTO "trip" VALUES(912542,430,'8/31/2015 14:34','Market at 4th',76,'8/31/2015 14:41','Market at 10th',67,388,'Subscriber',94133); +INSERT INTO "trip" VALUES(912543,573,'8/31/2015 14:34','Embarcadero at Sansome',60,'8/31/2015 14:44','Market at Sansome',77,423,'Subscriber',94111); +INSERT INTO "trip" VALUES(912544,1580,'8/31/2015 14:38','San Salvador at 1st',8,'8/31/2015 15:05','San Salvador at 1st',8,245,'Subscriber',95070); +INSERT INTO "trip" VALUES(912545,653,'8/31/2015 14:39','Temporary Transbay Terminal (Howard at Beale)',55,'8/31/2015 14:50','San Francisco Caltrain 2 (330 Townsend)',69,56,'Subscriber',94158); +INSERT INTO "trip" VALUES(912546,352,'8/31/2015 14:43','Embarcadero at Sansome',60,'8/31/2015 14:49','Steuart at Market',74,687,'Subscriber',94131); +INSERT INTO "trip" VALUES(912547,773,'8/31/2015 14:44','San Francisco Caltrain (Townsend at 4th)',70,'8/31/2015 14:57','Broadway St at Battery St',82,440,'Subscriber',94105); +INSERT INTO "trip" VALUES(912548,268,'8/31/2015 14:45','Commercial at Montgomery',45,'8/31/2015 14:49','Market at Sansome',77,599,'Subscriber',94702); +INSERT INTO "trip" VALUES(912549,644,'8/31/2015 14:45','San Francisco Caltrain (Townsend at 4th)',70,'8/31/2015 14:56','Market at Sansome',77,546,'Subscriber',94549); +INSERT INTO "trip" VALUES(912550,523,'8/31/2015 14:46','San Francisco City Hall',58,'8/31/2015 14:54','Powell at Post (Union Square)',71,609,'Subscriber',94107); +INSERT INTO "trip" VALUES(912551,629,'8/31/2015 14:49','Townsend at 7th',65,'8/31/2015 15:00','Market at 10th',67,382,'Subscriber',94102); +INSERT INTO "trip" VALUES(912552,1007,'8/31/2015 14:56','Cowper at University',37,'8/31/2015 15:13','California Ave Caltrain Station',36,75,'Customer',94062); +INSERT INTO "trip" VALUES(912556,926,'8/31/2015 14:58','Townsend at 7th',65,'8/31/2015 15:14','Townsend at 7th',65,602,'Subscriber',94551); +INSERT INTO "trip" VALUES(912559,454,'8/31/2015 15:00','Market at 4th',76,'8/31/2015 15:07','Steuart at Market',74,343,'Subscriber',94117); +INSERT INTO "trip" VALUES(912560,415,'8/31/2015 15:04','South Van Ness at Market',66,'8/31/2015 15:11','Townsend at 7th',65,288,'Subscriber',94107); +INSERT INTO "trip" VALUES(912561,1410,'8/31/2015 15:05','Steuart at Market',74,'8/31/2015 15:29','San Francisco Caltrain 2 (330 Townsend)',69,687,'Subscriber',94066); +INSERT INTO "trip" VALUES(912562,778,'8/31/2015 15:06','Beale at Market',56,'8/31/2015 15:19','San Francisco Caltrain (Townsend at 4th)',70,348,'Subscriber',95051); +INSERT INTO "trip" VALUES(912563,611,'8/31/2015 15:07','San Francisco Caltrain (Townsend at 4th)',70,'8/31/2015 15:17','Powell Street BART',39,412,'Subscriber',94549); +INSERT INTO "trip" VALUES(912564,379,'8/31/2015 15:08','2nd at Townsend',61,'8/31/2015 15:14','Harry Bridges Plaza (Ferry Building)',50,604,'Subscriber',94945); +INSERT INTO "trip" VALUES(912565,425,'8/31/2015 15:08','2nd at Townsend',61,'8/31/2015 15:15','Steuart at Market',74,527,'Subscriber',94107); +INSERT INTO "trip" VALUES(912566,407,'8/31/2015 15:10','South Van Ness at Market',66,'8/31/2015 15:17','Powell Street BART',39,677,'Subscriber',94601); +INSERT INTO "trip" VALUES(912567,270,'8/31/2015 15:11','Mechanics Plaza (Market at Battery)',75,'8/31/2015 15:16','Post at Kearny',47,283,'Subscriber',94105); +INSERT INTO "trip" VALUES(912568,432,'8/31/2015 15:12','Howard at 2nd',63,'8/31/2015 15:19','Harry Bridges Plaza (Ferry Building)',50,415,'Subscriber',94941); +INSERT INTO "trip" VALUES(912569,330,'8/31/2015 15:12','2nd at Folsom',62,'8/31/2015 15:18','Harry Bridges Plaza (Ferry Building)',50,371,'Subscriber',94558); +INSERT INTO "trip" VALUES(912570,5594,'8/31/2015 15:13','Embarcadero at Sansome',60,'8/31/2015 16:46','Embarcadero at Sansome',60,559,'Customer',91942); +INSERT INTO "trip" VALUES(912571,543,'8/31/2015 15:14','Powell at Post (Union Square)',71,'8/31/2015 15:23','San Francisco City Hall',58,609,'Subscriber',94107); +INSERT INTO "trip" VALUES(912576,324,'8/31/2015 15:17','Temporary Transbay Terminal (Howard at Beale)',55,'8/31/2015 15:22','Steuart at Market',74,418,'Customer','nil'); +INSERT INTO "trip" VALUES(912585,538,'8/31/2015 15:22','Harry Bridges Plaza (Ferry Building)',50,'8/31/2015 15:31','Market at 4th',76,434,'Subscriber',94117); +INSERT INTO "trip" VALUES(912586,1484,'8/31/2015 15:23','California Ave Caltrain Station',36,'8/31/2015 15:48','University and Emerson',35,75,'Customer',94062); +INSERT INTO "trip" VALUES(912587,437,'8/31/2015 15:25','2nd at Folsom',62,'8/31/2015 15:33','Davis at Jackson',42,479,'Subscriber',94117); +INSERT INTO "trip" VALUES(912588,486,'8/31/2015 15:26','Embarcadero at Sansome',60,'8/31/2015 15:34','Commercial at Montgomery',45,487,'Subscriber',94102); +INSERT INTO "trip" VALUES(912589,296,'8/31/2015 15:26','Howard at 2nd',63,'8/31/2015 15:31','Embarcadero at Folsom',51,354,'Subscriber',94105); +INSERT INTO "trip" VALUES(912591,741,'8/31/2015 15:28','Harry Bridges Plaza (Ferry Building)',50,'8/31/2015 15:41','Harry Bridges Plaza (Ferry Building)',50,618,'Subscriber',94606); +INSERT INTO "trip" VALUES(912592,656,'8/31/2015 15:29','San Francisco Caltrain (Townsend at 4th)',70,'8/31/2015 15:40','Steuart at Market',74,315,'Subscriber',94066); +INSERT INTO "trip" VALUES(912593,2979,'8/31/2015 15:31','Embarcadero at Sansome',60,'8/31/2015 16:21','San Francisco Caltrain (Townsend at 4th)',70,405,'Subscriber',95129); +INSERT INTO "trip" VALUES(912594,1327,'8/31/2015 15:34','Harry Bridges Plaza (Ferry Building)',50,'8/31/2015 15:56','Townsend at 7th',65,541,'Subscriber',94103); +INSERT INTO "trip" VALUES(912596,839,'8/31/2015 15:35','Embarcadero at Folsom',51,'8/31/2015 15:49','San Francisco Caltrain (Townsend at 4th)',70,290,'Subscriber',95148); +INSERT INTO "trip" VALUES(912601,930,'8/31/2015 15:38','Temporary Transbay Terminal (Howard at Beale)',55,'8/31/2015 15:53','Market at 10th',67,361,'Subscriber',94117); +INSERT INTO "trip" VALUES(912606,292,'8/31/2015 15:39','Powell Street BART',39,'8/31/2015 15:44','Market at 10th',67,677,'Subscriber',94601); +INSERT INTO "trip" VALUES(912609,525,'8/31/2015 15:40','Beale at Market',56,'8/31/2015 15:49','Powell Street BART',39,392,'Subscriber',95111); +INSERT INTO "trip" VALUES(912614,750,'8/31/2015 15:45','Mechanics Plaza (Market at Battery)',75,'8/31/2015 15:57','San Francisco Caltrain 2 (330 Townsend)',69,109,'Subscriber',94040); +INSERT INTO "trip" VALUES(912616,652,'8/31/2015 15:45','Temporary Transbay Terminal (Howard at Beale)',55,'8/31/2015 15:56','San Francisco Caltrain (Townsend at 4th)',70,620,'Subscriber',94030); +INSERT INTO "trip" VALUES(912617,511,'8/31/2015 15:46','Howard at 2nd',63,'8/31/2015 15:54','San Francisco Caltrain 2 (330 Townsend)',69,277,'Subscriber',94111); +INSERT INTO "trip" VALUES(912619,416,'8/31/2015 15:47','Howard at 2nd',63,'8/31/2015 15:54','Broadway St at Battery St',82,292,'Subscriber',94107); +INSERT INTO "trip" VALUES(912620,194,'8/31/2015 15:48','Temporary Transbay Terminal (Howard at Beale)',55,'8/31/2015 15:51','Beale at Market',56,385,'Subscriber',94130); +INSERT INTO "trip" VALUES(912621,99,'8/31/2015 15:49','Embarcadero at Vallejo',48,'8/31/2015 15:51','Davis at Jackson',42,320,'Subscriber',94112); +INSERT INTO "trip" VALUES(912622,794,'8/31/2015 15:49','Clay at Battery',41,'8/31/2015 16:02','San Francisco Caltrain (Townsend at 4th)',70,377,'Subscriber',94401); +INSERT INTO "trip" VALUES(912623,381,'8/31/2015 15:50','Embarcadero at Sansome',60,'8/31/2015 15:57','Harry Bridges Plaza (Ferry Building)',50,406,'Subscriber',94947); +INSERT INTO "trip" VALUES(912624,650,'8/31/2015 15:51','Beale at Market',56,'8/31/2015 16:02','San Francisco Caltrain 2 (330 Townsend)',69,318,'Subscriber',95136); +INSERT INTO "trip" VALUES(912625,661,'8/31/2015 15:52','Broadway St at Battery St',82,'8/31/2015 16:03','San Francisco Caltrain (Townsend at 4th)',70,338,'Subscriber',95054); +INSERT INTO "trip" VALUES(912626,649,'8/31/2015 15:52','Broadway St at Battery St',82,'8/31/2015 16:03','San Francisco Caltrain (Townsend at 4th)',70,134,'Subscriber',95120); +INSERT INTO "trip" VALUES(912627,656,'8/31/2015 15:53','Beale at Market',56,'8/31/2015 16:03','San Francisco Caltrain 2 (330 Townsend)',69,385,'Subscriber',94085); +INSERT INTO "trip" VALUES(912628,649,'8/31/2015 15:53','South Van Ness at Market',66,'8/31/2015 16:04','Mechanics Plaza (Market at Battery)',75,368,'Subscriber',94609); +INSERT INTO "trip" VALUES(912629,837,'8/31/2015 15:53','Townsend at 7th',65,'8/31/2015 16:07','Harry Bridges Plaza (Ferry Building)',50,288,'Subscriber',94501); +INSERT INTO "trip" VALUES(912630,560,'8/31/2015 15:54','Spear at Folsom',49,'8/31/2015 16:04','San Francisco Caltrain (Townsend at 4th)',70,362,'Subscriber',94306); +INSERT INTO "trip" VALUES(912631,442,'8/31/2015 15:56','2nd at Townsend',61,'8/31/2015 16:03','Market at Sansome',77,592,'Subscriber',94539); +INSERT INTO "trip" VALUES(912632,386,'8/31/2015 15:56','Townsend at 7th',65,'8/31/2015 16:03','Civic Center BART (7th at Market)',72,541,'Subscriber',94598); +INSERT INTO "trip" VALUES(912633,111,'8/31/2015 15:57','Davis at Jackson',42,'8/31/2015 15:59','Embarcadero at Vallejo',48,282,'Subscriber',94112); +INSERT INTO "trip" VALUES(912634,455,'8/31/2015 15:57','Spear at Folsom',49,'8/31/2015 16:05','San Francisco Caltrain (Townsend at 4th)',70,587,'Subscriber',94105); +INSERT INTO "trip" VALUES(912635,265,'8/31/2015 15:59','Clay at Battery',41,'8/31/2015 16:03','Temporary Transbay Terminal (Howard at Beale)',55,395,'Subscriber',94501); +INSERT INTO "trip" VALUES(912636,836,'8/31/2015 16:00','2nd at South Park',64,'8/31/2015 16:14','Harry Bridges Plaza (Ferry Building)',50,632,'Customer',19134); +INSERT INTO "trip" VALUES(912637,846,'8/31/2015 16:00','2nd at South Park',64,'8/31/2015 16:14','Harry Bridges Plaza (Ferry Building)',50,498,'Customer',19127); +INSERT INTO "trip" VALUES(912638,390,'8/31/2015 16:02','Yerba Buena Center of the Arts (3rd @ Howard)',68,'8/31/2015 16:09','Powell Street BART',39,607,'Subscriber',94804); +INSERT INTO "trip" VALUES(912639,622,'8/31/2015 16:04','Steuart at Market',74,'8/31/2015 16:15','San Francisco Caltrain (Townsend at 4th)',70,527,'Subscriber',94061); +INSERT INTO "trip" VALUES(912640,674,'8/31/2015 16:04','Steuart at Market',74,'8/31/2015 16:16','San Francisco Caltrain (Townsend at 4th)',70,343,'Subscriber',95008); +INSERT INTO "trip" VALUES(912641,889,'8/31/2015 16:05','Davis at Jackson',42,'8/31/2015 16:19','San Francisco Caltrain (Townsend at 4th)',70,584,'Subscriber',94040); +INSERT INTO "trip" VALUES(912642,351,'8/31/2015 16:05','5th at Howard',57,'8/31/2015 16:11','Temporary Transbay Terminal (Howard at Beale)',55,547,'Subscriber',94501); +INSERT INTO "trip" VALUES(912643,360,'8/31/2015 16:06','Embarcadero at Sansome',60,'8/31/2015 16:12','Harry Bridges Plaza (Ferry Building)',50,419,'Subscriber',94501); +INSERT INTO "trip" VALUES(912645,420,'8/31/2015 16:06','Market at 10th',67,'8/31/2015 16:13','San Francisco Caltrain 2 (330 Townsend)',69,677,'Subscriber',94404); +INSERT INTO "trip" VALUES(912646,427,'8/31/2015 16:06','Market at 10th',67,'8/31/2015 16:13','San Francisco Caltrain 2 (330 Townsend)',69,388,'Subscriber',94041); +INSERT INTO "trip" VALUES(912647,284,'8/31/2015 16:06','Townsend at 7th',65,'8/31/2015 16:10','San Francisco Caltrain 2 (330 Townsend)',69,602,'Subscriber',94086); +INSERT INTO "trip" VALUES(912649,595,'8/31/2015 16:07','San Francisco Caltrain 2 (330 Townsend)',69,'8/31/2015 16:17','Temporary Transbay Terminal (Howard at Beale)',55,385,'Subscriber',94602); +INSERT INTO "trip" VALUES(912650,217,'8/31/2015 16:07','Townsend at 7th',65,'8/31/2015 16:11','San Francisco Caltrain 2 (330 Townsend)',69,335,'Subscriber',94103); +INSERT INTO "trip" VALUES(912651,377,'8/31/2015 16:07','Adobe on Almaden',5,'8/31/2015 16:13','San Jose Diridon Caltrain Station',2,261,'Subscriber',94043); +INSERT INTO "trip" VALUES(912652,631,'8/31/2015 16:08','2nd at South Park',64,'8/31/2015 16:18','Powell Street BART',39,137,'Subscriber',94549); +INSERT INTO "trip" VALUES(912653,317,'8/31/2015 16:08','Embarcadero at Bryant',54,'8/31/2015 16:13','San Francisco Caltrain 2 (330 Townsend)',69,507,'Subscriber',94062); +INSERT INTO "trip" VALUES(912654,475,'8/31/2015 16:09','2nd at Townsend',61,'8/31/2015 16:17','Harry Bridges Plaza (Ferry Building)',50,326,'Subscriber',94558); +INSERT INTO "trip" VALUES(912655,452,'8/31/2015 16:09','Embarcadero at Folsom',51,'8/31/2015 16:16','Clay at Battery',41,334,'Subscriber',94124); +INSERT INTO "trip" VALUES(912656,458,'8/31/2015 16:09','San Francisco Caltrain (Townsend at 4th)',70,'8/31/2015 16:17','Embarcadero at Bryant',54,362,'Subscriber',95032); +INSERT INTO "trip" VALUES(912657,961,'8/31/2015 16:10','Steuart at Market',74,'8/31/2015 16:26','San Francisco Caltrain (Townsend at 4th)',70,315,'Subscriber',94065); +INSERT INTO "trip" VALUES(912658,479,'8/31/2015 16:10','Townsend at 7th',65,'8/31/2015 16:18','Civic Center BART (7th at Market)',72,529,'Subscriber',94598); +INSERT INTO "trip" VALUES(912659,498,'8/31/2015 16:10','MLK Library',11,'8/31/2015 16:19','San Jose Diridon Caltrain Station',2,656,'Subscriber',94110); +INSERT INTO "trip" VALUES(912660,433,'8/31/2015 16:10','2nd at Townsend',61,'8/31/2015 16:18','Harry Bridges Plaza (Ferry Building)',50,260,'Subscriber',94591); +INSERT INTO "trip" VALUES(912661,365,'8/31/2015 16:11','Market at 4th',76,'8/31/2015 16:17','Temporary Transbay Terminal (Howard at Beale)',55,417,'Subscriber',94501); +INSERT INTO "trip" VALUES(912662,101,'8/31/2015 16:12','San Francisco City Hall',58,'8/31/2015 16:14','Market at 10th',67,431,'Subscriber',94530); +INSERT INTO "trip" VALUES(912663,381,'8/31/2015 16:13','Post at Kearny',47,'8/31/2015 16:20','Harry Bridges Plaza (Ferry Building)',50,472,'Subscriber',95442); +INSERT INTO "trip" VALUES(912664,827,'8/31/2015 16:14','Embarcadero at Sansome',60,'8/31/2015 16:28','Harry Bridges Plaza (Ferry Building)',50,586,'Customer','nil'); +INSERT INTO "trip" VALUES(912665,824,'8/31/2015 16:14','Embarcadero at Sansome',60,'8/31/2015 16:28','Harry Bridges Plaza (Ferry Building)',50,511,'Customer','nil'); +INSERT INTO "trip" VALUES(912668,718,'8/31/2015 16:15','Post at Kearny',47,'8/31/2015 16:27','San Francisco Caltrain (Townsend at 4th)',70,629,'Subscriber',94401); +INSERT INTO "trip" VALUES(912675,447,'8/31/2015 16:17','Temporary Transbay Terminal (Howard at Beale)',55,'8/31/2015 16:25','San Francisco Caltrain 2 (330 Townsend)',69,547,'Subscriber',94010); +INSERT INTO "trip" VALUES(912678,671,'8/31/2015 16:18','Clay at Battery',41,'8/31/2015 16:29','2nd at Townsend',61,502,'Subscriber',95110); +INSERT INTO "trip" VALUES(912681,556,'8/31/2015 16:19','Embarcadero at Sansome',60,'8/31/2015 16:28','Harry Bridges Plaza (Ferry Building)',50,583,'Customer',48118); +INSERT INTO "trip" VALUES(912682,531,'8/31/2015 16:19','Temporary Transbay Terminal (Howard at Beale)',55,'8/31/2015 16:28','San Francisco Caltrain (Townsend at 4th)',70,191,'Subscriber',95008); +INSERT INTO "trip" VALUES(912683,1095,'8/31/2015 16:19','2nd at South Park',64,'8/31/2015 16:37','Broadway St at Battery St',82,461,'Subscriber',94111); +INSERT INTO "trip" VALUES(912684,450,'8/31/2015 16:19','Embarcadero at Sansome',60,'8/31/2015 16:27','Harry Bridges Plaza (Ferry Building)',50,366,'Customer',48118); +INSERT INTO "trip" VALUES(912691,247,'8/31/2015 16:20','Harry Bridges Plaza (Ferry Building)',50,'8/31/2015 16:24','Embarcadero at Bryant',54,415,'Subscriber',94107); +INSERT INTO "trip" VALUES(912692,507,'8/31/2015 16:21','5th at Howard',57,'8/31/2015 16:29','Embarcadero at Folsom',51,325,'Customer',38133); +INSERT INTO "trip" VALUES(912695,366,'8/31/2015 16:22','Castro Street and El Camino Real',32,'8/31/2015 16:28','Mountain View Caltrain Station',28,13,'Subscriber',94118); +INSERT INTO "trip" VALUES(912699,334,'8/31/2015 16:23','Broadway St at Battery St',82,'8/31/2015 16:28','Mechanics Plaza (Market at Battery)',75,581,'Subscriber',94114); +INSERT INTO "trip" VALUES(912700,568,'8/31/2015 16:23','Civic Center BART (7th at Market)',72,'8/31/2015 16:32','Temporary Transbay Terminal (Howard at Beale)',55,529,'Subscriber',94611); +INSERT INTO "trip" VALUES(912701,553,'8/31/2015 16:23','San Francisco Caltrain (Townsend at 4th)',70,'8/31/2015 16:32','Powell Street BART',39,343,'Subscriber',94117); +INSERT INTO "trip" VALUES(912709,876,'8/31/2015 16:28','San Francisco Caltrain 2 (330 Townsend)',69,'8/31/2015 16:42','Market at 10th',67,547,'Subscriber',94107); +INSERT INTO "trip" VALUES(912711,788,'8/31/2015 16:28','San Francisco City Hall',58,'8/31/2015 16:41','San Francisco Caltrain 2 (330 Townsend)',69,553,'Subscriber',94087); +INSERT INTO "trip" VALUES(912712,837,'8/31/2015 16:30','Clay at Battery',41,'8/31/2015 16:44','San Francisco Caltrain (Townsend at 4th)',70,531,'Subscriber',94025); +INSERT INTO "trip" VALUES(912713,899,'8/31/2015 16:30','Embarcadero at Vallejo',48,'8/31/2015 16:45','San Francisco Caltrain (Townsend at 4th)',70,619,'Subscriber',94002); +INSERT INTO "trip" VALUES(912714,211,'8/31/2015 16:30','Castro Street and El Camino Real',32,'8/31/2015 16:34','Mountain View Caltrain Station',28,147,'Subscriber',94109); +INSERT INTO "trip" VALUES(912715,184,'8/31/2015 16:30','Yerba Buena Center of the Arts (3rd @ Howard)',68,'8/31/2015 16:33','Market at 4th',76,187,'Subscriber',94707); +INSERT INTO "trip" VALUES(912716,630,'8/31/2015 16:30','Broadway St at Battery St',82,'8/31/2015 16:41','Market at 4th',76,292,'Subscriber',94118); +INSERT INTO "trip" VALUES(912717,550,'8/31/2015 16:32','Powell at Post (Union Square)',71,'8/31/2015 16:41','San Francisco Caltrain (Townsend at 4th)',70,327,'Subscriber',94158); +INSERT INTO "trip" VALUES(912718,641,'8/31/2015 16:28','Harry Bridges Plaza (Ferry Building)',50,'8/31/2015 16:39','San Francisco Caltrain (Townsend at 4th)',70,326,'Subscriber',94303); +INSERT INTO "trip" VALUES(912719,285,'8/31/2015 16:33','Embarcadero at Sansome',60,'8/31/2015 16:37','Embarcadero at Vallejo',48,457,'Subscriber',94531); +INSERT INTO "trip" VALUES(912720,649,'8/31/2015 16:33','Harry Bridges Plaza (Ferry Building)',50,'8/31/2015 16:44','San Francisco Caltrain (Townsend at 4th)',70,604,'Subscriber',95051); +INSERT INTO "trip" VALUES(912721,258,'8/31/2015 16:34','Santa Clara at Almaden',4,'8/31/2015 16:38','San Jose Diridon Caltrain Station',2,205,'Subscriber',95020); +INSERT INTO "trip" VALUES(912722,496,'8/31/2015 16:34','2nd at South Park',64,'8/31/2015 16:42','Harry Bridges Plaza (Ferry Building)',50,501,'Subscriber',94939); +INSERT INTO "trip" VALUES(912723,153,'8/31/2015 16:35','Post at Kearny',47,'8/31/2015 16:38','Mechanics Plaza (Market at Battery)',75,283,'Subscriber',94105); +INSERT INTO "trip" VALUES(912724,694,'8/31/2015 16:36','Golden Gate at Polk',59,'8/31/2015 16:47','San Francisco Caltrain 2 (330 Townsend)',69,469,'Subscriber',94306); +INSERT INTO "trip" VALUES(912725,574,'8/31/2015 16:36','Steuart at Market',74,'8/31/2015 16:45','2nd at South Park',64,418,'Subscriber',94024); +INSERT INTO "trip" VALUES(912726,1424,'8/31/2015 16:36','Stanford in Redwood City',25,'8/31/2015 17:00','Palo Alto Caltrain Station',34,230,'Subscriber',95131); +INSERT INTO "trip" VALUES(912727,1132,'8/31/2015 16:37','Clay at Battery',41,'8/31/2015 16:56','San Francisco Caltrain (Townsend at 4th)',70,556,'Subscriber',94402); +INSERT INTO "trip" VALUES(912728,532,'8/31/2015 16:37','Temporary Transbay Terminal (Howard at Beale)',55,'8/31/2015 16:46','San Francisco Caltrain (Townsend at 4th)',70,385,'Subscriber',94404); +INSERT INTO "trip" VALUES(912729,820,'8/31/2015 16:37','Commercial at Montgomery',45,'8/31/2015 16:51','San Francisco Caltrain (Townsend at 4th)',70,413,'Subscriber',94010); +INSERT INTO "trip" VALUES(912730,531,'8/31/2015 16:37','Market at 10th',67,'8/31/2015 16:46','San Francisco Caltrain 2 (330 Townsend)',69,425,'Subscriber',94025); +INSERT INTO "trip" VALUES(912731,280,'8/31/2015 16:37','Cowper at University',37,'8/31/2015 16:42','Palo Alto Caltrain Station',34,178,'Subscriber',94108); +INSERT INTO "trip" VALUES(912732,860,'8/31/2015 16:38','Beale at Market',56,'8/31/2015 16:52','San Francisco Caltrain 2 (330 Townsend)',69,455,'Subscriber',95133); +INSERT INTO "trip" VALUES(912733,3955,'8/31/2015 16:38','Embarcadero at Vallejo',48,'8/31/2015 17:43','Embarcadero at Sansome',60,356,'Customer',2); +INSERT INTO "trip" VALUES(912734,503,'8/31/2015 16:38','2nd at South Park',64,'8/31/2015 16:46','Harry Bridges Plaza (Ferry Building)',50,496,'Subscriber',94949); +INSERT INTO "trip" VALUES(912735,344,'8/31/2015 16:38','2nd at South Park',64,'8/31/2015 16:44','Market at Sansome',77,567,'Subscriber',94544); +INSERT INTO "trip" VALUES(912736,964,'8/31/2015 16:38','Clay at Battery',41,'8/31/2015 16:54','San Francisco Caltrain (Townsend at 4th)',70,544,'Subscriber',94301); +INSERT INTO "trip" VALUES(912737,483,'8/31/2015 16:38','Civic Center BART (7th at Market)',72,'8/31/2015 16:46','Temporary Transbay Terminal (Howard at Beale)',55,321,'Subscriber',94710); +INSERT INTO "trip" VALUES(912738,694,'8/31/2015 16:39','Commercial at Montgomery',45,'8/31/2015 16:50','Market at 10th',67,480,'Subscriber',94065); +INSERT INTO "trip" VALUES(912739,248,'8/31/2015 16:39','Harry Bridges Plaza (Ferry Building)',50,'8/31/2015 16:43','Embarcadero at Bryant',54,617,'Subscriber',94110); +INSERT INTO "trip" VALUES(912740,677,'8/31/2015 16:39','San Francisco City Hall',58,'8/31/2015 16:51','Market at Sansome',77,268,'Subscriber',94103); +INSERT INTO "trip" VALUES(912741,622,'8/31/2015 16:40','Harry Bridges Plaza (Ferry Building)',50,'8/31/2015 16:50','Powell at Post (Union Square)',71,406,'Subscriber',94103); +INSERT INTO "trip" VALUES(912742,956,'8/31/2015 16:41','Embarcadero at Vallejo',48,'8/31/2015 16:57','Embarcadero at Sansome',60,514,'Customer',19127); +INSERT INTO "trip" VALUES(912743,899,'8/31/2015 16:41','Embarcadero at Vallejo',48,'8/31/2015 16:56','Embarcadero at Sansome',60,516,'Customer',19134); +INSERT INTO "trip" VALUES(912744,455,'8/31/2015 16:42','Market at 10th',67,'8/31/2015 16:49','San Francisco Caltrain 2 (330 Townsend)',69,470,'Subscriber',94061); +INSERT INTO "trip" VALUES(912746,281,'8/31/2015 16:42','Embarcadero at Vallejo',48,'8/31/2015 16:47','Steuart at Market',74,282,'Subscriber',94547); +INSERT INTO "trip" VALUES(912747,416,'8/31/2015 16:42','Mechanics Plaza (Market at Battery)',75,'8/31/2015 16:49','Broadway St at Battery St',82,283,'Subscriber',94117); +INSERT INTO "trip" VALUES(912748,461,'8/31/2015 16:43','Commercial at Montgomery',45,'8/31/2015 16:51','Temporary Transbay Terminal (Howard at Beale)',55,67,'Subscriber',94530); +INSERT INTO "trip" VALUES(912749,668,'8/31/2015 16:41','Civic Center BART (7th at Market)',72,'8/31/2015 16:52','San Francisco Caltrain 2 (330 Townsend)',69,270,'Subscriber',94062); +INSERT INTO "trip" VALUES(912751,360,'8/31/2015 16:44','2nd at Folsom',62,'8/31/2015 16:50','San Francisco Caltrain (Townsend at 4th)',70,687,'Subscriber',94403); +INSERT INTO "trip" VALUES(912752,662,'8/31/2015 16:44','Clay at Battery',41,'8/31/2015 16:55','San Francisco Caltrain (Townsend at 4th)',70,334,'Subscriber',94065); +INSERT INTO "trip" VALUES(912757,3052,'8/31/2015 16:46','Yerba Buena Center of the Arts (3rd @ Howard)',68,'8/31/2015 17:37','Yerba Buena Center of the Arts (3rd @ Howard)',68,359,'Customer',10009); +INSERT INTO "trip" VALUES(912758,698,'8/31/2015 16:47','Embarcadero at Folsom',51,'8/31/2015 16:59','San Francisco Caltrain (Townsend at 4th)',70,352,'Subscriber',94070); +INSERT INTO "trip" VALUES(912761,144,'8/31/2015 16:47','Spear at Folsom',49,'8/31/2015 16:49','Steuart at Market',74,291,'Subscriber',94582); +INSERT INTO "trip" VALUES(912762,754,'8/31/2015 16:47','Harry Bridges Plaza (Ferry Building)',50,'8/31/2015 17:00','Townsend at 7th',65,288,'Subscriber',94107); +INSERT INTO "trip" VALUES(912763,915,'8/31/2015 16:47','Mechanics Plaza (Market at Battery)',75,'8/31/2015 17:03','San Francisco Caltrain 2 (330 Townsend)',69,549,'Subscriber',94301); +INSERT INTO "trip" VALUES(912764,499,'8/31/2015 16:47','Embarcadero at Sansome',60,'8/31/2015 16:56','Steuart at Market',74,559,'Subscriber',94568); +INSERT INTO "trip" VALUES(912767,779,'8/31/2015 16:49','Beale at Market',56,'8/31/2015 17:02','San Francisco Caltrain (Townsend at 4th)',70,336,'Subscriber',95148); +INSERT INTO "trip" VALUES(912768,189,'8/31/2015 16:49','Townsend at 7th',65,'8/31/2015 16:52','San Francisco Caltrain 2 (330 Townsend)',69,405,'Subscriber',94404); +INSERT INTO "trip" VALUES(912771,439,'8/31/2015 16:49','2nd at Townsend',61,'8/31/2015 16:57','Harry Bridges Plaza (Ferry Building)',50,502,'Subscriber',94534); +INSERT INTO "trip" VALUES(912772,446,'8/31/2015 16:49','2nd at South Park',64,'8/31/2015 16:57','Harry Bridges Plaza (Ferry Building)',50,418,'Subscriber',94510); +INSERT INTO "trip" VALUES(912775,716,'8/31/2015 16:50','Market at 10th',67,'8/31/2015 17:01','Temporary Transbay Terminal (Howard at Beale)',55,448,'Subscriber',94117); +INSERT INTO "trip" VALUES(912776,871,'8/31/2015 16:50','Harry Bridges Plaza (Ferry Building)',50,'8/31/2015 17:04','San Francisco Caltrain (Townsend at 4th)',70,371,'Subscriber',94070); +INSERT INTO "trip" VALUES(912777,449,'8/31/2015 16:49','2nd at Townsend',61,'8/31/2015 16:57','Steuart at Market',74,416,'Subscriber',94588); +INSERT INTO "trip" VALUES(912778,269,'8/31/2015 16:50','2nd at South Park',64,'8/31/2015 16:54','Market at Sansome',77,360,'Subscriber',95973); +INSERT INTO "trip" VALUES(912779,762,'8/31/2015 16:50','Townsend at 7th',65,'8/31/2015 17:03','Embarcadero at Folsom',51,527,'Subscriber',94501); +INSERT INTO "trip" VALUES(912781,523,'8/31/2015 16:50','San Francisco Caltrain 2 (330 Townsend)',69,'8/31/2015 16:59','Powell Street BART',39,469,'Subscriber',94606); +INSERT INTO "trip" VALUES(912782,848,'8/31/2015 16:50','Townsend at 7th',65,'8/31/2015 17:04','Harry Bridges Plaza (Ferry Building)',50,587,'Subscriber',94965); +INSERT INTO "trip" VALUES(912783,547,'8/31/2015 16:51','South Van Ness at Market',66,'8/31/2015 17:00','San Francisco Caltrain 2 (330 Townsend)',69,353,'Subscriber',95030); +INSERT INTO "trip" VALUES(912784,509,'8/31/2015 16:51','Post at Kearny',47,'8/31/2015 16:59','Market at 10th',67,557,'Subscriber',94118); +INSERT INTO "trip" VALUES(912785,476,'8/31/2015 16:51','Townsend at 7th',65,'8/31/2015 16:59','Civic Center BART (7th at Market)',72,277,'Subscriber',94611); +INSERT INTO "trip" VALUES(912786,409,'8/31/2015 16:51','San Pedro Square',6,'8/31/2015 16:57','San Jose Diridon Caltrain Station',2,679,'Subscriber',94002); +INSERT INTO "trip" VALUES(912787,447,'8/31/2015 16:51','Powell at Post (Union Square)',71,'8/31/2015 16:58','Market at 10th',67,399,'Subscriber',94122); +INSERT INTO "trip" VALUES(912788,699,'8/31/2015 16:51','Mountain View City Hall',27,'8/31/2015 17:02','Evelyn Park and Ride',30,94,'Customer',94022); +INSERT INTO "trip" VALUES(912790,746,'8/31/2015 16:52','Embarcadero at Folsom',51,'8/31/2015 17:04','San Francisco Caltrain (Townsend at 4th)',70,459,'Subscriber',95131); +INSERT INTO "trip" VALUES(912791,235,'8/31/2015 16:52','Embarcadero at Vallejo',48,'8/31/2015 16:56','Steuart at Market',74,500,'Subscriber',94708); +INSERT INTO "trip" VALUES(912792,509,'8/31/2015 16:52','2nd at Folsom',62,'8/31/2015 17:00','San Francisco Caltrain (Townsend at 4th)',70,484,'Subscriber',95112); +INSERT INTO "trip" VALUES(912793,209,'8/31/2015 16:52','Embarcadero at Vallejo',48,'8/31/2015 16:56','Steuart at Market',74,535,'Subscriber',94568); +INSERT INTO "trip" VALUES(912796,818,'8/31/2015 16:53','San Francisco Caltrain (Townsend at 4th)',70,'8/31/2015 17:07','Temporary Transbay Terminal (Howard at Beale)',55,191,'Subscriber',94107); +INSERT INTO "trip" VALUES(912797,491,'8/31/2015 16:53','Yerba Buena Center of the Arts (3rd @ Howard)',68,'8/31/2015 17:01','San Francisco Caltrain 2 (330 Townsend)',69,271,'Subscriber',94043); +INSERT INTO "trip" VALUES(912798,432,'8/31/2015 16:54','Powell Street BART',39,'8/31/2015 17:01','San Francisco Caltrain 2 (330 Townsend)',69,392,'Subscriber',94403); +INSERT INTO "trip" VALUES(912800,631,'8/31/2015 16:54','Mechanics Plaza (Market at Battery)',75,'8/31/2015 17:05','San Francisco Caltrain (Townsend at 4th)',70,368,'Subscriber',94303); +INSERT INTO "trip" VALUES(912801,824,'8/31/2015 16:54','Townsend at 7th',65,'8/31/2015 17:08','Harry Bridges Plaza (Ferry Building)',50,387,'Subscriber',94903); +INSERT INTO "trip" VALUES(912802,948,'8/31/2015 16:55','San Francisco City Hall',58,'8/31/2015 17:10','Harry Bridges Plaza (Ferry Building)',50,609,'Subscriber',94903); +INSERT INTO "trip" VALUES(912803,612,'8/31/2015 16:55','Steuart at Market',74,'8/31/2015 17:05','San Francisco Caltrain (Townsend at 4th)',70,709,'Subscriber',94070); +INSERT INTO "trip" VALUES(912804,311,'8/31/2015 16:56','Castro Street and El Camino Real',32,'8/31/2015 17:01','Mountain View Caltrain Station',28,197,'Subscriber',94158); +INSERT INTO "trip" VALUES(912807,358,'8/31/2015 16:56','Townsend at 7th',65,'8/31/2015 17:02','Civic Center BART (7th at Market)',72,315,'Subscriber',94582); +INSERT INTO "trip" VALUES(912808,628,'8/31/2015 16:57','Spear at Folsom',49,'8/31/2015 17:07','San Francisco Caltrain (Townsend at 4th)',70,342,'Subscriber',94070); +INSERT INTO "trip" VALUES(912809,935,'8/31/2015 16:57','Broadway St at Battery St',82,'8/31/2015 17:12','San Francisco Caltrain 2 (330 Townsend)',69,283,'Subscriber',94025); +INSERT INTO "trip" VALUES(912810,700,'8/31/2015 16:57','2nd at South Park',64,'8/31/2015 17:08','Harry Bridges Plaza (Ferry Building)',50,318,'Subscriber',94949); +INSERT INTO "trip" VALUES(912811,560,'8/31/2015 16:57','Powell Street BART',39,'8/31/2015 17:06','San Francisco Caltrain 2 (330 Townsend)',69,521,'Subscriber',95111); +INSERT INTO "trip" VALUES(912812,576,'8/31/2015 16:57','Market at Sansome',77,'8/31/2015 17:07','Grant Avenue at Columbus Avenue',73,485,'Subscriber',94133); +INSERT INTO "trip" VALUES(912813,439,'8/31/2015 16:58','Temporary Transbay Terminal (Howard at Beale)',55,'8/31/2015 17:05','San Francisco Caltrain (Townsend at 4th)',70,67,'Subscriber',94402); +INSERT INTO "trip" VALUES(912814,519,'8/31/2015 16:58','Market at Sansome',77,'8/31/2015 17:07','San Francisco Caltrain (Townsend at 4th)',70,33,'Subscriber',94306); +INSERT INTO "trip" VALUES(912815,770,'8/31/2015 16:58','Golden Gate at Polk',59,'8/31/2015 17:11','Temporary Transbay Terminal (Howard at Beale)',55,16,'Subscriber',94602); +INSERT INTO "trip" VALUES(912816,746,'8/31/2015 16:59','Beale at Market',56,'8/31/2015 17:11','San Francisco Caltrain (Townsend at 4th)',70,462,'Subscriber',94089); +INSERT INTO "trip" VALUES(912817,219,'8/31/2015 16:59','Townsend at 7th',65,'8/31/2015 17:03','San Francisco Caltrain 2 (330 Townsend)',69,348,'Subscriber',94041); +INSERT INTO "trip" VALUES(912818,663,'8/31/2015 16:59','South Van Ness at Market',66,'8/31/2015 17:11','Beale at Market',56,877,'Subscriber',9611); +INSERT INTO "trip" VALUES(912820,457,'8/31/2015 17:00','Beale at Market',56,'8/31/2015 17:08','Embarcadero at Sansome',60,493,'Subscriber',94111); +INSERT INTO "trip" VALUES(912821,519,'8/31/2015 17:00','Embarcadero at Folsom',51,'8/31/2015 17:09','San Francisco Caltrain (Townsend at 4th)',70,354,'Subscriber',94085); +INSERT INTO "trip" VALUES(912822,762,'8/31/2015 17:00','Clay at Battery',41,'8/31/2015 17:13','San Francisco Caltrain (Townsend at 4th)',70,589,'Subscriber',94070); +INSERT INTO "trip" VALUES(912823,284,'8/31/2015 17:00','Embarcadero at Bryant',54,'8/31/2015 17:05','Harry Bridges Plaza (Ferry Building)',50,403,'Subscriber',94903); +INSERT INTO "trip" VALUES(912825,196,'8/31/2015 17:01','San Antonio Shopping Center',31,'8/31/2015 17:04','San Antonio Caltrain Station',29,707,'Subscriber',94133); +INSERT INTO "trip" VALUES(912828,344,'8/31/2015 17:01','2nd at Folsom',62,'8/31/2015 17:07','2nd at Townsend',61,311,'Subscriber',94070); +INSERT INTO "trip" VALUES(912829,159,'8/31/2015 17:01','2nd at Folsom',62,'8/31/2015 17:04','Temporary Transbay Terminal (Howard at Beale)',55,275,'Subscriber',94611); +INSERT INTO "trip" VALUES(912830,696,'8/31/2015 17:01','Temporary Transbay Terminal (Howard at Beale)',55,'8/31/2015 17:13','San Francisco Caltrain (Townsend at 4th)',70,409,'Subscriber',94030); +INSERT INTO "trip" VALUES(912831,568,'8/31/2015 17:01','Spear at Folsom',49,'8/31/2015 17:11','San Francisco Caltrain 2 (330 Townsend)',69,564,'Subscriber',94040); +INSERT INTO "trip" VALUES(912832,984,'8/31/2015 17:01','Mechanics Plaza (Market at Battery)',75,'8/31/2015 17:18','San Francisco Caltrain (Townsend at 4th)',70,355,'Subscriber',95054); +INSERT INTO "trip" VALUES(912833,337,'8/31/2015 17:02','2nd at South Park',64,'8/31/2015 17:07','San Francisco Caltrain (Townsend at 4th)',70,109,'Subscriber',94117); +INSERT INTO "trip" VALUES(912834,333,'8/31/2015 17:02','Embarcadero at Sansome',60,'8/31/2015 17:07','Steuart at Market',74,516,'Subscriber',94111); +INSERT INTO "trip" VALUES(912837,470,'8/31/2015 17:02','Howard at 2nd',63,'8/31/2015 17:09','San Francisco Caltrain (Townsend at 4th)',70,158,'Subscriber',94066); +INSERT INTO "trip" VALUES(912838,631,'8/31/2015 17:02','University and Emerson',35,'8/31/2015 17:13','University and Emerson',35,253,'Customer',6907); +INSERT INTO "trip" VALUES(912839,447,'8/31/2015 17:03','Embarcadero at Sansome',60,'8/31/2015 17:10','Steuart at Market',74,514,'Subscriber',94588); +INSERT INTO "trip" VALUES(912841,707,'8/31/2015 17:03','Market at Sansome',77,'8/31/2015 17:14','San Francisco Caltrain (Townsend at 4th)',70,512,'Subscriber',95122); +INSERT INTO "trip" VALUES(912842,1073,'8/31/2015 17:03','Embarcadero at Vallejo',48,'8/31/2015 17:21','San Francisco Caltrain 2 (330 Townsend)',69,603,'Customer',94023); +INSERT INTO "trip" VALUES(912845,531,'8/31/2015 17:04','San Francisco Caltrain 2 (330 Townsend)',69,'8/31/2015 17:12','Powell Street BART',39,348,'Subscriber',94703); +INSERT INTO "trip" VALUES(912848,673,'8/31/2015 17:05','Steuart at Market',74,'8/31/2015 17:16','San Francisco Caltrain (Townsend at 4th)',70,416,'Subscriber',94002); +INSERT INTO "trip" VALUES(912849,570,'8/31/2015 17:05','5th at Howard',57,'8/31/2015 17:14','Steuart at Market',74,236,'Subscriber',94930); +INSERT INTO "trip" VALUES(912852,558,'8/31/2015 17:05','Embarcadero at Folsom',51,'8/31/2015 17:14','San Francisco Caltrain (Townsend at 4th)',70,527,'Subscriber',94062); +INSERT INTO "trip" VALUES(912853,421,'8/31/2015 17:06','Market at 4th',76,'8/31/2015 17:13','San Francisco Caltrain (Townsend at 4th)',70,292,'Subscriber',94403); +INSERT INTO "trip" VALUES(912854,917,'8/31/2015 17:06','Park at Olive',38,'8/31/2015 17:21','Palo Alto Caltrain Station',34,211,'Subscriber',94002); +INSERT INTO "trip" VALUES(912855,271,'8/31/2015 17:06','Market at Sansome',77,'8/31/2015 17:10','Harry Bridges Plaza (Ferry Building)',50,360,'Subscriber',94925); +INSERT INTO "trip" VALUES(912856,396,'8/31/2015 17:06','Yerba Buena Center of the Arts (3rd @ Howard)',68,'8/31/2015 17:13','Harry Bridges Plaza (Ferry Building)',50,528,'Subscriber',94107); +INSERT INTO "trip" VALUES(912859,657,'8/31/2015 17:07','Steuart at Market',74,'8/31/2015 17:18','San Francisco Caltrain 2 (330 Townsend)',69,535,'Subscriber',94005); +INSERT INTO "trip" VALUES(912860,717,'8/31/2015 17:07','Stanford in Redwood City',25,'8/31/2015 17:19','Redwood City Caltrain Station',22,294,'Subscriber',95037); +INSERT INTO "trip" VALUES(912863,594,'8/31/2015 17:08','Embarcadero at Folsom',51,'8/31/2015 17:18','San Francisco Caltrain 2 (330 Townsend)',69,400,'Subscriber',94061); +INSERT INTO "trip" VALUES(912864,417,'8/31/2015 17:08','Howard at 2nd',63,'8/31/2015 17:15','2nd at Folsom',62,314,'Subscriber',94085); +INSERT INTO "trip" VALUES(912865,663,'8/31/2015 17:08','San Francisco Caltrain (Townsend at 4th)',70,'8/31/2015 17:19','Civic Center BART (7th at Market)',72,326,'Subscriber',94563); +INSERT INTO "trip" VALUES(912866,477,'8/31/2015 17:08','Yerba Buena Center of the Arts (3rd @ Howard)',68,'8/31/2015 17:16','San Francisco Caltrain 2 (330 Townsend)',69,312,'Subscriber',94087); +INSERT INTO "trip" VALUES(912867,347,'8/31/2015 17:08','Embarcadero at Sansome',60,'8/31/2015 17:14','Steuart at Market',74,472,'Subscriber',94595); +INSERT INTO "trip" VALUES(912868,421,'8/31/2015 17:09','Post at Kearny',47,'8/31/2015 17:16','Harry Bridges Plaza (Ferry Building)',50,509,'Subscriber',94965); +INSERT INTO "trip" VALUES(912869,743,'8/31/2015 17:09','2nd at South Park',64,'8/31/2015 17:21','Grant Avenue at Columbus Avenue',73,677,'Subscriber',94133); +INSERT INTO "trip" VALUES(912872,505,'8/31/2015 17:09','Embarcadero at Vallejo',48,'8/31/2015 17:17','Temporary Transbay Terminal (Howard at Beale)',55,266,'Subscriber',94608); +INSERT INTO "trip" VALUES(912874,483,'8/31/2015 17:10','2nd at Townsend',61,'8/31/2015 17:18','Harry Bridges Plaza (Ferry Building)',50,311,'Subscriber',94945); +INSERT INTO "trip" VALUES(912875,471,'8/31/2015 17:11','Howard at 2nd',63,'8/31/2015 17:18','San Francisco Caltrain 2 (330 Townsend)',69,238,'Subscriber',94402); +INSERT INTO "trip" VALUES(912876,969,'8/31/2015 17:11','Clay at Battery',41,'8/31/2015 17:27','2nd at Townsend',61,449,'Subscriber',94107); +INSERT INTO "trip" VALUES(912878,905,'8/31/2015 17:11','Broadway St at Battery St',82,'8/31/2015 17:26','San Francisco Caltrain 2 (330 Townsend)',69,614,'Subscriber',95124); +INSERT INTO "trip" VALUES(912879,398,'8/31/2015 17:11','Grant Avenue at Columbus Avenue',73,'8/31/2015 17:17','Temporary Transbay Terminal (Howard at Beale)',55,572,'Subscriber',94133); +INSERT INTO "trip" VALUES(912880,392,'8/31/2015 17:11','5th at Howard',57,'8/31/2015 17:17','San Francisco Caltrain 2 (330 Townsend)',69,552,'Subscriber',94086); +INSERT INTO "trip" VALUES(912882,286,'8/31/2015 17:11','Broadway St at Battery St',82,'8/31/2015 17:16','Market at Sansome',77,461,'Subscriber',94588); +INSERT INTO "trip" VALUES(912883,587,'8/31/2015 17:11','Temporary Transbay Terminal (Howard at Beale)',55,'8/31/2015 17:21','San Francisco Caltrain 2 (330 Townsend)',69,16,'Subscriber',94061); +INSERT INTO "trip" VALUES(912884,363,'8/31/2015 17:11','Embarcadero at Sansome',60,'8/31/2015 17:17','Harry Bridges Plaza (Ferry Building)',50,493,'Subscriber',94501); +INSERT INTO "trip" VALUES(912886,305,'8/31/2015 17:11','Clay at Battery',41,'8/31/2015 17:16','Embarcadero at Sansome',60,279,'Subscriber',94133); +INSERT INTO "trip" VALUES(912887,619,'8/31/2015 17:12','Embarcadero at Folsom',51,'8/31/2015 17:22','San Francisco Caltrain (Townsend at 4th)',70,325,'Subscriber',95014); +INSERT INTO "trip" VALUES(912888,565,'8/31/2015 17:12','Mechanics Plaza (Market at Battery)',75,'8/31/2015 17:21','Market at 10th',67,300,'Subscriber',94102); +INSERT INTO "trip" VALUES(912891,323,'8/31/2015 17:12','Commercial at Montgomery',45,'8/31/2015 17:17','Temporary Transbay Terminal (Howard at Beale)',55,508,'Subscriber',94611); +INSERT INTO "trip" VALUES(912892,816,'8/31/2015 17:12','Embarcadero at Vallejo',48,'8/31/2015 17:25','San Francisco Caltrain 2 (330 Townsend)',69,457,'Subscriber',95128); +INSERT INTO "trip" VALUES(912894,716,'8/31/2015 17:12','Market at Sansome',77,'8/31/2015 17:24','San Francisco Caltrain 2 (330 Townsend)',69,268,'Subscriber',94002); +INSERT INTO "trip" VALUES(912896,475,'8/31/2015 17:12','Mechanics Plaza (Market at Battery)',75,'8/31/2015 17:20','Embarcadero at Bryant',54,593,'Subscriber',94105); +INSERT INTO "trip" VALUES(912897,419,'8/31/2015 17:14','5th at Howard',57,'8/31/2015 17:21','Temporary Transbay Terminal (Howard at Beale)',55,635,'Subscriber',94170); +INSERT INTO "trip" VALUES(912898,681,'8/31/2015 17:14','Steuart at Market',74,'8/31/2015 17:26','San Francisco Caltrain 2 (330 Townsend)',69,516,'Subscriber',94025); +INSERT INTO "trip" VALUES(912899,597,'8/31/2015 17:15','5th at Howard',57,'8/31/2015 17:25','Harry Bridges Plaza (Ferry Building)',50,313,'Subscriber',94103); +INSERT INTO "trip" VALUES(912900,661,'8/31/2015 17:15','San Jose Diridon Caltrain Station',2,'8/31/2015 17:26','Japantown',9,656,'Subscriber',94111); +INSERT INTO "trip" VALUES(912901,492,'8/31/2015 17:16','Commercial at Montgomery',45,'8/31/2015 17:24','Embarcadero at Folsom',51,487,'Subscriber',94608); +INSERT INTO "trip" VALUES(912902,645,'8/31/2015 17:17','Embarcadero at Sansome',60,'8/31/2015 17:27','Temporary Transbay Terminal (Howard at Beale)',55,496,'Subscriber',94602); +INSERT INTO "trip" VALUES(912903,954,'8/31/2015 17:17','Golden Gate at Polk',59,'8/31/2015 17:33','Embarcadero at Sansome',60,267,'Subscriber',94133); +INSERT INTO "trip" VALUES(912904,543,'8/31/2015 17:16','Market at 4th',76,'8/31/2015 17:25','2nd at Townsend',61,454,'Subscriber',94107); +INSERT INTO "trip" VALUES(912905,531,'8/31/2015 17:17','Market at 10th',67,'8/31/2015 17:26','San Francisco Caltrain 2 (330 Townsend)',69,399,'Subscriber',94401); +INSERT INTO "trip" VALUES(912906,507,'8/31/2015 17:17','San Francisco Caltrain (Townsend at 4th)',70,'8/31/2015 17:26','5th at Howard',57,462,'Subscriber',94110); +INSERT INTO "trip" VALUES(912908,601,'8/31/2015 17:18','Market at 10th',67,'8/31/2015 17:28','San Francisco Caltrain (Townsend at 4th)',70,557,'Subscriber',95120); +INSERT INTO "trip" VALUES(912909,366,'8/31/2015 17:18','2nd at South Park',64,'8/31/2015 17:24','Temporary Transbay Terminal (Howard at Beale)',55,507,'Subscriber',94608); +INSERT INTO "trip" VALUES(912910,790,'8/31/2015 17:18','Post at Kearny',47,'8/31/2015 17:31','Townsend at 7th',65,456,'Subscriber',94111); +INSERT INTO "trip" VALUES(912912,239,'8/31/2015 17:18','Market at 10th',67,'8/31/2015 17:22','Golden Gate at Polk',59,494,'Subscriber',94121); +INSERT INTO "trip" VALUES(912913,181,'8/31/2015 17:18','Townsend at 7th',65,'8/31/2015 17:21','San Francisco Caltrain 2 (330 Townsend)',69,584,'Subscriber',94065); +INSERT INTO "trip" VALUES(912914,236,'8/31/2015 17:19','Beale at Market',56,'8/31/2015 17:23','Commercial at Montgomery',45,877,'Subscriber',94133); +INSERT INTO "trip" VALUES(912915,508,'8/31/2015 17:19','Yerba Buena Center of the Arts (3rd @ Howard)',68,'8/31/2015 17:27','Commercial at Montgomery',45,370,'Subscriber',94133); +INSERT INTO "trip" VALUES(912916,571,'8/31/2015 17:19','Temporary Transbay Terminal (Howard at Beale)',55,'8/31/2015 17:29','San Francisco Caltrain (Townsend at 4th)',70,448,'Subscriber',94025); +INSERT INTO "trip" VALUES(912918,428,'8/31/2015 17:19','San Pedro Square',6,'8/31/2015 17:26','San Jose Diridon Caltrain Station',2,168,'Subscriber',95377); +INSERT INTO "trip" VALUES(912919,837,'8/31/2015 17:19','Embarcadero at Sansome',60,'8/31/2015 17:33','Howard at 2nd',63,279,'Subscriber',94114); +INSERT INTO "trip" VALUES(912920,251,'8/31/2015 17:20','Mountain View City Hall',27,'8/31/2015 17:24','Mountain View Caltrain Station',28,262,'Subscriber',94103); +INSERT INTO "trip" VALUES(912921,1498,'8/31/2015 17:20','Santa Clara County Civic Center',80,'8/31/2015 17:45','MLK Library',11,232,'Subscriber',95112); +INSERT INTO "trip" VALUES(912922,224,'8/31/2015 17:20','Embarcadero at Vallejo',48,'8/31/2015 17:24','Beale at Market',56,393,'Subscriber',94112); +INSERT INTO "trip" VALUES(912923,544,'8/31/2015 17:20','San Francisco City Hall',58,'8/31/2015 17:29','Temporary Transbay Terminal (Howard at Beale)',55,431,'Subscriber',94530); +INSERT INTO "trip" VALUES(912924,697,'8/31/2015 17:21','2nd at South Park',64,'8/31/2015 17:32','Golden Gate at Polk',59,602,'Subscriber',94109); +INSERT INTO "trip" VALUES(912925,195,'8/31/2015 17:22','Temporary Transbay Terminal (Howard at Beale)',55,'8/31/2015 17:25','2nd at Folsom',62,191,'Subscriber',94158); +INSERT INTO "trip" VALUES(912926,280,'8/31/2015 17:22','Commercial at Montgomery',45,'8/31/2015 17:27','Temporary Transbay Terminal (Howard at Beale)',55,636,'Subscriber',94611); +INSERT INTO "trip" VALUES(912927,624,'8/31/2015 17:23','Broadway St at Battery St',82,'8/31/2015 17:34','Embarcadero at Bryant',54,285,'Subscriber',94105); +INSERT INTO "trip" VALUES(912928,348,'8/31/2015 17:24','Commercial at Montgomery',45,'8/31/2015 17:29','Market at 4th',76,585,'Subscriber',94103); +INSERT INTO "trip" VALUES(912929,312,'8/31/2015 17:21','Market at 4th',76,'8/31/2015 17:26','Temporary Transbay Terminal (Howard at Beale)',55,187,'Subscriber',94706); +INSERT INTO "trip" VALUES(912930,414,'8/31/2015 17:24','Townsend at 7th',65,'8/31/2015 17:31','Civic Center BART (7th at Market)',72,377,'Subscriber',94965); +INSERT INTO "trip" VALUES(912931,561,'8/31/2015 17:25','Davis at Jackson',42,'8/31/2015 17:34','2nd at Townsend',61,479,'Subscriber',94025); +INSERT INTO "trip" VALUES(912933,240,'8/31/2015 17:25','Mountain View City Hall',27,'8/31/2015 17:29','Mountain View Caltrain Station',28,141,'Subscriber',94107); +INSERT INTO "trip" VALUES(912934,366,'8/31/2015 17:25','Embarcadero at Bryant',54,'8/31/2015 17:32','San Francisco Caltrain 2 (330 Townsend)',69,593,'Subscriber',94402); +INSERT INTO "trip" VALUES(912935,718,'8/31/2015 17:26','San Francisco Caltrain (Townsend at 4th)',70,'8/31/2015 17:38','Harry Bridges Plaza (Ferry Building)',50,544,'Subscriber',94591); +INSERT INTO "trip" VALUES(912936,468,'8/31/2015 17:26','Embarcadero at Sansome',60,'8/31/2015 17:34','Steuart at Market',74,498,'Subscriber',94521); +INSERT INTO "trip" VALUES(912937,919,'8/31/2015 17:26','San Francisco Caltrain (Townsend at 4th)',70,'8/31/2015 17:41','South Van Ness at Market',66,334,'Subscriber',94115); +INSERT INTO "trip" VALUES(912938,380,'8/31/2015 17:26','2nd at Folsom',62,'8/31/2015 17:33','Harry Bridges Plaza (Ferry Building)',50,56,'Subscriber',94949); +INSERT INTO "trip" VALUES(912939,371,'8/31/2015 17:27','Davis at Jackson',42,'8/31/2015 17:33','Temporary Transbay Terminal (Howard at Beale)',55,402,'Subscriber',94577); +INSERT INTO "trip" VALUES(912940,523,'8/31/2015 17:27','2nd at South Park',64,'8/31/2015 17:36','Harry Bridges Plaza (Ferry Building)',50,620,'Subscriber',94947); +INSERT INTO "trip" VALUES(912941,263,'8/31/2015 17:28','Castro Street and El Camino Real',32,'8/31/2015 17:32','Mountain View Caltrain Station',28,639,'Subscriber',94105); +INSERT INTO "trip" VALUES(912942,417,'8/31/2015 17:28','Embarcadero at Sansome',60,'8/31/2015 17:35','Embarcadero at Folsom',51,618,'Subscriber',94105); +INSERT INTO "trip" VALUES(912944,772,'8/31/2015 17:28','2nd at South Park',64,'8/31/2015 17:41','Washington at Kearny',46,290,'Subscriber',94133); +INSERT INTO "trip" VALUES(912945,908,'8/31/2015 17:28','San Francisco Caltrain (Townsend at 4th)',70,'8/31/2015 17:43','Temporary Transbay Terminal (Howard at Beale)',55,531,'Subscriber',94105); +INSERT INTO "trip" VALUES(912946,804,'8/31/2015 17:29','Harry Bridges Plaza (Ferry Building)',50,'8/31/2015 17:42','Townsend at 7th',65,418,'Subscriber',94107); +INSERT INTO "trip" VALUES(912947,167,'8/31/2015 17:28','5th at Howard',57,'8/31/2015 17:31','Powell Street BART',39,576,'Subscriber',94024); +INSERT INTO "trip" VALUES(912948,264,'8/31/2015 17:29','Mountain View City Hall',27,'8/31/2015 17:33','Mountain View Caltrain Station',28,258,'Subscriber',94110); +INSERT INTO "trip" VALUES(912949,409,'8/31/2015 17:29','2nd at South Park',64,'8/31/2015 17:36','Market at Sansome',77,335,'Subscriber',94612); +INSERT INTO "trip" VALUES(912950,419,'8/31/2015 17:29','Commercial at Montgomery',45,'8/31/2015 17:36','Temporary Transbay Terminal (Howard at Beale)',55,594,'Subscriber',94611); +INSERT INTO "trip" VALUES(912951,735,'8/31/2015 17:29','Market at Sansome',77,'8/31/2015 17:41','San Francisco Caltrain 2 (330 Townsend)',69,525,'Subscriber',94002); +INSERT INTO "trip" VALUES(912953,253,'8/31/2015 17:29','San Francisco Caltrain 2 (330 Townsend)',69,'8/31/2015 17:34','Townsend at 7th',65,470,'Subscriber',94107); +INSERT INTO "trip" VALUES(912954,144,'8/31/2015 17:30','Temporary Transbay Terminal (Howard at Beale)',55,'8/31/2015 17:32','Spear at Folsom',49,635,'Subscriber',94941); +INSERT INTO "trip" VALUES(912955,590,'8/31/2015 17:30','2nd at Folsom',62,'8/31/2015 17:40','San Francisco Caltrain 2 (330 Townsend)',69,558,'Subscriber',94025); +INSERT INTO "trip" VALUES(912956,1034,'8/31/2015 17:31','Harry Bridges Plaza (Ferry Building)',50,'8/31/2015 17:48','San Francisco Caltrain (Townsend at 4th)',70,587,'Subscriber',94087); +INSERT INTO "trip" VALUES(912957,678,'8/31/2015 17:31','Market at 4th',76,'8/31/2015 17:43','Embarcadero at Sansome',60,585,'Subscriber',94111); +INSERT INTO "trip" VALUES(912958,312,'8/31/2015 17:32','Howard at 2nd',63,'8/31/2015 17:37','Steuart at Market',74,548,'Subscriber',94590); +INSERT INTO "trip" VALUES(912959,631,'8/31/2015 17:32','Beale at Market',56,'8/31/2015 17:42','San Francisco Caltrain (Townsend at 4th)',70,597,'Subscriber',94010); +INSERT INTO "trip" VALUES(912960,250,'8/31/2015 17:32','Santa Clara at Almaden',4,'8/31/2015 17:36','San Jose Diridon Caltrain Station',2,165,'Subscriber',94110); +INSERT INTO "trip" VALUES(912961,268,'8/31/2015 17:32','Embarcadero at Sansome',60,'8/31/2015 17:36','Steuart at Market',74,501,'Subscriber',94597); +INSERT INTO "trip" VALUES(912962,757,'8/31/2015 17:32','San Francisco Caltrain 2 (330 Townsend)',69,'8/31/2015 17:44','Embarcadero at Folsom',51,553,'Subscriber',94608); +INSERT INTO "trip" VALUES(912963,353,'8/31/2015 17:32','Howard at 2nd',63,'8/31/2015 17:38','Harry Bridges Plaza (Ferry Building)',50,404,'Subscriber',94115); +INSERT INTO "trip" VALUES(912966,642,'8/31/2015 17:32','Davis at Jackson',42,'8/31/2015 17:43','San Francisco Caltrain (Townsend at 4th)',70,408,'Subscriber',95014); +INSERT INTO "trip" VALUES(912967,737,'8/31/2015 17:32','Washington at Kearny',46,'8/31/2015 17:45','San Francisco Caltrain (Townsend at 4th)',70,540,'Subscriber',94087); +INSERT INTO "trip" VALUES(912969,559,'8/31/2015 17:33','Townsend at 7th',65,'8/31/2015 17:42','2nd at Folsom',62,288,'Subscriber',94127); +INSERT INTO "trip" VALUES(912972,221,'8/31/2015 17:33','Davis at Jackson',42,'8/31/2015 17:37','Temporary Transbay Terminal (Howard at Beale)',55,320,'Subscriber',94611); +INSERT INTO "trip" VALUES(912973,229,'8/31/2015 17:32','South Van Ness at Market',66,'8/31/2015 17:35','Civic Center BART (7th at Market)',72,574,'Subscriber',94803); +INSERT INTO "trip" VALUES(912974,688,'8/31/2015 17:34','Golden Gate at Polk',59,'8/31/2015 17:45','Temporary Transbay Terminal (Howard at Beale)',55,602,'Subscriber',94610); +INSERT INTO "trip" VALUES(912975,652,'8/31/2015 17:34','Steuart at Market',74,'8/31/2015 17:45','San Francisco Caltrain (Townsend at 4th)',70,559,'Subscriber',94025); +INSERT INTO "trip" VALUES(912977,526,'8/31/2015 17:35','Temporary Transbay Terminal (Howard at Beale)',55,'8/31/2015 17:43','San Francisco Caltrain 2 (330 Townsend)',69,507,'Subscriber',94025); +INSERT INTO "trip" VALUES(912979,996,'8/31/2015 17:35','Davis at Jackson',42,'8/31/2015 17:51','San Francisco Caltrain (Townsend at 4th)',70,328,'Customer',94107); +INSERT INTO "trip" VALUES(912980,646,'8/31/2015 17:35','Howard at 2nd',63,'8/31/2015 17:46','San Francisco Caltrain (Townsend at 4th)',70,427,'Subscriber',94025); +INSERT INTO "trip" VALUES(912981,893,'8/31/2015 17:35','Clay at Battery',41,'8/31/2015 17:50','2nd at Townsend',61,269,'Subscriber',94111); +INSERT INTO "trip" VALUES(912982,847,'8/31/2015 17:35','Temporary Transbay Terminal (Howard at Beale)',55,'8/31/2015 17:50','San Francisco Caltrain (Townsend at 4th)',70,187,'Subscriber',95110); +INSERT INTO "trip" VALUES(912985,613,'8/31/2015 17:36','Civic Center BART (7th at Market)',72,'8/31/2015 17:46','San Francisco Caltrain 2 (330 Townsend)',69,492,'Subscriber',94040); +INSERT INTO "trip" VALUES(912986,442,'8/31/2015 17:36','5th at Howard',57,'8/31/2015 17:43','Powell at Post (Union Square)',71,465,'Customer',43214); +INSERT INTO "trip" VALUES(912987,405,'8/31/2015 17:36','Civic Center BART (7th at Market)',72,'8/31/2015 17:43','Market at Sansome',77,541,'Subscriber',94608); +INSERT INTO "trip" VALUES(912988,293,'8/31/2015 17:36','Steuart at Market',74,'8/31/2015 17:41','Howard at 2nd',63,282,'Customer','nil'); +INSERT INTO "trip" VALUES(912989,681,'8/31/2015 17:36','Temporary Transbay Terminal (Howard at Beale)',55,'8/31/2015 17:48','Townsend at 7th',65,508,'Subscriber',94102); +INSERT INTO "trip" VALUES(912990,636,'8/31/2015 17:37','Powell Street BART',39,'8/31/2015 17:47','San Francisco Caltrain (Townsend at 4th)',70,310,'Subscriber',94102); +INSERT INTO "trip" VALUES(912993,700,'8/31/2015 17:37','Beale at Market',56,'8/31/2015 17:48','Golden Gate at Polk',59,393,'Subscriber',94109); +INSERT INTO "trip" VALUES(912994,227,'8/31/2015 17:37','Townsend at 7th',65,'8/31/2015 17:41','San Francisco Caltrain 2 (330 Townsend)',69,338,'Subscriber',94301); +INSERT INTO "trip" VALUES(912997,286,'8/31/2015 17:38','Castro Street and El Camino Real',32,'8/31/2015 17:43','Mountain View Caltrain Station',28,251,'Subscriber',94401); +INSERT INTO "trip" VALUES(912998,691,'8/31/2015 17:38','Yerba Buena Center of the Arts (3rd @ Howard)',68,'8/31/2015 17:50','South Van Ness at Market',66,428,'Subscriber',94102); +INSERT INTO "trip" VALUES(912999,598,'8/31/2015 17:38','Davis at Jackson',42,'8/31/2015 17:48','Howard at 2nd',63,331,'Subscriber',94024); +INSERT INTO "trip" VALUES(913000,782,'8/31/2015 17:39','Market at 10th',67,'8/31/2015 17:52','Spear at Folsom',49,361,'Subscriber',94105); +INSERT INTO "trip" VALUES(913001,433,'8/31/2015 17:39','Market at 4th',76,'8/31/2015 17:46','San Francisco Caltrain (Townsend at 4th)',70,441,'Subscriber',94303); +INSERT INTO "trip" VALUES(913004,411,'8/31/2015 17:39','Yerba Buena Center of the Arts (3rd @ Howard)',68,'8/31/2015 17:46','Steuart at Market',74,495,'Subscriber',94939); +INSERT INTO "trip" VALUES(913005,281,'8/31/2015 17:39','Davis at Jackson',42,'8/31/2015 17:44','Embarcadero at Sansome',60,526,'Subscriber',94107); +INSERT INTO "trip" VALUES(913006,217,'8/31/2015 17:39','Temporary Transbay Terminal (Howard at Beale)',55,'8/31/2015 17:43','Embarcadero at Bryant',54,594,'Subscriber',94010); +INSERT INTO "trip" VALUES(913009,725,'8/31/2015 17:40','Harry Bridges Plaza (Ferry Building)',50,'8/31/2015 17:53','San Francisco Caltrain (Townsend at 4th)',70,360,'Subscriber',94111); +INSERT INTO "trip" VALUES(913010,1075,'8/31/2015 17:41','Townsend at 7th',65,'8/31/2015 17:59','Temporary Transbay Terminal (Howard at Beale)',55,470,'Subscriber',94551); +INSERT INTO "trip" VALUES(913011,343,'8/31/2015 17:41','2nd at South Park',64,'8/31/2015 17:47','Market at Sansome',77,388,'Subscriber',94610); +INSERT INTO "trip" VALUES(913013,350,'8/31/2015 17:41','Castro Street and El Camino Real',32,'8/31/2015 17:47','Mountain View Caltrain Station',28,142,'Subscriber',94111); +INSERT INTO "trip" VALUES(913016,500,'8/31/2015 17:42','San Francisco Caltrain 2 (330 Townsend)',69,'8/31/2015 17:50','Embarcadero at Bryant',54,436,'Subscriber',94105); +INSERT INTO "trip" VALUES(913018,276,'8/31/2015 17:43','5th at Howard',57,'8/31/2015 17:48','2nd at Folsom',62,432,'Subscriber',94105); +INSERT INTO "trip" VALUES(913019,710,'8/31/2015 17:43','Powell Street BART',39,'8/31/2015 17:55','Townsend at 7th',65,607,'Subscriber',94107); +INSERT INTO "trip" VALUES(913020,262,'8/31/2015 17:43','Townsend at 7th',65,'8/31/2015 17:48','San Francisco Caltrain 2 (330 Townsend)',69,134,'Subscriber',94040); +INSERT INTO "trip" VALUES(913021,398,'8/31/2015 17:44','Embarcadero at Sansome',60,'8/31/2015 17:51','Embarcadero at Folsom',51,267,'Subscriber',94124); +INSERT INTO "trip" VALUES(913022,728,'8/31/2015 17:45','Market at 10th',67,'8/31/2015 17:57','Washington at Kearny',46,480,'Subscriber',94556); +INSERT INTO "trip" VALUES(913023,572,'8/31/2015 17:45','Embarcadero at Folsom',51,'8/31/2015 17:55','San Francisco Caltrain (Townsend at 4th)',70,372,'Subscriber',95070); +INSERT INTO "trip" VALUES(913025,361,'8/31/2015 17:45','2nd at Folsom',62,'8/31/2015 17:51','Harry Bridges Plaza (Ferry Building)',50,288,'Subscriber',94973); +INSERT INTO "trip" VALUES(913026,525,'8/31/2015 17:45','Temporary Transbay Terminal (Howard at Beale)',55,'8/31/2015 17:54','San Francisco Caltrain 2 (330 Townsend)',69,395,'Subscriber',94022); +INSERT INTO "trip" VALUES(913028,277,'8/31/2015 17:46','Commercial at Montgomery',45,'8/31/2015 17:51','Mechanics Plaza (Market at Battery)',75,317,'Subscriber',94704); +INSERT INTO "trip" VALUES(913029,624,'8/31/2015 17:46','Harry Bridges Plaza (Ferry Building)',50,'8/31/2015 17:57','2nd at Townsend',61,502,'Subscriber',94022); +INSERT INTO "trip" VALUES(913030,696,'8/31/2015 17:47','San Francisco Caltrain (Townsend at 4th)',70,'8/31/2015 17:58','Embarcadero at Sansome',60,448,'Subscriber',94111); +INSERT INTO "trip" VALUES(913031,695,'8/31/2015 17:47','San Francisco Caltrain 2 (330 Townsend)',69,'8/31/2015 17:58','San Francisco City Hall',58,593,'Subscriber',94102); +INSERT INTO "trip" VALUES(913032,1082,'8/31/2015 17:47','Market at Sansome',77,'8/31/2015 18:05','San Francisco Caltrain 2 (330 Townsend)',69,541,'Subscriber',94303); +INSERT INTO "trip" VALUES(913033,379,'8/31/2015 17:47','2nd at Folsom',62,'8/31/2015 17:53','Steuart at Market',74,191,'Subscriber',94563); +INSERT INTO "trip" VALUES(913035,499,'8/31/2015 17:47','Commercial at Montgomery',45,'8/31/2015 17:55','Embarcadero at Bryant',54,522,'Subscriber',94010); +INSERT INTO "trip" VALUES(913038,359,'8/31/2015 17:48','Townsend at 7th',65,'8/31/2015 17:54','Civic Center BART (7th at Market)',72,555,'Subscriber',94518); +INSERT INTO "trip" VALUES(913039,866,'8/31/2015 17:48','Davis at Jackson',42,'8/31/2015 18:02','Civic Center BART (7th at Market)',72,530,'Subscriber',94103); +INSERT INTO "trip" VALUES(913040,373,'8/31/2015 17:48','Spear at Folsom',49,'8/31/2015 17:54','Embarcadero at Vallejo',48,635,'Subscriber',94103); +INSERT INTO "trip" VALUES(913041,330,'8/31/2015 17:48','2nd at Folsom',62,'8/31/2015 17:53','Harry Bridges Plaza (Ferry Building)',50,601,'Subscriber',94960); +INSERT INTO "trip" VALUES(913042,893,'8/31/2015 17:48','Steuart at Market',74,'8/31/2015 18:03','San Francisco Caltrain (Townsend at 4th)',70,500,'Subscriber',94404); +INSERT INTO "trip" VALUES(913043,361,'8/31/2015 17:49','2nd at Townsend',61,'8/31/2015 17:55','Howard at 2nd',63,564,'Subscriber',94608); +INSERT INTO "trip" VALUES(913046,309,'8/31/2015 17:49','2nd at Folsom',62,'8/31/2015 17:55','San Francisco Caltrain (Townsend at 4th)',70,432,'Subscriber',94305); +INSERT INTO "trip" VALUES(913047,439,'8/31/2015 17:49','Steuart at Market',74,'8/31/2015 17:57','Post at Kearny',47,472,'Subscriber',94105); +INSERT INTO "trip" VALUES(913048,742,'8/31/2015 17:49','South Van Ness at Market',66,'8/31/2015 18:02','San Francisco Caltrain 2 (330 Townsend)',69,334,'Subscriber',94085); +INSERT INTO "trip" VALUES(913051,614,'8/31/2015 17:51','2nd at Townsend',61,'8/31/2015 18:01','Davis at Jackson',42,353,'Subscriber',94111); +INSERT INTO "trip" VALUES(913052,426,'8/31/2015 17:51','San Antonio Caltrain Station',29,'8/31/2015 17:58','Rengstorff Avenue / California Street',33,118,'Subscriber',94040); +INSERT INTO "trip" VALUES(913055,545,'8/31/2015 17:51','Market at 10th',67,'8/31/2015 18:00','San Francisco Caltrain 2 (330 Townsend)',69,344,'Subscriber',94582); +INSERT INTO "trip" VALUES(913056,437,'8/31/2015 17:51','2nd at Folsom',62,'8/31/2015 17:59','Steuart at Market',74,193,'Subscriber',94114); +INSERT INTO "trip" VALUES(913057,590,'8/31/2015 17:52','Spear at Folsom',49,'8/31/2015 18:02','San Francisco Caltrain (Townsend at 4th)',70,611,'Subscriber',94404); +INSERT INTO "trip" VALUES(913060,1088,'8/31/2015 17:53','Steuart at Market',74,'8/31/2015 18:11','San Francisco Caltrain (Townsend at 4th)',70,501,'Subscriber',94010); +INSERT INTO "trip" VALUES(913061,877,'8/31/2015 17:53','Steuart at Market',74,'8/31/2015 18:08','San Francisco Caltrain (Townsend at 4th)',70,495,'Subscriber',94010); +INSERT INTO "trip" VALUES(913062,508,'8/31/2015 17:53','Davis at Jackson',42,'8/31/2015 18:02','Howard at 2nd',63,66,'Subscriber',94107); +INSERT INTO "trip" VALUES(913065,254,'8/31/2015 17:53','Palo Alto Caltrain Station',34,'8/31/2015 17:58','Cowper at University',37,230,'Subscriber',94301); +INSERT INTO "trip" VALUES(913066,212,'8/31/2015 17:54','Yerba Buena Center of the Arts (3rd @ Howard)',68,'8/31/2015 17:57','Post at Kearny',47,394,'Subscriber',94110); +INSERT INTO "trip" VALUES(913067,246,'8/31/2015 17:54','Palo Alto Caltrain Station',34,'8/31/2015 17:58','Cowper at University',37,715,'Subscriber',94040); +INSERT INTO "trip" VALUES(913068,497,'8/31/2015 17:54','Yerba Buena Center of the Arts (3rd @ Howard)',68,'8/31/2015 18:02','San Francisco Caltrain (Townsend at 4th)',70,359,'Customer',94086); +INSERT INTO "trip" VALUES(913069,1212,'8/31/2015 17:54','Embarcadero at Vallejo',48,'8/31/2015 18:15','San Francisco Caltrain (Townsend at 4th)',70,635,'Subscriber',94086); +INSERT INTO "trip" VALUES(913071,258,'8/31/2015 17:55','Paseo de San Antonio',7,'8/31/2015 17:59','SJSU - San Salvador at 9th',16,156,'Subscriber',95112); +INSERT INTO "trip" VALUES(913072,481,'8/31/2015 17:55','Steuart at Market',74,'8/31/2015 18:03','2nd at Townsend',61,291,'Subscriber',94107); +INSERT INTO "trip" VALUES(913075,355,'8/31/2015 17:56','Mountain View Caltrain Station',28,'8/31/2015 18:02','Evelyn Park and Ride',30,107,'Subscriber',94087); +INSERT INTO "trip" VALUES(913076,776,'8/31/2015 17:57','Broadway St at Battery St',82,'8/31/2015 18:09','2nd at Townsend',61,505,'Subscriber',95111); +INSERT INTO "trip" VALUES(913078,926,'8/31/2015 17:57','San Francisco Caltrain (Townsend at 4th)',70,'8/31/2015 18:12','Embarcadero at Sansome',60,557,'Subscriber',94133); +INSERT INTO "trip" VALUES(913079,889,'8/31/2015 17:57','Broadway St at Battery St',82,'8/31/2015 18:12','San Francisco Caltrain (Townsend at 4th)',70,542,'Subscriber',95130); +INSERT INTO "trip" VALUES(913082,600,'8/31/2015 17:58','Embarcadero at Sansome',60,'8/31/2015 18:08','Embarcadero at Bryant',54,632,'Subscriber',94107); +INSERT INTO "trip" VALUES(913083,979,'8/31/2015 17:58','Steuart at Market',74,'8/31/2015 18:15','Townsend at 7th',65,236,'Subscriber',94107); +INSERT INTO "trip" VALUES(913084,547,'8/31/2015 17:58','Howard at 2nd',63,'8/31/2015 18:08','Embarcadero at Sansome',60,279,'Customer','nil'); +INSERT INTO "trip" VALUES(913085,207,'8/31/2015 17:59','Townsend at 7th',65,'8/31/2015 18:02','San Francisco Caltrain 2 (330 Townsend)',69,456,'Subscriber',94103); +INSERT INTO "trip" VALUES(913086,485,'8/31/2015 17:59','5th at Howard',57,'8/31/2015 18:07','San Francisco Caltrain 2 (330 Townsend)',69,462,'Subscriber',94401); +INSERT INTO "trip" VALUES(913089,563,'8/31/2015 17:59','Powell Street BART',39,'8/31/2015 18:09','San Francisco Caltrain 2 (330 Townsend)',69,137,'Subscriber',94306); +INSERT INTO "trip" VALUES(913090,860,'8/31/2015 18:00','Steuart at Market',74,'8/31/2015 18:14','Golden Gate at Polk',59,498,'Subscriber',94109); +INSERT INTO "trip" VALUES(913092,278,'8/31/2015 18:00','2nd at Folsom',62,'8/31/2015 18:04','Temporary Transbay Terminal (Howard at Beale)',55,518,'Subscriber',94710); +INSERT INTO "trip" VALUES(913093,701,'8/31/2015 18:00','Market at Sansome',77,'8/31/2015 18:11','Golden Gate at Polk',59,599,'Subscriber',94105); +INSERT INTO "trip" VALUES(913094,579,'8/31/2015 18:00','Temporary Transbay Terminal (Howard at Beale)',55,'8/31/2015 18:09','San Francisco Caltrain (Townsend at 4th)',70,417,'Customer',94066); +INSERT INTO "trip" VALUES(913095,309,'8/31/2015 18:00','Embarcadero at Sansome',60,'8/31/2015 18:05','Steuart at Market',74,448,'Subscriber',94549); +INSERT INTO "trip" VALUES(913096,227,'8/31/2015 18:00','Cowper at University',37,'8/31/2015 18:04','Palo Alto Caltrain Station',34,689,'Subscriber',94107); +INSERT INTO "trip" VALUES(913097,570,'8/31/2015 18:00','2nd at Townsend',61,'8/31/2015 18:10','Davis at Jackson',42,502,'Subscriber',94111); +INSERT INTO "trip" VALUES(913099,250,'8/31/2015 18:01','Broadway St at Battery St',82,'8/31/2015 18:05','Beale at Market',56,440,'Subscriber',94618); +INSERT INTO "trip" VALUES(913100,263,'8/31/2015 18:01','2nd at Folsom',62,'8/31/2015 18:06','2nd at Townsend',61,621,'Subscriber',94107); +INSERT INTO "trip" VALUES(913101,357,'8/31/2015 18:01','Broadway St at Battery St',82,'8/31/2015 18:07','Temporary Transbay Terminal (Howard at Beale)',55,379,'Subscriber',94610); +INSERT INTO "trip" VALUES(913102,772,'8/31/2015 18:02','Powell at Post (Union Square)',71,'8/31/2015 18:15','South Van Ness at Market',66,96,'Subscriber',94115); +INSERT INTO "trip" VALUES(913103,1116,'8/31/2015 18:02','Commercial at Montgomery',45,'8/31/2015 18:21','Townsend at 7th',65,370,'Subscriber',94107); +INSERT INTO "trip" VALUES(913104,325,'8/31/2015 18:02','Yerba Buena Center of the Arts (3rd @ Howard)',68,'8/31/2015 18:08','San Francisco Caltrain (Townsend at 4th)',70,575,'Subscriber',94041); +INSERT INTO "trip" VALUES(913107,283,'8/31/2015 18:03','2nd at Folsom',62,'8/31/2015 18:07','Market at Sansome',77,375,'Subscriber',94549); +INSERT INTO "trip" VALUES(913108,293,'8/31/2015 18:03','Market at 4th',76,'8/31/2015 18:08','Temporary Transbay Terminal (Howard at Beale)',55,340,'Subscriber',94501); +INSERT INTO "trip" VALUES(913110,618,'8/31/2015 18:03','Embarcadero at Folsom',51,'8/31/2015 18:13','San Francisco Caltrain (Townsend at 4th)',70,422,'Subscriber',95129); +INSERT INTO "trip" VALUES(913111,296,'8/31/2015 18:03','Santa Clara at Almaden',4,'8/31/2015 18:08','San Jose Diridon Caltrain Station',2,14,'Subscriber',94158); +INSERT INTO "trip" VALUES(913112,290,'8/31/2015 18:03','San Jose Diridon Caltrain Station',2,'8/31/2015 18:08','Santa Clara at Almaden',4,205,'Subscriber',95110); +INSERT INTO "trip" VALUES(913113,153,'8/31/2015 18:03','San Antonio Shopping Center',31,'8/31/2015 18:06','San Antonio Caltrain Station',29,10,'Subscriber',94103); +INSERT INTO "trip" VALUES(913114,264,'8/31/2015 18:04','Mountain View Caltrain Station',28,'8/31/2015 18:08','Mountain View City Hall',27,197,'Subscriber',94041); +INSERT INTO "trip" VALUES(913115,500,'8/31/2015 18:04','Market at 10th',67,'8/31/2015 18:12','San Francisco Caltrain 2 (330 Townsend)',69,625,'Subscriber',94065); +INSERT INTO "trip" VALUES(913116,469,'8/31/2015 18:04','Market at 10th',67,'8/31/2015 18:12','Powell Street BART',39,300,'Subscriber',94112); +INSERT INTO "trip" VALUES(913117,570,'8/31/2015 18:05','2nd at Townsend',61,'8/31/2015 18:14','Harry Bridges Plaza (Ferry Building)',50,291,'Subscriber',94960); +INSERT INTO "trip" VALUES(913118,253,'8/31/2015 18:05','Adobe on Almaden',5,'8/31/2015 18:10','San Jose Diridon Caltrain Station',2,660,'Subscriber',94043); +INSERT INTO "trip" VALUES(913120,872,'8/31/2015 18:06','Steuart at Market',74,'8/31/2015 18:20','Golden Gate at Polk',59,448,'Subscriber',94102); +INSERT INTO "trip" VALUES(913121,720,'8/31/2015 18:06','Mechanics Plaza (Market at Battery)',75,'8/31/2015 18:18','Embarcadero at Sansome',60,390,'Subscriber',94109); +INSERT INTO "trip" VALUES(913122,419,'8/31/2015 18:07','Townsend at 7th',65,'8/31/2015 18:14','2nd at Townsend',61,418,'Subscriber',94107); +INSERT INTO "trip" VALUES(913123,702,'8/31/2015 18:08','San Francisco Caltrain (Townsend at 4th)',70,'8/31/2015 18:19','Market at Sansome',77,611,'Subscriber',94109); +INSERT INTO "trip" VALUES(913124,794,'8/31/2015 18:08','Steuart at Market',74,'8/31/2015 18:21','San Francisco Caltrain (Townsend at 4th)',70,193,'Subscriber',95134); +INSERT INTO "trip" VALUES(913125,394,'8/31/2015 18:08','San Francisco Caltrain 2 (330 Townsend)',69,'8/31/2015 18:14','5th at Howard',57,456,'Subscriber',94103); +INSERT INTO "trip" VALUES(913126,504,'8/31/2015 18:08','Powell Street BART',39,'8/31/2015 18:16','Steuart at Market',74,411,'Subscriber',94941); +INSERT INTO "trip" VALUES(913127,1139,'8/31/2015 18:08','San Francisco Caltrain (Townsend at 4th)',70,'8/31/2015 18:27','Embarcadero at Sansome',60,385,'Subscriber',94111); +INSERT INTO "trip" VALUES(913128,384,'8/31/2015 18:08','Yerba Buena Center of the Arts (3rd @ Howard)',68,'8/31/2015 18:15','San Francisco Caltrain (Townsend at 4th)',70,560,'Subscriber',94070); +INSERT INTO "trip" VALUES(913129,969,'8/31/2015 18:09','Davis at Jackson',42,'8/31/2015 18:25','San Francisco Caltrain 2 (330 Townsend)',69,353,'Subscriber',94111); +INSERT INTO "trip" VALUES(913130,469,'8/31/2015 18:10','Redwood City Medical Center',26,'8/31/2015 18:17','Redwood City Caltrain Station',22,690,'Subscriber',94040); +INSERT INTO "trip" VALUES(913131,829,'8/31/2015 18:09','Harry Bridges Plaza (Ferry Building)',50,'8/31/2015 18:23','San Francisco Caltrain 2 (330 Townsend)',69,403,'Subscriber',94086); +INSERT INTO "trip" VALUES(913133,1058,'8/31/2015 18:11','Embarcadero at Vallejo',48,'8/31/2015 18:29','Mechanics Plaza (Market at Battery)',75,325,'Customer',94597); +INSERT INTO "trip" VALUES(913134,231,'8/31/2015 18:12','Santa Clara at Almaden',4,'8/31/2015 18:16','San Jose Diridon Caltrain Station',2,688,'Subscriber',94158); +INSERT INTO "trip" VALUES(913135,399,'8/31/2015 18:13','2nd at Folsom',62,'8/31/2015 18:19','Clay at Battery',41,421,'Subscriber',94920); +INSERT INTO "trip" VALUES(913136,434,'8/31/2015 18:13','San Francisco City Hall',58,'8/31/2015 18:20','Market at 4th',76,332,'Subscriber',94105); +INSERT INTO "trip" VALUES(913137,763,'8/31/2015 18:13','South Van Ness at Market',66,'8/31/2015 18:26','San Francisco Caltrain 2 (330 Townsend)',69,368,'Subscriber',94010); +INSERT INTO "trip" VALUES(913138,516,'8/31/2015 18:14','Powell at Post (Union Square)',71,'8/31/2015 18:22','Howard at 2nd',63,465,'Customer',43214); +INSERT INTO "trip" VALUES(913140,523,'8/31/2015 18:14','Howard at 2nd',63,'8/31/2015 18:23','San Francisco Caltrain 2 (330 Townsend)',69,66,'Subscriber',94002); +INSERT INTO "trip" VALUES(913141,446,'8/31/2015 18:14','Market at Sansome',77,'8/31/2015 18:22','San Francisco Caltrain 2 (330 Townsend)',69,517,'Subscriber',95134); +INSERT INTO "trip" VALUES(913142,356,'8/31/2015 18:15','Broadway St at Battery St',82,'8/31/2015 18:21','Temporary Transbay Terminal (Howard at Beale)',55,589,'Subscriber',94602); +INSERT INTO "trip" VALUES(913144,990,'8/31/2015 18:15','Broadway St at Battery St',82,'8/31/2015 18:31','San Francisco Caltrain (Townsend at 4th)',70,527,'Subscriber',94303); +INSERT INTO "trip" VALUES(913145,461,'8/31/2015 18:16','2nd at Folsom',62,'8/31/2015 18:24','San Francisco Caltrain 2 (330 Townsend)',69,606,'Subscriber',95125); +INSERT INTO "trip" VALUES(913146,456,'8/31/2015 18:16','Embarcadero at Sansome',60,'8/31/2015 18:24','Harry Bridges Plaza (Ferry Building)',50,583,'Subscriber',94566); +INSERT INTO "trip" VALUES(913147,353,'8/31/2015 18:17','Powell Street BART',39,'8/31/2015 18:23','Mechanics Plaza (Market at Battery)',75,469,'Subscriber',94103); +INSERT INTO "trip" VALUES(913148,667,'8/31/2015 18:17','Yerba Buena Center of the Arts (3rd @ Howard)',68,'8/31/2015 18:29','Steuart at Market',74,579,'Customer',90007); +INSERT INTO "trip" VALUES(913149,599,'8/31/2015 18:17','Davis at Jackson',42,'8/31/2015 18:27','Powell at Post (Union Square)',71,489,'Subscriber',94109); +INSERT INTO "trip" VALUES(913150,534,'8/31/2015 18:18','Temporary Transbay Terminal (Howard at Beale)',55,'8/31/2015 18:27','San Francisco Caltrain 2 (330 Townsend)',69,431,'Subscriber',94062); +INSERT INTO "trip" VALUES(913151,399,'8/31/2015 18:18','Castro Street and El Camino Real',32,'8/31/2015 18:25','Mountain View Caltrain Station',28,175,'Subscriber',94040); +INSERT INTO "trip" VALUES(913152,267,'8/31/2015 18:19','Market at Sansome',77,'8/31/2015 18:24','Harry Bridges Plaza (Ferry Building)',50,475,'Subscriber',94105); +INSERT INTO "trip" VALUES(913153,305,'8/31/2015 18:20','2nd at Townsend',61,'8/31/2015 18:25','2nd at Folsom',62,621,'Subscriber',94107); +INSERT INTO "trip" VALUES(913155,296,'8/31/2015 18:20','Commercial at Montgomery',45,'8/31/2015 18:25','Yerba Buena Center of the Arts (3rd @ Howard)',68,877,'Subscriber',94107); +INSERT INTO "trip" VALUES(913156,176,'8/31/2015 18:20','Townsend at 7th',65,'8/31/2015 18:23','San Francisco Caltrain 2 (330 Townsend)',69,508,'Subscriber',94063); +INSERT INTO "trip" VALUES(913157,331,'8/31/2015 18:21','5th at Howard',57,'8/31/2015 18:26','San Francisco Caltrain 2 (330 Townsend)',69,407,'Subscriber',94402); +INSERT INTO "trip" VALUES(913158,1152,'8/31/2015 18:22','Yerba Buena Center of the Arts (3rd @ Howard)',68,'8/31/2015 18:41','Golden Gate at Polk',59,420,'Subscriber',94043); +INSERT INTO "trip" VALUES(913159,241,'8/31/2015 18:22','Temporary Transbay Terminal (Howard at Beale)',55,'8/31/2015 18:26','Steuart at Market',74,470,'Subscriber',94965); +INSERT INTO "trip" VALUES(913160,537,'8/31/2015 18:23','Market at 4th',76,'8/31/2015 18:32','San Francisco Caltrain (Townsend at 4th)',70,274,'Subscriber',94002); +INSERT INTO "trip" VALUES(913161,1283,'8/31/2015 18:23','Embarcadero at Sansome',60,'8/31/2015 18:44','San Francisco Caltrain 2 (330 Townsend)',69,526,'Customer',19127); +INSERT INTO "trip" VALUES(913162,437,'8/31/2015 18:23','Embarcadero at Folsom',51,'8/31/2015 18:30','San Francisco Caltrain 2 (330 Townsend)',69,410,'Subscriber',94303); +INSERT INTO "trip" VALUES(913163,1244,'8/31/2015 18:23','Embarcadero at Sansome',60,'8/31/2015 18:44','San Francisco Caltrain 2 (330 Townsend)',69,390,'Customer',19134); +INSERT INTO "trip" VALUES(913164,389,'8/31/2015 18:24','Townsend at 7th',65,'8/31/2015 18:30','2nd at Townsend',61,236,'Subscriber',94107); +INSERT INTO "trip" VALUES(913165,269,'8/31/2015 18:24','Spear at Folsom',49,'8/31/2015 18:29','Howard at 2nd',63,361,'Subscriber',94602); +INSERT INTO "trip" VALUES(913166,591,'8/31/2015 18:25','Harry Bridges Plaza (Ferry Building)',50,'8/31/2015 18:35','Powell at Post (Union Square)',71,291,'Subscriber',94111); +INSERT INTO "trip" VALUES(913169,178,'8/31/2015 18:26','Temporary Transbay Terminal (Howard at Beale)',55,'8/31/2015 18:29','Beale at Market',56,531,'Subscriber',94030); +INSERT INTO "trip" VALUES(913183,226,'8/31/2015 18:30','2nd at Folsom',62,'8/31/2015 18:34','Market at Sansome',77,621,'Subscriber',94612); +INSERT INTO "trip" VALUES(913184,809,'8/31/2015 18:30','Mechanics Plaza (Market at Battery)',75,'8/31/2015 18:43','Golden Gate at Polk',59,600,'Customer',94597); +INSERT INTO "trip" VALUES(913185,451,'8/31/2015 18:30','Civic Center BART (7th at Market)',72,'8/31/2015 18:38','San Francisco Caltrain 2 (330 Townsend)',69,277,'Customer',78233); +INSERT INTO "trip" VALUES(913186,1280,'8/31/2015 18:31','San Francisco Caltrain (Townsend at 4th)',70,'8/31/2015 18:52','Clay at Battery',41,417,'Subscriber',94133); +INSERT INTO "trip" VALUES(913189,220,'8/31/2015 18:31','San Francisco Caltrain 2 (330 Townsend)',69,'8/31/2015 18:35','Townsend at 7th',65,606,'Subscriber',94103); +INSERT INTO "trip" VALUES(913191,515,'8/31/2015 18:32','San Francisco Caltrain (Townsend at 4th)',70,'8/31/2015 18:40','Temporary Transbay Terminal (Howard at Beale)',55,527,'Subscriber',94707); +INSERT INTO "trip" VALUES(913193,355,'8/31/2015 18:32','San Francisco Caltrain 2 (330 Townsend)',69,'8/31/2015 18:38','5th at Howard',57,405,'Subscriber',94103); +INSERT INTO "trip" VALUES(913195,350,'8/31/2015 18:34','Market at Sansome',77,'8/31/2015 18:39','Temporary Transbay Terminal (Howard at Beale)',55,463,'Subscriber',94611); +INSERT INTO "trip" VALUES(913197,692,'8/31/2015 18:34','Market at 10th',67,'8/31/2015 18:45','San Francisco Caltrain 2 (330 Townsend)',69,878,'Subscriber',94306); +INSERT INTO "trip" VALUES(913198,353,'8/31/2015 18:34','Townsend at 7th',65,'8/31/2015 18:40','Townsend at 7th',65,370,'Subscriber',94118); +INSERT INTO "trip" VALUES(913199,700,'8/31/2015 18:34','Market at Sansome',77,'8/31/2015 18:46','San Francisco Caltrain 2 (330 Townsend)',69,611,'Subscriber',94303); +INSERT INTO "trip" VALUES(913201,464,'8/31/2015 18:36','Market at 10th',67,'8/31/2015 18:44','Powell at Post (Union Square)',71,382,'Subscriber',94122); +INSERT INTO "trip" VALUES(913202,435,'8/31/2015 18:36','San Jose Diridon Caltrain Station',2,'8/31/2015 18:44','Paseo de San Antonio',7,688,'Subscriber',95113); +INSERT INTO "trip" VALUES(913203,433,'8/31/2015 18:36','San Jose Diridon Caltrain Station',2,'8/31/2015 18:44','Paseo de San Antonio',7,679,'Subscriber',95112); +INSERT INTO "trip" VALUES(913204,453,'8/31/2015 18:36','Embarcadero at Bryant',54,'8/31/2015 18:44','San Francisco Caltrain 2 (330 Townsend)',69,594,'Customer',94105); +INSERT INTO "trip" VALUES(913205,554,'8/31/2015 18:37','Mountain View Caltrain Station',28,'8/31/2015 18:46','Rengstorff Avenue / California Street',33,251,'Subscriber',94043); +INSERT INTO "trip" VALUES(913207,286,'8/31/2015 18:38','Embarcadero at Sansome',60,'8/31/2015 18:42','Steuart at Market',74,279,'Subscriber',94609); +INSERT INTO "trip" VALUES(913208,265,'8/31/2015 18:38','Market at Sansome',77,'8/31/2015 18:42','Temporary Transbay Terminal (Howard at Beale)',55,461,'Subscriber',94610); +INSERT INTO "trip" VALUES(913209,375,'8/31/2015 18:38','Embarcadero at Sansome',60,'8/31/2015 18:45','Steuart at Market',74,557,'Subscriber',94612); +INSERT INTO "trip" VALUES(913210,7472,'8/31/2015 18:38','Embarcadero at Sansome',60,'8/31/2015 20:43','Embarcadero at Sansome',60,585,'Customer',34); +INSERT INTO "trip" VALUES(913211,7558,'8/31/2015 18:38','Embarcadero at Sansome',60,'8/31/2015 20:44','Embarcadero at Sansome',60,385,'Customer',34); +INSERT INTO "trip" VALUES(913212,73,'8/31/2015 18:39','5th at Howard',57,'8/31/2015 18:40','5th at Howard',57,456,'Subscriber',94107); +INSERT INTO "trip" VALUES(913213,332,'8/31/2015 18:39','Mountain View Caltrain Station',28,'8/31/2015 18:45','Castro Street and El Camino Real',32,147,'Subscriber',94041); +INSERT INTO "trip" VALUES(913214,334,'8/31/2015 18:40','5th at Howard',57,'8/31/2015 18:45','San Francisco Caltrain 2 (330 Townsend)',69,405,'Subscriber',95050); +INSERT INTO "trip" VALUES(913215,439,'8/31/2015 18:40','Market at 4th',76,'8/31/2015 18:48','San Francisco Caltrain (Townsend at 4th)',70,652,'Subscriber',2139); +INSERT INTO "trip" VALUES(913216,559,'8/31/2015 18:41','San Jose Diridon Caltrain Station',2,'8/31/2015 18:51','Ryland Park',84,702,'Subscriber',95110); +INSERT INTO "trip" VALUES(913217,797,'8/31/2015 18:43','San Jose Diridon Caltrain Station',2,'8/31/2015 18:56','SJSU - San Salvador at 9th',16,14,'Subscriber',95112); +INSERT INTO "trip" VALUES(913218,584,'8/31/2015 18:43','Steuart at Market',74,'8/31/2015 18:53','San Francisco Caltrain (Townsend at 4th)',70,470,'Subscriber',94105); +INSERT INTO "trip" VALUES(913219,455,'8/31/2015 18:44','5th at Howard',57,'8/31/2015 18:51','Temporary Transbay Terminal (Howard at Beale)',55,456,'Subscriber',94530); +INSERT INTO "trip" VALUES(913220,136,'8/31/2015 18:44','Embarcadero at Folsom',51,'8/31/2015 18:46','Embarcadero at Bryant',54,618,'Subscriber',94115); +INSERT INTO "trip" VALUES(913221,571,'8/31/2015 18:44','2nd at Townsend',61,'8/31/2015 18:53','Post at Kearny',47,392,'Subscriber',94109); +INSERT INTO "trip" VALUES(913222,248,'8/31/2015 18:44','Broadway St at Battery St',82,'8/31/2015 18:48','Steuart at Market',74,409,'Subscriber',94702); +INSERT INTO "trip" VALUES(913223,738,'8/31/2015 18:45','Santa Clara County Civic Center',80,'8/31/2015 18:57','San Pedro Square',6,308,'Subscriber',95110); +INSERT INTO "trip" VALUES(913224,1015,'8/31/2015 18:45','Beale at Market',56,'8/31/2015 19:02','Market at 10th',67,531,'Subscriber',94103); +INSERT INTO "trip" VALUES(913225,521,'8/31/2015 18:45','2nd at Townsend',61,'8/31/2015 18:54','Market at Sansome',77,236,'Subscriber',94401); +INSERT INTO "trip" VALUES(913226,182,'8/31/2015 18:46','Townsend at 7th',65,'8/31/2015 18:49','San Francisco Caltrain (Townsend at 4th)',70,607,'Subscriber',95051); +INSERT INTO "trip" VALUES(913227,533,'8/31/2015 18:47','Market at 10th',67,'8/31/2015 18:56','Washington at Kearny',46,547,'Subscriber',94103); +INSERT INTO "trip" VALUES(913228,886,'8/31/2015 18:47','Harry Bridges Plaza (Ferry Building)',50,'8/31/2015 19:02','San Francisco Caltrain (Townsend at 4th)',70,387,'Subscriber',94107); +INSERT INTO "trip" VALUES(913230,395,'8/31/2015 18:48','Mechanics Plaza (Market at Battery)',75,'8/31/2015 18:55','Powell Street BART',39,469,'Subscriber',94103); +INSERT INTO "trip" VALUES(913231,515,'8/31/2015 18:49','Powell Street BART',39,'8/31/2015 18:57','Temporary Transbay Terminal (Howard at Beale)',55,412,'Subscriber',94602); +INSERT INTO "trip" VALUES(913232,421,'8/31/2015 18:49','Embarcadero at Folsom',51,'8/31/2015 18:56','2nd at Townsend',61,267,'Subscriber',94107); +INSERT INTO "trip" VALUES(913233,475,'8/31/2015 18:49','Beale at Market',56,'8/31/2015 18:57','Powell Street BART',39,440,'Subscriber',94577); +INSERT INTO "trip" VALUES(913234,659,'8/31/2015 18:49','Market at Sansome',77,'8/31/2015 19:00','Embarcadero at Bryant',54,335,'Subscriber',94105); +INSERT INTO "trip" VALUES(913235,692,'8/31/2015 18:50','Embarcadero at Folsom',51,'8/31/2015 19:01','2nd at Townsend',61,364,'Subscriber',94062); +INSERT INTO "trip" VALUES(913236,391,'8/31/2015 18:50','Steuart at Market',74,'8/31/2015 18:57','Embarcadero at Sansome',60,409,'Subscriber',94133); +INSERT INTO "trip" VALUES(913237,142,'8/31/2015 18:51','Howard at 2nd',63,'8/31/2015 18:53','Market at Sansome',77,361,'Subscriber',94114); +INSERT INTO "trip" VALUES(913241,267,'8/31/2015 18:54','Clay at Battery',41,'8/31/2015 18:58','Howard at 2nd',63,421,'Subscriber',94107); +INSERT INTO "trip" VALUES(913242,452,'8/31/2015 18:53','Market at 4th',76,'8/31/2015 19:00','Market at 10th',67,434,'Subscriber',94117); +INSERT INTO "trip" VALUES(913243,756,'8/31/2015 18:55','San Francisco Caltrain (Townsend at 4th)',70,'8/31/2015 19:07','Davis at Jackson',42,470,'Subscriber',94111); +INSERT INTO "trip" VALUES(913244,225,'8/31/2015 18:55','Redwood City Caltrain Station',22,'8/31/2015 18:59','Mezes Park',83,699,'Subscriber',94063); +INSERT INTO "trip" VALUES(913245,727,'8/31/2015 18:55','San Francisco Caltrain (Townsend at 4th)',70,'8/31/2015 19:07','Davis at Jackson',42,687,'Subscriber',94111); +INSERT INTO "trip" VALUES(913246,769,'8/31/2015 18:55','San Francisco Caltrain (Townsend at 4th)',70,'8/31/2015 19:08','Harry Bridges Plaza (Ferry Building)',50,587,'Subscriber',94107); +INSERT INTO "trip" VALUES(913247,415,'8/31/2015 18:55','Market at Sansome',77,'8/31/2015 19:02','Grant Avenue at Columbus Avenue',73,659,'Subscriber',94133); +INSERT INTO "trip" VALUES(913248,291,'8/31/2015 18:56','San Francisco Caltrain 2 (330 Townsend)',69,'8/31/2015 19:01','2nd at South Park',64,395,'Subscriber',94107); +INSERT INTO "trip" VALUES(913250,226,'8/31/2015 18:57','San Francisco Caltrain (Townsend at 4th)',70,'8/31/2015 19:01','2nd at Townsend',61,501,'Customer',98103); +INSERT INTO "trip" VALUES(913251,660,'8/31/2015 19:01','Embarcadero at Sansome',60,'8/31/2015 19:12','Temporary Transbay Terminal (Howard at Beale)',55,356,'Subscriber',94602); +INSERT INTO "trip" VALUES(913254,286,'8/31/2015 19:02','Mountain View Caltrain Station',28,'8/31/2015 19:06','Castro Street and El Camino Real',32,148,'Subscriber',94022); +INSERT INTO "trip" VALUES(913256,397,'8/31/2015 19:02','Mountain View Caltrain Station',28,'8/31/2015 19:09','Castro Street and El Camino Real',32,639,'Subscriber',94103); +INSERT INTO "trip" VALUES(913258,414,'8/31/2015 19:02','5th at Howard',57,'8/31/2015 19:09','Steuart at Market',74,352,'Subscriber',94903); +INSERT INTO "trip" VALUES(913263,315,'8/31/2015 19:03','Mountain View Caltrain Station',28,'8/31/2015 19:09','Evelyn Park and Ride',30,141,'Subscriber',94041); +INSERT INTO "trip" VALUES(913264,431,'8/31/2015 19:04','2nd at Townsend',61,'8/31/2015 19:11','Steuart at Market',74,418,'Subscriber',94612); +INSERT INTO "trip" VALUES(913265,658,'8/31/2015 19:04','Townsend at 7th',65,'8/31/2015 19:15','Spear at Folsom',49,606,'Subscriber',94608); +INSERT INTO "trip" VALUES(913266,229,'8/31/2015 19:04','Cowper at University',37,'8/31/2015 19:08','Palo Alto Caltrain Station',34,41,'Subscriber',94107); +INSERT INTO "trip" VALUES(913267,780,'8/31/2015 19:04','Embarcadero at Vallejo',48,'8/31/2015 19:17','San Francisco Caltrain 2 (330 Townsend)',69,521,'Subscriber',94403); +INSERT INTO "trip" VALUES(913268,259,'8/31/2015 19:05','San Francisco Caltrain (Townsend at 4th)',70,'8/31/2015 19:09','2nd at Townsend',61,607,'Subscriber',95134); +INSERT INTO "trip" VALUES(913269,260,'8/31/2015 19:05','Embarcadero at Vallejo',48,'8/31/2015 19:10','Harry Bridges Plaza (Ferry Building)',50,292,'Subscriber',94131); +INSERT INTO "trip" VALUES(913270,1432,'8/31/2015 19:06','2nd at South Park',64,'8/31/2015 19:30','Washington at Kearny',46,395,'Subscriber',94133); +INSERT INTO "trip" VALUES(913272,442,'8/31/2015 19:06','5th at Howard',57,'8/31/2015 19:14','Market at 10th',67,408,'Subscriber',94103); +INSERT INTO "trip" VALUES(913273,264,'8/31/2015 19:08','Redwood City Caltrain Station',22,'8/31/2015 19:12','Redwood City Medical Center',26,700,'Subscriber',94063); +INSERT INTO "trip" VALUES(913274,576,'8/31/2015 19:08','Market at 4th',76,'8/31/2015 19:18','2nd at Townsend',61,332,'Subscriber',94107); +INSERT INTO "trip" VALUES(913275,487,'8/31/2015 19:09','Temporary Transbay Terminal (Howard at Beale)',55,'8/31/2015 19:17','San Francisco Caltrain (Townsend at 4th)',70,463,'Subscriber',94117); +INSERT INTO "trip" VALUES(913276,230,'8/31/2015 19:09','2nd at South Park',64,'8/31/2015 19:13','Market at Sansome',77,359,'Subscriber',94587); +INSERT INTO "trip" VALUES(913277,895,'8/31/2015 19:10','Embarcadero at Vallejo',48,'8/31/2015 19:25','San Francisco Caltrain (Townsend at 4th)',70,158,'Subscriber',94065); +INSERT INTO "trip" VALUES(913278,1128,'8/31/2015 19:10','California Ave Caltrain Station',36,'8/31/2015 19:29','San Antonio Caltrain Station',29,716,'Subscriber',94024); +INSERT INTO "trip" VALUES(913279,744,'8/31/2015 19:11','South Van Ness at Market',66,'8/31/2015 19:23','Temporary Transbay Terminal (Howard at Beale)',55,96,'Subscriber',94611); +INSERT INTO "trip" VALUES(913280,467,'8/31/2015 19:11','Market at Sansome',77,'8/31/2015 19:19','Embarcadero at Bryant',54,426,'Subscriber',94107); +INSERT INTO "trip" VALUES(913281,455,'8/31/2015 19:12','Townsend at 7th',65,'8/31/2015 19:19','Civic Center BART (7th at Market)',72,370,'Subscriber',94608); +INSERT INTO "trip" VALUES(913282,235,'8/31/2015 19:13','San Francisco Caltrain 2 (330 Townsend)',69,'8/31/2015 19:17','Townsend at 7th',65,462,'Subscriber',94306); +INSERT INTO "trip" VALUES(913283,597,'8/31/2015 19:14','Market at 4th',76,'8/31/2015 19:24','South Van Ness at Market',66,450,'Subscriber',94103); +INSERT INTO "trip" VALUES(913284,322,'8/31/2015 19:15','Broadway St at Battery St',82,'8/31/2015 19:20','Mechanics Plaza (Market at Battery)',75,512,'Subscriber',94619); +INSERT INTO "trip" VALUES(913285,460,'8/31/2015 19:15','Embarcadero at Folsom',51,'8/31/2015 19:23','Embarcadero at Sansome',60,553,'Subscriber',94133); +INSERT INTO "trip" VALUES(913286,1036,'8/31/2015 19:17','Clay at Battery',41,'8/31/2015 19:34','San Francisco Caltrain (Townsend at 4th)',70,535,'Subscriber',95014); +INSERT INTO "trip" VALUES(913287,847,'8/31/2015 19:17','Townsend at 7th',65,'8/31/2015 19:31','Steuart at Market',74,462,'Subscriber',94107); +INSERT INTO "trip" VALUES(913288,199,'8/31/2015 19:18','Howard at 2nd',63,'8/31/2015 19:21','2nd at South Park',64,672,'Subscriber',94107); +INSERT INTO "trip" VALUES(913289,445,'8/31/2015 19:18','Market at Sansome',77,'8/31/2015 19:26','2nd at South Park',64,621,'Subscriber',94107); +INSERT INTO "trip" VALUES(913290,273,'8/31/2015 19:18','Spear at Folsom',49,'8/31/2015 19:23','2nd at Townsend',61,606,'Subscriber',89451); +INSERT INTO "trip" VALUES(913291,390,'8/31/2015 19:18','Davis at Jackson',42,'8/31/2015 19:25','Embarcadero at Sansome',60,470,'Subscriber',94133); +INSERT INTO "trip" VALUES(913292,448,'8/31/2015 19:19','Market at Sansome',77,'8/31/2015 19:26','Embarcadero at Bryant',54,524,'Subscriber',94105); +INSERT INTO "trip" VALUES(913293,354,'8/31/2015 19:19','Davis at Jackson',42,'8/31/2015 19:25','Embarcadero at Sansome',60,502,'Subscriber',94133); +INSERT INTO "trip" VALUES(913294,213,'8/31/2015 19:19','2nd at South Park',64,'8/31/2015 19:23','Howard at 2nd',63,193,'Subscriber',94107); +INSERT INTO "trip" VALUES(913295,357,'8/31/2015 19:19','Market at Sansome',77,'8/31/2015 19:25','Powell at Post (Union Square)',71,388,'Subscriber',94109); +INSERT INTO "trip" VALUES(913296,765,'8/31/2015 19:20','Howard at 2nd',63,'8/31/2015 19:33','Townsend at 7th',65,564,'Subscriber',94116); +INSERT INTO "trip" VALUES(913297,501,'8/31/2015 19:21','2nd at Townsend',61,'8/31/2015 19:29','Spear at Folsom',49,607,'Subscriber',94107); +INSERT INTO "trip" VALUES(913298,434,'8/31/2015 19:23','2nd at Townsend',61,'8/31/2015 19:30','Market at Sansome',77,505,'Subscriber',94705); +INSERT INTO "trip" VALUES(913299,1074,'8/31/2015 19:23','Market at 10th',67,'8/31/2015 19:41','Embarcadero at Sansome',60,434,'Customer',31); +INSERT INTO "trip" VALUES(913301,1049,'8/31/2015 19:25','Market at Sansome',77,'8/31/2015 19:43','South Van Ness at Market',66,608,'Customer',90038); +INSERT INTO "trip" VALUES(913303,296,'8/31/2015 19:27','2nd at South Park',64,'8/31/2015 19:32','Spear at Folsom',49,672,'Subscriber',94105); +INSERT INTO "trip" VALUES(913304,206,'8/31/2015 19:27','Embarcadero at Vallejo',48,'8/31/2015 19:30','Steuart at Market',74,355,'Subscriber',94610); +INSERT INTO "trip" VALUES(913305,306,'8/31/2015 19:27','Davis at Jackson',42,'8/31/2015 19:32','Temporary Transbay Terminal (Howard at Beale)',55,687,'Subscriber',94608); +INSERT INTO "trip" VALUES(913306,625,'8/31/2015 19:29','2nd at South Park',64,'8/31/2015 19:39','San Francisco City Hall',58,492,'Subscriber',94115); +INSERT INTO "trip" VALUES(913307,811,'8/31/2015 19:30','Steuart at Market',74,'8/31/2015 19:43','San Francisco Caltrain (Townsend at 4th)',70,548,'Subscriber',94107); +INSERT INTO "trip" VALUES(913308,185,'8/31/2015 19:30','San Francisco Caltrain 2 (330 Townsend)',69,'8/31/2015 19:33','2nd at Townsend',61,541,'Subscriber',94158); +INSERT INTO "trip" VALUES(913309,344,'8/31/2015 19:30','2nd at Townsend',61,'8/31/2015 19:36','Howard at 2nd',63,501,'Subscriber',94965); +INSERT INTO "trip" VALUES(913311,144,'8/31/2015 19:31','Howard at 2nd',63,'8/31/2015 19:33','Market at Sansome',77,282,'Subscriber',94105); +INSERT INTO "trip" VALUES(913313,387,'8/31/2015 19:33','Market at Sansome',77,'8/31/2015 19:39','Powell Street BART',39,423,'Subscriber',94105); +INSERT INTO "trip" VALUES(913314,340,'8/31/2015 19:33','2nd at South Park',64,'8/31/2015 19:39','Steuart at Market',74,560,'Subscriber',94607); +INSERT INTO "trip" VALUES(913315,518,'8/31/2015 19:33','Steuart at Market',74,'8/31/2015 19:42','2nd at Townsend',61,463,'Subscriber',94107); +INSERT INTO "trip" VALUES(913316,300,'8/31/2015 19:34','San Francisco Caltrain 2 (330 Townsend)',69,'8/31/2015 19:39','Townsend at 7th',65,368,'Subscriber',94107); +INSERT INTO "trip" VALUES(913317,441,'8/31/2015 19:34','Steuart at Market',74,'8/31/2015 19:41','Embarcadero at Sansome',60,355,'Subscriber',94133); +INSERT INTO "trip" VALUES(913318,471,'8/31/2015 19:37','Embarcadero at Folsom',51,'8/31/2015 19:45','Grant Avenue at Columbus Avenue',73,482,'Subscriber',94133); +INSERT INTO "trip" VALUES(913320,792,'8/31/2015 19:39','Market at 4th',76,'8/31/2015 19:53','2nd at Townsend',61,437,'Subscriber',94107); +INSERT INTO "trip" VALUES(913321,191,'8/31/2015 19:40','Steuart at Market',74,'8/31/2015 19:43','Mechanics Plaza (Market at Battery)',75,462,'Subscriber',94107); +INSERT INTO "trip" VALUES(913322,782,'8/31/2015 19:41','Golden Gate at Polk',59,'8/31/2015 19:54','Spear at Folsom',49,498,'Subscriber',94105); +INSERT INTO "trip" VALUES(913324,375,'8/31/2015 19:41','San Francisco Caltrain 2 (330 Townsend)',69,'8/31/2015 19:47','2nd at South Park',64,558,'Subscriber',94105); +INSERT INTO "trip" VALUES(913326,905,'8/31/2015 19:42','Mountain View Caltrain Station',28,'8/31/2015 19:57','Rengstorff Avenue / California Street',33,92,'Subscriber',94040); +INSERT INTO "trip" VALUES(913329,509,'8/31/2015 19:42','Mechanics Plaza (Market at Battery)',75,'8/31/2015 19:51','Civic Center BART (7th at Market)',72,317,'Subscriber',94103); +INSERT INTO "trip" VALUES(913335,472,'8/31/2015 19:47','Market at 4th',76,'8/31/2015 19:55','San Francisco Caltrain 2 (330 Townsend)',69,287,'Subscriber',94107); +INSERT INTO "trip" VALUES(913337,384,'8/31/2015 19:47','San Francisco Caltrain 2 (330 Townsend)',69,'8/31/2015 19:54','2nd at South Park',64,277,'Subscriber',94107); +INSERT INTO "trip" VALUES(913338,403,'8/31/2015 19:47','2nd at Townsend',61,'8/31/2015 19:54','Market at Sansome',77,364,'Subscriber',94708); +INSERT INTO "trip" VALUES(913340,616,'8/31/2015 19:48','2nd at Townsend',61,'8/31/2015 19:58','Steuart at Market',74,354,'Subscriber',94609); +INSERT INTO "trip" VALUES(913341,368,'8/31/2015 19:49','Post at Kearny',47,'8/31/2015 19:55','5th at Howard',57,214,'Subscriber',94107); +INSERT INTO "trip" VALUES(913342,471,'8/31/2015 19:49','South Van Ness at Market',66,'8/31/2015 19:57','Market at 4th',76,450,'Subscriber',94108); +INSERT INTO "trip" VALUES(913343,426,'8/31/2015 19:51','5th at Howard',57,'8/31/2015 19:58','Townsend at 7th',65,457,'Subscriber',94107); +INSERT INTO "trip" VALUES(913344,326,'8/31/2015 19:55','Spear at Folsom',49,'8/31/2015 20:01','Davis at Jackson',42,672,'Subscriber',94111); +INSERT INTO "trip" VALUES(913345,482,'8/31/2015 19:58','San Francisco Caltrain 2 (330 Townsend)',69,'8/31/2015 20:06','Powell Street BART',39,425,'Subscriber',94107); +INSERT INTO "trip" VALUES(913346,466,'8/31/2015 19:58','Market at 4th',76,'8/31/2015 20:06','San Francisco Caltrain 2 (330 Townsend)',69,450,'Subscriber',94107); +INSERT INTO "trip" VALUES(913348,609,'8/31/2015 19:59','Yerba Buena Center of the Arts (3rd @ Howard)',68,'8/31/2015 20:09','Market at 10th',67,877,'Subscriber',94102); +INSERT INTO "trip" VALUES(913349,559,'8/31/2015 20:00','Harry Bridges Plaza (Ferry Building)',50,'8/31/2015 20:09','2nd at Townsend',61,587,'Subscriber',94107); +INSERT INTO "trip" VALUES(913351,290,'8/31/2015 20:01','Howard at 2nd',63,'8/31/2015 20:06','Market at 4th',76,401,'Subscriber',94107); +INSERT INTO "trip" VALUES(913353,577,'8/31/2015 20:01','Yerba Buena Center of the Arts (3rd @ Howard)',68,'8/31/2015 20:11','2nd at Townsend',61,66,'Customer',43214); +INSERT INTO "trip" VALUES(913356,217,'8/31/2015 20:03','Market at Sansome',77,'8/31/2015 20:07','Clay at Battery',41,505,'Subscriber',94301); +INSERT INTO "trip" VALUES(913361,236,'8/31/2015 20:05','San Francisco Caltrain 2 (330 Townsend)',69,'8/31/2015 20:09','Townsend at 7th',65,270,'Subscriber',94107); +INSERT INTO "trip" VALUES(913363,489,'8/31/2015 20:06','Howard at 2nd',63,'8/31/2015 20:14','San Francisco Caltrain 2 (330 Townsend)',69,465,'Subscriber',94070); +INSERT INTO "trip" VALUES(913364,444,'8/31/2015 20:06','San Francisco Caltrain 2 (330 Townsend)',69,'8/31/2015 20:14','Powell Street BART',39,134,'Subscriber',94105); +INSERT INTO "trip" VALUES(913367,842,'8/31/2015 20:08','San Francisco Caltrain (Townsend at 4th)',70,'8/31/2015 20:22','Spear at Folsom',49,652,'Customer',94105); +INSERT INTO "trip" VALUES(913368,888,'8/31/2015 20:09','Commercial at Montgomery',45,'8/31/2015 20:24','San Francisco City Hall',58,598,'Subscriber',94102); +INSERT INTO "trip" VALUES(913371,663,'8/31/2015 20:10','Townsend at 7th',65,'8/31/2015 20:21','Spear at Folsom',49,405,'Subscriber',94103); +INSERT INTO "trip" VALUES(913372,523,'8/31/2015 20:10','San Francisco Caltrain 2 (330 Townsend)',69,'8/31/2015 20:18','Harry Bridges Plaza (Ferry Building)',50,625,'Subscriber',94107); +INSERT INTO "trip" VALUES(913375,378,'8/31/2015 20:12','Market at Sansome',77,'8/31/2015 20:18','Broadway St at Battery St',82,282,'Subscriber',94111); +INSERT INTO "trip" VALUES(913379,803,'8/31/2015 20:15','Spear at Folsom',49,'8/31/2015 20:28','Townsend at 7th',65,607,'Subscriber',94107); +INSERT INTO "trip" VALUES(913380,776,'8/31/2015 20:15','Market at Sansome',77,'8/31/2015 20:28','San Francisco Caltrain (Townsend at 4th)',70,29,'Subscriber',94087); +INSERT INTO "trip" VALUES(913381,346,'8/31/2015 20:17','Yerba Buena Center of the Arts (3rd @ Howard)',68,'8/31/2015 20:23','Steuart at Market',74,284,'Subscriber',94602); +INSERT INTO "trip" VALUES(913382,645,'8/31/2015 20:20','Townsend at 7th',65,'8/31/2015 20:31','Harry Bridges Plaza (Ferry Building)',50,270,'Subscriber',94945); +INSERT INTO "trip" VALUES(913383,1435,'8/31/2015 20:20','2nd at Townsend',61,'8/31/2015 20:44','Embarcadero at Sansome',60,604,'Customer',98103); +INSERT INTO "trip" VALUES(913384,393,'8/31/2015 20:23','5th at Howard',57,'8/31/2015 20:29','San Francisco Caltrain 2 (330 Townsend)',69,584,'Customer',19134); +INSERT INTO "trip" VALUES(913385,215,'8/31/2015 20:23','Howard at 2nd',63,'8/31/2015 20:26','2nd at South Park',64,193,'Subscriber',94107); +INSERT INTO "trip" VALUES(913386,1808,'8/31/2015 20:23','Embarcadero at Bryant',54,'8/31/2015 20:53','Harry Bridges Plaza (Ferry Building)',50,524,'Subscriber',94105); +INSERT INTO "trip" VALUES(913387,382,'8/31/2015 20:23','5th at Howard',57,'8/31/2015 20:29','San Francisco Caltrain 2 (330 Townsend)',69,238,'Customer',19127); +INSERT INTO "trip" VALUES(913388,329,'8/31/2015 20:23','2nd at South Park',64,'8/31/2015 20:28','Market at Sansome',77,621,'Subscriber',94705); +INSERT INTO "trip" VALUES(913391,310,'8/31/2015 20:24','5th at Howard',57,'8/31/2015 20:29','San Francisco Caltrain 2 (330 Townsend)',69,214,'Subscriber',94303); +INSERT INTO "trip" VALUES(913392,359,'8/31/2015 20:24','Howard at 2nd',63,'8/31/2015 20:30','San Francisco Caltrain (Townsend at 4th)',70,501,'Subscriber',94062); +INSERT INTO "trip" VALUES(913393,307,'8/31/2015 20:27','Castro Street and El Camino Real',32,'8/31/2015 20:32','Mountain View Caltrain Station',28,147,'Subscriber',94041); +INSERT INTO "trip" VALUES(913400,671,'8/31/2015 20:33','2nd at Townsend',61,'8/31/2015 20:45','Powell at Post (Union Square)',71,33,'Customer',43214); +INSERT INTO "trip" VALUES(913401,509,'8/31/2015 20:34','Civic Center BART (7th at Market)',72,'8/31/2015 20:42','Beale at Market',56,562,'Subscriber',94577); +INSERT INTO "trip" VALUES(913402,395,'8/31/2015 20:36','Market at 10th',67,'8/31/2015 20:43','5th at Howard',57,877,'Subscriber',94103); +INSERT INTO "trip" VALUES(913403,497,'8/31/2015 20:37','Market at Sansome',77,'8/31/2015 20:45','2nd at Townsend',61,359,'Subscriber',94105); +INSERT INTO "trip" VALUES(913404,273,'8/31/2015 20:39','San Francisco Caltrain 2 (330 Townsend)',69,'8/31/2015 20:44','Townsend at 7th',65,287,'Subscriber',94107); +INSERT INTO "trip" VALUES(913409,486,'8/31/2015 20:44','Spear at Folsom',49,'8/31/2015 20:52','2nd at Townsend',61,652,'Subscriber',94107); +INSERT INTO "trip" VALUES(913410,709,'8/31/2015 20:46','Embarcadero at Sansome',60,'8/31/2015 20:58','Embarcadero at Bryant',54,553,'Subscriber',94105); +INSERT INTO "trip" VALUES(913415,274,'8/31/2015 20:53','Harry Bridges Plaza (Ferry Building)',50,'8/31/2015 20:58','Embarcadero at Bryant',54,524,'Subscriber',94105); +INSERT INTO "trip" VALUES(913416,326,'8/31/2015 20:53','Yerba Buena Center of the Arts (3rd @ Howard)',68,'8/31/2015 20:59','San Francisco Caltrain 2 (330 Townsend)',69,517,'Subscriber',94061); +INSERT INTO "trip" VALUES(913419,704,'8/31/2015 20:58','Steuart at Market',74,'8/31/2015 21:10','San Francisco Caltrain (Townsend at 4th)',70,579,'Subscriber',94158); +INSERT INTO "trip" VALUES(913421,335,'8/31/2015 21:01','Mountain View Caltrain Station',28,'8/31/2015 21:07','Castro Street and El Camino Real',32,13,'Subscriber',94040); +INSERT INTO "trip" VALUES(913426,481,'8/31/2015 21:06','San Francisco Caltrain (Townsend at 4th)',70,'8/31/2015 21:14','Market at 4th',76,542,'Subscriber',95054); +INSERT INTO "trip" VALUES(913429,902,'8/31/2015 21:07','San Francisco Caltrain (Townsend at 4th)',70,'8/31/2015 21:22','Broadway St at Battery St',82,501,'Subscriber',94133); +INSERT INTO "trip" VALUES(913431,605,'8/31/2015 21:11','Temporary Transbay Terminal (Howard at Beale)',55,'8/31/2015 21:21','Grant Avenue at Columbus Avenue',73,572,'Subscriber',94133); +INSERT INTO "trip" VALUES(913432,703,'8/31/2015 21:16','Spear at Folsom',49,'8/31/2015 21:28','San Francisco Caltrain 2 (330 Townsend)',69,426,'Subscriber',95032); +INSERT INTO "trip" VALUES(913433,145,'8/31/2015 21:17','University and Emerson',35,'8/31/2015 21:20','Cowper at University',37,75,'Customer',6907); +INSERT INTO "trip" VALUES(913434,283,'8/31/2015 21:19','San Francisco Caltrain 2 (330 Townsend)',69,'8/31/2015 21:24','Townsend at 7th',65,521,'Subscriber',94107); +INSERT INTO "trip" VALUES(913435,424,'8/31/2015 21:25','Temporary Transbay Terminal (Howard at Beale)',55,'8/31/2015 21:33','San Francisco Caltrain 2 (330 Townsend)',69,602,'Subscriber',94401); +INSERT INTO "trip" VALUES(913440,281,'8/31/2015 21:31','Market at Sansome',77,'8/31/2015 21:36','Broadway St at Battery St',82,621,'Subscriber',94107); +INSERT INTO "trip" VALUES(913441,387,'8/31/2015 21:39','Market at 4th',76,'8/31/2015 21:46','Grant Avenue at Columbus Avenue',73,383,'Subscriber',94104); +INSERT INTO "trip" VALUES(913442,633,'8/31/2015 21:44','Market at 10th',67,'8/31/2015 21:54','San Francisco Caltrain (Townsend at 4th)',70,531,'Subscriber',94107); +INSERT INTO "trip" VALUES(913443,691,'8/31/2015 21:49','Embarcadero at Sansome',60,'8/31/2015 22:01','Market at Sansome',77,434,'Subscriber',94109); +INSERT INTO "trip" VALUES(913448,932,'8/31/2015 21:57','Post at Kearny',47,'8/31/2015 22:12','South Van Ness at Market',66,472,'Subscriber',94702); +INSERT INTO "trip" VALUES(913449,126,'8/31/2015 22:12','Beale at Market',56,'8/31/2015 22:15','Temporary Transbay Terminal (Howard at Beale)',55,439,'Subscriber',94130); +INSERT INTO "trip" VALUES(913450,255,'8/31/2015 22:16','Embarcadero at Sansome',60,'8/31/2015 22:20','Steuart at Market',74,470,'Subscriber',94111); +INSERT INTO "trip" VALUES(913451,896,'8/31/2015 23:07','Embarcadero at Folsom',51,'8/31/2015 23:22','Embarcadero at Sansome',60,363,'Customer',92562); +INSERT INTO "trip" VALUES(913452,293,'8/31/2015 23:07','Yerba Buena Center of the Arts (3rd @ Howard)',68,'8/31/2015 23:12','San Francisco Caltrain (Townsend at 4th)',70,538,'Subscriber',94118); +INSERT INTO "trip" VALUES(913453,789,'8/31/2015 23:09','Embarcadero at Folsom',51,'8/31/2015 23:22','Embarcadero at Sansome',60,487,'Customer',9069); +INSERT INTO "trip" VALUES(913454,409,'8/31/2015 23:10','San Jose City Hall',10,'8/31/2015 23:17','San Salvador at 1st',8,68,'Subscriber',95113); +INSERT INTO "trip" VALUES(913455,307,'8/31/2015 23:13','Post at Kearny',47,'8/31/2015 23:18','2nd at South Park',64,468,'Subscriber',94107); +INSERT INTO "trip" VALUES(913459,1036,'8/31/2015 23:11','San Antonio Shopping Center',31,'8/31/2015 23:28','Mountain View City Hall',27,35,'Subscriber',95032); +INSERT INTO "trip" VALUES(913460,765,'8/31/2015 23:26','Harry Bridges Plaza (Ferry Building)',50,'8/31/2015 23:39','San Francisco Caltrain (Townsend at 4th)',70,288,'Subscriber',2139); +CREATE TABLE weather ( + date TEXT, + max_temperature_f INTEGER, + mean_temperature_f INTEGER, + min_temperature_f INTEGER, + max_dew_point_f INTEGER, + mean_dew_point_f INTEGER, + min_dew_point_f INTEGER, + max_humidity INTEGER, + mean_humidity INTEGER, + min_humidity INTEGER, + max_sea_level_pressure_inches NUMERIC, + mean_sea_level_pressure_inches NUMERIC, + min_sea_level_pressure_inches NUMERIC, + max_visibility_miles INTEGER, + mean_visibility_miles INTEGER, + min_visibility_miles INTEGER, + max_wind_Speed_mph INTEGER, + mean_wind_speed_mph INTEGER, + max_gust_speed_mph INTEGER, + precipitation_inches INTEGER, + cloud_cover INTEGER, + events TEXT, + wind_dir_degrees INTEGER, + zip_code INTEGER); +INSERT INTO "weather" VALUES('8/29/2013',74,68,61,61,58,56,93,75,57,30.07,30.02,29.97,10,10,10,23,11,28,0,4,'',286,94107); +INSERT INTO "weather" VALUES('8/30/2013',78,69,60,61,58,56,90,70,50,30.05,30,29.93,10,10,7,29,13,35,0,2,'',291,94107); +INSERT INTO "weather" VALUES('8/31/2013',71,64,57,57,56,54,93,75,57,30,29.96,29.92,10,10,10,26,15,31,0,4,'',284,94107); +INSERT INTO "weather" VALUES('9/1/2013',74,66,58,60,56,53,87,68,49,29.96,29.93,29.91,10,10,10,25,13,29,0,4,'',284,94107); +INSERT INTO "weather" VALUES('9/2/2013',75,69,62,61,60,58,93,77,61,29.97,29.94,29.9,10,10,6,23,12,30,0,6,'',277,94107); +INSERT INTO "weather" VALUES('9/3/2013',73,67,60,59,56,51,84,65,46,30.02,29.98,29.95,10,10,10,24,15,31,0,2,'',276,94107); +INSERT INTO "weather" VALUES('9/4/2013',74,68,61,59,57,56,90,72,53,30.05,30.01,29.97,10,10,10,29,19,35,0,4,'',269,94107); +INSERT INTO "weather" VALUES('9/5/2013',72,66,60,57,56,54,90,74,57,30.04,30,29.97,10,10,10,31,21,37,0,3,'',270,94107); +INSERT INTO "weather" VALUES('9/6/2013',85,71,56,57,51,45,86,58,29,30,29.92,29.83,10,10,10,24,8,28,0,0,'',287,94107); +INSERT INTO "weather" VALUES('9/7/2013',88,73,58,64,54,46,86,59,31,29.88,29.85,29.81,10,10,10,21,8,25,0,1,'',305,94107); +INSERT INTO "weather" VALUES('9/8/2013',74,65,56,58,54,52,86,70,53,29.88,29.83,29.76,10,10,10,26,11,31,0,2,'',299,94107); +INSERT INTO "weather" VALUES('9/9/2013',76,66,55,58,55,52,90,70,50,29.82,29.77,29.72,10,10,10,26,11,30,0,1,'',303,94107); +INSERT INTO "weather" VALUES('9/10/2013',74,66,57,59,56,54,93,73,53,29.91,29.82,29.76,10,10,10,17,8,21,0,1,'',230,94107); +INSERT INTO "weather" VALUES('9/11/2013',74,68,62,57,55,54,78,68,57,30,29.97,29.91,10,10,10,18,9,23,0,5,'',219,94107); +INSERT INTO "weather" VALUES('9/12/2013',71,65,59,58,57,55,84,73,61,29.99,29.95,29.91,10,10,9,25,11,30,0,7,'Fog',268,94107); +INSERT INTO "weather" VALUES('9/13/2013',66,62,57,55,54,54,93,80,67,29.92,29.87,29.8,10,10,7,30,15,37,0,6,'',271,94107); +INSERT INTO "weather" VALUES('9/14/2013',66,62,57,55,54,53,87,77,67,29.86,29.81,29.77,10,10,9,25,16,33,0,7,'',265,94107); +INSERT INTO "weather" VALUES('9/15/2013',73,66,58,59,55,52,90,72,53,29.88,29.85,29.81,10,10,6,23,13,26,0,5,'',276,94107); +INSERT INTO "weather" VALUES('9/16/2013',71,65,59,58,55,53,90,74,57,29.91,29.87,29.81,10,10,6,31,16,39,0,3,'',274,94107); +INSERT INTO "weather" VALUES('9/17/2013',68,63,57,55,53,50,86,72,58,29.91,29.87,29.84,10,10,10,39,22,51,0,3,'',270,94107); +INSERT INTO "weather" VALUES('9/18/2013',78,66,54,55,49,47,78,60,41,29.92,29.88,29.85,10,10,10,25,10,30,0,1,'',278,94107); +INSERT INTO "weather" VALUES('9/19/2013',80,67,54,56,50,46,77,58,38,29.87,29.82,29.76,10,10,10,26,10,33,0,0,'',297,94107); +INSERT INTO "weather" VALUES('9/20/2013',73,65,56,59,56,50,87,70,53,29.88,29.84,29.79,10,10,9,17,10,23,0,6,'',248,94107); +INSERT INTO "weather" VALUES('9/21/2013',68,63,58,59,56,53,90,75,59,29.91,29.85,29.82,10,9,2,24,12,28,0.23,6,'Rain',218,94107); +INSERT INTO "weather" VALUES('9/22/2013',70,63,55,55,53,49,93,70,47,30.02,29.97,29.92,10,10,10,29,10,35,0,1,'',292,94107); +INSERT INTO "weather" VALUES('9/23/2013',78,68,57,58,54,50,78,64,50,30.03,29.99,29.95,10,10,10,24,9,30,0,0,'',294,94107); +INSERT INTO "weather" VALUES('9/24/2013',71,65,58,54,52,50,78,66,53,30.01,29.97,29.93,10,10,10,36,19,43,0,1,'',277,94107); +INSERT INTO "weather" VALUES('9/25/2013',67,62,56,51,47,45,83,64,45,29.95,29.91,29.84,10,10,10,35,20,45,0,1,'',281,94107); +INSERT INTO "weather" VALUES('9/26/2013',71,62,53,46,43,38,72,53,33,29.99,29.92,29.85,10,10,10,24,11,29,0,0,'',281,94107); +INSERT INTO "weather" VALUES('9/27/2013',78,66,54,47,41,34,67,46,25,30.11,30.06,30,10,10,10,23,7,28,0,0,'',279,94107); +INSERT INTO "weather" VALUES('9/28/2013',78,66,53,55,48,38,84,60,35,30.1,30.06,30.02,10,10,10,28,9,32,0,1,'',296,94107); +INSERT INTO "weather" VALUES('9/29/2013',75,66,57,59,56,53,87,70,53,30.11,30.09,30.06,10,10,10,16,7,21,0,3,'',253,94107); +INSERT INTO "weather" VALUES('9/30/2013',73,66,59,60,57,43,87,69,51,30.07,30.03,29.98,10,10,10,22,10,26,'T',4,'Fog',264,94107); +INSERT INTO "weather" VALUES('10/1/2013',69,63,56,50,48,46,77,61,45,30.03,29.98,29.94,10,10,10,22,13,26,0,3,'',273,94107); +INSERT INTO "weather" VALUES('10/2/2013',69,62,54,49,46,44,77,61,45,30.02,29.98,29.94,10,10,10,29,14,35,0,2,'',280,94107); +INSERT INTO "weather" VALUES('10/3/2013',70,62,54,44,41,35,66,47,28,30.09,30.02,29.96,10,10,10,25,13,30,0,0,'',294,94107); +INSERT INTO "weather" VALUES('10/4/2013',76,69,61,51,42,28,53,38,22,30.1,30.05,29.98,10,10,10,22,9,25,0,0,'',13,94107); +INSERT INTO "weather" VALUES('10/5/2013',80,69,57,52,36,24,56,36,15,30.2,30.14,30.1,10,10,10,12,5,13,0,0,'',122,94107); +INSERT INTO "weather" VALUES('10/6/2013',83,70,56,52,44,27,66,40,13,30.13,30.07,30,10,10,10,14,5,15,0.01,4,'',345,94107); +INSERT INTO "weather" VALUES('10/7/2013',80,68,56,49,41,31,72,46,19,30,29.95,29.89,10,10,10,28,9,31,0,3,'',295,94107); +INSERT INTO "weather" VALUES('10/8/2013',72,62,52,50,47,44,77,59,41,29.92,29.84,29.74,10,10,10,20,10,24,0,2,'',278,94107); +INSERT INTO "weather" VALUES('10/9/2013',68,60,52,48,45,39,83,60,37,29.77,29.69,29.64,10,10,10,17,8,21,0,2,'',286,94107); +INSERT INTO "weather" VALUES('10/10/2013',70,62,53,52,47,43,77,61,45,30.02,29.91,29.77,10,10,10,13,5,15,0,1,'',302,94107); +INSERT INTO "weather" VALUES('10/11/2013',63,57,51,49,47,45,83,70,56,30.09,30.04,30,10,10,10,25,9,30,0,4,'',275,94107); +INSERT INTO "weather" VALUES('10/12/2013',64,56,47,50,46,42,89,71,53,30.02,29.98,29.91,10,8,0,32,13,40,0,3,'Fog',252,94107); +INSERT INTO "weather" VALUES('10/13/2013',73,62,51,51,47,40,89,60,31,30.07,30.01,29.94,10,10,10,22,7,26,0,1,'',286,94107); +INSERT INTO "weather" VALUES('10/14/2013',77,64,51,50,41,36,71,49,27,30.12,30.06,30.01,10,10,10,18,5,'',0,0,'',272,94107); +INSERT INTO "weather" VALUES('10/15/2013',80,67,53,50,37,31,61,40,18,30.05,30.01,29.96,10,10,10,21,5,22,0,0,'',294,94107); +INSERT INTO "weather" VALUES('10/16/2013',80,67,53,54,42,32,63,41,19,30.09,30.05,30,10,10,10,13,4,14,0,1,'',305,94107); +INSERT INTO "weather" VALUES('10/17/2013',81,68,54,53,45,35,72,56,39,30.09,30.03,29.97,10,10,10,20,7,24,0,0,'',306,94107); +INSERT INTO "weather" VALUES('10/18/2013',68,60,51,52,48,46,83,66,48,30.06,30.02,29.99,10,10,10,23,10,25,0,1,'',294,94107); +INSERT INTO "weather" VALUES('10/19/2013',74,62,49,52,48,45,86,65,44,30.09,30.04,30,10,10,10,21,9,23,0,0,'',301,94107); +INSERT INTO "weather" VALUES('10/20/2013',64,57,49,52,47,45,93,77,60,30.03,29.99,29.92,10,8,0,22,11,26,0,2,'Fog',290,94107); +INSERT INTO "weather" VALUES('10/21/2013',61,55,48,50,47,45,93,80,67,30.03,29.98,29.93,10,10,7,21,9,25,0,3,'',284,94107); +INSERT INTO "weather" VALUES('10/22/2013',64,56,47,51,48,46,100,82,64,30.03,29.99,29.93,10,5,0,21,10,25,0,5,'Fog',281,94107); +INSERT INTO "weather" VALUES('10/23/2013',61,55,49,51,48,46,93,83,72,30,29.96,29.91,10,7,2,23,9,28,0,6,'Fog',282,94107); +INSERT INTO "weather" VALUES('10/24/2013',60,57,53,48,47,45,83,73,62,30.12,30.05,29.99,10,10,8,15,9,20,0,6,'',269,94107); +INSERT INTO "weather" VALUES('10/25/2013',67,59,50,50,47,45,86,69,52,30.18,30.13,30.09,10,10,10,21,9,24,0,4,'',263,94107); +INSERT INTO "weather" VALUES('10/26/2013',70,60,49,53,48,43,89,67,44,30.15,30.09,30.02,10,10,10,22,9,25,0,1,'Fog',292,94107); +INSERT INTO "weather" VALUES('10/27/2013',60,55,50,49,47,45,89,76,62,30.04,29.9,29.69,10,10,10,43,18,51,'T',6,'Rain',267,94107); +INSERT INTO "weather" VALUES('10/28/2013',61,57,52,48,46,44,83,69,55,29.86,29.75,29.69,10,10,10,36,15,43,0,5,'',263,94107); +INSERT INTO "weather" VALUES('10/29/2013',63,58,52,48,45,42,83,66,48,30.06,29.97,29.87,10,10,10,17,7,21,0,4,'',256,94107); +INSERT INTO "weather" VALUES('10/30/2013',65,57,48,50,45,42,83,66,48,30.16,30.11,30.07,10,10,10,18,7,22,0,2,'',286,94107); +INSERT INTO "weather" VALUES('10/31/2013',70,59,48,51,43,38,71,54,37,30.19,30.13,30.08,10,10,10,14,4,'',0,0,'',300,94107); +INSERT INTO "weather" VALUES('11/1/2013',74,63,51,53,45,41,77,57,37,30.14,30.08,30.01,10,10,10,15,4,18,0,0,'',315,94107); +INSERT INTO "weather" VALUES('11/2/2013',63,57,50,51,47,41,89,73,56,30.03,29.99,29.93,10,9,2,28,13,33,0,3,'',284,94107); +INSERT INTO "weather" VALUES('11/3/2013',63,55,47,45,41,34,77,56,34,30.06,29.99,29.94,10,10,10,22,9,24,0,4,'',277,94107); +INSERT INTO "weather" VALUES('11/4/2013',67,56,44,43,39,32,80,56,31,30.07,30,29.94,10,10,10,23,9,28,0,0,'',286,94107); +INSERT INTO "weather" VALUES('11/5/2013',71,61,50,45,38,29,66,44,22,30.22,30.16,30.08,10,10,10,15,4,17,0,1,'',279,94107); +INSERT INTO "weather" VALUES('11/6/2013',70,61,51,49,42,36,72,52,31,30.26,30.21,30.16,10,10,9,5,0,6,0,5,'',68,94107); +INSERT INTO "weather" VALUES('11/7/2013',71,64,56,51,46,40,80,61,42,30.18,30.13,30.09,10,10,9,22,8,26,0,4,'',284,94107); +INSERT INTO "weather" VALUES('11/8/2013',70,60,50,53,48,40,100,72,43,30.1,30.05,29.98,10,7,0,24,8,26,0,2,'Fog',269,94107); +INSERT INTO "weather" VALUES('11/9/2013',66,57,48,53,47,40,80,64,48,30.05,30.01,29.97,10,10,9,12,3,14,0,1,'',334,94107); +INSERT INTO "weather" VALUES('11/10/2013',64,58,51,51,48,45,83,72,60,30.13,30.09,30.04,10,10,9,13,5,16,0,3,'',269,94107); +INSERT INTO "weather" VALUES('11/11/2013',62,58,54,51,49,46,83,72,60,30.17,30.13,30.09,10,9,6,12,5,15,0,7,'',76,94107); +INSERT INTO "weather" VALUES('11/12/2013',70,64,57,53,50,46,77,62,47,30.27,30.23,30.17,10,10,10,18,7,22,'T',4,'',312,94107); +INSERT INTO "weather" VALUES('11/13/2013',68,60,52,55,51,47,93,77,60,30.25,30.18,30.12,10,10,9,23,8,26,0,3,'Fog',303,94107); +INSERT INTO "weather" VALUES('11/14/2013',61,56,51,52,49,45,96,84,71,30.13,30.03,29.9,10,10,8,29,13,37,0,5,'',266,94107); +INSERT INTO "weather" VALUES('11/15/2013',65,58,50,46,44,41,83,66,48,29.89,29.82,29.76,10,10,10,35,12,40,0,1,'',268,94107); +INSERT INTO "weather" VALUES('11/16/2013',62,56,49,50,46,42,83,67,51,29.94,29.86,29.79,10,10,10,26,14,35,0,2,'',273,94107); +INSERT INTO "weather" VALUES('11/17/2013',63,56,49,49,45,42,89,69,48,30.1,30.03,29.94,10,10,10,13,6,16,0,4,'',245,94107); +INSERT INTO "weather" VALUES('11/18/2013',60,53,46,46,44,40,82,69,55,30.16,30.12,30.1,10,10,10,15,5,18,0,5,'',199,94107); +INSERT INTO "weather" VALUES('11/19/2013',61,58,54,55,50,45,93,80,66,30.1,30.03,29.95,10,9,6,14,7,16,0.28,7,'Rain',131,94107); +INSERT INTO "weather" VALUES('11/20/2013',59,55,51,56,53,47,93,90,86,29.94,29.9,29.85,10,9,4,22,7,24,0.63,7,'Rain',239,94107); +INSERT INTO "weather" VALUES('11/21/2013',62,56,50,49,42,32,93,64,35,29.99,29.94,29.91,10,10,9,32,11,39,'T',5,'Rain',349,94107); +INSERT INTO "weather" VALUES('11/22/2013',69,63,57,39,32,25,40,30,19,30.03,29.97,29.91,10,10,10,26,14,32,0,1,'',47,94107); +INSERT INTO "weather" VALUES('11/23/2013',65,58,50,45,38,31,71,50,28,30.11,30.04,29.97,10,10,10,22,5,32,0,0,'',79,94107); +INSERT INTO "weather" VALUES('11/24/2013',60,53,45,49,43,39,86,70,53,30.26,30.19,30.12,10,10,10,9,3,10,0,0,'',319,94107); +INSERT INTO "weather" VALUES('11/25/2013',61,53,44,46,43,38,86,70,53,30.33,30.28,30.25,10,10,9,7,2,10,0,1,'',180,94107); +INSERT INTO "weather" VALUES('11/26/2013',62,55,47,47,44,39,86,65,43,30.27,30.16,30.04,10,9,6,7,2,8,0,5,'',100,94107); +INSERT INTO "weather" VALUES('11/27/2013',62,55,48,49,45,41,86,69,52,30.03,29.92,29.85,10,9,7,7,1,7,0,5,'',137,94107); +INSERT INTO "weather" VALUES('11/28/2013',66,58,49,51,44,37,83,64,44,30.08,29.96,29.88,10,9,7,16,4,18,0,3,'',280,94107); +INSERT INTO "weather" VALUES('11/29/2013',62,54,46,51,45,38,77,70,63,30.22,30.15,30.09,10,10,9,24,3,28,0,0,'Fog',316,94107); +INSERT INTO "weather" VALUES('11/30/2013',63,54,45,51,47,41,93,79,65,30.28,30.25,30.19,10,6,0,15,4,20,0,3,'Fog',303,94107); +INSERT INTO "weather" VALUES('12/1/2013',67,57,46,50,46,41,86,66,46,30.35,30.27,30.22,10,10,9,14,4,16,0,1,'',308,94107); +INSERT INTO "weather" VALUES('12/2/2013',62,54,46,54,49,44,96,80,64,30.22,30.1,29.99,10,8,0,33,14,38,'T',5,'Fog-Rain',277,94107); +INSERT INTO "weather" VALUES('12/3/2013',56,51,46,54,38,25,93,69,45,29.98,29.92,29.87,10,10,4,24,14,31,0,4,'',285,94107); +INSERT INTO "weather" VALUES('12/4/2013',52,46,39,31,26,21,62,46,30,30.09,30.04,29.96,10,10,10,14,5,16,0,0,'',309,94107); +INSERT INTO "weather" VALUES('12/5/2013',51,43,35,31,24,18,64,45,26,30.18,30.14,30.09,10,10,10,12,4,14,0,0,'',196,94107); +INSERT INTO "weather" VALUES('12/6/2013',53,45,37,48,37,31,80,65,50,30.19,30.1,29.94,10,10,6,30,9,43,0.29,6,'Rain',180,94107); +INSERT INTO "weather" VALUES('12/7/2013',52,45,38,48,32,24,89,63,36,30.25,30.09,29.94,10,10,3,29,13,36,0.06,3,'Rain',293,94107); +INSERT INTO "weather" VALUES('12/8/2013',47,42,36,31,24,17,70,53,36,30.33,30.28,30.24,10,10,10,22,10,24,0,2,'',64,94107); +INSERT INTO "weather" VALUES('12/9/2013',52,44,36,31,23,18,70,49,28,30.43,30.37,30.32,10,10,10,20,8,23,0,0,'',113,94107); +INSERT INTO "weather" VALUES('12/10/2013',52,43,34,35,30,27,70,56,42,30.4,30.3,30.22,10,10,10,10,3,13,0,2,'',138,94107); +INSERT INTO "weather" VALUES('12/11/2013',57,48,38,36,32,27,85,60,35,30.25,30.21,30.18,10,10,10,14,3,16,0,1,'',130,94107); +INSERT INTO "weather" VALUES('12/12/2013',54,46,38,44,35,29,86,67,48,30.27,30.23,30.18,10,10,7,16,4,20,0,1,'',278,94107); +INSERT INTO "weather" VALUES('12/13/2013',53,47,40,45,41,38,89,76,63,30.34,30.28,30.25,10,9,7,12,4,14,0,2,'',353,94107); +INSERT INTO "weather" VALUES('12/14/2013',61,50,39,42,37,33,85,61,36,30.4,30.35,30.32,10,10,8,9,2,10,0,1,'',263,94107); +INSERT INTO "weather" VALUES('12/15/2013',60,50,40,44,38,34,76,60,43,30.36,30.3,30.24,10,9,7,10,2,12,0,3,'',102,94107); +INSERT INTO "weather" VALUES('12/16/2013',65,54,43,44,37,33,77,54,31,30.23,30.18,30.13,10,10,10,10,2,13,0,5,'',113,94107); +INSERT INTO "weather" VALUES('12/17/2013',59,53,46,46,41,36,77,60,43,30.18,30.11,30.04,9,6,5,7,3,8,0,6,'',96,94107); +INSERT INTO "weather" VALUES('12/18/2013',57,51,44,46,43,38,77,72,66,30.03,29.91,29.8,10,9,6,35,12,40,0,6,'',274,94107); +INSERT INTO "weather" VALUES('12/19/2013',59,53,47,43,36,23,77,52,27,29.94,29.83,29.74,10,10,10,36,12,43,0,2,'',306,94107); +INSERT INTO "weather" VALUES('12/20/2013',60,50,40,43,32,21,71,50,29,30.02,29.98,29.94,10,10,10,15,5,18,0,1,'',257,94107); +INSERT INTO "weather" VALUES('12/21/2013',60,54,47,47,45,43,86,74,62,30.09,30.03,29.98,10,10,10,17,7,21,0,1,'',288,94107); +INSERT INTO "weather" VALUES('12/22/2013',65,54,43,47,42,37,89,64,39,30.29,30.21,30.1,10,10,10,9,1,10,0,1,'',337,94107); +INSERT INTO "weather" VALUES('12/23/2013',60,52,44,45,40,37,80,64,47,30.4,30.35,30.3,10,9,7,8,1,9,0,1,'',32,94107); +INSERT INTO "weather" VALUES('12/24/2013',59,52,45,47,41,38,76,64,51,30.34,30.27,30.21,10,9,7,8,2,24,0,2,'',308,94107); +INSERT INTO "weather" VALUES('12/25/2013',63,53,42,44,40,36,76,60,43,30.29,30.25,30.2,10,10,9,6,1,8,0,0,'',218,94107); +INSERT INTO "weather" VALUES('12/26/2013',62,53,43,46,41,38,83,63,43,30.26,30.22,30.17,10,9,7,7,1,8,0,0,'',24,94107); +INSERT INTO "weather" VALUES('12/27/2013',57,50,43,45,41,37,76,64,51,30.24,30.19,30.13,10,10,8,8,2,9,0,4,'',60,94107); +INSERT INTO "weather" VALUES('12/28/2013',63,52,40,45,38,29,85,59,32,30.16,30.1,30.04,10,10,9,10,2,13,0,0,'',262,94107); +INSERT INTO "weather" VALUES('12/29/2013',68,55,42,37,29,16,71,43,14,30.18,30.13,30.1,10,10,10,13,3,26,0,0,'',129,94107); +INSERT INTO "weather" VALUES('12/30/2013',59,51,42,46,40,33,86,65,43,30.26,30.22,30.18,10,10,9,13,3,15,0,3,'',312,94107); +INSERT INTO "weather" VALUES('12/31/2013',59,50,41,45,40,35,93,73,53,30.28,30.22,30.17,10,7,0,13,3,15,0,3,'Fog',278,94107); +INSERT INTO "weather" VALUES('1/1/2014',56,49,41,45,40,36,83,69,55,30.22,30.17,30.13,10,9,7,9,1,10,0,3,'',290,94107); +INSERT INTO "weather" VALUES('1/2/2014',62,53,43,45,39,34,80,58,36,30.18,30.11,30.06,10,10,10,6,1,6,0,3,'',146,94107); +INSERT INTO "weather" VALUES('1/3/2014',64,54,44,46,41,34,80,59,37,30.08,30.02,29.96,10,10,9,14,4,16,0,3,'',297,94107); +INSERT INTO "weather" VALUES('1/4/2014',66,55,43,46,42,33,93,65,36,30.09,30.02,29.99,10,6,0,15,2,18,0,2,'Fog',266,94107); +INSERT INTO "weather" VALUES('1/5/2014',66,55,44,38,32,27,65,45,24,30.21,30.16,30.09,10,10,10,14,5,15,0,0,'',125,94107); +INSERT INTO "weather" VALUES('1/6/2014',60,52,44,45,40,32,71,61,51,30.28,30.21,30.17,10,10,7,9,2,10,0,5,'',75,94107); +INSERT INTO "weather" VALUES('1/7/2014',61,54,46,52,45,39,86,70,53,30.22,30.18,30.14,10,9,7,15,4,17,'T',5,'Rain',304,94107); +INSERT INTO "weather" VALUES('1/8/2014',59,56,52,51,48,46,86,79,72,30.24,30.2,30.16,10,9,3,20,9,24,0.01,7,'',281,94107); +INSERT INTO "weather" VALUES('1/9/2014',60,56,52,50,47,43,89,73,57,30.27,30.23,30.2,10,10,5,25,12,31,'T',5,'',287,94107); +INSERT INTO "weather" VALUES('1/10/2014',60,54,48,48,46,43,89,75,60,30.31,30.25,30.19,10,9,6,15,6,17,0,4,'',310,94107); +INSERT INTO "weather" VALUES('1/11/2014',58,52,46,51,46,42,93,83,72,30.3,30.23,30.16,10,10,6,18,6,22,'T',4,'',281,94107); +INSERT INTO "weather" VALUES('1/12/2014',60,53,46,47,42,36,93,70,47,30.4,30.33,30.27,10,10,7,17,7,20,0,2,'',313,94107); +INSERT INTO "weather" VALUES('1/13/2014',67,55,42,44,37,32,71,50,28,30.47,30.4,30.35,10,10,10,18,3,22,0,1,'',88,94107); +INSERT INTO "weather" VALUES('1/14/2014',72,58,44,42,37,26,71,45,19,30.45,30.38,30.32,10,10,10,12,2,15,0,0,'',134,94107); +INSERT INTO "weather" VALUES('1/15/2014',73,61,48,40,34,25,71,44,17,30.35,30.27,30.2,10,10,10,10,3,13,0,0,'',131,94107); +INSERT INTO "weather" VALUES('1/16/2014',73,60,46,44,35,27,71,45,19,30.24,30.18,30.13,10,10,10,8,2,10,0,0,'',125,94107); +INSERT INTO "weather" VALUES('1/17/2014',67,56,45,45,39,35,71,53,34,30.2,30.15,30.11,10,9,5,5,1,7,0,0,'',128,94107); +INSERT INTO "weather" VALUES('1/18/2014',67,55,43,47,39,32,77,57,36,30.18,30.11,30.06,10,9,7,7,1,12,0,0,'',128,94107); +INSERT INTO "weather" VALUES('1/19/2014',67,55,43,44,38,34,76,54,32,30.14,30.1,30.06,10,10,8,7,2,7,0,1,'',110,94107); +INSERT INTO "weather" VALUES('1/20/2014',66,55,43,48,41,34,76,60,43,30.23,30.17,30.12,10,9,7,9,2,9,0,1,'',354,94107); +INSERT INTO "weather" VALUES('1/21/2014',68,56,43,44,37,25,76,48,20,30.27,30.21,30.16,10,10,10,12,2,13,0,3,'',258,94107); +INSERT INTO "weather" VALUES('1/22/2014',65,55,44,47,41,31,77,64,51,30.17,30.05,29.93,10,10,10,18,5,22,0,1,'',304,94107); +INSERT INTO "weather" VALUES('1/23/2014',69,57,44,47,38,27,80,51,21,30.02,29.93,29.88,10,9,7,17,5,21,0,0,'',61,94107); +INSERT INTO "weather" VALUES('1/24/2014',64,55,46,47,41,32,80,56,32,30.28,30.16,30.03,10,8,4,9,3,9,0,3,'',5,94107); +INSERT INTO "weather" VALUES('1/25/2014',65,57,48,48,43,34,83,60,37,30.27,30.19,30.13,10,9,7,12,2,13,0,2,'',281,94107); +INSERT INTO "weather" VALUES('1/26/2014',66,57,48,48,43,33,83,65,46,30.14,30.09,30.03,10,10,9,21,6,24,0,3,'',317,94107); +INSERT INTO "weather" VALUES('1/27/2014',59,54,48,48,46,43,83,73,62,30.21,30.15,30.08,10,10,7,18,6,20,0,6,'',301,94107); +INSERT INTO "weather" VALUES('1/28/2014',65,59,53,57,53,47,90,81,72,30.27,30.22,30.2,10,10,2,17,5,21,0,7,'',290,94107); +INSERT INTO "weather" VALUES('1/29/2014',63,59,54,57,54,50,93,89,84,30.2,30.11,30,10,10,7,20,8,22,'T',8,'Rain',282,94107); +INSERT INTO "weather" VALUES('1/30/2014',58,55,52,51,48,46,93,80,67,29.98,29.91,29.88,10,10,9,30,14,38,'T',6,'Rain',267,94107); +INSERT INTO "weather" VALUES('1/31/2014',60,54,47,46,42,36,86,63,39,30.09,30.04,29.92,10,10,9,32,12,38,0,1,'',285,94107); +INSERT INTO "weather" VALUES('2/1/2014',59,51,42,43,39,36,82,63,43,30.17,30.12,30.08,10,10,10,20,6,23,0,1,'',270,94107); +INSERT INTO "weather" VALUES('2/2/2014',58,53,47,44,42,36,86,74,61,30.04,29.92,29.85,10,8,4,29,12,33,0.85,7,'Rain',111,94107); +INSERT INTO "weather" VALUES('2/3/2014',56,51,46,43,41,39,82,69,55,30.09,30.04,29.99,10,10,10,25,11,32,0,3,'',306,94107); +INSERT INTO "weather" VALUES('2/4/2014',55,50,44,44,40,36,83,67,50,30.17,30.12,30.09,10,10,10,21,7,23,0,4,'',288,94107); +INSERT INTO "weather" VALUES('2/5/2014',55,49,43,46,42,38,86,73,59,30.21,30.15,30.06,10,10,10,17,7,24,0.09,6,'Rain',255,94107); +INSERT INTO "weather" VALUES('2/6/2014',52,50,48,52,48,42,100,90,80,30.05,29.96,29.91,10,8,2,20,7,23,0.64,8,'Rain',100,94107); +INSERT INTO "weather" VALUES('2/7/2014',56,54,51,54,51,49,100,92,83,30.08,30.04,30,10,9,3,31,11,40,0.23,8,'Rain',152,94107); +INSERT INTO "weather" VALUES('2/8/2014',59,56,53,58,55,49,100,92,83,30.15,30.1,30.06,10,5,2,28,13,37,0.42,8,'Rain',164,94107); +INSERT INTO "weather" VALUES('2/9/2014',59,57,55,58,56,52,100,92,83,30.16,30.12,30.06,10,6,2,21,9,26,0.35,8,'Rain',174,94107); +INSERT INTO "weather" VALUES('2/10/2014',57,54,51,54,52,50,100,93,86,30.29,30.23,30.14,10,9,2,17,10,20,'T',7,'Rain',274,94107); +INSERT INTO "weather" VALUES('2/11/2014',56,53,49,51,49,48,100,92,83,30.26,30.22,30.18,10,10,7,22,9,26,0,6,'',287,94107); +INSERT INTO "weather" VALUES('2/12/2014',56,51,46,51,48,45,100,92,83,30.29,30.24,30.2,10,7,0,18,6,22,0,6,'Fog',278,94107); +INSERT INTO "weather" VALUES('2/13/2014',67,59,50,57,53,50,100,87,73,30.23,30.17,30.11,10,6,0,15,8,20,0,6,'Fog',288,94107); +INSERT INTO "weather" VALUES('2/14/2014',66,61,56,55,54,50,100,80,60,30.18,30.13,30.06,10,8,2,14,5,16,0,7,'',293,94107); +INSERT INTO "weather" VALUES('2/15/2014',62,57,52,55,52,49,93,83,72,30.05,30.02,30,10,10,7,17,5,21,'T',7,'Rain',174,94107); +INSERT INTO "weather" VALUES('2/16/2014',63,57,50,54,47,40,93,68,43,30.21,30.14,30.06,10,10,6,20,8,23,0.01,3,'',292,94107); +INSERT INTO "weather" VALUES('2/17/2014',61,54,46,49,45,42,86,69,51,30.19,30.16,30.11,10,10,10,21,10,25,0,3,'',280,94107); +INSERT INTO "weather" VALUES('2/18/2014',62,55,48,53,49,45,93,80,67,30.2,30.15,30.12,10,10,5,22,8,25,0,5,'',272,94107); +INSERT INTO "weather" VALUES('2/19/2014',62,57,51,54,48,43,93,72,51,30.22,30.16,30.12,10,10,10,23,14,26,0.01,4,'',276,94107); +INSERT INTO "weather" VALUES('2/20/2014',67,56,45,47,44,41,86,65,43,30.22,30.17,30.12,10,10,9,18,6,22,0,4,'',277,94107); +INSERT INTO "weather" VALUES('2/21/2014',69,58,47,51,46,40,86,61,35,30.12,30.06,30,10,10,10,22,7,26,0,1,'',282,94107); +INSERT INTO "weather" VALUES('2/22/2014',66,56,46,52,48,43,93,78,63,30.03,29.99,29.94,10,10,10,23,9,28,0,2,'',286,94107); +INSERT INTO "weather" VALUES('2/23/2014',63,55,46,52,47,44,93,81,69,30.04,30,29.96,10,9,6,23,8,26,0,3,'',268,94107); +INSERT INTO "weather" VALUES('2/24/2014',71,58,45,53,47,41,89,65,40,30.01,29.96,29.91,10,10,10,17,6,21,0,1,'',302,94107); +INSERT INTO "weather" VALUES('2/25/2014',62,55,48,53,48,45,89,78,67,29.99,29.95,29.92,10,9,7,20,6,23,0,6,'',215,94107); +INSERT INTO "weather" VALUES('2/26/2014',60,57,54,56,52,47,93,80,67,29.96,29.84,29.69,10,9,4,31,15,39,0.43,8,'Rain',147,94107); +INSERT INTO "weather" VALUES('2/27/2014',62,58,55,52,51,51,89,81,67,29.91,29.85,29.78,10,10,8,17,15,35,0.22,8,'Rain',205,94107); +INSERT INTO "weather" VALUES('2/28/2014',63,59,55,54,50,43,86,65,43,29.5,29.43,29.39,10,8,1,26,13,33,0.74,8,'rain',208,94107); +INSERT INTO "weather" VALUES('8/29/2013',80,71,62,63,59,57,94,79,48,30.07,30.02,29.97,10,10,10,14,6,17,0,5,'',313,94063); +INSERT INTO "weather" VALUES('8/30/2013',86,74,62,64,59,54,94,73,35,30.08,30.01,29.93,10,10,10,15,2,17,0,2,'',292,94063); +INSERT INTO "weather" VALUES('8/31/2013',77,68,59,59,56,55,88,72,50,30,29.96,29.92,10,10,10,13,4,'',0,1,'',324,94063); +INSERT INTO "weather" VALUES('9/1/2013',80,71,62,61,57,55,82,72,42,29.97,29.94,29.89,10,10,10,13,5,17,0,3,'',294,94063); +INSERT INTO "weather" VALUES('9/2/2013',77,70,64,64,61,57,88,79,57,29.98,29.94,29.9,10,10,10,13,6,17,0,4,'',291,94063); +INSERT INTO "weather" VALUES('9/3/2013',77,68,59,59,55,48,83,71,36,30.02,29.98,29.96,10,10,10,16,5,20,0,0,'',284,94063); +INSERT INTO "weather" VALUES('9/4/2013',75,68,60,57,56,50,82,73,41,30.05,30.01,29.98,10,10,10,17,6,23,0,1,'',277,94063); +INSERT INTO "weather" VALUES('9/5/2013',75,68,62,57,55,50,82,70,41,30.03,30,29.98,10,10,10,21,8,25,0,3,'',279,94063); +INSERT INTO "weather" VALUES('9/6/2013',89,73,57,59,51,45,88,60,24,30.01,29.94,29.83,10,10,10,10,1,'',0,0,'',295,94063); +INSERT INTO "weather" VALUES('9/7/2013',91,78,64,61,52,46,77,55,23,29.89,29.85,29.8,10,10,10,12,3,'',0,0,'',327,94063); +INSERT INTO "weather" VALUES('9/8/2013',78,68,59,61,57,54,88,77,44,29.89,29.85,29.76,10,10,10,8,3,'',0,0,'',350,94063); +INSERT INTO "weather" VALUES('9/9/2013',87,73,59,63,57,48,88,77,25,29.83,29.78,29.72,10,10,10,12,3,'',0,0,'',336,94063); +INSERT INTO "weather" VALUES('9/10/2013',77,70,62,63,57,55,88,76,50,29.91,29.81,29.76,10,10,10,16,3,17,0,3,'',298,94063); +INSERT INTO "weather" VALUES('9/11/2013',75,67,59,59,56,54,82,74,53,30,29.95,29.91,10,10,10,18,4,23,0,2,'',267,94063); +INSERT INTO "weather" VALUES('9/12/2013',75,68,60,61,57,55,88,78,57,30,29.96,29.9,10,10,10,20,3,18,0,5,'',297,94063); +INSERT INTO "weather" VALUES('9/13/2013',75,67,59,59,55,52,88,77,50,29.93,29.88,29.8,10,10,10,15,6,'',0,4,'',294,94063); +INSERT INTO "weather" VALUES('9/14/2013',66,62,57,57,55,54,94,82,68,29.86,29.82,29.78,10,10,10,14,9,20,0,5,'',266,94063); +INSERT INTO "weather" VALUES('9/15/2013',77,68,59,59,56,54,83,77,47,29.89,29.83,28.98,10,10,10,15,6,20,0,5,'',283,94063); +INSERT INTO "weather" VALUES('9/16/2013',77,68,59,61,57,54,94,80,47,29.91,29.88,29.83,10,10,10,17,4,23,0,3,'',283,94063); +INSERT INTO "weather" VALUES('9/17/2013',69,64,60,55,53,50,82,70,49,29.9,29.88,29.87,10,10,10,25,9,32,0,3,'',281,94063); +INSERT INTO "weather" VALUES('9/18/2013',82,68,55,55,49,41,77,63,23,29.98,29.88,29.84,10,10,10,12,3,'',0,0,'',264,94063); +INSERT INTO "weather" VALUES('9/19/2013',86,70,53,57,48,45,82,60,23,29.87,29.83,29.75,10,10,10,12,2,'',0,0,'',324,94063); +INSERT INTO "weather" VALUES('9/20/2013',75,67,59,59,54,46,88,71,53,29.89,29.83,29.8,10,10,10,14,4,22,0,5,'',240,94063); +INSERT INTO "weather" VALUES('9/21/2013',66,62,59,59,57,55,88,81,68,29.92,29.86,29.83,10,9,2,12,6,'',0,4,'Rain',216,94063); +INSERT INTO "weather" VALUES('9/22/2013',71,63,55,55,53,48,94,78,43,30.02,29.97,29.91,10,10,10,15,5,23,0,1,'',296,94063); +INSERT INTO "weather" VALUES('9/23/2013',80,68,55,57,53,50,82,68,39,30.04,29.99,29.95,10,10,10,14,4,20,0,0,'',288,94063); +INSERT INTO "weather" VALUES('9/24/2013',71,65,59,55,52,46,82,66,43,30.02,29.97,29.94,10,10,10,23,7,31,0,1,'',292,94063); +INSERT INTO "weather" VALUES('9/25/2013',66,60,55,61,48,41,88,67,42,29.96,29.92,29.86,10,10,10,20,12,29,0,0,'',294,94063); +INSERT INTO "weather" VALUES('9/26/2013',73,64,55,46,41,32,72,53,22,29.99,29.91,29.86,10,10,10,14,5,17,0,0,'',287,94063); +INSERT INTO "weather" VALUES('9/27/2013',77,64,51,48,40,28,77,50,17,30.11,30.05,30,10,10,10,12,1,'',0,1,'',279,94063); +INSERT INTO "weather" VALUES('9/28/2013',80,66,53,64,45,36,82,58,20,30.11,30.07,30.01,10,10,10,16,3,'',0,0,'',297,94063); +INSERT INTO "weather" VALUES('9/29/2013',75,65,55,59,55,50,88,76,50,30.13,30.1,30.06,10,10,10,12,3,16,0,1,'',295,94063); +INSERT INTO "weather" VALUES('9/30/2013',73,66,60,61,55,41,88,73,45,30.09,30.05,29.98,10,10,9,14,4,17,0,4,'',2772,94063); +INSERT INTO "weather" VALUES('10/1/2013',71,64,57,50,47,41,77,62,41,30.04,29.99,29.94,10,10,8,13,7,'',0,3,'',287,94063); +INSERT INTO "weather" VALUES('10/2/2013',71,63,55,55,45,39,77,62,37,30.03,29.98,29.94,10,10,10,20,4,22,0,1,'',298,94063); +INSERT INTO "weather" VALUES('10/3/2013',71,63,55,41,38,32,58,45,25,30.09,30.03,29.96,10,10,10,15,8,16,0,0,'',302,94063); +INSERT INTO "weather" VALUES('10/4/2013',77,68,59,48,38,32,51,38,21,30.1,30.04,29.99,10,10,10,16,6,'',0,0,'',22,94063); +INSERT INTO "weather" VALUES('10/5/2013',82,68,55,46,33,25,51,33,12,30.21,30.14,30.11,10,10,10,7,1,'',0,0,'',236,94063); +INSERT INTO "weather" VALUES('10/6/2013',82,68,53,55,37,23,68,41,11,30.13,30.07,30.01,10,10,10,12,1,'',0,2,'',335,94063); +INSERT INTO "weather" VALUES('10/7/2013',82,68,55,52,39,32,63,43,16,30.01,29.96,29.89,10,10,10,12,2,'',0,1,'',292,94063); +INSERT INTO "weather" VALUES('10/8/2013',73,62,51,54,46,39,82,65,35,29.92,29.85,29.75,10,10,8,15,2,'',0,2,'',279,94063); +INSERT INTO "weather" VALUES('10/9/2013',68,59,50,50,44,37,87,66,37,29.78,29.7,29.65,10,10,7,10,2,'',0,3,'',253,94063); +INSERT INTO "weather" VALUES('10/10/2013',68,59,50,50,45,41,77,66,49,30.03,29.89,29.77,10,10,10,14,2,'',0,1,'',287,94063); +INSERT INTO "weather" VALUES('10/11/2013',64,58,51,52,47,45,88,77,56,30.1,30.04,30,10,9,6,10,2,'',0,4,'',316,94063); +INSERT INTO "weather" VALUES('10/12/2013',66,56,46,54,47,45,94,79,46,30.03,29.99,29.93,10,9,2,13,3,21,0,2,'',275,94063); +INSERT INTO "weather" VALUES('10/13/2013',73,62,50,52,46,37,87,68,29,30.08,30,29.95,10,10,10,12,3,'',0,0,'',328,94063); +INSERT INTO "weather" VALUES('10/14/2013',77,64,50,46,40,32,82,53,19,30.13,30.07,30,10,10,10,9,1,'',0,0,'',290,94063); +INSERT INTO "weather" VALUES('10/15/2013',78,64,50,45,37,30,76,44,17,30.06,30.02,29.95,10,10,10,10,1,'',0,0,'',279,94063); +INSERT INTO "weather" VALUES('10/16/2013',80,66,53,54,38,32,72,45,17,30.1,30.05,30,10,10,10,9,1,'',0,0,'',318,94063); +INSERT INTO "weather" VALUES('10/17/2013',78,66,53,54,40,27,72,49,15,30.09,30.04,29.97,10,10,10,9,1,'',0,0,'',346,94063); +INSERT INTO "weather" VALUES('10/18/2013',71,60,50,55,46,37,82,67,46,30.07,30.03,29.99,10,10,8,8,1,'',0,0,'',1,94063); +INSERT INTO "weather" VALUES('10/19/2013',77,64,50,57,48,45,87,72,32,30.09,30.04,30,10,10,8,8,1,'',0,0,'',343,94063); +INSERT INTO "weather" VALUES('10/20/2013',68,58,48,54,48,45,94,81,52,30.05,30,29.93,10,9,2,9,3,'',0,1,'',325,94063); +INSERT INTO "weather" VALUES('10/21/2013',62,55,48,52,48,45,94,83,63,30.03,29.98,29.93,10,9,6,8,1,'',0,3,'',1,94063); +INSERT INTO "weather" VALUES('10/22/2013',66,57,48,55,49,45,100,86,59,30.04,30,29.94,10,8,2,10,2,'',0,3,'',341,94063); +INSERT INTO "weather" VALUES('10/23/2013',62,56,50,54,48,32,100,86,47,30,29.97,29.92,10,7,2,9,2,'',0,5,'',330,94063); +INSERT INTO "weather" VALUES('10/24/2013',59,54,50,50,48,46,88,82,67,30.13,30.05,30,10,10,7,12,5,16,0,5,'',299,94063); +INSERT INTO "weather" VALUES('10/25/2013',66,57,48,54,48,45,93,80,56,30.18,30.14,30.09,10,10,5,9,1,'',0,4,'',355,94063); +INSERT INTO "weather" VALUES('10/26/2013',71,60,48,55,48,46,94,80,41,30.16,30.11,30.02,10,10,6,7,1,'',0,0,'',331,94063); +INSERT INTO "weather" VALUES('10/27/2013',59,52,46,50,47,43,94,81,67,30.05,29.93,29.72,10,10,9,26,4,40,0,3,'',265,94063); +INSERT INTO "weather" VALUES('10/28/2013',60,56,53,50,47,41,82,72,51,29.87,29.76,29.7,10,10,8,25,15,31,0,7,'',270,94063); +INSERT INTO "weather" VALUES('10/29/2013',60,55,50,52,47,43,88,76,52,30.07,29.97,29.87,10,10,7,10,3,'',0,5,'Rain',248,94063); +INSERT INTO "weather" VALUES('10/30/2013',66,55,44,48,43,39,93,74,43,30.17,30.11,30.07,10,10,10,9,1,'',0,0,'',333,94063); +INSERT INTO "weather" VALUES('10/31/2013',71,58,46,50,42,39,81,65,33,30.19,30.14,30.08,10,10,10,6,1,'',0,0,'',338,94063); +INSERT INTO "weather" VALUES('11/1/2013',71,60,48,52,44,39,82,66,31,30.15,30.09,30.02,10,10,10,7,1,'',0,0,'',26,94063); +INSERT INTO "weather" VALUES('11/2/2013',68,58,48,52,45,41,82,71,52,30.04,30,29.94,10,10,10,14,2,16,0,1,'',298,94063); +INSERT INTO "weather" VALUES('11/3/2013',62,54,46,46,40,23,87,66,22,30.07,30,29.94,10,10,10,12,3,'',0,2,'',305,94063); +INSERT INTO "weather" VALUES('11/4/2013',66,55,44,41,36,27,81,56,24,30.08,29.99,29.94,10,10,10,12,3,'',0,0,'',304,94063); +INSERT INTO "weather" VALUES('11/5/2013',69,58,46,46,36,32,71,49,25,30.23,30.15,30.08,10,10,9,7,2,'',0,0,'',307,94063); +INSERT INTO "weather" VALUES('11/6/2013',69,58,48,48,40,37,71,55,31,30.27,30.21,30.17,10,10,9,5,1,'',0,1,'',329,94063); +INSERT INTO "weather" VALUES('11/7/2013',68,60,53,50,44,39,82,62,42,30.19,30.14,30.09,10,10,7,9,1,'',0,1,'',355,94063); +INSERT INTO "weather" VALUES('11/8/2013',71,60,50,55,47,39,100,79,41,30.11,30.06,29.98,10,8,0,9,1,'',0,2,'Fog',328,94063); +INSERT INTO "weather" VALUES('11/9/2013',68,57,46,54,45,41,93,77,43,30.06,30.02,29.98,10,10,10,7,1,'',0,2,'',299,94063); +INSERT INTO "weather" VALUES('11/10/2013',62,54,46,50,47,45,94,85,63,30.13,30.09,30.05,10,9,4,7,1,'',0,3,'',260,94063); +INSERT INTO "weather" VALUES('11/11/2013',62,56,51,54,50,48,88,80,63,30.18,30.13,30.09,10,8,4,9,3,'',0,5,'',338,94063); +INSERT INTO "weather" VALUES('11/12/2013',69,62,55,54,49,45,94,71,46,30.27,30.23,30.16,10,10,10,7,3,'',0,2,'',325,94063); +INSERT INTO "weather" VALUES('11/13/2013',73,62,50,55,50,46,94,83,38,30.27,30.2,30.13,10,10,10,7,1,'',0,1,'',334,94063); +INSERT INTO "weather" VALUES('11/14/2013',62,56,50,54,48,41,100,80,55,30.14,30.05,29.91,10,8,1,15,3,17,0,5,'',298,94063); +INSERT INTO "weather" VALUES('11/15/2013',64,55,46,46,43,34,82,69,32,29.91,29.84,29.76,10,10,10,16,9,23,0,0,'',282,94063); +INSERT INTO "weather" VALUES('11/16/2013',66,56,46,50,45,41,88,77,48,29.95,29.86,29.8,10,10,10,15,4,20,0,1,'',249,94063); +INSERT INTO "weather" VALUES('11/17/2013',59,52,46,48,45,41,93,82,55,30.11,30.02,29.95,10,10,10,10,1,'',0,1,'',222,94063); +INSERT INTO "weather" VALUES('11/18/2013',59,52,44,48,43,41,87,79,59,30.16,30.12,30.1,10,10,10,12,2,'',0,3,'',203,94063); +INSERT INTO "weather" VALUES('11/19/2013',59,54,50,55,50,45,94,85,72,30.12,30.05,29.96,10,9,3,7,1,'',0.03,7,'Rain',134,94063); +INSERT INTO "weather" VALUES('11/20/2013',60,55,50,59,54,50,100,95,82,29.98,29.92,29.86,10,10,2,10,2,'',0,7,'Rain',223,94063); +INSERT INTO "weather" VALUES('11/21/2013',62,56,50,50,43,28,94,70,32,30.01,29.95,29.92,10,10,3,22,4,26,0,5,'Rain',314,94063); +INSERT INTO "weather" VALUES('11/22/2013',66,57,48,41,28,16,62,37,19,30.05,29.99,29.92,10,10,10,17,5,22,0,1,'',15,94063); +INSERT INTO "weather" VALUES('11/23/2013',64,54,44,46,37,32,87,62,34,30.12,30.04,29.98,10,10,10,8,2,'',0,0,'',224,94063); +INSERT INTO "weather" VALUES('11/24/2013',62,53,44,45,41,39,93,76,45,30.26,30.18,30.12,10,10,10,7,1,'',0,0,'',10,94063); +INSERT INTO "weather" VALUES('11/25/2013',60,50,41,48,41,39,93,77,48,30.34,30.28,30.26,10,10,10,5,0,'',0,0,'',160,94063); +INSERT INTO "weather" VALUES('11/26/2013',60,53,46,46,43,41,93,77,51,30.27,30.18,30.04,10,9,5,6,1,'',0,2,'',113,94063); +INSERT INTO "weather" VALUES('11/27/2013',62,54,46,46,44,41,87,76,52,30.04,29.94,29.86,10,8,5,6,1,'',0,2,'',268,94063); +INSERT INTO "weather" VALUES('11/28/2013',66,57,48,48,44,41,93,75,40,30.09,29.96,29.88,10,8,5,7,1,'',0,1,'',325,94063); +INSERT INTO "weather" VALUES('11/29/2013',64,54,44,48,42,39,87,74,48,30.23,30.15,30.09,10,10,10,9,1,'',0,0,'',326,94063); +INSERT INTO "weather" VALUES('11/30/2013',60,52,44,54,44,41,88,80,63,30.28,30.25,30.2,10,9,6,7,1,'',0,1,'',12,94063); +INSERT INTO "weather" VALUES('12/1/2013',68,56,44,50,44,41,87,78,37,30.36,30.28,30.23,10,10,8,6,1,'',0,0,'',5,94063); +INSERT INTO "weather" VALUES('12/2/2013',64,54,44,54,46,41,94,82,56,30.25,30.13,30,10,10,7,17,3,23,0,2,'Fog',289,94063); +INSERT INTO "weather" VALUES('12/3/2013',57,50,44,54,40,28,94,66,44,29.99,29.94,29.87,10,10,10,21,8,30,0,5,'',286,94063); +INSERT INTO "weather" VALUES('12/4/2013',48,42,37,30,26,23,65,52,37,30.1,30.03,29.96,10,10,10,7,3,'',0,0,'',322,94063); +INSERT INTO "weather" VALUES('12/5/2013',50,41,32,45,24,14,93,58,24,30.19,30.14,30.1,10,10,10,6,1,'',0,0,'',178,94063); +INSERT INTO "weather" VALUES('12/6/2013',51,42,33,48,36,28,94,80,54,30.21,30.11,29.93,10,9,2,25,4,33,0.12,5,'Rain',170,94063); +INSERT INTO "weather" VALUES('12/7/2013',50,44,37,46,32,23,87,65,37,30.65,30.11,29.94,10,10,7,20,8,24,0.01,3,'Rain',288,94063); +INSERT INTO "weather" VALUES('12/8/2013',44,38,32,32,27,21,93,72,43,30.34,30.29,30.25,10,10,10,8,1,'',0,0,'',196,94063); +INSERT INTO "weather" VALUES('12/9/2013',50,41,32,27,20,14,70,52,25,30.43,30.38,30.34,10,10,10,9,5,'',0,0,'',179,94063); +INSERT INTO "weather" VALUES('12/10/2013',51,42,32,37,28,25,87,71,35,30.42,30.32,30.22,10,10,10,7,0,'',0,0,'',286,94063); +INSERT INTO "weather" VALUES('12/11/2013',55,44,33,36,31,25,87,67,33,30.26,30.22,30.19,10,10,8,6,1,'',0,0,'',156,94063); +INSERT INTO "weather" VALUES('12/12/2013',55,44,33,41,33,28,87,73,47,30.28,30.23,30.18,10,9,7,6,0,'',0,0,'',55,94063); +INSERT INTO "weather" VALUES('12/13/2013',55,45,35,45,36,32,87,81,62,30.35,30.29,30.25,10,10,5,7,2,'',0,1,'',131,94063); +INSERT INTO "weather" VALUES('12/14/2013',59,48,37,43,35,32,87,74,36,30.41,30.35,30.32,10,10,10,5,0,'',0,1,'Fog',189,94063); +INSERT INTO "weather" VALUES('12/15/2013',59,47,35,43,36,32,87,75,42,30.38,30.32,30.25,10,7,5,6,0,'',0,1,'',37,94063); +INSERT INTO "weather" VALUES('12/16/2013',62,50,39,45,37,32,81,69,42,30.25,30.19,30.13,10,9,6,6,0,'',0,2,'',121,94063); +INSERT INTO "weather" VALUES('12/17/2013',57,50,44,48,39,37,82,73,51,30.19,30.12,30.04,10,6,4,6,0,'',0,3,'',31,94063); +INSERT INTO "weather" VALUES('12/18/2013',55,48,42,48,42,37,88,80,67,30.04,29.94,29.81,10,8,5,15,3,21,0,3,'',256,94063); +INSERT INTO "weather" VALUES('12/19/2013',57,50,44,45,36,19,82,61,28,29.96,29.82,29.75,10,10,10,25,10,31,0,2,'',293,94063); +INSERT INTO "weather" VALUES('12/20/2013',55,46,37,39,27,18,71,52,23,30.03,29.98,29.94,10,10,10,7,2,'',0,0,'',127,94063); +INSERT INTO "weather" VALUES('12/21/2013',62,50,39,48,39,32,87,75,55,30.1,30.03,29.99,10,10,10,9,1,'',0,0,'',325,94063); +INSERT INTO "weather" VALUES('12/22/2013',64,52,39,48,40,36,100,76,34,30.3,30.2,30.1,10,10,10,6,0,'',0,2,'',6,94063); +INSERT INTO "weather" VALUES('12/23/2013',60,50,41,46,39,37,87,72,42,30.4,30.34,30.3,10,9,7,6,1,'',0,0,'',323,94063); +INSERT INTO "weather" VALUES('12/24/2013',66,54,41,48,39,36,87,72,45,30.35,30.31,30.21,10,9,6,6,0,'',0,1,'',80,94063); +INSERT INTO "weather" VALUES('12/25/2013',64,52,39,45,38,36,87,71,40,30.3,30.25,30.21,10,10,10,6,1,'',0,0,'',195,94063); +INSERT INTO "weather" VALUES('12/26/2013',64,52,39,45,38,36,87,74,42,30.27,30.23,30.17,10,9,6,5,1,'',0,0,'',260,94063); +INSERT INTO "weather" VALUES('12/27/2013',57,48,39,48,39,36,87,78,58,30.25,30.2,30.13,10,9,5,6,0,'',0,1,'',342,94063); +INSERT INTO "weather" VALUES('12/28/2013',64,50,37,48,36,27,93,75,24,30.16,30.11,30.04,10,9,6,7,0,'',0,0,'',14,94063); +INSERT INTO "weather" VALUES('12/29/2013',64,52,41,34,28,14,70,49,15,30.19,30.13,30.1,10,10,10,7,2,'',0,0,'',207,94063); +INSERT INTO "weather" VALUES('12/30/2013',57,48,39,45,35,30,76,67,44,30.27,30.22,30.18,10,10,7,6,1,'',0,1,'',63,94063); +INSERT INTO "weather" VALUES('12/31/2013',57,48,39,48,40,36,100,85,51,30.29,30.23,30.17,10,7,0,7,0,'',0,3,'Fog',29,94063); +INSERT INTO "weather" VALUES('1/1/2014',55,47,39,45,38,36,93,82,58,30.23,30.18,30.14,10,8,4,6,0,'',0,1,'',54,94063); +INSERT INTO "weather" VALUES('1/2/2014',60,50,41,46,38,36,87,72,42,30.19,30.13,30.06,10,10,7,6,0,'',0,1,'',20,94063); +INSERT INTO "weather" VALUES('1/3/2014',55,48,42,46,39,36,81,72,54,30.09,30.03,29.97,10,10,9,8,1,'',0,1,'',359,94063); +INSERT INTO "weather" VALUES('1/4/2014',62,52,41,48,39,27,100,76,38,30.09,30.03,29.99,10,8,0,6,2,'',0,1,'Fog',264,94063); +INSERT INTO "weather" VALUES('1/5/2014',62,50,39,39,29,23,81,52,32,30.22,30.15,30.09,10,10,10,4,0,'',0,0,'',325,94063); +INSERT INTO "weather" VALUES('1/6/2014',57,49,41,46,37,32,87,68,48,30.29,30.22,30.18,10,10,7,6,1,'',0,2,'',238,94063); +INSERT INTO "weather" VALUES('1/7/2014',59,52,46,52,44,39,88,76,55,30.22,30.19,30.14,10,9,5,9,3,'',0,3,'',308,94063); +INSERT INTO "weather" VALUES('1/8/2014',57,52,46,52,48,45,100,87,72,30.24,30.21,30.17,10,9,2,10,4,'',0,6,'',296,94063); +INSERT INTO "weather" VALUES('1/9/2014',59,52,46,50,45,39,94,83,58,30.27,30.23,30.21,10,9,5,18,3,23,0,4,'',245,94063); +INSERT INTO "weather" VALUES('1/10/2014',59,52,44,50,44,39,94,82,63,30.32,30.25,30.19,10,10,7,7,2,'',0,2,'',342,94063); +INSERT INTO "weather" VALUES('1/11/2014',57,50,44,50,45,41,93,86,72,30.3,30.24,30.18,10,9,6,8,2,'',0,4,'',269,94063); +INSERT INTO "weather" VALUES('1/12/2014',59,50,41,46,41,36,100,78,44,30.4,30.33,30.28,10,10,9,12,4,'',0,2,'',271,94063); +INSERT INTO "weather" VALUES('1/13/2014',66,54,41,46,35,32,81,57,30,30.47,30.4,30.35,10,10,10,9,2,'',0,0,'',205,94063); +INSERT INTO "weather" VALUES('1/14/2014',69,55,41,45,33,27,81,54,20,30.46,30.39,30.33,10,10,10,13,2,'',0,0,'',222,94063); +INSERT INTO "weather" VALUES('1/15/2014',69,56,44,41,33,28,71,52,25,30.36,30.28,30.21,10,10,10,6,2,'',0,0,'',197,94063); +INSERT INTO "weather" VALUES('1/16/2014',69,56,42,41,34,30,71,55,25,30.25,30.19,30.13,10,10,9,5,1,'',0,0,'',152,94063); +INSERT INTO "weather" VALUES('1/17/2014',62,52,42,46,36,32,71,60,45,30.2,30.15,30.12,10,9,6,7,1,'',0,0,'',344,94063); +INSERT INTO "weather" VALUES('1/18/2014',62,52,41,46,37,32,87,67,48,30.18,30.12,30.07,10,8,6,7,0,'',0,0,'',44,94063); +INSERT INTO "weather" VALUES('1/19/2014',66,52,39,43,34,32,76,61,32,30.15,30.1,30.07,10,9,6,7,0,'',0,0,'',333,94063); +INSERT INTO "weather" VALUES('1/20/2014',64,52,41,48,36,34,81,66,39,30.24,30.17,30.12,10,8,6,6,1,'',0,0,'',350,94063); +INSERT INTO "weather" VALUES('1/21/2014',66,54,41,41,34,30,76,60,26,30.28,30.22,30.17,10,10,10,5,0,'',0,1,'',24,94063); +INSERT INTO "weather" VALUES('1/22/2014',64,52,41,46,36,30,82,64,45,30.18,30.07,29.94,10,10,10,7,1,'',0,0,'',321,94063); +INSERT INTO "weather" VALUES('1/23/2014',66,54,42,43,36,28,82,60,24,30.02,29.94,29.89,10,10,7,7,1,'',0,1,'',264,94063); +INSERT INTO "weather" VALUES('1/24/2014',60,50,41,46,40,36,87,73,55,30.25,30.12,30.02,8,6,4,4,0,'',0,3,'',59,94063); +INSERT INTO "weather" VALUES('1/25/2014',66,56,46,46,41,37,81,55,35,30.26,30.19,30.13,10,8,5,7,1,'',0,2,'',41,94063); +INSERT INTO "weather" VALUES('1/26/2014',68,58,48,50,44,34,88,63,28,30.14,30.09,30.04,10,10,10,6,4,'',0,4,'',16,94063); +INSERT INTO "weather" VALUES('1/27/2014',57,52,48,50,48,46,93,83,72,30.22,30.18,30.14,10,9,6,7,4,'',0,4,'',104,94063); +INSERT INTO "weather" VALUES('1/28/2014',66,58,50,57,51,46,94,86,68,30.28,30.23,30.2,10,10,8,13,2,'',0,7,'',272,94063); +INSERT INTO "weather" VALUES('1/29/2014',64,60,55,57,54,46,100,90,72,30.22,30.14,30,10,8,2,14,2,'',0,8,'',305,94063); +INSERT INTO "weather" VALUES('1/30/2014',59,55,51,50,47,43,88,76,55,30,29.93,29.89,10,10,10,14,5,20,0,7,'Rain',272,94063); +INSERT INTO "weather" VALUES('1/31/2014',59,52,46,45,41,27,87,70,29,30.1,30.02,29.93,10,10,10,15,6,20,0,2,'',290,94063); +INSERT INTO "weather" VALUES('2/1/2014',57,48,39,41,37,32,87,71,41,30.18,30.12,30.09,10,10,10,10,4,'',0,0,'',293,94063); +INSERT INTO "weather" VALUES('2/2/2014',50,47,44,46,39,32,100,79,57,30.08,29.96,29.87,10,9,3,13,4,23,0,5,'Rain',147,94063); +INSERT INTO "weather" VALUES('2/3/2014',53,47,41,45,40,36,100,80,51,30.1,30.05,30,10,10,10,16,4,21,0,4,'',293,94063); +INSERT INTO "weather" VALUES('2/4/2014',53,46,39,43,39,34,93,79,50,30.18,30.13,30.09,10,10,10,10,3,'',0,2,'',261,94063); +INSERT INTO "weather" VALUES('2/5/2014',55,47,39,46,41,36,93,80,54,30.22,30.16,30.07,10,10,6,10,3,16,0,5,'Rain',237,94063); +INSERT INTO "weather" VALUES('2/6/2014',53,50,46,50,47,45,100,92,82,30.07,29.98,29.91,10,7,2,16,6,18,0.06,8,'Rain',128,94063); +INSERT INTO "weather" VALUES('2/7/2014',57,54,50,50,49,48,100,87,72,30.1,30.05,30.01,10,9,3,22,5,29,0,6,'Rain',171,94063); +INSERT INTO "weather" VALUES('2/8/2014',60,56,53,57,53,50,100,88,77,30.17,30.12,30.06,10,8,2,17,11,24,0,8,'Rain',163,94063); +INSERT INTO "weather" VALUES('2/9/2014',60,58,57,57,56,55,100,93,88,30.18,30.13,30.08,10,6,2,14,9,17,0,8,'Rain',196,94063); +INSERT INTO "weather" VALUES('2/10/2014',59,54,50,55,51,48,100,88,72,30.29,30.22,30.13,10,9,4,10,4,'',0,5,'',297,94063); +INSERT INTO "weather" VALUES('2/11/2014',57,52,46,50,47,45,100,92,72,30.27,30.24,30.19,10,8,0,10,2,'',0,4,'Fog',248,94063); +INSERT INTO "weather" VALUES('2/12/2014',57,52,46,50,47,45,100,91,77,30.3,30.24,30.2,10,8,2,8,2,'',0,4,'',186,94063); +INSERT INTO "weather" VALUES('2/13/2014',68,59,50,57,53,48,100,94,68,30.24,30.18,30.11,10,6,0,9,3,'',0,4,'Fog',304,94063); +INSERT INTO "weather" VALUES('2/14/2014',62,56,50,55,52,48,100,88,63,30.18,30.13,30.08,10,9,2,9,2,'',0,5,'',301,94063); +INSERT INTO "weather" VALUES('2/15/2014',60,54,48,54,50,48,100,88,72,30.07,30.03,30,10,10,5,16,2,'',0,4,'Rain',197,94063); +INSERT INTO "weather" VALUES('2/16/2014',62,55,48,55,45,25,100,75,24,30.22,30.13,30.06,10,10,2,12,5,'',0,2,'Rain',287,94063); +INSERT INTO "weather" VALUES('2/17/2014',59,50,42,48,43,39,87,78,48,30.2,30.15,30.11,10,10,10,13,4,'',0,2,'',291,94063); +INSERT INTO "weather" VALUES('2/18/2014',64,54,44,50,45,43,93,80,52,30.21,30.16,30.12,10,10,10,13,2,'',0,2,'',298,94063); +INSERT INTO "weather" VALUES('2/19/2014',62,56,48,54,47,41,94,76,45,30.22,30.17,30.13,10,10,2,14,6,18,0,4,'',282,94063); +INSERT INTO "weather" VALUES('2/20/2014',66,56,46,45,40,32,87,67,32,30.23,30.18,30.13,10,10,10,6,1,'',0,2,'',285,94063); +INSERT INTO "weather" VALUES('2/21/2014',69,58,46,48,41,36,82,67,30,30.13,30.08,29.99,10,10,10,8,1,'',0,1,'',313,94063); +INSERT INTO "weather" VALUES('2/22/2014',68,56,44,50,44,41,93,77,40,30.04,30,29.93,10,10,6,12,1,'',0,2,'',323,94063); +INSERT INTO "weather" VALUES('2/23/2014',66,56,46,52,46,43,93,82,52,30.05,30,29.96,10,9,4,9,1,'',0,3,'',358,94063); +INSERT INTO "weather" VALUES('2/24/2014',71,58,46,50,45,41,93,78,35,30.02,29.98,29.91,10,10,10,8,1,'',0,0,'',331,94063); +INSERT INTO "weather" VALUES('2/25/2014',62,55,48,50,47,45,94,79,59,29.99,29.95,29.91,10,9,4,12,3,16,0,4,'',299,94063); +INSERT INTO "weather" VALUES('2/26/2014',59,56,53,55,50,46,94,77,67,29.97,29.87,29.7,10,9,2,17,8,25,0,7,'Rain',157,94063); +INSERT INTO "weather" VALUES('2/27/2014',64,60,55,54,49,45,82,69,49,29.91,29.77,29.51,10,10,5,15,7,18,0,7,'Rain',184,94063); +INSERT INTO "weather" VALUES('2/28/2014',62,58,53,54,51,45,94,84,52,29.51,29.44,29.39,10,7,2,28,12,37,0.16,7,'Rain',144,94063); +INSERT INTO "weather" VALUES('8/29/2013',78,71,64,62,61,60,87,71,54,30.08,30.04,29.99,10,10,10,20,8,23,0,4,'',355,94301); +INSERT INTO "weather" VALUES('8/30/2013',84,74,64,63,61,57,93,68,43,30.06,30.02,29.94,10,10,10,20,6,23,0,2,'',5,94301); +INSERT INTO "weather" VALUES('8/31/2013',76,69,62,61,59,57,87,71,54,30.01,29.97,29.92,10,10,10,21,8,25,0,0,'',353,94301); +INSERT INTO "weather" VALUES('9/1/2013',80,71,62,62,58,55,84,65,45,29.98,29.95,29.9,10,10,10,21,7,23,0,1,'',354,94301); +INSERT INTO "weather" VALUES('9/2/2013',76,71,65,63,61,60,87,76,64,29.99,29.95,29.91,10,10,10,20,7,22,'T',5,'',337,94301); +INSERT INTO "weather" VALUES('9/3/2013',79,70,61,58,56,51,84,62,39,30.03,29.99,29.96,10,10,10,22,6,25,0,0,'',341,94301); +INSERT INTO "weather" VALUES('9/4/2013',79,70,60,59,56,54,84,65,45,30.06,30.02,29.97,10,10,10,24,6,26,0,0,'',324,94301); +INSERT INTO "weather" VALUES('9/5/2013',80,70,59,57,54,51,84,62,39,30.05,30.02,29.99,10,10,10,23,7,28,0,0,'',335,94301); +INSERT INTO "weather" VALUES('9/6/2013',88,73,57,57,54,51,84,57,29,30.02,29.93,29.84,10,10,10,14,4,17,0,0,'',350,94301); +INSERT INTO "weather" VALUES('9/7/2013',94,78,62,60,53,45,81,50,19,29.89,29.86,29.81,10,10,10,16,4,20,0,0,'',337,94301); +INSERT INTO "weather" VALUES('9/8/2013',83,73,62,60,58,54,84,62,39,29.9,29.85,29.78,10,10,10,14,4,16,0,1,'',326,94301); +INSERT INTO "weather" VALUES('9/9/2013',83,73,62,62,59,54,87,63,39,29.84,29.79,29.73,10,10,10,15,4,20,0,0,'',334,94301); +INSERT INTO "weather" VALUES('9/10/2013',78,70,62,63,59,54,90,70,50,29.92,29.82,29.76,10,10,9,17,7,21,0,3,'',18,94301); +INSERT INTO "weather" VALUES('9/11/2013',75,67,59,58,55,53,78,64,50,30.01,29.97,29.92,10,10,9,18,6,22,0,0,'',6,94301); +INSERT INTO "weather" VALUES('9/12/2013',73,67,61,60,57,55,84,73,61,30,29.97,29.91,10,10,10,18,6,22,0,4,'',353,94301); +INSERT INTO "weather" VALUES('9/13/2013',71,66,60,59,57,55,84,73,61,29.93,29.89,29.82,10,10,10,21,8,23,0,4,'',356,94301); +INSERT INTO "weather" VALUES('9/14/2013',71,65,59,57,55,53,84,75,66,29.87,29.83,29.79,10,10,10,18,6,22,0,4,'',353,94301); +INSERT INTO "weather" VALUES('9/15/2013',77,68,58,61,56,52,87,70,53,29.9,29.86,29.83,10,10,10,20,7,23,0,4,'',338,94301); +INSERT INTO "weather" VALUES('9/16/2013',80,71,61,59,57,52,90,66,42,29.92,29.88,29.83,10,10,10,22,6,25,0,3,'',329,94301); +INSERT INTO "weather" VALUES('9/17/2013',75,67,58,54,52,46,80,59,38,29.92,29.9,29.88,10,10,10,20,6,31,0,1,'',319,94301); +INSERT INTO "weather" VALUES('9/18/2013',82,69,56,56,52,48,83,58,33,29.93,29.89,29.84,10,10,10,21,6,23,0,0,'',346,94301); +INSERT INTO "weather" VALUES('9/19/2013',83,69,54,57,51,45,83,57,30,29.88,29.83,29.77,10,10,10,16,5,18,0,0,'',349,94301); +INSERT INTO "weather" VALUES('9/20/2013',77,66,55,59,55,50,86,70,54,29.9,29.86,29.81,10,10,10,16,5,20,0,3,'',354,94301); +INSERT INTO "weather" VALUES('9/21/2013',70,64,58,61,56,53,90,74,57,29.94,29.87,29.83,10,8,1,15,4,23,0.49,5,'Rain',259,94301); +INSERT INTO "weather" VALUES('9/22/2013',73,63,53,55,52,48,93,70,47,30.04,29.99,29.93,10,10,10,21,5,25,0.01,1,'',330,94301); +INSERT INTO "weather" VALUES('9/23/2013',81,68,55,60,53,50,83,61,39,30.04,30,29.94,10,10,10,17,5,22,0,0,'',337,94301); +INSERT INTO "weather" VALUES('9/24/2013',76,68,59,57,51,45,84,59,33,30.03,29.98,29.96,10,10,10,18,7,28,0,0,'',303,94301); +INSERT INTO "weather" VALUES('9/25/2013',70,63,56,49,45,41,72,55,37,29.97,29.92,29.86,10,10,10,20,9,26,0,0,'',293,94301); +INSERT INTO "weather" VALUES('9/26/2013',76,65,53,45,41,33,66,44,21,30.01,29.93,29.86,10,10,10,15,5,21,0,0,'',321,94301); +INSERT INTO "weather" VALUES('9/27/2013',79,65,51,49,40,34,71,45,19,30.12,30.07,30.01,10,10,10,18,3,21,0,0,'',334,94301); +INSERT INTO "weather" VALUES('9/28/2013',81,67,52,55,44,36,78,50,21,30.12,30.07,30.01,10,10,10,20,5,24,0,0,'',334,94301); +INSERT INTO "weather" VALUES('9/29/2013',76,66,55,61,55,51,87,69,50,30.13,30.1,30.07,10,10,10,16,6,20,0,0,'',340,94301); +INSERT INTO "weather" VALUES('9/30/2013',76,67,58,62,56,41,93,71,48,30.1,30.05,29.99,10,10,10,18,7,23,0,2,'',348,94301); +INSERT INTO "weather" VALUES('10/1/2013',72,63,53,53,47,41,72,58,44,30.04,30,29.95,10,10,10,18,5,22,0,0,'',350,94301); +INSERT INTO "weather" VALUES('10/2/2013',74,64,53,52,48,42,83,61,39,30.04,29.99,29.96,10,10,10,22,5,24,0,0,'',341,94301); +INSERT INTO "weather" VALUES('10/3/2013',74,63,51,44,37,31,64,43,22,30.1,30.03,29.97,10,10,10,17,7,25,0,0,'',297,94301); +INSERT INTO "weather" VALUES('10/4/2013',82,70,58,35,31,27,36,25,14,30.12,30.06,29.99,10,10,10,22,9,30,0,0,'',6,94301); +INSERT INTO "weather" VALUES('10/5/2013',85,68,51,38,34,28,54,34,14,30.22,30.15,30.11,10,10,10,10,2,12,0,0,'',340,94301); +INSERT INTO "weather" VALUES('10/6/2013',82,67,52,47,40,36,59,40,20,30.14,30.08,30.01,10,10,10,10,3,13,0,0,'',321,94301); +INSERT INTO "weather" VALUES('10/7/2013',81,67,53,52,42,29,69,43,16,30.01,29.96,29.9,10,10,10,15,4,17,0,0,'',345,94301); +INSERT INTO "weather" VALUES('10/8/2013',74,62,50,54,47,42,77,56,35,29.93,29.85,29.76,10,10,10,16,6,20,0,0,'',354,94301); +INSERT INTO "weather" VALUES('10/9/2013',69,60,50,47,45,41,77,58,39,29.78,29.7,29.66,10,10,10,16,4,18,0,2,'',63,94301); +INSERT INTO "weather" VALUES('10/10/2013',71,61,51,51,46,41,83,64,44,30.04,29.92,29.79,10,10,10,18,6,21,0,0,'',348,94301); +INSERT INTO "weather" VALUES('10/11/2013',66,57,48,51,48,45,86,73,60,30.11,30.05,30.01,10,10,9,15,4,18,0,0,'',341,94301); +INSERT INTO "weather" VALUES('10/12/2013',69,60,50,52,48,40,96,71,46,30.03,29.99,29.94,10,9,4,20,5,22,0,2,'',344,94301); +INSERT INTO "weather" VALUES('10/13/2013',74,61,48,49,45,41,86,60,33,30.09,30.02,29.96,10,10,10,14,3,20,0,0,'',326,94301); +INSERT INTO "weather" VALUES('10/14/2013',79,63,47,45,40,36,74,48,22,30.14,30.08,30.01,10,10,10,9,3,'',0,0,'',318,94301); +INSERT INTO "weather" VALUES('10/15/2013',81,66,50,43,36,31,63,40,17,30.06,30.02,29.96,10,10,10,14,3,16,0,0,'',325,94301); +INSERT INTO "weather" VALUES('10/16/2013',81,65,49,51,39,31,59,39,18,30.1,30.06,30.02,10,10,10,12,2,16,0,0,'',334,94301); +INSERT INTO "weather" VALUES('10/17/2013',81,66,50,51,40,28,63,39,15,30.1,30.04,29.98,10,10,10,10,3,14,0,0,'',343,94301); +INSERT INTO "weather" VALUES('10/18/2013',75,63,50,53,48,42,77,56,35,30.08,30.03,30,10,10,10,12,2,13,0,0,'',337,94301); +INSERT INTO "weather" VALUES('10/19/2013',77,64,50,54,49,44,89,61,33,30.1,30.05,30.01,10,10,7,9,2,25,0,0,'',339,94301); +INSERT INTO "weather" VALUES('10/20/2013',70,61,51,53,50,46,93,73,53,30.05,30,29.94,10,7,1,13,3,14,0,4,'',323,94301); +INSERT INTO "weather" VALUES('10/21/2013',67,60,53,52,51,50,93,76,58,30.04,29.99,29.94,10,8,5,12,3,13,0,4,'',343,94301); +INSERT INTO "weather" VALUES('10/22/2013',67,60,52,54,51,48,93,76,58,30.05,30,29.95,10,8,4,10,3,25,0,4,'',329,94301); +INSERT INTO "weather" VALUES('10/23/2013',64,59,53,52,51,49,93,80,67,30.01,29.97,29.93,10,6,2,13,4,15,0,5,'',344,94301); +INSERT INTO "weather" VALUES('10/24/2013',60,55,49,50,49,46,89,77,64,30.14,30.07,30.01,10,9,5,8,3,13,0,5,'',347,94301); +INSERT INTO "weather" VALUES('10/25/2013',67,58,48,51,48,45,86,69,52,30.19,30.15,30.1,10,10,7,10,2,16,0,3,'',349,94301); +INSERT INTO "weather" VALUES('10/26/2013',73,61,48,52,49,45,93,66,38,30.17,30.11,30.04,10,10,5,10,2,14,0,0,'',332,94301); +INSERT INTO "weather" VALUES('10/27/2013',64,57,50,50,47,44,89,71,52,30.05,29.92,29.74,10,10,9,21,6,32,0.01,5,'',295,94301); +INSERT INTO "weather" VALUES('10/28/2013',64,59,53,48,45,42,77,63,48,29.88,29.76,29.71,10,10,10,18,6,28,0,5,'',283,94301); +INSERT INTO "weather" VALUES('10/29/2013',63,56,48,48,45,42,80,66,52,30.08,29.99,29.89,10,10,10,15,4,16,0,5,'',355,94301); +INSERT INTO "weather" VALUES('10/30/2013',67,56,44,48,44,41,92,67,42,30.17,30.12,30.09,10,10,10,13,3,16,0,0,'',346,94301); +INSERT INTO "weather" VALUES('10/31/2013',73,59,45,49,43,41,86,60,33,30.2,30.14,30.08,10,10,10,10,2,'',0,0,'',325,94301); +INSERT INTO "weather" VALUES('11/1/2013',76,62,47,48,43,36,80,53,25,30.16,30.09,30.03,10,10,10,12,2,26,0,0,'',337,94301); +INSERT INTO "weather" VALUES('11/2/2013',67,57,47,52,47,41,80,68,56,30.05,30,29.95,10,10,10,15,4,17,0,0,'',338,94301); +INSERT INTO "weather" VALUES('11/3/2013',65,56,47,45,39,26,86,55,24,30.07,30,29.95,10,10,10,14,5,17,0,0,'',305,94301); +INSERT INTO "weather" VALUES('11/4/2013',68,57,45,41,34,26,76,49,22,30.09,30.01,29.94,10,10,10,13,4,16,0,0,'',292,94301); +INSERT INTO "weather" VALUES('11/5/2013',74,61,48,46,34,28,60,40,20,30.24,30.17,30.09,10,10,5,9,2,13,0,0,'',316,94301); +INSERT INTO "weather" VALUES('11/6/2013',72,60,47,43,38,31,66,46,26,30.27,30.22,30.17,10,10,10,7,2,17,0,0,'',339,94301); +INSERT INTO "weather" VALUES('11/7/2013',72,61,50,52,45,38,86,59,31,30.19,30.14,30.1,10,10,8,15,3,18,0,0,'',2,94301); +INSERT INTO "weather" VALUES('11/8/2013',69,59,49,52,49,46,93,71,49,30.12,30.06,29.99,10,8,2,12,4,22,0,3,'',352,94301); +INSERT INTO "weather" VALUES('11/9/2013',70,58,46,51,47,43,93,67,40,30.06,30.02,29.99,10,10,10,10,2,12,0,0,'',349,94301); +INSERT INTO "weather" VALUES('11/10/2013',64,55,45,51,47,43,93,75,56,30.14,30.11,30.06,10,9,5,12,2,14,0,3,'',9,94301); +INSERT INTO "weather" VALUES('11/11/2013',65,59,53,52,49,46,89,71,52,30.18,30.14,30.1,9,7,4,8,2,10,0,3,'',29,94301); +INSERT INTO "weather" VALUES('11/12/2013',70,62,53,52,48,44,80,60,40,30.28,30.25,30.18,10,10,9,12,3,15,0,0,'',328,94301); +INSERT INTO "weather" VALUES('11/13/2013',74,62,49,54,50,43,100,73,46,30.28,30.19,30.14,10,10,10,12,3,20,0,1,'',335,94301); +INSERT INTO "weather" VALUES('11/14/2013',61,56,50,53,51,46,100,86,72,30.13,30.04,29.93,10,8,5,13,3,29,0,4,'',360,94301); +INSERT INTO "weather" VALUES('11/15/2013',66,56,46,48,44,38,86,62,37,29.91,29.83,29.76,10,10,10,16,3,18,0,0,'',355,94301); +INSERT INTO "weather" VALUES('11/16/2013',63,54,44,47,43,38,83,66,48,29.96,29.88,29.81,10,10,10,14,4,17,0,0,'',180,94301); +INSERT INTO "weather" VALUES('11/17/2013',62,53,43,47,44,41,93,72,51,30.12,30.05,29.96,10,10,10,13,3,16,0,0,'',21,94301); +INSERT INTO "weather" VALUES('11/18/2013',60,52,44,47,45,42,92,74,55,30.17,30.13,30.11,10,10,10,12,3,14,0,0,'',4,94301); +INSERT INTO "weather" VALUES('11/19/2013',64,57,49,56,49,45,93,77,60,30.13,30.05,29.98,10,10,8,10,5,15,0.17,6,'Rain',138,94301); +INSERT INTO "weather" VALUES('11/20/2013',65,59,53,57,54,51,93,83,73,29.96,29.91,29.87,10,9,1,14,5,17,0.42,7,'Rain',2,94301); +INSERT INTO "weather" VALUES('11/21/2013',63,56,49,50,40,28,96,63,29,30.02,29.96,29.92,10,10,6,18,6,24,'T',5,'Rain',326,94301); +INSERT INTO "weather" VALUES('11/22/2013',70,59,47,34,24,14,50,32,14,30.06,29.99,29.92,10,10,10,12,3,14,0,0,'',315,94301); +INSERT INTO "weather" VALUES('11/23/2013',65,53,41,41,36,30,71,50,28,30.13,30.05,29.99,10,10,10,8,1,17,0,0,'',325,94301); +INSERT INTO "weather" VALUES('11/24/2013',64,53,41,43,40,37,83,60,37,30.27,30.2,30.13,10,10,10,8,2,9,0,0,'',343,94301); +INSERT INTO "weather" VALUES('11/25/2013',65,53,41,46,41,37,86,65,44,30.35,30.29,30.27,10,10,7,9,2,20,0,0,'',339,94301); +INSERT INTO "weather" VALUES('11/26/2013',62,53,43,47,43,39,86,68,49,30.27,30.17,30.05,10,10,8,9,1,10,0,0,'',342,94301); +INSERT INTO "weather" VALUES('11/27/2013',63,54,44,47,44,40,89,70,51,30.04,29.93,29.86,10,8,5,9,1,15,0,0,'',338,94301); +INSERT INTO "weather" VALUES('11/28/2013',68,57,46,47,44,41,86,63,40,30.1,29.98,29.89,10,8,6,9,2,12,0,0,'',338,94301); +INSERT INTO "weather" VALUES('11/29/2013',68,56,43,47,42,39,86,62,37,30.24,30.16,30.11,10,10,10,9,1,10,0,0,'',328,94301); +INSERT INTO "weather" VALUES('11/30/2013',67,55,43,49,43,38,83,63,42,30.29,30.26,30.21,10,10,8,10,1,25,0,0,'',340,94301); +INSERT INTO "weather" VALUES('12/1/2013',67,54,41,47,43,39,92,68,44,30.36,30.29,30.24,10,10,8,8,1,10,0,0,'',336,94301); +INSERT INTO "weather" VALUES('12/2/2013',63,53,42,52,46,40,89,75,60,30.25,30.13,30.01,10,10,6,13,3,16,0,2,'',320,94301); +INSERT INTO "weather" VALUES('12/3/2013',56,50,43,50,39,31,83,63,43,29.99,29.94,29.88,10,10,10,17,6,22,0,3,'',298,94301); +INSERT INTO "weather" VALUES('12/4/2013',52,44,36,31,25,18,64,45,26,30.11,30.05,29.97,10,10,10,8,3,21,0,0,'',303,94301); +INSERT INTO "weather" VALUES('12/5/2013',51,40,29,25,20,14,70,46,22,30.19,30.15,30.11,10,10,10,7,2,14,0,0,'',341,94301); +INSERT INTO "weather" VALUES('12/6/2013',56,45,33,47,31,22,77,58,38,30.22,30.13,29.95,10,10,5,13,6,20,0.08,4,'Rain',167,94301); +INSERT INTO "weather" VALUES('12/7/2013',51,43,34,46,30,24,86,63,39,30.27,30.13,29.95,10,10,10,18,7,25,0.08,1,'',294,94301); +INSERT INTO "weather" VALUES('12/8/2013',46,39,32,31,24,19,82,60,37,30.35,30.29,30.25,10,10,10,24,6,28,0,0,'',349,94301); +INSERT INTO "weather" VALUES('12/9/2013',51,40,29,25,19,13,64,45,26,30.43,30.39,30.34,10,10,10,18,4,23,0,0,'',5,94301); +INSERT INTO "weather" VALUES('12/10/2013',53,41,29,30,26,22,76,57,38,30.42,30.31,30.23,10,10,10,7,1,10,0,0,'',328,94301); +INSERT INTO "weather" VALUES('12/11/2013',56,44,32,32,29,26,76,56,35,30.27,30.22,30.19,10,10,10,7,1,18,0,0,'',343,94301); +INSERT INTO "weather" VALUES('12/12/2013',59,46,33,37,31,27,82,58,33,30.29,30.24,30.19,10,9,7,6,1,29,0,0,'',324,94301); +INSERT INTO "weather" VALUES('12/13/2013',60,48,35,42,36,31,85,65,44,30.36,30.3,30.26,10,9,8,14,2,31,0,2,'',314,94301); +INSERT INTO "weather" VALUES('12/14/2013',61,48,34,40,34,31,85,61,36,30.42,30.36,30.33,10,10,10,7,1,15,0,0,'',351,94301); +INSERT INTO "weather" VALUES('12/15/2013',61,48,35,38,35,31,85,62,39,30.38,30.31,30.26,10,9,7,7,1,17,0,0,'',356,94301); +INSERT INTO "weather" VALUES('12/16/2013',67,53,38,39,35,33,85,57,29,30.25,30.19,30.14,10,9,7,7,1,26,0,0,'',65,94301); +INSERT INTO "weather" VALUES('12/17/2013',61,51,41,41,37,34,79,59,39,30.19,30.12,30.06,10,6,3,7,1,8,0,0,'',346,94301); +INSERT INTO "weather" VALUES('12/18/2013',58,51,43,46,42,39,86,72,57,30.04,29.93,29.82,10,8,6,10,2,26,'T',0,'',324,94301); +INSERT INTO "weather" VALUES('12/19/2013',59,52,44,43,36,22,92,64,36,29.96,29.84,29.76,10,10,10,17,5,26,0,1,'',287,94301); +INSERT INTO "weather" VALUES('12/20/2013',61,50,38,28,19,4,54,32,10,30.04,30,29.96,10,10,10,9,1,10,0,0,'',340,94301); +INSERT INTO "weather" VALUES('12/21/2013',60,49,37,47,38,26,93,73,53,30.1,30.04,30,10,10,10,15,3,18,0,0,'',358,94301); +INSERT INTO "weather" VALUES('12/22/2013',68,53,37,45,38,33,100,64,27,30.3,30.21,30.11,10,8,0,8,1,13,0,1,'Fog',316,94301); +INSERT INTO "weather" VALUES('12/23/2013',62,51,40,43,39,35,85,66,46,30.4,30.36,30.31,10,10,7,8,2,12,0,0,'',329,94301); +INSERT INTO "weather" VALUES('12/24/2013',71,56,40,42,38,35,86,59,31,30.36,30.28,30.22,10,9,7,9,2,12,0,0,'',292,94301); +INSERT INTO "weather" VALUES('12/25/2013',65,52,38,42,38,35,85,61,37,30.31,30.26,30.21,10,10,10,7,1,9,0,0,'',314,94301); +INSERT INTO "weather" VALUES('12/26/2013',68,53,37,43,38,34,85,60,34,30.28,30.23,30.18,10,10,8,7,1,8,0,0,'',335,94301); +INSERT INTO "weather" VALUES('12/27/2013',59,49,39,42,38,34,85,68,51,30.25,30.2,30.14,10,8,5,8,1,10,0,0,'',350,94301); +INSERT INTO "weather" VALUES('12/28/2013',67,52,36,42,35,30,92,60,28,30.17,30.11,30.05,10,9,6,9,2,12,0,0,'',331,94301); +INSERT INTO "weather" VALUES('12/29/2013',68,55,41,32,26,19,62,39,16,30.19,30.14,30.11,10,10,10,10,2,16,0,0,'',299,94301); +INSERT INTO "weather" VALUES('12/30/2013',63,50,37,36,33,28,70,49,27,30.27,30.24,30.2,10,10,8,8,1,9,0,0,'',343,94301); +INSERT INTO "weather" VALUES('12/31/2013',59,49,39,43,39,35,100,80,59,30.3,30.24,30.17,10,4,0,14,2,16,0,4,'Fog',317,94301); +INSERT INTO "weather" VALUES('1/1/2014',59,48,36,42,36,32,85,63,40,30.23,30.19,30.14,10,8,6,8,1,12,0,0,'',348,94301); +INSERT INTO "weather" VALUES('1/2/2014',66,53,39,40,36,34,79,57,34,30.19,30.13,30.07,10,10,8,7,1,9,0,0,'',352,94301); +INSERT INTO "weather" VALUES('1/3/2014',62,52,42,40,37,34,71,55,39,30.09,30.03,29.98,10,10,8,8,1,8,0,0,'',359,94301); +INSERT INTO "weather" VALUES('1/4/2014',67,54,40,46,36,26,92,59,25,30.1,30.04,30,10,10,7,12,3,15,0,0,'',298,94301); +INSERT INTO "weather" VALUES('1/5/2014',66,51,36,35,30,25,65,46,26,30.23,30.17,30.1,10,10,10,7,1,12,0,0,'',343,94301); +INSERT INTO "weather" VALUES('1/6/2014',61,51,40,40,36,31,73,58,42,30.3,30.23,30.18,10,10,9,8,1,9,0,0,'',355,94301); +INSERT INTO "weather" VALUES('1/7/2014',62,53,43,43,41,36,80,62,43,30.23,30.19,30.15,10,9,6,9,2,9,0,2,'',334,94301); +INSERT INTO "weather" VALUES('1/8/2014',58,53,48,52,48,43,96,84,72,30.25,30.22,30.18,10,8,2,13,3,15,0.01,6,'Rain',348,94301); +INSERT INTO "weather" VALUES('1/9/2014',61,54,46,52,45,40,93,72,51,30.28,30.25,30.21,10,9,2,15,4,21,0.01,4,'Rain',258,94301); +INSERT INTO "weather" VALUES('1/10/2014',64,53,41,49,44,37,89,71,52,30.33,30.26,30.2,10,10,8,10,2,12,0,2,'',350,94301); +INSERT INTO "weather" VALUES('1/11/2014',59,52,44,49,45,40,93,80,67,30.32,30.24,30.18,10,10,8,15,2,20,0,3,'',261,94301); +INSERT INTO "weather" VALUES('1/12/2014',60,51,42,45,41,36,93,68,42,30.4,30.34,30.28,10,10,9,13,3,17,0,2,'',293,94301); +INSERT INTO "weather" VALUES('1/13/2014',68,57,45,36,34,31,65,46,26,30.48,30.41,30.37,10,10,10,8,3,14,0,0,'',320,94301); +INSERT INTO "weather" VALUES('1/14/2014',74,59,44,35,28,19,65,40,14,30.47,30.39,30.33,10,10,10,16,5,24,0,0,'',322,94301); +INSERT INTO "weather" VALUES('1/15/2014',72,58,43,35,33,31,65,44,22,30.36,30.28,30.21,10,10,8,8,1,9,0,0,'',320,94301); +INSERT INTO "weather" VALUES('1/16/2014',73,57,41,37,32,28,62,42,22,30.25,30.19,30.13,10,10,10,10,1,12,0,0,'',332,94301); +INSERT INTO "weather" VALUES('1/17/2014',68,55,41,42,35,31,65,50,34,30.21,30.16,30.12,10,9,7,8,1,13,0,0,'',360,94301); +INSERT INTO "weather" VALUES('1/18/2014',71,55,39,38,33,29,70,46,22,30.19,30.13,30.07,10,10,8,10,1,23,0,0,'',327,94301); +INSERT INTO "weather" VALUES('1/19/2014',67,53,38,38,34,29,70,48,26,30.15,30.11,30.07,10,10,7,9,1,10,0,0,'',340,94301); +INSERT INTO "weather" VALUES('1/20/2014',71,55,39,38,33,29,76,48,20,30.25,30.18,30.14,10,10,8,8,1,9,0,0,'',352,94301); +INSERT INTO "weather" VALUES('1/21/2014',68,54,40,41,34,30,67,52,36,30.29,30.23,30.18,10,10,10,8,1,9,0,0,'',357,94301); +INSERT INTO "weather" VALUES('1/22/2014',74,57,40,47,34,19,86,50,13,30.17,30.06,29.95,10,10,9,12,1,13,0,0,'',346,94301); +INSERT INTO "weather" VALUES('1/23/2014',68,55,41,41,34,29,83,54,24,30.03,29.94,29.88,10,9,6,9,2,13,0,0,'',336,94301); +INSERT INTO "weather" VALUES('1/24/2014',66,54,42,42,38,34,76,56,36,30.29,30.18,30.04,10,7,2,6,1,16,0,0,'',350,94301); +INSERT INTO "weather" VALUES('1/25/2014',72,59,45,42,37,31,76,50,23,30.29,30.21,30.14,10,10,7,9,1,12,0,0,'',343,94301); +INSERT INTO "weather" VALUES('1/26/2014',70,58,46,48,40,32,89,58,26,30.15,30.11,30.04,10,10,9,8,2,16,0,0,'',333,94301); +INSERT INTO "weather" VALUES('1/27/2014',62,55,47,49,47,46,100,80,60,30.23,30.16,30.09,10,5,0,9,2,23,0,5,'Fog',264,94301); +INSERT INTO "weather" VALUES('1/28/2014',66,57,48,57,52,46,90,77,63,30.28,30.23,30.21,10,10,6,13,3,15,'T',4,'Rain',347,94301); +INSERT INTO "weather" VALUES('1/29/2014',68,62,56,58,55,46,100,82,63,30.22,30.13,30.01,10,9,4,15,5,18,0.01,5,'Rain',356,94301); +INSERT INTO "weather" VALUES('1/30/2014',62,58,53,50,46,39,83,65,46,29.99,29.93,29.88,10,10,7,17,5,21,0.04,5,'Rain',299,94301); +INSERT INTO "weather" VALUES('1/31/2014',61,53,45,46,39,26,82,55,27,30.11,30.05,29.94,10,10,10,15,5,26,0.01,2,'',322,94301); +INSERT INTO "weather" VALUES('2/1/2014',60,49,38,39,35,27,79,54,28,30.19,30.14,30.1,10,10,10,12,3,16,0,0,'',333,94301); +INSERT INTO "weather" VALUES('2/2/2014',55,49,42,43,39,35,86,75,63,30.07,29.95,29.87,10,10,7,24,7,32,0.09,5,'Rain',149,94301); +INSERT INTO "weather" VALUES('2/3/2014',57,50,42,42,38,35,86,67,47,30.11,30.06,30,10,10,10,15,5,20,0,2,'',315,94301); +INSERT INTO "weather" VALUES('2/4/2014',55,47,38,39,36,34,85,68,51,30.19,30.14,30.1,10,10,10,13,4,30,0,0,'',332,94301); +INSERT INTO "weather" VALUES('2/5/2014',57,47,37,43,38,32,85,66,47,30.23,30.17,30.09,10,10,10,15,5,17,0.01,4,'Rain',43,94301); +INSERT INTO "weather" VALUES('2/6/2014',56,52,47,49,46,44,93,82,71,30.06,29.98,29.91,10,10,7,21,8,28,0.53,8,'Rain',131,94301); +INSERT INTO "weather" VALUES('2/7/2014',56,53,50,50,48,45,86,79,72,30.12,30.07,30.02,10,10,10,26,9,38,0.07,6,'Rain',140,94301); +INSERT INTO "weather" VALUES('2/8/2014',65,60,54,54,52,49,86,77,67,30.19,30.14,30.1,10,10,10,21,11,26,0.04,7,'Rain',148,94301); +INSERT INTO "weather" VALUES('2/9/2014',67,63,59,54,53,52,78,71,63,30.18,30.14,30.11,10,10,9,16,7,22,0.03,7,'Rain',156,94301); +INSERT INTO "weather" VALUES('2/10/2014',61,57,52,55,52,50,93,83,72,30.3,30.24,30.13,10,9,2,12,4,25,0.02,6,'Rain',340,94301); +INSERT INTO "weather" VALUES('2/11/2014',60,55,49,52,49,46,100,81,62,30.27,30.24,30.19,10,7,0,12,3,15,0,4,'Fog',328,94301); +INSERT INTO "weather" VALUES('2/12/2014',61,55,49,50,48,46,93,77,60,30.31,30.25,30.2,10,9,5,10,2,14,0,3,'',335,94301); +INSERT INTO "weather" VALUES('2/13/2014',70,60,49,56,51,46,100,82,63,30.25,30.18,30.12,10,8,0,12,3,26,0,3,'Fog',351,94301); +INSERT INTO "weather" VALUES('2/14/2014',64,59,53,56,53,49,100,80,60,30.19,30.14,30.08,10,8,2,13,3,15,0,7,'',327,94301); +INSERT INTO "weather" VALUES('2/15/2014',64,57,50,52,50,47,93,78,63,30.07,30.04,30,10,10,10,16,3,21,0.01,2,'Rain',132,94301); +INSERT INTO "weather" VALUES('2/16/2014',64,57,50,54,44,30,89,60,31,30.23,30.14,30.06,10,10,4,14,5,17,0.04,2,'Rain',311,94301); +INSERT INTO "weather" VALUES('2/17/2014',62,52,42,46,42,37,82,65,47,30.21,30.17,30.12,10,10,10,20,4,22,0,0,'',334,94301); +INSERT INTO "weather" VALUES('2/18/2014',65,54,43,49,44,40,89,67,44,30.22,30.17,30.11,10,10,10,16,3,21,0,0,'',348,94301); +INSERT INTO "weather" VALUES('2/19/2014',65,58,50,52,46,42,93,69,44,30.23,30.17,30.13,10,10,4,17,7,20,0.01,3,'Rain',315,94301); +INSERT INTO "weather" VALUES('2/20/2014',69,57,45,45,40,34,80,56,31,30.22,30.18,30.13,10,10,10,13,4,17,0,0,'',310,94301); +INSERT INTO "weather" VALUES('2/21/2014',73,58,43,47,42,37,76,53,29,30.14,30.07,30,10,10,10,12,3,14,0,0,'',342,94301); +INSERT INTO "weather" VALUES('2/22/2014',71,58,44,49,44,34,86,56,26,30.04,30,29.94,10,10,10,15,4,17,0,0,'',338,94301); +INSERT INTO "weather" VALUES('2/23/2014',68,59,49,49,47,45,93,69,45,30.05,30.01,29.96,10,9,7,13,3,16,0,3,'',337,94301); +INSERT INTO "weather" VALUES('2/24/2014',74,60,45,50,45,41,86,61,35,30.02,29.97,29.91,10,10,10,13,3,15,0,0,'',344,94301); +INSERT INTO "weather" VALUES('2/25/2014',64,56,47,49,47,43,86,71,56,30.01,29.96,29.92,10,9,7,14,5,28,0,2,'',44,94301); +INSERT INTO "weather" VALUES('2/26/2014',62,58,54,56,51,46,93,80,67,29.98,29.85,29.7,10,8,2,26,10,38,0.83,7,'Rain',133,94301); +INSERT INTO "weather" VALUES('2/27/2014',66,60,54,51,47,44,83,66,48,29.92,29.8,29.52,10,10,8,22,8,32,0.02,3,'Rain',153,94301); +INSERT INTO "weather" VALUES('2/28/2014',64,59,54,54,51,46,93,73,52,29.52,29.44,29.38,10,8,2,25,10,32,1.06,7,'Rain',143,94301); +INSERT INTO "weather" VALUES('8/29/2013',80,70,64,65,61,58,83,72,55,30.04,30.04,29.94,10,10,10,16,5,16,0,4,'',355,94041); +INSERT INTO "weather" VALUES('8/30/2013',87,72,63,66,61,57,84,68,47,30.03,30.02,29.9,10,10,10,15,2,18,0,2,'',5,94041); +INSERT INTO "weather" VALUES('8/31/2013',78,68,59,62,58,52,83,70,55,29.97,29.97,29.88,10,10,10,14,2,20,0,0,'',353,94041); +INSERT INTO "weather" VALUES('9/1/2013',81,70,61,62,58,54,80,67,47,29.94,29.95,29.85,10,10,10,14,4,16,0,1,'',354,94041); +INSERT INTO "weather" VALUES('9/2/2013',80,71,66,64,61,58,80,70,58,29.95,29.95,29.86,10,10,10,14,4,19,0,5,'',337,94041); +INSERT INTO "weather" VALUES('9/3/2013',81,69,58,60,56,52,82,65,44,29.99,29.99,29.93,10,10,10,19,2,20,1.71,6,'rain',341,94041); +INSERT INTO "weather" VALUES('9/4/2013',82,68,56,61,55,49,81,64,43,30.04,30.02,29.94,10,10,10,15,0,20,0,0,'',324,94041); +INSERT INTO "weather" VALUES('9/5/2013',81,68,56,59,54,50,81,63,41,30.02,30.02,29.95,10,10,10,16,1,114,0,0,'',335,94041); +INSERT INTO "weather" VALUES('9/6/2013',90,71,54,62,54,47,80,57,31,29.99,29.93,29.79,10,10,10,8,0,8,0,0,'',350,94041); +INSERT INTO "weather" VALUES('9/7/2013',95,74,58,64,55,48,71,55,26,29.87,29.86,29.77,10,10,10,0,0,13,0,0,'',337,94041); +INSERT INTO "weather" VALUES('9/8/2013',85,70,60,64,58,53,81,66,46,29.87,29.85,29.74,10,10,10,5,0,9,0,1,'',326,94041); +INSERT INTO "weather" VALUES('9/9/2013',85,70,59,64,58,52,81,68,44,29.81,29.79,29.7,10,10,10,7,0,10,0,0,'',334,94041); +INSERT INTO "weather" VALUES('9/10/2013',81,70,62,62,58,54,82,68,52,29.89,29.82,29.73,10,10,9,6,0,6,0,3,'',18,94041); +INSERT INTO "weather" VALUES('9/11/2013',77,66,56,60,55,50,81,68,55,29.98,29.97,29.88,10,10,9,12,1,15,0,0,'',6,94041); +INSERT INTO "weather" VALUES('9/12/2013',75,67,61,61,57,53,78,71,60,29.98,29.97,29.88,10,10,10,14,2,18,0,4,'',353,94041); +INSERT INTO "weather" VALUES('9/13/2013',73,66,61,60,56,54,79,73,62,29.92,29.89,29.78,10,10,10,17,3,17,0,4,'',356,94041); +INSERT INTO "weather" VALUES('9/14/2013',73,64,57,60,55,50,82,71,62,29.84,29.83,29.75,10,10,10,15,2,16,0,4,'',353,94041); +INSERT INTO "weather" VALUES('9/15/2013',79,66,56,61,55,49,80,69,52,29.88,29.86,29.8,10,10,10,15,2,16,0,4,'',338,94041); +INSERT INTO "weather" VALUES('9/16/2013',81,68,60,62,56,51,83,68,45,29.9,29.88,29.78,10,10,10,17,2,18,0,3,'',329,94041); +INSERT INTO "weather" VALUES('9/17/2013',76,65,56,56,52,49,81,64,43,29.89,29.9,29.85,10,10,10,23,3,32,0,1,'',319,94041); +INSERT INTO "weather" VALUES('9/18/2013',84,66,52,58,51,46,81,62,36,29.91,29.89,29.8,10,10,10,11,2,15,0,0,'',346,94041); +INSERT INTO "weather" VALUES('9/19/2013',86,66,52,60,52,45,81,61,37,29.85,29.83,29.73,10,10,10,12,2,15,0,0,'',349,94041); +INSERT INTO "weather" VALUES('9/20/2013',78,65,52,60,54,46,81,68,54,29.87,29.86,29.78,10,10,10,16,2,18,0,3,'',354,94041); +INSERT INTO "weather" VALUES('9/21/2013',70,64,56,59,55,50,81,74,61,29.91,29.87,29.81,10,8,1,11,2,15,0.37,5,'Rain',259,94041); +INSERT INTO "weather" VALUES('9/22/2013',74,61,50,56,51,46,87,70,46,30.01,29.99,29.9,10,10,10,16,4,21,0,1,'',330,94041); +INSERT INTO "weather" VALUES('9/23/2013',82,66,52,59,53,46,83,65,44,30.02,30,29.91,10,10,10,15,4,18,0,0,'',337,94041); +INSERT INTO "weather" VALUES('9/24/2013',77,65,32,54,51,15,80,63,41,30,29.98,29.92,10,10,10,17,5,28,0,0,'',303,94041); +INSERT INTO "weather" VALUES('9/25/2013',72,62,55,48,46,44,73,58,42,29.94,29.92,29.83,10,10,10,28,6,28,0,0,'',293,94041); +INSERT INTO "weather" VALUES('9/26/2013',76,60,47,45,42,39,76,54,29,29.98,29.93,29.84,10,10,10,15,3,17,0,0,'',321,94041); +INSERT INTO "weather" VALUES('9/27/2013',80,61,46,48,42,38,77,52,28,30.1,30.07,29.97,10,10,10,9,1,14,0,0,'',334,94041); +INSERT INTO "weather" VALUES('9/28/2013',81,63,47,54,46,37,71,56,28,30.09,30.07,29.97,10,10,10,11,2,15,0,0,'',334,94041); +INSERT INTO "weather" VALUES('9/29/2013',77,65,53,60,54,46,82,68,52,30.11,30.1,30.03,10,10,10,19,2,19,0,0,'',340,94041); +INSERT INTO "weather" VALUES('9/30/2013',76,66,57,61,56,44,83,72,55,30.08,30.05,29.95,10,10,10,13,2,19,0,2,'',348,94041); +INSERT INTO "weather" VALUES('10/1/2013',73,62,50,54,48,42,78,62,48,30.02,30,29.91,10,10,10,18,2,18,0,0,'',350,94041); +INSERT INTO "weather" VALUES('10/2/2013',75,61,50,55,48,42,82,64,41,30.01,29.99,29.92,10,10,10,16,2,16,0,0,'',341,94041); +INSERT INTO "weather" VALUES('10/3/2013',74,60,46,46,41,37,74,52,30,30.07,30.03,29.94,10,10,10,15,4,19,0,0,'',297,94041); +INSERT INTO "weather" VALUES('10/4/2013',81,68,54,42,38,34,50,34,21,30.09,30.06,29.96,10,10,10,18,3,23,0,0,'',6,94041); +INSERT INTO "weather" VALUES('10/5/2013',85,64,47,43,39,36,66,44,20,30.19,30.15,30.08,10,10,10,11,1,12,0,0,'',340,94041); +INSERT INTO "weather" VALUES('10/6/2013',84,64,47,52,42,35,65,48,25,30.12,30.08,29.98,10,10,10,8,1,12,0,0,'',321,94041); +INSERT INTO "weather" VALUES('10/7/2013',82,64,50,52,43,38,64,48,23,29.99,29.96,29.86,10,10,10,13,2,15,0,0,'',345,94041); +INSERT INTO "weather" VALUES('10/8/2013',75,60,48,54,46,40,75,60,39,29.91,29.85,29.72,10,10,10,13,2,114,0,0,'',354,94041); +INSERT INTO "weather" VALUES('10/9/2013',70,58,49,48,44,41,77,62,43,29.76,29.7,29.63,10,10,10,14,1,18,0,2,'',63,94041); +INSERT INTO "weather" VALUES('10/10/2013',72,58,48,51,45,39,75,63,46,30.02,29.92,29.76,10,10,10,14,2,17,0,0,'',348,94041); +INSERT INTO "weather" VALUES('10/11/2013',67,55,46,53,46,40,82,72,60,30.09,30.05,29.98,10,10,9,14,2,16,0,0,'',341,94041); +INSERT INTO "weather" VALUES('10/12/2013',68,57,47,54,46,41,84,69,46,30.02,29.99,29.9,10,9,4,28,2,114,0,2,'',344,94041); +INSERT INTO "weather" VALUES('10/13/2013',74,58,45,50,45,39,84,63,38,30.07,30.02,29.94,10,10,10,14,2,114,0,0,'',326,94041); +INSERT INTO "weather" VALUES('10/14/2013',79,60,44,47,42,37,79,55,29,30.12,30.08,29.97,10,10,10,28,3,28,0,0,'',318,94041); +INSERT INTO "weather" VALUES('10/15/2013',80,61,45,44,40,36,74,50,26,30.04,30.02,29.92,10,10,10,28,2,28,0,0,'',325,94041); +INSERT INTO "weather" VALUES('10/16/2013',82,62,46,46,41,35,69,48,27,30.08,30.06,29.99,10,10,10,28,2,28,0,0,'',334,94041); +INSERT INTO "weather" VALUES('10/17/2013',81,62,46,49,42,36,69,51,24,30.08,30.04,29.94,10,10,10,28,3,28,0,0,'',343,94041); +INSERT INTO "weather" VALUES('10/18/2013',77,60,46,55,46,37,81,62,38,30.06,30.03,29.96,10,10,10,28,2,28,0,0,'',337,94041); +INSERT INTO "weather" VALUES('10/19/2013',78,60,46,57,48,39,85,65,40,30.08,30.05,29.97,10,10,7,28,1,28,0,0,'',339,94041); +INSERT INTO "weather" VALUES('10/20/2013',71,58,49,56,48,42,84,71,53,30.03,30,29.9,10,7,1,14,1,28,0,4,'',323,94041); +INSERT INTO "weather" VALUES('10/21/2013',68,58,51,54,49,44,81,73,58,30.02,29.99,29.9,10,8,5,14,1,14,0,4,'',343,94041); +INSERT INTO "weather" VALUES('10/22/2013',69,57,49,56,49,43,84,75,60,30.03,30,29.91,10,8,4,14,1,28,0,4,'',329,94041); +INSERT INTO "weather" VALUES('10/23/2013',65,57,53,54,50,48,84,78,65,29.99,29.97,29.9,10,6,2,14,1,14,0,5,'',344,94041); +INSERT INTO "weather" VALUES('10/24/2013',62,55,48,50,47,42,82,77,65,30.12,30.07,29.99,10,9,5,7,1,14,0,5,'',347,94041); +INSERT INTO "weather" VALUES('10/25/2013',68,55,44,53,46,39,86,74,55,30.18,30.15,30.07,10,10,7,14,1,14,0,3,'',349,94041); +INSERT INTO "weather" VALUES('10/26/2013',75,57,44,57,47,39,87,71,48,30.16,30.11,30.01,10,10,5,8,1,14,0,0,'',332,94041); +INSERT INTO "weather" VALUES('10/27/2013',65,55,47,51,46,41,83,73,57,30.04,29.92,29.71,10,10,9,20,3,23,0,5,'',295,94041); +INSERT INTO "weather" VALUES('10/28/2013',66,57,52,47,45,43,74,65,47,29.87,29.76,29.69,10,10,10,22,4,26,0,5,'',283,94041); +INSERT INTO "weather" VALUES('10/29/2013',63,56,48,49,45,40,77,69,57,30.06,29.99,29.87,10,10,10,8,1,14,0,5,'',355,94041); +INSERT INTO "weather" VALUES('10/30/2013',67,53,42,50,43,36,84,69,49,30.15,30.12,30.06,10,10,10,14,2,114,0,0,'',346,94041); +INSERT INTO "weather" VALUES('10/31/2013',72,55,43,50,43,36,81,66,41,30.19,30.14,30.05,10,10,10,14,1,14,0,0,'',325,94041); +INSERT INTO "weather" VALUES('11/1/2013',75,57,43,49,43,37,82,63,36,30.14,30.09,30,10,10,10,14,1,28,0,0,'',337,94041); +INSERT INTO "weather" VALUES('11/2/2013',68,54,44,54,45,37,84,71,58,30.03,30,29.92,10,10,10,14,1,14,0,0,'',338,94041); +INSERT INTO "weather" VALUES('11/3/2013',64,53,42,44,38,35,83,61,34,30.05,30,29.92,10,10,10,18,2,18,0,0,'',305,94041); +INSERT INTO "weather" VALUES('11/4/2013',66,52,40,42,36,32,80,55,32,30.07,30.01,29.92,10,10,10,13,2,14,0,0,'',292,94041); +INSERT INTO "weather" VALUES('11/5/2013',73,56,42,43,37,32,71,51,30,30.22,30.17,30.07,10,10,5,9,1,14,0,0,'',316,94041); +INSERT INTO "weather" VALUES('11/6/2013',72,56,43,45,40,34,72,56,33,30.25,30.22,30.15,10,10,10,5,1,14,0,0,'',339,94041); +INSERT INTO "weather" VALUES('11/7/2013',72,57,47,49,44,38,75,61,35,30.17,30.14,30.07,10,10,8,12,1,12,0,0,'',2,94041); +INSERT INTO "weather" VALUES('11/8/2013',69,56,46,54,46,40,85,72,54,30.09,30.06,29.95,10,8,2,14,1,14,0,3,'',352,94041); +INSERT INTO "weather" VALUES('11/9/2013',70,55,44,52,45,38,85,70,50,30.04,30.02,29.95,10,10,10,14,1,14,0,0,'',349,94041); +INSERT INTO "weather" VALUES('11/10/2013',64,54,44,51,46,38,84,75,61,30.13,30.11,30.03,10,9,5,14,1,14,0,3,'',9,94041); +INSERT INTO "weather" VALUES('11/11/2013',66,58,52,52,49,46,81,73,56,30.16,30.14,30.07,9,7,4,5,1,14,0,3,'',29,94041); +INSERT INTO "weather" VALUES('11/12/2013',71,60,50,53,48,42,78,67,48,30.26,30.25,30.15,10,10,9,14,1,14,0,0,'',328,94041); +INSERT INTO "weather" VALUES('11/13/2013',74,56,46,56,47,40,83,72,48,30.26,30.19,30.11,10,10,10,14,1,14,0,1,'',335,94041); +INSERT INTO "weather" VALUES('11/14/2013',63,56,50,53,49,44,84,77,69,30.12,30.04,29.9,10,8,5,14,1,14,0,4,'',360,94041); +INSERT INTO "weather" VALUES('11/15/2013',66,53,43,47,42,38,84,69,43,29.9,29.83,29.72,10,10,10,14,2,15,0,0,'',355,94041); +INSERT INTO "weather" VALUES('11/16/2013',64,52,43,48,42,36,82,70,52,29.93,29.88,29.78,10,10,10,14,2,16,0,0,'',180,94041); +INSERT INTO "weather" VALUES('11/17/2013',62,51,42,48,43,37,85,73,57,30.09,30.05,29.93,10,10,10,14,1,14,0,0,'',21,94041); +INSERT INTO "weather" VALUES('11/18/2013',60,51,42,48,43,37,84,74,62,30.15,30.13,30.08,10,10,10,14,1,14,0,0,'',4,94041); +INSERT INTO "weather" VALUES('11/19/2013',65,56,48,53,49,42,85,76,61,30.11,30.05,29.94,10,10,8,28,2,28,0.27,6,'Rain',138,94041); +INSERT INTO "weather" VALUES('11/20/2013',64,57,52,57,52,47,88,85,78,29.95,29.91,29.84,10,9,1,86,4,114,0.22,7,'Rain',2,94041); +INSERT INTO "weather" VALUES('11/21/2013',61,54,46,49,40,32,86,63,36,29.99,29.96,29.9,10,10,6,14,3,114,0,5,'',326,94041); +INSERT INTO "weather" VALUES('11/22/2013',67,52,40,35,32,28,68,50,26,30.04,29.99,29.89,10,10,10,6,1,7,0,0,'',315,94041); +INSERT INTO "weather" VALUES('11/23/2013',64,51,40,40,36,32,73,59,36,30.11,30.05,29.96,10,10,10,6,1,14,0,0,'',325,94041); +INSERT INTO "weather" VALUES('11/24/2013',64,49,39,46,38,32,80,67,44,30.25,30.2,30.11,10,10,10,14,1,14,0,0,'',343,94041); +INSERT INTO "weather" VALUES('11/25/2013',64,49,38,46,39,32,83,69,48,30.32,30.29,30.24,10,10,7,14,1,14,0,0,'',339,94041); +INSERT INTO "weather" VALUES('11/26/2013',63,51,42,49,41,35,83,70,54,30.26,30.17,30.03,10,10,8,14,0,14,0,0,'',342,94041); +INSERT INTO "weather" VALUES('11/27/2013',64,52,41,48,43,35,83,71,54,30.03,29.93,29.83,10,8,5,14,1,14,0,0,'',338,94041); +INSERT INTO "weather" VALUES('11/28/2013',67,54,45,48,43,39,82,69,46,30.08,29.98,29.86,10,8,6,14,2,14,0,0,'',338,94041); +INSERT INTO "weather" VALUES('11/29/2013',67,52,41,48,41,35,82,68,45,30.22,30.16,30.08,10,10,10,14,1,14,0,0,'',328,94041); +INSERT INTO "weather" VALUES('11/30/2013',64,51,41,51,42,34,83,72,54,30.27,30.26,30.18,10,10,8,14,1,14,0,0,'',340,94041); +INSERT INTO "weather" VALUES('12/1/2013',65,51,41,50,42,35,84,71,52,30.34,30.29,30.21,10,10,8,14,1,14,0,0,'',336,94041); +INSERT INTO "weather" VALUES('12/2/2013',62,50,40,51,43,34,87,77,66,30.24,30.13,29.98,10,10,6,14,1,14,0,2,'',320,94041); +INSERT INTO "weather" VALUES('12/3/2013',56,50,39,48,39,30,82,65,49,29.98,29.94,29.85,10,10,10,17,4,19,0,3,'',298,94041); +INSERT INTO "weather" VALUES('12/4/2013',52,41,32,30,27,24,74,59,36,30.09,30.05,29.94,10,10,10,14,2,14,0,0,'',303,94041); +INSERT INTO "weather" VALUES('12/5/2013',51,38,28,26,22,20,72,55,32,30.17,30.15,30.08,10,10,10,14,1,28,0,0,'',341,94041); +INSERT INTO "weather" VALUES('12/6/2013',57,44,34,44,32,22,80,63,45,30.19,30.13,29.92,10,10,5,16,2,16,0.08,4,'Rain',167,94041); +INSERT INTO "weather" VALUES('12/7/2013',50,45,34,44,32,25,80,62,42,30.24,30.13,29.92,10,10,10,20,5,26,0.08,3,'Rain',294,94041); +INSERT INTO "weather" VALUES('12/8/2013',46,38,31,29,24,21,76,59,42,30.33,30.29,30.22,10,10,10,14,2,14,0,0,'',349,94041); +INSERT INTO "weather" VALUES('12/9/2013',50,38,29,26,22,18,65,52,35,30.41,30.39,30.31,10,10,10,14,1,14,0,0,'',5,94041); +INSERT INTO "weather" VALUES('12/10/2013',52,38,28,32,26,20,74,62,45,30.4,30.31,30.2,10,10,10,14,1,14,0,0,'',328,94041); +INSERT INTO "weather" VALUES('12/11/2013',55,42,31,35,29,23,76,61,42,30.25,30.22,30.17,10,10,10,14,1,14,0,0,'',343,94041); +INSERT INTO "weather" VALUES('12/12/2013',57,42,31,36,30,23,76,63,42,30.26,30.24,30.15,10,9,7,14,1,114,0,0,'',324,94041); +INSERT INTO "weather" VALUES('12/13/2013',58,44,34,42,34,26,77,67,49,30.34,30.3,30.23,10,9,8,14,1,14,0,2,'',314,94041); +INSERT INTO "weather" VALUES('12/14/2013',60,45,34,40,33,27,80,65,46,30.41,30.36,30.3,10,10,10,14,1,14,0,0,'',351,94041); +INSERT INTO "weather" VALUES('12/15/2013',59,45,34,41,34,27,79,66,47,30.37,30.31,30.23,10,9,7,14,1,114,0,0,'',356,94041); +INSERT INTO "weather" VALUES('12/16/2013',63,48,37,42,36,30,79,63,43,30.24,30.19,30.1,10,9,7,14,1,14,0,0,'',65,94041); +INSERT INTO "weather" VALUES('12/17/2013',63,50,39,42,37,31,78,63,44,30.17,30.12,30.03,10,6,3,14,1,28,0,0,'',346,94041); +INSERT INTO "weather" VALUES('12/18/2013',59,50,43,46,41,35,77,72,57,30.03,29.93,29.8,10,8,6,14,1,14,0,0,'',324,94041); +INSERT INTO "weather" VALUES('12/19/2013',58,48,41,40,36,28,80,64,45,29.93,29.84,29.74,10,10,10,17,3,17,0,1,'',287,94041); +INSERT INTO "weather" VALUES('12/20/2013',60,46,34,28,26,21,67,47,22,30.01,30,29.92,10,10,10,14,1,14,0,0,'',340,94041); +INSERT INTO "weather" VALUES('12/21/2013',60,47,37,47,36,26,76,66,54,30.08,30.04,29.96,10,10,10,14,2,14,0,0,'',358,94041); +INSERT INTO "weather" VALUES('12/22/2013',65,50,38,45,37,32,85,65,40,30.28,30.21,30.08,10,8,0,14,1,14,0,1,'',316,94041); +INSERT INTO "weather" VALUES('12/23/2013',62,48,39,44,37,31,79,67,50,30.38,30.36,30.28,10,10,7,14,1,114,0,0,'',329,94041); +INSERT INTO "weather" VALUES('12/24/2013',68,50,38,46,38,32,80,65,43,30.34,30.28,30.19,10,9,7,14,1,14,0,0,'',292,94041); +INSERT INTO "weather" VALUES('12/25/2013',63,48,36,44,36,29,80,66,48,30.3,30.26,30.18,10,10,10,14,1,14,0,0,'',314,94041); +INSERT INTO "weather" VALUES('12/26/2013',66,49,36,45,37,29,80,66,43,30.26,30.23,30.14,10,10,8,14,1,14,0,0,'',335,94041); +INSERT INTO "weather" VALUES('12/27/2013',59,46,36,44,37,29,79,69,54,30.23,30.2,30.11,10,8,5,14,1,14,0,0,'',350,94041); +INSERT INTO "weather" VALUES('12/28/2013',64,47,35,41,34,29,83,62,38,30.15,30.11,30.02,10,9,6,14,2,14,0,0,'',331,94041); +INSERT INTO "weather" VALUES('12/29/2013',66,49,37,34,30,27,67,52,28,30.17,30.14,30.08,10,10,10,14,1,14,0,0,'',299,94041); +INSERT INTO "weather" VALUES('12/30/2013',63,47,35,39,32,26,72,59,38,30.25,30.24,30.17,10,10,8,14,1,14,0,0,'',343,94041); +INSERT INTO "weather" VALUES('12/31/2013',58,46,38,43,36,29,81,70,54,30.28,30.24,30.14,10,4,0,14,1,14,0,4,'Fog',317,94041); +INSERT INTO "weather" VALUES('1/1/2014',59,46,34,44,36,28,80,69,53,30.22,30.19,30.11,10,8,6,14,2,14,0,0,'',348,94041); +INSERT INTO "weather" VALUES('1/2/2014',64,48,37,43,36,30,81,64,41,30.17,30.13,30.04,10,10,8,14,1,14,0,0,'',352,94041); +INSERT INTO "weather" VALUES('1/3/2014',62,49,39,43,37,31,76,65,44,30.07,30.03,29.95,10,10,8,14,1,14,0,0,'',359,94041); +INSERT INTO "weather" VALUES('1/4/2014',64,49,39,46,36,28,84,63,40,30.08,30.04,29.97,10,10,7,14,1,14,0,0,'',298,94041); +INSERT INTO "weather" VALUES('1/5/2014',64,47,34,39,31,24,68,55,37,30.21,30.17,30.07,10,10,10,14,2,28,0,0,'',343,94041); +INSERT INTO "weather" VALUES('1/6/2014',60,48,38,42,36,29,74,64,48,30.29,30.23,30.15,10,10,9,14,1,14,0,0,'',355,94041); +INSERT INTO "weather" VALUES('1/7/2014',61,50,43,46,40,35,76,68,52,30.22,30.19,30.12,10,9,6,14,1,14,0,2,'',334,94041); +INSERT INTO "weather" VALUES('1/8/2014',59,52,45,49,45,38,84,77,71,30.23,30.22,30.15,10,8,2,14,2,14,0,3,'',348,94041); +INSERT INTO "weather" VALUES('1/9/2014',60,50,44,50,42,38,86,76,58,30.27,30.25,30.18,10,9,2,14,2,114,0,3,'',258,94041); +INSERT INTO "weather" VALUES('1/10/2014',63,49,40,50,41,34,86,74,57,30.31,30.26,30.17,10,10,8,14,1,14,0,2,'',350,94041); +INSERT INTO "weather" VALUES('1/11/2014',59,49,43,50,42,37,86,77,69,30.29,30.24,30.15,10,10,8,20,1,20,0,3,'',261,94041); +INSERT INTO "weather" VALUES('1/12/2014',59,48,41,45,39,34,84,71,53,30.4,30.34,30.27,10,10,9,15,3,15,0,2,'',293,94041); +INSERT INTO "weather" VALUES('1/13/2014',67,51,41,43,36,32,76,59,38,30.46,30.41,30.34,10,10,10,14,6,14,0,0,'',320,94041); +INSERT INTO "weather" VALUES('1/14/2014',71,54,41,38,33,29,71,49,25,30.45,30.39,30.31,10,10,10,14,6,28,0,0,'',322,94041); +INSERT INTO "weather" VALUES('1/15/2014',70,52,40,41,34,29,69,51,33,30.34,30.28,30.19,10,10,8,28,4,28,0,0,'',320,94041); +INSERT INTO "weather" VALUES('1/16/2014',70,52,38,42,34,28,70,53,33,30.23,30.19,30.1,10,10,10,28,4,28,0,0,'',332,94041); +INSERT INTO "weather" VALUES('1/17/2014',68,50,37,44,35,27,74,58,38,30.19,30.16,30.09,10,9,7,28,6,28,0,0,'',360,94041); +INSERT INTO "weather" VALUES('1/18/2014',69,49,36,43,34,28,73,57,34,30.17,30.13,30.05,10,10,8,14,4,28,0,0,'',327,94041); +INSERT INTO "weather" VALUES('1/19/2014',68,48,35,43,34,26,72,58,33,30.14,30.11,30.04,10,10,7,14,5,28,0,0,'',340,94041); +INSERT INTO "weather" VALUES('1/20/2014',69,50,36,40,34,28,77,57,32,30.22,30.18,30.11,10,10,8,14,4,28,0,0,'',352,94041); +INSERT INTO "weather" VALUES('1/21/2014',68,49,36,42,34,27,74,57,34,30.27,30.23,30.15,10,10,10,14,5,14,0,0,'',357,94041); +INSERT INTO "weather" VALUES('1/22/2014',71,50,36,44,34,26,70,56,26,30.17,30.06,29.92,10,10,9,14,5,14,0,0,'',346,94041); +INSERT INTO "weather" VALUES('1/23/2014',66,51,38,39,34,30,78,55,34,30.01,29.94,29.85,10,9,6,14,5,14,0,0,'',336,94041); +INSERT INTO "weather" VALUES('1/24/2014',64,50,39,44,37,30,75,61,45,30.27,30.18,30,10,7,2,14,6,28,0,0,'',350,94041); +INSERT INTO "weather" VALUES('1/25/2014',72,54,43,45,38,33,76,57,31,30.27,30.21,30.11,10,10,7,14,3,28,0,0,'',343,94041); +INSERT INTO "weather" VALUES('1/26/2014',70,54,44,45,39,32,75,59,37,30.13,30.11,30.01,10,10,9,14,3,14,0,0,'',333,94041); +INSERT INTO "weather" VALUES('1/27/2014',62,53,47,48,45,40,83,74,58,30.2,30.16,30.08,10,5,0,14,3,14,0,3,'',264,94041); +INSERT INTO "weather" VALUES('1/28/2014',66,57,48,56,50,42,82,76,66,30.26,30.23,30.17,10,10,6,14,4,14,0,4,'',347,94041); +INSERT INTO "weather" VALUES('1/29/2014',68,60,56,58,54,48,86,80,69,30.21,30.13,29.98,10,9,4,14,2,14,0,3,'',356,94041); +INSERT INTO "weather" VALUES('1/30/2014',64,56,52,49,46,42,82,70,51,29.98,29.93,29.85,10,10,7,14,3,14,0.04,5,'Rain',299,94041); +INSERT INTO "weather" VALUES('1/31/2014',61,51,42,45,38,33,82,63,37,30.09,30.05,29.91,10,10,10,15,6,19,0,2,'',322,94041); +INSERT INTO "weather" VALUES('2/1/2014',60,47,36,39,34,29,78,61,38,30.17,30.14,30.08,10,10,10,14,6,114,0,0,'',333,94041); +INSERT INTO "weather" VALUES('2/2/2014',54,48,43,43,39,34,79,71,64,30.08,29.95,29.84,10,10,7,23,7,114,0.08,5,'Rain',149,94041); +INSERT INTO "weather" VALUES('2/3/2014',57,48,41,43,38,33,80,70,52,30.08,30.06,29.98,10,10,10,16,3,18,0,2,'',315,94041); +INSERT INTO "weather" VALUES('2/4/2014',56,46,38,41,36,31,79,68,55,30.17,30.14,30.07,10,10,10,14,2,14,0,0,'',332,94041); +INSERT INTO "weather" VALUES('2/5/2014',58,47,36,42,37,29,80,69,55,30.21,30.17,30.06,10,10,10,14,3,14,0,4,'',43,94041); +INSERT INTO "weather" VALUES('2/6/2014',56,51,46,47,44,41,84,78,70,30.06,29.98,29.88,10,10,7,21,5,86,0.45,8,'Rain',131,94041); +INSERT INTO "weather" VALUES('2/7/2014',55,53,49,49,46,44,84,80,76,30.09,30.07,29.98,10,10,10,20,5,24,0.04,6,'Rain',140,94041); +INSERT INTO "weather" VALUES('2/8/2014',65,59,54,56,51,48,85,76,69,30.16,30.14,30.06,10,10,10,20,7,25,0.04,7,'Rain',148,94041); +INSERT INTO "weather" VALUES('2/9/2014',67,60,58,55,53,51,80,76,62,30.17,30.14,30.07,10,10,9,14,4,16,0.02,7,'Rain',156,94041); +INSERT INTO "weather" VALUES('2/10/2014',61,56,51,53,50,46,85,79,70,30.28,30.24,30.11,10,9,2,14,2,14,0,6,'',340,94041); +INSERT INTO "weather" VALUES('2/11/2014',62,54,48,50,47,42,86,77,64,30.25,30.24,30.16,10,7,0,10,1,14,0,4,'Fog',328,94041); +INSERT INTO "weather" VALUES('2/12/2014',63,54,47,50,46,42,82,75,62,30.29,30.25,30.17,10,9,5,14,2,14,0,3,'',335,94041); +INSERT INTO "weather" VALUES('2/13/2014',70,58,48,58,50,43,86,77,62,30.22,30.18,30.09,10,8,0,114,2,114,0,3,'Fog',351,94041); +INSERT INTO "weather" VALUES('2/14/2014',64,58,50,55,51,44,88,78,64,30.17,30.14,30.06,10,8,2,14,2,15,0,7,'',327,94041); +INSERT INTO "weather" VALUES('2/15/2014',62,55,47,53,48,42,86,78,71,30.06,30.04,29.96,10,10,10,14,1,14,0,2,'',132,94041); +INSERT INTO "weather" VALUES('2/16/2014',64,56,47,51,42,36,83,63,40,30.21,30.14,30.04,10,10,4,14,4,14,0.02,2,'Rain',311,94041); +INSERT INTO "weather" VALUES('2/17/2014',62,50,40,45,40,33,82,67,52,30.18,30.17,30.1,10,10,10,14,5,15,0,0,'',334,94041); +INSERT INTO "weather" VALUES('2/18/2014',66,53,42,49,43,36,84,69,49,30.2,30.17,30.09,10,10,10,14,5,16,0,0,'',348,94041); +INSERT INTO "weather" VALUES('2/19/2014',67,56,48,48,44,39,83,66,45,30.21,30.17,30.09,10,10,4,114,6,114,0.02,3,'Rain',315,94041); +INSERT INTO "weather" VALUES('2/20/2014',69,54,42,45,39,35,80,60,36,30.2,30.18,30.1,10,10,10,14,4,14,0,0,'',310,94041); +INSERT INTO "weather" VALUES('2/21/2014',73,55,41,47,41,34,80,60,33,30.12,30.07,29.97,10,10,10,14,2,14,0,0,'',342,94041); +INSERT INTO "weather" VALUES('2/22/2014',71,55,43,50,43,35,81,66,39,30.02,30,29.9,10,10,10,14,2,14,0,0,'',338,94041); +INSERT INTO "weather" VALUES('2/23/2014',70,56,46,52,45,40,80,70,45,30.03,30.01,29.93,10,9,7,14,2,14,0,3,'',337,94041); +INSERT INTO "weather" VALUES('2/24/2014',75,57,42,51,44,35,85,64,36,30,29.97,29.87,10,10,10,14,3,14,0,0,'',344,94041); +INSERT INTO "weather" VALUES('2/25/2014',66,56,47,51,46,40,80,70,58,29.98,29.96,29.88,10,9,7,14,4,17,0,2,'',44,94041); +INSERT INTO "weather" VALUES('2/26/2014',62,56,53,53,50,45,86,78,69,29.95,29.85,29.67,10,8,2,28,8,86,0.78,7,'Rain',133,94041); +INSERT INTO "weather" VALUES('2/27/2014',69,60,52,52,48,45,84,67,49,29.89,29.8,29.49,10,10,8,28,10,28,0.02,3,'Rain',153,94041); +INSERT INTO "weather" VALUES('2/28/2014',62,56,53,52,49,45,85,77,57,29.5,29.44,29.36,10,8,2,20,6,86,0.88,7,'Rain',143,94041); +INSERT INTO "weather" VALUES('8/29/2013',81,72,63,62,61,59,87,69,51,30.06,30.02,29.96,10,10,10,16,7,24,0,4,'',320,95113); +INSERT INTO "weather" VALUES('8/30/2013',88,76,63,63,60,55,93,65,37,30.05,30.01,29.93,10,10,10,18,5,22,0,2,'',316,95113); +INSERT INTO "weather" VALUES('8/31/2013',80,71,62,59,57,54,90,66,42,29.99,29.95,29.91,10,10,10,18,8,22,0,0,'',309,95113); +INSERT INTO "weather" VALUES('9/1/2013',81,72,62,61,57,51,84,62,39,29.96,29.93,29.88,10,10,10,20,7,24,0,2,'',308,95113); +INSERT INTO "weather" VALUES('9/2/2013',79,73,66,62,61,59,81,68,54,29.97,29.93,29.89,10,10,10,21,8,25,'T',5,'Rain',315,95113); +INSERT INTO "weather" VALUES('9/3/2013',80,70,60,60,55,46,84,58,32,30.01,29.98,29.94,10,10,10,18,8,24,0,1,'',323,95113); +INSERT INTO "weather" VALUES('9/4/2013',79,69,59,58,55,51,84,62,40,30.05,30.01,29.96,10,10,10,22,8,29,0,1,'',322,95113); +INSERT INTO "weather" VALUES('9/5/2013',78,68,58,56,54,52,80,60,40,30.03,30,29.97,10,10,10,23,8,30,0,1,'',329,95113); +INSERT INTO "weather" VALUES('9/6/2013',89,72,54,56,52,48,78,54,29,30.01,29.91,29.82,10,10,10,17,5,22,0,0,'',302,95113); +INSERT INTO "weather" VALUES('9/7/2013',95,78,61,61,50,43,73,45,17,29.87,29.84,29.79,10,10,10,18,6,22,0,0,'',297,95113); +INSERT INTO "weather" VALUES('9/8/2013',88,74,60,61,57,48,90,59,27,29.88,29.83,29.75,10,10,10,13,5,15,0,0,'',301,95113); +INSERT INTO "weather" VALUES('9/9/2013',88,75,62,60,57,52,90,60,30,29.82,29.77,29.71,10,10,10,16,5,21,0,1,'',298,95113); +INSERT INTO "weather" VALUES('9/10/2013',82,70,58,60,55,53,87,65,42,29.9,29.81,29.75,10,10,10,16,7,24,0,2,'',142,95113); +INSERT INTO "weather" VALUES('9/11/2013',77,68,59,58,55,53,84,65,46,30,29.96,29.9,10,10,10,17,8,21,0,4,'',12,95113); +INSERT INTO "weather" VALUES('9/12/2013',76,69,62,59,58,57,84,71,57,29.98,29.95,29.9,10,10,8,18,6,22,0,5,'',311,95113); +INSERT INTO "weather" VALUES('9/13/2013',74,67,59,58,56,55,87,72,57,29.91,29.87,29.8,10,10,10,18,8,21,0,4,'',313,95113); +INSERT INTO "weather" VALUES('9/14/2013',72,66,59,56,55,54,87,72,57,29.85,29.82,29.77,10,10,10,14,8,18,0,4,'',327,95113); +INSERT INTO "weather" VALUES('9/15/2013',78,68,58,59,55,52,90,68,45,29.88,29.85,29.82,10,10,10,18,8,24,0,3,'',317,95113); +INSERT INTO "weather" VALUES('9/16/2013',79,71,62,59,57,53,90,68,45,29.91,29.87,29.81,10,10,10,22,8,28,0,4,'',310,95113); +INSERT INTO "weather" VALUES('9/17/2013',75,66,56,54,52,46,80,58,36,29.9,29.89,29.87,10,10,10,25,8,30,'T',1,'',309,95113); +INSERT INTO "weather" VALUES('9/18/2013',83,69,55,53,49,43,83,54,24,29.92,29.87,29.82,10,10,10,20,6,23,0,0,'',299,95113); +INSERT INTO "weather" VALUES('9/19/2013',87,71,54,50,46,37,77,48,18,29.86,29.81,29.75,10,10,10,18,6,22,0,0,'',294,95113); +INSERT INTO "weather" VALUES('9/20/2013',76,66,56,58,54,49,80,65,50,29.88,29.84,29.79,10,10,10,18,7,28,0,2,'',309,95113); +INSERT INTO "weather" VALUES('9/21/2013',70,64,57,61,57,53,100,79,57,29.91,29.85,29.82,10,8,1,20,7,28,0.66,6,'Rain',194,95113); +INSERT INTO "weather" VALUES('9/22/2013',72,63,53,55,52,47,93,69,44,30.02,29.96,29.92,10,10,10,22,7,25,0,2,'',287,95113); +INSERT INTO "weather" VALUES('9/23/2013',80,67,54,61,54,51,86,63,39,30.03,29.98,29.93,10,10,10,20,6,25,0,0,'',321,95113); +INSERT INTO "weather" VALUES('9/24/2013',75,67,58,58,52,46,93,66,38,30.01,29.97,29.94,10,10,10,25,10,30,0,1,'',301,95113); +INSERT INTO "weather" VALUES('9/25/2013',70,63,55,50,45,41,77,57,37,29.95,29.9,29.85,10,10,10,24,12,29,0,1,'',287,95113); +INSERT INTO "weather" VALUES('9/26/2013',74,63,51,50,42,31,77,50,22,29.99,29.91,29.85,10,10,10,18,8,23,0,0,'',298,95113); +INSERT INTO "weather" VALUES('9/27/2013',78,64,49,45,40,33,80,50,20,30.1,30.05,30,10,10,9,18,5,23,0,0,'',311,95113); +INSERT INTO "weather" VALUES('9/28/2013',82,67,51,57,42,30,90,53,16,30.1,30.05,29.99,10,10,10,21,6,24,0,1,'',335,95113); +INSERT INTO "weather" VALUES('9/29/2013',77,66,54,61,56,53,93,70,46,30.12,30.09,30.05,10,10,10,16,6,21,0,2,'',306,95113); +INSERT INTO "weather" VALUES('9/30/2013',77,67,57,61,57,42,100,74,48,30.08,30.04,29.97,10,10,10,16,7,24,0,3,'',334,95113); +INSERT INTO "weather" VALUES('10/1/2013',72,63,53,53,46,40,78,58,38,30.03,29.98,29.93,10,10,10,17,5,22,0,3,'',319,95113); +INSERT INTO "weather" VALUES('10/2/2013',76,64,52,53,47,43,83,57,31,30.02,29.97,29.94,10,10,10,21,6,24,0,1,'',313,95113); +INSERT INTO "weather" VALUES('10/3/2013',73,62,51,47,38,31,72,46,20,30.07,30.01,29.95,10,10,10,23,10,28,0,0,'',279,95113); +INSERT INTO "weather" VALUES('10/4/2013',82,70,58,33,26,23,37,25,13,30.1,30.03,29.96,10,10,10,18,6,28,0,0,'',320,95113); +INSERT INTO "weather" VALUES('10/5/2013',85,67,49,37,31,24,50,31,11,30.2,30.13,30.09,10,10,10,13,3,15,0,0,'',251,95113); +INSERT INTO "weather" VALUES('10/6/2013',83,67,51,40,34,29,50,32,14,30.12,30.06,30,10,10,10,13,4,15,0,4,'',299,95113); +INSERT INTO "weather" VALUES('10/7/2013',81,68,54,47,36,24,62,38,13,30,29.94,29.88,10,10,10,17,5,20,0,2,'',307,95113); +INSERT INTO "weather" VALUES('10/8/2013',75,63,51,49,44,39,83,56,29,29.91,29.84,29.75,10,10,10,16,6,26,0,2,'',302,95113); +INSERT INTO "weather" VALUES('10/9/2013',68,59,50,48,45,41,89,66,42,29.76,29.69,29.65,10,10,9,14,6,20,0,2,'',126,95113); +INSERT INTO "weather" VALUES('10/10/2013',74,62,50,51,46,37,86,59,31,30.02,29.9,29.78,10,10,10,16,7,'',0,1,'',166,95113); +INSERT INTO "weather" VALUES('10/11/2013',67,58,48,51,49,46,93,73,52,30.09,30.04,29.99,10,10,7,16,5,18,0,0,'',209,95113); +INSERT INTO "weather" VALUES('10/12/2013',71,59,46,50,46,42,96,68,40,30.02,29.98,29.92,10,10,9,18,5,24,0,1,'',327,95113); +INSERT INTO "weather" VALUES('10/13/2013',73,60,47,47,44,41,93,64,34,30.07,30,29.95,10,10,10,18,6,23,0,1,'',226,95113); +INSERT INTO "weather" VALUES('10/14/2013',78,63,48,45,41,35,77,50,22,30.12,30.06,29.99,10,10,10,13,4,'',0,0,'',288,95113); +INSERT INTO "weather" VALUES('10/15/2013',79,63,47,44,37,30,66,43,19,30.04,30,29.94,10,10,10,17,5,21,0,0,'',292,95113); +INSERT INTO "weather" VALUES('10/16/2013',82,66,50,42,36,33,59,39,18,30.09,30.04,30.01,10,10,10,15,3,17,0,1,'',302,95113); +INSERT INTO "weather" VALUES('10/17/2013',80,65,49,45,36,30,61,39,16,30.08,30.03,29.96,10,10,10,15,4,17,0,0,'',285,95113); +INSERT INTO "weather" VALUES('10/18/2013',78,64,49,53,42,34,86,54,21,30.06,30.02,29.98,10,10,10,12,3,14,0,0,'',295,95113); +INSERT INTO "weather" VALUES('10/19/2013',78,64,49,54,48,44,83,57,30,30.09,30.03,29.99,10,10,9,10,2,15,0,0,'',295,95113); +INSERT INTO "weather" VALUES('10/20/2013',74,62,50,54,51,43,100,67,33,30.03,29.99,29.91,10,7,2,10,3,13,0,3,'',302,95113); +INSERT INTO "weather" VALUES('10/21/2013',70,61,51,55,52,49,100,74,47,30.01,29.97,29.92,10,7,2,9,3,14,0,3,'',296,95113); +INSERT INTO "weather" VALUES('10/22/2013',72,62,51,55,52,49,100,72,44,30.03,29.99,29.92,10,7,2,10,3,13,0,4,'',298,95113); +INSERT INTO "weather" VALUES('10/23/2013',67,60,52,53,52,51,100,82,63,29.99,29.95,29.91,10,5,1,13,4,15,0,5,'',310,95113); +INSERT INTO "weather" VALUES('10/24/2013',60,55,50,52,50,47,100,84,67,30.12,30.05,29.99,10,6,2,10,2,13,0,5,'',302,95113); +INSERT INTO "weather" VALUES('10/25/2013',69,58,47,53,49,46,93,69,45,30.18,30.13,30.09,10,8,3,10,2,13,0,5,'',302,95113); +INSERT INTO "weather" VALUES('10/26/2013',75,61,46,52,48,44,93,66,38,30.16,30.09,30.02,10,10,9,12,2,17,0,1,'',288,95113); +INSERT INTO "weather" VALUES('10/27/2013',63,57,50,52,48,45,100,78,55,30.04,29.91,29.74,10,9,4,28,8,35,0,5,'',287,95113); +INSERT INTO "weather" VALUES('10/28/2013',64,59,53,47,44,40,77,60,43,29.87,29.75,29.7,10,10,9,20,8,25,0,6,'',256,95113); +INSERT INTO "weather" VALUES('10/29/2013',63,56,49,49,46,44,89,71,52,30.06,29.97,29.88,10,10,10,14,6,17,0,4,'',158,95113); +INSERT INTO "weather" VALUES('10/30/2013',67,56,44,48,44,41,92,67,42,30.16,30.11,30.07,10,10,10,17,5,22,0,1,'',260,95113); +INSERT INTO "weather" VALUES('10/31/2013',72,58,44,46,43,40,93,62,31,30.18,30.12,30.06,10,10,10,9,4,'',0,0,'',284,95113); +INSERT INTO "weather" VALUES('11/1/2013',77,61,44,49,42,36,80,52,23,30.14,30.08,30.01,10,10,10,10,2,12,0,0,'',309,95113); +INSERT INTO "weather" VALUES('11/2/2013',69,57,45,52,45,39,83,62,40,30.04,29.98,29.94,10,10,10,16,6,23,0,2,'',324,95113); +INSERT INTO "weather" VALUES('11/3/2013',64,55,45,47,39,26,93,59,25,30.05,29.98,29.93,10,10,10,21,7,23,0,4,'',290,95113); +INSERT INTO "weather" VALUES('11/4/2013',67,54,40,40,36,26,83,53,22,30.07,29.99,29.93,10,10,10,17,6,22,0,0,'',291,95113); +INSERT INTO "weather" VALUES('11/5/2013',72,58,44,40,34,29,76,49,22,30.22,30.15,30.08,10,10,10,15,6,21,0,1,'',286,95113); +INSERT INTO "weather" VALUES('11/6/2013',74,60,46,39,36,32,65,44,22,30.26,30.2,30.16,10,10,10,9,2,13,0,4,'',226,95113); +INSERT INTO "weather" VALUES('11/7/2013',74,62,50,52,41,31,80,50,20,30.17,30.12,30.08,10,10,9,16,3,17,0,2,'',298,95113); +INSERT INTO "weather" VALUES('11/8/2013',70,58,46,51,47,43,100,72,44,30.1,30.05,29.97,10,9,6,13,3,15,0,2,'',309,95113); +INSERT INTO "weather" VALUES('11/9/2013',77,61,44,51,45,30,93,56,18,30.04,30,29.96,10,10,10,14,3,16,0,1,'',252,95113); +INSERT INTO "weather" VALUES('11/10/2013',65,55,45,51,47,45,100,76,52,30.13,30.1,30.04,10,5,0,12,4,14,0,3,'Fog',123,95113); +INSERT INTO "weather" VALUES('11/11/2013',66,59,52,53,49,47,96,74,52,30.17,30.12,30.08,9,7,3,7,2,16,0,7,'',316,95113); +INSERT INTO "weather" VALUES('11/12/2013',71,62,53,54,49,43,86,61,35,30.26,30.23,30.16,10,10,7,13,3,16,0,3,'',318,95113); +INSERT INTO "weather" VALUES('11/13/2013',74,60,46,54,49,43,93,63,33,30.26,30.18,30.11,10,10,10,12,3,13,0,3,'',292,95113); +INSERT INTO "weather" VALUES('11/14/2013',64,57,49,54,51,46,100,84,67,30.12,30.03,29.91,10,6,1,14,4,16,0,6,'',317,95113); +INSERT INTO "weather" VALUES('11/15/2013',65,55,44,47,43,36,93,64,34,29.9,29.82,29.74,10,10,10,15,4,18,0,1,'',298,95113); +INSERT INTO "weather" VALUES('11/16/2013',63,52,40,50,44,37,92,66,39,29.94,29.87,29.8,10,10,10,17,6,22,0,2,'',114,95113); +INSERT INTO "weather" VALUES('11/17/2013',63,54,45,48,46,43,93,73,52,30.1,30.03,29.94,10,10,10,13,4,15,0,3,'',225,95113); +INSERT INTO "weather" VALUES('11/18/2013',61,53,44,47,44,42,92,72,51,30.15,30.12,30.09,10,10,10,13,5,16,0,5,'',339,95113); +INSERT INTO "weather" VALUES('11/19/2013',65,57,48,56,50,45,100,78,56,30.11,30.03,29.96,10,9,4,13,8,15,0.29,7,'Rain',132,95113); +INSERT INTO "weather" VALUES('11/20/2013',63,58,53,57,55,51,100,89,78,29.95,29.9,29.86,10,9,1,23,9,29,0.47,7,'Rain',301,95113); +INSERT INTO "weather" VALUES('11/21/2013',62,56,50,52,41,23,100,63,25,30,29.93,29.91,10,9,2,18,8,28,0.01,5,'Rain',310,95113); +INSERT INTO "weather" VALUES('11/22/2013',69,58,47,32,22,15,50,31,12,30.04,29.97,29.9,10,10,10,18,7,22,0,2,'',303,95113); +INSERT INTO "weather" VALUES('11/23/2013',66,53,40,44,35,29,74,50,26,30.12,30.04,29.98,10,10,10,9,2,12,0,0,'',197,95113); +INSERT INTO "weather" VALUES('11/24/2013',65,53,41,41,39,36,89,62,34,30.26,30.18,30.12,10,10,10,10,3,13,0,0,'',281,95113); +INSERT INTO "weather" VALUES('11/25/2013',65,53,40,44,41,38,89,64,39,30.33,30.28,30.25,10,10,8,9,2,12,0,1,'',354,95113); +INSERT INTO "weather" VALUES('11/26/2013',63,53,43,44,42,39,89,66,43,30.26,30.16,30.04,10,10,8,8,1,12,0,5,'',236,95113); +INSERT INTO "weather" VALUES('11/27/2013',65,54,43,45,43,41,92,68,44,30.02,29.91,29.84,10,9,6,10,2,13,0,4,'',284,95113); +INSERT INTO "weather" VALUES('11/28/2013',68,57,45,46,43,40,86,62,37,30.09,29.96,29.88,10,9,6,9,3,12,0,2,'',325,95113); +INSERT INTO "weather" VALUES('11/29/2013',71,57,43,45,41,39,86,60,33,30.23,30.15,30.09,10,10,10,12,2,13,0,0,'',285,95113); +INSERT INTO "weather" VALUES('11/30/2013',65,53,41,44,42,38,89,67,44,30.27,30.24,30.19,10,10,10,10,3,13,0,1,'',328,95113); +INSERT INTO "weather" VALUES('12/1/2013',67,55,42,45,42,39,89,65,40,30.34,30.27,30.22,10,10,9,12,3,17,0,0,'',317,95113); +INSERT INTO "weather" VALUES('12/2/2013',64,53,42,52,46,40,93,77,60,30.22,30.1,30,10,10,10,18,4,22,0,4,'',309,95113); +INSERT INTO "weather" VALUES('12/3/2013',55,49,42,54,41,21,100,70,40,29.97,29.92,29.86,10,9,2,21,10,28,'T',5,'Rain',300,95113); +INSERT INTO "weather" VALUES('12/4/2013',52,43,34,31,24,15,82,53,24,30.09,30.03,29.95,10,10,10,12,4,24,0,0,'',264,95113); +INSERT INTO "weather" VALUES('12/5/2013',52,41,29,25,20,14,78,50,22,30.18,30.14,30.09,10,10,10,10,3,13,0,0,'',219,95113); +INSERT INTO "weather" VALUES('12/6/2013',54,42,30,45,29,20,86,61,35,30.2,30.12,29.94,10,10,8,15,6,18,0.04,5,'Rain',130,95113); +INSERT INTO "weather" VALUES('12/7/2013',49,42,35,47,31,25,93,66,39,30.25,30.11,29.93,10,10,6,25,10,31,0.09,2,'Rain',284,95113); +INSERT INTO "weather" VALUES('12/8/2013',47,39,31,30,23,14,82,57,31,30.33,30.27,30.22,10,10,10,14,4,20,0,2,'',316,95113); +INSERT INTO "weather" VALUES('12/9/2013',51,38,25,23,20,13,75,48,21,30.42,30.37,30.32,10,10,10,9,3,10,0,0,'',149,95113); +INSERT INTO "weather" VALUES('12/10/2013',53,41,28,29,25,22,78,55,32,30.4,30.29,30.21,10,10,10,7,1,8,0,1,'',139,95113); +INSERT INTO "weather" VALUES('12/11/2013',57,44,31,31,28,25,75,53,30,30.25,30.21,30.17,10,10,10,10,1,12,0,0,'',177,95113); +INSERT INTO "weather" VALUES('12/12/2013',59,44,29,34,30,26,82,58,33,30.27,30.22,30.17,10,10,7,8,1,8,0,1,'',321,95113); +INSERT INTO "weather" VALUES('12/13/2013',59,47,34,42,35,30,89,65,40,30.35,30.29,30.25,10,9,7,10,2,13,0,2,'',88,95113); +INSERT INTO "weather" VALUES('12/14/2013',62,48,34,36,34,31,89,63,36,30.4,30.35,30.31,10,10,10,9,1,12,0,0,'',244,95113); +INSERT INTO "weather" VALUES('12/15/2013',62,47,31,37,34,31,92,64,36,30.36,30.3,30.24,10,9,7,7,1,8,0,3,'',285,95113); +INSERT INTO "weather" VALUES('12/16/2013',67,52,37,37,34,30,85,57,28,30.23,30.17,30.12,10,10,9,6,1,10,0,4,'',126,95113); +INSERT INTO "weather" VALUES('12/17/2013',65,53,40,40,36,34,73,54,34,30.18,30.11,30.04,10,7,3,8,1,9,0,5,'',223,95113); +INSERT INTO "weather" VALUES('12/18/2013',62,53,44,46,42,38,93,68,42,30.03,29.91,29.81,10,8,6,14,3,18,0,4,'',323,95113); +INSERT INTO "weather" VALUES('12/19/2013',58,50,42,42,36,23,96,66,36,29.94,29.82,29.75,10,10,9,18,7,21,0,3,'',288,95113); +INSERT INTO "weather" VALUES('12/20/2013',60,48,35,25,16,2,64,37,9,30.01,29.98,29.94,10,10,10,13,3,16,0,1,'',287,95113); +INSERT INTO "weather" VALUES('12/21/2013',60,48,36,47,36,20,86,63,39,30.09,30.03,29.98,10,10,10,14,3,17,0,0,'',303,95113); +INSERT INTO "weather" VALUES('12/22/2013',67,52,37,42,38,33,96,63,29,30.29,30.2,30.09,10,10,10,15,3,17,0,0,'',307,95113); +INSERT INTO "weather" VALUES('12/23/2013',63,51,38,40,37,35,85,62,39,30.38,30.34,30.29,10,10,8,10,2,12,0,0,'',291,95113); +INSERT INTO "weather" VALUES('12/24/2013',70,54,38,39,37,35,86,59,31,30.35,30.27,30.2,10,10,9,10,3,13,0,1,'',282,95113); +INSERT INTO "weather" VALUES('12/25/2013',67,52,37,39,36,31,85,59,32,30.3,30.24,30.19,10,10,10,7,2,8,0,0,'',166,95113); +INSERT INTO "weather" VALUES('12/26/2013',69,53,37,40,36,33,85,57,29,30.26,30.22,30.16,10,10,10,7,2,9,0,0,'',146,95113); +INSERT INTO "weather" VALUES('12/27/2013',60,48,36,40,37,32,89,67,44,30.24,30.18,30.12,10,9,7,14,1,15,0,4,'',16,95113); +INSERT INTO "weather" VALUES('12/28/2013',66,51,35,39,34,28,92,59,26,30.15,30.09,30.03,10,9,7,13,3,15,0,0,'',321,95113); +INSERT INTO "weather" VALUES('12/29/2013',67,52,36,31,27,19,76,47,18,30.17,30.13,30.09,10,10,10,7,2,10,0,0,'',233,95113); +INSERT INTO "weather" VALUES('12/30/2013',66,50,34,35,31,27,75,50,24,30.26,30.22,30.18,10,10,9,7,2,'',0,3,'',74,95113); +INSERT INTO "weather" VALUES('12/31/2013',59,48,37,43,38,29,100,72,44,30.28,30.23,30.16,10,4,0,15,2,16,0,4,'Fog',137,95113); +INSERT INTO "weather" VALUES('1/1/2014',62,49,35,36,34,32,89,62,34,30.22,30.17,30.12,10,8,6,8,1,10,0,2,'',310,95113); +INSERT INTO "weather" VALUES('1/2/2014',65,52,38,38,34,32,82,57,31,30.18,30.11,30.06,10,10,9,8,1,13,0,2,'',259,95113); +INSERT INTO "weather" VALUES('1/3/2014',64,52,40,37,35,32,76,53,30,30.07,30.02,29.96,10,10,10,8,2,10,0,3,'',354,95113); +INSERT INTO "weather" VALUES('1/4/2014',66,52,38,44,36,29,82,57,32,30.08,30.02,29.98,10,10,10,8,3,12,0,1,'',227,95113); +INSERT INTO "weather" VALUES('1/5/2014',66,51,35,33,28,22,70,45,19,30.21,30.15,30.09,10,10,10,6,1,8,0,0,'',125,95113); +INSERT INTO "weather" VALUES('1/6/2014',62,50,38,37,34,30,70,53,36,30.28,30.21,30.16,10,10,10,9,1,12,0,5,'',290,95113); +INSERT INTO "weather" VALUES('1/7/2014',63,54,44,44,39,35,80,58,36,30.22,30.18,30.13,10,10,8,10,3,12,0,4,'',235,95113); +INSERT INTO "weather" VALUES('1/8/2014',58,54,50,50,47,43,96,82,67,30.23,30.2,30.16,10,8,2,14,5,16,'T',7,'Rain',309,95113); +INSERT INTO "weather" VALUES('1/9/2014',59,53,46,52,46,42,96,79,61,30.27,30.23,30.2,10,8,1,18,4,21,0.01,6,'Rain',303,95113); +INSERT INTO "weather" VALUES('1/10/2014',62,52,41,48,43,37,86,69,52,30.31,30.24,30.18,10,10,10,8,2,13,0,3,'',297,95113); +INSERT INTO "weather" VALUES('1/11/2014',59,51,43,50,44,40,93,78,62,30.3,30.23,30.17,10,10,10,20,3,24,0,4,'',349,95113); +INSERT INTO "weather" VALUES('1/12/2014',60,52,43,46,41,35,100,72,44,30.38,30.32,30.27,10,10,9,17,6,22,0,3,'',264,95113); +INSERT INTO "weather" VALUES('1/13/2014',68,56,43,35,33,31,70,48,26,30.46,30.39,30.34,10,10,10,9,3,14,0,0,'',236,95113); +INSERT INTO "weather" VALUES('1/14/2014',76,57,37,34,27,13,76,43,9,30.45,30.37,30.32,10,10,10,17,3,24,0,0,'',5,95113); +INSERT INTO "weather" VALUES('1/15/2014',71,55,39,34,29,25,53,37,20,30.34,30.27,30.2,10,10,10,9,2,12,0,0,'',154,95113); +INSERT INTO "weather" VALUES('1/16/2014',73,56,39,34,29,25,62,40,18,30.24,30.17,30.12,10,10,10,8,1,10,0,0,'',107,95113); +INSERT INTO "weather" VALUES('1/17/2014',69,54,39,38,32,29,60,42,24,30.19,30.14,30.11,10,10,9,8,2,10,0,0,'',272,95113); +INSERT INTO "weather" VALUES('1/18/2014',70,54,37,34,31,28,70,46,22,30.17,30.11,30.06,10,10,9,7,1,12,0,0,'',330,95113); +INSERT INTO "weather" VALUES('1/19/2014',69,53,36,36,31,27,64,43,22,30.14,30.09,30.05,10,10,8,8,1,14,0,1,'',310,95113); +INSERT INTO "weather" VALUES('1/20/2014',69,54,38,33,30,27,65,44,22,30.23,30.17,30.13,10,10,10,7,1,10,0,1,'',64,95113); +INSERT INTO "weather" VALUES('1/21/2014',68,53,37,37,31,27,70,47,24,30.27,30.21,30.16,10,10,10,8,2,10,0,3,'',237,95113); +INSERT INTO "weather" VALUES('1/22/2014',72,55,38,46,31,21,86,51,15,30.16,30.04,29.93,10,10,10,9,3,13,0,0,'',307,95113); +INSERT INTO "weather" VALUES('1/23/2014',67,54,40,37,32,29,80,52,24,30.01,29.92,29.87,10,10,7,13,2,14,0,0,'',208,95113); +INSERT INTO "weather" VALUES('1/24/2014',65,53,40,42,38,34,76,58,40,30.27,30.16,30.02,10,8,6,6,1,8,0,3,'',358,95113); +INSERT INTO "weather" VALUES('1/25/2014',71,58,44,42,37,32,76,50,24,30.27,30.19,30.13,10,10,9,7,2,12,0,1,'',298,95113); +INSERT INTO "weather" VALUES('1/26/2014',71,58,45,48,36,29,93,58,22,30.13,30.09,30.02,10,10,9,10,4,14,0,2,'',314,95113); +INSERT INTO "weather" VALUES('1/27/2014',64,55,46,50,47,43,100,74,48,30.21,30.14,30.08,10,5,0,10,2,13,0,7,'Fog',239,95113); +INSERT INTO "weather" VALUES('1/28/2014',67,58,48,59,51,45,93,73,52,30.27,30.22,30.19,10,9,3,16,4,22,0,7,'',305,95113); +INSERT INTO "weather" VALUES('1/29/2014',68,62,55,59,56,49,100,84,68,30.22,30.13,29.99,10,7,2,16,4,20,0.01,7,'Rain',312,95113); +INSERT INTO "weather" VALUES('1/30/2014',60,56,51,50,47,41,96,74,51,29.99,29.92,29.87,10,10,7,14,8,'',0.1,6,'Rain',285,95113); +INSERT INTO "weather" VALUES('1/31/2014',60,52,44,45,40,30,86,60,33,30.09,30.04,29.93,10,10,10,17,6,20,0,3,'',294,95113); +INSERT INTO "weather" VALUES('2/1/2014',60,49,37,41,33,21,82,52,22,30.17,30.12,30.09,10,10,10,13,4,16,0,1,'',335,95113); +INSERT INTO "weather" VALUES('2/2/2014',54,48,41,46,39,34,100,80,59,30.07,29.93,29.86,10,10,8,28,10,36,0.08,5,'Rain',125,95113); +INSERT INTO "weather" VALUES('2/3/2014',56,48,39,42,38,33,89,68,46,30.09,30.04,29.98,10,10,10,18,6,26,0,3,'',266,95113); +INSERT INTO "weather" VALUES('2/4/2014',56,46,36,38,36,33,85,68,50,30.18,30.12,30.08,10,10,10,14,5,17,0,4,'',212,95113); +INSERT INTO "weather" VALUES('2/5/2014',57,47,36,43,37,32,85,64,43,30.22,30.16,30.07,10,10,10,14,5,17,0.01,6,'Rain',130,95113); +INSERT INTO "weather" VALUES('2/6/2014',54,50,46,51,46,44,100,86,71,30.05,29.96,29.89,10,9,3,23,10,28,0.61,7,'Rain',124,95113); +INSERT INTO "weather" VALUES('2/7/2014',55,51,47,54,50,46,100,92,83,30.11,30.06,30.02,10,10,6,26,10,35,0.14,7,'Rain',122,95113); +INSERT INTO "weather" VALUES('2/8/2014',61,57,53,54,51,48,86,79,72,30.18,30.13,30.09,10,10,10,22,13,29,0.02,7,'Rain',126,95113); +INSERT INTO "weather" VALUES('2/9/2014',63,60,57,55,53,52,93,80,67,30.18,30.14,30.1,10,10,10,17,10,23,0.05,8,'',136,95113); +INSERT INTO "weather" VALUES('2/10/2014',62,57,51,54,52,50,100,86,72,30.28,30.22,30.12,10,9,2,14,5,16,0.01,7,'',311,95113); +INSERT INTO "weather" VALUES('2/11/2014',62,56,49,52,49,46,100,80,60,30.26,30.23,30.17,10,6,1,14,3,17,0,7,'',325,95113); +INSERT INTO "weather" VALUES('2/12/2014',63,56,49,50,47,41,93,78,48,30.29,30.23,30.19,10,8,3,12,3,14,0,7,'',294,95113); +INSERT INTO "weather" VALUES('2/13/2014',69,59,49,55,51,46,100,80,59,30.23,30.17,30.1,10,6,0,13,4,15,0,5,'Fog',276,95113); +INSERT INTO "weather" VALUES('2/14/2014',63,58,53,56,53,48,100,82,64,30.17,30.13,30.06,10,7,1,12,4,14,'T',7,'',312,95113); +INSERT INTO "weather" VALUES('2/15/2014',63,56,48,52,49,46,93,80,67,30.06,30.02,29.98,10,10,10,18,6,23,0.02,6,'Rain',128,95113); +INSERT INTO "weather" VALUES('2/16/2014',63,55,47,54,45,33,100,67,34,30.21,30.13,30.05,10,9,2,14,5,23,0.04,5,'Rain',307,95113); +INSERT INTO "weather" VALUES('2/17/2014',61,50,39,46,40,36,86,64,42,30.19,30.15,30.11,10,10,10,16,6,20,0,3,'',307,95113); +INSERT INTO "weather" VALUES('2/18/2014',64,54,43,49,44,38,89,64,39,30.21,30.15,30.1,10,10,10,20,4,24,0,5,'',316,95113); +INSERT INTO "weather" VALUES('2/19/2014',63,56,49,52,47,40,100,72,43,30.21,30.16,30.11,10,10,7,21,8,23,0.01,4,'Rain',304,95113); +INSERT INTO "weather" VALUES('2/20/2014',67,55,42,44,39,32,89,59,29,30.21,30.16,30.11,10,10,10,16,4,17,0,3,'',289,95113); +INSERT INTO "weather" VALUES('2/21/2014',72,57,42,48,41,32,83,54,24,30.12,30.06,29.98,10,10,10,15,4,17,0,1,'',306,95113); +INSERT INTO "weather" VALUES('2/22/2014',71,57,42,49,44,33,93,60,26,30.02,29.98,29.92,10,10,10,14,5,17,0,2,'',304,95113); +INSERT INTO "weather" VALUES('2/23/2014',68,57,45,50,46,40,93,64,35,30.04,29.99,29.94,10,9,5,16,3,20,0,3,'',284,95113); +INSERT INTO "weather" VALUES('2/24/2014',73,59,44,48,43,40,89,61,33,30,29.96,29.89,10,10,10,15,3,18,0,1,'',291,95113); +INSERT INTO "weather" VALUES('2/25/2014',66,55,44,48,45,43,100,76,52,29.99,29.95,29.9,10,8,3,14,6,16,0,4,'',163,95113); +INSERT INTO "weather" VALUES('2/26/2014',61,57,52,57,51,45,100,83,66,29.96,29.86,29.7,10,9,3,29,13,40,0.68,7,'Rain',129,95113); +INSERT INTO "weather" VALUES('2/27/2014',65,59,52,54,48,44,83,66,48,29.91,29.79,29.51,10,10,9,26,10,36,0.01,6,'Rain',123,95113); +INSERT INTO "weather" VALUES('2/28/2014',62,57,52,56,50,46,100,78,55,29.51,29.43,29.39,10,8,2,25,12,35,0.97,7,'Rain',125,95113); +INSERT INTO "weather" VALUES('3/1/2014',69,62,54,54,48,44,78,63,48,29.82,29.63,29.47,10,10,10,17,10,25,0.03,7,'Rain',108,94107); +INSERT INTO "weather" VALUES('3/2/2014',61,57,53,55,51,47,83,75,67,30.17,30.01,29.83,10,9,2,20,9,26,0.02,6,'Rain',181,94107); +INSERT INTO "weather" VALUES('3/3/2014',61,56,50,52,49,47,89,77,64,30.15,30.11,30.04,10,10,9,18,6,28,0.1,7,'Rain',135,94107); +INSERT INTO "weather" VALUES('3/4/2014',66,61,55,54,52,49,86,77,67,30.12,30.09,30.06,10,10,7,17,5,'','T',7,'Rain',16,94107); +INSERT INTO "weather" VALUES('3/5/2014',66,60,54,58,54,48,93,73,52,30.11,30.06,29.99,10,8,2,20,6,23,0.26,8,'Rain',211,94107); +INSERT INTO "weather" VALUES('3/6/2014',65,58,51,57,53,48,93,80,67,30.2,30.13,30.06,10,9,4,15,8,20,0.01,6,'Rain',258,94107); +INSERT INTO "weather" VALUES('3/7/2014',66,57,48,50,47,43,89,67,44,30.19,30.15,30.11,10,10,9,14,6,24,0,2,'',296,94107); +INSERT INTO "weather" VALUES('3/8/2014',72,59,46,51,48,39,93,63,33,30.21,30.16,30.12,10,10,10,17,4,48,0,5,'Fog',285,94107); +INSERT INTO "weather" VALUES('3/9/2014',71,63,55,54,51,48,80,69,57,30.17,30.13,30.07,10,10,10,13,6,18,'T',7,'Rain',291,94107); +INSERT INTO "weather" VALUES('3/10/2014',68,62,56,55,48,43,86,66,45,30.24,30.17,30.11,10,10,9,20,8,22,'T',5,'Rain',307,94107); +INSERT INTO "weather" VALUES('3/11/2014',74,61,47,40,31,25,61,40,19,30.19,30.1,30.02,10,10,10,30,11,37,0,1,'',6,94107); +INSERT INTO "weather" VALUES('3/12/2014',78,66,53,34,28,23,36,26,16,30.11,30.05,30.01,10,10,10,32,16,40,0,0,'',28,94107); +INSERT INTO "weather" VALUES('3/13/2014',73,58,46,49,43,33,80,58,27,30.08,30.03,29.99,10,10,10,17,6,'',0,1,'',270,94107); +INSERT INTO "weather" VALUES('3/14/2014',67,60,53,52,49,46,83,68,52,30.23,30.15,30.08,10,10,10,13,7,21,0,4,'',248,94107); +INSERT INTO "weather" VALUES('3/15/2014',77,62,47,52,48,41,93,63,33,30.31,30.27,30.23,10,10,10,14,6,16,0,0,'Fog',293,94107); +INSERT INTO "weather" VALUES('3/16/2014',72,60,48,52,48,46,89,68,47,30.32,30.27,30.21,10,10,10,21,8,23,0,3,'Fog',292,94107); +INSERT INTO "weather" VALUES('3/17/2014',69,59,49,49,46,43,77,60,42,30.24,30.11,29.99,10,10,10,22,11,29,'T',3,'',291,94107); +INSERT INTO "weather" VALUES('3/18/2014',70,57,43,45,39,31,86,55,24,29.99,29.95,29.91,10,10,10,17,5,22,0,1,'',290,94107); +INSERT INTO "weather" VALUES('3/19/2014',73,59,45,48,40,34,77,52,27,30.09,30.04,29.98,10,10,10,14,6,26,0,2,'',316,94107); +INSERT INTO "weather" VALUES('3/20/2014',70,60,50,51,45,41,77,61,44,30.06,30.02,29.96,10,10,10,18,8,'',0,5,'',292,94107); +INSERT INTO "weather" VALUES('3/21/2014',63,56,48,47,45,44,86,69,52,30.01,29.98,29.96,10,10,9,20,8,37,0,3,'',263,94107); +INSERT INTO "weather" VALUES('3/22/2014',65,58,51,47,45,43,83,64,44,30.13,30.06,30,10,10,10,16,8,23,0,3,'',246,94107); +INSERT INTO "weather" VALUES('3/23/2014',65,57,48,48,46,44,83,68,52,30.19,30.14,30.1,10,10,10,15,7,20,0,3,'',280,94107); +INSERT INTO "weather" VALUES('3/24/2014',72,59,46,50,46,38,86,58,29,30.17,30.1,30.03,10,10,6,18,6,29,0,1,'',328,94107); +INSERT INTO "weather" VALUES('3/25/2014',63,54,45,55,49,42,87,75,62,30.06,29.97,29.88,10,9,2,18,8,29,0.15,5,'Rain',253,94107); +INSERT INTO "weather" VALUES('3/26/2014',62,58,53,51,48,47,89,77,64,29.99,29.87,29.82,10,8,1,23,12,35,0.63,7,'Rain',235,94107); +INSERT INTO "weather" VALUES('3/27/2014',65,61,56,48,46,43,77,61,44,30.14,30.07,29.98,10,10,7,17,9,25,'T',6,'',244,94107); +INSERT INTO "weather" VALUES('3/28/2014',69,63,56,52,49,46,77,63,49,30.21,30.16,30.12,10,10,7,17,9,30,0.01,6,'Rain',191,94107); +INSERT INTO "weather" VALUES('3/29/2014',60,57,53,55,51,45,93,79,64,30.14,30.07,30.02,10,8,1,24,12,29,0.87,8,'Rain',200,94107); +INSERT INTO "weather" VALUES('3/30/2014',61,56,50,46,44,41,77,64,51,30.14,30.11,30.06,10,10,10,17,10,21,0,4,'',277,94107); +INSERT INTO "weather" VALUES('3/31/2014',57,53,48,47,44,42,86,76,66,30.08,29.94,29.85,10,8,1,31,13,36,0.57,6,'Rain',169,94107); +INSERT INTO "weather" VALUES('4/1/2014',58,52,46,47,43,41,82,72,61,29.95,29.89,29.85,10,9,2,30,13,36,0.69,7,'Rain',158,94107); +INSERT INTO "weather" VALUES('4/2/2014',61,53,45,45,43,39,89,68,46,30.12,30.03,29.88,10,10,10,21,8,28,'T',4,'Rain',357,94107); +INSERT INTO "weather" VALUES('4/3/2014',62,54,46,46,44,42,86,69,51,30.13,30.1,30.05,10,10,10,16,8,20,0,5,'',211,94107); +INSERT INTO "weather" VALUES('4/4/2014',61,56,50,49,46,43,86,71,55,30.06,30.02,29.99,10,9,4,22,8,28,0.32,6,'Rain',292,94107); +INSERT INTO "weather" VALUES('4/5/2014',65,56,46,49,46,43,86,71,56,30.2,30.13,30.06,10,10,10,17,7,21,0,2,'',292,94107); +INSERT INTO "weather" VALUES('4/6/2014',72,61,49,54,50,45,93,71,49,30.25,30.18,30.11,10,10,10,16,5,29,0,2,'',275,94107); +INSERT INTO "weather" VALUES('4/7/2014',79,65,51,56,52,47,86,62,37,30.16,30.11,30.06,10,10,10,15,6,20,0,0,'',291,94107); +INSERT INTO "weather" VALUES('4/8/2014',78,67,56,56,53,50,93,70,46,30.12,30.07,30.03,10,10,10,16,6,20,0,3,'',299,94107); +INSERT INTO "weather" VALUES('4/9/2014',66,59,52,52,49,48,93,75,56,30.11,30.06,30,10,10,10,17,8,49,0,4,'',295,94107); +INSERT INTO "weather" VALUES('4/10/2014',74,63,51,54,50,47,89,71,53,30.05,29.99,29.9,10,10,8,18,7,26,0,5,'',302,94107); +INSERT INTO "weather" VALUES('4/11/2014',63,58,53,50,49,48,89,75,60,29.97,29.92,29.87,10,10,10,24,9,28,0,7,'',298,94107); +INSERT INTO "weather" VALUES('4/12/2014',64,59,54,48,47,45,77,69,60,29.96,29.92,29.88,10,10,10,21,11,28,0,5,'',262,94107); +INSERT INTO "weather" VALUES('4/13/2014',69,61,53,51,48,45,83,69,55,30.06,30.01,29.96,10,10,8,22,9,25,0,4,'',262,94107); +INSERT INTO "weather" VALUES('4/14/2014',68,59,50,52,49,48,89,73,56,30.13,30.07,30.03,10,9,6,21,8,23,0,5,'',283,94107); +INSERT INTO "weather" VALUES('4/15/2014',66,59,52,49,48,46,83,70,56,30.08,30,29.92,10,10,7,18,8,30,0,4,'',275,94107); +INSERT INTO "weather" VALUES('4/16/2014',73,62,50,50,49,45,83,64,44,29.93,29.89,29.83,10,9,7,18,8,24,0,2,'',257,94107); +INSERT INTO "weather" VALUES('4/17/2014',64,58,51,51,49,47,89,75,60,29.89,29.85,29.81,10,10,7,17,7,29,0,2,'',262,94107); +INSERT INTO "weather" VALUES('4/18/2014',64,58,51,51,48,45,83,70,56,29.97,29.92,29.88,10,10,10,18,8,31,0,3,'',263,94107); +INSERT INTO "weather" VALUES('4/19/2014',65,59,52,52,48,44,86,69,52,30.13,30.07,29.97,10,10,10,25,12,38,0,5,'',262,94107); +INSERT INTO "weather" VALUES('4/20/2014',76,63,50,52,48,44,86,60,33,30.16,30.11,30.07,10,10,10,21,6,36,0,3,'',269,94107); +INSERT INTO "weather" VALUES('4/21/2014',67,59,50,50,46,41,83,63,43,30.09,30.04,29.99,10,10,8,24,9,41,0,5,'',275,94107); +INSERT INTO "weather" VALUES('4/22/2014',65,59,52,50,42,36,83,60,37,30.14,30.06,29.98,10,10,4,31,19,36,'T',5,'Rain',287,94107); +INSERT INTO "weather" VALUES('4/23/2014',67,56,45,49,41,35,72,56,39,30.16,30.12,30.09,10,10,10,24,9,33,0,3,'',299,94107); +INSERT INTO "weather" VALUES('4/24/2014',66,59,51,54,51,47,86,71,56,30.13,30.07,30,10,10,6,21,9,36,0.02,5,'Rain',268,94107); +INSERT INTO "weather" VALUES('4/25/2014',58,55,52,55,49,43,86,74,61,29.99,29.88,29.81,10,8,2,28,12,35,0.57,8,'Rain',253,94107); +INSERT INTO "weather" VALUES('4/26/2014',63,53,44,44,42,39,86,63,44,30.1,29.99,29.87,10,10,10,25,10,30,0,4,'',280,94107); +INSERT INTO "weather" VALUES('4/27/2014',64,58,52,49,46,43,66,57,48,30.14,30.09,30.05,10,10,7,24,13,30,'T',5,'Rain',234,94107); +INSERT INTO "weather" VALUES('4/28/2014',71,59,47,49,46,43,93,67,40,30.23,30.19,30.15,10,10,8,20,7,28,0,1,'',287,94107); +INSERT INTO "weather" VALUES('4/29/2014',83,67,50,56,47,43,80,52,24,30.21,30.14,30.05,10,10,10,13,4,17,0,2,'',254,94107); +INSERT INTO "weather" VALUES('4/30/2014',89,73,57,56,50,42,80,53,25,30.09,30.05,30,10,10,10,13,5,20,0,2,'',280,94107); +INSERT INTO "weather" VALUES('5/1/2014',85,71,57,54,46,34,72,45,17,30.09,30.07,30.03,10,10,10,20,6,23,0,2,'',290,94107); +INSERT INTO "weather" VALUES('5/2/2014',72,63,53,56,52,50,93,71,49,30.1,30.06,30.02,10,10,10,21,8,28,0,5,'Fog',282,94107); +INSERT INTO "weather" VALUES('5/3/2014',67,61,54,52,50,48,86,69,52,30.06,30.04,30,10,10,10,29,16,'',0,6,'',262,94107); +INSERT INTO "weather" VALUES('5/4/2014',68,63,57,51,51,49,80,66,52,30.07,30.04,30.02,10,10,10,22,15,25,0,5,'',270,94107); +INSERT INTO "weather" VALUES('5/5/2014',67,61,55,51,47,43,80,64,48,30.06,30.02,29.96,10,10,10,30,17,36,0,4,'',276,94107); +INSERT INTO "weather" VALUES('5/6/2014',69,61,52,49,45,41,72,58,44,29.95,29.92,29.88,10,10,10,25,11,32,0,1,'',275,94107); +INSERT INTO "weather" VALUES('5/7/2014',64,58,51,48,46,43,83,64,44,30.01,29.95,29.89,10,10,10,23,12,93,0,4,'',218,94107); +INSERT INTO "weather" VALUES('5/8/2014',65,60,54,56,50,45,84,73,62,30.1,30.06,30.01,10,10,6,18,10,23,'T',7,'Rain',246,94107); +INSERT INTO "weather" VALUES('5/9/2014',69,62,55,54,50,44,86,64,42,30.17,30.13,30.1,10,10,7,29,16,35,'T',5,'',272,94107); +INSERT INTO "weather" VALUES('5/10/2014',70,61,51,46,44,38,72,53,34,30.14,30.09,30.03,10,10,10,26,12,30,0,2,'',289,94107); +INSERT INTO "weather" VALUES('5/11/2014',77,65,53,48,41,32,67,45,23,30.1,30.07,30.02,10,10,10,25,10,32,0,1,'',303,94107); +INSERT INTO "weather" VALUES('5/12/2014',82,66,50,52,46,38,77,50,23,30.12,30.08,30.04,10,10,10,15,6,31,0,2,'',299,94107); +INSERT INTO "weather" VALUES('5/13/2014',91,74,56,51,44,35,67,43,19,30.13,30.1,30.07,10,10,10,15,5,21,0,1,'',283,94107); +INSERT INTO "weather" VALUES('5/14/2014',90,75,59,53,46,38,67,43,18,30.13,30.09,30.04,10,10,10,15,6,17,0,2,'',291,94107); +INSERT INTO "weather" VALUES('5/15/2014',83,70,57,50,47,41,69,47,25,30.1,30.08,30.05,10,10,10,20,6,21,0,3,'',280,94107); +INSERT INTO "weather" VALUES('5/16/2014',70,63,55,52,51,49,83,65,47,30.1,30.06,30,10,10,10,22,12,25,0,5,'',266,94107); +INSERT INTO "weather" VALUES('5/17/2014',67,61,55,52,51,50,86,71,56,30.03,30,29.97,10,10,10,22,13,29,0,6,'',261,94107); +INSERT INTO "weather" VALUES('5/18/2014',70,63,56,54,50,46,80,64,47,30,29.98,29.95,10,10,10,29,16,33,0,3,'',276,94107); +INSERT INTO "weather" VALUES('5/19/2014',68,62,56,51,49,48,77,65,52,29.98,29.96,29.93,10,10,10,28,16,32,0,5,'',273,94107); +INSERT INTO "weather" VALUES('5/20/2014',70,63,55,52,49,47,80,64,47,30.01,29.98,29.94,10,10,10,22,11,25,0,5,'',262,94107); +INSERT INTO "weather" VALUES('5/21/2014',70,63,55,52,50,48,83,68,53,29.99,29.97,29.93,10,10,9,22,11,24,0,5,'',247,94107); +INSERT INTO "weather" VALUES('5/22/2014',69,62,54,52,50,48,89,72,55,30.05,29.98,29.94,10,10,10,18,11,22,0,6,'',275,94107); +INSERT INTO "weather" VALUES('5/23/2014',68,61,54,52,51,48,86,72,58,30.05,30.01,29.96,10,10,10,22,10,28,0,6,'',272,94107); +INSERT INTO "weather" VALUES('5/24/2014',67,61,55,52,51,48,86,71,56,30.02,29.99,29.95,10,10,10,20,10,26,0,3,'',265,94107); +INSERT INTO "weather" VALUES('5/25/2014',73,65,56,52,49,48,77,61,44,30,29.96,29.92,10,10,10,17,8,20,0,1,'',242,94107); +INSERT INTO "weather" VALUES('5/26/2014',73,62,51,54,51,47,89,71,53,30.03,30,29.96,10,10,9,20,8,23,'T',0,'',258,94107); +INSERT INTO "weather" VALUES('5/27/2014',68,61,54,49,48,45,83,64,45,30.07,30.03,29.99,10,10,10,18,8,24,0,1,'',264,94107); +INSERT INTO "weather" VALUES('5/28/2014',74,62,49,50,45,36,83,57,30,30.07,30.02,29.96,10,10,10,22,9,26,0,0,'',287,94107); +INSERT INTO "weather" VALUES('5/29/2014',77,64,51,53,47,40,83,55,27,29.96,29.94,29.91,10,10,10,20,8,23,0,1,'',267,94107); +INSERT INTO "weather" VALUES('5/30/2014',64,59,53,49,48,47,83,70,56,29.99,29.96,29.92,10,10,9,20,12,24,0,6,'',262,94107); +INSERT INTO "weather" VALUES('5/31/2014',69,61,53,52,49,48,89,71,53,29.98,29.96,29.92,10,10,10,18,10,22,'T',4,'',256,94107); +INSERT INTO "weather" VALUES('6/1/2014',72,62,51,52,50,48,93,71,49,29.94,29.89,29.81,10,9,5,17,9,32,0,3,'',305,94107); +INSERT INTO "weather" VALUES('6/2/2014',67,60,52,51,49,48,89,73,56,29.92,29.89,29.84,10,10,10,23,11,44,0,6,'',259,94107); +INSERT INTO "weather" VALUES('6/3/2014',67,60,52,50,49,48,83,68,52,29.96,29.92,29.88,10,10,10,20,11,'',0,4,'',278,94107); +INSERT INTO "weather" VALUES('6/4/2014',70,61,52,52,51,48,89,71,53,29.92,29.89,29.84,10,10,6,20,8,21,0,4,'',288,94107); +INSERT INTO "weather" VALUES('6/5/2014',67,60,52,52,51,48,89,74,58,29.88,29.85,29.81,10,9,6,21,11,25,0,3,'',314,94107); +INSERT INTO "weather" VALUES('6/6/2014',68,61,53,52,51,50,89,74,58,29.86,29.83,29.81,10,10,8,21,10,24,0,3,'',320,94107); +INSERT INTO "weather" VALUES('6/7/2014',70,63,56,53,51,50,86,71,55,29.86,29.83,29.79,10,9,7,18,8,23,0,3,'',297,94107); +INSERT INTO "weather" VALUES('6/8/2014',86,70,53,56,53,49,89,61,32,29.83,29.78,29.72,10,9,7,18,7,23,0,0,'',304,94107); +INSERT INTO "weather" VALUES('6/9/2014',78,68,58,56,54,53,80,67,53,29.76,29.73,29.7,10,9,7,22,10,25,0,1,'',305,94107); +INSERT INTO "weather" VALUES('6/10/2014',68,63,57,55,54,52,86,73,59,29.84,29.78,29.73,10,10,9,23,10,28,0,4,'',318,94107); +INSERT INTO "weather" VALUES('6/11/2014',70,64,58,55,53,51,78,66,53,29.92,29.86,29.82,10,10,10,23,12,31,0,5,'',258,94107); +INSERT INTO "weather" VALUES('6/12/2014',66,61,55,52,49,48,80,68,56,30.01,29.96,29.91,10,10,10,21,14,25,0,5,'',257,94107); +INSERT INTO "weather" VALUES('6/13/2014',72,64,55,53,51,48,83,65,47,29.99,29.96,29.93,10,10,10,17,8,23,0,2,'',238,94107); +INSERT INTO "weather" VALUES('6/14/2014',80,67,53,54,50,48,89,63,36,29.95,29.9,29.85,10,10,10,23,9,25,0,2,'',282,94107); +INSERT INTO "weather" VALUES('6/15/2014',68,61,54,52,50,48,80,66,52,29.86,29.83,29.81,10,10,8,24,13,26,0,5,'',248,94107); +INSERT INTO "weather" VALUES('6/16/2014',65,61,56,50,48,46,83,70,56,29.94,29.9,29.85,10,10,10,22,14,26,0,5,'',248,94107); +INSERT INTO "weather" VALUES('6/17/2014',73,62,50,50,47,43,77,56,35,29.97,29.93,29.9,10,10,10,21,7,23,0,1,'',246,94107); +INSERT INTO "weather" VALUES('6/18/2014',82,68,53,52,49,46,77,53,28,29.96,29.94,29.91,10,10,10,21,7,23,0,0,'',280,94107); +INSERT INTO "weather" VALUES('6/19/2014',70,61,52,52,50,48,86,70,53,30.01,29.98,29.95,10,10,9,22,9,32,0,2,'',302,94107); +INSERT INTO "weather" VALUES('6/20/2014',74,64,54,54,52,49,86,66,46,30,29.97,29.94,10,10,10,22,10,24,0,4,'',250,94107); +INSERT INTO "weather" VALUES('6/21/2014',65,59,53,50,49,48,83,70,56,29.95,29.93,29.91,10,10,10,20,8,23,0,5,'',276,94107); +INSERT INTO "weather" VALUES('6/22/2014',66,60,54,50,49,48,77,67,56,29.97,29.94,29.9,10,10,10,25,12,30,0,4,'',249,94107); +INSERT INTO "weather" VALUES('6/23/2014',70,63,55,52,50,47,83,67,51,29.97,29.95,29.93,10,10,10,20,9,29,0,5,'',252,94107); +INSERT INTO "weather" VALUES('6/24/2014',70,62,54,55,52,48,83,71,58,30.02,29.98,29.96,10,10,10,21,10,26,0,3,'',269,94107); +INSERT INTO "weather" VALUES('6/25/2014',68,63,57,58,55,53,90,79,68,30.02,29.99,29.97,10,10,8,21,13,33,'T',7,'',263,94107); +INSERT INTO "weather" VALUES('6/26/2014',70,65,59,57,55,53,90,74,57,30.01,29.99,29.97,10,10,7,18,12,32,'T',5,'Rain',261,94107); +INSERT INTO "weather" VALUES('6/27/2014',71,64,57,59,56,53,86,76,66,30.01,29.98,29.94,10,10,10,21,9,29,0,5,'',261,94107); +INSERT INTO "weather" VALUES('6/28/2014',72,65,57,55,54,52,87,72,57,29.98,29.95,29.91,10,10,10,20,9,25,0,3,'',253,94107); +INSERT INTO "weather" VALUES('6/29/2014',80,67,54,55,52,50,87,62,37,29.95,29.9,29.83,10,10,10,18,8,22,0,0,'',276,94107); +INSERT INTO "weather" VALUES('6/30/2014',82,70,57,57,54,52,84,63,42,29.84,29.82,29.79,10,10,8,20,9,35,0,3,'',304,94107); +INSERT INTO "weather" VALUES('7/1/2014',72,64,56,55,54,53,93,73,53,29.87,29.83,29.8,10,10,10,21,10,29,0,5,'',316,94107); +INSERT INTO "weather" VALUES('7/2/2014',70,64,57,55,54,53,86,72,57,29.92,29.88,29.85,10,10,10,21,11,23,0,6,'',265,94107); +INSERT INTO "weather" VALUES('7/3/2014',69,62,54,54,52,52,86,71,55,29.96,29.92,29.9,10,10,10,18,10,25,0,3,'',264,94107); +INSERT INTO "weather" VALUES('7/4/2014',67,61,54,54,52,51,93,76,58,30.02,29.97,29.91,10,10,9,21,9,24,0,4,'',320,94107); +INSERT INTO "weather" VALUES('7/5/2014',72,63,53,54,53,51,93,73,53,30.09,30.04,30.02,10,10,10,18,7,32,0,3,'',299,94107); +INSERT INTO "weather" VALUES('7/6/2014',70,62,53,53,52,51,93,73,53,30.07,30.01,29.95,10,10,10,21,10,25,0,3,'',296,94107); +INSERT INTO "weather" VALUES('7/7/2014',70,62,54,55,54,52,93,76,59,29.94,29.9,29.85,10,10,10,23,9,35,0,7,'',314,94107); +INSERT INTO "weather" VALUES('7/8/2014',68,63,57,55,54,54,93,78,63,29.93,29.91,29.86,10,10,10,18,9,28,0,5,'',311,94107); +INSERT INTO "weather" VALUES('7/9/2014',71,64,57,56,55,54,93,77,61,29.96,29.91,29.87,10,10,10,20,8,23,0,4,'',314,94107); +INSERT INTO "weather" VALUES('7/10/2014',73,67,60,56,55,54,84,71,57,29.95,29.92,29.88,10,10,10,18,9,22,0,4,'',270,94107); +INSERT INTO "weather" VALUES('7/11/2014',72,67,61,56,54,52,84,69,53,30.08,30.01,29.94,10,10,10,22,13,25,0,5,'',262,94107); +INSERT INTO "weather" VALUES('7/12/2014',70,64,58,55,54,53,80,69,57,30.1,30.07,30.04,10,10,6,23,12,25,'T',5,'',273,94107); +INSERT INTO "weather" VALUES('7/13/2014',71,65,58,56,54,53,86,74,61,30.05,29.99,29.89,10,9,6,16,8,21,'T',6,'',280,94107); +INSERT INTO "weather" VALUES('7/14/2014',76,67,57,58,55,52,87,70,53,29.94,29.9,29.86,10,10,9,24,9,30,0,3,'',310,94107); +INSERT INTO "weather" VALUES('7/15/2014',77,68,59,61,58,55,90,73,56,30.01,29.97,29.92,10,10,10,20,11,23,0,6,'',321,94107); +INSERT INTO "weather" VALUES('7/16/2014',74,68,62,59,57,56,90,74,57,30.04,30,29.98,10,10,10,23,14,28,0,6,'',285,94107); +INSERT INTO "weather" VALUES('7/17/2014',73,68,63,57,56,55,78,68,57,30.02,29.99,29.97,10,10,10,21,13,24,0,4,'',275,94107); +INSERT INTO "weather" VALUES('7/18/2014',71,67,63,57,56,55,84,73,61,30.03,29.99,29.95,10,10,10,20,12,23,0,6,'',276,94107); +INSERT INTO "weather" VALUES('7/19/2014',72,67,62,58,56,55,84,71,57,29.97,29.96,29.94,10,10,10,20,10,24,0,6,'',293,94107); +INSERT INTO "weather" VALUES('7/20/2014',73,68,62,59,58,57,84,73,61,30,29.97,29.93,10,10,10,20,11,25,0,6,'',297,94107); +INSERT INTO "weather" VALUES('7/21/2014',74,69,63,60,58,56,78,68,57,30.07,30.03,29.98,10,10,10,20,11,22,0,5,'',293,94107); +INSERT INTO "weather" VALUES('7/22/2014',76,70,63,58,57,55,78,64,50,30.12,30.07,30.04,10,10,10,21,10,30,0.01,5,'Rain',276,94107); +INSERT INTO "weather" VALUES('7/23/2014',76,70,63,60,58,56,78,68,57,30.15,30.1,30.05,10,10,10,20,9,23,0,4,'',266,94107); +INSERT INTO "weather" VALUES('7/24/2014',83,73,62,59,57,54,84,63,42,30.05,29.96,29.85,10,10,10,17,7,20,0,2,'',284,94107); +INSERT INTO "weather" VALUES('7/25/2014',90,75,60,59,56,45,84,53,22,29.89,29.86,29.83,10,10,8,18,8,22,0,0,'',293,94107); +INSERT INTO "weather" VALUES('7/26/2014',77,69,61,58,56,55,78,66,53,29.96,29.92,29.88,10,10,9,21,11,23,0,2,'',310,94107); +INSERT INTO "weather" VALUES('7/27/2014',78,70,61,58,57,56,84,67,50,30,29.96,29.93,10,10,9,23,11,25,0,4,'',307,94107); +INSERT INTO "weather" VALUES('7/28/2014',72,67,61,57,56,55,84,71,57,30.06,30.03,29.99,10,10,10,21,10,24,0,6,'',316,94107); +INSERT INTO "weather" VALUES('7/29/2014',76,68,60,58,56,55,84,67,50,30.06,30.03,29.99,10,10,10,20,11,22,0,2,'',303,94107); +INSERT INTO "weather" VALUES('7/30/2014',73,66,59,57,56,55,84,71,57,30.02,29.99,29.95,10,10,10,21,11,24,0,4,'',305,94107); +INSERT INTO "weather" VALUES('7/31/2014',71,65,59,57,56,55,87,72,57,30,29.95,29.89,10,10,9,17,9,22,0,5,'',307,94107); +INSERT INTO "weather" VALUES('8/1/2014',72,65,58,59,56,54,90,74,57,29.94,29.91,29.88,10,9,7,18,9,22,0,3,'',305,94107); +INSERT INTO "weather" VALUES('8/2/2014',68,64,60,56,55,54,84,76,67,29.97,29.94,29.91,10,10,9,18,10,23,0,6,'',293,94107); +INSERT INTO "weather" VALUES('8/3/2014',69,65,61,56,55,54,84,72,59,29.98,29.95,29.93,10,10,10,18,11,29,0,7,'',274,94107); +INSERT INTO "weather" VALUES('8/4/2014',73,67,61,56,55,54,84,71,57,30.01,29.98,29.94,10,10,10,17,10,21,0,7,'',281,94107); +INSERT INTO "weather" VALUES('8/5/2014',74,68,62,59,57,55,84,71,57,30.08,30.03,30.01,10,10,10,20,7,26,'T',7,'',294,94107); +INSERT INTO "weather" VALUES('8/6/2014',78,69,60,61,59,55,87,71,54,30.03,30,29.96,10,10,10,20,8,36,'T',6,'Rain',299,94107); +INSERT INTO "weather" VALUES('8/7/2014',69,65,60,56,55,54,84,73,61,29.99,29.96,29.92,10,10,8,18,7,29,0,5,'',291,94107); +INSERT INTO "weather" VALUES('8/8/2014',73,66,58,55,54,52,84,69,53,29.94,29.92,29.88,10,9,7,20,11,28,0,3,'',274,94107); +INSERT INTO "weather" VALUES('8/9/2014',67,63,59,55,54,53,80,74,67,30,29.96,29.91,10,10,9,21,12,31,'T',6,'',255,94107); +INSERT INTO "weather" VALUES('8/10/2014',73,67,60,56,55,54,84,71,57,30.02,29.98,29.94,10,10,10,22,9,36,'T',6,'',262,94107); +INSERT INTO "weather" VALUES('8/11/2014',73,67,61,57,56,55,84,69,53,29.97,29.94,29.9,10,10,10,18,9,22,0,4,'',305,94107); +INSERT INTO "weather" VALUES('8/12/2014',74,68,61,56,55,53,78,66,53,30,29.96,29.93,10,10,10,20,10,31,0,6,'',275,94107); +INSERT INTO "weather" VALUES('8/13/2014',75,68,60,57,55,54,84,69,53,30.02,29.97,29.94,10,10,10,21,9,24,0,5,'',276,94107); +INSERT INTO "weather" VALUES('8/14/2014',73,66,59,57,56,55,84,71,57,29.98,29.95,29.9,10,10,10,20,9,26,0,5,'',315,94107); +INSERT INTO "weather" VALUES('8/15/2014',74,66,58,57,56,54,87,70,53,30.02,29.98,29.95,10,10,8,18,9,39,0,4,'',323,94107); +INSERT INTO "weather" VALUES('8/16/2014',73,67,60,57,56,55,84,73,61,30.06,30.01,29.97,10,10,10,20,9,23,0,4,'',305,94107); +INSERT INTO "weather" VALUES('8/17/2014',72,65,58,57,55,54,84,73,61,30.05,30,29.93,10,10,10,21,10,24,0,5,'',293,94107); +INSERT INTO "weather" VALUES('8/18/2014',68,64,60,57,55,55,84,76,68,29.93,29.88,29.84,10,10,9,22,11,28,'T',7,'',271,94107); +INSERT INTO "weather" VALUES('8/19/2014',74,67,60,57,56,55,84,71,57,29.88,29.85,29.81,10,10,9,21,10,23,'T',5,'Rain',266,94107); +INSERT INTO "weather" VALUES('8/20/2014',73,68,62,57,56,55,84,71,57,29.94,29.9,29.86,10,10,10,18,10,28,0,5,'',263,94107); +INSERT INTO "weather" VALUES('8/21/2014',75,68,61,59,57,56,84,71,57,29.97,29.94,29.91,10,10,10,20,8,23,0,4,'',298,94107); +INSERT INTO "weather" VALUES('8/22/2014',75,69,62,59,57,55,90,74,57,29.95,29.93,29.91,10,10,10,21,8,28,0,5,'',273,94107); +INSERT INTO "weather" VALUES('8/23/2014',75,68,60,56,55,53,78,64,49,29.97,29.91,29.86,10,10,10,16,9,20,0,3,'',269,94107); +INSERT INTO "weather" VALUES('8/24/2014',74,67,59,56,55,54,84,69,53,29.92,29.87,29.82,10,10,10,21,11,23,0,4,'',291,94107); +INSERT INTO "weather" VALUES('8/25/2014',72,68,63,56,55,54,73,63,53,29.96,29.89,29.85,10,10,10,18,11,24,0,5,'',265,94107); +INSERT INTO "weather" VALUES('8/26/2014',75,69,62,57,55,53,78,64,49,30.03,29.99,29.95,10,10,10,18,9,23,0,2,'',284,94107); +INSERT INTO "weather" VALUES('8/27/2014',77,68,59,59,57,55,84,69,54,30.07,30.04,30,10,10,8,21,9,22,0,1,'',302,94107); +INSERT INTO "weather" VALUES('8/28/2014',75,68,60,59,57,55,90,74,57,30.08,30.03,29.94,10,10,10,20,9,22,0,4,'',296,94107); +INSERT INTO "weather" VALUES('8/29/2014',72,67,61,58,57,55,84,75,66,29.98,29.94,29.9,10,10,10,21,7,24,'T',7,'',272,94107); +INSERT INTO "weather" VALUES('8/30/2014',77,68,59,60,58,56,87,71,54,29.93,29.9,29.87,10,10,10,18,8,21,0,3,'Fog',267,94107); +INSERT INTO "weather" VALUES('8/31/2014',76,69,61,59,57,54,84,69,54,29.95,29.9,29.85,10,10,10,17,8,28,0,3,'',279,94107); +INSERT INTO "weather" VALUES('3/1/2014',64,58,53,55,51,48,100,85,56,29.82,29.61,29.47,10,10,5,17,9,25,0.01,7,'Rain',144,94063); +INSERT INTO "weather" VALUES('3/2/2014',60,55,50,55,51,48,100,87,63,30.18,29.98,29.82,10,10,2,12,2,17,0,5,'Rain',216,94063); +INSERT INTO "weather" VALUES('3/3/2014',59,54,48,54,49,46,94,87,67,30.18,30.12,30.01,10,10,9,20,2,31,0,6,'Rain',133,94063); +INSERT INTO "weather" VALUES('3/4/2014',64,60,55,55,53,50,94,86,68,30.12,30.09,30.05,10,10,10,13,4,'',0,6,'',322,94063); +INSERT INTO "weather" VALUES('3/5/2014',71,63,55,57,54,46,94,85,41,30.12,30.07,30,10,9,2,17,3,22,0.02,7,'Rain',160,94063); +INSERT INTO "weather" VALUES('3/6/2014',64,58,53,59,53,48,100,86,59,30.21,30.14,30.07,10,9,3,12,5,'',0,6,'Rain',291,94063); +INSERT INTO "weather" VALUES('3/7/2014',66,58,50,50,46,43,94,76,43,30.19,30.16,30.11,10,10,10,9,3,'',0,1,'',310,94063); +INSERT INTO "weather" VALUES('3/8/2014',71,60,48,54,47,45,93,75,38,30.21,30.16,30.12,10,10,10,8,2,'',0,2,'',311,94063); +INSERT INTO "weather" VALUES('3/9/2014',71,64,57,55,49,45,77,65,46,30.19,30.14,30.07,10,10,10,8,2,'',0,3,'',331,94063); +INSERT INTO "weather" VALUES('3/10/2014',66,60,55,54,49,45,88,70,49,30.25,30.17,30.11,10,10,10,14,5,18,0,4,'',310,94063); +INSERT INTO "weather" VALUES('3/11/2014',68,59,50,46,39,28,77,51,27,30.21,30.12,30.03,10,10,10,15,6,20,0,0,'',341,94063); +INSERT INTO "weather" VALUES('3/12/2014',71,63,55,45,36,28,55,39,24,30.11,30.04,30,10,10,8,18,9,20,0,0,'',18,94063); +INSERT INTO "weather" VALUES('3/13/2014',77,64,50,46,36,27,72,47,17,30.08,30.04,29.98,10,10,5,10,2,'',0,0,'',310,94063); +INSERT INTO "weather" VALUES('3/14/2014',69,58,48,52,46,41,87,72,46,30.24,30.15,30.09,10,10,7,10,3,'',0,1,'',295,94063); +INSERT INTO "weather" VALUES('3/15/2014',77,62,48,54,47,41,94,71,28,30.31,30.27,30.23,10,10,10,9,2,'',0,0,'',330,94063); +INSERT INTO "weather" VALUES('3/16/2014',75,62,50,55,46,41,82,70,29,30.32,30.28,30.2,10,10,10,12,2,17,0,1,'',313,94063); +INSERT INTO "weather" VALUES('3/17/2014',66,60,53,48,44,41,82,66,43,30.26,30.13,29.99,10,10,10,22,10,29,0,2,'',295,94063); +INSERT INTO "weather" VALUES('3/18/2014',68,57,46,43,37,27,76,58,24,29.99,29.96,29.91,10,10,10,12,1,'',0,1,'',279,94063); +INSERT INTO "weather" VALUES('3/19/2014',71,58,46,46,38,32,71,52,28,30.1,30.03,29.98,10,10,10,8,2,'',0,1,'',328,94063); +INSERT INTO "weather" VALUES('3/20/2014',69,61,53,54,42,39,68,57,38,30.07,30.02,29.95,10,10,10,13,2,'',0,2,'',307,94063); +INSERT INTO "weather" VALUES('3/21/2014',64,55,46,50,43,39,81,71,52,30.01,29.98,29.95,10,10,8,13,3,18,0,1,'',276,94063); +INSERT INTO "weather" VALUES('3/22/2014',66,56,46,50,44,41,87,73,52,30.13,30.06,30,10,10,6,12,3,'',0,4,'',284,94063); +INSERT INTO "weather" VALUES('3/23/2014',66,57,48,52,45,43,87,75,46,30.19,30.14,30.09,10,10,7,12,2,'',0,3,'',300,94063); +INSERT INTO "weather" VALUES('3/24/2014',75,62,48,52,43,32,93,67,22,30.16,30.1,30.02,10,10,6,10,3,'',0,0,'',311,94063); +INSERT INTO "weather" VALUES('3/25/2014',62,53,44,55,42,32,88,66,47,30.07,29.99,29.89,10,10,4,12,5,17,0,3,'Rain',265,94063); +INSERT INTO "weather" VALUES('3/26/2014',60,55,50,50,48,46,88,79,63,30,29.88,29.83,10,9,2,16,6,20,0,5,'Rain',232,94063); +INSERT INTO "weather" VALUES('3/27/2014',62,58,53,50,47,41,88,71,45,30.15,30.06,29.99,10,10,5,13,3,16,0.03,7,'Rain',227,94063); +INSERT INTO "weather" VALUES('3/28/2014',68,60,53,50,48,46,88,71,52,30.2,30.15,30.12,10,10,10,14,4,17,0,4,'',186,94063); +INSERT INTO "weather" VALUES('3/29/2014',59,55,51,55,50,46,100,82,72,30.15,30.08,30.03,10,8,2,15,7,'',0,6,'Rain',192,94063); +INSERT INTO "weather" VALUES('3/30/2014',59,54,48,46,45,39,87,78,48,30.15,30.1,30.06,10,10,10,12,6,'',0,2,'',274,94063); +INSERT INTO "weather" VALUES('3/31/2014',55,50,44,48,43,41,94,84,67,30.09,29.97,29.86,10,9,1,20,4,24,0,4,'Rain',164,94063); +INSERT INTO "weather" VALUES('4/1/2014',57,50,44,46,43,39,100,86,51,29.95,29.91,29.85,10,10,4,15,7,21,0,5,'Rain',162,94063); +INSERT INTO "weather" VALUES('4/2/2014',59,52,44,45,42,39,93,76,48,30.12,30.01,29.89,10,10,3,10,4,'',0.02,4,'Rain',282,94063); +INSERT INTO "weather" VALUES('4/3/2014',62,53,44,48,43,39,87,75,42,30.13,30.1,30.04,10,10,10,13,3,17,0,3,'',204,94063); +INSERT INTO "weather" VALUES('4/4/2014',57,54,50,48,46,41,94,79,55,30.07,30.03,29.99,10,9,2,13,7,21,0.04,6,'Rain',260,94063); +INSERT INTO "weather" VALUES('4/5/2014',64,56,48,50,46,43,93,75,52,30.21,30.13,30.07,10,10,10,17,5,22,0,2,'',288,94063); +INSERT INTO "weather" VALUES('4/6/2014',77,62,48,52,46,45,87,69,34,30.25,30.19,30.11,10,10,10,10,1,'',0,0,'',318,94063); +INSERT INTO "weather" VALUES('4/7/2014',80,66,53,55,49,48,82,62,34,30.16,30.11,30.06,10,10,2,13,1,'',0,0,'',327,94063); +INSERT INTO "weather" VALUES('4/8/2014',82,70,57,59,52,46,88,68,30,30.12,30.07,30.02,10,10,10,13,3,'',0,1,'',339,94063); +INSERT INTO "weather" VALUES('4/9/2014',68,60,51,55,50,46,88,77,52,30.11,30.06,30,10,10,7,10,4,'',0,2,'',335,94063); +INSERT INTO "weather" VALUES('4/10/2014',73,62,50,55,49,45,94,82,44,30.05,30,29.9,10,9,5,8,2,'',0,3,'',327,94063); +INSERT INTO "weather" VALUES('4/11/2014',66,60,53,54,50,48,88,80,56,29.96,29.92,29.85,10,10,8,12,4,'',0,4,'',307,94063); +INSERT INTO "weather" VALUES('4/12/2014',66,58,50,50,47,45,82,73,52,29.97,29.91,29.87,10,10,10,16,4,20,0,4,'',236,94063); +INSERT INTO "weather" VALUES('4/13/2014',69,61,53,54,48,45,82,73,49,30.06,30.01,29.97,10,10,10,13,4,'',0,4,'',273,94063); +INSERT INTO "weather" VALUES('4/14/2014',69,60,51,54,49,46,88,77,49,30.13,30.07,30.03,10,10,7,12,4,'',0,3,'',320,94063); +INSERT INTO "weather" VALUES('4/15/2014',69,60,51,54,47,43,88,72,46,30.08,30.01,29.91,10,10,7,14,5,17,0,2,'',291,94063); +INSERT INTO "weather" VALUES('4/16/2014',77,64,50,52,47,45,87,66,34,29.94,29.9,29.82,10,9,5,14,3,'',0,2,'',302,94063); +INSERT INTO "weather" VALUES('4/17/2014',66,60,53,50,48,45,82,70,52,29.89,29.85,29.81,10,10,8,22,5,28,0,1,'',265,94063); +INSERT INTO "weather" VALUES('4/18/2014',66,58,50,54,46,41,87,69,49,29.97,29.92,29.88,10,10,10,16,7,'',0,1,'',294,94063); +INSERT INTO "weather" VALUES('4/19/2014',66,58,50,52,46,41,82,71,42,30.15,30.06,29.97,10,10,10,20,5,17,0,2,'',267,94063); +INSERT INTO "weather" VALUES('4/20/2014',80,66,51,54,45,30,88,63,23,30.15,30.12,30.07,10,10,10,13,3,'',0,0,'',303,94063); +INSERT INTO "weather" VALUES('4/21/2014',66,58,50,50,43,36,77,61,34,30.1,30.05,29.99,10,10,7,18,4,24,0,4,'',285,94063); +INSERT INTO "weather" VALUES('4/22/2014',60,55,50,50,42,32,94,66,34,30.15,30.08,29.98,10,10,3,22,11,28,0,4,'Rain',284,94063); +INSERT INTO "weather" VALUES('4/23/2014',64,57,50,48,42,37,77,64,40,30.16,30.13,30.11,10,10,10,16,9,20,0,1,'',286,94063); +INSERT INTO "weather" VALUES('4/24/2014',66,60,53,54,50,48,88,78,56,30.13,30.08,30,10,10,4,16,6,20,0,4,'Rain',276,94063); +INSERT INTO "weather" VALUES('4/25/2014',57,54,50,54,49,41,88,79,58,30,29.9,29.82,10,9,2,16,7,23,0,8,'Rain',264,94063); +INSERT INTO "weather" VALUES('4/26/2014',59,54,48,45,42,34,82,69,39,30.12,29.98,29.87,10,10,10,20,11,28,0,3,'',278,94063); +INSERT INTO "weather" VALUES('4/27/2014',62,58,53,48,45,41,77,67,45,30.15,30.1,30.05,10,10,10,17,5,22,0,5,'',221,94063); +INSERT INTO "weather" VALUES('4/28/2014',71,60,50,48,42,27,82,59,23,30.24,30.18,30.16,10,10,10,16,5,23,0,0,'',298,94063); +INSERT INTO "weather" VALUES('4/29/2014',86,70,53,57,43,37,77,50,19,30.21,30.15,30.06,10,10,9,10,1,'',0,1,'',341,94063); +INSERT INTO "weather" VALUES('4/30/2014',89,74,59,57,46,36,68,47,15,30.09,30.05,30,10,10,10,10,2,'',0,2,'',306,94063); +INSERT INTO "weather" VALUES('5/1/2014',86,72,59,57,44,30,73,43,15,30.1,30.06,30.03,10,10,10,122,4,'',0,1,'',323,94063); +INSERT INTO "weather" VALUES('5/2/2014',77,67,57,54,45,39,77,55,34,30.1,30.07,30.01,10,10,10,13,2,'',0,2,'',303,94063); +INSERT INTO "weather" VALUES('5/3/2014',66,60,53,50,49,45,88,73,46,30.07,30.05,30.01,10,10,10,21,7,24,0,2,'',288,94063); +INSERT INTO "weather" VALUES('5/4/2014',66,60,55,50,50,46,77,72,49,30.08,30.05,30.03,10,10,10,16,7,18,0,3,'',279,94063); +INSERT INTO "weather" VALUES('5/5/2014',64,60,53,50,47,43,77,69,48,30.06,30.03,29.98,10,10,10,23,11,32,0,2,'',285,94063); +INSERT INTO "weather" VALUES('5/6/2014',66,58,51,46,45,39,77,64,37,29.98,29.94,29.9,10,10,9,23,13,32,0,1,'',276,94063); +INSERT INTO "weather" VALUES('5/7/2014',62,56,50,46,45,45,82,73,52,30.04,29.97,29.92,10,10,9,21,8,26,0,5,'',249,94063); +INSERT INTO "weather" VALUES('5/8/2014',66,60,53,55,50,43,94,75,59,30.11,30.07,30.03,10,10,8,12,6,'',0,6,'',250,94063); +INSERT INTO "weather" VALUES('5/9/2014',66,60,55,55,49,41,94,75,42,30.18,30.15,30.11,10,10,8,20,8,26,0,5,'',285,94063); +INSERT INTO "weather" VALUES('5/10/2014',64,58,53,45,44,39,72,64,42,30.17,30.12,30.06,10,10,10,26,10,34,0,0,'',290,94063); +INSERT INTO "weather" VALUES('5/11/2014',75,64,53,46,39,30,72,49,20,30.11,30.08,30.03,10,10,10,18,7,25,0,0,'',296,94063); +INSERT INTO "weather" VALUES('5/12/2014',86,68,51,50,37,28,77,41,13,30.12,30.08,30.03,10,10,10,12,1,'',0,1,'',337,94063); +INSERT INTO "weather" VALUES('5/13/2014',91,75,59,55,38,32,57,33,13,30.15,30.1,30.07,10,10,10,13,2,16,0,0,'',337,94063); +INSERT INTO "weather" VALUES('5/14/2014',91,76,62,55,38,27,53,31,15,30.14,30.1,30.04,10,10,10,14,4,'',0,1,'',299,94063); +INSERT INTO "weather" VALUES('5/15/2014',87,74,62,50,36,25,52,31,12,30.1,30.08,30.05,10,10,10,15,2,21,0,1,'',308,94063); +INSERT INTO "weather" VALUES('5/16/2014',80,68,55,55,47,41,82,60,28,30.1,30.07,30.01,10,10,10,15,5,20,0,1,'',283,94063); +INSERT INTO "weather" VALUES('5/17/2014',66,60,55,52,50,46,82,72,56,30.04,30.01,29.98,10,10,10,17,8,23,0,3,'',263,94063); +INSERT INTO "weather" VALUES('5/18/2014',68,62,57,52,48,45,77,66,49,30.02,29.99,29.96,10,10,10,23,12,31,0,2,'',278,94063); +INSERT INTO "weather" VALUES('5/19/2014',64,60,55,54,48,46,88,71,52,29.99,29.97,29.95,10,10,3,20,13,25,0,3,'Rain',273,94063); +INSERT INTO "weather" VALUES('5/20/2014',68,60,53,54,49,48,82,74,52,30.03,29.99,29.96,10,10,10,16,7,24,0,5,'',267,94063); +INSERT INTO "weather" VALUES('5/21/2014',73,64,55,55,50,48,82,75,41,30,29.97,29.92,10,10,10,21,7,23,0,3,'',284,94063); +INSERT INTO "weather" VALUES('5/22/2014',71,63,55,55,51,50,82,76,50,30.05,29.98,29.94,10,10,10,13,6,'',0,4,'',293,94063); +INSERT INTO "weather" VALUES('5/23/2014',73,64,55,54,51,48,82,73,47,30.05,30.01,29.96,10,10,10,22,7,24,0,5,'',288,94063); +INSERT INTO "weather" VALUES('5/24/2014',69,63,57,54,50,46,82,68,49,30.02,29.99,29.95,10,10,10,15,6,21,0,1,'',284,94063); +INSERT INTO "weather" VALUES('5/25/2014',80,68,55,57,47,37,82,62,24,29.99,29.96,29.93,10,10,8,24,5,30,0,0,'',294,94063); +INSERT INTO "weather" VALUES('5/26/2014',80,68,55,57,47,37,77,59,37,30.04,30,29.97,10,10,8,23,4,33,0,0,'',288,94063); +INSERT INTO "weather" VALUES('5/27/2014',71,62,53,46,44,37,77,57,35,30.07,30.04,30,10,10,10,20,9,28,0,0,'',276,94063); +INSERT INTO "weather" VALUES('5/28/2014',75,64,53,46,39,36,59,47,25,30.08,30.02,29.96,10,10,10,15,8,21,0,0,'',298,94063); +INSERT INTO "weather" VALUES('5/29/2014',80,66,53,50,41,32,67,48,17,29.97,29.94,29.9,10,10,10,20,3,23,0,0,'',305,94063); +INSERT INTO "weather" VALUES('5/30/2014',64,58,53,48,47,45,82,71,52,30,29.95,29.92,10,10,8,22,7,26,0,2,'',281,94063); +INSERT INTO "weather" VALUES('5/31/2014',71,62,53,54,49,45,82,74,46,29.99,29.96,29.91,10,10,10,14,8,18,0,4,'',317,94063); +INSERT INTO "weather" VALUES('6/1/2014',75,64,53,55,49,46,88,72,36,29.94,29.88,29.79,10,10,9,14,4,'',0,2,'',328,94063); +INSERT INTO "weather" VALUES('6/2/2014',68,60,53,50,48,46,82,74,49,29.93,29.88,29.84,10,10,10,17,5,24,0,4,'',269,94063); +INSERT INTO "weather" VALUES('6/3/2014',68,60,51,54,49,46,82,74,52,29.96,29.92,29.87,10,10,10,12,5,'',0,3,'',286,94063); +INSERT INTO "weather" VALUES('6/4/2014',78,66,53,57,52,48,88,77,44,29.92,29.88,29.82,10,9,6,13,3,'',0,3,'',349,94063); +INSERT INTO "weather" VALUES('6/5/2014',75,64,53,57,52,48,88,76,47,29.88,29.85,29.8,10,10,7,13,4,'',0,2,'',343,94063); +INSERT INTO "weather" VALUES('6/6/2014',71,63,55,55,52,50,88,77,53,29.85,29.83,29.79,10,9,2,12,5,16,0,4,'',303,94063); +INSERT INTO "weather" VALUES('6/7/2014',73,64,55,59,53,50,88,78,53,29.86,29.83,29.78,10,10,7,13,4,'',0,4,'',341,94063); +INSERT INTO "weather" VALUES('6/8/2014',95,76,57,61,54,45,88,68,19,29.84,29.79,29.71,10,8,5,15,2,'',0,1,'',337,94063); +INSERT INTO "weather" VALUES('6/9/2014',86,74,62,64,56,52,77,68,33,29.77,29.73,29.68,10,10,8,14,3,'',0,0,'',339,94063); +INSERT INTO "weather" VALUES('6/10/2014',77,67,57,57,55,54,88,76,47,29.84,29.77,29.73,10,10,8,13,5,16,0,2,'',307,94063); +INSERT INTO "weather" VALUES('6/11/2014',73,65,57,57,52,50,82,73,53,29.92,29.86,29.82,10,10,10,16,5,21,0,1,'',268,94063); +INSERT INTO "weather" VALUES('6/12/2014',66,60,53,50,49,46,88,73,49,30.01,29.96,29.92,10,10,10,21,9,26,0,2,'',253,94063); +INSERT INTO "weather" VALUES('6/13/2014',77,66,55,54,48,46,77,65,36,30,29.96,29.94,10,10,10,17,5,22,0,0,'',269,94063); +INSERT INTO "weather" VALUES('6/14/2014',80,68,55,57,48,45,82,64,32,29.95,29.91,29.85,10,10,10,13,5,21,0,1,'',300,94063); +INSERT INTO "weather" VALUES('6/15/2014',68,62,55,50,48,46,77,70,49,29.89,29.84,29.82,10,9,6,22,9,29,0,4,'',263,94063); +INSERT INTO "weather" VALUES('6/16/2014',62,58,55,50,48,45,82,72,59,29.95,29.91,29.87,10,10,8,20,12,26,0,4,'',242,94063); +INSERT INTO "weather" VALUES('6/17/2014',75,62,50,46,43,37,72,56,25,29.97,29.93,29.9,10,10,9,15,3,20,0,0,'',278,94063); +INSERT INTO "weather" VALUES('6/18/2014',86,70,55,57,42,32,72,47,15,29.96,29.93,29.91,10,10,10,15,2,22,0,0,'',302,94063); +INSERT INTO "weather" VALUES('6/19/2014',73,64,55,57,48,46,77,64,38,30,29.98,29.95,10,10,10,18,5,'',0,1,'',301,94063); +INSERT INTO "weather" VALUES('6/20/2014',82,68,55,59,49,41,82,64,23,30,29.97,29.94,10,10,10,16,5,22,0,1,'',274,94063); +INSERT INTO "weather" VALUES('6/21/2014',68,62,55,50,47,45,77,64,43,29.96,29.93,29.91,10,10,9,14,5,18,0,2,'',283,94063); +INSERT INTO "weather" VALUES('6/22/2014',68,60,53,52,49,48,82,75,49,29.98,29.94,29.91,10,10,9,21,6,26,0,2,'',276,94063); +INSERT INTO "weather" VALUES('6/23/2014',75,64,53,55,49,45,82,68,38,29.98,29.95,29.93,10,10,10,16,6,22,0,1,'',285,94063); +INSERT INTO "weather" VALUES('6/24/2014',73,65,57,54,50,46,82,66,44,30.03,29.99,29.97,10,10,10,24,4,32,0,0,'',280,94063); +INSERT INTO "weather" VALUES('6/25/2014',66,62,57,57,55,54,88,80,68,30.03,29.99,29.98,10,10,10,14,6,23,0,3,'',263,94063); +INSERT INTO "weather" VALUES('6/26/2014',73,66,59,57,55,48,94,78,43,30.01,29.99,29.97,10,10,10,14,7,18,0,5,'',260,94063); +INSERT INTO "weather" VALUES('6/27/2014',77,67,57,59,55,54,88,77,50,30.01,29.98,29.94,10,10,10,15,6,17,0,1,'',282,94063); +INSERT INTO "weather" VALUES('6/28/2014',75,67,59,55,53,48,88,71,41,29.98,29.96,29.92,10,10,10,16,8,21,0,2,'',260,94063); +INSERT INTO "weather" VALUES('6/29/2014',86,72,57,59,51,45,82,60,26,29.95,29.91,29.83,10,10,10,14,5,'',0,0,'',298,94063); +INSERT INTO "weather" VALUES('6/30/2014',89,76,62,64,53,50,77,61,26,29.85,29.82,29.77,10,10,9,14,3,'',0,1,'',333,94063); +INSERT INTO "weather" VALUES('7/1/2014',75,67,59,57,55,46,88,75,36,29.86,29.83,29.8,10,10,9,12,5,'',0,3,'',291,94063); +INSERT INTO "weather" VALUES('7/2/2014',73,65,57,57,54,52,88,75,50,29.92,29.88,29.85,10,10,10,20,6,25,0,4,'',275,94063); +INSERT INTO "weather" VALUES('7/3/2014',77,67,57,55,52,50,82,69,44,29.95,29.92,29.89,10,10,10,20,6,24,0,0,'',285,94063); +INSERT INTO "weather" VALUES('7/4/2014',78,66,55,57,52,45,94,75,32,30.02,29.95,29.91,10,10,5,14,4,18,0,2,'',324,94063); +INSERT INTO "weather" VALUES('7/5/2014',82,68,55,59,53,43,94,76,25,30.08,30.04,30,10,10,8,14,4,'',0,3,'',341,94063); +INSERT INTO "weather" VALUES('7/6/2014',75,64,53,55,52,48,88,75,47,30.07,30.02,29.94,10,10,10,10,4,'',0,1,'',327,94063); +INSERT INTO "weather" VALUES('7/7/2014',80,68,57,57,54,50,88,75,39,29.95,29.91,29.83,10,10,10,15,4,'',0,2,'',339,94063); +INSERT INTO "weather" VALUES('7/8/2014',73,66,59,57,55,54,82,76,53,29.93,29.89,29.87,10,10,10,13,4,16,0,2,'',299,94063); +INSERT INTO "weather" VALUES('7/9/2014',75,67,59,59,56,55,88,77,50,29.96,29.91,29.85,10,10,10,13,4,'',0,4,'',295,94063); +INSERT INTO "weather" VALUES('7/10/2014',75,68,60,57,56,55,82,73,50,29.95,29.91,29.86,10,10,10,16,6,22,0,3,'',258,94063); +INSERT INTO "weather" VALUES('7/11/2014',73,66,59,55,54,54,88,73,53,30.09,30,29.95,10,10,10,16,6,24,0,2,'',266,94063); +INSERT INTO "weather" VALUES('7/12/2014',73,66,57,57,54,54,88,77,53,30.1,30.07,30.03,10,10,10,16,8,21,0,4,'',297,94063); +INSERT INTO "weather" VALUES('7/13/2014',77,67,57,59,55,54,88,77,50,30.06,29.99,29.89,10,10,10,12,7,'',0,5,'',314,94063); +INSERT INTO "weather" VALUES('7/14/2014',80,70,60,63,56,54,82,73,45,29.94,29.9,29.86,10,10,10,9,3,'',0,1,'',331,94063); +INSERT INTO "weather" VALUES('7/15/2014',80,70,59,64,59,55,88,74,54,30.01,29.95,29.92,10,10,9,12,4,'',0,2,'',330,94063); +INSERT INTO "weather" VALUES('7/16/2014',77,70,64,63,58,55,83,72,50,30.04,29.99,29.96,10,10,10,16,5,21,0,3,'Rain',272,94063); +INSERT INTO "weather" VALUES('7/17/2014',75,68,62,59,56,55,82,71,53,30.02,29.99,29.95,10,10,10,16,4,22,0,1,'Rain',273,94063); +INSERT INTO "weather" VALUES('7/18/2014',73,66,60,59,56,54,88,73,57,30.03,29.99,29.93,10,10,10,15,3,21,0,3,'',267,94063); +INSERT INTO "weather" VALUES('7/19/2014',75,68,62,59,57,55,83,73,53,29.97,29.95,29.92,10,10,10,13,4,18,0,5,'',314,94063); +INSERT INTO "weather" VALUES('7/20/2014',77,70,62,63,58,57,83,74,54,30,29.96,29.94,10,10,10,15,5,21,0,5,'',311,94063); +INSERT INTO "weather" VALUES('7/21/2014',75,70,64,59,57,54,78,70,53,30.05,30.01,29.98,10,10,10,15,4,21,0,2,'',277,94063); +INSERT INTO "weather" VALUES('7/22/2014',75,68,62,57,57,54,82,71,53,30.12,30.07,30.04,10,10,10,16,6,22,0,3,'',286,94063); +INSERT INTO "weather" VALUES('7/23/2014',77,70,62,63,57,55,82,73,53,30.15,30.1,30.06,10,10,10,16,5,20,0,3,'',289,94063); +INSERT INTO "weather" VALUES('7/24/2014',89,74,59,63,55,48,88,63,29,30.06,29.96,29.84,10,10,10,13,4,21,0,0,'',314,94063); +INSERT INTO "weather" VALUES('7/25/2014',93,78,62,64,55,43,78,60,21,29.89,29.86,29.82,10,10,10,15,2,'',0,0,'',320,94063); +INSERT INTO "weather" VALUES('7/26/2014',84,73,62,63,56,50,78,67,33,29.96,29.91,29.88,10,10,9,17,4,'',0,1,'',328,94063); +INSERT INTO "weather" VALUES('7/27/2014',80,71,62,63,57,55,82,71,42,30,29.97,29.92,10,10,10,13,4,'',0,1,'',342,94063); +INSERT INTO "weather" VALUES('7/28/2014',78,70,62,61,57,55,88,74,47,30.06,30.03,29.99,10,10,10,14,5,'',0,4,'',345,94063); +INSERT INTO "weather" VALUES('7/29/2014',78,69,60,63,57,52,88,74,39,30.07,30.03,29.96,10,10,10,15,5,'',0,1,'',340,94063); +INSERT INTO "weather" VALUES('7/30/2014',75,67,59,61,57,55,88,77,57,30.02,29.99,29.94,10,10,10,14,4,'',0,2,'',344,94063); +INSERT INTO "weather" VALUES('7/31/2014',73,66,59,63,57,54,88,82,50,30,29.96,29.9,10,10,8,9,3,'',0,3,'',350,94063); +INSERT INTO "weather" VALUES('8/1/2014',78,68,59,63,57,55,88,78,51,29.94,29.91,29.87,10,10,8,12,3,'',0,1,'',339,94063); +INSERT INTO "weather" VALUES('8/2/2014',75,67,59,61,56,55,94,81,53,29.97,29.93,29.89,10,10,9,16,5,'',0,4,'',327,94063); +INSERT INTO "weather" VALUES('8/3/2014',71,65,59,59,56,54,88,77,57,29.98,29.95,29.91,10,10,10,14,6,'',0,6,'',270,94063); +INSERT INTO "weather" VALUES('8/4/2014',71,65,59,57,56,54,88,77,60,30.01,29.97,29.95,10,10,10,12,6,'',0,6,'',293,94063); +INSERT INTO "weather" VALUES('8/5/2014',75,68,62,63,58,55,83,75,57,30.08,30.03,30.01,10,10,10,13,5,18,0,5,'',311,94063); +INSERT INTO "weather" VALUES('8/6/2014',82,72,62,64,59,57,88,74,42,30.04,30.01,29.94,10,10,10,15,5,20,0,4,'Rain',329,94063); +INSERT INTO "weather" VALUES('8/7/2014',75,68,62,59,56,54,88,74,50,29.99,29.96,29.91,10,10,10,14,6,'',0,4,'',313,94063); +INSERT INTO "weather" VALUES('8/8/2014',78,68,59,57,54,50,82,70,41,29.95,29.92,29.87,10,10,7,14,4,16,0,2,'',290,94063); +INSERT INTO "weather" VALUES('8/9/2014',71,65,59,55,53,50,88,73,53,30.01,29.95,29.91,10,10,9,22,7,26,0,3,'',278,94063); +INSERT INTO "weather" VALUES('8/10/2014',75,66,57,59,55,54,88,77,50,30.02,29.98,29.92,10,10,10,14,6,16,0,3,'',288,94063); +INSERT INTO "weather" VALUES('8/11/2014',77,68,60,59,57,55,83,73,47,29.97,29.94,29.89,10,10,10,12,4,'',0,4,'',303,94063); +INSERT INTO "weather" VALUES('8/12/2014',75,67,59,57,55,54,82,72,53,30,29.95,29.92,10,10,10,14,3,'',0,3,'',275,94063); +INSERT INTO "weather" VALUES('8/13/2014',78,68,59,59,56,54,82,74,47,30.02,29.97,29.94,10,10,10,15,6,21,0,3,'',295,94063); +INSERT INTO "weather" VALUES('8/14/2014',80,70,60,61,57,54,88,77,39,29.98,29.94,29.88,10,10,10,16,4,20,0,3,'',319,94063); +INSERT INTO "weather" VALUES('8/15/2014',78,69,60,61,57,55,88,77,47,30.02,29.97,29.93,10,10,10,15,4,'',0,3,'',326,94063); +INSERT INTO "weather" VALUES('8/16/2014',77,68,60,61,57,55,88,78,47,30.06,30.01,29.96,10,10,10,13,4,'',0,4,'',338,94063); +INSERT INTO "weather" VALUES('8/17/2014',80,70,59,59,55,50,94,79,34,30.05,29.99,29.91,10,10,10,13,4,'',0,3,'',322,94063); +INSERT INTO "weather" VALUES('8/18/2014',71,65,59,59,56,55,88,79,60,29.93,29.89,29.82,10,10,10,17,5,23,0,5,'',287,94063); +INSERT INTO "weather" VALUES('8/19/2014',75,67,59,59,56,55,88,77,53,29.89,29.85,29.8,10,10,10,17,8,21,0,5,'',271,94063); +INSERT INTO "weather" VALUES('8/20/2014',75,68,62,59,56,55,82,73,53,29.94,29.89,29.86,10,10,10,16,3,21,0,4,'',252,94063); +INSERT INTO "weather" VALUES('8/21/2014',77,68,60,59,56,55,83,74,50,29.96,29.93,29.9,10,10,10,12,3,'',0,3,'',300,94063); +INSERT INTO "weather" VALUES('8/22/2014',77,68,60,59,57,54,88,75,47,29.95,29.93,29.9,10,10,10,17,3,25,0,3,'',283,94063); +INSERT INTO "weather" VALUES('8/23/2014',73,66,60,57,55,54,82,73,53,29.97,29.91,29.86,10,10,10,13,4,17,0,3,'',271,94063); +INSERT INTO "weather" VALUES('8/24/2014',75,68,60,59,55,54,82,72,50,29.92,29.87,29.81,10,10,10,14,3,16,0,4,'',261,94063); +INSERT INTO "weather" VALUES('8/25/2014',75,68,60,55,54,52,82,71,47,29.96,29.89,29.86,10,10,10,15,3,20,0,3,'',252,94063); +INSERT INTO "weather" VALUES('8/26/2014',75,67,59,57,54,52,82,70,50,30.03,29.98,29.94,10,10,8,14,3,18,0,2,'',294,94063); +INSERT INTO "weather" VALUES('8/27/2014',82,71,60,63,56,50,82,71,41,30.07,30.04,29.99,10,10,10,14,3,'',0,0,'',313,94063); +INSERT INTO "weather" VALUES('8/28/2014',77,68,59,61,56,55,88,77,54,30.09,30.03,29.94,10,10,10,12,4,'',0,2,'',326,94063); +INSERT INTO "weather" VALUES('8/29/2014',77,68,60,61,57,55,88,77,47,29.98,29.94,29.9,10,10,10,18,4,23,0,5,'',326,94063); +INSERT INTO "weather" VALUES('8/30/2014',82,72,62,63,57,52,83,71,37,29.93,29.9,29.87,10,10,10,15,4,16,0,1,'',261,94063); +INSERT INTO "weather" VALUES('8/31/2014',82,70,59,59,56,50,88,68,34,29.95,29.9,29.85,10,10,10,13,4,18,0,0,'',278,94063); +INSERT INTO "weather" VALUES('3/1/2014',68,62,55,54,52,50,82,70,56,29.78,29.64,29.51,20,13,10,21,12,25,0,6,'Rain',148,94301); +INSERT INTO "weather" VALUES('3/2/2014',64,60,55,55,52,50,88,74,59,30.26,30.06,29.91,10,9,7,12,9,'',0,7,'Rain',197,94301); +INSERT INTO "weather" VALUES('3/3/2014',62,56,50,55,52,48,94,81,63,30.14,30.1,30.07,15,13,10,9,6,'',0,7,'Rain',139,94301); +INSERT INTO "weather" VALUES('3/4/2014',66,60,55,57,56,54,94,83,68,30.11,30.08,30.05,20,15,10,12,6,'',0,6,'',340,94301); +INSERT INTO "weather" VALUES('3/5/2014',71,63,55,'','','','','','',30.1,30.05,30,15,13,10,13,8,'',0,8,'',124,94301); +INSERT INTO "weather" VALUES('3/6/2014',66,60,55,55,53,50,94,75,60,30.19,30.16,30.11,10,9,7,14,7,'',0,4,'',338,94301); +INSERT INTO "weather" VALUES('3/7/2014',69,56,44,52,47,43,93,64,43,30.18,30.14,30.1,20,13,10,14,6,'',0,2,'',333,94301); +INSERT INTO "weather" VALUES('3/8/2014',75,60,46,54,50,45,93,64,34,30.19,30.16,30.12,15,12,10,12,6,'',0,5,'',341,94301); +INSERT INTO "weather" VALUES('3/9/2014',75,65,55,55,53,50,82,65,47,30.17,30.12,30.07,15,12,10,13,5,'',0,6,'',14,94301); +INSERT INTO "weather" VALUES('3/10/2014',69,63,57,54,50,48,82,62,46,30.24,30.19,30.15,20,17,10,17,11,'',0,4,'Rain',326,94301); +INSERT INTO "weather" VALUES('3/11/2014',71,63,55,45,37,32,49,37,25,30.15,30.08,30.02,10,10,10,21,15,'',0,0,'',40,94301); +INSERT INTO "weather" VALUES('3/12/2014',77,67,57,46,42,36,52,37,26,30.09,30.04,29.99,10,10,10,17,12,'',0,0,'',41,94301); +INSERT INTO "weather" VALUES('3/13/2014',78,62,46,54,44,36,72,50,24,30.06,30.01,29.97,20,20,20,16,8,'',0,0,'',358,94301); +INSERT INTO "weather" VALUES('3/14/2014',69,58,46,54,51,45,93,72,49,30.19,30.17,30.12,20,15,10,12,7,'',0,2,'',2,94301); +INSERT INTO "weather" VALUES('3/15/2014',80,63,46,45,45,45,93,93,93,30.3,30.27,30.23,20,17,15,13,7,'',0,0,'',337,94301); +INSERT INTO "weather" VALUES('3/16/2014',73,60,46,57,50,43,93,66,44,30.31,30.25,30.18,15,15,15,21,8,'',0,1,'',347,94301); +INSERT INTO "weather" VALUES('3/17/2014',71,62,53,50,47,45,82,58,41,30.16,30.07,29.98,10,10,10,17,11,'',0,3,'',332,94301); +INSERT INTO "weather" VALUES('3/18/2014',73,60,46,41,35,30,81,37,20,29.98,29.94,29.89,'','','',15,6,'',0,0,'',2,94301); +INSERT INTO "weather" VALUES('3/19/2014',75,58,41,45,41,37,87,47,29,30.09,30.04,30.01,10,10,10,13,5,'',0,3,'',336,94301); +INSERT INTO "weather" VALUES('3/20/2014',71,60,50,54,50,43,77,64,46,30.05,29.99,29.94,10,10,10,17,8,'',0,5,'',350,94301); +INSERT INTO "weather" VALUES('3/21/2014',78,60,42,52,49,39,88,68,24,30.01,29.97,29.94,15,10,10,16,7,23,0,1,'',3,94301); +INSERT INTO "weather" VALUES('3/22/2014',68,57,46,54,48,43,93,64,45,30.09,30.07,30.04,20,13,10,14,8,'',0,0,'',34,94301); +INSERT INTO "weather" VALUES('3/23/2014',66,60,53,54,50,46,82,70,56,30.18,30.14,30.09,20,12,7,12,6,'',0,3,'',352,94301); +INSERT INTO "weather" VALUES('3/24/2014',71,58,44,55,49,43,93,67,43,30.16,30.1,30.01,20,13,7,15,7,'',0,0,'',352,94301); +INSERT INTO "weather" VALUES('3/25/2014',68,56,44,57,49,39,88,71,55,30.04,29.96,29.89,20,11,6,15,8,'',0,6,'Rain',275,94301); +INSERT INTO "weather" VALUES('3/26/2014',62,58,53,54,49,46,94,74,59,29.94,29.87,29.83,15,12,6,17,8,'',0,7,'Rain',259,94301); +INSERT INTO "weather" VALUES('3/27/2014',68,60,51,50,47,45,88,63,46,30.11,30.08,30.02,20,16,10,12,8,'',0,7,'',216,94301); +INSERT INTO "weather" VALUES('3/28/2014',69,60,51,54,50,48,88,63,49,30.2,30.15,30.1,20,17,15,14,10,'',0,6,'',142,94301); +INSERT INTO "weather" VALUES('3/29/2014',64,60,55,57,54,50,94,86,68,30.09,30.06,30.02,10,7,1,16,10,'',0,8,'Rain',242,94301); +INSERT INTO "weather" VALUES('3/30/2014',64,56,48,50,46,43,93,64,45,30.13,30.11,30.08,20,19,15,16,8,'',0,5,'',299,94301); +INSERT INTO "weather" VALUES('3/31/2014',57,52,46,48,46,43,87,79,63,29.98,29.9,29.86,20,12,3,18,12,25,0,7,'Rain',161,94301); +INSERT INTO "weather" VALUES('4/1/2014',59,52,46,48,44,43,93,76,55,29.98,29.89,29.84,20,12,6,17,10,'',0,7,'Rain',167,94301); +INSERT INTO "weather" VALUES('4/2/2014',62,54,46,46,44,36,87,64,37,30.1,30.05,29.95,20,20,20,14,8,'',0,3,'',340,94301); +INSERT INTO "weather" VALUES('4/3/2014',64,54,44,50,47,43,93,68,52,30.12,30.09,30.03,20,17,10,14,7,'',0,6,'',293,94301); +INSERT INTO "weather" VALUES('4/4/2014',60,56,51,50,48,43,94,77,52,30.05,30.02,29.98,20,10,2,16,10,'',0,6,'Rain',291,94301); +INSERT INTO "weather" VALUES('4/5/2014',68,58,48,52,48,45,93,65,49,30.29,30.16,30.12,15,13,10,18,9,'',0,2,'',335,94301); +INSERT INTO "weather" VALUES('4/6/2014',78,61,44,57,51,43,93,63,36,30.24,30.18,30.1,15,12,10,14,6,'',0,0,'',345,94301); +INSERT INTO "weather" VALUES('4/7/2014',82,66,51,57,53,48,88,56,35,30.15,30.1,30.05,20,20,20,12,6,'',0,0,'',342,94301); +INSERT INTO "weather" VALUES('4/8/2014',82,68,53,61,58,52,94,66,48,30.11,30.06,30.01,15,12,10,18,8,21,0,4,'',348,94301); +INSERT INTO "weather" VALUES('4/9/2014',69,60,51,57,54,50,94,76,60,30.1,30.04,29.99,15,12,7,14,9,'',0,3,'',337,94301); +INSERT INTO "weather" VALUES('4/10/2014',75,64,53,57,53,50,88,71,41,30.03,29.96,29.89,20,10,5,14,8,'',0,4,'',354,94301); +INSERT INTO "weather" VALUES('4/11/2014',66,60,53,55,54,52,94,77,68,29.95,29.9,29.85,20,11,6,14,7,'',0,7,'',353,94301); +INSERT INTO "weather" VALUES('4/12/2014',66,60,53,55,50,46,82,66,59,29.93,29.9,29.87,20,18,10,17,9,'',0,2,'',2,94301); +INSERT INTO "weather" VALUES('4/13/2014',73,63,53,57,52,48,82,67,50,30.05,30,29.96,20,16,10,18,8,'',0,2,'',328,94301); +INSERT INTO "weather" VALUES('4/14/2014',69,62,55,57,54,52,88,73,60,30.12,30.08,30.03,20,13,7,12,7,'',0,4,'',347,94301); +INSERT INTO "weather" VALUES('4/15/2014',68,62,55,57,52,46,88,69,56,30.04,29.97,29.9,15,11,7,17,8,21,0,2,'',349,94301); +INSERT INTO "weather" VALUES('4/16/2014',77,62,48,57,53,46,93,62,44,29.93,29.87,29.81,15,15,15,18,8,'',0,1,'',345,94301); +INSERT INTO "weather" VALUES('4/17/2014',71,61,51,55,51,45,88,62,49,29.88,29.86,29.82,20,14,8,23,8,'',0,3,'',339,94301); +INSERT INTO "weather" VALUES('4/18/2014',69,62,55,55,51,37,77,63,42,29.93,29.91,29.88,15,15,15,18,9,'',0,3,'',347,94301); +INSERT INTO "weather" VALUES('4/19/2014',71,58,46,54,50,45,93,67,46,30.11,30.09,30.03,15,12,10,16,8,22,0,2,'',339,94301); +INSERT INTO "weather" VALUES('4/20/2014',78,66,55,57,53,45,88,60,39,30.15,30.1,30.05,15,12,10,15,7,'',0,0,'',346,94301); +INSERT INTO "weather" VALUES('4/21/2014',71,63,55,52,50,45,77,62,50,30.06,30.03,29.99,15,11,10,18,9,'',0,7,'',351,94301); +INSERT INTO "weather" VALUES('4/22/2014',64,58,51,45,39,34,76,49,32,30.12,30.1,30.07,15,15,15,21,16,25,0,3,'',310,94301); +INSERT INTO "weather" VALUES('4/23/2014',68,58,48,48,43,41,76,53,37,30.15,30.12,30.09,20,15,10,17,9,23,0,2,'',322,94301); +INSERT INTO "weather" VALUES('4/24/2014',68,60,51,55,52,50,94,68,56,30.12,30.07,30.01,20,14,7,17,11,26,0,5,'',331,94301); +INSERT INTO "weather" VALUES('4/25/2014',59,55,51,54,49,45,94,80,67,29.9,29.85,29.81,20,12,7,12,9,'',0,7,'Rain',246,94301); +INSERT INTO "weather" VALUES('4/26/2014',62,55,48,45,41,37,82,54,39,30.08,30,29.88,15,12,10,21,11,26,0,5,'',294,94301); +INSERT INTO "weather" VALUES('4/27/2014',68,62,55,52,47,45,68,59,49,30.14,30.09,30.06,20,18,10,18,11,23,0,4,'',304,94301); +INSERT INTO "weather" VALUES('4/28/2014',75,60,44,52,46,36,81,54,34,30.23,30.19,30.16,20,13,10,18,7,'',0,0,'',339,94301); +INSERT INTO "weather" VALUES('4/29/2014',89,74,60,52,46,39,59,33,20,30.21,30.12,30.04,15,15,15,13,7,'',0,0,'',340,94301); +INSERT INTO "weather" VALUES('4/30/2014',89,79,69,57,54,46,60,41,22,30.09,30.04,29.99,10,10,10,12,6,'',0,2,'',337,94301); +INSERT INTO "weather" VALUES('5/1/2014',87,72,57,59,52,48,72,43,27,30.09,30.06,30.04,'','','',18,6,'',0,4,'',352,94301); +INSERT INTO "weather" VALUES('5/2/2014',78,66,53,57,53,46,77,59,42,30.09,30.05,30,'','','',21,7,'',0,4,'',347,94301); +INSERT INTO "weather" VALUES('5/3/2014',71,63,55,54,50,46,88,62,43,30.06,30.03,30,15,14,10,23,13,'',0,5,'',330,94301); +INSERT INTO "weather" VALUES('5/4/2014',71,62,53,52,51,50,88,62,46,30.07,30.04,30.01,20,15,10,16,9,'',0,6,'',306,94301); +INSERT INTO "weather" VALUES('5/5/2014',66,60,55,50,48,45,82,60,49,30.05,30.02,29.98,20,15,10,15,7,23,0,5,'',307,94301); +INSERT INTO "weather" VALUES('5/6/2014',73,64,55,48,45,41,67,51,31,29.95,29.92,29.9,20,16,10,17,9,26,0,2,'',307,94301); +INSERT INTO "weather" VALUES('5/7/2014',68,59,50,52,47,45,87,62,43,30.01,29.97,29.94,15,14,10,16,9,25,0,3,'',291,94301); +INSERT INTO "weather" VALUES('5/8/2014',68,62,55,57,52,45,77,65,59,30.09,30.07,30.04,20,16,10,12,8,'',0,6,'',157,94301); +INSERT INTO "weather" VALUES('5/9/2014',69,64,57,55,48,41,88,56,37,30.17,30.15,30.13,20,15,10,18,12,25,0,3,'',307,94301); +INSERT INTO "weather" VALUES('5/10/2014',69,61,53,46,44,43,72,52,40,30.14,30.09,30.04,10,10,10,23,12,32,0,1,'',319,94301); +INSERT INTO "weather" VALUES('5/11/2014',78,64,51,46,38,32,76,32,21,30.1,30.06,30.02,'','','',20,12,28,0,0,'',310,94301); +INSERT INTO "weather" VALUES('5/12/2014',89,68,46,59,47,36,93,43,16,30.1,30.08,30.03,20,18,15,14,5,'',0,0,'',343,94301); +INSERT INTO "weather" VALUES('5/13/2014',95,75,55,55,47,41,67,35,17,30.12,30.09,30.06,'','','',10,5,'',0,0,'',337,94301); +INSERT INTO "weather" VALUES('5/14/2014',91,74,57,59,51,48,72,38,23,30.11,30.07,30,10,10,10,16,5,'',0,0,'',337,94301); +INSERT INTO "weather" VALUES('5/15/2014',86,72,57,57,48,37,67,36,20,30.1,30.07,30.03,'','','',15,4,'',0,4,'',339,94301); +INSERT INTO "weather" VALUES('5/16/2014',77,65,53,59,53,46,82,59,34,30.09,30.05,30,'','','',16,6,'',0,4,'',346,94301); +INSERT INTO "weather" VALUES('5/17/2014',73,65,57,54,50,46,82,56,44,30.02,30,29.97,20,15,10,12,8,'',0,5,'',311,94301); +INSERT INTO "weather" VALUES('5/18/2014',71,66,60,54,52,48,77,61,46,30.01,29.99,29.96,20,20,20,18,12,24,0,4,'',295,94301); +INSERT INTO "weather" VALUES('5/19/2014',69,64,59,50,49,46,72,58,46,29.98,29.97,29.95,20,14,10,15,10,21,0,6,'',285,94301); +INSERT INTO "weather" VALUES('5/20/2014',73,66,59,55,52,50,77,60,44,30,29.99,29.97,15,14,10,12,7,21,0,4,'',322,94301); +INSERT INTO "weather" VALUES('5/21/2014',75,65,55,61,54,50,82,64,50,29.98,29.94,29.9,15,14,10,17,9,21,0,1,'',354,94301); +INSERT INTO "weather" VALUES('5/22/2014',78,68,57,59,55,52,88,68,39,29.99,29.96,29.94,20,16,8,17,8,'',0,3,'',353,94301); +INSERT INTO "weather" VALUES('5/23/2014',69,63,57,59,56,54,88,74,64,30.04,30,29.94,10,10,10,18,9,23,0,5,'',9,94301); +INSERT INTO "weather" VALUES('5/24/2014',71,64,57,59,56,48,82,71,60,30.01,29.97,29.92,15,14,10,18,9,23,0,1,'',356,94301); +INSERT INTO "weather" VALUES('5/25/2014',80,68,55,57,53,43,88,54,30,29.98,29.95,29.92,20,19,15,17,7,21,0,1,'',337,94301); +INSERT INTO "weather" VALUES('5/26/2014',84,70,55,59,53,37,88,57,33,30.03,30,29.98,20,18,15,16,8,'',0,0,'',323,94301); +INSERT INTO "weather" VALUES('5/27/2014',73,64,55,54,48,39,77,51,33,30.06,30.02,29.99,20,16,15,20,7,22,0,0,'',330,94301); +INSERT INTO "weather" VALUES('5/28/2014',78,68,59,45,41,36,52,35,24,30.07,30.01,29.95,10,10,10,15,8,'',0,0,'',324,94301); +INSERT INTO "weather" VALUES('5/29/2014',84,68,53,59,50,32,77,51,15,29.94,29.92,29.88,'','','',20,5,'',0,0,'',347,94301); +INSERT INTO "weather" VALUES('5/30/2014',68,59,50,55,51,46,87,66,52,29.96,29.95,29.93,10,9,7,21,9,'',0,1,'',335,94301); +INSERT INTO "weather" VALUES('5/31/2014',73,63,53,55,53,50,88,65,53,29.97,29.94,29.9,15,11,10,15,7,'',0,1,'',358,94301); +INSERT INTO "weather" VALUES('6/1/2014',75,67,59,57,56,54,88,65,53,29.91,29.86,29.79,20,13,7,17,8,'',0,1,'',360,94301); +INSERT INTO "weather" VALUES('6/2/2014',71,63,55,55,51,48,77,63,53,29.9,29.88,29.87,15,11,10,16,7,'',0,2,'',272,94301); +INSERT INTO "weather" VALUES('6/3/2014',71,63,55,57,53,50,88,66,53,29.95,29.91,29.86,15,14,10,16,8,'',0,1,'',4,94301); +INSERT INTO "weather" VALUES('6/4/2014',75,66,57,57,56,54,88,69,53,29.91,29.87,29.82,20,12,7,15,7,'',0,2,'',336,94301); +INSERT INTO "weather" VALUES('6/5/2014',73,65,57,59,57,55,94,71,57,29.89,29.84,29.79,20,11,7,15,5,'',0,2,'',347,94301); +INSERT INTO "weather" VALUES('6/6/2014',73,66,59,'','','','','','',29.84,29.82,29.79,20,13,5,18,9,'',0,1,'',6,94301); +INSERT INTO "weather" VALUES('6/7/2014',75,67,59,28,28,28,31,31,31,29.85,29.82,29.78,15,10,7,14,7,'',0,2,'',345,94301); +INSERT INTO "weather" VALUES('6/8/2014',86,72,59,66,61,55,88,60,43,29.82,29.77,29.7,20,12,7,16,8,'',0,0,'',359,94301); +INSERT INTO "weather" VALUES('6/9/2014',80,71,62,63,61,57,82,66,51,29.76,29.71,29.68,20,15,10,20,8,'',0,0,'',340,94301); +INSERT INTO "weather" VALUES('6/10/2014',73,66,60,63,60,57,94,76,65,29.78,29.77,29.75,15,12,10,17,9,22,0,2,'',360,94301); +INSERT INTO "weather" VALUES('6/11/2014',77,68,60,59,57,54,77,63,53,29.88,29.85,29.83,10,10,10,16,8,'',0,0,'',343,94301); +INSERT INTO "weather" VALUES('6/12/2014',91,75,59,57,52,48,72,58,24,29.99,29.97,29.96,20,16,15,17,11,'',0,1,'',333,94301); +INSERT INTO "weather" VALUES('6/13/2014',78,66,55,55,51,46,77,53,34,29.99,29.96,29.92,15,15,15,18,7,'',0,0,'',338,94301); +INSERT INTO "weather" VALUES('6/14/2014',82,70,57,61,55,45,82,56,37,29.93,29.89,29.84,15,14,10,17,7,24,0,3,'',345,94301); +INSERT INTO "weather" VALUES('6/15/2014',75,66,57,55,51,48,72,58,44,29.84,29.83,29.81,15,12,7,17,8,'',0,4,'',332,94301); +INSERT INTO "weather" VALUES('6/16/2014',69,62,55,50,48,45,82,57,43,29.93,29.93,29.91,15,13,10,14,7,'',0,2,'',290,94301); +INSERT INTO "weather" VALUES('6/17/2014',80,66,53,54,48,41,77,47,24,29.97,29.94,29.9,15,12,10,14,8,'',0,0,'',341,94301); +INSERT INTO "weather" VALUES('6/18/2014',89,72,55,61,51,37,78,47,18,29.95,29.93,29.91,15,13,10,14,7,'',0,0,'',332,94301); +INSERT INTO "weather" VALUES('6/19/2014',73,65,57,59,56,52,82,65,53,29.99,29.97,29.96,20,16,15,18,8,23,0,1,'',355,94301); +INSERT INTO "weather" VALUES('6/20/2014',82,70,57,61,54,39,88,57,24,29.99,29.96,29.93,20,20,20,18,7,'',0,4,'',350,94301); +INSERT INTO "weather" VALUES('6/21/2014',69,63,57,57,54,48,88,66,52,29.93,29.91,29.9,15,13,10,14,6,'',0,5,'',352,94301); +INSERT INTO "weather" VALUES('6/22/2014',71,65,59,59,54,50,82,65,50,29.95,29.93,29.92,15,14,10,17,9,'',0,0,'',353,94301); +INSERT INTO "weather" VALUES('6/23/2014',77,66,55,59,55,50,82,64,41,29.96,29.94,29.91,20,13,8,18,7,'',0,1,'',351,94301); +INSERT INTO "weather" VALUES('6/24/2014',77,70,62,59,55,52,77,56,44,30.01,30,29.98,15,15,15,14,9,23,0,1,'',310,94301); +INSERT INTO "weather" VALUES('6/25/2014',73,66,59,59,58,55,88,71,61,30.01,29.99,29.97,15,14,10,14,7,'',0,5,'',311,94301); +INSERT INTO "weather" VALUES('6/26/2014',75,68,62,61,57,54,82,65,47,30,29.98,29.95,20,12,10,17,9,'',0,3,'',335,94301); +INSERT INTO "weather" VALUES('6/27/2014',77,70,64,64,61,55,83,70,61,30,29.96,29.92,15,13,10,23,10,23,0,2,'',357,94301); +INSERT INTO "weather" VALUES('6/28/2014',78,68,59,61,55,48,88,59,36,29.97,29.94,29.9,20,12,10,14,8,23,0,1,'',344,94301); +INSERT INTO "weather" VALUES('6/29/2014',82,71,60,63,60,57,88,64,42,29.94,29.89,29.82,20,13,10,14,7,'',0,0,'',353,94301); +INSERT INTO "weather" VALUES('6/30/2014',86,74,62,64,61,55,78,62,40,29.84,29.79,29.6,15,14,10,14,7,'',0,4,'',342,94301); +INSERT INTO "weather" VALUES('7/1/2014',77,70,62,61,60,59,88,72,54,29.84,29.82,29.79,10,8,7,17,8,22,0,2,'',356,94301); +INSERT INTO "weather" VALUES('7/2/2014',77,70,62,61,57,54,77,64,53,29.9,29.87,29.85,20,16,10,17,9,25,0,2,'',6,94301); +INSERT INTO "weather" VALUES('7/3/2014',75,66,57,61,58,54,88,69,57,29.94,29.92,29.88,10,10,10,17,8,'',0,0,'',3,94301); +INSERT INTO "weather" VALUES('7/4/2014',73,66,59,61,58,55,88,74,53,29.99,29.96,29.93,10,8,6,17,7,23,0,1,'',355,94301); +INSERT INTO "weather" VALUES('7/5/2014',77,68,59,61,58,55,88,70,54,30.07,30.04,30,10,9,8,16,8,'',0,1,'',350,94301); +INSERT INTO "weather" VALUES('7/6/2014',77,68,59,59,58,55,88,69,50,30.06,30.01,29.95,10,10,8,14,8,'',0,2,'',345,94301); +INSERT INTO "weather" VALUES('7/7/2014',77,68,59,63,59,55,88,74,54,29.92,29.89,29.84,20,15,10,12,7,'',0,6,'',346,94301); +INSERT INTO "weather" VALUES('7/8/2014',75,67,59,61,59,55,88,71,57,29.92,29.9,29.88,15,11,10,17,8,'',0,2,'',351,94301); +INSERT INTO "weather" VALUES('7/9/2014',77,70,62,63,60,57,83,69,57,29.95,29.9,29.85,15,11,10,16,9,'',0,1,'',5,94301); +INSERT INTO "weather" VALUES('7/10/2014',78,69,60,63,60,57,88,67,54,29.94,29.9,29.85,20,15,10,16,7,'',0,1,'',11,94301); +INSERT INTO "weather" VALUES('7/11/2014',75,68,62,61,58,55,77,66,57,30.04,30.01,29.97,20,18,10,18,8,'',0,3,'',344,94301); +INSERT INTO "weather" VALUES('7/12/2014',73,66,60,61,58,54,82,70,61,30.14,30.06,30.02,10,10,10,17,11,23,0,2,'',342,94301); +INSERT INTO "weather" VALUES('7/13/2014',75,67,59,61,59,55,88,75,61,30.04,29.98,29.89,20,14,10,15,10,'',0,5,'',346,94301); +INSERT INTO "weather" VALUES('7/14/2014',80,74,66,66,63,61,83,70,54,29.92,29.89,29.87,10,10,10,15,7,'',0,5,'',355,94301); +INSERT INTO "weather" VALUES('7/15/2014',78,70,62,68,64,61,94,78,61,30,29.97,29.95,15,11,10,17,12,'',0,5,'',356,94301); +INSERT INTO "weather" VALUES('7/16/2014',80,73,66,64,63,57,88,70,54,30.03,29.98,29.94,15,11,10,16,9,23,0,4,'',2,94301); +INSERT INTO "weather" VALUES('7/17/2014',78,70,62,64,60,57,82,65,53,30.01,29.98,29.94,20,15,10,17,8,'',0,2,'',331,94301); +INSERT INTO "weather" VALUES('7/18/2014',75,70,64,63,61,57,88,73,65,30.02,29.98,29.93,20,12,10,17,9,23,0,3,'',10,94301); +INSERT INTO "weather" VALUES('7/19/2014',77,70,64,64,62,59,83,72,61,29.96,29.94,29.91,20,15,10,21,9,23,0,4,'',3,94301); +INSERT INTO "weather" VALUES('7/20/2014',75,70,64,64,63,61,88,76,69,29.98,29.96,29.94,20,15,8,23,11,'',0,6,'',353,94301); +INSERT INTO "weather" VALUES('7/21/2014',78,73,68,30,30,30,24,24,24,30.05,30.02,30,20,12,10,18,9,'',0,4,'',341,94301); +INSERT INTO "weather" VALUES('7/22/2014',78,72,66,63,59,57,73,62,54,30.09,30.06,30.05,20,12,10,16,9,'',0,4,'',298,94301); +INSERT INTO "weather" VALUES('7/23/2014',78,70,62,64,61,57,82,67,60,30.15,30.1,30.04,10,10,10,17,9,23,0,3,'',360,94301); +INSERT INTO "weather" VALUES('7/24/2014',102,84,66,64,62,57,83,59,27,30.02,29.92,29.83,20,17,10,17,7,'',0,1,'',355,94301); +INSERT INTO "weather" VALUES('7/25/2014',93,76,59,66,62,54,82,56,34,29.88,29.84,29.81,10,10,10,18,9,'',0,0,'',353,94301); +INSERT INTO "weather" VALUES('7/26/2014',82,73,64,64,63,55,83,65,51,29.94,29.91,29.88,15,14,10,20,9,'',0,1,'',349,94301); +INSERT INTO "weather" VALUES('7/27/2014',82,74,66,64,62,59,88,68,51,29.99,29.95,29.91,20,12,10,13,9,'',0,4,'',347,94301); +INSERT INTO "weather" VALUES('7/28/2014',78,71,64,63,61,59,88,71,57,30.05,30.03,30.01,20,13,7,15,8,'',0,5,'',352,94301); +INSERT INTO "weather" VALUES('7/29/2014',80,73,66,64,62,61,83,70,54,30.06,30.01,29.97,15,10,7,14,8,'',0,1,'',349,94301); +INSERT INTO "weather" VALUES('7/30/2014',78,70,62,63,61,59,88,70,54,30.01,29.97,29.94,15,10,8,14,10,'',0,2,'',351,94301); +INSERT INTO "weather" VALUES('7/31/2014',77,70,62,63,61,59,94,74,61,29.99,29.94,29.89,20,12,7,15,8,'',0,4,'',346,94301); +INSERT INTO "weather" VALUES('8/1/2014',77,68,59,32,28,25,30,28,27,29.92,29.9,29.87,20,12,7,14,6,'',0,1,'',350,94301); +INSERT INTO "weather" VALUES('8/2/2014',73,68,62,30,30,30,30,30,30,29.96,29.94,29.9,20,11,6,18,8,23,0,3,'',353,94301); +INSERT INTO "weather" VALUES('8/3/2014',73,68,64,'','','','','','',29.97,29.94,29.91,10,10,10,18,10,'',0,6,'',5,94301); +INSERT INTO "weather" VALUES('8/4/2014',77,70,64,61,59,57,78,67,54,29.99,29.96,29.93,10,10,10,18,9,'',0,6,'',353,94301); +INSERT INTO "weather" VALUES('8/5/2014',78,71,64,64,61,59,88,74,57,30.07,30.03,30,10,10,10,21,9,24,0,7,'',345,94301); +INSERT INTO "weather" VALUES('8/6/2014',82,75,66,68,65,63,88,75,58,30.02,29.98,29.94,20,14,10,21,10,'',0,3,'',360,94301); +INSERT INTO "weather" VALUES('8/7/2014',73,68,62,63,61,57,94,75,65,29.97,29.94,29.9,15,11,7,18,10,'',0,2,'',353,94301); +INSERT INTO "weather" VALUES('8/8/2014',75,67,59,64,60,55,88,73,61,29.94,29.91,29.86,10,9,6,17,7,'',0,3,'',15,94301); +INSERT INTO "weather" VALUES('8/9/2014',73,68,60,61,58,54,77,70,57,29.98,29.95,29.92,20,15,10,20,11,'',0,0,'',359,94301); +INSERT INTO "weather" VALUES('8/10/2014',75,68,60,61,58,55,88,70,61,30.01,29.97,29.92,19,11,10,18,9,22,0,4,'',9,94301); +INSERT INTO "weather" VALUES('8/11/2014',77,70,64,64,61,59,83,73,61,29.96,29.93,29.89,20,12,10,18,9,'',0,2,'',10,94301); +INSERT INTO "weather" VALUES('8/12/2014',77,68,59,63,59,54,83,68,57,29.99,29.95,29.91,20,12,10,18,10,'',0,4,'',349,94301); +INSERT INTO "weather" VALUES('8/13/2014',78,69,60,64,60,55,82,68,54,30.01,29.96,29.92,10,10,10,17,10,24,0,2,'',358,94301); +INSERT INTO "weather" VALUES('8/14/2014',77,70,64,63,61,59,88,75,57,29.97,29.93,29.89,20,12,10,18,9,'',0,3,'',356,94301); +INSERT INTO "weather" VALUES('8/15/2014',78,70,62,'','','','','','',30.01,29.97,29.93,20,11,7,17,9,'',0,2,'',353,94301); +INSERT INTO "weather" VALUES('8/16/2014',78,71,64,61,60,59,83,70,54,30.05,30.01,29.95,20,11,7,17,9,'',0,2,'',348,94301); +INSERT INTO "weather" VALUES('8/17/2014',73,68,62,63,59,57,88,77,65,30.04,29.99,29.92,10,10,10,21,9,'',0,3,'',1,94301); +INSERT INTO "weather" VALUES('8/18/2014',71,68,62,63,60,57,83,74,68,29.9,29.86,29.81,15,14,10,22,11,'',0,3,'',357,94301); +INSERT INTO "weather" VALUES('8/19/2014',75,68,62,63,59,55,77,70,61,29.88,29.84,29.79,10,10,10,17,9,'',0,3,'',34,94301); +INSERT INTO "weather" VALUES('8/20/2014',78,71,64,63,58,55,73,61,50,29.93,29.9,29.86,15,11,10,13,7,'',0,1,'',357,94301); +INSERT INTO "weather" VALUES('8/21/2014',78,69,60,63,60,55,83,69,54,29.96,29.93,29.89,20,15,10,18,10,'',0,0,'',358,94301); +INSERT INTO "weather" VALUES('8/22/2014',80,71,60,64,60,57,88,68,51,29.94,29.91,29.87,20,11,7,21,8,'',0,2,'',360,94301); +INSERT INTO "weather" VALUES('8/23/2014',77,70,62,61,58,55,83,67,54,29.96,29.9,29.84,20,11,8,16,9,'',0,1,'',360,94301); +INSERT INTO "weather" VALUES('8/24/2014',75,68,62,64,60,57,88,73,61,29.97,29.87,29.81,20,14,10,20,9,'',0,2,'',19,94301); +INSERT INTO "weather" VALUES('8/25/2014',75,68,62,61,58,55,82,66,57,29.91,29.88,29.85,20,13,10,21,9,'',0,4,'',331,94301); +INSERT INTO "weather" VALUES('8/26/2014',77,68,59,61,59,55,88,70,57,30.02,29.98,29.93,10,10,10,17,8,'',0,2,'',360,94301); +INSERT INTO "weather" VALUES('8/27/2014',78,72,66,66,63,61,88,71,54,30.07,30.02,29.98,20,15,10,21,11,'',0,0,'',357,94301); +INSERT INTO "weather" VALUES('8/28/2014',78,70,62,64,61,59,88,76,57,30.08,30.01,29.93,20,12,7,21,8,22,0,2,'',354,94301); +INSERT INTO "weather" VALUES('8/29/2014',77,70,64,64,62,61,88,78,61,29.96,29.92,29.9,20,13,7,20,9,'',0,7,'',11,94301); +INSERT INTO "weather" VALUES('8/30/2014',80,70,59,64,62,57,94,70,51,29.92,29.9,29.87,10,10,10,23,6,23,0,2,'',2,94301); +INSERT INTO "weather" VALUES('8/31/2014',78,68,57,63,61,55,100,70,50,29.98,29.9,29.83,20,16,10,17,7,23,0,0,'',350,94301); +INSERT INTO "weather" VALUES('3/1/2014',67,60,53,51,49,46,89,69,48,29.83,29.64,29.48,10,10,10,25,10,33,0.21,6,'Rain',136,94041); +INSERT INTO "weather" VALUES('3/2/2014',63,58,52,54,50,46,86,71,56,30.19,30.03,29.84,10,9,2,17,6,23,0.03,5,'Rain',179,94041); +INSERT INTO "weather" VALUES('3/3/2014',63,56,49,52,49,47,89,75,60,30.18,30.13,30.05,10,10,9,20,5,29,0.14,6,'Rain',136,94041); +INSERT INTO "weather" VALUES('3/4/2014',67,61,54,55,53,50,86,75,63,30.13,30.09,30.06,10,10,10,16,4,22,0,3,'',35,94041); +INSERT INTO "weather" VALUES('3/5/2014',71,63,54,56,54,47,93,69,45,30.12,30.08,30.01,10,10,10,14,5,20,'T',5,'Rain',125,94041); +INSERT INTO "weather" VALUES('3/6/2014',66,60,53,57,52,48,93,75,56,30.22,30.16,30.08,10,10,9,15,5,18,0.01,3,'Rain',320,94041); +INSERT INTO "weather" VALUES('3/7/2014',69,59,49,51,46,43,86,64,42,30.2,30.17,30.11,10,10,10,16,5,18,0,0,'',317,94041); +INSERT INTO "weather" VALUES('3/8/2014',73,60,47,53,47,42,89,61,33,30.22,30.17,30.13,10,10,10,10,2,13,0,0,'',330,94041); +INSERT INTO "weather" VALUES('3/9/2014',76,67,57,53,50,42,72,55,38,30.19,30.14,30.09,10,10,10,12,3,14,0,0,'',315,94041); +INSERT INTO "weather" VALUES('3/10/2014',69,61,53,54,48,44,86,63,40,30.26,30.18,30.12,10,10,4,15,7,21,0.01,2,'Rain',308,94041); +INSERT INTO "weather" VALUES('3/11/2014',71,62,52,44,33,23,66,44,21,30.21,30.11,30.04,10,10,10,22,10,29,0,0,'',16,94041); +INSERT INTO "weather" VALUES('3/12/2014',77,67,56,36,29,20,40,28,16,30.11,30.05,30,10,10,10,20,9,29,0,0,'',22,94041); +INSERT INTO "weather" VALUES('3/13/2014',78,63,48,49,38,22,80,46,12,30.09,30.04,29.99,10,10,10,17,3,'',0,0,'',344,94041); +INSERT INTO "weather" VALUES('3/14/2014',70,59,48,53,47,41,83,62,40,30.24,30.17,30.09,10,10,10,14,4,17,0,0,'',350,94041); +INSERT INTO "weather" VALUES('3/15/2014',79,64,49,53,48,41,86,57,28,30.32,30.28,30.24,10,10,10,15,4,17,0,0,'',328,94041); +INSERT INTO "weather" VALUES('3/16/2014',76,63,50,53,48,41,83,56,29,30.33,30.28,30.2,10,10,10,21,5,29,0,0,'',349,94041); +INSERT INTO "weather" VALUES('3/17/2014',69,61,52,48,45,41,77,57,37,30.28,30.12,29.99,10,10,10,15,6,20,0,3,'',309,94041); +INSERT INTO "weather" VALUES('3/18/2014',72,60,47,44,34,25,77,48,19,30,29.96,29.91,10,10,10,14,4,17,0,0,'',330,94041); +INSERT INTO "weather" VALUES('3/19/2014',75,61,46,46,37,32,62,43,23,30.1,30.05,29.99,10,10,10,13,3,16,0,0,'',348,94041); +INSERT INTO "weather" VALUES('3/20/2014',73,62,51,51,43,38,69,50,31,30.08,30.02,29.96,10,10,10,17,6,18,0,0,'',352,94041); +INSERT INTO "weather" VALUES('3/21/2014',68,58,48,50,46,41,83,66,48,30.03,29.99,29.95,10,10,9,17,5,21,0,0,'',10,94041); +INSERT INTO "weather" VALUES('3/22/2014',69,58,47,50,46,42,86,64,42,30.14,30.07,30.01,10,10,10,14,5,17,0,1,'',34,94041); +INSERT INTO "weather" VALUES('3/23/2014',68,60,51,50,47,46,83,66,48,30.2,30.15,30.1,10,10,7,14,5,18,0,3,'',21,94041); +INSERT INTO "weather" VALUES('3/24/2014',74,61,47,51,44,34,82,54,25,30.17,30.1,30.04,10,10,10,17,5,21,0,0,'',341,94041); +INSERT INTO "weather" VALUES('3/25/2014',67,57,47,54,44,34,72,62,51,30.07,29.97,29.9,10,10,7,17,5,22,0.01,3,'Rain',262,94041); +INSERT INTO "weather" VALUES('3/26/2014',63,58,53,52,48,43,89,71,52,30,29.89,29.85,10,9,4,15,6,20,0.24,6,'Rain',222,94041); +INSERT INTO "weather" VALUES('3/27/2014',67,59,50,48,45,42,83,63,42,30.16,30.08,30.01,10,10,10,17,5,20,'T',5,'',162,94041); +INSERT INTO "weather" VALUES('3/28/2014',71,61,51,51,47,45,83,64,44,30.22,30.16,30.11,10,10,10,14,5,17,0,4,'',143,94041); +INSERT INTO "weather" VALUES('3/29/2014',64,58,51,56,51,47,93,78,63,30.17,30.08,30.04,10,9,1,12,5,17,0.28,6,'Rain',155,94041); +INSERT INTO "weather" VALUES('3/30/2014',63,56,49,48,44,39,89,66,43,30.15,30.12,30.08,10,10,10,16,6,22,0.03,2,'',291,94041); +INSERT INTO "weather" VALUES('3/31/2014',57,51,45,45,43,41,92,75,57,30.1,29.95,29.88,10,8,2,18,7,25,0.52,4,'Rain',150,94041); +INSERT INTO "weather" VALUES('4/1/2014',60,53,45,45,43,41,92,74,55,29.97,29.92,29.87,10,10,4,20,8,24,0.36,5,'Rain',148,94041); +INSERT INTO "weather" VALUES('4/2/2014',61,53,45,44,42,39,93,70,46,30.13,30.04,29.91,10,10,10,14,6,18,0.01,3,'Rain',8,94041); +INSERT INTO "weather" VALUES('4/3/2014',64,54,44,49,43,40,89,65,40,30.14,30.1,30.04,10,10,10,17,4,21,0,1,'',319,94041); +INSERT INTO "weather" VALUES('4/4/2014',61,56,50,48,45,40,83,65,46,30.08,30.04,29.99,10,8,2,16,7,22,0.21,7,'Rain',268,94041); +INSERT INTO "weather" VALUES('4/5/2014',66,58,50,48,45,43,83,66,48,30.22,30.14,30.07,10,10,10,21,6,24,0,2,'',314,94041); +INSERT INTO "weather" VALUES('4/6/2014',77,62,47,54,48,43,80,61,41,30.25,30.19,30.12,10,10,10,14,4,16,0,0,'',344,94041); +INSERT INTO "weather" VALUES('4/7/2014',81,67,53,56,51,47,83,60,36,30.17,30.12,30.07,10,10,10,12,3,15,0,0,'',340,94041); +INSERT INTO "weather" VALUES('4/8/2014',82,70,58,59,55,51,80,61,42,30.12,30.08,30.02,10,10,10,15,4,18,0,0,'',334,94041); +INSERT INTO "weather" VALUES('4/9/2014',70,63,55,55,53,50,86,72,57,30.11,30.06,30,10,10,10,14,5,17,0,2,'',323,94041); +INSERT INTO "weather" VALUES('4/10/2014',76,65,54,55,50,41,89,59,29,30.05,30,29.91,10,9,7,14,4,17,0,3,'',321,94041); +INSERT INTO "weather" VALUES('4/11/2014',66,61,55,54,52,50,86,77,67,29.96,29.92,29.87,10,10,9,15,6,17,0,4,'',343,94041); +INSERT INTO "weather" VALUES('4/12/2014',68,61,54,52,48,46,77,65,52,29.98,29.92,29.88,10,10,10,18,6,23,0,4,'',18,94041); +INSERT INTO "weather" VALUES('4/13/2014',72,64,55,55,49,45,80,65,49,30.07,30.02,29.97,10,10,10,21,5,24,0,3,'',317,94041); +INSERT INTO "weather" VALUES('4/14/2014',72,63,54,55,52,48,86,68,49,30.14,30.09,30.04,10,10,9,15,5,21,0,3,'',345,94041); +INSERT INTO "weather" VALUES('4/15/2014',68,61,54,53,50,47,86,71,56,30.09,30.01,29.92,10,10,9,20,6,22,0,3,'',359,94041); +INSERT INTO "weather" VALUES('4/16/2014',77,64,51,54,50,46,83,62,41,29.95,29.9,29.83,10,10,9,20,7,24,0,0,'',352,94041); +INSERT INTO "weather" VALUES('4/17/2014',70,62,53,53,49,43,83,64,44,29.9,29.87,29.82,10,10,9,24,7,28,0,0,'',337,94041); +INSERT INTO "weather" VALUES('4/18/2014',69,61,52,53,47,36,77,58,39,29.98,29.93,29.89,10,10,9,21,7,24,0,0,'',354,94041); +INSERT INTO "weather" VALUES('4/19/2014',69,60,50,51,47,43,86,67,48,30.15,30.09,29.98,10,10,10,23,6,25,0,0,'',355,94041); +INSERT INTO "weather" VALUES('4/20/2014',80,66,51,54,49,36,83,52,20,30.17,30.12,30.07,10,10,10,18,5,23,0,0,'',353,94041); +INSERT INTO "weather" VALUES('4/21/2014',71,61,51,51,46,35,77,52,27,30.11,30.05,30,10,10,10,21,6,25,0,1,'',338,94041); +INSERT INTO "weather" VALUES('4/22/2014',65,58,51,50,40,31,72,50,28,30.16,30.09,29.99,10,10,9,21,10,26,'T',3,'Rain',298,94041); +INSERT INTO "weather" VALUES('4/23/2014',68,59,50,48,41,37,72,56,39,30.17,30.14,30.11,10,10,10,22,8,25,0,0,'',314,94041); +INSERT INTO "weather" VALUES('4/24/2014',68,60,52,52,49,46,83,68,52,30.14,30.08,30.01,10,10,10,23,6,28,'T',1,'Rain',324,94041); +INSERT INTO "weather" VALUES('4/25/2014',60,56,51,53,48,41,86,74,61,29.99,29.9,29.83,10,9,5,16,7,23,0.28,8,'Rain',252,94041); +INSERT INTO "weather" VALUES('4/26/2014',62,55,48,44,40,34,82,61,36,30.13,30,29.88,10,10,10,15,8,30,0,2,'',282,94041); +INSERT INTO "weather" VALUES('4/27/2014',66,59,51,49,44,40,71,60,48,30.17,30.11,30.07,10,10,10,21,9,25,'T',4,'',88,94041); +INSERT INTO "weather" VALUES('4/28/2014',72,60,48,50,42,32,80,54,28,30.25,30.2,30.17,10,10,10,16,5,22,0,0,'',328,94041); +INSERT INTO "weather" VALUES('4/29/2014',86,69,52,55,44,37,66,44,21,30.22,30.15,30.06,10,10,10,13,3,16,0,0,'',334,94041); +INSERT INTO "weather" VALUES('4/30/2014',91,75,59,54,49,46,65,44,23,30.1,30.05,30,10,10,10,15,4,17,0,0,'',342,94041); +INSERT INTO "weather" VALUES('5/1/2014',89,75,60,53,47,43,63,42,21,30.11,30.07,30.04,10,10,10,16,4,23,0,0,'',336,94041); +INSERT INTO "weather" VALUES('5/2/2014',78,67,56,54,49,43,72,50,28,30.11,30.08,30.02,10,10,10,17,5,24,0,0,'',336,94041); +INSERT INTO "weather" VALUES('5/3/2014',70,63,56,54,50,45,86,65,44,30.08,30.05,30.01,10,10,10,25,8,30,0,3,'',338,94041); +INSERT INTO "weather" VALUES('5/4/2014',72,63,53,51,48,47,77,62,47,30.08,30.06,30.02,10,10,10,23,7,28,0,1,'',313,94041); +INSERT INTO "weather" VALUES('5/5/2014',68,61,54,48,45,42,72,57,42,30.08,30.04,29.99,10,10,10,20,8,26,0,2,'',299,94041); +INSERT INTO "weather" VALUES('5/6/2014',73,63,53,45,43,38,71,50,29,29.97,29.94,29.9,10,10,10,22,7,25,0,0,'',299,94041); +INSERT INTO "weather" VALUES('5/7/2014',69,60,51,48,44,42,77,58,39,30.04,29.98,29.93,10,10,10,21,6,26,0,1,'',247,94041); +INSERT INTO "weather" VALUES('5/8/2014',71,62,53,55,49,43,78,63,48,30.12,30.08,30.05,10,10,10,14,5,17,0,6,'',271,94041); +INSERT INTO "weather" VALUES('5/9/2014',70,63,55,55,49,41,86,61,36,30.19,30.15,30.1,10,10,10,18,9,30,'T',5,'',309,94041); +INSERT INTO "weather" VALUES('5/10/2014',70,62,53,44,42,39,66,51,35,30.16,30.11,30.05,10,10,10,20,8,28,0,0,'',300,94041); +INSERT INTO "weather" VALUES('5/11/2014',79,65,51,50,38,26,72,46,19,30.12,30.08,30.03,10,10,10,18,7,24,0,0,'',317,94041); +INSERT INTO "weather" VALUES('5/12/2014',87,69,51,51,43,33,72,44,15,30.12,30.08,30.04,10,10,10,16,5,20,0,0,'',344,94041); +INSERT INTO "weather" VALUES('5/13/2014',92,75,58,57,41,28,54,33,11,30.15,30.1,30.07,10,10,10,15,4,20,0,0,'',336,94041); +INSERT INTO "weather" VALUES('5/14/2014',91,76,61,54,44,34,53,34,15,30.15,30.1,30.04,10,10,10,16,4,30,0,0,'',343,94041); +INSERT INTO "weather" VALUES('5/15/2014',87,74,61,53,45,38,60,40,19,30.11,30.09,30.05,10,10,10,21,6,24,0,0,'',349,94041); +INSERT INTO "weather" VALUES('5/16/2014',76,67,57,54,51,46,80,62,44,30.1,30.07,30.01,10,10,10,21,9,25,0,0,'',352,94041); +INSERT INTO "weather" VALUES('5/17/2014',74,65,55,53,49,42,86,65,44,30.04,30.01,29.99,10,10,10,22,8,25,0,0,'',353,94041); +INSERT INTO "weather" VALUES('5/18/2014',73,65,56,52,47,42,72,55,38,30.02,30,29.98,10,10,10,18,7,25,0,2,'',301,94041); +INSERT INTO "weather" VALUES('5/19/2014',70,63,55,50,46,45,77,59,40,30,29.98,29.96,10,10,10,17,7,24,'T',3,'',281,94041); +INSERT INTO "weather" VALUES('5/20/2014',72,63,54,53,48,46,77,59,41,30.02,30,29.97,10,10,9,21,6,24,'T',2,'Rain',312,94041); +INSERT INTO "weather" VALUES('5/21/2014',75,65,55,56,51,48,86,65,43,30,29.97,29.91,10,10,10,23,7,26,0,1,'',19,94041); +INSERT INTO "weather" VALUES('5/22/2014',73,65,57,56,52,50,80,65,49,30.05,29.98,29.95,10,10,10,18,7,23,0,3,'',16,94041); +INSERT INTO "weather" VALUES('5/23/2014',72,65,57,57,54,52,86,72,57,30.06,30.02,29.96,10,10,10,21,7,24,0,3,'',354,94041); +INSERT INTO "weather" VALUES('5/24/2014',71,65,58,56,53,51,86,73,59,30.02,29.99,29.96,10,10,10,21,8,24,0,0,'',6,94041); +INSERT INTO "weather" VALUES('5/25/2014',81,69,56,55,52,46,80,57,33,30,29.97,29.93,10,10,10,22,6,24,0,0,'',354,94041); +INSERT INTO "weather" VALUES('5/26/2014',82,69,55,58,49,29,83,53,22,30.05,30.01,29.99,10,10,10,23,6,26,0,0,'',350,94041); +INSERT INTO "weather" VALUES('5/27/2014',74,65,55,51,46,34,83,55,27,30.08,30.04,30,10,10,10,22,7,28,0,0,'',353,94041); +INSERT INTO "weather" VALUES('5/28/2014',78,66,53,48,41,36,67,46,24,30.09,30.03,29.96,10,10,10,20,7,22,0,0,'',325,94041); +INSERT INTO "weather" VALUES('5/29/2014',83,69,54,53,46,30,80,50,19,29.97,29.94,29.9,10,10,10,22,7,24,0,0,'',352,94041); +INSERT INTO "weather" VALUES('5/30/2014',70,62,53,52,49,47,89,69,48,30,29.96,29.92,10,10,8,22,8,26,0,2,'',357,94041); +INSERT INTO "weather" VALUES('5/31/2014',73,63,53,55,49,46,80,63,46,30,29.97,29.92,10,10,10,15,5,17,0,2,'',302,94041); +INSERT INTO "weather" VALUES('6/1/2014',76,66,56,55,53,50,80,63,46,29.94,29.89,29.81,10,10,8,15,5,20,0,2,'',334,94041); +INSERT INTO "weather" VALUES('6/2/2014',73,64,54,52,50,47,86,65,44,29.93,29.89,29.85,10,10,10,17,7,22,0,3,'',31,94041); +INSERT INTO "weather" VALUES('6/3/2014',72,64,56,54,51,48,86,68,49,29.96,29.92,29.88,10,10,10,16,7,20,0,3,'',34,94041); +INSERT INTO "weather" VALUES('6/4/2014',76,66,56,57,54,51,86,68,49,29.92,29.89,29.84,10,10,9,15,5,18,0,2,'',337,94041); +INSERT INTO "weather" VALUES('6/5/2014',75,66,57,57,55,53,86,72,57,29.88,29.85,29.81,10,9,7,17,6,21,0,2,'',336,94041); +INSERT INTO "weather" VALUES('6/6/2014',74,66,57,56,54,51,86,70,53,29.86,29.84,29.81,10,10,8,16,7,21,0,2,'',349,94041); +INSERT INTO "weather" VALUES('6/7/2014',75,65,54,57,54,50,86,70,53,29.87,29.84,29.79,10,10,9,15,5,21,0,3,'',18,94041); +INSERT INTO "weather" VALUES('6/8/2014',88,74,59,61,57,54,84,60,36,29.84,29.79,29.72,10,9,8,17,5,22,0,0,'',339,94041); +INSERT INTO "weather" VALUES('6/9/2014',82,73,63,60,58,56,78,61,43,29.77,29.74,29.7,10,10,10,20,6,22,0,0,'',325,94041); +INSERT INTO "weather" VALUES('6/10/2014',74,68,61,59,57,55,84,71,57,29.84,29.78,29.73,10,10,10,17,7,22,0,2,'',357,94041); +INSERT INTO "weather" VALUES('6/11/2014',76,67,58,57,54,51,80,63,46,29.92,29.87,29.83,10,10,10,20,10,23,0,0,'',51,94041); +INSERT INTO "weather" VALUES('6/12/2014',72,65,58,54,49,43,72,58,44,30.01,29.97,29.92,10,10,10,22,8,25,0,3,'',338,94041); +INSERT INTO "weather" VALUES('6/13/2014',77,66,54,55,48,41,71,50,29,30.01,29.97,29.94,10,10,10,21,6,25,0,0,'',348,94041); +INSERT INTO "weather" VALUES('6/14/2014',86,71,56,59,52,45,80,53,26,29.96,29.91,29.86,10,10,10,25,7,28,0,0,'',358,94041); +INSERT INTO "weather" VALUES('6/15/2014',73,65,56,52,48,45,77,59,41,29.89,29.85,29.83,10,10,10,23,7,26,0,0,'',297,94041); +INSERT INTO "weather" VALUES('6/16/2014',69,63,56,50,45,42,77,59,40,29.95,29.93,29.88,10,10,10,21,7,26,0,0,'',254,94041); +INSERT INTO "weather" VALUES('6/17/2014',78,65,52,53,47,43,77,54,30,29.97,29.94,29.91,10,10,10,21,8,24,0,0,'',12,94041); +INSERT INTO "weather" VALUES('6/18/2014',88,71,54,55,49,42,78,51,24,29.97,29.94,29.92,10,10,10,22,7,24,0,0,'',355,94041); +INSERT INTO "weather" VALUES('6/19/2014',75,66,56,55,53,51,86,70,53,30.02,29.99,29.96,10,10,10,24,9,28,0,0,'',356,94041); +INSERT INTO "weather" VALUES('6/20/2014',84,71,57,57,51,39,80,52,23,30.01,29.98,29.95,10,10,10,21,6,25,0,0,'',349,94041); +INSERT INTO "weather" VALUES('6/21/2014',71,64,56,54,52,50,80,67,53,29.97,29.94,29.92,10,10,9,18,7,21,0,0,'',1,94041); +INSERT INTO "weather" VALUES('6/22/2014',71,63,54,55,51,48,83,68,53,29.98,29.95,29.92,10,10,10,21,7,24,0,0,'',359,94041); +INSERT INTO "weather" VALUES('6/23/2014',74,65,56,57,52,50,86,68,49,29.99,29.96,29.93,10,10,10,20,7,23,0,2,'',45,94041); +INSERT INTO "weather" VALUES('6/24/2014',79,68,57,55,52,48,84,61,38,30.03,30,29.98,10,10,10,22,8,26,0,0,'',347,94041); +INSERT INTO "weather" VALUES('6/25/2014',76,67,58,58,56,54,87,71,54,30.02,30,29.99,10,10,10,22,8,28,0,0,'',358,94041); +INSERT INTO "weather" VALUES('6/26/2014',75,68,61,58,55,51,90,68,46,30.02,29.99,29.96,10,10,9,22,9,25,0.01,3,'Rain',330,94041); +INSERT INTO "weather" VALUES('6/27/2014',77,69,60,62,57,53,78,68,57,30.02,29.99,29.94,10,10,10,22,9,25,0,3,'',343,94041); +INSERT INTO "weather" VALUES('6/28/2014',78,69,59,57,53,43,78,56,33,29.99,29.96,29.92,10,10,10,23,8,26,0,0,'',349,94041); +INSERT INTO "weather" VALUES('6/29/2014',83,71,58,58,55,48,84,59,33,29.96,29.91,29.85,10,10,10,18,6,22,0,0,'',348,94041); +INSERT INTO "weather" VALUES('6/30/2014',86,74,62,61,57,54,84,61,37,29.86,29.83,29.8,10,10,10,17,5,21,0,0,'',339,94041); +INSERT INTO "weather" VALUES('7/1/2014',76,69,61,59,57,55,84,69,54,29.87,29.83,29.81,10,10,9,20,9,24,0,2,'',356,94041); +INSERT INTO "weather" VALUES('7/2/2014',77,69,60,58,55,53,84,67,50,29.93,29.89,29.86,10,10,4,24,9,29,0,3,'',34,94041); +INSERT INTO "weather" VALUES('7/3/2014',75,66,57,58,55,53,86,70,53,29.96,29.93,29.91,10,10,10,18,7,22,0,0,'',11,94041); +INSERT INTO "weather" VALUES('7/4/2014',74,66,57,58,55,54,87,72,57,30.03,29.97,29.92,10,10,8,18,7,22,0,1,'',342,94041); +INSERT INTO "weather" VALUES('7/5/2014',78,67,56,59,55,53,86,66,46,30.09,30.05,30.02,10,10,8,14,6,17,0,2,'',343,94041); +INSERT INTO "weather" VALUES('7/6/2014',77,66,55,58,55,52,87,67,46,30.07,30.02,29.96,10,10,10,14,6,18,0,1,'',338,94041); +INSERT INTO "weather" VALUES('7/7/2014',80,69,58,60,57,55,87,68,48,29.95,29.91,29.85,10,10,10,17,5,21,0,2,'',341,94041); +INSERT INTO "weather" VALUES('7/8/2014',76,68,60,58,57,55,90,72,54,29.94,29.9,29.87,10,10,10,18,8,22,0,2,'',350,94041); +INSERT INTO "weather" VALUES('7/9/2014',77,68,59,59,56,54,90,72,54,29.96,29.92,29.86,10,10,9,17,8,23,0,3,'',8,94041); +INSERT INTO "weather" VALUES('7/10/2014',77,68,59,58,56,53,84,67,50,29.96,29.91,29.87,10,10,6,18,9,22,0,0,'',45,94041); +INSERT INTO "weather" VALUES('7/11/2014',75,67,59,56,55,53,78,66,53,30.1,30.02,29.96,10,9,2,22,9,25,0,2,'',359,94041); +INSERT INTO "weather" VALUES('7/12/2014',71,66,60,57,55,53,84,72,59,30.11,30.08,30.04,10,10,10,20,8,23,0,4,'',340,94041); +INSERT INTO "weather" VALUES('7/13/2014',73,66,58,60,56,53,84,71,57,30.06,30,29.91,10,10,10,13,6,18,0,3,'',340,94041); +INSERT INTO "weather" VALUES('7/14/2014',81,72,62,61,59,57,90,71,51,29.94,29.9,29.87,10,10,10,14,5,18,0,0,'',330,94041); +INSERT INTO "weather" VALUES('7/15/2014',80,71,61,64,60,57,87,71,54,30.01,29.97,29.93,10,10,10,20,8,23,0,2,'',334,94041); +INSERT INTO "weather" VALUES('7/16/2014',80,72,64,61,59,56,87,68,48,30.05,30,29.96,10,10,10,25,9,29,0,3,'',4,94041); +INSERT INTO "weather" VALUES('7/17/2014',79,71,62,59,57,56,84,66,48,30.03,29.99,29.94,10,10,10,25,9,28,0,0,'',16,94041); +INSERT INTO "weather" VALUES('7/18/2014',74,68,62,59,57,55,78,68,57,30.03,29.99,29.95,10,10,10,21,9,24,0,2,'',16,94041); +INSERT INTO "weather" VALUES('7/19/2014',76,70,63,60,59,57,87,73,58,29.98,29.96,29.93,10,10,10,21,8,25,0,3,'',351,94041); +INSERT INTO "weather" VALUES('7/20/2014',78,71,64,61,60,59,87,72,56,30.01,29.97,29.94,10,10,10,22,10,26,0,4,'',351,94041); +INSERT INTO "weather" VALUES('7/21/2014',78,71,64,60,58,54,81,66,50,30.06,30.03,29.99,10,10,10,22,9,26,0,3,'',360,94041); +INSERT INTO "weather" VALUES('7/22/2014',79,72,64,59,57,55,78,64,50,30.13,30.08,30.05,10,10,10,20,7,24,'T',4,'Rain',331,94041); +INSERT INTO "weather" VALUES('7/23/2014',77,70,62,62,57,54,78,66,54,30.16,30.11,30.06,10,10,10,22,7,29,0,1,'',340,94041); +INSERT INTO "weather" VALUES('7/24/2014',85,73,61,61,58,55,90,65,40,30.07,29.96,29.85,10,10,10,21,7,23,0,1,'',358,94041); +INSERT INTO "weather" VALUES('7/25/2014',95,79,62,61,57,43,78,48,18,29.9,29.87,29.83,10,10,10,20,5,23,0,0,'',340,94041); +INSERT INTO "weather" VALUES('7/26/2014',84,74,63,62,60,57,81,64,46,29.97,29.93,29.89,10,10,8,17,6,21,0,0,'',339,94041); +INSERT INTO "weather" VALUES('7/27/2014',85,74,63,62,60,57,87,65,43,30.02,29.97,29.93,10,10,10,15,7,20,'T',1,'',328,94041); +INSERT INTO "weather" VALUES('7/28/2014',79,70,61,61,59,57,84,70,56,30.07,30.04,30.01,10,10,10,16,5,21,0,1,'',339,94041); +INSERT INTO "weather" VALUES('7/29/2014',80,72,63,61,59,58,90,69,48,30.08,30.04,29.99,10,10,10,15,7,18,0,2,'',338,94041); +INSERT INTO "weather" VALUES('7/30/2014',80,72,63,62,60,59,90,72,54,30.03,29.99,29.95,10,10,8,17,6,21,0,3,'',328,94041); +INSERT INTO "weather" VALUES('7/31/2014',78,70,62,61,59,57,90,73,56,30.01,29.96,29.9,10,10,9,14,5,18,0,3,'',340,94041); +INSERT INTO "weather" VALUES('8/1/2014',78,70,62,62,60,58,87,72,56,29.94,29.92,29.88,10,10,9,15,6,21,0,0,'',333,94041); +INSERT INTO "weather" VALUES('8/2/2014',72,67,62,59,58,57,90,78,66,29.98,29.94,29.91,10,10,9,14,7,'',0,5,'',339,94041); +INSERT INTO "weather" VALUES('8/3/2014',72,67,62,58,57,55,84,73,61,29.99,29.96,29.93,10,10,10,20,8,23,0,5,'',8,94041); +INSERT INTO "weather" VALUES('8/4/2014',75,69,62,59,57,55,84,71,57,30.02,29.98,29.95,10,10,10,17,7,22,0,3,'',357,94041); +INSERT INTO "weather" VALUES('8/5/2014',79,71,63,60,58,57,84,69,54,30.09,30.04,30.01,10,10,10,18,6,24,0,4,'',346,94041); +INSERT INTO "weather" VALUES('8/6/2014',83,73,63,64,62,59,87,67,47,30.04,30.01,29.96,10,10,8,20,6,23,'T',2,'Rain',342,94041); +INSERT INTO "weather" VALUES('8/7/2014',74,68,62,60,58,56,90,74,57,29.99,29.97,29.92,10,10,10,20,7,23,0,3,'',357,94041); +INSERT INTO "weather" VALUES('8/8/2014',77,69,60,59,56,55,84,67,50,29.96,29.93,29.89,10,10,9,17,6,20,0,1,'',8,94041); +INSERT INTO "weather" VALUES('8/9/2014',72,66,59,58,55,53,84,73,61,30.01,29.97,29.92,10,10,10,21,7,24,0,1,'',15,94041); +INSERT INTO "weather" VALUES('8/10/2014',77,69,60,58,55,52,84,69,53,30.03,29.98,29.94,10,10,10,17,6,21,0,3,'',345,94041); +INSERT INTO "weather" VALUES('8/11/2014',76,69,62,59,57,55,84,69,54,29.98,29.95,29.9,10,10,10,18,7,21,0,3,'',357,94041); +INSERT INTO "weather" VALUES('8/12/2014',77,68,59,59,56,54,84,67,50,30,29.96,29.93,10,10,10,22,7,25,0,1,'',356,94041); +INSERT INTO "weather" VALUES('8/13/2014',77,69,61,61,57,55,84,69,53,30.02,29.98,29.93,10,10,10,24,7,28,0,3,'',350,94041); +INSERT INTO "weather" VALUES('8/14/2014',76,69,61,60,58,57,90,74,58,29.99,29.95,29.9,10,10,10,18,6,23,0,2,'',346,94041); +INSERT INTO "weather" VALUES('8/15/2014',77,69,60,61,59,57,90,72,54,30.02,29.99,29.95,10,10,10,17,6,18,0,2,'',341,94041); +INSERT INTO "weather" VALUES('8/16/2014',78,69,60,60,58,57,90,72,54,30.06,30.02,29.98,10,10,9,15,6,20,0,4,'',343,94041); +INSERT INTO "weather" VALUES('8/17/2014',74,67,60,60,57,55,90,76,61,30.06,30,29.94,10,10,10,16,7,21,0,4,'',350,94041); +INSERT INTO "weather" VALUES('8/18/2014',72,67,62,59,57,55,84,73,61,29.94,29.89,29.83,10,10,8,22,7,25,0,4,'',357,94041); +INSERT INTO "weather" VALUES('8/19/2014',79,71,63,59,57,54,84,67,50,29.9,29.86,29.81,10,10,10,20,7,23,0,4,'',39,94041); +INSERT INTO "weather" VALUES('8/20/2014',79,70,60,58,56,54,84,65,45,29.94,29.9,29.87,10,10,10,17,6,21,0,2,'',13,94041); +INSERT INTO "weather" VALUES('8/21/2014',78,69,60,61,57,54,90,72,53,29.97,29.94,29.91,10,10,10,18,7,41,0,0,'',354,94041); +INSERT INTO "weather" VALUES('8/22/2014',80,71,61,61,58,56,90,69,48,29.95,29.93,29.89,10,10,9,24,8,28,0,2,'',347,94041); +INSERT INTO "weather" VALUES('8/23/2014',77,69,60,59,56,53,84,65,46,29.98,29.92,29.86,10,10,10,17,7,21,0,3,'',358,94041); +INSERT INTO "weather" VALUES('8/24/2014',76,69,61,59,56,53,84,69,53,29.93,29.88,29.83,10,10,10,20,8,24,0,3,'',28,94041); +INSERT INTO "weather" VALUES('8/25/2014',76,68,59,57,54,53,78,64,49,29.97,29.9,29.86,10,10,10,23,6,28,0,2,'',349,94041); +INSERT INTO "weather" VALUES('8/26/2014',75,67,58,58,55,52,84,67,50,30.03,29.99,29.95,10,10,10,17,6,22,0,1,'',9,94041); +INSERT INTO "weather" VALUES('8/27/2014',80,70,60,61,58,56,84,65,45,30.08,30.04,30,10,10,10,21,6,23,0,0,'',344,94041); +INSERT INTO "weather" VALUES('8/28/2014',79,70,61,61,58,56,90,68,45,30.09,30.03,29.96,10,10,10,17,5,21,0,2,'',350,94041); +INSERT INTO "weather" VALUES('8/29/2014',80,71,62,60,58,57,90,73,56,29.99,29.95,29.91,10,10,10,20,5,24,0,3,'',350,94041); +INSERT INTO "weather" VALUES('8/30/2014',81,71,61,60,58,55,90,66,42,29.94,29.91,29.88,10,10,10,23,7,26,0,0,'',344,94041); +INSERT INTO "weather" VALUES('8/31/2014',79,69,59,60,58,56,90,69,48,29.96,29.91,29.85,10,10,10,21,6,23,0,0,'',356,94041); +INSERT INTO "weather" VALUES('3/1/2014',66,59,52,51,48,44,89,73,56,29.82,29.62,29.47,10,10,7,29,14,38,0.21,5,'Rain',115,95113); +INSERT INTO "weather" VALUES('3/2/2014',63,57,50,55,50,46,86,71,56,30.18,30.01,29.83,10,10,7,20,9,24,0.02,5,'Rain',145,95113); +INSERT INTO "weather" VALUES('3/3/2014',63,56,48,54,49,46,100,82,64,30.16,30.11,30.02,10,10,7,22,8,28,0.17,6,'Rain',126,95113); +INSERT INTO "weather" VALUES('3/4/2014',68,61,53,55,54,52,93,78,63,30.12,30.08,30.04,10,10,10,22,6,28,0,7,'',136,95113); +INSERT INTO "weather" VALUES('3/5/2014',74,63,52,55,52,45,100,72,44,30.11,30.07,30.01,10,9,5,16,8,21,'T',7,'',140,95113); +INSERT INTO "weather" VALUES('3/6/2014',67,60,52,57,52,42,93,69,44,30.2,30.13,30.07,10,10,8,15,7,20,0.02,6,'Rain',297,95113); +INSERT INTO "weather" VALUES('3/7/2014',68,58,48,52,46,42,93,68,42,30.18,30.15,30.09,10,10,10,15,6,23,0,3,'',290,95113); +INSERT INTO "weather" VALUES('3/8/2014',74,60,45,52,46,39,93,63,33,30.21,30.16,30.11,10,10,10,12,3,14,0,4,'',318,95113); +INSERT INTO "weather" VALUES('3/9/2014',81,69,57,51,46,26,77,46,15,30.18,30.12,30.06,10,10,10,15,4,20,0,5,'',157,95113); +INSERT INTO "weather" VALUES('3/10/2014',69,62,55,54,48,42,80,63,45,30.23,30.17,30.11,10,9,2,20,10,23,0.01,4,'Rain',289,95113); +INSERT INTO "weather" VALUES('3/11/2014',71,63,54,44,30,19,66,42,18,30.18,30.09,30.01,10,10,10,25,11,38,0,1,'',317,95113); +INSERT INTO "weather" VALUES('3/12/2014',77,64,50,33,26,13,38,26,14,30.08,30.02,29.98,10,10,10,18,7,28,0,0,'',333,95113); +INSERT INTO "weather" VALUES('3/13/2014',77,62,46,49,34,19,83,42,11,30.08,30.03,29.97,10,10,10,14,4,'',0,0,'',299,95113); +INSERT INTO "weather" VALUES('3/14/2014',71,58,44,51,44,37,83,56,29,30.23,30.16,30.08,10,10,9,15,5,18,0,2,'',291,95113); +INSERT INTO "weather" VALUES('3/15/2014',79,64,48,51,46,40,86,56,26,30.3,30.26,30.23,10,10,10,15,5,18,0,0,'',276,95113); +INSERT INTO "weather" VALUES('3/16/2014',80,65,49,51,44,31,83,51,18,30.31,30.26,30.18,10,10,10,20,5,24,0,2,'',314,95113); +INSERT INTO "weather" VALUES('3/17/2014',69,59,48,48,45,41,86,62,37,30.26,30.11,29.98,10,10,10,18,8,23,0,3,'',286,95113); +INSERT INTO "weather" VALUES('3/18/2014',71,58,44,46,34,22,86,52,17,29.98,29.94,29.89,10,10,10,20,6,24,0,0,'',301,95113); +INSERT INTO "weather" VALUES('3/19/2014',76,61,45,42,36,33,65,43,21,30.08,30.03,29.98,10,10,10,14,4,16,0,3,'',298,95113); +INSERT INTO "weather" VALUES('3/20/2014',74,62,49,47,40,36,72,50,27,30.06,30.01,29.94,10,10,10,18,6,22,0,4,'',315,95113); +INSERT INTO "weather" VALUES('3/21/2014',70,58,46,48,45,42,86,62,37,30.01,29.97,29.93,10,10,9,17,5,21,'T',2,'',303,95113); +INSERT INTO "weather" VALUES('3/22/2014',71,59,46,49,45,42,86,62,37,30.13,30.06,30,10,10,10,15,6,17,0,1,'',178,95113); +INSERT INTO "weather" VALUES('3/23/2014',69,58,47,51,46,43,93,65,37,30.18,30.13,30.08,10,10,7,15,5,17,0,3,'',231,95113); +INSERT INTO "weather" VALUES('3/24/2014',75,61,46,47,43,33,86,54,21,30.15,30.09,30.02,10,10,10,15,6,18,0,0,'',293,95113); +INSERT INTO "weather" VALUES('3/25/2014',67,56,44,53,45,39,89,66,43,30.06,29.96,29.88,10,10,9,20,4,23,0.08,4,'Rain',250,95113); +INSERT INTO "weather" VALUES('3/26/2014',63,57,50,52,47,43,89,70,51,29.99,29.88,29.84,10,10,5,18,7,24,0.08,5,'Rain',199,95113); +INSERT INTO "weather" VALUES('3/27/2014',65,56,46,47,45,42,93,71,48,30.15,30.07,29.99,10,10,10,13,6,20,0,5,'',69,95113); +INSERT INTO "weather" VALUES('3/28/2014',71,61,50,49,47,45,89,65,40,30.2,30.15,30.1,10,10,10,15,7,18,0,5,'',132,95113); +INSERT INTO "weather" VALUES('3/29/2014',63,57,50,56,50,47,96,82,67,30.15,30.07,30.02,10,10,5,18,9,23,0.33,6,'Rain',152,95113); +INSERT INTO "weather" VALUES('3/30/2014',63,55,47,48,44,39,93,71,49,30.14,30.1,30.06,10,10,10,17,7,22,0.01,5,'Rain',286,95113); +INSERT INTO "weather" VALUES('3/31/2014',57,50,43,47,44,40,100,76,51,30.08,29.94,29.86,10,9,3,23,9,32,0.42,5,'Rain',129,95113); +INSERT INTO "weather" VALUES('4/1/2014',57,50,43,46,43,38,100,80,59,29.96,29.91,29.85,10,10,6,23,10,32,0.29,6,'Rain',128,95113); +INSERT INTO "weather" VALUES('4/2/2014',61,52,43,45,42,39,100,73,46,30.12,30.03,29.9,10,10,10,16,7,20,0.01,2,'',311,95113); +INSERT INTO "weather" VALUES('4/3/2014',66,55,43,47,42,33,96,66,36,30.12,30.08,30.03,10,10,10,16,7,21,0,4,'',149,95113); +INSERT INTO "weather" VALUES('4/4/2014',61,55,49,49,46,41,86,69,51,30.06,30.03,29.98,10,9,2,16,8,22,0.09,6,'Rain',234,95113); +INSERT INTO "weather" VALUES('4/5/2014',67,59,50,47,45,43,86,64,42,30.21,30.13,30.06,10,10,10,21,8,23,0,3,'',306,95113); +INSERT INTO "weather" VALUES('4/6/2014',76,61,46,51,47,43,93,65,36,30.24,30.18,30.1,10,10,10,16,5,23,0,2,'',288,95113); +INSERT INTO "weather" VALUES('4/7/2014',82,68,53,53,50,46,83,59,34,30.15,30.1,30.05,10,10,10,15,4,18,0,0,'',307,95113); +INSERT INTO "weather" VALUES('4/8/2014',87,72,56,55,52,47,80,54,28,30.11,30.06,30.01,10,10,10,17,4,21,0,4,'',285,95113); +INSERT INTO "weather" VALUES('4/9/2014',75,65,54,55,52,44,93,64,35,30.09,30.05,29.98,10,10,9,13,5,18,0,4,'',297,95113); +INSERT INTO "weather" VALUES('4/10/2014',80,66,52,56,50,38,96,60,23,30.04,29.98,29.89,10,9,5,13,4,14,0,5,'',300,95113); +INSERT INTO "weather" VALUES('4/11/2014',70,62,54,54,51,48,93,75,57,29.95,29.91,29.84,10,10,8,14,6,17,0,6,'',305,95113); +INSERT INTO "weather" VALUES('4/12/2014',71,62,53,51,48,45,77,59,41,29.96,29.9,29.86,10,10,10,18,7,22,0,4,'',200,95113); +INSERT INTO "weather" VALUES('4/13/2014',75,65,54,53,48,46,80,61,41,30.06,30,29.95,10,10,10,18,6,22,0,3,'',281,95113); +INSERT INTO "weather" VALUES('4/14/2014',76,64,51,54,49,38,89,57,25,30.12,30.07,30.03,10,9,5,13,5,16,0,2,'',278,95113); +INSERT INTO "weather" VALUES('4/15/2014',72,59,45,52,50,46,89,68,47,30.06,30,29.91,10,10,8,17,6,20,0,3,'',310,95113); +INSERT INTO "weather" VALUES('4/16/2014',79,64,49,50,47,45,83,58,32,29.94,29.88,29.81,10,10,9,16,6,20,0,2,'',305,95113); +INSERT INTO "weather" VALUES('4/17/2014',73,63,52,52,50,46,83,66,49,29.89,29.85,29.8,10,10,9,21,6,25,0,3,'',316,95113); +INSERT INTO "weather" VALUES('4/18/2014',71,61,51,52,48,44,83,64,44,29.96,29.91,29.88,10,10,10,20,6,22,0,2,'',322,95113); +INSERT INTO "weather" VALUES('4/19/2014',69,60,50,52,47,37,86,60,34,30.14,30.07,29.97,10,10,10,20,7,26,0,2,'',342,95113); +INSERT INTO "weather" VALUES('4/20/2014',80,65,50,52,46,38,89,55,21,30.14,30.1,30.05,10,10,10,20,5,25,0,1,'',296,95113); +INSERT INTO "weather" VALUES('4/21/2014',74,62,50,49,44,38,77,53,29,30.09,30.04,29.99,10,10,10,24,6,29,0,5,'',302,95113); +INSERT INTO "weather" VALUES('4/22/2014',65,58,50,48,40,27,83,54,24,30.14,30.07,29.97,10,10,10,24,15,31,'T',4,'',291,95113); +INSERT INTO "weather" VALUES('4/23/2014',67,57,47,48,40,35,83,59,34,30.15,30.12,30.09,10,10,10,21,8,26,0,3,'',298,95113); +INSERT INTO "weather" VALUES('4/24/2014',68,59,50,52,48,45,83,66,48,30.13,30.07,29.99,10,10,10,21,7,25,'T',5,'Rain',304,95113); +INSERT INTO "weather" VALUES('4/25/2014',61,56,50,53,48,41,93,77,60,29.97,29.88,29.82,10,9,5,21,7,26,0.25,7,'Rain',240,95113); +INSERT INTO "weather" VALUES('4/26/2014',63,55,48,45,40,34,83,62,35,30.11,29.97,29.86,10,10,10,17,11,26,0,6,'',273,95113); +INSERT INTO "weather" VALUES('4/27/2014',67,59,51,48,44,41,71,60,48,30.15,30.09,30.05,10,10,10,22,9,28,0,5,'',273,95113); +INSERT INTO "weather" VALUES('4/28/2014',73,60,47,48,43,36,77,55,32,30.23,30.18,30.15,10,10,10,21,7,25,0,1,'',302,95113); +INSERT INTO "weather" VALUES('4/29/2014',86,67,48,46,43,39,77,48,19,30.2,30.13,30.04,10,10,10,15,4,20,0,3,'',311,95113); +INSERT INTO "weather" VALUES('4/30/2014',93,76,58,49,46,42,67,43,18,30.09,30.04,29.99,10,10,10,16,5,18,0,3,'',291,95113); +INSERT INTO "weather" VALUES('5/1/2014',92,75,58,48,45,35,60,41,21,30.09,30.06,30.03,10,10,10,22,6,26,0,3,'',290,95113); +INSERT INTO "weather" VALUES('5/2/2014',84,69,54,53,45,38,86,53,20,30.09,30.06,30.01,10,10,10,18,6,23,0,4,'',309,95113); +INSERT INTO "weather" VALUES('5/3/2014',69,62,54,54,49,46,93,69,45,30.06,30.04,30,10,10,10,22,10,29,0,4,'',314,95113); +INSERT INTO "weather" VALUES('5/4/2014',71,62,52,50,48,46,83,65,47,30.07,30.04,30.01,10,10,10,22,9,28,0,4,'',296,95113); +INSERT INTO "weather" VALUES('5/5/2014',67,60,53,49,46,41,77,60,43,30.07,30.02,29.97,10,10,10,22,11,30,0,4,'',286,95113); +INSERT INTO "weather" VALUES('5/6/2014',71,61,50,46,43,37,72,52,31,29.97,29.92,29.88,10,10,10,24,10,31,0,1,'',311,95113); +INSERT INTO "weather" VALUES('5/7/2014',70,59,48,46,44,41,80,60,40,30.03,29.97,29.92,10,10,6,21,7,26,0,4,'',145,95113); +INSERT INTO "weather" VALUES('5/8/2014',70,60,50,54,48,43,77,65,52,30.09,30.06,30.04,10,10,10,14,5,17,'T',6,'Rain',184,95113); +INSERT INTO "weather" VALUES('5/9/2014',70,62,53,55,50,40,93,64,35,30.17,30.13,30.09,10,10,8,23,13,28,0,5,'',304,95113); +INSERT INTO "weather" VALUES('5/10/2014',69,60,51,44,42,37,77,55,32,30.15,30.09,30.04,10,10,10,29,11,32,0,1,'',299,95113); +INSERT INTO "weather" VALUES('5/11/2014',78,63,48,45,38,31,80,49,18,30.1,30.06,30.01,10,10,10,25,9,30,0,1,'',299,95113); +INSERT INTO "weather" VALUES('5/12/2014',86,68,50,45,37,30,59,36,13,30.1,30.07,30.02,10,10,10,20,7,25,0,2,'',311,95113); +INSERT INTO "weather" VALUES('5/13/2014',95,75,55,44,38,25,55,32,9,30.14,30.09,30.04,10,10,10,18,5,25,0,0,'',286,95113); +INSERT INTO "weather" VALUES('5/14/2014',94,76,57,43,37,31,51,32,12,30.14,30.08,30.03,10,10,10,18,7,22,0,2,'',318,95113); +INSERT INTO "weather" VALUES('5/15/2014',89,74,58,45,36,22,48,29,9,30.1,30.07,30.04,10,10,10,22,7,26,0,4,'',312,95113); +INSERT INTO "weather" VALUES('5/16/2014',78,67,56,53,48,40,83,59,35,30.09,30.05,30,10,10,10,18,8,22,0,4,'',312,95113); +INSERT INTO "weather" VALUES('5/17/2014',72,63,54,51,49,42,86,65,44,30.02,30,29.98,10,10,10,20,8,23,0,4,'',318,95113); +INSERT INTO "weather" VALUES('5/18/2014',72,64,56,52,47,42,72,60,47,30.01,29.99,29.96,10,10,10,24,11,28,0,2,'',308,95113); +INSERT INTO "weather" VALUES('5/19/2014',71,61,51,48,46,44,77,59,40,29.99,29.96,29.94,10,10,10,22,9,39,0,5,'',284,95113); +INSERT INTO "weather" VALUES('5/20/2014',72,63,53,51,48,46,80,61,41,30.01,29.98,29.95,10,10,10,21,7,25,0,5,'',308,95113); +INSERT INTO "weather" VALUES('5/21/2014',77,66,55,53,50,48,86,63,39,29.98,29.95,29.9,10,10,10,20,7,24,0,3,'',51,95113); +INSERT INTO "weather" VALUES('5/22/2014',76,66,55,55,51,49,83,63,43,30.04,29.96,29.93,10,10,10,20,6,23,0,5,'',16,95113); +INSERT INTO "weather" VALUES('5/23/2014',76,66,56,55,54,52,93,70,46,30.04,30,29.94,10,9,4,18,6,22,0,5,'',307,95113); +INSERT INTO "weather" VALUES('5/24/2014',74,65,55,55,52,48,86,70,53,30.01,29.98,29.94,10,10,10,21,7,24,0,2,'',304,95113); +INSERT INTO "weather" VALUES('5/25/2014',83,69,54,50,48,42,83,55,26,29.98,29.95,29.92,10,10,10,18,7,22,0,1,'',315,95113); +INSERT INTO "weather" VALUES('5/26/2014',82,68,54,53,48,31,83,55,26,30.04,30,29.97,10,10,10,20,8,25,0,0,'',314,95113); +INSERT INTO "weather" VALUES('5/27/2014',74,63,52,49,46,43,83,59,35,30.06,30.03,29.99,10,10,10,22,8,26,0,0,'',313,95113); +INSERT INTO "weather" VALUES('5/28/2014',76,64,52,50,42,34,77,49,21,30.07,30.01,29.95,10,10,10,22,10,26,0,0,'',312,95113); +INSERT INTO "weather" VALUES('5/29/2014',83,68,53,50,41,19,77,44,10,29.96,29.93,29.88,10,10,10,18,7,23,0,1,'',294,95113); +INSERT INTO "weather" VALUES('5/30/2014',69,61,52,52,49,46,89,69,48,29.99,29.95,29.92,10,9,7,21,9,28,0,2,'',314,95113); +INSERT INTO "weather" VALUES('5/31/2014',76,66,55,54,49,45,80,58,35,29.98,29.95,29.89,10,10,10,14,6,18,0,3,'',308,95113); +INSERT INTO "weather" VALUES('6/1/2014',80,66,52,54,50,46,86,61,35,29.93,29.87,29.78,10,10,9,16,7,20,0,1,'',294,95113); +INSERT INTO "weather" VALUES('6/2/2014',75,63,51,52,49,46,89,67,44,29.92,29.87,29.84,10,10,10,21,10,24,0,1,'',103,95113); +INSERT INTO "weather" VALUES('6/3/2014',78,66,54,53,49,45,83,58,33,29.94,29.9,29.86,10,10,10,16,9,20,0,1,'',209,95113); +INSERT INTO "weather" VALUES('6/4/2014',80,66,52,56,51,48,89,65,40,29.91,29.87,29.82,10,10,10,16,6,20,0,1,'',275,95113); +INSERT INTO "weather" VALUES('6/5/2014',81,68,55,57,53,48,93,64,35,29.87,29.83,29.79,10,10,8,16,6,20,0,1,'',284,95113); +INSERT INTO "weather" VALUES('6/6/2014',77,65,53,56,52,47,89,64,38,29.85,29.82,29.78,10,10,10,15,8,20,0,0,'',282,95113); +INSERT INTO "weather" VALUES('6/7/2014',79,66,53,57,53,48,89,66,43,29.86,29.82,29.77,10,10,9,15,7,18,0,1,'',277,95113); +INSERT INTO "weather" VALUES('6/8/2014',92,75,58,57,53,48,84,55,26,29.83,29.77,29.71,10,10,8,20,5,23,0,0,'',304,95113); +INSERT INTO "weather" VALUES('6/9/2014',88,76,63,62,56,50,87,61,35,29.76,29.72,29.68,10,10,10,18,6,22,0,0,'',286,95113); +INSERT INTO "weather" VALUES('6/10/2014',77,67,57,59,55,52,86,70,53,29.82,29.76,29.72,10,10,9,16,8,22,0,0,'',214,95113); +INSERT INTO "weather" VALUES('6/11/2014',79,68,57,56,53,51,80,60,40,29.91,29.85,29.82,10,10,10,18,10,23,0,1,'',165,95113); +INSERT INTO "weather" VALUES('6/12/2014',72,65,57,52,50,47,77,62,47,29.99,29.95,29.91,10,10,10,21,9,24,0,3,'',309,95113); +INSERT INTO "weather" VALUES('6/13/2014',79,66,53,51,47,42,77,54,31,29.99,29.96,29.92,10,10,9,21,7,24,0,0,'',302,95113); +INSERT INTO "weather" VALUES('6/14/2014',88,72,55,53,49,34,80,48,15,29.94,29.89,29.84,10,10,10,22,6,28,0,2,'',316,95113); +INSERT INTO "weather" VALUES('6/15/2014',74,64,54,51,49,47,77,61,44,29.88,29.83,29.81,10,10,10,22,8,28,0,4,'',330,95113); +INSERT INTO "weather" VALUES('6/16/2014',71,62,53,50,45,40,83,58,33,29.93,29.91,29.87,10,10,10,21,7,24,0,1,'',271,95113); +INSERT INTO "weather" VALUES('6/17/2014',78,65,52,48,44,37,83,54,24,29.96,29.92,29.9,10,10,10,21,10,24,0,1,'',295,95113); +INSERT INTO "weather" VALUES('6/18/2014',88,71,53,52,42,30,72,43,13,29.96,29.93,29.9,10,10,10,22,7,26,0,0,'',296,95113); +INSERT INTO "weather" VALUES('6/19/2014',77,66,55,53,51,48,86,62,38,30,29.97,29.94,10,10,10,18,8,22,0,1,'',295,95113); +INSERT INTO "weather" VALUES('6/20/2014',83,70,56,52,48,41,83,55,26,29.99,29.96,29.93,10,10,10,23,7,28,0,4,'',307,95113); +INSERT INTO "weather" VALUES('6/21/2014',72,63,54,51,49,45,83,61,38,29.95,29.92,29.9,10,10,10,15,6,21,0,3,'',307,95113); +INSERT INTO "weather" VALUES('6/22/2014',74,64,53,52,50,47,83,62,41,29.97,29.93,29.91,10,10,10,21,6,26,0,1,'',317,95113); +INSERT INTO "weather" VALUES('6/23/2014',78,66,53,52,50,47,86,62,38,29.97,29.94,29.91,10,9,6,18,7,22,0,3,'',315,95113); +INSERT INTO "weather" VALUES('6/24/2014',75,66,57,54,51,48,72,57,41,30.01,29.99,29.97,10,10,10,21,7,26,0,1,'',318,95113); +INSERT INTO "weather" VALUES('6/25/2014',74,66,57,58,55,53,86,72,57,30.01,29.99,29.97,10,10,10,20,8,28,0,4,'',320,95113); +INSERT INTO "weather" VALUES('6/26/2014',77,69,60,59,54,49,90,64,38,30.01,29.98,29.94,10,10,10,22,10,25,0.01,4,'',318,95113); +INSERT INTO "weather" VALUES('6/27/2014',78,69,59,60,55,53,87,69,50,30,29.97,29.93,10,10,10,21,9,25,0,3,'',319,95113); +INSERT INTO "weather" VALUES('6/28/2014',77,68,59,56,53,49,78,61,43,29.97,29.95,29.91,10,10,10,21,9,28,0,1,'',322,95113); +INSERT INTO "weather" VALUES('6/29/2014',87,72,57,56,52,46,80,56,32,29.95,29.89,29.83,10,10,10,17,5,21,0,0,'',299,95113); +INSERT INTO "weather" VALUES('6/30/2014',92,77,62,58,55,49,84,54,24,29.84,29.81,29.77,10,10,10,17,6,20,0,4,'',288,95113); +INSERT INTO "weather" VALUES('7/1/2014',79,68,57,59,55,52,84,66,48,29.86,29.82,29.79,10,10,10,16,8,21,0,1,'',238,95113); +INSERT INTO "weather" VALUES('7/2/2014',81,69,57,58,54,52,86,64,42,29.91,29.87,29.84,10,10,10,22,8,25,0,2,'',113,95113); +INSERT INTO "weather" VALUES('7/3/2014',81,69,56,58,54,52,93,68,43,29.94,29.91,29.88,10,10,8,16,7,21,0,0,'',213,95113); +INSERT INTO "weather" VALUES('7/4/2014',79,69,58,58,55,51,87,65,42,30.02,29.95,29.9,10,10,8,17,7,21,0,0,'',293,95113); +INSERT INTO "weather" VALUES('7/5/2014',82,70,57,57,54,47,86,60,33,30.07,30.03,30,10,9,5,15,6,18,0,2,'',298,95113); +INSERT INTO "weather" VALUES('7/6/2014',82,70,57,56,54,50,93,64,35,30.06,30,29.93,10,10,10,13,6,17,0,1,'',294,95113); +INSERT INTO "weather" VALUES('7/7/2014',82,71,59,58,56,55,87,66,45,29.94,29.89,29.83,10,10,10,14,5,17,0,4,'',299,95113); +INSERT INTO "weather" VALUES('7/8/2014',80,70,59,59,55,51,84,65,46,29.92,29.89,29.86,10,10,10,15,7,21,0,2,'',294,95113); +INSERT INTO "weather" VALUES('7/9/2014',80,69,57,59,55,52,86,65,43,29.94,29.9,29.85,10,10,10,15,9,20,0,0,'',179,95113); +INSERT INTO "weather" VALUES('7/10/2014',80,69,58,58,55,53,86,66,45,29.94,29.9,29.85,10,10,10,17,9,24,0,1,'',171,95113); +INSERT INTO "weather" VALUES('7/11/2014',76,68,59,56,54,53,78,64,49,30.08,30,29.94,10,10,10,20,9,24,0,2,'',250,95113); +INSERT INTO "weather" VALUES('7/12/2014',73,66,58,57,54,53,80,69,57,30.09,30.06,30.02,10,10,10,18,8,22,0,4,'',305,95113); +INSERT INTO "weather" VALUES('7/13/2014',77,68,58,59,56,54,87,69,50,30.05,29.98,29.89,10,10,10,13,6,15,0,5,'',304,95113); +INSERT INTO "weather" VALUES('7/14/2014',86,74,62,60,58,55,84,63,42,29.93,29.89,29.86,10,10,9,16,5,24,0,3,'',284,95113); +INSERT INTO "weather" VALUES('7/15/2014',83,72,61,63,59,55,90,72,53,29.99,29.95,29.92,10,10,10,14,7,22,'T',4,'',291,95113); +INSERT INTO "weather" VALUES('7/16/2014',83,73,62,61,58,56,90,67,43,30.03,29.99,29.95,10,10,10,21,8,25,0,3,'',277,95113); +INSERT INTO "weather" VALUES('7/17/2014',78,69,60,58,56,55,84,67,50,30.01,29.98,29.94,10,10,10,20,8,25,0,1,'',330,95113); +INSERT INTO "weather" VALUES('7/18/2014',76,69,61,58,56,55,84,69,53,30.01,29.98,29.93,10,10,10,16,9,21,0,3,'',187,95113); +INSERT INTO "weather" VALUES('7/19/2014',78,70,62,59,57,55,84,67,50,29.97,29.94,29.91,10,10,10,16,7,21,'T',5,'',313,95113); +INSERT INTO "weather" VALUES('7/20/2014',78,71,63,61,59,58,90,71,52,29.99,29.95,29.93,10,10,10,18,8,24,0,5,'',310,95113); +INSERT INTO "weather" VALUES('7/21/2014',79,71,62,60,57,56,78,63,48,30.04,30.01,29.98,10,10,10,18,8,23,0,3,'',273,95113); +INSERT INTO "weather" VALUES('7/22/2014',79,71,62,59,56,55,84,66,48,30.11,30.06,30.04,10,10,10,20,8,24,'T',4,'Rain',319,95113); +INSERT INTO "weather" VALUES('7/23/2014',78,69,59,60,56,54,84,65,45,30.14,30.1,30.05,10,10,10,20,8,26,0,2,'',308,95113); +INSERT INTO "weather" VALUES('7/24/2014',85,72,59,59,56,52,90,65,39,30.05,29.94,29.83,10,10,10,18,7,23,0,1,'',305,95113); +INSERT INTO "weather" VALUES('7/25/2014',94,78,61,59,52,42,78,48,17,29.88,29.85,29.81,10,10,10,18,6,22,0,1,'',299,95113); +INSERT INTO "weather" VALUES('7/26/2014',88,75,61,61,55,48,78,59,39,29.96,29.9,29.87,10,10,10,17,7,21,0,2,'',282,95113); +INSERT INTO "weather" VALUES('7/27/2014',86,74,62,60,59,56,87,62,37,30,29.95,29.9,10,10,10,14,6,17,0,3,'',297,95113); +INSERT INTO "weather" VALUES('7/28/2014',82,71,60,60,58,54,90,68,45,30.05,30.02,29.99,10,10,10,15,5,18,0,4,'',294,95113); +INSERT INTO "weather" VALUES('7/29/2014',83,73,62,61,58,54,90,65,39,30.06,30.02,29.96,10,10,10,15,7,18,0,1,'',292,95113); +INSERT INTO "weather" VALUES('7/30/2014',82,72,61,61,59,58,97,74,51,30.01,29.98,29.93,10,10,9,15,7,18,0,2,'',306,95113); +INSERT INTO "weather" VALUES('7/31/2014',80,71,61,61,59,57,97,74,51,29.99,29.94,29.88,10,10,8,14,6,15,0,4,'',298,95113); +INSERT INTO "weather" VALUES('8/1/2014',82,71,60,61,60,56,97,73,48,29.91,29.9,29.86,10,10,8,16,6,20,0,2,'',297,95113); +INSERT INTO "weather" VALUES('8/2/2014',75,68,60,59,58,57,97,79,61,29.96,29.92,29.89,10,9,7,15,7,17,0,4,'',302,95113); +INSERT INTO "weather" VALUES('8/3/2014',74,66,58,58,56,55,93,75,57,29.97,29.94,29.91,10,10,10,16,7,21,0,6,'',328,95113); +INSERT INTO "weather" VALUES('8/4/2014',79,69,59,58,56,54,84,66,48,30.01,29.96,29.94,10,10,10,18,8,22,0,5,'',319,95113); +INSERT INTO "weather" VALUES('8/5/2014',80,71,62,61,58,57,84,67,50,30.07,30.02,30,10,10,10,21,6,26,0,5,'',317,95113); +INSERT INTO "weather" VALUES('8/6/2014',85,74,62,62,60,58,84,65,45,30.03,29.99,29.94,10,10,10,18,7,22,'T',4,'',300,95113); +INSERT INTO "weather" VALUES('8/7/2014',78,70,62,60,57,56,84,69,53,29.98,29.95,29.9,10,10,7,16,6,20,0,3,'',302,95113); +INSERT INTO "weather" VALUES('8/8/2014',80,69,58,58,55,54,87,65,42,29.94,29.91,29.86,10,10,7,15,6,18,0,3,'',285,95113); +INSERT INTO "weather" VALUES('8/9/2014',75,67,58,57,55,53,86,70,53,30,29.95,29.91,10,10,8,16,8,20,0,2,'',309,95113); +INSERT INTO "weather" VALUES('8/10/2014',80,70,59,58,55,53,78,62,45,30.01,29.97,29.92,10,10,10,16,6,18,0,5,'',3,95113); +INSERT INTO "weather" VALUES('8/11/2014',79,69,58,58,56,54,87,68,48,29.96,29.93,29.88,10,10,10,14,6,18,0,1,'',258,95113); +INSERT INTO "weather" VALUES('8/12/2014',79,69,59,57,55,52,78,61,43,29.99,29.94,29.91,10,10,10,17,9,21,0,3,'',272,95113); +INSERT INTO "weather" VALUES('8/13/2014',81,71,61,58,56,54,84,63,42,30,29.96,29.92,10,10,10,20,8,24,0,3,'',313,95113); +INSERT INTO "weather" VALUES('8/14/2014',79,70,61,60,57,55,90,68,45,29.97,29.93,29.88,10,10,10,16,6,20,0,3,'',299,95113); +INSERT INTO "weather" VALUES('8/15/2014',81,69,57,59,56,54,84,63,42,30,29.97,29.93,10,10,10,14,7,17,0,1,'',230,95113); +INSERT INTO "weather" VALUES('8/16/2014',80,70,60,58,56,54,90,68,45,30.05,30,29.96,10,10,8,16,6,20,0,3,'',302,95113); +INSERT INTO "weather" VALUES('8/17/2014',77,68,59,59,57,55,90,72,53,30.04,29.99,29.91,10,10,7,15,6,20,0,3,'',303,95113); +INSERT INTO "weather" VALUES('8/18/2014',76,68,59,59,57,55,90,72,53,29.92,29.87,29.82,10,10,8,17,6,22,0,4,'',327,95113); +INSERT INTO "weather" VALUES('8/19/2014',79,70,61,59,56,55,84,66,48,29.88,29.84,29.79,10,10,9,15,7,20,0,5,'',145,95113); +INSERT INTO "weather" VALUES('8/20/2014',81,71,60,58,56,51,84,60,36,29.93,29.88,29.85,10,10,10,16,9,21,0,3,'',145,95113); +INSERT INTO "weather" VALUES('8/21/2014',80,70,59,61,56,54,84,65,45,29.95,29.92,29.89,10,10,10,16,8,21,0,0,'',212,95113); +INSERT INTO "weather" VALUES('8/22/2014',81,71,60,59,56,53,84,64,43,29.94,29.91,29.88,10,10,10,21,8,24,0,1,'',312,95113); +INSERT INTO "weather" VALUES('8/23/2014',79,70,60,58,55,48,90,63,36,29.96,29.9,29.85,10,10,10,16,8,22,0,3,'',16,95113); +INSERT INTO "weather" VALUES('8/24/2014',77,68,58,57,55,54,84,67,50,29.91,29.87,29.8,10,10,10,17,8,21,0,2,'',284,95113); +INSERT INTO "weather" VALUES('8/25/2014',77,68,58,56,54,54,84,66,47,29.95,29.88,29.84,10,10,10,20,8,23,0,3,'',235,95113); +INSERT INTO "weather" VALUES('8/26/2014',77,67,56,57,54,51,80,63,46,30.01,29.98,29.93,10,10,10,15,5,24,0,1,'',275,95113); +INSERT INTO "weather" VALUES('8/27/2014',83,72,60,59,56,52,84,60,36,30.07,30.02,29.98,10,10,10,16,6,20,0,0,'',282,95113); +INSERT INTO "weather" VALUES('8/28/2014',82,71,60,60,58,55,90,66,42,30.08,30.02,29.94,10,9,7,15,6,26,0,2,'',309,95113); +INSERT INTO "weather" VALUES('8/29/2014',83,72,60,60,58,56,90,65,40,29.97,29.93,29.87,10,9,7,21,5,24,0,6,'',304,95113); +INSERT INTO "weather" VALUES('8/30/2014',86,74,61,59,56,50,90,62,34,29.92,29.89,29.86,10,10,10,21,6,24,0,1,'',317,95113); +INSERT INTO "weather" VALUES('8/31/2014',82,70,58,58,56,53,90,66,42,29.94,29.89,29.83,10,10,10,20,6,22,0,0,'',294,95113); +INSERT INTO "weather" VALUES('9/1/2014',83,70,57,58,56,52,86,64,42,29.86,29.82,29.76,10,10,8,16,7,20,0,0,'',290,94107); +INSERT INTO "weather" VALUES('9/2/2014',72,66,60,58,57,55,84,73,61,29.87,29.82,29.79,10,10,7,21,8,'',0,5,'',290,94107); +INSERT INTO "weather" VALUES('9/3/2014',76,69,61,57,56,55,84,69,53,29.81,29.76,29.72,10,10,10,21,8,24,0,4,'',276,94107); +INSERT INTO "weather" VALUES('9/4/2014',74,68,61,57,57,56,84,71,57,29.81,29.76,29.72,10,10,8,22,8,25,0,5,'',301,94107); +INSERT INTO "weather" VALUES('9/5/2014',72,66,60,57,56,54,84,71,57,29.92,29.87,29.81,10,9,7,18,8,32,0,4,'',309,94107); +INSERT INTO "weather" VALUES('9/6/2014',72,66,60,55,54,52,84,69,53,29.98,29.93,29.89,10,9,7,17,9,30,0,4,'',290,94107); +INSERT INTO "weather" VALUES('9/7/2014',72,66,60,54,53,45,78,66,53,29.92,29.87,29.82,10,10,10,18,10,28,0,3,'',293,94107); +INSERT INTO "weather" VALUES('9/8/2014',68,64,59,52,51,50,72,64,55,29.96,29.9,29.86,10,10,10,18,12,22,0,4,'',272,94107); +INSERT INTO "weather" VALUES('9/9/2014',72,65,57,56,53,52,87,72,57,30.01,29.96,29.91,10,10,10,17,7,21,0,5,'',270,94107); +INSERT INTO "weather" VALUES('9/10/2014',82,68,54,59,56,51,93,66,39,29.96,29.9,29.83,10,9,5,16,5,20,0,1,'',283,94107); +INSERT INTO "weather" VALUES('9/11/2014',83,70,57,59,57,50,90,62,33,29.91,29.87,29.82,10,8,2,20,7,22,0,2,'',312,94107); +INSERT INTO "weather" VALUES('9/12/2014',77,67,57,59,56,54,87,69,50,29.91,29.85,29.8,10,9,6,15,8,23,0,1,'',299,94107); +INSERT INTO "weather" VALUES('9/13/2014',75,67,59,59,57,55,84,71,57,29.87,29.83,29.78,10,10,9,22,8,33,0,4,'',306,94107); +INSERT INTO "weather" VALUES('9/14/2014',74,67,60,57,56,55,84,69,53,29.87,29.84,29.81,10,10,9,18,8,28,0,2,'',295,94107); +INSERT INTO "weather" VALUES('9/15/2014',77,70,62,58,56,53,84,64,43,29.94,29.9,29.85,10,10,10,18,9,49,0,3,'',281,94107); +INSERT INTO "weather" VALUES('9/16/2014',78,68,58,60,57,54,87,67,47,29.95,29.89,29.81,10,10,8,18,7,21,0,4,'',276,94107); +INSERT INTO "weather" VALUES('9/17/2014',77,69,61,64,58,55,84,67,50,29.83,29.8,29.75,10,10,9,21,9,29,'T',5,'Rain',267,94107); +INSERT INTO "weather" VALUES('9/18/2014',78,70,61,65,62,58,87,71,54,29.9,29.84,29.78,10,10,6,20,9,29,'T',5,'Rain',242,94107); +INSERT INTO "weather" VALUES('9/19/2014',73,66,59,61,60,59,93,79,64,29.93,29.9,29.86,10,10,8,23,7,31,0,5,'',295,94107); +INSERT INTO "weather" VALUES('9/20/2014',71,67,63,60,59,57,90,79,68,29.95,29.92,29.89,10,10,10,20,9,23,0,6,'',296,94107); +INSERT INTO "weather" VALUES('9/21/2014',69,67,64,59,58,57,78,72,66,30.02,29.99,29.94,10,10,10,22,11,28,0,8,'',269,94107); +INSERT INTO "weather" VALUES('9/22/2014',75,69,63,58,57,55,78,66,53,30.04,30,29.96,10,10,10,18,9,21,0,4,'',277,94107); +INSERT INTO "weather" VALUES('9/23/2014',75,69,63,63,59,57,87,76,64,30.02,29.97,29.93,10,10,7,18,8,23,'T',5,'Rain',276,94107); +INSERT INTO "weather" VALUES('9/24/2014',77,71,65,63,62,60,87,74,60,29.97,29.94,29.89,10,9,5,20,9,26,0.01,6,'Rain',267,94107); +INSERT INTO "weather" VALUES('9/25/2014',72,65,58,59,57,56,100,79,57,30.02,29.96,29.91,10,8,2,21,6,24,0.43,6,'Rain',288,94107); +INSERT INTO "weather" VALUES('9/26/2014',73,67,60,59,57,54,90,72,53,30.01,29.96,29.9,10,10,10,25,9,29,0,4,'',290,94107); +INSERT INTO "weather" VALUES('9/27/2014',71,63,55,59,56,52,93,75,57,29.94,29.89,29.84,10,10,10,18,9,24,0,3,'',248,94107); +INSERT INTO "weather" VALUES('9/28/2014',72,67,61,57,56,55,84,73,61,29.96,29.89,29.83,10,10,10,15,7,17,0,6,'',219,94107); +INSERT INTO "weather" VALUES('9/29/2014',69,63,57,57,56,55,90,77,63,30.05,29.99,29.96,10,10,8,20,8,28,0,5,'',278,94107); +INSERT INTO "weather" VALUES('9/30/2014',73,65,57,58,57,54,90,74,57,30.05,29.95,29.85,10,10,9,16,7,18,0,4,'',253,94107); +INSERT INTO "weather" VALUES('10/1/2014',83,68,53,60,51,40,93,58,22,29.98,29.9,29.85,10,10,8,15,4,31,0,1,'',283,94107); +INSERT INTO "weather" VALUES('10/2/2014',87,70,52,61,48,42,72,51,29,30.04,29.99,29.94,10,10,9,14,6,18,0,0,'',309,94107); +INSERT INTO "weather" VALUES('10/3/2014',89,72,55,59,49,42,72,47,21,30.1,30.04,29.99,10,10,10,15,5,20,0,0,'',289,94107); +INSERT INTO "weather" VALUES('10/4/2014',92,74,55,55,46,40,73,46,19,30.04,29.99,29.92,10,10,10,14,4,17,0,1,'',323,94107); +INSERT INTO "weather" VALUES('10/5/2014',88,71,53,57,52,45,84,55,26,29.97,29.92,29.87,10,10,10,15,5,35,0,1,'',317,94107); +INSERT INTO "weather" VALUES('10/6/2014',83,68,52,60,55,50,93,65,36,29.94,29.9,29.84,10,10,7,15,6,62,0,1,'Fog',298,94107); +INSERT INTO "weather" VALUES('10/7/2014',73,62,51,58,54,50,96,77,57,29.95,29.9,29.86,10,9,2,18,7,21,0,2,'Fog',296,94107); +INSERT INTO "weather" VALUES('10/8/2014',75,64,52,59,55,51,93,73,53,29.93,29.89,29.85,10,9,7,16,5,17,0,1,'',310,94107); +INSERT INTO "weather" VALUES('10/9/2014',66,62,57,56,55,53,93,80,67,30.01,29.96,29.92,10,10,10,17,9,20,0,4,'',288,94107); +INSERT INTO "weather" VALUES('10/10/2014',66,61,56,55,54,52,93,80,67,30.08,30.03,30,10,10,10,18,9,28,0,6,'',273,94107); +INSERT INTO "weather" VALUES('10/11/2014',73,64,55,57,54,52,93,71,49,30.08,30.02,29.97,10,10,9,13,6,15,0,4,'',265,94107); +INSERT INTO "weather" VALUES('10/12/2014',86,69,51,62,51,31,93,53,13,29.99,29.95,29.89,10,10,10,13,4,18,0,0,'',284,94107); +INSERT INTO "weather" VALUES('10/13/2014',83,67,50,56,46,34,87,53,19,29.97,29.93,29.91,10,10,8,17,6,33,0,1,'',347,94107); +INSERT INTO "weather" VALUES('10/14/2014',72,65,58,57,55,54,87,70,53,29.95,29.89,29.83,10,10,8,26,9,32,0,6,'',206,94107); +INSERT INTO "weather" VALUES('10/15/2014',71,63,54,57,55,53,86,72,57,30.04,29.97,29.86,10,10,9,21,8,28,'T',6,'Rain',225,94107); +INSERT INTO "weather" VALUES('10/16/2014',71,61,51,56,51,45,93,68,42,30.05,29.99,29.95,10,10,10,18,6,22,0,5,'',313,94107); +INSERT INTO "weather" VALUES('10/17/2014',73,62,51,57,50,47,89,65,41,29.98,29.95,29.92,10,10,10,12,4,17,0,5,'',142,94107); +INSERT INTO "weather" VALUES('10/18/2014',75,65,54,58,54,49,84,64,43,30,29.94,29.88,10,10,10,17,6,28,0,2,'',285,94107); +INSERT INTO "weather" VALUES('10/19/2014',71,63,55,61,57,52,93,80,66,29.93,29.9,29.87,10,10,9,20,7,22,0,3,'',300,94107); +INSERT INTO "weather" VALUES('10/20/2014',70,62,54,59,55,51,78,68,57,30.06,29.97,29.91,10,9,2,18,9,22,0.01,5,'Rain',250,94107); +INSERT INTO "weather" VALUES('10/21/2014',70,60,49,53,49,43,83,60,37,30.11,30.06,30.02,10,10,10,20,7,36,0,1,'',307,94107); +INSERT INTO "weather" VALUES('10/22/2014',71,60,49,57,52,46,86,72,57,30.09,30.05,30.02,10,10,10,15,5,17,0,4,'',281,94107); +INSERT INTO "weather" VALUES('10/23/2014',72,64,55,59,56,53,93,75,57,30.08,30.02,29.97,10,10,10,14,4,15,0.01,5,'Fog',302,94107); +INSERT INTO "weather" VALUES('10/24/2014',71,64,56,57,54,50,83,71,59,29.98,29.94,29.89,10,10,10,18,9,26,0,2,'',184,94107); +INSERT INTO "weather" VALUES('10/25/2014',70,65,60,59,56,54,90,76,61,30.14,30.02,29.89,10,10,4,25,13,30,0.23,6,'Rain',208,94107); +INSERT INTO "weather" VALUES('10/26/2014',69,60,50,55,49,43,93,66,39,30.18,30.12,30.06,10,10,10,18,7,21,0,1,'',324,94107); +INSERT INTO "weather" VALUES('10/27/2014',67,57,47,52,48,42,86,69,52,30.08,30.05,30.01,10,10,10,12,4,14,0,2,'',300,94107); +INSERT INTO "weather" VALUES('10/28/2014',71,60,48,55,50,45,93,70,47,30.13,30.09,30.06,10,10,10,15,6,17,0,1,'Fog',325,94107); +INSERT INTO "weather" VALUES('10/29/2014',77,64,50,58,53,49,89,63,36,30.12,30.06,29.98,10,10,10,15,4,17,0,1,'',285,94107); +INSERT INTO "weather" VALUES('10/30/2014',71,63,54,57,53,47,84,74,63,29.96,29.92,29.89,10,10,10,16,6,26,0,5,'',270,94107); +INSERT INTO "weather" VALUES('10/31/2014',64,61,57,58,54,49,87,80,72,29.91,29.84,29.73,10,8,2,18,8,24,0.32,8,'Rain',224,94107); +INSERT INTO "weather" VALUES('11/1/2014',64,56,48,51,48,44,83,72,60,30.04,29.9,29.75,10,10,10,22,9,24,0,4,'',270,94107); +INSERT INTO "weather" VALUES('11/2/2014',66,55,44,50,45,42,93,71,48,30.17,30.13,30.05,10,10,10,21,4,24,0,1,'',281,94107); +INSERT INTO "weather" VALUES('11/3/2014',66,55,44,52,46,40,86,63,40,30.27,30.22,30.17,10,10,10,15,5,16,0,4,'',281,94107); +INSERT INTO "weather" VALUES('11/4/2014',69,58,46,54,49,44,93,68,42,30.33,30.27,30.23,10,10,7,12,4,14,0,2,'Fog',297,94107); +INSERT INTO "weather" VALUES('11/5/2014',72,60,48,54,49,43,77,61,44,30.23,30.15,30.08,10,10,10,7,3,8,0,2,'',202,94107); +INSERT INTO "weather" VALUES('11/6/2014',72,61,50,56,52,46,93,69,44,30.22,30.19,30.14,10,10,7,13,4,15,0,3,'',295,94107); +INSERT INTO "weather" VALUES('11/7/2014',70,60,50,58,54,48,100,81,61,30.24,30.18,30.1,10,5,0,13,4,15,0.01,3,'Fog',332,94107); +INSERT INTO "weather" VALUES('11/8/2014',72,61,50,59,53,48,100,79,57,30.13,30.08,30.01,10,7,0,8,2,20,0,3,'Fog',265,94107); +INSERT INTO "weather" VALUES('11/9/2014',70,59,48,57,53,46,100,81,61,30.02,29.92,29.83,10,10,6,15,4,17,0,1,'Fog',299,94107); +INSERT INTO "weather" VALUES('11/10/2014',65,56,47,57,52,46,100,86,72,29.86,29.83,29.8,10,5,0,16,5,18,0.01,3,'Fog',316,94107); +INSERT INTO "weather" VALUES('11/11/2014',66,62,58,54,49,47,80,68,56,29.98,29.92,29.86,10,10,10,15,9,21,0,7,'',233,94107); +INSERT INTO "weather" VALUES('11/12/2014',66,61,56,49,46,44,64,56,48,30.04,29.99,29.97,10,10,4,10,4,16,0.11,7,'Rain',258,94107); +INSERT INTO "weather" VALUES('11/13/2014',64,60,55,59,56,50,93,86,78,30.08,30.01,29.93,10,7,1,17,7,22,0.2,7,'Rain',211,94107); +INSERT INTO "weather" VALUES('11/14/2014',65,57,49,58,53,49,96,82,67,30.12,30.09,30.07,10,9,4,16,6,20,0,4,'Fog',273,94107); +INSERT INTO "weather" VALUES('11/15/2014',64,55,46,54,49,44,93,78,63,30.19,30.14,30.09,10,10,10,8,3,13,0,2,'',300,94107); +INSERT INTO "weather" VALUES('11/16/2014',65,56,47,46,32,19,93,56,18,30.27,30.23,30.18,10,10,10,15,5,28,0,4,'',54,94107); +INSERT INTO "weather" VALUES('11/17/2014',67,57,47,42,36,25,77,50,22,30.25,30.17,30.11,10,10,10,16,6,22,0,4,'',87,94107); +INSERT INTO "weather" VALUES('11/18/2014',62,54,46,45,41,36,66,55,43,30.14,30.1,30.05,10,10,9,13,5,20,0,7,'',68,94107); +INSERT INTO "weather" VALUES('11/19/2014',61,57,52,57,51,41,93,75,57,30.14,30.06,30,10,8,2,22,6,25,0.15,8,'Rain',142,94107); +INSERT INTO "weather" VALUES('11/20/2014',59,55,51,55,53,49,100,93,86,30.12,30.06,29.99,10,5,0,15,4,21,0.66,7,'Fog-Rain',98,94107); +INSERT INTO "weather" VALUES('11/21/2014',61,56,51,54,51,48,96,83,69,30.14,30.09,30.04,10,9,6,9,4,31,0,7,'',78,94107); +INSERT INTO "weather" VALUES('11/22/2014',65,59,53,61,54,45,93,80,66,30.25,30.12,30.06,10,7,1,20,10,23,0.26,6,'Rain',213,94107); +INSERT INTO "weather" VALUES('11/23/2014',62,52,42,47,43,39,83,66,48,30.35,30.3,30.25,10,10,10,8,2,18,0,3,'',278,94107); +INSERT INTO "weather" VALUES('11/24/2014',62,51,40,47,41,36,83,63,42,30.42,30.37,30.32,10,10,10,7,2,21,0,1,'',300,94107); +INSERT INTO "weather" VALUES('11/25/2014',73,57,41,52,44,38,83,71,58,30.47,30.4,30.33,10,10,8,13,4,15,0,1,'',147,94107); +INSERT INTO "weather" VALUES('11/26/2014',65,55,45,52,46,40,86,73,60,30.32,30.26,30.2,10,9,6,10,3,37,0,2,'',355,94107); +INSERT INTO "weather" VALUES('11/27/2014',65,54,42,51,47,42,93,78,63,30.19,30.12,30.06,9,6,0,12,2,28,0,3,'Fog',337,94107); +INSERT INTO "weather" VALUES('11/28/2014',62,52,42,52,49,42,100,84,67,30.06,29.98,29.87,10,6,1,13,6,17,'T',5,'Fog-Rain',161,94107); +INSERT INTO "weather" VALUES('11/29/2014',64,59,54,55,53,49,93,83,72,29.87,29.82,29.75,10,10,6,14,7,18,0.08,7,'Rain',135,94107); +INSERT INTO "weather" VALUES('11/30/2014',60,56,52,58,54,51,100,88,75,30.03,29.88,29.74,10,9,4,16,4,31,0.32,7,'Rain',84,94107); +INSERT INTO "weather" VALUES('12/1/2014',66,60,53,57,55,52,100,84,67,30.12,30.04,29.96,10,10,7,15,4,17,'T',6,'Rain',53,94107); +INSERT INTO "weather" VALUES('12/2/2014',61,58,54,56,54,52,100,90,80,29.95,29.77,29.69,10,8,2,21,9,25,1.18,8,'Rain',102,94107); +INSERT INTO "weather" VALUES('12/3/2014',64,61,58,59,57,55,93,86,78,29.89,29.78,29.71,10,7,2,35,12,41,1.43,7,'Rain',151,94107); +INSERT INTO "weather" VALUES('12/4/2014',65,60,55,58,56,55,100,87,73,30.02,29.94,29.88,10,8,0,14,5,20,0.01,6,'Fog-Rain',160,94107); +INSERT INTO "weather" VALUES('12/5/2014',67,60,53,58,56,53,100,87,73,30.08,30.03,29.99,10,9,3,23,8,28,0.1,7,'Rain',139,94107); +INSERT INTO "weather" VALUES('12/6/2014',66,62,57,59,57,55,93,86,78,30.23,30.18,30.09,10,10,7,16,6,20,0.11,7,'Fog-Rain',129,94107); +INSERT INTO "weather" VALUES('12/7/2014',64,58,52,57,54,52,100,86,72,30.22,30.18,30.14,10,8,4,12,3,21,0.01,6,'Fog',110,94107); +INSERT INTO "weather" VALUES('12/8/2014',68,60,51,56,53,50,96,80,63,30.19,30.16,30.13,10,10,10,9,4,12,0,6,'',65,94107); +INSERT INTO "weather" VALUES('12/9/2014',65,59,53,57,54,51,93,83,73,30.22,30.15,30.08,10,8,4,12,2,31,0,7,'Fog',356,94107); +INSERT INTO "weather" VALUES('12/10/2014',64,59,54,56,54,53,100,86,72,30.08,29.94,29.73,10,6,0,32,10,39,'T',8,'Fog-Rain',119,94107); +INSERT INTO "weather" VALUES('12/11/2014',64,57,50,57,53,48,93,80,67,29.7,29.63,29.52,10,6,1,36,14,45,3.12,8,'Rain',162,94107); +INSERT INTO "weather" VALUES('12/12/2014',56,53,49,51,48,46,96,87,77,30.09,29.87,29.68,10,9,4,9,3,10,0.48,7,'Rain',105,94107); +INSERT INTO "weather" VALUES('12/13/2014',57,52,46,48,46,44,100,86,72,30.24,30.18,30.09,10,10,7,8,3,25,0,4,'',63,94107); +INSERT INTO "weather" VALUES('12/14/2014',61,54,47,48,45,43,89,72,55,30.15,30.06,29.99,10,10,7,14,6,16,0.19,7,'Rain',94,94107); +INSERT INTO "weather" VALUES('12/15/2014',56,53,49,51,48,46,93,85,77,29.98,29.9,29.84,10,8,2,23,14,31,1.09,8,'Rain',125,94107); +INSERT INTO "weather" VALUES('12/16/2014',61,56,50,52,49,46,93,80,67,29.96,29.91,29.83,10,9,2,21,11,24,0.65,7,'Rain',135,94107); +INSERT INTO "weather" VALUES('12/17/2014',59,54,49,51,49,46,93,83,72,30.09,30.03,29.95,10,10,6,17,8,22,0.13,7,'Rain',127,94107); +INSERT INTO "weather" VALUES('12/18/2014',61,56,51,51,49,48,89,81,72,30.2,30.13,30.07,10,10,8,13,6,15,'T',7,'Rain',119,94107); +INSERT INTO "weather" VALUES('12/19/2014',57,56,54,54,52,50,93,85,77,30.17,30.14,30.11,10,8,1,23,12,30,0.25,8,'Rain',144,94107); +INSERT INTO "weather" VALUES('12/20/2014',60,57,54,56,54,52,100,89,78,30.26,30.19,30.13,10,7,2,13,4,16,'T',7,'Rain',160,94107); +INSERT INTO "weather" VALUES('12/21/2014',64,60,55,58,56,54,100,92,84,30.33,30.28,30.25,10,6,0,13,6,24,0.09,6,'Fog-Rain',197,94107); +INSERT INTO "weather" VALUES('12/22/2014',63,57,51,56,54,50,100,89,78,30.3,30.25,30.19,10,4,0,8,3,24,0,4,'Fog',266,94107); +INSERT INTO "weather" VALUES('12/23/2014',65,56,47,55,51,46,100,84,67,30.23,30.17,30.13,10,9,6,9,3,14,0,0,'Fog',321,94107); +INSERT INTO "weather" VALUES('12/24/2014',61,55,48,54,49,36,100,80,59,30.12,30.05,29.97,10,7,0,28,11,33,0.02,6,'Fog-Rain',303,94107); +INSERT INTO "weather" VALUES('12/25/2014',59,52,45,38,35,26,70,50,30,30.16,30.11,30.06,10,10,10,20,10,26,0,0,'',338,94107); +INSERT INTO "weather" VALUES('12/26/2014',60,50,39,34,30,26,67,49,30,30.27,30.19,30.1,10,10,10,17,7,23,0,0,'',8,94107); +INSERT INTO "weather" VALUES('12/27/2014',55,47,38,38,34,30,82,62,41,30.39,30.34,30.27,10,10,10,12,5,13,0,3,'',88,94107); +INSERT INTO "weather" VALUES('12/28/2014',55,47,39,48,41,36,86,75,64,30.37,30.29,30.24,10,10,9,10,4,14,0,3,'',176,94107); +INSERT INTO "weather" VALUES('12/29/2014',55,49,42,46,42,37,92,76,59,30.24,30.18,30.12,10,10,7,13,3,16,0,4,'Fog',318,94107); +INSERT INTO "weather" VALUES('12/30/2014',55,47,38,37,23,14,82,53,24,30.25,30.16,30.11,10,10,10,41,17,53,0,0,'',1,94107); +INSERT INTO "weather" VALUES('12/31/2014',59,48,36,36,17,5,67,41,15,30.27,30.17,30.07,10,10,10,21,7,28,0,1,'',8,94107); +INSERT INTO "weather" VALUES('1/1/2015',56,47,38,27,20,14,54,37,20,30.18,30.13,30.07,10,10,10,23,8,28,0,1,'',40,94107); +INSERT INTO "weather" VALUES('1/2/2015',50,41,32,36,30,25,76,64,52,30.23,30.18,30.13,10,10,9,8,4,10,0,1,'',63,94107); +INSERT INTO "weather" VALUES('1/3/2015',53,43,32,38,34,28,82,66,50,30.33,30.26,30.2,10,10,8,12,2,14,0,1,'',305,94107); +INSERT INTO "weather" VALUES('1/4/2015',54,45,35,42,37,33,85,72,59,30.44,30.38,30.32,10,8,6,14,3,17,0,5,'',154,94107); +INSERT INTO "weather" VALUES('1/5/2015',56,46,36,43,38,32,85,68,50,30.39,30.32,30.23,10,9,6,8,3,9,0,4,'',170,94107); +INSERT INTO "weather" VALUES('1/6/2015',59,49,38,44,39,36,92,72,51,30.29,30.22,30.17,10,8,5,8,2,12,0,0,'',224,94107); +INSERT INTO "weather" VALUES('1/7/2015',64,51,38,47,42,37,92,69,46,30.23,30.15,30.08,10,10,8,8,2,9,0,1,'',235,94107); +INSERT INTO "weather" VALUES('1/8/2015',61,52,42,48,45,38,92,76,60,30.1,30.05,30.01,10,8,5,8,2,9,0,6,'',332,94107); +INSERT INTO "weather" VALUES('1/9/2015',63,55,46,50,47,45,96,74,52,30.04,30,29.97,10,7,3,9,4,12,0,7,'',299,94107); +INSERT INTO "weather" VALUES('1/10/2015',60,54,47,52,49,45,93,83,72,30.05,30,29.96,10,7,4,8,3,10,0,6,'Fog',280,94107); +INSERT INTO "weather" VALUES('1/11/2015',57,50,42,50,46,42,96,87,77,30.18,30.09,30.02,10,6,0,8,3,25,0,5,'Fog',143,94107); +INSERT INTO "weather" VALUES('1/12/2015',57,49,41,50,46,41,96,87,77,30.28,30.22,30.19,10,7,0,8,2,10,0,3,'Fog',246,94107); +INSERT INTO "weather" VALUES('1/13/2015',66,55,43,48,43,37,100,69,37,30.23,30.18,30.12,10,6,0,16,3,21,0,2,'Fog',135,94107); +INSERT INTO "weather" VALUES('1/14/2015',59,49,39,47,43,36,93,78,62,30.3,30.22,30.16,10,7,4,12,3,13,0,3,'',47,94107); +INSERT INTO "weather" VALUES('1/15/2015',59,50,40,49,45,39,100,84,67,30.34,30.28,30.23,6,4,0,13,4,16,0,5,'Fog',287,94107); +INSERT INTO "weather" VALUES('1/16/2015',57,50,43,52,48,43,96,84,72,30.3,30.26,30.23,8,4,2,10,3,12,'T',6,'Fog-Rain',349,94107); +INSERT INTO "weather" VALUES('1/17/2015',57,53,48,52,49,46,96,84,72,30.3,30.26,30.21,10,7,4,12,5,15,0,5,'',188,94107); +INSERT INTO "weather" VALUES('1/18/2015',65,57,49,55,52,48,100,87,73,30.34,30.29,30.26,10,5,0,13,4,14,0,6,'Fog',302,94107); +INSERT INTO "weather" VALUES('1/19/2015',63,55,47,54,50,45,93,77,60,30.32,30.25,30.18,10,9,4,14,5,16,0,5,'',9,94107); +INSERT INTO "weather" VALUES('1/20/2015',58,52,45,49,47,42,100,86,72,30.18,30.12,30.06,10,6,0,7,2,'',0,2,'Fog',282,94107); +INSERT INTO "weather" VALUES('1/21/2015',61,51,40,45,41,37,92,73,53,30.18,30.13,30.08,10,10,8,14,5,16,0,1,'',42,94107); +INSERT INTO "weather" VALUES('1/22/2015',60,51,41,46,42,36,89,73,57,30.35,30.28,30.19,10,9,6,14,6,18,0,2,'',83,94107); +INSERT INTO "weather" VALUES('1/23/2015',64,52,39,48,42,38,89,66,43,30.37,30.31,30.23,10,9,5,10,3,15,0,1,'',302,94107); +INSERT INTO "weather" VALUES('1/24/2015',69,58,46,47,44,37,93,63,33,30.24,30.17,30.1,10,9,7,22,7,26,0,0,'',2,94107); +INSERT INTO "weather" VALUES('1/25/2015',59,50,40,45,41,37,86,70,53,30.15,30.09,30.01,10,10,7,9,4,12,0,0,'',47,94107); +INSERT INTO "weather" VALUES('1/26/2015',61,51,41,49,44,38,92,72,51,30.05,30.01,29.97,10,10,9,9,3,14,0,5,'',310,94107); +INSERT INTO "weather" VALUES('1/27/2015',67,57,47,49,46,43,83,64,44,30.27,30.17,30.03,10,10,10,12,4,13,0,6,'',9,94107); +INSERT INTO "weather" VALUES('1/28/2015',63,53,43,51,46,42,93,73,52,30.28,30.22,30.17,10,10,6,9,3,12,0,2,'Fog',265,94107); +INSERT INTO "weather" VALUES('1/29/2015',64,53,42,51,48,41,96,81,65,30.17,30.12,30.07,10,8,6,8,3,14,0,1,'Fog',273,94107); +INSERT INTO "weather" VALUES('1/30/2015',62,54,46,52,48,44,100,87,67,30.06,29.99,29.91,10,8,5,16,5,17,0,3,'Fog',269,94107); +INSERT INTO "weather" VALUES('1/31/2015',73,59,44,48,40,28,100,61,22,30.06,29.97,29.91,10,10,7,15,4,20,0,1,'Fog',276,94107); +INSERT INTO "weather" VALUES('2/1/2015',65,53,40,48,42,37,83,62,40,30.19,30.13,30.06,10,10,9,12,3,14,0,5,'',284,94107); +INSERT INTO "weather" VALUES('2/2/2015',65,54,43,51,47,41,100,83,65,30.2,30.14,30.09,10,8,6,9,3,12,0,4,'',268,94107); +INSERT INTO "weather" VALUES('2/3/2015',67,57,47,52,50,47,93,76,58,30.14,30.09,30.05,10,9,6,13,3,15,0,5,'',276,94107); +INSERT INTO "weather" VALUES('2/4/2015',64,55,46,53,50,45,100,86,72,30.09,30.06,30.02,10,6,0,15,5,17,0,5,'Fog',254,94107); +INSERT INTO "weather" VALUES('2/5/2015',63,56,48,50,48,46,89,75,60,30.05,29.98,29.9,10,10,8,28,6,35,0,7,'',141,94107); +INSERT INTO "weather" VALUES('2/6/2015',63,61,58,58,54,47,93,77,60,29.93,29.85,29.8,10,6,2,33,22,40,0.91,8,'Rain',150,94107); +INSERT INTO "weather" VALUES('2/7/2015',64,59,54,61,57,52,93,89,84,30.08,30.02,29.93,10,9,4,28,6,35,0.03,6,'Rain',182,94107); +INSERT INTO "weather" VALUES('2/8/2015',63,58,53,57,55,52,93,83,72,30.06,29.95,29.89,10,8,1,36,15,44,0.99,7,'Rain',156,94107); +INSERT INTO "weather" VALUES('2/9/2015',64,57,49,55,52,45,89,78,67,30.27,30.2,30.08,10,10,7,22,8,26,'T',4,'',229,94107); +INSERT INTO "weather" VALUES('2/10/2015',63,54,44,50,45,41,93,71,49,30.23,30.17,30.1,10,10,10,12,4,14,0,3,'Fog',292,94107); +INSERT INTO "weather" VALUES('2/11/2015',64,53,42,50,46,41,96,78,60,30.19,30.15,30.11,10,10,10,8,3,10,0,4,'',210,94107); +INSERT INTO "weather" VALUES('2/12/2015',69,58,47,53,48,44,83,68,52,30.22,30.17,30.13,10,10,10,9,2,17,0,3,'',278,94107); +INSERT INTO "weather" VALUES('2/13/2015',70,58,46,54,50,43,89,70,51,30.17,30.1,30.06,10,10,10,10,3,13,0,1,'',304,94107); +INSERT INTO "weather" VALUES('2/14/2015',71,59,47,54,50,46,96,75,53,30.12,30.07,30.03,10,10,10,12,4,14,0,1,'',324,94107); +INSERT INTO "weather" VALUES('2/15/2015',70,58,45,52,47,41,93,67,40,30.06,30.01,29.97,10,10,10,9,3,13,0,2,'',206,94107); +INSERT INTO "weather" VALUES('2/16/2015',71,59,46,54,49,42,93,73,53,30.04,30,29.96,10,9,6,17,6,20,0,3,'',313,94107); +INSERT INTO "weather" VALUES('2/17/2015',58,56,53,51,49,45,93,80,66,30.19,30.13,30.04,10,8,4,10,6,13,'T',8,'',281,94107); +INSERT INTO "weather" VALUES('2/18/2015',64,57,50,53,49,45,93,79,64,30.24,30.18,30.12,10,10,7,12,5,13,0,4,'',288,94107); +INSERT INTO "weather" VALUES('2/19/2015',61,56,50,52,51,50,96,84,72,30.17,30.13,30.06,10,8,4,14,5,17,0,7,'',271,94107); +INSERT INTO "weather" VALUES('2/20/2015',65,59,52,53,51,47,93,73,52,30.09,30.02,29.94,10,8,4,12,3,15,'T',4,'',220,94107); +INSERT INTO "weather" VALUES('2/21/2015',68,57,46,51,47,39,93,67,40,29.98,29.91,29.84,10,10,9,17,5,21,0,2,'',319,94107); +INSERT INTO "weather" VALUES('2/22/2015',67,56,45,48,36,20,100,61,22,29.89,29.86,29.83,10,9,0,24,8,35,0,1,'Fog',360,94107); +INSERT INTO "weather" VALUES('2/23/2015',64,54,44,28,20,12,53,35,17,30.23,30.06,29.89,10,10,10,24,7,31,0,1,'',353,94107); +INSERT INTO "weather" VALUES('2/24/2015',64,50,36,49,37,22,89,58,27,30.37,30.31,30.25,10,10,10,12,5,17,0,2,'Fog',244,94107); +INSERT INTO "weather" VALUES('2/25/2015',65,55,45,50,45,41,93,70,46,30.31,30.23,30.1,10,10,8,17,5,20,0,3,'',260,94107); +INSERT INTO "weather" VALUES('2/26/2015',67,56,45,52,49,43,93,76,58,30.09,30.02,29.92,10,9,6,16,6,21,0,3,'',259,94107); +INSERT INTO "weather" VALUES('2/27/2015',63,56,48,50,46,42,80,68,56,29.92,29.83,29.74,10,10,10,38,19,45,0,2,'',288,94107); +INSERT INTO "weather" VALUES('2/28/2015',59,52,44,46,44,41,92,74,55,29.92,29.81,29.73,10,10,4,22,7,25,0.07,4,'Rain-Thunderstorm',257,94107); +INSERT INTO "weather" VALUES('3/1/2015',63,54,44,47,41,33,92,64,36,30,29.95,29.91,10,10,10,17,7,21,0,1,'',294,94107); +INSERT INTO "weather" VALUES('3/2/2015',59,52,45,47,44,40,86,69,51,29.99,29.86,29.81,10,10,10,15,5,23,'T',5,'',174,94107); +INSERT INTO "weather" VALUES('3/3/2015',64,53,42,47,43,39,89,71,52,30.06,30.01,29.97,10,10,10,16,5,18,0,2,'',282,94107); +INSERT INTO "weather" VALUES('3/4/2015',67,54,41,47,40,35,89,61,32,30.23,30.13,30.04,10,10,10,7,4,'',0,0,'',294,94107); +INSERT INTO "weather" VALUES('3/5/2015',70,56,42,47,41,36,76,57,37,30.35,30.28,30.24,10,10,10,13,4,'',0,0,'',312,94107); +INSERT INTO "weather" VALUES('3/6/2015',71,57,42,50,43,36,83,60,37,30.3,30.23,30.14,10,10,10,10,4,'',0,0,'',306,94107); +INSERT INTO "weather" VALUES('3/7/2015',71,58,45,52,46,41,89,65,41,30.14,30.08,30.01,10,10,10,13,6,30,0,1,'',292,94107); +INSERT INTO "weather" VALUES('3/8/2015',65,55,44,51,48,43,93,77,60,30.13,30.07,30.01,10,8,5,18,7,21,0,3,'Fog',285,94107); +INSERT INTO "weather" VALUES('3/9/2015',65,57,48,51,49,47,100,82,63,30.08,30.01,29.93,10,9,6,15,6,17,0,5,'',268,94107); +INSERT INTO "weather" VALUES('3/10/2015',63,56,48,52,50,46,100,86,72,30.03,29.96,29.93,10,5,0,25,5,29,0,8,'Fog',292,94107); +INSERT INTO "weather" VALUES('3/11/2015',65,58,51,56,51,43,100,72,44,30.26,30.14,30.01,10,10,8,15,5,17,0.02,5,'Rain',308,94107); +INSERT INTO "weather" VALUES('3/12/2015',73,60,46,54,51,46,100,72,44,30.29,30.22,30.14,10,10,10,14,5,15,0,3,'',282,94107); +INSERT INTO "weather" VALUES('3/13/2015',74,61,48,55,52,47,93,66,38,30.18,30.14,30.08,10,10,10,15,4,20,0,5,'',291,94107); +INSERT INTO "weather" VALUES('3/14/2015',80,66,52,57,52,44,93,66,38,30.12,30.05,29.96,10,10,10,13,5,15,0,6,'',297,94107); +INSERT INTO "weather" VALUES('3/15/2015',69,62,54,53,47,41,83,62,40,30.09,30.04,29.98,10,10,10,20,5,23,0,6,'',308,94107); +INSERT INTO "weather" VALUES('3/16/2015',68,61,53,54,50,46,83,66,48,30.06,30.03,30.01,10,10,10,13,5,14,0,7,'',281,94107); +INSERT INTO "weather" VALUES('3/17/2015',66,59,51,53,49,46,86,69,52,30.14,30.08,30.04,10,10,10,23,9,29,0,5,'',269,94107); +INSERT INTO "weather" VALUES('3/18/2015',68,58,48,51,48,45,93,71,48,30.08,30.05,30.01,10,10,10,17,6,21,0,1,'',260,94107); +INSERT INTO "weather" VALUES('3/19/2015',73,60,47,52,49,43,93,64,35,30.08,30.05,30,10,10,10,18,6,21,0,2,'',294,94107); +INSERT INTO "weather" VALUES('3/20/2015',66,57,48,52,48,41,93,71,49,30.17,30.11,30.06,10,10,10,18,6,22,0,5,'',292,94107); +INSERT INTO "weather" VALUES('3/21/2015',71,63,54,54,53,51,86,70,53,30.19,30.15,30.1,10,10,7,18,6,20,0,7,'',262,94107); +INSERT INTO "weather" VALUES('3/22/2015',66,60,54,56,52,48,93,78,63,30.2,30.16,30.13,10,10,9,18,9,29,0.02,7,'Rain',197,94107); +INSERT INTO "weather" VALUES('3/23/2015',64,59,53,54,49,42,93,71,48,30.32,30.25,30.2,10,10,10,21,10,29,0.05,6,'',272,94107); +INSERT INTO "weather" VALUES('3/24/2015',65,59,53,54,50,43,83,73,63,30.32,30.28,30.23,10,10,7,21,7,23,'T',6,'',286,94107); +INSERT INTO "weather" VALUES('3/25/2015',72,60,48,53,50,46,93,70,47,30.25,30.2,30.16,10,10,10,16,6,22,0,1,'',270,94107); +INSERT INTO "weather" VALUES('3/26/2015',80,65,50,56,52,48,93,68,42,30.18,30.12,30.05,10,10,10,14,5,15,0,0,'',297,94107); +INSERT INTO "weather" VALUES('3/27/2015',64,58,52,54,52,49,96,82,67,30.18,30.14,30.09,10,10,10,21,9,23,0,2,'Fog',295,94107); +INSERT INTO "weather" VALUES('3/28/2015',74,61,48,55,49,46,93,69,44,30.2,30.14,30.08,10,10,10,24,6,26,0,2,'',267,94107); +INSERT INTO "weather" VALUES('3/29/2015',73,60,47,52,49,45,93,67,41,30.13,30.08,30.01,10,10,10,18,6,22,0,1,'',309,94107); +INSERT INTO "weather" VALUES('3/30/2015',65,56,47,51,48,44,89,75,60,30.08,30.05,30.02,10,10,7,21,8,23,0,4,'',270,94107); +INSERT INTO "weather" VALUES('3/31/2015',68,62,55,52,47,40,86,64,42,30.19,30.14,30.07,10,10,10,28,16,38,0,1,'',285,94107); +INSERT INTO "weather" VALUES('4/1/2015',65,55,45,45,38,30,80,56,32,30.19,30.14,30.08,10,10,10,24,9,26,0,2,'',301,94107); +INSERT INTO "weather" VALUES('4/2/2015',69,59,48,45,38,29,80,52,24,30.21,30.17,30.13,10,10,10,22,10,26,0,0,'',312,94107); +INSERT INTO "weather" VALUES('4/3/2015',67,56,44,46,42,40,83,63,43,30.24,30.17,30.11,10,10,7,18,8,21,0,0,'',256,94107); +INSERT INTO "weather" VALUES('4/4/2015',64,54,43,47,41,38,93,67,40,30.12,30.05,29.97,10,10,10,26,11,32,0,4,'',278,94107); +INSERT INTO "weather" VALUES('4/5/2015',58,54,50,48,43,38,83,69,54,29.98,29.93,29.91,10,9,2,21,11,24,0.11,5,'Rain',252,94107); +INSERT INTO "weather" VALUES('4/6/2015',63,54,44,43,40,37,83,63,42,29.99,29.93,29.85,10,10,10,25,13,29,0,4,'',167,94107); +INSERT INTO "weather" VALUES('4/7/2015',61,55,48,48,45,40,93,72,51,30.06,29.88,29.77,10,8,4,30,15,40,0.52,6,'Rain',235,94107); +INSERT INTO "weather" VALUES('4/8/2015',63,55,47,50,44,38,86,65,43,30.19,30.13,30.07,10,10,10,16,8,20,0.01,4,'Rain',299,94107); +INSERT INTO "weather" VALUES('4/9/2015',67,55,43,47,43,36,92,63,34,30.09,30.02,29.96,10,10,10,17,6,20,0,4,'',289,94107); +INSERT INTO "weather" VALUES('4/10/2015',66,56,46,48,43,38,89,63,37,30.06,30.03,29.98,10,10,10,16,7,18,0,2,'',282,94107); +INSERT INTO "weather" VALUES('4/11/2015',72,60,47,52,48,43,93,70,47,30.1,30.05,30.01,10,10,10,20,7,23,0,4,'',279,94107); +INSERT INTO "weather" VALUES('4/12/2015',73,61,48,54,49,45,100,70,40,30.06,30.02,29.96,10,10,10,14,6,16,0,1,'',280,94107); +INSERT INTO "weather" VALUES('4/13/2015',62,56,50,50,47,45,89,72,55,30.17,30.09,30.02,10,10,7,29,15,36,0,4,'',276,94107); +INSERT INTO "weather" VALUES('4/14/2015',65,57,48,44,36,27,71,48,25,30.35,30.27,30.16,10,10,10,25,13,29,0,1,'',313,94107); +INSERT INTO "weather" VALUES('4/15/2015',71,59,47,46,39,31,72,50,28,30.23,30.12,30.01,10,10,10,22,8,25,0,1,'',303,94107); +INSERT INTO "weather" VALUES('4/16/2015',81,65,48,48,36,25,80,47,13,30.06,30.02,29.97,10,10,10,22,8,28,0,0,'',329,94107); +INSERT INTO "weather" VALUES('4/17/2015',72,60,48,48,45,40,86,63,40,30.1,30.06,30.02,10,10,10,20,7,23,0,0,'',293,94107); +INSERT INTO "weather" VALUES('4/18/2015',67,58,49,50,48,47,89,69,48,30.07,30.01,29.93,10,10,9,20,9,23,0,3,'',303,94107); +INSERT INTO "weather" VALUES('4/19/2015',63,56,49,50,49,48,93,77,60,29.99,29.95,29.9,10,9,6,20,9,23,0,6,'',298,94107); +INSERT INTO "weather" VALUES('4/20/2015',63,58,53,50,49,48,83,72,60,29.92,29.89,29.85,10,10,10,22,12,24,0,6,'',277,94107); +INSERT INTO "weather" VALUES('4/21/2015',61,57,53,49,48,48,83,74,64,29.93,29.88,29.86,10,10,10,21,14,25,'T',7,'',249,94107); +INSERT INTO "weather" VALUES('4/22/2015',66,59,52,49,48,46,89,73,56,29.92,29.88,29.85,10,10,9,22,9,25,0,5,'',231,94107); +INSERT INTO "weather" VALUES('4/23/2015',64,58,52,49,46,45,83,70,56,29.91,29.88,29.86,10,10,7,22,10,24,0,5,'',234,94107); +INSERT INTO "weather" VALUES('4/24/2015',63,58,52,53,47,43,89,69,48,30.03,29.99,29.9,10,10,5,29,19,33,0.08,5,'Rain',258,94107); +INSERT INTO "weather" VALUES('4/25/2015',63,57,51,55,49,44,93,77,60,30.06,29.96,29.89,10,9,6,26,15,31,0.14,6,'Rain',268,94107); +INSERT INTO "weather" VALUES('4/26/2015',69,58,47,51,46,39,83,63,43,30.16,30.1,30.06,10,10,10,20,7,23,0,3,'',271,94107); +INSERT INTO "weather" VALUES('4/27/2015',81,66,50,55,51,47,89,64,38,30.06,30.01,29.94,10,10,10,22,9,25,'T',2,'',270,94107); +INSERT INTO "weather" VALUES('4/28/2015',63,58,52,51,49,48,89,77,65,30.08,30.04,30.01,10,10,10,18,9,22,0,6,'',250,94107); +INSERT INTO "weather" VALUES('4/29/2015',66,59,51,48,47,45,89,69,48,30.04,29.99,29.91,10,9,6,20,8,23,0,3,'',249,94107); +INSERT INTO "weather" VALUES('4/30/2015',84,67,49,54,48,42,83,55,26,29.9,29.84,29.77,10,10,8,15,6,22,0,1,'',296,94107); +INSERT INTO "weather" VALUES('5/1/2015',76,65,53,54,51,48,93,71,49,29.92,29.86,29.8,10,10,9,20,9,23,0,2,'',312,94107); +INSERT INTO "weather" VALUES('5/2/2015',65,59,52,50,49,47,89,75,60,29.91,29.88,29.84,10,10,10,20,9,24,0,4,'',311,94107); +INSERT INTO "weather" VALUES('5/3/2015',64,58,52,48,47,46,83,68,52,29.93,29.9,29.86,10,10,10,20,11,23,0,5,'',274,94107); +INSERT INTO "weather" VALUES('5/4/2015',59,55,51,47,46,45,83,73,62,30.01,29.97,29.93,10,10,7,20,11,23,0,7,'',251,94107); +INSERT INTO "weather" VALUES('5/5/2015',62,57,51,47,46,45,83,72,60,29.98,29.95,29.91,10,10,8,18,11,25,0,5,'',225,94107); +INSERT INTO "weather" VALUES('5/6/2015',66,58,50,47,46,44,83,68,52,29.92,29.86,29.81,10,10,7,17,9,20,0,3,'',218,94107); +INSERT INTO "weather" VALUES('5/7/2015',67,57,47,47,45,42,83,64,45,29.81,29.77,29.73,10,10,7,17,6,20,'T',5,'Rain',204,94107); +INSERT INTO "weather" VALUES('5/8/2015',65,56,46,49,47,43,86,71,56,30.04,29.89,29.77,10,10,8,18,9,22,0,3,'',293,94107); +INSERT INTO "weather" VALUES('5/9/2015',63,58,52,49,48,46,83,72,60,30.12,30.09,30.06,10,10,10,21,11,23,0,6,'',263,94107); +INSERT INTO "weather" VALUES('5/10/2015',62,57,51,48,47,46,89,75,60,30.1,30.06,29.99,10,10,7,16,9,20,0,6,'',259,94107); +INSERT INTO "weather" VALUES('5/11/2015',62,57,52,49,47,45,83,72,60,29.99,29.95,29.87,10,10,7,28,14,31,0,5,'',254,94107); +INSERT INTO "weather" VALUES('5/12/2015',65,58,51,45,43,41,77,60,43,29.96,29.93,29.87,10,10,10,28,18,33,0,3,'',275,94107); +INSERT INTO "weather" VALUES('5/13/2015',63,57,51,48,44,42,77,63,48,29.99,29.95,29.91,10,10,10,21,12,24,0,5,'',268,94107); +INSERT INTO "weather" VALUES('5/14/2015',66,60,53,50,48,45,77,67,56,29.9,29.85,29.8,10,10,10,18,9,24,'T',7,'Rain',232,94107); +INSERT INTO "weather" VALUES('5/15/2015',62,57,52,49,48,46,83,70,56,29.97,29.92,29.86,10,10,10,26,13,32,0,6,'',269,94107); +INSERT INTO "weather" VALUES('5/16/2015',61,57,53,49,48,47,83,74,64,30.04,30,29.95,10,10,10,18,12,26,0,7,'',250,94107); +INSERT INTO "weather" VALUES('5/17/2015',64,59,54,48,48,47,83,72,60,30.06,30.04,30.01,10,10,10,22,13,24,0,7,'',264,94107); +INSERT INTO "weather" VALUES('5/18/2015',60,57,54,49,48,46,77,72,67,30.12,30.08,30.04,10,10,10,22,13,25,0,8,'',264,94107); +INSERT INTO "weather" VALUES('5/19/2015',63,59,54,49,48,48,83,74,64,30.12,30.08,30.01,10,10,10,21,12,23,'T',8,'',257,94107); +INSERT INTO "weather" VALUES('5/20/2015',68,61,54,52,49,48,86,75,64,30,29.98,29.95,10,10,5,16,11,21,'T',8,'Rain',249,94107); +INSERT INTO "weather" VALUES('5/21/2015',66,60,54,54,52,51,93,78,63,29.99,29.95,29.93,10,9,4,18,10,21,'T',7,'Rain',255,94107); +INSERT INTO "weather" VALUES('5/22/2015',62,59,56,52,51,48,83,74,64,30.08,30.02,29.98,10,10,10,21,12,23,0,8,'',262,94107); +INSERT INTO "weather" VALUES('5/23/2015',62,58,53,50,49,48,83,72,60,30.11,30.08,30.04,10,10,9,20,11,23,'T',7,'',238,94107); +INSERT INTO "weather" VALUES('5/24/2015',61,57,52,50,49,48,89,78,67,30.06,30.02,29.98,10,10,9,20,11,24,'T',7,'',248,94107); +INSERT INTO "weather" VALUES('5/25/2015',63,58,52,50,49,48,89,75,60,30.01,29.98,29.96,10,10,9,20,12,24,'T',8,'',257,94107); +INSERT INTO "weather" VALUES('5/26/2015',65,59,53,50,49,48,89,73,56,30.03,30,29.98,10,10,7,18,11,24,'T',7,'Rain',261,94107); +INSERT INTO "weather" VALUES('5/27/2015',63,58,53,50,49,48,89,75,60,30.04,30.02,30,10,10,10,21,12,24,0,6,'',269,94107); +INSERT INTO "weather" VALUES('5/28/2015',63,58,52,52,50,48,89,77,65,30.07,30.03,29.99,10,10,10,21,10,23,'T',7,'',267,94107); +INSERT INTO "weather" VALUES('5/29/2015',62,57,52,50,49,48,89,79,69,30.02,29.99,29.95,10,10,10,18,10,22,'T',7,'',266,94107); +INSERT INTO "weather" VALUES('5/30/2015',66,59,51,52,50,49,93,78,63,29.99,29.95,29.91,10,10,10,24,9,28,0,7,'',280,94107); +INSERT INTO "weather" VALUES('5/31/2015',65,59,52,50,48,46,89,73,56,29.99,29.95,29.92,10,10,7,24,11,28,0,7,'',267,94107); +INSERT INTO "weather" VALUES('6/1/2015',73,65,57,55,53,50,87,68,49,30.06,30.03,29.97,10,9,2,21,10,24,'T',6,'Rain',233,94107); +INSERT INTO "weather" VALUES('6/2/2015',65,61,56,55,53,51,93,78,63,30.08,30.04,29.98,10,10,10,20,11,25,0,6,'',257,94107); +INSERT INTO "weather" VALUES('6/3/2015',65,60,55,52,51,50,86,73,60,29.97,29.94,29.88,10,10,10,22,10,25,0,6,'',237,94107); +INSERT INTO "weather" VALUES('6/4/2015',70,62,53,51,50,48,83,67,51,29.87,29.84,29.81,10,10,9,17,9,26,0,4,'',226,94107); +INSERT INTO "weather" VALUES('6/5/2015',69,61,53,54,52,48,93,74,55,29.86,29.83,29.81,10,10,4,22,9,28,0,4,'',308,94107); +INSERT INTO "weather" VALUES('6/6/2015',71,64,56,55,54,53,93,75,57,29.94,29.89,29.85,10,10,10,22,9,28,0,6,'',314,94107); +INSERT INTO "weather" VALUES('6/7/2015',73,65,56,55,54,53,93,73,53,29.94,29.9,29.84,10,10,10,20,8,22,0,4,'',302,94107); +INSERT INTO "weather" VALUES('6/8/2015',88,72,56,57,55,53,87,59,31,29.88,29.84,29.75,10,10,10,20,8,23,0,1,'',302,94107); +INSERT INTO "weather" VALUES('6/9/2015',77,66,55,57,54,52,93,68,43,29.92,29.88,29.82,10,10,10,30,6,32,0,6,'',294,94107); +INSERT INTO "weather" VALUES('6/10/2015',70,64,58,63,58,55,97,88,78,29.94,29.9,29.87,10,9,4,15,6,17,0.18,7,'Fog-Rain',302,94107); +INSERT INTO "weather" VALUES('6/11/2015',73,65,57,59,56,54,100,81,61,29.92,29.88,29.82,10,8,1,20,8,23,0,4,'',295,94107); +INSERT INTO "weather" VALUES('6/12/2015',75,65,54,58,55,52,93,71,49,29.85,29.8,29.75,10,9,7,20,9,23,0,0,'',306,94107); +INSERT INTO "weather" VALUES('6/13/2015',72,65,57,57,55,52,93,77,61,29.79,29.77,29.75,10,9,6,21,9,25,0,3,'',313,94107); +INSERT INTO "weather" VALUES('6/14/2015',67,61,55,54,51,48,86,71,56,29.87,29.82,29.76,10,7,5,21,12,24,0,5,'',280,94107); +INSERT INTO "weather" VALUES('6/15/2015',62,58,54,51,50,48,89,78,67,29.97,29.91,29.86,10,9,5,21,11,24,0,7,'',255,94107); +INSERT INTO "weather" VALUES('6/16/2015',68,62,55,52,51,50,83,71,58,29.98,29.95,29.93,10,9,5,20,12,'',0,5,'',254,94107); +INSERT INTO "weather" VALUES('6/17/2015',69,61,53,52,51,48,89,70,51,29.95,29.93,29.91,10,9,4,23,9,25,0,4,'',287,94107); +INSERT INTO "weather" VALUES('6/18/2015',66,59,52,52,50,47,89,73,56,30.03,29.99,29.94,10,9,5,18,10,23,0,3,'',286,94107); +INSERT INTO "weather" VALUES('6/19/2015',71,62,52,53,50,48,89,69,49,30.01,29.99,29.95,10,10,7,18,9,21,0,4,'',267,94107); +INSERT INTO "weather" VALUES('6/20/2015',69,61,52,54,52,49,93,74,55,29.94,29.91,29.87,10,10,6,20,9,22,0,5,'',303,94107); +INSERT INTO "weather" VALUES('6/21/2015',67,62,56,52,50,48,86,69,52,30.05,30,29.91,10,9,6,22,12,25,0,4,'',271,94107); +INSERT INTO "weather" VALUES('6/22/2015',64,59,54,52,51,49,86,73,60,30.08,30.04,30.02,10,9,6,21,10,24,0,5,'',268,94107); +INSERT INTO "weather" VALUES('6/23/2015',70,62,53,52,50,48,86,69,51,30.03,29.99,29.94,10,9,6,21,9,24,0,2,'',261,94107); +INSERT INTO "weather" VALUES('6/24/2015',73,64,55,52,51,50,86,68,49,29.97,29.93,29.89,10,10,6,20,9,22,0,3,'',272,94107); +INSERT INTO "weather" VALUES('6/25/2015',79,68,56,57,53,50,83,63,43,29.92,29.89,29.86,10,10,7,18,7,21,0,0,'',323,94107); +INSERT INTO "weather" VALUES('6/26/2015',73,66,58,56,55,53,80,69,57,29.97,29.92,29.9,10,10,6,22,10,29,0,2,'',316,94107); +INSERT INTO "weather" VALUES('6/27/2015',74,66,58,57,55,53,86,70,53,30.02,29.98,29.95,10,10,10,17,9,20,0,6,'',315,94107); +INSERT INTO "weather" VALUES('6/28/2015',72,66,60,57,56,55,84,71,57,30.02,30,29.96,10,10,10,22,12,24,'T',7,'',291,94107); +INSERT INTO "weather" VALUES('6/29/2015',73,65,57,56,54,52,86,72,57,30.04,29.99,29.93,10,10,10,16,10,21,0,5,'',272,94107); +INSERT INTO "weather" VALUES('6/30/2015',82,70,57,57,55,54,93,66,39,29.93,29.88,29.81,10,10,10,16,8,18,0,3,'',293,94107); +INSERT INTO "weather" VALUES('7/1/2015',76,67,58,57,56,54,87,69,50,29.93,29.88,29.82,10,10,10,24,9,30,0,5,'',309,94107); +INSERT INTO "weather" VALUES('7/2/2015',74,67,60,59,57,55,90,76,61,29.98,29.94,29.91,10,10,10,21,11,23,0,6,'',313,94107); +INSERT INTO "weather" VALUES('7/3/2015',73,67,60,58,57,57,90,76,61,29.97,29.92,29.88,10,10,10,21,11,23,0,5,'',302,94107); +INSERT INTO "weather" VALUES('7/4/2015',71,66,60,58,57,56,90,78,66,29.9,29.88,29.85,10,10,10,21,11,25,0,6,'',297,94107); +INSERT INTO "weather" VALUES('7/5/2015',75,68,61,58,57,55,84,71,57,30.01,29.95,29.89,10,10,10,22,11,26,0,6,'',288,94107); +INSERT INTO "weather" VALUES('7/6/2015',73,67,61,58,56,54,84,69,53,30.09,30.05,30.01,10,10,7,18,13,21,'T',5,'Rain',267,94107); +INSERT INTO "weather" VALUES('7/7/2015',73,67,61,58,57,55,84,73,61,30.04,29.99,29.92,10,10,10,21,13,26,0,6,'',267,94107); +INSERT INTO "weather" VALUES('7/8/2015',69,65,60,56,54,52,78,71,63,29.92,29.88,29.84,10,10,10,21,13,28,0,8,'',265,94107); +INSERT INTO "weather" VALUES('7/9/2015',67,63,59,57,55,54,84,76,68,29.91,29.88,29.83,10,9,6,17,10,20,0.01,8,'Rain',263,94107); +INSERT INTO "weather" VALUES('7/10/2015',73,67,61,56,55,54,84,69,53,29.97,29.93,29.9,10,10,7,16,10,23,'T',6,'',267,94107); +INSERT INTO "weather" VALUES('7/11/2015',74,68,61,56,54,52,84,67,49,30,29.98,29.93,10,10,10,21,12,26,0,4,'',270,94107); +INSERT INTO "weather" VALUES('7/12/2015',75,69,63,57,56,53,84,65,46,30.06,30.03,30,10,10,10,21,11,24,0,6,'',263,94107); +INSERT INTO "weather" VALUES('7/13/2015',74,68,62,58,57,56,84,71,57,30.03,29.99,29.93,10,10,10,24,12,28,0,6,'',259,94107); +INSERT INTO "weather" VALUES('7/14/2015',70,65,60,57,56,55,90,76,61,29.95,29.92,29.89,10,10,6,22,12,28,'T',7,'',250,94107); +INSERT INTO "weather" VALUES('7/15/2015',77,68,58,57,56,55,84,67,50,29.91,29.88,29.86,10,10,7,18,10,24,0,4,'',233,94107); +INSERT INTO "weather" VALUES('7/16/2015',76,68,60,58,57,55,90,72,54,29.93,29.9,29.86,10,10,7,20,9,26,0,4,'',309,94107); +INSERT INTO "weather" VALUES('7/17/2015',74,68,61,57,56,55,90,74,57,29.88,29.84,29.79,10,10,8,21,10,24,0,5,'',303,94107); +INSERT INTO "weather" VALUES('7/18/2015',75,68,60,56,55,54,84,67,49,30.02,29.92,29.84,10,10,10,20,9,24,0,3,'',291,94107); +INSERT INTO "weather" VALUES('7/19/2015',87,74,61,58,56,54,78,57,35,30.06,30.04,30,10,10,10,16,6,20,0,5,'',280,94107); +INSERT INTO "weather" VALUES('7/20/2015',79,71,62,62,58,56,78,65,52,30.02,29.99,29.94,10,10,10,18,9,21,0,3,'',271,94107); +INSERT INTO "weather" VALUES('7/21/2015',70,65,60,57,56,55,90,76,61,29.96,29.91,29.86,10,10,7,20,11,23,0,6,'',268,94107); +INSERT INTO "weather" VALUES('7/22/2015',69,65,60,56,55,53,84,72,59,29.91,29.88,29.83,10,10,7,22,14,26,0,6,'',252,94107); +INSERT INTO "weather" VALUES('7/23/2015',69,65,60,55,54,53,78,68,57,30.05,30,29.92,10,10,7,21,13,25,0,5,'',250,94107); +INSERT INTO "weather" VALUES('7/24/2015',74,67,59,56,54,53,78,64,49,30.13,30.09,30.05,10,10,10,21,11,23,0,4,'',266,94107); +INSERT INTO "weather" VALUES('7/25/2015',70,65,60,56,55,54,84,73,61,30.12,30.07,29.99,10,10,10,21,10,29,0,6,'',267,94107); +INSERT INTO "weather" VALUES('7/26/2015',71,65,58,57,55,53,84,71,57,29.98,29.95,29.92,10,10,9,18,9,24,0,4,'',253,94107); +INSERT INTO "weather" VALUES('7/27/2015',81,69,56,58,54,52,86,61,36,29.97,29.93,29.89,10,10,7,21,9,25,0,0,'',287,94107); +INSERT INTO "weather" VALUES('7/28/2015',87,72,56,59,55,52,86,62,37,29.9,29.87,29.83,10,10,7,18,6,21,0,0,'',291,94107); +INSERT INTO "weather" VALUES('7/29/2015',79,70,60,59,58,56,90,69,48,29.96,29.91,29.86,10,10,7,18,10,23,0,0,'',316,94107); +INSERT INTO "weather" VALUES('7/30/2015',75,68,61,59,58,57,90,74,57,30.06,30.01,29.97,10,10,10,21,11,24,0,5,'',301,94107); +INSERT INTO "weather" VALUES('7/31/2015',72,67,61,59,57,57,90,78,66,30.04,30.01,29.97,10,10,10,20,11,23,0,6,'',281,94107); +INSERT INTO "weather" VALUES('8/1/2015',75,69,62,60,57,55,78,68,57,30.03,29.98,29.94,10,10,10,20,12,24,0,5,'',276,94107); +INSERT INTO "weather" VALUES('8/2/2015',73,68,63,57,56,55,84,71,57,30,29.95,29.91,10,10,8,20,12,23,0,6,'',265,94107); +INSERT INTO "weather" VALUES('8/3/2015',75,70,64,57,54,53,78,64,49,29.99,29.96,29.93,10,10,10,22,14,25,0,5,'',267,94107); +INSERT INTO "weather" VALUES('8/4/2015',75,69,62,57,54,52,78,62,46,30.02,29.99,29.96,10,10,10,18,10,22,0,5,'',269,94107); +INSERT INTO "weather" VALUES('8/5/2015',77,67,57,59,56,54,84,69,54,30.06,30,29.92,10,10,10,20,8,22,0,3,'',278,94107); +INSERT INTO "weather" VALUES('8/6/2015',72,65,58,58,57,54,93,77,61,29.93,29.87,29.8,10,10,7,21,8,24,'T',5,'Rain-Thunderstorm',309,94107); +INSERT INTO "weather" VALUES('8/7/2015',77,69,61,57,56,54,84,69,53,29.91,29.88,29.84,10,10,10,22,10,24,0,4,'',271,94107); +INSERT INTO "weather" VALUES('8/8/2015',70,66,62,57,56,55,84,73,61,29.96,29.94,29.91,10,10,10,18,11,25,0,6,'',261,94107); +INSERT INTO "weather" VALUES('8/9/2015',72,66,59,59,57,55,90,76,61,29.97,29.94,29.91,10,10,10,21,11,28,0,6,'',251,94107); +INSERT INTO "weather" VALUES('8/10/2015',73,67,60,60,57,54,84,73,61,29.98,29.94,29.9,10,10,10,22,13,25,0,6,'',262,94107); +INSERT INTO "weather" VALUES('8/11/2015',73,67,61,58,56,55,84,69,53,29.99,29.94,29.91,10,10,10,21,11,24,0,5,'',258,94107); +INSERT INTO "weather" VALUES('8/12/2015',78,67,55,61,57,50,93,67,41,30.08,30.03,29.98,10,10,10,18,9,22,0,2,'',285,94107); +INSERT INTO "weather" VALUES('8/13/2015',76,70,64,61,59,56,87,70,53,30.07,30.04,30,10,10,10,20,10,24,0,4,'',278,94107); +INSERT INTO "weather" VALUES('8/14/2015',76,69,61,60,58,57,87,71,54,30.09,30.04,29.99,10,10,10,17,9,21,0,4,'',264,94107); +INSERT INTO "weather" VALUES('8/15/2015',92,75,57,61,56,50,86,56,26,30,29.95,29.88,10,8,2,15,5,21,0,3,'',306,94107); +INSERT INTO "weather" VALUES('8/16/2015',93,77,61,61,57,47,84,56,27,29.91,29.86,29.81,10,7,4,16,5,20,0,5,'',297,94107); +INSERT INTO "weather" VALUES('8/17/2015',80,70,59,60,58,56,90,69,48,29.91,29.86,29.82,9,7,6,21,10,24,0,1,'',308,94107); +INSERT INTO "weather" VALUES('8/18/2015',75,68,61,58,57,55,90,72,54,29.95,29.91,29.88,10,8,4,18,10,22,0,4,'',310,94107); +INSERT INTO "weather" VALUES('8/19/2015',74,69,63,57,56,54,78,66,53,29.96,29.93,29.9,10,9,7,20,11,23,0,6,'',273,94107); +INSERT INTO "weather" VALUES('8/20/2015',70,66,62,57,55,53,84,71,57,29.94,29.9,29.86,10,10,10,20,12,24,0,6,'',270,94107); +INSERT INTO "weather" VALUES('8/21/2015',69,66,62,57,56,55,78,70,61,29.91,29.88,29.85,10,10,10,21,11,23,0,6,'',262,94107); +INSERT INTO "weather" VALUES('8/22/2015',75,68,61,58,56,55,78,66,53,29.95,29.92,29.88,10,10,10,22,8,25,0,5,'',257,94107); +INSERT INTO "weather" VALUES('8/23/2015',73,67,61,56,55,54,78,68,57,30.03,29.99,29.94,10,10,10,17,10,21,0,7,'',277,94107); +INSERT INTO "weather" VALUES('8/24/2015',75,68,61,57,55,54,84,69,53,30.06,30.02,29.97,10,10,7,17,10,22,0,4,'',281,94107); +INSERT INTO "weather" VALUES('8/25/2015',74,67,60,57,56,54,84,69,53,30.03,29.99,29.94,10,9,6,18,10,23,0,4,'',290,94107); +INSERT INTO "weather" VALUES('8/26/2015',79,69,58,58,56,52,87,65,43,30.04,30,29.97,10,9,6,16,6,21,0,4,'',296,94107); +INSERT INTO "weather" VALUES('8/27/2015',84,72,59,58,55,46,84,57,30,30.06,30.01,29.95,10,10,10,17,6,29,0,2,'',272,94107); +INSERT INTO "weather" VALUES('8/28/2015',91,77,62,62,58,53,87,60,32,29.96,29.9,29.86,10,10,10,24,8,28,0,4,'',291,94107); +INSERT INTO "weather" VALUES('8/29/2015',76,71,65,66,62,57,87,73,58,30.01,29.98,29.93,10,9,3,21,11,25,'T',6,'Rain',260,94107); +INSERT INTO "weather" VALUES('8/30/2015',78,70,61,60,59,56,87,69,50,30.06,30.01,29.94,10,10,10,20,11,22,0,3,'',276,94107); +INSERT INTO "weather" VALUES('8/31/2015',78,69,60,58,57,54,84,67,50,29.95,29.91,29.87,10,10,9,18,9,21,0,1,'',246,94107); +INSERT INTO "weather" VALUES('9/1/2014',89,74,60,64,56,52,82,67,27,29.86,29.83,29.76,10,10,10,12,2,'',0,0,'',339,94063); +INSERT INTO "weather" VALUES('9/2/2014',77,68,60,59,57,55,82,74,50,29.86,29.81,29.77,10,10,6,10,3,'',0,1,'',284,94063); +INSERT INTO "weather" VALUES('9/3/2014',77,70,62,59,56,55,82,74,50,29.81,29.76,29.71,10,10,10,13,4,'',0,5,'',283,94063); +INSERT INTO "weather" VALUES('9/4/2014',75,68,62,61,57,55,88,76,50,29.81,29.75,29.72,10,10,6,13,4,'',0,4,'',295,94063); +INSERT INTO "weather" VALUES('9/5/2014',73,68,59,59,56,55,88,76,53,29.92,29.86,29.81,10,10,10,14,4,'',0,5,'',315,94063); +INSERT INTO "weather" VALUES('9/6/2014',73,66,59,57,55,54,88,78,50,29.98,29.93,29.88,10,10,10,12,4,'',0,6,'',316,94063); +INSERT INTO "weather" VALUES('9/7/2014',73,65,57,57,54,52,88,78,53,29.93,29.88,29.81,10,10,10,14,6,'',0,5,'',299,94063); +INSERT INTO "weather" VALUES('9/8/2014',68,62,57,54,51,50,82,72,52,29.96,29.9,29.86,10,10,10,16,8,20,0,5,'',279,94063); +INSERT INTO "weather" VALUES('9/9/2014',73,65,57,57,53,50,88,77,53,30.02,29.96,29.91,10,10,10,12,3,'',0,4,'',317,94063); +INSERT INTO "weather" VALUES('9/10/2014',84,70,55,64,56,52,94,80,42,29.97,29.91,29.82,10,9,5,118,3,'',0,2,'',353,94063); +INSERT INTO "weather" VALUES('9/11/2014',82,70,57,63,57,54,88,76,37,29.92,29.87,29.82,10,10,6,12,5,'',0,0,'',341,94063); +INSERT INTO "weather" VALUES('9/12/2014',78,68,59,61,57,54,88,77,47,29.92,29.86,29.8,10,10,8,10,2,'',0,0,'',336,94063); +INSERT INTO "weather" VALUES('9/13/2014',77,68,59,63,57,55,88,78,47,29.88,29.84,29.78,10,10,10,9,3,'',0,2,'',332,94063); +INSERT INTO "weather" VALUES('9/14/2014',75,67,59,63,56,54,88,76,50,29.87,29.84,29.81,10,10,10,12,3,'',0,2,'',331,94063); +INSERT INTO "weather" VALUES('9/15/2014',78,68,59,61,54,50,82,69,36,29.95,29.9,29.85,10,10,10,14,3,17,0,0,'',288,94063); +INSERT INTO "weather" VALUES('9/16/2014',80,68,57,61,54,50,78,71,42,29.95,29.9,29.8,10,10,10,13,3,'',0,1,'',316,94063); +INSERT INTO "weather" VALUES('9/17/2014',84,72,60,64,58,48,88,72,30,29.84,29.8,29.74,10,10,9,17,4,22,0,3,'',219,94063); +INSERT INTO "weather" VALUES('9/18/2014',77,70,64,64,62,59,88,78,54,29.91,29.84,29.78,10,10,7,15,7,21,0,5,'',192,94063); +INSERT INTO "weather" VALUES('9/19/2014',77,68,59,63,59,57,94,82,54,29.93,29.9,29.84,10,10,7,17,3,'',0,3,'',299,94063); +INSERT INTO "weather" VALUES('9/20/2014',73,68,62,63,59,57,88,80,60,29.96,29.91,29.88,10,10,10,13,2,'',0,5,'',317,94063); +INSERT INTO "weather" VALUES('9/21/2014',73,68,62,59,58,57,83,77,61,30.03,29.99,29.94,10,10,10,16,7,23,0,4,'',286,94063); +INSERT INTO "weather" VALUES('9/22/2014',75,68,62,59,57,55,83,74,53,30.05,30.01,29.96,10,10,10,14,5,18,0,4,'',293,94063); +INSERT INTO "weather" VALUES('9/23/2014',78,68,59,63,59,55,88,80,51,30.03,29.98,29.92,10,10,10,14,4,'',0,4,'',286,94063); +INSERT INTO "weather" VALUES('9/24/2014',75,70,64,63,62,59,94,81,65,29.98,29.94,29.88,10,10,4,17,5,23,0,7,'',272,94063); +INSERT INTO "weather" VALUES('9/25/2014',71,65,59,61,58,55,100,85,57,30.03,29.97,29.91,10,8,2,15,7,'',0.4,5,'Rain',311,94063); +INSERT INTO "weather" VALUES('9/26/2014',71,65,59,59,56,50,94,78,46,30.02,29.98,29.93,10,10,10,18,4,24,0,2,'',280,94063); +INSERT INTO "weather" VALUES('9/27/2014',71,66,62,55,55,55,77,74,57,29.95,29.91,29.85,10,10,10,15,8,23,0,5,'',266,94063); +INSERT INTO "weather" VALUES('9/28/2014',73,65,57,59,56,54,94,79,57,29.98,29.9,29.84,10,10,10,13,3,18,0,3,'',291,94063); +INSERT INTO "weather" VALUES('9/29/2014',73,65,57,59,55,54,94,81,53,30.06,30,29.98,10,10,7,14,3,'',0,2,'',291,94063); +INSERT INTO "weather" VALUES('9/30/2014',77,67,57,59,54,50,88,75,44,30.01,29.96,29.86,10,10,10,9,3,'',0,1,'',279,94063); +INSERT INTO "weather" VALUES('10/1/2014',84,70,57,59,47,34,88,55,16,30.01,29.91,29.86,10,10,10,14,2,'',0,0,'',306,94063); +INSERT INTO "weather" VALUES('10/2/2014',89,72,55,54,43,36,82,43,16,30.05,29.99,29.87,10,10,10,6,1,'',0,0,'',314,94063); +INSERT INTO "weather" VALUES('10/3/2014',93,76,60,59,46,36,64,44,13,30.11,30.05,30,10,10,10,8,1,'',0,0,'',328,94063); +INSERT INTO "weather" VALUES('10/4/2014',91,76,60,64,43,28,65,39,13,30.05,30,29.92,10,10,10,10,1,'',0,0,'',360,94063); +INSERT INTO "weather" VALUES('10/5/2014',89,74,59,63,49,39,77,53,27,29.98,29.93,29.87,10,10,10,8,1,'',0,0,'',356,94063); +INSERT INTO "weather" VALUES('10/6/2014',82,70,57,63,55,50,88,75,42,29.95,29.91,29.85,10,10,10,8,3,'',0,0,'',326,94063); +INSERT INTO "weather" VALUES('10/7/2014',75,65,55,57,54,50,94,80,47,29.96,29.91,29.85,10,10,7,9,2,'',0,1,'',334,94063); +INSERT INTO "weather" VALUES('10/8/2014',84,70,57,63,55,52,88,78,33,29.94,29.91,29.85,10,10,5,9,1,'',0,1,'',350,94063); +INSERT INTO "weather" VALUES('10/9/2014',71,64,57,59,54,52,88,79,57,30.01,29.96,29.93,10,10,8,10,2,'',0,1,'',329,94063); +INSERT INTO "weather" VALUES('10/10/2014',69,63,57,57,54,52,88,80,60,30.09,30.04,30,10,10,10,9,5,'',0,4,'',303,94063); +INSERT INTO "weather" VALUES('10/11/2014',75,64,53,59,54,50,94,79,47,30.09,30.03,29.98,10,10,6,10,3,'',0,2,'',291,94063); +INSERT INTO "weather" VALUES('10/12/2014',89,73,57,59,47,27,94,61,10,30.02,29.95,29.34,10,10,10,7,1,'',0,1,'',279,94063); +INSERT INTO "weather" VALUES('10/13/2014',84,70,57,59,44,36,83,48,22,29.97,29.94,29.91,10,10,10,13,1,'',0,0,'',307,94063); +INSERT INTO "weather" VALUES('10/14/2014',69,64,59,57,56,54,94,79,56,29.96,29.91,29.83,10,9,5,17,4,28,0,6,'',180,94063); +INSERT INTO "weather" VALUES('10/15/2014',71,66,59,59,55,50,83,71,53,30.04,29.97,29.87,10,10,5,14,6,23,0,5,'',239,94063); +INSERT INTO "weather" VALUES('10/16/2014',71,63,55,54,49,46,82,69,43,30.06,30.01,29.96,10,10,10,13,2,18,0,2,'',265,94063); +INSERT INTO "weather" VALUES('10/17/2014',73,63,53,59,49,45,82,67,44,30,29.96,29.93,10,10,10,9,2,'',0,3,'',67,94063); +INSERT INTO "weather" VALUES('10/18/2014',77,68,59,59,56,54,88,73,44,30.01,29.96,29.89,10,10,10,12,2,'',0,2,'',359,94063); +INSERT INTO "weather" VALUES('10/19/2014',73,65,57,61,56,54,94,81,57,29.95,29.91,29.87,10,10,10,15,2,17,0,1,'',297,94063); +INSERT INTO "weather" VALUES('10/20/2014',68,62,57,59,55,50,94,79,56,30.08,29.98,29.92,10,10,4,13,3,17,0,4,'',220,94063); +INSERT INTO "weather" VALUES('10/21/2014',69,61,53,54,49,39,88,72,35,30.13,30.08,30.03,10,10,8,15,4,18,0,1,'',287,94063); +INSERT INTO "weather" VALUES('10/22/2014',73,63,53,55,51,46,82,73,50,30.1,30.06,30.02,10,10,10,12,2,'',0,2,'',337,94063); +INSERT INTO "weather" VALUES('10/23/2014',73,65,57,59,55,52,88,78,53,30.09,30.03,29.98,10,10,10,9,1,'',0,2,'',323,94063); +INSERT INTO "weather" VALUES('10/24/2014',71,64,57,57,55,54,88,76,57,29.99,29.96,29.89,10,10,10,14,4,20,0,1,'',191,94063); +INSERT INTO "weather" VALUES('10/25/2014',69,64,59,59,56,54,94,75,56,30.16,30.02,29.92,10,9,2,18,10,24,0.09,6,'Rain',191,94063); +INSERT INTO "weather" VALUES('10/26/2014',66,60,53,55,51,36,94,76,32,30.19,30.14,30.07,10,10,10,16,4,21,0,2,'',291,94063); +INSERT INTO "weather" VALUES('10/27/2014',68,59,50,54,49,46,88,76,46,30.09,30.06,30.02,10,10,10,10,2,'',0,1,'',305,94063); +INSERT INTO "weather" VALUES('10/28/2014',73,62,50,54,48,43,87,73,33,30.15,30.1,30.07,10,10,10,10,1,'',0,0,'',315,94063); +INSERT INTO "weather" VALUES('10/29/2014',78,66,53,59,50,48,88,69,34,30.13,30.07,29.98,10,10,10,6,1,'',0,2,'',258,94063); +INSERT INTO "weather" VALUES('10/30/2014',73,65,57,57,51,48,82,68,43,29.99,29.93,29.89,10,10,10,12,2,'',0,2,'',271,94063); +INSERT INTO "weather" VALUES('10/31/2014',62,60,57,57,54,50,94,81,68,29.93,29.85,29.76,10,9,1,12,4,16,0,5,'Rain',205,94063); +INSERT INTO "weather" VALUES('11/1/2014',62,58,53,50,49,46,88,77,55,30.05,29.89,29.75,10,10,10,14,4,20,0,3,'',263,94063); +INSERT INTO "weather" VALUES('11/2/2014',66,57,48,48,46,41,93,74,40,30.18,30.12,30.05,10,10,10,13,3,'',0,0,'',299,94063); +INSERT INTO "weather" VALUES('11/3/2014',66,56,46,50,44,39,82,71,37,30.29,30.23,30.18,10,10,10,9,1,'',0,1,'',308,94063); +INSERT INTO "weather" VALUES('11/4/2014',71,60,48,54,47,41,93,75,33,30.34,30.28,30.24,10,10,10,8,1,'',0,1,'',358,94063); +INSERT INTO "weather" VALUES('11/5/2014',75,63,51,55,49,46,88,70,38,30.25,30.17,30.09,10,10,10,6,1,'',0,1,'',4,94063); +INSERT INTO "weather" VALUES('11/6/2014',73,63,53,57,51,48,88,74,50,30.24,30.19,30.15,10,9,5,9,3,'',0,1,'',294,94063); +INSERT INTO "weather" VALUES('11/7/2014',71,60,50,59,53,48,100,88,60,30.25,30.18,30.11,10,8,0,8,1,'',0,2,'Fog',12,94063); +INSERT INTO "weather" VALUES('11/8/2014',75,64,53,59,52,50,100,84,41,30.14,30.09,30.02,10,7,0,4,0,'',0,3,'Fog',313,94063); +INSERT INTO "weather" VALUES('11/9/2014',71,62,53,59,53,50,94,84,57,30.04,29.95,29.84,10,10,10,8,1,'',0,1,'',321,94063); +INSERT INTO "weather" VALUES('11/10/2014',66,60,53,57,54,50,100,89,64,29.87,29.84,29.81,10,7,0,9,2,'',0,6,'Fog',263,94063); +INSERT INTO "weather" VALUES('11/11/2014',66,60,55,52,49,46,82,69,52,29.99,29.92,29.87,10,10,10,10,3,'',0,6,'',198,94063); +INSERT INTO "weather" VALUES('11/12/2014',64,60,57,52,47,45,77,61,49,30.05,30,29.98,10,10,3,9,2,'',0.02,8,'Rain',208,94063); +INSERT INTO "weather" VALUES('11/13/2014',64,60,55,59,56,54,100,91,73,30.1,30.01,29.94,10,8,2,12,5,'',0,6,'Rain',189,94063); +INSERT INTO "weather" VALUES('11/14/2014',66,60,53,55,52,48,94,81,52,30.12,30.1,30.07,10,10,8,12,4,'',0,3,'',273,94063); +INSERT INTO "weather" VALUES('11/15/2014',66,58,50,54,50,48,94,78,52,30.2,30.15,30.11,10,10,10,108,5,20,0,2,'',288,94063); +INSERT INTO "weather" VALUES('11/16/2014',62,56,51,50,40,19,88,63,19,30.28,30.23,30.19,10,10,10,8,1,'',0,2,'',279,94063); +INSERT INTO "weather" VALUES('11/17/2014',64,55,46,45,39,32,76,60,30,30.26,30.2,30.12,10,10,10,6,2,'',0,1,'',252,94063); +INSERT INTO "weather" VALUES('11/18/2014',64,56,48,48,42,39,76,65,40,30.15,30.11,30.07,10,10,10,6,1,'',0,3,'Rain',319,94063); +INSERT INTO "weather" VALUES('11/19/2014',64,60,55,57,51,41,94,79,48,30.15,30.06,30.01,10,10,7,14,2,20,0,6,'Rain',165,94063); +INSERT INTO "weather" VALUES('11/20/2014',59,56,53,57,53,50,100,94,82,30.14,30.08,30,10,9,2,12,2,'',0,7,'Rain',192,94063); +INSERT INTO "weather" VALUES('11/21/2014',60,55,50,54,52,50,100,89,68,30.15,30.1,30.05,10,10,7,6,2,'',0,6,'',125,94063); +INSERT INTO "weather" VALUES('11/22/2014',66,60,55,63,54,46,100,81,68,30.26,30.14,30.08,10,9,2,16,6,22,0,5,'Rain',216,94063); +INSERT INTO "weather" VALUES('11/23/2014',64,57,48,50,45,41,88,76,42,30.36,30.3,30.26,10,10,10,6,3,'',0,1,'',300,94063); +INSERT INTO "weather" VALUES('11/24/2014',64,54,44,50,42,39,93,72,42,30.43,30.37,30.33,10,10,10,6,1,'',0,0,'',148,94063); +INSERT INTO "weather" VALUES('11/25/2014',62,54,46,52,43,39,87,73,45,30.47,30.41,30.35,10,10,10,6,1,'',0,0,'',173,94063); +INSERT INTO "weather" VALUES('11/26/2014',66,56,46,50,46,43,93,77,52,30.34,30.28,30.21,10,8,5,6,1,'',0,0,'',148,94063); +INSERT INTO "weather" VALUES('11/27/2014',64,55,46,54,47,39,93,81,59,30.22,30.15,30.07,10,9,5,5,0,'',0,1,'',31,94063); +INSERT INTO "weather" VALUES('11/28/2014',62,53,44,52,47,39,100,83,63,30.09,29.99,29.87,10,7,0,10,2,'',0,6,'Fog',187,94063); +INSERT INTO "weather" VALUES('11/29/2014',64,60,55,57,54,48,100,87,73,29.88,29.83,29.76,10,10,6,8,4,'',0,7,'Rain',136,94063); +INSERT INTO "weather" VALUES('11/30/2014',59,55,51,57,54,50,100,94,82,30.04,29.86,29.76,10,9,2,12,1,'',0,6,'Rain',149,94063); +INSERT INTO "weather" VALUES('12/1/2014',64,58,53,59,55,54,100,96,77,30.13,30.05,29.96,10,9,6,7,1,'',0,6,'',317,94063); +INSERT INTO "weather" VALUES('12/2/2014',62,58,55,57,56,55,100,96,82,29.96,29.82,29.7,10,6,2,16,5,'',1.07,7,'Rain',128,94063); +INSERT INTO "weather" VALUES('12/3/2014',64,60,57,59,57,55,100,92,73,29.9,29.78,29.71,10,6,0,18,8,23,0.09,7,'Rain',146,94063); +INSERT INTO "weather" VALUES('12/4/2014',68,62,55,59,57,55,100,92,64,30.04,29.95,29.9,10,9,0,9,3,'',0,6,'Fog-Rain',206,94063); +INSERT INTO "weather" VALUES('12/5/2014',66,60,55,59,57,55,100,93,73,30.09,30.04,29.99,10,9,2,13,3,17,0,7,'Rain',158,94063); +INSERT INTO "weather" VALUES('12/6/2014',66,62,57,59,58,57,100,94,73,30.24,30.18,30.1,10,9,1,9,3,'',0.12,6,'Rain',153,94063); +INSERT INTO "weather" VALUES('12/7/2014',62,58,53,59,56,54,100,96,82,30.23,30.19,30.15,10,7,0,10,2,18,0,4,'Fog',155,94063); +INSERT INTO "weather" VALUES('12/8/2014',66,60,53,59,55,52,100,92,73,30.19,30.17,30.13,10,10,8,10,2,'',0,4,'',185,94063); +INSERT INTO "weather" VALUES('12/9/2014',62,58,55,59,56,55,100,96,82,30.22,30.15,30.09,10,8,3,7,2,'',0,5,'',259,94063); +INSERT INTO "weather" VALUES('12/10/2014',66,60,55,57,55,54,100,86,68,30.09,29.95,29.75,10,8,4,23,4,36,0,7,'',150,94063); +INSERT INTO "weather" VALUES('12/11/2014',64,57,50,59,54,48,100,85,73,29.74,29.65,29.55,10,6,1,28,16,36,0.2,8,'Rain',146,94063); +INSERT INTO "weather" VALUES('12/12/2014',55,52,48,52,49,48,100,94,82,30.1,29.88,29.68,10,10,7,6,1,'',0,7,'Rain',190,94063); +INSERT INTO "weather" VALUES('12/13/2014',55,50,44,50,47,45,100,93,72,30.24,30.17,30.1,10,10,8,5,0,'',0,3,'',25,94063); +INSERT INTO "weather" VALUES('12/14/2014',60,53,46,50,47,45,100,86,55,30.16,30.08,30,10,9,5,10,1,'',0.08,6,'Rain',125,94063); +INSERT INTO "weather" VALUES('12/15/2014',55,52,50,54,50,48,100,95,82,29.99,29.92,29.84,10,7,2,17,7,28,0.37,6,'Rain',130,94063); +INSERT INTO "weather" VALUES('12/16/2014',62,55,48,52,49,48,100,92,59,29.97,29.93,29.84,10,9,2,18,4,24,0,5,'Rain',164,94063); +INSERT INTO "weather" VALUES('12/17/2014',57,52,46,52,49,46,100,91,67,30.1,30.03,29.96,10,9,3,12,3,17,0.01,7,'Rain',165,94063); +INSERT INTO "weather" VALUES('12/18/2014',59,54,50,52,49,48,94,85,72,30.2,30.13,30.07,10,10,7,7,3,'',0,6,'',163,94063); +INSERT INTO "weather" VALUES('12/19/2014',57,55,53,55,52,50,100,89,77,30.18,30.15,30.12,10,9,2,16,6,16,0,8,'Rain',147,94063); +INSERT INTO "weather" VALUES('12/20/2014',59,57,55,57,55,50,100,93,72,30.27,30.19,30.14,10,8,4,7,1,'',0,8,'Rain',164,94063); +INSERT INTO "weather" VALUES('12/21/2014',64,60,55,59,57,55,100,95,82,30.34,30.29,30.26,10,8,2,15,2,20,0,7,'',265,94063); +INSERT INTO "weather" VALUES('12/22/2014',64,58,53,57,55,54,100,95,73,30.31,30.26,30.2,10,9,0,8,1,'',0,4,'Fog',333,94063); +INSERT INTO "weather" VALUES('12/23/2014',66,58,50,55,51,48,100,88,52,30.24,30.18,30.14,10,10,10,7,0,'',0,0,'',42,94063); +INSERT INTO "weather" VALUES('12/24/2014',59,54,48,55,48,37,100,86,62,30.13,30.08,29.98,10,7,0,28,4,33,0,5,'Fog-Rain',282,94063); +INSERT INTO "weather" VALUES('12/25/2014',57,50,44,41,36,32,71,61,38,30.17,30.12,30.08,10,10,10,17,7,24,0,0,'',310,94063); +INSERT INTO "weather" VALUES('12/26/2014',57,50,41,41,33,28,76,54,38,30.28,30.19,30.12,10,10,10,14,7,20,0,0,'',337,94063); +INSERT INTO "weather" VALUES('12/27/2014',53,44,35,39,34,32,87,71,47,30.4,30.34,30.28,10,10,10,6,1,'',0,1,'',165,94063); +INSERT INTO "weather" VALUES('12/28/2014',57,49,41,46,41,37,93,82,54,30.38,30.32,30.25,10,10,7,7,1,'',0,1,'',214,94063); +INSERT INTO "weather" VALUES('12/29/2014',55,48,42,46,41,36,93,77,51,30.25,30.2,30.13,10,10,7,15,3,22,0,1,'',295,94063); +INSERT INTO "weather" VALUES('12/30/2014',53,47,41,41,31,23,87,55,33,30.27,30.17,30.12,10,10,10,30,10,40,0,1,'',358,94063); +INSERT INTO "weather" VALUES('12/31/2014',55,45,35,28,21,10,61,43,19,30.28,30.21,30.09,10,10,10,15,7,18,0,0,'',352,94063); +INSERT INTO "weather" VALUES('1/1/2015',55,46,37,32,26,18,65,50,25,30.19,30.13,30.08,10,10,10,8,2,'',0,1,'',314,94063); +INSERT INTO "weather" VALUES('1/2/2015',50,42,35,36,31,27,87,71,50,30.24,30.19,30.14,10,10,8,5,0,'',0,2,'',28,94063); +INSERT INTO "weather" VALUES('1/3/2015',53,43,33,43,34,32,93,79,54,30.33,30.26,30.2,10,9,7,6,0,'',0,0,'',71,94063); +INSERT INTO "weather" VALUES('1/4/2015',53,45,37,45,38,36,93,83,62,30.44,30.38,30.33,8,6,5,5,1,'',0,2,'',202,94063); +INSERT INTO "weather" VALUES('1/5/2015',55,47,39,46,39,36,93,79,58,30.4,30.34,30.24,10,8,5,6,0,'',0,1,'',123,94063); +INSERT INTO "weather" VALUES('1/6/2015',59,50,41,48,40,37,87,76,55,30.3,30.23,30.19,10,8,5,5,1,'',0,0,'',116,94063); +INSERT INTO "weather" VALUES('1/7/2015',64,52,41,50,43,37,93,79,49,30.24,30.16,30.09,10,10,7,5,0,'',0,0,'',78,94063); +INSERT INTO "weather" VALUES('1/8/2015',59,52,46,50,45,41,93,82,67,30.11,30.06,30.02,10,9,4,5,1,'',0,2,'',74,94063); +INSERT INTO "weather" VALUES('1/9/2015',64,56,48,52,48,45,94,86,56,30.05,30.01,29.98,10,8,5,7,1,'',0,2,'',5,94063); +INSERT INTO "weather" VALUES('1/10/2015',59,54,48,54,48,46,100,90,67,30.06,30.01,29.97,10,9,3,7,3,'',0,3,'',325,94063); +INSERT INTO "weather" VALUES('1/11/2015',55,50,44,50,47,45,100,94,82,30.2,30.1,30.03,10,8,2,4,1,'',0,3,'',197,94063); +INSERT INTO "weather" VALUES('1/12/2015',62,53,44,50,46,43,100,90,59,30.29,30.22,30.2,10,9,6,7,1,'',0,1,'',36,94063); +INSERT INTO "weather" VALUES('1/13/2015',62,53,44,48,43,37,100,78,45,30.24,30.19,30.13,10,10,10,7,1,'',0,1,'',192,94063); +INSERT INTO "weather" VALUES('1/14/2015',59,50,41,48,41,37,87,80,59,30.31,30.22,30.17,10,9,5,6,1,'',0,1,'',297,94063); +INSERT INTO "weather" VALUES('1/15/2015',59,50,42,50,45,41,93,86,63,30.34,30.29,30.24,8,4,2,8,2,'',0,2,'',352,94063); +INSERT INTO "weather" VALUES('1/16/2015',59,52,46,54,48,45,94,89,67,30.31,30.27,30.23,10,5,3,7,2,'',0,5,'',327,94063); +INSERT INTO "weather" VALUES('1/17/2015',59,54,50,54,50,48,100,89,77,30.31,30.28,30.21,9,6,5,6,2,'',0,5,'',232,94063); +INSERT INTO "weather" VALUES('1/18/2015',64,57,50,57,52,48,100,93,73,30.34,30.28,30.26,10,6,1,7,2,'',0,5,'',351,94063); +INSERT INTO "weather" VALUES('1/19/2015',59,54,48,55,52,46,100,93,72,30.32,30.26,30.19,10,7,0,9,2,'',0,5,'Fog',336,94063); +INSERT INTO "weather" VALUES('1/20/2015',59,54,46,52,47,43,100,90,72,30.19,30.14,30.06,10,7,0,8,1,'',0,4,'Fog',342,94063); +INSERT INTO "weather" VALUES('1/21/2015',60,52,44,48,42,39,100,78,48,30.2,30.14,30.09,10,10,10,5,0,'',0,1,'',255,94063); +INSERT INTO "weather" VALUES('1/22/2015',55,50,44,48,42,39,93,81,63,30.37,30.27,30,10,10,8,7,2,'',0,1,'',299,94063); +INSERT INTO "weather" VALUES('1/23/2015',60,52,44,50,43,39,87,77,52,30.38,30.32,30.24,10,10,5,6,1,'',0,0,'',300,94063); +INSERT INTO "weather" VALUES('1/24/2015',68,58,48,50,43,37,87,71,35,30.26,30.2,30.1,10,10,9,8,2,'',0,0,'',297,94063); +INSERT INTO "weather" VALUES('1/25/2015',62,53,44,50,45,41,93,81,45,30.16,30.11,30.02,10,9,5,6,2,'',0,0,'',311,94063); +INSERT INTO "weather" VALUES('1/26/2015',62,53,44,50,44,39,93,76,42,30.06,30.03,29.98,10,10,8,6,1,'',0,2,'',314,94063); +INSERT INTO "weather" VALUES('1/27/2015',66,60,51,54,46,37,82,62,37,30.28,30.15,30.02,10,10,10,20,6,24,0,5,'',99,94063); +INSERT INTO "weather" VALUES('1/28/2015',64,56,48,50,46,45,93,79,52,30.28,30.23,30.17,10,10,8,7,1,'',0,1,'',309,94063); +INSERT INTO "weather" VALUES('1/29/2015',66,56,46,54,47,45,100,85,56,30.18,30.14,30.07,10,8,0,6,1,'',0,1,'Fog',329,94063); +INSERT INTO "weather" VALUES('1/30/2015',64,54,44,54,47,43,100,87,56,30.08,30.01,29.91,10,8,0,8,1,'',0,2,'Fog',164,94063); +INSERT INTO "weather" VALUES('1/31/2015',73,60,46,46,39,23,93,65,15,30.07,29.97,29.92,10,10,10,7,1,'',0,1,'',270,94063); +INSERT INTO "weather" VALUES('2/1/2015',62,53,44,54,42,36,87,71,51,30.18,30.12,30.07,10,10,10,7,1,'',0,2,'',298,94063); +INSERT INTO "weather" VALUES('2/2/2015',66,56,46,54,47,43,94,82,52,30.2,30.15,30.1,10,8,5,7,1,'',0,2,'',307,94063); +INSERT INTO "weather" VALUES('2/3/2015',66,58,50,54,49,46,94,82,63,30.14,30.11,30.06,10,9,6,6,0,'',0,2,'',25,94063); +INSERT INTO "weather" VALUES('2/4/2015',62,55,48,55,50,46,100,88,72,30.1,30.06,30.02,10,9,3,9,1,'',0,2,'',284,94063); +INSERT INTO "weather" VALUES('2/5/2015',62,56,50,52,48,45,88,77,52,30.07,30,29.91,10,10,10,20,4,24,0,3,'',155,94063); +INSERT INTO "weather" VALUES('2/6/2015',64,62,59,59,54,43,94,74,48,29.95,29.88,29.82,10,8,2,24,15,38,0.01,5,'Rain',161,94063); +INSERT INTO "weather" VALUES('2/7/2015',66,62,59,63,58,41,100,85,48,30.09,30.02,29.94,10,9,2,20,9,28,0,6,'Rain',185,94063); +INSERT INTO "weather" VALUES('2/8/2015',64,60,55,59,55,52,100,87,64,30.07,29.98,29.89,10,8,1,28,7,43,0.18,5,'Rain',188,94063); +INSERT INTO "weather" VALUES('2/9/2015',64,58,53,54,52,48,88,79,64,30.28,30.19,30.08,10,10,7,13,6,21,0,5,'',229,94063); +INSERT INTO "weather" VALUES('2/10/2015',64,56,48,48,46,45,100,81,52,30.26,30.19,30.11,10,10,10,8,1,'',0,3,'',289,94063); +INSERT INTO "weather" VALUES('2/11/2015',66,56,46,54,47,45,93,79,49,30.2,30.15,30.12,10,10,10,5,1,'',0,2,'',318,94063); +INSERT INTO "weather" VALUES('2/12/2015',64,56,48,50,48,46,94,82,56,30.23,30.18,30.15,10,10,10,6,1,'',0,1,'',236,94063); +INSERT INTO "weather" VALUES('2/13/2015',71,60,50,57,51,48,94,80,53,30.17,30.11,30.07,10,10,10,6,1,'',0,1,'',342,94063); +INSERT INTO "weather" VALUES('2/14/2015',73,62,50,55,50,48,94,78,44,30.13,30.08,30.04,10,10,10,6,2,'',0,0,'',301,94063); +INSERT INTO "weather" VALUES('2/15/2015',73,60,48,52,47,41,94,72,33,30.07,30.03,29.98,10,10,10,6,0,'',0,1,'',3,94063); +INSERT INTO "weather" VALUES('2/16/2015',71,60,48,55,48,45,94,79,43,30.05,30.01,29.96,10,10,10,9,2,'',0,1,'',334,94063); +INSERT INTO "weather" VALUES('2/17/2015',57,55,53,54,50,46,94,84,72,30.2,30.12,30.05,10,8,2,8,4,'',0,8,'',303,94063); +INSERT INTO "weather" VALUES('2/18/2015',62,58,51,54,48,46,88,78,68,30.25,30.19,30.13,10,10,10,10,5,'',0,5,'',311,94063); +INSERT INTO "weather" VALUES('2/19/2015',62,56,50,55,52,48,100,90,77,30.18,30.14,30.06,10,7,3,9,1,'',0,6,'',317,94063); +INSERT INTO "weather" VALUES('2/20/2015',66,60,53,54,51,48,100,85,52,30.1,30.04,29.95,10,8,2,8,3,'',0,5,'',157,94063); +INSERT INTO "weather" VALUES('2/21/2015',66,57,48,54,47,43,94,81,43,29.98,29.92,29.84,10,10,10,13,1,'',0,1,'',272,94063); +INSERT INTO "weather" VALUES('2/22/2015',64,56,48,50,41,27,94,63,31,29.9,29.87,29.85,10,10,10,15,3,22,0,2,'',327,94063); +INSERT INTO "weather" VALUES('2/23/2015',60,55,50,41,25,19,58,33,25,30.25,30.05,29.9,10,10,10,15,8,22,0,0,'',346,94063); +INSERT INTO "weather" VALUES('2/24/2015',66,54,41,46,31,18,72,47,15,30.37,30.31,30.26,10,10,10,12,2,'',0,0,'',271,94063); +INSERT INTO "weather" VALUES('2/25/2015',68,56,44,50,42,36,88,74,40,30.31,30.24,30.11,10,10,10,12,3,'',0,1,'',249,94063); +INSERT INTO "weather" VALUES('2/26/2015',71,60,48,54,48,46,93,80,41,30.1,30.03,29.94,10,10,7,23,5,28,0,4,'',291,94063); +INSERT INTO "weather" VALUES('2/27/2015',60,56,51,50,47,43,82,74,55,29.94,29.87,29.77,10,10,10,18,13,29,0,3,'',288,94063); +INSERT INTO "weather" VALUES('2/28/2015',60,54,48,48,45,41,94,77,52,29.94,29.81,29.74,10,10,10,16,6,22,0,4,'',269,94063); +INSERT INTO "weather" VALUES('3/1/2015',62,52,42,46,41,34,100,74,37,30.02,29.96,29.92,10,10,10,10,2,'',0,1,'',212,94063); +INSERT INTO "weather" VALUES('3/2/2015',59,52,44,45,41,39,81,72,51,30,29.89,29.81,10,10,10,8,2,'',0,2,'',225,94063); +INSERT INTO "weather" VALUES('3/3/2015',64,54,44,46,42,41,87,74,42,30.08,30.02,29.98,10,10,10,9,1,'',0,1,'',302,94063); +INSERT INTO "weather" VALUES('3/4/2015',66,55,44,46,40,36,87,67,32,30.24,30.13,30.05,10,10,10,8,1,'',0,0,'',17,94063); +INSERT INTO "weather" VALUES('3/5/2015',68,57,46,45,39,37,76,61,35,30.36,30.29,30.24,10,10,10,7,1,'',0,0,'',346,94063); +INSERT INTO "weather" VALUES('3/6/2015',73,58,44,50,40,32,81,59,28,30.32,30.25,30.16,10,10,10,9,1,'',0,0,'',304,94063); +INSERT INTO "weather" VALUES('3/7/2015',75,60,46,50,43,37,82,65,31,30.16,30.1,30.01,10,10,10,8,1,'',0,0,'',5,94063); +INSERT INTO "weather" VALUES('3/8/2015',68,58,48,54,48,45,88,80,52,30.14,30.07,30,10,10,6,8,2,'',0,2,'',332,94063); +INSERT INTO "weather" VALUES('3/9/2015',66,58,50,54,49,46,94,84,64,30.08,30.02,29.94,10,10,6,10,5,'',0,4,'',311,94063); +INSERT INTO "weather" VALUES('3/10/2015',64,57,50,55,50,48,100,86,56,30.02,29.97,29.94,10,8,1,14,2,'',0,6,'',296,94063); +INSERT INTO "weather" VALUES('3/11/2015',66,60,55,55,52,43,100,81,45,30.27,30.12,30.02,10,10,6,12,3,'',0,5,'Rain',255,94063); +INSERT INTO "weather" VALUES('3/12/2015',71,61,51,54,51,48,94,76,46,30.3,30.23,30.14,10,10,10,39,1,'',0,3,'',320,94063); +INSERT INTO "weather" VALUES('3/13/2015',75,63,51,57,51,45,94,73,36,30.2,30.16,30.09,10,10,5,7,1,'',0,2,'',324,94063); +INSERT INTO "weather" VALUES('3/14/2015',82,68,55,57,50,34,82,59,23,30.14,30.07,29.97,10,10,10,8,2,'',0,2,'',212,94063); +INSERT INTO "weather" VALUES('3/15/2015',73,65,57,52,41,32,64,43,27,30.11,30.03,29.99,10,10,10,13,4,18,0,2,'',247,94063); +INSERT INTO "weather" VALUES('3/16/2015',68,62,55,55,46,39,77,60,46,30.07,30.04,30.02,10,10,10,10,2,'',0,2,'',295,94063); +INSERT INTO "weather" VALUES('3/17/2015',68,60,53,50,47,39,82,66,35,30.15,30.09,30.06,10,10,10,16,6,23,0,2,'',295,94063); +INSERT INTO "weather" VALUES('3/18/2015',73,62,50,50,46,41,87,71,31,30.09,30.07,30,10,10,10,9,2,'',0,0,'',312,94063); +INSERT INTO "weather" VALUES('3/19/2015',75,62,50,55,47,43,88,71,31,30.09,30.06,30,10,10,10,9,3,'',0,1,'',325,94063); +INSERT INTO "weather" VALUES('3/20/2015',66,58,50,52,45,34,82,68,37,30.19,30.11,30.06,10,10,9,12,2,16,0,2,'',288,94063); +INSERT INTO "weather" VALUES('3/21/2015',69,61,53,55,50,45,94,75,49,30.2,30.16,30.1,10,10,10,12,3,'',0,4,'',262,94063); +INSERT INTO "weather" VALUES('3/22/2015',66,60,55,55,51,48,94,78,56,30.22,30.17,30.14,10,9,2,14,4,18,0.01,5,'Rain',220,94063); +INSERT INTO "weather" VALUES('3/23/2015',64,58,53,54,49,39,94,76,40,30.33,30.27,30.21,10,10,5,13,4,16,0.01,5,'Rain',262,94063); +INSERT INTO "weather" VALUES('3/24/2015',64,57,50,54,48,45,82,73,59,30.33,30.29,30.24,10,10,10,13,4,22,0,4,'',277,94063); +INSERT INTO "weather" VALUES('3/25/2015',75,64,53,54,50,45,88,74,38,30.27,30.22,30.16,10,10,10,9,3,'',0,0,'',321,94063); +INSERT INTO "weather" VALUES('3/26/2015',80,66,53,57,51,48,88,71,32,30.19,30.14,30.06,10,10,10,7,1,'',0,0,'',328,94063); +INSERT INTO "weather" VALUES('3/27/2015',68,60,53,57,52,48,88,77,56,30.19,30.14,30.1,10,10,10,15,4,22,0,0,'',303,94063); +INSERT INTO "weather" VALUES('3/28/2015',77,64,50,52,46,39,88,65,26,30.21,30.16,30.08,10,10,10,12,3,'',0,1,'',293,94063); +INSERT INTO "weather" VALUES('3/29/2015',78,63,48,55,46,39,87,66,24,30.14,30.09,30.01,10,10,10,12,3,'',0,1,'',303,94063); +INSERT INTO "weather" VALUES('3/30/2015',68,60,51,50,47,46,82,70,46,30.11,30.06,30.03,10,10,10,17,5,25,0,1,'',278,94063); +INSERT INTO "weather" VALUES('3/31/2015',64,60,55,50,46,39,82,67,42,30.21,30.15,30.09,10,10,10,22,14,28,0,1,'',287,94063); +INSERT INTO "weather" VALUES('4/1/2015',64,57,50,45,39,30,72,58,32,30.22,30.17,30.1,10,10,10,18,9,30,0,1,'',283,94063); +INSERT INTO "weather" VALUES('4/2/2015',68,59,50,45,36,28,72,51,24,30.23,30.17,30.13,10,10,10,14,5,21,0,0,'',301,94063); +INSERT INTO "weather" VALUES('4/3/2015',71,58,46,48,38,32,71,58,23,30.24,30.18,30.13,10,10,10,18,3,24,0,0,'',290,94063); +INSERT INTO "weather" VALUES('4/4/2015',64,54,44,46,39,34,76,64,34,30.15,30.08,30,10,10,10,21,5,28,0,1,'',262,94063); +INSERT INTO "weather" VALUES('4/5/2015',59,52,46,46,41,37,82,71,48,30,29.95,29.92,10,10,10,16,3,23,0,2,'',215,94063); +INSERT INTO "weather" VALUES('4/6/2015',62,52,42,45,40,36,87,66,37,29.99,29.94,29.86,10,10,10,15,5,22,0,3,'',173,94063); +INSERT INTO "weather" VALUES('4/7/2015',59,54,50,48,45,37,94,76,48,30.08,29.9,29.78,10,8,2,17,10,25,0.06,6,'Rain',207,94063); +INSERT INTO "weather" VALUES('4/8/2015',62,55,48,48,44,37,87,72,39,30.2,30.13,30.08,10,10,10,12,5,'',0,3,'',271,94063); +INSERT INTO "weather" VALUES('4/9/2015',66,56,46,46,42,36,87,66,32,30.11,30.05,29.96,10,10,10,13,2,'',0,2,'',312,94063); +INSERT INTO "weather" VALUES('4/10/2015',68,58,48,48,38,27,76,57,28,30.08,30.03,30,10,10,10,15,3,'',0,1,'',284,94063); +INSERT INTO "weather" VALUES('4/11/2015',71,60,48,50,40,27,77,59,31,30.11,30.07,30.04,10,10,10,17,3,22,0,1,'',301,94063); +INSERT INTO "weather" VALUES('4/12/2015',77,64,50,50,46,41,87,64,29,30.07,30.03,29.96,10,10,10,9,4,'',0,0,'',311,94063); +INSERT INTO "weather" VALUES('4/13/2015',60,55,50,50,46,45,87,73,55,30.19,30.09,30.02,10,10,10,18,6,24,0,2,'',284,94063); +INSERT INTO "weather" VALUES('4/14/2015',62,55,48,45,37,25,72,57,27,30.36,30.27,30.19,10,10,10,18,10,22,0,0,'',296,94063); +INSERT INTO "weather" VALUES('4/15/2015',71,60,48,39,35,28,71,47,20,30.26,30.15,30.02,10,10,10,12,5,'',0,1,'',297,94063); +INSERT INTO "weather" VALUES('4/16/2015',80,66,53,41,32,23,58,33,13,30.08,30.03,29.98,10,10,10,17,4,17,0,0,'',336,94063); +INSERT INTO "weather" VALUES('4/17/2015',77,64,51,50,38,27,77,48,18,30.11,30.07,30.01,10,10,10,14,3,'',0,0,'',320,94063); +INSERT INTO "weather" VALUES('4/18/2015',69,60,50,54,48,45,88,77,46,30.08,30.02,29.92,10,10,6,12,3,'',0,1,'',338,94063); +INSERT INTO "weather" VALUES('4/19/2015',68,59,50,54,49,48,94,80,56,30,29.95,29.89,10,10,10,12,4,'',0,4,'',315,94063); +INSERT INTO "weather" VALUES('4/20/2015',66,60,53,54,49,48,82,76,56,29.92,29.89,29.84,10,10,10,14,6,'',0,6,'',278,94063); +INSERT INTO "weather" VALUES('4/21/2015',62,58,53,48,48,48,82,78,59,29.93,29.89,29.86,10,10,10,16,6,21,0,5,'',253,94063); +INSERT INTO "weather" VALUES('4/22/2015',64,57,50,52,48,46,88,77,59,29.92,29.88,29.86,10,10,10,14,4,21,0,3,'',275,94063); +INSERT INTO "weather" VALUES('4/23/2015',64,57,50,50,46,45,82,72,56,29.93,29.89,29.86,10,10,8,17,5,24,0,4,'',259,94063); +INSERT INTO "weather" VALUES('4/24/2015',62,58,53,54,47,37,88,71,42,30.06,29.99,29.92,10,10,5,23,13,32,0,4,'Rain',256,94063); +INSERT INTO "weather" VALUES('4/25/2015',60,56,53,55,49,41,94,78,52,30.09,29.98,29.91,10,8,2,18,12,29,0.14,6,'Rain',270,94063); +INSERT INTO "weather" VALUES('4/26/2015',71,61,51,48,43,37,76,60,29,30.17,30.11,30.08,10,10,10,18,10,21,0,1,'',305,94063); +INSERT INTO "weather" VALUES('4/27/2015',84,68,53,55,48,43,88,69,23,30.08,30.03,29.94,10,10,10,13,3,'',0,1,'',300,94063); +INSERT INTO "weather" VALUES('4/28/2015',66,60,53,50,49,48,88,76,52,30.07,30.05,30.02,10,10,10,14,7,18,0,4,'',279,94063); +INSERT INTO "weather" VALUES('4/29/2015',71,61,51,52,47,41,82,69,38,30.05,30,29.91,10,10,10,14,4,18,0,1,'',277,94063); +INSERT INTO "weather" VALUES('4/30/2015',87,70,53,59,45,36,82,54,17,29.91,29.86,29.78,10,10,9,100,4,'',0,0,'',293,94063); +INSERT INTO "weather" VALUES('5/1/2015',78,68,57,55,48,43,82,55,34,29.92,29.85,29.81,10,10,10,13,3,16,0,0,'',329,94063); +INSERT INTO "weather" VALUES('5/2/2015',69,62,55,54,51,48,88,77,49,29.92,29.89,29.82,10,10,8,7,4,'',0,3,'',289,94063); +INSERT INTO "weather" VALUES('5/3/2015',64,58,53,50,47,46,82,72,52,29.94,29.9,29.87,10,10,10,18,6,22,0,4,'',271,94063); +INSERT INTO "weather" VALUES('5/4/2015',68,59,50,46,46,45,87,74,46,30.01,29.97,29.94,10,10,10,21,9,30,0,6,'',256,94063); +INSERT INTO "weather" VALUES('5/5/2015',60,54,48,46,45,43,87,74,55,29.99,29.97,29.93,10,10,10,17,5,29,0,3,'',244,94063); +INSERT INTO "weather" VALUES('5/6/2015',66,58,50,50,44,41,82,71,45,29.94,29.9,29.83,10,10,9,15,8,21,0,4,'',249,94063); +INSERT INTO "weather" VALUES('5/7/2015',64,57,50,48,43,39,82,67,40,29.84,29.79,29.74,10,10,9,13,5,'',0,4,'',262,94063); +INSERT INTO "weather" VALUES('5/8/2015',66,58,50,50,47,45,87,74,4,30.05,29.87,29.78,10,10,9,13,4,'',0,1,'',267,94063); +INSERT INTO "weather" VALUES('5/9/2015',64,58,51,48,47,46,82,77,56,30.13,30.09,30.05,10,10,10,17,9,18,0,5,'',278,94063); +INSERT INTO "weather" VALUES('5/10/2015',64,57,50,48,47,45,94,76,52,30.12,30.06,30,10,10,10,16,9,'',0,4,'',271,94063); +INSERT INTO "weather" VALUES('5/11/2015',60,56,51,48,46,43,88,72,55,30.01,29.97,29.9,10,10,10,20,7,28,0,2,'',253,94063); +INSERT INTO "weather" VALUES('5/12/2015',62,56,50,43,41,36,76,63,37,30,29.95,29.91,10,10,10,22,13,32,0,1,'',273,94063); +INSERT INTO "weather" VALUES('5/13/2015',62,56,51,48,43,41,77,65,45,30.01,29.96,29.91,10,10,10,14,8,18,0,2,'',264,94063); +INSERT INTO "weather" VALUES('5/14/2015',62,58,53,52,47,45,82,72,52,29.91,29.86,29.81,10,10,10,12,4,18,0,6,'Rain',213,94063); +INSERT INTO "weather" VALUES('5/15/2015',60,55,50,48,47,45,87,74,59,30,29.93,29.87,10,10,10,16,5,24,0,4,'',266,94063); +INSERT INTO "weather" VALUES('5/16/2015',62,58,53,48,48,48,82,76,59,30.06,30.01,29.97,10,10,10,20,8,25,0,7,'',251,94063); +INSERT INTO "weather" VALUES('5/17/2015',60,58,55,48,48,46,77,74,59,30.08,30.06,30.03,10,10,10,13,5,17,0,7,'',256,94063); +INSERT INTO "weather" VALUES('5/18/2015',59,57,55,48,47,46,77,72,67,30.14,30.1,30.06,10,10,10,14,7,'',0,8,'',278,94063); +INSERT INTO "weather" VALUES('5/19/2015',62,58,55,50,49,46,82,75,59,30.14,30.09,30.03,10,10,7,16,6,24,0,7,'',267,94063); +INSERT INTO "weather" VALUES('5/20/2015',62,58,55,50,49,48,82,75,59,30.03,29.99,29.96,10,10,7,13,6,'',0,8,'',249,94063); +INSERT INTO "weather" VALUES('5/21/2015',66,60,55,54,51,50,88,78,56,30,29.97,29.94,10,10,10,18,5,23,0,7,'',248,94063); +INSERT INTO "weather" VALUES('5/22/2015',64,60,57,54,51,48,88,77,59,30.1,30.04,30,10,10,10,16,6,21,0,8,'',271,94063); +INSERT INTO "weather" VALUES('5/23/2015',62,58,53,50,49,48,88,78,59,30.13,30.09,30.06,10,10,8,16,9,24,0,7,'',253,94063); +INSERT INTO "weather" VALUES('5/24/2015',64,57,50,50,49,46,88,79,59,30.08,30.03,29.99,10,10,10,22,5,29,0,3,'',267,94063); +INSERT INTO "weather" VALUES('5/25/2015',64,58,53,50,49,48,88,78,56,30.02,29.98,29.94,10,10,8,20,9,25,0,6,'',266,94063); +INSERT INTO "weather" VALUES('5/26/2015',64,60,55,50,49,48,82,75,59,30.03,30.01,29.98,10,10,10,17,7,23,0,6,'',258,94063); +INSERT INTO "weather" VALUES('5/27/2015',64,58,53,54,49,48,82,75,56,30.04,30.02,30.01,10,10,10,18,7,24,0,5,'',256,94063); +INSERT INTO "weather" VALUES('5/28/2015',66,60,53,50,50,50,88,71,56,30.08,30.04,29.99,10,10,10,17,9,'',0,5,'',276,94063); +INSERT INTO "weather" VALUES('5/29/2015',66,60,55,52,50,50,82,68,59,30.02,29.98,29.94,10,10,10,14,8,16,0,6,'',279,94063); +INSERT INTO "weather" VALUES('5/30/2015',68,60,53,55,52,50,88,74,60,29.99,29.95,29.9,10,9,7,18,6,23,0,5,'',346,94063); +INSERT INTO "weather" VALUES('5/31/2015',66,60,53,52,49,46,82,64,49,29.97,29.94,29.91,10,10,10,18,7,20,0,6,'',281,94063); +INSERT INTO "weather" VALUES('6/1/2015',71,64,57,55,53,50,82,67,50,30.06,30.04,30.01,10,10,10,77,10,20,0,6,'',248,94063); +INSERT INTO "weather" VALUES('6/2/2015',68,62,57,54,52,50,88,69,56,30.1,30.05,30,10,10,10,14,10,21,0,4,'',258,94063); +INSERT INTO "weather" VALUES('6/3/2015',64,60,57,50,50,48,77,68,59,29.99,29.96,29.94,10,10,10,16,12,23,0,5,'',234,94063); +INSERT INTO "weather" VALUES('6/4/2015',73,64,55,54,51,48,77,62,46,29.86,29.83,29.81,10,10,10,18,5,16,0,1,'',303,94063); +INSERT INTO "weather" VALUES('6/5/2015',73,65,57,55,53,52,82,66,50,29.85,29.82,29.78,10,10,8,14,6,16,0,3,'',300,94063); +INSERT INTO "weather" VALUES('6/6/2015',73,65,57,55,55,54,88,64,50,29.92,29.89,29.87,10,10,10,15,8,'',0,3,'',300,94063); +INSERT INTO "weather" VALUES('6/7/2015',75,68,60,59,57,55,88,69,53,29.94,29.89,29.84,10,10,10,12,5,16,0,2,'',356,94063); +INSERT INTO "weather" VALUES('6/8/2015',95,78,60,63,55,50,77,48,22,29.89,29.83,29.76,10,10,10,15,5,'',0,1,'',322,94063); +INSERT INTO "weather" VALUES('6/9/2015',75,68,60,59,57,55,82,64,53,29.98,29.89,29.85,10,10,10,10,6,'',0,7,'',337,94063); +INSERT INTO "weather" VALUES('6/10/2015',68,65,62,66,62,57,94,86,78,29.95,29.92,29.89,10,10,6,10,3,'',0,8,'Rain',15,94063); +INSERT INTO "weather" VALUES('6/11/2015',82,70,57,64,59,55,100,70,42,29.93,29.87,29.81,10,7,2,15,6,21,0,2,'',330,94063); +INSERT INTO "weather" VALUES('6/12/2015',84,72,60,63,57,50,83,60,30,29.85,29.8,29.74,10,10,10,14,6,'',0,0,'',346,94063); +INSERT INTO "weather" VALUES('6/13/2015',75,68,62,59,56,55,82,66,50,29.8,29.77,29.73,10,10,7,14,9,'',0,2,'',293,94063); +INSERT INTO "weather" VALUES('6/14/2015',71,64,57,54,52,48,88,65,52,29.85,29.83,29.8,10,10,10,15,7,'',0,2,'',296,94063); +INSERT INTO "weather" VALUES('6/15/2015',66,60,53,50,49,48,82,67,56,29.95,29.92,29.89,10,9,6,20,13,26,0,2,'',279,94063); +INSERT INTO "weather" VALUES('6/16/2015',75,65,55,55,51,48,82,61,38,29.98,29.95,29.93,10,10,10,13,6,'',0,2,'',320,94063); +INSERT INTO "weather" VALUES('6/17/2015',78,66,55,57,51,46,88,61,32,29.95,29.93,29.9,10,9,7,15,5,'',0,3,'',318,94063); +INSERT INTO "weather" VALUES('6/18/2015',73,65,57,55,48,45,73,55,36,30.04,30.02,29.98,10,10,10,14,6,'',0,1,'',289,94063); +INSERT INTO "weather" VALUES('6/19/2015',78,66,53,55,48,43,77,63,34,30.03,30,29.96,10,10,10,13,4,17,0,1,'',297,94063); +INSERT INTO "weather" VALUES('6/20/2015',78,66,55,57,51,46,88,70,32,29.96,29.91,29.86,10,10,10,13,3,'',0,2,'',323,94063); +INSERT INTO "weather" VALUES('6/21/2015',73,64,55,54,50,45,88,72,36,30.05,29.98,29.91,10,10,10,15,7,18,0,3,'',293,94063); +INSERT INTO "weather" VALUES('6/22/2015',71,63,55,55,50,48,82,73,49,30.08,30.04,30.01,10,10,10,18,7,'',0,1,'',287,94063); +INSERT INTO "weather" VALUES('6/23/2015',75,65,55,55,49,46,82,67,41,30.04,30,29.95,10,10,10,17,5,24,0,0,'',281,94063); +INSERT INTO "weather" VALUES('6/24/2015',77,66,55,57,51,48,82,69,41,29.97,29.94,29.88,10,10,10,14,7,18,0,0,'',302,94063); +INSERT INTO "weather" VALUES('6/25/2015',84,72,59,61,56,52,83,71,39,29.93,29.9,29.84,10,10,9,14,3,'',0,0,'',360,94063); +INSERT INTO "weather" VALUES('6/26/2015',78,70,62,59,56,54,83,71,44,29.97,29.93,29.88,10,10,10,12,4,'',0,1,'',326,94063); +INSERT INTO "weather" VALUES('6/27/2015',77,68,59,59,55,54,88,73,50,30.01,29.98,29.96,10,10,10,13,5,'',0,4,'',299,94063); +INSERT INTO "weather" VALUES('6/28/2015',73,66,60,59,56,55,82,74,57,30.03,30,29.96,10,10,10,15,5,18,0,4,'',297,94063); +INSERT INTO "weather" VALUES('6/29/2015',77,67,57,59,55,54,88,74,47,30.04,29.99,29.92,10,10,10,13,8,'',0,5,'',315,94063); +INSERT INTO "weather" VALUES('6/30/2015',86,72,59,64,56,54,82,71,37,29.94,29.89,29.8,10,10,10,13,5,'',0,2,'',338,94063); +INSERT INTO "weather" VALUES('7/1/2015',77,68,60,63,57,55,82,73,50,29.93,29.87,29.83,10,10,10,12,4,'',0,2,'',345,94063); +INSERT INTO "weather" VALUES('7/2/2015',78,70,62,63,58,57,88,75,51,29.98,29.94,29.9,10,10,10,13,4,'',0,2,'',340,94063); +INSERT INTO "weather" VALUES('7/3/2015',80,71,62,63,58,57,88,77,48,29.97,29.93,29.86,10,10,10,13,5,'',0,4,'',327,94063); +INSERT INTO "weather" VALUES('7/4/2015',80,71,62,63,58,57,88,76,45,29.91,29.88,29.83,10,10,10,12,4,'',0,5,'',319,94063); +INSERT INTO "weather" VALUES('7/5/2015',77,70,62,61,58,55,83,75,50,30.02,29.94,29.89,10,10,10,16,5,21,0,5,'',258,94063); +INSERT INTO "weather" VALUES('7/6/2015',77,68,59,57,56,55,88,74,47,30.1,30.05,30.02,10,10,10,13,7,22,0,5,'',270,94063); +INSERT INTO "weather" VALUES('7/7/2015',73,66,60,63,57,54,88,77,53,30.06,30,29.93,10,10,10,30,7,25,0,5,'',267,94063); +INSERT INTO "weather" VALUES('7/8/2015',71,66,60,55,55,54,82,75,53,29.94,29.9,29.84,10,10,10,20,8,25,0,6,'',266,94063); +INSERT INTO "weather" VALUES('7/9/2015',68,64,59,57,55,54,94,80,64,29.92,29.88,29.85,10,10,5,13,6,18,0,8,'',261,94063); +INSERT INTO "weather" VALUES('7/10/2015',69,64,60,59,56,54,88,75,60,29.97,29.93,29.91,10,10,10,14,8,20,0,6,'Rain',278,94063); +INSERT INTO "weather" VALUES('7/11/2015',73,66,59,55,55,54,88,72,50,30.02,29.98,29.94,10,10,10,17,5,24,0,1,'',276,94063); +INSERT INTO "weather" VALUES('7/12/2015',73,68,62,57,56,54,82,72,50,30.06,30.04,30.02,10,10,10,15,5,20,0,2,'',262,94063); +INSERT INTO "weather" VALUES('7/13/2015',75,68,62,57,57,55,82,75,53,30.06,30.01,29.95,10,10,10,15,7,23,0,4,'',262,94063); +INSERT INTO "weather" VALUES('7/14/2015',68,64,60,57,57,55,88,80,64,29.97,29.94,29.91,10,10,8,17,9,30,0,6,'',251,94063); +INSERT INTO "weather" VALUES('7/15/2015',77,67,57,59,56,54,94,77,53,29.92,29.89,29.85,10,10,10,14,3,20,0,1,'',286,94063); +INSERT INTO "weather" VALUES('7/16/2015',77,70,62,63,58,57,88,76,50,29.94,29.9,29.85,10,10,10,15,4,'',0,4,'',316,94063); +INSERT INTO "weather" VALUES('7/17/2015',78,70,62,61,57,55,83,74,50,29.89,29.85,29.78,10,10,10,13,4,18,0,5,'',329,94063); +INSERT INTO "weather" VALUES('7/18/2015',77,68,60,59,56,54,82,69,47,30.02,29.91,29.84,10,10,10,17,3,21,0,3,'',287,94063); +INSERT INTO "weather" VALUES('7/19/2015',87,76,64,63,56,52,73,60,41,30.08,30.04,30.01,10,10,10,13,3,22,0,4,'',296,94063); +INSERT INTO "weather" VALUES('7/20/2015',86,76,64,64,58,54,73,60,40,30.05,30,29.94,10,10,9,14,4,'',0,1,'',290,94063); +INSERT INTO "weather" VALUES('7/21/2015',75,68,60,63,56,54,88,74,50,29.97,29.92,29.86,10,10,10,23,9,30,0,2,'',296,94063); +INSERT INTO "weather" VALUES('7/22/2015',71,66,60,57,55,54,77,72,53,29.93,29.88,29.85,10,10,10,22,5,28,0,2,'',275,94063); +INSERT INTO "weather" VALUES('7/23/2015',68,62,57,55,54,52,82,74,60,30.08,30,29.93,10,10,10,17,7,24,0,2,'',256,94063); +INSERT INTO "weather" VALUES('7/24/2015',78,68,59,55,53,46,82,69,34,30.14,30.1,30.07,10,10,10,15,7,21,0,1,'',270,94063); +INSERT INTO "weather" VALUES('7/25/2015',73,66,59,57,55,54,88,76,53,30.12,30.07,30.01,10,10,10,20,6,25,0,0,'',281,94063); +INSERT INTO "weather" VALUES('7/26/2015',75,65,55,57,54,54,100,75,50,30,29.96,29.93,10,10,10,18,5,23,0,0,'',265,94063); +INSERT INTO "weather" VALUES('7/27/2015',102,80,57,59,53,50,82,63,17,29.98,29.93,29.89,10,10,10,15,3,22,0,0,'',303,94063); +INSERT INTO "weather" VALUES('7/28/2015',93,76,60,66,55,46,82,62,20,29.91,29.88,29.83,10,10,10,10,2,'',0,0,'',298,94063); +INSERT INTO "weather" VALUES('7/29/2015',84,74,64,63,56,54,83,64,35,29.97,29.91,29.87,10,10,10,14,3,18,0,0,'',339,94063); +INSERT INTO "weather" VALUES('7/30/2015',80,71,62,64,59,57,88,77,48,30.06,30,29.96,10,10,10,13,5,'',0,3,'',330,94063); +INSERT INTO "weather" VALUES('7/31/2015',77,70,62,63,58,57,88,76,50,30.05,30.01,29.95,10,10,10,17,6,'',0,4,'',320,94063); +INSERT INTO "weather" VALUES('8/1/2015',82,73,64,61,57,48,83,71,30,30.04,29.99,29.93,10,10,10,16,5,21,0,3,'',283,94063); +INSERT INTO "weather" VALUES('8/2/2015',77,70,62,57,57,55,82,74,47,30.01,29.96,29.91,10,10,10,18,8,23,0,5,'',274,94063); +INSERT INTO "weather" VALUES('8/3/2015',73,68,64,57,55,52,77,68,47,29.99,29.97,29.95,10,10,10,17,7,23,0,2,'',269,94063); +INSERT INTO "weather" VALUES('8/4/2015',73,66,60,59,55,50,83,70,46,30.03,30,29.98,10,10,10,15,4,18,0,1,'',264,94063); +INSERT INTO "weather" VALUES('8/5/2015',77,68,59,59,56,54,88,72,50,30.06,30,29.93,10,10,10,13,3,'',0,1,'',315,94063); +INSERT INTO "weather" VALUES('8/6/2015',75,68,60,61,57,55,88,77,53,29.93,29.89,29.82,10,10,10,10,3,'',0,2,'',328,94063); +INSERT INTO "weather" VALUES('8/7/2015',77,68,60,59,57,55,82,73,50,29.92,29.88,29.84,10,10,10,15,5,21,0,4,'',276,94063); +INSERT INTO "weather" VALUES('8/8/2015',73,68,62,57,56,54,82,73,53,29.97,29.94,29.91,10,10,10,18,6,28,0,4,'',261,94063); +INSERT INTO "weather" VALUES('8/9/2015',77,67,57,63,56,52,88,75,50,29.98,29.95,29.92,10,10,10,15,4,21,0,0,'',275,94063); +INSERT INTO "weather" VALUES('8/10/2015',75,67,59,59,57,54,83,75,57,30,29.95,29.91,10,10,10,18,4,28,0,1,'',251,94063); +INSERT INTO "weather" VALUES('8/11/2015',77,68,59,59,56,48,88,74,36,30,29.95,29.92,10,10,10,16,5,22,0,2,'',288,94063); +INSERT INTO "weather" VALUES('8/12/2015',78,68,59,61,55,50,83,71,42,30.08,30.03,30,10,10,10,16,4,22,0,0,'',297,94063); +INSERT INTO "weather" VALUES('8/13/2015',78,70,62,61,58,54,88,75,42,30.08,30.05,30.01,10,10,10,15,5,17,0,1,'',277,94063); +INSERT INTO "weather" VALUES('8/14/2015',78,70,62,59,57,54,83,72,44,30.1,30.05,30.01,10,10,10,14,6,17,0,4,'',287,94063); +INSERT INTO "weather" VALUES('8/15/2015',95,78,60,63,55,45,88,63,19,30.02,29.97,29.88,10,9,3,12,3,'',0,2,'',300,94063); +INSERT INTO "weather" VALUES('8/16/2015',98,81,64,66,55,45,73,55,18,29.92,29.88,29.81,10,9,6,10,2,'',0,3,'',320,94063); +INSERT INTO "weather" VALUES('8/17/2015',89,76,64,63,57,50,78,66,26,29.91,29.86,29.81,10,9,6,13,4,18,0,1,'',320,94063); +INSERT INTO "weather" VALUES('8/18/2015',77,70,62,61,57,55,83,75,50,29.95,29.91,29.87,10,10,8,12,4,'',0,5,'',299,94063); +INSERT INTO "weather" VALUES('8/19/2015',75,68,62,59,56,54,82,73,53,29.96,29.93,29.89,10,10,10,14,6,20,0,5,'',271,94063); +INSERT INTO "weather" VALUES('8/20/2015',73,68,62,57,56,55,77,71,53,29.94,29.9,29.86,10,10,10,15,7,'',0,6,'',276,94063); +INSERT INTO "weather" VALUES('8/21/2015',75,67,59,57,56,55,88,75,50,29.92,29.89,29.86,10,10,10,15,4,'',0,4,'',266,94063); +INSERT INTO "weather" VALUES('8/22/2015',73,66,59,59,56,54,82,75,57,29.96,29.92,29.89,10,10,10,12,4,'',0,5,'',265,94063); +INSERT INTO "weather" VALUES('8/23/2015',75,68,62,59,56,55,82,73,50,30.03,29.99,29.95,10,10,10,16,6,'',0,6,'',285,94063); +INSERT INTO "weather" VALUES('8/24/2015',77,70,62,57,56,55,77,72,47,30.08,30.02,29.97,10,10,7,13,7,'',0,5,'',301,94063); +INSERT INTO "weather" VALUES('8/25/2015',78,68,59,59,55,54,88,75,42,30.03,29.99,29.94,10,10,6,13,6,'',0,1,'',321,94063); +INSERT INTO "weather" VALUES('8/26/2015',82,70,59,61,53,41,88,67,32,30.06,30.02,29.97,10,9,3,10,3,'',0,3,'',306,94063); +INSERT INTO "weather" VALUES('8/27/2015',91,76,62,63,52,36,73,54,15,30.07,30.02,29.96,10,10,10,14,3,20,0,1,'',309,94063); +INSERT INTO "weather" VALUES('8/28/2015',95,80,66,64,57,50,88,63,22,29.97,29.92,29.86,10,10,9,20,3,21,0,2,'',300,94063); +INSERT INTO "weather" VALUES('8/29/2015',77,70,64,64,61,55,88,78,50,30.03,29.98,29.93,10,10,3,13,4,'',0,4,'Rain',285,94063); +INSERT INTO "weather" VALUES('8/30/2015',77,70,64,59,57,52,83,69,44,30.07,30.02,29.95,10,10,10,16,6,23,0,4,'',280,94063); +INSERT INTO "weather" VALUES('8/31/2015',80,71,62,63,55,52,77,67,42,29.96,29.92,29.86,10,10,10,18,4,20,0,0,'',282,94063); +INSERT INTO "weather" VALUES('9/1/2014',86,72,57,66,63,55,94,69,43,29.86,29.8,29.74,15,10,10,17,6,22,0,0,'',351,94301); +INSERT INTO "weather" VALUES('9/2/2014',75,66,57,64,62,57,100,78,65,29.85,29.81,29.77,10,10,5,21,10,'',0,1,'',3,94301); +INSERT INTO "weather" VALUES('9/3/2014',77,70,62,57,49,32,82,65,32,29.81,29.76,29.7,15,12,10,18,8,'',0,2,'',350,94301); +INSERT INTO "weather" VALUES('9/4/2014',77,70,64,63,61,59,88,73,61,29.77,29.74,29.72,15,9,5,17,9,'',0,3,'',360,94301); +INSERT INTO "weather" VALUES('9/5/2014',75,68,62,61,59,57,83,74,61,29.9,29.87,29.84,10,8,7,15,8,'',0,3,'',31,94301); +INSERT INTO "weather" VALUES('9/6/2014',75,68,62,59,58,55,88,70,57,29.98,29.93,29.88,20,8,6,17,7,'',0,2,'',348,94301); +INSERT INTO "weather" VALUES('9/7/2014',73,66,60,59,57,55,88,71,60,29.92,29.86,29.8,15,10,7,17,10,'',0,2,'',345,94301); +INSERT INTO "weather" VALUES('9/8/2014',69,64,59,57,55,52,82,70,60,29.92,29.9,29.87,15,10,7,21,10,'',0,2,'',348,94301); +INSERT INTO "weather" VALUES('9/9/2014',75,66,57,61,58,54,88,74,61,30.01,29.95,29.9,10,10,7,13,7,'',0,2,'',351,94301); +INSERT INTO "weather" VALUES('9/10/2014',82,71,60,'','','','','','',29.95,29.89,29.82,10,8,5,13,6,'',0,1,'',347,94301); +INSERT INTO "weather" VALUES('9/11/2014',84,72,59,64,61,55,88,73,45,29.91,29.86,29.81,20,12,5,16,8,'',0,1,'',351,94301); +INSERT INTO "weather" VALUES('9/12/2014',80,70,59,64,61,57,94,75,51,29.9,29.85,29.79,20,9,5,12,6,'',0,1,'',343,94301); +INSERT INTO "weather" VALUES('9/13/2014',78,70,62,64,62,59,88,75,57,29.87,29.82,29.78,15,9,6,17,6,24,0,5,'',350,94301); +INSERT INTO "weather" VALUES('9/14/2014',78,70,62,63,60,57,83,71,51,29.87,29.84,29.8,20,10,7,15,7,'',0,2,'',346,94301); +INSERT INTO "weather" VALUES('9/15/2014',78,68,57,63,58,54,88,68,44,29.93,29.9,29.87,20,11,10,21,9,25,0,2,'',354,94301); +INSERT INTO "weather" VALUES('9/16/2014',82,68,53,63,58,50,88,63,37,29.93,29.87,29.8,15,12,10,18,8,'',0,1,'',346,94301); +INSERT INTO "weather" VALUES('9/17/2014',82,72,62,63,60,54,88,64,37,29.83,29.78,29.73,10,10,10,14,7,24,0,2,'',296,94301); +INSERT INTO "weather" VALUES('9/18/2014',80,74,68,66,63,59,94,71,48,29.87,29.84,29.81,15,12,10,12,7,'',0,5,'',250,94301); +INSERT INTO "weather" VALUES('9/19/2014',75,68,62,'','','','','','',29.92,29.88,29.84,15,11,7,18,7,'',0,1,'',352,94301); +INSERT INTO "weather" VALUES('9/20/2014',75,70,64,64,63,57,88,77,69,29.94,29.91,29.88,10,9,7,20,9,23,0,3,'',353,94301); +INSERT INTO "weather" VALUES('9/21/2014',75,70,64,64,62,59,83,75,69,30.02,29.99,29.97,10,10,10,18,10,'',0,3,'',352,94301); +INSERT INTO "weather" VALUES('9/22/2014',75,70,64,63,60,57,83,72,61,30.05,30,29.95,20,13,10,17,7,24,0,3,'',352,94301); +INSERT INTO "weather" VALUES('9/23/2014',78,68,57,66,62,55,94,75,57,30.02,29.96,29.91,15,12,10,16,8,'',0,1,'',345,94301); +INSERT INTO "weather" VALUES('9/24/2014',80,70,60,66,63,59,94,73,57,29.97,29.92,29.87,20,11,10,17,8,'',0,3,'',311,94301); +INSERT INTO "weather" VALUES('9/25/2014',73,66,60,'','','','','','',30.02,29.99,29.96,20,10,2,14,6,'',0,5,'Rain',335,94301); +INSERT INTO "weather" VALUES('9/26/2014',73,64,55,'','','','','','',30,29.96,29.92,20,13,10,21,9,24,0,4,'',329,94301); +INSERT INTO "weather" VALUES('9/27/2014',77,70,62,61,57,55,82,66,47,29.94,29.89,29.83,20,10,7,14,7,'',0,3,'',310,94301); +INSERT INTO "weather" VALUES('9/28/2014',75,65,55,61,58,54,94,73,61,29.93,29.9,29.84,15,11,10,17,8,'',0,5,'',12,94301); +INSERT INTO "weather" VALUES('9/29/2014',71,66,60,61,60,57,88,77,69,30.04,30,29.96,15,11,7,18,9,26,0,2,'',349,94301); +INSERT INTO "weather" VALUES('9/30/2014',73,64,55,63,59,54,94,77,65,29.98,29.92,29.84,15,12,10,14,7,'',0,1,'',342,94301); +INSERT INTO "weather" VALUES('10/1/2014',86,70,53,59,48,41,94,45,20,29.97,29.9,29.85,10,10,10,13,5,'',0,0,'',334,94301); +INSERT INTO "weather" VALUES('10/2/2014',91,71,51,57,48,41,82,40,17,30.03,29.99,29.96,10,10,10,10,4,'',0,0,'',339,94301); +INSERT INTO "weather" VALUES('10/3/2014',93,74,55,57,50,45,82,42,19,30.09,30.04,29.98,'','','',12,4,'',0,0,'',338,94301); +INSERT INTO "weather" VALUES('10/4/2014',89,71,53,63,55,46,77,52,27,30.04,29.98,29.91,10,10,10,12,6,'',0,0,'',346,94301); +INSERT INTO "weather" VALUES('10/5/2014',86,70,53,64,58,46,77,57,40,29.96,29.91,29.87,20,15,10,14,7,'',0,0,'',5,94301); +INSERT INTO "weather" VALUES('10/6/2014',84,70,55,64,60,52,88,69,37,29.94,29.89,29.83,20,11,10,12,6,'',0,1,'',354,94301); +INSERT INTO "weather" VALUES('10/7/2014',75,65,55,63,59,54,94,81,61,29.95,29.9,29.84,10,9,5,13,5,'',0,4,'',328,94301); +INSERT INTO "weather" VALUES('10/8/2014',80,66,51,'','','','','','',29.93,29.89,29.84,10,8,6,14,7,'',0,0,'',349,94301); +INSERT INTO "weather" VALUES('10/9/2014',69,62,55,61,59,54,94,83,68,29.99,29.96,29.93,10,8,7,14,5,'',0,3,'',344,94301); +INSERT INTO "weather" VALUES('10/10/2014',68,64,60,59,58,55,88,80,73,30.08,30.03,30,20,14,7,15,8,'',0,4,'',350,94301); +INSERT INTO "weather" VALUES('10/11/2014',75,64,53,61,58,52,94,76,57,30.07,30.01,29.97,10,9,7,12,6,'',0,2,'',342,94301); +INSERT INTO "weather" VALUES('10/12/2014',91,74,57,61,49,39,88,43,17,29.99,29.93,29.88,10,10,10,10,6,'',0,0,'',342,94301); +INSERT INTO "weather" VALUES('10/13/2014',82,68,53,63,54,41,94,59,39,29.96,29.93,29.9,15,11,10,15,7,21,0,0,'',348,94301); +INSERT INTO "weather" VALUES('10/14/2014',73,66,60,'','','','','','',29.9,29.86,29.83,10,10,7,14,7,23,0,5,'',210,94301); +INSERT INTO "weather" VALUES('10/15/2014',73,68,62,59,56,54,77,65,53,30.03,30,29.95,20,14,10,17,8,'',0,5,'',355,94301); +INSERT INTO "weather" VALUES('10/16/2014',71,62,53,55,51,48,88,62,43,30.04,29.99,29.94,10,10,10,16,6,'',0,5,'',332,94301); +INSERT INTO "weather" VALUES('10/17/2014',75,64,53,59,53,46,82,60,44,29.97,29.94,29.91,20,13,10,12,5,'',0,6,'',42,94301); +INSERT INTO "weather" VALUES('10/18/2014',91,75,59,61,57,55,88,63,31,29.99,29.93,29.87,15,12,10,17,7,'',0,0,'',350,94301); +INSERT INTO "weather" VALUES('10/19/2014',75,65,55,63,61,54,94,80,65,29.93,29.89,29.85,10,9,7,17,8,23,0,1,'',346,94301); +INSERT INTO "weather" VALUES('10/20/2014',69,64,59,63,57,54,94,76,60,30.02,29.98,29.93,15,10,3,15,8,'',0,5,'Rain',295,94301); +INSERT INTO "weather" VALUES('10/21/2014',73,60,48,54,50,45,100,63,36,30.11,30.06,30.02,15,12,10,20,8,'',0,1,'',330,94301); +INSERT INTO "weather" VALUES('10/22/2014',75,62,50,57,54,48,94,70,50,30.09,30.05,30,10,10,10,14,5,'',0,3,'',349,94301); +INSERT INTO "weather" VALUES('10/23/2014',75,66,57,61,58,54,88,74,57,30.08,30.03,29.97,15,11,10,12,4,'',0,5,'',341,94301); +INSERT INTO "weather" VALUES('10/24/2014',73,63,53,61,57,52,94,75,60,29.98,29.92,29.88,20,19,10,16,6,'',0,0,'',332,94301); +INSERT INTO "weather" VALUES('10/25/2014',73,66,60,61,57,54,100,73,53,30.11,30.05,29.97,20,11,2,17,8,'',0,6,'Rain',201,94301); +INSERT INTO "weather" VALUES('10/26/2014',69,61,53,54,49,43,94,62,38,30.18,30.12,30.06,20,14,10,18,9,'',0,1,'',323,94301); +INSERT INTO "weather" VALUES('10/27/2014',69,58,48,54,51,45,93,71,49,30.08,30.04,30.01,15,11,10,15,6,'',0,3,'',333,94301); +INSERT INTO "weather" VALUES('10/28/2014',73,60,46,55,52,45,93,70,50,30.13,30.09,30.06,10,10,10,13,6,'',0,0,'',344,94301); +INSERT INTO "weather" VALUES('10/29/2014',77,64,51,61,55,50,94,68,47,30.12,30.04,29.97,10,10,10,10,4,'',0,0,'',3,94301); +INSERT INTO "weather" VALUES('10/30/2014',75,65,55,61,57,52,94,75,50,29.95,29.9,29.87,12,10,10,14,6,'',0,6,'',19,94301); +INSERT INTO "weather" VALUES('10/31/2014',62,60,57,61,58,55,100,92,77,29.89,29.83,29.77,10,8,2,9,7,'',0,7,'Rain',293,94301); +INSERT INTO "weather" VALUES('11/1/2014',64,58,53,54,50,46,94,75,55,29.99,29.92,29.82,20,16,10,12,7,'',0,5,'',247,94301); +INSERT INTO "weather" VALUES('11/2/2014',68,56,44,52,47,43,100,66,43,30.17,30.14,30.12,10,10,10,12,5,'',0,1,'',319,94301); +INSERT INTO "weather" VALUES('11/3/2014',69,56,42,54,48,39,93,70,35,30.25,30.22,30.2,10,10,10,12,5,'',0,2,'',350,94301); +INSERT INTO "weather" VALUES('11/4/2014',71,58,44,54,51,43,93,70,50,30.32,30.27,30.22,10,10,10,10,4,'',0,2,'',348,94301); +INSERT INTO "weather" VALUES('11/5/2014',75,62,50,52,50,46,87,58,41,30.2,30.12,30.07,20,11,1,9,4,'',0,1,'',332,94301); +INSERT INTO "weather" VALUES('11/6/2014',71,60,50,57,55,48,94,75,57,30.22,30.19,30.17,20,10,5,14,4,'',0,2,'',354,94301); +INSERT INTO "weather" VALUES('11/7/2014',68,60,53,'','','','','','',30.24,30.16,30.1,15,7,0,12,5,'',0,1,'Fog',344,94301); +INSERT INTO "weather" VALUES('11/8/2014',71,60,50,'','','','','','',30.13,30.06,30,20,7,0,9,2,'',0,3,'Fog',347,94301); +INSERT INTO "weather" VALUES('11/9/2014',69,58,48,59,57,54,94,79,64,29.99,29.9,29.83,20,12,10,14,6,'',0,0,'',356,94301); +INSERT INTO "weather" VALUES('11/10/2014',68,62,53,'','','','','','',29.86,29.82,29.79,10,5,0,14,3,'',0,1,'Fog',344,94301); +INSERT INTO "weather" VALUES('11/11/2014',68,59,50,52,49,48,67,59,52,29.96,29.92,29.9,15,11,10,13,6,'',0,6,'',82,94301); +INSERT INTO "weather" VALUES('11/12/2014',66,62,59,50,49,46,72,59,52,30.03,30,29.97,10,10,10,10,5,'',0,6,'',353,94301); +INSERT INTO "weather" VALUES('11/13/2014',68,64,57,61,58,55,94,82,73,30.06,30.03,29.97,10,10,10,12,8,'',0,5,'',338,94301); +INSERT INTO "weather" VALUES('11/14/2014',66,58,50,57,54,52,94,73,60,30.12,30.09,30.06,10,10,10,12,4,'',0,4,'',333,94301); +INSERT INTO "weather" VALUES('11/15/2014',66,58,50,55,52,48,94,76,59,30.17,30.15,30.13,10,10,10,16,7,'',0,4,'',12,94301); +INSERT INTO "weather" VALUES('11/16/2014',64,57,50,48,46,43,94,82,59,30.26,30.23,30.21,10,10,10,14,5,'',0,7,'',54,94301); +INSERT INTO "weather" VALUES('11/17/2014',66,55,44,46,41,36,87,52,35,30.23,30.16,30.1,10,10,10,14,7,'',0,2,'',47,94301); +INSERT INTO "weather" VALUES('11/18/2014',66,55,44,50,43,16,87,61,21,30.14,30.09,30.05,20,10,7,9,5,'',0,7,'',342,94301); +INSERT INTO "weather" VALUES('11/19/2014',68,64,57,59,51,37,100,67,39,30.12,30.04,30.01,15,10,2,17,12,26,0,7,'Rain',165,94301); +INSERT INTO "weather" VALUES('11/20/2014',60,58,55,'','','','','','',30.11,30.05,29.99,10,6,2,9,5,'',0,8,'Rain',146,94301); +INSERT INTO "weather" VALUES('11/21/2014',64,58,51,55,53,48,88,77,56,30.13,30.09,29.99,10,8,0,8,4,'',0,6,'',10,94301); +INSERT INTO "weather" VALUES('11/22/2014',68,62,57,59,56,52,94,81,68,30.21,30.13,30.08,10,8,2,18,11,22,0,5,'Rain',263,94301); +INSERT INTO "weather" VALUES('11/23/2014',66,57,48,50,46,43,94,67,43,30.34,30.3,30.27,10,10,10,9,5,'',0,3,'',326,94301); +INSERT INTO "weather" VALUES('11/24/2014',66,55,44,'','','','','','',30.41,30.37,30.34,10,10,10,9,7,'',0,0,'',337,94301); +INSERT INTO "weather" VALUES('11/25/2014',66,54,41,'','','','','','',30.46,30.39,30.35,10,9,7,8,4,'',0,0,'',41,94301); +INSERT INTO "weather" VALUES('11/26/2014',66,55,44,'','','','','','',30.32,30.25,30.2,10,8,5,8,3,'',0,1,'',340,94301); +INSERT INTO "weather" VALUES('11/27/2014',66,54,42,'','','','','','',30.19,30.13,30.06,7,6,5,7,4,'',0,2,'',340,94301); +INSERT INTO "weather" VALUES('11/28/2014',64,57,50,'','','','','','',30.04,29.96,29.88,10,5,0,12,7,'',0,4,'Fog',38,94301); +INSERT INTO "weather" VALUES('11/29/2014',64,60,55,'','','','','','',29.87,29.82,29.76,20,11,3,12,9,'',0,6,'Rain',140,94301); +INSERT INTO "weather" VALUES('11/30/2014',62,58,53,'','','','','','',29.99,29.87,29.78,10,8,2,17,8,'',0,7,'Rain-Thunderstorm',154,94301); +INSERT INTO "weather" VALUES('12/1/2014',68,60,53,'','','','','','',30.12,30.05,30,20,11,10,9,4,'',0,5,'Fog',82,94301); +INSERT INTO "weather" VALUES('12/2/2014',60,58,57,'','','','','','',29.86,29.76,29.68,10,6,2,12,9,'',0,7,'Rain',114,94301); +INSERT INTO "weather" VALUES('12/3/2014',64,62,57,'','','','','','',29.85,29.77,29.71,10,7,2,23,13,25,0,6,'Rain',146,94301); +INSERT INTO "weather" VALUES('12/4/2014',69,63,57,'','','','','','',29.98,29.95,29.91,10,9,7,10,7,'',0,5,'',126,94301); +INSERT INTO "weather" VALUES('12/5/2014',66,62,57,'','','','','','',30.05,30.02,29.98,10,9,6,14,8,'',0,7,'Rain',155,94301); +INSERT INTO "weather" VALUES('12/6/2014',69,64,59,'','','','','','',30.22,30.2,30.17,15,11,5,12,8,'',0,5,'Rain',141,94301); +INSERT INTO "weather" VALUES('12/7/2014',64,58,51,'','','','','','',30.22,30.17,30.14,7,5,0,10,2,'',0,5,'Fog',29,94301); +INSERT INTO "weather" VALUES('12/8/2014',69,62,55,'','','','','','',30.18,30.15,30.11,10,10,10,8,6,'',0,5,'',3,94301); +INSERT INTO "weather" VALUES('12/9/2014',64,60,57,'','','','','','',30.2,30.14,30.1,10,7,6,9,5,'',0,6,'',325,94301); +INSERT INTO "weather" VALUES('12/10/2014',64,60,55,'','','','','','',29.99,29.9,29.79,10,8,4,20,7,20,0,7,'',124,94301); +INSERT INTO "weather" VALUES('12/11/2014',60,56,51,'','','','','','',29.67,29.63,29.53,5,4,2,23,13,34,0,8,'Rain',212,94301); +INSERT INTO "weather" VALUES('12/12/2014',57,54,51,'','','','','','',30.04,29.92,29.82,10,9,5,8,6,'',0,7,'Rain',138,94301); +INSERT INTO "weather" VALUES('12/13/2014',57,50,42,'','','','','','',30.23,30.19,30.17,15,10,7,7,2,'',0,4,'',180,94301); +INSERT INTO "weather" VALUES('12/14/2014',60,54,48,'','','','','','',30.13,30.04,30,10,10,10,16,8,'',0,6,'',138,94301); +INSERT INTO "weather" VALUES('12/15/2014',57,55,53,'','','','','','',29.91,29.86,29.83,10,9,5,26,18,'',0,8,'Rain',141,94301); +INSERT INTO "weather" VALUES('12/16/2014',62,58,53,'','','','','','',29.96,29.88,29.82,10,7,2,20,13,'',0,7,'Rain',151,94301); +INSERT INTO "weather" VALUES('12/17/2014',59,54,50,'','','','','','',30.1,30.05,30.01,10,8,7,12,7,'',0,7,'Rain',138,94301); +INSERT INTO "weather" VALUES('12/18/2014',60,56,53,'','','','','','',30.18,30.15,30.11,10,10,7,12,7,'',0,6,'',114,94301); +INSERT INTO "weather" VALUES('12/19/2014',59,57,53,'','','','','','',30.17,30.14,30.12,10,9,5,17,12,24,0,8,'Rain',143,94301); +INSERT INTO "weather" VALUES('12/20/2014',60,58,55,'','','','','','',30.25,30.21,30.15,10,10,6,6,2,'',0,8,'',105,94301); +INSERT INTO "weather" VALUES('12/21/2014',64,60,57,'','','','','','',30.32,30.29,30.26,10,9,4,16,4,'',0,7,'',328,94301); +INSERT INTO "weather" VALUES('12/22/2014',66,58,51,'','','','','','',30.3,30.24,30.18,20,9,0,12,5,'',0,4,'Fog',320,94301); +INSERT INTO "weather" VALUES('12/23/2014',69,58,48,'','','','','','',30.22,30.16,30.13,10,10,10,12,5,'',0,0,'',350,94301); +INSERT INTO "weather" VALUES('12/24/2014',62,58,51,'','','','','','',30.11,30.04,29.98,10,7,1,21,9,30,0,6,'Fog-Rain',305,94301); +INSERT INTO "weather" VALUES('12/25/2014',59,54,48,'','','','','','',30.16,30.13,30.11,10,10,10,17,15,29,0,0,'',330,94301); +INSERT INTO "weather" VALUES('12/26/2014',59,52,44,'','','','','','',30.24,30.19,30.16,15,11,10,94,17,'',0,0,'',1,94301); +INSERT INTO "weather" VALUES('12/27/2014',55,44,32,'','','','','','',30.38,30.35,30.3,10,10,10,7,3,'',0,3,'',350,94301); +INSERT INTO "weather" VALUES('12/28/2014',59,49,39,'','','','','','',30.35,30.29,30.25,15,11,10,7,2,'',0,1,'',40,94301); +INSERT INTO "weather" VALUES('12/29/2014',57,48,39,'','','','','','',30.23,30.21,30.19,15,14,10,12,6,'',0,3,'',313,94301); +INSERT INTO "weather" VALUES('12/30/2014',53,47,41,36,28,21,81,43,32,30.22,30.17,30.12,10,10,10,30,16,40,0,0,'',12,94301); +INSERT INTO "weather" VALUES('12/31/2014',57,46,35,28,21,14,65,38,20,30.27,30.17,30.08,10,10,10,13,6,'',0,1,'',236,94301); +INSERT INTO "weather" VALUES('1/1/2015',57,45,33,34,27,23,81,49,27,30.17,30.13,30.11,10,10,10,7,4,'',0,0,'',347,94301); +INSERT INTO "weather" VALUES('1/2/2015',50,41,32,37,34,28,93,74,58,30.23,30.19,30.12,10,10,10,7,2,'',0,0,'',346,94301); +INSERT INTO "weather" VALUES('1/3/2015',53,42,32,45,37,32,100,77,54,30.3,30.26,30.23,10,10,8,52,5,'',0,0,'',17,94301); +INSERT INTO "weather" VALUES('1/4/2015',57,48,39,45,41,36,93,77,55,30.43,30.39,30.36,10,8,6,10,4,'',0,4,'',354,94301); +INSERT INTO "weather" VALUES('1/5/2015',60,48,37,41,39,36,100,65,45,30.38,30.32,30.25,7,6,5,7,4,'',0,4,'',350,94301); +INSERT INTO "weather" VALUES('1/6/2015',66,52,39,48,43,37,93,72,42,30.29,30.22,30.17,8,7,6,7,2,'',0,0,'',335,94301); +INSERT INTO "weather" VALUES('1/7/2015',66,52,37,50,47,37,100,72,52,30.23,30.14,30.09,10,10,10,10,2,'',0,0,'',8,94301); +INSERT INTO "weather" VALUES('1/8/2015',59,50,42,50,48,43,100,84,72,30.1,30.04,30.01,10,10,10,7,3,'',0,6,'',355,94301); +INSERT INTO "weather" VALUES('1/9/2015',64,55,46,52,50,46,100,83,59,30.03,30,29.96,10,7,4,8,3,'',0,6,'',16,94301); +INSERT INTO "weather" VALUES('1/10/2015',59,54,50,54,52,48,100,92,82,30.05,29.99,29.95,10,6,4,9,5,'',0,6,'',350,94301); +INSERT INTO "weather" VALUES('1/11/2015',57,52,48,52,51,48,100,94,82,30.16,30.11,30.09,10,5,0,12,3,'',0,5,'Fog',6,94301); +INSERT INTO "weather" VALUES('1/12/2015',62,55,48,54,50,48,100,86,63,30.28,30.22,30.19,10,9,7,8,3,'',0,1,'',357,94301); +INSERT INTO "weather" VALUES('1/13/2015',64,53,42,48,44,43,100,67,45,30.22,30.16,30.12,10,10,10,9,4,'',0,0,'Fog',343,94301); +INSERT INTO "weather" VALUES('1/14/2015',62,48,35,50,44,36,100,76,48,30.26,30.22,30.18,10,9,7,77,7,'',0,2,'',13,94301); +INSERT INTO "weather" VALUES('1/15/2015',62,50,39,50,47,39,100,82,55,30.34,30.28,30.23,10,4,3,9,2,'',0,6,'',339,94301); +INSERT INTO "weather" VALUES('1/16/2015',62,53,44,52,49,45,100,83,63,30.29,30.25,30.21,6,5,3,9,2,'',0,7,'',330,94301); +INSERT INTO "weather" VALUES('1/17/2015',59,52,46,54,51,46,100,90,77,30.3,30.26,30.2,10,6,3,8,5,'',0,4,'',95,94301); +INSERT INTO "weather" VALUES('1/18/2015',60,53,46,55,54,46,100,94,82,30.32,30.28,30.25,10,6,0,12,4,'',0,4,'Fog',340,94301); +INSERT INTO "weather" VALUES('1/19/2015',62,56,48,55,53,48,100,91,72,30.3,30.24,30.2,15,9,1,7,4,'',0,5,'Fog',350,94301); +INSERT INTO "weather" VALUES('1/20/2015',59,54,46,52,50,45,100,88,72,30.18,30.11,30.06,10,7,3,9,4,'',0,2,'',342,94301); +INSERT INTO "weather" VALUES('1/21/2015',64,52,39,48,45,39,100,70,48,30.16,30.13,30.11,10,10,10,9,3,'',0,0,'',335,94301); +INSERT INTO "weather" VALUES('1/22/2015',57,52,46,48,46,43,93,78,63,30.32,30.28,30.23,10,9,7,20,10,'',0,4,'',34,94301); +INSERT INTO "weather" VALUES('1/23/2015',68,54,39,50,45,37,93,68,43,30.37,30.31,30.25,10,10,10,9,5,'',0,0,'',348,94301); +INSERT INTO "weather" VALUES('1/24/2015',69,56,44,52,45,43,93,58,38,30.23,30.17,30.11,10,10,10,9,5,'',0,0,'',355,94301); +INSERT INTO "weather" VALUES('1/25/2015',66,54,41,52,46,39,93,75,48,30.15,30.08,30.01,10,10,10,9,5,'',0,0,'',43,94301); +INSERT INTO "weather" VALUES('1/26/2015',66,54,42,52,47,41,93,75,46,30.04,30,29.96,10,10,10,9,2,'',0,6,'',343,94301); +INSERT INTO "weather" VALUES('1/27/2015',93,75,55,55,50,45,82,60,24,30.25,30.19,30.1,10,10,10,10,7,'',0,6,'',357,94301); +INSERT INTO "weather" VALUES('1/28/2015',68,56,44,55,50,45,100,75,49,30.27,30.2,30.16,10,9,7,9,4,'',0,3,'',340,94301); +INSERT INTO "weather" VALUES('1/29/2015',66,54,42,54,50,41,100,82,56,30.16,30.12,30.06,7,5,0,12,4,'',0,1,'Fog',304,94301); +INSERT INTO "weather" VALUES('1/30/2015',64,57,50,55,53,50,100,87,73,30.04,29.97,29.9,10,7,0,13,4,'',0,2,'Fog',339,94301); +INSERT INTO "weather" VALUES('1/31/2015',75,58,41,45,37,32,93,47,21,30.02,29.97,29.93,10,10,10,10,5,'',0,0,'',310,94301); +INSERT INTO "weather" VALUES('2/1/2015',64,52,41,48,45,39,93,68,49,30.17,30.14,30.1,15,11,10,10,5,'',0,4,'',347,94301); +INSERT INTO "weather" VALUES('2/2/2015',84,64,44,54,50,45,100,73,33,30.19,30.13,30.08,10,7,6,12,6,'',0,3,'',360,94301); +INSERT INTO "weather" VALUES('2/3/2015',66,56,48,55,52,46,94,77,63,30.13,30.11,30.05,7,6,4,12,3,'',0,6,'',345,94301); +INSERT INTO "weather" VALUES('2/4/2015',64,56,48,55,52,46,94,85,68,30.05,30.03,30.01,7,6,3,12,6,'',0,6,'',352,94301); +INSERT INTO "weather" VALUES('2/5/2015',64,56,48,54,51,48,100,80,64,30.01,29.98,29.93,10,9,5,9,3,'',0,8,'',6,94301); +INSERT INTO "weather" VALUES('2/6/2015',64,62,59,61,58,54,100,88,68,29.89,29.86,29.82,10,6,2,29,23,40,0,8,'Rain',152,94301); +INSERT INTO "weather" VALUES('2/7/2015',69,64,60,63,60,57,100,90,73,30.08,30.03,30,10,7,2,10,5,'',0,6,'Rain',142,94301); +INSERT INTO "weather" VALUES('2/8/2015',66,62,59,61,58,52,94,82,64,30,29.93,29.89,10,7,2,21,13,28,0,7,'Rain',166,94301); +INSERT INTO "weather" VALUES('2/9/2015',66,60,53,57,54,52,100,77,60,30.26,30.22,30.18,10,10,10,14,8,'',0,4,'',280,94301); +INSERT INTO "weather" VALUES('2/10/2015',68,57,46,52,49,46,100,74,56,30.23,30.15,30.09,10,10,10,10,6,'',0,3,'',330,94301); +INSERT INTO "weather" VALUES('2/11/2015',71,56,42,57,50,43,100,76,43,30.18,30.15,30.11,10,10,10,10,2,'',0,3,'',45,94301); +INSERT INTO "weather" VALUES('2/12/2015',75,60,46,57,53,46,100,72,50,30.21,30.16,30.13,10,10,10,10,4,'',0,2,'',345,94301); +INSERT INTO "weather" VALUES('2/13/2015',73,60,46,57,54,46,100,74,46,30.16,30.1,30.06,10,10,10,13,3,'',0,1,'',330,94301); +INSERT INTO "weather" VALUES('2/14/2015',75,60,46,57,54,46,100,74,50,30.12,30.08,30.03,10,10,10,12,2,'',0,0,'',355,94301); +INSERT INTO "weather" VALUES('2/15/2015',77,60,44,55,50,45,100,64,36,30.05,30.02,29.97,10,10,10,9,3,'',0,2,'',180,94301); +INSERT INTO "weather" VALUES('2/16/2015',71,65,57,59,56,55,94,76,57,30.02,29.97,29.95,10,10,10,12,11,'',0,0,'',340,94301); +INSERT INTO "weather" VALUES('2/17/2015',59,56,55,55,54,54,100,93,82,30.16,30.14,30.1,7,4,3,12,7,'',0,7,'',351,94301); +INSERT INTO "weather" VALUES('2/18/2015',62,58,53,55,52,48,100,81,68,30.23,30.17,30.11,10,10,10,13,6,'',0,3,'',330,94301); +INSERT INTO "weather" VALUES('2/19/2015',60,58,55,55,55,54,94,87,82,30.16,30.11,30.05,10,7,3,13,4,'',0,5,'',352,94301); +INSERT INTO "weather" VALUES('2/20/2015',69,62,55,57,53,50,100,78,49,30.09,30.01,29.93,10,8,3,13,4,'',0,2,'',345,94301); +INSERT INTO "weather" VALUES('2/21/2015',71,58,44,55,49,43,93,69,35,29.97,29.9,29.83,10,10,10,13,6,'',0,0,'',342,94301); +INSERT INTO "weather" VALUES('2/22/2015',66,58,50,45,41,37,82,51,40,29.89,29.86,29.83,10,10,10,21,10,'',0,1,'',344,94301); +INSERT INTO "weather" VALUES('2/23/2015',62,56,51,37,32,28,54,38,29,30.21,30.16,30.1,10,10,10,18,14,'',0,1,'',37,94301); +INSERT INTO "weather" VALUES('2/24/2015',68,60,48,46,35,21,66,43,18,30.37,30.3,30.26,10,10,10,15,7,'',0,0,'',355,94301); +INSERT INTO "weather" VALUES('2/25/2015',66,54,42,54,47,39,88,70,45,30.29,30.19,30.11,10,10,10,14,7,'',0,2,'',346,94301); +INSERT INTO "weather" VALUES('2/26/2015',69,56,42,54,50,43,100,68,49,30.08,30,29.93,10,10,7,15,7,'',0,5,'',329,94301); +INSERT INTO "weather" VALUES('2/27/2015',93,73,53,52,48,45,82,65,23,29.89,29.83,29.78,10,10,10,18,15,'',0,5,'',301,94301); +INSERT INTO "weather" VALUES('2/28/2015',59,52,48,46,46,45,87,70,63,29.81,29.79,29.77,10,10,10,7,6,'',0,5,'',281,94301); +INSERT INTO "weather" VALUES('3/1/2015',66,54,41,46,41,37,100,59,37,30,29.96,29.9,10,10,10,13,5,'',0,1,'',344,94301); +INSERT INTO "weather" VALUES('3/2/2015',60,52,44,46,43,32,87,66,50,29.94,29.85,29.8,10,10,10,13,8,'',0,5,'',198,94301); +INSERT INTO "weather" VALUES('3/3/2015',66,52,39,50,47,39,100,72,46,30.06,30.01,29.96,10,10,10,15,7,'',0,2,'',350,94301); +INSERT INTO "weather" VALUES('3/4/2015',68,54,39,50,43,37,93,61,33,30.19,30.14,30.08,10,10,10,10,5,'',0,0,'',3,94301); +INSERT INTO "weather" VALUES('3/5/2015',71,56,41,48,44,39,93,54,35,30.34,30.29,30.25,10,10,10,13,4,'',0,0,'',331,94301); +INSERT INTO "weather" VALUES('3/6/2015',73,60,48,50,45,43,82,56,36,30.3,30.23,30.15,10,10,10,9,4,'',0,0,'',352,94301); +INSERT INTO "weather" VALUES('3/7/2015',77,60,42,59,48,39,88,63,36,30.13,30.07,30,10,10,10,12,4,'',0,0,'',359,94301); +INSERT INTO "weather" VALUES('3/8/2015',68,60,51,55,53,50,100,81,56,30.12,30.05,29.99,10,8,5,14,6,'',0,4,'',348,94301); +INSERT INTO "weather" VALUES('3/9/2015',68,60,51,57,53,50,94,79,64,30.05,30,29.94,10,10,10,12,6,'',0,3,'',337,94301); +INSERT INTO "weather" VALUES('3/10/2015',64,58,53,57,55,54,100,85,77,29.96,29.95,29.94,7,5,2,17,6,'',0,6,'',3,94301); +INSERT INTO "weather" VALUES('3/11/2015',69,63,57,55,53,48,94,73,46,30.22,30.14,30.06,10,9,4,15,9,'',0,5,'Rain',22,94301); +INSERT INTO "weather" VALUES('3/12/2015',73,62,51,55,54,50,94,67,50,30.28,30.2,30.13,10,10,10,13,4,'',0,2,'',337,94301); +INSERT INTO "weather" VALUES('3/13/2015',75,62,50,61,55,48,94,74,44,30.17,30.12,30.07,10,10,10,12,6,'',0,5,'',1,94301); +INSERT INTO "weather" VALUES('3/14/2015',84,68,53,63,57,52,94,64,40,30.12,30.04,29.95,10,10,10,12,4,'',0,3,'',358,94301); +INSERT INTO "weather" VALUES('3/15/2015',75,66,57,57,48,37,64,50,27,30.08,30.04,30,15,12,10,18,8,'',0,5,'',327,94301); +INSERT INTO "weather" VALUES('3/16/2015',71,66,60,54,52,50,77,59,46,30.06,30.02,29.99,20,11,10,14,6,'',0,6,'',328,94301); +INSERT INTO "weather" VALUES('3/17/2015',69,61,53,54,50,46,88,64,43,30.14,30.09,30.04,10,10,10,17,13,22,0,4,'',333,94301); +INSERT INTO "weather" VALUES('3/18/2015',69,58,46,55,52,45,93,71,53,30.07,30.03,29.99,10,10,10,108,13,'',0,0,'',342,94301); +INSERT INTO "weather" VALUES('3/19/2015',75,62,48,57,53,45,93,68,47,30.08,30.04,29.99,10,10,10,14,4,'',0,2,'',4,94301); +INSERT INTO "weather" VALUES('3/20/2015',64,56,48,54,51,46,93,75,64,30.14,30.11,30.07,10,10,10,17,5,'',0,5,'',355,94301); +INSERT INTO "weather" VALUES('3/21/2015',69,61,53,59,55,48,94,78,56,30.19,30.15,30.1,10,10,10,15,7,'',0,4,'',337,94301); +INSERT INTO "weather" VALUES('3/22/2015',68,62,57,59,53,48,94,73,52,30.18,30.16,30.13,10,8,2,12,6,'',0,6,'Rain',244,94301); +INSERT INTO "weather" VALUES('3/23/2015',66,60,55,54,47,41,94,59,43,30.3,30.28,30.25,10,10,10,23,12,'',0,3,'',322,94301); +INSERT INTO "weather" VALUES('3/24/2015',68,60,51,55,52,46,82,70,60,30.32,30.28,30.23,15,10,10,17,8,'',0,5,'',328,94301); +INSERT INTO "weather" VALUES('3/25/2015',75,63,51,57,53,50,94,69,41,30.24,30.19,30.15,10,10,10,17,8,'',0,0,'',340,94301); +INSERT INTO "weather" VALUES('3/26/2015',80,65,50,63,56,50,100,65,39,30.18,30.14,30.04,10,10,10,12,6,'',0,0,'',337,94301); +INSERT INTO "weather" VALUES('3/27/2015',66,60,55,57,56,54,94,80,73,30.17,30.14,30.11,10,10,10,23,10,24,0,1,'',335,94301); +INSERT INTO "weather" VALUES('3/28/2015',78,63,48,55,51,46,93,60,34,30.2,30.13,30.07,10,10,10,14,8,'',0,3,'',337,94301); +INSERT INTO "weather" VALUES('3/29/2015',77,62,46,59,53,45,93,69,39,30.13,30.06,30,10,10,10,15,7,'',0,0,'',354,94301); +INSERT INTO "weather" VALUES('3/30/2015',69,64,55,55,50,43,72,61,46,30.08,30.05,30.03,10,10,10,21,10,29,0,4,'',326,94301); +INSERT INTO "weather" VALUES('3/31/2015',68,62,57,52,46,41,82,55,43,30.19,30.16,30.14,15,11,10,23,17,25,0,1,'',301,94301); +INSERT INTO "weather" VALUES('4/1/2015',66,55,44,43,40,37,76,52,40,30.2,30.14,30.09,10,10,10,17,8,'',0,2,'',309,94301); +INSERT INTO "weather" VALUES('4/2/2015',71,56,42,41,37,32,87,43,25,30.21,30.18,30.14,16,10,10,20,7,'',0,0,'',316,94301); +INSERT INTO "weather" VALUES('4/3/2015',73,57,41,52,45,36,81,55,27,30.23,30.17,30.11,10,10,10,21,8,'',0,0,'',357,94301); +INSERT INTO "weather" VALUES('4/4/2015',66,54,41,48,41,37,87,59,40,30.1,30.06,29.99,10,10,10,21,8,'',0,2,'',313,94301); +INSERT INTO "weather" VALUES('4/5/2015',60,53,46,48,43,36,81,63,42,29.93,29.92,29.91,20,10,7,23,10,'',0,5,'Rain',251,94301); +INSERT INTO "weather" VALUES('4/6/2015',64,58,51,43,41,37,71,50,39,29.98,29.92,29.89,15,11,10,16,12,'',0,5,'',171,94301); +INSERT INTO "weather" VALUES('4/7/2015',60,55,50,50,45,41,100,71,51,30.02,29.91,29.8,10,10,7,14,10,21,0,6,'',248,94301); +INSERT INTO "weather" VALUES('4/8/2015',64,57,50,48,45,41,87,61,42,30.19,30.14,30.1,20,13,10,18,8,'',0,4,'',336,94301); +INSERT INTO "weather" VALUES('4/9/2015',68,55,42,48,45,41,93,64,40,30.06,30.01,29.94,20,12,10,16,5,'',0,3,'',1,94301); +INSERT INTO "weather" VALUES('4/10/2015',68,55,42,50,47,41,93,60,46,30.05,30.03,29.99,15,14,10,22,9,'',0,0,'',353,94301); +INSERT INTO "weather" VALUES('4/11/2015',73,58,44,52,48,39,81,59,38,30.09,30.05,30.01,10,10,10,22,9,'',0,2,'',335,94301); +INSERT INTO "weather" VALUES('4/12/2015',77,62,46,55,50,45,93,59,36,30.03,29.98,29.94,10,10,10,16,8,'',0,0,'',347,94301); +INSERT INTO "weather" VALUES('4/13/2015',66,60,53,55,49,45,82,67,46,30.13,30.09,30.03,10,10,10,21,7,23,0,1,'',322,94301); +INSERT INTO "weather" VALUES('4/14/2015',66,58,50,41,36,30,62,44,26,30.35,30.3,30.24,10,10,10,18,15,'',0,0,'',321,94301); +INSERT INTO "weather" VALUES('4/15/2015',73,60,48,41,36,34,71,37,23,30.2,30.13,30.03,'','','',17,11,'',0,1,'',318,94301); +INSERT INTO "weather" VALUES('4/16/2015',75,75,75,37,37,37,25,25,25,29.96,29.96,29.96,'','','',13,13,'',0,0,'',320,94301); +INSERT INTO "weather" VALUES('4/17/2015',73,60,46,55,50,39,94,63,41,30.09,30.04,30,10,10,10,20,7,'',0,0,'',345,94301); +INSERT INTO "weather" VALUES('4/18/2015',71,63,55,55,54,52,88,72,56,30.05,29.98,29.92,15,13,7,17,8,'',0,1,'',350,94301); +INSERT INTO "weather" VALUES('4/19/2015',66,60,55,57,55,52,94,80,68,29.98,29.93,29.88,20,10,7,20,9,'',0,4,'',358,94301); +INSERT INTO "weather" VALUES('4/20/2015',66,60,55,55,54,52,94,78,68,29.91,29.86,29.83,10,9,7,118,17,'',0,3,'',358,94301); +INSERT INTO "weather" VALUES('4/21/2015',66,60,55,52,50,46,82,71,56,29.99,29.89,29.85,10,10,10,17,10,'',0,5,'',246,94301); +INSERT INTO "weather" VALUES('4/22/2015',69,60,50,54,51,48,94,75,56,29.9,29.88,29.85,15,10,10,14,8,'',0,4,'',338,94301); +INSERT INTO "weather" VALUES('4/23/2015',68,60,53,54,51,46,77,66,59,29.9,29.88,29.86,15,12,10,20,10,'',0,3,'',289,94301); +INSERT INTO "weather" VALUES('4/24/2015',64,60,55,48,44,41,77,55,45,30.04,30.02,29.95,15,11,10,18,12,25,0,3,'',289,94301); +INSERT INTO "weather" VALUES('4/25/2015',64,60,55,54,49,41,94,67,56,30.04,29.98,29.92,10,10,10,20,12,23,0,5,'',306,94301); +INSERT INTO "weather" VALUES('4/26/2015',75,65,55,50,45,39,68,48,33,30.16,30.11,30.07,10,10,10,21,10,'',0,2,'',342,94301); +INSERT INTO "weather" VALUES('4/27/2015',87,68,50,63,54,48,94,56,27,30.03,29.98,29.92,10,10,10,20,7,'',0,1,'',343,94301); +INSERT INTO "weather" VALUES('4/28/2015',68,62,55,59,54,50,94,72,52,30.06,30.03,30,15,11,10,20,11,'',0,4,'',355,94301); +INSERT INTO "weather" VALUES('4/29/2015',69,60,50,55,53,48,94,71,60,30.03,29.98,29.91,10,10,10,17,6,'',0,2,'',360,94301); +INSERT INTO "weather" VALUES('4/30/2015',89,70,51,61,48,43,88,38,22,29.88,29.82,29.76,20,18,10,14,8,'',0,0,'',338,94301); +INSERT INTO "weather" VALUES('5/1/2015',77,67,57,61,57,50,88,68,50,29.88,29.85,29.82,10,10,10,21,9,'',0,0,'',347,94301); +INSERT INTO "weather" VALUES('5/2/2015',69,63,57,57,56,54,94,75,60,29.89,29.87,29.82,15,10,6,20,10,'',0,2,'',359,94301); +INSERT INTO "weather" VALUES('5/3/2015',69,61,53,55,52,48,88,65,52,29.91,29.88,29.86,10,9,5,16,10,'',0,1,'',350,94301); +INSERT INTO "weather" VALUES('5/4/2015',66,60,53,50,48,46,82,67,56,29.99,29.97,29.94,10,10,10,20,11,'',0,4,'',316,94301); +INSERT INTO "weather" VALUES('5/5/2015',69,60,51,50,48,46,82,61,46,29.98,29.95,29.91,10,10,10,17,9,'',0,1,'',315,94301); +INSERT INTO "weather" VALUES('5/6/2015',73,62,50,55,47,39,82,58,41,29.9,29.85,29.8,10,9,7,20,10,'',0,1,'',2,94301); +INSERT INTO "weather" VALUES('5/7/2015',62,56,50,48,46,43,87,65,52,29.79,29.77,29.74,10,9,0,9,7,'',0,6,'',118,94301); +INSERT INTO "weather" VALUES('5/8/2015',69,61,53,55,52,46,82,63,52,29.95,29.91,29.89,20,20,20,15,8,'',0,1,'',10,94301); +INSERT INTO "weather" VALUES('5/9/2015',64,58,53,55,51,48,88,74,59,30.11,30.07,30.04,10,8,7,17,9,'',0,4,'',303,94301); +INSERT INTO "weather" VALUES('5/10/2015',66,60,53,54,51,48,88,70,59,30.09,30.02,29.99,10,9,6,18,11,23,0,3,'',349,94301); +INSERT INTO "weather" VALUES('5/11/2015',64,57,50,50,48,45,87,65,56,29.99,29.96,29.91,15,10,10,21,9,22,0,3,'',275,94301); +INSERT INTO "weather" VALUES('5/12/2015',66,58,51,45,42,39,71,52,37,29.98,29.96,29.94,20,14,10,120,17,29,0,3,'',299,94301); +INSERT INTO "weather" VALUES('5/13/2015',68,62,55,46,44,43,67,50,43,29.98,29.96,29.91,10,10,10,17,9,'',0,5,'',324,94301); +INSERT INTO "weather" VALUES('5/14/2015',64,60,55,55,53,50,94,79,59,29.83,29.81,29.8,10,8,2,14,8,'',0,6,'Rain',16,94301); +INSERT INTO "weather" VALUES('5/15/2015',66,57,48,54,50,46,93,70,52,29.95,29.93,29.9,10,10,10,17,8,'',0,4,'',321,94301); +INSERT INTO "weather" VALUES('5/16/2015',64,60,55,50,50,50,82,71,59,30.03,30,29.99,20,11,7,17,9,'',0,5,'',285,94301); +INSERT INTO "weather" VALUES('5/17/2015',64,60,55,50,50,48,82,66,59,30.06,30.04,30.02,20,11,10,17,9,'',0,6,'',302,94301); +INSERT INTO "weather" VALUES('5/18/2015',60,58,57,50,50,50,77,73,68,30.1,30.1,30.1,10,10,10,14,10,'',0,8,'',296,94301); +INSERT INTO "weather" VALUES('5/19/2015',68,62,55,54,51,50,88,71,52,30.12,30.06,30.01,10,10,10,21,9,'',0,6,'',300,94301); +INSERT INTO "weather" VALUES('5/20/2015',66,62,57,52,50,50,77,68,56,29.99,29.96,29.94,10,10,10,16,9,'',0,7,'',289,94301); +INSERT INTO "weather" VALUES('5/21/2015',68,62,57,57,54,52,82,72,56,29.95,29.94,29.93,10,10,10,15,8,'',0,6,'',308,94301); +INSERT INTO "weather" VALUES('5/22/2015',68,62,57,64,53,50,94,71,60,30.07,30.03,30.01,10,10,10,17,9,'',0,6,'',296,94301); +INSERT INTO "weather" VALUES('5/23/2015',66,62,57,52,51,50,82,70,56,30.09,30.06,30.05,10,8,6,17,10,'',0,4,'',307,94301); +INSERT INTO "weather" VALUES('5/24/2015',69,60,50,55,52,48,94,72,56,30.03,29.98,29.97,20,13,7,23,10,25,0,3,'',343,94301); +INSERT INTO "weather" VALUES('5/25/2015',69,62,55,55,53,50,82,72,56,29.99,29.96,29.93,10,10,10,20,12,'',0,4,'',337,94301); +INSERT INTO "weather" VALUES('5/26/2015',69,63,57,55,52,50,77,68,56,30.02,29.99,29.97,10,10,10,21,9,'',0,4,'',319,94301); +INSERT INTO "weather" VALUES('5/27/2015',71,63,55,55,53,50,82,70,50,30.03,30.01,29.99,10,10,10,23,11,'',0,3,'',335,94301); +INSERT INTO "weather" VALUES('5/28/2015',66,60,55,57,54,52,88,76,68,30.06,30.02,29.97,10,10,10,21,11,'',0,5,'',349,94301); +INSERT INTO "weather" VALUES('5/29/2015',66,60,55,57,55,52,88,79,68,30.01,29.98,29.94,20,12,10,18,8,'',0,6,'',359,94301); +INSERT INTO "weather" VALUES('5/30/2015',80,68,55,57,55,52,94,80,45,29.98,29.95,29.89,10,8,7,17,8,'',0,5,'',354,94301); +INSERT INTO "weather" VALUES('5/31/2015',68,62,55,55,53,50,88,71,60,29.95,29.93,29.9,20,12,10,20,10,'',0,5,'',347,94301); +INSERT INTO "weather" VALUES('6/1/2015',73,66,60,59,56,52,73,65,50,30.04,30.02,30.01,10,10,10,16,10,'',0,4,'',309,94301); +INSERT INTO "weather" VALUES('6/2/2015',73,65,57,59,55,50,94,69,53,30.09,30.04,29.99,20,14,10,17,11,'',0,4,'',319,94301); +INSERT INTO "weather" VALUES('6/3/2015',69,62,55,54,52,50,82,64,49,29.97,29.95,29.92,10,10,10,17,9,24,0,4,'',305,94301); +INSERT INTO "weather" VALUES('6/4/2015',71,62,53,61,54,50,88,66,56,29.85,29.82,29.78,15,12,10,16,8,22,0,1,'',4,94301); +INSERT INTO "weather" VALUES('6/5/2015',73,65,57,61,58,54,88,74,61,29.83,29.81,29.78,15,11,7,21,9,22,0,2,'',6,94301); +INSERT INTO "weather" VALUES('6/6/2015',73,66,60,61,59,55,88,74,61,29.91,29.89,29.86,10,10,8,17,10,'',0,3,'',19,94301); +INSERT INTO "weather" VALUES('6/7/2015',77,68,60,61,60,57,88,72,57,29.92,29.88,29.83,10,9,7,20,9,'',0,2,'',343,94301); +INSERT INTO "weather" VALUES('6/8/2015',93,80,68,68,63,59,78,55,32,29.87,29.81,29.74,10,10,10,17,9,'',0,1,'',345,94301); +INSERT INTO "weather" VALUES('6/9/2015',78,70,62,64,61,59,88,69,57,29.9,29.87,29.83,10,10,10,23,10,'',0,7,'',360,94301); +INSERT INTO "weather" VALUES('6/10/2015',71,66,62,66,63,61,94,87,83,29.94,29.91,29.87,10,10,7,12,6,'',0,7,'Rain',353,94301); +INSERT INTO "weather" VALUES('6/11/2015',77,68,60,66,63,61,100,80,65,29.91,29.85,29.8,15,11,2,23,9,'',0,2,'',356,94301); +INSERT INTO "weather" VALUES('6/12/2015',80,70,60,66,62,59,94,71,51,29.84,29.79,29.74,10,10,10,20,9,'',0,1,'',357,94301); +INSERT INTO "weather" VALUES('6/13/2015',82,71,60,63,61,59,100,75,51,29.79,29.77,29.73,10,9,6,20,9,'',0,2,'',351,94301); +INSERT INTO "weather" VALUES('6/14/2015',69,64,59,59,57,52,88,74,64,29.83,29.81,29.78,8,7,6,23,11,'',0,2,'',12,94301); +INSERT INTO "weather" VALUES('6/15/2015',69,63,57,57,55,52,82,70,60,29.94,29.91,29.88,10,8,7,17,12,'',0,2,'',349,94301); +INSERT INTO "weather" VALUES('6/16/2015',71,63,55,59,56,52,88,70,57,29.97,29.94,29.91,10,10,7,23,10,'',0,2,'',345,94301); +INSERT INTO "weather" VALUES('6/17/2015',73,63,53,59,56,52,94,72,57,29.94,29.92,29.89,10,9,7,16,7,'',0,3,'',357,94301); +INSERT INTO "weather" VALUES('6/18/2015',77,68,59,57,54,43,82,63,29,30.01,30,29.96,20,10,6,23,9,'',0,1,'',356,94301); +INSERT INTO "weather" VALUES('6/19/2015',75,64,53,59,56,50,88,66,50,30,29.97,29.94,20,14,10,23,8,'',0,2,'',358,94301); +INSERT INTO "weather" VALUES('6/20/2015',75,65,55,59,57,54,94,68,50,29.92,29.89,29.86,20,16,10,17,8,'',0,5,'',343,94301); +INSERT INTO "weather" VALUES('6/21/2015',69,64,59,55,54,52,88,68,53,30.03,30,29.97,10,8,7,23,9,'',0,2,'',352,94301); +INSERT INTO "weather" VALUES('6/22/2015',69,64,60,57,56,52,77,69,64,30.06,30.03,30,20,12,7,21,11,23,0,1,'',349,94301); +INSERT INTO "weather" VALUES('6/23/2015',78,66,55,59,53,45,88,58,36,30.02,29.98,29.93,20,15,10,23,9,'',0,0,'',324,94301); +INSERT INTO "weather" VALUES('6/24/2015',75,67,59,61,57,54,82,67,50,29.96,29.92,29.87,10,10,10,21,10,'',0,1,'',357,94301); +INSERT INTO "weather" VALUES('6/25/2015',84,72,60,61,59,55,82,59,45,29.92,29.89,29.84,20,14,10,14,8,'',0,0,'',352,94301); +INSERT INTO "weather" VALUES('6/26/2015',78,72,64,63,61,59,83,73,54,29.93,29.92,29.89,10,10,10,23,11,'',0,1,'',352,94301); +INSERT INTO "weather" VALUES('6/27/2015',78,70,62,63,60,57,82,69,54,30,29.97,29.95,20,11,8,20,8,'',0,6,'',358,94301); +INSERT INTO "weather" VALUES('6/28/2015',73,68,64,61,60,59,83,72,65,30.01,29.98,29.96,20,12,10,21,12,'',0,4,'',353,94301); +INSERT INTO "weather" VALUES('6/29/2015',77,68,60,61,59,55,88,69,54,30.03,29.96,29.91,10,10,10,17,11,'',0,2,'',343,94301); +INSERT INTO "weather" VALUES('6/30/2015',87,76,66,63,60,57,78,60,38,29.91,29.85,29.79,10,10,10,17,9,'',0,4,'',345,94301); +INSERT INTO "weather" VALUES('7/1/2015',78,70,62,64,62,59,88,69,54,29.91,29.89,29.84,20,16,10,17,8,'',0,5,'',345,94301); +INSERT INTO "weather" VALUES('7/2/2015',77,70,64,64,62,59,88,76,65,29.97,29.92,29.83,10,10,10,17,11,'',0,6,'',346,94301); +INSERT INTO "weather" VALUES('7/3/2015',78,71,64,64,63,61,88,75,57,29.96,29.92,29.85,10,10,10,23,12,'',0,2,'',353,94301); +INSERT INTO "weather" VALUES('7/4/2015',75,70,66,63,62,61,88,73,65,29.88,29.85,29.83,10,10,8,18,11,'',0,1,'',355,94301); +INSERT INTO "weather" VALUES('7/5/2015',77,70,64,64,61,59,83,69,61,29.97,29.95,29.92,20,12,10,76,16,23,0,3,'',14,94301); +INSERT INTO "weather" VALUES('7/6/2015',78,70,62,63,59,57,82,65,47,30.09,30.05,30,10,10,10,21,11,'',0,3,'',344,94301); +INSERT INTO "weather" VALUES('7/7/2015',78,72,66,63,59,55,83,63,47,30.04,29.97,29.9,20,11,10,23,11,'',0,3,'',334,94301); +INSERT INTO "weather" VALUES('7/8/2015',69,63,62,55,55,55,77,72,60,29.91,29.9,29.89,10,10,10,9,5,'',0,8,'',305,94301); +INSERT INTO "weather" VALUES('7/9/2015',69,66,64,61,57,55,78,70,64,29.9,29.89,29.87,20,16,10,12,9,'',0,7,'',303,94301); +INSERT INTO "weather" VALUES('7/10/2015',71,66,62,59,57,55,82,69,57,29.96,29.93,29.91,10,10,10,14,7,'',0,7,'',341,94301); +INSERT INTO "weather" VALUES('7/11/2015',78,68,59,59,57,55,88,62,47,29.99,29.98,29.97,10,10,10,21,8,'',0,3,'',338,94301); +INSERT INTO "weather" VALUES('7/12/2015',78,69,60,66,58,55,82,65,44,30.05,30.03,30,20,18,10,21,7,'',0,4,'',351,94301); +INSERT INTO "weather" VALUES('7/13/2015',80,72,64,63,59,57,78,64,51,30.03,29.98,29.94,10,10,7,17,10,'',0,4,'',306,94301); +INSERT INTO "weather" VALUES('7/14/2015',75,66,57,59,57,55,94,69,50,29.95,29.91,29.89,20,13,10,21,11,23,0,3,'',324,94301); +INSERT INTO "weather" VALUES('7/15/2015',82,70,59,64,60,55,88,64,48,29.9,29.87,29.84,20,15,10,59,22,'',0,0,'',9,94301); +INSERT INTO "weather" VALUES('7/16/2015',78,70,62,64,61,59,88,75,57,29.92,29.9,29.85,20,11,6,18,8,'',0,2,'',31,94301); +INSERT INTO "weather" VALUES('7/17/2015',77,72,66,64,62,61,83,73,61,29.87,29.83,29.77,10,10,10,21,8,'',0,4,'',11,94301); +INSERT INTO "weather" VALUES('7/18/2015',78,71,64,63,60,55,83,63,51,29.95,29.92,29.88,10,9,7,23,11,'',0,3,'',14,94301); +INSERT INTO "weather" VALUES('7/19/2015',84,75,66,68,63,59,78,62,48,30.06,30.03,29.99,20,17,10,17,6,'',0,6,'',5,94301); +INSERT INTO "weather" VALUES('7/20/2015',84,78,68,66,64,63,83,64,54,30.02,29.96,29.92,10,10,10,21,12,23,0,3,'',355,94301); +INSERT INTO "weather" VALUES('7/21/2015',73,68,62,63,61,59,88,75,69,29.94,29.89,29.85,10,10,10,21,10,25,0,2,'',347,94301); +INSERT INTO "weather" VALUES('7/22/2015',75,68,60,59,57,54,88,64,47,29.89,29.87,29.85,10,10,10,22,10,23,0,2,'',336,94301); +INSERT INTO "weather" VALUES('7/23/2015',75,67,59,57,55,54,88,62,50,30.04,30,29.97,20,15,10,20,12,25,0,3,'',315,94301); +INSERT INTO "weather" VALUES('7/24/2015',77,65,53,57,55,50,88,59,47,30.13,30.1,30.06,20,18,8,21,10,28,0,1,'',351,94301); +INSERT INTO "weather" VALUES('7/25/2015',73,64,55,63,59,52,88,73,65,30.11,30.07,30,20,18,10,25,10,'',0,1,'',341,94301); +INSERT INTO "weather" VALUES('7/26/2015',78,66,55,63,57,52,94,62,42,29.97,29.94,29.92,20,14,10,21,9,'',0,1,'',332,94301); +INSERT INTO "weather" VALUES('7/27/2015',86,72,59,64,60,54,82,60,42,29.96,29.92,29.87,10,10,10,18,10,'',0,0,'',358,94301); +INSERT INTO "weather" VALUES('7/28/2015',89,74,59,68,62,55,88,61,43,29.9,29.86,29.81,20,14,10,17,7,'',0,0,'',358,94301); +INSERT INTO "weather" VALUES('7/29/2015',84,72,60,64,62,57,88,64,45,29.93,29.9,29.87,10,10,10,18,9,'',0,0,'',349,94301); +INSERT INTO "weather" VALUES('7/30/2015',78,71,64,66,63,61,88,75,61,30.05,30,29.96,15,8,7,128,16,'',0,4,'',5,94301); +INSERT INTO "weather" VALUES('7/31/2015',77,70,64,64,62,59,88,76,65,30.03,30,29.95,10,9,7,17,11,23,0,5,'',5,94301); +INSERT INTO "weather" VALUES('8/1/2015',77,72,66,64,61,59,83,70,61,30.02,29.98,29.91,10,10,7,20,9,'',0,3,'',4,94301); +INSERT INTO "weather" VALUES('8/2/2015',77,70,64,63,60,57,83,68,50,29.99,29.94,29.89,10,9,7,22,12,'',0,4,'',341,94301); +INSERT INTO "weather" VALUES('8/3/2015',77,70,62,59,57,54,82,60,47,29.97,29.95,29.92,15,13,10,23,13,'',0,3,'',332,94301); +INSERT INTO "weather" VALUES('8/4/2015',78,68,57,61,56,54,88,61,44,30.01,29.99,29.97,10,10,10,16,7,'',0,5,'',338,94301); +INSERT INTO "weather" VALUES('8/5/2015',78,68,57,63,61,55,94,71,57,30.05,29.99,29.92,20,14,10,17,8,'',0,3,'',349,94301); +INSERT INTO "weather" VALUES('8/6/2015',73,66,59,63,61,55,88,77,65,29.92,29.88,29.82,7,7,7,14,8,'',0,6,'',346,94301); +INSERT INTO "weather" VALUES('8/7/2015',78,72,66,63,60,59,78,64,54,29.9,29.89,29.86,20,16,10,18,7,'',0,2,'',352,94301); +INSERT INTO "weather" VALUES('8/8/2015','','','','','','','','','','','','','','','','','','','','','','',94301); +INSERT INTO "weather" VALUES('8/9/2015',78,66,55,64,59,54,94,67,51,29.97,29.93,29.9,20,13,10,23,10,24,0,1,'',352,94301); +INSERT INTO "weather" VALUES('8/10/2015',78,68,57,64,59,55,94,68,51,29.98,29.94,29.91,10,10,10,20,9,'',0,4,'',335,94301); +INSERT INTO "weather" VALUES('8/11/2015',77,70,62,63,59,54,88,66,47,29.96,29.93,29.9,10,10,10,23,11,'',0,3,'',349,94301); +INSERT INTO "weather" VALUES('8/12/2015',82,68,55,64,58,52,88,60,39,30.07,30.03,29.99,'','','',18,6,23,0,0,'',352,94301); +INSERT INTO "weather" VALUES('8/13/2015',86,74,62,64,60,55,88,65,40,30.06,30.03,29.99,10,10,10,23,9,'',0,2,'',340,94301); +INSERT INTO "weather" VALUES('8/14/2015',80,73,66,63,60,57,78,66,48,30.1,30.05,29.99,10,10,10,17,11,21,0,2,'',340,94301); +INSERT INTO "weather" VALUES('8/15/2015',95,82,71,68,61,54,73,52,26,30,29.97,29.93,10,8,4,12,9,'',0,3,'',353,94301); +INSERT INTO "weather" VALUES('8/16/2015',80,80,73,61,60,59,65,56,48,29.8,29.8,29.8,7,7,7,17,14,'',0,4,'',340,94301); +INSERT INTO "weather" VALUES('8/17/2015',82,71,60,64,62,57,88,66,51,29.86,29.83,29.8,7,6,6,17,6,'',0,1,'',342,94301); +INSERT INTO "weather" VALUES('8/18/2015',78,71,64,63,61,57,88,71,57,29.94,29.91,29.87,7,7,5,17,9,'',0,2,'',11,94301); +INSERT INTO "weather" VALUES('8/19/2015',75,70,64,63,59,55,77,68,61,29.95,29.93,29.88,10,10,7,21,8,20,0,3,'',4,94301); +INSERT INTO "weather" VALUES('8/20/2015',71,70,64,61,60,57,78,70,64,29.92,29.87,29.85,10,10,10,21,17,'',0,0,'',358,94301); +INSERT INTO "weather" VALUES('8/21/2015',75,68,62,63,60,57,83,72,61,29.89,29.87,29.85,10,10,7,21,11,'',0,2,'',6,94301); +INSERT INTO "weather" VALUES('8/22/2015',77,70,62,63,59,55,88,69,61,29.93,29.91,29.87,10,9,6,16,7,'',0,2,'',355,94301); +INSERT INTO "weather" VALUES('8/23/2015',75,70,64,61,59,57,78,68,61,30.02,29.99,29.96,10,9,7,20,9,'',0,4,'',358,94301); +INSERT INTO "weather" VALUES('8/24/2015',75,68,62,61,59,57,82,68,57,30.06,30.01,29.97,10,9,7,20,11,21,0,2,'',349,94301); +INSERT INTO "weather" VALUES('8/25/2015',75,65,55,63,60,54,94,75,61,30.02,29.98,29.94,10,9,7,17,7,'',0,2,'',351,94301); +INSERT INTO "weather" VALUES('8/26/2015',78,70,62,63,60,57,88,71,54,30.04,30,29.96,15,10,7,18,7,'',0,4,'',354,94301); +INSERT INTO "weather" VALUES('8/27/2015',87,74,60,61,55,48,82,48,27,30.06,30.01,29.95,20,13,10,17,6,'',0,0,'',349,94301); +INSERT INTO "weather" VALUES('8/28/2015',82,76,68,64,63,61,88,72,54,29.89,29.87,29.84,20,17,10,17,15,26,0,3,'',333,94301); +INSERT INTO "weather" VALUES('8/29/2015',78,74,68,68,63,55,88,72,54,30,29.99,29.97,10,10,10,16,8,'',0,6,'',334,94301); +INSERT INTO "weather" VALUES('8/30/2015',82,71,60,63,58,55,82,59,42,30.06,30,29.95,10,10,10,21,9,'',0,1,'',336,94301); +INSERT INTO "weather" VALUES('8/31/2015',82,70,59,66,59,54,82,64,48,29.95,29.9,29.85,20,17,10,17,8,'',0,0,'',357,94301); +INSERT INTO "weather" VALUES('9/1/2014',85,73,60,60,58,53,84,59,34,29.87,29.83,29.77,10,10,10,17,5,21,0,0,'',342,94041); +INSERT INTO "weather" VALUES('9/2/2014',76,69,61,60,59,57,84,73,61,29.87,29.83,29.79,10,10,10,18,7,23,0,2,'',359,94041); +INSERT INTO "weather" VALUES('9/3/2014',79,70,61,60,57,54,84,66,48,29.82,29.77,29.71,10,10,10,17,6,22,0,3,'',33,94041); +INSERT INTO "weather" VALUES('9/4/2014',78,70,62,60,58,56,84,67,50,29.82,29.77,29.73,10,10,9,16,6,21,0,4,'',25,94041); +INSERT INTO "weather" VALUES('9/5/2014',76,69,61,59,57,55,84,69,54,29.93,29.88,29.82,10,10,8,17,7,21,0,4,'',34,94041); +INSERT INTO "weather" VALUES('9/6/2014',75,67,59,57,56,53,84,69,53,29.99,29.94,29.9,10,8,6,15,5,21,0,4,'',351,94041); +INSERT INTO "weather" VALUES('9/7/2014',72,66,59,56,54,53,80,67,53,29.93,29.89,29.82,10,10,8,16,5,21,0,4,'',339,94041); +INSERT INTO "weather" VALUES('9/8/2014',69,63,56,54,52,51,80,68,55,29.98,29.91,29.86,10,10,10,21,7,24,0,4,'',341,94041); +INSERT INTO "weather" VALUES('9/9/2014',75,65,54,58,54,50,90,72,53,30.02,29.97,29.92,10,10,9,14,4,17,0,3,'',337,94041); +INSERT INTO "weather" VALUES('9/10/2014',86,72,57,61,57,50,90,60,29,29.97,29.91,29.83,10,9,5,14,4,16,0,2,'',336,94041); +INSERT INTO "weather" VALUES('9/11/2014',85,72,59,60,57,53,84,61,37,29.93,29.88,29.82,10,10,7,14,4,16,0,1,'',314,94041); +INSERT INTO "weather" VALUES('9/12/2014',81,71,60,60,57,53,84,62,39,29.92,29.87,29.81,10,10,9,13,4,15,0,1,'',319,94041); +INSERT INTO "weather" VALUES('9/13/2014',79,70,61,60,58,56,90,69,48,29.88,29.84,29.8,10,10,7,15,4,20,0,2,'',327,94041); +INSERT INTO "weather" VALUES('9/14/2014',78,70,61,59,57,50,90,65,39,29.88,29.85,29.81,10,10,9,14,5,21,0,2,'',336,94041); +INSERT INTO "weather" VALUES('9/15/2014',77,69,60,58,55,49,84,65,46,29.96,29.91,29.86,10,10,10,22,6,24,0,2,'',347,94041); +INSERT INTO "weather" VALUES('9/16/2014',82,70,57,61,55,50,87,61,35,29.96,29.89,29.82,10,10,10,18,6,22,0,0,'',357,94041); +INSERT INTO "weather" VALUES('9/17/2014',84,74,63,61,58,51,90,63,36,29.84,29.8,29.74,10,10,10,20,6,23,0,4,'',28,94041); +INSERT INTO "weather" VALUES('9/18/2014',83,75,66,63,61,55,81,62,43,29.91,29.85,29.79,10,10,10,17,7,20,'T',6,'Rain',109,94041); +INSERT INTO "weather" VALUES('9/19/2014',75,69,62,63,61,59,93,79,64,29.94,29.91,29.86,10,10,10,20,6,24,0,3,'',329,94041); +INSERT INTO "weather" VALUES('9/20/2014',77,70,63,63,60,57,87,74,60,29.96,29.93,29.9,10,10,9,20,6,23,0,4,'',349,94041); +INSERT INTO "weather" VALUES('9/21/2014',74,69,64,60,58,56,78,70,61,30.04,30,29.94,10,10,10,21,6,24,0,5,'',327,94041); +INSERT INTO "weather" VALUES('9/22/2014',78,71,63,59,57,55,78,64,50,30.07,30.02,29.97,10,10,10,18,5,28,0,4,'',330,94041); +INSERT INTO "weather" VALUES('9/23/2014',78,69,60,63,58,55,84,67,50,30.03,29.99,29.93,10,10,10,20,5,22,0,2,'',346,94041); +INSERT INTO "weather" VALUES('9/24/2014',80,71,62,62,59,57,84,69,54,29.99,29.94,29.88,10,10,10,21,5,24,0,3,'',310,94041); +INSERT INTO "weather" VALUES('9/25/2014',73,66,59,63,59,54,100,79,57,30.04,29.98,29.92,10,7,2,17,5,28,0.41,6,'Rain',315,94041); +INSERT INTO "weather" VALUES('9/26/2014',75,66,57,61,56,51,100,73,46,30.02,29.98,29.94,10,10,10,16,5,22,0,2,'',288,94041); +INSERT INTO "weather" VALUES('9/27/2014',76,68,60,61,56,51,93,70,46,29.95,29.91,29.84,10,10,10,15,4,21,0,3,'',294,94041); +INSERT INTO "weather" VALUES('9/28/2014',76,67,57,62,57,54,100,75,49,29.98,29.91,29.85,10,10,10,17,5,21,0,2,'',337,94041); +INSERT INTO "weather" VALUES('9/29/2014',71,65,59,64,59,56,100,81,61,30.05,30.01,29.98,10,10,10,21,5,25,0,2,'',339,94041); +INSERT INTO "weather" VALUES('9/30/2014',76,66,56,63,58,56,100,77,54,30.02,29.95,29.86,10,10,10,16,4,18,0,0,'',346,94041); +INSERT INTO "weather" VALUES('10/1/2014',86,71,56,59,48,37,100,59,18,29.98,29.9,29.87,10,10,10,14,4,17,0,0,'',328,94041); +INSERT INTO "weather" VALUES('10/2/2014',91,73,54,58,44,36,62,40,17,30.05,30,29.96,10,10,10,12,3,13,0,0,'',336,94041); +INSERT INTO "weather" VALUES('10/3/2014',93,76,59,56,48,42,60,39,18,30.11,30.05,30,10,10,10,10,3,14,0,0,'',339,94041); +INSERT INTO "weather" VALUES('10/4/2014',91,74,57,57,46,36,55,35,15,30.06,30,29.93,10,10,10,12,3,16,0,0,'',343,94041); +INSERT INTO "weather" VALUES('10/5/2014',88,73,58,57,49,42,73,47,21,29.98,29.93,29.88,10,10,10,12,3,14,0,0,'',327,94041); +INSERT INTO "weather" VALUES('10/6/2014',85,71,57,63,56,44,93,59,25,29.95,29.91,29.85,10,10,10,12,3,20,0,0,'',327,94041); +INSERT INTO "weather" VALUES('10/7/2014',77,67,57,63,59,56,100,75,50,29.96,29.91,29.86,10,9,5,14,4,16,0,1,'',329,94041); +INSERT INTO "weather" VALUES('10/8/2014',82,69,56,63,58,54,100,73,45,29.94,29.91,29.86,10,10,8,14,3,17,0,0,'',336,94041); +INSERT INTO "weather" VALUES('10/9/2014',72,65,57,61,58,56,100,83,66,30.02,29.97,29.93,10,10,7,12,4,14,0,2,'',347,94041); +INSERT INTO "weather" VALUES('10/10/2014',68,63,57,61,57,55,100,82,63,30.09,30.04,30.01,10,10,10,13,5,17,0,4,'',356,94041); +INSERT INTO "weather" VALUES('10/11/2014',76,66,55,62,56,51,100,73,46,30.09,30.04,29.99,10,10,10,14,3,16,0,2,'',348,94041); +INSERT INTO "weather" VALUES('10/12/2014',89,72,55,60,46,29,100,56,11,30.02,29.96,29.9,10,10,10,13,3,15,0,0,'',295,94041); +INSERT INTO "weather" VALUES('10/13/2014',85,70,55,62,45,31,97,57,16,29.98,29.95,29.92,10,10,10,17,5,21,0,0,'',335,94041); +INSERT INTO "weather" VALUES('10/14/2014',73,65,56,59,55,51,100,75,49,29.96,29.89,29.83,10,10,8,20,7,29,0,3,'',171,94041); +INSERT INTO "weather" VALUES('10/15/2014',74,67,60,60,55,50,84,64,44,30.04,29.99,29.88,10,10,10,20,5,23,'T',3,'',328,94041); +INSERT INTO "weather" VALUES('10/16/2014',73,64,55,53,47,42,86,62,37,30.06,30.01,29.95,10,10,10,14,4,16,0,0,'',326,94041); +INSERT INTO "weather" VALUES('10/17/2014',77,65,52,54,48,42,83,60,36,30,29.97,29.93,10,10,10,13,3,17,0,1,'',134,94041); +INSERT INTO "weather" VALUES('10/18/2014',79,68,56,65,56,49,93,65,36,30.01,29.96,29.89,10,10,10,14,4,16,0,0,'',347,94041); +INSERT INTO "weather" VALUES('10/19/2014',74,65,56,64,60,56,100,79,57,29.95,29.91,29.87,10,10,10,21,5,23,0,2,'',349,94041); +INSERT INTO "weather" VALUES('10/20/2014',70,64,57,63,58,49,93,73,52,30.09,29.99,29.92,10,9,4,14,4,18,0.02,5,'Rain',272,94041); +INSERT INTO "weather" VALUES('10/21/2014',72,62,51,54,48,43,93,64,35,30.13,30.08,30.03,10,10,10,15,4,20,0,0,'',306,94041); +INSERT INTO "weather" VALUES('10/22/2014',73,62,51,60,51,46,89,65,41,30.11,30.06,30.02,10,10,10,13,4,15,0,0,'',349,94041); +INSERT INTO "weather" VALUES('10/23/2014',74,66,57,63,55,50,93,69,44,30.1,30.04,29.98,10,10,10,12,3,14,0,1,'',334,94041); +INSERT INTO "weather" VALUES('10/24/2014',73,64,54,59,56,54,100,77,53,29.99,29.95,29.89,10,10,10,17,6,21,0,1,'',44,94041); +INSERT INTO "weather" VALUES('10/25/2014',72,65,58,61,57,51,100,75,49,30.17,30.04,29.93,10,9,2,17,7,25,0.1,4,'Rain',203,94041); +INSERT INTO "weather" VALUES('10/26/2014',69,62,54,56,49,39,93,63,33,30.19,30.14,30.07,10,10,10,15,6,21,0,1,'',292,94041); +INSERT INTO "weather" VALUES('10/27/2014',70,59,48,53,48,42,100,69,37,30.09,30.06,30.02,10,10,10,14,3,17,0,0,'',330,94041); +INSERT INTO "weather" VALUES('10/28/2014',72,61,49,56,49,45,93,66,38,30.15,30.1,30.07,10,10,10,12,2,15,0,0,'',330,94041); +INSERT INTO "weather" VALUES('10/29/2014',80,66,51,54,50,47,93,63,32,30.14,30.06,29.99,10,10,10,12,1,13,0,0,'',180,94041); +INSERT INTO "weather" VALUES('10/30/2014',79,68,56,60,53,47,93,65,36,29.99,29.93,29.89,10,10,10,14,4,18,0,0,'',7,94041); +INSERT INTO "weather" VALUES('10/31/2014',65,60,55,61,57,53,100,89,78,29.94,29.85,29.76,10,9,2,14,5,18,0.14,6,'Rain',139,94041); +INSERT INTO "weather" VALUES('11/1/2014',64,57,50,54,49,42,100,74,48,30.06,29.92,29.77,10,10,6,13,4,20,0.03,3,'Rain',244,94041); +INSERT INTO "weather" VALUES('11/2/2014',67,57,46,52,45,40,100,69,37,30.19,30.14,30.07,10,10,10,14,3,20,0,0,'',312,94041); +INSERT INTO "weather" VALUES('11/3/2014',70,57,44,57,45,34,93,60,26,30.29,30.24,30.19,10,10,10,13,2,15,0,0,'',336,94041); +INSERT INTO "weather" VALUES('11/4/2014',72,59,46,51,47,44,96,69,41,30.34,30.28,30.24,10,10,10,12,2,14,0,0,'',341,94041); +INSERT INTO "weather" VALUES('11/5/2014',77,63,49,51,48,45,89,61,33,30.24,30.16,30.08,10,10,10,9,1,12,0,0,'',350,94041); +INSERT INTO "weather" VALUES('11/6/2014',74,63,52,61,53,47,93,66,38,30.25,30.2,30.16,10,10,6,13,3,18,0,0,'',357,94041); +INSERT INTO "weather" VALUES('11/7/2014',69,61,52,62,56,50,100,84,68,30.25,30.19,30.12,10,6,0,10,3,24,0.01,3,'Fog',350,94041); +INSERT INTO "weather" VALUES('11/8/2014',74,62,50,59,53,50,100,75,49,30.15,30.09,30.02,10,9,2,7,2,13,0,1,'',331,94041); +INSERT INTO "weather" VALUES('11/9/2014',75,63,51,60,54,48,100,72,44,30.04,29.95,29.84,10,9,1,12,2,15,0,1,'',325,94041); +INSERT INTO "weather" VALUES('11/10/2014',69,60,51,61,55,51,100,82,63,29.87,29.83,29.81,10,6,0,13,3,17,0.01,4,'Fog',312,94041); +INSERT INTO "weather" VALUES('11/11/2014',69,60,51,56,49,46,93,69,44,30,29.93,29.88,10,10,10,12,1,14,0,5,'',312,94041); +INSERT INTO "weather" VALUES('11/12/2014',67,62,57,49,46,44,72,59,45,30.05,30.01,29.97,10,10,4,10,3,14,0.03,6,'Rain',65,94041); +INSERT INTO "weather" VALUES('11/13/2014',67,61,55,61,57,54,100,84,68,30.1,30.02,29.96,10,9,2,16,6,23,0.1,5,'Rain',145,94041); +INSERT INTO "weather" VALUES('11/14/2014',66,59,51,57,52,48,100,78,56,30.13,30.11,30.08,10,10,10,13,3,28,0,2,'',331,94041); +INSERT INTO "weather" VALUES('11/15/2014',66,57,48,55,49,46,93,73,52,30.2,30.15,30.11,10,10,10,14,3,17,0,2,'',356,94041); +INSERT INTO "weather" VALUES('11/16/2014',65,57,49,51,33,16,93,54,15,30.27,30.24,30.2,10,10,10,18,5,21,0.01,0,'',338,94041); +INSERT INTO "weather" VALUES('11/17/2014',67,56,45,43,36,29,76,51,26,30.26,30.19,30.12,10,10,10,12,2,14,0,0,'',348,94041); +INSERT INTO "weather" VALUES('11/18/2014',66,56,45,45,41,32,80,56,32,30.16,30.11,30.06,10,10,10,9,2,10,0,0,'',299,94041); +INSERT INTO "weather" VALUES('11/19/2014',68,61,53,58,49,30,100,66,31,30.15,30.08,30.02,10,9,5,18,6,28,0.06,6,'Rain',150,94041); +INSERT INTO "weather" VALUES('11/20/2014',61,56,51,57,55,51,100,89,78,30.14,30.08,30,10,9,2,13,2,15,0.14,5,'Rain',136,94041); +INSERT INTO "weather" VALUES('11/21/2014',64,56,48,54,51,46,100,76,52,30.15,30.11,30.05,10,10,4,8,2,9,0,5,'',349,94041); +INSERT INTO "weather" VALUES('11/22/2014',68,61,53,60,54,48,90,77,63,30.27,30.14,30.09,10,10,10,16,7,25,0.01,5,'',152,94041); +INSERT INTO "weather" VALUES('11/23/2014',66,56,45,50,44,38,96,67,37,30.35,30.31,30.26,10,10,10,10,3,12,0,0,'',296,94041); +INSERT INTO "weather" VALUES('11/24/2014',68,55,42,48,40,34,92,61,29,30.43,30.38,30.34,10,10,10,9,3,12,0,0,'',304,94041); +INSERT INTO "weather" VALUES('11/25/2014',67,55,43,50,42,34,86,60,34,30.48,30.41,30.35,10,10,9,7,1,8,0,0,'',331,94041); +INSERT INTO "weather" VALUES('11/26/2014',70,57,43,50,45,42,93,65,37,30.34,30.27,30.22,10,9,6,9,1,10,0,0,'',345,94041); +INSERT INTO "weather" VALUES('11/27/2014',69,57,45,52,47,43,93,68,42,30.21,30.14,30.07,10,9,5,6,1,10,0,0,'',352,94041); +INSERT INTO "weather" VALUES('11/28/2014',65,54,43,53,47,41,100,72,44,30.08,30,29.88,10,6,0,12,3,15,0,5,'Fog',224,94041); +INSERT INTO "weather" VALUES('11/29/2014',63,58,53,58,54,50,100,89,78,29.88,29.84,29.77,10,9,5,13,6,17,0.34,6,'Rain',140,94041); +INSERT INTO "weather" VALUES('11/30/2014',63,58,52,58,54,46,100,84,67,30.04,29.88,29.76,10,8,2,10,3,15,0.47,5,'Rain',149,94041); +INSERT INTO "weather" VALUES('12/1/2014',69,62,54,63,56,53,100,82,63,30.13,30.04,29.96,10,8,1,12,3,18,0.12,3,'Rain',135,94041); +INSERT INTO "weather" VALUES('12/2/2014',63,59,54,59,56,53,100,92,84,29.94,29.8,29.68,10,6,1,15,6,22,1.25,8,'Rain',123,94041); +INSERT INTO "weather" VALUES('12/3/2014',64,61,58,61,58,56,97,91,84,29.91,29.78,29.72,10,6,1,22,9,32,1.85,7,'Rain',132,94041); +INSERT INTO "weather" VALUES('12/4/2014',68,62,56,59,56,54,100,80,59,30.04,29.96,29.9,10,10,9,12,4,17,0.01,4,'Rain',150,94041); +INSERT INTO "weather" VALUES('12/5/2014',66,60,54,61,57,54,100,87,73,30.1,30.04,30,10,10,9,13,5,18,0.02,5,'Rain',144,94041); +INSERT INTO "weather" VALUES('12/6/2014',69,64,58,60,57,54,100,79,57,30.24,30.19,30.1,10,9,2,13,4,17,0.22,5,'Rain',143,94041); +INSERT INTO "weather" VALUES('12/7/2014',63,58,52,58,55,51,100,89,78,30.23,30.19,30.15,10,7,1,10,2,13,0.01,3,'',126,94041); +INSERT INTO "weather" VALUES('12/8/2014',71,61,50,58,54,49,100,77,53,30.19,30.17,30.12,10,10,10,12,2,13,0.01,1,'',6,94041); +INSERT INTO "weather" VALUES('12/9/2014',64,59,53,58,56,53,100,89,78,30.22,30.15,30.09,10,9,7,9,2,14,0,3,'',321,94041); +INSERT INTO "weather" VALUES('12/10/2014',66,61,55,57,55,51,100,82,63,30.09,29.95,29.76,10,9,5,22,7,33,0.01,3,'',147,94041); +INSERT INTO "weather" VALUES('12/11/2014',65,58,51,58,53,49,100,78,56,29.75,29.65,29.57,10,5,1,23,7,33,3.36,8,'Rain',83,94041); +INSERT INTO "weather" VALUES('12/12/2014',57,53,49,52,49,47,96,84,72,30.11,29.87,29.67,10,9,5,6,1,7,0.18,6,'Rain',125,94041); +INSERT INTO "weather" VALUES('12/13/2014',57,50,42,50,46,42,100,86,72,30.25,30.19,30.11,10,9,2,8,2,9,0.02,2,'Rain',333,94041); +INSERT INTO "weather" VALUES('12/14/2014',61,53,44,48,44,43,93,74,55,30.16,30.07,30,10,10,6,14,4,18,0.07,3,'Rain',129,94041); +INSERT INTO "weather" VALUES('12/15/2014',56,53,50,52,49,47,96,84,72,29.99,29.91,29.84,10,9,4,21,10,30,0.71,6,'Rain',129,94041); +INSERT INTO "weather" VALUES('12/16/2014',62,56,50,52,49,46,93,75,56,29.98,29.93,29.84,10,10,6,16,7,26,0.33,5,'Rain',145,94041); +INSERT INTO "weather" VALUES('12/17/2014',58,53,48,52,48,45,100,84,67,30.11,30.05,29.97,10,10,8,14,5,26,0.16,6,'Rain',139,94041); +INSERT INTO "weather" VALUES('12/18/2014',63,58,52,49,48,46,89,75,60,30.2,30.15,30.08,10,10,10,16,7,25,0,5,'',142,94041); +INSERT INTO "weather" VALUES('12/19/2014',59,56,53,54,52,48,93,83,72,30.19,30.16,30.13,10,10,5,20,8,25,0.13,8,'Rain',131,94041); +INSERT INTO "weather" VALUES('12/20/2014',61,58,55,56,53,51,93,83,72,30.27,30.2,30.14,10,8,3,7,1,9,0.01,8,'',75,94041); +INSERT INTO "weather" VALUES('12/21/2014',65,61,56,58,55,52,93,83,72,30.34,30.3,30.26,10,10,7,14,4,16,0,7,'',352,94041); +INSERT INTO "weather" VALUES('12/22/2014',64,58,52,57,55,50,93,80,67,30.31,30.26,30.2,10,7,0,12,2,14,0,5,'Fog',332,94041); +INSERT INTO "weather" VALUES('12/23/2014',69,59,49,53,49,47,96,73,49,30.24,30.18,30.14,10,10,10,10,3,14,0,0,'',307,94041); +INSERT INTO "weather" VALUES('12/24/2014',62,55,48,54,48,37,100,82,63,30.14,30.07,29.98,10,6,0,21,5,29,0.06,5,'Fog-Rain',291,94041); +INSERT INTO "weather" VALUES('12/25/2014',57,51,44,40,36,33,71,56,40,30.17,30.12,30.07,10,10,10,18,8,26,'T',0,'',303,94041); +INSERT INTO "weather" VALUES('12/26/2014',59,50,40,38,32,28,76,55,33,30.29,30.2,30.12,10,10,10,15,4,18,0,0,'',307,94041); +INSERT INTO "weather" VALUES('12/27/2014',55,45,35,37,33,30,82,60,38,30.4,30.35,30.3,10,10,10,7,1,8,0,0,'',2,94041); +INSERT INTO "weather" VALUES('12/28/2014',58,48,38,41,39,34,92,72,51,30.38,30.3,30.26,10,10,10,9,2,10,0,2,'',330,94041); +INSERT INTO "weather" VALUES('12/29/2014',56,49,41,43,40,36,89,74,59,30.25,30.19,30.13,10,10,10,14,3,24,0,2,'',337,94041); +INSERT INTO "weather" VALUES('12/30/2014',55,46,37,37,26,14,85,55,24,30.26,30.18,30.13,10,10,10,31,12,40,0,0,'',351,94041); +INSERT INTO "weather" VALUES('12/31/2014',57,47,37,23,15,8,54,35,15,30.29,30.19,30.09,10,10,10,23,5,26,0,0,'',335,94041); +INSERT INTO "weather" VALUES('1/1/2015',54,43,32,28,24,16,64,45,26,30.19,30.14,30.09,10,10,10,14,2,16,0,0,'',311,94041); +INSERT INTO "weather" VALUES('1/2/2015',53,43,32,35,29,25,75,57,38,30.25,30.19,30.14,10,10,9,8,2,9,0,0,'',337,94041); +INSERT INTO "weather" VALUES('1/3/2015',55,43,31,36,32,28,82,62,41,30.34,30.27,30.21,10,9,8,9,1,22,0,0,'',349,94041); +INSERT INTO "weather" VALUES('1/4/2015',56,46,36,40,36,32,92,70,47,30.44,30.39,30.34,9,8,6,9,2,10,'T',0,'Rain',348,94041); +INSERT INTO "weather" VALUES('1/5/2015',60,49,38,40,37,34,85,65,44,30.41,30.33,30.25,10,8,6,12,2,18,0,0,'',326,94041); +INSERT INTO "weather" VALUES('1/6/2015',63,52,41,42,39,36,82,64,46,30.3,30.23,30.18,10,8,6,8,1,10,'T',0,'',338,94041); +INSERT INTO "weather" VALUES('1/7/2015',67,53,39,44,41,37,86,63,40,30.25,30.16,30.09,10,10,8,6,1,16,0,0,'',346,94041); +INSERT INTO "weather" VALUES('1/8/2015',59,52,44,46,44,40,86,74,62,30.12,30.06,30.02,10,9,7,7,1,7,0,0,'',348,94041); +INSERT INTO "weather" VALUES('1/9/2015',65,56,47,50,46,44,93,71,48,30.05,30.02,29.98,10,8,5,8,1,9,0,0,'',335,94041); +INSERT INTO "weather" VALUES('1/10/2015',60,53,46,50,47,45,93,79,64,30.06,30.01,29.97,10,7,5,8,2,8,0,2,'',301,94041); +INSERT INTO "weather" VALUES('1/11/2015',56,49,42,49,46,39,100,89,77,30.2,30.11,30.03,10,4,0,9,1,13,0,4,'Fog',346,94041); +INSERT INTO "weather" VALUES('1/12/2015',60,51,41,49,45,39,96,80,64,30.29,30.23,30.21,10,9,7,10,1,12,0.01,0,'',343,94041); +INSERT INTO "weather" VALUES('1/13/2015',64,53,41,48,42,37,100,70,39,30.24,30.19,30.12,10,6,0,22,3,25,0,1,'Fog-Rain',9,94041); +INSERT INTO "weather" VALUES('1/14/2015',63,50,37,46,40,33,85,66,47,30.31,30.23,30.18,10,9,6,8,2,9,0,0,'',339,94041); +INSERT INTO "weather" VALUES('1/15/2015',62,51,39,48,44,38,89,70,51,30.35,30.29,30.25,9,6,4,12,2,14,0,0,'',337,94041); +INSERT INTO "weather" VALUES('1/16/2015',64,54,44,51,47,43,93,75,56,30.32,30.27,30.23,10,6,4,8,2,10,0,4,'',314,94041); +INSERT INTO "weather" VALUES('1/17/2015',61,54,47,51,48,45,93,81,69,30.31,30.27,30.21,10,6,2,8,2,10,0,3,'',306,94041); +INSERT INTO "weather" VALUES('1/18/2015',61,55,48,53,50,46,93,86,78,30.35,30.29,30.27,10,6,2,10,1,12,0,3,'',358,94041); +INSERT INTO "weather" VALUES('1/19/2015',61,54,46,54,51,44,100,82,64,30.31,30.26,30.19,10,7,0,9,3,12,0,6,'Fog',332,94041); +INSERT INTO "weather" VALUES('1/20/2015',62,54,45,49,46,40,100,75,49,30.19,30.14,30.07,10,7,0,7,2,'',0,4,'Fog',314,94041); +INSERT INTO "weather" VALUES('1/21/2015',62,52,42,45,40,38,89,68,46,30.2,30.15,30.1,10,10,9,12,3,28,0,0,'',325,94041); +INSERT INTO "weather" VALUES('1/22/2015',58,50,41,43,40,36,83,70,57,30.37,30.29,30.21,10,10,8,12,3,15,0,0,'',347,94041); +INSERT INTO "weather" VALUES('1/23/2015',68,54,40,43,40,37,89,62,34,30.38,30.32,30.25,10,10,7,9,3,13,0,0,'',321,94041); +INSERT INTO "weather" VALUES('1/24/2015',70,59,48,46,40,33,77,52,26,30.25,30.19,30.11,10,10,10,16,5,21,0,0,'',325,94041); +INSERT INTO "weather" VALUES('1/25/2015',65,55,44,45,42,40,89,65,40,30.16,30.1,30.02,10,10,8,9,3,12,0,0,'',308,94041); +INSERT INTO "weather" VALUES('1/26/2015',66,54,42,46,42,37,83,64,44,30.06,30.02,29.97,10,10,10,8,1,9,0,0,'',8,94041); +INSERT INTO "weather" VALUES('1/27/2015',69,60,50,48,44,41,77,57,37,30.27,30.18,30.04,10,10,10,14,5,18,0,5,'',48,94041); +INSERT INTO "weather" VALUES('1/28/2015',67,56,44,50,45,42,92,69,45,30.29,30.23,30.17,10,10,7,8,2,10,0,0,'',336,94041); +INSERT INTO "weather" VALUES('1/29/2015',67,56,45,51,47,42,96,74,52,30.18,30.14,30.08,10,8,1,12,2,13,0,3,'',5,94041); +INSERT INTO "weather" VALUES('1/30/2015',64,56,48,51,48,45,93,77,60,30.07,30.01,29.91,10,8,5,13,2,17,0,3,'',346,94041); +INSERT INTO "weather" VALUES('1/31/2015',73,59,45,45,34,25,93,55,16,30.07,29.99,29.93,10,10,10,9,2,13,0,0,'',286,94041); +INSERT INTO "weather" VALUES('2/1/2015',66,53,40,47,40,31,83,59,34,30.18,30.14,30.07,10,10,10,12,1,15,0,0,'',345,94041); +INSERT INTO "weather" VALUES('2/2/2015',69,57,44,48,45,40,82,66,49,30.21,30.15,30.09,10,9,6,9,2,10,0,0,'',340,94041); +INSERT INTO "weather" VALUES('2/3/2015',71,60,48,51,48,44,86,67,47,30.14,30.1,30.06,10,8,4,10,1,12,0,0,'',347,94041); +INSERT INTO "weather" VALUES('2/4/2015',65,56,47,53,49,44,93,78,63,30.1,30.06,30.03,10,9,5,12,2,16,0,0,'',328,94041); +INSERT INTO "weather" VALUES('2/5/2015',65,57,49,50,47,45,89,72,55,30.07,29.99,29.92,10,10,9,17,6,28,0,0,'',162,94041); +INSERT INTO "weather" VALUES('2/6/2015',64,62,59,58,54,43,90,71,51,29.95,29.88,29.84,10,7,2,26,14,36,1.3,6,'Rain',143,94041); +INSERT INTO "weather" VALUES('2/7/2015',69,64,58,61,57,54,90,79,68,30.09,30.04,29.97,10,7,1,15,5,25,0.37,6,'Rain',142,94041); +INSERT INTO "weather" VALUES('2/8/2015',66,62,57,62,55,49,93,78,63,30.09,29.97,29.91,10,8,2,20,9,29,0.72,6,'Rain',157,94041); +INSERT INTO "weather" VALUES('2/9/2015',67,60,52,54,50,46,86,69,52,30.28,30.22,30.08,10,10,10,16,5,24,'T',3,'',266,94041); +INSERT INTO "weather" VALUES('2/10/2015',64,55,45,47,45,42,93,72,51,30.24,30.18,30.1,10,10,10,17,3,22,0.01,0,'',323,94041); +INSERT INTO "weather" VALUES('2/11/2015',68,56,43,49,45,41,89,67,45,30.2,30.16,30.12,10,10,10,9,2,12,0,0,'',317,94041); +INSERT INTO "weather" VALUES('2/12/2015',73,60,47,53,49,45,86,65,44,30.23,30.18,30.14,10,10,10,9,2,12,0,0,'',346,94041); +INSERT INTO "weather" VALUES('2/13/2015',75,62,48,55,49,45,89,68,46,30.18,30.12,30.07,10,10,10,10,1,13,0,0,'',351,94041); +INSERT INTO "weather" VALUES('2/14/2015',72,60,47,55,50,44,93,73,53,30.14,30.08,30.04,10,10,10,9,2,15,0,0,'',347,94041); +INSERT INTO "weather" VALUES('2/15/2015',75,60,45,54,45,41,82,57,31,30.07,30.03,29.98,10,10,10,8,2,10,0,0,'',351,94041); +INSERT INTO "weather" VALUES('2/16/2015',72,60,47,54,48,41,93,67,41,30.06,30.01,29.96,10,9,6,13,4,14,0,1,'',354,94041); +INSERT INTO "weather" VALUES('2/17/2015',57,56,54,53,51,47,89,83,77,30.2,30.14,30.06,10,7,4,9,4,12,0,8,'',353,94041); +INSERT INTO "weather" VALUES('2/18/2015',64,58,52,52,49,46,93,78,63,30.25,30.19,30.13,10,10,10,10,2,15,0,4,'',349,94041); +INSERT INTO "weather" VALUES('2/19/2015',64,58,52,52,51,50,93,78,63,30.18,30.13,30.06,10,8,3,9,2,13,0,5,'',11,94041); +INSERT INTO "weather" VALUES('2/20/2015',71,62,52,54,50,46,93,69,44,30.1,30.03,29.95,10,8,3,10,2,14,0,3,'',351,94041); +INSERT INTO "weather" VALUES('2/21/2015',71,59,46,50,46,39,86,60,33,29.99,29.92,29.85,10,10,10,15,3,20,0,1,'',3,94041); +INSERT INTO "weather" VALUES('2/22/2015',66,57,48,49,38,24,86,56,26,29.91,29.87,29.84,10,10,8,20,7,25,0,1,'',3,94041); +INSERT INTO "weather" VALUES('2/23/2015',62,54,46,30,24,19,46,35,23,30.25,30.08,29.91,10,10,10,23,9,28,0,0,'',11,94041); +INSERT INTO "weather" VALUES('2/24/2015',67,53,38,44,31,18,70,43,16,30.38,30.32,30.27,10,10,10,13,3,16,0,0,'',343,94041); +INSERT INTO "weather" VALUES('2/25/2015',66,53,39,50,42,32,83,60,37,30.32,30.22,30.11,10,10,10,17,4,21,0,0,'',1,94041); +INSERT INTO "weather" VALUES('2/26/2015',69,57,45,52,46,42,93,69,45,30.11,30.03,29.94,10,10,10,17,4,20,0,0,'',348,94041); +INSERT INTO "weather" VALUES('2/27/2015',63,58,52,50,46,41,83,67,51,29.94,29.86,29.78,10,10,10,17,8,28,0,3,'',294,94041); +INSERT INTO "weather" VALUES('2/28/2015',61,53,45,46,44,39,86,70,53,29.94,29.82,29.76,10,10,7,16,3,22,0.05,3,'Rain',264,94041); +INSERT INTO "weather" VALUES('3/1/2015',64,52,40,46,40,36,100,68,36,30.02,29.97,29.92,10,10,10,13,4,16,0,0,'',340,94041); +INSERT INTO "weather" VALUES('3/2/2015',61,52,42,45,41,37,83,65,46,30.01,29.88,29.82,10,10,10,12,4,15,0.05,2,'Rain',191,94041); +INSERT INTO "weather" VALUES('3/3/2015',64,53,41,49,44,39,89,69,48,30.08,30.03,29.98,10,10,10,15,4,17,0,0,'',351,94041); +INSERT INTO "weather" VALUES('3/4/2015',67,55,43,46,39,32,89,59,28,30.25,30.15,30.06,10,10,10,8,3,'',0,0,'',5,94041); +INSERT INTO "weather" VALUES('3/5/2015',71,57,43,45,39,37,76,54,31,30.36,30.3,30.25,10,10,10,9,3,'',0,0,'',333,94041); +INSERT INTO "weather" VALUES('3/6/2015',73,58,42,49,42,37,76,56,35,30.32,30.24,30.16,10,10,10,12,3,'',0,0,'',1,94041); +INSERT INTO "weather" VALUES('3/7/2015',74,59,44,51,43,36,77,55,33,30.15,30.09,30.01,10,10,10,10,3,14,0,0,'',338,94041); +INSERT INTO "weather" VALUES('3/8/2015',68,60,51,52,49,46,89,69,48,30.14,30.07,30,10,9,6,13,5,17,0,3,'',339,94041); +INSERT INTO "weather" VALUES('3/9/2015',69,60,51,53,50,48,89,72,55,30.09,30.02,29.94,10,10,7,10,3,13,0,3,'',350,94041); +INSERT INTO "weather" VALUES('3/10/2015',67,59,51,54,52,48,93,80,67,30.03,29.96,29.93,10,8,3,17,4,22,0,3,'',347,94041); +INSERT INTO "weather" VALUES('3/11/2015',70,62,54,54,52,46,93,69,45,30.27,30.13,30.02,10,9,4,20,6,22,0.08,6,'Rain',6,94041); +INSERT INTO "weather" VALUES('3/12/2015',73,62,51,53,50,46,89,69,49,30.3,30.23,30.15,10,10,10,14,4,16,0,2,'',305,94041); +INSERT INTO "weather" VALUES('3/13/2015',76,63,50,55,51,48,86,62,38,30.2,30.15,30.08,10,10,10,14,3,17,0,0,'',342,94041); +INSERT INTO "weather" VALUES('3/14/2015',83,69,54,59,53,40,86,60,33,30.14,30.06,29.97,10,10,10,12,3,14,0,0,'',5,94041); +INSERT INTO "weather" VALUES('3/15/2015',74,66,57,53,43,37,58,45,31,30.1,30.04,30,10,10,10,23,7,25,0,0,'',11,94041); +INSERT INTO "weather" VALUES('3/16/2015',72,63,53,52,46,40,69,57,44,30.07,30.04,30.01,10,10,10,14,3,22,0,0,'',334,94041); +INSERT INTO "weather" VALUES('3/17/2015',68,60,52,53,48,42,86,64,42,30.16,30.1,30.05,10,10,10,18,7,22,0,0,'',334,94041); +INSERT INTO "weather" VALUES('3/18/2015',71,60,48,52,47,42,80,60,40,30.1,30.06,30.01,10,10,10,18,5,22,0,0,'',345,94041); +INSERT INTO "weather" VALUES('3/19/2015',78,64,49,53,48,39,83,55,27,30.09,30.06,30,10,10,10,15,4,18,0,0,'',344,94041); +INSERT INTO "weather" VALUES('3/20/2015',70,60,49,50,46,41,80,58,36,30.19,30.12,30.06,10,10,10,18,4,22,0,0,'',348,94041); +INSERT INTO "weather" VALUES('3/21/2015',71,61,50,54,50,43,86,67,47,30.2,30.16,30.11,10,10,10,17,5,22,0,2,'',340,94041); +INSERT INTO "weather" VALUES('3/22/2015',69,62,55,55,50,45,86,67,48,30.22,30.17,30.14,10,10,5,18,6,24,0.03,5,'Rain',205,94041); +INSERT INTO "weather" VALUES('3/23/2015',65,59,53,52,47,37,93,69,44,30.33,30.27,30.22,10,10,10,24,7,28,'T',3,'Rain',328,94041); +INSERT INTO "weather" VALUES('3/24/2015',67,59,50,53,48,42,77,68,58,30.33,30.29,30.24,10,10,10,17,7,21,0,2,'',341,94041); +INSERT INTO "weather" VALUES('3/25/2015',74,62,50,54,50,47,89,65,41,30.27,30.22,30.16,10,10,10,15,5,17,0,0,'',333,94041); +INSERT INTO "weather" VALUES('3/26/2015',84,68,52,58,52,47,89,61,33,30.19,30.13,30.06,10,10,10,12,3,13,0,0,'',355,94041); +INSERT INTO "weather" VALUES('3/27/2015',67,61,55,56,53,48,93,81,68,30.2,30.15,30.1,10,10,10,20,7,23,0,0,'',336,94041); +INSERT INTO "weather" VALUES('3/28/2015',78,64,50,53,49,45,89,61,32,30.21,30.15,30.08,10,10,10,16,5,21,0,0,'',346,94041); +INSERT INTO "weather" VALUES('3/29/2015',77,62,47,54,50,45,83,60,36,30.14,30.09,30.02,10,10,10,17,3,21,0,0,'',342,94041); +INSERT INTO "weather" VALUES('3/30/2015',67,59,51,54,49,44,83,64,45,30.12,30.07,30.03,10,10,10,23,6,25,0,0,'',343,94041); +INSERT INTO "weather" VALUES('3/31/2015',68,59,50,50,43,37,77,57,37,30.21,30.17,30.12,10,10,10,18,8,28,0,1,'',311,94041); +INSERT INTO "weather" VALUES('4/1/2015',66,57,47,41,37,32,61,48,34,30.22,30.16,30.11,10,10,10,21,7,24,0,0,'',304,94041); +INSERT INTO "weather" VALUES('4/2/2015',70,58,45,41,33,25,71,46,20,30.22,30.18,30.14,10,10,10,16,5,22,0,0,'',315,94041); +INSERT INTO "weather" VALUES('4/3/2015',69,57,44,48,36,26,66,46,25,30.24,30.18,30.12,10,10,10,20,5,23,0,0,'',344,94041); +INSERT INTO "weather" VALUES('4/4/2015',67,55,43,44,37,33,71,51,31,30.14,30.07,30.01,10,10,10,23,7,26,0,0,'',325,94041); +INSERT INTO "weather" VALUES('4/5/2015',62,53,44,46,39,35,76,58,39,30.01,29.95,29.92,10,10,7,18,5,24,0.03,2,'Rain',246,94041); +INSERT INTO "weather" VALUES('4/6/2015',63,52,41,43,37,33,76,55,34,30,29.95,29.88,10,10,10,15,7,20,0,1,'',153,94041); +INSERT INTO "weather" VALUES('4/7/2015',61,55,48,50,43,37,93,68,42,30.09,29.92,29.81,10,8,2,18,7,28,0.57,4,'Rain',216,94041); +INSERT INTO "weather" VALUES('4/8/2015',64,56,48,44,42,39,66,55,43,30.2,30.14,30.09,10,10,10,15,5,20,0,3,'',313,94041); +INSERT INTO "weather" VALUES('4/9/2015',69,57,45,46,41,35,82,57,32,30.11,30.03,29.95,10,10,10,15,4,18,0,0,'',344,94041); +INSERT INTO "weather" VALUES('4/10/2015',68,58,47,47,43,36,80,61,42,30.09,30.04,30,10,10,10,17,6,21,0,0,'',352,94041); +INSERT INTO "weather" VALUES('4/11/2015',72,60,47,50,44,36,83,61,38,30.11,30.07,30.03,10,10,10,20,5,23,0,0,'',341,94041); +INSERT INTO "weather" VALUES('4/12/2015',76,62,48,52,47,44,83,58,33,30.07,30.03,29.96,10,10,10,15,5,18,0,0,'',350,94041); +INSERT INTO "weather" VALUES('4/13/2015',67,60,52,50,47,39,83,63,42,30.19,30.1,30.03,10,10,10,24,8,28,0,2,'',334,94041); +INSERT INTO "weather" VALUES('4/14/2015',65,57,48,45,34,26,66,45,24,30.36,30.28,30.19,10,10,10,17,9,23,0,0,'',309,94041); +INSERT INTO "weather" VALUES('4/15/2015',73,61,49,43,36,31,66,44,22,30.25,30.13,30.02,10,10,10,15,5,21,0,0,'',311,94041); +INSERT INTO "weather" VALUES('4/16/2015',80,66,51,42,33,26,50,33,16,30.09,30.03,29.97,10,10,10,13,5,18,0,0,'',337,94041); +INSERT INTO "weather" VALUES('4/17/2015',75,63,51,51,43,33,83,52,21,30.11,30.07,30.02,10,10,10,16,6,20,0,0,'',339,94041); +INSERT INTO "weather" VALUES('4/18/2015',71,62,53,54,50,46,86,67,47,30.08,30.02,29.94,10,9,6,16,5,18,0,2,'',334,94041); +INSERT INTO "weather" VALUES('4/19/2015',67,60,52,54,51,47,93,76,58,30,29.95,29.9,10,10,8,18,7,22,0,4,'',2,94041); +INSERT INTO "weather" VALUES('4/20/2015',65,60,54,52,51,48,86,75,63,29.92,29.89,29.85,10,10,10,18,7,22,0,4,'',6,94041); +INSERT INTO "weather" VALUES('4/21/2015',67,61,54,50,47,46,83,68,52,29.93,29.89,29.86,10,10,10,17,5,21,0,6,'',277,94041); +INSERT INTO "weather" VALUES('4/22/2015',70,60,50,52,48,45,83,68,52,29.92,29.88,29.86,10,10,10,18,6,22,0,2,'',45,94041); +INSERT INTO "weather" VALUES('4/23/2015',70,62,53,51,47,42,77,63,48,29.94,29.89,29.85,10,10,10,18,6,26,0,4,'',92,94041); +INSERT INTO "weather" VALUES('4/24/2015',67,59,50,49,42,34,77,56,34,30.05,30.01,29.94,10,10,10,17,7,23,'T',2,'',272,94041); +INSERT INTO "weather" VALUES('4/25/2015',64,58,52,54,48,38,93,71,48,30.1,29.99,29.91,10,10,5,18,7,22,0.28,4,'Rain',301,94041); +INSERT INTO "weather" VALUES('4/26/2015',72,60,48,50,43,35,80,57,33,30.18,30.12,30.08,10,10,10,20,7,25,0,0,'',350,94041); +INSERT INTO "weather" VALUES('4/27/2015',85,69,52,57,50,47,86,58,29,30.08,30.02,29.94,10,10,10,20,7,23,0,0,'',350,94041); +INSERT INTO "weather" VALUES('4/28/2015',75,65,54,53,51,49,93,70,47,30.08,30.05,30.02,10,10,10,21,8,23,0,3,'',10,94041); +INSERT INTO "weather" VALUES('4/29/2015',84,70,55,53,51,49,77,55,32,30.05,30,29.92,10,10,9,16,6,21,0,1,'',9,94041); +INSERT INTO "weather" VALUES('4/30/2015',99,74,57,51,46,40,72,44,15,29.91,29.85,29.78,10,10,9,10,4,'',0,0,'',338,94041); +INSERT INTO "weather" VALUES('5/1/2015','','','','','','','','','',29.94,29.87,29.83,10,10,10,16,6,22,0,0,'',340,94041); +INSERT INTO "weather" VALUES('5/2/2015','','','','','','','','','',29.92,29.89,29.84,10,10,9,14,7,18,0,3,'',356,94041); +INSERT INTO "weather" VALUES('5/3/2015','','','','','','','','','',29.94,29.9,29.87,10,10,10,17,7,'',0,2,'',23,94041); +INSERT INTO "weather" VALUES('5/4/2015',64,58,53,48,45,44,71,62,52,30.01,29.98,29.94,10,10,10,17,7,25,0,4,'',313,94041); +INSERT INTO "weather" VALUES('5/5/2015',68,59,50,48,43,40,80,60,40,30,29.96,29.92,10,10,10,17,6,24,0,0,'',257,94041); +INSERT INTO "weather" VALUES('5/6/2015',70,59,48,51,44,38,86,62,37,29.95,29.88,29.82,10,10,10,22,7,26,0,1,'',298,94041); +INSERT INTO "weather" VALUES('5/7/2015',62,56,49,48,45,38,86,65,44,29.83,29.79,29.76,10,10,6,12,4,16,0.04,3,'Rain',147,94041); +INSERT INTO "weather" VALUES('5/8/2015',71,60,49,52,48,45,83,64,45,30.05,29.9,29.78,10,10,10,20,8,23,0,1,'',12,94041); +INSERT INTO "weather" VALUES('5/9/2015',66,59,52,52,49,47,83,72,60,30.13,30.09,30.05,10,10,10,20,7,24,0,4,'',344,94041); +INSERT INTO "weather" VALUES('5/10/2015',66,60,53,51,49,46,83,72,60,30.11,30.06,30.01,10,10,10,20,7,23,0,3,'',352,94041); +INSERT INTO "weather" VALUES('5/11/2015',64,56,48,48,45,42,83,68,52,30.01,29.98,29.93,10,10,10,18,6,26,0,0,'',258,94041); +INSERT INTO "weather" VALUES('5/12/2015',65,57,48,42,39,35,71,54,36,30.01,29.97,29.92,10,10,10,18,7,26,0,0,'',290,94041); +INSERT INTO "weather" VALUES('5/13/2015',67,59,50,47,43,39,72,56,40,30,29.96,29.91,10,10,10,21,6,25,0,2,'',296,94041); +INSERT INTO "weather" VALUES('5/14/2015',67,60,52,53,49,44,86,67,48,29.91,29.84,29.81,10,8,1,15,4,18,0.6,6,'Rain',64,94041); +INSERT INTO "weather" VALUES('5/15/2015',67,58,49,50,47,45,93,71,48,30,29.94,29.87,10,10,10,22,6,37,0,4,'',313,94041); +INSERT INTO "weather" VALUES('5/16/2015',66,59,52,48,47,46,83,68,52,30.06,30.02,29.98,10,10,10,16,6,21,0,4,'',264,94041); +INSERT INTO "weather" VALUES('5/17/2015',65,60,55,49,47,45,72,62,52,30.09,30.06,30.03,10,10,10,16,6,22,0,5,'',300,94041); +INSERT INTO "weather" VALUES('5/18/2015',63,59,54,49,48,46,83,72,60,30.15,30.1,30.07,10,10,10,13,6,18,'T',8,'',295,94041); +INSERT INTO "weather" VALUES('5/19/2015',66,60,54,52,49,46,89,71,52,30.14,30.08,30.02,10,10,9,18,5,23,'T',6,'',306,94041); +INSERT INTO "weather" VALUES('5/20/2015',66,61,55,49,48,46,77,67,56,30.02,29.98,29.95,10,10,10,15,6,22,0,7,'',276,94041); +INSERT INTO "weather" VALUES('5/21/2015',67,61,55,53,50,48,80,66,52,30,29.96,29.94,10,10,10,16,6,22,0,7,'',301,94041); +INSERT INTO "weather" VALUES('5/22/2015',68,61,54,54,51,49,86,71,56,30.11,30.04,29.99,10,10,7,17,6,22,'T',7,'Rain',297,94041); +INSERT INTO "weather" VALUES('5/23/2015',66,60,54,50,48,46,77,67,56,30.13,30.09,30.06,10,10,10,16,7,22,0,4,'',262,94041); +INSERT INTO "weather" VALUES('5/24/2015',68,60,51,53,50,46,83,71,58,30.07,30.02,29.98,10,10,10,23,8,28,0,1,'',338,94041); +INSERT INTO "weather" VALUES('5/25/2015',66,61,55,53,50,48,83,71,58,30.01,29.98,29.95,10,10,10,23,9,26,0,4,'',323,94041); +INSERT INTO "weather" VALUES('5/26/2015',68,62,55,53,50,48,83,71,58,30.04,30.01,29.97,10,10,10,23,7,26,0,4,'',335,94041); +INSERT INTO "weather" VALUES('5/27/2015',69,62,55,53,51,48,86,71,55,30.05,30.03,30.01,10,10,10,22,8,26,0,4,'',345,94041); +INSERT INTO "weather" VALUES('5/28/2015',66,60,54,54,52,49,93,78,63,30.07,30.04,29.99,10,10,10,18,8,22,0,5,'',351,94041); +INSERT INTO "weather" VALUES('5/29/2015',65,60,55,54,52,50,93,80,67,30.02,29.99,29.95,10,10,10,18,8,22,0,4,'',360,94041); +INSERT INTO "weather" VALUES('5/30/2015',69,62,54,56,53,51,86,75,63,29.99,29.96,29.91,10,10,10,20,8,23,0,5,'',4,94041); +INSERT INTO "weather" VALUES('5/31/2015',68,62,55,54,51,47,86,72,58,30,29.94,29.92,10,10,10,22,8,25,0,4,'',351,94041); +INSERT INTO "weather" VALUES('6/1/2015',75,66,56,55,52,48,78,64,49,30.08,30.03,29.98,10,10,9,20,9,24,0,5,'',278,94041); +INSERT INTO "weather" VALUES('6/2/2015',70,64,57,56,52,47,86,68,49,30.1,30.05,29.99,10,10,10,23,8,26,0,2,'',343,94041); +INSERT INTO "weather" VALUES('6/3/2015',71,62,53,51,49,48,80,64,47,29.99,29.96,29.91,10,10,10,17,6,22,0,1,'',257,94041); +INSERT INTO "weather" VALUES('6/4/2015',75,64,52,56,51,47,86,66,46,29.9,29.85,29.81,10,10,10,17,6,21,0,0,'',12,94041); +INSERT INTO "weather" VALUES('6/5/2015',74,64,53,57,54,50,89,71,53,29.87,29.83,29.8,10,10,10,17,7,21,0,0,'',357,94041); +INSERT INTO "weather" VALUES('6/6/2015',74,66,57,58,55,52,90,72,53,29.94,29.89,29.86,10,10,10,17,8,22,0,3,'',8,94041); +INSERT INTO "weather" VALUES('6/7/2015',79,70,60,60,57,56,90,70,50,29.94,29.9,29.84,10,10,10,15,5,20,0,3,'',348,94041); +INSERT INTO "weather" VALUES('6/8/2015',91,76,61,63,59,55,84,59,34,29.89,29.84,29.75,10,10,10,15,6,18,0,0,'',348,94041); +INSERT INTO "weather" VALUES('6/9/2015',81,71,61,61,58,56,90,69,48,29.93,29.88,29.84,10,10,10,23,6,28,'T',1,'',336,94041); +INSERT INTO "weather" VALUES('6/10/2015',72,67,62,66,62,59,87,80,73,29.95,29.91,29.88,10,10,6,14,4,17,0.1,6,'Rain',329,94041); +INSERT INTO "weather" VALUES('6/11/2015',78,69,60,63,60,57,100,78,56,29.93,29.88,29.82,10,7,2,18,6,22,0.01,5,'',339,94041); +INSERT INTO "weather" VALUES('6/12/2015',81,71,60,61,58,57,90,68,45,29.86,29.82,29.76,10,10,8,15,5,20,0,1,'',343,94041); +INSERT INTO "weather" VALUES('6/13/2015',80,70,59,61,59,55,90,72,54,29.8,29.78,29.74,10,8,6,18,7,23,0,2,'',354,94041); +INSERT INTO "weather" VALUES('6/14/2015',72,64,56,56,54,50,87,74,61,29.88,29.82,29.77,10,10,8,21,8,25,0,2,'',17,94041); +INSERT INTO "weather" VALUES('6/15/2015',68,62,55,55,52,50,86,75,63,29.98,29.91,29.86,10,10,8,18,8,24,0,4,'',13,94041); +INSERT INTO "weather" VALUES('6/16/2015',72,64,55,55,53,50,86,72,57,29.98,29.96,29.93,10,10,10,15,7,'',0,2,'',8,94041); +INSERT INTO "weather" VALUES('6/17/2015',76,65,54,57,54,52,93,73,53,29.97,29.94,29.91,10,10,9,16,6,20,0,2,'',354,94041); +INSERT INTO "weather" VALUES('6/18/2015',73,65,56,55,52,49,86,65,44,30.04,30,29.95,10,10,9,21,7,23,0,0,'',3,94041); +INSERT INTO "weather" VALUES('6/19/2015',75,65,54,55,52,49,89,68,46,30.03,29.99,29.96,10,10,10,20,7,23,0,0,'',3,94041); +INSERT INTO "weather" VALUES('6/20/2015',75,66,56,58,55,51,86,70,53,29.95,29.91,29.88,10,10,10,16,6,18,0,0,'',343,94041); +INSERT INTO "weather" VALUES('6/21/2015',70,63,56,57,53,49,93,72,51,30.05,30,29.9,10,10,10,21,9,25,0,3,'',360,94041); +INSERT INTO "weather" VALUES('6/22/2015',68,62,55,55,53,50,86,75,63,30.08,30.05,30.02,10,10,10,22,8,25,0,1,'',16,94041); +INSERT INTO "weather" VALUES('6/23/2015',75,65,55,56,52,44,83,62,40,30.04,30,29.95,10,10,10,22,7,25,0,0,'',359,94041); +INSERT INTO "weather" VALUES('6/24/2015',77,66,54,57,54,49,86,66,46,29.98,29.94,29.89,10,10,10,17,7,28,0,1,'',10,94041); +INSERT INTO "weather" VALUES('6/25/2015',87,74,60,59,56,53,78,55,32,29.93,29.9,29.86,10,10,10,14,5,18,0,0,'',333,94041); +INSERT INTO "weather" VALUES('6/26/2015',81,71,60,60,58,55,84,68,52,29.98,29.93,29.9,10,10,10,17,7,44,0,0,'',342,94041); +INSERT INTO "weather" VALUES('6/27/2015',79,69,59,60,57,53,87,70,53,30.02,29.99,29.96,10,10,10,18,8,21,0,2,'',9,94041); +INSERT INTO "weather" VALUES('6/28/2015',74,68,62,59,58,57,84,71,57,30.03,30,29.97,10,10,10,21,10,24,0,3,'',360,94041); +INSERT INTO "weather" VALUES('6/29/2015',77,68,59,59,57,54,84,69,53,30.04,29.99,29.93,10,10,10,16,8,20,0,3,'',346,94041); +INSERT INTO "weather" VALUES('6/30/2015',89,75,61,60,57,53,90,61,32,29.94,29.89,29.81,10,10,10,13,5,18,0,1,'',340,94041); +INSERT INTO "weather" VALUES('7/1/2015',82,73,63,63,60,57,90,70,49,29.93,29.89,29.84,10,10,10,16,5,21,'T',0,'Rain',341,94041); +INSERT INTO "weather" VALUES('7/2/2015',78,71,64,61,60,59,87,71,54,29.99,29.95,29.92,10,10,10,16,7,20,'T',0,'Rain',337,94041); +INSERT INTO "weather" VALUES('7/3/2015',78,70,62,62,60,59,93,74,54,29.97,29.93,29.87,10,10,10,21,8,25,'T',3,'',350,94041); +INSERT INTO "weather" VALUES('7/4/2015',76,70,63,62,60,59,90,75,60,29.91,29.88,29.84,10,10,10,20,7,23,0,4,'',359,94041); +INSERT INTO "weather" VALUES('7/5/2015',78,70,61,61,58,56,90,72,54,30.02,29.95,29.9,10,10,9,22,9,25,0,3,'',39,94041); +INSERT INTO "weather" VALUES('7/6/2015',77,70,63,59,57,55,84,69,54,30.1,30.06,30.02,10,10,10,23,9,26,0,3,'',351,94041); +INSERT INTO "weather" VALUES('7/7/2015',78,69,60,60,57,53,84,66,47,30.06,30,29.92,10,10,10,25,8,29,0,3,'',336,94041); +INSERT INTO "weather" VALUES('7/8/2015',74,67,59,57,54,53,84,69,53,29.93,29.89,29.83,10,10,10,22,7,26,0,3,'',319,94041); +INSERT INTO "weather" VALUES('7/9/2015',71,66,61,58,55,53,78,70,61,29.92,29.89,29.85,10,10,10,16,6,20,'T',8,'Rain',299,94041); +INSERT INTO "weather" VALUES('7/10/2015',73,68,62,57,55,54,84,71,57,29.98,29.94,29.9,10,10,10,20,7,23,'T',4,'',336,94041); +INSERT INTO "weather" VALUES('7/11/2015',77,67,57,57,54,52,80,64,47,30.02,29.99,29.95,10,10,10,24,7,29,0,1,'',349,94041); +INSERT INTO "weather" VALUES('7/12/2015',76,69,62,57,54,52,73,62,50,30.06,30.04,30.01,10,10,10,26,8,31,0,0,'',341,94041); +INSERT INTO "weather" VALUES('7/13/2015',78,68,58,61,56,53,84,66,48,30.06,30.01,29.95,10,10,10,23,8,28,0,1,'',342,94041); +INSERT INTO "weather" VALUES('7/14/2015',74,67,59,57,56,55,84,69,53,29.96,29.93,29.89,10,10,10,22,8,26,0,1,'',344,94041); +INSERT INTO "weather" VALUES('7/15/2015',81,70,59,62,57,53,84,65,45,29.92,29.89,29.86,10,10,10,16,6,21,0,1,'',349,94041); +INSERT INTO "weather" VALUES('7/16/2015',81,70,59,61,58,55,87,69,51,29.94,29.91,29.86,10,10,10,18,7,25,0,2,'',21,94041); +INSERT INTO "weather" VALUES('7/17/2015',79,71,62,61,59,57,90,71,52,29.89,29.85,29.79,10,10,10,16,7,21,0,2,'',356,94041); +INSERT INTO "weather" VALUES('7/18/2015',79,70,61,59,57,55,84,67,50,30.02,29.92,29.85,10,10,10,22,9,26,0,3,'',17,94041); +INSERT INTO "weather" VALUES('7/19/2015',89,77,65,64,59,57,78,59,40,30.08,30.04,30.01,10,10,10,18,6,21,0,2,'',3,94041); +INSERT INTO "weather" VALUES('7/20/2015',86,76,65,65,61,57,81,63,44,30.05,30,29.94,10,10,10,23,9,28,0,0,'',8,94041); +INSERT INTO "weather" VALUES('7/21/2015',75,69,63,60,59,57,84,73,61,29.96,29.92,29.87,10,10,10,21,9,26,0,2,'',4,94041); +INSERT INTO "weather" VALUES('7/22/2015',74,67,60,57,55,50,90,70,49,29.94,29.88,29.85,10,10,10,25,8,30,0,0,'',4,94041); +INSERT INTO "weather" VALUES('7/23/2015',74,66,57,56,53,50,80,65,49,30.08,30.01,29.94,10,10,10,20,8,24,0,2,'',342,94041); +INSERT INTO "weather" VALUES('7/24/2015',75,66,56,57,52,48,77,62,46,30.14,30.11,30.07,10,10,10,23,8,25,0,0,'',346,94041); +INSERT INTO "weather" VALUES('7/25/2015',72,66,59,59,57,52,87,77,66,30.12,30.07,30.01,10,10,10,23,8,31,0,1,'',2,94041); +INSERT INTO "weather" VALUES('7/26/2015',79,69,59,59,55,51,87,63,39,30,29.96,29.93,10,10,10,22,7,26,0,2,'',358,94041); +INSERT INTO "weather" VALUES('7/27/2015',85,72,59,61,56,51,78,57,36,29.98,29.93,29.88,10,10,10,23,7,26,0,0,'',346,94041); +INSERT INTO "weather" VALUES('7/28/2015',92,76,60,60,57,54,78,55,32,29.91,29.88,29.83,10,10,1,17,4,22,0,0,'',345,94041); +INSERT INTO "weather" VALUES('7/29/2015',85,75,64,63,58,53,87,64,40,29.98,29.92,29.88,10,10,9,16,6,21,0,0,'',341,94041); +INSERT INTO "weather" VALUES('7/30/2015',78,71,64,64,61,60,87,73,58,30.06,30.01,29.97,10,10,9,15,8,28,0,3,'',350,94041); +INSERT INTO "weather" VALUES('7/31/2015',76,70,64,62,60,58,87,76,64,30.05,30.02,29.97,10,10,10,21,8,24,0,3,'',2,94041); +INSERT INTO "weather" VALUES('8/1/2015',77,71,64,62,60,58,84,69,54,30.04,29.99,29.94,10,10,10,18,8,22,0,3,'',29,94041); +INSERT INTO "weather" VALUES('8/2/2015',75,69,63,61,58,56,87,72,57,30,29.96,29.91,10,10,10,21,8,23,0,4,'',349,94041); +INSERT INTO "weather" VALUES('8/3/2015',77,70,62,56,54,52,78,61,43,30,29.97,29.93,10,10,10,23,6,26,0,1,'',308,94041); +INSERT INTO "weather" VALUES('8/4/2015',76,68,59,56,54,51,75,61,46,30.03,30,29.98,10,10,10,20,6,23,'T',1,'',318,94041); +INSERT INTO "weather" VALUES('8/5/2015',78,69,60,62,57,53,87,71,54,30.07,30,29.93,10,10,10,16,6,20,0,0,'',359,94041); +INSERT INTO "weather" VALUES('8/6/2015',77,69,61,61,60,58,90,75,60,29.93,29.89,29.83,10,10,8,22,5,25,0.01,1,'',357,94041); +INSERT INTO "weather" VALUES('8/7/2015',79,70,60,59,57,54,84,66,48,29.92,29.88,29.84,10,10,10,20,8,24,0,1,'',356,94041); +INSERT INTO "weather" VALUES('8/8/2015',76,69,62,59,57,53,84,69,53,29.97,29.94,29.92,10,10,10,23,9,26,0,2,'',39,94041); +INSERT INTO "weather" VALUES('8/9/2015',77,67,57,62,56,51,80,69,57,29.98,29.95,29.91,10,10,10,23,7,28,0,0,'',14,94041); +INSERT INTO "weather" VALUES('8/10/2015',79,69,59,61,58,55,90,72,53,30,29.95,29.92,10,10,10,22,7,28,0,1,'',4,94041); +INSERT INTO "weather" VALUES('8/11/2015',77,69,61,59,56,52,84,67,50,30.01,29.95,29.91,10,10,10,24,7,28,0,2,'',349,94041); +INSERT INTO "weather" VALUES('8/12/2015',81,70,59,61,55,51,81,62,42,30.08,30.04,30,10,10,10,22,7,30,0,0,'',343,94041); +INSERT INTO "weather" VALUES('8/13/2015',79,70,61,61,58,54,90,68,45,30.07,30.05,30,10,10,10,23,7,28,0,2,'',346,94041); +INSERT INTO "weather" VALUES('8/14/2015',78,71,63,60,58,55,84,67,50,30.11,30.06,30.01,10,10,9,21,8,25,0,3,'',334,94041); +INSERT INTO "weather" VALUES('8/15/2015',95,77,58,63,56,50,86,55,23,30.01,29.96,29.88,10,8,3,16,5,18,0,0,'',346,94041); +INSERT INTO "weather" VALUES('8/16/2015',97,82,66,63,58,49,78,50,22,29.92,29.87,29.81,9,8,6,16,4,20,0,0,'',343,94041); +INSERT INTO "weather" VALUES('8/17/2015',85,74,62,64,60,55,87,66,45,29.92,29.86,29.82,10,9,7,14,6,17,0,1,'',341,94041); +INSERT INTO "weather" VALUES('8/18/2015',78,69,60,61,58,55,90,72,54,29.95,29.92,29.88,10,9,6,17,8,21,0,4,'',11,94041); +INSERT INTO "weather" VALUES('8/19/2015',75,70,64,61,58,55,78,68,57,29.96,29.93,29.9,10,9,7,20,7,23,0,3,'',17,94041); +INSERT INTO "weather" VALUES('8/20/2015',72,68,63,58,57,55,78,68,57,29.94,29.91,29.87,10,10,10,17,8,23,0,4,'',346,94041); +INSERT INTO "weather" VALUES('8/21/2015',75,68,61,59,57,55,84,71,57,29.92,29.89,29.87,10,10,10,20,8,23,0,2,'',75,94041); +INSERT INTO "weather" VALUES('8/22/2015',77,69,61,60,57,55,84,69,54,29.96,29.92,29.88,10,10,10,17,8,21,0,4,'',50,94041); +INSERT INTO "weather" VALUES('8/23/2015',75,69,63,59,57,56,84,71,57,30.04,29.99,29.95,10,10,10,20,7,23,0,4,'',25,94041); +INSERT INTO "weather" VALUES('8/24/2015',75,68,61,59,57,55,84,71,57,30.08,30.03,29.98,10,10,9,15,7,20,0,3,'',358,94041); +INSERT INTO "weather" VALUES('8/25/2015',76,68,59,60,58,55,84,71,57,30.04,30,29.95,10,10,9,16,6,18,0,2,'',358,94041); +INSERT INTO "weather" VALUES('8/26/2015',83,72,61,60,58,54,90,64,37,30.06,30.02,29.98,10,9,5,17,5,20,0,3,'',353,94041); +INSERT INTO "weather" VALUES('8/27/2015',89,76,63,59,55,48,78,52,26,30.07,30.02,29.97,10,10,10,22,5,25,0,0,'',356,94041); +INSERT INTO "weather" VALUES('8/28/2015',91,78,64,65,60,53,87,61,34,29.98,29.91,29.84,10,10,10,22,7,26,0,1,'',356,94041); +INSERT INTO "weather" VALUES('8/29/2015',81,73,64,65,62,52,87,68,49,30.03,29.98,29.92,10,10,10,23,7,29,'T',4,'',349,94041); +INSERT INTO "weather" VALUES('8/30/2015',79,70,61,60,55,51,78,63,47,30.08,30.02,29.96,10,10,10,22,8,25,0,2,'',327,94041); +INSERT INTO "weather" VALUES('8/31/2015',82,72,61,62,56,52,84,63,42,29.97,29.92,29.86,10,10,10,22,6,25,0,0,'',6,94041); +INSERT INTO "weather" VALUES('9/1/2014',86,72,58,60,54,50,86,59,31,29.86,29.81,29.75,10,10,10,17,5,22,0,0,'',296,95113); +INSERT INTO "weather" VALUES('9/2/2014',77,68,59,60,58,56,93,72,50,29.85,29.81,29.77,10,10,9,15,6,20,0,0,'',300,95113); +INSERT INTO "weather" VALUES('9/3/2014',79,69,58,59,56,53,90,68,45,29.8,29.75,29.69,10,10,10,18,9,22,0,3,'',114,95113); +INSERT INTO "weather" VALUES('9/4/2014',80,70,59,58,56,54,87,65,42,29.8,29.74,29.72,10,9,6,16,7,20,0,4,'',142,95113); +INSERT INTO "weather" VALUES('9/5/2014',76,67,57,58,56,54,93,71,49,29.91,29.86,29.81,10,10,8,16,8,20,0,2,'',185,95113); +INSERT INTO "weather" VALUES('9/6/2014',76,67,58,57,55,53,84,67,50,29.97,29.92,29.88,10,8,5,16,6,18,0,3,'',343,95113); +INSERT INTO "weather" VALUES('9/7/2014',74,66,58,56,54,53,86,70,53,29.91,29.87,29.81,10,10,8,17,6,18,0,3,'',313,95113); +INSERT INTO "weather" VALUES('9/8/2014',70,63,56,54,52,51,86,70,53,29.96,29.89,29.85,10,10,9,16,7,20,0,3,'',320,95113); +INSERT INTO "weather" VALUES('9/9/2014',75,65,54,58,53,50,90,68,46,30,29.95,29.9,10,9,6,13,4,15,0,2,'',304,95113); +INSERT INTO "weather" VALUES('9/10/2014',88,72,55,60,56,46,100,62,24,29.96,29.9,29.81,10,9,4,14,4,16,0,1,'',291,95113); +INSERT INTO "weather" VALUES('9/11/2014',89,73,57,60,55,44,90,56,22,29.91,29.86,29.81,10,10,8,14,5,20,0,1,'',299,95113); +INSERT INTO "weather" VALUES('9/12/2014',85,72,59,61,57,48,93,61,29,29.9,29.85,29.78,10,9,6,13,4,22,0,1,'',299,95113); +INSERT INTO "weather" VALUES('9/13/2014',82,71,60,59,58,57,97,71,45,29.86,29.82,29.77,10,9,7,14,5,20,0,4,'',296,95113); +INSERT INTO "weather" VALUES('9/14/2014',79,69,59,59,56,48,90,63,35,29.86,29.83,29.79,10,9,6,13,6,20,0,2,'',300,95113); +INSERT INTO "weather" VALUES('9/15/2014',77,69,60,59,56,51,90,67,43,29.94,29.89,29.85,10,10,8,18,7,22,0,2,'',317,95113); +INSERT INTO "weather" VALUES('9/16/2014',81,69,56,59,53,42,90,58,26,29.94,29.88,29.8,10,10,10,16,5,20,0,1,'',301,95113); +INSERT INTO "weather" VALUES('9/17/2014',83,71,59,60,56,46,90,60,30,29.83,29.79,29.73,10,10,7,20,6,26,0,3,'',213,95113); +INSERT INTO "weather" VALUES('9/18/2014',80,72,64,64,59,53,93,68,42,29.9,29.83,29.78,10,10,10,18,8,23,'T',5,'',170,95113); +INSERT INTO "weather" VALUES('9/19/2014',77,70,63,63,60,59,93,76,58,29.92,29.89,29.84,10,10,9,16,6,21,0,3,'',305,95113); +INSERT INTO "weather" VALUES('9/20/2014',77,70,62,63,59,57,93,74,54,29.96,29.91,29.87,10,10,7,17,6,23,0,4,'',305,95113); +INSERT INTO "weather" VALUES('9/21/2014',74,68,62,59,58,56,84,71,57,30.02,29.99,29.93,10,10,10,18,8,24,0,5,'',317,95113); +INSERT INTO "weather" VALUES('9/22/2014',79,71,62,58,57,52,84,62,39,30.05,30,29.95,10,10,9,20,7,24,0,5,'',311,95113); +INSERT INTO "weather" VALUES('9/23/2014',78,69,59,63,59,55,90,70,50,30.02,29.97,29.91,10,10,10,17,6,20,0,4,'',317,95113); +INSERT INTO "weather" VALUES('9/24/2014',80,71,62,63,60,57,87,70,52,29.98,29.93,29.86,10,10,10,23,6,25,0,4,'',304,95113); +INSERT INTO "weather" VALUES('9/25/2014',73,65,57,63,58,54,100,77,53,30.02,29.96,29.89,10,8,1,17,7,21,0.36,6,'Rain',308,95113); +INSERT INTO "weather" VALUES('9/26/2014',73,65,57,56,53,47,93,67,41,30,29.97,29.91,10,10,10,22,7,25,'T',4,'',272,95113); +INSERT INTO "weather" VALUES('9/27/2014',74,67,59,56,54,52,80,65,49,29.94,29.9,29.83,10,10,10,16,6,22,0,3,'',304,95113); +INSERT INTO "weather" VALUES('9/28/2014',75,67,58,58,55,53,90,68,46,29.96,29.88,29.84,10,10,10,18,8,22,0,4,'',125,95113); +INSERT INTO "weather" VALUES('9/29/2014',72,65,58,58,56,55,90,74,57,30.04,29.99,29.96,10,10,8,21,6,24,0,4,'',302,95113); +INSERT INTO "weather" VALUES('9/30/2014',76,65,54,56,54,44,93,63,33,30.01,29.94,29.84,10,10,10,15,5,20,0,1,'',319,95113); +INSERT INTO "weather" VALUES('10/1/2014',85,70,55,56,49,36,93,54,15,29.99,29.9,29.85,10,10,10,16,6,23,0,0,'',300,95113); +INSERT INTO "weather" VALUES('10/2/2014',90,72,53,48,41,35,66,41,16,30.03,29.98,29.94,10,10,10,13,4,15,0,0,'',240,95113); +INSERT INTO "weather" VALUES('10/3/2014',91,75,58,52,43,37,57,37,16,30.09,30.03,29.98,10,10,10,13,4,21,0,0,'',299,95113); +INSERT INTO "weather" VALUES('10/4/2014',92,75,58,49,41,32,56,35,13,30.04,29.98,29.91,10,10,10,14,4,17,0,1,'',307,95113); +INSERT INTO "weather" VALUES('10/5/2014',90,74,58,53,45,38,58,38,17,29.96,29.91,29.86,10,10,10,14,3,15,0,1,'',296,95113); +INSERT INTO "weather" VALUES('10/6/2014',88,72,56,59,51,38,90,54,17,29.93,29.89,29.83,10,10,10,12,3,14,0,1,'',297,95113); +INSERT INTO "weather" VALUES('10/7/2014',81,69,56,59,55,43,93,60,26,29.94,29.89,29.83,10,10,7,14,4,16,0,2,'',294,95113); +INSERT INTO "weather" VALUES('10/8/2014',85,70,55,57,53,42,93,59,24,29.93,29.89,29.84,10,10,10,15,4,18,0,1,'',293,95113); +INSERT INTO "weather" VALUES('10/9/2014',75,65,55,58,55,52,93,73,53,30,29.95,29.91,10,10,8,14,5,15,0,2,'',300,95113); +INSERT INTO "weather" VALUES('10/10/2014',71,64,56,56,54,53,93,76,59,30.08,30.03,29.99,10,10,8,13,5,15,0,5,'',325,95113); +INSERT INTO "weather" VALUES('10/11/2014',77,65,53,57,53,48,93,66,38,30.07,30.02,29.97,10,10,7,14,4,16,0,3,'',293,95113); +INSERT INTO "weather" VALUES('10/12/2014',87,71,54,57,43,28,93,53,12,30,29.94,29.88,10,10,10,15,5,21,0,0,'',297,95113); +INSERT INTO "weather" VALUES('10/13/2014',87,71,55,58,40,25,84,48,12,29.97,29.93,29.89,10,10,9,18,5,22,0,1,'',287,95113); +INSERT INTO "weather" VALUES('10/14/2014',72,64,55,56,54,51,93,71,49,29.95,29.89,29.84,10,10,8,23,11,35,0,4,'',150,95113); +INSERT INTO "weather" VALUES('10/15/2014',73,66,58,56,53,48,84,63,41,30.03,29.97,29.87,10,10,10,18,8,28,'T',5,'',229,95113); +INSERT INTO "weather" VALUES('10/16/2014',71,63,54,53,49,43,86,63,40,30.04,29.99,29.94,10,10,10,15,4,18,0,5,'',308,95113); +INSERT INTO "weather" VALUES('10/17/2014',75,63,51,52,47,44,83,60,36,29.99,29.95,29.91,10,10,10,15,6,20,0,4,'',148,95113); +INSERT INTO "weather" VALUES('10/18/2014',78,66,54,58,51,48,84,60,35,29.99,29.94,29.87,10,10,10,17,5,22,0,0,'',311,95113); +INSERT INTO "weather" VALUES('10/19/2014',75,65,55,59,56,53,100,77,54,29.93,29.9,29.85,10,8,0,18,5,22,0,4,'Fog',313,95113); +INSERT INTO "weather" VALUES('10/20/2014',68,61,54,58,55,50,90,75,59,30.08,29.97,29.91,10,10,7,24,6,29,'T',5,'Rain',131,95113); +INSERT INTO "weather" VALUES('10/21/2014',70,59,48,50,47,41,93,65,37,30.11,30.06,30.01,10,10,10,20,5,23,0,2,'',294,95113); +INSERT INTO "weather" VALUES('10/22/2014',72,60,48,57,49,42,86,62,37,30.09,30.05,30,10,10,10,13,5,16,0,4,'',296,95113); +INSERT INTO "weather" VALUES('10/23/2014',74,65,55,58,53,50,86,65,44,30.08,30.02,29.97,10,10,10,14,4,20,0,3,'',301,95113); +INSERT INTO "weather" VALUES('10/24/2014',78,65,51,57,53,49,96,69,41,29.98,29.93,29.88,10,10,9,20,6,29,0,2,'',166,95113); +INSERT INTO "weather" VALUES('10/25/2014',71,64,56,58,54,48,100,74,47,30.15,30.03,29.92,10,8,2,16,7,22,0.11,5,'Rain',141,95113); +INSERT INTO "weather" VALUES('10/26/2014',68,60,51,53,48,40,93,65,37,30.17,30.13,30.06,10,10,10,21,7,25,0,3,'',275,95113); +INSERT INTO "weather" VALUES('10/27/2014',70,58,46,51,46,41,93,65,37,30.08,30.04,30,10,10,10,17,5,21,0,2,'',311,95113); +INSERT INTO "weather" VALUES('10/28/2014',73,60,47,56,48,39,93,62,31,30.13,30.09,30.05,10,10,10,15,4,17,0,0,'',309,95113); +INSERT INTO "weather" VALUES('10/29/2014',78,64,50,52,48,46,86,60,33,30.12,30.05,29.97,10,10,10,8,2,10,0,1,'',301,95113); +INSERT INTO "weather" VALUES('10/30/2014',81,68,55,54,48,36,78,49,20,29.97,29.91,29.87,10,10,10,16,5,21,0,5,'',202,95113); +INSERT INTO "weather" VALUES('10/31/2014',63,58,53,57,54,52,100,86,72,29.92,29.84,29.75,10,9,1,15,5,20,0.51,7,'Rain',151,95113); +INSERT INTO "weather" VALUES('11/1/2014',63,56,48,52,48,44,100,78,55,30.05,29.9,29.76,10,10,7,18,5,22,0.02,4,'Rain',145,95113); +INSERT INTO "weather" VALUES('11/2/2014',65,55,45,48,45,40,93,68,43,30.17,30.12,30.05,10,10,10,18,5,21,0,1,'',308,95113); +INSERT INTO "weather" VALUES('11/3/2014',69,56,43,52,44,35,92,60,28,30.27,30.22,30.17,10,10,10,14,4,17,0,3,'',308,95113); +INSERT INTO "weather" VALUES('11/4/2014',69,57,45,51,46,43,93,68,42,30.32,30.26,30.22,10,10,10,13,3,15,0,2,'',242,95113); +INSERT INTO "weather" VALUES('11/5/2014',77,62,47,49,46,43,83,58,33,30.22,30.14,30.07,10,10,10,9,2,9,0,2,'',119,95113); +INSERT INTO "weather" VALUES('11/6/2014',74,62,49,55,50,46,86,62,38,30.22,30.19,30.14,10,10,8,17,3,17,0,3,'',317,95113); +INSERT INTO "weather" VALUES('11/7/2014',69,60,51,57,54,51,100,79,57,30.24,30.18,30.1,10,6,0,10,3,14,0,3,'Fog',282,95113); +INSERT INTO "weather" VALUES('11/8/2014',74,62,49,55,51,48,96,70,44,30.13,30.07,30,10,10,8,8,1,10,0,3,'',305,95113); +INSERT INTO "weather" VALUES('11/9/2014',75,62,49,56,51,46,93,66,38,30.03,29.92,29.83,10,10,9,14,2,16,0,1,'',297,95113); +INSERT INTO "weather" VALUES('11/10/2014',73,60,46,55,51,46,100,77,53,29.85,29.82,29.78,10,6,0,15,5,20,0,3,'Fog',153,95113); +INSERT INTO "weather" VALUES('11/11/2014',65,59,52,52,48,45,86,69,52,29.98,29.92,29.86,10,10,10,18,7,22,0,6,'',147,95113); +INSERT INTO "weather" VALUES('11/12/2014',67,61,54,47,45,43,77,60,42,30.03,29.99,29.96,10,10,10,15,4,17,'T',7,'',65,95113); +INSERT INTO "weather" VALUES('11/13/2014',66,60,53,58,54,52,93,80,67,30.08,30.02,29.95,10,9,2,14,7,18,0.14,7,'Rain',117,95113); +INSERT INTO "weather" VALUES('11/14/2014',66,59,51,52,50,46,96,78,60,30.12,30.09,30.06,10,10,10,14,4,17,0,4,'',287,95113); +INSERT INTO "weather" VALUES('11/15/2014',65,57,49,52,48,45,93,75,56,30.19,30.14,30.1,10,10,10,17,4,18,0,4,'',272,95113); +INSERT INTO "weather" VALUES('11/16/2014',64,55,45,45,30,14,93,53,13,30.25,30.22,30.18,10,10,10,14,3,17,0,5,'',287,95113); +INSERT INTO "weather" VALUES('11/17/2014',66,53,40,38,34,29,70,48,26,30.24,30.17,30.1,10,10,10,8,1,12,0,3,'',143,95113); +INSERT INTO "weather" VALUES('11/18/2014',66,55,44,44,39,33,71,51,31,30.14,30.09,30.05,10,10,10,12,2,13,0,5,'',232,95113); +INSERT INTO "weather" VALUES('11/19/2014',66,59,52,56,45,28,100,64,27,30.14,30.06,30.01,10,10,5,21,8,28,'T',5,'Rain',123,95113); +INSERT INTO "weather" VALUES('11/20/2014',59,55,50,58,53,50,100,93,86,30.12,30.07,29.98,10,9,4,16,4,21,0.12,6,'Rain',141,95113); +INSERT INTO "weather" VALUES('11/21/2014',63,55,47,52,49,45,100,76,52,30.14,30.09,30.04,10,10,10,13,3,14,0.01,6,'',250,95113); +INSERT INTO "weather" VALUES('11/22/2014',64,57,50,61,53,46,93,84,75,30.25,30.14,30.09,10,8,2,18,9,24,0.01,6,'Rain',98,95113); +INSERT INTO "weather" VALUES('11/23/2014',65,55,45,48,42,35,93,64,34,30.33,30.29,30.25,10,10,10,13,5,15,0,2,'',276,95113); +INSERT INTO "weather" VALUES('11/24/2014',66,52,38,43,38,34,92,62,31,30.41,30.36,30.32,10,10,10,10,3,13,0,1,'',275,95113); +INSERT INTO "weather" VALUES('11/25/2014',67,54,40,45,38,31,76,52,28,30.46,30.39,30.34,10,10,10,7,2,9,0,1,'',244,95113); +INSERT INTO "weather" VALUES('11/26/2014',70,56,41,48,43,38,83,60,36,30.32,30.25,30.2,10,10,8,10,1,12,0,1,'',352,95113); +INSERT INTO "weather" VALUES('11/27/2014',69,56,43,47,43,40,86,62,37,30.2,30.12,30.05,10,9,7,6,1,8,0,2,'',320,95113); +INSERT INTO "weather" VALUES('11/28/2014',65,52,39,50,41,34,86,63,40,30.07,29.99,29.88,10,7,1,14,5,16,0,3,'',134,95113); +INSERT INTO "weather" VALUES('11/29/2014',60,56,51,55,52,48,100,86,72,29.88,29.83,29.75,10,9,3,17,7,21,0.71,7,'Rain',130,95113); +INSERT INTO "weather" VALUES('11/30/2014',64,57,50,56,52,46,100,89,77,30.03,29.87,29.75,10,8,2,9,6,'',0.57,5,'Rain',128,95113); +INSERT INTO "weather" VALUES('12/1/2014',68,59,50,61,55,51,100,84,68,30.11,30.03,29.94,10,8,0,16,3,20,0.02,4,'Fog',145,95113); +INSERT INTO "weather" VALUES('12/2/2014',61,58,54,58,55,54,100,92,84,29.93,29.81,29.68,10,5,0,18,6,23,1.2,7,'Fog-Rain',134,95113); +INSERT INTO "weather" VALUES('12/3/2014',62,60,57,61,58,55,100,92,84,29.9,29.79,29.7,10,6,2,25,12,33,1.28,7,'Rain',124,95113); +INSERT INTO "weather" VALUES('12/4/2014',67,61,55,58,55,54,100,84,68,30.02,29.95,29.88,10,10,10,10,4,13,0.01,5,'Rain',132,95113); +INSERT INTO "weather" VALUES('12/5/2014',65,60,55,58,56,54,100,87,73,30.09,30.03,29.99,10,10,9,17,8,22,0.02,7,'Rain',116,95113); +INSERT INTO "weather" VALUES('12/6/2014',67,62,56,58,56,54,93,78,63,30.22,30.18,30.1,10,10,7,12,4,14,0.02,6,'Rain',183,95113); +INSERT INTO "weather" VALUES('12/7/2014',65,58,51,56,53,51,100,84,67,30.22,30.18,30.14,10,7,0,13,2,15,0,5,'Fog',122,95113); +INSERT INTO "weather" VALUES('12/8/2014',71,60,49,56,52,49,100,75,49,30.18,30.15,30.1,10,10,8,13,4,15,0,4,'',131,95113); +INSERT INTO "weather" VALUES('12/9/2014',64,58,51,57,54,51,100,87,73,30.2,30.13,30.07,10,10,8,12,3,15,0,6,'',116,95113); +INSERT INTO "weather" VALUES('12/10/2014',64,58,52,55,52,50,100,83,65,30.07,29.95,29.76,10,8,1,23,9,29,0,6,'',116,95113); +INSERT INTO "weather" VALUES('12/11/2014',63,57,50,59,54,49,100,80,60,29.73,29.64,29.55,10,5,1,32,12,44,3.23,8,'Rain',72,95113); +INSERT INTO "weather" VALUES('12/12/2014',56,51,46,53,48,45,100,86,72,30.09,29.84,29.66,10,9,5,10,4,15,0.2,7,'Rain',140,95113); +INSERT INTO "weather" VALUES('12/13/2014',57,50,43,48,45,43,100,86,72,30.23,30.18,30.09,10,9,2,9,2,12,'T',4,'',194,95113); +INSERT INTO "weather" VALUES('12/14/2014',60,52,43,46,44,42,93,74,55,30.14,30.06,30,10,10,7,13,5,17,0.05,5,'Rain',126,95113); +INSERT INTO "weather" VALUES('12/15/2014',55,53,50,52,49,46,100,89,77,29.97,29.9,29.83,10,9,3,28,12,37,0.65,7,'Rain',111,95113); +INSERT INTO "weather" VALUES('12/16/2014',61,55,48,54,49,43,100,76,51,29.97,29.91,29.83,10,8,2,20,8,25,0.55,6,'Rain',125,95113); +INSERT INTO "weather" VALUES('12/17/2014',58,52,45,53,48,45,100,84,67,30.1,30.04,29.95,10,9,6,17,7,22,0.22,6,'Rain',113,95113); +INSERT INTO "weather" VALUES('12/18/2014',62,56,50,49,48,46,83,72,60,30.19,30.13,30.07,10,10,10,20,8,25,0,6,'',126,95113); +INSERT INTO "weather" VALUES('12/19/2014',57,55,52,55,52,47,100,86,72,30.19,30.15,30.12,10,10,5,20,9,25,0.19,7,'Rain',119,95113); +INSERT INTO "weather" VALUES('12/20/2014',62,58,54,55,53,49,100,82,64,30.27,30.18,30.12,10,8,2,10,2,13,0.06,8,'Rain',144,95113); +INSERT INTO "weather" VALUES('12/21/2014',62,59,56,58,56,52,93,87,80,30.33,30.28,30.25,10,10,6,16,6,18,'T',7,'Rain',304,95113); +INSERT INTO "weather" VALUES('12/22/2014',63,58,52,56,55,52,100,86,72,30.29,30.23,30.18,10,9,2,10,5,14,0,5,'',300,95113); +INSERT INTO "weather" VALUES('12/23/2014',68,59,49,54,50,46,100,76,52,30.22,30.17,30.12,10,5,0,13,3,16,0.02,2,'Fog',283,95113); +INSERT INTO "weather" VALUES('12/24/2014',60,53,45,53,47,38,100,83,66,30.12,30.04,29.96,10,6,0,29,7,38,0.04,4,'Fog-Rain',272,95113); +INSERT INTO "weather" VALUES('12/25/2014',58,51,43,39,33,24,83,57,30,30.14,30.09,30.05,10,10,10,22,12,29,0,0,'',291,95113); +INSERT INTO "weather" VALUES('12/26/2014',57,49,40,38,30,24,76,53,30,30.27,30.18,30.1,10,10,10,14,6,21,0,0,'',292,95113); +INSERT INTO "weather" VALUES('12/27/2014',55,44,33,36,31,28,82,59,35,30.39,30.34,30.28,10,10,10,8,2,10,0,3,'',127,95113); +INSERT INTO "weather" VALUES('12/28/2014',57,47,37,42,37,34,86,67,47,30.36,30.3,30.24,10,10,10,8,2,12,0,2,'',276,95113); +INSERT INTO "weather" VALUES('12/29/2014',56,50,43,43,40,37,89,72,55,30.25,30.18,30.12,10,10,10,15,4,18,0,4,'',229,95113); +INSERT INTO "weather" VALUES('12/30/2014',53,45,37,37,23,10,82,51,20,30.24,30.15,30.11,10,10,10,31,13,39,0,1,'',319,95113); +INSERT INTO "weather" VALUES('12/31/2014',55,46,37,20,13,4,44,29,13,30.27,30.17,30.07,10,10,10,20,6,26,0,1,'',279,95113); +INSERT INTO "weather" VALUES('1/1/2015',53,42,30,27,23,18,64,46,28,30.18,30.12,30.07,10,10,10,8,3,10,0,0,'',129,95113); +INSERT INTO "weather" VALUES('1/2/2015',52,42,31,33,28,25,78,57,35,30.23,30.17,30.12,10,10,10,9,2,10,0,1,'',306,95113); +INSERT INTO "weather" VALUES('1/3/2015',55,43,31,35,31,28,85,63,41,30.32,30.26,30.2,10,10,10,8,2,10,0,1,'',173,95113); +INSERT INTO "weather" VALUES('1/4/2015',56,45,34,38,35,32,89,68,47,30.43,30.38,30.33,10,10,8,10,2,15,0,3,'',296,95113); +INSERT INTO "weather" VALUES('1/5/2015',60,48,35,39,36,33,92,68,43,30.39,30.32,30.24,10,8,7,9,1,10,0,4,'',172,95113); +INSERT INTO "weather" VALUES('1/6/2015',63,51,39,41,39,36,85,62,39,30.29,30.22,30.17,10,9,7,6,1,8,0,1,'',246,95113); +INSERT INTO "weather" VALUES('1/7/2015',70,54,37,44,40,35,92,63,33,30.23,30.15,30.08,10,10,8,7,1,8,0,2,'',119,95113); +INSERT INTO "weather" VALUES('1/8/2015',61,53,44,45,43,41,89,72,55,30.1,30.04,30.01,10,10,8,7,1,10,0,5,'',118,95113); +INSERT INTO "weather" VALUES('1/9/2015',65,57,48,50,46,43,89,69,48,30.03,30,29.96,10,9,7,9,2,10,0,5,'',290,95113); +INSERT INTO "weather" VALUES('1/10/2015',61,54,46,50,47,44,100,80,60,30.05,30,29.95,10,8,5,9,2,10,0,4,'',293,95113); +INSERT INTO "weather" VALUES('1/11/2015',55,50,44,50,47,43,100,92,83,30.19,30.09,30.02,9,4,0,12,3,14,0,6,'Fog',292,95113); +INSERT INTO "weather" VALUES('1/12/2015',61,51,41,50,45,39,100,80,60,30.27,30.21,30.19,10,9,6,9,3,13,0.01,2,'',281,95113); +INSERT INTO "weather" VALUES('1/13/2015',65,54,43,48,43,35,100,67,34,30.22,30.18,30.1,10,5,0,16,4,20,0,3,'Fog',203,95113); +INSERT INTO "weather" VALUES('1/14/2015',62,51,39,45,39,34,86,66,46,30.29,30.21,30.17,10,10,7,10,2,12,0,4,'',63,95113); +INSERT INTO "weather" VALUES('1/15/2015',62,51,39,48,43,38,93,72,51,30.34,30.28,30.24,10,8,5,13,3,15,0,4,'',211,95113); +INSERT INTO "weather" VALUES('1/16/2015',63,53,42,53,47,41,96,74,51,30.3,30.25,30.21,10,7,4,12,4,14,0,5,'',260,95113); +INSERT INTO "weather" VALUES('1/17/2015',61,54,47,51,49,46,100,85,69,30.29,30.26,30.19,10,5,2,12,1,14,0,6,'',310,95113); +INSERT INTO "weather" VALUES('1/18/2015',63,55,47,54,50,46,100,86,72,30.32,30.28,30.25,10,6,4,14,2,15,0,5,'',244,95113); +INSERT INTO "weather" VALUES('1/19/2015',60,53,45,55,51,44,100,84,67,30.3,30.25,30.17,10,7,1,12,4,15,0.01,6,'',279,95113); +INSERT INTO "weather" VALUES('1/20/2015',60,51,42,47,45,41,100,76,51,30.17,30.12,30.05,10,8,2,9,4,'',0,4,'',286,95113); +INSERT INTO "weather" VALUES('1/21/2015',62,50,38,44,39,34,100,69,37,30.19,30.13,30.08,10,10,10,17,4,22,0,1,'',282,95113); +INSERT INTO "weather" VALUES('1/22/2015',56,47,38,43,40,34,86,74,61,30.35,30.27,30.19,10,10,8,12,3,16,0,2,'',248,95113); +INSERT INTO "weather" VALUES('1/23/2015',66,52,37,41,39,35,92,63,34,30.37,30.3,30.22,10,10,9,14,4,21,0,0,'',310,95113); +INSERT INTO "weather" VALUES('1/24/2015',72,56,39,47,39,34,89,59,28,30.24,30.16,30.08,10,10,10,17,3,22,0,0,'',227,95113); +INSERT INTO "weather" VALUES('1/25/2015',64,51,38,44,41,35,89,69,48,30.14,30.08,30.01,10,10,10,8,2,10,0,1,'',190,95113); +INSERT INTO "weather" VALUES('1/26/2015',65,52,39,45,41,36,86,63,40,30.04,30.01,29.96,10,10,10,8,2,12,0,4,'',286,95113); +INSERT INTO "weather" VALUES('1/27/2015',68,59,49,46,43,38,77,57,37,30.26,30.17,30.02,10,10,10,24,7,35,'T',6,'',122,95113); +INSERT INTO "weather" VALUES('1/28/2015',67,56,44,50,45,41,89,67,45,30.27,30.21,30.15,10,10,10,14,4,17,0,3,'',308,95113); +INSERT INTO "weather" VALUES('1/29/2015',65,54,42,50,46,40,100,78,56,30.17,30.13,30.06,10,6,0,10,2,13,0,4,'Fog',280,95113); +INSERT INTO "weather" VALUES('1/30/2015',67,57,47,51,48,43,93,68,42,30.06,29.99,29.89,10,7,2,14,4,16,0,4,'',300,95113); +INSERT INTO "weather" VALUES('1/31/2015',71,57,43,45,33,23,100,60,19,30.06,29.97,29.91,10,10,10,22,5,29,0,0,'',274,95113); +INSERT INTO "weather" VALUES('2/1/2015',67,53,39,45,38,32,71,53,34,30.17,30.12,30.06,10,10,10,14,2,17,'T',5,'',0,95113); +INSERT INTO "weather" VALUES('2/2/2015',68,55,42,49,44,37,83,64,45,30.19,30.13,30.08,10,9,6,10,2,10,'T',3,'',291,95113); +INSERT INTO "weather" VALUES('2/3/2015',72,60,48,51,48,44,86,65,44,30.13,30.09,30.05,10,8,6,9,2,13,0,4,'',185,95113); +INSERT INTO "weather" VALUES('2/4/2015',73,59,44,53,48,41,89,65,41,30.09,30.05,30.01,10,10,7,14,4,18,0,4,'',258,95113); +INSERT INTO "weather" VALUES('2/5/2015',68,60,51,49,47,45,83,68,52,30.06,29.98,29.9,10,10,10,22,9,29,0,5,'',138,95113); +INSERT INTO "weather" VALUES('2/6/2015',65,61,57,61,54,42,100,76,51,29.94,29.89,29.83,10,7,2,31,16,41,1.26,6,'Rain',120,95113); +INSERT INTO "weather" VALUES('2/7/2015',68,63,58,62,58,55,93,86,78,30.08,30.02,29.95,10,10,6,22,8,28,0.03,6,'Rain',137,95113); +INSERT INTO "weather" VALUES('2/8/2015',64,61,57,63,57,51,100,86,72,30.06,29.97,29.91,10,8,2,28,13,37,0.39,6,'Rain',132,95113); +INSERT INTO "weather" VALUES('2/9/2015',66,59,51,54,50,46,93,75,56,30.26,30.2,30.11,10,10,10,18,5,23,0.02,4,'',196,95113); +INSERT INTO "weather" VALUES('2/10/2015',64,54,44,48,45,42,93,75,56,30.24,30.17,30.08,10,10,6,15,4,18,0,3,'',256,95113); +INSERT INTO "weather" VALUES('2/11/2015',68,55,41,50,45,39,93,69,45,30.18,30.14,30.1,10,10,2,7,2,10,0,4,'',225,95113); +INSERT INTO "weather" VALUES('2/12/2015',72,58,44,53,48,42,92,68,44,30.21,30.16,30.12,10,10,10,10,2,15,0,3,'',281,95113); +INSERT INTO "weather" VALUES('2/13/2015',77,62,47,53,47,40,93,60,26,30.16,30.1,30.05,10,10,10,9,2,12,0,2,'',283,95113); +INSERT INTO "weather" VALUES('2/14/2015',74,60,46,53,49,44,86,64,41,30.12,30.07,30.02,10,10,10,9,2,12,0,1,'',166,95113); +INSERT INTO "weather" VALUES('2/15/2015',75,60,44,51,46,41,82,58,33,30.06,30.01,29.96,10,10,10,10,2,13,0,2,'',244,95113); +INSERT INTO "weather" VALUES('2/16/2015',72,60,47,55,48,42,93,69,44,30.04,30,29.94,10,9,5,13,4,15,0,3,'',290,95113); +INSERT INTO "weather" VALUES('2/17/2015',59,57,54,52,50,48,93,83,72,30.18,30.12,30.04,10,6,2,12,5,14,0,8,'',115,95113); +INSERT INTO "weather" VALUES('2/18/2015',65,59,53,52,49,46,86,75,63,30.23,30.17,30.1,10,10,6,12,4,13,0,5,'',311,95113); +INSERT INTO "weather" VALUES('2/19/2015',66,60,53,53,52,51,93,78,63,30.16,30.12,30.04,9,5,1,14,3,17,0,6,'',285,95113); +INSERT INTO "weather" VALUES('2/20/2015',70,61,51,52,50,46,93,69,44,30.09,30.01,29.92,10,7,2,12,4,14,0,4,'',279,95113); +INSERT INTO "weather" VALUES('2/21/2015',71,58,45,50,45,40,83,58,33,29.97,29.9,29.83,10,10,10,17,3,20,0,2,'',300,95113); +INSERT INTO "weather" VALUES('2/22/2015',65,56,46,49,36,23,82,55,27,29.88,29.85,29.82,10,10,10,17,7,32,0,2,'',305,95113); +INSERT INTO "weather" VALUES('2/23/2015',62,54,45,31,22,14,42,31,20,30.24,30.05,29.88,10,10,10,20,9,25,0,1,'',309,95113); +INSERT INTO "weather" VALUES('2/24/2015',66,51,35,41,29,19,70,43,16,30.37,30.31,30.26,10,10,10,14,4,18,0,1,'',294,95113); +INSERT INTO "weather" VALUES('2/25/2015',68,54,40,49,40,30,83,60,37,30.31,30.21,30.09,10,10,10,17,5,22,0,2,'',315,95113); +INSERT INTO "weather" VALUES('2/26/2015',69,58,46,50,45,41,86,63,39,30.09,30.01,29.94,10,10,10,20,6,23,0,3,'',309,95113); +INSERT INTO "weather" VALUES('2/27/2015',63,57,51,50,46,41,89,72,55,29.93,29.86,29.77,10,10,10,22,10,26,0,4,'',284,95113); +INSERT INTO "weather" VALUES('2/28/2015',60,52,44,45,43,37,86,69,51,29.93,29.81,29.74,10,10,9,18,4,21,0.04,5,'Rain',143,95113); +INSERT INTO "weather" VALUES('3/1/2015',64,52,39,46,40,36,92,64,36,30,29.95,29.9,10,10,10,17,4,21,0,1,'',282,95113); +INSERT INTO "weather" VALUES('3/2/2015',61,52,43,47,42,38,83,69,55,29.99,29.87,29.8,10,10,9,14,4,18,0.05,4,'Rain',130,95113); +INSERT INTO "weather" VALUES('3/3/2015',64,52,39,47,42,37,89,69,48,30.06,30.01,29.96,10,10,10,14,5,17,0,1,'',312,95113); +INSERT INTO "weather" VALUES('3/4/2015',68,55,41,44,37,25,89,55,20,30.23,30.13,30.04,10,10,10,9,4,'',0,1,'',176,95113); +INSERT INTO "weather" VALUES('3/5/2015',76,59,41,43,38,35,76,51,25,30.34,30.28,30.24,10,10,10,13,4,'',0,0,'',260,95113); +INSERT INTO "weather" VALUES('3/6/2015',72,58,44,44,40,37,76,54,31,30.3,30.23,30.15,10,10,10,12,3,'',0,0,'',303,95113); +INSERT INTO "weather" VALUES('3/7/2015',76,60,44,51,42,36,77,54,31,30.14,30.07,29.99,10,10,10,12,4,14,0,0,'',300,95113); +INSERT INTO "weather" VALUES('3/8/2015',71,60,49,53,49,45,96,70,44,30.12,30.06,29.99,10,8,4,14,4,16,0,4,'',301,95113); +INSERT INTO "weather" VALUES('3/9/2015',72,62,51,53,49,47,89,68,47,30.07,30,29.91,10,9,4,9,3,13,0,5,'',305,95113); +INSERT INTO "weather" VALUES('3/10/2015',75,62,49,54,51,46,93,70,46,30,29.95,29.92,10,7,2,20,4,23,0,6,'',262,95113); +INSERT INTO "weather" VALUES('3/11/2015',70,62,53,54,51,47,93,71,48,30.26,30.12,30,10,9,4,16,7,21,0.1,6,'Rain',296,95113); +INSERT INTO "weather" VALUES('3/12/2015',72,62,51,54,50,46,86,68,49,30.27,30.22,30.13,10,10,9,14,5,17,0,5,'',279,95113); +INSERT INTO "weather" VALUES('3/13/2015',78,65,51,54,50,47,83,60,36,30.18,30.13,30.06,10,10,10,14,3,17,'T',5,'',299,95113); +INSERT INTO "weather" VALUES('3/14/2015',89,72,54,52,43,31,83,49,14,30.12,30.04,29.95,10,10,10,15,4,21,0,4,'',144,95113); +INSERT INTO "weather" VALUES('3/15/2015',80,68,56,52,41,36,72,47,21,30.07,30.03,29.99,10,10,10,23,8,25,0,5,'',214,95113); +INSERT INTO "weather" VALUES('3/16/2015',72,63,53,53,47,40,72,60,47,30.06,30.03,29.98,10,10,10,18,5,22,0,6,'',277,95113); +INSERT INTO "weather" VALUES('3/17/2015',69,61,52,52,48,41,86,62,37,30.14,30.08,30.04,10,10,10,20,8,24,0,4,'',316,95113); +INSERT INTO "weather" VALUES('3/18/2015',72,60,47,50,46,42,83,61,38,30.08,30.04,29.99,10,10,10,16,5,22,0,1,'',301,95113); +INSERT INTO "weather" VALUES('3/19/2015',80,64,48,52,46,40,86,56,26,30.08,30.04,29.98,10,10,10,16,5,20,0,2,'',289,95113); +INSERT INTO "weather" VALUES('3/20/2015',72,60,48,51,43,33,80,54,27,30.17,30.1,30.05,10,10,10,17,5,20,0,5,'',291,95113); +INSERT INTO "weather" VALUES('3/21/2015',72,61,49,52,49,42,80,58,35,30.19,30.15,30.08,10,10,10,15,5,18,0,5,'',288,95113); +INSERT INTO "weather" VALUES('3/22/2015',71,63,55,54,49,42,86,63,40,30.21,30.16,30.12,10,10,10,18,7,23,'T',6,'Rain',152,95113); +INSERT INTO "weather" VALUES('3/23/2015',66,60,53,52,47,38,93,68,42,30.32,30.26,30.2,10,10,7,21,8,25,0.04,6,'Rain',305,95113); +INSERT INTO "weather" VALUES('3/24/2015',67,59,50,51,47,41,80,66,52,30.32,30.27,30.22,10,10,10,16,8,22,0,5,'',303,95113); +INSERT INTO "weather" VALUES('3/25/2015',74,62,50,53,49,47,89,64,38,30.25,30.2,30.13,10,10,10,20,6,25,0,2,'',291,95113); +INSERT INTO "weather" VALUES('3/26/2015',85,69,52,55,50,44,83,55,26,30.18,30.11,30.04,10,10,10,13,3,15,0,0,'',290,95113); +INSERT INTO "weather" VALUES('3/27/2015',70,63,55,56,52,48,93,74,55,30.18,30.13,30.08,10,10,10,20,6,23,0,1,'',307,95113); +INSERT INTO "weather" VALUES('3/28/2015',78,64,49,52,47,42,83,56,29,30.19,30.13,30.06,10,10,10,17,6,29,0,2,'',304,95113); +INSERT INTO "weather" VALUES('3/29/2015',79,63,46,52,47,41,80,55,29,30.13,30.07,30,10,10,10,15,4,17,0,1,'',291,95113); +INSERT INTO "weather" VALUES('3/30/2015',71,61,50,52,48,44,86,70,53,30.1,30.05,30.01,10,10,10,21,6,23,0,3,'',317,95113); +INSERT INTO "weather" VALUES('3/31/2015',68,59,50,50,43,37,77,57,37,30.2,30.15,30.1,10,10,10,23,9,30,0,1,'',297,95113); +INSERT INTO "weather" VALUES('4/1/2015',65,56,47,41,38,33,71,53,34,30.2,30.15,30.09,10,10,10,23,7,28,0,2,'',302,95113); +INSERT INTO "weather" VALUES('4/2/2015',70,57,44,41,35,28,71,47,22,30.2,30.16,30.13,10,10,10,21,7,24,0,0,'',296,95113); +INSERT INTO "weather" VALUES('4/3/2015',73,59,44,44,35,29,65,43,20,30.23,30.17,30.12,10,10,10,22,7,26,0,0,'',330,95113); +INSERT INTO "weather" VALUES('4/4/2015',66,54,41,41,37,32,70,55,39,30.13,30.06,29.99,10,10,10,24,8,30,0,2,'',314,95113); +INSERT INTO "weather" VALUES('4/5/2015',62,53,43,44,38,34,76,60,43,29.99,29.93,29.9,10,10,10,18,8,24,0,4,'',201,95113); +INSERT INTO "weather" VALUES('4/6/2015',64,53,41,41,37,33,76,55,34,29.99,29.94,29.88,10,10,10,18,8,23,0,4,'',143,95113); +INSERT INTO "weather" VALUES('4/7/2015',61,54,47,53,42,36,100,70,39,30.08,29.91,29.79,10,9,3,21,9,28,0,5,'Rain',192,95113); +INSERT INTO "weather" VALUES('4/8/2015',64,56,48,45,42,37,71,57,43,30.19,30.12,30.08,10,10,10,17,7,22,0,4,'',259,95113); +INSERT INTO "weather" VALUES('4/9/2015',70,57,44,45,40,30,83,55,26,30.1,30.01,29.93,10,10,10,20,5,24,0,3,'',301,95113); +INSERT INTO "weather" VALUES('4/10/2015',70,58,46,47,42,31,82,58,33,30.07,30.02,29.99,10,10,10,16,6,20,0,2,'',301,95113); +INSERT INTO "weather" VALUES('4/11/2015',71,58,45,52,43,37,86,62,37,30.09,30.05,30.01,10,10,10,22,7,26,0,3,'',317,95113); +INSERT INTO "weather" VALUES('4/12/2015',78,63,47,51,47,42,89,60,31,30.06,30.01,29.95,10,10,10,16,4,23,0,1,'',280,95113); +INSERT INTO "weather" VALUES('4/13/2015',65,58,51,50,47,40,83,65,46,30.17,30.07,30.01,10,10,9,22,9,28,'T',3,'',304,95113); +INSERT INTO "weather" VALUES('4/14/2015',66,57,47,45,34,20,68,43,18,30.33,30.26,30.19,10,10,10,22,11,28,0,1,'',290,95113); +INSERT INTO "weather" VALUES('4/15/2015',73,60,46,44,36,30,71,47,22,30.23,30.11,30.01,10,10,8,20,10,25,0,2,'',293,95113); +INSERT INTO "weather" VALUES('4/16/2015',80,64,48,45,35,28,71,44,16,30.07,30.01,29.95,10,10,10,18,7,22,0,0,'',303,95113); +INSERT INTO "weather" VALUES('4/17/2015',79,65,50,50,39,33,83,51,19,30.09,30.05,30,10,10,10,17,6,22,0,0,'',274,95113); +INSERT INTO "weather" VALUES('4/18/2015',75,63,51,53,49,44,89,65,41,30.07,30,29.92,10,10,9,16,5,18,0,2,'',295,95113); +INSERT INTO "weather" VALUES('4/19/2015',70,60,50,54,49,46,89,70,51,29.99,29.94,29.87,10,10,8,15,6,20,0,4,'',276,95113); +INSERT INTO "weather" VALUES('4/20/2015',69,62,55,53,50,48,83,69,55,29.91,29.87,29.83,10,9,4,14,6,18,0,5,'',300,95113); +INSERT INTO "weather" VALUES('4/21/2015',69,62,55,49,47,46,77,65,52,29.91,29.87,29.84,10,10,9,14,7,20,0,6,'',173,95113); +INSERT INTO "weather" VALUES('4/22/2015',71,62,53,52,48,46,83,65,47,29.9,29.87,29.84,10,10,10,22,8,25,0,4,'',150,95113); +INSERT INTO "weather" VALUES('4/23/2015',71,62,53,51,47,44,83,65,47,29.92,29.88,29.84,10,10,10,18,10,22,0,6,'',110,95113); +INSERT INTO "weather" VALUES('4/24/2015',67,59,50,46,42,37,77,57,37,30.04,29.99,29.93,10,10,10,23,10,36,'T',4,'Rain',252,95113); +INSERT INTO "weather" VALUES('4/25/2015',64,58,52,55,48,39,100,74,48,30.09,29.98,29.9,10,9,3,20,10,26,0.33,6,'Rain',300,95113); +INSERT INTO "weather" VALUES('4/26/2015',72,60,48,51,43,37,80,55,29,30.16,30.1,30.06,10,10,10,21,8,24,0,2,'',317,95113); +INSERT INTO "weather" VALUES('4/27/2015',84,68,52,53,49,46,86,57,27,30.06,30,29.92,10,10,10,21,7,24,0,2,'',298,95113); +INSERT INTO "weather" VALUES('4/28/2015',70,62,53,53,50,48,89,70,51,30.06,30.04,30.01,10,10,8,16,6,21,0,5,'',313,95113); +INSERT INTO "weather" VALUES('4/29/2015',72,62,52,51,49,47,89,67,44,30.04,29.98,29.9,10,10,10,14,5,20,0,1,'',296,95113); +INSERT INTO "weather" VALUES('4/30/2015',88,69,50,49,44,35,77,49,20,29.89,29.84,29.76,10,10,10,15,4,18,0,1,'',304,95113); +INSERT INTO "weather" VALUES('5/1/2015',84,71,57,53,48,41,86,56,25,29.91,29.84,29.8,10,10,10,18,7,22,0,1,'',251,95113); +INSERT INTO "weather" VALUES('5/2/2015',74,63,51,54,50,47,83,65,46,29.9,29.87,29.81,10,10,9,16,7,20,0,2,'',260,95113); +INSERT INTO "weather" VALUES('5/3/2015',70,61,51,51,48,46,83,66,48,29.92,29.88,29.86,10,10,10,17,9,23,0,2,'',288,95113); +INSERT INTO "weather" VALUES('5/4/2015',65,58,50,49,46,43,77,66,55,29.99,29.96,29.92,10,10,10,22,7,28,0,4,'',296,95113); +INSERT INTO "weather" VALUES('5/5/2015',70,60,50,47,44,41,83,62,40,29.98,29.95,29.9,10,10,10,20,8,23,0,1,'',133,95113); +INSERT INTO "weather" VALUES('5/6/2015',71,60,48,47,44,42,80,62,44,29.93,29.87,29.8,10,10,10,20,9,24,0,1,'',114,95113); +INSERT INTO "weather" VALUES('5/7/2015',59,54,48,47,45,42,80,67,53,29.83,29.78,29.75,10,10,8,15,7,20,0.03,5,'Rain',121,95113); +INSERT INTO "weather" VALUES('5/8/2015',73,62,50,50,47,45,83,62,41,30.03,29.88,29.77,10,10,10,16,9,22,0,2,'',76,95113); +INSERT INTO "weather" VALUES('5/9/2015',68,61,54,51,48,46,83,68,52,30.11,30.08,30.04,10,10,10,17,7,22,0,5,'',321,95113); +INSERT INTO "weather" VALUES('5/10/2015',68,61,54,52,48,46,83,66,48,30.09,30.05,29.99,10,10,10,17,5,21,0,5,'',320,95113); +INSERT INTO "weather" VALUES('5/11/2015',66,58,50,47,45,40,83,68,52,30,29.96,29.91,10,10,10,18,7,23,0,3,'',238,95113); +INSERT INTO "weather" VALUES('5/12/2015',65,56,46,41,39,36,77,56,34,30,29.96,29.91,10,10,10,24,10,30,0,4,'',281,95113); +INSERT INTO "weather" VALUES('5/13/2015',67,58,48,44,41,39,71,57,42,29.98,29.94,29.9,10,10,10,17,6,22,0,4,'',291,95113); +INSERT INTO "weather" VALUES('5/14/2015',68,61,53,55,48,43,77,60,42,29.9,29.83,29.8,10,9,2,20,5,24,0.47,7,'Rain',51,95113); +INSERT INTO "weather" VALUES('5/15/2015',65,59,52,50,47,45,83,68,52,29.99,29.92,29.86,10,10,10,20,8,24,0,5,'',300,95113); +INSERT INTO "weather" VALUES('5/16/2015',67,59,50,51,47,44,80,66,52,30.05,30,29.97,10,10,10,20,8,24,0,5,'',235,95113); +INSERT INTO "weather" VALUES('5/17/2015',65,60,55,49,47,45,72,64,56,30.08,30.04,30.02,10,10,10,20,8,24,0,6,'',288,95113); +INSERT INTO "weather" VALUES('5/18/2015',65,60,54,49,47,46,77,67,56,30.13,30.08,30.05,10,10,10,12,7,13,0,7,'',304,95113); +INSERT INTO "weather" VALUES('5/19/2015',66,60,54,51,48,46,77,69,60,30.12,30.07,30.01,10,10,10,20,7,23,'T',6,'',297,95113); +INSERT INTO "weather" VALUES('5/20/2015',67,61,55,50,47,45,72,62,52,30.01,29.97,29.93,10,10,10,21,8,25,0,6,'',290,95113); +INSERT INTO "weather" VALUES('5/21/2015',68,62,55,52,48,46,80,64,48,29.99,29.95,29.92,10,10,10,16,7,18,0,7,'',295,95113); +INSERT INTO "weather" VALUES('5/22/2015',68,61,54,52,49,46,86,72,58,30.09,30.02,29.99,10,10,10,23,8,26,'T',7,'',276,95113); +INSERT INTO "weather" VALUES('5/23/2015',68,62,55,50,48,46,77,65,52,30.11,30.08,30.04,10,10,10,17,8,25,0,5,'',289,95113); +INSERT INTO "weather" VALUES('5/24/2015',70,61,52,53,49,46,83,64,45,30.06,30,29.96,10,10,10,21,9,26,0,2,'',310,95113); +INSERT INTO "weather" VALUES('5/25/2015',69,63,56,52,50,48,80,68,55,30,29.97,29.94,10,10,10,20,8,24,0,5,'',308,95113); +INSERT INTO "weather" VALUES('5/26/2015',69,63,57,52,50,48,80,68,55,30.02,29.99,29.96,10,10,10,18,8,23,0,5,'',321,95113); +INSERT INTO "weather" VALUES('5/27/2015',72,65,57,54,50,48,80,65,49,30.04,30.01,29.99,10,10,10,22,8,28,0,5,'',323,95113); +INSERT INTO "weather" VALUES('5/28/2015',69,62,55,54,51,49,86,72,58,30.06,30.02,29.97,10,10,10,17,8,22,0,6,'',311,95113); +INSERT INTO "weather" VALUES('5/29/2015',69,62,54,54,52,50,86,72,57,30.01,29.98,29.93,10,10,10,16,6,20,0,6,'',308,95113); +INSERT INTO "weather" VALUES('5/30/2015',73,63,53,56,52,50,86,70,53,29.97,29.94,29.88,10,10,8,18,6,22,0,6,'',311,95113); +INSERT INTO "weather" VALUES('5/31/2015',69,63,57,53,51,48,80,67,53,29.99,29.93,29.9,10,10,7,17,7,22,0,6,'',311,95113); +INSERT INTO "weather" VALUES('6/1/2015',75,65,54,55,52,47,78,64,49,30.06,30.01,29.97,10,10,10,18,10,23,0,5,'',320,95113); +INSERT INTO "weather" VALUES('6/2/2015',70,64,58,55,52,49,80,68,55,30.09,30.03,29.98,10,10,10,18,8,30,0,5,'',299,95113); +INSERT INTO "weather" VALUES('6/3/2015',72,63,53,50,49,47,77,62,47,29.98,29.94,29.9,10,10,10,18,7,24,0,4,'',248,95113); +INSERT INTO "weather" VALUES('6/4/2015',75,64,53,53,50,47,83,64,44,29.88,29.83,29.78,10,10,10,15,8,23,0,1,'',145,95113); +INSERT INTO "weather" VALUES('6/5/2015',78,66,54,57,53,49,89,68,46,29.85,29.81,29.78,10,10,10,17,9,20,0,2,'',233,95113); +INSERT INTO "weather" VALUES('6/6/2015',79,67,55,58,54,51,86,64,42,29.93,29.88,29.85,10,10,10,16,8,21,0,2,'',197,95113); +INSERT INTO "weather" VALUES('6/7/2015',82,71,60,59,56,54,84,63,42,29.92,29.88,29.82,10,10,8,14,5,17,0,3,'',295,95113); +INSERT INTO "weather" VALUES('6/8/2015',91,76,60,60,56,49,84,57,29,29.88,29.83,29.75,10,10,10,20,6,25,0,1,'',300,95113); +INSERT INTO "weather" VALUES('6/9/2015',85,73,60,60,56,49,90,64,37,29.91,29.86,29.82,10,10,10,20,5,24,'T',6,'',296,95113); +INSERT INTO "weather" VALUES('6/10/2015',73,68,62,65,61,59,87,77,66,29.94,29.9,29.87,10,10,8,16,5,18,0.1,6,'Rain',299,95113); +INSERT INTO "weather" VALUES('6/11/2015',82,71,60,63,60,56,100,77,54,29.91,29.87,29.8,10,7,1,18,6,22,0,5,'',302,95113); +INSERT INTO "weather" VALUES('6/12/2015',86,72,58,59,57,54,93,65,37,29.84,29.79,29.73,10,10,9,16,6,20,0,0,'',297,95113); +INSERT INTO "weather" VALUES('6/13/2015',85,72,59,61,56,52,90,66,42,29.78,29.76,29.73,10,10,9,17,6,21,0,0,'',289,95113); +INSERT INTO "weather" VALUES('6/14/2015',75,65,55,57,52,50,86,66,46,29.87,29.81,29.76,10,10,10,16,9,21,0,2,'',158,95113); +INSERT INTO "weather" VALUES('6/15/2015',69,62,54,54,52,50,86,72,58,29.97,29.9,29.86,10,9,4,16,6,21,0,3,'',327,95113); +INSERT INTO "weather" VALUES('6/16/2015',76,65,53,55,52,48,89,68,46,29.96,29.94,29.91,10,10,7,13,5,'',0,2,'',294,95113); +INSERT INTO "weather" VALUES('6/17/2015',79,66,53,54,52,49,86,64,42,29.96,29.92,29.88,10,9,6,15,6,20,0,3,'',312,95113); +INSERT INTO "weather" VALUES('6/18/2015',75,64,53,55,50,45,89,62,35,30.02,29.98,29.93,10,10,9,15,6,22,0,1,'',304,95113); +INSERT INTO "weather" VALUES('6/19/2015',80,66,52,51,49,46,83,58,32,30.01,29.98,29.93,10,10,8,20,7,23,0,2,'',308,95113); +INSERT INTO "weather" VALUES('6/20/2015',80,68,56,56,53,51,86,64,42,29.93,29.89,29.85,10,10,10,14,6,17,0,4,'',293,95113); +INSERT INTO "weather" VALUES('6/21/2015',73,65,56,55,52,48,93,69,44,30.03,29.98,29.9,10,10,8,18,8,23,0,3,'',313,95113); +INSERT INTO "weather" VALUES('6/22/2015',71,63,55,55,52,51,86,70,53,30.06,30.03,30,10,10,10,17,7,21,0,2,'',307,95113); +INSERT INTO "weather" VALUES('6/23/2015',78,66,54,55,50,47,83,62,40,30.02,29.98,29.94,10,10,10,20,7,31,0,0,'',319,95113); +INSERT INTO "weather" VALUES('6/24/2015',81,68,55,55,52,48,86,62,37,29.96,29.92,29.87,10,10,10,15,5,18,0,0,'',298,95113); +INSERT INTO "weather" VALUES('6/25/2015',89,74,58,58,53,51,78,54,29,29.91,29.88,29.83,10,10,10,15,6,25,0,0,'',289,95113); +INSERT INTO "weather" VALUES('6/26/2015',84,73,61,59,56,49,84,64,43,29.96,29.91,29.87,10,10,10,16,6,22,0,2,'',297,95113); +INSERT INTO "weather" VALUES('6/27/2015',81,69,57,58,55,50,86,62,37,30,29.97,29.94,10,10,10,16,9,21,0,5,'',251,95113); +INSERT INTO "weather" VALUES('6/28/2015',75,68,61,59,57,56,90,74,57,30.01,29.99,29.96,10,10,10,16,8,21,0,4,'',303,95113); +INSERT INTO "weather" VALUES('6/29/2015',78,69,59,57,56,54,87,67,47,30.02,29.97,29.91,10,10,10,15,8,18,0,5,'',306,95113); +INSERT INTO "weather" VALUES('6/30/2015',92,77,61,60,56,51,90,58,26,29.92,29.87,29.78,10,10,10,13,5,16,0,4,'',304,95113); +INSERT INTO "weather" VALUES('7/1/2015',91,77,62,62,59,50,90,61,31,29.91,29.87,29.82,10,10,10,17,7,22,'T',4,'',301,95113); +INSERT INTO "weather" VALUES('7/2/2015',79,71,63,61,60,58,87,71,54,29.96,29.93,29.89,10,10,10,13,7,16,0,5,'',302,95113); +INSERT INTO "weather" VALUES('7/3/2015',81,72,62,62,59,56,90,71,51,29.96,29.91,29.85,10,10,10,18,7,22,'T',2,'',294,95113); +INSERT INTO "weather" VALUES('7/4/2015',79,71,62,61,59,57,90,72,54,29.89,29.86,29.82,10,10,6,16,7,21,0,3,'',305,95113); +INSERT INTO "weather" VALUES('7/5/2015',81,71,60,60,57,55,84,66,47,30,29.93,29.88,10,10,6,18,10,21,0,4,'',151,95113); +INSERT INTO "weather" VALUES('7/6/2015',77,70,63,58,57,56,84,67,50,30.09,30.04,30,10,10,10,22,9,26,0,5,'',318,95113); +INSERT INTO "weather" VALUES('7/7/2015',77,69,61,60,57,55,84,69,54,30.04,29.98,29.9,10,10,10,22,9,28,0,5,'',309,95113); +INSERT INTO "weather" VALUES('7/8/2015',73,67,60,57,54,53,84,69,53,29.91,29.87,29.81,10,10,10,20,8,33,0,5,'',303,95113); +INSERT INTO "weather" VALUES('7/9/2015',74,68,61,57,54,52,78,66,53,29.9,29.87,29.83,10,10,10,17,8,22,'T',7,'',281,95113); +INSERT INTO "weather" VALUES('7/10/2015',73,67,61,56,55,53,78,68,57,29.96,29.92,29.89,10,10,10,17,7,21,'T',6,'',308,95113); +INSERT INTO "weather" VALUES('7/11/2015',75,67,58,55,53,52,78,66,53,30.01,29.97,29.93,10,10,10,24,7,28,0,3,'',311,95113); +INSERT INTO "weather" VALUES('7/12/2015',76,69,61,56,54,52,73,60,46,30.05,30.02,30,10,10,10,23,9,28,0,5,'',312,95113); +INSERT INTO "weather" VALUES('7/13/2015',78,69,60,58,56,54,84,67,50,30.04,29.99,29.94,10,10,10,22,9,29,0,4,'',308,95113); +INSERT INTO "weather" VALUES('7/14/2015',74,67,59,57,56,55,84,69,53,29.95,29.92,29.88,10,10,10,23,8,26,0,3,'',322,95113); +INSERT INTO "weather" VALUES('7/15/2015',83,72,60,60,56,54,78,59,40,29.91,29.87,29.83,10,10,10,16,9,20,0,3,'',139,95113); +INSERT INTO "weather" VALUES('7/16/2015',85,72,58,59,56,55,93,67,40,29.92,29.89,29.84,10,10,10,20,9,24,0,1,'',139,95113); +INSERT INTO "weather" VALUES('7/17/2015',81,70,59,59,56,54,87,67,47,29.88,29.83,29.77,10,10,10,16,7,20,0,2,'',242,95113); +INSERT INTO "weather" VALUES('7/18/2015',79,69,58,57,55,53,84,65,46,30.01,29.9,29.84,10,10,10,20,7,23,0,3,'',297,95113); +INSERT INTO "weather" VALUES('7/19/2015',89,77,64,62,57,54,73,56,38,30.06,30.03,29.99,10,10,10,20,6,22,'T',5,'Rain',291,95113); +INSERT INTO "weather" VALUES('7/20/2015',87,76,64,63,59,55,78,61,43,30.04,29.98,29.93,10,10,10,21,8,26,0,3,'',291,95113); +INSERT INTO "weather" VALUES('7/21/2015',76,69,62,60,57,56,84,69,54,29.94,29.9,29.85,10,10,10,17,7,21,0,3,'',310,95113); +INSERT INTO "weather" VALUES('7/22/2015',77,68,59,57,55,54,84,69,53,29.92,29.87,29.83,10,10,10,21,10,25,0,1,'',346,95113); +INSERT INTO "weather" VALUES('7/23/2015',73,65,57,55,53,51,80,65,49,30.06,29.99,29.92,10,10,10,18,8,23,0,3,'',344,95113); +INSERT INTO "weather" VALUES('7/24/2015',78,67,55,54,51,46,80,60,39,30.13,30.09,30.06,10,10,10,21,7,24,0,0,'',316,95113); +INSERT INTO "weather" VALUES('7/25/2015',75,67,58,58,56,53,86,72,57,30.1,30.05,30,10,10,10,18,8,23,0,2,'',311,95113); +INSERT INTO "weather" VALUES('7/26/2015',79,70,60,58,55,52,84,66,47,29.99,29.95,29.92,10,10,10,21,6,25,0,3,'',335,95113); +INSERT INTO "weather" VALUES('7/27/2015',86,72,58,57,53,50,80,56,32,29.96,29.92,29.87,10,10,10,23,7,28,0,0,'',288,95113); +INSERT INTO "weather" VALUES('7/28/2015',94,77,60,57,50,42,78,49,19,29.89,29.86,29.81,10,10,10,18,6,23,0,0,'',295,95113); +INSERT INTO "weather" VALUES('7/29/2015',89,77,64,59,53,47,78,51,23,29.96,29.9,29.86,10,10,10,17,6,22,0,0,'',269,95113); +INSERT INTO "weather" VALUES('7/30/2015',81,72,63,63,60,58,90,72,54,30.04,29.99,29.95,10,10,10,14,6,17,0,3,'',298,95113); +INSERT INTO "weather" VALUES('7/31/2015',78,71,63,61,59,58,87,69,50,30.03,30,29.95,10,10,8,17,7,21,'T',4,'Rain',312,95113); +INSERT INTO "weather" VALUES('8/1/2015',81,71,61,60,58,56,84,65,45,30.03,29.98,29.92,10,10,9,16,7,21,0,2,'',315,95113); +INSERT INTO "weather" VALUES('8/2/2015',76,70,63,59,57,55,84,67,50,29.99,29.95,29.9,10,10,10,18,8,22,0,5,'',318,95113); +INSERT INTO "weather" VALUES('8/3/2015',77,69,61,56,54,52,78,62,46,29.98,29.95,29.92,10,10,10,21,9,24,0,4,'',293,95113); +INSERT INTO "weather" VALUES('8/4/2015',76,67,58,55,53,51,80,63,46,30.02,29.99,29.96,10,10,10,18,8,23,0,4,'',289,95113); +INSERT INTO "weather" VALUES('8/5/2015',79,69,58,61,56,52,78,62,45,30.06,29.99,29.91,10,10,10,14,5,22,0,4,'',298,95113); +INSERT INTO "weather" VALUES('8/6/2015',78,70,61,61,59,57,90,70,50,29.91,29.87,29.8,10,10,8,21,5,26,0.02,5,'Rain',305,95113); +INSERT INTO "weather" VALUES('8/7/2015',83,72,60,59,56,54,84,62,40,29.91,29.87,29.83,10,10,10,17,8,24,0,1,'',317,95113); +INSERT INTO "weather" VALUES('8/8/2015',78,69,60,58,56,54,84,66,48,29.95,29.93,29.91,10,10,10,20,7,24,0,3,'',50,95113); +INSERT INTO "weather" VALUES('8/9/2015',78,68,57,59,55,52,80,62,43,29.96,29.93,29.9,10,10,10,18,6,22,0,2,'',308,95113); +INSERT INTO "weather" VALUES('8/10/2015',80,70,60,60,57,54,90,69,47,29.98,29.93,29.9,10,10,10,21,8,26,0,3,'',329,95113); +INSERT INTO "weather" VALUES('8/11/2015',82,71,60,59,57,54,90,67,43,29.99,29.93,29.9,10,10,10,21,7,26,0.02,4,'',309,95113); +INSERT INTO "weather" VALUES('8/12/2015',81,69,57,62,56,51,87,63,39,30.06,30.02,29.99,10,10,10,21,7,26,0,1,'',310,95113); +INSERT INTO "weather" VALUES('8/13/2015',80,72,64,63,58,52,87,63,39,30.06,30.03,29.99,10,10,10,21,9,25,0,3,'',317,95113); +INSERT INTO "weather" VALUES('8/14/2015',79,72,64,61,58,55,87,66,45,30.1,30.04,29.99,10,10,10,17,8,22,0,4,'',315,95113); +INSERT INTO "weather" VALUES('8/15/2015',93,76,59,58,54,47,84,52,20,30,29.94,29.87,10,8,5,20,6,22,0,4,'',288,95113); +INSERT INTO "weather" VALUES('8/16/2015',97,82,66,63,56,50,87,54,21,29.91,29.86,29.79,9,7,5,17,5,20,0,4,'',289,95113); +INSERT INTO "weather" VALUES('8/17/2015',91,77,63,63,58,52,87,57,26,29.91,29.84,29.8,10,8,6,15,6,20,0,1,'',295,95113); +INSERT INTO "weather" VALUES('8/18/2015',81,70,58,61,58,55,87,68,48,29.93,29.9,29.86,10,8,5,14,8,24,0,2,'',283,95113); +INSERT INTO "weather" VALUES('8/19/2015',77,69,61,60,57,54,84,67,49,29.95,29.92,29.88,10,9,6,17,7,21,'T',4,'',341,95113); +INSERT INTO "weather" VALUES('8/20/2015',75,69,62,59,58,57,84,71,57,29.93,29.89,29.85,10,10,9,15,6,18,0,4,'',318,95113); +INSERT INTO "weather" VALUES('8/21/2015',79,70,60,60,57,55,84,67,50,29.91,29.88,29.85,10,10,8,16,8,21,0,3,'',225,95113); +INSERT INTO "weather" VALUES('8/22/2015',81,70,59,60,56,55,87,66,45,29.95,29.9,29.86,10,10,10,16,7,20,0,4,'',123,95113); +INSERT INTO "weather" VALUES('8/23/2015',77,69,60,59,57,55,90,72,54,30.02,29.98,29.94,10,10,10,16,7,20,0,6,'',312,95113); +INSERT INTO "weather" VALUES('8/24/2015',77,70,62,59,57,57,84,67,50,30.06,30.01,29.96,10,10,9,15,7,18,0,3,'',305,95113); +INSERT INTO "weather" VALUES('8/25/2015',80,70,59,60,58,57,90,71,52,30.01,29.98,29.93,10,9,6,16,6,20,0,4,'',301,95113); +INSERT INTO "weather" VALUES('8/26/2015',86,73,59,59,54,40,90,55,20,30.04,30,29.96,10,9,5,14,5,17,0,3,'',303,95113); +INSERT INTO "weather" VALUES('8/27/2015',92,78,63,57,51,40,78,48,18,30.05,30.01,29.96,10,10,10,23,6,29,0,3,'',313,95113); +INSERT INTO "weather" VALUES('8/28/2015',95,80,64,64,56,52,93,60,26,29.96,29.89,29.83,10,10,10,25,7,30,0,3,'',307,95113); +INSERT INTO "weather" VALUES('8/29/2015',80,72,64,65,62,54,93,70,47,30.01,29.96,29.92,10,10,10,21,9,26,0,4,'',312,95113); +INSERT INTO "weather" VALUES('8/30/2015',78,70,62,60,57,53,84,64,43,30.06,30.01,29.95,10,10,10,22,10,29,0,3,'',291,95113); +INSERT INTO "weather" VALUES('8/31/2015',85,72,59,59,55,51,84,58,32,29.95,29.9,29.85,10,10,10,20,6,24,0,1,'',308,95113); +COMMIT; diff --git a/database/body_builder/body_builder.sqlite b/database/body_builder/body_builder.sqlite new file mode 100644 index 0000000000000000000000000000000000000000..26697b32a41ddfeb9ddbb8e3d5bec6720f0ded25 Binary files /dev/null and b/database/body_builder/body_builder.sqlite differ diff --git a/database/body_builder/schema.sql b/database/body_builder/schema.sql new file mode 100644 index 0000000000000000000000000000000000000000..53f734f1de713714ac389f98436a6b8846554134 --- /dev/null +++ b/database/body_builder/schema.sql @@ -0,0 +1,37 @@ +PRAGMA foreign_keys = ON; + +CREATE TABLE "body_builder" ( +"Body_Builder_ID" int, +"People_ID" int, +"Snatch" real, +"Clean_Jerk" real, +"Total" real, +PRIMARY KEY ("Body_Builder_ID"), +FOREIGN KEY ("People_ID") REFERENCES `people`("People_ID") +); + +CREATE TABLE "people" ( +"People_ID" int, +"Name" text, +"Height" real, +"Weight" real, +"Birth_Date" text, +"Birth_Place" text, +PRIMARY KEY ("People_ID") +); + +INSERT INTO "people" VALUES (1,"Jack Campbell","182","80","January 1, 1992","Port Huron, Michigan"); +INSERT INTO "people" VALUES (2,"Ty Conklin","192","90","March 30, 1976","Anchorage, Alaska"); +INSERT INTO "people" VALUES (3,"Al Montoya","195","100","February 13, 1985","Glenview, Illinois"); +INSERT INTO "people" VALUES (4,"Mark Fayne","215","102","May 5, 1987","Nashua, New Hampshire"); +INSERT INTO "people" VALUES (5,"Cam Fowler","196","89","December 5, 1991","Farmington Hills, Michigan"); +INSERT INTO "people" VALUES (6,"Jake Gardiner","205","92","July 4, 1990","Minnetonka, Minnesota"); + + +INSERT INTO "body_builder" VALUES (1,1,"142.5","175.0","317.5"); +INSERT INTO "body_builder" VALUES (2,2,"137.5","177.5","315.0"); +INSERT INTO "body_builder" VALUES (3,3,"140.0","175.0","315.0"); +INSERT INTO "body_builder" VALUES (4,5,"137.5","175.0","312.5"); +INSERT INTO "body_builder" VALUES (5,6,"130.0","162.5","292.5"); + + diff --git a/database/book_2/book_2.sqlite b/database/book_2/book_2.sqlite new file mode 100644 index 0000000000000000000000000000000000000000..1b9ebd483445c938758f99126495e84235fb869e Binary files /dev/null and b/database/book_2/book_2.sqlite differ diff --git a/database/book_2/schema.sql b/database/book_2/schema.sql new file mode 100644 index 0000000000000000000000000000000000000000..a1c37d02bb94da8af823c7d39f5f5a02a246f4d1 --- /dev/null +++ b/database/book_2/schema.sql @@ -0,0 +1,40 @@ +PRAGMA foreign_keys = ON; + +CREATE TABLE "publication" ( +"Publication_ID" int, +"Book_ID" int, +"Publisher" text, +"Publication_Date" text, +"Price" real, +PRIMARY KEY ("Publication_ID"), +FOREIGN KEY ("Book_ID") REFERENCES "book"("Book_ID") +); + +CREATE TABLE "book" ( +"Book_ID" int, +"Title" text, +"Issues" real, +"Writer" text, +PRIMARY KEY ("Book_ID") +); + + +INSERT INTO "book" VALUES (1,"The Black Lamb","6","Timothy Truman"); +INSERT INTO "book" VALUES (2,"Bloody Mary","4","Garth Ennis"); +INSERT INTO "book" VALUES (3,"Bloody Mary : Lady Liberty","4","Garth Ennis"); +INSERT INTO "book" VALUES (4,"BrainBanx","6","Elaine Lee"); +INSERT INTO "book" VALUES (5,"Cyberella","12","Howard Chaykin"); +INSERT INTO "book" VALUES (6,"Dead Corps","4","Christopher Hinz"); +INSERT INTO "book" VALUES (7,"The Dome: Ground Zero","1","Dave Gibbons"); +INSERT INTO "book" VALUES (8,"Gemini Blood","9","Christopher Hinz"); +INSERT INTO "book" VALUES (9,"Michael Moorcock's Multiverse","12","Michael Moorcock"); +INSERT INTO "book" VALUES (10,"Sheva's War","5","Christopher Moeller"); + + +INSERT INTO "publication" VALUES (1,1,"Pearson","August 2008","15000000"); +INSERT INTO "publication" VALUES (2,3,"Thomson Reuters","March 2008","6000000"); +INSERT INTO "publication" VALUES (3,4,"Wiley","June 2006","4100000"); +INSERT INTO "publication" VALUES (4,5,"Wiley","October 2005","3000000"); +INSERT INTO "publication" VALUES (5,7,"Springer Nature","August 2008","3000000"); +INSERT INTO "publication" VALUES (6,9,"Pearson","March 2007","2000000"); +INSERT INTO "publication" VALUES (7,10,"Bertelsmann","April 2007","2000000"); diff --git a/database/browser_web/browser_web.sqlite b/database/browser_web/browser_web.sqlite new file mode 100644 index 0000000000000000000000000000000000000000..cabd9d6e7a3e897488c3e87f16a74e862be618c5 Binary files /dev/null and b/database/browser_web/browser_web.sqlite differ diff --git a/database/browser_web/schema.sql b/database/browser_web/schema.sql new file mode 100644 index 0000000000000000000000000000000000000000..06dd32f1f041c0501ef2df785317206a2cd329fd --- /dev/null +++ b/database/browser_web/schema.sql @@ -0,0 +1,58 @@ +PRAGMA foreign_keys=OFF; +BEGIN TRANSACTION; +CREATE TABLE IF NOT EXISTS "Web_client_accelerator" ( +"id" int, +"name" text, +"Operating_system" text, +"Client" text, +"Connection" text, +primary key("id") +); +INSERT INTO Web_client_accelerator VALUES(1,'CACHEbox','Appliance (Linux)','End user, ISP','Broadband, Satellite, Wireless, Fiber, DSL'); +INSERT INTO Web_client_accelerator VALUES(2,'CProxy','Windows','user','up to 756kbit/s'); +INSERT INTO Web_client_accelerator VALUES(3,'Fasterfox','Windows, Mac, Linux and Mobile devices','user','Dialup, Wireless, Broadband, DSL'); +INSERT INTO Web_client_accelerator VALUES(4,'fasTun','Any','All','Any'); +INSERT INTO Web_client_accelerator VALUES(5,'Freewire','Windows, except NT and 95','ISP','Dial-up'); +INSERT INTO Web_client_accelerator VALUES(6,'Google Web Accelerator (discontinued)','Windows','user/Google server','Broadband'); +INSERT INTO Web_client_accelerator VALUES(7,'Heigh Speed','Windows','All','Any'); +INSERT INTO Web_client_accelerator VALUES(8,'Netfury','Windows, Mac','End User, ISP','Dial-up, Broadband, DSL, ISDN, Satellite, Wireless'); +INSERT INTO Web_client_accelerator VALUES(9,'Nitro','Windows, Mac','End User, ISP','Dial-up, Broadband, DSL, ISDN, Satellite, Wireless'); +INSERT INTO Web_client_accelerator VALUES(10,'ONSPEED','Windows, Mac and Mobile devices','user','Dialup, Wireless, Broadband, DSL'); +INSERT INTO Web_client_accelerator VALUES(11,'Opera Turbo','Android, Linux, Mac and Windows devices','user/Opera server','Any'); +INSERT INTO Web_client_accelerator VALUES(12,'Polipo','Unix (Linux, *BSD, Mac OS X, others), Windows','user/ISP','Any'); +INSERT INTO Web_client_accelerator VALUES(13,'Propel','Windows, Mac','End User, ISP','Dial, DSL, ISDN, Satellite, wireless'); +INSERT INTO Web_client_accelerator VALUES(14,'Proxyconn Web Accelerator','Windows, Mac, Mobile devices','user','Dialup, Wireless, Broadband, DSL'); +INSERT INTO Web_client_accelerator VALUES(15,'RabbIT','Any system with Java 1.6 VM available','ISP','Any'); +INSERT INTO Web_client_accelerator VALUES(16,'Squid','Unix (Linux, *BSD, Mac OS X, others), Windows','user/ISP','Any'); +INSERT INTO Web_client_accelerator VALUES(17,'Toonel','Windows, Linux, Mac OS, Symbian, WindowsMobile','user/ISP','Any'); +INSERT INTO Web_client_accelerator VALUES(18,'WinGate','Windows (2000 onwards)','All','Any'); +INSERT INTO Web_client_accelerator VALUES(19,'Ziproxy','Unix (Linux, *BSD, Mac OS X, others)','ISP','Any'); +CREATE TABLE IF NOT EXISTS "browser" ( +"id" int, +"name" text, +"market_share" real, +primary key("id") +); +INSERT INTO browser VALUES(1,'Internet Explorer',28.960000000000000852); +INSERT INTO browser VALUES(2,'Firefox',18.109999999999999431); +INSERT INTO browser VALUES(3,'Safari',8.5399999999999991473); +INSERT INTO browser VALUES(4,'Opera',1.1999999999999999555); +CREATE TABLE IF NOT EXISTS "accelerator_compatible_browser" ( +"accelerator_id" int, +"browser_id" int, +"compatible_since_year" int, +primary key("accelerator_id", "browser_id"), +foreign key ("accelerator_id") references `Web_client_accelerator`("id"), +foreign key ("browser_id") references `browser`("id") +); +INSERT INTO accelerator_compatible_browser VALUES(1,1,1995); +INSERT INTO accelerator_compatible_browser VALUES(1,2,1996); +INSERT INTO accelerator_compatible_browser VALUES(2,3,1996); +INSERT INTO accelerator_compatible_browser VALUES(2,4,2000); +INSERT INTO accelerator_compatible_browser VALUES(3,1,2005); +INSERT INTO accelerator_compatible_browser VALUES(3,2,2007); +INSERT INTO accelerator_compatible_browser VALUES(3,3,2008); +INSERT INTO accelerator_compatible_browser VALUES(4,4,2009); +INSERT INTO accelerator_compatible_browser VALUES(9,1,2010); +COMMIT; + diff --git a/database/candidate_poll/candidate_poll.sqlite b/database/candidate_poll/candidate_poll.sqlite new file mode 100644 index 0000000000000000000000000000000000000000..457eb2b8e08bca4f203f6595b6c7c4761172c269 Binary files /dev/null and b/database/candidate_poll/candidate_poll.sqlite differ diff --git a/database/candidate_poll/schema.sql b/database/candidate_poll/schema.sql new file mode 100644 index 0000000000000000000000000000000000000000..8395c0a0e7a8a7c40211cbe5694ea497c782889c --- /dev/null +++ b/database/candidate_poll/schema.sql @@ -0,0 +1,42 @@ +PRAGMA foreign_keys = ON; + +CREATE TABLE "candidate" ( +"Candidate_ID" int, +"People_ID" int, +"Poll_Source" text, +"Date" text, +"Support_rate" real, +"Consider_rate" real, +"Oppose_rate" real, +"Unsure_rate" real, +PRIMARY KEY ("Candidate_ID"), +FOREIGN KEY ("People_ID") REFERENCES "people"("People_ID") +); + +CREATE TABLE "people" ( +"People_ID" int, +"Sex" text, +"Name" text, +"Date_of_Birth" text, +"Height" real, +"Weight" real, +PRIMARY KEY ("People_ID") +); + +INSERT INTO "people" VALUES (1,"M","Hubert Henno","06.10.1976","188","83"); +INSERT INTO "people" VALUES (2,"M","Dominique Daquin","10.11.1972","197","85"); +INSERT INTO "people" VALUES (3,"F","Stéphane Antiga","03.02.1976","200","94"); +INSERT INTO "people" VALUES (4,"M","Laurent Capet","05.05.1972","202","92"); +INSERT INTO "people" VALUES (5,"F","Frantz Granvorka","10.03.1976","195","90"); +INSERT INTO "people" VALUES (6,"M","Vincent Montméat","01.09.1977","196","88"); +INSERT INTO "people" VALUES (7,"M","Loïc De Kergret","20.08.1970","193","89"); +INSERT INTO "people" VALUES (8,"M","Philippe Barça-Cysique","22.04.1977","194","88"); +INSERT INTO "people" VALUES (9,"M","Guillaume Samica","28.09.1981","196","82"); + +INSERT INTO "candidate" VALUES (1,1,"WNBC/Marist Poll","Feb 12–15, 2007","0.25","0.30","0.43","0.2"); +INSERT INTO "candidate" VALUES (2,3,"WNBC/Marist Poll","Feb 12–15, 2007","0.17","0.42","0.32","0.9"); +INSERT INTO "candidate" VALUES (3,4,"FOX News/Opinion Dynamics Poll","Feb 13–14, 2007","0.18","0.34","0.44","0.3"); +INSERT INTO "candidate" VALUES (4,6,"Newsweek Poll","Nov 9–10, 2006","0.33","0.20","0.45","0.2"); +INSERT INTO "candidate" VALUES (5,7,"Newsweek Poll","Nov 9–10, 2006","0.24","0.30","0.32","0.4"); +INSERT INTO "candidate" VALUES (6,9,"Newsweek Poll","Nov 9–10, 2006","0.24","0.27","0.43","0.2"); + diff --git a/database/car_1/annotation.json b/database/car_1/annotation.json new file mode 100644 index 0000000000000000000000000000000000000000..54903842d1ac997e747c736d4e33bfded38d795b --- /dev/null +++ b/database/car_1/annotation.json @@ -0,0 +1,62 @@ +{ + "label_id": null, + "data": [ + { + "nl": "Find all Reanults (\u2019renault\u2019) in the database. For each, report the name and the year.\n", + "id": 0 + }, + { + "nl": "Find all cars produced by Volvo between 1977 and 1981 (inclusive). Report the name of the car and the year it was produced.\n", + "id": 1 + }, + { + "nl": "Report all Asian automakers. Output the full name of the automaker and the country of origin\n", + "id": 2 + }, + { + "nl": "Find all non-four cylinder cars produced in 1980 that have a better fuel economy better than 20 MPG and that accelerate to 60 mph faster than in 15 seconds. Report the name of the car and the name of the automaker.\n", + "id": 3 + }, + { + "nl": "For each saab released after 1978, compute the ratio between the weight of the car and its number of horsepowers. Report the full name of the car, the year it was produced and the ratio.\n", + "id": 4 + }, + { + "nl": "Find the average, maximum and minimum horsepower for 4-cylinder vehicles manufactured by renault between 1971 and 1976 inclusively.\n", + "id": 5 + }, + { + "nl": "Find how many different car manufacturers produced a vehicle heavier than 4000 lbs.\n", + "id": 6 + }, + { + "nl": "Find the minimum horsepower for 4-cylinder vehicles manufactured by renault between 1971 and 1976 inclusively.\n", + "id": 7 + }, + { + "nl": "For each year when US-manufactured cars averaged less than 100 horsepowers, report the highest and the lowest engine displacement number.\n", + "id": 8 + }, + { + "nl": "For each year in which honda produced more than 2 models, report the best, the worst and the average gas milage of a toyota vehicle.\n", + "id": 9 + }, + { + "nl": "Report all vehicles with the best gas mileage. For each vehicle, report its full name and the year of production.\n", + "id": 10 + }, + { + "nl": "Among the vehicles with the gas mileage, report the one with the best acceleration. Report full name and the year of production.\n", + "id": 11 + }, + { + "nl": "For each country report the automaker with the largest number of cars in the database. Report the name of the country.\n", + "id": 12 + }, + { + "nl": "Find the difference in gas milage between the most fuel-efficient 8-cylinder model and the least fuel-efficient 4-cylinder model. Report just the number.\n", + "id": 13 + } + ], + "review_id": null +} \ No newline at end of file diff --git a/database/car_1/car_1.json b/database/car_1/car_1.json new file mode 100644 index 0000000000000000000000000000000000000000..070745b7877cfc316e05796075081e51fcff6795 --- /dev/null +++ b/database/car_1/car_1.json @@ -0,0 +1,216 @@ +[ + { + "col_data": [ + { + "column_name": "ContId", + "data_type": "INTEGER", + "default_column_name": "ContId", + "default_value": null, + "not_null": 0, + "primary_key": 1 + }, + { + "column_name": "Continent", + "data_type": "TEXT", + "default_column_name": "Continent", + "default_value": null, + "not_null": 0, + "primary_key": 0 + } + ], + "table": "continents" + }, + { + "col_data": [ + { + "column_name": "CountryId", + "data_type": "INTEGER", + "default_column_name": "CountryId", + "default_value": null, + "not_null": 0, + "primary_key": 1 + }, + { + "column_name": "CountryName", + "data_type": "TEXT", + "default_column_name": "CountryName", + "default_value": null, + "not_null": 0, + "primary_key": 0 + }, + { + "column_name": "Continent", + "data_type": "INTEGER", + "default_column_name": "Continent", + "default_value": null, + "not_null": 0, + "primary_key": 0 + } + ], + "table": "countries" + }, + { + "col_data": [ + { + "column_name": "Id", + "data_type": "INTEGER", + "default_column_name": "Id", + "default_value": null, + "not_null": 0, + "primary_key": 1 + }, + { + "column_name": "Maker", + "data_type": "TEXT", + "default_column_name": "Maker", + "default_value": null, + "not_null": 0, + "primary_key": 0 + }, + { + "column_name": "FullName", + "data_type": "TEXT", + "default_column_name": "FullName", + "default_value": null, + "not_null": 0, + "primary_key": 0 + }, + { + "column_name": "Country", + "data_type": "TEXT", + "default_column_name": "Country", + "default_value": null, + "not_null": 0, + "primary_key": 0 + } + ], + "table": "car-makers" + }, + { + "col_data": [ + { + "column_name": "MakeId", + "data_type": "INTEGER", + "default_column_name": "MakeId", + "default_value": null, + "not_null": 0, + "primary_key": 1 + }, + { + "column_name": "Model", + "data_type": "TEXT", + "default_column_name": "Model", + "default_value": null, + "not_null": 0, + "primary_key": 0 + }, + { + "column_name": "Make", + "data_type": "TEXT", + "default_column_name": "Make", + "default_value": null, + "not_null": 0, + "primary_key": 0 + } + ], + "table": "car-names" + }, + { + "col_data": [ + { + "column_name": "Id", + "data_type": "INTEGER", + "default_column_name": "Id", + "default_value": null, + "not_null": 0, + "primary_key": 1 + }, + { + "column_name": "MPG", + "data_type": "TEXT", + "default_column_name": "MPG", + "default_value": null, + "not_null": 0, + "primary_key": 0 + }, + { + "column_name": "Cylinders", + "data_type": "INTEGER", + "default_column_name": "Cylinders", + "default_value": null, + "not_null": 0, + "primary_key": 0 + }, + { + "column_name": "Edispl", + "data_type": "REAL", + "default_column_name": "Edispl", + "default_value": null, + "not_null": 0, + "primary_key": 0 + }, + { + "column_name": "Horsepower", + "data_type": "TEXT", + "default_column_name": "Horsepower", + "default_value": null, + "not_null": 0, + "primary_key": 0 + }, + { + "column_name": "Weight", + "data_type": "INTEGER", + "default_column_name": "Weight", + "default_value": null, + "not_null": 0, + "primary_key": 0 + }, + { + "column_name": "Accelerate", + "data_type": "REAL", + "default_column_name": "Accelerate", + "default_value": null, + "not_null": 0, + "primary_key": 0 + }, + { + "column_name": "Year", + "data_type": "INTEGER", + "default_column_name": "Year", + "default_value": null, + "not_null": 0, + "primary_key": 0 + } + ], + "table": "cars-data" + }, + { + "col_data": [ + { + "column_name": "ModelId", + "data_type": "INTEGER", + "default_column_name": "ModelId", + "default_value": null, + "not_null": 0, + "primary_key": 1 + }, + { + "column_name": "Maker", + "data_type": "INTEGER", + "default_column_name": "Maker", + "default_value": null, + "not_null": 0, + "primary_key": 0 + }, + { + "column_name": "Model", + "data_type": "TEXT", + "default_column_name": "Model", + "default_value": null, + "not_null": 0, + "primary_key": 0 + } + ], + "table": "model-list" + } +] \ No newline at end of file diff --git a/database/car_1/car_1.sql b/database/car_1/car_1.sql new file mode 100644 index 0000000000000000000000000000000000000000..1fbefd3f6ec1f915fdda4c28e03c41aa9df65a82 --- /dev/null +++ b/database/car_1/car_1.sql @@ -0,0 +1,52 @@ +CREATE TABLE "continents" ( + "ContId" INTEGER PRIMARY KEY, + "Continent" TEXT +); + +CREATE TABLE "countries" ( + "CountryId" INTEGER PRIMARY KEY, + "CountryName" TEXT, + "Continent" INTEGER, + FOREIGN KEY (Continent) REFERENCES continents(ContId) +); + + +CREATE TABLE "car_makers" ( + "Id" INTEGER PRIMARY KEY, + "Maker" TEXT, + "FullName" TEXT, + "Country" TEXT, + FOREIGN KEY (Country) REFERENCES countries(CountryId) +); + + +CREATE TABLE "model_list" ( + "ModelId" INTEGER PRIMARY KEY, + "Maker" INTEGER, + "Model" TEXT UNIQUE, + FOREIGN KEY (Maker) REFERENCES car_makers (Id) + +); + + + +CREATE TABLE "car_names" ( + "MakeId" INTEGER PRIMARY KEY, + "Model" TEXT, + "Make" TEXT, + FOREIGN KEY (Model) REFERENCES model_list (Model) +); + +CREATE TABLE "cars_data" ( + "Id" INTEGER PRIMARY KEY, + "MPG" TEXT, + "Cylinders" INTEGER, + "Edispl" REAL, + "Horsepower" TEXT, + "Weight" INTEGER, + "Accelerate" REAL, + "Year" INTEGER, + FOREIGN KEY (Id) REFERENCES car_names (MakeId) +); + + diff --git a/database/car_1/car_1.sqlite b/database/car_1/car_1.sqlite new file mode 100644 index 0000000000000000000000000000000000000000..b2c94f19fb637f9234b514bfb2f41ea94b31dec3 Binary files /dev/null and b/database/car_1/car_1.sqlite differ diff --git a/database/car_1/data_csv/README.CARS.TXT b/database/car_1/data_csv/README.CARS.TXT new file mode 100644 index 0000000000000000000000000000000000000000..b577167926eb54cc75df1114f25077c3138303fa --- /dev/null +++ b/database/car_1/data_csv/README.CARS.TXT @@ -0,0 +1,149 @@ +***************************************************** +CPE 365 Alex Dekhtyar +Cal Poly Computer Science Department +San Luis Obispo College of Engineering +California dekhtyar@csc.calpoly.edu +***************************************************** + CARS DATASET + Version 1.0 + September 26, 2007 +***************************************************** +Sources: + The Committee on Statistical Graphics of + the American Statistical Association (ASA) + 1983 Cars dataset + available (among other places) from + CMU's StatLib server: + http://lib.stat.cmu.edu/datasets/ + +****************************************************** + + +This file describes the contents of the CARS dataset +developed for the CPE 365, Introduction to Databases +course at Cal Poly. + +The dataset is a normalized and slightly enhanced version +of the ASA's Committee on Statistical Graphics "cars" +dataset offered in 1983 for the visualization competition. +Please refer to the original dataset description +in the file "cars.desc" included with this distribution for +historical purposes. (please, note, cars.desc file does not +describe the format of this dataset correctly). + + +The dataset describes the origins and different parameters +of 406 car models produced in the world between 1970 and 1982. +The dataset consists of the following files: + +General Conventions. + + 1. All files in the dataset are CSV (comma-separated values) files. + 2. First line of each file provides the names of + columns. Second line may be empty, or may contain + the first row of the data + 3. All string values are enclosed in single quotes (') + + - car-makers.csv : information about companies that produce cars + - car-names.csv : information about specific cars (by name) + - cars-data.csv : operational parameters of the cars + - continents.csv : list of continents + - countries.csv : list of countries + - model-list.csv : information about car models produced by car makers + + +The core of the dataset consists of four files: car-makes.csv, model-list.csv, +car-names.csv and cars-data.csv. The first file identifies companies +that produce cars (e.g, "Ford Motor Company", "Toyota"), the second file +lists various models and identified their makes (e.g., "Ford" and "Mercury" +produced by Ford, "Oldsmobile" and "Chevrolet" produced by GM). The third +file is the masterlist of 406 car makes considered in the database +(e.g., "ford torino" or "amc rebel set"). The fourth file contains information +about the operating parameters (see below for a full list) for each make. + + +Individual files have the following formats. + + +************************************************************************** + +car-makers.csv + + Id : unique identifier of the car maker + Maker : short nickname for the car maker + FullName : full name of the car maker + Country : Id of the home country of the maker (see countries.CountryId) + + + +************************************************************************** + +car-names.csv + + MakeId : unique identifier of the car make + Model : unique name of the car model (see model-list.Model) + MakeDescription : description (name) of the car make + + + +************************************************************************** + + +cars-data.csv + + Id : unique identifier of the car make (see car-names.MakeId) + MPG : milage per gallon + Cylinders : number of cylinders + Edispl : engine displacement volume in cubic inches + Horsepower : power of the engine in horsepowers + Weight : weight of the car in lbs + Accelerate : time to accelerate from 0 to 60mph in seconds (possibly + with fractions of a second) + Year : year the car was made + + +NOTE: this file adds the Id attribute to the original cars.data file from + the ASA cars dataset, removes the Origin attribute (the origin is + now dealt with elsewhere), and modifies year to be the actual year + rather than "year - 1900". + + + +************************************************************************** + + +continents.csv + + ContId : unique identifier of the continent + Continent : name of the continent + + +************************************************************************** + +countries.csv + + CountryId : unique identifier of the country + CountryName : name of the country + Continent : unique identifier of the continent the country is on + (see continents.ContId) + + +************************************************************************** + +model-list.csv + + ModelId : unique identifier of the car model + Maker : unique identifier of the car maker (see car-makers.id) + Model : name of the car model (also unique) + + + +************************************************************************** +************************************************************************** + + + + + + + diff --git a/database/car_1/data_csv/car-makers.csv b/database/car_1/data_csv/car-makers.csv new file mode 100644 index 0000000000000000000000000000000000000000..5d5ecfddb942d935cb1d6da76897639da1314965 --- /dev/null +++ b/database/car_1/data_csv/car-makers.csv @@ -0,0 +1,24 @@ +Id,Maker,FullName,Country +1,'amc','American Motor Company',1 +2,'volkswagen','Volkswagen',2 +3,'bmw','BMW',2 +4,'gm','General Motors',1 +5,'ford','Ford Motor Company',1 +6,'chrysler','Chrysler',1 +7,'citroen','Citroen',3 +8,'nissan','Nissan Motors',4 +9,'fiat','Fiat',5 +10,'hi','hi',null +11,'honda','Honda',4 +12,'mazda','Mazda',4 +13,'daimler benz','Daimler Benz',2 +14,'opel','Opel',2 +15,'peugeaut','Peugeaut',3 +16,'renault','Renault',3 +17,'saab','Saab',6 +18,'subaru','Subaru',4 +19,'toyota','Toyota',4 +20,'triumph','Triumph',7 +21,'volvo','Volvo',6 +22,'kia','Kia Motors',8 +23,'hyundai','Hyundai',8 diff --git a/database/car_1/data_csv/car-names.csv b/database/car_1/data_csv/car-names.csv new file mode 100644 index 0000000000000000000000000000000000000000..5977ebbd948cc1f47a4df1ae4d6d20f6101d0467 --- /dev/null +++ b/database/car_1/data_csv/car-names.csv @@ -0,0 +1,407 @@ +Id,Model,Make +1,'chevrolet','chevrolet chevelle malibu' +2,'buick','buick skylark 320' +3,'plymouth','plymouth satellite' +4,'amc','amc rebel sst' +5,'ford','ford torino' +6,'ford','ford galaxie 500' +7,'chevrolet','chevrolet impala' +8,'plymouth','plymouth fury iii' +9,'pontiac','pontiac catalina' +10,'amc','amc ambassador dpl' +11,'citroen','citroen ds-21 pallas' +12,'chevrolet','chevrolet chevelle concours (sw)' +13,'ford','ford torino (sw)' +14,'plymouth','plymouth satellite (sw)' +15,'amc','amc rebel sst (sw)' +16,'dodge','dodge challenger se' +17,'plymouth','plymouth cuda 340' +18,'ford','ford mustang boss 302' +19,'chevrolet','chevrolet monte carlo' +20,'buick','buick estate wagon (sw)' +21,'toyota','toyota corona mark ii' +22,'plymouth','plymouth duster' +23,'amc','amc hornet' +24,'ford','ford maverick' +25,'datsun','datsun pl510' +26,'volkswagen','volkswagen 1131 deluxe sedan' +27,'peugeot','peugeot 504' +28,'audi','audi 100 ls' +29,'saab','saab 99e' +30,'bmw','bmw 2002' +31,'amc','amc gremlin' +32,'ford','ford f250' +33,'chevrolet','chevy c20' +34,'dodge','dodge d200' +35,'hi','hi 1200d' +36,'datsun','datsun pl510' +37,'chevrolet','chevrolet vega 2300' +38,'toyota','toyota corona' +39,'ford','ford pinto' +40,'volkswagen','volkswagen super beetle 117' +41,'amc','amc gremlin' +42,'plymouth','plymouth satellite custom' +43,'chevrolet','chevrolet chevelle malibu' +44,'ford','ford torino 500' +45,'amc','amc matador' +46,'chevrolet','chevrolet impala' +47,'pontiac','pontiac catalina brougham' +48,'ford','ford galaxie 500' +49,'plymouth','plymouth fury iii' +50,'dodge','dodge monaco (sw)' +51,'ford','ford country squire (sw)' +52,'pontiac','pontiac safari (sw)' +53,'amc','amc hornet sportabout (sw)' +54,'chevrolet','chevrolet vega (sw)' +55,'pontiac','pontiac firebird' +56,'ford','ford mustang' +57,'mercury','mercury capri 2000' +58,'opel','opel 1900' +59,'peugeot','peugeot 304' +60,'fiat','fiat 124b' +61,'toyota','toyota corolla 1200' +62,'datsun','datsun 1200' +63,'volkswagen','volkswagen model 111' +64,'plymouth','plymouth cricket' +65,'toyota','toyota corona hardtop' +66,'dodge','dodge colt hardtop' +67,'volkswagen','volkswagen type 3' +68,'chevrolet','chevrolet vega' +69,'ford','ford pinto runabout' +70,'chevrolet','chevrolet impala' +71,'pontiac','pontiac catalina' +72,'plymouth','plymouth fury iii' +73,'ford','ford galaxie 500' +74,'amc','amc ambassador sst' +75,'mercury','mercury marquis' +76,'buick','buick lesabre custom' +77,'oldsmobile','oldsmobile delta 88 royale' +78,'chrysler','chrysler newport royal' +79,'mazda','mazda rx2 coupe' +80,'amc','amc matador (sw)' +81,'chevrolet','chevrolet chevelle concours (sw)' +82,'ford','ford gran torino (sw)' +83,'plymouth','plymouth satellite custom (sw)' +84,'volvo','volvo 145e (sw)' +85,'volkswagen','volkswagen 411 (sw)' +86,'peugeot','peugeot 504 (sw)' +87,'renault','renault 12 (sw)' +88,'ford','ford pinto (sw)' +89,'datsun','datsun 510 (sw)' +90,'toyota','toyota corona mark ii (sw)' +91,'dodge','dodge colt (sw)' +92,'toyota','toyota corolla 1600 (sw)' +93,'buick','buick century 350' +94,'amc','amc matador' +95,'chevrolet','chevrolet malibu' +96,'ford','ford gran torino' +97,'dodge','dodge coronet custom' +98,'mercury','mercury marquis brougham' +99,'chevrolet','chevrolet caprice classic' +100,'ford','ford ltd' +101,'plymouth','plymouth fury gran sedan' +102,'chrysler','chrysler new yorker brougham' +103,'buick','buick electra 225 custom' +104,'amc','amc ambassador brougham' +105,'plymouth','plymouth valiant' +106,'chevrolet','chevrolet nova custom' +107,'amc','amc hornet' +108,'ford','ford maverick' +109,'plymouth','plymouth duster' +110,'volkswagen','volkswagen super beetle' +111,'chevrolet','chevrolet impala' +112,'ford','ford country' +113,'plymouth','plymouth custom suburb' +114,'oldsmobile','oldsmobile vista cruiser' +115,'amc','amc gremlin' +116,'toyota','toyota carina' +117,'chevrolet','chevrolet vega' +118,'datsun','datsun 610' +119,'mazda','mazda rx3' +120,'ford','ford pinto' +121,'mercury','mercury capri v6' +122,'fiat','fiat 124 sport coupe' +123,'chevrolet','chevrolet monte carlo s' +124,'pontiac','pontiac grand prix' +125,'fiat','fiat 128' +126,'opel','opel manta' +127,'audi','audi 100ls' +128,'volvo','volvo 144ea' +129,'dodge','dodge dart custom' +130,'saab','saab 99le' +131,'toyota','toyota mark ii' +132,'oldsmobile','oldsmobile omega' +133,'plymouth','plymouth duster' +134,'ford','ford maverick' +135,'amc','amc hornet' +136,'chevrolet','chevrolet nova' +137,'datsun','datsun b210' +138,'ford','ford pinto' +139,'toyota','toyota corolla 1200' +140,'chevrolet','chevrolet vega' +141,'chevrolet','chevrolet chevelle malibu classic' +142,'amc','amc matador' +143,'plymouth','plymouth satellite sebring' +144,'ford','ford gran torino' +145,'buick','buick century luxus (sw)' +146,'dodge','dodge coronet custom (sw)' +147,'ford','ford gran torino (sw)' +148,'amc','amc matador (sw)' +149,'audi','audi fox' +150,'volkswagen','volkswagen dasher' +151,'opel','opel manta' +152,'toyota','toyota corona' +153,'datsun','datsun 710' +154,'dodge','dodge colt' +155,'fiat','fiat 128' +156,'fiat','fiat 124 tc' +157,'honda','honda civic' +158,'subaru','subaru' +159,'fiat','fiat x1.9' +160,'plymouth','plymouth valiant custom' +161,'chevrolet','chevrolet nova' +162,'mercury','mercury monarch' +163,'ford','ford maverick' +164,'pontiac','pontiac catalina' +165,'chevrolet','chevrolet bel air' +166,'plymouth','plymouth grand fury' +167,'ford','ford ltd' +168,'buick','buick century' +169,'chevrolet','chevrolet chevelle malibu' +170,'amc','amc matador' +171,'plymouth','plymouth fury' +172,'buick','buick skyhawk' +173,'chevrolet','chevrolet monza 2+2' +174,'ford','ford mustang ii' +175,'toyota','toyota corolla' +176,'ford','ford pinto' +177,'amc','amc gremlin' +178,'pontiac','pontiac astro' +179,'toyota','toyota corona' +180,'volkswagen','volkswagen dasher' +181,'datsun','datsun 710' +182,'ford','ford pinto' +183,'volkswagen','volkswagen rabbit' +184,'amc','amc pacer' +185,'audi','audi 100ls' +186,'peugeot','peugeot 504' +187,'volvo','volvo 244dl' +188,'saab','saab 99le' +189,'honda','honda civic cvcc' +190,'fiat','fiat 131' +191,'opel','opel 1900' +192,'capri','capri ii' +193,'dodge','dodge colt' +194,'renault','renault 12tl' +195,'chevrolet','chevrolet chevelle malibu classic' +196,'dodge','dodge coronet brougham' +197,'amc','amc matador' +198,'ford','ford gran torino' +199,'plymouth','plymouth valiant' +200,'chevrolet','chevrolet nova' +201,'ford','ford maverick' +202,'amc','amc hornet' +203,'chevrolet','chevrolet chevette' +204,'chevrolet','chevrolet woody' +205,'volkswagen','vw rabbit' +206,'honda','honda civic' +207,'dodge','dodge aspen se' +208,'ford','ford granada ghia' +209,'pontiac','pontiac ventura sj' +210,'amc','amc pacer d/l' +211,'volkswagen','volkswagen rabbit' +212,'datsun','datsun b-210' +213,'toyota','toyota corolla' +214,'ford','ford pinto' +215,'volvo','volvo 245' +216,'plymouth','plymouth volare premier v8' +217,'peugeot','peugeot 504' +218,'toyota','toyota mark ii' +219,'mercedes-benz','mercedes-benz 280s' +220,'cadillac','cadillac seville' +221,'chevrolet','chevy c10' +222,'ford','ford f108' +223,'dodge','dodge d100' +224,'honda','honda accord cvcc' +225,'buick','buick opel isuzu deluxe' +226,'renault','renault 5 gtl' +227,'plymouth','plymouth arrow gs' +228,'datsun','datsun f-10 hatchback' +229,'chevrolet','chevrolet caprice classic' +230,'oldsmobile','oldsmobile cutlass supreme' +231,'dodge','dodge monaco brougham' +232,'mercury','mercury cougar brougham' +233,'chevrolet','chevrolet concours' +234,'buick','buick skylark' +235,'plymouth','plymouth volare custom' +236,'ford','ford granada' +237,'pontiac','pontiac grand prix lj' +238,'chevrolet','chevrolet monte carlo landau' +239,'chrysler','chrysler cordoba' +240,'ford','ford thunderbird' +241,'volkswagen','volkswagen rabbit custom' +242,'pontiac','pontiac sunbird coupe' +243,'toyota','toyota corolla liftback' +244,'ford','ford mustang ii 2+2' +245,'chevrolet','chevrolet chevette' +246,'dodge','dodge colt m/m' +247,'subaru','subaru dl' +248,'volkswagen','volkswagen dasher' +249,'datsun','datsun 810' +250,'bmw','bmw 320i' +251,'mazda','mazda rx-4' +252,'volkswagen','volkswagen rabbit custom diesel' +253,'ford','ford fiesta' +254,'mazda','mazda glc deluxe' +255,'datsun','datsun b210 gx' +256,'honda','honda civic cvcc' +257,'oldsmobile','oldsmobile cutlass salon brougham' +258,'dodge','dodge diplomat' +259,'mercury','mercury monarch ghia' +260,'pontiac','pontiac phoenix lj' +261,'chevrolet','chevrolet malibu' +262,'ford','ford fairmont (auto)' +263,'ford','ford fairmont (man)' +264,'plymouth','plymouth volare' +265,'amc','amc concord' +266,'buick','buick century special' +267,'mercury','mercury zephyr' +268,'dodge','dodge aspen' +269,'amc','amc concord d/l' +270,'chevrolet','chevrolet monte carlo landau' +271,'buick','buick regal sport coupe (turbo)' +272,'ford','ford futura' +273,'dodge','dodge magnum xe' +274,'chevrolet','chevrolet chevette' +275,'toyota','toyota corona' +276,'datsun','datsun 510' +277,'dodge','dodge omni' +278,'toyota','toyota celica gt liftback' +279,'plymouth','plymouth sapporo' +280,'oldsmobile','oldsmobile starfire sx' +281,'datsun','datsun 200-sx' +282,'audi','audi 5000' +283,'volvo','volvo 264gl' +284,'saab','saab 99gle' +285,'peugeot','peugeot 604sl' +286,'volkswagen','volkswagen scirocco' +287,'honda','honda accord lx' +288,'pontiac','pontiac lemans v6' +289,'mercury','mercury zephyr 6' +290,'ford','ford fairmont 4' +291,'amc','amc concord dl 6' +292,'dodge','dodge aspen 6' +293,'chevrolet','chevrolet caprice classic' +294,'ford','ford ltd landau' +295,'mercury','mercury grand marquis' +296,'dodge','dodge st. regis' +297,'buick','buick estate wagon (sw)' +298,'ford','ford country squire (sw)' +299,'chevrolet','chevrolet malibu classic (sw)' +300,'chrysler','chrysler lebaron town @ country (sw)' +301,'volkswagen','vw rabbit custom' +302,'mazda', 'mazda glc deluxe' +303,'dodge','dodge colt hatchback custom' +304,'amc','amc spirit dl' +305,'mercedes','mercedes benz 300d' +306,'cadillac','cadillac eldorado' +307,'peugeot','peugeot 504' +308,'oldsmobile','oldsmobile cutlass salon brougham' +309,'plymouth','plymouth horizon' +310,'plymouth','plymouth horizon tc3' +311,'datsun','datsun 210' +312,'fiat','fiat strada custom' +313,'buick','buick skylark limited' +314,'chevrolet','chevrolet citation' +315,'oldsmobile','oldsmobile omega brougham' +316,'pontiac','pontiac phoenix' +317,'volkswagen','vw rabbit' +318,'toyota','toyota corolla tercel' +319,'chevrolet','chevrolet chevette' +320,'datsun','datsun 310' +321,'chevrolet','chevrolet citation' +322,'ford','ford fairmont' +323,'amc','amc concord' +324,'dodge','dodge aspen' +325,'audi','audi 4000' +326,'toyota','toyota corona liftback' +327,'mazda','mazda 626' +328,'datsun','datsun 510 hatchback' +329,'toyota','toyota corolla' +330,'mazda','mazda glc' +331,'dodge','dodge colt' +332,'datsun','datsun 210' +333,'volkswagen','vw rabbit c (diesel)' +334,'volkswagen','vw dasher (diesel)' +335,'audi','audi 5000s (diesel)' +336,'mercedes-benz','mercedes-benz 240d' +337,'honda','honda civic 1500 gl' +338,'renault','renault lecar deluxe' +339,'subaru','subaru dl' +340, 'volkswagen','volkswagen rabbit' +341,'datsun','datsun 280-zx' +342,'mazda','mazda rx-7 gs' +343,'triumph','triumph tr7 coupe' +344,'ford','ford mustang cobra' +345,'honda','honda accord' +346,'plymouth','plymouth reliant' +347,'buick','buick skylark' +348,'dodge','dodge aries wagon (sw)' +349,'chevrolet','chevrolet citation' +350,'plymouth','plymouth reliant' +351,'toyota','toyota starlet' +352,'plymouth','plymouth champ' +353,'honda','honda civic 1300' +354,'subaru','subaru' +355,'datsun','datsun 210 mpg' +356,'toyota','toyota tercel' +357,'mazda','mazda glc 4' +358,'plymouth','plymouth horizon 4' +359,'ford','ford escort 4w' +360,'ford','ford escort 2h' +361,'volkswagen','volkswagen jetta' +362,'renault','renault 18i' +363,'honda','honda prelude' +364,'toyota','toyota corolla' +365,'datsun','datsun 200sx' +366,'mazda','mazda 626' +367,'peugeot','peugeot 505s turbo diesel' +368,'saab','saab 900s' +369,'volvo','volvo diesel' +370,'toyota','toyota cressida' +371,'datsun','datsun 810 maxima' +372,'buick','buick century' +373,'oldsmobile','oldsmobile cutlass ls' +374,'ford','ford granada gl' +375,'chrysler','chrysler lebaron salon' +376,'chevrolet','chevrolet cavalier' +377,'chevrolet','chevrolet cavalier wagon' +378,'chevrolet','chevrolet cavalier 2-door' +379,'pontiac','pontiac j2000 se hatchback' +380,'dodge','dodge aries se' +381,'pontiac','pontiac phoenix' +382,'ford','ford fairmont futura' +383,'amc','amc concord dl' +384,'volkswagen','volkswagen rabbit l' +385,'mazda','mazda glc custom l' +386,'mazda','mazda glc custom' +387,'plymouth','plymouth horizon miser' +388,'mercury','mercury lynx l' +389,'nissan','nissan stanza xe' +390,'honda','honda accord' +391,'toyota','toyota corolla' +392,'honda','honda civic' +393,'honda','honda civic (auto)' +394,'datsun','datsun 310 gx' +395,'buick','buick century limited' +396,'oldsmobile','oldsmobile cutlass ciera (diesel)' +397,'chrysler','chrysler lebaron medallion' +398,'ford','ford granada l' +399,'toyota','toyota celica gt' +400,'dodge','dodge charger 2.2' +401,'chevrolet','chevrolet camaro' +402,'ford','ford mustang gl' +403,'volkswagen','vw pickup' +404,'dodge','dodge rampage' +405,'ford','ford ranger' +406,'chevrolet','chevy s-10' diff --git a/database/car_1/data_csv/cars-data.csv b/database/car_1/data_csv/cars-data.csv new file mode 100644 index 0000000000000000000000000000000000000000..2398919b8bbdf91f65a155507625465065a1190e --- /dev/null +++ b/database/car_1/data_csv/cars-data.csv @@ -0,0 +1,407 @@ +Id,MPG,Cylinders,Edispl,Horsepower,Weight,Accelerate,Year +1,18,8,307,130,3504,12,1970 +2,15,8,350,165,3693,11.5,1970 +3,18,8,318,150,3436,11,1970 +4,16,8,304,150,3433,12,1970 +5,17,8,302,140,3449,10.5,1970 +6,15,8,429,198,4341,10,1970 +7,14,8,454,220,4354,9,1970 +8,14,8,440,215,4312,8.5,1970 +9,14,8,455,225,4425,10,1970 +10,15,8,390,190,3850,8.5,1970 +11,null,4,133,115,3090,17.5,1970 +12,null,8,350,165,4142,11.5,1970 +13,null,8,351,153,4034,11,1970 +14,null,8,383,175,4166,10.5,1970 +15,null,8,360,175,3850,11,1970 +16,15,8,383,170,3563,10,1970 +17,14,8,340,160,3609,8,1970 +18,null,8,302,140,3353,8,1970 +19,15,8,400,150,3761,9.5,1970 +20,14,8,455,225,3086,10,1970 +21,24,4,113,95,2372,15,1970 +22,22,6,198,95,2833,15.5,1970 +23,18,6,199,97,2774,15.5,1970 +24,21,6,200,85,2587,16,1970 +25,27,4,97,88,2130,14.5,1970 +26,26,4,97,46,1835,20.5,1970 +27,25,4,110,87,2672,17.5,1970 +28,24,4,107,90,2430,14.5,1970 +29,25,4,104,95,2375,17.5,1970 +30,26,4,121,113,2234,12.5,1970 +31,21,6,199,90,2648,15,1970 +32,10,8,360,215,4615,14,1970 +33,10,8,307,200,4376,15,1970 +34,11,8,318,210,4382,13.5,1970 +35,9,8,304,193,4732,18.5,1970 +36,27,4,97,88,2130,14.5,1971 +37,28,4,140,90,2264,15.5,1971 +38,25,4,113,95,2228,14,1971 +39,25,4,98,null,2046,19,1971 +40,null,4,97,48,1978,20,1971 +41,19,6,232,100,2634,13,1971 +42,16,6,225,105,3439,15.5,1971 +43,17,6,250,100,3329,15.5,1971 +44,19,6,250,88,3302,15.5,1971 +45,18,6,232,100,3288,15.5,1971 +46,14,8,350,165,4209,12,1971 +47,14,8,400,175,4464,11.5,1971 +48,14,8,351,153,4154,13.5,1971 +49,14,8,318,150,4096,13,1971 +50,12,8,383,180,4955,11.5,1971 +51,13,8,400,170,4746,12,1971 +52,13,8,400,175,5140,12,1971 +53,18,6,258,110,2962,13.5,1971 +54,22,4,140,72,2408,19,1971 +55,19,6,250,100,3282,15,1971 +56,18,6,250,88,3139,14.5,1971 +57,23,4,122,86,2220,14,1971 +58,28,4,116,90,2123,14,1971 +59,30,4,79,70,2074,19.5,1971 +60,30,4,88,76,2065,14.5,1971 +61,31,4,71,65,1773,19,1971 +62,35,4,72,69,1613,18,1971 +63,27,4,97,60,1834,19,1971 +64,26,4,91,70,1955,20.5,1971 +65,24,4,113,95,2278,15.5,1972 +66,25,4,97.5,80,2126,17,1972 +67,23,4,97,54,2254,23.5,1972 +68,20,4,140,90,2408,19.5,1972 +69,21,4,122,86,2226,16.5,1972 +70,13,8,350,165,4274,12,1972 +71,14,8,400,175,4385,12,1972 +72,15,8,318,150,4135,13.5,1972 +73,14,8,351,153,4129,13,1972 +74,17,8,304,150,3672,11.5,1972 +75,11,8,429,208,4633,11,1972 +76,13,8,350,155,4502,13.5,1972 +77,12,8,350,160,4456,13.5,1972 +78,13,8,400,190,4422,12.5,1972 +79,19,3,70,97,2330,13.5,1972 +80,15,8,304,150,3892,12.5,1972 +81,13,8,307,130,4098,14,1972 +82,13,8,302,140,4294,16,1972 +83,14,8,318,150,4077,14,1972 +84,18,4,121,112,2933,14.5,1972 +85,22,4,121,76,2511,18,1972 +86,21,4,120,87,2979,19.5,1972 +87,26,4,96,69,2189,18,1972 +88,22,4,122,86,2395,16,1972 +89,28,4,97,92,2288,17,1972 +90,23,4,120,97,2506,14.5,1972 +91,28,4,98,80,2164,15,1972 +92,27,4,97,88,2100,16.5,1972 +93,13,8,350,175,4100,13,1973 +94,14,8,304,150,3672,11.5,1973 +95,13,8,350,145,3988,13,1973 +96,14,8,302,137,4042,14.5,1973 +97,15,8,318,150,3777,12.5,1973 +98,12,8,429,198,4952,11.5,1973 +99,13,8,400,150,4464,12,1973 +100,13,8,351,158,4363,13,1973 +101,14,8,318,150,4237,14.5,1973 +102,13,8,440,215,4735,11,1973 +103,12,8,455,225,4951,11,1973 +104,13,8,360,175,3821,11,1973 +105,18,6,225,105,3121,16.5,1973 +106,16,6,250,100,3278,18,1973 +107,18,6,232,100,2945,16,1973 +108,18,6,250,88,3021,16.5,1973 +109,23,6,198,95,2904,16,1973 +110,26,4,97,46,1950,21,1973 +111,11,8,400,150,4997,14,1973 +112,12,8,400,167,4906,12.5,1973 +113,13,8,360,170,4654,13,1973 +114,12,8,350,180,4499,12.5,1973 +115,18,6,232,100,2789,15,1973 +116,20,4,97,88,2279,19,1973 +117,21,4,140,72,2401,19.5,1973 +118,22,4,108,94,2379,16.5,1973 +119,18,3,70,90,2124,13.5,1973 +120,19,4,122,85,2310,18.5,1973 +121,21,6,155,107,2472,14,1973 +122,26,4,98,90,2265,15.5,1973 +123,15,8,350,145,4082,13,1973 +124,16,8,400,230,4278,9.5,1973 +125,29,4,68,49,1867,19.5,1973 +126,24,4,116,75,2158,15.5,1973 +127,20,4,114,91,2582,14,1973 +128,19,4,121,112,2868,15.5,1973 +129,15,8,318,150,3399,11,1973 +130,24,4,121,110,2660,14,1973 +131,20,6,156,122,2807,13.5,1973 +132,11,8,350,180,3664,11,1973 +133,20,6,198,95,3102,16.5,1974 +134,21,6,200,null,2875,17,1974 +135,19,6,232,100,2901,16,1974 +136,15,6,250,100,3336,17,1974 +137,31,4,79,67,1950,19,1974 +138,26,4,122,80,2451,16.5,1974 +139,32,4,71,65,1836,21,1974 +140,25,4,140,75,2542,17,1974 +141,16,6,250,100,3781,17,1974 +142,16,6,258,110,3632,18,1974 +143,18,6,225,105,3613,16.5,1974 +144,16,8,302,140,4141,14,1974 +145,13,8,350,150,4699,14.5,1974 +146,14,8,318,150,4457,13.5,1974 +147,14,8,302,140,4638,16,1974 +148,14,8,304,150,4257,15.5,1974 +149,29,4,98,83,2219,16.5,1974 +150,26,4,79,67,1963,15.5,1974 +151,26,4,97,78,2300,14.5,1974 +152,31,4,76,52,1649,16.5,1974 +153,32,4,83,61,2003,19,1974 +154,28,4,90,75,2125,14.5,1974 +155,24,4,90,75,2108,15.5,1974 +156,26,4,116,75,2246,14,1974 +157,24,4,120,97,2489,15,1974 +158,26,4,108,93,2391,15.5,1974 +159,31,4,79,67,2000,16,1974 +160,19,6,225,95,3264,16,1975 +161,18,6,250,105,3459,16,1975 +162,15,6,250,72,3432,21,1975 +163,15,6,250,72,3158,19.5,1975 +164,16,8,400,170,4668,11.5,1975 +165,15,8,350,145,4440,14,1975 +166,16,8,318,150,4498,14.5,1975 +167,14,8,351,148,4657,13.5,1975 +168,17,6,231,110,3907,21,1975 +169,16,6,250,105,3897,18.5,1975 +170,15,6,258,110,3730,19,1975 +171,18,6,225,95,3785,19,1975 +172,21,6,231,110,3039,15,1975 +173,20,8,262,110,3221,13.5,1975 +174,13,8,302,129,3169,12,1975 +175,29,4,97,75,2171,16,1975 +176,23,4,140,83,2639,17,1975 +177,20,6,232,100,2914,16,1975 +178,23,4,140,78,2592,18.5,1975 +179,24,4,134,96,2702,13.5,1975 +180,25,4,90,71,2223,16.5,1975 +181,24,4,119,97,2545,17,1975 +182,18,6,171,97,2984,14.5,1975 +183,29,4,90,70,1937,14,1975 +184,19,6,232,90,3211,17,1975 +185,23,4,115,95,2694,15,1975 +186,23,4,120,88,2957,17,1975 +187,22,4,121,98,2945,14.5,1975 +188,25,4,121,115,2671,13.5,1975 +189,33,4,91,53,1795,17.5,1975 +190,28,4,107,86,2464,15.5,1976 +191,25,4,116,81,2220,16.9,1976 +192,25,4,140,92,2572,14.9,1976 +193,26,4,98,79,2255,17.7,1976 +194,27,4,101,83,2202,15.3,1976 +195,17.5,8,305,140,4215,13,1976 +196,16,8,318,150,4190,13,1976 +197,15.5,8,304,120,3962,13.9,1976 +198,14.5,8,351,152,4215,12.8,1976 +199,22,6,225,100,3233,15.4,1976 +200,22,6,250,105,3353,14.5,1976 +201,24,6,200,81,3012,17.6,1976 +202,22.5,6,232,90,3085,17.6,1976 +203,29,4,85,52,2035,22.2,1976 +204,24.5,4,98,60,2164,22.1,1976 +205,29,4,90,70,1937,14.2,1976 +206,33,4,91,53,1795,17.4,1976 +207,20,6,225,100,3651,17.7,1976 +208,18,6,250,78,3574,21,1976 +209,18.5,6,250,110,3645,16.2,1976 +210,17.5,6,258,95,3193,17.8,1976 +211,29.5,4,97,71,1825,12.2,1976 +212,32,4,85,70,1990,17,1976 +213,28,4,97,75,2155,16.4,1976 +214,26.5,4,140,72,2565,13.6,1976 +215,20,4,130,102,3150,15.7,1976 +216,13,8,318,150,3940,13.2,1976 +217,19,4,120,88,3270,21.9,1976 +218,19,6,156,108,2930,15.5,1976 +219,16.5,6,168,120,3820,16.7,1976 +220,16.5,8,350,180,4380,12.1,1976 +221,13,8,350,145,4055,12,1976 +222,13,8,302,130,3870,15,1976 +223,13,8,318,150,3755,14,1976 +224,31.5,4,98,68,2045,18.5,1977 +225,30,4,111,80,2155,14.8,1977 +226,36,4,79,58,1825,18.6,1977 +227,25.5,4,122,96,2300,15.5,1977 +228,33.5,4,85,70,1945,16.8,1977 +229,17.5,8,305,145,3880,12.5,1977 +230,17,8,260,110,4060,19,1977 +231,15.5,8,318,145,4140,13.7,1977 +232,15,8,302,130,4295,14.9,1977 +233,17.5,6,250,110,3520,16.4,1977 +234,20.5,6,231,105,3425,16.9,1977 +235,19,6,225,100,3630,17.7,1977 +236,18.5,6,250,98,3525,19,1977 +237,16,8,400,180,4220,11.1,1977 +238,15.5,8,350,170,4165,11.4,1977 +239,15.5,8,400,190,4325,12.2,1977 +240,16,8,351,149,4335,14.5,1977 +241,29,4,97,78,1940,14.5,1977 +242,24.5,4,151,88,2740,16,1977 +243,26,4,97,75,2265,18.2,1977 +244,25.5,4,140,89,2755,15.8,1977 +245,30.5,4,98,63,2051,17,1977 +246,33.5,4,98,83,2075,15.9,1977 +247,30,4,97,67,1985,16.4,1977 +248,30.5,4,97,78,2190,14.1,1977 +249,22,6,146,97,2815,14.5,1977 +250,21.5,4,121,110,2600,12.8,1977 +251,21.5,3,80,110,2720,13.5,1977 +252,43.1,4,90,48,1985,21.5,1978 +253,36.1,4,98,66,1800,14.4,1978 +254,32.8,4,78,52,1985,19.4,1978 +255,39.4,4,85,70,2070,18.6,1978 +256,36.1,4,91,60,1800,16.4,1978 +257,19.9,8,260,110,3365,15.5,1978 +258,19.4,8,318,140,3735,13.2,1978 +259,20.2,8,302,139,3570,12.8,1978 +260,19.2,6,231,105,3535,19.2,1978 +261,20.5,6,200,95,3155,18.2,1978 +262,20.2,6,200,85,2965,15.8,1978 +263,25.1,4,140,88,2720,15.4,1978 +264,20.5,6,225,100,3430,17.2,1978 +265,19.4,6,232,90,3210,17.2,1978 +266,20.6,6,231,105,3380,15.8,1978 +267,20.8,6,200,85,3070,16.7,1978 +268,18.6,6,225,110,3620,18.7,1978 +269,18.1,6,258,120,3410,15.1,1978 +270,19.2,8,305,145,3425,13.2,1978 +271,17.7,6,231,165,3445,13.4,1978 +272,18.1,8,302,139,3205,11.2,1978 +273,17.5,8,318,140,4080,13.7,1978 +274,30,4,98,68,2155,16.5,1978 +275,27.5,4,134,95,2560,14.2,1978 +276,27.2,4,119,97,2300,14.7,1978 +277,30.9,4,105,75,2230,14.5,1978 +278,21.1,4,134,95,2515,14.8,1978 +279,23.2,4,156,105,2745,16.7,1978 +280,23.8,4,151,85,2855,17.6,1978 +281,23.9,4,119,97,2405,14.9,1978 +282,20.3,5,131,103,2830,15.9,1978 +283,17,6,163,125,3140,13.6,1978 +284,21.6,4,121,115,2795,15.7,1978 +285,16.2,6,163,133,3410,15.8,1978 +286,31.5,4,89,71,1990,14.9,1978 +287,29.5,4,98,68,2135,16.6,1978 +288,21.5,6,231,115,3245,15.4,1979 +289,19.8,6,200,85,2990,18.2,1979 +290,22.3,4,140,88,2890,17.3,1979 +291,20.2,6,232,90,3265,18.2,1979 +292,20.6,6,225,110,3360,16.6,1979 +293,17,8,305,130,3840,15.4,1979 +294,17.6,8,302,129,3725,13.4,1979 +295,16.5,8,351,138,3955,13.2,1979 +296,18.2,8,318,135,3830,15.2,1979 +297,16.9,8,350,155,4360,14.9,1979 +298,15.5,8,351,142,4054,14.3,1979 +299,19.2,8,267,125,3605,15,1979 +300,18.5,8,360,150,3940,13,1979 +301,31.9,4,89,71,1925,14,1979 +302,34.1,4,86,65,1975,15.2,1979 +303,35.7,4,98,80,1915,14.4,1979 +304,27.4,4,121,80,2670,15,1979 +305,25.4,5,183,77,3530,20.1,1979 +306,23,8,350,125,3900,17.4,1979 +307,27.2,4,141,71,3190,24.8,1979 +308,23.9,8,260,90,3420,22.2,1979 +309,34.2,4,105,70,2200,13.2,1979 +310,34.5,4,105,70,2150,14.9,1979 +311,31.8,4,85,65,2020,19.2,1979 +312,37.3,4,91,69,2130,14.7,1979 +313,28.4,4,151,90,2670,16,1979 +314,28.8,6,173,115,2595,11.3,1979 +315,26.8,6,173,115,2700,12.9,1979 +316,33.5,4,151,90,2556,13.2,1979 +317,41.5,4,98,76,2144,14.7,1980 +318,38.1,4,89,60,1968,18.8,1980 +319,32.1,4,98,70,2120,15.5,1980 +320,37.2,4,86,65,2019,16.4,1980 +321,28,4,151,90,2678,16.5,1980 +322,26.4,4,140,88,2870,18.1,1980 +323,24.3,4,151,90,3003,20.1,1980 +324,19.1,6,225,90,3381,18.7,1980 +325,34.3,4,97,78,2188,15.8,1980 +326,29.8,4,134,90,2711,15.5,1980 +327,31.3,4,120,75,2542,17.5,1980 +328,37,4,119,92,2434,15,1980 +329,32.2,4,108,75,2265,15.2,1980 +330,46.6,4,86,65,2110,17.9,1980 +331,27.9,4,156,105,2800,14.4,1980 +332,40.8,4,85,65,2110,19.2,1980 +333,44.3,4,90,48,2085,21.7,1980 +334,43.4,4,90,48,2335,23.7,1980 +335,36.4,5,121,67,2950,19.9,1980 +336,30,4,146,67,3250,21.8,1980 +337,44.6,4,91,67,1850,13.8,1980 +338,40.9,4,85,null,1835,17.3,1980 +339,33.8,4,97,67,2145,18,1980 +340,29.8,4,89,62,1845,15.3,1980 +341,32.7,6,168,132,2910,11.4,1980 +342,23.7,3,70,100,2420,12.5,1980 +343,35,4,122,88,2500,15.1,1980 +344,23.6,4,140,null,2905,14.3,1980 +345,32.4,4,107,72,2290,17,1980 +346,27.2,4,135,84,2490,15.7,1981 +347,26.6,4,151,84,2635,16.4,1981 +348,25.8,4,156,92,2620,14.4,1981 +349,23.5,6,173,110,2725,12.6,1981 +350,30,4,135,84,2385,12.9,1981 +351,39.1,4,79,58,1755,16.9,1981 +352,39,4,86,64,1875,16.4,1981 +353,35.1,4,81,60,1760,16.1,1981 +354,32.3,4,97,67,2065,17.8,1981 +355,37,4,85,65,1975,19.4,1981 +356,37.7,4,89,62,2050,17.3,1981 +357,34.1,4,91,68,1985,16,1981 +358,34.7,4,105,63,2215,14.9,1981 +359,34.4,4,98,65,2045,16.2,1981 +360,29.9,4,98,65,2380,20.7,1981 +361,33,4,105,74,2190,14.2,1981 +362,34.5,4,100,null,2320,15.8,1981 +363,33.7,4,107,75,2210,14.4,1981 +364,32.4,4,108,75,2350,16.8,1981 +365,32.9,4,119,100,2615,14.8,1981 +366,31.6,4,120,74,2635,18.3,1981 +367,28.1,4,141,80,3230,20.4,1981 +368,null,4,121,110,2800,15.4,1981 +369,30.7,6,145,76,3160,19.6,1981 +370,25.4,6,168,116,2900,12.6,1981 +371,24.2,6,146,120,2930,13.8,1981 +372,22.4,6,231,110,3415,15.8,1981 +373,26.6,8,350,105,3725,19,1981 +374,20.2,6,200,88,3060,17.1,1981 +375,17.6,6,225,85,3465,16.6,1981 +376,28,4,112,88,2605,19.6,1982 +377,27,4,112,88,2640,18.6,1982 +378,34,4,112,88,2395,18,1982 +379,31,4,112,85,2575,16.2,1982 +380,29,4,135,84,2525,16,1982 +381,27,4,151,90,2735,18,1982 +382,24,4,140,92,2865,16.4,1982 +383,23,4,151,null,3035,20.5,1982 +384,36,4,105,74,1980,15.3,1982 +385,37,4,91,68,2025,18.2,1982 +386,31,4,91,68,1970,17.6,1982 +387,38,4,105,63,2125,14.7,1982 +388,36,4,98,70,2125,17.3,1982 +389,36,4,120,88,2160,14.5,1982 +390,36,4,107,75,2205,14.5,1982 +391,34,4,108,70,2245,16.9,1982 +392,38,4,91,67,1965,15,1982 +393,32,4,91,67,1965,15.7,1982 +394,38,4,91,67,1995,16.2,1982 +395,25,6,181,110,2945,16.4,1982 +396,38,6,262,85,3015,17,1982 +397,26,4,156,92,2585,14.5,1982 +398,22,6,232,112,2835,14.7,1982 +399,32,4,144,96,2665,13.9,1982 +400,36,4,135,84,2370,13,1982 +401,27,4,151,90,2950,17.3,1982 +402,27,4,140,86,2790,15.6,1982 +403,44,4,97,52,2130,24.6,1982 +404,32,4,135,84,2295,11.6,1982 +405,28,4,120,79,2625,18.6,1982 +406,31,4,119,82,2720,19.4,1982 diff --git a/database/car_1/data_csv/cars.desc b/database/car_1/data_csv/cars.desc new file mode 100644 index 0000000000000000000000000000000000000000..27f7ed35dcec070df67cf78bc2ecd452cd7e0bcf --- /dev/null +++ b/database/car_1/data_csv/cars.desc @@ -0,0 +1,94 @@ +The Committee on Statistical Graphics of the American Statistical +Association (ASA) invites you to participate in its Second (1983) +Exposition of Statistical Graphics Technology. The purposes of the +Exposition are (l) to provide a forum in which users and providers of +statistical graphics technology can exchange information and ideas and +(2) to expose those members of the ASA community who are less familiar +with statistical graphics to its capabilities and potential benefits +to them. The Exposition wil1 be held in conjunction with the Annual +Meetings in Toronto, August 15-18, 1983 and is tentatively scheduled +for the afternoon of Wednesday, August 17. + +Seven providers of statistical graphics technology participated in the +l982 Exposition. By all accounts, the Exposition was well received by +the ASA community and was a worthwhile experience for the +participants. We hope to have those seven involved again this year, +along with as many new participants as we can muster. The 1982 +Exposition was summarized in a paper to appear in the Proceeding of +the Statistical Computing Section. A copy of that paper is enclosed +for your information. + +The basic format of the 1983 Exposition will be similar to that of +1982. However, based upon comments received and experience gained, +there are some changes. The basic structure, intended to be simpler +and more flexible than last year, is as follows: + +A fixed data set is to be analyzed. This data set is a version of the +CRCARS data set of + + Donoho, David and Ramos, Ernesto (1982), ``PRIMDATA: + Data Sets for Use With PRIM-H'' (DRAFT). + +Because of the Committee's limited (zero) budget for the Exposition, +we are forced to provide the data in hardcopy form only (enclosed). +(Sorry!) + +There are 406 observations on the following 8 variables: MPG (miles +per gallon), # cylinders, engine displacement (cu. inches), horsepower, +vehicle weight (lbs.), time to accelerate from O to 60 mph (sec.), +model year (modulo 100), and origin of car (1. American, 2. European, +3. Japanese). These data appear on seven pages. Also provided are the +car labels (types) in the same order as the 8 variables on seven +separate pages. Missing data values are marked by series of question +marks. + +You are asked to analyze these data using your statistical graphics +software. Your objective should be to achieve graphical displays which +will be meaningful to the viewers and highlight relevant aspects of +the data. If you can best achieve this using simple graphical formats, +fine. If you choose to illustrate some of the more sophisticated +capabilities of your software and can do so without losing relevancy +to the data, that is fine, too. This year, there will be no Committee +commentary on the individual presentations, so you are not competing +with other presenters. The role of each presenter is to do his/her +best job of presenting their statistical graphics technology to the +viewers. + +Each participant will be provided with a 6'(long) by 4'(tall) +posterboard on which to display the results of their analyses. This is +the same format as last year. You are encouraged to remain by your +presentation during the Exposition to answer viewers' questions. Three +copies of your presentation must be submitted to me by July 1. Movie +or slide show presentations cannot be accommodated (sorry). The +Committee will prepare its own poster presentation which will orient +the viewers to the data and the purposes of the Exposition. + +The ASA has asked us to remind all participants that the Exposition is +intended for educational and scientific purposes and is not a +marketing activity. Even though last year's participants did an +excellent job of maintaining that distinction, a cautionary note at +this point is appropriate. + +Those of us who were involved with the 1982 Exposition found it +worthwhile and fun to do. We would very much like to have you +participate this year. For planning purposes, please RSVP (to me, in +writing please) by April 15 as to whether you plan to accept the +Committee's invitation. + +If you have any questions about the Exposition, please call me on +(301/763-5350). If you have specific questions about the data, or the +analysis, please call Karen Kafadar on (301/921-3651). If you cannot +participate but know of another person or group in your organization +who can, please pass this invitation along to them. + +Sincerely, + + + +LAWRENCE H. COX +Statistical Research Division +Bureau of the Census +Room 3524-3 +Washington, DC 20233 + + diff --git a/database/car_1/data_csv/continents.csv b/database/car_1/data_csv/continents.csv new file mode 100644 index 0000000000000000000000000000000000000000..b52079aba6b50ede8ea2dbd9f257672fa1457c8a --- /dev/null +++ b/database/car_1/data_csv/continents.csv @@ -0,0 +1,6 @@ +ContId,Continent +1,'america' +2,'europe' +3,'asia' +4,'africa' +5,'australia' diff --git a/database/car_1/data_csv/countries.csv b/database/car_1/data_csv/countries.csv new file mode 100644 index 0000000000000000000000000000000000000000..c6e45048bd5c7200253e815249aa699a8cd4d1ef --- /dev/null +++ b/database/car_1/data_csv/countries.csv @@ -0,0 +1,16 @@ +CountryId,CountryName,Continent +1,'usa',1 +2,'germany',2 +3,'france',2 +4,'japan',3 +5,'italy',2 +6,'sweden',2 +7,'uk',2 +8,'korea',3 +9,'russia',2 +10,'nigeria',4 +11,'australia',5 +12,'new zealand',5 +13,'egypt',4 +14,'mexico',1 +15,'brazil',1 diff --git a/database/car_1/data_csv/model-list.csv b/database/car_1/data_csv/model-list.csv new file mode 100644 index 0000000000000000000000000000000000000000..fb623517c290717d2e4a3f5992e037c78d54d29f --- /dev/null +++ b/database/car_1/data_csv/model-list.csv @@ -0,0 +1,37 @@ +ModelId,Maker,Model +1,1,'amc' +2,2,'audi' +3,3,'bmw' +4,4,'buick' +5,4,'cadillac' +6,5,'capri' +7,4,'chevrolet' +8,6,'chrysler' +9,7,'citroen' +10,8,'datsun' +11,6,'dodge' +12,9,'fiat' +13,5,'ford' +14,10,'hi' +15,11,'honda' +16,12,'mazda' +17,13,'mercedes' +18,13,'mercedes-benz' +19,5,'mercury' +20,8,'nissan' +21,4,'oldsmobile' +22,14,'opel' +23,15,'peugeot' +24,6,'plymouth' +25,4,'pontiac' +26,16,'renault' +27,17,'saab' +28,18,'subaru' +29,19,'toyota' +30,20,'triumph' +31,2,'volkswagen' +32,21,'volvo' +33,22,'kia' +34,23,'hyundai' +35,6,'jeep' +36,19,'scion' diff --git a/database/car_1/link.txt b/database/car_1/link.txt new file mode 100644 index 0000000000000000000000000000000000000000..94c167197fe075c59a0eb4db5c0ce5bf25f766e7 --- /dev/null +++ b/database/car_1/link.txt @@ -0,0 +1 @@ +http://users.csc.calpoly.edu/~dekhtyar/365-Spring2017/index.html \ No newline at end of file diff --git a/database/car_1/q.txt b/database/car_1/q.txt new file mode 100644 index 0000000000000000000000000000000000000000..1a67c5ade55e5207c1b2e9e69706f2249583e47c --- /dev/null +++ b/database/car_1/q.txt @@ -0,0 +1,27 @@ +Find all Reanults (’renault’) in the database. For each, report the name and the year. + +Find all cars produced by Volvo between 1977 and 1981 (inclusive). Report the name of the car and the year it was produced. + +Report all Asian automakers. Output the full name of the automaker and the country of origin + +Find all non-four cylinder cars produced in 1980 that have a better fuel economy better than 20 MPG and that accelerate to 60 mph faster than in 15 seconds. Report the name of the car and the name of the automaker. + +For each saab released after 1978, compute the ratio between the weight of the car and its number of horsepowers. Report the full name of the car, the year it was produced and the ratio. + +Find the average, maximum and minimum horsepower for 4-cylinder vehicles manufactured by renault between 1971 and 1976 inclusively. + +Find how many different car manufacturers produced a vehicle heavier than 4000 lbs. + +Find the minimum horsepower for 4-cylinder vehicles manufactured by renault between 1971 and 1976 inclusively. + +For each year when US-manufactured cars averaged less than 100 horsepowers, report the highest and the lowest engine displacement number. + +For each year in which honda produced more than 2 models, report the best, the worst and the average gas milage of a toyota vehicle. + +Report all vehicles with the best gas mileage. For each vehicle, report its full name and the year of production. + +Among the vehicles with the gas mileage, report the one with the best acceleration. Report full name and the year of production. + +For each country report the automaker with the largest number of cars in the database. Report the name of the country. + +Find the difference in gas milage between the most fuel-efficient 8-cylinder model and the least fuel-efficient 4-cylinder model. Report just the number. diff --git a/database/chinook_1/annotation.json b/database/chinook_1/annotation.json new file mode 100644 index 0000000000000000000000000000000000000000..0ec79e0fd411208df6b008d159efec071478d00f --- /dev/null +++ b/database/chinook_1/annotation.json @@ -0,0 +1,5 @@ +{ + "label_id": null, + "data": [], + "review_id": null +} \ No newline at end of file diff --git a/database/chinook_1/chinook_1.sqlite b/database/chinook_1/chinook_1.sqlite new file mode 100644 index 0000000000000000000000000000000000000000..f54cf649badec1535e84409e5e626ee90ed0c6b1 Binary files /dev/null and b/database/chinook_1/chinook_1.sqlite differ diff --git a/database/cinema/cinema.sqlite b/database/cinema/cinema.sqlite new file mode 100644 index 0000000000000000000000000000000000000000..ca06db836453352eff5b01a24da69e49dab05ea9 Binary files /dev/null and b/database/cinema/cinema.sqlite differ diff --git a/database/cinema/schema.sql b/database/cinema/schema.sql new file mode 100644 index 0000000000000000000000000000000000000000..29c5a76d9dc26b3b87371d46533c49f790424cb4 --- /dev/null +++ b/database/cinema/schema.sql @@ -0,0 +1,60 @@ + +PRAGMA foreign_keys = ON; + + +CREATE TABLE "film" ( +"Film_ID" int, +"Rank_in_series" int, +"Number_in_season" int, +"Title" text, +"Directed_by" text, +"Original_air_date" text, +"Production_code" text, +PRIMARY KEY ("Film_ID") +); + +CREATE TABLE "cinema" ( +"Cinema_ID" int, +"Name" text, +"Openning_year" int, +"Capacity" int, +"Location" text, +PRIMARY KEY ("Cinema_ID")); + +INSERT INTO "film" VALUES (1,"26","1","The Case of the Mystery Weekend","Bill Schreiner","September 21–25, 1992","50021–50025"); +INSERT INTO "film" VALUES (2,"27","2","The Case of the Smart Dummy","Bill Schreiner","September 28–October 2, 1992","50231–50235"); +INSERT INTO "film" VALUES (3,"28","3","The Case: Off the Record","Bill Schreiner","October 5–9, 1992","50011–50015"); +INSERT INTO "film" VALUES (4,"29","4","The Case of the Bermuda Triangle","Jesus Salvador Treviño","October 12–16, 1992","50251–50255"); +INSERT INTO "film" VALUES (5,"30","5","The Case of the Piggy Banker","Bill Schreiner","October 19–23, 1992","50241–50245"); + +INSERT INTO "cinema" VALUES (1,"Codling","2010","1100","County Wicklow"); +INSERT INTO "cinema" VALUES (2,"Carrowleagh","2012","368","County Cork"); +INSERT INTO "cinema" VALUES (3,"Dublin Array","2015","364","County Dublin"); +INSERT INTO "cinema" VALUES (4,"Glenmore","2009","305","County Clare"); +INSERT INTO "cinema" VALUES (5,"Glenough","2010","325","County Tipperary"); +INSERT INTO "cinema" VALUES (6,"Gortahile","2010","208","County Laois"); +INSERT INTO "cinema" VALUES (7,"Grouse Lodge","2011","203","County Tipperary"); +INSERT INTO "cinema" VALUES (8,"Moneypoint","2011","225","County Clare"); +INSERT INTO "cinema" VALUES (9,"Mount Callan","2011","908","County Clare"); +INSERT INTO "cinema" VALUES (10,"Oriel","2013","330","County Louth"); + +CREATE TABLE "schedule" ( +"Cinema_ID" int, +"Film_ID" int, +"Date" text, +"Show_times_per_day" int, +"Price" float, +PRIMARY KEY ("Cinema_ID","Film_ID"), +FOREIGN KEY (`Film_ID`) REFERENCES `film`(`Film_ID`), +FOREIGN KEY (`Cinema_ID`) REFERENCES `cinema`(`Cinema_ID`) +); + + +INSERT INTO "schedule" VALUES (1,1,"21 May",5,12.99); +INSERT INTO "schedule" VALUES (1,2,"21 May",3,12.99); +INSERT INTO "schedule" VALUES (1,3,"21 Jun",2,8.99); +INSERT INTO "schedule" VALUES (2,1,"11 July",5,9.99); +INSERT INTO "schedule" VALUES (6,5,"2 Aug",4,12.99); +INSERT INTO "schedule" VALUES (9,4,"20 May",5,9.99); +INSERT INTO "schedule" VALUES (10,1,"19 May",5,15.99); + diff --git a/database/city_record/city_record.sqlite b/database/city_record/city_record.sqlite new file mode 100644 index 0000000000000000000000000000000000000000..ee18b99d42aecf224580b7649c59ca89e5993497 Binary files /dev/null and b/database/city_record/city_record.sqlite differ diff --git a/database/city_record/schema.sql b/database/city_record/schema.sql new file mode 100644 index 0000000000000000000000000000000000000000..ef467c36037d59326bf0997c66b168ff28e53458 --- /dev/null +++ b/database/city_record/schema.sql @@ -0,0 +1,88 @@ +PRAGMA foreign_keys = ON; + + +CREATE TABLE "city" ( +"City_ID" int, +"City" text, +"Hanzi" text, +"Hanyu_Pinyin" text, +"Regional_Population" int, +"GDP" real, +PRIMARY KEY ("City_ID") +); + +CREATE TABLE "match" ( +"Match_ID" int, +"Date" text, +"Venue" text, +"Score" text, +"Result" text, +"Competition" text, +PRIMARY KEY ("Match_ID") +); + + + +CREATE TABLE "temperature" ( +"City_ID" int, +"Jan" real, +"Feb" real, +"Mar" real, +"Apr" real, +"Jun" real, +"Jul" real, +"Aug" real, +"Sep" real, +"Oct" real, +"Nov" real, +"Dec" real, +PRIMARY KEY ("City_ID"), +FOREIGN KEY (`City_ID`) REFERENCES `city`(`City_ID`) +); + +INSERT INTO "city" VALUES (1,"Shanghai","上海","Shànghǎi","23019148","1919.57"); +INSERT INTO "city" VALUES (2,"Nanjing ( Jiangsu )","南京","Nánjīng","8004680","614.55"); +INSERT INTO "city" VALUES (3,"Hangzhou ( Zhejiang )","杭州","Hángzhōu","8700400","701.18"); +INSERT INTO "city" VALUES (4,"Suzhou ( Jiangsu )","苏州/ 蘇州","Sūzhōu","10465994","1071.70"); +INSERT INTO "city" VALUES (5,"Ningbo ( Zhejiang )","宁波/ 寧波","Níngbō","7605689","601.05"); +INSERT INTO "city" VALUES (6,"Wuxi ( Jiangsu )","无锡/ 無錫","Wúxī","6372624","688.02"); +INSERT INTO "city" VALUES (7,"Nantong ( Jiangsu )","南通","Nántōng","7282835","408.02"); +INSERT INTO "city" VALUES (8,"Shaoxing ( Zhejiang )","绍兴/ 紹興","Shàoxīng","4912200","329.12"); +INSERT INTO "city" VALUES (9,"Changzhou ( Jiangsu )","常州","Chángzhōu","4591972","358.04"); +INSERT INTO "city" VALUES (10,"Jinhua ( Zhejiang )","金华/ 金華","Jīnhuá","4614100","244.77"); +INSERT INTO "city" VALUES (11,"Jiaxing ( Zhejiang )","嘉兴/ 嘉興","Jiāxīng","4501700","266.81"); +INSERT INTO "city" VALUES (12,"Taizhou ( Zhejiang )","台州","Tāizhōu","5968800","279.49"); +INSERT INTO "city" VALUES (13,"Yangzhou ( Jiangsu )","扬州/ 揚州","Yángzhōu","4459760","263.03"); + +INSERT INTO "temperature" VALUES (1,17.8,17.8,18.3,18.9,20.0,20.6,20.6,20.6,20.0,19.4,18.3); +INSERT INTO "temperature" VALUES (2,26.1,26.1,26.1,26.1,27.8,27.8,28.3,28.3,28.3,27.2,26.7); +INSERT INTO "temperature" VALUES (3,18.9,18.3,19.4,20.0,22.2,23.3,23.9,23.3,22.8,21.7,20.0); +INSERT INTO "temperature" VALUES (4,26.7,27.2,27.8,28.3,30.6,31.1,31.7,31.7,30.6,28.9,27.8); +INSERT INTO "temperature" VALUES (6,17.2,17.2,18.3,18.9,20.6,21.7,21.7,21.1,20.6,20.0,18.3); +INSERT INTO "temperature" VALUES (10,26.7,27.2,27.8,27.8,30.0,30.6,31.1,31.1,30.6,28.9,27.8); +INSERT INTO "temperature" VALUES (7,18.3,18.9,19.4,20.6,22.8,23.3,23.3,23.3,22.8,21.7,20.0); +INSERT INTO "temperature" VALUES (11,25.6,26.6,26.6,26.1,28.3,28.9,29.4,29.4,28.9,27.2,26.1); + +INSERT INTO "match" VALUES (1,"18 February 1992","Estadio Cuscatlán , San Salvador , El Salvador","1-0","2-0","Friendly match"); +INSERT INTO "match" VALUES (2,"19 July 1992","Estadio Rigoberto López , Managua , Nicaragua","3-0","5-0","1994 FIFA World Cup qualification"); +INSERT INTO "match" VALUES (3,"23 July 1992","Estadio Cuscatlán , San Salvador , El Salvador","1-0","5-1","1994 FIFA World Cup qualification"); +INSERT INTO "match" VALUES (4,"23 July 1992","Estadio Cuscatlán , San Salvador , El Salvador","3-0","5-1","1994 FIFA World Cup qualification"); +INSERT INTO "match" VALUES (5,"4 April 1993","Estadio Cuscatlán , San Salvador , El Salvador","1–0","2–1","1994 FIFA World Cup qualification"); +INSERT INTO "match" VALUES (6,"23 July 2000","Estadio Cuscatlán , San Salvador , El Salvador","2–1","7–1","2002 FIFA World Cup qualification"); + + +CREATE TABLE "hosting_city" ( + "Year" int, + "Match_ID" int, + "Host_City" text, + PRIMARY KEY ("Year"), + FOREIGN KEY (`Host_City`) REFERENCES `city`(`City_ID`), + FOREIGN KEY (`Match_ID`) REFERENCES `match`(`Match_ID`) +); + +INSERT INTO "hosting_city" VALUES ("2008",1,1); +INSERT INTO "hosting_city" VALUES ("2009",2,2); +INSERT INTO "hosting_city" VALUES ("2010",3,2); +INSERT INTO "hosting_city" VALUES ("2011",4,6); +INSERT INTO "hosting_city" VALUES ("2012",5,12); +INSERT INTO "hosting_city" VALUES ("2013",6,11); diff --git a/database/climbing/climbing.sqlite b/database/climbing/climbing.sqlite new file mode 100644 index 0000000000000000000000000000000000000000..c23a873d00223c7497affa87070c27454f72dc5a Binary files /dev/null and b/database/climbing/climbing.sqlite differ diff --git a/database/climbing/schema.sql b/database/climbing/schema.sql new file mode 100644 index 0000000000000000000000000000000000000000..394c5412ba688e65a0bbf7e7761b6f194654f55e --- /dev/null +++ b/database/climbing/schema.sql @@ -0,0 +1,43 @@ +PRAGMA foreign_keys = ON; + +CREATE TABLE "mountain" ( +"Mountain_ID" int, +"Name" text, +"Height" real, +"Prominence" real, +"Range" text, +"Country" text, +PRIMARY KEY ("Mountain_ID") +); + +CREATE TABLE "climber" ( +"Climber_ID" int, +"Name" text, +"Country" text, +"Time" text, +"Points" real, +"Mountain_ID" int, +PRIMARY KEY ("Climber_ID"), +FOREIGN KEY ("Mountain_ID") REFERENCES "mountain"("Mountain_ID") +); + +INSERT INTO "mountain" VALUES (1,"Kibo (Uhuru Pk)","5895","5885","Kilimanjaro","Tanzania"); +INSERT INTO "mountain" VALUES (2,"Mount Kenya (Batian)","5199","3825","Mount Kenya","Kenya"); +INSERT INTO "mountain" VALUES (3,"Mawenzi (Hans Meyer Pk)","5148","850","Kilimanjaro","Tanzania"); +INSERT INTO "mountain" VALUES (4,"Ngaliema / Mt Stanley (Margherita Pk)","5109","3951","Rwenzori","DR Congo Uganda"); +INSERT INTO "mountain" VALUES (5,"Mount Kenya (Lenana)","4985","130","Mount Kenya","Kenya"); +INSERT INTO "mountain" VALUES (6,"Ngaliema / Mt Stanley (Savoia Pk)","4977","110","Rwenzori","Uganda"); +INSERT INTO "mountain" VALUES (7,"Duwoni / Mt Speke (Vittorio Emanuele Pk)","4890","720","Rwenzori","Uganda"); + + +INSERT INTO "climber" VALUES ("1","Klaus Enders","West Germany","1:13.05.6","15",1); +INSERT INTO "climber" VALUES ("2","Siegfried Schauzu","West Germany","1:14.56.4","12",1); +INSERT INTO "climber" VALUES ("3","Hans Luthringhauser","West Germany","1:16.58.0","10",2); +INSERT INTO "climber" VALUES ("4","Jean Claude Castella","Switzerland","1:17.16.0","8",2); +INSERT INTO "climber" VALUES ("5","Horst Owesle","West Germany","1:17.22.0","6",2); +INSERT INTO "climber" VALUES ("6","Georg Auerbacher","West Germany","1:18.14.6","5",3); +INSERT INTO "climber" VALUES ("7","Arseneus Butscher","West Germany","1:21.35.6","4",5); +INSERT INTO "climber" VALUES ("8","Charlie Freedman","United Kingdom","1:25.02.8","3",5); +INSERT INTO "climber" VALUES ("9","L Currie","United Kingdom","1:25.40.6","2",7); +INSERT INTO "climber" VALUES ("10","Mick Horsepole","United Kingdom","1:27.28.8","1",7); + diff --git a/database/club_1/club_1.sqlite b/database/club_1/club_1.sqlite new file mode 100644 index 0000000000000000000000000000000000000000..8f86df601e058bf85614268dcae0ed5f5ed4aee7 Binary files /dev/null and b/database/club_1/club_1.sqlite differ diff --git a/database/club_1/schema.sql b/database/club_1/schema.sql new file mode 100644 index 0000000000000000000000000000000000000000..66d77019cb23e2f692c957684d1bb7e0784c9293 --- /dev/null +++ b/database/club_1/schema.sql @@ -0,0 +1,73 @@ +create table Student ( + StuID INTEGER PRIMARY KEY, + LName VARCHAR(12), + Fname VARCHAR(12), + Age INTEGER, + Sex VARCHAR(1), + Major INTEGER, + Advisor INTEGER, + city_code VARCHAR(3) + ); + + +create table Club ( + ClubID INTEGER PRIMARY KEY, + ClubName VARCHAR(40), + ClubDesc VARCHAR(1024), + ClubLocation VARCHAR(40) +); + +create table Member_of_club ( + StuID INTEGER, + ClubID INTEGER, + Position VARCHAR(40), + FOREIGN KEY(StuID) REFERENCES Student(StuID), + FOREIGN KEY(ClubID) REFERENCES Club(ClubID) +); + + +insert into Student values ( 1001, 'Smith', 'Linda', 18, 'F', 600, 1121,'BAL'); + insert into Student values ( 1002, 'Kim', 'Tracy', 19, 'F', 600, 7712,'HKG'); + insert into Student values ( 1003, 'Jones', 'Shiela', 21, 'F', 600, 7792,'WAS'); + insert into Student values ( 1004, 'Kumar', 'Dinesh', 20, 'M', 600, 8423,'CHI'); + insert into Student values ( 1005, 'Gompers', 'Paul', 26, 'M', 600, 1121,'YYZ'); + insert into Student values ( 1006, 'Schultz', 'Andy', 18, 'M', 600, 1148,'BAL'); + insert into Student values ( 1007, 'Apap', 'Lisa', 18, 'F', 600, 8918,'PIT'); + insert into Student values ( 1008, 'Nelson', 'Jandy', 20, 'F', 600, 9172,'BAL'); + insert into Student values ( 1009, 'Tai', 'Eric', 19, 'M', 600, 2192,'YYZ'); + insert into Student values ( 1010, 'Lee', 'Derek', 17, 'M', 600, 2192,'HOU'); + insert into Student values ( 1011, 'Adams', 'David', 22, 'M', 600, 1148,'PHL'); + insert into Student values ( 1012, 'Davis', 'Steven', 20, 'M', 600, 7723,'PIT'); + insert into Student values ( 1014, 'Norris', 'Charles', 18, 'M', 600, 8741, 'DAL'); + insert into Student values ( 1015, 'Lee', 'Susan', 16, 'F', 600, 8721,'HKG'); + insert into Student values ( 1016, 'Schwartz', 'Mark', 17, 'M', 600, 2192,'DET'); + insert into Student values ( 1017, 'Wilson', 'Bruce', 27, 'M', 600, 1148,'LON'); + insert into Student values ( 1018, 'Leighton', 'Michael', 20, 'M', 600, 1121, 'PIT'); + insert into Student values ( 1019, 'Pang', 'Arthur', 18, 'M', 600, 2192,'WAS'); + insert into Student values ( 1020, 'Thornton', 'Ian', 22, 'M', 520, 7271,'NYC'); + insert into Student values ( 1021, 'Andreou', 'George', 19, 'M', 520, 8722, 'NYC'); + insert into Student values ( 1022, 'Woods', 'Michael', 17, 'M', 540, 8722,'PHL'); + insert into Student values ( 1023, 'Shieber', 'David', 20, 'M', 520, 8722,'NYC'); + insert into Student values ( 1024, 'Prater', 'Stacy', 18, 'F', 540, 7271,'BAL'); + insert into Student values ( 1025, 'Goldman', 'Mark', 18, 'M', 520, 7134,'PIT'); + insert into Student values ( 1026, 'Pang', 'Eric', 19, 'M', 520, 7134,'HKG'); + insert into Student values ( 1027, 'Brody', 'Paul', 18, 'M', 520, 8723,'LOS'); + insert into Student values ( 1028, 'Rugh', 'Eric', 20, 'M', 550, 2311,'ROC'); + insert into Student values ( 1029, 'Han', 'Jun', 17, 'M', 100, 2311,'PEK'); + insert into Student values ( 1030, 'Cheng', 'Lisa', 21, 'F', 550, 2311,'SFO'); + insert into Student values ( 1031, 'Smith', 'Sarah', 20, 'F', 550, 8772,'PHL'); + insert into Student values ( 1032, 'Brown', 'Eric', 20, 'M', 550, 8772,'ATL'); + insert into Student values ( 1033, 'Simms', 'William', 18, 'M', 550, 8772,'NAR'); + insert into Student values ( 1034, 'Epp', 'Eric', 18, 'M', 050, 5718,'BOS'); + insert into Student values ( 1035, 'Schmidt', 'Sarah', 26, 'F', 050, 5718,'WAS'); + + +insert into Club values ( 1, 'Bootup Baltimore', 'Refurbish computers; teach kids and adults about computer basics.', 'AKW'); +insert into Club values ( 2, 'Hopkins Student Enterprises', 'Venture capital fund for student business.', 'AKW'); +insert into Club values ( 3, 'Pen and Paper Gaming', 'Play pen and paper games on campus.', 'HHH'); +insert into Club values ( 4, 'Tennis Club', 'A competitive tennis club.', 'AKW'); + +insert into Member_of_club values ( 1001, 1, 'President'); +insert into Member_of_club values ( 1007, 4, 'Vice-President'); +insert into Member_of_club values ( 1008, 2, 'CTO'); +insert into Member_of_club values ( 1010, 1, 'Teaching Coordinator'); diff --git a/database/coffee_shop/coffee_shop.sqlite b/database/coffee_shop/coffee_shop.sqlite new file mode 100644 index 0000000000000000000000000000000000000000..f3e5402a3e1046bb6404d1e2e150db9f50c23eb0 Binary files /dev/null and b/database/coffee_shop/coffee_shop.sqlite differ diff --git a/database/coffee_shop/schema.sql b/database/coffee_shop/schema.sql new file mode 100644 index 0000000000000000000000000000000000000000..c34c2c2614d4f6083d029a63ead0a4debab8c5ef --- /dev/null +++ b/database/coffee_shop/schema.sql @@ -0,0 +1,85 @@ + +PRAGMA foreign_keys = ON; +CREATE TABLE "shop" ( +"Shop_ID" int, +"Address" text, +"Num_of_staff" text, +"Score" real, +"Open_Year" text, +PRIMARY KEY ("Shop_ID") +); + + +INSERT INTO "shop" VALUES ("1","1200 Main Street","13","42","2010"); +INSERT INTO "shop" VALUES ("2","1111 Main Street","19","38","2008"); +INSERT INTO "shop" VALUES ("3","1330 Baltimore Street","42","36","2010"); +INSERT INTO "shop" VALUES ("4","909 Walnut Street","27","32","2010"); +INSERT INTO "shop" VALUES ("5","414 E. 12th Street","24","30","2011"); +INSERT INTO "shop" VALUES ("6","1201 Walnut Street","34","30","2010"); +INSERT INTO "shop" VALUES ("7","2345 McGee Street","425","40","2008"); +INSERT INTO "shop" VALUES ("8","909 Main Street","28","30","2011"); +INSERT INTO "shop" VALUES ("9","1100 Main Street","23","30","2006"); +INSERT INTO "shop" VALUES ("10","324 E. 11th Street","16","28","2008"); + + + +CREATE TABLE "member" ( +"Member_ID" int, +"Name" text, +"Membership_card" text, +"Age" int, +"Time_of_purchase" int, +"Level_of_membership" int, +"Address" text, +PRIMARY KEY ("Member_ID") +); + + +INSERT INTO "member" VALUES (1,"Ashby, Lazale","Black","29","18","5","Hartford"); +INSERT INTO "member" VALUES (2,"Breton, Robert","White","67","41","4","Waterbury"); +INSERT INTO "member" VALUES (3,"Campbell, Jessie","Black","34","20","6","Hartford"); +INSERT INTO "member" VALUES (4,"Cobb, Sedrick","Black","51","27","2","Waterbury"); +INSERT INTO "member" VALUES (5,"Hayes, Steven","White","50","44","3","Cheshire"); +INSERT INTO "member" VALUES (6,"Komisarjevsky, Joshua","White","33","26","2","Cheshire"); +INSERT INTO "member" VALUES (7,"Peeler, Russell","Black","42","26","6","Bridgeport"); +INSERT INTO "member" VALUES (8,"Reynolds, Richard","Black","45","24","1","Waterbury"); +INSERT INTO "member" VALUES (9,"Rizzo, Todd","White","35","18","4","Waterbury"); +INSERT INTO "member" VALUES (10,"Webb, Daniel","Black","51","27","22","Hartford"); + +CREATE TABLE "happy_hour" ( +"HH_ID" int, +"Shop_ID" int, +"Month" text, +"Num_of_shaff_in_charge" int, +PRIMARY KEY ("HH_ID","Shop_ID","Month"), +FOREIGN KEY ("Shop_ID") REFERENCES `shop`("Shop_ID") +); + +INSERT INTO "happy_hour" VALUES (1,1,"May",10); +INSERT INTO "happy_hour" VALUES (2,1,"April",12); +INSERT INTO "happy_hour" VALUES (3,10,"June",15); +INSERT INTO "happy_hour" VALUES (4,5,"July",5); +INSERT INTO "happy_hour" VALUES (5,1,"May",10); +INSERT INTO "happy_hour" VALUES (6,1,"April",12); +INSERT INTO "happy_hour" VALUES (7,2,"June",5); +INSERT INTO "happy_hour" VALUES (8,3,"July",15); +INSERT INTO "happy_hour" VALUES (9,3,"May",3); +INSERT INTO "happy_hour" VALUES (10,3,"April",4); + + +CREATE TABLE "happy_hour_member" ( +"HH_ID" int, +"Member_ID" int, +"Total_amount" real, +PRIMARY KEY ("HH_ID","Member_ID"), +FOREIGN KEY ("Member_ID") REFERENCES `member`("Member_ID") +); + +INSERT INTO "happy_hour_member" VALUES (1,3,20.90); +INSERT INTO "happy_hour_member" VALUES (4,3,20.92); +INSERT INTO "happy_hour_member" VALUES (7,9,4.90); +INSERT INTO "happy_hour_member" VALUES (2,5,16.90); +INSERT INTO "happy_hour_member" VALUES (5,5,16.92); +INSERT INTO "happy_hour_member" VALUES (8,9,4.20); + + diff --git a/database/college_1/TinyCollege.sql b/database/college_1/TinyCollege.sql new file mode 100644 index 0000000000000000000000000000000000000000..fd58a35794e9523f6704a749a90b88bd7a0954a1 --- /dev/null +++ b/database/college_1/TinyCollege.sql @@ -0,0 +1,194 @@ +/* Database Systems, Coronel/Morris */ +/* Type of SQL : MySQL */ + + +CREATE TABLE CLASS ( +CLASS_CODE varchar(5) PRIMARY KEY, +CRS_CODE varchar(10), +CLASS_SECTION varchar(2), +CLASS_TIME varchar(20), +CLASS_ROOM varchar(8), +PROF_NUM int, +FOREIGN KEY (CRS_CODE) REFERENCES COURSE(CRS_CODE) +FOREIGN KEY (PROF_NUM) REFERENCES EMPLOYEE(EMP_NUM) +); +INSERT INTO CLASS VALUES('10012','ACCT-211','1','MWF 8:00-8:50 a.m.','BUS311','105'); +INSERT INTO CLASS VALUES('10013','ACCT-211','2','MWF 9:00-9:50 a.m.','BUS200','105'); +INSERT INTO CLASS VALUES('10014','ACCT-211','3','TTh 2:30-3:45 p.m.','BUS252','342'); +INSERT INTO CLASS VALUES('10015','ACCT-212','1','MWF 10:00-10:50 a.m.','BUS311','301'); +INSERT INTO CLASS VALUES('10016','ACCT-212','2','Th 6:00-8:40 p.m.','BUS252','301'); +INSERT INTO CLASS VALUES('10017','CIS-220','1','MWF 9:00-9:50 a.m.','KLR209','228'); +INSERT INTO CLASS VALUES('10018','CIS-220','2','MWF 9:00-9:50 a.m.','KLR211','114'); +INSERT INTO CLASS VALUES('10019','CIS-220','3','MWF 10:00-10:50 a.m.','KLR209','228'); +INSERT INTO CLASS VALUES('10020','CIS-420','1','W 6:00-8:40 p.m.','KLR209','162'); +INSERT INTO CLASS VALUES('10021','QM-261','1','MWF 8:00-8:50 a.m.','KLR200','114'); +INSERT INTO CLASS VALUES('10022','QM-261','2','TTh 1:00-2:15 p.m.','KLR200','114'); +INSERT INTO CLASS VALUES('10023','QM-362','1','MWF 11:00-11:50 a.m.','KLR200','162'); +INSERT INTO CLASS VALUES('10024','QM-362','2','TTh 2:30-3:45 p.m.','KLR200','162'); + +/* -- */ + + +CREATE TABLE COURSE ( +CRS_CODE varchar(10) PRIMARY KEY, +DEPT_CODE varchar(10), +CRS_DESCRIPTION varchar(35), +CRS_CREDIT float(8), +FOREIGN KEY (DEPT_CODE) REFERENCES DEPARTMENT(DEPT_CODE) +); +INSERT INTO COURSE VALUES('ACCT-211','ACCT','Accounting I','3'); +INSERT INTO COURSE VALUES('ACCT-212','ACCT','Accounting II','3'); +INSERT INTO COURSE VALUES('CIS-220','CIS','Intro. to Microcomputing','3'); +INSERT INTO COURSE VALUES('CIS-420','CIS','Database Design and Implementation','4'); +INSERT INTO COURSE VALUES('QM-261','CIS','Intro. to Statistics','3'); +INSERT INTO COURSE VALUES('QM-362','CIS','Statistical Applications','4'); + +/* -- */ + +CREATE TABLE DEPARTMENT ( +DEPT_CODE varchar(10) PRIMARY KEY, +DEPT_NAME varchar(30), +SCHOOL_CODE varchar(8), +EMP_NUM int, +DEPT_ADDRESS varchar(20), +DEPT_EXTENSION varchar(4), +FOREIGN KEY (EMP_NUM) REFERENCES EMPLOYEE(EMP_NUM) +); +INSERT INTO DEPARTMENT VALUES('ACCT','Accounting','BUS','114','KLR 211, Box 52','3119'); +INSERT INTO DEPARTMENT VALUES('ART','Fine Arts','A&SCI','435','BBG 185, Box 128','2278'); +INSERT INTO DEPARTMENT VALUES('BIOL','Biology','A&SCI','387','AAK 230, Box 415','4117'); +INSERT INTO DEPARTMENT VALUES('CIS','Computer Info. Systems','BUS','209','KLR 333, Box 56','3245'); +INSERT INTO DEPARTMENT VALUES('ECON/FIN','Economics/Finance','BUS','299','KLR 284, Box 63','3126'); +INSERT INTO DEPARTMENT VALUES('ENG','English','A&SCI','160','DRE 102, Box 223','1004'); +INSERT INTO DEPARTMENT VALUES('HIST','History','A&SCI','103','DRE 156, Box 284','1867'); +INSERT INTO DEPARTMENT VALUES('MATH','Mathematics','A&SCI','297','AAK 194, Box 422','4234'); +INSERT INTO DEPARTMENT VALUES('MKT/MGT','Marketing/Management','BUS','106','KLR 126, Box 55','3342'); +INSERT INTO DEPARTMENT VALUES('PSYCH','Psychology','A&SCI','195','AAK 297, Box 438','4110'); +INSERT INTO DEPARTMENT VALUES('SOC','Sociology','A&SCI','342','BBG 208, Box 132','2008'); + +/* -- */ + +CREATE TABLE EMPLOYEE ( +EMP_NUM int PRIMARY KEY, +EMP_LNAME varchar(15), +EMP_FNAME varchar(12), +EMP_INITIAL varchar(1), +EMP_JOBCODE varchar(5), +EMP_HIREDATE datetime, +EMP_DOB datetime +); +INSERT INTO EMPLOYEE VALUES('100','Worley','James','F','CUST','1978-2-23','1950-6-12'); +INSERT INTO EMPLOYEE VALUES('101','Ramso','Henry','B','CUST','1994-11-15','1961-11-2'); +INSERT INTO EMPLOYEE VALUES('102','Edwards','Rosemary','D','TECH','1990-7-23','1953-7-3'); +INSERT INTO EMPLOYEE VALUES('103','Donelly','Ronald','O','PROF','1987-7-1','1952-10-2'); +INSERT INTO EMPLOYEE VALUES('104','Yukon','Preston','D','PROF','1992-5-1','1948-2-23'); +INSERT INTO EMPLOYEE VALUES('105','Heffington','Arnelle','B','PROF','1991-7-1','1950-11-2'); +INSERT INTO EMPLOYEE VALUES('106','Washington','Ross','E','PROF','1976-8-1','1941-3-4'); +INSERT INTO EMPLOYEE VALUES('108','Robertson','Elaine','W','TECH','1983-10-18','1961-6-20'); +INSERT INTO EMPLOYEE VALUES('110','Thieu','Van','S','PROF','1989-8-1','1951-8-12'); +INSERT INTO EMPLOYEE VALUES('114','Graztevski','Gerald','B','PROF','1978-8-1','1939-3-18'); +INSERT INTO EMPLOYEE VALUES('122','Wilson','Todd','H','CUST','1990-11-6','1966-10-19'); +INSERT INTO EMPLOYEE VALUES('123','Jones','Suzanne','B','TECH','1994-1-5','1967-12-30'); +INSERT INTO EMPLOYEE VALUES('124','Smith','Elsa','K','CLRK','1982-12-16','1943-9-13'); +INSERT INTO EMPLOYEE VALUES('126','Ardano','James','G','CLRK','1994-10-1','1970-3-12'); +INSERT INTO EMPLOYEE VALUES('155','Ritula','Annelise','','PROF','1990-8-1','1957-5-24'); +INSERT INTO EMPLOYEE VALUES('160','Smith','Robert','T','PROF','1992-8-1','1955-6-19'); +INSERT INTO EMPLOYEE VALUES('161','Watson','George','F','CUST','1994-11-1','1962-10-2'); +INSERT INTO EMPLOYEE VALUES('162','Rob','Peter','','PROF','1981-8-1','1940-6-20'); +INSERT INTO EMPLOYEE VALUES('165','Williamson','Kathryn','A','CLRK','1992-6-15','1968-11-17'); +INSERT INTO EMPLOYEE VALUES('166','Herndon','Jill','M','TECH','1990-8-18','1965-8-29'); +INSERT INTO EMPLOYEE VALUES('173','Teng','Weston','J','TECH','1980-7-15','1951-11-17'); +INSERT INTO EMPLOYEE VALUES('191','Dexter','Willa','N','PROF','1984-8-1','1953-5-17'); +INSERT INTO EMPLOYEE VALUES('195','Williams','Herman','H','PROF','1988-8-1','1955-11-19'); +INSERT INTO EMPLOYEE VALUES('209','Smith','Melanie','K','PROF','1983-8-1','1946-5-24'); +INSERT INTO EMPLOYEE VALUES('228','Coronel','Carlos','M','PROF','1988-8-1','1949-5-16'); +INSERT INTO EMPLOYEE VALUES('231','Shebert','Rebecca','A','CUST','1994-2-21','1963-2-27'); +INSERT INTO EMPLOYEE VALUES('297','Jones','Hermine','','PROF','1985-1-1','1950-7-4'); +INSERT INTO EMPLOYEE VALUES('299','Stoddard','Doreen','L','PROF','1994-8-1','1960-4-25'); +INSERT INTO EMPLOYEE VALUES('301','Osaki','Ismael','K','PROF','1989-8-1','1952-5-25'); +INSERT INTO EMPLOYEE VALUES('333','Jordan','Julian','H','TECH','1991-4-23','1968-7-16'); +INSERT INTO EMPLOYEE VALUES('335','Okomoto','Ronald','F','PROF','1975-8-1','1944-3-3'); +INSERT INTO EMPLOYEE VALUES('342','Smith','Robert','A','PROF','1978-8-1','1937-12-30'); +INSERT INTO EMPLOYEE VALUES('387','Smithson','George','D','PROF','1982-8-1','1948-10-1'); +INSERT INTO EMPLOYEE VALUES('401','Blalock','James','G','PROF','1981-8-1','1945-3-15'); +INSERT INTO EMPLOYEE VALUES('412','Smith','Robert','E','CUST','1985-6-24','1963-9-25'); +INSERT INTO EMPLOYEE VALUES('425','Matler','Ralph','F','PROF','1995-8-1','1973-12-2'); +INSERT INTO EMPLOYEE VALUES('435','Doornberg','Anne','D','PROF','1992-8-1','1963-10-2'); + +/* -- */ + + +CREATE TABLE ENROLL ( +CLASS_CODE varchar(5), +STU_NUM int, +ENROLL_GRADE varchar(50), +FOREIGN KEY (CLASS_CODE) REFERENCES CLASS(CLASS_CODE) +FOREIGN KEY (STU_NUM) REFERENCES STUDENT(STU_NUM) +); +INSERT INTO ENROLL VALUES('10014','321452','C'); +INSERT INTO ENROLL VALUES('10014','324257','B'); +INSERT INTO ENROLL VALUES('10018','321452','A'); +INSERT INTO ENROLL VALUES('10018','324257','B'); +INSERT INTO ENROLL VALUES('10021','321452','C'); +INSERT INTO ENROLL VALUES('10021','324257','C'); + +/* -- */ + + +CREATE TABLE PROFESSOR ( +EMP_NUM int, +DEPT_CODE varchar(10), +PROF_OFFICE varchar(50), +PROF_EXTENSION varchar(4), +PROF_HIGH_DEGREE varchar(5), +FOREIGN KEY (EMP_NUM) REFERENCES EMPLOYEE(EMP_NUM), +FOREIGN KEY (DEPT_CODE) REFERENCES DEPARTMENT(DEPT_CODE) +); +INSERT INTO PROFESSOR VALUES('103','HIST','DRE 156','6783','Ph.D.'); +INSERT INTO PROFESSOR VALUES('104','ENG','DRE 102','5561','MA'); +INSERT INTO PROFESSOR VALUES('105','ACCT','KLR 229D','8665','Ph.D.'); +INSERT INTO PROFESSOR VALUES('106','MKT/MGT','KLR 126','3899','Ph.D.'); +INSERT INTO PROFESSOR VALUES('110','BIOL','AAK 160','3412','Ph.D.'); +INSERT INTO PROFESSOR VALUES('114','ACCT','KLR 211','4436','Ph.D.'); +INSERT INTO PROFESSOR VALUES('155','MATH','AAK 201','4440','Ph.D.'); +INSERT INTO PROFESSOR VALUES('160','ENG','DRE 102','2248','Ph.D.'); +INSERT INTO PROFESSOR VALUES('162','CIS','KLR 203E','2359','Ph.D.'); +INSERT INTO PROFESSOR VALUES('191','MKT/MGT','KLR 409B','4016','DBA'); +INSERT INTO PROFESSOR VALUES('195','PSYCH','AAK 297','3550','Ph.D.'); +INSERT INTO PROFESSOR VALUES('209','CIS','KLR 333','3421','Ph.D.'); +INSERT INTO PROFESSOR VALUES('228','CIS','KLR 300','3000','Ph.D.'); +INSERT INTO PROFESSOR VALUES('297','MATH','AAK 194','1145','Ph.D.'); +INSERT INTO PROFESSOR VALUES('299','ECON/FIN','KLR 284','2851','Ph.D.'); +INSERT INTO PROFESSOR VALUES('301','ACCT','KLR 244','4683','Ph.D.'); +INSERT INTO PROFESSOR VALUES('335','ENG','DRE 208','2000','Ph.D.'); +INSERT INTO PROFESSOR VALUES('342','SOC','BBG 208','5514','Ph.D.'); +INSERT INTO PROFESSOR VALUES('387','BIOL','AAK 230','8665','Ph.D.'); +INSERT INTO PROFESSOR VALUES('401','HIST','DRE 156','6783','MA'); +INSERT INTO PROFESSOR VALUES('425','ECON/FIN','KLR 284','2851','MBA'); +INSERT INTO PROFESSOR VALUES('435','ART','BBG 185','2278','Ph.D.'); + +/* -- */ + +CREATE TABLE STUDENT ( +STU_NUM int PRIMARY KEY, +STU_LNAME varchar(15), +STU_FNAME varchar(15), +STU_INIT varchar(1), +STU_DOB datetime, +STU_HRS int, +STU_CLASS varchar(2), +STU_GPA float(8), +STU_TRANSFER numeric, +DEPT_CODE varchar(18), +STU_PHONE varchar(4), +PROF_NUM int, +FOREIGN KEY (DEPT_CODE) REFERENCES DEPARTMENT(DEPT_CODE) +); +INSERT INTO STUDENT VALUES('321452','Bowser','William','C','1975-2-12','42','So','2.84','0','BIOL','2134','205'); +INSERT INTO STUDENT VALUES('324257','Smithson','Anne','K','1981-11-15','81','Jr','3.27','1','CIS','2256','222'); +INSERT INTO STUDENT VALUES('324258','Brewer','Juliette','','1969-8-23','36','So','2.26','1','ACCT','2256','228'); +INSERT INTO STUDENT VALUES('324269','Oblonski','Walter','H','1976-9-16','66','Jr','3.09','0','CIS','2114','222'); +INSERT INTO STUDENT VALUES('324273','Smith','John','D','1958-12-30','102','Sr','2.11','1','ENGL','2231','199'); +INSERT INTO STUDENT VALUES('324274','Katinga','Raphael','P','1979-10-21','114','Sr','3.15','0','ACCT','2267','228'); +INSERT INTO STUDENT VALUES('324291','Robertson','Gerald','T','1973-4-8','120','Sr','3.87','0','EDU','2267','311'); +INSERT INTO STUDENT VALUES('324299','Smith','John','B','1986-11-30','15','Fr','2.92','0','ACCT','2315','230'); diff --git a/database/college_1/college_1.sqlite b/database/college_1/college_1.sqlite new file mode 100644 index 0000000000000000000000000000000000000000..8e187f5ee84e7d1125465b7fbf18770a041ae08a Binary files /dev/null and b/database/college_1/college_1.sqlite differ diff --git a/database/college_1/link.txt b/database/college_1/link.txt new file mode 100644 index 0000000000000000000000000000000000000000..e6249d4a38b08a03187af0427612e583ea9727b0 --- /dev/null +++ b/database/college_1/link.txt @@ -0,0 +1 @@ +http://www.cs.dartmouth.edu/~cs61/Examples/ diff --git a/database/college_2/TextBookExampleSchema.sql b/database/college_2/TextBookExampleSchema.sql new file mode 100644 index 0000000000000000000000000000000000000000..5c8d15124eddabb2471c4c661d9459292ee28ebd --- /dev/null +++ b/database/college_2/TextBookExampleSchema.sql @@ -0,0 +1,34753 @@ + +create table classroom + (building varchar(15), + room_number varchar(7), + capacity numeric(4,0), + primary key (building, room_number) + ); + +create table department + (dept_name varchar(20), + building varchar(15), + budget numeric(12,2) check (budget > 0), + primary key (dept_name) + ); + +create table course + (course_id varchar(8), + title varchar(50), + dept_name varchar(20) NULL, + credits numeric(2,0) check (credits > 0), + primary key (course_id), + FOREIGN KEY (dept_name) + REFERENCES `department` (dept_name) + ON DELETE SET NULL +-- ON UPDATE NO ACTION +-- foreign key (dept_name) references department +-- on delete set null + ); + +create table instructor + (ID varchar(5), + name varchar(20) not null, + dept_name varchar(20), + salary numeric(8,2) check (salary > 29000), + primary key (ID), + foreign key (dept_name) references department (dept_name) + on delete set null + ); + +create table section + (course_id varchar(8), + sec_id varchar(8), + semester varchar(6) + check (semester in ('Fall', 'Winter', 'Spring', 'Summer')), + year numeric(4,0) check (year > 1701 and year < 2100), + building varchar(15), + room_number varchar(7), + time_slot_id varchar(4), + primary key (course_id, sec_id, semester, year), + foreign key (course_id) references course (course_id) + on delete cascade, + foreign key (building, room_number) references classroom (building, room_number) + on delete set null + ); + +create table teaches + (ID varchar(5), + course_id varchar(8), + sec_id varchar(8), + semester varchar(6), + year numeric(4,0), + primary key (ID, course_id, sec_id, semester, year), + foreign key (course_id,sec_id, semester, year) references section (course_id, sec_id, semester, year) + on delete cascade, + foreign key (ID) references instructor (ID) + on delete cascade + ); + +create table student + (ID varchar(5), + name varchar(20) not null, + dept_name varchar(20), + tot_cred numeric(3,0) check (tot_cred >= 0), + primary key (ID), + foreign key (dept_name) references department (dept_name) + on delete set null + ); + +create table takes + (ID varchar(5), + course_id varchar(8), + sec_id varchar(8), + semester varchar(6), + year numeric(4,0), + grade varchar(2), + primary key (ID, course_id, sec_id, semester, year), + foreign key (course_id,sec_id, semester, year) references section (course_id, sec_id, semester, year) + on delete cascade, + foreign key (ID) references student (ID) + on delete cascade + ); + +create table advisor + (s_ID varchar(5), + i_ID varchar(5), + primary key (s_ID), + foreign key (i_ID) references instructor (ID) + on delete set null, + foreign key (s_ID) references student (ID) + on delete cascade + ); + +create table time_slot + (time_slot_id varchar(4), + day varchar(1), + start_hr numeric(2) check (start_hr >= 0 and start_hr < 24), + start_min numeric(2) check (start_min >= 0 and start_min < 60), + end_hr numeric(2) check (end_hr >= 0 and end_hr < 24), + end_min numeric(2) check (end_min >= 0 and end_min < 60), + primary key (time_slot_id, day, start_hr, start_min) + ); + +create table prereq + (course_id varchar(8), + prereq_id varchar(8), + primary key (course_id, prereq_id), + foreign key (course_id) references course (course_id) + on delete cascade, + foreign key (prereq_id) references course (course_id) + ); + + + delete from prereq; + delete from time_slot; + delete from advisor; + delete from takes; + delete from student; + delete from teaches; + delete from section; + delete from instructor; + delete from course; + delete from department; + delete from classroom; + insert into time_slot values ( 'A', 'M', 8, 0, 8, 50); + insert into time_slot values ( 'A', 'W', 8, 0, 8, 50); + insert into time_slot values ( 'A', 'F', 8, 0, 8, 50); + insert into time_slot values ( 'B', 'M', 9, 0, 9, 50); + insert into time_slot values ( 'B', 'W', 9, 0, 9, 50); + insert into time_slot values ( 'B', 'F', 9, 0, 9, 50); + insert into time_slot values ( 'C', 'M', 11, 0, 11, 50); + insert into time_slot values ( 'C', 'W', 11, 0, 11, 50); + insert into time_slot values ( 'C', 'F', 11, 0, 11, 50); + insert into time_slot values ( 'D', 'M', 13, 0, 13, 50); + insert into time_slot values ( 'D', 'W', 13, 0, 13, 50); + insert into time_slot values ( 'D', 'F', 13, 0, 13, 50); + insert into time_slot values ( 'E', 'T', 10, 30, 11, 45); + insert into time_slot values ( 'E', 'R', 10, 30, 11, 45); + insert into time_slot values ( 'F', 'T', 14, 30, 15, 45); + insert into time_slot values ( 'F', 'R', 14, 30, 15, 45); + insert into time_slot values ( 'G', 'M', 16, 0, 16, 50); + insert into time_slot values ( 'G', 'W', 16, 0, 16, 50); + insert into time_slot values ( 'G', 'F', 16, 0, 16, 50); + insert into time_slot values ( 'H', 'W', 10, 0, 12, 30); + insert into classroom values('Lamberton', 134, 10); + insert into classroom values('Chandler', 375, 10); + insert into classroom values('Fairchild', 145, 27); + insert into classroom values('Nassau', 45, 92); + insert into classroom values('Grace', 40, 34); + insert into classroom values('Whitman', 134, 120); + insert into classroom values('Lamberton', 143, 10); + insert into classroom values('Taylor', 812, 115); + insert into classroom values('Saucon', 113, 109); + insert into classroom values('Painter', 86, 97); + insert into classroom values('Alumni', 547, 26); + insert into classroom values('Alumni', 143, 47); + insert into classroom values('Drown', 757, 18); + insert into classroom values('Saucon', 180, 15); + insert into classroom values('Whitman', 434, 32); + insert into classroom values('Saucon', 844, 24); + insert into classroom values('Bronfman', 700, 12); + insert into classroom values('Polya', 808, 28); + insert into classroom values('Gates', 707, 65); + insert into classroom values('Gates', 314, 10); + insert into classroom values('Main', 45, 30); + insert into classroom values('Taylor', 183, 71); + insert into classroom values('Power', 972, 10); + insert into classroom values('Garfield', 119, 59); + insert into classroom values('Rathbone', 261, 60); + insert into classroom values('Stabler', 105, 113); + insert into classroom values('Power', 717, 12); + insert into classroom values('Main', 425, 22); + insert into classroom values('Lambeau', 348, 51); + insert into classroom values('Chandler', 804, 11); + insert into department values('Civil Eng.', 'Chandler', 255041.46); + insert into department values('Biology', 'Candlestick', 647610.55); + insert into department values('History', 'Taylor', 699140.86); + insert into department values('Physics', 'Wrigley', 942162.76); + insert into department values('Marketing', 'Lambeau', 210627.58); + insert into department values('Pol. Sci.', 'Whitman', 573745.09); + insert into department values('English', 'Palmer', 611042.66); + insert into department values('Accounting', 'Saucon', 441840.92); + insert into department values('Comp. Sci.', 'Lamberton', 106378.69); + insert into department values('Languages', 'Linderman', 601283.60); + insert into department values('Finance', 'Candlestick', 866831.75); + insert into department values('Geology', 'Palmer', 406557.93); + insert into department values('Cybernetics', 'Mercer', 794541.46); + insert into department values('Astronomy', 'Taylor', 617253.94); + insert into department values('Athletics', 'Bronfman', 734550.70); + insert into department values('Statistics', 'Taylor', 395051.74); + insert into department values('Psychology', 'Thompson', 848175.04); + insert into department values('Math', 'Brodhead', 777605.11); + insert into department values('Elec. Eng.', 'Main', 276527.61); + insert into department values('Mech. Eng.', 'Rauch', 520350.65); + insert into course values('787', 'C Programming', 'Mech. Eng.', 4); + insert into course values('238', 'The Music of Donovan', 'Mech. Eng.', 3); + insert into course values('608', 'Electron Microscopy', 'Mech. Eng.', 3); + insert into course values('539', 'International Finance', 'Comp. Sci.', 3); + insert into course values('278', 'Greek Tragedy', 'Statistics', 4); + insert into course values('972', 'Greek Tragedy', 'Psychology', 4); + insert into course values('391', 'Virology', 'Biology', 3); + insert into course values('814', 'Compiler Design', 'Elec. Eng.', 3); + insert into course values('272', 'Geology', 'Mech. Eng.', 3); + insert into course values('612', 'Mobile Computing', 'Physics', 3); + insert into course values('237', 'Surfing', 'Cybernetics', 3); + insert into course values('313', 'International Trade', 'Marketing', 3); + insert into course values('887', 'Latin', 'Mech. Eng.', 3); + insert into course values('328', 'Composition and Literature', 'Cybernetics', 3); + insert into course values('984', 'Music of the 50s', 'History', 3); + insert into course values('241', 'Biostatistics', 'Geology', 3); + insert into course values('338', 'Graph Theory', 'Psychology', 3); + insert into course values('400', 'Visual BASIC', 'Psychology', 4); + insert into course values('760', 'How to Groom your Cat', 'Accounting', 3); + insert into course values('629', 'Finite Element Analysis', 'Cybernetics', 3); + insert into course values('762', 'The Monkeys', 'History', 4); + insert into course values('242', 'Rock and Roll', 'Marketing', 3); + insert into course values('482', 'FOCAL Programming', 'Psychology', 4); + insert into course values('581', 'Calculus', 'Pol. Sci.', 4); + insert into course values('843', 'Environmental Law', 'Math', 4); + insert into course values('679', 'The Beatles', 'Math', 3); + insert into course values('704', 'Marine Mammals', 'Geology', 4); + insert into course values('774', 'Game Programming', 'Cybernetics', 4); + insert into course values('591', 'Shakespeare', 'Pol. Sci.', 4); + insert into course values('319', 'World History', 'Finance', 4); + insert into course values('960', 'Tort Law', 'Civil Eng.', 3); + insert into course values('274', 'Corporate Law', 'Comp. Sci.', 4); + insert into course values('426', 'Video Gaming', 'Finance', 3); + insert into course values('852', 'World History', 'Athletics', 4); + insert into course values('408', 'Bankruptcy', 'Accounting', 3); + insert into course values('808', 'Organic Chemistry', 'English', 4); + insert into course values('902', 'Existentialism', 'Finance', 3); + insert into course values('730', 'Quantum Mechanics', 'Elec. Eng.', 4); + insert into course values('362', 'Embedded Systems', 'Finance', 4); + insert into course values('341', 'Quantum Mechanics', 'Cybernetics', 3); + insert into course values('582', 'Marine Mammals', 'Cybernetics', 3); + insert into course values('867', 'The IBM 360 Architecture', 'History', 3); + insert into course values('169', 'Marine Mammals', 'Elec. Eng.', 3); + insert into course values('680', 'Electricity and Magnetism', 'Civil Eng.', 3); + insert into course values('227', 'Elastic Structures', 'Languages', 4); + insert into course values('991', 'Transaction Processing', 'Psychology', 3); + insert into course values('366', 'Computational Biology', 'English', 3); + insert into course values('376', 'Cost Accounting', 'Physics', 4); + insert into course values('489', 'Journalism', 'Astronomy', 4); + insert into course values('663', 'Geology', 'Psychology', 3); + insert into course values('461', 'Physical Chemistry', 'Math', 3); + insert into course values('105', 'Image Processing', 'Astronomy', 3); + insert into course values('407', 'Industrial Organization', 'Languages', 4); + insert into course values('254', 'Security', 'Cybernetics', 3); + insert into course values('998', 'Immunology', 'Civil Eng.', 4); + insert into course values('457', 'Systems Software', 'History', 3); + insert into course values('401', 'Sanitary Engineering', 'Athletics', 4); + insert into course values('127', 'Thermodynamics', 'Geology', 3); + insert into course values('399', 'RPG Programming', 'Pol. Sci.', 4); + insert into course values('949', 'Japanese', 'Comp. Sci.', 3); + insert into course values('496', 'Aquatic Chemistry', 'Cybernetics', 3); + insert into course values('334', 'International Trade', 'Athletics', 3); + insert into course values('544', 'Differential Geometry', 'Statistics', 3); + insert into course values('451', 'Database System Concepts', 'Pol. Sci.', 4); + insert into course values('190', 'Romantic Literature', 'Civil Eng.', 3); + insert into course values('630', 'Religion', 'English', 3); + insert into course values('761', 'Existentialism', 'Athletics', 3); + insert into course values('804', 'Introduction to Burglary', 'Cybernetics', 4); + insert into course values('781', 'Compiler Design', 'Finance', 4); + insert into course values('805', 'Composition and Literature', 'Statistics', 4); + insert into course values('318', 'Geology', 'Cybernetics', 3); + insert into course values('353', 'Operating Systems', 'Psychology', 3); + insert into course values('394', 'C Programming', 'Athletics', 3); + insert into course values('137', 'Manufacturing', 'Finance', 3); + insert into course values('192', 'Drama', 'Languages', 4); + insert into course values('681', 'Medieval Civilization or Lack Thereof', 'English', 3); + insert into course values('377', 'Differential Geometry', 'Astronomy', 4); + insert into course values('959', 'Bacteriology', 'Physics', 4); + insert into course values('235', 'International Trade', 'Math', 3); + insert into course values('421', 'Aquatic Chemistry', 'Athletics', 4); + insert into course values('647', 'Service-Oriented Architectures', 'Comp. Sci.', 4); + insert into course values('598', 'Number Theory', 'Accounting', 4); + insert into course values('858', 'Sailing', 'Math', 4); + insert into course values('487', 'Physical Chemistry', 'History', 3); + insert into course values('133', 'Antidisestablishmentarianism in Modern America', 'Biology', 4); + insert into course values('267', 'Hydraulics', 'Physics', 4); + insert into course values('200', 'The Music of the Ramones', 'Accounting', 4); + insert into course values('664', 'Elastic Structures', 'English', 3); + insert into course values('599', 'Mechanics', 'Psychology', 4); + insert into course values('456', 'Hebrew', 'Civil Eng.', 3); + insert into course values('558', 'Environmental Law', 'Psychology', 3); + insert into course values('919', 'Computability Theory', 'Math', 3); + insert into course values('546', 'Creative Writing', 'Mech. Eng.', 4); + insert into course values('969', 'The Monkeys', 'Astronomy', 4); + insert into course values('877', 'Composition and Literature', 'Biology', 4); + insert into course values('337', 'Differential Geometry', 'Statistics', 3); + insert into course values('983', 'Virology', 'Languages', 4); + insert into course values('603', 'Care and Feeding of Cats', 'Statistics', 3); + insert into course values('747', 'International Practicum', 'Comp. Sci.', 4); + insert into course values('659', 'Geology', 'Math', 4); + insert into course values('559', 'Martian History', 'Biology', 3); + insert into course values('403', 'Immunology', 'Biology', 3); + insert into course values('436', 'Stream Processing', 'Physics', 4); + insert into course values('656', 'Groups and Rings', 'Civil Eng.', 4); + insert into course values('731', 'The Music of Donovan', 'Physics', 4); + insert into course values('820', 'Assembly Language Programming', 'Cybernetics', 3); + insert into course values('898', 'Petroleum Engineering', 'Marketing', 4); + insert into course values('545', 'International Practicum', 'History', 3); + insert into course values('893', 'Systems Software', 'Cybernetics', 3); + insert into course values('818', 'Environmental Law', 'Astronomy', 4); + insert into course values('618', 'Thermodynamics', 'English', 4); + insert into course values('416', 'Data Mining', 'Accounting', 3); + insert into course values('716', 'Medieval Civilization or Lack Thereof', 'Languages', 4); + insert into course values('130', 'Differential Geometry', 'Physics', 3); + insert into course values('476', 'International Communication', 'Astronomy', 4); + insert into course values('101', 'Diffusion and Phase Transformation', 'Mech. Eng.', 3); + insert into course values('123', 'Differential Equations', 'Mech. Eng.', 3); + insert into course values('209', 'International Trade', 'Cybernetics', 4); + insert into course values('352', 'Compiler Design', 'Psychology', 4); + insert into course values('393', 'Aerodynamics', 'Languages', 3); + insert into course values('795', 'Death and Taxes', 'Marketing', 3); + insert into course values('577', 'The Music of Dave Edmunds', 'Elec. Eng.', 3); + insert into course values('584', 'Computability Theory', 'Comp. Sci.', 3); + insert into course values('864', 'Heat Transfer', 'Geology', 3); + insert into course values('594', 'Cognitive Psychology', 'Finance', 3); + insert into course values('802', 'African History', 'Cybernetics', 3); + insert into course values('692', 'Cat Herding', 'Athletics', 3); + insert into course values('258', 'Colloid and Surface Chemistry', 'Math', 3); + insert into course values('748', 'Tort Law', 'Cybernetics', 4); + insert into course values('770', 'European History', 'Pol. Sci.', 3); + insert into course values('340', 'Corporate Law', 'History', 3); + insert into course values('158', 'Elastic Structures', 'Cybernetics', 3); + insert into course values('276', 'Game Design', 'Comp. Sci.', 4); + insert into course values('626', 'Multimedia Design', 'History', 4); + insert into course values('696', 'Heat Transfer', 'Marketing', 4); + insert into course values('239', 'The Music of the Ramones', 'Physics', 4); + insert into course values('962', 'Animal Behavior', 'Psychology', 3); + insert into course values('527', 'Graphics', 'Finance', 3); + insert into course values('275', 'Romantic Literature', 'Languages', 3); + insert into course values('549', 'Banking and Finance', 'Astronomy', 3); + insert into course values('974', 'Astronautics', 'Accounting', 3); + insert into course values('897', 'How to Succeed in Business Without Really Trying', 'Languages', 4); + insert into course values('359', 'Game Programming', 'Comp. Sci.', 4); + insert into course values('345', 'Race Car Driving', 'Accounting', 4); + insert into course values('371', 'Milton', 'Finance', 3); + insert into course values('284', 'Topology', 'Comp. Sci.', 4); + insert into course values('642', 'Video Gaming', 'Psychology', 3); + insert into course values('769', 'Logic', 'Elec. Eng.', 4); + insert into course values('947', 'Real-Time Database Systems', 'Accounting', 3); + insert into course values('265', 'Thermal Physics', 'Cybernetics', 4); + insert into course values('927', 'Differential Geometry', 'Cybernetics', 4); + insert into course values('694', 'Optics', 'Math', 3); + insert into course values('580', 'The Music of Dave Edmunds', 'Physics', 4); + insert into course values('324', 'Ponzi Schemes', 'Civil Eng.', 3); + insert into course values('349', 'Networking', 'Finance', 4); + insert into course values('392', 'Recursive Function Theory', 'Astronomy', 4); + insert into course values('735', 'Greek Tragedy', 'Geology', 3); + insert into course values('702', 'Arabic', 'Biology', 3); + insert into course values('458', 'The Renaissance', 'Civil Eng.', 4); + insert into course values('348', 'Compiler Design', 'Elec. Eng.', 3); + insert into course values('500', 'Networking', 'Astronomy', 3); + insert into course values('494', 'Automobile Mechanics', 'Pol. Sci.', 4); + insert into course values('411', 'Music of the 80s', 'Mech. Eng.', 4); + insert into course values('493', 'Music of the 50s', 'Geology', 3); + insert into course values('396', 'C Programming', 'Languages', 3); + insert into course values('810', 'Mobile Computing', 'Geology', 3); + insert into course values('631', 'Plasma Physics', 'Elec. Eng.', 4); + insert into course values('486', 'Accounting', 'Geology', 3); + insert into course values('963', 'Groups and Rings', 'Languages', 4); + insert into course values('445', 'Biostatistics', 'Finance', 3); + insert into course values('292', 'Electron Microscopy', 'English', 4); + insert into course values('830', 'Sensor Networks', 'Astronomy', 4); + insert into course values('604', 'UNIX System Programmming', 'Statistics', 4); + insert into course values('857', 'UNIX System Programmming', 'Geology', 4); + insert into course values('304', 'Music 2 New for your Instructor', 'Finance', 4); + insert into course values('922', 'Microeconomics', 'Finance', 4); + insert into course values('571', 'Plastics', 'Comp. Sci.', 4); + insert into course values('628', 'Existentialism', 'Accounting', 3); + insert into course values('841', 'Fractal Geometry', 'Mech. Eng.', 4); + insert into course values('586', 'Image Processing', 'Finance', 4); + insert into course values('139', 'Number Theory', 'English', 4); + insert into course values('666', 'Multivariable Calculus', 'Accounting', 3); + insert into course values('443', 'Journalism', 'Physics', 4); + insert into course values('195', 'Numerical Methods', 'Geology', 4); + insert into course values('634', 'Astronomy', 'Cybernetics', 4); + insert into course values('224', 'International Finance', 'Athletics', 3); + insert into course values('791', 'Operating Systems', 'Marketing', 3); + insert into course values('875', 'Bioinformatics', 'Cybernetics', 3); + insert into course values('958', 'Fiction Writing', 'Mech. Eng.', 3); + insert into course values('415', 'Numerical Methods', 'Biology', 3); + insert into course values('442', 'Strength of Materials', 'Athletics', 3); + insert into course values('468', 'Fractal Geometry', 'Civil Eng.', 4); + insert into course values('270', 'Music of the 90s', 'Math', 4); + insert into course values('966', 'Sanitary Engineering', 'History', 3); + insert into course values('793', 'Decison Support Systems', 'Civil Eng.', 3); + insert into course values('236', 'Design and Analysis of Algorithms', 'Mech. Eng.', 3); + insert into course values('792', 'Image Processing', 'Accounting', 3); + insert into course values('561', 'The Music of Donovan', 'Elec. Eng.', 4); + insert into course values('344', 'Quantum Mechanics', 'Accounting', 4); + insert into course values('780', 'Geology', 'Psychology', 3); + insert into instructor values('63395', 'McKinnon', 'Cybernetics', 94333.99); + insert into instructor values('78699', 'Pingr', 'Statistics', 59303.62); + insert into instructor values('96895', 'Mird', 'Marketing', 119921.41); + insert into instructor values('4233', 'Luo', 'English', 88791.45); + insert into instructor values('4034', 'Murata', 'Athletics', 61387.56); + insert into instructor values('50885', 'Konstantinides', 'Languages', 32570.50); + insert into instructor values('79653', 'Levine', 'Elec. Eng.', 89805.83); + insert into instructor values('50330', 'Shuming', 'Physics', 108011.81); + insert into instructor values('80759', 'Queiroz', 'Biology', 45538.32); + insert into instructor values('73623', 'Sullivan', 'Elec. Eng.', 90038.09); + insert into instructor values('97302', 'Bertolino', 'Mech. Eng.', 51647.57); + insert into instructor values('57180', 'Hau', 'Accounting', 43966.29); + insert into instructor values('74420', 'Voronina', 'Physics', 121141.99); + insert into instructor values('35579', 'Soisalon-Soininen', 'Psychology', 62579.61); + insert into instructor values('31955', 'Moreira', 'Accounting', 71351.42); + insert into instructor values('37687', 'Arias', 'Statistics', 104563.38); + insert into instructor values('6569', 'Mingoz', 'Finance', 105311.38); + insert into instructor values('16807', 'Yazdi', 'Athletics', 98333.65); + insert into instructor values('14365', 'Lembr', 'Accounting', 32241.56); + insert into instructor values('90643', 'Choll', 'Statistics', 57807.09); + insert into instructor values('81991', 'Valtchev', 'Biology', 77036.18); + insert into instructor values('95030', 'Arinb', 'Statistics', 54805.11); + insert into instructor values('15347', 'Bawa', 'Athletics', 72140.88); + insert into instructor values('74426', 'Kenje', 'Marketing', 106554.73); + insert into instructor values('42782', 'Vicentino', 'Elec. Eng.', 34272.67); + insert into instructor values('58558', 'Dusserre', 'Marketing', 66143.25); + insert into instructor values('63287', 'Jaekel', 'Athletics', 103146.87); + insert into instructor values('59795', 'Desyl', 'Languages', 48803.38); + insert into instructor values('22591', 'DAgostino', 'Psychology', 59706.49); + insert into instructor values('48570', 'Sarkar', 'Pol. Sci.', 87549.80); + insert into instructor values('79081', 'Ullman ', 'Accounting', 47307.10); + insert into instructor values('52647', 'Bancilhon', 'Pol. Sci.', 87958.01); + insert into instructor values('25946', 'Liley', 'Languages', 90891.69); + insert into instructor values('36897', 'Morris', 'Marketing', 43770.36); + insert into instructor values('72553', 'Yin', 'English', 46397.59); + insert into instructor values('3199', 'Gustafsson', 'Elec. Eng.', 82534.37); + insert into instructor values('34175', 'Bondi', 'Comp. Sci.', 115469.11); + insert into instructor values('48507', 'Lent', 'Mech. Eng.', 107978.47); + insert into instructor values('65931', 'Pimenta', 'Cybernetics', 79866.95); + insert into instructor values('3335', 'Bourrier', 'Comp. Sci.', 80797.83); + insert into instructor values('64871', 'Gutierrez', 'Statistics', 45310.53); + insert into instructor values('95709', 'Sakurai', 'English', 118143.98); + insert into instructor values('43779', 'Romero', 'Astronomy', 79070.08); + insert into instructor values('77346', 'Mahmoud', 'Geology', 99382.59); + insert into instructor values('28097', 'Kean', 'English', 35023.18); + insert into instructor values('90376', 'Bietzk', 'Cybernetics', 117836.50); + insert into instructor values('28400', 'Atanassov', 'Statistics', 84982.92); + insert into instructor values('41930', 'Tung', 'Athletics', 50482.03); + insert into instructor values('19368', 'Wieland', 'Pol. Sci.', 124651.41); + insert into instructor values('99052', 'Dale', 'Cybernetics', 93348.83); + insert into section values('313', '1', 'Fall', 2010, 'Chandler', '804', 'N'); + insert into section values('747', '1', 'Spring', 2004, 'Gates', '314', 'K'); + insert into section values('443', '1', 'Spring', 2010, 'Whitman', '434', 'O'); + insert into section values('893', '1', 'Fall', 2007, 'Fairchild', '145', 'B'); + insert into section values('663', '1', 'Spring', 2005, 'Fairchild', '145', 'D'); + insert into section values('457', '1', 'Spring', 2001, 'Saucon', '844', 'D'); + insert into section values('445', '1', 'Spring', 2001, 'Alumni', '547', 'J'); + insert into section values('559', '1', 'Fall', 2002, 'Lamberton', '134', 'J'); + insert into section values('239', '1', 'Fall', 2006, 'Taylor', '183', 'C'); + insert into section values('802', '1', 'Spring', 2003, 'Saucon', '113', 'J'); + insert into section values('158', '1', 'Fall', 2008, 'Whitman', '434', 'F'); + insert into section values('735', '1', 'Spring', 2003, 'Drown', '757', 'D'); + insert into section values('237', '1', 'Spring', 2008, 'Power', '717', 'D'); + insert into section values('338', '1', 'Spring', 2007, 'Fairchild', '145', 'G'); + insert into section values('376', '1', 'Fall', 2006, 'Power', '717', 'K'); + insert into section values('927', '1', 'Fall', 2002, 'Saucon', '180', 'F'); + insert into section values('692', '1', 'Spring', 2010, 'Taylor', '183', 'I'); + insert into section values('867', '1', 'Fall', 2006, 'Taylor', '183', 'E'); + insert into section values('561', '1', 'Fall', 2006, 'Main', '45', 'L'); + insert into section values('604', '1', 'Spring', 2009, 'Bronfman', '700', 'N'); + insert into section values('974', '1', 'Fall', 2003, 'Polya', '808', 'H'); + insert into section values('959', '1', 'Fall', 2006, 'Saucon', '180', 'M'); + insert into section values('702', '1', 'Spring', 2001, 'Saucon', '113', 'O'); + insert into section values('631', '1', 'Spring', 2007, 'Taylor', '183', 'E'); + insert into section values('334', '1', 'Fall', 2009, 'Taylor', '812', 'O'); + insert into section values('274', '1', 'Fall', 2002, 'Main', '425', 'N'); + insert into section values('366', '1', 'Fall', 2005, 'Saucon', '844', 'O'); + insert into section values('545', '1', 'Fall', 2001, 'Saucon', '180', 'P'); + insert into section values('486', '1', 'Fall', 2009, 'Whitman', '134', 'K'); + insert into section values('426', '1', 'Spring', 2006, 'Lamberton', '134', 'G'); + insert into section values('258', '1', 'Fall', 2007, 'Main', '45', 'K'); + insert into section values('972', '1', 'Spring', 2009, 'Taylor', '183', 'J'); + insert into section values('349', '1', 'Spring', 2008, 'Saucon', '113', 'K'); + insert into section values('415', '1', 'Fall', 2010, 'Lamberton', '134', 'D'); + insert into section values('137', '1', 'Spring', 2002, 'Fairchild', '145', 'I'); + insert into section values('304', '1', 'Fall', 2009, 'Lamberton', '143', 'H'); + insert into section values('468', '1', 'Fall', 2005, 'Lambeau', '348', 'J'); + insert into section values('748', '1', 'Fall', 2003, 'Saucon', '180', 'L'); + insert into section values('694', '1', 'Fall', 2002, 'Alumni', '143', 'O'); + insert into section values('345', '1', 'Spring', 2008, 'Taylor', '183', 'A'); + insert into section values('352', '1', 'Spring', 2006, 'Lambeau', '348', 'M'); + insert into section values('581', '1', 'Spring', 2005, 'Alumni', '547', 'G'); + insert into section values('493', '1', 'Spring', 2010, 'Lamberton', '134', 'H'); + insert into section values('795', '1', 'Spring', 2004, 'Lamberton', '143', 'D'); + insert into section values('793', '1', 'Spring', 2002, 'Nassau', '45', 'F'); + insert into section values('237', '2', 'Fall', 2009, 'Fairchild', '145', 'J'); + insert into section values('362', '1', 'Fall', 2005, 'Lamberton', '143', 'I'); + insert into section values('642', '1', 'Fall', 2004, 'Saucon', '113', 'D'); + insert into section values('808', '1', 'Fall', 2003, 'Polya', '808', 'M'); + insert into section values('679', '1', 'Spring', 2010, 'Saucon', '844', 'D'); + insert into section values('629', '1', 'Spring', 2003, 'Stabler', '105', 'F'); + insert into section values('400', '1', 'Spring', 2007, 'Lambeau', '348', 'M'); + insert into section values('599', '1', 'Spring', 2003, 'Chandler', '804', 'D'); + insert into section values('760', '1', 'Spring', 2004, 'Garfield', '119', 'A'); + insert into section values('843', '1', 'Fall', 2010, 'Fairchild', '145', 'J'); + insert into section values('200', '1', 'Spring', 2007, 'Saucon', '180', 'D'); + insert into section values('443', '2', 'Spring', 2002, 'Gates', '707', 'K'); + insert into section values('612', '1', 'Fall', 2007, 'Lamberton', '143', 'G'); + insert into section values('169', '1', 'Spring', 2007, 'Gates', '314', 'A'); + insert into section values('791', '1', 'Spring', 2006, 'Polya', '808', 'H'); + insert into section values('867', '2', 'Fall', 2010, 'Lamberton', '134', 'M'); + insert into section values('489', '1', 'Fall', 2007, 'Lamberton', '143', 'D'); + insert into section values('158', '2', 'Spring', 2008, 'Taylor', '812', 'D'); + insert into section values('242', '1', 'Fall', 2009, 'Fairchild', '145', 'C'); + insert into section values('960', '1', 'Fall', 2009, 'Lamberton', '134', 'J'); + insert into section values('421', '1', 'Fall', 2004, 'Gates', '707', 'E'); + insert into section values('105', '1', 'Fall', 2009, 'Chandler', '375', 'C'); + insert into section values('591', '1', 'Spring', 2005, 'Saucon', '180', 'F'); + insert into section values('192', '1', 'Fall', 2002, 'Polya', '808', 'B'); + insert into section values('362', '2', 'Fall', 2006, 'Alumni', '547', 'A'); + insert into section values('270', '1', 'Spring', 2010, 'Power', '717', 'M'); + insert into section values('461', '1', 'Fall', 2002, 'Main', '425', 'P'); + insert into section values('704', '1', 'Spring', 2008, 'Taylor', '812', 'E'); + insert into section values('626', '1', 'Fall', 2006, 'Lamberton', '143', 'B'); + insert into section values('105', '2', 'Fall', 2002, 'Taylor', '183', 'C'); + insert into section values('696', '1', 'Spring', 2002, 'Saucon', '180', 'E'); + insert into section values('962', '1', 'Spring', 2008, 'Nassau', '45', 'L'); + insert into section values('362', '3', 'Spring', 2008, 'Bronfman', '700', 'L'); + insert into section values('852', '1', 'Spring', 2008, 'Gates', '707', 'F'); + insert into section values('949', '1', 'Fall', 2007, 'Saucon', '180', 'B'); + insert into section values('482', '1', 'Fall', 2005, 'Whitman', '434', 'H'); + insert into section values('527', '1', 'Fall', 2004, 'Saucon', '113', 'M'); + insert into section values('476', '1', 'Fall', 2010, 'Drown', '757', 'C'); + insert into section values('991', '1', 'Spring', 2008, 'Lamberton', '134', 'J'); + insert into section values('408', '1', 'Spring', 2007, 'Taylor', '812', 'C'); + insert into section values('319', '1', 'Spring', 2003, 'Rathbone', '261', 'E'); + insert into section values('400', '2', 'Fall', 2003, 'Main', '425', 'O'); + insert into section values('401', '1', 'Fall', 2003, 'Saucon', '180', 'A'); + insert into section values('960', '2', 'Fall', 2006, 'Power', '717', 'M'); + insert into section values('571', '1', 'Spring', 2004, 'Power', '972', 'I'); + insert into section values('468', '2', 'Fall', 2007, 'Power', '717', 'L'); + insert into section values('735', '2', 'Spring', 2010, 'Taylor', '183', 'D'); + insert into section values('169', '2', 'Fall', 2002, 'Drown', '757', 'L'); + insert into section values('496', '1', 'Fall', 2001, 'Taylor', '812', 'I'); + insert into section values('200', '2', 'Fall', 2002, 'Chandler', '375', 'D'); + insert into section values('875', '1', 'Spring', 2005, 'Power', '717', 'P'); + insert into section values('603', '1', 'Fall', 2003, 'Taylor', '812', 'P'); + insert into section values('408', '2', 'Spring', 2003, 'Taylor', '183', 'J'); + insert into section values('338', '2', 'Spring', 2006, 'Stabler', '105', 'J'); + insert into section values('864', '1', 'Spring', 2006, 'Power', '972', 'D'); + insert into teaches values('34175', '747', '1', 'Spring', 2004); + insert into teaches values('3199', '169', '1', 'Spring', 2007); + insert into teaches values('6569', '445', '1', 'Spring', 2001); + insert into teaches values('28097', '808', '1', 'Fall', 2003); + insert into teaches values('22591', '962', '1', 'Spring', 2008); + insert into teaches values('90376', '158', '1', 'Fall', 2008); + insert into teaches values('3199', '561', '1', 'Fall', 2006); + insert into teaches values('34175', '274', '1', 'Fall', 2002); + insert into teaches values('34175', '571', '1', 'Spring', 2004); + insert into teaches values('79081', '345', '1', 'Spring', 2008); + insert into teaches values('80759', '559', '1', 'Fall', 2002); + insert into teaches values('22591', '991', '1', 'Spring', 2008); + insert into teaches values('22591', '400', '2', 'Fall', 2003); + insert into teaches values('74420', '376', '1', 'Fall', 2006); + insert into teaches values('73623', '694', '1', 'Fall', 2002); + insert into teaches values('6569', '137', '1', 'Spring', 2002); + insert into teaches values('95709', '270', '1', 'Spring', 2010); + insert into teaches values('36897', '795', '1', 'Spring', 2004); + insert into teaches values('74420', '443', '2', 'Spring', 2002); + insert into teaches values('77346', '486', '1', 'Fall', 2009); + insert into teaches values('79081', '408', '1', 'Spring', 2007); + insert into teaches values('6569', '362', '3', 'Spring', 2008); + insert into teaches values('6569', '527', '1', 'Fall', 2004); + insert into teaches values('41930', '401', '1', 'Fall', 2003); + insert into teaches values('79081', '408', '2', 'Spring', 2003); + insert into teaches values('77346', '493', '1', 'Spring', 2010); + insert into teaches values('4233', '679', '1', 'Spring', 2010); + insert into teaches values('99052', '237', '2', 'Fall', 2009); + insert into teaches values('95709', '258', '1', 'Fall', 2007); + insert into teaches values('63287', '334', '1', 'Fall', 2009); + insert into teaches values('28097', '366', '1', 'Fall', 2005); + insert into teaches values('19368', '581', '1', 'Spring', 2005); + insert into teaches values('42782', '793', '1', 'Spring', 2002); + insert into teaches values('74420', '959', '1', 'Fall', 2006); + insert into teaches values('41930', '421', '1', 'Fall', 2004); + insert into teaches values('6569', '426', '1', 'Spring', 2006); + insert into teaches values('6569', '362', '2', 'Fall', 2006); + insert into teaches values('77346', '864', '1', 'Spring', 2006); + insert into teaches values('3335', '960', '1', 'Fall', 2009); + insert into teaches values('43779', '105', '1', 'Fall', 2009); + insert into teaches values('48507', '626', '1', 'Fall', 2006); + insert into teaches values('99052', '893', '1', 'Fall', 2007); + insert into teaches values('22591', '663', '1', 'Spring', 2005); + insert into teaches values('25946', '192', '1', 'Fall', 2002); + insert into teaches values('6569', '349', '1', 'Spring', 2008); + insert into teaches values('99052', '237', '1', 'Spring', 2008); + insert into teaches values('22591', '972', '1', 'Spring', 2009); + insert into teaches values('77346', '704', '1', 'Spring', 2008); + insert into teaches values('36897', '242', '1', 'Fall', 2009); + insert into teaches values('99052', '158', '2', 'Spring', 2008); + insert into teaches values('19368', '545', '1', 'Fall', 2001); + insert into teaches values('36897', '791', '1', 'Spring', 2006); + insert into teaches values('22591', '642', '1', 'Fall', 2004); + insert into teaches values('95709', '468', '1', 'Fall', 2005); + insert into teaches values('3335', '949', '1', 'Fall', 2007); + insert into teaches values('99052', '748', '1', 'Fall', 2003); + insert into teaches values('43779', '489', '1', 'Fall', 2007); + insert into teaches values('28400', '603', '1', 'Fall', 2003); + insert into teaches values('81991', '415', '1', 'Fall', 2010); + insert into teaches values('48570', '867', '2', 'Fall', 2010); + insert into teaches values('3199', '631', '1', 'Spring', 2007); + insert into teaches values('74420', '443', '1', 'Spring', 2010); + insert into teaches values('81991', '702', '1', 'Spring', 2001); + insert into teaches values('14365', '843', '1', 'Fall', 2010); + insert into teaches values('74420', '612', '1', 'Fall', 2007); + insert into teaches values('99052', '629', '1', 'Spring', 2003); + insert into teaches values('43779', '105', '2', 'Fall', 2002); + insert into teaches values('79081', '200', '2', 'Fall', 2002); + insert into teaches values('99052', '496', '1', 'Fall', 2001); + insert into teaches values('50330', '468', '2', 'Fall', 2007); + insert into teaches values('36897', '696', '1', 'Spring', 2002); + insert into teaches values('77346', '735', '1', 'Spring', 2003); + insert into teaches values('14365', '200', '1', 'Spring', 2007); + insert into teaches values('90643', '461', '1', 'Fall', 2002); + insert into teaches values('77346', '735', '2', 'Spring', 2010); + insert into teaches values('6569', '362', '1', 'Fall', 2005); + insert into teaches values('43779', '476', '1', 'Fall', 2010); + insert into teaches values('74420', '239', '1', 'Fall', 2006); + insert into teaches values('6569', '304', '1', 'Fall', 2009); + insert into teaches values('22591', '599', '1', 'Spring', 2003); + insert into teaches values('63287', '852', '1', 'Spring', 2008); + insert into teaches values('79081', '760', '1', 'Spring', 2004); + insert into teaches values('19368', '591', '1', 'Spring', 2005); + insert into teaches values('3199', '169', '2', 'Fall', 2002); + insert into teaches values('36897', '313', '1', 'Fall', 2010); + insert into teaches values('41930', '692', '1', 'Spring', 2010); + insert into teaches values('22591', '867', '1', 'Fall', 2006); + insert into teaches values('22591', '482', '1', 'Fall', 2005); + insert into teaches values('15347', '457', '1', 'Spring', 2001); + insert into teaches values('99052', '802', '1', 'Spring', 2003); + insert into teaches values('22591', '338', '1', 'Spring', 2007); + insert into teaches values('22591', '352', '1', 'Spring', 2006); + insert into teaches values('22591', '338', '2', 'Spring', 2006); + insert into teaches values('95709', '960', '2', 'Fall', 2006); + insert into teaches values('65931', '875', '1', 'Spring', 2005); + insert into teaches values('22591', '400', '1', 'Spring', 2007); + insert into teaches values('99052', '927', '1', 'Fall', 2002); + insert into teaches values('79081', '974', '1', 'Fall', 2003); + insert into teaches values('28400', '604', '1', 'Spring', 2009); + insert into teaches values('6569', '319', '1', 'Spring', 2003); + insert into student values('24746', 'Schrefl', 'History', 4); + insert into student values('79352', 'Rumat', 'Finance', 100); + insert into student values('76672', 'Miliko', 'Statistics', 116); + insert into student values('14182', 'Moszkowski', 'Civil Eng.', 73); + insert into student values('44985', 'Prieto', 'Biology', 91); + insert into student values('96052', 'Marcol', 'Cybernetics', 15); + insert into student values('35175', 'Quimby', 'History', 4); + insert into student values('44271', 'Sowerby', 'English', 108); + insert into student values('40897', 'Coppens', 'Math', 58); + insert into student values('92839', 'Cirsto', 'Math', 115); + insert into student values('79329', 'Velikovs', 'Marketing', 110); + insert into student values('97101', 'Marek', 'Psychology', 53); + insert into student values('24865', 'Tran-', 'Marketing', 116); + insert into student values('36052', 'Guerra', 'Elec. Eng.', 59); + insert into student values('98940', 'Hawthorne', 'Marketing', 78); + insert into student values('21395', 'Leuen', 'Math', 43); + insert into student values('55859', 'Eguchi', 'Astronomy', 14); + insert into student values('74016', 'Moei', 'Elec. Eng.', 15); + insert into student values('93061', 'Alfaro', 'Elec. Eng.', 69); + insert into student values('94998', 'Krishnakumar', 'Physics', 81); + insert into student values('30772', 'Inoue', 'Math', 18); + insert into student values('1968', 'Sahm', 'Finance', 4); + insert into student values('90567', 'Tomason', 'Pol. Sci.', 118); + insert into student values('49611', 'Karande', 'Astronomy', 57); + insert into student values('81538', 'Wunderli', 'Languages', 117); + insert into student values('68999', 'Greve', 'Psychology', 113); + insert into student values('74639', 'Cerime', 'Accounting', 35); + insert into student values('66054', 'Crick', 'Comp. Sci.', 86); + insert into student values('792', 'Hashimoto', 'Athletics', 102); + insert into student values('60267', 'Dage', 'Physics', 7); + insert into student values('17769', 'Pearlman', 'Biology', 45); + insert into student values('39580', 'Macias', 'Psychology', 128); + insert into student values('89106', 'Dawson', 'Mech. Eng.', 88); + insert into student values('37856', 'Gay', 'Statistics', 92); + insert into student values('58307', 'Tiamp', 'Pol. Sci.', 63); + insert into student values('57985', 'Weller', 'Geology', 45); + insert into student values('72014', 'Kee', 'Languages', 57); + insert into student values('2795', 'Milner', 'Finance', 8); + insert into student values('89000', 'Guthk', 'Finance', 80); + insert into student values('46442', 'Kagd', 'Cybernetics', 61); + insert into student values('60040', 'Samel', 'Math', 100); + insert into student values('19791', 'Vanrell', 'Comp. Sci.', 61); + insert into student values('4582', 'Zaniolo', 'Math', 0); + insert into student values('108', 'Dhav', 'Biology', 80); + insert into student values('1533', 'She', 'Statistics', 29); + insert into student values('7123', 'Holn', 'Math', 27); + insert into student values('44584', 'Agar', 'Geology', 58); + insert into student values('32954', 'Curutchet', 'Languages', 121); + insert into student values('98056', 'Di', 'Civil Eng.', 81); + insert into student values('76953', 'Lemoine', 'Athletics', 60); + insert into student values('81884', 'Kereth', 'Accounting', 96); + insert into student values('22057', 'Cal', 'Cybernetics', 20); + insert into student values('21126', 'McCarter', 'Cybernetics', 38); + insert into student values('82918', 'Yemini', 'Statistics', 43); + insert into student values('4173', 'Erol', 'Statistics', 21); + insert into student values('83022', 'Chyr', 'Math', 10); + insert into student values('25525', 'Moreira', 'Comp. Sci.', 107); + insert into student values('75040', 'Kruglyak', 'Pol. Sci.', 99); + insert into student values('31624', 'Keuk', 'Geology', 107); + insert into student values('64893', 'Katzenb', 'Statistics', 78); + insert into student values('59920', 'Dano', 'Civil Eng.', 16); + insert into student values('38602', 'Torres', 'Cybernetics', 108); + insert into student values('21401', 'Garze', 'Physics', 92); + insert into student values('93004', 'Gibbs', 'Finance', 129); + insert into student values('38899', 'Murphy', 'Marketing', 30); + insert into student values('75241', 'Hughes', 'Languages', 79); + insert into student values('98830', 'Frolova', 'Comp. Sci.', 13); + insert into student values('37101', 'Falconer', 'Physics', 78); + insert into student values('4508', 'Cochran', 'English', 127); + insert into student values('32130', 'Bannac', 'Biology', 56); + insert into student values('56755', 'Paul', 'Mech. Eng.', 62); + insert into student values('11510', 'Rakoj', 'Mech. Eng.', 37); + insert into student values('3335', 'Otterm', 'Finance', 73); + insert into student values('61081', 'Bai', 'Geology', 100); + insert into student values('33651', 'Seike', 'Geology', 2); + insert into student values('8251', 'Kite', 'History', 47); + insert into student values('10705', 'Terauchi', 'Physics', 48); + insert into student values('64082', 'Boyle', 'Languages', 87); + insert into student values('59517', 'Harrison', 'Elec. Eng.', 81); + insert into student values('91569', 'Pavlovico', 'Marketing', 90); + insert into student values('88085', 'Bouamama', 'Comp. Sci.', 8); + insert into student values('96722', 'Liley', 'English', 34); + insert into student values('36379', 'Triebel', 'Comp. Sci.', 115); + insert into student values('69581', 'Prabhakaran', 'Statistics', 26); + insert into student values('65329', 'Benson', 'Mech. Eng.', 63); + insert into student values('49214', 'Vogel', 'Psychology', 46); + insert into student values('64155', 'Midu', 'Languages', 33); + insert into student values('58594', 'Ivanov', 'Finance', 11); + insert into student values('71904', 'Boldin', 'Mech. Eng.', 89); + insert into student values('69241', 'Kannan', 'Athletics', 99); + insert into student values('58889', 'Collet', 'Geology', 76); + insert into student values('30341', 'Anse', 'History', 58); + insert into student values('70688', 'Ishihara', 'Elec. Eng.', 86); + insert into student values('81258', 'Nirenbu', 'History', 102); + insert into student values('63090', 'Hoov', 'Math', 118); + insert into student values('70572', 'Andrews', 'Psychology', 7); + insert into student values('58413', 'Xiong', 'Athletics', 27); + insert into student values('93171', 'Carey', 'Marketing', 56); + insert into student values('35138', 'Corbac', 'Mech. Eng.', 86); + insert into student values('77289', 'Kok', 'Geology', 57); + insert into student values('93571', 'Kato', 'Psychology', 0); + insert into student values('14554', 'Ramadan', 'Psychology', 96); + insert into student values('46725', 'Richi', 'Statistics', 18); + insert into student values('99730', 'Courtney', 'English', 99); + insert into student values('10527', 'Kieras', 'Physics', 128); + insert into student values('898', 'Heilprin', 'Accounting', 88); + insert into student values('64297', 'Desp', 'Athletics', 95); + insert into student values('10204', 'Mediratta', 'Geology', 112); + insert into student values('36926', 'Kamae', 'Civil Eng.', 87); + insert into student values('49618', 'Stone', 'Languages', 60); + insert into student values('34329', 'Malcher', 'English', 32); + insert into student values('84410', 'Bae', 'Psychology', 71); + insert into student values('29435', 'Siddiqi', 'Psychology', 86); + insert into student values('62636', 'Soni', 'Geology', 4); + insert into student values('8483', 'Luk', 'Elec. Eng.', 53); + insert into student values('2177', 'Cheah', 'Astronomy', 15); + insert into student values('43348', 'Venturini', 'Mech. Eng.', 94); + insert into student values('37430', 'Norman', 'Languages', 35); + insert into student values('37586', 'Valtchev', 'Biology', 19); + insert into student values('55238', 'Thadani', 'Physics', 75); + insert into student values('34404', 'Fries', 'History', 48); + insert into student values('59539', 'Madden', 'Civil Eng.', 4); + insert into student values('43123', 'Shim', 'Geology', 69); + insert into student values('19582', 'Canas', 'Finance', 7); + insert into student values('88553', 'Levine', 'Pol. Sci.', 51); + insert into student values('5898', 'Dahl', 'Languages', 28); + insert into student values('2419', 'Hirakuri', 'Mech. Eng.', 49); + insert into student values('31516', 'Hassine', 'Elec. Eng.', 49); + insert into student values('3487', 'Deshpande', 'Languages', 6); + insert into student values('66269', 'Hsueh', 'Accounting', 43); + insert into student values('54622', 'Yu', 'Statistics', 107); + insert into student values('19638', 'Dawson', 'Cybernetics', 107); + insert into student values('88418', 'Slaw', 'Elec. Eng.', 112); + insert into student values('86802', 'Hameed', 'Mech. Eng.', 47); + insert into student values('63361', 'Djurd', 'Languages', 36); + insert into student values('6367', 'Doisy', 'Pol. Sci.', 66); + insert into student values('84239', 'Jordan', 'Languages', 20); + insert into student values('4940', 'Rhyne', 'Mech. Eng.', 102); + insert into student values('90663', 'Sram', 'Comp. Sci.', 119); + insert into student values('38476', 'Rzecz', 'Pol. Sci.', 129); + insert into student values('96003', 'Nakajima', 'Astronomy', 95); + insert into student values('64914', 'Lembr', 'Finance', 17); + insert into student values('41599', 'Meneses', 'Geology', 40); + insert into student values('22226', 'Kinney', 'Biology', 116); + insert into student values('96153', 'Sawah', 'Pol. Sci.', 67); + insert into student values('44998', 'Borrus', 'Civil Eng.', 79); + insert into student values('74163', 'Chettao', 'Marketing', 115); + insert into student values('75046', 'Hamagi', 'Marketing', 101); + insert into student values('97679', 'Sacchi', 'Psychology', 102); + insert into student values('94894', 'Kozlov', 'Accounting', 27); + insert into student values('44881', 'Harshman', 'Cybernetics', 59); + insert into student values('98619', 'Nagaraj', 'Civil Eng.', 61); + insert into student values('86753', 'Leister', 'History', 81); + insert into student values('87054', 'Dietzsch', 'Statistics', 91); + insert into student values('39046', 'Narasimhamu', 'Math', 121); + insert into student values('29031', 'Berthold', 'English', 85); + insert into student values('97355', 'Ratcliff', 'Languages', 60); + insert into student values('24010', 'Brookh', 'Comp. Sci.', 65); + insert into student values('21789', 'Bates', 'History', 118); + insert into student values('52157', 'Nagle', 'Astronomy', 52); + insert into student values('64938', 'Kaep', 'Civil Eng.', 126); + insert into student values('94535', 'Nishida', 'History', 127); + insert into student values('58595', 'Cronin', 'Physics', 100); + insert into student values('72979', 'Guix', 'Astronomy', 117); + insert into student values('32506', 'Suzuki', 'Astronomy', 86); + insert into student values('31690', 'Bondi', 'Comp. Sci.', 110); + insert into student values('87044', 'McDonald', 'Accounting', 87); + insert into student values('34236', 'Maalej', 'Math', 80); + insert into student values('18808', 'Snif', 'Mech. Eng.', 116); + insert into student values('91063', 'Dair', 'Civil Eng.', 105); + insert into student values('48462', 'Wolf', 'Civil Eng.', 19); + insert into student values('41965', 'Boden', 'Cybernetics', 87); + insert into student values('31137', 'Porter', 'Statistics', 36); + insert into student values('7602', 'Ingram', 'Geology', 71); + insert into student values('84845', 'Zuo', 'Comp. Sci.', 81); + insert into student values('28252', 'Pfister', 'Finance', 6); + insert into student values('10736', 'Veselovsky', 'Elec. Eng.', 62); + insert into student values('58465', 'Romeo', 'Elec. Eng.', 76); + insert into student values('64140', 'Tiroz', 'Athletics', 118); + insert into student values('6523', 'Karlsson', 'Civil Eng.', 1); + insert into student values('64067', 'Mennif', 'Languages', 8); + insert into student values('99399', 'Duan', 'Astronomy', 96); + insert into student values('21337', 'Goualh', 'Marketing', 46); + insert into student values('15457', 'Arinb', 'Physics', 123); + insert into student values('26102', 'Tanaka', 'Statistics', 118); + insert into student values('31337', 'Graziano', 'Elec. Eng.', 29); + insert into student values('67425', 'Cooper', 'Athletics', 51); + insert into student values('48640', 'Brown', 'History', 33); + insert into student values('72741', 'Weiss', 'Astronomy', 22); + insert into student values('29803', 'Beavis', 'Accounting', 76); + insert into student values('38895', 'Beuthel', 'Biology', 70); + insert into student values('49391', 'Rammer', 'Marketing', 15); + insert into student values('13741', 'Grieng', 'Psychology', 122); + insert into student values('59538', 'Kothari', 'Accounting', 125); + insert into student values('9360', 'Mukai', 'Marketing', 36); + insert into student values('53728', 'Eck', 'Statistics', 61); + insert into student values('77898', 'Yap', 'Marketing', 10); + insert into student values('32419', 'Sahani', 'Civil Eng.', 48); + insert into student values('37521', 'Mes', 'Biology', 9); + insert into student values('97065', 'Gandhi', 'Languages', 22); + insert into student values('80057', 'Szczerban', 'Biology', 101); + insert into student values('1826', 'Dhav', 'Astronomy', 8); + insert into student values('80285', 'Karv', 'Cybernetics', 93); + insert into student values('72959', 'Audeh', 'Elec. Eng.', 43); + insert into student values('41751', 'Kaufman', 'Pol. Sci.', 13); + insert into student values('11604', 'Neff', 'Pol. Sci.', 39); + insert into student values('41827', 'Chriso', 'Languages', 89); + insert into student values('8853', 'Warner', 'Mech. Eng.', 69); + insert into student values('9440', 'Gierl', 'Psychology', 9); + insert into student values('1884', 'Masini', 'Marketing', 89); + insert into student values('41774', 'Tassel', 'Languages', 7); + insert into student values('32385', 'Park', 'Civil Eng.', 120); + insert into student values('336', 'Constantinescu', 'Finance', 61); + insert into student values('82688', 'Rote', 'Cybernetics', 33); + insert into student values('66090', 'Brochhause', 'Pol. Sci.', 53); + insert into student values('4182', 'Powals', 'Languages', 102); + insert into student values('20099', 'Lewis', 'Mech. Eng.', 46); + insert into student values('81028', 'Perna', 'Pol. Sci.', 105); + insert into student values('27556', 'Leitner', 'Astronomy', 82); + insert into student values('65258', 'Tian', 'Comp. Sci.', 3); + insert into student values('29239', 'Simmel', 'Astronomy', 107); + insert into student values('54508', 'Gregga', 'Physics', 41); + insert into student values('37449', 'Ssu', 'Pol. Sci.', 64); + insert into student values('16753', 'Kuwadak', 'Comp. Sci.', 67); + insert into student values('82697', 'Ye', 'Civil Eng.', 71); + insert into student values('11422', 'Saito', 'Physics', 34); + insert into student values('59046', 'Reichl', 'Elec. Eng.', 56); + insert into student values('89246', 'Loyka', 'History', 46); + insert into student values('95859', 'Huft', 'Physics', 33); + insert into student values('94173', 'Winkler', 'Biology', 16); + insert into student values('70021', 'Aydin', 'Cybernetics', 16); + insert into student values('92040', 'Alexandri', 'Athletics', 66); + insert into student values('36019', 'Quaranta', 'Astronomy', 128); + insert into student values('40558', 'Pacie', 'Finance', 101); + insert into student values('62549', 'Komatsu', 'Comp. Sci.', 74); + insert into student values('92385', 'Godfrey', 'English', 34); + insert into student values('14214', 'Yoneda', 'Cybernetics', 129); + insert into student values('32245', 'Saariluoma', 'Statistics', 12); + insert into student values('13506', 'Patrick', 'Physics', 85); + insert into student values('26080', 'Simmel', 'Biology', 80); + insert into student values('52872', 'Chaney', 'Elec. Eng.', 57); + insert into student values('28952', 'Kennedy', 'Accounting', 30); + insert into student values('1080', 'Xue', 'Languages', 94); + insert into student values('11095', 'Schultz', 'Languages', 51); + insert into student values('33460', 'Leonard', 'Psychology', 48); + insert into student values('99226', 'Hao', 'Civil Eng.', 50); + insert into student values('52707', 'Arena', 'History', 73); + insert into student values('40189', 'Holt', 'Comp. Sci.', 104); + insert into student values('35721', 'Suppan', 'Math', 85); + insert into student values('6400', 'Kelly', 'Astronomy', 110); + insert into student values('60688', 'Zander', 'Accounting', 69); + insert into student values('18821', 'Linden', 'Astronomy', 98); + insert into student values('65443', 'Yagit', 'Finance', 78); + insert into student values('71630', 'Heath', 'Psychology', 116); + insert into student values('46956', 'Nallape', 'Astronomy', 6); + insert into student values('64259', 'Busch', 'Marketing', 123); + insert into student values('77021', 'Bollen', 'Psychology', 120); + insert into student values('41450', 'McLeod', 'Marketing', 78); + insert into student values('13028', 'Okano', 'Geology', 89); + insert into student values('90381', 'Chaudhuri', 'Math', 108); + insert into student values('9460', 'Wrzesz', 'Accounting', 99); + insert into student values('98423', 'Alfaro', 'Physics', 101); + insert into student values('38691', 'Theodores', 'Accounting', 37); + insert into student values('86806', 'Unger', 'Marketing', 101); + insert into student values('18469', 'Coppens', 'Marketing', 26); + insert into student values('11194', 'El-Helw', 'Pol. Sci.', 71); + insert into student values('19862', 'Prasad', 'Pol. Sci.', 22); + insert into student values('24116', 'Fauth', 'Elec. Eng.', 10); + insert into student values('67021', 'Chenu', 'Accounting', 73); + insert into student values('69752', 'Tan', 'English', 24); + insert into student values('69225', 'Mejia', 'History', 22); + insert into student values('1018', 'Colin', 'Civil Eng.', 81); + insert into student values('7656', 'Maher', 'Pol. Sci.', 24); + insert into student values('35220', 'Shilv', 'History', 58); + insert into student values('79210', 'Sanchez', 'Astronomy', 14); + insert into student values('10814', 'Waks', 'Elec. Eng.', 56); + insert into student values('55698', 'Choung', 'Finance', 67); + insert into student values('49684', 'Ceze', 'Civil Eng.', 50); + insert into student values('59908', 'Cox', 'Civil Eng.', 0); + insert into student values('64724', 'Deupree', 'Cybernetics', 36); + insert into student values('19048', 'Leuen', 'Statistics', 122); + insert into student values('62716', 'Bocchi', 'Math', 33); + insert into student values('95205', 'Hammond', 'Athletics', 115); + insert into student values('40303', 'Rudolf', 'Marketing', 25); + insert into student values('27430', 'Gonzalez', 'Cybernetics', 75); + insert into student values('83953', 'Jordan', 'Math', 26); + insert into student values('4248', 'Wright', 'Finance', 63); + insert into student values('21766', 'Cox', 'Astronomy', 74); + insert into student values('39657', 'Ryder', 'Astronomy', 80); + insert into student values('85366', 'Erol', 'Finance', 112); + insert into student values('93354', 'Varghese', 'English', 88); + insert into student values('77580', 'Frazin', 'Civil Eng.', 46); + insert into student values('92864', 'Rogers', 'Accounting', 54); + insert into student values('57135', 'Margetts', 'Marketing', 66); + insert into student values('1727', 'Ratcliff', 'Mech. Eng.', 49); + insert into student values('91788', 'Streitf', 'Cybernetics', 56); + insert into student values('80420', 'Bansal', 'Statistics', 69); + insert into student values('67810', 'Forestiero', 'English', 114); + insert into student values('86404', 'Cordt', 'Marketing', 1); + insert into student values('16907', 'Keiss', 'Accounting', 59); + insert into student values('46928', 'Barry', 'Athletics', 108); + insert into student values('84702', 'Lucas', 'Math', 105); + insert into student values('91343', 'Clarkson', 'Statistics', 42); + insert into student values('83686', 'Krasser', 'Statistics', 95); + insert into student values('83462', 'Mehra', 'Accounting', 55); + insert into student values('67725', 'Yamamoto', 'Pol. Sci.', 35); + insert into student values('5393', 'Clemens', 'Mech. Eng.', 4); + insert into student values('34422', 'Nakajima', 'Mech. Eng.', 86); + insert into student values('17128', 'Chuon', 'Civil Eng.', 81); + insert into student values('81883', 'Perei', 'Marketing', 124); + insert into student values('87965', 'Reiss', 'Accounting', 17); + insert into student values('93653', 'Mellor', 'Astronomy', 127); + insert into student values('70522', 'Holn', 'Comp. Sci.', 29); + insert into student values('48850', 'Wehen', 'Biology', 14); + insert into student values('68070', 'Cameron', 'Pol. Sci.', 85); + insert into student values('50206', 'Cesaret', 'Mech. Eng.', 102); + insert into student values('80254', 'Mittelm', 'Languages', 122); + insert into student values('22396', 'Wodn', 'Biology', 100); + insert into student values('19293', 'Singhal', 'Geology', 118); + insert into student values('67660', 'Newitt', 'Biology', 64); + insert into student values('85910', 'Levitan', 'Finance', 73); + insert into student values('10917', 'Morales', 'Cybernetics', 54); + insert into student values('95574', 'Pampal', 'Comp. Sci.', 111); + insert into student values('13081', 'Alqui', 'Languages', 112); + insert into student values('33349', 'Peck', 'Biology', 125); + insert into student values('19861', 'Fontana', 'Civil Eng.', 81); + insert into student values('30723', 'Mali', 'Physics', 115); + insert into student values('83039', 'Harmon', 'Psychology', 124); + insert into student values('41741', 'Kato', 'Languages', 94); + insert into student values('97400', 'Noda', 'Accounting', 62); + insert into student values('81207', 'Masri', 'Athletics', 123); + insert into student values('23994', 'Kalisz', 'Elec. Eng.', 75); + insert into student values('54672', 'Thie', 'Pol. Sci.', 44); + insert into student values('47001', 'Correia', 'Comp. Sci.', 63); + insert into student values('26147', 'Richter', 'Comp. Sci.', 115); + insert into student values('65987', 'Morrison', 'Athletics', 98); + insert into student values('99250', 'Khaw', 'English', 14); + insert into student values('13826', 'Sommerfeldt', 'Pol. Sci.', 80); + insert into student values('3739', 'Davy', 'History', 75); + insert into student values('10454', 'Ugarte', 'Pol. Sci.', 120); + insert into student values('48053', 'Macias', 'Comp. Sci.', 0); + insert into student values('66813', 'Spengler', 'Languages', 55); + insert into student values('16593', 'Skuras', 'Psychology', 5); + insert into student values('14668', 'Malinen', 'Athletics', 20); + insert into student values('33338', 'Stead', 'Psychology', 65); + insert into student values('45300', 'Kambayashi', 'Geology', 67); + insert into student values('3127', 'Resa', 'Psychology', 73); + insert into student values('40992', 'Xing', 'Psychology', 93); + insert into student values('70310', 'Ding', 'Biology', 107); + insert into student values('46451', 'Chilu', 'Pol. Sci.', 123); + insert into student values('288', 'Canellas', 'Astronomy', 95); + insert into student values('557', 'Bhat', 'Math', 44); + insert into student values('22170', 'Sugavanam', 'Physics', 41); + insert into student values('64164', 'Zander', 'Languages', 111); + insert into student values('74911', 'Wall', 'Languages', 111); + insert into student values('7020', 'Thoreson', 'Comp. Sci.', 61); + insert into student values('78552', 'Douss', 'History', 90); + insert into student values('50386', 'Bersk', 'Elec. Eng.', 125); + insert into student values('48678', 'Tuomisto', 'Athletics', 121); + insert into student values('24442', 'Greene', 'Physics', 11); + insert into student values('89188', 'Anse', 'Statistics', 77); + insert into student values('390', 'Alkio', 'Elec. Eng.', 65); + insert into student values('10663', 'Okaf', 'Geology', 59); + insert into student values('97551', 'Labaye', 'Civil Eng.', 128); + insert into student values('76895', 'Olro', 'Accounting', 63); + insert into student values('85451', 'Chapman', 'Languages', 70); + insert into student values('43989', 'Makarychev', 'Accounting', 72); + insert into student values('99719', 'Bennett', 'Accounting', 70); + insert into student values('19245', 'Cai', 'Comp. Sci.', 4); + insert into student values('36685', 'Fathi', 'Accounting', 8); + insert into student values('57123', 'Katsik', 'Cybernetics', 46); + insert into student values('51997', 'Nadg', 'Languages', 49); + insert into student values('95631', 'Mauras', 'Elec. Eng.', 42); + insert into student values('70452', 'Al-Hu', 'Astronomy', 18); + insert into student values('37219', 'Poize', 'Comp. Sci.', 45); + insert into student values('59530', 'Poulin', 'History', 64); + insert into student values('61737', 'Kissel', 'Finance', 86); + insert into student values('33645', 'Kawakami', 'Comp. Sci.', 129); + insert into student values('3143', 'Haddad', 'Geology', 55); + insert into student values('78792', 'Ram', 'Mech. Eng.', 102); + insert into student values('10076', 'Duan', 'Civil Eng.', 105); + insert into student values('59553', 'Schoenfl', 'Mech. Eng.', 110); + insert into student values('57666', 'Fries', 'History', 96); + insert into student values('22004', 'OBrien', 'Geology', 106); + insert into student values('38668', 'Spector', 'Elec. Eng.', 97); + insert into student values('43130', 'Yong', 'Comp. Sci.', 123); + insert into student values('36263', 'Souza', 'Civil Eng.', 58); + insert into student values('99271', 'Soricu', 'Math', 70); + insert into student values('69850', 'Alexandri', 'Finance', 80); + insert into student values('59397', 'Williams', 'Statistics', 126); + insert into student values('61127', 'Tuki', 'Physics', 30); + insert into student values('30299', 'Marsh', 'Geology', 38); + insert into student values('57962', 'Aarde', 'Statistics', 22); + insert into student values('88169', 'Schroeder', 'Cybernetics', 106); + insert into student values('27094', 'Gur', 'Geology', 120); + insert into student values('39115', 'Boulah', 'Civil Eng.', 2); + insert into student values('84189', 'Kuwadak', 'Statistics', 119); + insert into student values('79892', 'Chiari', 'Cybernetics', 76); + insert into student values('95046', 'Mercank', 'Astronomy', 100); + insert into student values('34386', 'Hagedorn', 'History', 98); + insert into student values('82646', 'Nirenbu', 'Biology', 0); + insert into student values('31086', 'Zulueta', 'Psychology', 125); + insert into student values('85226', 'Vicentino', 'Psychology', 18); + insert into student values('32490', 'McCracken', 'Comp. Sci.', 117); + insert into student values('39704', 'Frank', 'Statistics', 31); + insert into student values('80610', 'Nakamura', 'Physics', 79); + insert into student values('18675', 'Araya', 'Statistics', 82); + insert into student values('47630', 'Odell', 'Cybernetics', 77); + insert into student values('36102', 'Szendrei', 'Cybernetics', 109); + insert into student values('22620', 'Lykin', 'Accounting', 18); + insert into student values('39157', 'Loull', 'Accounting', 0); + insert into student values('86327', 'Moscarini', 'Marketing', 31); + insert into student values('84865', 'Fernandez-Gonzalez', 'Finance', 20); + insert into student values('83557', 'Khalil', 'Psychology', 95); + insert into student values('7490', 'Giuffrida', 'Math', 39); + insert into student values('94178', 'Bengtss', 'Psychology', 47); + insert into student values('99660', 'OMalley', 'Civil Eng.', 128); + insert into student values('57511', 'Pulido', 'English', 78); + insert into student values('56941', 'Swain', 'Astronomy', 17); + insert into student values('77415', 'Morales', 'Astronomy', 102); + insert into student values('99754', 'Califieri', 'Cybernetics', 55); + insert into student values('81550', 'Harada', 'Elec. Eng.', 98); + insert into student values('79911', 'Corr', 'Physics', 117); + insert into student values('82082', 'Towsey', 'Statistics', 12); + insert into student values('58846', 'Fengl', 'Pol. Sci.', 66); + insert into student values('11076', 'Prasad', 'Pol. Sci.', 114); + insert into student values('7204', 'Halbert', 'Biology', 83); + insert into student values('73165', 'Fox', 'Statistics', 19); + insert into student values('1737', 'Shinagawa', 'Biology', 118); + insert into student values('12979', 'Hammond', 'Elec. Eng.', 5); + insert into student values('57334', 'Roeder', 'Math', 70); + insert into student values('1827', 'Westbrook', 'Civil Eng.', 61); + insert into student values('29390', 'Aufr', 'Geology', 49); + insert into student values('31302', 'Qian', 'Geology', 110); + insert into student values('77231', 'Roschew', 'History', 38); + insert into student values('36126', 'Fung', 'Astronomy', 47); + insert into student values('45200', 'Kitagawa', 'Elec. Eng.', 125); + insert into student values('99463', 'Jacobi', 'Statistics', 19); + insert into student values('79170', 'Lingamp', 'Cybernetics', 28); + insert into student values('12216', 'Griffiths', 'Cybernetics', 94); + insert into student values('64593', 'Kamez', 'Mech. Eng.', 8); + insert into student values('30177', 'Vajapeyaz', 'Pol. Sci.', 41); + insert into student values('15074', 'Kirtane', 'Physics', 36); + insert into student values('5005', 'Cesaret', 'Civil Eng.', 15); + insert into student values('99348', 'Tobin', 'Finance', 85); + insert into student values('82591', 'Pomy', 'Mech. Eng.', 92); + insert into student values('53089', 'Vedag', 'English', 98); + insert into student values('24630', 'Halbert', 'Geology', 66); + insert into student values('71387', 'Tleu', 'Civil Eng.', 69); + insert into student values('61354', 'Barranco', 'Mech. Eng.', 129); + insert into student values('10481', 'Grosch', 'Astronomy', 39); + insert into student values('39310', 'Ploski', 'Comp. Sci.', 64); + insert into student values('16297', 'Sacchi', 'Marketing', 44); + insert into student values('72622', 'Kashima', 'Cybernetics', 54); + insert into student values('92965', 'Mesne', 'Biology', 26); + insert into student values('89104', 'Mitsuhashi', 'Biology', 54); + insert into student values('13408', 'Bromley', 'Elec. Eng.', 81); + insert into student values('66229', 'Qvi', 'Civil Eng.', 128); + insert into student values('87280', 'Kim', 'Pol. Sci.', 67); + insert into student values('73206', 'Maw', 'Cybernetics', 36); + insert into student values('24387', 'Yap', 'History', 29); + insert into student values('32744', 'Robins', 'Finance', 40); + insert into student values('39204', 'Castle', 'Civil Eng.', 27); + insert into student values('42298', 'Fournier', 'Biology', 61); + insert into student values('53588', 'Schwet', 'Languages', 100); + insert into student values('90004', 'Unay', 'Astronomy', 81); + insert into student values('12563', 'Stone', 'Marketing', 66); + insert into student values('55000', 'Levitan', 'Biology', 103); + insert into student values('1110', 'Tzeng', 'Civil Eng.', 23); + insert into student values('55170', 'Ivanov', 'History', 22); + insert into student values('56080', 'Zamani', 'Geology', 127); + insert into student values('61065', 'Jovicic', 'Civil Eng.', 31); + insert into student values('107', 'Shabuno', 'Math', 19); + insert into student values('11453', 'Yamashita', 'Astronomy', 109); + insert into student values('53805', 'Ludwig', 'Cybernetics', 30); + insert into student values('39241', 'Solar', 'Mech. Eng.', 64); + insert into student values('32886', 'Damas', 'Psychology', 58); + insert into student values('40080', 'Llam', 'Civil Eng.', 6); + insert into student values('22142', 'Gerstend', 'History', 22); + insert into student values('94257', 'Unger', 'Languages', 12); + insert into student values('75513', 'Griffin', 'Statistics', 12); + insert into student values('99268', 'Makarychev', 'Elec. Eng.', 115); + insert into student values('20084', 'Adda', 'Accounting', 13); + insert into student values('51868', 'Guthk', 'Pol. Sci.', 109); + insert into student values('7287', 'Tadjo', 'Cybernetics', 116); + insert into student values('35588', 'John', 'Civil Eng.', 31); + insert into student values('83170', 'Ariav', 'English', 43); + insert into student values('14596', 'Vekk', 'Biology', 105); + insert into student values('23794', 'Sokolov', 'Pol. Sci.', 13); + insert into student values('78332', 'Ohki', 'Pol. Sci.', 76); + insert into student values('49339', 'Snif', 'Civil Eng.', 107); + insert into student values('40677', 'Ponnambalam', 'Civil Eng.', 127); + insert into student values('90220', 'Iacovoni', 'Elec. Eng.', 113); + insert into student values('95029', 'Oliveira', 'Astronomy', 17); + insert into student values('83728', 'Kaminsky', 'Biology', 38); + insert into student values('67033', 'Yun', 'Marketing', 59); + insert into student values('87785', 'Liepelt', 'Pol. Sci.', 122); + insert into student values('4345', 'Resa', 'Languages', 125); + insert into student values('96085', 'Wood', 'Accounting', 70); + insert into student values('64249', 'Kalantari', 'Mech. Eng.', 102); + insert into student values('53803', 'Okaf', 'Civil Eng.', 89); + insert into student values('27956', 'Watzel', 'Psychology', 53); + insert into student values('24796', 'Thimm', 'Pol. Sci.', 18); + insert into student values('4449', 'Gilliam', 'Biology', 99); + insert into student values('77364', 'Lacruz', 'Elec. Eng.', 59); + insert into student values('70384', 'Shevade', 'Cybernetics', 45); + insert into student values('18007', 'Chanon', 'Biology', 90); + insert into student values('51723', 'Lagendijk', 'Comp. Sci.', 99); + insert into student values('56486', 'DeMil', 'Pol. Sci.', 110); + insert into student values('70359', 'Lorinczi', 'Cybernetics', 63); + insert into student values('18234', 'Nirenbu', 'Pol. Sci.', 19); + insert into student values('34322', 'Baba', 'Biology', 74); + insert into student values('24325', 'Álvarez', 'Cybernetics', 50); + insert into student values('83444', 'Vieira', 'Mech. Eng.', 115); + insert into student values('93814', 'Smoro', 'Marketing', 19); + insert into student values('80912', 'Homyk', 'Biology', 16); + insert into student values('70099', 'Zhiyong', 'Languages', 86); + insert into student values('64945', 'Gall', 'Mech. Eng.', 6); + insert into student values('81789', 'Urwin', 'Biology', 25); + insert into student values('38271', 'Kosken', 'Cybernetics', 100); + insert into student values('87784', 'McCracken', 'Astronomy', 64); + insert into student values('46436', 'Richardson', 'History', 52); + insert into student values('20195', 'Finney', 'Mech. Eng.', 7); + insert into student values('31080', 'Aschoff', 'Athletics', 88); + insert into student values('85887', 'Stoltzfus', 'Mech. Eng.', 15); + insert into student values('85234', 'Dubu', 'Finance', 69); + insert into student values('1460', 'Martinsen', 'History', 55); + insert into student values('30650', 'Chaudhuri', 'Languages', 101); + insert into student values('6474', 'Rossettin', 'Civil Eng.', 85); + insert into student values('67051', 'Labroc', 'Statistics', 70); + insert into student values('58300', 'Lum', 'Mech. Eng.', 8); + insert into student values('64192', 'Pradhan', 'Physics', 86); + insert into student values('84727', 'Hennig', 'Languages', 108); + insert into student values('39881', 'Herman', 'Athletics', 85); + insert into student values('3163', 'Riera', 'Biology', 55); + insert into student values('72643', 'Castle', 'Athletics', 49); + insert into student values('66008', 'Szczerban', 'Languages', 25); + insert into student values('76291', 'Dellwo', 'Physics', 30); + insert into student values('92274', 'Caporali', 'Pol. Sci.', 12); + insert into student values('16075', 'Wolter', 'Pol. Sci.', 45); + insert into student values('30334', 'Arakawa', 'Physics', 37); + insert into student values('75123', 'Chowdhury', 'Physics', 92); + insert into student values('35042', 'Nives', 'Comp. Sci.', 38); + insert into student values('99073', 'Bartels', 'Comp. Sci.', 6); + insert into student values('68280', 'Shuming', 'Languages', 123); + insert into student values('80976', 'Mozayani', 'Elec. Eng.', 34); + insert into student values('68554', 'Larsson', 'English', 60); + insert into student values('99949', 'Samo', 'Astronomy', 125); + insert into student values('71287', 'Damas', 'Marketing', 59); + insert into student values('73268', 'Yagit', 'Civil Eng.', 67); + insert into student values('93708', 'Steines', 'Psychology', 99); + insert into student values('29399', 'Sutter', 'Marketing', 38); + insert into student values('14284', 'Takeshi', 'Athletics', 32); + insert into student values('80247', 'Rueda', 'Mech. Eng.', 17); + insert into student values('86344', 'Kaar', 'Accounting', 49); + insert into student values('54728', 'Seta', 'History', 50); + insert into student values('86375', 'Loher', 'English', 110); + insert into student values('64401', 'Larion', 'Elec. Eng.', 42); + insert into student values('9183', 'Sutter', 'Athletics', 44); + insert into student values('71529', 'Fredrickso', 'Elec. Eng.', 12); + insert into student values('65433', 'Stratulat', 'Math', 123); + insert into student values('89051', 'Dubink', 'History', 65); + insert into student values('90448', 'Godfrey', 'English', 120); + insert into student values('90082', 'Esparza', 'Astronomy', 62); + insert into student values('25362', 'Simmel', 'Psychology', 117); + insert into student values('74509', 'Tanzi', 'Civil Eng.', 76); + insert into student values('20445', 'Laak', 'Marketing', 4); + insert into student values('40059', 'Montilla', 'Astronomy', 16); + insert into student values('60867', 'Poulin', 'Finance', 5); + insert into student values('28128', 'Crick', 'Comp. Sci.', 111); + insert into student values('28518', 'Catani', 'Cybernetics', 20); + insert into student values('17086', 'Hazemi', 'Math', 90); + insert into student values('91132', 'Sud', 'History', 57); + insert into student values('29260', 'Verhoeven', 'Physics', 25); + insert into student values('29707', 'Gaspar', 'Statistics', 68); + insert into student values('85746', 'Wilks', 'Pol. Sci.', 5); + insert into student values('54605', 'Yoshioka', 'Elec. Eng.', 50); + insert into student values('78922', 'Koltso', 'Astronomy', 20); + insert into student values('76173', 'Jovicic', 'Elec. Eng.', 127); + insert into student values('6304', 'Tamura', 'Cybernetics', 122); + insert into student values('98120', 'Furukawa', 'Physics', 33); + insert into student values('6195', 'Hartmann', 'Finance', 20); + insert into student values('33837', 'Nicol', 'Psychology', 37); + insert into student values('86833', 'Viani', 'Psychology', 86); + insert into student values('28829', 'Reiss', 'Physics', 113); + insert into student values('82974', 'Duncan', 'Cybernetics', 111); + insert into student values('39114', 'Kerz', 'English', 18); + insert into student values('53485', 'Rowe', 'English', 70); + insert into student values('8603', 'Piedrah', 'Pol. Sci.', 64); + insert into student values('7973', 'Breed', 'English', 64); + insert into student values('34502', 'Farr', 'Pol. Sci.', 8); + insert into student values('69853', 'Boken', 'Statistics', 55); + insert into student values('70389', 'Paulk', 'History', 93); + insert into student values('75423', 'Oller', 'Elec. Eng.', 79); + insert into student values('26881', 'Markin', 'History', 110); + insert into student values('19848', 'Tiwari', 'Comp. Sci.', 96); + insert into student values('5017', 'Reuter', 'Statistics', 60); + insert into student values('33094', 'Fakin', 'Accounting', 69); + insert into student values('25468', 'Hunter', 'Comp. Sci.', 49); + insert into student values('75928', 'Yoshimoto', 'Cybernetics', 52); + insert into student values('94522', 'Pampal', 'Civil Eng.', 41); + insert into student values('30289', 'Lanfr', 'History', 72); + insert into student values('54296', 'Osinski', 'Elec. Eng.', 91); + insert into student values('12069', 'Skeen', 'History', 10); + insert into student values('89059', 'Juan', 'Civil Eng.', 62); + insert into student values('38336', 'Sagawe', 'Civil Eng.', 39); + insert into student values('98563', 'Yen', 'Languages', 74); + insert into student values('19541', 'Drews', 'Marketing', 1); + insert into student values('95366', 'Isogai', 'Cybernetics', 33); + insert into student values('69758', 'Baroni', 'Pol. Sci.', 57); + insert into student values('98690', 'Neru', 'Accounting', 41); + insert into student values('66494', 'Shevade', 'Biology', 62); + insert into student values('65205', 'Sauer', 'Accounting', 128); + insert into student values('11682', 'Juol', 'Athletics', 126); + insert into student values('36265', 'Kaupp', 'Physics', 98); + insert into student values('14432', 'Whitley', 'Geology', 2); + insert into student values('63860', 'Bayn', 'English', 106); + insert into student values('50969', 'Terauchi', 'History', 119); + insert into student values('95089', 'Zarpell', 'Mech. Eng.', 111); + insert into student values('74840', 'Schill', 'Biology', 116); + insert into student values('29002', 'Duxbury', 'History', 29); + insert into student values('37809', 'Soni', 'Geology', 38); + insert into student values('27727', 'Duong', 'Finance', 115); + insert into student values('66469', 'Komori', 'History', 105); + insert into student values('31486', 'Okubo', 'Elec. Eng.', 72); + insert into student values('95099', 'Chien', 'Accounting', 81); + insert into student values('57083', 'Gray', 'Pol. Sci.', 107); + insert into student values('83622', 'Achilles', 'Elec. Eng.', 57); + insert into student values('68278', 'Becker', 'Psychology', 83); + insert into student values('87651', 'Liang', 'Math', 67); + insert into student values('8426', 'Harass', 'Pol. Sci.', 67); + insert into student values('88793', 'Sakhno', 'Mech. Eng.', 77); + insert into student values('60249', 'Nishida', 'Geology', 83); + insert into student values('65144', 'Butler', 'Marketing', 121); + insert into student values('91091', 'Ockerb', 'English', 105); + insert into student values('8252', 'Breuer', 'Civil Eng.', 13); + insert into student values('82126', 'Koizumi', 'Math', 103); + insert into student values('13290', 'Bonatto', 'Biology', 83); + insert into student values('85356', 'Kocsis', 'Marketing', 68); + insert into student values('5871', 'Carey', 'Athletics', 70); + insert into student values('59290', 'Morris', 'English', 120); + insert into student values('5414', 'Aiken', 'Pol. Sci.', 118); + insert into student values('30124', 'Alfaro', 'Math', 126); + insert into student values('21008', 'Pavlovico', 'Mech. Eng.', 44); + insert into student values('69732', 'Barbosa', 'English', 76); + insert into student values('19450', 'Asahara', 'Cybernetics', 37); + insert into student values('55915', 'Mohamed', 'Civil Eng.', 78); + insert into student values('14621', 'Azevedo', 'Astronomy', 17); + insert into student values('22003', 'Ibah', 'Elec. Eng.', 48); + insert into student values('16631', 'Stratulat', 'Biology', 20); + insert into student values('51549', 'Rao', 'Mech. Eng.', 87); + insert into student values('95284', 'Hands', 'Physics', 25); + insert into student values('60366', 'Kostie', 'Statistics', 106); + insert into student values('99369', 'Klingenb', 'Comp. Sci.', 57); + insert into student values('50873', 'Beck', 'Marketing', 33); + insert into student values('36244', 'Neuhold', 'Accounting', 50); + insert into student values('58874', 'Ray', 'Physics', 109); + insert into student values('82687', 'Cameron', 'Athletics', 77); + insert into student values('2423', 'Giralt', 'Accounting', 114); + insert into student values('62429', 'Dietzsch', 'Psychology', 111); + insert into student values('93631', 'Sendlm', 'History', 71); + insert into student values('29705', 'Stetson', 'Finance', 76); + insert into student values('52076', 'Noda', 'Astronomy', 85); + insert into student values('53451', 'Hasan', 'Physics', 83); + insert into student values('69730', 'Peip', 'English', 12); + insert into student values('56276', 'Lansi', 'History', 122); + insert into student values('23311', 'Brunet', 'Languages', 83); + insert into student values('21086', 'Held', 'Math', 97); + insert into student values('61003', 'Pietkiewicz', 'Math', 88); + insert into student values('27950', 'Yüksel', 'English', 74); + insert into student values('50583', 'Ng', 'Finance', 113); + insert into student values('40276', 'Konstantinides', 'Mech. Eng.', 37); + insert into student values('15487', 'Januszewski', 'Athletics', 14); + insert into student values('83592', 'Benkov', 'Accounting', 33); + insert into student values('46970', 'Rafiq', 'Athletics', 31); + insert into student values('30188', 'Ahmad', 'Marketing', 126); + insert into student values('64934', 'Halbert', 'Psychology', 38); + insert into student values('99694', 'Beckert', 'Statistics', 119); + insert into student values('79534', 'Martel-', 'Statistics', 11); + insert into student values('57156', 'Haigh', 'Math', 120); + insert into student values('41894', 'Ortmann', 'Civil Eng.', 89); + insert into student values('69679', 'Ramírez', 'Accounting', 7); + insert into student values('62795', 'Conradie', 'Pol. Sci.', 63); + insert into student values('34331', 'Kacpr', 'Accounting', 59); + insert into student values('4645', 'Ryoo', 'Finance', 65); + insert into student values('70395', 'Ballew', 'Physics', 128); + insert into student values('69222', 'Albuquerque', 'Math', 18); + insert into student values('22254', 'Gordon', 'Statistics', 75); + insert into student values('51817', 'MacIntyre', 'Physics', 51); + insert into student values('66495', 'Michel', 'Statistics', 82); + insert into student values('72501', 'Mulet', 'Elec. Eng.', 93); + insert into student values('7390', 'Stone', 'Accounting', 30); + insert into student values('28538', 'Mathur', 'Statistics', 97); + insert into student values('68649', 'Klug', 'Pol. Sci.', 49); + insert into student values('15249', 'Cheah', 'Accounting', 1); + insert into student values('98984', 'Seraphin', 'Mech. Eng.', 43); + insert into student values('35198', 'Loc', 'Civil Eng.', 87); + insert into student values('67017', 'Westervelt', 'Physics', 102); + insert into student values('27919', 'Hubr', 'Athletics', 124); + insert into student values('46762', 'Bier', 'Comp. Sci.', 71); + insert into student values('98843', 'Julier', 'Cybernetics', 85); + insert into student values('14094', 'Miao', 'Comp. Sci.', 45); + insert into student values('79589', 'Schopp', 'Elec. Eng.', 104); + insert into student values('94371', 'Milner', 'Athletics', 120); + insert into student values('25528', 'Sivew', 'Elec. Eng.', 40); + insert into student values('7620', 'Potry', 'Mech. Eng.', 107); + insert into student values('43658', 'Meneses', 'Astronomy', 87); + insert into student values('65714', 'Hughes', 'English', 19); + insert into student values('37339', 'Warren', 'Psychology', 68); + insert into student values('38555', 'Vogt', 'Elec. Eng.', 55); + insert into student values('73908', 'Cruz', 'Biology', 60); + insert into student values('4438', 'Yoshioka', 'Cybernetics', 110); + insert into student values('15883', 'Marques', 'Math', 24); + insert into student values('41890', 'Srivastava', 'Physics', 15); + insert into student values('75547', 'Varadaran', 'Pol. Sci.', 96); + insert into student values('89196', 'Klöpper', 'Pol. Sci.', 37); + insert into student values('52494', 'Sznajder', 'Statistics', 25); + insert into student values('44551', 'Nguyen', 'Astronomy', 119); + insert into student values('61332', 'Canon', 'Astronomy', 8); + insert into student values('37715', 'Westbrook', 'Languages', 53); + insert into student values('68779', 'Harmon', 'Athletics', 47); + insert into student values('71768', 'Stephenn', 'Geology', 89); + insert into student values('72055', 'Schinag', 'Languages', 7); + insert into student values('29514', 'Michael', 'Biology', 124); + insert into student values('62152', 'Oba', 'Elec. Eng.', 78); + insert into student values('66212', 'Kurt', 'Finance', 113); + insert into student values('53048', 'Keps', 'Cybernetics', 122); + insert into student values('4015', 'Cole', 'Astronomy', 32); + insert into student values('67340', 'Dubu', 'Cybernetics', 38); + insert into student values('2970', 'Montes-y', 'History', 56); + insert into student values('27952', 'McQuillan', 'History', 51); + insert into student values('51008', 'Kandadai', 'History', 107); + insert into student values('97629', 'Awano', 'Biology', 101); + insert into student values('31079', 'Canas', 'Astronomy', 85); + insert into student values('57941', 'Kleinberg', 'Astronomy', 24); + insert into student values('30397', 'Dism', 'Civil Eng.', 116); + insert into student values('45826', 'Teng', 'Mech. Eng.', 70); + insert into student values('70299', 'Hirvas', 'Athletics', 65); + insert into student values('9084', 'Rabu', 'Finance', 87); + insert into student values('78116', 'Xiao', 'Civil Eng.', 65); + insert into student values('5250', 'Ã…ström', 'Finance', 49); + insert into student values('93508', 'Graham', 'Physics', 14); + insert into student values('30845', 'Fonseca', 'Math', 19); + insert into student values('91442', 'Ohno', 'Pol. Sci.', 91); + insert into student values('75938', 'Kotsonis', 'Marketing', 71); + insert into student values('74672', 'Eggers', 'Athletics', 24); + insert into student values('12078', 'Knutson', 'Languages', 97); + insert into student values('94311', 'Napoletani', 'English', 40); + insert into student values('94697', 'Pettersen', 'Geology', 105); + insert into student values('50702', 'Harders', 'Math', 63); + insert into student values('35462', 'Byrd', 'Statistics', 42); + insert into student values('34018', 'Asahara', 'Elec. Eng.', 103); + insert into student values('99775', 'Epley', 'Athletics', 116); + insert into student values('88140', 'Stanko', 'Pol. Sci.', 122); + insert into student values('46106', 'Pledg', 'Astronomy', 68); + insert into student values('68096', 'Teo', 'Elec. Eng.', 68); + insert into student values('84808', 'Randers', 'Psychology', 104); + insert into student values('97658', 'Baier', 'Finance', 82); + insert into student values('73186', 'Schweitzer', 'Psychology', 3); + insert into student values('50944', 'Tao', 'Pol. Sci.', 66); + insert into student values('53165', 'Dowey', 'History', 90); + insert into student values('86981', 'Hansch', 'Cybernetics', 3); + insert into student values('16885', 'Biehl', 'Math', 59); + insert into student values('2561', 'Aschoff', 'Finance', 20); + insert into student values('96178', 'Hay', 'Civil Eng.', 84); + insert into student values('64731', 'Yuanq', 'Languages', 13); + insert into student values('14023', 'Deshpande', 'History', 90); + insert into student values('47265', 'Albinal', 'Comp. Sci.', 105); + insert into student values('84704', 'Rammer', 'Physics', 55); + insert into student values('69132', 'Sciore', 'Statistics', 25); + insert into student values('49073', 'Bonvin', 'English', 74); + insert into student values('44703', 'Hsieh', 'Marketing', 5); + insert into student values('41211', 'Fok', 'Accounting', 113); + insert into student values('61414', 'Ohyama', 'Elec. Eng.', 90); + insert into student values('38696', 'Spadon', 'Comp. Sci.', 118); + insert into student values('90009', 'Donofrio', 'Pol. Sci.', 13); + insert into student values('97868', 'Schinag', 'Athletics', 104); + insert into student values('17944', 'Hamarn', 'Mech. Eng.', 5); + insert into student values('25380', 'Vassileva', 'English', 97); + insert into student values('85614', 'Champes', 'English', 87); + insert into student values('60984', 'Emms', 'Finance', 48); + insert into student values('84495', 'Kurata', 'Psychology', 84); + insert into student values('19321', 'Chang', 'Mech. Eng.', 124); + insert into student values('99611', 'Schrefl', 'Pol. Sci.', 22); + insert into student values('72485', 'Wetzel', 'Finance', 33); + insert into student values('50267', 'Spengler', 'Finance', 52); + insert into student values('544', 'Uchiyama', 'Biology', 81); + insert into student values('55009', 'Pohlem', 'Pol. Sci.', 18); + insert into student values('45083', 'Stasko', 'Marketing', 44); + insert into student values('67018', 'Catona', 'Biology', 46); + insert into student values('93039', 'Hau', 'English', 21); + insert into student values('75772', 'Morton', 'Comp. Sci.', 48); + insert into student values('60224', 'Bensaber', 'Physics', 54); + insert into student values('41674', 'April', 'Biology', 46); + insert into student values('97435', 'Winzer', 'Finance', 77); + insert into student values('21101', 'Gotchev', 'Astronomy', 117); + insert into student values('76250', 'Maw', 'History', 57); + insert into student values('40682', 'Rowe', 'Geology', 114); + insert into student values('39612', 'Androutsopoulos', 'Elec. Eng.', 103); + insert into student values('14032', 'Belhadji', 'Elec. Eng.', 0); + insert into student values('75791', 'Keuk', 'Finance', 11); + insert into student values('5208', 'Feyr', 'Statistics', 47); + insert into student values('43432', 'Caporali', 'Astronomy', 77); + insert into student values('68453', 'Kjellmer', 'Elec. Eng.', 102); + insert into student values('12711', 'Malagoli', 'Physics', 97); + insert into student values('40932', 'Rioult', 'Comp. Sci.', 94); + insert into student values('6710', 'Matli', 'Elec. Eng.', 102); + insert into student values('91370', 'Frangeu', 'Mech. Eng.', 9); + insert into student values('43912', 'Papakir', 'Finance', 34); + insert into student values('12666', 'Power', 'Athletics', 118); + insert into student values('74460', 'McWilliams', 'Statistics', 120); + insert into student values('99422', 'Fickl', 'Civil Eng.', 83); + insert into student values('95320', 'Morgan', 'Mech. Eng.', 127); + insert into student values('56299', 'Sadry', 'Finance', 75); + insert into student values('84432', 'Schrefl', 'Athletics', 111); + insert into student values('75231', 'Ravindranath', 'Statistics', 127); + insert into student values('94846', 'Hossain', 'Cybernetics', 103); + insert into student values('4004', 'Tabor', 'Biology', 51); + insert into student values('28361', 'Sorensen', 'Physics', 109); + insert into student values('97228', 'Brzezinski', 'Mech. Eng.', 25); + insert into student values('39552', 'Tsukamoto', 'Physics', 72); + insert into student values('38676', 'Swien', 'Elec. Eng.', 48); + insert into student values('94814', 'Kee', 'Mech. Eng.', 73); + insert into student values('16035', 'Starker', 'English', 94); + insert into student values('79205', 'Zander', 'Geology', 115); + insert into student values('4682', 'Betho', 'Accounting', 59); + insert into student values('5925', 'Maw', 'Languages', 30); + insert into student values('25187', 'Fenwick', 'History', 103); + insert into student values('19603', 'Colu', 'Finance', 122); + insert into student values('41491', 'Beavis', 'Comp. Sci.', 15); + insert into student values('99764', 'Lv', 'Marketing', 104); + insert into student values('50537', 'Felling', 'Mech. Eng.', 20); + insert into student values('67793', 'Pigd', 'Mech. Eng.', 45); + insert into student values('47487', 'Villa', 'Finance', 72); + insert into student values('19362', 'Linden', 'Finance', 123); + insert into student values('25942', 'Leclercq', 'Mech. Eng.', 23); + insert into student values('39238', 'Kyriakopoulos', 'Pol. Sci.', 90); + insert into student values('65979', 'Chenu', 'Comp. Sci.', 22); + insert into student values('22086', 'Ockerb', 'Athletics', 23); + insert into student values('37734', 'Kamata', 'Civil Eng.', 68); + insert into student values('17911', 'Audeh', 'Biology', 92); + insert into student values('87831', 'Turunen', 'Psychology', 128); + insert into student values('12214', 'Morales', 'Languages', 51); + insert into student values('20378', 'Lomi', 'Languages', 3); + insert into student values('11083', 'Kerridge', 'Statistics', 113); + insert into student values('57377', 'Soricu', 'Elec. Eng.', 40); + insert into student values('35881', 'Özel', 'Cybernetics', 99); + insert into student values('34542', 'Basile', 'Physics', 25); + insert into student values('91978', 'Pourkas', 'Cybernetics', 128); + insert into student values('87048', 'Gani', 'Mech. Eng.', 10); + insert into student values('64820', 'Hendrickson', 'Geology', 79); + insert into student values('57474', 'Coddington', 'Accounting', 110); + insert into student values('53496', 'Cashman', 'Marketing', 27); + insert into student values('87193', 'Pinkus', 'English', 25); + insert into student values('847', 'Yamaguchi', 'Elec. Eng.', 105); + insert into student values('42388', 'Nikut', 'History', 87); + insert into student values('62749', 'Giroux', 'Math', 49); + insert into student values('41988', 'Gall', 'Languages', 12); + insert into student values('85680', 'Krohn', 'Mech. Eng.', 93); + insert into student values('82083', 'Peeri', 'English', 58); + insert into student values('65056', 'Kean', 'Astronomy', 76); + insert into student values('3639', 'Story', 'Statistics', 73); + insert into student values('37038', 'Grieng', 'Math', 114); + insert into student values('9933', 'Pircher', 'Geology', 90); + insert into student values('65190', 'Dumas', 'Accounting', 77); + insert into student values('15328', 'Chien', 'Statistics', 129); + insert into student values('59455', 'Lowenstein', 'English', 110); + insert into student values('49873', 'Nikut', 'Athletics', 85); + insert into student values('82039', 'Hendrickson', 'Astronomy', 37); + insert into student values('20974', 'Hawkins', 'Mech. Eng.', 127); + insert into student values('56089', 'Mezzar', 'Marketing', 109); + insert into student values('86573', 'Schauser', 'Physics', 107); + insert into student values('38712', 'Kreutz', 'Elec. Eng.', 29); + insert into student values('42991', 'Kaiser', 'Languages', 126); + insert into student values('28019', 'Cayto', 'History', 38); + insert into student values('13023', 'Serrano', 'Marketing', 108); + insert into student values('31761', 'Jame', 'Pol. Sci.', 57); + insert into student values('56882', 'Browne', 'Comp. Sci.', 24); + insert into student values('34788', 'Barkov', 'Civil Eng.', 35); + insert into student values('17607', 'Ould', 'Athletics', 115); + insert into student values('48776', 'Wall', 'Statistics', 58); + insert into student values('78758', 'Chakraborty', 'Geology', 7); + insert into student values('77218', 'Lohman', 'Finance', 51); + insert into student values('4034', 'Xie', 'Elec. Eng.', 64); + insert into student values('50658', 'Cayto', 'Civil Eng.', 56); + insert into student values('76057', 'Sakanushi', 'Comp. Sci.', 2); + insert into student values('96067', 'Sugavanam', 'Civil Eng.', 113); + insert into student values('24784', 'Jessup', 'Comp. Sci.', 126); + insert into student values('31560', 'Neld', 'Languages', 13); + insert into student values('32345', 'Chormo', 'Biology', 38); + insert into student values('76799', 'Monger', 'Statistics', 63); + insert into student values('37454', 'Frasinc', 'Biology', 109); + insert into student values('30943', 'Botha', 'History', 65); + insert into student values('16405', 'Rahman', 'Languages', 5); + insert into student values('95850', 'Schrefl', 'Comp. Sci.', 13); + insert into student values('26619', 'Matsukawa', 'Biology', 58); + insert into student values('17997', 'Ishikawa', 'Languages', 128); + insert into student values('26427', 'Ende', 'Finance', 129); + insert into student values('73213', 'Fall', 'Psychology', 64); + insert into student values('93366', 'Gault', 'Cybernetics', 29); + insert into student values('33882', 'Borutz', 'Civil Eng.', 3); + insert into student values('37818', 'Jiao', 'Civil Eng.', 66); + insert into student values('21102', 'He', 'Biology', 121); + insert into student values('76798', 'Clifford', 'Languages', 43); + insert into student values('31820', 'Riahi', 'Athletics', 51); + insert into student values('63489', 'Enokib', 'Comp. Sci.', 81); + insert into student values('51955', 'Tompa', 'Finance', 106); + insert into student values('71631', 'Scheine', 'Astronomy', 87); + insert into student values('48009', 'Lopes', 'Pol. Sci.', 36); + insert into student values('51678', 'Klivansky', 'Pol. Sci.', 49); + insert into student values('73602', 'Richardson', 'History', 119); + insert into student values('11530', 'Ng', 'Marketing', 92); + insert into student values('32376', 'Nakajima', 'Astronomy', 8); + insert into student values('80799', 'Almeida', 'Finance', 106); + insert into student values('40178', 'Greene', 'Mech. Eng.', 93); + insert into student values('58701', 'Hampp', 'Geology', 44); + insert into student values('46655', 'Advani', 'Athletics', 112); + insert into student values('93043', 'McQuillan', 'Marketing', 42); + insert into student values('1402', 'Oswald', 'Comp. Sci.', 12); + insert into student values('29462', 'Daues', 'Pol. Sci.', 88); + insert into student values('49701', 'Read', 'Civil Eng.', 33); + insert into student values('96968', 'Mohamed', 'Mech. Eng.', 118); + insert into student values('89551', 'Shapiro', 'History', 127); + insert into student values('32483', 'Atre', 'Math', 114); + insert into student values('39472', 'Soper', 'Elec. Eng.', 62); + insert into student values('88045', 'Jackson', 'Languages', 126); + insert into student values('30474', 'Paniez', 'Athletics', 55); + insert into student values('31476', 'OConnor', 'Elec. Eng.', 7); + insert into student values('95175', 'Guiho', 'Elec. Eng.', 42); + insert into student values('95697', 'Gruns', 'Cybernetics', 77); + insert into student values('37759', 'Signah', 'Cybernetics', 26); + insert into student values('96134', 'Prince', 'Languages', 121); + insert into student values('92464', 'Enokib', 'History', 47); + insert into student values('78434', 'Ruhe', 'Psychology', 26); + insert into student values('44038', 'Chandra', 'Civil Eng.', 11); + insert into student values('43993', 'Halbert', 'Math', 113); + insert into student values('914', 'Schill', 'Comp. Sci.', 32); + insert into student values('19342', 'Bouzeghoub', 'Finance', 35); + insert into student values('13749', 'Alfaro', 'Marketing', 23); + insert into student values('33546', 'Saguez', 'Pol. Sci.', 53); + insert into student values('40116', 'Joshi', 'Psychology', 23); + insert into student values('46980', 'Roessler', 'Astronomy', 58); + insert into student values('31266', 'Kacpr', 'Physics', 22); + insert into student values('65688', 'Loudn', 'Mech. Eng.', 65); + insert into student values('65563', 'Bawa', 'Psychology', 111); + insert into student values('83314', 'Chow', 'Accounting', 40); + insert into student values('39876', 'Wood', 'Accounting', 14); + insert into student values('44706', 'Bland', 'English', 119); + insert into student values('15086', 'Sun', 'Physics', 74); + insert into student values('12615', 'Tewari', 'Geology', 40); + insert into student values('63538', 'Pulido', 'History', 46); + insert into student values('17831', 'Srivastava', 'Languages', 75); + insert into student values('96117', 'Nisso', 'English', 128); + insert into student values('82066', 'Varghese', 'Comp. Sci.', 11); + insert into student values('28738', 'Birkett', 'Civil Eng.', 94); + insert into student values('84515', 'Levie', 'Biology', 126); + insert into student values('90132', 'Jo', 'Psychology', 11); + insert into student values('8192', 'Verma', 'Civil Eng.', 123); + insert into student values('25611', 'Sve', 'English', 107); + insert into student values('50743', 'Lindner', 'Biology', 83); + insert into student values('41683', 'Pietkiewicz', 'Biology', 20); + insert into student values('99553', 'Strader', 'Languages', 6); + insert into student values('22179', 'Sundho', 'Statistics', 40); + insert into student values('65121', 'Winter', 'Comp. Sci.', 56); + insert into student values('52057', 'Garg', 'Elec. Eng.', 101); + insert into student values('931', 'Tsalidi', 'English', 122); + insert into student values('23392', 'Curutchet', 'Elec. Eng.', 43); + insert into student values('33759', 'Mowbray', 'Psychology', 44); + insert into student values('52203', 'Suwanno', 'Pol. Sci.', 41); + insert into student values('78581', 'Hegde', 'Finance', 41); + insert into student values('65241', 'Riser', 'Astronomy', 96); + insert into student values('45359', 'Zelek', 'Marketing', 79); + insert into student values('86001', 'Meise', 'English', 27); + insert into student values('22532', 'Silverman', 'History', 120); + insert into student values('97573', 'Yusop', 'Physics', 60); + insert into student values('90609', 'Mohamed', 'Finance', 95); + insert into student values('16528', 'Angs', 'Accounting', 24); + insert into student values('61920', 'Marcol', 'Geology', 59); + insert into student values('282', 'Rougemont', 'Languages', 34); + insert into student values('85602', 'Bogdanova', 'Pol. Sci.', 81); + insert into student values('62832', 'Anderson', 'English', 19); + insert into student values('78454', 'Michael', 'Pol. Sci.', 68); + insert into student values('30222', 'Lepp', 'Accounting', 121); + insert into student values('28994', 'Williamson', 'Statistics', 104); + insert into student values('39927', 'Bartels', 'History', 62); + insert into student values('74070', 'Sandberg', 'Mech. Eng.', 119); + insert into student values('65208', 'Farahvash', 'Civil Eng.', 45); + insert into student values('2286', 'Ceze', 'Elec. Eng.', 65); + insert into student values('49450', 'Gotoh', 'Astronomy', 83); + insert into student values('83214', 'Dasd', 'Biology', 35); + insert into student values('6287', 'Makowski', 'Pol. Sci.', 32); + insert into student values('86661', 'Shani', 'Elec. Eng.', 21); + insert into student values('68242', 'Hugo', 'English', 109); + insert into student values('42092', 'Arinb', 'Comp. Sci.', 47); + insert into student values('9993', 'Won', 'Math', 40); + insert into student values('89734', 'Doeschn', 'Astronomy', 66); + insert into student values('7732', 'Osc', 'Comp. Sci.', 98); + insert into student values('89312', 'Marques', 'Statistics', 101); + insert into student values('35357', 'Gradino', 'English', 34); + insert into student values('86127', 'Spikov', 'Math', 27); + insert into student values('18775', 'Pampal', 'Comp. Sci.', 89); + insert into student values('24374', 'Jo', 'Cybernetics', 105); + insert into student values('2848', 'Carr', 'Civil Eng.', 121); + insert into student values('78143', 'Erdem', 'Astronomy', 12); + insert into student values('50977', 'Allen', 'Elec. Eng.', 93); + insert into student values('96895', 'Stelzl', 'Statistics', 94); + insert into student values('95626', 'Tellez', 'Math', 32); + insert into student values('22260', 'Daat', 'Accounting', 8); + insert into student values('23224', 'Kempn', 'Psychology', 81); + insert into student values('27528', 'Probst', 'Biology', 95); + insert into student values('71025', 'Cadis', 'History', 129); + insert into student values('36845', 'Okaf', 'Math', 30); + insert into student values('17924', 'Tavan', 'Psychology', 97); + insert into student values('69632', 'Gibbs', 'Languages', 40); + insert into student values('70828', 'Kaska', 'Physics', 88); + insert into student values('27687', 'Yüksel', 'Physics', 31); + insert into student values('28299', 'Grange', 'Languages', 120); + insert into student values('14869', 'Palmer', 'Astronomy', 106); + insert into student values('11152', 'Al-Tahat', 'English', 87); + insert into student values('17507', 'Mathur', 'Mech. Eng.', 48); + insert into student values('57107', 'Janssen', 'Astronomy', 36); + insert into student values('47670', 'Xue', 'Pol. Sci.', 55); + insert into student values('25718', 'Seyfert', 'Athletics', 83); + insert into student values('67293', 'Ueno', 'History', 19); + insert into student values('41091', 'Maillet', 'Geology', 66); + insert into student values('86674', 'Peter', 'Biology', 105); + insert into student values('23506', 'Ã…ström', 'Pol. Sci.', 109); + insert into student values('8022', 'Heng', 'Languages', 74); + insert into student values('97953', 'Kaneko', 'Math', 110); + insert into student values('86934', 'Berthold', 'Athletics', 35); + insert into student values('58172', 'Geißl', 'Astronomy', 127); + insert into student values('81610', 'Ching', 'Languages', 0); + insert into student values('77172', 'Klepper', 'Statistics', 64); + insert into student values('499', 'Seike', 'Elec. Eng.', 52); + insert into student values('94730', 'Neff', 'Geology', 101); + insert into student values('40371', 'Trimble', 'Physics', 109); + insert into student values('3651', 'Narayanan', 'Elec. Eng.', 14); + insert into student values('85904', 'Harass', 'Cybernetics', 120); + insert into student values('73394', 'Blasbe', 'Geology', 96); + insert into student values('8807', 'Zacharias', 'Finance', 33); + insert into student values('62705', 'Hoffman', 'Marketing', 86); + insert into student values('11578', 'Kwan', 'Languages', 37); + insert into student values('68248', 'Tillmann', 'Athletics', 83); + insert into student values('98315', 'Saill', 'Pol. Sci.', 65); + insert into student values('62754', 'Durrant', 'Geology', 54); + insert into student values('41406', 'Dahmann', 'Biology', 24); + insert into student values('82063', 'Zeng', 'Athletics', 68); + insert into student values('87706', 'Nakao', 'Physics', 80); + insert into student values('20540', 'Cunha', 'History', 58); + insert into student values('69960', 'Raïev', 'Biology', 17); + insert into student values('30252', 'Folkers', 'Geology', 80); + insert into student values('70098', 'Prabhakaran', 'Biology', 61); + insert into student values('93986', 'Zahrani', 'Physics', 73); + insert into student values('35685', 'Usi', 'History', 31); + insert into student values('31364', 'Rieger', 'Biology', 94); + insert into student values('36494', 'Baccou', 'Psychology', 41); + insert into student values('32217', 'Argar', 'Math', 14); + insert into student values('69952', 'Muñoz', 'Psychology', 115); + insert into student values('52523', 'Hobbs', 'English', 14); + insert into student values('7149', 'Xin', 'Pol. Sci.', 120); + insert into student values('71878', 'Hayat', 'Finance', 27); + insert into student values('29192', 'Gomez', 'Geology', 81); + insert into student values('79446', 'Frost', 'Pol. Sci.', 24); + insert into student values('77000', 'Cherchi', 'Physics', 125); + insert into student values('1836', 'Marinov', 'Elec. Eng.', 85); + insert into student values('84167', 'Sakanushi', 'Comp. Sci.', 20); + insert into student values('81785', 'Crues', 'Civil Eng.', 102); + insert into student values('1087', 'Roses', 'Accounting', 73); + insert into student values('5617', 'Souza', 'Languages', 60); + insert into student values('53547', 'Neubert', 'Mech. Eng.', 66); + insert into student values('39978', 'Drig', 'English', 92); + insert into student values('60748', 'Nagal', 'Elec. Eng.', 58); + insert into student values('23449', 'Noda', 'Cybernetics', 94); + insert into student values('52385', 'Higuchi', 'Astronomy', 78); + insert into student values('2139', 'Agarwal', 'Physics', 99); + insert into student values('12941', 'Ren', 'Marketing', 76); + insert into student values('72521', 'Caleff', 'Mech. Eng.', 48); + insert into student values('82580', 'Wyes', 'Mech. Eng.', 103); + insert into student values('39394', 'Reinhardt', 'History', 84); + insert into student values('39901', 'Dellwo', 'Biology', 82); + insert into student values('3493', 'Riser', 'Geology', 16); + insert into student values('90353', 'Bruderm', 'Astronomy', 46); + insert into student values('69747', 'Beichn', 'Finance', 34); + insert into student values('39514', 'Yean', 'Accounting', 65); + insert into student values('36995', 'Sgot', 'Finance', 79); + insert into student values('12971', 'Bumbau', 'Elec. Eng.', 47); + insert into student values('76768', 'Oblak', 'Pol. Sci.', 56); + insert into student values('79502', 'Marongiu', 'Math', 84); + insert into student values('63390', 'Loudn', 'Cybernetics', 41); + insert into student values('19824', 'Savelieva', 'Physics', 7); + insert into student values('46769', 'Kivv', 'Psychology', 85); + insert into student values('65400', 'Horecz', 'Psychology', 49); + insert into student values('44258', 'Steinmetz', 'Accounting', 28); + insert into student values('81896', 'Feldman', 'Finance', 46); + insert into student values('79772', 'Witty', 'Marketing', 4); + insert into student values('46155', 'Kruglyak', 'Astronomy', 67); + insert into student values('18709', 'Agar', 'Math', 65); + insert into student values('63502', 'Xie', 'Languages', 69); + insert into student values('39521', 'Holloway', 'Accounting', 113); + insert into student values('51203', 'Lahtinen', 'Math', 99); + insert into student values('96741', 'Kobayashi', 'Comp. Sci.', 87); + insert into student values('38371', 'Harada', 'Math', 50); + insert into student values('59673', 'Mertens', 'Astronomy', 98); + insert into student values('13365', 'Wolter', 'Mech. Eng.', 55); + insert into student values('1000', 'Manber', 'Civil Eng.', 39); + insert into student values('19735', 'Bishop', 'Physics', 9); + insert into student values('34126', 'Schreitm', 'Accounting', 14); + insert into student values('16467', 'Meyl', 'Comp. Sci.', 92); + insert into student values('80248', 'Satoh', 'English', 74); + insert into student values('58634', 'Choung', 'Finance', 101); + insert into student values('51975', 'Nicol', 'Languages', 127); + insert into student values('77548', 'Krohn', 'History', 45); + insert into student values('74796', 'Vulp', 'History', 108); + insert into student values('85981', 'Kahs', 'Statistics', 91); + insert into student values('29645', 'Oller', 'History', 120); + insert into student values('89234', 'Hird', 'Civil Eng.', 78); + insert into student values('94142', 'Simon', 'Languages', 45); + insert into student values('79697', 'Marquis', 'Accounting', 75); + insert into student values('90089', 'Mohan', 'Astronomy', 28); + insert into student values('20244', 'Abu-B', 'Marketing', 112); + insert into student values('37350', 'Sohn', 'Physics', 49); + insert into student values('81638', 'Chiu', 'Statistics', 30); + insert into student values('90914', 'Grange', 'Pol. Sci.', 38); + insert into student values('75395', 'Moscarini', 'Psychology', 19); + insert into student values('42556', 'Tsantis', 'Languages', 43); + insert into student values('10556', 'Reed', 'English', 79); + insert into student values('39619', 'Dwyer', 'Mech. Eng.', 89); + insert into student values('38288', 'Matsuda', 'Mech. Eng.', 107); + insert into student values('20985', 'Wunderli', 'History', 66); + insert into student values('38548', 'Scibili', 'Pol. Sci.', 88); + insert into student values('15698', 'Dink', 'Psychology', 72); + insert into student values('23500', 'Kinney', 'Marketing', 68); + insert into student values('70965', 'Dooley', 'Languages', 66); + insert into student values('76911', 'Alart', 'Finance', 66); + insert into student values('3545', 'Peskin', 'Statistics', 119); + insert into student values('46694', 'Masamura', 'Math', 118); + insert into student values('99977', 'Englund', 'Psychology', 93); + insert into student values('90124', 'Koppit', 'Physics', 104); + insert into student values('95840', 'Jakobsen', 'History', 127); + insert into student values('56143', 'Yusop', 'Civil Eng.', 86); + insert into student values('79469', 'Jacobs', 'Math', 38); + insert into student values('3693', 'Zafar', 'Athletics', 27); + insert into student values('42096', 'Freib', 'Biology', 10); + insert into student values('88472', 'Lynch', 'Marketing', 12); + insert into student values('14874', 'Singhal', 'Comp. Sci.', 34); + insert into student values('978', 'Salzman', 'Comp. Sci.', 127); + insert into student values('33201', 'Macias', 'Civil Eng.', 61); + insert into student values('30161', 'Grude', 'Cybernetics', 23); + insert into student values('46441', 'Zander', 'Athletics', 18); + insert into student values('31035', 'Arnoux', 'Civil Eng.', 92); + insert into student values('67371', 'Garcia-Ferr', 'Geology', 70); + insert into student values('80651', 'Holz', 'English', 108); + insert into student values('43505', 'Yoon', 'Statistics', 118); + insert into student values('35498', 'Lanfr', 'Accounting', 78); + insert into student values('48423', 'Krone', 'Pol. Sci.', 80); + insert into student values('51093', 'Syng', 'Psychology', 92); + insert into student values('78572', 'Kurt', 'Comp. Sci.', 20); + insert into student values('52669', 'Rayad', 'Physics', 114); + insert into student values('87246', 'Dellwo', 'Comp. Sci.', 15); + insert into student values('69122', 'Epstein', 'Biology', 128); + insert into student values('52945', 'Adeni', 'Languages', 13); + insert into student values('52471', 'Recc', 'Finance', 110); + insert into student values('62728', 'Camme', 'Biology', 107); + insert into student values('52929', 'Hashim', 'Math', 118); + insert into student values('85754', 'Betho', 'Finance', 45); + insert into student values('18583', 'Ma', 'Finance', 74); + insert into student values('74974', 'Lao', 'Athletics', 86); + insert into student values('48611', 'Suppan', 'Geology', 102); + insert into student values('63582', 'Fischer', 'Pol. Sci.', 120); + insert into student values('53118', 'Carvey', 'Comp. Sci.', 120); + insert into student values('88887', 'Wodn', 'Languages', 122); + insert into student values('81175', 'Zelek', 'Biology', 0); + insert into student values('69783', 'Putru', 'Pol. Sci.', 117); + insert into student values('14829', 'Philippe', 'Accounting', 105); + insert into student values('53469', 'Fujii', 'Astronomy', 43); + insert into student values('44304', 'Cox', 'English', 31); + insert into student values('48861', 'Ende', 'Accounting', 54); + insert into student values('73411', 'Schulz', 'Math', 78); + insert into student values('95225', 'Moire', 'Languages', 99); + insert into student values('53788', 'Byun', 'Astronomy', 101); + insert into student values('68712', 'Hill', 'Civil Eng.', 30); + insert into student values('52866', 'Loull', 'Math', 30); + insert into student values('5298', 'Radici', 'Finance', 10); + insert into student values('58606', 'Opitz', 'Cybernetics', 91); + insert into student values('76049', 'Tavan', 'Cybernetics', 112); + insert into student values('78858', 'Abdul-Rahman', 'Psychology', 49); + insert into student values('97041', 'Rajnov', 'Psychology', 22); + insert into student values('98388', 'Nilsson', 'Math', 33); + insert into student values('15024', 'Kawahara', 'Civil Eng.', 10); + insert into student values('5243', 'Bajracharya', 'Marketing', 83); + insert into student values('80990', 'Strzem', 'Biology', 117); + insert into student values('77664', 'Apostolov', 'Marketing', 125); + insert into student values('49982', 'Haigh', 'Geology', 41); + insert into student values('87222', 'Allard', 'Mech. Eng.', 114); + insert into student values('35523', 'Yamamoto', 'Accounting', 15); + insert into student values('14499', 'Axte', 'Biology', 115); + insert into student values('33107', 'Liley', 'Civil Eng.', 16); + insert into student values('18108', 'Brailsford', 'Cybernetics', 107); + insert into student values('67655', 'Kuch', 'Math', 46); + insert into student values('95852', 'Cabr', 'Athletics', 48); + insert into student values('50664', 'Rajnov', 'Biology', 127); + insert into student values('59117', 'Belmes', 'Astronomy', 109); + insert into student values('435', 'Moskow', 'Languages', 32); + insert into student values('75596', 'Sayre', 'Biology', 19); + insert into student values('34197', 'Nestor', 'Languages', 106); + insert into student values('66281', 'Schelten', 'Civil Eng.', 49); + insert into student values('86736', 'Franchet', 'Finance', 94); + insert into student values('14484', 'Langer', 'Astronomy', 62); + insert into student values('88308', 'Reiss', 'English', 19); + insert into student values('36657', 'Ching', 'English', 51); + insert into student values('93125', 'Harders', 'Physics', 47); + insert into student values('29140', 'Reuver', 'Elec. Eng.', 123); + insert into student values('85211', 'Sumi', 'Athletics', 109); + insert into student values('23525', 'DAgostino', 'Elec. Eng.', 128); + insert into student values('3005', 'Ibrahim', 'Pol. Sci.', 73); + insert into student values('91197', 'Manzoor', 'Geology', 110); + insert into student values('1285', 'Szczerban', 'Pol. Sci.', 97); + insert into student values('29863', 'Harmon', 'Athletics', 112); + insert into student values('15070', 'Enokib', 'Math', 65); + insert into student values('98047', 'Takahashi', 'History', 49); + insert into student values('87624', 'Carrera', 'Civil Eng.', 81); + insert into student values('38902', 'Xiang', 'Math', 61); + insert into student values('15538', 'Yeung', 'Athletics', 111); + insert into student values('83691', 'Katehakis', 'Mech. Eng.', 33); + insert into student values('89759', 'Zettel', 'Mech. Eng.', 55); + insert into student values('34770', 'Porter', 'Languages', 111); + insert into student values('11202', 'Heckman', 'Math', 120); + insert into student values('65681', 'Roses', 'English', 17); + insert into student values('17665', 'Tewari', 'English', 62); + insert into student values('11966', 'Kowe', 'Math', 69); + insert into student values('21556', 'Negron', 'Marketing', 60); + insert into student values('24002', 'Russa', 'Languages', 14); + insert into student values('75878', 'Hahn-', 'Physics', 53); + insert into student values('52120', 'Redw', 'Physics', 8); + insert into student values('93491', 'Rees-', 'History', 74); + insert into student values('78637', 'Beeu', 'Physics', 42); + insert into student values('9256', 'Tran-', 'Pol. Sci.', 107); + insert into student values('41345', 'Tola', 'Finance', 17); + insert into student values('98726', 'Mathias', 'Comp. Sci.', 36); + insert into student values('5381', 'Diana', 'Languages', 30); + insert into student values('99647', 'Bellman', 'English', 106); + insert into student values('50331', 'Bullinger', 'Psychology', 9); + insert into student values('48247', 'Gustafsson', 'History', 80); + insert into student values('65753', 'Planti', 'Geology', 12); + insert into student values('29091', 'Ahso', 'Pol. Sci.', 22); + insert into student values('72165', 'Otsuki', 'Psychology', 61); + insert into student values('43981', 'Quimby', 'Pol. Sci.', 87); + insert into student values('16057', 'Wicki', 'Mech. Eng.', 114); + insert into student values('88525', 'Hung', 'Mech. Eng.', 92); + insert into student values('16480', 'Noga', 'Psychology', 5); + insert into student values('92849', 'Flossmann', 'Astronomy', 54); + insert into student values('9495', 'Crimm', 'Comp. Sci.', 68); + insert into student values('14581', 'Vagn', 'Biology', 129); + insert into student values('65901', 'Shishkin', 'Accounting', 120); + insert into student values('96203', 'Olin', 'Comp. Sci.', 87); + insert into student values('1954', 'Frank', 'Geology', 29); + insert into student values('66484', 'Amberg', 'Mech. Eng.', 75); + insert into student values('15083', 'Formisano', 'Physics', 50); + insert into student values('48901', 'Gong', 'Marketing', 57); + insert into student values('15340', 'Silbert', 'Psychology', 39); + insert into student values('16515', 'Suppan', 'Languages', 48); + insert into student values('54620', 'Hancock', 'Geology', 27); + insert into student values('15430', 'Sasso', 'Psychology', 39); + insert into student values('27236', 'Date', 'Astronomy', 105); + insert into student values('2201', 'Sauer', 'Biology', 99); + insert into student values('69471', 'Aly', 'Astronomy', 41); + insert into student values('13880', 'Lazos', 'Physics', 98); + insert into student values('827', 'Das', 'Languages', 98); + insert into student values('42960', 'McGinn', 'Finance', 95); + insert into student values('48471', 'Elias', 'Languages', 90); + insert into student values('13217', 'Liu', 'Athletics', 95); + insert into student values('45570', 'Hoyos', 'Biology', 99); + insert into student values('94815', 'Xiang', 'Finance', 6); + insert into student values('1922', 'Cavalcanti', 'Athletics', 48); + insert into student values('51084', 'Pah', 'Languages', 63); + insert into student values('842', 'Jode', 'Languages', 81); + insert into student values('53152', 'Sayre', 'Civil Eng.', 18); + insert into student values('11201', 'Bianchi', 'Statistics', 0); + insert into student values('88577', 'Smoro', 'Astronomy', 91); + insert into student values('22050', 'Alioto', 'Physics', 108); + insert into student values('68010', 'Blecken', 'Pol. Sci.', 43); + insert into student values('10838', 'Marlet', 'Accounting', 91); + insert into student values('59848', 'Barwin', 'History', 86); + insert into student values('7035', 'Liots', 'English', 23); + insert into student values('5463', 'Reiss', 'Finance', 95); + insert into student values('74464', 'Sulimova', 'Athletics', 76); + insert into student values('16969', 'Hakkinen', 'Finance', 70); + insert into student values('62054', 'Wood', 'Mech. Eng.', 13); + insert into student values('50719', 'Model', 'Geology', 66); + insert into student values('41280', 'Birtz', 'Finance', 83); + insert into student values('31341', 'Rotter', 'Marketing', 32); + insert into student values('23475', 'Cecchi', 'Athletics', 16); + insert into student values('55354', 'Yang', 'Comp. Sci.', 107); + insert into student values('50966', 'Concilio', 'Finance', 95); + insert into student values('10269', 'Hilberg', 'Psychology', 75); + insert into student values('92659', 'Mathias', 'Biology', 98); + insert into student values('49792', 'Petersen', 'Accounting', 38); + insert into student values('27140', 'Fitzpatrick', 'Marketing', 98); + insert into student values('993', 'McGarr', 'Comp. Sci.', 55); + insert into student values('58326', 'Afim', 'Accounting', 100); + insert into student values('70924', 'Rajnov', 'Civil Eng.', 0); + insert into student values('71944', 'Schinag', 'Mech. Eng.', 58); + insert into student values('95201', 'Yang', 'Psychology', 28); + insert into student values('52876', 'Dahmann', 'Languages', 50); + insert into student values('58355', 'Honeyman', 'Athletics', 42); + insert into student values('90181', 'Giannoulis', 'Biology', 23); + insert into student values('53799', 'Okabe', 'Cybernetics', 12); + insert into student values('13511', 'Adam', 'Cybernetics', 15); + insert into student values('69521', 'Greenbaum', 'Accounting', 124); + insert into student values('37946', 'Vrato', 'Finance', 110); + insert into student values('15578', 'Pacie', 'Elec. Eng.', 32); + insert into student values('16311', 'Liao', 'Accounting', 33); + insert into student values('56124', 'Strieg', 'Civil Eng.', 33); + insert into student values('63560', 'Gleit', 'History', 82); + insert into student values('75299', 'Miao', 'Marketing', 82); + insert into student values('61356', 'Vulp', 'Cybernetics', 6); + insert into student values('70061', 'Konno', 'Comp. Sci.', 50); + insert into student values('61232', 'Fukui', 'Pol. Sci.', 48); + insert into student values('16523', 'Redw', 'Math', 117); + insert into student values('57238', 'Rehd', 'Accounting', 33); + insert into student values('63645', 'Mandviwall', 'Marketing', 20); + insert into student values('55857', 'Martin', 'Languages', 74); + insert into student values('90041', 'Barberis', 'Mech. Eng.', 122); + insert into student values('68263', 'Roessler', 'Languages', 69); + insert into student values('48165', 'Asikainen', 'Marketing', 57); + insert into student values('23373', 'Lang', 'Astronomy', 70); + insert into student values('5336', 'Peltz', 'Math', 22); + insert into student values('18286', 'Pang', 'Finance', 110); + insert into student values('4860', 'Penneb', 'Elec. Eng.', 83); + insert into student values('68516', 'Kouan', 'Mech. Eng.', 8); + insert into student values('94766', 'Buril', 'History', 81); + insert into student values('72669', 'Schmitz', 'Elec. Eng.', 126); + insert into student values('41596', 'Abeggl', 'Finance', 51); + insert into student values('55286', 'Kihn', 'Mech. Eng.', 73); + insert into student values('10693', 'Zabary', 'Statistics', 111); + insert into student values('50467', 'Kabir', 'Athletics', 71); + insert into student values('21692', 'Nagal', 'Accounting', 83); + insert into student values('8517', 'Tomkins', 'Pol. Sci.', 100); + insert into student values('28133', 'Evano', 'Civil Eng.', 53); + insert into student values('10033', 'Zelty', 'Mech. Eng.', 60); + insert into student values('60406', 'Sofer', 'Physics', 113); + insert into student values('50703', 'Blanchard', 'Astronomy', 44); + insert into student values('98359', 'Patne', 'Accounting', 105); + insert into student values('23992', 'Thornton', 'Psychology', 58); + insert into student values('31554', 'Fuller', 'Geology', 102); + insert into student values('70807', 'Kreitman', 'Math', 91); + insert into student values('4355', 'Cui', 'English', 127); + insert into student values('8457', 'Christiansen', 'Mech. Eng.', 26); + insert into student values('10904', 'Jerns', 'History', 21); + insert into student values('83836', 'Gifford', 'Pol. Sci.', 64); + insert into student values('72657', 'Hird', 'Comp. Sci.', 129); + insert into student values('46035', 'Kamez', 'Biology', 42); + insert into student values('36881', 'Dalton', 'Biology', 32); + insert into student values('79487', 'Androutsopoulos', 'Languages', 2); + insert into student values('48778', 'Pup', 'Psychology', 107); + insert into student values('64039', 'Aarde', 'Civil Eng.', 120); + insert into student values('42565', 'Hartsk', 'Astronomy', 27); + insert into student values('29665', 'Lykin', 'Languages', 94); + insert into student values('83511', 'Godfrey', 'Finance', 87); + insert into student values('45494', 'Matsush', 'Geology', 105); + insert into student values('12173', 'Thimm', 'English', 60); + insert into student values('16993', 'Akaiw', 'Accounting', 82); + insert into student values('62784', 'Stylian', 'Biology', 65); + insert into student values('23344', 'Fierro-', 'Math', 56); + insert into student values('92417', 'Dubink', 'Comp. Sci.', 92); + insert into student values('86529', 'Leister', 'Accounting', 22); + insert into student values('84654', 'Braña', 'Statistics', 59); + insert into student values('52134', 'Johnson', 'Physics', 9); + insert into student values('90234', 'Sram', 'Biology', 31); + insert into student values('13921', 'Berger', 'Math', 120); + insert into student values('76169', 'Williamson', 'Astronomy', 123); + insert into student values('41832', 'Curl', 'History', 2); + insert into student values('68720', 'Gordon', 'Civil Eng.', 94); + insert into student values('66753', 'Mazzat', 'Math', 17); + insert into student values('13753', 'Hoshi', 'Civil Eng.', 68); + insert into student values('57190', 'Theuniss', 'History', 73); + insert into student values('27804', 'Brunt', 'English', 75); + insert into student values('63449', 'Sellink', 'Accounting', 39); + insert into student values('27017', 'Trur', 'Elec. Eng.', 11); + insert into student values('52291', 'Wolff', 'Mech. Eng.', 39); + insert into student values('80941', 'Sankappanavar', 'Math', 70); + insert into student values('95953', 'Batano', 'Comp. Sci.', 77); + insert into student values('72528', 'Tuki', 'Cybernetics', 76); + insert into student values('61854', 'Roytman', 'Psychology', 128); + insert into student values('91851', 'Tchuri', 'History', 101); + insert into student values('38973', 'Maglioni', 'Comp. Sci.', 56); + insert into student values('83480', 'Whitten', 'Psychology', 9); + insert into student values('13504', 'Zander', 'Astronomy', 90); + insert into student values('19766', 'Simon', 'Biology', 29); + insert into student values('50365', 'Held', 'Mech. Eng.', 121); + insert into student values('43616', 'Tam', 'Athletics', 15); + insert into student values('19917', 'Hayrapetyan', 'Languages', 121); + insert into student values('29849', 'Solar', 'Physics', 90); + insert into student values('85063', 'Chaney', 'Mech. Eng.', 4); + insert into student values('70564', 'Bouguet', 'Psychology', 13); + insert into student values('38121', 'Zuyev', 'English', 98); + insert into student values('14563', 'Haigh', 'Comp. Sci.', 16); + insert into student values('6895', 'Portillo', 'Geology', 4); + insert into student values('3039', 'Brookh', 'Languages', 47); + insert into student values('86969', 'Wicki', 'Cybernetics', 125); + insert into student values('11455', 'Peyse', 'Athletics', 18); + insert into student values('24809', 'Engeldr', 'Psychology', 23); + insert into student values('50414', 'Landau', 'Accounting', 49); + insert into student values('57026', 'Rotom', 'Geology', 44); + insert into student values('69081', 'Stratulat', 'Geology', 59); + insert into student values('7498', 'Charng', 'Physics', 82); + insert into student values('34158', 'Mantzo', 'Astronomy', 127); + insert into student values('15144', 'Lapio', 'Statistics', 110); + insert into student values('88287', 'Geser', 'Athletics', 61); + insert into student values('72006', 'Jawad', 'Comp. Sci.', 114); + insert into student values('49244', 'Chikar', 'Psychology', 49); + insert into student values('14639', 'Sagiv', 'Mech. Eng.', 26); + insert into student values('76604', 'Çivi', 'History', 99); + insert into student values('80113', 'Boudjelo', 'Geology', 10); + insert into student values('18740', 'Williamson', 'Athletics', 16); + insert into student values('69628', 'Bouamama', 'Psychology', 124); + insert into student values('13757', 'Bedny', 'Astronomy', 3); + insert into student values('36513', 'Ugarte', 'Athletics', 99); + insert into student values('97042', 'Bhargava', 'Pol. Sci.', 68); + insert into student values('46260', 'Bloom', 'History', 55); + insert into student values('29871', 'Iwasa', 'Math', 75); + insert into student values('75082', 'Havill', 'Comp. Sci.', 119); + insert into student values('65715', 'Novak', 'Mech. Eng.', 37); + insert into student values('54875', 'Feng', 'Statistics', 83); + insert into student values('99710', 'Savolainen', 'Languages', 126); + insert into student values('36384', 'Sandsj', 'Finance', 62); + insert into student values('51923', 'Peterson', 'Civil Eng.', 128); + insert into student values('37653', 'Campbell', 'Marketing', 64); + insert into student values('61783', 'Guyer', 'Comp. Sci.', 102); + insert into student values('86552', 'Martin', 'Pol. Sci.', 78); + insert into student values('11855', 'Mendelzon', 'Languages', 114); + insert into student values('43016', 'Beekw', 'History', 77); + insert into student values('11237', 'Rokhs', 'Physics', 5); + insert into student values('96710', 'Katehakis', 'Languages', 51); + insert into student values('27044', 'Kota', 'Elec. Eng.', 45); + insert into student values('25046', 'Cotterill', 'Finance', 57); + insert into student values('62487', 'Durrant', 'History', 68); + insert into student values('49759', 'Androutsopoulos', 'Finance', 110); + insert into student values('65101', 'Spengler', 'Civil Eng.', 73); + insert into student values('64550', 'Kubo', 'Statistics', 42); + insert into student values('25143', 'Visr', 'Accounting', 11); + insert into student values('13495', 'Srini', 'Pol. Sci.', 34); + insert into student values('67560', 'Sandberg', 'Geology', 63); + insert into student values('28316', 'Rajan', 'Mech. Eng.', 61); + insert into student values('47379', 'Wakamiya', 'Comp. Sci.', 113); + insert into student values('56003', 'Someren', 'Geology', 39); + insert into student values('32369', 'Kaleta', 'Psychology', 34); + insert into student values('52187', 'Fritsch', 'Math', 98); + insert into student values('91992', 'DAtri', 'Cybernetics', 85); + insert into student values('71543', 'Mizuno', 'Civil Eng.', 61); + insert into student values('1220', 'Hito', 'Geology', 42); + insert into student values('40937', 'Petzo', 'Geology', 115); + insert into student values('14065', 'Starker', 'History', 7); + insert into student values('43495', 'Scher', 'Astronomy', 111); + insert into student values('26494', 'Heers', 'Psychology', 28); + insert into student values('12362', 'Zhanr', 'Civil Eng.', 115); + insert into student values('41675', 'Wheeler', 'Physics', 32); + insert into student values('78314', 'Visr', 'English', 14); + insert into student values('51579', 'Holz', 'Biology', 89); + insert into student values('2178', 'Mingoz', 'Elec. Eng.', 41); + insert into student values('86707', 'Houtsm', 'Marketing', 53); + insert into student values('56849', 'Osaka', 'Accounting', 27); + insert into student values('6712', 'Westphal', 'Math', 60); + insert into student values('17207', 'Holn', 'Astronomy', 57); + insert into student values('81876', 'Arora', 'Biology', 106); + insert into student values('66259', 'Schulman', 'Biology', 67); + insert into student values('75794', 'Hons', 'History', 9); + insert into student values('77003', 'Munro', 'Astronomy', 42); + insert into student values('31101', 'Lhomme', 'Astronomy', 110); + insert into student values('64196', 'Rioult', 'Pol. Sci.', 6); + insert into student values('14628', 'Lehtinen', 'Psychology', 47); + insert into student values('24197', 'Andert', 'Physics', 98); + insert into student values('3576', 'Nakanishi', 'Physics', 97); + insert into student values('45720', 'Yeoh', 'Physics', 118); + insert into student values('15980', 'Ross', 'Athletics', 81); + insert into student values('34569', 'Arndt', 'Accounting', 39); + insert into student values('73492', 'Hwang', 'Mech. Eng.', 23); + insert into student values('44836', 'Lanfr', 'Civil Eng.', 75); + insert into student values('27366', 'Ssu', 'History', 83); + insert into student values('16250', 'Uhrig', 'English', 87); + insert into student values('10267', 'Rzecz', 'Comp. Sci.', 5); + insert into student values('77244', 'Benitez', 'Geology', 37); + insert into student values('7854', 'Someren', 'Pol. Sci.', 113); + insert into student values('1726', 'Matsunami', 'Biology', 94); + insert into student values('8347', 'Wunderli', 'Comp. Sci.', 100); + insert into student values('83573', 'Pavlovico', 'English', 81); + insert into student values('6209', 'Baccou', 'English', 74); + insert into student values('85849', 'Aufr', 'Accounting', 56); + insert into student values('76224', 'Neilson', 'Elec. Eng.', 34); + insert into student values('7043', 'Gryts', 'History', 52); + insert into student values('70235', 'Zle', 'Elec. Eng.', 105); + insert into student values('47824', 'Hardt', 'Astronomy', 94); + insert into student values('58935', 'Kimu', 'Pol. Sci.', 31); + insert into student values('987', 'Kasani', 'Athletics', 0); + insert into student values('46074', 'Fong', 'Finance', 56); + insert into student values('23270', 'Bouras', 'Biology', 109); + insert into student values('42956', 'Ram', 'Physics', 60); + insert into student values('78481', 'Clemme', 'History', 23); + insert into student values('888', 'Frost', 'Geology', 77); + insert into student values('42625', 'Holland', 'Languages', 0); + insert into student values('43211', 'Xylo', 'Astronomy', 48); + insert into student values('43226', 'Shoji', 'Biology', 83); + insert into student values('53172', 'Du', 'Comp. Sci.', 28); + insert into student values('16133', 'Orlet', 'Cybernetics', 43); + insert into student values('75522', 'Yin', 'Biology', 109); + insert into student values('68330', 'Soisalon-Soininen', 'Pol. Sci.', 13); + insert into student values('53225', 'Juan', 'Finance', 92); + insert into student values('67542', 'Jones', 'Civil Eng.', 15); + insert into student values('8860', 'Aminian', 'Finance', 13); + insert into student values('22198', 'Read', 'Languages', 101); + insert into student values('56212', 'Rolland', 'History', 98); + insert into student values('67514', 'Psil', 'Comp. Sci.', 25); + insert into student values('58919', 'Schroeder', 'Languages', 60); + insert into student values('82707', 'Hadzilacos', 'Statistics', 0); + insert into student values('86641', 'Dair', 'Civil Eng.', 101); + insert into student values('94324', 'Willson', 'Geology', 120); + insert into student values('75534', 'Simmel', 'English', 93); + insert into student values('15283', 'Williams', 'Astronomy', 0); + insert into student values('47677', 'Tso', 'Psychology', 108); + insert into student values('94569', 'Yip', 'English', 122); + insert into student values('90814', 'Finance', 'Elec. Eng.', 105); + insert into student values('63310', 'Luan', 'History', 102); + insert into student values('48660', 'Emam', 'Psychology', 77); + insert into student values('35293', 'Cao', 'Languages', 89); + insert into student values('28004', 'Savelieva', 'Finance', 17); + insert into student values('50038', 'Urano', 'Languages', 60); + insert into student values('25940', 'Rosenkrantz', 'Comp. Sci.', 117); + insert into student values('11126', 'Englund', 'Pol. Sci.', 76); + insert into student values('92332', 'Nicol', 'Languages', 34); + insert into student values('18752', 'Schulman', 'Civil Eng.', 102); + insert into student values('61527', 'Shwartz', 'Comp. Sci.', 10); + insert into student values('32119', 'Nagashima', 'Elec. Eng.', 12); + insert into student values('163', 'Bandekar', 'Finance', 49); + insert into student values('32065', 'Tapia', 'Math', 90); + insert into student values('45436', 'Ahmadian', 'Psychology', 101); + insert into student values('58085', 'Bic', 'Pol. Sci.', 28); + insert into student values('17076', 'King', 'Statistics', 42); + insert into student values('17133', 'Kang', 'Civil Eng.', 109); + insert into student values('36791', 'Bomme', 'Elec. Eng.', 84); + insert into student values('25785', 'Knezo', 'Athletics', 66); + insert into student values('11055', 'Arnoux', 'Geology', 121); + insert into student values('96227', 'Vulp', 'Civil Eng.', 88); + insert into student values('67024', 'Aufr', 'Elec. Eng.', 62); + insert into student values('69307', 'Gierl', 'Mech. Eng.', 15); + insert into student values('23439', 'Cai', 'English', 101); + insert into student values('66969', 'Sui', 'Civil Eng.', 74); + insert into student values('22268', 'Dang', 'Astronomy', 78); + insert into student values('41938', 'Jordan', 'History', 93); + insert into student values('17057', 'Swartj', 'Geology', 94); + insert into student values('92693', 'Mattor', 'Athletics', 73); + insert into student values('49503', 'Seaz', 'Finance', 105); + insert into student values('77130', 'Tyler', 'Math', 1); + insert into student values('7861', 'Bollen', 'Pol. Sci.', 122); + insert into student values('51538', 'Ang', 'Geology', 8); + insert into student values('57787', 'Alexandri', 'Marketing', 60); + insert into student values('75116', 'Samar', 'Mech. Eng.', 127); + insert into student values('81984', 'Gowi', 'Mech. Eng.', 48); + insert into student values('68395', 'Jessup', 'History', 110); + insert into student values('11057', 'Robinson', 'Marketing', 120); + insert into student values('20002', 'Fournier', 'Accounting', 54); + insert into student values('95027', 'Bauer', 'Accounting', 45); + insert into student values('7514', 'Rical', 'History', 11); + insert into student values('88358', 'Bongio', 'Astronomy', 29); + insert into student values('34392', 'Lauciu', 'History', 20); + insert into student values('57538', 'Albuquerque', 'Comp. Sci.', 100); + insert into student values('9114', 'Swien', 'Marketing', 119); + insert into student values('8378', 'Stenv', 'English', 47); + insert into student values('51416', 'Shan', 'Psychology', 51); + insert into student values('71389', 'Vegt', 'Mech. Eng.', 60); + insert into student values('16453', 'Kanata', 'Astronomy', 78); + insert into student values('62226', 'Brookh', 'English', 39); + insert into student values('26028', 'Birchler', 'Statistics', 47); + insert into student values('45817', 'Herrmann', 'Psychology', 78); + insert into student values('48469', 'Kolodko', 'Elec. Eng.', 113); + insert into student values('69230', 'Masum', 'Athletics', 119); + insert into student values('99711', 'Deshpande', 'Pol. Sci.', 24); + insert into student values('26695', 'Hac', 'Finance', 104); + insert into student values('2501', 'Leitner', 'Astronomy', 70); + insert into student values('8819', 'Lesaffre', 'Elec. Eng.', 1); + insert into student values('507', 'Recc', 'History', 117); + insert into student values('80698', 'Eynd', 'Languages', 29); + insert into student values('73328', 'Stokic', 'History', 36); + insert into student values('23457', 'Shakhnovich', 'Accounting', 48); + insert into student values('17996', 'Karpist', 'Finance', 103); + insert into student values('75173', 'Basturk', 'Elec. Eng.', 54); + insert into student values('25552', 'Calles', 'Finance', 110); + insert into student values('63612', 'Duxbury', 'Math', 71); + insert into student values('27898', 'Holloway', 'English', 81); + insert into student values('33401', 'Campbell', 'Elec. Eng.', 22); + insert into student values('49280', 'Wilson', 'Psychology', 89); + insert into student values('66279', 'Reynolds', 'Math', 91); + insert into student values('12326', 'Watson', 'Finance', 50); + insert into student values('32772', 'Leventhal', 'English', 54); + insert into student values('25725', 'Steeh', 'Geology', 125); + insert into student values('89571', 'Zubai', 'Comp. Sci.', 88); + insert into student values('99780', 'Bravo', 'English', 100); + insert into student values('91580', 'Cabr', 'Mech. Eng.', 96); + insert into student values('27043', 'Garze', 'Athletics', 119); + insert into student values('96615', 'Anty', 'English', 9); + insert into student values('39892', 'Urano', 'Athletics', 92); + insert into student values('1232', 'Marcus', 'Marketing', 110); + insert into student values('22467', 'Dias', 'Finance', 95); + insert into student values('88884', 'Stasko', 'Elec. Eng.', 14); + insert into student values('96911', 'Jamro', 'English', 13); + insert into student values('46337', 'Nagaraj', 'Cybernetics', 83); + insert into student values('23110', 'Sahani', 'Comp. Sci.', 97); + insert into student values('60762', 'Bernstein', 'Civil Eng.', 120); + insert into student values('65676', 'Aufr', 'Astronomy', 93); + insert into student values('47025', 'Jouny', 'Psychology', 72); + insert into student values('1812', 'Chyr', 'Marketing', 47); + insert into student values('66763', 'Wilks', 'Comp. Sci.', 95); + insert into student values('52741', 'Bernhart', 'Astronomy', 50); + insert into student values('78911', 'Shavel', 'Math', 86); + insert into student values('33206', 'McCormack', 'Civil Eng.', 109); + insert into student values('15030', 'Massour', 'Mech. Eng.', 44); + insert into student values('11377', 'Jr', 'Accounting', 100); + insert into student values('17676', 'Michel', 'Psychology', 43); + insert into student values('52019', 'Engen', 'Athletics', 112); + insert into student values('64013', 'Auriche', 'Elec. Eng.', 107); + insert into student values('45770', 'Beekw', 'Elec. Eng.', 97); + insert into student values('63288', 'Stilla', 'Civil Eng.', 19); + insert into student values('92949', 'Retzel', 'Pol. Sci.', 125); + insert into student values('83871', 'Stylian', 'Languages', 92); + insert into student values('41671', 'Valf', 'Geology', 68); + insert into student values('645', 'Kane', 'Elec. Eng.', 58); + insert into student values('61444', 'Vries', 'Cybernetics', 125); + insert into student values('85534', 'Setiawan', 'Psychology', 19); + insert into student values('35362', 'ONi', 'Statistics', 53); + insert into student values('22417', 'McGuinness', 'Geology', 55); + insert into student values('5961', 'Lavina', 'Geology', 79); + insert into student values('35257', 'Ebou', 'Comp. Sci.', 65); + insert into student values('65299', 'Schwarze', 'Athletics', 57); + insert into student values('18367', 'Goodwin', 'Civil Eng.', 95); + insert into student values('68396', 'Klimasauskas', 'Biology', 72); + insert into student values('35905', 'Lima', 'Athletics', 19); + insert into student values('45650', 'Mateo', 'Marketing', 40); + insert into student values('27662', 'Tabarr', 'Cybernetics', 21); + insert into student values('25077', 'Palomo', 'Cybernetics', 82); + insert into student values('85575', 'Lal', 'Astronomy', 15); + insert into student values('760', 'Liedm', 'Geology', 100); + insert into student values('67583', 'Senn', 'Comp. Sci.', 93); + insert into student values('63886', 'Kuo', 'Biology', 12); + insert into student values('34055', 'Orono', 'Astronomy', 115); + insert into student values('41973', 'Werf', 'Civil Eng.', 115); + insert into student values('30017', 'Mateo', 'History', 96); + insert into student values('37581', 'Arndt', 'Cybernetics', 68); + insert into student values('62373', 'Cheed', 'Accounting', 60); + insert into student values('57160', 'Baer', 'Accounting', 81); + insert into student values('2967', 'Stokic', 'Mech. Eng.', 16); + insert into student values('5144', 'Abdellatif', 'Geology', 55); + insert into student values('5703', 'Yasuda', 'Accounting', 23); + insert into student values('58170', 'Lao', 'Statistics', 119); + insert into student values('53424', 'Lemoine', 'Languages', 10); + insert into student values('17397', 'Caleff', 'Languages', 31); + insert into student values('77588', 'Aguilar', 'Psychology', 111); + insert into student values('92442', 'Satoh', 'Statistics', 81); + insert into student values('42114', 'Mezzar', 'Cybernetics', 98); + insert into student values('53699', 'Cordt', 'Languages', 39); + insert into student values('22258', 'Larion', 'Languages', 3); + insert into student values('2133', 'Nardi', 'Accounting', 60); + insert into student values('73606', 'Sachse', 'Cybernetics', 93); + insert into student values('63040', 'Hochri', 'Astronomy', 63); + insert into student values('74473', 'Ledermann', 'Statistics', 22); + insert into student values('9659', 'Sakhno', 'Cybernetics', 67); + insert into student values('21552', 'Bradshaw', 'Physics', 71); + insert into student values('45002', 'Abraham', 'Psychology', 109); + insert into student values('57213', 'Andrew', 'Math', 64); + insert into student values('56058', 'Fettes', 'Pol. Sci.', 128); + insert into student values('84792', 'Angelo', 'Civil Eng.', 81); + insert into student values('57185', 'ShuQ', 'Psychology', 25); + insert into student values('75510', 'Dumont', 'Physics', 114); + insert into student values('42560', 'Amr', 'Pol. Sci.', 80); + insert into student values('75252', 'Huo', 'Languages', 0); + insert into student values('82402', 'Grant', 'Comp. Sci.', 5); + insert into student values('17339', 'Petzo', 'English', 58); + insert into student values('77148', 'Hinik', 'Pol. Sci.', 35); + insert into student values('11419', 'Geronimo', 'Civil Eng.', 66); + insert into student values('37869', 'Beeu', 'English', 109); + insert into student values('28977', 'Chatterton', 'Psychology', 73); + insert into student values('28989', 'Albinal', 'Astronomy', 107); + insert into student values('92867', 'Khene', 'Languages', 69); + insert into student values('92703', 'Makinen', 'Cybernetics', 29); + insert into student values('17600', 'Peter', 'Languages', 47); + insert into student values('32464', 'Kinney', 'Accounting', 5); + insert into student values('71426', 'Flecker', 'Languages', 38); + insert into student values('8343', 'Shoji', 'History', 108); + insert into student values('41261', 'Hubr', 'Physics', 32); + insert into student values('58469', 'Lutes', 'Athletics', 64); + insert into student values('36303', 'Nair', 'Mech. Eng.', 46); + insert into student values('30164', 'Ende', 'Athletics', 114); + insert into student values('29920', 'Kogure', 'Psychology', 62); + insert into student values('30858', 'Shaffer', 'Physics', 42); + insert into student values('88801', 'Fonseca', 'Athletics', 102); + insert into student values('57780', 'Trezz', 'Athletics', 86); + insert into student values('21246', 'Rais', 'Civil Eng.', 52); + insert into student values('34957', 'Kalogerou', 'Elec. Eng.', 71); + insert into student values('61998', 'Sohn', 'Civil Eng.', 22); + insert into student values('56598', 'Carey', 'Cybernetics', 58); + insert into student values('463', 'Houtsm', 'Physics', 78); + insert into student values('81245', 'Mandviwall', 'Languages', 35); + insert into student values('21100', 'Juchn', 'Physics', 51); + insert into student values('56', 'Kameda', 'Cybernetics', 81); + insert into student values('64121', 'Mansint', 'Math', 115); + insert into student values('20489', 'Shuming', 'History', 2); + insert into student values('10834', 'More', 'Geology', 126); + insert into student values('63289', 'So', 'Psychology', 0); + insert into student values('9953', 'Wilks', 'Biology', 45); + insert into student values('78782', 'Sherman', 'Math', 104); + insert into student values('5399', 'Chun', 'Pol. Sci.', 25); + insert into student values('1367', 'Ignj', 'Math', 69); + insert into student values('30896', 'Rueda', 'Comp. Sci.', 61); + insert into student values('12236', 'Bricker', 'Accounting', 116); + insert into student values('89297', 'Cacciari', 'Astronomy', 70); + insert into student values('52656', 'Phillips', 'Psychology', 6); + insert into student values('18859', 'Rubio', 'English', 21); + insert into student values('17377', 'Pisini', 'English', 67); + insert into student values('50039', 'Kurt', 'Statistics', 126); + insert into student values('78756', 'Dai', 'Athletics', 93); + insert into student values('3833', 'Hayat', 'Biology', 53); + insert into student values('47627', 'Warren', 'Statistics', 54); + insert into student values('65438', 'Saad', 'Comp. Sci.', 13); + insert into student values('8912', 'Brenner', 'Languages', 14); + insert into student values('22912', 'Sendlm', 'Geology', 63); + insert into student values('99289', 'Morales', 'Finance', 80); + insert into student values('63039', 'Wagner', 'Athletics', 69); + insert into student values('20180', 'Reyes', 'Languages', 44); + insert into student values('35687', 'Letouzey', 'Accounting', 58); + insert into student values('28409', 'Hirasawa', 'Geology', 66); + insert into student values('56078', 'Soltys', 'Geology', 70); + insert into student values('48589', 'Martyno', 'Mech. Eng.', 73); + insert into student values('7956', 'Brandsd', 'Statistics', 110); + insert into student values('16347', 'Morimoto', 'Mech. Eng.', 2); + insert into student values('75362', 'Christodoulakis', 'Pol. Sci.', 13); + insert into student values('57242', 'Chatfield', 'Physics', 108); + insert into student values('71085', 'Giannoulis', 'Elec. Eng.', 10); + insert into student values('89132', 'Janssen', 'Geology', 104); + insert into student values('79763', 'Ikeda', 'Comp. Sci.', 123); + insert into student values('41818', 'Wari', 'English', 9); + insert into student values('667', 'Goldman', 'History', 19); + insert into student values('82970', 'Peip', 'Mech. Eng.', 48); + insert into student values('68150', 'Kim', 'Math', 3); + insert into student values('63243', 'Dostal', 'Comp. Sci.', 68); + insert into student values('18338', 'Kangs', 'Physics', 9); + insert into student values('51862', 'Carrillo', 'English', 105); + insert into student values('19203', 'Koch', 'Physics', 88); + insert into student values('78892', 'Kei', 'English', 43); + insert into student values('67657', 'Beeu', 'Languages', 106); + insert into student values('71628', 'Amann', 'Psychology', 60); + insert into student values('43854', 'Gau', 'Astronomy', 47); + insert into student values('123', 'Wingb', 'Civil Eng.', 86); + insert into student values('5943', 'Rubio', 'Math', 28); + insert into student values('56139', 'Schelten', 'Elec. Eng.', 82); + insert into student values('45680', 'Kiltz', 'Cybernetics', 88); + insert into student values('76759', 'Masum', 'Mech. Eng.', 83); + insert into student values('26802', 'Baber', 'Comp. Sci.', 27); + insert into student values('83747', 'Gregory', 'Mech. Eng.', 51); + insert into student values('35935', 'ODono', 'Languages', 3); + insert into student values('8957', 'Walker', 'Athletics', 50); + insert into student values('40481', 'Zettel', 'Civil Eng.', 74); + insert into student values('44352', 'Itoh', 'Athletics', 101); + insert into student values('73072', 'Akroy', 'Comp. Sci.', 48); + insert into student values('96206', 'Koic', 'Math', 53); + insert into student values('8843', 'Papakir', 'Biology', 95); + insert into student values('41299', 'Siebers', 'Civil Eng.', 23); + insert into student values('13403', 'Latour', 'English', 82); + insert into student values('65703', 'Goldman', 'Comp. Sci.', 37); + insert into student values('49205', 'Agraz', 'Pol. Sci.', 82); + insert into student values('22345', 'Wecker', 'Pol. Sci.', 76); + insert into student values('39254', 'Elme', 'Statistics', 103); + insert into student values('80742', 'Lucas', 'Geology', 87); + insert into student values('94726', 'Ailamaki', 'Accounting', 47); + insert into student values('77361', 'Neuhold', 'Physics', 14); + insert into student values('52856', 'Grange', 'Physics', 117); + insert into student values('64138', 'Doran', 'Biology', 99); + insert into student values('89414', 'Feldman', 'Marketing', 34); + insert into student values('22618', 'Voss', 'Pol. Sci.', 101); + insert into student values('98870', 'Kun', 'Cybernetics', 43); + insert into student values('77234', 'Hayrapetyan', 'Geology', 93); + insert into student values('56057', 'Hull', 'Statistics', 112); + insert into student values('32881', 'Bagato', 'Civil Eng.', 77); + insert into student values('92776', 'Oki', 'Psychology', 0); + insert into student values('82301', 'Conti', 'Marketing', 129); + insert into student values('29959', 'Narli', 'Physics', 56); + insert into student values('30182', 'Porr', 'Cybernetics', 71); + insert into student values('96324', 'Sudirm', 'Accounting', 84); + insert into student values('56232', 'Perozzo', 'Geology', 48); + insert into student values('53047', 'Geißl', 'Mech. Eng.', 46); + insert into student values('87015', 'Pottos', 'Accounting', 90); + insert into student values('55329', 'Vyborny', 'History', 15); + insert into student values('21394', 'Patel', 'Finance', 115); + insert into student values('61166', 'Kangs', 'Astronomy', 73); + insert into student values('74530', 'Ranno', 'Physics', 103); + insert into student values('99189', 'Shelest', 'Pol. Sci.', 35); + insert into student values('34170', 'Chan', 'Comp. Sci.', 77); + insert into student values('19220', 'Hayashi', 'History', 77); + insert into student values('73542', 'Dooley', 'Geology', 8); + insert into student values('97590', 'Rammer', 'Comp. Sci.', 17); + insert into student values('15613', 'Umehara', 'Marketing', 41); + insert into student values('78767', 'Marlet', 'Geology', 6); + insert into student values('51553', 'Willis', 'Finance', 121); + insert into student values('9947', 'Bouzeghoub', 'Biology', 38); + insert into student values('95260', 'Yannakakis', 'Statistics', 109); + insert into student values('87268', 'Koenig', 'Languages', 82); + insert into student values('35', 'Glaho', 'History', 110); + insert into student values('99451', 'Bradshaw', 'Statistics', 79); + insert into student values('65396', 'Rossos', 'Marketing', 75); + insert into student values('98140', 'Ratcliff', 'Statistics', 5); + insert into student values('62520', 'Im', 'Astronomy', 105); + insert into student values('40044', 'Jode', 'Mech. Eng.', 108); + insert into student values('78787', 'Rissanen', 'History', 57); + insert into student values('85308', 'Yihn', 'Accounting', 20); + insert into student values('85809', 'Andert', 'Geology', 99); + insert into student values('30021', 'Youseffi', 'History', 90); + insert into student values('54153', 'Kammerer', 'Mech. Eng.', 25); + insert into student values('73387', 'Baccou', 'Cybernetics', 70); + insert into student values('83003', 'Nam', 'Psychology', 30); + insert into student values('13211', 'Diab', 'Civil Eng.', 66); + insert into student values('20803', 'Mercurio', 'History', 129); + insert into student values('6990', 'Hoshi', 'Biology', 25); + insert into student values('2629', 'Goldbu', 'Languages', 4); + insert into student values('83398', 'Quinta', 'History', 58); + insert into student values('6673', 'Bernhart', 'Math', 84); + insert into student values('81294', 'Massey', 'Mech. Eng.', 111); + insert into student values('81566', 'Farr', 'Geology', 68); + insert into student values('94620', 'Sarnak', 'Accounting', 100); + insert into student values('57456', 'Stauf', 'Statistics', 89); + insert into student values('17424', 'Zouao', 'English', 75); + insert into student values('34195', 'Bosnjak', 'Astronomy', 120); + insert into student values('94836', 'Fuller', 'English', 13); + insert into student values('16543', 'Toffoli', 'History', 83); + insert into student values('42843', 'Lin', 'Mech. Eng.', 18); + insert into student values('82868', 'So', 'Athletics', 105); + insert into student values('18499', 'Peter', 'Biology', 21); + insert into student values('50013', 'Milanic', 'Math', 76); + insert into student values('53077', 'Brandt', 'History', 87); + insert into student values('87439', 'Scheffer', 'Comp. Sci.', 93); + insert into student values('40738', 'Dima', 'Finance', 88); + insert into student values('13352', 'Gorsky', 'Athletics', 53); + insert into student values('9605', 'Beeu', 'Pol. Sci.', 61); + insert into student values('53490', 'Reina-', 'Languages', 31); + insert into student values('57925', 'Doeschn', 'Languages', 58); + insert into student values('57055', 'Piou', 'Physics', 0); + insert into student values('21009', 'Geon', 'History', 118); + insert into student values('8140', 'Paddock', 'Comp. Sci.', 53); + insert into student values('37284', 'Benabd', 'Physics', 74); + insert into student values('97023', 'Bulash', 'Psychology', 48); + insert into student values('5920', 'Godfrey', 'Marketing', 125); + insert into student values('91915', 'Cacciari', 'Geology', 126); + insert into student values('25780', 'Ashmi', 'Accounting', 95); + insert into student values('26473', 'Neru', 'Accounting', 75); + insert into student values('43032', 'Tanaka', 'Biology', 84); + insert into student values('30110', 'Humphrey', 'Athletics', 2); + insert into student values('88302', 'Yarmush', 'Marketing', 64); + insert into student values('83002', 'Ladu', 'History', 99); + insert into student values('83136', 'Caporali', 'Comp. Sci.', 61); + insert into student values('61364', 'Bhavs', 'History', 8); + insert into student values('50598', 'She', 'Psychology', 52); + insert into student values('83696', 'Denso', 'Cybernetics', 94); + insert into student values('33791', 'Wood', 'Civil Eng.', 92); + insert into student values('61403', 'Tanno', 'Finance', 44); + insert into student values('66356', 'Xi', 'Elec. Eng.', 44); + insert into student values('12683', 'Sin', 'Accounting', 115); + insert into student values('66106', 'Malagoli', 'Finance', 18); + insert into student values('77729', 'Lui', 'Psychology', 26); + insert into student values('52750', 'Saito', 'Mech. Eng.', 12); + insert into student values('25256', 'Boulah', 'Astronomy', 83); + insert into student values('3640', 'Karniel', 'Athletics', 41); + insert into student values('22325', 'Oevers', 'Statistics', 77); + insert into student values('26730', 'Veselovsky', 'Psychology', 68); + insert into student values('70918', 'Holland', 'English', 23); + insert into student values('91616', 'Hoffman', 'Astronomy', 100); + insert into student values('69285', 'Zaharak', 'Athletics', 36); + insert into student values('42688', 'Palma', 'Biology', 54); + insert into student values('24932', 'Segars', 'Civil Eng.', 78); + insert into student values('33817', 'Vagn', 'Geology', 95); + insert into student values('53185', 'Yuanq', 'Accounting', 25); + insert into student values('85445', 'Bocchi', 'English', 18); + insert into student values('58081', 'Pelletier', 'Comp. Sci.', 100); + insert into student values('75560', 'Tabor', 'History', 129); + insert into student values('80821', 'Morris', 'Math', 102); + insert into student values('19536', 'Bhattacharya', 'Math', 92); + insert into student values('27002', 'Veerar', 'Statistics', 5); + insert into student values('39925', 'Preuss', 'Civil Eng.', 32); + insert into student values('90194', 'Busch', 'Biology', 93); + insert into student values('32056', 'Frost', 'Math', 75); + insert into student values('67310', 'Lindner', 'Elec. Eng.', 21); + insert into student values('88389', 'Henriksen', 'Marketing', 5); + insert into student values('78469', 'Xiong', 'Accounting', 14); + insert into student values('46450', 'Tleu', 'Comp. Sci.', 83); + insert into student values('86651', 'Dave', 'Mech. Eng.', 94); + insert into student values('5824', 'Ocel', 'Cybernetics', 121); + insert into student values('11101', 'Glaho', 'Cybernetics', 119); + insert into student values('57431', 'Holloway', 'Civil Eng.', 2); + insert into student values('96193', 'Yasuda', 'English', 19); + insert into student values('55531', 'Apostolov', 'Physics', 85); + insert into student values('17192', 'Carroll', 'Pol. Sci.', 75); + insert into student values('86075', 'Juchn', 'Biology', 101); + insert into student values('81150', 'Atkins', 'Cybernetics', 99); + insert into student values('44206', 'Gilmour', 'Comp. Sci.', 75); + insert into student values('67222', 'Andrews', 'English', 91); + insert into student values('47126', 'Bakirc', 'Comp. Sci.', 56); + insert into student values('67407', 'Yoneda', 'Biology', 115); + insert into student values('20814', 'Cheed', 'Marketing', 42); + insert into student values('25331', 'Baker', 'Accounting', 68); + insert into student values('83838', 'Durrant', 'Civil Eng.', 2); + insert into student values('66293', 'Gibson', 'English', 98); + insert into student values('56499', 'Zarpell', 'Geology', 82); + insert into student values('32368', 'Ouaz', 'Languages', 64); + insert into student values('75273', 'Jia', 'Civil Eng.', 38); + insert into student values('67436', 'LaCo', 'Physics', 56); + insert into student values('259', 'Bertranp', 'Accounting', 105); + insert into student values('858', 'Kashima', 'Psychology', 1); + insert into student values('94990', 'Lykin', 'English', 120); + insert into student values('89140', 'Fabregas', 'Biology', 94); + insert into student values('55940', 'Subbai', 'Pol. Sci.', 31); + insert into student values('72768', 'Queiroz', 'Mech. Eng.', 50); + insert into student values('96772', 'Rieger', 'Cybernetics', 126); + insert into student values('25068', 'Dickens', 'Civil Eng.', 12); + insert into student values('96988', 'Bussel', 'History', 124); + insert into student values('44816', 'Burman', 'History', 67); + insert into student values('88417', 'Mitsuhashi', 'Athletics', 1); + insert into student values('11441', 'Betho', 'Languages', 36); + insert into student values('4435', 'Labroc', 'Accounting', 11); + insert into student values('70362', 'Sicard', 'English', 85); + insert into student values('54460', 'Martini', 'Math', 100); + insert into student values('7970', 'Bartels', 'Marketing', 56); + insert into student values('73807', 'Gubar', 'Statistics', 95); + insert into student values('19050', 'Erdem', 'Civil Eng.', 58); + insert into student values('67146', 'Scherze', 'Marketing', 121); + insert into student values('23934', 'Koizumi', 'English', 59); + insert into student values('96246', 'Tong', 'Languages', 86); + insert into student values('21225', 'Choll', 'Elec. Eng.', 112); + insert into student values('18554', 'Ramaswamy', 'Psychology', 21); + insert into student values('38013', 'Frolova', 'Marketing', 29); + insert into student values('98019', 'Ciepl', 'Marketing', 74); + insert into student values('40457', 'Bouras', 'History', 116); + insert into student values('94801', 'Chakraborty', 'Civil Eng.', 26); + insert into student values('65038', 'Papakir', 'History', 78); + insert into student values('4383', 'Tallis', 'History', 120); + insert into student values('36402', 'Hippu', 'Athletics', 115); + insert into student values('9514', 'Dickson', 'Geology', 112); + insert into student values('11195', 'Shiang', 'Cybernetics', 62); + insert into student values('31442', 'Bessou', 'Math', 63); + insert into student values('51698', 'Sharpe', 'History', 81); + insert into student values('18809', 'Benson', 'Marketing', 20); + insert into student values('85505', 'Wells', 'History', 123); + insert into student values('64642', 'Murdock', 'Elec. Eng.', 39); + insert into student values('54612', 'Zaraté', 'Elec. Eng.', 103); + insert into student values('5843', 'Deng', 'Athletics', 11); + insert into student values('90779', 'Lenhart', 'Math', 24); + insert into student values('52371', 'Boons', 'Marketing', 108); + insert into student values('51238', 'Kran', 'Civil Eng.', 19); + insert into student values('62124', 'Towsey', 'Physics', 105); + insert into student values('84039', 'Sveti', 'Astronomy', 79); + insert into student values('24201', 'Juol', 'Pol. Sci.', 17); + insert into student values('31993', 'Ueda', 'Comp. Sci.', 6); + insert into student values('39520', 'Lui', 'Astronomy', 43); + insert into student values('59172', 'Badran', 'Astronomy', 19); + insert into student values('21774', 'Moh', 'Physics', 38); + insert into student values('30957', 'Beaudry', 'Cybernetics', 38); + insert into student values('54610', 'Tam', 'Languages', 5); + insert into student values('72358', 'Tomason', 'Math', 92); + insert into student values('83204', 'Tauber', 'Accounting', 0); + insert into student values('76246', 'Pettersen', 'Comp. Sci.', 81); + insert into student values('80047', 'Clemme', 'Astronomy', 24); + insert into student values('38545', 'Fok', 'English', 122); + insert into student values('8986', 'Maesf', 'Pol. Sci.', 115); + insert into student values('89393', 'Fischbach', 'English', 21); + insert into student values('37103', 'Walker', 'Athletics', 19); + insert into student values('76743', 'Rani', 'Comp. Sci.', 16); + insert into student values('81396', 'Cordt', 'Finance', 7); + insert into student values('46066', 'Hirasawa', 'Mech. Eng.', 92); + insert into student values('6729', 'Heilprin', 'Marketing', 39); + insert into student values('90372', 'Rho', 'Biology', 101); + insert into student values('28352', 'Mai', 'Pol. Sci.', 64); + insert into student values('9408', 'Oberholzer', 'Athletics', 84); + insert into student values('15517', 'Anis', 'Geology', 29); + insert into student values('61402', 'Maity', 'Mech. Eng.', 62); + insert into student values('49813', 'Al-Hu', 'History', 93); + insert into student values('72186', 'Pace', 'Marketing', 106); + insert into student values('31250', 'Kawasaki', 'Athletics', 31); + insert into student values('51768', 'Noga', 'Athletics', 78); + insert into student values('18636', 'Mori', 'Statistics', 23); + insert into student values('88993', 'Palaniswami', 'Math', 51); + insert into student values('72177', 'Eller', 'Mech. Eng.', 30); + insert into student values('99760', 'Sakamoto', 'Athletics', 75); + insert into student values('80227', 'Tsuji', 'Civil Eng.', 47); + insert into student values('76270', 'Qian', 'History', 128); + insert into student values('42019', 'Koch', 'Finance', 53); + insert into student values('15726', 'Neuhold', 'Finance', 27); + insert into student values('97694', 'ODono', 'Biology', 15); + insert into student values('16849', 'Kantors', 'Geology', 117); + insert into student values('11262', 'Foels', 'Marketing', 117); + insert into student values('64222', 'Namer', 'Pol. Sci.', 23); + insert into student values('91799', 'Steinmetz', 'Civil Eng.', 96); + insert into student values('10727', 'Allard', 'Physics', 27); + insert into student values('64169', 'Lucas', 'Civil Eng.', 27); + insert into student values('81031', 'Nanda', 'Psychology', 56); + insert into student values('18941', 'Denecker', 'History', 46); + insert into student values('46981', 'Yalk', 'Statistics', 117); + insert into takes values('65901', '401', '1', 'Fall', 2003, 'C-'); + insert into takes values('24932', '802', '1', 'Spring', 2003, 'B-'); + insert into takes values('61332', '200', '1', 'Spring', 2007, 'A-'); + insert into takes values('73492', '760', '1', 'Spring', 2004, 'A '); + insert into takes values('65715', '843', '1', 'Fall', 2010, 'B+'); + insert into takes values('58300', '408', '1', 'Spring', 2007, 'B-'); + insert into takes values('760', '571', '1', 'Spring', 2004, 'B '); + insert into takes values('69730', '313', '1', 'Fall', 2010, 'A '); + insert into takes values('94836', '626', '1', 'Fall', 2006, 'C+'); + insert into takes values('49391', '603', '1', 'Fall', 2003, 'B-'); + insert into takes values('48850', '457', '1', 'Spring', 2001, 'C-'); + insert into takes values('68999', '169', '1', 'Spring', 2007, 'A+'); + insert into takes values('53469', '169', '1', 'Spring', 2007, 'C '); + insert into takes values('74016', '747', '1', 'Spring', 2004, 'A-'); + insert into takes values('49073', '496', '1', 'Fall', 2001, 'C-'); + insert into takes values('52866', '795', '1', 'Spring', 2004, 'B '); + insert into takes values('83314', '960', '1', 'Fall', 2009, 'A '); + insert into takes values('70359', '599', '1', 'Spring', 2003, 'A-'); + insert into takes values('88993', '313', '1', 'Fall', 2010, 'C+'); + insert into takes values('97042', '192', '1', 'Fall', 2002, 'A-'); + insert into takes values('33460', '482', '1', 'Fall', 2005, 'C+'); + insert into takes values('81207', '239', '1', 'Fall', 2006, 'A+'); + insert into takes values('68010', '972', '1', 'Spring', 2009, 'A+'); + insert into takes values('15517', '489', '1', 'Fall', 2007, 'A+'); + insert into takes values('8957', '561', '1', 'Fall', 2006, 'C '); + insert into takes values('8986', '927', '1', 'Fall', 2002, 'A '); + insert into takes values('7956', '692', '1', 'Spring', 2010, 'C '); + insert into takes values('792', '972', '1', 'Spring', 2009, 'A-'); + insert into takes values('84189', '791', '1', 'Spring', 2006, 'B-'); + insert into takes values('92659', '527', '1', 'Fall', 2004, 'C '); + insert into takes values('22198', '612', '1', 'Fall', 2007, 'A-'); + insert into takes values('8957', '696', '1', 'Spring', 2002, 'B '); + insert into takes values('36244', '401', '1', 'Fall', 2003, 'A-'); + insert into takes values('97658', '545', '1', 'Fall', 2001, 'A '); + insert into takes values('89104', '352', '1', 'Spring', 2006, 'A+'); + insert into takes values('5393', '791', '1', 'Spring', 2006, 'A+'); + insert into takes values('80248', '793', '1', 'Spring', 2002, 'B-'); + insert into takes values('30222', '962', '1', 'Spring', 2008, 'B-'); + insert into takes values('64155', '421', '1', 'Fall', 2004, 'A+'); + insert into takes values('99660', '242', '1', 'Fall', 2009, 'A '); + insert into takes values('8517', '802', '1', 'Spring', 2003, 'B-'); + insert into takes values('31820', '468', '2', 'Fall', 2007, 'B-'); + insert into takes values('46769', '334', '1', 'Fall', 2009, 'C-'); + insert into takes values('43505', '867', '1', 'Fall', 2006, 'A+'); + insert into takes values('79589', '158', '2', 'Spring', 2008, 'A '); + insert into takes values('70235', '489', '1', 'Fall', 2007, 'C '); + insert into takes values('11126', '304', '1', 'Fall', 2009, 'B+'); + insert into takes values('27366', '443', '1', 'Spring', 2010, 'A-'); + insert into takes values('3576', '338', '1', 'Spring', 2007, 'A-'); + insert into takes values('3127', '843', '1', 'Fall', 2010, 'B '); + insert into takes values('39619', '362', '2', 'Fall', 2006, 'C+'); + insert into takes values('33651', '200', '1', 'Spring', 2007, 'C-'); + insert into takes values('62520', '702', '1', 'Spring', 2001, 'C-'); + insert into takes values('86573', '486', '1', 'Fall', 2009, 'B '); + insert into takes values('792', '663', '1', 'Spring', 2005, 'B-'); + insert into takes values('27528', '313', '1', 'Fall', 2010, 'B '); + insert into takes values('52945', '626', '1', 'Fall', 2006, 'C+'); + insert into takes values('37103', '581', '1', 'Spring', 2005, 'C+'); + insert into takes values('11126', '401', '1', 'Fall', 2003, 'B-'); + insert into takes values('62152', '105', '1', 'Fall', 2009, 'C+'); + insert into takes values('3127', '791', '1', 'Spring', 2006, 'B '); + insert into takes values('2848', '445', '1', 'Spring', 2001, 'A '); + insert into takes values('20985', '304', '1', 'Fall', 2009, 'A+'); + insert into takes values('69628', '426', '1', 'Spring', 2006, 'B '); + insert into takes values('78572', '457', '1', 'Spring', 2001, 'C '); + insert into takes values('60366', '426', '1', 'Spring', 2006, 'A '); + insert into takes values('52741', '237', '2', 'Fall', 2009, 'B+'); + insert into takes values('72501', '400', '2', 'Fall', 2003, 'B-'); + insert into takes values('5250', '169', '1', 'Spring', 2007, 'C-'); + insert into takes values('38013', '802', '1', 'Spring', 2003, 'C '); + insert into takes values('88417', '362', '3', 'Spring', 2008, 'A-'); + insert into takes values('2286', '843', '1', 'Fall', 2010, 'A '); + insert into takes values('15083', '237', '1', 'Spring', 2008, 'B-'); + insert into takes values('336', '426', '1', 'Spring', 2006, 'A-'); + insert into takes values('64934', '169', '2', 'Fall', 2002, 'A-'); + insert into takes values('499', '692', '1', 'Spring', 2010, 'C-'); + insert into takes values('56598', '927', '1', 'Fall', 2002, 'C-'); + insert into takes values('46074', '376', '1', 'Fall', 2006, 'C-'); + insert into takes values('47627', '258', '1', 'Fall', 2007, 'A-'); + insert into takes values('85063', '581', '1', 'Spring', 2005, 'A+'); + insert into takes values('43032', '401', '1', 'Fall', 2003, 'B-'); + insert into takes values('34055', '962', '1', 'Spring', 2008, 'C '); + insert into takes values('16250', '200', '1', 'Spring', 2007, 'B+'); + insert into takes values('16907', '137', '1', 'Spring', 2002, 'A '); + insert into takes values('66356', '571', '1', 'Spring', 2004, 'B+'); + insert into takes values('3335', '679', '1', 'Spring', 2010, 'C '); + insert into takes values('72501', '959', '1', 'Fall', 2006, 'C-'); + insert into takes values('18583', '642', '1', 'Fall', 2004, 'B+'); + insert into takes values('53152', '408', '2', 'Spring', 2003, 'C-'); + insert into takes values('17924', '867', '2', 'Fall', 2010, 'A+'); + insert into takes values('77729', '972', '1', 'Spring', 2009, 'B+'); + insert into takes values('4248', '571', '1', 'Spring', 2004, 'C '); + insert into takes values('46106', '468', '1', 'Fall', 2005, 'C-'); + insert into takes values('14621', '338', '2', 'Spring', 2006, 'C-'); + insert into takes values('14829', '376', '1', 'Fall', 2006, 'C+'); + insert into takes values('50658', '421', '1', 'Fall', 2004, 'B '); + insert into takes values('44706', '875', '1', 'Spring', 2005, 'C-'); + insert into takes values('92949', '960', '1', 'Fall', 2009, 'C '); + insert into takes values('66969', '735', '2', 'Spring', 2010, 'C-'); + insert into takes values('97658', '852', '1', 'Spring', 2008, 'B-'); + insert into takes values('17607', '527', '1', 'Fall', 2004, 'B+'); + insert into takes values('52876', '445', '1', 'Spring', 2001, 'A '); + insert into takes values('56058', '366', '1', 'Fall', 2005, 'B-'); + insert into takes values('15883', '571', '1', 'Spring', 2004, 'C '); + insert into takes values('99271', '169', '2', 'Fall', 2002, 'C-'); + insert into takes values('67560', '443', '2', 'Spring', 2002, 'B '); + insert into takes values('85063', '482', '1', 'Fall', 2005, 'C '); + insert into takes values('7287', '642', '1', 'Fall', 2004, 'B-'); + insert into takes values('35462', '962', '1', 'Spring', 2008, 'C '); + insert into takes values('49450', '949', '1', 'Fall', 2007, 'A-'); + insert into takes values('78922', '489', '1', 'Fall', 2007, 'B+'); + insert into takes values('94569', '960', '1', 'Fall', 2009, 'A+'); + insert into takes values('1018', '338', '1', 'Spring', 2007, 'A '); + insert into takes values('32245', '962', '1', 'Spring', 2008, 'C '); + insert into takes values('51093', '415', '1', 'Fall', 2010, 'C-'); + insert into takes values('29390', '443', '1', 'Spring', 2010, 'B+'); + insert into takes values('47379', '960', '2', 'Fall', 2006, 'A '); + insert into takes values('10204', '169', '1', 'Spring', 2007, 'A-'); + insert into takes values('90381', '158', '1', 'Fall', 2008, 'C-'); + insert into takes values('36926', '642', '1', 'Fall', 2004, 'B '); + insert into takes values('70688', '274', '1', 'Fall', 2002, 'A '); + insert into takes values('54728', '949', '1', 'Fall', 2007, 'C '); + insert into takes values('15070', '304', '1', 'Fall', 2009, 'C-'); + insert into takes values('52741', '489', '1', 'Fall', 2007, 'A '); + insert into takes values('79469', '400', '2', 'Fall', 2003, 'C+'); + insert into takes values('79446', '808', '1', 'Fall', 2003, 'A+'); + insert into takes values('44551', '476', '1', 'Fall', 2010, 'C-'); + insert into takes values('83622', '408', '1', 'Spring', 2007, 'A+'); + insert into takes values('64196', '581', '1', 'Spring', 2005, 'A '); + insert into takes values('88140', '345', '1', 'Spring', 2008, 'C-'); + insert into takes values('28361', '338', '2', 'Spring', 2006, 'A+'); + insert into takes values('51008', '476', '1', 'Fall', 2010, 'B+'); + insert into takes values('1110', '747', '1', 'Spring', 2004, 'B '); + insert into takes values('96134', '696', '1', 'Spring', 2002, 'C-'); + insert into takes values('98830', '408', '1', 'Spring', 2007, 'A '); + insert into takes values('14874', '362', '2', 'Fall', 2006, 'C '); + insert into takes values('23270', '748', '1', 'Fall', 2003, 'C-'); + insert into takes values('993', '972', '1', 'Spring', 2009, 'B-'); + insert into takes values('19791', '334', '1', 'Fall', 2009, 'A-'); + insert into takes values('57083', '401', '1', 'Fall', 2003, 'B '); + insert into takes values('72528', '476', '1', 'Fall', 2010, 'A+'); + insert into takes values('95953', '468', '1', 'Fall', 2005, 'C+'); + insert into takes values('35357', '962', '1', 'Spring', 2008, 'B-'); + insert into takes values('62520', '802', '1', 'Spring', 2003, 'B '); + insert into takes values('50583', '239', '1', 'Fall', 2006, 'B '); + insert into takes values('93354', '345', '1', 'Spring', 2008, 'A '); + insert into takes values('55857', '663', '1', 'Spring', 2005, 'B+'); + insert into takes values('53048', '169', '1', 'Spring', 2007, 'B-'); + insert into takes values('89414', '408', '1', 'Spring', 2007, 'B-'); + insert into takes values('99710', '169', '2', 'Fall', 2002, 'A+'); + insert into takes values('95852', '663', '1', 'Spring', 2005, 'C-'); + insert into takes values('84702', '949', '1', 'Fall', 2007, 'C '); + insert into takes values('82918', '258', '1', 'Fall', 2007, 'C-'); + insert into takes values('70452', '400', '1', 'Spring', 2007, 'C '); + insert into takes values('38271', '486', '1', 'Fall', 2009, 'C+'); + insert into takes values('67425', '959', '1', 'Fall', 2006, 'C '); + insert into takes values('78892', '960', '2', 'Fall', 2006, 'C+'); + insert into takes values('79205', '496', '1', 'Fall', 2001, 'A-'); + insert into takes values('42298', '959', '1', 'Fall', 2006, 'A '); + insert into takes values('83836', '527', '1', 'Fall', 2004, 'B-'); + insert into takes values('56598', '192', '1', 'Fall', 2002, 'A+'); + insert into takes values('34322', '242', '1', 'Fall', 2009, 'B+'); + insert into takes values('56755', '408', '2', 'Spring', 2003, 'C+'); + insert into takes values('68248', '629', '1', 'Spring', 2003, 'A-'); + insert into takes values('36845', '338', '1', 'Spring', 2007, 'C+'); + insert into takes values('48660', '679', '1', 'Spring', 2010, 'A-'); + insert into takes values('91799', '105', '1', 'Fall', 2009, 'C-'); + insert into takes values('89551', '274', '1', 'Fall', 2002, 'B+'); + insert into takes values('87965', '694', '1', 'Fall', 2002, 'C '); + insert into takes values('12683', '991', '1', 'Spring', 2008, 'C-'); + insert into takes values('87439', '443', '1', 'Spring', 2010, 'A '); + insert into takes values('16467', '352', '1', 'Spring', 2006, 'C-'); + insert into takes values('49701', '692', '1', 'Spring', 2010, 'B-'); + insert into takes values('37350', '400', '2', 'Fall', 2003, 'B+'); + insert into takes values('42843', '274', '1', 'Fall', 2002, 'C '); + insert into takes values('94766', '237', '2', 'Fall', 2009, 'B '); + insert into takes values('65676', '795', '1', 'Spring', 2004, 'A '); + insert into takes values('27094', '304', '1', 'Fall', 2009, 'A+'); + insert into takes values('12214', '972', '1', 'Spring', 2009, 'C-'); + insert into takes values('81566', '169', '1', 'Spring', 2007, 'C+'); + insert into takes values('37101', '974', '1', 'Fall', 2003, 'A '); + insert into takes values('18709', '362', '1', 'Fall', 2005, 'A+'); + insert into takes values('86934', '366', '1', 'Fall', 2005, 'C-'); + insert into takes values('99660', '239', '1', 'Fall', 2006, 'A '); + insert into takes values('41890', '599', '1', 'Spring', 2003, 'A+'); + insert into takes values('83592', '591', '1', 'Spring', 2005, 'B+'); + insert into takes values('37219', '626', '1', 'Fall', 2006, 'B '); + insert into takes values('88302', '400', '2', 'Fall', 2003, 'A-'); + insert into takes values('75040', '694', '1', 'Fall', 2002, 'C+'); + insert into takes values('36052', '237', '1', 'Spring', 2008, 'A-'); + insert into takes values('72186', '443', '1', 'Spring', 2010, 'A+'); + insert into takes values('76759', '476', '1', 'Fall', 2010, 'C+'); + insert into takes values('27804', '349', '1', 'Spring', 2008, 'B-'); + insert into takes values('99189', '400', '1', 'Spring', 2007, 'A '); + insert into takes values('77898', '334', '1', 'Fall', 2009, 'C+'); + insert into takes values('47001', '795', '1', 'Spring', 2004, 'C '); + insert into takes values('3639', '421', '1', 'Fall', 2004, 'B+'); + insert into takes values('80912', '864', '1', 'Spring', 2006, 'A '); + insert into takes values('52371', '974', '1', 'Fall', 2003, 'C-'); + insert into takes values('99719', '137', '1', 'Spring', 2002, 'B-'); + insert into takes values('68242', '927', '1', 'Fall', 2002, 'C '); + insert into takes values('3127', '237', '1', 'Spring', 2008, 'B+'); + insert into takes values('19536', '400', '1', 'Spring', 2007, 'A-'); + insert into takes values('97694', '748', '1', 'Fall', 2003, 'A+'); + insert into takes values('99463', '493', '1', 'Spring', 2010, 'A '); + insert into takes values('96988', '457', '1', 'Spring', 2001, 'C-'); + insert into takes values('59290', '338', '1', 'Spring', 2007, 'B-'); + insert into takes values('60249', '258', '1', 'Fall', 2007, 'B-'); + insert into takes values('41751', '972', '1', 'Spring', 2009, 'B+'); + insert into takes values('62832', '974', '1', 'Fall', 2003, 'A '); + insert into takes values('22198', '927', '1', 'Fall', 2002, 'B+'); + insert into takes values('35', '735', '1', 'Spring', 2003, 'B '); + insert into takes values('4034', '612', '1', 'Fall', 2007, 'B+'); + insert into takes values('59046', '274', '1', 'Fall', 2002, 'C '); + insert into takes values('67436', '489', '1', 'Fall', 2007, 'B+'); + insert into takes values('79772', '748', '1', 'Fall', 2003, 'A '); + insert into takes values('60224', '626', '1', 'Fall', 2006, 'B-'); + insert into takes values('32376', '192', '1', 'Fall', 2002, 'A+'); + insert into takes values('1232', '304', '1', 'Fall', 2009, 'A+'); + insert into takes values('19203', '559', '1', 'Fall', 2002, 'B+'); + insert into takes values('51203', '274', '1', 'Fall', 2002, 'B-'); + insert into takes values('42960', '476', '1', 'Fall', 2010, 'B-'); + insert into takes values('96134', '400', '1', 'Spring', 2007, 'B '); + insert into takes values('99073', '893', '1', 'Fall', 2007, 'B '); + insert into takes values('66969', '349', '1', 'Spring', 2008, 'B+'); + insert into takes values('99271', '482', '1', 'Fall', 2005, 'C-'); + insert into takes values('1533', '468', '1', 'Fall', 2005, 'C+'); + insert into takes values('55940', '704', '1', 'Spring', 2008, 'B-'); + insert into takes values('43432', '137', '1', 'Spring', 2002, 'B+'); + insert into takes values('71085', '105', '2', 'Fall', 2002, 'C-'); + insert into takes values('4645', '401', '1', 'Fall', 2003, 'B '); + insert into takes values('55915', '599', '1', 'Spring', 2003, 'C '); + insert into takes values('34569', '408', '2', 'Spring', 2003, 'C+'); + insert into takes values('15070', '415', '1', 'Fall', 2010, 'C-'); + insert into takes values('9933', '457', '1', 'Spring', 2001, 'A+'); + insert into takes values('35362', '362', '1', 'Fall', 2005, 'C-'); + insert into takes values('22417', '426', '1', 'Spring', 2006, 'A-'); + insert into takes values('6287', '349', '1', 'Spring', 2008, 'C-'); + insert into takes values('39552', '629', '1', 'Spring', 2003, 'B '); + insert into takes values('17997', '692', '1', 'Spring', 2010, 'B+'); + insert into takes values('22912', '864', '1', 'Spring', 2006, 'C '); + insert into takes values('15487', '626', '1', 'Fall', 2006, 'B-'); + insert into takes values('35362', '559', '1', 'Fall', 2002, 'B+'); + insert into takes values('67810', '748', '1', 'Fall', 2003, 'A '); + insert into takes values('29091', '476', '1', 'Fall', 2010, 'A-'); + insert into takes values('45494', '960', '2', 'Fall', 2006, 'C-'); + insert into takes values('63582', '349', '1', 'Spring', 2008, 'A+'); + insert into takes values('65688', '791', '1', 'Spring', 2006, 'B-'); + insert into takes values('10838', '663', '1', 'Spring', 2005, 'C+'); + insert into takes values('92703', '571', '1', 'Spring', 2004, 'B-'); + insert into takes values('8860', '169', '1', 'Spring', 2007, 'B-'); + insert into takes values('38271', '867', '1', 'Fall', 2006, 'B-'); + insert into takes values('54610', '663', '1', 'Spring', 2005, 'C '); + insert into takes values('64914', '105', '2', 'Fall', 2002, 'B+'); + insert into takes values('17128', '704', '1', 'Spring', 2008, 'C+'); + insert into takes values('80420', '408', '2', 'Spring', 2003, 'A-'); + insert into takes values('32065', '313', '1', 'Fall', 2010, 'C '); + insert into takes values('74070', '476', '1', 'Fall', 2010, 'B+'); + insert into takes values('58085', '408', '1', 'Spring', 2007, 'A+'); + insert into takes values('36513', '158', '1', 'Fall', 2008, 'C-'); + insert into takes values('11422', '468', '1', 'Fall', 2005, 'A-'); + insert into takes values('99348', '158', '2', 'Spring', 2008, 'A+'); + insert into takes values('45200', '795', '1', 'Spring', 2004, 'C+'); + insert into takes values('67793', '258', '1', 'Fall', 2007, 'A+'); + insert into takes values('5703', '599', '1', 'Spring', 2003, 'C-'); + insert into takes values('83573', '493', '1', 'Spring', 2010, 'B-'); + insert into takes values('48776', '692', '1', 'Spring', 2010, 'C-'); + insert into takes values('50039', '192', '1', 'Fall', 2002, 'A-'); + insert into takes values('44584', '274', '1', 'Fall', 2002, 'C '); + insert into takes values('13826', '991', '1', 'Spring', 2008, 'A+'); + insert into takes values('14182', '192', '1', 'Fall', 2002, 'B+'); + insert into takes values('64642', '694', '1', 'Fall', 2002, 'A '); + insert into takes values('71628', '242', '1', 'Fall', 2009, 'B-'); + insert into takes values('12362', '270', '1', 'Spring', 2010, 'C '); + insert into takes values('65753', '867', '2', 'Fall', 2010, 'A-'); + insert into takes values('90663', '242', '1', 'Fall', 2009, 'C+'); + insert into takes values('13826', '663', '1', 'Spring', 2005, 'A-'); + insert into takes values('13506', '242', '1', 'Fall', 2009, 'B+'); + insert into takes values('31442', '482', '1', 'Fall', 2005, 'B+'); + insert into takes values('39157', '457', '1', 'Spring', 2001, 'B+'); + insert into takes values('82688', '200', '2', 'Fall', 2002, 'B+'); + insert into takes values('66813', '461', '1', 'Fall', 2002, 'A+'); + insert into takes values('36126', '793', '1', 'Spring', 2002, 'A '); + insert into takes values('2967', '991', '1', 'Spring', 2008, 'B '); + insert into takes values('91569', '962', '1', 'Spring', 2008, 'B+'); + insert into takes values('78581', '338', '1', 'Spring', 2007, 'B '); + insert into takes values('68779', '694', '1', 'Fall', 2002, 'A '); + insert into takes values('10904', '927', '1', 'Fall', 2002, 'B+'); + insert into takes values('60984', '626', '1', 'Fall', 2006, 'B+'); + insert into takes values('35905', '200', '1', 'Spring', 2007, 'C-'); + insert into takes values('90779', '747', '1', 'Spring', 2004, 'A-'); + insert into takes values('17507', '169', '2', 'Fall', 2002, 'B+'); + insert into takes values('46260', '105', '1', 'Fall', 2009, 'C+'); + insert into takes values('38902', '415', '1', 'Fall', 2010, 'C-'); + insert into takes values('38271', '927', '1', 'Fall', 2002, 'C-'); + insert into takes values('89059', '239', '1', 'Fall', 2006, 'A '); + insert into takes values('33546', '864', '1', 'Spring', 2006, 'B-'); + insert into takes values('89551', '663', '1', 'Spring', 2005, 'A-'); + insert into takes values('61003', '949', '1', 'Fall', 2007, 'B '); + insert into takes values('62373', '304', '1', 'Fall', 2009, 'C '); + insert into takes values('94730', '571', '1', 'Spring', 2004, 'C+'); + insert into takes values('73807', '313', '1', 'Fall', 2010, 'C '); + insert into takes values('70310', '468', '2', 'Fall', 2007, 'B '); + insert into takes values('4438', '962', '1', 'Spring', 2008, 'C-'); + insert into takes values('16035', '802', '1', 'Spring', 2003, 'A-'); + insert into takes values('69471', '959', '1', 'Fall', 2006, 'C-'); + insert into takes values('72528', '426', '1', 'Spring', 2006, 'A-'); + insert into takes values('85234', '366', '1', 'Fall', 2005, 'A+'); + insert into takes values('16528', '105', '1', 'Fall', 2009, 'A+'); + insert into takes values('65190', '408', '1', 'Spring', 2007, 'A+'); + insert into takes values('72657', '352', '1', 'Spring', 2006, 'B '); + insert into takes values('4015', '313', '1', 'Fall', 2010, 'C '); + insert into takes values('44706', '702', '1', 'Spring', 2001, 'C-'); + insert into takes values('54728', '496', '1', 'Fall', 2001, 'B '); + insert into takes values('10076', '962', '1', 'Spring', 2008, 'C+'); + insert into takes values('163', '169', '1', 'Spring', 2007, 'A '); + insert into takes values('98870', '867', '2', 'Fall', 2010, 'B+'); + insert into takes values('83003', '561', '1', 'Fall', 2006, 'C-'); + insert into takes values('4182', '457', '1', 'Spring', 2001, 'B '); + insert into takes values('51923', '468', '2', 'Fall', 2007, 'C '); + insert into takes values('94836', '376', '1', 'Fall', 2006, 'C '); + insert into takes values('76250', '158', '1', 'Fall', 2008, 'B '); + insert into takes values('12683', '604', '1', 'Spring', 2009, 'B '); + insert into takes values('38668', '791', '1', 'Spring', 2006, 'A '); + insert into takes values('16133', '962', '1', 'Spring', 2008, 'C '); + insert into takes values('13741', '843', '1', 'Fall', 2010, 'A '); + insert into takes values('37284', '559', '1', 'Fall', 2002, 'A-'); + insert into takes values('1087', '461', '1', 'Fall', 2002, 'B '); + insert into takes values('88389', '893', '1', 'Fall', 2007, 'C-'); + insert into takes values('13921', '158', '1', 'Fall', 2008, 'C-'); + insert into takes values('11095', '242', '1', 'Fall', 2009, 'C-'); + insert into takes values('24116', '105', '2', 'Fall', 2002, 'A '); + insert into takes values('63560', '376', '1', 'Fall', 2006, 'C-'); + insert into takes values('69225', '808', '1', 'Fall', 2003, 'B+'); + insert into takes values('75513', '959', '1', 'Fall', 2006, 'C+'); + insert into takes values('81789', '893', '1', 'Fall', 2007, 'A '); + insert into takes values('78454', '158', '2', 'Spring', 2008, 'C '); + insert into takes values('48471', '461', '1', 'Fall', 2002, 'C '); + insert into takes values('32483', '591', '1', 'Spring', 2005, 'A+'); + insert into takes values('8022', '426', '1', 'Spring', 2006, 'C-'); + insert into takes values('66969', '362', '3', 'Spring', 2008, 'C-'); + insert into takes values('14581', '808', '1', 'Fall', 2003, 'B '); + insert into takes values('31302', '489', '1', 'Fall', 2007, 'A '); + insert into takes values('4015', '927', '1', 'Fall', 2002, 'A-'); + insert into takes values('36926', '105', '1', 'Fall', 2009, 'A-'); + insert into takes values('70099', '603', '1', 'Fall', 2003, 'A '); + insert into takes values('76049', '599', '1', 'Spring', 2003, 'A-'); + insert into takes values('76246', '319', '1', 'Spring', 2003, 'C '); + insert into takes values('40738', '362', '3', 'Spring', 2008, 'C-'); + insert into takes values('50719', '158', '2', 'Spring', 2008, 'C '); + insert into takes values('94815', '401', '1', 'Fall', 2003, 'A '); + insert into takes values('25942', '489', '1', 'Fall', 2007, 'C+'); + insert into takes values('9947', '603', '1', 'Fall', 2003, 'A '); + insert into takes values('39157', '362', '2', 'Fall', 2006, 'B+'); + insert into takes values('33759', '760', '1', 'Spring', 2004, 'B+'); + insert into takes values('90009', '631', '1', 'Spring', 2007, 'C-'); + insert into takes values('49503', '795', '1', 'Spring', 2004, 'C-'); + insert into takes values('73602', '461', '1', 'Fall', 2002, 'B '); + insert into takes values('85211', '352', '1', 'Spring', 2006, 'C+'); + insert into takes values('1533', '338', '2', 'Spring', 2006, 'A+'); + insert into takes values('3651', '401', '1', 'Fall', 2003, 'C-'); + insert into takes values('20378', '415', '1', 'Fall', 2010, 'B+'); + insert into takes values('61783', '972', '1', 'Spring', 2009, 'C '); + insert into takes values('40992', '496', '1', 'Fall', 2001, 'C+'); + insert into takes values('43432', '642', '1', 'Fall', 2004, 'B-'); + insert into takes values('58846', '626', '1', 'Fall', 2006, 'A+'); + insert into takes values('9659', '692', '1', 'Spring', 2010, 'B '); + insert into takes values('63645', '735', '2', 'Spring', 2010, 'A '); + insert into takes values('60267', '626', '1', 'Fall', 2006, 'B+'); + insert into takes values('46762', '169', '1', 'Spring', 2007, 'C-'); + insert into takes values('89571', '581', '1', 'Spring', 2005, 'C+'); + insert into takes values('39115', '319', '1', 'Spring', 2003, 'C-'); + insert into takes values('13290', '793', '1', 'Spring', 2002, 'B '); + insert into takes values('38476', '274', '1', 'Fall', 2002, 'B '); + insert into takes values('58172', '493', '1', 'Spring', 2010, 'B+'); + insert into takes values('22268', '158', '2', 'Spring', 2008, 'A '); + insert into takes values('44352', '852', '1', 'Spring', 2008, 'C-'); + insert into takes values('69853', '461', '1', 'Fall', 2002, 'C '); + insert into takes values('84410', '599', '1', 'Spring', 2003, 'C+'); + insert into takes values('89196', '408', '2', 'Spring', 2003, 'C-'); + insert into takes values('28316', '461', '1', 'Fall', 2002, 'A '); + insert into takes values('29091', '486', '1', 'Fall', 2009, 'A-'); + insert into takes values('62832', '864', '1', 'Spring', 2006, 'B-'); + insert into takes values('58172', '760', '1', 'Spring', 2004, 'B-'); + insert into takes values('79534', '545', '1', 'Fall', 2001, 'C+'); + insert into takes values('63886', '974', '1', 'Fall', 2003, 'B-'); + insert into takes values('92776', '461', '1', 'Fall', 2002, 'C '); + insert into takes values('94846', '400', '1', 'Spring', 2007, 'C '); + insert into takes values('28994', '893', '1', 'Fall', 2007, 'C '); + insert into takes values('18941', '482', '1', 'Fall', 2005, 'C-'); + insert into takes values('35042', '158', '1', 'Fall', 2008, 'B '); + insert into takes values('88525', '376', '1', 'Fall', 2006, 'C-'); + insert into takes values('38902', '604', '1', 'Spring', 2009, 'A+'); + insert into takes values('26080', '959', '1', 'Fall', 2006, 'A '); + insert into takes values('63390', '949', '1', 'Fall', 2007, 'C '); + insert into takes values('54508', '496', '1', 'Fall', 2001, 'B-'); + insert into takes values('19293', '527', '1', 'Fall', 2004, 'A+'); + insert into takes values('41406', '642', '1', 'Fall', 2004, 'A '); + insert into takes values('14874', '663', '1', 'Spring', 2005, 'A+'); + insert into takes values('82126', '864', '1', 'Spring', 2006, 'C-'); + insert into takes values('56078', '304', '1', 'Fall', 2009, 'C+'); + insert into takes values('39238', '158', '2', 'Spring', 2008, 'A-'); + insert into takes values('56003', '692', '1', 'Spring', 2010, 'B '); + insert into takes values('66090', '274', '1', 'Fall', 2002, 'A-'); + insert into takes values('41965', '468', '1', 'Fall', 2005, 'B-'); + insert into takes values('93508', '642', '1', 'Fall', 2004, 'C '); + insert into takes values('81550', '663', '1', 'Spring', 2005, 'A+'); + insert into takes values('30397', '200', '1', 'Spring', 2007, 'A '); + insert into takes values('57780', '604', '1', 'Spring', 2009, 'A+'); + insert into takes values('36995', '242', '1', 'Fall', 2009, 'C+'); + insert into takes values('30182', '362', '2', 'Fall', 2006, 'B-'); + insert into takes values('94257', '489', '1', 'Fall', 2007, 'B+'); + insert into takes values('37339', '426', '1', 'Spring', 2006, 'B '); + insert into takes values('21009', '200', '2', 'Fall', 2002, 'C+'); + insert into takes values('95089', '735', '1', 'Spring', 2003, 'B-'); + insert into takes values('67021', '496', '1', 'Fall', 2001, 'B-'); + insert into takes values('96615', '270', '1', 'Spring', 2010, 'B+'); + insert into takes values('5843', '962', '1', 'Spring', 2008, 'C '); + insert into takes values('84189', '270', '1', 'Spring', 2010, 'A-'); + insert into takes values('17057', '304', '1', 'Fall', 2009, 'A '); + insert into takes values('27919', '461', '1', 'Fall', 2002, 'A+'); + insert into takes values('2201', '105', '1', 'Fall', 2009, 'B-'); + insert into takes values('57026', '962', '1', 'Spring', 2008, 'B '); + insert into takes values('30222', '795', '1', 'Spring', 2004, 'A+'); + insert into takes values('79763', '482', '1', 'Fall', 2005, 'C-'); + insert into takes values('24796', '457', '1', 'Spring', 2001, 'B '); + insert into takes values('18740', '603', '1', 'Fall', 2003, 'A-'); + insert into takes values('66293', '270', '1', 'Spring', 2010, 'B '); + insert into takes values('28538', '461', '1', 'Fall', 2002, 'C-'); + insert into takes values('53496', '274', '1', 'Fall', 2002, 'A+'); + insert into takes values('32483', '962', '1', 'Spring', 2008, 'C '); + insert into takes values('12941', '603', '1', 'Fall', 2003, 'C-'); + insert into takes values('59517', '270', '1', 'Spring', 2010, 'C '); + insert into takes values('68280', '169', '1', 'Spring', 2007, 'B+'); + insert into takes values('38548', '631', '1', 'Spring', 2007, 'C-'); + insert into takes values('37101', '408', '2', 'Spring', 2003, 'A '); + insert into takes values('5250', '974', '1', 'Fall', 2003, 'C '); + insert into takes values('64938', '338', '1', 'Spring', 2007, 'C-'); + insert into takes values('16133', '105', '1', 'Fall', 2009, 'A '); + insert into takes values('36265', '864', '1', 'Spring', 2006, 'C '); + insert into takes values('81883', '962', '1', 'Spring', 2008, 'B+'); + insert into takes values('46451', '461', '1', 'Fall', 2002, 'A+'); + insert into takes values('46260', '468', '2', 'Fall', 2007, 'A '); + insert into takes values('81896', '362', '1', 'Fall', 2005, 'B+'); + insert into takes values('19541', '545', '1', 'Fall', 2001, 'B+'); + insert into takes values('10663', '808', '1', 'Fall', 2003, 'C-'); + insert into takes values('16907', '795', '1', 'Spring', 2004, 'A-'); + insert into takes values('92417', '169', '1', 'Spring', 2007, 'C-'); + insert into takes values('83592', '527', '1', 'Fall', 2004, 'A-'); + insert into takes values('67793', '239', '1', 'Fall', 2006, 'C '); + insert into takes values('38895', '376', '1', 'Fall', 2006, 'A+'); + insert into takes values('7854', '349', '1', 'Spring', 2008, 'B-'); + insert into takes values('16631', '631', '1', 'Spring', 2007, 'B-'); + insert into takes values('54153', '239', '1', 'Fall', 2006, 'B '); + insert into takes values('993', '401', '1', 'Fall', 2003, 'A '); + insert into takes values('77130', '663', '1', 'Spring', 2005, 'C-'); + insert into takes values('8343', '338', '2', 'Spring', 2006, 'A+'); + insert into takes values('1285', '496', '1', 'Fall', 2001, 'A-'); + insert into takes values('46725', '843', '1', 'Fall', 2010, 'C+'); + insert into takes values('95027', '559', '1', 'Fall', 2002, 'A+'); + insert into takes values('65703', '802', '1', 'Spring', 2003, 'A-'); + insert into takes values('55286', '795', '1', 'Spring', 2004, 'B '); + insert into takes values('95260', '408', '2', 'Spring', 2003, 'B '); + insert into takes values('11201', '581', '1', 'Spring', 2005, 'A '); + insert into takes values('21102', '338', '2', 'Spring', 2006, 'B '); + insert into takes values('61166', '376', '1', 'Fall', 2006, 'A+'); + insert into takes values('26473', '795', '1', 'Spring', 2004, 'B '); + insert into takes values('25785', '376', '1', 'Fall', 2006, 'A-'); + insert into takes values('96324', '748', '1', 'Fall', 2003, 'C+'); + insert into takes values('24630', '603', '1', 'Fall', 2003, 'A '); + insert into takes values('95631', '362', '2', 'Fall', 2006, 'B-'); + insert into takes values('38668', '239', '1', 'Fall', 2006, 'C '); + insert into takes values('80057', '362', '1', 'Fall', 2005, 'A+'); + insert into takes values('53490', '867', '2', 'Fall', 2010, 'B-'); + insert into takes values('24374', '692', '1', 'Spring', 2010, 'A+'); + insert into takes values('44551', '559', '1', 'Fall', 2002, 'A+'); + insert into takes values('93043', '468', '2', 'Fall', 2007, 'B '); + insert into takes values('27956', '795', '1', 'Spring', 2004, 'B '); + insert into takes values('79170', '408', '1', 'Spring', 2007, 'C '); + insert into takes values('59673', '461', '1', 'Fall', 2002, 'A+'); + insert into takes values('30474', '362', '3', 'Spring', 2008, 'C '); + insert into takes values('47025', '959', '1', 'Fall', 2006, 'A '); + insert into takes values('31341', '362', '1', 'Fall', 2005, 'B-'); + insert into takes values('89196', '421', '1', 'Fall', 2004, 'C+'); + insert into takes values('47487', '192', '1', 'Fall', 2002, 'C+'); + insert into takes values('7123', '991', '1', 'Spring', 2008, 'A '); + insert into takes values('14581', '843', '1', 'Fall', 2010, 'B '); + insert into takes values('83204', '959', '1', 'Fall', 2006, 'C+'); + insert into takes values('7123', '692', '1', 'Spring', 2010, 'B '); + insert into takes values('25187', '400', '2', 'Fall', 2003, 'A-'); + insert into takes values('5414', '962', '1', 'Spring', 2008, 'C-'); + insert into takes values('544', '468', '1', 'Fall', 2005, 'B '); + insert into takes values('32376', '612', '1', 'Fall', 2007, 'C '); + insert into takes values('87268', '105', '2', 'Fall', 2002, 'A-'); + insert into takes values('44998', '200', '2', 'Fall', 2002, 'B+'); + insert into takes values('96710', '338', '2', 'Spring', 2006, 'C '); + insert into takes values('82402', '158', '1', 'Fall', 2008, 'B '); + insert into takes values('79589', '808', '1', 'Fall', 2003, 'A+'); + insert into takes values('88887', '949', '1', 'Fall', 2007, 'C '); + insert into takes values('90372', '692', '1', 'Spring', 2010, 'B-'); + insert into takes values('50038', '366', '1', 'Fall', 2005, 'B '); + insert into takes values('32217', '735', '2', 'Spring', 2010, 'C '); + insert into takes values('32368', '960', '1', 'Fall', 2009, 'A '); + insert into takes values('52866', '493', '1', 'Spring', 2010, 'C '); + insert into takes values('57242', '443', '2', 'Spring', 2002, 'C+'); + insert into takes values('43348', '237', '2', 'Fall', 2009, 'B '); + insert into takes values('61920', '694', '1', 'Fall', 2002, 'C '); + insert into takes values('31560', '679', '1', 'Spring', 2010, 'C-'); + insert into takes values('41261', '362', '2', 'Fall', 2006, 'A+'); + insert into takes values('19848', '258', '1', 'Fall', 2007, 'B '); + insert into takes values('84189', '105', '1', 'Fall', 2009, 'C+'); + insert into takes values('10727', '338', '1', 'Spring', 2007, 'C-'); + insert into takes values('75560', '376', '1', 'Fall', 2006, 'C-'); + insert into takes values('66495', '258', '1', 'Fall', 2007, 'C '); + insert into takes values('16453', '270', '1', 'Spring', 2010, 'A-'); + insert into takes values('65299', '991', '1', 'Spring', 2008, 'B-'); + insert into takes values('41211', '137', '1', 'Spring', 2002, 'B-'); + insert into takes values('77000', '927', '1', 'Fall', 2002, 'B+'); + insert into takes values('99250', '362', '3', 'Spring', 2008, 'C '); + insert into takes values('75938', '604', '1', 'Spring', 2009, 'A '); + insert into takes values('37350', '949', '1', 'Fall', 2007, 'A+'); + insert into takes values('86404', '237', '1', 'Spring', 2008, 'B-'); + insert into takes values('37734', '461', '1', 'Fall', 2002, 'C-'); + insert into takes values('61166', '400', '2', 'Fall', 2003, 'A '); + insert into takes values('30222', '974', '1', 'Fall', 2003, 'C '); + insert into takes values('9440', '105', '2', 'Fall', 2002, 'C '); + insert into takes values('33401', '949', '1', 'Fall', 2007, 'B '); + insert into takes values('760', '408', '1', 'Spring', 2007, 'C+'); + insert into takes values('24796', '735', '1', 'Spring', 2003, 'A-'); + insert into takes values('16453', '362', '2', 'Fall', 2006, 'A+'); + insert into takes values('59530', '408', '1', 'Spring', 2007, 'B-'); + insert into takes values('82974', '169', '1', 'Spring', 2007, 'C '); + insert into takes values('41827', '599', '1', 'Spring', 2003, 'A '); + insert into takes values('64249', '242', '1', 'Fall', 2009, 'B+'); + insert into takes values('60366', '704', '1', 'Spring', 2008, 'B '); + insert into takes values('40738', '692', '1', 'Spring', 2010, 'C '); + insert into takes values('13290', '875', '1', 'Spring', 2005, 'A-'); + insert into takes values('76895', '791', '1', 'Spring', 2006, 'B+'); + insert into takes values('80941', '959', '1', 'Fall', 2006, 'B+'); + insert into takes values('38902', '631', '1', 'Spring', 2007, 'C '); + insert into takes values('78922', '426', '1', 'Spring', 2006, 'C+'); + insert into takes values('51093', '476', '1', 'Fall', 2010, 'B+'); + insert into takes values('50977', '642', '1', 'Fall', 2004, 'C-'); + insert into takes values('10033', '242', '1', 'Fall', 2009, 'B '); + insert into takes values('18499', '242', '1', 'Fall', 2009, 'B-'); + insert into takes values('81294', '408', '1', 'Spring', 2007, 'B+'); + insert into takes values('97228', '304', '1', 'Fall', 2009, 'C '); + insert into takes values('29705', '457', '1', 'Spring', 2001, 'A '); + insert into takes values('19220', '962', '1', 'Spring', 2008, 'A '); + insert into takes values('58935', '545', '1', 'Fall', 2001, 'B-'); + insert into takes values('76798', '274', '1', 'Fall', 2002, 'C-'); + insert into takes values('80420', '476', '1', 'Fall', 2010, 'B+'); + insert into takes values('47126', '443', '1', 'Spring', 2010, 'A+'); + insert into takes values('82083', '694', '1', 'Fall', 2002, 'B-'); + insert into takes values('77548', '629', '1', 'Spring', 2003, 'C '); + insert into takes values('63243', '426', '1', 'Spring', 2006, 'C '); + insert into takes values('94814', '334', '1', 'Fall', 2009, 'A '); + insert into takes values('58889', '137', '1', 'Spring', 2002, 'A '); + insert into takes values('435', '105', '2', 'Fall', 2002, 'A-'); + insert into takes values('42114', '631', '1', 'Spring', 2007, 'A-'); + insert into takes values('66753', '962', '1', 'Spring', 2008, 'A-'); + insert into takes values('77000', '795', '1', 'Spring', 2004, 'C+'); + insert into takes values('49684', '571', '1', 'Spring', 2004, 'A '); + insert into takes values('62636', '626', '1', 'Fall', 2006, 'A+'); + insert into takes values('99553', '852', '1', 'Spring', 2008, 'C-'); + insert into takes values('52471', '893', '1', 'Fall', 2007, 'B+'); + insert into takes values('40044', '962', '1', 'Spring', 2008, 'C '); + insert into takes values('11966', '864', '1', 'Spring', 2006, 'C '); + insert into takes values('24197', '694', '1', 'Fall', 2002, 'B-'); + insert into takes values('61127', '237', '2', 'Fall', 2009, 'A+'); + insert into takes values('4004', '626', '1', 'Fall', 2006, 'B-'); + insert into takes values('94173', '258', '1', 'Fall', 2007, 'C '); + insert into takes values('82063', '376', '1', 'Fall', 2006, 'C-'); + insert into takes values('15613', '366', '1', 'Fall', 2005, 'B+'); + insert into takes values('847', '258', '1', 'Fall', 2007, 'B '); + insert into takes values('25068', '169', '1', 'Spring', 2007, 'C-'); + insert into takes values('57135', '793', '1', 'Spring', 2002, 'A '); + insert into takes values('66753', '338', '2', 'Spring', 2006, 'B+'); + insert into takes values('65987', '747', '1', 'Spring', 2004, 'B '); + insert into takes values('57780', '334', '1', 'Fall', 2009, 'A-'); + insert into takes values('95089', '105', '2', 'Fall', 2002, 'A+'); + insert into takes values('6523', '795', '1', 'Spring', 2004, 'A '); + insert into takes values('89759', '158', '1', 'Fall', 2008, 'B '); + insert into takes values('95284', '468', '1', 'Fall', 2005, 'C+'); + insert into takes values('39552', '679', '1', 'Spring', 2010, 'A-'); + insert into takes values('39978', '704', '1', 'Spring', 2008, 'C-'); + insert into takes values('62784', '489', '1', 'Fall', 2007, 'A+'); + insert into takes values('34788', '169', '2', 'Fall', 2002, 'A-'); + insert into takes values('11441', '496', '1', 'Fall', 2001, 'A '); + insert into takes values('49214', '400', '2', 'Fall', 2003, 'B+'); + insert into takes values('3143', '468', '1', 'Fall', 2005, 'C-'); + insert into takes values('71631', '468', '2', 'Fall', 2007, 'A '); + insert into takes values('40276', '493', '1', 'Spring', 2010, 'B '); + insert into takes values('94257', '137', '1', 'Spring', 2002, 'A+'); + insert into takes values('75231', '972', '1', 'Spring', 2009, 'C '); + insert into takes values('81207', '692', '1', 'Spring', 2010, 'A+'); + insert into takes values('84432', '747', '1', 'Spring', 2004, 'B+'); + insert into takes values('5144', '991', '1', 'Spring', 2008, 'C '); + insert into takes values('557', '748', '1', 'Fall', 2003, 'B+'); + insert into takes values('78787', '105', '1', 'Fall', 2009, 'A '); + insert into takes values('792', '105', '2', 'Fall', 2002, 'B '); + insert into takes values('78116', '867', '2', 'Fall', 2010, 'B-'); + insert into takes values('85505', '704', '1', 'Spring', 2008, 'A '); + insert into takes values('86806', '867', '1', 'Fall', 2006, 'B+'); + insert into takes values('30222', '258', '1', 'Fall', 2007, 'A '); + insert into takes values('76799', '242', '1', 'Fall', 2009, 'C-'); + insert into takes values('163', '747', '1', 'Spring', 2004, 'C '); + insert into takes values('12563', '468', '2', 'Fall', 2007, 'C '); + insert into takes values('29871', '468', '2', 'Fall', 2007, 'A '); + insert into takes values('67371', '274', '1', 'Fall', 2002, 'C '); + insert into takes values('66281', '591', '1', 'Spring', 2005, 'C-'); + insert into takes values('97868', '239', '1', 'Fall', 2006, 'C '); + insert into takes values('7973', '408', '2', 'Spring', 2003, 'C-'); + insert into takes values('77898', '960', '2', 'Fall', 2006, 'B '); + insert into takes values('84792', '791', '1', 'Spring', 2006, 'C '); + insert into takes values('10736', '349', '1', 'Spring', 2008, 'A-'); + insert into takes values('15538', '867', '1', 'Fall', 2006, 'A+'); + insert into takes values('5463', '735', '1', 'Spring', 2003, 'B '); + insert into takes values('29462', '105', '1', 'Fall', 2009, 'A '); + insert into takes values('83444', '864', '1', 'Spring', 2006, 'B-'); + insert into takes values('70021', '561', '1', 'Fall', 2006, 'A '); + insert into takes values('7732', '559', '1', 'Fall', 2002, 'A-'); + insert into takes values('31137', '401', '1', 'Fall', 2003, 'C '); + insert into takes values('7620', '867', '1', 'Fall', 2006, 'C '); + insert into takes values('94142', '962', '1', 'Spring', 2008, 'B-'); + insert into takes values('15083', '489', '1', 'Fall', 2007, 'C '); + insert into takes values('282', '362', '2', 'Fall', 2006, 'A '); + insert into takes values('4173', '604', '1', 'Spring', 2009, 'C+'); + insert into takes values('78767', '192', '1', 'Fall', 2002, 'B '); + insert into takes values('16515', '408', '2', 'Spring', 2003, 'B '); + insert into takes values('75252', '631', '1', 'Spring', 2007, 'C '); + insert into takes values('26102', '443', '1', 'Spring', 2010, 'B+'); + insert into takes values('39310', '949', '1', 'Fall', 2007, 'C-'); + insert into takes values('68248', '545', '1', 'Fall', 2001, 'A '); + insert into takes values('22325', '760', '1', 'Spring', 2004, 'A+'); + insert into takes values('70688', '571', '1', 'Spring', 2004, 'B-'); + insert into takes values('57456', '704', '1', 'Spring', 2008, 'C '); + insert into takes values('75299', '313', '1', 'Fall', 2010, 'B+'); + insert into takes values('25046', '960', '2', 'Fall', 2006, 'B '); + insert into takes values('90353', '489', '1', 'Fall', 2007, 'A '); + insert into takes values('43616', '408', '1', 'Spring', 2007, 'A+'); + insert into takes values('81884', '748', '1', 'Fall', 2003, 'C+'); + insert into takes values('83170', '457', '1', 'Spring', 2001, 'B+'); + insert into takes values('78434', '200', '1', 'Spring', 2007, 'A+'); + insert into takes values('43032', '415', '1', 'Fall', 2010, 'A '); + insert into takes values('15883', '496', '1', 'Fall', 2001, 'C '); + insert into takes values('91091', '663', '1', 'Spring', 2005, 'B+'); + insert into takes values('36303', '960', '1', 'Fall', 2009, 'C '); + insert into takes values('39876', '362', '1', 'Fall', 2005, 'C-'); + insert into takes values('30017', '795', '1', 'Spring', 2004, 'C '); + insert into takes values('4438', '445', '1', 'Spring', 2001, 'A '); + insert into takes values('29399', '972', '1', 'Spring', 2009, 'B-'); + insert into takes values('6710', '313', '1', 'Fall', 2010, 'A+'); + insert into takes values('88418', '612', '1', 'Fall', 2007, 'C-'); + insert into takes values('8912', '642', '1', 'Fall', 2004, 'C '); + insert into takes values('78332', '760', '1', 'Spring', 2004, 'C '); + insert into takes values('77580', '559', '1', 'Fall', 2002, 'B+'); + insert into takes values('10693', '793', '1', 'Spring', 2002, 'B+'); + insert into takes values('76953', '962', '1', 'Spring', 2008, 'B+'); + insert into takes values('37818', '603', '1', 'Fall', 2003, 'A-'); + insert into takes values('80420', '867', '2', 'Fall', 2010, 'B+'); + insert into takes values('97400', '702', '1', 'Spring', 2001, 'C+'); + insert into takes values('52929', '352', '1', 'Spring', 2006, 'C+'); + insert into takes values('85366', '338', '2', 'Spring', 2006, 'B+'); + insert into takes values('69783', '642', '1', 'Fall', 2004, 'C+'); + insert into takes values('39238', '694', '1', 'Fall', 2002, 'A-'); + insert into takes values('80057', '270', '1', 'Spring', 2010, 'C+'); + insert into takes values('47824', '747', '1', 'Spring', 2004, 'A-'); + insert into takes values('23392', '468', '2', 'Fall', 2007, 'A-'); + insert into takes values('75534', '561', '1', 'Fall', 2006, 'C+'); + insert into takes values('99399', '867', '2', 'Fall', 2010, 'C+'); + insert into takes values('98047', '137', '1', 'Spring', 2002, 'C-'); + insert into takes values('21101', '991', '1', 'Spring', 2008, 'C-'); + insert into takes values('89759', '960', '2', 'Fall', 2006, 'A+'); + insert into takes values('95840', '482', '1', 'Fall', 2005, 'B-'); + insert into takes values('54153', '352', '1', 'Spring', 2006, 'A '); + insert into takes values('72501', '802', '1', 'Spring', 2003, 'A-'); + insert into takes values('40457', '795', '1', 'Spring', 2004, 'A-'); + insert into takes values('87015', '200', '2', 'Fall', 2002, 'C '); + insert into takes values('41774', '603', '1', 'Fall', 2003, 'B-'); + insert into takes values('11194', '242', '1', 'Fall', 2009, 'B+'); + insert into takes values('29399', '864', '1', 'Spring', 2006, 'A+'); + insert into takes values('51538', '875', '1', 'Spring', 2005, 'C '); + insert into takes values('72485', '591', '1', 'Spring', 2005, 'B+'); + insert into takes values('29849', '445', '1', 'Spring', 2001, 'A '); + insert into takes values('3493', '795', '1', 'Spring', 2004, 'C-'); + insert into takes values('5414', '345', '1', 'Spring', 2008, 'B+'); + insert into takes values('21126', '338', '2', 'Spring', 2006, 'B+'); + insert into takes values('66813', '338', '2', 'Spring', 2006, 'B '); + insert into takes values('93708', '338', '1', 'Spring', 2007, 'A+'); + insert into takes values('73411', '559', '1', 'Fall', 2002, 'A+'); + insert into takes values('16593', '349', '1', 'Spring', 2008, 'A '); + insert into takes values('64945', '192', '1', 'Fall', 2002, 'C-'); + insert into takes values('45300', '692', '1', 'Spring', 2010, 'B+'); + insert into takes values('12078', '559', '1', 'Fall', 2002, 'A-'); + insert into takes values('76250', '735', '1', 'Spring', 2003, 'B+'); + insert into takes values('87048', '421', '1', 'Fall', 2004, 'C-'); + insert into takes values('94990', '400', '1', 'Spring', 2007, 'B+'); + insert into takes values('99660', '949', '1', 'Fall', 2007, 'A+'); + insert into takes values('1367', '158', '2', 'Spring', 2008, 'A-'); + insert into takes values('64945', '349', '1', 'Spring', 2008, 'C '); + insert into takes values('98359', '457', '1', 'Spring', 2001, 'C+'); + insert into takes values('19342', '169', '1', 'Spring', 2007, 'B '); + insert into takes values('52291', '663', '1', 'Spring', 2005, 'B+'); + insert into takes values('15613', '679', '1', 'Spring', 2010, 'A+'); + insert into takes values('27950', '747', '1', 'Spring', 2004, 'A '); + insert into takes values('7970', '169', '2', 'Fall', 2002, 'A+'); + insert into takes values('28952', '457', '1', 'Spring', 2001, 'A-'); + insert into takes values('32130', '408', '1', 'Spring', 2007, 'C+'); + insert into takes values('40044', '258', '1', 'Fall', 2007, 'C-'); + insert into takes values('69960', '362', '3', 'Spring', 2008, 'A+'); + insert into takes values('58081', '949', '1', 'Fall', 2007, 'C '); + insert into takes values('53225', '334', '1', 'Fall', 2009, 'B+'); + insert into takes values('47379', '960', '1', 'Fall', 2009, 'A-'); + insert into takes values('78332', '604', '1', 'Spring', 2009, 'A-'); + insert into takes values('29645', '591', '1', 'Spring', 2005, 'A-'); + insert into takes values('56078', '443', '2', 'Spring', 2002, 'B '); + insert into takes values('99553', '482', '1', 'Fall', 2005, 'A-'); + insert into takes values('10693', '362', '1', 'Fall', 2005, 'C-'); + insert into takes values('43032', '421', '1', 'Fall', 2004, 'B+'); + insert into takes values('78314', '867', '1', 'Fall', 2006, 'C '); + insert into takes values('34126', '158', '2', 'Spring', 2008, 'A+'); + insert into takes values('98388', '702', '1', 'Spring', 2001, 'B+'); + insert into takes values('92659', '400', '2', 'Fall', 2003, 'A-'); + insert into takes values('6367', '319', '1', 'Spring', 2003, 'B+'); + insert into takes values('30124', '795', '1', 'Spring', 2004, 'B+'); + insert into takes values('64140', '692', '1', 'Spring', 2010, 'C '); + insert into takes values('78454', '421', '1', 'Fall', 2004, 'A '); + insert into takes values('32506', '137', '1', 'Spring', 2002, 'B '); + insert into takes values('5843', '304', '1', 'Fall', 2009, 'C '); + insert into takes values('21774', '679', '1', 'Spring', 2010, 'B '); + insert into takes values('69632', '352', '1', 'Spring', 2006, 'B+'); + insert into takes values('99348', '158', '1', 'Fall', 2008, 'C+'); + insert into takes values('11194', '795', '1', 'Spring', 2004, 'A-'); + insert into takes values('59455', '421', '1', 'Fall', 2004, 'C+'); + insert into takes values('97101', '591', '1', 'Spring', 2005, 'B+'); + insert into takes values('70299', '867', '1', 'Fall', 2006, 'B+'); + insert into takes values('3693', '791', '1', 'Spring', 2006, 'A '); + insert into takes values('28829', '692', '1', 'Spring', 2010, 'C+'); + insert into takes values('37103', '972', '1', 'Spring', 2009, 'A+'); + insert into takes values('84808', '349', '1', 'Spring', 2008, 'B+'); + insert into takes values('3127', '802', '1', 'Spring', 2003, 'B-'); + insert into takes values('19862', '642', '1', 'Fall', 2004, 'B-'); + insert into takes values('71529', '704', '1', 'Spring', 2008, 'A-'); + insert into takes values('6990', '486', '1', 'Fall', 2009, 'A '); + insert into takes values('34126', '735', '1', 'Spring', 2003, 'B-'); + insert into takes values('78911', '105', '2', 'Fall', 2002, 'A-'); + insert into takes values('67560', '270', '1', 'Spring', 2010, 'A '); + insert into takes values('81245', '791', '1', 'Spring', 2006, 'C '); + insert into takes values('74796', '486', '1', 'Fall', 2009, 'A '); + insert into takes values('18636', '949', '1', 'Fall', 2007, 'A+'); + insert into takes values('58081', '864', '1', 'Spring', 2006, 'C-'); + insert into takes values('34197', '237', '2', 'Fall', 2009, 'C+'); + insert into takes values('64155', '137', '1', 'Spring', 2002, 'B+'); + insert into takes values('76057', '808', '1', 'Fall', 2003, 'A '); + insert into takes values('41450', '493', '1', 'Spring', 2010, 'A '); + insert into takes values('75123', '791', '1', 'Spring', 2006, 'B '); + insert into takes values('29399', '603', '1', 'Fall', 2003, 'A '); + insert into takes values('97041', '960', '2', 'Fall', 2006, 'A-'); + insert into takes values('80227', '239', '1', 'Fall', 2006, 'B+'); + insert into takes values('36126', '443', '2', 'Spring', 2002, 'B-'); + insert into takes values('44881', '362', '3', 'Spring', 2008, 'B '); + insert into takes values('79763', '702', '1', 'Spring', 2001, 'A-'); + insert into takes values('63560', '476', '1', 'Fall', 2010, 'C-'); + insert into takes values('35175', '599', '1', 'Spring', 2003, 'A '); + insert into takes values('32056', '867', '1', 'Fall', 2006, 'C-'); + insert into takes values('65241', '352', '1', 'Spring', 2006, 'B+'); + insert into takes values('14869', '482', '1', 'Fall', 2005, 'C-'); + insert into takes values('89234', '604', '1', 'Spring', 2009, 'B '); + insert into takes values('22198', '445', '1', 'Spring', 2001, 'B+'); + insert into takes values('7854', '599', '1', 'Spring', 2003, 'C-'); + insert into takes values('987', '105', '1', 'Fall', 2009, 'B-'); + insert into takes values('81396', '571', '1', 'Spring', 2004, 'C+'); + insert into takes values('28738', '313', '1', 'Fall', 2010, 'A+'); + insert into takes values('12078', '581', '1', 'Spring', 2005, 'B-'); + insert into takes values('50743', '571', '1', 'Spring', 2004, 'C '); + insert into takes values('16133', '239', '1', 'Fall', 2006, 'B-'); + insert into takes values('46155', '401', '1', 'Fall', 2003, 'A+'); + insert into takes values('38013', '258', '1', 'Fall', 2007, 'C+'); + insert into takes values('78314', '158', '2', 'Spring', 2008, 'C+'); + insert into takes values('41406', '735', '2', 'Spring', 2010, 'B-'); + insert into takes values('71085', '313', '1', 'Fall', 2010, 'A-'); + insert into takes values('87193', '334', '1', 'Fall', 2009, 'B+'); + insert into takes values('47627', '748', '1', 'Fall', 2003, 'A+'); + insert into takes values('5243', '599', '1', 'Spring', 2003, 'C+'); + insert into takes values('78787', '927', '1', 'Fall', 2002, 'A-'); + insert into takes values('3039', '604', '1', 'Spring', 2009, 'C '); + insert into takes values('667', '242', '1', 'Fall', 2009, 'C+'); + insert into takes values('71628', '158', '2', 'Spring', 2008, 'B-'); + insert into takes values('39876', '376', '1', 'Fall', 2006, 'B-'); + insert into takes values('31086', '237', '2', 'Fall', 2009, 'B+'); + insert into takes values('49280', '349', '1', 'Spring', 2008, 'B-'); + insert into takes values('45826', '735', '2', 'Spring', 2010, 'B '); + insert into takes values('83170', '864', '1', 'Spring', 2006, 'A '); + insert into takes values('82707', '313', '1', 'Fall', 2010, 'C-'); + insert into takes values('19638', '692', '1', 'Spring', 2010, 'C+'); + insert into takes values('22618', '702', '1', 'Spring', 2001, 'C+'); + insert into takes values('97023', '663', '1', 'Spring', 2005, 'A '); + insert into takes values('50664', '242', '1', 'Fall', 2009, 'A-'); + insert into takes values('65101', '962', '1', 'Spring', 2008, 'B-'); + insert into takes values('58170', '338', '1', 'Spring', 2007, 'C-'); + insert into takes values('7204', '105', '2', 'Fall', 2002, 'B+'); + insert into takes values('85680', '362', '3', 'Spring', 2008, 'B '); + insert into takes values('18367', '319', '1', 'Spring', 2003, 'A '); + insert into takes values('99073', '864', '1', 'Spring', 2006, 'C-'); + insert into takes values('70807', '663', '1', 'Spring', 2005, 'A '); + insert into takes values('13408', '443', '2', 'Spring', 2002, 'B+'); + insert into takes values('96227', '735', '1', 'Spring', 2003, 'C+'); + insert into takes values('5250', '748', '1', 'Fall', 2003, 'C-'); + insert into takes values('4355', '808', '1', 'Fall', 2003, 'A-'); + insert into takes values('64169', '200', '2', 'Fall', 2002, 'B+'); + insert into takes values('53048', '376', '1', 'Fall', 2006, 'B+'); + insert into takes values('55286', '313', '1', 'Fall', 2010, 'C-'); + insert into takes values('43032', '274', '1', 'Fall', 2002, 'B+'); + insert into takes values('25046', '258', '1', 'Fall', 2007, 'C+'); + insert into takes values('64550', '960', '1', 'Fall', 2009, 'B-'); + insert into takes values('61414', '692', '1', 'Spring', 2010, 'A+'); + insert into takes values('5824', '581', '1', 'Spring', 2005, 'C-'); + insert into takes values('55170', '631', '1', 'Spring', 2007, 'B '); + insert into takes values('61444', '974', '1', 'Fall', 2003, 'B '); + insert into takes values('18740', '338', '2', 'Spring', 2006, 'B '); + insert into takes values('14581', '237', '1', 'Spring', 2008, 'A-'); + insert into takes values('52371', '200', '2', 'Fall', 2002, 'B '); + insert into takes values('39892', '482', '1', 'Fall', 2005, 'B-'); + insert into takes values('41938', '702', '1', 'Spring', 2001, 'C-'); + insert into takes values('14065', '362', '1', 'Fall', 2005, 'A+'); + insert into takes values('60249', '791', '1', 'Spring', 2006, 'A-'); + insert into takes values('108', '493', '1', 'Spring', 2010, 'A-'); + insert into takes values('42560', '496', '1', 'Fall', 2001, 'C+'); + insert into takes values('66356', '401', '1', 'Fall', 2003, 'B '); + insert into takes values('65703', '461', '1', 'Fall', 2002, 'C-'); + insert into takes values('18752', '581', '1', 'Spring', 2005, 'A '); + insert into takes values('33201', '242', '1', 'Fall', 2009, 'B-'); + insert into takes values('5920', '400', '2', 'Fall', 2003, 'C+'); + insert into takes values('63645', '696', '1', 'Spring', 2002, 'B+'); + insert into takes values('76270', '760', '1', 'Spring', 2004, 'A-'); + insert into takes values('92274', '362', '3', 'Spring', 2008, 'C+'); + insert into takes values('15030', '612', '1', 'Fall', 2007, 'B '); + insert into takes values('45817', '545', '1', 'Fall', 2001, 'A '); + insert into takes values('282', '802', '1', 'Spring', 2003, 'A '); + insert into takes values('50944', '345', '1', 'Spring', 2008, 'A '); + insert into takes values('10904', '237', '2', 'Fall', 2009, 'A '); + insert into takes values('97551', '642', '1', 'Fall', 2004, 'B-'); + insert into takes values('15980', '893', '1', 'Fall', 2007, 'A+'); + insert into takes values('70099', '426', '1', 'Spring', 2006, 'C+'); + insert into takes values('76604', '642', '1', 'Fall', 2004, 'B '); + insert into takes values('99611', '962', '1', 'Spring', 2008, 'A '); + insert into takes values('1367', '991', '1', 'Spring', 2008, 'B+'); + insert into takes values('89734', '338', '1', 'Spring', 2007, 'A-'); + insert into takes values('63886', '642', '1', 'Fall', 2004, 'B-'); + insert into takes values('76270', '972', '1', 'Spring', 2009, 'A+'); + insert into takes values('91616', '105', '1', 'Fall', 2009, 'C '); + insert into takes values('30164', '493', '1', 'Spring', 2010, 'B '); + insert into takes values('95029', '443', '1', 'Spring', 2010, 'C+'); + insert into takes values('76799', '200', '1', 'Spring', 2007, 'C-'); + insert into takes values('37715', '192', '1', 'Fall', 2002, 'C-'); + insert into takes values('12615', '694', '1', 'Fall', 2002, 'B+'); + insert into takes values('80247', '802', '1', 'Spring', 2003, 'C+'); + insert into takes values('38676', '561', '1', 'Fall', 2006, 'B-'); + insert into takes values('18007', '747', '1', 'Spring', 2004, 'B-'); + insert into takes values('91580', '482', '1', 'Fall', 2005, 'B '); + insert into takes values('65241', '631', '1', 'Spring', 2007, 'B-'); + insert into takes values('43912', '352', '1', 'Spring', 2006, 'B '); + insert into takes values('38476', '545', '1', 'Fall', 2001, 'C-'); + insert into takes values('7656', '400', '2', 'Fall', 2003, 'C '); + insert into takes values('2501', '702', '1', 'Spring', 2001, 'C '); + insert into takes values('14554', '748', '1', 'Fall', 2003, 'C-'); + insert into takes values('30110', '571', '1', 'Spring', 2004, 'A '); + insert into takes values('39310', '893', '1', 'Fall', 2007, 'C '); + insert into takes values('69471', '237', '2', 'Fall', 2009, 'C '); + insert into takes values('66469', '105', '1', 'Fall', 2009, 'C+'); + insert into takes values('14829', '663', '1', 'Spring', 2005, 'B+'); + insert into takes values('914', '415', '1', 'Fall', 2010, 'A+'); + insert into takes values('98843', '493', '1', 'Spring', 2010, 'B-'); + insert into takes values('86833', '482', '1', 'Fall', 2005, 'B+'); + insert into takes values('65329', '274', '1', 'Fall', 2002, 'C '); + insert into takes values('52385', '591', '1', 'Spring', 2005, 'C '); + insert into takes values('92965', '748', '1', 'Fall', 2003, 'A-'); + insert into takes values('74016', '864', '1', 'Spring', 2006, 'C '); + insert into takes values('93061', '893', '1', 'Fall', 2007, 'C-'); + insert into takes values('95366', '376', '1', 'Fall', 2006, 'A-'); + insert into takes values('4449', '468', '2', 'Fall', 2007, 'C '); + insert into takes values('50537', '304', '1', 'Fall', 2009, 'C+'); + insert into takes values('62728', '527', '1', 'Fall', 2004, 'A-'); + insert into takes values('65144', '696', '1', 'Spring', 2002, 'C '); + insert into takes values('15340', '445', '1', 'Spring', 2001, 'B+'); + insert into takes values('84808', '237', '2', 'Fall', 2009, 'B-'); + insert into takes values('56089', '237', '2', 'Fall', 2009, 'B '); + insert into takes values('7490', '376', '1', 'Fall', 2006, 'A+'); + insert into takes values('25068', '408', '2', 'Spring', 2003, 'B-'); + insert into takes values('95697', '852', '1', 'Spring', 2008, 'A-'); + insert into takes values('75878', '748', '1', 'Fall', 2003, 'B+'); + insert into takes values('52120', '482', '1', 'Fall', 2005, 'C-'); + insert into takes values('69122', '443', '2', 'Spring', 2002, 'A-'); + insert into takes values('83204', '362', '3', 'Spring', 2008, 'B '); + insert into takes values('45770', '457', '1', 'Spring', 2001, 'C '); + insert into takes values('4508', '362', '3', 'Spring', 2008, 'A-'); + insert into takes values('62784', '991', '1', 'Spring', 2008, 'A+'); + insert into takes values('70299', '603', '1', 'Fall', 2003, 'A+'); + insert into takes values('51549', '426', '1', 'Spring', 2006, 'C+'); + insert into takes values('54612', '158', '1', 'Fall', 2008, 'A-'); + insert into takes values('32119', '972', '1', 'Spring', 2009, 'B '); + insert into takes values('36303', '893', '1', 'Fall', 2007, 'B+'); + insert into takes values('17607', '795', '1', 'Spring', 2004, 'B-'); + insert into takes values('11262', '631', '1', 'Spring', 2007, 'C+'); + insert into takes values('40677', '704', '1', 'Spring', 2008, 'A+'); + insert into takes values('15070', '200', '2', 'Fall', 2002, 'B '); + insert into takes values('7973', '443', '1', 'Spring', 2010, 'A-'); + insert into takes values('14065', '421', '1', 'Fall', 2004, 'C '); + insert into takes values('18583', '735', '1', 'Spring', 2003, 'A '); + insert into takes values('48660', '694', '1', 'Fall', 2002, 'B-'); + insert into takes values('95046', '468', '1', 'Fall', 2005, 'C-'); + insert into takes values('4645', '974', '1', 'Fall', 2003, 'C+'); + insert into takes values('12069', '496', '1', 'Fall', 2001, 'A-'); + insert into takes values('23311', '169', '2', 'Fall', 2002, 'C+'); + insert into takes values('5843', '345', '1', 'Spring', 2008, 'B-'); + insert into takes values('49982', '482', '1', 'Fall', 2005, 'A-'); + insert into takes values('68516', '867', '1', 'Fall', 2006, 'C+'); + insert into takes values('59920', '242', '1', 'Fall', 2009, 'C+'); + insert into takes values('68453', '158', '2', 'Spring', 2008, 'B-'); + insert into takes values('17397', '893', '1', 'Fall', 2007, 'C-'); + insert into takes values('49611', '679', '1', 'Spring', 2010, 'B+'); + insert into takes values('163', '561', '1', 'Fall', 2006, 'A+'); + insert into takes values('65056', '747', '1', 'Spring', 2004, 'C+'); + insert into takes values('42556', '239', '1', 'Fall', 2006, 'C-'); + insert into takes values('90353', '486', '1', 'Fall', 2009, 'C '); + insert into takes values('44206', '735', '1', 'Spring', 2003, 'C '); + insert into takes values('96085', '642', '1', 'Fall', 2004, 'B-'); + insert into takes values('58594', '338', '1', 'Spring', 2007, 'A+'); + insert into takes values('96085', '599', '1', 'Spring', 2003, 'C+'); + insert into takes values('78792', '927', '1', 'Fall', 2002, 'B '); + insert into takes values('91978', '345', '1', 'Spring', 2008, 'B '); + insert into takes values('90004', '362', '3', 'Spring', 2008, 'B-'); + insert into takes values('88801', '496', '1', 'Fall', 2001, 'B+'); + insert into takes values('57925', '461', '1', 'Fall', 2002, 'A-'); + insert into takes values('19245', '400', '1', 'Spring', 2007, 'C+'); + insert into takes values('39394', '400', '2', 'Fall', 2003, 'B-'); + insert into takes values('52019', '242', '1', 'Fall', 2009, 'B+'); + insert into takes values('29239', '334', '1', 'Fall', 2009, 'C '); + insert into takes values('85887', '421', '1', 'Fall', 2004, 'B '); + insert into takes values('28352', '864', '1', 'Spring', 2006, 'A '); + insert into takes values('17086', '400', '1', 'Spring', 2007, 'A-'); + insert into takes values('36263', '270', '1', 'Spring', 2010, 'C '); + insert into takes values('29849', '974', '1', 'Fall', 2003, 'B+'); + insert into takes values('73186', '629', '1', 'Spring', 2003, 'A '); + insert into takes values('63361', '362', '3', 'Spring', 2008, 'C+'); + insert into takes values('69581', '489', '1', 'Fall', 2007, 'C-'); + insert into takes values('56', '345', '1', 'Spring', 2008, 'A+'); + insert into takes values('56089', '105', '2', 'Fall', 2002, 'C-'); + insert into takes values('70688', '338', '1', 'Spring', 2007, 'B-'); + insert into takes values('13081', '694', '1', 'Fall', 2002, 'B+'); + insert into takes values('42843', '468', '1', 'Fall', 2005, 'C-'); + insert into takes values('29645', '704', '1', 'Spring', 2008, 'A+'); + insert into takes values('18469', '843', '1', 'Fall', 2010, 'C-'); + insert into takes values('30772', '270', '1', 'Spring', 2010, 'B+'); + insert into takes values('47677', '362', '3', 'Spring', 2008, 'C+'); + insert into takes values('6195', '581', '1', 'Spring', 2005, 'B '); + insert into takes values('72669', '443', '1', 'Spring', 2010, 'C+'); + insert into takes values('92839', '415', '1', 'Fall', 2010, 'B-'); + insert into takes values('42388', '631', '1', 'Spring', 2007, 'A '); + insert into takes values('31560', '362', '3', 'Spring', 2008, 'A '); + insert into takes values('86753', '376', '1', 'Fall', 2006, 'A+'); + insert into takes values('34195', '991', '1', 'Spring', 2008, 'C+'); + insert into takes values('67021', '962', '1', 'Spring', 2008, 'C+'); + insert into takes values('21102', '612', '1', 'Fall', 2007, 'A+'); + insert into takes values('39310', '927', '1', 'Fall', 2002, 'A+'); + insert into takes values('15249', '679', '1', 'Spring', 2010, 'B '); + insert into takes values('99730', '875', '1', 'Spring', 2005, 'C+'); + insert into takes values('32464', '760', '1', 'Spring', 2004, 'B-'); + insert into takes values('96741', '137', '1', 'Spring', 2002, 'B+'); + insert into takes values('61783', '735', '2', 'Spring', 2010, 'C '); + insert into takes values('62784', '735', '2', 'Spring', 2010, 'B '); + insert into takes values('51416', '493', '1', 'Spring', 2010, 'C '); + insert into takes values('25143', '338', '2', 'Spring', 2006, 'A-'); + insert into takes values('1232', '445', '1', 'Spring', 2001, 'C-'); + insert into takes values('67340', '852', '1', 'Spring', 2008, 'A+'); + insert into takes values('37038', '486', '1', 'Fall', 2009, 'B '); + insert into takes values('63860', '421', '1', 'Fall', 2004, 'C-'); + insert into takes values('29031', '795', '1', 'Spring', 2004, 'C-'); + insert into takes values('57135', '875', '1', 'Spring', 2005, 'C+'); + insert into takes values('59848', '599', '1', 'Spring', 2003, 'A+'); + insert into takes values('94178', '258', '1', 'Fall', 2007, 'C '); + insert into takes values('69241', '158', '2', 'Spring', 2008, 'B+'); + insert into takes values('43130', '735', '1', 'Spring', 2003, 'B '); + insert into takes values('65715', '629', '1', 'Spring', 2003, 'C '); + insert into takes values('40276', '400', '1', 'Spring', 2007, 'A '); + insert into takes values('1533', '696', '1', 'Spring', 2002, 'C+'); + insert into takes values('30957', '493', '1', 'Spring', 2010, 'B+'); + insert into takes values('16543', '443', '1', 'Spring', 2010, 'C+'); + insert into takes values('85809', '192', '1', 'Fall', 2002, 'B+'); + insert into takes values('84654', '545', '1', 'Fall', 2001, 'B-'); + insert into takes values('4034', '366', '1', 'Fall', 2005, 'A-'); + insert into takes values('66008', '376', '1', 'Fall', 2006, 'B+'); + insert into takes values('55286', '237', '1', 'Spring', 2008, 'A '); + insert into takes values('69747', '875', '1', 'Spring', 2005, 'B-'); + insert into takes values('81566', '158', '1', 'Fall', 2008, 'B '); + insert into takes values('3640', '476', '1', 'Fall', 2010, 'A-'); + insert into takes values('99189', '258', '1', 'Fall', 2007, 'B+'); + insert into takes values('30161', '338', '2', 'Spring', 2006, 'A-'); + insert into takes values('37339', '237', '1', 'Spring', 2008, 'B '); + insert into takes values('39978', '338', '1', 'Spring', 2007, 'A-'); + insert into takes values('93004', '426', '1', 'Spring', 2006, 'C-'); + insert into takes values('1087', '400', '2', 'Fall', 2003, 'C+'); + insert into takes values('61332', '795', '1', 'Spring', 2004, 'C '); + insert into takes values('16523', '561', '1', 'Fall', 2006, 'A-'); + insert into takes values('97101', '493', '1', 'Spring', 2010, 'A '); + insert into takes values('43211', '696', '1', 'Spring', 2002, 'B-'); + insert into takes values('11262', '408', '1', 'Spring', 2007, 'B-'); + insert into takes values('5243', '304', '1', 'Fall', 2009, 'A '); + insert into takes values('92867', '760', '1', 'Spring', 2004, 'B '); + insert into takes values('63310', '158', '2', 'Spring', 2008, 'A '); + insert into takes values('83204', '591', '1', 'Spring', 2005, 'B-'); + insert into takes values('99369', '631', '1', 'Spring', 2007, 'B-'); + insert into takes values('4438', '791', '1', 'Spring', 2006, 'B-'); + insert into takes values('67407', '366', '1', 'Fall', 2005, 'C-'); + insert into takes values('78892', '270', '1', 'Spring', 2010, 'A '); + insert into takes values('95697', '599', '1', 'Spring', 2003, 'B+'); + insert into takes values('32056', '489', '1', 'Fall', 2007, 'B-'); + insert into takes values('12563', '802', '1', 'Spring', 2003, 'C '); + insert into takes values('69628', '486', '1', 'Fall', 2009, 'B-'); + insert into takes values('28316', '599', '1', 'Spring', 2003, 'A-'); + insert into takes values('24374', '445', '1', 'Spring', 2001, 'A+'); + insert into takes values('58595', '105', '2', 'Fall', 2002, 'C-'); + insert into takes values('75510', '476', '1', 'Fall', 2010, 'A+'); + insert into takes values('30845', '663', '1', 'Spring', 2005, 'A '); + insert into takes values('18469', '591', '1', 'Spring', 2005, 'B+'); + insert into takes values('76224', '795', '1', 'Spring', 2004, 'C-'); + insert into takes values('58846', '415', '1', 'Fall', 2010, 'A-'); + insert into takes values('31137', '304', '1', 'Fall', 2009, 'A '); + insert into takes values('1110', '338', '2', 'Spring', 2006, 'C '); + insert into takes values('88993', '612', '1', 'Fall', 2007, 'B+'); + insert into takes values('914', '457', '1', 'Spring', 2001, 'C+'); + insert into takes values('97868', '200', '2', 'Fall', 2002, 'A '); + insert into takes values('57962', '362', '2', 'Fall', 2006, 'B-'); + insert into takes values('65563', '443', '1', 'Spring', 2010, 'A+'); + insert into takes values('90124', '105', '1', 'Fall', 2009, 'B+'); + insert into takes values('29002', '270', '1', 'Spring', 2010, 'C+'); + insert into takes values('38545', '927', '1', 'Fall', 2002, 'A '); + insert into takes values('33759', '612', '1', 'Fall', 2007, 'C '); + insert into takes values('52866', '476', '1', 'Fall', 2010, 'C+'); + insert into takes values('43123', '949', '1', 'Fall', 2007, 'B '); + insert into takes values('37449', '270', '1', 'Spring', 2010, 'B '); + insert into takes values('31442', '192', '1', 'Fall', 2002, 'C+'); + insert into takes values('14668', '974', '1', 'Fall', 2003, 'B '); + insert into takes values('87965', '362', '1', 'Fall', 2005, 'C+'); + insert into takes values('29462', '362', '3', 'Spring', 2008, 'A '); + insert into takes values('9440', '561', '1', 'Fall', 2006, 'C-'); + insert into takes values('390', '612', '1', 'Fall', 2007, 'C+'); + insert into takes values('48423', '401', '1', 'Fall', 2003, 'B-'); + insert into takes values('94620', '304', '1', 'Fall', 2009, 'A-'); + insert into takes values('82063', '631', '1', 'Spring', 2007, 'C '); + insert into takes values('37869', '400', '2', 'Fall', 2003, 'C+'); + insert into takes values('83838', '545', '1', 'Fall', 2001, 'C '); + insert into takes values('30222', '489', '1', 'Fall', 2007, 'B-'); + insert into takes values('46441', '366', '1', 'Fall', 2005, 'B-'); + insert into takes values('31364', '735', '1', 'Spring', 2003, 'A+'); + insert into takes values('18859', '158', '1', 'Fall', 2008, 'C '); + insert into takes values('76672', '875', '1', 'Spring', 2005, 'B+'); + insert into takes values('85445', '867', '1', 'Fall', 2006, 'A '); + insert into takes values('24442', '974', '1', 'Fall', 2003, 'A+'); + insert into takes values('80698', '599', '1', 'Spring', 2003, 'C-'); + insert into takes values('61364', '376', '1', 'Fall', 2006, 'B-'); + insert into takes values('83838', '461', '1', 'Fall', 2002, 'B+'); + insert into takes values('38121', '604', '1', 'Spring', 2009, 'C+'); + insert into takes values('1000', '642', '1', 'Fall', 2004, 'C-'); + insert into takes values('22345', '270', '1', 'Spring', 2010, 'A-'); + insert into takes values('11055', '468', '2', 'Fall', 2007, 'A+'); + insert into takes values('86404', '242', '1', 'Fall', 2009, 'C '); + insert into takes values('21552', '702', '1', 'Spring', 2001, 'C+'); + insert into takes values('59397', '192', '1', 'Fall', 2002, 'B-'); + insert into takes values('15328', '400', '2', 'Fall', 2003, 'B+'); + insert into takes values('26473', '496', '1', 'Fall', 2001, 'C '); + insert into takes values('41599', '864', '1', 'Spring', 2006, 'C-'); + insert into takes values('25785', '960', '2', 'Fall', 2006, 'A+'); + insert into takes values('83480', '692', '1', 'Spring', 2010, 'C-'); + insert into takes values('11152', '694', '1', 'Fall', 2002, 'A+'); + insert into takes values('89414', '476', '1', 'Fall', 2010, 'B '); + insert into takes values('18583', '400', '1', 'Spring', 2007, 'A+'); + insert into takes values('1884', '200', '1', 'Spring', 2007, 'A-'); + insert into takes values('6712', '319', '1', 'Spring', 2003, 'A+'); + insert into takes values('99760', '852', '1', 'Spring', 2008, 'C '); + insert into takes values('13511', '852', '1', 'Spring', 2008, 'B '); + insert into takes values('67017', '496', '1', 'Fall', 2001, 'A-'); + insert into takes values('92839', '802', '1', 'Spring', 2003, 'B-'); + insert into takes values('40371', '362', '3', 'Spring', 2008, 'B-'); + insert into takes values('66229', '169', '2', 'Fall', 2002, 'A+'); + insert into takes values('96227', '629', '1', 'Spring', 2003, 'C-'); + insert into takes values('30896', '313', '1', 'Fall', 2010, 'C-'); + insert into takes values('96615', '192', '1', 'Fall', 2002, 'B+'); + insert into takes values('85308', '791', '1', 'Spring', 2006, 'C+'); + insert into takes values('22345', '105', '2', 'Fall', 2002, 'C+'); + insert into takes values('73602', '599', '1', 'Spring', 2003, 'B-'); + insert into takes values('46762', '158', '1', 'Fall', 2008, 'C-'); + insert into takes values('89106', '702', '1', 'Spring', 2001, 'B '); + insert into takes values('19824', '694', '1', 'Fall', 2002, 'C '); + insert into takes values('30021', '760', '1', 'Spring', 2004, 'A+'); + insert into takes values('9408', '793', '1', 'Spring', 2002, 'A-'); + insert into takes values('29260', '893', '1', 'Fall', 2007, 'C-'); + insert into takes values('86736', '991', '1', 'Spring', 2008, 'A-'); + insert into takes values('12078', '603', '1', 'Fall', 2003, 'C-'); + insert into takes values('58300', '200', '1', 'Spring', 2007, 'A '); + insert into takes values('93571', '527', '1', 'Fall', 2004, 'C-'); + insert into takes values('85505', '527', '1', 'Fall', 2004, 'A '); + insert into takes values('69521', '486', '1', 'Fall', 2009, 'B-'); + insert into takes values('1884', '808', '1', 'Fall', 2003, 'C-'); + insert into takes values('78469', '362', '1', 'Fall', 2005, 'A '); + insert into takes values('507', '443', '2', 'Spring', 2002, 'A '); + insert into takes values('31993', '991', '1', 'Spring', 2008, 'B+'); + insert into takes values('17924', '158', '2', 'Spring', 2008, 'C '); + insert into takes values('69679', '169', '1', 'Spring', 2007, 'A '); + insert into takes values('2967', '426', '1', 'Spring', 2006, 'A-'); + insert into takes values('15074', '443', '1', 'Spring', 2010, 'C+'); + insert into takes values('20244', '376', '1', 'Fall', 2006, 'A '); + insert into takes values('5617', '489', '1', 'Fall', 2007, 'B+'); + insert into takes values('32483', '603', '1', 'Fall', 2003, 'C '); + insert into takes values('31761', '486', '1', 'Fall', 2009, 'A '); + insert into takes values('66281', '338', '1', 'Spring', 2007, 'C-'); + insert into takes values('56058', '313', '1', 'Fall', 2010, 'C '); + insert into takes values('36926', '631', '1', 'Spring', 2007, 'C-'); + insert into takes values('16467', '158', '1', 'Fall', 2008, 'A '); + insert into takes values('49611', '604', '1', 'Spring', 2009, 'B-'); + insert into takes values('13921', '642', '1', 'Fall', 2004, 'C '); + insert into takes values('13408', '169', '2', 'Fall', 2002, 'A+'); + insert into takes values('76169', '974', '1', 'Fall', 2003, 'C+'); + insert into takes values('17944', '599', '1', 'Spring', 2003, 'B+'); + insert into takes values('98984', '991', '1', 'Spring', 2008, 'B+'); + insert into takes values('89106', '629', '1', 'Spring', 2003, 'A '); + insert into takes values('64039', '974', '1', 'Fall', 2003, 'C '); + insert into takes values('24865', '158', '2', 'Spring', 2008, 'B-'); + insert into takes values('97400', '692', '1', 'Spring', 2010, 'C-'); + insert into takes values('93653', '468', '1', 'Fall', 2005, 'B-'); + insert into takes values('50598', '867', '1', 'Fall', 2006, 'C-'); + insert into takes values('73542', '747', '1', 'Spring', 2004, 'A '); + insert into takes values('8912', '461', '1', 'Fall', 2002, 'C '); + insert into takes values('17996', '949', '1', 'Fall', 2007, 'B+'); + insert into takes values('71944', '867', '2', 'Fall', 2010, 'C+'); + insert into takes values('57123', '426', '1', 'Spring', 2006, 'C+'); + insert into takes values('1884', '612', '1', 'Fall', 2007, 'C-'); + insert into takes values('96741', '962', '1', 'Spring', 2008, 'B+'); + insert into takes values('75395', '561', '1', 'Fall', 2006, 'B '); + insert into takes values('18752', '629', '1', 'Spring', 2003, 'B-'); + insert into takes values('14214', '237', '2', 'Fall', 2009, 'B+'); + insert into takes values('19541', '991', '1', 'Spring', 2008, 'A-'); + insert into takes values('80113', '893', '1', 'Fall', 2007, 'B '); + insert into takes values('78911', '400', '2', 'Fall', 2003, 'C+'); + insert into takes values('65329', '319', '1', 'Spring', 2003, 'B-'); + insert into takes values('21086', '239', '1', 'Fall', 2006, 'C+'); + insert into takes values('259', '875', '1', 'Spring', 2005, 'A-'); + insert into takes values('64731', '349', '1', 'Spring', 2008, 'A+'); + insert into takes values('13403', '486', '1', 'Fall', 2009, 'B-'); + insert into takes values('72055', '237', '1', 'Spring', 2008, 'A-'); + insert into takes values('76224', '468', '1', 'Fall', 2005, 'A+'); + insert into takes values('25331', '445', '1', 'Spring', 2001, 'C-'); + insert into takes values('259', '334', '1', 'Fall', 2009, 'C+'); + insert into takes values('40059', '893', '1', 'Fall', 2007, 'C '); + insert into takes values('66753', '679', '1', 'Spring', 2010, 'A '); + insert into takes values('73268', '864', '1', 'Spring', 2006, 'C+'); + insert into takes values('76057', '349', '1', 'Spring', 2008, 'B '); + insert into takes values('13290', '270', '1', 'Spring', 2010, 'C+'); + insert into takes values('53699', '242', '1', 'Fall', 2009, 'C-'); + insert into takes values('71387', '362', '3', 'Spring', 2008, 'C-'); + insert into takes values('33107', '694', '1', 'Fall', 2002, 'C+'); + insert into takes values('71085', '852', '1', 'Spring', 2008, 'C-'); + insert into takes values('70359', '604', '1', 'Spring', 2009, 'C '); + insert into takes values('827', '631', '1', 'Spring', 2007, 'B-'); + insert into takes values('15024', '270', '1', 'Spring', 2010, 'C+'); + insert into takes values('68278', '735', '2', 'Spring', 2010, 'C '); + insert into takes values('65329', '408', '1', 'Spring', 2007, 'C+'); + insert into takes values('87048', '200', '2', 'Fall', 2002, 'B+'); + insert into takes values('67017', '974', '1', 'Fall', 2003, 'C-'); + insert into takes values('85534', '571', '1', 'Spring', 2004, 'A+'); + insert into takes values('898', '362', '2', 'Fall', 2006, 'C '); + insert into takes values('85211', '960', '1', 'Fall', 2009, 'B-'); + insert into takes values('41406', '581', '1', 'Spring', 2005, 'B '); + insert into takes values('46762', '867', '1', 'Fall', 2006, 'A+'); + insert into takes values('97694', '603', '1', 'Fall', 2003, 'C-'); + insert into takes values('33759', '631', '1', 'Spring', 2007, 'C '); + insert into takes values('36791', '571', '1', 'Spring', 2004, 'A-'); + insert into takes values('898', '960', '2', 'Fall', 2006, 'B+'); + insert into takes values('25940', '345', '1', 'Spring', 2008, 'B-'); + insert into takes values('46337', '362', '2', 'Fall', 2006, 'C '); + insert into takes values('85614', '496', '1', 'Fall', 2001, 'B '); + insert into takes values('44881', '959', '1', 'Fall', 2006, 'B '); + insert into takes values('4034', '137', '1', 'Spring', 2002, 'B '); + insert into takes values('69230', '843', '1', 'Fall', 2010, 'C-'); + insert into takes values('25380', '612', '1', 'Fall', 2007, 'B-'); + insert into takes values('67018', '400', '2', 'Fall', 2003, 'B+'); + insert into takes values('98619', '443', '1', 'Spring', 2010, 'A+'); + insert into takes values('28989', '461', '1', 'Fall', 2002, 'B+'); + insert into takes values('54296', '629', '1', 'Spring', 2003, 'B '); + insert into takes values('59539', '304', '1', 'Fall', 2009, 'A-'); + insert into takes values('84495', '461', '1', 'Fall', 2002, 'B-'); + insert into takes values('75794', '366', '1', 'Fall', 2005, 'C-'); + insert into takes values('10693', '612', '1', 'Fall', 2007, 'B+'); + insert into takes values('73328', '927', '1', 'Fall', 2002, 'A+'); + insert into takes values('26695', '599', '1', 'Spring', 2003, 'A-'); + insert into takes values('31476', '559', '1', 'Fall', 2002, 'B+'); + insert into takes values('99422', '362', '1', 'Fall', 2005, 'C-'); + insert into takes values('87246', '400', '1', 'Spring', 2007, 'B+'); + insert into takes values('30124', '319', '1', 'Spring', 2003, 'C+'); + insert into takes values('51579', '561', '1', 'Fall', 2006, 'B '); + insert into takes values('66229', '158', '1', 'Fall', 2008, 'A+'); + insert into takes values('13290', '105', '2', 'Fall', 2002, 'A-'); + insert into takes values('80420', '974', '1', 'Fall', 2003, 'A+'); + insert into takes values('53788', '735', '1', 'Spring', 2003, 'A-'); + insert into takes values('39978', '401', '1', 'Fall', 2003, 'B '); + insert into takes values('107', '105', '2', 'Fall', 2002, 'A-'); + insert into takes values('32772', '258', '1', 'Fall', 2007, 'B-'); + insert into takes values('14023', '852', '1', 'Spring', 2008, 'A '); + insert into takes values('82066', '457', '1', 'Spring', 2001, 'B-'); + insert into takes values('8378', '137', '1', 'Spring', 2002, 'B '); + insert into takes values('64164', '445', '1', 'Spring', 2001, 'C-'); + insert into takes values('75273', '663', '1', 'Spring', 2005, 'A+'); + insert into takes values('67017', '893', '1', 'Fall', 2007, 'C '); + insert into takes values('12683', '949', '1', 'Fall', 2007, 'A '); + insert into takes values('51093', '158', '1', 'Fall', 2008, 'B '); + insert into takes values('78922', '443', '1', 'Spring', 2010, 'C '); + insert into takes values('17507', '631', '1', 'Spring', 2007, 'B '); + insert into takes values('38121', '875', '1', 'Spring', 2005, 'C-'); + insert into takes values('9953', '400', '2', 'Fall', 2003, 'A+'); + insert into takes values('34329', '192', '1', 'Fall', 2002, 'C+'); + insert into takes values('17607', '105', '1', 'Fall', 2009, 'C+'); + insert into takes values('85849', '352', '1', 'Spring', 2006, 'B-'); + insert into takes values('83170', '476', '1', 'Fall', 2010, 'A-'); + insert into takes values('67293', '366', '1', 'Fall', 2005, 'C+'); + insert into takes values('46066', '376', '1', 'Fall', 2006, 'A+'); + insert into takes values('1000', '663', '1', 'Spring', 2005, 'C+'); + insert into takes values('16543', '696', '1', 'Spring', 2002, 'A+'); + insert into takes values('43495', '270', '1', 'Spring', 2010, 'B '); + insert into takes values('31690', '696', '1', 'Spring', 2002, 'B-'); + insert into takes values('33107', '793', '1', 'Spring', 2002, 'B '); + insert into takes values('79170', '421', '1', 'Fall', 2004, 'B-'); + insert into takes values('47126', '559', '1', 'Fall', 2002, 'B+'); + insert into takes values('50039', '362', '1', 'Fall', 2005, 'B '); + insert into takes values('19342', '242', '1', 'Fall', 2009, 'A+'); + insert into takes values('46035', '362', '2', 'Fall', 2006, 'B+'); + insert into takes values('58081', '760', '1', 'Spring', 2004, 'B-'); + insert into takes values('74530', '169', '1', 'Spring', 2007, 'A '); + insert into takes values('288', '735', '1', 'Spring', 2003, 'A-'); + insert into takes values('41671', '408', '1', 'Spring', 2007, 'C-'); + insert into takes values('27950', '735', '1', 'Spring', 2003, 'C+'); + insert into takes values('75046', '468', '2', 'Fall', 2007, 'B '); + insert into takes values('17600', '631', '1', 'Spring', 2007, 'A+'); + insert into takes values('77580', '747', '1', 'Spring', 2004, 'C '); + insert into takes values('94730', '893', '1', 'Fall', 2007, 'C+'); + insert into takes values('94801', '960', '1', 'Fall', 2009, 'B+'); + insert into takes values('78143', '338', '1', 'Spring', 2007, 'B+'); + insert into takes values('35935', '366', '1', 'Fall', 2005, 'B '); + insert into takes values('62152', '791', '1', 'Spring', 2006, 'C '); + insert into takes values('9460', '345', '1', 'Spring', 2008, 'C-'); + insert into takes values('32376', '974', '1', 'Fall', 2003, 'A-'); + insert into takes values('79502', '735', '2', 'Spring', 2010, 'C+'); + insert into takes values('83592', '791', '1', 'Spring', 2006, 'A+'); + insert into takes values('79697', '581', '1', 'Spring', 2005, 'B '); + insert into takes values('11855', '137', '1', 'Spring', 2002, 'B-'); + insert into takes values('87280', '704', '1', 'Spring', 2008, 'A+'); + insert into takes values('55238', '461', '1', 'Fall', 2002, 'C+'); + insert into takes values('27044', '612', '1', 'Fall', 2007, 'C '); + insert into takes values('82301', '258', '1', 'Fall', 2007, 'A+'); + insert into takes values('19766', '258', '1', 'Fall', 2007, 'B+'); + insert into takes values('69752', '496', '1', 'Fall', 2001, 'B '); + insert into takes values('39521', '334', '1', 'Fall', 2009, 'C-'); + insert into takes values('77415', '959', '1', 'Fall', 2006, 'C-'); + insert into takes values('32506', '747', '1', 'Spring', 2004, 'C+'); + insert into takes values('61402', '313', '1', 'Fall', 2010, 'A '); + insert into takes values('49813', '362', '1', 'Fall', 2005, 'A+'); + insert into takes values('89132', '959', '1', 'Fall', 2006, 'A-'); + insert into takes values('47487', '169', '1', 'Spring', 2007, 'B-'); + insert into takes values('95574', '959', '1', 'Fall', 2006, 'B-'); + insert into takes values('50414', '748', '1', 'Fall', 2003, 'C+'); + insert into takes values('39901', '313', '1', 'Fall', 2010, 'A '); + insert into takes values('91978', '366', '1', 'Fall', 2005, 'C-'); + insert into takes values('14628', '468', '1', 'Fall', 2005, 'B-'); + insert into takes values('53165', '867', '1', 'Fall', 2006, 'C-'); + insert into takes values('11453', '274', '1', 'Fall', 2002, 'A '); + insert into takes values('3576', '760', '1', 'Spring', 2004, 'C '); + insert into takes values('11057', '843', '1', 'Fall', 2010, 'C '); + insert into takes values('6990', '489', '1', 'Fall', 2007, 'C+'); + insert into takes values('79210', '237', '2', 'Fall', 2009, 'A+'); + insert into takes values('4004', '760', '1', 'Spring', 2004, 'C '); + insert into takes values('24387', '352', '1', 'Spring', 2006, 'A-'); + insert into takes values('38696', '591', '1', 'Spring', 2005, 'B '); + insert into takes values('23475', '443', '2', 'Spring', 2002, 'B+'); + insert into takes values('21337', '239', '1', 'Fall', 2006, 'A-'); + insert into takes values('25331', '735', '2', 'Spring', 2010, 'C-'); + insert into takes values('55698', '603', '1', 'Fall', 2003, 'B-'); + insert into takes values('70564', '457', '1', 'Spring', 2001, 'C-'); + insert into takes values('62705', '793', '1', 'Spring', 2002, 'B '); + insert into takes values('40897', '461', '1', 'Fall', 2002, 'B '); + insert into takes values('64067', '366', '1', 'Fall', 2005, 'C+'); + insert into takes values('85366', '696', '1', 'Spring', 2002, 'C+'); + insert into takes values('435', '599', '1', 'Spring', 2003, 'C-'); + insert into takes values('5017', '421', '1', 'Fall', 2004, 'A '); + insert into takes values('89140', '581', '1', 'Spring', 2005, 'B-'); + insert into takes values('57431', '400', '1', 'Spring', 2007, 'C+'); + insert into takes values('2967', '493', '1', 'Spring', 2010, 'A+'); + insert into takes values('31101', '571', '1', 'Spring', 2004, 'B+'); + insert into takes values('89132', '400', '2', 'Fall', 2003, 'A+'); + insert into takes values('53424', '679', '1', 'Spring', 2010, 'B-'); + insert into takes values('87268', '679', '1', 'Spring', 2010, 'C '); + insert into takes values('82970', '426', '1', 'Spring', 2006, 'A '); + insert into takes values('36244', '867', '2', 'Fall', 2010, 'C '); + insert into takes values('60366', '927', '1', 'Fall', 2002, 'B '); + insert into takes values('75273', '400', '1', 'Spring', 2007, 'C '); + insert into takes values('99422', '631', '1', 'Spring', 2007, 'A '); + insert into takes values('61783', '362', '2', 'Fall', 2006, 'C-'); + insert into takes values('92040', '334', '1', 'Fall', 2009, 'A+'); + insert into takes values('68330', '795', '1', 'Spring', 2004, 'C+'); + insert into takes values('47630', '748', '1', 'Fall', 2003, 'B+'); + insert into takes values('90234', '663', '1', 'Spring', 2005, 'C '); + insert into takes values('21766', '258', '1', 'Fall', 2007, 'B '); + insert into takes values('435', '445', '1', 'Spring', 2001, 'B+'); + insert into takes values('11152', '704', '1', 'Spring', 2008, 'C+'); + insert into takes values('24197', '237', '1', 'Spring', 2008, 'B-'); + insert into takes values('57666', '960', '1', 'Fall', 2009, 'C-'); + insert into takes values('30252', '527', '1', 'Fall', 2004, 'C '); + insert into takes values('7498', '591', '1', 'Spring', 2005, 'C '); + insert into takes values('23934', '545', '1', 'Fall', 2001, 'A-'); + insert into takes values('24325', '169', '1', 'Spring', 2007, 'C+'); + insert into takes values('31137', '362', '2', 'Fall', 2006, 'A+'); + insert into takes values('52494', '704', '1', 'Spring', 2008, 'C+'); + insert into takes values('12069', '694', '1', 'Fall', 2002, 'A '); + insert into takes values('39204', '604', '1', 'Spring', 2009, 'A '); + insert into takes values('64642', '571', '1', 'Spring', 2004, 'A-'); + insert into takes values('49792', '400', '2', 'Fall', 2003, 'C '); + insert into takes values('87706', '927', '1', 'Fall', 2002, 'B '); + insert into takes values('27662', '702', '1', 'Spring', 2001, 'C-'); + insert into takes values('90009', '400', '2', 'Fall', 2003, 'B+'); + insert into takes values('10556', '991', '1', 'Spring', 2008, 'B+'); + insert into takes values('5298', '802', '1', 'Spring', 2003, 'A '); + insert into takes values('842', '401', '1', 'Fall', 2003, 'C-'); + insert into takes values('70828', '867', '1', 'Fall', 2006, 'A-'); + insert into takes values('86552', '591', '1', 'Spring', 2005, 'C '); + insert into takes values('44985', '959', '1', 'Fall', 2006, 'C '); + insert into takes values('95626', '401', '1', 'Fall', 2003, 'C '); + insert into takes values('11237', '200', '2', 'Fall', 2002, 'C+'); + insert into takes values('58889', '702', '1', 'Spring', 2001, 'A-'); + insert into takes values('29140', '631', '1', 'Spring', 2007, 'A '); + insert into takes values('17207', '604', '1', 'Spring', 2009, 'C+'); + insert into takes values('29435', '105', '1', 'Fall', 2009, 'B+'); + insert into takes values('21395', '239', '1', 'Fall', 2006, 'B-'); + insert into takes values('93508', '679', '1', 'Spring', 2010, 'C+'); + insert into takes values('282', '400', '1', 'Spring', 2007, 'A-'); + insert into takes values('52385', '237', '2', 'Fall', 2009, 'C+'); + insert into takes values('52371', '482', '1', 'Fall', 2005, 'A-'); + insert into takes values('25077', '408', '2', 'Spring', 2003, 'C-'); + insert into takes values('7514', '791', '1', 'Spring', 2006, 'A '); + insert into takes values('50702', '927', '1', 'Fall', 2002, 'B '); + insert into takes values('13028', '468', '1', 'Fall', 2005, 'A '); + insert into takes values('29707', '561', '1', 'Fall', 2006, 'B '); + insert into takes values('92949', '571', '1', 'Spring', 2004, 'B-'); + insert into takes values('20489', '105', '2', 'Fall', 2002, 'B '); + insert into takes values('24796', '626', '1', 'Fall', 2006, 'B+'); + insert into takes values('27140', '735', '2', 'Spring', 2010, 'C '); + insert into takes values('57083', '486', '1', 'Fall', 2009, 'C-'); + insert into takes values('68330', '468', '2', 'Fall', 2007, 'B '); + insert into takes values('65714', '867', '2', 'Fall', 2010, 'A+'); + insert into takes values('77415', '338', '1', 'Spring', 2007, 'B-'); + insert into takes values('3640', '748', '1', 'Fall', 2003, 'C+'); + insert into takes values('69222', '795', '1', 'Spring', 2004, 'B-'); + insert into takes values('98423', '421', '1', 'Fall', 2004, 'A+'); + insert into takes values('33401', '338', '1', 'Spring', 2007, 'A '); + insert into takes values('96324', '408', '2', 'Spring', 2003, 'A '); + insert into takes values('32217', '362', '3', 'Spring', 2008, 'A-'); + insert into takes values('86552', '319', '1', 'Spring', 2003, 'A+'); + insert into takes values('52876', '338', '2', 'Spring', 2006, 'C-'); + insert into takes values('44038', '791', '1', 'Spring', 2006, 'B-'); + insert into takes values('94726', '158', '1', 'Fall', 2008, 'C+'); + insert into takes values('36494', '760', '1', 'Spring', 2004, 'C+'); + insert into takes values('43505', '561', '1', 'Fall', 2006, 'B+'); + insert into takes values('34329', '843', '1', 'Fall', 2010, 'C+'); + insert into takes values('89414', '867', '1', 'Fall', 2006, 'B-'); + insert into takes values('7602', '867', '2', 'Fall', 2010, 'C+'); + insert into takes values('16528', '338', '1', 'Spring', 2007, 'A+'); + insert into takes values('68150', '486', '1', 'Fall', 2009, 'B+'); + insert into takes values('25718', '352', '1', 'Spring', 2006, 'A-'); + insert into takes values('82707', '599', '1', 'Spring', 2003, 'B '); + insert into takes values('28133', '401', '1', 'Fall', 2003, 'C+'); + insert into takes values('80742', '735', '1', 'Spring', 2003, 'C-'); + insert into takes values('69222', '258', '1', 'Fall', 2007, 'B '); + insert into takes values('34158', '334', '1', 'Fall', 2009, 'A-'); + insert into takes values('69471', '400', '2', 'Fall', 2003, 'A '); + insert into takes values('50598', '875', '1', 'Spring', 2005, 'B+'); + insert into takes values('50598', '603', '1', 'Fall', 2003, 'C+'); + insert into takes values('82063', '629', '1', 'Spring', 2003, 'A '); + insert into takes values('30845', '867', '2', 'Fall', 2010, 'A '); + insert into takes values('76250', '457', '1', 'Spring', 2001, 'A+'); + insert into takes values('5920', '401', '1', 'Fall', 2003, 'C '); + insert into takes values('80698', '843', '1', 'Fall', 2010, 'C-'); + insert into takes values('37946', '482', '1', 'Fall', 2005, 'C+'); + insert into takes values('16849', '319', '1', 'Spring', 2003, 'B+'); + insert into takes values('56058', '663', '1', 'Spring', 2005, 'A+'); + insert into takes values('68263', '237', '1', 'Spring', 2008, 'B '); + insert into takes values('67146', '426', '1', 'Spring', 2006, 'A '); + insert into takes values('10705', '604', '1', 'Spring', 2009, 'B+'); + insert into takes values('66259', '158', '2', 'Spring', 2008, 'C+'); + insert into takes values('54672', '760', '1', 'Spring', 2004, 'B+'); + insert into takes values('61527', '704', '1', 'Spring', 2008, 'B '); + insert into takes values('94894', '334', '1', 'Fall', 2009, 'A-'); + insert into takes values('18007', '443', '1', 'Spring', 2010, 'B-'); + insert into takes values('53788', '612', '1', 'Fall', 2007, 'B+'); + insert into takes values('9514', '629', '1', 'Spring', 2003, 'A+'); + insert into takes values('57107', '319', '1', 'Spring', 2003, 'A+'); + insert into takes values('28518', '747', '1', 'Spring', 2004, 'A '); + insert into takes values('59117', '496', '1', 'Fall', 2001, 'A-'); + insert into takes values('67425', '366', '1', 'Fall', 2005, 'A+'); + insert into takes values('35935', '400', '2', 'Fall', 2003, 'C '); + insert into takes values('1726', '545', '1', 'Fall', 2001, 'C-'); + insert into takes values('22912', '362', '3', 'Spring', 2008, 'C+'); + insert into takes values('34788', '105', '1', 'Fall', 2009, 'A-'); + insert into takes values('96153', '482', '1', 'Fall', 2005, 'C+'); + insert into takes values('73602', '626', '1', 'Fall', 2006, 'C+'); + insert into takes values('68242', '445', '1', 'Spring', 2001, 'C-'); + insert into takes values('77231', '137', '1', 'Spring', 2002, 'B+'); + insert into takes values('36379', '545', '1', 'Fall', 2001, 'B '); + insert into takes values('61737', '972', '1', 'Spring', 2009, 'C+'); + insert into takes values('50703', '349', '1', 'Spring', 2008, 'C-'); + insert into takes values('4940', '362', '1', 'Fall', 2005, 'A-'); + insert into takes values('46451', '559', '1', 'Fall', 2002, 'C-'); + insert into takes values('27044', '760', '1', 'Spring', 2004, 'B '); + insert into takes values('50977', '239', '1', 'Fall', 2006, 'C '); + insert into takes values('93039', '735', '2', 'Spring', 2010, 'B+'); + insert into takes values('78792', '571', '1', 'Spring', 2004, 'C '); + insert into takes values('79772', '867', '1', 'Fall', 2006, 'C+'); + insert into takes values('45570', '864', '1', 'Spring', 2006, 'A '); + insert into takes values('20378', '702', '1', 'Spring', 2001, 'B '); + insert into takes values('69230', '105', '2', 'Fall', 2002, 'C-'); + insert into takes values('3487', '949', '1', 'Fall', 2007, 'A-'); + insert into takes values('30177', '352', '1', 'Spring', 2006, 'B-'); + insert into takes values('64297', '991', '1', 'Spring', 2008, 'A+'); + insert into takes values('25380', '338', '2', 'Spring', 2006, 'B-'); + insert into takes values('63886', '545', '1', 'Fall', 2001, 'B-'); + insert into takes values('14094', '274', '1', 'Fall', 2002, 'A-'); + insert into takes values('72657', '169', '1', 'Spring', 2007, 'A+'); + insert into takes values('25143', '489', '1', 'Fall', 2007, 'C+'); + insert into takes values('19861', '362', '2', 'Fall', 2006, 'B+'); + insert into takes values('65056', '319', '1', 'Spring', 2003, 'C '); + insert into takes values('77218', '192', '1', 'Fall', 2002, 'A-'); + insert into takes values('67542', '338', '1', 'Spring', 2007, 'A '); + insert into takes values('48469', '345', '1', 'Spring', 2008, 'A '); + insert into takes values('95574', '362', '1', 'Fall', 2005, 'C-'); + insert into takes values('65563', '626', '1', 'Fall', 2006, 'C-'); + insert into takes values('63090', '527', '1', 'Fall', 2004, 'C '); + insert into takes values('44551', '663', '1', 'Spring', 2005, 'C+'); + insert into takes values('79763', '599', '1', 'Spring', 2003, 'C-'); + insert into takes values('9084', '893', '1', 'Fall', 2007, 'C+'); + insert into takes values('35', '400', '2', 'Fall', 2003, 'C-'); + insert into takes values('8986', '561', '1', 'Fall', 2006, 'B '); + insert into takes values('22258', '791', '1', 'Spring', 2006, 'B-'); + insert into takes values('84515', '362', '2', 'Fall', 2006, 'A-'); + insert into takes values('62754', '338', '1', 'Spring', 2007, 'A-'); + insert into takes values('1737', '867', '2', 'Fall', 2010, 'C '); + insert into takes values('57213', '793', '1', 'Spring', 2002, 'B '); + insert into takes values('34329', '991', '1', 'Spring', 2008, 'C+'); + insert into takes values('67018', '270', '1', 'Spring', 2010, 'C '); + insert into takes values('60249', '696', '1', 'Spring', 2002, 'A '); + insert into takes values('79329', '461', '1', 'Fall', 2002, 'B-'); + insert into takes values('60984', '169', '2', 'Fall', 2002, 'B '); + insert into takes values('93653', '867', '1', 'Fall', 2006, 'A+'); + insert into takes values('70452', '679', '1', 'Spring', 2010, 'A-'); + insert into takes values('82591', '486', '1', 'Fall', 2009, 'C '); + insert into takes values('24809', '105', '2', 'Fall', 2002, 'C-'); + insert into takes values('69230', '468', '1', 'Fall', 2005, 'B '); + insert into takes values('61854', '349', '1', 'Spring', 2008, 'C+'); + insert into takes values('38555', '852', '1', 'Spring', 2008, 'A '); + insert into takes values('20002', '366', '1', 'Fall', 2005, 'C+'); + insert into takes values('28133', '400', '2', 'Fall', 2003, 'B+'); + insert into takes values('26494', '338', '2', 'Spring', 2006, 'A '); + insert into takes values('66753', '893', '1', 'Fall', 2007, 'C-'); + insert into takes values('19342', '200', '2', 'Fall', 2002, 'A+'); + insert into takes values('87785', '486', '1', 'Fall', 2009, 'A-'); + insert into takes values('43981', '642', '1', 'Fall', 2004, 'C '); + insert into takes values('82646', '349', '1', 'Spring', 2008, 'A-'); + insert into takes values('82646', '581', '1', 'Spring', 2005, 'A-'); + insert into takes values('90448', '642', '1', 'Fall', 2004, 'B-'); + insert into takes values('83480', '313', '1', 'Fall', 2010, 'A-'); + insert into takes values('29399', '843', '1', 'Fall', 2010, 'C '); + insert into takes values('96153', '793', '1', 'Spring', 2002, 'A '); + insert into takes values('67425', '642', '1', 'Fall', 2004, 'A '); + insert into takes values('55009', '415', '1', 'Fall', 2010, 'C '); + insert into takes values('30474', '443', '1', 'Spring', 2010, 'C-'); + insert into takes values('78792', '893', '1', 'Fall', 2007, 'B+'); + insert into takes values('46106', '352', '1', 'Spring', 2006, 'B '); + insert into takes values('29871', '642', '1', 'Fall', 2004, 'A-'); + insert into takes values('40457', '949', '1', 'Fall', 2007, 'B+'); + insert into takes values('57431', '808', '1', 'Fall', 2003, 'C+'); + insert into takes values('85575', '242', '1', 'Fall', 2009, 'A+'); + insert into takes values('75252', '443', '1', 'Spring', 2010, 'A '); + insert into takes values('19848', '864', '1', 'Spring', 2006, 'B-'); + insert into takes values('36995', '496', '1', 'Fall', 2001, 'B+'); + insert into takes values('85849', '747', '1', 'Spring', 2004, 'A '); + insert into takes values('16885', '401', '1', 'Fall', 2003, 'A+'); + insert into takes values('58594', '362', '3', 'Spring', 2008, 'A '); + insert into takes values('86573', '274', '1', 'Fall', 2002, 'A-'); + insert into takes values('11262', '362', '1', 'Fall', 2005, 'A '); + insert into takes values('89734', '629', '1', 'Spring', 2003, 'B-'); + insert into takes values('21100', '791', '1', 'Spring', 2006, 'A+'); + insert into takes values('44304', '791', '1', 'Spring', 2006, 'A '); + insert into takes values('73165', '949', '1', 'Fall', 2007, 'A '); + insert into takes values('73186', '864', '1', 'Spring', 2006, 'A+'); + insert into takes values('72622', '959', '1', 'Fall', 2006, 'B '); + insert into takes values('15030', '169', '2', 'Fall', 2002, 'A+'); + insert into takes values('87624', '603', '1', 'Fall', 2003, 'A+'); + insert into takes values('83170', '663', '1', 'Spring', 2005, 'A+'); + insert into takes values('80113', '694', '1', 'Fall', 2002, 'A-'); + insert into takes values('46694', '496', '1', 'Fall', 2001, 'A-'); + insert into takes values('14094', '679', '1', 'Spring', 2010, 'C-'); + insert into takes values('99463', '959', '1', 'Fall', 2006, 'B+'); + insert into takes values('23525', '581', '1', 'Spring', 2005, 'C '); + insert into takes values('64082', '852', '1', 'Spring', 2008, 'A '); + insert into takes values('22226', '461', '1', 'Fall', 2002, 'A+'); + insert into takes values('77588', '415', '1', 'Fall', 2010, 'B-'); + insert into takes values('33338', '338', '1', 'Spring', 2007, 'A '); + insert into takes values('18007', '604', '1', 'Spring', 2009, 'B '); + insert into takes values('16523', '893', '1', 'Fall', 2007, 'B+'); + insert into takes values('108', '991', '1', 'Spring', 2008, 'C+'); + insert into takes values('18859', '795', '1', 'Spring', 2004, 'B '); + insert into takes values('39927', '974', '1', 'Fall', 2003, 'A '); + insert into takes values('66753', '362', '3', 'Spring', 2008, 'B+'); + insert into takes values('72643', '408', '2', 'Spring', 2003, 'A-'); + insert into takes values('61356', '864', '1', 'Spring', 2006, 'B-'); + insert into takes values('44206', '603', '1', 'Fall', 2003, 'A '); + insert into takes values('11083', '338', '2', 'Spring', 2006, 'C-'); + insert into takes values('60406', '612', '1', 'Fall', 2007, 'B+'); + insert into takes values('11237', '137', '1', 'Spring', 2002, 'B-'); + insert into takes values('64249', '237', '2', 'Fall', 2009, 'C+'); + insert into takes values('41675', '802', '1', 'Spring', 2003, 'C '); + insert into takes values('10917', '974', '1', 'Fall', 2003, 'C-'); + insert into takes values('92864', '258', '1', 'Fall', 2007, 'A-'); + insert into takes values('3143', '338', '1', 'Spring', 2007, 'B+'); + insert into takes values('2419', '158', '1', 'Fall', 2008, 'C+'); + insert into takes values('17339', '304', '1', 'Fall', 2009, 'B+'); + insert into takes values('14869', '591', '1', 'Spring', 2005, 'C '); + insert into takes values('72643', '559', '1', 'Fall', 2002, 'C '); + insert into takes values('52203', '486', '1', 'Fall', 2009, 'A '); + insert into takes values('2139', '748', '1', 'Fall', 2003, 'C '); + insert into takes values('66969', '169', '1', 'Spring', 2007, 'B '); + insert into takes values('37818', '604', '1', 'Spring', 2009, 'B-'); + insert into takes values('65038', '366', '1', 'Fall', 2005, 'B+'); + insert into takes values('64140', '603', '1', 'Fall', 2003, 'A-'); + insert into takes values('37759', '400', '2', 'Fall', 2003, 'C+'); + insert into takes values('33338', '747', '1', 'Spring', 2004, 'A '); + insert into takes values('3163', '581', '1', 'Spring', 2005, 'A-'); + insert into takes values('34957', '852', '1', 'Spring', 2008, 'A+'); + insert into takes values('35293', '362', '1', 'Fall', 2005, 'B+'); + insert into takes values('94815', '258', '1', 'Fall', 2007, 'B+'); + insert into takes values('30845', '962', '1', 'Spring', 2008, 'B '); + insert into takes values('31476', '169', '1', 'Spring', 2007, 'C+'); + insert into takes values('75794', '527', '1', 'Fall', 2004, 'A '); + insert into takes values('65258', '169', '1', 'Spring', 2007, 'C '); + insert into takes values('7656', '748', '1', 'Fall', 2003, 'B '); + insert into takes values('51549', '974', '1', 'Fall', 2003, 'B '); + insert into takes values('847', '949', '1', 'Fall', 2007, 'A+'); + insert into takes values('29399', '376', '1', 'Fall', 2006, 'C+'); + insert into takes values('64140', '192', '1', 'Fall', 2002, 'A '); + insert into takes values('87965', '401', '1', 'Fall', 2003, 'A+'); + insert into takes values('38696', '527', '1', 'Fall', 2004, 'B-'); + insert into takes values('85445', '362', '1', 'Fall', 2005, 'C-'); + insert into takes values('25046', '867', '1', 'Fall', 2006, 'C-'); + insert into takes values('33645', '408', '2', 'Spring', 2003, 'B+'); + insert into takes values('28994', '808', '1', 'Fall', 2003, 'C+'); + insert into takes values('20002', '242', '1', 'Fall', 2009, 'B '); + insert into takes values('53699', '408', '2', 'Spring', 2003, 'A+'); + insert into takes values('39157', '338', '2', 'Spring', 2006, 'A-'); + insert into takes values('41674', '362', '2', 'Fall', 2006, 'B '); + insert into takes values('45570', '408', '2', 'Spring', 2003, 'A '); + insert into takes values('53788', '581', '1', 'Spring', 2005, 'C-'); + insert into takes values('11530', '591', '1', 'Spring', 2005, 'A-'); + insert into takes values('90663', '604', '1', 'Spring', 2009, 'B '); + insert into takes values('89196', '237', '2', 'Fall', 2009, 'B-'); + insert into takes values('91616', '237', '1', 'Spring', 2008, 'A '); + insert into takes values('23992', '735', '2', 'Spring', 2010, 'B '); + insert into takes values('32772', '642', '1', 'Fall', 2004, 'B-'); + insert into takes values('80057', '972', '1', 'Spring', 2009, 'B '); + insert into takes values('16347', '192', '1', 'Fall', 2002, 'B '); + insert into takes values('58413', '334', '1', 'Fall', 2009, 'A+'); + insert into takes values('56058', '489', '1', 'Fall', 2007, 'B '); + insert into takes values('64155', '486', '1', 'Fall', 2009, 'B-'); + insert into takes values('93708', '959', '1', 'Fall', 2006, 'B-'); + insert into takes values('96710', '362', '1', 'Fall', 2005, 'C+'); + insert into takes values('12326', '242', '1', 'Fall', 2009, 'C '); + insert into takes values('29091', '426', '1', 'Spring', 2006, 'A-'); + insert into takes values('23794', '864', '1', 'Spring', 2006, 'C-'); + insert into takes values('89297', '169', '1', 'Spring', 2007, 'C-'); + insert into takes values('96227', '482', '1', 'Fall', 2005, 'C+'); + insert into takes values('21246', '489', '1', 'Fall', 2007, 'B+'); + insert into takes values('49280', '105', '2', 'Fall', 2002, 'C '); + insert into takes values('85754', '239', '1', 'Fall', 2006, 'B '); + insert into takes values('23311', '366', '1', 'Fall', 2005, 'B-'); + insert into takes values('29192', '867', '1', 'Fall', 2006, 'C-'); + insert into takes values('65396', '421', '1', 'Fall', 2004, 'C+'); + insert into takes values('81245', '704', '1', 'Spring', 2008, 'C-'); + insert into takes values('37430', '960', '1', 'Fall', 2009, 'A-'); + insert into takes values('6367', '445', '1', 'Spring', 2001, 'A '); + insert into takes values('49391', '105', '1', 'Fall', 2009, 'B-'); + insert into takes values('65443', '200', '1', 'Spring', 2007, 'A '); + insert into takes values('64934', '735', '1', 'Spring', 2003, 'B+'); + insert into takes values('96968', '704', '1', 'Spring', 2008, 'A-'); + insert into takes values('82082', '158', '1', 'Fall', 2008, 'C '); + insert into takes values('76911', '747', '1', 'Spring', 2004, 'C+'); + insert into takes values('44038', '867', '2', 'Fall', 2010, 'A-'); + insert into takes values('81245', '482', '1', 'Fall', 2005, 'B '); + insert into takes values('83039', '927', '1', 'Fall', 2002, 'B+'); + insert into takes values('5336', '599', '1', 'Spring', 2003, 'C-'); + insert into takes values('8819', '791', '1', 'Spring', 2006, 'A+'); + insert into takes values('10033', '629', '1', 'Spring', 2003, 'B-'); + insert into takes values('53805', '482', '1', 'Fall', 2005, 'C-'); + insert into takes values('7149', '345', '1', 'Spring', 2008, 'B-'); + insert into takes values('63040', '747', '1', 'Spring', 2004, 'C-'); + insert into takes values('81876', '591', '1', 'Spring', 2005, 'B '); + insert into takes values('35498', '679', '1', 'Spring', 2010, 'C '); + insert into takes values('70061', '242', '1', 'Fall', 2009, 'B-'); + insert into takes values('60748', '105', '1', 'Fall', 2009, 'A '); + insert into takes values('22260', '482', '1', 'Fall', 2005, 'B-'); + insert into takes values('13749', '239', '1', 'Fall', 2006, 'B-'); + insert into takes values('65438', '237', '2', 'Fall', 2009, 'A-'); + insert into takes values('6209', '270', '1', 'Spring', 2010, 'A+'); + insert into takes values('60249', '974', '1', 'Fall', 2003, 'A-'); + insert into takes values('827', '421', '1', 'Fall', 2004, 'A+'); + insert into takes values('62832', '334', '1', 'Fall', 2009, 'B '); + insert into takes values('65438', '461', '1', 'Fall', 2002, 'A+'); + insert into takes values('56276', '408', '1', 'Spring', 2007, 'B '); + insert into takes values('89551', '352', '1', 'Spring', 2006, 'A+'); + insert into takes values('52872', '476', '1', 'Fall', 2010, 'A+'); + insert into takes values('40738', '808', '1', 'Fall', 2003, 'C '); + insert into takes values('38973', '274', '1', 'Fall', 2002, 'C-'); + insert into takes values('12362', '591', '1', 'Spring', 2005, 'C '); + insert into takes values('63560', '991', '1', 'Spring', 2008, 'B+'); + insert into takes values('1812', '366', '1', 'Fall', 2005, 'B-'); + insert into takes values('57334', '735', '1', 'Spring', 2003, 'B+'); + insert into takes values('65987', '962', '1', 'Spring', 2008, 'A-'); + insert into takes values('69285', '482', '1', 'Fall', 2005, 'A+'); + insert into takes values('63040', '362', '1', 'Fall', 2005, 'C '); + insert into takes values('43616', '795', '1', 'Spring', 2004, 'A+'); + insert into takes values('66229', '105', '1', 'Fall', 2009, 'A '); + insert into takes values('71529', '457', '1', 'Spring', 2001, 'C+'); + insert into takes values('94173', '974', '1', 'Fall', 2003, 'C '); + insert into takes values('83462', '443', '1', 'Spring', 2010, 'A+'); + insert into takes values('47126', '960', '2', 'Fall', 2006, 'C-'); + insert into takes values('46436', '105', '2', 'Fall', 2002, 'A '); + insert into takes values('46769', '237', '2', 'Fall', 2009, 'B+'); + insert into takes values('31080', '991', '1', 'Spring', 2008, 'C+'); + insert into takes values('59908', '476', '1', 'Fall', 2010, 'A-'); + insert into takes values('39876', '352', '1', 'Spring', 2006, 'B '); + insert into takes values('19220', '496', '1', 'Fall', 2001, 'C '); + insert into takes values('87193', '791', '1', 'Spring', 2006, 'C '); + insert into takes values('82063', '158', '2', 'Spring', 2008, 'C-'); + insert into takes values('98690', '192', '1', 'Fall', 2002, 'C-'); + insert into takes values('57787', '603', '1', 'Fall', 2003, 'B '); + insert into takes values('71287', '345', '1', 'Spring', 2008, 'C-'); + insert into takes values('8819', '974', '1', 'Fall', 2003, 'B+'); + insert into takes values('50537', '457', '1', 'Spring', 2001, 'C-'); + insert into takes values('66269', '334', '1', 'Fall', 2009, 'C+'); + insert into takes values('24746', '867', '2', 'Fall', 2010, 'B '); + insert into takes values('59538', '421', '1', 'Fall', 2004, 'A+'); + insert into takes values('24630', '476', '1', 'Fall', 2010, 'B-'); + insert into takes values('90609', '482', '1', 'Fall', 2005, 'C '); + insert into takes values('95626', '612', '1', 'Fall', 2007, 'B+'); + insert into takes values('87222', '352', '1', 'Spring', 2006, 'B-'); + insert into takes values('25256', '415', '1', 'Fall', 2010, 'C+'); + insert into takes values('66259', '408', '2', 'Spring', 2003, 'A-'); + insert into takes values('14554', '559', '1', 'Fall', 2002, 'C+'); + insert into takes values('86674', '696', '1', 'Spring', 2002, 'C-'); + insert into takes values('71628', '631', '1', 'Spring', 2007, 'B-'); + insert into takes values('39978', '313', '1', 'Fall', 2010, 'B-'); + insert into takes values('95284', '545', '1', 'Fall', 2001, 'C '); + insert into takes values('28352', '612', '1', 'Fall', 2007, 'B '); + insert into takes values('85809', '258', '1', 'Fall', 2007, 'A+'); + insert into takes values('53152', '105', '2', 'Fall', 2002, 'B '); + insert into takes values('91851', '694', '1', 'Fall', 2002, 'A+'); + insert into takes values('63886', '599', '1', 'Spring', 2003, 'A-'); + insert into takes values('52019', '959', '1', 'Fall', 2006, 'B-'); + insert into takes values('95840', '612', '1', 'Fall', 2007, 'B+'); + insert into takes values('29863', '735', '1', 'Spring', 2003, 'B '); + insert into takes values('4173', '468', '1', 'Fall', 2005, 'C '); + insert into takes values('75116', '843', '1', 'Fall', 2010, 'C '); + insert into takes values('38895', '482', '1', 'Fall', 2005, 'A '); + insert into takes values('38336', '545', '1', 'Fall', 2001, 'A+'); + insert into takes values('43495', '362', '2', 'Fall', 2006, 'A '); + insert into takes values('94569', '927', '1', 'Fall', 2002, 'C+'); + insert into takes values('13741', '242', '1', 'Fall', 2009, 'C '); + insert into takes values('29514', '200', '1', 'Spring', 2007, 'C+'); + insert into takes values('27043', '239', '1', 'Fall', 2006, 'C+'); + insert into takes values('14214', '893', '1', 'Fall', 2007, 'A+'); + insert into takes values('99463', '258', '1', 'Fall', 2007, 'B+'); + insert into takes values('67810', '960', '1', 'Fall', 2009, 'C-'); + insert into takes values('51997', '105', '2', 'Fall', 2002, 'B+'); + insert into takes values('17676', '496', '1', 'Fall', 2001, 'B+'); + insert into takes values('18554', '612', '1', 'Fall', 2007, 'A-'); + insert into takes values('56', '581', '1', 'Spring', 2005, 'A-'); + insert into takes values('98359', '493', '1', 'Spring', 2010, 'B+'); + insert into takes values('10481', '461', '1', 'Fall', 2002, 'A-'); + insert into takes values('72979', '571', '1', 'Spring', 2004, 'C-'); + insert into takes values('91343', '735', '1', 'Spring', 2003, 'A '); + insert into takes values('54620', '105', '1', 'Fall', 2009, 'A '); + insert into takes values('41280', '545', '1', 'Fall', 2001, 'B '); + insert into takes values('91063', '875', '1', 'Spring', 2005, 'A+'); + insert into takes values('68263', '599', '1', 'Spring', 2003, 'C+'); + insert into takes values('27727', '319', '1', 'Spring', 2003, 'A '); + insert into takes values('2848', '867', '2', 'Fall', 2010, 'C-'); + insert into takes values('1367', '482', '1', 'Fall', 2005, 'B-'); + insert into takes values('57123', '366', '1', 'Fall', 2005, 'A '); + insert into takes values('88287', '338', '1', 'Spring', 2007, 'C '); + insert into takes values('4645', '362', '2', 'Fall', 2006, 'B+'); + insert into takes values('80698', '604', '1', 'Spring', 2009, 'C-'); + insert into takes values('15074', '735', '2', 'Spring', 2010, 'A-'); + insert into takes values('27140', '445', '1', 'Spring', 2001, 'A '); + insert into takes values('1727', '334', '1', 'Fall', 2009, 'A '); + insert into takes values('79446', '748', '1', 'Fall', 2003, 'C+'); + insert into takes values('64593', '599', '1', 'Spring', 2003, 'A-'); + insert into takes values('83686', '974', '1', 'Fall', 2003, 'B '); + insert into takes values('99073', '991', '1', 'Spring', 2008, 'A+'); + insert into takes values('8912', '443', '1', 'Spring', 2010, 'B-'); + insert into takes values('92864', '482', '1', 'Fall', 2005, 'C+'); + insert into takes values('86641', '313', '1', 'Fall', 2010, 'A '); + insert into takes values('85754', '679', '1', 'Spring', 2010, 'B '); + insert into takes values('17377', '793', '1', 'Spring', 2002, 'C '); + insert into takes values('69783', '486', '1', 'Fall', 2009, 'C+'); + insert into takes values('28409', '875', '1', 'Spring', 2005, 'B+'); + insert into takes values('17397', '457', '1', 'Spring', 2001, 'A-'); + insert into takes values('65121', '137', '1', 'Spring', 2002, 'A-'); + insert into takes values('57160', '270', '1', 'Spring', 2010, 'C+'); + insert into takes values('8986', '237', '1', 'Spring', 2008, 'B-'); + insert into takes values('58085', '527', '1', 'Fall', 2004, 'C-'); + insert into takes values('3335', '702', '1', 'Spring', 2001, 'B+'); + insert into takes values('31080', '468', '1', 'Fall', 2005, 'B-'); + insert into takes values('80248', '802', '1', 'Spring', 2003, 'C '); + insert into takes values('76173', '486', '1', 'Fall', 2009, 'A '); + insert into takes values('34386', '696', '1', 'Spring', 2002, 'C-'); + insert into takes values('35257', '192', '1', 'Fall', 2002, 'A+'); + insert into takes values('63582', '376', '1', 'Fall', 2006, 'B-'); + insert into takes values('57474', '468', '2', 'Fall', 2007, 'C '); + insert into takes values('54610', '843', '1', 'Fall', 2010, 'C-'); + insert into takes values('67660', '401', '1', 'Fall', 2003, 'B '); + insert into takes values('10838', '604', '1', 'Spring', 2009, 'B-'); + insert into takes values('23311', '629', '1', 'Spring', 2003, 'C+'); + insert into takes values('99553', '313', '1', 'Fall', 2010, 'B+'); + insert into takes values('15613', '704', '1', 'Spring', 2008, 'C+'); + insert into takes values('78454', '581', '1', 'Spring', 2005, 'B '); + insert into takes values('93986', '376', '1', 'Fall', 2006, 'A+'); + insert into takes values('60867', '338', '1', 'Spring', 2007, 'A-'); + insert into takes values('42843', '338', '1', 'Spring', 2007, 'B+'); + insert into takes values('19582', '704', '1', 'Spring', 2008, 'C+'); + insert into takes values('92703', '486', '1', 'Fall', 2009, 'C '); + insert into takes values('57538', '158', '1', 'Fall', 2008, 'A '); + insert into takes values('15883', '747', '1', 'Spring', 2004, 'A-'); + insert into takes values('78892', '489', '1', 'Fall', 2007, 'B '); + insert into takes values('65101', '239', '1', 'Fall', 2006, 'C-'); + insert into takes values('30161', '200', '1', 'Spring', 2007, 'C-'); + insert into takes values('36263', '338', '2', 'Spring', 2006, 'C+'); + insert into takes values('16969', '626', '1', 'Fall', 2006, 'C '); + insert into takes values('39241', '258', '1', 'Fall', 2007, 'A-'); + insert into takes values('29192', '169', '2', 'Fall', 2002, 'A '); + insert into takes values('12069', '795', '1', 'Spring', 2004, 'A+'); + insert into takes values('3493', '735', '1', 'Spring', 2003, 'A '); + insert into takes values('35687', '974', '1', 'Fall', 2003, 'B-'); + insert into takes values('11510', '875', '1', 'Spring', 2005, 'B-'); + insert into takes values('50013', '169', '1', 'Spring', 2007, 'A '); + insert into takes values('123', '319', '1', 'Spring', 2003, 'A+'); + insert into takes values('64196', '468', '1', 'Fall', 2005, 'A+'); + insert into takes values('1018', '972', '1', 'Spring', 2009, 'C-'); + insert into takes values('89734', '158', '2', 'Spring', 2008, 'B '); + insert into takes values('13290', '864', '1', 'Spring', 2006, 'B-'); + insert into takes values('86661', '867', '1', 'Fall', 2006, 'B+'); + insert into takes values('91343', '748', '1', 'Fall', 2003, 'C-'); + insert into takes values('20814', '237', '1', 'Spring', 2008, 'A-'); + insert into takes values('41491', '408', '2', 'Spring', 2003, 'B '); + insert into takes values('95205', '345', '1', 'Spring', 2008, 'B '); + insert into takes values('6474', '400', '2', 'Fall', 2003, 'B '); + insert into takes values('63612', '158', '1', 'Fall', 2008, 'C '); + insert into takes values('57135', '192', '1', 'Fall', 2002, 'C+'); + insert into takes values('16297', '415', '1', 'Fall', 2010, 'A+'); + insert into takes values('21100', '852', '1', 'Spring', 2008, 'A '); + insert into takes values('96052', '445', '1', 'Spring', 2001, 'B-'); + insert into takes values('43658', '974', '1', 'Fall', 2003, 'C+'); + insert into takes values('29192', '802', '1', 'Spring', 2003, 'A-'); + insert into takes values('25380', '270', '1', 'Spring', 2010, 'B-'); + insert into takes values('40481', '642', '1', 'Fall', 2004, 'A+'); + insert into takes values('77580', '843', '1', 'Fall', 2010, 'A-'); + insert into takes values('75596', '545', '1', 'Fall', 2001, 'B-'); + insert into takes values('89393', '702', '1', 'Spring', 2001, 'A-'); + insert into takes values('8140', '949', '1', 'Fall', 2007, 'A-'); + insert into takes values('17207', '893', '1', 'Fall', 2007, 'C-'); + insert into takes values('95631', '864', '1', 'Spring', 2006, 'A-'); + insert into takes values('47487', '105', '1', 'Fall', 2009, 'C '); + insert into takes values('93125', '959', '1', 'Fall', 2006, 'B+'); + insert into takes values('98843', '795', '1', 'Spring', 2004, 'C+'); + insert into takes values('37715', '591', '1', 'Spring', 2005, 'B+'); + insert into takes values('62124', '192', '1', 'Fall', 2002, 'C+'); + insert into takes values('64642', '242', '1', 'Fall', 2009, 'C+'); + insert into takes values('47487', '137', '1', 'Spring', 2002, 'A+'); + insert into takes values('16075', '443', '1', 'Spring', 2010, 'B+'); + insert into takes values('60688', '545', '1', 'Fall', 2001, 'A-'); + insert into takes values('28133', '808', '1', 'Fall', 2003, 'B+'); + insert into takes values('15024', '349', '1', 'Spring', 2008, 'C+'); + insert into takes values('66753', '760', '1', 'Spring', 2004, 'A+'); + insert into takes values('72165', '461', '1', 'Fall', 2002, 'C '); + insert into takes values('82688', '192', '1', 'Fall', 2002, 'B '); + insert into takes values('27804', '169', '2', 'Fall', 2002, 'A+'); + insert into takes values('87268', '591', '1', 'Spring', 2005, 'C '); + insert into takes values('85534', '376', '1', 'Fall', 2006, 'C-'); + insert into takes values('57456', '972', '1', 'Spring', 2009, 'A '); + insert into takes values('13741', '362', '2', 'Fall', 2006, 'C+'); + insert into takes values('25942', '443', '1', 'Spring', 2010, 'C+'); + insert into takes values('43495', '445', '1', 'Spring', 2001, 'A-'); + insert into takes values('53118', '663', '1', 'Spring', 2005, 'B+'); + insert into takes values('25380', '239', '1', 'Fall', 2006, 'A '); + insert into takes values('53165', '864', '1', 'Spring', 2006, 'A-'); + insert into takes values('17831', '960', '2', 'Fall', 2006, 'A+'); + insert into takes values('74473', '352', '1', 'Spring', 2006, 'A+'); + insert into takes values('27528', '962', '1', 'Spring', 2008, 'C '); + insert into takes values('32506', '482', '1', 'Fall', 2005, 'A-'); + insert into takes values('43211', '545', '1', 'Fall', 2001, 'B-'); + insert into takes values('90381', '991', '1', 'Spring', 2008, 'C+'); + insert into takes values('65438', '401', '1', 'Fall', 2003, 'B+'); + insert into takes values('4345', '642', '1', 'Fall', 2004, 'C '); + insert into takes values('8986', '867', '1', 'Fall', 2006, 'B-'); + insert into takes values('33546', '274', '1', 'Fall', 2002, 'B+'); + insert into takes values('41299', '461', '1', 'Fall', 2002, 'C-'); + insert into takes values('96193', '468', '2', 'Fall', 2007, 'B '); + insert into takes values('3005', '376', '1', 'Fall', 2006, 'A+'); + insert into takes values('91788', '270', '1', 'Spring', 2010, 'A-'); + insert into takes values('14499', '237', '1', 'Spring', 2008, 'B-'); + insert into takes values('72177', '349', '1', 'Spring', 2008, 'B-'); + insert into takes values('57431', '852', '1', 'Spring', 2008, 'B '); + insert into takes values('64121', '362', '1', 'Fall', 2005, 'A+'); + insert into takes values('37869', '959', '1', 'Fall', 2006, 'A+'); + insert into takes values('89140', '426', '1', 'Spring', 2006, 'A+'); + insert into takes values('5463', '527', '1', 'Fall', 2004, 'A+'); + insert into takes values('70061', '791', '1', 'Spring', 2006, 'C '); + insert into takes values('45720', '629', '1', 'Spring', 2003, 'B-'); + insert into takes values('8192', '974', '1', 'Fall', 2003, 'B-'); + insert into takes values('74464', '158', '1', 'Fall', 2008, 'C-'); + insert into takes values('85809', '960', '1', 'Fall', 2009, 'C '); + insert into takes values('57538', '679', '1', 'Spring', 2010, 'C '); + insert into takes values('54508', '366', '1', 'Fall', 2005, 'C-'); + insert into takes values('90779', '200', '1', 'Spring', 2007, 'C-'); + insert into takes values('15430', '476', '1', 'Fall', 2010, 'C '); + insert into takes values('4173', '237', '2', 'Fall', 2009, 'A+'); + insert into takes values('86802', '443', '2', 'Spring', 2002, 'C-'); + insert into takes values('81884', '304', '1', 'Fall', 2009, 'A '); + insert into takes values('96067', '362', '1', 'Fall', 2005, 'C '); + insert into takes values('45083', '949', '1', 'Fall', 2007, 'B '); + insert into takes values('33349', '137', '1', 'Spring', 2002, 'A+'); + insert into takes values('2133', '603', '1', 'Fall', 2003, 'B+'); + insert into takes values('22620', '527', '1', 'Fall', 2004, 'A-'); + insert into takes values('88577', '461', '1', 'Fall', 2002, 'C+'); + insert into takes values('19342', '679', '1', 'Spring', 2010, 'C '); + insert into takes values('34018', '702', '1', 'Spring', 2001, 'C+'); + insert into takes values('12615', '949', '1', 'Fall', 2007, 'A-'); + insert into takes values('10663', '735', '1', 'Spring', 2003, 'B-'); + insert into takes values('57985', '237', '1', 'Spring', 2008, 'A+'); + insert into takes values('53803', '482', '1', 'Fall', 2005, 'C+'); + insert into takes values('18809', '960', '1', 'Fall', 2009, 'A+'); + insert into takes values('61166', '694', '1', 'Fall', 2002, 'B '); + insert into takes values('46450', '694', '1', 'Fall', 2002, 'A '); + insert into takes values('95366', '496', '1', 'Fall', 2001, 'B '); + insert into takes values('2423', '802', '1', 'Spring', 2003, 'B-'); + insert into takes values('68779', '457', '1', 'Spring', 2001, 'C '); + insert into takes values('18234', '748', '1', 'Fall', 2003, 'C+'); + insert into takes values('70098', '349', '1', 'Spring', 2008, 'C-'); + insert into takes values('98870', '843', '1', 'Fall', 2010, 'B+'); + insert into takes values('18775', '959', '1', 'Fall', 2006, 'A-'); + insert into takes values('39472', '692', '1', 'Spring', 2010, 'B-'); + insert into takes values('89551', '319', '1', 'Spring', 2003, 'B+'); + insert into takes values('81638', '334', '1', 'Fall', 2009, 'B+'); + insert into takes values('88801', '802', '1', 'Spring', 2003, 'B+'); + insert into takes values('27002', '581', '1', 'Spring', 2005, 'C '); + insert into takes values('70924', '258', '1', 'Fall', 2007, 'C+'); + insert into takes values('16297', '704', '1', 'Spring', 2008, 'A '); + insert into takes values('9360', '991', '1', 'Spring', 2008, 'A '); + insert into takes values('13880', '105', '1', 'Fall', 2009, 'A '); + insert into takes values('94801', '200', '1', 'Spring', 2007, 'B+'); + insert into takes values('63645', '527', '1', 'Fall', 2004, 'B '); + insert into takes values('75423', '875', '1', 'Spring', 2005, 'C-'); + insert into takes values('75928', '893', '1', 'Fall', 2007, 'A-'); + insert into takes values('57474', '949', '1', 'Fall', 2007, 'C+'); + insert into takes values('53077', '527', '1', 'Fall', 2004, 'C-'); + insert into takes values('83686', '376', '1', 'Fall', 2006, 'B+'); + insert into takes values('58081', '408', '2', 'Spring', 2003, 'B-'); + insert into takes values('82301', '867', '1', 'Fall', 2006, 'C '); + insert into takes values('90181', '169', '2', 'Fall', 2002, 'C+'); + insert into takes values('78116', '169', '2', 'Fall', 2002, 'C+'); + insert into takes values('60984', '304', '1', 'Fall', 2009, 'A+'); + insert into takes values('40080', '443', '2', 'Spring', 2002, 'C+'); + insert into takes values('98315', '702', '1', 'Spring', 2001, 'B-'); + insert into takes values('46066', '408', '2', 'Spring', 2003, 'B-'); + insert into takes values('69747', '793', '1', 'Spring', 2002, 'B+'); + insert into takes values('9933', '974', '1', 'Fall', 2003, 'C+'); + insert into takes values('97868', '468', '1', 'Fall', 2005, 'C '); + insert into takes values('66106', '843', '1', 'Fall', 2010, 'B '); + insert into takes values('50583', '169', '1', 'Spring', 2007, 'A+'); + insert into takes values('70061', '927', '1', 'Fall', 2002, 'A '); + insert into takes values('79446', '362', '1', 'Fall', 2005, 'A '); + insert into takes values('15980', '239', '1', 'Fall', 2006, 'B '); + insert into takes values('68649', '692', '1', 'Spring', 2010, 'B+'); + insert into takes values('90448', '319', '1', 'Spring', 2003, 'C '); + insert into takes values('87015', '489', '1', 'Fall', 2007, 'C '); + insert into takes values('79589', '493', '1', 'Spring', 2010, 'C-'); + insert into takes values('21766', '960', '1', 'Fall', 2009, 'B+'); + insert into takes values('89414', '468', '2', 'Fall', 2007, 'B-'); + insert into takes values('33094', '158', '1', 'Fall', 2008, 'A '); + insert into takes values('93171', '137', '1', 'Spring', 2002, 'A-'); + insert into takes values('27556', '169', '2', 'Fall', 2002, 'C '); + insert into takes values('13741', '445', '1', 'Spring', 2001, 'C '); + insert into takes values('37339', '274', '1', 'Fall', 2002, 'A '); + insert into takes values('37103', '496', '1', 'Fall', 2001, 'A+'); + insert into takes values('39520', '482', '1', 'Fall', 2005, 'A '); + insert into takes values('21401', '991', '1', 'Spring', 2008, 'B-'); + insert into takes values('29192', '237', '2', 'Fall', 2009, 'B+'); + insert into takes values('71025', '415', '1', 'Fall', 2010, 'B '); + insert into takes values('18554', '581', '1', 'Spring', 2005, 'B-'); + insert into takes values('1460', '338', '1', 'Spring', 2007, 'A+'); + insert into takes values('57156', '457', '1', 'Spring', 2001, 'C+'); + insert into takes values('6209', '237', '2', 'Fall', 2009, 'B '); + insert into takes values('56124', '927', '1', 'Fall', 2002, 'C '); + insert into takes values('91851', '663', '1', 'Spring', 2005, 'A-'); + insert into takes values('82066', '599', '1', 'Spring', 2003, 'C+'); + insert into takes values('5005', '352', '1', 'Spring', 2006, 'A '); + insert into takes values('91197', '258', '1', 'Fall', 2007, 'C+'); + insert into takes values('83444', '704', '1', 'Spring', 2008, 'B '); + insert into takes values('87222', '949', '1', 'Fall', 2007, 'B-'); + insert into takes values('83511', '345', '1', 'Spring', 2008, 'C-'); + insert into takes values('86075', '867', '2', 'Fall', 2010, 'C '); + insert into takes values('3576', '559', '1', 'Fall', 2002, 'C '); + insert into takes values('15538', '696', '1', 'Spring', 2002, 'C '); + insert into takes values('85746', '345', '1', 'Spring', 2008, 'C+'); + insert into takes values('81028', '169', '2', 'Fall', 2002, 'C-'); + insert into takes values('57107', '274', '1', 'Fall', 2002, 'B-'); + insert into takes values('1460', '893', '1', 'Fall', 2007, 'B-'); + insert into takes values('51868', '239', '1', 'Fall', 2006, 'B-'); + insert into takes values('53588', '974', '1', 'Fall', 2003, 'A+'); + insert into takes values('48462', '561', '1', 'Fall', 2006, 'A+'); + insert into takes values('88417', '415', '1', 'Fall', 2010, 'B '); + insert into takes values('22179', '476', '1', 'Fall', 2010, 'A '); + insert into takes values('61003', '864', '1', 'Spring', 2006, 'A-'); + insert into takes values('32881', '843', '1', 'Fall', 2010, 'C-'); + insert into takes values('53805', '599', '1', 'Spring', 2003, 'A-'); + insert into takes values('87048', '561', '1', 'Fall', 2006, 'C '); + insert into takes values('46762', '200', '2', 'Fall', 2002, 'C-'); + insert into takes values('50206', '200', '1', 'Spring', 2007, 'B+'); + insert into takes values('25380', '493', '1', 'Spring', 2010, 'B+'); + insert into takes values('87784', '237', '2', 'Fall', 2009, 'B-'); + insert into takes values('95029', '338', '2', 'Spring', 2006, 'B-'); + insert into takes values('44985', '376', '1', 'Fall', 2006, 'C+'); + insert into takes values('30222', '445', '1', 'Spring', 2001, 'C-'); + insert into takes values('46981', '158', '1', 'Fall', 2008, 'B+'); + insert into takes values('8819', '496', '1', 'Fall', 2001, 'B+'); + insert into takes values('48053', '631', '1', 'Spring', 2007, 'B '); + insert into takes values('70099', '319', '1', 'Spring', 2003, 'C-'); + insert into takes values('41450', '962', '1', 'Spring', 2008, 'C '); + insert into takes values('29705', '468', '1', 'Fall', 2005, 'A '); + insert into takes values('94142', '408', '1', 'Spring', 2007, 'B '); + insert into takes values('36019', '875', '1', 'Spring', 2005, 'C '); + insert into takes values('68395', '400', '1', 'Spring', 2007, 'C-'); + insert into takes values('1110', '443', '1', 'Spring', 2010, 'A-'); + insert into takes values('21337', '702', '1', 'Spring', 2001, 'B '); + insert into takes values('46725', '702', '1', 'Spring', 2001, 'B-'); + insert into takes values('62832', '631', '1', 'Spring', 2007, 'B-'); + insert into takes values('28019', '959', '1', 'Fall', 2006, 'C-'); + insert into takes values('24387', '258', '1', 'Fall', 2007, 'C-'); + insert into takes values('67725', '581', '1', 'Spring', 2005, 'A+'); + insert into takes values('97868', '527', '1', 'Fall', 2004, 'C '); + insert into takes values('67017', '612', '1', 'Fall', 2007, 'C '); + insert into takes values('28518', '793', '1', 'Spring', 2002, 'C-'); + insert into takes values('25380', '426', '1', 'Spring', 2006, 'C+'); + insert into takes values('67371', '867', '1', 'Fall', 2006, 'B '); + insert into takes values('12615', '362', '1', 'Fall', 2005, 'C+'); + insert into takes values('6400', '960', '1', 'Fall', 2009, 'C '); + insert into takes values('2795', '991', '1', 'Spring', 2008, 'B+'); + insert into takes values('37038', '192', '1', 'Fall', 2002, 'B-'); + insert into takes values('18286', '802', '1', 'Spring', 2003, 'A '); + insert into takes values('15613', '864', '1', 'Spring', 2006, 'C-'); + insert into takes values('49873', '960', '2', 'Fall', 2006, 'B-'); + insert into takes values('57474', '362', '1', 'Fall', 2005, 'C-'); + insert into takes values('12078', '200', '1', 'Spring', 2007, 'B-'); + insert into takes values('67514', '105', '1', 'Fall', 2009, 'A-'); + insert into takes values('84239', '400', '1', 'Spring', 2007, 'A+'); + insert into takes values('18469', '313', '1', 'Fall', 2010, 'A+'); + insert into takes values('2501', '875', '1', 'Spring', 2005, 'B '); + insert into takes values('48247', '702', '1', 'Spring', 2001, 'B-'); + insert into takes values('98423', '237', '2', 'Fall', 2009, 'A-'); + insert into takes values('86753', '445', '1', 'Spring', 2001, 'A-'); + insert into takes values('38545', '875', '1', 'Spring', 2005, 'A+'); + insert into takes values('10527', '496', '1', 'Fall', 2001, 'C+'); + insert into takes values('32744', '735', '1', 'Spring', 2003, 'B '); + insert into takes values('50977', '802', '1', 'Spring', 2003, 'C+'); + insert into takes values('49813', '545', '1', 'Fall', 2001, 'C+'); + insert into takes values('9114', '493', '1', 'Spring', 2010, 'C+'); + insert into takes values('35293', '408', '2', 'Spring', 2003, 'C+'); + insert into takes values('99710', '158', '2', 'Spring', 2008, 'A+'); + insert into takes values('88887', '704', '1', 'Spring', 2008, 'B-'); + insert into takes values('74163', '408', '1', 'Spring', 2007, 'A-'); + insert into takes values('53805', '808', '1', 'Fall', 2003, 'B+'); + insert into takes values('38013', '169', '2', 'Fall', 2002, 'A-'); + insert into takes values('81610', '319', '1', 'Spring', 2003, 'C '); + insert into takes values('34195', '581', '1', 'Spring', 2005, 'B '); + insert into takes values('75046', '603', '1', 'Fall', 2003, 'C+'); + insert into takes values('15144', '581', '1', 'Spring', 2005, 'C '); + insert into takes values('76911', '663', '1', 'Spring', 2005, 'C+'); + insert into takes values('28128', '169', '2', 'Fall', 2002, 'C+'); + insert into takes values('93171', '629', '1', 'Spring', 2003, 'A+'); + insert into takes values('82646', '408', '1', 'Spring', 2007, 'C-'); + insert into takes values('93508', '704', '1', 'Spring', 2008, 'C '); + insert into takes values('86661', '561', '1', 'Fall', 2006, 'B-'); + insert into takes values('24442', '748', '1', 'Fall', 2003, 'A+'); + insert into takes values('91799', '545', '1', 'Fall', 2001, 'C '); + insert into takes values('56941', '663', '1', 'Spring', 2005, 'A-'); + insert into takes values('99189', '692', '1', 'Spring', 2010, 'B+'); + insert into takes values('43993', '192', '1', 'Fall', 2002, 'A '); + insert into takes values('96324', '366', '1', 'Fall', 2005, 'B-'); + insert into takes values('55531', '629', '1', 'Spring', 2003, 'A '); + insert into takes values('55170', '408', '2', 'Spring', 2003, 'A-'); + insert into takes values('75362', '362', '1', 'Fall', 2005, 'B-'); + insert into takes values('47379', '974', '1', 'Fall', 2003, 'B-'); + insert into takes values('42019', '242', '1', 'Fall', 2009, 'A-'); + insert into takes values('53788', '545', '1', 'Fall', 2001, 'B+'); + insert into takes values('74016', '400', '1', 'Spring', 2007, 'A '); + insert into takes values('11194', '692', '1', 'Spring', 2010, 'B+'); + insert into takes values('11377', '237', '2', 'Fall', 2009, 'B-'); + insert into takes values('30252', '591', '1', 'Spring', 2005, 'B-'); + insert into takes values('23992', '489', '1', 'Fall', 2007, 'B-'); + insert into takes values('70564', '408', '2', 'Spring', 2003, 'B-'); + insert into takes values('75040', '875', '1', 'Spring', 2005, 'C-'); + insert into takes values('20814', '960', '2', 'Fall', 2006, 'B+'); + insert into takes values('47487', '949', '1', 'Fall', 2007, 'A '); + insert into takes values('13211', '793', '1', 'Spring', 2002, 'C '); + insert into takes values('63288', '468', '2', 'Fall', 2007, 'B+'); + insert into takes values('51579', '972', '1', 'Spring', 2009, 'A '); + insert into takes values('27952', '304', '1', 'Fall', 2009, 'C+'); + insert into takes values('47630', '581', '1', 'Spring', 2005, 'C-'); + insert into takes values('34422', '158', '1', 'Fall', 2008, 'C '); + insert into takes values('44352', '482', '1', 'Fall', 2005, 'C '); + insert into takes values('57107', '808', '1', 'Fall', 2003, 'A+'); + insert into takes values('11076', '362', '3', 'Spring', 2008, 'A+'); + insert into takes values('74672', '974', '1', 'Fall', 2003, 'C '); + insert into takes values('22170', '747', '1', 'Spring', 2004, 'A+'); + insert into takes values('31624', '793', '1', 'Spring', 2002, 'B-'); + insert into takes values('63860', '362', '3', 'Spring', 2008, 'A-'); + insert into takes values('44271', '527', '1', 'Fall', 2004, 'A+'); + insert into takes values('36494', '415', '1', 'Fall', 2010, 'C '); + insert into takes values('56089', '694', '1', 'Fall', 2002, 'C-'); + insert into takes values('91343', '349', '1', 'Spring', 2008, 'B+'); + insert into takes values('62226', '426', '1', 'Spring', 2006, 'C+'); + insert into takes values('69730', '626', '1', 'Fall', 2006, 'C+'); + insert into takes values('54622', '401', '1', 'Fall', 2003, 'A '); + insert into takes values('76798', '559', '1', 'Fall', 2002, 'B+'); + insert into takes values('80285', '468', '1', 'Fall', 2005, 'A+'); + insert into takes values('65329', '852', '1', 'Spring', 2008, 'A+'); + insert into takes values('32881', '482', '1', 'Fall', 2005, 'A+'); + insert into takes values('23525', '867', '2', 'Fall', 2010, 'A-'); + insert into takes values('93814', '400', '1', 'Spring', 2007, 'B+'); + insert into takes values('9183', '239', '1', 'Fall', 2006, 'A+'); + insert into takes values('42956', '362', '2', 'Fall', 2006, 'B-'); + insert into takes values('92385', '527', '1', 'Fall', 2004, 'B-'); + insert into takes values('28977', '200', '1', 'Spring', 2007, 'B-'); + insert into takes values('74016', '603', '1', 'Fall', 2003, 'A+'); + insert into takes values('46725', '545', '1', 'Fall', 2001, 'B-'); + insert into takes values('12214', '489', '1', 'Fall', 2007, 'A+'); + insert into takes values('19541', '631', '1', 'Spring', 2007, 'B '); + insert into takes values('40189', '959', '1', 'Fall', 2006, 'C-'); + insert into takes values('85746', '200', '1', 'Spring', 2007, 'A-'); + insert into takes values('37586', '468', '2', 'Fall', 2007, 'B+'); + insert into takes values('10267', '748', '1', 'Fall', 2003, 'A-'); + insert into takes values('70098', '959', '1', 'Fall', 2006, 'A '); + insert into takes values('1968', '735', '2', 'Spring', 2010, 'A-'); + insert into takes values('87784', '696', '1', 'Spring', 2002, 'A+'); + insert into takes values('73165', '626', '1', 'Fall', 2006, 'C-'); + insert into takes values('57238', '334', '1', 'Fall', 2009, 'A-'); + insert into takes values('86327', '376', '1', 'Fall', 2006, 'C '); + insert into takes values('85211', '200', '1', 'Spring', 2007, 'C-'); + insert into takes values('90220', '696', '1', 'Spring', 2002, 'C '); + insert into takes values('29705', '791', '1', 'Spring', 2006, 'C+'); + insert into takes values('98047', '443', '2', 'Spring', 2002, 'B-'); + insert into takes values('99422', '545', '1', 'Fall', 2001, 'B+'); + insert into takes values('43211', '962', '1', 'Spring', 2008, 'B '); + insert into takes values('11441', '158', '2', 'Spring', 2008, 'B '); + insert into takes values('24630', '760', '1', 'Spring', 2004, 'B '); + insert into takes values('66269', '559', '1', 'Fall', 2002, 'B-'); + insert into takes values('3005', '237', '2', 'Fall', 2009, 'A+'); + insert into takes values('10904', '362', '2', 'Fall', 2006, 'B+'); + insert into takes values('72669', '158', '2', 'Spring', 2008, 'C '); + insert into takes values('10527', '867', '2', 'Fall', 2010, 'C+'); + insert into takes values('79469', '200', '2', 'Fall', 2002, 'B '); + insert into takes values('82707', '561', '1', 'Fall', 2006, 'B-'); + insert into takes values('13826', '169', '1', 'Spring', 2007, 'B '); + insert into takes values('69747', '376', '1', 'Fall', 2006, 'B-'); + insert into takes values('57787', '200', '1', 'Spring', 2007, 'B '); + insert into takes values('95089', '334', '1', 'Fall', 2009, 'B-'); + insert into takes values('39046', '599', '1', 'Spring', 2003, 'C+'); + insert into takes values('97041', '137', '1', 'Spring', 2002, 'A+'); + insert into takes values('28829', '527', '1', 'Fall', 2004, 'C '); + insert into takes values('75395', '443', '2', 'Spring', 2002, 'B '); + insert into takes values('77415', '401', '1', 'Fall', 2003, 'B-'); + insert into takes values('80285', '867', '2', 'Fall', 2010, 'B '); + insert into takes values('32483', '867', '2', 'Fall', 2010, 'A+'); + insert into takes values('67371', '631', '1', 'Spring', 2007, 'A-'); + insert into takes values('69752', '345', '1', 'Spring', 2008, 'A+'); + insert into takes values('39204', '679', '1', 'Spring', 2010, 'A '); + insert into takes values('15283', '105', '2', 'Fall', 2002, 'B '); + insert into takes values('13403', '349', '1', 'Spring', 2008, 'B+'); + insert into takes values('5925', '694', '1', 'Fall', 2002, 'A '); + insert into takes values('33837', '476', '1', 'Fall', 2010, 'A+'); + insert into takes values('46981', '200', '2', 'Fall', 2002, 'A-'); + insert into takes values('57787', '561', '1', 'Fall', 2006, 'B-'); + insert into takes values('74473', '735', '2', 'Spring', 2010, 'B '); + insert into takes values('85746', '468', '2', 'Fall', 2007, 'B-'); + insert into takes values('6895', '599', '1', 'Spring', 2003, 'B-'); + insert into takes values('53588', '875', '1', 'Spring', 2005, 'C+'); + insert into takes values('68070', '864', '1', 'Spring', 2006, 'A-'); + insert into takes values('78922', '893', '1', 'Fall', 2007, 'C-'); + insert into takes values('15487', '400', '1', 'Spring', 2007, 'C+'); + insert into takes values('69747', '415', '1', 'Fall', 2010, 'B-'); + insert into takes values('4355', '603', '1', 'Fall', 2003, 'B+'); + insert into takes values('4940', '793', '1', 'Spring', 2002, 'B-'); + insert into takes values('86552', '426', '1', 'Spring', 2006, 'C+'); + insert into takes values('64297', '313', '1', 'Fall', 2010, 'A+'); + insert into takes values('82868', '408', '1', 'Spring', 2007, 'B '); + insert into takes values('98870', '200', '1', 'Spring', 2007, 'B+'); + insert into takes values('61783', '352', '1', 'Spring', 2006, 'C+'); + insert into takes values('27919', '747', '1', 'Spring', 2004, 'C+'); + insert into takes values('43495', '959', '1', 'Fall', 2006, 'C-'); + insert into takes values('78787', '949', '1', 'Fall', 2007, 'B-'); + insert into takes values('71389', '864', '1', 'Spring', 2006, 'A-'); + insert into takes values('38696', '927', '1', 'Fall', 2002, 'C-'); + insert into takes values('41345', '949', '1', 'Fall', 2007, 'B-'); + insert into takes values('85575', '137', '1', 'Spring', 2002, 'B '); + insert into takes values('27950', '239', '1', 'Fall', 2006, 'A-'); + insert into takes values('83039', '974', '1', 'Fall', 2003, 'B+'); + insert into takes values('45770', '545', '1', 'Fall', 2001, 'A+'); + insert into takes values('92274', '962', '1', 'Spring', 2008, 'C '); + insert into takes values('60406', '795', '1', 'Spring', 2004, 'C-'); + insert into takes values('13921', '457', '1', 'Spring', 2001, 'A '); + insert into takes values('89759', '612', '1', 'Fall', 2007, 'B-'); + insert into takes values('91442', '527', '1', 'Fall', 2004, 'B+'); + insert into takes values('17997', '760', '1', 'Spring', 2004, 'A '); + insert into takes values('80113', '748', '1', 'Fall', 2003, 'A '); + insert into takes values('58846', '158', '2', 'Spring', 2008, 'A '); + insert into takes values('95260', '137', '1', 'Spring', 2002, 'C '); + insert into takes values('31761', '362', '3', 'Spring', 2008, 'B '); + insert into takes values('75510', '274', '1', 'Fall', 2002, 'A+'); + insert into takes values('53496', '694', '1', 'Fall', 2002, 'A '); + insert into takes values('48861', '893', '1', 'Fall', 2007, 'A-'); + insert into takes values('27140', '362', '3', 'Spring', 2008, 'C-'); + insert into takes values('49205', '802', '1', 'Spring', 2003, 'C '); + insert into takes values('49391', '843', '1', 'Fall', 2010, 'C+'); + insert into takes values('86651', '237', '2', 'Fall', 2009, 'B-'); + insert into takes values('96134', '679', '1', 'Spring', 2010, 'C '); + insert into takes values('83592', '631', '1', 'Spring', 2007, 'C-'); + insert into takes values('29665', '445', '1', 'Spring', 2001, 'A '); + insert into takes values('40116', '408', '1', 'Spring', 2007, 'A+'); + insert into takes values('37339', '415', '1', 'Fall', 2010, 'C '); + insert into takes values('88085', '694', '1', 'Fall', 2002, 'C-'); + insert into takes values('67655', '559', '1', 'Fall', 2002, 'C '); + insert into takes values('84654', '338', '1', 'Spring', 2007, 'B '); + insert into takes values('93653', '694', '1', 'Fall', 2002, 'B '); + insert into takes values('28409', '345', '1', 'Spring', 2008, 'A-'); + insert into takes values('89000', '408', '1', 'Spring', 2007, 'A '); + insert into takes values('91851', '274', '1', 'Fall', 2002, 'C '); + insert into takes values('72165', '571', '1', 'Spring', 2004, 'C+'); + insert into takes values('858', '791', '1', 'Spring', 2006, 'C '); + insert into takes values('38712', '704', '1', 'Spring', 2008, 'C '); + insert into takes values('18583', '559', '1', 'Fall', 2002, 'B+'); + insert into takes values('93125', '612', '1', 'Fall', 2007, 'C-'); + insert into takes values('36402', '105', '1', 'Fall', 2009, 'C-'); + insert into takes values('41345', '105', '2', 'Fall', 2002, 'B+'); + insert into takes values('36244', '867', '1', 'Fall', 2006, 'A-'); + insert into takes values('59290', '237', '1', 'Spring', 2008, 'B-'); + insert into takes values('83728', '599', '1', 'Spring', 2003, 'B+'); + insert into takes values('38899', '400', '2', 'Fall', 2003, 'A-'); + insert into takes values('1826', '270', '1', 'Spring', 2010, 'C '); + insert into takes values('24201', '158', '1', 'Fall', 2008, 'C+'); + insert into takes values('94766', '795', '1', 'Spring', 2004, 'C-'); + insert into takes values('69081', '137', '1', 'Spring', 2002, 'C+'); + insert into takes values('89312', '313', '1', 'Fall', 2010, 'B+'); + insert into takes values('59538', '239', '1', 'Fall', 2006, 'A '); + insert into takes values('81028', '105', '2', 'Fall', 2002, 'C-'); + insert into takes values('50206', '415', '1', 'Fall', 2010, 'C '); + insert into takes values('16753', '476', '1', 'Fall', 2010, 'C+'); + insert into takes values('63560', '626', '1', 'Fall', 2006, 'C '); + insert into takes values('16311', '694', '1', 'Fall', 2002, 'A-'); + insert into takes values('76224', '482', '1', 'Fall', 2005, 'B+'); + insert into takes values('16057', '105', '1', 'Fall', 2009, 'B+'); + insert into takes values('9460', '591', '1', 'Spring', 2005, 'A '); + insert into takes values('85904', '960', '2', 'Fall', 2006, 'A '); + insert into takes values('23457', '489', '1', 'Fall', 2007, 'A+'); + insert into takes values('93491', '599', '1', 'Spring', 2003, 'C+'); + insert into takes values('31250', '867', '1', 'Fall', 2006, 'C-'); + insert into takes values('11377', '795', '1', 'Spring', 2004, 'B+'); + insert into takes values('48678', '362', '1', 'Fall', 2005, 'B-'); + insert into takes values('88287', '486', '1', 'Fall', 2009, 'B-'); + insert into takes values('80698', '493', '1', 'Spring', 2010, 'B '); + insert into takes values('92693', '258', '1', 'Fall', 2007, 'A-'); + insert into takes values('29031', '748', '1', 'Fall', 2003, 'C-'); + insert into takes values('259', '545', '1', 'Fall', 2001, 'C '); + insert into takes values('81610', '603', '1', 'Fall', 2003, 'C-'); + insert into takes values('65329', '559', '1', 'Fall', 2002, 'C '); + insert into takes values('52872', '270', '1', 'Spring', 2010, 'A-'); + insert into takes values('76911', '748', '1', 'Fall', 2003, 'A-'); + insert into takes values('66469', '192', '1', 'Fall', 2002, 'A+'); + insert into takes values('9605', '486', '1', 'Fall', 2009, 'C-'); + insert into takes values('29462', '445', '1', 'Spring', 2001, 'B '); + insert into takes values('23449', '949', '1', 'Fall', 2007, 'B-'); + insert into takes values('55531', '603', '1', 'Fall', 2003, 'C-'); + insert into takes values('57242', '679', '1', 'Spring', 2010, 'A-'); + insert into takes values('75046', '426', '1', 'Spring', 2006, 'C-'); + insert into takes values('62716', '426', '1', 'Spring', 2006, 'C+'); + insert into takes values('28252', '591', '1', 'Spring', 2005, 'B+'); + insert into takes values('75116', '735', '2', 'Spring', 2010, 'C-'); + insert into takes values('86736', '486', '1', 'Fall', 2009, 'A-'); + insert into takes values('65121', '867', '2', 'Fall', 2010, 'B '); + insert into takes values('18108', '362', '1', 'Fall', 2005, 'B-'); + insert into takes values('96911', '468', '2', 'Fall', 2007, 'B+'); + insert into takes values('32368', '400', '1', 'Spring', 2007, 'B '); + insert into takes values('69241', '362', '2', 'Fall', 2006, 'B '); + insert into takes values('52656', '527', '1', 'Fall', 2004, 'B-'); + insert into takes values('71768', '561', '1', 'Fall', 2006, 'B '); + insert into takes values('83398', '461', '1', 'Fall', 2002, 'C+'); + insert into takes values('84727', '304', '1', 'Fall', 2009, 'B+'); + insert into takes values('94178', '867', '1', 'Fall', 2006, 'B-'); + insert into takes values('67018', '704', '1', 'Spring', 2008, 'B '); + insert into takes values('68096', '352', '1', 'Spring', 2006, 'A+'); + insert into takes values('39892', '808', '1', 'Fall', 2003, 'B-'); + insert into takes values('26473', '242', '1', 'Fall', 2009, 'B+'); + insert into takes values('53805', '489', '1', 'Fall', 2007, 'C+'); + insert into takes values('19603', '864', '1', 'Spring', 2006, 'C-'); + insert into takes values('51975', '591', '1', 'Spring', 2005, 'C-'); + insert into takes values('94766', '604', '1', 'Spring', 2009, 'A-'); + insert into takes values('88553', '237', '2', 'Fall', 2009, 'B+'); + insert into takes values('72358', '192', '1', 'Fall', 2002, 'B '); + insert into takes values('48660', '443', '1', 'Spring', 2010, 'C '); + insert into takes values('80254', '571', '1', 'Spring', 2004, 'C+'); + insert into takes values('11195', '362', '2', 'Fall', 2006, 'C+'); + insert into takes values('59920', '795', '1', 'Spring', 2004, 'B '); + insert into takes values('54620', '960', '1', 'Fall', 2009, 'A-'); + insert into takes values('16631', '629', '1', 'Spring', 2003, 'B '); + insert into takes values('91616', '239', '1', 'Fall', 2006, 'B+'); + insert into takes values('107', '445', '1', 'Spring', 2001, 'A+'); + insert into takes values('22057', '345', '1', 'Spring', 2008, 'B+'); + insert into takes values('97629', '158', '2', 'Spring', 2008, 'B+'); + insert into takes values('53185', '319', '1', 'Spring', 2003, 'B+'); + insert into takes values('99719', '486', '1', 'Fall', 2009, 'C-'); + insert into takes values('69225', '642', '1', 'Fall', 2004, 'B '); + insert into takes values('76798', '242', '1', 'Fall', 2009, 'C-'); + insert into takes values('99764', '400', '2', 'Fall', 2003, 'B-'); + insert into takes values('25942', '949', '1', 'Fall', 2007, 'C-'); + insert into takes values('86075', '704', '1', 'Spring', 2008, 'B+'); + insert into takes values('63243', '867', '2', 'Fall', 2010, 'B+'); + insert into takes values('11152', '338', '1', 'Spring', 2007, 'A-'); + insert into takes values('10834', '400', '2', 'Fall', 2003, 'C '); + insert into takes values('68150', '401', '1', 'Fall', 2003, 'C-'); + insert into takes values('35220', '843', '1', 'Fall', 2010, 'A-'); + insert into takes values('88140', '105', '2', 'Fall', 2002, 'C+'); + insert into takes values('77021', '927', '1', 'Fall', 2002, 'B+'); + insert into takes values('987', '663', '1', 'Spring', 2005, 'C+'); + insert into takes values('22198', '802', '1', 'Spring', 2003, 'C+'); + insert into takes values('85356', '338', '1', 'Spring', 2007, 'A-'); + insert into takes values('88045', '489', '1', 'Fall', 2007, 'B '); + insert into takes values('60224', '642', '1', 'Fall', 2004, 'C-'); + insert into takes values('66090', '612', '1', 'Fall', 2007, 'A '); + insert into takes values('49684', '445', '1', 'Spring', 2001, 'C+'); + insert into takes values('94726', '476', '1', 'Fall', 2010, 'C+'); + insert into takes values('47630', '366', '1', 'Fall', 2005, 'C '); + insert into takes values('42556', '545', '1', 'Fall', 2001, 'C+'); + insert into takes values('3651', '338', '1', 'Spring', 2007, 'A '); + insert into takes values('5414', '334', '1', 'Fall', 2009, 'C+'); + insert into takes values('64082', '802', '1', 'Spring', 2003, 'A+'); + insert into takes values('12326', '137', '1', 'Spring', 2002, 'C-'); + insert into takes values('19321', '603', '1', 'Fall', 2003, 'C-'); + insert into takes values('50386', '694', '1', 'Fall', 2002, 'B '); + insert into takes values('72186', '401', '1', 'Fall', 2003, 'A+'); + insert into takes values('847', '239', '1', 'Fall', 2006, 'B '); + insert into takes values('40937', '696', '1', 'Spring', 2002, 'C '); + insert into takes values('96003', '962', '1', 'Spring', 2008, 'C-'); + insert into takes values('45436', '270', '1', 'Spring', 2010, 'C+'); + insert into takes values('59908', '875', '1', 'Spring', 2005, 'A '); + insert into takes values('62124', '493', '1', 'Spring', 2010, 'C-'); + insert into takes values('80254', '158', '2', 'Spring', 2008, 'B+'); + insert into takes values('15726', '486', '1', 'Fall', 2009, 'A-'); + insert into takes values('46981', '338', '2', 'Spring', 2006, 'C-'); + insert into takes values('64082', '105', '1', 'Fall', 2009, 'B '); + insert into takes values('57107', '270', '1', 'Spring', 2010, 'A+'); + insert into takes values('12362', '571', '1', 'Spring', 2004, 'B+'); + insert into takes values('51698', '972', '1', 'Spring', 2009, 'A '); + insert into takes values('34018', '893', '1', 'Fall', 2007, 'B-'); + insert into takes values('43432', '362', '1', 'Fall', 2005, 'C '); + insert into takes values('41890', '105', '2', 'Fall', 2002, 'A+'); + insert into takes values('82688', '679', '1', 'Spring', 2010, 'C-'); + insert into takes values('68649', '949', '1', 'Fall', 2007, 'B-'); + insert into takes values('96193', '274', '1', 'Fall', 2002, 'C+'); + insert into takes values('21008', '559', '1', 'Fall', 2002, 'C+'); + insert into takes values('34322', '443', '1', 'Spring', 2010, 'C-'); + insert into takes values('43981', '960', '1', 'Fall', 2009, 'A+'); + insert into takes values('57026', '200', '1', 'Spring', 2007, 'B-'); + insert into takes values('85614', '793', '1', 'Spring', 2002, 'B+'); + insert into takes values('19582', '415', '1', 'Fall', 2010, 'C+'); + insert into takes values('80057', '496', '1', 'Fall', 2001, 'A-'); + insert into takes values('83747', '735', '1', 'Spring', 2003, 'C+'); + insert into takes values('40457', '735', '2', 'Spring', 2010, 'A+'); + insert into takes values('76224', '352', '1', 'Spring', 2006, 'C-'); + insert into takes values('544', '457', '1', 'Spring', 2001, 'C '); + insert into takes values('51203', '735', '1', 'Spring', 2003, 'B-'); + insert into takes values('88389', '242', '1', 'Fall', 2009, 'B-'); + insert into takes values('19861', '366', '1', 'Fall', 2005, 'A+'); + insert into takes values('53799', '349', '1', 'Spring', 2008, 'C '); + insert into takes values('49244', '559', '1', 'Fall', 2002, 'A+'); + insert into takes values('22345', '408', '2', 'Spring', 2003, 'B-'); + insert into takes values('56124', '748', '1', 'Fall', 2003, 'B+'); + insert into takes values('15144', '362', '2', 'Fall', 2006, 'B+'); + insert into takes values('11057', '237', '1', 'Spring', 2008, 'B-'); + insert into takes values('88793', '169', '1', 'Spring', 2007, 'B+'); + insert into takes values('56139', '704', '1', 'Spring', 2008, 'C '); + insert into takes values('34386', '137', '1', 'Spring', 2002, 'A '); + insert into takes values('51416', '421', '1', 'Fall', 2004, 'A-'); + insert into takes values('74974', '242', '1', 'Fall', 2009, 'C '); + insert into takes values('64820', '581', '1', 'Spring', 2005, 'B '); + insert into takes values('60249', '192', '1', 'Fall', 2002, 'C+'); + insert into takes values('28952', '599', '1', 'Spring', 2003, 'C-'); + insert into takes values('2848', '561', '1', 'Fall', 2006, 'C '); + insert into takes values('27366', '642', '1', 'Fall', 2004, 'C-'); + insert into takes values('15074', '192', '1', 'Fall', 2002, 'A+'); + insert into takes values('93571', '237', '2', 'Fall', 2009, 'C+'); + insert into takes values('1922', '200', '2', 'Fall', 2002, 'A+'); + insert into takes values('66763', '486', '1', 'Fall', 2009, 'A+'); + insert into takes values('53225', '200', '1', 'Spring', 2007, 'C-'); + insert into takes values('47265', '692', '1', 'Spring', 2010, 'B+'); + insert into takes values('888', '200', '1', 'Spring', 2007, 'B '); + insert into takes values('81984', '345', '1', 'Spring', 2008, 'B+'); + insert into takes values('58085', '496', '1', 'Fall', 2001, 'C+'); + insert into takes values('92040', '864', '1', 'Spring', 2006, 'C '); + insert into takes values('108', '747', '1', 'Spring', 2004, 'A+'); + insert into takes values('88553', '893', '1', 'Fall', 2007, 'B+'); + insert into takes values('95366', '852', '1', 'Spring', 2008, 'A-'); + insert into takes values('26028', '581', '1', 'Spring', 2005, 'A+'); + insert into takes values('85754', '962', '1', 'Spring', 2008, 'C-'); + insert into takes values('16849', '867', '2', 'Fall', 2010, 'C+'); + insert into takes values('62152', '694', '1', 'Fall', 2002, 'B-'); + insert into takes values('70098', '345', '1', 'Spring', 2008, 'B+'); + insert into takes values('50013', '867', '1', 'Fall', 2006, 'C '); + insert into takes values('43211', '313', '1', 'Fall', 2010, 'B-'); + insert into takes values('19536', '352', '1', 'Spring', 2006, 'B '); + insert into takes values('23344', '158', '1', 'Fall', 2008, 'B-'); + insert into takes values('11095', '629', '1', 'Spring', 2003, 'A-'); + insert into takes values('67560', '445', '1', 'Spring', 2001, 'B '); + insert into takes values('37454', '476', '1', 'Fall', 2010, 'B '); + insert into takes values('5017', '802', '1', 'Spring', 2003, 'B '); + insert into takes values('77548', '421', '1', 'Fall', 2004, 'A+'); + insert into takes values('80651', '962', '1', 'Spring', 2008, 'B '); + insert into takes values('19603', '105', '1', 'Fall', 2009, 'A '); + insert into takes values('43211', '631', '1', 'Spring', 2007, 'A-'); + insert into takes values('82697', '415', '1', 'Fall', 2010, 'A '); + insert into takes values('86661', '663', '1', 'Spring', 2005, 'B-'); + insert into takes values('79469', '468', '2', 'Fall', 2007, 'C '); + insert into takes values('37586', '802', '1', 'Spring', 2003, 'B '); + insert into takes values('88993', '893', '1', 'Fall', 2007, 'A-'); + insert into takes values('84189', '468', '2', 'Fall', 2007, 'B+'); + insert into takes values('82697', '468', '2', 'Fall', 2007, 'C '); + insert into takes values('74509', '493', '1', 'Spring', 2010, 'A '); + insert into takes values('99710', '334', '1', 'Fall', 2009, 'C-'); + insert into takes values('15487', '692', '1', 'Spring', 2010, 'C '); + insert into takes values('93366', '400', '1', 'Spring', 2007, 'B+'); + insert into takes values('50039', '696', '1', 'Spring', 2002, 'C '); + insert into takes values('50039', '972', '1', 'Spring', 2009, 'B-'); + insert into takes values('34197', '702', '1', 'Spring', 2001, 'B-'); + insert into takes values('64196', '704', '1', 'Spring', 2008, 'A+'); + insert into takes values('83573', '663', '1', 'Spring', 2005, 'B '); + insert into takes values('22004', '105', '2', 'Fall', 2002, 'B-'); + insert into takes values('82918', '349', '1', 'Spring', 2008, 'B '); + insert into takes values('55698', '274', '1', 'Fall', 2002, 'C-'); + insert into takes values('51723', '200', '2', 'Fall', 2002, 'C '); + insert into takes values('85366', '338', '1', 'Spring', 2007, 'C '); + insert into takes values('8252', '704', '1', 'Spring', 2008, 'A-'); + insert into takes values('91442', '493', '1', 'Spring', 2010, 'C-'); + insert into takes values('69960', '496', '1', 'Fall', 2001, 'B-'); + insert into takes values('74530', '960', '2', 'Fall', 2006, 'A+'); + insert into takes values('49244', '408', '2', 'Spring', 2003, 'C+'); + insert into takes values('99348', '991', '1', 'Spring', 2008, 'A-'); + insert into takes values('3576', '105', '1', 'Fall', 2009, 'C+'); + insert into takes values('75794', '962', '1', 'Spring', 2008, 'B-'); + insert into takes values('97679', '239', '1', 'Fall', 2006, 'C-'); + insert into takes values('59455', '376', '1', 'Fall', 2006, 'A-'); + insert into takes values('39472', '571', '1', 'Spring', 2004, 'A-'); + insert into takes values('58634', '415', '1', 'Fall', 2010, 'A '); + insert into takes values('27430', '694', '1', 'Fall', 2002, 'B+'); + insert into takes values('66469', '949', '1', 'Fall', 2007, 'B '); + insert into takes values('96067', '401', '1', 'Fall', 2003, 'C-'); + insert into takes values('25785', '867', '1', 'Fall', 2006, 'C+'); + insert into takes values('37284', '795', '1', 'Spring', 2004, 'A+'); + insert into takes values('9084', '571', '1', 'Spring', 2004, 'B-'); + insert into takes values('7854', '338', '1', 'Spring', 2007, 'C+'); + insert into takes values('63361', '631', '1', 'Spring', 2007, 'A '); + insert into takes values('14596', '991', '1', 'Spring', 2008, 'A+'); + insert into takes values('95175', '696', '1', 'Spring', 2002, 'B-'); + insert into takes values('62784', '105', '2', 'Fall', 2002, 'B+'); + insert into takes values('53588', '867', '2', 'Fall', 2010, 'A '); + insert into takes values('3005', '461', '1', 'Fall', 2002, 'C-'); + insert into takes values('51203', '304', '1', 'Fall', 2009, 'C-'); + insert into takes values('81876', '793', '1', 'Spring', 2002, 'A+'); + insert into takes values('80248', '443', '2', 'Spring', 2002, 'B-'); + insert into takes values('55170', '692', '1', 'Spring', 2010, 'A+'); + insert into takes values('19861', '991', '1', 'Spring', 2008, 'B-'); + insert into takes values('52876', '852', '1', 'Spring', 2008, 'C '); + insert into takes values('62754', '808', '1', 'Fall', 2003, 'A-'); + insert into takes values('83022', '137', '1', 'Spring', 2002, 'B+'); + insert into takes values('57055', '313', '1', 'Fall', 2010, 'B '); + insert into takes values('90353', '362', '1', 'Fall', 2005, 'C-'); + insert into takes values('52057', '748', '1', 'Fall', 2003, 'A-'); + insert into takes values('79697', '105', '2', 'Fall', 2002, 'A '); + insert into takes values('62636', '489', '1', 'Fall', 2007, 'A+'); + insert into takes values('66229', '962', '1', 'Spring', 2008, 'A+'); + insert into takes values('41406', '927', '1', 'Fall', 2002, 'B+'); + insert into takes values('63612', '334', '1', 'Fall', 2009, 'C+'); + insert into takes values('92442', '791', '1', 'Spring', 2006, 'A-'); + insert into takes values('75299', '239', '1', 'Fall', 2006, 'A '); + insert into takes values('30252', '694', '1', 'Fall', 2002, 'C-'); + insert into takes values('99660', '468', '1', 'Fall', 2005, 'A '); + insert into takes values('24784', '400', '1', 'Spring', 2007, 'A '); + insert into takes values('5898', '591', '1', 'Spring', 2005, 'C-'); + insert into takes values('31690', '972', '1', 'Spring', 2009, 'B-'); + insert into takes values('36126', '795', '1', 'Spring', 2004, 'C '); + insert into takes values('8457', '748', '1', 'Fall', 2003, 'B '); + insert into takes values('18675', '274', '1', 'Fall', 2002, 'B+'); + insert into takes values('95205', '694', '1', 'Fall', 2002, 'C+'); + insert into takes values('53803', '200', '2', 'Fall', 2002, 'C '); + insert into takes values('27950', '158', '2', 'Spring', 2008, 'A+'); + insert into takes values('56089', '400', '1', 'Spring', 2007, 'B '); + insert into takes values('79487', '362', '2', 'Fall', 2006, 'A+'); + insert into takes values('99764', '626', '1', 'Fall', 2006, 'C-'); + insert into takes values('71631', '843', '1', 'Fall', 2010, 'A '); + insert into takes values('32385', '702', '1', 'Spring', 2001, 'C '); + insert into takes values('85887', '158', '1', 'Fall', 2008, 'C+'); + insert into takes values('50598', '200', '1', 'Spring', 2007, 'C+'); + insert into takes values('6523', '443', '1', 'Spring', 2010, 'C-'); + insert into takes values('90004', '626', '1', 'Fall', 2006, 'C+'); + insert into takes values('3487', '105', '2', 'Fall', 2002, 'B '); + insert into takes values('59455', '334', '1', 'Fall', 2009, 'B-'); + insert into takes values('78332', '493', '1', 'Spring', 2010, 'C-'); + insert into takes values('56212', '493', '1', 'Spring', 2010, 'A-'); + insert into takes values('48589', '527', '1', 'Fall', 2004, 'B '); + insert into takes values('85849', '802', '1', 'Spring', 2003, 'C+'); + insert into takes values('56057', '867', '2', 'Fall', 2010, 'B+'); + insert into takes values('34422', '561', '1', 'Fall', 2006, 'B '); + insert into takes values('52057', '242', '1', 'Fall', 2009, 'A-'); + insert into takes values('123', '486', '1', 'Fall', 2009, 'C '); + insert into takes values('4173', '559', '1', 'Fall', 2002, 'A '); + insert into takes values('62832', '493', '1', 'Spring', 2010, 'B-'); + insert into takes values('48462', '304', '1', 'Fall', 2009, 'C-'); + insert into takes values('21401', '192', '1', 'Fall', 2002, 'C+'); + insert into takes values('27044', '270', '1', 'Spring', 2010, 'A '); + insert into takes values('69230', '489', '1', 'Fall', 2007, 'A '); + insert into takes values('19536', '581', '1', 'Spring', 2005, 'C+'); + insert into takes values('79210', '629', '1', 'Spring', 2003, 'A-'); + insert into takes values('95027', '319', '1', 'Spring', 2003, 'C+'); + insert into takes values('96772', '338', '2', 'Spring', 2006, 'C-'); + insert into takes values('36019', '468', '2', 'Fall', 2007, 'C '); + insert into takes values('9947', '949', '1', 'Fall', 2007, 'C+'); + insert into takes values('69471', '642', '1', 'Fall', 2004, 'B+'); + insert into takes values('67657', '105', '2', 'Fall', 2002, 'B-'); + insert into takes values('49214', '867', '2', 'Fall', 2010, 'C '); + insert into takes values('98690', '137', '1', 'Spring', 2002, 'A '); + insert into takes values('78858', '694', '1', 'Fall', 2002, 'B-'); + insert into takes values('23934', '561', '1', 'Fall', 2006, 'B-'); + insert into takes values('31624', '476', '1', 'Fall', 2010, 'A-'); + insert into takes values('36402', '169', '1', 'Spring', 2007, 'A+'); + insert into takes values('70299', '694', '1', 'Fall', 2002, 'A-'); + insert into takes values('96203', '338', '1', 'Spring', 2007, 'A '); + insert into takes values('72006', '496', '1', 'Fall', 2001, 'C-'); + insert into takes values('69853', '319', '1', 'Spring', 2003, 'B '); + insert into takes values('88045', '400', '1', 'Spring', 2007, 'A+'); + insert into takes values('4940', '237', '2', 'Fall', 2009, 'C+'); + insert into takes values('95953', '443', '1', 'Spring', 2010, 'C '); + insert into takes values('55915', '158', '1', 'Fall', 2008, 'A '); + insert into takes values('36244', '158', '1', 'Fall', 2008, 'A-'); + insert into takes values('99226', '476', '1', 'Fall', 2010, 'B-'); + insert into takes values('62520', '426', '1', 'Spring', 2006, 'A+'); + insert into takes values('64196', '893', '1', 'Fall', 2007, 'B '); + insert into takes values('75241', '242', '1', 'Fall', 2009, 'B-'); + insert into takes values('96988', '603', '1', 'Fall', 2003, 'B-'); + insert into takes values('33546', '270', '1', 'Spring', 2010, 'A-'); + insert into takes values('50039', '443', '1', 'Spring', 2010, 'B-'); + insert into takes values('9183', '304', '1', 'Fall', 2009, 'A+'); + insert into takes values('69632', '408', '1', 'Spring', 2007, 'A '); + insert into takes values('62832', '461', '1', 'Fall', 2002, 'B+'); + insert into takes values('83686', '991', '1', 'Spring', 2008, 'A+'); + insert into takes values('56124', '105', '1', 'Fall', 2009, 'A-'); + insert into takes values('66753', '461', '1', 'Fall', 2002, 'B-'); + insert into takes values('70362', '559', '1', 'Fall', 2002, 'A '); + insert into takes values('75423', '927', '1', 'Fall', 2002, 'B+'); + insert into takes values('57985', '747', '1', 'Spring', 2004, 'A-'); + insert into takes values('58355', '482', '1', 'Fall', 2005, 'C '); + insert into takes values('65400', '875', '1', 'Spring', 2005, 'A '); + insert into takes values('48640', '461', '1', 'Fall', 2002, 'A '); + insert into takes values('95852', '808', '1', 'Fall', 2003, 'A+'); + insert into takes values('7854', '421', '1', 'Fall', 2004, 'C+'); + insert into takes values('91343', '960', '1', 'Fall', 2009, 'C+'); + insert into takes values('32376', '376', '1', 'Fall', 2006, 'B+'); + insert into takes values('58874', '468', '1', 'Fall', 2005, 'B-'); + insert into takes values('44258', '200', '2', 'Fall', 2002, 'A '); + insert into takes values('22170', '258', '1', 'Fall', 2007, 'A-'); + insert into takes values('9460', '408', '2', 'Spring', 2003, 'C '); + insert into takes values('51538', '258', '1', 'Fall', 2007, 'B+'); + insert into takes values('42991', '974', '1', 'Fall', 2003, 'C-'); + insert into takes values('8843', '274', '1', 'Fall', 2002, 'B-'); + insert into takes values('83039', '362', '2', 'Fall', 2006, 'A-'); + insert into takes values('14065', '747', '1', 'Spring', 2004, 'B-'); + insert into takes values('51008', '366', '1', 'Fall', 2005, 'B-'); + insert into takes values('54605', '169', '1', 'Spring', 2007, 'A-'); + insert into takes values('7602', '158', '2', 'Spring', 2008, 'A '); + insert into takes values('39241', '791', '1', 'Spring', 2006, 'A '); + insert into takes values('38895', '843', '1', 'Fall', 2010, 'B '); + insert into takes values('96134', '561', '1', 'Fall', 2006, 'C-'); + insert into takes values('36102', '974', '1', 'Fall', 2003, 'C+'); + insert into takes values('26102', '591', '1', 'Spring', 2005, 'C-'); + insert into takes values('35293', '239', '1', 'Fall', 2006, 'B+'); + insert into takes values('27366', '362', '3', 'Spring', 2008, 'A+'); + insert into takes values('65258', '626', '1', 'Fall', 2006, 'C-'); + insert into takes values('99189', '696', '1', 'Spring', 2002, 'B+'); + insert into takes values('32886', '603', '1', 'Fall', 2003, 'C+'); + insert into takes values('34197', '663', '1', 'Spring', 2005, 'B-'); + insert into takes values('16631', '408', '2', 'Spring', 2003, 'A-'); + insert into takes values('1220', '864', '1', 'Spring', 2006, 'C-'); + insert into takes values('83728', '242', '1', 'Fall', 2009, 'C '); + insert into takes values('67024', '401', '1', 'Fall', 2003, 'B '); + insert into takes values('28316', '808', '1', 'Fall', 2003, 'A-'); + insert into takes values('61783', '949', '1', 'Fall', 2007, 'A+'); + insert into takes values('52471', '493', '1', 'Spring', 2010, 'A+'); + insert into takes values('2501', '169', '1', 'Spring', 2007, 'C '); + insert into takes values('60366', '445', '1', 'Spring', 2001, 'C-'); + insert into takes values('73908', '631', '1', 'Spring', 2007, 'A-'); + insert into takes values('29863', '692', '1', 'Spring', 2010, 'A+'); + insert into takes values('52669', '158', '2', 'Spring', 2008, 'A-'); + insert into takes values('61065', '338', '1', 'Spring', 2007, 'A-'); + insert into takes values('36995', '747', '1', 'Spring', 2004, 'B+'); + insert into takes values('10834', '893', '1', 'Fall', 2007, 'A-'); + insert into takes values('30957', '239', '1', 'Fall', 2006, 'A-'); + insert into takes values('37521', '603', '1', 'Fall', 2003, 'C+'); + insert into takes values('49391', '362', '2', 'Fall', 2006, 'A '); + insert into takes values('4860', '400', '1', 'Spring', 2007, 'B+'); + insert into takes values('58594', '443', '2', 'Spring', 2002, 'A-'); + insert into takes values('53152', '489', '1', 'Fall', 2007, 'A '); + insert into takes values('53485', '200', '1', 'Spring', 2007, 'B-'); + insert into takes values('47126', '808', '1', 'Fall', 2003, 'B '); + insert into takes values('84039', '545', '1', 'Fall', 2001, 'C-'); + insert into takes values('8251', '304', '1', 'Fall', 2009, 'B-'); + insert into takes values('90353', '974', '1', 'Fall', 2003, 'A-'); + insert into takes values('67293', '704', '1', 'Spring', 2008, 'B '); + insert into takes values('74530', '960', '1', 'Fall', 2009, 'C '); + insert into takes values('48678', '545', '1', 'Fall', 2001, 'B-'); + insert into takes values('98423', '362', '2', 'Fall', 2006, 'A+'); + insert into takes values('94730', '426', '1', 'Spring', 2006, 'B-'); + insert into takes values('77361', '561', '1', 'Fall', 2006, 'A '); + insert into takes values('8853', '400', '1', 'Spring', 2007, 'B+'); + insert into takes values('76291', '237', '2', 'Fall', 2009, 'A '); + insert into takes values('52385', '158', '2', 'Spring', 2008, 'B '); + insert into takes values('1884', '400', '1', 'Spring', 2007, 'B-'); + insert into takes values('55857', '457', '1', 'Spring', 2001, 'A+'); + insert into takes values('11530', '457', '1', 'Spring', 2001, 'B+'); + insert into takes values('52187', '400', '2', 'Fall', 2003, 'C '); + insert into takes values('12078', '319', '1', 'Spring', 2003, 'C-'); + insert into takes values('56755', '242', '1', 'Fall', 2009, 'A+'); + insert into takes values('58307', '400', '1', 'Spring', 2007, 'C+'); + insert into takes values('83398', '200', '2', 'Fall', 2002, 'C '); + insert into takes values('35498', '239', '1', 'Fall', 2006, 'C-'); + insert into takes values('31337', '426', '1', 'Spring', 2006, 'B+'); + insert into takes values('94142', '421', '1', 'Fall', 2004, 'C '); + insert into takes values('55170', '559', '1', 'Fall', 2002, 'C '); + insert into takes values('84039', '352', '1', 'Spring', 2006, 'A-'); + insert into takes values('21100', '663', '1', 'Spring', 2005, 'A-'); + insert into takes values('76291', '158', '1', 'Fall', 2008, 'C '); + insert into takes values('49873', '352', '1', 'Spring', 2006, 'A+'); + insert into takes values('70099', '401', '1', 'Fall', 2003, 'C-'); + insert into takes values('17944', '663', '1', 'Spring', 2005, 'A-'); + insert into takes values('41450', '274', '1', 'Fall', 2002, 'C+'); + insert into takes values('499', '735', '1', 'Spring', 2003, 'C-'); + insert into takes values('90372', '962', '1', 'Spring', 2008, 'B-'); + insert into takes values('80698', '400', '2', 'Fall', 2003, 'B-'); + insert into takes values('89297', '629', '1', 'Spring', 2003, 'C-'); + insert into takes values('52471', '482', '1', 'Fall', 2005, 'B-'); + insert into takes values('28977', '334', '1', 'Fall', 2009, 'A '); + insert into takes values('12362', '158', '2', 'Spring', 2008, 'B-'); + insert into takes values('19824', '591', '1', 'Spring', 2005, 'C-'); + insert into takes values('64724', '545', '1', 'Fall', 2001, 'C+'); + insert into takes values('25725', '408', '1', 'Spring', 2007, 'B-'); + insert into takes values('73492', '338', '1', 'Spring', 2007, 'A '); + insert into takes values('53089', '349', '1', 'Spring', 2008, 'C-'); + insert into takes values('57431', '270', '1', 'Spring', 2010, 'A-'); + insert into takes values('95840', '696', '1', 'Spring', 2002, 'A+'); + insert into takes values('59553', '401', '1', 'Fall', 2003, 'A-'); + insert into takes values('76953', '274', '1', 'Fall', 2002, 'B+'); + insert into takes values('11095', '200', '1', 'Spring', 2007, 'B-'); + insert into takes values('33817', '692', '1', 'Spring', 2010, 'A-'); + insert into takes values('46956', '408', '1', 'Spring', 2007, 'A+'); + insert into takes values('48471', '991', '1', 'Spring', 2008, 'A '); + insert into takes values('52707', '319', '1', 'Spring', 2003, 'B '); + insert into takes values('7732', '237', '2', 'Fall', 2009, 'C '); + insert into takes values('90181', '443', '1', 'Spring', 2010, 'B+'); + insert into takes values('82039', '400', '2', 'Fall', 2003, 'C '); + insert into takes values('50598', '461', '1', 'Fall', 2002, 'C+'); + insert into takes values('68453', '169', '2', 'Fall', 2002, 'C '); + insert into takes values('57925', '408', '2', 'Spring', 2003, 'C '); + insert into takes values('499', '200', '1', 'Spring', 2007, 'B+'); + insert into takes values('43854', '843', '1', 'Fall', 2010, 'C '); + insert into takes values('96117', '274', '1', 'Fall', 2002, 'A '); + insert into takes values('12615', '599', '1', 'Spring', 2003, 'A-'); + insert into takes values('21789', '376', '1', 'Fall', 2006, 'C '); + insert into takes values('93631', '559', '1', 'Fall', 2002, 'B-'); + insert into takes values('96153', '527', '1', 'Fall', 2004, 'C '); + insert into takes values('85211', '137', '1', 'Spring', 2002, 'C+'); + insert into takes values('67371', '486', '1', 'Fall', 2009, 'C-'); + insert into takes values('59455', '747', '1', 'Spring', 2004, 'A-'); + insert into takes values('51093', '169', '2', 'Fall', 2002, 'C-'); + insert into takes values('58172', '748', '1', 'Fall', 2003, 'B-'); + insert into takes values('67146', '791', '1', 'Spring', 2006, 'B '); + insert into takes values('87222', '270', '1', 'Spring', 2010, 'A '); + insert into takes values('83691', '200', '2', 'Fall', 2002, 'C+'); + insert into takes values('64192', '200', '1', 'Spring', 2007, 'B-'); + insert into takes values('31086', '808', '1', 'Fall', 2003, 'A '); + insert into takes values('82688', '105', '1', 'Fall', 2009, 'C '); + insert into takes values('39157', '527', '1', 'Fall', 2004, 'B-'); + insert into takes values('65715', '408', '1', 'Spring', 2007, 'C '); + insert into takes values('27043', '591', '1', 'Spring', 2005, 'B-'); + insert into takes values('978', '169', '2', 'Fall', 2002, 'A-'); + insert into takes values('57985', '545', '1', 'Fall', 2001, 'A-'); + insert into takes values('53699', '802', '1', 'Spring', 2003, 'B-'); + insert into takes values('30341', '408', '1', 'Spring', 2007, 'B-'); + insert into takes values('29031', '962', '1', 'Spring', 2008, 'A-'); + insert into takes values('10917', '468', '2', 'Fall', 2007, 'C-'); + insert into takes values('94522', '258', '1', 'Fall', 2007, 'A+'); + insert into takes values('55857', '352', '1', 'Spring', 2006, 'A '); + insert into takes values('94535', '559', '1', 'Fall', 2002, 'B-'); + insert into takes values('59046', '748', '1', 'Fall', 2003, 'C '); + insert into takes values('32490', '867', '2', 'Fall', 2010, 'A-'); + insert into takes values('35588', '461', '1', 'Fall', 2002, 'B+'); + insert into takes values('61356', '626', '1', 'Fall', 2006, 'A+'); + insert into takes values('52057', '735', '1', 'Spring', 2003, 'C '); + insert into takes values('62636', '401', '1', 'Fall', 2003, 'B+'); + insert into takes values('23373', '457', '1', 'Spring', 2001, 'B-'); + insert into takes values('15538', '791', '1', 'Spring', 2006, 'A-'); + insert into takes values('37734', '362', '2', 'Fall', 2006, 'A '); + insert into takes values('41671', '527', '1', 'Fall', 2004, 'C '); + insert into takes values('96085', '334', '1', 'Fall', 2009, 'C+'); + insert into takes values('10838', '702', '1', 'Spring', 2001, 'B '); + insert into takes values('14284', '791', '1', 'Spring', 2006, 'A+'); + insert into takes values('16405', '426', '1', 'Spring', 2006, 'B+'); + insert into takes values('29849', '545', '1', 'Fall', 2001, 'A '); + insert into takes values('16907', '581', '1', 'Spring', 2005, 'A+'); + insert into takes values('86127', '604', '1', 'Spring', 2009, 'B+'); + insert into takes values('87784', '692', '1', 'Spring', 2010, 'A '); + insert into takes values('79170', '642', '1', 'Fall', 2004, 'A+'); + insert into takes values('89571', '362', '3', 'Spring', 2008, 'C+'); + insert into takes values('26427', '735', '1', 'Spring', 2003, 'A+'); + insert into takes values('37103', '927', '1', 'Fall', 2002, 'C '); + insert into takes values('37284', '274', '1', 'Fall', 2002, 'A-'); + insert into takes values('78572', '631', '1', 'Spring', 2007, 'A+'); + insert into takes values('93708', '105', '2', 'Fall', 2002, 'C-'); + insert into takes values('83204', '843', '1', 'Fall', 2010, 'C '); + insert into takes values('30957', '457', '1', 'Spring', 2001, 'B-'); + insert into takes values('17997', '604', '1', 'Spring', 2009, 'C-'); + insert into takes values('8140', '105', '1', 'Fall', 2009, 'A+'); + insert into takes values('40481', '760', '1', 'Spring', 2004, 'C-'); + insert into takes values('18338', '468', '1', 'Fall', 2005, 'B+'); + insert into takes values('86552', '401', '1', 'Fall', 2003, 'C-'); + insert into takes values('42560', '972', '1', 'Spring', 2009, 'C-'); + insert into takes values('1884', '626', '1', 'Fall', 2006, 'C '); + insert into takes values('52876', '105', '2', 'Fall', 2002, 'C '); + insert into takes values('50969', '489', '1', 'Fall', 2007, 'A+'); + insert into takes values('44998', '237', '2', 'Fall', 2009, 'B+'); + insert into takes values('10204', '200', '2', 'Fall', 2002, 'B-'); + insert into takes values('95697', '345', '1', 'Spring', 2008, 'C-'); + insert into takes values('97041', '696', '1', 'Spring', 2002, 'C '); + insert into takes values('67660', '679', '1', 'Spring', 2010, 'A+'); + insert into takes values('49073', '443', '1', 'Spring', 2010, 'C+'); + insert into takes values('45359', '612', '1', 'Fall', 2007, 'B-'); + insert into takes values('36102', '338', '1', 'Spring', 2007, 'B+'); + insert into takes values('84704', '795', '1', 'Spring', 2004, 'B '); + insert into takes values('29091', '793', '1', 'Spring', 2002, 'B '); + insert into takes values('5824', '304', '1', 'Fall', 2009, 'A-'); + insert into takes values('68242', '426', '1', 'Spring', 2006, 'C-'); + insert into takes values('78314', '603', '1', 'Fall', 2003, 'A-'); + insert into takes values('16133', '362', '1', 'Fall', 2005, 'B-'); + insert into takes values('79534', '604', '1', 'Spring', 2009, 'B+'); + insert into takes values('78922', '496', '1', 'Fall', 2001, 'C-'); + insert into takes values('32464', '319', '1', 'Spring', 2003, 'A+'); + insert into takes values('34422', '376', '1', 'Fall', 2006, 'A+'); + insert into takes values('8343', '482', '1', 'Fall', 2005, 'A '); + insert into takes values('24932', '559', '1', 'Fall', 2002, 'B+'); + insert into takes values('32881', '852', '1', 'Spring', 2008, 'C+'); + insert into takes values('53172', '791', '1', 'Spring', 2006, 'C '); + insert into takes values('31079', '345', '1', 'Spring', 2008, 'C+'); + insert into takes values('48660', '747', '1', 'Spring', 2004, 'A-'); + insert into takes values('92703', '237', '1', 'Spring', 2008, 'C '); + insert into takes values('57511', '629', '1', 'Spring', 2003, 'A+'); + insert into takes values('85534', '791', '1', 'Spring', 2006, 'C '); + insert into takes values('36052', '692', '1', 'Spring', 2010, 'B-'); + insert into takes values('78143', '362', '3', 'Spring', 2008, 'C '); + insert into takes values('89106', '319', '1', 'Spring', 2003, 'B '); + insert into takes values('75522', '864', '1', 'Spring', 2006, 'B '); + insert into takes values('4645', '679', '1', 'Spring', 2010, 'C '); + insert into takes values('3576', '960', '2', 'Fall', 2006, 'A-'); + insert into takes values('57107', '400', '2', 'Fall', 2003, 'C-'); + insert into takes values('81258', '237', '1', 'Spring', 2008, 'B '); + insert into takes values('63645', '599', '1', 'Spring', 2003, 'A-'); + insert into takes values('2139', '692', '1', 'Spring', 2010, 'B-'); + insert into takes values('99611', '629', '1', 'Spring', 2003, 'B-'); + insert into takes values('50386', '200', '1', 'Spring', 2007, 'A-'); + insert into takes values('33107', '791', '1', 'Spring', 2006, 'C-'); + insert into takes values('17924', '338', '2', 'Spring', 2006, 'C '); + insert into takes values('78637', '760', '1', 'Spring', 2004, 'B-'); + insert into takes values('76798', '802', '1', 'Spring', 2003, 'A-'); + insert into takes values('11855', '852', '1', 'Spring', 2008, 'C-'); + insert into takes values('390', '864', '1', 'Spring', 2006, 'B '); + insert into takes values('40044', '949', '1', 'Fall', 2007, 'C-'); + insert into takes values('94730', '679', '1', 'Spring', 2010, 'C-'); + insert into takes values('24197', '974', '1', 'Fall', 2003, 'B-'); + insert into takes values('91799', '852', '1', 'Spring', 2008, 'C-'); + insert into takes values('10736', '559', '1', 'Fall', 2002, 'C-'); + insert into takes values('68516', '927', '1', 'Fall', 2002, 'C-'); + insert into takes values('62795', '400', '2', 'Fall', 2003, 'B-'); + insert into takes values('27956', '489', '1', 'Fall', 2007, 'C '); + insert into takes values('28977', '421', '1', 'Fall', 2004, 'B '); + insert into takes values('63612', '867', '2', 'Fall', 2010, 'B+'); + insert into takes values('16969', '443', '2', 'Spring', 2002, 'A '); + insert into takes values('24932', '482', '1', 'Fall', 2005, 'A+'); + insert into takes values('24442', '105', '1', 'Fall', 2009, 'B '); + insert into takes values('15024', '304', '1', 'Fall', 2009, 'C '); + insert into takes values('81638', '694', '1', 'Fall', 2002, 'A+'); + insert into takes values('96052', '793', '1', 'Spring', 2002, 'B-'); + insert into takes values('842', '443', '1', 'Spring', 2010, 'C '); + insert into takes values('32056', '445', '1', 'Spring', 2001, 'B-'); + insert into takes values('34770', '345', '1', 'Spring', 2008, 'B '); + insert into takes values('914', '400', '2', 'Fall', 2003, 'C-'); + insert into takes values('96117', '319', '1', 'Spring', 2003, 'B+'); + insert into takes values('72055', '349', '1', 'Spring', 2008, 'A+'); + insert into takes values('39978', '362', '2', 'Fall', 2006, 'C '); + insert into takes values('39580', '629', '1', 'Spring', 2003, 'C '); + insert into takes values('40116', '867', '1', 'Fall', 2006, 'A+'); + insert into takes values('68720', '366', '1', 'Fall', 2005, 'B-'); + insert into takes values('57377', '527', '1', 'Fall', 2004, 'C '); + insert into takes values('5824', '192', '1', 'Fall', 2002, 'B-'); + insert into takes values('75560', '445', '1', 'Spring', 2001, 'C+'); + insert into takes values('7043', '612', '1', 'Fall', 2007, 'C-'); + insert into takes values('70021', '747', '1', 'Spring', 2004, 'A '); + insert into takes values('39927', '748', '1', 'Fall', 2003, 'B-'); + insert into takes values('914', '400', '1', 'Spring', 2007, 'B-'); + insert into takes values('44271', '158', '1', 'Fall', 2008, 'A+'); + insert into takes values('19362', '366', '1', 'Fall', 2005, 'A-'); + insert into takes values('5943', '169', '1', 'Spring', 2007, 'A '); + insert into takes values('92864', '793', '1', 'Spring', 2002, 'C+'); + insert into takes values('75123', '105', '2', 'Fall', 2002, 'B-'); + insert into takes values('18636', '864', '1', 'Spring', 2006, 'C '); + insert into takes values('1812', '791', '1', 'Spring', 2006, 'C '); + insert into takes values('90609', '408', '2', 'Spring', 2003, 'A+'); + insert into takes values('19536', '496', '1', 'Fall', 2001, 'B+'); + insert into takes values('19917', '338', '1', 'Spring', 2007, 'B-'); + insert into takes values('3651', '345', '1', 'Spring', 2008, 'B-'); + insert into takes values('39580', '239', '1', 'Fall', 2006, 'B-'); + insert into takes values('37586', '581', '1', 'Spring', 2005, 'A '); + insert into takes values('31080', '791', '1', 'Spring', 2006, 'A '); + insert into takes values('18583', '400', '2', 'Fall', 2003, 'B '); + insert into takes values('11194', '642', '1', 'Fall', 2004, 'C+'); + insert into takes values('847', '169', '1', 'Spring', 2007, 'C+'); + insert into takes values('55940', '559', '1', 'Fall', 2002, 'B+'); + insert into takes values('29031', '581', '1', 'Spring', 2005, 'C-'); + insert into takes values('20445', '867', '1', 'Fall', 2006, 'A+'); + insert into takes values('13217', '489', '1', 'Fall', 2007, 'A-'); + insert into takes values('16480', '959', '1', 'Fall', 2006, 'B+'); + insert into takes values('89312', '974', '1', 'Fall', 2003, 'C-'); + insert into takes values('95225', '949', '1', 'Fall', 2007, 'A-'); + insert into takes values('9514', '735', '2', 'Spring', 2010, 'C-'); + insert into takes values('36019', '748', '1', 'Fall', 2003, 'C '); + insert into takes values('10267', '345', '1', 'Spring', 2008, 'C-'); + insert into takes values('31079', '791', '1', 'Spring', 2006, 'B+'); + insert into takes values('3576', '962', '1', 'Spring', 2008, 'C '); + insert into takes values('73268', '486', '1', 'Fall', 2009, 'C+'); + insert into takes values('82039', '974', '1', 'Fall', 2003, 'C '); + insert into takes values('68395', '604', '1', 'Spring', 2009, 'A-'); + insert into takes values('37734', '735', '2', 'Spring', 2010, 'C-'); + insert into takes values('95626', '604', '1', 'Spring', 2009, 'C-'); + insert into takes values('33759', '476', '1', 'Fall', 2010, 'B+'); + insert into takes values('50969', '702', '1', 'Spring', 2001, 'B '); + insert into takes values('31337', '242', '1', 'Fall', 2009, 'A+'); + insert into takes values('82974', '702', '1', 'Spring', 2001, 'A '); + insert into takes values('37715', '545', '1', 'Fall', 2001, 'B-'); + insert into takes values('5298', '476', '1', 'Fall', 2010, 'B+'); + insert into takes values('67542', '631', '1', 'Spring', 2007, 'C-'); + insert into takes values('22142', '626', '1', 'Fall', 2006, 'A-'); + insert into takes values('94311', '694', '1', 'Fall', 2002, 'A '); + insert into takes values('90220', '258', '1', 'Fall', 2007, 'B-'); + insert into takes values('8343', '313', '1', 'Fall', 2010, 'A+'); + insert into takes values('37653', '105', '2', 'Fall', 2002, 'A-'); + insert into takes values('51955', '334', '1', 'Fall', 2009, 'C-'); + insert into takes values('978', '704', '1', 'Spring', 2008, 'A '); + insert into takes values('57538', '468', '2', 'Fall', 2007, 'A-'); + insert into takes values('53089', '692', '1', 'Spring', 2010, 'B '); + insert into takes values('85505', '496', '1', 'Fall', 2001, 'A '); + insert into takes values('65056', '493', '1', 'Spring', 2010, 'B-'); + insert into takes values('9408', '972', '1', 'Spring', 2009, 'C '); + insert into takes values('83170', '867', '2', 'Fall', 2010, 'C+'); + insert into takes values('18469', '735', '2', 'Spring', 2010, 'A-'); + insert into takes values('30858', '626', '1', 'Fall', 2006, 'C+'); + insert into takes values('14554', '274', '1', 'Fall', 2002, 'C '); + insert into takes values('5208', '468', '2', 'Fall', 2007, 'B-'); + insert into takes values('72622', '376', '1', 'Fall', 2006, 'B '); + insert into takes values('16515', '443', '2', 'Spring', 2002, 'B '); + insert into takes values('78756', '864', '1', 'Spring', 2006, 'C '); + insert into takes values('38691', '237', '1', 'Spring', 2008, 'B '); + insert into takes values('52371', '867', '1', 'Fall', 2006, 'C+'); + insert into takes values('94814', '274', '1', 'Fall', 2002, 'C+'); + insert into takes values('36845', '239', '1', 'Fall', 2006, 'B+'); + insert into takes values('24387', '408', '2', 'Spring', 2003, 'B+'); + insert into takes values('59848', '893', '1', 'Fall', 2007, 'C+'); + insert into takes values('3576', '242', '1', 'Fall', 2009, 'B '); + insert into takes values('94801', '679', '1', 'Spring', 2010, 'B+'); + insert into takes values('49701', '200', '2', 'Fall', 2002, 'A-'); + insert into takes values('9933', '702', '1', 'Spring', 2001, 'C-'); + insert into takes values('29390', '974', '1', 'Fall', 2003, 'C+'); + insert into takes values('10663', '443', '1', 'Spring', 2010, 'B+'); + insert into takes values('16453', '345', '1', 'Spring', 2008, 'C+'); + insert into takes values('6195', '867', '2', 'Fall', 2010, 'C-'); + insert into takes values('76250', '704', '1', 'Spring', 2008, 'A-'); + insert into takes values('15144', '974', '1', 'Fall', 2003, 'C+'); + insert into takes values('39204', '489', '1', 'Fall', 2007, 'C+'); + insert into takes values('66293', '612', '1', 'Fall', 2007, 'C-'); + insert into takes values('39115', '345', '1', 'Spring', 2008, 'A '); + insert into takes values('67655', '949', '1', 'Fall', 2007, 'C '); + insert into takes values('30650', '169', '2', 'Fall', 2002, 'B '); + insert into takes values('65144', '334', '1', 'Fall', 2009, 'A '); + insert into takes values('57123', '581', '1', 'Spring', 2005, 'C '); + insert into takes values('1232', '476', '1', 'Fall', 2010, 'C-'); + insert into takes values('44836', '443', '1', 'Spring', 2010, 'A '); + insert into takes values('63645', '468', '2', 'Fall', 2007, 'A '); + insert into takes values('59538', '694', '1', 'Fall', 2002, 'C-'); + insert into takes values('69471', '158', '2', 'Spring', 2008, 'A-'); + insert into takes values('70688', '591', '1', 'Spring', 2005, 'B '); + insert into takes values('65329', '629', '1', 'Spring', 2003, 'C '); + insert into takes values('53728', '270', '1', 'Spring', 2010, 'A '); + insert into takes values('7970', '679', '1', 'Spring', 2010, 'A+'); + insert into takes values('67660', '169', '2', 'Fall', 2002, 'B-'); + insert into takes values('82646', '603', '1', 'Fall', 2003, 'C '); + insert into takes values('12563', '338', '2', 'Spring', 2006, 'A '); + insert into takes values('40682', '349', '1', 'Spring', 2008, 'B+'); + insert into takes values('23934', '468', '2', 'Fall', 2007, 'B '); + insert into takes values('85451', '105', '1', 'Fall', 2009, 'A '); + insert into takes values('97400', '795', '1', 'Spring', 2004, 'A+'); + insert into takes values('19766', '376', '1', 'Fall', 2006, 'C '); + insert into takes values('27898', '239', '1', 'Fall', 2006, 'C-'); + insert into takes values('84410', '496', '1', 'Fall', 2001, 'B-'); + insert into takes values('96206', '760', '1', 'Spring', 2004, 'B+'); + insert into takes values('52669', '443', '2', 'Spring', 2002, 'B-'); + insert into takes values('42114', '599', '1', 'Spring', 2003, 'C '); + insert into takes values('28299', '927', '1', 'Fall', 2002, 'C-'); + insert into takes values('38288', '626', '1', 'Fall', 2006, 'A '); + insert into takes values('22912', '991', '1', 'Spring', 2008, 'A-'); + insert into takes values('69783', '274', '1', 'Fall', 2002, 'B-'); + insert into takes values('89551', '400', '1', 'Spring', 2007, 'B-'); + insert into takes values('58326', '400', '2', 'Fall', 2003, 'B-'); + insert into takes values('2419', '791', '1', 'Spring', 2006, 'B '); + insert into takes values('95366', '274', '1', 'Fall', 2002, 'A-'); + insert into takes values('62749', '239', '1', 'Fall', 2006, 'C '); + insert into takes values('69758', '137', '1', 'Spring', 2002, 'B-'); + insert into takes values('80941', '415', '1', 'Fall', 2010, 'A-'); + insert into takes values('69628', '599', '1', 'Spring', 2003, 'A+'); + insert into takes values('99694', '875', '1', 'Spring', 2005, 'B '); + insert into takes values('39115', '270', '1', 'Spring', 2010, 'C '); + insert into takes values('37946', '457', '1', 'Spring', 2001, 'C+'); + insert into takes values('14182', '362', '1', 'Fall', 2005, 'A+'); + insert into takes values('8457', '599', '1', 'Spring', 2003, 'C '); + insert into takes values('30017', '192', '1', 'Fall', 2002, 'C-'); + insert into takes values('8603', '239', '1', 'Fall', 2006, 'B+'); + insert into takes values('28989', '349', '1', 'Spring', 2008, 'B-'); + insert into takes values('43348', '349', '1', 'Spring', 2008, 'A-'); + insert into takes values('51768', '696', '1', 'Spring', 2002, 'C-'); + insert into takes values('14563', '376', '1', 'Fall', 2006, 'A '); + insert into takes values('94894', '362', '1', 'Fall', 2005, 'C-'); + insert into takes values('792', '962', '1', 'Spring', 2008, 'C '); + insert into takes values('39514', '795', '1', 'Spring', 2004, 'C+'); + insert into takes values('77729', '603', '1', 'Fall', 2003, 'B-'); + insert into takes values('40044', '581', '1', 'Spring', 2005, 'B+'); + insert into takes values('40371', '692', '1', 'Spring', 2010, 'A '); + insert into takes values('4248', '604', '1', 'Spring', 2009, 'C '); + insert into takes values('19048', '852', '1', 'Spring', 2008, 'A+'); + insert into takes values('28738', '802', '1', 'Spring', 2003, 'A-'); + insert into takes values('46074', '169', '2', 'Fall', 2002, 'A '); + insert into takes values('544', '571', '1', 'Spring', 2004, 'A+'); + insert into takes values('24374', '974', '1', 'Fall', 2003, 'C+'); + insert into takes values('1018', '304', '1', 'Fall', 2009, 'B '); + insert into takes values('38895', '802', '1', 'Spring', 2003, 'B+'); + insert into takes values('20084', '852', '1', 'Spring', 2008, 'C '); + insert into takes values('12979', '692', '1', 'Spring', 2010, 'A+'); + insert into takes values('50944', '696', '1', 'Spring', 2002, 'C+'); + insert into takes values('56212', '349', '1', 'Spring', 2008, 'A-'); + insert into takes values('52707', '443', '2', 'Spring', 2002, 'A '); + insert into takes values('48678', '612', '1', 'Fall', 2007, 'B '); + insert into takes values('37715', '694', '1', 'Fall', 2002, 'C '); + insert into takes values('84039', '443', '2', 'Spring', 2002, 'A+'); + insert into takes values('51008', '468', '2', 'Fall', 2007, 'C+'); + insert into takes values('24784', '338', '1', 'Spring', 2007, 'A-'); + insert into takes values('67793', '338', '1', 'Spring', 2007, 'B-'); + insert into takes values('13741', '795', '1', 'Spring', 2004, 'C '); + insert into takes values('74840', '604', '1', 'Spring', 2009, 'B-'); + insert into takes values('2139', '927', '1', 'Fall', 2002, 'B-'); + insert into takes values('33401', '304', '1', 'Fall', 2009, 'C '); + insert into takes values('40897', '457', '1', 'Spring', 2001, 'A '); + insert into takes values('71529', '362', '3', 'Spring', 2008, 'C+'); + insert into takes values('22620', '237', '2', 'Fall', 2009, 'A+'); + insert into takes values('72643', '200', '2', 'Fall', 2002, 'C+'); + insert into takes values('69679', '362', '1', 'Fall', 2005, 'A+'); + insert into takes values('25785', '927', '1', 'Fall', 2002, 'C+'); + insert into takes values('6474', '258', '1', 'Fall', 2007, 'B '); + insert into takes values('96134', '338', '2', 'Spring', 2006, 'A-'); + insert into takes values('30845', '192', '1', 'Fall', 2002, 'A '); + insert into takes values('95574', '843', '1', 'Fall', 2010, 'B+'); + insert into takes values('91063', '692', '1', 'Spring', 2010, 'C '); + insert into takes values('16467', '476', '1', 'Fall', 2010, 'B '); + insert into takes values('8457', '489', '1', 'Fall', 2007, 'C-'); + insert into takes values('19450', '304', '1', 'Fall', 2009, 'A-'); + insert into takes values('41261', '362', '1', 'Fall', 2005, 'C '); + insert into takes values('23224', '527', '1', 'Fall', 2004, 'C+'); + insert into takes values('95099', '808', '1', 'Fall', 2003, 'B '); + insert into takes values('51698', '802', '1', 'Spring', 2003, 'A-'); + insert into takes values('15698', '802', '1', 'Spring', 2003, 'C+'); + insert into takes values('40932', '137', '1', 'Spring', 2002, 'B '); + insert into takes values('52291', '468', '1', 'Fall', 2005, 'C+'); + insert into takes values('70564', '735', '2', 'Spring', 2010, 'B+'); + insert into takes values('37734', '493', '1', 'Spring', 2010, 'A-'); + insert into takes values('35257', '200', '2', 'Fall', 2002, 'C+'); + insert into takes values('42625', '338', '2', 'Spring', 2006, 'C-'); + insert into takes values('34126', '927', '1', 'Fall', 2002, 'C '); + insert into takes values('1018', '362', '3', 'Spring', 2008, 'B '); + insert into takes values('46066', '237', '2', 'Fall', 2009, 'C-'); + insert into takes values('47126', '642', '1', 'Fall', 2004, 'C-'); + insert into takes values('56078', '875', '1', 'Spring', 2005, 'C '); + insert into takes values('38696', '875', '1', 'Spring', 2005, 'A-'); + insert into takes values('69471', '482', '1', 'Fall', 2005, 'C-'); + insert into takes values('69960', '843', '1', 'Fall', 2010, 'B+'); + insert into takes values('1836', '604', '1', 'Spring', 2009, 'A+'); + insert into takes values('53172', '867', '2', 'Fall', 2010, 'A '); + insert into takes values('16453', '949', '1', 'Fall', 2007, 'A '); + insert into takes values('1110', '802', '1', 'Spring', 2003, 'A-'); + insert into takes values('56143', '313', '1', 'Fall', 2010, 'B '); + insert into takes values('914', '802', '1', 'Spring', 2003, 'C-'); + insert into takes values('29803', '735', '2', 'Spring', 2010, 'B-'); + insert into takes values('54875', '960', '2', 'Fall', 2006, 'C-'); + insert into takes values('89059', '338', '1', 'Spring', 2007, 'B-'); + insert into takes values('41280', '200', '2', 'Fall', 2002, 'C-'); + insert into takes values('12563', '482', '1', 'Fall', 2005, 'B+'); + insert into takes values('21789', '875', '1', 'Spring', 2005, 'C+'); + insert into takes values('11201', '867', '2', 'Fall', 2010, 'C+'); + insert into takes values('30124', '313', '1', 'Fall', 2010, 'B '); + insert into takes values('99730', '867', '2', 'Fall', 2010, 'A '); + insert into takes values('92849', '345', '1', 'Spring', 2008, 'C+'); + insert into takes values('28361', '852', '1', 'Spring', 2008, 'B-'); + insert into takes values('87651', '972', '1', 'Spring', 2009, 'C '); + insert into takes values('68070', '274', '1', 'Fall', 2002, 'A+'); + insert into takes values('60267', '362', '3', 'Spring', 2008, 'C '); + insert into takes values('64945', '105', '1', 'Fall', 2009, 'A-'); + insert into takes values('52707', '631', '1', 'Spring', 2007, 'A+'); + insert into takes values('83622', '489', '1', 'Fall', 2007, 'A+'); + insert into takes values('9514', '415', '1', 'Fall', 2010, 'B+'); + insert into takes values('66969', '482', '1', 'Fall', 2005, 'A-'); + insert into takes values('78434', '408', '1', 'Spring', 2007, 'B+'); + insert into takes values('1232', '408', '2', 'Spring', 2003, 'B-'); + insert into takes values('97551', '338', '1', 'Spring', 2007, 'C '); + insert into takes values('24809', '461', '1', 'Fall', 2002, 'B-'); + insert into takes values('65400', '345', '1', 'Spring', 2008, 'A '); + insert into takes values('26730', '349', '1', 'Spring', 2008, 'B '); + insert into takes values('78787', '338', '2', 'Spring', 2006, 'C '); + insert into takes values('97355', '694', '1', 'Fall', 2002, 'B '); + insert into takes values('73908', '200', '1', 'Spring', 2007, 'C+'); + insert into takes values('64121', '415', '1', 'Fall', 2010, 'A+'); + insert into takes values('39115', '192', '1', 'Fall', 2002, 'B+'); + insert into takes values('19824', '960', '1', 'Fall', 2009, 'B-'); + insert into takes values('1110', '258', '1', 'Fall', 2007, 'C-'); + insert into takes values('22142', '545', '1', 'Fall', 2001, 'C-'); + insert into takes values('21789', '274', '1', 'Fall', 2002, 'C+'); + insert into takes values('20099', '137', '1', 'Spring', 2002, 'B '); + insert into takes values('98690', '158', '1', 'Fall', 2008, 'C '); + insert into takes values('19362', '612', '1', 'Fall', 2007, 'A '); + insert into takes values('34126', '338', '1', 'Spring', 2007, 'C-'); + insert into takes values('16405', '747', '1', 'Spring', 2004, 'C '); + insert into takes values('82066', '345', '1', 'Spring', 2008, 'B-'); + insert into takes values('93171', '581', '1', 'Spring', 2005, 'A+'); + insert into takes values('99369', '443', '2', 'Spring', 2002, 'B+'); + insert into takes values('24746', '366', '1', 'Fall', 2005, 'C+'); + insert into takes values('74974', '338', '1', 'Spring', 2007, 'C-'); + insert into takes values('96324', '237', '2', 'Fall', 2009, 'B '); + insert into takes values('52707', '735', '2', 'Spring', 2010, 'B+'); + insert into takes values('67293', '408', '2', 'Spring', 2003, 'B+'); + insert into takes values('10527', '571', '1', 'Spring', 2004, 'B+'); + insert into takes values('12326', '408', '2', 'Spring', 2003, 'B '); + insert into takes values('72501', '105', '1', 'Fall', 2009, 'B '); + insert into takes values('75040', '443', '1', 'Spring', 2010, 'C '); + insert into takes values('6673', '352', '1', 'Spring', 2006, 'B-'); + insert into takes values('21101', '158', '1', 'Fall', 2008, 'A-'); + insert into takes values('30177', '362', '2', 'Fall', 2006, 'C+'); + insert into takes values('76895', '200', '2', 'Fall', 2002, 'C-'); + insert into takes values('97590', '493', '1', 'Spring', 2010, 'B+'); + insert into takes values('62754', '443', '2', 'Spring', 2002, 'C+'); + insert into takes values('89051', '200', '2', 'Fall', 2002, 'B+'); + insert into takes values('57238', '237', '2', 'Fall', 2009, 'B-'); + insert into takes values('89246', '795', '1', 'Spring', 2004, 'C-'); + insert into takes values('32217', '192', '1', 'Fall', 2002, 'C-'); + insert into takes values('65038', '748', '1', 'Fall', 2003, 'C-'); + insert into takes values('75252', '704', '1', 'Spring', 2008, 'B+'); + insert into takes values('7620', '603', '1', 'Fall', 2003, 'C+'); + insert into takes values('63090', '105', '2', 'Fall', 2002, 'C '); + insert into takes values('16057', '852', '1', 'Spring', 2008, 'B-'); + insert into takes values('33206', '692', '1', 'Spring', 2010, 'B-'); + insert into takes values('37339', '362', '1', 'Fall', 2005, 'A+'); + insert into takes values('42625', '270', '1', 'Spring', 2010, 'B-'); + insert into takes values('74016', '366', '1', 'Fall', 2005, 'A '); + insert into takes values('58172', '192', '1', 'Fall', 2002, 'A+'); + insert into takes values('78116', '362', '2', 'Fall', 2006, 'B '); + insert into takes values('39901', '629', '1', 'Spring', 2003, 'A '); + insert into takes values('97573', '802', '1', 'Spring', 2003, 'A-'); + insert into takes values('40044', '629', '1', 'Spring', 2003, 'C-'); + insert into takes values('10904', '612', '1', 'Fall', 2007, 'B-'); + insert into takes values('30650', '760', '1', 'Spring', 2004, 'A '); + insert into takes values('82591', '692', '1', 'Spring', 2010, 'B-'); + insert into takes values('71631', '702', '1', 'Spring', 2001, 'A '); + insert into takes values('7490', '192', '1', 'Fall', 2002, 'B-'); + insert into takes values('65121', '974', '1', 'Fall', 2003, 'A '); + insert into takes values('37339', '735', '1', 'Spring', 2003, 'A-'); + insert into takes values('15086', '663', '1', 'Spring', 2005, 'B+'); + insert into takes values('77000', '867', '1', 'Fall', 2006, 'C+'); + insert into takes values('5144', '960', '1', 'Fall', 2009, 'C+'); + insert into takes values('75794', '631', '1', 'Spring', 2007, 'A-'); + insert into takes values('29645', '679', '1', 'Spring', 2010, 'A-'); + insert into takes values('27687', '457', '1', 'Spring', 2001, 'A '); + insert into takes values('89132', '679', '1', 'Spring', 2010, 'B-'); + insert into takes values('80248', '349', '1', 'Spring', 2008, 'A-'); + insert into takes values('80047', '571', '1', 'Spring', 2004, 'C+'); + insert into takes values('26881', '334', '1', 'Fall', 2009, 'B-'); + insert into takes values('81294', '237', '1', 'Spring', 2008, 'B '); + insert into takes values('4182', '679', '1', 'Spring', 2010, 'C '); + insert into takes values('46155', '274', '1', 'Fall', 2002, 'A '); + insert into takes values('34422', '400', '2', 'Fall', 2003, 'A+'); + insert into takes values('45650', '864', '1', 'Spring', 2006, 'B '); + insert into takes values('57925', '376', '1', 'Fall', 2006, 'B '); + insert into takes values('89393', '747', '1', 'Spring', 2004, 'C+'); + insert into takes values('94173', '747', '1', 'Spring', 2004, 'B '); + insert into takes values('83170', '972', '1', 'Spring', 2009, 'B '); + insert into takes values('1018', '274', '1', 'Fall', 2002, 'A+'); + insert into takes values('78782', '274', '1', 'Fall', 2002, 'C-'); + insert into takes values('55170', '200', '2', 'Fall', 2002, 'B-'); + insert into takes values('10076', '692', '1', 'Spring', 2010, 'A-'); + insert into takes values('97355', '105', '1', 'Fall', 2009, 'C '); + insert into takes values('8378', '468', '2', 'Fall', 2007, 'B '); + insert into takes values('38895', '867', '1', 'Fall', 2006, 'A-'); + insert into takes values('16543', '400', '1', 'Spring', 2007, 'B+'); + insert into takes values('69581', '457', '1', 'Spring', 2001, 'C+'); + insert into takes values('67425', '376', '1', 'Fall', 2006, 'C-'); + insert into takes values('33201', '345', '1', 'Spring', 2008, 'C+'); + insert into takes values('92417', '927', '1', 'Fall', 2002, 'C '); + insert into takes values('57334', '960', '1', 'Fall', 2009, 'A+'); + insert into takes values('81884', '642', '1', 'Fall', 2004, 'B '); + insert into takes values('71628', '362', '3', 'Spring', 2008, 'B '); + insert into takes values('13352', '158', '1', 'Fall', 2008, 'A-'); + insert into takes values('760', '376', '1', 'Fall', 2006, 'C '); + insert into takes values('3335', '696', '1', 'Spring', 2002, 'C '); + insert into takes values('44703', '629', '1', 'Spring', 2003, 'C+'); + insert into takes values('27140', '545', '1', 'Fall', 2001, 'B '); + insert into takes values('2848', '793', '1', 'Spring', 2002, 'C '); + insert into takes values('32954', '200', '1', 'Spring', 2007, 'C '); + insert into takes values('29399', '642', '1', 'Fall', 2004, 'A '); + insert into takes values('32881', '192', '1', 'Fall', 2002, 'B-'); + insert into takes values('22170', '735', '2', 'Spring', 2010, 'A '); + insert into takes values('26473', '561', '1', 'Fall', 2006, 'A-'); + insert into takes values('83003', '338', '2', 'Spring', 2006, 'B '); + insert into takes values('21774', '270', '1', 'Spring', 2010, 'A+'); + insert into takes values('81984', '991', '1', 'Spring', 2008, 'B-'); + insert into takes values('499', '581', '1', 'Spring', 2005, 'B-'); + insert into takes values('57334', '679', '1', 'Spring', 2010, 'A+'); + insert into takes values('36926', '949', '1', 'Fall', 2007, 'C+'); + insert into takes values('78858', '748', '1', 'Fall', 2003, 'B-'); + insert into takes values('15578', '239', '1', 'Fall', 2006, 'B-'); + insert into takes values('51923', '415', '1', 'Fall', 2010, 'C-'); + insert into takes values('16631', '959', '1', 'Fall', 2006, 'C+'); + insert into takes values('13741', '972', '1', 'Spring', 2009, 'B+'); + insert into takes values('22003', '352', '1', 'Spring', 2006, 'B '); + insert into takes values('23525', '366', '1', 'Fall', 2005, 'B-'); + insert into takes values('4508', '599', '1', 'Spring', 2003, 'A-'); + insert into takes values('69758', '802', '1', 'Spring', 2003, 'C '); + insert into takes values('98830', '927', '1', 'Fall', 2002, 'A '); + insert into takes values('5843', '791', '1', 'Spring', 2006, 'A+'); + insert into takes values('19245', '864', '1', 'Spring', 2006, 'A-'); + insert into takes values('499', '338', '1', 'Spring', 2007, 'B-'); + insert into takes values('9514', '960', '1', 'Fall', 2009, 'B-'); + insert into takes values('76250', '679', '1', 'Spring', 2010, 'A-'); + insert into takes values('9084', '400', '1', 'Spring', 2007, 'A '); + insert into takes values('31690', '158', '2', 'Spring', 2008, 'A '); + insert into takes values('75522', '802', '1', 'Spring', 2003, 'B '); + insert into takes values('76743', '692', '1', 'Spring', 2010, 'B '); + insert into takes values('83170', '493', '1', 'Spring', 2010, 'C+'); + insert into takes values('10527', '545', '1', 'Fall', 2001, 'B+'); + insert into takes values('53547', '747', '1', 'Spring', 2004, 'C '); + insert into takes values('77415', '345', '1', 'Spring', 2008, 'A-'); + insert into takes values('24374', '362', '3', 'Spring', 2008, 'B+'); + insert into takes values('64724', '304', '1', 'Fall', 2009, 'B+'); + insert into takes values('37454', '974', '1', 'Fall', 2003, 'C '); + insert into takes values('13741', '352', '1', 'Spring', 2006, 'A '); + insert into takes values('30017', '559', '1', 'Fall', 2002, 'C-'); + insert into takes values('58594', '604', '1', 'Spring', 2009, 'A+'); + insert into takes values('70061', '400', '2', 'Fall', 2003, 'B-'); + insert into takes values('70395', '313', '1', 'Fall', 2010, 'A-'); + insert into takes values('58606', '949', '1', 'Fall', 2007, 'B-'); + insert into takes values('51238', '599', '1', 'Spring', 2003, 'A+'); + insert into takes values('77548', '642', '1', 'Fall', 2004, 'B+'); + insert into takes values('88884', '927', '1', 'Fall', 2002, 'C '); + insert into takes values('71529', '468', '1', 'Fall', 2005, 'B-'); + insert into takes values('97023', '702', '1', 'Spring', 2001, 'A+'); + insert into takes values('33349', '242', '1', 'Fall', 2009, 'B '); + insert into takes values('89734', '258', '1', 'Fall', 2007, 'A '); + insert into takes values('69521', '400', '1', 'Spring', 2007, 'B '); + insert into takes values('75173', '401', '1', 'Fall', 2003, 'C+'); + insert into takes values('26102', '808', '1', 'Fall', 2003, 'C+'); + insert into takes values('2970', '571', '1', 'Spring', 2004, 'A-'); + insert into takes values('34569', '192', '1', 'Fall', 2002, 'A '); + insert into takes values('25468', '137', '1', 'Spring', 2002, 'A-'); + insert into takes values('49073', '760', '1', 'Spring', 2004, 'A '); + insert into takes values('28019', '362', '2', 'Fall', 2006, 'A+'); + insert into takes values('93366', '408', '1', 'Spring', 2007, 'C-'); + insert into takes values('98563', '486', '1', 'Fall', 2009, 'A+'); + insert into takes values('7656', '927', '1', 'Fall', 2002, 'C-'); + insert into takes values('2286', '200', '1', 'Spring', 2007, 'B-'); + insert into takes values('39115', '960', '2', 'Fall', 2006, 'C '); + insert into takes values('36244', '760', '1', 'Spring', 2004, 'A '); + insert into takes values('19735', '875', '1', 'Spring', 2005, 'A '); + insert into takes values('70924', '702', '1', 'Spring', 2001, 'B-'); + insert into takes values('75040', '559', '1', 'Fall', 2002, 'C '); + insert into takes values('9183', '864', '1', 'Spring', 2006, 'A '); + insert into takes values('42556', '748', '1', 'Fall', 2003, 'A+'); + insert into takes values('40937', '927', '1', 'Fall', 2002, 'C-'); + insert into takes values('88553', '345', '1', 'Spring', 2008, 'B '); + insert into takes values('93814', '457', '1', 'Spring', 2001, 'C-'); + insert into takes values('31442', '629', '1', 'Spring', 2003, 'B '); + insert into takes values('1727', '735', '1', 'Spring', 2003, 'A+'); + insert into takes values('2139', '974', '1', 'Fall', 2003, 'B+'); + insert into takes values('32490', '443', '2', 'Spring', 2002, 'C+'); + insert into takes values('69122', '867', '1', 'Fall', 2006, 'B+'); + insert into takes values('64731', '158', '2', 'Spring', 2008, 'B+'); + insert into takes values('12666', '338', '2', 'Spring', 2006, 'B-'); + insert into takes values('17397', '319', '1', 'Spring', 2003, 'C+'); + insert into takes values('99399', '274', '1', 'Fall', 2002, 'B+'); + insert into takes values('89312', '421', '1', 'Fall', 2004, 'A '); + insert into takes values('74016', '270', '1', 'Spring', 2010, 'A '); + insert into takes values('68280', '642', '1', 'Fall', 2004, 'C-'); + insert into takes values('69225', '663', '1', 'Spring', 2005, 'C+'); + insert into takes values('12683', '496', '1', 'Fall', 2001, 'B+'); + insert into takes values('70522', '808', '1', 'Fall', 2003, 'A-'); + insert into takes values('90194', '349', '1', 'Spring', 2008, 'C '); + insert into takes values('28361', '748', '1', 'Fall', 2003, 'C '); + insert into takes values('46337', '362', '3', 'Spring', 2008, 'C '); + insert into takes values('23994', '338', '1', 'Spring', 2007, 'C+'); + insert into takes values('34331', '237', '2', 'Fall', 2009, 'C '); + insert into takes values('37809', '843', '1', 'Fall', 2010, 'B+'); + insert into takes values('52203', '702', '1', 'Spring', 2001, 'A-'); + insert into takes values('68070', '468', '2', 'Fall', 2007, 'C '); + insert into takes values('60040', '408', '1', 'Spring', 2007, 'C '); + insert into takes values('55859', '581', '1', 'Spring', 2005, 'A+'); + insert into takes values('33759', '362', '2', 'Fall', 2006, 'C+'); + insert into takes values('54460', '445', '1', 'Spring', 2001, 'C '); + insert into takes values('18709', '408', '1', 'Spring', 2007, 'A+'); + insert into takes values('49701', '852', '1', 'Spring', 2008, 'C-'); + insert into takes values('18469', '400', '2', 'Fall', 2003, 'A-'); + insert into takes values('37219', '461', '1', 'Fall', 2002, 'B+'); + insert into takes values('88525', '793', '1', 'Spring', 2002, 'A+'); + insert into takes values('38121', '376', '1', 'Fall', 2006, 'C+'); + insert into takes values('85226', '376', '1', 'Fall', 2006, 'C+'); + insert into takes values('51416', '237', '2', 'Fall', 2009, 'C '); + insert into takes values('69679', '626', '1', 'Fall', 2006, 'A+'); + insert into takes values('88887', '489', '1', 'Fall', 2007, 'A '); + insert into takes values('92385', '158', '1', 'Fall', 2008, 'B+'); + insert into takes values('96615', '468', '1', 'Fall', 2005, 'A+'); + insert into takes values('52945', '169', '2', 'Fall', 2002, 'C-'); + insert into takes values('88140', '991', '1', 'Spring', 2008, 'C-'); + insert into takes values('24809', '338', '1', 'Spring', 2007, 'C '); + insert into takes values('50267', '274', '1', 'Fall', 2002, 'C-'); + insert into takes values('46066', '760', '1', 'Spring', 2004, 'C-'); + insert into takes values('83686', '702', '1', 'Spring', 2001, 'C+'); + insert into takes values('30772', '468', '1', 'Fall', 2005, 'B-'); + insert into takes values('4015', '867', '2', 'Fall', 2010, 'C+'); + insert into takes values('93491', '960', '1', 'Fall', 2009, 'A '); + insert into takes values('32886', '867', '1', 'Fall', 2006, 'B-'); + insert into takes values('63560', '468', '1', 'Fall', 2005, 'C-'); + insert into takes values('79589', '445', '1', 'Spring', 2001, 'B+'); + insert into takes values('42625', '362', '1', 'Fall', 2005, 'A+'); + insert into takes values('80610', '527', '1', 'Fall', 2004, 'C-'); + insert into takes values('86127', '200', '2', 'Fall', 2002, 'A '); + insert into takes values('33349', '793', '1', 'Spring', 2002, 'C '); + insert into takes values('99754', '443', '2', 'Spring', 2002, 'B+'); + insert into takes values('74672', '972', '1', 'Spring', 2009, 'C+'); + insert into takes values('91132', '867', '1', 'Fall', 2006, 'C+'); + insert into takes values('68999', '468', '2', 'Fall', 2007, 'A+'); + insert into takes values('10904', '581', '1', 'Spring', 2005, 'B+'); + insert into takes values('31442', '239', '1', 'Fall', 2006, 'B-'); + insert into takes values('35721', '158', '2', 'Spring', 2008, 'C+'); + insert into takes values('92274', '960', '2', 'Fall', 2006, 'B '); + insert into takes values('5208', '960', '1', 'Fall', 2009, 'C '); + insert into takes values('16907', '105', '2', 'Fall', 2002, 'A '); + insert into takes values('25143', '169', '1', 'Spring', 2007, 'C-'); + insert into takes values('86969', '158', '1', 'Fall', 2008, 'B '); + insert into takes values('73213', '604', '1', 'Spring', 2009, 'C+'); + insert into takes values('83022', '599', '1', 'Spring', 2003, 'A-'); + insert into takes values('89234', '694', '1', 'Fall', 2002, 'C '); + insert into takes values('37869', '400', '1', 'Spring', 2007, 'C '); + insert into takes values('40080', '304', '1', 'Fall', 2009, 'C '); + insert into takes values('22345', '400', '2', 'Fall', 2003, 'C '); + insert into takes values('24325', '748', '1', 'Fall', 2003, 'C-'); + insert into takes values('23500', '571', '1', 'Spring', 2004, 'A '); + insert into takes values('24809', '105', '1', 'Fall', 2009, 'C '); + insert into takes values('54728', '599', '1', 'Spring', 2003, 'C '); + insert into takes values('66281', '349', '1', 'Spring', 2008, 'C-'); + insert into takes values('68779', '747', '1', 'Spring', 2004, 'B+'); + insert into takes values('96178', '242', '1', 'Fall', 2009, 'A-'); + insert into takes values('69471', '376', '1', 'Fall', 2006, 'B-'); + insert into takes values('51975', '867', '1', 'Fall', 2006, 'B-'); + insert into takes values('71543', '443', '2', 'Spring', 2002, 'C '); + insert into takes values('58081', '747', '1', 'Spring', 2004, 'A-'); + insert into takes values('72622', '843', '1', 'Fall', 2010, 'B+'); + insert into takes values('20489', '468', '1', 'Fall', 2005, 'C+'); + insert into takes values('64259', '237', '2', 'Fall', 2009, 'A+'); + insert into takes values('43912', '867', '1', 'Fall', 2006, 'B '); + insert into takes values('24809', '401', '1', 'Fall', 2003, 'A '); + insert into takes values('22050', '486', '1', 'Fall', 2009, 'C-'); + insert into takes values('30334', '443', '1', 'Spring', 2010, 'B+'); + insert into takes values('60406', '561', '1', 'Fall', 2006, 'B+'); + insert into takes values('73072', '692', '1', 'Spring', 2010, 'C-'); + insert into takes values('28518', '959', '1', 'Fall', 2006, 'B-'); + insert into takes values('57985', '696', '1', 'Spring', 2002, 'A '); + insert into takes values('89059', '748', '1', 'Fall', 2003, 'B-'); + insert into takes values('94569', '581', '1', 'Spring', 2005, 'B '); + insert into takes values('31302', '949', '1', 'Fall', 2007, 'B-'); + insert into takes values('78767', '747', '1', 'Spring', 2004, 'A+'); + insert into takes values('31086', '489', '1', 'Fall', 2007, 'B '); + insert into takes values('42388', '599', '1', 'Spring', 2003, 'A-'); + insert into takes values('24630', '991', '1', 'Spring', 2008, 'A+'); + insert into takes values('60040', '704', '1', 'Spring', 2008, 'B-'); + insert into takes values('43993', '867', '2', 'Fall', 2010, 'B-'); + insert into takes values('89234', '927', '1', 'Fall', 2002, 'A '); + insert into takes values('17769', '843', '1', 'Fall', 2010, 'C+'); + insert into takes values('97101', '960', '2', 'Fall', 2006, 'A-'); + insert into takes values('9408', '274', '1', 'Fall', 2002, 'C-'); + insert into takes values('35042', '362', '3', 'Spring', 2008, 'C '); + insert into takes values('28738', '349', '1', 'Spring', 2008, 'C+'); + insert into takes values('90234', '334', '1', 'Fall', 2009, 'B '); + insert into takes values('99189', '461', '1', 'Fall', 2002, 'A '); + insert into takes values('81884', '408', '2', 'Spring', 2003, 'B+'); + insert into takes values('36263', '642', '1', 'Fall', 2004, 'A-'); + insert into takes values('48589', '476', '1', 'Fall', 2010, 'B-'); + insert into takes values('70061', '443', '1', 'Spring', 2010, 'B '); + insert into takes values('1533', '949', '1', 'Fall', 2007, 'B '); + insert into takes values('12216', '401', '1', 'Fall', 2003, 'C-'); + insert into takes values('64249', '486', '1', 'Fall', 2009, 'A '); + insert into takes values('75547', '270', '1', 'Spring', 2010, 'C+'); + insert into takes values('14032', '694', '1', 'Fall', 2002, 'B '); + insert into takes values('27898', '366', '1', 'Fall', 2005, 'B-'); + insert into takes values('44703', '200', '2', 'Fall', 2002, 'B-'); + insert into takes values('51579', '408', '1', 'Spring', 2007, 'A-'); + insert into takes values('85746', '349', '1', 'Spring', 2008, 'C+'); + insert into takes values('85809', '366', '1', 'Fall', 2005, 'B+'); + insert into takes values('81028', '352', '1', 'Spring', 2006, 'C+'); + insert into takes values('27094', '426', '1', 'Spring', 2006, 'C-'); + insert into takes values('42019', '334', '1', 'Fall', 2009, 'A-'); + insert into takes values('56089', '864', '1', 'Spring', 2006, 'C+'); + insert into takes values('7204', '631', '1', 'Spring', 2007, 'A-'); + insert into takes values('88417', '319', '1', 'Spring', 2003, 'B '); + insert into takes values('2286', '237', '2', 'Fall', 2009, 'A '); + insert into takes values('18338', '663', '1', 'Spring', 2005, 'B-'); + insert into takes values('68453', '747', '1', 'Spring', 2004, 'C '); + insert into takes values('15726', '400', '1', 'Spring', 2007, 'B-'); + insert into takes values('43505', '843', '1', 'Fall', 2010, 'C+'); + insert into takes values('52929', '864', '1', 'Spring', 2006, 'A-'); + insert into takes values('9084', '612', '1', 'Fall', 2007, 'A '); + insert into takes values('97573', '445', '1', 'Spring', 2001, 'C-'); + insert into takes values('827', '486', '1', 'Fall', 2009, 'B '); + insert into takes values('37734', '704', '1', 'Spring', 2008, 'A+'); + insert into takes values('48462', '319', '1', 'Spring', 2003, 'B-'); + insert into takes values('13217', '604', '1', 'Spring', 2009, 'B-'); + insert into takes values('39704', '105', '1', 'Fall', 2009, 'A '); + insert into takes values('94815', '237', '2', 'Fall', 2009, 'C-'); + insert into takes values('78782', '795', '1', 'Spring', 2004, 'C '); + insert into takes values('77415', '962', '1', 'Spring', 2008, 'B+'); + insert into takes values('41450', '843', '1', 'Fall', 2010, 'A '); + insert into takes values('70362', '258', '1', 'Fall', 2007, 'B '); + insert into takes values('41683', '972', '1', 'Spring', 2009, 'A+'); + insert into takes values('22086', '960', '1', 'Fall', 2009, 'C '); + insert into takes values('50966', '258', '1', 'Fall', 2007, 'B '); + insert into takes values('63502', '960', '1', 'Fall', 2009, 'B-'); + insert into takes values('8140', '893', '1', 'Fall', 2007, 'C '); + insert into takes values('73186', '169', '1', 'Spring', 2007, 'C '); + insert into takes values('27898', '702', '1', 'Spring', 2001, 'A '); + insert into takes values('93061', '545', '1', 'Fall', 2001, 'C-'); + insert into takes values('83170', '461', '1', 'Fall', 2002, 'A+'); + insert into takes values('85614', '362', '3', 'Spring', 2008, 'C+'); + insert into takes values('26147', '927', '1', 'Fall', 2002, 'C+'); + insert into takes values('74070', '959', '1', 'Fall', 2006, 'B-'); + insert into takes values('96710', '489', '1', 'Fall', 2007, 'C '); + insert into takes values('17769', '694', '1', 'Fall', 2002, 'C-'); + insert into takes values('30397', '760', '1', 'Spring', 2004, 'B+'); + insert into takes values('34404', '603', '1', 'Fall', 2003, 'A+'); + insert into takes values('95697', '960', '1', 'Fall', 2009, 'C+'); + insert into takes values('83398', '864', '1', 'Spring', 2006, 'C+'); + insert into takes values('11202', '426', '1', 'Spring', 2006, 'A '); + insert into takes values('43032', '875', '1', 'Spring', 2005, 'B '); + insert into takes values('99719', '426', '1', 'Spring', 2006, 'C-'); + insert into takes values('53547', '445', '1', 'Spring', 2001, 'B+'); + insert into takes values('13741', '696', '1', 'Spring', 2002, 'B+'); + insert into takes values('76291', '415', '1', 'Fall', 2010, 'A '); + insert into takes values('42560', '169', '2', 'Fall', 2002, 'C '); + insert into takes values('57377', '169', '2', 'Fall', 2002, 'B '); + insert into takes values('29192', '313', '1', 'Fall', 2010, 'A+'); + insert into takes values('59538', '158', '2', 'Spring', 2008, 'B '); + insert into takes values('32345', '338', '2', 'Spring', 2006, 'C+'); + insert into takes values('84654', '559', '1', 'Fall', 2002, 'B '); + insert into takes values('60688', '239', '1', 'Fall', 2006, 'B-'); + insert into takes values('62549', '408', '1', 'Spring', 2007, 'A '); + insert into takes values('81785', '960', '2', 'Fall', 2006, 'A '); + insert into takes values('65121', '158', '1', 'Fall', 2008, 'C '); + insert into takes values('71628', '735', '1', 'Spring', 2003, 'C-'); + insert into takes values('94535', '461', '1', 'Fall', 2002, 'C-'); + insert into takes values('97551', '802', '1', 'Spring', 2003, 'B '); + insert into takes values('25718', '200', '1', 'Spring', 2007, 'A '); + insert into takes values('68516', '893', '1', 'Fall', 2007, 'C '); + insert into takes values('11377', '631', '1', 'Spring', 2007, 'B+'); + insert into takes values('75231', '735', '2', 'Spring', 2010, 'A-'); + insert into takes values('68330', '571', '1', 'Spring', 2004, 'B+'); + insert into takes values('88308', '604', '1', 'Spring', 2009, 'B '); + insert into takes values('53172', '274', '1', 'Fall', 2002, 'C+'); + insert into takes values('91851', '137', '1', 'Spring', 2002, 'B '); + insert into takes values('66484', '626', '1', 'Fall', 2006, 'B '); + insert into takes values('36657', '237', '2', 'Fall', 2009, 'B+'); + insert into takes values('33201', '443', '1', 'Spring', 2010, 'A+'); + insert into takes values('8819', '604', '1', 'Spring', 2009, 'C-'); + insert into takes values('76250', '559', '1', 'Fall', 2002, 'B '); + insert into takes values('38271', '974', '1', 'Fall', 2003, 'C+'); + insert into takes values('37809', '760', '1', 'Spring', 2004, 'C '); + insert into takes values('98726', '408', '2', 'Spring', 2003, 'C-'); + insert into takes values('89188', '415', '1', 'Fall', 2010, 'C-'); + insert into takes values('56', '105', '1', 'Fall', 2009, 'A+'); + insert into takes values('56057', '642', '1', 'Fall', 2004, 'A '); + insert into takes values('54875', '338', '2', 'Spring', 2006, 'B-'); + insert into takes values('56139', '366', '1', 'Fall', 2005, 'C '); + insert into takes values('85575', '338', '2', 'Spring', 2006, 'B '); + insert into takes values('10481', '581', '1', 'Spring', 2005, 'A+'); + insert into takes values('52187', '376', '1', 'Fall', 2006, 'A-'); + insert into takes values('53185', '692', '1', 'Spring', 2010, 'A-'); + insert into takes values('89196', '457', '1', 'Spring', 2001, 'C+'); + insert into takes values('23794', '468', '1', 'Fall', 2005, 'A-'); + insert into takes values('993', '457', '1', 'Spring', 2001, 'A+'); + insert into takes values('4015', '158', '2', 'Spring', 2008, 'B-'); + insert into takes values('52876', '274', '1', 'Fall', 2002, 'A+'); + insert into takes values('77130', '875', '1', 'Spring', 2005, 'C '); + insert into takes values('10917', '239', '1', 'Fall', 2006, 'C+'); + insert into takes values('46441', '760', '1', 'Spring', 2004, 'C+'); + insert into takes values('85904', '793', '1', 'Spring', 2002, 'C+'); + insert into takes values('68248', '443', '2', 'Spring', 2002, 'C-'); + insert into takes values('46442', '401', '1', 'Fall', 2003, 'C+'); + insert into takes values('37715', '612', '1', 'Fall', 2007, 'B+'); + insert into takes values('73072', '443', '2', 'Spring', 2002, 'C '); + insert into takes values('34392', '105', '2', 'Fall', 2002, 'B+'); + insert into takes values('31442', '867', '2', 'Fall', 2010, 'C+'); + insert into takes values('45680', '808', '1', 'Fall', 2003, 'A+'); + insert into takes values('19735', '362', '3', 'Spring', 2008, 'B-'); + insert into takes values('53185', '400', '1', 'Spring', 2007, 'A-'); + insert into takes values('15328', '158', '2', 'Spring', 2008, 'C-'); + insert into takes values('98047', '679', '1', 'Spring', 2010, 'A-'); + insert into takes values('12941', '974', '1', 'Fall', 2003, 'B-'); + insert into takes values('56941', '482', '1', 'Fall', 2005, 'A+'); + insert into takes values('70572', '457', '1', 'Spring', 2001, 'A-'); + insert into takes values('74473', '581', '1', 'Spring', 2005, 'B+'); + insert into takes values('93814', '415', '1', 'Fall', 2010, 'A '); + insert into takes values('95201', '334', '1', 'Fall', 2009, 'B+'); + insert into takes values('25780', '338', '1', 'Spring', 2007, 'A '); + insert into takes values('8343', '319', '1', 'Spring', 2003, 'A+'); + insert into takes values('7514', '237', '2', 'Fall', 2009, 'A-'); + insert into takes values('69732', '270', '1', 'Spring', 2010, 'C-'); + insert into takes values('33759', '527', '1', 'Fall', 2004, 'B '); + insert into takes values('3127', '334', '1', 'Fall', 2009, 'B-'); + insert into takes values('70310', '960', '2', 'Fall', 2006, 'A-'); + insert into takes values('36019', '561', '1', 'Fall', 2006, 'A+'); + insert into takes values('83444', '802', '1', 'Spring', 2003, 'B-'); + insert into takes values('86404', '445', '1', 'Spring', 2001, 'B '); + insert into takes values('48861', '461', '1', 'Fall', 2002, 'B '); + insert into takes values('30161', '974', '1', 'Fall', 2003, 'B '); + insert into takes values('17600', '694', '1', 'Fall', 2002, 'A '); + insert into takes values('20540', '795', '1', 'Spring', 2004, 'B-'); + insert into takes values('48469', '599', '1', 'Spring', 2003, 'C+'); + insert into takes values('70384', '408', '2', 'Spring', 2003, 'C+'); + insert into takes values('49073', '545', '1', 'Fall', 2001, 'A '); + insert into takes values('76799', '362', '1', 'Fall', 2005, 'A '); + insert into takes values('16993', '612', '1', 'Fall', 2007, 'C '); + insert into takes values('80227', '338', '1', 'Spring', 2007, 'C '); + insert into takes values('28004', '959', '1', 'Fall', 2006, 'C '); + insert into takes values('26619', '696', '1', 'Spring', 2002, 'C+'); + insert into takes values('1826', '626', '1', 'Fall', 2006, 'B+'); + insert into takes values('56299', '599', '1', 'Spring', 2003, 'C-'); + insert into takes values('3039', '362', '1', 'Fall', 2005, 'B '); + insert into takes values('3639', '461', '1', 'Fall', 2002, 'B-'); + insert into takes values('3639', '748', '1', 'Fall', 2003, 'C '); + insert into takes values('85849', '349', '1', 'Spring', 2008, 'A '); + insert into takes values('20489', '443', '2', 'Spring', 2002, 'C+'); + insert into takes values('53077', '192', '1', 'Fall', 2002, 'B-'); + insert into takes values('94726', '802', '1', 'Spring', 2003, 'B+'); + insert into takes values('99660', '362', '3', 'Spring', 2008, 'B-'); + insert into takes values('3693', '476', '1', 'Fall', 2010, 'C-'); + insert into takes values('70918', '426', '1', 'Spring', 2006, 'A-'); + insert into takes values('76743', '991', '1', 'Spring', 2008, 'C-'); + insert into takes values('28994', '852', '1', 'Spring', 2008, 'C+'); + insert into takes values('91197', '893', '1', 'Fall', 2007, 'B-'); + insert into takes values('40738', '626', '1', 'Fall', 2006, 'C-'); + insert into takes values('18234', '400', '1', 'Spring', 2007, 'B-'); + insert into takes values('22003', '468', '2', 'Fall', 2007, 'C '); + insert into takes values('61356', '334', '1', 'Fall', 2009, 'C+'); + insert into takes values('99764', '760', '1', 'Spring', 2004, 'A-'); + insert into takes values('70389', '599', '1', 'Spring', 2003, 'C+'); + insert into takes values('14214', '974', '1', 'Fall', 2003, 'B+'); + insert into takes values('11377', '468', '2', 'Fall', 2007, 'C+'); + insert into takes values('12214', '362', '1', 'Fall', 2005, 'B '); + insert into takes values('15538', '457', '1', 'Spring', 2001, 'A-'); + insert into takes values('97868', '960', '2', 'Fall', 2006, 'A+'); + insert into takes values('98388', '313', '1', 'Fall', 2010, 'A-'); + insert into takes values('65901', '927', '1', 'Fall', 2002, 'B-'); + insert into takes values('86661', '960', '2', 'Fall', 2006, 'C '); + insert into takes values('95631', '867', '2', 'Fall', 2010, 'B '); + insert into takes values('82591', '875', '1', 'Spring', 2005, 'A '); + insert into takes values('56089', '559', '1', 'Fall', 2002, 'C+'); + insert into takes values('73411', '735', '2', 'Spring', 2010, 'C '); + insert into takes values('57135', '349', '1', 'Spring', 2008, 'B '); + insert into takes values('667', '867', '1', 'Fall', 2006, 'C '); + insert into takes values('76604', '808', '1', 'Fall', 2003, 'B '); + insert into takes values('66293', '867', '1', 'Fall', 2006, 'B+'); + insert into takes values('11578', '927', '1', 'Fall', 2002, 'A+'); + insert into takes values('50206', '626', '1', 'Fall', 2006, 'A-'); + insert into takes values('41450', '496', '1', 'Fall', 2001, 'A-'); + insert into takes values('5871', '875', '1', 'Spring', 2005, 'C+'); + insert into takes values('98843', '735', '1', 'Spring', 2003, 'C-'); + insert into takes values('8853', '352', '1', 'Spring', 2006, 'C '); + insert into takes values('51723', '362', '2', 'Fall', 2006, 'B-'); + insert into takes values('78581', '875', '1', 'Spring', 2005, 'C '); + insert into takes values('80976', '334', '1', 'Fall', 2009, 'A '); + insert into takes values('10904', '493', '1', 'Spring', 2010, 'C-'); + insert into takes values('61737', '426', '1', 'Spring', 2006, 'C-'); + insert into takes values('96722', '875', '1', 'Spring', 2005, 'A-'); + insert into takes values('67810', '376', '1', 'Fall', 2006, 'B '); + insert into takes values('46441', '468', '1', 'Fall', 2005, 'B-'); + insert into takes values('74911', '443', '1', 'Spring', 2010, 'C-'); + insert into takes values('1922', '795', '1', 'Spring', 2004, 'A+'); + insert into takes values('57160', '421', '1', 'Fall', 2004, 'C-'); + insert into takes values('7514', '338', '2', 'Spring', 2006, 'B '); + insert into takes values('26028', '443', '2', 'Spring', 2002, 'C+'); + insert into takes values('32419', '864', '1', 'Spring', 2006, 'A-'); + insert into takes values('57377', '274', '1', 'Fall', 2002, 'C-'); + insert into takes values('71529', '679', '1', 'Spring', 2010, 'B '); + insert into takes values('32369', '319', '1', 'Spring', 2003, 'C '); + insert into takes values('3693', '338', '1', 'Spring', 2007, 'A '); + insert into takes values('47265', '893', '1', 'Fall', 2007, 'C '); + insert into takes values('31516', '443', '2', 'Spring', 2002, 'C '); + insert into takes values('69632', '972', '1', 'Spring', 2009, 'C+'); + insert into takes values('34158', '927', '1', 'Fall', 2002, 'B-'); + insert into takes values('34957', '349', '1', 'Spring', 2008, 'A '); + insert into takes values('18583', '445', '1', 'Spring', 2001, 'A '); + insert into takes values('17086', '468', '1', 'Fall', 2005, 'B+'); + insert into takes values('45720', '313', '1', 'Fall', 2010, 'A+'); + insert into takes values('39394', '663', '1', 'Spring', 2005, 'A+'); + insert into takes values('31080', '493', '1', 'Spring', 2010, 'A '); + insert into takes values('78116', '747', '1', 'Spring', 2004, 'A '); + insert into takes values('72055', '604', '1', 'Spring', 2009, 'A-'); + insert into takes values('68242', '972', '1', 'Spring', 2009, 'A+'); + insert into takes values('79329', '692', '1', 'Spring', 2010, 'B '); + insert into takes values('90914', '949', '1', 'Fall', 2007, 'C '); + insert into takes values('93004', '642', '1', 'Fall', 2004, 'C+'); + insert into takes values('23110', '679', '1', 'Spring', 2010, 'C '); + insert into takes values('14628', '603', '1', 'Fall', 2003, 'B-'); + insert into takes values('21009', '239', '1', 'Fall', 2006, 'C+'); + insert into takes values('10269', '702', '1', 'Spring', 2001, 'A+'); + insert into takes values('88525', '169', '2', 'Fall', 2002, 'A-'); + insert into takes values('83314', '603', '1', 'Fall', 2003, 'C '); + insert into takes values('66469', '486', '1', 'Fall', 2009, 'B+'); + insert into takes values('11057', '704', '1', 'Spring', 2008, 'B+'); + insert into takes values('82970', '461', '1', 'Fall', 2002, 'B '); + insert into takes values('54153', '319', '1', 'Spring', 2003, 'C '); + insert into takes values('31820', '702', '1', 'Spring', 2001, 'B-'); + insert into takes values('34957', '867', '1', 'Fall', 2006, 'B '); + insert into takes values('123', '603', '1', 'Fall', 2003, 'A '); + insert into takes values('50598', '791', '1', 'Spring', 2006, 'C '); + insert into takes values('16075', '313', '1', 'Fall', 2010, 'A-'); + insert into takes values('99073', '581', '1', 'Spring', 2005, 'B+'); + insert into takes values('67407', '626', '1', 'Fall', 2006, 'A-'); + insert into takes values('11202', '270', '1', 'Spring', 2010, 'A '); + insert into takes values('28829', '959', '1', 'Fall', 2006, 'A '); + insert into takes values('29260', '496', '1', 'Fall', 2001, 'B+'); + insert into takes values('78787', '415', '1', 'Fall', 2010, 'B-'); + insert into takes values('24374', '663', '1', 'Spring', 2005, 'B+'); + insert into takes values('59117', '345', '1', 'Spring', 2008, 'A-'); + insert into takes values('93061', '629', '1', 'Spring', 2003, 'A '); + insert into takes values('64593', '631', '1', 'Spring', 2007, 'B+'); + insert into takes values('84189', '105', '2', 'Fall', 2002, 'B+'); + insert into takes values('55000', '735', '1', 'Spring', 2003, 'B+'); + insert into takes values('37454', '313', '1', 'Fall', 2010, 'C '); + insert into takes values('35293', '362', '3', 'Spring', 2008, 'B-'); + insert into takes values('20540', '991', '1', 'Spring', 2008, 'A-'); + insert into takes values('48861', '795', '1', 'Spring', 2004, 'B+'); + insert into takes values('68649', '561', '1', 'Fall', 2006, 'B+'); + insert into takes values('57962', '694', '1', 'Fall', 2002, 'B-'); + insert into takes values('31266', '237', '1', 'Spring', 2008, 'C '); + insert into takes values('12711', '169', '1', 'Spring', 2007, 'C-'); + insert into takes values('48247', '760', '1', 'Spring', 2004, 'C '); + insert into takes values('17831', '642', '1', 'Fall', 2004, 'C '); + insert into takes values('53799', '362', '1', 'Fall', 2005, 'B-'); + insert into takes values('81876', '748', '1', 'Fall', 2003, 'C+'); + insert into takes values('73908', '421', '1', 'Fall', 2004, 'C+'); + insert into takes values('9460', '443', '2', 'Spring', 2002, 'C-'); + insert into takes values('6729', '702', '1', 'Spring', 2001, 'B-'); + insert into takes values('37586', '704', '1', 'Spring', 2008, 'C '); + insert into takes values('53225', '694', '1', 'Fall', 2002, 'A-'); + insert into takes values('26881', '400', '2', 'Fall', 2003, 'C '); + insert into takes values('79487', '893', '1', 'Fall', 2007, 'B-'); + insert into takes values('69581', '362', '3', 'Spring', 2008, 'C-'); + insert into takes values('86802', '571', '1', 'Spring', 2004, 'A '); + insert into takes values('11262', '864', '1', 'Spring', 2006, 'A-'); + insert into takes values('16849', '581', '1', 'Spring', 2005, 'B+'); + insert into takes values('17665', '561', '1', 'Fall', 2006, 'B+'); + insert into takes values('41345', '362', '1', 'Fall', 2005, 'C '); + insert into takes values('97868', '843', '1', 'Fall', 2010, 'B-'); + insert into takes values('49792', '457', '1', 'Spring', 2001, 'C+'); + insert into takes values('63860', '376', '1', 'Fall', 2006, 'A '); + insert into takes values('56143', '362', '3', 'Spring', 2008, 'A-'); + insert into takes values('39394', '313', '1', 'Fall', 2010, 'B '); + insert into takes values('9495', '158', '2', 'Spring', 2008, 'A '); + insert into takes values('23344', '400', '1', 'Spring', 2007, 'B-'); + insert into takes values('18338', '949', '1', 'Fall', 2007, 'A+'); + insert into takes values('30252', '338', '1', 'Spring', 2007, 'A '); + insert into takes values('38895', '313', '1', 'Fall', 2010, 'B-'); + insert into takes values('73213', '426', '1', 'Spring', 2006, 'B '); + insert into takes values('96193', '169', '2', 'Fall', 2002, 'A '); + insert into takes values('27556', '362', '3', 'Spring', 2008, 'C+'); + insert into takes values('21552', '192', '1', 'Fall', 2002, 'A-'); + insert into takes values('84495', '692', '1', 'Spring', 2010, 'C '); + insert into takes values('16593', '867', '1', 'Fall', 2006, 'A '); + insert into takes values('27727', '468', '2', 'Fall', 2007, 'B '); + insert into takes values('69730', '867', '1', 'Fall', 2006, 'C+'); + insert into takes values('19862', '795', '1', 'Spring', 2004, 'C-'); + insert into takes values('96153', '591', '1', 'Spring', 2005, 'B-'); + insert into takes values('39114', '949', '1', 'Fall', 2007, 'B+'); + insert into takes values('14581', '376', '1', 'Fall', 2006, 'C+'); + insert into takes values('31486', '242', '1', 'Fall', 2009, 'A+'); + insert into takes values('74016', '421', '1', 'Fall', 2004, 'B-'); + insert into takes values('66106', '692', '1', 'Spring', 2010, 'C+'); + insert into takes values('4355', '366', '1', 'Fall', 2005, 'B-'); + insert into takes values('97590', '400', '1', 'Spring', 2007, 'C-'); + insert into takes values('63645', '612', '1', 'Fall', 2007, 'A '); + insert into takes values('89140', '704', '1', 'Spring', 2008, 'C '); + insert into takes values('90004', '748', '1', 'Fall', 2003, 'B-'); + insert into takes values('95046', '242', '1', 'Fall', 2009, 'B-'); + insert into takes values('35293', '893', '1', 'Fall', 2007, 'C-'); + insert into takes values('13757', '679', '1', 'Spring', 2010, 'A '); + insert into takes values('78469', '169', '2', 'Fall', 2002, 'A+'); + insert into takes values('82301', '927', '1', 'Fall', 2002, 'A '); + insert into takes values('59290', '972', '1', 'Spring', 2009, 'C+'); + insert into takes values('2286', '408', '2', 'Spring', 2003, 'B '); + insert into takes values('38668', '702', '1', 'Spring', 2001, 'A '); + insert into takes values('12941', '735', '2', 'Spring', 2010, 'C+'); + insert into takes values('22179', '663', '1', 'Spring', 2005, 'C+'); + insert into takes values('3005', '949', '1', 'Fall', 2007, 'A '); + insert into takes values('19824', '679', '1', 'Spring', 2010, 'C+'); + insert into takes values('49873', '702', '1', 'Spring', 2001, 'A-'); + insert into takes values('59397', '867', '2', 'Fall', 2010, 'A+'); + insert into takes values('57941', '421', '1', 'Fall', 2004, 'B-'); + insert into takes values('72177', '304', '1', 'Fall', 2009, 'A+'); + insert into takes values('22086', '270', '1', 'Spring', 2010, 'B '); + insert into takes values('84495', '237', '2', 'Fall', 2009, 'A '); + insert into takes values('21225', '527', '1', 'Fall', 2004, 'A+'); + insert into takes values('70389', '747', '1', 'Spring', 2004, 'C+'); + insert into takes values('25525', '791', '1', 'Spring', 2006, 'C+'); + insert into takes values('41280', '426', '1', 'Spring', 2006, 'C+'); + insert into takes values('95366', '362', '2', 'Fall', 2006, 'C+'); + insert into takes values('21009', '631', '1', 'Spring', 2007, 'B '); + insert into takes values('69952', '802', '1', 'Spring', 2003, 'B '); + insert into takes values('38895', '270', '1', 'Spring', 2010, 'C-'); + insert into takes values('16593', '169', '2', 'Fall', 2002, 'C+'); + insert into takes values('7204', '345', '1', 'Spring', 2008, 'B+'); + insert into takes values('13365', '137', '1', 'Spring', 2002, 'B+'); + insert into takes values('6287', '482', '1', 'Fall', 2005, 'B-'); + insert into takes values('43912', '571', '1', 'Spring', 2004, 'B-'); + insert into takes values('74639', '237', '1', 'Spring', 2008, 'A-'); + insert into takes values('81028', '274', '1', 'Fall', 2002, 'B '); + insert into takes values('46260', '663', '1', 'Spring', 2005, 'A-'); + insert into takes values('34126', '599', '1', 'Spring', 2003, 'C-'); + insert into takes values('55170', '591', '1', 'Spring', 2005, 'B-'); + insert into takes values('35935', '875', '1', 'Spring', 2005, 'C+'); + insert into takes values('66484', '258', '1', 'Fall', 2007, 'A-'); + insert into takes values('88553', '864', '1', 'Spring', 2006, 'A '); + insert into takes values('95284', '972', '1', 'Spring', 2009, 'A-'); + insert into takes values('62795', '476', '1', 'Fall', 2010, 'C+'); + insert into takes values('33759', '704', '1', 'Spring', 2008, 'A+'); + insert into takes values('45817', '559', '1', 'Fall', 2002, 'A '); + insert into takes values('46981', '760', '1', 'Spring', 2004, 'C+'); + insert into takes values('99611', '274', '1', 'Fall', 2002, 'A '); + insert into takes values('77021', '962', '1', 'Spring', 2008, 'A+'); + insert into takes values('96968', '802', '1', 'Spring', 2003, 'A+'); + insert into takes values('18740', '362', '3', 'Spring', 2008, 'A '); + insert into takes values('30299', '748', '1', 'Fall', 2003, 'A+'); + insert into takes values('8252', '496', '1', 'Fall', 2001, 'C '); + insert into takes values('32772', '401', '1', 'Fall', 2003, 'A '); + insert into takes values('98870', '426', '1', 'Spring', 2006, 'A-'); + insert into takes values('50331', '270', '1', 'Spring', 2010, 'C+'); + insert into takes values('74672', '486', '1', 'Fall', 2009, 'A+'); + insert into takes values('39925', '704', '1', 'Spring', 2008, 'A '); + insert into takes values('92442', '362', '3', 'Spring', 2008, 'C+'); + insert into takes values('38696', '468', '1', 'Fall', 2005, 'C-'); + insert into takes values('8843', '571', '1', 'Spring', 2004, 'C+'); + insert into takes values('9460', '486', '1', 'Fall', 2009, 'A '); + insert into takes values('22532', '696', '1', 'Spring', 2002, 'C '); + insert into takes values('40178', '192', '1', 'Fall', 2002, 'B-'); + insert into takes values('78572', '735', '2', 'Spring', 2010, 'B-'); + insert into takes values('27094', '486', '1', 'Fall', 2009, 'A-'); + insert into takes values('41827', '735', '2', 'Spring', 2010, 'A '); + insert into takes values('58307', '802', '1', 'Spring', 2003, 'A '); + insert into takes values('41491', '974', '1', 'Fall', 2003, 'A '); + insert into takes values('78756', '237', '1', 'Spring', 2008, 'C '); + insert into takes values('39925', '362', '2', 'Fall', 2006, 'B '); + insert into takes values('27043', '274', '1', 'Fall', 2002, 'B+'); + insert into takes values('10033', '445', '1', 'Spring', 2001, 'C '); + insert into takes values('53799', '362', '2', 'Fall', 2006, 'A+'); + insert into takes values('91197', '629', '1', 'Spring', 2003, 'C+'); + insert into takes values('48462', '349', '1', 'Spring', 2008, 'A '); + insert into takes values('62754', '663', '1', 'Spring', 2005, 'B '); + insert into takes values('13504', '468', '1', 'Fall', 2005, 'A-'); + insert into takes values('64914', '362', '3', 'Spring', 2008, 'A-'); + insert into takes values('18709', '408', '2', 'Spring', 2003, 'B+'); + insert into takes values('77000', '468', '2', 'Fall', 2007, 'B '); + insert into takes values('61003', '192', '1', 'Fall', 2002, 'A '); + insert into takes values('14214', '334', '1', 'Fall', 2009, 'C '); + insert into takes values('12216', '421', '1', 'Fall', 2004, 'B-'); + insert into takes values('52523', '401', '1', 'Fall', 2003, 'A-'); + insert into takes values('55009', '893', '1', 'Fall', 2007, 'C-'); + insert into takes values('18499', '461', '1', 'Fall', 2002, 'B+'); + insert into takes values('90372', '735', '1', 'Spring', 2003, 'A+'); + insert into takes values('14284', '486', '1', 'Fall', 2009, 'B-'); + insert into takes values('53805', '169', '1', 'Spring', 2007, 'A+'); + insert into takes values('38902', '875', '1', 'Spring', 2005, 'B-'); + insert into takes values('32065', '400', '2', 'Fall', 2003, 'C '); + insert into takes values('94142', '735', '2', 'Spring', 2010, 'B+'); + insert into takes values('60267', '169', '2', 'Fall', 2002, 'C-'); + insert into takes values('53424', '408', '2', 'Spring', 2003, 'C+'); + insert into takes values('41890', '237', '1', 'Spring', 2008, 'B '); + insert into takes values('91197', '304', '1', 'Fall', 2009, 'A '); + insert into takes values('8251', '468', '2', 'Fall', 2007, 'B+'); + insert into takes values('34055', '476', '1', 'Fall', 2010, 'C '); + insert into takes values('29140', '415', '1', 'Fall', 2010, 'B '); + insert into takes values('67810', '591', '1', 'Spring', 2005, 'B-'); + insert into takes values('4015', '338', '1', 'Spring', 2007, 'B+'); + insert into takes values('62749', '959', '1', 'Fall', 2006, 'A+'); + insert into takes values('57055', '760', '1', 'Spring', 2004, 'B+'); + insert into takes values('4345', '694', '1', 'Fall', 2002, 'B+'); + insert into takes values('76895', '496', '1', 'Fall', 2001, 'B '); + insert into takes values('72177', '626', '1', 'Fall', 2006, 'C+'); + insert into takes values('58170', '362', '3', 'Spring', 2008, 'B '); + insert into takes values('65144', '626', '1', 'Fall', 2006, 'C+'); + insert into takes values('45494', '237', '1', 'Spring', 2008, 'C+'); + insert into takes values('28994', '747', '1', 'Spring', 2004, 'C-'); + insert into takes values('68010', '482', '1', 'Fall', 2005, 'B '); + insert into takes values('61354', '747', '1', 'Spring', 2004, 'C-'); + insert into takes values('81638', '400', '2', 'Fall', 2003, 'C+'); + insert into takes values('52076', '158', '2', 'Spring', 2008, 'A+'); + insert into takes values('41674', '561', '1', 'Fall', 2006, 'B-'); + insert into takes values('67560', '748', '1', 'Fall', 2003, 'A '); + insert into takes values('1402', '489', '1', 'Fall', 2007, 'A+'); + insert into takes values('30177', '192', '1', 'Fall', 2002, 'B+'); + insert into takes values('59117', '338', '2', 'Spring', 2006, 'A-'); + insert into takes values('69241', '893', '1', 'Fall', 2007, 'C+'); + insert into takes values('74974', '748', '1', 'Fall', 2003, 'A+'); + insert into takes values('66763', '443', '2', 'Spring', 2002, 'B-'); + insert into takes values('89551', '852', '1', 'Spring', 2008, 'C '); + insert into takes values('98019', '808', '1', 'Fall', 2003, 'A-'); + insert into takes values('7602', '468', '2', 'Fall', 2007, 'B-'); + insert into takes values('7035', '242', '1', 'Fall', 2009, 'B-'); + insert into takes values('49701', '345', '1', 'Spring', 2008, 'A '); + insert into takes values('36052', '158', '1', 'Fall', 2008, 'B-'); + insert into takes values('35175', '239', '1', 'Fall', 2006, 'B '); + insert into takes values('59673', '468', '1', 'Fall', 2005, 'C-'); + insert into takes values('32056', '400', '1', 'Spring', 2007, 'C '); + insert into takes values('16993', '352', '1', 'Spring', 2006, 'A '); + insert into takes values('39521', '457', '1', 'Spring', 2001, 'C+'); + insert into takes values('41741', '489', '1', 'Fall', 2007, 'A-'); + insert into takes values('90181', '748', '1', 'Fall', 2003, 'C-'); + insert into takes values('35138', '694', '1', 'Fall', 2002, 'A '); + insert into takes values('32886', '192', '1', 'Fall', 2002, 'A+'); + insert into takes values('71543', '867', '1', 'Fall', 2006, 'C+'); + insert into takes values('22532', '545', '1', 'Fall', 2001, 'C+'); + insert into takes values('56', '972', '1', 'Spring', 2009, 'C+'); + insert into takes values('64067', '426', '1', 'Spring', 2006, 'A+'); + insert into takes values('91580', '242', '1', 'Fall', 2009, 'A+'); + insert into takes values('81610', '604', '1', 'Spring', 2009, 'C-'); + insert into takes values('52157', '105', '1', 'Fall', 2009, 'C '); + insert into takes values('978', '239', '1', 'Fall', 2006, 'C '); + insert into takes values('31516', '468', '1', 'Fall', 2005, 'C '); + insert into takes values('79763', '802', '1', 'Spring', 2003, 'B+'); + insert into takes values('53469', '527', '1', 'Fall', 2004, 'B '); + insert into takes values('2286', '401', '1', 'Fall', 2003, 'A-'); + insert into takes values('78581', '960', '1', 'Fall', 2009, 'B '); + insert into takes values('65703', '137', '1', 'Spring', 2002, 'B+'); + insert into takes values('81610', '959', '1', 'Fall', 2006, 'C '); + insert into takes values('94535', '927', '1', 'Fall', 2002, 'B+'); + insert into takes values('52471', '949', '1', 'Fall', 2007, 'B+'); + insert into takes values('56', '791', '1', 'Spring', 2006, 'A+'); + insert into takes values('8843', '629', '1', 'Spring', 2003, 'C-'); + insert into takes values('36384', '527', '1', 'Fall', 2004, 'A+'); + insert into takes values('9659', '571', '1', 'Spring', 2004, 'C-'); + insert into takes values('99719', '242', '1', 'Fall', 2009, 'A-'); + insert into takes values('48678', '760', '1', 'Spring', 2004, 'A '); + insert into takes values('68554', '489', '1', 'Fall', 2007, 'C-'); + insert into takes values('52750', '313', '1', 'Fall', 2010, 'C-'); + insert into takes values('69241', '696', '1', 'Spring', 2002, 'C+'); + insert into takes values('90814', '362', '1', 'Fall', 2005, 'B-'); + insert into takes values('65241', '864', '1', 'Spring', 2006, 'C '); + insert into takes values('98690', '972', '1', 'Spring', 2009, 'C+'); + insert into takes values('79487', '760', '1', 'Spring', 2004, 'B+'); + insert into takes values('51238', '864', '1', 'Spring', 2006, 'B '); + insert into takes values('99977', '599', '1', 'Spring', 2003, 'A-'); + insert into takes values('14023', '408', '1', 'Spring', 2007, 'C-'); + insert into takes values('33837', '791', '1', 'Spring', 2006, 'A+'); + insert into takes values('49244', '169', '1', 'Spring', 2007, 'B '); + insert into takes values('38476', '760', '1', 'Spring', 2004, 'B '); + insert into takes values('3335', '137', '1', 'Spring', 2002, 'A-'); + insert into takes values('14432', '200', '1', 'Spring', 2007, 'B-'); + insert into takes values('61065', '137', '1', 'Spring', 2002, 'A '); + insert into takes values('63390', '270', '1', 'Spring', 2010, 'A '); + insert into takes values('4355', '631', '1', 'Spring', 2007, 'C+'); + insert into takes values('59172', '599', '1', 'Spring', 2003, 'B '); + insert into takes values('96772', '545', '1', 'Fall', 2001, 'A-'); + insert into takes values('82580', '748', '1', 'Fall', 2003, 'C-'); + insert into takes values('35462', '366', '1', 'Fall', 2005, 'B '); + insert into takes values('898', '864', '1', 'Spring', 2006, 'A-'); + insert into takes values('53152', '237', '2', 'Fall', 2009, 'C-'); + insert into takes values('31820', '158', '1', 'Fall', 2008, 'C+'); + insert into takes values('19848', '527', '1', 'Fall', 2004, 'A+'); + insert into takes values('11055', '426', '1', 'Spring', 2006, 'B-'); + insert into takes values('888', '867', '1', 'Fall', 2006, 'C '); + insert into takes values('48462', '105', '2', 'Fall', 2002, 'C '); + insert into takes values('6729', '366', '1', 'Fall', 2005, 'A '); + insert into takes values('81638', '527', '1', 'Fall', 2004, 'A-'); + insert into takes values('53799', '545', '1', 'Fall', 2001, 'A-'); + insert into takes values('65438', '486', '1', 'Fall', 2009, 'A '); + insert into takes values('6304', '599', '1', 'Spring', 2003, 'C+'); + insert into takes values('73606', '867', '2', 'Fall', 2010, 'C+'); + insert into takes values('35042', '545', '1', 'Fall', 2001, 'C+'); + insert into takes values('44206', '571', '1', 'Spring', 2004, 'A+'); + insert into takes values('56143', '626', '1', 'Fall', 2006, 'C-'); + insert into takes values('17769', '747', '1', 'Spring', 2004, 'B-'); + insert into takes values('47001', '169', '1', 'Spring', 2007, 'A-'); + insert into takes values('49073', '443', '2', 'Spring', 2002, 'C+'); + insert into takes values('40178', '169', '2', 'Fall', 2002, 'B+'); + insert into takes values('74070', '445', '1', 'Spring', 2001, 'C-'); + insert into takes values('44706', '319', '1', 'Spring', 2003, 'A+'); + insert into takes values('88577', '408', '2', 'Spring', 2003, 'B '); + insert into takes values('86641', '692', '1', 'Spring', 2010, 'A-'); + insert into takes values('2970', '468', '2', 'Fall', 2007, 'B '); + insert into takes values('69679', '468', '1', 'Fall', 2005, 'B-'); + insert into takes values('86327', '426', '1', 'Spring', 2006, 'B '); + insert into takes values('21766', '591', '1', 'Spring', 2005, 'C-'); + insert into takes values('43989', '559', '1', 'Fall', 2002, 'A '); + insert into takes values('72979', '304', '1', 'Fall', 2009, 'B+'); + insert into takes values('14668', '795', '1', 'Spring', 2004, 'C '); + insert into takes values('48850', '599', '1', 'Spring', 2003, 'A-'); + insert into takes values('90567', '489', '1', 'Fall', 2007, 'C '); + insert into takes values('30252', '239', '1', 'Fall', 2006, 'C+'); + insert into takes values('77580', '704', '1', 'Spring', 2008, 'B '); + insert into takes values('71630', '482', '1', 'Fall', 2005, 'B '); + insert into takes values('43505', '496', '1', 'Fall', 2001, 'C '); + insert into takes values('66494', '843', '1', 'Fall', 2010, 'A+'); + insert into takes values('84515', '408', '1', 'Spring', 2007, 'A '); + insert into takes values('80248', '959', '1', 'Fall', 2006, 'B-'); + insert into takes values('79329', '200', '2', 'Fall', 2002, 'A-'); + insert into takes values('44258', '748', '1', 'Fall', 2003, 'A '); + insert into takes values('21556', '408', '2', 'Spring', 2003, 'B+'); + insert into takes values('5824', '415', '1', 'Fall', 2010, 'A+'); + insert into takes values('34422', '274', '1', 'Fall', 2002, 'A+'); + insert into takes values('93043', '867', '2', 'Fall', 2010, 'A '); + insert into takes values('5617', '735', '1', 'Spring', 2003, 'A+'); + insert into takes values('16753', '401', '1', 'Fall', 2003, 'A-'); + insert into takes values('42956', '599', '1', 'Spring', 2003, 'B-'); + insert into takes values('49450', '748', '1', 'Fall', 2003, 'B-'); + insert into takes values('53225', '748', '1', 'Fall', 2003, 'C '); + insert into takes values('78787', '527', '1', 'Fall', 2004, 'A-'); + insert into takes values('11152', '561', '1', 'Fall', 2006, 'A+'); + insert into takes values('7149', '704', '1', 'Spring', 2008, 'B-'); + insert into takes values('81550', '679', '1', 'Spring', 2010, 'C+'); + insert into takes values('57431', '443', '1', 'Spring', 2010, 'B-'); + insert into takes values('75938', '421', '1', 'Fall', 2004, 'C '); + insert into takes values('68395', '972', '1', 'Spring', 2009, 'B+'); + insert into takes values('40932', '376', '1', 'Fall', 2006, 'B '); + insert into takes values('79352', '362', '3', 'Spring', 2008, 'C '); + insert into takes values('85754', '843', '1', 'Fall', 2010, 'A-'); + insert into takes values('38476', '559', '1', 'Fall', 2002, 'B+'); + insert into takes values('86802', '334', '1', 'Fall', 2009, 'B-'); + insert into takes values('51997', '445', '1', 'Spring', 2001, 'B-'); + insert into takes values('58701', '486', '1', 'Fall', 2009, 'B '); + insert into takes values('83686', '158', '1', 'Fall', 2008, 'A+'); + insert into takes values('49280', '852', '1', 'Spring', 2008, 'A-'); + insert into takes values('827', '692', '1', 'Spring', 2010, 'A '); + insert into takes values('56499', '972', '1', 'Spring', 2009, 'A+'); + insert into takes values('20099', '802', '1', 'Spring', 2003, 'C-'); + insert into takes values('97042', '105', '1', 'Fall', 2009, 'B-'); + insert into takes values('39472', '304', '1', 'Fall', 2009, 'A-'); + insert into takes values('80742', '527', '1', 'Fall', 2004, 'B-'); + insert into takes values('99268', '408', '2', 'Spring', 2003, 'B-'); + insert into takes values('57474', '545', '1', 'Fall', 2001, 'C+'); + insert into takes values('80248', '692', '1', 'Spring', 2010, 'B+'); + insert into takes values('25611', '571', '1', 'Spring', 2004, 'B '); + insert into takes values('22003', '626', '1', 'Fall', 2006, 'B '); + insert into takes values('21789', '237', '1', 'Spring', 2008, 'B-'); + insert into takes values('43495', '400', '1', 'Spring', 2007, 'C-'); + insert into takes values('13290', '352', '1', 'Spring', 2006, 'C+'); + insert into takes values('87439', '401', '1', 'Fall', 2003, 'C-'); + insert into takes values('68248', '795', '1', 'Spring', 2004, 'C+'); + insert into takes values('1402', '137', '1', 'Spring', 2002, 'C+'); + insert into takes values('84189', '400', '1', 'Spring', 2007, 'C-'); + insert into takes values('62716', '362', '1', 'Fall', 2005, 'A '); + insert into takes values('18675', '200', '1', 'Spring', 2007, 'B+'); + insert into takes values('99369', '959', '1', 'Fall', 2006, 'C-'); + insert into takes values('81396', '258', '1', 'Fall', 2007, 'B+'); + insert into takes values('93171', '949', '1', 'Fall', 2007, 'A-'); + insert into takes values('56078', '561', '1', 'Fall', 2006, 'B '); + insert into takes values('37350', '960', '1', 'Fall', 2009, 'C '); + insert into takes values('81789', '158', '2', 'Spring', 2008, 'B+'); + insert into takes values('58413', '400', '1', 'Spring', 2007, 'B '); + insert into takes values('61127', '559', '1', 'Fall', 2002, 'C+'); + insert into takes values('50743', '599', '1', 'Spring', 2003, 'A '); + insert into takes values('82591', '362', '1', 'Fall', 2005, 'C-'); + insert into takes values('6710', '304', '1', 'Fall', 2009, 'B '); + insert into takes values('57925', '793', '1', 'Spring', 2002, 'B-'); + insert into takes values('57985', '893', '1', 'Fall', 2007, 'B+'); + insert into takes values('41261', '599', '1', 'Spring', 2003, 'A '); + insert into takes values('97101', '362', '2', 'Fall', 2006, 'A+'); + insert into takes values('79911', '137', '1', 'Spring', 2002, 'B-'); + insert into takes values('21395', '696', '1', 'Spring', 2002, 'B '); + insert into takes values('16523', '663', '1', 'Spring', 2005, 'B-'); + insert into takes values('42019', '349', '1', 'Spring', 2008, 'B '); + insert into takes values('52157', '362', '3', 'Spring', 2008, 'A-'); + insert into takes values('15698', '366', '1', 'Fall', 2005, 'B '); + insert into takes values('42560', '875', '1', 'Spring', 2005, 'C-'); + insert into takes values('51955', '158', '1', 'Fall', 2008, 'C '); + insert into takes values('21225', '795', '1', 'Spring', 2004, 'C '); + insert into takes values('69307', '631', '1', 'Spring', 2007, 'B '); + insert into takes values('8860', '366', '1', 'Fall', 2005, 'C-'); + insert into takes values('15144', '864', '1', 'Spring', 2006, 'A+'); + insert into takes values('64934', '571', '1', 'Spring', 2004, 'C+'); + insert into takes values('27002', '401', '1', 'Fall', 2003, 'A '); + insert into takes values('91992', '561', '1', 'Fall', 2006, 'B+'); + insert into takes values('59530', '631', '1', 'Spring', 2007, 'C-'); + insert into takes values('38902', '704', '1', 'Spring', 2008, 'B-'); + insert into takes values('77289', '864', '1', 'Spring', 2006, 'A-'); + insert into takes values('29871', '258', '1', 'Fall', 2007, 'C+'); + insert into takes values('61403', '591', '1', 'Spring', 2005, 'C '); + insert into takes values('96324', '486', '1', 'Fall', 2009, 'A+'); + insert into takes values('53048', '169', '2', 'Fall', 2002, 'B+'); + insert into takes values('86375', '960', '1', 'Fall', 2009, 'C+'); + insert into takes values('99399', '960', '1', 'Fall', 2009, 'C-'); + insert into takes values('86806', '445', '1', 'Spring', 2001, 'A-'); + insert into takes values('23110', '760', '1', 'Spring', 2004, 'B '); + insert into takes values('82687', '791', '1', 'Spring', 2006, 'C '); + insert into takes values('95574', '274', '1', 'Fall', 2002, 'B+'); + insert into takes values('5961', '362', '2', 'Fall', 2006, 'B-'); + insert into takes values('72669', '735', '1', 'Spring', 2003, 'C+'); + insert into takes values('50944', '747', '1', 'Spring', 2004, 'B '); + insert into takes values('8819', '692', '1', 'Spring', 2010, 'A+'); + insert into takes values('99226', '401', '1', 'Fall', 2003, 'A+'); + insert into takes values('544', '604', '1', 'Spring', 2009, 'B+'); + insert into takes values('11455', '493', '1', 'Spring', 2010, 'A '); + insert into takes values('35220', '408', '2', 'Spring', 2003, 'C+'); + insert into takes values('96968', '748', '1', 'Fall', 2003, 'C+'); + insert into takes values('89312', '571', '1', 'Spring', 2004, 'C-'); + insert into takes values('35462', '376', '1', 'Fall', 2006, 'B-'); + insert into takes values('96710', '421', '1', 'Fall', 2004, 'B+'); + insert into takes values('95859', '237', '2', 'Fall', 2009, 'C-'); + insert into takes values('18234', '445', '1', 'Spring', 2001, 'B-'); + insert into takes values('62754', '270', '1', 'Spring', 2010, 'C '); + insert into takes values('33349', '735', '2', 'Spring', 2010, 'B+'); + insert into takes values('40044', '137', '1', 'Spring', 2002, 'B-'); + insert into takes values('54605', '338', '2', 'Spring', 2006, 'C '); + insert into takes values('69783', '137', '1', 'Spring', 2002, 'C+'); + insert into takes values('65901', '362', '3', 'Spring', 2008, 'C-'); + insert into takes values('87706', '349', '1', 'Spring', 2008, 'C+'); + insert into takes values('65715', '415', '1', 'Fall', 2010, 'B-'); + insert into takes values('75040', '591', '1', 'Spring', 2005, 'A '); + insert into takes values('71529', '468', '2', 'Fall', 2007, 'C-'); + insert into takes values('14581', '561', '1', 'Fall', 2006, 'C '); + insert into takes values('60249', '747', '1', 'Spring', 2004, 'A+'); + insert into takes values('63040', '760', '1', 'Spring', 2004, 'A+'); + insert into takes values('5463', '237', '2', 'Fall', 2009, 'B-'); + insert into takes values('39876', '612', '1', 'Fall', 2007, 'A '); + insert into takes values('3127', '345', '1', 'Spring', 2008, 'C-'); + insert into takes values('51868', '461', '1', 'Fall', 2002, 'C '); + insert into takes values('31250', '200', '2', 'Fall', 2002, 'A-'); + insert into takes values('36513', '960', '1', 'Fall', 2009, 'B '); + insert into takes values('72521', '338', '1', 'Spring', 2007, 'B '); + insert into takes values('15328', '793', '1', 'Spring', 2002, 'A '); + insert into takes values('51723', '843', '1', 'Fall', 2010, 'A '); + insert into takes values('3576', '169', '1', 'Spring', 2007, 'A '); + insert into takes values('24442', '496', '1', 'Fall', 2001, 'A '); + insert into takes values('87222', '415', '1', 'Fall', 2010, 'B-'); + insert into takes values('34195', '242', '1', 'Fall', 2009, 'C+'); + insert into takes values('18675', '443', '1', 'Spring', 2010, 'A '); + insert into takes values('85981', '192', '1', 'Fall', 2002, 'A '); + insert into takes values('96178', '400', '1', 'Spring', 2007, 'B-'); + insert into takes values('81150', '169', '2', 'Fall', 2002, 'C+'); + insert into takes values('50969', '237', '1', 'Spring', 2008, 'C '); + insert into takes values('80976', '319', '1', 'Spring', 2003, 'C-'); + insert into takes values('57238', '468', '2', 'Fall', 2007, 'C-'); + insert into takes values('10904', '972', '1', 'Spring', 2009, 'C+'); + insert into takes values('14284', '105', '2', 'Fall', 2002, 'B+'); + insert into takes values('76057', '169', '1', 'Spring', 2007, 'B+'); + insert into takes values('1826', '629', '1', 'Spring', 2003, 'B+'); + insert into takes values('23500', '962', '1', 'Spring', 2008, 'A '); + insert into takes values('80799', '482', '1', 'Fall', 2005, 'C-'); + insert into takes values('10076', '559', '1', 'Fall', 2002, 'A+'); + insert into takes values('16453', '457', '1', 'Spring', 2001, 'C-'); + insert into takes values('69732', '545', '1', 'Fall', 2001, 'C-'); + insert into takes values('26028', '604', '1', 'Spring', 2009, 'C-'); + insert into takes values('70965', '237', '2', 'Fall', 2009, 'C+'); + insert into takes values('60406', '468', '2', 'Fall', 2007, 'C+'); + insert into takes values('23110', '867', '2', 'Fall', 2010, 'C-'); + insert into takes values('52741', '445', '1', 'Spring', 2001, 'B+'); + insert into takes values('98843', '692', '1', 'Spring', 2010, 'B-'); + insert into takes values('39157', '304', '1', 'Fall', 2009, 'A-'); + insert into takes values('16969', '362', '3', 'Spring', 2008, 'A-'); + insert into takes values('18007', '400', '1', 'Spring', 2007, 'B-'); + insert into takes values('20084', '603', '1', 'Fall', 2003, 'B-'); + insert into takes values('14874', '642', '1', 'Fall', 2004, 'B '); + insert into takes values('22417', '561', '1', 'Fall', 2006, 'A '); + insert into takes values('59920', '748', '1', 'Fall', 2003, 'A-'); + insert into takes values('81883', '158', '1', 'Fall', 2008, 'B '); + insert into takes values('25468', '345', '1', 'Spring', 2008, 'B-'); + insert into takes values('5336', '242', '1', 'Fall', 2009, 'B-'); + insert into takes values('1080', '443', '1', 'Spring', 2010, 'C-'); + insert into takes values('29239', '631', '1', 'Spring', 2007, 'A '); + insert into takes values('33791', '461', '1', 'Fall', 2002, 'A+'); + insert into takes values('58595', '599', '1', 'Spring', 2003, 'C-'); + insert into takes values('91992', '105', '1', 'Fall', 2009, 'C '); + insert into takes values('40738', '445', '1', 'Spring', 2001, 'C-'); + insert into takes values('1726', '362', '3', 'Spring', 2008, 'C-'); + insert into takes values('21552', '345', '1', 'Spring', 2008, 'C+'); + insert into takes values('40481', '408', '2', 'Spring', 2003, 'A '); + insert into takes values('22532', '105', '1', 'Fall', 2009, 'A '); + insert into takes values('4248', '421', '1', 'Fall', 2004, 'A+'); + insert into takes values('59553', '692', '1', 'Spring', 2010, 'A+'); + insert into takes values('57083', '962', '1', 'Spring', 2008, 'A+'); + insert into takes values('94836', '426', '1', 'Spring', 2006, 'A+'); + insert into takes values('16907', '242', '1', 'Fall', 2009, 'C '); + insert into takes values('41675', '991', '1', 'Spring', 2008, 'C-'); + insert into takes values('45770', '401', '1', 'Fall', 2003, 'C-'); + insert into takes values('91851', '496', '1', 'Fall', 2001, 'B+'); + insert into takes values('40044', '991', '1', 'Spring', 2008, 'B-'); + insert into takes values('69285', '334', '1', 'Fall', 2009, 'C+'); + insert into takes values('12236', '169', '2', 'Fall', 2002, 'B-'); + insert into takes values('78892', '338', '1', 'Spring', 2007, 'B-'); + insert into takes values('87439', '468', '2', 'Fall', 2007, 'B '); + insert into takes values('90914', '867', '1', 'Fall', 2006, 'B+'); + insert into takes values('81896', '319', '1', 'Spring', 2003, 'A '); + insert into takes values('14639', '408', '1', 'Spring', 2007, 'B-'); + insert into takes values('14499', '421', '1', 'Fall', 2004, 'C '); + insert into takes values('90089', '362', '1', 'Fall', 2005, 'A-'); + insert into takes values('76604', '274', '1', 'Fall', 2002, 'C+'); + insert into takes values('45817', '735', '2', 'Spring', 2010, 'C+'); + insert into takes values('24197', '642', '1', 'Fall', 2004, 'C '); + insert into takes values('31079', '192', '1', 'Fall', 2002, 'A '); + insert into takes values('61364', '158', '2', 'Spring', 2008, 'A+'); + insert into takes values('63886', '274', '1', 'Fall', 2002, 'C '); + insert into takes values('49450', '631', '1', 'Spring', 2007, 'B+'); + insert into takes values('50658', '443', '2', 'Spring', 2002, 'A+'); + insert into takes values('22325', '747', '1', 'Spring', 2004, 'C '); + insert into takes values('63489', '591', '1', 'Spring', 2005, 'A+'); + insert into takes values('48850', '400', '2', 'Fall', 2003, 'B '); + insert into takes values('41988', '408', '2', 'Spring', 2003, 'C '); + insert into takes values('38545', '974', '1', 'Fall', 2003, 'B+'); + insert into takes values('91978', '237', '1', 'Spring', 2008, 'C-'); + insert into takes values('84239', '626', '1', 'Fall', 2006, 'C-'); + insert into takes values('37284', '258', '1', 'Fall', 2007, 'C '); + insert into takes values('68649', '445', '1', 'Spring', 2001, 'B+'); + insert into takes values('42388', '864', '1', 'Spring', 2006, 'B-'); + insert into takes values('30858', '591', '1', 'Spring', 2005, 'A '); + insert into takes values('4355', '704', '1', 'Spring', 2008, 'A '); + insert into takes values('40897', '362', '3', 'Spring', 2008, 'A-'); + insert into takes values('86404', '893', '1', 'Fall', 2007, 'B-'); + insert into takes values('56849', '694', '1', 'Fall', 2002, 'A '); + insert into takes values('85234', '960', '1', 'Fall', 2009, 'C '); + insert into takes values('259', '349', '1', 'Spring', 2008, 'A+'); + insert into takes values('62429', '571', '1', 'Spring', 2004, 'A+'); + insert into takes values('41818', '258', '1', 'Fall', 2007, 'C '); + insert into takes values('14023', '105', '2', 'Fall', 2002, 'B '); + insert into takes values('42019', '237', '1', 'Spring', 2008, 'B '); + insert into takes values('33107', '426', '1', 'Spring', 2006, 'B-'); + insert into takes values('41741', '991', '1', 'Spring', 2008, 'A-'); + insert into takes values('59848', '400', '2', 'Fall', 2003, 'C '); + insert into takes values('8483', '366', '1', 'Fall', 2005, 'A '); + insert into takes values('17997', '962', '1', 'Spring', 2008, 'A+'); + insert into takes values('94814', '445', '1', 'Spring', 2001, 'B '); + insert into takes values('86651', '571', '1', 'Spring', 2004, 'B '); + insert into takes values('70061', '559', '1', 'Fall', 2002, 'C+'); + insert into takes values('22050', '561', '1', 'Fall', 2006, 'A+'); + insert into takes values('42625', '581', '1', 'Spring', 2005, 'C+'); + insert into takes values('65901', '105', '1', 'Fall', 2009, 'B+'); + insert into takes values('86344', '972', '1', 'Spring', 2009, 'C+'); + insert into takes values('15070', '258', '1', 'Fall', 2007, 'C+'); + insert into takes values('3639', '468', '1', 'Fall', 2005, 'B+'); + insert into takes values('11194', '893', '1', 'Fall', 2007, 'A-'); + insert into takes values('336', '843', '1', 'Fall', 2010, 'B+'); + insert into takes values('18469', '400', '1', 'Spring', 2007, 'C+'); + insert into takes values('42560', '527', '1', 'Fall', 2004, 'C+'); + insert into takes values('57431', '793', '1', 'Spring', 2002, 'B '); + insert into takes values('48165', '338', '1', 'Spring', 2007, 'A '); + insert into takes values('60748', '972', '1', 'Spring', 2009, 'A-'); + insert into takes values('39892', '349', '1', 'Spring', 2008, 'C '); + insert into takes values('25362', '105', '2', 'Fall', 2002, 'C '); + insert into takes values('63886', '426', '1', 'Spring', 2006, 'C+'); + insert into takes values('97694', '258', '1', 'Fall', 2007, 'C '); + insert into takes values('16347', '445', '1', 'Spring', 2001, 'A '); + insert into takes values('27236', '345', '1', 'Spring', 2008, 'B-'); + insert into takes values('77000', '974', '1', 'Fall', 2003, 'A '); + insert into takes values('98984', '493', '1', 'Spring', 2010, 'B+'); + insert into takes values('50467', '591', '1', 'Spring', 2005, 'B+'); + insert into takes values('95320', '401', '1', 'Fall', 2003, 'A-'); + insert into takes values('64196', '237', '2', 'Fall', 2009, 'A+'); + insert into takes values('1000', '571', '1', 'Spring', 2004, 'C+'); + insert into takes values('4004', '468', '2', 'Fall', 2007, 'B '); + insert into takes values('84845', '319', '1', 'Spring', 2003, 'C+'); + insert into takes values('74911', '692', '1', 'Spring', 2010, 'B+'); + insert into takes values('59920', '338', '1', 'Spring', 2007, 'B '); + insert into takes values('25187', '974', '1', 'Fall', 2003, 'C '); + insert into takes values('20985', '482', '1', 'Fall', 2005, 'B-'); + insert into takes values('71389', '242', '1', 'Fall', 2009, 'B '); + insert into takes values('14094', '362', '3', 'Spring', 2008, 'B+'); + insert into takes values('75878', '468', '2', 'Fall', 2007, 'A+'); + insert into takes values('37869', '735', '1', 'Spring', 2003, 'B+'); + insert into takes values('56499', '105', '1', 'Fall', 2009, 'A+'); + insert into takes values('59397', '604', '1', 'Spring', 2009, 'B-'); + insert into takes values('43123', '893', '1', 'Fall', 2007, 'A-'); + insert into takes values('29707', '626', '1', 'Fall', 2006, 'A '); + insert into takes values('37653', '338', '1', 'Spring', 2007, 'B-'); + insert into takes values('52187', '349', '1', 'Spring', 2008, 'B+'); + insert into takes values('56143', '468', '2', 'Fall', 2007, 'C-'); + insert into takes values('52371', '629', '1', 'Spring', 2003, 'C-'); + insert into takes values('35935', '237', '1', 'Spring', 2008, 'B-'); + insert into takes values('10693', '376', '1', 'Fall', 2006, 'C '); + insert into takes values('23270', '527', '1', 'Fall', 2004, 'C '); + insert into takes values('24746', '352', '1', 'Spring', 2006, 'B+'); + insert into takes values('18469', '426', '1', 'Spring', 2006, 'A+'); + insert into takes values('16297', '663', '1', 'Spring', 2005, 'A+'); + insert into takes values('80651', '629', '1', 'Spring', 2003, 'B-'); + insert into takes values('38691', '366', '1', 'Fall', 2005, 'A-'); + insert into takes values('10454', '960', '2', 'Fall', 2006, 'B '); + insert into takes values('69581', '949', '1', 'Fall', 2007, 'A-'); + insert into takes values('30723', '747', '1', 'Spring', 2004, 'A-'); + insert into takes values('7035', '694', '1', 'Fall', 2002, 'A-'); + insert into takes values('23110', '496', '1', 'Fall', 2001, 'A-'); + insert into takes values('77588', '461', '1', 'Fall', 2002, 'C+'); + insert into takes values('75772', '445', '1', 'Spring', 2001, 'B '); + insert into takes values('97435', '486', '1', 'Fall', 2009, 'A-'); + insert into takes values('33349', '237', '2', 'Fall', 2009, 'B '); + insert into takes values('83444', '694', '1', 'Fall', 2002, 'B-'); + insert into takes values('11510', '237', '1', 'Spring', 2008, 'B-'); + insert into takes values('89051', '274', '1', 'Fall', 2002, 'C-'); + insert into takes values('55170', '400', '2', 'Fall', 2003, 'B '); + insert into takes values('19321', '960', '1', 'Fall', 2009, 'B '); + insert into takes values('13511', '334', '1', 'Fall', 2009, 'A+'); + insert into takes values('36845', '612', '1', 'Fall', 2007, 'A-'); + insert into takes values('10814', '169', '2', 'Fall', 2002, 'C+'); + insert into takes values('96227', '631', '1', 'Spring', 2007, 'B+'); + insert into takes values('5336', '239', '1', 'Fall', 2006, 'B+'); + insert into takes values('29192', '352', '1', 'Spring', 2006, 'B+'); + insert into takes values('22325', '349', '1', 'Spring', 2008, 'B+'); + insert into takes values('38476', '962', '1', 'Spring', 2008, 'C '); + insert into takes values('65563', '200', '1', 'Spring', 2007, 'B-'); + insert into takes values('20180', '972', '1', 'Spring', 2009, 'B-'); + insert into takes values('15283', '258', '1', 'Fall', 2007, 'C+'); + insert into takes values('11455', '642', '1', 'Fall', 2004, 'C+'); + insert into takes values('14628', '304', '1', 'Fall', 2009, 'C '); + insert into takes values('67542', '242', '1', 'Fall', 2009, 'A+'); + insert into takes values('83022', '158', '2', 'Spring', 2008, 'C-'); + insert into takes values('11578', '747', '1', 'Spring', 2004, 'C-'); + insert into takes values('1954', '735', '1', 'Spring', 2003, 'C '); + insert into takes values('90779', '867', '2', 'Fall', 2010, 'A+'); + insert into takes values('92442', '493', '1', 'Spring', 2010, 'B-'); + insert into takes values('57377', '376', '1', 'Fall', 2006, 'C '); + insert into takes values('18007', '421', '1', 'Fall', 2004, 'A-'); + insert into takes values('46450', '545', '1', 'Fall', 2001, 'C+'); + insert into takes values('5898', '421', '1', 'Fall', 2004, 'A+'); + insert into takes values('74911', '591', '1', 'Spring', 2005, 'C-'); + insert into takes values('55286', '489', '1', 'Fall', 2007, 'B-'); + insert into takes values('99463', '461', '1', 'Fall', 2002, 'C+'); + insert into takes values('14829', '612', '1', 'Fall', 2007, 'B+'); + insert into takes values('63645', '679', '1', 'Spring', 2010, 'A+'); + insert into takes values('59530', '591', '1', 'Spring', 2005, 'C '); + insert into takes values('72006', '561', '1', 'Fall', 2006, 'B '); + insert into takes values('72177', '457', '1', 'Spring', 2001, 'B+'); + insert into takes values('78572', '362', '1', 'Fall', 2005, 'C '); + insert into takes values('30896', '704', '1', 'Spring', 2008, 'C+'); + insert into takes values('40992', '239', '1', 'Fall', 2006, 'B+'); + insert into takes values('74840', '362', '1', 'Fall', 2005, 'B '); + insert into takes values('79697', '258', '1', 'Fall', 2007, 'C+'); + insert into takes values('30164', '489', '1', 'Fall', 2007, 'B-'); + insert into takes values('61402', '694', '1', 'Fall', 2002, 'C+'); + insert into takes values('31690', '496', '1', 'Fall', 2001, 'B+'); + insert into takes values('29871', '864', '1', 'Spring', 2006, 'B-'); + insert into takes values('41683', '421', '1', 'Fall', 2004, 'B+'); + insert into takes values('87268', '599', '1', 'Spring', 2003, 'C-'); + insert into takes values('54612', '545', '1', 'Fall', 2001, 'A-'); + insert into takes values('37430', '663', '1', 'Spring', 2005, 'A+'); + insert into takes values('56499', '445', '1', 'Spring', 2001, 'B-'); + insert into takes values('24325', '258', '1', 'Fall', 2007, 'B+'); + insert into takes values('88045', '334', '1', 'Fall', 2009, 'B+'); + insert into takes values('29140', '137', '1', 'Spring', 2002, 'A+'); + insert into takes values('88085', '304', '1', 'Fall', 2009, 'B-'); + insert into takes values('54672', '476', '1', 'Fall', 2010, 'B '); + insert into takes values('42956', '561', '1', 'Fall', 2006, 'C-'); + insert into takes values('79763', '629', '1', 'Spring', 2003, 'C+'); + insert into takes values('8347', '137', '1', 'Spring', 2002, 'C '); + insert into takes values('30177', '960', '1', 'Fall', 2009, 'C-'); + insert into takes values('13365', '679', '1', 'Spring', 2010, 'B-'); + insert into takes values('65563', '864', '1', 'Spring', 2006, 'C+'); + insert into takes values('65400', '486', '1', 'Fall', 2009, 'B+'); + insert into takes values('75423', '802', '1', 'Spring', 2003, 'C '); + insert into takes values('83696', '791', '1', 'Spring', 2006, 'A '); + insert into takes values('36384', '702', '1', 'Spring', 2001, 'A+'); + insert into takes values('46066', '457', '1', 'Spring', 2001, 'A+'); + insert into takes values('1968', '239', '1', 'Fall', 2006, 'A-'); + insert into takes values('46260', '571', '1', 'Spring', 2004, 'B+'); + insert into takes values('22417', '747', '1', 'Spring', 2004, 'A+'); + insert into takes values('82301', '362', '2', 'Fall', 2006, 'A '); + insert into takes values('60267', '313', '1', 'Fall', 2010, 'B-'); + insert into takes values('51553', '663', '1', 'Spring', 2005, 'A-'); + insert into takes values('1367', '362', '1', 'Fall', 2005, 'A+'); + insert into takes values('95175', '603', '1', 'Fall', 2003, 'B-'); + insert into takes values('61081', '561', '1', 'Fall', 2006, 'B+'); + insert into takes values('43032', '489', '1', 'Fall', 2007, 'A '); + insert into takes values('15249', '345', '1', 'Spring', 2008, 'A+'); + insert into takes values('31337', '599', '1', 'Spring', 2003, 'B '); + insert into takes values('57135', '158', '2', 'Spring', 2008, 'C '); + insert into takes values('78792', '362', '2', 'Fall', 2006, 'C+'); + insert into takes values('51579', '867', '1', 'Fall', 2006, 'C-'); + insert into takes values('77548', '808', '1', 'Fall', 2003, 'C+'); + insert into takes values('94766', '489', '1', 'Fall', 2007, 'C-'); + insert into takes values('73072', '242', '1', 'Fall', 2009, 'B '); + insert into takes values('98690', '974', '1', 'Fall', 2003, 'A '); + insert into takes values('57083', '527', '1', 'Fall', 2004, 'C '); + insert into takes values('67407', '401', '1', 'Fall', 2003, 'C-'); + insert into takes values('74016', '169', '2', 'Fall', 2002, 'C+'); + insert into takes values('71426', '486', '1', 'Fall', 2009, 'C+'); + insert into takes values('18234', '237', '1', 'Spring', 2008, 'A '); + insert into takes values('38676', '974', '1', 'Fall', 2003, 'B '); + insert into takes values('39310', '457', '1', 'Spring', 2001, 'C-'); + insert into takes values('41261', '270', '1', 'Spring', 2010, 'A+'); + insert into takes values('71628', '334', '1', 'Fall', 2009, 'B+'); + insert into takes values('32772', '200', '2', 'Fall', 2002, 'B+'); + insert into takes values('11966', '493', '1', 'Spring', 2010, 'B '); + insert into takes values('93039', '158', '2', 'Spring', 2008, 'A '); + insert into takes values('26102', '696', '1', 'Spring', 2002, 'B '); + insert into takes values('78454', '468', '1', 'Fall', 2005, 'B '); + insert into takes values('64121', '960', '1', 'Fall', 2009, 'A-'); + insert into takes values('45200', '362', '3', 'Spring', 2008, 'A-'); + insert into takes values('70235', '748', '1', 'Fall', 2003, 'B '); + insert into takes values('38476', '604', '1', 'Spring', 2009, 'C '); + insert into takes values('2178', '349', '1', 'Spring', 2008, 'C+'); + insert into takes values('50702', '352', '1', 'Spring', 2006, 'C+'); + insert into takes values('38548', '735', '2', 'Spring', 2010, 'C+'); + insert into takes values('89132', '867', '2', 'Fall', 2010, 'C '); + insert into takes values('95029', '959', '1', 'Fall', 2006, 'C-'); + insert into takes values('77021', '169', '1', 'Spring', 2007, 'B+'); + insert into takes values('9360', '867', '1', 'Fall', 2006, 'A '); + insert into takes values('26473', '875', '1', 'Spring', 2005, 'B '); + insert into takes values('95027', '334', '1', 'Fall', 2009, 'A '); + insert into takes values('792', '362', '2', 'Fall', 2006, 'C+'); + insert into takes values('32130', '949', '1', 'Fall', 2007, 'A '); + insert into takes values('22618', '802', '1', 'Spring', 2003, 'C+'); + insert into takes values('60406', '843', '1', 'Fall', 2010, 'C+'); + insert into takes values('52872', '362', '3', 'Spring', 2008, 'B '); + insert into takes values('92332', '694', '1', 'Fall', 2002, 'C '); + insert into takes values('88472', '105', '2', 'Fall', 2002, 'A-'); + insert into takes values('67660', '352', '1', 'Spring', 2006, 'A+'); + insert into takes values('91992', '270', '1', 'Spring', 2010, 'C+'); + insert into takes values('24932', '642', '1', 'Fall', 2004, 'C-'); + insert into takes values('59290', '366', '1', 'Fall', 2005, 'B '); + insert into takes values('90009', '747', '1', 'Spring', 2004, 'B+'); + insert into takes values('1968', '401', '1', 'Fall', 2003, 'B+'); + insert into takes values('65688', '345', '1', 'Spring', 2008, 'C-'); + insert into takes values('74163', '476', '1', 'Fall', 2010, 'A '); + insert into takes values('27804', '408', '1', 'Spring', 2007, 'A+'); + insert into takes values('5943', '426', '1', 'Spring', 2006, 'A '); + insert into takes values('92949', '415', '1', 'Fall', 2010, 'A '); + insert into takes values('94324', '338', '1', 'Spring', 2007, 'B-'); + insert into takes values('50873', '561', '1', 'Fall', 2006, 'C-'); + insert into takes values('48471', '527', '1', 'Fall', 2004, 'C+'); + insert into takes values('98315', '843', '1', 'Fall', 2010, 'A '); + insert into takes values('78787', '200', '1', 'Spring', 2007, 'B+'); + insert into takes values('85575', '581', '1', 'Spring', 2005, 'B+'); + insert into takes values('15726', '362', '2', 'Fall', 2006, 'B+'); + insert into takes values('69850', '349', '1', 'Spring', 2008, 'C '); + insert into takes values('92776', '679', '1', 'Spring', 2010, 'B '); + insert into takes values('46106', '960', '2', 'Fall', 2006, 'B-'); + insert into takes values('41674', '352', '1', 'Spring', 2006, 'B+'); + insert into takes values('19824', '376', '1', 'Fall', 2006, 'B+'); + insert into takes values('20540', '158', '1', 'Fall', 2008, 'A-'); + insert into takes values('71631', '974', '1', 'Fall', 2003, 'B '); + insert into takes values('4383', '735', '2', 'Spring', 2010, 'B-'); + insert into takes values('7970', '158', '2', 'Spring', 2008, 'A+'); + insert into takes values('47265', '239', '1', 'Fall', 2006, 'A '); + insert into takes values('25611', '443', '1', 'Spring', 2010, 'B '); + insert into takes values('98315', '169', '2', 'Fall', 2002, 'A+'); + insert into takes values('43211', '599', '1', 'Spring', 2003, 'C+'); + insert into takes values('40937', '445', '1', 'Spring', 2001, 'A '); + insert into takes values('97228', '527', '1', 'Fall', 2004, 'A+'); + insert into takes values('31476', '626', '1', 'Fall', 2006, 'B-'); + insert into takes values('14032', '808', '1', 'Fall', 2003, 'A '); + insert into takes values('16057', '791', '1', 'Spring', 2006, 'C+'); + insert into takes values('67024', '237', '1', 'Spring', 2008, 'A-'); + insert into takes values('49982', '408', '1', 'Spring', 2007, 'A-'); + insert into takes values('94815', '991', '1', 'Spring', 2008, 'C '); + insert into takes values('23457', '237', '2', 'Fall', 2009, 'A+'); + insert into takes values('70807', '747', '1', 'Spring', 2004, 'C+'); + insert into takes values('99760', '527', '1', 'Fall', 2004, 'A '); + insert into takes values('65714', '748', '1', 'Fall', 2003, 'B-'); + insert into takes values('90663', '319', '1', 'Spring', 2003, 'A '); + insert into takes values('13753', '629', '1', 'Spring', 2003, 'A+'); + insert into takes values('26730', '571', '1', 'Spring', 2004, 'B '); + insert into takes values('39046', '200', '1', 'Spring', 2007, 'C '); + insert into takes values('86802', '274', '1', 'Fall', 2002, 'B-'); + insert into takes values('41818', '875', '1', 'Spring', 2005, 'C+'); + insert into takes values('8347', '319', '1', 'Spring', 2003, 'A-'); + insert into takes values('80821', '415', '1', 'Fall', 2010, 'C+'); + insert into takes values('94766', '960', '2', 'Fall', 2006, 'A '); + insert into takes values('19582', '426', '1', 'Spring', 2006, 'C '); + insert into takes values('4034', '345', '1', 'Spring', 2008, 'B-'); + insert into takes values('38902', '793', '1', 'Spring', 2002, 'C-'); + insert into takes values('9514', '642', '1', 'Fall', 2004, 'A-'); + insert into takes values('71387', '793', '1', 'Spring', 2002, 'A-'); + insert into takes values('53424', '105', '2', 'Fall', 2002, 'C+'); + insert into takes values('36494', '237', '2', 'Fall', 2009, 'A-'); + insert into takes values('64196', '258', '1', 'Fall', 2007, 'B+'); + insert into takes values('4004', '962', '1', 'Spring', 2008, 'B-'); + insert into takes values('43130', '852', '1', 'Spring', 2008, 'B-'); + insert into takes values('26494', '864', '1', 'Spring', 2006, 'B '); + insert into takes values('16753', '843', '1', 'Fall', 2010, 'C-'); + insert into takes values('26473', '105', '1', 'Fall', 2009, 'B '); + insert into takes values('47001', '400', '1', 'Spring', 2007, 'B+'); + insert into takes values('18234', '793', '1', 'Spring', 2002, 'B '); + insert into takes values('7123', '192', '1', 'Fall', 2002, 'C+'); + insert into takes values('7020', '949', '1', 'Fall', 2007, 'C+'); + insert into takes values('29645', '400', '2', 'Fall', 2003, 'A '); + insert into takes values('19536', '604', '1', 'Spring', 2009, 'A '); + insert into takes values('74070', '808', '1', 'Fall', 2003, 'C+'); + insert into takes values('13211', '735', '1', 'Spring', 2003, 'A-'); + insert into takes values('30341', '795', '1', 'Spring', 2004, 'A+'); + insert into takes values('95859', '200', '2', 'Fall', 2002, 'A '); + insert into takes values('62832', '612', '1', 'Fall', 2007, 'B+'); + insert into takes values('72768', '604', '1', 'Spring', 2009, 'A-'); + insert into takes values('3493', '631', '1', 'Spring', 2007, 'A '); + insert into takes values('11441', '735', '1', 'Spring', 2003, 'A-'); + insert into takes values('45680', '747', '1', 'Spring', 2004, 'A '); + insert into takes values('85680', '802', '1', 'Spring', 2003, 'B-'); + insert into takes values('50658', '304', '1', 'Fall', 2009, 'B '); + insert into takes values('8483', '457', '1', 'Spring', 2001, 'B-'); + insert into takes values('71944', '105', '2', 'Fall', 2002, 'C '); + insert into takes values('93004', '338', '2', 'Spring', 2006, 'A '); + insert into takes values('15430', '843', '1', 'Fall', 2010, 'C '); + insert into takes values('16467', '362', '2', 'Fall', 2006, 'B-'); + insert into takes values('81566', '748', '1', 'Fall', 2003, 'C-'); + insert into takes values('15083', '527', '1', 'Fall', 2004, 'C '); + insert into takes values('35257', '604', '1', 'Spring', 2009, 'A+'); + insert into takes values('37818', '192', '1', 'Fall', 2002, 'B-'); + insert into takes values('37038', '704', '1', 'Spring', 2008, 'A '); + insert into takes values('21774', '735', '2', 'Spring', 2010, 'A-'); + insert into takes values('40558', '974', '1', 'Fall', 2003, 'C-'); + insert into takes values('66281', '338', '2', 'Spring', 2006, 'C '); + insert into takes values('69628', '748', '1', 'Fall', 2003, 'B-'); + insert into takes values('27956', '599', '1', 'Spring', 2003, 'A-'); + insert into takes values('14484', '642', '1', 'Fall', 2004, 'B '); + insert into takes values('90448', '237', '1', 'Spring', 2008, 'C-'); + insert into takes values('37101', '991', '1', 'Spring', 2008, 'C-'); + insert into takes values('45817', '105', '2', 'Fall', 2002, 'A-'); + insert into takes values('91616', '704', '1', 'Spring', 2008, 'B-'); + insert into takes values('35', '702', '1', 'Spring', 2001, 'A-'); + insert into takes values('83871', '808', '1', 'Fall', 2003, 'C '); + insert into takes values('81884', '400', '2', 'Fall', 2003, 'A '); + insert into takes values('97590', '461', '1', 'Fall', 2002, 'C+'); + insert into takes values('6673', '960', '1', 'Fall', 2009, 'A+'); + insert into takes values('3493', '493', '1', 'Spring', 2010, 'B+'); + insert into takes values('64731', '843', '1', 'Fall', 2010, 'C+'); + insert into takes values('75231', '270', '1', 'Spring', 2010, 'A-'); + insert into takes values('48861', '974', '1', 'Fall', 2003, 'B-'); + insert into takes values('45494', '338', '2', 'Spring', 2006, 'C '); + insert into takes values('85809', '338', '1', 'Spring', 2007, 'C+'); + insert into takes values('75928', '864', '1', 'Spring', 2006, 'B-'); + insert into takes values('65208', '581', '1', 'Spring', 2005, 'A+'); + insert into takes values('77234', '795', '1', 'Spring', 2004, 'B+'); + insert into takes values('53424', '696', '1', 'Spring', 2002, 'C-'); + insert into takes values('72501', '867', '1', 'Fall', 2006, 'C-'); + insert into takes values('76743', '704', '1', 'Spring', 2008, 'C '); + insert into takes values('67024', '642', '1', 'Fall', 2004, 'B '); + insert into takes values('1367', '545', '1', 'Fall', 2001, 'B+'); + insert into takes values('61127', '974', '1', 'Fall', 2003, 'B-'); + insert into takes values('85754', '105', '1', 'Fall', 2009, 'B+'); + insert into takes values('98388', '959', '1', 'Fall', 2006, 'B-'); + insert into takes values('14628', '200', '1', 'Spring', 2007, 'B+'); + insert into takes values('27044', '991', '1', 'Spring', 2008, 'C '); + insert into takes values('6990', '704', '1', 'Spring', 2008, 'B '); + insert into takes values('95852', '893', '1', 'Fall', 2007, 'A-'); + insert into takes values('50658', '692', '1', 'Spring', 2010, 'C '); + insert into takes values('78572', '237', '1', 'Spring', 2008, 'C+'); + insert into takes values('60249', '704', '1', 'Spring', 2008, 'A '); + insert into takes values('87048', '486', '1', 'Fall', 2009, 'B '); + insert into takes values('74974', '875', '1', 'Spring', 2005, 'A+'); + insert into takes values('16907', '735', '1', 'Spring', 2003, 'B+'); + insert into takes values('32369', '338', '1', 'Spring', 2007, 'B+'); + insert into takes values('23992', '561', '1', 'Fall', 2006, 'C+'); + insert into takes values('39241', '527', '1', 'Fall', 2004, 'B '); + insert into takes values('37818', '962', '1', 'Spring', 2008, 'A '); + insert into takes values('58300', '401', '1', 'Fall', 2003, 'B-'); + insert into takes values('54875', '482', '1', 'Fall', 2005, 'B-'); + insert into takes values('18752', '802', '1', 'Spring', 2003, 'B '); + insert into takes values('61402', '362', '2', 'Fall', 2006, 'C+'); + insert into takes values('48778', '426', '1', 'Spring', 2006, 'B-'); + insert into takes values('65438', '169', '2', 'Fall', 2002, 'C-'); + insert into takes values('52187', '747', '1', 'Spring', 2004, 'A+'); + insert into takes values('49759', '760', '1', 'Spring', 2004, 'C-'); + insert into takes values('85234', '476', '1', 'Fall', 2010, 'B-'); + insert into takes values('61920', '760', '1', 'Spring', 2004, 'B+'); + insert into takes values('53185', '496', '1', 'Fall', 2001, 'B '); + insert into takes values('94990', '571', '1', 'Spring', 2004, 'A+'); + insert into takes values('25256', '704', '1', 'Spring', 2008, 'A+'); + insert into takes values('4860', '612', '1', 'Fall', 2007, 'B+'); + insert into takes values('93986', '581', '1', 'Spring', 2005, 'C+'); + insert into takes values('87785', '496', '1', 'Fall', 2001, 'B '); + insert into takes values('85356', '274', '1', 'Fall', 2002, 'A+'); + insert into takes values('64039', '735', '2', 'Spring', 2010, 'B+'); + insert into takes values('66469', '105', '2', 'Fall', 2002, 'A+'); + insert into takes values('96772', '864', '1', 'Spring', 2006, 'C-'); + insert into takes values('27002', '426', '1', 'Spring', 2006, 'A-'); + insert into takes values('93125', '527', '1', 'Fall', 2004, 'C '); + insert into takes values('70918', '274', '1', 'Fall', 2002, 'B+'); + insert into takes values('98388', '493', '1', 'Spring', 2010, 'C+'); + insert into takes values('71904', '408', '2', 'Spring', 2003, 'B+'); + insert into takes values('37759', '270', '1', 'Spring', 2010, 'B-'); + insert into takes values('544', '421', '1', 'Fall', 2004, 'B+'); + insert into takes values('88358', '972', '1', 'Spring', 2009, 'A+'); + insert into takes values('96741', '496', '1', 'Fall', 2001, 'C-'); + insert into takes values('66763', '408', '1', 'Spring', 2007, 'A '); + insert into takes values('39892', '603', '1', 'Fall', 2003, 'C '); + insert into takes values('49982', '158', '1', 'Fall', 2008, 'C '); + insert into takes values('58465', '468', '2', 'Fall', 2007, 'A+'); + insert into takes values('23439', '105', '2', 'Fall', 2002, 'C '); + insert into takes values('59290', '626', '1', 'Fall', 2006, 'C '); + insert into takes values('65703', '581', '1', 'Spring', 2005, 'B '); + insert into takes values('16523', '927', '1', 'Fall', 2002, 'C-'); + insert into takes values('43348', '400', '2', 'Fall', 2003, 'C '); + insert into takes values('66212', '105', '2', 'Fall', 2002, 'C '); + insert into takes values('96193', '791', '1', 'Spring', 2006, 'B+'); + insert into takes values('15074', '304', '1', 'Fall', 2009, 'C-'); + insert into takes values('62429', '735', '1', 'Spring', 2003, 'B-'); + insert into takes values('31266', '338', '2', 'Spring', 2006, 'A '); + insert into takes values('17944', '489', '1', 'Fall', 2007, 'C+'); + insert into takes values('78552', '169', '1', 'Spring', 2007, 'B-'); + insert into takes values('49873', '960', '1', 'Fall', 2009, 'A+'); + insert into takes values('97573', '345', '1', 'Spring', 2008, 'B+'); + insert into takes values('5243', '334', '1', 'Fall', 2009, 'A-'); + insert into takes values('39520', '239', '1', 'Fall', 2006, 'B '); + insert into takes values('99719', '629', '1', 'Spring', 2003, 'C+'); + insert into takes values('89571', '415', '1', 'Fall', 2010, 'A-'); + insert into takes values('62749', '486', '1', 'Fall', 2009, 'A '); + insert into takes values('18234', '795', '1', 'Spring', 2004, 'B-'); + insert into takes values('39876', '345', '1', 'Spring', 2008, 'C+'); + insert into takes values('35588', '747', '1', 'Spring', 2004, 'C+'); + insert into takes values('19582', '696', '1', 'Spring', 2002, 'C-'); + insert into takes values('46066', '304', '1', 'Fall', 2009, 'A-'); + insert into takes values('83003', '468', '2', 'Fall', 2007, 'C-'); + insert into takes values('75299', '679', '1', 'Spring', 2010, 'A-'); + insert into takes values('87784', '408', '2', 'Spring', 2003, 'C '); + insert into takes values('91788', '603', '1', 'Fall', 2003, 'A+'); + insert into takes values('81876', '239', '1', 'Fall', 2006, 'C+'); + insert into takes values('56057', '679', '1', 'Spring', 2010, 'A+'); + insert into takes values('2133', '694', '1', 'Fall', 2002, 'A '); + insert into takes values('163', '581', '1', 'Spring', 2005, 'A+'); + insert into takes values('41091', '169', '1', 'Spring', 2007, 'A-'); + insert into takes values('64593', '694', '1', 'Fall', 2002, 'C-'); + insert into takes values('37038', '242', '1', 'Fall', 2009, 'B+'); + insert into takes values('64067', '169', '2', 'Fall', 2002, 'A+'); + insert into takes values('41988', '482', '1', 'Fall', 2005, 'A+'); + insert into takes values('16849', '972', '1', 'Spring', 2009, 'C '); + insert into takes values('84865', '603', '1', 'Fall', 2003, 'B-'); + insert into takes values('81884', '631', '1', 'Spring', 2007, 'A+'); + insert into takes values('82591', '445', '1', 'Spring', 2001, 'B-'); + insert into takes values('74016', '599', '1', 'Spring', 2003, 'C-'); + insert into takes values('288', '105', '1', 'Fall', 2009, 'A+'); + insert into takes values('5005', '258', '1', 'Fall', 2007, 'A+'); + insert into takes values('86075', '482', '1', 'Fall', 2005, 'B '); + insert into takes values('29665', '493', '1', 'Spring', 2010, 'C-'); + insert into takes values('96206', '808', '1', 'Fall', 2003, 'A+'); + insert into takes values('78116', '612', '1', 'Fall', 2007, 'C+'); + insert into takes values('35905', '242', '1', 'Fall', 2009, 'B+'); + insert into takes values('81028', '591', '1', 'Spring', 2005, 'A+'); + insert into takes values('67024', '694', '1', 'Fall', 2002, 'C-'); + insert into takes values('6712', '105', '2', 'Fall', 2002, 'B '); + insert into takes values('63090', '334', '1', 'Fall', 2009, 'B-'); + insert into takes values('81538', '105', '1', 'Fall', 2009, 'A+'); + insert into takes values('17911', '349', '1', 'Spring', 2008, 'A-'); + insert into takes values('51549', '599', '1', 'Spring', 2003, 'C '); + insert into takes values('76246', '443', '1', 'Spring', 2010, 'A '); + insert into takes values('41675', '242', '1', 'Fall', 2009, 'C+'); + insert into takes values('46725', '258', '1', 'Fall', 2007, 'B+'); + insert into takes values('77729', '468', '2', 'Fall', 2007, 'A+'); + insert into takes values('29959', '893', '1', 'Fall', 2007, 'A-'); + insert into takes values('38288', '200', '1', 'Spring', 2007, 'A '); + insert into takes values('88577', '457', '1', 'Spring', 2001, 'B-'); + insert into takes values('98690', '704', '1', 'Spring', 2008, 'A+'); + insert into takes values('8986', '258', '1', 'Fall', 2007, 'A-'); + insert into takes values('41596', '258', '1', 'Fall', 2007, 'A '); + insert into takes values('20814', '457', '1', 'Spring', 2001, 'B+'); + insert into takes values('64140', '704', '1', 'Spring', 2008, 'C-'); + insert into takes values('24932', '445', '1', 'Spring', 2001, 'B '); + insert into takes values('76911', '408', '1', 'Spring', 2007, 'B+'); + insert into takes values('14554', '158', '1', 'Fall', 2008, 'C '); + insert into takes values('83511', '443', '1', 'Spring', 2010, 'C-'); + insert into takes values('28409', '679', '1', 'Spring', 2010, 'A+'); + insert into takes values('52471', '561', '1', 'Fall', 2006, 'A+'); + insert into takes values('63449', '694', '1', 'Fall', 2002, 'C+'); + insert into takes values('88553', '105', '2', 'Fall', 2002, 'C-'); + insert into takes values('544', '345', '1', 'Spring', 2008, 'A '); + insert into takes values('32954', '105', '2', 'Fall', 2002, 'B+'); + insert into takes values('57190', '445', '1', 'Spring', 2001, 'B-'); + insert into takes values('11201', '960', '1', 'Fall', 2009, 'A '); + insert into takes values('18675', '974', '1', 'Fall', 2003, 'A+'); + insert into takes values('15024', '239', '1', 'Fall', 2006, 'B+'); + insert into takes values('45083', '443', '2', 'Spring', 2002, 'C-'); + insert into takes values('16523', '366', '1', 'Fall', 2005, 'A '); + insert into takes values('69758', '629', '1', 'Spring', 2003, 'B+'); + insert into takes values('99710', '352', '1', 'Spring', 2006, 'C-'); + insert into takes values('38545', '696', '1', 'Spring', 2002, 'C-'); + insert into takes values('87784', '105', '2', 'Fall', 2002, 'B+'); + insert into takes values('49684', '105', '1', 'Fall', 2009, 'A-'); + insert into takes values('22050', '696', '1', 'Spring', 2002, 'C+'); + insert into takes values('31137', '468', '1', 'Fall', 2005, 'B '); + insert into takes values('30397', '702', '1', 'Spring', 2001, 'A-'); + insert into takes values('69783', '338', '1', 'Spring', 2007, 'B '); + insert into takes values('8347', '237', '2', 'Fall', 2009, 'C+'); + insert into takes values('53728', '192', '1', 'Fall', 2002, 'B '); + insert into takes values('7287', '692', '1', 'Spring', 2010, 'C+'); + insert into takes values('34404', '795', '1', 'Spring', 2004, 'C+'); + insert into takes values('60688', '603', '1', 'Fall', 2003, 'C '); + insert into takes values('72528', '793', '1', 'Spring', 2002, 'B-'); + insert into takes values('78469', '334', '1', 'Fall', 2009, 'B-'); + insert into takes values('37809', '559', '1', 'Fall', 2002, 'C-'); + insert into takes values('41774', '974', '1', 'Fall', 2003, 'A-'); + insert into takes values('49982', '270', '1', 'Spring', 2010, 'B '); + insert into takes values('84239', '867', '2', 'Fall', 2010, 'B '); + insert into takes values('66229', '545', '1', 'Fall', 2001, 'A-'); + insert into takes values('99754', '461', '1', 'Fall', 2002, 'A+'); + insert into takes values('51817', '468', '2', 'Fall', 2007, 'B-'); + insert into takes values('50873', '962', '1', 'Spring', 2008, 'C+'); + insert into takes values('65400', '808', '1', 'Fall', 2003, 'C+'); + insert into takes values('60267', '599', '1', 'Spring', 2003, 'C-'); + insert into takes values('98120', '349', '1', 'Spring', 2008, 'A+'); + insert into takes values('12236', '561', '1', 'Fall', 2006, 'C+'); + insert into takes values('82646', '629', '1', 'Spring', 2003, 'A-'); + insert into takes values('92693', '415', '1', 'Fall', 2010, 'C-'); + insert into takes values('97355', '270', '1', 'Spring', 2010, 'B '); + insert into takes values('31341', '482', '1', 'Fall', 2005, 'B+'); + insert into takes values('10267', '237', '2', 'Fall', 2009, 'A+'); + insert into takes values('5703', '274', '1', 'Fall', 2002, 'C-'); + insert into takes values('33206', '974', '1', 'Fall', 2003, 'A+'); + insert into takes values('35685', '626', '1', 'Fall', 2006, 'C '); + insert into takes values('21552', '158', '2', 'Spring', 2008, 'C '); + insert into takes values('41938', '867', '1', 'Fall', 2006, 'B-'); + insert into takes values('94178', '852', '1', 'Spring', 2008, 'C-'); + insert into takes values('46725', '974', '1', 'Fall', 2003, 'B-'); + insert into takes values('70389', '362', '1', 'Fall', 2005, 'A+'); + insert into takes values('97658', '629', '1', 'Spring', 2003, 'A+'); + insert into takes values('10527', '362', '3', 'Spring', 2008, 'C '); + insert into takes values('88045', '445', '1', 'Spring', 2001, 'C+'); + insert into takes values('10727', '468', '1', 'Fall', 2005, 'A-'); + insert into takes values('22467', '545', '1', 'Fall', 2001, 'C '); + insert into takes values('68070', '169', '1', 'Spring', 2007, 'B '); + insert into takes values('25187', '496', '1', 'Fall', 2001, 'A '); + insert into takes values('67660', '443', '1', 'Spring', 2010, 'A+'); + insert into takes values('49618', '304', '1', 'Fall', 2009, 'C '); + insert into takes values('13028', '169', '2', 'Fall', 2002, 'C '); + insert into takes values('69952', '527', '1', 'Fall', 2004, 'A '); + insert into takes values('11055', '445', '1', 'Spring', 2001, 'A+'); + insert into takes values('81258', '400', '2', 'Fall', 2003, 'A '); + insert into takes values('83573', '304', '1', 'Fall', 2009, 'B-'); + insert into takes values('99250', '692', '1', 'Spring', 2010, 'B-'); + insert into takes values('84727', '461', '1', 'Fall', 2002, 'A+'); + insert into takes values('87624', '493', '1', 'Spring', 2010, 'A-'); + insert into takes values('55170', '974', '1', 'Fall', 2003, 'A '); + insert into takes values('85211', '408', '2', 'Spring', 2003, 'B+'); + insert into takes values('8912', '258', '1', 'Fall', 2007, 'B+'); + insert into takes values('82688', '631', '1', 'Spring', 2007, 'A+'); + insert into takes values('71628', '949', '1', 'Fall', 2007, 'B '); + insert into takes values('41261', '137', '1', 'Spring', 2002, 'C+'); + insert into takes values('46981', '642', '1', 'Fall', 2004, 'A+'); + insert into takes values('41450', '319', '1', 'Spring', 2003, 'A+'); + insert into takes values('5250', '626', '1', 'Fall', 2006, 'A+'); + insert into takes values('57511', '747', '1', 'Spring', 2004, 'C '); + insert into takes values('18367', '991', '1', 'Spring', 2008, 'B '); + insert into takes values('98726', '629', '1', 'Spring', 2003, 'A+'); + insert into takes values('28252', '415', '1', 'Fall', 2010, 'B '); + insert into takes values('15487', '169', '1', 'Spring', 2007, 'B '); + insert into takes values('36303', '242', '1', 'Fall', 2009, 'A '); + insert into takes values('46928', '581', '1', 'Spring', 2005, 'A+'); + insert into takes values('78892', '313', '1', 'Fall', 2010, 'B-'); + insert into takes values('93039', '791', '1', 'Spring', 2006, 'C '); + insert into takes values('15487', '352', '1', 'Spring', 2006, 'C+'); + insert into takes values('75596', '362', '3', 'Spring', 2008, 'A-'); + insert into takes values('74639', '158', '1', 'Fall', 2008, 'B '); + insert into takes values('52057', '304', '1', 'Fall', 2009, 'A-'); + insert into takes values('74840', '200', '1', 'Spring', 2007, 'C '); + insert into takes values('62784', '461', '1', 'Fall', 2002, 'C+'); + insert into takes values('53047', '612', '1', 'Fall', 2007, 'C+'); + insert into takes values('58465', '239', '1', 'Fall', 2006, 'C '); + insert into takes values('40371', '545', '1', 'Fall', 2001, 'A+'); + insert into takes values('97629', '960', '2', 'Fall', 2006, 'B+'); + insert into takes values('73268', '192', '1', 'Fall', 2002, 'B '); + insert into takes values('92040', '376', '1', 'Fall', 2006, 'B '); + insert into takes values('16297', '362', '3', 'Spring', 2008, 'A-'); + insert into takes values('56058', '591', '1', 'Spring', 2005, 'B '); + insert into takes values('30943', '334', '1', 'Fall', 2009, 'B '); + insert into takes values('25468', '527', '1', 'Fall', 2004, 'C+'); + insert into takes values('20378', '696', '1', 'Spring', 2002, 'B-'); + insert into takes values('73492', '443', '2', 'Spring', 2002, 'B-'); + insert into takes values('55915', '748', '1', 'Fall', 2003, 'C-'); + insert into takes values('42991', '642', '1', 'Fall', 2004, 'B '); + insert into takes values('17133', '875', '1', 'Spring', 2005, 'C-'); + insert into takes values('19582', '408', '1', 'Spring', 2007, 'B+'); + insert into takes values('3833', '875', '1', 'Spring', 2005, 'B '); + insert into takes values('1087', '893', '1', 'Fall', 2007, 'B '); + insert into takes values('88358', '959', '1', 'Fall', 2006, 'C '); + insert into takes values('33817', '591', '1', 'Spring', 2005, 'A '); + insert into takes values('59553', '704', '1', 'Spring', 2008, 'A+'); + insert into takes values('32369', '642', '1', 'Fall', 2004, 'B-'); + insert into takes values('48861', '527', '1', 'Fall', 2004, 'A-'); + insert into takes values('5463', '493', '1', 'Spring', 2010, 'C+'); + insert into takes values('15030', '443', '2', 'Spring', 2002, 'A '); + insert into takes values('29192', '864', '1', 'Spring', 2006, 'B+'); + insert into takes values('82591', '169', '2', 'Fall', 2002, 'C-'); + insert into takes values('71631', '338', '1', 'Spring', 2007, 'A-'); + insert into takes values('50977', '461', '1', 'Fall', 2002, 'B '); + insert into takes values('64820', '545', '1', 'Fall', 2001, 'C-'); + insert into takes values('99451', '893', '1', 'Fall', 2007, 'C-'); + insert into takes values('52656', '239', '1', 'Fall', 2006, 'B-'); + insert into takes values('12666', '527', '1', 'Fall', 2004, 'A+'); + insert into takes values('97868', '604', '1', 'Spring', 2009, 'A-'); + insert into takes values('107', '362', '2', 'Fall', 2006, 'B '); + insert into takes values('4435', '692', '1', 'Spring', 2010, 'A-'); + insert into takes values('86753', '192', '1', 'Fall', 2002, 'C+'); + insert into takes values('21009', '457', '1', 'Spring', 2001, 'B-'); + insert into takes values('31993', '482', '1', 'Fall', 2005, 'A+'); + insert into takes values('16849', '258', '1', 'Fall', 2007, 'B+'); + insert into takes values('82970', '949', '1', 'Fall', 2007, 'A+'); + insert into takes values('90353', '802', '1', 'Spring', 2003, 'A '); + insert into takes values('85746', '239', '1', 'Fall', 2006, 'A+'); + insert into takes values('94324', '338', '2', 'Spring', 2006, 'C '); + insert into takes values('65901', '960', '2', 'Fall', 2006, 'C+'); + insert into takes values('41818', '735', '1', 'Spring', 2003, 'A-'); + insert into takes values('61364', '274', '1', 'Fall', 2002, 'B '); + insert into takes values('61444', '489', '1', 'Fall', 2007, 'A+'); + insert into takes values('89188', '852', '1', 'Spring', 2008, 'A-'); + insert into takes values('50977', '482', '1', 'Fall', 2005, 'C+'); + insert into takes values('39394', '496', '1', 'Fall', 2001, 'A-'); + insert into takes values('30341', '468', '2', 'Fall', 2007, 'C+'); + insert into takes values('77000', '561', '1', 'Fall', 2006, 'A+'); + insert into takes values('41832', '959', '1', 'Fall', 2006, 'B+'); + insert into takes values('33837', '105', '1', 'Fall', 2009, 'A+'); + insert into takes values('99289', '443', '2', 'Spring', 2002, 'A-'); + insert into takes values('97679', '376', '1', 'Fall', 2006, 'A '); + insert into takes values('75596', '527', '1', 'Fall', 2004, 'B+'); + insert into takes values('67051', '875', '1', 'Spring', 2005, 'A-'); + insert into takes values('58634', '457', '1', 'Spring', 2001, 'C-'); + insert into takes values('36791', '334', '1', 'Fall', 2009, 'A-'); + insert into takes values('92693', '867', '1', 'Fall', 2006, 'B-'); + insert into takes values('62795', '791', '1', 'Spring', 2006, 'A+'); + insert into takes values('64013', '545', '1', 'Fall', 2001, 'B '); + insert into takes values('81245', '169', '1', 'Spring', 2007, 'B+'); + insert into takes values('336', '864', '1', 'Spring', 2006, 'B+'); + insert into takes values('41299', '304', '1', 'Fall', 2009, 'B '); + insert into takes values('74473', '629', '1', 'Spring', 2003, 'B+'); + insert into takes values('43032', '468', '1', 'Fall', 2005, 'A '); + insert into takes values('35293', '802', '1', 'Spring', 2003, 'A+'); + insert into takes values('24746', '960', '2', 'Fall', 2006, 'A-'); + insert into takes values('81396', '366', '1', 'Fall', 2005, 'B-'); + insert into takes values('78481', '864', '1', 'Spring', 2006, 'C+'); + insert into takes values('96911', '493', '1', 'Spring', 2010, 'B '); + insert into takes values('77218', '496', '1', 'Fall', 2001, 'A-'); + insert into takes values('30177', '489', '1', 'Fall', 2007, 'C-'); + insert into takes values('19638', '972', '1', 'Spring', 2009, 'C '); + insert into takes values('64067', '748', '1', 'Fall', 2003, 'B-'); + insert into takes values('78922', '362', '3', 'Spring', 2008, 'B+'); + insert into takes values('99660', '626', '1', 'Fall', 2006, 'A-'); + insert into takes values('36494', '843', '1', 'Fall', 2010, 'C '); + insert into takes values('81396', '581', '1', 'Spring', 2005, 'C '); + insert into takes values('17665', '604', '1', 'Spring', 2009, 'C+'); + insert into takes values('42843', '867', '2', 'Fall', 2010, 'A+'); + insert into takes values('68010', '400', '2', 'Fall', 2003, 'C-'); + insert into takes values('13495', '702', '1', 'Spring', 2001, 'C-'); + insert into takes values('23525', '443', '1', 'Spring', 2010, 'B+'); + insert into takes values('18859', '338', '2', 'Spring', 2006, 'A-'); + insert into takes values('98359', '319', '1', 'Spring', 2003, 'B-'); + insert into takes values('80799', '748', '1', 'Fall', 2003, 'B+'); + insert into takes values('85614', '795', '1', 'Spring', 2004, 'B-'); + insert into takes values('2423', '443', '2', 'Spring', 2002, 'B-'); + insert into takes values('69952', '304', '1', 'Fall', 2009, 'A '); + insert into takes values('65433', '443', '2', 'Spring', 2002, 'A '); + insert into takes values('26730', '237', '1', 'Spring', 2008, 'C+'); + insert into takes values('68278', '362', '3', 'Spring', 2008, 'B-'); + insert into takes values('30397', '468', '2', 'Fall', 2007, 'A+'); + insert into takes values('57780', '476', '1', 'Fall', 2010, 'B+'); + insert into takes values('1836', '489', '1', 'Fall', 2007, 'A+'); + insert into takes values('96203', '400', '1', 'Spring', 2007, 'C '); + insert into takes values('95046', '802', '1', 'Spring', 2003, 'C '); + insert into takes values('15613', '631', '1', 'Spring', 2007, 'C-'); + insert into takes values('79469', '237', '1', 'Spring', 2008, 'B '); + insert into takes values('34404', '581', '1', 'Spring', 2005, 'B-'); + insert into takes values('987', '867', '1', 'Fall', 2006, 'A-'); + insert into takes values('17192', '735', '2', 'Spring', 2010, 'A-'); + insert into takes values('57238', '493', '1', 'Spring', 2010, 'B-'); + insert into takes values('65676', '747', '1', 'Spring', 2004, 'C-'); + insert into takes values('10663', '362', '1', 'Fall', 2005, 'A-'); + insert into takes values('32464', '629', '1', 'Spring', 2003, 'C-'); + insert into takes values('75252', '313', '1', 'Fall', 2010, 'B-'); + insert into takes values('35905', '791', '1', 'Spring', 2006, 'B '); + insert into takes values('6729', '376', '1', 'Fall', 2006, 'B+'); + insert into takes values('15074', '258', '1', 'Fall', 2007, 'C-'); + insert into takes values('51817', '169', '1', 'Spring', 2007, 'A-'); + insert into takes values('43912', '349', '1', 'Spring', 2008, 'B+'); + insert into takes values('95205', '702', '1', 'Spring', 2001, 'A+'); + insert into takes values('90779', '893', '1', 'Fall', 2007, 'A-'); + insert into takes values('31560', '401', '1', 'Fall', 2003, 'A+'); + insert into takes values('64164', '748', '1', 'Fall', 2003, 'A '); + insert into takes values('96772', '461', '1', 'Fall', 2002, 'A-'); + insert into takes values('5961', '527', '1', 'Fall', 2004, 'B-'); + insert into takes values('78469', '748', '1', 'Fall', 2003, 'B+'); + insert into takes values('56078', '629', '1', 'Spring', 2003, 'C+'); + insert into takes values('85887', '362', '1', 'Fall', 2005, 'C-'); + insert into takes values('86934', '242', '1', 'Fall', 2009, 'B+'); + insert into takes values('76250', '867', '2', 'Fall', 2010, 'C '); + insert into takes values('74473', '702', '1', 'Spring', 2001, 'B-'); + insert into takes values('30896', '875', '1', 'Spring', 2005, 'B+'); + insert into takes values('25046', '239', '1', 'Fall', 2006, 'B+'); + insert into takes values('90089', '200', '2', 'Fall', 2002, 'C+'); + insert into takes values('36791', '400', '1', 'Spring', 2007, 'C '); + insert into takes values('21395', '400', '1', 'Spring', 2007, 'C '); + insert into takes values('52669', '791', '1', 'Spring', 2006, 'A+'); + insert into takes values('98830', '376', '1', 'Fall', 2006, 'A '); + insert into takes values('52120', '959', '1', 'Fall', 2006, 'A '); + insert into takes values('24002', '626', '1', 'Fall', 2006, 'C-'); + insert into takes values('13023', '802', '1', 'Spring', 2003, 'C '); + insert into takes values('11453', '696', '1', 'Spring', 2002, 'B '); + insert into takes values('64820', '527', '1', 'Fall', 2004, 'A+'); + insert into takes values('65056', '352', '1', 'Spring', 2006, 'B-'); + insert into takes values('90914', '875', '1', 'Spring', 2005, 'C '); + insert into takes values('42688', '629', '1', 'Spring', 2003, 'B+'); + insert into takes values('7123', '559', '1', 'Fall', 2002, 'A-'); + insert into takes values('71426', '105', '2', 'Fall', 2002, 'A-'); + insert into takes values('64164', '457', '1', 'Spring', 2001, 'C-'); + insert into takes values('73268', '875', '1', 'Spring', 2005, 'A+'); + insert into takes values('78767', '791', '1', 'Spring', 2006, 'B '); + insert into takes values('29399', '366', '1', 'Fall', 2005, 'B+'); + insert into takes values('20244', '962', '1', 'Spring', 2008, 'C-'); + insert into takes values('99647', '468', '1', 'Fall', 2005, 'A '); + insert into takes values('11855', '258', '1', 'Fall', 2007, 'A+'); + insert into takes values('10454', '864', '1', 'Spring', 2006, 'B '); + insert into takes values('8251', '599', '1', 'Spring', 2003, 'C+'); + insert into takes values('65443', '791', '1', 'Spring', 2006, 'B '); + insert into takes values('21774', '802', '1', 'Spring', 2003, 'A+'); + insert into takes values('76291', '468', '1', 'Fall', 2005, 'C+'); + insert into takes values('23373', '137', '1', 'Spring', 2002, 'C '); + insert into takes values('15883', '239', '1', 'Fall', 2006, 'A-'); + insert into takes values('94257', '704', '1', 'Spring', 2008, 'B-'); + insert into takes values('7123', '408', '2', 'Spring', 2003, 'C+'); + insert into takes values('81028', '443', '2', 'Spring', 2002, 'A+'); + insert into takes values('23392', '319', '1', 'Spring', 2003, 'A+'); + insert into takes values('84189', '808', '1', 'Fall', 2003, 'B-'); + insert into takes values('13365', '476', '1', 'Fall', 2010, 'A '); + insert into takes values('8912', '334', '1', 'Fall', 2009, 'A '); + insert into takes values('45300', '468', '2', 'Fall', 2007, 'C-'); + insert into takes values('72643', '158', '2', 'Spring', 2008, 'C '); + insert into takes values('5703', '334', '1', 'Fall', 2009, 'A-'); + insert into takes values('18775', '642', '1', 'Fall', 2004, 'B+'); + insert into takes values('2423', '867', '1', 'Fall', 2006, 'A-'); + insert into takes values('90663', '400', '1', 'Spring', 2007, 'A+'); + insert into takes values('97400', '468', '1', 'Fall', 2005, 'A '); + insert into takes values('87048', '875', '1', 'Spring', 2005, 'A+'); + insert into takes values('15086', '366', '1', 'Fall', 2005, 'B-'); + insert into takes values('75878', '843', '1', 'Fall', 2010, 'C-'); + insert into takes values('33759', '694', '1', 'Fall', 2002, 'B '); + insert into takes values('30650', '864', '1', 'Spring', 2006, 'B-'); + insert into takes values('17600', '239', '1', 'Fall', 2006, 'A '); + insert into takes values('45650', '415', '1', 'Fall', 2010, 'A-'); + insert into takes values('34502', '105', '1', 'Fall', 2009, 'C-'); + insert into takes values('91799', '401', '1', 'Fall', 2003, 'A '); + insert into takes values('22254', '629', '1', 'Spring', 2003, 'B+'); + insert into takes values('5298', '400', '1', 'Spring', 2007, 'C-'); + insert into takes values('16993', '237', '1', 'Spring', 2008, 'A '); + insert into takes values('46981', '629', '1', 'Spring', 2003, 'A+'); + insert into takes values('5617', '137', '1', 'Spring', 2002, 'A '); + insert into takes values('95284', '476', '1', 'Fall', 2010, 'C-'); + insert into takes values('90004', '875', '1', 'Spring', 2005, 'C+'); + insert into takes values('66008', '200', '2', 'Fall', 2002, 'C '); + insert into takes values('10705', '949', '1', 'Fall', 2007, 'A-'); + insert into takes values('27956', '137', '1', 'Spring', 2002, 'A '); + insert into takes values('74163', '489', '1', 'Fall', 2007, 'C-'); + insert into takes values('91343', '696', '1', 'Spring', 2002, 'A+'); + insert into takes values('59455', '972', '1', 'Spring', 2009, 'A+'); + insert into takes values('14432', '702', '1', 'Spring', 2001, 'A-'); + insert into takes values('42096', '974', '1', 'Fall', 2003, 'A '); + insert into takes values('47677', '258', '1', 'Fall', 2007, 'C+'); + insert into takes values('16528', '793', '1', 'Spring', 2002, 'B-'); + insert into takes values('5005', '571', '1', 'Spring', 2004, 'A '); + insert into takes values('91197', '352', '1', 'Spring', 2006, 'C '); + insert into takes values('23224', '927', '1', 'Fall', 2002, 'C+'); + insert into takes values('96710', '401', '1', 'Fall', 2003, 'A+'); + insert into takes values('62728', '200', '2', 'Fall', 2002, 'C '); + insert into takes values('62124', '748', '1', 'Fall', 2003, 'A+'); + insert into takes values('58413', '400', '2', 'Fall', 2003, 'B '); + insert into takes values('31516', '893', '1', 'Fall', 2007, 'C+'); + insert into takes values('36384', '376', '1', 'Fall', 2006, 'C-'); + insert into takes values('94142', '692', '1', 'Spring', 2010, 'A '); + insert into takes values('52203', '457', '1', 'Spring', 2001, 'A-'); + insert into takes values('82301', '415', '1', 'Fall', 2010, 'A '); + insert into takes values('73411', '408', '2', 'Spring', 2003, 'C+'); + insert into takes values('93508', '137', '1', 'Spring', 2002, 'C '); + insert into takes values('26881', '949', '1', 'Fall', 2007, 'C '); + insert into takes values('38545', '376', '1', 'Fall', 2006, 'C+'); + insert into takes values('44551', '408', '1', 'Spring', 2007, 'C-'); + insert into takes values('85234', '137', '1', 'Spring', 2002, 'C+'); + insert into takes values('65208', '421', '1', 'Fall', 2004, 'A '); + insert into takes values('65241', '200', '2', 'Fall', 2002, 'A '); + insert into takes values('14432', '972', '1', 'Spring', 2009, 'A-'); + insert into takes values('76798', '362', '1', 'Fall', 2005, 'B+'); + insert into takes values('69241', '735', '2', 'Spring', 2010, 'A-'); + insert into takes values('18338', '852', '1', 'Spring', 2008, 'B+'); + insert into takes values('57083', '875', '1', 'Spring', 2005, 'B '); + insert into takes values('56080', '702', '1', 'Spring', 2001, 'C '); + insert into takes values('37653', '192', '1', 'Fall', 2002, 'B+'); + insert into takes values('77148', '137', '1', 'Spring', 2002, 'B '); + insert into takes values('90089', '663', '1', 'Spring', 2005, 'A-'); + insert into takes values('4449', '604', '1', 'Spring', 2009, 'A+'); + insert into takes values('28361', '864', '1', 'Spring', 2006, 'A+'); + insert into takes values('14182', '158', '1', 'Fall', 2008, 'C-'); + insert into takes values('53048', '239', '1', 'Fall', 2006, 'A+'); + insert into takes values('81984', '802', '1', 'Spring', 2003, 'B-'); + insert into takes values('39978', '735', '1', 'Spring', 2003, 'A '); + insert into takes values('94726', '169', '2', 'Fall', 2002, 'C-'); + insert into takes values('24784', '169', '2', 'Fall', 2002, 'A '); + insert into takes values('98019', '304', '1', 'Fall', 2009, 'A-'); + insert into takes values('46442', '802', '1', 'Spring', 2003, 'B-'); + insert into takes values('57135', '974', '1', 'Fall', 2003, 'B-'); + insert into takes values('90609', '599', '1', 'Spring', 2003, 'C-'); + insert into takes values('97355', '338', '2', 'Spring', 2006, 'B-'); + insert into takes values('81207', '702', '1', 'Spring', 2001, 'A+'); + insert into takes values('92385', '105', '2', 'Fall', 2002, 'A+'); + insert into takes values('32744', '962', '1', 'Spring', 2008, 'C '); + insert into takes values('94894', '867', '1', 'Fall', 2006, 'B+'); + insert into takes values('12216', '802', '1', 'Spring', 2003, 'C '); + insert into takes values('50658', '545', '1', 'Fall', 2001, 'B-'); + insert into takes values('84704', '105', '1', 'Fall', 2009, 'B-'); + insert into takes values('88577', '376', '1', 'Fall', 2006, 'C+'); + insert into takes values('48640', '237', '1', 'Spring', 2008, 'C+'); + insert into takes values('82974', '319', '1', 'Spring', 2003, 'B+'); + insert into takes values('90132', '362', '1', 'Fall', 2005, 'B '); + insert into takes values('4435', '959', '1', 'Fall', 2006, 'B '); + insert into takes values('53490', '561', '1', 'Fall', 2006, 'C+'); + insert into takes values('87651', '362', '1', 'Fall', 2005, 'A '); + insert into takes values('88308', '242', '1', 'Fall', 2009, 'C '); + insert into takes values('81294', '545', '1', 'Fall', 2001, 'C+'); + insert into takes values('64945', '476', '1', 'Fall', 2010, 'C+'); + insert into takes values('89106', '663', '1', 'Spring', 2005, 'B+'); + insert into takes values('42688', '679', '1', 'Spring', 2010, 'A-'); + insert into takes values('23475', '461', '1', 'Fall', 2002, 'C '); + insert into takes values('78792', '629', '1', 'Spring', 2003, 'C+'); + insert into takes values('80420', '274', '1', 'Fall', 2002, 'A-'); + insert into takes values('69758', '105', '2', 'Fall', 2002, 'C+'); + insert into takes values('9953', '345', '1', 'Spring', 2008, 'C '); + insert into takes values('29239', '408', '1', 'Spring', 2007, 'C+'); + insert into takes values('11202', '443', '2', 'Spring', 2002, 'B '); + insert into takes values('98830', '468', '1', 'Fall', 2005, 'B-'); + insert into takes values('21789', '137', '1', 'Spring', 2002, 'B '); + insert into takes values('83039', '400', '2', 'Fall', 2003, 'B+'); + insert into takes values('75252', '604', '1', 'Spring', 2009, 'A+'); + insert into takes values('74460', '875', '1', 'Spring', 2005, 'A-'); + insert into takes values('59538', '692', '1', 'Spring', 2010, 'A+'); + insert into takes values('43432', '304', '1', 'Fall', 2009, 'B-'); + insert into takes values('89393', '338', '2', 'Spring', 2006, 'B-'); + insert into takes values('61920', '561', '1', 'Fall', 2006, 'A+'); + insert into takes values('24932', '169', '2', 'Fall', 2002, 'A-'); + insert into takes values('96134', '443', '1', 'Spring', 2010, 'C '); + insert into takes values('65299', '893', '1', 'Fall', 2007, 'A+'); + insert into takes values('35685', '400', '1', 'Spring', 2007, 'B '); + insert into takes values('67021', '334', '1', 'Fall', 2009, 'C-'); + insert into takes values('27804', '338', '1', 'Spring', 2007, 'B+'); + insert into takes values('56080', '274', '1', 'Fall', 2002, 'C '); + insert into takes values('33882', '802', '1', 'Spring', 2003, 'B '); + insert into takes values('59455', '468', '1', 'Fall', 2005, 'B+'); + insert into takes values('50743', '468', '1', 'Fall', 2005, 'C '); + insert into takes values('26881', '679', '1', 'Spring', 2010, 'B+'); + insert into takes values('43616', '852', '1', 'Spring', 2008, 'C-'); + insert into takes values('68242', '313', '1', 'Fall', 2010, 'C '); + insert into takes values('70522', '696', '1', 'Spring', 2002, 'C+'); + insert into takes values('77218', '603', '1', 'Fall', 2003, 'C '); + insert into takes values('63390', '612', '1', 'Fall', 2007, 'C '); + insert into takes values('89000', '274', '1', 'Fall', 2002, 'C+'); + insert into takes values('75423', '642', '1', 'Fall', 2004, 'A '); + insert into takes values('45083', '443', '1', 'Spring', 2010, 'A+'); + insert into takes values('80799', '974', '1', 'Fall', 2003, 'B+'); + insert into takes values('13826', '791', '1', 'Spring', 2006, 'B '); + insert into takes values('84704', '679', '1', 'Spring', 2010, 'C '); + insert into takes values('77364', '468', '1', 'Fall', 2005, 'C-'); + insert into takes values('58919', '468', '2', 'Fall', 2007, 'C+'); + insert into takes values('38668', '642', '1', 'Fall', 2004, 'C '); + insert into takes values('59920', '867', '1', 'Fall', 2006, 'B-'); + insert into takes values('30161', '270', '1', 'Spring', 2010, 'C-'); + insert into takes values('50206', '274', '1', 'Fall', 2002, 'A '); + insert into takes values('30124', '105', '1', 'Fall', 2009, 'B+'); + insert into takes values('2629', '960', '2', 'Fall', 2006, 'A '); + insert into takes values('82083', '960', '2', 'Fall', 2006, 'C+'); + insert into takes values('65190', '349', '1', 'Spring', 2008, 'C+'); + insert into takes values('87651', '642', '1', 'Fall', 2004, 'A '); + insert into takes values('97953', '457', '1', 'Spring', 2001, 'C-'); + insert into takes values('15083', '349', '1', 'Spring', 2008, 'A-'); + insert into takes values('39978', '362', '3', 'Spring', 2008, 'A-'); + insert into takes values('31560', '486', '1', 'Fall', 2009, 'B '); + insert into takes values('31035', '137', '1', 'Spring', 2002, 'C '); + insert into takes values('78787', '362', '3', 'Spring', 2008, 'C+'); + insert into takes values('91132', '642', '1', 'Fall', 2004, 'B+'); + insert into takes values('40558', '362', '2', 'Fall', 2006, 'A-'); + insert into takes values('32065', '875', '1', 'Spring', 2005, 'A-'); + insert into takes values('544', '362', '3', 'Spring', 2008, 'B-'); + insert into takes values('40044', '468', '1', 'Fall', 2005, 'B-'); + insert into takes values('24784', '158', '1', 'Fall', 2008, 'B+'); + insert into takes values('30341', '362', '3', 'Spring', 2008, 'B-'); + insert into takes values('84189', '545', '1', 'Fall', 2001, 'B+'); + insert into takes values('15487', '591', '1', 'Spring', 2005, 'B+'); + insert into takes values('94620', '692', '1', 'Spring', 2010, 'C '); + insert into takes values('94697', '642', '1', 'Fall', 2004, 'B-'); + insert into takes values('34331', '960', '2', 'Fall', 2006, 'A '); + insert into takes values('84792', '629', '1', 'Spring', 2003, 'A-'); + insert into takes values('49073', '692', '1', 'Spring', 2010, 'A '); + insert into takes values('40059', '927', '1', 'Fall', 2002, 'B-'); + insert into takes values('77021', '274', '1', 'Fall', 2002, 'C-'); + insert into takes values('67051', '334', '1', 'Fall', 2009, 'B+'); + insert into takes values('29665', '421', '1', 'Fall', 2004, 'B '); + insert into takes values('71628', '959', '1', 'Fall', 2006, 'B-'); + insert into takes values('54610', '105', '1', 'Fall', 2009, 'A-'); + insert into takes values('39978', '735', '2', 'Spring', 2010, 'C '); + insert into takes values('98140', '338', '1', 'Spring', 2007, 'B '); + insert into takes values('46155', '426', '1', 'Spring', 2006, 'C-'); + insert into takes values('39876', '864', '1', 'Spring', 2006, 'C-'); + insert into takes values('68396', '852', '1', 'Spring', 2008, 'B+'); + insert into takes values('33401', '735', '2', 'Spring', 2010, 'C '); + insert into takes values('42114', '237', '2', 'Fall', 2009, 'B-'); + insert into takes values('85451', '443', '1', 'Spring', 2010, 'C+'); + insert into takes values('6710', '468', '1', 'Fall', 2005, 'C+'); + insert into takes values('81789', '604', '1', 'Spring', 2009, 'C-'); + insert into takes values('57156', '105', '2', 'Fall', 2002, 'B-'); + insert into takes values('29849', '169', '2', 'Fall', 2002, 'A-'); + insert into takes values('47487', '612', '1', 'Fall', 2007, 'C-'); + insert into takes values('86981', '415', '1', 'Fall', 2010, 'A '); + insert into takes values('67436', '349', '1', 'Spring', 2008, 'C-'); + insert into takes values('89000', '561', '1', 'Fall', 2006, 'B '); + insert into takes values('50873', '795', '1', 'Spring', 2004, 'A '); + insert into takes values('1727', '631', '1', 'Spring', 2007, 'B+'); + insert into takes values('40457', '408', '1', 'Spring', 2007, 'C+'); + insert into takes values('35293', '408', '1', 'Spring', 2007, 'B '); + insert into takes values('1110', '960', '1', 'Fall', 2009, 'C '); + insert into takes values('80742', '242', '1', 'Fall', 2009, 'C+'); + insert into takes values('70918', '629', '1', 'Spring', 2003, 'C-'); + insert into takes values('10834', '468', '1', 'Fall', 2005, 'B-'); + insert into takes values('95850', '747', '1', 'Spring', 2004, 'C-'); + insert into takes values('27528', '626', '1', 'Fall', 2006, 'A '); + insert into takes values('53185', '443', '1', 'Spring', 2010, 'C '); + insert into takes values('56486', '875', '1', 'Spring', 2005, 'C-'); + insert into takes values('53185', '591', '1', 'Spring', 2005, 'C '); + insert into takes values('84495', '496', '1', 'Fall', 2001, 'A '); + insert into takes values('70389', '468', '2', 'Fall', 2007, 'A-'); + insert into takes values('99949', '270', '1', 'Spring', 2010, 'B '); + insert into takes values('72521', '169', '2', 'Fall', 2002, 'B+'); + insert into takes values('99694', '468', '1', 'Fall', 2005, 'A+'); + insert into takes values('85445', '875', '1', 'Spring', 2005, 'A '); + insert into takes values('82688', '319', '1', 'Spring', 2003, 'A+'); + insert into takes values('69222', '408', '1', 'Spring', 2007, 'B '); + insert into takes values('95852', '338', '1', 'Spring', 2007, 'C '); + insert into takes values('41973', '334', '1', 'Fall', 2009, 'C+'); + insert into takes values('92332', '169', '1', 'Spring', 2007, 'B-'); + insert into takes values('52157', '991', '1', 'Spring', 2008, 'C-'); + insert into takes values('21552', '445', '1', 'Spring', 2001, 'B+'); + insert into takes values('36265', '486', '1', 'Fall', 2009, 'B-'); + insert into takes values('70235', '349', '1', 'Spring', 2008, 'B '); + insert into takes values('56139', '493', '1', 'Spring', 2010, 'C '); + insert into takes values('70807', '631', '1', 'Spring', 2007, 'C+'); + insert into takes values('63612', '571', '1', 'Spring', 2004, 'A-'); + insert into takes values('89234', '408', '2', 'Spring', 2003, 'C '); + insert into takes values('49873', '338', '1', 'Spring', 2007, 'A-'); + insert into takes values('16035', '679', '1', 'Spring', 2010, 'C-'); + insert into takes values('18338', '319', '1', 'Spring', 2003, 'B-'); + insert into takes values('36881', '274', '1', 'Fall', 2002, 'A-'); + insert into takes values('49873', '489', '1', 'Fall', 2007, 'A '); + insert into takes values('45300', '468', '1', 'Fall', 2005, 'A-'); + insert into takes values('66259', '489', '1', 'Fall', 2007, 'A '); + insert into takes values('29390', '604', '1', 'Spring', 2009, 'B '); + insert into takes values('75273', '696', '1', 'Spring', 2002, 'A-'); + insert into takes values('12979', '486', '1', 'Fall', 2009, 'C-'); + insert into takes values('56078', '237', '1', 'Spring', 2008, 'B-'); + insert into takes values('41818', '338', '2', 'Spring', 2006, 'B '); + insert into takes values('96227', '561', '1', 'Fall', 2006, 'C '); + insert into takes values('65208', '105', '1', 'Fall', 2009, 'B-'); + insert into takes values('32385', '927', '1', 'Fall', 2002, 'A-'); + insert into takes values('53485', '747', '1', 'Spring', 2004, 'C '); + insert into takes values('50038', '974', '1', 'Fall', 2003, 'A '); + insert into takes values('259', '843', '1', 'Fall', 2010, 'C+'); + insert into takes values('83838', '561', '1', 'Fall', 2006, 'A+'); + insert into takes values('30858', '808', '1', 'Fall', 2003, 'C+'); + insert into takes values('435', '802', '1', 'Spring', 2003, 'C '); + insert into takes values('25525', '702', '1', 'Spring', 2001, 'B '); + insert into takes values('87651', '795', '1', 'Spring', 2004, 'A-'); + insert into takes values('1000', '959', '1', 'Fall', 2006, 'B+'); + insert into takes values('52929', '426', '1', 'Spring', 2006, 'B-'); + insert into takes values('96203', '747', '1', 'Spring', 2004, 'A '); + insert into takes values('70299', '158', '1', 'Fall', 2008, 'C '); + insert into takes values('19735', '962', '1', 'Spring', 2008, 'C-'); + insert into takes values('90089', '626', '1', 'Fall', 2006, 'B-'); + insert into takes values('14668', '704', '1', 'Spring', 2008, 'B '); + insert into takes values('15070', '468', '2', 'Fall', 2007, 'A-'); + insert into takes values('53424', '867', '2', 'Fall', 2010, 'C-'); + insert into takes values('45300', '338', '1', 'Spring', 2007, 'A '); + insert into takes values('70807', '867', '2', 'Fall', 2010, 'B-'); + insert into takes values('52876', '408', '2', 'Spring', 2003, 'A '); + insert into takes values('93004', '239', '1', 'Fall', 2006, 'A '); + insert into takes values('98843', '137', '1', 'Spring', 2002, 'A '); + insert into takes values('23475', '421', '1', 'Fall', 2004, 'A-'); + insert into takes values('42298', '867', '2', 'Fall', 2010, 'B '); + insert into takes values('2848', '735', '1', 'Spring', 2003, 'C '); + insert into takes values('70061', '748', '1', 'Fall', 2003, 'B+'); + insert into takes values('52929', '642', '1', 'Fall', 2004, 'C '); + insert into takes values('95027', '200', '2', 'Fall', 2002, 'B+'); + insert into takes values('86641', '702', '1', 'Spring', 2001, 'B '); + insert into takes values('24932', '612', '1', 'Fall', 2007, 'A-'); + insert into takes values('17911', '927', '1', 'Fall', 2002, 'B '); + insert into takes values('55859', '960', '2', 'Fall', 2006, 'A-'); + insert into takes values('56212', '603', '1', 'Fall', 2003, 'C '); + insert into takes values('13741', '237', '1', 'Spring', 2008, 'B-'); + insert into takes values('87222', '376', '1', 'Fall', 2006, 'A-'); + insert into takes values('55915', '949', '1', 'Fall', 2007, 'A-'); + insert into takes values('62152', '334', '1', 'Fall', 2009, 'C '); + insert into takes values('75173', '338', '2', 'Spring', 2006, 'B-'); + insert into takes values('2178', '242', '1', 'Fall', 2009, 'B-'); + insert into takes values('20540', '631', '1', 'Spring', 2007, 'C '); + insert into takes values('52494', '748', '1', 'Fall', 2003, 'A-'); + insert into takes values('42688', '604', '1', 'Spring', 2009, 'B+'); + insert into takes values('64196', '192', '1', 'Fall', 2002, 'B-'); + insert into takes values('97694', '599', '1', 'Spring', 2003, 'C-'); + insert into takes values('77415', '793', '1', 'Spring', 2002, 'C+'); + insert into takes values('62520', '482', '1', 'Fall', 2005, 'B '); + insert into takes values('83686', '200', '2', 'Fall', 2002, 'A+'); + insert into takes values('86375', '599', '1', 'Spring', 2003, 'B+'); + insert into takes values('90814', '443', '2', 'Spring', 2002, 'B-'); + insert into takes values('48462', '338', '2', 'Spring', 2006, 'C-'); + insert into takes values('83573', '991', '1', 'Spring', 2008, 'C '); + insert into takes values('30110', '702', '1', 'Spring', 2001, 'B-'); + insert into takes values('12666', '962', '1', 'Spring', 2008, 'C '); + insert into takes values('95366', '482', '1', 'Fall', 2005, 'B+'); + insert into takes values('50664', '629', '1', 'Spring', 2003, 'A+'); + insert into takes values('95366', '599', '1', 'Spring', 2003, 'C-'); + insert into takes values('96067', '704', '1', 'Spring', 2008, 'B-'); + insert into takes values('5336', '169', '1', 'Spring', 2007, 'A+'); + insert into takes values('48861', '748', '1', 'Fall', 2003, 'C+'); + insert into takes values('96722', '376', '1', 'Fall', 2006, 'B-'); + insert into takes values('43495', '192', '1', 'Fall', 2002, 'B '); + insert into takes values('51997', '694', '1', 'Fall', 2002, 'C '); + insert into takes values('86529', '571', '1', 'Spring', 2004, 'B '); + insert into takes values('51203', '338', '2', 'Spring', 2006, 'B+'); + insert into takes values('99422', '875', '1', 'Spring', 2005, 'B-'); + insert into takes values('83003', '489', '1', 'Fall', 2007, 'A+'); + insert into takes values('69850', '457', '1', 'Spring', 2001, 'C-'); + insert into takes values('76672', '867', '2', 'Fall', 2010, 'A '); + insert into takes values('31250', '362', '2', 'Fall', 2006, 'B '); + insert into takes values('88389', '735', '2', 'Spring', 2010, 'A+'); + insert into takes values('47677', '748', '1', 'Fall', 2003, 'C-'); + insert into takes values('61444', '408', '2', 'Spring', 2003, 'C '); + insert into takes values('1087', '443', '2', 'Spring', 2002, 'C+'); + insert into takes values('80057', '408', '1', 'Spring', 2007, 'C '); + insert into takes values('87651', '927', '1', 'Fall', 2002, 'C '); + insert into takes values('99730', '408', '1', 'Spring', 2007, 'C '); + insert into takes values('53047', '663', '1', 'Spring', 2005, 'B-'); + insert into takes values('82707', '692', '1', 'Spring', 2010, 'C-'); + insert into takes values('80799', '376', '1', 'Fall', 2006, 'A+'); + insert into takes values('31266', '496', '1', 'Fall', 2001, 'C-'); + insert into takes values('39704', '642', '1', 'Fall', 2004, 'A '); + insert into takes values('90132', '696', '1', 'Spring', 2002, 'C+'); + insert into takes values('15083', '927', '1', 'Fall', 2002, 'B-'); + insert into takes values('81789', '319', '1', 'Spring', 2003, 'C-'); + insert into takes values('99764', '366', '1', 'Fall', 2005, 'B+'); + insert into takes values('91915', '599', '1', 'Spring', 2003, 'C '); + insert into takes values('35362', '237', '1', 'Spring', 2008, 'C '); + insert into takes values('2795', '704', '1', 'Spring', 2008, 'A-'); + insert into takes values('87193', '345', '1', 'Spring', 2008, 'B+'); + insert into takes values('76049', '493', '1', 'Spring', 2010, 'B '); + insert into takes values('23270', '793', '1', 'Spring', 2002, 'C '); + insert into takes values('85063', '376', '1', 'Fall', 2006, 'C+'); + insert into takes values('38712', '237', '2', 'Fall', 2009, 'A+'); + insert into takes values('45436', '791', '1', 'Spring', 2006, 'B-'); + insert into takes values('1812', '192', '1', 'Fall', 2002, 'B-'); + insert into takes values('1080', '747', '1', 'Spring', 2004, 'C-'); + insert into takes values('41261', '852', '1', 'Spring', 2008, 'A '); + insert into takes values('52134', '270', '1', 'Spring', 2010, 'B+'); + insert into takes values('57213', '760', '1', 'Spring', 2004, 'A+'); + insert into takes values('53547', '274', '1', 'Fall', 2002, 'B-'); + insert into takes values('71630', '158', '1', 'Fall', 2008, 'C-'); + insert into takes values('52656', '696', '1', 'Spring', 2002, 'B-'); + insert into takes values('24197', '400', '1', 'Spring', 2007, 'A+'); + insert into takes values('36513', '105', '2', 'Fall', 2002, 'A-'); + insert into takes values('10705', '258', '1', 'Fall', 2007, 'C-'); + insert into takes values('931', '362', '2', 'Fall', 2006, 'A+'); + insert into takes values('77130', '345', '1', 'Spring', 2008, 'A-'); + insert into takes values('40080', '748', '1', 'Fall', 2003, 'B+'); + insert into takes values('75423', '991', '1', 'Spring', 2008, 'C '); + insert into takes values('44271', '304', '1', 'Fall', 2009, 'A+'); + insert into takes values('94894', '949', '1', 'Fall', 2007, 'B+'); + insert into takes values('65987', '735', '2', 'Spring', 2010, 'C-'); + insert into takes values('57242', '239', '1', 'Fall', 2006, 'B+'); + insert into takes values('6400', '561', '1', 'Fall', 2006, 'C+'); + insert into takes values('49214', '158', '2', 'Spring', 2008, 'C-'); + insert into takes values('53047', '192', '1', 'Fall', 2002, 'A-'); + insert into takes values('90372', '629', '1', 'Spring', 2003, 'A '); + insert into takes values('5298', '334', '1', 'Fall', 2009, 'C+'); + insert into takes values('10838', '468', '2', 'Fall', 2007, 'B-'); + insert into takes values('16993', '258', '1', 'Fall', 2007, 'B '); + insert into takes values('96227', '496', '1', 'Fall', 2001, 'B+'); + insert into takes values('17424', '581', '1', 'Spring', 2005, 'A '); + insert into takes values('94894', '545', '1', 'Fall', 2001, 'C-'); + insert into takes values('12979', '376', '1', 'Fall', 2006, 'A '); + insert into takes values('44706', '468', '2', 'Fall', 2007, 'A '); + insert into takes values('21692', '313', '1', 'Fall', 2010, 'C '); + insert into takes values('50331', '631', '1', 'Spring', 2007, 'B+'); + insert into takes values('99268', '808', '1', 'Fall', 2003, 'C '); + insert into takes values('34392', '642', '1', 'Fall', 2004, 'A+'); + insert into takes values('72501', '408', '2', 'Spring', 2003, 'A-'); + insert into takes values('14284', '696', '1', 'Spring', 2002, 'B+'); + insert into takes values('51238', '362', '3', 'Spring', 2008, 'C+'); + insert into takes values('83039', '793', '1', 'Spring', 2002, 'C+'); + insert into takes values('96772', '949', '1', 'Fall', 2007, 'A '); + insert into takes values('93171', '426', '1', 'Spring', 2006, 'C+'); + insert into takes values('78572', '571', '1', 'Spring', 2004, 'B '); + insert into takes values('28538', '696', '1', 'Spring', 2002, 'A-'); + insert into takes values('20445', '137', '1', 'Spring', 2002, 'B '); + insert into takes values('31086', '200', '2', 'Fall', 2002, 'A+'); + insert into takes values('1402', '747', '1', 'Spring', 2004, 'A+'); + insert into takes values('68070', '591', '1', 'Spring', 2005, 'B '); + insert into takes values('72501', '401', '1', 'Fall', 2003, 'A '); + insert into takes values('79329', '258', '1', 'Fall', 2007, 'B+'); + insert into takes values('3739', '959', '1', 'Fall', 2006, 'B-'); + insert into takes values('74464', '927', '1', 'Fall', 2002, 'A '); + insert into takes values('59530', '864', '1', 'Spring', 2006, 'A-'); + insert into takes values('50414', '663', '1', 'Spring', 2005, 'B+'); + insert into takes values('46980', '270', '1', 'Spring', 2010, 'B '); + insert into takes values('4435', '802', '1', 'Spring', 2003, 'B-'); + insert into takes values('58889', '158', '1', 'Fall', 2008, 'C+'); + insert into takes values('41683', '559', '1', 'Fall', 2002, 'B '); + insert into takes values('56882', '527', '1', 'Fall', 2004, 'B '); + insert into takes values('22003', '960', '1', 'Fall', 2009, 'B-'); + insert into takes values('5005', '893', '1', 'Fall', 2007, 'C-'); + insert into takes values('14284', '747', '1', 'Spring', 2004, 'A-'); + insert into takes values('67021', '991', '1', 'Spring', 2008, 'A '); + insert into takes values('31250', '808', '1', 'Fall', 2003, 'C-'); + insert into takes values('76169', '338', '2', 'Spring', 2006, 'B+'); + insert into takes values('9460', '852', '1', 'Spring', 2008, 'B '); + insert into takes values('898', '274', '1', 'Fall', 2002, 'A-'); + insert into takes values('13211', '735', '2', 'Spring', 2010, 'C-'); + insert into takes values('13757', '482', '1', 'Fall', 2005, 'B '); + insert into takes values('65101', '400', '2', 'Fall', 2003, 'B-'); + insert into takes values('74974', '376', '1', 'Fall', 2006, 'A '); + insert into takes values('78922', '960', '1', 'Fall', 2009, 'C+'); + insert into takes values('3545', '629', '1', 'Spring', 2003, 'C '); + insert into takes values('9947', '258', '1', 'Fall', 2007, 'B-'); + insert into takes values('29192', '927', '1', 'Fall', 2002, 'B '); + insert into takes values('46155', '105', '1', 'Fall', 2009, 'A '); + insert into takes values('3493', '237', '2', 'Fall', 2009, 'C '); + insert into takes values('87965', '408', '2', 'Spring', 2003, 'B '); + insert into takes values('11076', '629', '1', 'Spring', 2003, 'A '); + insert into takes values('70395', '345', '1', 'Spring', 2008, 'C+'); + insert into takes values('70807', '489', '1', 'Fall', 2007, 'B '); + insert into takes values('89571', '867', '2', 'Fall', 2010, 'A+'); + insert into takes values('73492', '747', '1', 'Spring', 2004, 'A-'); + insert into takes values('45570', '239', '1', 'Fall', 2006, 'B+'); + insert into takes values('46106', '461', '1', 'Fall', 2002, 'C-'); + insert into takes values('79170', '349', '1', 'Spring', 2008, 'C-'); + insert into takes values('96206', '875', '1', 'Spring', 2005, 'B-'); + insert into takes values('79170', '461', '1', 'Fall', 2002, 'B '); + insert into takes values('96067', '400', '2', 'Fall', 2003, 'B-'); + insert into takes values('73328', '338', '1', 'Spring', 2007, 'B '); + insert into takes values('52929', '893', '1', 'Fall', 2007, 'B+'); + insert into takes values('38336', '631', '1', 'Spring', 2007, 'B-'); + insert into takes values('39901', '960', '1', 'Fall', 2009, 'C '); + insert into takes values('31302', '486', '1', 'Fall', 2009, 'A+'); + insert into takes values('40371', '237', '2', 'Fall', 2009, 'B-'); + insert into takes values('23457', '352', '1', 'Spring', 2006, 'B-'); + insert into takes values('5144', '338', '1', 'Spring', 2007, 'A+'); + insert into takes values('78434', '747', '1', 'Spring', 2004, 'C-'); + insert into takes values('38545', '400', '1', 'Spring', 2007, 'C+'); + insert into takes values('7973', '626', '1', 'Fall', 2006, 'C-'); + insert into takes values('88389', '105', '1', 'Fall', 2009, 'B-'); + insert into takes values('34055', '581', '1', 'Spring', 2005, 'C '); + insert into takes values('40677', '421', '1', 'Fall', 2004, 'A+'); + insert into takes values('33546', '169', '2', 'Fall', 2002, 'A-'); + insert into takes values('14596', '559', '1', 'Fall', 2002, 'C '); + insert into takes values('96193', '793', '1', 'Spring', 2002, 'A '); + insert into takes values('44816', '791', '1', 'Spring', 2006, 'B '); + insert into takes values('18821', '927', '1', 'Fall', 2002, 'C '); + insert into takes values('60867', '692', '1', 'Spring', 2010, 'A '); + insert into takes values('82868', '629', '1', 'Spring', 2003, 'A-'); + insert into takes values('89246', '200', '2', 'Fall', 2002, 'A '); + insert into takes values('60748', '581', '1', 'Spring', 2005, 'C-'); + insert into takes values('38476', '864', '1', 'Spring', 2006, 'A-'); + insert into takes values('7149', '612', '1', 'Fall', 2007, 'B '); + insert into takes values('61783', '105', '2', 'Fall', 2002, 'A '); + insert into takes values('10663', '239', '1', 'Fall', 2006, 'A+'); + insert into takes values('20378', '591', '1', 'Spring', 2005, 'A '); + insert into takes values('39046', '415', '1', 'Fall', 2010, 'A '); + insert into takes values('28738', '960', '1', 'Fall', 2009, 'B+'); + insert into takes values('65688', '960', '1', 'Fall', 2009, 'C '); + insert into takes values('22179', '581', '1', 'Spring', 2005, 'C+'); + insert into takes values('19824', '489', '1', 'Fall', 2007, 'A+'); + insert into takes values('63582', '974', '1', 'Fall', 2003, 'A '); + insert into takes values('37350', '270', '1', 'Spring', 2010, 'B-'); + insert into takes values('27044', '468', '2', 'Fall', 2007, 'C '); + insert into takes values('56276', '239', '1', 'Fall', 2006, 'A+'); + insert into takes values('63449', '791', '1', 'Spring', 2006, 'A '); + insert into takes values('90609', '338', '1', 'Spring', 2007, 'B+'); + insert into takes values('22050', '338', '1', 'Spring', 2007, 'A+'); + insert into takes values('27662', '962', '1', 'Spring', 2008, 'C '); + insert into takes values('23794', '270', '1', 'Spring', 2010, 'B+'); + insert into takes values('88085', '735', '1', 'Spring', 2003, 'A+'); + insert into takes values('23311', '274', '1', 'Fall', 2002, 'A '); + insert into takes values('51975', '808', '1', 'Fall', 2003, 'B+'); + insert into takes values('91343', '974', '1', 'Fall', 2003, 'C-'); + insert into takes values('58935', '960', '2', 'Fall', 2006, 'B+'); + insert into takes values('79911', '486', '1', 'Fall', 2009, 'C-'); + insert into takes values('2967', '200', '2', 'Fall', 2002, 'C+'); + insert into takes values('94371', '400', '1', 'Spring', 2007, 'C+'); + insert into takes values('7602', '692', '1', 'Spring', 2010, 'B '); + insert into takes values('85356', '239', '1', 'Fall', 2006, 'A+'); + insert into takes values('16523', '237', '1', 'Spring', 2008, 'A '); + insert into takes values('84727', '843', '1', 'Fall', 2010, 'B-'); + insert into takes values('52157', '867', '1', 'Fall', 2006, 'B '); + insert into takes values('85211', '415', '1', 'Fall', 2010, 'C-'); + insert into takes values('22620', '401', '1', 'Fall', 2003, 'C-'); + insert into takes values('8912', '875', '1', 'Spring', 2005, 'B '); + insert into takes values('20180', '802', '1', 'Spring', 2003, 'A '); + insert into takes values('32119', '237', '1', 'Spring', 2008, 'A+'); + insert into takes values('85234', '200', '2', 'Fall', 2002, 'B '); + insert into takes values('18499', '274', '1', 'Fall', 2002, 'A-'); + insert into takes values('86833', '949', '1', 'Fall', 2007, 'C+'); + insert into takes values('99754', '960', '2', 'Fall', 2006, 'B '); + insert into takes values('53728', '694', '1', 'Fall', 2002, 'B '); + insert into takes values('77148', '445', '1', 'Spring', 2001, 'B '); + insert into takes values('77231', '338', '2', 'Spring', 2006, 'C+'); + insert into takes values('42960', '808', '1', 'Fall', 2003, 'A+'); + insert into takes values('11966', '158', '1', 'Fall', 2008, 'C-'); + insert into takes values('78469', '631', '1', 'Spring', 2007, 'C '); + insert into takes values('61403', '270', '1', 'Spring', 2010, 'A-'); + insert into takes values('98690', '334', '1', 'Fall', 2009, 'C '); + insert into takes values('41280', '748', '1', 'Fall', 2003, 'A '); + insert into takes values('16480', '366', '1', 'Fall', 2005, 'C '); + insert into takes values('63040', '352', '1', 'Spring', 2006, 'A+'); + insert into takes values('95175', '461', '1', 'Fall', 2002, 'C '); + insert into takes values('23439', '169', '2', 'Fall', 2002, 'C-'); + insert into takes values('10033', '408', '2', 'Spring', 2003, 'B+'); + insert into takes values('29002', '338', '2', 'Spring', 2006, 'C+'); + insert into takes values('89571', '760', '1', 'Spring', 2004, 'C-'); + insert into takes values('28352', '927', '1', 'Fall', 2002, 'B+'); + insert into takes values('50583', '468', '2', 'Fall', 2007, 'B-'); + insert into takes values('66054', '692', '1', 'Spring', 2010, 'B+'); + insert into takes values('99271', '735', '2', 'Spring', 2010, 'A '); + insert into takes values('68150', '893', '1', 'Fall', 2007, 'C-'); + insert into takes values('35687', '704', '1', 'Spring', 2008, 'B-'); + insert into takes values('69732', '443', '2', 'Spring', 2002, 'A+'); + insert into takes values('69285', '760', '1', 'Spring', 2004, 'A-'); + insert into takes values('35357', '603', '1', 'Fall', 2003, 'C '); + insert into takes values('32065', '158', '2', 'Spring', 2008, 'B+'); + insert into takes values('95697', '747', '1', 'Spring', 2004, 'A '); + insert into takes values('61166', '864', '1', 'Spring', 2006, 'C '); + insert into takes values('38545', '960', '1', 'Fall', 2009, 'A+'); + insert into takes values('61332', '702', '1', 'Spring', 2001, 'B+'); + insert into takes values('69752', '334', '1', 'Fall', 2009, 'B '); + insert into takes values('37284', '949', '1', 'Fall', 2007, 'B-'); + insert into takes values('21552', '169', '1', 'Spring', 2007, 'C '); + insert into takes values('3693', '239', '1', 'Fall', 2006, 'A+'); + insert into takes values('89571', '747', '1', 'Spring', 2004, 'C '); + insert into takes values('78581', '105', '1', 'Fall', 2009, 'B+'); + insert into takes values('74911', '808', '1', 'Fall', 2003, 'B-'); + insert into takes values('64249', '793', '1', 'Spring', 2002, 'B-'); + insert into takes values('16297', '581', '1', 'Spring', 2005, 'C+'); + insert into takes values('57538', '415', '1', 'Fall', 2010, 'B '); + insert into takes values('19638', '352', '1', 'Spring', 2006, 'A '); + insert into takes values('97590', '867', '2', 'Fall', 2010, 'A '); + insert into takes values('98359', '304', '1', 'Fall', 2009, 'C '); + insert into takes values('16631', '200', '1', 'Spring', 2007, 'A '); + insert into takes values('89106', '704', '1', 'Spring', 2008, 'B-'); + insert into takes values('39204', '496', '1', 'Fall', 2001, 'B-'); + insert into takes values('56232', '867', '1', 'Fall', 2006, 'B '); + insert into takes values('47824', '867', '2', 'Fall', 2010, 'C-'); + insert into takes values('81294', '338', '1', 'Spring', 2007, 'B-'); + insert into takes values('98140', '489', '1', 'Fall', 2007, 'A-'); + insert into takes values('67033', '445', '1', 'Spring', 2001, 'B-'); + insert into takes values('48247', '237', '2', 'Fall', 2009, 'C '); + insert into takes values('24865', '793', '1', 'Spring', 2002, 'B-'); + insert into takes values('58307', '401', '1', 'Fall', 2003, 'C+'); + insert into takes values('93814', '927', '1', 'Fall', 2002, 'C-'); + insert into takes values('24374', '443', '1', 'Spring', 2010, 'C-'); + insert into takes values('41491', '352', '1', 'Spring', 2006, 'A '); + insert into takes values('83511', '972', '1', 'Spring', 2009, 'A '); + insert into takes values('5298', '626', '1', 'Fall', 2006, 'A+'); + insert into takes values('45300', '561', '1', 'Fall', 2006, 'A+'); + insert into takes values('6523', '959', '1', 'Fall', 2006, 'A '); + insert into takes values('60267', '959', '1', 'Fall', 2006, 'B-'); + insert into takes values('16297', '421', '1', 'Fall', 2004, 'C-'); + insert into takes values('8426', '408', '1', 'Spring', 2007, 'B-'); + insert into takes values('11578', '200', '1', 'Spring', 2007, 'C '); + insert into takes values('39046', '867', '1', 'Fall', 2006, 'B-'); + insert into takes values('99711', '338', '2', 'Spring', 2006, 'B-'); + insert into takes values('12078', '679', '1', 'Spring', 2010, 'B-'); + insert into takes values('9953', '604', '1', 'Spring', 2009, 'A+'); + insert into takes values('32954', '793', '1', 'Spring', 2002, 'C '); + insert into takes values('51084', '802', '1', 'Spring', 2003, 'B+'); + insert into takes values('46694', '489', '1', 'Fall', 2007, 'C '); + insert into takes values('65190', '629', '1', 'Spring', 2003, 'C '); + insert into takes values('93653', '461', '1', 'Fall', 2002, 'C '); + insert into takes values('34542', '631', '1', 'Spring', 2007, 'B '); + insert into takes values('51416', '581', '1', 'Spring', 2005, 'B+'); + insert into takes values('76057', '304', '1', 'Fall', 2009, 'C '); + insert into takes values('8251', '137', '1', 'Spring', 2002, 'B '); + insert into takes values('41890', '486', '1', 'Fall', 2009, 'B '); + insert into takes values('82082', '319', '1', 'Spring', 2003, 'C+'); + insert into takes values('19603', '239', '1', 'Fall', 2006, 'C+'); + insert into takes values('80420', '158', '1', 'Fall', 2008, 'A-'); + insert into takes values('3143', '415', '1', 'Fall', 2010, 'B-'); + insert into takes values('19917', '105', '1', 'Fall', 2009, 'B+'); + insert into takes values('52750', '748', '1', 'Fall', 2003, 'C+'); + insert into takes values('35175', '401', '1', 'Fall', 2003, 'C-'); + insert into takes values('20974', '158', '1', 'Fall', 2008, 'A-'); + insert into takes values('70235', '426', '1', 'Spring', 2006, 'C '); + insert into takes values('60688', '376', '1', 'Fall', 2006, 'C '); + insert into takes values('66293', '747', '1', 'Spring', 2004, 'B '); + insert into takes values('89059', '974', '1', 'Fall', 2003, 'A-'); + insert into takes values('78143', '747', '1', 'Spring', 2004, 'C '); + insert into takes values('94814', '747', '1', 'Spring', 2004, 'B+'); + insert into takes values('27898', '362', '3', 'Spring', 2008, 'B+'); + insert into takes values('15328', '735', '1', 'Spring', 2003, 'B+'); + insert into takes values('73268', '867', '2', 'Fall', 2010, 'A '); + insert into takes values('53172', '489', '1', 'Fall', 2007, 'B '); + insert into takes values('17831', '599', '1', 'Spring', 2003, 'A '); + insert into takes values('36303', '304', '1', 'Fall', 2009, 'A+'); + insert into takes values('56276', '362', '3', 'Spring', 2008, 'A-'); + insert into takes values('987', '366', '1', 'Fall', 2005, 'B '); + insert into takes values('82868', '169', '1', 'Spring', 2007, 'A '); + insert into takes values('41299', '629', '1', 'Spring', 2003, 'B '); + insert into takes values('25942', '694', '1', 'Fall', 2002, 'B '); + insert into takes values('5399', '468', '2', 'Fall', 2007, 'B-'); + insert into takes values('29803', '349', '1', 'Spring', 2008, 'A-'); + insert into takes values('45083', '313', '1', 'Fall', 2010, 'A+'); + insert into takes values('47670', '493', '1', 'Spring', 2010, 'C-'); + insert into takes values('11510', '527', '1', 'Fall', 2004, 'B '); + insert into takes values('78454', '362', '3', 'Spring', 2008, 'A-'); + insert into takes values('69225', '169', '2', 'Fall', 2002, 'B-'); + insert into takes values('52385', '559', '1', 'Fall', 2002, 'B+'); + insert into takes values('22258', '105', '1', 'Fall', 2009, 'A-'); + insert into takes values('53728', '237', '2', 'Fall', 2009, 'B '); + insert into takes values('48462', '362', '2', 'Fall', 2006, 'B '); + insert into takes values('64140', '158', '2', 'Spring', 2008, 'A '); + insert into takes values('70807', '304', '1', 'Fall', 2009, 'C '); + insert into takes values('71944', '457', '1', 'Spring', 2001, 'A '); + insert into takes values('81396', '867', '2', 'Fall', 2010, 'B '); + insert into takes values('72657', '679', '1', 'Spring', 2010, 'C '); + insert into takes values('35', '468', '1', 'Fall', 2005, 'B '); + insert into takes values('18809', '200', '1', 'Spring', 2007, 'B '); + insert into takes values('69850', '489', '1', 'Fall', 2007, 'B '); + insert into takes values('95027', '527', '1', 'Fall', 2004, 'C+'); + insert into takes values('72177', '893', '1', 'Fall', 2007, 'B '); + insert into takes values('98359', '408', '2', 'Spring', 2003, 'A '); + insert into takes values('80285', '599', '1', 'Spring', 2003, 'B+'); + insert into takes values('51084', '258', '1', 'Fall', 2007, 'A '); + insert into takes values('64642', '169', '2', 'Fall', 2002, 'C+'); + insert into takes values('55857', '629', '1', 'Spring', 2003, 'A-'); + insert into takes values('58874', '338', '2', 'Spring', 2006, 'C '); + insert into takes values('34542', '694', '1', 'Fall', 2002, 'B+'); + insert into takes values('68395', '408', '2', 'Spring', 2003, 'B+'); + insert into takes values('86327', '169', '2', 'Fall', 2002, 'B-'); + insert into takes values('30896', '545', '1', 'Fall', 2001, 'C-'); + insert into takes values('81538', '642', '1', 'Fall', 2004, 'B-'); + insert into takes values('23311', '362', '2', 'Fall', 2006, 'A+'); + insert into takes values('11455', '959', '1', 'Fall', 2006, 'C+'); + insert into takes values('17133', '352', '1', 'Spring', 2006, 'A-'); + insert into takes values('34770', '313', '1', 'Fall', 2010, 'B+'); + insert into takes values('37284', '408', '2', 'Spring', 2003, 'A '); + insert into takes values('77234', '319', '1', 'Spring', 2003, 'C+'); + insert into takes values('66293', '158', '2', 'Spring', 2008, 'B '); + insert into takes values('7287', '599', '1', 'Spring', 2003, 'A+'); + insert into takes values('34329', '476', '1', 'Fall', 2010, 'B-'); + insert into takes values('27044', '496', '1', 'Fall', 2001, 'A+'); + insert into takes values('99422', '704', '1', 'Spring', 2008, 'C-'); + insert into takes values('29031', '482', '1', 'Fall', 2005, 'B '); + insert into takes values('56499', '704', '1', 'Spring', 2008, 'A '); + insert into takes values('48469', '959', '1', 'Fall', 2006, 'B '); + insert into takes values('94522', '791', '1', 'Spring', 2006, 'A+'); + insert into takes values('29863', '408', '2', 'Spring', 2003, 'A+'); + insert into takes values('51203', '400', '1', 'Spring', 2007, 'C '); + insert into takes values('32490', '338', '2', 'Spring', 2006, 'B '); + insert into takes values('81566', '457', '1', 'Spring', 2001, 'A '); + insert into takes values('58701', '415', '1', 'Fall', 2010, 'A-'); + insert into takes values('21246', '629', '1', 'Spring', 2003, 'C+'); + insert into takes values('38013', '242', '1', 'Fall', 2009, 'C+'); + insert into takes values('33338', '349', '1', 'Spring', 2008, 'B+'); + insert into takes values('75231', '704', '1', 'Spring', 2008, 'B '); + insert into takes values('59455', '875', '1', 'Spring', 2005, 'B '); + insert into takes values('83002', '313', '1', 'Fall', 2010, 'C+'); + insert into takes values('93004', '158', '2', 'Spring', 2008, 'A+'); + insert into takes values('90567', '313', '1', 'Fall', 2010, 'B+'); + insert into takes values('81028', '401', '1', 'Fall', 2003, 'C '); + insert into takes values('71025', '791', '1', 'Spring', 2006, 'B-'); + insert into takes values('67018', '694', '1', 'Fall', 2002, 'C+'); + insert into takes values('78758', '960', '1', 'Fall', 2009, 'C-'); + insert into takes values('17600', '362', '1', 'Fall', 2005, 'B-'); + insert into takes values('75173', '366', '1', 'Fall', 2005, 'B-'); + insert into takes values('11510', '591', '1', 'Spring', 2005, 'C+'); + insert into takes values('48053', '476', '1', 'Fall', 2010, 'C-'); + insert into takes values('87831', '927', '1', 'Fall', 2002, 'A+'); + insert into takes values('7490', '692', '1', 'Spring', 2010, 'C+'); + insert into takes values('72165', '867', '1', 'Fall', 2006, 'B+'); + insert into takes values('33546', '962', '1', 'Spring', 2008, 'C+'); + insert into takes values('52872', '445', '1', 'Spring', 2001, 'B-'); + insert into takes values('35293', '949', '1', 'Fall', 2007, 'A-'); + insert into takes values('94766', '258', '1', 'Fall', 2007, 'A '); + insert into takes values('62549', '319', '1', 'Spring', 2003, 'A '); + insert into takes values('282', '493', '1', 'Spring', 2010, 'B+'); + insert into takes values('7970', '991', '1', 'Spring', 2008, 'C+'); + insert into takes values('49339', '704', '1', 'Spring', 2008, 'A-'); + insert into takes values('4435', '559', '1', 'Fall', 2002, 'B+'); + insert into takes values('13511', '545', '1', 'Fall', 2001, 'B '); + insert into takes values('19293', '493', '1', 'Spring', 2010, 'B-'); + insert into takes values('81258', '345', '1', 'Spring', 2008, 'C+'); + insert into takes values('88884', '692', '1', 'Spring', 2010, 'B+'); + insert into takes values('78332', '445', '1', 'Spring', 2001, 'C+'); + insert into takes values('38013', '237', '1', 'Spring', 2008, 'C '); + insert into takes values('63288', '105', '1', 'Fall', 2009, 'A+'); + insert into takes values('94173', '304', '1', 'Fall', 2009, 'A-'); + insert into takes values('24746', '679', '1', 'Spring', 2010, 'A+'); + insert into takes values('79697', '169', '1', 'Spring', 2007, 'A-'); + insert into takes values('49214', '735', '2', 'Spring', 2010, 'B+'); + insert into takes values('15457', '747', '1', 'Spring', 2004, 'A+'); + insert into takes values('3335', '631', '1', 'Spring', 2007, 'C '); + insert into takes values('23311', '461', '1', 'Fall', 2002, 'A+'); + insert into takes values('66484', '704', '1', 'Spring', 2008, 'C '); + insert into takes values('84515', '421', '1', 'Fall', 2004, 'C '); + insert into takes values('89734', '747', '1', 'Spring', 2004, 'A+'); + insert into takes values('75791', '793', '1', 'Spring', 2002, 'C '); + insert into takes values('107', '349', '1', 'Spring', 2008, 'B-'); + insert into takes values('25468', '571', '1', 'Spring', 2004, 'B+'); + insert into takes values('17424', '158', '2', 'Spring', 2008, 'A-'); + insert into takes values('89140', '864', '1', 'Spring', 2006, 'A+'); + insert into takes values('92839', '401', '1', 'Fall', 2003, 'C+'); + insert into takes values('87015', '959', '1', 'Fall', 2006, 'C '); + insert into takes values('61332', '362', '3', 'Spring', 2008, 'A '); + insert into takes values('94142', '802', '1', 'Spring', 2003, 'C '); + insert into takes values('89234', '561', '1', 'Fall', 2006, 'B-'); + insert into takes values('68248', '366', '1', 'Fall', 2005, 'C+'); + insert into takes values('68395', '735', '2', 'Spring', 2010, 'C-'); + insert into takes values('61364', '991', '1', 'Spring', 2008, 'A-'); + insert into takes values('48469', '604', '1', 'Spring', 2009, 'C+'); + insert into takes values('38902', '561', '1', 'Fall', 2006, 'A-'); + insert into takes values('58081', '319', '1', 'Spring', 2003, 'C '); + insert into takes values('61003', '561', '1', 'Fall', 2006, 'B '); + insert into takes values('86344', '974', '1', 'Fall', 2003, 'C+'); + insert into takes values('28361', '791', '1', 'Spring', 2006, 'A '); + insert into takes values('80610', '345', '1', 'Spring', 2008, 'C+'); + insert into takes values('8252', '875', '1', 'Spring', 2005, 'A-'); + insert into takes values('25528', '545', '1', 'Fall', 2001, 'A '); + insert into takes values('41988', '345', '1', 'Spring', 2008, 'B '); + insert into takes values('58300', '735', '1', 'Spring', 2003, 'A '); + insert into takes values('79534', '972', '1', 'Spring', 2009, 'B+'); + insert into takes values('9953', '962', '1', 'Spring', 2008, 'A-'); + insert into takes values('53048', '137', '1', 'Spring', 2002, 'A '); + insert into takes values('35498', '319', '1', 'Spring', 2003, 'B '); + insert into takes values('48861', '345', '1', 'Spring', 2008, 'B '); + insert into takes values('53077', '408', '1', 'Spring', 2007, 'C+'); + insert into takes values('96134', '415', '1', 'Fall', 2010, 'C-'); + insert into takes values('26028', '631', '1', 'Spring', 2007, 'A+'); + insert into takes values('2629', '696', '1', 'Spring', 2002, 'A-'); + insert into takes values('45650', '949', '1', 'Fall', 2007, 'C+'); + insert into takes values('12069', '468', '1', 'Fall', 2005, 'C-'); + insert into takes values('69081', '631', '1', 'Spring', 2007, 'B+'); + insert into takes values('63289', '345', '1', 'Spring', 2008, 'A-'); + insert into takes values('26695', '158', '2', 'Spring', 2008, 'A+'); + insert into takes values('40059', '962', '1', 'Spring', 2008, 'B '); + insert into takes values('82126', '692', '1', 'Spring', 2010, 'B '); + insert into takes values('21556', '415', '1', 'Fall', 2010, 'A '); + insert into takes values('52471', '169', '2', 'Fall', 2002, 'A '); + insert into takes values('43432', '867', '1', 'Fall', 2006, 'C '); + insert into takes values('36019', '571', '1', 'Spring', 2004, 'C '); + insert into takes values('32368', '960', '2', 'Fall', 2006, 'A+'); + insert into takes values('14065', '692', '1', 'Spring', 2010, 'B-'); + insert into takes values('60249', '349', '1', 'Spring', 2008, 'C-'); + insert into takes values('68516', '545', '1', 'Fall', 2001, 'C '); + insert into takes values('93366', '496', '1', 'Fall', 2001, 'B+'); + insert into takes values('58874', '581', '1', 'Spring', 2005, 'C-'); + insert into takes values('89051', '319', '1', 'Spring', 2003, 'A '); + insert into takes values('52203', '808', '1', 'Fall', 2003, 'B+'); + insert into takes values('24002', '362', '1', 'Fall', 2005, 'A '); + insert into takes values('19638', '468', '1', 'Fall', 2005, 'B '); + insert into takes values('25143', '461', '1', 'Fall', 2002, 'A-'); + insert into takes values('5871', '960', '2', 'Fall', 2006, 'B+'); + insert into takes values('68278', '457', '1', 'Spring', 2001, 'C-'); + insert into takes values('45200', '468', '2', 'Fall', 2007, 'A+'); + insert into takes values('52120', '352', '1', 'Spring', 2006, 'B+'); + insert into takes values('62832', '599', '1', 'Spring', 2003, 'B '); + insert into takes values('16593', '242', '1', 'Fall', 2009, 'A+'); + insert into takes values('16075', '105', '2', 'Fall', 2002, 'C '); + insert into takes values('86327', '105', '1', 'Fall', 2009, 'A '); + insert into takes values('34329', '338', '2', 'Spring', 2006, 'A-'); + insert into takes values('84808', '486', '1', 'Fall', 2009, 'C+'); + insert into takes values('3005', '927', '1', 'Fall', 2002, 'C-'); + insert into takes values('1533', '626', '1', 'Fall', 2006, 'B '); + insert into takes values('53496', '445', '1', 'Spring', 2001, 'A-'); + insert into takes values('3651', '679', '1', 'Spring', 2010, 'C '); + insert into takes values('72014', '927', '1', 'Fall', 2002, 'B '); + insert into takes values('81245', '559', '1', 'Fall', 2002, 'B '); + insert into takes values('88302', '304', '1', 'Fall', 2009, 'A '); + insert into takes values('96178', '443', '1', 'Spring', 2010, 'A '); + insert into takes values('51868', '304', '1', 'Fall', 2009, 'A+'); + insert into takes values('72165', '991', '1', 'Spring', 2008, 'A-'); + insert into takes values('80698', '239', '1', 'Fall', 2006, 'C-'); + insert into takes values('39520', '443', '2', 'Spring', 2002, 'C-'); + insert into takes values('4355', '760', '1', 'Spring', 2004, 'A '); + insert into takes values('53077', '366', '1', 'Fall', 2005, 'A '); + insert into takes values('4645', '482', '1', 'Fall', 2005, 'C '); + insert into takes values('79352', '603', '1', 'Fall', 2003, 'B-'); + insert into takes values('3493', '704', '1', 'Spring', 2008, 'C+'); + insert into takes values('71904', '747', '1', 'Spring', 2004, 'A+'); + insert into takes values('52120', '604', '1', 'Spring', 2009, 'A '); + insert into takes values('27898', '338', '1', 'Spring', 2007, 'B+'); + insert into takes values('11152', '747', '1', 'Spring', 2004, 'A-'); + insert into takes values('99226', '802', '1', 'Spring', 2003, 'B-'); + insert into takes values('37856', '927', '1', 'Fall', 2002, 'B-'); + insert into takes values('24784', '626', '1', 'Fall', 2006, 'B '); + insert into takes values('36244', '496', '1', 'Fall', 2001, 'A+'); + insert into takes values('50664', '960', '1', 'Fall', 2009, 'B-'); + insert into takes values('94894', '237', '1', 'Spring', 2008, 'B-'); + insert into takes values('23373', '169', '2', 'Fall', 2002, 'C '); + insert into takes values('13506', '793', '1', 'Spring', 2002, 'C '); + insert into takes values('50944', '415', '1', 'Fall', 2010, 'A-'); + insert into takes values('89051', '629', '1', 'Spring', 2003, 'A-'); + insert into takes values('22179', '366', '1', 'Fall', 2005, 'C '); + insert into takes values('44584', '158', '2', 'Spring', 2008, 'A-'); + insert into takes values('4682', '663', '1', 'Spring', 2005, 'B+'); + insert into takes values('26494', '802', '1', 'Spring', 2003, 'A '); + insert into takes values('94894', '808', '1', 'Fall', 2003, 'C-'); + insert into takes values('47379', '482', '1', 'Fall', 2005, 'B+'); + insert into takes values('14829', '443', '2', 'Spring', 2002, 'B-'); + insert into takes values('72485', '642', '1', 'Fall', 2004, 'B-'); + insert into takes values('97658', '631', '1', 'Spring', 2007, 'A-'); + insert into takes values('60224', '875', '1', 'Spring', 2005, 'A '); + insert into takes values('79487', '867', '2', 'Fall', 2010, 'B-'); + insert into takes values('45436', '443', '2', 'Spring', 2002, 'C '); + insert into takes values('95366', '105', '1', 'Fall', 2009, 'B '); + insert into takes values('9933', '200', '2', 'Fall', 2002, 'C '); + insert into takes values('97228', '258', '1', 'Fall', 2007, 'A+'); + insert into takes values('99250', '482', '1', 'Fall', 2005, 'A-'); + insert into takes values('53424', '642', '1', 'Fall', 2004, 'C-'); + insert into takes values('90004', '192', '1', 'Fall', 2002, 'A '); + insert into takes values('74163', '808', '1', 'Fall', 2003, 'B+'); + insert into takes values('99289', '486', '1', 'Fall', 2009, 'A+'); + insert into takes values('81638', '489', '1', 'Fall', 2007, 'B-'); + insert into takes values('65121', '795', '1', 'Spring', 2004, 'A-'); + insert into takes values('79469', '366', '1', 'Fall', 2005, 'C '); + insert into takes values('1727', '559', '1', 'Fall', 2002, 'A-'); + insert into takes values('96193', '362', '1', 'Fall', 2005, 'A+'); + insert into takes values('88045', '802', '1', 'Spring', 2003, 'A-'); + insert into takes values('54610', '457', '1', 'Spring', 2001, 'B-'); + insert into takes values('66008', '974', '1', 'Fall', 2003, 'A+'); + insert into takes values('14023', '443', '1', 'Spring', 2010, 'B+'); + insert into takes values('30772', '457', '1', 'Spring', 2001, 'C+'); + insert into takes values('25068', '581', '1', 'Spring', 2005, 'A-'); + insert into takes values('43016', '270', '1', 'Spring', 2010, 'B-'); + insert into takes values('28738', '747', '1', 'Spring', 2004, 'B-'); + insert into takes values('23449', '366', '1', 'Fall', 2005, 'C '); + insert into takes values('66293', '304', '1', 'Fall', 2009, 'A+'); + insert into takes values('42991', '270', '1', 'Spring', 2010, 'C+'); + insert into takes values('23794', '169', '2', 'Fall', 2002, 'B+'); + insert into takes values('14621', '137', '1', 'Spring', 2002, 'A-'); + insert into takes values('72055', '200', '2', 'Fall', 2002, 'B+'); + insert into takes values('75560', '663', '1', 'Spring', 2005, 'A+'); + insert into takes values('10267', '793', '1', 'Spring', 2002, 'C '); + insert into takes values('39892', '875', '1', 'Spring', 2005, 'B+'); + insert into takes values('14032', '338', '1', 'Spring', 2007, 'A+'); + insert into takes values('37653', '313', '1', 'Fall', 2010, 'C-'); + insert into takes values('33837', '599', '1', 'Spring', 2003, 'C '); + insert into takes values('57941', '496', '1', 'Fall', 2001, 'B-'); + insert into takes values('89000', '852', '1', 'Spring', 2008, 'B-'); + insert into takes values('59530', '482', '1', 'Fall', 2005, 'A '); + insert into takes values('67560', '376', '1', 'Fall', 2006, 'C-'); + insert into takes values('55354', '793', '1', 'Spring', 2002, 'B+'); + insert into takes values('23392', '972', '1', 'Spring', 2009, 'C+'); + insert into takes values('20540', '486', '1', 'Fall', 2009, 'A-'); + insert into takes values('50414', '258', '1', 'Fall', 2007, 'A+'); + insert into takes values('30650', '748', '1', 'Fall', 2003, 'B-'); + insert into takes values('35687', '571', '1', 'Spring', 2004, 'C+'); + insert into takes values('37449', '960', '1', 'Fall', 2009, 'C+'); + insert into takes values('41491', '960', '1', 'Fall', 2009, 'B+'); + insert into takes values('3639', '237', '2', 'Fall', 2009, 'C+'); + insert into takes values('30943', '631', '1', 'Spring', 2007, 'A+'); + insert into takes values('28977', '489', '1', 'Fall', 2007, 'A+'); + insert into takes values('40558', '313', '1', 'Fall', 2010, 'C '); + insert into takes values('32065', '349', '1', 'Spring', 2008, 'C-'); + insert into takes values('19293', '158', '2', 'Spring', 2008, 'A '); + insert into takes values('31476', '304', '1', 'Fall', 2009, 'C '); + insert into takes values('29803', '426', '1', 'Spring', 2006, 'A+'); + insert into takes values('48471', '362', '1', 'Fall', 2005, 'A '); + insert into takes values('16347', '376', '1', 'Fall', 2006, 'C-'); + insert into takes values('92332', '631', '1', 'Spring', 2007, 'B-'); + insert into takes values('69122', '457', '1', 'Spring', 2001, 'A-'); + insert into takes values('11419', '663', '1', 'Spring', 2005, 'B '); + insert into takes values('90353', '319', '1', 'Spring', 2003, 'A+'); + insert into takes values('51862', '581', '1', 'Spring', 2005, 'B-'); + insert into takes values('19450', '274', '1', 'Fall', 2002, 'B+'); + insert into takes values('89759', '461', '1', 'Fall', 2002, 'B-'); + insert into takes values('11377', '169', '1', 'Spring', 2007, 'A '); + insert into takes values('5925', '626', '1', 'Fall', 2006, 'A-'); + insert into takes values('6367', '545', '1', 'Fall', 2001, 'C-'); + insert into takes values('68242', '735', '2', 'Spring', 2010, 'B+'); + insert into takes values('80941', '242', '1', 'Fall', 2009, 'C+'); + insert into takes values('38899', '362', '2', 'Fall', 2006, 'B+'); + insert into takes values('79329', '158', '1', 'Fall', 2008, 'B+'); + insert into takes values('39925', '239', '1', 'Fall', 2006, 'B-'); + insert into takes values('35357', '795', '1', 'Spring', 2004, 'C '); + insert into takes values('13211', '571', '1', 'Spring', 2004, 'C '); + insert into takes values('67655', '137', '1', 'Spring', 2002, 'A+'); + insert into takes values('23525', '962', '1', 'Spring', 2008, 'B-'); + insert into takes values('67542', '949', '1', 'Fall', 2007, 'A '); + insert into takes values('31820', '426', '1', 'Spring', 2006, 'A '); + insert into takes values('99710', '415', '1', 'Fall', 2010, 'B '); + insert into takes values('98870', '158', '2', 'Spring', 2008, 'C-'); + insert into takes values('35523', '352', '1', 'Spring', 2006, 'B+'); + insert into takes values('75510', '169', '1', 'Spring', 2007, 'C+'); + insert into takes values('8807', '864', '1', 'Spring', 2006, 'C '); + insert into takes values('49982', '843', '1', 'Fall', 2010, 'B-'); + insert into takes values('64222', '694', '1', 'Fall', 2002, 'A-'); + insert into takes values('95205', '692', '1', 'Spring', 2010, 'C+'); + insert into takes values('667', '237', '2', 'Fall', 2009, 'B-'); + insert into takes values('5617', '401', '1', 'Fall', 2003, 'C+'); + insert into takes values('11530', '702', '1', 'Spring', 2001, 'C '); + insert into takes values('36513', '334', '1', 'Fall', 2009, 'C-'); + insert into takes values('16311', '629', '1', 'Spring', 2003, 'B+'); + insert into takes values('61403', '927', '1', 'Fall', 2002, 'C-'); + insert into takes values('40937', '663', '1', 'Spring', 2005, 'B '); + insert into takes values('1220', '493', '1', 'Spring', 2010, 'A-'); + insert into takes values('75123', '795', '1', 'Spring', 2004, 'C-'); + insert into takes values('34197', '808', '1', 'Fall', 2003, 'B+'); + insert into takes values('35362', '362', '2', 'Fall', 2006, 'B+'); + insert into takes values('75596', '875', '1', 'Spring', 2005, 'B '); + insert into takes values('52523', '158', '1', 'Fall', 2008, 'B-'); + insert into takes values('45083', '702', '1', 'Spring', 2001, 'C-'); + insert into takes values('83557', '793', '1', 'Spring', 2002, 'B '); + insert into takes values('95320', '991', '1', 'Spring', 2008, 'C-'); + insert into takes values('7498', '366', '1', 'Fall', 2005, 'C-'); + insert into takes values('2133', '362', '2', 'Fall', 2006, 'A '); + insert into takes values('44352', '642', '1', 'Fall', 2004, 'C '); + insert into takes values('1220', '893', '1', 'Fall', 2007, 'C-'); + insert into takes values('96178', '793', '1', 'Spring', 2002, 'B+'); + insert into takes values('34788', '631', '1', 'Spring', 2007, 'C '); + insert into takes values('49073', '401', '1', 'Fall', 2003, 'B-'); + insert into takes values('46337', '893', '1', 'Fall', 2007, 'C-'); + insert into takes values('40080', '960', '2', 'Fall', 2006, 'A+'); + insert into takes values('987', '304', '1', 'Fall', 2009, 'C '); + insert into takes values('90914', '631', '1', 'Spring', 2007, 'B '); + insert into takes values('66495', '468', '1', 'Fall', 2005, 'B+'); + insert into takes values('6474', '795', '1', 'Spring', 2004, 'A-'); + insert into takes values('19450', '105', '1', 'Fall', 2009, 'B-'); + insert into takes values('1018', '239', '1', 'Fall', 2006, 'B-'); + insert into takes values('56139', '362', '1', 'Fall', 2005, 'C '); + insert into takes values('33817', '274', '1', 'Fall', 2002, 'A-'); + insert into takes values('49205', '408', '1', 'Spring', 2007, 'B+'); + insert into takes values('89000', '864', '1', 'Spring', 2006, 'A-'); + insert into takes values('29871', '843', '1', 'Fall', 2010, 'C '); + insert into takes values('95574', '864', '1', 'Spring', 2006, 'A-'); + insert into takes values('85356', '401', '1', 'Fall', 2003, 'C-'); + insert into takes values('14596', '334', '1', 'Fall', 2009, 'B '); + insert into takes values('10267', '603', '1', 'Fall', 2003, 'C '); + insert into takes values('88085', '702', '1', 'Spring', 2001, 'A-'); + insert into takes values('58300', '400', '2', 'Fall', 2003, 'B+'); + insert into takes values('38668', '400', '1', 'Spring', 2007, 'A-'); + insert into takes values('10736', '571', '1', 'Spring', 2004, 'B+'); + insert into takes values('18469', '366', '1', 'Fall', 2005, 'A '); + insert into takes values('24116', '629', '1', 'Spring', 2003, 'B '); + insert into takes values('61364', '158', '1', 'Fall', 2008, 'C+'); + insert into takes values('28133', '338', '1', 'Spring', 2007, 'B-'); + insert into takes values('66763', '843', '1', 'Fall', 2010, 'C '); + insert into takes values('15430', '972', '1', 'Spring', 2009, 'C+'); + insert into takes values('92776', '867', '2', 'Fall', 2010, 'C-'); + insert into takes values('49391', '748', '1', 'Fall', 2003, 'A '); + insert into takes values('52057', '408', '2', 'Spring', 2003, 'B+'); + insert into takes values('21009', '591', '1', 'Spring', 2005, 'C+'); + insert into takes values('2561', '949', '1', 'Fall', 2007, 'B '); + insert into takes values('7390', '319', '1', 'Spring', 2003, 'C '); + insert into takes values('87193', '366', '1', 'Fall', 2005, 'B '); + insert into takes values('24387', '237', '2', 'Fall', 2009, 'B '); + insert into takes values('7970', '445', '1', 'Spring', 2001, 'B+'); + insert into takes values('98359', '376', '1', 'Fall', 2006, 'C+'); + insert into takes values('18821', '991', '1', 'Spring', 2008, 'C '); + insert into takes values('10556', '561', '1', 'Fall', 2006, 'C-'); + insert into takes values('22260', '258', '1', 'Fall', 2007, 'A+'); + insert into takes values('59530', '599', '1', 'Spring', 2003, 'B-'); + insert into takes values('15024', '105', '1', 'Fall', 2009, 'B-'); + insert into takes values('59046', '338', '2', 'Spring', 2006, 'B-'); + insert into takes values('77172', '482', '1', 'Fall', 2005, 'C+'); + insert into takes values('76173', '867', '2', 'Fall', 2010, 'A+'); + insert into takes values('15487', '867', '1', 'Fall', 2006, 'A '); + insert into takes values('88358', '401', '1', 'Fall', 2003, 'B+'); + insert into takes values('89414', '962', '1', 'Spring', 2008, 'B-'); + insert into takes values('18809', '493', '1', 'Spring', 2010, 'A '); + insert into takes values('85211', '421', '1', 'Fall', 2004, 'A+'); + insert into takes values('35293', '482', '1', 'Fall', 2005, 'C+'); + insert into takes values('39657', '376', '1', 'Fall', 2006, 'B '); + insert into takes values('59517', '631', '1', 'Spring', 2007, 'A-'); + insert into takes values('90234', '158', '2', 'Spring', 2008, 'C+'); + insert into takes values('66356', '852', '1', 'Spring', 2008, 'A+'); + insert into takes values('5961', '867', '2', 'Fall', 2010, 'C-'); + insert into takes values('45359', '239', '1', 'Fall', 2006, 'C+'); + insert into takes values('61356', '631', '1', 'Spring', 2007, 'C+'); + insert into takes values('11055', '852', '1', 'Spring', 2008, 'A+'); + insert into takes values('41280', '867', '2', 'Fall', 2010, 'C+'); + insert into takes values('82126', '349', '1', 'Spring', 2008, 'B+'); + insert into takes values('81538', '694', '1', 'Fall', 2002, 'B+'); + insert into takes values('56941', '258', '1', 'Fall', 2007, 'A '); + insert into takes values('25077', '362', '2', 'Fall', 2006, 'B+'); + insert into takes values('21789', '457', '1', 'Spring', 2001, 'C+'); + insert into takes values('53588', '468', '1', 'Fall', 2005, 'C+'); + insert into takes values('69632', '376', '1', 'Fall', 2006, 'A+'); + insert into takes values('62429', '349', '1', 'Spring', 2008, 'B '); + insert into takes values('35175', '362', '3', 'Spring', 2008, 'A+'); + insert into takes values('34542', '603', '1', 'Fall', 2003, 'A+'); + insert into takes values('63289', '571', '1', 'Spring', 2004, 'A+'); + insert into takes values('27898', '415', '1', 'Fall', 2010, 'A '); + insert into takes values('22618', '105', '2', 'Fall', 2002, 'B+'); + insert into takes values('61854', '313', '1', 'Fall', 2010, 'C+'); + insert into takes values('63361', '581', '1', 'Spring', 2005, 'C-'); + insert into takes values('22258', '200', '1', 'Spring', 2007, 'B '); + insert into takes values('98120', '735', '2', 'Spring', 2010, 'B+'); + insert into takes values('4682', '642', '1', 'Fall', 2004, 'A '); + insert into takes values('69960', '362', '2', 'Fall', 2006, 'B-'); + insert into takes values('499', '352', '1', 'Spring', 2006, 'C '); + insert into takes values('94178', '237', '2', 'Fall', 2009, 'B-'); + insert into takes values('62728', '629', '1', 'Spring', 2003, 'A-'); + insert into takes values('66054', '735', '2', 'Spring', 2010, 'B-'); + insert into takes values('34197', '362', '2', 'Fall', 2006, 'B+'); + insert into takes values('99422', '603', '1', 'Fall', 2003, 'B-'); + insert into takes values('95089', '338', '2', 'Spring', 2006, 'A '); + insert into takes values('52187', '443', '1', 'Spring', 2010, 'A-'); + insert into takes values('99289', '237', '1', 'Spring', 2008, 'C+'); + insert into takes values('67725', '468', '2', 'Fall', 2007, 'B '); + insert into takes values('14628', '808', '1', 'Fall', 2003, 'B '); + insert into takes values('10076', '696', '1', 'Spring', 2002, 'A-'); + insert into takes values('70389', '991', '1', 'Spring', 2008, 'C '); + insert into takes values('41211', '852', '1', 'Spring', 2008, 'C+'); + insert into takes values('68280', '972', '1', 'Spring', 2009, 'C '); + insert into takes values('39612', '349', '1', 'Spring', 2008, 'B '); + insert into takes values('41674', '591', '1', 'Spring', 2005, 'C '); + insert into takes values('84727', '493', '1', 'Spring', 2010, 'B '); + insert into takes values('19848', '626', '1', 'Fall', 2006, 'C-'); + insert into takes values('62795', '527', '1', 'Fall', 2004, 'B '); + insert into takes values('47487', '169', '2', 'Fall', 2002, 'A+'); + insert into takes values('15487', '603', '1', 'Fall', 2003, 'B+'); + insert into takes values('83002', '927', '1', 'Fall', 2002, 'C+'); + insert into takes values('39580', '559', '1', 'Fall', 2002, 'C-'); + insert into takes values('33206', '362', '1', 'Fall', 2005, 'B-'); + insert into takes values('41894', '415', '1', 'Fall', 2010, 'C '); + insert into takes values('93354', '642', '1', 'Fall', 2004, 'C-'); + insert into takes values('3127', '591', '1', 'Spring', 2005, 'B-'); + insert into takes values('73387', '258', '1', 'Fall', 2007, 'C '); + insert into takes values('72959', '242', '1', 'Fall', 2009, 'B-'); + insert into takes values('53788', '239', '1', 'Fall', 2006, 'A+'); + insert into takes values('82083', '338', '1', 'Spring', 2007, 'A-'); + insert into takes values('17676', '867', '1', 'Fall', 2006, 'A-'); + insert into takes values('61127', '747', '1', 'Spring', 2004, 'A+'); + insert into takes values('13352', '338', '1', 'Spring', 2007, 'B '); + insert into takes values('16528', '137', '1', 'Spring', 2002, 'C+'); + insert into takes values('67542', '694', '1', 'Fall', 2002, 'A+'); + insert into takes values('22003', '559', '1', 'Fall', 2002, 'A '); + insert into takes values('90089', '304', '1', 'Fall', 2009, 'C+'); + insert into takes values('40059', '694', '1', 'Fall', 2002, 'C '); + insert into takes values('58081', '443', '1', 'Spring', 2010, 'A '); + insert into takes values('94620', '482', '1', 'Fall', 2005, 'B '); + insert into takes values('4173', '400', '1', 'Spring', 2007, 'A+'); + insert into takes values('74530', '408', '2', 'Spring', 2003, 'A-'); + insert into takes values('91580', '362', '1', 'Fall', 2005, 'B+'); + insert into takes values('68150', '843', '1', 'Fall', 2010, 'B+'); + insert into takes values('108', '239', '1', 'Fall', 2006, 'A+'); + insert into takes values('33759', '802', '1', 'Spring', 2003, 'C '); + insert into takes values('17607', '642', '1', 'Fall', 2004, 'B-'); + insert into takes values('13504', '692', '1', 'Spring', 2010, 'B '); + insert into takes values('8986', '319', '1', 'Spring', 2003, 'C+'); + insert into takes values('81984', '852', '1', 'Spring', 2008, 'A '); + insert into takes values('51093', '237', '1', 'Spring', 2008, 'B+'); + insert into takes values('83592', '949', '1', 'Fall', 2007, 'C-'); + insert into takes values('26028', '457', '1', 'Spring', 2001, 'A-'); + insert into takes values('59290', '893', '1', 'Fall', 2007, 'B-'); + insert into takes values('9084', '274', '1', 'Fall', 2002, 'B '); + insert into takes values('10267', '366', '1', 'Fall', 2005, 'A-'); + insert into takes values('20195', '338', '2', 'Spring', 2006, 'A '); + insert into takes values('40303', '893', '1', 'Fall', 2007, 'A '); + insert into takes values('97590', '200', '1', 'Spring', 2007, 'B '); + insert into takes values('36845', '974', '1', 'Fall', 2003, 'C-'); + insert into takes values('8807', '349', '1', 'Spring', 2008, 'C+'); + insert into takes values('52076', '468', '1', 'Fall', 2005, 'C-'); + insert into takes values('2795', '631', '1', 'Spring', 2007, 'C+'); + insert into takes values('32881', '927', '1', 'Fall', 2002, 'B-'); + insert into takes values('62728', '694', '1', 'Fall', 2002, 'B '); + insert into takes values('29514', '704', '1', 'Spring', 2008, 'A-'); + insert into takes values('69730', '748', '1', 'Fall', 2003, 'A '); + insert into takes values('65299', '362', '2', 'Fall', 2006, 'A '); + insert into takes values('25362', '489', '1', 'Fall', 2007, 'A '); + insert into takes values('81258', '258', '1', 'Fall', 2007, 'C-'); + insert into takes values('56139', '443', '1', 'Spring', 2010, 'A-'); + insert into takes values('37653', '105', '1', 'Fall', 2009, 'B '); + insert into takes values('88389', '974', '1', 'Fall', 2003, 'A '); + insert into takes values('51723', '258', '1', 'Fall', 2007, 'B+'); + insert into takes values('23457', '867', '1', 'Fall', 2006, 'B+'); + insert into takes values('28829', '843', '1', 'Fall', 2010, 'A+'); + insert into takes values('26802', '200', '1', 'Spring', 2007, 'A+'); + insert into takes values('31820', '559', '1', 'Fall', 2002, 'B '); + insert into takes values('32245', '200', '1', 'Spring', 2007, 'A+'); + insert into takes values('7732', '663', '1', 'Spring', 2005, 'B-'); + insert into takes values('36513', '200', '2', 'Fall', 2002, 'B '); + insert into takes values('11604', '599', '1', 'Spring', 2003, 'A-'); + insert into takes values('31486', '962', '1', 'Spring', 2008, 'A+'); + insert into takes values('77218', '105', '1', 'Fall', 2009, 'C+'); + insert into takes values('23373', '867', '1', 'Fall', 2006, 'B-'); + insert into takes values('19766', '960', '2', 'Fall', 2006, 'B-'); + insert into takes values('8347', '338', '2', 'Spring', 2006, 'A '); + insert into takes values('760', '489', '1', 'Fall', 2007, 'A '); + insert into takes values('27898', '875', '1', 'Spring', 2005, 'B '); + insert into takes values('22170', '702', '1', 'Spring', 2001, 'C '); + insert into takes values('66212', '991', '1', 'Spring', 2008, 'A '); + insert into takes values('67657', '748', '1', 'Fall', 2003, 'C '); + insert into takes values('544', '527', '1', 'Fall', 2004, 'C-'); + insert into takes values('30289', '158', '1', 'Fall', 2008, 'B '); + insert into takes values('75513', '239', '1', 'Fall', 2006, 'C-'); + insert into takes values('49813', '408', '1', 'Spring', 2007, 'B '); + insert into takes values('78758', '443', '1', 'Spring', 2010, 'C-'); + insert into takes values('51923', '545', '1', 'Fall', 2001, 'A '); + insert into takes values('71025', '927', '1', 'Fall', 2002, 'C '); + insert into takes values('80254', '376', '1', 'Fall', 2006, 'B '); + insert into takes values('13757', '949', '1', 'Fall', 2007, 'A+'); + insert into takes values('1812', '571', '1', 'Spring', 2004, 'A+'); + insert into takes values('46106', '258', '1', 'Fall', 2007, 'C '); + insert into takes values('18740', '893', '1', 'Fall', 2007, 'C-'); + insert into takes values('31761', '991', '1', 'Spring', 2008, 'B '); + insert into takes values('16075', '137', '1', 'Spring', 2002, 'A-'); + insert into takes values('36102', '603', '1', 'Fall', 2003, 'C+'); + insert into takes values('56232', '274', '1', 'Fall', 2002, 'A+'); + insert into takes values('62152', '352', '1', 'Spring', 2006, 'C+'); + insert into takes values('72358', '313', '1', 'Fall', 2010, 'A+'); + insert into takes values('31560', '747', '1', 'Spring', 2004, 'B+'); + insert into takes values('27528', '242', '1', 'Fall', 2009, 'A '); + insert into takes values('90009', '527', '1', 'Fall', 2004, 'C '); + insert into takes values('81566', '362', '3', 'Spring', 2008, 'A '); + insert into takes values('18821', '599', '1', 'Spring', 2003, 'A-'); + insert into takes values('57377', '545', '1', 'Fall', 2001, 'B '); + insert into takes values('49813', '631', '1', 'Spring', 2007, 'B '); + insert into takes values('63243', '445', '1', 'Spring', 2001, 'C '); + insert into takes values('41345', '875', '1', 'Spring', 2005, 'A+'); + insert into takes values('24010', '692', '1', 'Spring', 2010, 'C+'); + insert into takes values('81883', '169', '2', 'Fall', 2002, 'B-'); + insert into takes values('77231', '401', '1', 'Fall', 2003, 'B-'); + insert into takes values('65987', '169', '1', 'Spring', 2007, 'A '); + insert into takes values('56882', '696', '1', 'Spring', 2002, 'B+'); + insert into takes values('74530', '270', '1', 'Spring', 2010, 'C-'); + insert into takes values('32119', '443', '2', 'Spring', 2002, 'A '); + insert into takes values('81031', '362', '2', 'Fall', 2006, 'A '); + insert into takes values('21401', '338', '1', 'Spring', 2007, 'B+'); + insert into takes values('80698', '200', '1', 'Spring', 2007, 'B+'); + insert into takes values('93653', '376', '1', 'Fall', 2006, 'B '); + insert into takes values('39254', '415', '1', 'Fall', 2010, 'C+'); + insert into takes values('32065', '443', '1', 'Spring', 2010, 'C+'); + insert into takes values('27956', '352', '1', 'Spring', 2006, 'A '); + insert into takes values('56003', '489', '1', 'Fall', 2007, 'A+'); + insert into takes values('65979', '927', '1', 'Fall', 2002, 'C+'); + insert into takes values('61527', '696', '1', 'Spring', 2002, 'B-'); + insert into takes values('95631', '949', '1', 'Fall', 2007, 'C-'); + insert into takes values('72485', '349', '1', 'Spring', 2008, 'C+'); + insert into takes values('36303', '626', '1', 'Fall', 2006, 'B+'); + insert into takes values('31761', '457', '1', 'Spring', 2001, 'C-'); + insert into takes values('24865', '349', '1', 'Spring', 2008, 'C+'); + insert into takes values('55859', '443', '2', 'Spring', 2002, 'C-'); + insert into takes values('99754', '642', '1', 'Fall', 2004, 'C-'); + insert into takes values('8140', '808', '1', 'Fall', 2003, 'A '); + insert into takes values('28977', '679', '1', 'Spring', 2010, 'C+'); + insert into takes values('50013', '443', '1', 'Spring', 2010, 'B+'); + insert into takes values('44703', '612', '1', 'Fall', 2007, 'C-'); + insert into takes values('57456', '362', '2', 'Fall', 2006, 'A+'); + insert into takes values('82688', '927', '1', 'Fall', 2002, 'A-'); + insert into takes values('1000', '239', '1', 'Fall', 2006, 'C '); + insert into takes values('65396', '599', '1', 'Spring', 2003, 'B-'); + insert into takes values('11152', '426', '1', 'Spring', 2006, 'C-'); + insert into takes values('61166', '793', '1', 'Spring', 2002, 'A+'); + insert into takes values('87280', '808', '1', 'Fall', 2003, 'C '); + insert into takes values('32490', '362', '1', 'Fall', 2005, 'B-'); + insert into takes values('50873', '334', '1', 'Fall', 2009, 'B-'); + insert into takes values('69628', '366', '1', 'Fall', 2005, 'B+'); + insert into takes values('57377', '105', '2', 'Fall', 2002, 'C-'); + insert into takes values('22532', '735', '2', 'Spring', 2010, 'A+'); + insert into takes values('13749', '457', '1', 'Spring', 2001, 'B+'); + insert into takes values('79170', '362', '2', 'Fall', 2006, 'B '); + insert into takes values('43505', '408', '1', 'Spring', 2007, 'B-'); + insert into takes values('6990', '864', '1', 'Spring', 2006, 'B-'); + insert into takes values('38676', '362', '2', 'Fall', 2006, 'C '); + insert into takes values('22325', '426', '1', 'Spring', 2006, 'C-'); + insert into takes values('30289', '239', '1', 'Fall', 2006, 'B-'); + insert into takes values('47627', '795', '1', 'Spring', 2004, 'A+'); + insert into takes values('15538', '400', '2', 'Fall', 2003, 'A+'); + insert into takes values('73268', '169', '2', 'Fall', 2002, 'C+'); + insert into takes values('37715', '443', '1', 'Spring', 2010, 'B '); + insert into takes values('75362', '735', '2', 'Spring', 2010, 'B+'); + insert into takes values('57123', '629', '1', 'Spring', 2003, 'B-'); + insert into takes values('78787', '237', '1', 'Spring', 2008, 'B+'); + insert into takes values('40897', '949', '1', 'Fall', 2007, 'B+'); + insert into takes values('81566', '599', '1', 'Spring', 2003, 'B+'); + insert into takes values('76173', '692', '1', 'Spring', 2010, 'A '); + insert into takes values('15030', '960', '2', 'Fall', 2006, 'B '); + insert into takes values('68263', '169', '1', 'Spring', 2007, 'C '); + insert into takes values('22003', '468', '1', 'Fall', 2005, 'B '); + insert into takes values('45083', '400', '1', 'Spring', 2007, 'C+'); + insert into takes values('19862', '793', '1', 'Spring', 2002, 'A '); + insert into takes values('64938', '445', '1', 'Spring', 2001, 'B+'); + insert into takes values('27556', '604', '1', 'Spring', 2009, 'A-'); + insert into takes values('41774', '200', '1', 'Spring', 2007, 'C '); + insert into takes values('12941', '421', '1', 'Fall', 2004, 'A '); + insert into takes values('33338', '158', '2', 'Spring', 2008, 'A '); + insert into takes values('99451', '158', '1', 'Fall', 2008, 'A '); + insert into takes values('7498', '962', '1', 'Spring', 2008, 'B-'); + insert into takes values('35293', '169', '1', 'Spring', 2007, 'A+'); + insert into takes values('29462', '400', '1', 'Spring', 2007, 'C '); + insert into takes values('35498', '747', '1', 'Spring', 2004, 'A-'); + insert into takes values('72055', '735', '1', 'Spring', 2003, 'B+'); + insert into takes values('22912', '242', '1', 'Fall', 2009, 'C+'); + insert into takes values('5381', '376', '1', 'Fall', 2006, 'A-'); + insert into takes values('94142', '760', '1', 'Spring', 2004, 'C+'); + insert into takes values('22620', '692', '1', 'Spring', 2010, 'B '); + insert into takes values('8603', '258', '1', 'Fall', 2007, 'A-'); + insert into takes values('72521', '974', '1', 'Fall', 2003, 'B '); + insert into takes values('98940', '468', '2', 'Fall', 2007, 'A-'); + insert into takes values('69285', '692', '1', 'Spring', 2010, 'B+'); + insert into takes values('42565', '169', '1', 'Spring', 2007, 'C-'); + insert into takes values('32772', '808', '1', 'Fall', 2003, 'B '); + insert into takes values('66054', '489', '1', 'Fall', 2007, 'C+'); + insert into takes values('16515', '461', '1', 'Fall', 2002, 'A '); + insert into takes values('39115', '747', '1', 'Spring', 2004, 'C+'); + insert into takes values('37809', '604', '1', 'Spring', 2009, 'C '); + insert into takes values('14829', '545', '1', 'Fall', 2001, 'A-'); + insert into takes values('29002', '496', '1', 'Fall', 2001, 'C+'); + insert into takes values('31137', '362', '1', 'Fall', 2005, 'A-'); + insert into takes values('92659', '105', '2', 'Fall', 2002, 'B+'); + insert into takes values('46981', '237', '1', 'Spring', 2008, 'A+'); + insert into takes values('95260', '642', '1', 'Fall', 2004, 'C-'); + insert into takes values('21008', '169', '1', 'Spring', 2007, 'A+'); + insert into takes values('46074', '270', '1', 'Spring', 2010, 'B-'); + insert into takes values('95205', '867', '2', 'Fall', 2010, 'A-'); + insert into takes values('27950', '561', '1', 'Fall', 2006, 'A '); + insert into takes values('42991', '482', '1', 'Fall', 2005, 'B-'); + insert into takes values('25718', '338', '2', 'Spring', 2006, 'C '); + insert into takes values('57431', '352', '1', 'Spring', 2006, 'C-'); + insert into takes values('27727', '808', '1', 'Fall', 2003, 'A '); + insert into takes values('80941', '747', '1', 'Spring', 2004, 'A-'); + insert into takes values('72186', '489', '1', 'Fall', 2007, 'A '); + insert into takes values('81031', '237', '2', 'Fall', 2009, 'B-'); + insert into takes values('32506', '489', '1', 'Fall', 2007, 'C-'); + insert into takes values('77172', '808', '1', 'Fall', 2003, 'A '); + insert into takes values('33817', '949', '1', 'Fall', 2007, 'C+'); + insert into takes values('30334', '258', '1', 'Fall', 2007, 'B+'); + insert into takes values('96117', '400', '1', 'Spring', 2007, 'C '); + insert into takes values('43123', '192', '1', 'Fall', 2002, 'C '); + insert into takes values('34126', '408', '2', 'Spring', 2003, 'A '); + insert into takes values('17339', '696', '1', 'Spring', 2002, 'B '); + insert into takes values('71904', '192', '1', 'Fall', 2002, 'A+'); + insert into takes values('40044', '200', '2', 'Fall', 2002, 'B-'); + insert into takes values('92274', '559', '1', 'Fall', 2002, 'C+'); + insert into takes values('99422', '345', '1', 'Spring', 2008, 'B+'); + insert into takes values('6523', '629', '1', 'Spring', 2003, 'C '); + insert into takes values('544', '629', '1', 'Spring', 2003, 'A '); + insert into takes values('858', '468', '2', 'Fall', 2007, 'A-'); + insert into takes values('11126', '362', '3', 'Spring', 2008, 'B+'); + insert into takes values('32369', '313', '1', 'Fall', 2010, 'A-'); + insert into takes values('99399', '169', '1', 'Spring', 2007, 'A '); + insert into takes values('68999', '493', '1', 'Spring', 2010, 'B+'); + insert into takes values('17128', '408', '1', 'Spring', 2007, 'C-'); + insert into takes values('43658', '457', '1', 'Spring', 2001, 'C+'); + insert into takes values('66269', '760', '1', 'Spring', 2004, 'A-'); + insert into takes values('5298', '972', '1', 'Spring', 2009, 'B+'); + insert into takes values('18775', '962', '1', 'Spring', 2008, 'C+'); + insert into takes values('68453', '258', '1', 'Fall', 2007, 'B-'); + insert into takes values('48009', '974', '1', 'Fall', 2003, 'B '); + insert into takes values('46337', '694', '1', 'Fall', 2002, 'B '); + insert into takes values('97551', '991', '1', 'Spring', 2008, 'C-'); + insert into takes values('87268', '735', '2', 'Spring', 2010, 'C '); + insert into takes values('96772', '974', '1', 'Fall', 2003, 'B-'); + insert into takes values('29920', '457', '1', 'Spring', 2001, 'C-'); + insert into takes values('74163', '960', '1', 'Fall', 2009, 'A-'); + insert into takes values('75596', '959', '1', 'Fall', 2006, 'A '); + insert into takes values('17911', '334', '1', 'Fall', 2009, 'C-'); + insert into takes values('19321', '843', '1', 'Fall', 2010, 'B-'); + insert into takes values('33460', '760', '1', 'Spring', 2004, 'B '); + insert into takes values('72768', '864', '1', 'Spring', 2006, 'A-'); + insert into takes values('44551', '972', '1', 'Spring', 2009, 'B+'); + insert into takes values('97101', '959', '1', 'Fall', 2006, 'C+'); + insert into takes values('90381', '791', '1', 'Spring', 2006, 'A '); + insert into takes values('5703', '169', '1', 'Spring', 2007, 'C '); + insert into takes values('57787', '959', '1', 'Fall', 2006, 'C+'); + insert into takes values('70924', '352', '1', 'Spring', 2006, 'C+'); + insert into takes values('36265', '400', '1', 'Spring', 2007, 'B '); + insert into takes values('89051', '962', '1', 'Spring', 2008, 'A+'); + insert into takes values('43130', '802', '1', 'Spring', 2003, 'C-'); + insert into takes values('4004', '319', '1', 'Spring', 2003, 'C '); + insert into takes values('71628', '791', '1', 'Spring', 2006, 'A '); + insert into takes values('12078', '962', '1', 'Spring', 2008, 'A '); + insert into takes values('59455', '960', '2', 'Fall', 2006, 'A '); + insert into takes values('19603', '696', '1', 'Spring', 2002, 'A-'); + insert into takes values('13290', '401', '1', 'Fall', 2003, 'C '); + insert into takes values('88793', '962', '1', 'Spring', 2008, 'A '); + insert into takes values('66484', '415', '1', 'Fall', 2010, 'C+'); + insert into takes values('4015', '864', '1', 'Spring', 2006, 'B-'); + insert into takes values('49339', '274', '1', 'Fall', 2002, 'C-'); + insert into takes values('52523', '319', '1', 'Spring', 2003, 'A '); + insert into takes values('51997', '486', '1', 'Fall', 2009, 'B+'); + insert into takes values('7732', '362', '1', 'Fall', 2005, 'B+'); + insert into takes values('53788', '366', '1', 'Fall', 2005, 'C+'); + insert into takes values('91132', '338', '2', 'Spring', 2006, 'C '); + insert into takes values('90132', '559', '1', 'Fall', 2002, 'B+'); + insert into takes values('99463', '169', '1', 'Spring', 2007, 'A-'); + insert into takes values('36265', '694', '1', 'Fall', 2002, 'B '); + insert into takes values('43016', '791', '1', 'Spring', 2006, 'A-'); + insert into takes values('39254', '349', '1', 'Spring', 2008, 'C+'); + insert into takes values('58081', '468', '2', 'Fall', 2007, 'C+'); + insert into takes values('42956', '962', '1', 'Spring', 2008, 'C+'); + insert into takes values('91788', '426', '1', 'Spring', 2006, 'A-'); + insert into takes values('75928', '748', '1', 'Fall', 2003, 'C '); + insert into takes values('87193', '694', '1', 'Fall', 2002, 'B-'); + insert into takes values('97551', '960', '2', 'Fall', 2006, 'B '); + insert into takes values('84167', '612', '1', 'Fall', 2007, 'A-'); + insert into takes values('53547', '468', '2', 'Fall', 2007, 'B+'); + insert into takes values('9183', '242', '1', 'Fall', 2009, 'A '); + insert into takes values('86736', '239', '1', 'Fall', 2006, 'A+'); + insert into takes values('81028', '270', '1', 'Spring', 2010, 'A '); + insert into takes values('56089', '486', '1', 'Fall', 2009, 'A-'); + insert into takes values('62716', '258', '1', 'Fall', 2007, 'A-'); + insert into takes values('35523', '867', '2', 'Fall', 2010, 'C '); + insert into takes values('847', '663', '1', 'Spring', 2005, 'B-'); + insert into takes values('83003', '591', '1', 'Spring', 2005, 'A-'); + insert into takes values('68096', '581', '1', 'Spring', 2005, 'C '); + insert into takes values('98019', '893', '1', 'Fall', 2007, 'A-'); + insert into takes values('24010', '735', '1', 'Spring', 2003, 'B+'); + insert into takes values('60249', '345', '1', 'Spring', 2008, 'B-'); + insert into takes values('87015', '334', '1', 'Fall', 2009, 'A-'); + insert into takes values('86344', '468', '2', 'Fall', 2007, 'A+'); + insert into takes values('65101', '571', '1', 'Spring', 2004, 'A '); + insert into takes values('68779', '270', '1', 'Spring', 2010, 'B-'); + insert into takes values('1232', '486', '1', 'Fall', 2009, 'A+'); + insert into takes values('77218', '105', '2', 'Fall', 2002, 'B-'); + insert into takes values('53048', '319', '1', 'Spring', 2003, 'A '); + insert into takes values('47824', '704', '1', 'Spring', 2008, 'C-'); + insert into takes values('88417', '237', '1', 'Spring', 2008, 'A-'); + insert into takes values('36494', '927', '1', 'Fall', 2002, 'A+'); + insert into takes values('15726', '760', '1', 'Spring', 2004, 'A+'); + insert into takes values('67425', '867', '1', 'Fall', 2006, 'B-'); + insert into takes values('8819', '702', '1', 'Spring', 2001, 'C '); + insert into takes values('80610', '626', '1', 'Fall', 2006, 'C+'); + insert into takes values('69241', '599', '1', 'Spring', 2003, 'A '); + insert into takes values('94730', '959', '1', 'Fall', 2006, 'C-'); + insert into takes values('72741', '362', '2', 'Fall', 2006, 'C-'); + insert into takes values('13290', '626', '1', 'Fall', 2006, 'A '); + insert into takes values('4004', '735', '1', 'Spring', 2003, 'B+'); + insert into takes values('27044', '137', '1', 'Spring', 2002, 'B-'); + insert into takes values('92864', '401', '1', 'Fall', 2003, 'B+'); + insert into takes values('65258', '663', '1', 'Spring', 2005, 'C-'); + insert into takes values('3640', '991', '1', 'Spring', 2008, 'B '); + insert into takes values('5208', '974', '1', 'Fall', 2003, 'B-'); + insert into takes values('4355', '692', '1', 'Spring', 2010, 'B-'); + insert into takes values('20540', '694', '1', 'Fall', 2002, 'B+'); + insert into takes values('97679', '169', '2', 'Fall', 2002, 'B '); + insert into takes values('66212', '559', '1', 'Fall', 2002, 'B-'); + insert into takes values('68453', '482', '1', 'Fall', 2005, 'A '); + insert into takes values('90181', '791', '1', 'Spring', 2006, 'A-'); + insert into takes values('76911', '137', '1', 'Spring', 2002, 'B+'); + insert into takes values('18554', '468', '1', 'Fall', 2005, 'B-'); + insert into takes values('11126', '334', '1', 'Fall', 2009, 'A-'); + insert into takes values('48053', '192', '1', 'Fall', 2002, 'A+'); + insert into takes values('28316', '991', '1', 'Spring', 2008, 'A-'); + insert into takes values('23457', '927', '1', 'Fall', 2002, 'A '); + insert into takes values('90194', '626', '1', 'Fall', 2006, 'C-'); + insert into takes values('43130', '105', '2', 'Fall', 2002, 'B-'); + insert into takes values('93043', '200', '2', 'Fall', 2002, 'B+'); + insert into takes values('62124', '334', '1', 'Fall', 2009, 'A+'); + insert into takes values('97573', '158', '2', 'Spring', 2008, 'A-'); + insert into takes values('23392', '489', '1', 'Fall', 2007, 'B+'); + insert into takes values('86651', '612', '1', 'Fall', 2007, 'A '); + insert into takes values('6400', '274', '1', 'Fall', 2002, 'A '); + insert into takes values('44816', '527', '1', 'Fall', 2004, 'B+'); + insert into takes values('41818', '421', '1', 'Fall', 2004, 'C+'); + insert into takes values('58172', '545', '1', 'Fall', 2001, 'B+'); + insert into takes values('17996', '493', '1', 'Spring', 2010, 'A '); + insert into takes values('86001', '169', '1', 'Spring', 2007, 'C-'); + insert into takes values('90814', '400', '1', 'Spring', 2007, 'A+'); + insert into takes values('61356', '747', '1', 'Spring', 2004, 'A '); + insert into takes values('66763', '927', '1', 'Fall', 2002, 'C '); + insert into takes values('71426', '426', '1', 'Spring', 2006, 'A+'); + insert into takes values('49873', '169', '2', 'Fall', 2002, 'C-'); + insert into takes values('82063', '867', '2', 'Fall', 2010, 'B+'); + insert into takes values('36494', '867', '1', 'Fall', 2006, 'B+'); + insert into takes values('49214', '545', '1', 'Fall', 2001, 'C '); + insert into takes values('52945', '486', '1', 'Fall', 2009, 'A '); + insert into takes values('70359', '962', '1', 'Spring', 2008, 'C-'); + insert into takes values('14554', '692', '1', 'Spring', 2010, 'C+'); + insert into takes values('57941', '349', '1', 'Spring', 2008, 'A-'); + insert into takes values('6195', '893', '1', 'Fall', 2007, 'C-'); + insert into takes values('42843', '338', '2', 'Spring', 2006, 'C-'); + insert into takes values('36126', '362', '3', 'Spring', 2008, 'A '); + insert into takes values('64138', '489', '1', 'Fall', 2007, 'B '); + insert into takes values('95175', '748', '1', 'Fall', 2003, 'A '); + insert into takes values('82974', '581', '1', 'Spring', 2005, 'B-'); + insert into takes values('3039', '852', '1', 'Spring', 2008, 'B+'); + insert into takes values('39394', '242', '1', 'Fall', 2009, 'A-'); + insert into takes values('60406', '362', '1', 'Fall', 2005, 'C '); + insert into takes values('23934', '702', '1', 'Spring', 2001, 'C '); + insert into takes values('76270', '571', '1', 'Spring', 2004, 'A-'); + insert into takes values('28004', '338', '2', 'Spring', 2006, 'C '); + insert into takes values('73213', '663', '1', 'Spring', 2005, 'C+'); + insert into takes values('48678', '875', '1', 'Spring', 2005, 'B '); + insert into takes values('54612', '496', '1', 'Fall', 2001, 'C-'); + insert into takes values('54153', '376', '1', 'Fall', 2006, 'A '); + insert into takes values('65443', '959', '1', 'Fall', 2006, 'C-'); + insert into takes values('53185', '270', '1', 'Spring', 2010, 'A '); + insert into takes values('75040', '237', '1', 'Spring', 2008, 'C-'); + insert into takes values('68720', '960', '1', 'Fall', 2009, 'A+'); + insert into takes values('88418', '408', '1', 'Spring', 2007, 'A-'); + insert into takes values('36402', '642', '1', 'Fall', 2004, 'C+'); + insert into takes values('86806', '270', '1', 'Spring', 2010, 'B+'); + insert into takes values('29920', '962', '1', 'Spring', 2008, 'C-'); + insert into takes values('52134', '893', '1', 'Fall', 2007, 'B+'); + insert into takes values('13757', '362', '1', 'Fall', 2005, 'A+'); + insert into takes values('1285', '599', '1', 'Spring', 2003, 'A-'); + insert into takes values('57083', '137', '1', 'Spring', 2002, 'A+'); + insert into takes values('37809', '200', '2', 'Fall', 2002, 'B '); + insert into takes values('42960', '867', '2', 'Fall', 2010, 'A+'); + insert into takes values('59673', '612', '1', 'Fall', 2007, 'B '); + insert into takes values('86969', '468', '1', 'Fall', 2005, 'A+'); + insert into takes values('80976', '489', '1', 'Fall', 2007, 'C-'); + insert into takes values('33546', '748', '1', 'Fall', 2003, 'B+'); + insert into takes values('17507', '599', '1', 'Spring', 2003, 'A+'); + insert into takes values('74840', '415', '1', 'Fall', 2010, 'C+'); + insert into takes values('98940', '962', '1', 'Spring', 2008, 'B-'); + insert into takes values('23457', '545', '1', 'Fall', 2001, 'B '); + insert into takes values('81175', '642', '1', 'Fall', 2004, 'A+'); + insert into takes values('92703', '893', '1', 'Fall', 2007, 'B-'); + insert into takes values('26080', '747', '1', 'Spring', 2004, 'A-'); + insert into takes values('19917', '426', '1', 'Spring', 2006, 'C '); + insert into takes values('85746', '482', '1', 'Fall', 2005, 'C-'); + insert into takes values('51203', '626', '1', 'Fall', 2006, 'C+'); + insert into takes values('3639', '867', '2', 'Fall', 2010, 'B '); + insert into takes values('25942', '334', '1', 'Fall', 2009, 'B-'); + insert into takes values('93125', '696', '1', 'Spring', 2002, 'A-'); + insert into takes values('83039', '795', '1', 'Spring', 2004, 'C '); + insert into takes values('57190', '735', '1', 'Spring', 2003, 'C-'); + insert into takes values('66269', '426', '1', 'Spring', 2006, 'C '); + insert into takes values('50873', '867', '2', 'Fall', 2010, 'C+'); + insert into takes values('31486', '408', '2', 'Spring', 2003, 'B '); + insert into takes values('27366', '401', '1', 'Fall', 2003, 'A-'); + insert into takes values('18367', '843', '1', 'Fall', 2010, 'C+'); + insert into takes values('57431', '421', '1', 'Fall', 2004, 'A '); + insert into takes values('108', '443', '1', 'Spring', 2010, 'B-'); + insert into takes values('46928', '974', '1', 'Fall', 2003, 'B '); + insert into takes values('36379', '704', '1', 'Spring', 2008, 'A-'); + insert into takes values('8347', '626', '1', 'Fall', 2006, 'A+'); + insert into takes values('74016', '258', '1', 'Fall', 2007, 'C '); + insert into takes values('23525', '631', '1', 'Spring', 2007, 'B-'); + insert into takes values('70395', '875', '1', 'Spring', 2005, 'B+'); + insert into takes values('52669', '679', '1', 'Spring', 2010, 'C-'); + insert into takes values('62152', '591', '1', 'Spring', 2005, 'A+'); + insert into takes values('65433', '445', '1', 'Spring', 2001, 'C-'); + insert into takes values('37818', '702', '1', 'Spring', 2001, 'A+'); + insert into takes values('57780', '852', '1', 'Spring', 2008, 'A+'); + insert into takes values('52523', '237', '1', 'Spring', 2008, 'A '); + insert into takes values('11422', '581', '1', 'Spring', 2005, 'C '); + insert into takes values('42560', '334', '1', 'Fall', 2009, 'B+'); + insert into takes values('39514', '704', '1', 'Spring', 2008, 'B-'); + insert into takes values('82082', '612', '1', 'Fall', 2007, 'B+'); + insert into takes values('75362', '581', '1', 'Spring', 2005, 'A+'); + insert into takes values('59455', '313', '1', 'Fall', 2010, 'B+'); + insert into takes values('47487', '362', '1', 'Fall', 2005, 'A-'); + insert into takes values('69285', '747', '1', 'Spring', 2004, 'A+'); + insert into takes values('15578', '802', '1', 'Spring', 2003, 'B '); + insert into takes values('77021', '581', '1', 'Spring', 2005, 'C+'); + insert into takes values('67657', '571', '1', 'Spring', 2004, 'C-'); + insert into takes values('39876', '545', '1', 'Fall', 2001, 'B-'); + insert into takes values('48611', '795', '1', 'Spring', 2004, 'C+'); + insert into takes values('86001', '415', '1', 'Fall', 2010, 'C '); + insert into takes values('18367', '489', '1', 'Fall', 2007, 'A-'); + insert into takes values('40897', '400', '1', 'Spring', 2007, 'B+'); + insert into takes values('43993', '960', '1', 'Fall', 2009, 'B-'); + insert into takes values('86707', '239', '1', 'Fall', 2006, 'C+'); + insert into takes values('8251', '349', '1', 'Spring', 2008, 'C '); + insert into takes values('6367', '461', '1', 'Fall', 2002, 'A '); + insert into takes values('58469', '258', '1', 'Fall', 2007, 'A-'); + insert into takes values('75231', '362', '3', 'Spring', 2008, 'B+'); + insert into takes values('25528', '401', '1', 'Fall', 2003, 'C+'); + insert into takes values('48462', '559', '1', 'Fall', 2002, 'A '); + insert into takes values('41674', '694', '1', 'Fall', 2002, 'C-'); + insert into takes values('88884', '200', '1', 'Spring', 2007, 'B-'); + insert into takes values('8986', '604', '1', 'Spring', 2009, 'C '); + insert into takes values('21126', '642', '1', 'Fall', 2004, 'C-'); + insert into takes values('95859', '626', '1', 'Fall', 2006, 'A '); + insert into takes values('52371', '599', '1', 'Spring', 2003, 'C '); + insert into takes values('22396', '349', '1', 'Spring', 2008, 'A+'); + insert into takes values('65121', '443', '2', 'Spring', 2002, 'C+'); + insert into takes values('52120', '400', '2', 'Fall', 2003, 'A+'); + insert into takes values('27898', '571', '1', 'Spring', 2004, 'B '); + insert into takes values('20002', '445', '1', 'Spring', 2001, 'B+'); + insert into takes values('21692', '489', '1', 'Fall', 2007, 'A+'); + insert into takes values('8251', '239', '1', 'Fall', 2006, 'B '); + insert into takes values('61232', '366', '1', 'Fall', 2005, 'C+'); + insert into takes values('91370', '476', '1', 'Fall', 2010, 'B '); + insert into takes values('44271', '591', '1', 'Spring', 2005, 'C-'); + insert into takes values('53152', '599', '1', 'Spring', 2003, 'C '); + insert into takes values('79911', '319', '1', 'Spring', 2003, 'C '); + insert into takes values('40189', '352', '1', 'Spring', 2006, 'A-'); + insert into takes values('7956', '366', '1', 'Fall', 2005, 'C '); + insert into takes values('95850', '545', '1', 'Fall', 2001, 'C '); + insert into takes values('83691', '421', '1', 'Fall', 2004, 'B-'); + insert into takes values('26881', '237', '2', 'Fall', 2009, 'C '); + insert into takes values('8252', '793', '1', 'Spring', 2002, 'B '); + insert into takes values('23525', '192', '1', 'Fall', 2002, 'A '); + insert into takes values('31079', '663', '1', 'Spring', 2005, 'A-'); + insert into takes values('51868', '158', '2', 'Spring', 2008, 'A-'); + insert into takes values('99399', '468', '1', 'Fall', 2005, 'C-'); + insert into takes values('19362', '158', '1', 'Fall', 2008, 'C+'); + insert into takes values('39927', '802', '1', 'Spring', 2003, 'C-'); + insert into takes values('32368', '702', '1', 'Spring', 2001, 'A '); + insert into takes values('13081', '642', '1', 'Fall', 2004, 'B '); + insert into takes values('18859', '791', '1', 'Spring', 2006, 'A '); + insert into takes values('59455', '169', '1', 'Spring', 2007, 'A '); + insert into takes values('91788', '867', '1', 'Fall', 2006, 'B-'); + insert into takes values('38696', '421', '1', 'Fall', 2004, 'C+'); + insert into takes values('34158', '663', '1', 'Spring', 2005, 'A+'); + insert into takes values('28409', '571', '1', 'Spring', 2004, 'C '); + insert into takes values('96324', '489', '1', 'Fall', 2007, 'B+'); + insert into takes values('10727', '352', '1', 'Spring', 2006, 'C-'); + insert into takes values('21395', '169', '1', 'Spring', 2007, 'A+'); + insert into takes values('70299', '612', '1', 'Fall', 2007, 'C-'); + insert into takes values('90353', '735', '1', 'Spring', 2003, 'A '); + insert into takes values('71426', '852', '1', 'Spring', 2008, 'A-'); + insert into takes values('65400', '974', '1', 'Fall', 2003, 'C+'); + insert into takes values('21766', '735', '2', 'Spring', 2010, 'C+'); + insert into takes values('15457', '274', '1', 'Fall', 2002, 'A-'); + insert into takes values('78332', '960', '2', 'Fall', 2006, 'A+'); + insert into takes values('41280', '760', '1', 'Spring', 2004, 'A-'); + insert into takes values('55859', '362', '2', 'Fall', 2006, 'B '); + insert into takes values('2177', '304', '1', 'Fall', 2009, 'A-'); + insert into takes values('79502', '748', '1', 'Fall', 2003, 'B '); + insert into takes values('88389', '445', '1', 'Spring', 2001, 'B-'); + insert into takes values('22620', '200', '2', 'Fall', 2002, 'C '); + insert into takes values('2133', '486', '1', 'Fall', 2009, 'A '); + insert into takes values('82591', '338', '2', 'Spring', 2006, 'A '); + insert into takes values('73542', '242', '1', 'Fall', 2009, 'A '); + insert into takes values('544', '760', '1', 'Spring', 2004, 'B-'); + insert into takes values('1737', '200', '2', 'Fall', 2002, 'B+'); + insert into takes values('64297', '239', '1', 'Fall', 2006, 'C-'); + insert into takes values('41596', '694', '1', 'Fall', 2002, 'B+'); + insert into takes values('18367', '401', '1', 'Fall', 2003, 'A '); + insert into takes values('86552', '362', '1', 'Fall', 2005, 'B+'); + insert into takes values('34392', '735', '2', 'Spring', 2010, 'A '); + insert into takes values('13028', '959', '1', 'Fall', 2006, 'A-'); + insert into takes values('48640', '274', '1', 'Fall', 2002, 'A-'); + insert into takes values('3039', '242', '1', 'Fall', 2009, 'C-'); + insert into takes values('95260', '867', '2', 'Fall', 2010, 'C+'); + insert into takes values('28128', '991', '1', 'Spring', 2008, 'B+'); + insert into takes values('42114', '376', '1', 'Fall', 2006, 'B+'); + insert into takes values('19603', '158', '2', 'Spring', 2008, 'C+'); + insert into takes values('20099', '192', '1', 'Fall', 2002, 'C '); + insert into takes values('78481', '105', '2', 'Fall', 2002, 'A+'); + insert into takes values('57190', '313', '1', 'Fall', 2010, 'A-'); + insert into takes values('8426', '960', '1', 'Fall', 2009, 'C+'); + insert into takes values('65433', '270', '1', 'Spring', 2010, 'B '); + insert into takes values('50598', '843', '1', 'Fall', 2010, 'A+'); + insert into takes values('46725', '960', '1', 'Fall', 2009, 'A+'); + insert into takes values('80227', '867', '2', 'Fall', 2010, 'B '); + insert into takes values('83039', '893', '1', 'Fall', 2007, 'A+'); + insert into takes values('56882', '545', '1', 'Fall', 2001, 'C-'); + insert into takes values('98830', '962', '1', 'Spring', 2008, 'C+'); + insert into takes values('39580', '408', '2', 'Spring', 2003, 'A-'); + insert into takes values('89246', '239', '1', 'Fall', 2006, 'C+'); + insert into takes values('4248', '629', '1', 'Spring', 2003, 'B '); + insert into takes values('97355', '893', '1', 'Fall', 2007, 'C-'); + insert into takes values('55354', '702', '1', 'Spring', 2001, 'C-'); + insert into takes values('41938', '169', '1', 'Spring', 2007, 'A-'); + insert into takes values('53225', '461', '1', 'Fall', 2002, 'A '); + insert into takes values('24809', '468', '1', 'Fall', 2005, 'A-'); + insert into takes values('59908', '795', '1', 'Spring', 2004, 'A+'); + insert into takes values('84654', '962', '1', 'Spring', 2008, 'A+'); + insert into takes values('99730', '795', '1', 'Spring', 2004, 'B '); + insert into takes values('23224', '793', '1', 'Spring', 2002, 'A '); + insert into takes values('37869', '581', '1', 'Spring', 2005, 'A-'); + insert into takes values('23311', '735', '1', 'Spring', 2003, 'B-'); + insert into takes values('1087', '991', '1', 'Spring', 2008, 'B+'); + insert into takes values('4449', '468', '1', 'Fall', 2005, 'B+'); + insert into takes values('11377', '571', '1', 'Spring', 2004, 'B-'); + insert into takes values('667', '443', '1', 'Spring', 2010, 'A-'); + insert into takes values('16969', '461', '1', 'Fall', 2002, 'B-'); + insert into takes values('32385', '972', '1', 'Spring', 2009, 'C-'); + insert into takes values('44352', '735', '1', 'Spring', 2003, 'C '); + insert into takes values('96117', '158', '1', 'Fall', 2008, 'C-'); + insert into takes values('75596', '735', '1', 'Spring', 2003, 'B '); + insert into takes values('54620', '599', '1', 'Spring', 2003, 'C-'); + insert into takes values('61332', '493', '1', 'Spring', 2010, 'A '); + insert into takes values('99647', '631', '1', 'Spring', 2007, 'A+'); + insert into takes values('30896', '612', '1', 'Fall', 2007, 'B '); + insert into takes values('75772', '867', '2', 'Fall', 2010, 'A '); + insert into takes values('760', '242', '1', 'Fall', 2009, 'B-'); + insert into takes values('19603', '748', '1', 'Fall', 2003, 'A+'); + insert into takes values('30299', '169', '2', 'Fall', 2002, 'B+'); + insert into takes values('12683', '867', '2', 'Fall', 2010, 'B+'); + insert into takes values('27044', '599', '1', 'Spring', 2003, 'A '); + insert into takes values('11194', '421', '1', 'Fall', 2004, 'A '); + insert into takes values('44998', '457', '1', 'Spring', 2001, 'A+'); + insert into takes values('56139', '991', '1', 'Spring', 2008, 'A '); + insert into takes values('29002', '468', '2', 'Fall', 2007, 'C+'); + insert into takes values('1533', '960', '1', 'Fall', 2009, 'A-'); + insert into takes values('827', '960', '1', 'Fall', 2009, 'C+'); + insert into takes values('52741', '349', '1', 'Spring', 2008, 'A '); + insert into takes values('16593', '352', '1', 'Spring', 2006, 'B-'); + insert into takes values('65205', '362', '3', 'Spring', 2008, 'A-'); + insert into takes values('39876', '105', '2', 'Fall', 2002, 'B+'); + insert into takes values('22226', '527', '1', 'Fall', 2004, 'A+'); + insert into takes values('88553', '401', '1', 'Fall', 2003, 'C '); + insert into takes values('98056', '362', '1', 'Fall', 2005, 'B '); + insert into takes values('81550', '239', '1', 'Fall', 2006, 'C+'); + insert into takes values('76672', '334', '1', 'Fall', 2009, 'B '); + insert into takes values('6712', '421', '1', 'Fall', 2004, 'A+'); + insert into takes values('28977', '949', '1', 'Fall', 2007, 'A+'); + insert into takes values('41299', '476', '1', 'Fall', 2010, 'A-'); + insert into takes values('71628', '362', '2', 'Fall', 2006, 'A '); + insert into takes values('15698', '962', '1', 'Spring', 2008, 'C '); + insert into takes values('30017', '401', '1', 'Fall', 2003, 'A+'); + insert into takes values('93491', '960', '2', 'Fall', 2006, 'B '); + insert into takes values('99611', '362', '2', 'Fall', 2006, 'C '); + insert into takes values('19293', '338', '2', 'Spring', 2006, 'B '); + insert into takes values('31624', '747', '1', 'Spring', 2004, 'B '); + insert into takes values('68999', '875', '1', 'Spring', 2005, 'C+'); + insert into takes values('38696', '334', '1', 'Fall', 2009, 'A '); + insert into takes values('12078', '486', '1', 'Fall', 2009, 'C+'); + insert into takes values('10693', '415', '1', 'Fall', 2010, 'C+'); + insert into takes values('99611', '808', '1', 'Fall', 2003, 'A '); + insert into takes values('96067', '949', '1', 'Fall', 2007, 'C '); + insert into takes values('65400', '408', '2', 'Spring', 2003, 'C+'); + insert into takes values('31364', '169', '1', 'Spring', 2007, 'A '); + insert into takes values('499', '735', '2', 'Spring', 2010, 'C+'); + insert into takes values('83557', '561', '1', 'Fall', 2006, 'B+'); + insert into takes values('94846', '852', '1', 'Spring', 2008, 'B '); + insert into takes values('58874', '319', '1', 'Spring', 2003, 'C-'); + insert into takes values('11377', '692', '1', 'Spring', 2010, 'B+'); + insert into takes values('81207', '496', '1', 'Fall', 2001, 'A+'); + insert into takes values('81610', '626', '1', 'Fall', 2006, 'A-'); + insert into takes values('48640', '974', '1', 'Fall', 2003, 'B+'); + insert into takes values('44038', '334', '1', 'Fall', 2009, 'A-'); + insert into takes values('60984', '137', '1', 'Spring', 2002, 'B '); + insert into takes values('70389', '960', '2', 'Fall', 2006, 'A+'); + insert into takes values('75231', '319', '1', 'Spring', 2003, 'A '); + insert into takes values('61127', '692', '1', 'Spring', 2010, 'B '); + insert into takes values('72177', '603', '1', 'Fall', 2003, 'A+'); + insert into takes values('88525', '319', '1', 'Spring', 2003, 'B-'); + insert into takes values('52945', '604', '1', 'Spring', 2009, 'A '); + insert into takes values('17128', '192', '1', 'Fall', 2002, 'C-'); + insert into takes values('79446', '313', '1', 'Fall', 2010, 'C '); + insert into takes values('8807', '571', '1', 'Spring', 2004, 'C+'); + insert into takes values('64121', '581', '1', 'Spring', 2005, 'C+'); + insert into takes values('9947', '486', '1', 'Fall', 2009, 'A+'); + insert into takes values('60366', '696', '1', 'Spring', 2002, 'A '); + insert into takes values('56598', '545', '1', 'Fall', 2001, 'B '); + insert into takes values('86573', '352', '1', 'Spring', 2006, 'B-'); + insert into takes values('83003', '270', '1', 'Spring', 2010, 'B '); + insert into takes values('70389', '867', '1', 'Fall', 2006, 'C+'); + insert into takes values('25331', '237', '2', 'Fall', 2009, 'A+'); + insert into takes values('667', '808', '1', 'Fall', 2003, 'C-'); + insert into takes values('20803', '313', '1', 'Fall', 2010, 'A '); + insert into takes values('52385', '795', '1', 'Spring', 2004, 'B+'); + insert into takes values('19293', '258', '1', 'Fall', 2007, 'B '); + insert into takes values('85234', '338', '2', 'Spring', 2006, 'A-'); + insert into takes values('66356', '489', '1', 'Fall', 2007, 'B+'); + insert into takes values('18941', '960', '2', 'Fall', 2006, 'B+'); + insert into takes values('93708', '352', '1', 'Spring', 2006, 'B-'); + insert into takes values('10904', '795', '1', 'Spring', 2004, 'A '); + insert into takes values('38973', '631', '1', 'Spring', 2007, 'C '); + insert into takes values('74974', '169', '2', 'Fall', 2002, 'C+'); + insert into takes values('93061', '702', '1', 'Spring', 2001, 'B '); + insert into takes values('72186', '875', '1', 'Spring', 2005, 'B+'); + insert into takes values('42843', '476', '1', 'Fall', 2010, 'B+'); + insert into takes values('14284', '468', '2', 'Fall', 2007, 'B+'); + insert into takes values('69307', '603', '1', 'Fall', 2003, 'A-'); + insert into takes values('98359', '338', '1', 'Spring', 2007, 'B+'); + insert into takes values('44998', '493', '1', 'Spring', 2010, 'B-'); + insert into takes values('32065', '679', '1', 'Spring', 2010, 'A+'); + insert into takes values('43123', '927', '1', 'Fall', 2002, 'C '); + insert into takes values('41450', '696', '1', 'Spring', 2002, 'B '); + insert into takes values('33882', '137', '1', 'Spring', 2002, 'B '); + insert into takes values('23457', '696', '1', 'Spring', 2002, 'C '); + insert into takes values('18752', '735', '2', 'Spring', 2010, 'C+'); + insert into takes values('90372', '802', '1', 'Spring', 2003, 'C-'); + insert into takes values('99289', '461', '1', 'Fall', 2002, 'A-'); + insert into takes values('89393', '237', '2', 'Fall', 2009, 'A-'); + insert into takes values('8252', '408', '1', 'Spring', 2007, 'C '); + insert into takes values('98019', '974', '1', 'Fall', 2003, 'A+'); + insert into takes values('63582', '242', '1', 'Fall', 2009, 'B+'); + insert into takes values('96153', '960', '2', 'Fall', 2006, 'A '); + insert into takes values('31079', '704', '1', 'Spring', 2008, 'A-'); + insert into takes values('53547', '192', '1', 'Fall', 2002, 'B+'); + insert into takes values('71630', '960', '2', 'Fall', 2006, 'C+'); + insert into takes values('55915', '571', '1', 'Spring', 2004, 'A '); + insert into takes values('96324', '338', '2', 'Spring', 2006, 'C-'); + insert into takes values('55531', '445', '1', 'Spring', 2001, 'B-'); + insert into takes values('53172', '571', '1', 'Spring', 2004, 'B-'); + insert into takes values('81884', '169', '2', 'Fall', 2002, 'C '); + insert into takes values('107', '304', '1', 'Fall', 2009, 'B '); + insert into takes values('3127', '476', '1', 'Fall', 2010, 'C+'); + insert into takes values('91063', '319', '1', 'Spring', 2003, 'C+'); + insert into takes values('14182', '408', '1', 'Spring', 2007, 'A+'); + insert into takes values('2848', '843', '1', 'Fall', 2010, 'C-'); + insert into takes values('10693', '105', '2', 'Fall', 2002, 'A+'); + insert into takes values('19861', '169', '2', 'Fall', 2002, 'B+'); + insert into takes values('90814', '696', '1', 'Spring', 2002, 'B '); + insert into takes values('39472', '468', '2', 'Fall', 2007, 'B+'); + insert into takes values('17607', '258', '1', 'Fall', 2007, 'B '); + insert into takes values('97355', '960', '2', 'Fall', 2006, 'C-'); + insert into takes values('37946', '959', '1', 'Fall', 2006, 'B '); + insert into takes values('19050', '793', '1', 'Spring', 2002, 'C+'); + insert into takes values('10705', '362', '2', 'Fall', 2006, 'A-'); + insert into takes values('66090', '319', '1', 'Spring', 2003, 'B+'); + insert into takes values('19245', '692', '1', 'Spring', 2010, 'A '); + insert into takes values('35293', '867', '1', 'Fall', 2006, 'C-'); + insert into takes values('645', '400', '1', 'Spring', 2007, 'A+'); + insert into takes values('42114', '748', '1', 'Fall', 2003, 'C+'); + insert into takes values('92849', '962', '1', 'Spring', 2008, 'C+'); + insert into takes values('49701', '468', '1', 'Fall', 2005, 'B-'); + insert into takes values('83871', '735', '2', 'Spring', 2010, 'C '); + insert into takes values('93004', '400', '2', 'Fall', 2003, 'B-'); + insert into takes values('16969', '629', '1', 'Spring', 2003, 'C-'); + insert into takes values('69307', '408', '1', 'Spring', 2007, 'B+'); + insert into takes values('99660', '702', '1', 'Spring', 2001, 'A '); + insert into takes values('25331', '313', '1', 'Fall', 2010, 'C '); + insert into takes values('23500', '237', '2', 'Fall', 2009, 'A-'); + insert into takes values('43505', '808', '1', 'Fall', 2003, 'C+'); + insert into takes values('99764', '486', '1', 'Fall', 2009, 'A+'); + insert into takes values('41280', '808', '1', 'Fall', 2003, 'A-'); + insert into takes values('50537', '960', '1', 'Fall', 2009, 'C+'); + insert into takes values('77580', '735', '2', 'Spring', 2010, 'B+'); + insert into takes values('82697', '304', '1', 'Fall', 2009, 'C-'); + insert into takes values('83462', '274', '1', 'Fall', 2002, 'C+'); + insert into takes values('5336', '864', '1', 'Spring', 2006, 'A-'); + insert into takes values('66293', '893', '1', 'Fall', 2007, 'B '); + insert into takes values('79911', '612', '1', 'Fall', 2007, 'C '); + insert into takes values('94726', '571', '1', 'Spring', 2004, 'A+'); + insert into takes values('90004', '237', '1', 'Spring', 2008, 'B+'); + insert into takes values('90567', '237', '1', 'Spring', 2008, 'A+'); + insert into takes values('42298', '493', '1', 'Spring', 2010, 'B-'); + insert into takes values('74840', '408', '2', 'Spring', 2003, 'A-'); + insert into takes values('17507', '626', '1', 'Fall', 2006, 'C+'); + insert into takes values('74840', '489', '1', 'Fall', 2007, 'A '); + insert into takes values('1533', '349', '1', 'Spring', 2008, 'C+'); + insert into takes values('92659', '169', '1', 'Spring', 2007, 'C+'); + insert into takes values('26619', '476', '1', 'Fall', 2010, 'C+'); + insert into takes values('60406', '793', '1', 'Spring', 2002, 'C-'); + insert into takes values('29849', '489', '1', 'Fall', 2007, 'C '); + insert into takes values('34322', '808', '1', 'Fall', 2003, 'B-'); + insert into takes values('68779', '482', '1', 'Fall', 2005, 'C+'); + insert into takes values('95574', '603', '1', 'Fall', 2003, 'C-'); + insert into takes values('14094', '692', '1', 'Spring', 2010, 'B+'); + insert into takes values('4182', '496', '1', 'Fall', 2001, 'A '); + insert into takes values('16057', '974', '1', 'Fall', 2003, 'B+'); + insert into takes values('50013', '735', '1', 'Spring', 2003, 'A-'); + insert into takes values('71085', '692', '1', 'Spring', 2010, 'B-'); + insert into takes values('58606', '349', '1', 'Spring', 2008, 'C-'); + insert into takes values('19917', '408', '2', 'Spring', 2003, 'C '); + insert into takes values('12069', '237', '2', 'Fall', 2009, 'C-'); + insert into takes values('85356', '169', '1', 'Spring', 2007, 'A+'); + insert into takes values('38676', '702', '1', 'Spring', 2001, 'C-'); + insert into takes values('72979', '603', '1', 'Fall', 2003, 'A+'); + insert into takes values('46970', '852', '1', 'Spring', 2008, 'A+'); + insert into takes values('14484', '105', '2', 'Fall', 2002, 'B-'); + insert into takes values('62705', '313', '1', 'Fall', 2010, 'C-'); + insert into takes values('75123', '748', '1', 'Fall', 2003, 'B-'); + insert into takes values('96710', '893', '1', 'Fall', 2007, 'C '); + insert into takes values('34569', '748', '1', 'Fall', 2003, 'B-'); + insert into takes values('82591', '561', '1', 'Fall', 2006, 'B-'); + insert into takes values('65190', '338', '2', 'Spring', 2006, 'B+'); + insert into takes values('15074', '704', '1', 'Spring', 2008, 'A-'); + insert into takes values('52669', '237', '1', 'Spring', 2008, 'B+'); + insert into takes values('27956', '486', '1', 'Fall', 2009, 'B+'); + insert into takes values('14628', '545', '1', 'Fall', 2001, 'C-'); + insert into takes values('89297', '443', '1', 'Spring', 2010, 'B '); + insert into takes values('31554', '864', '1', 'Spring', 2006, 'B-'); + insert into takes values('69783', '962', '1', 'Spring', 2008, 'B-'); + insert into takes values('3127', '408', '1', 'Spring', 2007, 'C+'); + insert into takes values('96227', '421', '1', 'Fall', 2004, 'B '); + insert into takes values('81789', '158', '1', 'Fall', 2008, 'C-'); + insert into takes values('35293', '626', '1', 'Fall', 2006, 'C '); + insert into takes values('4173', '376', '1', 'Fall', 2006, 'B '); + insert into takes values('56003', '362', '1', 'Fall', 2005, 'C+'); + insert into takes values('69960', '702', '1', 'Spring', 2001, 'A '); + insert into takes values('56299', '867', '2', 'Fall', 2010, 'B '); + insert into takes values('95953', '482', '1', 'Fall', 2005, 'C '); + insert into takes values('58355', '426', '1', 'Spring', 2006, 'C-'); + insert into takes values('59920', '408', '1', 'Spring', 2007, 'C-'); + insert into takes values('8192', '158', '1', 'Fall', 2008, 'B '); + insert into takes values('24374', '415', '1', 'Fall', 2010, 'C+'); + insert into takes values('21101', '169', '2', 'Fall', 2002, 'B+'); + insert into takes values('30124', '631', '1', 'Spring', 2007, 'A-'); + insert into takes values('9114', '791', '1', 'Spring', 2006, 'C+'); + insert into takes values('16543', '559', '1', 'Fall', 2002, 'A+'); + insert into takes values('50467', '319', '1', 'Spring', 2003, 'B '); + insert into takes values('78911', '457', '1', 'Spring', 2001, 'A-'); + insert into takes values('858', '864', '1', 'Spring', 2006, 'A '); + insert into takes values('32483', '959', '1', 'Fall', 2006, 'B '); + insert into takes values('84654', '561', '1', 'Fall', 2006, 'A-'); + insert into takes values('15430', '445', '1', 'Spring', 2001, 'C-'); + insert into takes values('91788', '949', '1', 'Fall', 2007, 'A+'); + insert into takes values('4248', '748', '1', 'Fall', 2003, 'B '); + insert into takes values('29192', '974', '1', 'Fall', 2003, 'B '); + insert into takes values('11202', '376', '1', 'Fall', 2006, 'C-'); + insert into takes values('37586', '352', '1', 'Spring', 2006, 'A+'); + insert into takes values('94620', '457', '1', 'Spring', 2001, 'C+'); + insert into takes values('25187', '791', '1', 'Spring', 2006, 'B '); + insert into takes values('58701', '366', '1', 'Fall', 2005, 'C+'); + insert into takes values('9933', '400', '1', 'Spring', 2007, 'B-'); + insert into takes values('7390', '702', '1', 'Spring', 2001, 'B+'); + insert into takes values('67024', '561', '1', 'Fall', 2006, 'B '); + insert into takes values('75547', '242', '1', 'Fall', 2009, 'B '); + insert into takes values('83573', '158', '2', 'Spring', 2008, 'B '); + insert into takes values('33546', '791', '1', 'Spring', 2006, 'C '); + insert into takes values('88389', '960', '1', 'Fall', 2009, 'A-'); + insert into takes values('71628', '496', '1', 'Fall', 2001, 'A '); + insert into takes values('7854', '352', '1', 'Spring', 2006, 'C-'); + insert into takes values('58889', '319', '1', 'Spring', 2003, 'B '); + insert into takes values('14628', '408', '1', 'Spring', 2007, 'B-'); + insert into takes values('27804', '663', '1', 'Spring', 2005, 'A-'); + insert into takes values('26427', '974', '1', 'Fall', 2003, 'B-'); + insert into takes values('34126', '362', '3', 'Spring', 2008, 'A '); + insert into takes values('2139', '631', '1', 'Spring', 2007, 'C '); + insert into takes values('66356', '959', '1', 'Fall', 2006, 'A '); + insert into takes values('73186', '793', '1', 'Spring', 2002, 'A+'); + insert into takes values('62487', '603', '1', 'Fall', 2003, 'A-'); + insert into takes values('75596', '239', '1', 'Fall', 2006, 'A-'); + insert into takes values('760', '237', '1', 'Spring', 2008, 'C-'); + insert into takes values('49214', '793', '1', 'Spring', 2002, 'C '); + insert into takes values('29192', '468', '1', 'Fall', 2005, 'C-'); + insert into takes values('8860', '791', '1', 'Spring', 2006, 'C-'); + insert into takes values('47670', '974', '1', 'Fall', 2003, 'C-'); + insert into takes values('97590', '802', '1', 'Spring', 2003, 'C-'); + insert into takes values('9659', '612', '1', 'Fall', 2007, 'B '); + insert into takes values('78858', '591', '1', 'Spring', 2005, 'C-'); + insert into takes values('32490', '760', '1', 'Spring', 2004, 'A '); + insert into takes values('25552', '421', '1', 'Fall', 2004, 'A-'); + insert into takes values('12236', '527', '1', 'Fall', 2004, 'B '); + insert into takes values('73387', '445', '1', 'Spring', 2001, 'C-'); + insert into takes values('24325', '319', '1', 'Spring', 2003, 'C+'); + insert into takes values('23475', '415', '1', 'Fall', 2010, 'A '); + insert into takes values('11201', '158', '2', 'Spring', 2008, 'A+'); + insert into takes values('39704', '242', '1', 'Fall', 2009, 'A '); + insert into takes values('89188', '334', '1', 'Fall', 2009, 'C '); + insert into takes values('99775', '158', '1', 'Fall', 2008, 'B '); + insert into takes values('61166', '735', '2', 'Spring', 2010, 'C '); + insert into takes values('89759', '864', '1', 'Spring', 2006, 'C '); + insert into takes values('47379', '200', '2', 'Fall', 2002, 'C-'); + insert into takes values('36494', '496', '1', 'Fall', 2001, 'A-'); + insert into takes values('91799', '338', '2', 'Spring', 2006, 'B+'); + insert into takes values('15328', '927', '1', 'Fall', 2002, 'A '); + insert into takes values('63502', '735', '2', 'Spring', 2010, 'A+'); + insert into takes values('73186', '158', '1', 'Fall', 2008, 'C+'); + insert into takes values('5943', '867', '2', 'Fall', 2010, 'C+'); + insert into takes values('95850', '960', '1', 'Fall', 2009, 'C '); + insert into takes values('84432', '581', '1', 'Spring', 2005, 'A '); + insert into takes values('99271', '704', '1', 'Spring', 2008, 'A-'); + insert into takes values('11152', '200', '1', 'Spring', 2007, 'B+'); + insert into takes values('22417', '704', '1', 'Spring', 2008, 'C-'); + insert into takes values('30252', '960', '2', 'Fall', 2006, 'B-'); + insert into takes values('75510', '629', '1', 'Spring', 2003, 'B '); + insert into takes values('30341', '338', '2', 'Spring', 2006, 'A-'); + insert into takes values('73165', '445', '1', 'Spring', 2001, 'A-'); + insert into takes values('40481', '486', '1', 'Fall', 2009, 'B+'); + insert into takes values('59397', '239', '1', 'Fall', 2006, 'B '); + insert into takes values('3639', '258', '1', 'Fall', 2007, 'A '); + insert into takes values('67793', '974', '1', 'Fall', 2003, 'B-'); + insert into takes values('57242', '274', '1', 'Fall', 2002, 'B-'); + insert into takes values('93491', '991', '1', 'Spring', 2008, 'A '); + insert into takes values('51093', '313', '1', 'Fall', 2010, 'A '); + insert into takes values('847', '338', '2', 'Spring', 2006, 'A '); + insert into takes values('14023', '561', '1', 'Fall', 2006, 'C+'); + insert into takes values('12711', '561', '1', 'Fall', 2006, 'B '); + insert into takes values('79329', '169', '2', 'Fall', 2002, 'B+'); + insert into takes values('85904', '974', '1', 'Fall', 2003, 'C+'); + insert into takes values('39619', '663', '1', 'Spring', 2005, 'B '); + insert into takes values('6673', '747', '1', 'Spring', 2004, 'A-'); + insert into takes values('17057', '603', '1', 'Fall', 2003, 'A+'); + insert into takes values('94311', '843', '1', 'Fall', 2010, 'C+'); + insert into takes values('10705', '663', '1', 'Spring', 2005, 'C-'); + insert into takes values('57135', '345', '1', 'Spring', 2008, 'B '); + insert into takes values('90567', '875', '1', 'Spring', 2005, 'C '); + insert into takes values('44038', '599', '1', 'Spring', 2003, 'A-'); + insert into takes values('32954', '169', '1', 'Spring', 2007, 'B+'); + insert into takes values('36379', '270', '1', 'Spring', 2010, 'C '); + insert into takes values('71904', '258', '1', 'Fall', 2007, 'A-'); + insert into takes values('83170', '400', '2', 'Fall', 2003, 'C-'); + insert into takes values('19766', '561', '1', 'Fall', 2006, 'C-'); + insert into takes values('39046', '486', '1', 'Fall', 2009, 'B-'); + insert into takes values('62520', '443', '1', 'Spring', 2010, 'C+'); + insert into takes values('99710', '338', '1', 'Spring', 2007, 'B-'); + insert into takes values('90448', '408', '2', 'Spring', 2003, 'C+'); + insert into takes values('78572', '960', '1', 'Fall', 2009, 'B '); + insert into takes values('39115', '735', '2', 'Spring', 2010, 'B+'); + insert into takes values('2133', '362', '3', 'Spring', 2008, 'C '); + insert into takes values('53490', '559', '1', 'Fall', 2002, 'B '); + insert into takes values('52076', '319', '1', 'Spring', 2003, 'B '); + insert into takes values('75794', '445', '1', 'Spring', 2001, 'A+'); + insert into takes values('21401', '200', '2', 'Fall', 2002, 'C '); + insert into takes values('53728', '421', '1', 'Fall', 2004, 'B+'); + insert into takes values('82082', '802', '1', 'Spring', 2003, 'B-'); + insert into takes values('31080', '843', '1', 'Fall', 2010, 'B '); + insert into takes values('48611', '376', '1', 'Fall', 2006, 'C-'); + insert into takes values('32886', '808', '1', 'Fall', 2003, 'A '); + insert into takes values('30474', '493', '1', 'Spring', 2010, 'A-'); + insert into takes values('16057', '200', '2', 'Fall', 2002, 'A-'); + insert into takes values('31993', '612', '1', 'Fall', 2007, 'B '); + insert into takes values('1827', '352', '1', 'Spring', 2006, 'B '); + insert into takes values('27952', '704', '1', 'Spring', 2008, 'B-'); + insert into takes values('82039', '991', '1', 'Spring', 2008, 'C '); + insert into takes values('81550', '692', '1', 'Spring', 2010, 'B+'); + insert into takes values('37653', '591', '1', 'Spring', 2005, 'C '); + insert into takes values('35588', '702', '1', 'Spring', 2001, 'A '); + insert into takes values('66090', '489', '1', 'Fall', 2007, 'A '); + insert into takes values('59848', '972', '1', 'Spring', 2009, 'C+'); + insert into takes values('88525', '362', '3', 'Spring', 2008, 'C-'); + insert into takes values('17057', '612', '1', 'Fall', 2007, 'C '); + insert into takes values('24325', '991', '1', 'Spring', 2008, 'B '); + insert into takes values('26494', '334', '1', 'Fall', 2009, 'C+'); + insert into takes values('23373', '443', '2', 'Spring', 2002, 'B+'); + insert into takes values('66753', '692', '1', 'Spring', 2010, 'C+'); + insert into takes values('17911', '362', '1', 'Fall', 2005, 'C '); + insert into takes values('63645', '808', '1', 'Fall', 2003, 'C-'); + insert into takes values('12236', '893', '1', 'Fall', 2007, 'C-'); + insert into takes values('20445', '663', '1', 'Spring', 2005, 'C '); + insert into takes values('11855', '376', '1', 'Fall', 2006, 'B-'); + insert into takes values('70918', '893', '1', 'Fall', 2007, 'B '); + insert into takes values('5961', '258', '1', 'Fall', 2007, 'B-'); + insert into takes values('14432', '274', '1', 'Fall', 2002, 'C '); + insert into takes values('51416', '468', '1', 'Fall', 2005, 'C '); + insert into takes values('80698', '158', '1', 'Fall', 2008, 'C-'); + insert into takes values('8986', '482', '1', 'Fall', 2005, 'B-'); + insert into takes values('99348', '612', '1', 'Fall', 2007, 'C-'); + insert into takes values('31341', '974', '1', 'Fall', 2003, 'C-'); + insert into takes values('75596', '105', '1', 'Fall', 2009, 'B-'); + insert into takes values('31337', '949', '1', 'Fall', 2007, 'B+'); + insert into takes values('24796', '352', '1', 'Spring', 2006, 'A '); + insert into takes values('16405', '559', '1', 'Fall', 2002, 'A+'); + insert into takes values('28361', '105', '1', 'Fall', 2009, 'C+'); + insert into takes values('38121', '864', '1', 'Spring', 2006, 'C '); + insert into takes values('76173', '489', '1', 'Fall', 2007, 'A-'); + insert into takes values('83462', '748', '1', 'Fall', 2003, 'A-'); + insert into takes values('37734', '808', '1', 'Fall', 2003, 'B+'); + insert into takes values('72521', '867', '2', 'Fall', 2010, 'A+'); + insert into takes values('57160', '735', '2', 'Spring', 2010, 'A '); + insert into takes values('75252', '991', '1', 'Spring', 2008, 'C+'); + insert into takes values('24746', '486', '1', 'Fall', 2009, 'B '); + insert into takes values('65038', '960', '1', 'Fall', 2009, 'A-'); + insert into takes values('89196', '974', '1', 'Fall', 2003, 'C-'); + insert into takes values('65056', '489', '1', 'Fall', 2007, 'C-'); + insert into takes values('64893', '702', '1', 'Spring', 2001, 'B+'); + insert into takes values('8843', '362', '1', 'Fall', 2005, 'B+'); + insert into takes values('86529', '702', '1', 'Spring', 2001, 'A-'); + insert into takes values('22057', '793', '1', 'Spring', 2002, 'B-'); + insert into takes values('31560', '795', '1', 'Spring', 2004, 'A+'); + insert into takes values('88302', '795', '1', 'Spring', 2004, 'C '); + insert into takes values('31250', '319', '1', 'Spring', 2003, 'C '); + insert into takes values('37653', '793', '1', 'Spring', 2002, 'C-'); + insert into takes values('43854', '461', '1', 'Fall', 2002, 'B '); + insert into takes values('14432', '949', '1', 'Fall', 2007, 'B-'); + insert into takes values('98140', '852', '1', 'Spring', 2008, 'C-'); + insert into takes values('8251', '959', '1', 'Fall', 2006, 'A '); + insert into takes values('25143', '626', '1', 'Fall', 2006, 'B '); + insert into takes values('11126', '735', '2', 'Spring', 2010, 'B '); + insert into takes values('13023', '793', '1', 'Spring', 2002, 'B-'); + insert into takes values('64642', '704', '1', 'Spring', 2008, 'B+'); + insert into takes values('74840', '242', '1', 'Fall', 2009, 'A '); + insert into takes values('62716', '496', '1', 'Fall', 2001, 'B-'); + insert into takes values('19582', '612', '1', 'Fall', 2007, 'C '); + insert into takes values('93354', '349', '1', 'Spring', 2008, 'C-'); + insert into takes values('35042', '258', '1', 'Fall', 2007, 'B+'); + insert into takes values('43226', '366', '1', 'Fall', 2005, 'A-'); + insert into takes values('85366', '852', '1', 'Spring', 2008, 'B+'); + insert into takes values('63243', '461', '1', 'Fall', 2002, 'B '); + insert into takes values('163', '468', '2', 'Fall', 2007, 'C+'); + insert into takes values('95850', '527', '1', 'Fall', 2004, 'A '); + insert into takes values('36494', '747', '1', 'Spring', 2004, 'B '); + insert into takes values('79772', '704', '1', 'Spring', 2008, 'A-'); + insert into takes values('57156', '192', '1', 'Fall', 2002, 'C '); + insert into takes values('55286', '362', '1', 'Fall', 2005, 'B '); + insert into takes values('36303', '200', '2', 'Fall', 2002, 'A-'); + insert into takes values('49205', '867', '2', 'Fall', 2010, 'C+'); + insert into takes values('68554', '663', '1', 'Spring', 2005, 'C-'); + insert into takes values('39978', '642', '1', 'Fall', 2004, 'A '); + insert into takes values('83214', '694', '1', 'Fall', 2002, 'A '); + insert into takes values('6990', '408', '1', 'Spring', 2007, 'A+'); + insert into takes values('83511', '304', '1', 'Fall', 2009, 'B-'); + insert into takes values('64820', '169', '2', 'Fall', 2002, 'C '); + insert into takes values('59848', '808', '1', 'Fall', 2003, 'B+'); + insert into takes values('33201', '334', '1', 'Fall', 2009, 'A+'); + insert into takes values('82697', '959', '1', 'Fall', 2006, 'C-'); + insert into takes values('52866', '457', '1', 'Spring', 2001, 'B+'); + insert into takes values('72358', '362', '2', 'Fall', 2006, 'B-'); + insert into takes values('81884', '313', '1', 'Fall', 2010, 'C '); + insert into takes values('61402', '242', '1', 'Fall', 2009, 'C+'); + insert into takes values('65144', '991', '1', 'Spring', 2008, 'A-'); + insert into takes values('29192', '875', '1', 'Spring', 2005, 'C '); + insert into takes values('163', '274', '1', 'Fall', 2002, 'A '); + insert into takes values('80254', '482', '1', 'Fall', 2005, 'C '); + insert into takes values('22170', '366', '1', 'Fall', 2005, 'C+'); + insert into takes values('83039', '496', '1', 'Fall', 2001, 'C-'); + insert into takes values('78637', '663', '1', 'Spring', 2005, 'A+'); + insert into takes values('91799', '991', '1', 'Spring', 2008, 'B-'); + insert into takes values('40682', '949', '1', 'Fall', 2007, 'B+'); + insert into takes values('75395', '867', '2', 'Fall', 2010, 'B '); + insert into takes values('29863', '443', '1', 'Spring', 2010, 'A-'); + insert into takes values('41894', '795', '1', 'Spring', 2004, 'B+'); + insert into takes values('51203', '158', '2', 'Spring', 2008, 'B '); + insert into takes values('39241', '571', '1', 'Spring', 2004, 'C-'); + insert into takes values('66495', '489', '1', 'Fall', 2007, 'A+'); + insert into takes values('22345', '663', '1', 'Spring', 2005, 'C '); + insert into takes values('50013', '408', '1', 'Spring', 2007, 'B-'); + insert into takes values('79697', '366', '1', 'Fall', 2005, 'C '); + insert into takes values('37430', '334', '1', 'Fall', 2009, 'B '); + insert into takes values('5017', '702', '1', 'Spring', 2001, 'A '); + insert into takes values('81789', '408', '1', 'Spring', 2007, 'A+'); + insert into takes values('72485', '237', '2', 'Fall', 2009, 'A-'); + insert into takes values('63502', '642', '1', 'Fall', 2004, 'C '); + insert into takes values('67033', '875', '1', 'Spring', 2005, 'C-'); + insert into takes values('67514', '629', '1', 'Spring', 2003, 'A+'); + insert into takes values('6895', '426', '1', 'Spring', 2006, 'A-'); + insert into takes values('19638', '105', '1', 'Fall', 2009, 'A+'); + insert into takes values('33817', '631', '1', 'Spring', 2007, 'C-'); + insert into takes values('13023', '468', '1', 'Fall', 2005, 'C '); + insert into takes values('95697', '591', '1', 'Spring', 2005, 'C '); + insert into takes values('59172', '962', '1', 'Spring', 2008, 'C+'); + insert into takes values('61783', '867', '2', 'Fall', 2010, 'A '); + insert into takes values('90124', '748', '1', 'Fall', 2003, 'B-'); + insert into takes values('17507', '791', '1', 'Spring', 2006, 'C '); + insert into takes values('95089', '591', '1', 'Spring', 2005, 'A+'); + insert into takes values('85356', '864', '1', 'Spring', 2006, 'C '); + insert into takes values('99760', '445', '1', 'Spring', 2001, 'C-'); + insert into takes values('65681', '319', '1', 'Spring', 2003, 'C+'); + insert into takes values('41345', '239', '1', 'Fall', 2006, 'B-'); + insert into takes values('27662', '482', '1', 'Fall', 2005, 'C+'); + insert into takes values('64249', '200', '1', 'Spring', 2007, 'A-'); + insert into takes values('96772', '959', '1', 'Fall', 2006, 'A+'); + insert into takes values('33817', '735', '1', 'Spring', 2003, 'B '); + insert into takes values('21401', '169', '2', 'Fall', 2002, 'C '); + insert into takes values('5463', '457', '1', 'Spring', 2001, 'B-'); + insert into takes values('74163', '791', '1', 'Spring', 2006, 'C+'); + insert into takes values('57135', '692', '1', 'Spring', 2010, 'B '); + insert into takes values('33759', '642', '1', 'Fall', 2004, 'A '); + insert into takes values('63502', '760', '1', 'Spring', 2004, 'B '); + insert into takes values('54622', '960', '2', 'Fall', 2006, 'C '); + insert into takes values('51817', '486', '1', 'Fall', 2009, 'A+'); + insert into takes values('32065', '692', '1', 'Spring', 2010, 'A-'); + insert into takes values('31993', '599', '1', 'Spring', 2003, 'A '); + insert into takes values('75040', '486', '1', 'Fall', 2009, 'C-'); + insert into takes values('53496', '696', '1', 'Spring', 2002, 'B '); + insert into takes values('75534', '486', '1', 'Fall', 2009, 'A-'); + insert into takes values('26473', '352', '1', 'Spring', 2006, 'C+'); + insert into takes values('40937', '352', '1', 'Spring', 2006, 'C '); + insert into takes values('94998', '843', '1', 'Fall', 2010, 'C+'); + insert into takes values('27017', '493', '1', 'Spring', 2010, 'C+'); + insert into takes values('40303', '362', '1', 'Fall', 2005, 'B-'); + insert into takes values('64724', '642', '1', 'Fall', 2004, 'C '); + insert into takes values('92965', '802', '1', 'Spring', 2003, 'A-'); + insert into takes values('22396', '843', '1', 'Fall', 2010, 'B '); + insert into takes values('82697', '545', '1', 'Fall', 2001, 'B '); + insert into takes values('31101', '631', '1', 'Spring', 2007, 'B-'); + insert into takes values('44998', '334', '1', 'Fall', 2009, 'A-'); + insert into takes values('16075', '959', '1', 'Fall', 2006, 'C '); + insert into takes values('70395', '493', '1', 'Spring', 2010, 'B-'); + insert into takes values('41988', '867', '2', 'Fall', 2010, 'A '); + insert into takes values('11966', '352', '1', 'Spring', 2006, 'B-'); + insert into takes values('85904', '345', '1', 'Spring', 2008, 'C '); + insert into takes values('81538', '482', '1', 'Fall', 2005, 'A-'); + insert into takes values('95089', '158', '2', 'Spring', 2008, 'C+'); + insert into takes values('9659', '105', '1', 'Fall', 2009, 'C-'); + insert into takes values('51238', '571', '1', 'Spring', 2004, 'A '); + insert into takes values('33201', '376', '1', 'Fall', 2006, 'A+'); + insert into takes values('53588', '200', '2', 'Fall', 2002, 'B-'); + insert into takes values('7498', '496', '1', 'Fall', 2001, 'B '); + insert into takes values('64938', '476', '1', 'Fall', 2010, 'C-'); + insert into takes values('50944', '527', '1', 'Fall', 2004, 'C-'); + insert into takes values('70384', '192', '1', 'Fall', 2002, 'C+'); + insert into takes values('50743', '972', '1', 'Spring', 2009, 'B-'); + insert into takes values('50598', '793', '1', 'Spring', 2002, 'A '); + insert into takes values('61854', '468', '1', 'Fall', 2005, 'B '); + insert into takes values('96134', '457', '1', 'Spring', 2001, 'C '); + insert into takes values('34392', '679', '1', 'Spring', 2010, 'C+'); + insert into takes values('5399', '334', '1', 'Fall', 2009, 'C-'); + insert into takes values('12173', '192', '1', 'Fall', 2002, 'A+'); + insert into takes values('64138', '200', '2', 'Fall', 2002, 'B '); + insert into takes values('46442', '612', '1', 'Fall', 2007, 'C+'); + insert into takes values('76270', '362', '3', 'Spring', 2008, 'B '); + insert into takes values('76759', '843', '1', 'Fall', 2010, 'A '); + insert into takes values('39520', '875', '1', 'Spring', 2005, 'B+'); + insert into takes values('49813', '158', '1', 'Fall', 2008, 'B '); + insert into takes values('32368', '867', '2', 'Fall', 2010, 'A-'); + insert into takes values('30289', '962', '1', 'Spring', 2008, 'A+'); + insert into takes values('97435', '545', '1', 'Fall', 2001, 'A+'); + insert into takes values('53788', '443', '1', 'Spring', 2010, 'B+'); + insert into takes values('98388', '694', '1', 'Fall', 2002, 'B+'); + insert into takes values('60224', '362', '3', 'Spring', 2008, 'A+'); + insert into takes values('44584', '362', '2', 'Fall', 2006, 'C+'); + insert into takes values('62728', '400', '1', 'Spring', 2007, 'C '); + insert into takes values('68330', '663', '1', 'Spring', 2005, 'B '); + insert into takes values('78637', '400', '2', 'Fall', 2003, 'B+'); + insert into takes values('2970', '169', '1', 'Spring', 2007, 'C-'); + insert into takes values('39520', '468', '2', 'Fall', 2007, 'A+'); + insert into takes values('36019', '692', '1', 'Spring', 2010, 'C+'); + insert into takes values('64082', '137', '1', 'Spring', 2002, 'A+'); + insert into takes values('80912', '258', '1', 'Fall', 2007, 'C-'); + insert into takes values('8457', '319', '1', 'Spring', 2003, 'C+'); + insert into takes values('62832', '559', '1', 'Fall', 2002, 'C '); + insert into takes values('46442', '443', '2', 'Spring', 2002, 'C '); + insert into takes values('92659', '496', '1', 'Fall', 2001, 'A '); + insert into takes values('43505', '795', '1', 'Spring', 2004, 'C+'); + insert into takes values('4034', '319', '1', 'Spring', 2003, 'C+'); + insert into takes values('96227', '158', '2', 'Spring', 2008, 'A '); + insert into takes values('79534', '443', '2', 'Spring', 2002, 'B-'); + insert into takes values('29920', '237', '1', 'Spring', 2008, 'A+'); + insert into takes values('89140', '760', '1', 'Spring', 2004, 'C+'); + insert into takes values('38013', '679', '1', 'Spring', 2010, 'A-'); + insert into takes values('3545', '808', '1', 'Fall', 2003, 'B+'); + insert into takes values('90353', '735', '2', 'Spring', 2010, 'A-'); + insert into takes values('14214', '927', '1', 'Fall', 2002, 'B-'); + insert into takes values('87785', '793', '1', 'Spring', 2002, 'A+'); + insert into takes values('72521', '694', '1', 'Fall', 2002, 'A-'); + insert into takes values('46769', '949', '1', 'Fall', 2007, 'C-'); + insert into takes values('29849', '408', '2', 'Spring', 2003, 'B+'); + insert into takes values('35588', '401', '1', 'Fall', 2003, 'C '); + insert into takes values('49280', '735', '1', 'Spring', 2003, 'B+'); + insert into takes values('76246', '362', '1', 'Fall', 2005, 'C+'); + insert into takes values('98388', '304', '1', 'Fall', 2009, 'A+'); + insert into takes values('84039', '461', '1', 'Fall', 2002, 'C '); + insert into takes values('76953', '242', '1', 'Fall', 2009, 'B '); + insert into takes values('5843', '748', '1', 'Fall', 2003, 'A+'); + insert into takes values('45650', '960', '1', 'Fall', 2009, 'C '); + insert into takes values('40303', '802', '1', 'Spring', 2003, 'A '); + insert into takes values('10693', '949', '1', 'Fall', 2007, 'A-'); + insert into takes values('55940', '631', '1', 'Spring', 2007, 'A+'); + insert into takes values('3487', '200', '2', 'Fall', 2002, 'B+'); + insert into takes values('97551', '457', '1', 'Spring', 2001, 'B '); + insert into takes values('56499', '158', '1', 'Fall', 2008, 'A+'); + insert into takes values('76604', '959', '1', 'Fall', 2006, 'C '); + insert into takes values('26102', '362', '3', 'Spring', 2008, 'B+'); + insert into takes values('90220', '200', '2', 'Fall', 2002, 'C '); + insert into takes values('27956', '591', '1', 'Spring', 2005, 'A '); + insert into takes values('14284', '169', '1', 'Spring', 2007, 'B '); + insert into takes values('52019', '748', '1', 'Fall', 2003, 'C+'); + insert into takes values('64893', '603', '1', 'Fall', 2003, 'C-'); + insert into takes values('39619', '319', '1', 'Spring', 2003, 'A+'); + insert into takes values('18367', '747', '1', 'Spring', 2004, 'B '); + insert into takes values('87965', '852', '1', 'Spring', 2008, 'A-'); + insert into takes values('72014', '991', '1', 'Spring', 2008, 'B '); + insert into takes values('30858', '345', '1', 'Spring', 2008, 'C+'); + insert into takes values('43616', '591', '1', 'Spring', 2005, 'A+'); + insert into takes values('92839', '338', '2', 'Spring', 2006, 'C '); + insert into takes values('26619', '362', '2', 'Fall', 2006, 'A '); + insert into takes values('67660', '334', '1', 'Fall', 2009, 'A '); + insert into takes values('45720', '376', '1', 'Fall', 2006, 'B+'); + insert into takes values('24201', '960', '1', 'Fall', 2009, 'B '); + insert into takes values('2848', '362', '2', 'Fall', 2006, 'A+'); + insert into takes values('53048', '791', '1', 'Spring', 2006, 'C '); + insert into takes values('6367', '362', '1', 'Fall', 2005, 'B-'); + insert into takes values('81610', '105', '1', 'Fall', 2009, 'A-'); + insert into takes values('14182', '237', '1', 'Spring', 2008, 'B '); + insert into takes values('74672', '137', '1', 'Spring', 2002, 'C+'); + insert into takes values('557', '631', '1', 'Spring', 2007, 'C '); + insert into takes values('54620', '158', '2', 'Spring', 2008, 'B+'); + insert into takes values('77244', '158', '2', 'Spring', 2008, 'B-'); + insert into takes values('57377', '349', '1', 'Spring', 2008, 'A-'); + insert into takes values('86806', '991', '1', 'Spring', 2008, 'B-'); + insert into takes values('64731', '603', '1', 'Fall', 2003, 'A-'); + insert into takes values('62549', '626', '1', 'Fall', 2006, 'C+'); + insert into takes values('64642', '949', '1', 'Fall', 2007, 'B-'); + insert into takes values('40481', '692', '1', 'Spring', 2010, 'C+'); + insert into takes values('57107', '692', '1', 'Spring', 2010, 'C-'); + insert into takes values('55915', '237', '2', 'Fall', 2009, 'B-'); + insert into takes values('65979', '493', '1', 'Spring', 2010, 'B '); + insert into takes values('90448', '489', '1', 'Fall', 2007, 'B '); + insert into takes values('84704', '242', '1', 'Fall', 2009, 'A '); + insert into takes values('50414', '679', '1', 'Spring', 2010, 'C '); + insert into takes values('35588', '158', '1', 'Fall', 2008, 'B+'); + insert into takes values('94535', '468', '1', 'Fall', 2005, 'A+'); + insert into takes values('44998', '270', '1', 'Spring', 2010, 'B-'); + insert into takes values('78454', '791', '1', 'Spring', 2006, 'C '); + insert into takes values('65433', '421', '1', 'Fall', 2004, 'C-'); + insert into takes values('99780', '974', '1', 'Fall', 2003, 'A+'); + insert into takes values('86552', '959', '1', 'Fall', 2006, 'B+'); + insert into takes values('58413', '445', '1', 'Spring', 2001, 'B-'); + insert into takes values('33882', '445', '1', 'Spring', 2001, 'B-'); + insert into takes values('34502', '338', '1', 'Spring', 2007, 'C+'); + insert into takes values('97023', '604', '1', 'Spring', 2009, 'C-'); + insert into takes values('18234', '408', '2', 'Spring', 2003, 'C '); + insert into takes values('58701', '408', '2', 'Spring', 2003, 'B+'); + insert into takes values('53185', '760', '1', 'Spring', 2004, 'C '); + insert into takes values('77664', '352', '1', 'Spring', 2006, 'B+'); + insert into takes values('39472', '561', '1', 'Fall', 2006, 'A '); + insert into takes values('19362', '802', '1', 'Spring', 2003, 'B '); + insert into takes values('56124', '258', '1', 'Fall', 2007, 'C-'); + insert into takes values('82687', '242', '1', 'Fall', 2009, 'A+'); + insert into takes values('5871', '239', '1', 'Fall', 2006, 'C+'); + insert into takes values('20195', '408', '1', 'Spring', 2007, 'C '); + insert into takes values('61232', '482', '1', 'Fall', 2005, 'A+'); + insert into takes values('84845', '334', '1', 'Fall', 2009, 'C+'); + insert into takes values('50719', '791', '1', 'Spring', 2006, 'B+'); + insert into takes values('92442', '158', '2', 'Spring', 2008, 'A-'); + insert into takes values('80821', '626', '1', 'Fall', 2006, 'A '); + insert into takes values('67810', '362', '2', 'Fall', 2006, 'A-'); + insert into takes values('39521', '338', '2', 'Spring', 2006, 'A+'); + insert into takes values('24201', '486', '1', 'Fall', 2009, 'C '); + insert into takes values('56755', '802', '1', 'Spring', 2003, 'B+'); + insert into takes values('97101', '169', '1', 'Spring', 2007, 'B+'); + insert into takes values('1836', '864', '1', 'Spring', 2006, 'C-'); + insert into takes values('28352', '476', '1', 'Fall', 2010, 'B '); + insert into takes values('52187', '237', '1', 'Spring', 2008, 'C '); + insert into takes values('83686', '591', '1', 'Spring', 2005, 'A '); + insert into takes values('16297', '642', '1', 'Fall', 2004, 'C+'); + insert into takes values('43989', '793', '1', 'Spring', 2002, 'C-'); + insert into takes values('87280', '468', '2', 'Fall', 2007, 'B '); + insert into takes values('61354', '960', '2', 'Fall', 2006, 'A '); + insert into takes values('82697', '349', '1', 'Spring', 2008, 'A '); + insert into takes values('13403', '696', '1', 'Spring', 2002, 'C+'); + insert into takes values('97228', '408', '2', 'Spring', 2003, 'B-'); + insert into takes values('94726', '604', '1', 'Spring', 2009, 'A-'); + insert into takes values('39892', '527', '1', 'Fall', 2004, 'A+'); + insert into takes values('56499', '974', '1', 'Fall', 2003, 'C '); + insert into takes values('38676', '748', '1', 'Fall', 2003, 'A+'); + insert into takes values('95631', '237', '1', 'Spring', 2008, 'A-'); + insert into takes values('2178', '400', '1', 'Spring', 2007, 'B+'); + insert into takes values('99754', '972', '1', 'Spring', 2009, 'A-'); + insert into takes values('57456', '760', '1', 'Spring', 2004, 'A-'); + insert into takes values('83747', '313', '1', 'Fall', 2010, 'B-'); + insert into takes values('19245', '362', '1', 'Fall', 2005, 'A '); + insert into takes values('72669', '748', '1', 'Fall', 2003, 'C+'); + insert into takes values('32483', '960', '2', 'Fall', 2006, 'A '); + insert into takes values('67810', '137', '1', 'Spring', 2002, 'C '); + insert into takes values('17831', '663', '1', 'Spring', 2005, 'A '); + insert into takes values('96246', '694', '1', 'Fall', 2002, 'C+'); + insert into takes values('70061', '962', '1', 'Spring', 2008, 'B '); + insert into takes values('41674', '401', '1', 'Fall', 2003, 'B '); + insert into takes values('46762', '867', '2', 'Fall', 2010, 'A '); + insert into takes values('5463', '843', '1', 'Fall', 2010, 'B+'); + insert into takes values('30650', '991', '1', 'Spring', 2008, 'C-'); + insert into takes values('70099', '349', '1', 'Spring', 2008, 'A+'); + insert into takes values('9605', '366', '1', 'Fall', 2005, 'B-'); + insert into takes values('12069', '852', '1', 'Spring', 2008, 'C '); + insert into takes values('46694', '694', '1', 'Fall', 2002, 'A '); + insert into takes values('55170', '376', '1', 'Fall', 2006, 'B+'); + insert into takes values('9460', '362', '2', 'Fall', 2006, 'C-'); + insert into takes values('82974', '591', '1', 'Spring', 2005, 'B '); + insert into takes values('58469', '704', '1', 'Spring', 2008, 'A+'); + insert into takes values('67514', '692', '1', 'Spring', 2010, 'A '); + insert into takes values('73602', '795', '1', 'Spring', 2004, 'A+'); + insert into takes values('10663', '959', '1', 'Fall', 2006, 'C '); + insert into takes values('34404', '338', '2', 'Spring', 2006, 'A-'); + insert into takes values('19861', '408', '1', 'Spring', 2007, 'C-'); + insert into takes values('38895', '421', '1', 'Fall', 2004, 'B+'); + insert into takes values('19050', '415', '1', 'Fall', 2010, 'B+'); + insert into takes values('987', '959', '1', 'Fall', 2006, 'C+'); + insert into takes values('89140', '319', '1', 'Spring', 2003, 'A+'); + insert into takes values('97400', '571', '1', 'Spring', 2004, 'C '); + insert into takes values('33107', '105', '1', 'Fall', 2009, 'C-'); + insert into takes values('75241', '626', '1', 'Fall', 2006, 'C-'); + insert into takes values('88553', '319', '1', 'Spring', 2003, 'A '); + insert into takes values('65299', '105', '2', 'Fall', 2002, 'B-'); + insert into takes values('74911', '338', '2', 'Spring', 2006, 'A '); + insert into takes values('91343', '893', '1', 'Fall', 2007, 'A '); + insert into takes values('13511', '486', '1', 'Fall', 2009, 'A+'); + insert into takes values('13403', '319', '1', 'Spring', 2003, 'B '); + insert into takes values('28004', '468', '2', 'Fall', 2007, 'B-'); + insert into takes values('99073', '791', '1', 'Spring', 2006, 'B '); + insert into takes values('44816', '105', '2', 'Fall', 2002, 'A '); + insert into takes values('86981', '426', '1', 'Spring', 2006, 'A+'); + insert into takes values('50537', '867', '2', 'Fall', 2010, 'C '); + insert into takes values('65443', '345', '1', 'Spring', 2008, 'A+'); + insert into takes values('84654', '795', '1', 'Spring', 2004, 'B '); + insert into takes values('72485', '496', '1', 'Fall', 2001, 'C+'); + insert into takes values('7287', '631', '1', 'Spring', 2007, 'B-'); + insert into takes values('46970', '704', '1', 'Spring', 2008, 'B '); + insert into takes values('12683', '400', '2', 'Fall', 2003, 'A '); + insert into takes values('288', '663', '1', 'Spring', 2005, 'C+'); + insert into takes values('82697', '158', '1', 'Fall', 2008, 'A '); + insert into takes values('97065', '527', '1', 'Fall', 2004, 'A+'); + insert into takes values('37430', '808', '1', 'Fall', 2003, 'A-'); + insert into takes values('85614', '581', '1', 'Spring', 2005, 'A '); + insert into takes values('75173', '408', '2', 'Spring', 2003, 'B+'); + insert into takes values('61354', '927', '1', 'Fall', 2002, 'C '); + insert into takes values('92949', '960', '2', 'Fall', 2006, 'B+'); + insert into takes values('10076', '663', '1', 'Spring', 2005, 'A '); + insert into takes values('13081', '200', '2', 'Fall', 2002, 'B '); + insert into takes values('27687', '802', '1', 'Spring', 2003, 'B '); + insert into takes values('45083', '735', '1', 'Spring', 2003, 'B '); + insert into takes values('50719', '559', '1', 'Fall', 2002, 'C+'); + insert into takes values('1836', '345', '1', 'Spring', 2008, 'B '); + insert into takes values('34542', '415', '1', 'Fall', 2010, 'A+'); + insert into takes values('25331', '629', '1', 'Spring', 2003, 'B-'); + insert into takes values('82301', '581', '1', 'Spring', 2005, 'C+'); + insert into takes values('28977', '559', '1', 'Fall', 2002, 'C '); + insert into takes values('24002', '400', '1', 'Spring', 2007, 'C-'); + insert into takes values('75173', '200', '2', 'Fall', 2002, 'B '); + insert into takes values('5250', '561', '1', 'Fall', 2006, 'A+'); + insert into takes values('65144', '200', '1', 'Spring', 2007, 'C+'); + insert into takes values('86001', '527', '1', 'Fall', 2004, 'A+'); + insert into takes values('77729', '362', '3', 'Spring', 2008, 'B-'); + insert into takes values('95284', '408', '1', 'Spring', 2007, 'B+'); + insert into takes values('73606', '571', '1', 'Spring', 2004, 'B '); + insert into takes values('78581', '735', '1', 'Spring', 2003, 'B-'); + insert into takes values('64121', '991', '1', 'Spring', 2008, 'A '); + insert into takes values('3335', '426', '1', 'Spring', 2006, 'B-'); + insert into takes values('97355', '604', '1', 'Spring', 2009, 'B+'); + insert into takes values('41596', '366', '1', 'Fall', 2005, 'C+'); + insert into takes values('60748', '349', '1', 'Spring', 2008, 'A '); + insert into takes values('1110', '400', '1', 'Spring', 2007, 'C+'); + insert into takes values('94324', '692', '1', 'Spring', 2010, 'C '); + insert into takes values('80057', '843', '1', 'Fall', 2010, 'A '); + insert into takes values('12683', '362', '1', 'Fall', 2005, 'C+'); + insert into takes values('95089', '270', '1', 'Spring', 2010, 'C+'); + insert into takes values('10076', '493', '1', 'Spring', 2010, 'B+'); + insert into takes values('8853', '445', '1', 'Spring', 2001, 'C '); + insert into takes values('15083', '345', '1', 'Spring', 2008, 'B+'); + insert into takes values('82918', '642', '1', 'Fall', 2004, 'B+'); + insert into takes values('76743', '793', '1', 'Spring', 2002, 'B '); + insert into takes values('14581', '760', '1', 'Spring', 2004, 'A+'); + insert into takes values('11530', '158', '2', 'Spring', 2008, 'B '); + insert into takes values('94371', '612', '1', 'Fall', 2007, 'B-'); + insert into takes values('29002', '864', '1', 'Spring', 2006, 'B-'); + insert into takes values('59455', '362', '1', 'Fall', 2005, 'C+'); + insert into takes values('7514', '561', '1', 'Fall', 2006, 'C-'); + insert into takes values('41299', '927', '1', 'Fall', 2002, 'B+'); + insert into takes values('59117', '960', '1', 'Fall', 2009, 'B-'); + insert into takes values('12563', '169', '1', 'Spring', 2007, 'A+'); + insert into takes values('12078', '482', '1', 'Fall', 2005, 'B+'); + insert into takes values('40682', '571', '1', 'Spring', 2004, 'B-'); + insert into takes values('78637', '875', '1', 'Spring', 2005, 'A+'); + insert into takes values('63040', '581', '1', 'Spring', 2005, 'A-'); + insert into takes values('62749', '867', '2', 'Fall', 2010, 'A+'); + insert into takes values('99553', '927', '1', 'Fall', 2002, 'A '); + insert into takes values('89312', '663', '1', 'Spring', 2005, 'B '); + insert into takes values('38712', '663', '1', 'Spring', 2005, 'A+'); + insert into takes values('7861', '991', '1', 'Spring', 2008, 'C '); + insert into takes values('76049', '476', '1', 'Fall', 2010, 'B '); + insert into takes values('56299', '304', '1', 'Fall', 2009, 'C+'); + insert into takes values('24116', '991', '1', 'Spring', 2008, 'C+'); + insert into takes values('81175', '960', '1', 'Fall', 2009, 'B-'); + insert into takes values('56143', '735', '1', 'Spring', 2003, 'A+'); + insert into takes values('64013', '864', '1', 'Spring', 2006, 'B+'); + insert into takes values('26147', '694', '1', 'Fall', 2002, 'C '); + insert into takes values('72521', '959', '1', 'Fall', 2006, 'B '); + insert into takes values('46260', '313', '1', 'Fall', 2010, 'A-'); + insert into takes values('35462', '334', '1', 'Fall', 2009, 'B-'); + insert into takes values('63288', '747', '1', 'Spring', 2004, 'A '); + insert into takes values('38895', '959', '1', 'Fall', 2006, 'B '); + insert into takes values('85211', '200', '2', 'Fall', 2002, 'A '); + insert into takes values('3651', '482', '1', 'Fall', 2005, 'C+'); + insert into takes values('56078', '426', '1', 'Spring', 2006, 'B+'); + insert into takes values('94311', '445', '1', 'Spring', 2001, 'B '); + insert into takes values('9947', '362', '2', 'Fall', 2006, 'A '); + insert into takes values('41261', '338', '1', 'Spring', 2007, 'B+'); + insert into takes values('58935', '604', '1', 'Spring', 2009, 'A '); + insert into takes values('59172', '476', '1', 'Fall', 2010, 'B-'); + insert into takes values('46450', '496', '1', 'Fall', 2001, 'B+'); + insert into takes values('36303', '496', '1', 'Fall', 2001, 'B-'); + insert into takes values('33791', '631', '1', 'Spring', 2007, 'A+'); + insert into takes values('67340', '959', '1', 'Fall', 2006, 'C+'); + insert into takes values('1812', '663', '1', 'Spring', 2005, 'C '); + insert into takes values('53077', '408', '2', 'Spring', 2003, 'A '); + insert into takes values('32245', '867', '1', 'Fall', 2006, 'A '); + insert into takes values('50966', '735', '2', 'Spring', 2010, 'A-'); + insert into takes values('69581', '843', '1', 'Fall', 2010, 'B-'); + insert into takes values('41741', '760', '1', 'Spring', 2004, 'A+'); + insert into takes values('86075', '468', '2', 'Fall', 2007, 'B+'); + insert into takes values('36494', '400', '2', 'Fall', 2003, 'C+'); + insert into takes values('58701', '200', '2', 'Fall', 2002, 'C+'); + insert into takes values('64138', '443', '2', 'Spring', 2002, 'C '); + insert into takes values('83836', '445', '1', 'Spring', 2001, 'C+'); + insert into takes values('978', '760', '1', 'Spring', 2004, 'B-'); + insert into takes values('1826', '735', '2', 'Spring', 2010, 'A '); + insert into takes values('7035', '612', '1', 'Fall', 2007, 'C+'); + insert into takes values('79911', '345', '1', 'Spring', 2008, 'A-'); + insert into takes values('52669', '802', '1', 'Spring', 2003, 'C+'); + insert into takes values('83480', '345', '1', 'Spring', 2008, 'A '); + insert into takes values('86707', '791', '1', 'Spring', 2006, 'C+'); + insert into takes values('98563', '345', '1', 'Spring', 2008, 'C-'); + insert into takes values('6673', '200', '1', 'Spring', 2007, 'A '); + insert into takes values('64121', '169', '2', 'Fall', 2002, 'A '); + insert into takes values('27044', '795', '1', 'Spring', 2004, 'B+'); + insert into takes values('56078', '679', '1', 'Spring', 2010, 'A-'); + insert into takes values('96895', '304', '1', 'Fall', 2009, 'C '); + insert into takes values('51923', '795', '1', 'Spring', 2004, 'C+'); + insert into takes values('99553', '496', '1', 'Fall', 2001, 'A '); + insert into takes values('67310', '599', '1', 'Spring', 2003, 'A+'); + insert into takes values('21789', '612', '1', 'Fall', 2007, 'A-'); + insert into takes values('17769', '949', '1', 'Fall', 2007, 'A '); + insert into takes values('7390', '338', '2', 'Spring', 2006, 'C-'); + insert into takes values('67810', '366', '1', 'Fall', 2005, 'A '); + insert into takes values('78782', '304', '1', 'Fall', 2009, 'B '); + insert into takes values('99977', '791', '1', 'Spring', 2006, 'A+'); + insert into takes values('70384', '304', '1', 'Fall', 2009, 'B '); + insert into takes values('16993', '867', '1', 'Fall', 2006, 'C-'); + insert into takes values('14023', '591', '1', 'Spring', 2005, 'A '); + insert into takes values('91569', '496', '1', 'Fall', 2001, 'B+'); + insert into takes values('49813', '802', '1', 'Spring', 2003, 'A-'); + insert into takes values('86674', '105', '2', 'Fall', 2002, 'A-'); + insert into takes values('82697', '366', '1', 'Fall', 2005, 'C '); + insert into takes values('66106', '366', '1', 'Fall', 2005, 'A '); + insert into takes values('98940', '679', '1', 'Spring', 2010, 'B+'); + insert into takes values('61444', '704', '1', 'Spring', 2008, 'B-'); + insert into takes values('91063', '457', '1', 'Spring', 2001, 'C+'); + insert into takes values('39472', '867', '2', 'Fall', 2010, 'B+'); + insert into takes values('53185', '304', '1', 'Fall', 2009, 'B '); + insert into takes values('34502', '867', '1', 'Fall', 2006, 'A+'); + insert into takes values('50944', '795', '1', 'Spring', 2004, 'C-'); + insert into takes values('24630', '468', '2', 'Fall', 2007, 'A+'); + insert into takes values('31442', '468', '2', 'Fall', 2007, 'A '); + insert into takes values('22057', '158', '1', 'Fall', 2008, 'B-'); + insert into takes values('14032', '875', '1', 'Spring', 2005, 'B '); + insert into takes values('70572', '137', '1', 'Spring', 2002, 'A-'); + insert into takes values('1460', '476', '1', 'Fall', 2010, 'C+'); + insert into takes values('7970', '486', '1', 'Fall', 2009, 'C+'); + insert into takes values('26802', '626', '1', 'Fall', 2006, 'C+'); + insert into takes values('6523', '581', '1', 'Spring', 2005, 'A-'); + insert into takes values('55170', '158', '2', 'Spring', 2008, 'B-'); + insert into takes values('43495', '338', '1', 'Spring', 2007, 'A+'); + insert into takes values('888', '274', '1', 'Fall', 2002, 'A+'); + insert into takes values('82063', '270', '1', 'Spring', 2010, 'A '); + insert into takes values('30772', '200', '2', 'Fall', 2002, 'C+'); + insert into takes values('49759', '426', '1', 'Spring', 2006, 'C '); + insert into takes values('78143', '692', '1', 'Spring', 2010, 'B+'); + insert into takes values('62520', '362', '3', 'Spring', 2008, 'C '); + insert into takes values('11422', '694', '1', 'Fall', 2002, 'C+'); + insert into takes values('40116', '105', '1', 'Fall', 2009, 'B+'); + insert into takes values('67657', '237', '1', 'Spring', 2008, 'B-'); + insert into takes values('47670', '362', '1', 'Fall', 2005, 'C+'); + insert into takes values('94836', '927', '1', 'Fall', 2002, 'A-'); + insert into takes values('30723', '158', '1', 'Fall', 2008, 'B '); + insert into takes values('20445', '972', '1', 'Spring', 2009, 'B '); + insert into takes values('90448', '748', '1', 'Fall', 2003, 'A-'); + insert into takes values('64140', '366', '1', 'Fall', 2005, 'B-'); + insert into takes values('44206', '158', '1', 'Fall', 2008, 'A+'); + insert into takes values('42565', '158', '2', 'Spring', 2008, 'A-'); + insert into takes values('49618', '843', '1', 'Fall', 2010, 'B '); + insert into takes values('81396', '795', '1', 'Spring', 2004, 'C '); + insert into takes values('86833', '400', '1', 'Spring', 2007, 'C+'); + insert into takes values('65258', '468', '2', 'Fall', 2007, 'B-'); + insert into takes values('60984', '421', '1', 'Fall', 2004, 'C '); + insert into takes values('34055', '864', '1', 'Spring', 2006, 'A '); + insert into takes values('94324', '237', '1', 'Spring', 2008, 'B '); + insert into takes values('97101', '791', '1', 'Spring', 2006, 'C+'); + insert into takes values('57780', '408', '1', 'Spring', 2007, 'B-'); + insert into takes values('88884', '270', '1', 'Spring', 2010, 'A-'); + insert into takes values('76604', '991', '1', 'Spring', 2008, 'A+'); + insert into takes values('75791', '137', '1', 'Spring', 2002, 'C+'); + insert into takes values('64550', '702', '1', 'Spring', 2001, 'C-'); + insert into takes values('99073', '319', '1', 'Spring', 2003, 'A+'); + insert into takes values('46769', '599', '1', 'Spring', 2003, 'A-'); + insert into takes values('58701', '270', '1', 'Spring', 2010, 'B-'); + insert into takes values('19245', '527', '1', 'Fall', 2004, 'C-'); + insert into takes values('49982', '486', '1', 'Fall', 2009, 'B+'); + insert into takes values('4034', '696', '1', 'Spring', 2002, 'A+'); + insert into takes values('32772', '760', '1', 'Spring', 2004, 'A-'); + insert into takes values('81566', '960', '2', 'Fall', 2006, 'B-'); + insert into takes values('21100', '808', '1', 'Fall', 2003, 'C+'); + insert into takes values('52057', '415', '1', 'Fall', 2010, 'A+'); + insert into takes values('31560', '972', '1', 'Spring', 2009, 'B '); + insert into takes values('108', '704', '1', 'Spring', 2008, 'A-'); + insert into takes values('42991', '362', '3', 'Spring', 2008, 'C+'); + insert into takes values('31442', '270', '1', 'Spring', 2010, 'A '); + insert into takes values('52134', '482', '1', 'Fall', 2005, 'B '); + insert into takes values('76743', '362', '1', 'Fall', 2005, 'B-'); + insert into takes values('85451', '349', '1', 'Spring', 2008, 'A '); + insert into takes values('74509', '692', '1', 'Spring', 2010, 'B+'); + insert into takes values('26147', '629', '1', 'Spring', 2003, 'A+'); + insert into takes values('58465', '445', '1', 'Spring', 2001, 'B-'); + insert into takes values('91915', '581', '1', 'Spring', 2005, 'A '); + insert into takes values('77234', '489', '1', 'Fall', 2007, 'B-'); + insert into takes values('76173', '352', '1', 'Spring', 2006, 'C '); + insert into takes values('78481', '408', '1', 'Spring', 2007, 'A+'); + insert into takes values('59517', '802', '1', 'Spring', 2003, 'B-'); + insert into takes values('34404', '808', '1', 'Fall', 2003, 'C-'); + insert into takes values('73411', '242', '1', 'Fall', 2009, 'C-'); + insert into takes values('11237', '338', '2', 'Spring', 2006, 'B-'); + insert into takes values('15517', '808', '1', 'Fall', 2003, 'B+'); + insert into takes values('45300', '482', '1', 'Fall', 2005, 'B+'); + insert into takes values('2629', '949', '1', 'Fall', 2007, 'A '); + insert into takes values('99780', '735', '2', 'Spring', 2010, 'C+'); + insert into takes values('10705', '642', '1', 'Fall', 2004, 'A-'); + insert into takes values('98315', '158', '2', 'Spring', 2008, 'B-'); + insert into takes values('19293', '376', '1', 'Fall', 2006, 'A-'); + insert into takes values('76743', '867', '2', 'Fall', 2010, 'C '); + insert into takes values('17607', '629', '1', 'Spring', 2003, 'C+'); + insert into takes values('8483', '702', '1', 'Spring', 2001, 'A+'); + insert into takes values('18808', '631', '1', 'Spring', 2007, 'C+'); + insert into takes values('85534', '461', '1', 'Fall', 2002, 'B '); + insert into takes values('72358', '158', '2', 'Spring', 2008, 'B-'); + insert into takes values('89132', '581', '1', 'Spring', 2005, 'B '); + insert into takes values('88287', '972', '1', 'Spring', 2009, 'C-'); + insert into takes values('55000', '852', '1', 'Spring', 2008, 'A+'); + insert into takes values('71389', '893', '1', 'Fall', 2007, 'B '); + insert into takes values('65190', '991', '1', 'Spring', 2008, 'C '); + insert into takes values('11083', '702', '1', 'Spring', 2001, 'A '); + insert into takes values('2629', '735', '2', 'Spring', 2010, 'C-'); + insert into takes values('40303', '445', '1', 'Spring', 2001, 'C-'); + insert into takes values('99780', '366', '1', 'Fall', 2005, 'A+'); + insert into takes values('59455', '468', '2', 'Fall', 2007, 'C+'); + insert into takes values('67793', '702', '1', 'Spring', 2001, 'A-'); + insert into takes values('57925', '304', '1', 'Fall', 2009, 'B+'); + insert into takes values('72657', '408', '1', 'Spring', 2007, 'C-'); + insert into takes values('24116', '445', '1', 'Spring', 2001, 'C-'); + insert into takes values('64164', '591', '1', 'Spring', 2005, 'B '); + insert into takes values('1968', '795', '1', 'Spring', 2004, 'C-'); + insert into takes values('68330', '867', '2', 'Fall', 2010, 'B+'); + insert into takes values('54728', '545', '1', 'Fall', 2001, 'C '); + insert into takes values('70918', '960', '1', 'Fall', 2009, 'A-'); + insert into takes values('26427', '169', '1', 'Spring', 2007, 'C-'); + insert into takes values('90353', '760', '1', 'Spring', 2004, 'B-'); + insert into takes values('46956', '352', '1', 'Spring', 2006, 'C '); + insert into takes values('73542', '735', '1', 'Spring', 2003, 'B-'); + insert into takes values('78116', '482', '1', 'Fall', 2005, 'C+'); + insert into takes values('66106', '631', '1', 'Spring', 2007, 'A+'); + insert into takes values('26028', '927', '1', 'Fall', 2002, 'A-'); + insert into takes values('44304', '561', '1', 'Fall', 2006, 'C '); + insert into takes values('53788', '401', '1', 'Fall', 2003, 'A '); + insert into takes values('49280', '735', '2', 'Spring', 2010, 'B+'); + insert into takes values('21789', '852', '1', 'Spring', 2008, 'B '); + insert into takes values('2629', '962', '1', 'Spring', 2008, 'A+'); + insert into takes values('85680', '972', '1', 'Spring', 2009, 'C+'); + insert into takes values('42625', '791', '1', 'Spring', 2006, 'B '); + insert into takes values('17911', '867', '2', 'Fall', 2010, 'A '); + insert into takes values('49873', '274', '1', 'Fall', 2002, 'C-'); + insert into takes values('29031', '561', '1', 'Fall', 2006, 'B-'); + insert into takes values('34055', '319', '1', 'Spring', 2003, 'C '); + insert into takes values('50365', '949', '1', 'Fall', 2007, 'A '); + insert into takes values('69471', '581', '1', 'Spring', 2005, 'A-'); + insert into takes values('92965', '362', '1', 'Fall', 2005, 'B-'); + insert into takes values('45770', '559', '1', 'Fall', 2002, 'B+'); + insert into takes values('28994', '843', '1', 'Fall', 2010, 'C '); + insert into takes values('99730', '362', '1', 'Fall', 2005, 'B '); + insert into takes values('24796', '169', '2', 'Fall', 2002, 'C '); + insert into takes values('52076', '663', '1', 'Spring', 2005, 'A-'); + insert into takes values('6729', '345', '1', 'Spring', 2008, 'C+'); + insert into takes values('52371', '137', '1', 'Spring', 2002, 'C '); + insert into takes values('34569', '626', '1', 'Fall', 2006, 'C-'); + insert into takes values('39612', '991', '1', 'Spring', 2008, 'B+'); + insert into takes values('64082', '791', '1', 'Spring', 2006, 'C-'); + insert into takes values('50703', '274', '1', 'Fall', 2002, 'C-'); + insert into takes values('96134', '631', '1', 'Spring', 2007, 'A '); + insert into takes values('7514', '349', '1', 'Spring', 2008, 'A-'); + insert into takes values('58326', '468', '2', 'Fall', 2007, 'C+'); + insert into takes values('64082', '704', '1', 'Spring', 2008, 'B-'); + insert into takes values('61403', '795', '1', 'Spring', 2004, 'C+'); + insert into takes values('8603', '735', '2', 'Spring', 2010, 'C '); + insert into takes values('80248', '694', '1', 'Fall', 2002, 'C+'); + insert into takes values('49684', '962', '1', 'Spring', 2008, 'B+'); + insert into takes values('52120', '274', '1', 'Fall', 2002, 'A+'); + insert into takes values('88993', '704', '1', 'Spring', 2008, 'C-'); + insert into takes values('26080', '493', '1', 'Spring', 2010, 'C '); + insert into takes values('65258', '239', '1', 'Fall', 2006, 'C+'); + insert into takes values('23525', '400', '2', 'Fall', 2003, 'A+'); + insert into takes values('58469', '808', '1', 'Fall', 2003, 'A-'); + insert into takes values('75116', '604', '1', 'Spring', 2009, 'A-'); + insert into takes values('69122', '338', '1', 'Spring', 2007, 'B-'); + insert into takes values('5017', '696', '1', 'Spring', 2002, 'B '); + insert into takes values('69081', '991', '1', 'Spring', 2008, 'C+'); + insert into takes values('15283', '137', '1', 'Spring', 2002, 'B-'); + insert into takes values('43616', '603', '1', 'Fall', 2003, 'A-'); + insert into takes values('15726', '893', '1', 'Fall', 2007, 'A '); + insert into takes values('78116', '304', '1', 'Fall', 2009, 'B-'); + insert into takes values('73328', '545', '1', 'Fall', 2001, 'A '); + insert into takes values('94990', '581', '1', 'Spring', 2005, 'B '); + insert into takes values('37350', '603', '1', 'Fall', 2003, 'A '); + insert into takes values('86001', '349', '1', 'Spring', 2008, 'C '); + insert into takes values('75040', '960', '2', 'Fall', 2006, 'A+'); + insert into takes values('51538', '642', '1', 'Fall', 2004, 'A+'); + insert into takes values('51868', '852', '1', 'Spring', 2008, 'A-'); + insert into takes values('87784', '169', '2', 'Fall', 2002, 'A+'); + insert into takes values('12971', '696', '1', 'Spring', 2002, 'C+'); + insert into takes values('463', '852', '1', 'Spring', 2008, 'A '); + insert into takes values('83214', '158', '1', 'Fall', 2008, 'C '); + insert into takes values('70688', '581', '1', 'Spring', 2005, 'C '); + insert into takes values('46074', '545', '1', 'Fall', 2001, 'B '); + insert into takes values('64169', '239', '1', 'Fall', 2006, 'B '); + insert into takes values('56598', '962', '1', 'Spring', 2008, 'C-'); + insert into takes values('51093', '867', '1', 'Fall', 2006, 'A+'); + insert into takes values('19861', '137', '1', 'Spring', 2002, 'C+'); + insert into takes values('22258', '408', '2', 'Spring', 2003, 'A+'); + insert into takes values('65433', '345', '1', 'Spring', 2008, 'A-'); + insert into takes values('99711', '415', '1', 'Fall', 2010, 'B-'); + insert into takes values('14065', '791', '1', 'Spring', 2006, 'C+'); + insert into takes values('88793', '319', '1', 'Spring', 2003, 'A+'); + insert into takes values('60267', '158', '1', 'Fall', 2008, 'B '); + insert into takes values('75596', '599', '1', 'Spring', 2003, 'A '); + insert into takes values('88287', '864', '1', 'Spring', 2006, 'A '); + insert into takes values('99369', '158', '2', 'Spring', 2008, 'A '); + insert into takes values('39241', '631', '1', 'Spring', 2007, 'B+'); + insert into takes values('10838', '603', '1', 'Fall', 2003, 'A-'); + insert into takes values('36384', '476', '1', 'Fall', 2010, 'B '); + insert into takes values('18675', '696', '1', 'Spring', 2002, 'A+'); + insert into takes values('37946', '748', '1', 'Fall', 2003, 'C-'); + insert into takes values('1737', '679', '1', 'Spring', 2010, 'B+'); + insert into takes values('77415', '158', '1', 'Fall', 2008, 'A-'); + insert into takes values('3545', '959', '1', 'Fall', 2006, 'B '); + insert into takes values('13403', '400', '2', 'Fall', 2003, 'C-'); + insert into takes values('44816', '362', '1', 'Fall', 2005, 'A-'); + insert into takes values('1836', '747', '1', 'Spring', 2004, 'B-'); + insert into takes values('83728', '581', '1', 'Spring', 2005, 'C-'); + insert into takes values('89246', '962', '1', 'Spring', 2008, 'A+'); + insert into takes values('56058', '702', '1', 'Spring', 2001, 'C+'); + insert into takes values('7956', '105', '2', 'Fall', 2002, 'B-'); + insert into takes values('92703', '242', '1', 'Fall', 2009, 'B-'); + insert into takes values('8192', '192', '1', 'Fall', 2002, 'B '); + insert into takes values('41596', '960', '1', 'Fall', 2009, 'C-'); + insert into takes values('54460', '960', '1', 'Fall', 2009, 'C+'); + insert into takes values('97041', '795', '1', 'Spring', 2004, 'A-'); + insert into takes values('39520', '415', '1', 'Fall', 2010, 'A '); + insert into takes values('90132', '527', '1', 'Fall', 2004, 'C+'); + insert into takes values('5414', '482', '1', 'Fall', 2005, 'A '); + insert into takes values('40677', '702', '1', 'Spring', 2001, 'A '); + insert into takes values('73165', '663', '1', 'Spring', 2005, 'A+'); + insert into takes values('92949', '581', '1', 'Spring', 2005, 'A-'); + insert into takes values('29031', '927', '1', 'Fall', 2002, 'B '); + insert into takes values('9408', '748', '1', 'Fall', 2003, 'A-'); + insert into takes values('13403', '258', '1', 'Fall', 2007, 'B '); + insert into takes values('44551', '852', '1', 'Spring', 2008, 'B '); + insert into takes values('58355', '760', '1', 'Spring', 2004, 'B '); + insert into takes values('46106', '974', '1', 'Fall', 2003, 'A-'); + insert into takes values('87044', '893', '1', 'Fall', 2007, 'B '); + insert into takes values('667', '949', '1', 'Fall', 2007, 'A '); + insert into takes values('94697', '239', '1', 'Fall', 2006, 'B '); + insert into takes values('85680', '864', '1', 'Spring', 2006, 'B+'); + insert into takes values('37038', '400', '2', 'Fall', 2003, 'C-'); + insert into takes values('32506', '791', '1', 'Spring', 2006, 'C '); + insert into takes values('6990', '158', '2', 'Spring', 2008, 'B-'); + insert into takes values('21008', '366', '1', 'Fall', 2005, 'A+'); + insert into takes values('52134', '791', '1', 'Spring', 2006, 'A+'); + insert into takes values('70021', '974', '1', 'Fall', 2003, 'C-'); + insert into takes values('89051', '400', '1', 'Spring', 2007, 'A-'); + insert into takes values('16453', '401', '1', 'Fall', 2003, 'A+'); + insert into takes values('80990', '748', '1', 'Fall', 2003, 'B-'); + insert into takes values('25940', '258', '1', 'Fall', 2007, 'C-'); + insert into takes values('97065', '400', '1', 'Spring', 2007, 'A+'); + insert into takes values('10033', '338', '2', 'Spring', 2006, 'C '); + insert into takes values('32385', '349', '1', 'Spring', 2008, 'A-'); + insert into takes values('34126', '702', '1', 'Spring', 2001, 'B '); + insert into takes values('30397', '105', '1', 'Fall', 2009, 'A '); + insert into takes values('21337', '852', '1', 'Spring', 2008, 'A+'); + insert into takes values('76895', '274', '1', 'Fall', 2002, 'C '); + insert into takes values('96741', '696', '1', 'Spring', 2002, 'C-'); + insert into takes values('99271', '408', '1', 'Spring', 2007, 'B-'); + insert into takes values('17924', '581', '1', 'Spring', 2005, 'B-'); + insert into takes values('36657', '169', '1', 'Spring', 2007, 'A '); + insert into takes values('14874', '200', '1', 'Spring', 2007, 'C '); + insert into takes values('27950', '105', '1', 'Fall', 2009, 'A+'); + insert into takes values('63502', '795', '1', 'Spring', 2004, 'C+'); + insert into takes values('47627', '137', '1', 'Spring', 2002, 'B+'); + insert into takes values('6367', '158', '1', 'Fall', 2008, 'B-'); + insert into takes values('90181', '974', '1', 'Fall', 2003, 'B '); + insert into takes values('42388', '735', '2', 'Spring', 2010, 'B-'); + insert into takes values('40276', '949', '1', 'Fall', 2007, 'A '); + insert into takes values('80698', '421', '1', 'Fall', 2004, 'A+'); + insert into takes values('72177', '158', '2', 'Spring', 2008, 'B-'); + insert into takes values('6474', '192', '1', 'Fall', 2002, 'B+'); + insert into takes values('99451', '527', '1', 'Fall', 2004, 'A+'); + insert into takes values('6400', '735', '2', 'Spring', 2010, 'C+'); + insert into takes values('83214', '527', '1', 'Fall', 2004, 'B-'); + insert into takes values('81610', '274', '1', 'Fall', 2002, 'B '); + insert into takes values('20985', '793', '1', 'Spring', 2002, 'C '); + insert into takes values('20084', '258', '1', 'Fall', 2007, 'B '); + insert into takes values('90194', '366', '1', 'Fall', 2005, 'C+'); + insert into takes values('87965', '258', '1', 'Fall', 2007, 'A-'); + insert into takes values('82063', '694', '1', 'Fall', 2002, 'A-'); + insert into takes values('52291', '461', '1', 'Fall', 2002, 'B '); + insert into takes values('42019', '791', '1', 'Spring', 2006, 'C-'); + insert into takes values('33791', '795', '1', 'Spring', 2004, 'B+'); + insert into takes values('64164', '443', '1', 'Spring', 2010, 'A '); + insert into takes values('46928', '493', '1', 'Spring', 2010, 'C '); + insert into takes values('87048', '400', '1', 'Spring', 2007, 'A+'); + insert into takes values('66090', '137', '1', 'Spring', 2002, 'B-'); + insert into takes values('16250', '843', '1', 'Fall', 2010, 'B '); + insert into takes values('84432', '802', '1', 'Spring', 2003, 'A+'); + insert into takes values('64196', '802', '1', 'Spring', 2003, 'B-'); + insert into takes values('62549', '401', '1', 'Fall', 2003, 'C '); + insert into takes values('86753', '169', '1', 'Spring', 2007, 'B '); + insert into takes values('15578', '258', '1', 'Fall', 2007, 'C '); + insert into takes values('35357', '893', '1', 'Fall', 2007, 'A-'); + insert into takes values('30021', '313', '1', 'Fall', 2010, 'C-'); + insert into takes values('88417', '349', '1', 'Spring', 2008, 'B '); + insert into takes values('93366', '401', '1', 'Fall', 2003, 'B '); + insert into takes values('85534', '974', '1', 'Fall', 2003, 'C '); + insert into takes values('43123', '603', '1', 'Fall', 2003, 'C+'); + insert into takes values('17676', '559', '1', 'Fall', 2002, 'A '); + insert into takes values('66494', '631', '1', 'Spring', 2007, 'C '); + insert into takes values('26473', '468', '1', 'Fall', 2005, 'A '); + insert into takes values('23344', '486', '1', 'Fall', 2009, 'C+'); + insert into takes values('98423', '692', '1', 'Spring', 2010, 'C-'); + insert into takes values('3833', '237', '1', 'Spring', 2008, 'A '); + insert into takes values('88417', '362', '2', 'Fall', 2006, 'A-'); + insert into takes values('96193', '808', '1', 'Fall', 2003, 'C-'); + insert into takes values('40481', '237', '1', 'Spring', 2008, 'C+'); + insert into takes values('46762', '760', '1', 'Spring', 2004, 'B '); + insert into takes values('76291', '319', '1', 'Spring', 2003, 'B-'); + insert into takes values('44551', '362', '3', 'Spring', 2008, 'A-'); + insert into takes values('47025', '735', '1', 'Spring', 2003, 'A-'); + insert into takes values('24784', '604', '1', 'Spring', 2009, 'C-'); + insert into takes values('34126', '345', '1', 'Spring', 2008, 'C-'); + insert into takes values('58081', '489', '1', 'Fall', 2007, 'B+'); + insert into takes values('914', '852', '1', 'Spring', 2008, 'C+'); + insert into takes values('86001', '545', '1', 'Fall', 2001, 'A-'); + insert into takes values('86802', '345', '1', 'Spring', 2008, 'C-'); + insert into takes values('30397', '631', '1', 'Spring', 2007, 'B+'); + insert into takes values('15430', '949', '1', 'Fall', 2007, 'A '); + insert into takes values('22086', '400', '2', 'Fall', 2003, 'A+'); + insert into takes values('94998', '496', '1', 'Fall', 2001, 'B+'); + insert into takes values('55915', '959', '1', 'Fall', 2006, 'C '); + insert into takes values('83953', '468', '2', 'Fall', 2007, 'C+'); + insert into takes values('98563', '960', '1', 'Fall', 2009, 'B '); + insert into takes values('57925', '694', '1', 'Fall', 2002, 'A+'); + insert into takes values('80113', '461', '1', 'Fall', 2002, 'C+'); + insert into takes values('11262', '237', '1', 'Spring', 2008, 'A '); + insert into takes values('69285', '591', '1', 'Spring', 2005, 'B-'); + insert into takes values('32245', '338', '2', 'Spring', 2006, 'A '); + insert into takes values('45570', '421', '1', 'Fall', 2004, 'B '); + insert into takes values('68010', '702', '1', 'Spring', 2001, 'B '); + insert into takes values('50039', '642', '1', 'Fall', 2004, 'B '); + insert into takes values('47001', '457', '1', 'Spring', 2001, 'C+'); + insert into takes values('11855', '400', '1', 'Spring', 2007, 'C+'); + insert into takes values('26473', '631', '1', 'Spring', 2007, 'C '); + insert into takes values('80821', '972', '1', 'Spring', 2009, 'C+'); + insert into takes values('17128', '274', '1', 'Fall', 2002, 'C-'); + insert into takes values('25046', '735', '2', 'Spring', 2010, 'B '); + insert into takes values('75560', '319', '1', 'Spring', 2003, 'A-'); + insert into takes values('58307', '626', '1', 'Fall', 2006, 'C '); + insert into takes values('69241', '415', '1', 'Fall', 2010, 'B-'); + insert into takes values('24374', '867', '1', 'Fall', 2006, 'B-'); + insert into takes values('58634', '852', '1', 'Spring', 2008, 'A-'); + insert into takes values('43211', '559', '1', 'Fall', 2002, 'B+'); + insert into takes values('38371', '158', '2', 'Spring', 2008, 'B '); + insert into takes values('97065', '791', '1', 'Spring', 2006, 'A-'); + insert into takes values('16907', '629', '1', 'Spring', 2003, 'B '); + insert into takes values('55859', '105', '1', 'Fall', 2009, 'B-'); + insert into takes values('36402', '527', '1', 'Fall', 2004, 'C-'); + insert into takes values('36019', '489', '1', 'Fall', 2007, 'C+'); + insert into takes values('83314', '457', '1', 'Spring', 2001, 'A-'); + insert into takes values('54296', '376', '1', 'Fall', 2006, 'A-'); + insert into takes values('99719', '270', '1', 'Spring', 2010, 'C-'); + insert into takes values('32483', '604', '1', 'Spring', 2009, 'C-'); + insert into takes values('15430', '200', '2', 'Fall', 2002, 'B-'); + insert into takes values('32345', '376', '1', 'Fall', 2006, 'B-'); + insert into takes values('36657', '461', '1', 'Fall', 2002, 'A '); + insert into takes values('3545', '591', '1', 'Spring', 2005, 'A-'); + insert into takes values('89132', '735', '2', 'Spring', 2010, 'C+'); + insert into takes values('43211', '415', '1', 'Fall', 2010, 'A '); + insert into takes values('60040', '604', '1', 'Spring', 2009, 'C+'); + insert into takes values('76953', '443', '2', 'Spring', 2002, 'B-'); + insert into takes values('5243', '545', '1', 'Fall', 2001, 'A '); + insert into takes values('2139', '239', '1', 'Fall', 2006, 'A-'); + insert into takes values('99553', '461', '1', 'Fall', 2002, 'A '); + insert into takes values('76049', '334', '1', 'Fall', 2009, 'A+'); + insert into takes values('30334', '867', '1', 'Fall', 2006, 'A-'); + insert into takes values('25525', '401', '1', 'Fall', 2003, 'C+'); + insert into takes values('67033', '692', '1', 'Spring', 2010, 'B+'); + insert into takes values('83214', '105', '2', 'Fall', 2002, 'C '); + insert into takes values('99719', '319', '1', 'Spring', 2003, 'A '); + insert into takes values('48778', '694', '1', 'Fall', 2002, 'A-'); + insert into takes values('47265', '445', '1', 'Spring', 2001, 'C-'); + insert into takes values('94173', '169', '1', 'Spring', 2007, 'B '); + insert into takes values('58465', '192', '1', 'Fall', 2002, 'A '); + insert into takes values('75046', '991', '1', 'Spring', 2008, 'A-'); + insert into takes values('58413', '795', '1', 'Spring', 2004, 'A-'); + insert into takes values('107', '599', '1', 'Spring', 2003, 'A '); + insert into takes values('84792', '421', '1', 'Fall', 2004, 'C+'); + insert into takes values('91616', '443', '1', 'Spring', 2010, 'A-'); + insert into takes values('30943', '345', '1', 'Spring', 2008, 'C '); + insert into takes values('1220', '960', '2', 'Fall', 2006, 'C '); + insert into takes values('36845', '802', '1', 'Spring', 2003, 'C+'); + insert into takes values('16515', '591', '1', 'Spring', 2005, 'B-'); + insert into takes values('92693', '169', '1', 'Spring', 2007, 'A+'); + insert into takes values('97629', '561', '1', 'Fall', 2006, 'A-'); + insert into takes values('18809', '319', '1', 'Spring', 2003, 'C '); + insert into takes values('48776', '631', '1', 'Spring', 2007, 'B+'); + insert into takes values('5336', '362', '2', 'Fall', 2006, 'B+'); + insert into takes values('47824', '692', '1', 'Spring', 2010, 'A '); + insert into takes values('39580', '362', '2', 'Fall', 2006, 'A-'); + insert into takes values('54620', '105', '2', 'Fall', 2002, 'C-'); + insert into takes values('41988', '960', '1', 'Fall', 2009, 'C+'); + insert into takes values('28252', '362', '3', 'Spring', 2008, 'B+'); + insert into takes values('3739', '581', '1', 'Spring', 2005, 'A '); + insert into takes values('73268', '237', '2', 'Fall', 2009, 'C-'); + insert into takes values('61444', '692', '1', 'Spring', 2010, 'A-'); + insert into takes values('63288', '612', '1', 'Fall', 2007, 'B+'); + insert into takes values('58889', '604', '1', 'Spring', 2009, 'A '); + insert into takes values('42625', '696', '1', 'Spring', 2002, 'A-'); + insert into takes values('32345', '748', '1', 'Fall', 2003, 'C-'); + insert into takes values('2177', '702', '1', 'Spring', 2001, 'A+'); + insert into takes values('93366', '852', '1', 'Spring', 2008, 'A-'); + insert into takes values('11422', '345', '1', 'Spring', 2008, 'A+'); + insert into takes values('81884', '603', '1', 'Fall', 2003, 'C+'); + insert into takes values('41450', '192', '1', 'Fall', 2002, 'C '); + insert into takes values('83022', '345', '1', 'Spring', 2008, 'B+'); + insert into takes values('74639', '349', '1', 'Spring', 2008, 'B-'); + insert into takes values('58874', '426', '1', 'Spring', 2006, 'A+'); + insert into takes values('3005', '239', '1', 'Fall', 2006, 'B-'); + insert into takes values('71768', '927', '1', 'Fall', 2002, 'B '); + insert into takes values('67146', '400', '2', 'Fall', 2003, 'C+'); + insert into takes values('43211', '137', '1', 'Spring', 2002, 'A '); + insert into takes values('72165', '376', '1', 'Fall', 2006, 'C+'); + insert into takes values('32119', '137', '1', 'Spring', 2002, 'B-'); + insert into takes values('5336', '545', '1', 'Fall', 2001, 'B+'); + insert into takes values('20084', '421', '1', 'Fall', 2004, 'B+'); + insert into takes values('4435', '748', '1', 'Fall', 2003, 'A '); + insert into takes values('81566', '692', '1', 'Spring', 2010, 'C+'); + insert into takes values('43981', '376', '1', 'Fall', 2006, 'C '); + insert into takes values('96772', '603', '1', 'Fall', 2003, 'C+'); + insert into takes values('34329', '960', '1', 'Fall', 2009, 'C+'); + insert into takes values('2970', '927', '1', 'Fall', 2002, 'C-'); + insert into takes values('22268', '802', '1', 'Spring', 2003, 'A-'); + insert into takes values('80941', '334', '1', 'Fall', 2009, 'A '); + insert into takes values('4508', '875', '1', 'Spring', 2005, 'B-'); + insert into takes values('463', '400', '2', 'Fall', 2003, 'A+'); + insert into takes values('98726', '591', '1', 'Spring', 2005, 'B+'); + insert into takes values('82580', '338', '1', 'Spring', 2007, 'A '); + insert into takes values('24442', '489', '1', 'Fall', 2007, 'B-'); + insert into takes values('67436', '561', '1', 'Fall', 2006, 'A+'); + insert into takes values('85445', '237', '2', 'Fall', 2009, 'B+'); + insert into takes values('38973', '400', '2', 'Fall', 2003, 'B '); + insert into takes values('49701', '704', '1', 'Spring', 2008, 'B+'); + insert into takes values('11201', '631', '1', 'Spring', 2007, 'C '); + insert into takes values('1402', '319', '1', 'Spring', 2003, 'C-'); + insert into takes values('73206', '443', '1', 'Spring', 2010, 'A+'); + insert into takes values('25187', '559', '1', 'Fall', 2002, 'A+'); + insert into takes values('97953', '559', '1', 'Fall', 2002, 'B-'); + insert into takes values('78469', '415', '1', 'Fall', 2010, 'B '); + insert into takes values('86934', '443', '2', 'Spring', 2002, 'B '); + insert into takes values('67560', '334', '1', 'Fall', 2009, 'B-'); + insert into takes values('66212', '802', '1', 'Spring', 2003, 'A-'); + insert into takes values('61920', '893', '1', 'Fall', 2007, 'C+'); + insert into takes values('56143', '426', '1', 'Spring', 2006, 'C-'); + insert into takes values('50537', '795', '1', 'Spring', 2004, 'C+'); + insert into takes values('35523', '345', '1', 'Spring', 2008, 'B+'); + insert into takes values('83136', '642', '1', 'Fall', 2004, 'A+'); + insert into takes values('46956', '421', '1', 'Fall', 2004, 'A '); + insert into takes values('20445', '626', '1', 'Fall', 2006, 'A+'); + insert into takes values('83557', '408', '1', 'Spring', 2007, 'A+'); + insert into takes values('667', '561', '1', 'Fall', 2006, 'C '); + insert into takes values('65190', '319', '1', 'Spring', 2003, 'B+'); + insert into takes values('94522', '748', '1', 'Fall', 2003, 'A-'); + insert into takes values('61402', '959', '1', 'Fall', 2006, 'C-'); + insert into takes values('86969', '486', '1', 'Fall', 2009, 'B-'); + insert into takes values('12683', '421', '1', 'Fall', 2004, 'A-'); + insert into takes values('59539', '626', '1', 'Fall', 2006, 'A-'); + insert into takes values('98359', '527', '1', 'Fall', 2004, 'B+'); + insert into takes values('19862', '169', '1', 'Spring', 2007, 'B+'); + insert into takes values('13211', '893', '1', 'Fall', 2007, 'B '); + insert into takes values('9933', '401', '1', 'Fall', 2003, 'B '); + insert into takes values('18859', '735', '2', 'Spring', 2010, 'C+'); + insert into takes values('12563', '468', '1', 'Fall', 2005, 'A '); + insert into takes values('88417', '443', '1', 'Spring', 2010, 'A-'); + insert into takes values('75299', '468', '1', 'Fall', 2005, 'B+'); + insert into takes values('15328', '864', '1', 'Spring', 2006, 'B-'); + insert into takes values('53547', '603', '1', 'Fall', 2003, 'B+'); + insert into takes values('90089', '237', '2', 'Fall', 2009, 'B-'); + insert into takes values('80420', '591', '1', 'Spring', 2005, 'A-'); + insert into takes values('17944', '545', '1', 'Fall', 2001, 'B+'); + insert into takes values('98047', '760', '1', 'Spring', 2004, 'A '); + insert into takes values('52385', '864', '1', 'Spring', 2006, 'B-'); + insert into takes values('77548', '949', '1', 'Fall', 2007, 'B-'); + insert into takes values('85680', '362', '1', 'Fall', 2005, 'B-'); + insert into takes values('38973', '748', '1', 'Fall', 2003, 'A-'); + insert into takes values('50467', '457', '1', 'Spring', 2001, 'B-'); + insert into takes values('75510', '735', '1', 'Spring', 2003, 'C-'); + insert into takes values('68248', '401', '1', 'Fall', 2003, 'B '); + insert into takes values('75772', '105', '2', 'Fall', 2002, 'B '); + insert into takes values('67033', '808', '1', 'Fall', 2003, 'B '); + insert into takes values('28952', '867', '2', 'Fall', 2010, 'B '); + insert into takes values('11682', '702', '1', 'Spring', 2001, 'B+'); + insert into takes values('52929', '445', '1', 'Spring', 2001, 'C-'); + insert into takes values('58413', '242', '1', 'Fall', 2009, 'C+'); + insert into takes values('89106', '345', '1', 'Spring', 2008, 'C '); + insert into takes values('78787', '352', '1', 'Spring', 2006, 'B '); + insert into takes values('8192', '376', '1', 'Fall', 2006, 'B-'); + insert into takes values('90041', '704', '1', 'Spring', 2008, 'B '); + insert into takes values('4015', '345', '1', 'Spring', 2008, 'B '); + insert into takes values('67436', '581', '1', 'Spring', 2005, 'C-'); + insert into takes values('16057', '603', '1', 'Fall', 2003, 'C-'); + insert into takes values('14284', '843', '1', 'Fall', 2010, 'C '); + insert into takes values('39552', '808', '1', 'Fall', 2003, 'A+'); + insert into takes values('18469', '962', '1', 'Spring', 2008, 'B '); + insert into takes values('75123', '692', '1', 'Spring', 2010, 'A+'); + insert into takes values('14554', '304', '1', 'Fall', 2009, 'B-'); + insert into takes values('70310', '747', '1', 'Spring', 2004, 'B '); + insert into takes values('74016', '962', '1', 'Spring', 2008, 'C '); + insert into takes values('76250', '493', '1', 'Spring', 2010, 'B-'); + insert into takes values('8483', '192', '1', 'Fall', 2002, 'B '); + insert into takes values('62152', '802', '1', 'Spring', 2003, 'C '); + insert into takes values('58081', '991', '1', 'Spring', 2008, 'A '); + insert into takes values('73387', '400', '1', 'Spring', 2007, 'B '); + insert into takes values('39657', '349', '1', 'Spring', 2008, 'B+'); + insert into takes values('16405', '158', '2', 'Spring', 2008, 'B '); + insert into takes values('68278', '679', '1', 'Spring', 2010, 'A+'); + insert into takes values('52157', '581', '1', 'Spring', 2005, 'B+'); + insert into takes values('86344', '200', '2', 'Fall', 2002, 'A '); + insert into takes values('53788', '527', '1', 'Fall', 2004, 'C '); + insert into takes values('19536', '105', '1', 'Fall', 2009, 'A+'); + insert into takes values('38973', '270', '1', 'Spring', 2010, 'B+'); + insert into takes values('76246', '704', '1', 'Spring', 2008, 'A+'); + insert into takes values('61332', '345', '1', 'Spring', 2008, 'C-'); + insert into takes values('65056', '461', '1', 'Fall', 2002, 'B-'); + insert into takes values('52187', '457', '1', 'Spring', 2001, 'B-'); + insert into takes values('22179', '802', '1', 'Spring', 2003, 'A '); + insert into takes values('51698', '192', '1', 'Fall', 2002, 'C-'); + insert into takes values('46769', '408', '2', 'Spring', 2003, 'A+'); + insert into takes values('48053', '169', '1', 'Spring', 2007, 'B '); + insert into takes values('64550', '338', '1', 'Spring', 2007, 'A+'); + insert into takes values('54622', '338', '2', 'Spring', 2006, 'B-'); + insert into takes values('30334', '663', '1', 'Spring', 2005, 'B+'); + insert into takes values('76768', '237', '1', 'Spring', 2008, 'A+'); + insert into takes values('58469', '338', '2', 'Spring', 2006, 'A+'); + insert into takes values('78787', '629', '1', 'Spring', 2003, 'B '); + insert into takes values('21394', '137', '1', 'Spring', 2002, 'A+'); + insert into takes values('75046', '338', '2', 'Spring', 2006, 'C '); + insert into takes values('98843', '663', '1', 'Spring', 2005, 'A+'); + insert into takes values('88577', '604', '1', 'Spring', 2009, 'C+'); + insert into takes values('93061', '696', '1', 'Spring', 2002, 'B+'); + insert into takes values('53728', '200', '2', 'Fall', 2002, 'B-'); + insert into takes values('5250', '642', '1', 'Fall', 2004, 'C+'); + insert into takes values('38895', '242', '1', 'Fall', 2009, 'C '); + insert into takes values('53469', '747', '1', 'Spring', 2004, 'A+'); + insert into takes values('35198', '334', '1', 'Fall', 2009, 'A+'); + insert into takes values('59455', '960', '1', 'Fall', 2009, 'B '); + insert into takes values('15030', '747', '1', 'Spring', 2004, 'B '); + insert into takes values('22532', '352', '1', 'Spring', 2006, 'C+'); + insert into takes values('8192', '319', '1', 'Spring', 2003, 'A+'); + insert into takes values('30182', '591', '1', 'Spring', 2005, 'C+'); + insert into takes values('97065', '875', '1', 'Spring', 2005, 'A-'); + insert into takes values('36513', '864', '1', 'Spring', 2006, 'C+'); + insert into takes values('72485', '334', '1', 'Fall', 2009, 'A-'); + insert into takes values('15249', '169', '2', 'Fall', 2002, 'A-'); + insert into takes values('8860', '489', '1', 'Fall', 2007, 'C '); + insert into takes values('46106', '867', '2', 'Fall', 2010, 'B '); + insert into takes values('65688', '421', '1', 'Fall', 2004, 'B '); + insert into takes values('98940', '443', '2', 'Spring', 2002, 'C+'); + insert into takes values('46956', '274', '1', 'Fall', 2002, 'C+'); + insert into takes values('931', '192', '1', 'Fall', 2002, 'C-'); + insert into takes values('69730', '561', '1', 'Fall', 2006, 'A-'); + insert into takes values('61444', '747', '1', 'Spring', 2004, 'A+'); + insert into takes values('40481', '631', '1', 'Spring', 2007, 'A-'); + insert into takes values('26802', '338', '2', 'Spring', 2006, 'A '); + insert into takes values('68070', '603', '1', 'Fall', 2003, 'B-'); + insert into takes values('63090', '366', '1', 'Fall', 2005, 'B+'); + insert into takes values('22467', '735', '1', 'Spring', 2003, 'A '); + insert into takes values('20489', '242', '1', 'Fall', 2009, 'C '); + insert into takes values('22057', '169', '1', 'Spring', 2007, 'C-'); + insert into takes values('2423', '793', '1', 'Spring', 2002, 'C '); + insert into takes values('57238', '795', '1', 'Spring', 2004, 'A '); + insert into takes values('39704', '795', '1', 'Spring', 2004, 'C-'); + insert into takes values('58595', '105', '1', 'Fall', 2009, 'A-'); + insert into takes values('43495', '591', '1', 'Spring', 2005, 'B '); + insert into takes values('15030', '400', '2', 'Fall', 2003, 'A '); + insert into takes values('44881', '338', '2', 'Spring', 2006, 'A '); + insert into takes values('8860', '408', '1', 'Spring', 2007, 'A '); + insert into takes values('5017', '960', '1', 'Fall', 2009, 'B-'); + insert into takes values('48471', '362', '2', 'Fall', 2006, 'C+'); + insert into takes values('84727', '735', '1', 'Spring', 2003, 'C-'); + insert into takes values('17339', '793', '1', 'Spring', 2002, 'B+'); + insert into takes values('54875', '443', '2', 'Spring', 2002, 'A '); + insert into takes values('18752', '415', '1', 'Fall', 2010, 'A+'); + insert into takes values('86552', '631', '1', 'Spring', 2007, 'C+'); + insert into takes values('59290', '545', '1', 'Fall', 2001, 'C-'); + insert into takes values('72979', '461', '1', 'Fall', 2002, 'A '); + insert into takes values('15487', '200', '1', 'Spring', 2007, 'A+'); + insert into takes values('61003', '400', '2', 'Fall', 2003, 'B-'); + insert into takes values('49982', '893', '1', 'Fall', 2007, 'A+'); + insert into takes values('16907', '366', '1', 'Fall', 2005, 'A+'); + insert into takes values('44271', '274', '1', 'Fall', 2002, 'C '); + insert into takes values('77548', '493', '1', 'Spring', 2010, 'A+'); + insert into takes values('1954', '242', '1', 'Fall', 2009, 'B-'); + insert into takes values('76049', '338', '1', 'Spring', 2007, 'C-'); + insert into takes values('61332', '461', '1', 'Fall', 2002, 'C '); + insert into takes values('24325', '735', '1', 'Spring', 2003, 'C '); + insert into takes values('64169', '864', '1', 'Spring', 2006, 'A+'); + insert into takes values('91132', '489', '1', 'Fall', 2007, 'B-'); + insert into takes values('91063', '571', '1', 'Spring', 2004, 'A+'); + insert into takes values('52523', '760', '1', 'Spring', 2004, 'A-'); + insert into takes values('96968', '334', '1', 'Fall', 2009, 'C-'); + insert into takes values('39157', '237', '1', 'Spring', 2008, 'C+'); + insert into takes values('78481', '338', '1', 'Spring', 2007, 'B '); + insert into takes values('12326', '158', '2', 'Spring', 2008, 'A '); + insert into takes values('99553', '105', '1', 'Fall', 2009, 'C '); + insert into takes values('86934', '867', '1', 'Fall', 2006, 'C '); + insert into takes values('45002', '468', '2', 'Fall', 2007, 'C '); + insert into takes values('28738', '237', '2', 'Fall', 2009, 'A '); + insert into takes values('12216', '962', '1', 'Spring', 2008, 'B+'); + insert into takes values('23457', '421', '1', 'Fall', 2004, 'A-'); + insert into takes values('827', '571', '1', 'Spring', 2004, 'B '); + insert into takes values('435', '735', '1', 'Spring', 2003, 'A-'); + insert into takes values('63538', '702', '1', 'Spring', 2001, 'C+'); + insert into takes values('70688', '599', '1', 'Spring', 2003, 'A-'); + insert into takes values('93814', '694', '1', 'Fall', 2002, 'C '); + insert into takes values('77361', '864', '1', 'Spring', 2006, 'C-'); + insert into takes values('2177', '559', '1', 'Fall', 2002, 'C '); + insert into takes values('18007', '352', '1', 'Spring', 2006, 'A '); + insert into takes values('35257', '974', '1', 'Fall', 2003, 'C-'); + insert into takes values('71543', '242', '1', 'Fall', 2009, 'C-'); + insert into takes values('21126', '239', '1', 'Fall', 2006, 'A-'); + insert into takes values('86833', '852', '1', 'Spring', 2008, 'B '); + insert into takes values('76768', '704', '1', 'Spring', 2008, 'B '); + insert into takes values('11453', '843', '1', 'Fall', 2010, 'C-'); + insert into takes values('43505', '192', '1', 'Fall', 2002, 'A '); + insert into takes values('57511', '362', '1', 'Fall', 2005, 'B-'); + insert into takes values('17911', '258', '1', 'Fall', 2007, 'B '); + insert into takes values('95260', '366', '1', 'Fall', 2005, 'C '); + insert into takes values('64196', '415', '1', 'Fall', 2010, 'B+'); + insert into takes values('86127', '274', '1', 'Fall', 2002, 'C+'); + insert into takes values('13028', '791', '1', 'Spring', 2006, 'C '); + insert into takes values('95260', '702', '1', 'Spring', 2001, 'C+'); + insert into takes values('4435', '864', '1', 'Spring', 2006, 'C '); + insert into takes values('86075', '545', '1', 'Fall', 2001, 'C+'); + insert into takes values('66494', '875', '1', 'Spring', 2005, 'A+'); + insert into takes values('3833', '808', '1', 'Fall', 2003, 'B+'); + insert into takes values('61414', '791', '1', 'Spring', 2006, 'C+'); + insert into takes values('66293', '974', '1', 'Fall', 2003, 'B '); + insert into takes values('2423', '304', '1', 'Fall', 2009, 'B-'); + insert into takes values('72177', '867', '2', 'Fall', 2010, 'A+'); + insert into takes values('75082', '334', '1', 'Fall', 2009, 'A+'); + insert into takes values('33817', '571', '1', 'Spring', 2004, 'C-'); + insert into takes values('16543', '242', '1', 'Fall', 2009, 'A+'); + insert into takes values('17128', '362', '1', 'Fall', 2005, 'A-'); + insert into takes values('94846', '349', '1', 'Spring', 2008, 'A-'); + insert into takes values('50969', '192', '1', 'Fall', 2002, 'A-'); + insert into takes values('59455', '663', '1', 'Spring', 2005, 'A+'); + insert into takes values('52385', '604', '1', 'Spring', 2009, 'B+'); + insert into takes values('25940', '200', '1', 'Spring', 2007, 'B '); + insert into takes values('45817', '604', '1', 'Spring', 2009, 'C+'); + insert into takes values('99268', '927', '1', 'Fall', 2002, 'B+'); + insert into takes values('16593', '313', '1', 'Fall', 2010, 'B+'); + insert into takes values('53185', '493', '1', 'Spring', 2010, 'B+'); + insert into takes values('55000', '867', '2', 'Fall', 2010, 'A-'); + insert into takes values('3833', '545', '1', 'Fall', 2001, 'C+'); + insert into takes values('19735', '692', '1', 'Spring', 2010, 'A '); + insert into takes values('99611', '626', '1', 'Fall', 2006, 'A-'); + insert into takes values('96085', '604', '1', 'Spring', 2009, 'B '); + insert into takes values('89571', '626', '1', 'Fall', 2006, 'C '); + insert into takes values('96722', '415', '1', 'Fall', 2010, 'C '); + insert into takes values('68779', '793', '1', 'Spring', 2002, 'B-'); + insert into takes values('80227', '808', '1', 'Fall', 2003, 'A-'); + insert into takes values('67542', '476', '1', 'Fall', 2010, 'B+'); + insert into takes values('86707', '949', '1', 'Fall', 2007, 'C+'); + insert into takes values('59673', '793', '1', 'Spring', 2002, 'C-'); + insert into takes values('2201', '421', '1', 'Fall', 2004, 'C+'); + insert into takes values('34236', '270', '1', 'Spring', 2010, 'C '); + insert into takes values('40059', '642', '1', 'Fall', 2004, 'A '); + insert into takes values('94173', '334', '1', 'Fall', 2009, 'C+'); + insert into takes values('30222', '748', '1', 'Fall', 2003, 'A+'); + insert into takes values('36265', '169', '2', 'Fall', 2002, 'A-'); + insert into takes values('44703', '843', '1', 'Fall', 2010, 'C+'); + insert into takes values('11237', '748', '1', 'Fall', 2003, 'A '); + insert into takes values('95859', '591', '1', 'Spring', 2005, 'C '); + insert into takes values('35175', '642', '1', 'Fall', 2004, 'B-'); + insert into takes values('42114', '401', '1', 'Fall', 2003, 'C+'); + insert into takes values('31690', '571', '1', 'Spring', 2004, 'B+'); + insert into takes values('16035', '352', '1', 'Spring', 2006, 'A-'); + insert into takes values('79352', '366', '1', 'Fall', 2005, 'A-'); + insert into takes values('79911', '604', '1', 'Spring', 2009, 'C+'); + insert into takes values('6195', '408', '2', 'Spring', 2003, 'B-'); + insert into takes values('24201', '631', '1', 'Spring', 2007, 'B-'); + insert into takes values('18859', '496', '1', 'Fall', 2001, 'C+'); + insert into takes values('39876', '443', '1', 'Spring', 2010, 'C '); + insert into takes values('30188', '496', '1', 'Fall', 2001, 'C-'); + insert into takes values('16969', '843', '1', 'Fall', 2010, 'A '); + insert into takes values('15328', '362', '3', 'Spring', 2008, 'B '); + insert into takes values('27430', '169', '2', 'Fall', 2002, 'A-'); + insert into takes values('64893', '476', '1', 'Fall', 2010, 'B '); + insert into takes values('77548', '748', '1', 'Fall', 2003, 'C+'); + insert into takes values('23500', '527', '1', 'Fall', 2004, 'B-'); + insert into takes values('92332', '795', '1', 'Spring', 2004, 'A-'); + insert into takes values('39394', '169', '2', 'Fall', 2002, 'B '); + insert into takes values('91442', '352', '1', 'Spring', 2006, 'B+'); + insert into takes values('66229', '334', '1', 'Fall', 2009, 'B+'); + insert into takes values('40558', '401', '1', 'Fall', 2003, 'C+'); + insert into takes values('96615', '527', '1', 'Fall', 2004, 'C-'); + insert into takes values('63502', '408', '1', 'Spring', 2007, 'C '); + insert into takes values('91370', '192', '1', 'Fall', 2002, 'A+'); + insert into takes values('17676', '334', '1', 'Fall', 2009, 'A '); + insert into takes values('9659', '631', '1', 'Spring', 2007, 'B+'); + insert into takes values('4248', '852', '1', 'Spring', 2008, 'A+'); + insert into takes values('67371', '304', '1', 'Fall', 2009, 'C+'); + insert into takes values('13741', '338', '2', 'Spring', 2006, 'B '); + insert into takes values('6523', '349', '1', 'Spring', 2008, 'C-'); + insert into takes values('81207', '527', '1', 'Fall', 2004, 'A-'); + insert into takes values('26473', '704', '1', 'Spring', 2008, 'B '); + insert into takes values('90132', '461', '1', 'Fall', 2002, 'C '); + insert into takes values('5017', '362', '2', 'Fall', 2006, 'C '); + insert into takes values('65987', '631', '1', 'Spring', 2007, 'B-'); + insert into takes values('10454', '158', '1', 'Fall', 2008, 'A '); + insert into takes values('1954', '270', '1', 'Spring', 2010, 'B-'); + insert into takes values('25068', '626', '1', 'Fall', 2006, 'A+'); + insert into takes values('37103', '960', '2', 'Fall', 2006, 'C '); + insert into takes values('73387', '991', '1', 'Spring', 2008, 'B '); + insert into takes values('9993', '867', '1', 'Fall', 2006, 'B '); + insert into takes values('32345', '629', '1', 'Spring', 2003, 'C-'); + insert into takes values('76768', '352', '1', 'Spring', 2006, 'C-'); + insert into takes values('91580', '408', '2', 'Spring', 2003, 'A '); + insert into takes values('89106', '642', '1', 'Fall', 2004, 'C-'); + insert into takes values('63310', '468', '1', 'Fall', 2005, 'C '); + insert into takes values('36052', '415', '1', 'Fall', 2010, 'A-'); + insert into takes values('61920', '581', '1', 'Spring', 2005, 'C-'); + insert into takes values('48053', '270', '1', 'Spring', 2010, 'C+'); + insert into takes values('61354', '561', '1', 'Fall', 2006, 'B-'); + insert into takes values('64550', '200', '2', 'Fall', 2002, 'A+'); + insert into takes values('4248', '867', '1', 'Fall', 2006, 'B+'); + insert into takes values('23224', '319', '1', 'Spring', 2003, 'C+'); + insert into takes values('67657', '972', '1', 'Spring', 2009, 'A-'); + insert into takes values('53469', '242', '1', 'Fall', 2009, 'C '); + insert into takes values('13506', '239', '1', 'Fall', 2006, 'A+'); + insert into takes values('16849', '489', '1', 'Fall', 2007, 'B-'); + insert into takes values('54605', '445', '1', 'Spring', 2001, 'C+'); + insert into takes values('12615', '629', '1', 'Spring', 2003, 'A+'); + insert into takes values('16515', '489', '1', 'Fall', 2007, 'B-'); + insert into takes values('89196', '991', '1', 'Spring', 2008, 'B '); + insert into takes values('79469', '352', '1', 'Spring', 2006, 'B-'); + insert into takes values('30650', '692', '1', 'Spring', 2010, 'A '); + insert into takes values('8483', '105', '1', 'Fall', 2009, 'C '); + insert into takes values('51862', '408', '1', 'Spring', 2007, 'A-'); + insert into takes values('91799', '747', '1', 'Spring', 2004, 'B '); + insert into takes values('53048', '875', '1', 'Spring', 2005, 'C-'); + insert into takes values('52741', '843', '1', 'Fall', 2010, 'C+'); + insert into takes values('98423', '795', '1', 'Spring', 2004, 'C '); + insert into takes values('24865', '493', '1', 'Spring', 2010, 'C+'); + insert into takes values('56755', '443', '1', 'Spring', 2010, 'C-'); + insert into takes values('39514', '200', '1', 'Spring', 2007, 'A+'); + insert into takes values('15430', '352', '1', 'Spring', 2006, 'C+'); + insert into takes values('48469', '696', '1', 'Spring', 2002, 'C-'); + insert into takes values('20244', '629', '1', 'Spring', 2003, 'A '); + insert into takes values('81538', '200', '1', 'Spring', 2007, 'A+'); + insert into takes values('42625', '362', '3', 'Spring', 2008, 'B-'); + insert into takes values('2795', '875', '1', 'Spring', 2005, 'B '); + insert into takes values('49244', '760', '1', 'Spring', 2004, 'A+'); + insert into takes values('21102', '242', '1', 'Fall', 2009, 'A+'); + insert into takes values('23311', '158', '1', 'Fall', 2008, 'C '); + insert into takes values('19203', '258', '1', 'Fall', 2007, 'B-'); + insert into takes values('71944', '200', '2', 'Fall', 2002, 'A-'); + insert into takes values('55000', '486', '1', 'Fall', 2009, 'C '); + insert into takes values('19245', '349', '1', 'Spring', 2008, 'B-'); + insert into takes values('8426', '237', '1', 'Spring', 2008, 'A '); + insert into takes values('37103', '362', '1', 'Fall', 2005, 'A-'); + insert into takes values('12979', '362', '1', 'Fall', 2005, 'A-'); + insert into takes values('16297', '313', '1', 'Fall', 2010, 'C '); + insert into takes values('67436', '400', '2', 'Fall', 2003, 'B+'); + insert into takes values('97868', '949', '1', 'Fall', 2007, 'C-'); + insert into takes values('10904', '105', '1', 'Fall', 2009, 'B+'); + insert into takes values('74974', '702', '1', 'Spring', 2001, 'C-'); + insert into takes values('94324', '352', '1', 'Spring', 2006, 'B-'); + insert into takes values('69783', '927', '1', 'Fall', 2002, 'C-'); + insert into takes values('89000', '362', '2', 'Fall', 2006, 'B+'); + insert into takes values('79210', '843', '1', 'Fall', 2010, 'C '); + insert into takes values('20489', '158', '2', 'Spring', 2008, 'C+'); + insert into takes values('90663', '960', '1', 'Fall', 2009, 'B+'); + insert into takes values('98056', '338', '2', 'Spring', 2006, 'A-'); + insert into takes values('38712', '748', '1', 'Fall', 2003, 'A+'); + insert into takes values('10834', '426', '1', 'Spring', 2006, 'C-'); + insert into takes values('1080', '200', '1', 'Spring', 2007, 'C-'); + insert into takes values('95840', '559', '1', 'Fall', 2002, 'B '); + insert into takes values('61854', '408', '1', 'Spring', 2007, 'A-'); + insert into takes values('96710', '604', '1', 'Spring', 2009, 'A '); + insert into takes values('51975', '960', '1', 'Fall', 2009, 'B+'); + insert into takes values('12941', '696', '1', 'Spring', 2002, 'A+'); + insert into takes values('86674', '867', '2', 'Fall', 2010, 'B+'); + insert into takes values('98047', '972', '1', 'Spring', 2009, 'A '); + insert into takes values('41683', '489', '1', 'Fall', 2007, 'B '); + insert into takes values('24442', '169', '2', 'Fall', 2002, 'C-'); + insert into takes values('30252', '408', '1', 'Spring', 2007, 'B '); + insert into takes values('82707', '972', '1', 'Spring', 2009, 'A+'); + insert into takes values('66484', '629', '1', 'Spring', 2003, 'C '); + insert into takes values('46074', '591', '1', 'Spring', 2005, 'C-'); + insert into takes values('10834', '612', '1', 'Fall', 2007, 'A '); + insert into takes values('16480', '137', '1', 'Spring', 2002, 'B+'); + insert into takes values('79352', '105', '1', 'Fall', 2009, 'C '); + insert into takes values('64067', '105', '1', 'Fall', 2009, 'B-'); + insert into takes values('95046', '493', '1', 'Spring', 2010, 'A+'); + insert into takes values('84702', '626', '1', 'Fall', 2006, 'C+'); + insert into takes values('21394', '893', '1', 'Fall', 2007, 'A '); + insert into takes values('92274', '571', '1', 'Spring', 2004, 'A '); + insert into takes values('39704', '158', '2', 'Spring', 2008, 'A-'); + insert into takes values('89759', '702', '1', 'Spring', 2001, 'A+'); + insert into takes values('57456', '304', '1', 'Fall', 2009, 'A '); + insert into takes values('64297', '242', '1', 'Fall', 2009, 'B-'); + insert into takes values('98563', '867', '1', 'Fall', 2006, 'B-'); + insert into takes values('35462', '400', '1', 'Spring', 2007, 'C '); + insert into takes values('61854', '692', '1', 'Spring', 2010, 'A-'); + insert into takes values('38668', '843', '1', 'Fall', 2010, 'B '); + insert into takes values('75794', '679', '1', 'Spring', 2010, 'A-'); + insert into takes values('80742', '362', '1', 'Fall', 2005, 'C '); + insert into takes values('85746', '352', '1', 'Spring', 2006, 'B+'); + insert into takes values('8347', '559', '1', 'Fall', 2002, 'C+'); + insert into takes values('74464', '843', '1', 'Fall', 2010, 'A '); + insert into takes values('83622', '949', '1', 'Fall', 2007, 'A+'); + insert into takes values('91091', '927', '1', 'Fall', 2002, 'C '); + insert into takes values('15024', '313', '1', 'Fall', 2010, 'A '); + insert into takes values('31341', '679', '1', 'Spring', 2010, 'A '); + insert into takes values('84432', '192', '1', 'Fall', 2002, 'C+'); + insert into takes values('10527', '604', '1', 'Spring', 2009, 'A-'); + insert into takes values('54728', '445', '1', 'Spring', 2001, 'A '); + insert into takes values('44703', '270', '1', 'Spring', 2010, 'A-'); + insert into takes values('6209', '158', '2', 'Spring', 2008, 'B-'); + insert into takes values('63288', '338', '2', 'Spring', 2006, 'A+'); + insert into takes values('43348', '468', '1', 'Fall', 2005, 'A '); + insert into takes values('62487', '960', '1', 'Fall', 2009, 'B-'); + insert into takes values('46337', '421', '1', 'Fall', 2004, 'C-'); + insert into takes values('86075', '559', '1', 'Fall', 2002, 'A+'); + insert into takes values('99760', '169', '2', 'Fall', 2002, 'B+'); + insert into takes values('65101', '748', '1', 'Fall', 2003, 'A-'); + insert into takes values('30772', '105', '2', 'Fall', 2002, 'B-'); + insert into takes values('22050', '376', '1', 'Fall', 2006, 'A '); + insert into takes values('78552', '105', '2', 'Fall', 2002, 'C+'); + insert into takes values('19861', '362', '3', 'Spring', 2008, 'C '); + insert into takes values('39580', '338', '1', 'Spring', 2007, 'C+'); + insert into takes values('75273', '362', '2', 'Fall', 2006, 'A-'); + insert into takes values('52872', '443', '1', 'Spring', 2010, 'B-'); + insert into takes values('76799', '319', '1', 'Spring', 2003, 'B-'); + insert into takes values('33645', '927', '1', 'Fall', 2002, 'A '); + insert into takes values('25143', '192', '1', 'Fall', 2002, 'B '); + insert into takes values('20099', '237', '2', 'Fall', 2009, 'B+'); + insert into takes values('87784', '426', '1', 'Spring', 2006, 'A '); + insert into takes values('58701', '972', '1', 'Spring', 2009, 'B-'); + insert into takes values('23992', '591', '1', 'Spring', 2005, 'A-'); + insert into takes values('1367', '692', '1', 'Spring', 2010, 'C-'); + insert into takes values('48247', '679', '1', 'Spring', 2010, 'B '); + insert into takes values('83444', '468', '1', 'Fall', 2005, 'C-'); + insert into takes values('12078', '493', '1', 'Spring', 2010, 'A-'); + insert into takes values('16467', '401', '1', 'Fall', 2003, 'B+'); + insert into takes values('9953', '443', '1', 'Spring', 2010, 'B '); + insert into takes values('50658', '626', '1', 'Fall', 2006, 'A-'); + insert into takes values('7498', '893', '1', 'Fall', 2007, 'A '); + insert into takes values('70688', '443', '1', 'Spring', 2010, 'B '); + insert into takes values('36263', '457', '1', 'Spring', 2001, 'A '); + insert into takes values('58874', '468', '2', 'Fall', 2007, 'C+'); + insert into takes values('37759', '362', '1', 'Fall', 2005, 'B '); + insert into takes values('65258', '493', '1', 'Spring', 2010, 'B '); + insert into takes values('37449', '493', '1', 'Spring', 2010, 'A-'); + insert into takes values('6712', '612', '1', 'Fall', 2007, 'B '); + insert into takes values('12941', '169', '2', 'Fall', 2002, 'C-'); + insert into takes values('78922', '591', '1', 'Spring', 2005, 'A '); + insert into takes values('42388', '270', '1', 'Spring', 2010, 'A+'); + insert into takes values('24374', '748', '1', 'Fall', 2003, 'A '); + insert into takes values('23500', '603', '1', 'Fall', 2003, 'C-'); + insert into takes values('93491', '137', '1', 'Spring', 2002, 'C '); + insert into takes values('25525', '612', '1', 'Fall', 2007, 'C+'); + insert into takes values('30334', '334', '1', 'Fall', 2009, 'A '); + insert into takes values('99369', '867', '1', 'Fall', 2006, 'B+'); + insert into takes values('6367', '694', '1', 'Fall', 2002, 'C-'); + insert into takes values('18338', '169', '2', 'Fall', 2002, 'B-'); + insert into takes values('8957', '735', '2', 'Spring', 2010, 'C '); + insert into takes values('63090', '415', '1', 'Fall', 2010, 'A-'); + insert into takes values('65396', '527', '1', 'Fall', 2004, 'A-'); + insert into takes values('27430', '581', '1', 'Spring', 2005, 'B+'); + insert into takes values('64067', '702', '1', 'Spring', 2001, 'B '); + insert into takes values('75123', '457', '1', 'Spring', 2001, 'B-'); + insert into takes values('67018', '962', '1', 'Spring', 2008, 'C+'); + insert into takes values('7973', '362', '2', 'Fall', 2006, 'C+'); + insert into takes values('80976', '200', '2', 'Fall', 2002, 'C+'); + insert into takes values('35498', '959', '1', 'Fall', 2006, 'C+'); + insert into takes values('45826', '169', '2', 'Fall', 2002, 'B+'); + insert into takes values('23439', '158', '2', 'Spring', 2008, 'A-'); + insert into takes values('23794', '960', '2', 'Fall', 2006, 'C+'); + insert into takes values('5843', '629', '1', 'Spring', 2003, 'C+'); + insert into takes values('12216', '200', '2', 'Fall', 2002, 'B '); + insert into takes values('1402', '415', '1', 'Fall', 2010, 'C+'); + insert into takes values('99369', '137', '1', 'Spring', 2002, 'B '); + insert into takes values('15024', '258', '1', 'Fall', 2007, 'B+'); + insert into takes values('36052', '192', '1', 'Fall', 2002, 'B+'); + insert into takes values('41965', '274', '1', 'Fall', 2002, 'A '); + insert into takes values('84039', '599', '1', 'Spring', 2003, 'B '); + insert into takes values('17397', '366', '1', 'Fall', 2005, 'C+'); + insert into takes values('47487', '867', '2', 'Fall', 2010, 'C+'); + insert into takes values('28352', '242', '1', 'Fall', 2009, 'B+'); + insert into takes values('43226', '445', '1', 'Spring', 2001, 'A '); + insert into takes values('97551', '972', '1', 'Spring', 2009, 'A '); + insert into takes values('11377', '949', '1', 'Fall', 2007, 'A '); + insert into takes values('14065', '960', '2', 'Fall', 2006, 'C-'); + insert into takes values('39612', '352', '1', 'Spring', 2006, 'C+'); + insert into takes values('2629', '352', '1', 'Spring', 2006, 'B-'); + insert into takes values('14484', '338', '1', 'Spring', 2007, 'B+'); + insert into takes values('19848', '867', '2', 'Fall', 2010, 'B '); + insert into takes values('70061', '468', '1', 'Fall', 2005, 'C-'); + insert into takes values('19582', '875', '1', 'Spring', 2005, 'B+'); + insert into takes values('16250', '629', '1', 'Spring', 2003, 'A-'); + insert into takes values('77289', '949', '1', 'Fall', 2007, 'A '); + insert into takes values('85211', '376', '1', 'Fall', 2006, 'C '); + insert into takes values('63288', '352', '1', 'Spring', 2006, 'A-'); + insert into takes values('48009', '843', '1', 'Fall', 2010, 'A-'); + insert into takes values('59046', '694', '1', 'Fall', 2002, 'B+'); + insert into takes values('95201', '679', '1', 'Spring', 2010, 'B+'); + insert into takes values('51549', '169', '1', 'Spring', 2007, 'C '); + insert into takes values('90567', '192', '1', 'Fall', 2002, 'C '); + insert into takes values('97694', '626', '1', 'Fall', 2006, 'A-'); + insert into takes values('95099', '545', '1', 'Fall', 2001, 'A-'); + insert into takes values('81883', '352', '1', 'Spring', 2006, 'A-'); + insert into takes values('15430', '443', '2', 'Spring', 2002, 'A-'); + insert into takes values('83838', '626', '1', 'Fall', 2006, 'B-'); + insert into takes values('7287', '493', '1', 'Spring', 2010, 'C+'); + insert into takes values('53424', '626', '1', 'Fall', 2006, 'A '); + insert into takes values('55698', '158', '1', 'Fall', 2008, 'A '); + insert into takes values('34392', '735', '1', 'Spring', 2003, 'A+'); + insert into takes values('32490', '527', '1', 'Fall', 2004, 'B-'); + insert into takes values('36791', '304', '1', 'Fall', 2009, 'C-'); + insert into takes values('62226', '974', '1', 'Fall', 2003, 'B '); + insert into takes values('64259', '893', '1', 'Fall', 2007, 'C+'); + insert into takes values('10454', '629', '1', 'Spring', 2003, 'C '); + insert into takes values('25143', '604', '1', 'Spring', 2009, 'C '); + insert into takes values('5399', '642', '1', 'Fall', 2004, 'C-'); + insert into takes values('3640', '313', '1', 'Fall', 2010, 'A-'); + insert into takes values('35220', '960', '1', 'Fall', 2009, 'C-'); + insert into takes values('2133', '571', '1', 'Spring', 2004, 'B-'); + insert into takes values('97355', '704', '1', 'Spring', 2008, 'C-'); + insert into takes values('5898', '972', '1', 'Spring', 2009, 'A+'); + insert into takes values('47379', '158', '2', 'Spring', 2008, 'C '); + insert into takes values('74911', '867', '2', 'Fall', 2010, 'A '); + insert into takes values('14874', '274', '1', 'Fall', 2002, 'A '); + insert into takes values('52876', '795', '1', 'Spring', 2004, 'C-'); + insert into takes values('6523', '591', '1', 'Spring', 2005, 'B+'); + insert into takes values('58701', '362', '2', 'Fall', 2006, 'A+'); + insert into takes values('16250', '927', '1', 'Fall', 2002, 'A-'); + insert into takes values('29959', '366', '1', 'Fall', 2005, 'C+'); + insert into takes values('39520', '629', '1', 'Spring', 2003, 'C-'); + insert into takes values('22417', '352', '1', 'Spring', 2006, 'C+'); + insert into takes values('29390', '962', '1', 'Spring', 2008, 'B+'); + insert into takes values('62728', '401', '1', 'Fall', 2003, 'B+'); + insert into takes values('59553', '864', '1', 'Spring', 2006, 'A '); + insert into takes values('63040', '864', '1', 'Spring', 2006, 'C-'); + insert into takes values('20099', '864', '1', 'Spring', 2006, 'A '); + insert into takes values('69853', '974', '1', 'Fall', 2003, 'B-'); + insert into takes values('96193', '408', '1', 'Spring', 2007, 'A-'); + insert into takes values('98047', '239', '1', 'Fall', 2006, 'B '); + insert into takes values('27366', '791', '1', 'Spring', 2006, 'C '); + insert into takes values('37219', '793', '1', 'Spring', 2002, 'B+'); + insert into takes values('76270', '237', '2', 'Fall', 2009, 'C-'); + insert into takes values('83728', '366', '1', 'Fall', 2005, 'C-'); + insert into takes values('16993', '747', '1', 'Spring', 2004, 'C '); + insert into takes values('96178', '960', '2', 'Fall', 2006, 'A-'); + insert into takes values('11966', '694', '1', 'Fall', 2002, 'C+'); + insert into takes values('1087', '545', '1', 'Fall', 2001, 'C-'); + insert into takes values('95852', '105', '1', 'Fall', 2009, 'B-'); + insert into takes values('38899', '319', '1', 'Spring', 2003, 'C-'); + insert into takes values('39114', '927', '1', 'Fall', 2002, 'A '); + insert into takes values('31341', '864', '1', 'Spring', 2006, 'B+'); + insert into takes values('42956', '400', '2', 'Fall', 2003, 'C '); + insert into takes values('47487', '493', '1', 'Spring', 2010, 'C '); + insert into takes values('37715', '105', '1', 'Fall', 2009, 'C+'); + insert into takes values('36881', '137', '1', 'Spring', 2002, 'A-'); + insert into takes values('32376', '319', '1', 'Spring', 2003, 'B-'); + insert into takes values('32056', '270', '1', 'Spring', 2010, 'C+'); + insert into takes values('34197', '461', '1', 'Fall', 2002, 'C '); + insert into takes values('667', '415', '1', 'Fall', 2010, 'C-'); + insert into takes values('92385', '612', '1', 'Fall', 2007, 'B+'); + insert into takes values('96085', '192', '1', 'Fall', 2002, 'A+'); + insert into takes values('29260', '169', '2', 'Fall', 2002, 'C '); + insert into takes values('50977', '867', '2', 'Fall', 2010, 'C+'); + insert into takes values('59553', '313', '1', 'Fall', 2010, 'A+'); + insert into takes values('17207', '735', '2', 'Spring', 2010, 'B-'); + insert into takes values('89051', '362', '2', 'Fall', 2006, 'B+'); + insert into takes values('30017', '468', '1', 'Fall', 2005, 'B+'); + insert into takes values('99250', '200', '1', 'Spring', 2007, 'A+'); + insert into takes values('26881', '793', '1', 'Spring', 2002, 'C-'); + insert into takes values('99611', '362', '1', 'Fall', 2005, 'B+'); + insert into takes values('11126', '631', '1', 'Spring', 2007, 'C-'); + insert into takes values('36102', '158', '1', 'Fall', 2008, 'A '); + insert into takes values('73186', '760', '1', 'Spring', 2004, 'C+'); + insert into takes values('45083', '105', '2', 'Fall', 2002, 'C+'); + insert into takes values('87222', '793', '1', 'Spring', 2002, 'A+'); + insert into takes values('95850', '679', '1', 'Spring', 2010, 'A+'); + insert into takes values('92965', '486', '1', 'Fall', 2009, 'A+'); + insert into takes values('41450', '960', '1', 'Fall', 2009, 'B '); + insert into takes values('55286', '426', '1', 'Spring', 2006, 'A-'); + insert into takes values('11101', '867', '1', 'Fall', 2006, 'C '); + insert into takes values('20974', '408', '1', 'Spring', 2007, 'A '); + insert into takes values('96203', '461', '1', 'Fall', 2002, 'A-'); + insert into takes values('67371', '864', '1', 'Spring', 2006, 'B-'); + insert into takes values('53165', '704', '1', 'Spring', 2008, 'B-'); + insert into takes values('71768', '362', '2', 'Fall', 2006, 'C-'); + insert into takes values('12236', '852', '1', 'Spring', 2008, 'C '); + insert into takes values('40116', '599', '1', 'Spring', 2003, 'B '); + insert into takes values('53089', '949', '1', 'Fall', 2007, 'B+'); + insert into takes values('31690', '694', '1', 'Fall', 2002, 'A-'); + insert into takes values('16528', '808', '1', 'Fall', 2003, 'C+'); + insert into takes values('26730', '401', '1', 'Fall', 2003, 'C '); + insert into takes values('2848', '496', '1', 'Fall', 2001, 'A+'); + insert into takes values('51008', '349', '1', 'Spring', 2008, 'C '); + insert into takes values('13023', '808', '1', 'Fall', 2003, 'C+'); + insert into takes values('35362', '426', '1', 'Spring', 2006, 'A+'); + insert into takes values('97590', '313', '1', 'Fall', 2010, 'A+'); + insert into takes values('34322', '949', '1', 'Fall', 2007, 'B+'); + insert into takes values('85445', '443', '1', 'Spring', 2010, 'B-'); + insert into takes values('24387', '599', '1', 'Spring', 2003, 'A '); + insert into takes values('19824', '867', '1', 'Fall', 2006, 'C+'); + insert into takes values('37284', '338', '2', 'Spring', 2006, 'A+'); + insert into takes values('2629', '559', '1', 'Fall', 2002, 'A+'); + insert into takes values('70452', '445', '1', 'Spring', 2001, 'A-'); + insert into takes values('48640', '468', '2', 'Fall', 2007, 'C '); + insert into takes values('96052', '476', '1', 'Fall', 2010, 'C '); + insert into takes values('83170', '496', '1', 'Fall', 2001, 'A-'); + insert into takes values('55915', '962', '1', 'Spring', 2008, 'C-'); + insert into takes values('49339', '559', '1', 'Fall', 2002, 'B-'); + insert into takes values('13495', '571', '1', 'Spring', 2004, 'A-'); + insert into takes values('63243', '169', '1', 'Spring', 2007, 'C '); + insert into takes values('8347', '461', '1', 'Fall', 2002, 'A-'); + insert into takes values('11095', '192', '1', 'Fall', 2002, 'A-'); + insert into takes values('3833', '949', '1', 'Fall', 2007, 'B+'); + insert into takes values('35175', '702', '1', 'Spring', 2001, 'A+'); + insert into takes values('86833', '242', '1', 'Fall', 2009, 'A-'); + insert into takes values('1367', '559', '1', 'Fall', 2002, 'A-'); + insert into takes values('34569', '962', '1', 'Spring', 2008, 'C '); + insert into takes values('1954', '679', '1', 'Spring', 2010, 'C '); + insert into takes values('38288', '702', '1', 'Spring', 2001, 'C+'); + insert into takes values('68516', '603', '1', 'Fall', 2003, 'A-'); + insert into takes values('49214', '960', '2', 'Fall', 2006, 'C '); + insert into takes values('8457', '626', '1', 'Fall', 2006, 'A '); + insert into takes values('25143', '702', '1', 'Spring', 2001, 'B '); + insert into takes values('93814', '349', '1', 'Spring', 2008, 'A '); + insert into takes values('72643', '629', '1', 'Spring', 2003, 'A+'); + insert into takes values('45770', '137', '1', 'Spring', 2002, 'A+'); + insert into takes values('336', '791', '1', 'Spring', 2006, 'C '); + insert into takes values('41299', '631', '1', 'Spring', 2007, 'A+'); + insert into takes values('95205', '319', '1', 'Spring', 2003, 'A-'); + insert into takes values('18554', '408', '1', 'Spring', 2007, 'B+'); + insert into takes values('15726', '239', '1', 'Fall', 2006, 'B '); + insert into takes values('64938', '200', '1', 'Spring', 2007, 'A-'); + insert into takes values('20244', '571', '1', 'Spring', 2004, 'B-'); + insert into takes values('44206', '338', '1', 'Spring', 2007, 'C-'); + insert into takes values('61065', '559', '1', 'Fall', 2002, 'B '); + insert into takes values('95840', '362', '1', 'Fall', 2005, 'B-'); + insert into takes values('53699', '642', '1', 'Fall', 2004, 'A '); + insert into takes values('11126', '962', '1', 'Spring', 2008, 'A-'); + insert into takes values('46762', '408', '1', 'Spring', 2007, 'C '); + insert into takes values('5399', '631', '1', 'Spring', 2007, 'B-'); + insert into takes values('13408', '545', '1', 'Fall', 2001, 'C-'); + insert into takes values('95574', '747', '1', 'Spring', 2004, 'B-'); + insert into takes values('32464', '105', '2', 'Fall', 2002, 'A '); + insert into takes values('32506', '400', '2', 'Fall', 2003, 'C-'); + insert into takes values('2970', '239', '1', 'Fall', 2006, 'A '); + insert into takes values('92385', '960', '1', 'Fall', 2009, 'C '); + insert into takes values('57925', '362', '2', 'Fall', 2006, 'A+'); + insert into takes values('25525', '808', '1', 'Fall', 2003, 'A-'); + insert into takes values('12326', '843', '1', 'Fall', 2010, 'C-'); + insert into takes values('89551', '692', '1', 'Spring', 2010, 'A+'); + insert into takes values('36102', '867', '1', 'Fall', 2006, 'B '); + insert into takes values('42843', '972', '1', 'Spring', 2009, 'B-'); + insert into takes values('72643', '991', '1', 'Spring', 2008, 'A-'); + insert into takes values('31266', '400', '1', 'Spring', 2007, 'A-'); + insert into takes values('13880', '571', '1', 'Spring', 2004, 'A+'); + insert into takes values('66753', '867', '1', 'Fall', 2006, 'B+'); + insert into takes values('37350', '338', '1', 'Spring', 2007, 'B+'); + insert into takes values('37734', '527', '1', 'Fall', 2004, 'B+'); + insert into takes values('77898', '400', '2', 'Fall', 2003, 'A+'); + insert into takes values('17507', '274', '1', 'Fall', 2002, 'B '); + insert into takes values('97435', '704', '1', 'Spring', 2008, 'C+'); + insert into takes values('5703', '612', '1', 'Fall', 2007, 'A-'); + insert into takes values('30723', '991', '1', 'Spring', 2008, 'C '); + insert into takes values('36494', '748', '1', 'Fall', 2003, 'C-'); + insert into takes values('62716', '704', '1', 'Spring', 2008, 'B-'); + insert into takes values('69222', '561', '1', 'Fall', 2006, 'C '); + insert into takes values('67407', '960', '2', 'Fall', 2006, 'C '); + insert into takes values('17192', '482', '1', 'Fall', 2005, 'B '); + insert into takes values('82301', '735', '2', 'Spring', 2010, 'C+'); + insert into takes values('82066', '476', '1', 'Fall', 2010, 'C '); + insert into takes values('76224', '802', '1', 'Spring', 2003, 'C '); + insert into takes values('99760', '581', '1', 'Spring', 2005, 'C-'); + insert into takes values('97023', '808', '1', 'Fall', 2003, 'C-'); + insert into takes values('76270', '591', '1', 'Spring', 2005, 'A-'); + insert into takes values('85575', '927', '1', 'Fall', 2002, 'A+'); + insert into takes values('18108', '747', '1', 'Spring', 2004, 'C+'); + insert into takes values('8853', '962', '1', 'Spring', 2008, 'A-'); + insert into takes values('74796', '959', '1', 'Fall', 2006, 'C+'); + insert into takes values('54153', '561', '1', 'Fall', 2006, 'C+'); + insert into takes values('11237', '747', '1', 'Spring', 2004, 'B+'); + insert into takes values('67146', '242', '1', 'Fall', 2009, 'B '); + insert into takes values('19791', '581', '1', 'Spring', 2005, 'B+'); + insert into takes values('57474', '604', '1', 'Spring', 2009, 'B '); + insert into takes values('90004', '960', '1', 'Fall', 2009, 'C-'); + insert into takes values('56276', '631', '1', 'Spring', 2007, 'A-'); + insert into takes values('38121', '631', '1', 'Spring', 2007, 'C+'); + insert into takes values('36126', '338', '2', 'Spring', 2006, 'C+'); + insert into takes values('22417', '875', '1', 'Spring', 2005, 'B-'); + insert into takes values('47677', '338', '1', 'Spring', 2007, 'A '); + insert into takes values('15487', '376', '1', 'Fall', 2006, 'A+'); + insert into takes values('64820', '493', '1', 'Spring', 2010, 'B-'); + insert into takes values('37521', '748', '1', 'Fall', 2003, 'A-'); + insert into takes values('14869', '237', '2', 'Fall', 2009, 'C '); + insert into takes values('85904', '476', '1', 'Fall', 2010, 'C+'); + insert into takes values('70099', '696', '1', 'Spring', 2002, 'A+'); + insert into takes values('68263', '808', '1', 'Fall', 2003, 'C+'); + insert into takes values('89297', '696', '1', 'Spring', 2002, 'B+'); + insert into takes values('59455', '486', '1', 'Fall', 2009, 'C '); + insert into takes values('37734', '366', '1', 'Fall', 2005, 'A '); + insert into takes values('10917', '200', '2', 'Fall', 2002, 'C '); + insert into takes values('96206', '962', '1', 'Spring', 2008, 'C '); + insert into takes values('31761', '200', '1', 'Spring', 2007, 'C '); + insert into takes values('95852', '867', '2', 'Fall', 2010, 'A-'); + insert into takes values('54875', '631', '1', 'Spring', 2007, 'A+'); + insert into takes values('85356', '137', '1', 'Spring', 2002, 'B-'); + insert into takes values('847', '415', '1', 'Fall', 2010, 'C '); + insert into takes values('77231', '426', '1', 'Spring', 2006, 'A-'); + insert into takes values('67425', '559', '1', 'Fall', 2002, 'A+'); + insert into takes values('48778', '960', '1', 'Fall', 2009, 'C '); + insert into takes values('29803', '808', '1', 'Fall', 2003, 'C-'); + insert into takes values('1087', '200', '2', 'Fall', 2002, 'B '); + insert into takes values('18554', '696', '1', 'Spring', 2002, 'C-'); + insert into takes values('70522', '960', '2', 'Fall', 2006, 'A+'); + insert into takes values('9114', '949', '1', 'Fall', 2007, 'C-'); + insert into takes values('68263', '304', '1', 'Fall', 2009, 'A '); + insert into takes values('67033', '960', '2', 'Fall', 2006, 'B '); + insert into takes values('85680', '237', '2', 'Fall', 2009, 'A '); + insert into takes values('83511', '663', '1', 'Spring', 2005, 'A+'); + insert into takes values('21100', '334', '1', 'Fall', 2009, 'C+'); + insert into takes values('44551', '258', '1', 'Fall', 2007, 'C-'); + insert into takes values('16467', '258', '1', 'Fall', 2007, 'A+'); + insert into takes values('78782', '400', '2', 'Fall', 2003, 'B-'); + insert into takes values('92274', '319', '1', 'Spring', 2003, 'A-'); + insert into takes values('88140', '270', '1', 'Spring', 2010, 'C '); + insert into takes values('79170', '169', '2', 'Fall', 2002, 'A '); + insert into takes values('52872', '338', '2', 'Spring', 2006, 'C-'); + insert into takes values('25331', '663', '1', 'Spring', 2005, 'A '); + insert into takes values('80113', '486', '1', 'Fall', 2009, 'B+'); + insert into takes values('24809', '496', '1', 'Fall', 2001, 'B '); + insert into takes values('49073', '808', '1', 'Fall', 2003, 'A '); + insert into takes values('65688', '400', '1', 'Spring', 2007, 'A+'); + insert into takes values('28994', '362', '1', 'Fall', 2005, 'B-'); + insert into takes values('27528', '445', '1', 'Spring', 2001, 'B+'); + insert into takes values('12069', '642', '1', 'Fall', 2004, 'C+'); + insert into takes values('77664', '962', '1', 'Spring', 2008, 'A-'); + insert into takes values('77289', '527', '1', 'Fall', 2004, 'C+'); + insert into takes values('55000', '313', '1', 'Fall', 2010, 'C-'); + insert into takes values('59553', '843', '1', 'Fall', 2010, 'B-'); + insert into takes values('99553', '960', '1', 'Fall', 2009, 'A+'); + insert into takes values('55009', '571', '1', 'Spring', 2004, 'A-'); + insert into takes values('79446', '468', '1', 'Fall', 2005, 'C+'); + insert into takes values('64724', '604', '1', 'Spring', 2009, 'B '); + insert into takes values('85602', '461', '1', 'Fall', 2002, 'A '); + insert into takes values('56080', '735', '2', 'Spring', 2010, 'B '); + insert into takes values('50267', '527', '1', 'Fall', 2004, 'A '); + insert into takes values('77664', '760', '1', 'Spring', 2004, 'C '); + insert into takes values('15024', '604', '1', 'Spring', 2009, 'C+'); + insert into takes values('40677', '991', '1', 'Spring', 2008, 'B+'); + insert into takes values('3640', '960', '2', 'Fall', 2006, 'C+'); + insert into takes values('29871', '694', '1', 'Fall', 2002, 'A-'); + insert into takes values('30858', '400', '1', 'Spring', 2007, 'A-'); + insert into takes values('71529', '158', '1', 'Fall', 2008, 'B '); + insert into takes values('645', '694', '1', 'Fall', 2002, 'C '); + insert into takes values('56882', '476', '1', 'Fall', 2010, 'C '); + insert into takes values('42688', '408', '1', 'Spring', 2007, 'C '); + insert into takes values('43616', '169', '1', 'Spring', 2007, 'B-'); + insert into takes values('25785', '612', '1', 'Fall', 2007, 'A '); + insert into takes values('42092', '482', '1', 'Fall', 2005, 'A+'); + insert into takes values('96206', '362', '1', 'Fall', 2005, 'A-'); + insert into takes values('39901', '735', '1', 'Spring', 2003, 'C '); + insert into takes values('51817', '400', '1', 'Spring', 2007, 'C-'); + insert into takes values('23475', '239', '1', 'Fall', 2006, 'A+'); + insert into takes values('93171', '960', '2', 'Fall', 2006, 'B '); + insert into takes values('82591', '376', '1', 'Fall', 2006, 'A+'); + insert into takes values('3576', '875', '1', 'Spring', 2005, 'C+'); + insert into takes values('5399', '376', '1', 'Fall', 2006, 'C+'); + insert into takes values('6304', '489', '1', 'Fall', 2007, 'A '); + insert into takes values('90779', '334', '1', 'Fall', 2009, 'A '); + insert into takes values('10556', '949', '1', 'Fall', 2007, 'A '); + insert into takes values('39612', '571', '1', 'Spring', 2004, 'B+'); + insert into takes values('99977', '704', '1', 'Spring', 2008, 'C-'); + insert into takes values('46066', '559', '1', 'Fall', 2002, 'A '); + insert into takes values('72528', '626', '1', 'Fall', 2006, 'A+'); + insert into takes values('32744', '169', '1', 'Spring', 2007, 'A+'); + insert into takes values('61232', '338', '1', 'Spring', 2007, 'A-'); + insert into takes values('62754', '192', '1', 'Fall', 2002, 'C+'); + insert into takes values('57083', '349', '1', 'Spring', 2008, 'A+'); + insert into takes values('91616', '352', '1', 'Spring', 2006, 'A-'); + insert into takes values('65688', '960', '2', 'Fall', 2006, 'C-'); + insert into takes values('107', '949', '1', 'Fall', 2007, 'A '); + insert into takes values('87246', '852', '1', 'Spring', 2008, 'A '); + insert into takes values('74070', '258', '1', 'Fall', 2007, 'A-'); + insert into takes values('14065', '376', '1', 'Fall', 2006, 'A-'); + insert into takes values('7035', '338', '1', 'Spring', 2007, 'B+'); + insert into takes values('76953', '476', '1', 'Fall', 2010, 'B '); + insert into takes values('2178', '571', '1', 'Spring', 2004, 'B+'); + insert into takes values('18108', '604', '1', 'Spring', 2009, 'B-'); + insert into takes values('91343', '461', '1', 'Fall', 2002, 'C+'); + insert into takes values('17424', '445', '1', 'Spring', 2001, 'B '); + insert into takes values('72669', '362', '2', 'Fall', 2006, 'B '); + insert into takes values('4449', '408', '1', 'Spring', 2007, 'B+'); + insert into takes values('43505', '489', '1', 'Fall', 2007, 'A-'); + insert into takes values('84704', '748', '1', 'Fall', 2003, 'B+'); + insert into takes values('43854', '893', '1', 'Fall', 2007, 'B '); + insert into takes values('59290', '349', '1', 'Spring', 2008, 'B-'); + insert into takes values('28829', '408', '1', 'Spring', 2007, 'A+'); + insert into takes values('17944', '642', '1', 'Fall', 2004, 'B-'); + insert into takes values('63612', '581', '1', 'Spring', 2005, 'A+'); + insert into takes values('48423', '972', '1', 'Spring', 2009, 'B-'); + insert into takes values('24630', '338', '2', 'Spring', 2006, 'A-'); + insert into takes values('95175', '791', '1', 'Spring', 2006, 'B-'); + insert into takes values('67146', '105', '2', 'Fall', 2002, 'C-'); + insert into takes values('61364', '496', '1', 'Fall', 2001, 'C-'); + insert into takes values('77130', '408', '2', 'Spring', 2003, 'A '); + insert into takes values('41894', '875', '1', 'Spring', 2005, 'C-'); + insert into takes values('84704', '486', '1', 'Fall', 2009, 'B+'); + insert into takes values('46260', '242', '1', 'Fall', 2009, 'A '); + insert into takes values('57213', '599', '1', 'Spring', 2003, 'C+'); + insert into takes values('41299', '200', '2', 'Fall', 2002, 'B '); + insert into takes values('71085', '461', '1', 'Fall', 2002, 'B-'); + insert into takes values('55238', '169', '2', 'Fall', 2002, 'B '); + insert into takes values('69732', '808', '1', 'Fall', 2003, 'C-'); + insert into takes values('39520', '443', '1', 'Spring', 2010, 'C-'); + insert into takes values('41774', '105', '2', 'Fall', 2002, 'A+'); + insert into takes values('61232', '169', '1', 'Spring', 2007, 'C-'); + insert into takes values('31266', '158', '1', 'Fall', 2008, 'B+'); + insert into takes values('1533', '242', '1', 'Fall', 2009, 'A+'); + insert into takes values('4355', '991', '1', 'Spring', 2008, 'A+'); + insert into takes values('93004', '591', '1', 'Spring', 2005, 'C-'); + insert into takes values('11578', '158', '1', 'Fall', 2008, 'C-'); + insert into takes values('66259', '527', '1', 'Fall', 2004, 'C+'); + insert into takes values('79772', '612', '1', 'Fall', 2007, 'A '); + insert into takes values('16523', '313', '1', 'Fall', 2010, 'A-'); + insert into takes values('44706', '200', '2', 'Fall', 2002, 'B-'); + insert into takes values('27950', '795', '1', 'Spring', 2004, 'C+'); + insert into takes values('96895', '461', '1', 'Fall', 2002, 'A+'); + insert into takes values('36513', '867', '1', 'Fall', 2006, 'B '); + insert into takes values('86707', '408', '1', 'Spring', 2007, 'B+'); + insert into takes values('3487', '867', '1', 'Fall', 2006, 'B '); + insert into takes values('61354', '735', '2', 'Spring', 2010, 'B '); + insert into takes values('94178', '561', '1', 'Fall', 2006, 'C '); + insert into takes values('86969', '795', '1', 'Spring', 2004, 'A-'); + insert into takes values('8807', '631', '1', 'Spring', 2007, 'A+'); + insert into takes values('47379', '461', '1', 'Fall', 2002, 'B '); + insert into takes values('52523', '631', '1', 'Spring', 2007, 'C+'); + insert into takes values('44352', '972', '1', 'Spring', 2009, 'A-'); + insert into takes values('92417', '748', '1', 'Fall', 2003, 'A+'); + insert into takes values('25725', '258', '1', 'Fall', 2007, 'A '); + insert into takes values('49450', '362', '2', 'Fall', 2006, 'B+'); + insert into takes values('76768', '561', '1', 'Fall', 2006, 'C+'); + insert into takes values('88358', '362', '3', 'Spring', 2008, 'B-'); + insert into takes values('45770', '747', '1', 'Spring', 2004, 'B+'); + insert into takes values('42956', '313', '1', 'Fall', 2010, 'C+'); + insert into takes values('75772', '802', '1', 'Spring', 2003, 'B '); + insert into takes values('70098', '496', '1', 'Fall', 2001, 'C+'); + insert into takes values('51093', '974', '1', 'Fall', 2003, 'B '); + insert into takes values('59538', '237', '1', 'Spring', 2008, 'A '); + insert into takes values('69521', '313', '1', 'Fall', 2010, 'B '); + insert into takes values('71628', '591', '1', 'Spring', 2005, 'C+'); + insert into takes values('67310', '192', '1', 'Fall', 2002, 'C-'); + insert into takes values('98690', '702', '1', 'Spring', 2001, 'A+'); + insert into takes values('14032', '237', '2', 'Fall', 2009, 'A '); + insert into takes values('65208', '867', '2', 'Fall', 2010, 'C+'); + insert into takes values('32464', '270', '1', 'Spring', 2010, 'A+'); + insert into takes values('45650', '345', '1', 'Spring', 2008, 'C+'); + insert into takes values('44258', '237', '1', 'Spring', 2008, 'C-'); + insert into takes values('71630', '735', '1', 'Spring', 2003, 'B+'); + insert into takes values('13408', '338', '2', 'Spring', 2006, 'C-'); + insert into takes values('90004', '631', '1', 'Spring', 2007, 'B+'); + insert into takes values('8957', '581', '1', 'Spring', 2005, 'A+'); + insert into takes values('54153', '694', '1', 'Fall', 2002, 'C-'); + insert into takes values('70395', '974', '1', 'Fall', 2003, 'A-'); + insert into takes values('75560', '559', '1', 'Fall', 2002, 'A '); + insert into takes values('99451', '408', '1', 'Spring', 2007, 'C '); + insert into takes values('54672', '486', '1', 'Fall', 2009, 'B '); + insert into takes values('83170', '748', '1', 'Fall', 2003, 'B+'); + insert into takes values('64893', '696', '1', 'Spring', 2002, 'A+'); + insert into takes values('92417', '631', '1', 'Spring', 2007, 'B-'); + insert into takes values('98563', '304', '1', 'Fall', 2009, 'C+'); + insert into takes values('94173', '748', '1', 'Fall', 2003, 'B '); + insert into takes values('99348', '795', '1', 'Spring', 2004, 'C-'); + insert into takes values('86127', '527', '1', 'Fall', 2004, 'B-'); + insert into takes values('66212', '591', '1', 'Spring', 2005, 'B-'); + insert into takes values('23525', '169', '1', 'Spring', 2007, 'A-'); + insert into takes values('36126', '486', '1', 'Fall', 2009, 'C+'); + insert into takes values('14432', '482', '1', 'Fall', 2005, 'B-'); + insert into takes values('41938', '599', '1', 'Spring', 2003, 'C-'); + insert into takes values('36244', '461', '1', 'Fall', 2002, 'B '); + insert into takes values('31080', '735', '1', 'Spring', 2003, 'A+'); + insert into takes values('94990', '927', '1', 'Fall', 2002, 'B-'); + insert into takes values('54728', '304', '1', 'Fall', 2009, 'B+'); + insert into takes values('22618', '421', '1', 'Fall', 2004, 'B '); + insert into takes values('57941', '239', '1', 'Fall', 2006, 'C+'); + insert into takes values('57538', '962', '1', 'Spring', 2008, 'A '); + insert into takes values('88085', '692', '1', 'Spring', 2010, 'C '); + insert into takes values('95852', '974', '1', 'Fall', 2003, 'C+'); + insert into takes values('91370', '875', '1', 'Spring', 2005, 'A '); + insert into takes values('97023', '169', '1', 'Spring', 2007, 'A+'); + insert into takes values('72669', '334', '1', 'Fall', 2009, 'B '); + insert into takes values('96085', '527', '1', 'Fall', 2004, 'C '); + insert into takes values('28989', '629', '1', 'Spring', 2003, 'B+'); + insert into takes values('16543', '338', '2', 'Spring', 2006, 'C-'); + insert into takes values('4860', '401', '1', 'Fall', 2003, 'C+'); + insert into takes values('74672', '421', '1', 'Fall', 2004, 'A+'); + insert into takes values('28316', '313', '1', 'Fall', 2010, 'B '); + insert into takes values('84704', '362', '1', 'Fall', 2005, 'B '); + insert into takes values('32217', '137', '1', 'Spring', 2002, 'B-'); + insert into takes values('86753', '962', '1', 'Spring', 2008, 'B-'); + insert into takes values('7602', '169', '1', 'Spring', 2007, 'C '); + insert into takes values('90194', '735', '2', 'Spring', 2010, 'A+'); + insert into takes values('75173', '158', '1', 'Fall', 2008, 'B '); + insert into takes values('78637', '867', '1', 'Fall', 2006, 'A '); + insert into takes values('13506', '561', '1', 'Fall', 2006, 'A '); + insert into takes values('28994', '200', '2', 'Fall', 2002, 'A+'); + insert into takes values('28352', '960', '2', 'Fall', 2006, 'C '); + insert into takes values('37430', '679', '1', 'Spring', 2010, 'C '); + insert into takes values('58469', '169', '2', 'Fall', 2002, 'A '); + insert into takes values('76173', '927', '1', 'Fall', 2002, 'B+'); + insert into takes values('41973', '169', '2', 'Fall', 2002, 'A-'); + insert into takes values('99719', '468', '1', 'Fall', 2005, 'C '); + insert into takes values('15726', '476', '1', 'Fall', 2010, 'A-'); + insert into takes values('83686', '571', '1', 'Spring', 2004, 'A '); + insert into takes values('67660', '105', '1', 'Fall', 2009, 'A '); + insert into takes values('63243', '362', '2', 'Fall', 2006, 'B-'); + insert into takes values('64724', '949', '1', 'Fall', 2007, 'A+'); + insert into takes values('77588', '959', '1', 'Fall', 2006, 'C-'); + insert into takes values('95027', '735', '2', 'Spring', 2010, 'C+'); + insert into takes values('29435', '663', '1', 'Spring', 2005, 'B-'); + insert into takes values('63538', '468', '2', 'Fall', 2007, 'C+'); + insert into takes values('1737', '105', '2', 'Fall', 2002, 'A-'); + insert into takes values('50583', '867', '1', 'Fall', 2006, 'B-'); + insert into takes values('17397', '338', '2', 'Spring', 2006, 'A-'); + insert into takes values('86753', '735', '2', 'Spring', 2010, 'B '); + insert into takes values('13365', '603', '1', 'Fall', 2003, 'C-'); + insert into takes values('30845', '461', '1', 'Fall', 2002, 'C '); + insert into takes values('78792', '366', '1', 'Fall', 2005, 'B+'); + insert into takes values('13403', '443', '2', 'Spring', 2002, 'B-'); + insert into takes values('43993', '591', '1', 'Spring', 2005, 'B '); + insert into takes values('93171', '258', '1', 'Fall', 2007, 'B '); + insert into takes values('55940', '571', '1', 'Spring', 2004, 'A-'); + insert into takes values('29959', '612', '1', 'Fall', 2007, 'B-'); + insert into takes values('28019', '476', '1', 'Fall', 2010, 'A+'); + insert into takes values('10736', '974', '1', 'Fall', 2003, 'C+'); + insert into takes values('17128', '991', '1', 'Spring', 2008, 'A+'); + insert into takes values('37715', '408', '2', 'Spring', 2003, 'C-'); + insert into takes values('85451', '362', '1', 'Fall', 2005, 'B-'); + insert into takes values('67310', '158', '1', 'Fall', 2008, 'B+'); + insert into takes values('47379', '959', '1', 'Fall', 2006, 'A-'); + insert into takes values('44352', '735', '2', 'Spring', 2010, 'B-'); + insert into takes values('8140', '476', '1', 'Fall', 2010, 'A '); + insert into takes values('24201', '468', '2', 'Fall', 2007, 'A '); + insert into takes values('95029', '642', '1', 'Fall', 2004, 'C+'); + insert into takes values('38899', '991', '1', 'Spring', 2008, 'C '); + insert into takes values('16057', '631', '1', 'Spring', 2007, 'B-'); + insert into takes values('40937', '704', '1', 'Spring', 2008, 'A '); + insert into takes values('17076', '400', '1', 'Spring', 2007, 'C-'); + insert into takes values('35881', '137', '1', 'Spring', 2002, 'A-'); + insert into takes values('10481', '747', '1', 'Spring', 2004, 'B+'); + insert into takes values('52656', '319', '1', 'Spring', 2003, 'B-'); + insert into takes values('75241', '408', '1', 'Spring', 2007, 'A+'); + insert into takes values('64192', '400', '1', 'Spring', 2007, 'C+'); + insert into takes values('94846', '702', '1', 'Spring', 2001, 'A+'); + insert into takes values('84410', '960', '2', 'Fall', 2006, 'B-'); + insert into takes values('10838', '631', '1', 'Spring', 2007, 'B '); + insert into takes values('20803', '591', '1', 'Spring', 2005, 'A+'); + insert into takes values('2561', '352', '1', 'Spring', 2006, 'A-'); + insert into takes values('29849', '599', '1', 'Spring', 2003, 'C-'); + insert into takes values('73542', '561', '1', 'Fall', 2006, 'C '); + insert into takes values('2133', '400', '1', 'Spring', 2007, 'C+'); + insert into takes values('56212', '400', '2', 'Fall', 2003, 'B '); + insert into takes values('62373', '559', '1', 'Fall', 2002, 'B-'); + insert into takes values('27094', '735', '2', 'Spring', 2010, 'C-'); + insert into takes values('97679', '692', '1', 'Spring', 2010, 'C+'); + insert into takes values('98830', '401', '1', 'Fall', 2003, 'A '); + insert into takes values('84792', '972', '1', 'Spring', 2009, 'B+'); + insert into takes values('1922', '169', '2', 'Fall', 2002, 'A-'); + insert into takes values('51678', '338', '1', 'Spring', 2007, 'B+'); + insert into takes values('65400', '867', '1', 'Fall', 2006, 'A-'); + insert into takes values('42625', '974', '1', 'Fall', 2003, 'A+'); + insert into takes values('16993', '137', '1', 'Spring', 2002, 'C '); + insert into takes values('76672', '603', '1', 'Fall', 2003, 'A-'); + insert into takes values('65681', '158', '2', 'Spring', 2008, 'A '); + insert into takes values('13365', '468', '2', 'Fall', 2007, 'C '); + insert into takes values('27956', '692', '1', 'Spring', 2010, 'C-'); + insert into takes values('91132', '313', '1', 'Fall', 2010, 'A+'); + insert into takes values('96178', '581', '1', 'Spring', 2005, 'A-'); + insert into takes values('30161', '642', '1', 'Fall', 2004, 'A '); + insert into takes values('84239', '345', '1', 'Spring', 2008, 'C-'); + insert into takes values('82868', '604', '1', 'Spring', 2009, 'C+'); + insert into takes values('53077', '571', '1', 'Spring', 2004, 'A-'); + insert into takes values('18809', '376', '1', 'Fall', 2006, 'C '); + insert into takes values('49450', '169', '2', 'Fall', 2002, 'B-'); + insert into takes values('3639', '496', '1', 'Fall', 2001, 'C-'); + insert into takes values('2795', '893', '1', 'Fall', 2007, 'C-'); + insert into takes values('63560', '704', '1', 'Spring', 2008, 'C '); + insert into takes values('21126', '864', '1', 'Spring', 2006, 'A-'); + insert into takes values('45680', '445', '1', 'Spring', 2001, 'B+'); + insert into takes values('49073', '304', '1', 'Fall', 2009, 'C+'); + insert into takes values('16453', '400', '2', 'Fall', 2003, 'C '); + insert into takes values('33817', '867', '2', 'Fall', 2010, 'A-'); + insert into takes values('26028', '972', '1', 'Spring', 2009, 'A '); + insert into takes values('4435', '476', '1', 'Fall', 2010, 'B-'); + insert into takes values('4004', '486', '1', 'Fall', 2009, 'A '); + insert into takes values('22620', '748', '1', 'Fall', 2003, 'B+'); + insert into takes values('65438', '334', '1', 'Fall', 2009, 'A+'); + insert into takes values('49391', '376', '1', 'Fall', 2006, 'C-'); + insert into takes values('15070', '559', '1', 'Fall', 2002, 'A-'); + insert into takes values('11510', '443', '2', 'Spring', 2002, 'A+'); + insert into takes values('51238', '476', '1', 'Fall', 2010, 'A+'); + insert into takes values('61527', '362', '3', 'Spring', 2008, 'B-'); + insert into takes values('68554', '626', '1', 'Fall', 2006, 'C+'); + insert into takes values('53588', '959', '1', 'Fall', 2006, 'A+'); + insert into takes values('9183', '571', '1', 'Spring', 2004, 'C '); + insert into takes values('68070', '443', '2', 'Spring', 2002, 'C-'); + insert into takes values('44258', '603', '1', 'Fall', 2003, 'B '); + insert into takes values('97658', '694', '1', 'Fall', 2002, 'A+'); + insert into takes values('99348', '559', '1', 'Fall', 2002, 'C-'); + insert into takes values('90372', '158', '2', 'Spring', 2008, 'A-'); + insert into takes values('19536', '338', '1', 'Spring', 2007, 'B+'); + insert into takes values('99348', '421', '1', 'Fall', 2004, 'A '); + insert into takes values('16523', '802', '1', 'Spring', 2003, 'C+'); + insert into takes values('7956', '200', '1', 'Spring', 2007, 'C '); + insert into takes values('29239', '401', '1', 'Fall', 2003, 'B+'); + insert into takes values('40116', '366', '1', 'Fall', 2005, 'A+'); + insert into takes values('96772', '696', '1', 'Spring', 2002, 'C+'); + insert into takes values('22345', '527', '1', 'Fall', 2004, 'A+'); + insert into takes values('80651', '237', '1', 'Spring', 2008, 'B-'); + insert into takes values('92385', '443', '1', 'Spring', 2010, 'A '); + insert into takes values('36303', '338', '2', 'Spring', 2006, 'B '); + insert into takes values('97868', '679', '1', 'Spring', 2010, 'C-'); + insert into takes values('17076', '960', '1', 'Fall', 2009, 'A-'); + insert into takes values('10917', '696', '1', 'Spring', 2002, 'A+'); + insert into takes values('43616', '545', '1', 'Fall', 2001, 'C-'); + insert into takes values('34331', '702', '1', 'Spring', 2001, 'A+'); + insert into takes values('4449', '793', '1', 'Spring', 2002, 'B+'); + insert into takes values('827', '704', '1', 'Spring', 2008, 'A+'); + insert into takes values('96615', '304', '1', 'Fall', 2009, 'B-'); + insert into takes values('50583', '461', '1', 'Fall', 2002, 'A-'); + insert into takes values('21394', '679', '1', 'Spring', 2010, 'C-'); + insert into takes values('76768', '559', '1', 'Fall', 2002, 'A+'); + insert into takes values('7204', '696', '1', 'Spring', 2002, 'B '); + insert into takes values('65443', '527', '1', 'Fall', 2004, 'C+'); + insert into takes values('94173', '867', '1', 'Fall', 2006, 'B+'); + insert into takes values('5399', '561', '1', 'Fall', 2006, 'A-'); + insert into takes values('95201', '974', '1', 'Fall', 2003, 'B '); + insert into takes values('87651', '426', '1', 'Spring', 2006, 'C+'); + insert into takes values('557', '991', '1', 'Spring', 2008, 'C-'); + insert into takes values('43032', '338', '2', 'Spring', 2006, 'C-'); + insert into takes values('86127', '489', '1', 'Fall', 2007, 'B+'); + insert into takes values('26427', '545', '1', 'Fall', 2001, 'A '); + insert into takes values('72165', '486', '1', 'Fall', 2009, 'B '); + insert into takes values('14581', '319', '1', 'Spring', 2003, 'B+'); + insert into takes values('30164', '376', '1', 'Fall', 2006, 'B '); + insert into takes values('34957', '313', '1', 'Fall', 2010, 'A '); + insert into takes values('53424', '200', '1', 'Spring', 2007, 'A-'); + insert into takes values('14499', '843', '1', 'Fall', 2010, 'B-'); + insert into takes values('41894', '852', '1', 'Spring', 2008, 'A-'); + insert into takes values('86969', '345', '1', 'Spring', 2008, 'B '); + insert into takes values('46436', '421', '1', 'Fall', 2004, 'A+'); + insert into takes values('17057', '852', '1', 'Spring', 2008, 'C+'); + insert into takes values('38676', '421', '1', 'Fall', 2004, 'B-'); + insert into takes values('82591', '408', '1', 'Spring', 2007, 'B '); + insert into takes values('931', '795', '1', 'Spring', 2004, 'A '); + insert into takes values('58594', '169', '2', 'Fall', 2002, 'B+'); + insert into takes values('10727', '692', '1', 'Spring', 2010, 'B+'); + insert into takes values('41299', '352', '1', 'Spring', 2006, 'A '); + insert into takes values('9460', '760', '1', 'Spring', 2004, 'B+'); + insert into takes values('13826', '843', '1', 'Fall', 2010, 'A+'); + insert into takes values('66763', '626', '1', 'Fall', 2006, 'B-'); + insert into takes values('14829', '694', '1', 'Fall', 2002, 'B+'); + insert into takes values('79487', '486', '1', 'Fall', 2009, 'B '); + insert into takes values('50537', '571', '1', 'Spring', 2004, 'B '); + insert into takes values('26102', '468', '2', 'Fall', 2007, 'C-'); + insert into takes values('30222', '242', '1', 'Fall', 2009, 'A-'); + insert into takes values('30858', '105', '2', 'Fall', 2002, 'B '); + insert into takes values('46928', '304', '1', 'Fall', 2009, 'A-'); + insert into takes values('45002', '401', '1', 'Fall', 2003, 'C-'); + insert into takes values('32056', '338', '1', 'Spring', 2007, 'A '); + insert into takes values('73542', '702', '1', 'Spring', 2001, 'A-'); + insert into takes values('94766', '158', '2', 'Spring', 2008, 'B '); + insert into takes values('59530', '443', '1', 'Spring', 2010, 'C+'); + insert into takes values('76759', '791', '1', 'Spring', 2006, 'C+'); + insert into takes values('16969', '105', '2', 'Fall', 2002, 'B-'); + insert into takes values('32385', '237', '2', 'Fall', 2009, 'A+'); + insert into takes values('63538', '105', '1', 'Fall', 2009, 'B '); + insert into takes values('57511', '735', '1', 'Spring', 2003, 'B-'); + insert into takes values('5843', '960', '1', 'Fall', 2009, 'A-'); + insert into takes values('8957', '864', '1', 'Spring', 2006, 'C+'); + insert into takes values('16593', '545', '1', 'Fall', 2001, 'C '); + insert into takes values('72768', '747', '1', 'Spring', 2004, 'B-'); + insert into takes values('4248', '270', '1', 'Spring', 2010, 'B '); + insert into takes values('41988', '237', '2', 'Fall', 2009, 'B '); + insert into takes values('77000', '237', '1', 'Spring', 2008, 'A-'); + insert into takes values('88287', '962', '1', 'Spring', 2008, 'C '); + insert into takes values('22170', '629', '1', 'Spring', 2003, 'B+'); + insert into takes values('90448', '169', '1', 'Spring', 2007, 'B-'); + insert into takes values('8986', '808', '1', 'Fall', 2003, 'A '); + insert into takes values('65443', '158', '2', 'Spring', 2008, 'B-'); + insert into takes values('37101', '319', '1', 'Spring', 2003, 'B '); + insert into takes values('52371', '426', '1', 'Spring', 2006, 'C '); + insert into takes values('57156', '408', '1', 'Spring', 2007, 'A '); + insert into takes values('23392', '561', '1', 'Fall', 2006, 'C+'); + insert into takes values('15249', '338', '1', 'Spring', 2007, 'B-'); + insert into takes values('40937', '545', '1', 'Fall', 2001, 'A '); + insert into takes values('71630', '559', '1', 'Fall', 2002, 'B-'); + insert into takes values('78787', '735', '2', 'Spring', 2010, 'A+'); + insert into takes values('69471', '808', '1', 'Fall', 2003, 'B-'); + insert into takes values('47627', '760', '1', 'Spring', 2004, 'A+'); + insert into takes values('74840', '696', '1', 'Spring', 2002, 'C-'); + insert into takes values('93039', '561', '1', 'Fall', 2006, 'A '); + insert into takes values('96741', '791', '1', 'Spring', 2006, 'C-'); + insert into takes values('31337', '960', '1', 'Fall', 2009, 'C-'); + insert into takes values('17057', '591', '1', 'Spring', 2005, 'A-'); + insert into takes values('18499', '631', '1', 'Spring', 2007, 'B+'); + insert into takes values('92776', '612', '1', 'Fall', 2007, 'C '); + insert into takes values('76895', '735', '2', 'Spring', 2010, 'C+'); + insert into takes values('70452', '401', '1', 'Fall', 2003, 'A '); + insert into takes values('82970', '642', '1', 'Fall', 2004, 'B '); + insert into takes values('61444', '319', '1', 'Spring', 2003, 'A+'); + insert into takes values('72669', '319', '1', 'Spring', 2003, 'C-'); + insert into takes values('62429', '158', '2', 'Spring', 2008, 'B '); + insert into takes values('31516', '445', '1', 'Spring', 2001, 'B '); + insert into takes values('86707', '760', '1', 'Spring', 2004, 'A '); + insert into takes values('11578', '319', '1', 'Spring', 2003, 'B '); + insert into takes values('75299', '747', '1', 'Spring', 2004, 'A-'); + insert into takes values('94814', '239', '1', 'Fall', 2006, 'C-'); + insert into takes values('1285', '626', '1', 'Fall', 2006, 'C '); + insert into takes values('47627', '408', '1', 'Spring', 2007, 'B+'); + insert into takes values('35523', '962', '1', 'Spring', 2008, 'A-'); + insert into takes values('58935', '802', '1', 'Spring', 2003, 'C+'); + insert into takes values('89132', '561', '1', 'Fall', 2006, 'C-'); + insert into takes values('70522', '927', '1', 'Fall', 2002, 'B-'); + insert into takes values('37946', '338', '1', 'Spring', 2007, 'C+'); + insert into takes values('67655', '702', '1', 'Spring', 2001, 'B+'); + insert into takes values('58919', '237', '1', 'Spring', 2008, 'C+'); + insert into takes values('53451', '599', '1', 'Spring', 2003, 'C '); + insert into takes values('88884', '808', '1', 'Fall', 2003, 'B+'); + insert into takes values('34404', '612', '1', 'Fall', 2007, 'B-'); + insert into takes values('63860', '443', '2', 'Spring', 2002, 'B-'); + insert into takes values('50966', '760', '1', 'Spring', 2004, 'C+'); + insert into takes values('44258', '927', '1', 'Fall', 2002, 'A '); + insert into takes values('19766', '559', '1', 'Fall', 2002, 'A '); + insert into takes values('69960', '349', '1', 'Spring', 2008, 'A+'); + insert into takes values('59172', '959', '1', 'Fall', 2006, 'C+'); + insert into takes values('43854', '415', '1', 'Fall', 2010, 'A-'); + insert into takes values('64013', '581', '1', 'Spring', 2005, 'B-'); + insert into takes values('66054', '400', '1', 'Spring', 2007, 'B '); + insert into takes values('92965', '338', '2', 'Spring', 2006, 'A+'); + insert into takes values('30397', '642', '1', 'Fall', 2004, 'A '); + insert into takes values('37103', '242', '1', 'Fall', 2009, 'C-'); + insert into takes values('40371', '334', '1', 'Fall', 2009, 'A-'); + insert into takes values('96067', '366', '1', 'Fall', 2005, 'B+'); + insert into takes values('9514', '169', '1', 'Spring', 2007, 'A+'); + insert into takes values('97629', '362', '3', 'Spring', 2008, 'C-'); + insert into takes values('91992', '334', '1', 'Fall', 2009, 'A-'); + insert into takes values('37869', '274', '1', 'Fall', 2002, 'C-'); + insert into takes values('90004', '376', '1', 'Fall', 2006, 'B '); + insert into takes values('39978', '158', '2', 'Spring', 2008, 'A+'); + insert into takes values('5144', '795', '1', 'Spring', 2004, 'A+'); + insert into takes values('11377', '545', '1', 'Fall', 2001, 'B '); + insert into takes values('15613', '468', '1', 'Fall', 2005, 'A-'); + insert into takes values('8252', '401', '1', 'Fall', 2003, 'B-'); + insert into takes values('84808', '642', '1', 'Fall', 2004, 'A+'); + insert into takes values('33882', '843', '1', 'Fall', 2010, 'A '); + insert into takes values('91197', '349', '1', 'Spring', 2008, 'B+'); + insert into takes values('15698', '791', '1', 'Spring', 2006, 'C '); + insert into takes values('78782', '362', '1', 'Fall', 2005, 'C+'); + insert into takes values('18234', '527', '1', 'Fall', 2004, 'A-'); + insert into takes values('86651', '169', '1', 'Spring', 2007, 'B-'); + insert into takes values('44703', '345', '1', 'Spring', 2008, 'C-'); + insert into takes values('4004', '960', '1', 'Fall', 2009, 'B+'); + insert into takes values('38013', '793', '1', 'Spring', 2002, 'B '); + insert into takes values('60249', '960', '1', 'Fall', 2009, 'A '); + insert into takes values('42565', '571', '1', 'Spring', 2004, 'C-'); + insert into takes values('98726', '445', '1', 'Spring', 2001, 'B '); + insert into takes values('37449', '747', '1', 'Spring', 2004, 'B-'); + insert into takes values('75273', '270', '1', 'Spring', 2010, 'B-'); + insert into takes values('50013', '169', '2', 'Fall', 2002, 'A-'); + insert into takes values('17676', '457', '1', 'Spring', 2001, 'C-'); + insert into takes values('74509', '461', '1', 'Fall', 2002, 'B-'); + insert into takes values('7287', '345', '1', 'Spring', 2008, 'B+'); + insert into takes values('86641', '421', '1', 'Fall', 2004, 'B+'); + insert into takes values('65438', '457', '1', 'Spring', 2001, 'B '); + insert into takes values('29091', '747', '1', 'Spring', 2004, 'A-'); + insert into takes values('41988', '793', '1', 'Spring', 2002, 'B+'); + insert into takes values('48901', '468', '1', 'Fall', 2005, 'A+'); + insert into takes values('55238', '408', '1', 'Spring', 2007, 'A+'); + insert into takes values('51203', '735', '2', 'Spring', 2010, 'A-'); + insert into takes values('56003', '137', '1', 'Spring', 2002, 'A '); + insert into takes values('27952', '443', '1', 'Spring', 2010, 'A-'); + insert into takes values('50598', '581', '1', 'Spring', 2005, 'A-'); + insert into takes values('90381', '893', '1', 'Fall', 2007, 'B+'); + insert into takes values('73602', '974', '1', 'Fall', 2003, 'A+'); + insert into takes values('11453', '591', '1', 'Spring', 2005, 'B '); + insert into takes values('15980', '319', '1', 'Spring', 2003, 'C-'); + insert into takes values('847', '158', '1', 'Fall', 2008, 'B-'); + insert into takes values('18583', '366', '1', 'Fall', 2005, 'A+'); + insert into takes values('78469', '612', '1', 'Fall', 2007, 'B '); + insert into takes values('69122', '852', '1', 'Spring', 2008, 'B '); + insert into takes values('49244', '200', '2', 'Fall', 2002, 'B-'); + insert into takes values('16297', '338', '1', 'Spring', 2007, 'B+'); + insert into takes values('59530', '843', '1', 'Fall', 2010, 'C-'); + insert into takes values('96206', '791', '1', 'Spring', 2006, 'A-'); + insert into takes values('69471', '760', '1', 'Spring', 2004, 'B+'); + insert into takes values('71944', '408', '2', 'Spring', 2003, 'B-'); + insert into takes values('14214', '408', '2', 'Spring', 2003, 'B '); + insert into takes values('80912', '702', '1', 'Spring', 2001, 'C-'); + insert into takes values('30896', '493', '1', 'Spring', 2010, 'B-'); + insert into takes values('86707', '545', '1', 'Fall', 2001, 'A '); + insert into takes values('6367', '468', '2', 'Fall', 2007, 'C+'); + insert into takes values('24197', '242', '1', 'Fall', 2009, 'B-'); + insert into takes values('65400', '852', '1', 'Spring', 2008, 'B+'); + insert into takes values('41299', '200', '1', 'Spring', 2007, 'A+'); + insert into takes values('58935', '949', '1', 'Fall', 2007, 'B '); + insert into takes values('8517', '559', '1', 'Fall', 2002, 'A+'); + insert into takes values('9953', '158', '1', 'Fall', 2008, 'C+'); + insert into takes values('45200', '445', '1', 'Spring', 2001, 'B '); + insert into takes values('46451', '239', '1', 'Fall', 2006, 'A '); + insert into takes values('58307', '415', '1', 'Fall', 2010, 'B-'); + insert into takes values('26080', '137', '1', 'Spring', 2002, 'A+'); + insert into takes values('1812', '962', '1', 'Spring', 2008, 'C-'); + insert into takes values('30017', '760', '1', 'Spring', 2004, 'C '); + insert into takes values('38336', '991', '1', 'Spring', 2008, 'B-'); + insert into takes values('18821', '338', '2', 'Spring', 2006, 'B-'); + insert into takes values('61127', '852', '1', 'Spring', 2008, 'C-'); + insert into takes values('68263', '545', '1', 'Fall', 2001, 'A+'); + insert into takes values('40738', '960', '1', 'Fall', 2009, 'A+'); + insert into takes values('13921', '927', '1', 'Fall', 2002, 'A-'); + insert into takes values('32245', '401', '1', 'Fall', 2003, 'B '); + insert into takes values('67514', '169', '1', 'Spring', 2007, 'B-'); + insert into takes values('46769', '694', '1', 'Fall', 2002, 'C+'); + insert into takes values('43854', '338', '2', 'Spring', 2006, 'B '); + insert into takes values('41091', '158', '1', 'Fall', 2008, 'B+'); + insert into takes values('10527', '864', '1', 'Spring', 2006, 'B+'); + insert into takes values('90448', '274', '1', 'Fall', 2002, 'A+'); + insert into takes values('5243', '663', '1', 'Spring', 2005, 'C-'); + insert into takes values('22467', '445', '1', 'Spring', 2001, 'B-'); + insert into takes values('41818', '468', '2', 'Fall', 2007, 'A '); + insert into takes values('49503', '702', '1', 'Spring', 2001, 'B '); + insert into takes values('63289', '631', '1', 'Spring', 2007, 'C-'); + insert into takes values('65205', '400', '1', 'Spring', 2007, 'C '); + insert into takes values('96052', '237', '1', 'Spring', 2008, 'A '); + insert into takes values('18709', '237', '1', 'Spring', 2008, 'A '); + insert into takes values('13757', '169', '1', 'Spring', 2007, 'A+'); + insert into takes values('74460', '545', '1', 'Fall', 2001, 'A-'); + insert into takes values('64724', '852', '1', 'Spring', 2008, 'B '); + insert into takes values('12711', '362', '3', 'Spring', 2008, 'A '); + insert into takes values('32954', '313', '1', 'Fall', 2010, 'C-'); + insert into takes values('77664', '421', '1', 'Fall', 2004, 'B-'); + insert into takes values('91992', '972', '1', 'Spring', 2009, 'C-'); + insert into takes values('1080', '867', '1', 'Fall', 2006, 'C-'); + insert into takes values('93039', '735', '1', 'Spring', 2003, 'B-'); + insert into takes values('46451', '258', '1', 'Fall', 2007, 'B '); + insert into takes values('45200', '489', '1', 'Fall', 2007, 'C '); + insert into takes values('52876', '443', '2', 'Spring', 2002, 'C '); + insert into takes values('95260', '200', '2', 'Fall', 2002, 'A '); + insert into takes values('12971', '192', '1', 'Fall', 2002, 'C+'); + insert into takes values('96052', '304', '1', 'Fall', 2009, 'B '); + insert into takes values('73492', '401', '1', 'Fall', 2003, 'B-'); + insert into takes values('30124', '158', '1', 'Fall', 2008, 'A-'); + insert into takes values('48009', '362', '3', 'Spring', 2008, 'A+'); + insert into takes values('63288', '304', '1', 'Fall', 2009, 'A '); + insert into takes values('52494', '545', '1', 'Fall', 2001, 'A '); + insert into takes values('18821', '604', '1', 'Spring', 2009, 'C+'); + insert into takes values('19862', '875', '1', 'Spring', 2005, 'B-'); + insert into takes values('26147', '421', '1', 'Fall', 2004, 'C+'); + insert into takes values('81884', '468', '1', 'Fall', 2005, 'B-'); + insert into takes values('75791', '949', '1', 'Fall', 2007, 'C+'); + insert into takes values('72741', '137', '1', 'Spring', 2002, 'C '); + insert into takes values('57107', '663', '1', 'Spring', 2005, 'A-'); + insert into takes values('74796', '338', '2', 'Spring', 2006, 'C-'); + insert into takes values('28133', '496', '1', 'Fall', 2001, 'A '); + insert into takes values('5703', '545', '1', 'Fall', 2001, 'A+'); + insert into takes values('8517', '875', '1', 'Spring', 2005, 'C '); + insert into takes values('67793', '843', '1', 'Fall', 2010, 'B '); + insert into takes values('29192', '158', '2', 'Spring', 2008, 'C '); + insert into takes values('50598', '258', '1', 'Fall', 2007, 'A '); + insert into takes values('24746', '237', '2', 'Fall', 2009, 'C '); + insert into takes values('70359', '237', '1', 'Spring', 2008, 'C '); + insert into takes values('89571', '795', '1', 'Spring', 2004, 'A-'); + insert into takes values('63502', '313', '1', 'Fall', 2010, 'B '); + insert into takes values('53799', '304', '1', 'Fall', 2009, 'C-'); + insert into takes values('64820', '105', '2', 'Fall', 2002, 'C-'); + insert into takes values('55698', '960', '2', 'Fall', 2006, 'C '); + insert into takes values('39204', '581', '1', 'Spring', 2005, 'A+'); + insert into takes values('38121', '362', '3', 'Spring', 2008, 'A+'); + insert into takes values('4860', '843', '1', 'Fall', 2010, 'A+'); + insert into takes values('12971', '137', '1', 'Spring', 2002, 'C+'); + insert into takes values('64192', '158', '1', 'Fall', 2008, 'A+'); + insert into takes values('50658', '352', '1', 'Spring', 2006, 'B+'); + insert into takes values('842', '696', '1', 'Spring', 2002, 'B+'); + insert into takes values('59538', '482', '1', 'Fall', 2005, 'A-'); + insert into takes values('71543', '604', '1', 'Spring', 2009, 'C-'); + insert into takes values('53699', '793', '1', 'Spring', 2002, 'B-'); + insert into takes values('87193', '239', '1', 'Fall', 2006, 'A+'); + insert into takes values('54296', '237', '2', 'Fall', 2009, 'C-'); + insert into takes values('58170', '867', '1', 'Fall', 2006, 'C+'); + insert into takes values('77148', '400', '1', 'Spring', 2007, 'C '); + insert into takes values('72006', '158', '2', 'Spring', 2008, 'C+'); + insert into takes values('68330', '927', '1', 'Fall', 2002, 'B '); + insert into takes values('47487', '559', '1', 'Fall', 2002, 'C-'); + insert into takes values('9605', '461', '1', 'Fall', 2002, 'B-'); + insert into takes values('42096', '629', '1', 'Spring', 2003, 'A-'); + insert into takes values('63489', '158', '1', 'Fall', 2008, 'C+'); + insert into takes values('89734', '991', '1', 'Spring', 2008, 'C '); + insert into takes values('80912', '426', '1', 'Spring', 2006, 'C+'); + insert into takes values('20489', '352', '1', 'Spring', 2006, 'B+'); + insert into takes values('79772', '415', '1', 'Fall', 2010, 'C-'); + insert into takes values('23992', '274', '1', 'Fall', 2002, 'B+'); + insert into takes values('94173', '349', '1', 'Spring', 2008, 'C+'); + insert into takes values('99289', '604', '1', 'Spring', 2009, 'B '); + insert into takes values('66969', '704', '1', 'Spring', 2008, 'B+'); + insert into takes values('74163', '304', '1', 'Fall', 2009, 'B '); + insert into takes values('1018', '401', '1', 'Fall', 2003, 'C '); + insert into takes values('60040', '105', '2', 'Fall', 2002, 'A '); + insert into takes values('73602', '426', '1', 'Spring', 2006, 'C-'); + insert into takes values('26102', '158', '1', 'Fall', 2008, 'C+'); + insert into takes values('86753', '679', '1', 'Spring', 2010, 'C '); + insert into takes values('25780', '158', '2', 'Spring', 2008, 'A+'); + insert into takes values('17207', '274', '1', 'Fall', 2002, 'A '); + insert into takes values('58889', '694', '1', 'Fall', 2002, 'A+'); + insert into takes values('88140', '791', '1', 'Spring', 2006, 'C '); + insert into takes values('11510', '192', '1', 'Fall', 2002, 'A '); + insert into takes values('52669', '612', '1', 'Fall', 2007, 'C-'); + insert into takes values('27662', '443', '1', 'Spring', 2010, 'B+'); + insert into takes values('30222', '867', '1', 'Fall', 2006, 'A+'); + insert into takes values('97400', '270', '1', 'Spring', 2010, 'C '); + insert into takes values('96772', '401', '1', 'Fall', 2003, 'A-'); + insert into takes values('53496', '760', '1', 'Spring', 2004, 'B '); + insert into takes values('87831', '486', '1', 'Fall', 2009, 'C-'); + insert into takes values('98726', '959', '1', 'Fall', 2006, 'C+'); + insert into takes values('52371', '200', '1', 'Spring', 2007, 'C+'); + insert into takes values('95320', '270', '1', 'Spring', 2010, 'B '); + insert into takes values('33460', '843', '1', 'Fall', 2010, 'B '); + insert into takes values('72741', '105', '2', 'Fall', 2002, 'B '); + insert into takes values('19824', '867', '2', 'Fall', 2010, 'A-'); + insert into takes values('40189', '991', '1', 'Spring', 2008, 'B '); + insert into takes values('29849', '704', '1', 'Spring', 2008, 'B '); + insert into takes values('41894', '468', '2', 'Fall', 2007, 'A-'); + insert into takes values('41938', '362', '2', 'Fall', 2006, 'C-'); + insert into takes values('15086', '443', '2', 'Spring', 2002, 'C-'); + insert into takes values('17600', '735', '2', 'Spring', 2010, 'A '); + insert into takes values('390', '349', '1', 'Spring', 2008, 'A+'); + insert into takes values('76270', '808', '1', 'Fall', 2003, 'C+'); + insert into takes values('43130', '561', '1', 'Fall', 2006, 'C+'); + insert into takes values('4355', '237', '1', 'Spring', 2008, 'A+'); + insert into takes values('83728', '843', '1', 'Fall', 2010, 'C-'); + insert into takes values('21100', '345', '1', 'Spring', 2008, 'C+'); + insert into takes values('52371', '486', '1', 'Fall', 2009, 'B '); + insert into takes values('83204', '599', '1', 'Spring', 2003, 'C '); + insert into takes values('50013', '599', '1', 'Spring', 2003, 'B-'); + insert into takes values('5381', '808', '1', 'Fall', 2003, 'C+'); + insert into takes values('8860', '239', '1', 'Fall', 2006, 'A '); + insert into takes values('42019', '401', '1', 'Fall', 2003, 'B+'); + insert into takes values('77130', '603', '1', 'Fall', 2003, 'A-'); + insert into takes values('37430', '408', '2', 'Spring', 2003, 'B+'); + insert into takes values('72501', '960', '1', 'Fall', 2009, 'A '); + insert into takes values('11202', '457', '1', 'Spring', 2001, 'A+'); + insert into takes values('44998', '338', '1', 'Spring', 2007, 'B+'); + insert into takes values('64222', '692', '1', 'Spring', 2010, 'B-'); + insert into takes values('63502', '400', '2', 'Fall', 2003, 'A '); + insert into takes values('11510', '974', '1', 'Fall', 2003, 'C+'); + insert into takes values('5824', '461', '1', 'Fall', 2002, 'B '); + insert into takes values('31364', '443', '1', 'Spring', 2010, 'B-'); + insert into takes values('88553', '692', '1', 'Spring', 2010, 'C '); + insert into takes values('52669', '366', '1', 'Fall', 2005, 'C+'); + insert into takes values('46655', '461', '1', 'Fall', 2002, 'B-'); + insert into takes values('25068', '105', '2', 'Fall', 2002, 'C '); + insert into takes values('15030', '489', '1', 'Fall', 2007, 'B '); + insert into takes values('75878', '972', '1', 'Spring', 2009, 'C '); + insert into takes values('1826', '362', '2', 'Fall', 2006, 'A+'); + insert into takes values('5703', '158', '1', 'Fall', 2008, 'B+'); + insert into takes values('53588', '960', '2', 'Fall', 2006, 'B '); + insert into takes values('993', '927', '1', 'Fall', 2002, 'B-'); + insert into takes values('80113', '867', '1', 'Fall', 2006, 'B+'); + insert into takes values('29462', '571', '1', 'Spring', 2004, 'B '); + insert into takes values('11057', '158', '1', 'Fall', 2008, 'B '); + insert into takes values('92417', '408', '1', 'Spring', 2007, 'A '); + insert into takes values('888', '421', '1', 'Fall', 2004, 'A+'); + insert into takes values('11057', '362', '3', 'Spring', 2008, 'B-'); + insert into takes values('37759', '603', '1', 'Fall', 2003, 'B-'); + insert into takes values('35138', '496', '1', 'Fall', 2001, 'B-'); + insert into takes values('49339', '867', '2', 'Fall', 2010, 'C-'); + insert into takes values('26802', '158', '2', 'Spring', 2008, 'C-'); + insert into takes values('11510', '274', '1', 'Fall', 2002, 'B+'); + insert into takes values('70021', '349', '1', 'Spring', 2008, 'A '); + insert into takes values('38712', '169', '2', 'Fall', 2002, 'A '); + insert into takes values('56882', '867', '2', 'Fall', 2010, 'A-'); + insert into takes values('10693', '545', '1', 'Fall', 2001, 'C+'); + insert into takes values('73165', '545', '1', 'Fall', 2001, 'B '); + insert into takes values('8426', '443', '2', 'Spring', 2002, 'B '); + insert into takes values('92274', '960', '1', 'Fall', 2009, 'B-'); + insert into takes values('56058', '105', '2', 'Fall', 2002, 'B '); + insert into takes values('87439', '457', '1', 'Spring', 2001, 'B+'); + insert into takes values('1727', '158', '1', 'Fall', 2008, 'B+'); + insert into takes values('21225', '158', '2', 'Spring', 2008, 'B-'); + insert into takes values('1232', '400', '2', 'Fall', 2003, 'C '); + insert into takes values('59538', '258', '1', 'Fall', 2007, 'B '); + insert into takes values('42565', '527', '1', 'Fall', 2004, 'B-'); + insert into takes values('76895', '696', '1', 'Spring', 2002, 'C '); + insert into takes values('1827', '626', '1', 'Fall', 2006, 'B-'); + insert into takes values('53469', '571', '1', 'Spring', 2004, 'B+'); + insert into takes values('65241', '105', '2', 'Fall', 2002, 'C '); + insert into takes values('99226', '400', '1', 'Spring', 2007, 'A-'); + insert into takes values('65205', '959', '1', 'Fall', 2006, 'B-'); + insert into takes values('50467', '692', '1', 'Spring', 2010, 'C '); + insert into takes values('25552', '338', '2', 'Spring', 2006, 'C-'); + insert into takes values('90082', '545', '1', 'Fall', 2001, 'C '); + insert into takes values('76224', '496', '1', 'Fall', 2001, 'C '); + insert into takes values('67021', '192', '1', 'Fall', 2002, 'B-'); + insert into takes values('80990', '561', '1', 'Fall', 2006, 'B+'); + insert into takes values('16057', '793', '1', 'Spring', 2002, 'C '); + insert into takes values('49280', '603', '1', 'Fall', 2003, 'A-'); + insert into takes values('76953', '401', '1', 'Fall', 2003, 'C+'); + insert into takes values('68999', '362', '2', 'Fall', 2006, 'C+'); + insert into takes values('51868', '426', '1', 'Spring', 2006, 'B-'); + insert into takes values('60040', '401', '1', 'Fall', 2003, 'B-'); + insert into takes values('72177', '793', '1', 'Spring', 2002, 'A+'); + insert into takes values('31476', '408', '1', 'Spring', 2007, 'C '); + insert into takes values('31080', '696', '1', 'Spring', 2002, 'A '); + insert into takes values('48850', '362', '1', 'Fall', 2005, 'A '); + insert into takes values('64934', '591', '1', 'Spring', 2005, 'C+'); + insert into takes values('63289', '808', '1', 'Fall', 2003, 'B+'); + insert into takes values('76743', '603', '1', 'Fall', 2003, 'A '); + insert into takes values('31761', '795', '1', 'Spring', 2004, 'A '); + insert into takes values('42096', '735', '1', 'Spring', 2003, 'C-'); + insert into takes values('95260', '959', '1', 'Fall', 2006, 'C+'); + insert into takes values('44816', '200', '1', 'Spring', 2007, 'A-'); + insert into takes values('43658', '362', '2', 'Fall', 2006, 'A '); + insert into takes values('55000', '366', '1', 'Fall', 2005, 'A+'); + insert into takes values('56143', '603', '1', 'Fall', 2003, 'C '); + insert into takes values('67793', '349', '1', 'Spring', 2008, 'C-'); + insert into takes values('74530', '239', '1', 'Fall', 2006, 'B '); + insert into takes values('7149', '192', '1', 'Fall', 2002, 'B-'); + insert into takes values('61364', '893', '1', 'Fall', 2007, 'C '); + insert into takes values('61444', '626', '1', 'Fall', 2006, 'C '); + insert into takes values('40059', '242', '1', 'Fall', 2009, 'B+'); + insert into takes values('14432', '426', '1', 'Spring', 2006, 'B '); + insert into takes values('3576', '349', '1', 'Spring', 2008, 'C+'); + insert into takes values('6287', '362', '2', 'Fall', 2006, 'A-'); + insert into takes values('98140', '960', '1', 'Fall', 2009, 'C-'); + insert into takes values('9993', '362', '3', 'Spring', 2008, 'B-'); + insert into takes values('62636', '679', '1', 'Spring', 2010, 'B-'); + insert into takes values('99764', '158', '2', 'Spring', 2008, 'A+'); + insert into takes values('41299', '493', '1', 'Spring', 2010, 'A '); + insert into takes values('48640', '445', '1', 'Spring', 2001, 'C+'); + insert into takes values('81028', '493', '1', 'Spring', 2010, 'C '); + insert into takes values('645', '400', '2', 'Fall', 2003, 'B '); + insert into takes values('25528', '527', '1', 'Fall', 2004, 'C '); + insert into takes values('99399', '169', '2', 'Fall', 2002, 'C-'); + insert into takes values('54605', '169', '2', 'Fall', 2002, 'C-'); + insert into takes values('3143', '258', '1', 'Fall', 2007, 'B '); + insert into takes values('70235', '445', '1', 'Spring', 2001, 'C '); + insert into takes values('22268', '793', '1', 'Spring', 2002, 'B+'); + insert into takes values('69285', '960', '1', 'Fall', 2009, 'A+'); + insert into takes values('81245', '313', '1', 'Fall', 2010, 'B-'); + insert into takes values('36102', '443', '1', 'Spring', 2010, 'A+'); + insert into takes values('69747', '486', '1', 'Fall', 2009, 'B '); + insert into takes values('51955', '239', '1', 'Fall', 2006, 'B '); + insert into takes values('16907', '972', '1', 'Spring', 2009, 'B+'); + insert into takes values('79763', '400', '1', 'Spring', 2007, 'C '); + insert into takes values('80698', '169', '1', 'Spring', 2007, 'B-'); + insert into takes values('50873', '760', '1', 'Spring', 2004, 'B-'); + insert into takes values('4173', '239', '1', 'Fall', 2006, 'C-'); + insert into takes values('44836', '400', '1', 'Spring', 2007, 'B+'); + insert into takes values('28252', '927', '1', 'Fall', 2002, 'B+'); + insert into takes values('71085', '679', '1', 'Spring', 2010, 'B '); + insert into takes values('15086', '239', '1', 'Fall', 2006, 'B '); + insert into takes values('42960', '561', '1', 'Fall', 2006, 'B-'); + insert into takes values('34788', '237', '1', 'Spring', 2008, 'C-'); + insert into takes values('61332', '893', '1', 'Fall', 2007, 'C '); + insert into takes values('96324', '137', '1', 'Spring', 2002, 'B+'); + insert into takes values('45720', '927', '1', 'Fall', 2002, 'B '); + insert into takes values('27662', '735', '1', 'Spring', 2003, 'A '); + insert into takes values('50365', '362', '2', 'Fall', 2006, 'C '); + insert into takes values('97355', '599', '1', 'Spring', 2003, 'B '); + insert into takes values('29920', '443', '1', 'Spring', 2010, 'B '); + insert into takes values('66813', '349', '1', 'Spring', 2008, 'B '); + insert into takes values('72528', '631', '1', 'Spring', 2007, 'A+'); + insert into takes values('90181', '679', '1', 'Spring', 2010, 'B-'); + insert into takes values('66054', '169', '2', 'Fall', 2002, 'B+'); + insert into takes values('29920', '270', '1', 'Spring', 2010, 'A '); + insert into takes values('75252', '927', '1', 'Fall', 2002, 'C '); + insert into takes values('86641', '663', '1', 'Spring', 2005, 'C '); + insert into takes values('30188', '702', '1', 'Spring', 2001, 'A '); + insert into takes values('99647', '400', '2', 'Fall', 2003, 'A '); + insert into takes values('54605', '599', '1', 'Spring', 2003, 'C '); + insert into takes values('34055', '974', '1', 'Fall', 2003, 'A '); + insert into takes values('29140', '748', '1', 'Fall', 2003, 'A '); + insert into takes values('2423', '991', '1', 'Spring', 2008, 'B-'); + insert into takes values('26802', '362', '3', 'Spring', 2008, 'B '); + insert into takes values('65443', '561', '1', 'Fall', 2006, 'A-'); + insert into takes values('60267', '603', '1', 'Fall', 2003, 'A+'); + insert into takes values('86327', '443', '1', 'Spring', 2010, 'C+'); + insert into takes values('91978', '808', '1', 'Fall', 2003, 'B+'); + insert into takes values('82687', '158', '1', 'Fall', 2008, 'B-'); + insert into takes values('73807', '258', '1', 'Fall', 2007, 'A+'); + insert into takes values('56003', '591', '1', 'Spring', 2005, 'A+'); + insert into takes values('79697', '304', '1', 'Fall', 2009, 'B '); + insert into takes values('32886', '362', '3', 'Spring', 2008, 'A '); + insert into takes values('47670', '192', '1', 'Fall', 2002, 'A-'); + insert into takes values('52523', '334', '1', 'Fall', 2009, 'A+'); + insert into takes values('62549', '408', '2', 'Spring', 2003, 'A+'); + insert into takes values('65190', '304', '1', 'Fall', 2009, 'B '); + insert into takes values('56078', '338', '2', 'Spring', 2006, 'C-'); + insert into takes values('54153', '791', '1', 'Spring', 2006, 'A-'); + insert into takes values('14563', '581', '1', 'Spring', 2005, 'C+'); + insert into takes values('94257', '679', '1', 'Spring', 2010, 'C+'); + insert into takes values('42560', '748', '1', 'Fall', 2003, 'C-'); + insert into takes values('76953', '631', '1', 'Spring', 2007, 'C-'); + insert into takes values('70362', '496', '1', 'Fall', 2001, 'C+'); + insert into takes values('86001', '875', '1', 'Spring', 2005, 'C '); + insert into takes values('36052', '457', '1', 'Spring', 2001, 'C-'); + insert into takes values('85849', '974', '1', 'Fall', 2003, 'B '); + insert into takes values('53803', '158', '1', 'Fall', 2008, 'B '); + insert into takes values('71287', '972', '1', 'Spring', 2009, 'A+'); + insert into takes values('69225', '493', '1', 'Spring', 2010, 'B-'); + insert into takes values('85746', '445', '1', 'Spring', 2001, 'C+'); + insert into takes values('67310', '960', '1', 'Fall', 2009, 'A '); + insert into takes values('72177', '864', '1', 'Spring', 2006, 'B-'); + insert into takes values('2419', '362', '2', 'Fall', 2006, 'B+'); + insert into takes values('48589', '679', '1', 'Spring', 2010, 'C '); + insert into takes values('24784', '304', '1', 'Fall', 2009, 'A+'); + insert into takes values('14554', '237', '2', 'Fall', 2009, 'B+'); + insert into takes values('96117', '192', '1', 'Fall', 2002, 'A '); + insert into takes values('31080', '482', '1', 'Fall', 2005, 'A '); + insert into takes values('73394', '612', '1', 'Fall', 2007, 'C-'); + insert into takes values('95260', '802', '1', 'Spring', 2003, 'C '); + insert into takes values('40682', '591', '1', 'Spring', 2005, 'B '); + insert into takes values('14639', '735', '2', 'Spring', 2010, 'C+'); + insert into takes values('32385', '376', '1', 'Fall', 2006, 'C+'); + insert into takes values('6304', '867', '1', 'Fall', 2006, 'A '); + insert into takes values('43032', '169', '2', 'Fall', 2002, 'C+'); + insert into takes values('85910', '692', '1', 'Spring', 2010, 'A-'); + insert into takes values('336', '629', '1', 'Spring', 2003, 'C '); + insert into takes values('73411', '408', '1', 'Spring', 2007, 'C+'); + insert into takes values('35293', '748', '1', 'Fall', 2003, 'A+'); + insert into takes values('93986', '748', '1', 'Fall', 2003, 'B-'); + insert into takes values('15883', '864', '1', 'Spring', 2006, 'A+'); + insert into takes values('58889', '400', '2', 'Fall', 2003, 'C '); + insert into takes values('88302', '400', '1', 'Spring', 2007, 'A '); + insert into takes values('47630', '692', '1', 'Spring', 2010, 'C-'); + insert into takes values('46451', '489', '1', 'Fall', 2007, 'C-'); + insert into takes values('67024', '591', '1', 'Spring', 2005, 'C '); + insert into takes values('41406', '237', '1', 'Spring', 2008, 'A+'); + insert into takes values('67024', '274', '1', 'Fall', 2002, 'B-'); + insert into takes values('59908', '735', '2', 'Spring', 2010, 'C+'); + insert into takes values('17996', '802', '1', 'Spring', 2003, 'A-'); + insert into takes values('24002', '200', '1', 'Spring', 2007, 'A-'); + insert into takes values('64067', '482', '1', 'Fall', 2005, 'C '); + insert into takes values('70021', '702', '1', 'Spring', 2001, 'C '); + insert into takes values('17676', '468', '2', 'Fall', 2007, 'B-'); + insert into takes values('8347', '696', '1', 'Spring', 2002, 'A '); + insert into takes values('65753', '760', '1', 'Spring', 2004, 'A+'); + insert into takes values('18941', '642', '1', 'Fall', 2004, 'B-'); + insert into takes values('48469', '376', '1', 'Fall', 2006, 'A-'); + insert into takes values('56849', '960', '1', 'Fall', 2009, 'B-'); + insert into takes values('5925', '362', '2', 'Fall', 2006, 'B '); + insert into takes values('63039', '489', '1', 'Fall', 2007, 'C-'); + insert into takes values('70099', '808', '1', 'Fall', 2003, 'A+'); + insert into takes values('78911', '875', '1', 'Spring', 2005, 'C+'); + insert into takes values('3739', '304', '1', 'Fall', 2009, 'B-'); + insert into takes values('99611', '270', '1', 'Spring', 2010, 'C-'); + insert into takes values('83511', '692', '1', 'Spring', 2010, 'B '); + insert into takes values('51723', '663', '1', 'Spring', 2005, 'B+'); + insert into takes values('81207', '482', '1', 'Fall', 2005, 'A '); + insert into takes values('10917', '237', '1', 'Spring', 2008, 'B '); + insert into takes values('46066', '612', '1', 'Fall', 2007, 'C+'); + insert into takes values('11152', '893', '1', 'Fall', 2007, 'B-'); + insert into takes values('76224', '319', '1', 'Spring', 2003, 'B '); + insert into takes values('39046', '959', '1', 'Fall', 2006, 'C '); + insert into takes values('64140', '867', '1', 'Fall', 2006, 'C-'); + insert into takes values('36494', '486', '1', 'Fall', 2009, 'A+'); + insert into takes values('16347', '200', '1', 'Spring', 2007, 'A '); + insert into takes values('95099', '694', '1', 'Fall', 2002, 'B+'); + insert into takes values('8517', '735', '2', 'Spring', 2010, 'C-'); + insert into takes values('1884', '735', '1', 'Spring', 2003, 'B+'); + insert into takes values('92703', '581', '1', 'Spring', 2005, 'B '); + insert into takes values('35', '760', '1', 'Spring', 2004, 'A '); + insert into takes values('95201', '959', '1', 'Fall', 2006, 'A-'); + insert into takes values('56089', '105', '1', 'Fall', 2009, 'B+'); + insert into takes values('61081', '581', '1', 'Spring', 2005, 'A-'); + insert into takes values('71387', '679', '1', 'Spring', 2010, 'C-'); + insert into takes values('3335', '169', '1', 'Spring', 2007, 'B-'); + insert into takes values('14563', '408', '2', 'Spring', 2003, 'B '); + insert into takes values('16631', '105', '2', 'Fall', 2002, 'B-'); + insert into takes values('78756', '692', '1', 'Spring', 2010, 'B-'); + insert into takes values('37809', '631', '1', 'Spring', 2007, 'B-'); + insert into takes values('92849', '692', '1', 'Spring', 2010, 'B+'); + insert into takes values('65987', '270', '1', 'Spring', 2010, 'A+'); + insert into takes values('35905', '482', '1', 'Fall', 2005, 'A '); + insert into takes values('66356', '679', '1', 'Spring', 2010, 'A+'); + insert into takes values('97065', '949', '1', 'Fall', 2007, 'A+'); + insert into takes values('95260', '457', '1', 'Spring', 2001, 'C+'); + insert into takes values('14639', '415', '1', 'Fall', 2010, 'B-'); + insert into takes values('88793', '972', '1', 'Spring', 2009, 'C+'); + insert into takes values('21008', '960', '2', 'Fall', 2006, 'B+'); + insert into takes values('85211', '426', '1', 'Spring', 2006, 'B '); + insert into takes values('46260', '352', '1', 'Spring', 2006, 'C '); + insert into takes values('36019', '200', '1', 'Spring', 2007, 'C+'); + insert into takes values('5144', '559', '1', 'Fall', 2002, 'C-'); + insert into takes values('75772', '702', '1', 'Spring', 2001, 'A-'); + insert into takes values('55170', '489', '1', 'Fall', 2007, 'A+'); + insert into takes values('88045', '169', '2', 'Fall', 2002, 'B '); + insert into takes values('22467', '696', '1', 'Spring', 2002, 'A-'); + insert into takes values('13511', '200', '2', 'Fall', 2002, 'B '); + insert into takes values('888', '461', '1', 'Fall', 2002, 'C '); + insert into takes values('36657', '704', '1', 'Spring', 2008, 'B '); + insert into takes values('88577', '362', '2', 'Fall', 2006, 'A-'); + insert into takes values('4645', '893', '1', 'Fall', 2007, 'B+'); + insert into takes values('19861', '559', '1', 'Fall', 2002, 'C-'); + insert into takes values('53490', '200', '2', 'Fall', 2002, 'B+'); + insert into takes values('52656', '408', '2', 'Spring', 2003, 'B-'); + insert into takes values('65753', '694', '1', 'Fall', 2002, 'A+'); + insert into takes values('88417', '338', '1', 'Spring', 2007, 'B-'); + insert into takes values('24932', '476', '1', 'Fall', 2010, 'C '); + insert into takes values('15249', '304', '1', 'Fall', 2009, 'C '); + insert into takes values('34331', '105', '2', 'Fall', 2002, 'B-'); + insert into takes values('23392', '366', '1', 'Fall', 2005, 'A '); + insert into takes values('78922', '696', '1', 'Spring', 2002, 'A+'); + insert into takes values('20099', '747', '1', 'Spring', 2004, 'B-'); + insert into takes values('37350', '704', '1', 'Spring', 2008, 'C '); + insert into takes values('51538', '200', '2', 'Fall', 2002, 'A+'); + insert into takes values('30124', '105', '2', 'Fall', 2002, 'B-'); + insert into takes values('75878', '443', '1', 'Spring', 2010, 'C '); + insert into takes values('27919', '319', '1', 'Spring', 2003, 'C-'); + insert into takes values('36926', '400', '2', 'Fall', 2003, 'C-'); + insert into takes values('35357', '527', '1', 'Fall', 2004, 'A+'); + insert into takes values('23934', '400', '1', 'Spring', 2007, 'C+'); + insert into takes values('85234', '445', '1', 'Spring', 2001, 'A+'); + insert into takes values('28361', '270', '1', 'Spring', 2010, 'B '); + insert into takes values('75241', '461', '1', 'Fall', 2002, 'A-'); + insert into takes values('13290', '802', '1', 'Spring', 2003, 'C-'); + insert into takes values('43211', '443', '1', 'Spring', 2010, 'C+'); + insert into takes values('31101', '663', '1', 'Spring', 2005, 'C+'); + insert into takes values('43348', '496', '1', 'Fall', 2001, 'C+'); + insert into takes values('13408', '735', '1', 'Spring', 2003, 'B-'); + insert into takes values('74796', '629', '1', 'Spring', 2003, 'A '); + insert into takes values('96203', '105', '1', 'Fall', 2009, 'C-'); + insert into takes values('2139', '735', '2', 'Spring', 2010, 'C-'); + insert into takes values('68453', '974', '1', 'Fall', 2003, 'C '); + insert into takes values('9514', '401', '1', 'Fall', 2003, 'B '); + insert into takes values('56276', '169', '1', 'Spring', 2007, 'B '); + insert into takes values('14094', '200', '1', 'Spring', 2007, 'A+'); + insert into takes values('48247', '105', '2', 'Fall', 2002, 'B '); + insert into takes values('56143', '408', '2', 'Spring', 2003, 'B-'); + insert into takes values('10838', '408', '2', 'Spring', 2003, 'C+'); + insert into takes values('75938', '642', '1', 'Fall', 2004, 'A+'); + insert into takes values('75510', '972', '1', 'Spring', 2009, 'B-'); + insert into takes values('33338', '334', '1', 'Fall', 2009, 'C-'); + insert into takes values('15883', '270', '1', 'Spring', 2010, 'B-'); + insert into takes values('73186', '852', '1', 'Spring', 2008, 'A '); + insert into takes values('73213', '735', '1', 'Spring', 2003, 'A+'); + insert into takes values('33401', '493', '1', 'Spring', 2010, 'C-'); + insert into takes values('10527', '972', '1', 'Spring', 2009, 'B+'); + insert into takes values('22620', '991', '1', 'Spring', 2008, 'C-'); + insert into takes values('15083', '304', '1', 'Fall', 2009, 'A+'); + insert into takes values('44206', '200', '1', 'Spring', 2007, 'A+'); + insert into takes values('78911', '239', '1', 'Fall', 2006, 'B '); + insert into takes values('57985', '949', '1', 'Fall', 2007, 'B-'); + insert into takes values('70099', '362', '1', 'Fall', 2005, 'A+'); + insert into takes values('18583', '949', '1', 'Fall', 2007, 'C '); + insert into takes values('95046', '415', '1', 'Fall', 2010, 'A-'); + insert into takes values('60224', '400', '1', 'Spring', 2007, 'B-'); + insert into takes values('29435', '791', '1', 'Spring', 2006, 'B+'); + insert into takes values('69285', '366', '1', 'Fall', 2005, 'A-'); + insert into takes values('36513', '158', '2', 'Spring', 2008, 'A+'); + insert into takes values('82974', '735', '2', 'Spring', 2010, 'A-'); + insert into takes values('16543', '334', '1', 'Fall', 2009, 'B-'); + insert into takes values('37101', '852', '1', 'Spring', 2008, 'B-'); + insert into takes values('14874', '694', '1', 'Fall', 2002, 'C '); + insert into takes values('94815', '591', '1', 'Spring', 2005, 'A '); + insert into takes values('67793', '735', '1', 'Spring', 2003, 'C+'); + insert into takes values('33546', '105', '1', 'Fall', 2009, 'A '); + insert into takes values('42019', '200', '2', 'Fall', 2002, 'A+'); + insert into takes values('90181', '345', '1', 'Spring', 2008, 'A-'); + insert into takes values('50331', '408', '1', 'Spring', 2007, 'B-'); + insert into takes values('91091', '352', '1', 'Spring', 2006, 'A '); + insert into takes values('63289', '376', '1', 'Fall', 2006, 'C '); + insert into takes values('62520', '105', '1', 'Fall', 2009, 'A+'); + insert into takes values('85754', '642', '1', 'Fall', 2004, 'C-'); + insert into takes values('12563', '545', '1', 'Fall', 2001, 'A-'); + insert into takes values('61354', '960', '1', 'Fall', 2009, 'B-'); + insert into takes values('86404', '376', '1', 'Fall', 2006, 'C '); + insert into takes values('14182', '694', '1', 'Fall', 2002, 'A+'); + insert into takes values('81789', '599', '1', 'Spring', 2003, 'B-'); + insert into takes values('35357', '959', '1', 'Fall', 2006, 'C-'); + insert into takes values('40457', '237', '2', 'Fall', 2009, 'C '); + insert into takes values('37818', '852', '1', 'Spring', 2008, 'B '); + insert into takes values('72622', '974', '1', 'Fall', 2003, 'B-'); + insert into takes values('38696', '105', '2', 'Fall', 2002, 'B '); + insert into takes values('10917', '486', '1', 'Fall', 2009, 'C-'); + insert into takes values('22258', '401', '1', 'Fall', 2003, 'A+'); + insert into takes values('36657', '376', '1', 'Fall', 2006, 'A '); + insert into takes values('72177', '486', '1', 'Fall', 2009, 'B+'); + insert into takes values('11194', '345', '1', 'Spring', 2008, 'A-'); + insert into takes values('95850', '237', '1', 'Spring', 2008, 'B+'); + insert into takes values('39978', '702', '1', 'Spring', 2001, 'C-'); + insert into takes values('792', '457', '1', 'Spring', 2001, 'B-'); + insert into takes values('75040', '362', '2', 'Fall', 2006, 'B+'); + insert into takes values('31035', '270', '1', 'Spring', 2010, 'A-'); + insert into takes values('62636', '137', '1', 'Spring', 2002, 'A-'); + insert into takes values('15070', '867', '2', 'Fall', 2010, 'A '); + insert into takes values('40558', '747', '1', 'Spring', 2004, 'B '); + insert into takes values('65676', '603', '1', 'Fall', 2003, 'A '); + insert into takes values('85308', '808', '1', 'Fall', 2003, 'A+'); + insert into takes values('95175', '400', '1', 'Spring', 2007, 'C+'); + insert into takes values('6287', '192', '1', 'Fall', 2002, 'C-'); + insert into takes values('63243', '408', '2', 'Spring', 2003, 'C+'); + insert into takes values('91091', '362', '1', 'Fall', 2005, 'B+'); + insert into takes values('39927', '493', '1', 'Spring', 2010, 'C+'); + insert into takes values('77003', '843', '1', 'Fall', 2010, 'C '); + insert into takes values('62754', '345', '1', 'Spring', 2008, 'A '); + insert into takes values('66356', '791', '1', 'Spring', 2006, 'A+'); + insert into takes values('557', '237', '2', 'Fall', 2009, 'B-'); + insert into takes values('38271', '604', '1', 'Spring', 2009, 'B+'); + insert into takes values('87268', '875', '1', 'Spring', 2005, 'C-'); + insert into takes values('19848', '400', '1', 'Spring', 2007, 'C+'); + insert into takes values('94990', '338', '2', 'Spring', 2006, 'C+'); + insert into takes values('64401', '468', '1', 'Fall', 2005, 'A '); + insert into takes values('26494', '237', '1', 'Spring', 2008, 'C+'); + insert into takes values('34404', '864', '1', 'Spring', 2006, 'C-'); + insert into takes values('14829', '486', '1', 'Fall', 2009, 'A+'); + insert into takes values('32245', '349', '1', 'Spring', 2008, 'C '); + insert into takes values('97435', '274', '1', 'Fall', 2002, 'B '); + insert into takes values('99730', '496', '1', 'Fall', 2001, 'B '); + insert into takes values('11095', '158', '2', 'Spring', 2008, 'B '); + insert into takes values('62749', '843', '1', 'Fall', 2010, 'C+'); + insert into takes values('90089', '631', '1', 'Spring', 2007, 'A-'); + insert into takes values('54460', '875', '1', 'Spring', 2005, 'B-'); + insert into takes values('40932', '735', '2', 'Spring', 2010, 'B-'); + insert into takes values('57925', '200', '2', 'Fall', 2002, 'C+'); + insert into takes values('99760', '545', '1', 'Fall', 2001, 'C-'); + insert into takes values('83398', '559', '1', 'Fall', 2002, 'C-'); + insert into takes values('80420', '313', '1', 'Fall', 2010, 'A '); + insert into takes values('11237', '702', '1', 'Spring', 2001, 'B-'); + insert into takes values('61081', '400', '2', 'Fall', 2003, 'B+'); + insert into takes values('5336', '694', '1', 'Fall', 2002, 'B+'); + insert into takes values('18821', '795', '1', 'Spring', 2004, 'A+'); + insert into takes values('76049', '604', '1', 'Spring', 2009, 'A '); + insert into takes values('92442', '274', '1', 'Fall', 2002, 'A-'); + insert into takes values('55915', '274', '1', 'Fall', 2002, 'A-'); + insert into takes values('58595', '735', '1', 'Spring', 2003, 'B '); + insert into takes values('94620', '401', '1', 'Fall', 2003, 'A '); + insert into takes values('41890', '482', '1', 'Fall', 2005, 'B '); + insert into takes values('76759', '200', '2', 'Fall', 2002, 'C+'); + insert into takes values('58935', '468', '2', 'Fall', 2007, 'A-'); + insert into takes values('79534', '482', '1', 'Fall', 2005, 'B+'); + insert into takes values('61232', '974', '1', 'Fall', 2003, 'A '); + insert into takes values('92965', '468', '2', 'Fall', 2007, 'C+'); + insert into takes values('48861', '571', '1', 'Spring', 2004, 'B '); + insert into takes values('88884', '468', '2', 'Fall', 2007, 'A '); + insert into takes values('14032', '169', '2', 'Fall', 2002, 'C+'); + insert into takes values('65714', '808', '1', 'Fall', 2003, 'C+'); + insert into takes values('46762', '591', '1', 'Spring', 2005, 'C-'); + insert into takes values('71878', '468', '2', 'Fall', 2007, 'B '); + insert into takes values('57160', '334', '1', 'Fall', 2009, 'C-'); + insert into takes values('34170', '629', '1', 'Spring', 2003, 'B+'); + insert into takes values('36657', '852', '1', 'Spring', 2008, 'A-'); + insert into takes values('18941', '991', '1', 'Spring', 2008, 'B+'); + insert into takes values('2795', '408', '2', 'Spring', 2003, 'C+'); + insert into takes values('88801', '426', '1', 'Spring', 2006, 'A+'); + insert into takes values('56080', '461', '1', 'Fall', 2002, 'B '); + insert into takes values('90082', '591', '1', 'Spring', 2005, 'A+'); + insert into takes values('86327', '349', '1', 'Spring', 2008, 'A '); + insert into takes values('18709', '960', '1', 'Fall', 2009, 'A-'); + insert into takes values('81031', '702', '1', 'Spring', 2001, 'A+'); + insert into takes values('18740', '496', '1', 'Fall', 2001, 'C '); + insert into takes values('41491', '482', '1', 'Fall', 2005, 'C '); + insert into takes values('30222', '239', '1', 'Fall', 2006, 'A-'); + insert into takes values('3493', '376', '1', 'Fall', 2006, 'C-'); + insert into takes values('50969', '962', '1', 'Spring', 2008, 'C '); + insert into takes values('39520', '192', '1', 'Fall', 2002, 'C-'); + insert into takes values('55857', '200', '2', 'Fall', 2002, 'B '); + insert into takes values('35905', '852', '1', 'Spring', 2008, 'C+'); + insert into takes values('9183', '802', '1', 'Spring', 2003, 'A '); + insert into takes values('16515', '270', '1', 'Spring', 2010, 'A+'); + insert into takes values('61232', '200', '2', 'Fall', 2002, 'B-'); + insert into takes values('65901', '274', '1', 'Fall', 2002, 'C '); + insert into takes values('61737', '808', '1', 'Fall', 2003, 'B+'); + insert into takes values('96988', '237', '1', 'Spring', 2008, 'A+'); + insert into takes values('29645', '274', '1', 'Fall', 2002, 'A-'); + insert into takes values('56299', '974', '1', 'Fall', 2003, 'B+'); + insert into takes values('75040', '864', '1', 'Spring', 2006, 'C '); + insert into takes values('92949', '105', '2', 'Fall', 2002, 'B-'); + insert into takes values('22396', '991', '1', 'Spring', 2008, 'C-'); + insert into takes values('81396', '927', '1', 'Fall', 2002, 'A '); + insert into takes values('90372', '581', '1', 'Spring', 2005, 'B '); + insert into takes values('1087', '486', '1', 'Fall', 2009, 'B '); + insert into takes values('30474', '319', '1', 'Spring', 2003, 'A+'); + insert into takes values('78758', '949', '1', 'Fall', 2007, 'B '); + insert into takes values('12979', '158', '1', 'Fall', 2008, 'B+'); + insert into takes values('70688', '169', '2', 'Fall', 2002, 'C-'); + insert into takes values('73394', '362', '3', 'Spring', 2008, 'B+'); + insert into takes values('19536', '421', '1', 'Fall', 2004, 'A+'); + insert into takes values('85451', '748', '1', 'Fall', 2003, 'A-'); + insert into takes values('74911', '445', '1', 'Spring', 2001, 'C-'); + insert into takes values('56499', '493', '1', 'Spring', 2010, 'B '); + insert into takes values('24201', '468', '1', 'Fall', 2005, 'B-'); + insert into takes values('9993', '599', '1', 'Spring', 2003, 'A-'); + insert into takes values('85887', '366', '1', 'Fall', 2005, 'C-'); + insert into takes values('37581', '760', '1', 'Spring', 2004, 'A+'); + insert into takes values('29665', '401', '1', 'Fall', 2003, 'C+'); + insert into takes values('57377', '960', '2', 'Fall', 2006, 'C '); + insert into takes values('29031', '735', '2', 'Spring', 2010, 'A-'); + insert into takes values('67018', '362', '3', 'Spring', 2008, 'B-'); + insert into takes values('60366', '991', '1', 'Spring', 2008, 'B '); + insert into takes values('38696', '631', '1', 'Spring', 2007, 'B '); + insert into takes values('93171', '169', '1', 'Spring', 2007, 'A-'); + insert into takes values('27950', '760', '1', 'Spring', 2004, 'C-'); + insert into takes values('48861', '192', '1', 'Fall', 2002, 'B-'); + insert into takes values('86833', '401', '1', 'Fall', 2003, 'C-'); + insert into takes values('9495', '457', '1', 'Spring', 2001, 'C-'); + insert into takes values('64082', '468', '1', 'Fall', 2005, 'C+'); + insert into takes values('94178', '352', '1', 'Spring', 2006, 'B-'); + insert into takes values('31086', '468', '1', 'Fall', 2005, 'B-'); + insert into takes values('19791', '239', '1', 'Fall', 2006, 'C-'); + insert into takes values('93508', '545', '1', 'Fall', 2001, 'C+'); + insert into takes values('88417', '482', '1', 'Fall', 2005, 'A+'); + insert into takes values('65714', '696', '1', 'Spring', 2002, 'C-'); + insert into takes values('99694', '105', '1', 'Fall', 2009, 'A-'); + insert into takes values('31364', '791', '1', 'Spring', 2006, 'C-'); + insert into takes values('12216', '760', '1', 'Spring', 2004, 'A '); + insert into takes values('53118', '457', '1', 'Spring', 2001, 'C-'); + insert into takes values('35257', '960', '1', 'Fall', 2009, 'B+'); + insert into takes values('93004', '362', '1', 'Fall', 2005, 'A '); + insert into takes values('65258', '802', '1', 'Spring', 2003, 'A+'); + insert into takes values('19342', '962', '1', 'Spring', 2008, 'A-'); + insert into takes values('39241', '735', '2', 'Spring', 2010, 'C '); + insert into takes values('6367', '962', '1', 'Spring', 2008, 'A '); + insert into takes values('89246', '496', '1', 'Fall', 2001, 'B-'); + insert into takes values('5843', '867', '2', 'Fall', 2010, 'B+'); + insert into takes values('2139', '352', '1', 'Spring', 2006, 'C+'); + insert into takes values('46655', '694', '1', 'Fall', 2002, 'B-'); + insert into takes values('37653', '808', '1', 'Fall', 2003, 'B+'); + insert into takes values('72528', '468', '2', 'Fall', 2007, 'A '); + insert into takes values('90663', '461', '1', 'Fall', 2002, 'C+'); + insert into takes values('98388', '795', '1', 'Spring', 2004, 'A '); + insert into takes values('82039', '345', '1', 'Spring', 2008, 'B '); + insert into takes values('14432', '345', '1', 'Spring', 2008, 'A-'); + insert into takes values('63502', '599', '1', 'Spring', 2003, 'B+'); + insert into takes values('123', '561', '1', 'Fall', 2006, 'B+'); + insert into takes values('35', '893', '1', 'Fall', 2007, 'B '); + insert into takes values('70395', '158', '1', 'Fall', 2008, 'C-'); + insert into takes values('72528', '192', '1', 'Fall', 2002, 'C-'); + insert into takes values('33759', '421', '1', 'Fall', 2004, 'B '); + insert into takes values('94620', '489', '1', 'Fall', 2007, 'B '); + insert into takes values('69307', '319', '1', 'Spring', 2003, 'C '); + insert into takes values('72669', '457', '1', 'Spring', 2001, 'C+'); + insert into takes values('81175', '270', '1', 'Spring', 2010, 'C-'); + insert into takes values('41894', '443', '1', 'Spring', 2010, 'B '); + insert into takes values('53496', '642', '1', 'Fall', 2004, 'A-'); + insert into takes values('14639', '735', '1', 'Spring', 2003, 'C-'); + insert into takes values('23311', '527', '1', 'Fall', 2004, 'C+'); + insert into takes values('15487', '105', '1', 'Fall', 2009, 'C+'); + insert into takes values('7043', '408', '1', 'Spring', 2007, 'B+'); + insert into takes values('49244', '735', '1', 'Spring', 2003, 'B '); + insert into takes values('64169', '137', '1', 'Spring', 2002, 'B-'); + insert into takes values('67021', '105', '2', 'Fall', 2002, 'A '); + insert into takes values('39619', '489', '1', 'Fall', 2007, 'A '); + insert into takes values('46725', '486', '1', 'Fall', 2009, 'A-'); + insert into takes values('60984', '581', '1', 'Spring', 2005, 'A-'); + insert into takes values('7287', '760', '1', 'Spring', 2004, 'C '); + insert into takes values('81638', '960', '1', 'Fall', 2009, 'C+'); + insert into takes values('12615', '591', '1', 'Spring', 2005, 'C '); + insert into takes values('80821', '349', '1', 'Spring', 2008, 'A+'); + insert into takes values('2178', '527', '1', 'Fall', 2004, 'B-'); + insert into takes values('71426', '468', '1', 'Fall', 2005, 'B '); + insert into takes values('94178', '443', '1', 'Spring', 2010, 'A '); + insert into takes values('82063', '960', '2', 'Fall', 2006, 'A+'); + insert into takes values('61998', '493', '1', 'Spring', 2010, 'C+'); + insert into takes values('2178', '962', '1', 'Spring', 2008, 'B+'); + insert into takes values('39978', '960', '2', 'Fall', 2006, 'B '); + insert into takes values('5871', '843', '1', 'Fall', 2010, 'B+'); + insert into takes values('88140', '400', '2', 'Fall', 2003, 'C+'); + insert into takes values('48678', '239', '1', 'Fall', 2006, 'A+'); + insert into takes values('83573', '366', '1', 'Fall', 2005, 'C '); + insert into takes values('3487', '200', '1', 'Spring', 2007, 'A '); + insert into takes values('84702', '345', '1', 'Spring', 2008, 'C '); + insert into takes values('64550', '105', '1', 'Fall', 2009, 'B+'); + insert into takes values('97868', '237', '1', 'Spring', 2008, 'C '); + insert into takes values('47001', '401', '1', 'Fall', 2003, 'A '); + insert into takes values('15578', '457', '1', 'Spring', 2001, 'B+'); + insert into takes values('68396', '482', '1', 'Fall', 2005, 'C-'); + insert into takes values('64297', '927', '1', 'Fall', 2002, 'B+'); + insert into takes values('14874', '486', '1', 'Fall', 2009, 'C-'); + insert into takes values('31266', '974', '1', 'Fall', 2003, 'A '); + insert into takes values('22532', '949', '1', 'Fall', 2007, 'B-'); + insert into takes values('92385', '486', '1', 'Fall', 2009, 'B+'); + insert into takes values('90381', '581', '1', 'Spring', 2005, 'C '); + insert into takes values('69679', '760', '1', 'Spring', 2004, 'B+'); + insert into takes values('81610', '200', '1', 'Spring', 2007, 'C '); + insert into takes values('10267', '545', '1', 'Fall', 2001, 'A+'); + insert into takes values('88085', '631', '1', 'Spring', 2007, 'C+'); + insert into takes values('91370', '974', '1', 'Fall', 2003, 'C '); + insert into takes values('57055', '959', '1', 'Fall', 2006, 'B '); + insert into takes values('30161', '349', '1', 'Spring', 2008, 'B '); + insert into takes values('99271', '313', '1', 'Fall', 2010, 'B+'); + insert into takes values('13403', '158', '1', 'Fall', 2008, 'B-'); + insert into takes values('23373', '960', '2', 'Fall', 2006, 'B+'); + insert into takes values('38371', '581', '1', 'Spring', 2005, 'B+'); + insert into takes values('95850', '561', '1', 'Fall', 2006, 'C+'); + insert into takes values('108', '696', '1', 'Spring', 2002, 'B-'); + insert into takes values('27236', '362', '2', 'Fall', 2006, 'C+'); + insert into takes values('65681', '612', '1', 'Fall', 2007, 'A '); + insert into takes values('46066', '927', '1', 'Fall', 2002, 'B '); + insert into takes values('11682', '169', '2', 'Fall', 2002, 'C-'); + insert into takes values('57156', '270', '1', 'Spring', 2010, 'B+'); + insert into takes values('70359', '527', '1', 'Fall', 2004, 'B-'); + insert into takes values('53803', '400', '1', 'Spring', 2007, 'A-'); + insert into takes values('43981', '169', '1', 'Spring', 2007, 'B+'); + insert into takes values('23311', '843', '1', 'Fall', 2010, 'C-'); + insert into takes values('34957', '270', '1', 'Spring', 2010, 'B+'); + insert into takes values('93508', '604', '1', 'Spring', 2009, 'A+'); + insert into takes values('88525', '352', '1', 'Spring', 2006, 'A '); + insert into takes values('87831', '158', '1', 'Fall', 2008, 'A-'); + insert into takes values('24116', '808', '1', 'Fall', 2003, 'C '); + insert into takes values('83003', '239', '1', 'Fall', 2006, 'C-'); + insert into takes values('56849', '974', '1', 'Fall', 2003, 'B '); + insert into takes values('36019', '927', '1', 'Fall', 2002, 'A+'); + insert into takes values('10705', '631', '1', 'Spring', 2007, 'B-'); + insert into takes values('34158', '352', '1', 'Spring', 2006, 'B '); + insert into takes values('60867', '959', '1', 'Fall', 2006, 'C-'); + insert into takes values('14432', '239', '1', 'Fall', 2006, 'A-'); + insert into takes values('40371', '496', '1', 'Fall', 2001, 'C '); + insert into takes values('108', '401', '1', 'Fall', 2003, 'C '); + insert into takes values('11095', '612', '1', 'Fall', 2007, 'A '); + insert into takes values('23994', '927', '1', 'Fall', 2002, 'B+'); + insert into takes values('6195', '415', '1', 'Fall', 2010, 'A '); + insert into takes values('36379', '561', '1', 'Fall', 2006, 'C+'); + insert into takes values('61920', '927', '1', 'Fall', 2002, 'C+'); + insert into takes values('73908', '795', '1', 'Spring', 2004, 'B-'); + insert into takes values('78116', '352', '1', 'Spring', 2006, 'C-'); + insert into takes values('123', '376', '1', 'Fall', 2006, 'C-'); + insert into takes values('25942', '875', '1', 'Spring', 2005, 'C '); + insert into takes values('38712', '972', '1', 'Spring', 2009, 'A-'); + insert into takes values('35293', '795', '1', 'Spring', 2004, 'B-'); + insert into takes values('52929', '237', '2', 'Fall', 2009, 'A+'); + insert into takes values('83953', '599', '1', 'Spring', 2003, 'B-'); + insert into takes values('95859', '571', '1', 'Spring', 2004, 'A+'); + insert into takes values('67542', '760', '1', 'Spring', 2004, 'C-'); + insert into takes values('58081', '426', '1', 'Spring', 2006, 'B+'); + insert into takes values('58935', '927', '1', 'Fall', 2002, 'A-'); + insert into takes values('55329', '802', '1', 'Spring', 2003, 'C-'); + insert into takes values('10727', '704', '1', 'Spring', 2008, 'B+'); + insert into takes values('3493', '949', '1', 'Fall', 2007, 'A-'); + insert into takes values('86651', '443', '2', 'Spring', 2002, 'A '); + insert into takes values('68453', '319', '1', 'Spring', 2003, 'B+'); + insert into takes values('15726', '960', '1', 'Fall', 2009, 'B+'); + insert into takes values('30124', '960', '2', 'Fall', 2006, 'B-'); + insert into takes values('83314', '493', '1', 'Spring', 2010, 'A '); + insert into takes values('72501', '631', '1', 'Spring', 2007, 'B '); + insert into takes values('13352', '426', '1', 'Spring', 2006, 'B-'); + insert into takes values('4173', '760', '1', 'Spring', 2004, 'A-'); + insert into takes values('97023', '559', '1', 'Fall', 2002, 'C '); + insert into takes values('97658', '105', '1', 'Fall', 2009, 'A '); + insert into takes values('27956', '843', '1', 'Fall', 2010, 'B+'); + insert into takes values('80248', '200', '2', 'Fall', 2002, 'A '); + insert into takes values('99399', '493', '1', 'Spring', 2010, 'B-'); + insert into takes values('19541', '408', '2', 'Spring', 2003, 'A '); + insert into takes values('85445', '802', '1', 'Spring', 2003, 'C+'); + insert into takes values('1533', '663', '1', 'Spring', 2005, 'B '); + insert into takes values('24010', '735', '2', 'Spring', 2010, 'C+'); + insert into takes values('30289', '304', '1', 'Fall', 2009, 'C+'); + insert into takes values('49684', '875', '1', 'Spring', 2005, 'B '); + insert into takes values('57456', '489', '1', 'Fall', 2007, 'B-'); + insert into takes values('42956', '489', '1', 'Fall', 2007, 'B-'); + insert into takes values('96067', '795', '1', 'Spring', 2004, 'B '); + insert into takes values('76953', '581', '1', 'Spring', 2005, 'C+'); + insert into takes values('99399', '959', '1', 'Fall', 2006, 'A+'); + insert into takes values('88525', '105', '2', 'Fall', 2002, 'B-'); + insert into takes values('86127', '242', '1', 'Fall', 2009, 'A-'); + insert into takes values('65714', '192', '1', 'Fall', 2002, 'A+'); + insert into takes values('73606', '468', '1', 'Fall', 2005, 'A+'); + insert into takes values('31554', '663', '1', 'Spring', 2005, 'B-'); + insert into takes values('88993', '200', '2', 'Fall', 2002, 'C-'); + insert into takes values('99271', '852', '1', 'Spring', 2008, 'C '); + insert into takes values('96741', '793', '1', 'Spring', 2002, 'A+'); + insert into takes values('14554', '603', '1', 'Fall', 2003, 'C '); + insert into takes values('21337', '747', '1', 'Spring', 2004, 'C '); + insert into takes values('93366', '415', '1', 'Fall', 2010, 'B+'); + insert into takes values('33759', '274', '1', 'Fall', 2002, 'A '); + insert into takes values('84432', '960', '1', 'Fall', 2009, 'C-'); + insert into takes values('88302', '591', '1', 'Spring', 2005, 'A-'); + insert into takes values('82591', '105', '1', 'Fall', 2009, 'B-'); + insert into takes values('16885', '808', '1', 'Fall', 2003, 'A+'); + insert into takes values('61783', '338', '1', 'Spring', 2007, 'A+'); + insert into takes values('88140', '852', '1', 'Spring', 2008, 'A-'); + insert into takes values('75791', '401', '1', 'Fall', 2003, 'C-'); + insert into takes values('92274', '313', '1', 'Fall', 2010, 'C '); + insert into takes values('33759', '748', '1', 'Fall', 2003, 'A '); + insert into takes values('44206', '795', '1', 'Spring', 2004, 'B '); + insert into takes values('94311', '468', '1', 'Fall', 2005, 'C+'); + insert into takes values('52157', '237', '1', 'Spring', 2008, 'A '); + insert into takes values('61414', '493', '1', 'Spring', 2010, 'B-'); + insert into takes values('53490', '443', '1', 'Spring', 2010, 'B '); + insert into takes values('32483', '679', '1', 'Spring', 2010, 'A+'); + insert into takes values('85505', '795', '1', 'Spring', 2004, 'C-'); + insert into takes values('987', '270', '1', 'Spring', 2010, 'B+'); + insert into takes values('26102', '748', '1', 'Fall', 2003, 'A+'); + insert into takes values('72055', '867', '1', 'Fall', 2006, 'A+'); + insert into takes values('77289', '893', '1', 'Fall', 2007, 'A-'); + insert into takes values('55531', '626', '1', 'Fall', 2006, 'C-'); + insert into takes values('65676', '237', '1', 'Spring', 2008, 'A '); + insert into takes values('58595', '468', '2', 'Fall', 2007, 'B+'); + insert into takes values('86344', '864', '1', 'Spring', 2006, 'C+'); + insert into takes values('1080', '704', '1', 'Spring', 2008, 'A '); + insert into takes values('54612', '599', '1', 'Spring', 2003, 'C-'); + insert into takes values('72186', '158', '1', 'Fall', 2008, 'A-'); + insert into takes values('10693', '527', '1', 'Fall', 2004, 'A+'); + insert into takes values('14065', '875', '1', 'Spring', 2005, 'A-'); + insert into takes values('36244', '571', '1', 'Spring', 2004, 'A '); + insert into takes values('557', '545', '1', 'Fall', 2001, 'C '); + insert into takes values('14182', '334', '1', 'Fall', 2009, 'C '); + insert into takes values('87965', '445', '1', 'Spring', 2001, 'B+'); + insert into takes values('32056', '599', '1', 'Spring', 2003, 'B-'); + insert into takes values('70389', '376', '1', 'Fall', 2006, 'A+'); + insert into takes values('46928', '747', '1', 'Spring', 2004, 'B-'); + insert into takes values('41299', '893', '1', 'Fall', 2007, 'B '); + insert into takes values('13753', '408', '2', 'Spring', 2003, 'B '); + insert into takes values('86651', '760', '1', 'Spring', 2004, 'C '); + insert into takes values('74672', '748', '1', 'Fall', 2003, 'A-'); + insert into takes values('31690', '867', '1', 'Fall', 2006, 'A+'); + insert into takes values('9605', '445', '1', 'Spring', 2001, 'C-'); + insert into takes values('56849', '949', '1', 'Fall', 2007, 'C-'); + insert into takes values('14621', '486', '1', 'Fall', 2009, 'A-'); + insert into takes values('22004', '694', '1', 'Fall', 2002, 'C-'); + insert into takes values('36881', '415', '1', 'Fall', 2010, 'B-'); + insert into takes values('27043', '893', '1', 'Fall', 2007, 'C-'); + insert into takes values('71387', '694', '1', 'Fall', 2002, 'C-'); + insert into takes values('2177', '237', '2', 'Fall', 2009, 'A+'); + insert into takes values('52707', '679', '1', 'Spring', 2010, 'A-'); + insert into takes values('46451', '867', '1', 'Fall', 2006, 'B+'); + insert into takes values('38371', '612', '1', 'Fall', 2007, 'A+'); + insert into takes values('8483', '258', '1', 'Fall', 2007, 'B+'); + insert into takes values('65241', '362', '1', 'Fall', 2005, 'A+'); + insert into takes values('60406', '802', '1', 'Spring', 2003, 'B+'); + insert into takes values('32744', '629', '1', 'Spring', 2003, 'C-'); + insert into takes values('82646', '443', '1', 'Spring', 2010, 'B-'); + insert into takes values('42956', '867', '2', 'Fall', 2010, 'C+'); + insert into takes values('72741', '735', '2', 'Spring', 2010, 'B-'); + insert into takes values('21337', '991', '1', 'Spring', 2008, 'A '); + insert into takes values('50944', '629', '1', 'Spring', 2003, 'A+'); + insert into takes values('99422', '349', '1', 'Spring', 2008, 'A-'); + insert into takes values('53496', '949', '1', 'Fall', 2007, 'B+'); + insert into takes values('24796', '426', '1', 'Spring', 2006, 'C '); + insert into takes values('34502', '974', '1', 'Fall', 2003, 'A-'); + insert into takes values('51416', '960', '1', 'Fall', 2009, 'B '); + insert into takes values('10033', '604', '1', 'Spring', 2009, 'A-'); + insert into takes values('30341', '237', '2', 'Fall', 2009, 'B-'); + insert into takes values('39514', '949', '1', 'Fall', 2007, 'A-'); + insert into takes values('20974', '791', '1', 'Spring', 2006, 'C-'); + insert into takes values('89759', '893', '1', 'Fall', 2007, 'A-'); + insert into takes values('93043', '631', '1', 'Spring', 2007, 'B '); + insert into takes values('65979', '334', '1', 'Fall', 2009, 'C+'); + insert into takes values('30252', '468', '2', 'Fall', 2007, 'B '); + insert into takes values('10917', '843', '1', 'Fall', 2010, 'B-'); + insert into takes values('99553', '366', '1', 'Fall', 2005, 'C+'); + insert into takes values('29514', '599', '1', 'Spring', 2003, 'A+'); + insert into takes values('1367', '362', '3', 'Spring', 2008, 'A+'); + insert into takes values('5898', '559', '1', 'Fall', 2002, 'B-'); + insert into takes values('61166', '612', '1', 'Fall', 2007, 'C+'); + insert into takes values('20195', '795', '1', 'Spring', 2004, 'C+'); + insert into takes values('67407', '105', '2', 'Fall', 2002, 'B-'); + insert into takes values('83314', '760', '1', 'Spring', 2004, 'B+'); + insert into takes values('25187', '604', '1', 'Spring', 2009, 'A-'); + insert into takes values('64820', '571', '1', 'Spring', 2004, 'A+'); + insert into takes values('52134', '319', '1', 'Spring', 2003, 'A '); + insert into takes values('39881', '426', '1', 'Spring', 2006, 'C '); + insert into takes values('16969', '867', '1', 'Fall', 2006, 'C '); + insert into takes values('25143', '893', '1', 'Fall', 2007, 'C-'); + insert into takes values('13511', '158', '2', 'Spring', 2008, 'C+'); + insert into takes values('36494', '702', '1', 'Spring', 2001, 'C '); + insert into takes values('84495', '242', '1', 'Fall', 2009, 'A '); + insert into takes values('53048', '760', '1', 'Spring', 2004, 'C-'); + insert into takes values('47627', '169', '1', 'Spring', 2007, 'C-'); + insert into takes values('25718', '893', '1', 'Fall', 2007, 'C '); + insert into takes values('89393', '158', '2', 'Spring', 2008, 'C-'); + insert into takes values('54610', '401', '1', 'Fall', 2003, 'B '); + insert into takes values('7861', '345', '1', 'Spring', 2008, 'B-'); + insert into takes values('14023', '704', '1', 'Spring', 2008, 'C '); + insert into takes values('65329', '642', '1', 'Fall', 2004, 'C-'); + insert into takes values('36244', '415', '1', 'Fall', 2010, 'A-'); + insert into takes values('16347', '631', '1', 'Spring', 2007, 'C+'); + insert into takes values('72669', '258', '1', 'Fall', 2007, 'C+'); + insert into takes values('23992', '468', '2', 'Fall', 2007, 'A '); + insert into takes values('91091', '960', '2', 'Fall', 2006, 'B '); + insert into takes values('25468', '559', '1', 'Fall', 2002, 'B+'); + insert into takes values('47265', '972', '1', 'Spring', 2009, 'A-'); + insert into takes values('63310', '599', '1', 'Spring', 2003, 'A+'); + insert into takes values('21337', '694', '1', 'Fall', 2002, 'B-'); + insert into takes values('23449', '345', '1', 'Spring', 2008, 'A+'); + insert into takes values('92659', '972', '1', 'Spring', 2009, 'A+'); + insert into takes values('96153', '426', '1', 'Spring', 2006, 'B-'); + insert into takes values('68096', '561', '1', 'Fall', 2006, 'C '); + insert into takes values('43993', '421', '1', 'Fall', 2004, 'C+'); + insert into takes values('70924', '694', '1', 'Fall', 2002, 'A-'); + insert into takes values('84808', '760', '1', 'Spring', 2004, 'C+'); + insert into takes values('59673', '313', '1', 'Fall', 2010, 'A-'); + insert into takes values('96206', '362', '2', 'Fall', 2006, 'C+'); + insert into takes values('79329', '747', '1', 'Spring', 2004, 'B+'); + insert into takes values('13028', '581', '1', 'Spring', 2005, 'B '); + insert into takes values('87706', '169', '2', 'Fall', 2002, 'A+'); + insert into takes values('67024', '200', '1', 'Spring', 2007, 'C '); + insert into takes values('35293', '338', '2', 'Spring', 2006, 'C-'); + insert into takes values('12941', '591', '1', 'Spring', 2005, 'A '); + insert into takes values('23794', '679', '1', 'Spring', 2010, 'A+'); + insert into takes values('30222', '408', '2', 'Spring', 2003, 'A-'); + insert into takes values('83314', '867', '2', 'Fall', 2010, 'C '); + insert into takes values('95284', '603', '1', 'Fall', 2003, 'C '); + insert into takes values('16907', '352', '1', 'Spring', 2006, 'C '); + insert into takes values('33837', '366', '1', 'Fall', 2005, 'A+'); + insert into takes values('79697', '960', '1', 'Fall', 2009, 'C '); + insert into takes values('99949', '972', '1', 'Spring', 2009, 'B-'); + insert into takes values('78332', '486', '1', 'Fall', 2009, 'B-'); + insert into takes values('87784', '852', '1', 'Spring', 2008, 'C '); + insert into takes values('95284', '581', '1', 'Spring', 2005, 'B-'); + insert into takes values('79534', '319', '1', 'Spring', 2003, 'B+'); + insert into takes values('21774', '169', '1', 'Spring', 2007, 'C '); + insert into takes values('62054', '313', '1', 'Fall', 2010, 'A '); + insert into takes values('88302', '334', '1', 'Fall', 2009, 'A+'); + insert into takes values('89393', '468', '2', 'Fall', 2007, 'A+'); + insert into takes values('59397', '461', '1', 'Fall', 2002, 'A '); + insert into takes values('32886', '158', '1', 'Fall', 2008, 'A '); + insert into takes values('25942', '629', '1', 'Spring', 2003, 'C-'); + insert into takes values('16849', '559', '1', 'Fall', 2002, 'C '); + insert into takes values('49205', '362', '1', 'Fall', 2005, 'C-'); + insert into takes values('59848', '486', '1', 'Fall', 2009, 'C-'); + insert into takes values('14581', '631', '1', 'Spring', 2007, 'C+'); + insert into takes values('82066', '468', '1', 'Fall', 2005, 'A-'); + insert into takes values('26494', '527', '1', 'Fall', 2004, 'B-'); + insert into takes values('28316', '927', '1', 'Fall', 2002, 'C-'); + insert into takes values('46694', '334', '1', 'Fall', 2009, 'C+'); + insert into takes values('83314', '591', '1', 'Spring', 2005, 'C '); + insert into takes values('51678', '468', '1', 'Fall', 2005, 'A-'); + insert into takes values('22325', '735', '1', 'Spring', 2003, 'A '); + insert into takes values('39927', '237', '2', 'Fall', 2009, 'B+'); + insert into takes values('5961', '599', '1', 'Spring', 2003, 'A+'); + insert into takes values('26881', '571', '1', 'Spring', 2004, 'A-'); + insert into takes values('10527', '962', '1', 'Spring', 2008, 'B+'); + insert into takes values('62487', '366', '1', 'Fall', 2005, 'C+'); + insert into takes values('64297', '237', '1', 'Spring', 2008, 'C '); + insert into takes values('45826', '748', '1', 'Fall', 2003, 'A-'); + insert into takes values('50658', '461', '1', 'Fall', 2002, 'C-'); + insert into takes values('9605', '808', '1', 'Fall', 2003, 'A-'); + insert into takes values('80247', '468', '2', 'Fall', 2007, 'C '); + insert into takes values('99977', '338', '2', 'Spring', 2006, 'A '); + insert into takes values('22618', '949', '1', 'Fall', 2007, 'B-'); + insert into takes values('52872', '959', '1', 'Fall', 2006, 'C-'); + insert into takes values('72014', '581', '1', 'Spring', 2005, 'B-'); + insert into takes values('67810', '642', '1', 'Fall', 2004, 'B-'); + insert into takes values('33338', '400', '2', 'Fall', 2003, 'B-'); + insert into takes values('30896', '631', '1', 'Spring', 2007, 'C+'); + insert into takes values('28004', '468', '1', 'Fall', 2005, 'B+'); + insert into takes values('47670', '461', '1', 'Fall', 2002, 'A-'); + insert into takes values('30858', '468', '1', 'Fall', 2005, 'A '); + insert into takes values('44352', '237', '2', 'Fall', 2009, 'A+'); + insert into takes values('23500', '747', '1', 'Spring', 2004, 'A+'); + insert into takes values('37521', '352', '1', 'Spring', 2006, 'C-'); + insert into takes values('17507', '704', '1', 'Spring', 2008, 'C-'); + insert into takes values('61166', '631', '1', 'Spring', 2007, 'B '); + insert into takes values('92693', '527', '1', 'Fall', 2004, 'B '); + insert into takes values('9605', '319', '1', 'Spring', 2003, 'A '); + insert into takes values('79329', '426', '1', 'Spring', 2006, 'C+'); + insert into takes values('70807', '362', '2', 'Fall', 2006, 'C '); + insert into takes values('16885', '571', '1', 'Spring', 2004, 'B '); + insert into takes values('38271', '527', '1', 'Fall', 2004, 'A-'); + insert into takes values('17911', '401', '1', 'Fall', 2003, 'A-'); + insert into takes values('89104', '304', '1', 'Fall', 2009, 'B+'); + insert into takes values('15883', '642', '1', 'Fall', 2004, 'C+'); + insert into takes values('96722', '304', '1', 'Fall', 2009, 'A+'); + insert into takes values('90914', '626', '1', 'Fall', 2006, 'A '); + insert into takes values('72657', '972', '1', 'Spring', 2009, 'C+'); + insert into takes values('34788', '581', '1', 'Spring', 2005, 'A '); + insert into takes values('12971', '457', '1', 'Spring', 2001, 'A '); + insert into takes values('85356', '338', '2', 'Spring', 2006, 'B-'); + insert into takes values('48423', '561', '1', 'Fall', 2006, 'A-'); + insert into takes values('90124', '927', '1', 'Fall', 2002, 'C+'); + insert into takes values('87785', '237', '2', 'Fall', 2009, 'A+'); + insert into takes values('93491', '400', '2', 'Fall', 2003, 'C '); + insert into takes values('77580', '349', '1', 'Spring', 2008, 'B '); + insert into takes values('85809', '319', '1', 'Spring', 2003, 'C '); + insert into takes values('76173', '867', '1', 'Fall', 2006, 'B '); + insert into takes values('80248', '426', '1', 'Spring', 2006, 'C '); + insert into takes values('13880', '237', '2', 'Fall', 2009, 'C+'); + insert into takes values('7123', '345', '1', 'Spring', 2008, 'A+'); + insert into takes values('22254', '808', '1', 'Fall', 2003, 'C '); + insert into takes values('29390', '603', '1', 'Fall', 2003, 'B+'); + insert into takes values('70807', '493', '1', 'Spring', 2010, 'A-'); + insert into takes values('92776', '962', '1', 'Spring', 2008, 'A-'); + insert into takes values('72014', '571', '1', 'Spring', 2004, 'A '); + insert into takes values('5463', '349', '1', 'Spring', 2008, 'A '); + insert into takes values('50331', '629', '1', 'Spring', 2003, 'B+'); + insert into takes values('25068', '959', '1', 'Fall', 2006, 'A+'); + insert into takes values('55238', '401', '1', 'Fall', 2003, 'C+'); + insert into takes values('71543', '345', '1', 'Spring', 2008, 'B-'); + insert into takes values('37586', '867', '1', 'Fall', 2006, 'A-'); + insert into takes values('25611', '793', '1', 'Spring', 2002, 'C-'); + insert into takes values('4438', '867', '2', 'Fall', 2010, 'C '); + insert into takes values('6400', '242', '1', 'Fall', 2009, 'B '); + insert into takes values('45570', '489', '1', 'Fall', 2007, 'B-'); + insert into takes values('23110', '927', '1', 'Fall', 2002, 'C '); + insert into takes values('34055', '192', '1', 'Fall', 2002, 'B '); + insert into takes values('72669', '793', '1', 'Spring', 2002, 'A+'); + insert into takes values('42092', '362', '1', 'Fall', 2005, 'C '); + insert into takes values('63310', '489', '1', 'Fall', 2007, 'A+'); + insert into takes values('16849', '237', '1', 'Spring', 2008, 'C+'); + insert into takes values('61127', '376', '1', 'Fall', 2006, 'B-'); + insert into takes values('67407', '400', '2', 'Fall', 2003, 'A+'); + insert into takes values('28952', '808', '1', 'Fall', 2003, 'C+'); + insert into takes values('23344', '313', '1', 'Fall', 2010, 'C+'); + insert into takes values('83136', '974', '1', 'Fall', 2003, 'C-'); + insert into takes values('85910', '443', '2', 'Spring', 2002, 'C '); + insert into takes values('20084', '875', '1', 'Spring', 2005, 'A '); + insert into takes values('5943', '527', '1', 'Fall', 2004, 'C+'); + insert into takes values('50977', '408', '1', 'Spring', 2007, 'A-'); + insert into takes values('63310', '959', '1', 'Fall', 2006, 'B+'); + insert into takes values('42556', '735', '2', 'Spring', 2010, 'A-'); + insert into takes values('55915', '304', '1', 'Fall', 2009, 'B-'); + insert into takes values('27727', '604', '1', 'Spring', 2009, 'A+'); + insert into takes values('23392', '415', '1', 'Fall', 2010, 'C+'); + insert into takes values('87651', '802', '1', 'Spring', 2003, 'C-'); + insert into takes values('28019', '345', '1', 'Spring', 2008, 'B-'); + insert into takes values('96085', '362', '1', 'Fall', 2005, 'A+'); + insert into takes values('96203', '200', '2', 'Fall', 2002, 'C-'); + insert into takes values('42960', '612', '1', 'Fall', 2007, 'C-'); + insert into takes values('58919', '270', '1', 'Spring', 2010, 'A '); + insert into takes values('25468', '376', '1', 'Fall', 2006, 'B '); + insert into takes values('27687', '200', '1', 'Spring', 2007, 'B '); + insert into takes values('6287', '200', '1', 'Spring', 2007, 'A '); + insert into takes values('77588', '200', '1', 'Spring', 2007, 'A+'); + insert into takes values('79329', '242', '1', 'Fall', 2009, 'A+'); + insert into takes values('68280', '362', '3', 'Spring', 2008, 'C+'); + insert into takes values('46970', '571', '1', 'Spring', 2004, 'A-'); + insert into takes values('2201', '559', '1', 'Fall', 2002, 'C+'); + insert into takes values('30723', '338', '1', 'Spring', 2007, 'B '); + insert into takes values('2201', '169', '1', 'Spring', 2007, 'B '); + insert into takes values('63582', '843', '1', 'Fall', 2010, 'B+'); + insert into takes values('31079', '960', '2', 'Fall', 2006, 'B '); + insert into takes values('7149', '626', '1', 'Fall', 2006, 'C '); + insert into takes values('7970', '960', '1', 'Fall', 2009, 'B+'); + insert into takes values('14554', '631', '1', 'Spring', 2007, 'C '); + insert into takes values('45720', '631', '1', 'Spring', 2007, 'C-'); + insert into takes values('54296', '694', '1', 'Fall', 2002, 'B '); + insert into takes values('99977', '468', '2', 'Fall', 2007, 'A-'); + insert into takes values('84654', '482', '1', 'Fall', 2005, 'C '); + insert into takes values('57123', '443', '2', 'Spring', 2002, 'A+'); + insert into takes values('37653', '457', '1', 'Spring', 2001, 'A+'); + insert into takes values('16753', '747', '1', 'Spring', 2004, 'A+'); + insert into takes values('66484', '169', '1', 'Spring', 2007, 'C-'); + insert into takes values('85505', '258', '1', 'Fall', 2007, 'C-'); + insert into takes values('52291', '581', '1', 'Spring', 2005, 'A '); + insert into takes values('35498', '802', '1', 'Spring', 2003, 'A-'); + insert into takes values('95953', '401', '1', 'Fall', 2003, 'A-'); + insert into takes values('93631', '527', '1', 'Fall', 2004, 'C '); + insert into takes values('5298', '867', '1', 'Fall', 2006, 'A-'); + insert into takes values('94990', '158', '2', 'Spring', 2008, 'A '); + insert into takes values('3493', '959', '1', 'Fall', 2006, 'A '); + insert into takes values('47126', '237', '1', 'Spring', 2008, 'A+'); + insert into takes values('14874', '991', '1', 'Spring', 2008, 'A '); + insert into takes values('27094', '352', '1', 'Spring', 2006, 'B '); + insert into takes values('28004', '735', '2', 'Spring', 2010, 'A-'); + insert into takes values('2629', '604', '1', 'Spring', 2009, 'C '); + insert into takes values('27044', '852', '1', 'Spring', 2008, 'A '); + insert into takes values('48901', '376', '1', 'Fall', 2006, 'A-'); + insert into takes values('17676', '169', '1', 'Spring', 2007, 'A-'); + insert into takes values('17924', '352', '1', 'Spring', 2006, 'B-'); + insert into takes values('31337', '366', '1', 'Fall', 2005, 'C '); + insert into takes values('1460', '258', '1', 'Fall', 2007, 'C-'); + insert into takes values('52385', '319', '1', 'Spring', 2003, 'C-'); + insert into takes values('2629', '408', '2', 'Spring', 2003, 'C-'); + insert into takes values('54672', '692', '1', 'Spring', 2010, 'C-'); + insert into takes values('32464', '443', '1', 'Spring', 2010, 'B '); + insert into takes values('8912', '105', '1', 'Fall', 2009, 'C '); + insert into takes values('46762', '237', '2', 'Fall', 2009, 'C-'); + insert into takes values('77289', '496', '1', 'Fall', 2001, 'B-'); + insert into takes values('40178', '486', '1', 'Fall', 2009, 'A '); + insert into takes values('80698', '258', '1', 'Fall', 2007, 'A+'); + insert into takes values('22226', '612', '1', 'Fall', 2007, 'B '); + insert into takes values('7620', '974', '1', 'Fall', 2003, 'B '); + insert into takes values('39619', '545', '1', 'Fall', 2001, 'B '); + insert into takes values('65753', '747', '1', 'Spring', 2004, 'C+'); + insert into takes values('22179', '489', '1', 'Fall', 2007, 'A '); + insert into takes values('68070', '949', '1', 'Fall', 2007, 'B+'); + insert into takes values('87831', '242', '1', 'Fall', 2009, 'C-'); + insert into takes values('70384', '927', '1', 'Fall', 2002, 'A+'); + insert into takes values('41491', '445', '1', 'Spring', 2001, 'A '); + insert into takes values('62705', '482', '1', 'Fall', 2005, 'B-'); + insert into takes values('88358', '366', '1', 'Fall', 2005, 'A-'); + insert into takes values('99451', '581', '1', 'Spring', 2005, 'B '); + insert into takes values('75596', '802', '1', 'Spring', 2003, 'A '); + insert into takes values('86641', '338', '2', 'Spring', 2006, 'B '); + insert into takes values('98563', '366', '1', 'Fall', 2005, 'B '); + insert into takes values('27002', '802', '1', 'Spring', 2003, 'C+'); + insert into takes values('39238', '527', '1', 'Fall', 2004, 'C-'); + insert into takes values('66763', '802', '1', 'Spring', 2003, 'B-'); + insert into takes values('31341', '376', '1', 'Fall', 2006, 'C '); + insert into takes values('63243', '338', '2', 'Spring', 2006, 'C '); + insert into takes values('62754', '802', '1', 'Spring', 2003, 'B '); + insert into takes values('21401', '401', '1', 'Fall', 2003, 'B-'); + insert into takes values('55915', '169', '2', 'Fall', 2002, 'B+'); + insert into takes values('59553', '376', '1', 'Fall', 2006, 'A-'); + insert into takes values('34018', '400', '2', 'Fall', 2003, 'C '); + insert into takes values('92776', '400', '1', 'Spring', 2007, 'B '); + insert into takes values('90567', '239', '1', 'Fall', 2006, 'C+'); + insert into takes values('29645', '702', '1', 'Spring', 2001, 'C+'); + insert into takes values('95029', '604', '1', 'Spring', 2009, 'B '); + insert into takes values('82126', '270', '1', 'Spring', 2010, 'C+'); + insert into takes values('6474', '735', '1', 'Spring', 2003, 'B-'); + insert into takes values('53803', '599', '1', 'Spring', 2003, 'A '); + insert into takes values('5250', '408', '2', 'Spring', 2003, 'C+'); + insert into takes values('62152', '867', '1', 'Fall', 2006, 'B-'); + insert into takes values('22912', '338', '2', 'Spring', 2006, 'B '); + insert into takes values('78581', '791', '1', 'Spring', 2006, 'A-'); + insert into takes values('13504', '612', '1', 'Fall', 2007, 'B-'); + insert into takes values('39521', '893', '1', 'Fall', 2007, 'A-'); + insert into takes values('39115', '237', '1', 'Spring', 2008, 'A '); + insert into takes values('59530', '486', '1', 'Fall', 2009, 'A-'); + insert into takes values('52187', '793', '1', 'Spring', 2002, 'C+'); + insert into takes values('31137', '338', '2', 'Spring', 2006, 'A+'); + insert into takes values('62716', '692', '1', 'Spring', 2010, 'B '); + insert into takes values('41491', '599', '1', 'Spring', 2003, 'B+'); + insert into takes values('54605', '489', '1', 'Fall', 2007, 'C '); + insert into takes values('53805', '105', '2', 'Fall', 2002, 'B-'); + insert into takes values('58889', '239', '1', 'Fall', 2006, 'C '); + insert into takes values('51549', '991', '1', 'Spring', 2008, 'C+'); + insert into takes values('50702', '408', '2', 'Spring', 2003, 'A '); + insert into takes values('70807', '972', '1', 'Spring', 2009, 'C+'); + insert into takes values('20489', '445', '1', 'Spring', 2001, 'B-'); + insert into takes values('32483', '319', '1', 'Spring', 2003, 'C '); + insert into takes values('13028', '629', '1', 'Spring', 2003, 'B+'); + insert into takes values('24746', '376', '1', 'Fall', 2006, 'B-'); + insert into takes values('64067', '679', '1', 'Spring', 2010, 'A-'); + insert into takes values('65433', '960', '1', 'Fall', 2009, 'A '); + insert into takes values('36881', '200', '2', 'Fall', 2002, 'B '); + insert into takes values('25468', '808', '1', 'Fall', 2003, 'A '); + insert into takes values('20540', '867', '2', 'Fall', 2010, 'C-'); + insert into takes values('98984', '893', '1', 'Fall', 2007, 'A '); + insert into takes values('58935', '631', '1', 'Spring', 2007, 'A-'); + insert into takes values('78858', '692', '1', 'Spring', 2010, 'B '); + insert into takes values('81207', '319', '1', 'Spring', 2003, 'A-'); + insert into takes values('61166', '599', '1', 'Spring', 2003, 'A '); + insert into takes values('43616', '629', '1', 'Spring', 2003, 'B '); + insert into takes values('23449', '960', '1', 'Fall', 2009, 'C-'); + insert into takes values('25528', '445', '1', 'Spring', 2001, 'C-'); + insert into takes values('27662', '137', '1', 'Spring', 2002, 'C '); + insert into takes values('21101', '362', '1', 'Fall', 2005, 'B+'); + insert into takes values('59538', '408', '1', 'Spring', 2007, 'A-'); + insert into takes values('5414', '366', '1', 'Fall', 2005, 'B-'); + insert into takes values('9947', '169', '1', 'Spring', 2007, 'B-'); + insert into takes values('67725', '974', '1', 'Fall', 2003, 'A '); + insert into takes values('61356', '304', '1', 'Fall', 2009, 'A-'); + insert into takes values('27898', '313', '1', 'Fall', 2010, 'B '); + insert into takes values('88793', '626', '1', 'Fall', 2006, 'A+'); + insert into takes values('41890', '362', '1', 'Fall', 2005, 'B+'); + insert into takes values('39552', '443', '2', 'Spring', 2002, 'C-'); + insert into takes values('31364', '476', '1', 'Fall', 2010, 'B-'); + insert into takes values('95697', '304', '1', 'Fall', 2009, 'B '); + insert into takes values('12216', '629', '1', 'Spring', 2003, 'C+'); + insert into takes values('57787', '304', '1', 'Fall', 2009, 'B+'); + insert into takes values('11057', '270', '1', 'Spring', 2010, 'B+'); + insert into takes values('65329', '334', '1', 'Fall', 2009, 'A-'); + insert into takes values('77580', '561', '1', 'Fall', 2006, 'C-'); + insert into takes values('25068', '795', '1', 'Spring', 2004, 'B '); + insert into takes values('68096', '400', '1', 'Spring', 2007, 'B-'); + insert into takes values('98563', '169', '1', 'Spring', 2007, 'B+'); + insert into takes values('65205', '345', '1', 'Spring', 2008, 'C+'); + insert into takes values('39876', '338', '1', 'Spring', 2007, 'B+'); + insert into takes values('27430', '237', '1', 'Spring', 2008, 'C-'); + insert into takes values('73394', '319', '1', 'Spring', 2003, 'A+'); + insert into takes values('39204', '599', '1', 'Spring', 2003, 'B-'); + insert into takes values('90004', '735', '1', 'Spring', 2003, 'C-'); + insert into takes values('29959', '795', '1', 'Spring', 2004, 'C+'); + insert into takes values('22057', '974', '1', 'Fall', 2003, 'C '); + insert into takes values('91799', '376', '1', 'Fall', 2006, 'C+'); + insert into takes values('80821', '242', '1', 'Fall', 2009, 'C-'); + insert into takes values('78581', '258', '1', 'Fall', 2007, 'A-'); + insert into takes values('60688', '408', '2', 'Spring', 2003, 'C '); + insert into takes values('22532', '304', '1', 'Fall', 2009, 'A '); + insert into takes values('32368', '808', '1', 'Fall', 2003, 'B '); + insert into takes values('4582', '319', '1', 'Spring', 2003, 'C '); + insert into takes values('99949', '808', '1', 'Fall', 2003, 'A+'); + insert into takes values('18338', '760', '1', 'Spring', 2004, 'B-'); + insert into takes values('80941', '571', '1', 'Spring', 2004, 'C+'); + insert into takes values('84039', '468', '1', 'Fall', 2005, 'B-'); + insert into takes values('90220', '362', '1', 'Fall', 2005, 'A+'); + insert into takes values('37339', '795', '1', 'Spring', 2004, 'C '); + insert into takes values('89140', '631', '1', 'Spring', 2007, 'A+'); + insert into takes values('32490', '349', '1', 'Spring', 2008, 'B-'); + insert into takes values('32385', '401', '1', 'Fall', 2003, 'B+'); + insert into takes values('52669', '795', '1', 'Spring', 2004, 'A+'); + insert into takes values('44584', '158', '1', 'Fall', 2008, 'A+'); + insert into takes values('43912', '445', '1', 'Spring', 2001, 'A-'); + insert into takes values('99730', '192', '1', 'Fall', 2002, 'B+'); + insert into takes values('57238', '972', '1', 'Spring', 2009, 'B-'); + insert into takes values('12711', '735', '1', 'Spring', 2003, 'A-'); + insert into takes values('78767', '158', '1', 'Fall', 2008, 'C+'); + insert into takes values('77729', '408', '2', 'Spring', 2003, 'A+'); + insert into takes values('71025', '486', '1', 'Fall', 2009, 'C-'); + insert into takes values('31337', '545', '1', 'Fall', 2001, 'C '); + insert into takes values('99949', '704', '1', 'Spring', 2008, 'B+'); + insert into takes values('49792', '158', '1', 'Fall', 2008, 'C-'); + insert into takes values('95225', '274', '1', 'Fall', 2002, 'C '); + insert into takes values('32119', '237', '2', 'Fall', 2009, 'B '); + insert into takes values('55286', '258', '1', 'Fall', 2007, 'C '); + insert into takes values('23506', '338', '1', 'Spring', 2007, 'A-'); + insert into takes values('35198', '468', '1', 'Fall', 2005, 'A-'); + insert into takes values('28299', '304', '1', 'Fall', 2009, 'A-'); + insert into takes values('66356', '972', '1', 'Spring', 2009, 'B '); + insert into takes values('1726', '747', '1', 'Spring', 2004, 'C-'); + insert into takes values('18859', '962', '1', 'Spring', 2008, 'A+'); + insert into takes values('88525', '571', '1', 'Spring', 2004, 'C '); + insert into takes values('27366', '482', '1', 'Fall', 2005, 'A '); + insert into takes values('45300', '642', '1', 'Fall', 2004, 'A-'); + insert into takes values('83002', '893', '1', 'Fall', 2007, 'A+'); + insert into takes values('31486', '461', '1', 'Fall', 2002, 'B '); + insert into takes values('42092', '747', '1', 'Spring', 2004, 'B+'); + insert into takes values('89234', '960', '1', 'Fall', 2009, 'A '); + insert into takes values('63612', '486', '1', 'Fall', 2009, 'B '); + insert into takes values('20099', '476', '1', 'Fall', 2010, 'B '); + insert into takes values('52494', '242', '1', 'Fall', 2009, 'B '); + insert into takes values('49792', '362', '2', 'Fall', 2006, 'C+'); + insert into takes values('66281', '748', '1', 'Fall', 2003, 'C-'); + insert into takes values('71944', '258', '1', 'Fall', 2007, 'C-'); + insert into takes values('41491', '604', '1', 'Spring', 2009, 'A-'); + insert into takes values('37818', '663', '1', 'Spring', 2005, 'C+'); + insert into takes values('17207', '591', '1', 'Spring', 2005, 'C+'); + insert into takes values('53118', '571', '1', 'Spring', 2004, 'C+'); + insert into takes values('81396', '443', '1', 'Spring', 2010, 'B+'); + insert into takes values('8251', '927', '1', 'Fall', 2002, 'B+'); + insert into takes values('35220', '591', '1', 'Spring', 2005, 'C '); + insert into takes values('1884', '237', '1', 'Spring', 2008, 'C-'); + insert into takes values('11152', '415', '1', 'Fall', 2010, 'C+'); + insert into takes values('108', '631', '1', 'Spring', 2007, 'B '); + insert into takes values('15698', '545', '1', 'Fall', 2001, 'B '); + insert into takes values('31266', '362', '1', 'Fall', 2005, 'A-'); + insert into takes values('92274', '239', '1', 'Fall', 2006, 'A '); + insert into takes values('90009', '200', '2', 'Fall', 2002, 'A-'); + insert into takes values('31137', '735', '2', 'Spring', 2010, 'A+'); + insert into takes values('8957', '461', '1', 'Fall', 2002, 'B '); + insert into takes values('64731', '545', '1', 'Fall', 2001, 'A-'); + insert into takes values('94535', '527', '1', 'Fall', 2004, 'B+'); + insert into takes values('59848', '591', '1', 'Spring', 2005, 'C '); + insert into takes values('37038', '927', '1', 'Fall', 2002, 'A '); + insert into takes values('85754', '366', '1', 'Fall', 2005, 'B+'); + insert into takes values('48640', '443', '2', 'Spring', 2002, 'C-'); + insert into takes values('94814', '237', '2', 'Fall', 2009, 'A '); + insert into takes values('65703', '960', '1', 'Fall', 2009, 'B-'); + insert into takes values('57985', '192', '1', 'Fall', 2002, 'C+'); + insert into takes values('14874', '545', '1', 'Fall', 2001, 'A+'); + insert into takes values('88884', '591', '1', 'Spring', 2005, 'B-'); + insert into takes values('54153', '362', '2', 'Fall', 2006, 'A '); + insert into takes values('97355', '376', '1', 'Fall', 2006, 'A '); + insert into takes values('888', '559', '1', 'Fall', 2002, 'B '); + insert into takes values('4435', '421', '1', 'Fall', 2004, 'A+'); + insert into takes values('1018', '603', '1', 'Fall', 2003, 'C+'); + insert into takes values('33206', '415', '1', 'Fall', 2010, 'B-'); + insert into takes values('31442', '795', '1', 'Spring', 2004, 'B-'); + insert into takes values('76270', '105', '2', 'Fall', 2002, 'C '); + insert into takes values('28361', '408', '2', 'Spring', 2003, 'A+'); + insert into takes values('858', '599', '1', 'Spring', 2003, 'B '); + insert into takes values('73268', '962', '1', 'Spring', 2008, 'C+'); + insert into takes values('78767', '334', '1', 'Fall', 2009, 'A-'); + insert into takes values('12326', '735', '2', 'Spring', 2010, 'C '); + insert into takes values('27898', '793', '1', 'Spring', 2002, 'C '); + insert into takes values('74840', '626', '1', 'Fall', 2006, 'A-'); + insert into takes values('57941', '415', '1', 'Fall', 2010, 'C-'); + insert into takes values('2561', '867', '1', 'Fall', 2006, 'A+'); + insert into takes values('83838', '482', '1', 'Fall', 2005, 'A+'); + insert into takes values('7602', '313', '1', 'Fall', 2010, 'B+'); + insert into takes values('65208', '496', '1', 'Fall', 2001, 'C '); + insert into takes values('12563', '366', '1', 'Fall', 2005, 'C '); + insert into takes values('1726', '604', '1', 'Spring', 2009, 'B+'); + insert into takes values('72669', '663', '1', 'Spring', 2005, 'B+'); + insert into takes values('69960', '426', '1', 'Spring', 2006, 'B-'); + insert into takes values('41596', '927', '1', 'Fall', 2002, 'B+'); + insert into takes values('97590', '795', '1', 'Spring', 2004, 'A+'); + insert into takes values('77580', '893', '1', 'Fall', 2007, 'A-'); + insert into takes values('15883', '581', '1', 'Spring', 2005, 'A+'); + insert into takes values('14874', '468', '1', 'Fall', 2005, 'A+'); + insert into takes values('4940', '158', '2', 'Spring', 2008, 'B-'); + insert into takes values('81984', '760', '1', 'Spring', 2004, 'B-'); + insert into takes values('56089', '270', '1', 'Spring', 2010, 'C+'); + insert into takes values('51817', '960', '1', 'Fall', 2009, 'A-'); + insert into takes values('31486', '352', '1', 'Spring', 2006, 'B '); + insert into takes values('64297', '401', '1', 'Fall', 2003, 'A-'); + insert into takes values('22254', '603', '1', 'Fall', 2003, 'C+'); + insert into takes values('75878', '362', '1', 'Fall', 2005, 'C-'); + insert into takes values('65038', '694', '1', 'Fall', 2002, 'A+'); + insert into takes values('69747', '338', '1', 'Spring', 2007, 'A+'); + insert into takes values('60366', '274', '1', 'Fall', 2002, 'B-'); + insert into takes values('8853', '808', '1', 'Fall', 2003, 'C+'); + insert into takes values('507', '400', '2', 'Fall', 2003, 'C-'); + insert into takes values('78911', '400', '1', 'Spring', 2007, 'A+'); + insert into takes values('64121', '852', '1', 'Spring', 2008, 'B+'); + insert into takes values('6895', '735', '1', 'Spring', 2003, 'B '); + insert into takes values('25718', '408', '1', 'Spring', 2007, 'A '); + insert into takes values('87784', '581', '1', 'Spring', 2005, 'B-'); + insert into takes values('86651', '415', '1', 'Fall', 2010, 'A-'); + insert into takes values('39612', '461', '1', 'Fall', 2002, 'C '); + insert into takes values('34422', '242', '1', 'Fall', 2009, 'C-'); + insert into takes values('53485', '258', '1', 'Fall', 2007, 'B+'); + insert into takes values('57242', '692', '1', 'Spring', 2010, 'B-'); + insert into takes values('10033', '443', '2', 'Spring', 2002, 'C-'); + insert into takes values('76049', '461', '1', 'Fall', 2002, 'A '); + insert into takes values('99226', '735', '2', 'Spring', 2010, 'B+'); + insert into takes values('60040', '400', '1', 'Spring', 2007, 'A+'); + insert into takes values('71543', '663', '1', 'Spring', 2005, 'B-'); + insert into takes values('53047', '843', '1', 'Fall', 2010, 'A-'); + insert into takes values('7390', '313', '1', 'Fall', 2010, 'C+'); + insert into takes values('22170', '864', '1', 'Spring', 2006, 'C '); + insert into takes values('65676', '843', '1', 'Fall', 2010, 'C '); + insert into takes values('91063', '735', '2', 'Spring', 2010, 'C-'); + insert into takes values('19450', '559', '1', 'Fall', 2002, 'A+'); + insert into takes values('83622', '461', '1', 'Fall', 2002, 'C-'); + insert into takes values('14563', '545', '1', 'Fall', 2001, 'C+'); + insert into takes values('51093', '704', '1', 'Spring', 2008, 'A '); + insert into takes values('65438', '137', '1', 'Spring', 2002, 'A-'); + insert into takes values('11453', '366', '1', 'Fall', 2005, 'C-'); + insert into takes values('64082', '313', '1', 'Fall', 2010, 'A-'); + insert into takes values('49391', '421', '1', 'Fall', 2004, 'A+'); + insert into takes values('72768', '304', '1', 'Fall', 2009, 'B-'); + insert into takes values('18499', '843', '1', 'Fall', 2010, 'A+'); + insert into takes values('97041', '496', '1', 'Fall', 2001, 'C '); + insert into takes values('10454', '169', '1', 'Spring', 2007, 'B+'); + insert into takes values('85451', '604', '1', 'Spring', 2009, 'A+'); + insert into takes values('52076', '486', '1', 'Fall', 2009, 'B+'); + insert into takes values('26427', '875', '1', 'Spring', 2005, 'A '); + insert into takes values('89312', '927', '1', 'Fall', 2002, 'B+'); + insert into takes values('41751', '338', '2', 'Spring', 2006, 'C-'); + insert into takes values('25725', '476', '1', 'Fall', 2010, 'C-'); + insert into takes values('19861', '735', '1', 'Spring', 2003, 'C-'); + insert into takes values('38895', '366', '1', 'Fall', 2005, 'B-'); + insert into takes values('544', '443', '1', 'Spring', 2010, 'C+'); + insert into takes values('64013', '137', '1', 'Spring', 2002, 'B-'); + insert into takes values('64169', '694', '1', 'Fall', 2002, 'B-'); + insert into takes values('70384', '169', '1', 'Spring', 2007, 'C+'); + insert into takes values('8853', '489', '1', 'Fall', 2007, 'A-'); + insert into takes values('46337', '192', '1', 'Fall', 2002, 'A-'); + insert into takes values('23224', '747', '1', 'Spring', 2004, 'C-'); + insert into takes values('23373', '642', '1', 'Fall', 2004, 'A '); + insert into takes values('4248', '349', '1', 'Spring', 2008, 'B '); + insert into takes values('19791', '735', '2', 'Spring', 2010, 'C-'); + insert into takes values('98690', '415', '1', 'Fall', 2010, 'B-'); + insert into takes values('39619', '629', '1', 'Spring', 2003, 'A-'); + insert into takes values('11422', '704', '1', 'Spring', 2008, 'B+'); + insert into takes values('52494', '604', '1', 'Spring', 2009, 'C-'); + insert into takes values('52076', '366', '1', 'Fall', 2005, 'A '); + insert into takes values('61332', '875', '1', 'Spring', 2005, 'B-'); + insert into takes values('61527', '694', '1', 'Fall', 2002, 'A-'); + insert into takes values('89104', '445', '1', 'Spring', 2001, 'B '); + insert into takes values('74473', '349', '1', 'Spring', 2008, 'A '); + insert into takes values('67033', '258', '1', 'Fall', 2007, 'A+'); + insert into takes values('84702', '457', '1', 'Spring', 2001, 'A '); + insert into takes values('51975', '867', '2', 'Fall', 2010, 'B '); + insert into takes values('47001', '692', '1', 'Spring', 2010, 'B-'); + insert into takes values('25077', '960', '1', 'Fall', 2009, 'C+'); + insert into takes values('22417', '445', '1', 'Spring', 2001, 'A '); + insert into takes values('68516', '571', '1', 'Spring', 2004, 'A-'); + insert into takes values('57431', '158', '1', 'Fall', 2008, 'C+'); + insert into takes values('41674', '200', '2', 'Fall', 2002, 'B-'); + insert into takes values('76291', '158', '2', 'Spring', 2008, 'A-'); + insert into takes values('6895', '468', '2', 'Fall', 2007, 'B+'); + insert into takes values('89104', '974', '1', 'Fall', 2003, 'B-'); + insert into takes values('52876', '239', '1', 'Fall', 2006, 'A '); + insert into takes values('31442', '496', '1', 'Fall', 2001, 'B '); + insert into takes values('51203', '795', '1', 'Spring', 2004, 'C+'); + insert into takes values('81876', '612', '1', 'Fall', 2007, 'C-'); + insert into takes values('19048', '791', '1', 'Spring', 2006, 'A+'); + insert into takes values('14668', '352', '1', 'Spring', 2006, 'C+'); + insert into takes values('6209', '274', '1', 'Fall', 2002, 'C-'); + insert into takes values('92839', '319', '1', 'Spring', 2003, 'B-'); + insert into takes values('81610', '105', '2', 'Fall', 2002, 'A+'); + insert into takes values('21394', '864', '1', 'Spring', 2006, 'B+'); + insert into takes values('60224', '760', '1', 'Spring', 2004, 'C-'); + insert into takes values('56882', '735', '1', 'Spring', 2003, 'B '); + insert into takes values('8986', '349', '1', 'Spring', 2008, 'B '); + insert into takes values('70965', '468', '2', 'Fall', 2007, 'C+'); + insert into takes values('62152', '443', '1', 'Spring', 2010, 'C+'); + insert into takes values('92442', '338', '1', 'Spring', 2007, 'A-'); + insert into takes values('40558', '304', '1', 'Fall', 2009, 'C+'); + insert into takes values('85575', '591', '1', 'Spring', 2005, 'C-'); + insert into takes values('29002', '760', '1', 'Spring', 2004, 'B-'); + insert into takes values('63489', '748', '1', 'Fall', 2003, 'C '); + insert into takes values('28361', '959', '1', 'Fall', 2006, 'B-'); + insert into takes values('29871', '561', '1', 'Fall', 2006, 'B+'); + insert into takes values('842', '960', '1', 'Fall', 2009, 'C '); + insert into takes values('79329', '237', '2', 'Fall', 2009, 'A '); + insert into takes values('5298', '793', '1', 'Spring', 2002, 'A '); + insert into takes values('30397', '461', '1', 'Fall', 2002, 'A+'); + insert into takes values('91851', '237', '1', 'Spring', 2008, 'A '); + insert into takes values('91063', '791', '1', 'Spring', 2006, 'C '); + insert into takes values('27898', '867', '1', 'Fall', 2006, 'B+'); + insert into takes values('57474', '679', '1', 'Spring', 2010, 'B '); + insert into takes values('13921', '421', '1', 'Fall', 2004, 'A-'); + insert into takes values('86552', '468', '2', 'Fall', 2007, 'A-'); + insert into takes values('5961', '489', '1', 'Fall', 2007, 'A+'); + insert into takes values('64169', '338', '2', 'Spring', 2006, 'A-'); + insert into takes values('12078', '974', '1', 'Fall', 2003, 'B-'); + insert into takes values('50039', '200', '1', 'Spring', 2007, 'B+'); + insert into takes values('22003', '476', '1', 'Fall', 2010, 'C '); + insert into takes values('99977', '545', '1', 'Fall', 2001, 'C+'); + insert into takes values('41894', '239', '1', 'Fall', 2006, 'A-'); + insert into takes values('64401', '694', '1', 'Fall', 2002, 'C-'); + insert into takes values('7970', '629', '1', 'Spring', 2003, 'A '); + insert into takes values('66212', '760', '1', 'Spring', 2004, 'A+'); + insert into takes values('92849', '599', '1', 'Spring', 2003, 'C+'); + insert into takes values('24784', '972', '1', 'Spring', 2009, 'B-'); + insert into takes values('56078', '696', '1', 'Spring', 2002, 'C-'); + insert into takes values('83314', '482', '1', 'Fall', 2005, 'B '); + insert into takes values('47627', '852', '1', 'Spring', 2008, 'B-'); + insert into takes values('28299', '239', '1', 'Fall', 2006, 'C '); + insert into takes values('75040', '158', '2', 'Spring', 2008, 'B+'); + insert into takes values('69081', '960', '1', 'Fall', 2009, 'A+'); + insert into takes values('17128', '239', '1', 'Fall', 2006, 'C-'); + insert into takes values('14596', '457', '1', 'Spring', 2001, 'B+'); + insert into takes values('6287', '949', '1', 'Fall', 2007, 'C '); + insert into takes values('30017', '591', '1', 'Spring', 2005, 'B+'); + insert into takes values('52471', '137', '1', 'Spring', 2002, 'C-'); + insert into takes values('51549', '852', '1', 'Spring', 2008, 'C '); + insert into takes values('6209', '105', '1', 'Fall', 2009, 'B-'); + insert into takes values('67514', '591', '1', 'Spring', 2005, 'B-'); + insert into takes values('14182', '679', '1', 'Spring', 2010, 'C+'); + insert into takes values('14621', '704', '1', 'Spring', 2008, 'B+'); + insert into takes values('14432', '486', '1', 'Fall', 2009, 'C-'); + insert into takes values('33349', '401', '1', 'Fall', 2003, 'A-'); + insert into takes values('96085', '581', '1', 'Spring', 2005, 'B+'); + insert into takes values('92949', '304', '1', 'Fall', 2009, 'C+'); + insert into takes values('86075', '748', '1', 'Fall', 2003, 'C '); + insert into takes values('66259', '591', '1', 'Spring', 2005, 'B+'); + insert into takes values('71426', '875', '1', 'Spring', 2005, 'C+'); + insert into takes values('28518', '704', '1', 'Spring', 2008, 'C '); + insert into takes values('34788', '400', '2', 'Fall', 2003, 'B '); + insert into takes values('7498', '493', '1', 'Spring', 2010, 'C-'); + insert into takes values('16250', '400', '1', 'Spring', 2007, 'A+'); + insert into takes values('28977', '591', '1', 'Spring', 2005, 'A-'); + insert into takes values('43123', '960', '1', 'Fall', 2009, 'A '); + insert into takes values('71085', '468', '2', 'Fall', 2007, 'A+'); + insert into takes values('97101', '415', '1', 'Fall', 2010, 'C+'); + insert into takes values('55531', '960', '2', 'Fall', 2006, 'C '); + insert into takes values('78332', '158', '1', 'Fall', 2008, 'A-'); + insert into takes values('16907', '400', '1', 'Spring', 2007, 'B-'); + insert into takes values('67021', '972', '1', 'Spring', 2009, 'C-'); + insert into takes values('2848', '105', '1', 'Fall', 2009, 'C+'); + insert into takes values('27002', '366', '1', 'Fall', 2005, 'A-'); + insert into takes values('59848', '415', '1', 'Fall', 2010, 'B-'); + insert into takes values('68263', '349', '1', 'Spring', 2008, 'C-'); + insert into takes values('26619', '137', '1', 'Spring', 2002, 'A-'); + insert into takes values('24374', '352', '1', 'Spring', 2006, 'B-'); + insert into takes values('38973', '482', '1', 'Fall', 2005, 'A-'); + insert into takes values('2423', '581', '1', 'Spring', 2005, 'C-'); + insert into takes values('16528', '105', '2', 'Fall', 2002, 'C-'); + insert into takes values('5399', '400', '2', 'Fall', 2003, 'B '); + insert into takes values('30188', '642', '1', 'Fall', 2004, 'B '); + insert into takes values('94257', '486', '1', 'Fall', 2009, 'B-'); + insert into takes values('11578', '352', '1', 'Spring', 2006, 'A+'); + insert into takes values('64082', '482', '1', 'Fall', 2005, 'C '); + insert into takes values('29863', '852', '1', 'Spring', 2008, 'C '); + insert into takes values('80912', '270', '1', 'Spring', 2010, 'B '); + insert into takes values('83039', '274', '1', 'Fall', 2002, 'A-'); + insert into takes values('29920', '476', '1', 'Fall', 2010, 'C '); + insert into takes values('11966', '581', '1', 'Spring', 2005, 'B '); + insert into takes values('17133', '960', '1', 'Fall', 2009, 'A '); + insert into takes values('31761', '960', '2', 'Fall', 2006, 'B-'); + insert into takes values('24796', '237', '1', 'Spring', 2008, 'A '); + insert into takes values('53185', '704', '1', 'Spring', 2008, 'A '); + insert into takes values('8603', '679', '1', 'Spring', 2010, 'C '); + insert into takes values('86375', '795', '1', 'Spring', 2004, 'B '); + insert into takes values('28538', '571', '1', 'Spring', 2004, 'C '); + insert into takes values('8251', '376', '1', 'Fall', 2006, 'B+'); + insert into takes values('27366', '696', '1', 'Spring', 2002, 'B-'); + insert into takes values('59290', '603', '1', 'Fall', 2003, 'A+'); + insert into takes values('69230', '962', '1', 'Spring', 2008, 'B+'); + insert into takes values('97041', '349', '1', 'Spring', 2008, 'B-'); + insert into takes values('77234', '400', '2', 'Fall', 2003, 'C '); + insert into takes values('62429', '864', '1', 'Spring', 2006, 'A-'); + insert into takes values('46694', '631', '1', 'Spring', 2007, 'C '); + insert into takes values('85910', '105', '2', 'Fall', 2002, 'B-'); + insert into takes values('99660', '362', '1', 'Fall', 2005, 'A '); + insert into takes values('43505', '349', '1', 'Spring', 2008, 'B '); + insert into takes values('58465', '443', '2', 'Spring', 2002, 'B '); + insert into takes values('72055', '476', '1', 'Fall', 2010, 'A+'); + insert into takes values('25468', '748', '1', 'Fall', 2003, 'C '); + insert into takes values('78858', '408', '2', 'Spring', 2003, 'A+'); + insert into takes values('24630', '334', '1', 'Fall', 2009, 'B+'); + insert into takes values('99553', '274', '1', 'Fall', 2002, 'A '); + insert into takes values('97023', '489', '1', 'Fall', 2007, 'B+'); + insert into takes values('48776', '421', '1', 'Fall', 2004, 'A+'); + insert into takes values('41973', '158', '2', 'Spring', 2008, 'C+'); + insert into takes values('49982', '603', '1', 'Fall', 2003, 'C+'); + insert into takes values('32954', '408', '2', 'Spring', 2003, 'B-'); + insert into takes values('61402', '852', '1', 'Spring', 2008, 'C+'); + insert into takes values('35721', '304', '1', 'Fall', 2009, 'B-'); + insert into takes values('57511', '974', '1', 'Fall', 2003, 'B+'); + insert into takes values('44304', '808', '1', 'Fall', 2003, 'B '); + insert into takes values('82301', '400', '2', 'Fall', 2003, 'B-'); + insert into takes values('47025', '169', '2', 'Fall', 2002, 'A+'); + insert into takes values('86833', '237', '1', 'Spring', 2008, 'C-'); + insert into takes values('1285', '642', '1', 'Fall', 2004, 'C-'); + insert into takes values('88085', '974', '1', 'Fall', 2003, 'B+'); + insert into takes values('35462', '338', '2', 'Spring', 2006, 'C+'); + insert into takes values('78572', '376', '1', 'Fall', 2006, 'B '); + insert into takes values('86327', '696', '1', 'Spring', 2002, 'A '); + insert into takes values('56941', '603', '1', 'Fall', 2003, 'B+'); + insert into takes values('36926', '663', '1', 'Spring', 2005, 'B+'); + insert into takes values('36845', '626', '1', 'Fall', 2006, 'B '); + insert into takes values('30943', '735', '1', 'Spring', 2003, 'B+'); + insert into takes values('1812', '338', '1', 'Spring', 2007, 'A+'); + insert into takes values('41211', '400', '1', 'Spring', 2007, 'B '); + insert into takes values('52157', '949', '1', 'Fall', 2007, 'C '); + insert into takes values('81883', '626', '1', 'Fall', 2006, 'A '); + insert into takes values('69081', '338', '1', 'Spring', 2007, 'C-'); + insert into takes values('43032', '599', '1', 'Spring', 2003, 'B-'); + insert into takes values('63449', '631', '1', 'Spring', 2007, 'C '); + insert into takes values('50969', '571', '1', 'Spring', 2004, 'B+'); + insert into takes values('52203', '867', '1', 'Fall', 2006, 'A-'); + insert into takes values('55859', '972', '1', 'Spring', 2009, 'B-'); + insert into takes values('74464', '696', '1', 'Spring', 2002, 'B-'); + insert into takes values('15083', '864', '1', 'Spring', 2006, 'C '); + insert into takes values('22086', '735', '2', 'Spring', 2010, 'B '); + insert into takes values('23439', '443', '2', 'Spring', 2002, 'A '); + insert into takes values('30772', '791', '1', 'Spring', 2006, 'C '); + insert into takes values('56276', '867', '1', 'Fall', 2006, 'C+'); + insert into takes values('57787', '105', '2', 'Fall', 2002, 'B '); + insert into takes values('70061', '237', '2', 'Fall', 2009, 'B '); + insert into takes values('48901', '972', '1', 'Spring', 2009, 'B+'); + insert into takes values('83747', '571', '1', 'Spring', 2004, 'C+'); + insert into takes values('65433', '545', '1', 'Fall', 2001, 'B+'); + insert into takes values('72979', '408', '1', 'Spring', 2007, 'B+'); + insert into takes values('55698', '867', '1', 'Fall', 2006, 'C '); + insert into takes values('89393', '237', '1', 'Spring', 2008, 'C+'); + insert into takes values('11076', '631', '1', 'Spring', 2007, 'B+'); + insert into takes values('70384', '694', '1', 'Fall', 2002, 'B+'); + insert into takes values('98120', '362', '2', 'Fall', 2006, 'B '); + insert into takes values('25942', '338', '2', 'Spring', 2006, 'B-'); + insert into takes values('993', '626', '1', 'Fall', 2006, 'C+'); + insert into takes values('44271', '571', '1', 'Spring', 2004, 'C+'); + insert into takes values('73328', '349', '1', 'Spring', 2008, 'B-'); + insert into takes values('43226', '192', '1', 'Fall', 2002, 'C '); + insert into takes values('42114', '962', '1', 'Spring', 2008, 'B '); + insert into takes values('93366', '493', '1', 'Spring', 2010, 'C+'); + insert into takes values('23449', '561', '1', 'Fall', 2006, 'B '); + insert into takes values('14829', '489', '1', 'Fall', 2007, 'A+'); + insert into takes values('83747', '959', '1', 'Fall', 2006, 'B '); + insert into takes values('9256', '349', '1', 'Spring', 2008, 'C '); + insert into takes values('31624', '362', '3', 'Spring', 2008, 'C+'); + insert into takes values('16480', '468', '2', 'Fall', 2007, 'A '); + insert into takes values('20099', '867', '2', 'Fall', 2010, 'B+'); + insert into takes values('10917', '802', '1', 'Spring', 2003, 'A-'); + insert into takes values('74460', '352', '1', 'Spring', 2006, 'A+'); + insert into takes values('17831', '482', '1', 'Fall', 2005, 'C '); + insert into takes values('39204', '476', '1', 'Fall', 2010, 'B '); + insert into takes values('8853', '802', '1', 'Spring', 2003, 'C '); + insert into takes values('81884', '415', '1', 'Fall', 2010, 'C+'); + insert into takes values('78787', '864', '1', 'Spring', 2006, 'A-'); + insert into takes values('17676', '962', '1', 'Spring', 2008, 'B+'); + insert into takes values('24116', '735', '2', 'Spring', 2010, 'C-'); + insert into takes values('38895', '345', '1', 'Spring', 2008, 'A-'); + insert into takes values('64039', '362', '3', 'Spring', 2008, 'C '); + insert into takes values('11126', '408', '1', 'Spring', 2007, 'A-'); + insert into takes values('15980', '960', '1', 'Fall', 2009, 'B+'); + insert into takes values('52523', '626', '1', 'Fall', 2006, 'B '); + insert into takes values('23475', '482', '1', 'Fall', 2005, 'A '); + insert into takes values('8192', '486', '1', 'Fall', 2009, 'A '); + insert into takes values('66969', '304', '1', 'Fall', 2009, 'C+'); + insert into takes values('68396', '334', '1', 'Fall', 2009, 'C-'); + insert into takes values('2133', '802', '1', 'Spring', 2003, 'A '); + insert into takes values('30124', '362', '3', 'Spring', 2008, 'B-'); + insert into takes values('6990', '192', '1', 'Fall', 2002, 'C '); + insert into takes values('90089', '864', '1', 'Spring', 2006, 'C+'); + insert into takes values('52134', '545', '1', 'Fall', 2001, 'C-'); + insert into takes values('17086', '960', '2', 'Fall', 2006, 'A '); + insert into takes values('58085', '362', '1', 'Fall', 2005, 'B+'); + insert into takes values('9953', '486', '1', 'Fall', 2009, 'A+'); + insert into takes values('71904', '527', '1', 'Fall', 2004, 'C '); + insert into takes values('63645', '304', '1', 'Fall', 2009, 'C-'); + insert into takes values('94998', '704', '1', 'Spring', 2008, 'B+'); + insert into takes values('61444', '545', '1', 'Fall', 2001, 'A+'); + insert into takes values('7204', '802', '1', 'Spring', 2003, 'B+'); + insert into takes values('39881', '468', '1', 'Fall', 2005, 'C-'); + insert into takes values('4940', '408', '1', 'Spring', 2007, 'A+'); + insert into takes values('4004', '345', '1', 'Spring', 2008, 'C-'); + insert into takes values('69230', '400', '1', 'Spring', 2007, 'B-'); + insert into takes values('91132', '702', '1', 'Spring', 2001, 'B+'); + insert into takes values('50206', '893', '1', 'Fall', 2007, 'C-'); + insert into takes values('24116', '443', '1', 'Spring', 2010, 'B-'); + insert into takes values('63289', '559', '1', 'Fall', 2002, 'C-'); + insert into takes values('36685', '991', '1', 'Spring', 2008, 'B-'); + insert into takes values('94569', '612', '1', 'Fall', 2007, 'A '); + insert into takes values('67340', '237', '2', 'Fall', 2009, 'C-'); + insert into takes values('931', '200', '2', 'Fall', 2002, 'C '); + insert into takes values('35523', '571', '1', 'Spring', 2004, 'B+'); + insert into takes values('42092', '626', '1', 'Fall', 2006, 'C-'); + insert into takes values('90448', '401', '1', 'Fall', 2003, 'A+'); + insert into takes values('17600', '468', '2', 'Fall', 2007, 'B+'); + insert into takes values('11855', '408', '2', 'Spring', 2003, 'C+'); + insert into takes values('88884', '421', '1', 'Fall', 2004, 'C+'); + insert into takes values('93354', '105', '1', 'Fall', 2009, 'A+'); + insert into takes values('11095', '345', '1', 'Spring', 2008, 'C+'); + insert into takes values('81566', '445', '1', 'Spring', 2001, 'A '); + insert into takes values('98120', '476', '1', 'Fall', 2010, 'B-'); + insert into takes values('43505', '400', '1', 'Spring', 2007, 'A '); + insert into takes values('54612', '626', '1', 'Fall', 2006, 'A '); + insert into takes values('69132', '760', '1', 'Spring', 2004, 'A '); + insert into takes values('64039', '959', '1', 'Fall', 2006, 'C+'); + insert into takes values('28829', '642', '1', 'Fall', 2004, 'C-'); + insert into takes values('96895', '313', '1', 'Fall', 2010, 'C '); + insert into takes values('49205', '735', '1', 'Spring', 2003, 'A-'); + insert into takes values('37734', '748', '1', 'Fall', 2003, 'B+'); + insert into takes values('89312', '493', '1', 'Spring', 2010, 'A+'); + insert into takes values('96246', '137', '1', 'Spring', 2002, 'B+'); + insert into takes values('99754', '704', '1', 'Spring', 2008, 'A-'); + insert into takes values('57666', '559', '1', 'Fall', 2002, 'B '); + insert into takes values('67810', '974', '1', 'Fall', 2003, 'B '); + insert into takes values('65753', '927', '1', 'Fall', 2002, 'B '); + insert into takes values('37101', '561', '1', 'Fall', 2006, 'A '); + insert into takes values('43032', '443', '1', 'Spring', 2010, 'A-'); + insert into takes values('39881', '599', '1', 'Spring', 2003, 'C+'); + insert into takes values('60688', '791', '1', 'Spring', 2006, 'C-'); + insert into takes values('31079', '400', '2', 'Fall', 2003, 'B '); + insert into takes values('63538', '559', '1', 'Fall', 2002, 'A+'); + insert into takes values('73072', '974', '1', 'Fall', 2003, 'B '); + insert into takes values('62124', '401', '1', 'Fall', 2003, 'B-'); + insert into takes values('54605', '802', '1', 'Spring', 2003, 'A+'); + insert into takes values('72643', '972', '1', 'Spring', 2009, 'C-'); + insert into takes values('15457', '704', '1', 'Spring', 2008, 'A '); + insert into takes values('70362', '631', '1', 'Spring', 2007, 'A '); + insert into takes values('54612', '362', '2', 'Fall', 2006, 'C+'); + insert into takes values('49214', '959', '1', 'Fall', 2006, 'C-'); + insert into takes values('33201', '599', '1', 'Spring', 2003, 'A '); + insert into takes values('25380', '974', '1', 'Fall', 2003, 'A-'); + insert into takes values('43211', '760', '1', 'Spring', 2004, 'A '); + insert into takes values('86833', '476', '1', 'Fall', 2010, 'A-'); + insert into takes values('70828', '304', '1', 'Fall', 2009, 'A '); + insert into takes values('10727', '545', '1', 'Fall', 2001, 'B-'); + insert into takes values('61356', '338', '1', 'Spring', 2007, 'C-'); + insert into takes values('7620', '352', '1', 'Spring', 2006, 'A+'); + insert into takes values('48247', '735', '1', 'Spring', 2003, 'C+'); + insert into takes values('15283', '239', '1', 'Fall', 2006, 'C-'); + insert into takes values('49618', '313', '1', 'Fall', 2010, 'C-'); + insert into takes values('73606', '612', '1', 'Fall', 2007, 'C+'); + insert into takes values('27956', '408', '2', 'Spring', 2003, 'A '); + insert into takes values('93708', '735', '2', 'Spring', 2010, 'B-'); + insert into takes values('63489', '415', '1', 'Fall', 2010, 'C '); + insert into takes values('83557', '559', '1', 'Fall', 2002, 'C+'); + insert into takes values('64121', '200', '2', 'Fall', 2002, 'B+'); + insert into takes values('52866', '581', '1', 'Spring', 2005, 'A-'); + insert into takes values('70828', '400', '2', 'Fall', 2003, 'C-'); + insert into takes values('60040', '629', '1', 'Spring', 2003, 'C+'); + insert into takes values('61998', '362', '3', 'Spring', 2008, 'C-'); + insert into takes values('57334', '704', '1', 'Spring', 2008, 'B '); + insert into takes values('19917', '962', '1', 'Spring', 2008, 'B+'); + insert into takes values('37715', '496', '1', 'Fall', 2001, 'C '); + insert into takes values('61444', '304', '1', 'Fall', 2009, 'C+'); + insert into takes values('66229', '972', '1', 'Spring', 2009, 'A '); + insert into takes values('23392', '581', '1', 'Spring', 2005, 'C '); + insert into takes values('75510', '604', '1', 'Spring', 2009, 'A '); + insert into takes values('16405', '443', '1', 'Spring', 2010, 'C+'); + insert into takes values('63538', '496', '1', 'Fall', 2001, 'A+'); + insert into takes values('94142', '338', '2', 'Spring', 2006, 'C+'); + insert into takes values('94894', '445', '1', 'Spring', 2001, 'B+'); + insert into takes values('86375', '319', '1', 'Spring', 2003, 'C+'); + insert into takes values('78332', '631', '1', 'Spring', 2007, 'B-'); + insert into takes values('16057', '366', '1', 'Fall', 2005, 'C+'); + insert into takes values('87222', '443', '2', 'Spring', 2002, 'B-'); + insert into takes values('55238', '642', '1', 'Fall', 2004, 'B-'); + insert into takes values('792', '802', '1', 'Spring', 2003, 'A+'); + insert into takes values('56057', '972', '1', 'Spring', 2009, 'B '); + insert into takes values('22226', '949', '1', 'Fall', 2007, 'C '); + insert into takes values('11530', '875', '1', 'Spring', 2005, 'C+'); + insert into takes values('1367', '679', '1', 'Spring', 2010, 'C+'); + insert into takes values('98019', '169', '2', 'Fall', 2002, 'A+'); + insert into takes values('54728', '158', '1', 'Fall', 2008, 'B+'); + insert into takes values('36657', '319', '1', 'Spring', 2003, 'C '); + insert into takes values('59908', '747', '1', 'Spring', 2004, 'B '); + insert into takes values('35220', '604', '1', 'Spring', 2009, 'A-'); + insert into takes values('91788', '612', '1', 'Fall', 2007, 'C-'); + insert into takes values('72657', '338', '2', 'Spring', 2006, 'B-'); + insert into takes values('60224', '949', '1', 'Fall', 2007, 'B-'); + insert into takes values('32345', '401', '1', 'Fall', 2003, 'A+'); + insert into takes values('31266', '571', '1', 'Spring', 2004, 'B-'); + insert into takes values('67583', '426', '1', 'Spring', 2006, 'A-'); + insert into takes values('83480', '482', '1', 'Fall', 2005, 'B+'); + insert into takes values('55859', '864', '1', 'Spring', 2006, 'C '); + insert into takes values('84865', '426', '1', 'Spring', 2006, 'A '); + insert into takes values('15578', '482', '1', 'Fall', 2005, 'B '); + insert into takes values('50664', '366', '1', 'Fall', 2005, 'C+'); + insert into takes values('77003', '735', '2', 'Spring', 2010, 'B '); + insert into takes values('74639', '808', '1', 'Fall', 2003, 'C '); + insert into takes values('41818', '629', '1', 'Spring', 2003, 'A+'); + insert into takes values('30164', '496', '1', 'Fall', 2001, 'A-'); + insert into takes values('76270', '748', '1', 'Fall', 2003, 'B+'); + insert into takes values('38691', '270', '1', 'Spring', 2010, 'A-'); + insert into takes values('21766', '313', '1', 'Fall', 2010, 'A+'); + insert into takes values('30772', '426', '1', 'Spring', 2006, 'A+'); + insert into takes values('16405', '974', '1', 'Fall', 2003, 'B-'); + insert into takes values('34018', '349', '1', 'Spring', 2008, 'A-'); + insert into takes values('69230', '748', '1', 'Fall', 2003, 'A-'); + insert into takes values('19917', '349', '1', 'Spring', 2008, 'B '); + insert into takes values('19917', '663', '1', 'Spring', 2005, 'C+'); + insert into takes values('10814', '629', '1', 'Spring', 2003, 'C '); + insert into takes values('63538', '949', '1', 'Fall', 2007, 'B+'); + insert into takes values('107', '334', '1', 'Fall', 2009, 'C+'); + insert into takes values('51538', '867', '2', 'Fall', 2010, 'B '); + insert into takes values('57083', '663', '1', 'Spring', 2005, 'A+'); + insert into takes values('98388', '802', '1', 'Spring', 2003, 'C-'); + insert into takes values('67293', '599', '1', 'Spring', 2003, 'C '); + insert into takes values('97400', '400', '2', 'Fall', 2003, 'C '); + insert into takes values('71543', '962', '1', 'Spring', 2008, 'B '); + insert into takes values('17996', '663', '1', 'Spring', 2005, 'C '); + insert into takes values('19735', '735', '1', 'Spring', 2003, 'A '); + insert into takes values('50365', '158', '2', 'Spring', 2008, 'A+'); + insert into takes values('69783', '696', '1', 'Spring', 2002, 'C '); + insert into takes values('2561', '927', '1', 'Fall', 2002, 'A-'); + insert into takes values('5005', '867', '1', 'Fall', 2006, 'C '); + insert into takes values('72358', '366', '1', 'Fall', 2005, 'A-'); + insert into takes values('63040', '362', '3', 'Spring', 2008, 'A '); + insert into takes values('70807', '591', '1', 'Spring', 2005, 'B '); + insert into takes values('107', '642', '1', 'Fall', 2004, 'C '); + insert into takes values('67146', '237', '1', 'Spring', 2008, 'A '); + insert into takes values('61414', '735', '2', 'Spring', 2010, 'B+'); + insert into takes values('14065', '239', '1', 'Fall', 2006, 'A '); + insert into takes values('72358', '561', '1', 'Fall', 2006, 'B-'); + insert into takes values('987', '864', '1', 'Spring', 2006, 'B '); + insert into takes values('94178', '401', '1', 'Fall', 2003, 'C-'); + insert into takes values('66090', '482', '1', 'Fall', 2005, 'B '); + insert into takes values('29435', '366', '1', 'Fall', 2005, 'A-'); + insert into takes values('69747', '457', '1', 'Spring', 2001, 'B-'); + insert into takes values('15283', '735', '2', 'Spring', 2010, 'C-'); + insert into takes values('41890', '200', '2', 'Fall', 2002, 'C+'); + insert into takes values('90124', '663', '1', 'Spring', 2005, 'B '); + insert into takes values('56499', '362', '2', 'Fall', 2006, 'C '); + insert into takes values('85366', '158', '2', 'Spring', 2008, 'C+'); + insert into takes values('16528', '949', '1', 'Fall', 2007, 'A '); + insert into takes values('12979', '192', '1', 'Fall', 2002, 'B-'); + insert into takes values('84239', '571', '1', 'Spring', 2004, 'C-'); + insert into takes values('91343', '599', '1', 'Spring', 2003, 'A+'); + insert into takes values('69230', '974', '1', 'Fall', 2003, 'C-'); + insert into takes values('38712', '376', '1', 'Fall', 2006, 'A-'); + insert into takes values('123', '802', '1', 'Spring', 2003, 'C-'); + insert into takes values('15457', '808', '1', 'Fall', 2003, 'B-'); + insert into takes values('57135', '867', '2', 'Fall', 2010, 'C-'); + insert into takes values('94998', '169', '2', 'Fall', 2002, 'B '); + insert into takes values('92776', '496', '1', 'Fall', 2001, 'C '); + insert into takes values('37581', '242', '1', 'Fall', 2009, 'A '); + insert into takes values('53165', '258', '1', 'Fall', 2007, 'B+'); + insert into takes values('75423', '702', '1', 'Spring', 2001, 'B '); + insert into takes values('79352', '626', '1', 'Fall', 2006, 'B '); + insert into takes values('77898', '893', '1', 'Fall', 2007, 'A '); + insert into takes values('24809', '349', '1', 'Spring', 2008, 'C '); + insert into takes values('43616', '476', '1', 'Fall', 2010, 'B+'); + insert into takes values('4355', '747', '1', 'Spring', 2004, 'C '); + insert into takes values('69307', '158', '2', 'Spring', 2008, 'C-'); + insert into takes values('59848', '443', '1', 'Spring', 2010, 'A+'); + insert into takes values('50206', '791', '1', 'Spring', 2006, 'C '); + insert into takes values('18234', '169', '2', 'Fall', 2002, 'C+'); + insert into takes values('8807', '629', '1', 'Spring', 2003, 'A-'); + insert into takes values('74070', '338', '2', 'Spring', 2006, 'B+'); + insert into takes values('52866', '376', '1', 'Fall', 2006, 'A '); + insert into takes values('87965', '338', '2', 'Spring', 2006, 'C '); + insert into takes values('73411', '893', '1', 'Fall', 2007, 'A '); + insert into takes values('35687', '875', '1', 'Spring', 2005, 'B '); + insert into takes values('96227', '400', '1', 'Spring', 2007, 'A '); + insert into takes values('58846', '893', '1', 'Fall', 2007, 'A-'); + insert into takes values('21225', '702', '1', 'Spring', 2001, 'B+'); + insert into takes values('35138', '242', '1', 'Fall', 2009, 'A+'); + insert into takes values('32376', '591', '1', 'Spring', 2005, 'B+'); + insert into takes values('20489', '366', '1', 'Fall', 2005, 'B+'); + insert into takes values('6474', '702', '1', 'Spring', 2001, 'A-'); + insert into takes values('58846', '802', '1', 'Spring', 2003, 'C-'); + insert into takes values('39394', '545', '1', 'Fall', 2001, 'C '); + insert into takes values('19861', '345', '1', 'Spring', 2008, 'C+'); + insert into takes values('36379', '679', '1', 'Spring', 2010, 'B+'); + insert into takes values('28538', '105', '1', 'Fall', 2009, 'B '); + insert into takes values('41774', '349', '1', 'Spring', 2008, 'A '); + insert into takes values('81550', '468', '1', 'Fall', 2005, 'B+'); + insert into takes values('91580', '457', '1', 'Spring', 2001, 'C '); + insert into takes values('53048', '591', '1', 'Spring', 2005, 'A+'); + insert into takes values('96153', '760', '1', 'Spring', 2004, 'B '); + insert into takes values('29645', '852', '1', 'Spring', 2008, 'B+'); + insert into takes values('10033', '702', '1', 'Spring', 2001, 'A '); + insert into takes values('54612', '974', '1', 'Fall', 2003, 'A-'); + insert into takes values('90089', '599', '1', 'Spring', 2003, 'B '); + insert into takes values('68330', '962', '1', 'Spring', 2008, 'A '); + insert into takes values('40481', '192', '1', 'Fall', 2002, 'C '); + insert into takes values('35362', '545', '1', 'Fall', 2001, 'C+'); + insert into takes values('27898', '304', '1', 'Fall', 2009, 'C '); + insert into takes values('35257', '561', '1', 'Fall', 2006, 'A-'); + insert into takes values('60748', '443', '2', 'Spring', 2002, 'C+'); + insert into takes values('259', '401', '1', 'Fall', 2003, 'B-'); + insert into takes values('7973', '702', '1', 'Spring', 2001, 'C+'); + insert into takes values('52872', '482', '1', 'Fall', 2005, 'C-'); + insert into takes values('15698', '400', '1', 'Spring', 2007, 'A '); + insert into takes values('79502', '415', '1', 'Fall', 2010, 'B-'); + insert into takes values('56299', '169', '2', 'Fall', 2002, 'B+'); + insert into takes values('12971', '200', '2', 'Fall', 2002, 'B '); + insert into takes values('49205', '561', '1', 'Fall', 2006, 'A-'); + insert into takes values('88577', '612', '1', 'Fall', 2007, 'B+'); + insert into takes values('26080', '334', '1', 'Fall', 2009, 'B '); + insert into takes values('69732', '791', '1', 'Spring', 2006, 'C '); + insert into takes values('5961', '445', '1', 'Spring', 2001, 'A-'); + insert into takes values('32065', '408', '2', 'Spring', 2003, 'B-'); + insert into takes values('67017', '237', '1', 'Spring', 2008, 'B+'); + insert into takes values('49618', '408', '2', 'Spring', 2003, 'B '); + insert into takes values('80610', '445', '1', 'Spring', 2001, 'B '); + insert into takes values('94257', '960', '1', 'Fall', 2009, 'A-'); + insert into takes values('34392', '571', '1', 'Spring', 2004, 'A-'); + insert into takes values('39115', '545', '1', 'Fall', 2001, 'B-'); + insert into takes values('82591', '366', '1', 'Fall', 2005, 'C+'); + insert into takes values('85226', '808', '1', 'Fall', 2003, 'B-'); + insert into takes values('61527', '959', '1', 'Fall', 2006, 'B-'); + insert into takes values('9183', '496', '1', 'Fall', 2001, 'C-'); + insert into takes values('5925', '366', '1', 'Fall', 2005, 'A-'); + insert into takes values('80113', '875', '1', 'Spring', 2005, 'C+'); + insert into takes values('43616', '642', '1', 'Fall', 2004, 'B+'); + insert into takes values('29863', '960', '2', 'Fall', 2006, 'A '); + insert into takes values('41818', '443', '1', 'Spring', 2010, 'C-'); + insert into takes values('15517', '974', '1', 'Fall', 2003, 'A-'); + insert into takes values('22086', '169', '2', 'Fall', 2002, 'A+'); + insert into takes values('75252', '400', '2', 'Fall', 2003, 'B-'); + insert into takes values('96227', '694', '1', 'Fall', 2002, 'B-'); + insert into takes values('47824', '843', '1', 'Fall', 2010, 'B-'); + insert into takes values('44551', '694', '1', 'Fall', 2002, 'A-'); + insert into takes values('43348', '401', '1', 'Fall', 2003, 'B '); + insert into takes values('19203', '408', '1', 'Spring', 2007, 'A+'); + insert into takes values('64155', '362', '2', 'Fall', 2006, 'C '); + insert into takes values('90220', '793', '1', 'Spring', 2002, 'A-'); + insert into takes values('11682', '960', '2', 'Fall', 2006, 'C+'); + insert into takes values('93354', '867', '2', 'Fall', 2010, 'A+'); + insert into takes values('53172', '735', '2', 'Spring', 2010, 'A+'); + insert into takes values('2967', '599', '1', 'Spring', 2003, 'B '); + insert into takes values('60267', '443', '1', 'Spring', 2010, 'A+'); + insert into takes values('26494', '349', '1', 'Spring', 2008, 'B-'); + insert into takes values('68070', '991', '1', 'Spring', 2008, 'C-'); + insert into takes values('75513', '200', '1', 'Spring', 2007, 'B+'); + insert into takes values('12941', '239', '1', 'Fall', 2006, 'A-'); + insert into takes values('95697', '158', '2', 'Spring', 2008, 'C-'); + insert into takes values('544', '793', '1', 'Spring', 2002, 'C-'); + insert into takes values('75794', '443', '1', 'Spring', 2010, 'A-'); + insert into takes values('51723', '345', '1', 'Spring', 2008, 'B-'); + insert into takes values('54296', '626', '1', 'Fall', 2006, 'A-'); + insert into takes values('92385', '443', '2', 'Spring', 2002, 'C-'); + insert into takes values('24387', '158', '1', 'Fall', 2008, 'A+'); + insert into takes values('26730', '362', '3', 'Spring', 2008, 'A+'); + insert into takes values('37219', '603', '1', 'Fall', 2003, 'C+'); + insert into takes values('95850', '631', '1', 'Spring', 2007, 'B-'); + insert into takes values('3163', '270', '1', 'Spring', 2010, 'C-'); + insert into takes values('56299', '496', '1', 'Fall', 2001, 'C+'); + insert into takes values('26881', '791', '1', 'Spring', 2006, 'A+'); + insert into takes values('99271', '867', '2', 'Fall', 2010, 'A+'); + insert into takes values('25068', '169', '2', 'Fall', 2002, 'C '); + insert into takes values('99780', '867', '2', 'Fall', 2010, 'A-'); + insert into takes values('86806', '400', '2', 'Fall', 2003, 'B '); + insert into takes values('78892', '793', '1', 'Spring', 2002, 'B-'); + insert into takes values('24865', '313', '1', 'Fall', 2010, 'A+'); + insert into takes values('87246', '559', '1', 'Fall', 2002, 'B '); + insert into takes values('96085', '795', '1', 'Spring', 2004, 'B '); + insert into takes values('65205', '468', '1', 'Fall', 2005, 'C+'); + insert into takes values('64593', '270', '1', 'Spring', 2010, 'B-'); + insert into takes values('20244', '496', '1', 'Fall', 2001, 'A '); + insert into takes values('14432', '735', '1', 'Spring', 2003, 'B '); + insert into takes values('16543', '864', '1', 'Spring', 2006, 'B-'); + insert into takes values('19362', '864', '1', 'Spring', 2006, 'A-'); + insert into takes values('49792', '461', '1', 'Fall', 2002, 'C-'); + insert into takes values('29399', '338', '1', 'Spring', 2007, 'B+'); + insert into takes values('98870', '493', '1', 'Spring', 2010, 'B '); + insert into takes values('73606', '631', '1', 'Spring', 2007, 'B+'); + insert into takes values('43658', '760', '1', 'Spring', 2004, 'B+'); + insert into takes values('76057', '696', '1', 'Spring', 2002, 'A '); + insert into takes values('73602', '338', '1', 'Spring', 2007, 'B+'); + insert into takes values('75794', '696', '1', 'Spring', 2002, 'A-'); + insert into takes values('64140', '313', '1', 'Fall', 2010, 'B-'); + insert into takes values('71628', '802', '1', 'Spring', 2003, 'C '); + insert into takes values('48462', '200', '2', 'Fall', 2002, 'C '); + insert into takes values('74974', '864', '1', 'Spring', 2006, 'B-'); + insert into takes values('97400', '626', '1', 'Fall', 2006, 'B+'); + insert into takes values('66356', '735', '2', 'Spring', 2010, 'A-'); + insert into takes values('86661', '867', '2', 'Fall', 2010, 'A '); + insert into takes values('93125', '545', '1', 'Fall', 2001, 'C+'); + insert into takes values('28361', '304', '1', 'Fall', 2009, 'C-'); + insert into takes values('32119', '105', '2', 'Fall', 2002, 'C '); + insert into takes values('13217', '960', '2', 'Fall', 2006, 'C+'); + insert into takes values('62705', '496', '1', 'Fall', 2001, 'C '); + insert into takes values('89104', '893', '1', 'Fall', 2007, 'C '); + insert into takes values('29645', '864', '1', 'Spring', 2006, 'A-'); + insert into takes values('49450', '795', '1', 'Spring', 2004, 'B '); + insert into takes values('69850', '338', '1', 'Spring', 2007, 'B '); + insert into takes values('48053', '864', '1', 'Spring', 2006, 'A-'); + insert into takes values('58326', '376', '1', 'Fall', 2006, 'A+'); + insert into takes values('52471', '274', '1', 'Fall', 2002, 'A-'); + insert into takes values('20180', '345', '1', 'Spring', 2008, 'C '); + insert into takes values('27002', '200', '2', 'Fall', 2002, 'C '); + insert into takes values('48423', '875', '1', 'Spring', 2005, 'C '); + insert into takes values('11262', '461', '1', 'Fall', 2002, 'C '); + insert into takes values('50944', '679', '1', 'Spring', 2010, 'B-'); + insert into takes values('38668', '349', '1', 'Spring', 2008, 'A+'); + insert into takes values('51997', '864', '1', 'Spring', 2006, 'C '); + insert into takes values('44881', '408', '2', 'Spring', 2003, 'C+'); + insert into takes values('65979', '486', '1', 'Fall', 2009, 'B '); + insert into takes values('70828', '345', '1', 'Spring', 2008, 'A+'); + insert into takes values('98984', '426', '1', 'Spring', 2006, 'C+'); + insert into takes values('86127', '843', '1', 'Fall', 2010, 'C-'); + insert into takes values('29260', '366', '1', 'Fall', 2005, 'A-'); + insert into takes values('38548', '319', '1', 'Spring', 2003, 'A '); + insert into takes values('82301', '527', '1', 'Fall', 2004, 'C+'); + insert into takes values('63645', '604', '1', 'Spring', 2009, 'A '); + insert into takes values('65676', '802', '1', 'Spring', 2003, 'A '); + insert into takes values('33338', '421', '1', 'Fall', 2004, 'C '); + insert into takes values('71287', '545', '1', 'Fall', 2001, 'C-'); + insert into takes values('3493', '476', '1', 'Fall', 2010, 'B-'); + insert into takes values('16631', '169', '2', 'Fall', 2002, 'A+'); + insert into takes values('71768', '319', '1', 'Spring', 2003, 'A+'); + insert into takes values('34055', '421', '1', 'Fall', 2004, 'C '); + insert into takes values('35357', '748', '1', 'Fall', 2003, 'A+'); + insert into takes values('82974', '843', '1', 'Fall', 2010, 'C '); + insert into takes values('21126', '808', '1', 'Fall', 2003, 'A+'); + insert into takes values('13753', '791', '1', 'Spring', 2006, 'C+'); + insert into takes values('56124', '949', '1', 'Fall', 2007, 'A '); + insert into takes values('26147', '496', '1', 'Fall', 2001, 'A '); + insert into takes values('49759', '795', '1', 'Spring', 2004, 'A+'); + insert into takes values('69632', '802', '1', 'Spring', 2003, 'A+'); + insert into takes values('80113', '200', '1', 'Spring', 2007, 'B+'); + insert into takes values('57666', '875', '1', 'Spring', 2005, 'C-'); + insert into takes values('46451', '864', '1', 'Spring', 2006, 'C+'); + insert into takes values('26695', '169', '2', 'Fall', 2002, 'B+'); + insert into takes values('16347', '270', '1', 'Spring', 2010, 'A '); + insert into takes values('57160', '237', '1', 'Spring', 2008, 'B-'); + insert into takes values('82687', '443', '2', 'Spring', 2002, 'B '); + insert into takes values('72768', '793', '1', 'Spring', 2002, 'C+'); + insert into takes values('38548', '486', '1', 'Fall', 2009, 'A+'); + insert into takes values('76291', '169', '2', 'Fall', 2002, 'B+'); + insert into takes values('87784', '461', '1', 'Fall', 2002, 'B+'); + insert into takes values('67018', '852', '1', 'Spring', 2008, 'C-'); + insert into takes values('99694', '852', '1', 'Spring', 2008, 'A '); + insert into takes values('13028', '599', '1', 'Spring', 2003, 'B-'); + insert into takes values('40044', '875', '1', 'Spring', 2005, 'B+'); + insert into takes values('9183', '158', '2', 'Spring', 2008, 'A '); + insert into takes values('31690', '747', '1', 'Spring', 2004, 'B '); + insert into takes values('66269', '496', '1', 'Fall', 2001, 'B+'); + insert into takes values('914', '345', '1', 'Spring', 2008, 'B+'); + insert into takes values('78792', '867', '2', 'Fall', 2010, 'C-'); + insert into takes values('23934', '169', '2', 'Fall', 2002, 'C '); + insert into takes values('66813', '760', '1', 'Spring', 2004, 'A+'); + insert into takes values('36019', '702', '1', 'Spring', 2001, 'A '); + insert into takes values('72006', '200', '1', 'Spring', 2007, 'B-'); + insert into takes values('75299', '702', '1', 'Spring', 2001, 'A+'); + insert into takes values('71878', '642', '1', 'Fall', 2004, 'B+'); + insert into takes values('12069', '105', '1', 'Fall', 2009, 'A+'); + insert into takes values('75273', '735', '2', 'Spring', 2010, 'B+'); + insert into takes values('91343', '274', '1', 'Fall', 2002, 'C+'); + insert into takes values('79210', '735', '1', 'Spring', 2003, 'A-'); + insert into takes values('58413', '349', '1', 'Spring', 2008, 'A '); + insert into takes values('83039', '443', '1', 'Spring', 2010, 'C '); + insert into takes values('19824', '408', '2', 'Spring', 2003, 'C-'); + insert into takes values('85505', '631', '1', 'Spring', 2007, 'A '); + insert into takes values('81207', '793', '1', 'Spring', 2002, 'C '); + insert into takes values('14829', '603', '1', 'Fall', 2003, 'B '); + insert into takes values('17339', '258', '1', 'Fall', 2007, 'B+'); + insert into takes values('30334', '748', '1', 'Fall', 2003, 'C+'); + insert into takes values('89312', '527', '1', 'Fall', 2004, 'C-'); + insert into takes values('39394', '443', '2', 'Spring', 2002, 'B-'); + insert into takes values('71768', '626', '1', 'Fall', 2006, 'A '); + insert into takes values('15024', '696', '1', 'Spring', 2002, 'A-'); + insert into takes values('73387', '345', '1', 'Spring', 2008, 'C-'); + insert into takes values('67407', '696', '1', 'Spring', 2002, 'C-'); + insert into takes values('667', '545', '1', 'Fall', 2001, 'C+'); + insert into takes values('81396', '376', '1', 'Fall', 2006, 'B+'); + insert into takes values('19342', '461', '1', 'Fall', 2002, 'A '); + insert into takes values('91132', '408', '2', 'Spring', 2003, 'B-'); + insert into takes values('80113', '137', '1', 'Spring', 2002, 'A '); + insert into takes values('86934', '696', '1', 'Spring', 2002, 'B+'); + insert into takes values('20540', '237', '1', 'Spring', 2008, 'B '); + insert into takes values('10033', '486', '1', 'Fall', 2009, 'C '); + insert into takes values('90234', '959', '1', 'Fall', 2006, 'C '); + insert into takes values('7123', '795', '1', 'Spring', 2004, 'B+'); + insert into takes values('75938', '704', '1', 'Spring', 2008, 'C-'); + insert into takes values('43130', '581', '1', 'Spring', 2005, 'C-'); + insert into takes values('92864', '408', '1', 'Spring', 2007, 'A '); + insert into takes values('81028', '362', '2', 'Fall', 2006, 'B+'); + insert into takes values('62784', '604', '1', 'Spring', 2009, 'A-'); + insert into takes values('71389', '972', '1', 'Spring', 2009, 'A-'); + insert into takes values('39876', '237', '2', 'Fall', 2009, 'B-'); + insert into takes values('27430', '443', '2', 'Spring', 2002, 'C '); + insert into takes values('1285', '748', '1', 'Fall', 2003, 'B-'); + insert into takes values('41938', '313', '1', 'Fall', 2010, 'C '); + insert into takes values('96615', '362', '2', 'Fall', 2006, 'B '); + insert into takes values('18775', '702', '1', 'Spring', 2001, 'A '); + insert into takes values('94697', '258', '1', 'Fall', 2007, 'C-'); + insert into takes values('62754', '991', '1', 'Spring', 2008, 'B-'); + insert into takes values('282', '105', '1', 'Fall', 2009, 'C+'); + insert into takes values('81396', '304', '1', 'Fall', 2009, 'B+'); + insert into takes values('73602', '334', '1', 'Fall', 2009, 'B '); + insert into takes values('51723', '702', '1', 'Spring', 2001, 'B '); + insert into takes values('30341', '545', '1', 'Fall', 2001, 'B+'); + insert into takes values('66763', '362', '3', 'Spring', 2008, 'C '); + insert into takes values('7861', '362', '2', 'Fall', 2006, 'C+'); + insert into takes values('65329', '461', '1', 'Fall', 2002, 'B '); + insert into takes values('39612', '852', '1', 'Spring', 2008, 'C '); + insert into takes values('17207', '612', '1', 'Fall', 2007, 'C '); + insert into takes values('31486', '760', '1', 'Spring', 2004, 'B-'); + insert into takes values('41832', '867', '2', 'Fall', 2010, 'B+'); + insert into takes values('31337', '663', '1', 'Spring', 2005, 'A-'); + insert into takes values('34569', '663', '1', 'Spring', 2005, 'A+'); + insert into takes values('6400', '237', '1', 'Spring', 2008, 'B '); + insert into takes values('72055', '105', '1', 'Fall', 2009, 'A-'); + insert into takes values('2201', '679', '1', 'Spring', 2010, 'A-'); + insert into takes values('6710', '642', '1', 'Fall', 2004, 'A-'); + insert into takes values('84410', '867', '1', 'Fall', 2006, 'A+'); + insert into takes values('9953', '581', '1', 'Spring', 2005, 'B+'); + insert into takes values('24796', '949', '1', 'Fall', 2007, 'B+'); + insert into takes values('56089', '962', '1', 'Spring', 2008, 'B-'); + insert into takes values('52523', '400', '2', 'Fall', 2003, 'A '); + insert into takes values('87280', '443', '1', 'Spring', 2010, 'A-'); + insert into takes values('27366', '169', '2', 'Fall', 2002, 'C '); + insert into takes values('71529', '960', '1', 'Fall', 2009, 'C-'); + insert into takes values('84808', '493', '1', 'Spring', 2010, 'A-'); + insert into takes values('39925', '631', '1', 'Spring', 2007, 'A '); + insert into takes values('41211', '192', '1', 'Fall', 2002, 'B+'); + insert into takes values('65241', '974', '1', 'Fall', 2003, 'C+'); + insert into takes values('45300', '626', '1', 'Fall', 2006, 'B-'); + insert into takes values('61065', '663', '1', 'Spring', 2005, 'C+'); + insert into takes values('4004', '270', '1', 'Spring', 2010, 'A+'); + insert into takes values('25942', '704', '1', 'Spring', 2008, 'B-'); + insert into takes values('44706', '791', '1', 'Spring', 2006, 'B+'); + insert into takes values('19862', '626', '1', 'Fall', 2006, 'A+'); + insert into takes values('1285', '960', '2', 'Fall', 2006, 'B+'); + insert into takes values('25785', '599', '1', 'Spring', 2003, 'B '); + insert into takes values('97590', '237', '2', 'Fall', 2009, 'C-'); + insert into takes values('63090', '991', '1', 'Spring', 2008, 'A '); + insert into takes values('37101', '489', '1', 'Fall', 2007, 'A+'); + insert into takes values('27950', '237', '1', 'Spring', 2008, 'C '); + insert into takes values('31761', '679', '1', 'Spring', 2010, 'A '); + insert into takes values('66259', '893', '1', 'Fall', 2007, 'A+'); + insert into takes values('91978', '493', '1', 'Spring', 2010, 'C-'); + insert into takes values('49813', '461', '1', 'Fall', 2002, 'B+'); + insert into takes values('40276', '476', '1', 'Fall', 2010, 'C+'); + insert into takes values('87784', '493', '1', 'Spring', 2010, 'C '); + insert into takes values('95089', '629', '1', 'Spring', 2003, 'C-'); + insert into takes values('86344', '867', '1', 'Fall', 2006, 'C+'); + insert into takes values('57156', '493', '1', 'Spring', 2010, 'C-'); + insert into takes values('44998', '400', '1', 'Spring', 2007, 'C-'); + insert into takes values('90004', '415', '1', 'Fall', 2010, 'C+'); + insert into takes values('4345', '445', '1', 'Spring', 2001, 'A '); + insert into takes values('11262', '415', '1', 'Fall', 2010, 'C '); + insert into takes values('94846', '496', '1', 'Fall', 2001, 'A-'); + insert into takes values('59172', '974', '1', 'Fall', 2003, 'B+'); + insert into takes values('11419', '169', '1', 'Spring', 2007, 'A+'); + insert into takes values('50966', '843', '1', 'Fall', 2010, 'A '); + insert into takes values('20244', '561', '1', 'Fall', 2006, 'A-'); + insert into takes values('51862', '158', '1', 'Fall', 2008, 'C '); + insert into takes values('84865', '349', '1', 'Spring', 2008, 'C+'); + insert into takes values('17600', '242', '1', 'Fall', 2009, 'C-'); + insert into takes values('36791', '362', '1', 'Fall', 2005, 'A+'); + insert into takes values('87280', '338', '1', 'Spring', 2007, 'C '); + insert into takes values('13217', '527', '1', 'Fall', 2004, 'B+'); + insert into takes values('43432', '274', '1', 'Fall', 2002, 'C '); + insert into takes values('15698', '760', '1', 'Spring', 2004, 'A+'); + insert into takes values('92703', '603', '1', 'Fall', 2003, 'C+'); + insert into takes values('32119', '991', '1', 'Spring', 2008, 'C '); + insert into takes values('86833', '545', '1', 'Fall', 2001, 'B '); + insert into takes values('22417', '192', '1', 'Fall', 2002, 'B+'); + insert into takes values('57334', '974', '1', 'Fall', 2003, 'A '); + insert into takes values('11966', '962', '1', 'Spring', 2008, 'C-'); + insert into takes values('8252', '304', '1', 'Fall', 2009, 'C+'); + insert into takes values('18775', '169', '2', 'Fall', 2002, 'B+'); + insert into takes values('90220', '959', '1', 'Fall', 2006, 'C-'); + insert into takes values('2201', '852', '1', 'Spring', 2008, 'B+'); + insert into takes values('92839', '527', '1', 'Fall', 2004, 'C+'); + insert into takes values('45720', '802', '1', 'Spring', 2003, 'A-'); + insert into takes values('45200', '274', '1', 'Fall', 2002, 'C '); + insert into takes values('99463', '679', '1', 'Spring', 2010, 'B '); + insert into takes values('8251', '408', '2', 'Spring', 2003, 'A-'); + insert into takes values('46260', '735', '1', 'Spring', 2003, 'B+'); + insert into takes values('72669', '461', '1', 'Fall', 2002, 'C-'); + insert into takes values('58606', '702', '1', 'Spring', 2001, 'C+'); + insert into takes values('76895', '591', '1', 'Spring', 2005, 'C '); + insert into takes values('20002', '200', '1', 'Spring', 2007, 'B '); + insert into takes values('65038', '679', '1', 'Spring', 2010, 'B-'); + insert into takes values('5393', '457', '1', 'Spring', 2001, 'A '); + insert into takes values('84654', '626', '1', 'Fall', 2006, 'B-'); + insert into takes values('21692', '408', '2', 'Spring', 2003, 'C-'); + insert into takes values('31341', '626', '1', 'Fall', 2006, 'A '); + insert into takes values('9605', '545', '1', 'Fall', 2001, 'C-'); + insert into takes values('21126', '927', '1', 'Fall', 2002, 'C+'); + insert into takes values('69132', '795', '1', 'Spring', 2004, 'A '); + insert into takes values('62749', '158', '1', 'Fall', 2008, 'A+'); + insert into takes values('89759', '867', '2', 'Fall', 2010, 'B+'); + insert into takes values('22467', '747', '1', 'Spring', 2004, 'B-'); + insert into takes values('85809', '242', '1', 'Fall', 2009, 'A-'); + insert into takes values('16593', '408', '1', 'Spring', 2007, 'C-'); + insert into takes values('32217', '457', '1', 'Spring', 2001, 'A+'); + insert into takes values('58172', '599', '1', 'Spring', 2003, 'C '); + insert into takes values('22179', '962', '1', 'Spring', 2008, 'C-'); + insert into takes values('32245', '493', '1', 'Spring', 2010, 'B '); + insert into takes values('89551', '366', '1', 'Fall', 2005, 'C-'); + insert into takes values('51416', '362', '2', 'Fall', 2006, 'B+'); + insert into takes values('75513', '612', '1', 'Fall', 2007, 'C+'); + insert into takes values('28019', '696', '1', 'Spring', 2002, 'A+'); + insert into takes values('59539', '352', '1', 'Spring', 2006, 'A '); + insert into takes values('75560', '400', '1', 'Spring', 2007, 'C '); + insert into takes values('21552', '962', '1', 'Spring', 2008, 'C+'); + insert into takes values('39881', '408', '2', 'Spring', 2003, 'C '); + insert into takes values('73394', '445', '1', 'Spring', 2001, 'B+'); + insert into takes values('48471', '791', '1', 'Spring', 2006, 'C-'); + insert into takes values('46066', '875', '1', 'Spring', 2005, 'B+'); + insert into takes values('95225', '468', '2', 'Fall', 2007, 'A-'); + insert into takes values('19603', '791', '1', 'Spring', 2006, 'B-'); + insert into takes values('14668', '476', '1', 'Fall', 2010, 'C '); + insert into takes values('12979', '612', '1', 'Fall', 2007, 'B+'); + insert into takes values('71426', '561', '1', 'Fall', 2006, 'B+'); + insert into takes values('42843', '852', '1', 'Spring', 2008, 'A+'); + insert into takes values('64121', '496', '1', 'Fall', 2001, 'B+'); + insert into takes values('95175', '237', '2', 'Fall', 2009, 'B+'); + insert into takes values('32119', '338', '1', 'Spring', 2007, 'B '); + insert into takes values('28409', '735', '2', 'Spring', 2010, 'A '); + insert into takes values('51768', '893', '1', 'Fall', 2007, 'B+'); + insert into takes values('44816', '482', '1', 'Fall', 2005, 'C+'); + insert into takes values('37521', '893', '1', 'Fall', 2007, 'B-'); + insert into takes values('29140', '663', '1', 'Spring', 2005, 'C+'); + insert into takes values('94620', '443', '1', 'Spring', 2010, 'C-'); + insert into takes values('64164', '679', '1', 'Spring', 2010, 'C-'); + insert into takes values('38691', '482', '1', 'Fall', 2005, 'A+'); + insert into takes values('82301', '237', '2', 'Fall', 2009, 'B+'); + insert into takes values('107', '457', '1', 'Spring', 2001, 'A '); + insert into takes values('12326', '852', '1', 'Spring', 2008, 'C+'); + insert into takes values('19220', '237', '2', 'Fall', 2009, 'A-'); + insert into takes values('57334', '105', '2', 'Fall', 2002, 'B '); + insert into takes values('1826', '461', '1', 'Fall', 2002, 'C+'); + insert into takes values('33651', '748', '1', 'Fall', 2003, 'A-'); + insert into takes values('88417', '400', '2', 'Fall', 2003, 'B-'); + insert into takes values('27002', '959', '1', 'Fall', 2006, 'A '); + insert into takes values('16405', '991', '1', 'Spring', 2008, 'B '); + insert into takes values('7498', '581', '1', 'Spring', 2005, 'A+'); + insert into takes values('66813', '960', '2', 'Fall', 2006, 'A '); + insert into takes values('80113', '445', '1', 'Spring', 2001, 'B '); + insert into takes values('90041', '960', '2', 'Fall', 2006, 'B '); + insert into takes values('52471', '626', '1', 'Fall', 2006, 'B '); + insert into takes values('14621', '962', '1', 'Spring', 2008, 'A '); + insert into takes values('95205', '867', '1', 'Fall', 2006, 'C-'); + insert into takes values('95366', '793', '1', 'Spring', 2002, 'A-'); + insert into takes values('3693', '105', '1', 'Fall', 2009, 'A+'); + insert into takes values('80610', '362', '1', 'Fall', 2005, 'A '); + insert into takes values('97435', '137', '1', 'Spring', 2002, 'C-'); + insert into takes values('75560', '735', '1', 'Spring', 2003, 'A-'); + insert into takes values('25380', '468', '1', 'Fall', 2005, 'C+'); + insert into takes values('52120', '105', '2', 'Fall', 2002, 'A+'); + insert into takes values('67021', '408', '2', 'Spring', 2003, 'B-'); + insert into takes values('23311', '545', '1', 'Fall', 2001, 'A+'); + insert into takes values('67542', '362', '1', 'Fall', 2005, 'C '); + insert into takes values('52656', '867', '2', 'Fall', 2010, 'B+'); + insert into takes values('62487', '679', '1', 'Spring', 2010, 'B+'); + insert into takes values('46450', '366', '1', 'Fall', 2005, 'A-'); + insert into takes values('43989', '704', '1', 'Spring', 2008, 'A '); + insert into takes values('7514', '486', '1', 'Fall', 2009, 'A '); + insert into takes values('86001', '319', '1', 'Spring', 2003, 'C '); + insert into takes values('40044', '802', '1', 'Spring', 2003, 'B-'); + insert into takes values('89759', '338', '2', 'Spring', 2006, 'C-'); + insert into takes values('11095', '349', '1', 'Spring', 2008, 'C+'); + insert into takes values('44706', '581', '1', 'Spring', 2005, 'A '); + insert into takes values('62832', '408', '2', 'Spring', 2003, 'B-'); + insert into takes values('7123', '949', '1', 'Fall', 2007, 'A+'); + insert into takes values('20489', '704', '1', 'Spring', 2008, 'C+'); + insert into takes values('13023', '692', '1', 'Spring', 2010, 'B-'); + insert into takes values('31035', '362', '2', 'Fall', 2006, 'B-'); + insert into takes values('22254', '349', '1', 'Spring', 2008, 'B-'); + insert into takes values('67542', '793', '1', 'Spring', 2002, 'C '); + insert into takes values('31086', '629', '1', 'Spring', 2003, 'C+'); + insert into takes values('64164', '642', '1', 'Fall', 2004, 'A '); + insert into takes values('38691', '974', '1', 'Fall', 2003, 'C '); + insert into takes values('71904', '791', '1', 'Spring', 2006, 'B-'); + insert into takes values('65753', '692', '1', 'Spring', 2010, 'C-'); + insert into takes values('44998', '893', '1', 'Fall', 2007, 'B-'); + insert into takes values('88169', '362', '1', 'Fall', 2005, 'A-'); + insert into takes values('17424', '486', '1', 'Fall', 2009, 'C '); + insert into takes values('73213', '852', '1', 'Spring', 2008, 'B+'); + insert into takes values('66054', '352', '1', 'Spring', 2006, 'C '); + insert into takes values('57511', '493', '1', 'Spring', 2010, 'B+'); + insert into takes values('31442', '401', '1', 'Fall', 2003, 'B-'); + insert into takes values('57962', '366', '1', 'Fall', 2005, 'C '); + insert into takes values('49873', '408', '1', 'Spring', 2007, 'A+'); + insert into takes values('44258', '338', '1', 'Spring', 2007, 'C '); + insert into takes values('56080', '496', '1', 'Fall', 2001, 'B '); + insert into takes values('32483', '949', '1', 'Fall', 2007, 'C-'); + insert into takes values('98619', '400', '1', 'Spring', 2007, 'A '); + insert into takes values('54672', '445', '1', 'Spring', 2001, 'A+'); + insert into takes values('20814', '893', '1', 'Fall', 2007, 'A+'); + insert into takes values('23500', '401', '1', 'Fall', 2003, 'B+'); + insert into takes values('60762', '242', '1', 'Fall', 2009, 'B+'); + insert into takes values('47630', '702', '1', 'Spring', 2001, 'C-'); + insert into takes values('21556', '561', '1', 'Fall', 2006, 'B+'); + insert into takes values('32345', '735', '2', 'Spring', 2010, 'B '); + insert into takes values('79210', '457', '1', 'Spring', 2001, 'B+'); + insert into takes values('28299', '319', '1', 'Spring', 2003, 'A '); + insert into takes values('68999', '747', '1', 'Spring', 2004, 'A+'); + insert into takes values('85505', '679', '1', 'Spring', 2010, 'A '); + insert into takes values('28952', '626', '1', 'Fall', 2006, 'C-'); + insert into takes values('44706', '972', '1', 'Spring', 2009, 'C '); + insert into takes values('63289', '663', '1', 'Spring', 2005, 'B '); + insert into takes values('74672', '313', '1', 'Fall', 2010, 'C+'); + insert into takes values('61166', '461', '1', 'Fall', 2002, 'B '); + insert into takes values('75928', '158', '1', 'Fall', 2008, 'A '); + insert into takes values('9495', '242', '1', 'Fall', 2009, 'A-'); + insert into takes values('48640', '571', '1', 'Spring', 2004, 'B '); + insert into takes values('5399', '604', '1', 'Spring', 2009, 'B-'); + insert into takes values('60748', '338', '2', 'Spring', 2006, 'A-'); + insert into takes values('46035', '972', '1', 'Spring', 2009, 'A '); + insert into takes values('86806', '571', '1', 'Spring', 2004, 'B-'); + insert into takes values('13290', '304', '1', 'Fall', 2009, 'A+'); + insert into takes values('91197', '362', '1', 'Fall', 2005, 'A '); + insert into takes values('74840', '443', '1', 'Spring', 2010, 'A+'); + insert into takes values('48469', '362', '3', 'Spring', 2008, 'C '); + insert into takes values('88884', '192', '1', 'Fall', 2002, 'B+'); + insert into takes values('67583', '352', '1', 'Spring', 2006, 'B '); + insert into takes values('32886', '426', '1', 'Spring', 2006, 'B '); + insert into takes values('5414', '704', '1', 'Spring', 2008, 'B-'); + insert into takes values('93125', '319', '1', 'Spring', 2003, 'B '); + insert into takes values('37809', '793', '1', 'Spring', 2002, 'B+'); + insert into takes values('38696', '169', '2', 'Fall', 2002, 'C+'); + insert into takes values('73908', '313', '1', 'Fall', 2010, 'C '); + insert into takes values('7732', '489', '1', 'Fall', 2007, 'C+'); + insert into takes values('82970', '239', '1', 'Fall', 2006, 'A+'); + insert into takes values('41345', '105', '1', 'Fall', 2009, 'A '); + insert into takes values('74672', '561', '1', 'Fall', 2006, 'C-'); + insert into takes values('46981', '626', '1', 'Fall', 2006, 'C '); + insert into takes values('72657', '561', '1', 'Fall', 2006, 'B+'); + insert into takes values('50039', '808', '1', 'Fall', 2003, 'B-'); + insert into takes values('40303', '482', '1', 'Fall', 2005, 'A-'); + insert into takes values('41683', '893', '1', 'Fall', 2007, 'C+'); + insert into takes values('34195', '603', '1', 'Fall', 2003, 'B+'); + insert into takes values('88793', '362', '1', 'Fall', 2005, 'C-'); + insert into takes values('79502', '843', '1', 'Fall', 2010, 'A '); + insert into takes values('76759', '352', '1', 'Spring', 2006, 'A '); + insert into takes values('931', '867', '1', 'Fall', 2006, 'A '); + insert into takes values('31302', '974', '1', 'Fall', 2003, 'C '); + insert into takes values('96085', '313', '1', 'Fall', 2010, 'C-'); + insert into takes values('80976', '791', '1', 'Spring', 2006, 'C+'); + insert into takes values('94257', '400', '2', 'Fall', 2003, 'A+'); + insert into takes values('56849', '893', '1', 'Fall', 2007, 'C-'); + insert into takes values('50467', '445', '1', 'Spring', 2001, 'A '); + insert into takes values('75116', '545', '1', 'Fall', 2001, 'A-'); + insert into takes values('95029', '626', '1', 'Fall', 2006, 'C '); + insert into takes values('40276', '169', '1', 'Spring', 2007, 'B+'); + insert into takes values('17128', '545', '1', 'Fall', 2001, 'B+'); + insert into takes values('12362', '352', '1', 'Spring', 2006, 'B '); + insert into takes values('64039', '793', '1', 'Spring', 2002, 'B+'); + insert into takes values('67660', '400', '2', 'Fall', 2003, 'C-'); + insert into takes values('38371', '960', '2', 'Fall', 2006, 'C-'); + insert into takes values('39619', '192', '1', 'Fall', 2002, 'B+'); + insert into takes values('86552', '791', '1', 'Spring', 2006, 'B '); + insert into takes values('22057', '527', '1', 'Fall', 2004, 'A+'); + insert into takes values('75513', '401', '1', 'Fall', 2003, 'C '); + insert into takes values('85887', '237', '1', 'Spring', 2008, 'A-'); + insert into takes values('37454', '237', '1', 'Spring', 2008, 'C '); + insert into takes values('31554', '802', '1', 'Spring', 2003, 'B '); + insert into takes values('53165', '443', '2', 'Spring', 2002, 'B '); + insert into takes values('92464', '345', '1', 'Spring', 2008, 'B '); + insert into takes values('22345', '604', '1', 'Spring', 2009, 'B-'); + insert into takes values('29192', '493', '1', 'Spring', 2010, 'A+'); + insert into takes values('51538', '457', '1', 'Spring', 2001, 'C '); + insert into takes values('50365', '445', '1', 'Spring', 2001, 'B+'); + insert into takes values('4508', '476', '1', 'Fall', 2010, 'A-'); + insert into takes values('94836', '137', '1', 'Spring', 2002, 'A+'); + insert into takes values('86969', '242', '1', 'Fall', 2009, 'A '); + insert into takes values('41491', '362', '2', 'Fall', 2006, 'B+'); + insert into takes values('86969', '319', '1', 'Spring', 2003, 'A '); + insert into takes values('72055', '338', '2', 'Spring', 2006, 'B '); + insert into takes values('67310', '137', '1', 'Spring', 2002, 'C+'); + insert into takes values('88169', '843', '1', 'Fall', 2010, 'B+'); + insert into takes values('37869', '559', '1', 'Fall', 2002, 'A '); + insert into takes values('58170', '274', '1', 'Fall', 2002, 'A '); + insert into takes values('58326', '629', '1', 'Spring', 2003, 'A-'); + insert into takes values('77244', '482', '1', 'Fall', 2005, 'C-'); + insert into takes values('65979', '274', '1', 'Fall', 2002, 'B+'); + insert into takes values('34386', '962', '1', 'Spring', 2008, 'B '); + insert into takes values('93508', '443', '2', 'Spring', 2002, 'B+'); + insert into takes values('32881', '362', '2', 'Fall', 2006, 'C '); + insert into takes values('6209', '949', '1', 'Fall', 2007, 'A-'); + insert into takes values('27950', '791', '1', 'Spring', 2006, 'A-'); + insert into takes values('33460', '362', '3', 'Spring', 2008, 'A-'); + insert into takes values('40481', '239', '1', 'Fall', 2006, 'B '); + insert into takes values('25468', '843', '1', 'Fall', 2010, 'A-'); + insert into takes values('93061', '599', '1', 'Spring', 2003, 'C+'); + insert into takes values('31035', '338', '2', 'Spring', 2006, 'A '); + insert into takes values('88525', '795', '1', 'Spring', 2004, 'B-'); + insert into takes values('99348', '631', '1', 'Spring', 2007, 'C+'); + insert into takes values('75560', '366', '1', 'Fall', 2005, 'A-'); + insert into takes values('39580', '270', '1', 'Spring', 2010, 'A '); + insert into takes values('60748', '274', '1', 'Fall', 2002, 'A '); + insert into takes values('8986', '489', '1', 'Fall', 2007, 'A '); + insert into takes values('34542', '445', '1', 'Spring', 2001, 'A+'); + insert into takes values('71543', '476', '1', 'Fall', 2010, 'A-'); + insert into takes values('20084', '960', '1', 'Fall', 2009, 'A+'); + insert into takes values('8483', '349', '1', 'Spring', 2008, 'A '); + insert into takes values('35721', '702', '1', 'Spring', 2001, 'C+'); + insert into takes values('4860', '239', '1', 'Fall', 2006, 'C-'); + insert into takes values('68280', '362', '2', 'Fall', 2006, 'B '); + insert into takes values('95027', '468', '2', 'Fall', 2007, 'B-'); + insert into takes values('54672', '962', '1', 'Spring', 2008, 'B '); + insert into takes values('85849', '808', '1', 'Fall', 2003, 'A '); + insert into takes values('19293', '867', '2', 'Fall', 2010, 'A+'); + insert into takes values('22086', '972', '1', 'Spring', 2009, 'B '); + insert into takes values('50013', '237', '1', 'Spring', 2008, 'C+'); + insert into takes values('88801', '642', '1', 'Fall', 2004, 'C-'); + insert into takes values('80254', '808', '1', 'Fall', 2003, 'A+'); + insert into takes values('4940', '679', '1', 'Spring', 2010, 'B '); + insert into takes values('86981', '974', '1', 'Fall', 2003, 'C '); + insert into takes values('82697', '875', '1', 'Spring', 2005, 'B-'); + insert into takes values('37581', '476', '1', 'Fall', 2010, 'C-'); + insert into takes values('70061', '319', '1', 'Spring', 2003, 'A '); + insert into takes values('7020', '408', '1', 'Spring', 2007, 'A-'); + insert into takes values('11055', '105', '2', 'Fall', 2002, 'B+'); + insert into takes values('61332', '443', '2', 'Spring', 2002, 'B-'); + insert into takes values('28299', '242', '1', 'Fall', 2009, 'B-'); + insert into takes values('18821', '426', '1', 'Spring', 2006, 'B-'); + insert into takes values('32881', '158', '2', 'Spring', 2008, 'A-'); + insert into takes values('74163', '192', '1', 'Fall', 2002, 'C+'); + insert into takes values('68516', '960', '1', 'Fall', 2009, 'C+'); + insert into takes values('39704', '239', '1', 'Fall', 2006, 'A+'); + insert into takes values('39927', '237', '1', 'Spring', 2008, 'A+'); + insert into takes values('39241', '702', '1', 'Spring', 2001, 'A+'); + insert into takes values('23500', '376', '1', 'Fall', 2006, 'A '); + insert into takes values('7854', '927', '1', 'Fall', 2002, 'B-'); + insert into takes values('29091', '527', '1', 'Fall', 2004, 'A '); + insert into takes values('25725', '626', '1', 'Fall', 2006, 'C '); + insert into takes values('98140', '200', '1', 'Spring', 2007, 'C+'); + insert into takes values('52494', '603', '1', 'Fall', 2003, 'B '); + insert into takes values('44271', '468', '1', 'Fall', 2005, 'B '); + insert into takes values('2419', '349', '1', 'Spring', 2008, 'C-'); + insert into takes values('17397', '571', '1', 'Spring', 2004, 'B+'); + insert into takes values('10838', '457', '1', 'Spring', 2001, 'A '); + insert into takes values('46981', '338', '1', 'Spring', 2007, 'A-'); + insert into takes values('51538', '443', '1', 'Spring', 2010, 'A-'); + insert into takes values('90567', '461', '1', 'Fall', 2002, 'B '); + insert into takes values('66813', '345', '1', 'Spring', 2008, 'C-'); + insert into takes values('53048', '258', '1', 'Fall', 2007, 'A+'); + insert into takes values('27043', '366', '1', 'Fall', 2005, 'C '); + insert into takes values('16467', '468', '1', 'Fall', 2005, 'B+'); + insert into takes values('7035', '702', '1', 'Spring', 2001, 'B '); + insert into takes values('50873', '457', '1', 'Spring', 2001, 'C+'); + insert into takes values('35935', '626', '1', 'Fall', 2006, 'B '); + insert into takes values('32483', '991', '1', 'Spring', 2008, 'C-'); + insert into takes values('288', '237', '1', 'Spring', 2008, 'C+'); + insert into takes values('92776', '319', '1', 'Spring', 2003, 'A-'); + insert into takes values('1232', '974', '1', 'Fall', 2003, 'C+'); + insert into takes values('83314', '376', '1', 'Fall', 2006, 'C-'); + insert into takes values('12941', '735', '1', 'Spring', 2003, 'A-'); + insert into takes values('96722', '893', '1', 'Fall', 2007, 'A+'); + insert into takes values('63288', '169', '1', 'Spring', 2007, 'C-'); + insert into takes values('92693', '704', '1', 'Spring', 2008, 'A-'); + insert into takes values('99289', '559', '1', 'Fall', 2002, 'B+'); + insert into takes values('43993', '400', '2', 'Fall', 2003, 'A+'); + insert into takes values('47025', '169', '1', 'Spring', 2007, 'C '); + insert into takes values('8022', '949', '1', 'Fall', 2007, 'A-'); + insert into takes values('68278', '400', '2', 'Fall', 2003, 'B '); + insert into takes values('88045', '362', '2', 'Fall', 2006, 'A-'); + insert into takes values('89551', '949', '1', 'Fall', 2007, 'B+'); + insert into takes values('66293', '735', '2', 'Spring', 2010, 'B+'); + insert into takes values('2133', '795', '1', 'Spring', 2004, 'B+'); + insert into takes values('74460', '334', '1', 'Fall', 2009, 'B+'); + insert into takes values('19050', '200', '2', 'Fall', 2002, 'C+'); + insert into takes values('36657', '545', '1', 'Fall', 2001, 'C-'); + insert into takes values('68096', '571', '1', 'Spring', 2004, 'B+'); + insert into takes values('97042', '735', '2', 'Spring', 2010, 'C+'); + insert into takes values('78758', '274', '1', 'Fall', 2002, 'A '); + insert into takes values('71287', '169', '2', 'Fall', 2002, 'A-'); + insert into takes values('6287', '867', '1', 'Fall', 2006, 'C-'); + insert into takes values('46155', '991', '1', 'Spring', 2008, 'A-'); + insert into takes values('54620', '486', '1', 'Fall', 2009, 'C-'); + insert into takes values('84702', '274', '1', 'Fall', 2002, 'B '); + insert into takes values('59673', '468', '2', 'Fall', 2007, 'A-'); + insert into takes values('19582', '747', '1', 'Spring', 2004, 'A+'); + insert into takes values('72768', '400', '1', 'Spring', 2007, 'B-'); + insert into takes values('64550', '421', '1', 'Fall', 2004, 'B '); + insert into takes values('59539', '791', '1', 'Spring', 2006, 'B-'); + insert into takes values('11422', '559', '1', 'Fall', 2002, 'C+'); + insert into takes values('81031', '105', '2', 'Fall', 2002, 'A-'); + insert into takes values('38895', '489', '1', 'Fall', 2007, 'A-'); + insert into takes values('88884', '972', '1', 'Spring', 2009, 'C+'); + insert into takes values('11855', '482', '1', 'Fall', 2005, 'B-'); + insert into takes values('88417', '808', '1', 'Fall', 2003, 'B+'); + insert into takes values('64013', '400', '1', 'Spring', 2007, 'A '); + insert into takes values('32886', '852', '1', 'Spring', 2008, 'B-'); + insert into takes values('78314', '612', '1', 'Fall', 2007, 'B-'); + insert into takes values('1285', '319', '1', 'Spring', 2003, 'A '); + insert into takes values('22325', '400', '2', 'Fall', 2003, 'A-'); + insert into takes values('81610', '760', '1', 'Spring', 2004, 'B-'); + insert into takes values('92417', '696', '1', 'Spring', 2002, 'B '); + insert into takes values('57377', '400', '1', 'Spring', 2007, 'A-'); + insert into takes values('3640', '702', '1', 'Spring', 2001, 'B '); + insert into takes values('72643', '158', '1', 'Fall', 2008, 'C '); + insert into takes values('11441', '408', '1', 'Spring', 2007, 'A '); + insert into takes values('57190', '808', '1', 'Fall', 2003, 'B+'); + insert into takes values('40080', '959', '1', 'Fall', 2006, 'A '); + insert into takes values('75299', '242', '1', 'Fall', 2009, 'B-'); + insert into takes values('51549', '631', '1', 'Spring', 2007, 'C+'); + insert into takes values('96193', '493', '1', 'Spring', 2010, 'A '); + insert into takes values('29140', '808', '1', 'Fall', 2003, 'A '); + insert into takes values('43123', '400', '2', 'Fall', 2003, 'B-'); + insert into takes values('36052', '599', '1', 'Spring', 2003, 'C-'); + insert into takes values('35', '962', '1', 'Spring', 2008, 'C-'); + insert into takes values('95225', '962', '1', 'Spring', 2008, 'B '); + insert into takes values('49503', '604', '1', 'Spring', 2009, 'A+'); + insert into takes values('52019', '893', '1', 'Fall', 2007, 'C-'); + insert into takes values('38668', '704', '1', 'Spring', 2008, 'A '); + insert into takes values('99189', '626', '1', 'Fall', 2006, 'C-'); + insert into takes values('65443', '400', '1', 'Spring', 2007, 'C+'); + insert into takes values('46441', '270', '1', 'Spring', 2010, 'B '); + insert into takes values('38121', '808', '1', 'Fall', 2003, 'A '); + insert into takes values('123', '875', '1', 'Spring', 2005, 'B '); + insert into takes values('52291', '304', '1', 'Fall', 2009, 'B-'); + insert into takes values('81896', '362', '2', 'Fall', 2006, 'A+'); + insert into takes values('19220', '200', '1', 'Spring', 2007, 'C '); + insert into takes values('16753', '696', '1', 'Spring', 2002, 'B '); + insert into takes values('25552', '974', '1', 'Fall', 2003, 'A+'); + insert into takes values('63039', '603', '1', 'Fall', 2003, 'B '); + insert into takes values('87624', '158', '2', 'Spring', 2008, 'C '); + insert into takes values('70918', '345', '1', 'Spring', 2008, 'A-'); + insert into takes values('96153', '468', '1', 'Fall', 2005, 'A-'); + insert into takes values('51416', '319', '1', 'Spring', 2003, 'A '); + insert into takes values('25468', '169', '1', 'Spring', 2007, 'A-'); + insert into takes values('72528', '137', '1', 'Spring', 2002, 'C+'); + insert into takes values('67310', '362', '3', 'Spring', 2008, 'B-'); + insert into takes values('95225', '496', '1', 'Fall', 2001, 'A '); + insert into takes values('32886', '843', '1', 'Fall', 2010, 'A-'); + insert into takes values('41091', '927', '1', 'Fall', 2002, 'C-'); + insert into takes values('17086', '258', '1', 'Fall', 2007, 'B+'); + insert into takes values('645', '864', '1', 'Spring', 2006, 'B-'); + insert into takes values('62716', '486', '1', 'Fall', 2009, 'B '); + insert into takes values('61166', '808', '1', 'Fall', 2003, 'C-'); + insert into takes values('94620', '400', '2', 'Fall', 2003, 'C+'); + insert into takes values('40992', '704', '1', 'Spring', 2008, 'A-'); + insert into takes values('84654', '692', '1', 'Spring', 2010, 'C-'); + insert into takes values('77021', '482', '1', 'Fall', 2005, 'B '); + insert into takes values('12666', '400', '2', 'Fall', 2003, 'A-'); + insert into takes values('51084', '242', '1', 'Fall', 2009, 'B+'); + insert into takes values('71025', '960', '2', 'Fall', 2006, 'A+'); + insert into takes values('22142', '461', '1', 'Fall', 2002, 'B '); + insert into takes values('32368', '603', '1', 'Fall', 2003, 'A-'); + insert into takes values('82083', '482', '1', 'Fall', 2005, 'A-'); + insert into takes values('51084', '345', '1', 'Spring', 2008, 'C+'); + insert into takes values('64196', '105', '2', 'Fall', 2002, 'B-'); + insert into takes values('47677', '962', '1', 'Spring', 2008, 'C+'); + insert into takes values('99399', '629', '1', 'Spring', 2003, 'A-'); + insert into takes values('23457', '875', '1', 'Spring', 2005, 'A '); + insert into takes values('11095', '679', '1', 'Spring', 2010, 'C '); + insert into takes values('19050', '445', '1', 'Spring', 2001, 'B '); + insert into takes values('34542', '604', '1', 'Spring', 2009, 'A-'); + insert into takes values('24865', '137', '1', 'Spring', 2002, 'A+'); + insert into takes values('898', '457', '1', 'Spring', 2001, 'A '); + insert into takes values('84495', '559', '1', 'Fall', 2002, 'C-'); + insert into takes values('50583', '991', '1', 'Spring', 2008, 'C-'); + insert into takes values('69581', '960', '2', 'Fall', 2006, 'C+'); + insert into takes values('44706', '362', '1', 'Fall', 2005, 'A '); + insert into takes values('557', '893', '1', 'Fall', 2007, 'B+'); + insert into takes values('11194', '445', '1', 'Spring', 2001, 'A-'); + insert into takes values('98056', '158', '1', 'Fall', 2008, 'A '); + insert into takes values('45300', '581', '1', 'Spring', 2005, 'B+'); + insert into takes values('60366', '559', '1', 'Fall', 2002, 'A-'); + insert into takes values('43993', '629', '1', 'Spring', 2003, 'A-'); + insert into takes values('25785', '991', '1', 'Spring', 2008, 'A '); + insert into takes values('35220', '702', '1', 'Spring', 2001, 'A-'); + insert into takes values('59290', '663', '1', 'Spring', 2005, 'C-'); + insert into takes values('51862', '338', '1', 'Spring', 2007, 'C-'); + insert into takes values('11194', '927', '1', 'Fall', 2002, 'C-'); + insert into takes values('67560', '702', '1', 'Spring', 2001, 'C-'); + insert into takes values('48009', '496', '1', 'Fall', 2001, 'C '); + insert into takes values('3039', '366', '1', 'Fall', 2005, 'C '); + insert into takes values('282', '581', '1', 'Spring', 2005, 'C-'); + insert into takes values('94766', '626', '1', 'Fall', 2006, 'A+'); + insert into takes values('1460', '482', '1', 'Fall', 2005, 'C '); + insert into takes values('93631', '571', '1', 'Spring', 2004, 'A '); + insert into takes values('85887', '791', '1', 'Spring', 2006, 'B '); + insert into takes values('9408', '313', '1', 'Fall', 2010, 'B '); + insert into takes values('17924', '679', '1', 'Spring', 2010, 'C '); + insert into takes values('43989', '362', '2', 'Fall', 2006, 'A+'); + insert into takes values('39619', '493', '1', 'Spring', 2010, 'C-'); + insert into takes values('79205', '795', '1', 'Spring', 2004, 'B-'); + insert into takes values('20002', '631', '1', 'Spring', 2007, 'A '); + insert into takes values('83398', '679', '1', 'Spring', 2010, 'B '); + insert into takes values('50977', '200', '1', 'Spring', 2007, 'B '); + insert into takes values('21774', '843', '1', 'Fall', 2010, 'C '); + insert into takes values('89246', '105', '2', 'Fall', 2002, 'A '); + insert into takes values('54605', '959', '1', 'Fall', 2006, 'C+'); + insert into takes values('96117', '603', '1', 'Fall', 2003, 'A '); + insert into takes values('77130', '468', '1', 'Fall', 2005, 'B+'); + insert into takes values('21086', '304', '1', 'Fall', 2009, 'A '); + insert into takes values('39892', '735', '1', 'Spring', 2003, 'B-'); + insert into takes values('68330', '949', '1', 'Fall', 2007, 'C-'); + insert into takes values('9605', '362', '1', 'Fall', 2005, 'B-'); + insert into takes values('58413', '561', '1', 'Fall', 2006, 'B+'); + insert into takes values('7035', '258', '1', 'Fall', 2007, 'A '); + insert into takes values('28352', '949', '1', 'Fall', 2007, 'A+'); + insert into takes values('6209', '748', '1', 'Fall', 2003, 'B+'); + insert into takes values('98984', '468', '2', 'Fall', 2007, 'B '); + insert into takes values('48850', '200', '1', 'Spring', 2007, 'A-'); + insert into takes values('98388', '747', '1', 'Spring', 2004, 'C-'); + insert into takes values('48678', '408', '2', 'Spring', 2003, 'C '); + insert into takes values('89106', '461', '1', 'Fall', 2002, 'B-'); + insert into takes values('54460', '476', '1', 'Fall', 2010, 'B-'); + insert into takes values('68096', '974', '1', 'Fall', 2003, 'A-'); + insert into takes values('25256', '200', '2', 'Fall', 2002, 'C '); + insert into takes values('59908', '735', '1', 'Spring', 2003, 'B '); + insert into takes values('34236', '376', '1', 'Fall', 2006, 'C-'); + insert into takes values('48053', '791', '1', 'Spring', 2006, 'B-'); + insert into takes values('33201', '415', '1', 'Fall', 2010, 'A '); + insert into takes values('86127', '468', '2', 'Fall', 2007, 'C '); + insert into takes values('92659', '457', '1', 'Spring', 2001, 'B-'); + insert into takes values('88169', '443', '1', 'Spring', 2010, 'B '); + insert into takes values('88417', '864', '1', 'Spring', 2006, 'C '); + insert into takes values('21395', '169', '2', 'Fall', 2002, 'A-'); + insert into takes values('63090', '313', '1', 'Fall', 2010, 'A-'); + insert into takes values('27556', '702', '1', 'Spring', 2001, 'B '); + insert into takes values('90041', '867', '1', 'Fall', 2006, 'A-'); + insert into takes values('78581', '927', '1', 'Fall', 2002, 'B '); + insert into takes values('92864', '338', '1', 'Spring', 2007, 'A-'); + insert into takes values('92703', '237', '2', 'Fall', 2009, 'A+'); + insert into takes values('62795', '559', '1', 'Fall', 2002, 'B+'); + insert into takes values('96052', '366', '1', 'Fall', 2005, 'A+'); + insert into takes values('78892', '545', '1', 'Fall', 2001, 'C '); + insert into takes values('25331', '875', '1', 'Spring', 2005, 'B-'); + insert into takes values('18007', '258', '1', 'Fall', 2007, 'A-'); + insert into takes values('32419', '457', '1', 'Spring', 2001, 'B '); + insert into takes values('67793', '270', '1', 'Spring', 2010, 'C '); + insert into takes values('73602', '496', '1', 'Fall', 2001, 'C+'); + insert into takes values('34957', '352', '1', 'Spring', 2006, 'C '); + insert into takes values('13290', '443', '1', 'Spring', 2010, 'A+'); + insert into takes values('48660', '612', '1', 'Fall', 2007, 'B-'); + insert into takes values('51975', '629', '1', 'Spring', 2003, 'A+'); + insert into takes values('32385', '867', '1', 'Fall', 2006, 'A+'); + insert into takes values('16993', '457', '1', 'Spring', 2001, 'A-'); + insert into takes values('75596', '366', '1', 'Fall', 2005, 'B '); + insert into takes values('31250', '704', '1', 'Spring', 2008, 'B '); + insert into takes values('57160', '612', '1', 'Fall', 2007, 'B '); + insert into takes values('32464', '334', '1', 'Fall', 2009, 'A-'); + insert into takes values('86661', '421', '1', 'Fall', 2004, 'B '); + insert into takes values('44304', '748', '1', 'Fall', 2003, 'B+'); + insert into takes values('32385', '338', '2', 'Spring', 2006, 'A+'); + insert into takes values('66484', '974', '1', 'Fall', 2003, 'A '); + insert into takes values('78767', '400', '2', 'Fall', 2003, 'A '); + insert into takes values('95850', '974', '1', 'Fall', 2003, 'B '); + insert into takes values('11966', '893', '1', 'Fall', 2007, 'C '); + insert into takes values('96968', '486', '1', 'Fall', 2009, 'C-'); + insert into takes values('39619', '852', '1', 'Spring', 2008, 'B '); + insert into takes values('96067', '258', '1', 'Fall', 2007, 'B+'); + insert into takes values('31080', '802', '1', 'Spring', 2003, 'B '); + insert into takes values('43032', '748', '1', 'Fall', 2003, 'A '); + insert into takes values('288', '476', '1', 'Fall', 2010, 'A '); + insert into takes values('56755', '334', '1', 'Fall', 2009, 'A-'); + insert into takes values('792', '626', '1', 'Fall', 2006, 'C-'); + insert into takes values('19638', '962', '1', 'Spring', 2008, 'A-'); + insert into takes values('8347', '612', '1', 'Fall', 2007, 'A '); + insert into takes values('78756', '571', '1', 'Spring', 2004, 'C-'); + insert into takes values('24197', '893', '1', 'Fall', 2007, 'A+'); + insert into takes values('76169', '237', '2', 'Fall', 2009, 'C+'); + insert into takes values('30397', '959', '1', 'Fall', 2006, 'B '); + insert into takes values('62549', '642', '1', 'Fall', 2004, 'B '); + insert into takes values('23506', '192', '1', 'Fall', 2002, 'B+'); + insert into takes values('22086', '408', '2', 'Spring', 2003, 'B '); + insert into takes values('78434', '376', '1', 'Fall', 2006, 'B-'); + insert into takes values('15074', '158', '1', 'Fall', 2008, 'C+'); + insert into takes values('89246', '468', '1', 'Fall', 2005, 'B-'); + insert into takes values('80254', '626', '1', 'Fall', 2006, 'A-'); + insert into takes values('50966', '468', '1', 'Fall', 2005, 'A+'); + insert into takes values('62487', '949', '1', 'Fall', 2007, 'A '); + insert into takes values('57538', '612', '1', 'Fall', 2007, 'A-'); + insert into takes values('46980', '843', '1', 'Fall', 2010, 'A+'); + insert into takes values('30182', '426', '1', 'Spring', 2006, 'B-'); + insert into takes values('71426', '362', '1', 'Fall', 2005, 'A-'); + insert into takes values('59172', '629', '1', 'Spring', 2003, 'C+'); + insert into takes values('54610', '974', '1', 'Fall', 2003, 'A '); + insert into takes values('58300', '642', '1', 'Fall', 2004, 'B+'); + insert into takes values('32245', '949', '1', 'Fall', 2007, 'B-'); + insert into takes values('41299', '991', '1', 'Spring', 2008, 'B-'); + insert into takes values('67655', '972', '1', 'Spring', 2009, 'C+'); + insert into takes values('31993', '461', '1', 'Fall', 2002, 'B+'); + insert into takes values('63860', '169', '2', 'Fall', 2002, 'B+'); + insert into takes values('61854', '334', '1', 'Fall', 2009, 'B-'); + insert into takes values('98140', '239', '1', 'Fall', 2006, 'A '); + insert into takes values('19917', '972', '1', 'Spring', 2009, 'A+'); + insert into takes values('82083', '461', '1', 'Fall', 2002, 'A+'); + insert into takes values('53048', '304', '1', 'Fall', 2009, 'A-'); + insert into takes values('88472', '443', '2', 'Spring', 2002, 'A-'); + insert into takes values('11530', '445', '1', 'Spring', 2001, 'B-'); + insert into takes values('96911', '237', '1', 'Spring', 2008, 'A+'); + insert into takes values('47627', '362', '3', 'Spring', 2008, 'A '); + insert into takes values('390', '571', '1', 'Spring', 2004, 'B-'); + insert into takes values('18775', '476', '1', 'Fall', 2010, 'C '); + insert into takes values('71529', '793', '1', 'Spring', 2002, 'B '); + insert into takes values('31302', '426', '1', 'Spring', 2006, 'B+'); + insert into takes values('282', '604', '1', 'Spring', 2009, 'B '); + insert into takes values('21552', '735', '2', 'Spring', 2010, 'B+'); + insert into takes values('52866', '696', '1', 'Spring', 2002, 'B-'); + insert into takes values('27556', '192', '1', 'Fall', 2002, 'A '); + insert into takes values('71768', '476', '1', 'Fall', 2010, 'B '); + insert into takes values('51416', '852', '1', 'Spring', 2008, 'A-'); + insert into takes values('69521', '581', '1', 'Spring', 2005, 'C '); + insert into takes values('94815', '696', '1', 'Spring', 2002, 'C-'); + insert into takes values('62152', '559', '1', 'Fall', 2002, 'A+'); + insert into takes values('87439', '591', '1', 'Spring', 2005, 'B-'); + insert into takes values('2133', '468', '1', 'Fall', 2005, 'C '); + insert into takes values('58701', '401', '1', 'Fall', 2003, 'A+'); + insert into takes values('83480', '400', '2', 'Fall', 2003, 'C-'); + insert into takes values('20803', '443', '1', 'Spring', 2010, 'B+'); + insert into takes values('30957', '949', '1', 'Fall', 2007, 'B+'); + insert into takes values('13741', '591', '1', 'Spring', 2005, 'B '); + insert into takes values('52120', '679', '1', 'Spring', 2010, 'B+'); + insert into takes values('43432', '599', '1', 'Spring', 2003, 'A '); + insert into takes values('15487', '192', '1', 'Fall', 2002, 'A+'); + insert into takes values('5920', '599', '1', 'Spring', 2003, 'B+'); + insert into takes values('33759', '158', '1', 'Fall', 2008, 'C+'); + insert into takes values('23500', '629', '1', 'Spring', 2003, 'C-'); + insert into takes values('47379', '493', '1', 'Spring', 2010, 'B-'); + insert into takes values('27430', '200', '1', 'Spring', 2007, 'B-'); + insert into takes values('85887', '603', '1', 'Fall', 2003, 'C '); + insert into takes values('71631', '352', '1', 'Spring', 2006, 'A+'); + insert into takes values('67051', '105', '2', 'Fall', 2002, 'A-'); + insert into takes values('51553', '581', '1', 'Spring', 2005, 'A '); + insert into takes values('38895', '493', '1', 'Spring', 2010, 'B+'); + insert into takes values('63645', '561', '1', 'Fall', 2006, 'C '); + insert into takes values('39394', '959', '1', 'Fall', 2006, 'B '); + insert into takes values('67660', '362', '2', 'Fall', 2006, 'A+'); + insert into takes values('67371', '629', '1', 'Spring', 2003, 'C+'); + insert into takes values('26695', '468', '2', 'Fall', 2007, 'B '); + insert into takes values('68396', '349', '1', 'Spring', 2008, 'A '); + insert into takes values('94726', '642', '1', 'Fall', 2004, 'B+'); + insert into takes values('44816', '366', '1', 'Fall', 2005, 'A '); + insert into takes values('13826', '239', '1', 'Fall', 2006, 'B '); + insert into takes values('23475', '169', '1', 'Spring', 2007, 'C '); + insert into takes values('34386', '401', '1', 'Fall', 2003, 'A-'); + insert into takes values('90814', '313', '1', 'Fall', 2010, 'C '); + insert into takes values('25940', '702', '1', 'Spring', 2001, 'B '); + insert into takes values('92417', '604', '1', 'Spring', 2009, 'A '); + insert into takes values('69850', '304', '1', 'Fall', 2009, 'C+'); + insert into takes values('55000', '270', '1', 'Spring', 2010, 'A+'); + insert into takes values('60984', '349', '1', 'Spring', 2008, 'B-'); + insert into takes values('9408', '421', '1', 'Fall', 2004, 'B-'); + insert into takes values('34542', '334', '1', 'Fall', 2009, 'B-'); + insert into takes values('83136', '571', '1', 'Spring', 2004, 'B-'); + insert into takes values('65400', '561', '1', 'Fall', 2006, 'C+'); + insert into takes values('18809', '760', '1', 'Spring', 2004, 'A+'); + insert into takes values('89312', '274', '1', 'Fall', 2002, 'C+'); + insert into takes values('76743', '400', '2', 'Fall', 2003, 'A-'); + insert into takes values('53048', '345', '1', 'Spring', 2008, 'C-'); + insert into takes values('51817', '352', '1', 'Spring', 2006, 'C-'); + insert into takes values('20084', '169', '1', 'Spring', 2007, 'A-'); + insert into takes values('37219', '991', '1', 'Spring', 2008, 'A-'); + insert into takes values('98140', '349', '1', 'Spring', 2008, 'C '); + insert into takes values('52929', '319', '1', 'Spring', 2003, 'A-'); + insert into takes values('89140', '791', '1', 'Spring', 2006, 'A+'); + insert into takes values('58634', '581', '1', 'Spring', 2005, 'A+'); + insert into takes values('99451', '137', '1', 'Spring', 2002, 'A-'); + insert into takes values('8483', '864', '1', 'Spring', 2006, 'A+'); + insert into takes values('86375', '867', '1', 'Fall', 2006, 'C+'); + insert into takes values('7854', '237', '2', 'Fall', 2009, 'B-'); + insert into takes values('42556', '793', '1', 'Spring', 2002, 'C-'); + insert into takes values('37350', '352', '1', 'Spring', 2006, 'B+'); + insert into takes values('37809', '468', '1', 'Fall', 2005, 'B '); + insert into takes values('23449', '808', '1', 'Fall', 2003, 'B-'); + insert into takes values('10834', '443', '2', 'Spring', 2002, 'C+'); + insert into takes values('48776', '468', '2', 'Fall', 2007, 'C+'); + insert into takes values('13741', '612', '1', 'Fall', 2007, 'A+'); + insert into takes values('37350', '612', '1', 'Fall', 2007, 'A '); + insert into takes values('72768', '274', '1', 'Fall', 2002, 'C-'); + insert into takes values('96178', '603', '1', 'Fall', 2003, 'A '); + insert into takes values('15457', '559', '1', 'Fall', 2002, 'A+'); + insert into takes values('93039', '366', '1', 'Fall', 2005, 'C '); + insert into takes values('97573', '105', '1', 'Fall', 2009, 'B-'); + insert into takes values('5298', '694', '1', 'Fall', 2002, 'B+'); + insert into takes values('75362', '747', '1', 'Spring', 2004, 'A-'); + insert into takes values('67021', '401', '1', 'Fall', 2003, 'B+'); + insert into takes values('65703', '319', '1', 'Spring', 2003, 'A+'); + insert into takes values('72055', '408', '1', 'Spring', 2007, 'B+'); + insert into takes values('16885', '493', '1', 'Spring', 2010, 'A+'); + insert into takes values('95320', '545', '1', 'Fall', 2001, 'C-'); + insert into takes values('34126', '400', '1', 'Spring', 2007, 'B '); + insert into takes values('36685', '366', '1', 'Fall', 2005, 'C+'); + insert into takes values('65681', '105', '1', 'Fall', 2009, 'B-'); + insert into takes values('47487', '426', '1', 'Spring', 2006, 'A+'); + insert into takes values('36881', '362', '1', 'Fall', 2005, 'B+'); + insert into takes values('96067', '974', '1', 'Fall', 2003, 'C+'); + insert into takes values('38899', '105', '1', 'Fall', 2009, 'B-'); + insert into takes values('71944', '242', '1', 'Fall', 2009, 'C '); + insert into takes values('98315', '561', '1', 'Fall', 2006, 'B-'); + insert into takes values('87222', '319', '1', 'Spring', 2003, 'B-'); + insert into takes values('58595', '200', '2', 'Fall', 2002, 'A '); + insert into takes values('10204', '735', '2', 'Spring', 2010, 'A '); + insert into takes values('51997', '158', '1', 'Fall', 2008, 'C '); + insert into takes values('34788', '793', '1', 'Spring', 2002, 'C+'); + insert into takes values('83170', '376', '1', 'Fall', 2006, 'A-'); + insert into takes values('57666', '401', '1', 'Fall', 2003, 'C '); + insert into takes values('78552', '426', '1', 'Spring', 2006, 'C-'); + insert into takes values('38121', '692', '1', 'Spring', 2010, 'B+'); + insert into takes values('4435', '626', '1', 'Fall', 2006, 'A+'); + insert into takes values('49618', '461', '1', 'Fall', 2002, 'B-'); + insert into takes values('32065', '362', '2', 'Fall', 2006, 'C+'); + insert into takes values('97065', '362', '1', 'Fall', 2005, 'B '); + insert into takes values('5336', '461', '1', 'Fall', 2002, 'B+'); + insert into takes values('76057', '642', '1', 'Fall', 2004, 'B '); + insert into takes values('99463', '527', '1', 'Fall', 2004, 'B '); + insert into takes values('6367', '237', '1', 'Spring', 2008, 'C '); + insert into takes values('99250', '972', '1', 'Spring', 2009, 'A '); + insert into takes values('36265', '237', '2', 'Fall', 2009, 'A+'); + insert into takes values('67657', '400', '2', 'Fall', 2003, 'C-'); + insert into takes values('11055', '612', '1', 'Fall', 2007, 'A '); + insert into takes values('59553', '795', '1', 'Spring', 2004, 'B-'); + insert into takes values('57334', '603', '1', 'Fall', 2003, 'C-'); + insert into takes values('25187', '200', '2', 'Fall', 2002, 'C '); + insert into takes values('39514', '421', '1', 'Fall', 2004, 'B-'); + insert into takes values('13506', '972', '1', 'Spring', 2009, 'B+'); + insert into takes values('53788', '362', '3', 'Spring', 2008, 'C-'); + insert into takes values('41406', '864', '1', 'Spring', 2006, 'C+'); + insert into takes values('51084', '735', '1', 'Spring', 2003, 'B '); + insert into takes values('21692', '461', '1', 'Fall', 2002, 'A-'); + insert into takes values('96178', '426', '1', 'Spring', 2006, 'B+'); + insert into takes values('60224', '349', '1', 'Spring', 2008, 'C '); + insert into takes values('99710', '421', '1', 'Fall', 2004, 'A-'); + insert into takes values('68554', '319', '1', 'Spring', 2003, 'A-'); + insert into takes values('3576', '421', '1', 'Fall', 2004, 'C '); + insert into takes values('64039', '401', '1', 'Fall', 2003, 'B-'); + insert into takes values('85451', '313', '1', 'Fall', 2010, 'A+'); + insert into takes values('93491', '696', '1', 'Spring', 2002, 'B+'); + insert into takes values('46337', '200', '1', 'Spring', 2007, 'C+'); + insert into takes values('36263', '893', '1', 'Fall', 2007, 'C-'); + insert into takes values('13290', '571', '1', 'Spring', 2004, 'C '); + insert into takes values('99719', '867', '2', 'Fall', 2010, 'B '); + insert into takes values('17911', '694', '1', 'Fall', 2002, 'C-'); + insert into takes values('39619', '400', '2', 'Fall', 2003, 'A+'); + insert into takes values('96153', '489', '1', 'Fall', 2007, 'B+'); + insert into takes values('13365', '599', '1', 'Spring', 2003, 'B-'); + insert into takes values('55940', '443', '1', 'Spring', 2010, 'C-'); + insert into takes values('31101', '696', '1', 'Spring', 2002, 'A '); + insert into takes values('64934', '345', '1', 'Spring', 2008, 'A '); + insert into takes values('90181', '694', '1', 'Fall', 2002, 'B '); + insert into takes values('107', '362', '1', 'Fall', 2005, 'A '); + insert into takes values('51008', '692', '1', 'Spring', 2010, 'B '); + insert into takes values('80057', '867', '1', 'Fall', 2006, 'B '); + insert into takes values('10814', '692', '1', 'Spring', 2010, 'A-'); + insert into takes values('99760', '760', '1', 'Spring', 2004, 'B '); + insert into takes values('75794', '867', '2', 'Fall', 2010, 'C+'); + insert into takes values('28738', '735', '1', 'Spring', 2003, 'C '); + insert into takes values('53424', '694', '1', 'Fall', 2002, 'B+'); + insert into takes values('46066', '748', '1', 'Fall', 2003, 'B '); + insert into takes values('22254', '237', '2', 'Fall', 2009, 'C+'); + insert into takes values('28299', '867', '1', 'Fall', 2006, 'B-'); + insert into takes values('46066', '802', '1', 'Spring', 2003, 'C-'); + insert into takes values('83728', '237', '1', 'Spring', 2008, 'A-'); + insert into takes values('32464', '408', '2', 'Spring', 2003, 'C '); + insert into takes values('52866', '334', '1', 'Fall', 2009, 'B '); + insert into takes values('13408', '561', '1', 'Fall', 2006, 'B-'); + insert into takes values('20445', '561', '1', 'Fall', 2006, 'B '); + insert into takes values('61444', '457', '1', 'Spring', 2001, 'A+'); + insert into takes values('18234', '274', '1', 'Fall', 2002, 'C+'); + insert into takes values('86707', '105', '2', 'Fall', 2002, 'C-'); + insert into takes values('40059', '559', '1', 'Fall', 2002, 'A-'); + insert into takes values('17133', '604', '1', 'Spring', 2009, 'C+'); + insert into takes values('27687', '679', '1', 'Spring', 2010, 'A-'); + insert into takes values('69581', '362', '2', 'Fall', 2006, 'A+'); + insert into takes values('888', '489', '1', 'Fall', 2007, 'A+'); + insert into takes values('53788', '376', '1', 'Fall', 2006, 'C-'); + insert into takes values('33338', '352', '1', 'Spring', 2006, 'A-'); + insert into takes values('59172', '802', '1', 'Spring', 2003, 'A-'); + insert into takes values('51723', '949', '1', 'Fall', 2007, 'B+'); + insert into takes values('94173', '629', '1', 'Spring', 2003, 'A-'); + insert into takes values('84727', '603', '1', 'Fall', 2003, 'A+'); + insert into takes values('59530', '461', '1', 'Fall', 2002, 'B-'); + insert into takes values('56212', '105', '2', 'Fall', 2002, 'A '); + insert into takes values('70965', '443', '1', 'Spring', 2010, 'C-'); + insert into takes values('91343', '137', '1', 'Spring', 2002, 'B-'); + insert into takes values('53152', '843', '1', 'Fall', 2010, 'B-'); + insert into takes values('46451', '612', '1', 'Fall', 2007, 'A+'); + insert into takes values('82066', '631', '1', 'Spring', 2007, 'C-'); + insert into takes values('98563', '408', '1', 'Spring', 2007, 'B+'); + insert into takes values('28977', '408', '2', 'Spring', 2003, 'A+'); + insert into takes values('97228', '239', '1', 'Fall', 2006, 'B-'); + insert into takes values('65681', '793', '1', 'Spring', 2002, 'A-'); + insert into takes values('50658', '334', '1', 'Fall', 2009, 'A+'); + insert into takes values('75791', '274', '1', 'Fall', 2002, 'A+'); + insert into takes values('52669', '239', '1', 'Fall', 2006, 'C+'); + insert into takes values('16297', '604', '1', 'Spring', 2009, 'B '); + insert into takes values('8457', '793', '1', 'Spring', 2002, 'A+'); + insert into takes values('30289', '692', '1', 'Spring', 2010, 'A '); + insert into takes values('85575', '338', '1', 'Spring', 2007, 'C+'); + insert into takes values('35685', '200', '1', 'Spring', 2007, 'B-'); + insert into takes values('94178', '200', '2', 'Fall', 2002, 'A '); + insert into takes values('63288', '527', '1', 'Fall', 2004, 'C+'); + insert into takes values('14874', '237', '1', 'Spring', 2008, 'A-'); + insert into takes values('85910', '242', '1', 'Fall', 2009, 'A-'); + insert into takes values('14284', '702', '1', 'Spring', 2001, 'C+'); + insert into takes values('30341', '421', '1', 'Fall', 2004, 'A-'); + insert into takes values('83136', '626', '1', 'Fall', 2006, 'A+'); + insert into takes values('1922', '476', '1', 'Fall', 2010, 'A+'); + insert into takes values('14639', '489', '1', 'Fall', 2007, 'A-'); + insert into takes values('68999', '408', '2', 'Spring', 2003, 'A+'); + insert into takes values('3127', '319', '1', 'Spring', 2003, 'A-'); + insert into takes values('74911', '426', '1', 'Spring', 2006, 'A '); + insert into takes values('41406', '426', '1', 'Spring', 2006, 'A-'); + insert into takes values('21766', '960', '2', 'Fall', 2006, 'B-'); + insert into takes values('72657', '192', '1', 'Fall', 2002, 'A '); + insert into takes values('61127', '545', '1', 'Fall', 2001, 'C-'); + insert into takes values('96085', '457', '1', 'Spring', 2001, 'A+'); + insert into takes values('16528', '200', '1', 'Spring', 2007, 'B-'); + insert into takes values('17769', '486', '1', 'Fall', 2009, 'A+'); + insert into takes values('36263', '735', '2', 'Spring', 2010, 'A+'); + insert into takes values('68096', '791', '1', 'Spring', 2006, 'B+'); + insert into takes values('50703', '158', '2', 'Spring', 2008, 'C+'); + insert into takes values('71944', '867', '1', 'Fall', 2006, 'B-'); + insert into takes values('48901', '959', '1', 'Fall', 2006, 'C-'); + insert into takes values('4508', '270', '1', 'Spring', 2010, 'C-'); + insert into takes values('11419', '527', '1', 'Fall', 2004, 'C-'); + insert into takes values('8426', '349', '1', 'Spring', 2008, 'B-'); + insert into takes values('22260', '991', '1', 'Spring', 2008, 'C-'); + insert into takes values('3487', '927', '1', 'Fall', 2002, 'A-'); + insert into takes values('8347', '105', '1', 'Fall', 2009, 'B-'); + insert into takes values('85211', '258', '1', 'Fall', 2007, 'B '); + insert into takes values('48053', '694', '1', 'Fall', 2002, 'A '); + insert into takes values('544', '200', '1', 'Spring', 2007, 'C '); + insert into takes values('98830', '192', '1', 'Fall', 2002, 'B-'); + insert into takes values('90234', '461', '1', 'Fall', 2002, 'C-'); + insert into takes values('37449', '200', '2', 'Fall', 2002, 'A '); + insert into takes values('87268', '927', '1', 'Fall', 2002, 'A '); + insert into takes values('21009', '366', '1', 'Fall', 2005, 'C+'); + insert into takes values('39394', '352', '1', 'Spring', 2006, 'A-'); + insert into takes values('56078', '545', '1', 'Fall', 2001, 'B+'); + insert into takes values('76759', '486', '1', 'Fall', 2009, 'A '); + insert into takes values('37284', '345', '1', 'Spring', 2008, 'A-'); + insert into takes values('98843', '376', '1', 'Fall', 2006, 'A+'); + insert into takes values('24796', '867', '1', 'Fall', 2006, 'B-'); + insert into takes values('79210', '105', '2', 'Fall', 2002, 'C-'); + insert into takes values('12711', '200', '1', 'Spring', 2007, 'C '); + insert into takes values('4682', '408', '2', 'Spring', 2003, 'B-'); + insert into takes values('57474', '493', '1', 'Spring', 2010, 'A-'); + insert into takes values('78314', '760', '1', 'Spring', 2004, 'A '); + insert into takes values('26473', '626', '1', 'Fall', 2006, 'B-'); + insert into takes values('71944', '591', '1', 'Spring', 2005, 'A '); + insert into takes values('827', '443', '2', 'Spring', 2002, 'C+'); + insert into takes values('89051', '482', '1', 'Fall', 2005, 'A+'); + insert into takes values('88887', '559', '1', 'Fall', 2002, 'A '); + insert into takes values('11237', '304', '1', 'Fall', 2009, 'C '); + insert into takes values('30845', '629', '1', 'Spring', 2003, 'C+'); + insert into takes values('86375', '445', '1', 'Spring', 2001, 'A+'); + insert into takes values('85534', '105', '1', 'Fall', 2009, 'A '); + insert into takes values('64249', '795', '1', 'Spring', 2004, 'A+'); + insert into takes values('99189', '338', '2', 'Spring', 2006, 'B-'); + insert into takes values('57780', '274', '1', 'Fall', 2002, 'B '); + insert into takes values('9460', '457', '1', 'Spring', 2001, 'A '); + insert into takes values('5250', '338', '2', 'Spring', 2006, 'A-'); + insert into takes values('3639', '304', '1', 'Fall', 2009, 'A+'); + insert into takes values('94324', '362', '1', 'Fall', 2005, 'B+'); + insert into takes values('64196', '408', '1', 'Spring', 2007, 'A+'); + insert into takes values('80976', '270', '1', 'Spring', 2010, 'C-'); + insert into takes values('76768', '696', '1', 'Spring', 2002, 'C-'); + insert into takes values('52866', '158', '1', 'Fall', 2008, 'B '); + insert into takes values('93571', '239', '1', 'Fall', 2006, 'B+'); + insert into takes values('59290', '696', '1', 'Spring', 2002, 'B+'); + insert into takes values('65688', '443', '1', 'Spring', 2010, 'A-'); + insert into takes values('66484', '482', '1', 'Fall', 2005, 'A '); + insert into takes values('59530', '362', '3', 'Spring', 2008, 'C-'); + insert into takes values('81150', '808', '1', 'Fall', 2003, 'A+'); + insert into takes values('29390', '349', '1', 'Spring', 2008, 'B-'); + insert into takes values('17377', '304', '1', 'Fall', 2009, 'B-'); + insert into takes values('79534', '591', '1', 'Spring', 2005, 'C-'); + insert into takes values('16453', '313', '1', 'Fall', 2010, 'B-'); + insert into takes values('24932', '692', '1', 'Spring', 2010, 'B '); + insert into takes values('71631', '376', '1', 'Fall', 2006, 'B-'); + insert into takes values('40059', '604', '1', 'Spring', 2009, 'B+'); + insert into takes values('89297', '496', '1', 'Fall', 2001, 'C+'); + insert into takes values('35881', '629', '1', 'Spring', 2003, 'C '); + insert into takes values('17057', '626', '1', 'Fall', 2006, 'A+'); + insert into takes values('93354', '793', '1', 'Spring', 2002, 'C+'); + insert into takes values('45494', '867', '1', 'Fall', 2006, 'B+'); + insert into takes values('52057', '959', '1', 'Fall', 2006, 'A '); + insert into takes values('34957', '527', '1', 'Fall', 2004, 'C-'); + insert into takes values('34422', '496', '1', 'Fall', 2001, 'B '); + insert into takes values('84039', '604', '1', 'Spring', 2009, 'A+'); + insert into takes values('10556', '747', '1', 'Spring', 2004, 'C+'); + insert into takes values('94371', '795', '1', 'Spring', 2004, 'C+'); + insert into takes values('16075', '795', '1', 'Spring', 2004, 'A-'); + insert into takes values('48776', '793', '1', 'Spring', 2002, 'B-'); + insert into takes values('13880', '443', '1', 'Spring', 2010, 'B+'); + insert into takes values('25077', '581', '1', 'Spring', 2005, 'A+'); + insert into takes values('8807', '313', '1', 'Fall', 2010, 'C-'); + insert into takes values('53451', '352', '1', 'Spring', 2006, 'A '); + insert into takes values('58413', '258', '1', 'Fall', 2007, 'C-'); + insert into takes values('68720', '421', '1', 'Fall', 2004, 'A '); + insert into takes values('39580', '461', '1', 'Fall', 2002, 'A '); + insert into takes values('96153', '237', '1', 'Spring', 2008, 'B+'); + insert into takes values('84845', '629', '1', 'Spring', 2003, 'C+'); + insert into takes values('15430', '748', '1', 'Fall', 2003, 'A-'); + insert into takes values('26080', '581', '1', 'Spring', 2005, 'A-'); + insert into takes values('81876', '631', '1', 'Spring', 2007, 'B-'); + insert into takes values('77588', '443', '1', 'Spring', 2010, 'C '); + insert into takes values('70389', '696', '1', 'Spring', 2002, 'B-'); + insert into takes values('39254', '795', '1', 'Spring', 2004, 'C-'); + insert into takes values('74530', '704', '1', 'Spring', 2008, 'B+'); + insert into takes values('41596', '663', '1', 'Spring', 2005, 'B+'); + insert into takes values('20445', '349', '1', 'Spring', 2008, 'C '); + insert into takes values('19048', '581', '1', 'Spring', 2005, 'B+'); + insert into takes values('82918', '426', '1', 'Spring', 2006, 'C-'); + insert into takes values('85534', '242', '1', 'Fall', 2009, 'C+'); + insert into takes values('17924', '169', '1', 'Spring', 2007, 'B-'); + insert into takes values('56755', '791', '1', 'Spring', 2006, 'B+'); + insert into takes values('52076', '927', '1', 'Fall', 2002, 'C-'); + insert into takes values('55170', '960', '2', 'Fall', 2006, 'B '); + insert into takes values('7854', '274', '1', 'Fall', 2002, 'A '); + insert into takes values('83747', '603', '1', 'Fall', 2003, 'B-'); + insert into takes values('58594', '972', '1', 'Spring', 2009, 'A '); + insert into takes values('19362', '345', '1', 'Spring', 2008, 'B+'); + insert into takes values('46980', '571', '1', 'Spring', 2004, 'C+'); + insert into takes values('96206', '408', '1', 'Spring', 2007, 'B '); + insert into takes values('89188', '352', '1', 'Spring', 2006, 'C '); + insert into takes values('25256', '867', '1', 'Fall', 2006, 'A-'); + insert into takes values('5298', '200', '1', 'Spring', 2007, 'C '); + insert into takes values('16467', '105', '1', 'Fall', 2009, 'B '); + insert into takes values('50365', '864', '1', 'Spring', 2006, 'A-'); + insert into takes values('80113', '443', '1', 'Spring', 2010, 'C '); + insert into takes values('18367', '443', '2', 'Spring', 2002, 'A '); + insert into takes values('97629', '974', '1', 'Fall', 2003, 'B '); + insert into takes values('4682', '421', '1', 'Fall', 2004, 'A+'); + insert into takes values('80799', '735', '2', 'Spring', 2010, 'C-'); + insert into takes values('48469', '642', '1', 'Fall', 2004, 'A '); + insert into takes values('32369', '158', '2', 'Spring', 2008, 'A+'); + insert into takes values('92693', '604', '1', 'Spring', 2009, 'B '); + insert into takes values('62054', '960', '2', 'Fall', 2006, 'B-'); + insert into takes values('16453', '200', '2', 'Fall', 2002, 'A '); + insert into takes values('68712', '338', '1', 'Spring', 2007, 'C+'); + insert into takes values('85887', '559', '1', 'Fall', 2002, 'C+'); + insert into takes values('99271', '461', '1', 'Fall', 2002, 'A+'); + insert into takes values('82918', '612', '1', 'Fall', 2007, 'B '); + insert into takes values('77000', '362', '2', 'Fall', 2006, 'A+'); + insert into takes values('74672', '408', '2', 'Spring', 2003, 'B+'); + insert into takes values('88577', '400', '2', 'Fall', 2003, 'A-'); + insert into takes values('78552', '959', '1', 'Fall', 2006, 'B '); + insert into takes values('5017', '366', '1', 'Fall', 2005, 'C-'); + insert into takes values('14668', '137', '1', 'Spring', 2002, 'B-'); + insert into takes values('95840', '401', '1', 'Fall', 2003, 'B '); + insert into takes values('57962', '962', '1', 'Spring', 2008, 'B '); + insert into takes values('67017', '242', '1', 'Fall', 2009, 'C-'); + insert into takes values('68779', '426', '1', 'Spring', 2006, 'B+'); + insert into takes values('33791', '735', '1', 'Spring', 2003, 'A+'); + insert into takes values('53152', '962', '1', 'Spring', 2008, 'B-'); + insert into takes values('95027', '482', '1', 'Fall', 2005, 'C-'); + insert into takes values('61364', '867', '2', 'Fall', 2010, 'A-'); + insert into takes values('29140', '642', '1', 'Fall', 2004, 'A '); + insert into takes values('38271', '692', '1', 'Spring', 2010, 'A-'); + insert into takes values('3039', '949', '1', 'Fall', 2007, 'A '); + insert into takes values('38013', '493', '1', 'Spring', 2010, 'C-'); + insert into takes values('43616', '237', '1', 'Spring', 2008, 'C '); + insert into takes values('71025', '867', '1', 'Fall', 2006, 'C-'); + insert into takes values('73213', '581', '1', 'Spring', 2005, 'C '); + insert into takes values('62636', '735', '1', 'Spring', 2003, 'A+'); + insert into takes values('53699', '270', '1', 'Spring', 2010, 'A '); + insert into takes values('56', '242', '1', 'Fall', 2009, 'C+'); + insert into takes values('83398', '927', '1', 'Fall', 2002, 'A+'); + insert into takes values('95175', '561', '1', 'Fall', 2006, 'A+'); + insert into takes values('48678', '795', '1', 'Spring', 2004, 'A '); + insert into takes values('60867', '239', '1', 'Fall', 2006, 'A '); + insert into takes values('66484', '270', '1', 'Spring', 2010, 'B '); + insert into takes values('4383', '791', '1', 'Spring', 2006, 'B+'); + insert into takes values('12979', '443', '1', 'Spring', 2010, 'A '); + insert into takes values('88045', '415', '1', 'Fall', 2010, 'A-'); + insert into takes values('75252', '200', '2', 'Fall', 2002, 'B-'); + insert into takes values('8843', '237', '1', 'Spring', 2008, 'C+'); + insert into takes values('37430', '192', '1', 'Fall', 2002, 'B+'); + insert into takes values('5243', '242', '1', 'Fall', 2009, 'C+'); + insert into takes values('96193', '629', '1', 'Spring', 2003, 'A '); + insert into takes values('282', '631', '1', 'Spring', 2007, 'A '); + insert into takes values('27366', '443', '2', 'Spring', 2002, 'A+'); + insert into takes values('16075', '960', '2', 'Fall', 2006, 'A-'); + insert into takes values('17086', '319', '1', 'Spring', 2003, 'A '); + insert into takes values('20445', '808', '1', 'Fall', 2003, 'C '); + insert into takes values('28252', '274', '1', 'Fall', 2002, 'A '); + insert into takes values('94836', '591', '1', 'Spring', 2005, 'B '); + insert into takes values('10834', '443', '1', 'Spring', 2010, 'A-'); + insert into takes values('67655', '334', '1', 'Fall', 2009, 'A-'); + insert into takes values('20084', '974', '1', 'Fall', 2003, 'A-'); + insert into takes values('52076', '200', '2', 'Fall', 2002, 'A-'); + insert into takes values('7973', '949', '1', 'Fall', 2007, 'B-'); + insert into takes values('7956', '960', '2', 'Fall', 2006, 'C+'); + insert into takes values('54875', '105', '1', 'Fall', 2009, 'C-'); + insert into takes values('57160', '408', '1', 'Spring', 2007, 'B '); + insert into takes values('288', '527', '1', 'Fall', 2004, 'B-'); + insert into takes values('98870', '604', '1', 'Spring', 2009, 'B-'); + insert into takes values('21086', '760', '1', 'Spring', 2004, 'B '); + insert into takes values('55009', '270', '1', 'Spring', 2010, 'B-'); + insert into takes values('99977', '626', '1', 'Fall', 2006, 'C-'); + insert into takes values('38602', '571', '1', 'Spring', 2004, 'A '); + insert into takes values('71529', '559', '1', 'Fall', 2002, 'B '); + insert into takes values('45826', '401', '1', 'Fall', 2003, 'B-'); + insert into takes values('50944', '591', '1', 'Spring', 2005, 'A+'); + insert into takes values('73807', '974', '1', 'Fall', 2003, 'A-'); + insert into takes values('94846', '468', '2', 'Fall', 2007, 'B-'); + insert into takes values('96193', '591', '1', 'Spring', 2005, 'B-'); + insert into takes values('96911', '612', '1', 'Fall', 2007, 'A '); + insert into takes values('66356', '158', '2', 'Spring', 2008, 'C '); + insert into takes values('28409', '482', '1', 'Fall', 2005, 'A '); + insert into takes values('36102', '795', '1', 'Spring', 2004, 'A-'); + insert into takes values('65433', '158', '2', 'Spring', 2008, 'C '); + insert into takes values('71628', '192', '1', 'Fall', 2002, 'B-'); + insert into takes values('69132', '274', '1', 'Fall', 2002, 'C '); + insert into takes values('90234', '349', '1', 'Spring', 2008, 'A '); + insert into takes values('29920', '679', '1', 'Spring', 2010, 'A+'); + insert into takes values('90814', '599', '1', 'Spring', 2003, 'B+'); + insert into takes values('30110', '663', '1', 'Spring', 2005, 'C+'); + insert into takes values('85226', '545', '1', 'Fall', 2001, 'A '); + insert into takes values('83557', '927', '1', 'Fall', 2002, 'B '); + insert into takes values('43495', '468', '2', 'Fall', 2007, 'B+'); + insert into takes values('73186', '875', '1', 'Spring', 2005, 'B+'); + insert into takes values('3640', '349', '1', 'Spring', 2008, 'A+'); + insert into takes values('11101', '338', '1', 'Spring', 2007, 'C-'); + insert into takes values('91132', '735', '1', 'Spring', 2003, 'C-'); + insert into takes values('60406', '200', '2', 'Fall', 2002, 'C '); + insert into takes values('52120', '169', '2', 'Fall', 2002, 'A '); + insert into takes values('29705', '972', '1', 'Spring', 2009, 'C '); + insert into takes values('62520', '401', '1', 'Fall', 2003, 'A '); + insert into takes values('97400', '362', '3', 'Spring', 2008, 'B '); + insert into takes values('91063', '960', '1', 'Fall', 2009, 'A-'); + insert into takes values('22254', '338', '1', 'Spring', 2007, 'C-'); + insert into takes values('89571', '493', '1', 'Spring', 2010, 'A+'); + insert into takes values('17831', '747', '1', 'Spring', 2004, 'A+'); + insert into takes values('45570', '334', '1', 'Fall', 2009, 'C-'); + insert into takes values('72186', '319', '1', 'Spring', 2003, 'B-'); + insert into takes values('69853', '629', '1', 'Spring', 2003, 'B-'); + insert into takes values('59290', '270', '1', 'Spring', 2010, 'C-'); + insert into takes values('78143', '443', '2', 'Spring', 2002, 'B-'); + insert into takes values('72521', '158', '1', 'Fall', 2008, 'B-'); + insert into takes values('38668', '735', '2', 'Spring', 2010, 'B+'); + insert into takes values('64550', '571', '1', 'Spring', 2004, 'B '); + insert into takes values('8912', '760', '1', 'Spring', 2004, 'A-'); + insert into takes values('77898', '571', '1', 'Spring', 2004, 'A-'); + insert into takes values('94569', '603', '1', 'Fall', 2003, 'B-'); + insert into takes values('9183', '843', '1', 'Fall', 2010, 'C+'); + insert into takes values('8457', '400', '1', 'Spring', 2007, 'A '); + insert into takes values('80610', '366', '1', 'Fall', 2005, 'A-'); + insert into takes values('98870', '603', '1', 'Fall', 2003, 'A-'); + insert into takes values('66229', '242', '1', 'Fall', 2009, 'C+'); + insert into takes values('90194', '334', '1', 'Fall', 2009, 'C '); + insert into takes values('51997', '791', '1', 'Spring', 2006, 'C+'); + insert into takes values('92464', '972', '1', 'Spring', 2009, 'C-'); + insert into takes values('28994', '581', '1', 'Spring', 2005, 'B '); + insert into takes values('87280', '237', '1', 'Spring', 2008, 'A '); + insert into takes values('32368', '338', '1', 'Spring', 2007, 'C '); + insert into takes values('41450', '338', '2', 'Spring', 2006, 'B '); + insert into takes values('16453', '496', '1', 'Fall', 2001, 'B-'); + insert into takes values('60406', '349', '1', 'Spring', 2008, 'B '); + insert into takes values('90381', '421', '1', 'Fall', 2004, 'C+'); + insert into takes values('72485', '581', '1', 'Spring', 2005, 'A-'); + insert into takes values('59517', '445', '1', 'Spring', 2001, 'B+'); + insert into takes values('80976', '192', '1', 'Fall', 2002, 'C '); + insert into takes values('61998', '571', '1', 'Spring', 2004, 'A '); + insert into takes values('13365', '791', '1', 'Spring', 2006, 'A '); + insert into takes values('80248', '304', '1', 'Fall', 2009, 'C '); + insert into takes values('35881', '631', '1', 'Spring', 2007, 'B+'); + insert into takes values('7970', '408', '2', 'Spring', 2003, 'A-'); + insert into takes values('49450', '400', '2', 'Fall', 2003, 'B+'); + insert into takes values('68070', '239', '1', 'Fall', 2006, 'B-'); + insert into takes values('20445', '642', '1', 'Fall', 2004, 'B '); + insert into takes values('4682', '400', '1', 'Spring', 2007, 'B-'); + insert into takes values('30474', '192', '1', 'Fall', 2002, 'A+'); + insert into takes values('62549', '237', '2', 'Fall', 2009, 'A '); + insert into takes values('89188', '400', '1', 'Spring', 2007, 'C-'); + insert into takes values('7035', '571', '1', 'Spring', 2004, 'B+'); + insert into takes values('90609', '793', '1', 'Spring', 2002, 'C+'); + insert into takes values('82687', '349', '1', 'Spring', 2008, 'B-'); + insert into takes values('92965', '591', '1', 'Spring', 2005, 'A '); + insert into takes values('15883', '843', '1', 'Fall', 2010, 'B+'); + insert into takes values('35523', '927', '1', 'Fall', 2002, 'A-'); + insert into takes values('64164', '468', '2', 'Fall', 2007, 'A '); + insert into takes values('11377', '274', '1', 'Fall', 2002, 'C+'); + insert into takes values('792', '631', '1', 'Spring', 2007, 'C '); + insert into takes values('22057', '493', '1', 'Spring', 2010, 'B '); + insert into takes values('91799', '760', '1', 'Spring', 2004, 'C-'); + insert into takes values('56598', '362', '2', 'Fall', 2006, 'A '); + insert into takes values('16885', '408', '2', 'Spring', 2003, 'B '); + insert into takes values('27662', '663', '1', 'Spring', 2005, 'A '); + insert into takes values('76049', '489', '1', 'Fall', 2007, 'B '); + insert into takes values('47001', '808', '1', 'Fall', 2003, 'A '); + insert into takes values('67560', '421', '1', 'Fall', 2004, 'B-'); + insert into takes values('57156', '696', '1', 'Spring', 2002, 'B+'); + insert into takes values('16528', '843', '1', 'Fall', 2010, 'A '); + insert into takes values('89000', '735', '2', 'Spring', 2010, 'B+'); + insert into takes values('84808', '867', '1', 'Fall', 2006, 'C-'); + insert into takes values('23475', '274', '1', 'Fall', 2002, 'B+'); + insert into takes values('9993', '421', '1', 'Fall', 2004, 'A-'); + insert into takes values('57334', '105', '1', 'Fall', 2009, 'C-'); + insert into takes values('10663', '192', '1', 'Fall', 2002, 'C+'); + insert into takes values('80912', '362', '3', 'Spring', 2008, 'C-'); + insert into takes values('85602', '426', '1', 'Spring', 2006, 'B-'); + insert into takes values('20099', '158', '2', 'Spring', 2008, 'C-'); + insert into takes values('32954', '169', '2', 'Fall', 2002, 'C '); + insert into takes values('51923', '338', '2', 'Spring', 2006, 'A+'); + insert into takes values('36995', '959', '1', 'Fall', 2006, 'A '); + insert into takes values('15144', '527', '1', 'Fall', 2004, 'B '); + insert into takes values('57238', '400', '1', 'Spring', 2007, 'C+'); + insert into takes values('36926', '748', '1', 'Fall', 2003, 'B-'); + insert into takes values('99719', '421', '1', 'Fall', 2004, 'C '); + insert into takes values('64259', '362', '3', 'Spring', 2008, 'C-'); + insert into takes values('35220', '239', '1', 'Fall', 2006, 'B+'); + insert into takes values('72177', '802', '1', 'Spring', 2003, 'A-'); + insert into takes values('66293', '489', '1', 'Fall', 2007, 'C+'); + insert into takes values('80799', '545', '1', 'Fall', 2001, 'A-'); + insert into takes values('36052', '735', '2', 'Spring', 2010, 'A-'); + insert into takes values('14628', '571', '1', 'Spring', 2004, 'C-'); + insert into takes values('45494', '629', '1', 'Spring', 2003, 'A '); + insert into takes values('31137', '338', '1', 'Spring', 2007, 'B '); + insert into takes values('41818', '105', '2', 'Fall', 2002, 'A+'); + insert into takes values('29091', '791', '1', 'Spring', 2006, 'C '); + insert into takes values('91851', '679', '1', 'Spring', 2010, 'A-'); + insert into takes values('63361', '408', '2', 'Spring', 2003, 'C+'); + insert into takes values('8843', '962', '1', 'Spring', 2008, 'C '); + insert into takes values('25528', '366', '1', 'Fall', 2005, 'C '); + insert into takes values('19862', '376', '1', 'Fall', 2006, 'B+'); + insert into takes values('86969', '991', '1', 'Spring', 2008, 'A+'); + insert into takes values('72358', '345', '1', 'Spring', 2008, 'B+'); + insert into takes values('12563', '581', '1', 'Spring', 2005, 'B-'); + insert into takes values('92417', '468', '2', 'Fall', 2007, 'A-'); + insert into takes values('80941', '237', '2', 'Fall', 2009, 'A-'); + insert into takes values('75794', '642', '1', 'Fall', 2004, 'C+'); + insert into takes values('86075', '408', '2', 'Spring', 2003, 'C '); + insert into takes values('15613', '626', '1', 'Fall', 2006, 'A+'); + insert into takes values('73492', '408', '2', 'Spring', 2003, 'A+'); + insert into takes values('56080', '867', '2', 'Fall', 2010, 'B '); + insert into takes values('64593', '242', '1', 'Fall', 2009, 'A '); + insert into takes values('86344', '962', '1', 'Spring', 2008, 'B '); + insert into takes values('26147', '457', '1', 'Spring', 2001, 'B '); + insert into takes values('92839', '864', '1', 'Spring', 2006, 'C+'); + insert into takes values('26473', '200', '1', 'Spring', 2007, 'B+'); + insert into takes values('77580', '105', '2', 'Fall', 2002, 'C '); + insert into takes values('91992', '443', '1', 'Spring', 2010, 'B+'); + insert into takes values('14639', '349', '1', 'Spring', 2008, 'B '); + insert into takes values('5824', '421', '1', 'Fall', 2004, 'B+'); + insert into takes values('18636', '338', '2', 'Spring', 2006, 'B-'); + insert into takes values('75938', '864', '1', 'Spring', 2006, 'A '); + insert into takes values('33791', '237', '2', 'Fall', 2009, 'A '); + insert into takes values('36019', '376', '1', 'Fall', 2006, 'A-'); + insert into takes values('66259', '169', '1', 'Spring', 2007, 'A+'); + insert into takes values('97694', '747', '1', 'Spring', 2004, 'A-'); + insert into takes values('66212', '237', '1', 'Spring', 2008, 'A-'); + insert into takes values('68248', '604', '1', 'Spring', 2009, 'C+'); + insert into takes values('4034', '349', '1', 'Spring', 2008, 'B '); + insert into takes values('46074', '612', '1', 'Fall', 2007, 'B+'); + insert into takes values('65241', '239', '1', 'Fall', 2006, 'B '); + insert into takes values('71025', '105', '1', 'Fall', 2009, 'B-'); + insert into takes values('66469', '867', '2', 'Fall', 2010, 'A '); + insert into takes values('60762', '793', '1', 'Spring', 2002, 'C+'); + insert into takes values('59117', '559', '1', 'Fall', 2002, 'A-'); + insert into takes values('21395', '338', '1', 'Spring', 2007, 'C+'); + insert into takes values('41973', '852', '1', 'Spring', 2008, 'B '); + insert into takes values('888', '482', '1', 'Fall', 2005, 'C+'); + insert into takes values('78858', '493', '1', 'Spring', 2010, 'B-'); + insert into takes values('86674', '366', '1', 'Fall', 2005, 'C '); + insert into takes values('82697', '237', '2', 'Fall', 2009, 'B-'); + insert into takes values('61414', '612', '1', 'Fall', 2007, 'C+'); + insert into takes values('72177', '852', '1', 'Spring', 2008, 'B '); + insert into takes values('37653', '137', '1', 'Spring', 2002, 'B-'); + insert into takes values('63560', '694', '1', 'Fall', 2002, 'B+'); + insert into takes values('97041', '748', '1', 'Fall', 2003, 'A '); + insert into takes values('37350', '400', '1', 'Spring', 2007, 'B+'); + insert into takes values('83696', '192', '1', 'Fall', 2002, 'A+'); + insert into takes values('69952', '421', '1', 'Fall', 2004, 'A+'); + insert into takes values('45359', '663', '1', 'Spring', 2005, 'C '); + insert into takes values('22057', '461', '1', 'Fall', 2002, 'A-'); + insert into takes values('69732', '137', '1', 'Spring', 2002, 'A '); + insert into takes values('11422', '629', '1', 'Spring', 2003, 'A-'); + insert into takes values('33651', '972', '1', 'Spring', 2009, 'C+'); + insert into takes values('1367', '270', '1', 'Spring', 2010, 'C+'); + insert into takes values('70021', '808', '1', 'Fall', 2003, 'A+'); + insert into takes values('97023', '468', '2', 'Fall', 2007, 'A '); + insert into takes values('52929', '496', '1', 'Fall', 2001, 'C-'); + insert into takes values('85910', '401', '1', 'Fall', 2003, 'B-'); + insert into takes values('53185', '408', '2', 'Spring', 2003, 'C+'); + insert into takes values('65688', '571', '1', 'Spring', 2004, 'B '); + insert into takes values('61065', '974', '1', 'Fall', 2003, 'B+'); + insert into takes values('43616', '679', '1', 'Spring', 2010, 'C '); + insert into takes values('72622', '793', '1', 'Spring', 2002, 'B-'); + insert into takes values('57787', '679', '1', 'Spring', 2010, 'C '); + insert into takes values('63289', '415', '1', 'Fall', 2010, 'A '); + insert into takes values('8819', '493', '1', 'Spring', 2010, 'B-'); + insert into takes values('52076', '603', '1', 'Fall', 2003, 'A '); + insert into takes values('50537', '426', '1', 'Spring', 2006, 'B+'); + insert into takes values('83398', '366', '1', 'Fall', 2005, 'C '); + insert into takes values('51975', '581', '1', 'Spring', 2005, 'C-'); + insert into takes values('19735', '843', '1', 'Fall', 2010, 'C '); + insert into takes values('9953', '105', '1', 'Fall', 2009, 'B-'); + insert into takes values('2848', '105', '2', 'Fall', 2002, 'A '); + insert into takes values('45817', '960', '1', 'Fall', 2009, 'A '); + insert into takes values('67725', '702', '1', 'Spring', 2001, 'A+'); + insert into takes values('38676', '867', '2', 'Fall', 2010, 'B '); + insert into takes values('50365', '760', '1', 'Spring', 2004, 'A+'); + insert into takes values('94990', '527', '1', 'Fall', 2004, 'B+'); + insert into takes values('25380', '791', '1', 'Spring', 2006, 'B+'); + insert into takes values('94535', '795', '1', 'Spring', 2004, 'A+'); + insert into takes values('30723', '349', '1', 'Spring', 2008, 'C '); + insert into takes values('14065', '468', '2', 'Fall', 2007, 'A '); + insert into takes values('86127', '408', '2', 'Spring', 2003, 'C-'); + insert into takes values('91343', '426', '1', 'Spring', 2006, 'B+'); + insert into takes values('97629', '445', '1', 'Spring', 2001, 'C '); + insert into takes values('21008', '642', '1', 'Fall', 2004, 'A '); + insert into takes values('32065', '545', '1', 'Fall', 2001, 'B-'); + insert into takes values('41675', '461', '1', 'Fall', 2002, 'A+'); + insert into takes values('75082', '960', '2', 'Fall', 2006, 'A-'); + insert into takes values('63361', '704', '1', 'Spring', 2008, 'A-'); + insert into takes values('39925', '867', '2', 'Fall', 2010, 'B '); + insert into takes values('26147', '486', '1', 'Fall', 2009, 'A '); + insert into takes values('92839', '158', '1', 'Fall', 2008, 'A-'); + insert into takes values('1737', '867', '1', 'Fall', 2006, 'B-'); + insert into takes values('86375', '200', '2', 'Fall', 2002, 'C+'); + insert into takes values('56882', '702', '1', 'Spring', 2001, 'A+'); + insert into takes values('81031', '704', '1', 'Spring', 2008, 'B+'); + insert into takes values('20378', '545', '1', 'Fall', 2001, 'A-'); + insert into takes values('58307', '696', '1', 'Spring', 2002, 'B+'); + insert into takes values('65901', '486', '1', 'Fall', 2009, 'C '); + insert into takes values('62716', '642', '1', 'Fall', 2004, 'C '); + insert into takes values('59539', '274', '1', 'Fall', 2002, 'B-'); + insert into takes values('12214', '345', '1', 'Spring', 2008, 'A+'); + insert into takes values('63243', '793', '1', 'Spring', 2002, 'A-'); + insert into takes values('3127', '401', '1', 'Fall', 2003, 'C '); + insert into takes values('14628', '338', '1', 'Spring', 2007, 'B '); + insert into takes values('22345', '493', '1', 'Spring', 2010, 'A+'); + insert into takes values('1827', '426', '1', 'Spring', 2006, 'B+'); + insert into takes values('36244', '482', '1', 'Fall', 2005, 'C '); + insert into takes values('57431', '468', '2', 'Fall', 2007, 'B+'); + insert into takes values('93354', '313', '1', 'Fall', 2010, 'C-'); + insert into takes values('62784', '242', '1', 'Fall', 2009, 'C-'); + insert into takes values('95366', '760', '1', 'Spring', 2004, 'C-'); + insert into takes values('24784', '239', '1', 'Fall', 2006, 'A '); + insert into takes values('29031', '237', '2', 'Fall', 2009, 'A-'); + insert into takes values('45817', '362', '2', 'Fall', 2006, 'C-'); + insert into takes values('78454', '349', '1', 'Spring', 2008, 'C '); + insert into takes values('55915', '864', '1', 'Spring', 2006, 'B '); + insert into takes values('17133', '527', '1', 'Fall', 2004, 'C+'); + insert into takes values('73186', '270', '1', 'Spring', 2010, 'B-'); + insert into takes values('65258', '545', '1', 'Fall', 2001, 'C-'); + insert into takes values('15024', '852', '1', 'Spring', 2008, 'B-'); + insert into takes values('43123', '747', '1', 'Spring', 2004, 'B-'); + insert into takes values('5005', '561', '1', 'Fall', 2006, 'C-'); + insert into takes values('70572', '443', '1', 'Spring', 2010, 'A+'); + insert into takes values('71025', '426', '1', 'Spring', 2006, 'B '); + insert into takes values('9360', '795', '1', 'Spring', 2004, 'B-'); + insert into takes values('30182', '735', '2', 'Spring', 2010, 'B-'); + insert into takes values('28738', '482', '1', 'Fall', 2005, 'A '); + insert into takes values('10814', '352', '1', 'Spring', 2006, 'A-'); + insert into takes values('98047', '694', '1', 'Fall', 2002, 'C-'); + insert into takes values('49205', '791', '1', 'Spring', 2006, 'B '); + insert into takes values('51084', '192', '1', 'Fall', 2002, 'B '); + insert into takes values('77588', '696', '1', 'Spring', 2002, 'B-'); + insert into takes values('87246', '629', '1', 'Spring', 2003, 'C '); + insert into takes values('33107', '974', '1', 'Fall', 2003, 'A-'); + insert into takes values('72055', '559', '1', 'Fall', 2002, 'C+'); + insert into takes values('52741', '631', '1', 'Spring', 2007, 'B-'); + insert into takes values('60224', '105', '1', 'Fall', 2009, 'A '); + insert into takes values('30252', '642', '1', 'Fall', 2004, 'C+'); + insert into takes values('40932', '401', '1', 'Fall', 2003, 'C-'); + insert into takes values('32954', '852', '1', 'Spring', 2008, 'B+'); + insert into takes values('63390', '304', '1', 'Fall', 2009, 'B+'); + insert into takes values('88472', '443', '1', 'Spring', 2010, 'B '); + insert into takes values('29665', '735', '1', 'Spring', 2003, 'C-'); + insert into takes values('30334', '461', '1', 'Fall', 2002, 'A+'); + insert into takes values('83728', '631', '1', 'Spring', 2007, 'C-'); + insert into takes values('10705', '795', '1', 'Spring', 2004, 'C '); + insert into takes values('30723', '959', '1', 'Fall', 2006, 'B+'); + insert into takes values('49391', '791', '1', 'Spring', 2006, 'C '); + insert into takes values('88140', '137', '1', 'Spring', 2002, 'C-'); + insert into takes values('62754', '545', '1', 'Fall', 2001, 'C-'); + insert into takes values('64155', '603', '1', 'Fall', 2003, 'A-'); + insert into takes values('9947', '599', '1', 'Spring', 2003, 'A-'); + insert into takes values('17397', '852', '1', 'Spring', 2008, 'B '); + insert into takes values('25143', '927', '1', 'Fall', 2002, 'B+'); + insert into takes values('23934', '960', '2', 'Fall', 2006, 'C+'); + insert into takes values('30341', '443', '2', 'Spring', 2002, 'B+'); + insert into takes values('3576', '867', '1', 'Fall', 2006, 'A+'); + insert into takes values('94522', '603', '1', 'Fall', 2003, 'A+'); + insert into takes values('49611', '362', '1', 'Fall', 2005, 'C-'); + insert into takes values('68330', '237', '1', 'Spring', 2008, 'C+'); + insert into takes values('39310', '400', '1', 'Spring', 2007, 'A-'); + insert into takes values('21126', '527', '1', 'Fall', 2004, 'A+'); + insert into takes values('60762', '959', '1', 'Fall', 2006, 'C-'); + insert into takes values('75231', '867', '1', 'Fall', 2006, 'B+'); + insert into takes values('94371', '415', '1', 'Fall', 2010, 'B+'); + insert into takes values('49618', '415', '1', 'Fall', 2010, 'C-'); + insert into takes values('39876', '626', '1', 'Fall', 2006, 'A '); + insert into takes values('51923', '559', '1', 'Fall', 2002, 'B-'); + insert into takes values('56941', '991', '1', 'Spring', 2008, 'A-'); + insert into takes values('8819', '867', '1', 'Fall', 2006, 'A-'); + insert into takes values('73165', '747', '1', 'Spring', 2004, 'B+'); + insert into takes values('53451', '158', '2', 'Spring', 2008, 'C '); + insert into takes values('8426', '747', '1', 'Spring', 2004, 'C '); + insert into takes values('57185', '137', '1', 'Spring', 2002, 'C+'); + insert into takes values('71878', '476', '1', 'Fall', 2010, 'A-'); + insert into takes values('22396', '400', '2', 'Fall', 2003, 'A-'); + insert into takes values('52120', '735', '2', 'Spring', 2010, 'C '); + insert into takes values('78314', '591', '1', 'Spring', 2005, 'B+'); + insert into takes values('83871', '443', '1', 'Spring', 2010, 'C-'); + insert into takes values('16405', '362', '1', 'Fall', 2005, 'B '); + insert into takes values('9360', '319', '1', 'Spring', 2003, 'C-'); + insert into takes values('107', '443', '2', 'Spring', 2002, 'C-'); + insert into takes values('66494', '959', '1', 'Fall', 2006, 'C '); + insert into takes values('90448', '461', '1', 'Fall', 2002, 'C '); + insert into takes values('68150', '604', '1', 'Spring', 2009, 'A+'); + insert into takes values('96203', '864', '1', 'Spring', 2006, 'A '); + insert into takes values('21556', '274', '1', 'Fall', 2002, 'C '); + insert into takes values('58594', '408', '2', 'Spring', 2003, 'A+'); + insert into takes values('51538', '748', '1', 'Fall', 2003, 'B '); + insert into takes values('71287', '304', '1', 'Fall', 2009, 'B '); + insert into takes values('30164', '400', '2', 'Fall', 2003, 'B '); + insert into takes values('99226', '959', '1', 'Fall', 2006, 'A+'); + insert into takes values('9495', '482', '1', 'Fall', 2005, 'A+'); + insert into takes values('32744', '747', '1', 'Spring', 2004, 'C-'); + insert into takes values('86573', '349', '1', 'Spring', 2008, 'A+'); + insert into takes values('63860', '313', '1', 'Fall', 2010, 'C+'); + insert into takes values('96193', '334', '1', 'Fall', 2009, 'C '); + insert into takes values('85754', '270', '1', 'Spring', 2010, 'A '); + insert into takes values('43616', '991', '1', 'Spring', 2008, 'A-'); + insert into takes values('11682', '867', '2', 'Fall', 2010, 'B-'); + insert into takes values('39876', '581', '1', 'Spring', 2005, 'A-'); + insert into takes values('17339', '692', '1', 'Spring', 2010, 'C+'); + insert into takes values('3487', '843', '1', 'Fall', 2010, 'B-'); + insert into takes values('92442', '457', '1', 'Spring', 2001, 'C '); + insert into takes values('11076', '642', '1', 'Fall', 2004, 'A '); + insert into takes values('12078', '362', '2', 'Fall', 2006, 'A-'); + insert into takes values('7035', '443', '1', 'Spring', 2010, 'B '); + insert into takes values('4508', '960', '2', 'Fall', 2006, 'C '); + insert into takes values('41832', '496', '1', 'Fall', 2001, 'A-'); + insert into takes values('93986', '415', '1', 'Fall', 2010, 'C+'); + insert into takes values('44985', '612', '1', 'Fall', 2007, 'C-'); + insert into takes values('91091', '400', '2', 'Fall', 2003, 'B+'); + insert into takes values('92864', '927', '1', 'Fall', 2002, 'B '); + insert into takes values('25942', '137', '1', 'Spring', 2002, 'A-'); + insert into takes values('83398', '791', '1', 'Spring', 2006, 'C-'); + insert into takes values('85602', '867', '1', 'Fall', 2006, 'C+'); + insert into takes values('11057', '802', '1', 'Spring', 2003, 'A '); + insert into takes values('8140', '304', '1', 'Fall', 2009, 'B+'); + insert into takes values('14596', '313', '1', 'Fall', 2010, 'C '); + insert into takes values('96227', '591', '1', 'Spring', 2005, 'C+'); + insert into takes values('12236', '867', '2', 'Fall', 2010, 'C+'); + insert into takes values('44706', '105', '2', 'Fall', 2002, 'A '); + insert into takes values('55170', '274', '1', 'Fall', 2002, 'A '); + insert into takes values('78454', '604', '1', 'Spring', 2009, 'C+'); + insert into takes values('50702', '415', '1', 'Fall', 2010, 'A '); + insert into takes values('28133', '702', '1', 'Spring', 2001, 'C '); + insert into takes values('70924', '274', '1', 'Fall', 2002, 'C+'); + insert into takes values('40992', '962', '1', 'Spring', 2008, 'C-'); + insert into takes values('68280', '461', '1', 'Fall', 2002, 'C-'); + insert into takes values('11966', '169', '2', 'Fall', 2002, 'C+'); + insert into takes values('21009', '571', '1', 'Spring', 2004, 'B-'); + insert into takes values('66753', '802', '1', 'Spring', 2003, 'B-'); + insert into takes values('83836', '486', '1', 'Fall', 2009, 'C '); + insert into takes values('55009', '457', '1', 'Spring', 2001, 'A-'); + insert into takes values('67371', '852', '1', 'Spring', 2008, 'C '); + insert into takes values('80799', '400', '2', 'Fall', 2003, 'A+'); + insert into takes values('78782', '443', '2', 'Spring', 2002, 'B-'); + insert into takes values('32385', '747', '1', 'Spring', 2004, 'C-'); + insert into takes values('52707', '334', '1', 'Fall', 2009, 'A+'); + insert into takes values('94178', '415', '1', 'Fall', 2010, 'A-'); + insert into takes values('61920', '696', '1', 'Spring', 2002, 'C-'); + insert into takes values('71287', '962', '1', 'Spring', 2008, 'B+'); + insert into takes values('32345', '949', '1', 'Fall', 2007, 'A-'); + insert into takes values('19603', '561', '1', 'Fall', 2006, 'C '); + insert into takes values('69632', '362', '1', 'Fall', 2005, 'B+'); + insert into takes values('10727', '696', '1', 'Spring', 2002, 'B+'); + insert into takes values('18675', '626', '1', 'Fall', 2006, 'A '); + insert into takes values('44816', '362', '2', 'Fall', 2006, 'A '); + insert into takes values('27366', '376', '1', 'Fall', 2006, 'A '); + insert into takes values('98056', '893', '1', 'Fall', 2007, 'A '); + insert into takes values('25187', '426', '1', 'Spring', 2006, 'B-'); + insert into takes values('19917', '735', '1', 'Spring', 2003, 'B-'); + insert into takes values('15980', '694', '1', 'Fall', 2002, 'B '); + insert into takes values('36881', '443', '2', 'Spring', 2002, 'C+'); + insert into takes values('21337', '793', '1', 'Spring', 2002, 'A+'); + insert into takes values('99268', '949', '1', 'Fall', 2007, 'C+'); + insert into takes values('19048', '867', '2', 'Fall', 2010, 'B-'); + insert into takes values('51008', '561', '1', 'Fall', 2006, 'B+'); + insert into takes values('63538', '603', '1', 'Fall', 2003, 'B+'); + insert into takes values('15430', '313', '1', 'Fall', 2010, 'C+'); + insert into takes values('73387', '949', '1', 'Fall', 2007, 'B '); + insert into takes values('61166', '702', '1', 'Spring', 2001, 'B+'); + insert into takes values('42991', '991', '1', 'Spring', 2008, 'B-'); + insert into takes values('53799', '421', '1', 'Fall', 2004, 'B-'); + insert into takes values('74840', '237', '2', 'Fall', 2009, 'C-'); + insert into takes values('88169', '362', '2', 'Fall', 2006, 'C-'); + insert into takes values('54875', '401', '1', 'Fall', 2003, 'C '); + insert into takes values('22396', '242', '1', 'Fall', 2009, 'C-'); + insert into takes values('55698', '400', '2', 'Fall', 2003, 'B+'); + insert into takes values('95099', '631', '1', 'Spring', 2007, 'C+'); + insert into takes values('15086', '864', '1', 'Spring', 2006, 'B-'); + insert into takes values('60984', '376', '1', 'Fall', 2006, 'A+'); + insert into takes values('76173', '137', '1', 'Spring', 2002, 'A-'); + insert into takes values('8378', '599', '1', 'Spring', 2003, 'C '); + insert into takes values('67017', '852', '1', 'Spring', 2008, 'B+'); + insert into takes values('24746', '158', '1', 'Fall', 2008, 'C '); + insert into takes values('78758', '493', '1', 'Spring', 2010, 'A-'); + insert into takes values('96067', '571', '1', 'Spring', 2004, 'B+'); + insert into takes values('64039', '949', '1', 'Fall', 2007, 'B+'); + insert into takes values('81031', '274', '1', 'Fall', 2002, 'B+'); + insert into takes values('52120', '200', '1', 'Spring', 2007, 'B '); + insert into takes values('42298', '591', '1', 'Spring', 2005, 'C '); + insert into takes values('87831', '376', '1', 'Fall', 2006, 'A-'); + insert into takes values('73206', '875', '1', 'Spring', 2005, 'B+'); + insert into takes values('37856', '599', '1', 'Spring', 2003, 'C-'); + insert into takes values('84410', '702', '1', 'Spring', 2001, 'A+'); + insert into takes values('71768', '571', '1', 'Spring', 2004, 'C+'); + insert into takes values('2201', '704', '1', 'Spring', 2008, 'B+'); + insert into takes values('15030', '631', '1', 'Spring', 2007, 'B+'); + insert into takes values('13753', '376', '1', 'Fall', 2006, 'A '); + insert into takes values('25785', '345', '1', 'Spring', 2008, 'C+'); + insert into takes values('23344', '867', '1', 'Fall', 2006, 'A '); + insert into takes values('50467', '642', '1', 'Fall', 2004, 'C '); + insert into takes values('37759', '313', '1', 'Fall', 2010, 'A+'); + insert into takes values('24116', '362', '3', 'Spring', 2008, 'A '); + insert into takes values('33645', '158', '2', 'Spring', 2008, 'B '); + insert into takes values('21225', '169', '1', 'Spring', 2007, 'A '); + insert into takes values('69952', '747', '1', 'Spring', 2004, 'A-'); + insert into takes values('79329', '808', '1', 'Fall', 2003, 'C '); + insert into takes values('33201', '400', '1', 'Spring', 2007, 'A+'); + insert into takes values('10267', '192', '1', 'Fall', 2002, 'B+'); + insert into takes values('463', '747', '1', 'Spring', 2004, 'B-'); + insert into takes values('85451', '960', '1', 'Fall', 2009, 'C+'); + insert into takes values('44551', '366', '1', 'Fall', 2005, 'A+'); + insert into takes values('98843', '421', '1', 'Fall', 2004, 'C+'); + insert into takes values('21101', '408', '1', 'Spring', 2007, 'C '); + insert into takes values('47824', '629', '1', 'Spring', 2003, 'C '); + insert into takes values('85226', '468', '1', 'Fall', 2005, 'A+'); + insert into takes values('91978', '105', '2', 'Fall', 2002, 'C '); + insert into takes values('83691', '258', '1', 'Fall', 2007, 'B '); + insert into takes values('27236', '808', '1', 'Fall', 2003, 'C+'); + insert into takes values('51084', '867', '2', 'Fall', 2010, 'B+'); + insert into takes values('48778', '663', '1', 'Spring', 2005, 'B '); + insert into takes values('80227', '599', '1', 'Spring', 2003, 'B-'); + insert into takes values('83204', '663', '1', 'Spring', 2005, 'B+'); + insert into takes values('8912', '735', '1', 'Spring', 2003, 'A '); + insert into takes values('1922', '974', '1', 'Fall', 2003, 'C-'); + insert into takes values('17831', '626', '1', 'Fall', 2006, 'C+'); + insert into takes values('67560', '527', '1', 'Fall', 2004, 'B-'); + insert into takes values('25718', '270', '1', 'Spring', 2010, 'B '); + insert into takes values('8860', '158', '1', 'Fall', 2008, 'C '); + insert into takes values('12078', '443', '1', 'Spring', 2010, 'C '); + insert into takes values('22258', '137', '1', 'Spring', 2002, 'C '); + insert into takes values('43658', '962', '1', 'Spring', 2008, 'C-'); + insert into takes values('77172', '559', '1', 'Fall', 2002, 'B-'); + insert into takes values('47025', '443', '2', 'Spring', 2002, 'B+'); + insert into takes values('32483', '461', '1', 'Fall', 2002, 'B+'); + insert into takes values('68649', '352', '1', 'Spring', 2006, 'A-'); + insert into takes values('80698', '694', '1', 'Fall', 2002, 'C '); + insert into takes values('43505', '476', '1', 'Fall', 2010, 'B '); + insert into takes values('64893', '408', '2', 'Spring', 2003, 'B+'); + insert into takes values('13217', '991', '1', 'Spring', 2008, 'A-'); + insert into takes values('16543', '482', '1', 'Fall', 2005, 'C+'); + insert into takes values('94620', '496', '1', 'Fall', 2001, 'A '); + insert into takes values('9933', '239', '1', 'Fall', 2006, 'C+'); + insert into takes values('13028', '489', '1', 'Fall', 2007, 'B+'); + insert into takes values('43032', '581', '1', 'Spring', 2005, 'A-'); + insert into takes values('25077', '489', '1', 'Fall', 2007, 'A+'); + insert into takes values('79469', '694', '1', 'Fall', 2002, 'B '); + insert into takes values('14182', '991', '1', 'Spring', 2008, 'C+'); + insert into takes values('65703', '527', '1', 'Fall', 2004, 'A-'); + insert into takes values('7390', '476', '1', 'Fall', 2010, 'C '); + insert into takes values('14284', '679', '1', 'Spring', 2010, 'A-'); + insert into takes values('86529', '960', '2', 'Fall', 2006, 'A-'); + insert into takes values('95697', '400', '2', 'Fall', 2003, 'B '); + insert into takes values('52019', '962', '1', 'Spring', 2008, 'C '); + insert into takes values('71389', '169', '1', 'Spring', 2007, 'C '); + insert into takes values('54728', '559', '1', 'Fall', 2002, 'C+'); + insert into takes values('31250', '960', '1', 'Fall', 2009, 'C '); + insert into takes values('56003', '604', '1', 'Spring', 2009, 'C '); + insert into takes values('42114', '735', '1', 'Spring', 2003, 'A '); + insert into takes values('96895', '482', '1', 'Fall', 2005, 'B-'); + insert into takes values('46441', '401', '1', 'Fall', 2003, 'B-'); + insert into takes values('94894', '791', '1', 'Spring', 2006, 'B-'); + insert into takes values('84239', '527', '1', 'Fall', 2004, 'B '); + insert into takes values('82687', '158', '2', 'Spring', 2008, 'C '); + insert into takes values('22226', '304', '1', 'Fall', 2009, 'B+'); + insert into takes values('51817', '679', '1', 'Spring', 2010, 'B+'); + insert into takes values('45359', '702', '1', 'Spring', 2001, 'A '); + insert into takes values('65144', '864', '1', 'Spring', 2006, 'C+'); + insert into takes values('32376', '692', '1', 'Spring', 2010, 'C '); + insert into takes values('9183', '561', '1', 'Fall', 2006, 'A-'); + insert into takes values('35462', '445', '1', 'Spring', 2001, 'A+'); + insert into takes values('5925', '345', '1', 'Spring', 2008, 'A+'); + insert into takes values('61332', '852', '1', 'Spring', 2008, 'A '); + insert into takes values('71878', '702', '1', 'Spring', 2001, 'C-'); + insert into takes values('19362', '702', '1', 'Spring', 2001, 'A-'); + insert into takes values('68150', '694', '1', 'Fall', 2002, 'C-'); + insert into takes values('32369', '200', '2', 'Fall', 2002, 'B+'); + insert into takes values('41965', '338', '2', 'Spring', 2006, 'B+'); + insert into takes values('9495', '496', '1', 'Fall', 2001, 'A '); + insert into takes values('65205', '105', '2', 'Fall', 2002, 'A-'); + insert into takes values('26102', '408', '1', 'Spring', 2007, 'B-'); + insert into takes values('91442', '445', '1', 'Spring', 2001, 'B+'); + insert into takes values('24932', '760', '1', 'Spring', 2004, 'C '); + insert into takes values('28518', '468', '2', 'Fall', 2007, 'B-'); + insert into takes values('13880', '603', '1', 'Fall', 2003, 'A '); + insert into takes values('38668', '313', '1', 'Fall', 2010, 'B '); + insert into takes values('91799', '959', '1', 'Fall', 2006, 'C-'); + insert into takes values('82039', '200', '1', 'Spring', 2007, 'C-'); + insert into takes values('98315', '704', '1', 'Spring', 2008, 'B '); + insert into takes values('55329', '626', '1', 'Fall', 2006, 'B+'); + insert into takes values('64082', '545', '1', 'Fall', 2001, 'A '); + insert into takes values('10267', '362', '2', 'Fall', 2006, 'B-'); + insert into takes values('9947', '735', '1', 'Spring', 2003, 'C '); + insert into takes values('69132', '200', '2', 'Fall', 2002, 'A+'); + insert into takes values('33645', '304', '1', 'Fall', 2009, 'B-'); + insert into takes values('29091', '468', '2', 'Fall', 2007, 'A '); + insert into takes values('95366', '545', '1', 'Fall', 2001, 'B-'); + insert into takes values('16849', '461', '1', 'Fall', 2002, 'C '); + insert into takes values('28738', '362', '2', 'Fall', 2006, 'C+'); + insert into takes values('18709', '496', '1', 'Fall', 2001, 'A '); + insert into takes values('65681', '545', '1', 'Fall', 2001, 'B+'); + insert into takes values('68096', '747', '1', 'Spring', 2004, 'C-'); + insert into takes values('62636', '338', '2', 'Spring', 2006, 'C-'); + insert into takes values('435', '642', '1', 'Fall', 2004, 'B-'); + insert into takes values('79170', '237', '1', 'Spring', 2008, 'A-'); + insert into takes values('35935', '443', '2', 'Spring', 2002, 'A-'); + insert into takes values('96772', '795', '1', 'Spring', 2004, 'B-'); + insert into takes values('24325', '352', '1', 'Spring', 2006, 'A '); + insert into takes values('75878', '791', '1', 'Spring', 2006, 'B-'); + insert into takes values('81150', '489', '1', 'Fall', 2007, 'C-'); + insert into takes values('92839', '696', '1', 'Spring', 2002, 'C-'); + insert into takes values('26473', '169', '1', 'Spring', 2007, 'A+'); + insert into takes values('28994', '169', '2', 'Fall', 2002, 'A '); + insert into takes values('77130', '808', '1', 'Fall', 2003, 'A+'); + insert into takes values('18740', '482', '1', 'Fall', 2005, 'A+'); + insert into takes values('16467', '793', '1', 'Spring', 2002, 'C '); + insert into takes values('17339', '313', '1', 'Fall', 2010, 'C '); + insert into takes values('75510', '158', '2', 'Spring', 2008, 'C-'); + insert into takes values('57985', '443', '1', 'Spring', 2010, 'C '); + insert into takes values('67018', '401', '1', 'Fall', 2003, 'A+'); + insert into takes values('63645', '400', '2', 'Fall', 2003, 'C '); + insert into takes values('55170', '735', '1', 'Spring', 2003, 'C-'); + insert into takes values('72165', '599', '1', 'Spring', 2003, 'A '); + insert into takes values('57135', '864', '1', 'Spring', 2006, 'A+'); + insert into takes values('28252', '457', '1', 'Spring', 2001, 'B+'); + insert into takes values('80799', '468', '1', 'Fall', 2005, 'C+'); + insert into takes values('93366', '426', '1', 'Spring', 2006, 'B '); + insert into takes values('28133', '158', '1', 'Fall', 2008, 'C-'); + insert into takes values('56299', '972', '1', 'Spring', 2009, 'A '); + insert into takes values('27804', '747', '1', 'Spring', 2004, 'B-'); + insert into takes values('59172', '489', '1', 'Fall', 2007, 'B+'); + insert into takes values('16075', '242', '1', 'Fall', 2009, 'A+'); + insert into takes values('27804', '376', '1', 'Fall', 2006, 'B-'); + insert into takes values('1726', '791', '1', 'Spring', 2006, 'B-'); + insert into takes values('69285', '972', '1', 'Spring', 2009, 'C-'); + insert into takes values('50702', '200', '1', 'Spring', 2007, 'C '); + insert into takes values('48850', '735', '1', 'Spring', 2003, 'A+'); + insert into takes values('37586', '991', '1', 'Spring', 2008, 'A+'); + insert into takes values('77234', '468', '1', 'Fall', 2005, 'B+'); + insert into takes values('11510', '376', '1', 'Fall', 2006, 'A+'); + insert into takes values('50039', '486', '1', 'Fall', 2009, 'A+'); + insert into takes values('22620', '443', '2', 'Spring', 2002, 'B '); + insert into takes values('978', '158', '2', 'Spring', 2008, 'C+'); + insert into takes values('32376', '702', '1', 'Spring', 2001, 'A '); + insert into takes values('3487', '599', '1', 'Spring', 2003, 'C-'); + insert into takes values('79329', '604', '1', 'Spring', 2009, 'C-'); + insert into takes values('64121', '345', '1', 'Spring', 2008, 'B '); + insert into takes values('75513', '304', '1', 'Fall', 2009, 'C '); + insert into takes values('22417', '319', '1', 'Spring', 2003, 'C+'); + insert into takes values('94697', '401', '1', 'Fall', 2003, 'B+'); + insert into takes values('36881', '352', '1', 'Spring', 2006, 'A-'); + insert into takes values('65205', '962', '1', 'Spring', 2008, 'B-'); + insert into takes values('76911', '496', '1', 'Fall', 2001, 'C+'); + insert into takes values('71631', '105', '1', 'Fall', 2009, 'C+'); + insert into takes values('9256', '304', '1', 'Fall', 2009, 'C-'); + insert into takes values('26494', '875', '1', 'Spring', 2005, 'B-'); + insert into takes values('54622', '304', '1', 'Fall', 2009, 'C-'); + insert into takes values('50013', '192', '1', 'Fall', 2002, 'B '); + insert into takes values('25187', '362', '1', 'Fall', 2005, 'B+'); + insert into takes values('70362', '313', '1', 'Fall', 2010, 'C-'); + insert into takes values('57107', '426', '1', 'Spring', 2006, 'C+'); + insert into takes values('40558', '239', '1', 'Fall', 2006, 'B+'); + insert into takes values('34542', '200', '2', 'Fall', 2002, 'B '); + insert into takes values('1285', '561', '1', 'Fall', 2006, 'A-'); + insert into takes values('11195', '972', '1', 'Spring', 2009, 'C '); + insert into takes values('89132', '239', '1', 'Fall', 2006, 'B+'); + insert into takes values('53077', '960', '1', 'Fall', 2009, 'A+'); + insert into takes values('53048', '748', '1', 'Fall', 2003, 'B-'); + insert into takes values('57985', '445', '1', 'Spring', 2001, 'C-'); + insert into takes values('73072', '169', '1', 'Spring', 2007, 'B+'); + insert into takes values('75878', '274', '1', 'Fall', 2002, 'C '); + insert into takes values('435', '158', '2', 'Spring', 2008, 'B '); + insert into takes values('48165', '991', '1', 'Spring', 2008, 'A+'); + insert into takes values('9495', '338', '1', 'Spring', 2007, 'B+'); + insert into takes values('48247', '345', '1', 'Spring', 2008, 'B-'); + insert into takes values('25362', '702', '1', 'Spring', 2001, 'C-'); + insert into takes values('77000', '105', '1', 'Fall', 2009, 'B '); + insert into takes values('51817', '468', '1', 'Fall', 2005, 'C '); + insert into takes values('99451', '274', '1', 'Fall', 2002, 'B '); + insert into takes values('28133', '559', '1', 'Fall', 2002, 'C+'); + insert into takes values('507', '960', '2', 'Fall', 2006, 'C-'); + insert into takes values('78116', '559', '1', 'Fall', 2002, 'C+'); + insert into takes values('32954', '603', '1', 'Fall', 2003, 'C+'); + insert into takes values('5703', '867', '2', 'Fall', 2010, 'C '); + insert into takes values('57941', '270', '1', 'Spring', 2010, 'A-'); + insert into takes values('52494', '962', '1', 'Spring', 2008, 'A-'); + insert into takes values('11262', '747', '1', 'Spring', 2004, 'B '); + insert into takes values('1533', '421', '1', 'Fall', 2004, 'A+'); + insert into takes values('22086', '875', '1', 'Spring', 2005, 'A '); + insert into takes values('30289', '545', '1', 'Fall', 2001, 'C+'); + insert into takes values('3335', '893', '1', 'Fall', 2007, 'C '); + insert into takes values('77130', '242', '1', 'Fall', 2009, 'B '); + insert into takes values('41450', '169', '2', 'Fall', 2002, 'C+'); + insert into takes values('41965', '489', '1', 'Fall', 2007, 'C '); + insert into takes values('31266', '748', '1', 'Fall', 2003, 'B-'); + insert into takes values('7514', '137', '1', 'Spring', 2002, 'A+'); + insert into takes values('94620', '270', '1', 'Spring', 2010, 'B+'); + insert into takes values('1726', '274', '1', 'Fall', 2002, 'A '); + insert into takes values('54508', '581', '1', 'Spring', 2005, 'B '); + insert into takes values('76173', '169', '1', 'Spring', 2007, 'C-'); + insert into takes values('87280', '748', '1', 'Fall', 2003, 'A+'); + insert into takes values('1737', '408', '2', 'Spring', 2003, 'C-'); + insert into takes values('38476', '489', '1', 'Fall', 2007, 'C '); + insert into takes values('5144', '642', '1', 'Fall', 2004, 'B+'); + insert into takes values('30896', '867', '2', 'Fall', 2010, 'B+'); + insert into takes values('23311', '949', '1', 'Fall', 2007, 'B-'); + insert into takes values('96052', '338', '2', 'Spring', 2006, 'C-'); + insert into takes values('95029', '334', '1', 'Fall', 2009, 'A '); + insert into takes values('98619', '663', '1', 'Spring', 2005, 'A-'); + insert into takes values('20244', '735', '2', 'Spring', 2010, 'A '); + insert into takes values('88302', '960', '2', 'Fall', 2006, 'B '); + insert into takes values('90609', '629', '1', 'Spring', 2003, 'B-'); + insert into takes values('96324', '974', '1', 'Fall', 2003, 'B '); + insert into takes values('82918', '599', '1', 'Spring', 2003, 'A '); + insert into takes values('19536', '200', '1', 'Spring', 2007, 'A+'); + insert into takes values('93631', '200', '2', 'Fall', 2002, 'B+'); + insert into takes values('84727', '489', '1', 'Fall', 2007, 'A-'); + insert into takes values('63645', '313', '1', 'Fall', 2010, 'A-'); + insert into takes values('7498', '242', '1', 'Fall', 2009, 'B-'); + insert into takes values('75928', '603', '1', 'Fall', 2003, 'B-'); + insert into takes values('38013', '704', '1', 'Spring', 2008, 'B '); + insert into takes values('94766', '949', '1', 'Fall', 2007, 'C+'); + insert into takes values('15340', '362', '3', 'Spring', 2008, 'C '); + insert into takes values('59455', '258', '1', 'Fall', 2007, 'A '); + insert into takes values('21337', '468', '2', 'Fall', 2007, 'B-'); + insert into takes values('27950', '527', '1', 'Fall', 2004, 'B+'); + insert into takes values('83691', '468', '2', 'Fall', 2007, 'C-'); + insert into takes values('48776', '696', '1', 'Spring', 2002, 'A+'); + insert into takes values('68396', '629', '1', 'Spring', 2003, 'A-'); + insert into takes values('99949', '559', '1', 'Fall', 2002, 'A+'); + insert into takes values('8483', '760', '1', 'Spring', 2004, 'B+'); + insert into takes values('27952', '349', '1', 'Spring', 2008, 'B '); + insert into takes values('85063', '748', '1', 'Fall', 2003, 'C '); + insert into takes values('70299', '270', '1', 'Spring', 2010, 'C '); + insert into takes values('72485', '603', '1', 'Fall', 2003, 'C+'); + insert into takes values('44551', '527', '1', 'Fall', 2004, 'C-'); + insert into takes values('36303', '349', '1', 'Spring', 2008, 'C-'); + insert into takes values('15144', '626', '1', 'Fall', 2006, 'A+'); + insert into takes values('64164', '200', '1', 'Spring', 2007, 'C+'); + insert into takes values('11578', '974', '1', 'Fall', 2003, 'C '); + insert into takes values('52471', '927', '1', 'Fall', 2002, 'B+'); + insert into takes values('89759', '867', '1', 'Fall', 2006, 'C '); + insert into takes values('3127', '702', '1', 'Spring', 2001, 'C+'); + insert into takes values('59848', '663', '1', 'Spring', 2005, 'A+'); + insert into takes values('64155', '338', '2', 'Spring', 2006, 'A '); + insert into takes values('24784', '875', '1', 'Spring', 2005, 'B '); + insert into takes values('94142', '642', '1', 'Fall', 2004, 'B '); + insert into takes values('70061', '694', '1', 'Fall', 2002, 'C-'); + insert into takes values('39238', '802', '1', 'Spring', 2003, 'B+'); + insert into takes values('89551', '486', '1', 'Fall', 2009, 'C-'); + insert into takes values('7732', '735', '2', 'Spring', 2010, 'B '); + insert into takes values('77130', '445', '1', 'Spring', 2001, 'B+'); + insert into takes values('10838', '927', '1', 'Fall', 2002, 'A-'); + insert into takes values('16035', '486', '1', 'Fall', 2009, 'A+'); + insert into takes values('3127', '631', '1', 'Spring', 2007, 'C '); + insert into takes values('50664', '642', '1', 'Fall', 2004, 'C-'); + insert into takes values('5208', '852', '1', 'Spring', 2008, 'A-'); + insert into takes values('47379', '852', '1', 'Spring', 2008, 'A+'); + insert into takes values('73387', '795', '1', 'Spring', 2004, 'C-'); + insert into takes values('28994', '561', '1', 'Fall', 2006, 'B+'); + insert into takes values('99760', '362', '3', 'Spring', 2008, 'C-'); + insert into takes values('66281', '642', '1', 'Fall', 2004, 'C-'); + insert into takes values('4508', '400', '1', 'Spring', 2007, 'B '); + insert into takes values('32369', '867', '1', 'Fall', 2006, 'B+'); + insert into takes values('8251', '991', '1', 'Spring', 2008, 'A-'); + insert into takes values('71287', '960', '1', 'Fall', 2009, 'A '); + insert into takes values('66269', '486', '1', 'Fall', 2009, 'B-'); + insert into takes values('4582', '242', '1', 'Fall', 2009, 'A-'); + insert into takes values('86375', '169', '2', 'Fall', 2002, 'B '); + insert into takes values('90220', '239', '1', 'Fall', 2006, 'A+'); + insert into takes values('5925', '468', '2', 'Fall', 2007, 'C+'); + insert into takes values('21692', '408', '1', 'Spring', 2007, 'C+'); + insert into takes values('37219', '457', '1', 'Spring', 2001, 'C+'); + insert into takes values('88553', '400', '1', 'Spring', 2007, 'B '); + insert into takes values('66494', '270', '1', 'Spring', 2010, 'C '); + insert into takes values('62705', '461', '1', 'Fall', 2002, 'A-'); + insert into takes values('65101', '400', '1', 'Spring', 2007, 'C+'); + insert into takes values('65676', '443', '2', 'Spring', 2002, 'C '); + insert into takes values('19321', '400', '2', 'Fall', 2003, 'A+'); + insert into takes values('70965', '169', '2', 'Fall', 2002, 'B-'); + insert into takes values('79534', '258', '1', 'Fall', 2007, 'C-'); + insert into takes values('30957', '875', '1', 'Spring', 2005, 'C+'); + insert into takes values('45494', '486', '1', 'Fall', 2009, 'A+'); + insert into takes values('74796', '352', '1', 'Spring', 2006, 'B-'); + insert into takes values('41091', '893', '1', 'Fall', 2007, 'C+'); + insert into takes values('63860', '200', '2', 'Fall', 2002, 'C+'); + insert into takes values('60249', '237', '2', 'Fall', 2009, 'B '); + insert into takes values('48009', '200', '1', 'Spring', 2007, 'B '); + insert into takes values('2201', '345', '1', 'Spring', 2008, 'B-'); + insert into takes values('52291', '692', '1', 'Spring', 2010, 'C '); + insert into takes values('31080', '663', '1', 'Spring', 2005, 'C-'); + insert into takes values('41406', '366', '1', 'Fall', 2005, 'B+'); + insert into takes values('35175', '493', '1', 'Spring', 2010, 'B-'); + insert into takes values('55531', '545', '1', 'Fall', 2001, 'B+'); + insert into takes values('39612', '105', '1', 'Fall', 2009, 'C+'); + insert into takes values('65979', '972', '1', 'Spring', 2009, 'C '); + insert into takes values('5414', '362', '1', 'Fall', 2005, 'B+'); + insert into takes values('858', '169', '1', 'Spring', 2007, 'A '); + insert into takes values('33645', '334', '1', 'Fall', 2009, 'B '); + insert into takes values('5843', '631', '1', 'Spring', 2007, 'C '); + insert into takes values('59397', '489', '1', 'Fall', 2007, 'B+'); + insert into takes values('31554', '274', '1', 'Fall', 2002, 'C-'); + insert into takes values('67407', '468', '2', 'Fall', 2007, 'A+'); + insert into takes values('18709', '581', '1', 'Spring', 2005, 'B-'); + insert into takes values('13028', '696', '1', 'Spring', 2002, 'C+'); + insert into takes values('13753', '426', '1', 'Spring', 2006, 'B+'); + insert into takes values('25331', '735', '1', 'Spring', 2003, 'C+'); + insert into takes values('98940', '169', '2', 'Fall', 2002, 'A+'); + insert into takes values('43032', '258', '1', 'Fall', 2007, 'C '); + insert into takes values('14869', '760', '1', 'Spring', 2004, 'A-'); + insert into takes values('35721', '747', '1', 'Spring', 2004, 'A+'); + insert into takes values('52872', '457', '1', 'Spring', 2001, 'C-'); + insert into takes values('89051', '334', '1', 'Fall', 2009, 'C+'); + insert into takes values('88389', '642', '1', 'Fall', 2004, 'B '); + insert into takes values('39552', '338', '1', 'Spring', 2007, 'C+'); + insert into takes values('81538', '735', '1', 'Spring', 2003, 'C-'); + insert into takes values('96895', '867', '1', 'Fall', 2006, 'A-'); + insert into takes values('84845', '200', '1', 'Spring', 2007, 'A+'); + insert into takes values('25718', '362', '2', 'Fall', 2006, 'A '); + insert into takes values('41674', '959', '1', 'Fall', 2006, 'C-'); + insert into takes values('11510', '362', '1', 'Fall', 2005, 'B '); + insert into takes values('37350', '864', '1', 'Spring', 2006, 'A-'); + insert into takes values('78454', '486', '1', 'Fall', 2009, 'A '); + insert into takes values('17207', '200', '2', 'Fall', 2002, 'C+'); + insert into takes values('51084', '461', '1', 'Fall', 2002, 'A+'); + insert into takes values('52057', '927', '1', 'Fall', 2002, 'B '); + insert into takes values('49982', '867', '2', 'Fall', 2010, 'A+'); + insert into takes values('49792', '949', '1', 'Fall', 2007, 'A '); + insert into takes values('53048', '642', '1', 'Fall', 2004, 'B '); + insert into takes values('21395', '304', '1', 'Fall', 2009, 'C '); + insert into takes values('6895', '258', '1', 'Fall', 2007, 'B+'); + insert into takes values('8807', '345', '1', 'Spring', 2008, 'B-'); + insert into takes values('71529', '591', '1', 'Spring', 2005, 'B-'); + insert into takes values('41671', '949', '1', 'Fall', 2007, 'B '); + insert into takes values('41280', '345', '1', 'Spring', 2008, 'B-'); + insert into takes values('15074', '489', '1', 'Fall', 2007, 'B '); + insert into takes values('21008', '962', '1', 'Spring', 2008, 'A-'); + insert into takes values('336', '496', '1', 'Fall', 2001, 'B '); + insert into takes values('99754', '559', '1', 'Fall', 2002, 'B+'); + insert into takes values('99949', '962', '1', 'Spring', 2008, 'A '); + insert into takes values('32385', '319', '1', 'Spring', 2003, 'A '); + insert into takes values('72768', '338', '2', 'Spring', 2006, 'A-'); + insert into takes values('71543', '559', '1', 'Fall', 2002, 'A-'); + insert into takes values('77218', '802', '1', 'Spring', 2003, 'A+'); + insert into takes values('66054', '105', '2', 'Fall', 2002, 'B-'); + insert into takes values('11237', '972', '1', 'Spring', 2009, 'B+'); + insert into takes values('14032', '443', '2', 'Spring', 2002, 'B-'); + insert into takes values('15517', '468', '1', 'Fall', 2005, 'C-'); + insert into takes values('9495', '362', '1', 'Fall', 2005, 'B '); + insert into takes values('3833', '304', '1', 'Fall', 2009, 'A+'); + insert into takes values('2423', '200', '1', 'Spring', 2007, 'A+'); + insert into takes values('68330', '704', '1', 'Spring', 2008, 'C '); + insert into takes values('13506', '960', '2', 'Fall', 2006, 'B '); + insert into takes values('62124', '704', '1', 'Spring', 2008, 'B+'); + insert into takes values('11055', '486', '1', 'Fall', 2009, 'B+'); + insert into takes values('99711', '400', '1', 'Spring', 2007, 'A+'); + insert into takes values('60267', '408', '2', 'Spring', 2003, 'A-'); + insert into takes values('5144', '313', '1', 'Fall', 2010, 'C+'); + insert into takes values('78481', '338', '2', 'Spring', 2006, 'B '); + insert into takes values('71287', '559', '1', 'Fall', 2002, 'B '); + insert into takes values('75938', '591', '1', 'Spring', 2005, 'C '); + insert into takes values('11262', '493', '1', 'Spring', 2010, 'A+'); + insert into takes values('46260', '626', '1', 'Fall', 2006, 'B+'); + insert into takes values('33338', '843', '1', 'Fall', 2010, 'B-'); + insert into takes values('17924', '747', '1', 'Spring', 2004, 'C '); + insert into takes values('1968', '694', '1', 'Fall', 2002, 'A '); + insert into takes values('86552', '334', '1', 'Fall', 2009, 'A '); + insert into takes values('95852', '747', '1', 'Spring', 2004, 'C-'); + insert into takes values('52471', '319', '1', 'Spring', 2003, 'C '); + insert into takes values('88045', '476', '1', 'Fall', 2010, 'A-'); + insert into takes values('98315', '927', '1', 'Fall', 2002, 'B+'); + insert into takes values('507', '415', '1', 'Fall', 2010, 'C+'); + insert into takes values('25362', '559', '1', 'Fall', 2002, 'C+'); + insert into takes values('15487', '545', '1', 'Fall', 2001, 'A+'); + insert into takes values('20099', '105', '1', 'Fall', 2009, 'C+'); + insert into takes values('30182', '468', '2', 'Fall', 2007, 'C '); + insert into takes values('54622', '679', '1', 'Spring', 2010, 'A-'); + insert into takes values('92464', '496', '1', 'Fall', 2001, 'C+'); + insert into takes values('65144', '349', '1', 'Spring', 2008, 'A '); + insert into takes values('41671', '959', '1', 'Fall', 2006, 'B '); + insert into takes values('49214', '702', '1', 'Spring', 2001, 'C-'); + insert into takes values('6400', '612', '1', 'Fall', 2007, 'A+'); + insert into takes values('19824', '476', '1', 'Fall', 2010, 'C+'); + insert into takes values('70918', '991', '1', 'Spring', 2008, 'A '); + insert into takes values('24784', '735', '1', 'Spring', 2003, 'C '); + insert into takes values('69758', '482', '1', 'Fall', 2005, 'B+'); + insert into takes values('49339', '192', '1', 'Fall', 2002, 'A-'); + insert into takes values('99348', '352', '1', 'Spring', 2006, 'A+'); + insert into takes values('17397', '239', '1', 'Fall', 2006, 'C '); + insert into takes values('61364', '735', '1', 'Spring', 2003, 'A '); + insert into takes values('50583', '735', '2', 'Spring', 2010, 'B-'); + insert into takes values('18740', '974', '1', 'Fall', 2003, 'C+'); + insert into takes values('80821', '694', '1', 'Fall', 2002, 'C-'); + insert into takes values('87965', '169', '1', 'Spring', 2007, 'C+'); + insert into takes values('50013', '158', '1', 'Fall', 2008, 'A '); + insert into takes values('28977', '362', '3', 'Spring', 2008, 'B '); + insert into takes values('60249', '581', '1', 'Spring', 2005, 'A '); + insert into takes values('57787', '401', '1', 'Fall', 2003, 'B-'); + insert into takes values('95201', '626', '1', 'Fall', 2006, 'A '); + insert into takes values('5208', '426', '1', 'Spring', 2006, 'A-'); + insert into takes values('61354', '603', '1', 'Fall', 2003, 'A+'); + insert into takes values('931', '626', '1', 'Fall', 2006, 'A-'); + insert into takes values('73213', '362', '1', 'Fall', 2005, 'A+'); + insert into takes values('63390', '415', '1', 'Fall', 2010, 'C+'); + insert into takes values('63288', '158', '2', 'Spring', 2008, 'A-'); + insert into takes values('5925', '443', '1', 'Spring', 2010, 'B-'); + insert into takes values('15328', '158', '1', 'Fall', 2008, 'C-'); + insert into takes values('28361', '793', '1', 'Spring', 2002, 'A-'); + insert into takes values('13211', '445', '1', 'Spring', 2001, 'C '); + insert into takes values('53225', '426', '1', 'Spring', 2006, 'C+'); + insert into takes values('95046', '747', '1', 'Spring', 2004, 'B+'); + insert into takes values('23934', '591', '1', 'Spring', 2005, 'C+'); + insert into takes values('94535', '696', '1', 'Spring', 2002, 'B '); + insert into takes values('93171', '571', '1', 'Spring', 2004, 'A '); + insert into takes values('40937', '603', '1', 'Fall', 2003, 'B+'); + insert into takes values('2501', '545', '1', 'Fall', 2001, 'C-'); + insert into takes values('70235', '629', '1', 'Spring', 2003, 'C+'); + insert into takes values('78756', '313', '1', 'Fall', 2010, 'A-'); + insert into takes values('43854', '137', '1', 'Spring', 2002, 'C '); + insert into takes values('1285', '692', '1', 'Spring', 2010, 'B+'); + insert into takes values('59553', '663', '1', 'Spring', 2005, 'A+'); + insert into takes values('13408', '242', '1', 'Fall', 2009, 'C+'); + insert into takes values('57123', '604', '1', 'Spring', 2009, 'B '); + insert into takes values('978', '270', '1', 'Spring', 2010, 'C+'); + insert into takes values('73492', '527', '1', 'Fall', 2004, 'C '); + insert into takes values('16250', '875', '1', 'Spring', 2005, 'C+'); + insert into takes values('88169', '875', '1', 'Spring', 2005, 'B-'); + insert into takes values('88302', '694', '1', 'Fall', 2002, 'B-'); + insert into takes values('29399', '561', '1', 'Fall', 2006, 'C '); + insert into takes values('64039', '158', '1', 'Fall', 2008, 'A-'); + insert into takes values('85910', '927', '1', 'Fall', 2002, 'C+'); + insert into takes values('52876', '334', '1', 'Fall', 2009, 'A '); + insert into takes values('88358', '443', '2', 'Spring', 2002, 'A-'); + insert into takes values('38691', '443', '2', 'Spring', 2002, 'C-'); + insert into takes values('34422', '313', '1', 'Fall', 2010, 'B+'); + insert into takes values('54622', '561', '1', 'Fall', 2006, 'B-'); + insert into takes values('49244', '927', '1', 'Fall', 2002, 'A '); + insert into takes values('43981', '791', '1', 'Spring', 2006, 'A '); + insert into takes values('96203', '468', '2', 'Fall', 2007, 'A '); + insert into takes values('23934', '237', '1', 'Spring', 2008, 'B-'); + insert into takes values('792', '527', '1', 'Fall', 2004, 'A-'); + insert into takes values('22258', '239', '1', 'Fall', 2006, 'A+'); + insert into takes values('83039', '461', '1', 'Fall', 2002, 'A-'); + insert into takes values('46769', '468', '2', 'Fall', 2007, 'C '); + insert into takes values('98984', '158', '2', 'Spring', 2008, 'B-'); + insert into takes values('8853', '748', '1', 'Fall', 2003, 'C '); + insert into takes values('86934', '376', '1', 'Fall', 2006, 'B+'); + insert into takes values('74464', '362', '1', 'Fall', 2005, 'B '); + insert into takes values('67657', '561', '1', 'Fall', 2006, 'C '); + insert into takes values('33460', '747', '1', 'Spring', 2004, 'C '); + insert into takes values('50703', '591', '1', 'Spring', 2005, 'B+'); + insert into takes values('29462', '482', '1', 'Fall', 2005, 'B '); + insert into takes values('80047', '158', '1', 'Fall', 2008, 'C-'); + insert into takes values('69952', '852', '1', 'Spring', 2008, 'C '); + insert into takes values('19541', '571', '1', 'Spring', 2004, 'A+'); + insert into takes values('24002', '105', '2', 'Fall', 2002, 'C-'); + insert into takes values('72485', '319', '1', 'Spring', 2003, 'A+'); + insert into takes values('82646', '962', '1', 'Spring', 2008, 'B+'); + insert into takes values('52157', '158', '2', 'Spring', 2008, 'C-'); + insert into takes values('25331', '105', '1', 'Fall', 2009, 'A-'); + insert into takes values('65056', '604', '1', 'Spring', 2009, 'B-'); + insert into takes values('91799', '949', '1', 'Fall', 2007, 'B-'); + insert into takes values('18821', '376', '1', 'Fall', 2006, 'C '); + insert into takes values('1922', '793', '1', 'Spring', 2002, 'A '); + insert into takes values('46074', '559', '1', 'Fall', 2002, 'A '); + insert into takes values('41491', '239', '1', 'Fall', 2006, 'B+'); + insert into takes values('21100', '748', '1', 'Fall', 2003, 'C-'); + insert into takes values('78858', '808', '1', 'Fall', 2003, 'C-'); + insert into takes values('73908', '972', '1', 'Spring', 2009, 'B '); + insert into takes values('53799', '927', '1', 'Fall', 2002, 'C-'); + insert into takes values('53469', '875', '1', 'Spring', 2005, 'A-'); + insert into takes values('79205', '476', '1', 'Fall', 2010, 'B '); + insert into takes values('14484', '362', '2', 'Fall', 2006, 'A-'); + insert into takes values('93508', '663', '1', 'Spring', 2005, 'C+'); + insert into takes values('87280', '959', '1', 'Fall', 2006, 'B+'); + insert into takes values('26881', '443', '1', 'Spring', 2010, 'C-'); + insert into takes values('41406', '486', '1', 'Fall', 2009, 'C-'); + insert into takes values('27727', '692', '1', 'Spring', 2010, 'A '); + insert into takes values('33546', '843', '1', 'Fall', 2010, 'B-'); + insert into takes values('58413', '200', '2', 'Fall', 2002, 'B '); + insert into takes values('63645', '875', '1', 'Spring', 2005, 'B+'); + insert into takes values('16885', '604', '1', 'Spring', 2009, 'C '); + insert into takes values('92864', '960', '1', 'Fall', 2009, 'B+'); + insert into takes values('44038', '362', '3', 'Spring', 2008, 'A '); + insert into takes values('66753', '843', '1', 'Fall', 2010, 'A+'); + insert into takes values('20195', '559', '1', 'Fall', 2002, 'C '); + insert into takes values('19917', '960', '1', 'Fall', 2009, 'A-'); + insert into takes values('7970', '362', '2', 'Fall', 2006, 'B+'); + insert into takes values('83002', '949', '1', 'Fall', 2007, 'A-'); + insert into takes values('34404', '991', '1', 'Spring', 2008, 'A-'); + insert into takes values('55857', '493', '1', 'Spring', 2010, 'B-'); + insert into takes values('91915', '852', '1', 'Spring', 2008, 'C+'); + insert into takes values('94697', '864', '1', 'Spring', 2006, 'B '); + insert into takes values('85226', '626', '1', 'Fall', 2006, 'A '); + insert into takes values('41832', '376', '1', 'Fall', 2006, 'C+'); + insert into takes values('13504', '791', '1', 'Spring', 2006, 'C '); + insert into takes values('10481', '270', '1', 'Spring', 2010, 'A '); + insert into takes values('69747', '304', '1', 'Fall', 2009, 'C+'); + insert into takes values('50969', '461', '1', 'Fall', 2002, 'B+'); + insert into takes values('36402', '345', '1', 'Spring', 2008, 'A '); + insert into takes values('94620', '338', '2', 'Spring', 2006, 'A '); + insert into takes values('58634', '679', '1', 'Spring', 2010, 'B-'); + insert into takes values('72501', '735', '1', 'Spring', 2003, 'B '); + insert into takes values('24746', '445', '1', 'Spring', 2001, 'A-'); + insert into takes values('68649', '599', '1', 'Spring', 2003, 'A+'); + insert into takes values('72014', '612', '1', 'Fall', 2007, 'C-'); + insert into takes values('97551', '559', '1', 'Fall', 2002, 'C+'); + insert into takes values('29959', '867', '1', 'Fall', 2006, 'A+'); + insert into takes values('15726', '376', '1', 'Fall', 2006, 'B '); + insert into takes values('67340', '679', '1', 'Spring', 2010, 'A+'); + insert into takes values('15698', '468', '2', 'Fall', 2007, 'C+'); + insert into takes values('93653', '808', '1', 'Fall', 2003, 'A-'); + insert into takes values('87268', '242', '1', 'Fall', 2009, 'A-'); + insert into takes values('49701', '338', '2', 'Spring', 2006, 'C '); + insert into takes values('55009', '959', '1', 'Fall', 2006, 'A+'); + insert into takes values('12941', '443', '1', 'Spring', 2010, 'B+'); + insert into takes values('2419', '802', '1', 'Spring', 2003, 'C '); + insert into takes values('21009', '362', '2', 'Fall', 2006, 'B+'); + insert into takes values('888', '401', '1', 'Fall', 2003, 'C '); + insert into takes values('24630', '408', '2', 'Spring', 2003, 'A '); + insert into takes values('16133', '867', '2', 'Fall', 2010, 'B+'); + insert into takes values('20195', '867', '1', 'Fall', 2006, 'B '); + insert into takes values('41894', '960', '2', 'Fall', 2006, 'A+'); + insert into takes values('31341', '960', '2', 'Fall', 2006, 'B-'); + insert into takes values('54672', '843', '1', 'Fall', 2010, 'B '); + insert into takes values('77580', '362', '1', 'Fall', 2005, 'B '); + insert into takes values('85226', '200', '1', 'Spring', 2007, 'C+'); + insert into takes values('66259', '663', '1', 'Spring', 2005, 'C+'); + insert into takes values('31250', '239', '1', 'Fall', 2006, 'A-'); + insert into takes values('68554', '959', '1', 'Fall', 2006, 'A '); + insert into takes values('6895', '443', '2', 'Spring', 2002, 'C-'); + insert into takes values('70572', '445', '1', 'Spring', 2001, 'C '); + insert into takes values('40932', '496', '1', 'Fall', 2001, 'B-'); + insert into takes values('31624', '426', '1', 'Spring', 2006, 'A+'); + insert into takes values('36791', '795', '1', 'Spring', 2004, 'C-'); + insert into takes values('69850', '362', '3', 'Spring', 2008, 'B+'); + insert into takes values('55940', '747', '1', 'Spring', 2004, 'A '); + insert into takes values('11262', '808', '1', 'Fall', 2003, 'A '); + insert into takes values('91915', '631', '1', 'Spring', 2007, 'A '); + insert into takes values('82591', '237', '2', 'Fall', 2009, 'A+'); + insert into takes values('34392', '748', '1', 'Fall', 2003, 'B+'); + insert into takes values('6523', '200', '2', 'Fall', 2002, 'C-'); + insert into takes values('99949', '581', '1', 'Spring', 2005, 'B '); + insert into takes values('68248', '561', '1', 'Fall', 2006, 'B '); + insert into takes values('79911', '793', '1', 'Spring', 2002, 'B '); + insert into takes values('89297', '362', '3', 'Spring', 2008, 'A+'); + insert into takes values('80113', '612', '1', 'Fall', 2007, 'A-'); + insert into takes values('16631', '991', '1', 'Spring', 2008, 'C-'); + insert into takes values('32245', '960', '2', 'Fall', 2006, 'B '); + insert into takes values('95284', '158', '2', 'Spring', 2008, 'C-'); + insert into takes values('31554', '239', '1', 'Fall', 2006, 'A+'); + insert into takes values('66484', '696', '1', 'Spring', 2002, 'C-'); + insert into takes values('31086', '559', '1', 'Fall', 2002, 'A+'); + insert into takes values('46970', '748', '1', 'Fall', 2003, 'C-'); + insert into takes values('54672', '974', '1', 'Fall', 2003, 'A+'); + insert into takes values('60366', '735', '1', 'Spring', 2003, 'C '); + insert into takes values('88358', '793', '1', 'Spring', 2002, 'A-'); + insert into takes values('96085', '352', '1', 'Spring', 2006, 'A-'); + insert into takes values('65396', '561', '1', 'Fall', 2006, 'B+'); + insert into takes values('50414', '760', '1', 'Spring', 2004, 'C+'); + insert into takes values('84845', '468', '2', 'Fall', 2007, 'B-'); + insert into takes values('48471', '612', '1', 'Fall', 2007, 'B-'); + insert into takes values('4034', '571', '1', 'Spring', 2004, 'A '); + insert into takes values('46928', '631', '1', 'Spring', 2007, 'B-'); + insert into takes values('8347', '791', '1', 'Spring', 2006, 'B-'); + insert into takes values('85680', '476', '1', 'Fall', 2010, 'A-'); + insert into takes values('16311', '376', '1', 'Fall', 2006, 'B+'); + insert into takes values('89571', '748', '1', 'Fall', 2003, 'A '); + insert into takes values('56080', '242', '1', 'Fall', 2009, 'B '); + insert into takes values('33206', '527', '1', 'Fall', 2004, 'B '); + insert into takes values('49813', '443', '1', 'Spring', 2010, 'C-'); + insert into takes values('45770', '581', '1', 'Spring', 2005, 'C '); + insert into takes values('96178', '443', '2', 'Spring', 2002, 'C+'); + insert into takes values('25380', '702', '1', 'Spring', 2001, 'B+'); + insert into takes values('16593', '663', '1', 'Spring', 2005, 'B+'); + insert into takes values('63289', '959', '1', 'Fall', 2006, 'B '); + insert into takes values('74639', '169', '2', 'Fall', 2002, 'A '); + insert into takes values('66293', '527', '1', 'Fall', 2004, 'C '); + insert into takes values('20244', '362', '1', 'Fall', 2005, 'B+'); + insert into takes values('62520', '612', '1', 'Fall', 2007, 'B-'); + insert into takes values('91132', '258', '1', 'Fall', 2007, 'C+'); + insert into takes values('29803', '408', '1', 'Spring', 2007, 'A+'); + insert into takes values('13511', '468', '1', 'Fall', 2005, 'B+'); + insert into takes values('90381', '972', '1', 'Spring', 2009, 'B+'); + insert into takes values('41345', '631', '1', 'Spring', 2007, 'C-'); + insert into takes values('95201', '629', '1', 'Spring', 2003, 'B-'); + insert into takes values('78116', '445', '1', 'Spring', 2001, 'B+'); + insert into takes values('32886', '200', '1', 'Spring', 2007, 'A-'); + insert into takes values('73072', '791', '1', 'Spring', 2006, 'B+'); + insert into takes values('75791', '461', '1', 'Fall', 2002, 'A+'); + insert into takes values('70362', '991', '1', 'Spring', 2008, 'B '); + insert into takes values('87246', '663', '1', 'Spring', 2005, 'C+'); + insert into takes values('64138', '599', '1', 'Spring', 2003, 'C+'); + insert into takes values('39115', '843', '1', 'Fall', 2010, 'B '); + insert into takes values('27044', '338', '2', 'Spring', 2006, 'B-'); + insert into takes values('53451', '960', '2', 'Fall', 2006, 'B '); + insert into takes values('85234', '274', '1', 'Fall', 2002, 'C+'); + insert into takes values('40116', '362', '2', 'Fall', 2006, 'C '); + insert into takes values('74464', '496', '1', 'Fall', 2001, 'A-'); + insert into takes values('56089', '200', '1', 'Spring', 2007, 'B-'); + insert into takes values('51678', '735', '1', 'Spring', 2003, 'B-'); + insert into takes values('62795', '496', '1', 'Fall', 2001, 'B+'); + insert into takes values('6895', '400', '2', 'Fall', 2003, 'B '); + insert into takes values('33645', '629', '1', 'Spring', 2003, 'B+'); + insert into takes values('57538', '735', '1', 'Spring', 2003, 'B-'); + insert into takes values('96741', '461', '1', 'Fall', 2002, 'B+'); + insert into takes values('82082', '200', '1', 'Spring', 2007, 'C+'); + insert into takes values('46725', '239', '1', 'Fall', 2006, 'A+'); + insert into takes values('75252', '747', '1', 'Spring', 2004, 'C+'); + insert into takes values('15457', '927', '1', 'Fall', 2002, 'A-'); + insert into takes values('4940', '612', '1', 'Fall', 2007, 'B-'); + insert into takes values('80990', '735', '1', 'Spring', 2003, 'B+'); + insert into takes values('82697', '426', '1', 'Spring', 2006, 'B-'); + insert into takes values('68453', '400', '2', 'Fall', 2003, 'C '); + insert into takes values('99780', '239', '1', 'Fall', 2006, 'A-'); + insert into takes values('32245', '875', '1', 'Spring', 2005, 'A-'); + insert into takes values('34195', '959', '1', 'Fall', 2006, 'B '); + insert into takes values('69628', '867', '2', 'Fall', 2010, 'C '); + insert into takes values('68070', '237', '1', 'Spring', 2008, 'C '); + insert into takes values('58595', '237', '2', 'Fall', 2009, 'A '); + insert into takes values('95626', '692', '1', 'Spring', 2010, 'B '); + insert into takes values('41671', '105', '1', 'Fall', 2009, 'C+'); + insert into takes values('3163', '338', '2', 'Spring', 2006, 'A '); + insert into takes values('99451', '793', '1', 'Spring', 2002, 'B-'); + insert into takes values('35498', '867', '2', 'Fall', 2010, 'C-'); + insert into takes values('60406', '468', '1', 'Fall', 2005, 'C '); + insert into takes values('81258', '426', '1', 'Spring', 2006, 'A+'); + insert into takes values('41299', '852', '1', 'Spring', 2008, 'C+'); + insert into takes values('9953', '991', '1', 'Spring', 2008, 'B+'); + insert into takes values('1018', '349', '1', 'Spring', 2008, 'A-'); + insert into takes values('64140', '461', '1', 'Fall', 2002, 'B+'); + insert into takes values('49759', '735', '1', 'Spring', 2003, 'B+'); + insert into takes values('78922', '972', '1', 'Spring', 2009, 'A-'); + insert into takes values('41599', '604', '1', 'Spring', 2009, 'A-'); + insert into takes values('64550', '692', '1', 'Spring', 2010, 'A-'); + insert into takes values('10838', '760', '1', 'Spring', 2004, 'C+'); + insert into takes values('91616', '270', '1', 'Spring', 2010, 'C '); + insert into takes values('96968', '258', '1', 'Fall', 2007, 'A '); + insert into takes values('25780', '137', '1', 'Spring', 2002, 'C+'); + insert into takes values('90181', '696', '1', 'Spring', 2002, 'B-'); + insert into takes values('2177', '400', '2', 'Fall', 2003, 'A '); + insert into takes values('62549', '362', '1', 'Fall', 2005, 'C '); + insert into takes values('21556', '242', '1', 'Fall', 2009, 'B '); + insert into takes values('45720', '401', '1', 'Fall', 2003, 'C '); + insert into takes values('61403', '867', '1', 'Fall', 2006, 'B+'); + insert into takes values('75510', '692', '1', 'Spring', 2010, 'C '); + insert into takes values('66008', '443', '2', 'Spring', 2002, 'A-'); + insert into takes values('1726', '443', '2', 'Spring', 2002, 'A-'); + insert into takes values('89551', '604', '1', 'Spring', 2009, 'C-'); + insert into takes values('40116', '496', '1', 'Fall', 2001, 'C+'); + insert into takes values('75794', '795', '1', 'Spring', 2004, 'C '); + insert into takes values('24442', '476', '1', 'Fall', 2010, 'B-'); + insert into takes values('99268', '274', '1', 'Fall', 2002, 'C-'); + insert into takes values('7149', '169', '2', 'Fall', 2002, 'C+'); + insert into takes values('9460', '612', '1', 'Fall', 2007, 'C-'); + insert into takes values('41675', '421', '1', 'Fall', 2004, 'A '); + insert into takes values('75791', '237', '1', 'Spring', 2008, 'C+'); + insert into takes values('8022', '704', '1', 'Spring', 2008, 'C '); + insert into takes values('70688', '802', '1', 'Spring', 2003, 'A '); + insert into takes values('8860', '258', '1', 'Fall', 2007, 'C+'); + insert into takes values('29140', '362', '1', 'Fall', 2005, 'B-'); + insert into takes values('25068', '960', '2', 'Fall', 2006, 'B '); + insert into takes values('38602', '408', '1', 'Spring', 2007, 'B+'); + insert into takes values('57456', '400', '1', 'Spring', 2007, 'C-'); + insert into takes values('76759', '527', '1', 'Fall', 2004, 'C '); + insert into takes values('2970', '559', '1', 'Fall', 2002, 'B-'); + insert into takes values('41599', '694', '1', 'Fall', 2002, 'B+'); + insert into takes values('99073', '362', '2', 'Fall', 2006, 'B '); + insert into takes values('15070', '426', '1', 'Spring', 2006, 'B+'); + insert into takes values('82868', '612', '1', 'Fall', 2007, 'A+'); + insert into takes values('38555', '694', '1', 'Fall', 2002, 'A+'); + insert into takes values('93004', '421', '1', 'Fall', 2004, 'A '); + insert into takes values('35293', '571', '1', 'Spring', 2004, 'B '); + insert into takes values('91197', '663', '1', 'Spring', 2005, 'C '); + insert into takes values('16528', '362', '3', 'Spring', 2008, 'A+'); + insert into takes values('58846', '962', '1', 'Spring', 2008, 'B '); + insert into takes values('99422', '426', '1', 'Spring', 2006, 'B+'); + insert into takes values('27366', '426', '1', 'Spring', 2006, 'B-'); + insert into takes values('22532', '559', '1', 'Fall', 2002, 'A '); + insert into takes values('19203', '735', '2', 'Spring', 2010, 'B '); + insert into takes values('4940', '960', '1', 'Fall', 2009, 'B-'); + insert into takes values('28004', '258', '1', 'Fall', 2007, 'C+'); + insert into takes values('46762', '663', '1', 'Spring', 2005, 'B-'); + insert into takes values('23373', '319', '1', 'Spring', 2003, 'A '); + insert into takes values('82083', '352', '1', 'Spring', 2006, 'A '); + insert into takes values('86661', '852', '1', 'Spring', 2008, 'A+'); + insert into takes values('78332', '362', '1', 'Fall', 2005, 'B+'); + insert into takes values('14668', '875', '1', 'Spring', 2005, 'C+'); + insert into takes values('61998', '561', '1', 'Fall', 2006, 'A-'); + insert into takes values('49618', '960', '2', 'Fall', 2006, 'B+'); + insert into takes values('30772', '960', '2', 'Fall', 2006, 'B-'); + insert into takes values('10454', '561', '1', 'Fall', 2006, 'B-'); + insert into takes values('63361', '401', '1', 'Fall', 2003, 'C+'); + insert into takes values('75273', '867', '1', 'Fall', 2006, 'A '); + insert into takes values('97629', '692', '1', 'Spring', 2010, 'C+'); + insert into takes values('70522', '461', '1', 'Fall', 2002, 'C+'); + insert into takes values('77148', '793', '1', 'Spring', 2002, 'A-'); + insert into takes values('96772', '852', '1', 'Spring', 2008, 'C '); + insert into takes values('71529', '959', '1', 'Fall', 2006, 'C '); + insert into takes values('85754', '274', '1', 'Fall', 2002, 'A '); + insert into takes values('64550', '192', '1', 'Fall', 2002, 'C+'); + insert into takes values('41965', '972', '1', 'Spring', 2009, 'C '); + insert into takes values('40303', '468', '1', 'Fall', 2005, 'C-'); + insert into takes values('67514', '679', '1', 'Spring', 2010, 'B '); + insert into takes values('94257', '362', '2', 'Fall', 2006, 'C+'); + insert into takes values('27687', '443', '2', 'Spring', 2002, 'C-'); + insert into takes values('15144', '443', '1', 'Spring', 2010, 'C+'); + insert into takes values('44584', '962', '1', 'Spring', 2008, 'C-'); + insert into takes values('83747', '591', '1', 'Spring', 2005, 'A-'); + insert into takes values('40189', '270', '1', 'Spring', 2010, 'B+'); + insert into takes values('43032', '629', '1', 'Spring', 2003, 'A-'); + insert into takes values('19048', '642', '1', 'Fall', 2004, 'A-'); + insert into takes values('82646', '843', '1', 'Fall', 2010, 'B '); + insert into takes values('10917', '338', '2', 'Spring', 2006, 'B '); + insert into takes values('6400', '345', '1', 'Spring', 2008, 'C '); + insert into takes values('86375', '802', '1', 'Spring', 2003, 'A-'); + insert into takes values('37581', '875', '1', 'Spring', 2005, 'A-'); + insert into takes values('41751', '486', '1', 'Fall', 2009, 'C+'); + insert into takes values('5399', '692', '1', 'Spring', 2010, 'B-'); + insert into takes values('65190', '200', '1', 'Spring', 2007, 'B+'); + insert into takes values('70098', '747', '1', 'Spring', 2004, 'C-'); + insert into takes values('56499', '748', '1', 'Fall', 2003, 'A '); + insert into takes values('70564', '629', '1', 'Spring', 2003, 'B+'); + insert into takes values('30021', '927', '1', 'Fall', 2002, 'A+'); + insert into takes values('89246', '476', '1', 'Fall', 2010, 'B-'); + insert into takes values('21102', '352', '1', 'Spring', 2006, 'A '); + insert into takes values('83480', '702', '1', 'Spring', 2001, 'A '); + insert into takes values('48640', '679', '1', 'Spring', 2010, 'C+'); + insert into takes values('1285', '304', '1', 'Fall', 2009, 'C-'); + insert into takes values('63582', '237', '1', 'Spring', 2008, 'C '); + insert into takes values('11055', '629', '1', 'Spring', 2003, 'A '); + insert into takes values('40677', '192', '1', 'Fall', 2002, 'A '); + insert into takes values('69732', '366', '1', 'Fall', 2005, 'A '); + insert into takes values('30110', '313', '1', 'Fall', 2010, 'B '); + insert into takes values('10814', '445', '1', 'Spring', 2001, 'A '); + insert into takes values('68720', '642', '1', 'Fall', 2004, 'B-'); + insert into takes values('88884', '105', '2', 'Fall', 2002, 'A-'); + insert into takes values('23506', '408', '2', 'Spring', 2003, 'B '); + insert into takes values('11076', '258', '1', 'Fall', 2007, 'A+'); + insert into takes values('15698', '612', '1', 'Fall', 2007, 'A+'); + insert into takes values('46928', '864', '1', 'Spring', 2006, 'B-'); + insert into takes values('84845', '599', '1', 'Spring', 2003, 'C-'); + insert into takes values('35721', '468', '1', 'Fall', 2005, 'A+'); + insert into takes values('94371', '352', '1', 'Spring', 2006, 'C+'); + insert into takes values('75273', '626', '1', 'Fall', 2006, 'B-'); + insert into takes values('97551', '200', '2', 'Fall', 2002, 'C '); + insert into takes values('68453', '875', '1', 'Spring', 2005, 'C+'); + insert into takes values('64155', '200', '2', 'Fall', 2002, 'C-'); + insert into takes values('98359', '571', '1', 'Spring', 2004, 'C-'); + insert into takes values('22179', '338', '2', 'Spring', 2006, 'C+'); + insert into takes values('29871', '735', '1', 'Spring', 2003, 'B-'); + insert into takes values('13921', '875', '1', 'Spring', 2005, 'C+'); + insert into takes values('29871', '949', '1', 'Fall', 2007, 'B-'); + insert into takes values('65688', '105', '1', 'Fall', 2009, 'C '); + insert into takes values('90009', '105', '1', 'Fall', 2009, 'C-'); + insert into takes values('9993', '704', '1', 'Spring', 2008, 'A-'); + insert into takes values('42688', '461', '1', 'Fall', 2002, 'B-'); + insert into takes values('24116', '400', '2', 'Fall', 2003, 'B+'); + insert into takes values('48469', '443', '2', 'Spring', 2002, 'B+'); + insert into takes values('59553', '808', '1', 'Fall', 2003, 'B+'); + insert into takes values('79892', '949', '1', 'Fall', 2007, 'B '); + insert into takes values('435', '496', '1', 'Fall', 2001, 'C '); + insert into takes values('63289', '843', '1', 'Fall', 2010, 'B '); + insert into takes values('32464', '415', '1', 'Fall', 2010, 'C '); + insert into takes values('6195', '366', '1', 'Fall', 2005, 'A+'); + insert into takes values('53089', '493', '1', 'Spring', 2010, 'B+'); + insert into takes values('73268', '545', '1', 'Fall', 2001, 'B+'); + insert into takes values('21395', '313', '1', 'Fall', 2010, 'B-'); + insert into takes values('7854', '270', '1', 'Spring', 2010, 'B-'); + insert into takes values('76799', '808', '1', 'Fall', 2003, 'A '); + insert into takes values('95029', '338', '1', 'Spring', 2007, 'A-'); + insert into takes values('96003', '313', '1', 'Fall', 2010, 'B-'); + insert into takes values('29849', '137', '1', 'Spring', 2002, 'C '); + insert into takes values('99611', '468', '1', 'Fall', 2005, 'A+'); + insert into takes values('4383', '349', '1', 'Spring', 2008, 'A '); + insert into takes values('99754', '421', '1', 'Fall', 2004, 'A '); + insert into takes values('74672', '692', '1', 'Spring', 2010, 'B '); + insert into takes values('84239', '270', '1', 'Spring', 2010, 'A+'); + insert into takes values('46035', '482', '1', 'Fall', 2005, 'B '); + insert into takes values('69471', '270', '1', 'Spring', 2010, 'B+'); + insert into takes values('50583', '169', '2', 'Fall', 2002, 'A-'); + insert into takes values('98047', '362', '2', 'Fall', 2006, 'A '); + insert into takes values('76759', '489', '1', 'Fall', 2007, 'C-'); + insert into takes values('50658', '366', '1', 'Fall', 2005, 'A-'); + insert into takes values('80742', '362', '3', 'Spring', 2008, 'B+'); + insert into takes values('85680', '793', '1', 'Spring', 2002, 'B+'); + insert into takes values('58874', '802', '1', 'Spring', 2003, 'C '); + insert into takes values('45083', '169', '1', 'Spring', 2007, 'B '); + insert into takes values('65208', '486', '1', 'Fall', 2009, 'A-'); + insert into takes values('53799', '760', '1', 'Spring', 2004, 'A+'); + insert into takes values('40116', '338', '1', 'Spring', 2007, 'A '); + insert into takes values('24746', '169', '1', 'Spring', 2007, 'B '); + insert into takes values('98984', '949', '1', 'Fall', 2007, 'C '); + insert into takes values('67051', '795', '1', 'Spring', 2004, 'B '); + insert into takes values('85445', '735', '1', 'Spring', 2003, 'B+'); + insert into takes values('81896', '169', '1', 'Spring', 2007, 'B '); + insert into takes values('97065', '468', '2', 'Fall', 2007, 'B-'); + insert into takes values('64401', '559', '1', 'Fall', 2002, 'A '); + insert into takes values('51678', '692', '1', 'Spring', 2010, 'B+'); + insert into takes values('33401', '258', '1', 'Fall', 2007, 'A-'); + insert into takes values('94620', '581', '1', 'Spring', 2005, 'B '); + insert into takes values('7602', '137', '1', 'Spring', 2002, 'B+'); + insert into takes values('22050', '791', '1', 'Spring', 2006, 'B-'); + insert into takes values('88169', '242', '1', 'Fall', 2009, 'C '); + insert into takes values('20540', '105', '1', 'Fall', 2009, 'A '); + insert into takes values('29435', '313', '1', 'Fall', 2010, 'A '); + insert into takes values('23224', '366', '1', 'Fall', 2005, 'C '); + insert into takes values('64934', '319', '1', 'Spring', 2003, 'C+'); + insert into takes values('16849', '974', '1', 'Fall', 2003, 'A-'); + insert into takes values('73542', '137', '1', 'Spring', 2002, 'A-'); + insert into takes values('20002', '704', '1', 'Spring', 2008, 'C-'); + insert into takes values('14182', '852', '1', 'Spring', 2008, 'C+'); + insert into takes values('13081', '443', '2', 'Spring', 2002, 'B+'); + insert into takes values('92965', '808', '1', 'Fall', 2003, 'B+'); + insert into takes values('39157', '735', '1', 'Spring', 2003, 'A-'); + insert into takes values('5243', '313', '1', 'Fall', 2010, 'C-'); + insert into takes values('90914', '137', '1', 'Spring', 2002, 'C-'); + insert into takes values('858', '200', '1', 'Spring', 2007, 'A '); + insert into takes values('58606', '158', '2', 'Spring', 2008, 'C+'); + insert into takes values('15249', '468', '2', 'Fall', 2007, 'C-'); + insert into takes values('48778', '362', '1', 'Fall', 2005, 'A '); + insert into takes values('72657', '105', '1', 'Fall', 2009, 'B+'); + insert into takes values('10454', '468', '1', 'Fall', 2005, 'A '); + insert into takes values('32881', '802', '1', 'Spring', 2003, 'C '); + insert into takes values('55940', '345', '1', 'Spring', 2008, 'C+'); + insert into takes values('98359', '401', '1', 'Fall', 2003, 'A+'); + insert into takes values('12216', '694', '1', 'Fall', 2002, 'A '); + insert into takes values('36791', '793', '1', 'Spring', 2002, 'B+'); + insert into takes values('62749', '408', '2', 'Spring', 2003, 'A+'); + insert into takes values('80990', '545', '1', 'Fall', 2001, 'C+'); + insert into takes values('21692', '694', '1', 'Fall', 2002, 'B+'); + insert into takes values('89132', '376', '1', 'Fall', 2006, 'A-'); + insert into takes values('9114', '960', '2', 'Fall', 2006, 'A '); + insert into takes values('71768', '349', '1', 'Spring', 2008, 'B '); + insert into takes values('69581', '991', '1', 'Spring', 2008, 'C '); + insert into takes values('11195', '258', '1', 'Fall', 2007, 'B+'); + insert into takes values('36845', '679', '1', 'Spring', 2010, 'A-'); + insert into takes values('35498', '105', '2', 'Fall', 2002, 'C+'); + insert into takes values('73072', '476', '1', 'Fall', 2010, 'C-'); + insert into takes values('35042', '571', '1', 'Spring', 2004, 'C-'); + insert into takes values('45359', '401', '1', 'Fall', 2003, 'C-'); + insert into takes values('29849', '561', '1', 'Fall', 2006, 'C+'); + insert into takes values('84704', '735', '1', 'Spring', 2003, 'C+'); + insert into takes values('41832', '642', '1', 'Fall', 2004, 'C-'); + insert into takes values('92464', '443', '2', 'Spring', 2002, 'B+'); + insert into takes values('95029', '612', '1', 'Fall', 2007, 'A+'); + insert into takes values('11578', '642', '1', 'Fall', 2004, 'C+'); + insert into takes values('10269', '352', '1', 'Spring', 2006, 'C-'); + insert into takes values('83136', '319', '1', 'Spring', 2003, 'A+'); + insert into takes values('22170', '802', '1', 'Spring', 2003, 'B '); + insert into takes values('54610', '169', '1', 'Spring', 2007, 'A+'); + insert into takes values('17996', '735', '1', 'Spring', 2003, 'A+'); + insert into takes values('91992', '468', '1', 'Fall', 2005, 'A+'); + insert into takes values('61354', '626', '1', 'Fall', 2006, 'B '); + insert into takes values('81884', '663', '1', 'Spring', 2005, 'B '); + insert into takes values('93508', '445', '1', 'Spring', 2001, 'A-'); + insert into takes values('3005', '808', '1', 'Fall', 2003, 'C '); + insert into takes values('51579', '802', '1', 'Spring', 2003, 'B-'); + insert into takes values('34322', '679', '1', 'Spring', 2010, 'C+'); + insert into takes values('57666', '867', '2', 'Fall', 2010, 'B-'); + insert into takes values('10814', '105', '1', 'Fall', 2009, 'C-'); + insert into takes values('86661', '242', '1', 'Fall', 2009, 'C-'); + insert into takes values('3651', '949', '1', 'Fall', 2007, 'B '); + insert into takes values('31560', '408', '1', 'Spring', 2007, 'C '); + insert into takes values('73072', '802', '1', 'Spring', 2003, 'B+'); + insert into takes values('20099', '545', '1', 'Fall', 2001, 'B-'); + insert into takes values('82580', '561', '1', 'Fall', 2006, 'C '); + insert into takes values('25525', '158', '1', 'Fall', 2008, 'B '); + insert into takes values('59530', '663', '1', 'Spring', 2005, 'B+'); + insert into takes values('1922', '237', '1', 'Spring', 2008, 'B-'); + insert into takes values('51678', '604', '1', 'Spring', 2009, 'A+'); + insert into takes values('37038', '867', '2', 'Fall', 2010, 'C-'); + insert into takes values('8251', '426', '1', 'Spring', 2006, 'A-'); + insert into takes values('45570', '852', '1', 'Spring', 2008, 'B '); + insert into takes values('93571', '559', '1', 'Fall', 2002, 'B '); + insert into takes values('40116', '349', '1', 'Spring', 2008, 'A+'); + insert into takes values('70235', '960', '2', 'Fall', 2006, 'C+'); + insert into takes values('6523', '426', '1', 'Spring', 2006, 'A-'); + insert into takes values('58595', '702', '1', 'Spring', 2001, 'B-'); + insert into takes values('5399', '679', '1', 'Spring', 2010, 'C-'); + insert into takes values('11966', '401', '1', 'Fall', 2003, 'B '); + insert into takes values('79772', '791', '1', 'Spring', 2006, 'A+'); + insert into takes values('35138', '239', '1', 'Fall', 2006, 'B-'); + insert into takes values('13495', '338', '2', 'Spring', 2006, 'C '); + insert into takes values('58701', '376', '1', 'Fall', 2006, 'B-'); + insert into takes values('88887', '760', '1', 'Spring', 2004, 'C '); + insert into takes values('52494', '376', '1', 'Fall', 2006, 'A+'); + insert into takes values('31250', '274', '1', 'Fall', 2002, 'A-'); + insert into takes values('53803', '457', '1', 'Spring', 2001, 'A '); + insert into takes values('91063', '696', '1', 'Spring', 2002, 'C '); + insert into takes values('32119', '748', '1', 'Fall', 2003, 'B+'); + insert into takes values('94801', '457', '1', 'Spring', 2001, 'C+'); + insert into takes values('73606', '200', '2', 'Fall', 2002, 'A-'); + insert into takes values('34158', '421', '1', 'Fall', 2004, 'B+'); + insert into takes values('12214', '612', '1', 'Fall', 2007, 'C+'); + insert into takes values('64259', '612', '1', 'Fall', 2007, 'C-'); + insert into takes values('75273', '962', '1', 'Spring', 2008, 'A-'); + insert into takes values('14563', '559', '1', 'Fall', 2002, 'B-'); + insert into takes values('20084', '791', '1', 'Spring', 2006, 'A+'); + insert into takes values('39241', '852', '1', 'Spring', 2008, 'A '); + insert into takes values('65676', '482', '1', 'Fall', 2005, 'A+'); + insert into takes values('31080', '345', '1', 'Spring', 2008, 'B-'); + insert into takes values('1018', '599', '1', 'Spring', 2003, 'A+'); + insert into takes values('56139', '571', '1', 'Spring', 2004, 'B '); + insert into takes values('99775', '604', '1', 'Spring', 2009, 'B+'); + insert into takes values('23794', '426', '1', 'Spring', 2006, 'B-'); + insert into takes values('33201', '795', '1', 'Spring', 2004, 'A-'); + insert into takes values('39881', '802', '1', 'Spring', 2003, 'A '); + insert into takes values('62716', '663', '1', 'Spring', 2005, 'A-'); + insert into takes values('49759', '237', '1', 'Spring', 2008, 'B '); + insert into takes values('24197', '362', '2', 'Fall', 2006, 'A '); + insert into takes values('33651', '642', '1', 'Fall', 2004, 'A+'); + insert into takes values('82580', '864', '1', 'Spring', 2006, 'C+'); + insert into takes values('16133', '334', '1', 'Fall', 2009, 'C+'); + insert into takes values('3487', '527', '1', 'Fall', 2004, 'B+'); + insert into takes values('94801', '400', '1', 'Spring', 2007, 'C '); + insert into takes values('10269', '631', '1', 'Spring', 2007, 'B+'); + insert into takes values('23525', '791', '1', 'Spring', 2006, 'A-'); + insert into takes values('32345', '793', '1', 'Spring', 2002, 'A-'); + insert into takes values('52866', '237', '2', 'Fall', 2009, 'B-'); + insert into takes values('53185', '959', '1', 'Fall', 2006, 'C '); + insert into takes values('34322', '169', '1', 'Spring', 2007, 'A-'); + insert into takes values('16907', '421', '1', 'Fall', 2004, 'C+'); + insert into takes values('8807', '962', '1', 'Spring', 2008, 'A+'); + insert into takes values('17676', '401', '1', 'Fall', 2003, 'A-'); + insert into takes values('56499', '949', '1', 'Fall', 2007, 'A-'); + insert into takes values('92385', '400', '1', 'Spring', 2007, 'C '); + insert into takes values('66090', '362', '3', 'Spring', 2008, 'A+'); + insert into takes values('78858', '237', '2', 'Fall', 2009, 'C '); + insert into takes values('69581', '802', '1', 'Spring', 2003, 'A+'); + insert into takes values('85234', '581', '1', 'Spring', 2005, 'B-'); + insert into takes values('14065', '960', '1', 'Fall', 2009, 'C '); + insert into takes values('58846', '603', '1', 'Fall', 2003, 'C+'); + insert into takes values('51768', '843', '1', 'Fall', 2010, 'C '); + insert into takes values('58326', '581', '1', 'Spring', 2005, 'B+'); + insert into takes values('26730', '319', '1', 'Spring', 2003, 'C '); + insert into takes values('77244', '362', '3', 'Spring', 2008, 'A-'); + insert into takes values('64222', '561', '1', 'Fall', 2006, 'A+'); + insert into takes values('42688', '200', '1', 'Spring', 2007, 'A '); + insert into takes values('17607', '489', '1', 'Fall', 2007, 'B-'); + insert into takes values('21102', '959', '1', 'Fall', 2006, 'B-'); + insert into takes values('75395', '362', '3', 'Spring', 2008, 'A '); + insert into takes values('49280', '704', '1', 'Spring', 2008, 'B '); + insert into takes values('43432', '426', '1', 'Spring', 2006, 'B+'); + insert into takes values('83444', '270', '1', 'Spring', 2010, 'B-'); + insert into takes values('92776', '192', '1', 'Fall', 2002, 'A+'); + insert into takes values('33837', '991', '1', 'Spring', 2008, 'C+'); + insert into takes values('33206', '338', '1', 'Spring', 2007, 'C '); + insert into takes values('47126', '692', '1', 'Spring', 2010, 'B+'); + insert into takes values('58465', '561', '1', 'Fall', 2006, 'C+'); + insert into takes values('77218', '445', '1', 'Spring', 2001, 'A '); + insert into takes values('51579', '158', '1', 'Fall', 2008, 'C-'); + insert into takes values('18675', '663', '1', 'Spring', 2005, 'C+'); + insert into takes values('79205', '694', '1', 'Fall', 2002, 'C '); + insert into takes values('74530', '735', '1', 'Spring', 2003, 'C-'); + insert into takes values('1367', '349', '1', 'Spring', 2008, 'C '); + insert into takes values('71944', '270', '1', 'Spring', 2010, 'A '); + insert into takes values('56212', '334', '1', 'Fall', 2009, 'B+'); + insert into takes values('85981', '629', '1', 'Spring', 2003, 'A '); + insert into takes values('24387', '927', '1', 'Fall', 2002, 'B '); + insert into takes values('10204', '692', '1', 'Spring', 2010, 'B-'); + insert into takes values('98140', '748', '1', 'Fall', 2003, 'A '); + insert into takes values('60249', '663', '1', 'Spring', 2005, 'A '); + insert into takes values('58935', '496', '1', 'Fall', 2001, 'B '); + insert into takes values('95953', '200', '1', 'Spring', 2007, 'B '); + insert into takes values('23994', '808', '1', 'Fall', 2003, 'B '); + insert into takes values('3127', '949', '1', 'Fall', 2007, 'C-'); + insert into takes values('34170', '401', '1', 'Fall', 2003, 'C-'); + insert into takes values('55000', '974', '1', 'Fall', 2003, 'B-'); + insert into takes values('64140', '545', '1', 'Fall', 2001, 'A+'); + insert into takes values('11453', '795', '1', 'Spring', 2004, 'A '); + insert into takes values('5920', '239', '1', 'Fall', 2006, 'A '); + insert into takes values('12563', '137', '1', 'Spring', 2002, 'A+'); + insert into takes values('51238', '991', '1', 'Spring', 2008, 'B+'); + insert into takes values('81258', '843', '1', 'Fall', 2010, 'A-'); + insert into takes values('54610', '559', '1', 'Fall', 2002, 'C-'); + insert into takes values('56499', '571', '1', 'Spring', 2004, 'C '); + insert into takes values('107', '735', '2', 'Spring', 2010, 'A '); + insert into takes values('87624', '408', '1', 'Spring', 2007, 'B+'); + insert into takes values('93004', '200', '1', 'Spring', 2007, 'C+'); + insert into takes values('1000', '319', '1', 'Spring', 2003, 'B+'); + insert into takes values('37521', '468', '2', 'Fall', 2007, 'B '); + insert into takes values('18234', '158', '2', 'Spring', 2008, 'C '); + insert into takes values('24932', '105', '2', 'Fall', 2002, 'A+'); + insert into takes values('41751', '192', '1', 'Fall', 2002, 'A '); + insert into takes values('43226', '875', '1', 'Spring', 2005, 'C '); + insert into takes values('75252', '626', '1', 'Fall', 2006, 'B-'); + insert into takes values('75116', '376', '1', 'Fall', 2006, 'C-'); + insert into takes values('25362', '415', '1', 'Fall', 2010, 'C-'); + insert into takes values('61232', '400', '1', 'Spring', 2007, 'A+'); + insert into takes values('85063', '692', '1', 'Spring', 2010, 'C+'); + insert into takes values('76768', '258', '1', 'Fall', 2007, 'C '); + insert into takes values('16250', '362', '1', 'Fall', 2005, 'A '); + insert into takes values('84727', '366', '1', 'Fall', 2005, 'A '); + insert into takes values('35198', '237', '2', 'Fall', 2009, 'B-'); + insert into takes values('43016', '571', '1', 'Spring', 2004, 'C+'); + insert into takes values('1954', '704', '1', 'Spring', 2008, 'A-'); + insert into takes values('20002', '893', '1', 'Fall', 2007, 'C+'); + insert into takes values('83170', '239', '1', 'Fall', 2006, 'C '); + insert into takes values('22268', '270', '1', 'Spring', 2010, 'A '); + insert into takes values('50743', '421', '1', 'Fall', 2004, 'A-'); + insert into takes values('92867', '959', '1', 'Fall', 2006, 'B-'); + insert into takes values('70235', '604', '1', 'Spring', 2009, 'B '); + insert into takes values('44584', '105', '2', 'Fall', 2002, 'B-'); + insert into takes values('67146', '704', '1', 'Spring', 2008, 'C+'); + insert into takes values('75513', '747', '1', 'Spring', 2004, 'C-'); + insert into takes values('85505', '843', '1', 'Fall', 2010, 'C '); + insert into takes values('9953', '408', '2', 'Spring', 2003, 'C+'); + insert into takes values('978', '962', '1', 'Spring', 2008, 'B+'); + insert into takes values('32954', '962', '1', 'Spring', 2008, 'C '); + insert into takes values('59920', '200', '1', 'Spring', 2007, 'A-'); + insert into takes values('34055', '679', '1', 'Spring', 2010, 'A+'); + insert into takes values('99348', '696', '1', 'Spring', 2002, 'A '); + insert into takes values('98120', '604', '1', 'Spring', 2009, 'B '); + insert into takes values('95850', '962', '1', 'Spring', 2008, 'C+'); + insert into takes values('27430', '949', '1', 'Fall', 2007, 'A+'); + insert into takes values('34502', '692', '1', 'Spring', 2010, 'C+'); + insert into takes values('38336', '476', '1', 'Fall', 2010, 'C '); + insert into takes values('48471', '493', '1', 'Spring', 2010, 'C-'); + insert into takes values('8192', '991', '1', 'Spring', 2008, 'C '); + insert into takes values('25362', '237', '1', 'Spring', 2008, 'C-'); + insert into takes values('64642', '991', '1', 'Spring', 2008, 'A '); + insert into takes values('57334', '137', '1', 'Spring', 2002, 'B+'); + insert into takes values('29871', '612', '1', 'Fall', 2007, 'C+'); + insert into takes values('59046', '493', '1', 'Spring', 2010, 'C '); + insert into takes values('6712', '401', '1', 'Fall', 2003, 'B+'); + insert into takes values('26494', '748', '1', 'Fall', 2003, 'A+'); + insert into takes values('28252', '702', '1', 'Spring', 2001, 'A-'); + insert into takes values('49205', '461', '1', 'Fall', 2002, 'B-'); + insert into takes values('30124', '200', '2', 'Fall', 2002, 'A+'); + insert into takes values('69752', '304', '1', 'Fall', 2009, 'C-'); + insert into takes values('48471', '867', '2', 'Fall', 2010, 'A '); + insert into takes values('61783', '493', '1', 'Spring', 2010, 'B+'); + insert into takes values('11455', '468', '1', 'Fall', 2005, 'B-'); + insert into takes values('47824', '237', '2', 'Fall', 2009, 'A+'); + insert into takes values('83573', '408', '1', 'Spring', 2007, 'C '); + insert into takes values('35881', '242', '1', 'Fall', 2009, 'C '); + insert into takes values('68720', '349', '1', 'Spring', 2008, 'B '); + insert into takes values('85356', '105', '2', 'Fall', 2002, 'B-'); + insert into takes values('45359', '338', '2', 'Spring', 2006, 'A '); + insert into takes values('52057', '974', '1', 'Fall', 2003, 'A-'); + insert into takes values('71631', '362', '2', 'Fall', 2006, 'C-'); + insert into takes values('39978', '274', '1', 'Fall', 2002, 'C-'); + insert into takes values('79352', '875', '1', 'Spring', 2005, 'A '); + insert into takes values('28518', '867', '2', 'Fall', 2010, 'B-'); + insert into takes values('84845', '545', '1', 'Fall', 2001, 'A '); + insert into takes values('14668', '338', '1', 'Spring', 2007, 'C-'); + insert into takes values('30896', '808', '1', 'Fall', 2003, 'A '); + insert into takes values('75560', '793', '1', 'Spring', 2002, 'A-'); + insert into takes values('17397', '629', '1', 'Spring', 2003, 'B-'); + insert into takes values('65299', '408', '2', 'Spring', 2003, 'C+'); + insert into takes values('82646', '461', '1', 'Fall', 2002, 'A+'); + insert into takes values('67024', '704', '1', 'Spring', 2008, 'A-'); + insert into takes values('1826', '200', '1', 'Spring', 2007, 'B+'); + insert into takes values('26695', '476', '1', 'Fall', 2010, 'C-'); + insert into takes values('17133', '603', '1', 'Fall', 2003, 'A-'); + insert into takes values('38545', '694', '1', 'Fall', 2002, 'B '); + insert into takes values('53048', '105', '1', 'Fall', 2009, 'C-'); + insert into takes values('68395', '349', '1', 'Spring', 2008, 'A+'); + insert into takes values('68150', '239', '1', 'Fall', 2006, 'B-'); + insert into takes values('36052', '802', '1', 'Spring', 2003, 'C '); + insert into takes values('64945', '960', '1', 'Fall', 2009, 'C-'); + insert into takes values('80742', '349', '1', 'Spring', 2008, 'C-'); + insert into takes values('72959', '445', '1', 'Spring', 2001, 'A+'); + insert into takes values('78581', '345', '1', 'Spring', 2008, 'C '); + insert into takes values('15980', '421', '1', 'Fall', 2004, 'B+'); + insert into takes values('58172', '991', '1', 'Spring', 2008, 'B+'); + insert into takes values('50013', '960', '1', 'Fall', 2009, 'B+'); + insert into takes values('27898', '927', '1', 'Fall', 2002, 'B-'); + insert into takes values('61854', '443', '1', 'Spring', 2010, 'C+'); + insert into takes values('10269', '362', '2', 'Fall', 2006, 'B '); + insert into takes values('16057', '875', '1', 'Spring', 2005, 'A-'); + insert into takes values('18234', '366', '1', 'Fall', 2005, 'C-'); + insert into takes values('9183', '692', '1', 'Spring', 2010, 'C-'); + insert into takes values('99754', '362', '1', 'Fall', 2005, 'B-'); + insert into takes values('96246', '802', '1', 'Spring', 2003, 'C-'); + insert into takes values('18554', '237', '2', 'Fall', 2009, 'B-'); + insert into takes values('57213', '366', '1', 'Fall', 2005, 'C+'); + insert into takes values('842', '604', '1', 'Spring', 2009, 'C+'); + insert into takes values('3739', '496', '1', 'Fall', 2001, 'C+'); + insert into takes values('32217', '408', '1', 'Spring', 2007, 'B '); + insert into takes values('9114', '366', '1', 'Fall', 2005, 'B-'); + insert into takes values('80941', '468', '1', 'Fall', 2005, 'C '); + insert into takes values('28316', '304', '1', 'Fall', 2009, 'C '); + insert into takes values('69081', '239', '1', 'Fall', 2006, 'A-'); + insert into takes values('35362', '972', '1', 'Spring', 2009, 'C '); + insert into takes values('62429', '461', '1', 'Fall', 2002, 'B '); + insert into takes values('14432', '400', '2', 'Fall', 2003, 'C-'); + insert into takes values('74911', '319', '1', 'Spring', 2003, 'A '); + insert into takes values('88418', '345', '1', 'Spring', 2008, 'B '); + insert into takes values('39925', '991', '1', 'Spring', 2008, 'A '); + insert into takes values('68999', '349', '1', 'Spring', 2008, 'C-'); + insert into takes values('8853', '702', '1', 'Spring', 2001, 'B+'); + insert into takes values('97435', '443', '2', 'Spring', 2002, 'B '); + insert into takes values('65688', '612', '1', 'Fall', 2007, 'C-'); + insert into takes values('73411', '974', '1', 'Fall', 2003, 'A '); + insert into takes values('96052', '200', '1', 'Spring', 2007, 'C '); + insert into takes values('74974', '629', '1', 'Spring', 2003, 'C+'); + insert into takes values('94894', '962', '1', 'Spring', 2008, 'C '); + insert into takes values('10663', '604', '1', 'Spring', 2009, 'A '); + insert into takes values('46436', '893', '1', 'Fall', 2007, 'C '); + insert into takes values('60249', '352', '1', 'Spring', 2006, 'B-'); + insert into takes values('58355', '927', '1', 'Fall', 2002, 'B-'); + insert into takes values('86641', '239', '1', 'Fall', 2006, 'B '); + insert into takes values('81876', '559', '1', 'Fall', 2002, 'C '); + insert into takes values('19536', '791', '1', 'Spring', 2006, 'C+'); + insert into takes values('38548', '626', '1', 'Fall', 2006, 'A+'); + insert into takes values('5843', '694', '1', 'Fall', 2002, 'C+'); + insert into takes values('29665', '169', '1', 'Spring', 2007, 'B '); + insert into takes values('90132', '258', '1', 'Fall', 2007, 'B+'); + insert into takes values('73606', '461', '1', 'Fall', 2002, 'C+'); + insert into takes values('31820', '489', '1', 'Fall', 2007, 'C-'); + insert into takes values('87965', '304', '1', 'Fall', 2009, 'A-'); + insert into takes values('57925', '702', '1', 'Spring', 2001, 'C+'); + insert into takes values('10736', '489', '1', 'Fall', 2007, 'C+'); + insert into takes values('75116', '599', '1', 'Spring', 2003, 'C '); + insert into takes values('83573', '338', '1', 'Spring', 2007, 'C-'); + insert into takes values('77289', '338', '1', 'Spring', 2007, 'C+'); + insert into takes values('30845', '338', '1', 'Spring', 2007, 'A+'); + insert into takes values('26473', '169', '2', 'Fall', 2002, 'C+'); + insert into takes values('16405', '158', '1', 'Fall', 2008, 'A+'); + insert into takes values('17665', '852', '1', 'Spring', 2008, 'A+'); + insert into takes values('91343', '603', '1', 'Fall', 2003, 'A+'); + insert into takes values('30252', '962', '1', 'Spring', 2008, 'B+'); + insert into takes values('85234', '270', '1', 'Spring', 2010, 'B '); + insert into takes values('58413', '105', '1', 'Fall', 2009, 'C-'); + insert into takes values('7514', '239', '1', 'Fall', 2006, 'B+'); + insert into takes values('61920', '105', '2', 'Fall', 2002, 'C+'); + insert into takes values('5898', '960', '1', 'Fall', 2009, 'C-'); + insert into takes values('87015', '338', '1', 'Spring', 2007, 'C-'); + insert into takes values('78792', '239', '1', 'Fall', 2006, 'C '); + insert into takes values('77548', '793', '1', 'Spring', 2002, 'A-'); + insert into takes values('90124', '974', '1', 'Fall', 2003, 'C '); + insert into takes values('43912', '663', '1', 'Spring', 2005, 'C+'); + insert into takes values('59397', '493', '1', 'Spring', 2010, 'A-'); + insert into takes values('15883', '461', '1', 'Fall', 2002, 'B-'); + insert into takes values('30858', '802', '1', 'Spring', 2003, 'C+'); + insert into takes values('87651', '366', '1', 'Fall', 2005, 'C+'); + insert into takes values('94311', '864', '1', 'Spring', 2006, 'B+'); + insert into takes values('95574', '169', '1', 'Spring', 2007, 'C+'); + insert into takes values('49339', '408', '2', 'Spring', 2003, 'B-'); + insert into takes values('62487', '445', '1', 'Spring', 2001, 'A+'); + insert into takes values('31993', '802', '1', 'Spring', 2003, 'C-'); + insert into takes values('90234', '493', '1', 'Spring', 2010, 'B-'); + insert into takes values('25256', '408', '2', 'Spring', 2003, 'C '); + insert into takes values('97694', '493', '1', 'Spring', 2010, 'A '); + insert into takes values('18809', '692', '1', 'Spring', 2010, 'A-'); + insert into takes values('1367', '476', '1', 'Fall', 2010, 'C+'); + insert into takes values('5463', '603', '1', 'Fall', 2003, 'A+'); + insert into takes values('85366', '663', '1', 'Spring', 2005, 'C-'); + insert into takes values('57666', '527', '1', 'Fall', 2004, 'B '); + insert into takes values('44816', '169', '1', 'Spring', 2007, 'C+'); + insert into takes values('76049', '735', '1', 'Spring', 2003, 'B '); + insert into takes values('75362', '663', '1', 'Spring', 2005, 'C+'); + insert into takes values('91370', '105', '2', 'Fall', 2002, 'C '); + insert into takes values('91132', '200', '1', 'Spring', 2007, 'B+'); + insert into takes values('81984', '561', '1', 'Fall', 2006, 'A+'); + insert into takes values('4449', '960', '2', 'Fall', 2006, 'C-'); + insert into takes values('76173', '748', '1', 'Fall', 2003, 'B+'); + insert into takes values('8378', '631', '1', 'Spring', 2007, 'A '); + insert into takes values('41827', '239', '1', 'Fall', 2006, 'B+'); + insert into takes values('99694', '304', '1', 'Fall', 2009, 'C-'); + insert into takes values('70299', '793', '1', 'Spring', 2002, 'B+'); + insert into takes values('79205', '581', '1', 'Spring', 2005, 'C-'); + insert into takes values('95574', '421', '1', 'Fall', 2004, 'C+'); + insert into takes values('1018', '791', '1', 'Spring', 2006, 'B '); + insert into takes values('22417', '893', '1', 'Fall', 2007, 'B '); + insert into takes values('69081', '974', '1', 'Fall', 2003, 'A+'); + insert into takes values('92839', '875', '1', 'Spring', 2005, 'A-'); + insert into takes values('99694', '631', '1', 'Spring', 2007, 'B-'); + insert into takes values('93986', '704', '1', 'Spring', 2008, 'C+'); + insert into takes values('67436', '468', '1', 'Fall', 2005, 'A-'); + insert into takes values('93571', '571', '1', 'Spring', 2004, 'A '); + insert into takes values('36494', '527', '1', 'Fall', 2004, 'B '); + insert into takes values('77003', '631', '1', 'Spring', 2007, 'C '); + insert into takes values('81396', '338', '1', 'Spring', 2007, 'A '); + insert into takes values('19638', '927', '1', 'Fall', 2002, 'B-'); + insert into takes values('91370', '352', '1', 'Spring', 2006, 'A '); + insert into takes values('507', '852', '1', 'Spring', 2008, 'A '); + insert into takes values('39892', '169', '2', 'Fall', 2002, 'C+'); + insert into takes values('82066', '893', '1', 'Fall', 2007, 'B '); + insert into takes values('51553', '426', '1', 'Spring', 2006, 'A+'); + insert into takes values('29390', '702', '1', 'Spring', 2001, 'A+'); + insert into takes values('66212', '493', '1', 'Spring', 2010, 'B '); + insert into takes values('74672', '319', '1', 'Spring', 2003, 'B+'); + insert into takes values('68999', '489', '1', 'Fall', 2007, 'B+'); + insert into takes values('49813', '571', '1', 'Spring', 2004, 'C-'); + insert into takes values('58606', '972', '1', 'Spring', 2009, 'C+'); + insert into takes values('14563', '486', '1', 'Fall', 2009, 'A+'); + insert into takes values('51955', '415', '1', 'Fall', 2010, 'B+'); + insert into takes values('15430', '169', '1', 'Spring', 2007, 'C+'); + insert into takes values('9947', '482', '1', 'Fall', 2005, 'B-'); + insert into takes values('15283', '242', '1', 'Fall', 2009, 'B '); + insert into takes values('67657', '486', '1', 'Fall', 2009, 'C+'); + insert into takes values('47677', '366', '1', 'Fall', 2005, 'A '); + insert into takes values('83480', '408', '1', 'Spring', 2007, 'B+'); + insert into takes values('29399', '192', '1', 'Fall', 2002, 'A-'); + insert into takes values('17057', '663', '1', 'Spring', 2005, 'C+'); + insert into takes values('40371', '802', '1', 'Spring', 2003, 'B '); + insert into takes values('86661', '274', '1', 'Fall', 2002, 'B '); + insert into takes values('38555', '376', '1', 'Fall', 2006, 'B '); + insert into takes values('61403', '426', '1', 'Spring', 2006, 'B+'); + insert into takes values('41890', '362', '3', 'Spring', 2008, 'A+'); + insert into takes values('48778', '338', '2', 'Spring', 2006, 'C '); + insert into takes values('58595', '972', '1', 'Spring', 2009, 'C '); + insert into takes values('49759', '991', '1', 'Spring', 2008, 'B+'); + insert into takes values('8022', '962', '1', 'Spring', 2008, 'A+'); + insert into takes values('73165', '867', '1', 'Fall', 2006, 'A-'); + insert into takes values('19050', '604', '1', 'Spring', 2009, 'B+'); + insert into takes values('56299', '415', '1', 'Fall', 2010, 'A+'); + insert into takes values('57787', '974', '1', 'Fall', 2003, 'A '); + insert into takes values('67018', '571', '1', 'Spring', 2004, 'B+'); + insert into takes values('6712', '631', '1', 'Spring', 2007, 'B '); + insert into takes values('14023', '461', '1', 'Fall', 2002, 'B+'); + insert into takes values('82083', '679', '1', 'Spring', 2010, 'B '); + insert into takes values('70688', '852', '1', 'Spring', 2008, 'B-'); + insert into takes values('72669', '760', '1', 'Spring', 2004, 'A '); + insert into takes values('30957', '696', '1', 'Spring', 2002, 'B '); + insert into takes values('92867', '496', '1', 'Fall', 2001, 'B-'); + insert into takes values('1827', '747', '1', 'Spring', 2004, 'A '); + insert into takes values('67340', '867', '1', 'Fall', 2006, 'B+'); + insert into takes values('15283', '445', '1', 'Spring', 2001, 'A+'); + insert into takes values('96117', '443', '2', 'Spring', 2002, 'C-'); + insert into takes values('70924', '735', '2', 'Spring', 2010, 'B '); + insert into takes values('42991', '237', '2', 'Fall', 2009, 'B '); + insert into takes values('77218', '352', '1', 'Spring', 2006, 'A '); + insert into takes values('86674', '158', '2', 'Spring', 2008, 'C '); + insert into takes values('71631', '461', '1', 'Fall', 2002, 'C-'); + insert into takes values('32369', '795', '1', 'Spring', 2004, 'C-'); + insert into takes values('22618', '631', '1', 'Spring', 2007, 'B+'); + insert into takes values('10556', '239', '1', 'Fall', 2006, 'A+'); + insert into takes values('79502', '864', '1', 'Spring', 2006, 'B+'); + insert into takes values('931', '760', '1', 'Spring', 2004, 'A '); + insert into takes values('52187', '927', '1', 'Fall', 2002, 'C '); + insert into takes values('49813', '270', '1', 'Spring', 2010, 'C '); + insert into takes values('2629', '457', '1', 'Spring', 2001, 'B-'); + insert into takes values('30299', '604', '1', 'Spring', 2009, 'C '); + insert into takes values('12979', '242', '1', 'Fall', 2009, 'C '); + insert into takes values('37759', '747', '1', 'Spring', 2004, 'C '); + insert into takes values('94142', '867', '1', 'Fall', 2006, 'C '); + insert into takes values('5243', '960', '2', 'Fall', 2006, 'B '); + insert into takes values('28989', '426', '1', 'Spring', 2006, 'B+'); + insert into takes values('57780', '400', '1', 'Spring', 2007, 'B-'); + insert into takes values('59848', '852', '1', 'Spring', 2008, 'B-'); + insert into takes values('45083', '200', '1', 'Spring', 2007, 'B-'); + insert into takes values('29239', '962', '1', 'Spring', 2008, 'A-'); + insert into takes values('91616', '486', '1', 'Fall', 2009, 'C-'); + insert into takes values('67293', '604', '1', 'Spring', 2009, 'C '); + insert into takes values('38271', '791', '1', 'Spring', 2006, 'B '); + insert into takes values('123', '496', '1', 'Fall', 2001, 'C-'); + insert into takes values('25256', '893', '1', 'Fall', 2007, 'B '); + insert into takes values('57083', '468', '1', 'Fall', 2005, 'A '); + insert into takes values('82301', '400', '1', 'Spring', 2007, 'B '); + insert into takes values('56212', '852', '1', 'Spring', 2008, 'A '); + insert into takes values('51975', '468', '2', 'Fall', 2007, 'A '); + insert into takes values('75794', '545', '1', 'Fall', 2001, 'A '); + insert into takes values('49873', '581', '1', 'Spring', 2005, 'A+'); + insert into takes values('11530', '319', '1', 'Spring', 2003, 'C '); + insert into takes values('57107', '867', '2', 'Fall', 2010, 'B+'); + insert into takes values('78552', '242', '1', 'Fall', 2009, 'B '); + insert into takes values('89571', '793', '1', 'Spring', 2002, 'B '); + insert into takes values('47265', '802', '1', 'Spring', 2003, 'A '); + insert into takes values('54605', '319', '1', 'Spring', 2003, 'B-'); + insert into takes values('39657', '527', '1', 'Fall', 2004, 'A+'); + insert into takes values('18234', '571', '1', 'Spring', 2004, 'C+'); + insert into takes values('65121', '457', '1', 'Spring', 2001, 'B+'); + insert into takes values('53077', '334', '1', 'Fall', 2009, 'A+'); + insert into takes values('17057', '338', '2', 'Spring', 2006, 'B-'); + insert into takes values('4015', '843', '1', 'Fall', 2010, 'B '); + insert into takes values('48778', '400', '2', 'Fall', 2003, 'A '); + insert into takes values('88417', '972', '1', 'Spring', 2009, 'B-'); + insert into takes values('29959', '561', '1', 'Fall', 2006, 'A '); + insert into takes values('65208', '319', '1', 'Spring', 2003, 'A '); + insert into takes values('89734', '169', '1', 'Spring', 2007, 'B+'); + insert into takes values('69850', '974', '1', 'Fall', 2003, 'C '); + insert into takes values('39901', '401', '1', 'Fall', 2003, 'A '); + insert into takes values('10727', '962', '1', 'Spring', 2008, 'A-'); + insert into takes values('14628', '493', '1', 'Spring', 2010, 'B+'); + insert into takes values('50969', '629', '1', 'Spring', 2003, 'C '); + insert into takes values('69081', '338', '2', 'Spring', 2006, 'A '); + insert into takes values('11855', '571', '1', 'Spring', 2004, 'A-'); + insert into takes values('41091', '408', '1', 'Spring', 2007, 'A '); + insert into takes values('72643', '461', '1', 'Fall', 2002, 'C '); + insert into takes values('19450', '962', '1', 'Spring', 2008, 'B-'); + insert into takes values('90194', '760', '1', 'Spring', 2004, 'B '); + insert into takes values('51678', '802', '1', 'Spring', 2003, 'A '); + insert into takes values('95089', '468', '1', 'Fall', 2005, 'B '); + insert into takes values('62795', '158', '1', 'Fall', 2008, 'C '); + insert into takes values('8912', '489', '1', 'Fall', 2007, 'B+'); + insert into takes values('79502', '237', '1', 'Spring', 2008, 'C '); + insert into takes values('95697', '808', '1', 'Fall', 2003, 'B+'); + insert into takes values('94801', '105', '2', 'Fall', 2002, 'B '); + insert into takes values('24002', '843', '1', 'Fall', 2010, 'A-'); + insert into takes values('70061', '974', '1', 'Fall', 2003, 'A '); + insert into takes values('10834', '192', '1', 'Fall', 2002, 'B+'); + insert into takes values('9256', '169', '2', 'Fall', 2002, 'A+'); + insert into takes values('28133', '443', '1', 'Spring', 2010, 'B+'); + insert into takes values('55009', '239', '1', 'Fall', 2006, 'A-'); + insert into takes values('36995', '591', '1', 'Spring', 2005, 'A+'); + insert into takes values('83314', '408', '2', 'Spring', 2003, 'C+'); + insert into takes values('95366', '445', '1', 'Spring', 2001, 'A+'); + insert into takes values('1220', '631', '1', 'Spring', 2007, 'A '); + insert into takes values('49073', '893', '1', 'Fall', 2007, 'C+'); + insert into takes values('66293', '962', '1', 'Spring', 2008, 'B+'); + insert into takes values('41091', '626', '1', 'Fall', 2006, 'C-'); + insert into takes values('33791', '362', '2', 'Fall', 2006, 'C-'); + insert into takes values('15726', '274', '1', 'Fall', 2002, 'B-'); + insert into takes values('88045', '793', '1', 'Spring', 2002, 'B+'); + insert into takes values('39394', '864', '1', 'Spring', 2006, 'A-'); + insert into takes values('62832', '694', '1', 'Fall', 2002, 'C+'); + insert into takes values('72768', '468', '1', 'Fall', 2005, 'A-'); + insert into takes values('30182', '200', '2', 'Fall', 2002, 'B '); + insert into takes values('69679', '679', '1', 'Spring', 2010, 'C '); + insert into takes values('34018', '457', '1', 'Spring', 2001, 'B+'); + insert into takes values('12362', '795', '1', 'Spring', 2004, 'B-'); + insert into takes values('99775', '591', '1', 'Spring', 2005, 'C '); + insert into takes values('93571', '200', '1', 'Spring', 2007, 'C '); + insert into takes values('21102', '893', '1', 'Fall', 2007, 'C-'); + insert into takes values('69081', '527', '1', 'Fall', 2004, 'A '); + insert into takes values('85981', '735', '2', 'Spring', 2010, 'B-'); + insert into takes values('72501', '679', '1', 'Spring', 2010, 'C '); + insert into takes values('25380', '362', '3', 'Spring', 2008, 'A+'); + insert into takes values('7123', '421', '1', 'Fall', 2004, 'B '); + insert into takes values('38555', '702', '1', 'Spring', 2001, 'A '); + insert into takes values('40738', '239', '1', 'Fall', 2006, 'C+'); + insert into takes values('52157', '401', '1', 'Fall', 2003, 'B+'); + insert into takes values('24865', '362', '2', 'Fall', 2006, 'B '); + insert into takes values('21692', '366', '1', 'Fall', 2005, 'C+'); + insert into takes values('65715', '808', '1', 'Fall', 2003, 'C+'); + insert into takes values('99730', '747', '1', 'Spring', 2004, 'C '); + insert into takes values('61403', '304', '1', 'Fall', 2009, 'B-'); + insert into takes values('4383', '200', '1', 'Spring', 2007, 'B+'); + insert into takes values('57083', '105', '2', 'Fall', 2002, 'B+'); + insert into takes values('15726', '352', '1', 'Spring', 2006, 'B-'); + insert into takes values('95046', '591', '1', 'Spring', 2005, 'A-'); + insert into takes values('49611', '239', '1', 'Fall', 2006, 'C '); + insert into takes values('98830', '200', '2', 'Fall', 2002, 'C '); + insert into takes values('61364', '692', '1', 'Spring', 2010, 'C-'); + insert into takes values('44206', '545', '1', 'Fall', 2001, 'B-'); + insert into takes values('64934', '137', '1', 'Spring', 2002, 'A+'); + insert into takes values('99660', '960', '2', 'Fall', 2006, 'A '); + insert into takes values('53118', '960', '1', 'Fall', 2009, 'B-'); + insert into takes values('99775', '793', '1', 'Spring', 2002, 'C+'); + insert into takes values('57780', '864', '1', 'Spring', 2006, 'A+'); + insert into takes values('13365', '304', '1', 'Fall', 2009, 'C-'); + insert into takes values('61402', '960', '2', 'Fall', 2006, 'B '); + insert into takes values('29002', '793', '1', 'Spring', 2002, 'B+'); + insert into takes values('56143', '867', '2', 'Fall', 2010, 'A+'); + insert into takes values('64259', '242', '1', 'Fall', 2009, 'C+'); + insert into takes values('26619', '169', '1', 'Spring', 2007, 'A-'); + insert into takes values('2133', '604', '1', 'Spring', 2009, 'C-'); + insert into takes values('45826', '334', '1', 'Fall', 2009, 'A+'); + insert into takes values('1080', '468', '2', 'Fall', 2007, 'A-'); + insert into takes values('56124', '169', '2', 'Fall', 2002, 'B '); + insert into takes values('3640', '962', '1', 'Spring', 2008, 'B-'); + insert into takes values('40303', '949', '1', 'Fall', 2007, 'A+'); + insert into takes values('35588', '489', '1', 'Fall', 2007, 'A-'); + insert into takes values('51955', '461', '1', 'Fall', 2002, 'C+'); + insert into takes values('39876', '334', '1', 'Fall', 2009, 'C+'); + insert into takes values('81566', '571', '1', 'Spring', 2004, 'C+'); + insert into takes values('89297', '735', '2', 'Spring', 2010, 'A+'); + insert into takes values('6990', '304', '1', 'Fall', 2009, 'C '); + insert into takes values('23457', '461', '1', 'Fall', 2002, 'B-'); + insert into takes values('11152', '631', '1', 'Spring', 2007, 'B+'); + insert into takes values('37038', '137', '1', 'Spring', 2002, 'A-'); + insert into takes values('47379', '457', '1', 'Spring', 2001, 'A '); + insert into takes values('84845', '692', '1', 'Spring', 2010, 'B-'); + insert into takes values('20084', '972', '1', 'Spring', 2009, 'C '); + insert into takes values('17944', '443', '1', 'Spring', 2010, 'B+'); + insert into takes values('23392', '200', '2', 'Fall', 2002, 'B+'); + insert into takes values('89297', '408', '2', 'Spring', 2003, 'A '); + insert into takes values('13506', '304', '1', 'Fall', 2009, 'C+'); + insert into takes values('30650', '200', '1', 'Spring', 2007, 'B-'); + insert into takes values('62429', '415', '1', 'Fall', 2010, 'B '); + insert into takes values('64222', '702', '1', 'Spring', 2001, 'B+'); + insert into takes values('987', '545', '1', 'Fall', 2001, 'B+'); + insert into takes values('70359', '192', '1', 'Fall', 2002, 'B '); + insert into takes values('43130', '962', '1', 'Spring', 2008, 'B '); + insert into takes values('48471', '679', '1', 'Spring', 2010, 'B-'); + insert into takes values('7123', '612', '1', 'Fall', 2007, 'A-'); + insert into takes values('88418', '313', '1', 'Fall', 2010, 'B+'); + insert into takes values('67583', '105', '2', 'Fall', 2002, 'A '); + insert into takes values('4682', '443', '2', 'Spring', 2002, 'A '); + insert into takes values('11152', '313', '1', 'Fall', 2010, 'C-'); + insert into takes values('85451', '158', '1', 'Fall', 2008, 'B+'); + insert into takes values('55859', '482', '1', 'Fall', 2005, 'C '); + insert into takes values('86641', '237', '1', 'Spring', 2008, 'C-'); + insert into takes values('34542', '496', '1', 'Fall', 2001, 'B+'); + insert into takes values('85849', '496', '1', 'Fall', 2001, 'C '); + insert into takes values('74840', '457', '1', 'Spring', 2001, 'C-'); + insert into takes values('12683', '561', '1', 'Fall', 2006, 'A-'); + insert into takes values('84727', '313', '1', 'Fall', 2010, 'C+'); + insert into takes values('42092', '962', '1', 'Spring', 2008, 'B '); + insert into takes values('31302', '482', '1', 'Fall', 2005, 'C '); + insert into takes values('24197', '468', '1', 'Fall', 2005, 'C-'); + insert into takes values('41596', '959', '1', 'Fall', 2006, 'B '); + insert into takes values('66090', '748', '1', 'Fall', 2003, 'B '); + insert into takes values('68070', '105', '1', 'Fall', 2009, 'C '); + insert into takes values('66008', '696', '1', 'Spring', 2002, 'C+'); + insert into takes values('65208', '802', '1', 'Spring', 2003, 'C-'); + insert into takes values('83462', '200', '1', 'Spring', 2007, 'B+'); + insert into takes values('32368', '270', '1', 'Spring', 2010, 'A '); + insert into takes values('79589', '258', '1', 'Fall', 2007, 'B '); + insert into takes values('50467', '875', '1', 'Spring', 2005, 'B '); + insert into takes values('72959', '599', '1', 'Spring', 2003, 'B '); + insert into takes values('82126', '258', '1', 'Fall', 2007, 'B-'); + insert into takes values('14182', '400', '2', 'Fall', 2003, 'C-'); + insert into takes values('24809', '415', '1', 'Fall', 2010, 'A+'); + insert into takes values('36263', '626', '1', 'Fall', 2006, 'A+'); + insert into takes values('12216', '349', '1', 'Spring', 2008, 'B+'); + insert into takes values('63090', '603', '1', 'Fall', 2003, 'B+'); + insert into takes values('12216', '338', '2', 'Spring', 2006, 'C-'); + insert into takes values('29192', '489', '1', 'Fall', 2007, 'B '); + insert into takes values('90234', '793', '1', 'Spring', 2002, 'B+'); + insert into takes values('76270', '334', '1', 'Fall', 2009, 'B '); + insert into takes values('85849', '242', '1', 'Fall', 2009, 'C-'); + insert into takes values('89196', '426', '1', 'Spring', 2006, 'B-'); + insert into takes values('85356', '527', '1', 'Fall', 2004, 'B '); + insert into takes values('40303', '270', '1', 'Spring', 2010, 'B+'); + insert into takes values('31554', '692', '1', 'Spring', 2010, 'C-'); + insert into takes values('14499', '366', '1', 'Fall', 2005, 'B '); + insert into takes values('10527', '679', '1', 'Spring', 2010, 'C '); + insert into takes values('72959', '169', '1', 'Spring', 2007, 'B+'); + insert into takes values('41671', '545', '1', 'Fall', 2001, 'A+'); + insert into takes values('12078', '791', '1', 'Spring', 2006, 'C '); + insert into takes values('38902', '274', '1', 'Fall', 2002, 'B-'); + insert into takes values('13023', '561', '1', 'Fall', 2006, 'C '); + insert into takes values('48469', '270', '1', 'Spring', 2010, 'B '); + insert into takes values('94371', '376', '1', 'Fall', 2006, 'A-'); + insert into takes values('10814', '313', '1', 'Fall', 2010, 'B '); + insert into takes values('32376', '561', '1', 'Fall', 2006, 'B '); + insert into takes values('64155', '169', '2', 'Fall', 2002, 'C '); + insert into takes values('62549', '496', '1', 'Fall', 2001, 'B+'); + insert into takes values('64945', '304', '1', 'Fall', 2009, 'C-'); + insert into takes values('1827', '421', '1', 'Fall', 2004, 'C-'); + insert into takes values('28361', '808', '1', 'Fall', 2003, 'C-'); + insert into takes values('99660', '760', '1', 'Spring', 2004, 'C-'); + insert into takes values('67146', '962', '1', 'Spring', 2008, 'B '); + insert into takes values('59517', '561', '1', 'Fall', 2006, 'A-'); + insert into takes values('43123', '642', '1', 'Fall', 2004, 'A+'); + insert into takes values('94766', '304', '1', 'Fall', 2009, 'C '); + insert into takes values('74016', '334', '1', 'Fall', 2009, 'C+'); + insert into takes values('99226', '626', '1', 'Fall', 2006, 'B '); + insert into takes values('123', '192', '1', 'Fall', 2002, 'A+'); + insert into takes values('96193', '852', '1', 'Spring', 2008, 'A-'); + insert into takes values('32744', '692', '1', 'Spring', 2010, 'C+'); + insert into takes values('34404', '735', '1', 'Spring', 2003, 'A+'); + insert into takes values('46260', '169', '1', 'Spring', 2007, 'C-'); + insert into takes values('5336', '192', '1', 'Fall', 2002, 'A '); + insert into takes values('69521', '927', '1', 'Fall', 2002, 'A-'); + insert into takes values('29390', '426', '1', 'Spring', 2006, 'B-'); + insert into takes values('69581', '679', '1', 'Spring', 2010, 'C+'); + insert into takes values('11966', '612', '1', 'Fall', 2007, 'B-'); + insert into takes values('37715', '735', '2', 'Spring', 2010, 'C-'); + insert into takes values('45300', '349', '1', 'Spring', 2008, 'B '); + insert into takes values('81207', '679', '1', 'Spring', 2010, 'A+'); + insert into takes values('21009', '169', '1', 'Spring', 2007, 'C '); + insert into takes values('97658', '137', '1', 'Spring', 2002, 'C+'); + insert into takes values('61332', '663', '1', 'Spring', 2005, 'B+'); + insert into takes values('8957', '735', '1', 'Spring', 2003, 'B-'); + insert into takes values('51549', '137', '1', 'Spring', 2002, 'C '); + insert into takes values('96052', '642', '1', 'Fall', 2004, 'C '); + insert into takes values('667', '426', '1', 'Spring', 2006, 'C '); + insert into takes values('28252', '626', '1', 'Fall', 2006, 'B-'); + insert into takes values('89000', '702', '1', 'Spring', 2001, 'B-'); + insert into takes values('67725', '426', '1', 'Spring', 2006, 'A '); + insert into takes values('31993', '581', '1', 'Spring', 2005, 'C '); + insert into takes values('58889', '443', '2', 'Spring', 2002, 'A '); + insert into takes values('70564', '158', '1', 'Fall', 2008, 'C+'); + insert into takes values('96003', '603', '1', 'Fall', 2003, 'B+'); + insert into takes values('10834', '735', '2', 'Spring', 2010, 'B+'); + insert into takes values('96067', '408', '1', 'Spring', 2007, 'B '); + insert into takes values('44551', '735', '2', 'Spring', 2010, 'C+'); + insert into takes values('86833', '960', '1', 'Fall', 2009, 'B+'); + insert into takes values('68150', '802', '1', 'Spring', 2003, 'A '); + insert into takes values('76291', '808', '1', 'Fall', 2003, 'A+'); + insert into takes values('792', '864', '1', 'Spring', 2006, 'C '); + insert into takes values('88389', '192', '1', 'Fall', 2002, 'B '); + insert into takes values('16405', '581', '1', 'Spring', 2005, 'C '); + insert into takes values('59172', '158', '2', 'Spring', 2008, 'B '); + insert into takes values('78143', '561', '1', 'Fall', 2006, 'C-'); + insert into takes values('13217', '867', '1', 'Fall', 2006, 'A '); + insert into takes values('87280', '735', '2', 'Spring', 2010, 'C+'); + insert into takes values('9993', '559', '1', 'Fall', 2002, 'A+'); + insert into takes values('11076', '702', '1', 'Spring', 2001, 'B '); + insert into takes values('73387', '631', '1', 'Spring', 2007, 'B '); + insert into takes values('68396', '362', '3', 'Spring', 2008, 'C+'); + insert into takes values('89000', '949', '1', 'Fall', 2007, 'C-'); + insert into takes values('49214', '482', '1', 'Fall', 2005, 'C '); + insert into takes values('92464', '400', '2', 'Fall', 2003, 'B-'); + insert into takes values('7956', '493', '1', 'Spring', 2010, 'C '); + insert into takes values('28299', '158', '1', 'Fall', 2008, 'C-'); + insert into takes values('21401', '692', '1', 'Spring', 2010, 'B '); + insert into takes values('87044', '696', '1', 'Spring', 2002, 'C+'); + insert into takes values('14869', '345', '1', 'Spring', 2008, 'C '); + insert into takes values('46980', '443', '1', 'Spring', 2010, 'A '); + insert into takes values('89106', '366', '1', 'Fall', 2005, 'A-'); + insert into takes values('97101', '468', '2', 'Fall', 2007, 'A-'); + insert into takes values('25046', '748', '1', 'Fall', 2003, 'B-'); + insert into takes values('29002', '401', '1', 'Fall', 2003, 'B-'); + insert into takes values('336', '338', '2', 'Spring', 2006, 'A+'); + insert into takes values('86802', '704', '1', 'Spring', 2008, 'A '); + insert into takes values('30252', '352', '1', 'Spring', 2006, 'B+'); + insert into takes values('51975', '694', '1', 'Fall', 2002, 'B+'); + insert into takes values('56089', '692', '1', 'Spring', 2010, 'A+'); + insert into takes values('64934', '735', '2', 'Spring', 2010, 'B '); + insert into takes values('4508', '972', '1', 'Spring', 2009, 'C-'); + insert into takes values('28019', '158', '1', 'Fall', 2008, 'B-'); + insert into takes values('44836', '401', '1', 'Fall', 2003, 'C+'); + insert into takes values('31250', '561', '1', 'Fall', 2006, 'A-'); + insert into takes values('37284', '631', '1', 'Spring', 2007, 'B+'); + insert into takes values('41973', '692', '1', 'Spring', 2010, 'C '); + insert into takes values('93631', '493', '1', 'Spring', 2010, 'A '); + insert into takes values('22254', '362', '1', 'Fall', 2005, 'B+'); + insert into takes values('30021', '603', '1', 'Fall', 2003, 'B '); + insert into takes values('31137', '571', '1', 'Spring', 2004, 'B '); + insert into takes values('85211', '864', '1', 'Spring', 2006, 'B+'); + insert into takes values('22260', '694', '1', 'Fall', 2002, 'A-'); + insert into takes values('22004', '704', '1', 'Spring', 2008, 'C-'); + insert into takes values('29390', '663', '1', 'Spring', 2005, 'C+'); + insert into takes values('19342', '864', '1', 'Spring', 2006, 'A-'); + insert into takes values('46442', '468', '1', 'Fall', 2005, 'A '); + insert into takes values('75241', '581', '1', 'Spring', 2005, 'A-'); + insert into takes values('68395', '629', '1', 'Spring', 2003, 'C-'); + insert into takes values('22142', '105', '2', 'Fall', 2002, 'C+'); + insert into takes values('55238', '349', '1', 'Spring', 2008, 'A '); + insert into takes values('32368', '793', '1', 'Spring', 2002, 'C '); + insert into takes values('43993', '960', '2', 'Fall', 2006, 'C+'); + insert into takes values('23110', '401', '1', 'Fall', 2003, 'C+'); + insert into takes values('22086', '663', '1', 'Spring', 2005, 'A '); + insert into takes values('7956', '694', '1', 'Fall', 2002, 'A-'); + insert into takes values('67033', '237', '2', 'Fall', 2009, 'B+'); + insert into takes values('80248', '612', '1', 'Fall', 2007, 'A '); + insert into takes values('11076', '476', '1', 'Fall', 2010, 'A-'); + insert into takes values('31035', '735', '2', 'Spring', 2010, 'C-'); + insert into takes values('38121', '319', '1', 'Spring', 2003, 'C+'); + insert into takes values('40992', '599', '1', 'Spring', 2003, 'A '); + insert into takes values('49701', '702', '1', 'Spring', 2001, 'B-'); + insert into takes values('78637', '237', '1', 'Spring', 2008, 'A-'); + insert into takes values('2629', '366', '1', 'Fall', 2005, 'C-'); + insert into takes values('44038', '105', '1', 'Fall', 2009, 'A-'); + insert into takes values('66259', '486', '1', 'Fall', 2009, 'A+'); + insert into takes values('50598', '338', '2', 'Spring', 2006, 'C+'); + insert into takes values('90194', '376', '1', 'Fall', 2006, 'C-'); + insert into takes values('61127', '591', '1', 'Spring', 2005, 'A-'); + insert into takes values('39310', '319', '1', 'Spring', 2003, 'C+'); + insert into takes values('96052', '349', '1', 'Spring', 2008, 'B '); + insert into takes values('18821', '962', '1', 'Spring', 2008, 'A-'); + insert into takes values('10527', '468', '2', 'Fall', 2007, 'C '); + insert into takes values('13511', '867', '1', 'Fall', 2006, 'A+'); + insert into takes values('83462', '468', '1', 'Fall', 2005, 'B-'); + insert into takes values('13028', '704', '1', 'Spring', 2008, 'B-'); + insert into takes values('82083', '400', '2', 'Fall', 2003, 'B '); + insert into takes values('25256', '362', '2', 'Fall', 2006, 'A-'); + insert into takes values('77130', '702', '1', 'Spring', 2001, 'C+'); + insert into takes values('29705', '421', '1', 'Fall', 2004, 'C '); + insert into takes values('29665', '959', '1', 'Fall', 2006, 'B '); + insert into takes values('9460', '626', '1', 'Fall', 2006, 'A-'); + insert into takes values('68010', '158', '2', 'Spring', 2008, 'C+'); + insert into takes values('10705', '802', '1', 'Spring', 2003, 'A-'); + insert into takes values('11604', '408', '2', 'Spring', 2003, 'B+'); + insert into takes values('99399', '362', '3', 'Spring', 2008, 'C '); + insert into takes values('90132', '972', '1', 'Spring', 2009, 'A-'); + insert into takes values('34126', '604', '1', 'Spring', 2009, 'B+'); + insert into takes values('14628', '476', '1', 'Fall', 2010, 'A+'); + insert into takes values('18808', '192', '1', 'Fall', 2002, 'C-'); + insert into takes values('16405', '629', '1', 'Spring', 2003, 'B-'); + insert into takes values('61920', '747', '1', 'Spring', 2004, 'A-'); + insert into takes values('69521', '960', '2', 'Fall', 2006, 'C '); + insert into takes values('58606', '468', '1', 'Fall', 2005, 'A '); + insert into takes values('23270', '237', '2', 'Fall', 2009, 'C+'); + insert into takes values('5017', '476', '1', 'Fall', 2010, 'A+'); + insert into takes values('14554', '571', '1', 'Spring', 2004, 'C '); + insert into takes values('32217', '867', '2', 'Fall', 2010, 'B+'); + insert into takes values('26619', '105', '2', 'Fall', 2002, 'A+'); + insert into takes values('5005', '408', '2', 'Spring', 2003, 'A-'); + insert into takes values('71631', '603', '1', 'Fall', 2003, 'C '); + insert into takes values('435', '313', '1', 'Fall', 2010, 'C '); + insert into takes values('35362', '867', '2', 'Fall', 2010, 'B-'); + insert into takes values('4582', '949', '1', 'Fall', 2007, 'C+'); + insert into takes values('14094', '421', '1', 'Fall', 2004, 'A '); + insert into takes values('58634', '527', '1', 'Fall', 2004, 'B-'); + insert into takes values('23992', '338', '2', 'Spring', 2006, 'A '); + insert into takes values('21789', '864', '1', 'Spring', 2006, 'C '); + insert into takes values('11510', '482', '1', 'Fall', 2005, 'C+'); + insert into takes values('69960', '457', '1', 'Spring', 2001, 'A+'); + insert into takes values('69628', '457', '1', 'Spring', 2001, 'C '); + insert into takes values('68453', '864', '1', 'Spring', 2006, 'C-'); + insert into takes values('18775', '338', '1', 'Spring', 2007, 'C+'); + insert into takes values('45817', '642', '1', 'Fall', 2004, 'B-'); + insert into takes values('71389', '482', '1', 'Fall', 2005, 'C+'); + insert into takes values('44584', '482', '1', 'Fall', 2005, 'C+'); + insert into takes values('99764', '421', '1', 'Fall', 2004, 'A-'); + insert into takes values('24010', '334', '1', 'Fall', 2009, 'C+'); + insert into takes values('9953', '867', '2', 'Fall', 2010, 'A '); + insert into takes values('64121', '735', '1', 'Spring', 2003, 'C+'); + insert into takes values('57962', '692', '1', 'Spring', 2010, 'C-'); + insert into takes values('39521', '408', '1', 'Spring', 2007, 'A-'); + insert into takes values('56143', '105', '2', 'Fall', 2002, 'A-'); + insert into takes values('29863', '795', '1', 'Spring', 2004, 'C '); + insert into takes values('75116', '960', '1', 'Fall', 2009, 'C+'); + insert into takes values('92703', '527', '1', 'Fall', 2004, 'C-'); + insert into takes values('74070', '629', '1', 'Spring', 2003, 'A+'); + insert into takes values('83003', '626', '1', 'Fall', 2006, 'A+'); + insert into takes values('75791', '545', '1', 'Fall', 2001, 'C-'); + insert into takes values('48640', '158', '2', 'Spring', 2008, 'B '); + insert into takes values('34331', '603', '1', 'Fall', 2003, 'C+'); + insert into takes values('66753', '137', '1', 'Spring', 2002, 'A-'); + insert into takes values('34331', '352', '1', 'Spring', 2006, 'C+'); + insert into takes values('39115', '239', '1', 'Fall', 2006, 'B '); + insert into takes values('11262', '158', '1', 'Fall', 2008, 'C+'); + insert into takes values('33546', '169', '1', 'Spring', 2007, 'B-'); + insert into takes values('14554', '468', '2', 'Fall', 2007, 'A-'); + insert into takes values('5005', '591', '1', 'Spring', 2005, 'C '); + insert into takes values('52371', '239', '1', 'Fall', 2006, 'C-'); + insert into takes values('52669', '258', '1', 'Fall', 2007, 'C+'); + insert into takes values('25380', '468', '2', 'Fall', 2007, 'C '); + insert into takes values('12362', '626', '1', 'Fall', 2006, 'B '); + insert into takes values('29514', '426', '1', 'Spring', 2006, 'A+'); + insert into takes values('28989', '747', '1', 'Spring', 2004, 'A '); + insert into takes values('93708', '692', '1', 'Spring', 2010, 'B+'); + insert into takes values('69752', '461', '1', 'Fall', 2002, 'A-'); + insert into takes values('35687', '545', '1', 'Fall', 2001, 'B+'); + insert into takes values('65400', '581', '1', 'Spring', 2005, 'C+'); + insert into takes values('16057', '960', '1', 'Fall', 2009, 'C+'); + insert into takes values('99694', '702', '1', 'Spring', 2001, 'A-'); + insert into takes values('40897', '319', '1', 'Spring', 2003, 'B+'); + insert into takes values('78552', '338', '2', 'Spring', 2006, 'C-'); + insert into takes values('18709', '927', '1', 'Fall', 2002, 'C-'); + insert into takes values('94178', '604', '1', 'Spring', 2009, 'A-'); + insert into takes values('62728', '426', '1', 'Spring', 2006, 'C+'); + insert into takes values('17507', '468', '2', 'Fall', 2007, 'C+'); + insert into takes values('52872', '274', '1', 'Fall', 2002, 'C-'); + insert into takes values('57026', '400', '2', 'Fall', 2003, 'C+'); + insert into takes values('86344', '663', '1', 'Spring', 2005, 'A '); + insert into takes values('14484', '735', '1', 'Spring', 2003, 'B+'); + insert into takes values('7490', '974', '1', 'Fall', 2003, 'C '); + insert into takes values('11855', '408', '1', 'Spring', 2007, 'A-'); + insert into takes values('97573', '457', '1', 'Spring', 2001, 'A-'); + insert into takes values('56089', '426', '1', 'Spring', 2006, 'B-'); + insert into takes values('14432', '349', '1', 'Spring', 2008, 'C-'); + insert into takes values('1232', '571', '1', 'Spring', 2004, 'A-'); + insert into takes values('81294', '274', '1', 'Fall', 2002, 'A-'); + insert into takes values('51553', '962', '1', 'Spring', 2008, 'B+'); + insert into takes values('67542', '258', '1', 'Fall', 2007, 'C '); + insert into takes values('49611', '362', '2', 'Fall', 2006, 'A+'); + insert into takes values('30397', '496', '1', 'Fall', 2001, 'A-'); + insert into takes values('92442', '612', '1', 'Fall', 2007, 'B+'); + insert into takes values('77664', '169', '1', 'Spring', 2007, 'C-'); + insert into takes values('95260', '258', '1', 'Fall', 2007, 'B+'); + insert into takes values('77364', '959', '1', 'Fall', 2006, 'B-'); + insert into takes values('14596', '962', '1', 'Spring', 2008, 'A '); + insert into takes values('25187', '352', '1', 'Spring', 2006, 'B+'); + insert into takes values('6895', '991', '1', 'Spring', 2008, 'A+'); + insert into takes values('68010', '258', '1', 'Fall', 2007, 'C-'); + insert into takes values('23344', '702', '1', 'Spring', 2001, 'C '); + insert into takes values('45083', '338', '1', 'Spring', 2007, 'A-'); + insert into takes values('888', '581', '1', 'Spring', 2005, 'C-'); + insert into takes values('67407', '679', '1', 'Spring', 2010, 'B+'); + insert into takes values('99451', '352', '1', 'Spring', 2006, 'A-'); + insert into takes values('97042', '679', '1', 'Spring', 2010, 'C '); + insert into takes values('44836', '748', '1', 'Fall', 2003, 'B+'); + insert into takes values('74460', '696', '1', 'Spring', 2002, 'C-'); + insert into takes values('73492', '258', '1', 'Fall', 2007, 'B '); + insert into takes values('9993', '561', '1', 'Fall', 2006, 'A+'); + insert into takes values('50966', '239', '1', 'Fall', 2006, 'A-'); + insert into takes values('31486', '808', '1', 'Fall', 2003, 'B '); + insert into takes values('3651', '760', '1', 'Spring', 2004, 'C '); + insert into takes values('78481', '457', '1', 'Spring', 2001, 'A+'); + insert into takes values('74672', '604', '1', 'Spring', 2009, 'A '); + insert into takes values('43032', '270', '1', 'Spring', 2010, 'A-'); + insert into takes values('65144', '599', '1', 'Spring', 2003, 'C '); + insert into takes values('50365', '415', '1', 'Fall', 2010, 'C '); + insert into takes values('83691', '545', '1', 'Fall', 2001, 'C '); + insert into takes values('97590', '561', '1', 'Fall', 2006, 'B+'); + insert into takes values('27430', '457', '1', 'Spring', 2001, 'C+'); + insert into takes values('39157', '559', '1', 'Fall', 2002, 'A+'); + insert into takes values('11262', '408', '2', 'Spring', 2003, 'B+'); + insert into takes values('43993', '274', '1', 'Fall', 2002, 'C+'); + insert into takes values('58355', '960', '2', 'Fall', 2006, 'C+'); + insert into takes values('65241', '603', '1', 'Fall', 2003, 'B-'); + insert into takes values('7861', '960', '1', 'Fall', 2009, 'A-'); + insert into takes values('84845', '401', '1', 'Fall', 2003, 'A '); + insert into takes values('76224', '793', '1', 'Spring', 2002, 'C+'); + insert into takes values('760', '527', '1', 'Fall', 2004, 'C-'); + insert into takes values('61354', '376', '1', 'Fall', 2006, 'B+'); + insert into takes values('16297', '352', '1', 'Spring', 2006, 'C '); + insert into takes values('59530', '960', '1', 'Fall', 2009, 'A+'); + insert into takes values('76250', '843', '1', 'Fall', 2010, 'A-'); + insert into takes values('17769', '242', '1', 'Fall', 2009, 'C+'); + insert into takes values('50966', '105', '2', 'Fall', 2002, 'B '); + insert into takes values('59553', '274', '1', 'Fall', 2002, 'C+'); + insert into takes values('36265', '468', '1', 'Fall', 2005, 'B-'); + insert into takes values('83836', '468', '1', 'Fall', 2005, 'C-'); + insert into takes values('15883', '802', '1', 'Spring', 2003, 'C '); + insert into takes values('914', '808', '1', 'Fall', 2003, 'B '); + insert into takes values('827', '974', '1', 'Fall', 2003, 'B-'); + insert into takes values('11057', '559', '1', 'Fall', 2002, 'B+'); + insert into takes values('60224', '791', '1', 'Spring', 2006, 'B+'); + insert into takes values('31993', '735', '1', 'Spring', 2003, 'C '); + insert into takes values('82687', '867', '1', 'Fall', 2006, 'B '); + insert into takes values('5871', '972', '1', 'Spring', 2009, 'C+'); + insert into takes values('72177', '443', '1', 'Spring', 2010, 'A-'); + insert into takes values('29863', '604', '1', 'Spring', 2009, 'A-'); + insert into takes values('11055', '702', '1', 'Spring', 2001, 'C+'); + insert into takes values('39241', '200', '2', 'Fall', 2002, 'C '); + insert into takes values('8140', '791', '1', 'Spring', 2006, 'B '); + insert into takes values('48640', '493', '1', 'Spring', 2010, 'C '); + insert into takes values('39580', '445', '1', 'Spring', 2001, 'C '); + insert into takes values('51997', '802', '1', 'Spring', 2003, 'A '); + insert into takes values('77148', '349', '1', 'Spring', 2008, 'B+'); + insert into takes values('14554', '991', '1', 'Spring', 2008, 'A+'); + insert into takes values('42560', '192', '1', 'Fall', 2002, 'B '); + insert into takes values('57474', '274', '1', 'Fall', 2002, 'A '); + insert into takes values('18108', '421', '1', 'Fall', 2004, 'A-'); + insert into takes values('39254', '561', '1', 'Fall', 2006, 'B-'); + insert into takes values('22417', '962', '1', 'Spring', 2008, 'A-'); + insert into takes values('67436', '408', '1', 'Spring', 2007, 'A '); + insert into takes values('65681', '270', '1', 'Spring', 2010, 'B-'); + insert into takes values('10663', '571', '1', 'Spring', 2004, 'B-'); + insert into takes values('39521', '612', '1', 'Fall', 2007, 'A+'); + insert into takes values('66356', '802', '1', 'Spring', 2003, 'B-'); + insert into takes values('44584', '591', '1', 'Spring', 2005, 'B+'); + insert into takes values('58469', '571', '1', 'Spring', 2004, 'A '); + insert into takes values('27952', '169', '2', 'Fall', 2002, 'C+'); + insert into takes values('87624', '443', '1', 'Spring', 2010, 'A '); + insert into takes values('83022', '527', '1', 'Fall', 2004, 'C+'); + insert into takes values('88887', '443', '1', 'Spring', 2010, 'A-'); + insert into takes values('35138', '200', '2', 'Fall', 2002, 'C-'); + insert into takes values('96193', '571', '1', 'Spring', 2004, 'A-'); + insert into takes values('18675', '400', '1', 'Spring', 2007, 'A-'); + insert into takes values('87268', '362', '1', 'Fall', 2005, 'B+'); + insert into takes values('75560', '408', '2', 'Spring', 2003, 'C+'); + insert into takes values('74840', '852', '1', 'Spring', 2008, 'A-'); + insert into takes values('14032', '362', '1', 'Fall', 2005, 'A+'); + insert into takes values('41280', '795', '1', 'Spring', 2004, 'A '); + insert into takes values('76291', '527', '1', 'Fall', 2004, 'A+'); + insert into takes values('9360', '258', '1', 'Fall', 2007, 'C+'); + insert into takes values('43854', '696', '1', 'Spring', 2002, 'A-'); + insert into takes values('85680', '875', '1', 'Spring', 2005, 'B+'); + insert into takes values('64082', '561', '1', 'Fall', 2006, 'A+'); + insert into takes values('36845', '352', '1', 'Spring', 2006, 'C-'); + insert into takes values('10834', '169', '1', 'Spring', 2007, 'C+'); + insert into takes values('52187', '158', '1', 'Fall', 2008, 'A '); + insert into takes values('57185', '200', '2', 'Fall', 2002, 'B-'); + insert into takes values('19862', '694', '1', 'Fall', 2002, 'A '); + insert into takes values('7973', '735', '1', 'Spring', 2003, 'C-'); + insert into takes values('48423', '962', '1', 'Spring', 2008, 'C '); + insert into takes values('68248', '105', '1', 'Fall', 2009, 'A '); + insert into takes values('94522', '421', '1', 'Fall', 2004, 'C+'); + insert into takes values('77244', '105', '2', 'Fall', 2002, 'C+'); + insert into takes values('50267', '603', '1', 'Fall', 2003, 'C+'); + insert into takes values('54672', '237', '2', 'Fall', 2009, 'B-'); + insert into takes values('99647', '137', '1', 'Spring', 2002, 'B '); + insert into takes values('16543', '445', '1', 'Spring', 2001, 'A-'); + insert into takes values('87193', '802', '1', 'Spring', 2003, 'B '); + insert into takes values('51553', '704', '1', 'Spring', 2008, 'B+'); + insert into takes values('34770', '561', '1', 'Fall', 2006, 'B-'); + insert into takes values('99399', '242', '1', 'Fall', 2009, 'B-'); + insert into takes values('14499', '626', '1', 'Fall', 2006, 'B-'); + insert into takes values('44551', '603', '1', 'Fall', 2003, 'A '); + insert into takes values('1220', '476', '1', 'Fall', 2010, 'C '); + insert into takes values('99348', '959', '1', 'Fall', 2006, 'A-'); + insert into takes values('16753', '461', '1', 'Fall', 2002, 'A '); + insert into takes values('82707', '415', '1', 'Fall', 2010, 'A-'); + insert into takes values('37339', '476', '1', 'Fall', 2010, 'C+'); + insert into takes values('17911', '545', '1', 'Fall', 2001, 'C+'); + insert into takes values('97355', '489', '1', 'Fall', 2007, 'B-'); + insert into takes values('32419', '747', '1', 'Spring', 2004, 'A+'); + insert into takes values('91569', '169', '1', 'Spring', 2007, 'B-'); + insert into takes values('3163', '237', '2', 'Fall', 2009, 'C+'); + insert into takes values('5208', '612', '1', 'Fall', 2007, 'A+'); + insert into takes values('99451', '445', '1', 'Spring', 2001, 'A+'); + insert into takes values('66269', '642', '1', 'Fall', 2004, 'A '); + insert into takes values('6523', '692', '1', 'Spring', 2010, 'B+'); + insert into takes values('42096', '468', '1', 'Fall', 2005, 'A '); + insert into takes values('81294', '893', '1', 'Fall', 2007, 'B+'); + insert into takes values('49244', '692', '1', 'Spring', 2010, 'B '); + insert into takes values('48165', '696', '1', 'Spring', 2002, 'A-'); + insert into takes values('22467', '496', '1', 'Fall', 2001, 'B+'); + insert into takes values('15517', '400', '2', 'Fall', 2003, 'C '); + insert into takes values('18808', '400', '1', 'Spring', 2007, 'B '); + insert into takes values('68248', '334', '1', 'Fall', 2009, 'B-'); + insert into takes values('18775', '561', '1', 'Fall', 2006, 'A+'); + insert into takes values('52750', '468', '2', 'Fall', 2007, 'B-'); + insert into takes values('91799', '927', '1', 'Fall', 2002, 'C '); + insert into takes values('4435', '338', '2', 'Spring', 2006, 'C-'); + insert into takes values('45002', '461', '1', 'Fall', 2002, 'B '); + insert into takes values('8807', '457', '1', 'Spring', 2001, 'B '); + insert into takes values('38602', '158', '2', 'Spring', 2008, 'B+'); + insert into takes values('33651', '169', '2', 'Fall', 2002, 'A+'); + insert into takes values('41832', '408', '1', 'Spring', 2007, 'A+'); + insert into takes values('30177', '345', '1', 'Spring', 2008, 'C-'); + insert into takes values('76291', '591', '1', 'Spring', 2005, 'B-'); + insert into takes values('20489', '137', '1', 'Spring', 2002, 'C '); + insert into takes values('14554', '443', '1', 'Spring', 2010, 'A '); + insert into takes values('50039', '704', '1', 'Spring', 2008, 'C '); + insert into takes values('44816', '349', '1', 'Spring', 2008, 'B-'); + insert into takes values('23224', '443', '1', 'Spring', 2010, 'A+'); + insert into takes values('78637', '421', '1', 'Fall', 2004, 'B '); + insert into takes values('59397', '468', '1', 'Fall', 2005, 'B '); + insert into takes values('65438', '366', '1', 'Fall', 2005, 'C '); + insert into takes values('64121', '962', '1', 'Spring', 2008, 'C '); + insert into takes values('19541', '581', '1', 'Spring', 2005, 'C+'); + insert into takes values('81396', '867', '1', 'Fall', 2006, 'C '); + insert into takes values('69850', '702', '1', 'Spring', 2001, 'B-'); + insert into takes values('49391', '959', '1', 'Fall', 2006, 'C+'); + insert into takes values('29920', '468', '2', 'Fall', 2007, 'B-'); + insert into takes values('76743', '493', '1', 'Spring', 2010, 'B '); + insert into takes values('29863', '200', '2', 'Fall', 2002, 'A+'); + insert into takes values('27236', '962', '1', 'Spring', 2008, 'B+'); + insert into takes values('24796', '274', '1', 'Fall', 2002, 'B '); + insert into takes values('56849', '304', '1', 'Fall', 2009, 'A-'); + insert into takes values('26080', '679', '1', 'Spring', 2010, 'B '); + insert into takes values('86344', '200', '1', 'Spring', 2007, 'C '); + insert into takes values('77548', '461', '1', 'Fall', 2002, 'A '); + insert into takes values('66494', '735', '2', 'Spring', 2010, 'B-'); + insert into takes values('23934', '489', '1', 'Fall', 2007, 'A '); + insert into takes values('37856', '791', '1', 'Spring', 2006, 'C '); + insert into takes values('30289', '270', '1', 'Spring', 2010, 'B-'); + insert into takes values('67293', '748', '1', 'Fall', 2003, 'C-'); + insert into takes values('54610', '702', '1', 'Spring', 2001, 'B+'); + insert into takes values('23224', '486', '1', 'Fall', 2009, 'A-'); + insert into takes values('21789', '760', '1', 'Spring', 2004, 'B '); + insert into takes values('8022', '443', '2', 'Spring', 2002, 'C '); + insert into takes values('91569', '642', '1', 'Fall', 2004, 'A '); + insert into takes values('59117', '591', '1', 'Spring', 2005, 'C-'); + insert into takes values('4182', '694', '1', 'Fall', 2002, 'C-'); + insert into takes values('29390', '169', '2', 'Fall', 2002, 'C-'); + insert into takes values('57238', '349', '1', 'Spring', 2008, 'C+'); + insert into takes values('45359', '362', '1', 'Fall', 2005, 'B-'); + insert into takes values('19293', '362', '1', 'Fall', 2005, 'C-'); + insert into takes values('61783', '237', '1', 'Spring', 2008, 'B+'); + insert into takes values('66753', '362', '2', 'Fall', 2006, 'C+'); + insert into takes values('93508', '875', '1', 'Spring', 2005, 'C '); + insert into takes values('23224', '426', '1', 'Spring', 2006, 'B '); + insert into takes values('46260', '476', '1', 'Fall', 2010, 'C+'); + insert into takes values('83592', '362', '3', 'Spring', 2008, 'A-'); + insert into takes values('15980', '793', '1', 'Spring', 2002, 'B '); + insert into takes values('49792', '366', '1', 'Fall', 2005, 'B-'); + insert into takes values('847', '599', '1', 'Spring', 2003, 'A+'); + insert into takes values('89059', '960', '1', 'Fall', 2009, 'B-'); + insert into takes values('67425', '239', '1', 'Fall', 2006, 'C '); + insert into takes values('18709', '631', '1', 'Spring', 2007, 'A-'); + insert into takes values('90353', '169', '2', 'Fall', 2002, 'C+'); + insert into takes values('82970', '559', '1', 'Fall', 2002, 'A '); + insert into takes values('66763', '362', '1', 'Fall', 2005, 'C '); + insert into takes values('45680', '476', '1', 'Fall', 2010, 'B+'); + insert into takes values('14668', '663', '1', 'Spring', 2005, 'A '); + insert into takes values('31690', '443', '1', 'Spring', 2010, 'A-'); + insert into takes values('5399', '461', '1', 'Fall', 2002, 'C-'); + insert into takes values('18821', '349', '1', 'Spring', 2008, 'A+'); + insert into takes values('57334', '612', '1', 'Fall', 2007, 'C-'); + insert into takes values('89188', '808', '1', 'Fall', 2003, 'A '); + insert into takes values('90814', '334', '1', 'Fall', 2009, 'C+'); + insert into takes values('81896', '237', '1', 'Spring', 2008, 'A+'); + insert into takes values('3545', '864', '1', 'Spring', 2006, 'C-'); + insert into takes values('64192', '793', '1', 'Spring', 2002, 'B '); + insert into takes values('52523', '843', '1', 'Fall', 2010, 'C '); + insert into takes values('85746', '319', '1', 'Spring', 2003, 'B+'); + insert into takes values('2133', '852', '1', 'Spring', 2008, 'B+'); + insert into takes values('24630', '445', '1', 'Spring', 2001, 'B-'); + insert into takes values('67018', '443', '1', 'Spring', 2010, 'B '); + insert into takes values('14639', '561', '1', 'Fall', 2006, 'A '); + insert into takes values('70452', '927', '1', 'Fall', 2002, 'B+'); + insert into takes values('16849', '991', '1', 'Spring', 2008, 'B-'); + insert into takes values('10705', '349', '1', 'Spring', 2008, 'C+'); + insert into takes values('76911', '443', '1', 'Spring', 2010, 'C+'); + insert into takes values('74016', '702', '1', 'Spring', 2001, 'A+'); + insert into takes values('87651', '352', '1', 'Spring', 2006, 'B-'); + insert into takes values('61081', '426', '1', 'Spring', 2006, 'C '); + insert into takes values('41671', '493', '1', 'Spring', 2010, 'A '); + insert into takes values('92703', '692', '1', 'Spring', 2010, 'A+'); + insert into takes values('41345', '274', '1', 'Fall', 2002, 'C '); + insert into takes values('22260', '679', '1', 'Spring', 2010, 'B+'); + insert into takes values('32483', '400', '2', 'Fall', 2003, 'A '); + insert into takes values('64121', '702', '1', 'Spring', 2001, 'C '); + insert into takes values('10838', '561', '1', 'Fall', 2006, 'B '); + insert into takes values('76224', '747', '1', 'Spring', 2004, 'B '); + insert into takes values('39881', '461', '1', 'Fall', 2002, 'A+'); + insert into takes values('6523', '486', '1', 'Fall', 2009, 'B '); + insert into takes values('90448', '802', '1', 'Spring', 2003, 'A-'); + insert into takes values('21766', '239', '1', 'Fall', 2006, 'C-'); + insert into takes values('88045', '408', '2', 'Spring', 2003, 'A '); + insert into takes values('41751', '158', '2', 'Spring', 2008, 'A '); + insert into takes values('53424', '581', '1', 'Spring', 2005, 'A '); + insert into takes values('21789', '748', '1', 'Fall', 2003, 'C+'); + insert into takes values('22254', '626', '1', 'Fall', 2006, 'C '); + insert into takes values('76173', '747', '1', 'Spring', 2004, 'C '); + insert into takes values('31302', '200', '1', 'Spring', 2007, 'B '); + insert into takes values('9114', '319', '1', 'Spring', 2003, 'C-'); + insert into takes values('51203', '457', '1', 'Spring', 2001, 'B-'); + insert into takes values('53451', '808', '1', 'Fall', 2003, 'A '); + insert into takes values('50702', '362', '2', 'Fall', 2006, 'C '); + insert into takes values('64067', '571', '1', 'Spring', 2004, 'C-'); + insert into takes values('32772', '338', '2', 'Spring', 2006, 'A '); + insert into takes values('68248', '426', '1', 'Spring', 2006, 'A+'); + insert into takes values('79911', '237', '1', 'Spring', 2008, 'C '); + insert into takes values('4582', '400', '1', 'Spring', 2007, 'C+'); + insert into takes values('20814', '349', '1', 'Spring', 2008, 'A+'); + insert into takes values('55329', '476', '1', 'Fall', 2010, 'B '); + insert into takes values('57666', '927', '1', 'Fall', 2002, 'A '); + insert into takes values('56089', '760', '1', 'Spring', 2004, 'A+'); + insert into takes values('75082', '642', '1', 'Fall', 2004, 'A '); + insert into takes values('46928', '489', '1', 'Fall', 2007, 'B-'); + insert into takes values('76224', '612', '1', 'Fall', 2007, 'A-'); + insert into takes values('15430', '493', '1', 'Spring', 2010, 'A '); + insert into takes values('34569', '242', '1', 'Fall', 2009, 'C '); + insert into takes values('6710', '493', '1', 'Spring', 2010, 'C+'); + insert into takes values('1367', '591', '1', 'Spring', 2005, 'A+'); + insert into takes values('82974', '696', '1', 'Spring', 2002, 'A-'); + insert into takes values('11530', '338', '2', 'Spring', 2006, 'A+'); + insert into takes values('61403', '415', '1', 'Fall', 2010, 'A '); + insert into takes values('16347', '468', '2', 'Fall', 2007, 'C '); + insert into takes values('11966', '679', '1', 'Spring', 2010, 'C-'); + insert into takes values('30474', '345', '1', 'Spring', 2008, 'B '); + insert into takes values('86753', '366', '1', 'Fall', 2005, 'A+'); + insert into takes values('80651', '362', '3', 'Spring', 2008, 'A '); + insert into takes values('65038', '237', '1', 'Spring', 2008, 'C+'); + insert into takes values('89297', '972', '1', 'Spring', 2009, 'C-'); + insert into takes values('29665', '791', '1', 'Spring', 2006, 'A-'); + insert into takes values('74911', '571', '1', 'Spring', 2004, 'B+'); + insert into takes values('79469', '493', '1', 'Spring', 2010, 'C+'); + insert into takes values('56003', '694', '1', 'Fall', 2002, 'A '); + insert into takes values('88525', '843', '1', 'Fall', 2010, 'A '); + insert into takes values('87784', '200', '1', 'Spring', 2007, 'C+'); + insert into takes values('80285', '974', '1', 'Fall', 2003, 'A '); + insert into takes values('2561', '158', '2', 'Spring', 2008, 'B+'); + insert into takes values('1460', '960', '2', 'Fall', 2006, 'A-'); + insert into takes values('6287', '603', '1', 'Fall', 2003, 'B '); + insert into takes values('1460', '426', '1', 'Spring', 2006, 'C-'); + insert into takes values('84515', '704', '1', 'Spring', 2008, 'A '); + insert into takes values('64642', '443', '1', 'Spring', 2010, 'C+'); + insert into takes values('13495', '200', '2', 'Fall', 2002, 'B-'); + insert into takes values('87048', '105', '1', 'Fall', 2009, 'A-'); + insert into takes values('49611', '457', '1', 'Spring', 2001, 'B-'); + insert into takes values('94814', '486', '1', 'Fall', 2009, 'B+'); + insert into takes values('90567', '571', '1', 'Spring', 2004, 'A '); + insert into takes values('39927', '137', '1', 'Spring', 2002, 'C+'); + insert into takes values('35198', '400', '2', 'Fall', 2003, 'B '); + insert into takes values('84432', '591', '1', 'Spring', 2005, 'B-'); + insert into takes values('45720', '496', '1', 'Fall', 2001, 'A-'); + insert into takes values('96968', '200', '1', 'Spring', 2007, 'A '); + insert into takes values('39580', '192', '1', 'Fall', 2002, 'A+'); + insert into takes values('88085', '338', '1', 'Spring', 2007, 'B-'); + insert into takes values('53496', '959', '1', 'Fall', 2006, 'A-'); + insert into takes values('44258', '415', '1', 'Fall', 2010, 'B '); + insert into takes values('99719', '603', '1', 'Fall', 2003, 'C+'); + insert into takes values('58469', '626', '1', 'Fall', 2006, 'B '); + insert into takes values('90234', '443', '1', 'Spring', 2010, 'B-'); + insert into takes values('70021', '631', '1', 'Spring', 2007, 'A+'); + insert into takes values('77231', '304', '1', 'Fall', 2009, 'A-'); + insert into takes values('17911', '362', '2', 'Fall', 2006, 'B '); + insert into takes values('89759', '496', '1', 'Fall', 2001, 'C+'); + insert into takes values('82646', '875', '1', 'Spring', 2005, 'B-'); + insert into takes values('13880', '748', '1', 'Fall', 2003, 'B '); + insert into takes values('89104', '960', '1', 'Fall', 2009, 'B '); + insert into takes values('32217', '482', '1', 'Fall', 2005, 'B-'); + insert into takes values('88418', '974', '1', 'Fall', 2003, 'B+'); + insert into takes values('16075', '366', '1', 'Fall', 2005, 'A '); + insert into takes values('76057', '237', '2', 'Fall', 2009, 'A-'); + insert into takes values('81876', '747', '1', 'Spring', 2004, 'A-'); + insert into takes values('68395', '192', '1', 'Fall', 2002, 'C '); + insert into takes values('79170', '561', '1', 'Fall', 2006, 'B+'); + insert into takes values('53469', '352', '1', 'Spring', 2006, 'A-'); + insert into takes values('53152', '401', '1', 'Fall', 2003, 'A-'); + insert into takes values('86707', '274', '1', 'Fall', 2002, 'A '); + insert into takes values('70021', '242', '1', 'Fall', 2009, 'C '); + insert into takes values('38899', '408', '2', 'Spring', 2003, 'B-'); + insert into takes values('77364', '747', '1', 'Spring', 2004, 'B-'); + insert into takes values('86001', '476', '1', 'Fall', 2010, 'A '); + insert into takes values('90041', '545', '1', 'Fall', 2001, 'C '); + insert into takes values('35881', '319', '1', 'Spring', 2003, 'A+'); + insert into takes values('15283', '408', '2', 'Spring', 2003, 'B+'); + insert into takes values('30474', '604', '1', 'Spring', 2009, 'B '); + insert into takes values('61737', '867', '2', 'Fall', 2010, 'A+'); + insert into takes values('40044', '362', '2', 'Fall', 2006, 'B '); + insert into takes values('70572', '591', '1', 'Spring', 2005, 'B+'); + insert into takes values('78858', '338', '1', 'Spring', 2007, 'A '); + insert into takes values('38336', '400', '1', 'Spring', 2007, 'A-'); + insert into takes values('31761', '972', '1', 'Spring', 2009, 'A-'); + insert into takes values('1836', '960', '2', 'Fall', 2006, 'A '); + insert into takes values('10814', '972', '1', 'Spring', 2009, 'B+'); + insert into takes values('21552', '991', '1', 'Spring', 2008, 'B '); + insert into takes values('58465', '408', '2', 'Spring', 2003, 'C '); + insert into takes values('34386', '808', '1', 'Fall', 2003, 'A+'); + insert into takes values('75791', '352', '1', 'Spring', 2006, 'B+'); + insert into takes values('26695', '270', '1', 'Spring', 2010, 'C '); + insert into takes values('25718', '443', '2', 'Spring', 2002, 'B-'); + insert into takes values('80247', '426', '1', 'Spring', 2006, 'B+'); + insert into takes values('10267', '604', '1', 'Spring', 2009, 'C-'); + insert into takes values('46436', '158', '1', 'Fall', 2008, 'B-'); + insert into takes values('5336', '304', '1', 'Fall', 2009, 'B-'); + insert into takes values('8912', '802', '1', 'Spring', 2003, 'A+'); + insert into takes values('12173', '468', '2', 'Fall', 2007, 'B+'); + insert into takes values('31560', '137', '1', 'Spring', 2002, 'C-'); + insert into takes values('98120', '169', '1', 'Spring', 2007, 'C+'); + insert into takes values('54620', '545', '1', 'Fall', 2001, 'A '); + insert into takes values('7123', '476', '1', 'Fall', 2010, 'A-'); + insert into takes values('75241', '158', '2', 'Spring', 2008, 'B-'); + insert into takes values('74460', '200', '2', 'Fall', 2002, 'B-'); + insert into takes values('50966', '679', '1', 'Spring', 2010, 'B '); + insert into takes values('65241', '258', '1', 'Fall', 2007, 'A-'); + insert into takes values('81789', '105', '2', 'Fall', 2002, 'C '); + insert into takes values('20002', '376', '1', 'Fall', 2006, 'A-'); + insert into takes values('64893', '864', '1', 'Spring', 2006, 'C '); + insert into takes values('20974', '338', '2', 'Spring', 2006, 'A+'); + insert into takes values('51975', '258', '1', 'Fall', 2007, 'B '); + insert into takes values('78552', '489', '1', 'Fall', 2007, 'C-'); + insert into takes values('89140', '105', '2', 'Fall', 2002, 'C '); + insert into takes values('87015', '169', '2', 'Fall', 2002, 'A '); + insert into takes values('7020', '875', '1', 'Spring', 2005, 'C-'); + insert into takes values('84702', '612', '1', 'Fall', 2007, 'B+'); + insert into takes values('41965', '468', '2', 'Fall', 2007, 'C-'); + insert into takes values('49684', '760', '1', 'Spring', 2004, 'B+'); + insert into takes values('42092', '105', '1', 'Fall', 2009, 'B-'); + insert into takes values('72768', '192', '1', 'Fall', 2002, 'C+'); + insert into takes values('96206', '482', '1', 'Fall', 2005, 'C-'); + insert into takes values('89414', '571', '1', 'Spring', 2004, 'C '); + insert into takes values('19735', '927', '1', 'Fall', 2002, 'B+'); + insert into takes values('30164', '200', '2', 'Fall', 2002, 'C-'); + insert into takes values('22004', '482', '1', 'Fall', 2005, 'C '); + insert into takes values('17076', '631', '1', 'Spring', 2007, 'C '); + insert into takes values('54153', '158', '2', 'Spring', 2008, 'A '); + insert into takes values('67051', '808', '1', 'Fall', 2003, 'B+'); + insert into takes values('29399', '702', '1', 'Spring', 2001, 'C-'); + insert into takes values('63361', '468', '2', 'Fall', 2007, 'B-'); + insert into takes values('68554', '603', '1', 'Fall', 2003, 'A+'); + insert into takes values('15144', '376', '1', 'Fall', 2006, 'B-'); + insert into takes values('75534', '603', '1', 'Fall', 2003, 'C-'); + insert into takes values('64155', '692', '1', 'Spring', 2010, 'A-'); + insert into takes values('17507', '603', '1', 'Fall', 2003, 'B-'); + insert into takes values('36685', '599', '1', 'Spring', 2003, 'A-'); + insert into takes values('94522', '237', '1', 'Spring', 2008, 'B '); + insert into takes values('43130', '604', '1', 'Spring', 2009, 'B+'); + insert into takes values('86707', '559', '1', 'Fall', 2002, 'B-'); + insert into takes values('89414', '366', '1', 'Fall', 2005, 'C+'); + insert into takes values('83747', '663', '1', 'Spring', 2005, 'A+'); + insert into takes values('82697', '362', '3', 'Spring', 2008, 'B '); + insert into takes values('35462', '105', '1', 'Fall', 2009, 'B-'); + insert into takes values('41299', '362', '2', 'Fall', 2006, 'B-'); + insert into takes values('20084', '581', '1', 'Spring', 2005, 'B-'); + insert into takes values('27043', '468', '2', 'Fall', 2007, 'B+'); + insert into takes values('57377', '696', '1', 'Spring', 2002, 'B-'); + insert into takes values('69853', '489', '1', 'Fall', 2007, 'B+'); + insert into takes values('16885', '679', '1', 'Spring', 2010, 'A-'); + insert into takes values('45826', '631', '1', 'Spring', 2007, 'C+'); + insert into takes values('67725', '376', '1', 'Fall', 2006, 'C-'); + insert into takes values('37734', '169', '2', 'Fall', 2002, 'B '); + insert into takes values('23506', '362', '1', 'Fall', 2005, 'C+'); + insert into takes values('91978', '349', '1', 'Spring', 2008, 'B-'); + insert into takes values('9408', '949', '1', 'Fall', 2007, 'C '); + insert into takes values('56143', '239', '1', 'Fall', 2006, 'C '); + insert into takes values('33759', '461', '1', 'Fall', 2002, 'A-'); + insert into takes values('43130', '258', '1', 'Fall', 2007, 'A+'); + insert into takes values('44352', '991', '1', 'Spring', 2008, 'C '); + insert into takes values('65438', '239', '1', 'Fall', 2006, 'B+'); + insert into takes values('50331', '581', '1', 'Spring', 2005, 'B '); + insert into takes values('30017', '457', '1', 'Spring', 2001, 'C+'); + insert into takes values('75560', '400', '2', 'Fall', 2003, 'B '); + insert into takes values('39204', '443', '2', 'Spring', 2002, 'B+'); + insert into takes values('5243', '415', '1', 'Fall', 2010, 'C-'); + insert into takes values('3163', '158', '1', 'Fall', 2008, 'C+'); + insert into takes values('3651', '629', '1', 'Spring', 2003, 'A '); + insert into takes values('9953', '864', '1', 'Spring', 2006, 'B '); + insert into takes values('45359', '445', '1', 'Spring', 2001, 'B+'); + insert into takes values('17207', '760', '1', 'Spring', 2004, 'C '); + insert into takes values('59517', '612', '1', 'Fall', 2007, 'A '); + insert into takes values('93631', '735', '2', 'Spring', 2010, 'C-'); + insert into takes values('66229', '400', '1', 'Spring', 2007, 'B '); + insert into takes values('92464', '864', '1', 'Spring', 2006, 'C-'); + insert into takes values('52741', '561', '1', 'Fall', 2006, 'B '); + insert into takes values('544', '239', '1', 'Fall', 2006, 'C+'); + insert into takes values('31079', '735', '1', 'Spring', 2003, 'C-'); + insert into takes values('6729', '867', '2', 'Fall', 2010, 'C+'); + insert into takes values('49244', '793', '1', 'Spring', 2002, 'A-'); + insert into takes values('94726', '927', '1', 'Fall', 2002, 'A '); + insert into takes values('83691', '476', '1', 'Fall', 2010, 'C '); + insert into takes values('64401', '702', '1', 'Spring', 2001, 'A '); + insert into takes values('41345', '366', '1', 'Fall', 2005, 'B '); + insert into takes values('18675', '735', '2', 'Spring', 2010, 'B+'); + insert into takes values('4182', '735', '2', 'Spring', 2010, 'C '); + insert into takes values('74016', '959', '1', 'Fall', 2006, 'A+'); + insert into takes values('46106', '408', '2', 'Spring', 2003, 'C-'); + insert into takes values('46769', '893', '1', 'Fall', 2007, 'C-'); + insert into takes values('75522', '137', '1', 'Spring', 2002, 'B+'); + insert into takes values('14596', '242', '1', 'Fall', 2009, 'C+'); + insert into takes values('64013', '702', '1', 'Spring', 2001, 'A-'); + insert into takes values('50969', '559', '1', 'Fall', 2002, 'A-'); + insert into takes values('35721', '604', '1', 'Spring', 2009, 'B '); + insert into takes values('39157', '400', '2', 'Fall', 2003, 'A '); + insert into takes values('51553', '401', '1', 'Fall', 2003, 'A '); + insert into takes values('41671', '893', '1', 'Fall', 2007, 'A+'); + insert into takes values('63612', '304', '1', 'Fall', 2009, 'C-'); + insert into takes values('97658', '258', '1', 'Fall', 2007, 'B '); + insert into takes values('37653', '239', '1', 'Fall', 2006, 'A+'); + insert into takes values('92965', '237', '1', 'Spring', 2008, 'C '); + insert into takes values('88085', '960', '1', 'Fall', 2009, 'A-'); + insert into takes values('85602', '105', '1', 'Fall', 2009, 'C+'); + insert into takes values('18809', '867', '1', 'Fall', 2006, 'C-'); + insert into takes values('23224', '400', '2', 'Fall', 2003, 'A '); + insert into takes values('5243', '959', '1', 'Fall', 2006, 'C '); + insert into takes values('84865', '482', '1', 'Fall', 2005, 'A '); + insert into takes values('60688', '105', '1', 'Fall', 2009, 'C '); + insert into takes values('45826', '158', '1', 'Fall', 2008, 'C+'); + insert into takes values('8860', '591', '1', 'Spring', 2005, 'A+'); + insert into takes values('79697', '313', '1', 'Fall', 2010, 'C '); + insert into takes values('10204', '237', '2', 'Fall', 2009, 'A-'); + insert into takes values('38668', '808', '1', 'Fall', 2003, 'C '); + insert into takes values('51416', '545', '1', 'Fall', 2001, 'C-'); + insert into takes values('17676', '400', '1', 'Spring', 2007, 'A '); + insert into takes values('51678', '748', '1', 'Fall', 2003, 'C '); + insert into takes values('792', '258', '1', 'Fall', 2007, 'B '); + insert into takes values('43912', '867', '2', 'Fall', 2010, 'A '); + insert into takes values('27727', '362', '2', 'Fall', 2006, 'C '); + insert into takes values('19220', '313', '1', 'Fall', 2010, 'C+'); + insert into takes values('19766', '366', '1', 'Fall', 2005, 'A-'); + insert into takes values('46981', '604', '1', 'Spring', 2009, 'A-'); + insert into takes values('55859', '400', '1', 'Spring', 2007, 'B+'); + insert into takes values('28019', '486', '1', 'Fall', 2009, 'B '); + insert into takes values('64192', '496', '1', 'Fall', 2001, 'A '); + insert into takes values('17769', '629', '1', 'Spring', 2003, 'C '); + insert into takes values('25940', '237', '2', 'Fall', 2009, 'B-'); + insert into takes values('25256', '603', '1', 'Fall', 2003, 'A-'); + insert into takes values('96911', '795', '1', 'Spring', 2004, 'B+'); + insert into takes values('35588', '591', '1', 'Spring', 2005, 'A-'); + insert into takes values('20084', '105', '2', 'Fall', 2002, 'C '); + insert into takes values('16969', '808', '1', 'Fall', 2003, 'A+'); + insert into takes values('23449', '972', '1', 'Spring', 2009, 'C '); + insert into takes values('57431', '704', '1', 'Spring', 2008, 'A-'); + insert into takes values('16311', '445', '1', 'Spring', 2001, 'A-'); + insert into takes values('44038', '200', '1', 'Spring', 2007, 'A-'); + insert into takes values('64593', '493', '1', 'Spring', 2010, 'A+'); + insert into takes values('31250', '362', '3', 'Spring', 2008, 'C '); + insert into takes values('23373', '304', '1', 'Fall', 2009, 'C '); + insert into takes values('55009', '408', '1', 'Spring', 2007, 'A '); + insert into takes values('66008', '702', '1', 'Spring', 2001, 'A+'); + insert into takes values('31101', '972', '1', 'Spring', 2009, 'C-'); + insert into takes values('16035', '991', '1', 'Spring', 2008, 'C+'); + insert into takes values('1018', '319', '1', 'Spring', 2003, 'C '); + insert into takes values('26147', '545', '1', 'Fall', 2001, 'A+'); + insert into takes values('51923', '362', '3', 'Spring', 2008, 'B+'); + insert into takes values('25528', '192', '1', 'Fall', 2002, 'A '); + insert into takes values('81876', '493', '1', 'Spring', 2010, 'B+'); + insert into takes values('48423', '867', '1', 'Fall', 2006, 'A '); + insert into takes values('64938', '192', '1', 'Fall', 2002, 'B-'); + insert into takes values('24010', '571', '1', 'Spring', 2004, 'A '); + insert into takes values('61783', '242', '1', 'Fall', 2009, 'A+'); + insert into takes values('847', '626', '1', 'Fall', 2006, 'A+'); + insert into takes values('107', '408', '2', 'Spring', 2003, 'A '); + insert into takes values('77234', '486', '1', 'Fall', 2009, 'A+'); + insert into takes values('35', '493', '1', 'Spring', 2010, 'A-'); + insert into takes values('16543', '735', '2', 'Spring', 2010, 'A+'); + insert into takes values('68554', '927', '1', 'Fall', 2002, 'B-'); + insert into takes values('99760', '421', '1', 'Fall', 2004, 'A-'); + insert into takes values('79205', '875', '1', 'Spring', 2005, 'A-'); + insert into takes values('27430', '237', '2', 'Fall', 2009, 'A+'); + insert into takes values('1285', '960', '1', 'Fall', 2009, 'C '); + insert into takes values('24784', '349', '1', 'Spring', 2008, 'A+'); + insert into takes values('77729', '200', '2', 'Fall', 2002, 'C-'); + insert into takes values('68720', '169', '2', 'Fall', 2002, 'A '); + insert into takes values('27366', '795', '1', 'Spring', 2004, 'B '); + insert into takes values('15328', '843', '1', 'Fall', 2010, 'A-'); + insert into takes values('89393', '704', '1', 'Spring', 2008, 'B-'); + insert into takes values('39704', '443', '2', 'Spring', 2002, 'B+'); + insert into takes values('82591', '258', '1', 'Fall', 2007, 'A+'); + insert into takes values('1367', '875', '1', 'Spring', 2005, 'C-'); + insert into takes values('35175', '457', '1', 'Spring', 2001, 'A+'); + insert into takes values('29707', '545', '1', 'Fall', 2001, 'A+'); + insert into takes values('88577', '421', '1', 'Fall', 2004, 'A+'); + insert into takes values('61354', '304', '1', 'Fall', 2009, 'C-'); + insert into takes values('6400', '991', '1', 'Spring', 2008, 'B-'); + insert into takes values('69122', '702', '1', 'Spring', 2001, 'C-'); + insert into takes values('52929', '334', '1', 'Fall', 2009, 'A+'); + insert into takes values('79772', '334', '1', 'Fall', 2009, 'C-'); + insert into takes values('23525', '702', '1', 'Spring', 2001, 'B '); + insert into takes values('6673', '169', '2', 'Fall', 2002, 'B '); + insert into takes values('49280', '867', '1', 'Fall', 2006, 'C '); + insert into takes values('7287', '242', '1', 'Fall', 2009, 'B '); + insert into takes values('50664', '362', '3', 'Spring', 2008, 'A '); + insert into takes values('1954', '468', '2', 'Fall', 2007, 'C '); + insert into takes values('88308', '345', '1', 'Spring', 2008, 'B-'); + insert into takes values('51084', '274', '1', 'Fall', 2002, 'B '); + insert into takes values('53490', '748', '1', 'Fall', 2003, 'B-'); + insert into takes values('90089', '702', '1', 'Spring', 2001, 'C-'); + insert into takes values('48247', '631', '1', 'Spring', 2007, 'A '); + insert into takes values('81258', '642', '1', 'Fall', 2004, 'A-'); + insert into takes values('52120', '362', '3', 'Spring', 2008, 'A '); + insert into takes values('1533', '852', '1', 'Spring', 2008, 'B+'); + insert into takes values('68395', '270', '1', 'Spring', 2010, 'A '); + insert into takes values('17207', '445', '1', 'Spring', 2001, 'B-'); + insert into takes values('66269', '489', '1', 'Fall', 2007, 'B-'); + insert into takes values('4449', '137', '1', 'Spring', 2002, 'A '); + insert into takes values('87222', '258', '1', 'Fall', 2007, 'C-'); + insert into takes values('99719', '663', '1', 'Spring', 2005, 'B+'); + insert into takes values('6673', '631', '1', 'Spring', 2007, 'C '); + insert into takes values('49391', '704', '1', 'Spring', 2008, 'A-'); + insert into takes values('22086', '457', '1', 'Spring', 2001, 'C+'); + insert into takes values('94846', '169', '2', 'Fall', 2002, 'C-'); + insert into takes values('42298', '400', '2', 'Fall', 2003, 'B-'); + insert into takes values('31302', '694', '1', 'Fall', 2002, 'A+'); + insert into takes values('69241', '791', '1', 'Spring', 2006, 'A-'); + insert into takes values('86001', '867', '2', 'Fall', 2010, 'C-'); + insert into takes values('62716', '875', '1', 'Spring', 2005, 'B-'); + insert into takes values('79210', '270', '1', 'Spring', 2010, 'A+'); + insert into takes values('54672', '239', '1', 'Fall', 2006, 'B+'); + insert into takes values('31516', '843', '1', 'Fall', 2010, 'B '); + insert into takes values('8022', '626', '1', 'Fall', 2006, 'C '); + insert into takes values('27017', '875', '1', 'Spring', 2005, 'B-'); + insert into takes values('42688', '612', '1', 'Fall', 2007, 'A-'); + insert into takes values('34236', '362', '2', 'Fall', 2006, 'C '); + insert into takes values('65101', '893', '1', 'Fall', 2007, 'A '); + insert into takes values('9993', '445', '1', 'Spring', 2001, 'C+'); + insert into takes values('557', '629', '1', 'Spring', 2003, 'B '); + insert into takes values('87015', '443', '2', 'Spring', 2002, 'B+'); + insert into takes values('34957', '476', '1', 'Fall', 2010, 'B-'); + insert into takes values('51868', '679', '1', 'Spring', 2010, 'A '); + insert into takes values('6895', '735', '2', 'Spring', 2010, 'B '); + insert into takes values('70828', '401', '1', 'Fall', 2003, 'C-'); + insert into takes values('36685', '959', '1', 'Fall', 2006, 'C '); + insert into takes values('39254', '482', '1', 'Fall', 2005, 'A '); + insert into takes values('82591', '629', '1', 'Spring', 2003, 'B '); + insert into takes values('77361', '476', '1', 'Fall', 2010, 'A '); + insert into takes values('10269', '408', '2', 'Spring', 2003, 'C+'); + insert into takes values('78454', '401', '1', 'Fall', 2003, 'A+'); + insert into takes values('68554', '843', '1', 'Fall', 2010, 'C+'); + insert into takes values('86001', '702', '1', 'Spring', 2001, 'A-'); + insert into takes values('35905', '642', '1', 'Fall', 2004, 'C '); + insert into takes values('78782', '313', '1', 'Fall', 2010, 'C-'); + insert into takes values('57941', '802', '1', 'Spring', 2003, 'C+'); + insert into takes values('30858', '702', '1', 'Spring', 2001, 'B-'); + insert into takes values('61232', '334', '1', 'Fall', 2009, 'C+'); + insert into takes values('64731', '626', '1', 'Fall', 2006, 'B-'); + insert into takes values('68150', '366', '1', 'Fall', 2005, 'C+'); + insert into takes values('36995', '679', '1', 'Spring', 2010, 'C+'); + insert into takes values('30021', '200', '1', 'Spring', 2007, 'C '); + insert into takes values('18234', '802', '1', 'Spring', 2003, 'A-'); + insert into takes values('81789', '400', '2', 'Fall', 2003, 'A+'); + insert into takes values('78922', '561', '1', 'Fall', 2006, 'C '); + insert into takes values('11455', '476', '1', 'Fall', 2010, 'A+'); + insert into takes values('45494', '791', '1', 'Spring', 2006, 'A-'); + insert into takes values('10693', '959', '1', 'Fall', 2006, 'B-'); + insert into takes values('17057', '679', '1', 'Spring', 2010, 'A-'); + insert into takes values('18821', '527', '1', 'Fall', 2004, 'C-'); + insert into takes values('95631', '599', '1', 'Spring', 2003, 'C-'); + insert into takes values('19536', '319', '1', 'Spring', 2003, 'C-'); + insert into takes values('6474', '352', '1', 'Spring', 2006, 'C '); + insert into takes values('978', '949', '1', 'Fall', 2007, 'B+'); + insert into takes values('8807', '362', '3', 'Spring', 2008, 'B+'); + insert into takes values('48471', '760', '1', 'Spring', 2004, 'C '); + insert into takes values('28989', '545', '1', 'Fall', 2001, 'B-'); + insert into takes values('70688', '795', '1', 'Spring', 2004, 'C-'); + insert into takes values('36402', '626', '1', 'Fall', 2006, 'B '); + insert into takes values('50969', '604', '1', 'Spring', 2009, 'C '); + insert into takes values('25331', '345', '1', 'Spring', 2008, 'C+'); + insert into takes values('98984', '457', '1', 'Spring', 2001, 'B-'); + insert into takes values('69471', '105', '1', 'Fall', 2009, 'A-'); + insert into takes values('12078', '200', '2', 'Fall', 2002, 'B '); + insert into takes values('29707', '974', '1', 'Fall', 2003, 'B+'); + insert into takes values('50206', '991', '1', 'Spring', 2008, 'B-'); + insert into takes values('67371', '604', '1', 'Spring', 2009, 'B-'); + insert into takes values('67407', '991', '1', 'Spring', 2008, 'C-'); + insert into takes values('95175', '972', '1', 'Spring', 2009, 'A-'); + insert into takes values('1367', '489', '1', 'Fall', 2007, 'C-'); + insert into takes values('25718', '808', '1', 'Fall', 2003, 'B-'); + insert into takes values('7861', '237', '2', 'Fall', 2009, 'B '); + insert into takes values('77148', '867', '2', 'Fall', 2010, 'A '); + insert into takes values('76291', '795', '1', 'Spring', 2004, 'A+'); + insert into takes values('39238', '334', '1', 'Fall', 2009, 'C-'); + insert into takes values('25725', '237', '1', 'Spring', 2008, 'C-'); + insert into takes values('98388', '401', '1', 'Fall', 2003, 'C '); + insert into takes values('20378', '974', '1', 'Fall', 2003, 'A '); + insert into takes values('64192', '476', '1', 'Fall', 2010, 'C+'); + insert into takes values('67793', '345', '1', 'Spring', 2008, 'A-'); + insert into takes values('14032', '200', '2', 'Fall', 2002, 'C+'); + insert into takes values('21102', '200', '1', 'Spring', 2007, 'B+'); + insert into takes values('14284', '313', '1', 'Fall', 2010, 'B-'); + insert into takes values('78116', '802', '1', 'Spring', 2003, 'B '); + insert into takes values('74639', '366', '1', 'Fall', 2005, 'B-'); + insert into takes values('61527', '626', '1', 'Fall', 2006, 'A '); + insert into takes values('93986', '791', '1', 'Spring', 2006, 'C '); + insert into takes values('87246', '642', '1', 'Fall', 2004, 'B+'); + insert into takes values('62373', '158', '1', 'Fall', 2008, 'C '); + insert into takes values('41751', '401', '1', 'Fall', 2003, 'A '); + insert into takes values('39157', '345', '1', 'Spring', 2008, 'C '); + insert into takes values('37454', '274', '1', 'Fall', 2002, 'C '); + insert into takes values('25077', '192', '1', 'Fall', 2002, 'A+'); + insert into takes values('35935', '959', '1', 'Fall', 2006, 'B-'); + insert into takes values('55354', '468', '1', 'Fall', 2005, 'B+'); + insert into takes values('75046', '692', '1', 'Spring', 2010, 'C '); + insert into takes values('15083', '400', '1', 'Spring', 2007, 'B '); + insert into takes values('6209', '415', '1', 'Fall', 2010, 'C-'); + insert into takes values('59517', '603', '1', 'Fall', 2003, 'A+'); + insert into takes values('77580', '237', '1', 'Spring', 2008, 'B-'); + insert into takes values('14668', '489', '1', 'Fall', 2007, 'B+'); + insert into takes values('19638', '200', '2', 'Fall', 2002, 'C+'); + insert into takes values('51549', '366', '1', 'Fall', 2005, 'B+'); + insert into takes values('36019', '545', '1', 'Fall', 2001, 'A-'); + insert into takes values('21100', '169', '1', 'Spring', 2007, 'A '); + insert into takes values('90089', '352', '1', 'Spring', 2006, 'B-'); + insert into takes values('10033', '603', '1', 'Fall', 2003, 'B '); + insert into takes values('71426', '362', '2', 'Fall', 2006, 'C '); + insert into takes values('70452', '362', '1', 'Fall', 2005, 'B+'); + insert into takes values('42388', '192', '1', 'Fall', 2002, 'C-'); + insert into takes values('3739', '415', '1', 'Fall', 2010, 'B '); + insert into takes values('69960', '748', '1', 'Fall', 2003, 'B-'); + insert into takes values('82918', '443', '1', 'Spring', 2010, 'B '); + insert into takes values('26147', '960', '1', 'Fall', 2009, 'C+'); + insert into takes values('3163', '443', '1', 'Spring', 2010, 'A '); + insert into takes values('64724', '694', '1', 'Fall', 2002, 'B-'); + insert into takes values('61003', '631', '1', 'Spring', 2007, 'B+'); + insert into takes values('65056', '867', '2', 'Fall', 2010, 'B '); + insert into takes values('18740', '476', '1', 'Fall', 2010, 'A-'); + insert into takes values('4034', '760', '1', 'Spring', 2004, 'C '); + insert into takes values('18859', '237', '1', 'Spring', 2008, 'C '); + insert into takes values('62749', '852', '1', 'Spring', 2008, 'B+'); + insert into takes values('31086', '960', '1', 'Fall', 2009, 'A-'); + insert into takes values('65715', '489', '1', 'Fall', 2007, 'A+'); + insert into takes values('21008', '408', '2', 'Spring', 2003, 'B '); + insert into takes values('56598', '105', '1', 'Fall', 2009, 'B '); + insert into takes values('9659', '376', '1', 'Fall', 2006, 'A+'); + insert into takes values('86674', '604', '1', 'Spring', 2009, 'C+'); + insert into takes values('67436', '200', '1', 'Spring', 2007, 'B '); + insert into takes values('62487', '571', '1', 'Spring', 2004, 'A '); + insert into takes values('36791', '366', '1', 'Fall', 2005, 'A-'); + insert into takes values('65396', '468', '1', 'Fall', 2005, 'B+'); + insert into takes values('9183', '486', '1', 'Fall', 2009, 'B '); + insert into takes values('69628', '338', '2', 'Spring', 2006, 'C '); + insert into takes values('54296', '445', '1', 'Spring', 2001, 'A '); + insert into takes values('68999', '105', '1', 'Fall', 2009, 'C-'); + insert into takes values('66469', '258', '1', 'Fall', 2007, 'A+'); + insert into takes values('61402', '137', '1', 'Spring', 2002, 'A+'); + insert into takes values('72669', '476', '1', 'Fall', 2010, 'A '); + insert into takes values('40937', '482', '1', 'Fall', 2005, 'C-'); + insert into takes values('42556', '603', '1', 'Fall', 2003, 'C '); + insert into takes values('74639', '962', '1', 'Spring', 2008, 'C '); + insert into takes values('29002', '468', '1', 'Fall', 2005, 'B+'); + insert into takes values('45359', '704', '1', 'Spring', 2008, 'C '); + insert into takes values('5961', '408', '2', 'Spring', 2003, 'B '); + insert into takes values('39978', '270', '1', 'Spring', 2010, 'C '); + insert into takes values('56003', '735', '2', 'Spring', 2010, 'A-'); + insert into takes values('10269', '489', '1', 'Fall', 2007, 'A-'); + insert into takes values('19735', '581', '1', 'Spring', 2005, 'A '); + insert into takes values('68070', '571', '1', 'Spring', 2004, 'A+'); + insert into takes values('41832', '748', '1', 'Fall', 2003, 'A '); + insert into takes values('81896', '972', '1', 'Spring', 2009, 'C '); + insert into takes values('15578', '545', '1', 'Fall', 2001, 'C '); + insert into takes values('18554', '319', '1', 'Spring', 2003, 'A+'); + insert into takes values('63502', '962', '1', 'Spring', 2008, 'B '); + insert into takes values('29849', '867', '1', 'Fall', 2006, 'B '); + insert into takes values('83039', '158', '2', 'Spring', 2008, 'A+'); + insert into takes values('18809', '603', '1', 'Fall', 2003, 'B '); + insert into takes values('17769', '571', '1', 'Spring', 2004, 'C-'); + insert into takes values('71904', '959', '1', 'Fall', 2006, 'A+'); + insert into takes values('35685', '304', '1', 'Fall', 2009, 'C '); + insert into takes values('35685', '242', '1', 'Fall', 2009, 'C+'); + insert into takes values('36685', '237', '1', 'Spring', 2008, 'A '); + insert into takes values('63288', '959', '1', 'Fall', 2006, 'C-'); + insert into takes values('7287', '319', '1', 'Spring', 2003, 'C-'); + insert into takes values('89196', '561', '1', 'Fall', 2006, 'B-'); + insert into takes values('46725', '270', '1', 'Spring', 2010, 'A+'); + insert into takes values('18809', '974', '1', 'Fall', 2003, 'B '); + insert into takes values('72186', '493', '1', 'Spring', 2010, 'B+'); + insert into takes values('16297', '200', '2', 'Fall', 2002, 'C '); + insert into takes values('52385', '704', '1', 'Spring', 2008, 'C '); + insert into takes values('48660', '158', '2', 'Spring', 2008, 'C-'); + insert into takes values('74911', '735', '2', 'Spring', 2010, 'B-'); + insert into takes values('99977', '802', '1', 'Spring', 2003, 'A-'); + insert into takes values('19321', '105', '2', 'Fall', 2002, 'A '); + insert into takes values('7970', '949', '1', 'Fall', 2007, 'B-'); + insert into takes values('44706', '192', '1', 'Fall', 2002, 'A '); + insert into takes values('80912', '313', '1', 'Fall', 2010, 'B-'); + insert into takes values('57780', '443', '2', 'Spring', 2002, 'A+'); + insert into takes values('36513', '274', '1', 'Fall', 2002, 'A-'); + insert into takes values('39927', '612', '1', 'Fall', 2007, 'B+'); + insert into takes values('54296', '962', '1', 'Spring', 2008, 'C+'); + insert into takes values('25525', '304', '1', 'Fall', 2009, 'A '); + insert into takes values('16311', '237', '2', 'Fall', 2009, 'A+'); + insert into takes values('7020', '270', '1', 'Spring', 2010, 'B-'); + insert into takes values('45083', '408', '2', 'Spring', 2003, 'C-'); + insert into takes values('20378', '270', '1', 'Spring', 2010, 'B-'); + insert into takes values('15030', '362', '1', 'Fall', 2005, 'B+'); + insert into takes values('46980', '313', '1', 'Fall', 2010, 'A-'); + insert into takes values('87044', '561', '1', 'Fall', 2006, 'C+'); + insert into takes values('22467', '376', '1', 'Fall', 2006, 'C '); + insert into takes values('90448', '612', '1', 'Fall', 2007, 'C-'); + insert into takes values('94894', '376', '1', 'Fall', 2006, 'A+'); + insert into takes values('23457', '747', '1', 'Spring', 2004, 'B '); + insert into takes values('21100', '482', '1', 'Fall', 2005, 'C-'); + insert into takes values('58172', '867', '2', 'Fall', 2010, 'B-'); + insert into takes values('53469', '476', '1', 'Fall', 2010, 'C+'); + insert into takes values('92332', '604', '1', 'Spring', 2009, 'C+'); + insert into takes values('75173', '258', '1', 'Fall', 2007, 'A '); + insert into takes values('82688', '169', '1', 'Spring', 2007, 'B-'); + insert into takes values('36263', '489', '1', 'Fall', 2007, 'B+'); + insert into takes values('77244', '274', '1', 'Fall', 2002, 'A+'); + insert into takes values('42019', '319', '1', 'Spring', 2003, 'A '); + insert into takes values('53077', '376', '1', 'Fall', 2006, 'B-'); + insert into takes values('61081', '408', '1', 'Spring', 2007, 'A+'); + insert into takes values('63361', '663', '1', 'Spring', 2005, 'A-'); + insert into takes values('26619', '795', '1', 'Spring', 2004, 'C-'); + insert into takes values('30164', '482', '1', 'Fall', 2005, 'A+'); + insert into takes values('34392', '604', '1', 'Spring', 2009, 'C+'); + insert into takes values('23392', '338', '2', 'Spring', 2006, 'A-'); + insert into takes values('31476', '366', '1', 'Fall', 2005, 'A-'); + insert into takes values('2286', '642', '1', 'Fall', 2004, 'A '); + insert into takes values('70021', '559', '1', 'Fall', 2002, 'C '); + insert into takes values('22004', '313', '1', 'Fall', 2010, 'B '); + insert into takes values('41211', '867', '1', 'Fall', 2006, 'A+'); + insert into takes values('91851', '631', '1', 'Spring', 2007, 'C+'); + insert into takes values('11194', '867', '2', 'Fall', 2010, 'B '); + insert into takes values('13504', '338', '2', 'Spring', 2006, 'B+'); + insert into takes values('30397', '349', '1', 'Spring', 2008, 'A-'); + insert into takes values('12362', '760', '1', 'Spring', 2004, 'B+'); + insert into takes values('74796', '867', '1', 'Fall', 2006, 'C '); + insert into takes values('2139', '545', '1', 'Fall', 2001, 'A+'); + insert into takes values('47677', '421', '1', 'Fall', 2004, 'C+'); + insert into takes values('34236', '258', '1', 'Fall', 2007, 'C+'); + insert into takes values('41973', '949', '1', 'Fall', 2007, 'B-'); + insert into takes values('56598', '802', '1', 'Spring', 2003, 'C '); + insert into takes values('82066', '200', '2', 'Fall', 2002, 'C '); + insert into takes values('53185', '200', '2', 'Fall', 2002, 'B-'); + insert into takes values('98019', '158', '2', 'Spring', 2008, 'C-'); + insert into takes values('37586', '875', '1', 'Spring', 2005, 'C+'); + insert into takes values('7498', '760', '1', 'Spring', 2004, 'C+'); + insert into takes values('53803', '545', '1', 'Fall', 2001, 'B-'); + insert into takes values('59172', '735', '1', 'Spring', 2003, 'B '); + insert into takes values('87784', '702', '1', 'Spring', 2001, 'B+'); + insert into takes values('19541', '362', '2', 'Fall', 2006, 'B+'); + insert into takes values('22050', '274', '1', 'Fall', 2002, 'B '); + insert into takes values('24116', '408', '2', 'Spring', 2003, 'C+'); + insert into takes values('18941', '959', '1', 'Fall', 2006, 'A '); + insert into takes values('98423', '489', '1', 'Fall', 2007, 'C-'); + insert into takes values('15457', '443', '2', 'Spring', 2002, 'C '); + insert into takes values('48660', '735', '1', 'Spring', 2003, 'B '); + insert into takes values('73213', '338', '2', 'Spring', 2006, 'B+'); + insert into takes values('75522', '959', '1', 'Fall', 2006, 'A-'); + insert into takes values('5920', '747', '1', 'Spring', 2004, 'C+'); + insert into takes values('77003', '679', '1', 'Spring', 2010, 'B '); + insert into takes values('60748', '169', '2', 'Fall', 2002, 'C '); + insert into takes values('65205', '571', '1', 'Spring', 2004, 'B-'); + insert into takes values('4438', '927', '1', 'Fall', 2002, 'C+'); + insert into takes values('39046', '443', '2', 'Spring', 2002, 'C+'); + insert into takes values('47265', '527', '1', 'Fall', 2004, 'B-'); + insert into takes values('38121', '927', '1', 'Fall', 2002, 'A-'); + insert into takes values('92417', '242', '1', 'Fall', 2009, 'A '); + insert into takes values('1000', '802', '1', 'Spring', 2003, 'C+'); + insert into takes values('47126', '591', '1', 'Spring', 2005, 'A-'); + insert into takes values('98940', '401', '1', 'Fall', 2003, 'C+'); + insert into takes values('81538', '875', '1', 'Spring', 2005, 'B '); + insert into takes values('93354', '962', '1', 'Spring', 2008, 'A-'); + insert into takes values('4383', '408', '2', 'Spring', 2003, 'B-'); + insert into takes values('64642', '527', '1', 'Fall', 2004, 'A '); + insert into takes values('43989', '867', '1', 'Fall', 2006, 'C+'); + insert into takes values('3576', '408', '2', 'Spring', 2003, 'A+'); + insert into takes values('92274', '545', '1', 'Fall', 2001, 'C '); + insert into takes values('65676', '362', '2', 'Fall', 2006, 'C+'); + insert into takes values('74530', '349', '1', 'Spring', 2008, 'B '); + insert into takes values('21556', '362', '3', 'Spring', 2008, 'A-'); + insert into takes values('14032', '313', '1', 'Fall', 2010, 'A+'); + insert into takes values('31341', '527', '1', 'Fall', 2004, 'B+'); + insert into takes values('62054', '631', '1', 'Spring', 2007, 'A '); + insert into takes values('3639', '960', '1', 'Fall', 2009, 'C '); + insert into takes values('32056', '304', '1', 'Fall', 2009, 'C '); + insert into takes values('4034', '704', '1', 'Spring', 2008, 'B-'); + insert into takes values('27236', '843', '1', 'Fall', 2010, 'B+'); + insert into takes values('10917', '960', '1', 'Fall', 2009, 'B+'); + insert into takes values('22325', '476', '1', 'Fall', 2010, 'B+'); + insert into takes values('19050', '349', '1', 'Spring', 2008, 'B+'); + insert into takes values('37809', '642', '1', 'Fall', 2004, 'C '); + insert into takes values('18740', '735', '2', 'Spring', 2010, 'B-'); + insert into takes values('49205', '313', '1', 'Fall', 2010, 'B '); + insert into takes values('16405', '493', '1', 'Spring', 2010, 'C '); + insert into takes values('83314', '960', '2', 'Fall', 2006, 'B+'); + insert into takes values('4940', '362', '2', 'Fall', 2006, 'B '); + insert into takes values('17397', '237', '2', 'Fall', 2009, 'C+'); + insert into takes values('14668', '631', '1', 'Spring', 2007, 'B '); + insert into takes values('17424', '629', '1', 'Spring', 2003, 'B+'); + insert into takes values('69752', '559', '1', 'Fall', 2002, 'B '); + insert into takes values('34197', '237', '1', 'Spring', 2008, 'C '); + insert into takes values('8603', '893', '1', 'Fall', 2007, 'B '); + insert into takes values('90124', '735', '1', 'Spring', 2003, 'C+'); + insert into takes values('96615', '893', '1', 'Fall', 2007, 'B-'); + insert into takes values('77548', '158', '1', 'Fall', 2008, 'B '); + insert into takes values('26427', '626', '1', 'Fall', 2006, 'C+'); + insert into takes values('62754', '559', '1', 'Fall', 2002, 'B '); + insert into takes values('99268', '376', '1', 'Fall', 2006, 'C+'); + insert into takes values('17997', '274', '1', 'Fall', 2002, 'A '); + insert into takes values('17128', '200', '1', 'Spring', 2007, 'B-'); + insert into takes values('1367', '169', '2', 'Fall', 2002, 'A+'); + insert into takes values('12941', '496', '1', 'Fall', 2001, 'C+'); + insert into takes values('5243', '747', '1', 'Spring', 2004, 'C-'); + insert into takes values('288', '192', '1', 'Fall', 2002, 'C+'); + insert into takes values('98870', '486', '1', 'Fall', 2009, 'C-'); + insert into takes values('95175', '192', '1', 'Fall', 2002, 'A-'); + insert into takes values('89414', '421', '1', 'Fall', 2004, 'A '); + insert into takes values('19245', '362', '2', 'Fall', 2006, 'C-'); + insert into takes values('29920', '400', '2', 'Fall', 2003, 'A '); + insert into takes values('70098', '795', '1', 'Spring', 2004, 'C '); + insert into takes values('14484', '561', '1', 'Fall', 2006, 'B '); + insert into takes values('25068', '468', '2', 'Fall', 2007, 'B '); + insert into takes values('32506', '408', '2', 'Spring', 2003, 'B-'); + insert into takes values('61065', '795', '1', 'Spring', 2004, 'C+'); + insert into takes values('75794', '362', '3', 'Spring', 2008, 'C+'); + insert into takes values('55238', '571', '1', 'Spring', 2004, 'B '); + insert into takes values('48901', '642', '1', 'Fall', 2004, 'C '); + insert into takes values('82688', '313', '1', 'Fall', 2010, 'B-'); + insert into takes values('26427', '591', '1', 'Spring', 2005, 'C+'); + insert into takes values('41774', '408', '1', 'Spring', 2007, 'C '); + insert into takes values('12683', '631', '1', 'Spring', 2007, 'C '); + insert into takes values('13408', '864', '1', 'Spring', 2006, 'C-'); + insert into takes values('29959', '599', '1', 'Spring', 2003, 'C-'); + insert into takes values('17996', '274', '1', 'Fall', 2002, 'C '); + insert into takes values('94535', '105', '1', 'Fall', 2009, 'A+'); + insert into takes values('7287', '927', '1', 'Fall', 2002, 'B '); + insert into takes values('77172', '694', '1', 'Fall', 2002, 'B+'); + insert into takes values('63860', '808', '1', 'Fall', 2003, 'C-'); + insert into takes values('46260', '443', '1', 'Spring', 2010, 'C+'); + insert into takes values('56212', '445', '1', 'Spring', 2001, 'A-'); + insert into takes values('19220', '366', '1', 'Fall', 2005, 'C+'); + insert into takes values('89312', '408', '1', 'Spring', 2007, 'B '); + insert into takes values('1087', '702', '1', 'Spring', 2001, 'B+'); + insert into takes values('51084', '642', '1', 'Fall', 2004, 'C+'); + insert into takes values('23994', '702', '1', 'Spring', 2001, 'C '); + insert into takes values('33107', '867', '2', 'Fall', 2010, 'C '); + insert into takes values('62152', '482', '1', 'Fall', 2005, 'A-'); + insert into takes values('40682', '443', '1', 'Spring', 2010, 'C-'); + insert into takes values('58606', '400', '1', 'Spring', 2007, 'B '); + insert into takes values('28409', '401', '1', 'Fall', 2003, 'C-'); + insert into takes values('52385', '169', '1', 'Spring', 2007, 'C+'); + insert into takes values('34392', '581', '1', 'Spring', 2005, 'B '); + insert into takes values('27366', '808', '1', 'Fall', 2003, 'A '); + insert into takes values('75794', '760', '1', 'Spring', 2004, 'A+'); + insert into takes values('93171', '362', '2', 'Fall', 2006, 'B+'); + insert into takes values('28538', '927', '1', 'Fall', 2002, 'B-'); + insert into takes values('50598', '192', '1', 'Fall', 2002, 'A '); + insert into takes values('3487', '991', '1', 'Spring', 2008, 'B '); + insert into takes values('17086', '626', '1', 'Fall', 2006, 'C '); + insert into takes values('43016', '426', '1', 'Spring', 2006, 'B+'); + insert into takes values('81207', '400', '2', 'Fall', 2003, 'A+'); + insert into takes values('19536', '415', '1', 'Fall', 2010, 'B+'); + insert into takes values('34502', '169', '1', 'Spring', 2007, 'C+'); + insert into takes values('37454', '415', '1', 'Fall', 2010, 'C+'); + insert into takes values('15578', '599', '1', 'Spring', 2003, 'B+'); + insert into takes values('84495', '137', '1', 'Spring', 2002, 'A '); + insert into takes values('74530', '237', '2', 'Fall', 2009, 'C '); + insert into takes values('57238', '338', '1', 'Spring', 2007, 'A+'); + insert into takes values('57377', '352', '1', 'Spring', 2006, 'A-'); + insert into takes values('17507', '893', '1', 'Fall', 2007, 'C+'); + insert into takes values('26427', '642', '1', 'Fall', 2004, 'C-'); + insert into takes values('97658', '169', '1', 'Spring', 2007, 'C '); + insert into takes values('39114', '421', '1', 'Fall', 2004, 'A-'); + insert into takes values('37759', '702', '1', 'Spring', 2001, 'A '); + insert into takes values('29390', '376', '1', 'Fall', 2006, 'C '); + insert into takes values('45680', '581', '1', 'Spring', 2005, 'A-'); + insert into takes values('77003', '704', '1', 'Spring', 2008, 'B-'); + insert into takes values('17997', '663', '1', 'Spring', 2005, 'B+'); + insert into takes values('93354', '376', '1', 'Fall', 2006, 'C '); + insert into takes values('18752', '408', '2', 'Spring', 2003, 'A-'); + insert into takes values('34569', '704', '1', 'Spring', 2008, 'A-'); + insert into takes values('55009', '735', '1', 'Spring', 2003, 'A '); + insert into takes values('6712', '694', '1', 'Fall', 2002, 'B-'); + insert into takes values('46981', '791', '1', 'Spring', 2006, 'C+'); + insert into takes values('69225', '972', '1', 'Spring', 2009, 'A-'); + insert into takes values('66269', '735', '2', 'Spring', 2010, 'C-'); + insert into takes values('37038', '445', '1', 'Spring', 2001, 'A+'); + insert into takes values('65056', '735', '1', 'Spring', 2003, 'B+'); + insert into takes values('39472', '747', '1', 'Spring', 2004, 'C+'); + insert into takes values('18941', '258', '1', 'Fall', 2007, 'C '); + insert into takes values('56003', '400', '2', 'Fall', 2003, 'C+'); + insert into takes values('63860', '663', '1', 'Spring', 2005, 'C '); + insert into takes values('14621', '571', '1', 'Spring', 2004, 'C+'); + insert into takes values('75772', '893', '1', 'Fall', 2007, 'A+'); + insert into takes values('16075', '258', '1', 'Fall', 2007, 'B+'); + insert into takes values('76246', '663', '1', 'Spring', 2005, 'C-'); + insert into takes values('13081', '237', '2', 'Fall', 2009, 'B '); + insert into takes values('28299', '527', '1', 'Fall', 2004, 'B '); + insert into takes values('63612', '408', '1', 'Spring', 2007, 'C+'); + insert into takes values('56849', '489', '1', 'Fall', 2007, 'C '); + insert into takes values('29462', '581', '1', 'Spring', 2005, 'C '); + insert into takes values('20445', '702', '1', 'Spring', 2001, 'B '); + insert into takes values('39520', '408', '1', 'Spring', 2007, 'A '); + insert into takes values('27727', '735', '2', 'Spring', 2010, 'C '); + insert into takes values('41774', '795', '1', 'Spring', 2004, 'B-'); + insert into takes values('17424', '795', '1', 'Spring', 2004, 'C '); + insert into takes values('98359', '443', '1', 'Spring', 2010, 'A+'); + insert into takes values('83696', '408', '2', 'Spring', 2003, 'B+'); + insert into takes values('54296', '561', '1', 'Fall', 2006, 'B-'); + insert into takes values('45817', '362', '3', 'Spring', 2008, 'C-'); + insert into takes values('4645', '486', '1', 'Fall', 2009, 'C '); + insert into takes values('65241', '426', '1', 'Spring', 2006, 'B-'); + insert into takes values('74974', '696', '1', 'Spring', 2002, 'A-'); + insert into takes values('59673', '808', '1', 'Fall', 2003, 'C-'); + insert into takes values('48611', '962', '1', 'Spring', 2008, 'C '); + insert into takes values('14581', '629', '1', 'Spring', 2003, 'C+'); + insert into takes values('41491', '972', '1', 'Spring', 2009, 'A+'); + insert into takes values('66494', '338', '2', 'Spring', 2006, 'A+'); + insert into takes values('34788', '561', '1', 'Fall', 2006, 'C '); + insert into takes values('36379', '158', '2', 'Spring', 2008, 'C+'); + insert into takes values('30021', '376', '1', 'Fall', 2006, 'C '); + insert into takes values('11083', '349', '1', 'Spring', 2008, 'C '); + insert into takes values('34770', '366', '1', 'Fall', 2005, 'B-'); + insert into takes values('31080', '237', '1', 'Spring', 2008, 'B '); + insert into takes values('21337', '408', '1', 'Spring', 2007, 'A-'); + insert into takes values('8603', '274', '1', 'Fall', 2002, 'B '); + insert into takes values('79911', '748', '1', 'Fall', 2003, 'C '); + insert into takes values('282', '808', '1', 'Fall', 2003, 'C-'); + insert into takes values('81984', '972', '1', 'Spring', 2009, 'A-'); + insert into takes values('52876', '960', '1', 'Fall', 2009, 'B '); + insert into takes values('56276', '319', '1', 'Spring', 2003, 'B+'); + insert into takes values('66090', '735', '1', 'Spring', 2003, 'C+'); + insert into takes values('31486', '612', '1', 'Fall', 2007, 'A+'); + insert into takes values('53165', '158', '1', 'Fall', 2008, 'B+'); + insert into takes values('39514', '362', '1', 'Fall', 2005, 'C-'); + insert into takes values('97629', '468', '1', 'Fall', 2005, 'B+'); + insert into takes values('92274', '581', '1', 'Spring', 2005, 'A+'); + insert into takes values('90089', '760', '1', 'Spring', 2004, 'C+'); + insert into takes values('76270', '642', '1', 'Fall', 2004, 'A-'); + insert into takes values('67560', '591', '1', 'Spring', 2005, 'B '); + insert into takes values('107', '867', '2', 'Fall', 2010, 'B+'); + insert into takes values('23270', '274', '1', 'Fall', 2002, 'A+'); + insert into takes values('69230', '362', '2', 'Fall', 2006, 'C+'); + insert into takes values('37818', '105', '2', 'Fall', 2002, 'A+'); + insert into takes values('56057', '864', '1', 'Spring', 2006, 'B+'); + insert into takes values('64164', '362', '1', 'Fall', 2005, 'C '); + insert into takes values('63039', '748', '1', 'Fall', 2003, 'C '); + insert into takes values('36265', '426', '1', 'Spring', 2006, 'C-'); + insert into takes values('5898', '338', '1', 'Spring', 2007, 'B+'); + insert into takes values('69521', '338', '1', 'Spring', 2007, 'A '); + insert into takes values('74460', '376', '1', 'Fall', 2006, 'C '); + insert into takes values('56058', '875', '1', 'Spring', 2005, 'B+'); + insert into takes values('94846', '591', '1', 'Spring', 2005, 'B+'); + insert into takes values('65703', '493', '1', 'Spring', 2010, 'C+'); + insert into takes values('77664', '105', '1', 'Fall', 2009, 'B-'); + insert into takes values('40558', '694', '1', 'Fall', 2002, 'B '); + insert into takes values('40178', '493', '1', 'Spring', 2010, 'A-'); + insert into takes values('85887', '270', '1', 'Spring', 2010, 'B '); + insert into takes values('25725', '875', '1', 'Spring', 2005, 'A+'); + insert into takes values('76049', '626', '1', 'Fall', 2006, 'B+'); + insert into takes values('88140', '169', '1', 'Spring', 2007, 'B+'); + insert into takes values('22258', '105', '2', 'Fall', 2002, 'A '); + insert into takes values('21401', '959', '1', 'Fall', 2006, 'B-'); + insert into takes values('48901', '338', '2', 'Spring', 2006, 'C+'); + insert into takes values('93039', '960', '2', 'Fall', 2006, 'A '); + insert into takes values('41973', '559', '1', 'Fall', 2002, 'B-'); + insert into takes values('30858', '486', '1', 'Fall', 2009, 'B '); + insert into takes values('63449', '376', '1', 'Fall', 2006, 'B+'); + insert into takes values('66106', '927', '1', 'Fall', 2002, 'C-'); + insert into takes values('73328', '603', '1', 'Fall', 2003, 'A-'); + insert into takes values('61003', '959', '1', 'Fall', 2006, 'A+'); + insert into takes values('80254', '704', '1', 'Spring', 2008, 'B '); + insert into takes values('95320', '561', '1', 'Fall', 2006, 'B '); + insert into takes values('53424', '158', '2', 'Spring', 2008, 'B+'); + insert into takes values('32772', '457', '1', 'Spring', 2001, 'B-'); + insert into takes values('96117', '362', '1', 'Fall', 2005, 'B+'); + insert into takes values('52371', '960', '1', 'Fall', 2009, 'C '); + insert into takes values('56212', '192', '1', 'Fall', 2002, 'B+'); + insert into takes values('12214', '735', '1', 'Spring', 2003, 'B '); + insert into takes values('69679', '960', '2', 'Fall', 2006, 'A-'); + insert into takes values('11055', '443', '2', 'Spring', 2002, 'A+'); + insert into takes values('22198', '352', '1', 'Spring', 2006, 'C '); + insert into takes values('91132', '192', '1', 'Fall', 2002, 'C-'); + insert into takes values('4449', '735', '2', 'Spring', 2010, 'C-'); + insert into takes values('85887', '493', '1', 'Spring', 2010, 'A-'); + insert into takes values('69628', '445', '1', 'Spring', 2001, 'A '); + insert into takes values('87439', '545', '1', 'Fall', 2001, 'C-'); + insert into takes values('97065', '158', '1', 'Fall', 2008, 'A-'); + insert into takes values('63361', '808', '1', 'Fall', 2003, 'A+'); + insert into takes values('93354', '696', '1', 'Spring', 2002, 'A-'); + insert into takes values('27687', '443', '1', 'Spring', 2010, 'B '); + insert into takes values('90814', '366', '1', 'Fall', 2005, 'C-'); + insert into takes values('42688', '962', '1', 'Spring', 2008, 'C-'); + insert into takes values('57666', '974', '1', 'Fall', 2003, 'C '); + insert into takes values('84432', '927', '1', 'Fall', 2002, 'B '); + insert into takes values('36019', '663', '1', 'Spring', 2005, 'A '); + insert into takes values('54610', '496', '1', 'Fall', 2001, 'B-'); + insert into takes values('58465', '486', '1', 'Fall', 2009, 'A-'); + insert into takes values('6287', '694', '1', 'Fall', 2002, 'A+'); + insert into takes values('14432', '237', '2', 'Fall', 2009, 'C+'); + insert into takes values('99451', '694', '1', 'Fall', 2002, 'C-'); + insert into takes values('13495', '496', '1', 'Fall', 2001, 'C-'); + insert into takes values('22086', '408', '1', 'Spring', 2007, 'C '); + insert into takes values('54622', '867', '2', 'Fall', 2010, 'B+'); + insert into takes values('95320', '962', '1', 'Spring', 2008, 'A '); + insert into takes values('58081', '169', '2', 'Fall', 2002, 'C+'); + insert into takes values('92949', '408', '2', 'Spring', 2003, 'A+'); + insert into takes values('91978', '200', '2', 'Fall', 2002, 'B-'); + insert into takes values('10834', '445', '1', 'Spring', 2001, 'B+'); + insert into takes values('3739', '493', '1', 'Spring', 2010, 'B+'); + insert into takes values('89188', '426', '1', 'Spring', 2006, 'B-'); + insert into takes values('21102', '704', '1', 'Spring', 2008, 'A-'); + insert into takes values('4355', '457', '1', 'Spring', 2001, 'A-'); + insert into takes values('40457', '366', '1', 'Fall', 2005, 'A-'); + insert into takes values('71387', '304', '1', 'Fall', 2009, 'B '); + insert into takes values('35687', '893', '1', 'Fall', 2007, 'C+'); + insert into takes values('18809', '408', '2', 'Spring', 2003, 'B-'); + insert into takes values('15883', '867', '2', 'Fall', 2010, 'B '); + insert into takes values('83136', '362', '1', 'Fall', 2005, 'A+'); + insert into takes values('8252', '400', '2', 'Fall', 2003, 'C '); + insert into takes values('69081', '496', '1', 'Fall', 2001, 'A+'); + insert into takes values('57055', '376', '1', 'Fall', 2006, 'C '); + insert into takes values('91063', '559', '1', 'Fall', 2002, 'A+'); + insert into takes values('75534', '559', '1', 'Fall', 2002, 'B-'); + insert into takes values('96193', '461', '1', 'Fall', 2002, 'C-'); + insert into takes values('45300', '105', '2', 'Fall', 2002, 'C+'); + insert into takes values('90234', '415', '1', 'Fall', 2010, 'A+'); + insert into takes values('88993', '362', '2', 'Fall', 2006, 'A+'); + insert into takes values('20985', '493', '1', 'Spring', 2010, 'A+'); + insert into takes values('16753', '169', '2', 'Fall', 2002, 'A '); + insert into takes values('57456', '748', '1', 'Fall', 2003, 'B '); + insert into takes values('2177', '949', '1', 'Fall', 2007, 'A '); + insert into takes values('60366', '362', '3', 'Spring', 2008, 'B-'); + insert into takes values('75878', '237', '2', 'Fall', 2009, 'B-'); + insert into takes values('27919', '482', '1', 'Fall', 2005, 'B-'); + insert into takes values('79446', '137', '1', 'Spring', 2002, 'B-'); + insert into takes values('17911', '366', '1', 'Fall', 2005, 'B+'); + insert into takes values('99348', '571', '1', 'Spring', 2004, 'C+'); + insert into takes values('21225', '559', '1', 'Fall', 2002, 'C-'); + insert into takes values('58172', '376', '1', 'Fall', 2006, 'C+'); + insert into takes values('14639', '692', '1', 'Spring', 2010, 'C+'); + insert into takes values('43130', '496', '1', 'Fall', 2001, 'C-'); + insert into takes values('71543', '626', '1', 'Fall', 2006, 'A+'); + insert into takes values('62429', '169', '2', 'Fall', 2002, 'A+'); + insert into takes values('9993', '735', '1', 'Spring', 2003, 'B-'); + insert into takes values('79892', '274', '1', 'Fall', 2002, 'B+'); + insert into takes values('2629', '349', '1', 'Spring', 2008, 'C-'); + insert into takes values('9953', '571', '1', 'Spring', 2004, 'C+'); + insert into takes values('33107', '258', '1', 'Fall', 2007, 'B+'); + insert into takes values('79502', '362', '2', 'Fall', 2006, 'B+'); + insert into takes values('107', '972', '1', 'Spring', 2009, 'C-'); + insert into takes values('76246', '603', '1', 'Fall', 2003, 'B+'); + insert into takes values('25725', '200', '1', 'Spring', 2007, 'A-'); + insert into takes values('52076', '137', '1', 'Spring', 2002, 'C '); + insert into takes values('55286', '972', '1', 'Spring', 2009, 'A-'); + insert into takes values('14639', '893', '1', 'Fall', 2007, 'C+'); + insert into takes values('29803', '443', '2', 'Spring', 2002, 'B '); + insert into takes values('66469', '476', '1', 'Fall', 2010, 'C+'); + insert into takes values('51203', '445', '1', 'Spring', 2001, 'A '); + insert into takes values('71768', '581', '1', 'Spring', 2005, 'C-'); + insert into takes values('85063', '679', '1', 'Spring', 2010, 'C '); + insert into takes values('69747', '927', '1', 'Fall', 2002, 'A '); + insert into takes values('98359', '338', '2', 'Spring', 2006, 'B-'); + insert into takes values('13403', '192', '1', 'Fall', 2002, 'C-'); + insert into takes values('15083', '105', '2', 'Fall', 2002, 'C '); + insert into takes values('38902', '242', '1', 'Fall', 2009, 'A-'); + insert into takes values('6710', '496', '1', 'Fall', 2001, 'B '); + insert into takes values('23475', '960', '2', 'Fall', 2006, 'A-'); + insert into takes values('47677', '468', '1', 'Fall', 2005, 'A+'); + insert into takes values('81294', '702', '1', 'Spring', 2001, 'B+'); + insert into takes values('28299', '867', '2', 'Fall', 2010, 'A-'); + insert into takes values('68554', '629', '1', 'Spring', 2003, 'C+'); + insert into takes values('29192', '663', '1', 'Spring', 2005, 'C+'); + insert into takes values('65205', '489', '1', 'Fall', 2007, 'C-'); + insert into takes values('83002', '400', '2', 'Fall', 2003, 'A+'); + insert into takes values('53077', '748', '1', 'Fall', 2003, 'A '); + insert into takes values('68278', '694', '1', 'Fall', 2002, 'B+'); + insert into takes values('48678', '893', '1', 'Fall', 2007, 'B '); + insert into takes values('62716', '748', '1', 'Fall', 2003, 'C-'); + insert into takes values('74016', '694', '1', 'Fall', 2002, 'C+'); + insert into takes values('53728', '169', '1', 'Spring', 2007, 'B-'); + insert into takes values('68516', '591', '1', 'Spring', 2005, 'A+'); + insert into takes values('1110', '599', '1', 'Spring', 2003, 'C+'); + insert into takes values('29192', '559', '1', 'Fall', 2002, 'B+'); + insert into takes values('63645', '338', '2', 'Spring', 2006, 'C '); + insert into takes values('99226', '949', '1', 'Fall', 2007, 'B '); + insert into takes values('46337', '237', '2', 'Fall', 2009, 'A+'); + insert into takes values('73492', '864', '1', 'Spring', 2006, 'C '); + insert into takes values('26473', '747', '1', 'Spring', 2004, 'B-'); + insert into takes values('94569', '875', '1', 'Spring', 2005, 'A '); + insert into takes values('27094', '158', '1', 'Fall', 2008, 'C+'); + insert into takes values('61920', '137', '1', 'Spring', 2002, 'A-'); + insert into takes values('49813', '581', '1', 'Spring', 2005, 'B-'); + insert into takes values('39204', '169', '1', 'Spring', 2007, 'B-'); + insert into takes values('8343', '137', '1', 'Spring', 2002, 'A-'); + insert into takes values('34422', '626', '1', 'Fall', 2006, 'B-'); + insert into takes values('53089', '793', '1', 'Spring', 2002, 'C '); + insert into takes values('32119', '158', '1', 'Fall', 2008, 'B+'); + insert into takes values('5017', '867', '1', 'Fall', 2006, 'A-'); + insert into takes values('95260', '415', '1', 'Fall', 2010, 'C-'); + insert into takes values('29849', '192', '1', 'Fall', 2002, 'B-'); + insert into takes values('94726', '158', '2', 'Spring', 2008, 'A+'); + insert into takes values('49873', '421', '1', 'Fall', 2004, 'B+'); + insert into takes values('54153', '852', '1', 'Spring', 2008, 'A+'); + insert into takes values('26802', '604', '1', 'Spring', 2009, 'B '); + insert into takes values('30334', '960', '1', 'Fall', 2009, 'B+'); + insert into takes values('35935', '482', '1', 'Fall', 2005, 'A-'); + insert into takes values('74672', '679', '1', 'Spring', 2010, 'C+'); + insert into takes values('11194', '591', '1', 'Spring', 2005, 'B+'); + insert into takes values('30252', '158', '2', 'Spring', 2008, 'C+'); + insert into takes values('544', '415', '1', 'Fall', 2010, 'B-'); + insert into takes values('70688', '192', '1', 'Fall', 2002, 'B-'); + insert into takes values('39978', '959', '1', 'Fall', 2006, 'A+'); + insert into takes values('96911', '169', '1', 'Spring', 2007, 'A '); + insert into takes values('20803', '200', '2', 'Fall', 2002, 'C '); + insert into takes values('82066', '274', '1', 'Fall', 2002, 'C-'); + insert into takes values('52157', '959', '1', 'Fall', 2006, 'B-'); + insert into takes values('52669', '445', '1', 'Spring', 2001, 'A+'); + insert into takes values('99250', '304', '1', 'Fall', 2009, 'B-'); + insert into takes values('87044', '158', '1', 'Fall', 2008, 'C+'); + insert into takes values('73206', '200', '2', 'Fall', 2002, 'A+'); + insert into takes values('9408', '612', '1', 'Fall', 2007, 'C+'); + insert into takes values('74464', '962', '1', 'Spring', 2008, 'C+'); + insert into takes values('62549', '735', '1', 'Spring', 2003, 'C-'); + insert into takes values('98870', '274', '1', 'Fall', 2002, 'A-'); + insert into takes values('77130', '105', '1', 'Fall', 2009, 'C '); + insert into takes values('53451', '626', '1', 'Fall', 2006, 'B '); + insert into takes values('60984', '599', '1', 'Spring', 2003, 'A-'); + insert into takes values('95850', '696', '1', 'Spring', 2002, 'A '); + insert into takes values('26028', '362', '3', 'Spring', 2008, 'C+'); + insert into takes values('10904', '401', '1', 'Fall', 2003, 'B+'); + insert into takes values('62373', '489', '1', 'Fall', 2007, 'A-'); + insert into takes values('27528', '631', '1', 'Spring', 2007, 'A+'); + insert into takes values('37430', '974', '1', 'Fall', 2003, 'A+'); + insert into takes values('53469', '105', '2', 'Fall', 2002, 'B+'); + insert into takes values('64297', '867', '1', 'Fall', 2006, 'C-'); + insert into takes values('27430', '376', '1', 'Fall', 2006, 'C+'); + insert into takes values('78332', '793', '1', 'Spring', 2002, 'A+'); + insert into takes values('64938', '237', '2', 'Fall', 2009, 'A-'); + insert into takes values('37521', '158', '2', 'Spring', 2008, 'A+'); + insert into takes values('23475', '270', '1', 'Spring', 2010, 'A '); + insert into takes values('64222', '313', '1', 'Fall', 2010, 'B '); + insert into takes values('4355', '400', '1', 'Spring', 2007, 'B '); + insert into takes values('66008', '704', '1', 'Spring', 2008, 'C '); + insert into takes values('1968', '362', '1', 'Fall', 2005, 'A+'); + insert into takes values('75273', '867', '2', 'Fall', 2010, 'C+'); + insert into takes values('3639', '867', '1', 'Fall', 2006, 'A '); + insert into takes values('37454', '893', '1', 'Fall', 2007, 'C+'); + insert into takes values('94697', '735', '1', 'Spring', 2003, 'A '); + insert into takes values('61232', '270', '1', 'Spring', 2010, 'C-'); + insert into takes values('7490', '702', '1', 'Spring', 2001, 'C '); + insert into takes values('76953', '959', '1', 'Fall', 2006, 'A '); + insert into takes values('17086', '735', '2', 'Spring', 2010, 'A+'); + insert into takes values('62487', '443', '2', 'Spring', 2002, 'A+'); + insert into takes values('16480', '362', '2', 'Fall', 2006, 'C '); + insert into takes values('46260', '304', '1', 'Fall', 2009, 'B-'); + insert into takes values('65258', '426', '1', 'Spring', 2006, 'B+'); + insert into takes values('54508', '694', '1', 'Fall', 2002, 'B+'); + insert into takes values('73394', '808', '1', 'Fall', 2003, 'C-'); + insert into takes values('48165', '702', '1', 'Spring', 2001, 'C-'); + insert into takes values('89188', '319', '1', 'Spring', 2003, 'A-'); + insert into takes values('66763', '426', '1', 'Spring', 2006, 'C '); + insert into takes values('57213', '694', '1', 'Fall', 2002, 'A+'); + insert into takes values('31442', '457', '1', 'Spring', 2001, 'C '); + insert into takes values('11966', '242', '1', 'Fall', 2009, 'B '); + insert into takes values('66279', '338', '2', 'Spring', 2006, 'A+'); + insert into takes values('72528', '843', '1', 'Fall', 2010, 'A-'); + insert into takes values('11083', '400', '2', 'Fall', 2003, 'A-'); + insert into takes values('98870', '445', '1', 'Spring', 2001, 'C+'); + insert into takes values('53805', '867', '1', 'Fall', 2006, 'C '); + insert into takes values('44584', '559', '1', 'Fall', 2002, 'A '); + insert into takes values('1080', '591', '1', 'Spring', 2005, 'A-'); + insert into takes values('6729', '545', '1', 'Fall', 2001, 'C-'); + insert into takes values('41894', '400', '2', 'Fall', 2003, 'C+'); + insert into takes values('75928', '137', '1', 'Spring', 2002, 'B '); + insert into takes values('20814', '415', '1', 'Fall', 2010, 'A+'); + insert into takes values('68720', '445', '1', 'Spring', 2001, 'B '); + insert into takes values('86375', '960', '2', 'Fall', 2006, 'B+'); + insert into takes values('7861', '461', '1', 'Fall', 2002, 'A-'); + insert into takes values('27687', '313', '1', 'Fall', 2010, 'A-'); + insert into takes values('76895', '334', '1', 'Fall', 2009, 'A '); + insert into takes values('82970', '105', '2', 'Fall', 2002, 'B '); + insert into takes values('85746', '927', '1', 'Fall', 2002, 'C '); + insert into takes values('22396', '200', '1', 'Spring', 2007, 'A-'); + insert into takes values('4438', '362', '1', 'Fall', 2005, 'B '); + insert into takes values('31364', '237', '2', 'Fall', 2009, 'C-'); + insert into takes values('17192', '468', '2', 'Fall', 2007, 'A '); + insert into takes values('67340', '962', '1', 'Spring', 2008, 'A '); + insert into takes values('95175', '867', '2', 'Fall', 2010, 'C+'); + insert into takes values('99977', '493', '1', 'Spring', 2010, 'A+'); + insert into takes values('21086', '158', '1', 'Fall', 2008, 'B '); + insert into takes values('49611', '960', '2', 'Fall', 2006, 'B+'); + insert into takes values('56882', '242', '1', 'Fall', 2009, 'B-'); + insert into takes values('86641', '631', '1', 'Spring', 2007, 'A-'); + insert into takes values('19582', '561', '1', 'Fall', 2006, 'A '); + insert into takes values('29192', '376', '1', 'Fall', 2006, 'A-'); + insert into takes values('85234', '867', '2', 'Fall', 2010, 'B+'); + insert into takes values('53047', '158', '1', 'Fall', 2008, 'A-'); + insert into takes values('13211', '362', '2', 'Fall', 2006, 'C+'); + insert into takes values('33837', '349', '1', 'Spring', 2008, 'A+'); + insert into takes values('83214', '345', '1', 'Spring', 2008, 'C '); + insert into takes values('83557', '604', '1', 'Spring', 2009, 'A+'); + insert into takes values('99226', '629', '1', 'Spring', 2003, 'B '); + insert into takes values('65299', '200', '1', 'Spring', 2007, 'C+'); + insert into takes values('60762', '760', '1', 'Spring', 2004, 'A+'); + insert into takes values('92464', '319', '1', 'Spring', 2003, 'B '); + insert into takes values('66753', '192', '1', 'Fall', 2002, 'C '); + insert into takes values('23506', '158', '2', 'Spring', 2008, 'A+'); + insert into takes values('64013', '237', '1', 'Spring', 2008, 'A '); + insert into takes values('75395', '991', '1', 'Spring', 2008, 'B+'); + insert into takes values('63502', '362', '2', 'Fall', 2006, 'A+'); + insert into takes values('59117', '401', '1', 'Fall', 2003, 'B-'); + insert into takes values('56299', '476', '1', 'Fall', 2010, 'A+'); + insert into takes values('94142', '408', '2', 'Spring', 2003, 'B+'); + insert into takes values('2848', '927', '1', 'Fall', 2002, 'A '); + insert into takes values('63288', '468', '1', 'Fall', 2005, 'B '); + insert into takes values('65563', '893', '1', 'Fall', 2007, 'A+'); + insert into takes values('21008', '376', '1', 'Fall', 2006, 'C-'); + insert into takes values('91063', '482', '1', 'Fall', 2005, 'B '); + insert into takes values('81396', '237', '1', 'Spring', 2008, 'C-'); + insert into takes values('82707', '468', '2', 'Fall', 2007, 'A-'); + insert into takes values('5393', '362', '1', 'Fall', 2005, 'A '); + insert into takes values('38696', '408', '1', 'Spring', 2007, 'A+'); + insert into takes values('43981', '426', '1', 'Spring', 2006, 'A+'); + insert into takes values('96003', '169', '1', 'Spring', 2007, 'B+'); + insert into takes values('52872', '843', '1', 'Fall', 2010, 'B+'); + insert into takes values('5703', '696', '1', 'Spring', 2002, 'B '); + insert into takes values('53485', '629', '1', 'Spring', 2003, 'C '); + insert into takes values('42843', '258', '1', 'Fall', 2007, 'C '); + insert into takes values('22396', '486', '1', 'Fall', 2009, 'A-'); + insert into takes values('6895', '304', '1', 'Fall', 2009, 'B-'); + insert into takes values('98359', '581', '1', 'Spring', 2005, 'A+'); + insert into takes values('44836', '158', '1', 'Fall', 2008, 'B '); + insert into takes values('23449', '559', '1', 'Fall', 2002, 'B '); + insert into takes values('68070', '581', '1', 'Spring', 2005, 'B '); + insert into takes values('54610', '808', '1', 'Fall', 2003, 'A+'); + insert into takes values('24784', '105', '2', 'Fall', 2002, 'C+'); + insert into takes values('4508', '679', '1', 'Spring', 2010, 'C '); + insert into takes values('96324', '795', '1', 'Spring', 2004, 'A '); + insert into takes values('63090', '642', '1', 'Fall', 2004, 'C+'); + insert into takes values('99271', '927', '1', 'Fall', 2002, 'A-'); + insert into takes values('81876', '561', '1', 'Fall', 2006, 'B+'); + insert into takes values('24442', '334', '1', 'Fall', 2009, 'A '); + insert into takes values('54605', '571', '1', 'Spring', 2004, 'B+'); + insert into takes values('18941', '415', '1', 'Fall', 2010, 'B-'); + insert into takes values('32483', '401', '1', 'Fall', 2003, 'B '); + insert into takes values('48009', '362', '2', 'Fall', 2006, 'B-'); + insert into takes values('11202', '612', '1', 'Fall', 2007, 'A-'); + insert into takes values('88993', '366', '1', 'Fall', 2005, 'B+'); + insert into takes values('16480', '486', '1', 'Fall', 2009, 'A '); + insert into takes values('75772', '626', '1', 'Fall', 2006, 'B '); + insert into takes values('5393', '802', '1', 'Spring', 2003, 'B '); + insert into takes values('17996', '612', '1', 'Fall', 2007, 'B-'); + insert into takes values('22467', '137', '1', 'Spring', 2002, 'A+'); + insert into takes values('32419', '962', '1', 'Spring', 2008, 'A-'); + insert into takes values('81258', '493', '1', 'Spring', 2010, 'C+'); + insert into takes values('85211', '362', '1', 'Fall', 2005, 'B-'); + insert into takes values('19450', '169', '1', 'Spring', 2007, 'C '); + insert into takes values('71426', '527', '1', 'Fall', 2004, 'C-'); + insert into takes values('40059', '696', '1', 'Spring', 2002, 'A '); + insert into takes values('11101', '867', '2', 'Fall', 2010, 'C+'); + insert into takes values('28994', '239', '1', 'Fall', 2006, 'A '); + insert into takes values('83871', '401', '1', 'Fall', 2003, 'B '); + insert into takes values('2501', '338', '1', 'Spring', 2007, 'A+'); + insert into takes values('74473', '974', '1', 'Fall', 2003, 'A-'); + insert into takes values('94998', '527', '1', 'Fall', 2004, 'A '); + insert into takes values('1087', '747', '1', 'Spring', 2004, 'A-'); + insert into takes values('25718', '927', '1', 'Fall', 2002, 'A '); + insert into takes values('61402', '445', '1', 'Spring', 2001, 'A-'); + insert into takes values('9360', '362', '3', 'Spring', 2008, 'C+'); + insert into takes values('6195', '843', '1', 'Fall', 2010, 'B-'); + insert into takes values('29849', '443', '1', 'Spring', 2010, 'A '); + insert into takes values('25525', '629', '1', 'Spring', 2003, 'A-'); + insert into takes values('36265', '496', '1', 'Fall', 2001, 'C-'); + insert into takes values('35138', '629', '1', 'Spring', 2003, 'C+'); + insert into takes values('99719', '875', '1', 'Spring', 2005, 'B-'); + insert into takes values('68712', '362', '3', 'Spring', 2008, 'A-'); + insert into takes values('99949', '401', '1', 'Fall', 2003, 'B+'); + insert into takes values('84654', '489', '1', 'Fall', 2007, 'C+'); + insert into takes values('83686', '461', '1', 'Fall', 2002, 'B+'); + insert into takes values('53547', '200', '1', 'Spring', 2007, 'B-'); + insert into takes values('842', '663', '1', 'Spring', 2005, 'A-'); + insert into takes values('34542', '242', '1', 'Fall', 2009, 'C+'); + insert into takes values('48165', '626', '1', 'Fall', 2006, 'A '); + insert into takes values('42019', '864', '1', 'Spring', 2006, 'C+'); + insert into takes values('97629', '362', '2', 'Fall', 2006, 'B '); + insert into takes values('51768', '200', '2', 'Fall', 2002, 'A+'); + insert into takes values('34770', '105', '1', 'Fall', 2009, 'C+'); + insert into takes values('47487', '581', '1', 'Spring', 2005, 'C '); + insert into takes values('11419', '486', '1', 'Fall', 2009, 'C+'); + insert into takes values('32506', '352', '1', 'Spring', 2006, 'A-'); + insert into takes values('90194', '604', '1', 'Spring', 2009, 'A-'); + insert into takes values('80420', '496', '1', 'Fall', 2001, 'A+'); + insert into takes values('11441', '696', '1', 'Spring', 2002, 'A '); + insert into takes values('79170', '237', '2', 'Fall', 2009, 'B+'); + insert into takes values('39927', '489', '1', 'Fall', 2007, 'A+'); + insert into takes values('39704', '158', '1', 'Fall', 2008, 'B+'); + insert into takes values('87785', '949', '1', 'Fall', 2007, 'C+'); + insert into takes values('11441', '571', '1', 'Spring', 2004, 'B+'); + insert into takes values('42843', '927', '1', 'Fall', 2002, 'B '); + insert into takes values('50039', '960', '1', 'Fall', 2009, 'C+'); + insert into takes values('79446', '527', '1', 'Fall', 2004, 'C+'); + insert into takes values('898', '991', '1', 'Spring', 2008, 'A-'); + insert into takes values('81258', '631', '1', 'Spring', 2007, 'B '); + insert into takes values('40677', '137', '1', 'Spring', 2002, 'C+'); + insert into takes values('90567', '401', '1', 'Fall', 2003, 'B '); + insert into takes values('42960', '795', '1', 'Spring', 2004, 'B-'); + insert into takes values('78116', '663', '1', 'Spring', 2005, 'C '); + insert into takes values('11152', '443', '2', 'Spring', 2002, 'C '); + insert into takes values('81031', '319', '1', 'Spring', 2003, 'C-'); + insert into takes values('88801', '864', '1', 'Spring', 2006, 'B '); + insert into takes values('2501', '158', '2', 'Spring', 2008, 'C+'); + insert into takes values('84727', '443', '1', 'Spring', 2010, 'C-'); + insert into takes values('86707', '445', '1', 'Spring', 2001, 'A-'); + insert into takes values('44258', '704', '1', 'Spring', 2008, 'B+'); + insert into takes values('18469', '927', '1', 'Fall', 2002, 'B-'); + insert into takes values('12069', '376', '1', 'Fall', 2006, 'C+'); + insert into takes values('15457', '793', '1', 'Spring', 2002, 'B '); + insert into takes values('19917', '137', '1', 'Spring', 2002, 'A '); + insert into takes values('85754', '747', '1', 'Spring', 2004, 'C+'); + insert into takes values('81396', '345', '1', 'Spring', 2008, 'B-'); + insert into takes values('86661', '362', '2', 'Fall', 2006, 'B+'); + insert into takes values('45826', '496', '1', 'Fall', 2001, 'A+'); + insert into takes values('16133', '696', '1', 'Spring', 2002, 'C '); + insert into takes values('52494', '679', '1', 'Spring', 2010, 'B+'); + insert into takes values('28994', '338', '1', 'Spring', 2007, 'C+'); + insert into takes values('22325', '696', '1', 'Spring', 2002, 'C '); + insert into takes values('52741', '304', '1', 'Fall', 2009, 'C-'); + insert into takes values('89571', '527', '1', 'Fall', 2004, 'B '); + insert into takes values('19862', '704', '1', 'Spring', 2008, 'B+'); + insert into takes values('41832', '192', '1', 'Fall', 2002, 'B '); + insert into takes values('80976', '400', '1', 'Spring', 2007, 'A-'); + insert into takes values('5208', '760', '1', 'Spring', 2004, 'B-'); + insert into takes values('16631', '192', '1', 'Fall', 2002, 'A '); + insert into takes values('66259', '457', '1', 'Spring', 2001, 'A '); + insert into takes values('36379', '258', '1', 'Fall', 2007, 'C '); + insert into takes values('52471', '802', '1', 'Spring', 2003, 'C-'); + insert into takes values('17207', '545', '1', 'Fall', 2001, 'C+'); + insert into takes values('83462', '461', '1', 'Fall', 2002, 'B+'); + insert into takes values('35042', '445', '1', 'Spring', 2001, 'B '); + insert into takes values('7854', '137', '1', 'Spring', 2002, 'B-'); + insert into takes values('50944', '893', '1', 'Fall', 2007, 'A '); + insert into takes values('92040', '962', '1', 'Spring', 2008, 'A-'); + insert into takes values('39925', '274', '1', 'Fall', 2002, 'C-'); + insert into takes values('9605', '893', '1', 'Fall', 2007, 'C '); + insert into takes values('28361', '747', '1', 'Spring', 2004, 'C-'); + insert into takes values('53165', '468', '2', 'Fall', 2007, 'A-'); + insert into takes values('76743', '468', '1', 'Fall', 2005, 'C+'); + insert into takes values('18808', '415', '1', 'Fall', 2010, 'B+'); + insert into takes values('25362', '376', '1', 'Fall', 2006, 'A '); + insert into takes values('978', '274', '1', 'Fall', 2002, 'A '); + insert into takes values('78454', '445', '1', 'Spring', 2001, 'A '); + insert into takes values('39046', '793', '1', 'Spring', 2002, 'B '); + insert into takes values('22003', '239', '1', 'Fall', 2006, 'C+'); + insert into takes values('24746', '802', '1', 'Spring', 2003, 'A+'); + insert into takes values('43912', '704', '1', 'Spring', 2008, 'C+'); + insert into takes values('81785', '169', '1', 'Spring', 2007, 'C-'); + insert into takes values('24809', '802', '1', 'Spring', 2003, 'C-'); + insert into takes values('69758', '192', '1', 'Fall', 2002, 'A '); + insert into takes values('25256', '158', '1', 'Fall', 2008, 'B+'); + insert into takes values('86075', '400', '2', 'Fall', 2003, 'A-'); + insert into takes values('24932', '443', '1', 'Spring', 2010, 'C+'); + insert into takes values('31035', '258', '1', 'Fall', 2007, 'B '); + insert into takes values('70924', '612', '1', 'Fall', 2007, 'A+'); + insert into takes values('4438', '362', '2', 'Fall', 2006, 'B-'); + insert into takes values('39472', '192', '1', 'Fall', 2002, 'B+'); + insert into takes values('17192', '791', '1', 'Spring', 2006, 'C '); + insert into takes values('76173', '349', '1', 'Spring', 2008, 'A+'); + insert into takes values('22620', '237', '1', 'Spring', 2008, 'B '); + insert into takes values('62832', '258', '1', 'Fall', 2007, 'B-'); + insert into takes values('64013', '468', '1', 'Fall', 2005, 'B-'); + insert into takes values('18941', '400', '1', 'Spring', 2007, 'B '); + insert into takes values('58465', '696', '1', 'Spring', 2002, 'B-'); + insert into takes values('82039', '258', '1', 'Fall', 2007, 'B '); + insert into takes values('34386', '581', '1', 'Spring', 2005, 'B+'); + insert into takes values('89734', '362', '3', 'Spring', 2008, 'B-'); + insert into takes values('76743', '893', '1', 'Fall', 2007, 'A+'); + insert into takes values('81883', '864', '1', 'Spring', 2006, 'C-'); + insert into takes values('46970', '313', '1', 'Fall', 2010, 'A-'); + insert into takes values('41832', '599', '1', 'Spring', 2003, 'C+'); + insert into takes values('88801', '349', '1', 'Spring', 2008, 'A '); + insert into takes values('75116', '795', '1', 'Spring', 2004, 'B '); + insert into takes values('95029', '793', '1', 'Spring', 2002, 'B '); + insert into takes values('63310', '864', '1', 'Spring', 2006, 'C-'); + insert into takes values('32368', '591', '1', 'Spring', 2005, 'B '); + insert into takes values('41671', '426', '1', 'Spring', 2006, 'B '); + insert into takes values('44703', '561', '1', 'Fall', 2006, 'A+'); + insert into takes values('51416', '239', '1', 'Fall', 2006, 'C '); + insert into takes values('41938', '408', '1', 'Spring', 2007, 'A-'); + insert into takes values('47001', '591', '1', 'Spring', 2005, 'B+'); + insert into takes values('74672', '468', '1', 'Fall', 2005, 'C-'); + insert into takes values('37430', '867', '2', 'Fall', 2010, 'A '); + insert into takes values('88389', '959', '1', 'Fall', 2006, 'C '); + insert into takes values('83691', '237', '2', 'Fall', 2009, 'B+'); + insert into takes values('37581', '426', '1', 'Spring', 2006, 'C+'); + insert into takes values('80248', '735', '2', 'Spring', 2010, 'B+'); + insert into takes values('46074', '972', '1', 'Spring', 2009, 'C+'); + insert into takes values('30341', '960', '2', 'Fall', 2006, 'B+'); + insert into takes values('88884', '304', '1', 'Fall', 2009, 'A-'); + insert into takes values('65241', '843', '1', 'Fall', 2010, 'B '); + insert into takes values('77130', '105', '2', 'Fall', 2002, 'B '); + insert into takes values('4508', '927', '1', 'Fall', 2002, 'A+'); + insert into takes values('62716', '626', '1', 'Fall', 2006, 'A-'); + insert into takes values('69241', '962', '1', 'Spring', 2008, 'C '); + insert into takes values('51093', '468', '2', 'Fall', 2007, 'A '); + insert into takes values('31993', '400', '2', 'Fall', 2003, 'B '); + insert into takes values('18583', '457', '1', 'Spring', 2001, 'A+'); + insert into takes values('82918', '663', '1', 'Spring', 2005, 'A+'); + insert into takes values('8192', '169', '2', 'Fall', 2002, 'B-'); + insert into takes values('52856', '105', '1', 'Fall', 2009, 'C-'); + insert into takes values('93653', '400', '1', 'Spring', 2007, 'A-'); + insert into takes values('13365', '362', '2', 'Fall', 2006, 'B '); + insert into takes values('33338', '959', '1', 'Fall', 2006, 'B+'); + insert into takes values('74016', '991', '1', 'Spring', 2008, 'A-'); + insert into takes values('84727', '349', '1', 'Spring', 2008, 'A+'); + insert into takes values('72768', '795', '1', 'Spring', 2004, 'B-'); + insert into takes values('51678', '663', '1', 'Spring', 2005, 'A '); + insert into takes values('77172', '927', '1', 'Fall', 2002, 'A+'); + insert into takes values('32376', '401', '1', 'Fall', 2003, 'B '); + insert into takes values('95099', '864', '1', 'Spring', 2006, 'C-'); + insert into takes values('46260', '486', '1', 'Fall', 2009, 'A '); + insert into takes values('88287', '345', '1', 'Spring', 2008, 'B+'); + insert into takes values('88308', '974', '1', 'Fall', 2003, 'C-'); + insert into takes values('68330', '319', '1', 'Spring', 2003, 'B '); + insert into takes values('82697', '489', '1', 'Fall', 2007, 'A+'); + insert into takes values('24387', '270', '1', 'Spring', 2010, 'B '); + insert into takes values('92659', '747', '1', 'Spring', 2004, 'B+'); + insert into takes values('73186', '591', '1', 'Spring', 2005, 'C '); + insert into takes values('47677', '445', '1', 'Spring', 2001, 'A-'); + insert into takes values('25780', '362', '1', 'Fall', 2005, 'C '); + insert into takes values('91992', '400', '1', 'Spring', 2007, 'C+'); + insert into takes values('75522', '468', '2', 'Fall', 2007, 'A '); + insert into takes values('7287', '445', '1', 'Spring', 2001, 'A+'); + insert into takes values('25380', '304', '1', 'Fall', 2009, 'B+'); + insert into takes values('96153', '468', '2', 'Fall', 2007, 'B+'); + insert into takes values('68999', '559', '1', 'Fall', 2002, 'B+'); + insert into takes values('99694', '591', '1', 'Spring', 2005, 'C '); + insert into takes values('24442', '735', '1', 'Spring', 2003, 'A+'); + insert into takes values('17057', '169', '1', 'Spring', 2007, 'C-'); + insert into takes values('65443', '974', '1', 'Fall', 2003, 'B+'); + insert into takes values('87246', '679', '1', 'Spring', 2010, 'C '); + insert into takes values('13741', '694', '1', 'Fall', 2002, 'C '); + insert into takes values('95626', '974', '1', 'Fall', 2003, 'B+'); + insert into takes values('69521', '559', '1', 'Fall', 2002, 'A+'); + insert into takes values('57055', '972', '1', 'Spring', 2009, 'C '); + insert into takes values('26473', '443', '1', 'Spring', 2010, 'A+'); + insert into takes values('92776', '352', '1', 'Spring', 2006, 'A-'); + insert into takes values('92776', '696', '1', 'Spring', 2002, 'A+'); + insert into takes values('93039', '270', '1', 'Spring', 2010, 'C '); + insert into takes values('33651', '239', '1', 'Fall', 2006, 'A '); + insert into takes values('30161', '105', '1', 'Fall', 2009, 'A+'); + insert into takes values('50664', '867', '2', 'Fall', 2010, 'A+'); + insert into takes values('44584', '366', '1', 'Fall', 2005, 'B-'); + insert into takes values('61332', '748', '1', 'Fall', 2003, 'B-'); + insert into takes values('96203', '927', '1', 'Fall', 2002, 'A+'); + insert into takes values('20002', '679', '1', 'Spring', 2010, 'C+'); + insert into takes values('58701', '468', '2', 'Fall', 2007, 'A '); + insert into takes values('82066', '960', '1', 'Fall', 2009, 'C+'); + insert into takes values('88389', '843', '1', 'Fall', 2010, 'A+'); + insert into takes values('24374', '366', '1', 'Fall', 2005, 'A+'); + insert into takes values('8819', '338', '1', 'Spring', 2007, 'B-'); + insert into takes values('86075', '237', '2', 'Fall', 2009, 'C+'); + insert into takes values('92442', '313', '1', 'Fall', 2010, 'B '); + insert into takes values('89734', '852', '1', 'Spring', 2008, 'B-'); + insert into takes values('65753', '679', '1', 'Spring', 2010, 'B '); + insert into takes values('90220', '626', '1', 'Fall', 2006, 'A+'); + insert into takes values('56276', '169', '2', 'Fall', 2002, 'B+'); + insert into takes values('14563', '692', '1', 'Spring', 2010, 'B-'); + insert into takes values('68712', '591', '1', 'Spring', 2005, 'B '); + insert into takes values('58170', '443', '2', 'Spring', 2002, 'B-'); + insert into takes values('22325', '631', '1', 'Spring', 2007, 'C '); + insert into takes values('73542', '408', '2', 'Spring', 2003, 'A '); + insert into takes values('50414', '468', '2', 'Fall', 2007, 'C+'); + insert into takes values('87785', '366', '1', 'Fall', 2005, 'B+'); + insert into takes values('42843', '169', '2', 'Fall', 2002, 'B-'); + insert into takes values('80990', '852', '1', 'Spring', 2008, 'A+'); + insert into takes values('88417', '867', '1', 'Fall', 2006, 'B+'); + insert into takes values('23344', '362', '1', 'Fall', 2005, 'B '); + insert into takes values('34197', '603', '1', 'Fall', 2003, 'A '); + insert into takes values('38371', '867', '1', 'Fall', 2006, 'C+'); + insert into takes values('19450', '486', '1', 'Fall', 2009, 'B+'); + insert into takes values('20985', '400', '2', 'Fall', 2003, 'B-'); + insert into takes values('94998', '105', '1', 'Fall', 2009, 'C+'); + insert into takes values('7490', '345', '1', 'Spring', 2008, 'A '); + insert into takes values('35357', '362', '3', 'Spring', 2008, 'C-'); + insert into takes values('15430', '468', '2', 'Fall', 2007, 'A+'); + insert into takes values('99760', '313', '1', 'Fall', 2010, 'B '); + insert into takes values('89551', '192', '1', 'Fall', 2002, 'A-'); + insert into takes values('13506', '468', '2', 'Fall', 2007, 'C '); + insert into takes values('28994', '559', '1', 'Fall', 2002, 'A+'); + insert into takes values('54622', '338', '1', 'Spring', 2007, 'B '); + insert into takes values('36265', '581', '1', 'Spring', 2005, 'B-'); + insert into takes values('71389', '702', '1', 'Spring', 2001, 'B-'); + insert into takes values('20244', '959', '1', 'Fall', 2006, 'C '); + insert into takes values('38973', '843', '1', 'Fall', 2010, 'A-'); + insert into takes values('45680', '735', '1', 'Spring', 2003, 'A-'); + insert into takes values('74509', '105', '1', 'Fall', 2009, 'B-'); + insert into takes values('42298', '421', '1', 'Fall', 2004, 'B '); + insert into takes values('30772', '603', '1', 'Fall', 2003, 'A+'); + insert into takes values('17831', '486', '1', 'Fall', 2009, 'C '); + insert into takes values('27094', '400', '1', 'Spring', 2007, 'C+'); + insert into takes values('62728', '137', '1', 'Spring', 2002, 'A '); + insert into takes values('69730', '802', '1', 'Spring', 2003, 'C+'); + insert into takes values('65433', '237', '2', 'Fall', 2009, 'B+'); + insert into takes values('49611', '158', '2', 'Spring', 2008, 'B+'); + insert into takes values('82646', '960', '1', 'Fall', 2009, 'C-'); + insert into takes values('62487', '793', '1', 'Spring', 2002, 'A-'); + insert into takes values('90220', '200', '1', 'Spring', 2007, 'B+'); + insert into takes values('17924', '400', '2', 'Fall', 2003, 'C-'); + insert into takes values('50365', '960', '2', 'Fall', 2006, 'C+'); + insert into takes values('52134', '747', '1', 'Spring', 2004, 'A '); + insert into takes values('86404', '581', '1', 'Spring', 2005, 'A '); + insert into takes values('20489', '468', '2', 'Fall', 2007, 'A+'); + insert into takes values('16528', '468', '1', 'Fall', 2005, 'B-'); + insert into takes values('75878', '489', '1', 'Fall', 2007, 'C-'); + insert into takes values('81876', '338', '1', 'Spring', 2007, 'C '); + insert into takes values('88472', '642', '1', 'Fall', 2004, 'C '); + insert into takes values('99399', '258', '1', 'Fall', 2007, 'C-'); + insert into takes values('54620', '747', '1', 'Spring', 2004, 'C+'); + insert into takes values('72622', '362', '1', 'Fall', 2005, 'A '); + insert into takes values('73206', '949', '1', 'Fall', 2007, 'A-'); + insert into takes values('38013', '362', '3', 'Spring', 2008, 'B+'); + insert into takes values('99226', '489', '1', 'Fall', 2007, 'A '); + insert into takes values('23449', '362', '3', 'Spring', 2008, 'B '); + insert into takes values('56276', '974', '1', 'Fall', 2003, 'C+'); + insert into takes values('95284', '612', '1', 'Fall', 2007, 'B+'); + insert into takes values('463', '626', '1', 'Fall', 2006, 'B '); + insert into takes values('51093', '793', '1', 'Spring', 2002, 'B '); + insert into takes values('14182', '401', '1', 'Fall', 2003, 'C-'); + insert into takes values('16523', '559', '1', 'Fall', 2002, 'B '); + insert into takes values('16057', '408', '2', 'Spring', 2003, 'C '); + insert into takes values('90082', '445', '1', 'Spring', 2001, 'C '); + insert into takes values('59539', '867', '2', 'Fall', 2010, 'B '); + insert into takes values('19203', '200', '2', 'Fall', 2002, 'B-'); + insert into takes values('60984', '704', '1', 'Spring', 2008, 'C '); + insert into takes values('24197', '366', '1', 'Fall', 2005, 'C-'); + insert into takes values('56078', '795', '1', 'Spring', 2004, 'C '); + insert into takes values('12069', '401', '1', 'Fall', 2003, 'A+'); + insert into takes values('72622', '748', '1', 'Fall', 2003, 'B '); + insert into takes values('22268', '169', '2', 'Fall', 2002, 'C+'); + insert into takes values('69732', '527', '1', 'Fall', 2004, 'C+'); + insert into takes values('26802', '867', '1', 'Fall', 2006, 'A-'); + insert into takes values('55009', '445', '1', 'Spring', 2001, 'B-'); + insert into takes values('39881', '443', '2', 'Spring', 2002, 'A+'); + insert into takes values('24002', '258', '1', 'Fall', 2007, 'A+'); + insert into takes values('68779', '735', '2', 'Spring', 2010, 'A+'); + insert into takes values('78552', '642', '1', 'Fall', 2004, 'C-'); + insert into takes values('62549', '237', '1', 'Spring', 2008, 'B '); + insert into takes values('19766', '443', '2', 'Spring', 2002, 'A '); + insert into takes values('11455', '169', '2', 'Fall', 2002, 'C+'); + insert into takes values('38973', '421', '1', 'Fall', 2004, 'B '); + insert into takes values('65038', '843', '1', 'Fall', 2010, 'C '); + insert into takes values('57185', '663', '1', 'Spring', 2005, 'B+'); + insert into takes values('66281', '319', '1', 'Spring', 2003, 'A '); + insert into takes values('49611', '237', '1', 'Spring', 2008, 'C+'); + insert into takes values('43981', '527', '1', 'Fall', 2004, 'B '); + insert into takes values('65056', '802', '1', 'Spring', 2003, 'B '); + insert into takes values('21008', '482', '1', 'Fall', 2005, 'C-'); + insert into takes values('28518', '760', '1', 'Spring', 2004, 'C '); + insert into takes values('97101', '545', '1', 'Fall', 2001, 'B '); + insert into takes values('16405', '362', '3', 'Spring', 2008, 'A '); + insert into takes values('45002', '239', '1', 'Fall', 2006, 'C-'); + insert into takes values('26102', '457', '1', 'Spring', 2001, 'A-'); + insert into takes values('50331', '527', '1', 'Fall', 2004, 'C '); + insert into takes values('97355', '192', '1', 'Fall', 2002, 'B+'); + insert into takes values('97953', '852', '1', 'Spring', 2008, 'B '); + insert into takes values('13023', '237', '2', 'Fall', 2009, 'A '); + insert into takes values('30110', '105', '1', 'Fall', 2009, 'B-'); + insert into takes values('34569', '200', '1', 'Spring', 2007, 'B '); + insert into takes values('5393', '696', '1', 'Spring', 2002, 'B+'); + insert into takes values('27017', '137', '1', 'Spring', 2002, 'C '); + insert into takes values('76270', '192', '1', 'Fall', 2002, 'C '); + insert into takes values('23525', '349', '1', 'Spring', 2008, 'A-'); + insert into takes values('33645', '612', '1', 'Fall', 2007, 'B+'); + insert into takes values('57026', '443', '1', 'Spring', 2010, 'B '); + insert into takes values('98843', '468', '2', 'Fall', 2007, 'C-'); + insert into takes values('48660', '400', '2', 'Fall', 2003, 'A-'); + insert into takes values('73602', '852', '1', 'Spring', 2008, 'B '); + insert into takes values('52385', '476', '1', 'Fall', 2010, 'B+'); + insert into takes values('31080', '527', '1', 'Fall', 2004, 'A '); + insert into takes values('10834', '334', '1', 'Fall', 2009, 'A '); + insert into takes values('79697', '421', '1', 'Fall', 2004, 'C-'); + insert into takes values('91370', '239', '1', 'Fall', 2006, 'C '); + insert into takes values('92659', '612', '1', 'Fall', 2007, 'C+'); + insert into takes values('69850', '408', '1', 'Spring', 2007, 'C+'); + insert into takes values('11419', '366', '1', 'Fall', 2005, 'B+'); + insert into takes values('54296', '304', '1', 'Fall', 2009, 'A+'); + insert into takes values('41091', '864', '1', 'Spring', 2006, 'B-'); + insert into takes values('57083', '694', '1', 'Fall', 2002, 'C '); + insert into takes values('83511', '603', '1', 'Fall', 2003, 'C '); + insert into takes values('37818', '376', '1', 'Fall', 2006, 'A-'); + insert into takes values('11202', '200', '2', 'Fall', 2002, 'A '); + insert into takes values('56080', '362', '2', 'Fall', 2006, 'C+'); + insert into takes values('25468', '631', '1', 'Spring', 2007, 'A '); + insert into takes values('30124', '663', '1', 'Spring', 2005, 'A '); + insert into takes values('80285', '561', '1', 'Fall', 2006, 'B-'); + insert into takes values('73394', '362', '1', 'Fall', 2005, 'C-'); + insert into takes values('10033', '352', '1', 'Spring', 2006, 'A '); + insert into takes values('29803', '591', '1', 'Spring', 2005, 'A-'); + insert into takes values('90567', '496', '1', 'Fall', 2001, 'C+'); + insert into takes values('65144', '629', '1', 'Spring', 2003, 'C-'); + insert into takes values('27898', '545', '1', 'Fall', 2001, 'B-'); + insert into takes values('19050', '991', '1', 'Spring', 2008, 'A '); + insert into takes values('72521', '376', '1', 'Fall', 2006, 'A+'); + insert into takes values('29959', '408', '1', 'Spring', 2007, 'B-'); + insert into takes values('22198', '362', '3', 'Spring', 2008, 'A+'); + insert into takes values('83214', '875', '1', 'Spring', 2005, 'C-'); + insert into takes values('85614', '400', '1', 'Spring', 2007, 'B-'); + insert into takes values('76953', '694', '1', 'Fall', 2002, 'A-'); + insert into takes values('56139', '875', '1', 'Spring', 2005, 'A+'); + insert into takes values('41599', '702', '1', 'Spring', 2001, 'A '); + insert into takes values('48469', '401', '1', 'Fall', 2003, 'A '); + insert into takes values('22057', '476', '1', 'Fall', 2010, 'A '); + insert into takes values('38973', '852', '1', 'Spring', 2008, 'A '); + insert into takes values('1827', '334', '1', 'Fall', 2009, 'B+'); + insert into takes values('76173', '468', '2', 'Fall', 2007, 'B+'); + insert into takes values('46074', '486', '1', 'Fall', 2009, 'B '); + insert into takes values('25942', '258', '1', 'Fall', 2007, 'A '); + insert into takes values('23344', '274', '1', 'Fall', 2002, 'A-'); + insert into takes values('24784', '493', '1', 'Spring', 2010, 'A+'); + insert into takes values('73492', '795', '1', 'Spring', 2004, 'A '); + insert into takes values('57185', '960', '2', 'Fall', 2006, 'A+'); + insert into takes values('10917', '972', '1', 'Spring', 2009, 'C-'); + insert into takes values('29435', '843', '1', 'Fall', 2010, 'B+'); + insert into takes values('5298', '760', '1', 'Spring', 2004, 'C+'); + insert into takes values('43616', '468', '1', 'Fall', 2005, 'C '); + insert into takes values('4015', '991', '1', 'Spring', 2008, 'A '); + insert into takes values('2629', '747', '1', 'Spring', 2004, 'C '); + insert into takes values('90448', '400', '1', 'Spring', 2007, 'B+'); + insert into takes values('33791', '527', '1', 'Fall', 2004, 'B '); + insert into takes values('22396', '867', '2', 'Fall', 2010, 'C '); + insert into takes values('52876', '991', '1', 'Spring', 2008, 'B '); + insert into takes values('68453', '663', '1', 'Spring', 2005, 'B '); + insert into takes values('7514', '559', '1', 'Fall', 2002, 'A+'); + insert into takes values('73908', '408', '1', 'Spring', 2007, 'B '); + insert into takes values('51817', '443', '1', 'Spring', 2010, 'C+'); + insert into takes values('77548', '158', '2', 'Spring', 2008, 'B-'); + insert into takes values('41683', '242', '1', 'Fall', 2009, 'A-'); + insert into takes values('34018', '496', '1', 'Fall', 2001, 'A '); + insert into takes values('84189', '631', '1', 'Spring', 2007, 'A '); + insert into takes values('72521', '274', '1', 'Fall', 2002, 'C+'); + insert into takes values('92949', '476', '1', 'Fall', 2010, 'B+'); + insert into takes values('90234', '426', '1', 'Spring', 2006, 'A-'); + insert into takes values('10076', '629', '1', 'Spring', 2003, 'C '); + insert into takes values('34392', '591', '1', 'Spring', 2005, 'B+'); + insert into takes values('89196', '626', '1', 'Fall', 2006, 'C '); + insert into takes values('77580', '468', '2', 'Fall', 2007, 'A '); + insert into takes values('86806', '599', '1', 'Spring', 2003, 'C '); + insert into takes values('32490', '559', '1', 'Fall', 2002, 'C '); + insert into takes values('51817', '338', '1', 'Spring', 2007, 'B-'); + insert into takes values('19536', '461', '1', 'Fall', 2002, 'C+'); + insert into takes values('90448', '137', '1', 'Spring', 2002, 'B '); + insert into takes values('9993', '443', '2', 'Spring', 2002, 'C-'); + insert into takes values('87831', '304', '1', 'Fall', 2009, 'A '); + insert into takes values('90181', '603', '1', 'Fall', 2003, 'B '); + insert into takes values('59172', '663', '1', 'Spring', 2005, 'B '); + insert into takes values('25077', '612', '1', 'Fall', 2007, 'B+'); + insert into takes values('85809', '105', '1', 'Fall', 2009, 'B-'); + insert into takes values('71944', '972', '1', 'Spring', 2009, 'B-'); + insert into takes values('4015', '334', '1', 'Fall', 2009, 'A+'); + insert into takes values('25362', '760', '1', 'Spring', 2004, 'B-'); + insert into takes values('48009', '401', '1', 'Fall', 2003, 'C+'); + insert into takes values('44206', '242', '1', 'Fall', 2009, 'C+'); + insert into takes values('48778', '338', '1', 'Spring', 2007, 'A '); + insert into takes values('57135', '991', '1', 'Spring', 2008, 'C '); + insert into takes values('86806', '748', '1', 'Fall', 2003, 'A '); + insert into takes values('1232', '313', '1', 'Fall', 2010, 'B-'); + insert into takes values('94801', '496', '1', 'Fall', 2001, 'C-'); + insert into takes values('53799', '949', '1', 'Fall', 2007, 'A+'); + insert into takes values('52057', '603', '1', 'Fall', 2003, 'A '); + insert into takes values('18808', '486', '1', 'Fall', 2009, 'B-'); + insert into takes values('19791', '748', '1', 'Fall', 2003, 'B+'); + insert into takes values('336', '362', '1', 'Fall', 2005, 'A-'); + insert into takes values('15083', '696', '1', 'Spring', 2002, 'C '); + insert into takes values('54296', '362', '1', 'Fall', 2005, 'B+'); + insert into takes values('37449', '496', '1', 'Fall', 2001, 'A '); + insert into takes values('97228', '349', '1', 'Spring', 2008, 'B+'); + insert into takes values('35881', '704', '1', 'Spring', 2008, 'B+'); + insert into takes values('25528', '493', '1', 'Spring', 2010, 'B+'); + insert into takes values('16849', '169', '1', 'Spring', 2007, 'B+'); + insert into takes values('69752', '192', '1', 'Fall', 2002, 'B+'); + insert into takes values('78758', '692', '1', 'Spring', 2010, 'A+'); + insert into takes values('53165', '791', '1', 'Spring', 2006, 'B-'); + insert into takes values('1018', '482', '1', 'Fall', 2005, 'A+'); + insert into takes values('73411', '493', '1', 'Spring', 2010, 'A '); + insert into takes values('30161', '486', '1', 'Fall', 2009, 'B-'); + insert into takes values('9360', '345', '1', 'Spring', 2008, 'A '); + insert into takes values('18108', '735', '2', 'Spring', 2010, 'A+'); + insert into takes values('78454', '493', '1', 'Spring', 2010, 'C '); + insert into takes values('10727', '443', '1', 'Spring', 2010, 'B-'); + insert into takes values('18554', '105', '1', 'Fall', 2009, 'B+'); + insert into takes values('89312', '200', '2', 'Fall', 2002, 'B-'); + insert into takes values('90082', '760', '1', 'Spring', 2004, 'C-'); + insert into takes values('760', '400', '2', 'Fall', 2003, 'C+'); + insert into takes values('97042', '105', '2', 'Fall', 2002, 'A '); + insert into takes values('16528', '445', '1', 'Spring', 2001, 'C+'); + insert into takes values('24932', '735', '2', 'Spring', 2010, 'B+'); + insert into takes values('14829', '867', '2', 'Fall', 2010, 'A+'); + insert into takes values('89059', '591', '1', 'Spring', 2005, 'B+'); + insert into takes values('61065', '366', '1', 'Fall', 2005, 'A+'); + insert into takes values('48678', '400', '2', 'Fall', 2003, 'A '); + insert into takes values('91197', '864', '1', 'Spring', 2006, 'B '); + insert into takes values('77172', '663', '1', 'Spring', 2005, 'A+'); + insert into takes values('52656', '476', '1', 'Fall', 2010, 'C '); + insert into takes values('15328', '974', '1', 'Fall', 2003, 'C '); + insert into takes values('94311', '362', '3', 'Spring', 2008, 'C '); + insert into takes values('85887', '362', '2', 'Fall', 2006, 'A-'); + insert into takes values('15086', '927', '1', 'Fall', 2002, 'C-'); + insert into takes values('57190', '867', '2', 'Fall', 2010, 'A '); + insert into takes values('53490', '599', '1', 'Spring', 2003, 'B '); + insert into takes values('92385', '802', '1', 'Spring', 2003, 'C-'); + insert into takes values('79469', '105', '1', 'Fall', 2009, 'A-'); + insert into takes values('64593', '704', '1', 'Spring', 2008, 'C '); + insert into takes values('36265', '642', '1', 'Fall', 2004, 'C-'); + insert into takes values('78572', '237', '2', 'Fall', 2009, 'C+'); + insert into takes values('67033', '704', '1', 'Spring', 2008, 'B-'); + insert into takes values('42298', '748', '1', 'Fall', 2003, 'C-'); + insert into takes values('98726', '852', '1', 'Spring', 2008, 'B-'); + insert into takes values('94814', '591', '1', 'Spring', 2005, 'A-'); + insert into takes values('97355', '679', '1', 'Spring', 2010, 'A-'); + insert into takes values('49618', '408', '1', 'Spring', 2007, 'B '); + insert into takes values('35', '642', '1', 'Fall', 2004, 'C-'); + insert into takes values('32464', '927', '1', 'Fall', 2002, 'C '); + insert into takes values('91370', '496', '1', 'Fall', 2001, 'A+'); + insert into takes values('53728', '527', '1', 'Fall', 2004, 'A-'); + insert into takes values('53089', '960', '2', 'Fall', 2006, 'A '); + insert into takes values('1827', '270', '1', 'Spring', 2010, 'C-'); + insert into takes values('1922', '415', '1', 'Fall', 2010, 'A+'); + insert into takes values('86802', '338', '2', 'Spring', 2006, 'C-'); + insert into takes values('3143', '237', '2', 'Fall', 2009, 'B-'); + insert into takes values('72643', '561', '1', 'Fall', 2006, 'B '); + insert into takes values('17377', '959', '1', 'Fall', 2006, 'B '); + insert into takes values('978', '893', '1', 'Fall', 2007, 'B+'); + insert into takes values('45720', '604', '1', 'Spring', 2009, 'A '); + insert into takes values('11578', '192', '1', 'Fall', 2002, 'A+'); + insert into takes values('2177', '319', '1', 'Spring', 2003, 'B-'); + insert into takes values('30397', '626', '1', 'Fall', 2006, 'C+'); + insert into takes values('1884', '867', '2', 'Fall', 2010, 'B-'); + insert into takes values('85614', '612', '1', 'Fall', 2007, 'A-'); + insert into takes values('35220', '852', '1', 'Spring', 2008, 'A+'); + insert into takes values('64934', '457', '1', 'Spring', 2001, 'C '); + insert into takes values('84792', '959', '1', 'Fall', 2006, 'A+'); + insert into takes values('52120', '893', '1', 'Fall', 2007, 'B+'); + insert into takes values('46436', '239', '1', 'Fall', 2006, 'B '); + insert into takes values('72643', '242', '1', 'Fall', 2009, 'B-'); + insert into takes values('16075', '631', '1', 'Spring', 2007, 'A '); + insert into takes values('48660', '366', '1', 'Fall', 2005, 'A+'); + insert into takes values('85366', '960', '2', 'Fall', 2006, 'A '); + insert into takes values('69752', '704', '1', 'Spring', 2008, 'B '); + insert into takes values('32345', '867', '1', 'Fall', 2006, 'A+'); + insert into takes values('51678', '852', '1', 'Spring', 2008, 'C+'); + insert into takes values('56078', '663', '1', 'Spring', 2005, 'B '); + insert into takes values('33791', '603', '1', 'Fall', 2003, 'A-'); + insert into takes values('87831', '415', '1', 'Fall', 2010, 'C '); + insert into takes values('15538', '571', '1', 'Spring', 2004, 'B+'); + insert into takes values('15070', '960', '1', 'Fall', 2009, 'A-'); + insert into takes values('61444', '581', '1', 'Spring', 2005, 'C+'); + insert into takes values('47824', '694', '1', 'Fall', 2002, 'A-'); + insert into takes values('84432', '962', '1', 'Spring', 2008, 'C '); + insert into takes values('12563', '352', '1', 'Spring', 2006, 'A-'); + insert into takes values('17944', '802', '1', 'Spring', 2003, 'C+'); + insert into takes values('73206', '663', '1', 'Spring', 2005, 'A '); + insert into takes values('17397', '704', '1', 'Spring', 2008, 'B '); + insert into takes values('61414', '559', '1', 'Fall', 2002, 'C '); + insert into takes values('58935', '476', '1', 'Fall', 2010, 'C+'); + insert into takes values('71389', '949', '1', 'Fall', 2007, 'B+'); + insert into takes values('81638', '748', '1', 'Fall', 2003, 'A '); + insert into takes values('99711', '631', '1', 'Spring', 2007, 'C-'); + insert into takes values('79170', '875', '1', 'Spring', 2005, 'C+'); + insert into takes values('97042', '663', '1', 'Spring', 2005, 'B-'); + insert into takes values('80285', '991', '1', 'Spring', 2008, 'A-'); + insert into takes values('72979', '960', '2', 'Fall', 2006, 'B '); + insert into takes values('99348', '893', '1', 'Fall', 2007, 'A+'); + insert into takes values('46956', '362', '1', 'Fall', 2005, 'C+'); + insert into takes values('27952', '527', '1', 'Fall', 2004, 'A-'); + insert into takes values('73268', '692', '1', 'Spring', 2010, 'C '); + insert into takes values('69132', '603', '1', 'Fall', 2003, 'B-'); + insert into takes values('99271', '629', '1', 'Spring', 2003, 'C+'); + insert into takes values('70828', '974', '1', 'Fall', 2003, 'A+'); + insert into takes values('86001', '362', '2', 'Fall', 2006, 'C '); + insert into takes values('27430', '802', '1', 'Spring', 2003, 'A+'); + insert into takes values('83573', '843', '1', 'Fall', 2010, 'A-'); + insert into takes values('56299', '158', '1', 'Fall', 2008, 'A+'); + insert into takes values('8378', '362', '3', 'Spring', 2008, 'B-'); + insert into takes values('288', '791', '1', 'Spring', 2006, 'A '); + insert into takes values('80976', '461', '1', 'Fall', 2002, 'C+'); + insert into takes values('7602', '735', '1', 'Spring', 2003, 'C+'); + insert into takes values('57083', '313', '1', 'Fall', 2010, 'C+'); + insert into takes values('37284', '476', '1', 'Fall', 2010, 'B '); + insert into takes values('64121', '319', '1', 'Spring', 2003, 'B+'); + insert into takes values('44836', '242', '1', 'Fall', 2009, 'B '); + insert into takes values('81294', '366', '1', 'Fall', 2005, 'A-'); + insert into takes values('7973', '893', '1', 'Fall', 2007, 'B '); + insert into takes values('75596', '663', '1', 'Spring', 2005, 'A '); + insert into takes values('98315', '793', '1', 'Spring', 2002, 'B+'); + insert into takes values('53699', '352', '1', 'Spring', 2006, 'C-'); + insert into takes values('38288', '843', '1', 'Fall', 2010, 'A+'); + insert into takes values('35881', '468', '2', 'Fall', 2007, 'B+'); + insert into takes values('89312', '960', '2', 'Fall', 2006, 'C-'); + insert into takes values('82974', '927', '1', 'Fall', 2002, 'B+'); + insert into takes values('61920', '795', '1', 'Spring', 2004, 'A+'); + insert into takes values('51768', '559', '1', 'Fall', 2002, 'C-'); + insert into takes values('99422', '476', '1', 'Fall', 2010, 'A '); + insert into takes values('38676', '604', '1', 'Spring', 2009, 'B+'); + insert into takes values('85680', '704', '1', 'Spring', 2008, 'A '); + insert into takes values('42388', '642', '1', 'Fall', 2004, 'C+'); + insert into takes values('8483', '408', '1', 'Spring', 2007, 'B-'); + insert into takes values('39310', '599', '1', 'Spring', 2003, 'C-'); + insert into takes values('67793', '603', '1', 'Fall', 2003, 'A '); + insert into takes values('96911', '875', '1', 'Spring', 2005, 'B '); + insert into takes values('50414', '489', '1', 'Fall', 2007, 'B-'); + insert into takes values('49813', '962', '1', 'Spring', 2008, 'C '); + insert into takes values('34170', '599', '1', 'Spring', 2003, 'C-'); + insert into takes values('38288', '696', '1', 'Spring', 2002, 'C+'); + insert into takes values('56078', '313', '1', 'Fall', 2010, 'B+'); + insert into takes values('92703', '408', '2', 'Spring', 2003, 'A-'); + insert into takes values('48009', '581', '1', 'Spring', 2005, 'C+'); + insert into takes values('61444', '599', '1', 'Spring', 2003, 'A+'); + insert into takes values('89734', '200', '2', 'Fall', 2002, 'C-'); + insert into takes values('70918', '476', '1', 'Fall', 2010, 'A-'); + insert into takes values('25331', '401', '1', 'Fall', 2003, 'C+'); + insert into takes values('61920', '158', '1', 'Fall', 2008, 'C-'); + insert into takes values('48660', '875', '1', 'Spring', 2005, 'C '); + insert into takes values('6895', '559', '1', 'Fall', 2002, 'C '); + insert into takes values('41988', '631', '1', 'Spring', 2007, 'B '); + insert into takes values('14581', '702', '1', 'Spring', 2001, 'B-'); + insert into takes values('30341', '408', '2', 'Spring', 2003, 'B-'); + insert into takes values('36384', '735', '1', 'Spring', 2003, 'A+'); + insert into takes values('898', '867', '1', 'Fall', 2006, 'A-'); + insert into takes values('97400', '349', '1', 'Spring', 2008, 'C+'); + insert into takes values('43495', '258', '1', 'Fall', 2007, 'C '); + insert into takes values('19450', '468', '1', 'Fall', 2005, 'A-'); + insert into takes values('12971', '867', '1', 'Fall', 2006, 'A-'); + insert into takes values('24442', '612', '1', 'Fall', 2007, 'A+'); + insert into takes values('27366', '457', '1', 'Spring', 2001, 'A-'); + insert into takes values('62549', '808', '1', 'Fall', 2003, 'A-'); + insert into takes values('56058', '960', '2', 'Fall', 2006, 'A '); + insert into takes values('57026', '313', '1', 'Fall', 2010, 'A+'); + insert into takes values('14284', '242', '1', 'Fall', 2009, 'B-'); + insert into takes values('10834', '974', '1', 'Fall', 2003, 'B+'); + insert into takes values('83314', '795', '1', 'Spring', 2004, 'A '); + insert into takes values('33759', '808', '1', 'Fall', 2003, 'C '); + insert into takes values('85614', '642', '1', 'Fall', 2004, 'B '); + insert into takes values('24796', '747', '1', 'Spring', 2004, 'B '); + insert into takes values('40189', '663', '1', 'Spring', 2005, 'C+'); + insert into takes values('82063', '319', '1', 'Spring', 2003, 'A-'); + insert into takes values('79469', '105', '2', 'Fall', 2002, 'B-'); + insert into takes values('48053', '319', '1', 'Spring', 2003, 'A '); + insert into takes values('667', '338', '2', 'Spring', 2006, 'B-'); + insert into takes values('56882', '893', '1', 'Fall', 2007, 'B-'); + insert into takes values('12979', '169', '1', 'Spring', 2007, 'A+'); + insert into takes values('16405', '875', '1', 'Spring', 2005, 'A '); + insert into takes values('93631', '468', '2', 'Fall', 2007, 'B-'); + insert into takes values('84792', '457', '1', 'Spring', 2001, 'B '); + insert into takes values('89759', '169', '1', 'Spring', 2007, 'B-'); + insert into takes values('98843', '401', '1', 'Fall', 2003, 'B '); + insert into takes values('76759', '426', '1', 'Spring', 2006, 'C '); + insert into takes values('76895', '875', '1', 'Spring', 2005, 'B '); + insert into takes values('68396', '461', '1', 'Fall', 2002, 'A+'); + insert into takes values('13495', '875', '1', 'Spring', 2005, 'C-'); + insert into takes values('40932', '468', '2', 'Fall', 2007, 'B '); + insert into takes values('83170', '629', '1', 'Spring', 2003, 'B-'); + insert into takes values('93366', '319', '1', 'Spring', 2003, 'C-'); + insert into takes values('8378', '603', '1', 'Fall', 2003, 'B '); + insert into takes values('34197', '867', '2', 'Fall', 2010, 'A+'); + insert into takes values('79911', '237', '2', 'Fall', 2009, 'C-'); + insert into takes values('60867', '200', '2', 'Fall', 2002, 'B '); + insert into takes values('38691', '338', '2', 'Spring', 2006, 'A-'); + insert into takes values('34502', '426', '1', 'Spring', 2006, 'C+'); + insert into takes values('35462', '843', '1', 'Fall', 2010, 'C+'); + insert into takes values('40303', '747', '1', 'Spring', 2004, 'B '); + insert into takes values('87439', '137', '1', 'Spring', 2002, 'B-'); + insert into takes values('6474', '962', '1', 'Spring', 2008, 'C-'); + insert into takes values('57055', '421', '1', 'Fall', 2004, 'B '); + insert into takes values('29705', '747', '1', 'Spring', 2004, 'A+'); + insert into takes values('27727', '443', '2', 'Spring', 2002, 'A '); + insert into takes values('4015', '702', '1', 'Spring', 2001, 'A '); + insert into takes values('4435', '960', '2', 'Fall', 2006, 'C+'); + insert into takes values('69853', '421', '1', 'Fall', 2004, 'A+'); + insert into takes values('68516', '105', '2', 'Fall', 2002, 'A '); + insert into takes values('13365', '400', '1', 'Spring', 2007, 'C+'); + insert into takes values('97573', '791', '1', 'Spring', 2006, 'C '); + insert into takes values('36379', '489', '1', 'Fall', 2007, 'B '); + insert into takes values('70021', '867', '1', 'Fall', 2006, 'B+'); + insert into takes values('9440', '362', '1', 'Fall', 2005, 'B+'); + insert into takes values('57925', '338', '1', 'Spring', 2007, 'C+'); + insert into takes values('6895', '867', '2', 'Fall', 2010, 'B '); + insert into takes values('96178', '679', '1', 'Spring', 2010, 'B '); + insert into takes values('72528', '105', '1', 'Fall', 2009, 'A '); + insert into takes values('69732', '362', '2', 'Fall', 2006, 'B-'); + insert into takes values('55698', '864', '1', 'Spring', 2006, 'A-'); + insert into takes values('435', '559', '1', 'Fall', 2002, 'C-'); + insert into takes values('83444', '362', '2', 'Fall', 2006, 'C+'); + insert into takes values('80254', '962', '1', 'Spring', 2008, 'A '); + insert into takes values('41674', '338', '1', 'Spring', 2007, 'A '); + insert into takes values('81245', '626', '1', 'Fall', 2006, 'B '); + insert into takes values('39472', '760', '1', 'Spring', 2004, 'C+'); + insert into takes values('93354', '629', '1', 'Spring', 2003, 'B-'); + insert into takes values('87015', '200', '1', 'Spring', 2007, 'C+'); + insert into takes values('52656', '581', '1', 'Spring', 2005, 'B-'); + insert into takes values('36126', '445', '1', 'Spring', 2001, 'C+'); + insert into takes values('28538', '493', '1', 'Spring', 2010, 'A+'); + insert into takes values('37809', '334', '1', 'Fall', 2009, 'B+'); + insert into takes values('25362', '338', '2', 'Spring', 2006, 'B+'); + insert into takes values('59530', '959', '1', 'Fall', 2006, 'B-'); + insert into takes values('62749', '304', '1', 'Fall', 2009, 'B-'); + insert into takes values('21126', '137', '1', 'Spring', 2002, 'A-'); + insert into takes values('56598', '893', '1', 'Fall', 2007, 'C-'); + insert into takes values('86344', '239', '1', 'Fall', 2006, 'C-'); + insert into takes values('30943', '748', '1', 'Fall', 2003, 'C '); + insert into takes values('63390', '893', '1', 'Fall', 2007, 'B '); + insert into takes values('48471', '352', '1', 'Spring', 2006, 'C '); + insert into takes values('97023', '875', '1', 'Spring', 2005, 'C-'); + insert into takes values('20814', '489', '1', 'Fall', 2007, 'C '); + insert into takes values('39241', '867', '2', 'Fall', 2010, 'C-'); + insert into takes values('31364', '571', '1', 'Spring', 2004, 'B-'); + insert into takes values('43211', '169', '1', 'Spring', 2007, 'A+'); + insert into takes values('68649', '959', '1', 'Fall', 2006, 'C-'); + insert into takes values('10269', '237', '2', 'Fall', 2009, 'A-'); + insert into takes values('51768', '200', '1', 'Spring', 2007, 'A '); + insert into takes values('3576', '561', '1', 'Fall', 2006, 'A '); + insert into takes values('76246', '401', '1', 'Fall', 2003, 'B-'); + insert into takes values('24387', '631', '1', 'Spring', 2007, 'B-'); + insert into takes values('80047', '468', '2', 'Fall', 2007, 'C-'); + insert into takes values('93508', '476', '1', 'Fall', 2010, 'C '); + insert into takes values('79329', '345', '1', 'Spring', 2008, 'C-'); + insert into takes values('39927', '408', '2', 'Spring', 2003, 'C+'); + insert into takes values('11510', '239', '1', 'Fall', 2006, 'B-'); + insert into takes values('85211', '559', '1', 'Fall', 2002, 'C '); + insert into takes values('557', '581', '1', 'Spring', 2005, 'A '); + insert into takes values('827', '867', '1', 'Fall', 2006, 'C-'); + insert into takes values('47627', '960', '2', 'Fall', 2006, 'C '); + insert into takes values('96968', '400', '2', 'Fall', 2003, 'A-'); + insert into takes values('80698', '960', '2', 'Fall', 2006, 'A '); + insert into takes values('61737', '415', '1', 'Fall', 2010, 'A-'); + insert into takes values('69783', '808', '1', 'Fall', 2003, 'B+'); + insert into takes values('78552', '408', '2', 'Spring', 2003, 'C+'); + insert into takes values('81883', '237', '1', 'Spring', 2008, 'B+'); + insert into takes values('51997', '304', '1', 'Fall', 2009, 'B-'); + insert into takes values('98843', '972', '1', 'Spring', 2009, 'A '); + insert into takes values('38895', '679', '1', 'Spring', 2010, 'A-'); + insert into takes values('64550', '631', '1', 'Spring', 2007, 'A+'); + insert into takes values('45650', '338', '2', 'Spring', 2006, 'B-'); + insert into takes values('16849', '400', '2', 'Fall', 2003, 'C-'); + insert into takes values('5898', '362', '2', 'Fall', 2006, 'C-'); + insert into takes values('59538', '599', '1', 'Spring', 2003, 'B '); + insert into takes values('14621', '366', '1', 'Fall', 2005, 'A '); + insert into takes values('26102', '468', '1', 'Fall', 2005, 'B+'); + insert into takes values('78581', '158', '2', 'Spring', 2008, 'A '); + insert into takes values('67660', '927', '1', 'Fall', 2002, 'B-'); + insert into takes values('259', '313', '1', 'Fall', 2010, 'A+'); + insert into takes values('38895', '612', '1', 'Fall', 2007, 'A-'); + insert into takes values('93814', '461', '1', 'Fall', 2002, 'A+'); + insert into takes values('63361', '192', '1', 'Fall', 2002, 'A-'); + insert into takes values('96741', '702', '1', 'Spring', 2001, 'B-'); + insert into takes values('37653', '242', '1', 'Fall', 2009, 'B '); + insert into takes values('64082', '591', '1', 'Spring', 2005, 'B+'); + insert into takes values('5843', '192', '1', 'Fall', 2002, 'B-'); + insert into takes values('75252', '702', '1', 'Spring', 2001, 'C+'); + insert into takes values('15144', '795', '1', 'Spring', 2004, 'A '); + insert into takes values('99711', '349', '1', 'Spring', 2008, 'C '); + insert into takes values('37430', '735', '1', 'Spring', 2003, 'A-'); + insert into takes values('80047', '415', '1', 'Fall', 2010, 'A '); + insert into takes values('20985', '679', '1', 'Spring', 2010, 'A-'); + insert into takes values('41938', '415', '1', 'Fall', 2010, 'C+'); + insert into takes values('79469', '334', '1', 'Fall', 2009, 'C '); + insert into takes values('93004', '852', '1', 'Spring', 2008, 'B '); + insert into takes values('79763', '445', '1', 'Spring', 2001, 'B+'); + insert into takes values('62520', '960', '1', 'Fall', 2009, 'B-'); + insert into takes values('53699', '867', '2', 'Fall', 2010, 'C '); + insert into takes values('68278', '345', '1', 'Spring', 2008, 'B+'); + insert into takes values('91132', '603', '1', 'Fall', 2003, 'C '); + insert into takes values('67657', '591', '1', 'Spring', 2005, 'A+'); + insert into takes values('37715', '105', '2', 'Fall', 2002, 'B '); + insert into takes values('32130', '105', '2', 'Fall', 2002, 'A '); + insert into takes values('35687', '599', '1', 'Spring', 2003, 'B-'); + insert into takes values('57431', '626', '1', 'Fall', 2006, 'B '); + insert into takes values('55329', '362', '3', 'Spring', 2008, 'C-'); + insert into takes values('39580', '408', '1', 'Spring', 2007, 'B-'); + insert into takes values('51698', '795', '1', 'Spring', 2004, 'C '); + insert into takes values('48660', '599', '1', 'Spring', 2003, 'B-'); + insert into takes values('66090', '808', '1', 'Fall', 2003, 'A '); + insert into takes values('46106', '345', '1', 'Spring', 2008, 'B+'); + insert into takes values('42565', '663', '1', 'Spring', 2005, 'B+'); + insert into takes values('68720', '237', '1', 'Spring', 2008, 'C-'); + insert into takes values('28004', '793', '1', 'Spring', 2002, 'A+'); + insert into takes values('29920', '852', '1', 'Spring', 2008, 'C+'); + insert into takes values('15086', '237', '1', 'Spring', 2008, 'B+'); + insert into takes values('83686', '457', '1', 'Spring', 2001, 'C '); + insert into takes values('54672', '258', '1', 'Fall', 2007, 'A-'); + insert into takes values('61737', '527', '1', 'Fall', 2004, 'B '); + insert into takes values('46725', '352', '1', 'Spring', 2006, 'C+'); + insert into takes values('50206', '313', '1', 'Fall', 2010, 'B-'); + insert into takes values('68395', '105', '1', 'Fall', 2009, 'A-'); + insert into takes values('74672', '237', '1', 'Spring', 2008, 'B-'); + insert into takes values('17192', '426', '1', 'Spring', 2006, 'B+'); + insert into takes values('83214', '493', '1', 'Spring', 2010, 'A+'); + insert into takes values('97590', '274', '1', 'Fall', 2002, 'A-'); + insert into takes values('35293', '972', '1', 'Spring', 2009, 'C+'); + insert into takes values('14214', '169', '1', 'Spring', 2007, 'C '); + insert into takes values('71631', '631', '1', 'Spring', 2007, 'B+'); + insert into takes values('58634', '169', '1', 'Spring', 2007, 'A+'); + insert into takes values('898', '445', '1', 'Spring', 2001, 'C+'); + insert into takes values('15980', '158', '2', 'Spring', 2008, 'A+'); + insert into takes values('79170', '408', '2', 'Spring', 2003, 'A+'); + insert into takes values('59673', '237', '1', 'Spring', 2008, 'A+'); + insert into takes values('67051', '352', '1', 'Spring', 2006, 'B-'); + insert into takes values('36494', '591', '1', 'Spring', 2005, 'C-'); + insert into takes values('13408', '927', '1', 'Fall', 2002, 'C '); + insert into takes values('91915', '158', '2', 'Spring', 2008, 'C '); + insert into takes values('26494', '561', '1', 'Fall', 2006, 'A+'); + insert into takes values('32954', '319', '1', 'Spring', 2003, 'B '); + insert into takes values('41211', '626', '1', 'Fall', 2006, 'A '); + insert into takes values('82970', '581', '1', 'Spring', 2005, 'A+'); + insert into takes values('56057', '352', '1', 'Spring', 2006, 'B-'); + insert into takes values('8252', '349', '1', 'Spring', 2008, 'A '); + insert into takes values('50977', '793', '1', 'Spring', 2002, 'A-'); + insert into takes values('56', '852', '1', 'Spring', 2008, 'A '); + insert into takes values('57160', '345', '1', 'Spring', 2008, 'B '); + insert into takes values('53089', '626', '1', 'Fall', 2006, 'B '); + insert into takes values('5824', '239', '1', 'Fall', 2006, 'A '); + insert into takes values('63390', '852', '1', 'Spring', 2008, 'B+'); + insert into takes values('81876', '960', '1', 'Fall', 2009, 'A-'); + insert into takes values('36263', '802', '1', 'Spring', 2003, 'B '); + insert into takes values('53805', '362', '3', 'Spring', 2008, 'B+'); + insert into takes values('86552', '867', '2', 'Fall', 2010, 'B '); + insert into takes values('75116', '802', '1', 'Spring', 2003, 'A+'); + insert into takes values('87054', '972', '1', 'Spring', 2009, 'A+'); + insert into takes values('2970', '352', '1', 'Spring', 2006, 'B '); + insert into takes values('37653', '692', '1', 'Spring', 2010, 'B '); + insert into takes values('85534', '559', '1', 'Fall', 2002, 'A-'); + insert into takes values('11095', '486', '1', 'Fall', 2009, 'B+'); + insert into takes values('65433', '960', '2', 'Fall', 2006, 'C-'); + insert into takes values('97679', '603', '1', 'Fall', 2003, 'B+'); + insert into takes values('89734', '571', '1', 'Spring', 2004, 'B+'); + insert into takes values('88577', '591', '1', 'Spring', 2005, 'A+'); + insert into takes values('75560', '893', '1', 'Fall', 2007, 'C '); + insert into takes values('4182', '962', '1', 'Spring', 2008, 'B+'); + insert into takes values('59539', '972', '1', 'Spring', 2009, 'C '); + insert into takes values('33651', '486', '1', 'Fall', 2009, 'A '); + insert into takes values('99710', '795', '1', 'Spring', 2004, 'A-'); + insert into takes values('10481', '612', '1', 'Fall', 2007, 'B '); + insert into takes values('48165', '237', '2', 'Fall', 2009, 'C+'); + insert into takes values('17377', '334', '1', 'Fall', 2009, 'B '); + insert into takes values('37586', '461', '1', 'Fall', 2002, 'A+'); + insert into takes values('72741', '545', '1', 'Fall', 2001, 'A-'); + insert into takes values('50664', '864', '1', 'Spring', 2006, 'C-'); + insert into takes values('31442', '158', '2', 'Spring', 2008, 'B-'); + insert into takes values('68999', '867', '2', 'Fall', 2010, 'C+'); + insert into takes values('79210', '927', '1', 'Fall', 2002, 'C-'); + insert into takes values('41671', '694', '1', 'Fall', 2002, 'C+'); + insert into takes values('67310', '843', '1', 'Fall', 2010, 'C '); + insert into takes values('26730', '105', '2', 'Fall', 2002, 'B '); + insert into takes values('46956', '319', '1', 'Spring', 2003, 'B '); + insert into takes values('7020', '704', '1', 'Spring', 2008, 'C+'); + insert into takes values('36494', '571', '1', 'Spring', 2004, 'B '); + insert into takes values('59117', '927', '1', 'Fall', 2002, 'A-'); + insert into takes values('16133', '527', '1', 'Fall', 2004, 'C-'); + insert into takes values('50664', '319', '1', 'Spring', 2003, 'C+'); + insert into takes values('38676', '476', '1', 'Fall', 2010, 'A '); + insert into takes values('71085', '237', '1', 'Spring', 2008, 'C '); + insert into takes values('85451', '200', '1', 'Spring', 2007, 'C+'); + insert into takes values('22004', '200', '2', 'Fall', 2002, 'A-'); + insert into takes values('8483', '496', '1', 'Fall', 2001, 'C-'); + insert into takes values('99660', '443', '1', 'Spring', 2010, 'A-'); + insert into takes values('43993', '408', '2', 'Spring', 2003, 'A+'); + insert into takes values('28133', '795', '1', 'Spring', 2004, 'A+'); + insert into takes values('37734', '408', '2', 'Spring', 2003, 'A+'); + insert into takes values('63538', '242', '1', 'Fall', 2009, 'B-'); + insert into takes values('41741', '696', '1', 'Spring', 2002, 'B-'); + insert into takes values('25785', '304', '1', 'Fall', 2009, 'C+'); + insert into takes values('78314', '237', '2', 'Fall', 2009, 'A '); + insert into takes values('14432', '748', '1', 'Fall', 2003, 'A+'); + insert into takes values('25611', '468', '2', 'Fall', 2007, 'A-'); + insert into takes values('16311', '313', '1', 'Fall', 2010, 'C+'); + insert into takes values('49759', '345', '1', 'Spring', 2008, 'A-'); + insert into takes values('12078', '808', '1', 'Fall', 2003, 'B+'); + insert into takes values('41406', '704', '1', 'Spring', 2008, 'A+'); + insert into takes values('92703', '496', '1', 'Fall', 2001, 'B-'); + insert into takes values('65396', '237', '1', 'Spring', 2008, 'C+'); + insert into takes values('48462', '421', '1', 'Fall', 2004, 'B+'); + insert into takes values('58465', '313', '1', 'Fall', 2010, 'B+'); + insert into takes values('83696', '313', '1', 'Fall', 2010, 'B '); + insert into takes values('71768', '270', '1', 'Spring', 2010, 'B-'); + insert into takes values('36926', '629', '1', 'Spring', 2003, 'C-'); + insert into takes values('5393', '443', '2', 'Spring', 2002, 'C '); + insert into takes values('85366', '349', '1', 'Spring', 2008, 'A-'); + insert into takes values('57055', '242', '1', 'Fall', 2009, 'C-'); + insert into takes values('63502', '158', '2', 'Spring', 2008, 'A-'); + insert into takes values('90124', '352', '1', 'Spring', 2006, 'B+'); + insert into takes values('25077', '169', '1', 'Spring', 2007, 'B-'); + insert into takes values('2139', '795', '1', 'Spring', 2004, 'C-'); + insert into takes values('2201', '338', '2', 'Spring', 2006, 'A+'); + insert into takes values('29705', '137', '1', 'Spring', 2002, 'A '); + insert into takes values('69241', '496', '1', 'Fall', 2001, 'B+'); + insert into takes values('34770', '192', '1', 'Fall', 2002, 'C '); + insert into takes values('94990', '893', '1', 'Fall', 2007, 'A '); + insert into takes values('28738', '704', '1', 'Spring', 2008, 'C+'); + insert into takes values('16075', '274', '1', 'Fall', 2002, 'C '); + insert into takes values('16969', '663', '1', 'Spring', 2005, 'B '); + insert into takes values('44703', '991', '1', 'Spring', 2008, 'A+'); + insert into takes values('95697', '875', '1', 'Spring', 2005, 'B-'); + insert into takes values('50703', '604', '1', 'Spring', 2009, 'C '); + insert into takes values('26427', '795', '1', 'Spring', 2004, 'A-'); + insert into takes values('1826', '401', '1', 'Fall', 2003, 'A-'); + insert into takes values('89246', '158', '2', 'Spring', 2008, 'A '); + insert into takes values('16543', '702', '1', 'Spring', 2001, 'C-'); + insert into takes values('2133', '949', '1', 'Fall', 2007, 'C-'); + insert into takes values('99647', '270', '1', 'Spring', 2010, 'C+'); + insert into takes values('25331', '242', '1', 'Fall', 2009, 'B-'); + insert into takes values('23994', '362', '3', 'Spring', 2008, 'B-'); + insert into takes values('76895', '237', '1', 'Spring', 2008, 'B '); + insert into takes values('92659', '875', '1', 'Spring', 2005, 'A '); + insert into takes values('14874', '561', '1', 'Fall', 2006, 'C-'); + insert into takes values('43981', '612', '1', 'Fall', 2007, 'B-'); + insert into takes values('37284', '793', '1', 'Spring', 2002, 'A '); + insert into takes values('46450', '735', '1', 'Spring', 2003, 'B+'); + insert into takes values('32056', '852', '1', 'Spring', 2008, 'C+'); + insert into takes values('31690', '663', '1', 'Spring', 2005, 'B+'); + insert into takes values('11262', '304', '1', 'Fall', 2009, 'C-'); + insert into takes values('87965', '468', '1', 'Fall', 2005, 'A '); + insert into takes values('61920', '258', '1', 'Fall', 2007, 'A-'); + insert into takes values('80248', '105', '1', 'Fall', 2009, 'A+'); + insert into takes values('56124', '349', '1', 'Spring', 2008, 'A+'); + insert into takes values('31690', '949', '1', 'Fall', 2007, 'C+'); + insert into takes values('97400', '158', '1', 'Fall', 2008, 'A+'); + insert into takes values('49982', '604', '1', 'Spring', 2009, 'A+'); + insert into takes values('9947', '158', '2', 'Spring', 2008, 'B-'); + insert into takes values('49611', '793', '1', 'Spring', 2002, 'B '); + insert into takes values('89734', '158', '1', 'Fall', 2008, 'C '); + insert into takes values('22258', '875', '1', 'Spring', 2005, 'B+'); + insert into takes values('35257', '158', '1', 'Fall', 2008, 'A-'); + insert into takes values('11441', '486', '1', 'Fall', 2009, 'C+'); + insert into takes values('18636', '400', '2', 'Fall', 2003, 'C+'); + insert into takes values('993', '692', '1', 'Spring', 2010, 'B-'); + insert into takes values('50013', '702', '1', 'Spring', 2001, 'C+'); + insert into takes values('66969', '476', '1', 'Fall', 2010, 'B+'); + insert into takes values('1968', '200', '1', 'Spring', 2007, 'A-'); + insert into takes values('30397', '468', '1', 'Fall', 2005, 'C+'); + insert into takes values('59673', '599', '1', 'Spring', 2003, 'B+'); + insert into takes values('93653', '105', '2', 'Fall', 2002, 'C '); + insert into takes values('5005', '319', '1', 'Spring', 2003, 'B+'); + insert into takes values('70918', '362', '1', 'Fall', 2005, 'C '); + insert into takes values('6895', '349', '1', 'Spring', 2008, 'C+'); + insert into takes values('14563', '476', '1', 'Fall', 2010, 'B-'); + insert into takes values('72165', '137', '1', 'Spring', 2002, 'B '); + insert into takes values('60249', '169', '2', 'Fall', 2002, 'B '); + insert into takes values('5925', '421', '1', 'Fall', 2004, 'C '); + insert into takes values('67542', '362', '2', 'Fall', 2006, 'B '); + insert into takes values('57985', '270', '1', 'Spring', 2010, 'B '); + insert into takes values('78332', '461', '1', 'Fall', 2002, 'C+'); + insert into takes values('76799', '875', '1', 'Spring', 2005, 'A '); + insert into takes values('97435', '559', '1', 'Fall', 2002, 'B-'); + insert into takes values('85614', '468', '2', 'Fall', 2007, 'A+'); + insert into takes values('37715', '366', '1', 'Fall', 2005, 'C+'); + insert into takes values('72959', '274', '1', 'Fall', 2002, 'B+'); + insert into takes values('48861', '867', '2', 'Fall', 2010, 'A '); + insert into takes values('49982', '313', '1', 'Fall', 2010, 'A+'); + insert into takes values('51093', '258', '1', 'Fall', 2007, 'A '); + insert into takes values('28409', '527', '1', 'Fall', 2004, 'A+'); + insert into takes values('14869', '237', '1', 'Spring', 2008, 'A-'); + insert into takes values('21009', '735', '2', 'Spring', 2010, 'B '); + insert into takes values('28738', '867', '1', 'Fall', 2006, 'A+'); + insert into takes values('16885', '445', '1', 'Spring', 2001, 'B-'); + insert into takes values('29803', '960', '1', 'Fall', 2009, 'A '); + insert into takes values('24387', '362', '2', 'Fall', 2006, 'C-'); + insert into takes values('17397', '105', '1', 'Fall', 2009, 'A+'); + insert into takes values('40189', '793', '1', 'Spring', 2002, 'C '); + insert into takes values('38336', '468', '1', 'Fall', 2005, 'A+'); + insert into takes values('84727', '972', '1', 'Spring', 2009, 'C+'); + insert into takes values('41832', '735', '2', 'Spring', 2010, 'A+'); + insert into takes values('96067', '867', '2', 'Fall', 2010, 'B-'); + insert into takes values('52157', '258', '1', 'Fall', 2007, 'A '); + insert into takes values('22268', '704', '1', 'Spring', 2008, 'A '); + insert into takes values('85308', '663', '1', 'Spring', 2005, 'B+'); + insert into takes values('57185', '457', '1', 'Spring', 2001, 'B+'); + insert into takes values('26494', '747', '1', 'Spring', 2004, 'B '); + insert into takes values('61737', '496', '1', 'Fall', 2001, 'C+'); + insert into takes values('98047', '747', '1', 'Spring', 2004, 'A-'); + insert into takes values('75928', '791', '1', 'Spring', 2006, 'C+'); + insert into takes values('68330', '867', '1', 'Fall', 2006, 'B '); + insert into takes values('12214', '169', '1', 'Spring', 2007, 'A-'); + insert into takes values('22142', '962', '1', 'Spring', 2008, 'C+'); + insert into takes values('51093', '735', '2', 'Spring', 2010, 'A '); + insert into takes values('90234', '319', '1', 'Spring', 2003, 'C '); + insert into takes values('19848', '496', '1', 'Fall', 2001, 'C '); + insert into takes values('64945', '468', '2', 'Fall', 2007, 'A '); + insert into takes values('90814', '169', '2', 'Fall', 2002, 'C-'); + insert into takes values('15070', '445', '1', 'Spring', 2001, 'B-'); + insert into takes values('12563', '408', '2', 'Spring', 2003, 'B+'); + insert into takes values('21774', '486', '1', 'Fall', 2009, 'C+'); + insert into takes values('12236', '362', '3', 'Spring', 2008, 'A-'); + insert into takes values('1080', '974', '1', 'Fall', 2003, 'B+'); + insert into takes values('83622', '352', '1', 'Spring', 2006, 'C '); + insert into takes values('57787', '362', '2', 'Fall', 2006, 'A+'); + insert into takes values('96003', '875', '1', 'Spring', 2005, 'B+'); + insert into takes values('66356', '486', '1', 'Fall', 2009, 'B+'); + insert into takes values('88472', '192', '1', 'Fall', 2002, 'C-'); + insert into takes values('57456', '702', '1', 'Spring', 2001, 'C '); + insert into takes values('73165', '991', '1', 'Spring', 2008, 'A '); + insert into takes values('84792', '527', '1', 'Fall', 2004, 'C+'); + insert into takes values('31080', '408', '2', 'Spring', 2003, 'C+'); + insert into takes values('70828', '591', '1', 'Spring', 2005, 'A '); + insert into takes values('88884', '493', '1', 'Spring', 2010, 'C '); + insert into takes values('81538', '559', '1', 'Fall', 2002, 'B-'); + insert into takes values('28829', '599', '1', 'Spring', 2003, 'A '); + insert into takes values('96227', '376', '1', 'Fall', 2006, 'A '); + insert into takes values('30299', '843', '1', 'Fall', 2010, 'A '); + insert into takes values('57107', '960', '2', 'Fall', 2006, 'A-'); + insert into takes values('62373', '421', '1', 'Fall', 2004, 'C '); + insert into takes values('50658', '802', '1', 'Spring', 2003, 'A '); + insert into takes values('95201', '612', '1', 'Fall', 2007, 'C+'); + insert into takes values('69747', '974', '1', 'Fall', 2003, 'B '); + insert into takes values('74070', '304', '1', 'Fall', 2009, 'A-'); + insert into takes values('82039', '629', '1', 'Spring', 2003, 'C+'); + insert into takes values('81550', '591', '1', 'Spring', 2005, 'B '); + insert into takes values('93571', '476', '1', 'Fall', 2010, 'C-'); + insert into takes values('49073', '468', '2', 'Fall', 2007, 'A+'); + insert into takes values('1727', '696', '1', 'Spring', 2002, 'C+'); + insert into takes values('52523', '692', '1', 'Spring', 2010, 'B-'); + insert into takes values('27528', '679', '1', 'Spring', 2010, 'B+'); + insert into takes values('57538', '270', '1', 'Spring', 2010, 'C-'); + insert into takes values('88302', '747', '1', 'Spring', 2004, 'B '); + insert into takes values('78922', '793', '1', 'Spring', 2002, 'A '); + insert into takes values('74840', '581', '1', 'Spring', 2005, 'B-'); + insert into takes values('9659', '270', '1', 'Spring', 2010, 'C+'); + insert into takes values('42298', '476', '1', 'Fall', 2010, 'C+'); + insert into takes values('31137', '192', '1', 'Fall', 2002, 'C '); + insert into takes values('66494', '400', '2', 'Fall', 2003, 'B '); + insert into takes values('56', '974', '1', 'Fall', 2003, 'C-'); + insert into takes values('847', '581', '1', 'Spring', 2005, 'B-'); + insert into takes values('9360', '959', '1', 'Fall', 2006, 'C-'); + insert into takes values('11510', '496', '1', 'Fall', 2001, 'A-'); + insert into takes values('23344', '468', '1', 'Fall', 2005, 'C-'); + insert into takes values('77361', '991', '1', 'Spring', 2008, 'A+'); + insert into takes values('53496', '795', '1', 'Spring', 2004, 'B '); + insert into takes values('67657', '443', '2', 'Spring', 2002, 'C+'); + insert into takes values('21086', '748', '1', 'Fall', 2003, 'A+'); + insert into takes values('53451', '603', '1', 'Fall', 2003, 'B '); + insert into takes values('77000', '352', '1', 'Spring', 2006, 'A+'); + insert into takes values('9605', '362', '2', 'Fall', 2006, 'A '); + insert into takes values('94846', '561', '1', 'Fall', 2006, 'B-'); + insert into takes values('27366', '735', '1', 'Spring', 2003, 'B '); + insert into takes values('84495', '200', '2', 'Fall', 2002, 'A+'); + insert into takes values('74639', '274', '1', 'Fall', 2002, 'B '); + insert into takes values('93986', '747', '1', 'Spring', 2004, 'A+'); + insert into takes values('10727', '642', '1', 'Fall', 2004, 'A+'); + insert into takes values('57123', '735', '1', 'Spring', 2003, 'C '); + insert into takes values('19050', '401', '1', 'Fall', 2003, 'B+'); + insert into takes values('4182', '237', '2', 'Fall', 2009, 'C-'); + insert into takes values('52291', '401', '1', 'Fall', 2003, 'B '); + insert into takes values('22467', '808', '1', 'Fall', 2003, 'A '); + insert into takes values('1884', '408', '1', 'Spring', 2007, 'C+'); + insert into takes values('81031', '482', '1', 'Fall', 2005, 'A '); + insert into takes values('86327', '808', '1', 'Fall', 2003, 'B '); + insert into takes values('463', '105', '1', 'Fall', 2009, 'C+'); + insert into takes values('20002', '604', '1', 'Spring', 2009, 'C '); + insert into takes values('30188', '366', '1', 'Fall', 2005, 'C+'); + insert into takes values('5824', '612', '1', 'Fall', 2007, 'C '); + insert into takes values('2133', '679', '1', 'Spring', 2010, 'B+'); + insert into takes values('55286', '408', '1', 'Spring', 2007, 'B+'); + insert into takes values('94522', '200', '2', 'Fall', 2002, 'C-'); + insert into takes values('57026', '735', '1', 'Spring', 2003, 'B+'); + insert into takes values('90448', '421', '1', 'Fall', 2004, 'A+'); + insert into takes values('80698', '496', '1', 'Fall', 2001, 'C-'); + insert into takes values('55009', '105', '1', 'Fall', 2009, 'B-'); + insert into takes values('4435', '496', '1', 'Fall', 2001, 'A-'); + insert into takes values('95046', '603', '1', 'Fall', 2003, 'B+'); + insert into takes values('54622', '482', '1', 'Fall', 2005, 'C '); + insert into takes values('89196', '852', '1', 'Spring', 2008, 'A-'); + insert into takes values('99348', '426', '1', 'Spring', 2006, 'B+'); + insert into takes values('69853', '366', '1', 'Fall', 2005, 'C+'); + insert into takes values('69241', '376', '1', 'Fall', 2006, 'C '); + insert into takes values('8517', '489', '1', 'Fall', 2007, 'A+'); + insert into takes values('50365', '793', '1', 'Spring', 2002, 'C '); + insert into takes values('34569', '747', '1', 'Spring', 2004, 'B-'); + insert into takes values('99348', '169', '1', 'Spring', 2007, 'A+'); + insert into takes values('24796', '345', '1', 'Spring', 2008, 'A '); + insert into takes values('73394', '591', '1', 'Spring', 2005, 'B-'); + insert into takes values('4345', '631', '1', 'Spring', 2007, 'A '); + insert into takes values('5298', '852', '1', 'Spring', 2008, 'B-'); + insert into takes values('17944', '349', '1', 'Spring', 2008, 'A '); + insert into takes values('91616', '545', '1', 'Fall', 2001, 'A '); + insert into takes values('62705', '105', '1', 'Fall', 2009, 'B '); + insert into takes values('62373', '496', '1', 'Fall', 2001, 'B+'); + insert into takes values('94846', '274', '1', 'Fall', 2002, 'B-'); + insert into takes values('45083', '158', '2', 'Spring', 2008, 'B '); + insert into takes values('9933', '527', '1', 'Fall', 2004, 'A '); + insert into takes values('9360', '875', '1', 'Spring', 2005, 'C '); + insert into takes values('10033', '408', '1', 'Spring', 2007, 'C-'); + insert into takes values('55170', '200', '1', 'Spring', 2007, 'A '); + insert into takes values('32245', '105', '1', 'Fall', 2009, 'C+'); + insert into takes values('36384', '692', '1', 'Spring', 2010, 'A '); + insert into takes values('12326', '974', '1', 'Fall', 2003, 'A '); + insert into takes values('75252', '561', '1', 'Fall', 2006, 'B '); + insert into takes values('16250', '486', '1', 'Fall', 2009, 'A '); + insert into takes values('92849', '421', '1', 'Fall', 2004, 'A '); + insert into takes values('71878', '274', '1', 'Fall', 2002, 'A+'); + insert into takes values('71287', '443', '1', 'Spring', 2010, 'A+'); + insert into takes values('40080', '426', '1', 'Spring', 2006, 'B+'); + insert into takes values('51008', '400', '2', 'Fall', 2003, 'B+'); + insert into takes values('15144', '362', '3', 'Spring', 2008, 'B '); + insert into takes values('25468', '242', '1', 'Fall', 2009, 'A-'); + insert into takes values('26427', '631', '1', 'Spring', 2007, 'A+'); + insert into takes values('53225', '258', '1', 'Fall', 2007, 'B-'); + insert into takes values('57780', '421', '1', 'Fall', 2004, 'A '); + insert into takes values('62124', '843', '1', 'Fall', 2010, 'C '); + insert into takes values('99719', '927', '1', 'Fall', 2002, 'A '); + insert into takes values('30110', '242', '1', 'Fall', 2009, 'C-'); + insert into takes values('8378', '867', '2', 'Fall', 2010, 'A+'); + insert into takes values('58634', '401', '1', 'Fall', 2003, 'C '); + insert into takes values('55170', '629', '1', 'Spring', 2003, 'B '); + insert into takes values('19321', '802', '1', 'Spring', 2003, 'A-'); + insert into takes values('86404', '421', '1', 'Fall', 2004, 'B '); + insert into takes values('30124', '704', '1', 'Spring', 2008, 'A '); + insert into takes values('99760', '426', '1', 'Spring', 2006, 'B+'); + insert into takes values('32772', '105', '2', 'Fall', 2002, 'C '); + insert into takes values('6287', '338', '2', 'Spring', 2006, 'B-'); + insert into takes values('36303', '843', '1', 'Fall', 2010, 'B+'); + insert into takes values('70807', '468', '2', 'Fall', 2007, 'A-'); + insert into takes values('21102', '457', '1', 'Spring', 2001, 'B '); + insert into takes values('83838', '489', '1', 'Fall', 2007, 'A+'); + insert into takes values('94371', '362', '2', 'Fall', 2006, 'C-'); + insert into takes values('38899', '679', '1', 'Spring', 2010, 'A+'); + insert into takes values('70098', '468', '1', 'Fall', 2005, 'C '); + insert into takes values('15340', '169', '1', 'Spring', 2007, 'B-'); + insert into takes values('81207', '258', '1', 'Fall', 2007, 'C '); + insert into takes values('82066', '400', '1', 'Spring', 2007, 'A '); + insert into takes values('2970', '694', '1', 'Fall', 2002, 'A-'); + insert into takes values('87054', '105', '1', 'Fall', 2009, 'A-'); + insert into takes values('39472', '486', '1', 'Fall', 2009, 'A+'); + insert into takes values('259', '795', '1', 'Spring', 2004, 'B+'); + insert into takes values('83622', '338', '1', 'Spring', 2007, 'C-'); + insert into takes values('68278', '496', '1', 'Fall', 2001, 'B '); + insert into takes values('77000', '338', '1', 'Spring', 2007, 'B+'); + insert into takes values('92703', '200', '1', 'Spring', 2007, 'C+'); + insert into takes values('17507', '927', '1', 'Fall', 2002, 'C+'); + insert into takes values('9408', '692', '1', 'Spring', 2010, 'A+'); + insert into takes values('73328', '408', '1', 'Spring', 2007, 'B-'); + insert into takes values('16969', '962', '1', 'Spring', 2008, 'A-'); + insert into takes values('69783', '408', '2', 'Spring', 2003, 'C '); + insert into takes values('80698', '663', '1', 'Spring', 2005, 'B+'); + insert into takes values('11578', '864', '1', 'Spring', 2006, 'B '); + insert into takes values('35881', '362', '3', 'Spring', 2008, 'B '); + insert into takes values('49792', '702', '1', 'Spring', 2001, 'A '); + insert into takes values('10269', '704', '1', 'Spring', 2008, 'C-'); + insert into takes values('17397', '493', '1', 'Spring', 2010, 'B '); + insert into takes values('93631', '843', '1', 'Fall', 2010, 'C+'); + insert into takes values('78758', '795', '1', 'Spring', 2004, 'C '); + insert into takes values('72643', '258', '1', 'Fall', 2007, 'C '); + insert into takes values('50365', '105', '2', 'Fall', 2002, 'A-'); + insert into takes values('78637', '270', '1', 'Spring', 2010, 'A+'); + insert into takes values('78782', '581', '1', 'Spring', 2005, 'C '); + insert into takes values('3739', '612', '1', 'Fall', 2007, 'B-'); + insert into takes values('37454', '408', '1', 'Spring', 2007, 'B-'); + insert into takes values('858', '237', '1', 'Spring', 2008, 'B '); + insert into takes values('94324', '867', '2', 'Fall', 2010, 'A-'); + insert into takes values('22198', '867', '1', 'Fall', 2006, 'B '); + insert into takes values('8912', '237', '2', 'Fall', 2009, 'A+'); + insert into takes values('18007', '313', '1', 'Fall', 2010, 'C '); + insert into takes values('107', '867', '1', 'Fall', 2006, 'A+'); + insert into takes values('30723', '603', '1', 'Fall', 2003, 'A-'); + insert into takes values('46074', '258', '1', 'Fall', 2007, 'C-'); + insert into takes values('5250', '629', '1', 'Spring', 2003, 'A+'); + insert into takes values('75534', '352', '1', 'Spring', 2006, 'C-'); + insert into takes values('88169', '468', '1', 'Fall', 2005, 'B+'); + insert into takes values('57026', '192', '1', 'Fall', 2002, 'A-'); + insert into takes values('8022', '304', '1', 'Fall', 2009, 'A+'); + insert into takes values('29514', '991', '1', 'Spring', 2008, 'B-'); + insert into takes values('67514', '603', '1', 'Fall', 2003, 'A '); + insert into takes values('16057', '313', '1', 'Fall', 2010, 'C '); + insert into takes values('41091', '445', '1', 'Spring', 2001, 'C '); + insert into takes values('71944', '642', '1', 'Fall', 2004, 'A-'); + insert into takes values('98423', '612', '1', 'Fall', 2007, 'C+'); + insert into takes values('74974', '663', '1', 'Spring', 2005, 'A-'); + insert into takes values('98870', '461', '1', 'Fall', 2002, 'B+'); + insert into takes values('96324', '192', '1', 'Fall', 2002, 'A-'); + insert into takes values('86969', '415', '1', 'Fall', 2010, 'A '); + insert into takes values('65987', '704', '1', 'Spring', 2008, 'C '); + insert into takes values('27094', '793', '1', 'Spring', 2002, 'C-'); + insert into takes values('6712', '362', '1', 'Fall', 2005, 'A+'); + insert into takes values('39612', '748', '1', 'Fall', 2003, 'B+'); + insert into takes values('17128', '735', '1', 'Spring', 2003, 'A+'); + insert into takes values('24932', '169', '1', 'Spring', 2007, 'C-'); + insert into takes values('85445', '468', '1', 'Fall', 2005, 'A-'); + insert into takes values('5381', '852', '1', 'Spring', 2008, 'A-'); + insert into takes values('80742', '338', '2', 'Spring', 2006, 'C '); + insert into takes values('11419', '270', '1', 'Spring', 2010, 'A '); + insert into takes values('89759', '791', '1', 'Spring', 2006, 'A+'); + insert into takes values('96193', '445', '1', 'Spring', 2001, 'A-'); + insert into takes values('55531', '421', '1', 'Fall', 2004, 'A+'); + insert into takes values('64938', '959', '1', 'Fall', 2006, 'C-'); + insert into takes values('95046', '105', '2', 'Fall', 2002, 'A+'); + insert into takes values('35257', '476', '1', 'Fall', 2010, 'B-'); + insert into takes values('21401', '461', '1', 'Fall', 2002, 'B+'); + insert into takes values('27017', '972', '1', 'Spring', 2009, 'C+'); + insert into takes values('58874', '603', '1', 'Fall', 2003, 'A-'); + insert into takes values('74796', '445', '1', 'Spring', 2001, 'A '); + insert into takes values('49792', '443', '2', 'Spring', 2002, 'C '); + insert into takes values('21401', '867', '1', 'Fall', 2006, 'C '); + insert into takes values('66054', '274', '1', 'Fall', 2002, 'C-'); + insert into takes values('98726', '461', '1', 'Fall', 2002, 'C-'); + insert into takes values('49611', '169', '1', 'Spring', 2007, 'B-'); + insert into takes values('48462', '949', '1', 'Fall', 2007, 'C-'); + insert into takes values('85211', '626', '1', 'Fall', 2006, 'C+'); + insert into takes values('49205', '476', '1', 'Fall', 2010, 'C+'); + insert into takes values('7204', '852', '1', 'Spring', 2008, 'C-'); + insert into takes values('25552', '581', '1', 'Spring', 2005, 'C+'); + insert into takes values('35935', '304', '1', 'Fall', 2009, 'A-'); + insert into takes values('99271', '791', '1', 'Spring', 2006, 'C '); + insert into takes values('41751', '461', '1', 'Fall', 2002, 'C+'); + insert into takes values('93491', '852', '1', 'Spring', 2008, 'B-'); + insert into takes values('78581', '192', '1', 'Fall', 2002, 'B+'); + insert into takes values('89059', '735', '2', 'Spring', 2010, 'C+'); + insert into takes values('80248', '443', '1', 'Spring', 2010, 'A-'); + insert into takes values('82974', '421', '1', 'Fall', 2004, 'B+'); + insert into takes values('63243', '482', '1', 'Fall', 2005, 'C '); + insert into takes values('67425', '702', '1', 'Spring', 2001, 'C '); + insert into takes values('62795', '802', '1', 'Spring', 2003, 'A-'); + insert into takes values('4173', '561', '1', 'Fall', 2006, 'A '); + insert into takes values('73411', '802', '1', 'Spring', 2003, 'B '); + insert into takes values('29239', '808', '1', 'Fall', 2003, 'B '); + insert into takes values('76270', '561', '1', 'Fall', 2006, 'A+'); + insert into takes values('72979', '274', '1', 'Fall', 2002, 'B-'); + insert into takes values('18234', '631', '1', 'Spring', 2007, 'B '); + insert into takes values('7973', '338', '2', 'Spring', 2006, 'C+'); + insert into takes values('79205', '959', '1', 'Fall', 2006, 'C-'); + insert into takes values('92703', '445', '1', 'Spring', 2001, 'C+'); + insert into takes values('23270', '962', '1', 'Spring', 2008, 'C '); + insert into takes values('97435', '893', '1', 'Fall', 2007, 'C-'); + insert into takes values('78552', '239', '1', 'Fall', 2006, 'B+'); + insert into takes values('58874', '704', '1', 'Spring', 2008, 'B-'); + insert into takes values('52385', '603', '1', 'Fall', 2003, 'C+'); + insert into takes values('69752', '893', '1', 'Fall', 2007, 'B-'); + insert into takes values('72006', '802', '1', 'Spring', 2003, 'B-'); + insert into takes values('24442', '239', '1', 'Fall', 2006, 'C-'); + insert into takes values('87706', '274', '1', 'Fall', 2002, 'A '); + insert into takes values('259', '791', '1', 'Spring', 2006, 'A-'); + insert into takes values('31337', '338', '1', 'Spring', 2007, 'B-'); + insert into takes values('45083', '793', '1', 'Spring', 2002, 'C+'); + insert into takes values('34569', '408', '1', 'Spring', 2007, 'A+'); + insert into takes values('44703', '960', '1', 'Fall', 2009, 'C+'); + insert into takes values('95850', '445', '1', 'Spring', 2001, 'A+'); + insert into takes values('88884', '415', '1', 'Fall', 2010, 'A '); + insert into takes values('84702', '137', '1', 'Spring', 2002, 'A+'); + insert into takes values('47627', '200', '2', 'Fall', 2002, 'C '); + insert into takes values('60406', '362', '2', 'Fall', 2006, 'B+'); + insert into takes values('8343', '169', '2', 'Fall', 2002, 'C '); + insert into takes values('45720', '489', '1', 'Fall', 2007, 'C-'); + insert into takes values('32130', '802', '1', 'Spring', 2003, 'A-'); + insert into takes values('52866', '443', '2', 'Spring', 2002, 'B-'); + insert into takes values('64914', '319', '1', 'Spring', 2003, 'B+'); + insert into takes values('53699', '974', '1', 'Fall', 2003, 'B '); + insert into takes values('35881', '401', '1', 'Fall', 2003, 'B '); + insert into takes values('84515', '748', '1', 'Fall', 2003, 'B+'); + insert into takes values('57160', '349', '1', 'Spring', 2008, 'B '); + insert into takes values('98056', '642', '1', 'Fall', 2004, 'A-'); + insert into takes values('58634', '867', '2', 'Fall', 2010, 'A-'); + insert into takes values('36126', '105', '1', 'Fall', 2009, 'B '); + insert into takes values('53118', '426', '1', 'Spring', 2006, 'C-'); + insert into takes values('65329', '445', '1', 'Spring', 2001, 'B '); + insert into takes values('83838', '867', '2', 'Fall', 2010, 'B+'); + insert into takes values('74672', '702', '1', 'Spring', 2001, 'A-'); + insert into takes values('82707', '137', '1', 'Spring', 2002, 'C+'); + insert into takes values('39925', '612', '1', 'Fall', 2007, 'C+'); + insert into takes values('70572', '864', '1', 'Spring', 2006, 'C+'); + insert into takes values('6729', '352', '1', 'Spring', 2006, 'A+'); + insert into takes values('32130', '239', '1', 'Fall', 2006, 'A+'); + insert into takes values('53047', '105', '1', 'Fall', 2009, 'B-'); + insert into takes values('72768', '545', '1', 'Fall', 2001, 'A '); + insert into takes values('7035', '158', '1', 'Fall', 2008, 'B-'); + insert into takes values('36926', '137', '1', 'Spring', 2002, 'C-'); + insert into takes values('32490', '362', '2', 'Fall', 2006, 'A-'); + insert into takes values('50966', '362', '3', 'Spring', 2008, 'A '); + insert into takes values('43616', '867', '1', 'Fall', 2006, 'C+'); + insert into takes values('30021', '486', '1', 'Fall', 2009, 'A+'); + insert into takes values('24325', '443', '2', 'Spring', 2002, 'C+'); + insert into takes values('65688', '603', '1', 'Fall', 2003, 'C-'); + insert into takes values('93043', '400', '2', 'Fall', 2003, 'A-'); + insert into takes values('97023', '313', '1', 'Fall', 2010, 'C-'); + insert into takes values('43989', '468', '1', 'Fall', 2005, 'C+'); + insert into takes values('99463', '239', '1', 'Fall', 2006, 'C '); + insert into takes values('34392', '482', '1', 'Fall', 2005, 'C-'); + insert into takes values('60406', '735', '2', 'Spring', 2010, 'C-'); + insert into takes values('65205', '169', '2', 'Fall', 2002, 'B+'); + insert into takes values('31035', '960', '1', 'Fall', 2009, 'B '); + insert into takes values('8517', '561', '1', 'Fall', 2006, 'B-'); + insert into takes values('63860', '352', '1', 'Spring', 2006, 'C-'); + insert into takes values('64724', '362', '1', 'Fall', 2005, 'A+'); + insert into takes values('87651', '200', '2', 'Fall', 2002, 'B '); + insert into takes values('36845', '489', '1', 'Fall', 2007, 'B-'); + insert into takes values('67146', '489', '1', 'Fall', 2007, 'C-'); + insert into takes values('61332', '793', '1', 'Spring', 2002, 'B-'); + insert into takes values('5843', '571', '1', 'Spring', 2004, 'A+'); + insert into takes values('18583', '274', '1', 'Fall', 2002, 'C+'); + insert into takes values('93366', '200', '2', 'Fall', 2002, 'B-'); + insert into takes values('94998', '581', '1', 'Spring', 2005, 'A+'); + insert into takes values('88287', '959', '1', 'Fall', 2006, 'C '); + insert into takes values('27919', '237', '1', 'Spring', 2008, 'A-'); + insert into takes values('11419', '802', '1', 'Spring', 2003, 'C-'); + insert into takes values('82301', '274', '1', 'Fall', 2002, 'C-'); + insert into takes values('62124', '313', '1', 'Fall', 2010, 'A '); + insert into takes values('81245', '237', '1', 'Spring', 2008, 'A-'); + insert into takes values('10838', '415', '1', 'Fall', 2010, 'B+'); + insert into takes values('55329', '875', '1', 'Spring', 2005, 'C-'); + insert into takes values('53788', '747', '1', 'Spring', 2004, 'C+'); + insert into takes values('55000', '795', '1', 'Spring', 2004, 'C '); + insert into takes values('56849', '158', '1', 'Fall', 2008, 'B+'); + insert into takes values('95859', '334', '1', 'Fall', 2009, 'A+'); + insert into takes values('76743', '629', '1', 'Spring', 2003, 'B '); + insert into takes values('82918', '313', '1', 'Fall', 2010, 'B+'); + insert into takes values('28352', '376', '1', 'Fall', 2006, 'B+'); + insert into takes values('87015', '169', '1', 'Spring', 2007, 'C '); + insert into takes values('72055', '334', '1', 'Fall', 2009, 'C '); + insert into takes values('58307', '362', '2', 'Fall', 2006, 'B-'); + insert into takes values('35881', '169', '1', 'Spring', 2007, 'C '); + insert into takes values('32483', '793', '1', 'Spring', 2002, 'B '); + insert into takes values('64724', '696', '1', 'Spring', 2002, 'B-'); + insert into takes values('5414', '362', '3', 'Spring', 2008, 'C '); + insert into takes values('39881', '457', '1', 'Spring', 2001, 'B+'); + insert into takes values('28004', '626', '1', 'Fall', 2006, 'C+'); + insert into takes values('95320', '604', '1', 'Spring', 2009, 'A+'); + insert into takes values('25725', '400', '1', 'Spring', 2007, 'A '); + insert into takes values('88793', '486', '1', 'Fall', 2009, 'A '); + insert into takes values('71628', '400', '2', 'Fall', 2003, 'C+'); + insert into takes values('83557', '735', '1', 'Spring', 2003, 'B+'); + insert into takes values('64169', '362', '1', 'Fall', 2005, 'C-'); + insert into takes values('44584', '875', '1', 'Spring', 2005, 'A+'); + insert into takes values('64297', '105', '1', 'Fall', 2009, 'B '); + insert into takes values('68649', '486', '1', 'Fall', 2009, 'B-'); + insert into takes values('67310', '692', '1', 'Spring', 2010, 'C+'); + insert into takes values('99764', '192', '1', 'Fall', 2002, 'C-'); + insert into takes values('71287', '338', '1', 'Spring', 2007, 'C+'); + insert into takes values('99422', '972', '1', 'Spring', 2009, 'A-'); + insert into takes values('84865', '760', '1', 'Spring', 2004, 'B '); + insert into takes values('42843', '843', '1', 'Fall', 2010, 'C '); + insert into takes values('28352', '991', '1', 'Spring', 2008, 'A+'); + insert into takes values('95840', '304', '1', 'Fall', 2009, 'C '); + insert into takes values('56232', '408', '1', 'Spring', 2007, 'A-'); + insert into takes values('14065', '599', '1', 'Spring', 2003, 'B-'); + insert into takes values('91851', '468', '1', 'Fall', 2005, 'C '); + insert into takes values('62728', '366', '1', 'Fall', 2005, 'C '); + insert into takes values('48009', '192', '1', 'Fall', 2002, 'B '); + insert into takes values('60748', '959', '1', 'Fall', 2006, 'C '); + insert into takes values('66293', '366', '1', 'Fall', 2005, 'C-'); + insert into takes values('48778', '735', '1', 'Spring', 2003, 'A-'); + insert into takes values('28128', '893', '1', 'Fall', 2007, 'C+'); + insert into takes values('5920', '527', '1', 'Fall', 2004, 'A '); + insert into takes values('41596', '704', '1', 'Spring', 2008, 'A '); + insert into takes values('36379', '304', '1', 'Fall', 2009, 'A '); + insert into takes values('898', '400', '1', 'Spring', 2007, 'B '); + insert into takes values('27727', '735', '1', 'Spring', 2003, 'B-'); + insert into takes values('46450', '408', '1', 'Spring', 2007, 'A+'); + insert into takes values('75299', '748', '1', 'Fall', 2003, 'C-'); + insert into takes values('26028', '169', '2', 'Fall', 2002, 'A+'); + insert into takes values('74796', '760', '1', 'Spring', 2004, 'C '); + insert into takes values('978', '696', '1', 'Spring', 2002, 'A+'); + insert into takes values('25077', '242', '1', 'Fall', 2009, 'B-'); + insert into takes values('28361', '960', '1', 'Fall', 2009, 'C+'); + insert into takes values('20974', '443', '2', 'Spring', 2002, 'C-'); + insert into takes values('28518', '270', '1', 'Spring', 2010, 'A-'); + insert into takes values('69132', '679', '1', 'Spring', 2010, 'C '); + insert into takes values('37818', '258', '1', 'Fall', 2007, 'B-'); + insert into takes values('86404', '949', '1', 'Fall', 2007, 'C+'); + insert into takes values('9084', '270', '1', 'Spring', 2010, 'C '); + insert into takes values('90220', '482', '1', 'Fall', 2005, 'C+'); + insert into takes values('5005', '200', '1', 'Spring', 2007, 'A '); + insert into takes values('14023', '692', '1', 'Spring', 2010, 'A-'); + insert into takes values('67725', '949', '1', 'Fall', 2007, 'A '); + insert into takes values('24630', '489', '1', 'Fall', 2007, 'C+'); + insert into takes values('78892', '192', '1', 'Fall', 2002, 'C '); + insert into takes values('38712', '694', '1', 'Fall', 2002, 'A '); + insert into takes values('16631', '748', '1', 'Fall', 2003, 'A-'); + insert into takes values('26473', '408', '2', 'Spring', 2003, 'A-'); + insert into takes values('81610', '457', '1', 'Spring', 2001, 'B '); + insert into takes values('56003', '338', '1', 'Spring', 2007, 'C-'); + insert into takes values('76743', '748', '1', 'Fall', 2003, 'A '); + insert into takes values('74840', '274', '1', 'Fall', 2002, 'A '); + insert into takes values('38899', '735', '2', 'Spring', 2010, 'B '); + insert into takes values('90009', '852', '1', 'Spring', 2008, 'A+'); + insert into takes values('13408', '599', '1', 'Spring', 2003, 'C '); + insert into takes values('57431', '362', '2', 'Fall', 2006, 'C '); + insert into takes values('93653', '362', '3', 'Spring', 2008, 'C '); + insert into takes values('92417', '362', '2', 'Fall', 2006, 'A-'); + insert into takes values('52750', '137', '1', 'Spring', 2002, 'C-'); + insert into takes values('3039', '421', '1', 'Fall', 2004, 'B-'); + insert into takes values('36019', '345', '1', 'Spring', 2008, 'B+'); + insert into takes values('45680', '692', '1', 'Spring', 2010, 'C-'); + insert into takes values('39241', '366', '1', 'Fall', 2005, 'C-'); + insert into takes values('90041', '401', '1', 'Fall', 2003, 'C-'); + insert into takes values('67371', '338', '2', 'Spring', 2006, 'C-'); + insert into takes values('12078', '362', '3', 'Spring', 2008, 'B '); + insert into takes values('19536', '192', '1', 'Fall', 2002, 'A+'); + insert into takes values('83462', '258', '1', 'Fall', 2007, 'B '); + insert into takes values('9460', '169', '1', 'Spring', 2007, 'B+'); + insert into takes values('34018', '313', '1', 'Fall', 2010, 'A '); + insert into takes values('86344', '747', '1', 'Spring', 2004, 'C+'); + insert into takes values('45680', '468', '2', 'Fall', 2007, 'B+'); + insert into takes values('53805', '237', '1', 'Spring', 2008, 'B+'); + insert into takes values('96988', '401', '1', 'Fall', 2003, 'A-'); + insert into takes values('15328', '192', '1', 'Fall', 2002, 'A-'); + insert into takes values('94990', '603', '1', 'Fall', 2003, 'A '); + insert into takes values('14432', '808', '1', 'Fall', 2003, 'A '); + insert into takes values('37581', '692', '1', 'Spring', 2010, 'C-'); + insert into takes values('57334', '400', '2', 'Fall', 2003, 'C '); + insert into takes values('21552', '457', '1', 'Spring', 2001, 'B+'); + insert into takes values('93708', '313', '1', 'Fall', 2010, 'B-'); + insert into takes values('77289', '604', '1', 'Spring', 2009, 'A '); + insert into takes values('40897', '679', '1', 'Spring', 2010, 'B-'); + insert into takes values('45002', '486', '1', 'Fall', 2009, 'C '); + insert into takes values('43993', '362', '1', 'Fall', 2005, 'B+'); + insert into takes values('4438', '893', '1', 'Fall', 2007, 'B '); + insert into takes values('51868', '401', '1', 'Fall', 2003, 'B '); + insert into takes values('37759', '258', '1', 'Fall', 2007, 'B-'); + insert into takes values('63390', '169', '2', 'Fall', 2002, 'C-'); + insert into takes values('90082', '137', '1', 'Spring', 2002, 'C '); + insert into takes values('49813', '274', '1', 'Fall', 2002, 'A+'); + insert into takes values('79352', '852', '1', 'Spring', 2008, 'A+'); + insert into takes values('72669', '445', '1', 'Spring', 2001, 'B-'); + insert into takes values('27043', '696', '1', 'Spring', 2002, 'B '); + insert into takes values('77361', '581', '1', 'Spring', 2005, 'C-'); + insert into takes values('56598', '663', '1', 'Spring', 2005, 'A '); + insert into takes values('97868', '704', '1', 'Spring', 2008, 'B+'); + insert into takes values('66494', '169', '2', 'Fall', 2002, 'A-'); + insert into takes values('81258', '791', '1', 'Spring', 2006, 'A '); + insert into takes values('94726', '408', '1', 'Spring', 2007, 'C-'); + insert into takes values('8426', '527', '1', 'Fall', 2004, 'A+'); + insert into takes values('90181', '747', '1', 'Spring', 2004, 'B+'); + insert into takes values('33107', '400', '1', 'Spring', 2007, 'C+'); + insert into takes values('47670', '795', '1', 'Spring', 2004, 'B '); + insert into takes values('75173', '663', '1', 'Spring', 2005, 'B-'); + insert into takes values('99730', '612', '1', 'Fall', 2007, 'C-'); + insert into takes values('87222', '169', '1', 'Spring', 2007, 'A '); + insert into takes values('22179', '239', '1', 'Fall', 2006, 'C '); + insert into takes values('1727', '362', '3', 'Spring', 2008, 'C '); + insert into takes values('98388', '972', '1', 'Spring', 2009, 'A+'); + insert into takes values('91091', '366', '1', 'Fall', 2005, 'A '); + insert into takes values('11441', '443', '1', 'Spring', 2010, 'B+'); + insert into takes values('84515', '631', '1', 'Spring', 2007, 'B+'); + insert into takes values('52134', '581', '1', 'Spring', 2005, 'B-'); + insert into takes values('44038', '200', '2', 'Fall', 2002, 'A+'); + insert into takes values('67371', '237', '2', 'Fall', 2009, 'A+'); + insert into takes values('67725', '561', '1', 'Fall', 2006, 'A+'); + insert into takes values('51203', '864', '1', 'Spring', 2006, 'A-'); + insert into takes values('99780', '445', '1', 'Spring', 2001, 'A-'); + insert into takes values('21086', '400', '1', 'Spring', 2007, 'A '); + insert into takes values('37038', '808', '1', 'Fall', 2003, 'A-'); + insert into takes values('30222', '959', '1', 'Fall', 2006, 'A-'); + insert into takes values('5298', '843', '1', 'Fall', 2010, 'B '); + insert into takes values('11202', '599', '1', 'Spring', 2003, 'B-'); + insert into takes values('49339', '793', '1', 'Spring', 2002, 'A '); + insert into takes values('50386', '791', '1', 'Spring', 2006, 'C '); + insert into takes values('46442', '696', '1', 'Spring', 2002, 'B-'); + insert into takes values('64222', '991', '1', 'Spring', 2008, 'C+'); + insert into takes values('33651', '169', '1', 'Spring', 2007, 'A-'); + insert into takes values('61065', '445', '1', 'Spring', 2001, 'A-'); + insert into takes values('16515', '679', '1', 'Spring', 2010, 'A '); + insert into takes values('55238', '338', '1', 'Spring', 2007, 'C-'); + insert into takes values('83836', '962', '1', 'Spring', 2008, 'A+'); + insert into takes values('89234', '972', '1', 'Spring', 2009, 'A '); + insert into takes values('49873', '349', '1', 'Spring', 2008, 'A '); + insert into takes values('27528', '864', '1', 'Spring', 2006, 'B+'); + insert into takes values('41683', '426', '1', 'Spring', 2006, 'A '); + insert into takes values('98315', '457', '1', 'Spring', 2001, 'B+'); + insert into takes values('29462', '496', '1', 'Fall', 2001, 'C+'); + insert into takes values('37586', '591', '1', 'Spring', 2005, 'A '); + insert into takes values('94766', '400', '2', 'Fall', 2003, 'B+'); + insert into takes values('77218', '692', '1', 'Spring', 2010, 'A+'); + insert into takes values('93043', '105', '2', 'Fall', 2002, 'B '); + insert into takes values('26028', '270', '1', 'Spring', 2010, 'B+'); + insert into takes values('20489', '461', '1', 'Fall', 2002, 'B+'); + insert into takes values('24630', '443', '2', 'Spring', 2002, 'B-'); + insert into takes values('10838', '362', '1', 'Fall', 2005, 'A '); + insert into takes values('15578', '489', '1', 'Fall', 2007, 'A-'); + insert into takes values('81876', '237', '2', 'Fall', 2009, 'C-'); + insert into takes values('13753', '581', '1', 'Spring', 2005, 'B-'); + insert into takes values('19450', '400', '1', 'Spring', 2007, 'C+'); + insert into takes values('45200', '960', '2', 'Fall', 2006, 'A+'); + insert into takes values('68720', '735', '1', 'Spring', 2003, 'C '); + insert into takes values('57083', '237', '2', 'Fall', 2009, 'B+'); + insert into takes values('54728', '875', '1', 'Spring', 2005, 'C+'); + insert into takes values('32464', '735', '2', 'Spring', 2010, 'A '); + insert into takes values('25256', '169', '1', 'Spring', 2007, 'A+'); + insert into takes values('95284', '461', '1', 'Fall', 2002, 'C-'); + insert into takes values('81028', '694', '1', 'Fall', 2002, 'C '); + insert into takes values('60224', '345', '1', 'Spring', 2008, 'A-'); + insert into takes values('56755', '561', '1', 'Fall', 2006, 'B '); + insert into takes values('72622', '421', '1', 'Fall', 2004, 'C '); + insert into takes values('86833', '791', '1', 'Spring', 2006, 'C '); + insert into takes values('50039', '626', '1', 'Fall', 2006, 'A+'); + insert into takes values('667', '927', '1', 'Fall', 2002, 'C+'); + insert into takes values('10838', '852', '1', 'Spring', 2008, 'A '); + insert into takes values('85981', '679', '1', 'Spring', 2010, 'B-'); + insert into takes values('52291', '421', '1', 'Fall', 2004, 'C+'); + insert into takes values('91091', '338', '2', 'Spring', 2006, 'B+'); + insert into takes values('48165', '559', '1', 'Fall', 2002, 'B-'); + insert into takes values('18709', '642', '1', 'Fall', 2004, 'A '); + insert into takes values('23392', '493', '1', 'Spring', 2010, 'C+'); + insert into takes values('56057', '959', '1', 'Fall', 2006, 'B '); + insert into takes values('19342', '445', '1', 'Spring', 2001, 'B+'); + insert into takes values('61127', '319', '1', 'Spring', 2003, 'B+'); + insert into takes values('59046', '974', '1', 'Fall', 2003, 'A '); + insert into takes values('43989', '304', '1', 'Fall', 2009, 'C-'); + insert into takes values('96227', '692', '1', 'Spring', 2010, 'C '); + insert into takes values('40080', '663', '1', 'Spring', 2005, 'A '); + insert into takes values('18775', '239', '1', 'Fall', 2006, 'C-'); + insert into takes values('79892', '959', '1', 'Fall', 2006, 'A-'); + insert into takes values('51862', '105', '2', 'Fall', 2002, 'B+'); + insert into takes values('22345', '631', '1', 'Spring', 2007, 'A '); + insert into takes values('57213', '349', '1', 'Spring', 2008, 'A-'); + insert into takes values('81028', '974', '1', 'Fall', 2003, 'A '); + insert into takes values('50013', '468', '1', 'Fall', 2005, 'C-'); + insert into takes values('8853', '239', '1', 'Fall', 2006, 'A '); + insert into takes values('24201', '443', '2', 'Spring', 2002, 'B+'); + insert into takes values('73606', '802', '1', 'Spring', 2003, 'C-'); + insert into takes values('72528', '105', '2', 'Fall', 2002, 'B+'); + insert into takes values('31476', '468', '2', 'Fall', 2007, 'C-'); + insert into takes values('92839', '867', '2', 'Fall', 2010, 'B-'); + insert into takes values('83444', '735', '1', 'Spring', 2003, 'B+'); + insert into takes values('41832', '631', '1', 'Spring', 2007, 'B-'); + insert into takes values('52187', '960', '1', 'Fall', 2009, 'A-'); + insert into takes values('827', '105', '1', 'Fall', 2009, 'A-'); + insert into takes values('74840', '408', '1', 'Spring', 2007, 'C-'); + insert into takes values('46655', '959', '1', 'Fall', 2006, 'B '); + insert into takes values('52523', '960', '2', 'Fall', 2006, 'C-'); + insert into takes values('83622', '962', '1', 'Spring', 2008, 'B-'); + insert into takes values('97629', '808', '1', 'Fall', 2003, 'A '); + insert into takes values('95029', '927', '1', 'Fall', 2002, 'B+'); + insert into takes values('14182', '927', '1', 'Fall', 2002, 'B-'); + insert into takes values('41832', '972', '1', 'Spring', 2009, 'C '); + insert into takes values('51008', '362', '1', 'Fall', 2005, 'A-'); + insert into takes values('75794', '421', '1', 'Fall', 2004, 'A+'); + insert into takes values('84495', '960', '2', 'Fall', 2006, 'C-'); + insert into takes values('20803', '663', '1', 'Spring', 2005, 'B-'); + insert into takes values('37869', '493', '1', 'Spring', 2010, 'B+'); + insert into takes values('42019', '169', '1', 'Spring', 2007, 'B '); + insert into takes values('39114', '192', '1', 'Fall', 2002, 'A-'); + insert into takes values('78314', '408', '2', 'Spring', 2003, 'A+'); + insert into takes values('41211', '408', '2', 'Spring', 2003, 'B '); + insert into takes values('17133', '927', '1', 'Fall', 2002, 'A+'); + insert into takes values('94766', '629', '1', 'Spring', 2003, 'C-'); + insert into takes values('11453', '581', '1', 'Spring', 2005, 'C+'); + insert into takes values('93653', '237', '1', 'Spring', 2008, 'C+'); + insert into takes values('60249', '927', '1', 'Fall', 2002, 'A-'); + insert into takes values('499', '631', '1', 'Spring', 2007, 'B-'); + insert into takes values('52945', '352', '1', 'Spring', 2006, 'B '); + insert into takes values('16849', '338', '1', 'Spring', 2007, 'C '); + insert into takes values('69081', '927', '1', 'Fall', 2002, 'B+'); + insert into takes values('4438', '694', '1', 'Fall', 2002, 'C+'); + insert into takes values('59290', '760', '1', 'Spring', 2004, 'A-'); + insert into takes values('1367', '401', '1', 'Fall', 2003, 'A-'); + insert into takes values('8378', '808', '1', 'Fall', 2003, 'B+'); + insert into takes values('90372', '696', '1', 'Spring', 2002, 'A '); + insert into takes values('65703', '642', '1', 'Fall', 2004, 'C+'); + insert into takes values('16969', '959', '1', 'Fall', 2006, 'B+'); + insert into takes values('89051', '486', '1', 'Fall', 2009, 'B '); + insert into takes values('99764', '545', '1', 'Fall', 2001, 'A+'); + insert into takes values('36102', '169', '2', 'Fall', 2002, 'A-'); + insert into takes values('35523', '748', '1', 'Fall', 2003, 'B+'); + insert into takes values('78332', '489', '1', 'Fall', 2007, 'A+'); + insert into takes values('50966', '137', '1', 'Spring', 2002, 'C+'); + insert into takes values('90220', '376', '1', 'Fall', 2006, 'C-'); + insert into takes values('12683', '274', '1', 'Fall', 2002, 'B-'); + insert into takes values('44881', '319', '1', 'Spring', 2003, 'C '); + insert into takes values('108', '457', '1', 'Spring', 2001, 'C '); + insert into takes values('46655', '352', '1', 'Spring', 2006, 'A+'); + insert into takes values('31086', '694', '1', 'Fall', 2002, 'B+'); + insert into takes values('8603', '192', '1', 'Fall', 2002, 'A-'); + insert into takes values('14639', '338', '1', 'Spring', 2007, 'C-'); + insert into takes values('36685', '426', '1', 'Spring', 2006, 'A '); + insert into takes values('36881', '694', '1', 'Fall', 2002, 'A-'); + insert into takes values('18636', '972', '1', 'Spring', 2009, 'C-'); + insert into takes values('45002', '527', '1', 'Fall', 2004, 'A '); + insert into takes values('64724', '270', '1', 'Spring', 2010, 'B '); + insert into takes values('22086', '482', '1', 'Fall', 2005, 'B '); + insert into takes values('67310', '476', '1', 'Fall', 2010, 'A-'); + insert into takes values('71630', '338', '2', 'Spring', 2006, 'A '); + insert into takes values('25525', '591', '1', 'Spring', 2005, 'C-'); + insert into takes values('84808', '400', '1', 'Spring', 2007, 'A-'); + insert into takes values('62487', '443', '1', 'Spring', 2010, 'C '); + insert into takes values('52057', '270', '1', 'Spring', 2010, 'B+'); + insert into takes values('87246', '200', '2', 'Fall', 2002, 'A-'); + insert into takes values('76768', '426', '1', 'Spring', 2006, 'A-'); + insert into takes values('98140', '401', '1', 'Fall', 2003, 'B+'); + insert into takes values('88993', '604', '1', 'Spring', 2009, 'C '); + insert into takes values('40932', '362', '3', 'Spring', 2008, 'C '); + insert into takes values('63040', '274', '1', 'Fall', 2002, 'B+'); + insert into takes values('55915', '137', '1', 'Spring', 2002, 'B '); + insert into takes values('1922', '192', '1', 'Fall', 2002, 'C '); + insert into takes values('86736', '461', '1', 'Fall', 2002, 'A '); + insert into takes values('94697', '192', '1', 'Fall', 2002, 'C-'); + insert into takes values('98423', '991', '1', 'Spring', 2008, 'C '); + insert into takes values('64169', '991', '1', 'Spring', 2008, 'C '); + insert into takes values('33107', '559', '1', 'Fall', 2002, 'A+'); + insert into takes values('68712', '376', '1', 'Fall', 2006, 'C '); + insert into takes values('53728', '642', '1', 'Fall', 2004, 'C '); + insert into takes values('1812', '258', '1', 'Fall', 2007, 'A '); + insert into takes values('82580', '747', '1', 'Spring', 2004, 'C+'); + insert into takes values('39394', '362', '2', 'Fall', 2006, 'A+'); + insert into takes values('6474', '959', '1', 'Fall', 2006, 'A-'); + insert into takes values('27898', '704', '1', 'Spring', 2008, 'C-'); + insert into takes values('65144', '603', '1', 'Fall', 2003, 'B '); + insert into takes values('44038', '237', '1', 'Spring', 2008, 'C '); + insert into takes values('92839', '445', '1', 'Spring', 2001, 'C+'); + insert into takes values('71287', '274', '1', 'Fall', 2002, 'B-'); + insert into takes values('76799', '949', '1', 'Fall', 2007, 'B-'); + insert into takes values('14874', '496', '1', 'Fall', 2001, 'B+'); + insert into takes values('71387', '362', '2', 'Fall', 2006, 'B '); + insert into takes values('59530', '747', '1', 'Spring', 2004, 'B+'); + insert into takes values('86753', '200', '1', 'Spring', 2007, 'C+'); + insert into takes values('49982', '852', '1', 'Spring', 2008, 'A '); + insert into takes values('57238', '401', '1', 'Fall', 2003, 'B+'); + insert into takes values('32954', '791', '1', 'Spring', 2006, 'C-'); + insert into takes values('43226', '352', '1', 'Spring', 2006, 'C-'); + insert into takes values('87054', '791', '1', 'Spring', 2006, 'C+'); + insert into takes values('65753', '527', '1', 'Fall', 2004, 'C+'); + insert into takes values('11237', '808', '1', 'Fall', 2003, 'A '); + insert into takes values('34770', '747', '1', 'Spring', 2004, 'A '); + insert into takes values('39876', '735', '1', 'Spring', 2003, 'C '); + insert into takes values('72622', '559', '1', 'Fall', 2002, 'A '); + insert into takes values('78469', '489', '1', 'Fall', 2007, 'B-'); + insert into takes values('83314', '489', '1', 'Fall', 2007, 'A-'); + insert into takes values('41988', '319', '1', 'Spring', 2003, 'B+'); + insert into takes values('61003', '702', '1', 'Spring', 2001, 'C-'); + insert into takes values('84039', '270', '1', 'Spring', 2010, 'B '); + insert into takes values('21009', '561', '1', 'Fall', 2006, 'A-'); + insert into takes values('81207', '158', '1', 'Fall', 2008, 'B-'); + insert into takes values('54672', '169', '1', 'Spring', 2007, 'A-'); + insert into takes values('58326', '362', '1', 'Fall', 2005, 'A+'); + insert into takes values('63090', '493', '1', 'Spring', 2010, 'C-'); + insert into takes values('64934', '242', '1', 'Fall', 2009, 'B-'); + insert into takes values('51093', '867', '2', 'Fall', 2010, 'C '); + insert into takes values('282', '735', '2', 'Spring', 2010, 'A-'); + insert into takes values('8853', '629', '1', 'Spring', 2003, 'C-'); + insert into takes values('65438', '270', '1', 'Spring', 2010, 'B '); + insert into takes values('70564', '795', '1', 'Spring', 2004, 'B+'); + insert into takes values('78332', '137', '1', 'Spring', 2002, 'A-'); + insert into takes values('37339', '561', '1', 'Fall', 2006, 'A '); + insert into takes values('21100', '445', '1', 'Spring', 2001, 'C-'); + insert into takes values('20803', '493', '1', 'Spring', 2010, 'B '); + insert into takes values('4345', '258', '1', 'Fall', 2007, 'C '); + insert into takes values('29707', '867', '2', 'Fall', 2010, 'C-'); + insert into takes values('98388', '408', '2', 'Spring', 2003, 'B-'); + insert into takes values('72186', '852', '1', 'Spring', 2008, 'B '); + insert into takes values('49214', '362', '3', 'Spring', 2008, 'A-'); + insert into takes values('98870', '791', '1', 'Spring', 2006, 'B '); + insert into takes values('19917', '376', '1', 'Fall', 2006, 'C+'); + insert into takes values('31337', '468', '1', 'Fall', 2005, 'A-'); + insert into takes values('1884', '545', '1', 'Fall', 2001, 'B-'); + insert into takes values('84189', '349', '1', 'Spring', 2008, 'A+'); + insert into takes values('37284', '137', '1', 'Spring', 2002, 'C-'); + insert into takes values('31560', '334', '1', 'Fall', 2009, 'C '); + insert into takes values('84702', '604', '1', 'Spring', 2009, 'A-'); + insert into takes values('56212', '791', '1', 'Spring', 2006, 'C+'); + insert into takes values('23994', '445', '1', 'Spring', 2001, 'A+'); + insert into takes values('2970', '270', '1', 'Spring', 2010, 'B+'); + insert into takes values('80990', '352', '1', 'Spring', 2006, 'C+'); + insert into takes values('71529', '421', '1', 'Fall', 2004, 'A+'); + insert into takes values('87785', '400', '2', 'Fall', 2003, 'B '); + insert into takes values('31476', '867', '2', 'Fall', 2010, 'A+'); + insert into takes values('49280', '421', '1', 'Fall', 2004, 'C+'); + insert into takes values('86404', '972', '1', 'Spring', 2009, 'C '); + insert into takes values('63039', '468', '2', 'Fall', 2007, 'B+'); + insert into takes values('23994', '338', '2', 'Spring', 2006, 'B '); + insert into takes values('32419', '696', '1', 'Spring', 2002, 'B+'); + insert into takes values('45300', '443', '2', 'Spring', 2002, 'B+'); + insert into takes values('48901', '192', '1', 'Fall', 2002, 'B+'); + insert into takes values('36379', '239', '1', 'Fall', 2006, 'B+'); + insert into takes values('83838', '105', '2', 'Fall', 2002, 'C+'); + insert into takes values('22170', '559', '1', 'Fall', 2002, 'C '); + insert into takes values('57135', '401', '1', 'Fall', 2003, 'C-'); + insert into takes values('50386', '629', '1', 'Spring', 2003, 'C '); + insert into takes values('61354', '972', '1', 'Spring', 2009, 'A-'); + insert into takes values('58606', '105', '1', 'Fall', 2009, 'B+'); + insert into takes values('4015', '793', '1', 'Spring', 2002, 'B '); + insert into takes values('5943', '376', '1', 'Fall', 2006, 'C+'); + insert into takes values('9993', '696', '1', 'Spring', 2002, 'C '); + insert into takes values('49391', '527', '1', 'Fall', 2004, 'C+'); + insert into takes values('62054', '949', '1', 'Fall', 2007, 'A-'); + insert into takes values('86127', '345', '1', 'Spring', 2008, 'B+'); + insert into takes values('33759', '489', '1', 'Fall', 2007, 'A '); + insert into takes values('4645', '696', '1', 'Spring', 2002, 'A '); + insert into takes values('29192', '991', '1', 'Spring', 2008, 'A+'); + insert into takes values('69632', '747', '1', 'Spring', 2004, 'C+'); + insert into takes values('97868', '274', '1', 'Fall', 2002, 'B '); + insert into takes values('40044', '421', '1', 'Fall', 2004, 'A '); + insert into takes values('29002', '274', '1', 'Fall', 2002, 'C+'); + insert into takes values('7043', '791', '1', 'Spring', 2006, 'B-'); + insert into takes values('95175', '362', '2', 'Fall', 2006, 'C '); + insert into takes values('69307', '864', '1', 'Spring', 2006, 'A '); + insert into takes values('67657', '735', '2', 'Spring', 2010, 'C-'); + insert into takes values('51678', '612', '1', 'Fall', 2007, 'B '); + insert into takes values('41211', '334', '1', 'Fall', 2009, 'A+'); + insert into takes values('2848', '158', '2', 'Spring', 2008, 'A+'); + insert into takes values('81396', '603', '1', 'Fall', 2003, 'C '); + insert into takes values('84432', '795', '1', 'Spring', 2004, 'A-'); + insert into takes values('23506', '349', '1', 'Spring', 2008, 'A-'); + insert into takes values('51955', '137', '1', 'Spring', 2002, 'C-'); + insert into takes values('15578', '735', '1', 'Spring', 2003, 'C-'); + insert into takes values('95225', '400', '1', 'Spring', 2007, 'B '); + insert into takes values('38602', '352', '1', 'Spring', 2006, 'B-'); + insert into takes values('71529', '795', '1', 'Spring', 2004, 'C-'); + insert into takes values('79763', '489', '1', 'Fall', 2007, 'C-'); + insert into takes values('81566', '867', '2', 'Fall', 2010, 'A-'); + insert into takes values('53118', '304', '1', 'Fall', 2009, 'A '); + insert into takes values('3833', '581', '1', 'Spring', 2005, 'A-'); + insert into takes values('16543', '270', '1', 'Spring', 2010, 'C-'); + insert into takes values('67222', '867', '1', 'Fall', 2006, 'A '); + insert into takes values('46155', '893', '1', 'Fall', 2007, 'C '); + insert into takes values('89246', '791', '1', 'Spring', 2006, 'A-'); + insert into takes values('96895', '137', '1', 'Spring', 2002, 'C+'); + insert into takes values('55531', '559', '1', 'Fall', 2002, 'A '); + insert into takes values('83871', '345', '1', 'Spring', 2008, 'C '); + insert into takes values('48850', '626', '1', 'Fall', 2006, 'C-'); + insert into takes values('62728', '599', '1', 'Spring', 2003, 'B+'); + insert into takes values('43495', '949', '1', 'Fall', 2007, 'A-'); + insert into takes values('19791', '200', '1', 'Spring', 2007, 'C '); + insert into takes values('58300', '527', '1', 'Fall', 2004, 'A+'); + insert into takes values('38555', '489', '1', 'Fall', 2007, 'C-'); + insert into takes values('48165', '629', '1', 'Spring', 2003, 'B+'); + insert into takes values('31137', '991', '1', 'Spring', 2008, 'C+'); + insert into takes values('77548', '468', '1', 'Fall', 2005, 'A-'); + insert into takes values('28316', '476', '1', 'Fall', 2010, 'C '); + insert into takes values('32385', '962', '1', 'Spring', 2008, 'B-'); + insert into takes values('18709', '991', '1', 'Spring', 2008, 'B+'); + insert into takes values('36379', '760', '1', 'Spring', 2004, 'B-'); + insert into takes values('40481', '304', '1', 'Fall', 2009, 'C-'); + insert into takes values('64820', '274', '1', 'Fall', 2002, 'B-'); + insert into takes values('64013', '338', '1', 'Spring', 2007, 'A+'); + insert into takes values('29140', '457', '1', 'Spring', 2001, 'A '); + insert into takes values('19791', '527', '1', 'Fall', 2004, 'C '); + insert into takes values('67436', '795', '1', 'Spring', 2004, 'B-'); + insert into takes values('31266', '559', '1', 'Fall', 2002, 'B '); + insert into takes values('33791', '791', '1', 'Spring', 2006, 'C+'); + insert into takes values('97042', '960', '1', 'Fall', 2009, 'C '); + insert into takes values('88525', '604', '1', 'Spring', 2009, 'A+'); + insert into takes values('71630', '200', '2', 'Fall', 2002, 'A '); + insert into takes values('75395', '960', '1', 'Fall', 2009, 'A '); + insert into takes values('41211', '867', '2', 'Fall', 2010, 'C+'); + insert into takes values('25611', '735', '1', 'Spring', 2003, 'A-'); + insert into takes values('38121', '313', '1', 'Fall', 2010, 'B-'); + insert into takes values('86981', '169', '2', 'Fall', 2002, 'B+'); + insert into takes values('20195', '401', '1', 'Fall', 2003, 'A '); + insert into takes values('30164', '612', '1', 'Fall', 2007, 'C+'); + insert into takes values('17600', '974', '1', 'Fall', 2003, 'B+'); + insert into takes values('22417', '991', '1', 'Spring', 2008, 'B+'); + insert into takes values('28252', '169', '2', 'Fall', 2002, 'B-'); + insert into takes values('36995', '468', '1', 'Fall', 2005, 'B-'); + insert into takes values('6673', '735', '1', 'Spring', 2003, 'C-'); + insert into takes values('25256', '545', '1', 'Fall', 2001, 'B+'); + insert into takes values('13403', '489', '1', 'Fall', 2007, 'B '); + insert into takes values('93171', '158', '1', 'Fall', 2008, 'C+'); + insert into takes values('96052', '362', '3', 'Spring', 2008, 'C '); + insert into takes values('39521', '735', '1', 'Spring', 2003, 'A-'); + insert into takes values('3651', '802', '1', 'Spring', 2003, 'C+'); + insert into takes values('34569', '476', '1', 'Fall', 2010, 'B-'); + insert into takes values('21246', '482', '1', 'Fall', 2005, 'C-'); + insert into takes values('11453', '443', '1', 'Spring', 2010, 'C '); + insert into takes values('23475', '927', '1', 'Fall', 2002, 'B-'); + insert into takes values('71630', '591', '1', 'Spring', 2005, 'A-'); + insert into takes values('259', '960', '1', 'Fall', 2009, 'A '); + insert into takes values('70688', '704', '1', 'Spring', 2008, 'A-'); + insert into takes values('30188', '679', '1', 'Spring', 2010, 'C-'); + insert into takes values('71389', '867', '2', 'Fall', 2010, 'C-'); + insert into takes values('23439', '843', '1', 'Fall', 2010, 'A-'); + insert into takes values('27556', '200', '1', 'Spring', 2007, 'C+'); + insert into takes values('32130', '747', '1', 'Spring', 2004, 'B '); + insert into takes values('30299', '352', '1', 'Spring', 2006, 'B+'); + insert into takes values('58935', '482', '1', 'Fall', 2005, 'A+'); + insert into takes values('49391', '962', '1', 'Spring', 2008, 'A-'); + insert into takes values('89759', '242', '1', 'Fall', 2009, 'B-'); + insert into takes values('93061', '457', '1', 'Spring', 2001, 'C '); + insert into takes values('78469', '559', '1', 'Fall', 2002, 'A '); + insert into takes values('50206', '692', '1', 'Spring', 2010, 'C '); + insert into takes values('67560', '696', '1', 'Spring', 2002, 'A+'); + insert into takes values('16057', '169', '1', 'Spring', 2007, 'C-'); + insert into takes values('35138', '105', '1', 'Fall', 2009, 'B+'); + insert into takes values('91580', '476', '1', 'Fall', 2010, 'A-'); + insert into takes values('33201', '493', '1', 'Spring', 2010, 'B+'); + insert into takes values('64169', '457', '1', 'Spring', 2001, 'C+'); + insert into takes values('63310', '105', '2', 'Fall', 2002, 'A+'); + insert into takes values('68516', '349', '1', 'Spring', 2008, 'C '); + insert into takes values('79772', '489', '1', 'Fall', 2007, 'B-'); + insert into takes values('77364', '362', '2', 'Fall', 2006, 'B+'); + insert into takes values('33546', '443', '2', 'Spring', 2002, 'B+'); + insert into takes values('57941', '338', '1', 'Spring', 2007, 'B+'); + insert into takes values('41091', '692', '1', 'Spring', 2010, 'A '); + insert into takes values('17600', '349', '1', 'Spring', 2008, 'A '); + insert into takes values('29705', '704', '1', 'Spring', 2008, 'B+'); + insert into takes values('43348', '747', '1', 'Spring', 2004, 'A+'); + insert into takes values('74974', '626', '1', 'Fall', 2006, 'B-'); + insert into takes values('26619', '571', '1', 'Spring', 2004, 'B-'); + insert into takes values('29031', '338', '1', 'Spring', 2007, 'A-'); + insert into takes values('55531', '319', '1', 'Spring', 2003, 'C-'); + insert into takes values('66494', '747', '1', 'Spring', 2004, 'B '); + insert into takes values('37521', '366', '1', 'Fall', 2005, 'B-'); + insert into takes values('14284', '867', '2', 'Fall', 2010, 'A '); + insert into takes values('43016', '795', '1', 'Spring', 2004, 'C '); + insert into takes values('52876', '158', '1', 'Fall', 2008, 'B-'); + insert into takes values('48850', '760', '1', 'Spring', 2004, 'A '); + insert into takes values('42388', '843', '1', 'Fall', 2010, 'B '); + insert into takes values('38548', '400', '1', 'Spring', 2007, 'A+'); + insert into takes values('82082', '400', '2', 'Fall', 2003, 'B '); + insert into takes values('64039', '867', '1', 'Fall', 2006, 'A '); + insert into takes values('44998', '864', '1', 'Spring', 2006, 'A+'); + insert into takes values('57160', '626', '1', 'Fall', 2006, 'B+'); + insert into takes values('39514', '443', '1', 'Spring', 2010, 'B+'); + insert into takes values('89414', '692', '1', 'Spring', 2010, 'A-'); + insert into takes values('23344', '237', '1', 'Spring', 2008, 'C-'); + insert into takes values('85614', '802', '1', 'Spring', 2003, 'B-'); + insert into takes values('75241', '415', '1', 'Fall', 2010, 'B-'); + insert into takes values('65396', '927', '1', 'Fall', 2002, 'B '); + insert into takes values('65438', '696', '1', 'Spring', 2002, 'C+'); + insert into takes values('32954', '496', '1', 'Fall', 2001, 'A '); + insert into takes values('39204', '352', '1', 'Spring', 2006, 'B-'); + insert into takes values('64121', '421', '1', 'Fall', 2004, 'C-'); + insert into takes values('28409', '962', '1', 'Spring', 2008, 'A-'); + insert into takes values('46066', '338', '2', 'Spring', 2006, 'A+'); + insert into takes values('34197', '527', '1', 'Fall', 2004, 'A '); + insert into takes values('64593', '603', '1', 'Fall', 2003, 'B-'); + insert into takes values('54620', '962', '1', 'Spring', 2008, 'C-'); + insert into takes values('10693', '486', '1', 'Fall', 2009, 'C+'); + insert into takes values('32368', '461', '1', 'Fall', 2002, 'A '); + insert into takes values('13290', '808', '1', 'Fall', 2003, 'B-'); + insert into takes values('65681', '808', '1', 'Fall', 2003, 'B+'); + insert into takes values('14639', '793', '1', 'Spring', 2002, 'C '); + insert into takes values('40044', '561', '1', 'Fall', 2006, 'A+'); + insert into takes values('26730', '843', '1', 'Fall', 2010, 'A '); + insert into takes values('50206', '852', '1', 'Spring', 2008, 'C-'); + insert into takes values('99463', '476', '1', 'Fall', 2010, 'A-'); + insert into takes values('44551', '864', '1', 'Spring', 2006, 'C+'); + insert into takes values('34126', '400', '2', 'Fall', 2003, 'B '); + insert into takes values('75241', '748', '1', 'Fall', 2003, 'A+'); + insert into takes values('61232', '791', '1', 'Spring', 2006, 'A+'); + insert into takes values('38371', '338', '1', 'Spring', 2007, 'B '); + insert into takes values('18808', '258', '1', 'Fall', 2007, 'C-'); + insert into takes values('22004', '242', '1', 'Fall', 2009, 'A-'); + insert into takes values('41599', '400', '1', 'Spring', 2007, 'A-'); + insert into takes values('1884', '362', '2', 'Fall', 2006, 'C '); + insert into takes values('87965', '604', '1', 'Spring', 2009, 'C+'); + insert into takes values('28352', '401', '1', 'Fall', 2003, 'B+'); + insert into takes values('94801', '258', '1', 'Fall', 2007, 'A '); + insert into takes values('29871', '408', '1', 'Spring', 2007, 'C+'); + insert into takes values('76759', '545', '1', 'Fall', 2001, 'A '); + insert into takes values('3493', '960', '2', 'Fall', 2006, 'B-'); + insert into takes values('10454', '169', '2', 'Fall', 2002, 'A+'); + insert into takes values('64140', '793', '1', 'Spring', 2002, 'B '); + insert into takes values('12362', '319', '1', 'Spring', 2003, 'A '); + insert into takes values('85754', '408', '2', 'Spring', 2003, 'C-'); + insert into takes values('39881', '345', '1', 'Spring', 2008, 'C-'); + insert into takes values('5208', '748', '1', 'Fall', 2003, 'A+'); + insert into takes values('85445', '334', '1', 'Fall', 2009, 'B+'); + insert into takes values('43348', '408', '1', 'Spring', 2007, 'A-'); + insert into takes values('94814', '304', '1', 'Fall', 2009, 'B+'); + insert into takes values('64945', '791', '1', 'Spring', 2006, 'B '); + insert into takes values('35462', '704', '1', 'Spring', 2008, 'C+'); + insert into takes values('12078', '239', '1', 'Fall', 2006, 'C-'); + insert into takes values('77244', '545', '1', 'Fall', 2001, 'B+'); + insert into takes values('33338', '795', '1', 'Spring', 2004, 'C-'); + insert into takes values('35462', '571', '1', 'Spring', 2004, 'A '); + insert into takes values('40558', '591', '1', 'Spring', 2005, 'B-'); + insert into takes values('56124', '421', '1', 'Fall', 2004, 'B+'); + insert into takes values('84808', '843', '1', 'Fall', 2010, 'B-'); + insert into takes values('60867', '349', '1', 'Spring', 2008, 'C '); + insert into takes values('90041', '692', '1', 'Spring', 2010, 'A+'); + insert into takes values('44551', '362', '2', 'Fall', 2006, 'A-'); + insert into takes values('39552', '802', '1', 'Spring', 2003, 'A-'); + insert into takes values('70395', '747', '1', 'Spring', 2004, 'B+'); + insert into takes values('67146', '760', '1', 'Spring', 2004, 'C+'); + insert into takes values('36402', '735', '2', 'Spring', 2010, 'B+'); + insert into takes values('11095', '443', '1', 'Spring', 2010, 'C-'); + insert into takes values('57511', '468', '1', 'Fall', 2005, 'B-'); + insert into takes values('3005', '843', '1', 'Fall', 2010, 'C '); + insert into takes values('48469', '468', '1', 'Fall', 2005, 'C+'); + insert into takes values('23500', '867', '2', 'Fall', 2010, 'C+'); + insert into takes values('82688', '242', '1', 'Fall', 2009, 'B '); + insert into takes values('43016', '200', '1', 'Spring', 2007, 'B-'); + insert into takes values('80248', '362', '2', 'Fall', 2006, 'A '); + insert into takes values('24442', '694', '1', 'Fall', 2002, 'A '); + insert into takes values('72165', '702', '1', 'Spring', 2001, 'B-'); + insert into takes values('69521', '496', '1', 'Fall', 2001, 'B-'); + insert into takes values('66469', '362', '3', 'Spring', 2008, 'A-'); + insert into takes values('52057', '629', '1', 'Spring', 2003, 'C '); + insert into takes values('70828', '376', '1', 'Fall', 2006, 'B+'); + insert into takes values('21126', '169', '1', 'Spring', 2007, 'C '); + insert into takes values('50467', '352', '1', 'Spring', 2006, 'C '); + insert into takes values('47379', '239', '1', 'Fall', 2006, 'B '); + insert into takes values('46694', '237', '1', 'Spring', 2008, 'C+'); + insert into takes values('70965', '242', '1', 'Fall', 2009, 'A+'); + insert into takes values('5824', '345', '1', 'Spring', 2008, 'C+'); + insert into takes values('24630', '791', '1', 'Spring', 2006, 'B+'); + insert into takes values('54622', '443', '2', 'Spring', 2002, 'C-'); + insert into takes values('87222', '692', '1', 'Spring', 2010, 'C-'); + insert into takes values('77664', '443', '1', 'Spring', 2010, 'C '); + insert into takes values('99760', '192', '1', 'Fall', 2002, 'B+'); + insert into takes values('86981', '362', '3', 'Spring', 2008, 'B+'); + insert into takes values('31101', '408', '1', 'Spring', 2007, 'C+'); + insert into takes values('64893', '704', '1', 'Spring', 2008, 'A '); + insert into takes values('15883', '791', '1', 'Spring', 2006, 'B '); + insert into takes values('7020', '426', '1', 'Spring', 2006, 'B '); + insert into takes values('85981', '604', '1', 'Spring', 2009, 'A+'); + insert into takes values('73206', '362', '1', 'Fall', 2005, 'B-'); + insert into takes values('25611', '338', '1', 'Spring', 2007, 'A '); + insert into takes values('78922', '349', '1', 'Spring', 2008, 'C+'); + insert into takes values('842', '362', '3', 'Spring', 2008, 'B-'); + insert into takes values('914', '748', '1', 'Fall', 2003, 'B-'); + insert into takes values('97953', '105', '1', 'Fall', 2009, 'C-'); + insert into takes values('14639', '376', '1', 'Fall', 2006, 'C-'); + insert into takes values('82707', '200', '1', 'Spring', 2007, 'B '); + insert into takes values('55000', '415', '1', 'Fall', 2010, 'B+'); + insert into takes values('34126', '486', '1', 'Fall', 2009, 'A+'); + insert into takes values('57962', '545', '1', 'Fall', 2001, 'C '); + insert into takes values('90041', '867', '2', 'Fall', 2010, 'B+'); + insert into takes values('30289', '747', '1', 'Spring', 2004, 'C-'); + insert into takes values('97435', '991', '1', 'Spring', 2008, 'A+'); + insert into takes values('55857', '482', '1', 'Fall', 2005, 'B-'); + insert into takes values('40116', '960', '2', 'Fall', 2006, 'B-'); + insert into takes values('85356', '362', '2', 'Fall', 2006, 'A-'); + insert into takes values('69307', '270', '1', 'Spring', 2010, 'A-'); + insert into takes values('23311', '704', '1', 'Spring', 2008, 'A+'); + insert into takes values('90132', '400', '2', 'Fall', 2003, 'B+'); + insert into takes values('33107', '679', '1', 'Spring', 2010, 'C '); + insert into takes values('53185', '867', '2', 'Fall', 2010, 'C-'); + insert into takes values('31560', '864', '1', 'Spring', 2006, 'C+'); + insert into takes values('7861', '376', '1', 'Fall', 2006, 'B-'); + insert into takes values('36881', '843', '1', 'Fall', 2010, 'C+'); + insert into takes values('13495', '242', '1', 'Fall', 2009, 'B+'); + insert into takes values('88085', '408', '2', 'Spring', 2003, 'C '); + insert into takes values('88045', '694', '1', 'Fall', 2002, 'A+'); + insert into takes values('94697', '158', '2', 'Spring', 2008, 'A-'); + insert into takes values('75046', '795', '1', 'Spring', 2004, 'A '); + insert into takes values('72006', '927', '1', 'Fall', 2002, 'B '); + insert into takes values('64169', '486', '1', 'Fall', 2009, 'C+'); + insert into takes values('14484', '345', '1', 'Spring', 2008, 'B+'); + insert into takes values('70688', '476', '1', 'Fall', 2010, 'C+'); + insert into takes values('13504', '352', '1', 'Spring', 2006, 'A '); + insert into takes values('12236', '591', '1', 'Spring', 2005, 'B-'); + insert into takes values('41988', '105', '2', 'Fall', 2002, 'C+'); + insert into takes values('11083', '237', '2', 'Fall', 2009, 'B-'); + insert into takes values('34197', '679', '1', 'Spring', 2010, 'B-'); + insert into takes values('32490', '319', '1', 'Spring', 2003, 'B-'); + insert into takes values('28518', '169', '1', 'Spring', 2007, 'B '); + insert into takes values('19245', '313', '1', 'Fall', 2010, 'A-'); + insert into takes values('18859', '694', '1', 'Fall', 2002, 'C-'); + insert into takes values('83022', '747', '1', 'Spring', 2004, 'B+'); + insert into takes values('24197', '200', '2', 'Fall', 2002, 'C '); + insert into takes values('41827', '843', '1', 'Fall', 2010, 'B-'); + insert into takes values('14668', '242', '1', 'Fall', 2009, 'A+'); + insert into takes values('8517', '426', '1', 'Spring', 2006, 'C+'); + insert into takes values('3576', '192', '1', 'Fall', 2002, 'B '); + insert into takes values('67340', '748', '1', 'Fall', 2003, 'C '); + insert into takes values('73411', '696', '1', 'Spring', 2002, 'C '); + insert into takes values('98870', '631', '1', 'Spring', 2007, 'A+'); + insert into takes values('17339', '679', '1', 'Spring', 2010, 'C-'); + insert into takes values('85754', '991', '1', 'Spring', 2008, 'C+'); + insert into takes values('72014', '843', '1', 'Fall', 2010, 'C '); + insert into takes values('65208', '105', '2', 'Fall', 2002, 'A-'); + insert into takes values('7956', '795', '1', 'Spring', 2004, 'B-'); + insert into takes values('89297', '192', '1', 'Fall', 2002, 'A-'); + insert into takes values('58355', '169', '1', 'Spring', 2007, 'C+'); + insert into takes values('26881', '366', '1', 'Fall', 2005, 'B-'); + insert into takes values('4438', '704', '1', 'Spring', 2008, 'C '); + insert into takes values('15074', '791', '1', 'Spring', 2006, 'C+'); + insert into takes values('37101', '169', '2', 'Fall', 2002, 'B '); + insert into takes values('12979', '927', '1', 'Fall', 2002, 'C-'); + insert into takes values('40937', '468', '2', 'Fall', 2007, 'C '); + insert into takes values('29002', '843', '1', 'Fall', 2010, 'B '); + insert into takes values('23224', '561', '1', 'Fall', 2006, 'A-'); + insert into takes values('53089', '362', '3', 'Spring', 2008, 'A-'); + insert into takes values('98140', '169', '2', 'Fall', 2002, 'A+'); + insert into takes values('39520', '105', '1', 'Fall', 2009, 'B '); + insert into takes values('51093', '200', '2', 'Fall', 2002, 'B '); + insert into takes values('79170', '603', '1', 'Fall', 2003, 'A+'); + insert into takes values('57107', '489', '1', 'Fall', 2007, 'C+'); + insert into takes values('24325', '626', '1', 'Fall', 2006, 'C+'); + insert into takes values('42843', '747', '1', 'Spring', 2004, 'A+'); + insert into takes values('14499', '242', '1', 'Fall', 2009, 'C '); + insert into takes values('97868', '421', '1', 'Fall', 2004, 'B '); + insert into takes values('19603', '875', '1', 'Spring', 2005, 'C-'); + insert into takes values('81550', '237', '1', 'Spring', 2008, 'C-'); + insert into takes values('31080', '137', '1', 'Spring', 2002, 'C-'); + insert into takes values('79487', '366', '1', 'Fall', 2005, 'A+'); + insert into takes values('76799', '559', '1', 'Fall', 2002, 'C-'); + insert into takes values('33107', '338', '1', 'Spring', 2007, 'B+'); + insert into takes values('70099', '304', '1', 'Fall', 2009, 'B '); + insert into takes values('34502', '445', '1', 'Spring', 2001, 'B '); + insert into takes values('98940', '400', '2', 'Fall', 2003, 'C '); + insert into takes values('81538', '274', '1', 'Fall', 2002, 'A '); + insert into takes values('3335', '345', '1', 'Spring', 2008, 'C '); + insert into takes values('21766', '802', '1', 'Spring', 2003, 'B '); + insert into takes values('76895', '270', '1', 'Spring', 2010, 'A+'); + insert into takes values('544', '679', '1', 'Spring', 2010, 'B '); + insert into takes values('95284', '421', '1', 'Fall', 2004, 'C-'); + insert into takes values('96968', '192', '1', 'Fall', 2002, 'A '); + insert into takes values('28538', '362', '2', 'Fall', 2006, 'B+'); + insert into takes values('64121', '802', '1', 'Spring', 2003, 'B '); + insert into takes values('34322', '400', '2', 'Fall', 2003, 'C '); + insert into takes values('19450', '401', '1', 'Fall', 2003, 'C+'); + insert into takes values('64039', '808', '1', 'Fall', 2003, 'C+'); + insert into takes values('38545', '702', '1', 'Spring', 2001, 'A '); + insert into takes values('87246', '927', '1', 'Fall', 2002, 'B+'); + insert into takes values('38895', '893', '1', 'Fall', 2007, 'A+'); + insert into takes values('57474', '795', '1', 'Spring', 2004, 'B-'); + insert into takes values('58300', '808', '1', 'Fall', 2003, 'C-'); + insert into takes values('64140', '604', '1', 'Spring', 2009, 'C-'); + insert into takes values('57666', '489', '1', 'Fall', 2007, 'C-'); + insert into takes values('64401', '366', '1', 'Fall', 2005, 'A+'); + insert into takes values('51817', '242', '1', 'Fall', 2009, 'A+'); + insert into takes values('78116', '735', '1', 'Spring', 2003, 'C-'); + insert into takes values('90124', '642', '1', 'Fall', 2004, 'A+'); + insert into takes values('66212', '867', '2', 'Fall', 2010, 'B '); + insert into takes values('41751', '604', '1', 'Spring', 2009, 'C-'); + insert into takes values('46035', '239', '1', 'Fall', 2006, 'A+'); + insert into takes values('77289', '867', '2', 'Fall', 2010, 'B-'); + insert into takes values('61403', '200', '1', 'Spring', 2007, 'B '); + insert into takes values('24865', '603', '1', 'Fall', 2003, 'C+'); + insert into takes values('4034', '400', '2', 'Fall', 2003, 'B '); + insert into takes values('86806', '468', '1', 'Fall', 2005, 'B '); + insert into takes values('12683', '200', '1', 'Spring', 2007, 'A-'); + insert into takes values('34542', '559', '1', 'Fall', 2002, 'B-'); + insert into takes values('65241', '747', '1', 'Spring', 2004, 'B '); + insert into takes values('5920', '476', '1', 'Fall', 2010, 'A '); + insert into takes values('1460', '362', '3', 'Spring', 2008, 'A-'); + insert into takes values('28977', '748', '1', 'Fall', 2003, 'A '); + insert into takes values('96772', '571', '1', 'Spring', 2004, 'B-'); + insert into takes values('82301', '345', '1', 'Spring', 2008, 'C '); + insert into takes values('38676', '334', '1', 'Fall', 2009, 'B+'); + insert into takes values('65038', '852', '1', 'Spring', 2008, 'A-'); + insert into takes values('31690', '959', '1', 'Fall', 2006, 'B-'); + insert into takes values('81883', '949', '1', 'Fall', 2007, 'C+'); + insert into takes values('98830', '345', '1', 'Spring', 2008, 'B+'); + insert into takes values('80698', '200', '2', 'Fall', 2002, 'C '); + insert into takes values('45436', '338', '1', 'Spring', 2007, 'A '); + insert into takes values('82083', '603', '1', 'Fall', 2003, 'A+'); + insert into takes values('96085', '991', '1', 'Spring', 2008, 'B+'); + insert into takes values('89106', '476', '1', 'Fall', 2010, 'C+'); + insert into takes values('19848', '735', '1', 'Spring', 2003, 'C-'); + insert into takes values('6367', '612', '1', 'Fall', 2007, 'B '); + insert into takes values('11095', '457', '1', 'Spring', 2001, 'A '); + insert into takes values('95089', '426', '1', 'Spring', 2006, 'C+'); + insert into takes values('78911', '604', '1', 'Spring', 2009, 'C '); + insert into takes values('72014', '426', '1', 'Spring', 2006, 'A-'); + insert into takes values('24201', '493', '1', 'Spring', 2010, 'A+'); + insert into takes values('97101', '599', '1', 'Spring', 2003, 'C+'); + insert into takes values('29390', '400', '1', 'Spring', 2007, 'A '); + insert into takes values('36303', '962', '1', 'Spring', 2008, 'C-'); + insert into takes values('56882', '959', '1', 'Fall', 2006, 'C+'); + insert into takes values('64550', '270', '1', 'Spring', 2010, 'A '); + insert into takes values('69132', '591', '1', 'Spring', 2005, 'C-'); + insert into takes values('7020', '366', '1', 'Fall', 2005, 'A '); + insert into takes values('79352', '972', '1', 'Spring', 2009, 'B-'); + insert into takes values('72959', '704', '1', 'Spring', 2008, 'B-'); + insert into takes values('80248', '629', '1', 'Spring', 2003, 'B-'); + insert into takes values('46970', '366', '1', 'Fall', 2005, 'B+'); + insert into takes values('55286', '561', '1', 'Fall', 2006, 'C-'); + insert into takes values('62429', '959', '1', 'Fall', 2006, 'B+'); + insert into takes values('89551', '991', '1', 'Spring', 2008, 'A-'); + insert into takes values('6304', '852', '1', 'Spring', 2008, 'B-'); + insert into takes values('83747', '735', '2', 'Spring', 2010, 'C '); + insert into takes values('25611', '461', '1', 'Fall', 2002, 'C-'); + insert into takes values('65987', '748', '1', 'Fall', 2003, 'C-'); + insert into takes values('41450', '105', '1', 'Fall', 2009, 'B-'); + insert into takes values('6895', '334', '1', 'Fall', 2009, 'A-'); + insert into takes values('5414', '274', '1', 'Fall', 2002, 'A '); + insert into takes values('53699', '192', '1', 'Fall', 2002, 'B-'); + insert into takes values('64593', '426', '1', 'Spring', 2006, 'A '); + insert into takes values('25187', '482', '1', 'Fall', 2005, 'B '); + insert into takes values('32886', '400', '1', 'Spring', 2007, 'B-'); + insert into takes values('13511', '603', '1', 'Fall', 2003, 'C '); + insert into takes values('98047', '408', '1', 'Spring', 2007, 'C-'); + insert into takes values('93354', '468', '1', 'Fall', 2005, 'C+'); + insert into takes values('76057', '200', '2', 'Fall', 2002, 'C '); + insert into takes values('79210', '158', '1', 'Fall', 2008, 'B+'); + insert into takes values('42092', '192', '1', 'Fall', 2002, 'B+'); + insert into takes values('98984', '875', '1', 'Spring', 2005, 'C+'); + insert into takes values('7861', '457', '1', 'Spring', 2001, 'C+'); + insert into takes values('107', '274', '1', 'Fall', 2002, 'A+'); + insert into takes values('1954', '304', '1', 'Fall', 2009, 'C-'); + insert into takes values('77000', '694', '1', 'Fall', 2002, 'C-'); + insert into takes values('58701', '793', '1', 'Spring', 2002, 'B '); + insert into takes values('47001', '334', '1', 'Fall', 2009, 'B+'); + insert into takes values('88801', '793', '1', 'Spring', 2002, 'B-'); + insert into takes values('86651', '468', '2', 'Fall', 2007, 'B-'); + insert into takes values('64642', '972', '1', 'Spring', 2009, 'A+'); + insert into takes values('80651', '696', '1', 'Spring', 2002, 'A-'); + insert into takes values('35588', '603', '1', 'Fall', 2003, 'B+'); + insert into takes values('10838', '962', '1', 'Spring', 2008, 'B+'); + insert into takes values('21774', '991', '1', 'Spring', 2008, 'B '); + insert into takes values('27017', '559', '1', 'Fall', 2002, 'B '); + insert into takes values('66008', '571', '1', 'Spring', 2004, 'A+'); + insert into takes values('63040', '408', '1', 'Spring', 2007, 'A+'); + insert into takes values('80990', '237', '2', 'Fall', 2009, 'A-'); + insert into takes values('90181', '137', '1', 'Spring', 2002, 'B-'); + insert into takes values('40992', '345', '1', 'Spring', 2008, 'A-'); + insert into takes values('95099', '867', '1', 'Fall', 2006, 'B+'); + insert into takes values('35721', '629', '1', 'Spring', 2003, 'A '); + insert into takes values('66495', '561', '1', 'Fall', 2006, 'C+'); + insert into takes values('59908', '345', '1', 'Spring', 2008, 'C-'); + insert into takes values('80976', '864', '1', 'Spring', 2006, 'A+'); + insert into takes values('28952', '258', '1', 'Fall', 2007, 'A-'); + insert into takes values('34788', '461', '1', 'Fall', 2002, 'B+'); + insert into takes values('17207', '313', '1', 'Fall', 2010, 'B+'); + insert into takes values('81785', '482', '1', 'Fall', 2005, 'B+'); + insert into takes values('60748', '692', '1', 'Spring', 2010, 'C-'); + insert into takes values('64820', '338', '2', 'Spring', 2006, 'A+'); + insert into takes values('75534', '366', '1', 'Fall', 2005, 'C '); + insert into takes values('12971', '313', '1', 'Fall', 2010, 'C-'); + insert into takes values('45680', '791', '1', 'Spring', 2006, 'A+'); + insert into takes values('94730', '603', '1', 'Fall', 2003, 'B '); + insert into takes values('42114', '561', '1', 'Fall', 2006, 'C+'); + insert into takes values('33401', '158', '2', 'Spring', 2008, 'C-'); + insert into takes values('24630', '867', '1', 'Fall', 2006, 'C '); + insert into takes values('52494', '421', '1', 'Fall', 2004, 'A-'); + insert into takes values('61081', '959', '1', 'Fall', 2006, 'C-'); + insert into takes values('8378', '527', '1', 'Fall', 2004, 'A '); + insert into takes values('16515', '445', '1', 'Spring', 2001, 'A+'); + insert into takes values('5617', '559', '1', 'Fall', 2002, 'A-'); + insert into takes values('65438', '642', '1', 'Fall', 2004, 'A+'); + insert into takes values('72177', '704', '1', 'Spring', 2008, 'A-'); + insert into takes values('25046', '793', '1', 'Spring', 2002, 'A+'); + insert into takes values('76246', '482', '1', 'Fall', 2005, 'B+'); + insert into takes values('86404', '400', '2', 'Fall', 2003, 'A-'); + insert into takes values('66279', '559', '1', 'Fall', 2002, 'B '); + insert into takes values('16250', '702', '1', 'Spring', 2001, 'A-'); + insert into takes values('8517', '237', '2', 'Fall', 2009, 'C '); + insert into takes values('40937', '200', '2', 'Fall', 2002, 'B '); + insert into takes values('33817', '270', '1', 'Spring', 2010, 'C+'); + insert into takes values('77003', '959', '1', 'Fall', 2006, 'A-'); + insert into takes values('50267', '443', '1', 'Spring', 2010, 'C+'); + insert into takes values('50702', '345', '1', 'Spring', 2008, 'A+'); + insert into takes values('99764', '631', '1', 'Spring', 2007, 'C-'); + insert into takes values('18338', '304', '1', 'Fall', 2009, 'C '); + insert into takes values('80651', '468', '2', 'Fall', 2007, 'B+'); + insert into takes values('45002', '642', '1', 'Fall', 2004, 'B '); + insert into takes values('12711', '795', '1', 'Spring', 2004, 'A-'); + insert into takes values('32419', '867', '2', 'Fall', 2010, 'A-'); + insert into takes values('77000', '408', '1', 'Spring', 2007, 'A-'); + insert into takes values('99611', '802', '1', 'Spring', 2003, 'A+'); + insert into takes values('38476', '468', '2', 'Fall', 2007, 'C+'); + insert into takes values('65299', '747', '1', 'Spring', 2004, 'A-'); + insert into takes values('18636', '169', '2', 'Fall', 2002, 'C+'); + insert into takes values('57213', '426', '1', 'Spring', 2006, 'C+'); + insert into takes values('41674', '400', '1', 'Spring', 2007, 'C+'); + insert into takes values('70965', '304', '1', 'Fall', 2009, 'A+'); + insert into takes values('71529', '604', '1', 'Spring', 2009, 'A+'); + insert into takes values('83204', '401', '1', 'Fall', 2003, 'C+'); + insert into takes values('978', '581', '1', 'Spring', 2005, 'B '); + insert into takes values('92332', '581', '1', 'Spring', 2005, 'B-'); + insert into takes values('10527', '105', '2', 'Fall', 2002, 'C-'); + insert into takes values('29192', '476', '1', 'Fall', 2010, 'B+'); + insert into takes values('16311', '426', '1', 'Spring', 2006, 'C+'); + insert into takes values('22258', '612', '1', 'Fall', 2007, 'A '); + insert into takes values('760', '457', '1', 'Spring', 2001, 'B+'); + insert into takes values('85366', '105', '1', 'Fall', 2009, 'B+'); + insert into takes values('42625', '334', '1', 'Fall', 2009, 'B-'); + insert into takes values('98423', '345', '1', 'Spring', 2008, 'B '); + insert into takes values('90041', '949', '1', 'Fall', 2007, 'B+'); + insert into takes values('61402', '400', '2', 'Fall', 2003, 'C-'); + insert into takes values('73394', '735', '1', 'Spring', 2003, 'C '); + insert into takes values('63040', '795', '1', 'Spring', 2004, 'C+'); + insert into takes values('61527', '200', '1', 'Spring', 2007, 'C+'); + insert into takes values('77000', '704', '1', 'Spring', 2008, 'B+'); + insert into takes values('77361', '559', '1', 'Fall', 2002, 'A-'); + insert into takes values('7620', '962', '1', 'Spring', 2008, 'A-'); + insert into takes values('13028', '679', '1', 'Spring', 2010, 'C-'); + insert into takes values('75534', '679', '1', 'Spring', 2010, 'B+'); + insert into takes values('5920', '875', '1', 'Spring', 2005, 'A-'); + insert into takes values('90353', '200', '1', 'Spring', 2007, 'B '); + insert into takes values('74070', '694', '1', 'Fall', 2002, 'B+'); + insert into takes values('73606', '338', '2', 'Spring', 2006, 'A-'); + insert into takes values('11237', '852', '1', 'Spring', 2008, 'A '); + insert into takes values('40682', '603', '1', 'Fall', 2003, 'C '); + insert into takes values('46260', '760', '1', 'Spring', 2004, 'B+'); + insert into takes values('11422', '991', '1', 'Spring', 2008, 'A-'); + insert into takes values('10705', '489', '1', 'Fall', 2007, 'B '); + insert into takes values('5943', '702', '1', 'Spring', 2001, 'C-'); + insert into takes values('65443', '692', '1', 'Spring', 2010, 'B '); + insert into takes values('36244', '694', '1', 'Fall', 2002, 'A-'); + insert into takes values('58874', '486', '1', 'Fall', 2009, 'A '); + insert into takes values('66484', '960', '2', 'Fall', 2006, 'B+'); + insert into takes values('50386', '545', '1', 'Fall', 2001, 'B+'); + insert into takes values('61920', '991', '1', 'Spring', 2008, 'A-'); + insert into takes values('50598', '349', '1', 'Spring', 2008, 'C+'); + insert into takes values('70828', '631', '1', 'Spring', 2007, 'A-'); + insert into takes values('67560', '200', '1', 'Spring', 2007, 'B-'); + insert into takes values('23994', '949', '1', 'Fall', 2007, 'B+'); + insert into takes values('82063', '461', '1', 'Fall', 2002, 'C+'); + insert into takes values('30182', '169', '2', 'Fall', 2002, 'B-'); + insert into takes values('90567', '486', '1', 'Fall', 2009, 'A '); + insert into takes values('80976', '692', '1', 'Spring', 2010, 'C-'); + insert into takes values('91992', '974', '1', 'Fall', 2003, 'B+'); + insert into takes values('53185', '735', '2', 'Spring', 2010, 'A-'); + insert into takes values('6523', '735', '2', 'Spring', 2010, 'C '); + insert into takes values('93571', '461', '1', 'Fall', 2002, 'A '); + insert into takes values('12069', '105', '2', 'Fall', 2002, 'B+'); + insert into takes values('43432', '486', '1', 'Fall', 2009, 'C '); + insert into takes values('50365', '304', '1', 'Fall', 2009, 'C+'); + insert into takes values('35198', '362', '1', 'Fall', 2005, 'A+'); + insert into takes values('65299', '702', '1', 'Spring', 2001, 'C+'); + insert into takes values('36657', '445', '1', 'Spring', 2001, 'B+'); + insert into takes values('98830', '366', '1', 'Fall', 2005, 'C+'); + insert into takes values('69732', '338', '2', 'Spring', 2006, 'A+'); + insert into takes values('1884', '443', '2', 'Spring', 2002, 'B '); + insert into takes values('88417', '461', '1', 'Fall', 2002, 'C '); + insert into takes values('76743', '200', '1', 'Spring', 2007, 'B-'); + insert into takes values('67033', '352', '1', 'Spring', 2006, 'B+'); + insert into takes values('48776', '867', '1', 'Fall', 2006, 'B+'); + insert into takes values('75560', '486', '1', 'Fall', 2009, 'A '); + insert into takes values('76798', '304', '1', 'Fall', 2009, 'C-'); + insert into takes values('79170', '362', '1', 'Fall', 2005, 'A '); + insert into takes values('931', '991', '1', 'Spring', 2008, 'B+'); + insert into takes values('44271', '200', '1', 'Spring', 2007, 'C-'); + insert into takes values('85534', '694', '1', 'Fall', 2002, 'C+'); + insert into takes values('66293', '476', '1', 'Fall', 2010, 'B+'); + insert into takes values('12078', '795', '1', 'Spring', 2004, 'B '); + insert into takes values('18007', '696', '1', 'Spring', 2002, 'B-'); + insert into takes values('1367', '599', '1', 'Spring', 2003, 'A '); + insert into takes values('55915', '791', '1', 'Spring', 2006, 'C+'); + insert into takes values('29002', '802', '1', 'Spring', 2003, 'A+'); + insert into takes values('64164', '426', '1', 'Spring', 2006, 'A+'); + insert into takes values('41299', '867', '1', 'Fall', 2006, 'B-'); + insert into takes values('52371', '169', '1', 'Spring', 2007, 'B+'); + insert into takes values('21225', '313', '1', 'Fall', 2010, 'C-'); + insert into takes values('7854', '692', '1', 'Spring', 2010, 'A '); + insert into takes values('30182', '959', '1', 'Fall', 2006, 'C '); + insert into takes values('46655', '875', '1', 'Spring', 2005, 'B+'); + insert into takes values('30222', '421', '1', 'Fall', 2004, 'A+'); + insert into takes values('39881', '258', '1', 'Fall', 2007, 'B+'); + insert into takes values('75116', '400', '1', 'Spring', 2007, 'B '); + insert into takes values('69222', '366', '1', 'Fall', 2005, 'B '); + insert into takes values('2139', '421', '1', 'Fall', 2004, 'B '); + insert into takes values('10736', '808', '1', 'Fall', 2003, 'C+'); + insert into takes values('44271', '401', '1', 'Fall', 2003, 'B+'); + insert into takes values('60366', '795', '1', 'Spring', 2004, 'A+'); + insert into takes values('52929', '748', '1', 'Fall', 2003, 'C+'); + insert into takes values('28829', '747', '1', 'Spring', 2004, 'C+'); + insert into takes values('44038', '426', '1', 'Spring', 2006, 'C+'); + insert into takes values('48009', '482', '1', 'Fall', 2005, 'B+'); + insert into takes values('48423', '313', '1', 'Fall', 2010, 'A '); + insert into takes values('26802', '545', '1', 'Fall', 2001, 'C+'); + insert into takes values('80247', '468', '1', 'Fall', 2005, 'A '); + insert into takes values('12563', '461', '1', 'Fall', 2002, 'A+'); + insert into takes values('7656', '457', '1', 'Spring', 2001, 'B-'); + insert into takes values('16133', '169', '2', 'Fall', 2002, 'B-'); + insert into takes values('80420', '362', '3', 'Spring', 2008, 'B+'); + insert into takes values('52750', '791', '1', 'Spring', 2006, 'B-'); + insert into takes values('76246', '972', '1', 'Spring', 2009, 'C+'); + insert into takes values('22268', '748', '1', 'Fall', 2003, 'B+'); + insert into takes values('30650', '591', '1', 'Spring', 2005, 'C+'); + insert into takes values('89106', '559', '1', 'Fall', 2002, 'A+'); + insert into takes values('2201', '791', '1', 'Spring', 2006, 'A '); + insert into takes values('83557', '443', '2', 'Spring', 2002, 'C-'); + insert into takes values('28994', '270', '1', 'Spring', 2010, 'C-'); + insert into takes values('34386', '893', '1', 'Fall', 2007, 'C-'); + insert into takes values('75928', '237', '2', 'Fall', 2009, 'A+'); + insert into takes values('82083', '200', '1', 'Spring', 2007, 'C+'); + insert into takes values('85887', '482', '1', 'Fall', 2005, 'B+'); + insert into takes values('73268', '408', '2', 'Spring', 2003, 'B+'); + insert into takes values('1826', '237', '2', 'Fall', 2009, 'B-'); + insert into takes values('31302', '612', '1', 'Fall', 2007, 'A+'); + insert into takes values('40457', '338', '1', 'Spring', 2007, 'C-'); + insert into takes values('72669', '626', '1', 'Fall', 2006, 'A '); + insert into takes values('27044', '679', '1', 'Spring', 2010, 'C '); + insert into takes values('16993', '105', '1', 'Fall', 2009, 'B-'); + insert into takes values('1232', '960', '2', 'Fall', 2006, 'B-'); + insert into takes values('17086', '169', '1', 'Spring', 2007, 'B '); + insert into takes values('22170', '239', '1', 'Fall', 2006, 'A+'); + insert into takes values('3639', '426', '1', 'Spring', 2006, 'A+'); + insert into takes values('96193', '642', '1', 'Fall', 2004, 'C '); + insert into takes values('80976', '158', '2', 'Spring', 2008, 'A '); + insert into takes values('98843', '105', '2', 'Fall', 2002, 'B-'); + insert into takes values('84704', '604', '1', 'Spring', 2009, 'A+'); + insert into takes values('29959', '362', '1', 'Fall', 2005, 'B-'); + insert into takes values('34331', '258', '1', 'Fall', 2007, 'B-'); + insert into takes values('79210', '408', '1', 'Spring', 2007, 'A '); + insert into takes values('76224', '864', '1', 'Spring', 2006, 'B-'); + insert into takes values('65443', '960', '2', 'Fall', 2006, 'A+'); + insert into takes values('32772', '319', '1', 'Spring', 2003, 'C+'); + insert into takes values('14023', '959', '1', 'Fall', 2006, 'B-'); + insert into takes values('1018', '468', '1', 'Fall', 2005, 'B '); + insert into takes values('99369', '960', '1', 'Fall', 2009, 'C-'); + insert into takes values('13028', '366', '1', 'Fall', 2005, 'A+'); + insert into takes values('49214', '461', '1', 'Fall', 2002, 'B-'); + insert into takes values('23794', '852', '1', 'Spring', 2008, 'C+'); + insert into takes values('81638', '338', '2', 'Spring', 2006, 'B+'); + insert into takes values('96153', '893', '1', 'Fall', 2007, 'B-'); + insert into takes values('57107', '696', '1', 'Spring', 2002, 'C-'); + insert into takes values('19293', '802', '1', 'Spring', 2003, 'C+'); + insert into takes values('63489', '864', '1', 'Spring', 2006, 'A-'); + insert into takes values('99694', '349', '1', 'Spring', 2008, 'B '); + insert into takes values('16035', '445', '1', 'Spring', 2001, 'A-'); + insert into takes values('14628', '445', '1', 'Spring', 2001, 'C-'); + insert into takes values('11604', '545', '1', 'Fall', 2001, 'A+'); + insert into takes values('94620', '802', '1', 'Spring', 2003, 'C '); + insert into takes values('65056', '702', '1', 'Spring', 2001, 'A-'); + insert into takes values('96324', '304', '1', 'Fall', 2009, 'B '); + insert into takes values('16907', '461', '1', 'Fall', 2002, 'C '); + insert into takes values('6523', '239', '1', 'Fall', 2006, 'B+'); + insert into takes values('83136', '158', '1', 'Fall', 2008, 'B '); + insert into takes values('37219', '791', '1', 'Spring', 2006, 'A '); + insert into takes values('55238', '808', '1', 'Fall', 2003, 'C-'); + insert into takes values('60406', '105', '2', 'Fall', 2002, 'B '); + insert into takes values('51955', '793', '1', 'Spring', 2002, 'B-'); + insert into takes values('67542', '875', '1', 'Spring', 2005, 'C '); + insert into takes values('20540', '237', '2', 'Fall', 2009, 'B+'); + insert into takes values('15030', '571', '1', 'Spring', 2004, 'A+'); + insert into takes values('82083', '893', '1', 'Fall', 2007, 'B+'); + insert into takes values('7602', '962', '1', 'Spring', 2008, 'B '); + insert into takes values('45300', '242', '1', 'Fall', 2009, 'A '); + insert into takes values('26494', '581', '1', 'Spring', 2005, 'A+'); + insert into takes values('91132', '791', '1', 'Spring', 2006, 'A '); + insert into takes values('50206', '843', '1', 'Fall', 2010, 'B-'); + insert into takes values('85754', '461', '1', 'Fall', 2002, 'C '); + insert into takes values('95089', '482', '1', 'Fall', 2005, 'A+'); + insert into takes values('94697', '319', '1', 'Spring', 2003, 'A+'); + insert into takes values('32483', '631', '1', 'Spring', 2007, 'A-'); + insert into takes values('41973', '591', '1', 'Spring', 2005, 'A-'); + insert into takes values('86806', '793', '1', 'Spring', 2002, 'A '); + insert into takes values('50013', '960', '2', 'Fall', 2006, 'A+'); + insert into takes values('75082', '258', '1', 'Fall', 2007, 'C '); + insert into takes values('91799', '349', '1', 'Spring', 2008, 'A+'); + insert into takes values('13365', '457', '1', 'Spring', 2001, 'C+'); + insert into takes values('23344', '629', '1', 'Spring', 2003, 'A+'); + insert into takes values('14563', '949', '1', 'Fall', 2007, 'A+'); + insert into takes values('36995', '852', '1', 'Spring', 2008, 'B '); + insert into takes values('33107', '959', '1', 'Fall', 2006, 'B '); + insert into takes values('10267', '242', '1', 'Fall', 2009, 'B '); + insert into takes values('83003', '496', '1', 'Fall', 2001, 'C+'); + insert into takes values('33201', '581', '1', 'Spring', 2005, 'C '); + insert into takes values('59455', '445', '1', 'Spring', 2001, 'A+'); + insert into takes values('98047', '486', '1', 'Fall', 2009, 'C '); + insert into takes values('72643', '338', '2', 'Spring', 2006, 'B+'); + insert into takes values('71387', '445', '1', 'Spring', 2001, 'C '); + insert into takes values('20195', '239', '1', 'Fall', 2006, 'B-'); + insert into takes values('23934', '486', '1', 'Fall', 2009, 'A-'); + insert into takes values('52876', '270', '1', 'Spring', 2010, 'C '); + insert into takes values('68720', '192', '1', 'Fall', 2002, 'C+'); + insert into takes values('7498', '192', '1', 'Fall', 2002, 'B-'); + insert into takes values('26147', '192', '1', 'Fall', 2002, 'C '); + insert into takes values('66212', '949', '1', 'Fall', 2007, 'C-'); + insert into takes values('31035', '559', '1', 'Fall', 2002, 'C-'); + insert into takes values('75395', '760', '1', 'Spring', 2004, 'C '); + insert into takes values('6474', '468', '1', 'Fall', 2005, 'A '); + insert into takes values('24201', '400', '2', 'Fall', 2003, 'B '); + insert into takes values('89234', '258', '1', 'Fall', 2007, 'B '); + insert into takes values('72643', '443', '2', 'Spring', 2002, 'A '); + insert into takes values('29390', '893', '1', 'Fall', 2007, 'A-'); + insert into takes values('16523', '415', '1', 'Fall', 2010, 'C '); + insert into takes values('44271', '642', '1', 'Fall', 2004, 'B-'); + insert into takes values('85910', '747', '1', 'Spring', 2004, 'C+'); + insert into takes values('88287', '852', '1', 'Spring', 2008, 'B-'); + insert into takes values('931', '489', '1', 'Fall', 2007, 'B-'); + insert into takes values('21337', '561', '1', 'Fall', 2006, 'C+'); + insert into takes values('163', '192', '1', 'Fall', 2002, 'C+'); + insert into takes values('66090', '696', '1', 'Spring', 2002, 'C '); + insert into takes values('36244', '875', '1', 'Spring', 2005, 'A '); + insert into takes values('49813', '679', '1', 'Spring', 2010, 'A-'); + insert into takes values('84239', '443', '1', 'Spring', 2010, 'B+'); + insert into takes values('36126', '242', '1', 'Fall', 2009, 'A+'); + insert into takes values('75510', '864', '1', 'Spring', 2006, 'C+'); + insert into takes values('19791', '679', '1', 'Spring', 2010, 'A-'); + insert into takes values('45002', '735', '1', 'Spring', 2003, 'C '); + insert into takes values('37869', '457', '1', 'Spring', 2001, 'C-'); + insert into takes values('65563', '867', '1', 'Fall', 2006, 'B+'); + insert into takes values('69952', '704', '1', 'Spring', 2008, 'A+'); + insert into takes values('34158', '748', '1', 'Fall', 2003, 'A-'); + insert into takes values('41211', '747', '1', 'Spring', 2004, 'A-'); + insert into takes values('8819', '960', '2', 'Fall', 2006, 'A-'); + insert into takes values('53788', '486', '1', 'Fall', 2009, 'A '); + insert into takes values('21556', '791', '1', 'Spring', 2006, 'A+'); + insert into takes values('28538', '200', '1', 'Spring', 2007, 'C-'); + insert into takes values('46451', '408', '2', 'Spring', 2003, 'C+'); + insert into takes values('1954', '493', '1', 'Spring', 2010, 'B+'); + insert into takes values('97590', '200', '2', 'Fall', 2002, 'A+'); + insert into takes values('21102', '864', '1', 'Spring', 2006, 'C-'); + insert into takes values('11152', '843', '1', 'Fall', 2010, 'B-'); + insert into takes values('70572', '468', '2', 'Fall', 2007, 'B-'); + insert into takes values('61920', '376', '1', 'Fall', 2006, 'B '); + insert into takes values('11855', '270', '1', 'Spring', 2010, 'C-'); + insert into takes values('82039', '362', '1', 'Fall', 2005, 'A-'); + insert into takes values('2419', '581', '1', 'Spring', 2005, 'A '); + insert into takes values('63886', '603', '1', 'Fall', 2003, 'C-'); + insert into takes values('69285', '237', '1', 'Spring', 2008, 'B '); + insert into takes values('69285', '791', '1', 'Spring', 2006, 'C-'); + insert into takes values('47677', '893', '1', 'Fall', 2007, 'B+'); + insert into takes values('25611', '581', '1', 'Spring', 2005, 'C '); + insert into takes values('92693', '496', '1', 'Fall', 2001, 'A '); + insert into takes values('51549', '561', '1', 'Fall', 2006, 'B-'); + insert into takes values('51997', '867', '1', 'Fall', 2006, 'B+'); + insert into takes values('50038', '867', '2', 'Fall', 2010, 'A-'); + insert into takes values('67051', '991', '1', 'Spring', 2008, 'B '); + insert into takes values('29140', '237', '2', 'Fall', 2009, 'B+'); + insert into takes values('29390', '527', '1', 'Fall', 2004, 'B '); + insert into takes values('47677', '991', '1', 'Spring', 2008, 'B-'); + insert into takes values('76768', '591', '1', 'Spring', 2005, 'C '); + insert into takes values('34542', '679', '1', 'Spring', 2010, 'C '); + insert into takes values('10033', '493', '1', 'Spring', 2010, 'C-'); + insert into takes values('14874', '445', '1', 'Spring', 2001, 'C '); + insert into takes values('47001', '604', '1', 'Spring', 2009, 'A+'); + insert into takes values('7490', '875', '1', 'Spring', 2005, 'C+'); + insert into takes values('79911', '631', '1', 'Spring', 2007, 'A '); + insert into takes values('78922', '476', '1', 'Fall', 2010, 'C-'); + insert into takes values('77415', '496', '1', 'Fall', 2001, 'C '); + insert into takes values('21692', '663', '1', 'Spring', 2005, 'C-'); + insert into takes values('6400', '735', '1', 'Spring', 2003, 'B+'); + insert into takes values('63860', '991', '1', 'Spring', 2008, 'B '); + insert into takes values('52750', '867', '2', 'Fall', 2010, 'A '); + insert into takes values('77003', '362', '3', 'Spring', 2008, 'C+'); + insert into takes values('22258', '400', '2', 'Fall', 2003, 'A '); + insert into takes values('30161', '591', '1', 'Spring', 2005, 'C '); + insert into takes values('37521', '200', '2', 'Fall', 2002, 'A '); + insert into takes values('21556', '158', '2', 'Spring', 2008, 'B+'); + insert into takes values('1836', '626', '1', 'Fall', 2006, 'C-'); + insert into takes values('27366', '960', '1', 'Fall', 2009, 'B+'); + insert into takes values('97694', '808', '1', 'Fall', 2003, 'A '); + insert into takes values('57377', '694', '1', 'Fall', 2002, 'C+'); + insert into takes values('78469', '362', '2', 'Fall', 2006, 'B+'); + insert into takes values('85366', '527', '1', 'Fall', 2004, 'B-'); + insert into takes values('22254', '362', '2', 'Fall', 2006, 'C '); + insert into takes values('64196', '626', '1', 'Fall', 2006, 'A-'); + insert into takes values('57107', '626', '1', 'Fall', 2006, 'A-'); + insert into takes values('8457', '791', '1', 'Spring', 2006, 'B+'); + insert into takes values('53424', '239', '1', 'Fall', 2006, 'B '); + insert into takes values('49244', '319', '1', 'Spring', 2003, 'A+'); + insert into takes values('8517', '696', '1', 'Spring', 2002, 'B '); + insert into takes values('76895', '362', '2', 'Fall', 2006, 'C+'); + insert into takes values('51955', '747', '1', 'Spring', 2004, 'C '); + insert into takes values('29140', '274', '1', 'Fall', 2002, 'A '); + insert into takes values('78911', '270', '1', 'Spring', 2010, 'C '); + insert into takes values('23110', '561', '1', 'Fall', 2006, 'A-'); + insert into takes values('21126', '200', '2', 'Fall', 2002, 'A+'); + insert into takes values('107', '591', '1', 'Spring', 2005, 'C '); + insert into takes values('64039', '415', '1', 'Fall', 2010, 'B '); + insert into takes values('54672', '927', '1', 'Fall', 2002, 'B '); + insert into takes values('34770', '694', '1', 'Fall', 2002, 'C+'); + insert into takes values('53048', '581', '1', 'Spring', 2005, 'A-'); + insert into takes values('68720', '362', '1', 'Fall', 2005, 'A '); + insert into takes values('5144', '604', '1', 'Spring', 2009, 'B+'); + insert into takes values('39580', '802', '1', 'Spring', 2003, 'C '); + insert into takes values('39238', '445', '1', 'Spring', 2001, 'B-'); + insert into takes values('66484', '702', '1', 'Spring', 2001, 'A+'); + insert into takes values('80227', '591', '1', 'Spring', 2005, 'A+'); + insert into takes values('67583', '867', '2', 'Fall', 2010, 'C+'); + insert into takes values('75273', '137', '1', 'Spring', 2002, 'C '); + insert into takes values('83592', '581', '1', 'Spring', 2005, 'B+'); + insert into takes values('39114', '991', '1', 'Spring', 2008, 'A+'); + insert into takes values('63560', '493', '1', 'Spring', 2010, 'A-'); + insert into takes values('96117', '476', '1', 'Fall', 2010, 'B-'); + insert into takes values('17607', '747', '1', 'Spring', 2004, 'A+'); + insert into takes values('52741', '158', '1', 'Fall', 2008, 'C+'); + insert into takes values('15144', '867', '1', 'Fall', 2006, 'A-'); + insert into takes values('22620', '704', '1', 'Spring', 2008, 'A '); + insert into takes values('32119', '239', '1', 'Fall', 2006, 'C+'); + insert into takes values('81550', '313', '1', 'Fall', 2010, 'C+'); + insert into takes values('72741', '960', '1', 'Fall', 2009, 'C-'); + insert into takes values('48850', '843', '1', 'Fall', 2010, 'A+'); + insert into takes values('1232', '760', '1', 'Spring', 2004, 'C-'); + insert into takes values('14499', '493', '1', 'Spring', 2010, 'A '); + insert into takes values('83622', '867', '2', 'Fall', 2010, 'B+'); + insert into takes values('67222', '408', '2', 'Spring', 2003, 'C '); + insert into takes values('67340', '345', '1', 'Spring', 2008, 'B-'); + insert into takes values('53118', '421', '1', 'Fall', 2004, 'C '); + insert into takes values('66469', '158', '1', 'Fall', 2008, 'A+'); + insert into takes values('86552', '137', '1', 'Spring', 2002, 'A-'); + insert into takes values('78782', '702', '1', 'Spring', 2001, 'B '); + insert into takes values('80285', '581', '1', 'Spring', 2005, 'A+'); + insert into takes values('75082', '960', '1', 'Fall', 2009, 'A '); + insert into takes values('27950', '793', '1', 'Spring', 2002, 'B+'); + insert into takes values('64249', '702', '1', 'Spring', 2001, 'B+'); + insert into takes values('61332', '482', '1', 'Fall', 2005, 'C+'); + insert into takes values('51868', '362', '1', 'Fall', 2005, 'A-'); + insert into takes values('18338', '748', '1', 'Fall', 2003, 'A-'); + insert into takes values('79469', '496', '1', 'Fall', 2001, 'B-'); + insert into takes values('14484', '408', '2', 'Spring', 2003, 'B '); + insert into takes values('57185', '694', '1', 'Fall', 2002, 'A+'); + insert into takes values('9114', '760', '1', 'Spring', 2004, 'A+'); + insert into takes values('20814', '362', '1', 'Fall', 2005, 'B-'); + insert into takes values('26147', '476', '1', 'Fall', 2010, 'A '); + insert into takes values('58634', '959', '1', 'Fall', 2006, 'C '); + insert into takes values('47379', '426', '1', 'Spring', 2006, 'B-'); + insert into takes values('61783', '642', '1', 'Fall', 2004, 'A-'); + insert into takes values('51238', '591', '1', 'Spring', 2005, 'A+'); + insert into takes values('53699', '735', '1', 'Spring', 2003, 'A-'); + insert into takes values('98690', '795', '1', 'Spring', 2004, 'A-'); + insert into takes values('53496', '401', '1', 'Fall', 2003, 'B '); + insert into takes values('88358', '352', '1', 'Spring', 2006, 'A '); + insert into takes values('91788', '457', '1', 'Spring', 2001, 'A-'); + insert into takes values('83170', '237', '1', 'Spring', 2008, 'C+'); + insert into takes values('12362', '802', '1', 'Spring', 2003, 'A '); + insert into takes values('93354', '561', '1', 'Fall', 2006, 'C+'); + insert into takes values('7390', '704', '1', 'Spring', 2008, 'B '); + insert into takes values('53225', '864', '1', 'Spring', 2006, 'C+'); + insert into takes values('69632', '760', '1', 'Spring', 2004, 'B-'); + insert into takes values('78756', '527', '1', 'Fall', 2004, 'C-'); + insert into takes values('62784', '192', '1', 'Fall', 2002, 'A '); + insert into takes values('42960', '200', '2', 'Fall', 2002, 'A+'); + insert into takes values('40457', '748', '1', 'Fall', 2003, 'B '); + insert into takes values('79352', '843', '1', 'Fall', 2010, 'B '); + insert into takes values('69081', '362', '3', 'Spring', 2008, 'C '); + insert into takes values('54612', '239', '1', 'Fall', 2006, 'A+'); + insert into takes values('67657', '426', '1', 'Spring', 2006, 'A+'); + insert into takes values('4173', '426', '1', 'Spring', 2006, 'B+'); + insert into takes values('18740', '962', '1', 'Spring', 2008, 'B '); + insert into takes values('99694', '493', '1', 'Spring', 2010, 'B-'); + insert into takes values('14829', '867', '1', 'Fall', 2006, 'B-'); + insert into takes values('90914', '694', '1', 'Fall', 2002, 'A-'); + insert into takes values('74796', '694', '1', 'Fall', 2002, 'C+'); + insert into takes values('17133', '748', '1', 'Fall', 2003, 'C+'); + insert into takes values('65688', '200', '2', 'Fall', 2002, 'B+'); + insert into takes values('62226', '571', '1', 'Spring', 2004, 'A+'); + insert into takes values('40059', '591', '1', 'Spring', 2005, 'C '); + insert into takes values('17769', '274', '1', 'Fall', 2002, 'A '); + insert into takes values('93708', '345', '1', 'Spring', 2008, 'A+'); + insert into takes values('55238', '626', '1', 'Fall', 2006, 'C-'); + insert into takes values('2629', '461', '1', 'Fall', 2002, 'A '); + insert into takes values('7854', '376', '1', 'Fall', 2006, 'B-'); + insert into takes values('38899', '852', '1', 'Spring', 2008, 'B+'); + insert into takes values('46035', '457', '1', 'Spring', 2001, 'B+'); + insert into takes values('39241', '692', '1', 'Spring', 2010, 'B-'); + insert into takes values('90132', '345', '1', 'Spring', 2008, 'B-'); + insert into takes values('43226', '345', '1', 'Spring', 2008, 'C+'); + insert into takes values('57780', '791', '1', 'Spring', 2006, 'A+'); + insert into takes values('11195', '959', '1', 'Fall', 2006, 'B-'); + insert into takes values('4015', '493', '1', 'Spring', 2010, 'C+'); + insert into takes values('79170', '808', '1', 'Fall', 2003, 'A '); + insert into takes values('95859', '482', '1', 'Fall', 2005, 'C+'); + insert into takes values('69730', '169', '2', 'Fall', 2002, 'A-'); + insert into takes values('52945', '376', '1', 'Fall', 2006, 'B+'); + insert into takes values('1080', '808', '1', 'Fall', 2003, 'A+'); + insert into takes values('7973', '631', '1', 'Spring', 2007, 'B-'); + insert into takes values('46155', '974', '1', 'Fall', 2003, 'C-'); + insert into takes values('53799', '629', '1', 'Spring', 2003, 'C-'); + insert into takes values('77218', '200', '2', 'Fall', 2002, 'B '); + insert into takes values('15086', '158', '1', 'Fall', 2008, 'B+'); + insert into takes values('31560', '443', '2', 'Spring', 2002, 'B+'); + insert into takes values('37856', '408', '1', 'Spring', 2007, 'B+'); + insert into takes values('22003', '629', '1', 'Spring', 2003, 'A+'); + insert into takes values('74911', '642', '1', 'Fall', 2004, 'C '); + insert into takes values('88045', '158', '1', 'Fall', 2008, 'A-'); + insert into takes values('8517', '476', '1', 'Fall', 2010, 'C+'); + insert into takes values('51817', '591', '1', 'Spring', 2005, 'C '); + insert into takes values('93366', '338', '2', 'Spring', 2006, 'C+'); + insert into takes values('46066', '496', '1', 'Fall', 2001, 'B-'); + insert into takes values('53699', '599', '1', 'Spring', 2003, 'B-'); + insert into takes values('49244', '338', '1', 'Spring', 2007, 'B-'); + insert into takes values('5005', '581', '1', 'Spring', 2005, 'A '); + insert into takes values('78434', '304', '1', 'Fall', 2009, 'C-'); + insert into takes values('6729', '274', '1', 'Fall', 2002, 'A '); + insert into takes values('39925', '927', '1', 'Fall', 2002, 'C '); + insert into takes values('39978', '468', '2', 'Fall', 2007, 'A '); + insert into takes values('8843', '362', '2', 'Fall', 2006, 'C-'); + insert into takes values('45650', '319', '1', 'Spring', 2003, 'C+'); + insert into takes values('79205', '366', '1', 'Fall', 2005, 'A-'); + insert into takes values('69758', '591', '1', 'Spring', 2005, 'A+'); + insert into takes values('26730', '476', '1', 'Fall', 2010, 'A '); + insert into takes values('65714', '468', '1', 'Fall', 2005, 'B '); + insert into takes values('6195', '702', '1', 'Spring', 2001, 'A-'); + insert into takes values('94257', '991', '1', 'Spring', 2008, 'C+'); + insert into takes values('72643', '421', '1', 'Fall', 2004, 'C-'); + insert into takes values('42298', '545', '1', 'Fall', 2001, 'C+'); + insert into takes values('77130', '991', '1', 'Spring', 2008, 'B+'); + insert into takes values('10814', '493', '1', 'Spring', 2010, 'C-'); + insert into takes values('32217', '802', '1', 'Spring', 2003, 'B-'); + insert into takes values('336', '345', '1', 'Spring', 2008, 'B+'); + insert into takes values('16250', '631', '1', 'Spring', 2007, 'C-'); + insert into takes values('69752', '747', '1', 'Spring', 2004, 'C '); + insert into takes values('57026', '875', '1', 'Spring', 2005, 'A-'); + insert into takes values('65714', '334', '1', 'Fall', 2009, 'C '); + insert into takes values('37946', '352', '1', 'Spring', 2006, 'C-'); + insert into takes values('62754', '242', '1', 'Fall', 2009, 'B '); + insert into takes values('2629', '808', '1', 'Fall', 2003, 'C-'); + insert into takes values('1220', '158', '1', 'Fall', 2008, 'A-'); + insert into takes values('77244', '852', '1', 'Spring', 2008, 'B+'); + insert into takes values('81638', '802', '1', 'Spring', 2003, 'C-'); + insert into takes values('34236', '864', '1', 'Spring', 2006, 'A-'); + insert into takes values('49813', '561', '1', 'Fall', 2006, 'A-'); + insert into takes values('92659', '802', '1', 'Spring', 2003, 'B '); + insert into takes values('19245', '747', '1', 'Spring', 2004, 'A+'); + insert into takes values('5871', '561', '1', 'Fall', 2006, 'C-'); + insert into takes values('4682', '631', '1', 'Spring', 2007, 'A-'); + insert into takes values('29645', '400', '1', 'Spring', 2007, 'C-'); + insert into takes values('99073', '338', '2', 'Spring', 2006, 'C-'); + insert into takes values('17377', '867', '2', 'Fall', 2010, 'B-'); + insert into takes values('30252', '603', '1', 'Fall', 2003, 'C+'); + insert into takes values('5381', '571', '1', 'Spring', 2004, 'B-'); + insert into takes values('87706', '972', '1', 'Spring', 2009, 'C-'); + insert into takes values('69752', '443', '2', 'Spring', 2002, 'C-'); + insert into takes values('53485', '960', '1', 'Fall', 2009, 'C '); + insert into takes values('53805', '612', '1', 'Fall', 2007, 'B+'); + insert into takes values('79446', '696', '1', 'Spring', 2002, 'B-'); + insert into takes values('11262', '200', '1', 'Spring', 2007, 'C '); + insert into takes values('81638', '443', '2', 'Spring', 2002, 'C '); + insert into takes values('3487', '735', '2', 'Spring', 2010, 'A+'); + insert into takes values('45002', '482', '1', 'Fall', 2005, 'C+'); + insert into takes values('827', '258', '1', 'Fall', 2007, 'C+'); + insert into takes values('90381', '468', '1', 'Fall', 2005, 'C+'); + insert into takes values('53077', '875', '1', 'Spring', 2005, 'B '); + insert into takes values('21552', '603', '1', 'Fall', 2003, 'C '); + insert into takes values('8252', '445', '1', 'Spring', 2001, 'A+'); + insert into takes values('34404', '362', '2', 'Fall', 2006, 'B-'); + insert into takes values('49280', '468', '2', 'Fall', 2007, 'A+'); + insert into takes values('645', '461', '1', 'Fall', 2002, 'B '); + insert into takes values('89059', '793', '1', 'Spring', 2002, 'B+'); + insert into takes values('27140', '408', '1', 'Spring', 2007, 'B '); + insert into takes values('9408', '468', '2', 'Fall', 2007, 'C+'); + insert into takes values('92849', '400', '2', 'Fall', 2003, 'A+'); + insert into takes values('39901', '376', '1', 'Fall', 2006, 'A+'); + insert into takes values('70389', '960', '1', 'Fall', 2009, 'C+'); + insert into takes values('19862', '158', '1', 'Fall', 2008, 'A+'); + insert into takes values('91992', '345', '1', 'Spring', 2008, 'A+'); + insert into takes values('4449', '802', '1', 'Spring', 2003, 'A '); + insert into takes values('52494', '867', '1', 'Fall', 2006, 'B-'); + insert into takes values('37946', '400', '1', 'Spring', 2007, 'B-'); + insert into takes values('76291', '893', '1', 'Fall', 2007, 'C '); + insert into takes values('28352', '468', '2', 'Fall', 2007, 'B-'); + insert into takes values('83002', '581', '1', 'Spring', 2005, 'A '); + insert into takes values('69225', '991', '1', 'Spring', 2008, 'B '); + insert into takes values('67793', '612', '1', 'Fall', 2007, 'A+'); + insert into takes values('71543', '376', '1', 'Fall', 2006, 'A-'); + insert into takes values('64724', '258', '1', 'Fall', 2007, 'C '); + insert into takes values('46436', '603', '1', 'Fall', 2003, 'B-'); + insert into takes values('70359', '972', '1', 'Spring', 2009, 'A-'); + insert into takes values('7390', '735', '1', 'Spring', 2003, 'B '); + insert into takes values('107', '679', '1', 'Spring', 2010, 'A+'); + insert into takes values('17424', '802', '1', 'Spring', 2003, 'C '); + insert into takes values('32772', '468', '2', 'Fall', 2007, 'B+'); + insert into takes values('21009', '679', '1', 'Spring', 2010, 'A-'); + insert into takes values('65038', '927', '1', 'Fall', 2002, 'A-'); + insert into takes values('62716', '545', '1', 'Fall', 2001, 'A-'); + insert into takes values('36995', '304', '1', 'Fall', 2009, 'C-'); + insert into takes values('68453', '696', '1', 'Spring', 2002, 'B+'); + insert into takes values('4645', '313', '1', 'Fall', 2010, 'B-'); + insert into takes values('2561', '852', '1', 'Spring', 2008, 'A+'); + insert into takes values('123', '493', '1', 'Spring', 2010, 'C-'); + insert into takes values('21225', '793', '1', 'Spring', 2002, 'A-'); + insert into takes values('87624', '408', '2', 'Spring', 2003, 'A '); + insert into takes values('8457', '242', '1', 'Fall', 2009, 'A+'); + insert into takes values('74796', '991', '1', 'Spring', 2008, 'C+'); + insert into takes values('4435', '400', '1', 'Spring', 2007, 'B+'); + insert into takes values('62373', '581', '1', 'Spring', 2005, 'A+'); + insert into takes values('69628', '692', '1', 'Spring', 2010, 'A '); + insert into takes values('90353', '692', '1', 'Spring', 2010, 'A-'); + insert into takes values('96615', '489', '1', 'Fall', 2007, 'B '); + insert into takes values('65144', '338', '2', 'Spring', 2006, 'C+'); + insert into takes values('27956', '626', '1', 'Fall', 2006, 'C-'); + insert into takes values('96895', '679', '1', 'Spring', 2010, 'B '); + insert into takes values('81610', '972', '1', 'Spring', 2009, 'A+'); + insert into takes values('61854', '239', '1', 'Fall', 2006, 'A '); + insert into takes values('16993', '735', '1', 'Spring', 2003, 'A '); + insert into takes values('18234', '972', '1', 'Spring', 2009, 'C '); + insert into takes values('21086', '527', '1', 'Fall', 2004, 'B-'); + insert into takes values('5898', '496', '1', 'Fall', 2001, 'B '); + insert into takes values('4645', '735', '1', 'Spring', 2003, 'B+'); + insert into takes values('75547', '349', '1', 'Spring', 2008, 'A+'); + insert into takes values('56078', '169', '1', 'Spring', 2007, 'B-'); + insert into takes values('77898', '237', '2', 'Fall', 2009, 'B+'); + insert into takes values('69850', '679', '1', 'Spring', 2010, 'A-'); + insert into takes values('13880', '808', '1', 'Fall', 2003, 'B+'); + insert into takes values('82970', '482', '1', 'Fall', 2005, 'A-'); + insert into takes values('29705', '105', '1', 'Fall', 2009, 'A-'); + insert into takes values('78454', '105', '1', 'Fall', 2009, 'B+'); + insert into takes values('10033', '791', '1', 'Spring', 2006, 'C '); + insert into takes values('94730', '793', '1', 'Spring', 2002, 'A+'); + insert into takes values('11262', '962', '1', 'Spring', 2008, 'A+'); + insert into takes values('17769', '991', '1', 'Spring', 2008, 'A-'); + insert into takes values('61003', '748', '1', 'Fall', 2003, 'A '); + insert into takes values('52371', '457', '1', 'Spring', 2001, 'C-'); + insert into takes values('87965', '461', '1', 'Fall', 2002, 'C '); + insert into takes values('7514', '571', '1', 'Spring', 2004, 'C+'); + insert into takes values('83003', '158', '1', 'Fall', 2008, 'A-'); + insert into takes values('78434', '158', '2', 'Spring', 2008, 'B+'); + insert into takes values('20803', '571', '1', 'Spring', 2004, 'A-'); + insert into takes values('58300', '319', '1', 'Spring', 2003, 'C '); + insert into takes values('36685', '735', '2', 'Spring', 2010, 'C+'); + insert into takes values('49205', '192', '1', 'Fall', 2002, 'C '); + insert into takes values('38712', '366', '1', 'Fall', 2005, 'A '); + insert into takes values('72669', '960', '1', 'Fall', 2009, 'C '); + insert into takes values('36265', '338', '2', 'Spring', 2006, 'C-'); + insert into takes values('15578', '192', '1', 'Fall', 2002, 'B '); + insert into takes values('1285', '338', '1', 'Spring', 2007, 'A+'); + insert into takes values('90567', '747', '1', 'Spring', 2004, 'A '); + insert into takes values('33094', '476', '1', 'Fall', 2010, 'B-'); + insert into takes values('46155', '237', '1', 'Spring', 2008, 'A '); + insert into takes values('41988', '200', '2', 'Fall', 2002, 'B '); + insert into takes values('39310', '747', '1', 'Spring', 2004, 'B-'); + insert into takes values('77130', '795', '1', 'Spring', 2004, 'B '); + insert into takes values('94990', '192', '1', 'Fall', 2002, 'B+'); + insert into takes values('95626', '561', '1', 'Fall', 2006, 'B '); + insert into takes values('33349', '867', '1', 'Fall', 2006, 'B-'); + insert into takes values('52872', '867', '1', 'Fall', 2006, 'B-'); + insert into takes values('69581', '415', '1', 'Fall', 2010, 'A '); + insert into takes values('57456', '338', '2', 'Spring', 2006, 'C+'); + insert into takes values('79205', '426', '1', 'Spring', 2006, 'C-'); + insert into takes values('99764', '239', '1', 'Fall', 2006, 'C '); + insert into takes values('4182', '443', '2', 'Spring', 2002, 'A+'); + insert into takes values('65563', '571', '1', 'Spring', 2004, 'C+'); + insert into takes values('1726', '457', '1', 'Spring', 2001, 'A-'); + insert into takes values('52876', '927', '1', 'Fall', 2002, 'B+'); + insert into takes values('23500', '604', '1', 'Spring', 2009, 'A-'); + insert into takes values('16753', '468', '1', 'Fall', 2005, 'B '); + insert into takes values('69230', '629', '1', 'Spring', 2003, 'A '); + insert into takes values('49450', '338', '2', 'Spring', 2006, 'A-'); + insert into takes values('90181', '408', '1', 'Spring', 2007, 'C-'); + insert into takes values('71529', '642', '1', 'Fall', 2004, 'C '); + insert into takes values('29705', '748', '1', 'Fall', 2003, 'C-'); + insert into takes values('16528', '415', '1', 'Fall', 2010, 'A '); + insert into takes values('72768', '137', '1', 'Spring', 2002, 'C-'); + insert into takes values('17377', '694', '1', 'Fall', 2002, 'B '); + insert into takes values('19362', '747', '1', 'Spring', 2004, 'A+'); + insert into takes values('93039', '362', '3', 'Spring', 2008, 'A-'); + insert into takes values('29002', '137', '1', 'Spring', 2002, 'B '); + insert into takes values('67371', '949', '1', 'Fall', 2007, 'C '); + insert into takes values('43993', '242', '1', 'Fall', 2009, 'C-'); + insert into takes values('40276', '642', '1', 'Fall', 2004, 'C-'); + insert into takes values('58355', '362', '3', 'Spring', 2008, 'C '); + insert into takes values('68453', '852', '1', 'Spring', 2008, 'A+'); + insert into takes values('84410', '362', '3', 'Spring', 2008, 'A '); + insert into takes values('1018', '200', '2', 'Fall', 2002, 'B-'); + insert into takes values('33759', '949', '1', 'Fall', 2007, 'C+'); + insert into takes values('75046', '445', '1', 'Spring', 2001, 'A '); + insert into takes values('78552', '362', '3', 'Spring', 2008, 'B-'); + insert into takes values('67146', '408', '1', 'Spring', 2007, 'B '); + insert into takes values('44258', '486', '1', 'Fall', 2009, 'A-'); + insert into takes values('35220', '105', '1', 'Fall', 2009, 'C '); + insert into takes values('92703', '493', '1', 'Spring', 2010, 'B+'); + insert into takes values('68712', '415', '1', 'Fall', 2010, 'C+'); + insert into takes values('51008', '137', '1', 'Spring', 2002, 'C+'); + insert into takes values('37103', '960', '1', 'Fall', 2009, 'A '); + insert into takes values('82697', '445', '1', 'Spring', 2001, 'A '); + insert into takes values('18286', '443', '1', 'Spring', 2010, 'B '); + insert into takes values('72528', '482', '1', 'Fall', 2005, 'C+'); + insert into takes values('75116', '864', '1', 'Spring', 2006, 'A '); + insert into takes values('73328', '192', '1', 'Fall', 2002, 'B '); + insert into takes values('87048', '629', '1', 'Spring', 2003, 'A-'); + insert into takes values('98140', '559', '1', 'Fall', 2002, 'C-'); + insert into takes values('5005', '626', '1', 'Fall', 2006, 'C-'); + insert into takes values('88085', '795', '1', 'Spring', 2004, 'A+'); + insert into takes values('52876', '304', '1', 'Fall', 2009, 'A+'); + insert into takes values('32376', '603', '1', 'Fall', 2003, 'B-'); + insert into takes values('1087', '192', '1', 'Fall', 2002, 'A+'); + insert into takes values('94814', '972', '1', 'Spring', 2009, 'A-'); + insert into takes values('32490', '489', '1', 'Fall', 2007, 'C+'); + insert into takes values('46337', '629', '1', 'Spring', 2003, 'B+'); + insert into takes values('11855', '581', '1', 'Spring', 2005, 'A-'); + insert into takes values('52134', '158', '1', 'Fall', 2008, 'B '); + insert into takes values('56212', '352', '1', 'Spring', 2006, 'C '); + insert into takes values('10693', '704', '1', 'Spring', 2008, 'C+'); + insert into takes values('21246', '200', '1', 'Spring', 2007, 'A '); + insert into takes values('29390', '408', '1', 'Spring', 2007, 'B+'); + insert into takes values('14581', '426', '1', 'Spring', 2006, 'A '); + insert into takes values('75878', '960', '1', 'Fall', 2009, 'B '); + insert into takes values('21337', '642', '1', 'Fall', 2004, 'B+'); + insert into takes values('89571', '274', '1', 'Fall', 2002, 'A+'); + insert into takes values('95626', '192', '1', 'Fall', 2002, 'B-'); + insert into takes values('99348', '482', '1', 'Fall', 2005, 'B+'); + insert into takes values('55859', '376', '1', 'Fall', 2006, 'C+'); + insert into takes values('75513', '158', '1', 'Fall', 2008, 'A-'); + insert into takes values('86753', '791', '1', 'Spring', 2006, 'B '); + insert into takes values('15249', '237', '1', 'Spring', 2008, 'B+'); + insert into takes values('40276', '663', '1', 'Spring', 2005, 'C '); + insert into takes values('68150', '192', '1', 'Fall', 2002, 'A '); + insert into takes values('65208', '692', '1', 'Spring', 2010, 'B-'); + insert into takes values('8860', '476', '1', 'Fall', 2010, 'B+'); + insert into takes values('45680', '274', '1', 'Fall', 2002, 'C '); + insert into takes values('8140', '960', '2', 'Fall', 2006, 'B-'); + insert into takes values('75241', '864', '1', 'Spring', 2006, 'A-'); + insert into takes values('67024', '376', '1', 'Fall', 2006, 'C-'); + insert into takes values('13504', '137', '1', 'Spring', 2002, 'C '); + insert into takes values('80057', '692', '1', 'Spring', 2010, 'C-'); + insert into takes values('760', '893', '1', 'Fall', 2007, 'C+'); + insert into takes values('32130', '793', '1', 'Spring', 2002, 'B+'); + insert into takes values('30017', '612', '1', 'Fall', 2007, 'B '); + insert into takes values('46442', '349', '1', 'Spring', 2008, 'B-'); + insert into takes values('52076', '612', '1', 'Fall', 2007, 'C+'); + insert into takes values('67310', '960', '2', 'Fall', 2006, 'A-'); + insert into takes values('46981', '631', '1', 'Spring', 2007, 'A+'); + insert into takes values('90082', '349', '1', 'Spring', 2008, 'C '); + insert into takes values('88085', '415', '1', 'Fall', 2010, 'C '); + insert into takes values('78143', '493', '1', 'Spring', 2010, 'C-'); + insert into takes values('71543', '482', '1', 'Fall', 2005, 'B+'); + insert into takes values('10454', '581', '1', 'Spring', 2005, 'C+'); + insert into takes values('94814', '400', '1', 'Spring', 2007, 'C '); + insert into takes values('90381', '694', '1', 'Fall', 2002, 'A '); + insert into takes values('87280', '893', '1', 'Fall', 2007, 'C-'); + insert into takes values('71631', '426', '1', 'Spring', 2006, 'B-'); + insert into takes values('71630', '972', '1', 'Spring', 2009, 'A+'); + insert into takes values('32419', '408', '1', 'Spring', 2007, 'C-'); + insert into takes values('32385', '802', '1', 'Spring', 2003, 'A+'); + insert into takes values('11152', '105', '1', 'Fall', 2009, 'A+'); + insert into takes values('65563', '599', '1', 'Spring', 2003, 'C-'); + insert into takes values('79772', '345', '1', 'Spring', 2008, 'B-'); + insert into takes values('90220', '362', '2', 'Fall', 2006, 'B '); + insert into takes values('16250', '476', '1', 'Fall', 2010, 'B '); + insert into takes values('77234', '604', '1', 'Spring', 2009, 'C+'); + insert into takes values('65101', '559', '1', 'Fall', 2002, 'A-'); + insert into takes values('30896', '893', '1', 'Fall', 2007, 'B '); + insert into takes values('98359', '192', '1', 'Fall', 2002, 'A+'); + insert into takes values('95260', '334', '1', 'Fall', 2009, 'C '); + insert into takes values('35498', '237', '1', 'Spring', 2008, 'A+'); + insert into takes values('18108', '748', '1', 'Fall', 2003, 'B '); + insert into takes values('20974', '468', '2', 'Fall', 2007, 'C '); + insert into takes values('41683', '158', '1', 'Fall', 2008, 'B '); + insert into takes values('9947', '426', '1', 'Spring', 2006, 'C '); + insert into takes values('67560', '426', '1', 'Spring', 2006, 'A '); + insert into takes values('67033', '793', '1', 'Spring', 2002, 'A-'); + insert into takes values('72055', '694', '1', 'Fall', 2002, 'C-'); + insert into takes values('48678', '852', '1', 'Spring', 2008, 'C+'); + insert into takes values('13757', '105', '1', 'Fall', 2009, 'C+'); + insert into takes values('32245', '663', '1', 'Spring', 2005, 'A+'); + insert into takes values('93491', '791', '1', 'Spring', 2006, 'B-'); + insert into takes values('41450', '270', '1', 'Spring', 2010, 'B '); + insert into takes values('50977', '362', '3', 'Spring', 2008, 'C-'); + insert into takes values('85680', '927', '1', 'Fall', 2002, 'B '); + insert into takes values('70098', '319', '1', 'Spring', 2003, 'A '); + insert into takes values('85680', '735', '2', 'Spring', 2010, 'B+'); + insert into takes values('15430', '808', '1', 'Fall', 2003, 'A+'); + insert into takes values('22417', '486', '1', 'Fall', 2009, 'B+'); + insert into takes values('29665', '864', '1', 'Spring', 2006, 'C-'); + insert into takes values('96324', '629', '1', 'Spring', 2003, 'B '); + insert into takes values('85211', '445', '1', 'Spring', 2001, 'B '); + insert into takes values('39514', '426', '1', 'Spring', 2006, 'B '); + insert into takes values('66106', '949', '1', 'Fall', 2007, 'B-'); + insert into takes values('81638', '445', '1', 'Spring', 2001, 'A '); + insert into takes values('37653', '972', '1', 'Spring', 2009, 'A '); + insert into takes values('73328', '694', '1', 'Fall', 2002, 'B '); + insert into takes values('62754', '137', '1', 'Spring', 2002, 'C+'); + insert into takes values('75123', '421', '1', 'Fall', 2004, 'B '); + insert into takes values('33349', '457', '1', 'Spring', 2001, 'B+'); + insert into takes values('60040', '545', '1', 'Fall', 2001, 'C '); + insert into takes values('63361', '591', '1', 'Spring', 2005, 'B '); + insert into takes values('69132', '443', '1', 'Spring', 2010, 'A '); + insert into takes values('76246', '352', '1', 'Spring', 2006, 'B '); + insert into takes values('52291', '158', '1', 'Fall', 2008, 'A+'); + insert into takes values('5005', '791', '1', 'Spring', 2006, 'A '); + insert into takes values('63288', '401', '1', 'Fall', 2003, 'B '); + insert into takes values('39927', '679', '1', 'Spring', 2010, 'A '); + insert into takes values('21100', '702', '1', 'Spring', 2001, 'B+'); + insert into takes values('18367', '345', '1', 'Spring', 2008, 'B-'); + insert into takes values('42956', '642', '1', 'Fall', 2004, 'A-'); + insert into takes values('77729', '747', '1', 'Spring', 2004, 'C+'); + insert into takes values('13511', '338', '2', 'Spring', 2006, 'A-'); + insert into takes values('74796', '735', '1', 'Spring', 2003, 'B '); + insert into takes values('80227', '468', '1', 'Fall', 2005, 'B-'); + insert into takes values('90082', '237', '1', 'Spring', 2008, 'C-'); + insert into takes values('41988', '304', '1', 'Fall', 2009, 'A-'); + insert into takes values('1737', '696', '1', 'Spring', 2002, 'C+'); + insert into takes values('42019', '694', '1', 'Fall', 2002, 'B-'); + insert into takes values('62832', '960', '2', 'Fall', 2006, 'C '); + insert into takes values('44258', '345', '1', 'Spring', 2008, 'A '); + insert into takes values('8378', '875', '1', 'Spring', 2005, 'C '); + insert into takes values('63289', '694', '1', 'Fall', 2002, 'C+'); + insert into takes values('16993', '599', '1', 'Spring', 2003, 'A-'); + insert into takes values('41280', '482', '1', 'Fall', 2005, 'B+'); + insert into takes values('53077', '626', '1', 'Fall', 2006, 'A-'); + insert into takes values('15340', '415', '1', 'Fall', 2010, 'A+'); + insert into takes values('25362', '959', '1', 'Fall', 2006, 'C-'); + insert into takes values('89414', '591', '1', 'Spring', 2005, 'B '); + insert into takes values('65208', '443', '2', 'Spring', 2002, 'C+'); + insert into takes values('26802', '457', '1', 'Spring', 2001, 'A-'); + insert into takes values('17076', '748', '1', 'Fall', 2003, 'B+'); + insert into takes values('16480', '663', '1', 'Spring', 2005, 'A-'); + insert into takes values('57242', '704', '1', 'Spring', 2008, 'A '); + insert into takes values('91616', '748', '1', 'Fall', 2003, 'C-'); + insert into takes values('5703', '692', '1', 'Spring', 2010, 'B '); + insert into takes values('1727', '959', '1', 'Fall', 2006, 'B '); + insert into takes values('82066', '496', '1', 'Fall', 2001, 'C+'); + insert into takes values('12069', '972', '1', 'Spring', 2009, 'A '); + insert into takes values('75252', '972', '1', 'Spring', 2009, 'C+'); + insert into takes values('19450', '421', '1', 'Fall', 2004, 'C-'); + insert into takes values('66090', '802', '1', 'Spring', 2003, 'B-'); + insert into takes values('82974', '559', '1', 'Fall', 2002, 'C-'); + insert into takes values('64249', '169', '1', 'Spring', 2007, 'C '); + insert into takes values('95859', '443', '1', 'Spring', 2010, 'B '); + insert into takes values('87054', '200', '2', 'Fall', 2002, 'C-'); + insert into takes values('23992', '852', '1', 'Spring', 2008, 'B '); + insert into takes values('25331', '493', '1', 'Spring', 2010, 'A+'); + insert into takes values('12078', '642', '1', 'Fall', 2004, 'C+'); + insert into takes values('98843', '960', '2', 'Fall', 2006, 'A+'); + insert into takes values('35935', '559', '1', 'Fall', 2002, 'A-'); + insert into takes values('94730', '443', '1', 'Spring', 2010, 'B-'); + insert into takes values('64140', '239', '1', 'Fall', 2006, 'C '); + insert into takes values('16885', '959', '1', 'Fall', 2006, 'C '); + insert into takes values('64169', '158', '2', 'Spring', 2008, 'A+'); + insert into takes values('15030', '629', '1', 'Spring', 2003, 'B+'); + insert into takes values('65688', '927', '1', 'Fall', 2002, 'A+'); + insert into takes values('99977', '571', '1', 'Spring', 2004, 'C+'); + insert into takes values('85754', '559', '1', 'Fall', 2002, 'C-'); + insert into takes values('83871', '795', '1', 'Spring', 2004, 'B '); + insert into takes values('44584', '445', '1', 'Spring', 2001, 'A+'); + insert into takes values('17607', '421', '1', 'Fall', 2004, 'A+'); + insert into takes values('18499', '239', '1', 'Fall', 2006, 'B '); + insert into takes values('10814', '735', '2', 'Spring', 2010, 'C+'); + insert into takes values('27044', '169', '1', 'Spring', 2007, 'A '); + insert into takes values('56276', '603', '1', 'Fall', 2003, 'B+'); + insert into takes values('83214', '362', '3', 'Spring', 2008, 'B+'); + insert into takes values('40992', '352', '1', 'Spring', 2006, 'A '); + insert into takes values('5250', '704', '1', 'Spring', 2008, 'A+'); + insert into takes values('85614', '629', '1', 'Spring', 2003, 'A+'); + insert into takes values('99760', '468', '1', 'Fall', 2005, 'A-'); + insert into takes values('1827', '338', '2', 'Spring', 2006, 'B+'); + insert into takes values('62520', '408', '1', 'Spring', 2007, 'C-'); + insert into takes values('89759', '158', '2', 'Spring', 2008, 'C+'); + insert into takes values('37339', '362', '2', 'Fall', 2006, 'C '); + insert into takes values('16057', '864', '1', 'Spring', 2006, 'C+'); + insert into takes values('95850', '493', '1', 'Spring', 2010, 'A '); + insert into takes values('83204', '258', '1', 'Fall', 2007, 'B-'); + insert into takes values('3493', '313', '1', 'Fall', 2010, 'A '); + insert into takes values('16593', '486', '1', 'Fall', 2009, 'B+'); + insert into takes values('41596', '893', '1', 'Fall', 2007, 'C '); + insert into takes values('24387', '400', '2', 'Fall', 2003, 'A '); + insert into takes values('58606', '137', '1', 'Spring', 2002, 'B+'); + insert into takes values('84845', '426', '1', 'Spring', 2006, 'A '); + insert into takes values('33107', '200', '2', 'Fall', 2002, 'B+'); + insert into takes values('80990', '200', '2', 'Fall', 2002, 'A+'); + insert into takes values('48611', '237', '2', 'Fall', 2009, 'C '); + insert into takes values('3335', '274', '1', 'Fall', 2002, 'C-'); + insert into takes values('99611', '376', '1', 'Fall', 2006, 'B+'); + insert into takes values('123', '137', '1', 'Spring', 2002, 'B+'); + insert into takes values('41988', '663', '1', 'Spring', 2005, 'A '); + insert into takes values('63538', '991', '1', 'Spring', 2008, 'C '); + insert into takes values('39901', '748', '1', 'Fall', 2003, 'B+'); + insert into takes values('34422', '486', '1', 'Fall', 2009, 'B '); + insert into takes values('41345', '959', '1', 'Fall', 2006, 'A-'); + insert into takes values('7514', '991', '1', 'Spring', 2008, 'C '); + insert into takes values('5017', '959', '1', 'Fall', 2006, 'B-'); + insert into takes values('99268', '242', '1', 'Fall', 2009, 'A-'); + insert into takes values('19848', '362', '3', 'Spring', 2008, 'C+'); + insert into takes values('57985', '352', '1', 'Spring', 2006, 'C+'); + insert into takes values('36244', '237', '1', 'Spring', 2008, 'A+'); + insert into takes values('48471', '974', '1', 'Fall', 2003, 'C-'); + insert into takes values('76173', '443', '2', 'Spring', 2002, 'A-'); + insert into takes values('75791', '338', '1', 'Spring', 2007, 'A+'); + insert into takes values('94801', '362', '1', 'Fall', 2005, 'B '); + insert into takes values('39657', '867', '2', 'Fall', 2010, 'B '); + insert into takes values('67340', '561', '1', 'Fall', 2006, 'C '); + insert into takes values('14432', '362', '2', 'Fall', 2006, 'A-'); + insert into takes values('33882', '274', '1', 'Fall', 2002, 'A-'); + insert into takes values('22226', '962', '1', 'Spring', 2008, 'A '); + insert into takes values('34170', '237', '1', 'Spring', 2008, 'A-'); + insert into takes values('28361', '972', '1', 'Spring', 2009, 'B-'); + insert into takes values('12173', '629', '1', 'Spring', 2003, 'A+'); + insert into takes values('14596', '258', '1', 'Fall', 2007, 'A '); + insert into takes values('87439', '105', '2', 'Fall', 2002, 'C '); + insert into takes values('13921', '476', '1', 'Fall', 2010, 'A-'); + insert into takes values('81785', '843', '1', 'Fall', 2010, 'A+'); + insert into takes values('77898', '319', '1', 'Spring', 2003, 'A-'); + insert into takes values('11966', '867', '2', 'Fall', 2010, 'B+'); + insert into takes values('27043', '400', '2', 'Fall', 2003, 'A+'); + insert into takes values('28977', '927', '1', 'Fall', 2002, 'A+'); + insert into takes values('17377', '362', '3', 'Spring', 2008, 'B-'); + insert into takes values('22179', '304', '1', 'Fall', 2009, 'A+'); + insert into takes values('21766', '581', '1', 'Spring', 2005, 'B '); + insert into takes values('37734', '362', '1', 'Fall', 2005, 'C-'); + insert into takes values('24796', '415', '1', 'Fall', 2010, 'B-'); + insert into takes values('37818', '631', '1', 'Spring', 2007, 'B '); + insert into takes values('70362', '476', '1', 'Fall', 2010, 'A-'); + insert into takes values('17607', '893', '1', 'Fall', 2007, 'C '); + insert into takes values('29435', '376', '1', 'Fall', 2006, 'B '); + insert into takes values('81638', '376', '1', 'Fall', 2006, 'A '); + insert into takes values('23475', '974', '1', 'Fall', 2003, 'C '); + insert into takes values('31086', '445', '1', 'Spring', 2001, 'B-'); + insert into takes values('76173', '338', '1', 'Spring', 2007, 'C+'); + insert into takes values('84410', '169', '2', 'Fall', 2002, 'C+'); + insert into takes values('3127', '313', '1', 'Fall', 2010, 'A+'); + insert into takes values('64121', '974', '1', 'Fall', 2003, 'A '); + insert into takes values('68396', '561', '1', 'Fall', 2006, 'C '); + insert into takes values('64893', '527', '1', 'Fall', 2004, 'C '); + insert into takes values('63310', '972', '1', 'Spring', 2009, 'B '); + insert into takes values('29031', '629', '1', 'Spring', 2003, 'A+'); + insert into takes values('18338', '137', '1', 'Spring', 2002, 'C '); + insert into takes values('61166', '443', '1', 'Spring', 2010, 'C-'); + insert into takes values('15086', '974', '1', 'Fall', 2003, 'C-'); + insert into takes values('20540', '793', '1', 'Spring', 2002, 'C '); + insert into takes values('507', '338', '1', 'Spring', 2007, 'B-'); + insert into takes values('68278', '791', '1', 'Spring', 2006, 'A '); + insert into takes values('8343', '748', '1', 'Fall', 2003, 'C '); + insert into takes values('63489', '949', '1', 'Fall', 2007, 'C-'); + insert into takes values('94142', '486', '1', 'Fall', 2009, 'A '); + insert into takes values('77664', '626', '1', 'Fall', 2006, 'A-'); + insert into takes values('24796', '445', '1', 'Spring', 2001, 'C '); + insert into takes values('67583', '927', '1', 'Fall', 2002, 'A '); + insert into takes values('83002', '352', '1', 'Spring', 2006, 'C '); + insert into takes values('62520', '319', '1', 'Spring', 2003, 'A+'); + insert into takes values('92274', '426', '1', 'Spring', 2006, 'C-'); + insert into takes values('78434', '237', '1', 'Spring', 2008, 'A+'); + insert into takes values('69132', '867', '2', 'Fall', 2010, 'C-'); + insert into takes values('48678', '808', '1', 'Fall', 2003, 'B+'); + insert into takes values('4682', '200', '2', 'Fall', 2002, 'C '); + insert into takes values('47627', '959', '1', 'Fall', 2006, 'C+'); + insert into takes values('49280', '679', '1', 'Spring', 2010, 'B+'); + insert into takes values('79772', '959', '1', 'Fall', 2006, 'A+'); + insert into takes values('10454', '802', '1', 'Spring', 2003, 'A-'); + insert into takes values('76173', '376', '1', 'Fall', 2006, 'A-'); + insert into takes values('14563', '603', '1', 'Fall', 2003, 'A-'); + insert into takes values('90448', '795', '1', 'Spring', 2004, 'B+'); + insert into takes values('21008', '561', '1', 'Fall', 2006, 'C+'); + insert into takes values('97868', '991', '1', 'Spring', 2008, 'B+'); + insert into takes values('56849', '421', '1', 'Fall', 2004, 'C '); + insert into takes values('13408', '319', '1', 'Spring', 2003, 'C-'); + insert into takes values('91370', '334', '1', 'Fall', 2009, 'A+'); + insert into takes values('72186', '735', '2', 'Spring', 2010, 'A-'); + insert into takes values('66813', '591', '1', 'Spring', 2005, 'A+'); + insert into takes values('45083', '974', '1', 'Fall', 2003, 'B '); + insert into takes values('288', '959', '1', 'Fall', 2006, 'C+'); + insert into takes values('21100', '237', '2', 'Fall', 2009, 'C+'); + insert into takes values('67660', '867', '2', 'Fall', 2010, 'B-'); + insert into takes values('11530', '313', '1', 'Fall', 2010, 'B '); + insert into takes values('29514', '559', '1', 'Fall', 2002, 'A+'); + insert into takes values('12216', '200', '1', 'Spring', 2007, 'C+'); + insert into takes values('21246', '158', '2', 'Spring', 2008, 'B-'); + insert into takes values('89759', '376', '1', 'Fall', 2006, 'B+'); + insert into takes values('69471', '443', '1', 'Spring', 2010, 'B+'); + insert into takes values('75510', '591', '1', 'Spring', 2005, 'A+'); + insert into takes values('44258', '747', '1', 'Spring', 2004, 'A+'); + insert into takes values('51416', '200', '2', 'Fall', 2002, 'C '); + insert into takes values('47126', '421', '1', 'Fall', 2004, 'C '); + insert into takes values('23994', '612', '1', 'Fall', 2007, 'A-'); + insert into takes values('70099', '496', '1', 'Fall', 2001, 'C-'); + insert into takes values('7973', '974', '1', 'Fall', 2003, 'C-'); + insert into takes values('50386', '493', '1', 'Spring', 2010, 'C '); + insert into takes values('73072', '338', '1', 'Spring', 2007, 'A+'); + insert into takes values('13741', '702', '1', 'Spring', 2001, 'A '); + insert into takes values('792', '599', '1', 'Spring', 2003, 'C '); + insert into takes values('64259', '663', '1', 'Spring', 2005, 'C '); + insert into takes values('32506', '527', '1', 'Fall', 2004, 'B+'); + insert into takes values('40558', '486', '1', 'Fall', 2009, 'B '); + insert into takes values('95697', '443', '2', 'Spring', 2002, 'A-'); + insert into takes values('52371', '158', '1', 'Fall', 2008, 'A+'); + insert into takes values('73394', '349', '1', 'Spring', 2008, 'A-'); + insert into takes values('73908', '105', '2', 'Fall', 2002, 'A '); + insert into takes values('23311', '476', '1', 'Fall', 2010, 'A-'); + insert into takes values('53788', '760', '1', 'Spring', 2004, 'C '); + insert into takes values('23344', '974', '1', 'Fall', 2003, 'C+'); + insert into takes values('33107', '158', '1', 'Fall', 2008, 'C+'); + insert into takes values('28409', '319', '1', 'Spring', 2003, 'C '); + insert into takes values('6990', '345', '1', 'Spring', 2008, 'C+'); + insert into takes values('11237', '960', '1', 'Fall', 2009, 'C+'); + insert into takes values('42625', '258', '1', 'Fall', 2007, 'B-'); + insert into takes values('18469', '304', '1', 'Fall', 2009, 'A-'); + insert into takes values('15430', '105', '1', 'Fall', 2009, 'A-'); + insert into takes values('70452', '960', '1', 'Fall', 2009, 'C-'); + insert into takes values('93004', '345', '1', 'Spring', 2008, 'B-'); + insert into takes values('15578', '237', '2', 'Fall', 2009, 'C-'); + insert into takes values('2423', '493', '1', 'Spring', 2010, 'C-'); + insert into takes values('50977', '960', '1', 'Fall', 2009, 'A+'); + insert into takes values('38555', '760', '1', 'Spring', 2004, 'B-'); + insert into takes values('61783', '334', '1', 'Fall', 2009, 'C+'); + insert into takes values('46450', '237', '2', 'Fall', 2009, 'C-'); + insert into takes values('435', '489', '1', 'Fall', 2007, 'B '); + insert into takes values('38555', '237', '2', 'Fall', 2009, 'B '); + insert into takes values('50365', '704', '1', 'Spring', 2008, 'B+'); + insert into takes values('80227', '527', '1', 'Fall', 2004, 'C '); + insert into takes values('37734', '334', '1', 'Fall', 2009, 'A-'); + insert into takes values('83747', '962', '1', 'Spring', 2008, 'A '); + insert into takes values('93986', '445', '1', 'Spring', 2001, 'B '); + insert into takes values('53225', '362', '2', 'Fall', 2006, 'C '); + insert into takes values('1726', '493', '1', 'Spring', 2010, 'A '); + insert into takes values('85211', '105', '2', 'Fall', 2002, 'A '); + insert into takes values('63489', '443', '1', 'Spring', 2010, 'C+'); + insert into takes values('50039', '496', '1', 'Fall', 2001, 'B '); + insert into takes values('30222', '735', '2', 'Spring', 2010, 'A-'); + insert into takes values('48861', '747', '1', 'Spring', 2004, 'A-'); + insert into takes values('37038', '169', '2', 'Fall', 2002, 'B+'); + insert into takes values('57511', '571', '1', 'Spring', 2004, 'A+'); + insert into takes values('31820', '137', '1', 'Spring', 2002, 'B-'); + insert into takes values('22226', '493', '1', 'Spring', 2010, 'B+'); + insert into takes values('86127', '802', '1', 'Spring', 2003, 'B '); + insert into takes values('22004', '692', '1', 'Spring', 2010, 'C+'); + insert into takes values('85234', '352', '1', 'Spring', 2006, 'A+'); + insert into takes values('46762', '169', '2', 'Fall', 2002, 'A+'); + insert into takes values('80698', '362', '2', 'Fall', 2006, 'B '); + insert into takes values('50013', '760', '1', 'Spring', 2004, 'B+'); + insert into takes values('1367', '949', '1', 'Fall', 2007, 'B '); + insert into takes values('4940', '748', '1', 'Fall', 2003, 'C-'); + insert into takes values('7287', '561', '1', 'Fall', 2006, 'A+'); + insert into takes values('90381', '735', '1', 'Spring', 2003, 'C+'); + insert into takes values('78858', '960', '2', 'Fall', 2006, 'A '); + insert into takes values('15340', '808', '1', 'Fall', 2003, 'A+'); + insert into takes values('78792', '457', '1', 'Spring', 2001, 'B-'); + insert into takes values('49503', '493', '1', 'Spring', 2010, 'B-'); + insert into takes values('10904', '696', '1', 'Spring', 2002, 'B+'); + insert into takes values('47379', '642', '1', 'Fall', 2004, 'B '); + insert into takes values('19862', '493', '1', 'Spring', 2010, 'A+'); + insert into takes values('3005', '893', '1', 'Fall', 2007, 'B-'); + insert into takes values('67051', '959', '1', 'Fall', 2006, 'A+'); + insert into takes values('3833', '612', '1', 'Fall', 2007, 'A-'); + insert into takes values('85614', '105', '2', 'Fall', 2002, 'C+'); + insert into takes values('13081', '527', '1', 'Fall', 2004, 'B-'); + insert into takes values('98690', '802', '1', 'Spring', 2003, 'B-'); + insert into takes values('32506', '237', '1', 'Spring', 2008, 'B+'); + insert into takes values('48901', '362', '2', 'Fall', 2006, 'B-'); + insert into takes values('13028', '400', '2', 'Fall', 2003, 'B+'); + insert into takes values('72055', '629', '1', 'Spring', 2003, 'A+'); + insert into takes values('50598', '169', '1', 'Spring', 2007, 'B-'); + insert into takes values('85063', '192', '1', 'Fall', 2002, 'B+'); + insert into takes values('96772', '274', '1', 'Fall', 2002, 'A+'); + insert into takes values('68242', '482', '1', 'Fall', 2005, 'B-'); + insert into takes values('31086', '991', '1', 'Spring', 2008, 'B '); + insert into takes values('65400', '629', '1', 'Spring', 2003, 'B-'); + insert into takes values('42096', '631', '1', 'Spring', 2007, 'A+'); + insert into takes values('95029', '362', '2', 'Fall', 2006, 'C-'); + insert into takes values('15487', '663', '1', 'Spring', 2005, 'B-'); + insert into takes values('81258', '599', '1', 'Spring', 2003, 'A '); + insert into takes values('90124', '760', '1', 'Spring', 2004, 'A-'); + insert into takes values('58701', '105', '1', 'Fall', 2009, 'B-'); + insert into takes values('67407', '843', '1', 'Fall', 2010, 'A+'); + insert into takes values('914', '949', '1', 'Fall', 2007, 'C-'); + insert into takes values('62754', '960', '1', 'Fall', 2009, 'B '); + insert into takes values('56598', '603', '1', 'Fall', 2003, 'C+'); + insert into takes values('22417', '421', '1', 'Fall', 2004, 'B '); + insert into takes values('69960', '960', '1', 'Fall', 2009, 'A '); + insert into takes values('34055', '105', '2', 'Fall', 2002, 'B+'); + insert into takes values('74672', '875', '1', 'Spring', 2005, 'B+'); + insert into takes values('77172', '696', '1', 'Spring', 2002, 'C-'); + insert into takes values('56499', '457', '1', 'Spring', 2001, 'A '); + insert into takes values('79892', '366', '1', 'Fall', 2005, 'A-'); + insert into takes values('15144', '603', '1', 'Fall', 2003, 'B-'); + insert into takes values('19862', '239', '1', 'Fall', 2006, 'C '); + insert into takes values('44038', '571', '1', 'Spring', 2004, 'B '); + insert into takes values('74672', '415', '1', 'Fall', 2010, 'A '); + insert into takes values('37430', '604', '1', 'Spring', 2009, 'B-'); + insert into takes values('40481', '735', '1', 'Spring', 2003, 'A-'); + insert into takes values('79534', '808', '1', 'Fall', 2003, 'C-'); + insert into takes values('75938', '867', '2', 'Fall', 2010, 'A-'); + insert into takes values('84702', '362', '2', 'Fall', 2006, 'A-'); + insert into takes values('39204', '875', '1', 'Spring', 2005, 'A+'); + insert into takes values('85602', '400', '2', 'Fall', 2003, 'B-'); + insert into takes values('23311', '493', '1', 'Spring', 2010, 'A-'); + insert into takes values('63288', '864', '1', 'Spring', 2006, 'B-'); + insert into takes values('10527', '362', '1', 'Fall', 2005, 'C '); + insert into takes values('33837', '169', '1', 'Spring', 2007, 'B-'); + insert into takes values('8957', '443', '1', 'Spring', 2010, 'C '); + insert into takes values('80285', '603', '1', 'Fall', 2003, 'C-'); + insert into takes values('95852', '137', '1', 'Spring', 2002, 'A '); + insert into takes values('25187', '169', '1', 'Spring', 2007, 'C-'); + insert into takes values('507', '345', '1', 'Spring', 2008, 'C '); + insert into takes values('43495', '338', '2', 'Spring', 2006, 'A '); + insert into takes values('55329', '864', '1', 'Spring', 2006, 'C-'); + insert into takes values('64196', '169', '2', 'Fall', 2002, 'B+'); + insert into takes values('97023', '239', '1', 'Fall', 2006, 'C '); + insert into takes values('84239', '694', '1', 'Fall', 2002, 'C-'); + insert into takes values('94142', '258', '1', 'Fall', 2007, 'A+'); + insert into takes values('73206', '366', '1', 'Fall', 2005, 'A-'); + insert into takes values('21086', '793', '1', 'Spring', 2002, 'B+'); + insert into takes values('65205', '242', '1', 'Fall', 2009, 'B+'); + insert into takes values('9183', '545', '1', 'Fall', 2001, 'A+'); + insert into takes values('95320', '362', '1', 'Fall', 2005, 'C-'); + insert into takes values('99399', '604', '1', 'Spring', 2009, 'B-'); + insert into takes values('25528', '239', '1', 'Fall', 2006, 'A+'); + insert into takes values('72768', '468', '2', 'Fall', 2007, 'A '); + insert into takes values('63860', '599', '1', 'Spring', 2003, 'B '); + insert into takes values('89312', '445', '1', 'Spring', 2001, 'C '); + insert into takes values('86736', '105', '2', 'Fall', 2002, 'B '); + insert into takes values('4345', '960', '1', 'Fall', 2009, 'A+'); + insert into takes values('82063', '692', '1', 'Spring', 2010, 'C '); + insert into takes values('61444', '158', '2', 'Spring', 2008, 'A+'); + insert into takes values('9605', '408', '2', 'Spring', 2003, 'A-'); + insert into takes values('22260', '366', '1', 'Fall', 2005, 'A+'); + insert into takes values('36926', '591', '1', 'Spring', 2005, 'B+'); + insert into takes values('17076', '974', '1', 'Fall', 2003, 'B '); + insert into takes values('97629', '105', '2', 'Fall', 2002, 'A+'); + insert into takes values('58701', '696', '1', 'Spring', 2002, 'B '); + insert into takes values('57083', '949', '1', 'Fall', 2007, 'B-'); + insert into takes values('7514', '169', '2', 'Fall', 2002, 'B+'); + insert into takes values('97629', '313', '1', 'Fall', 2010, 'B+'); + insert into takes values('94766', '169', '2', 'Fall', 2002, 'B+'); + insert into takes values('46769', '927', '1', 'Fall', 2002, 'C+'); + insert into takes values('76768', '603', '1', 'Fall', 2003, 'A-'); + insert into takes values('23525', '457', '1', 'Spring', 2001, 'C+'); + insert into takes values('56139', '476', '1', 'Fall', 2010, 'A '); + insert into takes values('35293', '349', '1', 'Spring', 2008, 'B-'); + insert into takes values('46762', '704', '1', 'Spring', 2008, 'C-'); + insert into takes values('36102', '486', '1', 'Fall', 2009, 'C '); + insert into takes values('21552', '334', '1', 'Fall', 2009, 'C '); + insert into takes values('58919', '791', '1', 'Spring', 2006, 'C+'); + insert into takes values('1402', '443', '1', 'Spring', 2010, 'C-'); + insert into takes values('17377', '105', '1', 'Fall', 2009, 'C '); + insert into takes values('95320', '696', '1', 'Spring', 2002, 'B-'); + insert into takes values('30341', '486', '1', 'Fall', 2009, 'A+'); + insert into takes values('86001', '200', '1', 'Spring', 2007, 'C+'); + insert into takes values('83838', '258', '1', 'Fall', 2007, 'B-'); + insert into takes values('70395', '629', '1', 'Spring', 2003, 'B+'); + insert into takes values('96227', '362', '1', 'Fall', 2005, 'A+'); + insert into takes values('95175', '362', '3', 'Spring', 2008, 'B-'); + insert into takes values('96968', '319', '1', 'Spring', 2003, 'A-'); + insert into takes values('65400', '793', '1', 'Spring', 2002, 'B+'); + insert into takes values('37219', '319', '1', 'Spring', 2003, 'C+'); + insert into takes values('69747', '626', '1', 'Fall', 2006, 'A-'); + insert into takes values('7490', '808', '1', 'Fall', 2003, 'A+'); + insert into takes values('55531', '137', '1', 'Spring', 2002, 'A-'); + insert into takes values('1018', '476', '1', 'Fall', 2010, 'B+'); + insert into takes values('84410', '158', '1', 'Fall', 2008, 'B-'); + insert into takes values('5298', '158', '1', 'Fall', 2008, 'B+'); + insert into takes values('67222', '313', '1', 'Fall', 2010, 'B-'); + insert into takes values('29803', '408', '2', 'Spring', 2003, 'B+'); + insert into takes values('46442', '760', '1', 'Spring', 2004, 'A+'); + insert into takes values('13217', '362', '2', 'Fall', 2006, 'B '); + insert into takes values('28518', '629', '1', 'Spring', 2003, 'B+'); + insert into takes values('50537', '400', '1', 'Spring', 2007, 'C-'); + insert into takes values('61854', '604', '1', 'Spring', 2009, 'C+'); + insert into takes values('96052', '415', '1', 'Fall', 2010, 'A '); + insert into takes values('47025', '237', '2', 'Fall', 2009, 'A '); + insert into takes values('6523', '313', '1', 'Fall', 2010, 'B-'); + insert into takes values('50038', '527', '1', 'Fall', 2004, 'B+'); + insert into takes values('1220', '843', '1', 'Fall', 2010, 'B '); + insert into takes values('40682', '270', '1', 'Spring', 2010, 'A '); + insert into takes values('91992', '486', '1', 'Fall', 2009, 'B '); + insert into takes values('94730', '242', '1', 'Fall', 2009, 'B '); + insert into takes values('21009', '408', '1', 'Spring', 2007, 'C '); + insert into takes values('66469', '793', '1', 'Spring', 2002, 'A '); + insert into takes values('29705', '158', '1', 'Fall', 2008, 'B+'); + insert into takes values('79170', '366', '1', 'Fall', 2005, 'A+'); + insert into takes values('1018', '105', '1', 'Fall', 2009, 'A '); + insert into takes values('86651', '319', '1', 'Spring', 2003, 'C-'); + insert into takes values('99289', '747', '1', 'Spring', 2004, 'A+'); + insert into takes values('78787', '959', '1', 'Fall', 2006, 'C '); + insert into takes values('82970', '304', '1', 'Fall', 2009, 'C-'); + insert into takes values('25187', '200', '1', 'Spring', 2007, 'A '); + insert into takes values('40738', '875', '1', 'Spring', 2005, 'C '); + insert into takes values('50039', '400', '1', 'Spring', 2007, 'C-'); + insert into takes values('30182', '493', '1', 'Spring', 2010, 'B-'); + insert into takes values('61737', '313', '1', 'Fall', 2010, 'B+'); + insert into takes values('41832', '704', '1', 'Spring', 2008, 'B+'); + insert into takes values('73606', '169', '1', 'Spring', 2007, 'B-'); + insert into takes values('86736', '426', '1', 'Spring', 2006, 'B-'); + insert into takes values('64164', '795', '1', 'Spring', 2004, 'B-'); + insert into takes values('17507', '426', '1', 'Spring', 2006, 'B-'); + insert into takes values('15070', '270', '1', 'Spring', 2010, 'C-'); + insert into takes values('8251', '362', '3', 'Spring', 2008, 'A+'); + insert into takes values('72501', '591', '1', 'Spring', 2005, 'C '); + insert into takes values('83136', '591', '1', 'Spring', 2005, 'C-'); + insert into takes values('16528', '482', '1', 'Fall', 2005, 'C+'); + insert into takes values('94990', '362', '3', 'Spring', 2008, 'C-'); + insert into takes values('64067', '443', '2', 'Spring', 2002, 'A-'); + insert into takes values('39619', '338', '2', 'Spring', 2006, 'C '); + insert into takes values('77234', '169', '2', 'Fall', 2002, 'C-'); + insert into takes values('72177', '362', '1', 'Fall', 2005, 'B+'); + insert into takes values('19638', '603', '1', 'Fall', 2003, 'C-'); + insert into takes values('88793', '629', '1', 'Spring', 2003, 'C+'); + insert into takes values('99710', '362', '1', 'Fall', 2005, 'C+'); + insert into takes values('66281', '137', '1', 'Spring', 2002, 'B '); + insert into takes values('53699', '400', '1', 'Spring', 2007, 'C-'); + insert into takes values('68330', '599', '1', 'Spring', 2003, 'C '); + insert into takes values('50467', '793', '1', 'Spring', 2002, 'C-'); + insert into takes values('39114', '696', '1', 'Spring', 2002, 'C-'); + insert into takes values('98056', '626', '1', 'Fall', 2006, 'B+'); + insert into takes values('73411', '571', '1', 'Spring', 2004, 'B-'); + insert into takes values('35498', '426', '1', 'Spring', 2006, 'B-'); + insert into takes values('74016', '735', '1', 'Spring', 2003, 'C+'); + insert into takes values('13880', '864', '1', 'Spring', 2006, 'C+'); + insert into takes values('45826', '239', '1', 'Fall', 2006, 'C '); + insert into takes values('43993', '158', '1', 'Fall', 2008, 'B-'); + insert into takes values('12971', '493', '1', 'Spring', 2010, 'C '); + insert into takes values('80698', '468', '2', 'Fall', 2007, 'A '); + insert into takes values('30164', '927', '1', 'Fall', 2002, 'A+'); + insert into takes values('56089', '591', '1', 'Spring', 2005, 'B+'); + insert into takes values('55859', '867', '1', 'Fall', 2006, 'B-'); + insert into takes values('11055', '457', '1', 'Spring', 2001, 'C+'); + insert into takes values('73411', '362', '2', 'Fall', 2006, 'C '); + insert into takes values('8517', '991', '1', 'Spring', 2008, 'C-'); + insert into takes values('56882', '338', '1', 'Spring', 2007, 'C-'); + insert into takes values('43912', '679', '1', 'Spring', 2010, 'A '); + insert into takes values('57242', '599', '1', 'Spring', 2003, 'A+'); + insert into takes values('53490', '362', '3', 'Spring', 2008, 'C-'); + insert into takes values('10705', '408', '1', 'Spring', 2007, 'C '); + insert into takes values('82868', '169', '2', 'Fall', 2002, 'B '); + insert into takes values('42991', '415', '1', 'Fall', 2010, 'C+'); + insert into takes values('49873', '313', '1', 'Fall', 2010, 'C '); + insert into takes values('90448', '408', '1', 'Spring', 2007, 'B-'); + insert into takes values('34197', '631', '1', 'Spring', 2007, 'C+'); + insert into takes values('12979', '843', '1', 'Fall', 2010, 'C+'); + insert into takes values('69628', '893', '1', 'Fall', 2007, 'B '); + insert into takes values('41894', '960', '1', 'Fall', 2009, 'A '); + insert into takes values('33107', '631', '1', 'Spring', 2007, 'C+'); + insert into takes values('12362', '852', '1', 'Spring', 2008, 'C+'); + insert into takes values('57431', '192', '1', 'Fall', 2002, 'A-'); + insert into takes values('92464', '338', '2', 'Spring', 2006, 'C+'); + insert into takes values('56212', '408', '2', 'Spring', 2003, 'C-'); + insert into takes values('97065', '496', '1', 'Fall', 2001, 'B+'); + insert into takes values('41280', '362', '1', 'Fall', 2005, 'A-'); + insert into takes values('22532', '274', '1', 'Fall', 2002, 'A-'); + insert into takes values('24197', '158', '2', 'Spring', 2008, 'C+'); + insert into takes values('75299', '158', '2', 'Spring', 2008, 'A-'); + insert into takes values('72528', '960', '1', 'Fall', 2009, 'B+'); + insert into takes values('58172', '696', '1', 'Spring', 2002, 'C '); + insert into takes values('20445', '959', '1', 'Fall', 2006, 'A-'); + insert into takes values('67017', '679', '1', 'Spring', 2010, 'B '); + insert into takes values('76953', '735', '1', 'Spring', 2003, 'B+'); + insert into takes values('63449', '991', '1', 'Spring', 2008, 'A '); + insert into takes values('94535', '694', '1', 'Fall', 2002, 'A '); + insert into takes values('94998', '400', '2', 'Fall', 2003, 'A+'); + insert into takes values('7970', '169', '1', 'Spring', 2007, 'B '); + insert into takes values('49982', '748', '1', 'Fall', 2003, 'A+'); + insert into takes values('73606', '791', '1', 'Spring', 2006, 'B-'); + insert into takes values('49339', '991', '1', 'Spring', 2008, 'B+'); + insert into takes values('45002', '192', '1', 'Fall', 2002, 'A+'); + insert into takes values('31364', '105', '1', 'Fall', 2009, 'B '); + insert into takes values('13749', '304', '1', 'Fall', 2009, 'C '); + insert into takes values('77729', '352', '1', 'Spring', 2006, 'A+'); + insert into takes values('39657', '319', '1', 'Spring', 2003, 'B+'); + insert into takes values('25528', '629', '1', 'Spring', 2003, 'A '); + insert into takes values('61854', '274', '1', 'Fall', 2002, 'C '); + insert into takes values('17607', '962', '1', 'Spring', 2008, 'A+'); + insert into takes values('90567', '345', '1', 'Spring', 2008, 'C+'); + insert into takes values('38545', '793', '1', 'Spring', 2002, 'C-'); + insert into takes values('77364', '362', '1', 'Fall', 2005, 'B '); + insert into takes values('81031', '200', '2', 'Fall', 2002, 'B+'); + insert into takes values('68278', '852', '1', 'Spring', 2008, 'B '); + insert into takes values('82083', '571', '1', 'Spring', 2004, 'A+'); + insert into takes values('33882', '461', '1', 'Fall', 2002, 'C-'); + insert into takes values('92464', '612', '1', 'Fall', 2007, 'B+'); + insert into takes values('12173', '808', '1', 'Fall', 2003, 'A-'); + insert into takes values('56212', '461', '1', 'Fall', 2002, 'A '); + insert into takes values('42560', '362', '1', 'Fall', 2005, 'A '); + insert into takes values('24932', '200', '1', 'Spring', 2007, 'A '); + insert into takes values('47126', '791', '1', 'Spring', 2006, 'B '); + insert into takes values('82083', '349', '1', 'Spring', 2008, 'B-'); + insert into takes values('96052', '843', '1', 'Fall', 2010, 'A '); + insert into takes values('80610', '239', '1', 'Fall', 2006, 'A-'); + insert into takes values('44271', '927', '1', 'Fall', 2002, 'C+'); + insert into takes values('39115', '304', '1', 'Fall', 2009, 'A+'); + insert into takes values('1737', '237', '1', 'Spring', 2008, 'B+'); + insert into takes values('69225', '843', '1', 'Fall', 2010, 'C+'); + insert into takes values('2178', '629', '1', 'Spring', 2003, 'C '); + insert into takes values('51955', '629', '1', 'Spring', 2003, 'A-'); + insert into takes values('12683', '338', '1', 'Spring', 2007, 'B-'); + insert into takes values('60762', '960', '1', 'Fall', 2009, 'A+'); + insert into takes values('76057', '468', '1', 'Fall', 2005, 'C-'); + insert into takes values('56124', '545', '1', 'Fall', 2001, 'B-'); + insert into takes values('85910', '476', '1', 'Fall', 2010, 'A '); + insert into takes values('42960', '362', '3', 'Spring', 2008, 'C-'); + insert into takes values('10076', '949', '1', 'Fall', 2007, 'B '); + insert into takes values('827', '843', '1', 'Fall', 2010, 'B '); + insert into takes values('90663', '795', '1', 'Spring', 2004, 'B+'); + insert into takes values('74163', '400', '1', 'Spring', 2007, 'B-'); + insert into takes values('71025', '237', '1', 'Spring', 2008, 'C-'); + insert into takes values('76743', '426', '1', 'Spring', 2006, 'A+'); + insert into takes values('87439', '974', '1', 'Fall', 2003, 'C-'); + insert into takes values('15517', '237', '1', 'Spring', 2008, 'A '); + insert into takes values('7973', '864', '1', 'Spring', 2006, 'A+'); + insert into takes values('9605', '679', '1', 'Spring', 2010, 'B '); + insert into takes values('80248', '599', '1', 'Spring', 2003, 'C-'); + insert into takes values('50467', '959', '1', 'Fall', 2006, 'C-'); + insert into takes values('15517', '581', '1', 'Spring', 2005, 'B-'); + insert into takes values('40481', '457', '1', 'Spring', 2001, 'B+'); + insert into takes values('84515', '486', '1', 'Fall', 2009, 'B '); + insert into takes values('40558', '376', '1', 'Fall', 2006, 'A+'); + insert into takes values('62054', '270', '1', 'Spring', 2010, 'B '); + insert into takes values('95205', '445', '1', 'Spring', 2001, 'B '); + insert into takes values('36791', '864', '1', 'Spring', 2006, 'A+'); + insert into takes values('28518', '192', '1', 'Fall', 2002, 'C '); + insert into takes values('18821', '704', '1', 'Spring', 2008, 'B-'); + insert into takes values('98019', '239', '1', 'Fall', 2006, 'A '); + insert into takes values('46928', '949', '1', 'Fall', 2007, 'B+'); + insert into takes values('53424', '692', '1', 'Spring', 2010, 'A+'); + insert into takes values('83022', '169', '1', 'Spring', 2007, 'A+'); + insert into takes values('72521', '486', '1', 'Fall', 2009, 'A+'); + insert into takes values('13023', '962', '1', 'Spring', 2008, 'B+'); + insert into takes values('96153', '702', '1', 'Spring', 2001, 'C '); + insert into takes values('70572', '200', '2', 'Fall', 2002, 'A '); + insert into takes values('60762', '702', '1', 'Spring', 2001, 'A+'); + insert into takes values('90082', '735', '2', 'Spring', 2010, 'C-'); + insert into takes values('39157', '795', '1', 'Spring', 2004, 'A+'); + insert into takes values('32385', '400', '1', 'Spring', 2007, 'B-'); + insert into takes values('17996', '559', '1', 'Fall', 2002, 'B-'); + insert into takes values('99694', '345', '1', 'Spring', 2008, 'A-'); + insert into takes values('90779', '401', '1', 'Fall', 2003, 'A-'); + insert into takes values('71630', '747', '1', 'Spring', 2004, 'A '); + insert into takes values('54605', '795', '1', 'Spring', 2004, 'B+'); + insert into takes values('58170', '795', '1', 'Spring', 2004, 'C-'); + insert into takes values('18740', '362', '2', 'Fall', 2006, 'B-'); + insert into takes values('15613', '200', '1', 'Spring', 2007, 'A+'); + insert into takes values('13028', '527', '1', 'Fall', 2004, 'B '); + insert into takes values('92274', '304', '1', 'Fall', 2009, 'C '); + insert into takes values('49611', '105', '1', 'Fall', 2009, 'A '); + insert into takes values('48660', '527', '1', 'Fall', 2004, 'A+'); + insert into takes values('92849', '334', '1', 'Fall', 2009, 'B '); + insert into takes values('6712', '692', '1', 'Spring', 2010, 'C+'); + insert into takes values('75547', '631', '1', 'Spring', 2007, 'C '); + insert into takes values('67017', '960', '2', 'Fall', 2006, 'B+'); + insert into takes values('62124', '443', '1', 'Spring', 2010, 'B-'); + insert into takes values('54728', '239', '1', 'Fall', 2006, 'C-'); + insert into takes values('37038', '974', '1', 'Fall', 2003, 'C+'); + insert into takes values('59117', '443', '2', 'Spring', 2002, 'A+'); + insert into takes values('6523', '642', '1', 'Fall', 2004, 'B-'); + insert into takes values('61920', '612', '1', 'Fall', 2007, 'C+'); + insert into takes values('95175', '949', '1', 'Fall', 2007, 'C+'); + insert into takes values('96615', '571', '1', 'Spring', 2004, 'B+'); + insert into takes values('54508', '334', '1', 'Fall', 2009, 'B-'); + insert into takes values('46035', '702', '1', 'Spring', 2001, 'A-'); + insert into takes values('69853', '867', '2', 'Fall', 2010, 'B-'); + insert into takes values('15074', '158', '2', 'Spring', 2008, 'B '); + insert into takes values('47487', '352', '1', 'Spring', 2006, 'B+'); + insert into takes values('31516', '927', '1', 'Fall', 2002, 'A '); + insert into takes values('10834', '867', '1', 'Fall', 2006, 'C-'); + insert into takes values('56080', '974', '1', 'Fall', 2003, 'C '); + insert into takes values('4015', '696', '1', 'Spring', 2002, 'A '); + insert into takes values('2178', '791', '1', 'Spring', 2006, 'B '); + insert into takes values('86641', '791', '1', 'Spring', 2006, 'B-'); + insert into takes values('25331', '169', '1', 'Spring', 2007, 'A+'); + insert into takes values('65676', '561', '1', 'Fall', 2006, 'C+'); + insert into takes values('69783', '960', '2', 'Fall', 2006, 'C '); + insert into takes values('60224', '867', '2', 'Fall', 2010, 'B-'); + insert into takes values('89140', '137', '1', 'Spring', 2002, 'A-'); + insert into takes values('1836', '457', '1', 'Spring', 2001, 'C-'); + insert into takes values('85910', '974', '1', 'Fall', 2003, 'A+'); + insert into takes values('1922', '852', '1', 'Spring', 2008, 'C+'); + insert into takes values('86806', '612', '1', 'Fall', 2007, 'C '); + insert into takes values('98140', '571', '1', 'Spring', 2004, 'C-'); + insert into takes values('14023', '376', '1', 'Fall', 2006, 'A-'); + insert into takes values('792', '408', '2', 'Spring', 2003, 'A-'); + insert into takes values('91343', '192', '1', 'Fall', 2002, 'C+'); + insert into takes values('94535', '443', '2', 'Spring', 2002, 'C '); + insert into takes values('84704', '702', '1', 'Spring', 2001, 'A-'); + insert into takes values('65703', '626', '1', 'Fall', 2006, 'C '); + insert into takes values('37521', '704', '1', 'Spring', 2008, 'A '); + insert into takes values('10454', '468', '2', 'Fall', 2007, 'C-'); + insert into takes values('22198', '237', '1', 'Spring', 2008, 'C+'); + insert into takes values('14432', '169', '2', 'Fall', 2002, 'B-'); + insert into takes values('7602', '604', '1', 'Spring', 2009, 'A-'); + insert into takes values('19245', '200', '2', 'Fall', 2002, 'A '); + insert into takes values('9114', '747', '1', 'Spring', 2004, 'B-'); + insert into takes values('35721', '362', '1', 'Fall', 2005, 'C '); + insert into takes values('30177', '270', '1', 'Spring', 2010, 'A '); + insert into takes values('75547', '704', '1', 'Spring', 2008, 'A-'); + insert into takes values('46074', '400', '1', 'Spring', 2007, 'B+'); + insert into takes values('22260', '604', '1', 'Spring', 2009, 'B-'); + insert into takes values('1533', '270', '1', 'Spring', 2010, 'A+'); + insert into takes values('64222', '893', '1', 'Fall', 2007, 'C '); + insert into takes values('38476', '875', '1', 'Spring', 2005, 'A '); + insert into takes values('13403', '795', '1', 'Spring', 2004, 'C-'); + insert into takes values('85534', '192', '1', 'Fall', 2002, 'A '); + insert into takes values('87048', '704', '1', 'Spring', 2008, 'A-'); + insert into takes values('86736', '974', '1', 'Fall', 2003, 'B '); + insert into takes values('83557', '692', '1', 'Spring', 2010, 'B+'); + insert into takes values('99268', '735', '2', 'Spring', 2010, 'C+'); + insert into takes values('13290', '960', '1', 'Fall', 2009, 'C-'); + insert into takes values('34126', '421', '1', 'Fall', 2004, 'C-'); + insert into takes values('99694', '237', '1', 'Spring', 2008, 'C '); + insert into takes values('65681', '949', '1', 'Fall', 2007, 'B-'); + insert into takes values('94620', '974', '1', 'Fall', 2003, 'B+'); + insert into takes values('55009', '864', '1', 'Spring', 2006, 'A+'); + insert into takes values('95099', '105', '2', 'Fall', 2002, 'C '); + insert into takes values('32744', '959', '1', 'Fall', 2006, 'A+'); + insert into takes values('76291', '692', '1', 'Spring', 2010, 'B+'); + insert into takes values('62487', '334', '1', 'Fall', 2009, 'C-'); + insert into takes values('60748', '200', '1', 'Spring', 2007, 'C+'); + insert into takes values('32506', '704', '1', 'Spring', 2008, 'C+'); + insert into takes values('70564', '313', '1', 'Fall', 2010, 'A+'); + insert into takes values('18367', '239', '1', 'Fall', 2006, 'A+'); + insert into takes values('94894', '237', '2', 'Fall', 2009, 'A-'); + insert into takes values('91580', '527', '1', 'Fall', 2004, 'C+'); + insert into takes values('9440', '735', '2', 'Spring', 2010, 'A '); + insert into takes values('93004', '489', '1', 'Fall', 2007, 'A+'); + insert into takes values('66484', '694', '1', 'Fall', 2002, 'C '); + insert into takes values('17424', '949', '1', 'Fall', 2007, 'A-'); + insert into takes values('91442', '626', '1', 'Fall', 2006, 'B-'); + insert into takes values('7287', '604', '1', 'Spring', 2009, 'C+'); + insert into takes values('30957', '461', '1', 'Fall', 2002, 'B-'); + insert into takes values('86969', '642', '1', 'Fall', 2004, 'A-'); + insert into takes values('20803', '927', '1', 'Fall', 2002, 'B+'); + insert into takes values('16297', '489', '1', 'Fall', 2007, 'B+'); + insert into takes values('90004', '105', '1', 'Fall', 2009, 'C-'); + insert into takes values('5703', '791', '1', 'Spring', 2006, 'B-'); + insert into takes values('91580', '426', '1', 'Spring', 2006, 'C-'); + insert into takes values('43032', '642', '1', 'Fall', 2004, 'A-'); + insert into takes values('37219', '482', '1', 'Fall', 2005, 'B+'); + insert into takes values('48660', '468', '2', 'Fall', 2007, 'B+'); + insert into takes values('92040', '679', '1', 'Spring', 2010, 'C '); + insert into takes values('8378', '629', '1', 'Spring', 2003, 'C+'); + insert into takes values('107', '704', '1', 'Spring', 2008, 'B-'); + insert into takes values('23794', '735', '2', 'Spring', 2010, 'C '); + insert into takes values('31079', '843', '1', 'Fall', 2010, 'C-'); + insert into takes values('8807', '527', '1', 'Fall', 2004, 'B '); + insert into takes values('44836', '493', '1', 'Spring', 2010, 'A-'); + insert into takes values('68516', '362', '2', 'Fall', 2006, 'A '); + insert into takes values('81028', '864', '1', 'Spring', 2006, 'B+'); + insert into takes values('10814', '591', '1', 'Spring', 2005, 'B+'); + insert into takes values('163', '704', '1', 'Spring', 2008, 'C+'); + insert into takes values('56849', '468', '1', 'Fall', 2005, 'A+'); + insert into takes values('66763', '893', '1', 'Fall', 2007, 'B+'); + insert into takes values('62705', '457', '1', 'Spring', 2001, 'B '); + insert into takes values('71631', '415', '1', 'Fall', 2010, 'C '); + insert into takes values('41890', '679', '1', 'Spring', 2010, 'C-'); + insert into takes values('95850', '401', '1', 'Fall', 2003, 'A '); + insert into takes values('64039', '457', '1', 'Spring', 2001, 'B '); + insert into takes values('69521', '864', '1', 'Spring', 2006, 'B-'); + insert into takes values('67425', '748', '1', 'Fall', 2003, 'B '); + insert into takes values('22086', '242', '1', 'Fall', 2009, 'C-'); + insert into takes values('82970', '696', '1', 'Spring', 2002, 'C-'); + insert into takes values('36379', '604', '1', 'Spring', 2009, 'C-'); + insert into takes values('42960', '468', '1', 'Fall', 2005, 'A+'); + insert into takes values('82126', '696', '1', 'Spring', 2002, 'A-'); + insert into takes values('11262', '426', '1', 'Spring', 2006, 'A '); + insert into takes values('8603', '200', '1', 'Spring', 2007, 'B+'); + insert into takes values('32385', '864', '1', 'Spring', 2006, 'C '); + insert into takes values('70099', '476', '1', 'Fall', 2010, 'B+'); + insert into takes values('50702', '304', '1', 'Fall', 2009, 'A '); + insert into takes values('96988', '561', '1', 'Fall', 2006, 'B+'); + insert into takes values('92417', '852', '1', 'Spring', 2008, 'C-'); + insert into takes values('2967', '629', '1', 'Spring', 2003, 'B+'); + insert into takes values('70099', '200', '2', 'Fall', 2002, 'C+'); + insert into takes values('92839', '258', '1', 'Fall', 2007, 'B '); + insert into takes values('63582', '304', '1', 'Fall', 2009, 'B+'); + insert into takes values('71628', '158', '1', 'Fall', 2008, 'A '); + insert into takes values('50467', '631', '1', 'Spring', 2007, 'C-'); + insert into takes values('23224', '591', '1', 'Spring', 2005, 'C-'); + insert into takes values('76224', '843', '1', 'Fall', 2010, 'B-'); + insert into takes values('68554', '445', '1', 'Spring', 2001, 'A+'); + insert into takes values('14621', '345', '1', 'Spring', 2008, 'A+'); + insert into takes values('46337', '400', '1', 'Spring', 2007, 'C-'); + insert into takes values('94522', '426', '1', 'Spring', 2006, 'C+'); + insert into takes values('29707', '991', '1', 'Spring', 2008, 'A+'); + insert into takes values('75231', '304', '1', 'Fall', 2009, 'B+'); + insert into takes values('83314', '791', '1', 'Spring', 2006, 'B+'); + insert into takes values('85746', '747', '1', 'Spring', 2004, 'A '); + insert into takes values('64155', '591', '1', 'Spring', 2005, 'C+'); + insert into takes values('74639', '692', '1', 'Spring', 2010, 'B '); + insert into takes values('37653', '852', '1', 'Spring', 2008, 'B+'); + insert into takes values('91370', '702', '1', 'Spring', 2001, 'A+'); + insert into takes values('85575', '704', '1', 'Spring', 2008, 'B+'); + insert into takes values('20002', '137', '1', 'Spring', 2002, 'A+'); + insert into takes values('37653', '319', '1', 'Spring', 2003, 'C '); + insert into takes values('12615', '486', '1', 'Fall', 2009, 'C+'); + insert into takes values('15249', '696', '1', 'Spring', 2002, 'C '); + insert into takes values('49073', '274', '1', 'Fall', 2002, 'A+'); + insert into takes values('64067', '158', '1', 'Fall', 2008, 'C-'); + insert into takes values('44998', '692', '1', 'Spring', 2010, 'C-'); + insert into takes values('24116', '702', '1', 'Spring', 2001, 'B+'); + insert into takes values('28316', '415', '1', 'Fall', 2010, 'B+'); + insert into takes values('89414', '642', '1', 'Fall', 2004, 'A-'); + insert into takes values('59848', '105', '1', 'Fall', 2009, 'C '); + insert into takes values('22142', '679', '1', 'Spring', 2010, 'B-'); + insert into takes values('33401', '169', '1', 'Spring', 2007, 'C-'); + insert into takes values('99271', '960', '2', 'Fall', 2006, 'B-'); + insert into takes values('42565', '258', '1', 'Fall', 2007, 'A-'); + insert into takes values('30896', '629', '1', 'Spring', 2003, 'B-'); + insert into takes values('53048', '972', '1', 'Spring', 2009, 'C-'); + insert into takes values('17424', '200', '1', 'Spring', 2007, 'B '); + insert into takes values('48861', '445', '1', 'Spring', 2001, 'C+'); + insert into takes values('3639', '893', '1', 'Fall', 2007, 'C-'); + insert into takes values('14284', '366', '1', 'Fall', 2005, 'B+'); + insert into takes values('49873', '748', '1', 'Fall', 2003, 'C '); + insert into takes values('23500', '599', '1', 'Spring', 2003, 'A+'); + insert into takes values('69752', '352', '1', 'Spring', 2006, 'C '); + insert into takes values('82083', '875', '1', 'Spring', 2005, 'B '); + insert into takes values('11126', '493', '1', 'Spring', 2010, 'B+'); + insert into takes values('87246', '795', '1', 'Spring', 2004, 'A '); + insert into takes values('64550', '927', '1', 'Fall', 2002, 'B '); + insert into takes values('69521', '735', '2', 'Spring', 2010, 'C+'); + insert into takes values('56057', '496', '1', 'Fall', 2001, 'A+'); + insert into takes values('5381', '304', '1', 'Fall', 2009, 'B+'); + insert into takes values('15726', '304', '1', 'Fall', 2009, 'A+'); + insert into takes values('78581', '270', '1', 'Spring', 2010, 'C-'); + insert into takes values('36303', '949', '1', 'Fall', 2007, 'B-'); + insert into takes values('82646', '319', '1', 'Spring', 2003, 'B '); + insert into takes values('69230', '362', '3', 'Spring', 2008, 'B '); + insert into takes values('76743', '338', '1', 'Spring', 2007, 'C-'); + insert into takes values('69132', '571', '1', 'Spring', 2004, 'B+'); + insert into takes values('6673', '408', '2', 'Spring', 2003, 'B-'); + insert into takes values('11453', '959', '1', 'Fall', 2006, 'A '); + insert into takes values('41683', '747', '1', 'Spring', 2004, 'B '); + insert into takes values('85445', '349', '1', 'Spring', 2008, 'A+'); + insert into takes values('58085', '927', '1', 'Fall', 2002, 'A+'); + insert into takes values('4508', '349', '1', 'Spring', 2008, 'B '); + insert into takes values('12216', '105', '1', 'Fall', 2009, 'A-'); + insert into takes values('79170', '692', '1', 'Spring', 2010, 'C+'); + insert into takes values('32464', '362', '2', 'Fall', 2006, 'B+'); + insert into takes values('34542', '443', '1', 'Spring', 2010, 'A-'); + insert into takes values('44258', '401', '1', 'Fall', 2003, 'A+'); + insert into takes values('52157', '338', '2', 'Spring', 2006, 'B-'); + insert into takes values('36102', '158', '2', 'Spring', 2008, 'C-'); + insert into takes values('71529', '192', '1', 'Fall', 2002, 'C-'); + insert into takes values('64945', '401', '1', 'Fall', 2003, 'A+'); + insert into takes values('97679', '748', '1', 'Fall', 2003, 'A '); + insert into takes values('11083', '991', '1', 'Spring', 2008, 'C+'); + insert into takes values('22325', '843', '1', 'Fall', 2010, 'B '); + insert into takes values('80057', '338', '1', 'Spring', 2007, 'B+'); + insert into takes values('13211', '959', '1', 'Fall', 2006, 'A '); + insert into takes values('14829', '105', '1', 'Fall', 2009, 'B '); + insert into takes values('35687', '629', '1', 'Spring', 2003, 'B+'); + insert into takes values('28738', '735', '2', 'Spring', 2010, 'C-'); + insert into takes values('72768', '496', '1', 'Fall', 2001, 'C+'); + insert into takes values('48009', '545', '1', 'Fall', 2001, 'C-'); + insert into takes values('77580', '604', '1', 'Spring', 2009, 'C+'); + insert into takes values('89246', '747', '1', 'Spring', 2004, 'C+'); + insert into takes values('36263', '702', '1', 'Spring', 2001, 'A '); + insert into takes values('16631', '893', '1', 'Fall', 2007, 'B-'); + insert into takes values('69783', '591', '1', 'Spring', 2005, 'C+'); + insert into takes values('72768', '489', '1', 'Fall', 2007, 'A '); + insert into takes values('31624', '352', '1', 'Spring', 2006, 'B-'); + insert into takes values('39619', '893', '1', 'Fall', 2007, 'B '); + insert into takes values('19848', '960', '2', 'Fall', 2006, 'A-'); + insert into takes values('30124', '445', '1', 'Spring', 2001, 'C '); + insert into takes values('9256', '493', '1', 'Spring', 2010, 'B-'); + insert into takes values('61998', '105', '1', 'Fall', 2009, 'B-'); + insert into takes values('43226', '760', '1', 'Spring', 2004, 'B '); + insert into takes values('85451', '974', '1', 'Fall', 2003, 'C '); + insert into takes values('5943', '629', '1', 'Spring', 2003, 'C '); + insert into takes values('47670', '808', '1', 'Fall', 2003, 'B-'); + insert into takes values('69471', '793', '1', 'Spring', 2002, 'A-'); + insert into takes values('2423', '972', '1', 'Spring', 2009, 'C+'); + insert into takes values('5843', '893', '1', 'Fall', 2007, 'A-'); + insert into takes values('62152', '366', '1', 'Fall', 2005, 'A '); + insert into takes values('9114', '362', '3', 'Spring', 2008, 'A+'); + insert into takes values('14484', '496', '1', 'Fall', 2001, 'A '); + insert into takes values('11057', '345', '1', 'Spring', 2008, 'A+'); + insert into takes values('94730', '313', '1', 'Fall', 2010, 'A-'); + insert into takes values('3487', '793', '1', 'Spring', 2002, 'A-'); + insert into takes values('71878', '338', '1', 'Spring', 2007, 'A+'); + insert into takes values('95697', '486', '1', 'Fall', 2009, 'C-'); + insert into takes values('91370', '927', '1', 'Fall', 2002, 'A+'); + insert into takes values('96117', '843', '1', 'Fall', 2010, 'C+'); + insert into takes values('24002', '603', '1', 'Fall', 2003, 'C '); + insert into takes values('12979', '258', '1', 'Fall', 2007, 'A '); + insert into takes values('16993', '345', '1', 'Spring', 2008, 'B+'); + insert into takes values('41741', '795', '1', 'Spring', 2004, 'A '); + insert into takes values('81245', '959', '1', 'Fall', 2006, 'B-'); + insert into takes values('11201', '468', '1', 'Fall', 2005, 'A '); + insert into takes values('66356', '867', '2', 'Fall', 2010, 'A '); + insert into takes values('14869', '421', '1', 'Fall', 2004, 'B '); + insert into takes values('40189', '696', '1', 'Spring', 2002, 'A '); + insert into takes values('52134', '366', '1', 'Fall', 2005, 'B+'); + insert into takes values('17997', '972', '1', 'Spring', 2009, 'B+'); + insert into takes values('80990', '362', '1', 'Fall', 2005, 'A '); + insert into takes values('41965', '960', '1', 'Fall', 2009, 'B+'); + insert into takes values('99399', '802', '1', 'Spring', 2003, 'B+'); + insert into takes values('87044', '334', '1', 'Fall', 2009, 'C '); + insert into takes values('85809', '362', '2', 'Fall', 2006, 'C '); + insert into takes values('10269', '893', '1', 'Fall', 2007, 'B '); + insert into takes values('75040', '747', '1', 'Spring', 2004, 'B+'); + insert into takes values('98619', '362', '2', 'Fall', 2006, 'A '); + insert into takes values('13023', '974', '1', 'Fall', 2003, 'B '); + insert into takes values('65753', '408', '2', 'Spring', 2003, 'A+'); + insert into takes values('63582', '949', '1', 'Fall', 2007, 'C '); + insert into takes values('57377', '679', '1', 'Spring', 2010, 'B-'); + insert into takes values('27952', '864', '1', 'Spring', 2006, 'B '); + insert into takes values('68150', '875', '1', 'Spring', 2005, 'A+'); + insert into takes values('58595', '559', '1', 'Fall', 2002, 'C+'); + insert into takes values('88389', '604', '1', 'Spring', 2009, 'A '); + insert into takes values('39580', '603', '1', 'Fall', 2003, 'A-'); + insert into takes values('33759', '400', '2', 'Fall', 2003, 'B '); + insert into takes values('59553', '545', '1', 'Fall', 2001, 'B-'); + insert into takes values('41774', '960', '1', 'Fall', 2009, 'C+'); + insert into takes values('52945', '959', '1', 'Fall', 2006, 'B '); + insert into takes values('7020', '362', '1', 'Fall', 2005, 'B-'); + insert into takes values('54605', '457', '1', 'Spring', 2001, 'A+'); + insert into takes values('41491', '415', '1', 'Fall', 2010, 'C-'); + insert into takes values('12711', '352', '1', 'Spring', 2006, 'C+'); + insert into takes values('4438', '808', '1', 'Fall', 2003, 'B+'); + insert into takes values('91063', '974', '1', 'Fall', 2003, 'A+'); + insert into takes values('91915', '760', '1', 'Spring', 2004, 'C-'); + insert into takes values('85308', '612', '1', 'Fall', 2007, 'C-'); + insert into takes values('84410', '443', '2', 'Spring', 2002, 'A-'); + insert into takes values('93814', '808', '1', 'Fall', 2003, 'A+'); + insert into takes values('5017', '735', '1', 'Spring', 2003, 'C '); + insert into takes values('87651', '960', '2', 'Fall', 2006, 'C+'); + insert into takes values('44551', '158', '2', 'Spring', 2008, 'A+'); + insert into takes values('87651', '629', '1', 'Spring', 2003, 'B '); + insert into takes values('62636', '169', '1', 'Spring', 2007, 'C '); + insert into takes values('507', '242', '1', 'Fall', 2009, 'A '); + insert into takes values('50537', '663', '1', 'Spring', 2005, 'C-'); + insert into takes values('39238', '105', '2', 'Fall', 2002, 'A+'); + insert into takes values('86529', '692', '1', 'Spring', 2010, 'B '); + insert into takes values('38013', '366', '1', 'Fall', 2005, 'C-'); + insert into takes values('10556', '338', '1', 'Spring', 2007, 'B+'); + insert into takes values('54610', '692', '1', 'Spring', 2010, 'C '); + insert into takes values('90814', '843', '1', 'Fall', 2010, 'A '); + insert into takes values('30182', '376', '1', 'Fall', 2006, 'C '); + insert into takes values('70572', '362', '3', 'Spring', 2008, 'B+'); + insert into takes values('16969', '362', '2', 'Fall', 2006, 'C-'); + insert into takes values('85614', '137', '1', 'Spring', 2002, 'B+'); + insert into takes values('62152', '604', '1', 'Spring', 2009, 'C+'); + insert into takes values('75082', '237', '1', 'Spring', 2008, 'C '); + insert into takes values('63502', '401', '1', 'Fall', 2003, 'C '); + insert into takes values('59553', '679', '1', 'Spring', 2010, 'A+'); + insert into takes values('28019', '376', '1', 'Fall', 2006, 'C-'); + insert into takes values('72501', '603', '1', 'Fall', 2003, 'A+'); + insert into takes values('73606', '991', '1', 'Spring', 2008, 'C-'); + insert into takes values('91063', '629', '1', 'Spring', 2003, 'C+'); + insert into takes values('24010', '445', '1', 'Spring', 2001, 'C-'); + insert into takes values('50537', '237', '1', 'Spring', 2008, 'C+'); + insert into takes values('31476', '158', '2', 'Spring', 2008, 'C '); + insert into takes values('36019', '362', '2', 'Fall', 2006, 'B-'); + insert into takes values('98019', '376', '1', 'Fall', 2006, 'B+'); + insert into takes values('34392', '545', '1', 'Fall', 2001, 'B-'); + insert into takes values('96988', '960', '1', 'Fall', 2009, 'C-'); + insert into takes values('32954', '304', '1', 'Fall', 2009, 'A '); + insert into takes values('85904', '237', '1', 'Spring', 2008, 'A-'); + insert into takes values('51553', '421', '1', 'Fall', 2004, 'B '); + insert into takes values('58170', '200', '1', 'Spring', 2007, 'B-'); + insert into takes values('35042', '604', '1', 'Spring', 2009, 'C-'); + insert into takes values('96722', '313', '1', 'Fall', 2010, 'B+'); + insert into takes values('57135', '408', '2', 'Spring', 2003, 'B '); + insert into takes values('43505', '604', '1', 'Spring', 2009, 'C+'); + insert into takes values('76743', '443', '1', 'Spring', 2010, 'C '); + insert into takes values('56755', '158', '1', 'Fall', 2008, 'C+'); + insert into takes values('8426', '192', '1', 'Fall', 2002, 'A '); + insert into takes values('49813', '362', '2', 'Fall', 2006, 'A '); + insert into takes values('33645', '962', '1', 'Spring', 2008, 'A '); + insert into takes values('63090', '760', '1', 'Spring', 2004, 'C+'); + insert into takes values('60040', '457', '1', 'Spring', 2001, 'A-'); + insert into takes values('16969', '599', '1', 'Spring', 2003, 'C+'); + insert into takes values('10705', '468', '1', 'Fall', 2005, 'C-'); + insert into takes values('98019', '362', '2', 'Fall', 2006, 'B '); + insert into takes values('88887', '927', '1', 'Fall', 2002, 'B '); + insert into takes values('94324', '482', '1', 'Fall', 2005, 'B '); + insert into takes values('72358', '200', '2', 'Fall', 2002, 'C-'); + insert into takes values('20180', '604', '1', 'Spring', 2009, 'A+'); + insert into takes values('62152', '461', '1', 'Fall', 2002, 'C-'); + insert into takes values('18740', '443', '2', 'Spring', 2002, 'A '); + insert into takes values('55531', '591', '1', 'Spring', 2005, 'C+'); + insert into takes values('56003', '408', '2', 'Spring', 2003, 'C '); + insert into takes values('78552', '747', '1', 'Spring', 2004, 'A+'); + insert into takes values('19862', '591', '1', 'Spring', 2005, 'C '); + insert into takes values('99369', '338', '1', 'Spring', 2007, 'C '); + insert into takes values('24932', '631', '1', 'Spring', 2007, 'B '); + insert into takes values('12078', '468', '2', 'Fall', 2007, 'B '); + insert into takes values('1232', '679', '1', 'Spring', 2010, 'B-'); + insert into takes values('21556', '486', '1', 'Fall', 2009, 'A '); + insert into takes values('16250', '949', '1', 'Fall', 2007, 'B-'); + insert into takes values('36265', '604', '1', 'Spring', 2009, 'C+'); + insert into takes values('50537', '960', '2', 'Fall', 2006, 'A+'); + insert into takes values('60867', '489', '1', 'Fall', 2007, 'B-'); + insert into takes values('61332', '486', '1', 'Fall', 2009, 'A-'); + insert into takes values('78756', '400', '1', 'Spring', 2007, 'B-'); + insert into takes values('47265', '362', '1', 'Fall', 2005, 'B+'); + insert into takes values('74530', '642', '1', 'Fall', 2004, 'A-'); + insert into takes values('90372', '612', '1', 'Fall', 2007, 'A+'); + insert into takes values('68278', '237', '2', 'Fall', 2009, 'C+'); + insert into takes values('99463', '802', '1', 'Spring', 2003, 'B+'); + insert into takes values('38121', '349', '1', 'Spring', 2008, 'C+'); + insert into takes values('66813', '793', '1', 'Spring', 2002, 'B-'); + insert into takes values('18499', '319', '1', 'Spring', 2003, 'A-'); + insert into takes values('36881', '591', '1', 'Spring', 2005, 'B '); + insert into takes values('70965', '239', '1', 'Fall', 2006, 'A+'); + insert into takes values('39115', '408', '1', 'Spring', 2007, 'B-'); + insert into takes values('1460', '581', '1', 'Spring', 2005, 'A-'); + insert into takes values('79352', '270', '1', 'Spring', 2010, 'B '); + insert into takes values('27898', '319', '1', 'Spring', 2003, 'A '); + insert into takes values('97590', '679', '1', 'Spring', 2010, 'A-'); + insert into takes values('78758', '663', '1', 'Spring', 2005, 'C '); + insert into takes values('54620', '808', '1', 'Fall', 2003, 'B-'); + insert into takes values('38668', '319', '1', 'Spring', 2003, 'C+'); + insert into takes values('90089', '158', '1', 'Fall', 2008, 'B '); + insert into takes values('19362', '486', '1', 'Fall', 2009, 'A+'); + insert into takes values('98984', '735', '1', 'Spring', 2003, 'B+'); + insert into takes values('20180', '362', '3', 'Spring', 2008, 'B '); + insert into takes values('75510', '791', '1', 'Spring', 2006, 'B+'); + insert into takes values('30334', '843', '1', 'Fall', 2010, 'A '); + insert into takes values('65190', '105', '2', 'Fall', 2002, 'B+'); + insert into takes values('2795', '629', '1', 'Spring', 2003, 'C '); + insert into takes values('20180', '158', '1', 'Fall', 2008, 'A+'); + insert into takes values('94257', '237', '1', 'Spring', 2008, 'C '); + insert into takes values('39619', '169', '1', 'Spring', 2007, 'C+'); + insert into takes values('84167', '991', '1', 'Spring', 2008, 'B-'); + insert into takes values('4355', '158', '1', 'Fall', 2008, 'C+'); + insert into takes values('57666', '237', '2', 'Fall', 2009, 'B '); + insert into takes values('62124', '482', '1', 'Fall', 2005, 'A-'); + insert into takes values('37869', '258', '1', 'Fall', 2007, 'B '); + insert into takes values('10814', '694', '1', 'Fall', 2002, 'A-'); + insert into takes values('76049', '808', '1', 'Fall', 2003, 'B-'); + insert into takes values('53077', '362', '1', 'Fall', 2005, 'A+'); + insert into takes values('68453', '237', '1', 'Spring', 2008, 'B '); + insert into takes values('39925', '362', '1', 'Fall', 2005, 'A-'); + insert into takes values('13921', '313', '1', 'Fall', 2010, 'C '); + insert into takes values('13352', '694', '1', 'Fall', 2002, 'A+'); + insert into takes values('53728', '426', '1', 'Spring', 2006, 'B+'); + insert into takes values('60984', '603', '1', 'Fall', 2003, 'C '); + insert into takes values('12971', '349', '1', 'Spring', 2008, 'A '); + insert into takes values('57185', '362', '1', 'Fall', 2005, 'C '); + insert into takes values('2561', '604', '1', 'Spring', 2009, 'A '); + insert into takes values('64934', '169', '1', 'Spring', 2007, 'A+'); + insert into takes values('27727', '696', '1', 'Spring', 2002, 'B-'); + insert into takes values('85754', '603', '1', 'Fall', 2003, 'B+'); + insert into takes values('39892', '443', '2', 'Spring', 2002, 'A-'); + insert into takes values('57377', '400', '2', 'Fall', 2003, 'B+'); + insert into takes values('71387', '795', '1', 'Spring', 2004, 'C '); + insert into takes values('67655', '239', '1', 'Fall', 2006, 'C-'); + insert into takes values('62124', '604', '1', 'Spring', 2009, 'B '); + insert into takes values('66269', '313', '1', 'Fall', 2010, 'C+'); + insert into takes values('40932', '426', '1', 'Spring', 2006, 'A '); + insert into takes values('98388', '169', '1', 'Spring', 2007, 'A-'); + insert into takes values('52019', '603', '1', 'Fall', 2003, 'C '); + insert into takes values('74639', '960', '1', 'Fall', 2009, 'A+'); + insert into takes values('36494', '334', '1', 'Fall', 2009, 'C '); + insert into takes values('69307', '991', '1', 'Spring', 2008, 'C+'); + insert into takes values('93571', '694', '1', 'Fall', 2002, 'B '); + insert into takes values('45083', '237', '1', 'Spring', 2008, 'A+'); + insert into takes values('75513', '200', '2', 'Fall', 2002, 'C-'); + insert into takes values('38676', '591', '1', 'Spring', 2005, 'A+'); + insert into takes values('88801', '200', '1', 'Spring', 2007, 'A-'); + insert into takes values('67146', '735', '2', 'Spring', 2010, 'B-'); + insert into takes values('17057', '200', '2', 'Fall', 2002, 'B '); + insert into takes values('72657', '960', '2', 'Fall', 2006, 'C '); + insert into takes values('69521', '376', '1', 'Fall', 2006, 'C-'); + insert into takes values('82687', '366', '1', 'Fall', 2005, 'A-'); + insert into takes values('33460', '496', '1', 'Fall', 2001, 'C-'); + insert into takes values('47670', '631', '1', 'Spring', 2007, 'B-'); + insert into takes values('858', '137', '1', 'Spring', 2002, 'A+'); + insert into takes values('1232', '239', '1', 'Fall', 2006, 'A+'); + insert into takes values('89759', '972', '1', 'Spring', 2009, 'C+'); + insert into takes values('83871', '949', '1', 'Fall', 2007, 'A '); + insert into takes values('83557', '795', '1', 'Spring', 2004, 'A+'); + insert into takes values('86404', '867', '2', 'Fall', 2010, 'B-'); + insert into takes values('22396', '493', '1', 'Spring', 2010, 'B+'); + insert into takes values('76953', '313', '1', 'Fall', 2010, 'C-'); + insert into takes values('13511', '408', '2', 'Spring', 2003, 'C+'); + insert into takes values('18859', '270', '1', 'Spring', 2010, 'B+'); + insert into takes values('92867', '192', '1', 'Fall', 2002, 'C-'); + insert into takes values('8603', '362', '3', 'Spring', 2008, 'B+'); + insert into takes values('58919', '962', '1', 'Spring', 2008, 'A+'); + insert into takes values('39901', '949', '1', 'Fall', 2007, 'A '); + insert into takes values('30188', '629', '1', 'Spring', 2003, 'C-'); + insert into takes values('86375', '679', '1', 'Spring', 2010, 'B+'); + insert into takes values('41345', '200', '1', 'Spring', 2007, 'C+'); + insert into takes values('56486', '603', '1', 'Fall', 2003, 'B+'); + insert into takes values('16297', '493', '1', 'Spring', 2010, 'A '); + insert into takes values('16480', '735', '2', 'Spring', 2010, 'A '); + insert into takes values('28252', '960', '2', 'Fall', 2006, 'B-'); + insert into takes values('14628', '747', '1', 'Spring', 2004, 'C+'); + insert into takes values('90089', '704', '1', 'Spring', 2008, 'A-'); + insert into takes values('50039', '974', '1', 'Fall', 2003, 'B-'); + insert into takes values('8426', '545', '1', 'Fall', 2001, 'B '); + insert into takes values('78332', '476', '1', 'Fall', 2010, 'C+'); + insert into takes values('28004', '362', '2', 'Fall', 2006, 'B+'); + insert into takes values('51817', '338', '2', 'Spring', 2006, 'B-'); + insert into takes values('98140', '468', '2', 'Fall', 2007, 'B '); + insert into takes values('69730', '893', '1', 'Fall', 2007, 'B '); + insert into takes values('22050', '334', '1', 'Fall', 2009, 'C-'); + insert into takes values('52876', '867', '1', 'Fall', 2006, 'A+'); + insert into takes values('96067', '629', '1', 'Spring', 2003, 'A+'); + insert into takes values('49205', '604', '1', 'Spring', 2009, 'A+'); + insert into takes values('88417', '270', '1', 'Spring', 2010, 'C '); + insert into takes values('8807', '200', '1', 'Spring', 2007, 'C-'); + insert into takes values('81245', '927', '1', 'Fall', 2002, 'C '); + insert into takes values('336', '679', '1', 'Spring', 2010, 'A '); + insert into takes values('14554', '400', '1', 'Spring', 2007, 'A '); + insert into takes values('88887', '421', '1', 'Fall', 2004, 'B-'); + insert into takes values('65299', '959', '1', 'Fall', 2006, 'C+'); + insert into takes values('33206', '352', '1', 'Spring', 2006, 'B-'); + insert into takes values('8912', '808', '1', 'Fall', 2003, 'C '); + insert into takes values('93171', '867', '2', 'Fall', 2010, 'A+'); + insert into takes values('61783', '415', '1', 'Fall', 2010, 'C+'); + insert into takes values('74464', '415', '1', 'Fall', 2010, 'B-'); + insert into takes values('94726', '843', '1', 'Fall', 2010, 'C-'); + insert into takes values('40059', '376', '1', 'Fall', 2006, 'A-'); + insert into takes values('73542', '443', '1', 'Spring', 2010, 'C+'); + insert into takes values('44258', '366', '1', 'Fall', 2005, 'A '); + insert into takes values('76250', '991', '1', 'Spring', 2008, 'C-'); + insert into takes values('57190', '334', '1', 'Fall', 2009, 'A+'); + insert into takes values('40457', '629', '1', 'Spring', 2003, 'C '); + insert into takes values('37521', '476', '1', 'Fall', 2010, 'A-'); + insert into takes values('9933', '258', '1', 'Fall', 2007, 'A-'); + insert into takes values('36791', '319', '1', 'Spring', 2003, 'A '); + insert into takes values('62795', '959', '1', 'Fall', 2006, 'A+'); + insert into takes values('6195', '345', '1', 'Spring', 2008, 'C+'); + insert into takes values('28994', '974', '1', 'Fall', 2003, 'A-'); + insert into takes values('10727', '258', '1', 'Fall', 2007, 'B+'); + insert into takes values('22345', '875', '1', 'Spring', 2005, 'C-'); + insert into takes values('80057', '304', '1', 'Fall', 2009, 'C+'); + insert into takes values('46155', '200', '2', 'Fall', 2002, 'C '); + insert into takes values('69758', '864', '1', 'Spring', 2006, 'A-'); + insert into takes values('65400', '949', '1', 'Fall', 2007, 'A+'); + insert into takes values('76743', '802', '1', 'Spring', 2003, 'C '); + insert into takes values('93571', '867', '1', 'Fall', 2006, 'C '); + insert into takes values('70572', '960', '2', 'Fall', 2006, 'B-'); + insert into takes values('84495', '791', '1', 'Spring', 2006, 'A-'); + insert into takes values('97400', '962', '1', 'Spring', 2008, 'A-'); + insert into takes values('89551', '445', '1', 'Spring', 2001, 'B '); + insert into takes values('35721', '486', '1', 'Fall', 2009, 'C-'); + insert into takes values('99719', '747', '1', 'Spring', 2004, 'A-'); + insert into takes values('11530', '421', '1', 'Fall', 2004, 'B '); + insert into takes values('64914', '793', '1', 'Spring', 2002, 'A '); + insert into takes values('99422', '663', '1', 'Spring', 2005, 'B '); + insert into takes values('9605', '169', '2', 'Fall', 2002, 'B '); + insert into takes values('74016', '200', '1', 'Spring', 2007, 'C-'); + insert into takes values('20445', '704', '1', 'Spring', 2008, 'C+'); + insert into takes values('72014', '334', '1', 'Fall', 2009, 'C+'); + insert into takes values('98690', '843', '1', 'Fall', 2010, 'A '); + insert into takes values('26147', '663', '1', 'Spring', 2005, 'C+'); + insert into takes values('20195', '735', '1', 'Spring', 2003, 'C-'); + insert into takes values('72669', '482', '1', 'Fall', 2005, 'A+'); + insert into takes values('55859', '468', '2', 'Fall', 2007, 'C-'); + insert into takes values('47379', '599', '1', 'Spring', 2003, 'C+'); + insert into takes values('21766', '408', '1', 'Spring', 2007, 'B '); + insert into takes values('24442', '443', '1', 'Spring', 2010, 'A-'); + insert into takes values('24325', '704', '1', 'Spring', 2008, 'C-'); + insert into takes values('19321', '927', '1', 'Fall', 2002, 'C-'); + insert into takes values('35042', '629', '1', 'Spring', 2003, 'A-'); + insert into takes values('20974', '867', '1', 'Fall', 2006, 'C+'); + insert into takes values('23110', '629', '1', 'Spring', 2003, 'B '); + insert into takes values('29645', '137', '1', 'Spring', 2002, 'C+'); + insert into takes values('4173', '461', '1', 'Fall', 2002, 'C '); + insert into takes values('52471', '400', '2', 'Fall', 2003, 'C+'); + insert into takes values('27950', '237', '2', 'Fall', 2009, 'B '); + insert into takes values('86375', '808', '1', 'Fall', 2003, 'A+'); + insert into takes values('50873', '875', '1', 'Spring', 2005, 'A+'); + insert into takes values('15070', '362', '1', 'Fall', 2005, 'B+'); + insert into takes values('32772', '274', '1', 'Fall', 2002, 'B+'); + insert into takes values('2501', '376', '1', 'Fall', 2006, 'B '); + insert into takes values('336', '591', '1', 'Spring', 2005, 'B-'); + insert into takes values('79446', '237', '1', 'Spring', 2008, 'C+'); + insert into takes values('15726', '545', '1', 'Fall', 2001, 'B+'); + insert into takes values('24374', '864', '1', 'Spring', 2006, 'A '); + insert into takes values('18808', '561', '1', 'Fall', 2006, 'A '); + insert into takes values('75040', '496', '1', 'Fall', 2001, 'C '); + insert into takes values('62705', '376', '1', 'Fall', 2006, 'B '); + insert into takes values('67725', '242', '1', 'Fall', 2009, 'B-'); + insert into takes values('87015', '362', '3', 'Spring', 2008, 'B '); + insert into takes values('69225', '545', '1', 'Fall', 2001, 'C-'); + insert into takes values('7620', '468', '2', 'Fall', 2007, 'C+'); + insert into takes values('79210', '476', '1', 'Fall', 2010, 'A-'); + insert into takes values('51723', '349', '1', 'Spring', 2008, 'B '); + insert into takes values('67310', '237', '1', 'Spring', 2008, 'C+'); + insert into takes values('22417', '408', '1', 'Spring', 2007, 'A+'); + insert into takes values('75522', '612', '1', 'Fall', 2007, 'A-'); + insert into takes values('93653', '158', '1', 'Fall', 2008, 'C+'); + insert into takes values('89059', '319', '1', 'Spring', 2003, 'C-'); + insert into takes values('81396', '239', '1', 'Fall', 2006, 'A-'); + insert into takes values('67583', '599', '1', 'Spring', 2003, 'B+'); + insert into takes values('69850', '760', '1', 'Spring', 2004, 'C+'); + insert into takes values('97551', '760', '1', 'Spring', 2004, 'A+'); + insert into takes values('12362', '735', '1', 'Spring', 2003, 'C-'); + insert into takes values('66495', '443', '2', 'Spring', 2002, 'B '); + insert into takes values('17128', '105', '2', 'Fall', 2002, 'A+'); + insert into takes values('28538', '808', '1', 'Fall', 2003, 'A '); + insert into takes values('70452', '242', '1', 'Fall', 2009, 'B '); + insert into takes values('9114', '629', '1', 'Spring', 2003, 'B-'); + insert into takes values('88472', '591', '1', 'Spring', 2005, 'C '); + insert into takes values('69132', '629', '1', 'Spring', 2003, 'C+'); + insert into takes values('28361', '612', '1', 'Fall', 2007, 'C-'); + insert into takes values('15340', '692', '1', 'Spring', 2010, 'B+'); + insert into takes values('87831', '366', '1', 'Fall', 2005, 'B+'); + insert into takes values('92417', '694', '1', 'Fall', 2002, 'A-'); + insert into takes values('58846', '561', '1', 'Fall', 2006, 'C-'); + insert into takes values('82591', '748', '1', 'Fall', 2003, 'A+'); + insert into takes values('89312', '642', '1', 'Fall', 2004, 'A+'); + insert into takes values('78922', '795', '1', 'Spring', 2004, 'A+'); + insert into takes values('99660', '200', '2', 'Fall', 2002, 'C-'); + insert into takes values('39881', '642', '1', 'Fall', 2004, 'B+'); + insert into takes values('89551', '443', '2', 'Spring', 2002, 'C '); + insert into takes values('35685', '802', '1', 'Spring', 2003, 'B-'); + insert into takes values('67024', '679', '1', 'Spring', 2010, 'B '); + insert into takes values('94569', '959', '1', 'Fall', 2006, 'A+'); + insert into takes values('67024', '852', '1', 'Spring', 2008, 'C-'); + insert into takes values('97953', '338', '2', 'Spring', 2006, 'B-'); + insert into takes values('95631', '415', '1', 'Fall', 2010, 'C+'); + insert into takes values('63612', '694', '1', 'Fall', 2002, 'A-'); + insert into takes values('51579', '545', '1', 'Fall', 2001, 'C+'); + insert into takes values('51955', '696', '1', 'Spring', 2002, 'B-'); + insert into takes values('29665', '158', '2', 'Spring', 2008, 'B '); + insert into takes values('82918', '704', '1', 'Spring', 2008, 'C+'); + insert into takes values('99348', '974', '1', 'Fall', 2003, 'A-'); + insert into takes values('80821', '527', '1', 'Fall', 2004, 'A-'); + insert into takes values('48776', '158', '2', 'Spring', 2008, 'C+'); + insert into takes values('23457', '362', '3', 'Spring', 2008, 'A+'); + insert into takes values('39310', '362', '1', 'Fall', 2005, 'C '); + insert into takes values('95631', '760', '1', 'Spring', 2004, 'C+'); + insert into takes values('10834', '352', '1', 'Spring', 2006, 'A '); + insert into takes values('46450', '489', '1', 'Fall', 2007, 'A-'); + insert into takes values('30943', '663', '1', 'Spring', 2005, 'B+'); + insert into takes values('46928', '274', '1', 'Fall', 2002, 'C '); + insert into takes values('32744', '808', '1', 'Fall', 2003, 'C-'); + insert into takes values('72177', '559', '1', 'Fall', 2002, 'A-'); + insert into takes values('41751', '362', '1', 'Fall', 2005, 'C-'); + insert into takes values('60867', '319', '1', 'Spring', 2003, 'B-'); + insert into takes values('40059', '362', '1', 'Fall', 2005, 'A '); + insert into takes values('24746', '663', '1', 'Spring', 2005, 'B '); + insert into takes values('10556', '843', '1', 'Fall', 2010, 'A '); + insert into takes values('44584', '421', '1', 'Fall', 2004, 'C '); + insert into takes values('51923', '867', '1', 'Fall', 2006, 'A+'); + insert into takes values('51538', '105', '2', 'Fall', 2002, 'B-'); + insert into takes values('38899', '362', '1', 'Fall', 2005, 'A+'); + insert into takes values('51538', '791', '1', 'Spring', 2006, 'A+'); + insert into takes values('30397', '795', '1', 'Spring', 2004, 'C '); + insert into takes values('64249', '704', '1', 'Spring', 2008, 'C '); + insert into takes values('89000', '489', '1', 'Fall', 2007, 'A-'); + insert into takes values('14563', '808', '1', 'Fall', 2003, 'B+'); + insert into takes values('84515', '489', '1', 'Fall', 2007, 'A-'); + insert into takes values('47824', '626', '1', 'Fall', 2006, 'B+'); + insert into takes values('36513', '571', '1', 'Spring', 2004, 'B '); + insert into takes values('99289', '362', '2', 'Fall', 2006, 'B-'); + insert into takes values('25256', '496', '1', 'Fall', 2001, 'A '); + insert into takes values('67793', '426', '1', 'Spring', 2006, 'C-'); + insert into takes values('10481', '571', '1', 'Spring', 2004, 'C '); + insert into takes values('22050', '421', '1', 'Fall', 2004, 'C+'); + insert into takes values('74016', '158', '2', 'Spring', 2008, 'A-'); + insert into takes values('8912', '496', '1', 'Fall', 2001, 'B '); + insert into takes values('52385', '258', '1', 'Fall', 2007, 'A-'); + insert into takes values('259', '927', '1', 'Fall', 2002, 'A-'); + insert into takes values('39927', '927', '1', 'Fall', 2002, 'B '); + insert into takes values('48165', '692', '1', 'Spring', 2010, 'A+'); + insert into takes values('98984', '791', '1', 'Spring', 2006, 'A-'); + insert into takes values('41674', '426', '1', 'Spring', 2006, 'B+'); + insert into takes values('19050', '319', '1', 'Spring', 2003, 'C '); + insert into takes values('28952', '400', '1', 'Spring', 2007, 'A '); + insert into takes values('23449', '426', '1', 'Spring', 2006, 'C '); + insert into takes values('23457', '496', '1', 'Fall', 2001, 'A '); + insert into takes values('67051', '137', '1', 'Spring', 2002, 'B '); + insert into takes values('17397', '960', '2', 'Fall', 2006, 'A+'); + insert into takes values('92949', '893', '1', 'Fall', 2007, 'A '); + insert into takes values('3833', '468', '1', 'Fall', 2005, 'B-'); + insert into takes values('44998', '694', '1', 'Fall', 2002, 'B '); + insert into takes values('53077', '962', '1', 'Spring', 2008, 'C+'); + insert into takes values('75046', '376', '1', 'Fall', 2006, 'B '); + insert into takes values('15980', '376', '1', 'Fall', 2006, 'B+'); + insert into takes values('51008', '362', '3', 'Spring', 2008, 'B+'); + insert into takes values('68779', '304', '1', 'Fall', 2009, 'A '); + insert into takes values('60267', '421', '1', 'Fall', 2004, 'A+'); + insert into takes values('44998', '482', '1', 'Fall', 2005, 'B+'); + insert into takes values('33759', '362', '3', 'Spring', 2008, 'B '); + insert into takes values('68779', '852', '1', 'Spring', 2008, 'B '); + insert into takes values('28977', '612', '1', 'Fall', 2007, 'B '); + insert into takes values('48611', '612', '1', 'Fall', 2007, 'B+'); + insert into takes values('53803', '376', '1', 'Fall', 2006, 'A '); + insert into takes values('70918', '401', '1', 'Fall', 2003, 'B+'); + insert into takes values('79589', '959', '1', 'Fall', 2006, 'C+'); + insert into takes values('71944', '137', '1', 'Spring', 2002, 'C '); + insert into takes values('19862', '426', '1', 'Spring', 2006, 'C-'); + insert into takes values('38676', '852', '1', 'Spring', 2008, 'C-'); + insert into takes values('23992', '376', '1', 'Fall', 2006, 'C '); + insert into takes values('38545', '200', '1', 'Spring', 2007, 'A+'); + insert into takes values('85534', '960', '1', 'Fall', 2009, 'B+'); + insert into takes values('61364', '334', '1', 'Fall', 2009, 'A '); + insert into takes values('58307', '313', '1', 'Fall', 2010, 'A '); + insert into takes values('72358', '612', '1', 'Fall', 2007, 'C-'); + insert into takes values('82402', '457', '1', 'Spring', 2001, 'B-'); + insert into takes values('62520', '959', '1', 'Fall', 2006, 'B+'); + insert into takes values('39157', '960', '2', 'Fall', 2006, 'B-'); + insert into takes values('96911', '631', '1', 'Spring', 2007, 'B+'); + insert into takes values('37454', '642', '1', 'Fall', 2004, 'A-'); + insert into takes values('37715', '760', '1', 'Spring', 2004, 'B+'); + insert into takes values('39157', '237', '2', 'Fall', 2009, 'B-'); + insert into takes values('23794', '663', '1', 'Spring', 2005, 'C+'); + insert into takes values('64013', '237', '2', 'Fall', 2009, 'A '); + insert into takes values('78787', '679', '1', 'Spring', 2010, 'C-'); + insert into takes values('93508', '421', '1', 'Fall', 2004, 'C+'); + insert into takes values('76049', '421', '1', 'Fall', 2004, 'C+'); + insert into takes values('53047', '867', '1', 'Fall', 2006, 'A '); + insert into takes values('70098', '629', '1', 'Spring', 2003, 'A-'); + insert into takes values('38691', '489', '1', 'Fall', 2007, 'B-'); + insert into takes values('91992', '793', '1', 'Spring', 2002, 'C-'); + insert into takes values('12362', '105', '1', 'Fall', 2009, 'B '); + insert into takes values('31476', '192', '1', 'Fall', 2002, 'B-'); + insert into takes values('65715', '612', '1', 'Fall', 2007, 'C-'); + insert into takes values('4004', '239', '1', 'Fall', 2006, 'B+'); + insert into takes values('4508', '105', '1', 'Fall', 2009, 'A+'); + insert into takes values('70828', '349', '1', 'Spring', 2008, 'B-'); + insert into takes values('76057', '612', '1', 'Fall', 2007, 'A+'); + insert into takes values('11422', '334', '1', 'Fall', 2009, 'B '); + insert into takes values('88417', '599', '1', 'Spring', 2003, 'A+'); + insert into takes values('52866', '408', '2', 'Spring', 2003, 'B+'); + insert into takes values('96615', '795', '1', 'Spring', 2004, 'C-'); + insert into takes values('96722', '461', '1', 'Fall', 2002, 'C-'); + insert into takes values('22467', '559', '1', 'Fall', 2002, 'A-'); + insert into takes values('34392', '972', '1', 'Spring', 2009, 'C+'); + insert into takes values('41671', '137', '1', 'Spring', 2002, 'A+'); + insert into takes values('97023', '476', '1', 'Fall', 2010, 'A-'); + insert into takes values('44836', '702', '1', 'Spring', 2001, 'B+'); + insert into takes values('85887', '704', '1', 'Spring', 2008, 'C+'); + insert into takes values('36494', '461', '1', 'Fall', 2002, 'A-'); + insert into takes values('29849', '960', '1', 'Fall', 2009, 'B '); + insert into takes values('37946', '192', '1', 'Fall', 2002, 'A '); + insert into takes values('18809', '304', '1', 'Fall', 2009, 'B-'); + insert into takes values('78143', '421', '1', 'Fall', 2004, 'B-'); + insert into takes values('66969', '237', '1', 'Spring', 2008, 'C '); + insert into takes values('39514', '349', '1', 'Spring', 2008, 'B-'); + insert into takes values('99348', '735', '2', 'Spring', 2010, 'B-'); + insert into takes values('66008', '629', '1', 'Spring', 2003, 'B-'); + insert into takes values('90448', '338', '2', 'Spring', 2006, 'B-'); + insert into takes values('39876', '200', '2', 'Fall', 2002, 'A-'); + insert into takes values('3640', '338', '1', 'Spring', 2007, 'C+'); + insert into takes values('50658', '679', '1', 'Spring', 2010, 'C-'); + insert into takes values('93125', '631', '1', 'Spring', 2007, 'C-'); + insert into takes values('48589', '401', '1', 'Fall', 2003, 'A-'); + insert into takes values('4435', '571', '1', 'Spring', 2004, 'B+'); + insert into takes values('79170', '169', '1', 'Spring', 2007, 'C+'); + insert into takes values('30896', '362', '2', 'Fall', 2006, 'A+'); + insert into takes values('75082', '489', '1', 'Fall', 2007, 'C-'); + insert into takes values('15538', '962', '1', 'Spring', 2008, 'A '); + insert into takes values('33349', '408', '2', 'Spring', 2003, 'B '); + insert into takes values('41973', '457', '1', 'Spring', 2001, 'B+'); + insert into takes values('86641', '242', '1', 'Fall', 2009, 'B+'); + insert into takes values('69132', '694', '1', 'Fall', 2002, 'B+'); + insert into takes values('97590', '581', '1', 'Spring', 2005, 'B-'); + insert into takes values('9605', '642', '1', 'Fall', 2004, 'A+'); + insert into takes values('28989', '875', '1', 'Spring', 2005, 'B-'); + insert into takes values('69850', '443', '1', 'Spring', 2010, 'A '); + insert into takes values('5824', '631', '1', 'Spring', 2007, 'B-'); + insert into takes values('81294', '581', '1', 'Spring', 2005, 'A '); + insert into takes values('82126', '561', '1', 'Fall', 2006, 'C-'); + insert into takes values('4355', '349', '1', 'Spring', 2008, 'B '); + insert into takes values('90009', '603', '1', 'Fall', 2003, 'C+'); + insert into takes values('8986', '338', '2', 'Spring', 2006, 'A-'); + insert into takes values('81150', '603', '1', 'Fall', 2003, 'B '); + insert into takes values('32056', '237', '1', 'Spring', 2008, 'C+'); + insert into takes values('27804', '274', '1', 'Fall', 2002, 'B '); + insert into takes values('2201', '843', '1', 'Fall', 2010, 'C '); + insert into takes values('45650', '496', '1', 'Fall', 2001, 'C '); + insert into takes values('37586', '559', '1', 'Fall', 2002, 'A-'); + insert into takes values('89312', '489', '1', 'Fall', 2007, 'C-'); + insert into takes values('11057', '527', '1', 'Fall', 2004, 'B-'); + insert into takes values('96134', '200', '1', 'Spring', 2007, 'A-'); + insert into takes values('33791', '362', '1', 'Fall', 2005, 'B-'); + insert into takes values('61998', '760', '1', 'Spring', 2004, 'C+'); + insert into takes values('72622', '631', '1', 'Spring', 2007, 'C+'); + insert into takes values('90004', '747', '1', 'Spring', 2004, 'B+'); + insert into takes values('50743', '319', '1', 'Spring', 2003, 'C-'); + insert into takes values('34569', '239', '1', 'Fall', 2006, 'C '); + insert into takes values('11195', '735', '1', 'Spring', 2003, 'B+'); + insert into takes values('13749', '242', '1', 'Fall', 2009, 'B-'); + insert into takes values('31101', '960', '1', 'Fall', 2009, 'A+'); + insert into takes values('1727', '642', '1', 'Fall', 2004, 'B '); + insert into takes values('29803', '793', '1', 'Spring', 2002, 'B+'); + insert into takes values('34502', '545', '1', 'Fall', 2001, 'C+'); + insert into takes values('92867', '704', '1', 'Spring', 2008, 'C+'); + insert into takes values('79210', '559', '1', 'Fall', 2002, 'A+'); + insert into takes values('71287', '760', '1', 'Spring', 2004, 'B+'); + insert into takes values('59530', '408', '2', 'Spring', 2003, 'B '); + insert into takes values('44985', '408', '1', 'Spring', 2007, 'B-'); + insert into takes values('42096', '426', '1', 'Spring', 2006, 'A-'); + insert into takes values('81638', '408', '1', 'Spring', 2007, 'C '); + insert into takes values('62429', '319', '1', 'Spring', 2003, 'B+'); + insert into takes values('67018', '334', '1', 'Fall', 2009, 'A+'); + insert into takes values('84702', '169', '1', 'Spring', 2007, 'A '); + insert into takes values('13211', '319', '1', 'Spring', 2003, 'A+'); + insert into takes values('89759', '270', '1', 'Spring', 2010, 'B+'); + insert into takes values('41832', '457', '1', 'Spring', 2001, 'B '); + insert into takes values('5920', '760', '1', 'Spring', 2004, 'A+'); + insert into takes values('32954', '692', '1', 'Spring', 2010, 'B '); + insert into takes values('11055', '604', '1', 'Spring', 2009, 'B+'); + insert into takes values('86651', '591', '1', 'Spring', 2005, 'A+'); + insert into takes values('58170', '735', '2', 'Spring', 2010, 'A-'); + insert into takes values('44258', '599', '1', 'Spring', 2003, 'A-'); + insert into takes values('65438', '443', '1', 'Spring', 2010, 'C '); + insert into takes values('32490', '376', '1', 'Fall', 2006, 'A+'); + insert into takes values('74464', '345', '1', 'Spring', 2008, 'B-'); + insert into takes values('52291', '349', '1', 'Spring', 2008, 'A+'); + insert into takes values('90914', '808', '1', 'Fall', 2003, 'C '); + insert into takes values('10481', '443', '2', 'Spring', 2002, 'C '); + insert into takes values('42096', '401', '1', 'Fall', 2003, 'C-'); + insert into takes values('56486', '626', '1', 'Fall', 2006, 'A-'); + insert into takes values('67407', '443', '1', 'Spring', 2010, 'A '); + insert into takes values('43432', '545', '1', 'Fall', 2001, 'B+'); + insert into takes values('95175', '258', '1', 'Fall', 2007, 'B '); + insert into takes values('64893', '545', '1', 'Fall', 2001, 'C+'); + insert into takes values('45826', '366', '1', 'Fall', 2005, 'B+'); + insert into takes values('5250', '274', '1', 'Fall', 2002, 'C-'); + insert into takes values('88553', '612', '1', 'Fall', 2007, 'B-'); + insert into takes values('92464', '169', '1', 'Spring', 2007, 'A-'); + insert into takes values('83398', '760', '1', 'Spring', 2004, 'B-'); + insert into takes values('28977', '843', '1', 'Fall', 2010, 'C-'); + insert into takes values('77898', '457', '1', 'Spring', 2001, 'A+'); + insert into takes values('21556', '334', '1', 'Fall', 2009, 'C+'); + insert into takes values('74639', '760', '1', 'Spring', 2004, 'C-'); + insert into takes values('70522', '496', '1', 'Fall', 2001, 'B-'); + insert into takes values('35905', '867', '1', 'Fall', 2006, 'C-'); + insert into takes values('20084', '694', '1', 'Fall', 2002, 'B+'); + insert into takes values('8819', '362', '3', 'Spring', 2008, 'A+'); + insert into takes values('42556', '376', '1', 'Fall', 2006, 'A '); + insert into takes values('41261', '443', '1', 'Spring', 2010, 'B+'); + insert into takes values('8251', '169', '1', 'Spring', 2007, 'C-'); + insert into takes values('81207', '192', '1', 'Fall', 2002, 'A+'); + insert into takes values('82301', '158', '1', 'Fall', 2008, 'C+'); + insert into takes values('94726', '631', '1', 'Spring', 2007, 'C+'); + insert into takes values('95201', '692', '1', 'Spring', 2010, 'C-'); + insert into takes values('35687', '735', '2', 'Spring', 2010, 'B '); + insert into takes values('19050', '949', '1', 'Fall', 2007, 'C-'); + insert into takes values('19766', '468', '1', 'Fall', 2005, 'B '); + insert into takes values('34386', '527', '1', 'Fall', 2004, 'B+'); + insert into takes values('34055', '376', '1', 'Fall', 2006, 'A+'); + insert into takes values('95366', '735', '2', 'Spring', 2010, 'C-'); + insert into takes values('64121', '760', '1', 'Spring', 2004, 'A+'); + insert into takes values('24442', '270', '1', 'Spring', 2010, 'C+'); + insert into takes values('92332', '457', '1', 'Spring', 2001, 'B '); + insert into takes values('17665', '791', '1', 'Spring', 2006, 'A '); + insert into takes values('81883', '468', '1', 'Fall', 2005, 'B+'); + insert into takes values('435', '626', '1', 'Fall', 2006, 'C-'); + insert into takes values('56276', '493', '1', 'Spring', 2010, 'B+'); + insert into takes values('99764', '704', '1', 'Spring', 2008, 'A '); + insert into takes values('36384', '843', '1', 'Fall', 2010, 'A-'); + insert into takes values('98870', '137', '1', 'Spring', 2002, 'A '); + insert into takes values('23506', '489', '1', 'Fall', 2007, 'A '); + insert into takes values('85451', '747', '1', 'Spring', 2004, 'A '); + insert into takes values('96895', '581', '1', 'Spring', 2005, 'A-'); + insert into takes values('96153', '319', '1', 'Spring', 2003, 'C+'); + insert into takes values('63886', '137', '1', 'Spring', 2002, 'A+'); + insert into takes values('5961', '704', '1', 'Spring', 2008, 'B+'); + insert into takes values('69471', '489', '1', 'Fall', 2007, 'C+'); + insert into takes values('96741', '426', '1', 'Spring', 2006, 'A-'); + insert into takes values('858', '843', '1', 'Fall', 2010, 'C-'); + insert into takes values('64192', '561', '1', 'Fall', 2006, 'B-'); + insert into takes values('760', '313', '1', 'Fall', 2010, 'A-'); + insert into takes values('93508', '867', '1', 'Fall', 2006, 'C+'); + insert into takes values('48611', '702', '1', 'Spring', 2001, 'C '); + insert into takes values('8843', '476', '1', 'Fall', 2010, 'A+'); + insert into takes values('78911', '603', '1', 'Fall', 2003, 'B-'); + insert into takes values('71085', '893', '1', 'Fall', 2007, 'A-'); + insert into takes values('34170', '808', '1', 'Fall', 2003, 'C+'); + insert into takes values('39580', '237', '1', 'Spring', 2008, 'B+'); + insert into takes values('24201', '642', '1', 'Fall', 2004, 'B+'); + insert into takes values('60748', '791', '1', 'Spring', 2006, 'C+'); + insert into takes values('15283', '559', '1', 'Fall', 2002, 'A-'); + insert into takes values('24325', '242', '1', 'Fall', 2009, 'A-'); + insert into takes values('70918', '489', '1', 'Fall', 2007, 'A-'); + insert into takes values('62549', '258', '1', 'Fall', 2007, 'A-'); + insert into takes values('5243', '362', '1', 'Fall', 2005, 'B+'); + insert into takes values('29645', '581', '1', 'Spring', 2005, 'B-'); + insert into takes values('25780', '345', '1', 'Spring', 2008, 'C '); + insert into takes values('10904', '735', '2', 'Spring', 2010, 'C+'); + insert into takes values('70061', '949', '1', 'Fall', 2007, 'B+'); + insert into takes values('27094', '489', '1', 'Fall', 2007, 'B-'); + insert into takes values('8957', '949', '1', 'Fall', 2007, 'A-'); + insert into takes values('82301', '735', '1', 'Spring', 2003, 'B-'); + insert into takes values('13081', '338', '2', 'Spring', 2006, 'C-'); + insert into takes values('51008', '105', '2', 'Fall', 2002, 'B '); + insert into takes values('26080', '496', '1', 'Fall', 2001, 'A-'); + insert into takes values('61402', '443', '1', 'Spring', 2010, 'B+'); + insert into takes values('81984', '349', '1', 'Spring', 2008, 'C-'); + insert into takes values('79205', '415', '1', 'Fall', 2010, 'C '); + insert into takes values('38973', '867', '1', 'Fall', 2006, 'A-'); + insert into takes values('87268', '468', '2', 'Fall', 2007, 'B-'); + insert into takes values('46260', '629', '1', 'Spring', 2003, 'C '); + insert into takes values('65400', '349', '1', 'Spring', 2008, 'C+'); + insert into takes values('58300', '192', '1', 'Fall', 2002, 'A '); + insert into takes values('20489', '362', '1', 'Fall', 2005, 'B '); + insert into takes values('52157', '304', '1', 'Fall', 2009, 'A-'); + insert into takes values('94324', '415', '1', 'Fall', 2010, 'A+'); + insert into takes values('32056', '415', '1', 'Fall', 2010, 'A-'); + insert into takes values('26494', '545', '1', 'Fall', 2001, 'A+'); + insert into takes values('62373', '362', '3', 'Spring', 2008, 'A '); + insert into takes values('14032', '735', '1', 'Spring', 2003, 'C-'); + insert into takes values('92867', '747', '1', 'Spring', 2004, 'C+'); + insert into takes values('65681', '959', '1', 'Fall', 2006, 'B '); + insert into takes values('83573', '802', '1', 'Spring', 2003, 'A-'); + insert into takes values('46980', '893', '1', 'Fall', 2007, 'A+'); + insert into takes values('76911', '105', '2', 'Fall', 2002, 'C+'); + insert into takes values('6304', '468', '1', 'Fall', 2005, 'C '); + insert into takes values('35257', '843', '1', 'Fall', 2010, 'A+'); + insert into takes values('18775', '629', '1', 'Spring', 2003, 'A+'); + insert into takes values('46035', '362', '3', 'Spring', 2008, 'B+'); + insert into takes values('1018', '581', '1', 'Spring', 2005, 'B '); + insert into takes values('33338', '445', '1', 'Spring', 2001, 'C-'); + insert into takes values('14668', '158', '1', 'Fall', 2008, 'B '); + insert into takes values('97551', '400', '1', 'Spring', 2007, 'C-'); + insert into takes values('56080', '468', '1', 'Fall', 2005, 'B+'); + insert into takes values('9408', '960', '2', 'Fall', 2006, 'A+'); + insert into takes values('40044', '400', '2', 'Fall', 2003, 'C-'); + insert into takes values('33645', '401', '1', 'Fall', 2003, 'A '); + insert into takes values('87785', '561', '1', 'Fall', 2006, 'B+'); + insert into takes values('55000', '612', '1', 'Fall', 2007, 'C '); + insert into takes values('2178', '192', '1', 'Fall', 2002, 'B-'); + insert into takes values('59117', '349', '1', 'Spring', 2008, 'A '); + insert into takes values('93171', '476', '1', 'Fall', 2010, 'A-'); + insert into takes values('38371', '991', '1', 'Spring', 2008, 'C '); + insert into takes values('99660', '629', '1', 'Spring', 2003, 'A+'); + insert into takes values('67425', '338', '1', 'Spring', 2007, 'C '); + insert into takes values('14829', '338', '2', 'Spring', 2006, 'B+'); + insert into takes values('47627', '802', '1', 'Spring', 2003, 'A '); + insert into takes values('28252', '875', '1', 'Spring', 2005, 'C '); + insert into takes values('57941', '334', '1', 'Fall', 2009, 'B-'); + insert into takes values('56212', '489', '1', 'Fall', 2007, 'C+'); + insert into takes values('9114', '476', '1', 'Fall', 2010, 'A-'); + insert into takes values('29665', '808', '1', 'Fall', 2003, 'B+'); + insert into takes values('55354', '338', '1', 'Spring', 2007, 'A+'); + insert into takes values('6304', '408', '2', 'Spring', 2003, 'A+'); + insert into takes values('84432', '748', '1', 'Fall', 2003, 'B '); + insert into takes values('22254', '304', '1', 'Fall', 2009, 'A+'); + insert into takes values('44816', '692', '1', 'Spring', 2010, 'C+'); + insert into takes values('57456', '105', '2', 'Fall', 2002, 'C-'); + insert into takes values('80941', '735', '2', 'Spring', 2010, 'B '); + insert into takes values('30289', '559', '1', 'Fall', 2002, 'B '); + insert into takes values('77172', '626', '1', 'Fall', 2006, 'A '); + insert into takes values('64401', '242', '1', 'Fall', 2009, 'A+'); + insert into takes values('48247', '426', '1', 'Spring', 2006, 'C+'); + insert into takes values('33094', '581', '1', 'Spring', 2005, 'B-'); + insert into takes values('55859', '137', '1', 'Spring', 2002, 'B '); + insert into takes values('37818', '642', '1', 'Fall', 2004, 'B-'); + insert into takes values('76911', '694', '1', 'Fall', 2002, 'C+'); + insert into takes values('87054', '237', '2', 'Fall', 2009, 'B '); + insert into takes values('5017', '461', '1', 'Fall', 2002, 'B+'); + insert into takes values('49873', '808', '1', 'Fall', 2003, 'C+'); + insert into takes values('58170', '631', '1', 'Spring', 2007, 'A+'); + insert into takes values('46725', '445', '1', 'Spring', 2001, 'A-'); + insert into takes values('81785', '960', '1', 'Fall', 2009, 'A+'); + insert into takes values('9605', '352', '1', 'Spring', 2006, 'A+'); + insert into takes values('3693', '626', '1', 'Fall', 2006, 'C '); + insert into takes values('78767', '808', '1', 'Fall', 2003, 'B+'); + insert into takes values('65979', '561', '1', 'Fall', 2006, 'B+'); + insert into takes values('85234', '747', '1', 'Spring', 2004, 'B+'); + insert into takes values('24197', '362', '3', 'Spring', 2008, 'B+'); + insert into takes values('15457', '468', '1', 'Fall', 2005, 'A-'); + insert into takes values('12971', '629', '1', 'Spring', 2003, 'B-'); + insert into takes values('36513', '313', '1', 'Fall', 2010, 'B+'); + insert into takes values('842', '426', '1', 'Spring', 2006, 'B '); + insert into takes values('76604', '319', '1', 'Spring', 2003, 'B+'); + insert into takes values('71768', '559', '1', 'Fall', 2002, 'B-'); + insert into takes values('74460', '158', '1', 'Fall', 2008, 'C-'); + insert into takes values('50414', '496', '1', 'Fall', 2001, 'A-'); + insert into takes values('90220', '867', '2', 'Fall', 2010, 'B '); + insert into takes values('9183', '400', '1', 'Spring', 2007, 'C-'); + insert into takes values('80610', '105', '1', 'Fall', 2009, 'C '); + insert into takes values('80912', '443', '2', 'Spring', 2002, 'A+'); + insert into takes values('83462', '105', '1', 'Fall', 2009, 'A-'); + insert into takes values('31080', '192', '1', 'Fall', 2002, 'B-'); + insert into takes values('80698', '237', '2', 'Fall', 2009, 'A-'); + insert into takes values('10917', '960', '2', 'Fall', 2006, 'A '); + insert into takes values('12216', '852', '1', 'Spring', 2008, 'C '); + insert into takes values('39657', '793', '1', 'Spring', 2002, 'A-'); + insert into takes values('76270', '362', '2', 'Fall', 2006, 'A-'); + insert into takes values('8251', '445', '1', 'Spring', 2001, 'C+'); + insert into takes values('39514', '242', '1', 'Fall', 2009, 'C+'); + insert into takes values('90041', '158', '2', 'Spring', 2008, 'A+'); + insert into takes values('22417', '304', '1', 'Fall', 2009, 'B+'); + insert into takes values('24796', '242', '1', 'Fall', 2009, 'B '); + insert into takes values('29665', '352', '1', 'Spring', 2006, 'A-'); + insert into takes values('8457', '237', '1', 'Spring', 2008, 'B '); + insert into takes values('37818', '105', '1', 'Fall', 2009, 'A+'); + insert into takes values('41683', '545', '1', 'Fall', 2001, 'C+'); + insert into takes values('83398', '972', '1', 'Spring', 2009, 'B-'); + insert into takes values('59538', '603', '1', 'Fall', 2003, 'A '); + insert into takes values('63489', '663', '1', 'Spring', 2005, 'A+'); + insert into takes values('27662', '421', '1', 'Fall', 2004, 'C-'); + insert into takes values('30124', '468', '1', 'Fall', 2005, 'A-'); + insert into takes values('69952', '476', '1', 'Fall', 2010, 'B-'); + insert into takes values('35293', '791', '1', 'Spring', 2006, 'B+'); + insert into takes values('89551', '237', '2', 'Fall', 2009, 'B '); + insert into takes values('55009', '237', '2', 'Fall', 2009, 'B-'); + insert into takes values('3639', '200', '2', 'Fall', 2002, 'A '); + insert into takes values('85445', '304', '1', 'Fall', 2009, 'C+'); + insert into takes values('44816', '486', '1', 'Fall', 2009, 'C '); + insert into takes values('39876', '679', '1', 'Spring', 2010, 'C '); + insert into takes values('31554', '626', '1', 'Fall', 2006, 'B-'); + insert into takes values('71387', '864', '1', 'Spring', 2006, 'C+'); + insert into takes values('61854', '400', '2', 'Fall', 2003, 'B '); + insert into takes values('3127', '486', '1', 'Fall', 2009, 'A-'); + insert into takes values('43348', '631', '1', 'Spring', 2007, 'A-'); + insert into takes values('92949', '795', '1', 'Spring', 2004, 'A '); + insert into takes values('99764', '426', '1', 'Spring', 2006, 'C '); + insert into takes values('52856', '793', '1', 'Spring', 2002, 'B+'); + insert into takes values('47265', '400', '2', 'Fall', 2003, 'C-'); + insert into takes values('86736', '274', '1', 'Fall', 2002, 'C-'); + insert into takes values('86802', '169', '1', 'Spring', 2007, 'C-'); + insert into takes values('86327', '793', '1', 'Spring', 2002, 'A-'); + insert into takes values('42625', '599', '1', 'Spring', 2003, 'A-'); + insert into takes values('9993', '319', '1', 'Spring', 2003, 'B '); + insert into takes values('88884', '486', '1', 'Fall', 2009, 'B-'); + insert into takes values('65681', '237', '1', 'Spring', 2008, 'A '); + insert into takes values('50537', '338', '1', 'Spring', 2007, 'A+'); + insert into takes values('28829', '192', '1', 'Fall', 2002, 'B '); + insert into takes values('11195', '599', '1', 'Spring', 2003, 'C-'); + insert into takes values('65241', '137', '1', 'Spring', 2002, 'C+'); + insert into takes values('90448', '345', '1', 'Spring', 2008, 'C '); + insert into takes values('86674', '169', '1', 'Spring', 2007, 'A '); + insert into takes values('25942', '795', '1', 'Spring', 2004, 'C+'); + insert into takes values('70299', '366', '1', 'Fall', 2005, 'B '); + insert into takes values('70965', '960', '2', 'Fall', 2006, 'B+'); + insert into takes values('97042', '626', '1', 'Fall', 2006, 'B-'); + insert into takes values('61527', '631', '1', 'Spring', 2007, 'A-'); + insert into takes values('30222', '802', '1', 'Spring', 2003, 'A-'); + insert into takes values('76911', '704', '1', 'Spring', 2008, 'A-'); + insert into takes values('39521', '200', '1', 'Spring', 2007, 'B '); + insert into takes values('96067', '169', '1', 'Spring', 2007, 'B '); + insert into takes values('50703', '694', '1', 'Fall', 2002, 'C-'); + insert into takes values('96911', '702', '1', 'Spring', 2001, 'C '); + insert into takes values('6304', '362', '1', 'Fall', 2005, 'B-'); + insert into takes values('41675', '571', '1', 'Spring', 2004, 'C '); + insert into takes values('12214', '237', '2', 'Fall', 2009, 'B+'); + insert into takes values('72177', '426', '1', 'Spring', 2006, 'A-'); + insert into takes values('16515', '457', '1', 'Spring', 2001, 'C-'); + insert into takes values('8807', '376', '1', 'Fall', 2006, 'A-'); + insert into takes values('30289', '457', '1', 'Spring', 2001, 'A+'); + insert into takes values('22198', '974', '1', 'Fall', 2003, 'A '); + insert into takes values('40457', '663', '1', 'Spring', 2005, 'C-'); + insert into takes values('99977', '795', '1', 'Spring', 2004, 'C+'); + insert into takes values('52741', '629', '1', 'Spring', 2003, 'C '); + insert into takes values('13365', '274', '1', 'Fall', 2002, 'A-'); + insert into takes values('64259', '599', '1', 'Spring', 2003, 'C-'); + insert into takes values('82974', '748', '1', 'Fall', 2003, 'C-'); + insert into takes values('58846', '362', '1', 'Fall', 2005, 'C-'); + insert into takes values('87965', '949', '1', 'Fall', 2007, 'B-'); + insert into takes values('62054', '457', '1', 'Spring', 2001, 'C+'); + insert into takes values('14554', '629', '1', 'Spring', 2003, 'C-'); + insert into takes values('83696', '426', '1', 'Spring', 2006, 'A-'); + insert into takes values('27804', '692', '1', 'Spring', 2010, 'A+'); + insert into takes values('36926', '875', '1', 'Spring', 2005, 'B '); + insert into takes values('16453', '468', '1', 'Fall', 2005, 'C '); + insert into takes values('993', '400', '2', 'Fall', 2003, 'A+'); + insert into takes values('54153', '366', '1', 'Fall', 2005, 'B+'); + insert into takes values('88884', '200', '2', 'Fall', 2002, 'C '); + insert into takes values('51093', '991', '1', 'Spring', 2008, 'A+'); + insert into takes values('68720', '200', '1', 'Spring', 2007, 'A+'); + insert into takes values('51868', '408', '2', 'Spring', 2003, 'A-'); + insert into takes values('95626', '338', '1', 'Spring', 2007, 'B+'); + insert into takes values('65715', '571', '1', 'Spring', 2004, 'A-'); + insert into takes values('81028', '415', '1', 'Fall', 2010, 'A+'); + insert into takes values('68330', '338', '2', 'Spring', 2006, 'C+'); + insert into takes values('1018', '457', '1', 'Spring', 2001, 'B+'); + insert into takes values('29091', '927', '1', 'Fall', 2002, 'C '); + insert into takes values('49450', '415', '1', 'Fall', 2010, 'C+'); + insert into takes values('83022', '482', '1', 'Fall', 2005, 'A '); + insert into takes values('1968', '304', '1', 'Fall', 2009, 'C '); + insert into takes values('20445', '408', '1', 'Spring', 2007, 'B '); + insert into takes values('66054', '415', '1', 'Fall', 2010, 'A '); + insert into takes values('65205', '461', '1', 'Fall', 2002, 'A-'); + insert into takes values('98984', '105', '2', 'Fall', 2002, 'A '); + insert into takes values('42991', '612', '1', 'Fall', 2007, 'A '); + insert into takes values('71630', '362', '1', 'Fall', 2005, 'B-'); + insert into takes values('16523', '867', '1', 'Fall', 2006, 'C+'); + insert into takes values('73165', '960', '1', 'Fall', 2009, 'B '); + insert into takes values('31101', '192', '1', 'Fall', 2002, 'A-'); + insert into takes values('78469', '795', '1', 'Spring', 2004, 'C+'); + insert into takes values('94697', '158', '1', 'Fall', 2008, 'C+'); + insert into takes values('14032', '486', '1', 'Fall', 2009, 'C '); + insert into takes values('75510', '345', '1', 'Spring', 2008, 'B-'); + insert into takes values('61402', '362', '1', 'Fall', 2005, 'A+'); + insert into takes values('47630', '400', '2', 'Fall', 2003, 'C+'); + insert into takes values('98140', '696', '1', 'Spring', 2002, 'B-'); + insert into takes values('61065', '875', '1', 'Spring', 2005, 'C+'); + insert into takes values('99780', '663', '1', 'Spring', 2005, 'C+'); + insert into takes values('51975', '345', '1', 'Spring', 2008, 'C+'); + insert into takes values('17207', '493', '1', 'Spring', 2010, 'A+'); + insert into takes values('57925', '581', '1', 'Spring', 2005, 'B-'); + insert into takes values('90124', '237', '2', 'Fall', 2009, 'A '); + insert into takes values('40303', '105', '2', 'Fall', 2002, 'B+'); + insert into takes values('36126', '559', '1', 'Fall', 2002, 'C-'); + insert into takes values('78767', '137', '1', 'Spring', 2002, 'A-'); + insert into takes values('25785', '959', '1', 'Fall', 2006, 'A+'); + insert into takes values('22912', '304', '1', 'Fall', 2009, 'B '); + insert into takes values('65688', '793', '1', 'Spring', 2002, 'A '); + insert into takes values('43123', '692', '1', 'Spring', 2010, 'B '); + insert into takes values('39612', '581', '1', 'Spring', 2005, 'C-'); + insert into takes values('25362', '352', '1', 'Spring', 2006, 'C-'); + insert into takes values('90381', '612', '1', 'Fall', 2007, 'C '); + insert into takes values('83136', '949', '1', 'Fall', 2007, 'A+'); + insert into takes values('29140', '747', '1', 'Spring', 2004, 'A+'); + insert into takes values('82083', '631', '1', 'Spring', 2007, 'A+'); + insert into takes values('53469', '237', '1', 'Spring', 2008, 'C '); + insert into takes values('6195', '493', '1', 'Spring', 2010, 'B-'); + insert into takes values('9460', '239', '1', 'Fall', 2006, 'B+'); + insert into takes values('16993', '274', '1', 'Fall', 2002, 'C-'); + insert into takes values('76895', '158', '1', 'Fall', 2008, 'B-'); + insert into takes values('66008', '366', '1', 'Fall', 2005, 'A+'); + insert into takes values('19791', '867', '1', 'Fall', 2006, 'A '); + insert into takes values('97023', '629', '1', 'Spring', 2003, 'A-'); + insert into takes values('15487', '362', '2', 'Fall', 2006, 'C-'); + insert into takes values('7490', '867', '2', 'Fall', 2010, 'A '); + insert into takes values('20002', '274', '1', 'Fall', 2002, 'B-'); + insert into takes values('75510', '304', '1', 'Fall', 2009, 'C-'); + insert into takes values('32065', '559', '1', 'Fall', 2002, 'C-'); + insert into takes values('42991', '493', '1', 'Spring', 2010, 'A '); + insert into takes values('84845', '704', '1', 'Spring', 2008, 'C '); + insert into takes values('63645', '694', '1', 'Fall', 2002, 'A '); + insert into takes values('6209', '489', '1', 'Fall', 2007, 'B+'); + insert into takes values('90132', '960', '2', 'Fall', 2006, 'A-'); + insert into takes values('11076', '349', '1', 'Spring', 2008, 'C+'); + insert into takes values('59397', '200', '2', 'Fall', 2002, 'C+'); + insert into takes values('52669', '852', '1', 'Spring', 2008, 'B-'); + insert into takes values('26730', '400', '1', 'Spring', 2007, 'A-'); + insert into takes values('75395', '192', '1', 'Fall', 2002, 'C '); + insert into takes values('74464', '489', '1', 'Fall', 2007, 'C-'); + insert into takes values('17944', '852', '1', 'Spring', 2008, 'C+'); + insert into takes values('76895', '747', '1', 'Spring', 2004, 'C+'); + insert into takes values('81785', '599', '1', 'Spring', 2003, 'C-'); + insert into takes values('69241', '366', '1', 'Fall', 2005, 'C+'); + insert into takes values('17377', '242', '1', 'Fall', 2009, 'C-'); + insert into takes values('88302', '461', '1', 'Fall', 2002, 'C+'); + insert into takes values('79911', '443', '2', 'Spring', 2002, 'C+'); + insert into takes values('84495', '443', '2', 'Spring', 2002, 'A-'); + insert into takes values('64934', '974', '1', 'Fall', 2003, 'A-'); + insert into takes values('97042', '489', '1', 'Fall', 2007, 'A '); + insert into takes values('888', '362', '2', 'Fall', 2006, 'B-'); + insert into takes values('67542', '735', '2', 'Spring', 2010, 'C '); + insert into takes values('83592', '561', '1', 'Fall', 2006, 'A+'); + insert into takes values('23270', '603', '1', 'Fall', 2003, 'B '); + insert into takes values('30334', '482', '1', 'Fall', 2005, 'C '); + insert into takes values('65987', '603', '1', 'Fall', 2003, 'C+'); + insert into takes values('55238', '867', '1', 'Fall', 2006, 'B-'); + insert into takes values('36926', '959', '1', 'Fall', 2006, 'B+'); + insert into takes values('76895', '200', '1', 'Spring', 2007, 'A+'); + insert into takes values('37454', '604', '1', 'Spring', 2009, 'B+'); + insert into takes values('33201', '489', '1', 'Fall', 2007, 'C-'); + insert into takes values('39876', '468', '1', 'Fall', 2005, 'C-'); + insert into takes values('83557', '663', '1', 'Spring', 2005, 'C '); + insert into takes values('51923', '748', '1', 'Fall', 2003, 'C '); + insert into takes values('46451', '496', '1', 'Fall', 2001, 'A+'); + insert into takes values('56139', '631', '1', 'Spring', 2007, 'C+'); + insert into takes values('28977', '443', '1', 'Spring', 2010, 'C-'); + insert into takes values('49618', '663', '1', 'Spring', 2005, 'A-'); + insert into takes values('83557', '496', '1', 'Fall', 2001, 'A '); + insert into takes values('65715', '158', '1', 'Fall', 2008, 'A+'); + insert into takes values('94730', '972', '1', 'Spring', 2009, 'B+'); + insert into takes values('71628', '545', '1', 'Fall', 2001, 'B-'); + insert into takes values('99711', '875', '1', 'Spring', 2005, 'C-'); + insert into takes values('59848', '696', '1', 'Spring', 2002, 'A '); + insert into takes values('16993', '802', '1', 'Spring', 2003, 'B+'); + insert into takes values('53089', '105', '2', 'Fall', 2002, 'A '); + insert into takes values('92693', '679', '1', 'Spring', 2010, 'B '); + insert into takes values('18859', '192', '1', 'Fall', 2002, 'A '); + insert into takes values('40738', '559', '1', 'Fall', 2002, 'C-'); + insert into takes values('57787', '496', '1', 'Fall', 2001, 'B '); + insert into takes values('61081', '237', '2', 'Fall', 2009, 'B+'); + insert into takes values('94371', '338', '1', 'Spring', 2007, 'A+'); + insert into takes values('83022', '476', '1', 'Fall', 2010, 'B+'); + insert into takes values('57511', '338', '1', 'Spring', 2007, 'A-'); + insert into takes values('99694', '137', '1', 'Spring', 2002, 'B '); + insert into takes values('14214', '304', '1', 'Fall', 2009, 'B+'); + insert into takes values('50206', '962', '1', 'Spring', 2008, 'A '); + insert into takes values('64401', '489', '1', 'Fall', 2007, 'B+'); + insert into takes values('1737', '169', '1', 'Spring', 2007, 'A-'); + insert into takes values('46441', '169', '1', 'Spring', 2007, 'C '); + insert into takes values('78552', '791', '1', 'Spring', 2006, 'A+'); + insert into takes values('15074', '345', '1', 'Spring', 2008, 'C+'); + insert into takes values('63489', '408', '1', 'Spring', 2007, 'A '); + insert into takes values('43432', '468', '2', 'Fall', 2007, 'B+'); + insert into takes values('69081', '493', '1', 'Spring', 2010, 'B '); + insert into takes values('18752', '242', '1', 'Fall', 2009, 'A-'); + insert into takes values('57156', '527', '1', 'Fall', 2004, 'B-'); + insert into takes values('25331', '867', '1', 'Fall', 2006, 'C-'); + insert into takes values('37809', '960', '1', 'Fall', 2009, 'C+'); + insert into takes values('36052', '408', '2', 'Spring', 2003, 'A-'); + insert into takes values('65715', '105', '1', 'Fall', 2009, 'A '); + insert into takes values('30222', '696', '1', 'Spring', 2002, 'C+'); + insert into takes values('58595', '802', '1', 'Spring', 2003, 'B '); + insert into takes values('31820', '376', '1', 'Fall', 2006, 'B '); + insert into takes values('30110', '400', '2', 'Fall', 2003, 'C-'); + insert into takes values('28518', '603', '1', 'Fall', 2003, 'C-'); + insert into takes values('72622', '795', '1', 'Spring', 2004, 'B '); + insert into takes values('163', '679', '1', 'Spring', 2010, 'A '); + insert into takes values('47670', '443', '1', 'Spring', 2010, 'A-'); + insert into takes values('1533', '400', '2', 'Fall', 2003, 'B-'); + insert into takes values('58085', '476', '1', 'Fall', 2010, 'C+'); + insert into takes values('50331', '991', '1', 'Spring', 2008, 'C-'); + insert into takes values('40189', '791', '1', 'Spring', 2006, 'C-'); + insert into takes values('52471', '696', '1', 'Spring', 2002, 'B+'); + insert into takes values('29920', '338', '2', 'Spring', 2006, 'B+'); + insert into takes values('31337', '561', '1', 'Fall', 2006, 'C '); + insert into takes values('40677', '362', '1', 'Fall', 2005, 'A-'); + insert into takes values('94569', '468', '1', 'Fall', 2005, 'B '); + insert into takes values('5393', '702', '1', 'Spring', 2001, 'B-'); + insert into takes values('51868', '603', '1', 'Fall', 2003, 'C+'); + insert into takes values('95284', '959', '1', 'Fall', 2006, 'A+'); + insert into takes values('16297', '962', '1', 'Spring', 2008, 'B+'); + insert into takes values('97868', '408', '2', 'Spring', 2003, 'B+'); + insert into takes values('858', '334', '1', 'Fall', 2009, 'C-'); + insert into takes values('5017', '415', '1', 'Fall', 2010, 'B-'); + insert into takes values('27043', '949', '1', 'Fall', 2007, 'B-'); + insert into takes values('57185', '304', '1', 'Fall', 2009, 'C '); + insert into takes values('25331', '192', '1', 'Fall', 2002, 'B-'); + insert into takes values('36657', '795', '1', 'Spring', 2004, 'B+'); + insert into takes values('36402', '426', '1', 'Spring', 2006, 'B+'); + insert into takes values('7854', '338', '2', 'Spring', 2006, 'A '); + insert into takes values('25940', '927', '1', 'Fall', 2002, 'C+'); + insert into takes values('163', '362', '3', 'Spring', 2008, 'A-'); + insert into takes values('89051', '991', '1', 'Spring', 2008, 'A+'); + insert into takes values('48165', '362', '2', 'Fall', 2006, 'C-'); + insert into takes values('69783', '527', '1', 'Fall', 2004, 'C '); + insert into takes values('65714', '875', '1', 'Spring', 2005, 'A+'); + insert into takes values('61166', '237', '2', 'Fall', 2009, 'B '); + insert into takes values('88993', '545', '1', 'Fall', 2001, 'A '); + insert into takes values('94846', '991', '1', 'Spring', 2008, 'B-'); + insert into takes values('15538', '376', '1', 'Fall', 2006, 'C-'); + insert into takes values('23500', '200', '2', 'Fall', 2002, 'B-'); + insert into takes values('44038', '338', '1', 'Spring', 2007, 'A '); + insert into takes values('53424', '237', '2', 'Fall', 2009, 'A+'); + insert into takes values('73213', '443', '1', 'Spring', 2010, 'B-'); + insert into takes values('84702', '192', '1', 'Fall', 2002, 'B-'); + insert into takes values('76768', '362', '3', 'Spring', 2008, 'A '); + insert into takes values('11419', '338', '1', 'Spring', 2007, 'C '); + insert into takes values('41938', '663', '1', 'Spring', 2005, 'A+'); + insert into takes values('86651', '105', '2', 'Fall', 2002, 'C '); + insert into takes values('34392', '852', '1', 'Spring', 2008, 'C-'); + insert into takes values('30110', '366', '1', 'Fall', 2005, 'C '); + insert into takes values('33546', '694', '1', 'Fall', 2002, 'A '); + insert into takes values('17424', '476', '1', 'Fall', 2010, 'B+'); + insert into takes values('72501', '274', '1', 'Fall', 2002, 'C-'); + insert into takes values('51084', '319', '1', 'Spring', 2003, 'A-'); + insert into takes values('40457', '960', '2', 'Fall', 2006, 'B '); + insert into takes values('81396', '362', '1', 'Fall', 2005, 'B-'); + insert into takes values('41599', '376', '1', 'Fall', 2006, 'B+'); + insert into takes values('63449', '304', '1', 'Fall', 2009, 'C-'); + insert into takes values('57185', '704', '1', 'Spring', 2008, 'A-'); + insert into takes values('64222', '200', '1', 'Spring', 2007, 'C-'); + insert into takes values('96153', '694', '1', 'Fall', 2002, 'B '); + insert into takes values('75510', '192', '1', 'Fall', 2002, 'B '); + insert into takes values('64893', '692', '1', 'Spring', 2010, 'B-'); + insert into takes values('37809', '571', '1', 'Spring', 2004, 'C+'); + insert into takes values('56', '795', '1', 'Spring', 2004, 'B+'); + insert into takes values('73213', '679', '1', 'Spring', 2010, 'A '); + insert into takes values('40189', '468', '1', 'Fall', 2005, 'C-'); + insert into takes values('94620', '319', '1', 'Spring', 2003, 'B-'); + insert into takes values('44352', '137', '1', 'Spring', 2002, 'C '); + insert into takes values('99977', '679', '1', 'Spring', 2010, 'A-'); + insert into takes values('97679', '960', '1', 'Fall', 2009, 'A+'); + insert into takes values('61127', '338', '1', 'Spring', 2007, 'A-'); + insert into takes values('77172', '545', '1', 'Fall', 2001, 'A-'); + insert into takes values('4860', '192', '1', 'Fall', 2002, 'A-'); + insert into takes values('931', '445', '1', 'Spring', 2001, 'A-'); + insert into takes values('17397', '304', '1', 'Fall', 2009, 'A+'); + insert into takes values('74796', '496', '1', 'Fall', 2001, 'B-'); + insert into takes values('95201', '748', '1', 'Fall', 2003, 'C+'); + insert into takes values('23110', '571', '1', 'Spring', 2004, 'B '); + insert into takes values('70061', '352', '1', 'Spring', 2006, 'A-'); + insert into takes values('107', '795', '1', 'Spring', 2004, 'C-'); + insert into takes values('76224', '960', '1', 'Fall', 2009, 'C '); + insert into takes values('77664', '795', '1', 'Spring', 2004, 'C '); + insert into takes values('6895', '408', '1', 'Spring', 2007, 'C-'); + insert into takes values('57123', '242', '1', 'Fall', 2009, 'A-'); + insert into takes values('19342', '808', '1', 'Fall', 2003, 'C-'); + insert into takes values('81984', '795', '1', 'Spring', 2004, 'B+'); + insert into takes values('95089', '802', '1', 'Spring', 2003, 'A-'); + insert into takes values('5414', '270', '1', 'Spring', 2010, 'A-'); + insert into takes values('59848', '559', '1', 'Fall', 2002, 'C-'); + insert into takes values('20985', '599', '1', 'Spring', 2003, 'A '); + insert into takes values('50658', '476', '1', 'Fall', 2010, 'C-'); + insert into takes values('78892', '362', '1', 'Fall', 2005, 'A-'); + insert into takes values('99073', '959', '1', 'Fall', 2006, 'C+'); + insert into takes values('32881', '642', '1', 'Fall', 2004, 'C '); + insert into takes values('23457', '401', '1', 'Fall', 2003, 'B+'); + insert into takes values('30341', '304', '1', 'Fall', 2009, 'C '); + insert into takes values('57334', '959', '1', 'Fall', 2006, 'B '); + insert into takes values('79170', '486', '1', 'Fall', 2009, 'B+'); + insert into takes values('20803', '105', '1', 'Fall', 2009, 'A+'); + insert into takes values('792', '242', '1', 'Fall', 2009, 'A+'); + insert into takes values('94173', '545', '1', 'Fall', 2001, 'C-'); + insert into takes values('842', '748', '1', 'Fall', 2003, 'B-'); + insert into takes values('12069', '599', '1', 'Spring', 2003, 'B+'); + insert into takes values('48778', '893', '1', 'Fall', 2007, 'B '); + insert into takes values('45300', '694', '1', 'Fall', 2002, 'A-'); + insert into takes values('76953', '747', '1', 'Spring', 2004, 'A-'); + insert into takes values('29849', '415', '1', 'Fall', 2010, 'B-'); + insert into takes values('97658', '960', '1', 'Fall', 2009, 'C-'); + insert into takes values('94894', '421', '1', 'Fall', 2004, 'C+'); + insert into takes values('10834', '559', '1', 'Fall', 2002, 'C-'); + insert into takes values('83204', '334', '1', 'Fall', 2009, 'B '); + insert into takes values('13408', '626', '1', 'Fall', 2006, 'C+'); + insert into takes values('53728', '704', '1', 'Spring', 2008, 'C+'); + insert into takes values('77588', '237', '2', 'Fall', 2009, 'A-'); + insert into takes values('64938', '702', '1', 'Spring', 2001, 'A+'); + insert into takes values('43505', '486', '1', 'Fall', 2009, 'C-'); + insert into takes values('89297', '415', '1', 'Fall', 2010, 'A+'); + insert into takes values('78792', '200', '2', 'Fall', 2002, 'B+'); + insert into takes values('2286', '702', '1', 'Spring', 2001, 'C+'); + insert into takes values('7149', '949', '1', 'Fall', 2007, 'A+'); + insert into takes values('30845', '581', '1', 'Spring', 2005, 'B+'); + insert into takes values('52291', '679', '1', 'Spring', 2010, 'A '); + insert into takes values('53089', '747', '1', 'Spring', 2004, 'B '); + insert into takes values('16907', '169', '1', 'Spring', 2007, 'A-'); + insert into takes values('1922', '443', '2', 'Spring', 2002, 'A '); + insert into takes values('22620', '258', '1', 'Fall', 2007, 'C+'); + insert into takes values('44206', '663', '1', 'Spring', 2005, 'C+'); + insert into takes values('12941', '527', '1', 'Fall', 2004, 'A-'); + insert into takes values('95320', '591', '1', 'Spring', 2005, 'C+'); + insert into takes values('16133', '795', '1', 'Spring', 2004, 'A '); + insert into takes values('51238', '843', '1', 'Fall', 2010, 'C+'); + insert into takes values('32376', '426', '1', 'Spring', 2006, 'B-'); + insert into takes values('50267', '237', '1', 'Spring', 2008, 'B+'); + insert into takes values('99660', '704', '1', 'Spring', 2008, 'B+'); + insert into takes values('47670', '591', '1', 'Spring', 2005, 'A-'); + insert into takes values('9605', '735', '2', 'Spring', 2010, 'C '); + insert into takes values('56486', '581', '1', 'Spring', 2005, 'A '); + insert into takes values('15726', '468', '2', 'Fall', 2007, 'A-'); + insert into takes values('66495', '663', '1', 'Spring', 2005, 'C+'); + insert into takes values('86753', '702', '1', 'Spring', 2001, 'B '); + insert into takes values('57135', '642', '1', 'Fall', 2004, 'B+'); + insert into takes values('62784', '603', '1', 'Fall', 2003, 'C+'); + insert into takes values('71387', '696', '1', 'Spring', 2002, 'C-'); + insert into takes values('92867', '612', '1', 'Fall', 2007, 'C+'); + insert into takes values('59117', '421', '1', 'Fall', 2004, 'C '); + insert into takes values('95201', '242', '1', 'Fall', 2009, 'B+'); + insert into takes values('64192', '748', '1', 'Fall', 2003, 'B '); + insert into takes values('43348', '626', '1', 'Fall', 2006, 'C+'); + insert into takes values('67425', '679', '1', 'Spring', 2010, 'C '); + insert into takes values('65714', '581', '1', 'Spring', 2005, 'C+'); + insert into takes values('3576', '319', '1', 'Spring', 2003, 'C+'); + insert into takes values('78434', '949', '1', 'Fall', 2007, 'B-'); + insert into takes values('24387', '362', '1', 'Fall', 2005, 'A+'); + insert into takes values('84704', '349', '1', 'Spring', 2008, 'C-'); + insert into takes values('85534', '735', '1', 'Spring', 2003, 'A-'); + insert into takes values('45650', '663', '1', 'Spring', 2005, 'B+'); + insert into takes values('23457', '105', '1', 'Fall', 2009, 'B-'); + insert into takes values('38899', '158', '1', 'Fall', 2008, 'A '); + insert into takes values('91569', '599', '1', 'Spring', 2003, 'A-'); + insert into takes values('61402', '642', '1', 'Fall', 2004, 'C '); + insert into takes values('54728', '959', '1', 'Fall', 2006, 'B+'); + insert into takes values('30017', '239', '1', 'Fall', 2006, 'C '); + insert into takes values('18740', '559', '1', 'Fall', 2002, 'C '); + insert into takes values('94998', '192', '1', 'Fall', 2002, 'A-'); + insert into takes values('45826', '158', '2', 'Spring', 2008, 'C '); + insert into takes values('37350', '735', '2', 'Spring', 2010, 'C+'); + insert into takes values('17076', '169', '2', 'Fall', 2002, 'B+'); + insert into takes values('463', '629', '1', 'Spring', 2003, 'B+'); + insert into takes values('91851', '793', '1', 'Spring', 2002, 'A+'); + insert into takes values('71529', '808', '1', 'Fall', 2003, 'C '); + insert into takes values('38696', '545', '1', 'Fall', 2001, 'C-'); + insert into takes values('17944', '426', '1', 'Spring', 2006, 'B-'); + insert into takes values('97355', '959', '1', 'Fall', 2006, 'A+'); + insert into takes values('52019', '760', '1', 'Spring', 2004, 'B '); + insert into takes values('41599', '421', '1', 'Fall', 2004, 'A+'); + insert into takes values('62054', '482', '1', 'Fall', 2005, 'C+'); + insert into takes values('81789', '735', '2', 'Spring', 2010, 'B '); + insert into takes values('96710', '875', '1', 'Spring', 2005, 'C '); + insert into takes values('64222', '974', '1', 'Fall', 2003, 'A-'); + insert into takes values('52187', '867', '1', 'Fall', 2006, 'C+'); + insert into takes values('66813', '304', '1', 'Fall', 2009, 'B-'); + insert into takes values('34018', '274', '1', 'Fall', 2002, 'C-'); + insert into takes values('17128', '313', '1', 'Fall', 2010, 'A '); + insert into takes values('44836', '927', '1', 'Fall', 2002, 'C-'); + insert into takes values('63860', '242', '1', 'Fall', 2009, 'C-'); + insert into takes values('52471', '408', '2', 'Spring', 2003, 'A-'); + insert into takes values('69222', '345', '1', 'Spring', 2008, 'A-'); + insert into takes values('13217', '237', '1', 'Spring', 2008, 'C-'); + insert into takes values('36791', '237', '2', 'Fall', 2009, 'A-'); + insert into takes values('22325', '445', '1', 'Spring', 2001, 'B '); + insert into takes values('18108', '468', '1', 'Fall', 2005, 'B+'); + insert into takes values('52134', '274', '1', 'Fall', 2002, 'B '); + insert into takes values('11855', '696', '1', 'Spring', 2002, 'C+'); + insert into takes values('38548', '105', '1', 'Fall', 2009, 'C '); + insert into takes values('95027', '893', '1', 'Fall', 2007, 'A-'); + insert into takes values('7035', '169', '1', 'Spring', 2007, 'C-'); + insert into takes values('46442', '486', '1', 'Fall', 2009, 'A '); + insert into takes values('36494', '962', '1', 'Spring', 2008, 'B+'); + insert into takes values('15698', '748', '1', 'Fall', 2003, 'B '); + insert into takes values('52157', '612', '1', 'Fall', 2007, 'B-'); + insert into takes values('84845', '867', '1', 'Fall', 2006, 'C '); + insert into takes values('34386', '443', '2', 'Spring', 2002, 'A+'); + insert into takes values('31690', '408', '1', 'Spring', 2007, 'A '); + insert into takes values('28133', '747', '1', 'Spring', 2004, 'B-'); + insert into takes values('19321', '408', '2', 'Spring', 2003, 'A-'); + insert into takes values('18859', '867', '2', 'Fall', 2010, 'B+'); + insert into takes values('88045', '962', '1', 'Spring', 2008, 'A-'); + insert into takes values('63582', '959', '1', 'Fall', 2006, 'C '); + insert into takes values('5414', '137', '1', 'Spring', 2002, 'A+'); + insert into takes values('33094', '415', '1', 'Fall', 2010, 'A '); + insert into takes values('90194', '991', '1', 'Spring', 2008, 'C '); + insert into takes values('61081', '867', '1', 'Fall', 2006, 'A+'); + insert into takes values('63449', '443', '2', 'Spring', 2002, 'B+'); + insert into takes values('45494', '105', '1', 'Fall', 2009, 'C-'); + insert into takes values('41774', '366', '1', 'Fall', 2005, 'B-'); + insert into takes values('43854', '852', '1', 'Spring', 2008, 'A-'); + insert into takes values('18709', '319', '1', 'Spring', 2003, 'B+'); + insert into takes values('34195', '527', '1', 'Fall', 2004, 'B '); + insert into takes values('63090', '974', '1', 'Fall', 2003, 'A-'); + insert into takes values('24630', '959', '1', 'Fall', 2006, 'C '); + insert into takes values('64297', '581', '1', 'Spring', 2005, 'C '); + insert into takes values('9933', '791', '1', 'Spring', 2006, 'A-'); + insert into takes values('3576', '482', '1', 'Fall', 2005, 'A-'); + insert into takes values('75928', '169', '2', 'Fall', 2002, 'C-'); + insert into takes values('8252', '362', '3', 'Spring', 2008, 'B-'); + insert into takes values('87015', '468', '2', 'Fall', 2007, 'B-'); + insert into takes values('4182', '105', '1', 'Fall', 2009, 'A-'); + insert into takes values('34331', '927', '1', 'Fall', 2002, 'B-'); + insert into takes values('36513', '457', '1', 'Spring', 2001, 'A+'); + insert into takes values('90124', '747', '1', 'Spring', 2004, 'B '); + insert into takes values('92849', '338', '1', 'Spring', 2007, 'B-'); + insert into takes values('63390', '445', '1', 'Spring', 2001, 'A '); + insert into takes values('32385', '158', '2', 'Spring', 2008, 'C-'); + insert into takes values('72622', '561', '1', 'Fall', 2006, 'C+'); + insert into takes values('67051', '200', '2', 'Fall', 2002, 'A-'); + insert into takes values('30177', '158', '1', 'Fall', 2008, 'A-'); + insert into takes values('65563', '486', '1', 'Fall', 2009, 'A+'); + insert into takes values('70564', '949', '1', 'Fall', 2007, 'B+'); + insert into takes values('71389', '692', '1', 'Spring', 2010, 'A-'); + insert into takes values('83728', '200', '1', 'Spring', 2007, 'B '); + insert into takes values('67222', '158', '2', 'Spring', 2008, 'C+'); + insert into takes values('36995', '571', '1', 'Spring', 2004, 'B '); + insert into takes values('14581', '867', '1', 'Fall', 2006, 'C+'); + insert into takes values('64196', '338', '2', 'Spring', 2006, 'A+'); + insert into takes values('41406', '493', '1', 'Spring', 2010, 'C-'); + insert into takes values('35685', '376', '1', 'Fall', 2006, 'C+'); + insert into takes values('40738', '482', '1', 'Fall', 2005, 'B+'); + insert into takes values('12941', '400', '1', 'Spring', 2007, 'C-'); + insert into takes values('89132', '313', '1', 'Fall', 2010, 'B '); + insert into takes values('99369', '482', '1', 'Fall', 2005, 'A '); + insert into takes values('56124', '338', '2', 'Spring', 2006, 'B-'); + insert into takes values('12563', '274', '1', 'Fall', 2002, 'B-'); + insert into takes values('63243', '626', '1', 'Fall', 2006, 'A+'); + insert into takes values('1968', '169', '1', 'Spring', 2007, 'A '); + insert into takes values('46928', '496', '1', 'Fall', 2001, 'C '); + insert into takes values('85366', '949', '1', 'Fall', 2007, 'A+'); + insert into takes values('97694', '612', '1', 'Fall', 2007, 'C '); + insert into takes values('76895', '852', '1', 'Spring', 2008, 'B-'); + insert into takes values('46980', '626', '1', 'Fall', 2006, 'C-'); + insert into takes values('90567', '200', '1', 'Spring', 2007, 'C+'); + insert into takes values('36244', '319', '1', 'Spring', 2003, 'A+'); + insert into takes values('86753', '949', '1', 'Fall', 2007, 'B '); + insert into takes values('68248', '960', '1', 'Fall', 2009, 'B+'); + insert into takes values('32772', '802', '1', 'Spring', 2003, 'C '); + insert into takes values('28299', '959', '1', 'Fall', 2006, 'A-'); + insert into takes values('68396', '200', '1', 'Spring', 2007, 'A '); + insert into takes values('68070', '486', '1', 'Fall', 2009, 'C-'); + insert into takes values('7602', '408', '2', 'Spring', 2003, 'B+'); + insert into takes values('76604', '421', '1', 'Fall', 2004, 'B '); + insert into takes values('62487', '362', '3', 'Spring', 2008, 'A-'); + insert into takes values('13921', '274', '1', 'Fall', 2002, 'A '); + insert into takes values('31364', '408', '1', 'Spring', 2007, 'A-'); + insert into takes values('97228', '443', '2', 'Spring', 2002, 'C+'); + insert into takes values('9084', '362', '3', 'Spring', 2008, 'B-'); + insert into takes values('65681', '694', '1', 'Fall', 2002, 'C+'); + insert into takes values('72014', '791', '1', 'Spring', 2006, 'A-'); + insert into takes values('95099', '158', '2', 'Spring', 2008, 'B+'); + insert into takes values('35935', '426', '1', 'Spring', 2006, 'B+'); + insert into takes values('99268', '604', '1', 'Spring', 2009, 'B '); + insert into takes values('4438', '482', '1', 'Fall', 2005, 'B '); + insert into takes values('72014', '949', '1', 'Fall', 2007, 'C+'); + insert into takes values('60366', '591', '1', 'Spring', 2005, 'A '); + insert into takes values('25942', '793', '1', 'Spring', 2002, 'A+'); + insert into takes values('90814', '808', '1', 'Fall', 2003, 'C-'); + insert into takes values('64934', '468', '2', 'Fall', 2007, 'C-'); + insert into takes values('52157', '362', '2', 'Fall', 2006, 'B '); + insert into takes values('16753', '591', '1', 'Spring', 2005, 'B+'); + insert into takes values('89132', '960', '1', 'Fall', 2009, 'C '); + insert into takes values('92332', '927', '1', 'Fall', 2002, 'B-'); + insert into takes values('91343', '591', '1', 'Spring', 2005, 'B+'); + insert into takes values('22345', '200', '2', 'Fall', 2002, 'B+'); + insert into takes values('7043', '237', '2', 'Fall', 2009, 'B+'); + insert into takes values('69679', '169', '2', 'Fall', 2002, 'A '); + insert into takes values('60867', '334', '1', 'Fall', 2009, 'B '); + insert into takes values('14628', '489', '1', 'Fall', 2007, 'C-'); + insert into takes values('15538', '972', '1', 'Spring', 2009, 'C-'); + insert into takes values('26102', '949', '1', 'Fall', 2007, 'C '); + insert into takes values('64945', '603', '1', 'Fall', 2003, 'A-'); + insert into takes values('98940', '559', '1', 'Fall', 2002, 'B '); + insert into takes values('43432', '949', '1', 'Fall', 2007, 'A-'); + insert into takes values('40189', '604', '1', 'Spring', 2009, 'C-'); + insert into takes values('8819', '864', '1', 'Spring', 2006, 'B-'); + insert into takes values('52876', '629', '1', 'Spring', 2003, 'A+'); + insert into takes values('32506', '960', '2', 'Fall', 2006, 'B '); + insert into takes values('43123', '468', '2', 'Fall', 2007, 'A-'); + insert into takes values('7620', '169', '2', 'Fall', 2002, 'C-'); + insert into takes values('67514', '415', '1', 'Fall', 2010, 'A-'); + insert into takes values('12971', '443', '2', 'Spring', 2002, 'A+'); + insert into takes values('20244', '791', '1', 'Spring', 2006, 'B '); + insert into takes values('13290', '192', '1', 'Fall', 2002, 'B+'); + insert into takes values('81207', '362', '3', 'Spring', 2008, 'A+'); + insert into takes values('99710', '192', '1', 'Fall', 2002, 'A+'); + insert into takes values('288', '808', '1', 'Fall', 2003, 'C+'); + insert into takes values('75513', '486', '1', 'Fall', 2009, 'A+'); + insert into takes values('67810', '169', '1', 'Spring', 2007, 'C '); + insert into takes values('29390', '496', '1', 'Fall', 2001, 'C+'); + insert into takes values('80941', '349', '1', 'Spring', 2008, 'C '); + insert into takes values('94142', '400', '2', 'Fall', 2003, 'C+'); + insert into takes values('99977', '258', '1', 'Fall', 2007, 'B+'); + insert into takes values('96988', '696', '1', 'Spring', 2002, 'C '); + insert into takes values('39521', '468', '2', 'Fall', 2007, 'A-'); + insert into takes values('60984', '960', '2', 'Fall', 2006, 'B '); + insert into takes values('79772', '603', '1', 'Fall', 2003, 'A '); + insert into takes values('64222', '802', '1', 'Spring', 2003, 'B+'); + insert into takes values('7498', '679', '1', 'Spring', 2010, 'C-'); + insert into takes values('667', '482', '1', 'Fall', 2005, 'A-'); + insert into takes values('86375', '366', '1', 'Fall', 2005, 'B+'); + insert into takes values('83003', '274', '1', 'Fall', 2002, 'C-'); + insert into takes values('82868', '603', '1', 'Fall', 2003, 'A-'); + insert into takes values('72528', '694', '1', 'Fall', 2002, 'C '); + insert into takes values('28128', '169', '1', 'Spring', 2007, 'B '); + insert into takes values('8426', '443', '1', 'Spring', 2010, 'C-'); + insert into takes values('66763', '169', '2', 'Fall', 2002, 'C-'); + insert into takes values('827', '362', '3', 'Spring', 2008, 'B-'); + insert into takes values('18636', '313', '1', 'Fall', 2010, 'B+'); + insert into takes values('99694', '457', '1', 'Spring', 2001, 'B+'); + insert into takes values('2286', '802', '1', 'Spring', 2003, 'A '); + insert into takes values('13826', '468', '2', 'Fall', 2007, 'B-'); + insert into takes values('29239', '200', '1', 'Spring', 2007, 'A-'); + insert into takes values('69241', '735', '1', 'Spring', 2003, 'B '); + insert into takes values('98984', '591', '1', 'Spring', 2005, 'A+'); + insert into takes values('32368', '561', '1', 'Fall', 2006, 'C-'); + insert into takes values('3576', '581', '1', 'Spring', 2005, 'C '); + insert into takes values('98563', '421', '1', 'Fall', 2004, 'A '); + insert into takes values('96052', '631', '1', 'Spring', 2007, 'C '); + insert into takes values('3545', '445', '1', 'Spring', 2001, 'C-'); + insert into takes values('288', '679', '1', 'Spring', 2010, 'B '); + insert into takes values('31554', '408', '1', 'Spring', 2007, 'C+'); + insert into takes values('8378', '679', '1', 'Spring', 2010, 'B+'); + insert into takes values('57538', '704', '1', 'Spring', 2008, 'B+'); + insert into takes values('56598', '468', '1', 'Fall', 2005, 'B '); + insert into takes values('46106', '747', '1', 'Spring', 2004, 'B '); + insert into takes values('75123', '852', '1', 'Spring', 2008, 'B-'); + insert into takes values('39892', '461', '1', 'Fall', 2002, 'B-'); + insert into takes values('71389', '476', '1', 'Fall', 2010, 'A-'); + insert into takes values('70564', '991', '1', 'Spring', 2008, 'B+'); + insert into takes values('63243', '843', '1', 'Fall', 2010, 'C-'); + insert into takes values('75772', '793', '1', 'Spring', 2002, 'B-'); + insert into takes values('58326', '960', '2', 'Fall', 2006, 'C+'); + insert into takes values('11195', '802', '1', 'Spring', 2003, 'C+'); + insert into takes values('99719', '362', '1', 'Fall', 2005, 'C '); + insert into takes values('35257', '702', '1', 'Spring', 2001, 'A '); + insert into takes values('34195', '692', '1', 'Spring', 2010, 'A-'); + insert into takes values('36494', '735', '1', 'Spring', 2003, 'C '); + insert into takes values('53699', '345', '1', 'Spring', 2008, 'B-'); + insert into takes values('29260', '875', '1', 'Spring', 2005, 'A '); + insert into takes values('72501', '974', '1', 'Fall', 2003, 'C-'); + insert into takes values('53225', '349', '1', 'Spring', 2008, 'A+'); + insert into takes values('1827', '237', '1', 'Spring', 2008, 'A '); + insert into takes values('39552', '949', '1', 'Fall', 2007, 'A '); + insert into takes values('76799', '679', '1', 'Spring', 2010, 'B '); + insert into takes values('65205', '867', '2', 'Fall', 2010, 'C '); + insert into takes values('60249', '875', '1', 'Spring', 2005, 'B-'); + insert into takes values('51723', '158', '1', 'Fall', 2008, 'A-'); + insert into takes values('760', '192', '1', 'Fall', 2002, 'B+'); + insert into takes values('21086', '408', '1', 'Spring', 2007, 'C+'); + insert into takes values('95366', '401', '1', 'Fall', 2003, 'C+'); + insert into takes values('70924', '137', '1', 'Spring', 2002, 'A '); + insert into takes values('21552', '400', '1', 'Spring', 2007, 'B-'); + insert into takes values('64164', '169', '2', 'Fall', 2002, 'C '); + insert into takes values('57160', '972', '1', 'Spring', 2009, 'B-'); + insert into takes values('9495', '476', '1', 'Fall', 2010, 'C+'); + insert into takes values('37339', '545', '1', 'Fall', 2001, 'A+'); + insert into takes values('36995', '345', '1', 'Spring', 2008, 'A '); + insert into takes values('38712', '629', '1', 'Spring', 2003, 'B '); + insert into takes values('44206', '461', '1', 'Fall', 2002, 'B '); + insert into takes values('8912', '663', '1', 'Spring', 2005, 'C-'); + insert into takes values('99760', '747', '1', 'Spring', 2004, 'A-'); + insert into takes values('96988', '200', '2', 'Fall', 2002, 'B '); + insert into takes values('13211', '105', '1', 'Fall', 2009, 'C-'); + insert into takes values('26028', '959', '1', 'Fall', 2006, 'C '); + insert into takes values('15340', '270', '1', 'Spring', 2010, 'C '); + insert into takes values('61414', '338', '1', 'Spring', 2007, 'A '); + insert into takes values('25187', '349', '1', 'Spring', 2008, 'A-'); + insert into takes values('45300', '793', '1', 'Spring', 2002, 'C '); + insert into takes values('56499', '362', '3', 'Spring', 2008, 'C '); + insert into takes values('19735', '642', '1', 'Fall', 2004, 'B+'); + insert into takes values('37038', '642', '1', 'Fall', 2004, 'C-'); + insert into takes values('667', '313', '1', 'Fall', 2010, 'B-'); + insert into takes values('86127', '338', '1', 'Spring', 2007, 'C+'); + insert into takes values('61127', '242', '1', 'Fall', 2009, 'B-'); + insert into takes values('25611', '679', '1', 'Spring', 2010, 'C+'); + insert into takes values('71085', '663', '1', 'Spring', 2005, 'C-'); + insert into takes values('53490', '702', '1', 'Spring', 2001, 'B+'); + insert into takes values('45002', '304', '1', 'Fall', 2009, 'B+'); + insert into takes values('61354', '137', '1', 'Spring', 2002, 'C '); + insert into takes values('70098', '338', '2', 'Spring', 2006, 'B+'); + insert into takes values('51579', '482', '1', 'Fall', 2005, 'A+'); + insert into takes values('71768', '493', '1', 'Spring', 2010, 'B+'); + insert into takes values('3639', '158', '1', 'Fall', 2008, 'A-'); + insert into takes values('63886', '959', '1', 'Fall', 2006, 'C '); + insert into takes values('86802', '237', '1', 'Spring', 2008, 'B-'); + insert into takes values('37818', '421', '1', 'Fall', 2004, 'B+'); + insert into takes values('28128', '735', '2', 'Spring', 2010, 'B+'); + insert into takes values('96615', '401', '1', 'Fall', 2003, 'B-'); + insert into takes values('16528', '696', '1', 'Spring', 2002, 'B '); + insert into takes values('69747', '612', '1', 'Fall', 2007, 'A-'); + insert into takes values('30017', '867', '1', 'Fall', 2006, 'A-'); + insert into takes values('86806', '960', '2', 'Fall', 2006, 'C '); + insert into takes values('82974', '747', '1', 'Spring', 2004, 'B+'); + insert into takes values('63582', '105', '1', 'Fall', 2009, 'A+'); + insert into takes values('47126', '239', '1', 'Fall', 2006, 'B+'); + insert into takes values('57242', '808', '1', 'Fall', 2003, 'C+'); + insert into takes values('56003', '338', '2', 'Spring', 2006, 'A+'); + insert into takes values('37284', '237', '1', 'Spring', 2008, 'C '); + insert into takes values('70572', '612', '1', 'Fall', 2007, 'C '); + insert into takes values('6729', '960', '2', 'Fall', 2006, 'B '); + insert into takes values('8957', '631', '1', 'Spring', 2007, 'B-'); + insert into takes values('96067', '489', '1', 'Fall', 2007, 'A-'); + insert into takes values('56882', '960', '2', 'Fall', 2006, 'A '); + insert into takes values('56003', '679', '1', 'Spring', 2010, 'A+'); + insert into takes values('42096', '489', '1', 'Fall', 2007, 'B+'); + insert into takes values('28538', '663', '1', 'Spring', 2005, 'B-'); + insert into takes values('48778', '457', '1', 'Spring', 2001, 'B+'); + insert into takes values('92864', '843', '1', 'Fall', 2010, 'A-'); + insert into takes values('29959', '793', '1', 'Spring', 2002, 'A+'); + insert into takes values('70395', '304', '1', 'Fall', 2009, 'B+'); + insert into takes values('71529', '443', '1', 'Spring', 2010, 'A+'); + insert into takes values('51538', '626', '1', 'Fall', 2006, 'B '); + insert into takes values('44836', '334', '1', 'Fall', 2009, 'B-'); + insert into takes values('26494', '612', '1', 'Fall', 2007, 'C+'); + insert into takes values('92849', '875', '1', 'Spring', 2005, 'C '); + insert into takes values('39114', '366', '1', 'Fall', 2005, 'A '); + insert into takes values('64222', '629', '1', 'Spring', 2003, 'C '); + insert into takes values('50267', '461', '1', 'Fall', 2002, 'C '); + insert into takes values('32881', '200', '2', 'Fall', 2002, 'C-'); + insert into takes values('5871', '400', '1', 'Spring', 2007, 'B-'); + insert into takes values('42565', '105', '2', 'Fall', 2002, 'C-'); + insert into takes values('12173', '352', '1', 'Spring', 2006, 'C+'); + insert into takes values('63886', '527', '1', 'Fall', 2004, 'A '); + insert into takes values('57238', '852', '1', 'Spring', 2008, 'C+'); + insert into takes values('96227', '793', '1', 'Spring', 2002, 'A+'); + insert into takes values('34126', '679', '1', 'Spring', 2010, 'C-'); + insert into takes values('75791', '349', '1', 'Spring', 2008, 'C-'); + insert into takes values('41890', '426', '1', 'Spring', 2006, 'A+'); + insert into takes values('36019', '631', '1', 'Spring', 2007, 'B+'); + insert into takes values('25187', '571', '1', 'Spring', 2004, 'B+'); + insert into takes values('44703', '960', '2', 'Fall', 2006, 'C+'); + insert into takes values('86552', '105', '2', 'Fall', 2002, 'B-'); + insert into takes values('61354', '258', '1', 'Fall', 2007, 'B+'); + insert into takes values('78911', '612', '1', 'Fall', 2007, 'C '); + insert into takes values('39472', '581', '1', 'Spring', 2005, 'A-'); + insert into takes values('34542', '274', '1', 'Fall', 2002, 'A '); + insert into takes values('45680', '158', '1', 'Fall', 2008, 'C-'); + insert into takes values('94990', '867', '1', 'Fall', 2006, 'A '); + insert into takes values('23525', '626', '1', 'Fall', 2006, 'B-'); + insert into takes values('67793', '158', '2', 'Spring', 2008, 'C-'); + insert into takes values('57456', '852', '1', 'Spring', 2008, 'C '); + insert into takes values('4682', '893', '1', 'Fall', 2007, 'B '); + insert into takes values('47630', '972', '1', 'Spring', 2009, 'A '); + insert into takes values('37350', '959', '1', 'Fall', 2006, 'B-'); + insert into takes values('39115', '802', '1', 'Spring', 2003, 'C+'); + insert into takes values('77415', '169', '1', 'Spring', 2007, 'B '); + insert into takes values('66229', '274', '1', 'Fall', 2002, 'A-'); + insert into takes values('29705', '362', '3', 'Spring', 2008, 'A+'); + insert into takes values('77588', '362', '1', 'Fall', 2005, 'B-'); + insert into takes values('6209', '962', '1', 'Spring', 2008, 'B '); + insert into takes values('6304', '581', '1', 'Spring', 2005, 'B+'); + insert into takes values('2177', '808', '1', 'Fall', 2003, 'A '); + insert into takes values('91915', '747', '1', 'Spring', 2004, 'B '); + insert into takes values('9993', '362', '1', 'Fall', 2005, 'B+'); + insert into takes values('61854', '237', '1', 'Spring', 2008, 'C '); + insert into takes values('95953', '200', '2', 'Fall', 2002, 'B+'); + insert into takes values('37103', '400', '1', 'Spring', 2007, 'A '); + insert into takes values('33107', '408', '1', 'Spring', 2007, 'C-'); + insert into takes values('36303', '338', '1', 'Spring', 2007, 'A '); + insert into takes values('65901', '612', '1', 'Fall', 2007, 'C-'); + insert into takes values('993', '362', '2', 'Fall', 2006, 'B '); + insert into takes values('1402', '445', '1', 'Spring', 2001, 'B '); + insert into takes values('18809', '791', '1', 'Spring', 2006, 'B-'); + insert into takes values('95046', '421', '1', 'Fall', 2004, 'A '); + insert into takes values('34170', '258', '1', 'Fall', 2007, 'C '); + insert into takes values('96710', '612', '1', 'Fall', 2007, 'B '); + insert into takes values('86404', '319', '1', 'Spring', 2003, 'B '); + insert into takes values('42625', '629', '1', 'Spring', 2003, 'B '); + insert into takes values('19293', '486', '1', 'Fall', 2009, 'B+'); + insert into takes values('76743', '105', '2', 'Fall', 2002, 'C+'); + insert into takes values('52019', '345', '1', 'Spring', 2008, 'C '); + insert into takes values('93043', '679', '1', 'Spring', 2010, 'B-'); + insert into takes values('35257', '591', '1', 'Spring', 2005, 'B-'); + insert into takes values('36513', '527', '1', 'Fall', 2004, 'C '); + insert into takes values('11966', '338', '2', 'Spring', 2006, 'C+'); + insert into takes values('81876', '200', '2', 'Fall', 2002, 'C '); + insert into takes values('16993', '663', '1', 'Spring', 2005, 'C+'); + insert into takes values('31337', '642', '1', 'Fall', 2004, 'A '); + insert into takes values('39552', '663', '1', 'Spring', 2005, 'C-'); + insert into takes values('8957', '376', '1', 'Fall', 2006, 'B+'); + insert into takes values('72186', '694', '1', 'Fall', 2002, 'C-'); + insert into takes values('34158', '559', '1', 'Fall', 2002, 'B-'); + insert into takes values('86529', '696', '1', 'Spring', 2002, 'B-'); + insert into takes values('82646', '496', '1', 'Fall', 2001, 'A '); + insert into takes values('56299', '735', '2', 'Spring', 2010, 'B-'); + insert into takes values('48423', '692', '1', 'Spring', 2010, 'A-'); + insert into takes values('50386', '626', '1', 'Fall', 2006, 'A '); + insert into takes values('51203', '867', '2', 'Fall', 2010, 'C+'); + insert into takes values('42625', '445', '1', 'Spring', 2001, 'B '); + insert into takes values('70572', '313', '1', 'Fall', 2010, 'B-'); + insert into takes values('36265', '559', '1', 'Fall', 2002, 'B '); + insert into takes values('18859', '486', '1', 'Fall', 2009, 'B+'); + insert into takes values('91091', '802', '1', 'Spring', 2003, 'B '); + insert into takes values('11057', '735', '1', 'Spring', 2003, 'C+'); + insert into takes values('88553', '808', '1', 'Fall', 2003, 'A-'); + insert into takes values('53803', '169', '1', 'Spring', 2007, 'C-'); + insert into takes values('78767', '349', '1', 'Spring', 2008, 'A+'); + insert into takes values('65329', '304', '1', 'Fall', 2009, 'B+'); + insert into takes values('68330', '169', '2', 'Fall', 2002, 'B '); + insert into takes values('59517', '461', '1', 'Fall', 2002, 'A-'); + insert into takes values('45494', '366', '1', 'Fall', 2005, 'A+'); + insert into takes values('6287', '443', '2', 'Spring', 2002, 'A-'); + insert into takes values('67222', '747', '1', 'Spring', 2004, 'B '); + insert into takes values('97573', '468', '2', 'Fall', 2007, 'C '); + insert into takes values('65258', '864', '1', 'Spring', 2006, 'C-'); + insert into takes values('5414', '629', '1', 'Spring', 2003, 'A-'); + insert into takes values('12236', '927', '1', 'Fall', 2002, 'A-'); + insert into takes values('9495', '366', '1', 'Fall', 2005, 'A-'); + insert into takes values('24932', '663', '1', 'Spring', 2005, 'A-'); + insert into takes values('96003', '748', '1', 'Fall', 2003, 'B+'); + insert into takes values('13352', '192', '1', 'Fall', 2002, 'C-'); + insert into takes values('29803', '362', '1', 'Fall', 2005, 'C '); + insert into takes values('16523', '545', '1', 'Fall', 2001, 'A+'); + insert into takes values('39619', '158', '1', 'Fall', 2008, 'A+'); + insert into takes values('65329', '313', '1', 'Fall', 2010, 'B '); + insert into takes values('9360', '747', '1', 'Spring', 2004, 'B '); + insert into takes values('84239', '445', '1', 'Spring', 2001, 'C+'); + insert into takes values('48660', '192', '1', 'Fall', 2002, 'C-'); + insert into takes values('15517', '972', '1', 'Spring', 2009, 'B+'); + insert into takes values('75560', '270', '1', 'Spring', 2010, 'B '); + insert into takes values('89104', '408', '1', 'Spring', 2007, 'C+'); + insert into takes values('98315', '489', '1', 'Fall', 2007, 'C '); + insert into takes values('51923', '642', '1', 'Fall', 2004, 'B '); + insert into takes values('62487', '591', '1', 'Spring', 2005, 'B '); + insert into takes values('39612', '962', '1', 'Spring', 2008, 'A '); + insert into takes values('108', '338', '1', 'Spring', 2007, 'C+'); + insert into takes values('11604', '468', '1', 'Fall', 2005, 'C '); + insert into takes values('89393', '258', '1', 'Fall', 2007, 'A '); + insert into takes values('69241', '137', '1', 'Spring', 2002, 'C '); + insert into takes values('6523', '400', '2', 'Fall', 2003, 'C-'); + insert into takes values('97065', '443', '2', 'Spring', 2002, 'B '); + insert into takes values('37946', '158', '1', 'Fall', 2008, 'A-'); + insert into takes values('29920', '486', '1', 'Fall', 2009, 'C-'); + insert into takes values('45494', '158', '2', 'Spring', 2008, 'A-'); + insert into takes values('9360', '476', '1', 'Fall', 2010, 'B-'); + insert into takes values('81207', '270', '1', 'Spring', 2010, 'B+'); + insert into takes values('10033', '362', '3', 'Spring', 2008, 'A-'); + insert into takes values('38548', '200', '2', 'Fall', 2002, 'C '); + insert into takes values('76759', '421', '1', 'Fall', 2004, 'C-'); + insert into takes values('39704', '875', '1', 'Spring', 2005, 'A-'); + insert into takes values('77172', '496', '1', 'Fall', 2001, 'B-'); + insert into takes values('88287', '352', '1', 'Spring', 2006, 'C+'); + insert into takes values('49982', '864', '1', 'Spring', 2006, 'A '); + insert into takes values('46970', '237', '2', 'Fall', 2009, 'C+'); + insert into takes values('52856', '421', '1', 'Fall', 2004, 'A+'); + insert into takes values('75547', '366', '1', 'Fall', 2005, 'C+'); + insert into takes values('5703', '489', '1', 'Fall', 2007, 'C-'); + insert into takes values('9460', '426', '1', 'Spring', 2006, 'B+'); + insert into takes values('70061', '760', '1', 'Spring', 2004, 'C '); + insert into takes values('73268', '415', '1', 'Fall', 2010, 'C-'); + insert into takes values('39204', '642', '1', 'Fall', 2004, 'C-'); + insert into takes values('34018', '345', '1', 'Spring', 2008, 'B+'); + insert into takes values('90234', '105', '2', 'Fall', 2002, 'B+'); + insert into takes values('32886', '960', '1', 'Fall', 2009, 'B+'); + insert into takes values('83022', '468', '1', 'Fall', 2005, 'B '); + insert into takes values('61003', '304', '1', 'Fall', 2009, 'A '); + insert into takes values('55857', '362', '3', 'Spring', 2008, 'C+'); + insert into takes values('62716', '105', '2', 'Fall', 2002, 'A+'); + insert into takes values('69230', '603', '1', 'Fall', 2003, 'B+'); + insert into takes values('19536', '747', '1', 'Spring', 2004, 'A+'); + insert into takes values('11530', '604', '1', 'Spring', 2009, 'B-'); + insert into takes values('34770', '962', '1', 'Spring', 2008, 'A+'); + insert into takes values('45826', '426', '1', 'Spring', 2006, 'C+'); + insert into takes values('10663', '489', '1', 'Fall', 2007, 'B-'); + insert into takes values('14094', '852', '1', 'Spring', 2008, 'A+'); + insert into takes values('82974', '991', '1', 'Spring', 2008, 'C+'); + insert into takes values('42388', '304', '1', 'Fall', 2009, 'B '); + insert into takes values('90004', '468', '2', 'Fall', 2007, 'B+'); + insert into takes values('18554', '362', '1', 'Fall', 2005, 'C+'); + insert into takes values('33791', '421', '1', 'Fall', 2004, 'A+'); + insert into takes values('25611', '445', '1', 'Spring', 2001, 'A-'); + insert into takes values('90132', '991', '1', 'Spring', 2008, 'B+'); + insert into takes values('30017', '991', '1', 'Spring', 2008, 'A+'); + insert into takes values('83871', '974', '1', 'Fall', 2003, 'C+'); + insert into takes values('41832', '468', '1', 'Fall', 2005, 'B+'); + insert into takes values('78572', '748', '1', 'Fall', 2003, 'B '); + insert into takes values('79329', '400', '2', 'Fall', 2003, 'C-'); + insert into takes values('35588', '366', '1', 'Fall', 2005, 'C+'); + insert into takes values('18740', '461', '1', 'Fall', 2002, 'C '); + insert into takes values('88553', '200', '1', 'Spring', 2007, 'A '); + insert into takes values('14874', '362', '1', 'Fall', 2005, 'C-'); + insert into takes values('20803', '334', '1', 'Fall', 2009, 'A+'); + insert into takes values('8807', '258', '1', 'Fall', 2007, 'A-'); + insert into takes values('62636', '793', '1', 'Spring', 2002, 'C+'); + insert into takes values('76798', '561', '1', 'Fall', 2006, 'B+'); + insert into takes values('82918', '362', '1', 'Fall', 2005, 'A-'); + insert into takes values('80821', '319', '1', 'Spring', 2003, 'C '); + insert into takes values('11237', '237', '2', 'Fall', 2009, 'A+'); + insert into takes values('19450', '457', '1', 'Spring', 2001, 'C '); + insert into takes values('4582', '843', '1', 'Fall', 2010, 'A-'); + insert into takes values('45770', '408', '1', 'Spring', 2007, 'B+'); + insert into takes values('65101', '376', '1', 'Fall', 2006, 'B-'); + insert into takes values('13081', '400', '2', 'Fall', 2003, 'C-'); + insert into takes values('57456', '169', '2', 'Fall', 2002, 'C '); + insert into takes values('53048', '561', '1', 'Fall', 2006, 'C-'); + insert into takes values('49813', '486', '1', 'Fall', 2009, 'B '); + insert into takes values('95260', '362', '2', 'Fall', 2006, 'C '); + insert into takes values('84654', '612', '1', 'Fall', 2007, 'B-'); + insert into takes values('46928', '561', '1', 'Fall', 2006, 'B+'); + insert into takes values('8343', '158', '2', 'Spring', 2008, 'C-'); + insert into takes values('22254', '791', '1', 'Spring', 2006, 'B+'); + insert into takes values('39925', '875', '1', 'Spring', 2005, 'B-'); + insert into takes values('99451', '791', '1', 'Spring', 2006, 'A '); + insert into takes values('66008', '747', '1', 'Spring', 2004, 'B '); + insert into takes values('79534', '694', '1', 'Fall', 2002, 'C '); + insert into takes values('92703', '345', '1', 'Spring', 2008, 'A '); + insert into takes values('88085', '875', '1', 'Spring', 2005, 'C-'); + insert into takes values('78143', '239', '1', 'Fall', 2006, 'B-'); + insert into takes values('69679', '867', '1', 'Fall', 2006, 'A-'); + insert into takes values('59290', '748', '1', 'Fall', 2003, 'A '); + insert into takes values('66106', '793', '1', 'Spring', 2002, 'B+'); + insert into takes values('64550', '581', '1', 'Spring', 2005, 'C '); + insert into takes values('81984', '237', '1', 'Spring', 2008, 'A '); + insert into takes values('34195', '482', '1', 'Fall', 2005, 'C '); + insert into takes values('7035', '875', '1', 'Spring', 2005, 'A '); + insert into takes values('59908', '760', '1', 'Spring', 2004, 'A+'); + insert into takes values('98984', '445', '1', 'Spring', 2001, 'A-'); + insert into takes values('64067', '949', '1', 'Fall', 2007, 'B '); + insert into takes values('81258', '105', '2', 'Fall', 2002, 'A-'); + insert into takes values('17076', '258', '1', 'Fall', 2007, 'B '); + insert into takes values('38336', '663', '1', 'Spring', 2005, 'C+'); + insert into takes values('64249', '843', '1', 'Fall', 2010, 'C+'); + insert into takes values('41827', '974', '1', 'Fall', 2003, 'B+'); + insert into takes values('69222', '626', '1', 'Fall', 2006, 'A '); + insert into takes values('32506', '893', '1', 'Fall', 2007, 'B-'); + insert into takes values('43123', '200', '1', 'Spring', 2007, 'C '); + insert into takes values('52203', '960', '1', 'Fall', 2009, 'A '); + insert into takes values('99949', '319', '1', 'Spring', 2003, 'A+'); + insert into takes values('15340', '679', '1', 'Spring', 2010, 'A-'); + insert into takes values('23994', '400', '1', 'Spring', 2007, 'C '); + insert into takes values('81883', '408', '1', 'Spring', 2007, 'A '); + insert into takes values('77548', '559', '1', 'Fall', 2002, 'C '); + insert into takes values('38476', '105', '2', 'Fall', 2002, 'C-'); + insert into takes values('41091', '489', '1', 'Fall', 2007, 'A '); + insert into takes values('1220', '319', '1', 'Spring', 2003, 'B-'); + insert into takes values('28361', '237', '2', 'Fall', 2009, 'B '); + insert into takes values('52929', '242', '1', 'Fall', 2009, 'C '); + insert into takes values('72741', '482', '1', 'Fall', 2005, 'C+'); + insert into takes values('64724', '748', '1', 'Fall', 2003, 'C+'); + insert into takes values('39925', '270', '1', 'Spring', 2010, 'B+'); + insert into takes values('73411', '852', '1', 'Spring', 2008, 'B '); + insert into takes values('16907', '702', '1', 'Spring', 2001, 'B-'); + insert into takes values('5617', '349', '1', 'Spring', 2008, 'B+'); + insert into takes values('58469', '972', '1', 'Spring', 2009, 'B-'); + insert into takes values('56232', '489', '1', 'Fall', 2007, 'A '); + insert into takes values('89000', '401', '1', 'Fall', 2003, 'A '); + insert into takes values('6367', '795', '1', 'Spring', 2004, 'A '); + insert into takes values('85746', '461', '1', 'Fall', 2002, 'A+'); + insert into takes values('63502', '345', '1', 'Spring', 2008, 'B+'); + insert into takes values('64938', '489', '1', 'Fall', 2007, 'A '); + insert into takes values('91799', '258', '1', 'Fall', 2007, 'B-'); + insert into takes values('4435', '852', '1', 'Spring', 2008, 'C+'); + insert into takes values('41675', '496', '1', 'Fall', 2001, 'C+'); + insert into takes values('645', '867', '1', 'Fall', 2006, 'B+'); + insert into takes values('68712', '461', '1', 'Fall', 2002, 'A '); + insert into takes values('20814', '748', '1', 'Fall', 2003, 'C+'); + insert into takes values('41406', '158', '2', 'Spring', 2008, 'A '); + insert into takes values('5005', '376', '1', 'Fall', 2006, 'A '); + insert into takes values('56057', '445', '1', 'Spring', 2001, 'C '); + insert into takes values('69132', '704', '1', 'Spring', 2008, 'C '); + insert into takes values('97435', '362', '3', 'Spring', 2008, 'B-'); + insert into takes values('96134', '345', '1', 'Spring', 2008, 'C '); + insert into takes values('31341', '461', '1', 'Fall', 2002, 'A '); + insert into takes values('15457', '591', '1', 'Spring', 2005, 'A+'); + insert into takes values('88801', '604', '1', 'Spring', 2009, 'B-'); + insert into takes values('92274', '626', '1', 'Fall', 2006, 'A+'); + insert into takes values('74911', '545', '1', 'Fall', 2001, 'C-'); + insert into takes values('68395', '795', '1', 'Spring', 2004, 'C '); + insert into takes values('24865', '748', '1', 'Fall', 2003, 'B-'); + insert into takes values('15024', '486', '1', 'Fall', 2009, 'C+'); + insert into takes values('7514', '443', '2', 'Spring', 2002, 'A '); + insert into takes values('29707', '604', '1', 'Spring', 2009, 'A '); + insert into takes values('91370', '808', '1', 'Fall', 2003, 'C+'); + insert into takes values('19848', '545', '1', 'Fall', 2001, 'C-'); + insert into takes values('11076', '960', '2', 'Fall', 2006, 'C+'); + insert into takes values('90779', '808', '1', 'Fall', 2003, 'C-'); + insert into takes values('36494', '561', '1', 'Fall', 2006, 'A '); + insert into takes values('19766', '362', '3', 'Spring', 2008, 'B '); + insert into takes values('10705', '960', '1', 'Fall', 2009, 'C+'); + insert into takes values('14094', '349', '1', 'Spring', 2008, 'A-'); + insert into takes values('60040', '319', '1', 'Spring', 2003, 'C-'); + insert into takes values('85887', '972', '1', 'Spring', 2009, 'C-'); + insert into takes values('83871', '338', '2', 'Spring', 2006, 'C-'); + insert into takes values('30334', '793', '1', 'Spring', 2002, 'C '); + insert into takes values('87246', '604', '1', 'Spring', 2009, 'C-'); + insert into takes values('78481', '421', '1', 'Fall', 2004, 'B-'); + insert into takes values('63560', '735', '1', 'Spring', 2003, 'B-'); + insert into takes values('68263', '443', '1', 'Spring', 2010, 'C-'); + insert into takes values('36926', '334', '1', 'Fall', 2009, 'B '); + insert into takes values('84039', '105', '2', 'Fall', 2002, 'B '); + insert into takes values('6195', '747', '1', 'Spring', 2004, 'A '); + insert into takes values('38712', '200', '1', 'Spring', 2007, 'A-'); + insert into takes values('67657', '808', '1', 'Fall', 2003, 'A '); + insert into takes values('44258', '237', '2', 'Fall', 2009, 'B-'); + insert into takes values('66279', '642', '1', 'Fall', 2004, 'B '); + insert into takes values('90082', '105', '2', 'Fall', 2002, 'B-'); + insert into takes values('50873', '105', '1', 'Fall', 2009, 'C-'); + insert into takes values('22260', '603', '1', 'Fall', 2003, 'A '); + insert into takes values('46980', '338', '2', 'Spring', 2006, 'B-'); + insert into takes values('81785', '496', '1', 'Fall', 2001, 'B '); + insert into takes values('85575', '192', '1', 'Fall', 2002, 'C-'); + insert into takes values('63560', '158', '2', 'Spring', 2008, 'A '); + insert into takes values('49792', '603', '1', 'Fall', 2003, 'B+'); + insert into takes values('44206', '334', '1', 'Fall', 2009, 'C+'); + insert into takes values('99977', '169', '1', 'Spring', 2007, 'A+'); + insert into takes values('60040', '527', '1', 'Fall', 2004, 'C+'); + insert into takes values('35588', '949', '1', 'Fall', 2007, 'B '); + insert into takes values('83728', '561', '1', 'Fall', 2006, 'B '); + insert into takes values('43912', '808', '1', 'Fall', 2003, 'A-'); + insert into takes values('65101', '793', '1', 'Spring', 2002, 'B '); + insert into takes values('7602', '200', '1', 'Spring', 2007, 'B-'); + insert into takes values('64192', '415', '1', 'Fall', 2010, 'B+'); + insert into takes values('18499', '864', '1', 'Spring', 2006, 'B '); + insert into takes values('53152', '482', '1', 'Fall', 2005, 'B-'); + insert into takes values('10204', '137', '1', 'Spring', 2002, 'C '); + insert into takes values('75231', '415', '1', 'Fall', 2010, 'C+'); + insert into takes values('35138', '408', '2', 'Spring', 2003, 'C '); + insert into takes values('5898', '802', '1', 'Spring', 2003, 'B+'); + insert into takes values('53225', '960', '2', 'Fall', 2006, 'A+'); + insert into takes values('91063', '864', '1', 'Spring', 2006, 'B-'); + insert into takes values('44551', '629', '1', 'Spring', 2003, 'C-'); + insert into takes values('57780', '137', '1', 'Spring', 2002, 'C+'); + insert into takes values('76743', '679', '1', 'Spring', 2010, 'B+'); + insert into takes values('64249', '527', '1', 'Fall', 2004, 'A+'); + insert into takes values('14284', '991', '1', 'Spring', 2008, 'C-'); + insert into takes values('84495', '415', '1', 'Fall', 2010, 'C '); + insert into takes values('13741', '476', '1', 'Fall', 2010, 'B-'); + insert into takes values('91851', '421', '1', 'Fall', 2004, 'B '); + insert into takes values('71628', '867', '1', 'Fall', 2006, 'B-'); + insert into takes values('25046', '604', '1', 'Spring', 2009, 'A '); + insert into takes values('61920', '349', '1', 'Spring', 2008, 'C+'); + insert into takes values('85887', '496', '1', 'Fall', 2001, 'B-'); + insert into takes values('51416', '362', '1', 'Fall', 2005, 'B '); + insert into takes values('88169', '415', '1', 'Fall', 2010, 'C+'); + insert into takes values('86736', '338', '1', 'Spring', 2007, 'C-'); + insert into takes values('29849', '867', '2', 'Fall', 2010, 'C+'); + insert into takes values('88577', '496', '1', 'Fall', 2001, 'A '); + insert into takes values('3739', '158', '2', 'Spring', 2008, 'A+'); + insert into takes values('64550', '338', '2', 'Spring', 2006, 'B+'); + insert into takes values('78552', '362', '1', 'Fall', 2005, 'A '); + insert into takes values('85534', '692', '1', 'Spring', 2010, 'A '); + insert into takes values('71085', '559', '1', 'Fall', 2002, 'C+'); + insert into takes values('21789', '443', '2', 'Spring', 2002, 'C '); + insert into takes values('39115', '362', '2', 'Fall', 2006, 'C '); + insert into takes values('76057', '334', '1', 'Fall', 2009, 'A '); + insert into takes values('15517', '496', '1', 'Fall', 2001, 'B-'); + insert into takes values('65329', '561', '1', 'Fall', 2006, 'B '); + insert into takes values('38668', '927', '1', 'Fall', 2002, 'C+'); + insert into takes values('17944', '867', '1', 'Fall', 2006, 'B+'); + insert into takes values('34404', '875', '1', 'Spring', 2005, 'C-'); + insert into takes values('56941', '802', '1', 'Spring', 2003, 'B '); + insert into takes values('107', '663', '1', 'Spring', 2005, 'B+'); + insert into takes values('81883', '808', '1', 'Fall', 2003, 'A-'); + insert into takes values('94569', '960', '2', 'Fall', 2006, 'B+'); + insert into takes values('57190', '401', '1', 'Fall', 2003, 'C+'); + insert into takes values('38271', '270', '1', 'Spring', 2010, 'C-'); + insert into takes values('8140', '527', '1', 'Fall', 2004, 'A-'); + insert into takes values('27950', '486', '1', 'Fall', 2009, 'A+'); + insert into takes values('57123', '735', '2', 'Spring', 2010, 'B-'); + insert into takes values('80254', '791', '1', 'Spring', 2006, 'A-'); + insert into takes values('14581', '591', '1', 'Spring', 2005, 'B-'); + insert into takes values('89051', '791', '1', 'Spring', 2006, 'B-'); + insert into takes values('35220', '237', '1', 'Spring', 2008, 'A-'); + insert into takes values('30188', '559', '1', 'Fall', 2002, 'C+'); + insert into takes values('69285', '527', '1', 'Fall', 2004, 'B+'); + insert into takes values('36126', '362', '2', 'Fall', 2006, 'B+'); + insert into takes values('54296', '192', '1', 'Fall', 2002, 'B-'); + insert into takes values('40992', '319', '1', 'Spring', 2003, 'A+'); + insert into takes values('62487', '468', '1', 'Fall', 2005, 'B '); + insert into takes values('91978', '571', '1', 'Spring', 2004, 'B '); + insert into takes values('69732', '105', '2', 'Fall', 2002, 'A '); + insert into takes values('10481', '972', '1', 'Spring', 2009, 'C+'); + insert into takes values('94801', '545', '1', 'Fall', 2001, 'C+'); + insert into takes values('24809', '974', '1', 'Fall', 2003, 'A '); + insert into takes values('931', '704', '1', 'Spring', 2008, 'A '); + insert into takes values('91370', '270', '1', 'Spring', 2010, 'C+'); + insert into takes values('77580', '239', '1', 'Fall', 2006, 'A+'); + insert into takes values('83480', '893', '1', 'Fall', 2007, 'B+'); + insert into takes values('7035', '319', '1', 'Spring', 2003, 'A+'); + insert into takes values('15517', '443', '2', 'Spring', 2002, 'A-'); + insert into takes values('69747', '972', '1', 'Spring', 2009, 'C+'); + insert into takes values('85226', '629', '1', 'Spring', 2003, 'A+'); + insert into takes values('3163', '972', '1', 'Spring', 2009, 'B-'); + insert into takes values('57985', '200', '1', 'Spring', 2007, 'C+'); + insert into takes values('84845', '443', '1', 'Spring', 2010, 'B+'); + insert into takes values('87044', '426', '1', 'Spring', 2006, 'A-'); + insert into takes values('49244', '258', '1', 'Fall', 2007, 'B-'); + insert into takes values('5824', '991', '1', 'Spring', 2008, 'C '); + insert into takes values('25552', '242', '1', 'Fall', 2009, 'C-'); + insert into takes values('40481', '581', '1', 'Spring', 2005, 'B+'); + insert into takes values('74840', '692', '1', 'Spring', 2010, 'A+'); + insert into takes values('52656', '704', '1', 'Spring', 2008, 'B+'); + insert into takes values('43616', '352', '1', 'Spring', 2006, 'A-'); + insert into takes values('85575', '735', '1', 'Spring', 2003, 'B '); + insert into takes values('16035', '843', '1', 'Fall', 2010, 'A '); + insert into takes values('27952', '802', '1', 'Spring', 2003, 'B '); + insert into takes values('22057', '702', '1', 'Spring', 2001, 'B+'); + insert into takes values('48247', '443', '1', 'Spring', 2010, 'B-'); + insert into takes values('6523', '319', '1', 'Spring', 2003, 'A '); + insert into takes values('58300', '415', '1', 'Fall', 2010, 'C '); + insert into takes values('37430', '612', '1', 'Fall', 2007, 'C+'); + insert into takes values('81028', '791', '1', 'Spring', 2006, 'B '); + insert into takes values('45680', '867', '2', 'Fall', 2010, 'B+'); + insert into takes values('53547', '631', '1', 'Spring', 2007, 'B '); + insert into takes values('5250', '972', '1', 'Spring', 2009, 'A-'); + insert into takes values('59397', '408', '1', 'Spring', 2007, 'A '); + insert into takes values('86969', '461', '1', 'Fall', 2002, 'B '); + insert into takes values('32954', '960', '2', 'Fall', 2006, 'B+'); + insert into takes values('11453', '426', '1', 'Spring', 2006, 'C-'); + insert into takes values('52019', '158', '2', 'Spring', 2008, 'A+'); + insert into takes values('53490', '603', '1', 'Fall', 2003, 'C '); + insert into takes values('83953', '735', '2', 'Spring', 2010, 'A+'); + insert into takes values('30845', '400', '2', 'Fall', 2003, 'B '); + insert into takes values('78911', '949', '1', 'Fall', 2007, 'B '); + insert into takes values('55000', '362', '1', 'Fall', 2005, 'A-'); + insert into takes values('16075', '169', '2', 'Fall', 2002, 'C+'); + insert into takes values('85981', '802', '1', 'Spring', 2003, 'A '); + insert into takes values('51817', '493', '1', 'Spring', 2010, 'C+'); + insert into takes values('47265', '949', '1', 'Fall', 2007, 'A '); + insert into takes values('90663', '760', '1', 'Spring', 2004, 'A '); + insert into takes values('10834', '338', '2', 'Spring', 2006, 'B-'); + insert into takes values('32056', '603', '1', 'Fall', 2003, 'A-'); + insert into takes values('89196', '927', '1', 'Fall', 2002, 'A '); + insert into takes values('12979', '852', '1', 'Spring', 2008, 'A+'); + insert into takes values('69230', '747', '1', 'Spring', 2004, 'C-'); + insert into takes values('45680', '137', '1', 'Spring', 2002, 'B+'); + insert into takes values('23794', '366', '1', 'Fall', 2005, 'A-'); + insert into takes values('57242', '319', '1', 'Spring', 2003, 'C-'); + insert into takes values('8957', '345', '1', 'Spring', 2008, 'B+'); + insert into takes values('51923', '875', '1', 'Spring', 2005, 'B '); + insert into takes values('95225', '735', '2', 'Spring', 2010, 'B '); + insert into takes values('14032', '760', '1', 'Spring', 2004, 'B-'); + insert into takes values('68516', '962', '1', 'Spring', 2008, 'A-'); + insert into takes values('59908', '960', '2', 'Fall', 2006, 'B+'); + insert into takes values('71529', '599', '1', 'Spring', 2003, 'B '); + insert into takes values('28299', '561', '1', 'Fall', 2006, 'A+'); + insert into takes values('53485', '304', '1', 'Fall', 2009, 'A-'); + insert into takes values('99949', '486', '1', 'Fall', 2009, 'A+'); + insert into takes values('63645', '795', '1', 'Spring', 2004, 'A '); + insert into takes values('87015', '893', '1', 'Fall', 2007, 'C-'); + insert into takes values('94371', '604', '1', 'Spring', 2009, 'C+'); + insert into takes values('95574', '795', '1', 'Spring', 2004, 'A-'); + insert into takes values('11510', '962', '1', 'Spring', 2008, 'B+'); + insert into takes values('95840', '158', '2', 'Spring', 2008, 'A-'); + insert into takes values('51238', '760', '1', 'Spring', 2004, 'A-'); + insert into takes values('28252', '527', '1', 'Fall', 2004, 'A+'); + insert into takes values('83686', '237', '1', 'Spring', 2008, 'B+'); + insert into takes values('33759', '496', '1', 'Fall', 2001, 'C-'); + insert into takes values('29091', '443', '1', 'Spring', 2010, 'A+'); + insert into takes values('81245', '200', '1', 'Spring', 2007, 'C+'); + insert into takes values('17377', '158', '1', 'Fall', 2008, 'B '); + insert into takes values('87651', '603', '1', 'Fall', 2003, 'C+'); + insert into takes values('13023', '694', '1', 'Fall', 2002, 'B+'); + insert into takes values('76169', '319', '1', 'Spring', 2003, 'B-'); + insert into takes values('48471', '408', '1', 'Spring', 2007, 'A-'); + insert into takes values('80821', '704', '1', 'Spring', 2008, 'C '); + insert into takes values('83002', '843', '1', 'Fall', 2010, 'C-'); + insert into takes values('89414', '960', '1', 'Fall', 2009, 'B '); + insert into takes values('29399', '445', '1', 'Spring', 2001, 'B+'); + insert into takes values('77664', '349', '1', 'Spring', 2008, 'C-'); + insert into takes values('17924', '694', '1', 'Fall', 2002, 'B '); + insert into takes values('82974', '457', '1', 'Spring', 2001, 'B '); + insert into takes values('47001', '349', '1', 'Spring', 2008, 'A+'); + insert into takes values('68242', '338', '2', 'Spring', 2006, 'C+'); + insert into takes values('97679', '400', '1', 'Spring', 2007, 'B+'); + insert into takes values('21102', '791', '1', 'Spring', 2006, 'C+'); + insert into takes values('34404', '962', '1', 'Spring', 2008, 'C-'); + insert into takes values('96003', '795', '1', 'Spring', 2004, 'A '); + insert into takes values('38696', '612', '1', 'Fall', 2007, 'C-'); + insert into takes values('24374', '581', '1', 'Spring', 2005, 'B-'); + insert into takes values('31761', '599', '1', 'Spring', 2003, 'B+'); + insert into takes values('65714', '319', '1', 'Spring', 2003, 'C-'); + insert into takes values('21766', '949', '1', 'Fall', 2007, 'B+'); + insert into takes values('66293', '376', '1', 'Fall', 2006, 'B '); + insert into takes values('11201', '702', '1', 'Spring', 2001, 'C+'); + insert into takes values('67407', '974', '1', 'Fall', 2003, 'C+'); + insert into takes values('65715', '158', '2', 'Spring', 2008, 'A-'); + insert into takes values('55329', '843', '1', 'Fall', 2010, 'B '); + insert into takes values('64945', '959', '1', 'Fall', 2006, 'B '); + insert into takes values('69521', '843', '1', 'Fall', 2010, 'C '); + insert into takes values('30943', '237', '2', 'Fall', 2009, 'B '); + insert into takes values('48678', '692', '1', 'Spring', 2010, 'C '); + insert into takes values('27044', '237', '2', 'Fall', 2009, 'C-'); + insert into takes values('5298', '461', '1', 'Fall', 2002, 'A+'); + insert into takes values('13753', '400', '1', 'Spring', 2007, 'A '); + insert into takes values('24442', '972', '1', 'Spring', 2009, 'A+'); + insert into takes values('29705', '496', '1', 'Fall', 2001, 'A+'); + insert into takes values('40992', '237', '2', 'Fall', 2009, 'C '); + insert into takes values('66106', '852', '1', 'Spring', 2008, 'C '); + insert into takes values('34236', '200', '1', 'Spring', 2007, 'B+'); + insert into takes values('16528', '692', '1', 'Spring', 2010, 'A '); + insert into takes values('51008', '581', '1', 'Spring', 2005, 'A '); + insert into takes values('51975', '735', '1', 'Spring', 2003, 'C+'); + insert into takes values('79589', '927', '1', 'Fall', 2002, 'A '); + insert into takes values('24784', '612', '1', 'Fall', 2007, 'A+'); + insert into takes values('63538', '421', '1', 'Fall', 2004, 'C+'); + insert into takes values('47126', '561', '1', 'Fall', 2006, 'C+'); + insert into takes values('62520', '200', '1', 'Spring', 2007, 'C-'); + insert into takes values('93039', '867', '2', 'Fall', 2010, 'C+'); + insert into takes values('7656', '949', '1', 'Fall', 2007, 'C+'); + insert into takes values('27017', '401', '1', 'Fall', 2003, 'B '); + insert into takes values('46928', '445', '1', 'Spring', 2001, 'A '); + insert into takes values('73807', '426', '1', 'Spring', 2006, 'B-'); + insert into takes values('82126', '338', '2', 'Spring', 2006, 'A+'); + insert into takes values('29514', '401', '1', 'Fall', 2003, 'B-'); + insert into takes values('65676', '443', '1', 'Spring', 2010, 'A '); + insert into takes values('77415', '527', '1', 'Fall', 2004, 'B '); + insert into takes values('108', '345', '1', 'Spring', 2008, 'A-'); + insert into takes values('71543', '169', '1', 'Spring', 2007, 'C-'); + insert into takes values('16347', '239', '1', 'Fall', 2006, 'B+'); + insert into takes values('73268', '105', '2', 'Fall', 2002, 'C '); + insert into takes values('45002', '949', '1', 'Fall', 2007, 'B '); + insert into takes values('22260', '426', '1', 'Spring', 2006, 'A-'); + insert into takes values('93814', '443', '1', 'Spring', 2010, 'A '); + insert into takes values('78481', '629', '1', 'Spring', 2003, 'B '); + insert into takes values('22260', '476', '1', 'Fall', 2010, 'B-'); + insert into takes values('73072', '362', '3', 'Spring', 2008, 'C '); + insert into takes values('10527', '631', '1', 'Spring', 2007, 'C-'); + insert into takes values('67810', '443', '1', 'Spring', 2010, 'C '); + insert into takes values('13408', '612', '1', 'Fall', 2007, 'C+'); + insert into takes values('37818', '802', '1', 'Spring', 2003, 'A+'); + insert into takes values('94814', '692', '1', 'Spring', 2010, 'C '); + insert into takes values('48611', '468', '1', 'Fall', 2005, 'A+'); + insert into takes values('61364', '443', '2', 'Spring', 2002, 'A-'); + insert into takes values('48778', '476', '1', 'Fall', 2010, 'C+'); + insert into takes values('30650', '867', '1', 'Fall', 2006, 'C-'); + insert into takes values('80610', '468', '1', 'Fall', 2005, 'B '); + insert into takes values('92442', '237', '1', 'Spring', 2008, 'C+'); + insert into takes values('63489', '169', '1', 'Spring', 2007, 'B+'); + insert into takes values('67018', '192', '1', 'Fall', 2002, 'A-'); + insert into takes values('83039', '489', '1', 'Fall', 2007, 'C-'); + insert into takes values('70389', '843', '1', 'Fall', 2010, 'C+'); + insert into takes values('83953', '468', '1', 'Fall', 2005, 'B '); + insert into takes values('69222', '408', '2', 'Spring', 2003, 'C+'); + insert into takes values('96153', '704', '1', 'Spring', 2008, 'B-'); + insert into takes values('83002', '793', '1', 'Spring', 2002, 'A+'); + insert into takes values('5250', '747', '1', 'Spring', 2004, 'A+'); + insert into takes values('41345', '603', '1', 'Fall', 2003, 'A+'); + insert into takes values('58594', '959', '1', 'Fall', 2006, 'B+'); + insert into takes values('88308', '704', '1', 'Spring', 2008, 'C+'); + insert into takes values('58300', '571', '1', 'Spring', 2004, 'B '); + insert into takes values('70359', '949', '1', 'Fall', 2007, 'C+'); + insert into takes values('34957', '366', '1', 'Fall', 2005, 'C+'); + insert into takes values('57787', '200', '2', 'Fall', 2002, 'C+'); + insert into takes values('29091', '893', '1', 'Fall', 2007, 'B '); + insert into takes values('288', '400', '1', 'Spring', 2007, 'A-'); + insert into takes values('96246', '362', '2', 'Fall', 2006, 'B '); + insert into takes values('91343', '991', '1', 'Spring', 2008, 'B '); + insert into takes values('99553', '362', '3', 'Spring', 2008, 'A+'); + insert into takes values('8912', '158', '2', 'Spring', 2008, 'B+'); + insert into takes values('30957', '200', '1', 'Spring', 2007, 'C-'); + insert into takes values('50598', '345', '1', 'Spring', 2008, 'A-'); + insert into takes values('34404', '496', '1', 'Fall', 2001, 'C+'); + insert into takes values('20180', '105', '1', 'Fall', 2009, 'C '); + insert into takes values('13753', '105', '1', 'Fall', 2009, 'A '); + insert into takes values('28352', '169', '1', 'Spring', 2007, 'C '); + insert into takes values('75252', '486', '1', 'Fall', 2009, 'B-'); + insert into takes values('6712', '793', '1', 'Spring', 2002, 'C+'); + insert into takes values('39204', '696', '1', 'Spring', 2002, 'C '); + insert into takes values('27687', '200', '2', 'Fall', 2002, 'C-'); + insert into takes values('56232', '808', '1', 'Fall', 2003, 'C-'); + insert into takes values('1000', '696', '1', 'Spring', 2002, 'B '); + insert into takes values('49611', '362', '3', 'Spring', 2008, 'B-'); + insert into takes values('77361', '692', '1', 'Spring', 2010, 'A-'); + insert into takes values('34195', '545', '1', 'Fall', 2001, 'B-'); + insert into takes values('35462', '747', '1', 'Spring', 2004, 'B+'); + insert into takes values('55859', '408', '2', 'Spring', 2003, 'A '); + insert into takes values('64401', '893', '1', 'Fall', 2007, 'C '); + insert into takes values('55531', '959', '1', 'Fall', 2006, 'B+'); + insert into takes values('90372', '313', '1', 'Fall', 2010, 'C+'); + insert into takes values('25611', '313', '1', 'Fall', 2010, 'B '); + insert into takes values('58085', '338', '2', 'Spring', 2006, 'A+'); + insert into takes values('56212', '867', '1', 'Fall', 2006, 'C+'); + insert into takes values('29031', '313', '1', 'Fall', 2010, 'A-'); + insert into takes values('13757', '747', '1', 'Spring', 2004, 'B+'); + insert into takes values('66753', '274', '1', 'Fall', 2002, 'B+'); + insert into takes values('35588', '443', '2', 'Spring', 2002, 'C+'); + insert into takes values('6195', '242', '1', 'Fall', 2009, 'B+'); + insert into takes values('96895', '960', '1', 'Fall', 2009, 'A '); + insert into takes values('78314', '468', '2', 'Fall', 2007, 'B '); + insert into takes values('31364', '352', '1', 'Spring', 2006, 'C '); + insert into takes values('71389', '362', '1', 'Fall', 2005, 'A-'); + insert into takes values('7287', '237', '2', 'Fall', 2009, 'A+'); + insert into takes values('37818', '694', '1', 'Fall', 2002, 'A-'); + insert into takes values('51084', '793', '1', 'Spring', 2002, 'A '); + insert into takes values('62152', '696', '1', 'Spring', 2002, 'B+'); + insert into takes values('32490', '486', '1', 'Fall', 2009, 'C-'); + insert into takes values('1968', '376', '1', 'Fall', 2006, 'C-'); + insert into takes values('47001', '270', '1', 'Spring', 2010, 'C+'); + insert into takes values('73206', '274', '1', 'Fall', 2002, 'A '); + insert into takes values('37946', '692', '1', 'Spring', 2010, 'A+'); + insert into takes values('43658', '748', '1', 'Fall', 2003, 'B-'); + insert into takes values('46155', '679', '1', 'Spring', 2010, 'A '); + insert into takes values('84704', '443', '1', 'Spring', 2010, 'B '); + insert into takes values('70061', '476', '1', 'Fall', 2010, 'B+'); + insert into takes values('58081', '545', '1', 'Fall', 2001, 'A-'); + insert into takes values('33651', '704', '1', 'Spring', 2008, 'A-'); + insert into takes values('49618', '362', '2', 'Fall', 2006, 'B-'); + insert into takes values('18941', '694', '1', 'Fall', 2002, 'C '); + insert into takes values('10527', '735', '2', 'Spring', 2010, 'A '); + insert into takes values('13511', '735', '2', 'Spring', 2010, 'B '); + insert into takes values('75273', '793', '1', 'Spring', 2002, 'A '); + insert into takes values('2286', '599', '1', 'Spring', 2003, 'B-'); + insert into takes values('79697', '401', '1', 'Fall', 2003, 'B '); + insert into takes values('20540', '258', '1', 'Fall', 2007, 'C+'); + insert into takes values('52872', '692', '1', 'Spring', 2010, 'C+'); + insert into takes values('77000', '527', '1', 'Fall', 2004, 'B-'); + insert into takes values('71631', '867', '1', 'Fall', 2006, 'C-'); + insert into takes values('13749', '702', '1', 'Spring', 2001, 'B+'); + insert into takes values('53089', '702', '1', 'Spring', 2001, 'A+'); + insert into takes values('8426', '338', '1', 'Spring', 2007, 'C+'); + insert into takes values('20180', '559', '1', 'Fall', 2002, 'B-'); + insert into takes values('59553', '426', '1', 'Spring', 2006, 'C+'); + insert into takes values('86327', '604', '1', 'Spring', 2009, 'C '); + insert into takes values('55170', '400', '1', 'Spring', 2007, 'B+'); + insert into takes values('88085', '704', '1', 'Spring', 2008, 'A '); + insert into takes values('87246', '991', '1', 'Spring', 2008, 'A-'); + insert into takes values('30474', '486', '1', 'Fall', 2009, 'A-'); + insert into takes values('34018', '867', '2', 'Fall', 2010, 'B+'); + insert into takes values('25725', '663', '1', 'Spring', 2005, 'C '); + insert into takes values('9659', '559', '1', 'Fall', 2002, 'C+'); + insert into takes values('79210', '443', '2', 'Spring', 2002, 'A+'); + insert into takes values('77003', '352', '1', 'Spring', 2006, 'C '); + insert into takes values('84792', '274', '1', 'Fall', 2002, 'B+'); + insert into takes values('34569', '679', '1', 'Spring', 2010, 'A+'); + insert into takes values('1110', '735', '1', 'Spring', 2003, 'A-'); + insert into takes values('85308', '158', '2', 'Spring', 2008, 'A+'); + insert into takes values('96085', '496', '1', 'Fall', 2001, 'A '); + insert into takes values('12615', '852', '1', 'Spring', 2008, 'C-'); + insert into takes values('71389', '802', '1', 'Spring', 2003, 'C+'); + insert into takes values('30182', '401', '1', 'Fall', 2003, 'C-'); + insert into takes values('15538', '169', '2', 'Fall', 2002, 'C-'); + insert into takes values('83136', '875', '1', 'Spring', 2005, 'B '); + insert into takes values('50664', '927', '1', 'Fall', 2002, 'B '); + insert into takes values('94836', '421', '1', 'Fall', 2004, 'B-'); + insert into takes values('39114', '319', '1', 'Spring', 2003, 'B+'); + insert into takes values('32483', '304', '1', 'Fall', 2009, 'A-'); + insert into takes values('84515', '629', '1', 'Spring', 2003, 'B-'); + insert into takes values('53547', '376', '1', 'Fall', 2006, 'B+'); + insert into takes values('9084', '599', '1', 'Spring', 2003, 'A '); + insert into takes values('3576', '694', '1', 'Fall', 2002, 'A '); + insert into takes values('55354', '137', '1', 'Spring', 2002, 'C+'); + insert into takes values('55009', '991', '1', 'Spring', 2008, 'C+'); + insert into takes values('28133', '604', '1', 'Spring', 2009, 'C '); + insert into takes values('94801', '581', '1', 'Spring', 2005, 'B-'); + insert into takes values('85451', '599', '1', 'Spring', 2003, 'C '); + insert into takes values('28409', '158', '1', 'Fall', 2008, 'B+'); + insert into takes values('36265', '169', '1', 'Spring', 2007, 'A '); + insert into takes values('22620', '581', '1', 'Spring', 2005, 'C+'); + insert into takes values('9440', '482', '1', 'Fall', 2005, 'A '); + insert into takes values('44998', '362', '3', 'Spring', 2008, 'A+'); + insert into takes values('45770', '962', '1', 'Spring', 2008, 'C '); + insert into takes values('43211', '445', '1', 'Spring', 2001, 'A '); + insert into takes values('53225', '843', '1', 'Fall', 2010, 'C+'); + insert into takes values('4438', '349', '1', 'Spring', 2008, 'C-'); + insert into takes values('16515', '974', '1', 'Fall', 2003, 'C '); + insert into takes values('95850', '461', '1', 'Fall', 2002, 'C '); + insert into takes values('25780', '748', '1', 'Fall', 2003, 'A '); + insert into takes values('15538', '338', '2', 'Spring', 2006, 'C '); + insert into takes values('37856', '735', '2', 'Spring', 2010, 'B-'); + insert into takes values('12069', '443', '2', 'Spring', 2002, 'C+'); + insert into takes values('1826', '304', '1', 'Fall', 2009, 'A '); + insert into takes values('53165', '927', '1', 'Fall', 2002, 'A-'); + insert into takes values('65396', '808', '1', 'Fall', 2003, 'B '); + insert into takes values('7490', '626', '1', 'Fall', 2006, 'B '); + insert into takes values('24796', '793', '1', 'Spring', 2002, 'C '); + insert into takes values('1812', '105', '1', 'Fall', 2009, 'A+'); + insert into takes values('92776', '802', '1', 'Spring', 2003, 'B-'); + insert into takes values('94569', '852', '1', 'Spring', 2008, 'C '); + insert into takes values('21246', '704', '1', 'Spring', 2008, 'C-'); + insert into takes values('67793', '192', '1', 'Fall', 2002, 'B-'); + insert into takes values('26147', '974', '1', 'Fall', 2003, 'B-'); + insert into takes values('56080', '345', '1', 'Spring', 2008, 'B-'); + insert into takes values('95201', '559', '1', 'Fall', 2002, 'A+'); + insert into takes values('77003', '696', '1', 'Spring', 2002, 'C '); + insert into takes values('14668', '949', '1', 'Fall', 2007, 'C '); + insert into takes values('74974', '808', '1', 'Fall', 2003, 'B+'); + insert into takes values('18752', '461', '1', 'Fall', 2002, 'C '); + insert into takes values('72165', '748', '1', 'Fall', 2003, 'C '); + insert into takes values('32119', '735', '1', 'Spring', 2003, 'C '); + insert into takes values('14214', '270', '1', 'Spring', 2010, 'A+'); + insert into takes values('84865', '735', '1', 'Spring', 2003, 'B+'); + insert into takes values('4508', '974', '1', 'Fall', 2003, 'C-'); + insert into takes values('41211', '808', '1', 'Fall', 2003, 'C '); + insert into takes values('94569', '445', '1', 'Spring', 2001, 'A+'); + insert into takes values('8843', '304', '1', 'Fall', 2009, 'A-'); + insert into takes values('18859', '493', '1', 'Spring', 2010, 'C-'); + insert into takes values('29514', '974', '1', 'Fall', 2003, 'B '); + insert into takes values('21126', '561', '1', 'Fall', 2006, 'A+'); + insert into takes values('71389', '694', '1', 'Fall', 2002, 'A-'); + insert into takes values('51768', '795', '1', 'Spring', 2004, 'B-'); + insert into takes values('80742', '376', '1', 'Fall', 2006, 'A-'); + insert into takes values('75878', '486', '1', 'Fall', 2009, 'A+'); + insert into takes values('40303', '571', '1', 'Spring', 2004, 'B-'); + insert into takes values('15980', '991', '1', 'Spring', 2008, 'C+'); + insert into takes values('63538', '461', '1', 'Fall', 2002, 'A '); + insert into takes values('95626', '169', '1', 'Spring', 2007, 'B-'); + insert into takes values('30017', '545', '1', 'Fall', 2001, 'B '); + insert into takes values('93125', '927', '1', 'Fall', 2002, 'A-'); + insert into takes values('69581', '867', '1', 'Fall', 2006, 'B-'); + insert into takes values('40059', '445', '1', 'Spring', 2001, 'C '); + insert into takes values('73807', '696', '1', 'Spring', 2002, 'C+'); + insert into takes values('17424', '482', '1', 'Fall', 2005, 'C-'); + insert into takes values('85849', '376', '1', 'Fall', 2006, 'C+'); + insert into takes values('71631', '169', '2', 'Fall', 2002, 'A-'); + insert into takes values('76911', '795', '1', 'Spring', 2004, 'A '); + insert into takes values('46956', '408', '2', 'Spring', 2003, 'C '); + insert into takes values('34158', '960', '2', 'Fall', 2006, 'C-'); + insert into takes values('93043', '581', '1', 'Spring', 2005, 'C-'); + insert into takes values('35721', '489', '1', 'Fall', 2007, 'A-'); + insert into takes values('31993', '468', '1', 'Fall', 2005, 'A-'); + insert into takes values('898', '962', '1', 'Spring', 2008, 'A '); + insert into takes values('94894', '415', '1', 'Fall', 2010, 'C '); + insert into takes values('50206', '949', '1', 'Fall', 2007, 'C-'); + insert into takes values('19824', '852', '1', 'Spring', 2008, 'B+'); + insert into takes values('14639', '852', '1', 'Spring', 2008, 'B+'); + insert into takes values('71904', '105', '1', 'Fall', 2009, 'B-'); + insert into takes values('67660', '137', '1', 'Spring', 2002, 'C '); + insert into takes values('39881', '496', '1', 'Fall', 2001, 'B-'); + insert into takes values('64121', '561', '1', 'Fall', 2006, 'A+'); + insert into takes values('65056', '991', '1', 'Spring', 2008, 'C+'); + insert into takes values('15083', '581', '1', 'Spring', 2005, 'C '); + insert into takes values('3005', '545', '1', 'Fall', 2001, 'C-'); + insert into takes values('5943', '679', '1', 'Spring', 2010, 'A '); + insert into takes values('95840', '169', '1', 'Spring', 2007, 'C+'); + insert into takes values('65038', '747', '1', 'Spring', 2004, 'B-'); + insert into takes values('54728', '626', '1', 'Fall', 2006, 'B '); + insert into takes values('34055', '603', '1', 'Fall', 2003, 'B '); + insert into takes values('20445', '852', '1', 'Spring', 2008, 'C+'); + insert into takes values('18554', '864', '1', 'Spring', 2006, 'C '); + insert into takes values('64297', '696', '1', 'Spring', 2002, 'C-'); + insert into takes values('41818', '461', '1', 'Fall', 2002, 'C+'); + insert into takes values('20489', '867', '2', 'Fall', 2010, 'B '); + insert into takes values('58413', '962', '1', 'Spring', 2008, 'B+'); + insert into takes values('11453', '747', '1', 'Spring', 2004, 'C '); + insert into takes values('87222', '852', '1', 'Spring', 2008, 'A+'); + insert into takes values('99399', '319', '1', 'Spring', 2003, 'B+'); + insert into takes values('72768', '571', '1', 'Spring', 2004, 'A '); + insert into takes values('7043', '401', '1', 'Fall', 2003, 'B+'); + insert into takes values('4182', '626', '1', 'Fall', 2006, 'A+'); + insert into takes values('82688', '974', '1', 'Fall', 2003, 'B '); + insert into takes values('67051', '169', '2', 'Fall', 2002, 'C-'); + insert into takes values('22912', '571', '1', 'Spring', 2004, 'B '); + insert into takes values('79469', '376', '1', 'Fall', 2006, 'B '); + insert into takes values('49611', '702', '1', 'Spring', 2001, 'C-'); + insert into takes values('11055', '867', '1', 'Fall', 2006, 'C '); + insert into takes values('29140', '864', '1', 'Spring', 2006, 'B '); + insert into takes values('81207', '875', '1', 'Spring', 2005, 'B '); + insert into takes values('95225', '200', '1', 'Spring', 2007, 'B-'); + insert into takes values('4345', '735', '1', 'Spring', 2003, 'A '); + insert into takes values('36303', '852', '1', 'Spring', 2008, 'C-'); + insert into takes values('72521', '200', '1', 'Spring', 2007, 'C-'); + insert into takes values('56058', '599', '1', 'Spring', 2003, 'A-'); + insert into takes values('14554', '864', '1', 'Spring', 2006, 'C '); + insert into takes values('89312', '468', '2', 'Fall', 2007, 'C-'); + insert into takes values('57083', '496', '1', 'Fall', 2001, 'C-'); + insert into takes values('35687', '408', '1', 'Spring', 2007, 'A-'); + insert into takes values('435', '991', '1', 'Spring', 2008, 'A+'); + insert into takes values('14065', '400', '2', 'Fall', 2003, 'A-'); + insert into takes values('37586', '338', '2', 'Spring', 2006, 'A+'); + insert into takes values('88418', '376', '1', 'Fall', 2006, 'C '); + insert into takes values('12214', '696', '1', 'Spring', 2002, 'C+'); + insert into takes values('31560', '493', '1', 'Spring', 2010, 'C+'); + insert into takes values('14182', '313', '1', 'Fall', 2010, 'A '); + insert into takes values('1726', '158', '2', 'Spring', 2008, 'A '); + insert into takes values('59530', '991', '1', 'Spring', 2008, 'C-'); + insert into takes values('61402', '200', '2', 'Fall', 2002, 'A '); + insert into takes values('22467', '352', '1', 'Spring', 2006, 'B '); + insert into takes values('52866', '270', '1', 'Spring', 2010, 'A-'); + insert into takes values('17192', '626', '1', 'Fall', 2006, 'B+'); + insert into takes values('90609', '443', '1', 'Spring', 2010, 'A-'); + insert into takes values('92867', '345', '1', 'Spring', 2008, 'A+'); + insert into takes values('35220', '631', '1', 'Spring', 2007, 'B '); + insert into takes values('79329', '748', '1', 'Fall', 2003, 'A+'); + insert into takes values('52019', '974', '1', 'Fall', 2003, 'C-'); + insert into takes values('92867', '571', '1', 'Spring', 2004, 'A '); + insert into takes values('54153', '949', '1', 'Fall', 2007, 'B-'); + insert into takes values('42843', '949', '1', 'Fall', 2007, 'B-'); + insert into takes values('18234', '545', '1', 'Fall', 2001, 'B+'); + insert into takes values('75040', '545', '1', 'Fall', 2001, 'C+'); + insert into takes values('86833', '974', '1', 'Fall', 2003, 'A+'); + insert into takes values('16993', '791', '1', 'Spring', 2006, 'A+'); + insert into takes values('35175', '476', '1', 'Fall', 2010, 'C '); + insert into takes values('17607', '461', '1', 'Fall', 2002, 'B-'); + insert into takes values('5414', '747', '1', 'Spring', 2004, 'B+'); + insert into takes values('72006', '313', '1', 'Fall', 2010, 'B+'); + insert into takes values('83747', '345', '1', 'Spring', 2008, 'B+'); + insert into takes values('5920', '468', '1', 'Fall', 2005, 'C '); + insert into takes values('23457', '692', '1', 'Spring', 2010, 'B+'); + insert into takes values('50039', '482', '1', 'Fall', 2005, 'C-'); + insert into takes values('74070', '376', '1', 'Fall', 2006, 'B+'); + insert into takes values('41894', '192', '1', 'Fall', 2002, 'A '); + insert into takes values('41599', '486', '1', 'Fall', 2009, 'C+'); + insert into takes values('94990', '852', '1', 'Spring', 2008, 'C-'); + insert into takes values('89059', '158', '2', 'Spring', 2008, 'C+'); + insert into takes values('16035', '663', '1', 'Spring', 2005, 'A-'); + insert into takes values('47630', '960', '1', 'Fall', 2009, 'A+'); + insert into takes values('39927', '415', '1', 'Fall', 2010, 'C+'); + insert into takes values('19917', '445', '1', 'Spring', 2001, 'B-'); + insert into takes values('73606', '527', '1', 'Fall', 2004, 'A+'); + insert into takes values('68242', '960', '2', 'Fall', 2006, 'A '); + insert into takes values('11126', '415', '1', 'Fall', 2010, 'B '); + insert into takes values('19203', '663', '1', 'Spring', 2005, 'A+'); + insert into takes values('69132', '559', '1', 'Fall', 2002, 'B-'); + insert into takes values('67018', '735', '2', 'Spring', 2010, 'A-'); + insert into takes values('52707', '972', '1', 'Spring', 2009, 'A '); + insert into takes values('44985', '864', '1', 'Spring', 2006, 'B+'); + insert into takes values('67542', '200', '2', 'Fall', 2002, 'C-'); + insert into takes values('98140', '962', '1', 'Spring', 2008, 'A+'); + insert into takes values('39241', '696', '1', 'Spring', 2002, 'A-'); + insert into takes values('64082', '237', '2', 'Fall', 2009, 'B-'); + insert into takes values('64642', '313', '1', 'Fall', 2010, 'B '); + insert into takes values('67657', '679', '1', 'Spring', 2010, 'A+'); + insert into takes values('53172', '612', '1', 'Fall', 2007, 'B-'); + insert into takes values('27430', '960', '2', 'Fall', 2006, 'C '); + insert into takes values('53728', '158', '1', 'Fall', 2008, 'A-'); + insert into takes values('96134', '702', '1', 'Spring', 2001, 'C '); + insert into takes values('17924', '468', '1', 'Fall', 2005, 'C-'); + insert into takes values('48861', '867', '1', 'Fall', 2006, 'B '); + insert into takes values('90009', '468', '2', 'Fall', 2007, 'A+'); + insert into takes values('65438', '629', '1', 'Spring', 2003, 'C+'); + insert into takes values('69628', '603', '1', 'Fall', 2003, 'B-'); + insert into takes values('85366', '747', '1', 'Spring', 2004, 'C '); + insert into takes values('89246', '599', '1', 'Spring', 2003, 'A+'); + insert into takes values('58889', '468', '2', 'Fall', 2007, 'B-'); + insert into takes values('29803', '991', '1', 'Spring', 2008, 'C+'); + insert into takes values('55531', '482', '1', 'Fall', 2005, 'C+'); + insert into takes values('73602', '802', '1', 'Spring', 2003, 'B+'); + insert into takes values('41596', '559', '1', 'Fall', 2002, 'C '); + insert into takes values('8819', '137', '1', 'Spring', 2002, 'C-'); + insert into takes values('14094', '748', '1', 'Fall', 2003, 'B+'); + insert into takes values('69222', '864', '1', 'Spring', 2006, 'A-'); + insert into takes values('67657', '338', '2', 'Spring', 2006, 'C-'); + insert into takes values('48660', '864', '1', 'Spring', 2006, 'C '); + insert into takes values('62705', '408', '1', 'Spring', 2007, 'A-'); + insert into takes values('47627', '493', '1', 'Spring', 2010, 'B+'); + insert into takes values('31035', '735', '1', 'Spring', 2003, 'A+'); + insert into takes values('14284', '571', '1', 'Spring', 2004, 'A+'); + insert into takes values('8819', '105', '1', 'Fall', 2009, 'C-'); + insert into takes values('16885', '972', '1', 'Spring', 2009, 'C-'); + insert into takes values('30021', '867', '1', 'Fall', 2006, 'C '); + insert into takes values('98423', '629', '1', 'Spring', 2003, 'C-'); + insert into takes values('8912', '352', '1', 'Spring', 2006, 'A '); + insert into takes values('10736', '864', '1', 'Spring', 2006, 'A+'); + insert into takes values('65681', '349', '1', 'Spring', 2008, 'B+'); + insert into takes values('39901', '421', '1', 'Fall', 2004, 'A '); + insert into takes values('8457', '629', '1', 'Spring', 2003, 'A-'); + insert into takes values('73072', '795', '1', 'Spring', 2004, 'A '); + insert into takes values('66212', '376', '1', 'Fall', 2006, 'C+'); + insert into takes values('86001', '192', '1', 'Fall', 2002, 'C-'); + insert into takes values('63243', '893', '1', 'Fall', 2007, 'B+'); + insert into takes values('80248', '362', '1', 'Fall', 2005, 'C+'); + insert into takes values('75423', '313', '1', 'Fall', 2010, 'B '); + insert into takes values('52856', '304', '1', 'Fall', 2009, 'B '); + insert into takes values('11578', '476', '1', 'Fall', 2010, 'A '); + insert into takes values('87785', '962', '1', 'Spring', 2008, 'A-'); + insert into takes values('40481', '949', '1', 'Fall', 2007, 'A-'); + insert into takes values('35357', '366', '1', 'Fall', 2005, 'C '); + insert into takes values('36685', '376', '1', 'Fall', 2006, 'B '); + insert into takes values('30252', '489', '1', 'Fall', 2007, 'A+'); + insert into takes values('52876', '482', '1', 'Fall', 2005, 'A+'); + insert into takes values('72521', '960', '2', 'Fall', 2006, 'B+'); + insert into takes values('7854', '959', '1', 'Fall', 2006, 'C '); + insert into takes values('72055', '631', '1', 'Spring', 2007, 'C-'); + insert into takes values('56598', '366', '1', 'Fall', 2005, 'C+'); + insert into takes values('6712', '679', '1', 'Spring', 2010, 'A+'); + insert into takes values('68150', '338', '1', 'Spring', 2007, 'A-'); + insert into takes values('46762', '338', '1', 'Spring', 2007, 'C '); + insert into takes values('45359', '960', '2', 'Fall', 2006, 'B '); + insert into takes values('6367', '468', '1', 'Fall', 2005, 'C+'); + insert into takes values('97042', '486', '1', 'Fall', 2009, 'A-'); + insert into takes values('90234', '626', '1', 'Fall', 2006, 'A-'); + insert into takes values('40677', '270', '1', 'Spring', 2010, 'B '); + insert into takes values('41988', '400', '2', 'Fall', 2003, 'C-'); + insert into takes values('47677', '927', '1', 'Fall', 2002, 'A-'); + insert into takes values('29002', '962', '1', 'Spring', 2008, 'B '); + insert into takes values('40937', '169', '2', 'Fall', 2002, 'A '); + insert into takes values('18941', '445', '1', 'Spring', 2001, 'A '); + insert into takes values('44038', '631', '1', 'Spring', 2007, 'A '); + insert into takes values('61364', '401', '1', 'Fall', 2003, 'C '); + insert into takes values('390', '702', '1', 'Spring', 2001, 'C+'); + insert into takes values('79911', '496', '1', 'Fall', 2001, 'B-'); + insert into takes values('64259', '591', '1', 'Spring', 2005, 'A+'); + insert into takes values('44836', '362', '2', 'Fall', 2006, 'A+'); + insert into takes values('23373', '408', '2', 'Spring', 2003, 'A-'); + insert into takes values('29260', '561', '1', 'Fall', 2006, 'C '); + insert into takes values('33882', '760', '1', 'Spring', 2004, 'B-'); + insert into takes values('81245', '362', '2', 'Fall', 2006, 'B-'); + insert into takes values('5843', '158', '1', 'Fall', 2008, 'B '); + insert into takes values('83836', '349', '1', 'Spring', 2008, 'C+'); + insert into takes values('45300', '352', '1', 'Spring', 2006, 'C+'); + insert into takes values('39241', '242', '1', 'Fall', 2009, 'A-'); + insert into takes values('52203', '631', '1', 'Spring', 2007, 'C '); + insert into takes values('80420', '443', '2', 'Spring', 2002, 'C+'); + insert into takes values('78858', '242', '1', 'Fall', 2009, 'C '); + insert into takes values('42114', '352', '1', 'Spring', 2006, 'B+'); + insert into takes values('84808', '581', '1', 'Spring', 2005, 'A-'); + insert into takes values('78922', '642', '1', 'Fall', 2004, 'A+'); + insert into takes values('44584', '626', '1', 'Fall', 2006, 'A+'); + insert into takes values('99754', '604', '1', 'Spring', 2009, 'C-'); + insert into takes values('10814', '843', '1', 'Fall', 2010, 'B '); + insert into takes values('65241', '748', '1', 'Fall', 2003, 'A-'); + insert into takes values('59046', '612', '1', 'Fall', 2007, 'B-'); + insert into takes values('71543', '445', '1', 'Spring', 2001, 'C-'); + insert into takes values('8426', '362', '3', 'Spring', 2008, 'A-'); + insert into takes values('69752', '443', '1', 'Spring', 2010, 'C-'); + insert into takes values('66293', '192', '1', 'Fall', 2002, 'B+'); + insert into takes values('10917', '559', '1', 'Fall', 2002, 'C+'); + insert into takes values('84654', '461', '1', 'Fall', 2002, 'B-'); + insert into takes values('92693', '603', '1', 'Fall', 2003, 'B+'); + insert into takes values('13757', '200', '1', 'Spring', 2007, 'A+'); + insert into takes values('46074', '704', '1', 'Spring', 2008, 'C-'); + insert into takes values('40481', '496', '1', 'Fall', 2001, 'B '); + insert into takes values('34404', '105', '2', 'Fall', 2002, 'B-'); + insert into takes values('39927', '270', '1', 'Spring', 2010, 'B '); + insert into takes values('79205', '747', '1', 'Spring', 2004, 'B '); + insert into takes values('26427', '867', '1', 'Fall', 2006, 'B-'); + insert into takes values('94178', '962', '1', 'Spring', 2008, 'A '); + insert into takes values('76768', '362', '1', 'Fall', 2005, 'A-'); + insert into takes values('4438', '571', '1', 'Spring', 2004, 'B '); + insert into takes values('81789', '612', '1', 'Fall', 2007, 'C+'); + insert into takes values('54508', '200', '2', 'Fall', 2002, 'B+'); + insert into takes values('30252', '319', '1', 'Spring', 2003, 'B '); + insert into takes values('81031', '468', '1', 'Fall', 2005, 'C-'); + insert into takes values('64914', '747', '1', 'Spring', 2004, 'B '); + insert into takes values('1727', '561', '1', 'Fall', 2006, 'C+'); + insert into takes values('90814', '476', '1', 'Fall', 2010, 'B '); + insert into takes values('74473', '400', '2', 'Fall', 2003, 'C '); + insert into takes values('4435', '493', '1', 'Spring', 2010, 'C '); + insert into takes values('63449', '258', '1', 'Fall', 2007, 'A+'); + insert into takes values('82970', '274', '1', 'Fall', 2002, 'A-'); + insert into takes values('96178', '571', '1', 'Spring', 2004, 'A '); + insert into takes values('90448', '808', '1', 'Fall', 2003, 'C+'); + insert into takes values('77289', '338', '2', 'Spring', 2006, 'B-'); + insert into takes values('87044', '461', '1', 'Fall', 2002, 'B-'); + insert into takes values('52371', '169', '2', 'Fall', 2002, 'C-'); + insert into takes values('53728', '486', '1', 'Fall', 2009, 'C-'); + insert into takes values('75772', '974', '1', 'Fall', 2003, 'A-'); + insert into takes values('91580', '319', '1', 'Spring', 2003, 'C+'); + insert into takes values('41751', '959', '1', 'Fall', 2006, 'C+'); + insert into takes values('94535', '352', '1', 'Spring', 2006, 'A+'); + insert into takes values('61232', '415', '1', 'Fall', 2010, 'C+'); + insert into takes values('15070', '599', '1', 'Spring', 2003, 'A-'); + insert into takes values('99268', '959', '1', 'Fall', 2006, 'B+'); + insert into takes values('76799', '169', '2', 'Fall', 2002, 'B+'); + insert into takes values('83836', '158', '2', 'Spring', 2008, 'A-'); + insert into takes values('86344', '748', '1', 'Fall', 2003, 'B '); + insert into takes values('41211', '802', '1', 'Spring', 2003, 'C+'); + insert into takes values('52076', '808', '1', 'Fall', 2003, 'B-'); + insert into takes values('43981', '735', '2', 'Spring', 2010, 'A+'); + insert into takes values('89104', '482', '1', 'Fall', 2005, 'C '); + insert into takes values('23110', '791', '1', 'Spring', 2006, 'B+'); + insert into takes values('22086', '808', '1', 'Fall', 2003, 'B-'); + insert into takes values('68263', '852', '1', 'Spring', 2008, 'C '); + insert into takes values('10204', '443', '1', 'Spring', 2010, 'C '); + insert into takes values('49391', '313', '1', 'Fall', 2010, 'A '); + insert into takes values('18338', '591', '1', 'Spring', 2005, 'A+'); + insert into takes values('25718', '366', '1', 'Fall', 2005, 'C-'); + insert into takes values('13826', '959', '1', 'Fall', 2006, 'C-'); + insert into takes values('91132', '158', '1', 'Fall', 2008, 'A '); + insert into takes values('29665', '105', '2', 'Fall', 2002, 'B '); + insert into takes values('43495', '974', '1', 'Fall', 2003, 'B '); + insert into takes values('288', '867', '1', 'Fall', 2006, 'C '); + insert into takes values('66259', '949', '1', 'Fall', 2007, 'B-'); + insert into takes values('64164', '274', '1', 'Fall', 2002, 'A '); + insert into takes values('77289', '571', '1', 'Spring', 2004, 'C '); + insert into takes values('90779', '663', '1', 'Spring', 2005, 'B+'); + insert into takes values('72521', '192', '1', 'Fall', 2002, 'B-'); + insert into takes values('19824', '415', '1', 'Fall', 2010, 'B '); + insert into takes values('68150', '493', '1', 'Spring', 2010, 'C '); + insert into takes values('30188', '400', '1', 'Spring', 2007, 'A '); + insert into takes values('37734', '239', '1', 'Fall', 2006, 'A '); + insert into takes values('98047', '338', '1', 'Spring', 2007, 'C-'); + insert into takes values('41280', '137', '1', 'Spring', 2002, 'A-'); + insert into takes values('72959', '642', '1', 'Fall', 2004, 'C-'); + insert into takes values('32464', '489', '1', 'Fall', 2007, 'C '); + insert into takes values('98870', '642', '1', 'Fall', 2004, 'B-'); + insert into takes values('11604', '949', '1', 'Fall', 2007, 'A '); + insert into takes values('32954', '457', '1', 'Spring', 2001, 'A '); + insert into takes values('65979', '747', '1', 'Spring', 2004, 'C '); + insert into takes values('36379', '793', '1', 'Spring', 2002, 'A '); + insert into takes values('34195', '313', '1', 'Fall', 2010, 'B-'); + insert into takes values('78143', '400', '1', 'Spring', 2007, 'B+'); + insert into takes values('95850', '559', '1', 'Fall', 2002, 'A+'); + insert into takes values('53496', '486', '1', 'Fall', 2009, 'C+'); + insert into takes values('28829', '603', '1', 'Fall', 2003, 'A '); + insert into takes values('30341', '692', '1', 'Spring', 2010, 'A-'); + insert into takes values('75273', '493', '1', 'Spring', 2010, 'B '); + insert into takes values('31035', '760', '1', 'Spring', 2004, 'B+'); + insert into takes values('62784', '747', '1', 'Spring', 2004, 'B-'); + insert into takes values('19536', '631', '1', 'Spring', 2007, 'C '); + insert into takes values('62054', '158', '1', 'Fall', 2008, 'C '); + insert into takes values('84654', '362', '3', 'Spring', 2008, 'B+'); + insert into takes values('7956', '158', '2', 'Spring', 2008, 'B+'); + insert into takes values('25380', '408', '1', 'Spring', 2007, 'B+'); + insert into takes values('75794', '493', '1', 'Spring', 2010, 'A-'); + insert into takes values('4355', '972', '1', 'Spring', 2009, 'A-'); + insert into takes values('61356', '735', '2', 'Spring', 2010, 'B '); + insert into takes values('78756', '349', '1', 'Spring', 2008, 'B+'); + insert into takes values('61854', '972', '1', 'Spring', 2009, 'C+'); + insert into takes values('39881', '747', '1', 'Spring', 2004, 'A-'); + insert into takes values('26080', '571', '1', 'Spring', 2004, 'A '); + insert into takes values('66281', '694', '1', 'Fall', 2002, 'A '); + insert into takes values('69628', '274', '1', 'Fall', 2002, 'A '); + insert into takes values('18583', '105', '2', 'Fall', 2002, 'B-'); + insert into takes values('38899', '415', '1', 'Fall', 2010, 'A+'); + insert into takes values('91580', '867', '2', 'Fall', 2010, 'B-'); + insert into takes values('80420', '802', '1', 'Spring', 2003, 'A '); + insert into takes values('46066', '105', '1', 'Fall', 2009, 'B '); + insert into takes values('69853', '591', '1', 'Spring', 2005, 'C-'); + insert into takes values('898', '415', '1', 'Fall', 2010, 'A-'); + insert into takes values('336', '476', '1', 'Fall', 2010, 'C-'); + insert into takes values('39238', '735', '2', 'Spring', 2010, 'A '); + insert into takes values('90372', '352', '1', 'Spring', 2006, 'B+'); + insert into takes values('42956', '960', '1', 'Fall', 2009, 'B-'); + insert into takes values('66763', '991', '1', 'Spring', 2008, 'A+'); + insert into takes values('88884', '338', '2', 'Spring', 2006, 'B+'); + insert into takes values('28361', '545', '1', 'Fall', 2001, 'A-'); + insert into takes values('14668', '748', '1', 'Fall', 2003, 'A-'); + insert into takes values('61998', '401', '1', 'Fall', 2003, 'C '); + insert into takes values('41599', '559', '1', 'Fall', 2002, 'C '); + insert into takes values('10204', '875', '1', 'Spring', 2005, 'A+'); + insert into takes values('91091', '496', '1', 'Fall', 2001, 'C-'); + insert into takes values('87054', '192', '1', 'Fall', 2002, 'B '); + insert into takes values('57334', '795', '1', 'Spring', 2004, 'B-'); + insert into takes values('25077', '338', '1', 'Spring', 2007, 'B+'); + insert into takes values('58935', '612', '1', 'Fall', 2007, 'C-'); + insert into takes values('99348', '527', '1', 'Fall', 2004, 'C-'); + insert into takes values('63612', '893', '1', 'Fall', 2007, 'C+'); + insert into takes values('9933', '443', '2', 'Spring', 2002, 'A+'); + insert into takes values('37734', '927', '1', 'Fall', 2002, 'C+'); + insert into takes values('81984', '362', '3', 'Spring', 2008, 'A '); + insert into takes values('67293', '808', '1', 'Fall', 2003, 'B '); + insert into takes values('13504', '239', '1', 'Fall', 2006, 'A+'); + insert into takes values('47677', '843', '1', 'Fall', 2010, 'B-'); + insert into takes values('52856', '760', '1', 'Spring', 2004, 'C '); + insert into takes values('45720', '559', '1', 'Fall', 2002, 'B-'); + insert into takes values('54612', '663', '1', 'Spring', 2005, 'A '); + insert into takes values('37759', '893', '1', 'Fall', 2007, 'A+'); + insert into takes values('14829', '445', '1', 'Spring', 2001, 'B '); + insert into takes values('78116', '599', '1', 'Spring', 2003, 'C+'); + insert into takes values('58595', '400', '2', 'Fall', 2003, 'C+'); + insert into takes values('34957', '702', '1', 'Spring', 2001, 'A+'); + insert into takes values('11101', '239', '1', 'Fall', 2006, 'B+'); + insert into takes values('34329', '468', '1', 'Fall', 2005, 'C+'); + insert into takes values('39876', '496', '1', 'Fall', 2001, 'A '); + insert into takes values('11377', '704', '1', 'Spring', 2008, 'C-'); + insert into takes values('56089', '349', '1', 'Spring', 2008, 'B-'); + insert into takes values('52494', '561', '1', 'Fall', 2006, 'B '); + insert into takes values('63090', '345', '1', 'Spring', 2008, 'B '); + insert into takes values('65299', '852', '1', 'Spring', 2008, 'C+'); + insert into takes values('2848', '571', '1', 'Spring', 2004, 'B '); + insert into takes values('94522', '493', '1', 'Spring', 2010, 'B '); + insert into takes values('23392', '694', '1', 'Fall', 2002, 'C+'); + insert into takes values('45826', '493', '1', 'Spring', 2010, 'A+'); + insert into takes values('77729', '400', '2', 'Fall', 2003, 'A+'); + insert into takes values('19050', '962', '1', 'Spring', 2008, 'B+'); + insert into takes values('1884', '362', '1', 'Fall', 2005, 'C '); + insert into takes values('53788', '468', '2', 'Fall', 2007, 'A+'); + insert into takes values('56598', '237', '2', 'Fall', 2009, 'A-'); + insert into takes values('46260', '105', '2', 'Fall', 2002, 'A '); + insert into takes values('20985', '875', '1', 'Spring', 2005, 'C '); + insert into takes values('86327', '319', '1', 'Spring', 2003, 'B '); + insert into takes values('39619', '400', '1', 'Spring', 2007, 'C '); + insert into takes values('32345', '366', '1', 'Fall', 2005, 'C-'); + insert into takes values('63886', '366', '1', 'Fall', 2005, 'C '); + insert into takes values('21401', '408', '1', 'Spring', 2007, 'B+'); + insert into takes values('55940', '105', '2', 'Fall', 2002, 'C+'); + insert into takes values('2178', '169', '2', 'Fall', 2002, 'B-'); + insert into takes values('9659', '338', '1', 'Spring', 2007, 'B-'); + insert into takes values('41973', '237', '1', 'Spring', 2008, 'C-'); + insert into takes values('18808', '137', '1', 'Spring', 2002, 'C+'); + insert into takes values('19220', '626', '1', 'Fall', 2006, 'A+'); + insert into takes values('8986', '692', '1', 'Spring', 2010, 'A-'); + insert into takes values('94846', '105', '1', 'Fall', 2009, 'B-'); + insert into takes values('56139', '802', '1', 'Spring', 2003, 'B-'); + insert into takes values('78434', '843', '1', 'Fall', 2010, 'C+'); + insert into takes values('57666', '242', '1', 'Fall', 2009, 'B+'); + insert into takes values('52856', '169', '1', 'Spring', 2007, 'B-'); + insert into takes values('68779', '867', '2', 'Fall', 2010, 'C '); + insert into takes values('86127', '362', '3', 'Spring', 2008, 'B+'); + insert into takes values('88287', '642', '1', 'Fall', 2004, 'C+'); + insert into takes values('41406', '362', '3', 'Spring', 2008, 'C '); + insert into takes values('31035', '338', '1', 'Spring', 2007, 'C '); + insert into takes values('80113', '352', '1', 'Spring', 2006, 'A '); + insert into takes values('16631', '559', '1', 'Fall', 2002, 'B+'); + insert into takes values('32217', '960', '1', 'Fall', 2009, 'A+'); + insert into takes values('68516', '304', '1', 'Fall', 2009, 'C '); + insert into takes values('82918', '400', '1', 'Spring', 2007, 'A+'); + insert into takes values('35', '426', '1', 'Spring', 2006, 'C-'); + insert into takes values('59117', '604', '1', 'Spring', 2009, 'C '); + insert into takes values('1402', '200', '2', 'Fall', 2002, 'C '); + insert into takes values('79329', '105', '1', 'Fall', 2009, 'B-'); + insert into takes values('6287', '242', '1', 'Fall', 2009, 'A-'); + insert into takes values('69752', '445', '1', 'Spring', 2001, 'A '); + insert into takes values('25940', '476', '1', 'Fall', 2010, 'B '); + insert into takes values('57135', '747', '1', 'Spring', 2004, 'B-'); + insert into takes values('14094', '927', '1', 'Fall', 2002, 'B+'); + insert into takes values('12683', '319', '1', 'Spring', 2003, 'B-'); + insert into takes values('81028', '702', '1', 'Spring', 2001, 'A-'); + insert into takes values('13757', '735', '2', 'Spring', 2010, 'B+'); + insert into takes values('10727', '959', '1', 'Fall', 2006, 'B '); + insert into takes values('86552', '408', '1', 'Spring', 2007, 'B-'); + insert into takes values('25725', '137', '1', 'Spring', 2002, 'B-'); + insert into takes values('30474', '702', '1', 'Spring', 2001, 'C-'); + insert into takes values('51008', '482', '1', 'Fall', 2005, 'C+'); + insert into takes values('50039', '421', '1', 'Fall', 2004, 'A+'); + insert into takes values('75241', '791', '1', 'Spring', 2006, 'A '); + insert into takes values('22345', '489', '1', 'Fall', 2007, 'A+'); + insert into takes values('38691', '571', '1', 'Spring', 2004, 'C '); + insert into takes values('1827', '704', '1', 'Spring', 2008, 'C+'); + insert into takes values('39892', '960', '2', 'Fall', 2006, 'A+'); + insert into takes values('27430', '571', '1', 'Spring', 2004, 'C+'); + insert into takes values('53805', '362', '2', 'Fall', 2006, 'B-'); + insert into takes values('66054', '400', '2', 'Fall', 2003, 'C+'); + insert into takes values('69132', '169', '1', 'Spring', 2007, 'A+'); + insert into takes values('35498', '604', '1', 'Spring', 2009, 'C+'); + insert into takes values('16969', '426', '1', 'Spring', 2006, 'B+'); + insert into takes values('50537', '545', '1', 'Fall', 2001, 'C-'); + insert into takes values('17207', '476', '1', 'Fall', 2010, 'A '); + insert into takes values('8378', '493', '1', 'Spring', 2010, 'A-'); + insert into takes values('42114', '960', '1', 'Fall', 2009, 'B+'); + insert into takes values('24201', '527', '1', 'Fall', 2004, 'A+'); + insert into takes values('47670', '486', '1', 'Fall', 2009, 'C-'); + insert into takes values('30650', '445', '1', 'Spring', 2001, 'C-'); + insert into takes values('20378', '893', '1', 'Fall', 2007, 'A+'); + insert into takes values('78572', '527', '1', 'Fall', 2004, 'B '); + insert into takes values('50702', '239', '1', 'Fall', 2006, 'A '); + insert into takes values('23270', '843', '1', 'Fall', 2010, 'B '); + insert into takes values('52741', '169', '1', 'Spring', 2007, 'A '); + insert into takes values('77218', '795', '1', 'Spring', 2004, 'B-'); + insert into takes values('11682', '735', '1', 'Spring', 2003, 'C '); + insert into takes values('57135', '559', '1', 'Fall', 2002, 'B-'); + insert into takes values('95089', '352', '1', 'Spring', 2006, 'A '); + insert into takes values('39892', '867', '1', 'Fall', 2006, 'A+'); + insert into takes values('43505', '304', '1', 'Fall', 2009, 'A '); + insert into takes values('70452', '581', '1', 'Spring', 2005, 'C-'); + insert into takes values('9947', '642', '1', 'Fall', 2004, 'B '); + insert into takes values('11095', '959', '1', 'Fall', 2006, 'B-'); + insert into takes values('12069', '748', '1', 'Fall', 2003, 'A-'); + insert into takes values('7390', '735', '2', 'Spring', 2010, 'C '); + insert into takes values('62520', '704', '1', 'Spring', 2008, 'A+'); + insert into takes values('15249', '319', '1', 'Spring', 2003, 'A-'); + insert into takes values('59046', '137', '1', 'Spring', 2002, 'A-'); + insert into takes values('49701', '200', '1', 'Spring', 2007, 'B-'); + insert into takes values('69225', '612', '1', 'Fall', 2007, 'A+'); + insert into takes values('1827', '376', '1', 'Fall', 2006, 'B-'); + insert into takes values('32506', '612', '1', 'Fall', 2007, 'B '); + insert into takes values('96324', '482', '1', 'Fall', 2005, 'C-'); + insert into takes values('41280', '461', '1', 'Fall', 2002, 'A '); + insert into takes values('38545', '408', '2', 'Spring', 2003, 'C+'); + insert into takes values('59673', '631', '1', 'Spring', 2007, 'C-'); + insert into takes values('57160', '239', '1', 'Fall', 2006, 'B+'); + insert into takes values('63289', '426', '1', 'Spring', 2006, 'A '); + insert into takes values('4173', '663', '1', 'Spring', 2005, 'A+'); + insert into takes values('50013', '679', '1', 'Spring', 2010, 'C-'); + insert into takes values('58846', '362', '3', 'Spring', 2008, 'A '); + insert into takes values('87784', '401', '1', 'Fall', 2003, 'A-'); + insert into takes values('32490', '748', '1', 'Fall', 2003, 'C+'); + insert into takes values('34404', '867', '2', 'Fall', 2010, 'C '); + insert into takes values('32217', '962', '1', 'Spring', 2008, 'C '); + insert into takes values('81876', '362', '1', 'Fall', 2005, 'A-'); + insert into takes values('24746', '408', '2', 'Spring', 2003, 'C '); + insert into takes values('57962', '200', '2', 'Fall', 2002, 'C+'); + insert into takes values('59553', '696', '1', 'Spring', 2002, 'A-'); + insert into takes values('72528', '338', '2', 'Spring', 2006, 'B+'); + insert into takes values('14874', '345', '1', 'Spring', 2008, 'B-'); + insert into takes values('36657', '612', '1', 'Fall', 2007, 'A '); + insert into takes values('19245', '559', '1', 'Fall', 2002, 'C-'); + insert into takes values('61081', '679', '1', 'Spring', 2010, 'A-'); + insert into takes values('64192', '679', '1', 'Spring', 2010, 'A-'); + insert into takes values('73606', '702', '1', 'Spring', 2001, 'B '); + insert into takes values('19450', '408', '1', 'Spring', 2007, 'B+'); + insert into takes values('23270', '349', '1', 'Spring', 2008, 'C+'); + insert into takes values('93039', '793', '1', 'Spring', 2002, 'A-'); + insert into takes values('36052', '694', '1', 'Fall', 2002, 'C-'); + insert into takes values('13290', '319', '1', 'Spring', 2003, 'B-'); + insert into takes values('90372', '793', '1', 'Spring', 2002, 'C-'); + insert into takes values('77172', '468', '2', 'Fall', 2007, 'A-'); + insert into takes values('99710', '408', '2', 'Spring', 2003, 'B '); + insert into takes values('667', '400', '2', 'Fall', 2003, 'B '); + insert into takes values('76911', '362', '3', 'Spring', 2008, 'A-'); + insert into takes values('35357', '867', '1', 'Fall', 2006, 'C+'); + insert into takes values('92464', '482', '1', 'Fall', 2005, 'A+'); + insert into takes values('49618', '352', '1', 'Spring', 2006, 'A+'); + insert into takes values('72768', '345', '1', 'Spring', 2008, 'A '); + insert into takes values('98619', '527', '1', 'Fall', 2004, 'B '); + insert into takes values('29849', '795', '1', 'Spring', 2004, 'C-'); + insert into takes values('42956', '443', '1', 'Spring', 2010, 'C '); + insert into takes values('30017', '400', '1', 'Spring', 2007, 'C '); + insert into takes values('76953', '258', '1', 'Fall', 2007, 'A '); + insert into takes values('60249', '692', '1', 'Spring', 2010, 'C '); + insert into takes values('33338', '760', '1', 'Spring', 2004, 'A-'); + insert into takes values('80047', '468', '1', 'Fall', 2005, 'C-'); + insert into takes values('96003', '426', '1', 'Spring', 2006, 'A+'); + insert into takes values('85063', '493', '1', 'Spring', 2010, 'B-'); + insert into takes values('14214', '959', '1', 'Fall', 2006, 'C '); + insert into takes values('93571', '692', '1', 'Spring', 2010, 'B+'); + insert into takes values('83592', '496', '1', 'Fall', 2001, 'A-'); + insert into takes values('79469', '867', '1', 'Fall', 2006, 'A+'); + insert into takes values('30474', '274', '1', 'Fall', 2002, 'A '); + insert into takes values('1826', '443', '2', 'Spring', 2002, 'C+'); + insert into takes values('66969', '105', '2', 'Fall', 2002, 'B+'); + insert into takes values('52203', '334', '1', 'Fall', 2009, 'B+'); + insert into takes values('85356', '642', '1', 'Fall', 2004, 'C-'); + insert into takes values('77289', '959', '1', 'Fall', 2006, 'A+'); + insert into takes values('74070', '362', '1', 'Fall', 2005, 'A+'); + insert into takes values('5920', '426', '1', 'Spring', 2006, 'C '); + insert into takes values('27094', '927', '1', 'Fall', 2002, 'C+'); + insert into takes values('86707', '626', '1', 'Fall', 2006, 'B+'); + insert into takes values('11578', '991', '1', 'Spring', 2008, 'C '); + insert into takes values('56499', '258', '1', 'Fall', 2007, 'A '); + insert into takes values('17911', '864', '1', 'Spring', 2006, 'A+'); + insert into takes values('85746', '137', '1', 'Spring', 2002, 'A '); + insert into takes values('44985', '571', '1', 'Spring', 2004, 'C '); + insert into takes values('56849', '401', '1', 'Fall', 2003, 'B '); + insert into takes values('32385', '258', '1', 'Fall', 2007, 'B-'); + insert into takes values('87044', '239', '1', 'Fall', 2006, 'A '); + insert into takes values('74974', '362', '1', 'Fall', 2005, 'C+'); + insert into takes values('37856', '426', '1', 'Spring', 2006, 'A '); + insert into takes values('15249', '493', '1', 'Spring', 2010, 'C-'); + insert into takes values('26730', '949', '1', 'Fall', 2007, 'B '); + insert into takes values('14596', '468', '1', 'Fall', 2005, 'A-'); + insert into takes values('33645', '274', '1', 'Fall', 2002, 'C+'); + insert into takes values('71543', '496', '1', 'Fall', 2001, 'B '); + insert into takes values('55009', '349', '1', 'Spring', 2008, 'C '); + insert into takes values('56486', '258', '1', 'Fall', 2007, 'C '); + insert into takes values('24197', '631', '1', 'Spring', 2007, 'C '); + insert into takes values('25256', '696', '1', 'Spring', 2002, 'A-'); + insert into takes values('67371', '927', '1', 'Fall', 2002, 'B+'); + insert into takes values('69230', '137', '1', 'Spring', 2002, 'C '); + insert into takes values('99730', '401', '1', 'Fall', 2003, 'A+'); + insert into takes values('13741', '486', '1', 'Fall', 2009, 'C+'); + insert into takes values('64550', '793', '1', 'Spring', 2002, 'C-'); + insert into takes values('21766', '401', '1', 'Fall', 2003, 'A-'); + insert into takes values('36791', '158', '1', 'Fall', 2008, 'C '); + insert into takes values('69307', '702', '1', 'Spring', 2001, 'C '); + insert into takes values('914', '362', '3', 'Spring', 2008, 'C '); + insert into takes values('64192', '808', '1', 'Fall', 2003, 'B '); + insert into takes values('51868', '192', '1', 'Fall', 2002, 'C+'); + insert into takes values('95205', '962', '1', 'Spring', 2008, 'B-'); + insert into takes values('44551', '319', '1', 'Spring', 2003, 'B '); + insert into takes values('94142', '274', '1', 'Fall', 2002, 'C-'); + insert into takes values('80047', '200', '1', 'Spring', 2007, 'B+'); + insert into takes values('13081', '304', '1', 'Fall', 2009, 'C+'); + insert into takes values('76049', '852', '1', 'Spring', 2008, 'B-'); + insert into takes values('33882', '960', '1', 'Fall', 2009, 'C-'); + insert into takes values('58465', '843', '1', 'Fall', 2010, 'A-'); + insert into takes values('43226', '334', '1', 'Fall', 2009, 'A '); + insert into takes values('8140', '696', '1', 'Spring', 2002, 'A-'); + insert into takes values('25552', '443', '2', 'Spring', 2002, 'C+'); + insert into takes values('83480', '867', '2', 'Fall', 2010, 'C '); + insert into takes values('32369', '791', '1', 'Spring', 2006, 'A-'); + insert into takes values('15144', '445', '1', 'Spring', 2001, 'B-'); + insert into takes values('91992', '352', '1', 'Spring', 2006, 'A '); + insert into takes values('77130', '893', '1', 'Fall', 2007, 'C+'); + insert into takes values('17996', '545', '1', 'Fall', 2001, 'A-'); + insert into takes values('16133', '338', '1', 'Spring', 2007, 'B+'); + insert into takes values('10033', '960', '1', 'Fall', 2009, 'C+'); + insert into takes values('5843', '105', '1', 'Fall', 2009, 'A '); + insert into takes values('29462', '802', '1', 'Spring', 2003, 'A '); + insert into takes values('16753', '445', '1', 'Spring', 2001, 'B-'); + insert into takes values('93653', '334', '1', 'Fall', 2009, 'A '); + insert into takes values('70522', '972', '1', 'Spring', 2009, 'C+'); + insert into takes values('80254', '735', '2', 'Spring', 2010, 'C+'); + insert into takes values('41345', '591', '1', 'Spring', 2005, 'C '); + insert into takes values('80698', '158', '2', 'Spring', 2008, 'B '); + insert into takes values('96710', '352', '1', 'Spring', 2006, 'C '); + insert into takes values('24865', '443', '2', 'Spring', 2002, 'A-'); + insert into takes values('41671', '200', '1', 'Spring', 2007, 'C '); + insert into takes values('19048', '457', '1', 'Spring', 2001, 'C '); + insert into takes values('37586', '468', '1', 'Fall', 2005, 'C '); + insert into takes values('14596', '237', '1', 'Spring', 2008, 'C-'); + insert into takes values('72959', '735', '1', 'Spring', 2003, 'C '); + insert into takes values('15083', '137', '1', 'Spring', 2002, 'C+'); + insert into takes values('27662', '362', '3', 'Spring', 2008, 'B+'); + insert into takes values('888', '748', '1', 'Fall', 2003, 'C+'); + insert into takes values('1922', '604', '1', 'Spring', 2009, 'B-'); + insert into takes values('10076', '747', '1', 'Spring', 2004, 'A+'); + insert into takes values('44551', '169', '2', 'Fall', 2002, 'C '); + insert into takes values('43989', '864', '1', 'Spring', 2006, 'C-'); + insert into takes values('35175', '581', '1', 'Spring', 2005, 'B '); + insert into takes values('80912', '362', '1', 'Fall', 2005, 'B '); + insert into takes values('74464', '421', '1', 'Fall', 2004, 'A '); + insert into takes values('97228', '496', '1', 'Fall', 2001, 'B+'); + insert into takes values('15083', '237', '2', 'Fall', 2009, 'C '); + insert into takes values('69285', '571', '1', 'Spring', 2004, 'B+'); + insert into takes values('24784', '274', '1', 'Fall', 2002, 'B+'); + insert into takes values('51579', '421', '1', 'Fall', 2004, 'B '); + insert into takes values('65987', '200', '1', 'Spring', 2007, 'C+'); + insert into takes values('52385', '105', '2', 'Fall', 2002, 'A '); + insert into takes values('18367', '704', '1', 'Spring', 2008, 'B+'); + insert into takes values('95574', '319', '1', 'Spring', 2003, 'A-'); + insert into takes values('49450', '612', '1', 'Fall', 2007, 'B-'); + insert into takes values('37103', '545', '1', 'Fall', 2001, 'A '); + insert into takes values('67436', '927', '1', 'Fall', 2002, 'C+'); + insert into takes values('2419', '642', '1', 'Fall', 2004, 'B '); + insert into takes values('37759', '445', '1', 'Spring', 2001, 'B+'); + insert into takes values('31554', '349', '1', 'Spring', 2008, 'C '); + insert into takes values('68712', '960', '1', 'Fall', 2009, 'A '); + insert into takes values('73165', '581', '1', 'Spring', 2005, 'A-'); + insert into takes values('96227', '489', '1', 'Fall', 2007, 'B-'); + insert into takes values('15538', '137', '1', 'Spring', 2002, 'B '); + insert into takes values('93171', '400', '2', 'Fall', 2003, 'C '); + insert into takes values('59538', '362', '1', 'Fall', 2005, 'B-'); + insert into takes values('6209', '559', '1', 'Fall', 2002, 'C '); + insert into takes values('58919', '334', '1', 'Fall', 2009, 'A '); + insert into takes values('30772', '692', '1', 'Spring', 2010, 'C-'); + insert into takes values('32217', '426', '1', 'Spring', 2006, 'A+'); + insert into takes values('14581', '991', '1', 'Spring', 2008, 'A+'); + insert into takes values('58594', '631', '1', 'Spring', 2007, 'A-'); + insert into takes values('30858', '362', '1', 'Fall', 2005, 'C '); + insert into takes values('67560', '349', '1', 'Spring', 2008, 'A+'); + insert into takes values('44816', '242', '1', 'Fall', 2009, 'B+'); + insert into takes values('90779', '867', '1', 'Fall', 2006, 'C '); + insert into takes values('72959', '843', '1', 'Fall', 2010, 'B '); + insert into takes values('25780', '482', '1', 'Fall', 2005, 'B-'); + insert into takes values('91788', '338', '2', 'Spring', 2006, 'A+'); + insert into takes values('31476', '443', '2', 'Spring', 2002, 'A-'); + insert into takes values('95574', '748', '1', 'Fall', 2003, 'C+'); + insert into takes values('23794', '604', '1', 'Spring', 2009, 'A+'); + insert into takes values('50467', '443', '2', 'Spring', 2002, 'C-'); + insert into takes values('80976', '959', '1', 'Fall', 2006, 'C '); + insert into takes values('27952', '960', '1', 'Fall', 2009, 'B '); + insert into takes values('80610', '559', '1', 'Fall', 2002, 'A-'); + insert into takes values('20195', '626', '1', 'Fall', 2006, 'C '); + insert into takes values('66106', '338', '2', 'Spring', 2006, 'A+'); + insert into takes values('31266', '105', '2', 'Fall', 2002, 'A+'); + insert into takes values('67725', '545', '1', 'Fall', 2001, 'C-'); + insert into takes values('12078', '105', '1', 'Fall', 2009, 'C+'); + insert into takes values('91197', '959', '1', 'Fall', 2006, 'B-'); + insert into takes values('11076', '974', '1', 'Fall', 2003, 'B-'); + insert into takes values('2967', '468', '2', 'Fall', 2007, 'C+'); + insert into takes values('95840', '960', '1', 'Fall', 2009, 'A-'); + insert into takes values('28409', '663', '1', 'Spring', 2005, 'A+'); + insert into takes values('50658', '192', '1', 'Fall', 2002, 'B+'); + insert into takes values('11095', '421', '1', 'Fall', 2004, 'B '); + insert into takes values('74840', '991', '1', 'Spring', 2008, 'B-'); + insert into takes values('63310', '400', '2', 'Fall', 2003, 'B-'); + insert into takes values('84865', '793', '1', 'Spring', 2002, 'B+'); + insert into takes values('30474', '561', '1', 'Fall', 2006, 'C '); + insert into takes values('463', '991', '1', 'Spring', 2008, 'C+'); + insert into takes values('34018', '960', '2', 'Fall', 2006, 'B '); + insert into takes values('31266', '426', '1', 'Spring', 2006, 'B '); + insert into takes values('13921', '105', '2', 'Fall', 2002, 'C+'); + insert into takes values('84039', '362', '2', 'Fall', 2006, 'A '); + insert into takes values('53152', '864', '1', 'Spring', 2006, 'C '); + insert into takes values('85505', '476', '1', 'Fall', 2010, 'A+'); + insert into takes values('95099', '362', '3', 'Spring', 2008, 'A '); + insert into takes values('49450', '793', '1', 'Spring', 2002, 'C-'); + insert into takes values('8603', '795', '1', 'Spring', 2004, 'B+'); + insert into takes values('70395', '663', '1', 'Spring', 2005, 'B+'); + insert into takes values('68999', '192', '1', 'Fall', 2002, 'A-'); + insert into takes values('80610', '489', '1', 'Fall', 2007, 'B '); + insert into takes values('16515', '366', '1', 'Fall', 2005, 'A '); + insert into takes values('53118', '105', '2', 'Fall', 2002, 'C '); + insert into takes values('18809', '270', '1', 'Spring', 2010, 'B-'); + insert into takes values('52656', '304', '1', 'Fall', 2009, 'C '); + insert into takes values('16515', '242', '1', 'Fall', 2009, 'B-'); + insert into takes values('1954', '561', '1', 'Fall', 2006, 'B '); + insert into takes values('94569', '349', '1', 'Spring', 2008, 'B+'); + insert into takes values('82646', '334', '1', 'Fall', 2009, 'A+'); + insert into takes values('43211', '735', '1', 'Spring', 2003, 'B '); + insert into takes values('21126', '400', '2', 'Fall', 2003, 'A+'); + insert into takes values('2795', '270', '1', 'Spring', 2010, 'B+'); + insert into takes values('99760', '702', '1', 'Spring', 2001, 'C+'); + insert into takes values('23934', '408', '1', 'Spring', 2007, 'C '); + insert into takes values('74509', '791', '1', 'Spring', 2006, 'B-'); + insert into takes values('87785', '748', '1', 'Fall', 2003, 'C-'); + insert into takes values('53225', '468', '1', 'Fall', 2005, 'A '); + insert into takes values('53485', '362', '2', 'Fall', 2006, 'A '); + insert into takes values('499', '960', '1', 'Fall', 2009, 'C-'); + insert into takes values('91370', '313', '1', 'Fall', 2010, 'C-'); + insert into takes values('97041', '237', '1', 'Spring', 2008, 'A '); + insert into takes values('42956', '421', '1', 'Fall', 2004, 'B-'); + insert into takes values('84410', '158', '2', 'Spring', 2008, 'B '); + insert into takes values('68779', '445', '1', 'Spring', 2001, 'A+'); + insert into takes values('45436', '603', '1', 'Fall', 2003, 'B '); + insert into takes values('18821', '626', '1', 'Fall', 2006, 'B '); + insert into takes values('29705', '482', '1', 'Fall', 2005, 'C+'); + insert into takes values('70688', '105', '2', 'Fall', 2002, 'B '); + insert into takes values('99553', '748', '1', 'Fall', 2003, 'B-'); + insert into takes values('26427', '482', '1', 'Fall', 2005, 'B+'); + insert into takes values('86127', '974', '1', 'Fall', 2003, 'A+'); + insert into takes values('79589', '137', '1', 'Spring', 2002, 'B '); + insert into takes values('24932', '959', '1', 'Fall', 2006, 'C '); + insert into takes values('40178', '468', '2', 'Fall', 2007, 'B-'); + insert into takes values('98315', '192', '1', 'Fall', 2002, 'A+'); + insert into takes values('12711', '959', '1', 'Fall', 2006, 'C+'); + insert into takes values('31337', '408', '1', 'Spring', 2007, 'C+'); + insert into takes values('99711', '489', '1', 'Fall', 2007, 'C '); + insert into takes values('91580', '169', '1', 'Spring', 2007, 'C-'); + insert into takes values('84239', '748', '1', 'Fall', 2003, 'A '); + insert into takes values('94324', '105', '2', 'Fall', 2002, 'B '); + insert into takes values('11083', '793', '1', 'Spring', 2002, 'A-'); + insert into takes values('9460', '192', '1', 'Fall', 2002, 'B-'); + insert into takes values('99226', '362', '2', 'Fall', 2006, 'B '); + insert into takes values('12078', '408', '1', 'Spring', 2007, 'B+'); + insert into takes values('96911', '304', '1', 'Fall', 2009, 'B+'); + insert into takes values('41345', '972', '1', 'Spring', 2009, 'A '); + insert into takes values('44271', '875', '1', 'Spring', 2005, 'C+'); + insert into takes values('65190', '493', '1', 'Spring', 2010, 'A-'); + insert into takes values('40937', '376', '1', 'Fall', 2006, 'B '); + insert into takes values('44706', '893', '1', 'Fall', 2007, 'B+'); + insert into takes values('42843', '401', '1', 'Fall', 2003, 'C+'); + insert into takes values('36263', '760', '1', 'Spring', 2004, 'C '); + insert into takes values('16528', '629', '1', 'Spring', 2003, 'A+'); + insert into takes values('43123', '793', '1', 'Spring', 2002, 'A+'); + insert into takes values('78581', '313', '1', 'Fall', 2010, 'A-'); + insert into takes values('67660', '239', '1', 'Fall', 2006, 'C+'); + insert into takes values('8378', '237', '1', 'Spring', 2008, 'B-'); + insert into takes values('51868', '421', '1', 'Fall', 2004, 'C '); + insert into takes values('15487', '962', '1', 'Spring', 2008, 'B-'); + insert into takes values('67371', '169', '1', 'Spring', 2007, 'B-'); + insert into takes values('28977', '571', '1', 'Spring', 2004, 'B+'); + insert into takes values('83871', '274', '1', 'Fall', 2002, 'A '); + insert into takes values('96134', '426', '1', 'Spring', 2006, 'C+'); + insert into takes values('81031', '960', '2', 'Fall', 2006, 'A+'); + insert into takes values('7498', '158', '2', 'Spring', 2008, 'B-'); + insert into takes values('18367', '702', '1', 'Spring', 2001, 'A '); + insert into takes values('80057', '242', '1', 'Fall', 2009, 'C+'); + insert into takes values('70965', '852', '1', 'Spring', 2008, 'A+'); + insert into takes values('72485', '793', '1', 'Spring', 2002, 'B '); + insert into takes values('96772', '443', '1', 'Spring', 2010, 'A-'); + insert into takes values('13023', '362', '2', 'Fall', 2006, 'C-'); + insert into takes values('72669', '802', '1', 'Spring', 2003, 'B+'); + insert into takes values('5399', '527', '1', 'Fall', 2004, 'A+'); + insert into takes values('40481', '793', '1', 'Spring', 2002, 'C '); + insert into takes values('41938', '200', '1', 'Spring', 2007, 'C-'); + insert into takes values('78767', '559', '1', 'Fall', 2002, 'C '); + insert into takes values('65299', '352', '1', 'Spring', 2006, 'B '); + insert into takes values('50966', '603', '1', 'Fall', 2003, 'C-'); + insert into takes values('94814', '927', '1', 'Fall', 2002, 'B+'); + insert into takes values('29707', '461', '1', 'Fall', 2002, 'A '); + insert into takes values('16133', '376', '1', 'Fall', 2006, 'A '); + insert into takes values('38696', '376', '1', 'Fall', 2006, 'C-'); + insert into takes values('6523', '443', '2', 'Spring', 2002, 'C '); + insert into takes values('66106', '704', '1', 'Spring', 2008, 'A-'); + insert into takes values('29871', '760', '1', 'Spring', 2004, 'A+'); + insert into takes values('74070', '559', '1', 'Fall', 2002, 'B '); + insert into takes values('86934', '445', '1', 'Spring', 2001, 'A+'); + insert into takes values('6474', '457', '1', 'Spring', 2001, 'B-'); + insert into takes values('61356', '457', '1', 'Spring', 2001, 'A '); + insert into takes values('987', '200', '1', 'Spring', 2007, 'B-'); + insert into takes values('35175', '760', '1', 'Spring', 2004, 'B-'); + insert into takes values('17665', '445', '1', 'Spring', 2001, 'A-'); + insert into takes values('4015', '239', '1', 'Fall', 2006, 'B+'); + insert into takes values('53728', '493', '1', 'Spring', 2010, 'C+'); + insert into takes values('39521', '808', '1', 'Fall', 2003, 'C+'); + insert into takes values('49873', '443', '1', 'Spring', 2010, 'C '); + insert into takes values('85614', '158', '1', 'Fall', 2008, 'A+'); + insert into takes values('69222', '443', '1', 'Spring', 2010, 'B-'); + insert into takes values('57787', '867', '1', 'Fall', 2006, 'A+'); + insert into takes values('36384', '735', '2', 'Spring', 2010, 'B '); + insert into takes values('84039', '169', '2', 'Fall', 2002, 'C-'); + insert into takes values('16480', '852', '1', 'Spring', 2008, 'A '); + insert into takes values('435', '400', '1', 'Spring', 2007, 'A+'); + insert into takes values('24630', '960', '1', 'Fall', 2009, 'C+'); + insert into takes values('67222', '457', '1', 'Spring', 2001, 'C '); + insert into takes values('52076', '795', '1', 'Spring', 2004, 'A '); + insert into takes values('77003', '663', '1', 'Spring', 2005, 'C+'); + insert into takes values('68999', '972', '1', 'Spring', 2009, 'A '); + insert into takes values('80698', '735', '1', 'Spring', 2003, 'A+'); + insert into takes values('86075', '338', '2', 'Spring', 2006, 'C+'); + insert into takes values('52656', '545', '1', 'Fall', 2001, 'C-'); + insert into takes values('76759', '482', '1', 'Fall', 2005, 'C-'); + insert into takes values('42388', '629', '1', 'Spring', 2003, 'A+'); + insert into takes values('17076', '991', '1', 'Spring', 2008, 'C '); + insert into takes values('81883', '200', '2', 'Fall', 2002, 'A '); + insert into takes values('73328', '962', '1', 'Spring', 2008, 'B+'); + insert into takes values('75772', '338', '1', 'Spring', 2007, 'C+'); + insert into takes values('36685', '338', '2', 'Spring', 2006, 'B '); + insert into takes values('18941', '362', '1', 'Fall', 2005, 'A+'); + insert into takes values('15613', '496', '1', 'Fall', 2001, 'C-'); + insert into takes values('8347', '415', '1', 'Fall', 2010, 'A-'); + insert into takes values('72521', '663', '1', 'Spring', 2005, 'C+'); + insert into takes values('39472', '527', '1', 'Fall', 2004, 'C '); + insert into takes values('43658', '400', '1', 'Spring', 2007, 'B '); + insert into takes values('38545', '626', '1', 'Fall', 2006, 'B-'); + insert into takes values('89106', '571', '1', 'Spring', 2004, 'B-'); + insert into takes values('39115', '793', '1', 'Spring', 2002, 'B-'); + insert into takes values('65329', '843', '1', 'Fall', 2010, 'C '); + insert into takes values('88577', '631', '1', 'Spring', 2007, 'A '); + insert into takes values('36845', '426', '1', 'Spring', 2006, 'A-'); + insert into takes values('19638', '345', '1', 'Spring', 2008, 'C '); + insert into takes values('36685', '808', '1', 'Fall', 2003, 'A '); + insert into takes values('12615', '735', '2', 'Spring', 2010, 'C+'); + insert into takes values('23992', '304', '1', 'Fall', 2009, 'B-'); + insert into takes values('39978', '591', '1', 'Spring', 2005, 'B-'); + insert into takes values('22620', '158', '2', 'Spring', 2008, 'A '); + insert into takes values('10076', '137', '1', 'Spring', 2002, 'B+'); + insert into takes values('88472', '349', '1', 'Spring', 2008, 'A '); + insert into takes values('35935', '105', '1', 'Fall', 2009, 'A '); + insert into takes values('29803', '242', '1', 'Fall', 2009, 'A+'); + insert into takes values('12236', '960', '2', 'Fall', 2006, 'C-'); + insert into takes values('29031', '791', '1', 'Spring', 2006, 'A-'); + insert into takes values('28409', '400', '2', 'Fall', 2003, 'A-'); + insert into takes values('7043', '702', '1', 'Spring', 2001, 'B+'); + insert into takes values('78581', '362', '3', 'Spring', 2008, 'A-'); + insert into takes values('98843', '192', '1', 'Fall', 2002, 'B '); + insert into takes values('80821', '362', '1', 'Fall', 2005, 'A-'); + insert into takes values('84792', '795', '1', 'Spring', 2004, 'A '); + insert into takes values('95320', '692', '1', 'Spring', 2010, 'A+'); + insert into takes values('63886', '408', '1', 'Spring', 2007, 'B '); + insert into takes values('93039', '493', '1', 'Spring', 2010, 'B '); + insert into takes values('46074', '362', '1', 'Fall', 2005, 'C-'); + insert into takes values('98315', '692', '1', 'Spring', 2010, 'B-'); + insert into takes values('31820', '843', '1', 'Fall', 2010, 'B '); + insert into takes values('83686', '704', '1', 'Spring', 2008, 'C+'); + insert into takes values('95284', '445', '1', 'Spring', 2001, 'B '); + insert into takes values('90220', '679', '1', 'Spring', 2010, 'B+'); + insert into takes values('98984', '864', '1', 'Spring', 2006, 'A+'); + insert into takes values('74530', '192', '1', 'Fall', 2002, 'A '); + insert into takes values('82970', '991', '1', 'Spring', 2008, 'B '); + insert into takes values('22086', '345', '1', 'Spring', 2008, 'A-'); + insert into takes values('51698', '527', '1', 'Fall', 2004, 'A+'); + insert into takes values('36265', '105', '2', 'Fall', 2002, 'A-'); + insert into takes values('33817', '486', '1', 'Fall', 2009, 'C '); + insert into takes values('69758', '747', '1', 'Spring', 2004, 'C-'); + insert into takes values('10527', '304', '1', 'Fall', 2009, 'A-'); + insert into takes values('81984', '443', '2', 'Spring', 2002, 'A+'); + insert into takes values('36379', '237', '2', 'Fall', 2009, 'C '); + insert into takes values('69132', '319', '1', 'Spring', 2003, 'B+'); + insert into takes values('18859', '972', '1', 'Spring', 2009, 'B-'); + insert into takes values('48850', '200', '2', 'Fall', 2002, 'B-'); + insert into takes values('67017', '603', '1', 'Fall', 2003, 'C '); + insert into takes values('54728', '192', '1', 'Fall', 2002, 'B+'); + insert into takes values('75395', '843', '1', 'Fall', 2010, 'B-'); + insert into takes values('78481', '158', '2', 'Spring', 2008, 'A '); + insert into takes values('5943', '334', '1', 'Fall', 2009, 'B '); + insert into takes values('95366', '476', '1', 'Fall', 2010, 'A '); + insert into takes values('90448', '599', '1', 'Spring', 2003, 'B '); + insert into takes values('51862', '893', '1', 'Fall', 2007, 'B-'); + insert into takes values('91132', '960', '1', 'Fall', 2009, 'C+'); + insert into takes values('30943', '702', '1', 'Spring', 2001, 'C+'); + insert into takes values('85602', '927', '1', 'Fall', 2002, 'B-'); + insert into takes values('46436', '242', '1', 'Fall', 2009, 'A '); + insert into takes values('25528', '793', '1', 'Spring', 2002, 'C '); + insert into takes values('56755', '927', '1', 'Fall', 2002, 'B '); + insert into takes values('50039', '270', '1', 'Spring', 2010, 'A+'); + insert into takes values('8343', '352', '1', 'Spring', 2006, 'B-'); + insert into takes values('93508', '949', '1', 'Fall', 2007, 'A+'); + insert into takes values('11262', '105', '2', 'Fall', 2002, 'B+'); + insert into takes values('78434', '679', '1', 'Spring', 2010, 'A '); + insert into takes values('31035', '875', '1', 'Spring', 2005, 'A+'); + insert into takes values('41965', '852', '1', 'Spring', 2008, 'B+'); + insert into takes values('62716', '349', '1', 'Spring', 2008, 'A '); + insert into takes values('53152', '591', '1', 'Spring', 2005, 'A+'); + insert into takes values('13753', '960', '2', 'Fall', 2006, 'A '); + insert into takes values('56755', '421', '1', 'Fall', 2004, 'A '); + insert into takes values('79170', '445', '1', 'Spring', 2001, 'A-'); + insert into takes values('3335', '105', '2', 'Fall', 2002, 'B '); + insert into takes values('15883', '489', '1', 'Fall', 2007, 'A+'); + insert into takes values('92417', '334', '1', 'Fall', 2009, 'C+'); + insert into takes values('30474', '527', '1', 'Fall', 2004, 'B+'); + insert into takes values('22057', '443', '2', 'Spring', 2002, 'A-'); + insert into takes values('21126', '974', '1', 'Fall', 2003, 'C+'); + insert into takes values('57185', '468', '1', 'Fall', 2005, 'B+'); + insert into takes values('96003', '663', '1', 'Spring', 2005, 'C '); + insert into takes values('8819', '626', '1', 'Fall', 2006, 'A '); + insert into takes values('1367', '376', '1', 'Fall', 2006, 'A+'); + insert into takes values('58889', '158', '2', 'Spring', 2008, 'C-'); + insert into takes values('41683', '795', '1', 'Spring', 2004, 'C-'); + insert into takes values('13028', '631', '1', 'Spring', 2007, 'B '); + insert into takes values('80227', '158', '2', 'Spring', 2008, 'A '); + insert into takes values('23500', '875', '1', 'Spring', 2005, 'C+'); + insert into takes values('18821', '489', '1', 'Fall', 2007, 'A+'); + insert into takes values('24116', '258', '1', 'Fall', 2007, 'B '); + insert into takes values('96895', '591', '1', 'Spring', 2005, 'B '); + insert into takes values('88140', '927', '1', 'Fall', 2002, 'B+'); + insert into takes values('34197', '258', '1', 'Fall', 2007, 'B '); + insert into takes values('61232', '852', '1', 'Spring', 2008, 'B '); + insert into takes values('82918', '581', '1', 'Spring', 2005, 'B+'); + insert into takes values('92385', '304', '1', 'Fall', 2009, 'B '); + insert into takes values('77234', '991', '1', 'Spring', 2008, 'A-'); + insert into takes values('95626', '808', '1', 'Fall', 2003, 'B '); + insert into takes values('42092', '274', '1', 'Fall', 2002, 'C '); + insert into takes values('56882', '270', '1', 'Spring', 2010, 'A+'); + insert into takes values('36126', '802', '1', 'Spring', 2003, 'C '); + insert into takes values('41832', '338', '1', 'Spring', 2007, 'B '); + insert into takes values('32345', '791', '1', 'Spring', 2006, 'C '); + insert into takes values('59397', '612', '1', 'Fall', 2007, 'B-'); + insert into takes values('84704', '445', '1', 'Spring', 2001, 'B-'); + insert into takes values('72521', '626', '1', 'Fall', 2006, 'C '); + insert into takes values('90567', '960', '2', 'Fall', 2006, 'B-'); + insert into takes values('7204', '366', '1', 'Fall', 2005, 'B '); + insert into takes values('44703', '319', '1', 'Spring', 2003, 'C+'); + insert into takes values('27366', '694', '1', 'Fall', 2002, 'A+'); + insert into takes values('87054', '545', '1', 'Fall', 2001, 'B+'); + insert into takes values('53089', '962', '1', 'Spring', 2008, 'C+'); + insert into takes values('259', '735', '1', 'Spring', 2003, 'C+'); + insert into takes values('41596', '496', '1', 'Fall', 2001, 'A+'); + insert into takes values('34322', '802', '1', 'Spring', 2003, 'B-'); + insert into takes values('67560', '545', '1', 'Fall', 2001, 'C+'); + insert into takes values('55698', '735', '1', 'Spring', 2003, 'A+'); + insert into takes values('9440', '362', '2', 'Fall', 2006, 'A+'); + insert into takes values('75878', '362', '3', 'Spring', 2008, 'B '); + insert into takes values('21086', '486', '1', 'Fall', 2009, 'B+'); + insert into takes values('48861', '362', '1', 'Fall', 2005, 'B+'); + insert into takes values('37581', '408', '1', 'Spring', 2007, 'A-'); + insert into takes values('82707', '270', '1', 'Spring', 2010, 'C-'); + insert into takes values('28738', '760', '1', 'Spring', 2004, 'A+'); + insert into takes values('31080', '258', '1', 'Fall', 2007, 'B-'); + insert into takes values('14023', '629', '1', 'Spring', 2003, 'C '); + insert into takes values('39876', '400', '2', 'Fall', 2003, 'B '); + insert into takes values('17133', '808', '1', 'Fall', 2003, 'B+'); + insert into takes values('76291', '612', '1', 'Fall', 2007, 'B '); + insert into takes values('82580', '461', '1', 'Fall', 2002, 'C '); + insert into takes values('86806', '304', '1', 'Fall', 2009, 'B '); + insert into takes values('12711', '345', '1', 'Spring', 2008, 'B '); + insert into takes values('96003', '852', '1', 'Spring', 2008, 'C-'); + insert into takes values('14581', '960', '1', 'Fall', 2009, 'B+'); + insert into takes values('18859', '457', '1', 'Spring', 2001, 'B+'); + insert into takes values('33460', '604', '1', 'Spring', 2009, 'A-'); + insert into takes values('95626', '949', '1', 'Fall', 2007, 'C '); + insert into takes values('39612', '443', '1', 'Spring', 2010, 'B '); + insert into takes values('85234', '237', '2', 'Fall', 2009, 'B+'); + insert into takes values('86802', '949', '1', 'Fall', 2007, 'A '); + insert into takes values('97400', '864', '1', 'Spring', 2006, 'A+'); + insert into takes values('6712', '362', '3', 'Spring', 2008, 'B-'); + insert into takes values('28538', '476', '1', 'Fall', 2010, 'C '); + insert into takes values('22268', '482', '1', 'Fall', 2005, 'B+'); + insert into takes values('3739', '962', '1', 'Spring', 2008, 'B '); + insert into takes values('59517', '795', '1', 'Spring', 2004, 'B '); + insert into takes values('23994', '991', '1', 'Spring', 2008, 'C-'); + insert into takes values('26147', '808', '1', 'Fall', 2003, 'C '); + insert into takes values('12216', '927', '1', 'Fall', 2002, 'C-'); + insert into takes values('75082', '362', '1', 'Fall', 2005, 'A+'); + insert into takes values('67725', '482', '1', 'Fall', 2005, 'A-'); + insert into takes values('86674', '258', '1', 'Fall', 2007, 'B-'); + insert into takes values('34236', '345', '1', 'Spring', 2008, 'B+'); + insert into takes values('47379', '802', '1', 'Spring', 2003, 'A '); + insert into takes values('77361', '704', '1', 'Spring', 2008, 'B-'); + insert into takes values('37581', '679', '1', 'Spring', 2010, 'A '); + insert into takes values('71630', '376', '1', 'Fall', 2006, 'C+'); + insert into takes values('38668', '960', '2', 'Fall', 2006, 'A-'); + insert into takes values('58170', '642', '1', 'Fall', 2004, 'A-'); + insert into takes values('11455', '137', '1', 'Spring', 2002, 'A+'); + insert into takes values('65101', '612', '1', 'Fall', 2007, 'C-'); + insert into takes values('46260', '559', '1', 'Fall', 2002, 'A '); + insert into takes values('53699', '629', '1', 'Spring', 2003, 'A-'); + insert into takes values('1726', '242', '1', 'Fall', 2009, 'A-'); + insert into takes values('94311', '599', '1', 'Spring', 2003, 'A '); + insert into takes values('86674', '169', '2', 'Fall', 2002, 'C-'); + insert into takes values('13826', '274', '1', 'Fall', 2002, 'C '); + insert into takes values('11855', '366', '1', 'Fall', 2005, 'A-'); + insert into takes values('70299', '445', '1', 'Spring', 2001, 'B+'); + insert into takes values('42298', '603', '1', 'Fall', 2003, 'C '); + insert into takes values('18108', '867', '2', 'Fall', 2010, 'C-'); + insert into takes values('41599', '105', '1', 'Fall', 2009, 'C-'); + insert into takes values('76270', '200', '1', 'Spring', 2007, 'C+'); + insert into takes values('37734', '237', '1', 'Spring', 2008, 'C '); + insert into takes values('41596', '200', '1', 'Spring', 2007, 'B-'); + insert into takes values('61127', '366', '1', 'Fall', 2005, 'C+'); + insert into takes values('7204', '972', '1', 'Spring', 2009, 'C+'); + insert into takes values('53547', '239', '1', 'Fall', 2006, 'C '); + insert into takes values('69581', '748', '1', 'Fall', 2003, 'A-'); + insert into takes values('35042', '959', '1', 'Fall', 2006, 'C-'); + insert into takes values('58085', '461', '1', 'Fall', 2002, 'A '); + insert into takes values('59172', '408', '1', 'Spring', 2007, 'C+'); + insert into takes values('98870', '612', '1', 'Fall', 2007, 'A-'); + insert into takes values('25611', '893', '1', 'Fall', 2007, 'C+'); + insert into takes values('87651', '313', '1', 'Fall', 2010, 'A-'); + insert into takes values('41751', '962', '1', 'Spring', 2008, 'B '); + insert into takes values('5920', '468', '2', 'Fall', 2007, 'A '); + insert into takes values('30110', '875', '1', 'Spring', 2005, 'B '); + insert into takes values('10904', '105', '2', 'Fall', 2002, 'A '); + insert into takes values('19638', '629', '1', 'Spring', 2003, 'C+'); + insert into takes values('59553', '400', '2', 'Fall', 2003, 'C '); + insert into takes values('55286', '482', '1', 'Fall', 2005, 'A '); + insert into takes values('30182', '486', '1', 'Fall', 2009, 'B-'); + insert into takes values('70359', '362', '2', 'Fall', 2006, 'C-'); + insert into takes values('81638', '349', '1', 'Spring', 2008, 'B+'); + insert into takes values('63390', '192', '1', 'Fall', 2002, 'B '); + insert into takes values('50331', '258', '1', 'Fall', 2007, 'C-'); + insert into takes values('70362', '747', '1', 'Spring', 2004, 'A-'); + insert into takes values('64121', '631', '1', 'Spring', 2007, 'B-'); + insert into takes values('24784', '476', '1', 'Fall', 2010, 'A+'); + insert into takes values('40932', '493', '1', 'Spring', 2010, 'C+'); + insert into takes values('50414', '704', '1', 'Spring', 2008, 'C-'); + insert into takes values('90004', '735', '2', 'Spring', 2010, 'B+'); + insert into takes values('83002', '604', '1', 'Spring', 2009, 'A-'); + insert into takes values('13408', '304', '1', 'Fall', 2009, 'A+'); + insert into takes values('63288', '927', '1', 'Fall', 2002, 'B-'); + insert into takes values('40116', '629', '1', 'Spring', 2003, 'C-'); + insert into takes values('88793', '599', '1', 'Spring', 2003, 'C+'); + insert into takes values('499', '748', '1', 'Fall', 2003, 'C+'); + insert into takes values('48589', '304', '1', 'Fall', 2009, 'B '); + insert into takes values('4449', '795', '1', 'Spring', 2004, 'A-'); + insert into takes values('58326', '591', '1', 'Spring', 2005, 'B-'); + insert into takes values('89246', '748', '1', 'Fall', 2003, 'A '); + insert into takes values('97023', '696', '1', 'Spring', 2002, 'B-'); + insert into takes values('79911', '867', '2', 'Fall', 2010, 'B-'); + insert into takes values('31035', '158', '1', 'Fall', 2008, 'B-'); + insert into takes values('70572', '642', '1', 'Fall', 2004, 'C '); + insert into takes values('36052', '949', '1', 'Fall', 2007, 'A+'); + insert into takes values('90779', '642', '1', 'Fall', 2004, 'C '); + insert into takes values('32483', '559', '1', 'Fall', 2002, 'A-'); + insert into takes values('60267', '274', '1', 'Fall', 2002, 'A+'); + insert into takes values('44998', '791', '1', 'Spring', 2006, 'A-'); + insert into takes values('6710', '795', '1', 'Spring', 2004, 'A-'); + insert into takes values('41211', '443', '2', 'Spring', 2002, 'C-'); + insert into takes values('92839', '959', '1', 'Fall', 2006, 'C '); + insert into takes values('93571', '791', '1', 'Spring', 2006, 'B+'); + insert into takes values('20489', '702', '1', 'Spring', 2001, 'B+'); + insert into takes values('85356', '581', '1', 'Spring', 2005, 'C-'); + insert into takes values('41596', '864', '1', 'Spring', 2006, 'A+'); + insert into takes values('88302', '445', '1', 'Spring', 2001, 'A+'); + insert into takes values('65681', '408', '2', 'Spring', 2003, 'B-'); + insert into takes values('84792', '200', '1', 'Spring', 2007, 'B '); + insert into takes values('76911', '927', '1', 'Fall', 2002, 'C+'); + insert into takes values('35042', '867', '1', 'Fall', 2006, 'B '); + insert into takes values('21086', '376', '1', 'Fall', 2006, 'A+'); + insert into takes values('68554', '401', '1', 'Fall', 2003, 'C+'); + insert into takes values('46260', '631', '1', 'Spring', 2007, 'C-'); + insert into takes values('35138', '200', '1', 'Spring', 2007, 'A-'); + insert into takes values('46981', '237', '2', 'Fall', 2009, 'C+'); + insert into takes values('74911', '974', '1', 'Fall', 2003, 'B+'); + insert into takes values('78469', '457', '1', 'Spring', 2001, 'C '); + insert into takes values('47824', '376', '1', 'Fall', 2006, 'B '); + insert into takes values('37430', '760', '1', 'Spring', 2004, 'C '); + insert into takes values('30723', '468', '2', 'Fall', 2007, 'C+'); + insert into takes values('70384', '867', '2', 'Fall', 2010, 'B-'); + insert into takes values('8843', '696', '1', 'Spring', 2002, 'B '); + insert into takes values('83462', '864', '1', 'Spring', 2006, 'B '); + insert into takes values('22325', '270', '1', 'Spring', 2010, 'A '); + insert into takes values('65433', '875', '1', 'Spring', 2005, 'C-'); + insert into takes values('88085', '559', '1', 'Fall', 2002, 'B '); + insert into takes values('35220', '663', '1', 'Spring', 2005, 'A '); + insert into takes values('47487', '468', '1', 'Fall', 2005, 'B+'); + insert into takes values('20180', '991', '1', 'Spring', 2008, 'A+'); + insert into takes values('99268', '960', '2', 'Fall', 2006, 'B '); + insert into takes values('31250', '571', '1', 'Spring', 2004, 'C '); + insert into takes values('56849', '629', '1', 'Spring', 2003, 'B+'); + insert into takes values('842', '603', '1', 'Fall', 2003, 'A '); + insert into takes values('64731', '493', '1', 'Spring', 2010, 'B '); + insert into takes values('35175', '561', '1', 'Fall', 2006, 'C '); + insert into takes values('48053', '400', '1', 'Spring', 2007, 'A '); + insert into takes values('97590', '962', '1', 'Spring', 2008, 'A '); + insert into takes values('64893', '852', '1', 'Spring', 2008, 'C+'); + insert into takes values('57985', '974', '1', 'Fall', 2003, 'A '); + insert into takes values('49792', '735', '2', 'Spring', 2010, 'A+'); + insert into takes values('65715', '747', '1', 'Spring', 2004, 'B '); + insert into takes values('92839', '304', '1', 'Fall', 2009, 'B+'); + insert into takes values('14869', '735', '1', 'Spring', 2003, 'B '); + insert into takes values('13757', '692', '1', 'Spring', 2010, 'A-'); + insert into takes values('1232', '802', '1', 'Spring', 2003, 'B-'); + insert into takes values('56089', '366', '1', 'Fall', 2005, 'B+'); + insert into takes values('37946', '105', '1', 'Fall', 2009, 'B '); + insert into takes values('6400', '105', '1', 'Fall', 2009, 'C '); + insert into takes values('48589', '242', '1', 'Fall', 2009, 'B+'); + insert into takes values('41741', '642', '1', 'Fall', 2004, 'A '); + insert into takes values('23994', '362', '1', 'Fall', 2005, 'C+'); + insert into takes values('91851', '401', '1', 'Fall', 2003, 'B '); + insert into takes values('5925', '867', '2', 'Fall', 2010, 'A-'); + insert into takes values('6729', '663', '1', 'Spring', 2005, 'A+'); + insert into takes values('32490', '795', '1', 'Spring', 2004, 'A '); + insert into takes values('85849', '489', '1', 'Fall', 2007, 'B+'); + insert into takes values('17076', '760', '1', 'Spring', 2004, 'C+'); + insert into takes values('31341', '875', '1', 'Spring', 2005, 'C+'); + insert into takes values('15457', '962', '1', 'Spring', 2008, 'B '); + insert into takes values('13290', '561', '1', 'Fall', 2006, 'B-'); + insert into takes values('94142', '843', '1', 'Fall', 2010, 'B-'); + insert into takes values('15024', '974', '1', 'Fall', 2003, 'A '); + insert into takes values('20985', '527', '1', 'Fall', 2004, 'A '); + insert into takes values('49618', '489', '1', 'Fall', 2007, 'C-'); + insert into takes values('24387', '561', '1', 'Fall', 2006, 'B+'); + insert into takes values('34322', '468', '1', 'Fall', 2005, 'A-'); + insert into takes values('51084', '545', '1', 'Fall', 2001, 'C+'); + insert into takes values('8347', '401', '1', 'Fall', 2003, 'B-'); + insert into takes values('77364', '482', '1', 'Fall', 2005, 'B '); + insert into takes values('898', '408', '1', 'Spring', 2007, 'A '); + insert into takes values('78892', '604', '1', 'Spring', 2009, 'B+'); + insert into takes values('28252', '791', '1', 'Spring', 2006, 'C-'); + insert into takes values('77000', '426', '1', 'Spring', 2006, 'B-'); + insert into takes values('32119', '663', '1', 'Spring', 2005, 'A '); + insert into takes values('63502', '694', '1', 'Fall', 2002, 'A '); + insert into takes values('75878', '319', '1', 'Spring', 2003, 'C '); + insert into takes values('19541', '852', '1', 'Spring', 2008, 'A '); + insert into takes values('50977', '875', '1', 'Spring', 2005, 'B+'); + insert into takes values('7490', '962', '1', 'Spring', 2008, 'A+'); + insert into takes values('96117', '239', '1', 'Fall', 2006, 'B-'); + insert into takes values('2178', '408', '2', 'Spring', 2003, 'C+'); + insert into takes values('5943', '972', '1', 'Spring', 2009, 'B+'); + insert into takes values('9256', '421', '1', 'Fall', 2004, 'A-'); + insert into takes values('65400', '642', '1', 'Fall', 2004, 'C+'); + insert into takes values('44258', '545', '1', 'Fall', 2001, 'B-'); + insert into takes values('93986', '468', '2', 'Fall', 2007, 'B '); + insert into takes values('52134', '334', '1', 'Fall', 2009, 'A-'); + insert into takes values('64642', '445', '1', 'Spring', 2001, 'C '); + insert into takes values('34158', '137', '1', 'Spring', 2002, 'C '); + insert into takes values('69732', '612', '1', 'Fall', 2007, 'A+'); + insert into takes values('35462', '349', '1', 'Spring', 2008, 'B-'); + insert into takes values('52866', '362', '1', 'Fall', 2005, 'A '); + insert into takes values('1922', '927', '1', 'Fall', 2002, 'A-'); + insert into takes values('95953', '192', '1', 'Fall', 2002, 'A-'); + insert into takes values('760', '852', '1', 'Spring', 2008, 'A+'); + insert into takes values('56486', '237', '2', 'Fall', 2009, 'B-'); + insert into takes values('33759', '366', '1', 'Fall', 2005, 'C+'); + insert into takes values('61065', '192', '1', 'Fall', 2002, 'C-'); + insert into takes values('40558', '629', '1', 'Spring', 2003, 'C '); + insert into takes values('4004', '274', '1', 'Fall', 2002, 'A-'); + insert into takes values('33837', '875', '1', 'Spring', 2005, 'A '); + insert into takes values('39514', '960', '1', 'Fall', 2009, 'C '); + insert into takes values('32369', '376', '1', 'Fall', 2006, 'A-'); + insert into takes values('64249', '468', '1', 'Fall', 2005, 'A '); + insert into takes values('59290', '486', '1', 'Fall', 2009, 'C-'); + insert into takes values('56598', '795', '1', 'Spring', 2004, 'C-'); + insert into takes values('70362', '599', '1', 'Spring', 2003, 'B+'); + insert into takes values('13352', '158', '2', 'Spring', 2008, 'B '); + insert into takes values('22467', '169', '2', 'Fall', 2002, 'B-'); + insert into takes values('17057', '362', '2', 'Fall', 2006, 'B-'); + insert into takes values('27687', '482', '1', 'Fall', 2005, 'B-'); + insert into takes values('76911', '875', '1', 'Spring', 2005, 'C-'); + insert into takes values('5250', '571', '1', 'Spring', 2004, 'A '); + insert into takes values('90814', '345', '1', 'Spring', 2008, 'B+'); + insert into takes values('74460', '461', '1', 'Fall', 2002, 'B-'); + insert into takes values('2795', '443', '1', 'Spring', 2010, 'A+'); + insert into takes values('21009', '349', '1', 'Spring', 2008, 'B-'); + insert into takes values('123', '443', '2', 'Spring', 2002, 'A-'); + insert into takes values('7732', '704', '1', 'Spring', 2008, 'A-'); + insert into takes values('97101', '679', '1', 'Spring', 2010, 'C+'); + insert into takes values('85680', '486', '1', 'Fall', 2009, 'C+'); + insert into takes values('55286', '962', '1', 'Spring', 2008, 'A+'); + insert into takes values('25718', '349', '1', 'Spring', 2008, 'B+'); + insert into takes values('99451', '735', '2', 'Spring', 2010, 'B-'); + insert into takes values('69783', '408', '1', 'Spring', 2007, 'C+'); + insert into takes values('14621', '158', '1', 'Fall', 2008, 'A-'); + insert into takes values('63645', '843', '1', 'Fall', 2010, 'C+'); + insert into takes values('58846', '200', '2', 'Fall', 2002, 'B-'); + insert into takes values('90814', '158', '1', 'Fall', 2008, 'B '); + insert into takes values('69747', '468', '2', 'Fall', 2007, 'C-'); + insert into takes values('51768', '169', '1', 'Spring', 2007, 'C '); + insert into takes values('83622', '696', '1', 'Spring', 2002, 'C+'); + insert into takes values('914', '559', '1', 'Fall', 2002, 'A-'); + insert into takes values('44998', '352', '1', 'Spring', 2006, 'C '); + insert into takes values('14668', '629', '1', 'Spring', 2003, 'B-'); + insert into takes values('71944', '802', '1', 'Spring', 2003, 'A '); + insert into takes values('54620', '237', '2', 'Fall', 2009, 'A '); + insert into takes values('70099', '493', '1', 'Spring', 2010, 'B-'); + insert into takes values('14023', '962', '1', 'Spring', 2008, 'A-'); + insert into takes values('69730', '445', '1', 'Spring', 2001, 'C-'); + insert into takes values('6474', '476', '1', 'Fall', 2010, 'C-'); + insert into takes values('71878', '991', '1', 'Spring', 2008, 'B '); + insert into takes values('4435', '158', '2', 'Spring', 2008, 'A '); + insert into takes values('82688', '362', '2', 'Fall', 2006, 'A+'); + insert into takes values('9183', '735', '2', 'Spring', 2010, 'C+'); + insert into takes values('499', '791', '1', 'Spring', 2006, 'A+'); + insert into takes values('25362', '612', '1', 'Fall', 2007, 'A '); + insert into takes values('46725', '362', '2', 'Fall', 2006, 'C '); + insert into takes values('70384', '843', '1', 'Fall', 2010, 'C-'); + insert into takes values('38902', '747', '1', 'Spring', 2004, 'C+'); + insert into takes values('7035', '408', '2', 'Spring', 2003, 'A+'); + insert into takes values('36513', '237', '2', 'Fall', 2009, 'A-'); + insert into takes values('99189', '679', '1', 'Spring', 2010, 'A+'); + insert into takes values('96134', '875', '1', 'Spring', 2005, 'A-'); + insert into takes values('15726', '642', '1', 'Fall', 2004, 'C '); + insert into takes values('94371', '237', '1', 'Spring', 2008, 'C '); + insert into takes values('52076', '852', '1', 'Spring', 2008, 'C+'); + insert into takes values('61232', '960', '1', 'Fall', 2009, 'A '); + insert into takes values('80698', '105', '1', 'Fall', 2009, 'A-'); + insert into takes values('71944', '959', '1', 'Fall', 2006, 'B-'); + insert into takes values('84432', '663', '1', 'Spring', 2005, 'B '); + insert into takes values('33546', '192', '1', 'Fall', 2002, 'B '); + insert into takes values('13403', '493', '1', 'Spring', 2010, 'B '); + insert into takes values('67021', '489', '1', 'Fall', 2007, 'B-'); + insert into takes values('93708', '991', '1', 'Spring', 2008, 'B+'); + insert into takes values('71287', '192', '1', 'Fall', 2002, 'C '); + insert into takes values('51975', '843', '1', 'Fall', 2010, 'C-'); + insert into takes values('45002', '581', '1', 'Spring', 2005, 'C-'); + insert into takes values('64934', '893', '1', 'Fall', 2007, 'A '); + insert into takes values('59172', '960', '2', 'Fall', 2006, 'A+'); + insert into takes values('75173', '960', '1', 'Fall', 2009, 'C-'); + insert into takes values('89551', '105', '1', 'Fall', 2009, 'B+'); + insert into takes values('44816', '696', '1', 'Spring', 2002, 'A-'); + insert into takes values('86641', '808', '1', 'Fall', 2003, 'B '); + insert into takes values('70564', '591', '1', 'Spring', 2005, 'C-'); + insert into takes values('70828', '352', '1', 'Spring', 2006, 'B-'); + insert into takes values('65329', '242', '1', 'Fall', 2009, 'B+'); + insert into takes values('40558', '571', '1', 'Spring', 2004, 'B+'); + insert into takes values('10834', '603', '1', 'Fall', 2003, 'B-'); + insert into takes values('68242', '401', '1', 'Fall', 2003, 'A '); + insert into takes values('16075', '493', '1', 'Spring', 2010, 'C-'); + insert into takes values('76250', '415', '1', 'Fall', 2010, 'B+'); + insert into takes values('66212', '239', '1', 'Fall', 2006, 'B+'); + insert into takes values('37946', '400', '2', 'Fall', 2003, 'C+'); + insert into takes values('88887', '468', '2', 'Fall', 2007, 'B-'); + insert into takes values('78787', '493', '1', 'Spring', 2010, 'B-'); + insert into takes values('63243', '735', '2', 'Spring', 2010, 'C '); + insert into takes values('43854', '960', '2', 'Fall', 2006, 'B+'); + insert into takes values('11262', '200', '2', 'Fall', 2002, 'B-'); + insert into takes values('57190', '626', '1', 'Fall', 2006, 'A+'); + insert into takes values('13403', '352', '1', 'Spring', 2006, 'C-'); + insert into takes values('17192', '489', '1', 'Fall', 2007, 'B '); + insert into takes values('9947', '408', '2', 'Spring', 2003, 'A '); + insert into takes values('72186', '893', '1', 'Fall', 2007, 'B-'); + insert into takes values('18469', '603', '1', 'Fall', 2003, 'B+'); + insert into takes values('75046', '476', '1', 'Fall', 2010, 'B+'); + insert into takes values('66494', '694', '1', 'Fall', 2002, 'B+'); + insert into takes values('16993', '571', '1', 'Spring', 2004, 'B '); + insert into takes values('39612', '559', '1', 'Fall', 2002, 'A '); + insert into takes values('57456', '642', '1', 'Fall', 2004, 'A '); + insert into takes values('14214', '735', '2', 'Spring', 2010, 'A-'); + insert into takes values('85534', '735', '2', 'Spring', 2010, 'C-'); + insert into takes values('52134', '137', '1', 'Spring', 2002, 'A-'); + insert into takes values('35362', '338', '2', 'Spring', 2006, 'C-'); + insert into takes values('18941', '401', '1', 'Fall', 2003, 'B+'); + insert into takes values('37219', '313', '1', 'Fall', 2010, 'B '); + insert into takes values('5208', '696', '1', 'Spring', 2002, 'C '); + insert into takes values('3639', '105', '1', 'Fall', 2009, 'C+'); + insert into takes values('52523', '486', '1', 'Fall', 2009, 'A+'); + insert into takes values('94814', '496', '1', 'Fall', 2001, 'A '); + insert into takes values('70918', '735', '2', 'Spring', 2010, 'B '); + insert into takes values('89734', '200', '1', 'Spring', 2007, 'B '); + insert into takes values('35462', '694', '1', 'Fall', 2002, 'A+'); + insert into takes values('79210', '400', '2', 'Fall', 2003, 'C '); + insert into takes values('70924', '760', '1', 'Spring', 2004, 'B+'); + insert into takes values('93986', '349', '1', 'Spring', 2008, 'A+'); + insert into takes values('7514', '704', '1', 'Spring', 2008, 'B '); + insert into takes values('81638', '959', '1', 'Fall', 2006, 'B+'); + insert into takes values('10033', '692', '1', 'Spring', 2010, 'A '); + insert into takes values('51549', '338', '1', 'Spring', 2007, 'C-'); + insert into takes values('43130', '400', '1', 'Spring', 2007, 'B+'); + insert into takes values('50664', '679', '1', 'Spring', 2010, 'A-'); + insert into takes values('47025', '760', '1', 'Spring', 2004, 'C-'); + insert into takes values('63538', '735', '2', 'Spring', 2010, 'A '); + insert into takes values('7035', '468', '1', 'Fall', 2005, 'B '); + insert into takes values('27236', '604', '1', 'Spring', 2009, 'B-'); + insert into takes values('72006', '864', '1', 'Spring', 2006, 'B '); + insert into takes values('31554', '571', '1', 'Spring', 2004, 'A '); + insert into takes values('15249', '362', '1', 'Fall', 2005, 'C '); + insert into takes values('30650', '313', '1', 'Fall', 2010, 'A-'); + insert into takes values('63040', '258', '1', 'Fall', 2007, 'A-'); + insert into takes values('40738', '631', '1', 'Spring', 2007, 'A+'); + insert into takes values('88045', '457', '1', 'Spring', 2001, 'C+'); + insert into takes values('41450', '694', '1', 'Fall', 2002, 'C-'); + insert into takes values('57431', '239', '1', 'Fall', 2006, 'A+'); + insert into takes values('75116', '735', '1', 'Spring', 2003, 'A '); + insert into takes values('30858', '604', '1', 'Spring', 2009, 'B '); + insert into takes values('29849', '270', '1', 'Spring', 2010, 'B-'); + insert into takes values('82063', '791', '1', 'Spring', 2006, 'B '); + insert into takes values('63582', '748', '1', 'Fall', 2003, 'A+'); + insert into takes values('64249', '591', '1', 'Spring', 2005, 'C '); + insert into takes values('86934', '793', '1', 'Spring', 2002, 'B-'); + insert into takes values('17831', '704', '1', 'Spring', 2008, 'A-'); + insert into takes values('7123', '603', '1', 'Fall', 2003, 'A-'); + insert into takes values('95626', '972', '1', 'Spring', 2009, 'B '); + insert into takes values('75116', '852', '1', 'Spring', 2008, 'B+'); + insert into takes values('13365', '962', '1', 'Spring', 2008, 'B '); + insert into takes values('26473', '270', '1', 'Spring', 2010, 'A '); + insert into takes values('96117', '352', '1', 'Spring', 2006, 'A+'); + insert into takes values('94311', '319', '1', 'Spring', 2003, 'A-'); + insert into takes values('79210', '747', '1', 'Spring', 2004, 'A-'); + insert into takes values('40116', '679', '1', 'Spring', 2010, 'A+'); + insert into takes values('30896', '408', '2', 'Spring', 2003, 'B '); + insert into takes values('76895', '242', '1', 'Fall', 2009, 'C '); + insert into takes values('85849', '704', '1', 'Spring', 2008, 'B+'); + insert into takes values('1110', '974', '1', 'Fall', 2003, 'C+'); + insert into takes values('14563', '313', '1', 'Fall', 2010, 'A-'); + insert into takes values('4508', '192', '1', 'Fall', 2002, 'A+'); + insert into takes values('36052', '702', '1', 'Spring', 2001, 'C-'); + insert into takes values('5414', '362', '2', 'Fall', 2006, 'A+'); + insert into takes values('53728', '959', '1', 'Fall', 2006, 'A+'); + insert into takes values('65433', '972', '1', 'Spring', 2009, 'B '); + insert into takes values('15883', '561', '1', 'Fall', 2006, 'B-'); + insert into takes values('38013', '486', '1', 'Fall', 2009, 'C '); + insert into takes values('65676', '864', '1', 'Spring', 2006, 'C+'); + insert into takes values('65038', '242', '1', 'Fall', 2009, 'C+'); + insert into takes values('25362', '362', '2', 'Fall', 2006, 'A '); + insert into takes values('84495', '852', '1', 'Spring', 2008, 'A+'); + insert into takes values('14023', '319', '1', 'Spring', 2003, 'B+'); + insert into takes values('28977', '808', '1', 'Fall', 2003, 'B+'); + insert into takes values('25068', '629', '1', 'Spring', 2003, 'B '); + insert into takes values('24809', '591', '1', 'Spring', 2005, 'C '); + insert into takes values('25940', '362', '2', 'Fall', 2006, 'C '); + insert into takes values('37869', '445', '1', 'Spring', 2001, 'B+'); + insert into takes values('50039', '345', '1', 'Spring', 2008, 'A-'); + insert into takes values('41261', '352', '1', 'Spring', 2006, 'B-'); + insert into takes values('43989', '242', '1', 'Fall', 2009, 'C-'); + insert into takes values('48469', '927', '1', 'Fall', 2002, 'A-'); + insert into takes values('81789', '802', '1', 'Spring', 2003, 'A '); + insert into takes values('35523', '415', '1', 'Fall', 2010, 'A+'); + insert into takes values('51975', '401', '1', 'Fall', 2003, 'A-'); + insert into takes values('36657', '192', '1', 'Fall', 2002, 'C+'); + insert into takes values('39978', '200', '1', 'Spring', 2007, 'A '); + insert into takes values('48778', '376', '1', 'Fall', 2006, 'C+'); + insert into takes values('48778', '991', '1', 'Spring', 2008, 'C '); + insert into takes values('48678', '702', '1', 'Spring', 2001, 'C+'); + insert into takes values('16593', '200', '2', 'Fall', 2002, 'B-'); + insert into takes values('81785', '169', '2', 'Fall', 2002, 'B+'); + insert into takes values('32368', '626', '1', 'Fall', 2006, 'A-'); + insert into takes values('72622', '270', '1', 'Spring', 2010, 'A '); + insert into takes values('83728', '408', '1', 'Spring', 2007, 'B+'); + insert into takes values('80990', '105', '2', 'Fall', 2002, 'A-'); + insert into takes values('22467', '237', '2', 'Fall', 2009, 'C+'); + insert into takes values('23439', '927', '1', 'Fall', 2002, 'B-'); + insert into takes values('17397', '642', '1', 'Fall', 2004, 'B+'); + insert into takes values('84189', '486', '1', 'Fall', 2009, 'A+'); + insert into takes values('67051', '476', '1', 'Fall', 2010, 'B-'); + insert into takes values('15698', '626', '1', 'Fall', 2006, 'B+'); + insert into takes values('9360', '352', '1', 'Spring', 2006, 'B+'); + insert into takes values('31442', '493', '1', 'Spring', 2010, 'C '); + insert into takes values('37715', '426', '1', 'Spring', 2006, 'C '); + insert into takes values('64401', '867', '2', 'Fall', 2010, 'A '); + insert into takes values('83557', '200', '1', 'Spring', 2007, 'A+'); + insert into takes values('43016', '169', '1', 'Spring', 2007, 'A '); + insert into takes values('55915', '443', '1', 'Spring', 2010, 'A+'); + insert into takes values('47379', '679', '1', 'Spring', 2010, 'A+'); + insert into takes values('56941', '867', '1', 'Fall', 2006, 'B-'); + insert into takes values('64164', '735', '2', 'Spring', 2010, 'C-'); + insert into takes values('75878', '702', '1', 'Spring', 2001, 'C '); + insert into takes values('5005', '362', '3', 'Spring', 2008, 'A+'); + insert into takes values('7854', '400', '1', 'Spring', 2007, 'A-'); + insert into takes values('74163', '421', '1', 'Fall', 2004, 'C '); + insert into takes values('75241', '974', '1', 'Fall', 2003, 'B+'); + insert into takes values('14499', '974', '1', 'Fall', 2003, 'C+'); + insert into takes values('49280', '362', '3', 'Spring', 2008, 'A '); + insert into takes values('95284', '345', '1', 'Spring', 2008, 'C+'); + insert into takes values('37653', '445', '1', 'Spring', 2001, 'C-'); + insert into takes values('17997', '843', '1', 'Fall', 2010, 'C-'); + insert into takes values('75772', '443', '2', 'Spring', 2002, 'A-'); + insert into takes values('87015', '604', '1', 'Spring', 2009, 'A+'); + insert into takes values('46155', '461', '1', 'Fall', 2002, 'A+'); + insert into takes values('50719', '200', '1', 'Spring', 2007, 'A-'); + insert into takes values('80113', '974', '1', 'Fall', 2003, 'C '); + insert into takes values('35', '366', '1', 'Fall', 2005, 'A '); + insert into takes values('1812', '421', '1', 'Fall', 2004, 'C-'); + insert into takes values('54728', '258', '1', 'Fall', 2007, 'A-'); + insert into takes values('93631', '747', '1', 'Spring', 2004, 'B+'); + insert into takes values('7390', '679', '1', 'Spring', 2010, 'A+'); + insert into takes values('34386', '704', '1', 'Spring', 2008, 'B-'); + insert into takes values('95697', '489', '1', 'Fall', 2007, 'B '); + insert into takes values('91992', '468', '2', 'Fall', 2007, 'A+'); + insert into takes values('64820', '400', '2', 'Fall', 2003, 'C+'); + insert into takes values('85754', '457', '1', 'Spring', 2001, 'B+'); + insert into takes values('20974', '795', '1', 'Spring', 2004, 'A '); + insert into takes values('31337', '349', '1', 'Spring', 2008, 'B '); + insert into takes values('6209', '476', '1', 'Fall', 2010, 'C+'); + insert into takes values('28518', '105', '2', 'Fall', 2002, 'B+'); + insert into takes values('65987', '867', '2', 'Fall', 2010, 'C+'); + insert into takes values('49073', '421', '1', 'Fall', 2004, 'A '); + insert into takes values('28299', '802', '1', 'Spring', 2003, 'A '); + insert into takes values('30110', '237', '1', 'Spring', 2008, 'B-'); + insert into takes values('50703', '843', '1', 'Fall', 2010, 'B-'); + insert into takes values('18808', '960', '2', 'Fall', 2006, 'B-'); + insert into takes values('77364', '200', '1', 'Spring', 2007, 'B+'); + insert into takes values('8483', '991', '1', 'Spring', 2008, 'C+'); + insert into takes values('19861', '875', '1', 'Spring', 2005, 'B-'); + insert into takes values('78552', '105', '1', 'Fall', 2009, 'A-'); + insert into takes values('55857', '334', '1', 'Fall', 2009, 'C-'); + insert into takes values('3640', '704', '1', 'Spring', 2008, 'C+'); + insert into takes values('72014', '735', '1', 'Spring', 2003, 'C '); + insert into takes values('94522', '974', '1', 'Fall', 2003, 'C+'); + insert into takes values('21766', '962', '1', 'Spring', 2008, 'A-'); + insert into takes values('11201', '349', '1', 'Spring', 2008, 'B+'); + insert into takes values('47379', '258', '1', 'Fall', 2007, 'C '); + insert into takes values('57941', '679', '1', 'Spring', 2010, 'C+'); + insert into takes values('90353', '200', '2', 'Fall', 2002, 'A+'); + insert into takes values('58701', '496', '1', 'Fall', 2001, 'A+'); + insert into takes values('84410', '927', '1', 'Fall', 2002, 'C-'); + insert into takes values('41818', '561', '1', 'Fall', 2006, 'A '); + insert into takes values('95840', '991', '1', 'Spring', 2008, 'B '); + insert into takes values('91616', '426', '1', 'Spring', 2006, 'C+'); + insert into takes values('38668', '362', '2', 'Fall', 2006, 'A-'); + insert into takes values('39046', '748', '1', 'Fall', 2003, 'C+'); + insert into takes values('47126', '893', '1', 'Fall', 2007, 'C '); + insert into takes values('11578', '972', '1', 'Spring', 2009, 'A-'); + insert into takes values('75299', '137', '1', 'Spring', 2002, 'C-'); + insert into takes values('37430', '362', '1', 'Fall', 2005, 'B '); + insert into takes values('52157', '972', '1', 'Spring', 2009, 'A-'); + insert into takes values('78434', '400', '1', 'Spring', 2007, 'A+'); + insert into takes values('67018', '476', '1', 'Fall', 2010, 'C+'); + insert into takes values('98056', '599', '1', 'Spring', 2003, 'B-'); + insert into takes values('87193', '105', '2', 'Fall', 2002, 'A+'); + insert into takes values('25942', '200', '2', 'Fall', 2002, 'C+'); + insert into takes values('75560', '791', '1', 'Spring', 2006, 'C+'); + insert into takes values('73602', '604', '1', 'Spring', 2009, 'B '); + insert into takes values('34770', '991', '1', 'Spring', 2008, 'C+'); + insert into takes values('91978', '400', '2', 'Fall', 2003, 'C '); + insert into takes values('2419', '496', '1', 'Fall', 2001, 'C '); + insert into takes values('42556', '270', '1', 'Spring', 2010, 'A+'); + insert into takes values('11682', '313', '1', 'Fall', 2010, 'A+'); + insert into takes values('49759', '366', '1', 'Fall', 2005, 'B-'); + insert into takes values('22226', '489', '1', 'Fall', 2007, 'C '); + insert into takes values('75040', '612', '1', 'Fall', 2007, 'C+'); + insert into takes values('85575', '443', '1', 'Spring', 2010, 'A+'); + insert into takes values('76224', '258', '1', 'Fall', 2007, 'B-'); + insert into takes values('94178', '692', '1', 'Spring', 2010, 'C '); + insert into takes values('78116', '864', '1', 'Spring', 2006, 'A-'); + insert into takes values('51955', '408', '2', 'Spring', 2003, 'C+'); + insert into takes values('52945', '408', '1', 'Spring', 2007, 'A-'); + insert into takes values('89140', '702', '1', 'Spring', 2001, 'A '); + insert into takes values('23992', '237', '2', 'Fall', 2009, 'C '); + insert into takes values('3143', '200', '1', 'Spring', 2007, 'C-'); + insert into takes values('38602', '338', '1', 'Spring', 2007, 'C '); + insert into takes values('59397', '200', '1', 'Spring', 2007, 'A+'); + insert into takes values('20985', '158', '2', 'Spring', 2008, 'B+'); + insert into takes values('47487', '679', '1', 'Spring', 2010, 'A-'); + insert into takes values('46762', '843', '1', 'Fall', 2010, 'B-'); + insert into takes values('89140', '545', '1', 'Fall', 2001, 'C-'); + insert into takes values('65433', '612', '1', 'Fall', 2007, 'C '); + insert into takes values('52523', '795', '1', 'Spring', 2004, 'A-'); + insert into takes values('77364', '443', '2', 'Spring', 2002, 'B-'); + insert into takes values('30110', '852', '1', 'Spring', 2008, 'B-'); + insert into takes values('34542', '200', '1', 'Spring', 2007, 'B+'); + insert into takes values('68720', '137', '1', 'Spring', 2002, 'B-'); + insert into takes values('23311', '239', '1', 'Fall', 2006, 'B+'); + insert into takes values('14284', '748', '1', 'Fall', 2003, 'A+'); + insert into takes values('56232', '319', '1', 'Spring', 2003, 'B-'); + insert into takes values('67657', '313', '1', 'Fall', 2010, 'C+'); + insert into takes values('78434', '489', '1', 'Fall', 2007, 'C-'); + insert into takes values('14874', '338', '2', 'Spring', 2006, 'A+'); + insert into takes values('82591', '461', '1', 'Fall', 2002, 'C '); + insert into takes values('35935', '400', '1', 'Spring', 2007, 'B-'); + insert into takes values('48901', '319', '1', 'Spring', 2003, 'C '); + insert into takes values('48640', '959', '1', 'Fall', 2006, 'B '); + insert into takes values('79446', '949', '1', 'Fall', 2007, 'C+'); + insert into takes values('92417', '366', '1', 'Fall', 2005, 'C+'); + insert into takes values('67542', '581', '1', 'Spring', 2005, 'C '); + insert into takes values('62749', '527', '1', 'Fall', 2004, 'A+'); + insert into takes values('12615', '443', '2', 'Spring', 2002, 'B+'); + insert into takes values('14563', '200', '1', 'Spring', 2007, 'A '); + insert into takes values('31086', '748', '1', 'Fall', 2003, 'A+'); + insert into takes values('46725', '679', '1', 'Spring', 2010, 'B-'); + insert into takes values('35498', '527', '1', 'Fall', 2004, 'C '); + insert into takes values('33206', '864', '1', 'Spring', 2006, 'A '); + insert into takes values('37339', '349', '1', 'Spring', 2008, 'B+'); + insert into takes values('77289', '443', '2', 'Spring', 2002, 'B '); + insert into takes values('4248', '702', '1', 'Spring', 2001, 'C+'); + insert into takes values('92849', '192', '1', 'Fall', 2002, 'C+'); + insert into takes values('43616', '274', '1', 'Fall', 2002, 'C '); + insert into takes values('47487', '893', '1', 'Fall', 2007, 'A '); + insert into takes values('78314', '571', '1', 'Spring', 2004, 'B '); + insert into takes values('987', '237', '2', 'Fall', 2009, 'C+'); + insert into takes values('96153', '972', '1', 'Spring', 2009, 'C-'); + insert into takes values('16075', '338', '1', 'Spring', 2007, 'B '); + insert into takes values('23506', '795', '1', 'Spring', 2004, 'A '); + insert into takes values('22198', '704', '1', 'Spring', 2008, 'C '); + insert into takes values('3693', '169', '1', 'Spring', 2007, 'A '); + insert into takes values('31137', '527', '1', 'Fall', 2004, 'B-'); + insert into takes values('27804', '974', '1', 'Fall', 2003, 'B+'); + insert into takes values('71085', '875', '1', 'Spring', 2005, 'C+'); + insert into takes values('53047', '735', '1', 'Spring', 2003, 'A+'); + insert into takes values('10663', '972', '1', 'Spring', 2009, 'B+'); + insert into takes values('18108', '991', '1', 'Spring', 2008, 'A-'); + insert into takes values('14628', '735', '2', 'Spring', 2010, 'C '); + insert into takes values('81883', '581', '1', 'Spring', 2005, 'A+'); + insert into takes values('25143', '974', '1', 'Fall', 2003, 'B+'); + insert into takes values('85602', '864', '1', 'Spring', 2006, 'A-'); + insert into takes values('45300', '612', '1', 'Fall', 2007, 'A '); + insert into takes values('78434', '192', '1', 'Fall', 2002, 'C '); + insert into takes values('8022', '400', '2', 'Fall', 2003, 'B+'); + insert into takes values('33837', '408', '1', 'Spring', 2007, 'C+'); + insert into takes values('52494', '237', '1', 'Spring', 2008, 'A '); + insert into takes values('17911', '747', '1', 'Spring', 2004, 'A+'); + insert into takes values('65987', '158', '1', 'Fall', 2008, 'A+'); + insert into takes values('72177', '959', '1', 'Fall', 2006, 'A-'); + insert into takes values('71387', '852', '1', 'Spring', 2008, 'C+'); + insert into takes values('58874', '192', '1', 'Fall', 2002, 'B+'); + insert into takes values('4004', '352', '1', 'Spring', 2006, 'B+'); + insert into takes values('34126', '352', '1', 'Spring', 2006, 'B+'); + insert into takes values('93631', '867', '2', 'Fall', 2010, 'A '); + insert into takes values('44206', '694', '1', 'Fall', 2002, 'A-'); + insert into takes values('32376', '795', '1', 'Spring', 2004, 'B '); + insert into takes values('60762', '270', '1', 'Spring', 2010, 'B '); + insert into takes values('52929', '692', '1', 'Spring', 2010, 'B '); + insert into takes values('81789', '270', '1', 'Spring', 2010, 'B-'); + insert into takes values('6523', '599', '1', 'Spring', 2003, 'C '); + insert into takes values('1922', '362', '2', 'Fall', 2006, 'A+'); + insert into takes values('66356', '421', '1', 'Fall', 2004, 'C-'); + insert into takes values('92417', '400', '1', 'Spring', 2007, 'B+'); + insert into takes values('75241', '476', '1', 'Fall', 2010, 'C+'); + insert into takes values('898', '400', '2', 'Fall', 2003, 'B '); + insert into takes values('75938', '426', '1', 'Spring', 2006, 'B-'); + insert into takes values('90082', '603', '1', 'Fall', 2003, 'B '); + insert into takes values('81638', '599', '1', 'Spring', 2003, 'C-'); + insert into takes values('79170', '137', '1', 'Spring', 2002, 'A+'); + insert into takes values('38602', '345', '1', 'Spring', 2008, 'B '); + insert into takes values('68516', '400', '2', 'Fall', 2003, 'C+'); + insert into takes values('10834', '962', '1', 'Spring', 2008, 'B '); + insert into takes values('40682', '338', '1', 'Spring', 2007, 'B-'); + insert into takes values('36303', '974', '1', 'Fall', 2003, 'B+'); + insert into takes values('84189', '760', '1', 'Spring', 2004, 'B+'); + insert into takes values('44551', '808', '1', 'Fall', 2003, 'C+'); + insert into takes values('40992', '445', '1', 'Spring', 2001, 'C-'); + insert into takes values('96895', '843', '1', 'Fall', 2010, 'B '); + insert into takes values('94766', '747', '1', 'Spring', 2004, 'C-'); + insert into takes values('36052', '960', '1', 'Fall', 2009, 'C '); + insert into takes values('92385', '747', '1', 'Spring', 2004, 'B-'); + insert into takes values('43016', '468', '2', 'Fall', 2007, 'A '); + insert into takes values('11201', '793', '1', 'Spring', 2002, 'B '); + insert into takes values('16480', '629', '1', 'Spring', 2003, 'C-'); + insert into takes values('93708', '612', '1', 'Fall', 2007, 'A-'); + insert into takes values('98690', '486', '1', 'Fall', 2009, 'C-'); + insert into takes values('6195', '748', '1', 'Fall', 2003, 'B+'); + insert into takes values('46769', '158', '1', 'Fall', 2008, 'A-'); + insert into takes values('99073', '571', '1', 'Spring', 2004, 'A '); + insert into takes values('57185', '169', '1', 'Spring', 2007, 'C+'); + insert into takes values('71426', '571', '1', 'Spring', 2004, 'B '); + insert into takes values('99730', '599', '1', 'Spring', 2003, 'A '); + insert into takes values('30650', '362', '1', 'Fall', 2005, 'B+'); + insert into takes values('23457', '704', '1', 'Spring', 2008, 'B-'); + insert into takes values('8457', '408', '1', 'Spring', 2007, 'B+'); + insert into takes values('83573', '192', '1', 'Fall', 2002, 'A+'); + insert into takes values('8957', '400', '2', 'Fall', 2003, 'A+'); + insert into takes values('96741', '400', '2', 'Fall', 2003, 'B-'); + insert into takes values('62054', '408', '1', 'Spring', 2007, 'B-'); + insert into takes values('46694', '338', '2', 'Spring', 2006, 'A-'); + insert into takes values('56299', '274', '1', 'Fall', 2002, 'B+'); + insert into takes values('55915', '400', '2', 'Fall', 2003, 'A '); + insert into takes values('86573', '571', '1', 'Spring', 2004, 'B-'); + insert into takes values('15430', '747', '1', 'Spring', 2004, 'C+'); + insert into takes values('90814', '612', '1', 'Fall', 2007, 'B '); + insert into takes values('92040', '362', '3', 'Spring', 2008, 'C+'); + insert into takes values('36102', '864', '1', 'Spring', 2006, 'C '); + insert into takes values('21394', '345', '1', 'Spring', 2008, 'C+'); + insert into takes values('14639', '642', '1', 'Fall', 2004, 'A+'); + insert into takes values('96085', '445', '1', 'Spring', 2001, 'A+'); + insert into takes values('17924', '626', '1', 'Fall', 2006, 'A '); + insert into takes values('44985', '793', '1', 'Spring', 2002, 'A-'); + insert into takes values('35588', '486', '1', 'Fall', 2009, 'C-'); + insert into takes values('70965', '663', '1', 'Spring', 2005, 'A+'); + insert into takes values('40897', '169', '2', 'Fall', 2002, 'C+'); + insert into takes values('25077', '400', '2', 'Fall', 2003, 'A+'); + insert into takes values('81550', '735', '2', 'Spring', 2010, 'C+'); + insert into takes values('57962', '875', '1', 'Spring', 2005, 'B '); + insert into takes values('35588', '137', '1', 'Spring', 2002, 'B+'); + insert into takes values('61402', '802', '1', 'Spring', 2003, 'A+'); + insert into takes values('44816', '704', '1', 'Spring', 2008, 'A '); + insert into takes values('54508', '545', '1', 'Fall', 2001, 'B '); + insert into takes values('2561', '591', '1', 'Spring', 2005, 'C+'); + insert into takes values('49813', '169', '2', 'Fall', 2002, 'C '); + insert into takes values('27662', '642', '1', 'Fall', 2004, 'B '); + insert into takes values('1285', '237', '1', 'Spring', 2008, 'C+'); + insert into takes values('96988', '482', '1', 'Fall', 2005, 'B '); + insert into takes values('81150', '476', '1', 'Fall', 2010, 'C+'); + insert into takes values('95046', '760', '1', 'Spring', 2004, 'A+'); + insert into takes values('80420', '192', '1', 'Fall', 2002, 'C-'); + insert into takes values('85809', '893', '1', 'Fall', 2007, 'A+'); + insert into takes values('33837', '345', '1', 'Spring', 2008, 'C '); + insert into takes values('61364', '802', '1', 'Spring', 2003, 'B '); + insert into takes values('47379', '443', '1', 'Spring', 2010, 'C-'); + insert into takes values('56299', '875', '1', 'Spring', 2005, 'C '); + insert into takes values('48640', '192', '1', 'Fall', 2002, 'C+'); + insert into takes values('43226', '704', '1', 'Spring', 2008, 'A-'); + insert into takes values('30397', '319', '1', 'Spring', 2003, 'C-'); + insert into takes values('57160', '599', '1', 'Spring', 2003, 'C-'); + insert into takes values('65396', '400', '2', 'Fall', 2003, 'A '); + insert into takes values('14628', '158', '1', 'Fall', 2008, 'B '); + insert into takes values('8957', '362', '1', 'Fall', 2005, 'C+'); + insert into takes values('85746', '629', '1', 'Spring', 2003, 'C '); + insert into takes values('57456', '808', '1', 'Fall', 2003, 'A-'); + insert into takes values('9440', '445', '1', 'Spring', 2001, 'B+'); + insert into takes values('86552', '559', '1', 'Fall', 2002, 'C+'); + insert into takes values('73206', '468', '1', 'Fall', 2005, 'B+'); + insert into takes values('15578', '352', '1', 'Spring', 2006, 'C+'); + insert into takes values('36263', '843', '1', 'Fall', 2010, 'B-'); + insert into takes values('44206', '581', '1', 'Spring', 2005, 'C+'); + insert into takes values('52120', '843', '1', 'Fall', 2010, 'A-'); + insert into takes values('74639', '105', '1', 'Fall', 2009, 'C+'); + insert into takes values('90124', '960', '1', 'Fall', 2009, 'A+'); + insert into takes values('75231', '169', '1', 'Spring', 2007, 'B+'); + insert into takes values('68779', '760', '1', 'Spring', 2004, 'C+'); + insert into takes values('4034', '867', '2', 'Fall', 2010, 'B+'); + insert into takes values('53089', '445', '1', 'Spring', 2001, 'B-'); + insert into takes values('10727', '237', '1', 'Spring', 2008, 'B '); + insert into takes values('29665', '696', '1', 'Spring', 2002, 'C-'); + insert into takes values('20489', '864', '1', 'Spring', 2006, 'B+'); + insert into takes values('54296', '334', '1', 'Fall', 2009, 'C '); + insert into takes values('16528', '679', '1', 'Spring', 2010, 'B '); + insert into takes values('914', '105', '1', 'Fall', 2009, 'A-'); + insert into takes values('83622', '603', '1', 'Fall', 2003, 'A-'); + insert into takes values('21556', '808', '1', 'Fall', 2003, 'B-'); + insert into takes values('85211', '852', '1', 'Spring', 2008, 'A+'); + insert into takes values('4355', '270', '1', 'Spring', 2010, 'B '); + insert into takes values('22142', '489', '1', 'Fall', 2007, 'C '); + insert into takes values('69632', '960', '2', 'Fall', 2006, 'C-'); + insert into takes values('58081', '875', '1', 'Spring', 2005, 'A '); + insert into takes values('7854', '612', '1', 'Fall', 2007, 'B-'); + insert into takes values('20445', '692', '1', 'Spring', 2010, 'B '); + insert into takes values('27952', '603', '1', 'Fall', 2003, 'C '); + insert into takes values('46106', '852', '1', 'Spring', 2008, 'C+'); + insert into takes values('77364', '545', '1', 'Fall', 2001, 'C '); + insert into takes values('92464', '704', '1', 'Spring', 2008, 'B-'); + insert into takes values('90004', '702', '1', 'Spring', 2001, 'B '); + insert into takes values('33107', '408', '2', 'Spring', 2003, 'A-'); + insert into takes values('83747', '362', '3', 'Spring', 2008, 'A '); + insert into takes values('92332', '334', '1', 'Fall', 2009, 'A '); + insert into takes values('11194', '545', '1', 'Fall', 2001, 'B-'); + insert into takes values('41599', '237', '2', 'Fall', 2009, 'B-'); + insert into takes values('70021', '493', '1', 'Spring', 2010, 'A+'); + insert into takes values('88045', '852', '1', 'Spring', 2008, 'B '); + insert into takes values('33201', '875', '1', 'Spring', 2005, 'B '); + insert into takes values('95027', '747', '1', 'Spring', 2004, 'C+'); + insert into takes values('56003', '760', '1', 'Spring', 2004, 'C+'); + insert into takes values('83691', '991', '1', 'Spring', 2008, 'C+'); + insert into takes values('90234', '158', '1', 'Fall', 2008, 'C+'); + insert into takes values('13081', '795', '1', 'Spring', 2004, 'A-'); + insert into takes values('50873', '408', '2', 'Spring', 2003, 'A-'); + insert into takes values('24442', '962', '1', 'Spring', 2008, 'B-'); + insert into takes values('88302', '864', '1', 'Spring', 2006, 'C+'); + insert into takes values('38676', '158', '2', 'Spring', 2008, 'B '); + insert into takes values('39254', '274', '1', 'Fall', 2002, 'A '); + insert into takes values('39892', '362', '2', 'Fall', 2006, 'A-'); + insert into takes values('78892', '867', '2', 'Fall', 2010, 'B-'); + insert into takes values('40044', '612', '1', 'Fall', 2007, 'C-'); + insert into takes values('80610', '443', '2', 'Spring', 2002, 'A '); + insert into takes values('66813', '401', '1', 'Fall', 2003, 'B-'); + insert into takes values('37103', '692', '1', 'Spring', 2010, 'C-'); + insert into takes values('86573', '158', '1', 'Fall', 2008, 'A-'); + insert into takes values('67514', '482', '1', 'Fall', 2005, 'B-'); + insert into takes values('22086', '959', '1', 'Fall', 2006, 'B+'); + insert into takes values('32345', '864', '1', 'Spring', 2006, 'C-'); + insert into takes values('66469', '304', '1', 'Fall', 2009, 'A '); + insert into takes values('5298', '959', '1', 'Fall', 2006, 'C+'); + insert into takes values('89188', '959', '1', 'Fall', 2006, 'A-'); + insert into takes values('19342', '612', '1', 'Fall', 2007, 'A+'); + insert into takes values('94801', '696', '1', 'Spring', 2002, 'A-'); + insert into takes values('52750', '604', '1', 'Spring', 2009, 'A-'); + insert into takes values('53225', '158', '2', 'Spring', 2008, 'C '); + insert into takes values('41988', '352', '1', 'Spring', 2006, 'B+'); + insert into takes values('46106', '169', '1', 'Spring', 2007, 'B+'); + insert into takes values('12666', '105', '1', 'Fall', 2009, 'A '); + insert into takes values('41938', '274', '1', 'Fall', 2002, 'C-'); + insert into takes values('82301', '663', '1', 'Spring', 2005, 'C+'); + insert into takes values('84432', '893', '1', 'Fall', 2007, 'B+'); + insert into takes values('48469', '612', '1', 'Fall', 2007, 'C-'); + insert into takes values('55940', '482', '1', 'Fall', 2005, 'C '); + insert into takes values('66279', '421', '1', 'Fall', 2004, 'A '); + insert into takes values('64724', '581', '1', 'Spring', 2005, 'B '); + insert into takes values('72741', '242', '1', 'Fall', 2009, 'B-'); + insert into takes values('39925', '362', '3', 'Spring', 2008, 'B '); + insert into takes values('17944', '808', '1', 'Fall', 2003, 'A+'); + insert into takes values('26494', '304', '1', 'Fall', 2009, 'B+'); + insert into takes values('40932', '237', '1', 'Spring', 2008, 'B+'); + insert into takes values('97042', '972', '1', 'Spring', 2009, 'B+'); + insert into takes values('1110', '612', '1', 'Fall', 2007, 'A-'); + insert into takes values('19917', '457', '1', 'Spring', 2001, 'B+'); + insert into takes values('93508', '443', '1', 'Spring', 2010, 'B '); + insert into takes values('63489', '974', '1', 'Fall', 2003, 'A+'); + insert into takes values('54875', '457', '1', 'Spring', 2001, 'B-'); + insert into takes values('64039', '960', '1', 'Fall', 2009, 'A+'); + insert into takes values('94730', '482', '1', 'Fall', 2005, 'B+'); + insert into takes values('69632', '571', '1', 'Spring', 2004, 'B-'); + insert into takes values('36513', '735', '2', 'Spring', 2010, 'B+'); + insert into takes values('69960', '468', '2', 'Fall', 2007, 'C-'); + insert into takes values('23373', '242', '1', 'Fall', 2009, 'C-'); + insert into takes values('41599', '169', '1', 'Spring', 2007, 'B-'); + insert into takes values('27094', '581', '1', 'Spring', 2005, 'C-'); + insert into takes values('61081', '694', '1', 'Fall', 2002, 'C+'); + insert into takes values('83686', '629', '1', 'Spring', 2003, 'A+'); + insert into takes values('75123', '313', '1', 'Fall', 2010, 'C-'); + insert into takes values('89234', '496', '1', 'Fall', 2001, 'C+'); + insert into takes values('27556', '158', '2', 'Spring', 2008, 'B-'); + insert into takes values('95260', '338', '1', 'Spring', 2007, 'C+'); + insert into takes values('14668', '304', '1', 'Fall', 2009, 'C '); + insert into takes values('67033', '631', '1', 'Spring', 2007, 'A '); + insert into takes values('41091', '795', '1', 'Spring', 2004, 'A-'); + insert into takes values('48678', '974', '1', 'Fall', 2003, 'A+'); + insert into takes values('2967', '571', '1', 'Spring', 2004, 'B '); + insert into takes values('1460', '802', '1', 'Spring', 2003, 'B-'); + insert into takes values('3639', '960', '2', 'Fall', 2006, 'A-'); + insert into takes values('87624', '366', '1', 'Fall', 2005, 'B '); + insert into takes values('80976', '867', '1', 'Fall', 2006, 'C '); + insert into takes values('79697', '468', '1', 'Fall', 2005, 'C-'); + insert into takes values('34502', '158', '1', 'Fall', 2008, 'B-'); + insert into takes values('35362', '242', '1', 'Fall', 2009, 'C '); + insert into takes values('41406', '105', '2', 'Fall', 2002, 'C '); + insert into takes values('18809', '629', '1', 'Spring', 2003, 'C '); + insert into takes values('61003', '704', '1', 'Spring', 2008, 'C-'); + insert into takes values('76246', '239', '1', 'Fall', 2006, 'A '); + insert into takes values('24809', '192', '1', 'Fall', 2002, 'A-'); + insert into takes values('56849', '352', '1', 'Spring', 2006, 'B-'); + insert into takes values('99422', '626', '1', 'Fall', 2006, 'A-'); + insert into takes values('99754', '748', '1', 'Fall', 2003, 'C-'); + insert into takes values('58326', '696', '1', 'Spring', 2002, 'B-'); + insert into takes values('6990', '400', '2', 'Fall', 2003, 'C-'); + insert into takes values('10904', '802', '1', 'Spring', 2003, 'A+'); + insert into takes values('91442', '408', '1', 'Spring', 2007, 'B-'); + insert into takes values('90448', '445', '1', 'Spring', 2001, 'C '); + insert into takes values('41894', '626', '1', 'Fall', 2006, 'C-'); + insert into takes values('35687', '362', '3', 'Spring', 2008, 'C+'); + insert into takes values('43495', '843', '1', 'Fall', 2010, 'A+'); + insert into takes values('21401', '158', '1', 'Fall', 2008, 'C-'); + insert into takes values('59046', '408', '2', 'Spring', 2003, 'A-'); + insert into takes values('41938', '105', '1', 'Fall', 2009, 'A+'); + insert into takes values('51203', '461', '1', 'Fall', 2002, 'C+'); + insert into takes values('46035', '408', '1', 'Spring', 2007, 'B '); + insert into takes values('86573', '461', '1', 'Fall', 2002, 'C-'); + insert into takes values('83002', '349', '1', 'Spring', 2008, 'B '); + insert into takes values('77130', '962', '1', 'Spring', 2008, 'A-'); + insert into takes values('32217', '747', '1', 'Spring', 2004, 'C-'); + insert into takes values('60867', '927', '1', 'Fall', 2002, 'C '); + insert into takes values('42956', '808', '1', 'Fall', 2003, 'C+'); + insert into takes values('89188', '960', '2', 'Fall', 2006, 'B-'); + insert into takes values('75534', '362', '1', 'Fall', 2005, 'A-'); + insert into takes values('78434', '352', '1', 'Spring', 2006, 'B-'); + insert into takes values('1110', '482', '1', 'Fall', 2005, 'C-'); + insert into takes values('64138', '362', '1', 'Fall', 2005, 'B+'); + insert into takes values('53805', '237', '2', 'Fall', 2009, 'C+'); + insert into takes values('69730', '960', '2', 'Fall', 2006, 'A+'); + insert into takes values('19362', '421', '1', 'Fall', 2004, 'A+'); + insert into takes values('66969', '808', '1', 'Fall', 2003, 'A-'); + insert into takes values('46451', '991', '1', 'Spring', 2008, 'B '); + insert into takes values('25380', '972', '1', 'Spring', 2009, 'C '); + insert into takes values('65038', '559', '1', 'Fall', 2002, 'A '); + insert into takes values('74911', '599', '1', 'Spring', 2003, 'C-'); + insert into takes values('75395', '408', '1', 'Spring', 2007, 'A-'); + insert into takes values('18367', '408', '2', 'Spring', 2003, 'C '); + insert into takes values('16133', '400', '1', 'Spring', 2007, 'B-'); + insert into takes values('49503', '561', '1', 'Fall', 2006, 'C '); + insert into takes values('72959', '415', '1', 'Fall', 2010, 'C-'); + insert into takes values('10736', '735', '2', 'Spring', 2010, 'A+'); + insert into takes values('5925', '663', '1', 'Spring', 2005, 'B-'); + insert into takes values('46655', '468', '2', 'Fall', 2007, 'C+'); + insert into takes values('5243', '631', '1', 'Spring', 2007, 'B+'); + insert into takes values('53225', '443', '1', 'Spring', 2010, 'B '); + insert into takes values('96722', '867', '1', 'Fall', 2006, 'B-'); + insert into takes values('57026', '581', '1', 'Spring', 2005, 'B+'); + insert into takes values('11604', '959', '1', 'Fall', 2006, 'C '); + insert into takes values('52494', '852', '1', 'Spring', 2008, 'B '); + insert into takes values('2423', '663', '1', 'Spring', 2005, 'B '); + insert into takes values('69960', '345', '1', 'Spring', 2008, 'A+'); + insert into takes values('77289', '237', '2', 'Fall', 2009, 'B '); + insert into takes values('55698', '991', '1', 'Spring', 2008, 'A '); + insert into takes values('90220', '735', '1', 'Spring', 2003, 'C '); + insert into takes values('71944', '482', '1', 'Fall', 2005, 'B '); + insert into takes values('81550', '258', '1', 'Fall', 2007, 'B+'); + insert into takes values('88417', '366', '1', 'Fall', 2005, 'A+'); + insert into takes values('1460', '791', '1', 'Spring', 2006, 'B '); + insert into takes values('8807', '974', '1', 'Fall', 2003, 'B-'); + insert into takes values('33338', '192', '1', 'Fall', 2002, 'A-'); + insert into takes values('83170', '105', '2', 'Fall', 2002, 'B-'); + insert into takes values('21401', '679', '1', 'Spring', 2010, 'B-'); + insert into takes values('80057', '426', '1', 'Spring', 2006, 'C '); + insert into takes values('10481', '319', '1', 'Spring', 2003, 'A+'); + insert into takes values('15980', '631', '1', 'Spring', 2007, 'A-'); + insert into takes values('10663', '415', '1', 'Fall', 2010, 'C '); + insert into takes values('56089', '875', '1', 'Spring', 2005, 'C+'); + insert into takes values('336', '415', '1', 'Fall', 2010, 'A+'); + insert into takes values('50267', '376', '1', 'Fall', 2006, 'C+'); + insert into takes values('55329', '642', '1', 'Fall', 2004, 'B '); + insert into takes values('86641', '137', '1', 'Spring', 2002, 'C-'); + insert into takes values('70452', '843', '1', 'Fall', 2010, 'A+'); + insert into takes values('69471', '991', '1', 'Spring', 2008, 'A '); + insert into takes values('83557', '545', '1', 'Fall', 2001, 'C+'); + insert into takes values('58595', '486', '1', 'Fall', 2009, 'C-'); + insert into takes values('68263', '105', '2', 'Fall', 2002, 'C '); + insert into takes values('88140', '105', '1', 'Fall', 2009, 'B-'); + insert into takes values('56057', '561', '1', 'Fall', 2006, 'B-'); + insert into takes values('41827', '443', '2', 'Spring', 2002, 'B '); + insert into takes values('85904', '599', '1', 'Spring', 2003, 'B+'); + insert into takes values('58413', '421', '1', 'Fall', 2004, 'B-'); + insert into takes values('34422', '960', '2', 'Fall', 2006, 'B '); + insert into takes values('92385', '237', '1', 'Spring', 2008, 'B+'); + insert into takes values('39876', '486', '1', 'Fall', 2009, 'C-'); + insert into takes values('11419', '545', '1', 'Fall', 2001, 'B+'); + insert into takes values('13403', '338', '2', 'Spring', 2006, 'A-'); + insert into takes values('90353', '949', '1', 'Fall', 2007, 'A-'); + insert into takes values('60748', '362', '3', 'Spring', 2008, 'C+'); + insert into takes values('53185', '426', '1', 'Spring', 2006, 'B '); + insert into takes values('27528', '702', '1', 'Spring', 2001, 'B '); + insert into takes values('67810', '443', '2', 'Spring', 2002, 'A '); + insert into takes values('28252', '482', '1', 'Fall', 2005, 'B+'); + insert into takes values('7602', '843', '1', 'Fall', 2010, 'B-'); + insert into takes values('97065', '338', '1', 'Spring', 2007, 'C-'); + insert into takes values('69222', '735', '2', 'Spring', 2010, 'B '); + insert into takes values('93061', '200', '1', 'Spring', 2007, 'C '); + insert into takes values('44271', '270', '1', 'Spring', 2010, 'A-'); + insert into takes values('41774', '735', '2', 'Spring', 2010, 'A '); + insert into takes values('68280', '366', '1', 'Fall', 2005, 'A+'); + insert into takes values('9495', '875', '1', 'Spring', 2005, 'A '); + insert into takes values('59920', '893', '1', 'Fall', 2007, 'C-'); + insert into takes values('13826', '362', '2', 'Fall', 2006, 'A '); + insert into takes values('46980', '962', '1', 'Spring', 2008, 'A-'); + insert into takes values('65208', '795', '1', 'Spring', 2004, 'B+'); + insert into takes values('57055', '345', '1', 'Spring', 2008, 'B '); + insert into takes values('12711', '696', '1', 'Spring', 2002, 'B '); + insert into takes values('78143', '468', '2', 'Fall', 2007, 'C '); + insert into takes values('90220', '991', '1', 'Spring', 2008, 'C '); + insert into takes values('75040', '304', '1', 'Fall', 2009, 'B '); + insert into takes values('36263', '304', '1', 'Fall', 2009, 'B '); + insert into takes values('67583', '629', '1', 'Spring', 2003, 'C-'); + insert into takes values('79589', '571', '1', 'Spring', 2004, 'B-'); + insert into takes values('45436', '496', '1', 'Fall', 2001, 'B+'); + insert into takes values('62226', '760', '1', 'Spring', 2004, 'B '); + insert into takes values('37946', '545', '1', 'Fall', 2001, 'A-'); + insert into takes values('45083', '893', '1', 'Fall', 2007, 'A+'); + insert into takes values('1285', '334', '1', 'Fall', 2009, 'C+'); + insert into takes values('5824', '747', '1', 'Spring', 2004, 'B '); + insert into takes values('78792', '338', '1', 'Spring', 2007, 'A-'); + insert into takes values('39876', '169', '1', 'Spring', 2007, 'B '); + insert into takes values('2967', '105', '2', 'Fall', 2002, 'B '); + insert into takes values('52494', '864', '1', 'Spring', 2006, 'C+'); + insert into takes values('95574', '704', '1', 'Spring', 2008, 'B '); + insert into takes values('5871', '559', '1', 'Fall', 2002, 'B+'); + insert into takes values('65753', '791', '1', 'Spring', 2006, 'A+'); + insert into takes values('7020', '376', '1', 'Fall', 2006, 'B '); + insert into takes values('78782', '974', '1', 'Fall', 2003, 'C '); + insert into takes values('48471', '927', '1', 'Fall', 2002, 'B+'); + insert into takes values('28538', '400', '2', 'Fall', 2003, 'B-'); + insert into takes values('11201', '362', '3', 'Spring', 2008, 'A+'); + insert into takes values('89234', '137', '1', 'Spring', 2002, 'A+'); + insert into takes values('96710', '972', '1', 'Spring', 2009, 'A '); + insert into takes values('72528', '366', '1', 'Fall', 2005, 'C '); + insert into takes values('52494', '802', '1', 'Spring', 2003, 'B-'); + insert into takes values('87246', '237', '2', 'Fall', 2009, 'C '); + insert into takes values('435', '545', '1', 'Fall', 2001, 'A '); + insert into takes values('36102', '612', '1', 'Fall', 2007, 'C+'); + insert into takes values('20244', '105', '1', 'Fall', 2009, 'B+'); + insert into takes values('18469', '795', '1', 'Spring', 2004, 'B-'); + insert into takes values('65056', '791', '1', 'Spring', 2006, 'A '); + insert into takes values('62520', '927', '1', 'Fall', 2002, 'C+'); + insert into takes values('29959', '642', '1', 'Fall', 2004, 'C '); + insert into takes values('13741', '421', '1', 'Fall', 2004, 'A+'); + insert into takes values('95089', '561', '1', 'Fall', 2006, 'B '); + insert into takes values('70522', '599', '1', 'Spring', 2003, 'B-'); + insert into takes values('57456', '959', '1', 'Fall', 2006, 'B+'); + insert into takes values('41894', '791', '1', 'Spring', 2006, 'B+'); + insert into takes values('22179', '461', '1', 'Fall', 2002, 'A-'); + insert into takes values('34770', '349', '1', 'Spring', 2008, 'B+'); + insert into takes values('17665', '679', '1', 'Spring', 2010, 'B+'); + insert into takes values('17997', '408', '1', 'Spring', 2007, 'A-'); + insert into takes values('81538', '443', '1', 'Spring', 2010, 'B-'); + insert into takes values('66763', '791', '1', 'Spring', 2006, 'A-'); + insert into takes values('41832', '696', '1', 'Spring', 2002, 'A-'); + insert into takes values('58170', '192', '1', 'Fall', 2002, 'B '); + insert into takes values('83696', '242', '1', 'Fall', 2009, 'C '); + insert into takes values('99422', '421', '1', 'Fall', 2004, 'B+'); + insert into takes values('90814', '274', '1', 'Fall', 2002, 'B '); + insert into takes values('92040', '867', '1', 'Fall', 2006, 'B '); + insert into takes values('12941', '852', '1', 'Spring', 2008, 'B-'); + insert into takes values('78572', '603', '1', 'Fall', 2003, 'B+'); + insert into takes values('1402', '274', '1', 'Fall', 2002, 'B-'); + insert into takes values('72528', '760', '1', 'Spring', 2004, 'B-'); + insert into takes values('41818', '704', '1', 'Spring', 2008, 'B '); + insert into takes values('20489', '304', '1', 'Fall', 2009, 'A '); + insert into takes values('77231', '702', '1', 'Spring', 2001, 'B+'); + insert into takes values('6712', '443', '2', 'Spring', 2002, 'A+'); + insert into takes values('34957', '105', '2', 'Fall', 2002, 'C-'); + insert into takes values('48660', '545', '1', 'Fall', 2001, 'B+'); + insert into takes values('8912', '476', '1', 'Fall', 2010, 'B-'); + insert into takes values('98140', '105', '2', 'Fall', 2002, 'B-'); + insert into takes values('33817', '561', '1', 'Fall', 2006, 'A+'); + insert into takes values('95284', '169', '2', 'Fall', 2002, 'C-'); + insert into takes values('94815', '426', '1', 'Spring', 2006, 'B+'); + insert into takes values('68453', '704', '1', 'Spring', 2008, 'C-'); + insert into takes values('4435', '443', '2', 'Spring', 2002, 'C-'); + insert into takes values('68395', '362', '2', 'Fall', 2006, 'B '); + insert into takes values('21225', '962', '1', 'Spring', 2008, 'C+'); + insert into takes values('90220', '489', '1', 'Fall', 2007, 'A-'); + insert into takes values('49073', '843', '1', 'Fall', 2010, 'A+'); + insert into takes values('55354', '626', '1', 'Fall', 2006, 'C-'); + insert into takes values('45494', '338', '1', 'Spring', 2007, 'C '); + insert into takes values('54875', '468', '1', 'Fall', 2005, 'B+'); + insert into takes values('81031', '875', '1', 'Spring', 2005, 'B '); + insert into takes values('37809', '158', '2', 'Spring', 2008, 'A+'); + insert into takes values('76270', '319', '1', 'Spring', 2003, 'B '); + insert into takes values('91799', '270', '1', 'Spring', 2010, 'C '); + insert into takes values('68779', '663', '1', 'Spring', 2005, 'B '); + insert into takes values('46106', '421', '1', 'Fall', 2004, 'A+'); + insert into takes values('30650', '893', '1', 'Fall', 2007, 'A '); + insert into takes values('18821', '612', '1', 'Fall', 2007, 'C-'); + insert into takes values('61356', '443', '2', 'Spring', 2002, 'A-'); + insert into takes values('14596', '169', '1', 'Spring', 2007, 'C-'); + insert into takes values('87831', '237', '1', 'Spring', 2008, 'C '); + insert into takes values('96206', '304', '1', 'Fall', 2009, 'C-'); + insert into takes values('49813', '760', '1', 'Spring', 2004, 'B-'); + insert into takes values('49759', '468', '2', 'Fall', 2007, 'A+'); + insert into takes values('31820', '642', '1', 'Fall', 2004, 'B '); + insert into takes values('46451', '972', '1', 'Spring', 2009, 'C '); + insert into takes values('66269', '808', '1', 'Fall', 2003, 'B+'); + insert into takes values('79352', '421', '1', 'Fall', 2004, 'B '); + insert into takes values('62152', '663', '1', 'Spring', 2005, 'C+'); + insert into takes values('7149', '972', '1', 'Spring', 2009, 'A+'); + insert into takes values('70564', '864', '1', 'Spring', 2006, 'B-'); + insert into takes values('84189', '991', '1', 'Spring', 2008, 'B '); + insert into takes values('46981', '735', '2', 'Spring', 2010, 'A+'); + insert into takes values('78758', '959', '1', 'Fall', 2006, 'C '); + insert into takes values('14628', '415', '1', 'Fall', 2010, 'A-'); + insert into takes values('66469', '496', '1', 'Fall', 2001, 'A '); + insert into takes values('90663', '704', '1', 'Spring', 2008, 'C+'); + insert into takes values('40738', '366', '1', 'Fall', 2005, 'C+'); + insert into takes values('1737', '349', '1', 'Spring', 2008, 'B '); + insert into takes values('16515', '476', '1', 'Fall', 2010, 'A+'); + insert into takes values('2419', '702', '1', 'Spring', 2001, 'A '); + insert into takes values('75116', '237', '2', 'Fall', 2009, 'C-'); + insert into takes values('43912', '408', '2', 'Spring', 2003, 'A+'); + insert into takes values('68330', '352', '1', 'Spring', 2006, 'B '); + insert into takes values('48423', '445', '1', 'Spring', 2001, 'C-'); + insert into takes values('35721', '200', '1', 'Spring', 2007, 'A+'); + insert into takes values('19048', '468', '1', 'Fall', 2005, 'A+'); + insert into takes values('4860', '345', '1', 'Spring', 2008, 'B '); + insert into takes values('5250', '415', '1', 'Fall', 2010, 'B+'); + insert into takes values('49503', '864', '1', 'Spring', 2006, 'B-'); + insert into takes values('57156', '735', '2', 'Spring', 2010, 'B+'); + insert into takes values('48660', '352', '1', 'Spring', 2006, 'C-'); + insert into takes values('14829', '626', '1', 'Fall', 2006, 'B '); + insert into takes values('46655', '486', '1', 'Fall', 2009, 'C '); + insert into takes values('89059', '604', '1', 'Spring', 2009, 'C-'); + insert into takes values('86753', '493', '1', 'Spring', 2010, 'A '); + insert into takes values('75596', '349', '1', 'Spring', 2008, 'B-'); + insert into takes values('90009', '959', '1', 'Fall', 2006, 'C+'); + insert into takes values('24932', '400', '2', 'Fall', 2003, 'B+'); + insert into takes values('95029', '629', '1', 'Spring', 2003, 'C '); + insert into takes values('97023', '496', '1', 'Fall', 2001, 'C-'); + insert into takes values('84239', '735', '1', 'Spring', 2003, 'C-'); + insert into takes values('50944', '852', '1', 'Spring', 2008, 'B '); + insert into takes values('70688', '270', '1', 'Spring', 2010, 'A+'); + insert into takes values('23270', '642', '1', 'Fall', 2004, 'A '); + insert into takes values('21337', '362', '2', 'Fall', 2006, 'A '); + insert into takes values('75173', '747', '1', 'Spring', 2004, 'C+'); + insert into takes values('18636', '808', '1', 'Fall', 2003, 'B-'); + insert into takes values('3833', '338', '1', 'Spring', 2007, 'C '); + insert into takes values('21102', '313', '1', 'Fall', 2010, 'B '); + insert into takes values('88358', '270', '1', 'Spring', 2010, 'B+'); + insert into takes values('87280', '415', '1', 'Fall', 2010, 'A+'); + insert into takes values('57787', '704', '1', 'Spring', 2008, 'A '); + insert into takes values('91197', '274', '1', 'Fall', 2002, 'C '); + insert into takes values('29514', '591', '1', 'Spring', 2005, 'A+'); + insert into takes values('29959', '443', '1', 'Spring', 2010, 'B+'); + insert into takes values('87222', '802', '1', 'Spring', 2003, 'A-'); + insert into takes values('15457', '400', '1', 'Spring', 2007, 'C-'); + insert into takes values('53788', '400', '1', 'Spring', 2007, 'A-'); + insert into takes values('60040', '304', '1', 'Fall', 2009, 'B '); + insert into takes values('82974', '362', '2', 'Fall', 2006, 'B '); + insert into takes values('21102', '631', '1', 'Spring', 2007, 'C+'); + insert into takes values('18286', '793', '1', 'Spring', 2002, 'A '); + insert into takes values('18775', '603', '1', 'Fall', 2003, 'C+'); + insert into takes values('31101', '843', '1', 'Fall', 2010, 'B-'); + insert into takes values('51238', '852', '1', 'Spring', 2008, 'C '); + insert into takes values('56486', '270', '1', 'Spring', 2010, 'C+'); + insert into takes values('76224', '927', '1', 'Fall', 2002, 'C-'); + insert into takes values('60748', '489', '1', 'Fall', 2007, 'B+'); + insert into takes values('86753', '426', '1', 'Spring', 2006, 'B '); + insert into takes values('71631', '545', '1', 'Fall', 2001, 'B '); + insert into takes values('5336', '443', '1', 'Spring', 2010, 'C '); + insert into takes values('23994', '867', '1', 'Fall', 2006, 'B '); + insert into takes values('20489', '400', '2', 'Fall', 2003, 'C+'); + insert into takes values('46074', '629', '1', 'Spring', 2003, 'C+'); + insert into takes values('73394', '270', '1', 'Spring', 2010, 'A '); + insert into takes values('16035', '545', '1', 'Fall', 2001, 'B '); + insert into takes values('13495', '626', '1', 'Fall', 2006, 'C-'); + insert into takes values('36263', '400', '2', 'Fall', 2003, 'A '); + insert into takes values('50703', '808', '1', 'Fall', 2003, 'A-'); + insert into takes values('8807', '482', '1', 'Fall', 2005, 'A-'); + insert into takes values('88418', '735', '1', 'Spring', 2003, 'C '); + insert into takes values('57238', '482', '1', 'Fall', 2005, 'B-'); + insert into takes values('67655', '362', '1', 'Fall', 2005, 'C+'); + insert into takes values('47025', '960', '1', 'Fall', 2009, 'C+'); + insert into takes values('42019', '843', '1', 'Fall', 2010, 'B '); + insert into takes values('55915', '702', '1', 'Spring', 2001, 'C-'); + insert into takes values('51698', '237', '1', 'Spring', 2008, 'A-'); + insert into takes values('18809', '735', '2', 'Spring', 2010, 'C+'); + insert into takes values('27952', '105', '1', 'Fall', 2009, 'B-'); + insert into takes values('26695', '258', '1', 'Fall', 2007, 'C-'); + insert into takes values('11422', '426', '1', 'Spring', 2006, 'B+'); + insert into takes values('83696', '793', '1', 'Spring', 2002, 'C+'); + insert into takes values('60366', '604', '1', 'Spring', 2009, 'C-'); + insert into takes values('56755', '991', '1', 'Spring', 2008, 'C-'); + insert into takes values('11422', '362', '3', 'Spring', 2008, 'C '); + insert into takes values('53803', '959', '1', 'Fall', 2006, 'C-'); + insert into takes values('78756', '158', '1', 'Fall', 2008, 'A-'); + insert into takes values('13081', '313', '1', 'Fall', 2010, 'A-'); + insert into takes values('51579', '468', '2', 'Fall', 2007, 'C+'); + insert into takes values('85809', '313', '1', 'Fall', 2010, 'A '); + insert into takes values('99250', '962', '1', 'Spring', 2008, 'C-'); + insert into takes values('13826', '169', '2', 'Fall', 2002, 'C '); + insert into takes values('50873', '545', '1', 'Fall', 2001, 'A '); + insert into takes values('61920', '352', '1', 'Spring', 2006, 'A '); + insert into takes values('30723', '867', '1', 'Fall', 2006, 'B-'); + insert into takes values('9495', '137', '1', 'Spring', 2002, 'C-'); + insert into takes values('3005', '105', '1', 'Fall', 2009, 'A '); + insert into takes values('36244', '663', '1', 'Spring', 2005, 'B+'); + insert into takes values('71426', '200', '2', 'Fall', 2002, 'B '); + insert into takes values('42625', '852', '1', 'Spring', 2008, 'A '); + insert into takes values('21766', '270', '1', 'Spring', 2010, 'C '); + insert into takes values('5144', '694', '1', 'Fall', 2002, 'B '); + insert into takes values('71025', '400', '1', 'Spring', 2007, 'B+'); + insert into takes values('42625', '158', '2', 'Spring', 2008, 'A '); + insert into takes values('94726', '105', '2', 'Fall', 2002, 'C '); + insert into takes values('19791', '893', '1', 'Fall', 2007, 'B+'); + insert into takes values('17057', '793', '1', 'Spring', 2002, 'B '); + insert into takes values('33759', '270', '1', 'Spring', 2010, 'C-'); + insert into takes values('97042', '366', '1', 'Fall', 2005, 'C-'); + insert into takes values('48247', '748', '1', 'Fall', 2003, 'A+'); + insert into takes values('9114', '445', '1', 'Spring', 2001, 'C+'); + insert into takes values('47487', '319', '1', 'Spring', 2003, 'C '); + insert into takes values('86981', '962', '1', 'Spring', 2008, 'A-'); + insert into takes values('65901', '791', '1', 'Spring', 2006, 'A '); + insert into takes values('67407', '694', '1', 'Fall', 2002, 'C-'); + insert into takes values('40937', '702', '1', 'Spring', 2001, 'A '); + insert into takes values('898', '349', '1', 'Spring', 2008, 'A+'); + insert into takes values('1826', '960', '2', 'Fall', 2006, 'A-'); + insert into takes values('58594', '401', '1', 'Fall', 2003, 'A+'); + insert into takes values('41683', '468', '2', 'Fall', 2007, 'A+'); + insert into takes values('14484', '694', '1', 'Fall', 2002, 'C '); + insert into takes values('40992', '867', '2', 'Fall', 2010, 'A '); + insert into takes values('92839', '200', '2', 'Fall', 2002, 'C+'); + insert into takes values('76953', '105', '1', 'Fall', 2009, 'C+'); + insert into takes values('86753', '604', '1', 'Spring', 2009, 'A '); + insert into takes values('80248', '867', '1', 'Fall', 2006, 'C-'); + insert into takes values('20195', '421', '1', 'Fall', 2004, 'B '); + insert into takes values('55000', '760', '1', 'Spring', 2004, 'B-'); + insert into takes values('46436', '735', '2', 'Spring', 2010, 'C+'); + insert into takes values('87044', '960', '1', 'Fall', 2009, 'B-'); + insert into takes values('52741', '867', '2', 'Fall', 2010, 'C-'); + insert into takes values('64893', '349', '1', 'Spring', 2008, 'B+'); + insert into takes values('64297', '105', '2', 'Fall', 2002, 'A-'); + insert into takes values('29462', '401', '1', 'Fall', 2003, 'A-'); + insert into takes values('26028', '237', '1', 'Spring', 2008, 'A '); + insert into takes values('65396', '591', '1', 'Spring', 2005, 'C-'); + insert into takes values('76246', '400', '2', 'Fall', 2003, 'B '); + insert into takes values('1954', '852', '1', 'Spring', 2008, 'A-'); + insert into takes values('13081', '274', '1', 'Fall', 2002, 'C+'); + insert into takes values('41832', '338', '2', 'Spring', 2006, 'B+'); + insert into takes values('61127', '791', '1', 'Spring', 2006, 'A '); + insert into takes values('57962', '748', '1', 'Fall', 2003, 'B-'); + insert into takes values('87706', '352', '1', 'Spring', 2006, 'B-'); + insert into takes values('31560', '158', '2', 'Spring', 2008, 'C+'); + insert into takes values('34502', '626', '1', 'Fall', 2006, 'C+'); + insert into takes values('74070', '692', '1', 'Spring', 2010, 'A '); + insert into takes values('61854', '808', '1', 'Fall', 2003, 'A-'); + insert into takes values('18554', '352', '1', 'Spring', 2006, 'C-'); + insert into takes values('64938', '545', '1', 'Fall', 2001, 'A+'); + insert into takes values('7973', '791', '1', 'Spring', 2006, 'C-'); + insert into takes values('28361', '493', '1', 'Spring', 2010, 'B+'); + insert into takes values('98870', '960', '2', 'Fall', 2006, 'A+'); + insert into takes values('29849', '642', '1', 'Fall', 2004, 'B+'); + insert into takes values('71426', '748', '1', 'Fall', 2003, 'A '); + insert into takes values('80247', '362', '3', 'Spring', 2008, 'B '); + insert into takes values('16480', '362', '1', 'Fall', 2005, 'C-'); + insert into takes values('23500', '802', '1', 'Spring', 2003, 'B '); + insert into takes values('15980', '808', '1', 'Fall', 2003, 'B+'); + insert into takes values('75241', '270', '1', 'Spring', 2010, 'C '); + insert into takes values('53047', '400', '1', 'Spring', 2007, 'A-'); + insert into takes values('336', '408', '2', 'Spring', 2003, 'A '); + insert into takes values('7035', '802', '1', 'Spring', 2003, 'C+'); + insert into takes values('3545', '334', '1', 'Fall', 2009, 'A '); + insert into takes values('90567', '960', '1', 'Fall', 2009, 'B '); + insert into takes values('5920', '631', '1', 'Spring', 2007, 'C '); + insert into takes values('41741', '158', '2', 'Spring', 2008, 'A+'); + insert into takes values('23506', '867', '1', 'Fall', 2006, 'A '); + insert into takes values('92385', '960', '2', 'Fall', 2006, 'A+'); + insert into takes values('53172', '962', '1', 'Spring', 2008, 'A-'); + insert into takes values('27044', '735', '2', 'Spring', 2010, 'C-'); + insert into takes values('71628', '304', '1', 'Fall', 2009, 'A '); + insert into takes values('72358', '105', '1', 'Fall', 2009, 'C-'); + insert into takes values('5824', '591', '1', 'Spring', 2005, 'C-'); + insert into takes values('858', '415', '1', 'Fall', 2010, 'B-'); + insert into takes values('62054', '626', '1', 'Fall', 2006, 'C '); + insert into takes values('288', '603', '1', 'Fall', 2003, 'A-'); + insert into takes values('63243', '489', '1', 'Fall', 2007, 'A '); + insert into takes values('14621', '581', '1', 'Spring', 2005, 'A '); + insert into takes values('71944', '169', '2', 'Fall', 2002, 'A '); + insert into takes values('21101', '486', '1', 'Fall', 2009, 'C '); + insert into takes values('48165', '445', '1', 'Spring', 2001, 'C '); + insert into takes values('75938', '893', '1', 'Fall', 2007, 'C-'); + insert into takes values('79352', '239', '1', 'Fall', 2006, 'C '); + insert into takes values('93986', '158', '2', 'Spring', 2008, 'C '); + insert into takes values('65101', '527', '1', 'Fall', 2004, 'A '); + insert into takes values('17086', '974', '1', 'Fall', 2003, 'C+'); + insert into takes values('17397', '169', '2', 'Fall', 2002, 'A '); + insert into takes values('51975', '158', '1', 'Fall', 2008, 'B '); + insert into takes values('91799', '408', '1', 'Spring', 2007, 'B '); + insert into takes values('79446', '571', '1', 'Spring', 2004, 'A+'); + insert into takes values('11455', '591', '1', 'Spring', 2005, 'C-'); + insert into takes values('27952', '843', '1', 'Fall', 2010, 'C-'); + insert into takes values('37038', '629', '1', 'Spring', 2003, 'C+'); + insert into takes values('40992', '415', '1', 'Fall', 2010, 'A-'); + insert into takes values('51817', '612', '1', 'Fall', 2007, 'C+'); + insert into takes values('27952', '239', '1', 'Fall', 2006, 'B+'); + insert into takes values('41774', '626', '1', 'Fall', 2006, 'B-'); + insert into takes values('93039', '468', '1', 'Fall', 2005, 'C '); + insert into takes values('56057', '493', '1', 'Spring', 2010, 'A '); + insert into takes values('15340', '476', '1', 'Fall', 2010, 'C-'); + insert into takes values('48861', '274', '1', 'Fall', 2002, 'C-'); + insert into takes values('53547', '867', '1', 'Fall', 2006, 'C+'); + insert into takes values('3693', '105', '2', 'Fall', 2002, 'C '); + insert into takes values('65753', '400', '2', 'Fall', 2003, 'C-'); + insert into takes values('61232', '748', '1', 'Fall', 2003, 'C+'); + insert into takes values('31266', '612', '1', 'Fall', 2007, 'C+'); + insert into takes values('57190', '482', '1', 'Fall', 2005, 'B-'); + insert into takes values('42991', '200', '2', 'Fall', 2002, 'B '); + insert into takes values('99073', '137', '1', 'Spring', 2002, 'A-'); + insert into takes values('95225', '169', '1', 'Spring', 2007, 'A '); + insert into takes values('41211', '545', '1', 'Fall', 2001, 'A+'); + insert into takes values('11453', '867', '2', 'Fall', 2010, 'B-'); + insert into takes values('62795', '679', '1', 'Spring', 2010, 'C+'); + insert into takes values('87048', '400', '2', 'Fall', 2003, 'C '); + insert into takes values('86806', '760', '1', 'Spring', 2004, 'B '); + insert into takes values('29665', '443', '1', 'Spring', 2010, 'B '); + insert into takes values('29863', '137', '1', 'Spring', 2002, 'A+'); + insert into takes values('31516', '362', '2', 'Fall', 2006, 'A '); + insert into takes values('75423', '345', '1', 'Spring', 2008, 'C+'); + insert into takes values('39619', '486', '1', 'Fall', 2009, 'C '); + insert into takes values('83573', '400', '1', 'Spring', 2007, 'C-'); + insert into takes values('78581', '599', '1', 'Spring', 2003, 'B+'); + insert into takes values('28952', '496', '1', 'Fall', 2001, 'C '); + insert into takes values('93631', '476', '1', 'Fall', 2010, 'B-'); + insert into takes values('7123', '169', '2', 'Fall', 2002, 'B-'); + insert into takes values('70021', '604', '1', 'Spring', 2009, 'A+'); + insert into takes values('92442', '581', '1', 'Spring', 2005, 'C-'); + insert into takes values('63288', '258', '1', 'Fall', 2007, 'A '); + insert into takes values('13921', '486', '1', 'Fall', 2009, 'C '); + insert into takes values('29705', '408', '1', 'Spring', 2007, 'C+'); + insert into takes values('2970', '274', '1', 'Fall', 2002, 'B+'); + insert into takes values('42560', '735', '1', 'Spring', 2003, 'A-'); + insert into takes values('33651', '468', '2', 'Fall', 2007, 'A-'); + insert into takes values('74464', '105', '1', 'Fall', 2009, 'A+'); + insert into takes values('39046', '192', '1', 'Fall', 2002, 'A-'); + insert into takes values('27366', '927', '1', 'Fall', 2002, 'A+'); + insert into takes values('16311', '974', '1', 'Fall', 2003, 'A '); + insert into takes values('11966', '445', '1', 'Spring', 2001, 'C-'); + insert into takes values('6895', '604', '1', 'Spring', 2009, 'B+'); + insert into takes values('71878', '400', '2', 'Fall', 2003, 'B '); + insert into takes values('75273', '991', '1', 'Spring', 2008, 'A-'); + insert into takes values('35042', '237', '1', 'Spring', 2008, 'A-'); + insert into takes values('40116', '852', '1', 'Spring', 2008, 'A-'); + insert into takes values('40558', '581', '1', 'Spring', 2005, 'C-'); + insert into takes values('45680', '338', '1', 'Spring', 2007, 'B-'); + insert into takes values('35881', '408', '1', 'Spring', 2007, 'B+'); + insert into takes values('46769', '445', '1', 'Spring', 2001, 'A-'); + insert into takes values('74974', '352', '1', 'Spring', 2006, 'C '); + insert into takes values('33460', '599', '1', 'Spring', 2003, 'B '); + insert into takes values('37586', '702', '1', 'Spring', 2001, 'A+'); + insert into takes values('46155', '867', '1', 'Fall', 2006, 'C-'); + insert into takes values('73387', '362', '1', 'Fall', 2005, 'C+'); + insert into takes values('66106', '795', '1', 'Spring', 2004, 'B-'); + insert into takes values('31442', '747', '1', 'Spring', 2004, 'A-'); + insert into takes values('10033', '334', '1', 'Fall', 2009, 'C-'); + insert into takes values('47670', '476', '1', 'Fall', 2010, 'C '); + insert into takes values('77003', '137', '1', 'Spring', 2002, 'A+'); + insert into takes values('1087', '679', '1', 'Spring', 2010, 'B-'); + insert into takes values('435', '274', '1', 'Fall', 2002, 'B '); + insert into takes values('30017', '561', '1', 'Fall', 2006, 'B '); + insert into takes values('2501', '362', '1', 'Fall', 2005, 'C+'); + insert into takes values('16543', '571', '1', 'Spring', 2004, 'A-'); + insert into takes values('62226', '408', '1', 'Spring', 2007, 'C+'); + insert into takes values('9495', '735', '2', 'Spring', 2010, 'C+'); + insert into takes values('34236', '735', '2', 'Spring', 2010, 'A-'); + insert into takes values('8819', '927', '1', 'Fall', 2002, 'C '); + insert into takes values('17600', '476', '1', 'Fall', 2010, 'C-'); + insert into takes values('55329', '527', '1', 'Fall', 2004, 'C+'); + insert into takes values('33206', '612', '1', 'Fall', 2007, 'C+'); + insert into takes values('98120', '843', '1', 'Fall', 2010, 'A '); + insert into takes values('98056', '561', '1', 'Fall', 2006, 'B+'); + insert into takes values('64401', '747', '1', 'Spring', 2004, 'A '); + insert into takes values('41818', '642', '1', 'Fall', 2004, 'C '); + insert into takes values('71878', '960', '1', 'Fall', 2009, 'C+'); + insert into takes values('64249', '338', '1', 'Spring', 2007, 'A+'); + insert into takes values('86674', '239', '1', 'Fall', 2006, 'A+'); + insert into takes values('83622', '158', '2', 'Spring', 2008, 'A '); + insert into takes values('30723', '239', '1', 'Fall', 2006, 'A-'); + insert into takes values('52750', '927', '1', 'Fall', 2002, 'C+'); + insert into takes values('26619', '959', '1', 'Fall', 2006, 'B-'); + insert into takes values('28133', '105', '1', 'Fall', 2009, 'B '); + insert into takes values('17377', '313', '1', 'Fall', 2010, 'C+'); + insert into takes values('78792', '795', '1', 'Spring', 2004, 'A+'); + insert into takes values('63390', '962', '1', 'Spring', 2008, 'A-'); + insert into takes values('66281', '313', '1', 'Fall', 2010, 'C '); + insert into takes values('28352', '486', '1', 'Fall', 2009, 'B '); + insert into takes values('36052', '962', '1', 'Spring', 2008, 'B-'); + insert into takes values('70828', '559', '1', 'Fall', 2002, 'C '); + insert into takes values('29399', '158', '2', 'Spring', 2008, 'B+'); + insert into takes values('33837', '237', '2', 'Fall', 2009, 'A-'); + insert into takes values('36384', '760', '1', 'Spring', 2004, 'A+'); + insert into takes values('57190', '443', '1', 'Spring', 2010, 'C '); + insert into takes values('2201', '748', '1', 'Fall', 2003, 'A '); + insert into takes values('34236', '694', '1', 'Fall', 2002, 'C+'); + insert into takes values('85746', '962', '1', 'Spring', 2008, 'B '); + insert into takes values('32483', '105', '1', 'Fall', 2009, 'B '); + insert into takes values('83747', '415', '1', 'Fall', 2010, 'A '); + insert into takes values('57780', '237', '1', 'Spring', 2008, 'A '); + insert into takes values('16753', '408', '1', 'Spring', 2007, 'C-'); + insert into takes values('51553', '366', '1', 'Fall', 2005, 'B-'); + insert into takes values('44881', '468', '2', 'Fall', 2007, 'B '); + insert into takes values('8986', '893', '1', 'Fall', 2007, 'C-'); + insert into takes values('78314', '581', '1', 'Spring', 2005, 'C+'); + insert into takes values('61920', '319', '1', 'Spring', 2003, 'A-'); + insert into takes values('79487', '362', '1', 'Fall', 2005, 'B '); + insert into takes values('38288', '991', '1', 'Spring', 2008, 'C '); + insert into takes values('65205', '875', '1', 'Spring', 2005, 'B-'); + insert into takes values('43432', '237', '1', 'Spring', 2008, 'B '); + insert into takes values('59117', '362', '3', 'Spring', 2008, 'A-'); + insert into takes values('78782', '362', '3', 'Spring', 2008, 'B+'); + insert into takes values('61403', '476', '1', 'Fall', 2010, 'B-'); + insert into takes values('4383', '694', '1', 'Fall', 2002, 'B+'); + insert into takes values('37809', '735', '1', 'Spring', 2003, 'A '); + insert into takes values('41675', '237', '2', 'Fall', 2009, 'A-'); + insert into takes values('16057', '893', '1', 'Fall', 2007, 'C-'); + insert into takes values('46260', '362', '3', 'Spring', 2008, 'C+'); + insert into takes values('69783', '200', '1', 'Spring', 2007, 'A-'); + insert into takes values('65979', '169', '1', 'Spring', 2007, 'A-'); + insert into takes values('31554', '875', '1', 'Spring', 2005, 'C-'); + insert into takes values('77000', '270', '1', 'Spring', 2010, 'A-'); + insert into takes values('33460', '867', '2', 'Fall', 2010, 'C-'); + insert into takes values('56755', '200', '1', 'Spring', 2007, 'C+'); + insert into takes values('22620', '482', '1', 'Fall', 2005, 'A '); + insert into takes values('42688', '400', '1', 'Spring', 2007, 'C '); + insert into takes values('62636', '802', '1', 'Spring', 2003, 'A-'); + insert into takes values('37869', '200', '1', 'Spring', 2007, 'B '); + insert into takes values('39521', '843', '1', 'Fall', 2010, 'B+'); + insert into takes values('8807', '735', '1', 'Spring', 2003, 'C '); + insert into takes values('17057', '461', '1', 'Fall', 2002, 'B '); + insert into takes values('71287', '496', '1', 'Fall', 2001, 'A-'); + insert into takes values('80254', '443', '1', 'Spring', 2010, 'B '); + insert into takes values('43016', '137', '1', 'Spring', 2002, 'A '); + insert into takes values('93061', '362', '2', 'Fall', 2006, 'A-'); + insert into takes values('70362', '927', '1', 'Fall', 2002, 'A '); + insert into takes values('95175', '457', '1', 'Spring', 2001, 'A+'); + insert into takes values('50331', '559', '1', 'Fall', 2002, 'B-'); + insert into takes values('54620', '137', '1', 'Spring', 2002, 'A+'); + insert into takes values('51238', '408', '2', 'Spring', 2003, 'B '); + insert into takes values('92864', '642', '1', 'Fall', 2004, 'C-'); + insert into takes values('35257', '748', '1', 'Fall', 2003, 'B '); + insert into takes values('70389', '366', '1', 'Fall', 2005, 'A+'); + insert into takes values('4860', '702', '1', 'Spring', 2001, 'C-'); + insert into takes values('98619', '991', '1', 'Spring', 2008, 'A '); + insert into takes values('92949', '631', '1', 'Spring', 2007, 'A+'); + insert into takes values('39552', '561', '1', 'Fall', 2006, 'B '); + insert into takes values('14596', '626', '1', 'Fall', 2006, 'A+'); + insert into takes values('32376', '476', '1', 'Fall', 2010, 'C+'); + insert into takes values('1726', '313', '1', 'Fall', 2010, 'B+'); + insert into takes values('49339', '949', '1', 'Fall', 2007, 'C-'); + insert into takes values('54508', '270', '1', 'Spring', 2010, 'C+'); + insert into takes values('35685', '867', '1', 'Fall', 2006, 'C-'); + insert into takes values('64121', '137', '1', 'Spring', 2002, 'B-'); + insert into takes values('94178', '960', '1', 'Fall', 2009, 'B '); + insert into takes values('92040', '200', '2', 'Fall', 2002, 'C-'); + insert into takes values('43981', '468', '2', 'Fall', 2007, 'A '); + insert into takes values('11201', '802', '1', 'Spring', 2003, 'B+'); + insert into takes values('46066', '735', '1', 'Spring', 2003, 'A-'); + insert into takes values('82591', '421', '1', 'Fall', 2004, 'C '); + insert into takes values('85910', '991', '1', 'Spring', 2008, 'A '); + insert into takes values('73387', '415', '1', 'Fall', 2010, 'C+'); + insert into takes values('34195', '400', '1', 'Spring', 2007, 'B+'); + insert into takes values('66494', '696', '1', 'Spring', 2002, 'A '); + insert into takes values('25942', '991', '1', 'Spring', 2008, 'B+'); + insert into takes values('84239', '735', '2', 'Spring', 2010, 'C '); + insert into takes values('65987', '258', '1', 'Fall', 2007, 'A+'); + insert into takes values('40178', '443', '1', 'Spring', 2010, 'B-'); + insert into takes values('32506', '426', '1', 'Spring', 2006, 'B '); + insert into takes values('85534', '962', '1', 'Spring', 2008, 'B+'); + insert into takes values('87193', '400', '2', 'Fall', 2003, 'A-'); + insert into takes values('39657', '852', '1', 'Spring', 2008, 'C-'); + insert into takes values('57511', '313', '1', 'Fall', 2010, 'A+'); + insert into takes values('14563', '242', '1', 'Fall', 2009, 'C+'); + insert into takes values('4383', '591', '1', 'Spring', 2005, 'A '); + insert into takes values('40116', '345', '1', 'Spring', 2008, 'A '); + insert into takes values('34197', '239', '1', 'Fall', 2006, 'B+'); + insert into takes values('80247', '137', '1', 'Spring', 2002, 'C '); + insert into takes values('24746', '852', '1', 'Spring', 2008, 'B-'); + insert into takes values('92867', '400', '1', 'Spring', 2007, 'C+'); + insert into takes values('62728', '696', '1', 'Spring', 2002, 'A+'); + insert into takes values('21126', '258', '1', 'Fall', 2007, 'C '); + insert into takes values('75878', '345', '1', 'Spring', 2008, 'A-'); + insert into takes values('54620', '400', '1', 'Spring', 2007, 'A+'); + insert into takes values('39114', '893', '1', 'Fall', 2007, 'B-'); + insert into takes values('70235', '105', '2', 'Fall', 2002, 'A '); + insert into takes values('499', '696', '1', 'Spring', 2002, 'B+'); + insert into takes values('75241', '760', '1', 'Spring', 2004, 'B+'); + insert into takes values('76759', '334', '1', 'Fall', 2009, 'B '); + insert into takes values('68096', '338', '1', 'Spring', 2007, 'B+'); + insert into takes values('95175', '694', '1', 'Fall', 2002, 'C '); + insert into takes values('82970', '237', '1', 'Spring', 2008, 'A+'); + insert into takes values('46694', '200', '2', 'Fall', 2002, 'B '); + insert into takes values('54153', '875', '1', 'Spring', 2005, 'C '); + insert into takes values('59673', '415', '1', 'Fall', 2010, 'C '); + insert into takes values('36657', '793', '1', 'Spring', 2002, 'A-'); + insert into takes values('29863', '242', '1', 'Fall', 2009, 'B-'); + insert into takes values('44881', '362', '2', 'Fall', 2006, 'B+'); + insert into takes values('14668', '482', '1', 'Fall', 2005, 'C-'); + insert into takes values('13921', '808', '1', 'Fall', 2003, 'C '); + insert into takes values('27687', '626', '1', 'Fall', 2006, 'C '); + insert into takes values('72528', '704', '1', 'Spring', 2008, 'B '); + insert into takes values('35293', '169', '2', 'Fall', 2002, 'C '); + insert into takes values('76246', '702', '1', 'Spring', 2001, 'C+'); + insert into takes values('39619', '461', '1', 'Fall', 2002, 'A '); + insert into takes values('67725', '960', '2', 'Fall', 2006, 'B+'); + insert into takes values('40059', '802', '1', 'Spring', 2003, 'A '); + insert into takes values('96003', '604', '1', 'Spring', 2009, 'B '); + insert into takes values('5943', '626', '1', 'Fall', 2006, 'C '); + insert into takes values('41741', '105', '2', 'Fall', 2002, 'C '); + insert into takes values('29002', '169', '2', 'Fall', 2002, 'C+'); + insert into takes values('792', '349', '1', 'Spring', 2008, 'C '); + insert into takes values('67371', '376', '1', 'Fall', 2006, 'B+'); + insert into takes values('53490', '960', '1', 'Fall', 2009, 'A '); + insert into takes values('24746', '237', '1', 'Spring', 2008, 'A+'); + insert into takes values('92965', '468', '1', 'Fall', 2005, 'C '); + insert into takes values('83002', '376', '1', 'Fall', 2006, 'A '); + insert into takes values('79892', '702', '1', 'Spring', 2001, 'C '); + insert into takes values('99463', '274', '1', 'Fall', 2002, 'C '); + insert into takes values('66279', '960', '1', 'Fall', 2009, 'A-'); + insert into takes values('9183', '696', '1', 'Spring', 2002, 'C-'); + insert into takes values('3576', '443', '2', 'Spring', 2002, 'B '); + insert into takes values('41675', '599', '1', 'Spring', 2003, 'C '); + insert into takes values('61527', '239', '1', 'Fall', 2006, 'B '); + insert into takes values('76953', '169', '2', 'Fall', 2002, 'A+'); + insert into takes values('12214', '791', '1', 'Spring', 2006, 'A '); + insert into takes values('67810', '105', '2', 'Fall', 2002, 'B+'); + insert into takes values('43211', '270', '1', 'Spring', 2010, 'A+'); + insert into takes values('3335', '362', '2', 'Fall', 2006, 'C '); + insert into takes values('83728', '270', '1', 'Spring', 2010, 'A '); + insert into takes values('82974', '400', '2', 'Fall', 2003, 'C '); + insert into takes values('38696', '304', '1', 'Fall', 2009, 'A-'); + insert into takes values('65563', '875', '1', 'Spring', 2005, 'A '); + insert into takes values('645', '629', '1', 'Spring', 2003, 'B-'); + insert into takes values('18941', '867', '1', 'Fall', 2006, 'C-'); + insert into takes values('26102', '496', '1', 'Fall', 2001, 'B-'); + insert into takes values('74509', '158', '2', 'Spring', 2008, 'B-'); + insert into takes values('15030', '702', '1', 'Spring', 2001, 'C+'); + insert into takes values('85505', '696', '1', 'Spring', 2002, 'B-'); + insert into takes values('64259', '875', '1', 'Spring', 2005, 'A '); + insert into takes values('81028', '239', '1', 'Fall', 2006, 'A '); + insert into takes values('64192', '559', '1', 'Fall', 2002, 'C+'); + insert into takes values('30397', '158', '1', 'Fall', 2008, 'A '); + insert into takes values('9947', '445', '1', 'Spring', 2001, 'A '); + insert into takes values('48589', '949', '1', 'Fall', 2007, 'B-'); + insert into takes values('3143', '679', '1', 'Spring', 2010, 'A-'); + insert into takes values('27727', '802', '1', 'Spring', 2003, 'C-'); + insert into takes values('30334', '158', '1', 'Fall', 2008, 'A-'); + insert into takes values('1000', '362', '1', 'Fall', 2005, 'B+'); + insert into takes values('88389', '274', '1', 'Fall', 2002, 'B '); + insert into takes values('31624', '169', '2', 'Fall', 2002, 'B-'); + insert into takes values('85505', '158', '1', 'Fall', 2008, 'B-'); + insert into takes values('4682', '239', '1', 'Fall', 2006, 'C-'); + insert into takes values('19450', '362', '3', 'Spring', 2008, 'A-'); + insert into takes values('61920', '237', '2', 'Fall', 2009, 'A '); + insert into takes values('18941', '603', '1', 'Fall', 2003, 'A-'); + insert into takes values('57135', '599', '1', 'Spring', 2003, 'C-'); + insert into takes values('62124', '864', '1', 'Spring', 2006, 'C-'); + insert into takes values('87044', '960', '2', 'Fall', 2006, 'B+'); + insert into takes values('96206', '864', '1', 'Spring', 2006, 'B-'); + insert into takes values('95046', '867', '2', 'Fall', 2010, 'C+'); + insert into takes values('50664', '603', '1', 'Fall', 2003, 'C+'); + insert into takes values('4345', '158', '1', 'Fall', 2008, 'C '); + insert into takes values('59908', '237', '2', 'Fall', 2009, 'A '); + insert into takes values('6673', '893', '1', 'Fall', 2007, 'A+'); + insert into takes values('11194', '791', '1', 'Spring', 2006, 'C-'); + insert into takes values('29091', '274', '1', 'Fall', 2002, 'C+'); + insert into takes values('19342', '702', '1', 'Spring', 2001, 'B+'); + insert into takes values('78922', '679', '1', 'Spring', 2010, 'B '); + insert into takes values('96052', '748', '1', 'Fall', 2003, 'A-'); + insert into takes values('94726', '426', '1', 'Spring', 2006, 'C-'); + insert into takes values('17133', '679', '1', 'Spring', 2010, 'A '); + insert into takes values('20099', '642', '1', 'Fall', 2004, 'B-'); + insert into takes values('9440', '591', '1', 'Spring', 2005, 'C-'); + insert into takes values('15340', '468', '1', 'Fall', 2005, 'C+'); + insert into takes values('19861', '105', '1', 'Fall', 2009, 'A '); + insert into takes values('37759', '642', '1', 'Fall', 2004, 'A '); + insert into takes values('27017', '200', '1', 'Spring', 2007, 'B+'); + insert into takes values('16885', '489', '1', 'Fall', 2007, 'C '); + insert into takes values('51768', '974', '1', 'Fall', 2003, 'C-'); + insert into takes values('65714', '545', '1', 'Fall', 2001, 'B '); + insert into takes values('64039', '169', '1', 'Spring', 2007, 'A-'); + insert into takes values('34055', '545', '1', 'Fall', 2001, 'C+'); + insert into takes values('14668', '313', '1', 'Fall', 2010, 'C+'); + insert into takes values('75791', '604', '1', 'Spring', 2009, 'B '); + insert into takes values('62373', '400', '2', 'Fall', 2003, 'A-'); + insert into takes values('64724', '791', '1', 'Spring', 2006, 'C-'); + insert into takes values('27017', '604', '1', 'Spring', 2009, 'C-'); + insert into takes values('79352', '867', '2', 'Fall', 2010, 'A '); + insert into takes values('1080', '352', '1', 'Spring', 2006, 'B '); + insert into takes values('73394', '169', '2', 'Fall', 2002, 'A+'); + insert into takes values('5703', '376', '1', 'Fall', 2006, 'A '); + insert into takes values('52134', '960', '2', 'Fall', 2006, 'C '); + insert into takes values('18367', '366', '1', 'Fall', 2005, 'A+'); + insert into takes values('62520', '338', '2', 'Spring', 2006, 'C '); + insert into takes values('3693', '704', '1', 'Spring', 2008, 'C '); + insert into takes values('98726', '362', '1', 'Fall', 2005, 'B-'); + insert into takes values('53485', '735', '1', 'Spring', 2003, 'B-'); + insert into takes values('62754', '604', '1', 'Spring', 2009, 'C+'); + insert into takes values('37869', '362', '2', 'Fall', 2006, 'A+'); + insert into takes values('5617', '960', '1', 'Fall', 2009, 'B+'); + insert into takes values('9993', '349', '1', 'Spring', 2008, 'A+'); + insert into takes values('94846', '362', '1', 'Fall', 2005, 'B-'); + insert into takes values('88887', '702', '1', 'Spring', 2001, 'A '); + insert into takes values('29645', '867', '2', 'Fall', 2010, 'C+'); + insert into takes values('22254', '274', '1', 'Fall', 2002, 'B '); + insert into takes values('65714', '603', '1', 'Fall', 2003, 'C-'); + insert into takes values('64067', '793', '1', 'Spring', 2002, 'C '); + insert into takes values('69225', '304', '1', 'Fall', 2009, 'B+'); + insert into takes values('97042', '692', '1', 'Spring', 2010, 'A-'); + insert into takes values('90353', '626', '1', 'Fall', 2006, 'B-'); + insert into takes values('88389', '237', '2', 'Fall', 2009, 'C-'); + insert into takes values('93125', '864', '1', 'Spring', 2006, 'B-'); + insert into takes values('35588', '581', '1', 'Spring', 2005, 'C '); + insert into takes values('1827', '415', '1', 'Fall', 2010, 'B-'); + insert into takes values('46436', '158', '2', 'Spring', 2008, 'B '); + insert into takes values('38336', '692', '1', 'Spring', 2010, 'B-'); + insert into takes values('17665', '795', '1', 'Spring', 2004, 'A+'); + insert into takes values('88887', '793', '1', 'Spring', 2002, 'B '); + insert into takes values('30182', '105', '1', 'Fall', 2009, 'A-'); + insert into takes values('46655', '200', '1', 'Spring', 2007, 'B-'); + insert into takes values('5381', '875', '1', 'Spring', 2005, 'C+'); + insert into takes values('63489', '561', '1', 'Fall', 2006, 'C-'); + insert into takes values('80113', '468', '2', 'Fall', 2007, 'B '); + insert into takes values('83314', '642', '1', 'Fall', 2004, 'C '); + insert into takes values('57242', '959', '1', 'Fall', 2006, 'A '); + insert into takes values('4508', '468', '2', 'Fall', 2007, 'B+'); + insert into takes values('73908', '545', '1', 'Fall', 2001, 'C '); + insert into takes values('73606', '559', '1', 'Fall', 2002, 'B-'); + insert into takes values('23934', '461', '1', 'Fall', 2002, 'B+'); + insert into takes values('5381', '527', '1', 'Fall', 2004, 'B-'); + insert into takes values('31476', '959', '1', 'Fall', 2006, 'B-'); + insert into takes values('22142', '105', '1', 'Fall', 2009, 'B+'); + insert into takes values('61998', '362', '1', 'Fall', 2005, 'B+'); + insert into takes values('67371', '401', '1', 'Fall', 2003, 'B+'); + insert into takes values('53118', '991', '1', 'Spring', 2008, 'B '); + insert into takes values('90567', '158', '1', 'Fall', 2008, 'A+'); + insert into takes values('69285', '974', '1', 'Fall', 2003, 'A+'); + insert into takes values('31137', '270', '1', 'Spring', 2010, 'A-'); + insert into takes values('85809', '105', '2', 'Fall', 2002, 'A-'); + insert into takes values('68999', '581', '1', 'Spring', 2005, 'B+'); + insert into takes values('31035', '603', '1', 'Fall', 2003, 'C '); + insert into takes values('51416', '642', '1', 'Fall', 2004, 'B-'); + insert into takes values('89234', '795', '1', 'Spring', 2004, 'B-'); + insert into takes values('73908', '626', '1', 'Fall', 2006, 'B+'); + insert into takes values('39704', '852', '1', 'Spring', 2008, 'B '); + insert into takes values('25785', '694', '1', 'Fall', 2002, 'C '); + insert into takes values('36995', '274', '1', 'Fall', 2002, 'C '); + insert into takes values('46956', '200', '1', 'Spring', 2007, 'B-'); + insert into takes values('58081', '599', '1', 'Spring', 2003, 'A+'); + insert into takes values('77000', '443', '1', 'Spring', 2010, 'A '); + insert into takes values('65979', '604', '1', 'Spring', 2009, 'A '); + insert into takes values('87054', '137', '1', 'Spring', 2002, 'B-'); + insert into takes values('24387', '105', '1', 'Fall', 2009, 'C-'); + insert into takes values('66469', '959', '1', 'Fall', 2006, 'A '); + insert into takes values('63489', '426', '1', 'Spring', 2006, 'C-'); + insert into takes values('9256', '791', '1', 'Spring', 2006, 'C-'); + insert into takes values('10736', '867', '2', 'Fall', 2010, 'C+'); + insert into takes values('27952', '496', '1', 'Fall', 2001, 'C+'); + insert into takes values('83314', '631', '1', 'Spring', 2007, 'C '); + insert into takes values('64169', '401', '1', 'Fall', 2003, 'A-'); + insert into takes values('45300', '795', '1', 'Spring', 2004, 'A '); + insert into takes values('66281', '415', '1', 'Fall', 2010, 'B '); + insert into takes values('94801', '852', '1', 'Spring', 2008, 'B+'); + insert into takes values('70807', '457', '1', 'Spring', 2001, 'A '); + insert into takes values('15457', '200', '1', 'Spring', 2007, 'B '); + insert into takes values('19735', '629', '1', 'Spring', 2003, 'B+'); + insert into takes values('82082', '974', '1', 'Fall', 2003, 'A-'); + insert into takes values('95366', '105', '2', 'Fall', 2002, 'A '); + insert into takes values('91788', '631', '1', 'Spring', 2007, 'B+'); + insert into takes values('37521', '631', '1', 'Spring', 2007, 'C '); + insert into takes values('70310', '735', '2', 'Spring', 2010, 'A+'); + insert into takes values('19541', '489', '1', 'Fall', 2007, 'B '); + insert into takes values('65438', '476', '1', 'Fall', 2010, 'C+'); + insert into takes values('72768', '974', '1', 'Fall', 2003, 'A+'); + insert into takes values('50703', '893', '1', 'Fall', 2007, 'C+'); + insert into takes values('59908', '457', '1', 'Spring', 2001, 'A '); + insert into takes values('59172', '486', '1', 'Fall', 2009, 'C+'); + insert into takes values('9953', '972', '1', 'Spring', 2009, 'A-'); + insert into takes values('4508', '415', '1', 'Fall', 2010, 'C '); + insert into takes values('91851', '237', '2', 'Fall', 2009, 'A '); + insert into takes values('28518', '599', '1', 'Spring', 2003, 'C+'); + insert into takes values('28133', '864', '1', 'Spring', 2006, 'B+'); + insert into takes values('52656', '949', '1', 'Fall', 2007, 'B '); + insert into takes values('12069', '960', '1', 'Fall', 2009, 'A+'); + insert into takes values('53225', '974', '1', 'Fall', 2003, 'C-'); + insert into takes values('15070', '704', '1', 'Spring', 2008, 'C-'); + insert into takes values('87965', '527', '1', 'Fall', 2004, 'A-'); + insert into takes values('40677', '960', '2', 'Fall', 2006, 'B+'); + insert into takes values('29803', '527', '1', 'Fall', 2004, 'A+'); + insert into takes values('5298', '169', '1', 'Spring', 2007, 'A-'); + insert into takes values('64138', '949', '1', 'Fall', 2007, 'C '); + insert into takes values('9495', '352', '1', 'Spring', 2006, 'C+'); + insert into takes values('10727', '486', '1', 'Fall', 2009, 'B+'); + insert into takes values('98940', '972', '1', 'Spring', 2009, 'B-'); + insert into takes values('76799', '239', '1', 'Fall', 2006, 'C '); + insert into takes values('84432', '362', '2', 'Fall', 2006, 'A-'); + insert into takes values('56', '400', '1', 'Spring', 2007, 'B+'); + insert into takes values('11419', '304', '1', 'Fall', 2009, 'C-'); + insert into takes values('62784', '972', '1', 'Spring', 2009, 'B-'); + insert into takes values('108', '893', '1', 'Fall', 2007, 'C+'); + insert into takes values('27804', '313', '1', 'Fall', 2010, 'B-'); + insert into takes values('43993', '105', '1', 'Fall', 2009, 'A '); + insert into takes values('96227', '401', '1', 'Fall', 2003, 'A '); + insert into takes values('31486', '679', '1', 'Spring', 2010, 'C '); + insert into takes values('50658', '445', '1', 'Spring', 2001, 'B+'); + insert into takes values('96153', '461', '1', 'Fall', 2002, 'C '); + insert into takes values('66356', '864', '1', 'Spring', 2006, 'C '); + insert into takes values('69628', '461', '1', 'Fall', 2002, 'A+'); + insert into takes values('91788', '704', '1', 'Spring', 2008, 'C '); + insert into takes values('79589', '527', '1', 'Fall', 2004, 'B '); + insert into takes values('56299', '604', '1', 'Spring', 2009, 'B '); + insert into takes values('20985', '237', '2', 'Fall', 2009, 'B-'); + insert into takes values('21394', '867', '1', 'Fall', 2006, 'A '); + insert into takes values('9495', '400', '2', 'Fall', 2003, 'B+'); + insert into takes values('30161', '468', '1', 'Fall', 2005, 'A+'); + insert into takes values('37430', '802', '1', 'Spring', 2003, 'B-'); + insert into takes values('9084', '629', '1', 'Spring', 2003, 'C+'); + insert into takes values('27140', '400', '2', 'Fall', 2003, 'A-'); + insert into takes values('499', '793', '1', 'Spring', 2002, 'C+'); + insert into takes values('56598', '960', '2', 'Fall', 2006, 'C-'); + insert into takes values('83573', '338', '2', 'Spring', 2006, 'C-'); + insert into takes values('99268', '366', '1', 'Fall', 2005, 'B+'); + insert into takes values('98056', '496', '1', 'Fall', 2001, 'C '); + insert into takes values('11578', '468', '1', 'Fall', 2005, 'A '); + insert into takes values('81610', '443', '1', 'Spring', 2010, 'C-'); + insert into takes values('95850', '366', '1', 'Fall', 2005, 'C '); + insert into takes values('77580', '158', '2', 'Spring', 2008, 'B+'); + insert into takes values('9440', '415', '1', 'Fall', 2010, 'C+'); + insert into takes values('96134', '867', '2', 'Fall', 2010, 'A+'); + insert into takes values('18583', '603', '1', 'Fall', 2003, 'A-'); + insert into takes values('95029', '591', '1', 'Spring', 2005, 'B+'); + insert into takes values('74672', '349', '1', 'Spring', 2008, 'C+'); + insert into takes values('93354', '338', '1', 'Spring', 2007, 'C+'); + insert into takes values('435', '694', '1', 'Fall', 2002, 'A-'); + insert into takes values('2970', '626', '1', 'Fall', 2006, 'B+'); + insert into takes values('19861', '793', '1', 'Spring', 2002, 'A+'); + insert into takes values('81031', '663', '1', 'Spring', 2005, 'C '); + insert into takes values('90663', '426', '1', 'Spring', 2006, 'C-'); + insert into takes values('37759', '760', '1', 'Spring', 2004, 'A+'); + insert into takes values('827', '960', '2', 'Fall', 2006, 'C '); + insert into takes values('89140', '949', '1', 'Fall', 2007, 'A+'); + insert into takes values('41751', '599', '1', 'Spring', 2003, 'B-'); + insert into takes values('33645', '852', '1', 'Spring', 2008, 'C '); + insert into takes values('62549', '493', '1', 'Spring', 2010, 'B '); + insert into takes values('82688', '457', '1', 'Spring', 2001, 'A+'); + insert into takes values('67655', '476', '1', 'Fall', 2010, 'B '); + insert into takes values('67425', '962', '1', 'Spring', 2008, 'A '); + insert into takes values('50267', '679', '1', 'Spring', 2010, 'A-'); + insert into takes values('27236', '362', '1', 'Fall', 2005, 'A-'); + insert into takes values('13757', '603', '1', 'Fall', 2003, 'C+'); + insert into takes values('92864', '599', '1', 'Spring', 2003, 'C+'); + insert into takes values('96710', '345', '1', 'Spring', 2008, 'C-'); + insert into takes values('61166', '445', '1', 'Spring', 2001, 'A+'); + insert into takes values('69225', '960', '2', 'Fall', 2006, 'B '); + insert into takes values('76224', '338', '2', 'Spring', 2006, 'A+'); + insert into takes values('37430', '319', '1', 'Spring', 2003, 'B-'); + insert into takes values('96895', '270', '1', 'Spring', 2010, 'B '); + insert into takes values('34386', '629', '1', 'Spring', 2003, 'B+'); + insert into takes values('63288', '200', '1', 'Spring', 2007, 'C-'); + insert into takes values('75395', '468', '1', 'Fall', 2005, 'A-'); + insert into takes values('24387', '694', '1', 'Fall', 2002, 'A+'); + insert into takes values('37869', '949', '1', 'Fall', 2007, 'C-'); + insert into takes values('80285', '400', '2', 'Fall', 2003, 'A '); + insert into takes values('61127', '445', '1', 'Spring', 2001, 'B '); + insert into takes values('11422', '274', '1', 'Fall', 2002, 'A-'); + insert into takes values('99073', '704', '1', 'Spring', 2008, 'A+'); + insert into takes values('92776', '629', '1', 'Spring', 2003, 'B '); + insert into takes values('34422', '960', '1', 'Fall', 2009, 'A+'); + insert into takes values('36685', '349', '1', 'Spring', 2008, 'C+'); + insert into takes values('62705', '692', '1', 'Spring', 2010, 'B '); + insert into takes values('86641', '401', '1', 'Fall', 2003, 'A '); + insert into takes values('32483', '338', '1', 'Spring', 2007, 'C-'); + insert into takes values('11194', '200', '2', 'Fall', 2002, 'B+'); + insert into takes values('78758', '808', '1', 'Fall', 2003, 'A-'); + insert into takes values('43616', '599', '1', 'Spring', 2003, 'C+'); + insert into takes values('94815', '793', '1', 'Spring', 2002, 'B '); + insert into takes values('69307', '468', '1', 'Fall', 2005, 'B+'); + insert into takes values('98315', '696', '1', 'Spring', 2002, 'B+'); + insert into takes values('97435', '852', '1', 'Spring', 2008, 'C '); + insert into takes values('96772', '875', '1', 'Spring', 2005, 'C-'); + insert into takes values('38288', '603', '1', 'Fall', 2003, 'A+'); + insert into takes values('75252', '489', '1', 'Fall', 2007, 'C-'); + insert into takes values('57026', '694', '1', 'Fall', 2002, 'B '); + insert into takes values('78892', '239', '1', 'Fall', 2006, 'B+'); + insert into takes values('10834', '366', '1', 'Fall', 2005, 'B '); + insert into takes values('25077', '158', '2', 'Spring', 2008, 'A '); + insert into takes values('64013', '200', '1', 'Spring', 2007, 'C-'); + insert into takes values('85746', '604', '1', 'Spring', 2009, 'A-'); + insert into takes values('83622', '960', '1', 'Fall', 2009, 'B+'); + insert into takes values('17769', '793', '1', 'Spring', 2002, 'A '); + insert into takes values('8457', '692', '1', 'Spring', 2010, 'B+'); + insert into takes values('21009', '274', '1', 'Fall', 2002, 'B-'); + insert into takes values('66090', '408', '2', 'Spring', 2003, 'A+'); + insert into takes values('61737', '875', '1', 'Spring', 2005, 'B+'); + insert into takes values('69225', '864', '1', 'Spring', 2006, 'A+'); + insert into takes values('92864', '571', '1', 'Spring', 2004, 'B '); + insert into takes values('55286', '852', '1', 'Spring', 2008, 'A '); + insert into takes values('16969', '468', '1', 'Fall', 2005, 'B '); + insert into takes values('65299', '169', '1', 'Spring', 2007, 'A '); + insert into takes values('46035', '864', '1', 'Spring', 2006, 'C+'); + insert into takes values('83747', '843', '1', 'Fall', 2010, 'A '); + insert into takes values('62795', '304', '1', 'Fall', 2009, 'B-'); + insert into takes values('41683', '408', '2', 'Spring', 2003, 'B+'); + insert into takes values('15283', '793', '1', 'Spring', 2002, 'A '); + insert into takes values('98619', '158', '1', 'Fall', 2008, 'A '); + insert into takes values('78469', '852', '1', 'Spring', 2008, 'B+'); + insert into takes values('57156', '400', '2', 'Fall', 2003, 'A '); + insert into takes values('11377', '581', '1', 'Spring', 2005, 'B-'); + insert into takes values('69081', '313', '1', 'Fall', 2010, 'C-'); + insert into takes values('29707', '702', '1', 'Spring', 2001, 'C '); + insert into takes values('82126', '200', '1', 'Spring', 2007, 'B '); + insert into takes values('32130', '468', '1', 'Fall', 2005, 'B+'); + insert into takes values('64039', '408', '2', 'Spring', 2003, 'B '); + insert into takes values('62373', '927', '1', 'Fall', 2002, 'C+'); + insert into takes values('42096', '158', '2', 'Spring', 2008, 'C+'); + insert into takes values('2561', '960', '1', 'Fall', 2009, 'C-'); + insert into takes values('50039', '571', '1', 'Spring', 2004, 'B-'); + insert into takes values('8252', '867', '1', 'Fall', 2006, 'C '); + insert into takes values('75794', '239', '1', 'Fall', 2006, 'A '); + insert into takes values('73492', '808', '1', 'Fall', 2003, 'C-'); + insert into takes values('17600', '200', '2', 'Fall', 2002, 'C-'); + insert into takes values('94990', '237', '2', 'Fall', 2009, 'A-'); + insert into takes values('27662', '875', '1', 'Spring', 2005, 'C+'); + insert into takes values('7956', '400', '1', 'Spring', 2007, 'A-'); + insert into takes values('92659', '702', '1', 'Spring', 2001, 'B-'); + insert into takes values('914', '702', '1', 'Spring', 2001, 'B-'); + insert into takes values('29462', '200', '2', 'Fall', 2002, 'C+'); + insert into takes values('96178', '239', '1', 'Fall', 2006, 'A '); + insert into takes values('22417', '852', '1', 'Spring', 2008, 'C+'); + insert into takes values('43432', '959', '1', 'Fall', 2006, 'C '); + insert into takes values('12216', '482', '1', 'Fall', 2005, 'A+'); + insert into takes values('41894', '747', '1', 'Spring', 2004, 'A '); + insert into takes values('54875', '748', '1', 'Fall', 2003, 'A '); + insert into takes values('76768', '496', '1', 'Fall', 2001, 'A '); + insert into takes values('74163', '237', '1', 'Spring', 2008, 'B '); + insert into takes values('61166', '468', '2', 'Fall', 2007, 'B '); + insert into takes values('46260', '843', '1', 'Fall', 2010, 'B '); + insert into takes values('14284', '415', '1', 'Fall', 2010, 'C '); + insert into takes values('39472', '158', '2', 'Spring', 2008, 'C '); + insert into takes values('65241', '200', '1', 'Spring', 2007, 'A '); + insert into takes values('63582', '591', '1', 'Spring', 2005, 'B-'); + insert into takes values('96741', '527', '1', 'Fall', 2004, 'C-'); + insert into takes values('74460', '468', '2', 'Fall', 2007, 'B-'); + insert into takes values('17996', '408', '1', 'Spring', 2007, 'B-'); + insert into takes values('34331', '959', '1', 'Fall', 2006, 'A '); + insert into takes values('34386', '200', '1', 'Spring', 2007, 'A-'); + insert into takes values('82970', '400', '2', 'Fall', 2003, 'C-'); + insert into takes values('76173', '793', '1', 'Spring', 2002, 'C '); + insert into takes values('63040', '679', '1', 'Spring', 2010, 'C '); + insert into takes values('89759', '468', '2', 'Fall', 2007, 'B-'); + insert into takes values('24010', '612', '1', 'Fall', 2007, 'C+'); + insert into takes values('92385', '696', '1', 'Spring', 2002, 'C-'); + insert into takes values('10481', '559', '1', 'Fall', 2002, 'A+'); + insert into takes values('17769', '795', '1', 'Spring', 2004, 'C-'); + insert into takes values('35257', '692', '1', 'Spring', 2010, 'C-'); + insert into takes values('19245', '401', '1', 'Fall', 2003, 'C '); + insert into takes values('84515', '476', '1', 'Fall', 2010, 'B+'); + insert into takes values('12173', '237', '2', 'Fall', 2009, 'A-'); + insert into takes values('7656', '571', '1', 'Spring', 2004, 'B-'); + insert into takes values('97679', '408', '2', 'Spring', 2003, 'A '); + insert into takes values('67222', '476', '1', 'Fall', 2010, 'A '); + insert into takes values('48861', '334', '1', 'Fall', 2009, 'A '); + insert into takes values('26102', '843', '1', 'Fall', 2010, 'C-'); + insert into takes values('56882', '631', '1', 'Spring', 2007, 'B '); + insert into takes values('91343', '239', '1', 'Fall', 2006, 'B+'); + insert into takes values('17607', '696', '1', 'Spring', 2002, 'C+'); + insert into takes values('64593', '748', '1', 'Fall', 2003, 'A+'); + insert into takes values('46655', '426', '1', 'Spring', 2006, 'A '); + insert into takes values('26695', '852', '1', 'Spring', 2008, 'B-'); + insert into takes values('25718', '545', '1', 'Fall', 2001, 'C-'); + insert into takes values('98140', '875', '1', 'Spring', 2005, 'C '); + insert into takes values('47025', '793', '1', 'Spring', 2002, 'B+'); + insert into takes values('90814', '571', '1', 'Spring', 2004, 'B+'); + insert into takes values('37521', '795', '1', 'Spring', 2004, 'A-'); + insert into takes values('79352', '192', '1', 'Fall', 2002, 'B '); + insert into takes values('83022', '696', '1', 'Spring', 2002, 'A+'); + insert into takes values('54612', '760', '1', 'Spring', 2004, 'B '); + insert into takes values('97679', '338', '1', 'Spring', 2007, 'C+'); + insert into takes values('1402', '599', '1', 'Spring', 2003, 'B-'); + insert into takes values('65563', '960', '1', 'Fall', 2009, 'C+'); + insert into takes values('96206', '493', '1', 'Spring', 2010, 'A '); + insert into takes values('91442', '875', '1', 'Spring', 2005, 'C+'); + insert into takes values('25468', '960', '2', 'Fall', 2006, 'C '); + insert into takes values('29863', '338', '2', 'Spring', 2006, 'B-'); + insert into takes values('40189', '760', '1', 'Spring', 2004, 'B+'); + insert into takes values('81258', '338', '1', 'Spring', 2007, 'B+'); + insert into takes values('70452', '962', '1', 'Spring', 2008, 'A-'); + insert into takes values('42956', '864', '1', 'Spring', 2006, 'A '); + insert into takes values('63612', '169', '1', 'Spring', 2007, 'C+'); + insert into takes values('27898', '362', '2', 'Fall', 2006, 'C+'); + insert into takes values('46066', '468', '1', 'Fall', 2005, 'A '); + insert into takes values('99719', '559', '1', 'Fall', 2002, 'A-'); + insert into takes values('37809', '158', '1', 'Fall', 2008, 'B '); + insert into takes values('18007', '334', '1', 'Fall', 2009, 'A+'); + insert into takes values('67542', '663', '1', 'Spring', 2005, 'B '); + insert into takes values('2967', '808', '1', 'Fall', 2003, 'C '); + insert into takes values('37219', '258', '1', 'Fall', 2007, 'B-'); + insert into takes values('82402', '603', '1', 'Fall', 2003, 'C+'); + insert into takes values('40276', '702', '1', 'Spring', 2001, 'B-'); + insert into takes values('95574', '362', '3', 'Spring', 2008, 'A '); + insert into takes values('26881', '169', '1', 'Spring', 2007, 'B+'); + insert into takes values('7956', '274', '1', 'Fall', 2002, 'B-'); + insert into takes values('12971', '972', '1', 'Spring', 2009, 'A '); + insert into takes values('19203', '927', '1', 'Fall', 2002, 'A '); + insert into takes values('58469', '867', '2', 'Fall', 2010, 'A+'); + insert into takes values('58846', '408', '1', 'Spring', 2007, 'A '); + insert into takes values('59908', '843', '1', 'Fall', 2010, 'B-'); + insert into takes values('60249', '426', '1', 'Spring', 2006, 'C-'); + insert into takes values('92864', '581', '1', 'Spring', 2005, 'B '); + insert into takes values('35462', '426', '1', 'Spring', 2006, 'C+'); + insert into takes values('38271', '591', '1', 'Spring', 2005, 'A '); + insert into takes values('31086', '604', '1', 'Spring', 2009, 'C+'); + insert into takes values('51868', '960', '1', 'Fall', 2009, 'A+'); + insert into takes values('79205', '105', '1', 'Fall', 2009, 'A+'); + insert into takes values('73807', '421', '1', 'Fall', 2004, 'B-'); + insert into takes values('74460', '415', '1', 'Fall', 2010, 'A '); + insert into takes values('51768', '304', '1', 'Fall', 2009, 'B '); + insert into takes values('99694', '468', '2', 'Fall', 2007, 'C+'); + insert into takes values('92385', '468', '2', 'Fall', 2007, 'A-'); + insert into takes values('30021', '493', '1', 'Spring', 2010, 'C '); + insert into takes values('19203', '959', '1', 'Fall', 2006, 'C-'); + insert into takes values('41818', '493', '1', 'Spring', 2010, 'C-'); + insert into takes values('84410', '802', '1', 'Spring', 2003, 'A '); + insert into takes values('79170', '735', '2', 'Spring', 2010, 'A+'); + insert into takes values('28299', '400', '2', 'Fall', 2003, 'C '); + insert into takes values('89312', '962', '1', 'Spring', 2008, 'C+'); + insert into takes values('49280', '274', '1', 'Fall', 2002, 'A-'); + insert into takes values('83170', '338', '2', 'Spring', 2006, 'C-'); + insert into takes values('45826', '200', '2', 'Fall', 2002, 'A-'); + insert into takes values('27017', '352', '1', 'Spring', 2006, 'A-'); + insert into takes values('44551', '496', '1', 'Fall', 2001, 'A-'); + insert into takes values('20540', '561', '1', 'Fall', 2006, 'B-'); + insert into takes values('99660', '802', '1', 'Spring', 2003, 'A+'); + insert into takes values('24010', '457', '1', 'Spring', 2001, 'B+'); + insert into takes values('55354', '476', '1', 'Fall', 2010, 'B+'); + insert into takes values('96988', '808', '1', 'Fall', 2003, 'A '); + insert into takes values('30017', '274', '1', 'Fall', 2002, 'A-'); + insert into takes values('38676', '362', '1', 'Fall', 2005, 'C-'); + insert into takes values('34236', '169', '1', 'Spring', 2007, 'C+'); + insert into takes values('65979', '200', '1', 'Spring', 2007, 'C '); + insert into takes values('74840', '270', '1', 'Spring', 2010, 'A+'); + insert into takes values('19582', '476', '1', 'Fall', 2010, 'B+'); + insert into takes values('2139', '626', '1', 'Fall', 2006, 'C+'); + insert into takes values('99369', '591', '1', 'Spring', 2005, 'A-'); + insert into takes values('57055', '158', '1', 'Fall', 2008, 'A+'); + insert into takes values('38288', '760', '1', 'Spring', 2004, 'C+'); + insert into takes values('44352', '581', '1', 'Spring', 2005, 'B-'); + insert into takes values('90124', '200', '1', 'Spring', 2007, 'B '); + insert into takes values('2848', '313', '1', 'Fall', 2010, 'B-'); + insert into takes values('52291', '200', '1', 'Spring', 2007, 'A-'); + insert into takes values('54875', '137', '1', 'Spring', 2002, 'A+'); + insert into takes values('84704', '760', '1', 'Spring', 2004, 'B-'); + insert into takes values('97065', '319', '1', 'Spring', 2003, 'A+'); + insert into takes values('93708', '482', '1', 'Fall', 2005, 'A+'); + insert into takes values('93508', '561', '1', 'Fall', 2006, 'A+'); + insert into takes values('22532', '319', '1', 'Spring', 2003, 'B+'); + insert into takes values('15726', '679', '1', 'Spring', 2010, 'C-'); + insert into takes values('4034', '237', '1', 'Spring', 2008, 'C+'); + insert into takes values('14032', '864', '1', 'Spring', 2006, 'B '); + insert into takes values('42956', '571', '1', 'Spring', 2004, 'A '); + insert into takes values('1110', '791', '1', 'Spring', 2006, 'C '); + insert into takes values('36881', '169', '1', 'Spring', 2007, 'A+'); + insert into takes values('75522', '793', '1', 'Spring', 2002, 'A '); + insert into takes values('30334', '400', '2', 'Fall', 2003, 'B-'); + insert into takes values('89188', '192', '1', 'Fall', 2002, 'A-'); + insert into takes values('847', '972', '1', 'Spring', 2009, 'A '); + insert into takes values('69241', '604', '1', 'Spring', 2009, 'B-'); + insert into takes values('75423', '599', '1', 'Spring', 2003, 'B '); + insert into takes values('65101', '304', '1', 'Fall', 2009, 'C '); + insert into takes values('57083', '591', '1', 'Spring', 2005, 'B-'); + insert into takes values('22003', '949', '1', 'Fall', 2007, 'C+'); + insert into takes values('1087', '237', '1', 'Spring', 2008, 'B '); + insert into takes values('59172', '493', '1', 'Spring', 2010, 'C-'); + insert into takes values('7970', '696', '1', 'Spring', 2002, 'C+'); + insert into takes values('842', '496', '1', 'Fall', 2001, 'B+'); + insert into takes values('77415', '760', '1', 'Spring', 2004, 'B-'); + insert into takes values('89196', '694', '1', 'Fall', 2002, 'A+'); + insert into takes values('11237', '486', '1', 'Fall', 2009, 'B-'); + insert into takes values('80047', '169', '1', 'Spring', 2007, 'A-'); + insert into takes values('21395', '581', '1', 'Spring', 2005, 'A-'); + insert into takes values('79352', '959', '1', 'Fall', 2006, 'B '); + insert into takes values('60762', '735', '2', 'Spring', 2010, 'B '); + insert into takes values('87706', '991', '1', 'Spring', 2008, 'A-'); + insert into takes values('88085', '401', '1', 'Fall', 2003, 'B '); + insert into takes values('83557', '376', '1', 'Fall', 2006, 'B-'); + insert into takes values('14094', '476', '1', 'Fall', 2010, 'B '); + insert into takes values('81031', '493', '1', 'Spring', 2010, 'C+'); + insert into takes values('22467', '748', '1', 'Fall', 2003, 'B+'); + insert into takes values('57083', '408', '1', 'Spring', 2007, 'C '); + insert into takes values('93814', '571', '1', 'Spring', 2004, 'C '); + insert into takes values('25552', '461', '1', 'Fall', 2002, 'A-'); + insert into takes values('5920', '169', '2', 'Fall', 2002, 'B+'); + insert into takes values('14639', '242', '1', 'Fall', 2009, 'B+'); + insert into takes values('30161', '352', '1', 'Spring', 2006, 'C+'); + insert into takes values('11201', '338', '2', 'Spring', 2006, 'C '); + insert into takes values('9084', '489', '1', 'Fall', 2007, 'C-'); + insert into takes values('94371', '401', '1', 'Fall', 2003, 'C-'); + insert into takes values('46155', '349', '1', 'Spring', 2008, 'C-'); + insert into takes values('27140', '760', '1', 'Spring', 2004, 'A+'); + insert into takes values('31086', '338', '1', 'Spring', 2007, 'C+'); + insert into takes values('48469', '237', '1', 'Spring', 2008, 'A-'); + insert into takes values('11126', '867', '1', 'Fall', 2006, 'A+'); + insert into takes values('46441', '137', '1', 'Spring', 2002, 'A '); + insert into takes values('43211', '237', '2', 'Fall', 2009, 'B-'); + insert into takes values('83838', '702', '1', 'Spring', 2001, 'A '); + insert into takes values('76759', '626', '1', 'Fall', 2006, 'A+'); + insert into takes values('91616', '421', '1', 'Fall', 2004, 'B '); + insert into takes values('52134', '352', '1', 'Spring', 2006, 'A '); + insert into takes values('33094', '962', '1', 'Spring', 2008, 'A '); + insert into takes values('15283', '893', '1', 'Fall', 2007, 'B-'); + insert into takes values('37284', '571', '1', 'Spring', 2004, 'B '); + insert into takes values('64169', '274', '1', 'Fall', 2002, 'A+'); + insert into takes values('68070', '376', '1', 'Fall', 2006, 'A+'); + insert into takes values('82126', '591', '1', 'Spring', 2005, 'A-'); + insert into takes values('31486', '642', '1', 'Fall', 2004, 'C '); + insert into takes values('55009', '663', '1', 'Spring', 2005, 'B '); + insert into takes values('18108', '875', '1', 'Spring', 2005, 'C-'); + insert into takes values('87048', '571', '1', 'Spring', 2004, 'C '); + insert into takes values('64642', '274', '1', 'Fall', 2002, 'A-'); + insert into takes values('78454', '489', '1', 'Fall', 2007, 'B-'); + insert into takes values('51868', '476', '1', 'Fall', 2010, 'A-'); + insert into takes values('89106', '561', '1', 'Fall', 2006, 'B '); + insert into takes values('91132', '105', '1', 'Fall', 2009, 'C '); + insert into takes values('46956', '489', '1', 'Fall', 2007, 'C-'); + insert into takes values('95175', '642', '1', 'Fall', 2004, 'B '); + insert into takes values('34018', '489', '1', 'Fall', 2007, 'B-'); + insert into takes values('75123', '415', '1', 'Fall', 2010, 'C-'); + insert into takes values('6195', '631', '1', 'Spring', 2007, 'A-'); + insert into takes values('67371', '338', '1', 'Spring', 2007, 'A-'); + insert into takes values('4182', '696', '1', 'Spring', 2002, 'B '); + insert into takes values('28004', '949', '1', 'Fall', 2007, 'C '); + insert into takes values('82868', '158', '2', 'Spring', 2008, 'B+'); + insert into takes values('29462', '949', '1', 'Fall', 2007, 'A-'); + insert into takes values('29390', '362', '1', 'Fall', 2005, 'B-'); + insert into takes values('69122', '400', '1', 'Spring', 2007, 'B '); + insert into takes values('69628', '258', '1', 'Fall', 2007, 'C+'); + insert into takes values('99369', '604', '1', 'Spring', 2009, 'C-'); + insert into takes values('9605', '158', '2', 'Spring', 2008, 'B '); + insert into takes values('60040', '802', '1', 'Spring', 2003, 'C-'); + insert into takes values('62716', '237', '1', 'Spring', 2008, 'C+'); + insert into takes values('61364', '808', '1', 'Fall', 2003, 'B+'); + insert into takes values('37521', '270', '1', 'Spring', 2010, 'C '); + insert into takes values('18108', '735', '1', 'Spring', 2003, 'C-'); + insert into takes values('31442', '960', '2', 'Fall', 2006, 'C '); + insert into takes values('28133', '991', '1', 'Spring', 2008, 'B-'); + insert into takes values('64724', '426', '1', 'Spring', 2006, 'A '); + insert into takes values('28299', '704', '1', 'Spring', 2008, 'C+'); + insert into takes values('83686', '237', '2', 'Fall', 2009, 'C '); + insert into takes values('35220', '400', '2', 'Fall', 2003, 'B '); + insert into takes values('16631', '735', '1', 'Spring', 2003, 'A '); + insert into takes values('14023', '242', '1', 'Fall', 2009, 'C-'); + insert into takes values('5243', '105', '1', 'Fall', 2009, 'B-'); + insert into takes values('28004', '875', '1', 'Spring', 2005, 'A+'); + insert into takes values('4940', '591', '1', 'Spring', 2005, 'B-'); + insert into takes values('97573', '735', '2', 'Spring', 2010, 'A+'); + insert into takes values('52494', '808', '1', 'Fall', 2003, 'A+'); + insert into takes values('37430', '476', '1', 'Fall', 2010, 'A-'); + insert into takes values('90234', '443', '2', 'Spring', 2002, 'C+'); + insert into takes values('78314', '927', '1', 'Fall', 2002, 'B+'); + insert into takes values('91992', '362', '3', 'Spring', 2008, 'B '); + insert into takes values('86674', '702', '1', 'Spring', 2001, 'B+'); + insert into takes values('96710', '237', '2', 'Fall', 2009, 'A '); + insert into takes values('97573', '843', '1', 'Fall', 2010, 'B-'); + insert into takes values('46762', '338', '2', 'Spring', 2006, 'C+'); + insert into takes values('67033', '603', '1', 'Fall', 2003, 'B-'); + insert into takes values('6400', '974', '1', 'Fall', 2003, 'B+'); + insert into takes values('51579', '604', '1', 'Spring', 2009, 'A-'); + insert into takes values('83022', '561', '1', 'Fall', 2006, 'B+'); + insert into takes values('48423', '349', '1', 'Spring', 2008, 'A+'); + insert into takes values('75362', '591', '1', 'Spring', 2005, 'A '); + insert into takes values('65038', '200', '1', 'Spring', 2007, 'C-'); + insert into takes values('16035', '867', '1', 'Fall', 2006, 'C+'); + insert into takes values('53152', '242', '1', 'Fall', 2009, 'B+'); + insert into takes values('39238', '476', '1', 'Fall', 2010, 'C+'); + insert into takes values('59290', '362', '1', 'Fall', 2005, 'B '); + insert into takes values('38899', '893', '1', 'Fall', 2007, 'A '); + insert into takes values('4015', '760', '1', 'Spring', 2004, 'B+'); + insert into takes values('83573', '735', '2', 'Spring', 2010, 'C-'); + insert into takes values('4355', '362', '3', 'Spring', 2008, 'C '); + insert into takes values('8192', '843', '1', 'Fall', 2010, 'A '); + insert into takes values('94998', '663', '1', 'Spring', 2005, 'C-'); + insert into takes values('23439', '679', '1', 'Spring', 2010, 'A+'); + insert into takes values('15980', '334', '1', 'Fall', 2009, 'C '); + insert into takes values('80698', '867', '2', 'Fall', 2010, 'C+'); + insert into takes values('29514', '791', '1', 'Spring', 2006, 'B '); + insert into takes values('47487', '415', '1', 'Fall', 2010, 'C-'); + insert into takes values('55000', '960', '1', 'Fall', 2009, 'C+'); + insert into takes values('89140', '692', '1', 'Spring', 2010, 'C '); + insert into takes values('76799', '603', '1', 'Fall', 2003, 'B-'); + insert into takes values('4435', '486', '1', 'Fall', 2009, 'C+'); + insert into takes values('898', '158', '2', 'Spring', 2008, 'B-'); + insert into takes values('88085', '604', '1', 'Spring', 2009, 'C-'); + insert into takes values('23475', '642', '1', 'Fall', 2004, 'C+'); + insert into takes values('21102', '527', '1', 'Fall', 2004, 'C+'); + insert into takes values('29705', '258', '1', 'Fall', 2007, 'A '); + insert into takes values('88553', '362', '2', 'Fall', 2006, 'A '); + insert into takes values('16849', '663', '1', 'Spring', 2005, 'A '); + insert into takes values('45570', '748', '1', 'Fall', 2003, 'C+'); + insert into takes values('2848', '482', '1', 'Fall', 2005, 'A+'); + insert into takes values('50386', '362', '1', 'Fall', 2005, 'A-'); + insert into takes values('9440', '169', '1', 'Spring', 2007, 'C+'); + insert into takes values('51817', '702', '1', 'Spring', 2001, 'A-'); + insert into takes values('90194', '629', '1', 'Spring', 2003, 'C-'); + insert into takes values('70828', '760', '1', 'Spring', 2004, 'B '); + insert into takes values('53469', '867', '1', 'Fall', 2006, 'A '); + insert into takes values('59290', '747', '1', 'Spring', 2004, 'C-'); + insert into takes values('18108', '843', '1', 'Fall', 2010, 'B '); + insert into takes values('11510', '791', '1', 'Spring', 2006, 'A+'); + insert into takes values('34569', '991', '1', 'Spring', 2008, 'B '); + insert into takes values('17086', '362', '1', 'Fall', 2005, 'C+'); + insert into takes values('70828', '338', '1', 'Spring', 2007, 'B-'); + insert into takes values('95046', '445', '1', 'Spring', 2001, 'A+'); + insert into takes values('32490', '545', '1', 'Fall', 2001, 'A-'); + insert into takes values('77244', '629', '1', 'Spring', 2003, 'C+'); + insert into takes values('94178', '445', '1', 'Spring', 2001, 'B-'); + insert into takes values('72768', '461', '1', 'Fall', 2002, 'C-'); + insert into takes values('96193', '338', '1', 'Spring', 2007, 'B+'); + insert into takes values('46066', '200', '2', 'Fall', 2002, 'A '); + insert into takes values('67560', '105', '1', 'Fall', 2009, 'C '); + insert into takes values('81884', '591', '1', 'Spring', 2005, 'B '); + insert into takes values('85910', '604', '1', 'Spring', 2009, 'C+'); + insert into takes values('32954', '105', '1', 'Fall', 2009, 'A '); + insert into takes values('73186', '599', '1', 'Spring', 2003, 'C+'); + insert into takes values('40059', '415', '1', 'Fall', 2010, 'C-'); + insert into takes values('40558', '962', '1', 'Spring', 2008, 'C-'); + insert into takes values('64945', '258', '1', 'Fall', 2007, 'C-'); + insert into takes values('11202', '313', '1', 'Fall', 2010, 'C '); + insert into takes values('85904', '105', '2', 'Fall', 2002, 'A+'); + insert into takes values('76224', '704', '1', 'Spring', 2008, 'C-'); + insert into takes values('11201', '843', '1', 'Fall', 2010, 'B+'); + insert into takes values('87785', '642', '1', 'Fall', 2004, 'A '); + insert into takes values('94257', '401', '1', 'Fall', 2003, 'B '); + insert into takes values('16523', '137', '1', 'Spring', 2002, 'B-'); + insert into takes values('34422', '843', '1', 'Fall', 2010, 'A+'); + insert into takes values('99422', '362', '3', 'Spring', 2008, 'C '); + insert into takes values('81610', '192', '1', 'Fall', 2002, 'A+'); + insert into takes values('90609', '867', '2', 'Fall', 2010, 'C '); + insert into takes values('9440', '545', '1', 'Fall', 2001, 'A+'); + insert into takes values('49759', '401', '1', 'Fall', 2003, 'B-'); + insert into takes values('18367', '158', '2', 'Spring', 2008, 'C '); + insert into takes values('86327', '852', '1', 'Spring', 2008, 'C-'); + insert into takes values('98870', '626', '1', 'Fall', 2006, 'C-'); + insert into takes values('38973', '959', '1', 'Fall', 2006, 'A+'); + insert into takes values('9460', '748', '1', 'Fall', 2003, 'A+'); + insert into takes values('88993', '603', '1', 'Fall', 2003, 'A+'); + insert into takes values('70310', '192', '1', 'Fall', 2002, 'B-'); + insert into takes values('99760', '692', '1', 'Spring', 2010, 'C+'); + insert into takes values('95852', '401', '1', 'Fall', 2003, 'B '); + insert into takes values('48165', '192', '1', 'Fall', 2002, 'B '); + insert into takes values('48611', '867', '1', 'Fall', 2006, 'B '); + insert into takes values('18809', '962', '1', 'Spring', 2008, 'A-'); + insert into takes values('69241', '445', '1', 'Spring', 2001, 'A-'); + insert into takes values('62832', '679', '1', 'Spring', 2010, 'C+'); + insert into takes values('82646', '366', '1', 'Fall', 2005, 'B-'); + insert into takes values('34542', '760', '1', 'Spring', 2004, 'C '); + insert into takes values('51768', '345', '1', 'Spring', 2008, 'C '); + insert into takes values('98423', '974', '1', 'Fall', 2003, 'C-'); + insert into takes values('95284', '626', '1', 'Fall', 2006, 'A+'); + insert into takes values('8986', '158', '2', 'Spring', 2008, 'B '); + insert into takes values('91580', '864', '1', 'Spring', 2006, 'C+'); + insert into takes values('59553', '349', '1', 'Spring', 2008, 'C-'); + insert into takes values('65329', '352', '1', 'Spring', 2006, 'C-'); + insert into takes values('28952', '239', '1', 'Fall', 2006, 'B-'); + insert into takes values('45083', '200', '2', 'Fall', 2002, 'C-'); + insert into takes values('26695', '376', '1', 'Fall', 2006, 'B-'); + insert into takes values('499', '158', '1', 'Fall', 2008, 'A '); + insert into takes values('12941', '867', '2', 'Fall', 2010, 'C+'); + insert into takes values('7620', '349', '1', 'Spring', 2008, 'A '); + insert into takes values('37101', '313', '1', 'Fall', 2010, 'C+'); + insert into takes values('67514', '443', '1', 'Spring', 2010, 'A-'); + insert into takes values('32065', '200', '2', 'Fall', 2002, 'A '); + insert into takes values('9183', '237', '2', 'Fall', 2009, 'B '); + insert into takes values('11057', '642', '1', 'Fall', 2004, 'A+'); + insert into takes values('56486', '313', '1', 'Fall', 2010, 'C-'); + insert into takes values('34542', '735', '1', 'Spring', 2003, 'B-'); + insert into takes values('45436', '559', '1', 'Fall', 2002, 'C+'); + insert into takes values('53803', '735', '1', 'Spring', 2003, 'A '); + insert into takes values('51416', '457', '1', 'Spring', 2001, 'A+'); + insert into takes values('93986', '237', '1', 'Spring', 2008, 'A-'); + insert into takes values('65190', '702', '1', 'Spring', 2001, 'C '); + insert into takes values('56', '612', '1', 'Fall', 2007, 'B+'); + insert into takes values('64259', '105', '1', 'Fall', 2009, 'A+'); + insert into takes values('26802', '192', '1', 'Fall', 2002, 'C+'); + insert into takes values('63612', '200', '1', 'Spring', 2007, 'B '); + insert into takes values('88389', '426', '1', 'Spring', 2006, 'C+'); + insert into takes values('39925', '559', '1', 'Fall', 2002, 'B+'); + insert into takes values('25528', '496', '1', 'Fall', 2001, 'B+'); + insert into takes values('32490', '972', '1', 'Spring', 2009, 'C+'); + insert into takes values('29462', '795', '1', 'Spring', 2004, 'A-'); + insert into takes values('92867', '313', '1', 'Fall', 2010, 'A-'); + insert into takes values('57135', '169', '1', 'Spring', 2007, 'B '); + insert into takes values('63310', '338', '1', 'Spring', 2007, 'C '); + insert into takes values('63538', '748', '1', 'Fall', 2003, 'A+'); + insert into takes values('89571', '545', '1', 'Fall', 2001, 'B-'); + insert into takes values('69521', '760', '1', 'Spring', 2004, 'A+'); + insert into takes values('70299', '338', '2', 'Spring', 2006, 'A-'); + insert into takes values('8843', '791', '1', 'Spring', 2006, 'A+'); + insert into takes values('31690', '319', '1', 'Spring', 2003, 'C '); + insert into takes values('50873', '679', '1', 'Spring', 2010, 'B+'); + insert into takes values('18941', '949', '1', 'Fall', 2007, 'C '); + insert into takes values('99764', '581', '1', 'Spring', 2005, 'A '); + insert into takes values('18554', '493', '1', 'Spring', 2010, 'A+'); + insert into takes values('30177', '959', '1', 'Fall', 2006, 'B+'); + insert into takes values('89196', '793', '1', 'Spring', 2002, 'A '); + insert into takes values('29002', '408', '2', 'Spring', 2003, 'A '); + insert into takes values('43226', '200', '2', 'Fall', 2002, 'C+'); + insert into takes values('84865', '169', '1', 'Spring', 2007, 'B+'); + insert into takes values('21225', '400', '1', 'Spring', 2007, 'B '); + insert into takes values('99780', '158', '2', 'Spring', 2008, 'B '); + insert into takes values('91442', '158', '2', 'Spring', 2008, 'C-'); + insert into takes values('78792', '591', '1', 'Spring', 2005, 'A-'); + insert into takes values('30858', '408', '2', 'Spring', 2003, 'A '); + insert into takes values('68396', '445', '1', 'Spring', 2001, 'C+'); + insert into takes values('71529', '242', '1', 'Fall', 2009, 'A '); + insert into takes values('19220', '461', '1', 'Fall', 2002, 'A+'); + insert into takes values('28977', '702', '1', 'Spring', 2001, 'A+'); + insert into takes values('92417', '426', '1', 'Spring', 2006, 'C+'); + insert into takes values('99775', '748', '1', 'Fall', 2003, 'B+'); + insert into takes values('11419', '864', '1', 'Spring', 2006, 'A+'); + insert into takes values('17128', '867', '2', 'Fall', 2010, 'B-'); + insert into takes values('28316', '200', '1', 'Spring', 2007, 'B+'); + insert into takes values('8483', '808', '1', 'Fall', 2003, 'B-'); + insert into takes values('58307', '258', '1', 'Fall', 2007, 'B-'); + insert into takes values('51203', '496', '1', 'Fall', 2001, 'B '); + insert into takes values('17769', '352', '1', 'Spring', 2006, 'C+'); + insert into takes values('61354', '791', '1', 'Spring', 2006, 'B '); + insert into takes values('53165', '802', '1', 'Spring', 2003, 'A+'); + insert into takes values('4645', '852', '1', 'Spring', 2008, 'B '); + insert into takes values('16907', '319', '1', 'Spring', 2003, 'C-'); + insert into takes values('35685', '559', '1', 'Fall', 2002, 'C '); + insert into takes values('34329', '559', '1', 'Fall', 2002, 'A '); + insert into takes values('85211', '642', '1', 'Fall', 2004, 'A-'); + insert into takes values('14032', '679', '1', 'Spring', 2010, 'C-'); + insert into takes values('46337', '457', '1', 'Spring', 2001, 'C '); + insert into takes values('68720', '345', '1', 'Spring', 2008, 'A-'); + insert into takes values('53451', '105', '1', 'Fall', 2009, 'A '); + insert into takes values('9408', '629', '1', 'Spring', 2003, 'A '); + insert into takes values('74163', '603', '1', 'Fall', 2003, 'C+'); + insert into takes values('98563', '192', '1', 'Fall', 2002, 'B+'); + insert into takes values('66484', '795', '1', 'Spring', 2004, 'B '); + insert into takes values('54605', '237', '1', 'Spring', 2008, 'B+'); + insert into takes values('80047', '192', '1', 'Fall', 2002, 'A-'); + insert into takes values('1812', '991', '1', 'Spring', 2008, 'B+'); + insert into takes values('39704', '169', '1', 'Spring', 2007, 'A+'); + insert into takes values('5898', '334', '1', 'Fall', 2009, 'B '); + insert into takes values('11604', '604', '1', 'Spring', 2009, 'A '); + insert into takes values('842', '319', '1', 'Spring', 2003, 'A '); + insert into takes values('86806', '169', '2', 'Fall', 2002, 'C-'); + insert into takes values('86934', '258', '1', 'Fall', 2007, 'B+'); + insert into takes values('71287', '421', '1', 'Fall', 2004, 'C+'); + insert into takes values('2561', '692', '1', 'Spring', 2010, 'A '); + insert into takes values('60406', '694', '1', 'Fall', 2002, 'B+'); + insert into takes values('7287', '408', '2', 'Spring', 2003, 'A-'); + insert into takes values('43211', '747', '1', 'Spring', 2004, 'C-'); + insert into takes values('64259', '747', '1', 'Spring', 2004, 'A '); + insert into takes values('67542', '626', '1', 'Fall', 2006, 'B-'); + insert into takes values('75510', '571', '1', 'Spring', 2004, 'A-'); + insert into takes values('49205', '704', '1', 'Spring', 2008, 'C+'); + insert into takes values('15283', '843', '1', 'Fall', 2010, 'A+'); + insert into takes values('49982', '959', '1', 'Fall', 2006, 'C '); + insert into takes values('23344', '496', '1', 'Fall', 2001, 'A-'); + insert into takes values('32464', '376', '1', 'Fall', 2006, 'A-'); + insert into takes values('24116', '704', '1', 'Spring', 2008, 'B+'); + insert into takes values('38288', '629', '1', 'Spring', 2003, 'A '); + insert into takes values('97042', '270', '1', 'Spring', 2010, 'A '); + insert into takes values('87280', '604', '1', 'Spring', 2009, 'A+'); + insert into takes values('71904', '408', '1', 'Spring', 2007, 'A+'); + insert into takes values('41832', '239', '1', 'Fall', 2006, 'A-'); + insert into takes values('35721', '468', '2', 'Fall', 2007, 'A+'); + insert into takes values('1232', '496', '1', 'Fall', 2001, 'B-'); + insert into takes values('31442', '852', '1', 'Spring', 2008, 'C-'); + insert into takes values('53485', '991', '1', 'Spring', 2008, 'C+'); + insert into takes values('36881', '486', '1', 'Fall', 2009, 'B+'); + insert into takes values('82082', '867', '1', 'Fall', 2006, 'B '); + insert into takes values('65299', '400', '2', 'Fall', 2003, 'B+'); + insert into takes values('91799', '443', '2', 'Spring', 2002, 'C '); + insert into takes values('70924', '626', '1', 'Fall', 2006, 'C+'); + insert into takes values('20084', '304', '1', 'Fall', 2009, 'A '); + insert into takes values('71630', '852', '1', 'Spring', 2008, 'C+'); + insert into takes values('22258', '461', '1', 'Fall', 2002, 'B-'); + insert into takes values('93653', '137', '1', 'Spring', 2002, 'A+'); + insert into takes values('8860', '486', '1', 'Fall', 2009, 'B+'); + insert into takes values('12069', '702', '1', 'Spring', 2001, 'C+'); + insert into takes values('32744', '843', '1', 'Fall', 2010, 'B+'); + insert into takes values('57026', '400', '1', 'Spring', 2007, 'B '); + insert into takes values('73602', '443', '2', 'Spring', 2002, 'C-'); + insert into takes values('47824', '443', '1', 'Spring', 2010, 'C '); + insert into takes values('73807', '591', '1', 'Spring', 2005, 'B+'); + insert into takes values('83480', '192', '1', 'Fall', 2002, 'C-'); + insert into takes values('58170', '974', '1', 'Fall', 2003, 'C-'); + insert into takes values('50664', '875', '1', 'Spring', 2005, 'B-'); + insert into takes values('914', '426', '1', 'Spring', 2006, 'C-'); + insert into takes values('66753', '443', '2', 'Spring', 2002, 'A-'); + insert into takes values('9256', '694', '1', 'Fall', 2002, 'C-'); + insert into takes values('86802', '795', '1', 'Spring', 2004, 'C-'); + insert into takes values('79534', '642', '1', 'Fall', 2004, 'A+'); + insert into takes values('61402', '974', '1', 'Fall', 2003, 'A+'); + insert into takes values('36402', '443', '1', 'Spring', 2010, 'B+'); + insert into takes values('34542', '702', '1', 'Spring', 2001, 'A-'); + insert into takes values('58469', '581', '1', 'Spring', 2005, 'B+'); + insert into takes values('38696', '192', '1', 'Fall', 2002, 'B+'); + insert into takes values('67017', '559', '1', 'Fall', 2002, 'A+'); + insert into takes values('18338', '105', '1', 'Fall', 2009, 'A-'); + insert into takes values('49339', '169', '1', 'Spring', 2007, 'A '); + insert into takes values('52187', '496', '1', 'Fall', 2001, 'B '); + insert into takes values('72006', '791', '1', 'Spring', 2006, 'B-'); + insert into takes values('56139', '604', '1', 'Spring', 2009, 'A+'); + insert into takes values('15074', '694', '1', 'Fall', 2002, 'A-'); + insert into takes values('37734', '105', '2', 'Fall', 2002, 'A-'); + insert into takes values('85308', '158', '1', 'Fall', 2008, 'C-'); + insert into takes values('18821', '408', '2', 'Spring', 2003, 'A-'); + insert into takes values('98047', '349', '1', 'Spring', 2008, 'B+'); + insert into takes values('52291', '735', '1', 'Spring', 2003, 'C-'); + insert into takes values('23439', '192', '1', 'Fall', 2002, 'C+'); + insert into takes values('30182', '158', '1', 'Fall', 2008, 'B+'); + insert into takes values('32245', '599', '1', 'Spring', 2003, 'A '); + insert into takes values('4345', '793', '1', 'Spring', 2002, 'A+'); + insert into takes values('70384', '105', '1', 'Fall', 2009, 'A-'); + insert into takes values('38691', '304', '1', 'Fall', 2009, 'C+'); + insert into takes values('7973', '604', '1', 'Spring', 2009, 'B+'); + insert into takes values('74163', '443', '1', 'Spring', 2010, 'A+'); + insert into takes values('89734', '692', '1', 'Spring', 2010, 'B+'); + insert into takes values('74974', '867', '1', 'Fall', 2006, 'C-'); + insert into takes values('56124', '408', '1', 'Spring', 2007, 'A+'); + insert into takes values('54728', '663', '1', 'Spring', 2005, 'A-'); + insert into takes values('53803', '962', '1', 'Spring', 2008, 'C '); + insert into takes values('44881', '545', '1', 'Fall', 2001, 'B-'); + insert into takes values('3039', '704', '1', 'Spring', 2008, 'A-'); + insert into takes values('78552', '748', '1', 'Fall', 2003, 'C+'); + insert into takes values('20195', '692', '1', 'Spring', 2010, 'A '); + insert into takes values('71426', '962', '1', 'Spring', 2008, 'C '); + insert into takes values('75123', '408', '1', 'Spring', 2007, 'A-'); + insert into takes values('9360', '338', '1', 'Spring', 2007, 'C+'); + insert into takes values('75362', '631', '1', 'Spring', 2007, 'B-'); + insert into takes values('96153', '200', '2', 'Fall', 2002, 'C+'); + insert into takes values('32368', '482', '1', 'Fall', 2005, 'B-'); + insert into takes values('32886', '702', '1', 'Spring', 2001, 'A+'); + insert into takes values('32130', '591', '1', 'Spring', 2005, 'C-'); + insert into takes values('35881', '237', '2', 'Fall', 2009, 'C+'); + insert into takes values('57474', '561', '1', 'Fall', 2006, 'A-'); + insert into takes values('8251', '760', '1', 'Spring', 2004, 'B+'); + insert into takes values('51975', '493', '1', 'Spring', 2010, 'C '); + insert into takes values('89104', '631', '1', 'Spring', 2007, 'C+'); + insert into takes values('29707', '642', '1', 'Fall', 2004, 'B '); + insert into takes values('91616', '158', '2', 'Spring', 2008, 'A '); + insert into takes values('52157', '747', '1', 'Spring', 2004, 'A+'); + insert into takes values('14032', '599', '1', 'Spring', 2003, 'A-'); + insert into takes values('46769', '760', '1', 'Spring', 2004, 'A-'); + insert into takes values('80248', '571', '1', 'Spring', 2004, 'C '); + insert into takes values('3005', '476', '1', 'Fall', 2010, 'A '); + insert into takes values('1533', '489', '1', 'Fall', 2007, 'A '); + insert into takes values('59553', '527', '1', 'Fall', 2004, 'B-'); + insert into takes values('40059', '599', '1', 'Spring', 2003, 'C '); + insert into takes values('9256', '747', '1', 'Spring', 2004, 'A+'); + insert into takes values('60267', '137', '1', 'Spring', 2002, 'A-'); + insert into takes values('19735', '200', '2', 'Fall', 2002, 'B+'); + insert into takes values('52656', '960', '2', 'Fall', 2006, 'A+'); + insert into takes values('80254', '476', '1', 'Fall', 2010, 'C-'); + insert into takes values('59455', '169', '2', 'Fall', 2002, 'A+'); + insert into takes values('17831', '959', '1', 'Fall', 2006, 'B+'); + insert into takes values('34236', '338', '1', 'Spring', 2007, 'A+'); + insert into takes values('29390', '200', '2', 'Fall', 2002, 'C+'); + insert into takes values('2201', '468', '1', 'Fall', 2005, 'A-'); + insert into takes values('31250', '864', '1', 'Spring', 2006, 'A '); + insert into takes values('50267', '893', '1', 'Fall', 2007, 'B-'); + insert into takes values('53805', '158', '1', 'Fall', 2008, 'A+'); + insert into takes values('77244', '400', '2', 'Fall', 2003, 'C+'); + insert into takes values('82082', '408', '1', 'Spring', 2007, 'B '); + insert into takes values('13403', '366', '1', 'Fall', 2005, 'B+'); + insert into takes values('99711', '200', '2', 'Fall', 2002, 'B '); + insert into takes values('78552', '663', '1', 'Spring', 2005, 'A-'); + insert into takes values('85366', '960', '1', 'Fall', 2009, 'C+'); + insert into takes values('94801', '949', '1', 'Fall', 2007, 'B-'); + insert into takes values('56057', '612', '1', 'Fall', 2007, 'A+'); + insert into takes values('25362', '867', '1', 'Fall', 2006, 'B-'); + insert into takes values('89571', '137', '1', 'Spring', 2002, 'C '); + insert into takes values('65688', '802', '1', 'Spring', 2003, 'C '); + insert into takes values('11194', '200', '1', 'Spring', 2007, 'B+'); + insert into takes values('20002', '338', '2', 'Spring', 2006, 'C+'); + insert into takes values('94324', '362', '3', 'Spring', 2008, 'C '); + insert into takes values('83511', '169', '2', 'Fall', 2002, 'A-'); + insert into takes values('33349', '443', '1', 'Spring', 2010, 'B+'); + insert into takes values('63243', '959', '1', 'Fall', 2006, 'C-'); + insert into takes values('63289', '692', '1', 'Spring', 2010, 'B-'); + insert into takes values('33791', '137', '1', 'Spring', 2002, 'A+'); + insert into takes values('49244', '808', '1', 'Fall', 2003, 'C '); + insert into takes values('847', '559', '1', 'Fall', 2002, 'C+'); + insert into takes values('70564', '696', '1', 'Spring', 2002, 'A+'); + insert into takes values('41774', '704', '1', 'Spring', 2008, 'A-'); + insert into takes values('16133', '747', '1', 'Spring', 2004, 'B-'); + insert into takes values('67222', '105', '2', 'Fall', 2002, 'A+'); + insert into takes values('78481', '400', '1', 'Spring', 2007, 'A-'); + insert into takes values('78792', '561', '1', 'Fall', 2006, 'B '); + insert into takes values('53047', '702', '1', 'Spring', 2001, 'B-'); + insert into takes values('31250', '735', '1', 'Spring', 2003, 'B '); + insert into takes values('99463', '270', '1', 'Spring', 2010, 'A '); + insert into takes values('32376', '626', '1', 'Fall', 2006, 'C-'); + insert into takes values('70688', '105', '1', 'Fall', 2009, 'B '); + insert into takes values('16993', '748', '1', 'Fall', 2003, 'A-'); + insert into takes values('11455', '468', '2', 'Fall', 2007, 'A-'); + insert into takes values('27687', '362', '1', 'Fall', 2005, 'B-'); + insert into takes values('28019', '760', '1', 'Spring', 2004, 'C-'); + insert into takes values('62226', '486', '1', 'Fall', 2009, 'B+'); + insert into takes values('11453', '482', '1', 'Fall', 2005, 'C-'); + insert into takes values('47487', '461', '1', 'Fall', 2002, 'A-'); + insert into takes values('69679', '663', '1', 'Spring', 2005, 'A '); + insert into takes values('20378', '604', '1', 'Spring', 2009, 'C+'); + insert into takes values('96193', '864', '1', 'Spring', 2006, 'B-'); + insert into takes values('81884', '735', '1', 'Spring', 2003, 'A-'); + insert into takes values('57431', '486', '1', 'Fall', 2009, 'B-'); + insert into takes values('98870', '867', '1', 'Fall', 2006, 'C '); + insert into takes values('17086', '581', '1', 'Spring', 2005, 'B '); + insert into takes values('42019', '421', '1', 'Fall', 2004, 'A '); + insert into takes values('9993', '927', '1', 'Fall', 2002, 'C+'); + insert into takes values('50038', '694', '1', 'Fall', 2002, 'A '); + insert into takes values('96615', '461', '1', 'Fall', 2002, 'A+'); + insert into takes values('8426', '604', '1', 'Spring', 2009, 'B '); + insert into takes values('5250', '959', '1', 'Fall', 2006, 'C-'); + insert into takes values('74530', '626', '1', 'Fall', 2006, 'B+'); + insert into takes values('67793', '747', '1', 'Spring', 2004, 'B '); + insert into takes values('88884', '352', '1', 'Spring', 2006, 'B+'); + insert into takes values('71543', '629', '1', 'Spring', 2003, 'C-'); + insert into takes values('70965', '747', '1', 'Spring', 2004, 'B-'); + insert into takes values('36685', '604', '1', 'Spring', 2009, 'B+'); + insert into takes values('93631', '591', '1', 'Spring', 2005, 'A-'); + insert into takes values('72669', '401', '1', 'Fall', 2003, 'B+'); + insert into takes values('81150', '242', '1', 'Fall', 2009, 'C '); + insert into takes values('66106', '274', '1', 'Fall', 2002, 'B '); + insert into takes values('13217', '345', '1', 'Spring', 2008, 'B+'); + insert into takes values('21766', '169', '2', 'Fall', 2002, 'C '); + insert into takes values('34788', '242', '1', 'Fall', 2009, 'A+'); + insert into takes values('31993', '158', '2', 'Spring', 2008, 'A+'); + insert into takes values('57787', '137', '1', 'Spring', 2002, 'C '); + insert into takes values('19342', '493', '1', 'Spring', 2010, 'A-'); + insert into takes values('69225', '527', '1', 'Fall', 2004, 'B+'); + insert into takes values('56', '960', '1', 'Fall', 2009, 'C+'); + insert into takes values('20378', '192', '1', 'Fall', 2002, 'B+'); + insert into takes values('51579', '747', '1', 'Spring', 2004, 'A-'); + insert into takes values('61127', '493', '1', 'Spring', 2010, 'A-'); + insert into takes values('18108', '893', '1', 'Fall', 2007, 'B+'); + insert into takes values('98423', '960', '1', 'Fall', 2009, 'B '); + insert into takes values('10556', '962', '1', 'Spring', 2008, 'A '); + insert into takes values('53588', '408', '2', 'Spring', 2003, 'B '); + insert into takes values('46337', '376', '1', 'Fall', 2006, 'B+'); + insert into takes values('79502', '137', '1', 'Spring', 2002, 'B '); + insert into takes values('18941', '489', '1', 'Fall', 2007, 'B+'); + insert into takes values('76672', '105', '2', 'Fall', 2002, 'B '); + insert into takes values('15340', '626', '1', 'Fall', 2006, 'C-'); + insert into takes values('96246', '748', '1', 'Fall', 2003, 'C '); + insert into takes values('50977', '748', '1', 'Fall', 2003, 'A-'); + insert into takes values('94173', '694', '1', 'Fall', 2002, 'C '); + insert into takes values('63645', '489', '1', 'Fall', 2007, 'B '); + insert into takes values('96324', '443', '1', 'Spring', 2010, 'A+'); + insert into takes values('76169', '461', '1', 'Fall', 2002, 'A '); + insert into takes values('85356', '400', '2', 'Fall', 2003, 'C '); + insert into takes values('4355', '468', '2', 'Fall', 2007, 'B+'); + insert into takes values('62716', '867', '2', 'Fall', 2010, 'B+'); + insert into takes values('40059', '867', '2', 'Fall', 2010, 'C-'); + insert into takes values('57962', '612', '1', 'Fall', 2007, 'B-'); + insert into takes values('11604', '747', '1', 'Spring', 2004, 'C+'); + insert into takes values('27662', '489', '1', 'Fall', 2007, 'B+'); + insert into takes values('4383', '974', '1', 'Fall', 2003, 'A-'); + insert into takes values('51817', '192', '1', 'Fall', 2002, 'C+'); + insert into takes values('12173', '489', '1', 'Fall', 2007, 'C-'); + insert into takes values('65208', '571', '1', 'Spring', 2004, 'A '); + insert into takes values('58469', '962', '1', 'Spring', 2008, 'A '); + insert into takes values('91915', '443', '2', 'Spring', 2002, 'C '); + insert into takes values('34386', '319', '1', 'Spring', 2003, 'B '); + insert into takes values('5393', '960', '1', 'Fall', 2009, 'C+'); + insert into takes values('66484', '274', '1', 'Fall', 2002, 'A+'); + insert into takes values('77729', '875', '1', 'Spring', 2005, 'A '); + insert into takes values('1826', '795', '1', 'Spring', 2004, 'A+'); + insert into takes values('53469', '345', '1', 'Spring', 2008, 'A+'); + insert into takes values('74473', '237', '1', 'Spring', 2008, 'B+'); + insert into takes values('7970', '893', '1', 'Fall', 2007, 'C+'); + insert into takes values('25046', '486', '1', 'Fall', 2009, 'A+'); + insert into takes values('69628', '612', '1', 'Fall', 2007, 'C '); + insert into takes values('22254', '748', '1', 'Fall', 2003, 'A+'); + insert into takes values('507', '274', '1', 'Fall', 2002, 'C '); + insert into takes values('40059', '400', '1', 'Spring', 2007, 'A+'); + insert into takes values('39901', '960', '2', 'Fall', 2006, 'B '); + insert into takes values('49214', '192', '1', 'Fall', 2002, 'C+'); + insert into takes values('32464', '545', '1', 'Fall', 2001, 'A-'); + insert into takes values('68720', '626', '1', 'Fall', 2006, 'A-'); + insert into takes values('98726', '334', '1', 'Fall', 2009, 'A '); + insert into takes values('99611', '461', '1', 'Fall', 2002, 'C+'); + insert into takes values('83592', '105', '1', 'Fall', 2009, 'B+'); + insert into takes values('3039', '239', '1', 'Fall', 2006, 'C+'); + insert into takes values('4182', '426', '1', 'Spring', 2006, 'A-'); + insert into takes values('75395', '376', '1', 'Fall', 2006, 'A+'); + insert into takes values('84792', '169', '1', 'Spring', 2007, 'B '); + insert into takes values('53799', '400', '2', 'Fall', 2003, 'C '); + insert into takes values('80990', '702', '1', 'Spring', 2001, 'A-'); + insert into takes values('22198', '599', '1', 'Spring', 2003, 'C '); + insert into takes values('53451', '486', '1', 'Fall', 2009, 'C-'); + insert into takes values('97551', '867', '1', 'Fall', 2006, 'B-'); + insert into takes values('95260', '338', '2', 'Spring', 2006, 'A+'); + insert into takes values('40992', '581', '1', 'Spring', 2005, 'C+'); + insert into takes values('88169', '468', '2', 'Fall', 2007, 'B+'); + insert into takes values('89393', '192', '1', 'Fall', 2002, 'A-'); + insert into takes values('75423', '443', '2', 'Spring', 2002, 'A '); + insert into takes values('97023', '612', '1', 'Fall', 2007, 'C-'); + insert into takes values('9440', '603', '1', 'Fall', 2003, 'A '); + insert into takes values('23992', '169', '2', 'Fall', 2002, 'A-'); + insert into takes values('23224', '105', '1', 'Fall', 2009, 'C '); + insert into takes values('46956', '696', '1', 'Spring', 2002, 'A+'); + insert into takes values('43616', '105', '1', 'Fall', 2009, 'C-'); + insert into takes values('82580', '137', '1', 'Spring', 2002, 'C+'); + insert into takes values('53803', '366', '1', 'Fall', 2005, 'B-'); + insert into takes values('69471', '274', '1', 'Fall', 2002, 'B+'); + insert into takes values('85680', '169', '2', 'Fall', 2002, 'A '); + insert into takes values('32772', '362', '2', 'Fall', 2006, 'C '); + insert into takes values('40189', '843', '1', 'Fall', 2010, 'C+'); + insert into takes values('56139', '376', '1', 'Fall', 2006, 'A-'); + insert into takes values('65396', '489', '1', 'Fall', 2007, 'C-'); + insert into takes values('40738', '401', '1', 'Fall', 2003, 'C '); + insert into takes values('88169', '200', '1', 'Spring', 2007, 'C+'); + insert into takes values('39472', '852', '1', 'Spring', 2008, 'A-'); + insert into takes values('34126', '612', '1', 'Fall', 2007, 'B '); + insert into takes values('1110', '694', '1', 'Fall', 2002, 'B+'); + insert into takes values('12362', '468', '1', 'Fall', 2005, 'C '); + insert into takes values('65241', '338', '2', 'Spring', 2006, 'A+'); + insert into takes values('72622', '867', '2', 'Fall', 2010, 'A+'); + insert into takes values('43989', '334', '1', 'Fall', 2009, 'A+'); + insert into takes values('8843', '349', '1', 'Spring', 2008, 'A-'); + insert into takes values('44551', '468', '1', 'Fall', 2005, 'C-'); + insert into takes values('75878', '496', '1', 'Fall', 2001, 'C-'); + insert into takes values('17769', '319', '1', 'Spring', 2003, 'C+'); + insert into takes values('14182', '461', '1', 'Fall', 2002, 'B '); + insert into takes values('78892', '334', '1', 'Fall', 2009, 'A '); + insert into takes values('72358', '486', '1', 'Fall', 2009, 'B+'); + insert into takes values('85226', '304', '1', 'Fall', 2009, 'A '); + insert into takes values('63886', '242', '1', 'Fall', 2009, 'B+'); + insert into takes values('66279', '735', '2', 'Spring', 2010, 'A+'); + insert into takes values('5920', '694', '1', 'Fall', 2002, 'A+'); + insert into takes values('9953', '376', '1', 'Fall', 2006, 'B-'); + insert into takes values('94697', '362', '3', 'Spring', 2008, 'B+'); + insert into takes values('14869', '443', '2', 'Spring', 2002, 'B '); + insert into takes values('93004', '960', '2', 'Fall', 2006, 'A+'); + insert into takes values('37284', '561', '1', 'Fall', 2006, 'A-'); + insert into takes values('32217', '791', '1', 'Spring', 2006, 'A+'); + insert into takes values('88140', '692', '1', 'Spring', 2010, 'A+'); + insert into takes values('64192', '893', '1', 'Fall', 2007, 'A '); + insert into takes values('82580', '867', '1', 'Fall', 2006, 'A-'); + insert into takes values('17377', '421', '1', 'Fall', 2004, 'A-'); + insert into takes values('12979', '604', '1', 'Spring', 2009, 'C-'); + insert into takes values('2201', '972', '1', 'Spring', 2009, 'A+'); + insert into takes values('99730', '242', '1', 'Fall', 2009, 'C '); + insert into takes values('32245', '169', '1', 'Spring', 2007, 'C-'); + insert into takes values('95029', '169', '2', 'Fall', 2002, 'A-'); + insert into takes values('39254', '559', '1', 'Fall', 2002, 'B-'); + insert into takes values('67657', '962', '1', 'Spring', 2008, 'A+'); + insert into takes values('4582', '893', '1', 'Fall', 2007, 'C '); + insert into takes values('21009', '735', '1', 'Spring', 2003, 'A+'); + insert into takes values('48247', '663', '1', 'Spring', 2005, 'C+'); + insert into takes values('5943', '237', '1', 'Spring', 2008, 'A '); + insert into takes values('78767', '274', '1', 'Fall', 2002, 'A+'); + insert into takes values('9360', '482', '1', 'Fall', 2005, 'C+'); + insert into takes values('64140', '867', '2', 'Fall', 2010, 'C+'); + insert into takes values('39046', '169', '1', 'Spring', 2007, 'A+'); + insert into takes values('5017', '599', '1', 'Spring', 2003, 'B '); + insert into takes values('84167', '237', '2', 'Fall', 2009, 'C '); + insert into takes values('22325', '468', '1', 'Fall', 2005, 'C-'); + insert into takes values('64013', '959', '1', 'Fall', 2006, 'A+'); + insert into takes values('59117', '747', '1', 'Spring', 2004, 'B '); + insert into takes values('50658', '415', '1', 'Fall', 2010, 'A '); + insert into takes values('61737', '443', '2', 'Spring', 2002, 'B-'); + insert into takes values('49611', '376', '1', 'Fall', 2006, 'C-'); + insert into takes values('34386', '105', '2', 'Fall', 2002, 'C+'); + insert into takes values('59673', '476', '1', 'Fall', 2010, 'A+'); + insert into takes values('36052', '843', '1', 'Fall', 2010, 'B '); + insert into takes values('56', '561', '1', 'Fall', 2006, 'C '); + insert into takes values('4355', '239', '1', 'Fall', 2006, 'A '); + insert into takes values('95850', '864', '1', 'Spring', 2006, 'A-'); + insert into takes values('4860', '274', '1', 'Fall', 2002, 'C '); + insert into takes values('82580', '237', '2', 'Fall', 2009, 'B '); + insert into takes values('79329', '852', '1', 'Spring', 2008, 'B-'); + insert into takes values('20974', '663', '1', 'Spring', 2005, 'C '); + insert into takes values('27528', '694', '1', 'Fall', 2002, 'C '); + insert into takes values('98047', '338', '2', 'Spring', 2006, 'C+'); + insert into takes values('36513', '704', '1', 'Spring', 2008, 'A '); + insert into takes values('47677', '352', '1', 'Spring', 2006, 'B-'); + insert into takes values('27430', '105', '1', 'Fall', 2009, 'C+'); + insert into takes values('25611', '704', '1', 'Spring', 2008, 'A+'); + insert into takes values('89104', '663', '1', 'Spring', 2005, 'B-'); + insert into takes values('20489', '258', '1', 'Fall', 2007, 'B-'); + insert into takes values('61414', '893', '1', 'Fall', 2007, 'B+'); + insert into takes values('49684', '793', '1', 'Spring', 2002, 'B-'); + insert into takes values('84845', '735', '1', 'Spring', 2003, 'B+'); + insert into takes values('42956', '949', '1', 'Fall', 2007, 'B+'); + insert into takes values('87048', '415', '1', 'Fall', 2010, 'A '); + insert into takes values('72657', '457', '1', 'Spring', 2001, 'C '); + insert into takes values('67293', '445', '1', 'Spring', 2001, 'C '); + insert into takes values('65703', '400', '1', 'Spring', 2007, 'A+'); + insert into takes values('76049', '400', '2', 'Fall', 2003, 'A '); + insert into takes values('17133', '200', '2', 'Fall', 2002, 'A '); + insert into takes values('22003', '852', '1', 'Spring', 2008, 'C '); + insert into takes values('78637', '274', '1', 'Fall', 2002, 'B+'); + insert into takes values('28004', '237', '2', 'Fall', 2009, 'B '); + insert into takes values('9183', '200', '2', 'Fall', 2002, 'B+'); + insert into takes values('39472', '974', '1', 'Fall', 2003, 'B+'); + insert into takes values('84845', '679', '1', 'Spring', 2010, 'C+'); + insert into takes values('7620', '338', '1', 'Spring', 2007, 'B-'); + insert into takes values('40558', '867', '2', 'Fall', 2010, 'C+'); + insert into takes values('46451', '795', '1', 'Spring', 2004, 'C+'); + insert into takes values('99719', '960', '1', 'Fall', 2009, 'A-'); + insert into takes values('30182', '200', '1', 'Spring', 2007, 'B '); + insert into takes values('32056', '137', '1', 'Spring', 2002, 'B+'); + insert into takes values('74473', '808', '1', 'Fall', 2003, 'C '); + insert into takes values('93061', '338', '2', 'Spring', 2006, 'B-'); + insert into takes values('51203', '808', '1', 'Fall', 2003, 'C-'); + insert into takes values('4355', '345', '1', 'Spring', 2008, 'C+'); + insert into takes values('66293', '793', '1', 'Spring', 2002, 'B '); + insert into takes values('78314', '352', '1', 'Spring', 2006, 'A+'); + insert into takes values('91616', '559', '1', 'Fall', 2002, 'A+'); + insert into takes values('97590', '603', '1', 'Fall', 2003, 'C '); + insert into takes values('75040', '893', '1', 'Fall', 2007, 'C+'); + insert into takes values('107', '200', '1', 'Spring', 2007, 'C+'); + insert into takes values('10736', '626', '1', 'Fall', 2006, 'C '); + insert into takes values('70918', '468', '1', 'Fall', 2005, 'B+'); + insert into takes values('82868', '349', '1', 'Spring', 2008, 'B-'); + insert into takes values('5898', '571', '1', 'Spring', 2004, 'A+'); + insert into takes values('85910', '421', '1', 'Fall', 2004, 'C-'); + insert into takes values('46260', '561', '1', 'Fall', 2006, 'A '); + insert into takes values('65396', '169', '2', 'Fall', 2002, 'A '); + insert into takes values('68330', '852', '1', 'Spring', 2008, 'B-'); + insert into takes values('79534', '489', '1', 'Fall', 2007, 'C-'); + insert into takes values('20974', '192', '1', 'Fall', 2002, 'B+'); + insert into takes values('57962', '571', '1', 'Spring', 2004, 'B-'); + insert into takes values('81984', '200', '1', 'Spring', 2007, 'A-'); + insert into takes values('85680', '852', '1', 'Spring', 2008, 'C '); + insert into takes values('53547', '482', '1', 'Fall', 2005, 'B+'); + insert into takes values('90779', '457', '1', 'Spring', 2001, 'A '); + insert into takes values('64082', '696', '1', 'Spring', 2002, 'A+'); + insert into takes values('58606', '704', '1', 'Spring', 2008, 'A '); + insert into takes values('71025', '137', '1', 'Spring', 2002, 'C+'); + insert into takes values('12941', '200', '2', 'Fall', 2002, 'B+'); + insert into takes values('55238', '366', '1', 'Fall', 2005, 'B '); + insert into takes values('36019', '599', '1', 'Spring', 2003, 'A+'); + insert into takes values('31624', '274', '1', 'Fall', 2002, 'B '); + insert into takes values('75395', '867', '1', 'Fall', 2006, 'B '); + insert into takes values('30124', '694', '1', 'Fall', 2002, 'B '); + insert into takes values('83214', '867', '1', 'Fall', 2006, 'C+'); + insert into takes values('63361', '237', '1', 'Spring', 2008, 'C '); + insert into takes values('95205', '200', '2', 'Fall', 2002, 'B '); + insert into takes values('21337', '366', '1', 'Fall', 2005, 'C+'); + insert into takes values('38476', '629', '1', 'Spring', 2003, 'B '); + insert into takes values('15457', '313', '1', 'Fall', 2010, 'A '); + insert into takes values('1836', '400', '2', 'Fall', 2003, 'A '); + insert into takes values('94846', '893', '1', 'Fall', 2007, 'A+'); + insert into takes values('20180', '867', '1', 'Fall', 2006, 'A '); + insert into takes values('76291', '137', '1', 'Spring', 2002, 'A+'); + insert into takes values('25528', '169', '1', 'Spring', 2007, 'C+'); + insert into takes values('69960', '443', '1', 'Spring', 2010, 'B-'); + insert into takes values('33882', '735', '2', 'Spring', 2010, 'A '); + insert into takes values('4248', '338', '1', 'Spring', 2007, 'A-'); + insert into takes values('15024', '960', '1', 'Fall', 2009, 'B '); + insert into takes values('69952', '808', '1', 'Fall', 2003, 'B+'); + insert into takes values('87193', '612', '1', 'Fall', 2007, 'A+'); + insert into takes values('89312', '802', '1', 'Spring', 2003, 'B '); + insert into takes values('63886', '735', '2', 'Spring', 2010, 'B-'); + insert into takes values('86127', '445', '1', 'Spring', 2001, 'A-'); + insert into takes values('67017', '349', '1', 'Spring', 2008, 'A-'); + insert into takes values('88993', '864', '1', 'Spring', 2006, 'C '); + insert into takes values('64155', '443', '2', 'Spring', 2002, 'C+'); + insert into takes values('60984', '493', '1', 'Spring', 2010, 'C-'); + insert into takes values('76672', '376', '1', 'Fall', 2006, 'B-'); + insert into takes values('50598', '591', '1', 'Spring', 2005, 'A '); + insert into takes values('51923', '313', '1', 'Fall', 2010, 'B+'); + insert into takes values('66494', '867', '1', 'Fall', 2006, 'B-'); + insert into takes values('66813', '692', '1', 'Spring', 2010, 'A+'); + insert into takes values('94730', '852', '1', 'Spring', 2008, 'C+'); + insert into takes values('58701', '461', '1', 'Fall', 2002, 'C+'); + insert into takes values('27017', '237', '1', 'Spring', 2008, 'C '); + insert into takes values('31035', '972', '1', 'Spring', 2009, 'C '); + insert into takes values('24201', '692', '1', 'Spring', 2010, 'B+'); + insert into takes values('35220', '200', '2', 'Fall', 2002, 'B '); + insert into takes values('89234', '105', '1', 'Fall', 2009, 'A+'); + insert into takes values('49214', '237', '2', 'Fall', 2009, 'A '); + insert into takes values('63489', '376', '1', 'Fall', 2006, 'C+'); + insert into takes values('36657', '258', '1', 'Fall', 2007, 'C '); + insert into takes values('97679', '345', '1', 'Spring', 2008, 'A-'); + insert into takes values('65396', '692', '1', 'Spring', 2010, 'A '); + insert into takes values('36019', '972', '1', 'Spring', 2009, 'B '); + insert into takes values('1000', '962', '1', 'Spring', 2008, 'B-'); + insert into takes values('32345', '747', '1', 'Spring', 2004, 'A '); + insert into takes values('61127', '486', '1', 'Fall', 2009, 'B+'); + insert into takes values('53496', '545', '1', 'Fall', 2001, 'C-'); + insert into takes values('98726', '747', '1', 'Spring', 2004, 'A-'); + insert into takes values('32065', '561', '1', 'Fall', 2006, 'A-'); + insert into takes values('71878', '258', '1', 'Fall', 2007, 'A '); + insert into takes values('25940', '692', '1', 'Spring', 2010, 'B-'); + insert into takes values('47126', '362', '1', 'Fall', 2005, 'B '); + insert into takes values('80821', '962', '1', 'Spring', 2008, 'B+'); + insert into takes values('83170', '679', '1', 'Spring', 2010, 'A+'); + insert into takes values('65901', '304', '1', 'Fall', 2009, 'C '); + insert into takes values('3739', '400', '1', 'Spring', 2007, 'B+'); + insert into takes values('64401', '959', '1', 'Fall', 2006, 'A '); + insert into takes values('76246', '200', '2', 'Fall', 2002, 'C '); + insert into takes values('38271', '408', '1', 'Spring', 2007, 'B+'); + insert into takes values('92965', '352', '1', 'Spring', 2006, 'B+'); + insert into takes values('19450', '867', '2', 'Fall', 2010, 'B-'); + insert into takes values('11578', '696', '1', 'Spring', 2002, 'B '); + insert into takes values('36845', '603', '1', 'Fall', 2003, 'B+'); + insert into takes values('72657', '631', '1', 'Spring', 2007, 'A-'); + insert into takes values('73387', '461', '1', 'Fall', 2002, 'C-'); + insert into takes values('89104', '875', '1', 'Spring', 2005, 'A '); + insert into takes values('64259', '239', '1', 'Fall', 2006, 'B '); + insert into takes values('69952', '604', '1', 'Spring', 2009, 'C-'); + insert into takes values('4182', '338', '1', 'Spring', 2007, 'B '); + insert into takes values('72768', '559', '1', 'Fall', 2002, 'C+'); + insert into takes values('17424', '239', '1', 'Fall', 2006, 'C+'); + insert into takes values('73387', '376', '1', 'Fall', 2006, 'A+'); + insert into takes values('67655', '704', '1', 'Spring', 2008, 'A '); + insert into takes values('61003', '604', '1', 'Spring', 2009, 'C '); + insert into takes values('85308', '489', '1', 'Fall', 2007, 'A-'); + insert into takes values('73213', '991', '1', 'Spring', 2008, 'B '); + insert into takes values('43130', '591', '1', 'Spring', 2005, 'C-'); + insert into takes values('41671', '960', '2', 'Fall', 2006, 'B-'); + insert into takes values('94814', '694', '1', 'Fall', 2002, 'B+'); + insert into takes values('64945', '559', '1', 'Fall', 2002, 'A+'); + insert into takes values('50719', '704', '1', 'Spring', 2008, 'B+'); + insert into takes values('65753', '735', '2', 'Spring', 2010, 'C-'); + insert into takes values('52656', '443', '1', 'Spring', 2010, 'B-'); + insert into takes values('36019', '200', '2', 'Fall', 2002, 'A-'); + insert into takes values('92385', '604', '1', 'Spring', 2009, 'C+'); + insert into takes values('30021', '362', '1', 'Fall', 2005, 'A-'); + insert into takes values('18499', '591', '1', 'Spring', 2005, 'A-'); + insert into takes values('63860', '704', '1', 'Spring', 2008, 'A-'); + insert into takes values('9659', '319', '1', 'Spring', 2003, 'A+'); + insert into takes values('43123', '338', '2', 'Spring', 2006, 'A '); + insert into takes values('72622', '242', '1', 'Fall', 2009, 'B-'); + insert into takes values('88389', '702', '1', 'Spring', 2001, 'B-'); + insert into takes values('39927', '791', '1', 'Spring', 2006, 'B-'); + insert into takes values('81566', '468', '1', 'Fall', 2005, 'A-'); + insert into takes values('2423', '959', '1', 'Fall', 2006, 'C+'); + insert into takes values('4355', '476', '1', 'Fall', 2010, 'B-'); + insert into takes values('82580', '960', '1', 'Fall', 2009, 'C+'); + insert into takes values('43993', '258', '1', 'Fall', 2007, 'C+'); + insert into takes values('51862', '334', '1', 'Fall', 2009, 'A+'); + insert into takes values('96968', '604', '1', 'Spring', 2009, 'A '); + insert into takes values('99694', '802', '1', 'Spring', 2003, 'C+'); + insert into takes values('72186', '599', '1', 'Spring', 2003, 'C+'); + insert into takes values('15883', '476', '1', 'Fall', 2010, 'C+'); + insert into takes values('43123', '604', '1', 'Spring', 2009, 'B+'); + insert into takes values('24116', '366', '1', 'Fall', 2005, 'B+'); + insert into takes values('34197', '974', '1', 'Fall', 2003, 'B '); + insert into takes values('86934', '927', '1', 'Fall', 2002, 'A+'); + insert into takes values('27662', '808', '1', 'Fall', 2003, 'B-'); + insert into takes values('75534', '270', '1', 'Spring', 2010, 'A-'); + insert into takes values('34502', '802', '1', 'Spring', 2003, 'C+'); + insert into takes values('22532', '401', '1', 'Fall', 2003, 'B+'); + insert into takes values('22179', '927', '1', 'Fall', 2002, 'C-'); + insert into takes values('53047', '704', '1', 'Spring', 2008, 'A '); + insert into takes values('78782', '496', '1', 'Fall', 2001, 'C+'); + insert into takes values('48850', '319', '1', 'Spring', 2003, 'B '); + insert into takes values('78767', '561', '1', 'Fall', 2006, 'B+'); + insert into takes values('89188', '972', '1', 'Spring', 2009, 'B+'); + insert into takes values('10556', '376', '1', 'Fall', 2006, 'B+'); + insert into takes values('73328', '802', '1', 'Spring', 2003, 'A+'); + insert into takes values('86674', '962', '1', 'Spring', 2008, 'A+'); + insert into takes values('43981', '270', '1', 'Spring', 2010, 'B-'); + insert into takes values('31341', '747', '1', 'Spring', 2004, 'A+'); + insert into takes values('27094', '791', '1', 'Spring', 2006, 'A-'); + insert into takes values('96895', '352', '1', 'Spring', 2006, 'B+'); + insert into takes values('74672', '461', '1', 'Fall', 2002, 'B '); + insert into takes values('21552', '237', '2', 'Fall', 2009, 'B+'); + insert into takes values('79589', '415', '1', 'Fall', 2010, 'B '); + insert into takes values('37759', '274', '1', 'Fall', 2002, 'C+'); + insert into takes values('81610', '702', '1', 'Spring', 2001, 'A '); + insert into takes values('43495', '169', '1', 'Spring', 2007, 'A+'); + insert into takes values('16593', '591', '1', 'Spring', 2005, 'C '); + insert into takes values('99226', '137', '1', 'Spring', 2002, 'C+'); + insert into takes values('73213', '808', '1', 'Fall', 2003, 'C '); + insert into takes values('77289', '443', '1', 'Spring', 2010, 'B+'); + insert into takes values('259', '692', '1', 'Spring', 2010, 'B-'); + insert into takes values('37038', '274', '1', 'Fall', 2002, 'C '); + insert into takes values('1220', '237', '2', 'Fall', 2009, 'C '); + insert into takes values('25942', '696', '1', 'Spring', 2002, 'B-'); + insert into takes values('33791', '468', '1', 'Fall', 2005, 'A-'); + insert into takes values('10904', '629', '1', 'Spring', 2003, 'A-'); + insert into takes values('22254', '421', '1', 'Fall', 2004, 'B-'); + insert into takes values('76799', '105', '1', 'Fall', 2009, 'B '); + insert into takes values('37581', '694', '1', 'Fall', 2002, 'C-'); + insert into takes values('4345', '349', '1', 'Spring', 2008, 'C-'); + insert into takes values('2177', '443', '2', 'Spring', 2002, 'C '); + insert into takes values('88358', '304', '1', 'Fall', 2009, 'C-'); + insert into takes values('67560', '960', '1', 'Fall', 2009, 'B+'); + insert into takes values('86552', '626', '1', 'Fall', 2006, 'A-'); + insert into takes values('31442', '352', '1', 'Spring', 2006, 'C+'); + insert into takes values('66229', '345', '1', 'Spring', 2008, 'A '); + insert into takes values('10481', '852', '1', 'Spring', 2008, 'C '); + insert into takes values('20099', '808', '1', 'Fall', 2003, 'A-'); + insert into takes values('77588', '793', '1', 'Spring', 2002, 'C+'); + insert into takes values('83136', '867', '1', 'Fall', 2006, 'C+'); + insert into takes values('27556', '105', '1', 'Fall', 2009, 'B+'); + insert into takes values('76953', '599', '1', 'Spring', 2003, 'A '); + insert into takes values('51579', '696', '1', 'Spring', 2002, 'C+'); + insert into takes values('66469', '864', '1', 'Spring', 2006, 'B+'); + insert into takes values('70384', '808', '1', 'Fall', 2003, 'A+'); + insert into takes values('92864', '679', '1', 'Spring', 2010, 'A '); + insert into takes values('92040', '158', '2', 'Spring', 2008, 'C-'); + insert into takes values('51817', '545', '1', 'Fall', 2001, 'C+'); + insert into takes values('2848', '338', '1', 'Spring', 2007, 'B+'); + insert into takes values('6710', '527', '1', 'Fall', 2004, 'B-'); + insert into takes values('19824', '349', '1', 'Spring', 2008, 'C '); + insert into takes values('98870', '747', '1', 'Spring', 2004, 'C-'); + insert into takes values('25528', '571', '1', 'Spring', 2004, 'A-'); + insert into takes values('82083', '604', '1', 'Spring', 2009, 'C-'); + insert into takes values('94311', '338', '1', 'Spring', 2007, 'A+'); + insert into takes values('7973', '694', '1', 'Fall', 2002, 'A-'); + insert into takes values('14596', '791', '1', 'Spring', 2006, 'B '); + insert into takes values('81638', '237', '2', 'Fall', 2009, 'A+'); + insert into takes values('54672', '334', '1', 'Fall', 2009, 'A+'); + insert into takes values('81028', '991', '1', 'Spring', 2008, 'B-'); + insert into takes values('82868', '696', '1', 'Spring', 2002, 'B '); + insert into takes values('85366', '169', '2', 'Fall', 2002, 'A '); + insert into takes values('56139', '748', '1', 'Fall', 2003, 'C+'); + insert into takes values('50719', '626', '1', 'Fall', 2006, 'B+'); + insert into takes values('20803', '527', '1', 'Fall', 2004, 'C+'); + insert into takes values('94836', '158', '2', 'Spring', 2008, 'B+'); + insert into takes values('1285', '401', '1', 'Fall', 2003, 'B+'); + insert into takes values('50719', '679', '1', 'Spring', 2010, 'B+'); + insert into takes values('92040', '793', '1', 'Spring', 2002, 'C+'); + insert into takes values('21692', '696', '1', 'Spring', 2002, 'C+'); + insert into takes values('33817', '704', '1', 'Spring', 2008, 'A-'); + insert into takes values('1460', '704', '1', 'Spring', 2008, 'C-'); + insert into takes values('73394', '408', '1', 'Spring', 2007, 'A+'); + insert into takes values('88793', '843', '1', 'Fall', 2010, 'A-'); + insert into takes values('24865', '362', '1', 'Fall', 2005, 'A '); + insert into takes values('95027', '960', '2', 'Fall', 2006, 'C+'); + insert into takes values('11095', '304', '1', 'Fall', 2009, 'A+'); + insert into takes values('2967', '527', '1', 'Fall', 2004, 'C-'); + insert into takes values('35257', '527', '1', 'Fall', 2004, 'C-'); + insert into takes values('53172', '476', '1', 'Fall', 2010, 'C '); + insert into takes values('78434', '960', '1', 'Fall', 2009, 'C '); + insert into takes values('74016', '338', '2', 'Spring', 2006, 'B-'); + insert into takes values('42625', '169', '2', 'Fall', 2002, 'C-'); + insert into takes values('57962', '949', '1', 'Fall', 2007, 'A-'); + insert into takes values('27094', '319', '1', 'Spring', 2003, 'C '); + insert into takes values('67017', '694', '1', 'Fall', 2002, 'C-'); + insert into takes values('28518', '476', '1', 'Fall', 2010, 'A '); + insert into takes values('28738', '258', '1', 'Fall', 2007, 'A '); + insert into takes values('29920', '362', '2', 'Fall', 2006, 'B+'); + insert into takes values('86736', '949', '1', 'Fall', 2007, 'A+'); + insert into takes values('51997', '401', '1', 'Fall', 2003, 'C+'); + insert into takes values('93508', '591', '1', 'Spring', 2005, 'C-'); + insert into takes values('62549', '158', '1', 'Fall', 2008, 'B+'); + insert into takes values('87706', '345', '1', 'Spring', 2008, 'B+'); + insert into takes values('64731', '415', '1', 'Fall', 2010, 'A '); + insert into takes values('52876', '137', '1', 'Spring', 2002, 'C '); + insert into takes values('1080', '105', '2', 'Fall', 2002, 'C+'); + insert into takes values('25725', '960', '1', 'Fall', 2009, 'C '); + insert into takes values('31250', '793', '1', 'Spring', 2002, 'A '); + insert into takes values('18859', '169', '2', 'Fall', 2002, 'B-'); + insert into takes values('44703', '486', '1', 'Fall', 2009, 'A '); + insert into takes values('90663', '105', '1', 'Fall', 2009, 'B+'); + insert into takes values('18469', '704', '1', 'Spring', 2008, 'C+'); + insert into takes values('34329', '875', '1', 'Spring', 2005, 'A-'); + insert into takes values('15698', '270', '1', 'Spring', 2010, 'C+'); + insert into takes values('47379', '629', '1', 'Spring', 2003, 'A-'); + insert into takes values('79697', '559', '1', 'Fall', 2002, 'B-'); + insert into takes values('10904', '169', '1', 'Spring', 2007, 'A-'); + insert into takes values('75241', '642', '1', 'Fall', 2004, 'B '); + insert into takes values('8457', '893', '1', 'Fall', 2007, 'A '); + insert into takes values('89312', '237', '2', 'Fall', 2009, 'B+'); + insert into takes values('40897', '338', '1', 'Spring', 2007, 'A-'); + insert into takes values('888', '345', '1', 'Spring', 2008, 'A '); + insert into takes values('41491', '696', '1', 'Spring', 2002, 'C-'); + insert into takes values('53490', '960', '2', 'Fall', 2006, 'A+'); + insert into takes values('13081', '867', '1', 'Fall', 2006, 'A+'); + insert into takes values('23992', '200', '1', 'Spring', 2007, 'B+'); + insert into takes values('17600', '960', '1', 'Fall', 2009, 'B '); + insert into takes values('69122', '319', '1', 'Spring', 2003, 'C-'); + insert into takes values('14432', '663', '1', 'Spring', 2005, 'C+'); + insert into takes values('79352', '802', '1', 'Spring', 2003, 'A-'); + insert into takes values('16297', '702', '1', 'Spring', 2001, 'A '); + insert into takes values('39612', '496', '1', 'Fall', 2001, 'B+'); + insert into takes values('51768', '338', '1', 'Spring', 2007, 'A+'); + insert into takes values('56057', '408', '2', 'Spring', 2003, 'C-'); + insert into takes values('38973', '376', '1', 'Fall', 2006, 'A+'); + insert into takes values('9514', '760', '1', 'Spring', 2004, 'A-'); + insert into takes values('56598', '867', '2', 'Fall', 2010, 'A-'); + insert into takes values('76173', '629', '1', 'Spring', 2003, 'B-'); + insert into takes values('83314', '169', '2', 'Fall', 2002, 'B+'); + insert into takes values('37809', '612', '1', 'Fall', 2007, 'C '); + insert into takes values('96988', '612', '1', 'Fall', 2007, 'C '); + insert into takes values('23311', '400', '1', 'Spring', 2007, 'B-'); + insert into takes values('34195', '791', '1', 'Spring', 2006, 'C+'); + insert into takes values('12214', '496', '1', 'Fall', 2001, 'C '); + insert into takes values('75273', '476', '1', 'Fall', 2010, 'A+'); + insert into takes values('72643', '962', '1', 'Spring', 2008, 'C-'); + insert into takes values('19362', '443', '1', 'Spring', 2010, 'A '); + insert into takes values('17207', '468', '2', 'Fall', 2007, 'A '); + insert into takes values('93043', '559', '1', 'Fall', 2002, 'A+'); + insert into takes values('1727', '599', '1', 'Spring', 2003, 'C '); + insert into takes values('50267', '629', '1', 'Spring', 2003, 'B '); + insert into takes values('70359', '158', '2', 'Spring', 2008, 'B '); + insert into takes values('69850', '468', '2', 'Fall', 2007, 'C+'); + insert into takes values('50537', '274', '1', 'Fall', 2002, 'C-'); + insert into takes values('36126', '927', '1', 'Fall', 2002, 'C-'); + insert into takes values('21692', '949', '1', 'Fall', 2007, 'A-'); + insert into takes values('2139', '158', '1', 'Fall', 2008, 'A+'); + insert into takes values('95697', '468', '1', 'Fall', 2005, 'C+'); + insert into takes values('55170', '991', '1', 'Spring', 2008, 'B '); + insert into takes values('96193', '692', '1', 'Spring', 2010, 'C+'); + insert into takes values('90089', '791', '1', 'Spring', 2006, 'B+'); + insert into takes values('76173', '959', '1', 'Fall', 2006, 'B-'); + insert into takes values('31690', '376', '1', 'Fall', 2006, 'A-'); + insert into takes values('12214', '559', '1', 'Fall', 2002, 'C+'); + insert into takes values('48640', '366', '1', 'Fall', 2005, 'C-'); + insert into takes values('75231', '802', '1', 'Spring', 2003, 'A+'); + insert into takes values('71631', '457', '1', 'Spring', 2001, 'C '); + insert into takes values('36102', '949', '1', 'Fall', 2007, 'A+'); + insert into takes values('11083', '443', '1', 'Spring', 2010, 'B '); + insert into takes values('45680', '603', '1', 'Fall', 2003, 'A+'); + insert into takes values('50966', '313', '1', 'Fall', 2010, 'B '); + insert into takes values('8347', '408', '2', 'Spring', 2003, 'A '); + insert into takes values('16631', '482', '1', 'Fall', 2005, 'A+'); + insert into takes values('59673', '486', '1', 'Fall', 2009, 'C+'); + insert into takes values('46694', '808', '1', 'Fall', 2003, 'A '); + insert into takes values('78858', '974', '1', 'Fall', 2003, 'B-'); + insert into takes values('31079', '959', '1', 'Fall', 2006, 'C+'); + insert into takes values('52669', '105', '1', 'Fall', 2009, 'C '); + insert into takes values('85602', '242', '1', 'Fall', 2009, 'C+'); + insert into takes values('73072', '631', '1', 'Spring', 2007, 'B+'); + insert into takes values('7204', '795', '1', 'Spring', 2004, 'C '); + insert into takes values('34322', '237', '2', 'Fall', 2009, 'A+'); + insert into takes values('10814', '793', '1', 'Spring', 2002, 'B-'); + insert into takes values('46074', '338', '1', 'Spring', 2007, 'C-'); + insert into takes values('35138', '626', '1', 'Fall', 2006, 'A '); + insert into takes values('79469', '843', '1', 'Fall', 2010, 'C-'); + insert into takes values('52057', '843', '1', 'Fall', 2010, 'A+'); + insert into takes values('57213', '461', '1', 'Fall', 2002, 'C '); + insert into takes values('50537', '415', '1', 'Fall', 2010, 'C+'); + insert into takes values('6895', '270', '1', 'Spring', 2010, 'C-'); + insert into takes values('65329', '696', '1', 'Spring', 2002, 'C+'); + insert into takes values('89234', '338', '1', 'Spring', 2007, 'B '); + insert into takes values('21766', '631', '1', 'Spring', 2007, 'B+'); + insert into takes values('95225', '352', '1', 'Spring', 2006, 'C '); + insert into takes values('68096', '489', '1', 'Fall', 2007, 'B '); + insert into takes values('59172', '808', '1', 'Fall', 2003, 'A-'); + insert into takes values('24197', '663', '1', 'Spring', 2005, 'B-'); + insert into takes values('499', '319', '1', 'Spring', 2003, 'A '); + insert into takes values('23525', '960', '1', 'Fall', 2009, 'C+'); + insert into takes values('19791', '692', '1', 'Spring', 2010, 'B+'); + insert into takes values('95366', '962', '1', 'Spring', 2008, 'B+'); + insert into takes values('83691', '489', '1', 'Fall', 2007, 'C-'); + insert into takes values('34195', '571', '1', 'Spring', 2004, 'B '); + insert into takes values('49450', '137', '1', 'Spring', 2002, 'B '); + insert into takes values('6209', '867', '1', 'Fall', 2006, 'B '); + insert into takes values('96895', '571', '1', 'Spring', 2004, 'C+'); + insert into takes values('54508', '443', '1', 'Spring', 2010, 'B-'); + insert into takes values('2501', '137', '1', 'Spring', 2002, 'B-'); + insert into takes values('16849', '949', '1', 'Fall', 2007, 'C '); + insert into takes values('38973', '237', '2', 'Fall', 2009, 'C+'); + insert into takes values('52856', '527', '1', 'Fall', 2004, 'A+'); + insert into takes values('6474', '591', '1', 'Spring', 2005, 'B+'); + insert into takes values('56080', '352', '1', 'Spring', 2006, 'A-'); + insert into takes values('96203', '445', '1', 'Spring', 2001, 'A '); + insert into takes values('6895', '972', '1', 'Spring', 2009, 'B '); + insert into takes values('2201', '476', '1', 'Fall', 2010, 'B '); + insert into takes values('47630', '468', '1', 'Fall', 2005, 'C '); + insert into takes values('96324', '105', '2', 'Fall', 2002, 'C+'); + insert into takes values('42688', '493', '1', 'Spring', 2010, 'A-'); + insert into takes values('51862', '443', '2', 'Spring', 2002, 'B-'); + insert into takes values('94726', '972', '1', 'Spring', 2009, 'B-'); + insert into takes values('48901', '692', '1', 'Spring', 2010, 'C+'); + insert into takes values('39881', '864', '1', 'Spring', 2006, 'A-'); + insert into takes values('43658', '747', '1', 'Spring', 2004, 'C+'); + insert into takes values('73542', '927', '1', 'Fall', 2002, 'A '); + insert into takes values('64914', '270', '1', 'Spring', 2010, 'A+'); + insert into takes values('73602', '949', '1', 'Fall', 2007, 'B+'); + insert into takes values('37715', '239', '1', 'Fall', 2006, 'B '); + insert into takes values('72741', '237', '2', 'Fall', 2009, 'C-'); + insert into takes values('79352', '561', '1', 'Fall', 2006, 'A+'); + insert into takes values('50658', '349', '1', 'Spring', 2008, 'A '); + insert into takes values('91616', '760', '1', 'Spring', 2004, 'A+'); + insert into takes values('76798', '461', '1', 'Fall', 2002, 'B '); + insert into takes values('37869', '852', '1', 'Spring', 2008, 'C-'); + insert into takes values('77234', '843', '1', 'Fall', 2010, 'B+'); + insert into takes values('29707', '401', '1', 'Fall', 2003, 'B-'); + insert into takes values('61127', '581', '1', 'Spring', 2005, 'A '); + insert into takes values('16593', '334', '1', 'Fall', 2009, 'B '); + insert into takes values('19203', '443', '2', 'Spring', 2002, 'A '); + insert into takes values('85505', '319', '1', 'Spring', 2003, 'C-'); + insert into takes values('60688', '559', '1', 'Fall', 2002, 'B-'); + insert into takes values('43505', '991', '1', 'Spring', 2008, 'A+'); + insert into takes values('31476', '334', '1', 'Fall', 2009, 'A-'); + insert into takes values('85445', '960', '2', 'Fall', 2006, 'C-'); + insert into takes values('87246', '527', '1', 'Fall', 2004, 'A+'); + insert into takes values('77000', '735', '1', 'Spring', 2003, 'B+'); + insert into takes values('84702', '105', '1', 'Fall', 2009, 'B-'); + insert into takes values('18775', '270', '1', 'Spring', 2010, 'B+'); + insert into takes values('98359', '893', '1', 'Fall', 2007, 'C '); + insert into takes values('52750', '362', '3', 'Spring', 2008, 'A-'); + insert into takes values('56143', '319', '1', 'Spring', 2003, 'C+'); + insert into takes values('87439', '200', '1', 'Spring', 2007, 'B '); + insert into takes values('56003', '991', '1', 'Spring', 2008, 'B+'); + insert into takes values('82402', '158', '2', 'Spring', 2008, 'B+'); + insert into takes values('1460', '852', '1', 'Spring', 2008, 'B-'); + insert into takes values('4004', '527', '1', 'Fall', 2004, 'C-'); + insert into takes values('76173', '362', '2', 'Fall', 2006, 'C+'); + insert into takes values('3335', '489', '1', 'Fall', 2007, 'B-'); + insert into takes values('10204', '274', '1', 'Fall', 2002, 'B '); + insert into takes values('12362', '559', '1', 'Fall', 2002, 'B-'); + insert into takes values('56089', '679', '1', 'Spring', 2010, 'A-'); + insert into takes values('93491', '338', '1', 'Spring', 2007, 'B-'); + insert into takes values('39115', '169', '1', 'Spring', 2007, 'B '); + insert into takes values('36881', '313', '1', 'Fall', 2010, 'A '); + insert into takes values('98984', '692', '1', 'Spring', 2010, 'A+'); + insert into takes values('37715', '974', '1', 'Fall', 2003, 'C '); + insert into takes values('92464', '158', '1', 'Fall', 2008, 'B '); + insert into takes values('37521', '496', '1', 'Fall', 2001, 'C-'); + insert into takes values('11126', '461', '1', 'Fall', 2002, 'B '); + insert into takes values('87706', '313', '1', 'Fall', 2010, 'B+'); + insert into takes values('69225', '482', '1', 'Fall', 2005, 'C-'); + insert into takes values('6195', '461', '1', 'Fall', 2002, 'A '); + insert into takes values('25552', '338', '1', 'Spring', 2007, 'C-'); + insert into takes values('12971', '468', '1', 'Fall', 2005, 'C '); + insert into takes values('19220', '791', '1', 'Spring', 2006, 'C+'); + insert into takes values('28352', '735', '2', 'Spring', 2010, 'B '); + insert into takes values('83686', '489', '1', 'Fall', 2007, 'A+'); + insert into takes values('76173', '852', '1', 'Spring', 2008, 'B-'); + insert into takes values('51768', '158', '2', 'Spring', 2008, 'B+'); + insert into takes values('38602', '962', '1', 'Spring', 2008, 'A+'); + insert into takes values('86375', '408', '1', 'Spring', 2007, 'B-'); + insert into takes values('51084', '400', '2', 'Fall', 2003, 'A-'); + insert into takes values('89132', '949', '1', 'Fall', 2007, 'A+'); + insert into takes values('68263', '972', '1', 'Spring', 2009, 'A-'); + insert into takes values('36379', '338', '2', 'Spring', 2006, 'B-'); + insert into takes values('58594', '457', '1', 'Spring', 2001, 'C '); + insert into takes values('29091', '663', '1', 'Spring', 2005, 'A+'); + insert into takes values('81175', '496', '1', 'Fall', 2001, 'A-'); + insert into takes values('50365', '313', '1', 'Fall', 2010, 'B-'); + insert into takes values('35935', '629', '1', 'Spring', 2003, 'C-'); + insert into takes values('6712', '415', '1', 'Fall', 2010, 'A-'); + insert into takes values('52471', '702', '1', 'Spring', 2001, 'C+'); + insert into takes values('40932', '258', '1', 'Fall', 2007, 'A-'); + insert into takes values('77003', '400', '1', 'Spring', 2007, 'C+'); + insert into takes values('45570', '663', '1', 'Spring', 2005, 'B-'); + insert into takes values('22268', '200', '1', 'Spring', 2007, 'A+'); + insert into takes values('13217', '362', '1', 'Fall', 2005, 'B+'); + insert into takes values('15578', '991', '1', 'Spring', 2008, 'C-'); + insert into takes values('23224', '237', '1', 'Spring', 2008, 'B+'); + insert into takes values('11202', '400', '2', 'Fall', 2003, 'B '); + insert into takes values('4940', '239', '1', 'Fall', 2006, 'A-'); + insert into takes values('16133', '200', '2', 'Fall', 2002, 'B-'); + insert into takes values('1922', '629', '1', 'Spring', 2003, 'B-'); + insert into takes values('46956', '443', '1', 'Spring', 2010, 'A '); + insert into takes values('48611', '408', '1', 'Spring', 2007, 'C+'); + insert into takes values('73908', '949', '1', 'Fall', 2007, 'C-'); + insert into takes values('34322', '237', '1', 'Spring', 2008, 'C '); + insert into takes values('68263', '242', '1', 'Fall', 2009, 'A-'); + insert into takes values('6195', '408', '1', 'Spring', 2007, 'B+'); + insert into takes values('90181', '334', '1', 'Fall', 2009, 'B+'); + insert into takes values('42560', '631', '1', 'Spring', 2007, 'C '); + insert into takes values('83696', '692', '1', 'Spring', 2010, 'A-'); + insert into takes values('49339', '962', '1', 'Spring', 2008, 'C-'); + insert into takes values('91197', '735', '2', 'Spring', 2010, 'A-'); + insert into takes values('4383', '612', '1', 'Fall', 2007, 'B '); + insert into takes values('53047', '867', '2', 'Fall', 2010, 'A+'); + insert into takes values('83204', '200', '1', 'Spring', 2007, 'C '); + insert into takes values('49611', '401', '1', 'Fall', 2003, 'A '); + insert into takes values('11966', '545', '1', 'Fall', 2001, 'B+'); + insert into takes values('44206', '345', '1', 'Spring', 2008, 'A-'); + insert into takes values('22620', '426', '1', 'Spring', 2006, 'C-'); + insert into takes values('12078', '893', '1', 'Fall', 2007, 'A-'); + insert into takes values('34422', '629', '1', 'Spring', 2003, 'A '); + insert into takes values('88418', '692', '1', 'Spring', 2010, 'B '); + insert into takes values('22142', '603', '1', 'Fall', 2003, 'B '); + insert into takes values('30334', '735', '1', 'Spring', 2003, 'B '); + insert into takes values('74460', '704', '1', 'Spring', 2008, 'B-'); + insert into takes values('51416', '158', '2', 'Spring', 2008, 'C-'); + insert into takes values('61127', '735', '2', 'Spring', 2010, 'C '); + insert into takes values('98619', '893', '1', 'Fall', 2007, 'A-'); + insert into takes values('78922', '735', '2', 'Spring', 2010, 'B+'); + insert into takes values('33094', '864', '1', 'Spring', 2006, 'A+'); + insert into takes values('94324', '158', '2', 'Spring', 2008, 'C-'); + insert into takes values('78143', '603', '1', 'Fall', 2003, 'C-'); + insert into takes values('27366', '274', '1', 'Fall', 2002, 'C+'); + insert into takes values('61402', '795', '1', 'Spring', 2004, 'A '); + insert into takes values('31302', '401', '1', 'Fall', 2003, 'C+'); + insert into takes values('76270', '461', '1', 'Fall', 2002, 'B-'); + insert into takes values('66813', '258', '1', 'Fall', 2007, 'B-'); + insert into takes values('13757', '545', '1', 'Fall', 2001, 'A-'); + insert into takes values('57242', '875', '1', 'Spring', 2005, 'C-'); + insert into takes values('83622', '581', '1', 'Spring', 2005, 'C '); + insert into takes values('62784', '962', '1', 'Spring', 2008, 'A-'); + insert into takes values('65438', '158', '2', 'Spring', 2008, 'A+'); + insert into takes values('93708', '443', '2', 'Spring', 2002, 'A+'); + insert into takes values('41261', '604', '1', 'Spring', 2009, 'B '); + insert into takes values('85366', '603', '1', 'Fall', 2003, 'A-'); + insert into takes values('52134', '461', '1', 'Fall', 2002, 'A-'); + insert into takes values('62705', '704', '1', 'Spring', 2008, 'B+'); + insert into takes values('53424', '561', '1', 'Fall', 2006, 'C '); + insert into takes values('44584', '242', '1', 'Fall', 2009, 'B-'); + insert into takes values('7390', '795', '1', 'Spring', 2004, 'B+'); + insert into takes values('75123', '793', '1', 'Spring', 2002, 'A '); + insert into takes values('59397', '158', '1', 'Fall', 2008, 'C '); + insert into takes values('12236', '338', '1', 'Spring', 2007, 'B '); + insert into takes values('35175', '867', '2', 'Fall', 2010, 'C-'); + insert into takes values('32345', '457', '1', 'Spring', 2001, 'A '); + insert into takes values('14874', '679', '1', 'Spring', 2010, 'C '); + insert into takes values('50702', '959', '1', 'Fall', 2006, 'C+'); + insert into takes values('29002', '237', '2', 'Fall', 2009, 'A+'); + insert into takes values('40992', '376', '1', 'Fall', 2006, 'C '); + insert into takes values('47126', '527', '1', 'Fall', 2004, 'A+'); + insert into takes values('34197', '852', '1', 'Spring', 2008, 'B+'); + insert into takes values('57334', '571', '1', 'Spring', 2004, 'A+'); + insert into takes values('82126', '631', '1', 'Spring', 2007, 'B+'); + insert into takes values('48640', '376', '1', 'Fall', 2006, 'B+'); + insert into takes values('62152', '545', '1', 'Fall', 2001, 'B '); + insert into takes values('16133', '875', '1', 'Spring', 2005, 'C+'); + insert into takes values('46450', '400', '1', 'Spring', 2007, 'B-'); + insert into takes values('47025', '445', '1', 'Spring', 2001, 'B-'); + insert into takes values('30188', '696', '1', 'Spring', 2002, 'B+'); + insert into takes values('84727', '802', '1', 'Spring', 2003, 'B+'); + insert into takes values('61232', '445', '1', 'Spring', 2001, 'A '); + insert into takes values('99780', '581', '1', 'Spring', 2005, 'A-'); + insert into takes values('22004', '893', '1', 'Fall', 2007, 'A+'); + insert into takes values('1826', '366', '1', 'Fall', 2005, 'B-'); + insert into takes values('57055', '735', '1', 'Spring', 2003, 'B '); + insert into takes values('95284', '493', '1', 'Spring', 2010, 'C-'); + insert into takes values('66090', '192', '1', 'Fall', 2002, 'C+'); + insert into takes values('73328', '239', '1', 'Fall', 2006, 'B-'); + insert into takes values('38676', '258', '1', 'Fall', 2007, 'B-'); + insert into takes values('35588', '415', '1', 'Fall', 2010, 'B-'); + insert into takes values('36926', '401', '1', 'Fall', 2003, 'C+'); + insert into takes values('5208', '362', '1', 'Fall', 2005, 'B+'); + insert into takes values('33882', '893', '1', 'Fall', 2007, 'A+'); + insert into takes values('25380', '852', '1', 'Spring', 2008, 'A '); + insert into takes values('75928', '349', '1', 'Spring', 2008, 'B '); + insert into takes values('63489', '604', '1', 'Spring', 2009, 'B+'); + insert into takes values('12362', '400', '1', 'Spring', 2007, 'B '); + insert into takes values('31993', '692', '1', 'Spring', 2010, 'B+'); + insert into takes values('40481', '366', '1', 'Fall', 2005, 'B-'); + insert into takes values('91343', '158', '1', 'Fall', 2008, 'B+'); + insert into takes values('11422', '702', '1', 'Spring', 2001, 'A+'); + insert into takes values('97573', '366', '1', 'Fall', 2005, 'B+'); + insert into takes values('67425', '735', '1', 'Spring', 2003, 'A '); + insert into takes values('99271', '443', '1', 'Spring', 2010, 'C-'); + insert into takes values('38691', '457', '1', 'Spring', 2001, 'B+'); + insert into takes values('83136', '795', '1', 'Spring', 2004, 'A-'); + insert into takes values('35721', '591', '1', 'Spring', 2005, 'A '); + insert into takes values('89051', '760', '1', 'Spring', 2004, 'A+'); + insert into takes values('41211', '200', '2', 'Fall', 2002, 'C-'); + insert into takes values('38121', '468', '1', 'Fall', 2005, 'C+'); + insert into takes values('34236', '843', '1', 'Fall', 2010, 'A '); + insert into takes values('30164', '169', '1', 'Spring', 2007, 'C-'); + insert into takes values('76911', '158', '2', 'Spring', 2008, 'A-'); + insert into takes values('30858', '599', '1', 'Spring', 2003, 'B-'); + insert into takes values('97551', '561', '1', 'Fall', 2006, 'A-'); + insert into takes values('5843', '400', '2', 'Fall', 2003, 'A-'); + insert into takes values('57787', '663', '1', 'Spring', 2005, 'A-'); + insert into takes values('75547', '493', '1', 'Spring', 2010, 'C-'); + insert into takes values('40937', '747', '1', 'Spring', 2004, 'A '); + insert into takes values('7204', '338', '1', 'Spring', 2007, 'C+'); + insert into takes values('19342', '735', '1', 'Spring', 2003, 'B '); + insert into takes values('50583', '604', '1', 'Spring', 2009, 'A-'); + insert into takes values('98830', '747', '1', 'Spring', 2004, 'A+'); + insert into takes values('13921', '793', '1', 'Spring', 2002, 'B-'); + insert into takes values('45436', '468', '1', 'Fall', 2005, 'C '); + insert into takes values('56143', '304', '1', 'Fall', 2009, 'C-'); + insert into takes values('23392', '795', '1', 'Spring', 2004, 'C-'); + insert into takes values('25942', '349', '1', 'Spring', 2008, 'A '); + insert into takes values('81638', '352', '1', 'Spring', 2006, 'B-'); + insert into takes values('22050', '875', '1', 'Spring', 2005, 'C '); + insert into takes values('45720', '959', '1', 'Fall', 2006, 'B+'); + insert into takes values('12563', '362', '3', 'Spring', 2008, 'B-'); + insert into takes values('70965', '137', '1', 'Spring', 2002, 'B-'); + insert into takes values('25611', '158', '1', 'Fall', 2008, 'C+'); + insert into takes values('40080', '974', '1', 'Fall', 2003, 'B+'); + insert into takes values('56058', '679', '1', 'Spring', 2010, 'A-'); + insert into takes values('83204', '867', '1', 'Fall', 2006, 'C '); + insert into takes values('13217', '626', '1', 'Fall', 2006, 'B '); + insert into takes values('75395', '237', '2', 'Fall', 2009, 'A-'); + insert into takes values('28952', '679', '1', 'Spring', 2010, 'C-'); + insert into takes values('42688', '972', '1', 'Spring', 2009, 'C-'); + insert into takes values('6195', '545', '1', 'Fall', 2001, 'A '); + insert into takes values('69230', '679', '1', 'Spring', 2010, 'C+'); + insert into takes values('67583', '702', '1', 'Spring', 2001, 'A '); + insert into takes values('80227', '352', '1', 'Spring', 2006, 'C-'); + insert into takes values('16405', '334', '1', 'Fall', 2009, 'B '); + insert into takes values('96246', '468', '1', 'Fall', 2005, 'B-'); + insert into takes values('17076', '696', '1', 'Spring', 2002, 'A+'); + insert into takes values('99268', '421', '1', 'Fall', 2004, 'A '); + insert into takes values('11237', '991', '1', 'Spring', 2008, 'B+'); + insert into takes values('22179', '702', '1', 'Spring', 2001, 'A+'); + insert into takes values('18740', '415', '1', 'Fall', 2010, 'A+'); + insert into takes values('78858', '629', '1', 'Spring', 2003, 'C-'); + insert into takes values('58307', '169', '1', 'Spring', 2007, 'C-'); + insert into takes values('27236', '760', '1', 'Spring', 2004, 'C+'); + insert into takes values('14639', '313', '1', 'Fall', 2010, 'A+'); + insert into takes values('6195', '559', '1', 'Fall', 2002, 'C+'); + insert into takes values('90234', '137', '1', 'Spring', 2002, 'C-'); + insert into takes values('36384', '338', '1', 'Spring', 2007, 'C '); + insert into takes values('46980', '274', '1', 'Fall', 2002, 'C '); + insert into takes values('80285', '158', '2', 'Spring', 2008, 'A-'); + insert into takes values('86552', '760', '1', 'Spring', 2004, 'A+'); + insert into takes values('40116', '169', '2', 'Fall', 2002, 'A+'); + insert into takes values('15030', '663', '1', 'Spring', 2005, 'C '); + insert into takes values('81258', '960', '1', 'Fall', 2009, 'B '); + insert into takes values('97041', '200', '1', 'Spring', 2007, 'B-'); + insert into takes values('98019', '137', '1', 'Spring', 2002, 'B-'); + insert into takes values('31337', '408', '2', 'Spring', 2003, 'B+'); + insert into takes values('92839', '974', '1', 'Fall', 2003, 'B-'); + insert into takes values('25143', '237', '1', 'Spring', 2008, 'B+'); + insert into takes values('78892', '349', '1', 'Spring', 2008, 'C '); + insert into takes values('31302', '581', '1', 'Spring', 2005, 'B-'); + insert into takes values('47630', '527', '1', 'Fall', 2004, 'B+'); + insert into takes values('26619', '631', '1', 'Spring', 2007, 'C '); + insert into takes values('99760', '959', '1', 'Fall', 2006, 'B+'); + insert into takes values('21692', '867', '2', 'Fall', 2010, 'C-'); + insert into takes values('9659', '949', '1', 'Fall', 2007, 'C+'); + insert into takes values('73072', '960', '1', 'Fall', 2009, 'A '); + insert into takes values('89551', '599', '1', 'Spring', 2003, 'B-'); + insert into takes values('29239', '362', '2', 'Fall', 2006, 'C '); + insert into takes values('29514', '489', '1', 'Fall', 2007, 'C '); + insert into takes values('35198', '949', '1', 'Fall', 2007, 'B '); + insert into takes values('80742', '468', '2', 'Fall', 2007, 'B+'); + insert into takes values('92849', '476', '1', 'Fall', 2010, 'B+'); + insert into takes values('645', '791', '1', 'Spring', 2006, 'C+'); + insert into takes values('4383', '852', '1', 'Spring', 2008, 'B+'); + insert into takes values('50039', '735', '1', 'Spring', 2003, 'A-'); + insert into takes values('97400', '867', '1', 'Fall', 2006, 'B-'); + insert into takes values('80254', '629', '1', 'Spring', 2003, 'A-'); + insert into takes values('61414', '852', '1', 'Spring', 2008, 'C+'); + insert into takes values('49611', '408', '1', 'Spring', 2007, 'B+'); + insert into takes values('81896', '760', '1', 'Spring', 2004, 'A '); + insert into takes values('85904', '338', '2', 'Spring', 2006, 'A '); + insert into takes values('54508', '200', '1', 'Spring', 2007, 'B-'); + insert into takes values('31101', '527', '1', 'Fall', 2004, 'B+'); + insert into takes values('37219', '735', '1', 'Spring', 2003, 'A '); + insert into takes values('17997', '352', '1', 'Spring', 2006, 'C '); + insert into takes values('39619', '843', '1', 'Fall', 2010, 'B+'); + insert into takes values('94766', '974', '1', 'Fall', 2003, 'C-'); + insert into takes values('29140', '545', '1', 'Fall', 2001, 'C '); + insert into takes values('52945', '808', '1', 'Fall', 2003, 'B '); + insert into takes values('51723', '959', '1', 'Fall', 2006, 'B+'); + insert into takes values('8426', '581', '1', 'Spring', 2005, 'C '); + insert into takes values('84167', '747', '1', 'Spring', 2004, 'B-'); + insert into takes values('28829', '702', '1', 'Spring', 2001, 'A+'); + insert into takes values('21337', '802', '1', 'Spring', 2003, 'A-'); + insert into takes values('28409', '313', '1', 'Fall', 2010, 'A+'); + insert into takes values('34195', '852', '1', 'Spring', 2008, 'B+'); + insert into takes values('39157', '489', '1', 'Fall', 2007, 'B-'); + insert into takes values('81538', '486', '1', 'Fall', 2009, 'A+'); + insert into takes values('11377', '401', '1', 'Fall', 2003, 'B-'); + insert into takes values('65258', '991', '1', 'Spring', 2008, 'A '); + insert into takes values('96988', '864', '1', 'Spring', 2006, 'A '); + insert into takes values('50331', '867', '1', 'Fall', 2006, 'C+'); + insert into takes values('44706', '991', '1', 'Spring', 2008, 'C-'); + insert into takes values('55857', '571', '1', 'Spring', 2004, 'A-'); + insert into takes values('93061', '791', '1', 'Spring', 2006, 'C-'); + insert into takes values('39612', '169', '2', 'Fall', 2002, 'A+'); + insert into takes values('92385', '875', '1', 'Spring', 2005, 'A+'); + insert into takes values('23344', '591', '1', 'Spring', 2005, 'B '); + insert into takes values('28994', '626', '1', 'Fall', 2006, 'A-'); + insert into takes values('42092', '443', '2', 'Spring', 2002, 'A '); + insert into takes values('32490', '105', '1', 'Fall', 2009, 'A '); + insert into takes values('15613', '443', '2', 'Spring', 2002, 'B-'); + insert into takes values('31476', '258', '1', 'Fall', 2007, 'A-'); + insert into takes values('95027', '642', '1', 'Fall', 2004, 'B '); + insert into takes values('21692', '791', '1', 'Spring', 2006, 'A '); + insert into takes values('78892', '962', '1', 'Spring', 2008, 'B '); + insert into takes values('35588', '105', '1', 'Fall', 2009, 'A '); + insert into takes values('23110', '270', '1', 'Spring', 2010, 'B '); + insert into takes values('11604', '991', '1', 'Spring', 2008, 'C+'); + insert into takes values('39978', '105', '1', 'Fall', 2009, 'C+'); + insert into takes values('22417', '362', '3', 'Spring', 2008, 'B '); + insert into takes values('60762', '468', '1', 'Fall', 2005, 'C-'); + insert into takes values('83838', '496', '1', 'Fall', 2001, 'A '); + insert into takes values('37715', '313', '1', 'Fall', 2010, 'A-'); + insert into takes values('29435', '927', '1', 'Fall', 2002, 'C '); + insert into takes values('96052', '795', '1', 'Spring', 2004, 'A+'); + insert into takes values('51678', '702', '1', 'Spring', 2001, 'A '); + insert into takes values('22004', '158', '1', 'Fall', 2008, 'C '); + insert into takes values('52291', '482', '1', 'Fall', 2005, 'B+'); + insert into takes values('3639', '137', '1', 'Spring', 2002, 'B+'); + insert into takes values('93814', '468', '1', 'Fall', 2005, 'B '); + insert into takes values('42991', '461', '1', 'Fall', 2002, 'A-'); + insert into takes values('34569', '237', '1', 'Spring', 2008, 'B-'); + insert into takes values('29871', '461', '1', 'Fall', 2002, 'C '); + insert into takes values('74509', '663', '1', 'Spring', 2005, 'B-'); + insert into takes values('37350', '401', '1', 'Fall', 2003, 'B-'); + insert into takes values('37856', '843', '1', 'Fall', 2010, 'B+'); + insert into takes values('12666', '974', '1', 'Fall', 2003, 'A '); + insert into takes values('79772', '313', '1', 'Fall', 2010, 'C-'); + insert into takes values('57925', '200', '1', 'Spring', 2007, 'B+'); + insert into takes values('37101', '795', '1', 'Spring', 2004, 'B '); + insert into takes values('56139', '349', '1', 'Spring', 2008, 'B-'); + insert into takes values('35687', '612', '1', 'Fall', 2007, 'C-'); + insert into takes values('50013', '352', '1', 'Spring', 2006, 'A+'); + insert into takes values('65676', '694', '1', 'Fall', 2002, 'A+'); + insert into takes values('85614', '400', '2', 'Fall', 2003, 'C '); + insert into takes values('1826', '468', '2', 'Fall', 2007, 'C '); + insert into takes values('91616', '795', '1', 'Spring', 2004, 'C '); + insert into takes values('66259', '415', '1', 'Fall', 2010, 'A '); + insert into takes values('76799', '867', '2', 'Fall', 2010, 'C+'); + insert into takes values('3639', '927', '1', 'Fall', 2002, 'C-'); + insert into takes values('68278', '468', '1', 'Fall', 2005, 'A+'); + insert into takes values('16885', '274', '1', 'Fall', 2002, 'C '); + insert into takes values('90004', '496', '1', 'Fall', 2001, 'B-'); + insert into takes values('15487', '313', '1', 'Fall', 2010, 'B-'); + insert into takes values('80285', '137', '1', 'Spring', 2002, 'C+'); + insert into takes values('69960', '642', '1', 'Fall', 2004, 'A '); + insert into takes values('57156', '443', '1', 'Spring', 2010, 'A '); + insert into takes values('41674', '747', '1', 'Spring', 2004, 'B+'); + insert into takes values('23439', '626', '1', 'Fall', 2006, 'B+'); + insert into takes values('9183', '704', '1', 'Spring', 2008, 'B '); + insert into takes values('48901', '875', '1', 'Spring', 2005, 'B '); + insert into takes values('58085', '791', '1', 'Spring', 2006, 'C '); + insert into takes values('19917', '704', '1', 'Spring', 2008, 'B-'); + insert into takes values('11530', '960', '1', 'Fall', 2009, 'B-'); + insert into takes values('63645', '362', '2', 'Fall', 2006, 'A+'); + insert into takes values('63502', '237', '1', 'Spring', 2008, 'C-'); + insert into takes values('5925', '604', '1', 'Spring', 2009, 'A '); + insert into takes values('67560', '793', '1', 'Spring', 2002, 'C-'); + insert into takes values('88302', '663', '1', 'Spring', 2005, 'B+'); + insert into takes values('58594', '105', '1', 'Fall', 2009, 'A+'); + insert into takes values('72501', '415', '1', 'Fall', 2010, 'A-'); + insert into takes values('39892', '559', '1', 'Fall', 2002, 'A '); + insert into takes values('39520', '468', '1', 'Fall', 2005, 'C-'); + insert into takes values('75273', '791', '1', 'Spring', 2006, 'A '); + insert into takes values('93171', '349', '1', 'Spring', 2008, 'B+'); + insert into takes values('35175', '631', '1', 'Spring', 2007, 'C-'); + insert into takes values('99268', '319', '1', 'Spring', 2003, 'B '); + insert into takes values('97101', '496', '1', 'Fall', 2001, 'C+'); + insert into takes values('55170', '704', '1', 'Spring', 2008, 'C+'); + insert into takes values('90914', '679', '1', 'Spring', 2010, 'B+'); + insert into takes values('21086', '408', '2', 'Spring', 2003, 'B+'); + insert into takes values('25785', '408', '1', 'Spring', 2007, 'B+'); + insert into takes values('52876', '748', '1', 'Fall', 2003, 'B '); + insert into takes values('11441', '239', '1', 'Fall', 2006, 'A '); + insert into takes values('16885', '169', '2', 'Fall', 2002, 'B-'); + insert into takes values('25725', '571', '1', 'Spring', 2004, 'C '); + insert into takes values('12971', '663', '1', 'Spring', 2005, 'A+'); + insert into takes values('12563', '105', '1', 'Fall', 2009, 'A '); + insert into takes values('19848', '401', '1', 'Fall', 2003, 'C '); + insert into takes values('37809', '949', '1', 'Fall', 2007, 'B-'); + insert into takes values('31250', '349', '1', 'Spring', 2008, 'A-'); + insert into takes values('71944', '692', '1', 'Spring', 2010, 'A+'); + insert into takes values('59673', '642', '1', 'Fall', 2004, 'C '); + insert into takes values('54620', '802', '1', 'Spring', 2003, 'B+'); + insert into takes values('11419', '599', '1', 'Spring', 2003, 'B+'); + insert into takes values('16993', '867', '2', 'Fall', 2010, 'C+'); + insert into takes values('86753', '319', '1', 'Spring', 2003, 'B '); + insert into takes values('81175', '893', '1', 'Fall', 2007, 'C '); + insert into takes values('82918', '408', '1', 'Spring', 2007, 'A '); + insert into takes values('58595', '959', '1', 'Fall', 2006, 'C '); + insert into takes values('99780', '561', '1', 'Fall', 2006, 'B '); + insert into takes values('58413', '304', '1', 'Fall', 2009, 'B-'); + insert into takes values('65438', '445', '1', 'Spring', 2001, 'B-'); + insert into takes values('23500', '696', '1', 'Spring', 2002, 'B+'); + insert into takes values('26802', '319', '1', 'Spring', 2003, 'B+'); + insert into takes values('22912', '760', '1', 'Spring', 2004, 'A-'); + insert into takes values('61403', '200', '2', 'Fall', 2002, 'B+'); + insert into takes values('85809', '489', '1', 'Fall', 2007, 'A-'); + insert into takes values('82580', '603', '1', 'Fall', 2003, 'C-'); + insert into takes values('97355', '735', '2', 'Spring', 2010, 'A-'); + insert into takes values('1087', '496', '1', 'Fall', 2001, 'A-'); + insert into takes values('24784', '561', '1', 'Fall', 2006, 'B-'); + insert into takes values('1737', '304', '1', 'Fall', 2009, 'B '); + insert into takes values('76798', '960', '1', 'Fall', 2009, 'B-'); + insert into takes values('58170', '704', '1', 'Spring', 2008, 'A+'); + insert into takes values('78637', '808', '1', 'Fall', 2003, 'A+'); + insert into takes values('77244', '169', '1', 'Spring', 2007, 'C-'); + insert into takes values('67051', '561', '1', 'Fall', 2006, 'B '); + insert into takes values('76911', '258', '1', 'Fall', 2007, 'C-'); + insert into takes values('23525', '747', '1', 'Spring', 2004, 'C-'); + insert into takes values('25380', '105', '1', 'Fall', 2009, 'B+'); + insert into takes values('66484', '991', '1', 'Spring', 2008, 'A-'); + insert into takes values('83398', '349', '1', 'Spring', 2008, 'B-'); + insert into takes values('55915', '468', '1', 'Fall', 2005, 'B '); + insert into takes values('13365', '345', '1', 'Spring', 2008, 'C '); + insert into takes values('15578', '445', '1', 'Spring', 2001, 'A+'); + insert into takes values('71878', '962', '1', 'Spring', 2008, 'C '); + insert into takes values('931', '793', '1', 'Spring', 2002, 'B-'); + insert into takes values('55698', '802', '1', 'Spring', 2003, 'C+'); + insert into takes values('62429', '960', '2', 'Fall', 2006, 'C '); + insert into takes values('91992', '704', '1', 'Spring', 2008, 'B-'); + insert into takes values('57787', '319', '1', 'Spring', 2003, 'A+'); + insert into takes values('7956', '352', '1', 'Spring', 2006, 'A+'); + insert into takes values('76672', '702', '1', 'Spring', 2001, 'C-'); + insert into takes values('52385', '338', '2', 'Spring', 2006, 'A+'); + insert into takes values('45770', '852', '1', 'Spring', 2008, 'B '); + insert into takes values('85754', '867', '2', 'Fall', 2010, 'C+'); + insert into takes values('66054', '991', '1', 'Spring', 2008, 'B+'); + insert into takes values('33401', '927', '1', 'Fall', 2002, 'B+'); + insert into takes values('99611', '349', '1', 'Spring', 2008, 'B '); + insert into takes values('59673', '192', '1', 'Fall', 2002, 'C '); + insert into takes values('14484', '304', '1', 'Fall', 2009, 'B+'); + insert into takes values('11126', '642', '1', 'Fall', 2004, 'B+'); + insert into takes values('85063', '415', '1', 'Fall', 2010, 'C-'); + insert into takes values('62784', '960', '2', 'Fall', 2006, 'A '); + insert into takes values('46106', '400', '1', 'Spring', 2007, 'B '); + insert into takes values('65208', '642', '1', 'Fall', 2004, 'C '); + insert into takes values('51868', '795', '1', 'Spring', 2004, 'C '); + insert into takes values('19048', '679', '1', 'Spring', 2010, 'C-'); + insert into takes values('73602', '476', '1', 'Fall', 2010, 'A-'); + insert into takes values('70098', '702', '1', 'Spring', 2001, 'C '); + insert into takes values('52291', '893', '1', 'Fall', 2007, 'C '); + insert into takes values('48423', '791', '1', 'Spring', 2006, 'C+'); + insert into takes values('15538', '559', '1', 'Fall', 2002, 'B+'); + insert into takes values('9408', '591', '1', 'Spring', 2005, 'A-'); + insert into takes values('49982', '137', '1', 'Spring', 2002, 'A+'); + insert into takes values('42688', '486', '1', 'Fall', 2009, 'B-'); + insert into takes values('98870', '808', '1', 'Fall', 2003, 'B-'); + insert into takes values('81984', '527', '1', 'Fall', 2004, 'B+'); + insert into takes values('898', '760', '1', 'Spring', 2004, 'B '); + insert into takes values('80976', '527', '1', 'Fall', 2004, 'C-'); + insert into takes values('27687', '793', '1', 'Spring', 2002, 'A '); + insert into takes values('48850', '352', '1', 'Spring', 2006, 'A+'); + insert into takes values('83003', '692', '1', 'Spring', 2010, 'A '); + insert into takes values('33837', '334', '1', 'Fall', 2009, 'B-'); + insert into takes values('83696', '200', '1', 'Spring', 2007, 'A '); + insert into takes values('62728', '421', '1', 'Fall', 2004, 'C+'); + insert into takes values('90194', '362', '3', 'Spring', 2008, 'B-'); + insert into takes values('11101', '319', '1', 'Spring', 2003, 'B-'); + insert into takes values('58634', '864', '1', 'Spring', 2006, 'B '); + insert into takes values('27236', '362', '3', 'Spring', 2008, 'B-'); + insert into takes values('61354', '808', '1', 'Fall', 2003, 'C-'); + insert into takes values('70924', '974', '1', 'Fall', 2003, 'B '); + insert into takes values('3335', '663', '1', 'Spring', 2005, 'A+'); + insert into takes values('40738', '400', '2', 'Fall', 2003, 'C+'); + insert into takes values('75534', '604', '1', 'Spring', 2009, 'C+'); + insert into takes values('6712', '867', '1', 'Fall', 2006, 'C '); + insert into takes values('40189', '642', '1', 'Fall', 2004, 'C-'); + insert into takes values('89734', '362', '1', 'Fall', 2005, 'A+'); + insert into takes values('41741', '200', '1', 'Spring', 2007, 'A+'); + insert into takes values('68395', '893', '1', 'Fall', 2007, 'C-'); + insert into takes values('76246', '875', '1', 'Spring', 2005, 'C+'); + insert into takes values('82066', '927', '1', 'Fall', 2002, 'B+'); + insert into takes values('88993', '747', '1', 'Spring', 2004, 'A+'); + insert into takes values('5208', '893', '1', 'Fall', 2007, 'A '); + insert into takes values('64642', '468', '1', 'Fall', 2005, 'C-'); + insert into takes values('1220', '559', '1', 'Fall', 2002, 'C '); + insert into takes values('90089', '748', '1', 'Fall', 2003, 'C '); + insert into takes values('72768', '362', '3', 'Spring', 2008, 'A-'); + insert into takes values('16969', '972', '1', 'Spring', 2009, 'B '); + insert into takes values('77231', '493', '1', 'Spring', 2010, 'B-'); + insert into takes values('93653', '875', '1', 'Spring', 2005, 'B '); + insert into takes values('19766', '169', '1', 'Spring', 2007, 'B '); + insert into takes values('74911', '237', '1', 'Spring', 2008, 'A-'); + insert into takes values('26730', '408', '1', 'Spring', 2007, 'B '); + insert into takes values('29707', '345', '1', 'Spring', 2008, 'A+'); + insert into takes values('56598', '875', '1', 'Spring', 2005, 'C '); + insert into takes values('88417', '795', '1', 'Spring', 2004, 'C '); + insert into takes values('93491', '362', '2', 'Fall', 2006, 'A-'); + insert into takes values('15086', '401', '1', 'Fall', 2003, 'A '); + insert into takes values('58307', '808', '1', 'Fall', 2003, 'B-'); + insert into takes values('68554', '852', '1', 'Spring', 2008, 'C '); + insert into takes values('41827', '631', '1', 'Spring', 2007, 'C-'); + insert into takes values('57107', '415', '1', 'Fall', 2010, 'A '); + insert into takes values('39241', '747', '1', 'Spring', 2004, 'B-'); + insert into takes values('17057', '496', '1', 'Fall', 2001, 'A '); + insert into takes values('29031', '443', '1', 'Spring', 2010, 'C-'); + insert into takes values('11455', '974', '1', 'Fall', 2003, 'A '); + insert into takes values('18675', '893', '1', 'Fall', 2007, 'B-'); + insert into takes values('23224', '239', '1', 'Fall', 2006, 'C+'); + insert into takes values('34195', '875', '1', 'Spring', 2005, 'A-'); + insert into takes values('58469', '401', '1', 'Fall', 2003, 'B '); + insert into takes values('41894', '319', '1', 'Spring', 2003, 'A+'); + insert into takes values('86573', '867', '1', 'Fall', 2006, 'C-'); + insert into takes values('35198', '400', '1', 'Spring', 2007, 'A-'); + insert into takes values('6673', '200', '2', 'Fall', 2002, 'A '); + insert into takes values('95626', '603', '1', 'Fall', 2003, 'B '); + insert into takes values('85746', '626', '1', 'Fall', 2006, 'A-'); + insert into takes values('85366', '679', '1', 'Spring', 2010, 'A '); + insert into takes values('37581', '443', '1', 'Spring', 2010, 'C '); + insert into takes values('19321', '443', '1', 'Spring', 2010, 'B+'); + insert into takes values('15883', '603', '1', 'Fall', 2003, 'B+'); + insert into takes values('61402', '808', '1', 'Fall', 2003, 'C+'); + insert into takes values('7854', '105', '1', 'Fall', 2009, 'C '); + insert into takes values('15980', '864', '1', 'Spring', 2006, 'A-'); + insert into takes values('20180', '237', '2', 'Fall', 2009, 'A '); + insert into takes values('72669', '362', '3', 'Spring', 2008, 'A+'); + insert into takes values('97355', '366', '1', 'Fall', 2005, 'A '); + insert into takes values('89000', '802', '1', 'Spring', 2003, 'C+'); + insert into takes values('61065', '631', '1', 'Spring', 2007, 'C+'); + insert into takes values('66293', '105', '1', 'Fall', 2009, 'A+'); + insert into takes values('67793', '400', '2', 'Fall', 2003, 'C+'); + insert into takes values('75596', '400', '1', 'Spring', 2007, 'A '); + insert into takes values('39552', '559', '1', 'Fall', 2002, 'A-'); + insert into takes values('66279', '527', '1', 'Fall', 2004, 'C-'); + insert into takes values('96246', '527', '1', 'Fall', 2004, 'B '); + insert into takes values('36995', '864', '1', 'Spring', 2006, 'B '); + insert into takes values('41818', '631', '1', 'Spring', 2007, 'B '); + insert into takes values('38271', '105', '2', 'Fall', 2002, 'A '); + insert into takes values('11855', '274', '1', 'Fall', 2002, 'B+'); + insert into takes values('63502', '704', '1', 'Spring', 2008, 'B+'); + insert into takes values('21246', '974', '1', 'Fall', 2003, 'C-'); + insert into takes values('6209', '482', '1', 'Fall', 2005, 'B+'); + insert into takes values('92849', '408', '1', 'Spring', 2007, 'C-'); + insert into takes values('39580', '200', '2', 'Fall', 2002, 'C+'); + insert into takes values('51093', '319', '1', 'Spring', 2003, 'A '); + insert into takes values('11453', '476', '1', 'Fall', 2010, 'A+'); + insert into takes values('38712', '527', '1', 'Fall', 2004, 'C-'); + insert into takes values('91370', '408', '1', 'Spring', 2007, 'C+'); + insert into takes values('10481', '239', '1', 'Fall', 2006, 'C '); + insert into takes values('76224', '362', '2', 'Fall', 2006, 'B-'); + insert into takes values('21394', '626', '1', 'Fall', 2006, 'A '); + insert into takes values('68096', '962', '1', 'Spring', 2008, 'C+'); + insert into takes values('87651', '468', '2', 'Fall', 2007, 'C-'); + insert into takes values('28994', '694', '1', 'Fall', 2002, 'A-'); + insert into takes values('46980', '338', '1', 'Spring', 2007, 'B '); + insert into takes values('46956', '960', '2', 'Fall', 2006, 'B+'); + insert into takes values('84792', '893', '1', 'Fall', 2007, 'C+'); + insert into takes values('13081', '362', '1', 'Fall', 2005, 'A '); + insert into takes values('77898', '158', '1', 'Fall', 2008, 'B-'); + insert into takes values('18941', '338', '1', 'Spring', 2007, 'B '); + insert into takes values('91569', '692', '1', 'Spring', 2010, 'A-'); + insert into takes values('99348', '274', '1', 'Fall', 2002, 'A-'); + insert into takes values('47824', '496', '1', 'Fall', 2001, 'A+'); + insert into takes values('27002', '239', '1', 'Fall', 2006, 'B '); + insert into takes values('931', '692', '1', 'Spring', 2010, 'C '); + insert into takes values('50944', '612', '1', 'Fall', 2007, 'C '); + insert into takes values('29462', '137', '1', 'Spring', 2002, 'B-'); + insert into takes values('63361', '158', '2', 'Spring', 2008, 'C '); + insert into takes values('16347', '319', '1', 'Spring', 2003, 'A-'); + insert into takes values('94142', '415', '1', 'Fall', 2010, 'C-'); + insert into takes values('98019', '169', '1', 'Spring', 2007, 'A '); + insert into takes values('30943', '270', '1', 'Spring', 2010, 'A-'); + insert into takes values('79763', '345', '1', 'Spring', 2008, 'B '); + insert into takes values('31302', '476', '1', 'Fall', 2010, 'A-'); + insert into takes values('75772', '486', '1', 'Fall', 2009, 'A-'); + insert into takes values('66229', '426', '1', 'Spring', 2006, 'C '); + insert into takes values('19735', '493', '1', 'Spring', 2010, 'C+'); + insert into takes values('85234', '852', '1', 'Spring', 2008, 'B '); + insert into takes values('25785', '338', '1', 'Spring', 2007, 'A+'); + insert into takes values('24784', '559', '1', 'Fall', 2002, 'B-'); + insert into takes values('96710', '591', '1', 'Spring', 2005, 'B-'); + insert into takes values('99711', '694', '1', 'Fall', 2002, 'C-'); + insert into takes values('44038', '696', '1', 'Spring', 2002, 'B-'); + insert into takes values('78581', '642', '1', 'Fall', 2004, 'C '); + insert into takes values('53152', '631', '1', 'Spring', 2007, 'B-'); + insert into takes values('19203', '489', '1', 'Fall', 2007, 'C '); + insert into takes values('74163', '704', '1', 'Spring', 2008, 'A-'); + insert into takes values('74639', '599', '1', 'Spring', 2003, 'A-'); + insert into takes values('83557', '867', '1', 'Fall', 2006, 'A '); + insert into takes values('792', '169', '1', 'Spring', 2007, 'C '); + insert into takes values('92693', '748', '1', 'Fall', 2003, 'A+'); + insert into takes values('66259', '629', '1', 'Spring', 2003, 'A '); + insert into takes values('50719', '496', '1', 'Fall', 2001, 'C '); + insert into takes values('41751', '237', '1', 'Spring', 2008, 'C '); + insert into takes values('52656', '421', '1', 'Fall', 2004, 'C-'); + insert into takes values('33349', '239', '1', 'Fall', 2006, 'C '); + insert into takes values('10838', '237', '2', 'Fall', 2009, 'C '); + insert into takes values('99694', '927', '1', 'Fall', 2002, 'C-'); + insert into takes values('81258', '352', '1', 'Spring', 2006, 'C+'); + insert into takes values('85746', '443', '1', 'Spring', 2010, 'A+'); + insert into takes values('42114', '991', '1', 'Spring', 2008, 'A '); + insert into takes values('35257', '864', '1', 'Spring', 2006, 'B-'); + insert into takes values('27140', '631', '1', 'Spring', 2007, 'A+'); + insert into takes values('34195', '599', '1', 'Spring', 2003, 'A '); + insert into takes values('98056', '991', '1', 'Spring', 2008, 'A-'); + insert into takes values('88302', '408', '1', 'Spring', 2007, 'C '); + insert into takes values('18809', '496', '1', 'Fall', 2001, 'B '); + insert into takes values('96206', '735', '1', 'Spring', 2003, 'C+'); + insert into takes values('50386', '319', '1', 'Spring', 2003, 'C-'); + insert into takes values('85226', '334', '1', 'Fall', 2009, 'A '); + insert into takes values('84865', '735', '2', 'Spring', 2010, 'B '); + insert into takes values('41818', '927', '1', 'Fall', 2002, 'B-'); + insert into takes values('2848', '974', '1', 'Fall', 2003, 'B+'); + insert into takes values('55000', '962', '1', 'Spring', 2008, 'B '); + insert into takes values('85451', '642', '1', 'Fall', 2004, 'C-'); + insert into takes values('60224', '338', '1', 'Spring', 2007, 'C+'); + insert into takes values('82126', '852', '1', 'Spring', 2008, 'A+'); + insert into takes values('35523', '599', '1', 'Spring', 2003, 'C+'); + insert into takes values('79469', '591', '1', 'Spring', 2005, 'A+'); + insert into takes values('74509', '489', '1', 'Fall', 2007, 'A '); + insert into takes values('3005', '362', '3', 'Spring', 2008, 'B-'); + insert into takes values('73394', '415', '1', 'Fall', 2010, 'A+'); + insert into takes values('40682', '362', '2', 'Fall', 2006, 'B-'); + insert into takes values('38691', '581', '1', 'Spring', 2005, 'B-'); + insert into takes values('60748', '696', '1', 'Spring', 2002, 'B+'); + insert into takes values('62795', '237', '1', 'Spring', 2008, 'A+'); + insert into takes values('76173', '603', '1', 'Fall', 2003, 'B+'); + insert into takes values('90089', '258', '1', 'Fall', 2007, 'A+'); + insert into takes values('69730', '852', '1', 'Spring', 2008, 'A-'); + insert into takes values('53225', '959', '1', 'Fall', 2006, 'A+'); + insert into takes values('31820', '169', '2', 'Fall', 2002, 'A+'); + insert into takes values('8819', '445', '1', 'Spring', 2001, 'B '); + insert into takes values('93354', '304', '1', 'Fall', 2009, 'B-'); + insert into takes values('52669', '376', '1', 'Fall', 2006, 'A '); + insert into takes values('5961', '581', '1', 'Spring', 2005, 'C-'); + insert into takes values('97679', '702', '1', 'Spring', 2001, 'B+'); + insert into takes values('16311', '338', '1', 'Spring', 2007, 'B '); + insert into takes values('93571', '704', '1', 'Spring', 2008, 'B-'); + insert into takes values('77021', '304', '1', 'Fall', 2009, 'A-'); + insert into takes values('12214', '426', '1', 'Spring', 2006, 'A-'); + insert into takes values('18234', '258', '1', 'Fall', 2007, 'B-'); + insert into takes values('10736', '493', '1', 'Spring', 2010, 'C-'); + insert into takes values('88577', '237', '2', 'Fall', 2009, 'B '); + insert into takes values('48660', '559', '1', 'Fall', 2002, 'A+'); + insert into takes values('92867', '362', '2', 'Fall', 2006, 'B '); + insert into takes values('68248', '476', '1', 'Fall', 2010, 'C '); + insert into takes values('81294', '747', '1', 'Spring', 2004, 'A-'); + insert into takes values('71389', '239', '1', 'Fall', 2006, 'C+'); + insert into takes values('67810', '852', '1', 'Spring', 2008, 'A '); + insert into takes values('27662', '304', '1', 'Fall', 2009, 'B+'); + insert into takes values('63560', '482', '1', 'Fall', 2005, 'A+'); + insert into takes values('72485', '258', '1', 'Fall', 2007, 'A '); + insert into takes values('66054', '401', '1', 'Fall', 2003, 'B-'); + insert into takes values('91978', '603', '1', 'Fall', 2003, 'B '); + insert into takes values('67425', '696', '1', 'Spring', 2002, 'B-'); + insert into takes values('78143', '599', '1', 'Spring', 2003, 'B-'); + insert into takes values('20985', '864', '1', 'Spring', 2006, 'B-'); + insert into takes values('99760', '362', '1', 'Fall', 2005, 'A '); + insert into takes values('10033', '338', '1', 'Spring', 2007, 'A '); + insert into takes values('96741', '237', '1', 'Spring', 2008, 'B+'); + insert into takes values('61403', '808', '1', 'Fall', 2003, 'B-'); + insert into takes values('69952', '426', '1', 'Spring', 2006, 'C-'); + insert into takes values('39927', '808', '1', 'Fall', 2003, 'C-'); + insert into takes values('85356', '443', '2', 'Spring', 2002, 'C-'); + insert into takes values('63040', '748', '1', 'Fall', 2003, 'A-'); + insert into takes values('41965', '527', '1', 'Fall', 2004, 'B '); + insert into takes values('68396', '408', '1', 'Spring', 2007, 'B-'); + insert into takes values('41938', '401', '1', 'Fall', 2003, 'C '); + insert into takes values('20378', '468', '1', 'Fall', 2005, 'A+'); + insert into takes values('61402', '352', '1', 'Spring', 2006, 'A '); + insert into takes values('99780', '867', '1', 'Fall', 2006, 'B-'); + insert into takes values('44551', '802', '1', 'Spring', 2003, 'B '); + insert into takes values('95046', '169', '2', 'Fall', 2002, 'A '); + insert into takes values('12326', '445', '1', 'Spring', 2001, 'C+'); + insert into takes values('24387', '443', '1', 'Spring', 2010, 'C-'); + insert into takes values('3335', '401', '1', 'Fall', 2003, 'B+'); + insert into takes values('27956', '274', '1', 'Fall', 2002, 'C '); + insert into takes values('72485', '468', '2', 'Fall', 2007, 'A '); + insert into takes values('32744', '239', '1', 'Fall', 2006, 'C '); + insert into takes values('67340', '802', '1', 'Spring', 2003, 'C+'); + insert into takes values('18859', '242', '1', 'Fall', 2009, 'B-'); + insert into takes values('63582', '443', '1', 'Spring', 2010, 'A+'); + insert into takes values('60748', '960', '1', 'Fall', 2009, 'A '); + insert into takes values('16993', '366', '1', 'Fall', 2005, 'C-'); + insert into takes values('82301', '242', '1', 'Fall', 2009, 'B '); + insert into takes values('78758', '629', '1', 'Spring', 2003, 'C '); + insert into takes values('70572', '468', '1', 'Fall', 2005, 'A-'); + insert into takes values('544', '334', '1', 'Fall', 2009, 'A-'); + insert into takes values('13403', '400', '1', 'Spring', 2007, 'B '); + insert into takes values('83002', '692', '1', 'Spring', 2010, 'C-'); + insert into takes values('28361', '192', '1', 'Fall', 2002, 'B-'); + insert into takes values('27687', '692', '1', 'Spring', 2010, 'B+'); + insert into takes values('5393', '927', '1', 'Fall', 2002, 'A+'); + insert into takes values('34329', '352', '1', 'Spring', 2006, 'C-'); + insert into takes values('52750', '457', '1', 'Spring', 2001, 'B-'); + insert into takes values('3143', '408', '2', 'Spring', 2003, 'B+'); + insert into takes values('94766', '571', '1', 'Spring', 2004, 'C-'); + insert into takes values('63090', '581', '1', 'Spring', 2005, 'A+'); + insert into takes values('6712', '304', '1', 'Fall', 2009, 'B '); + insert into takes values('39881', '626', '1', 'Fall', 2006, 'B+'); + insert into takes values('96067', '972', '1', 'Spring', 2009, 'C '); + insert into takes values('76798', '612', '1', 'Fall', 2007, 'C+'); + insert into takes values('86001', '991', '1', 'Spring', 2008, 'A-'); + insert into takes values('61356', '663', '1', 'Spring', 2005, 'C '); + insert into takes values('2201', '408', '1', 'Spring', 2007, 'C-'); + insert into takes values('94173', '408', '1', 'Spring', 2007, 'B-'); + insert into takes values('21766', '237', '2', 'Fall', 2009, 'B-'); + insert into takes values('18752', '867', '2', 'Fall', 2010, 'A-'); + insert into takes values('67514', '237', '1', 'Spring', 2008, 'C-'); + insert into takes values('68070', '795', '1', 'Spring', 2004, 'A '); + insert into takes values('83480', '496', '1', 'Fall', 2001, 'B-'); + insert into takes values('69581', '962', '1', 'Spring', 2008, 'C '); + insert into takes values('15070', '748', '1', 'Fall', 2003, 'B-'); + insert into takes values('47487', '237', '2', 'Fall', 2009, 'C '); + insert into takes values('23439', '421', '1', 'Fall', 2004, 'B '); + insert into takes values('6673', '760', '1', 'Spring', 2004, 'C+'); + insert into takes values('87706', '401', '1', 'Fall', 2003, 'B '); + insert into takes values('35685', '496', '1', 'Fall', 2001, 'B-'); + insert into takes values('17207', '642', '1', 'Fall', 2004, 'C '); + insert into takes values('72055', '426', '1', 'Spring', 2006, 'A '); + insert into takes values('86833', '169', '2', 'Fall', 2002, 'C '); + insert into takes values('35685', '338', '2', 'Spring', 2006, 'B-'); + insert into takes values('2561', '735', '1', 'Spring', 2003, 'A '); + insert into takes values('43912', '960', '2', 'Fall', 2006, 'A-'); + insert into takes values('99226', '795', '1', 'Spring', 2004, 'C '); + insert into takes values('22258', '603', '1', 'Fall', 2003, 'B+'); + insert into takes values('42560', '362', '3', 'Spring', 2008, 'A '); + insert into takes values('88577', '482', '1', 'Fall', 2005, 'B-'); + insert into takes values('31250', '158', '2', 'Spring', 2008, 'B-'); + insert into takes values('79534', '702', '1', 'Spring', 2001, 'C '); + insert into takes values('54875', '972', '1', 'Spring', 2009, 'B-'); + insert into takes values('52876', '200', '1', 'Spring', 2007, 'C '); + insert into takes values('64164', '334', '1', 'Fall', 2009, 'B+'); + insert into takes values('31486', '626', '1', 'Fall', 2006, 'C+'); + insert into takes values('38371', '482', '1', 'Fall', 2005, 'C-'); + insert into takes values('77548', '704', '1', 'Spring', 2008, 'B '); + insert into takes values('60867', '270', '1', 'Spring', 2010, 'A '); + insert into takes values('4860', '105', '2', 'Fall', 2002, 'A+'); + insert into takes values('66269', '735', '1', 'Spring', 2003, 'C+'); + insert into takes values('52707', '237', '2', 'Fall', 2009, 'B-'); + insert into takes values('72177', '137', '1', 'Spring', 2002, 'B+'); + insert into takes values('59673', '791', '1', 'Spring', 2006, 'A-'); + insert into takes values('95099', '795', '1', 'Spring', 2004, 'C-'); + insert into takes values('38691', '349', '1', 'Spring', 2008, 'A-'); + insert into takes values('1727', '960', '1', 'Fall', 2009, 'A+'); + insert into takes values('48660', '334', '1', 'Fall', 2009, 'B-'); + insert into takes values('61527', '105', '2', 'Fall', 2002, 'A+'); + insert into takes values('30164', '793', '1', 'Spring', 2002, 'C '); + insert into takes values('11422', '169', '2', 'Fall', 2002, 'C+'); + insert into takes values('39238', '345', '1', 'Spring', 2008, 'C '); + insert into takes values('49450', '702', '1', 'Spring', 2001, 'A '); + insert into takes values('25525', '457', '1', 'Spring', 2001, 'C-'); + insert into takes values('52291', '631', '1', 'Spring', 2007, 'A+'); + insert into takes values('90448', '349', '1', 'Spring', 2008, 'A-'); + insert into takes values('26802', '137', '1', 'Spring', 2002, 'A '); + insert into takes values('96003', '345', '1', 'Spring', 2008, 'A-'); + insert into takes values('20814', '468', '1', 'Fall', 2005, 'B+'); + insert into takes values('858', '629', '1', 'Spring', 2003, 'C+'); + insert into takes values('858', '875', '1', 'Spring', 2005, 'A+'); + insert into takes values('79446', '443', '1', 'Spring', 2010, 'B '); + insert into takes values('62373', '408', '1', 'Spring', 2007, 'A-'); + insert into takes values('66813', '105', '1', 'Fall', 2009, 'A+'); + insert into takes values('48589', '599', '1', 'Spring', 2003, 'C '); + insert into takes values('75123', '962', '1', 'Spring', 2008, 'A+'); + insert into takes values('40059', '791', '1', 'Spring', 2006, 'B '); + insert into takes values('15980', '158', '1', 'Fall', 2008, 'A+'); + insert into takes values('8347', '867', '1', 'Fall', 2006, 'A '); + insert into takes values('64013', '875', '1', 'Spring', 2005, 'C-'); + insert into takes values('72521', '748', '1', 'Fall', 2003, 'A+'); + insert into takes values('80990', '679', '1', 'Spring', 2010, 'B-'); + insert into takes values('88302', '852', '1', 'Spring', 2008, 'A+'); + insert into takes values('31086', '313', '1', 'Fall', 2010, 'A+'); + insert into takes values('68096', '242', '1', 'Fall', 2009, 'C+'); + insert into takes values('9183', '867', '1', 'Fall', 2006, 'C '); + insert into takes values('75116', '338', '2', 'Spring', 2006, 'B-'); + insert into takes values('78434', '696', '1', 'Spring', 2002, 'C-'); + insert into takes values('78892', '760', '1', 'Spring', 2004, 'C+'); + insert into takes values('52876', '735', '2', 'Spring', 2010, 'C+'); + insert into takes values('77244', '867', '2', 'Fall', 2010, 'A-'); + insert into takes values('25718', '237', '1', 'Spring', 2008, 'B-'); + insert into takes values('84792', '663', '1', 'Spring', 2005, 'A+'); + insert into takes values('69241', '192', '1', 'Fall', 2002, 'C '); + insert into takes values('27366', '527', '1', 'Fall', 2004, 'A-'); + insert into takes values('29863', '972', '1', 'Spring', 2009, 'B+'); + insert into takes values('35198', '867', '1', 'Fall', 2006, 'C-'); + insert into takes values('9947', '239', '1', 'Fall', 2006, 'B-'); + insert into takes values('8517', '927', '1', 'Fall', 2002, 'C+'); + insert into takes values('41091', '105', '1', 'Fall', 2009, 'C-'); + insert into takes values('24387', '200', '2', 'Fall', 2002, 'C+'); + insert into takes values('14065', '748', '1', 'Fall', 2003, 'C '); + insert into takes values('32217', '493', '1', 'Spring', 2010, 'B '); + insert into takes values('37856', '400', '2', 'Fall', 2003, 'C+'); + insert into takes values('30650', '791', '1', 'Spring', 2006, 'A-'); + insert into takes values('93125', '663', '1', 'Spring', 2005, 'A '); + insert into takes values('63886', '629', '1', 'Spring', 2003, 'C-'); + insert into takes values('99289', '258', '1', 'Fall', 2007, 'A '); + insert into takes values('34404', '791', '1', 'Spring', 2006, 'C-'); + insert into takes values('52523', '461', '1', 'Fall', 2002, 'B-'); + insert into takes values('48471', '105', '1', 'Fall', 2009, 'A '); + insert into takes values('4015', '735', '1', 'Spring', 2003, 'B '); + insert into takes values('69521', '105', '2', 'Fall', 2002, 'C-'); + insert into takes values('37339', '748', '1', 'Fall', 2003, 'B+'); + insert into takes values('86934', '581', '1', 'Spring', 2005, 'A '); + insert into takes values('53225', '443', '2', 'Spring', 2002, 'C-'); + insert into takes values('8192', '960', '1', 'Fall', 2009, 'A-'); + insert into takes values('14628', '604', '1', 'Spring', 2009, 'B+'); + insert into takes values('27002', '319', '1', 'Spring', 2003, 'A '); + insert into takes values('81876', '642', '1', 'Fall', 2004, 'C-'); + insert into takes values('1110', '692', '1', 'Spring', 2010, 'A+'); + insert into takes values('74464', '991', '1', 'Spring', 2008, 'C+'); + insert into takes values('45720', '274', '1', 'Fall', 2002, 'A-'); + insert into takes values('70235', '239', '1', 'Fall', 2006, 'B+'); + insert into takes values('32369', '599', '1', 'Spring', 2003, 'C+'); + insert into takes values('13757', '864', '1', 'Spring', 2006, 'C '); + insert into takes values('74509', '408', '2', 'Spring', 2003, 'A-'); + insert into takes values('41973', '476', '1', 'Fall', 2010, 'A-'); + insert into takes values('37759', '352', '1', 'Spring', 2006, 'C '); + insert into takes values('21102', '362', '2', 'Fall', 2006, 'C '); + insert into takes values('89297', '105', '1', 'Fall', 2009, 'A-'); + insert into takes values('2967', '603', '1', 'Fall', 2003, 'C '); + insert into takes values('13403', '748', '1', 'Fall', 2003, 'A+'); + insert into takes values('67051', '496', '1', 'Fall', 2001, 'B '); + insert into takes values('11237', '867', '1', 'Fall', 2006, 'B-'); + insert into takes values('12214', '304', '1', 'Fall', 2009, 'C+'); + insert into takes values('37521', '362', '3', 'Spring', 2008, 'A+'); + insert into takes values('87439', '408', '1', 'Spring', 2007, 'C '); + insert into takes values('78756', '137', '1', 'Spring', 2002, 'A '); + insert into takes values('91063', '545', '1', 'Fall', 2001, 'B+'); + insert into takes values('53185', '893', '1', 'Fall', 2007, 'A-'); + insert into takes values('24746', '274', '1', 'Fall', 2002, 'B '); + insert into takes values('41774', '334', '1', 'Fall', 2009, 'A-'); + insert into takes values('25143', '319', '1', 'Spring', 2003, 'A+'); + insert into takes values('23373', '496', '1', 'Fall', 2001, 'A '); + insert into takes values('42960', '274', '1', 'Fall', 2002, 'C-'); + insert into takes values('23373', '158', '1', 'Fall', 2008, 'C+'); + insert into takes values('76768', '482', '1', 'Fall', 2005, 'B+'); + insert into takes values('5208', '338', '2', 'Spring', 2006, 'B-'); + insert into takes values('34788', '200', '1', 'Spring', 2007, 'B '); + insert into takes values('79205', '482', '1', 'Fall', 2005, 'C '); + insert into takes values('69960', '415', '1', 'Fall', 2010, 'B+'); + insert into takes values('56598', '631', '1', 'Spring', 2007, 'C '); + insert into takes values('67725', '692', '1', 'Spring', 2010, 'A+'); + insert into takes values('62716', '105', '1', 'Fall', 2009, 'C '); + insert into takes values('77548', '426', '1', 'Spring', 2006, 'B+'); + insert into takes values('18234', '408', '1', 'Spring', 2007, 'C+'); + insert into takes values('24197', '445', '1', 'Spring', 2001, 'C+'); + insert into takes values('42843', '561', '1', 'Fall', 2006, 'C '); + insert into takes values('827', '334', '1', 'Fall', 2009, 'A+'); + insert into takes values('62429', '200', '1', 'Spring', 2007, 'A '); + insert into takes values('51549', '696', '1', 'Spring', 2002, 'B+'); + insert into takes values('12173', '486', '1', 'Fall', 2009, 'B '); + insert into takes values('14829', '415', '1', 'Fall', 2010, 'A '); + insert into takes values('24201', '949', '1', 'Fall', 2007, 'A '); + insert into takes values('41599', '927', '1', 'Fall', 2002, 'A '); + insert into takes values('87222', '791', '1', 'Spring', 2006, 'B+'); + insert into takes values('81538', '702', '1', 'Spring', 2001, 'B+'); + insert into takes values('14023', '864', '1', 'Spring', 2006, 'C-'); + insert into takes values('53424', '400', '2', 'Fall', 2003, 'A-'); + insert into takes values('80113', '169', '1', 'Spring', 2007, 'B+'); + insert into takes values('26102', '694', '1', 'Fall', 2002, 'B+'); + insert into takes values('3640', '760', '1', 'Spring', 2004, 'C+'); + insert into takes values('59530', '629', '1', 'Spring', 2003, 'A+'); + insert into takes values('46106', '274', '1', 'Fall', 2002, 'C+'); + insert into takes values('12615', '349', '1', 'Spring', 2008, 'B-'); + insert into takes values('68779', '408', '2', 'Spring', 2003, 'A-'); + insert into takes values('57511', '476', '1', 'Fall', 2010, 'B-'); + insert into takes values('11422', '362', '1', 'Fall', 2005, 'A-'); + insert into takes values('6209', '663', '1', 'Spring', 2005, 'A '); + insert into takes values('11055', '200', '1', 'Spring', 2007, 'C-'); + insert into takes values('20540', '362', '2', 'Fall', 2006, 'A-'); + insert into takes values('87246', '468', '1', 'Fall', 2005, 'B '); + insert into takes values('65121', '319', '1', 'Spring', 2003, 'B '); + insert into takes values('67146', '493', '1', 'Spring', 2010, 'A+'); + insert into takes values('71631', '362', '3', 'Spring', 2008, 'C '); + insert into takes values('35462', '808', '1', 'Fall', 2003, 'A '); + insert into takes values('87193', '169', '2', 'Fall', 2002, 'A+'); + insert into takes values('42991', '304', '1', 'Fall', 2009, 'B-'); + insert into takes values('40897', '962', '1', 'Spring', 2008, 'C '); + insert into takes values('83170', '400', '1', 'Spring', 2007, 'A-'); + insert into takes values('33460', '692', '1', 'Spring', 2010, 'B '); + insert into takes values('41832', '476', '1', 'Fall', 2010, 'C '); + insert into takes values('22198', '581', '1', 'Spring', 2005, 'B+'); + insert into takes values('4940', '338', '1', 'Spring', 2007, 'B '); + insert into takes values('11419', '960', '2', 'Fall', 2006, 'C+'); + insert into takes values('73807', '489', '1', 'Fall', 2007, 'C-'); + insert into takes values('88140', '445', '1', 'Spring', 2001, 'B-'); + insert into takes values('34197', '338', '1', 'Spring', 2007, 'B-'); + insert into takes values('7043', '169', '1', 'Spring', 2007, 'A+'); + insert into takes values('46155', '604', '1', 'Spring', 2009, 'C+'); + insert into takes values('92274', '893', '1', 'Fall', 2007, 'A-'); + insert into takes values('41491', '735', '2', 'Spring', 2010, 'A+'); + insert into takes values('81031', '338', '2', 'Spring', 2006, 'A-'); + insert into takes values('69628', '105', '1', 'Fall', 2009, 'B '); + insert into takes values('69122', '192', '1', 'Fall', 2002, 'C-'); + insert into takes values('6287', '105', '1', 'Fall', 2009, 'C '); + insert into takes values('22004', '338', '2', 'Spring', 2006, 'A '); + insert into takes values('25940', '313', '1', 'Fall', 2010, 'A '); + insert into takes values('18809', '747', '1', 'Spring', 2004, 'C '); + insert into takes values('19293', '949', '1', 'Fall', 2007, 'A+'); + insert into takes values('58701', '702', '1', 'Spring', 2001, 'A-'); + insert into takes values('86707', '349', '1', 'Spring', 2008, 'C '); + insert into takes values('75513', '760', '1', 'Spring', 2004, 'B+'); + insert into takes values('77130', '482', '1', 'Fall', 2005, 'C-'); + insert into takes values('12214', '893', '1', 'Fall', 2007, 'B+'); + insert into takes values('63390', '867', '1', 'Fall', 2006, 'C-'); + insert into takes values('6287', '274', '1', 'Fall', 2002, 'A+'); + insert into takes values('28829', '972', '1', 'Spring', 2009, 'B-'); + insert into takes values('67293', '864', '1', 'Spring', 2006, 'B+'); + insert into takes values('92417', '258', '1', 'Fall', 2007, 'A-'); + insert into takes values('76672', '852', '1', 'Spring', 2008, 'C '); + insert into takes values('90353', '313', '1', 'Fall', 2010, 'B+'); + insert into takes values('41299', '561', '1', 'Fall', 2006, 'C+'); + insert into takes values('91569', '476', '1', 'Fall', 2010, 'C '); + insert into takes values('32119', '642', '1', 'Fall', 2004, 'B+'); + insert into takes values('94766', '158', '1', 'Fall', 2008, 'A+'); + insert into takes values('59290', '443', '2', 'Spring', 2002, 'C-'); + insert into takes values('39204', '692', '1', 'Spring', 2010, 'C '); + insert into takes values('85746', '468', '1', 'Fall', 2005, 'B '); + insert into takes values('77588', '349', '1', 'Spring', 2008, 'A '); + insert into takes values('99268', '760', '1', 'Spring', 2004, 'A-'); + insert into takes values('79170', '626', '1', 'Fall', 2006, 'B '); + insert into takes values('39254', '603', '1', 'Fall', 2003, 'B '); + insert into takes values('64155', '338', '1', 'Spring', 2007, 'B '); + insert into takes values('90381', '962', '1', 'Spring', 2008, 'C '); + insert into takes values('17996', '692', '1', 'Spring', 2010, 'A+'); + insert into takes values('40932', '571', '1', 'Spring', 2004, 'C '); + insert into takes values('76759', '169', '1', 'Spring', 2007, 'B-'); + insert into takes values('52750', '366', '1', 'Fall', 2005, 'C+'); + insert into takes values('82591', '362', '3', 'Spring', 2008, 'B+'); + insert into takes values('72521', '476', '1', 'Fall', 2010, 'A-'); + insert into takes values('5824', '242', '1', 'Fall', 2009, 'B+'); + insert into takes values('40371', '864', '1', 'Spring', 2006, 'A+'); + insert into takes values('92693', '793', '1', 'Spring', 2002, 'C+'); + insert into takes values('91978', '581', '1', 'Spring', 2005, 'C+'); + insert into takes values('15283', '345', '1', 'Spring', 2008, 'A '); + insert into takes values('65299', '692', '1', 'Spring', 2010, 'A+'); + insert into takes values('62784', '274', '1', 'Fall', 2002, 'C+'); + insert into takes values('82697', '137', '1', 'Spring', 2002, 'C '); + insert into takes values('70688', '338', '2', 'Spring', 2006, 'B-'); + insert into takes values('27662', '696', '1', 'Spring', 2002, 'B '); + insert into takes values('24116', '105', '1', 'Fall', 2009, 'C '); + insert into takes values('70061', '105', '2', 'Fall', 2002, 'C-'); + insert into takes values('16405', '237', '2', 'Fall', 2009, 'C '); + insert into takes values('29959', '496', '1', 'Fall', 2001, 'C-'); + insert into takes values('49450', '270', '1', 'Spring', 2010, 'C-'); + insert into takes values('57156', '581', '1', 'Spring', 2005, 'B '); + insert into takes values('70688', '158', '1', 'Fall', 2008, 'A+'); + insert into takes values('13365', '960', '1', 'Fall', 2009, 'B+'); + insert into takes values('91091', '793', '1', 'Spring', 2002, 'A '); + insert into takes values('52523', '242', '1', 'Fall', 2009, 'B+'); + insert into takes values('71904', '704', '1', 'Spring', 2008, 'C+'); + insert into takes values('89571', '352', '1', 'Spring', 2006, 'B '); + insert into takes values('93354', '200', '2', 'Fall', 2002, 'A+'); + insert into takes values('52741', '571', '1', 'Spring', 2004, 'A '); + insert into takes values('38712', '445', '1', 'Spring', 2001, 'A+'); + insert into takes values('35293', '237', '2', 'Fall', 2009, 'B '); + insert into takes values('42096', '192', '1', 'Fall', 2002, 'B '); + insert into takes values('26102', '400', '2', 'Fall', 2003, 'B '); + insert into takes values('9460', '867', '1', 'Fall', 2006, 'B-'); + insert into takes values('18740', '867', '1', 'Fall', 2006, 'B+'); + insert into takes values('77021', '735', '1', 'Spring', 2003, 'C+'); + insert into takes values('7970', '274', '1', 'Fall', 2002, 'B+'); + insert into takes values('66494', '591', '1', 'Spring', 2005, 'B '); + insert into takes values('39157', '313', '1', 'Fall', 2010, 'A-'); + insert into takes values('75878', '604', '1', 'Spring', 2009, 'C-'); + insert into takes values('13211', '694', '1', 'Fall', 2002, 'C '); + insert into takes values('93043', '867', '1', 'Fall', 2006, 'B-'); + insert into takes values('90132', '893', '1', 'Fall', 2007, 'A '); + insert into takes values('17057', '468', '2', 'Fall', 2007, 'C+'); + insert into takes values('99730', '237', '1', 'Spring', 2008, 'C '); + insert into takes values('56499', '408', '2', 'Spring', 2003, 'B '); + insert into takes values('11195', '239', '1', 'Fall', 2006, 'C+'); + insert into takes values('80651', '239', '1', 'Fall', 2006, 'B '); + insert into takes values('22620', '461', '1', 'Fall', 2002, 'A-'); + insert into takes values('3693', '258', '1', 'Fall', 2007, 'A+'); + insert into takes values('30188', '867', '2', 'Fall', 2010, 'B-'); + insert into takes values('64550', '612', '1', 'Fall', 2007, 'C '); + insert into takes values('31080', '400', '1', 'Spring', 2007, 'A+'); + insert into takes values('32490', '237', '2', 'Fall', 2009, 'A-'); + insert into takes values('10917', '704', '1', 'Spring', 2008, 'C-'); + insert into takes values('40738', '415', '1', 'Fall', 2010, 'A '); + insert into takes values('94522', '486', '1', 'Fall', 2009, 'C-'); + insert into takes values('25525', '242', '1', 'Fall', 2009, 'A+'); + insert into takes values('47379', '270', '1', 'Spring', 2010, 'A-'); + insert into takes values('28738', '274', '1', 'Fall', 2002, 'C-'); + insert into takes values('86736', '105', '1', 'Fall', 2009, 'C '); + insert into takes values('52866', '545', '1', 'Fall', 2001, 'C+'); + insert into takes values('987', '875', '1', 'Spring', 2005, 'B '); + insert into takes values('15086', '468', '1', 'Fall', 2005, 'A '); + insert into takes values('71426', '991', '1', 'Spring', 2008, 'A-'); + insert into takes values('46450', '949', '1', 'Fall', 2007, 'B '); + insert into takes values('95850', '338', '1', 'Spring', 2007, 'A-'); + insert into takes values('898', '169', '1', 'Spring', 2007, 'C+'); + insert into takes values('1812', '400', '1', 'Spring', 2007, 'B-'); + insert into takes values('15328', '959', '1', 'Fall', 2006, 'C+'); + insert into takes values('2178', '345', '1', 'Spring', 2008, 'A+'); + insert into takes values('54296', '972', '1', 'Spring', 2009, 'A-'); + insert into takes values('8853', '581', '1', 'Spring', 2005, 'B+'); + insert into takes values('5208', '476', '1', 'Fall', 2010, 'B+'); + insert into takes values('73165', '239', '1', 'Fall', 2006, 'B-'); + insert into takes values('8457', '991', '1', 'Spring', 2008, 'B '); + insert into takes values('25611', '791', '1', 'Spring', 2006, 'B-'); + insert into takes values('73492', '445', '1', 'Spring', 2001, 'A '); + insert into takes values('45083', '629', '1', 'Spring', 2003, 'A-'); + insert into takes values('34770', '270', '1', 'Spring', 2010, 'A+'); + insert into takes values('3739', '362', '2', 'Fall', 2006, 'C-'); + insert into takes values('6712', '468', '2', 'Fall', 2007, 'C '); + insert into takes values('51549', '338', '2', 'Spring', 2006, 'C+'); + insert into takes values('2177', '486', '1', 'Fall', 2009, 'C+'); + insert into takes values('45680', '875', '1', 'Spring', 2005, 'B-'); + insert into takes values('83444', '242', '1', 'Fall', 2009, 'B+'); + insert into takes values('75522', '362', '3', 'Spring', 2008, 'C+'); + insert into takes values('32490', '400', '1', 'Spring', 2007, 'C+'); + insert into takes values('65753', '443', '1', 'Spring', 2010, 'C+'); + insert into takes values('77244', '867', '1', 'Fall', 2006, 'C-'); + insert into takes values('78572', '629', '1', 'Spring', 2003, 'B-'); + insert into takes values('69241', '158', '1', 'Fall', 2008, 'B-'); + insert into takes values('35588', '349', '1', 'Spring', 2008, 'B-'); + insert into takes values('2419', '747', '1', 'Spring', 2004, 'C '); + insert into takes values('34502', '791', '1', 'Spring', 2006, 'B '); + insert into takes values('14563', '991', '1', 'Spring', 2008, 'C+'); + insert into takes values('13290', '158', '2', 'Spring', 2008, 'C-'); + insert into takes values('33546', '476', '1', 'Fall', 2010, 'C '); + insert into takes values('35357', '415', '1', 'Fall', 2010, 'C-'); + insert into takes values('4508', '949', '1', 'Fall', 2007, 'C+'); + insert into takes values('10838', '875', '1', 'Spring', 2005, 'B-'); + insert into takes values('23994', '489', '1', 'Fall', 2007, 'C '); + insert into takes values('5961', '468', '2', 'Fall', 2007, 'B '); + insert into takes values('1727', '527', '1', 'Fall', 2004, 'C-'); + insert into takes values('82580', '468', '2', 'Fall', 2007, 'A-'); + insert into takes values('58935', '105', '1', 'Fall', 2009, 'A-'); + insert into takes values('8986', '362', '1', 'Fall', 2005, 'C '); + insert into takes values('9114', '421', '1', 'Fall', 2004, 'C+'); + insert into takes values('41211', '748', '1', 'Fall', 2003, 'C+'); + insert into takes values('847', '843', '1', 'Fall', 2010, 'C '); + insert into takes values('43658', '200', '2', 'Fall', 2002, 'B '); + insert into takes values('8347', '338', '1', 'Spring', 2007, 'A '); + insert into takes values('31560', '808', '1', 'Fall', 2003, 'B+'); + insert into takes values('16543', '489', '1', 'Fall', 2007, 'B+'); + insert into takes values('53496', '476', '1', 'Fall', 2010, 'B+'); + insert into takes values('62832', '242', '1', 'Fall', 2009, 'B '); + insert into takes values('28538', '468', '1', 'Fall', 2005, 'A-'); + insert into takes values('68010', '604', '1', 'Spring', 2009, 'B+'); + insert into takes values('31337', '137', '1', 'Spring', 2002, 'A-'); + insert into takes values('27919', '960', '2', 'Fall', 2006, 'A '); + insert into takes values('42019', '642', '1', 'Fall', 2004, 'C+'); + insert into takes values('34329', '747', '1', 'Spring', 2004, 'B '); + insert into takes values('43226', '362', '2', 'Fall', 2006, 'B+'); + insert into takes values('88801', '400', '2', 'Fall', 2003, 'C+'); + insert into takes values('9947', '735', '2', 'Spring', 2010, 'B '); + insert into takes values('11095', '461', '1', 'Fall', 2002, 'A-'); + insert into takes values('32490', '443', '1', 'Spring', 2010, 'A+'); + insert into takes values('3487', '626', '1', 'Fall', 2006, 'C-'); + insert into takes values('63860', '158', '1', 'Fall', 2008, 'B '); + insert into takes values('17377', '400', '1', 'Spring', 2007, 'C-'); + insert into takes values('43658', '445', '1', 'Spring', 2001, 'A '); + insert into takes values('95631', '604', '1', 'Spring', 2009, 'B '); + insert into takes values('7970', '408', '1', 'Spring', 2007, 'C-'); + insert into takes values('32464', '345', '1', 'Spring', 2008, 'B+'); + insert into takes values('27727', '629', '1', 'Spring', 2003, 'A '); + insert into takes values('44836', '486', '1', 'Fall', 2009, 'A '); + insert into takes values('40932', '319', '1', 'Spring', 2003, 'A '); + insert into takes values('83871', '192', '1', 'Fall', 2002, 'A '); + insert into takes values('11855', '445', '1', 'Spring', 2001, 'B '); + insert into takes values('95225', '793', '1', 'Spring', 2002, 'C+'); + insert into takes values('19848', '158', '1', 'Fall', 2008, 'A-'); + insert into takes values('61527', '319', '1', 'Spring', 2003, 'B-'); + insert into takes values('45680', '270', '1', 'Spring', 2010, 'B '); + insert into takes values('88993', '791', '1', 'Spring', 2006, 'A-'); + insert into takes values('25725', '376', '1', 'Fall', 2006, 'A+'); + insert into takes values('50664', '793', '1', 'Spring', 2002, 'B+'); + insert into takes values('86981', '760', '1', 'Spring', 2004, 'C-'); + insert into takes values('25718', '313', '1', 'Fall', 2010, 'C+'); + insert into takes values('30845', '603', '1', 'Fall', 2003, 'A+'); + insert into takes values('51579', '735', '2', 'Spring', 2010, 'B-'); + insert into takes values('1954', '334', '1', 'Fall', 2009, 'A+'); + insert into takes values('87624', '974', '1', 'Fall', 2003, 'B+'); + insert into takes values('69285', '400', '2', 'Fall', 2003, 'A '); + insert into takes values('6474', '991', '1', 'Spring', 2008, 'C '); + insert into takes values('11453', '663', '1', 'Spring', 2005, 'B+'); + insert into takes values('24746', '927', '1', 'Fall', 2002, 'B-'); + insert into takes values('32119', '366', '1', 'Fall', 2005, 'C '); + insert into takes values('93653', '599', '1', 'Spring', 2003, 'C '); + insert into takes values('61232', '137', '1', 'Spring', 2002, 'A '); + insert into takes values('62226', '362', '1', 'Fall', 2005, 'A '); + insert into takes values('36384', '105', '2', 'Fall', 2002, 'B+'); + insert into takes values('44304', '545', '1', 'Fall', 2001, 'A-'); + insert into takes values('48660', '258', '1', 'Fall', 2007, 'C+'); + insert into takes values('93653', '960', '1', 'Fall', 2009, 'C-'); + insert into takes values('43016', '949', '1', 'Fall', 2007, 'C-'); + insert into takes values('56882', '482', '1', 'Fall', 2005, 'C+'); + insert into takes values('21102', '443', '2', 'Spring', 2002, 'C+'); + insert into takes values('27950', '482', '1', 'Fall', 2005, 'C+'); + insert into takes values('98388', '486', '1', 'Fall', 2009, 'C+'); + insert into takes values('65438', '274', '1', 'Fall', 2002, 'B-'); + insert into takes values('75040', '972', '1', 'Spring', 2009, 'C+'); + insert into takes values('63361', '949', '1', 'Fall', 2007, 'C+'); + insert into takes values('17831', '192', '1', 'Fall', 2002, 'B '); + insert into takes values('21086', '843', '1', 'Fall', 2010, 'B-'); + insert into takes values('81150', '158', '1', 'Fall', 2008, 'C+'); + insert into takes values('20099', '486', '1', 'Fall', 2009, 'C+'); + insert into takes values('435', '702', '1', 'Spring', 2001, 'A-'); + insert into takes values('827', '795', '1', 'Spring', 2004, 'A '); + insert into takes values('72741', '200', '1', 'Spring', 2007, 'B '); + insert into takes values('33201', '468', '1', 'Fall', 2005, 'B+'); + insert into takes values('35362', '843', '1', 'Fall', 2010, 'A-'); + insert into takes values('12214', '527', '1', 'Fall', 2004, 'C+'); + insert into takes values('43211', '200', '2', 'Fall', 2002, 'B-'); + insert into takes values('1533', '169', '1', 'Spring', 2007, 'A-'); + insert into takes values('77364', '864', '1', 'Spring', 2006, 'C-'); + insert into takes values('75046', '200', '1', 'Spring', 2007, 'B '); + insert into takes values('78892', '972', '1', 'Spring', 2009, 'C '); + insert into takes values('34404', '493', '1', 'Spring', 2010, 'B-'); + insert into takes values('66484', '748', '1', 'Fall', 2003, 'A+'); + insert into takes values('85887', '696', '1', 'Spring', 2002, 'C+'); + insert into takes values('81258', '489', '1', 'Fall', 2007, 'A+'); + insert into takes values('80799', '408', '2', 'Spring', 2003, 'B-'); + insert into takes values('27662', '603', '1', 'Fall', 2003, 'C '); + insert into takes values('66495', '158', '2', 'Spring', 2008, 'A '); + insert into takes values('84702', '679', '1', 'Spring', 2010, 'A+'); + insert into takes values('64945', '748', '1', 'Fall', 2003, 'B '); + insert into takes values('88045', '352', '1', 'Spring', 2006, 'C '); + insert into takes values('28994', '604', '1', 'Spring', 2009, 'C+'); + insert into takes values('99399', '239', '1', 'Fall', 2006, 'A+'); + insert into takes values('90353', '426', '1', 'Spring', 2006, 'C-'); + insert into takes values('89188', '631', '1', 'Spring', 2007, 'B+'); + insert into takes values('35498', '457', '1', 'Spring', 2001, 'B-'); + insert into takes values('51698', '105', '2', 'Fall', 2002, 'A-'); + insert into takes values('56755', '415', '1', 'Fall', 2010, 'A-'); + insert into takes values('54612', '270', '1', 'Spring', 2010, 'B+'); + insert into takes values('35588', '457', '1', 'Spring', 2001, 'A-'); + insert into takes values('78434', '334', '1', 'Fall', 2009, 'A+'); + insert into takes values('50743', '864', '1', 'Spring', 2006, 'C '); + insert into takes values('41299', '962', '1', 'Spring', 2008, 'B '); + insert into takes values('98388', '496', '1', 'Fall', 2001, 'A-'); + insert into takes values('50873', '704', '1', 'Spring', 2008, 'B '); + insert into takes values('17769', '748', '1', 'Fall', 2003, 'C '); + insert into takes values('16907', '468', '2', 'Fall', 2007, 'B-'); + insert into takes values('7854', '158', '1', 'Fall', 2008, 'C+'); + insert into takes values('94894', '959', '1', 'Fall', 2006, 'C+'); + insert into takes values('36303', '612', '1', 'Fall', 2007, 'C+'); + insert into takes values('59397', '376', '1', 'Fall', 2006, 'C+'); + insert into takes values('90372', '366', '1', 'Fall', 2005, 'C-'); + insert into takes values('29091', '545', '1', 'Fall', 2001, 'B '); + insert into takes values('4015', '893', '1', 'Fall', 2007, 'A '); + insert into takes values('52669', '345', '1', 'Spring', 2008, 'A-'); + insert into takes values('54620', '581', '1', 'Spring', 2005, 'A '); + insert into takes values('24442', '571', '1', 'Spring', 2004, 'A+'); + insert into takes values('3639', '852', '1', 'Spring', 2008, 'A '); + insert into takes values('10454', '482', '1', 'Fall', 2005, 'C+'); + insert into takes values('78572', '702', '1', 'Spring', 2001, 'C '); + insert into takes values('34170', '468', '2', 'Fall', 2007, 'A '); + insert into takes values('52057', '158', '2', 'Spring', 2008, 'B '); + insert into takes values('15883', '760', '1', 'Spring', 2004, 'B+'); + insert into takes values('46155', '313', '1', 'Fall', 2010, 'B+'); + insert into takes values('37946', '338', '2', 'Spring', 2006, 'A+'); + insert into takes values('85910', '962', '1', 'Spring', 2008, 'C '); + insert into takes values('31337', '571', '1', 'Spring', 2004, 'A+'); + insert into takes values('18367', '748', '1', 'Fall', 2003, 'B '); + insert into takes values('73206', '559', '1', 'Fall', 2002, 'B+'); + insert into takes values('13365', '696', '1', 'Spring', 2002, 'B+'); + insert into takes values('7514', '974', '1', 'Fall', 2003, 'C+'); + insert into takes values('62549', '192', '1', 'Fall', 2002, 'A-'); + insert into takes values('51538', '808', '1', 'Fall', 2003, 'A-'); + insert into takes values('27528', '893', '1', 'Fall', 2007, 'B '); + insert into takes values('6710', '867', '2', 'Fall', 2010, 'A '); + insert into takes values('97573', '376', '1', 'Fall', 2006, 'A+'); + insert into takes values('27140', '158', '1', 'Fall', 2008, 'B-'); + insert into takes values('90089', '629', '1', 'Spring', 2003, 'A+'); + insert into takes values('57026', '949', '1', 'Fall', 2007, 'B '); + insert into takes values('66054', '192', '1', 'Fall', 2002, 'A '); + insert into takes values('45359', '362', '3', 'Spring', 2008, 'C '); + insert into takes values('32056', '362', '3', 'Spring', 2008, 'C-'); + insert into takes values('43226', '626', '1', 'Fall', 2006, 'B '); + insert into takes values('41818', '694', '1', 'Fall', 2002, 'A-'); + insert into takes values('56124', '319', '1', 'Spring', 2003, 'A+'); + insert into takes values('96206', '158', '2', 'Spring', 2008, 'B '); + insert into takes values('52656', '843', '1', 'Fall', 2010, 'B '); + insert into takes values('67425', '493', '1', 'Spring', 2010, 'C '); + insert into takes values('25785', '802', '1', 'Spring', 2003, 'A '); + insert into takes values('38371', '808', '1', 'Fall', 2003, 'B+'); + insert into takes values('38548', '105', '2', 'Fall', 2002, 'B+'); + insert into takes values('63243', '603', '1', 'Fall', 2003, 'A+'); + insert into takes values('83444', '927', '1', 'Fall', 2002, 'C '); + insert into takes values('42625', '239', '1', 'Fall', 2006, 'A-'); + insert into takes values('6474', '802', '1', 'Spring', 2003, 'C+'); + insert into takes values('95320', '137', '1', 'Spring', 2002, 'C '); + insert into takes values('58355', '158', '1', 'Fall', 2008, 'B-'); + insert into takes values('25718', '461', '1', 'Fall', 2002, 'A '); + insert into takes values('74911', '400', '1', 'Spring', 2007, 'B+'); + insert into takes values('19861', '239', '1', 'Fall', 2006, 'C '); + insert into takes values('52203', '527', '1', 'Fall', 2004, 'C+'); + insert into takes values('23224', '960', '2', 'Fall', 2006, 'B '); + insert into takes values('73186', '443', '2', 'Spring', 2002, 'C-'); + insert into takes values('59046', '591', '1', 'Spring', 2005, 'A '); + insert into takes values('27956', '867', '2', 'Fall', 2010, 'A-'); + insert into takes values('65688', '694', '1', 'Fall', 2002, 'B+'); + insert into takes values('47677', '400', '1', 'Spring', 2007, 'B-'); + insert into takes values('94173', '927', '1', 'Fall', 2002, 'A '); + insert into takes values('95859', '802', '1', 'Spring', 2003, 'C-'); + insert into takes values('51955', '468', '1', 'Fall', 2005, 'C '); + insert into takes values('36402', '237', '1', 'Spring', 2008, 'B+'); + insert into takes values('41406', '793', '1', 'Spring', 2002, 'B-'); + insert into takes values('62636', '237', '2', 'Fall', 2009, 'B+'); + insert into takes values('53490', '169', '2', 'Fall', 2002, 'B-'); + insert into takes values('4508', '169', '2', 'Fall', 2002, 'C+'); + insert into takes values('59530', '795', '1', 'Spring', 2004, 'A '); + insert into takes values('67340', '642', '1', 'Fall', 2004, 'C-'); + insert into takes values('21394', '334', '1', 'Fall', 2009, 'A+'); + insert into takes values('58172', '338', '2', 'Spring', 2006, 'A+'); + insert into takes values('60748', '400', '2', 'Fall', 2003, 'C '); + insert into takes values('70235', '663', '1', 'Spring', 2005, 'B '); + insert into takes values('6712', '559', '1', 'Fall', 2002, 'A-'); + insert into takes values('1836', '631', '1', 'Spring', 2007, 'B '); + insert into takes values('97953', '867', '2', 'Fall', 2010, 'C-'); + insert into takes values('58465', '443', '1', 'Spring', 2010, 'B-'); + insert into takes values('33791', '735', '2', 'Spring', 2010, 'C '); + insert into takes values('98830', '867', '1', 'Fall', 2006, 'B-'); + insert into takes values('67033', '408', '2', 'Spring', 2003, 'A+'); + insert into takes values('68096', '949', '1', 'Fall', 2007, 'B+'); + insert into takes values('40992', '334', '1', 'Fall', 2009, 'A-'); + insert into takes values('90914', '349', '1', 'Spring', 2008, 'A-'); + insert into takes values('72014', '527', '1', 'Fall', 2004, 'B-'); + insert into takes values('67725', '748', '1', 'Fall', 2003, 'C '); + insert into takes values('19220', '875', '1', 'Spring', 2005, 'A+'); + insert into takes values('43123', '962', '1', 'Spring', 2008, 'B '); + insert into takes values('94257', '694', '1', 'Fall', 2002, 'A '); + insert into takes values('12941', '482', '1', 'Fall', 2005, 'C-'); + insert into takes values('49339', '747', '1', 'Spring', 2004, 'C+'); + insert into takes values('3639', '352', '1', 'Spring', 2006, 'A-'); + insert into takes values('88169', '319', '1', 'Spring', 2003, 'B+'); + insert into takes values('80248', '445', '1', 'Spring', 2001, 'A-'); + insert into takes values('69853', '960', '1', 'Fall', 2009, 'B-'); + insert into takes values('35220', '445', '1', 'Spring', 2001, 'B+'); + insert into takes values('58081', '349', '1', 'Spring', 2008, 'A+'); + insert into takes values('86651', '604', '1', 'Spring', 2009, 'A+'); + insert into takes values('85063', '237', '2', 'Fall', 2009, 'B+'); + insert into takes values('76743', '927', '1', 'Fall', 2002, 'B+'); + insert into takes values('5250', '795', '1', 'Spring', 2004, 'A-'); + insert into takes values('25785', '702', '1', 'Spring', 2001, 'B-'); + insert into takes values('96227', '313', '1', 'Fall', 2010, 'B+'); + insert into takes values('37734', '313', '1', 'Fall', 2010, 'A-'); + insert into takes values('26473', '604', '1', 'Spring', 2009, 'A '); + insert into takes values('41406', '443', '1', 'Spring', 2010, 'C-'); + insert into takes values('49450', '200', '1', 'Spring', 2007, 'A '); + insert into takes values('90609', '679', '1', 'Spring', 2010, 'A '); + insert into takes values('20002', '345', '1', 'Spring', 2008, 'C-'); + insert into takes values('43130', '476', '1', 'Fall', 2010, 'B+'); + insert into takes values('91799', '239', '1', 'Fall', 2006, 'B-'); + insert into takes values('52523', '258', '1', 'Fall', 2007, 'B-'); + insert into takes values('38899', '927', '1', 'Fall', 2002, 'C-'); + insert into takes values('29435', '482', '1', 'Fall', 2005, 'A '); + insert into takes values('78581', '137', '1', 'Spring', 2002, 'B-'); + insert into takes values('48901', '747', '1', 'Spring', 2004, 'C-'); + insert into takes values('22142', '401', '1', 'Fall', 2003, 'B '); + insert into takes values('19293', '468', '2', 'Fall', 2007, 'A-'); + insert into takes values('84239', '704', '1', 'Spring', 2008, 'A '); + insert into takes values('13506', '735', '2', 'Spring', 2010, 'B-'); + insert into takes values('38602', '445', '1', 'Spring', 2001, 'A-'); + insert into takes values('2419', '604', '1', 'Spring', 2009, 'A '); + insert into takes values('72186', '631', '1', 'Spring', 2007, 'C-'); + insert into takes values('23794', '581', '1', 'Spring', 2005, 'C '); + insert into takes values('87624', '867', '1', 'Fall', 2006, 'A+'); + insert into takes values('79892', '867', '1', 'Fall', 2006, 'C-'); + insert into takes values('68396', '313', '1', 'Fall', 2010, 'C-'); + insert into takes values('69307', '366', '1', 'Fall', 2005, 'A-'); + insert into takes values('80057', '200', '2', 'Fall', 2002, 'A '); + insert into takes values('78758', '852', '1', 'Spring', 2008, 'B+'); + insert into takes values('7149', '960', '2', 'Fall', 2006, 'A+'); + insert into takes values('81896', '581', '1', 'Spring', 2005, 'B+'); + insert into takes values('27687', '559', '1', 'Fall', 2002, 'B-'); + insert into takes values('55009', '603', '1', 'Fall', 2003, 'A '); + insert into takes values('56941', '696', '1', 'Spring', 2002, 'C+'); + insert into takes values('72959', '476', '1', 'Fall', 2010, 'A-'); + insert into takes values('75513', '642', '1', 'Fall', 2004, 'B-'); + insert into takes values('85451', '802', '1', 'Spring', 2003, 'A+'); + insert into takes values('42991', '663', '1', 'Spring', 2005, 'C-'); + insert into takes values('26730', '735', '2', 'Spring', 2010, 'A-'); + insert into takes values('51008', '200', '1', 'Spring', 2007, 'B-'); + insert into takes values('2501', '867', '1', 'Fall', 2006, 'B-'); + insert into takes values('6710', '599', '1', 'Spring', 2003, 'B+'); + insert into takes values('50537', '239', '1', 'Fall', 2006, 'A-'); + insert into takes values('49701', '362', '3', 'Spring', 2008, 'B+'); + insert into takes values('12326', '200', '2', 'Fall', 2002, 'C-'); + insert into takes values('16133', '972', '1', 'Spring', 2009, 'B+'); + insert into takes values('28004', '974', '1', 'Fall', 2003, 'C+'); + insert into takes values('77898', '527', '1', 'Fall', 2004, 'B+'); + insert into takes values('75423', '304', '1', 'Fall', 2009, 'B-'); + insert into takes values('65056', '334', '1', 'Fall', 2009, 'A+'); + insert into takes values('84410', '415', '1', 'Fall', 2010, 'C '); + insert into takes values('94814', '319', '1', 'Spring', 2003, 'B+'); + insert into takes values('34331', '400', '1', 'Spring', 2007, 'C+'); + insert into takes values('3005', '408', '2', 'Spring', 2003, 'A+'); + insert into takes values('57377', '461', '1', 'Fall', 2002, 'A '); + insert into takes values('6195', '696', '1', 'Spring', 2002, 'B-'); + insert into takes values('89312', '304', '1', 'Fall', 2009, 'A '); + insert into takes values('67514', '612', '1', 'Fall', 2007, 'B-'); + insert into takes values('41741', '482', '1', 'Fall', 2005, 'C-'); + insert into takes values('15283', '237', '1', 'Spring', 2008, 'C-'); + insert into takes values('91580', '604', '1', 'Spring', 2009, 'A-'); + insert into takes values('83696', '486', '1', 'Fall', 2009, 'B+'); + insert into takes values('62832', '169', '2', 'Fall', 2002, 'C+'); + insert into takes values('41774', '376', '1', 'Fall', 2006, 'C+'); + insert into takes values('39394', '852', '1', 'Spring', 2008, 'B-'); + insert into takes values('97228', '696', '1', 'Spring', 2002, 'B '); + insert into takes values('82591', '443', '2', 'Spring', 2002, 'A+'); + insert into takes values('30252', '401', '1', 'Fall', 2003, 'A-'); + insert into takes values('95099', '960', '1', 'Fall', 2009, 'A-'); + insert into takes values('62549', '791', '1', 'Spring', 2006, 'A+'); + insert into takes values('2419', '200', '2', 'Fall', 2002, 'A '); + insert into takes values('69730', '875', '1', 'Spring', 2005, 'A '); + insert into takes values('51955', '457', '1', 'Spring', 2001, 'A '); + insert into takes values('99647', '864', '1', 'Spring', 2006, 'A '); + insert into takes values('95697', '349', '1', 'Spring', 2008, 'C '); + insert into takes values('41674', '158', '1', 'Fall', 2008, 'A-'); + insert into takes values('67657', '169', '1', 'Spring', 2007, 'C '); + insert into takes values('68712', '400', '1', 'Spring', 2007, 'C-'); + insert into takes values('95175', '486', '1', 'Fall', 2009, 'B+'); + insert into takes values('95850', '376', '1', 'Fall', 2006, 'C-'); + insert into takes values('16347', '571', '1', 'Spring', 2004, 'C+'); + insert into takes values('37339', '527', '1', 'Fall', 2004, 'C '); + insert into takes values('88472', '258', '1', 'Fall', 2007, 'C '); + insert into takes values('40481', '334', '1', 'Fall', 2009, 'C+'); + insert into takes values('19245', '591', '1', 'Spring', 2005, 'A '); + insert into takes values('15726', '200', '2', 'Fall', 2002, 'C+'); + insert into takes values('29260', '949', '1', 'Fall', 2007, 'B+'); + insert into takes values('62373', '376', '1', 'Fall', 2006, 'A-'); + insert into takes values('72358', '735', '2', 'Spring', 2010, 'C-'); + insert into takes values('28829', '893', '1', 'Fall', 2007, 'A-'); + insert into takes values('847', '735', '1', 'Spring', 2003, 'C-'); + insert into takes values('2848', '401', '1', 'Fall', 2003, 'A+'); + insert into takes values('58595', '629', '1', 'Spring', 2003, 'B '); + insert into takes values('78116', '362', '1', 'Fall', 2005, 'B '); + insert into takes values('70098', '991', '1', 'Spring', 2008, 'B+'); + insert into takes values('78922', '808', '1', 'Fall', 2003, 'C '); + insert into takes values('7390', '972', '1', 'Spring', 2009, 'A+'); + insert into takes values('94257', '561', '1', 'Fall', 2006, 'C '); + insert into takes values('83696', '599', '1', 'Spring', 2003, 'B '); + insert into takes values('19582', '304', '1', 'Fall', 2009, 'B+'); + insert into takes values('27044', '864', '1', 'Spring', 2006, 'A-'); + insert into takes values('83170', '443', '1', 'Spring', 2010, 'B+'); + insert into takes values('22004', '486', '1', 'Fall', 2009, 'C-'); + insert into takes values('76672', '694', '1', 'Fall', 2002, 'C-'); + insert into takes values('54605', '702', '1', 'Spring', 2001, 'C+'); + insert into takes values('96722', '493', '1', 'Spring', 2010, 'B-'); + insert into takes values('63288', '362', '3', 'Spring', 2008, 'A-'); + insert into takes values('69758', '581', '1', 'Spring', 2005, 'A+'); + insert into takes values('37449', '352', '1', 'Spring', 2006, 'A+'); + insert into takes values('30858', '237', '2', 'Fall', 2009, 'C-'); + insert into takes values('27556', '527', '1', 'Fall', 2004, 'A+'); + insert into takes values('14829', '362', '1', 'Fall', 2005, 'A+'); + insert into takes values('90372', '949', '1', 'Fall', 2007, 'B-'); + insert into takes values('65681', '559', '1', 'Fall', 2002, 'A+'); + insert into takes values('86573', '694', '1', 'Fall', 2002, 'A+'); + insert into takes values('91851', '974', '1', 'Fall', 2003, 'C+'); + insert into takes values('64249', '237', '1', 'Spring', 2008, 'A-'); + insert into takes values('22254', '258', '1', 'Fall', 2007, 'B '); + insert into takes values('81884', '559', '1', 'Fall', 2002, 'C-'); + insert into takes values('26802', '401', '1', 'Fall', 2003, 'A '); + insert into takes values('40189', '735', '1', 'Spring', 2003, 'A-'); + insert into takes values('92864', '457', '1', 'Spring', 2001, 'C-'); + insert into takes values('40044', '352', '1', 'Spring', 2006, 'B '); + insert into takes values('90779', '476', '1', 'Fall', 2010, 'C-'); + insert into takes values('68278', '493', '1', 'Spring', 2010, 'A '); + insert into takes values('32881', '604', '1', 'Spring', 2009, 'C '); + insert into takes values('31690', '468', '1', 'Fall', 2005, 'A '); + insert into takes values('97629', '694', '1', 'Fall', 2002, 'A '); + insert into takes values('72165', '603', '1', 'Fall', 2003, 'B '); + insert into takes values('58355', '137', '1', 'Spring', 2002, 'C-'); + insert into takes values('38336', '791', '1', 'Spring', 2006, 'A-'); + insert into takes values('11095', '843', '1', 'Fall', 2010, 'B-'); + insert into takes values('40677', '545', '1', 'Fall', 2001, 'B-'); + insert into takes values('11152', '808', '1', 'Fall', 2003, 'A+'); + insert into takes values('52076', '802', '1', 'Spring', 2003, 'C '); + insert into takes values('82066', '867', '1', 'Fall', 2006, 'B '); + insert into takes values('48850', '274', '1', 'Fall', 2002, 'C+'); + insert into takes values('80651', '137', '1', 'Spring', 2002, 'B-'); + insert into takes values('96203', '362', '1', 'Fall', 2005, 'C+'); + insert into takes values('95284', '362', '2', 'Fall', 2006, 'A-'); + insert into takes values('86552', '192', '1', 'Fall', 2002, 'C+'); + insert into takes values('17665', '626', '1', 'Fall', 2006, 'B '); + insert into takes values('34170', '158', '2', 'Spring', 2008, 'C+'); + insert into takes values('96178', '408', '2', 'Spring', 2003, 'A+'); + insert into takes values('84189', '457', '1', 'Spring', 2001, 'B '); + insert into takes values('49391', '808', '1', 'Fall', 2003, 'C-'); + insert into takes values('94801', '626', '1', 'Fall', 2006, 'C-'); + insert into takes values('91569', '408', '1', 'Spring', 2007, 'B+'); + insert into takes values('51008', '875', '1', 'Spring', 2005, 'C '); + insert into takes values('38902', '137', '1', 'Spring', 2002, 'B-'); + insert into takes values('16515', '642', '1', 'Fall', 2004, 'A-'); + insert into takes values('30845', '362', '2', 'Fall', 2006, 'B+'); + insert into takes values('23344', '421', '1', 'Fall', 2004, 'A-'); + insert into takes values('65676', '692', '1', 'Spring', 2010, 'A-'); + insert into takes values('24197', '735', '1', 'Spring', 2003, 'B+'); + insert into takes values('22618', '960', '2', 'Fall', 2006, 'B '); + insert into takes values('41683', '603', '1', 'Fall', 2003, 'C+'); + insert into takes values('57242', '457', '1', 'Spring', 2001, 'B+'); + insert into takes values('14621', '376', '1', 'Fall', 2006, 'C+'); + insert into takes values('18234', '349', '1', 'Spring', 2008, 'B-'); + insert into takes values('5336', '158', '1', 'Fall', 2008, 'A+'); + insert into takes values('69225', '445', '1', 'Spring', 2001, 'B '); + insert into takes values('99775', '599', '1', 'Spring', 2003, 'B-'); + insert into takes values('1080', '960', '1', 'Fall', 2009, 'C '); + insert into takes values('17076', '793', '1', 'Spring', 2002, 'B-'); + insert into takes values('62754', '489', '1', 'Fall', 2007, 'B '); + insert into takes values('55354', '169', '1', 'Spring', 2007, 'B '); + insert into takes values('50038', '735', '1', 'Spring', 2003, 'B '); + insert into takes values('90181', '105', '1', 'Fall', 2009, 'C+'); + insert into takes values('27898', '457', '1', 'Spring', 2001, 'B+'); + insert into takes values('40059', '192', '1', 'Fall', 2002, 'B+'); + insert into takes values('25940', '679', '1', 'Spring', 2010, 'C+'); + insert into takes values('96246', '457', '1', 'Spring', 2001, 'B-'); + insert into takes values('29514', '496', '1', 'Fall', 2001, 'B-'); + insert into takes values('12236', '137', '1', 'Spring', 2002, 'A-'); + insert into takes values('93571', '362', '1', 'Fall', 2005, 'A '); + insert into takes values('38602', '338', '2', 'Spring', 2006, 'B-'); + insert into takes values('3576', '629', '1', 'Spring', 2003, 'A+'); + insert into takes values('49701', '545', '1', 'Fall', 2001, 'B+'); + insert into takes values('11055', '843', '1', 'Fall', 2010, 'A-'); + insert into takes values('18821', '362', '1', 'Fall', 2005, 'A '); + insert into takes values('13749', '692', '1', 'Spring', 2010, 'A-'); + insert into takes values('95284', '949', '1', 'Fall', 2007, 'B-'); + insert into takes values('78116', '105', '1', 'Fall', 2009, 'B '); + insert into takes values('30164', '457', '1', 'Spring', 2001, 'C '); + insert into takes values('84039', '867', '1', 'Fall', 2006, 'C '); + insert into takes values('81876', '345', '1', 'Spring', 2008, 'B '); + insert into takes values('36379', '612', '1', 'Fall', 2007, 'B '); + insert into takes values('50013', '349', '1', 'Spring', 2008, 'B+'); + insert into takes values('97435', '237', '1', 'Spring', 2008, 'C+'); + insert into takes values('23506', '612', '1', 'Fall', 2007, 'A-'); + insert into takes values('11262', '270', '1', 'Spring', 2010, 'C+'); + insert into takes values('44304', '443', '1', 'Spring', 2010, 'B+'); + insert into takes values('21102', '927', '1', 'Fall', 2002, 'B '); + insert into takes values('2201', '747', '1', 'Spring', 2004, 'C-'); + insert into takes values('90372', '843', '1', 'Fall', 2010, 'A '); + insert into takes values('95626', '362', '1', 'Fall', 2005, 'B '); + insert into takes values('81175', '694', '1', 'Fall', 2002, 'A+'); + insert into takes values('17996', '735', '2', 'Spring', 2010, 'B+'); + insert into takes values('44985', '313', '1', 'Fall', 2010, 'B '); + insert into takes values('83838', '362', '2', 'Fall', 2006, 'B '); + insert into takes values('9460', '642', '1', 'Fall', 2004, 'B-'); + insert into takes values('73387', '864', '1', 'Spring', 2006, 'C+'); + insert into takes values('70452', '747', '1', 'Spring', 2004, 'C '); + insert into takes values('1110', '496', '1', 'Fall', 2001, 'A-'); + insert into takes values('56212', '704', '1', 'Spring', 2008, 'C+'); + insert into takes values('53496', '802', '1', 'Spring', 2003, 'A-'); + insert into takes values('88793', '192', '1', 'Fall', 2002, 'C-'); + insert into takes values('84808', '192', '1', 'Fall', 2002, 'A '); + insert into takes values('68999', '960', '1', 'Fall', 2009, 'B '); + insert into takes values('70235', '496', '1', 'Fall', 2001, 'B+'); + insert into takes values('14596', '304', '1', 'Fall', 2009, 'A+'); + insert into takes values('69732', '408', '2', 'Spring', 2003, 'B+'); + insert into takes values('71287', '875', '1', 'Spring', 2005, 'C+'); + insert into takes values('95852', '362', '1', 'Fall', 2005, 'B '); + insert into takes values('23525', '735', '1', 'Spring', 2003, 'B+'); + insert into takes values('67436', '376', '1', 'Fall', 2006, 'C-'); + insert into takes values('20002', '702', '1', 'Spring', 2001, 'A+'); + insert into takes values('49873', '366', '1', 'Fall', 2005, 'A '); + insert into takes values('63288', '692', '1', 'Spring', 2010, 'C-'); + insert into takes values('31761', '561', '1', 'Fall', 2006, 'C-'); + insert into takes values('68150', '400', '1', 'Spring', 2007, 'A-'); + insert into takes values('85910', '735', '1', 'Spring', 2003, 'C+'); + insert into takes values('46725', '401', '1', 'Fall', 2003, 'A+'); + insert into takes values('31337', '692', '1', 'Spring', 2010, 'B+'); + insert into takes values('69225', '415', '1', 'Fall', 2010, 'B-'); + insert into takes values('48901', '679', '1', 'Spring', 2010, 'B '); + insert into takes values('83728', '545', '1', 'Fall', 2001, 'B '); + insert into takes values('68280', '561', '1', 'Fall', 2006, 'B '); + insert into takes values('86969', '802', '1', 'Spring', 2003, 'B-'); + insert into takes values('10814', '631', '1', 'Spring', 2007, 'B-'); + insert into takes values('44881', '867', '1', 'Fall', 2006, 'A '); + insert into takes values('58701', '571', '1', 'Spring', 2004, 'A-'); + insert into takes values('56598', '748', '1', 'Fall', 2003, 'B+'); + insert into takes values('28316', '274', '1', 'Fall', 2002, 'A '); + insert into takes values('67793', '626', '1', 'Fall', 2006, 'C '); + insert into takes values('95852', '338', '2', 'Spring', 2006, 'A-'); + insert into takes values('83728', '237', '2', 'Fall', 2009, 'C+'); + insert into takes values('36244', '493', '1', 'Spring', 2010, 'B '); + insert into takes values('99775', '603', '1', 'Fall', 2003, 'C '); + insert into takes values('40932', '960', '2', 'Fall', 2006, 'A '); + insert into takes values('15086', '461', '1', 'Fall', 2002, 'A+'); + insert into takes values('71630', '476', '1', 'Fall', 2010, 'B-'); + insert into takes values('43854', '802', '1', 'Spring', 2003, 'B+'); + insert into takes values('11055', '349', '1', 'Spring', 2008, 'C '); + insert into takes values('86641', '603', '1', 'Fall', 2003, 'A-'); + insert into takes values('70395', '591', '1', 'Spring', 2005, 'A+'); + insert into takes values('99647', '304', '1', 'Fall', 2009, 'B+'); + insert into takes values('32744', '105', '1', 'Fall', 2009, 'C-'); + insert into takes values('18859', '603', '1', 'Fall', 2003, 'C '); + insert into takes values('84727', '702', '1', 'Spring', 2001, 'B '); + insert into takes values('12979', '421', '1', 'Fall', 2004, 'C '); + insert into takes values('75928', '362', '3', 'Spring', 2008, 'C-'); + insert into takes values('5399', '808', '1', 'Fall', 2003, 'C-'); + insert into takes values('40677', '867', '2', 'Fall', 2010, 'A-'); + insert into takes values('21401', '581', '1', 'Spring', 2005, 'C+'); + insert into takes values('84495', '400', '2', 'Fall', 2003, 'A-'); + insert into takes values('54508', '974', '1', 'Fall', 2003, 'B '); + insert into takes values('70522', '960', '1', 'Fall', 2009, 'C-'); + insert into takes values('22268', '692', '1', 'Spring', 2010, 'C-'); + insert into takes values('31690', '793', '1', 'Spring', 2002, 'B-'); + insert into takes values('4435', '631', '1', 'Spring', 2007, 'C '); + insert into takes values('82688', '426', '1', 'Spring', 2006, 'B '); + insert into takes values('82083', '959', '1', 'Fall', 2006, 'A '); + insert into takes values('67542', '603', '1', 'Fall', 2003, 'C-'); + insert into takes values('94814', '802', '1', 'Spring', 2003, 'A '); + insert into takes values('76604', '974', '1', 'Fall', 2003, 'A-'); + insert into takes values('90220', '158', '2', 'Spring', 2008, 'A-'); + insert into takes values('60224', '338', '2', 'Spring', 2006, 'C-'); + insert into takes values('32881', '468', '2', 'Fall', 2007, 'C-'); + insert into takes values('95027', '426', '1', 'Spring', 2006, 'C-'); + insert into takes values('26102', '415', '1', 'Fall', 2010, 'C+'); + insert into takes values('64724', '591', '1', 'Spring', 2005, 'B-'); + insert into takes values('25362', '949', '1', 'Fall', 2007, 'C '); + insert into takes values('66356', '158', '1', 'Fall', 2008, 'C+'); + insert into takes values('92839', '421', '1', 'Fall', 2004, 'C-'); + insert into takes values('71287', '663', '1', 'Spring', 2005, 'B '); + insert into takes values('82707', '105', '2', 'Fall', 2002, 'B '); + insert into takes values('31341', '561', '1', 'Fall', 2006, 'C '); + insert into takes values('9659', '991', '1', 'Spring', 2008, 'C '); + insert into takes values('42114', '400', '1', 'Spring', 2007, 'C-'); + insert into takes values('77588', '591', '1', 'Spring', 2005, 'C-'); + insert into takes values('66969', '461', '1', 'Fall', 2002, 'A+'); + insert into takes values('66495', '313', '1', 'Fall', 2010, 'A+'); + insert into takes values('68070', '959', '1', 'Fall', 2006, 'A '); + insert into takes values('37521', '338', '1', 'Spring', 2007, 'A+'); + insert into takes values('26102', '642', '1', 'Fall', 2004, 'A+'); + insert into takes values('17076', '795', '1', 'Spring', 2004, 'C '); + insert into takes values('52371', '443', '1', 'Spring', 2010, 'B-'); + insert into takes values('5243', '875', '1', 'Spring', 2005, 'C '); + insert into takes values('8957', '974', '1', 'Fall', 2003, 'A-'); + insert into takes values('86934', '237', '1', 'Spring', 2008, 'A '); + insert into takes values('89246', '631', '1', 'Spring', 2007, 'C+'); + insert into takes values('50331', '192', '1', 'Fall', 2002, 'B '); + insert into takes values('18675', '949', '1', 'Fall', 2007, 'A '); + insert into takes values('38691', '696', '1', 'Spring', 2002, 'A-'); + insert into takes values('21692', '631', '1', 'Spring', 2007, 'A '); + insert into takes values('83204', '679', '1', 'Spring', 2010, 'B '); + insert into takes values('74911', '748', '1', 'Fall', 2003, 'B-'); + insert into takes values('82970', '603', '1', 'Fall', 2003, 'B-'); + insert into takes values('53047', '960', '2', 'Fall', 2006, 'B+'); + insert into takes values('57377', '949', '1', 'Fall', 2007, 'A+'); + insert into takes values('65190', '345', '1', 'Spring', 2008, 'A-'); + insert into takes values('94894', '591', '1', 'Spring', 2005, 'B-'); + insert into takes values('67017', '400', '1', 'Spring', 2007, 'A '); + insert into takes values('41261', '875', '1', 'Spring', 2005, 'B-'); + insert into takes values('52856', '852', '1', 'Spring', 2008, 'A '); + insert into takes values('68396', '581', '1', 'Spring', 2005, 'B-'); + insert into takes values('499', '334', '1', 'Fall', 2009, 'C+'); + insert into takes values('81258', '400', '1', 'Spring', 2007, 'C+'); + insert into takes values('16075', '561', '1', 'Fall', 2006, 'A-'); + insert into takes values('97042', '345', '1', 'Spring', 2008, 'B '); + insert into takes values('64593', '158', '2', 'Spring', 2008, 'C '); + insert into takes values('288', '468', '1', 'Fall', 2005, 'B-'); + insert into takes values('80227', '559', '1', 'Fall', 2002, 'B+'); + insert into takes values('79352', '137', '1', 'Spring', 2002, 'B+'); + insert into takes values('54460', '802', '1', 'Spring', 2003, 'A-'); + insert into takes values('95366', '679', '1', 'Spring', 2010, 'A '); + insert into takes values('63860', '527', '1', 'Fall', 2004, 'B '); + insert into takes values('32881', '694', '1', 'Fall', 2002, 'C-'); + insert into takes values('70235', '486', '1', 'Fall', 2009, 'B '); + insert into takes values('80113', '735', '2', 'Spring', 2010, 'C+'); + insert into takes values('8347', '362', '3', 'Spring', 2008, 'B+'); + insert into takes values('45200', '200', '2', 'Fall', 2002, 'A '); + insert into takes values('75423', '604', '1', 'Spring', 2009, 'B+'); + insert into takes values('40937', '852', '1', 'Spring', 2008, 'C '); + insert into takes values('64820', '663', '1', 'Spring', 2005, 'C+'); + insert into takes values('69853', '486', '1', 'Fall', 2009, 'C '); + insert into takes values('65438', '468', '1', 'Fall', 2005, 'C+'); + insert into takes values('68999', '852', '1', 'Spring', 2008, 'A-'); + insert into takes values('79772', '760', '1', 'Spring', 2004, 'A-'); + insert into takes values('81396', '496', '1', 'Fall', 2001, 'B+'); + insert into takes values('38271', '893', '1', 'Fall', 2007, 'B '); + insert into takes values('70965', '599', '1', 'Spring', 2003, 'C '); + insert into takes values('98019', '408', '1', 'Spring', 2007, 'C '); + insert into takes values('41674', '270', '1', 'Spring', 2010, 'C '); + insert into takes values('59848', '843', '1', 'Fall', 2010, 'C+'); + insert into takes values('57135', '493', '1', 'Spring', 2010, 'A+'); + insert into takes values('42565', '486', '1', 'Fall', 2009, 'B+'); + insert into takes values('69230', '486', '1', 'Fall', 2009, 'A '); + insert into takes values('90779', '612', '1', 'Fall', 2007, 'C-'); + insert into takes values('18775', '313', '1', 'Fall', 2010, 'C '); + insert into takes values('85451', '571', '1', 'Spring', 2004, 'C-'); + insert into takes values('75273', '591', '1', 'Spring', 2005, 'C+'); + insert into takes values('69581', '642', '1', 'Fall', 2004, 'A+'); + insert into takes values('17924', '137', '1', 'Spring', 2002, 'A+'); + insert into takes values('21086', '867', '2', 'Fall', 2010, 'C-'); + insert into takes values('9440', '334', '1', 'Fall', 2009, 'A-'); + insert into takes values('92442', '852', '1', 'Spring', 2008, 'C+'); + insert into takes values('42956', '408', '2', 'Spring', 2003, 'A '); + insert into takes values('58701', '959', '1', 'Fall', 2006, 'C-'); + insert into takes values('78782', '482', '1', 'Fall', 2005, 'C-'); + insert into takes values('78314', '960', '2', 'Fall', 2006, 'B+'); + insert into takes values('17769', '493', '1', 'Spring', 2010, 'A '); + insert into takes values('70688', '735', '1', 'Spring', 2003, 'C '); + insert into takes values('57123', '974', '1', 'Fall', 2003, 'A '); + insert into takes values('67425', '893', '1', 'Fall', 2007, 'C '); + insert into takes values('12173', '137', '1', 'Spring', 2002, 'C+'); + insert into takes values('50013', '603', '1', 'Fall', 2003, 'C '); + insert into takes values('96895', '561', '1', 'Fall', 2006, 'B+'); + insert into takes values('80912', '274', '1', 'Fall', 2002, 'A+'); + insert into takes values('36881', '408', '2', 'Spring', 2003, 'B+'); + insert into takes values('82126', '974', '1', 'Fall', 2003, 'B-'); + insert into takes values('80742', '338', '1', 'Spring', 2007, 'B-'); + insert into takes values('98870', '735', '2', 'Spring', 2010, 'C '); + insert into takes values('98690', '760', '1', 'Spring', 2004, 'A '); + insert into takes values('20099', '875', '1', 'Spring', 2005, 'B '); + insert into takes values('16311', '349', '1', 'Spring', 2008, 'A+'); + insert into takes values('47824', '735', '1', 'Spring', 2003, 'C '); + insert into takes values('86833', '237', '2', 'Fall', 2009, 'A-'); + insert into takes values('91569', '959', '1', 'Fall', 2006, 'B+'); + insert into takes values('1080', '493', '1', 'Spring', 2010, 'A-'); + insert into takes values('46980', '802', '1', 'Spring', 2003, 'C '); + insert into takes values('15249', '991', '1', 'Spring', 2008, 'A+'); + insert into takes values('32506', '274', '1', 'Fall', 2002, 'B '); + insert into takes values('83728', '867', '1', 'Fall', 2006, 'C '); + insert into takes values('71904', '696', '1', 'Spring', 2002, 'B-'); + insert into takes values('1812', '362', '1', 'Fall', 2005, 'C '); + insert into takes values('29192', '105', '2', 'Fall', 2002, 'B+'); + insert into takes values('61998', '735', '1', 'Spring', 2003, 'A '); + insert into takes values('43130', '793', '1', 'Spring', 2002, 'C+'); + insert into takes values('47670', '105', '2', 'Fall', 2002, 'C+'); + insert into takes values('19735', '694', '1', 'Fall', 2002, 'B-'); + insert into takes values('24865', '852', '1', 'Spring', 2008, 'A+'); + insert into takes values('66008', '482', '1', 'Fall', 2005, 'A '); + insert into takes values('37101', '559', '1', 'Fall', 2002, 'B-'); + insert into takes values('23457', '334', '1', 'Fall', 2009, 'A-'); + insert into takes values('45720', '694', '1', 'Fall', 2002, 'A '); + insert into takes values('96117', '962', '1', 'Spring', 2008, 'C '); + insert into takes values('69853', '200', '2', 'Fall', 2002, 'C '); + insert into takes values('88085', '612', '1', 'Fall', 2007, 'C-'); + insert into takes values('72165', '545', '1', 'Fall', 2001, 'A '); + insert into takes values('40178', '338', '1', 'Spring', 2007, 'A '); + insert into takes values('64820', '679', '1', 'Spring', 2010, 'C-'); + insert into takes values('57026', '991', '1', 'Spring', 2008, 'A+'); + insert into takes values('95175', '169', '1', 'Spring', 2007, 'C+'); + insert into takes values('37038', '591', '1', 'Spring', 2005, 'B '); + insert into takes values('88577', '696', '1', 'Spring', 2002, 'C+'); + insert into takes values('42843', '415', '1', 'Fall', 2010, 'C-'); + insert into takes values('40937', '694', '1', 'Fall', 2002, 'A '); + insert into takes values('31820', '319', '1', 'Spring', 2003, 'C+'); + insert into takes values('66356', '604', '1', 'Spring', 2009, 'B+'); + insert into takes values('92849', '443', '2', 'Spring', 2002, 'A+'); + insert into takes values('29462', '696', '1', 'Spring', 2002, 'B+'); + insert into takes values('29260', '486', '1', 'Fall', 2009, 'C+'); + insert into takes values('69581', '362', '1', 'Fall', 2005, 'C+'); + insert into takes values('82082', '696', '1', 'Spring', 2002, 'A '); + insert into takes values('27044', '545', '1', 'Fall', 2001, 'B+'); + insert into takes values('21692', '334', '1', 'Fall', 2009, 'A '); + insert into takes values('31080', '242', '1', 'Fall', 2009, 'C '); + insert into takes values('83573', '408', '2', 'Spring', 2003, 'A-'); + insert into takes values('57238', '192', '1', 'Fall', 2002, 'B+'); + insert into takes values('38476', '808', '1', 'Fall', 2003, 'C-'); + insert into takes values('56', '400', '2', 'Fall', 2003, 'C+'); + insert into takes values('10204', '791', '1', 'Spring', 2006, 'B-'); + insert into takes values('99949', '604', '1', 'Spring', 2009, 'C '); + insert into takes values('94990', '352', '1', 'Spring', 2006, 'A '); + insert into takes values('27094', '496', '1', 'Fall', 2001, 'A '); + insert into takes values('82974', '867', '2', 'Fall', 2010, 'A+'); + insert into takes values('499', '408', '1', 'Spring', 2007, 'B-'); + insert into takes values('36263', '991', '1', 'Spring', 2008, 'B+'); + insert into takes values('11126', '626', '1', 'Fall', 2006, 'C+'); + insert into takes values('75241', '603', '1', 'Fall', 2003, 'C+'); + insert into takes values('645', '679', '1', 'Spring', 2010, 'B '); + insert into takes values('7973', '612', '1', 'Fall', 2007, 'A-'); + insert into takes values('91370', '421', '1', 'Fall', 2004, 'A-'); + insert into takes values('19048', '443', '2', 'Spring', 2002, 'B '); + insert into takes values('2133', '445', '1', 'Spring', 2001, 'A '); + insert into takes values('52203', '158', '2', 'Spring', 2008, 'C+'); + insert into takes values('48861', '793', '1', 'Spring', 2002, 'B-'); + insert into takes values('40481', '482', '1', 'Fall', 2005, 'A-'); + insert into takes values('17911', '559', '1', 'Fall', 2002, 'A-'); + insert into takes values('64169', '400', '2', 'Fall', 2003, 'B+'); + insert into takes values('78481', '581', '1', 'Spring', 2005, 'A+'); + insert into takes values('11195', '105', '1', 'Fall', 2009, 'A '); + insert into takes values('80057', '962', '1', 'Spring', 2008, 'B '); + insert into takes values('77898', '867', '2', 'Fall', 2010, 'B+'); + insert into takes values('3576', '426', '1', 'Spring', 2006, 'A-'); + insert into takes values('19245', '334', '1', 'Fall', 2009, 'B-'); + insert into takes values('993', '631', '1', 'Spring', 2007, 'B-'); + insert into takes values('67514', '735', '1', 'Spring', 2003, 'A-'); + insert into takes values('97551', '679', '1', 'Spring', 2010, 'A-'); + insert into takes values('46066', '571', '1', 'Spring', 2004, 'A+'); + insert into takes values('64249', '604', '1', 'Spring', 2009, 'C-'); + insert into takes values('18775', '949', '1', 'Fall', 2007, 'C '); + insert into takes values('463', '345', '1', 'Spring', 2008, 'B+'); + insert into takes values('57941', '200', '1', 'Spring', 2007, 'B+'); + insert into takes values('38602', '972', '1', 'Spring', 2009, 'B+'); + insert into takes values('46106', '960', '1', 'Fall', 2009, 'C+'); + insert into takes values('68516', '158', '2', 'Spring', 2008, 'C+'); + insert into takes values('81175', '158', '2', 'Spring', 2008, 'B-'); + insert into takes values('64249', '457', '1', 'Spring', 2001, 'C+'); + insert into takes values('86753', '663', '1', 'Spring', 2005, 'C-'); + insert into takes values('50537', '704', '1', 'Spring', 2008, 'C-'); + insert into takes values('75547', '486', '1', 'Fall', 2009, 'B+'); + insert into takes values('80113', '581', '1', 'Spring', 2005, 'C-'); + insert into takes values('87785', '319', '1', 'Spring', 2003, 'C '); + insert into takes values('98563', '362', '2', 'Fall', 2006, 'C-'); + insert into takes values('75791', '169', '2', 'Fall', 2002, 'B-'); + insert into takes values('22179', '169', '1', 'Spring', 2007, 'C+'); + insert into takes values('37818', '137', '1', 'Spring', 2002, 'A+'); + insert into takes values('27556', '629', '1', 'Spring', 2003, 'C-'); + insert into takes values('19791', '313', '1', 'Fall', 2010, 'A+'); + insert into takes values('58081', '974', '1', 'Fall', 2003, 'C '); + insert into takes values('90814', '626', '1', 'Fall', 2006, 'A-'); + insert into takes values('15613', '237', '2', 'Fall', 2009, 'B-'); + insert into takes values('66229', '704', '1', 'Spring', 2008, 'C-'); + insert into takes values('83871', '376', '1', 'Fall', 2006, 'B '); + insert into takes values('9084', '457', '1', 'Spring', 2001, 'B '); + insert into takes values('24387', '376', '1', 'Fall', 2006, 'C '); + insert into takes values('23439', '960', '2', 'Fall', 2006, 'A+'); + insert into takes values('43016', '445', '1', 'Spring', 2001, 'B-'); + insert into takes values('46769', '527', '1', 'Fall', 2004, 'B '); + insert into takes values('66054', '626', '1', 'Fall', 2006, 'C-'); + insert into takes values('65703', '400', '2', 'Fall', 2003, 'B+'); + insert into takes values('95205', '748', '1', 'Fall', 2003, 'A-'); + insert into takes values('86552', '415', '1', 'Fall', 2010, 'B+'); + insert into takes values('35687', '960', '1', 'Fall', 2009, 'C-'); + insert into takes values('40937', '599', '1', 'Spring', 2003, 'C '); + insert into takes values('41938', '400', '2', 'Fall', 2003, 'C-'); + insert into takes values('70965', '443', '2', 'Spring', 2002, 'A '); + insert into takes values('66484', '791', '1', 'Spring', 2006, 'A+'); + insert into takes values('6673', '679', '1', 'Spring', 2010, 'B+'); + insert into takes values('28128', '793', '1', 'Spring', 2002, 'A-'); + insert into takes values('56212', '559', '1', 'Fall', 2002, 'B '); + insert into takes values('66484', '802', '1', 'Spring', 2003, 'B-'); + insert into takes values('76250', '366', '1', 'Fall', 2005, 'B+'); + insert into takes values('30164', '581', '1', 'Spring', 2005, 'C '); + insert into takes values('36244', '603', '1', 'Fall', 2003, 'C '); + insert into takes values('89132', '604', '1', 'Spring', 2009, 'B+'); + insert into takes values('32130', '468', '2', 'Fall', 2007, 'A+'); + insert into takes values('86969', '482', '1', 'Fall', 2005, 'B+'); + insert into takes values('16523', '158', '1', 'Fall', 2008, 'A+'); + insert into takes values('30341', '349', '1', 'Spring', 2008, 'C+'); + insert into takes values('39472', '991', '1', 'Spring', 2008, 'C-'); + insert into takes values('62784', '457', '1', 'Spring', 2001, 'C '); + insert into takes values('18499', '802', '1', 'Spring', 2003, 'B-'); + insert into takes values('51923', '791', '1', 'Spring', 2006, 'A-'); + insert into takes values('62054', '105', '2', 'Fall', 2002, 'A+'); + insert into takes values('8192', '400', '2', 'Fall', 2003, 'B '); + insert into takes values('1000', '493', '1', 'Spring', 2010, 'A-'); + insert into takes values('37038', '991', '1', 'Spring', 2008, 'A+'); + insert into takes values('79210', '599', '1', 'Spring', 2003, 'C-'); + insert into takes values('108', '694', '1', 'Fall', 2002, 'C-'); + insert into takes values('31560', '735', '1', 'Spring', 2003, 'C+'); + insert into takes values('94766', '443', '1', 'Spring', 2010, 'B+'); + insert into takes values('94814', '702', '1', 'Spring', 2001, 'B-'); + insert into takes values('83953', '974', '1', 'Fall', 2003, 'B-'); + insert into takes values('97065', '612', '1', 'Fall', 2007, 'A+'); + insert into takes values('91132', '949', '1', 'Fall', 2007, 'B+'); + insert into takes values('55286', '527', '1', 'Fall', 2004, 'B-'); + insert into takes values('79210', '960', '1', 'Fall', 2009, 'A+'); + insert into takes values('74840', '237', '1', 'Spring', 2008, 'A+'); + insert into takes values('33460', '867', '1', 'Fall', 2006, 'C+'); + insert into takes values('5617', '237', '2', 'Fall', 2009, 'A-'); + insert into takes values('55857', '237', '2', 'Fall', 2009, 'C+'); + insert into takes values('14554', '237', '1', 'Spring', 2008, 'B '); + insert into takes values('77289', '559', '1', 'Fall', 2002, 'C-'); + insert into takes values('68150', '408', '2', 'Spring', 2003, 'A+'); + insert into takes values('75794', '893', '1', 'Fall', 2007, 'B '); + insert into takes values('5414', '457', '1', 'Spring', 2001, 'B '); + insert into takes values('98423', '791', '1', 'Spring', 2006, 'C+'); + insert into takes values('95320', '694', '1', 'Fall', 2002, 'B+'); + insert into takes values('51817', '991', '1', 'Spring', 2008, 'C '); + insert into takes values('43505', '468', '2', 'Fall', 2007, 'B+'); + insert into takes values('18821', '274', '1', 'Fall', 2002, 'C-'); + insert into takes values('45436', '457', '1', 'Spring', 2001, 'A-'); + insert into takes values('46928', '192', '1', 'Fall', 2002, 'A-'); + insert into takes values('32490', '461', '1', 'Fall', 2002, 'A+'); + insert into takes values('30858', '366', '1', 'Fall', 2005, 'B+'); + insert into takes values('2795', '400', '1', 'Spring', 2007, 'B-'); + insert into takes values('4860', '795', '1', 'Spring', 2004, 'A+'); + insert into takes values('89140', '893', '1', 'Fall', 2007, 'C+'); + insert into takes values('44551', '960', '2', 'Fall', 2006, 'A+'); + insert into takes values('52187', '704', '1', 'Spring', 2008, 'B '); + insert into takes values('99949', '105', '2', 'Fall', 2002, 'B '); + insert into takes values('78787', '362', '2', 'Fall', 2006, 'A '); + insert into takes values('28952', '242', '1', 'Fall', 2009, 'B '); + insert into takes values('32772', '242', '1', 'Fall', 2009, 'C '); + insert into takes values('28989', '408', '1', 'Spring', 2007, 'B-'); + insert into takes values('72006', '376', '1', 'Fall', 2006, 'A-'); + insert into takes values('68554', '362', '1', 'Fall', 2005, 'B '); + insert into takes values('14432', '545', '1', 'Fall', 2001, 'B '); + insert into takes values('80610', '200', '2', 'Fall', 2002, 'C '); + insert into takes values('29435', '694', '1', 'Fall', 2002, 'C+'); + insert into takes values('931', '642', '1', 'Fall', 2004, 'C '); + insert into takes values('36845', '791', '1', 'Spring', 2006, 'A-'); + insert into takes values('38895', '747', '1', 'Spring', 2004, 'B+'); + insert into takes values('62749', '791', '1', 'Spring', 2006, 'A+'); + insert into takes values('13211', '581', '1', 'Spring', 2005, 'B '); + insert into takes values('52371', '559', '1', 'Fall', 2002, 'C '); + insert into takes values('45680', '960', '2', 'Fall', 2006, 'B-'); + insert into takes values('11237', '559', '1', 'Fall', 2002, 'C+'); + insert into takes values('79772', '242', '1', 'Fall', 2009, 'C+'); + insert into takes values('68999', '612', '1', 'Fall', 2007, 'B-'); + insert into takes values('93125', '561', '1', 'Fall', 2006, 'B '); + insert into takes values('86641', '486', '1', 'Fall', 2009, 'C+'); + insert into takes values('71287', '642', '1', 'Fall', 2004, 'B '); + insert into takes values('95626', '704', '1', 'Spring', 2008, 'C-'); + insert into takes values('59673', '274', '1', 'Fall', 2002, 'B+'); + insert into takes values('35175', '242', '1', 'Fall', 2009, 'A '); + insert into takes values('39978', '362', '1', 'Fall', 2005, 'A '); + insert into takes values('95320', '852', '1', 'Spring', 2008, 'C '); + insert into takes values('71025', '795', '1', 'Spring', 2004, 'A-'); + insert into takes values('94620', '629', '1', 'Spring', 2003, 'C '); + insert into takes values('88287', '468', '1', 'Fall', 2005, 'B-'); + insert into takes values('98359', '867', '2', 'Fall', 2010, 'A '); + insert into takes values('931', '493', '1', 'Spring', 2010, 'B-'); + insert into takes values('14596', '239', '1', 'Fall', 2006, 'B '); + insert into takes values('16480', '927', '1', 'Fall', 2002, 'C '); + insert into takes values('792', '362', '3', 'Spring', 2008, 'A+'); + insert into takes values('78116', '960', '2', 'Fall', 2006, 'B '); + insert into takes values('68712', '793', '1', 'Spring', 2002, 'C-'); + insert into takes values('95201', '571', '1', 'Spring', 2004, 'C '); + insert into takes values('84495', '338', '2', 'Spring', 2006, 'B-'); + insert into takes values('78911', '629', '1', 'Spring', 2003, 'C-'); + insert into takes values('67293', '626', '1', 'Fall', 2006, 'B+'); + insert into takes values('33401', '571', '1', 'Spring', 2004, 'B-'); + insert into takes values('73394', '692', '1', 'Spring', 2010, 'C+'); + insert into takes values('62716', '313', '1', 'Fall', 2010, 'B+'); + insert into takes values('16528', '338', '2', 'Spring', 2006, 'A '); + insert into takes values('52750', '242', '1', 'Fall', 2009, 'A-'); + insert into takes values('3039', '561', '1', 'Fall', 2006, 'A '); + insert into takes values('23500', '468', '2', 'Fall', 2007, 'C '); + insert into takes values('63243', '200', '1', 'Spring', 2007, 'C '); + insert into takes values('45650', '694', '1', 'Fall', 2002, 'A-'); + insert into takes values('68150', '169', '2', 'Fall', 2002, 'B-'); + insert into takes values('7602', '242', '1', 'Fall', 2009, 'A-'); + insert into takes values('49450', '603', '1', 'Fall', 2003, 'C+'); + insert into takes values('47627', '304', '1', 'Fall', 2009, 'A+'); + insert into takes values('14065', '867', '1', 'Fall', 2006, 'A+'); + insert into takes values('92417', '169', '2', 'Fall', 2002, 'C+'); + insert into takes values('65205', '843', '1', 'Fall', 2010, 'C-'); + insert into takes values('1533', '972', '1', 'Spring', 2009, 'C+'); + insert into takes values('40738', '735', '2', 'Spring', 2010, 'B '); + insert into takes values('21008', '604', '1', 'Spring', 2009, 'B-'); + insert into takes values('11855', '599', '1', 'Spring', 2003, 'C '); + insert into takes values('7854', '445', '1', 'Spring', 2001, 'C '); + insert into takes values('88389', '603', '1', 'Fall', 2003, 'C '); + insert into takes values('57156', '962', '1', 'Spring', 2008, 'A-'); + insert into takes values('38548', '313', '1', 'Fall', 2010, 'C+'); + insert into takes values('24630', '237', '2', 'Fall', 2009, 'C '); + insert into takes values('80420', '603', '1', 'Fall', 2003, 'C-'); + insert into takes values('59673', '991', '1', 'Spring', 2008, 'C '); + insert into takes values('70061', '137', '1', 'Spring', 2002, 'A-'); + insert into takes values('94311', '991', '1', 'Spring', 2008, 'B+'); + insert into takes values('86674', '959', '1', 'Fall', 2006, 'A-'); + insert into takes values('38288', '334', '1', 'Fall', 2009, 'C '); + insert into takes values('17924', '105', '2', 'Fall', 2002, 'A+'); + insert into takes values('37653', '270', '1', 'Spring', 2010, 'B-'); + insert into takes values('82591', '400', '1', 'Spring', 2007, 'A-'); + insert into takes values('94535', '408', '2', 'Spring', 2003, 'A-'); + insert into takes values('79911', '362', '1', 'Fall', 2005, 'A+'); + insert into takes values('52187', '802', '1', 'Spring', 2003, 'C '); + insert into takes values('858', '400', '2', 'Fall', 2003, 'C '); + insert into takes values('32385', '893', '1', 'Fall', 2007, 'B-'); + insert into takes values('82688', '612', '1', 'Fall', 2007, 'A '); + insert into takes values('11195', '591', '1', 'Spring', 2005, 'A-'); + insert into takes values('41280', '334', '1', 'Fall', 2009, 'B+'); + insert into takes values('95225', '239', '1', 'Fall', 2006, 'A+'); + insert into takes values('64642', '192', '1', 'Fall', 2002, 'B-'); + insert into takes values('36881', '468', '2', 'Fall', 2007, 'C+'); + insert into takes values('26494', '949', '1', 'Fall', 2007, 'A+'); + insert into takes values('53172', '527', '1', 'Fall', 2004, 'B-'); + insert into takes values('13365', '663', '1', 'Spring', 2005, 'B '); + insert into takes values('68330', '747', '1', 'Spring', 2004, 'C '); + insert into takes values('30474', '200', '2', 'Fall', 2002, 'C-'); + insert into takes values('38668', '747', '1', 'Spring', 2004, 'A '); + insert into takes values('13921', '200', '1', 'Spring', 2007, 'B '); + insert into takes values('14639', '802', '1', 'Spring', 2003, 'B '); + insert into takes values('70924', '400', '2', 'Fall', 2003, 'C-'); + insert into takes values('7973', '867', '1', 'Fall', 2006, 'B+'); + insert into takes values('24002', '237', '2', 'Fall', 2009, 'A-'); + insert into takes values('507', '735', '1', 'Spring', 2003, 'C '); + insert into takes values('65703', '401', '1', 'Fall', 2003, 'A+'); + insert into takes values('39704', '237', '1', 'Spring', 2008, 'C+'); + insert into takes values('43912', '239', '1', 'Fall', 2006, 'C-'); + insert into takes values('58846', '927', '1', 'Fall', 2002, 'A+'); + insert into takes values('49982', '599', '1', 'Spring', 2003, 'A+'); + insert into takes values('14563', '791', '1', 'Spring', 2006, 'B '); + insert into takes values('76246', '791', '1', 'Spring', 2006, 'B-'); + insert into takes values('79329', '362', '3', 'Spring', 2008, 'A '); + insert into takes values('7149', '105', '2', 'Fall', 2002, 'C '); + insert into takes values('65753', '192', '1', 'Fall', 2002, 'A+'); + insert into takes values('15283', '702', '1', 'Spring', 2001, 'A '); + insert into takes values('65715', '791', '1', 'Spring', 2006, 'B+'); + insert into takes values('27727', '793', '1', 'Spring', 2002, 'A '); + insert into takes values('72643', '493', '1', 'Spring', 2010, 'B-'); + insert into takes values('15249', '239', '1', 'Fall', 2006, 'C-'); + insert into takes values('68096', '192', '1', 'Fall', 2002, 'C '); + insert into takes values('39204', '258', '1', 'Fall', 2007, 'B+'); + insert into takes values('90234', '274', '1', 'Fall', 2002, 'A '); + insert into takes values('46260', '401', '1', 'Fall', 2003, 'B+'); + insert into takes values('41671', '258', '1', 'Fall', 2007, 'B-'); + insert into takes values('75547', '239', '1', 'Fall', 2006, 'A+'); + insert into takes values('40738', '313', '1', 'Fall', 2010, 'A+'); + insert into takes values('99754', '237', '2', 'Fall', 2009, 'B+'); + insert into takes values('43032', '793', '1', 'Spring', 2002, 'C+'); + insert into takes values('70384', '735', '2', 'Spring', 2010, 'A+'); + insert into takes values('88525', '496', '1', 'Fall', 2001, 'B+'); + insert into takes values('73807', '852', '1', 'Spring', 2008, 'B+'); + insert into takes values('36881', '791', '1', 'Spring', 2006, 'B+'); + insert into takes values('69758', '304', '1', 'Fall', 2009, 'B+'); + insert into takes values('72014', '760', '1', 'Spring', 2004, 'C-'); + insert into takes values('12666', '545', '1', 'Fall', 2001, 'A '); + insert into takes values('83728', '972', '1', 'Spring', 2009, 'C-'); + insert into takes values('4248', '527', '1', 'Fall', 2004, 'A+'); + insert into takes values('34195', '927', '1', 'Fall', 2002, 'B-'); + insert into takes values('61414', '629', '1', 'Spring', 2003, 'A '); + insert into takes values('86934', '960', '2', 'Fall', 2006, 'A '); + insert into takes values('94815', '852', '1', 'Spring', 2008, 'A+'); + insert into takes values('18809', '476', '1', 'Fall', 2010, 'A-'); + insert into takes values('46441', '599', '1', 'Spring', 2003, 'B+'); + insert into takes values('56124', '591', '1', 'Spring', 2005, 'B '); + insert into takes values('92864', '137', '1', 'Spring', 2002, 'C+'); + insert into takes values('35220', '867', '1', 'Fall', 2006, 'A '); + insert into takes values('29091', '604', '1', 'Spring', 2009, 'B+'); + insert into takes values('92864', '105', '2', 'Fall', 2002, 'A '); + insert into takes values('81150', '362', '2', 'Fall', 2006, 'C+'); + insert into takes values('77664', '237', '2', 'Fall', 2009, 'C+'); + insert into takes values('64249', '169', '2', 'Fall', 2002, 'C+'); + insert into takes values('75522', '927', '1', 'Fall', 2002, 'C-'); + insert into takes values('64550', '949', '1', 'Fall', 2007, 'B-'); + insert into takes values('66495', '415', '1', 'Fall', 2010, 'A+'); + insert into takes values('92849', '408', '2', 'Spring', 2003, 'B+'); + insert into takes values('19917', '345', '1', 'Spring', 2008, 'C '); + insert into takes values('25068', '867', '2', 'Fall', 2010, 'C-'); + insert into takes values('96988', '468', '1', 'Fall', 2005, 'C '); + insert into takes values('65753', '408', '1', 'Spring', 2007, 'B+'); + insert into takes values('99647', '612', '1', 'Fall', 2007, 'C '); + insert into takes values('66495', '270', '1', 'Spring', 2010, 'C '); + insert into takes values('99730', '137', '1', 'Spring', 2002, 'A '); + insert into takes values('82688', '663', '1', 'Spring', 2005, 'C+'); + insert into takes values('10814', '527', '1', 'Fall', 2004, 'C+'); + insert into takes values('38895', '349', '1', 'Spring', 2008, 'C+'); + insert into takes values('25077', '400', '1', 'Spring', 2007, 'A+'); + insert into takes values('15144', '642', '1', 'Fall', 2004, 'B+'); + insert into takes values('90132', '875', '1', 'Spring', 2005, 'A+'); + insert into takes values('41261', '808', '1', 'Fall', 2003, 'A '); + insert into takes values('58326', '867', '1', 'Fall', 2006, 'C '); + insert into takes values('58889', '105', '2', 'Fall', 2002, 'A-'); + insert into takes values('24746', '559', '1', 'Fall', 2002, 'B '); + insert into takes values('19321', '461', '1', 'Fall', 2002, 'A+'); + insert into takes values('57456', '468', '1', 'Fall', 2005, 'A '); + insert into takes values('27043', '443', '1', 'Spring', 2010, 'B '); + insert into takes values('98140', '949', '1', 'Fall', 2007, 'A '); + insert into takes values('92693', '274', '1', 'Fall', 2002, 'B-'); + insert into takes values('163', '169', '2', 'Fall', 2002, 'B+'); + insert into takes values('15578', '349', '1', 'Spring', 2008, 'A '); + insert into takes values('16969', '702', '1', 'Spring', 2001, 'B+'); + insert into takes values('68096', '802', '1', 'Spring', 2003, 'B+'); + insert into takes values('5250', '927', '1', 'Fall', 2002, 'A+'); + insert into takes values('78454', '270', '1', 'Spring', 2010, 'A+'); + insert into takes values('82083', '457', '1', 'Spring', 2001, 'B-'); + insert into takes values('61414', '362', '1', 'Fall', 2005, 'B '); + insert into takes values('64155', '426', '1', 'Spring', 2006, 'C '); + insert into takes values('95225', '445', '1', 'Spring', 2001, 'C-'); + insert into takes values('16523', '239', '1', 'Fall', 2006, 'B-'); + insert into takes values('61920', '338', '1', 'Spring', 2007, 'C '); + insert into takes values('67017', '493', '1', 'Spring', 2010, 'C '); + insert into takes values('85602', '972', '1', 'Spring', 2009, 'B-'); + insert into takes values('62429', '421', '1', 'Fall', 2004, 'B '); + insert into takes values('43348', '545', '1', 'Fall', 2001, 'A+'); + insert into takes values('46337', '591', '1', 'Spring', 2005, 'C+'); + insert into takes values('28989', '338', '2', 'Spring', 2006, 'A '); + insert into takes values('28994', '401', '1', 'Fall', 2003, 'A-'); + insert into takes values('25068', '137', '1', 'Spring', 2002, 'A '); + insert into takes values('35462', '242', '1', 'Fall', 2009, 'C+'); + insert into takes values('59553', '200', '1', 'Spring', 2007, 'C '); + insert into takes values('61444', '795', '1', 'Spring', 2004, 'A '); + insert into takes values('53805', '457', '1', 'Spring', 2001, 'B+'); + insert into takes values('26147', '313', '1', 'Fall', 2010, 'B '); + insert into takes values('28019', '864', '1', 'Spring', 2006, 'C-'); + insert into takes values('21395', '629', '1', 'Spring', 2003, 'A '); + insert into takes values('89196', '468', '1', 'Fall', 2005, 'C-'); + insert into takes values('90181', '591', '1', 'Spring', 2005, 'A '); + insert into takes values('5399', '581', '1', 'Spring', 2005, 'A '); + insert into takes values('37734', '959', '1', 'Fall', 2006, 'C+'); + insert into takes values('40457', '270', '1', 'Spring', 2010, 'B-'); + insert into takes values('8957', '747', '1', 'Spring', 2004, 'C+'); + insert into takes values('73908', '927', '1', 'Fall', 2002, 'A-'); + insert into takes values('5243', '239', '1', 'Fall', 2006, 'C '); + insert into takes values('91091', '400', '1', 'Spring', 2007, 'C '); + insert into takes values('34158', '169', '2', 'Fall', 2002, 'C '); + insert into takes values('17600', '949', '1', 'Fall', 2007, 'A+'); + insert into takes values('33791', '200', '2', 'Fall', 2002, 'B+'); + insert into takes values('93061', '237', '1', 'Spring', 2008, 'A+'); + insert into takes values('28361', '400', '2', 'Fall', 2003, 'A '); + insert into takes values('89140', '482', '1', 'Fall', 2005, 'C '); + insert into takes values('50267', '366', '1', 'Fall', 2005, 'C '); + insert into takes values('50873', '696', '1', 'Spring', 2002, 'B '); + insert into takes values('25525', '400', '2', 'Fall', 2003, 'A-'); + insert into takes values('51698', '808', '1', 'Fall', 2003, 'B '); + insert into takes values('16075', '626', '1', 'Fall', 2006, 'A+'); + insert into takes values('6195', '476', '1', 'Fall', 2010, 'A '); + insert into takes values('18740', '239', '1', 'Fall', 2006, 'C '); + insert into takes values('5393', '476', '1', 'Fall', 2010, 'B+'); + insert into takes values('60688', '362', '1', 'Fall', 2005, 'A+'); + insert into takes values('78481', '867', '2', 'Fall', 2010, 'B '); + insert into takes values('52371', '493', '1', 'Spring', 2010, 'B-'); + insert into takes values('14214', '760', '1', 'Spring', 2004, 'B+'); + insert into takes values('9514', '991', '1', 'Spring', 2008, 'A-'); + insert into takes values('86661', '642', '1', 'Fall', 2004, 'A '); + insert into takes values('7020', '760', '1', 'Spring', 2004, 'C '); + insert into takes values('34170', '457', '1', 'Spring', 2001, 'B '); + insert into takes values('58469', '239', '1', 'Fall', 2006, 'C '); + insert into takes values('64222', '959', '1', 'Fall', 2006, 'C '); + insert into takes values('92442', '867', '2', 'Fall', 2010, 'B+'); + insert into takes values('53485', '591', '1', 'Spring', 2005, 'C-'); + insert into takes values('69471', '612', '1', 'Fall', 2007, 'B '); + insert into takes values('57985', '137', '1', 'Spring', 2002, 'C '); + insert into takes values('88287', '476', '1', 'Fall', 2010, 'B-'); + insert into takes values('45570', '545', '1', 'Fall', 2001, 'B+'); + insert into takes values('8912', '559', '1', 'Fall', 2002, 'C-'); + insert into takes values('43912', '457', '1', 'Spring', 2001, 'A+'); + insert into takes values('24796', '362', '1', 'Fall', 2005, 'A '); + insert into takes values('57511', '376', '1', 'Fall', 2006, 'A+'); + insert into takes values('10834', '581', '1', 'Spring', 2005, 'B '); + insert into takes values('10727', '802', '1', 'Spring', 2003, 'C-'); + insert into takes values('35462', '415', '1', 'Fall', 2010, 'A '); + insert into takes values('89140', '237', '1', 'Spring', 2008, 'A '); + insert into takes values('28989', '599', '1', 'Spring', 2003, 'A+'); + insert into takes values('2501', '334', '1', 'Fall', 2009, 'B-'); + insert into takes values('54875', '489', '1', 'Fall', 2007, 'C '); + insert into takes values('31337', '496', '1', 'Fall', 2001, 'A '); + insert into takes values('47630', '376', '1', 'Fall', 2006, 'B '); + insert into takes values('1827', '105', '1', 'Fall', 2009, 'B-'); + insert into takes values('83728', '974', '1', 'Fall', 2003, 'B '); + insert into takes values('16133', '468', '2', 'Fall', 2007, 'A-'); + insert into takes values('19220', '679', '1', 'Spring', 2010, 'A+'); + insert into takes values('16969', '362', '1', 'Fall', 2005, 'A '); + insert into takes values('59290', '362', '2', 'Fall', 2006, 'C-'); + insert into takes values('20180', '631', '1', 'Spring', 2007, 'B+'); + insert into takes values('46970', '960', '2', 'Fall', 2006, 'C+'); + insert into takes values('2201', '991', '1', 'Spring', 2008, 'B+'); + insert into takes values('11262', '237', '2', 'Fall', 2009, 'B-'); + insert into takes values('18675', '349', '1', 'Spring', 2008, 'B '); + insert into takes values('83686', '105', '1', 'Fall', 2009, 'C-'); + insert into takes values('43505', '793', '1', 'Spring', 2002, 'A+'); + insert into takes values('61737', '893', '1', 'Fall', 2007, 'A+'); + insert into takes values('41345', '581', '1', 'Spring', 2005, 'B-'); + insert into takes values('54728', '338', '1', 'Spring', 2007, 'A+'); + insert into takes values('61414', '875', '1', 'Spring', 2005, 'C-'); + insert into takes values('55859', '493', '1', 'Spring', 2010, 'A-'); + insert into takes values('85746', '893', '1', 'Fall', 2007, 'B-'); + insert into takes values('97953', '791', '1', 'Spring', 2006, 'A-'); + insert into takes values('19321', '476', '1', 'Fall', 2010, 'A+'); + insert into takes values('7620', '362', '2', 'Fall', 2006, 'C+'); + insert into takes values('71085', '802', '1', 'Spring', 2003, 'C-'); + insert into takes values('21692', '482', '1', 'Fall', 2005, 'A '); + insert into takes values('93491', '237', '2', 'Fall', 2009, 'A '); + insert into takes values('23794', '867', '2', 'Fall', 2010, 'C+'); + insert into takes values('81028', '875', '1', 'Spring', 2005, 'B+'); + insert into takes values('22260', '527', '1', 'Fall', 2004, 'B-'); + insert into takes values('21009', '867', '1', 'Fall', 2006, 'C-'); + insert into takes values('64259', '158', '2', 'Spring', 2008, 'C+'); + insert into takes values('36384', '349', '1', 'Spring', 2008, 'C '); + insert into takes values('43505', '960', '2', 'Fall', 2006, 'B-'); + insert into takes values('68010', '461', '1', 'Fall', 2002, 'C '); + insert into takes values('34392', '334', '1', 'Fall', 2009, 'A+'); + insert into takes values('34158', '400', '2', 'Fall', 2003, 'B '); + insert into takes values('40897', '493', '1', 'Spring', 2010, 'C+'); + insert into takes values('74840', '527', '1', 'Fall', 2004, 'C-'); + insert into takes values('34331', '875', '1', 'Spring', 2005, 'B+'); + insert into takes values('76911', '362', '2', 'Fall', 2006, 'B-'); + insert into takes values('4582', '704', '1', 'Spring', 2008, 'A '); + insert into takes values('79772', '696', '1', 'Spring', 2002, 'A '); + insert into takes values('67660', '694', '1', 'Fall', 2002, 'C+'); + insert into takes values('67425', '629', '1', 'Spring', 2003, 'A '); + insert into takes values('99977', '960', '1', 'Fall', 2009, 'A '); + insert into takes values('76895', '443', '1', 'Spring', 2010, 'A '); + insert into takes values('8843', '927', '1', 'Fall', 2002, 'A-'); + insert into takes values('13741', '791', '1', 'Spring', 2006, 'B '); + insert into takes values('99719', '338', '1', 'Spring', 2007, 'B+'); + insert into takes values('69632', '599', '1', 'Spring', 2003, 'A '); + insert into takes values('20378', '694', '1', 'Fall', 2002, 'C-'); + insert into takes values('1402', '476', '1', 'Fall', 2010, 'B '); + insert into takes values('82039', '376', '1', 'Fall', 2006, 'C-'); + insert into takes values('78756', '426', '1', 'Spring', 2006, 'B+'); + insert into takes values('9256', '362', '1', 'Fall', 2005, 'C-'); + insert into takes values('8860', '679', '1', 'Spring', 2010, 'B+'); + insert into takes values('15487', '400', '2', 'Fall', 2003, 'B-'); + insert into takes values('58355', '679', '1', 'Spring', 2010, 'C '); + insert into takes values('39927', '571', '1', 'Spring', 2004, 'C+'); + insert into takes values('96206', '972', '1', 'Spring', 2009, 'A '); + insert into takes values('66279', '747', '1', 'Spring', 2004, 'B '); + insert into takes values('92464', '493', '1', 'Spring', 2010, 'C '); + insert into takes values('51008', '843', '1', 'Fall', 2010, 'A+'); + insert into takes values('9114', '239', '1', 'Fall', 2006, 'B+'); + insert into takes values('25552', '237', '1', 'Spring', 2008, 'C-'); + insert into takes values('97590', '893', '1', 'Fall', 2007, 'B+'); + insert into takes values('83511', '258', '1', 'Fall', 2007, 'B '); + insert into takes values('62487', '735', '1', 'Spring', 2003, 'B-'); + insert into takes values('67660', '960', '1', 'Fall', 2009, 'A-'); + insert into takes values('41450', '376', '1', 'Fall', 2006, 'A '); + insert into takes values('15144', '426', '1', 'Spring', 2006, 'C-'); + insert into takes values('5824', '468', '1', 'Fall', 2005, 'A-'); + insert into takes values('51549', '415', '1', 'Fall', 2010, 'C '); + insert into takes values('27430', '735', '1', 'Spring', 2003, 'B-'); + insert into takes values('30334', '237', '1', 'Spring', 2008, 'A '); + insert into takes values('97953', '468', '1', 'Fall', 2005, 'A+'); + insert into takes values('25528', '461', '1', 'Fall', 2002, 'C+'); + insert into takes values('57055', '366', '1', 'Fall', 2005, 'C '); + insert into takes values('68395', '702', '1', 'Spring', 2001, 'B+'); + insert into takes values('83511', '962', '1', 'Spring', 2008, 'C '); + insert into takes values('27044', '242', '1', 'Fall', 2009, 'B '); + insert into takes values('91799', '629', '1', 'Spring', 2003, 'A-'); + insert into takes values('32483', '795', '1', 'Spring', 2004, 'B '); + insert into takes values('79772', '875', '1', 'Spring', 2005, 'B-'); + insert into takes values('4034', '843', '1', 'Fall', 2010, 'A+'); + insert into takes values('78314', '270', '1', 'Spring', 2010, 'A+'); + insert into takes values('9514', '468', '2', 'Fall', 2007, 'C-'); + insert into takes values('42991', '679', '1', 'Spring', 2010, 'B-'); + insert into takes values('11855', '443', '2', 'Spring', 2002, 'A '); + insert into takes values('32368', '443', '1', 'Spring', 2010, 'A+'); + insert into takes values('88993', '408', '2', 'Spring', 2003, 'C-'); + insert into takes values('22467', '421', '1', 'Fall', 2004, 'B+'); + insert into takes values('86375', '626', '1', 'Fall', 2006, 'C+'); + insert into takes values('25068', '158', '2', 'Spring', 2008, 'C '); + insert into takes values('86707', '974', '1', 'Fall', 2003, 'A+'); + insert into takes values('64082', '408', '1', 'Spring', 2007, 'C '); + insert into takes values('27556', '808', '1', 'Fall', 2003, 'B-'); + insert into takes values('16753', '972', '1', 'Spring', 2009, 'C-'); + insert into takes values('24374', '489', '1', 'Fall', 2007, 'A+'); + insert into takes values('92385', '476', '1', 'Fall', 2010, 'B+'); + insert into takes values('57156', '559', '1', 'Fall', 2002, 'B '); + insert into takes values('81789', '679', '1', 'Spring', 2010, 'C+'); + insert into takes values('88525', '696', '1', 'Spring', 2002, 'B '); + insert into takes values('82697', '362', '1', 'Fall', 2005, 'B+'); + insert into takes values('31079', '748', '1', 'Fall', 2003, 'B+'); + insert into takes values('19603', '366', '1', 'Fall', 2005, 'C+'); + insert into takes values('17339', '200', '2', 'Fall', 2002, 'C-'); + insert into takes values('4435', '545', '1', 'Fall', 2001, 'A-'); + insert into takes values('71287', '486', '1', 'Fall', 2009, 'B-'); + insert into takes values('25780', '105', '1', 'Fall', 2009, 'C+'); + insert into takes values('16907', '599', '1', 'Spring', 2003, 'A '); + insert into takes values('20974', '362', '3', 'Spring', 2008, 'C-'); + insert into takes values('55859', '349', '1', 'Spring', 2008, 'B-'); + insert into takes values('43854', '237', '1', 'Spring', 2008, 'B-'); + insert into takes values('35685', '991', '1', 'Spring', 2008, 'B-'); + insert into takes values('63560', '972', '1', 'Spring', 2009, 'B '); + insert into takes values('47379', '581', '1', 'Spring', 2005, 'B-'); + insert into takes values('31266', '158', '2', 'Spring', 2008, 'A+'); + insert into takes values('89551', '631', '1', 'Spring', 2007, 'C+'); + insert into takes values('9114', '962', '1', 'Spring', 2008, 'A+'); + insert into takes values('93171', '408', '2', 'Spring', 2003, 'B+'); + insert into takes values('95046', '972', '1', 'Spring', 2009, 'B-'); + insert into takes values('1110', '313', '1', 'Fall', 2010, 'A-'); + insert into takes values('2970', '692', '1', 'Spring', 2010, 'A-'); + insert into takes values('89106', '960', '2', 'Fall', 2006, 'B+'); + insert into takes values('31690', '626', '1', 'Fall', 2006, 'B-'); + insert into takes values('7732', '352', '1', 'Spring', 2006, 'C '); + insert into takes values('33791', '352', '1', 'Spring', 2006, 'A-'); + insert into takes values('74070', '421', '1', 'Fall', 2004, 'A-'); + insert into takes values('27687', '169', '1', 'Spring', 2007, 'A '); + insert into takes values('50206', '960', '1', 'Fall', 2009, 'B+'); + insert into takes values('58326', '408', '2', 'Spring', 2003, 'B-'); + insert into takes values('54622', '735', '2', 'Spring', 2010, 'C '); + insert into takes values('15030', '591', '1', 'Spring', 2005, 'C+'); + insert into takes values('68096', '476', '1', 'Fall', 2010, 'A-'); + insert into takes values('47627', '629', '1', 'Spring', 2003, 'C+'); + insert into takes values('85614', '694', '1', 'Fall', 2002, 'B '); + insert into takes values('87439', '642', '1', 'Fall', 2004, 'C-'); + insert into takes values('25780', '443', '2', 'Spring', 2002, 'A-'); + insert into takes values('65443', '158', '1', 'Fall', 2008, 'B '); + insert into takes values('49611', '795', '1', 'Spring', 2004, 'A+'); + insert into takes values('336', '694', '1', 'Fall', 2002, 'C-'); + insert into takes values('71287', '169', '1', 'Spring', 2007, 'C+'); + insert into takes values('50719', '258', '1', 'Fall', 2007, 'B '); + insert into takes values('7035', '345', '1', 'Spring', 2008, 'C+'); + insert into takes values('92849', '415', '1', 'Fall', 2010, 'C+'); + insert into takes values('42991', '169', '1', 'Spring', 2007, 'C '); + insert into takes values('50719', '612', '1', 'Fall', 2007, 'C '); + insert into takes values('53152', '802', '1', 'Spring', 2003, 'C '); + insert into takes values('40481', '349', '1', 'Spring', 2008, 'B-'); + insert into takes values('96741', '760', '1', 'Spring', 2004, 'C-'); + insert into takes values('57123', '489', '1', 'Fall', 2007, 'C-'); + insert into takes values('15613', '237', '1', 'Spring', 2008, 'A-'); + insert into takes values('85445', '362', '3', 'Spring', 2008, 'B-'); + insert into takes values('19245', '603', '1', 'Fall', 2003, 'A '); + insert into takes values('81785', '959', '1', 'Fall', 2006, 'B-'); + insert into takes values('48901', '239', '1', 'Fall', 2006, 'A '); + insert into takes values('83462', '468', '2', 'Fall', 2007, 'B-'); + insert into takes values('70564', '960', '1', 'Fall', 2009, 'B+'); + insert into takes values('20002', '972', '1', 'Spring', 2009, 'A-'); + insert into takes values('57941', '704', '1', 'Spring', 2008, 'C+'); + insert into takes values('11419', '158', '1', 'Fall', 2008, 'B '); + insert into takes values('32376', '679', '1', 'Spring', 2010, 'C '); + insert into takes values('19861', '927', '1', 'Fall', 2002, 'C+'); + insert into takes values('29514', '258', '1', 'Fall', 2007, 'B-'); + insert into takes values('67657', '408', '2', 'Spring', 2003, 'A-'); + insert into takes values('88045', '696', '1', 'Spring', 2002, 'B-'); + insert into takes values('88993', '468', '2', 'Fall', 2007, 'B+'); + insert into takes values('32886', '493', '1', 'Spring', 2010, 'A+'); + insert into takes values('23457', '304', '1', 'Fall', 2009, 'A '); + insert into takes values('22226', '599', '1', 'Spring', 2003, 'A '); + insert into takes values('98619', '105', '1', 'Fall', 2009, 'C '); + insert into takes values('65208', '960', '2', 'Fall', 2006, 'A+'); + insert into takes values('99348', '457', '1', 'Spring', 2001, 'C-'); + insert into takes values('64164', '239', '1', 'Fall', 2006, 'C '); + insert into takes values('37339', '696', '1', 'Spring', 2002, 'B '); + insert into takes values('76759', '962', '1', 'Spring', 2008, 'A-'); + insert into takes values('73492', '972', '1', 'Spring', 2009, 'C+'); + insert into takes values('75252', '349', '1', 'Spring', 2008, 'C '); + insert into takes values('85754', '338', '1', 'Spring', 2007, 'B-'); + insert into takes values('57985', '626', '1', 'Fall', 2006, 'B+'); + insert into takes values('58307', '962', '1', 'Spring', 2008, 'A+'); + insert into takes values('72669', '366', '1', 'Fall', 2005, 'B-'); + insert into takes values('59539', '158', '2', 'Spring', 2008, 'A+'); + insert into takes values('463', '793', '1', 'Spring', 2002, 'A '); + insert into takes values('39514', '875', '1', 'Spring', 2005, 'B+'); + insert into takes values('61354', '457', '1', 'Spring', 2001, 'A+'); + insert into takes values('16528', '527', '1', 'Fall', 2004, 'C-'); + insert into takes values('28352', '604', '1', 'Spring', 2009, 'B '); + insert into takes values('45300', '747', '1', 'Spring', 2004, 'A-'); + insert into takes values('99760', '679', '1', 'Spring', 2010, 'A '); + insert into takes values('6304', '169', '2', 'Fall', 2002, 'C+'); + insert into takes values('14499', '362', '3', 'Spring', 2008, 'A '); + insert into takes values('78767', '962', '1', 'Spring', 2008, 'C-'); + insert into takes values('50013', '735', '2', 'Spring', 2010, 'C '); + insert into takes values('5393', '991', '1', 'Spring', 2008, 'C '); + insert into takes values('12666', '313', '1', 'Fall', 2010, 'B-'); + insert into takes values('59848', '105', '2', 'Fall', 2002, 'B-'); + insert into takes values('33791', '169', '2', 'Fall', 2002, 'B-'); + insert into takes values('89551', '972', '1', 'Spring', 2009, 'B-'); + insert into takes values('5243', '972', '1', 'Spring', 2009, 'A-'); + insert into takes values('25187', '631', '1', 'Spring', 2007, 'A '); + insert into takes values('99451', '461', '1', 'Fall', 2002, 'C-'); + insert into takes values('35357', '663', '1', 'Spring', 2005, 'A+'); + insert into takes values('23449', '400', '1', 'Spring', 2007, 'A '); + insert into takes values('62549', '158', '2', 'Spring', 2008, 'C+'); + insert into takes values('97953', '561', '1', 'Fall', 2006, 'C+'); + insert into takes values('36402', '604', '1', 'Spring', 2009, 'A+'); + insert into takes values('34502', '242', '1', 'Fall', 2009, 'C+'); + insert into takes values('29462', '421', '1', 'Fall', 2004, 'B '); + insert into takes values('99268', '476', '1', 'Fall', 2010, 'A '); + insert into takes values('68554', '239', '1', 'Fall', 2006, 'C '); + insert into takes values('10693', '642', '1', 'Fall', 2004, 'B-'); + insert into takes values('57780', '408', '2', 'Spring', 2003, 'C+'); + insert into takes values('40178', '362', '1', 'Fall', 2005, 'B-'); + insert into takes values('1922', '972', '1', 'Spring', 2009, 'A+'); + insert into takes values('93508', '482', '1', 'Fall', 2005, 'C+'); + insert into takes values('85602', '843', '1', 'Fall', 2010, 'A+'); + insert into takes values('85575', '692', '1', 'Spring', 2010, 'C '); + insert into takes values('90814', '702', '1', 'Spring', 2001, 'A+'); + insert into takes values('68999', '631', '1', 'Spring', 2007, 'A '); + insert into takes values('64259', '482', '1', 'Fall', 2005, 'A '); + insert into takes values('73165', '476', '1', 'Fall', 2010, 'A+'); + insert into takes values('8251', '421', '1', 'Fall', 2004, 'A-'); + insert into takes values('18859', '960', '1', 'Fall', 2009, 'A '); + insert into takes values('77364', '704', '1', 'Spring', 2008, 'A '); + insert into takes values('1018', '192', '1', 'Fall', 2002, 'B '); + insert into takes values('64192', '334', '1', 'Fall', 2009, 'B '); + insert into takes values('44551', '468', '2', 'Fall', 2007, 'B-'); + insert into takes values('987', '400', '1', 'Spring', 2007, 'A-'); + insert into takes values('66269', '893', '1', 'Fall', 2007, 'B-'); + insert into takes values('37449', '864', '1', 'Spring', 2006, 'B+'); + insert into takes values('85505', '334', '1', 'Fall', 2009, 'A+'); + insert into takes values('64039', '486', '1', 'Fall', 2009, 'B '); + insert into takes values('77130', '791', '1', 'Spring', 2006, 'B '); + insert into takes values('13826', '960', '1', 'Fall', 2009, 'B+'); + insert into takes values('92949', '274', '1', 'Fall', 2002, 'A+'); + insert into takes values('5617', '599', '1', 'Spring', 2003, 'A+'); + insert into takes values('89312', '735', '2', 'Spring', 2010, 'A '); + insert into takes values('36303', '561', '1', 'Fall', 2006, 'C-'); + insert into takes values('13921', '663', '1', 'Spring', 2005, 'C '); + insert into takes values('98563', '349', '1', 'Spring', 2008, 'C+'); + insert into takes values('70828', '867', '2', 'Fall', 2010, 'A-'); + insert into takes values('73908', '702', '1', 'Spring', 2001, 'B '); + insert into takes values('69581', '242', '1', 'Fall', 2009, 'A+'); + insert into takes values('68396', '599', '1', 'Spring', 2003, 'B+'); + insert into takes values('13081', '352', '1', 'Spring', 2006, 'B-'); + insert into takes values('90181', '349', '1', 'Spring', 2008, 'A-'); + insert into takes values('51975', '362', '1', 'Fall', 2005, 'A '); + insert into takes values('8343', '927', '1', 'Fall', 2002, 'A '); + insert into takes values('53048', '629', '1', 'Spring', 2003, 'C+'); + insert into takes values('58081', '137', '1', 'Spring', 2002, 'A '); + insert into takes values('36102', '852', '1', 'Spring', 2008, 'B-'); + insert into takes values('21337', '192', '1', 'Fall', 2002, 'B+'); + insert into takes values('39394', '137', '1', 'Spring', 2002, 'A+'); + insert into takes values('95175', '960', '2', 'Fall', 2006, 'A-'); + insert into takes values('77580', '795', '1', 'Spring', 2004, 'A+'); + insert into takes values('51549', '443', '1', 'Spring', 2010, 'C-'); + insert into takes values('52523', '974', '1', 'Fall', 2003, 'B '); + insert into takes values('84704', '603', '1', 'Fall', 2003, 'C-'); + insert into takes values('56276', '599', '1', 'Spring', 2003, 'C '); + insert into takes values('75231', '748', '1', 'Fall', 2003, 'B+'); + insert into takes values('78758', '974', '1', 'Fall', 2003, 'B-'); + insert into takes values('92274', '362', '1', 'Fall', 2005, 'A+'); + insert into takes values('37103', '338', '1', 'Spring', 2007, 'A+'); + insert into takes values('5617', '959', '1', 'Fall', 2006, 'B-'); + insert into takes values('24796', '802', '1', 'Spring', 2003, 'B '); + insert into takes values('57538', '457', '1', 'Spring', 2001, 'A '); + insert into takes values('25331', '581', '1', 'Spring', 2005, 'B '); + insert into takes values('74460', '366', '1', 'Fall', 2005, 'B-'); + insert into takes values('34542', '338', '1', 'Spring', 2007, 'C-'); + insert into takes values('18367', '694', '1', 'Fall', 2002, 'A '); + insert into takes values('75772', '468', '2', 'Fall', 2007, 'B '); + insert into takes values('8140', '313', '1', 'Fall', 2010, 'B-'); + insert into takes values('37350', '960', '2', 'Fall', 2006, 'C '); + insert into takes values('12216', '793', '1', 'Spring', 2002, 'A+'); + insert into takes values('50537', '496', '1', 'Fall', 2001, 'C+'); + insert into takes values('4383', '468', '1', 'Fall', 2005, 'B '); + insert into takes values('39241', '345', '1', 'Spring', 2008, 'B+'); + insert into takes values('91799', '421', '1', 'Fall', 2004, 'B+'); + insert into takes values('69850', '808', '1', 'Fall', 2003, 'C-'); + insert into takes values('75794', '169', '2', 'Fall', 2002, 'C '); + insert into takes values('93366', '581', '1', 'Spring', 2005, 'B-'); + insert into takes values('70384', '974', '1', 'Fall', 2003, 'A-'); + insert into takes values('22396', '313', '1', 'Fall', 2010, 'A '); + insert into takes values('98690', '237', '1', 'Spring', 2008, 'A-'); + insert into takes values('86969', '400', '1', 'Spring', 2007, 'B-'); + insert into takes values('94311', '334', '1', 'Fall', 2009, 'B+'); + insert into takes values('95205', '991', '1', 'Spring', 2008, 'A '); + insert into takes values('20985', '960', '1', 'Fall', 2009, 'A '); + insert into takes values('98690', '408', '1', 'Spring', 2007, 'B-'); + insert into takes values('36657', '408', '2', 'Spring', 2003, 'C '); + insert into takes values('64121', '735', '2', 'Spring', 2010, 'B-'); + insert into takes values('31476', '760', '1', 'Spring', 2004, 'C '); + insert into takes values('45720', '192', '1', 'Fall', 2002, 'C '); + insert into takes values('58846', '443', '1', 'Spring', 2010, 'B-'); + insert into takes values('64140', '991', '1', 'Spring', 2008, 'A+'); + insert into takes values('67660', '486', '1', 'Fall', 2009, 'C-'); + insert into takes values('56598', '864', '1', 'Spring', 2006, 'C+'); + insert into takes values('59908', '604', '1', 'Spring', 2009, 'A '); + insert into takes values('34018', '426', '1', 'Spring', 2006, 'A-'); + insert into takes values('4015', '629', '1', 'Spring', 2003, 'A-'); + insert into takes values('88418', '362', '2', 'Fall', 2006, 'B-'); + insert into takes values('35257', '791', '1', 'Spring', 2006, 'B-'); + insert into takes values('92040', '571', '1', 'Spring', 2004, 'B '); + insert into takes values('73908', '258', '1', 'Fall', 2007, 'C-'); + insert into takes values('84792', '105', '2', 'Fall', 2002, 'C-'); + insert into takes values('66090', '642', '1', 'Fall', 2004, 'C '); + insert into takes values('29399', '960', '2', 'Fall', 2006, 'A '); + insert into takes values('87048', '237', '2', 'Fall', 2009, 'C '); + insert into takes values('86833', '692', '1', 'Spring', 2010, 'B-'); + insert into takes values('16480', '599', '1', 'Spring', 2003, 'B+'); + insert into takes values('40992', '795', '1', 'Spring', 2004, 'B+'); + insert into takes values('95859', '408', '1', 'Spring', 2007, 'C+'); + insert into takes values('75362', '304', '1', 'Fall', 2009, 'A-'); + insert into takes values('48471', '400', '1', 'Spring', 2007, 'A '); + insert into takes values('75299', '158', '1', 'Fall', 2008, 'C '); + insert into takes values('22142', '200', '2', 'Fall', 2002, 'B-'); + insert into takes values('54620', '604', '1', 'Spring', 2009, 'A+'); + insert into takes values('34322', '747', '1', 'Spring', 2004, 'C-'); + insert into takes values('21086', '426', '1', 'Spring', 2006, 'C+'); + insert into takes values('27919', '629', '1', 'Spring', 2003, 'B '); + insert into takes values('80742', '169', '2', 'Fall', 2002, 'C+'); + insert into takes values('56882', '802', '1', 'Spring', 2003, 'A '); + insert into takes values('35362', '274', '1', 'Fall', 2002, 'B+'); + insert into takes values('45720', '362', '1', 'Fall', 2005, 'C '); + insert into takes values('36494', '581', '1', 'Spring', 2005, 'C-'); + insert into takes values('73807', '319', '1', 'Spring', 2003, 'B '); + insert into takes values('52741', '408', '2', 'Spring', 2003, 'A-'); + insert into takes values('44304', '200', '2', 'Fall', 2002, 'C '); + insert into takes values('96615', '864', '1', 'Spring', 2006, 'A '); + insert into takes values('17339', '408', '1', 'Spring', 2007, 'B-'); + insert into takes values('33349', '631', '1', 'Spring', 2007, 'C-'); + insert into takes values('36494', '626', '1', 'Fall', 2006, 'A+'); + insert into takes values('36384', '362', '1', 'Fall', 2005, 'B-'); + insert into takes values('23457', '960', '1', 'Fall', 2009, 'A '); + insert into takes values('5703', '476', '1', 'Fall', 2010, 'A '); + insert into takes values('2629', '158', '1', 'Fall', 2008, 'A '); + insert into takes values('61354', '604', '1', 'Spring', 2009, 'B-'); + insert into takes values('90082', '802', '1', 'Spring', 2003, 'B '); + insert into takes values('88525', '158', '1', 'Fall', 2008, 'B+'); + insert into takes values('65715', '735', '2', 'Spring', 2010, 'C-'); + insert into takes values('14639', '334', '1', 'Fall', 2009, 'B+'); + insert into takes values('99694', '808', '1', 'Fall', 2003, 'C+'); + insert into takes values('17339', '137', '1', 'Spring', 2002, 'B+'); + insert into takes values('66753', '443', '1', 'Spring', 2010, 'B-'); + insert into takes values('31101', '443', '1', 'Spring', 2010, 'C+'); + insert into takes values('29959', '927', '1', 'Fall', 2002, 'C-'); + insert into takes values('827', '581', '1', 'Spring', 2005, 'A-'); + insert into takes values('54296', '802', '1', 'Spring', 2003, 'C-'); + insert into takes values('14639', '626', '1', 'Fall', 2006, 'B-'); + insert into takes values('31341', '604', '1', 'Spring', 2009, 'C-'); + insert into takes values('17665', '200', '1', 'Spring', 2007, 'C+'); + insert into takes values('56057', '400', '1', 'Spring', 2007, 'C '); + insert into takes values('22345', '612', '1', 'Fall', 2007, 'B-'); + insert into takes values('83022', '704', '1', 'Spring', 2008, 'A '); + insert into takes values('37521', '974', '1', 'Fall', 2003, 'B '); + insert into takes values('62795', '599', '1', 'Spring', 2003, 'A '); + insert into takes values('68395', '696', '1', 'Spring', 2002, 'A+'); + insert into takes values('75046', '591', '1', 'Spring', 2005, 'C+'); + insert into takes values('46980', '489', '1', 'Fall', 2007, 'C '); + insert into takes values('41741', '679', '1', 'Spring', 2010, 'B+'); + insert into takes values('83573', '642', '1', 'Fall', 2004, 'C '); + insert into takes values('87044', '313', '1', 'Fall', 2010, 'A '); + insert into takes values('45720', '795', '1', 'Spring', 2004, 'A-'); + insert into takes values('66356', '696', '1', 'Spring', 2002, 'C-'); + insert into takes values('7498', '852', '1', 'Spring', 2008, 'B+'); + insert into takes values('93043', '962', '1', 'Spring', 2008, 'B+'); + insert into takes values('99553', '629', '1', 'Spring', 2003, 'A-'); + insert into takes values('93366', '362', '1', 'Fall', 2005, 'A-'); + insert into takes values('7732', '400', '1', 'Spring', 2007, 'B '); + insert into takes values('89000', '545', '1', 'Fall', 2001, 'C '); + insert into takes values('43123', '443', '1', 'Spring', 2010, 'C-'); + insert into takes values('5898', '642', '1', 'Fall', 2004, 'C+'); + insert into takes values('52157', '338', '1', 'Spring', 2007, 'A-'); + insert into takes values('2423', '476', '1', 'Fall', 2010, 'B-'); + insert into takes values('98047', '158', '2', 'Spring', 2008, 'A-'); + insert into takes values('43989', '400', '2', 'Fall', 2003, 'B '); + insert into takes values('14094', '867', '1', 'Fall', 2006, 'B '); + insert into takes values('17424', '704', '1', 'Spring', 2008, 'B+'); + insert into takes values('16885', '200', '2', 'Fall', 2002, 'A+'); + insert into takes values('73394', '334', '1', 'Fall', 2009, 'A-'); + insert into takes values('22226', '959', '1', 'Fall', 2006, 'A-'); + insert into takes values('19917', '791', '1', 'Spring', 2006, 'B-'); + insert into takes values('75547', '561', '1', 'Fall', 2006, 'B+'); + insert into takes values('34542', '949', '1', 'Fall', 2007, 'B-'); + insert into takes values('18675', '702', '1', 'Spring', 2001, 'B+'); + insert into takes values('68712', '748', '1', 'Fall', 2003, 'C+'); + insert into takes values('11419', '237', '1', 'Spring', 2008, 'B-'); + insert into takes values('1827', '468', '2', 'Fall', 2007, 'B+'); + insert into takes values('37653', '642', '1', 'Fall', 2004, 'C '); + insert into takes values('1812', '349', '1', 'Spring', 2008, 'B-'); + insert into takes values('40080', '702', '1', 'Spring', 2001, 'B+'); + insert into takes values('61998', '612', '1', 'Fall', 2007, 'B '); + insert into takes values('59908', '270', '1', 'Spring', 2010, 'A '); + insert into takes values('41491', '362', '3', 'Spring', 2008, 'A-'); + insert into takes values('6895', '408', '2', 'Spring', 2003, 'B '); + insert into takes values('19582', '401', '1', 'Fall', 2003, 'C-'); + insert into takes values('978', '629', '1', 'Spring', 2003, 'B '); + insert into takes values('5243', '476', '1', 'Fall', 2010, 'C+'); + insert into takes values('90181', '852', '1', 'Spring', 2008, 'A+'); + insert into takes values('71768', '603', '1', 'Fall', 2003, 'B-'); + insert into takes values('16250', '735', '2', 'Spring', 2010, 'A-'); + insert into takes values('75123', '802', '1', 'Spring', 2003, 'A-'); + insert into takes values('15613', '468', '2', 'Fall', 2007, 'A+'); + insert into takes values('52076', '313', '1', 'Fall', 2010, 'C-'); + insert into takes values('23392', '274', '1', 'Fall', 2002, 'A '); + insert into takes values('24325', '338', '1', 'Spring', 2007, 'A-'); + insert into takes values('79446', '603', '1', 'Fall', 2003, 'A '); + insert into takes values('44703', '338', '2', 'Spring', 2006, 'A-'); + insert into takes values('29665', '545', '1', 'Fall', 2001, 'B+'); + insert into takes values('43016', '793', '1', 'Spring', 2002, 'C-'); + insert into takes values('23525', '545', '1', 'Fall', 2001, 'B+'); + insert into takes values('92464', '559', '1', 'Fall', 2002, 'C '); + insert into takes values('53225', '169', '1', 'Spring', 2007, 'B-'); + insert into takes values('82974', '426', '1', 'Spring', 2006, 'C-'); + insert into takes values('32130', '169', '1', 'Spring', 2007, 'B '); + insert into takes values('19450', '443', '2', 'Spring', 2002, 'B '); + insert into takes values('65121', '200', '2', 'Fall', 2002, 'C '); + insert into takes values('17339', '991', '1', 'Spring', 2008, 'A+'); + insert into takes values('18338', '200', '1', 'Spring', 2007, 'C-'); + insert into takes values('17997', '793', '1', 'Spring', 2002, 'B-'); + insert into takes values('16297', '237', '1', 'Spring', 2008, 'A+'); + insert into takes values('67146', '192', '1', 'Fall', 2002, 'A-'); + insert into takes values('90234', '237', '1', 'Spring', 2008, 'B-'); + insert into takes values('98120', '400', '2', 'Fall', 2003, 'B '); + insert into takes values('96772', '468', '2', 'Fall', 2007, 'B-'); + insert into takes values('16885', '258', '1', 'Fall', 2007, 'C-'); + insert into takes values('70389', '105', '1', 'Fall', 2009, 'B '); + insert into takes values('47379', '949', '1', 'Fall', 2007, 'C '); + insert into takes values('34392', '486', '1', 'Fall', 2009, 'C '); + insert into takes values('46155', '603', '1', 'Fall', 2003, 'B+'); + insert into takes values('80912', '603', '1', 'Fall', 2003, 'B-'); + insert into takes values('16907', '960', '1', 'Fall', 2009, 'C '); + insert into takes values('28352', '445', '1', 'Spring', 2001, 'C+'); + insert into takes values('42688', '875', '1', 'Spring', 2005, 'A-'); + insert into takes values('99271', '604', '1', 'Spring', 2009, 'A+'); + insert into takes values('52385', '893', '1', 'Fall', 2007, 'A '); + insert into takes values('98315', '545', '1', 'Fall', 2001, 'B+'); + insert into takes values('3576', '376', '1', 'Fall', 2006, 'C-'); + insert into takes values('59117', '242', '1', 'Fall', 2009, 'B-'); + insert into takes values('64550', '626', '1', 'Fall', 2006, 'B '); + insert into takes values('14829', '802', '1', 'Spring', 2003, 'B-'); + insert into takes values('69850', '443', '2', 'Spring', 2002, 'A-'); + insert into takes values('81294', '791', '1', 'Spring', 2006, 'B '); + insert into takes values('29863', '443', '2', 'Spring', 2002, 'A '); + insert into takes values('35588', '169', '2', 'Fall', 2002, 'B '); + insert into takes values('847', '867', '2', 'Fall', 2010, 'A '); + insert into takes values('82688', '599', '1', 'Spring', 2003, 'B-'); + insert into takes values('16311', '468', '1', 'Fall', 2005, 'A '); + insert into takes values('97551', '400', '2', 'Fall', 2003, 'B+'); + insert into takes values('83557', '694', '1', 'Fall', 2002, 'B-'); + insert into takes values('64039', '571', '1', 'Spring', 2004, 'B '); + insert into takes values('86404', '493', '1', 'Spring', 2010, 'A '); + insert into takes values('38973', '864', '1', 'Spring', 2006, 'C '); + insert into takes values('94178', '443', '2', 'Spring', 2002, 'B-'); + insert into takes values('90082', '400', '1', 'Spring', 2007, 'C+'); + insert into takes values('84167', '626', '1', 'Fall', 2006, 'A+'); + insert into takes values('914', '200', '1', 'Spring', 2007, 'B '); + insert into takes values('88045', '791', '1', 'Spring', 2006, 'A '); + insert into takes values('58170', '105', '1', 'Fall', 2009, 'A+'); + insert into takes values('57238', '960', '1', 'Fall', 2009, 'B+'); + insert into takes values('8252', '962', '1', 'Spring', 2008, 'B-'); + insert into takes values('87222', '461', '1', 'Fall', 2002, 'C-'); + insert into takes values('78892', '237', '1', 'Spring', 2008, 'A-'); + insert into takes values('64164', '791', '1', 'Spring', 2006, 'C-'); + insert into takes values('94815', '443', '1', 'Spring', 2010, 'A-'); + insert into takes values('2419', '408', '1', 'Spring', 2007, 'B '); + insert into takes values('3005', '795', '1', 'Spring', 2004, 'B+'); + insert into takes values('2139', '334', '1', 'Fall', 2009, 'A-'); + insert into takes values('2848', '408', '2', 'Spring', 2003, 'A-'); + insert into takes values('78481', '747', '1', 'Spring', 2004, 'C '); + insert into takes values('10527', '843', '1', 'Fall', 2010, 'B+'); + insert into takes values('55940', '105', '1', 'Fall', 2009, 'A-'); + insert into takes values('29920', '629', '1', 'Spring', 2003, 'C-'); + insert into takes values('33651', '408', '1', 'Spring', 2007, 'B+'); + insert into takes values('62429', '692', '1', 'Spring', 2010, 'C-'); + insert into takes values('98315', '748', '1', 'Fall', 2003, 'B-'); + insert into takes values('96772', '962', '1', 'Spring', 2008, 'B+'); + insert into takes values('89140', '843', '1', 'Fall', 2010, 'A '); + insert into takes values('69952', '408', '2', 'Spring', 2003, 'B '); + insert into takes values('37449', '949', '1', 'Fall', 2007, 'B-'); + insert into takes values('41818', '334', '1', 'Fall', 2009, 'C+'); + insert into takes values('5414', '426', '1', 'Spring', 2006, 'B-'); + insert into takes values('914', '242', '1', 'Fall', 2009, 'C+'); + insert into takes values('21692', '991', '1', 'Spring', 2008, 'B+'); + insert into takes values('62487', '400', '1', 'Spring', 2007, 'A-'); + insert into takes values('29645', '200', '2', 'Fall', 2002, 'A-'); + insert into takes values('19638', '415', '1', 'Fall', 2010, 'C '); + insert into takes values('18675', '795', '1', 'Spring', 2004, 'B-'); + insert into takes values('56', '237', '1', 'Spring', 2008, 'C '); + insert into takes values('46436', '735', '1', 'Spring', 2003, 'C+'); + insert into takes values('58170', '561', '1', 'Fall', 2006, 'C+'); + insert into takes values('54296', '631', '1', 'Spring', 2007, 'A '); + insert into takes values('51975', '604', '1', 'Spring', 2009, 'B-'); + insert into takes values('60040', '991', '1', 'Spring', 2008, 'A '); + insert into takes values('28004', '400', '2', 'Fall', 2003, 'C '); + insert into takes values('86375', '612', '1', 'Fall', 2007, 'B-'); + insert into takes values('16885', '366', '1', 'Fall', 2005, 'C-'); + insert into takes values('2178', '852', '1', 'Spring', 2008, 'A+'); + insert into takes values('41674', '169', '2', 'Fall', 2002, 'B+'); + insert into takes values('44881', '760', '1', 'Spring', 2004, 'B+'); + insert into takes values('67293', '400', '2', 'Fall', 2003, 'A-'); + insert into takes values('66356', '445', '1', 'Spring', 2001, 'A '); + insert into takes values('87785', '867', '2', 'Fall', 2010, 'A '); + insert into takes values('68453', '338', '1', 'Spring', 2007, 'A-'); + insert into takes values('86375', '927', '1', 'Fall', 2002, 'C+'); + insert into takes values('35198', '631', '1', 'Spring', 2007, 'B '); + insert into takes values('99647', '626', '1', 'Fall', 2006, 'C '); + insert into takes values('31079', '421', '1', 'Fall', 2004, 'A+'); + insert into takes values('62429', '334', '1', 'Fall', 2009, 'C-'); + insert into takes values('4182', '200', '2', 'Fall', 2002, 'C '); + insert into takes values('58469', '476', '1', 'Fall', 2010, 'B-'); + insert into takes values('93571', '443', '2', 'Spring', 2002, 'C-'); + insert into takes values('93708', '747', '1', 'Spring', 2004, 'C-'); + insert into takes values('59553', '443', '1', 'Spring', 2010, 'B '); + insert into takes values('19917', '443', '2', 'Spring', 2002, 'B-'); + insert into takes values('85910', '599', '1', 'Spring', 2003, 'B+'); + insert into takes values('64297', '137', '1', 'Spring', 2002, 'B-'); + insert into takes values('95089', '313', '1', 'Fall', 2010, 'B-'); + insert into takes values('91442', '349', '1', 'Spring', 2008, 'A-'); + insert into takes values('11152', '692', '1', 'Spring', 2010, 'B+'); + insert into takes values('48678', '345', '1', 'Spring', 2008, 'A+'); + insert into takes values('65121', '612', '1', 'Fall', 2007, 'B '); + insert into takes values('52707', '192', '1', 'Fall', 2002, 'A '); + insert into takes values('80227', '960', '1', 'Fall', 2009, 'A '); + insert into takes values('74070', '991', '1', 'Spring', 2008, 'A '); + insert into takes values('25256', '362', '1', 'Fall', 2005, 'A '); + insert into takes values('94620', '345', '1', 'Spring', 2008, 'B '); + insert into takes values('79502', '612', '1', 'Fall', 2007, 'B '); + insert into takes values('5336', '972', '1', 'Spring', 2009, 'C-'); + insert into takes values('58874', '274', '1', 'Fall', 2002, 'B+'); + insert into takes values('92464', '237', '1', 'Spring', 2008, 'C+'); + insert into takes values('39552', '200', '2', 'Fall', 2002, 'B '); + insert into takes values('69225', '237', '1', 'Spring', 2008, 'B-'); + insert into takes values('12979', '867', '2', 'Fall', 2010, 'A-'); + insert into takes values('57985', '400', '2', 'Fall', 2003, 'B '); + insert into takes values('58081', '559', '1', 'Fall', 2002, 'C+'); + insert into takes values('58701', '258', '1', 'Fall', 2007, 'C+'); + insert into takes values('90448', '493', '1', 'Spring', 2010, 'A-'); + insert into takes values('95027', '400', '2', 'Fall', 2003, 'B-'); + insert into takes values('32506', '735', '1', 'Spring', 2003, 'C+'); + insert into takes values('50467', '426', '1', 'Spring', 2006, 'C-'); + insert into takes values('41299', '426', '1', 'Spring', 2006, 'C '); + insert into takes values('22142', '702', '1', 'Spring', 2001, 'C+'); + insert into takes values('7035', '313', '1', 'Fall', 2010, 'C-'); + insert into takes values('1968', '527', '1', 'Fall', 2004, 'A+'); + insert into takes values('66495', '867', '1', 'Fall', 2006, 'C '); + insert into takes values('34322', '496', '1', 'Fall', 2001, 'C '); + insert into takes values('65329', '972', '1', 'Spring', 2009, 'C-'); + insert into takes values('37430', '239', '1', 'Fall', 2006, 'C+'); + insert into takes values('61356', '200', '2', 'Fall', 2002, 'C '); + insert into takes values('20803', '599', '1', 'Spring', 2003, 'A '); + insert into takes values('66293', '843', '1', 'Fall', 2010, 'B '); + insert into takes values('68453', '242', '1', 'Fall', 2009, 'C+'); + insert into takes values('94697', '748', '1', 'Fall', 2003, 'C-'); + insert into takes values('50702', '545', '1', 'Fall', 2001, 'C-'); + insert into takes values('65056', '169', '2', 'Fall', 2002, 'B-'); + insert into takes values('93631', '421', '1', 'Fall', 2004, 'A+'); + insert into takes values('18234', '696', '1', 'Spring', 2002, 'A-'); + insert into takes values('76911', '457', '1', 'Spring', 2001, 'A+'); + insert into takes values('64164', '604', '1', 'Spring', 2009, 'C-'); + insert into takes values('8819', '527', '1', 'Fall', 2004, 'B+'); + insert into takes values('56486', '991', '1', 'Spring', 2008, 'A-'); + insert into takes values('89759', '960', '1', 'Fall', 2009, 'A '); + insert into takes values('7854', '748', '1', 'Fall', 2003, 'A-'); + insert into takes values('83002', '972', '1', 'Spring', 2009, 'C-'); + insert into takes values('64013', '376', '1', 'Fall', 2006, 'C-'); + insert into takes values('80285', '629', '1', 'Spring', 2003, 'A-'); + insert into takes values('90381', '559', '1', 'Fall', 2002, 'A-'); + insert into takes values('31266', '663', '1', 'Spring', 2005, 'B+'); + insert into takes values('11966', '663', '1', 'Spring', 2005, 'B+'); + insert into takes values('21789', '702', '1', 'Spring', 2001, 'B '); + insert into takes values('79589', '169', '2', 'Fall', 2002, 'A '); + insert into takes values('29705', '362', '2', 'Fall', 2006, 'A-'); + insert into takes values('68516', '338', '2', 'Spring', 2006, 'B+'); + insert into takes values('94766', '735', '2', 'Spring', 2010, 'A-'); + insert into takes values('30397', '105', '2', 'Fall', 2002, 'B '); + insert into takes values('15086', '426', '1', 'Spring', 2006, 'A-'); + insert into takes values('27140', '559', '1', 'Fall', 2002, 'A '); + insert into takes values('56058', '362', '1', 'Fall', 2005, 'A '); + insert into takes values('25068', '527', '1', 'Fall', 2004, 'B '); + insert into takes values('18338', '545', '1', 'Fall', 2001, 'A+'); + insert into takes values('81984', '242', '1', 'Fall', 2009, 'B-'); + insert into takes values('17076', '349', '1', 'Spring', 2008, 'C+'); + insert into takes values('38555', '476', '1', 'Fall', 2010, 'C+'); + insert into takes values('74473', '571', '1', 'Spring', 2004, 'A '); + insert into takes values('63449', '237', '2', 'Fall', 2009, 'B '); + insert into takes values('41406', '334', '1', 'Fall', 2009, 'C-'); + insert into takes values('54620', '927', '1', 'Fall', 2002, 'B '); + insert into takes values('85063', '400', '1', 'Spring', 2007, 'B+'); + insert into takes values('80285', '482', '1', 'Fall', 2005, 'A-'); + insert into takes values('3127', '352', '1', 'Spring', 2006, 'A '); + insert into takes values('32369', '237', '2', 'Fall', 2009, 'A+'); + insert into takes values('71025', '408', '1', 'Spring', 2007, 'B '); + insert into takes values('72177', '791', '1', 'Spring', 2006, 'B+'); + insert into takes values('89246', '642', '1', 'Fall', 2004, 'A-'); + insert into takes values('2177', '468', '2', 'Fall', 2007, 'C-'); + insert into takes values('40178', '349', '1', 'Spring', 2008, 'C '); + insert into takes values('86674', '581', '1', 'Spring', 2005, 'A-'); + insert into takes values('65205', '239', '1', 'Fall', 2006, 'A-'); + insert into takes values('24197', '476', '1', 'Fall', 2010, 'A '); + insert into takes values('42991', '747', '1', 'Spring', 2004, 'C '); + insert into takes values('90082', '496', '1', 'Fall', 2001, 'C+'); + insert into takes values('81883', '791', '1', 'Spring', 2006, 'B '); + insert into takes values('14639', '258', '1', 'Fall', 2007, 'B+'); + insert into takes values('14214', '748', '1', 'Fall', 2003, 'A+'); + insert into takes values('55915', '158', '2', 'Spring', 2008, 'B+'); + insert into takes values('57055', '626', '1', 'Fall', 2006, 'B-'); + insert into takes values('15883', '200', '1', 'Spring', 2007, 'C+'); + insert into takes values('59553', '237', '2', 'Fall', 2009, 'C '); + insert into takes values('53803', '105', '2', 'Fall', 2002, 'B '); + insert into takes values('69285', '959', '1', 'Fall', 2006, 'A '); + insert into takes values('44206', '239', '1', 'Fall', 2006, 'A '); + insert into takes values('52385', '493', '1', 'Spring', 2010, 'B+'); + insert into takes values('83686', '747', '1', 'Spring', 2004, 'C+'); + insert into takes values('71287', '362', '2', 'Fall', 2006, 'B '); + insert into takes values('41261', '927', '1', 'Fall', 2002, 'B+'); + insert into takes values('70395', '376', '1', 'Fall', 2006, 'C-'); + insert into takes values('22226', '400', '2', 'Fall', 2003, 'B '); + insert into takes values('57238', '239', '1', 'Fall', 2006, 'B-'); + insert into takes values('99780', '258', '1', 'Fall', 2007, 'C '); + insert into takes values('62152', '747', '1', 'Spring', 2004, 'A+'); + insert into takes values('11152', '366', '1', 'Fall', 2005, 'C+'); + insert into takes values('89234', '468', '2', 'Fall', 2007, 'C '); + insert into takes values('5381', '457', '1', 'Spring', 2001, 'A '); + insert into takes values('35685', '612', '1', 'Fall', 2007, 'C-'); + insert into takes values('12078', '663', '1', 'Spring', 2005, 'A '); + insert into takes values('35198', '747', '1', 'Spring', 2004, 'C '); + insert into takes values('50873', '791', '1', 'Spring', 2006, 'C+'); + insert into takes values('23224', '603', '1', 'Fall', 2003, 'B '); + insert into takes values('74639', '959', '1', 'Fall', 2006, 'B '); + insert into takes values('40932', '489', '1', 'Fall', 2007, 'A-'); + insert into takes values('46725', '791', '1', 'Spring', 2006, 'B '); + insert into takes values('67655', '571', '1', 'Spring', 2004, 'B '); + insert into takes values('1533', '443', '2', 'Spring', 2002, 'B+'); + insert into takes values('83444', '867', '2', 'Fall', 2010, 'B+'); + insert into takes values('67018', '200', '2', 'Fall', 2002, 'A+'); + insert into takes values('29192', '599', '1', 'Spring', 2003, 'B+'); + insert into takes values('43016', '366', '1', 'Fall', 2005, 'A-'); + insert into takes values('31516', '496', '1', 'Fall', 2001, 'B-'); + insert into takes values('61783', '631', '1', 'Spring', 2007, 'C '); + insert into takes values('49759', '486', '1', 'Fall', 2009, 'A+'); + insert into takes values('67146', '400', '1', 'Spring', 2007, 'A+'); + insert into takes values('44304', '704', '1', 'Spring', 2008, 'C '); + insert into takes values('80057', '352', '1', 'Spring', 2006, 'A+'); + insert into takes values('50977', '443', '1', 'Spring', 2010, 'C+'); + insert into takes values('12615', '561', '1', 'Fall', 2006, 'B '); + insert into takes values('90004', '345', '1', 'Spring', 2008, 'C-'); + insert into takes values('97953', '468', '2', 'Fall', 2007, 'B+'); + insert into takes values('94726', '421', '1', 'Fall', 2004, 'B '); + insert into takes values('27804', '304', '1', 'Fall', 2009, 'B+'); + insert into takes values('2795', '105', '1', 'Fall', 2009, 'A '); + insert into takes values('87280', '735', '1', 'Spring', 2003, 'B-'); + insert into takes values('50598', '867', '2', 'Fall', 2010, 'C '); + insert into takes values('7498', '408', '1', 'Spring', 2007, 'C '); + insert into takes values('74464', '663', '1', 'Spring', 2005, 'A-'); + insert into takes values('31560', '169', '1', 'Spring', 2007, 'C-'); + insert into takes values('49701', '362', '1', 'Fall', 2005, 'C '); + insert into takes values('55170', '959', '1', 'Fall', 2006, 'A-'); + insert into takes values('30222', '791', '1', 'Spring', 2006, 'B-'); + insert into takes values('66106', '270', '1', 'Spring', 2010, 'C+'); + insert into takes values('13921', '867', '1', 'Fall', 2006, 'B '); + insert into takes values('97435', '604', '1', 'Spring', 2009, 'A+'); + insert into takes values('18859', '468', '1', 'Fall', 2005, 'A '); + insert into takes values('82082', '852', '1', 'Spring', 2008, 'B-'); + insert into takes values('32954', '158', '2', 'Spring', 2008, 'B '); + insert into takes values('23992', '795', '1', 'Spring', 2004, 'B+'); + insert into takes values('37284', '169', '2', 'Fall', 2002, 'C-'); + insert into takes values('37946', '421', '1', 'Fall', 2004, 'A+'); + insert into takes values('71628', '445', '1', 'Spring', 2001, 'A+'); + insert into takes values('73186', '237', '1', 'Spring', 2008, 'C '); + insert into takes values('18740', '366', '1', 'Fall', 2005, 'B+'); + insert into takes values('38476', '852', '1', 'Spring', 2008, 'B '); + insert into takes values('5208', '105', '2', 'Fall', 2002, 'C-'); + insert into takes values('56058', '482', '1', 'Fall', 2005, 'C '); + insert into takes values('6523', '527', '1', 'Fall', 2004, 'A+'); + insert into takes values('8457', '237', '2', 'Fall', 2009, 'C-'); + insert into takes values('41299', '496', '1', 'Fall', 2001, 'A '); + insert into takes values('58469', '591', '1', 'Spring', 2005, 'A+'); + insert into takes values('9256', '991', '1', 'Spring', 2008, 'C+'); + insert into takes values('50944', '875', '1', 'Spring', 2005, 'B '); + insert into takes values('10454', '679', '1', 'Spring', 2010, 'A '); + insert into takes values('65901', '581', '1', 'Spring', 2005, 'A-'); + insert into takes values('83953', '559', '1', 'Fall', 2002, 'C+'); + insert into takes values('28004', '663', '1', 'Spring', 2005, 'B-'); + insert into takes values('26881', '591', '1', 'Spring', 2005, 'A+'); + insert into takes values('91799', '242', '1', 'Fall', 2009, 'A '); + insert into takes values('78758', '867', '2', 'Fall', 2010, 'B '); + insert into takes values('35198', '642', '1', 'Fall', 2004, 'B+'); + insert into takes values('36513', '694', '1', 'Fall', 2002, 'A-'); + insert into takes values('67310', '875', '1', 'Spring', 2005, 'B '); + insert into takes values('27094', '561', '1', 'Fall', 2006, 'C '); + insert into takes values('79352', '545', '1', 'Fall', 2001, 'B+'); + insert into takes values('544', '400', '1', 'Spring', 2007, 'B-'); + insert into takes values('21102', '468', '2', 'Fall', 2007, 'B+'); + insert into takes values('4645', '626', '1', 'Fall', 2006, 'B-'); + insert into takes values('50414', '629', '1', 'Spring', 2003, 'C '); + insert into takes values('58307', '893', '1', 'Fall', 2007, 'A-'); + insert into takes values('9256', '352', '1', 'Spring', 2006, 'C '); + insert into takes values('39521', '105', '2', 'Fall', 2002, 'A-'); + insert into takes values('34197', '426', '1', 'Spring', 2006, 'C-'); + insert into takes values('22618', '376', '1', 'Fall', 2006, 'A-'); + insert into takes values('99754', '692', '1', 'Spring', 2010, 'A '); + insert into takes values('2561', '200', '2', 'Fall', 2002, 'C-'); + insert into takes values('97551', '612', '1', 'Fall', 2007, 'C '); + insert into takes values('26080', '972', '1', 'Spring', 2009, 'A '); + insert into takes values('5943', '468', '2', 'Fall', 2007, 'B '); + insert into takes values('89000', '760', '1', 'Spring', 2004, 'B '); + insert into takes values('9183', '679', '1', 'Spring', 2010, 'B-'); + insert into takes values('93653', '421', '1', 'Fall', 2004, 'A '); + insert into takes values('9514', '345', '1', 'Spring', 2008, 'C-'); + insert into takes values('21126', '105', '1', 'Fall', 2009, 'A+'); + insert into takes values('88993', '496', '1', 'Fall', 2001, 'C+'); + insert into takes values('6710', '445', '1', 'Spring', 2001, 'B+'); + insert into takes values('47379', '748', '1', 'Fall', 2003, 'B-'); + insert into takes values('79352', '443', '2', 'Spring', 2002, 'A '); + insert into takes values('11095', '802', '1', 'Spring', 2003, 'B '); + insert into takes values('4682', '991', '1', 'Spring', 2008, 'A+'); + insert into takes values('30650', '338', '1', 'Spring', 2007, 'C+'); + insert into takes values('83398', '603', '1', 'Fall', 2003, 'B+'); + insert into takes values('44998', '338', '2', 'Spring', 2006, 'C '); + insert into takes values('64259', '426', '1', 'Spring', 2006, 'A-'); + insert into takes values('282', '457', '1', 'Spring', 2001, 'B+'); + insert into takes values('29260', '802', '1', 'Spring', 2003, 'B+'); + insert into takes values('11095', '603', '1', 'Fall', 2003, 'C '); + insert into takes values('12236', '679', '1', 'Spring', 2010, 'C-'); + insert into takes values('52385', '334', '1', 'Fall', 2009, 'C '); + insert into takes values('39394', '599', '1', 'Spring', 2003, 'A+'); + insert into takes values('56057', '626', '1', 'Fall', 2006, 'A-'); + insert into takes values('23373', '735', '1', 'Spring', 2003, 'A-'); + insert into takes values('22345', '237', '2', 'Fall', 2009, 'B+'); + insert into takes values('34770', '421', '1', 'Fall', 2004, 'C+'); + insert into takes values('10663', '527', '1', 'Fall', 2004, 'C+'); + insert into takes values('26802', '304', '1', 'Fall', 2009, 'B+'); + insert into takes values('19917', '694', '1', 'Fall', 2002, 'A+'); + insert into takes values('19342', '239', '1', 'Fall', 2006, 'B-'); + insert into takes values('97953', '408', '1', 'Spring', 2007, 'B+'); + insert into takes values('86344', '802', '1', 'Spring', 2003, 'C '); + insert into takes values('81884', '366', '1', 'Fall', 2005, 'A-'); + insert into takes values('18752', '376', '1', 'Fall', 2006, 'B-'); + insert into takes values('39514', '962', '1', 'Spring', 2008, 'A+'); + insert into takes values('19321', '791', '1', 'Spring', 2006, 'B-'); + insert into takes values('60984', '735', '1', 'Spring', 2003, 'A+'); + insert into takes values('65681', '631', '1', 'Spring', 2007, 'C-'); + insert into takes values('83204', '192', '1', 'Fall', 2002, 'A-'); + insert into takes values('51549', '468', '1', 'Fall', 2005, 'A '); + insert into takes values('28352', '274', '1', 'Fall', 2002, 'B '); + insert into takes values('19824', '334', '1', 'Fall', 2009, 'C+'); + insert into takes values('68263', '581', '1', 'Spring', 2005, 'C+'); + insert into takes values('16057', '270', '1', 'Spring', 2010, 'B '); + insert into takes values('80285', '571', '1', 'Spring', 2004, 'C-'); + insert into takes values('24010', '443', '2', 'Spring', 2002, 'C+'); + insert into takes values('34018', '200', '2', 'Fall', 2002, 'A-'); + insert into takes values('3039', '158', '2', 'Spring', 2008, 'C+'); + insert into takes values('85234', '362', '1', 'Fall', 2005, 'C-'); + insert into takes values('75082', '808', '1', 'Fall', 2003, 'B+'); + insert into takes values('20002', '443', '2', 'Spring', 2002, 'B+'); + insert into takes values('41988', '169', '2', 'Fall', 2002, 'C '); + insert into takes values('12214', '461', '1', 'Fall', 2002, 'A '); + insert into takes values('30341', '239', '1', 'Fall', 2006, 'C '); + insert into takes values('70572', '366', '1', 'Fall', 2005, 'A '); + insert into takes values('50365', '802', '1', 'Spring', 2003, 'A-'); + insert into takes values('47126', '200', '1', 'Spring', 2007, 'C-'); + insert into takes values('23311', '169', '1', 'Spring', 2007, 'A+'); + insert into takes values('69960', '200', '2', 'Fall', 2002, 'A+'); + insert into takes values('89132', '591', '1', 'Spring', 2005, 'A+'); + insert into takes values('89188', '237', '1', 'Spring', 2008, 'A '); + insert into takes values('94998', '376', '1', 'Fall', 2006, 'B '); + insert into takes values('7149', '663', '1', 'Spring', 2005, 'C-'); + insert into takes values('98056', '482', '1', 'Fall', 2005, 'A '); + insert into takes values('96710', '927', '1', 'Fall', 2002, 'C+'); + insert into takes values('72643', '791', '1', 'Spring', 2006, 'A+'); + insert into takes values('86641', '362', '3', 'Spring', 2008, 'C-'); + insert into takes values('39514', '864', '1', 'Spring', 2006, 'C '); + insert into takes values('79589', '105', '1', 'Fall', 2009, 'B-'); + insert into takes values('34236', '962', '1', 'Spring', 2008, 'C+'); + insert into takes values('20099', '362', '3', 'Spring', 2008, 'B+'); + insert into takes values('1367', '352', '1', 'Spring', 2006, 'C+'); + insert into takes values('46769', '663', '1', 'Spring', 2005, 'B-'); + insert into takes values('87624', '239', '1', 'Fall', 2006, 'C-'); + insert into takes values('33201', '735', '1', 'Spring', 2003, 'C '); + insert into takes values('64067', '237', '2', 'Fall', 2009, 'A '); + insert into takes values('50664', '489', '1', 'Fall', 2007, 'C '); + insert into takes values('31560', '599', '1', 'Spring', 2003, 'A-'); + insert into takes values('13511', '604', '1', 'Spring', 2009, 'B-'); + insert into takes values('83170', '959', '1', 'Fall', 2006, 'B-'); + insert into takes values('89393', '486', '1', 'Fall', 2009, 'A '); + insert into takes values('1460', '493', '1', 'Spring', 2010, 'C-'); + insert into takes values('11194', '559', '1', 'Fall', 2002, 'A '); + insert into takes values('27094', '867', '2', 'Fall', 2010, 'A '); + insert into takes values('26080', '692', '1', 'Spring', 2010, 'B '); + insert into takes values('5961', '867', '1', 'Fall', 2006, 'C-'); + insert into takes values('36263', '239', '1', 'Fall', 2006, 'C-'); + insert into takes values('69230', '274', '1', 'Fall', 2002, 'B '); + insert into takes values('8957', '352', '1', 'Spring', 2006, 'C-'); + insert into takes values('68150', '642', '1', 'Fall', 2004, 'A-'); + insert into takes values('59172', '496', '1', 'Fall', 2001, 'B+'); + insert into takes values('68242', '362', '2', 'Fall', 2006, 'C+'); + insert into takes values('3335', '581', '1', 'Spring', 2005, 'C '); + insert into takes values('45826', '468', '1', 'Fall', 2005, 'A-'); + insert into takes values('29849', '696', '1', 'Spring', 2002, 'A '); + insert into takes values('38668', '559', '1', 'Fall', 2002, 'C '); + insert into takes values('18286', '991', '1', 'Spring', 2008, 'A+'); + insert into takes values('74911', '561', '1', 'Fall', 2006, 'C '); + insert into takes values('38973', '663', '1', 'Spring', 2005, 'A+'); + insert into takes values('78143', '400', '2', 'Fall', 2003, 'A+'); + insert into takes values('80047', '604', '1', 'Spring', 2009, 'A-'); + insert into takes values('11530', '476', '1', 'Fall', 2010, 'C '); + insert into takes values('24442', '237', '2', 'Fall', 2009, 'A+'); + insert into takes values('7204', '445', '1', 'Spring', 2001, 'A+'); + insert into takes values('70918', '974', '1', 'Fall', 2003, 'A '); + insert into takes values('28019', '852', '1', 'Spring', 2008, 'A-'); + insert into takes values('92867', '169', '1', 'Spring', 2007, 'B '); + insert into takes values('17607', '105', '2', 'Fall', 2002, 'A+'); + insert into takes values('70452', '603', '1', 'Fall', 2003, 'C-'); + insert into takes values('31486', '319', '1', 'Spring', 2003, 'C+'); + insert into takes values('31266', '692', '1', 'Spring', 2010, 'A '); + insert into takes values('48165', '468', '2', 'Fall', 2007, 'A-'); + insert into takes values('62487', '852', '1', 'Spring', 2008, 'B+'); + insert into takes values('88389', '793', '1', 'Spring', 2002, 'B-'); + insert into takes values('34170', '791', '1', 'Spring', 2006, 'A-'); + insert into takes values('28361', '158', '1', 'Fall', 2008, 'B-'); + insert into takes values('51549', '476', '1', 'Fall', 2010, 'A+'); + insert into takes values('59117', '962', '1', 'Spring', 2008, 'A '); + insert into takes values('36052', '400', '1', 'Spring', 2007, 'B '); + insert into takes values('77148', '559', '1', 'Fall', 2002, 'B+'); + insert into takes values('22620', '867', '1', 'Fall', 2006, 'A-'); + insert into takes values('16405', '345', '1', 'Spring', 2008, 'B-'); + insert into takes values('73908', '960', '2', 'Fall', 2006, 'A '); + insert into takes values('67310', '626', '1', 'Fall', 2006, 'B-'); + insert into takes values('61065', '242', '1', 'Fall', 2009, 'B+'); + insert into takes values('53077', '237', '2', 'Fall', 2009, 'C '); + insert into takes values('26473', '401', '1', 'Fall', 2003, 'C-'); + insert into takes values('26147', '338', '1', 'Spring', 2007, 'B+'); + insert into takes values('77580', '443', '1', 'Spring', 2010, 'A+'); + insert into takes values('73328', '793', '1', 'Spring', 2002, 'A-'); + insert into takes values('55531', '237', '1', 'Spring', 2008, 'C-'); + insert into takes values('80990', '631', '1', 'Spring', 2007, 'B '); + insert into takes values('67021', '443', '2', 'Spring', 2002, 'C '); + insert into takes values('30474', '991', '1', 'Spring', 2008, 'A+'); + insert into takes values('8251', '864', '1', 'Spring', 2006, 'C+'); + insert into takes values('4940', '692', '1', 'Spring', 2010, 'C+'); + insert into takes values('75241', '468', '1', 'Fall', 2005, 'B+'); + insert into takes values('85809', '696', '1', 'Spring', 2002, 'C-'); + insert into takes values('41261', '400', '2', 'Fall', 2003, 'A-'); + insert into takes values('16057', '959', '1', 'Fall', 2006, 'B+'); + insert into takes values('64820', '443', '2', 'Spring', 2002, 'B '); + insert into takes values('80821', '192', '1', 'Fall', 2002, 'C+'); + insert into takes values('27043', '421', '1', 'Fall', 2004, 'B+'); + insert into takes values('87439', '663', '1', 'Spring', 2005, 'C-'); + insert into takes values('64138', '626', '1', 'Fall', 2006, 'C+'); + insert into takes values('13290', '893', '1', 'Fall', 2007, 'B '); + insert into takes values('51817', '603', '1', 'Fall', 2003, 'B '); + insert into takes values('86806', '476', '1', 'Fall', 2010, 'B-'); + insert into takes values('62749', '599', '1', 'Spring', 2003, 'B-'); + insert into takes values('58935', '959', '1', 'Fall', 2006, 'C '); + insert into takes values('16297', '527', '1', 'Fall', 2004, 'B+'); + insert into takes values('8192', '545', '1', 'Fall', 2001, 'B+'); + insert into takes values('44038', '561', '1', 'Fall', 2006, 'C-'); + insert into takes values('31079', '864', '1', 'Spring', 2006, 'C '); + insert into takes values('74070', '352', '1', 'Spring', 2006, 'A-'); + insert into takes values('32369', '559', '1', 'Fall', 2002, 'A+'); + insert into takes values('6729', '748', '1', 'Fall', 2003, 'B+'); + insert into takes values('58300', '468', '2', 'Fall', 2007, 'C-'); + insert into takes values('64945', '642', '1', 'Fall', 2004, 'A '); + insert into takes values('7514', '747', '1', 'Spring', 2004, 'C+'); + insert into takes values('5144', '349', '1', 'Spring', 2008, 'B-'); + insert into takes values('13506', '679', '1', 'Spring', 2010, 'B-'); + insert into takes values('90353', '468', '2', 'Fall', 2007, 'A+'); + insert into takes values('58326', '242', '1', 'Fall', 2009, 'A-'); + insert into takes values('46074', '482', '1', 'Fall', 2005, 'B '); + insert into takes values('30222', '105', '2', 'Fall', 2002, 'A+'); + insert into takes values('4582', '200', '1', 'Spring', 2007, 'C+'); + insert into takes values('463', '362', '1', 'Fall', 2005, 'C-'); + insert into takes values('34197', '457', '1', 'Spring', 2001, 'B-'); + insert into takes values('37586', '748', '1', 'Fall', 2003, 'B+'); + insert into takes values('44206', '362', '2', 'Fall', 2006, 'C '); + insert into takes values('1884', '949', '1', 'Fall', 2007, 'B+'); + insert into takes values('27950', '974', '1', 'Fall', 2003, 'A '); + insert into takes values('38712', '304', '1', 'Fall', 2009, 'C-'); + insert into takes values('87439', '927', '1', 'Fall', 2002, 'C '); + insert into takes values('66090', '962', '1', 'Spring', 2008, 'B-'); + insert into takes values('12615', '408', '1', 'Spring', 2007, 'C '); + insert into takes values('85849', '338', '2', 'Spring', 2006, 'C-'); + insert into takes values('67407', '362', '3', 'Spring', 2008, 'A-'); + insert into takes values('3335', '960', '1', 'Fall', 2009, 'B-'); + insert into takes values('86981', '421', '1', 'Fall', 2004, 'C '); + insert into takes values('94846', '461', '1', 'Fall', 2002, 'C '); + insert into takes values('78911', '748', '1', 'Fall', 2003, 'A '); + insert into takes values('37219', '468', '2', 'Fall', 2007, 'A+'); + insert into takes values('55170', '258', '1', 'Fall', 2007, 'A+'); + insert into takes values('91370', '959', '1', 'Fall', 2006, 'B+'); + insert into takes values('47670', '105', '1', 'Fall', 2009, 'C '); + insert into takes values('71543', '468', '2', 'Fall', 2007, 'A-'); + insert into takes values('30164', '349', '1', 'Spring', 2008, 'C '); + insert into takes values('53077', '864', '1', 'Spring', 2006, 'B '); + insert into takes values('4449', '949', '1', 'Fall', 2007, 'A+'); + insert into takes values('68453', '401', '1', 'Fall', 2003, 'C '); + insert into takes values('21102', '843', '1', 'Fall', 2010, 'C+'); + insert into takes values('14869', '200', '2', 'Fall', 2002, 'B '); + insert into takes values('61003', '443', '2', 'Spring', 2002, 'B '); + insert into takes values('52750', '631', '1', 'Spring', 2007, 'A+'); + insert into takes values('63288', '793', '1', 'Spring', 2002, 'C '); + insert into takes values('42092', '581', '1', 'Spring', 2005, 'C '); + insert into takes values('33882', '571', '1', 'Spring', 2004, 'B+'); + insert into takes values('46694', '864', '1', 'Spring', 2006, 'C '); + insert into takes values('46970', '493', '1', 'Spring', 2010, 'C-'); + insert into takes values('86934', '486', '1', 'Fall', 2009, 'B+'); + insert into takes values('2967', '457', '1', 'Spring', 2001, 'A+'); + insert into takes values('3639', '192', '1', 'Fall', 2002, 'C+'); + insert into takes values('37734', '169', '1', 'Spring', 2007, 'A-'); + insert into takes values('7043', '482', '1', 'Fall', 2005, 'C+'); + insert into takes values('71529', '735', '2', 'Spring', 2010, 'B+'); + insert into takes values('65901', '237', '2', 'Fall', 2009, 'C '); + insert into takes values('96052', '791', '1', 'Spring', 2006, 'C '); + insert into takes values('14499', '319', '1', 'Spring', 2003, 'C '); + insert into takes values('62487', '105', '1', 'Fall', 2009, 'A-'); + insert into takes values('56143', '158', '2', 'Spring', 2008, 'B '); + insert into takes values('66469', '237', '1', 'Spring', 2008, 'B '); + insert into takes values('31079', '401', '1', 'Fall', 2003, 'C-'); + insert into takes values('53165', '137', '1', 'Spring', 2002, 'B '); + insert into takes values('27430', '426', '1', 'Spring', 2006, 'C+'); + insert into takes values('18859', '401', '1', 'Fall', 2003, 'B '); + insert into takes values('5336', '962', '1', 'Spring', 2008, 'A-'); + insert into takes values('37101', '400', '1', 'Spring', 2007, 'A '); + insert into takes values('66259', '200', '2', 'Fall', 2002, 'A+'); + insert into takes values('30341', '158', '2', 'Spring', 2008, 'C-'); + insert into takes values('11201', '760', '1', 'Spring', 2004, 'B-'); + insert into takes values('4248', '476', '1', 'Fall', 2010, 'B '); + insert into takes values('5824', '735', '1', 'Spring', 2003, 'C '); + insert into takes values('33791', '408', '1', 'Spring', 2007, 'B+'); + insert into takes values('37581', '158', '2', 'Spring', 2008, 'B+'); + insert into takes values('34158', '482', '1', 'Fall', 2005, 'A+'); + insert into takes values('65433', '962', '1', 'Spring', 2008, 'B+'); + insert into takes values('82688', '496', '1', 'Fall', 2001, 'C '); + insert into takes values('51084', '679', '1', 'Spring', 2010, 'C-'); + insert into takes values('9114', '852', '1', 'Spring', 2008, 'A '); + insert into takes values('34404', '443', '2', 'Spring', 2002, 'A-'); + insert into takes values('50583', '105', '1', 'Fall', 2009, 'B '); + insert into takes values('20489', '408', '2', 'Spring', 2003, 'A-'); + insert into takes values('5871', '735', '1', 'Spring', 2003, 'B '); + insert into takes values('4508', '461', '1', 'Fall', 2002, 'B-'); + insert into takes values('94697', '489', '1', 'Fall', 2007, 'B+'); + insert into takes values('17397', '345', '1', 'Spring', 2008, 'B+'); + insert into takes values('95089', '408', '2', 'Spring', 2003, 'C+'); + insert into takes values('51862', '702', '1', 'Spring', 2001, 'B '); + insert into takes values('49813', '192', '1', 'Fall', 2002, 'B-'); + insert into takes values('288', '852', '1', 'Spring', 2008, 'A+'); + insert into takes values('65901', '366', '1', 'Fall', 2005, 'B+'); + insert into takes values('67810', '274', '1', 'Fall', 2002, 'C '); + insert into takes values('25331', '158', '1', 'Fall', 2008, 'C-'); + insert into takes values('53469', '461', '1', 'Fall', 2002, 'B '); + insert into takes values('57538', '426', '1', 'Spring', 2006, 'C+'); + insert into takes values('16993', '408', '1', 'Spring', 2007, 'C '); + insert into takes values('90814', '242', '1', 'Fall', 2009, 'C '); + insert into takes values('77021', '808', '1', 'Fall', 2003, 'C+'); + insert into takes values('99268', '362', '1', 'Fall', 2005, 'C+'); + insert into takes values('66212', '443', '2', 'Spring', 2002, 'B+'); + insert into takes values('20803', '408', '1', 'Spring', 2007, 'C-'); + insert into takes values('70572', '629', '1', 'Spring', 2003, 'C '); + insert into takes values('91799', '489', '1', 'Fall', 2007, 'C+'); + insert into takes values('93631', '974', '1', 'Fall', 2003, 'B '); + insert into takes values('92659', '791', '1', 'Spring', 2006, 'B+'); + insert into takes values('75123', '629', '1', 'Spring', 2003, 'A '); + insert into takes values('80651', '974', '1', 'Fall', 2003, 'C+'); + insert into takes values('19766', '421', '1', 'Fall', 2004, 'B '); + insert into takes values('19048', '366', '1', 'Fall', 2005, 'B+'); + insert into takes values('27043', '242', '1', 'Fall', 2009, 'B+'); + insert into takes values('68720', '476', '1', 'Fall', 2010, 'A-'); + insert into takes values('66763', '137', '1', 'Spring', 2002, 'A+'); + insert into takes values('80821', '366', '1', 'Fall', 2005, 'B+'); + insert into takes values('76768', '604', '1', 'Spring', 2009, 'B '); + insert into takes values('89234', '612', '1', 'Fall', 2007, 'A+'); + insert into takes values('96911', '401', '1', 'Fall', 2003, 'B+'); + insert into takes values('66281', '482', '1', 'Fall', 2005, 'B+'); + insert into takes values('35935', '893', '1', 'Fall', 2007, 'C '); + insert into takes values('54508', '408', '1', 'Spring', 2007, 'C-'); + insert into takes values('68278', '603', '1', 'Fall', 2003, 'C+'); + insert into takes values('61414', '258', '1', 'Fall', 2007, 'B-'); + insert into takes values('58465', '875', '1', 'Spring', 2005, 'C-'); + insert into takes values('1836', '679', '1', 'Spring', 2010, 'B '); + insert into takes values('97658', '468', '2', 'Fall', 2007, 'C '); + insert into takes values('75547', '443', '2', 'Spring', 2002, 'A '); + insert into takes values('66008', '237', '2', 'Fall', 2009, 'A-'); + insert into takes values('12069', '949', '1', 'Fall', 2007, 'C-'); + insert into takes values('78758', '258', '1', 'Fall', 2007, 'C+'); + insert into takes values('6195', '105', '1', 'Fall', 2009, 'B '); + insert into takes values('96741', '486', '1', 'Fall', 2009, 'A-'); + insert into takes values('68263', '158', '1', 'Fall', 2008, 'C+'); + insert into takes values('8140', '591', '1', 'Spring', 2005, 'B '); + insert into takes values('57026', '105', '2', 'Fall', 2002, 'A-'); + insert into takes values('60040', '702', '1', 'Spring', 2001, 'B-'); + insert into takes values('86736', '663', '1', 'Spring', 2005, 'C-'); + insert into takes values('4940', '242', '1', 'Fall', 2009, 'A-'); + insert into takes values('34502', '366', '1', 'Fall', 2005, 'B '); + insert into takes values('65443', '482', '1', 'Fall', 2005, 'C-'); + insert into takes values('89759', '274', '1', 'Fall', 2002, 'B+'); + insert into takes values('4438', '867', '1', 'Fall', 2006, 'B '); + insert into takes values('74163', '401', '1', 'Fall', 2003, 'B-'); + insert into takes values('6712', '852', '1', 'Spring', 2008, 'A+'); + insert into takes values('82039', '493', '1', 'Spring', 2010, 'C '); + insert into takes values('97629', '599', '1', 'Spring', 2003, 'A-'); + insert into takes values('68779', '237', '1', 'Spring', 2008, 'B+'); + insert into takes values('61737', '793', '1', 'Spring', 2002, 'B '); + insert into takes values('22057', '426', '1', 'Spring', 2006, 'C+'); + insert into takes values('69732', '927', '1', 'Fall', 2002, 'B '); + insert into takes values('32217', '545', '1', 'Fall', 2001, 'C '); + insert into takes values('20084', '486', '1', 'Fall', 2009, 'C-'); + insert into takes values('92839', '169', '2', 'Fall', 2002, 'C-'); + insert into takes values('63390', '468', '1', 'Fall', 2005, 'B '); + insert into takes values('12326', '735', '1', 'Spring', 2003, 'B+'); + insert into takes values('10454', '496', '1', 'Fall', 2001, 'B '); + insert into takes values('31516', '400', '1', 'Spring', 2007, 'A-'); + insert into takes values('48009', '808', '1', 'Fall', 2003, 'C '); + insert into takes values('85234', '802', '1', 'Spring', 2003, 'B '); + insert into takes values('17911', '468', '2', 'Fall', 2007, 'A '); + insert into takes values('78332', '366', '1', 'Fall', 2005, 'B-'); + insert into takes values('80247', '319', '1', 'Spring', 2003, 'A '); + insert into takes values('3833', '795', '1', 'Spring', 2004, 'A '); + insert into takes values('25528', '408', '1', 'Spring', 2007, 'C+'); + insert into takes values('94620', '158', '2', 'Spring', 2008, 'B '); + insert into takes values('69783', '852', '1', 'Spring', 2008, 'C+'); + insert into takes values('29031', '991', '1', 'Spring', 2008, 'A+'); + insert into takes values('87268', '735', '1', 'Spring', 2003, 'C-'); + insert into takes values('21692', '692', '1', 'Spring', 2010, 'A-'); + insert into takes values('33206', '591', '1', 'Spring', 2005, 'A-'); + insert into takes values('52120', '642', '1', 'Fall', 2004, 'C+'); + insert into takes values('48053', '274', '1', 'Fall', 2002, 'A-'); + insert into takes values('1220', '334', '1', 'Fall', 2009, 'A '); + insert into takes values('95366', '974', '1', 'Fall', 2003, 'A-'); + insert into takes values('31554', '486', '1', 'Fall', 2009, 'B '); + insert into takes values('46928', '239', '1', 'Fall', 2006, 'A '); + insert into takes values('89196', '476', '1', 'Fall', 2010, 'C-'); + insert into takes values('72165', '612', '1', 'Fall', 2007, 'B-'); + insert into takes values('27043', '408', '2', 'Spring', 2003, 'A+'); + insert into takes values('62226', '642', '1', 'Fall', 2004, 'C-'); + insert into takes values('16480', '443', '2', 'Spring', 2002, 'A '); + insert into takes values('25942', '482', '1', 'Fall', 2005, 'C+'); + insert into takes values('16057', '468', '1', 'Fall', 2005, 'C-'); + insert into takes values('15024', '692', '1', 'Spring', 2010, 'B+'); + insert into takes values('80248', '760', '1', 'Spring', 2004, 'B+'); + insert into takes values('83838', '239', '1', 'Fall', 2006, 'B-'); + insert into takes values('41741', '545', '1', 'Fall', 2001, 'A '); + insert into takes values('10527', '105', '1', 'Fall', 2009, 'B-'); + insert into takes values('78787', '408', '1', 'Spring', 2007, 'B-'); + insert into takes values('29665', '345', '1', 'Spring', 2008, 'C '); + insert into takes values('56', '443', '1', 'Spring', 2010, 'A+'); + insert into takes values('94324', '875', '1', 'Spring', 2005, 'A-'); + insert into takes values('88472', '408', '1', 'Spring', 2007, 'A+'); + insert into takes values('97590', '974', '1', 'Fall', 2003, 'B '); + insert into takes values('89393', '735', '1', 'Spring', 2003, 'C+'); + insert into takes values('17086', '200', '2', 'Fall', 2002, 'A-'); + insert into takes values('79892', '631', '1', 'Spring', 2007, 'C-'); + insert into takes values('61065', '802', '1', 'Spring', 2003, 'A '); + insert into takes values('46970', '352', '1', 'Spring', 2006, 'C-'); + insert into takes values('40059', '735', '2', 'Spring', 2010, 'A+'); + insert into takes values('88887', '401', '1', 'Fall', 2003, 'B '); + insert into takes values('13880', '445', '1', 'Spring', 2001, 'C-'); + insert into takes values('19342', '415', '1', 'Fall', 2010, 'A-'); + insert into takes values('25940', '559', '1', 'Fall', 2002, 'C '); + insert into takes values('18108', '760', '1', 'Spring', 2004, 'C-'); + insert into takes values('7861', '445', '1', 'Spring', 2001, 'C '); + insert into takes values('62754', '352', '1', 'Spring', 2006, 'B-'); + insert into takes values('44206', '867', '2', 'Fall', 2010, 'A '); + insert into takes values('56486', '400', '1', 'Spring', 2007, 'C+'); + insert into takes values('91442', '105', '2', 'Fall', 2002, 'A-'); + insert into takes values('26028', '864', '1', 'Spring', 2006, 'B+'); + insert into takes values('69752', '748', '1', 'Fall', 2003, 'C+'); + insert into takes values('19245', '169', '1', 'Spring', 2007, 'B-'); + insert into takes values('27236', '421', '1', 'Fall', 2004, 'B-'); + insert into takes values('93814', '200', '2', 'Fall', 2002, 'C+'); + insert into takes values('34392', '959', '1', 'Fall', 2006, 'A+'); + insert into takes values('92776', '702', '1', 'Spring', 2001, 'A-'); + insert into takes values('55915', '893', '1', 'Fall', 2007, 'C '); + insert into takes values('47487', '696', '1', 'Spring', 2002, 'A '); + insert into takes values('17057', '274', '1', 'Fall', 2002, 'C+'); + insert into takes values('99226', '991', '1', 'Spring', 2008, 'C-'); + insert into takes values('76743', '545', '1', 'Fall', 2001, 'A '); + insert into takes values('67657', '468', '2', 'Fall', 2007, 'B-'); + insert into takes values('70061', '843', '1', 'Fall', 2010, 'A+'); + insert into takes values('36657', '927', '1', 'Fall', 2002, 'B-'); + insert into takes values('46066', '747', '1', 'Spring', 2004, 'A '); + insert into takes values('67146', '421', '1', 'Fall', 2004, 'B '); + insert into takes values('6673', '559', '1', 'Fall', 2002, 'C '); + insert into takes values('80976', '237', '1', 'Spring', 2008, 'C-'); + insert into takes values('12711', '642', '1', 'Fall', 2004, 'A+'); + insert into takes values('39876', '349', '1', 'Spring', 2008, 'A-'); + insert into takes values('75513', '927', '1', 'Fall', 2002, 'B '); + insert into takes values('17769', '192', '1', 'Fall', 2002, 'A-'); + insert into takes values('72055', '239', '1', 'Fall', 2006, 'C-'); + insert into takes values('42565', '408', '2', 'Spring', 2003, 'C '); + insert into takes values('29514', '415', '1', 'Fall', 2010, 'C '); + insert into takes values('85534', '468', '2', 'Fall', 2007, 'C-'); + insert into takes values('8022', '237', '1', 'Spring', 2008, 'A+'); + insert into takes values('70235', '875', '1', 'Spring', 2005, 'A+'); + insert into takes values('26080', '603', '1', 'Fall', 2003, 'A-'); + insert into takes values('58594', '461', '1', 'Fall', 2002, 'B-'); + insert into takes values('48589', '200', '1', 'Spring', 2007, 'B-'); + insert into takes values('85809', '960', '2', 'Fall', 2006, 'C+'); + insert into takes values('35175', '200', '2', 'Fall', 2002, 'B '); + insert into takes values('54622', '704', '1', 'Spring', 2008, 'A+'); + insert into takes values('65038', '105', '2', 'Fall', 2002, 'B+'); + insert into takes values('8986', '867', '2', 'Fall', 2010, 'C-'); + insert into takes values('69730', '270', '1', 'Spring', 2010, 'C-'); + insert into takes values('41890', '867', '1', 'Fall', 2006, 'A+'); + insert into takes values('64401', '158', '1', 'Fall', 2008, 'C+'); + insert into takes values('3739', '791', '1', 'Spring', 2006, 'B '); + insert into takes values('37454', '694', '1', 'Fall', 2002, 'B+'); + insert into takes values('21552', '852', '1', 'Spring', 2008, 'A+'); + insert into takes values('23392', '760', '1', 'Spring', 2004, 'B-'); + insert into takes values('14668', '237', '2', 'Fall', 2009, 'A-'); + insert into takes values('38602', '893', '1', 'Fall', 2007, 'A '); + insert into takes values('1232', '489', '1', 'Fall', 2007, 'A-'); + insert into takes values('78332', '875', '1', 'Spring', 2005, 'C '); + insert into takes values('435', '679', '1', 'Spring', 2010, 'C-'); + insert into takes values('83953', '362', '2', 'Fall', 2006, 'C+'); + insert into takes values('61356', '105', '2', 'Fall', 2002, 'A+'); + insert into takes values('85226', '747', '1', 'Spring', 2004, 'A+'); + insert into takes values('17944', '482', '1', 'Fall', 2005, 'A '); + insert into takes values('8843', '642', '1', 'Fall', 2004, 'C+'); + insert into takes values('96911', '642', '1', 'Fall', 2004, 'C '); + insert into takes values('78481', '443', '1', 'Spring', 2010, 'B+'); + insert into takes values('21394', '274', '1', 'Fall', 2002, 'A-'); + insert into takes values('76057', '258', '1', 'Fall', 2007, 'C-'); + insert into takes values('34055', '461', '1', 'Fall', 2002, 'C-'); + insert into takes values('99977', '362', '2', 'Fall', 2006, 'B-'); + insert into takes values('65438', '158', '1', 'Fall', 2008, 'C-'); + insert into takes values('26147', '137', '1', 'Spring', 2002, 'C-'); + insert into takes values('65987', '105', '1', 'Fall', 2009, 'B+'); + insert into takes values('80254', '169', '2', 'Fall', 2002, 'C '); + insert into takes values('81245', '642', '1', 'Fall', 2004, 'A+'); + insert into takes values('6895', '852', '1', 'Spring', 2008, 'C '); + insert into takes values('95366', '642', '1', 'Fall', 2004, 'A-'); + insert into takes values('28133', '875', '1', 'Spring', 2005, 'B-'); + insert into takes values('32506', '192', '1', 'Fall', 2002, 'C+'); + insert into takes values('40738', '748', '1', 'Fall', 2003, 'C '); + insert into takes values('12941', '795', '1', 'Spring', 2004, 'A-'); + insert into takes values('52471', '362', '1', 'Fall', 2005, 'C-'); + insert into takes values('259', '421', '1', 'Fall', 2004, 'A+'); + insert into takes values('77364', '408', '2', 'Spring', 2003, 'B '); + insert into takes values('5005', '527', '1', 'Fall', 2004, 'A-'); + insert into takes values('31442', '875', '1', 'Spring', 2005, 'B '); + insert into takes values('99977', '270', '1', 'Spring', 2010, 'B-'); + insert into takes values('11682', '443', '1', 'Spring', 2010, 'C-'); + insert into takes values('29645', '192', '1', 'Fall', 2002, 'A+'); + insert into takes values('59117', '960', '2', 'Fall', 2006, 'C+'); + insert into takes values('4582', '974', '1', 'Fall', 2003, 'C+'); + insert into takes values('88085', '362', '3', 'Spring', 2008, 'B '); + insert into takes values('54296', '760', '1', 'Spring', 2004, 'A '); + insert into takes values('57538', '808', '1', 'Fall', 2003, 'A '); + insert into takes values('2561', '313', '1', 'Fall', 2010, 'C+'); + insert into takes values('63310', '694', '1', 'Fall', 2002, 'A+'); + insert into takes values('56124', '960', '1', 'Fall', 2009, 'C '); + insert into takes values('35462', '400', '2', 'Fall', 2003, 'C-'); + insert into takes values('21246', '443', '1', 'Spring', 2010, 'B+'); + insert into takes values('53451', '242', '1', 'Fall', 2009, 'B+'); + insert into takes values('96134', '991', '1', 'Spring', 2008, 'A+'); + insert into takes values('38696', '867', '2', 'Fall', 2010, 'C-'); + insert into takes values('67017', '426', '1', 'Spring', 2006, 'C '); + insert into takes values('93814', '468', '2', 'Fall', 2007, 'B+'); + insert into takes values('73213', '362', '3', 'Spring', 2008, 'C+'); + insert into takes values('10204', '408', '2', 'Spring', 2003, 'C '); + insert into takes values('22325', '274', '1', 'Fall', 2002, 'A '); + insert into takes values('42991', '200', '1', 'Spring', 2007, 'A-'); + insert into takes values('29140', '242', '1', 'Fall', 2009, 'A+'); + insert into takes values('62636', '366', '1', 'Fall', 2005, 'C-'); + insert into takes values('72501', '482', '1', 'Fall', 2005, 'B '); + insert into takes values('70235', '867', '1', 'Fall', 2006, 'C '); + insert into takes values('32056', '237', '2', 'Fall', 2009, 'B '); + insert into takes values('46970', '864', '1', 'Spring', 2006, 'C '); + insert into takes values('66008', '631', '1', 'Spring', 2007, 'C '); + insert into takes values('8517', '704', '1', 'Spring', 2008, 'A '); + insert into takes values('98870', '599', '1', 'Spring', 2003, 'B '); + insert into takes values('16631', '599', '1', 'Spring', 2003, 'C '); + insert into takes values('1000', '972', '1', 'Spring', 2009, 'B+'); + insert into takes values('68395', '802', '1', 'Spring', 2003, 'C '); + insert into takes values('18338', '426', '1', 'Spring', 2006, 'B+'); + insert into takes values('62749', '795', '1', 'Spring', 2004, 'C '); + insert into takes values('33645', '415', '1', 'Fall', 2010, 'C '); + insert into takes values('21337', '704', '1', 'Spring', 2008, 'B-'); + insert into takes values('108', '802', '1', 'Spring', 2003, 'A-'); + insert into takes values('20540', '421', '1', 'Fall', 2004, 'A '); + insert into takes values('73206', '679', '1', 'Spring', 2010, 'C '); + insert into takes values('94324', '626', '1', 'Fall', 2006, 'C-'); + insert into takes values('64820', '702', '1', 'Spring', 2001, 'A+'); + insert into takes values('45817', '338', '2', 'Spring', 2006, 'A-'); + insert into takes values('41091', '642', '1', 'Fall', 2004, 'A-'); + insert into takes values('7956', '962', '1', 'Spring', 2008, 'C-'); + insert into takes values('88887', '426', '1', 'Spring', 2006, 'C '); + insert into takes values('99369', '408', '1', 'Spring', 2007, 'A '); + insert into takes values('37946', '991', '1', 'Spring', 2008, 'C+'); + insert into takes values('76169', '426', '1', 'Spring', 2006, 'B-'); + insert into takes values('29002', '692', '1', 'Spring', 2010, 'C+'); + insert into takes values('5943', '158', '1', 'Fall', 2008, 'C+'); + insert into takes values('5703', '319', '1', 'Spring', 2003, 'B-'); + insert into takes values('58606', '696', '1', 'Spring', 2002, 'A+'); + insert into takes values('68554', '338', '2', 'Spring', 2006, 'A-'); + insert into takes values('73807', '612', '1', 'Fall', 2007, 'A '); + insert into takes values('19791', '200', '2', 'Fall', 2002, 'B '); + insert into takes values('75522', '421', '1', 'Fall', 2004, 'C '); + insert into takes values('29260', '345', '1', 'Spring', 2008, 'B+'); + insert into takes values('78332', '200', '2', 'Fall', 2002, 'B-'); + insert into takes values('847', '237', '1', 'Spring', 2008, 'A '); + insert into takes values('18554', '338', '1', 'Spring', 2007, 'C+'); + insert into takes values('15487', '486', '1', 'Fall', 2009, 'B+'); + insert into takes values('79487', '864', '1', 'Spring', 2006, 'B '); + insert into takes values('85211', '663', '1', 'Spring', 2005, 'C+'); + insert into takes values('96772', '362', '3', 'Spring', 2008, 'B+'); + insert into takes values('12979', '793', '1', 'Spring', 2002, 'B-'); + insert into takes values('7498', '791', '1', 'Spring', 2006, 'B+'); + insert into takes values('90814', '461', '1', 'Fall', 2002, 'A-'); + insert into takes values('20985', '270', '1', 'Spring', 2010, 'C+'); + insert into takes values('41450', '443', '1', 'Spring', 2010, 'A-'); + insert into takes values('14621', '237', '2', 'Fall', 2009, 'C+'); + insert into takes values('97023', '991', '1', 'Spring', 2008, 'A-'); + insert into takes values('51203', '642', '1', 'Fall', 2004, 'B+'); + insert into takes values('10727', '400', '2', 'Fall', 2003, 'C-'); + insert into takes values('72485', '972', '1', 'Spring', 2009, 'C '); + insert into takes values('88140', '545', '1', 'Fall', 2001, 'A+'); + insert into takes values('42565', '457', '1', 'Spring', 2001, 'A+'); + insert into takes values('85234', '692', '1', 'Spring', 2010, 'A-'); + insert into takes values('2561', '319', '1', 'Spring', 2003, 'A '); + insert into takes values('3487', '274', '1', 'Fall', 2002, 'A '); + insert into takes values('42956', '258', '1', 'Fall', 2007, 'C+'); + insert into takes values('49280', '242', '1', 'Fall', 2009, 'B '); + insert into takes values('6523', '793', '1', 'Spring', 2002, 'A-'); + insert into takes values('77580', '192', '1', 'Fall', 2002, 'C '); + insert into takes values('39619', '421', '1', 'Fall', 2004, 'C-'); + insert into takes values('60249', '959', '1', 'Fall', 2006, 'C+'); + insert into takes values('41261', '408', '1', 'Spring', 2007, 'C+'); + insert into takes values('85234', '242', '1', 'Fall', 2009, 'A+'); + insert into takes values('4004', '599', '1', 'Spring', 2003, 'B+'); + insert into takes values('34158', '338', '2', 'Spring', 2006, 'B+'); + insert into takes values('96324', '415', '1', 'Fall', 2010, 'C-'); + insert into takes values('51862', '496', '1', 'Fall', 2001, 'A '); + insert into takes values('28538', '791', '1', 'Spring', 2006, 'A '); + insert into takes values('32065', '493', '1', 'Spring', 2010, 'C-'); + insert into takes values('50969', '972', '1', 'Spring', 2009, 'B+'); + insert into takes values('31086', '274', '1', 'Fall', 2002, 'B '); + insert into takes values('32245', '482', '1', 'Fall', 2005, 'C-'); + insert into takes values('25528', '421', '1', 'Fall', 2004, 'C '); + insert into takes values('49244', '105', '1', 'Fall', 2009, 'C-'); + insert into takes values('40897', '400', '2', 'Fall', 2003, 'A-'); + insert into takes values('84039', '559', '1', 'Fall', 2002, 'B+'); + insert into takes values('62520', '679', '1', 'Spring', 2010, 'B+'); + insert into takes values('99710', '603', '1', 'Fall', 2003, 'B+'); + insert into takes values('81150', '486', '1', 'Fall', 2009, 'B-'); + insert into takes values('25718', '959', '1', 'Fall', 2006, 'B '); + insert into takes values('65190', '867', '1', 'Fall', 2006, 'C+'); + insert into takes values('58326', '349', '1', 'Spring', 2008, 'B '); + insert into takes values('25187', '735', '2', 'Spring', 2010, 'A+'); + insert into takes values('11101', '376', '1', 'Fall', 2006, 'C+'); + insert into takes values('20084', '242', '1', 'Fall', 2009, 'C '); + insert into takes values('18809', '959', '1', 'Fall', 2006, 'B+'); + insert into takes values('53496', '962', '1', 'Spring', 2008, 'A+'); + insert into takes values('48901', '991', '1', 'Spring', 2008, 'C '); + insert into takes values('90041', '629', '1', 'Spring', 2003, 'C-'); + insert into takes values('87054', '581', '1', 'Spring', 2005, 'B+'); + insert into takes values('3639', '408', '2', 'Spring', 2003, 'C+'); + insert into takes values('19293', '237', '1', 'Spring', 2008, 'B '); + insert into takes values('90234', '960', '2', 'Fall', 2006, 'C+'); + insert into takes values('30177', '457', '1', 'Spring', 2001, 'C+'); + insert into takes values('77000', '496', '1', 'Fall', 2001, 'B '); + insert into takes values('27727', '270', '1', 'Spring', 2010, 'A+'); + insert into takes values('69732', '242', '1', 'Fall', 2009, 'A+'); + insert into takes values('69581', '461', '1', 'Fall', 2002, 'B+'); + insert into takes values('68242', '735', '1', 'Spring', 2003, 'C '); + insert into takes values('74070', '105', '2', 'Fall', 2002, 'C '); + insert into takes values('43981', '415', '1', 'Fall', 2010, 'B-'); + insert into takes values('57334', '415', '1', 'Fall', 2010, 'B-'); + insert into takes values('70061', '376', '1', 'Fall', 2006, 'C-'); + insert into takes values('50743', '426', '1', 'Spring', 2006, 'B+'); + insert into takes values('60249', '867', '1', 'Fall', 2006, 'B '); + insert into takes values('10076', '237', '1', 'Spring', 2008, 'A-'); + insert into takes values('37818', '274', '1', 'Fall', 2002, 'C-'); + insert into takes values('5017', '694', '1', 'Fall', 2002, 'C+'); + insert into takes values('31101', '603', '1', 'Fall', 2003, 'B+'); + insert into takes values('45436', '158', '1', 'Fall', 2008, 'C '); + insert into takes values('64082', '192', '1', 'Fall', 2002, 'B '); + insert into takes values('64082', '443', '2', 'Spring', 2002, 'C-'); + insert into takes values('71630', '137', '1', 'Spring', 2002, 'B+'); + insert into takes values('34788', '571', '1', 'Spring', 2004, 'A+'); + insert into takes values('91569', '457', '1', 'Spring', 2001, 'A+'); + insert into takes values('61065', '493', '1', 'Spring', 2010, 'B-'); + insert into takes values('2419', '304', '1', 'Fall', 2009, 'A-'); + insert into takes values('92442', '421', '1', 'Fall', 2004, 'C+'); + insert into takes values('98359', '559', '1', 'Fall', 2002, 'B-'); + insert into takes values('90663', '443', '1', 'Spring', 2010, 'C '); + insert into takes values('43505', '426', '1', 'Spring', 2006, 'B-'); + insert into takes values('42960', '366', '1', 'Fall', 2005, 'C '); + insert into takes values('41751', '489', '1', 'Fall', 2007, 'B '); + insert into takes values('65714', '400', '1', 'Spring', 2007, 'C '); + insert into takes values('79772', '461', '1', 'Fall', 2002, 'C '); + insert into takes values('83136', '581', '1', 'Spring', 2005, 'A '); + insert into takes values('82970', '352', '1', 'Spring', 2006, 'C '); + insert into takes values('96246', '105', '2', 'Fall', 2002, 'C-'); + insert into takes values('30188', '927', '1', 'Fall', 2002, 'A '); + insert into takes values('7620', '169', '1', 'Spring', 2007, 'A+'); + insert into takes values('21789', '408', '1', 'Spring', 2007, 'A '); + insert into takes values('46260', '991', '1', 'Spring', 2008, 'C+'); + insert into takes values('74672', '808', '1', 'Fall', 2003, 'A '); + insert into takes values('91992', '158', '1', 'Fall', 2008, 'C '); + insert into takes values('12173', '239', '1', 'Fall', 2006, 'A+'); + insert into takes values('45359', '461', '1', 'Fall', 2002, 'A '); + insert into takes values('28738', '366', '1', 'Fall', 2005, 'A '); + insert into takes values('42625', '401', '1', 'Fall', 2003, 'A+'); + insert into takes values('19848', '482', '1', 'Fall', 2005, 'A-'); + insert into takes values('32483', '158', '2', 'Spring', 2008, 'B '); + insert into takes values('52057', '527', '1', 'Fall', 2004, 'A+'); + insert into takes values('82066', '735', '2', 'Spring', 2010, 'A '); + insert into takes values('16528', '974', '1', 'Fall', 2003, 'A '); + insert into takes values('83398', '401', '1', 'Fall', 2003, 'A '); + insert into takes values('79210', '486', '1', 'Fall', 2009, 'C-'); + insert into takes values('58634', '400', '2', 'Fall', 2003, 'C '); + insert into takes values('41675', '626', '1', 'Fall', 2006, 'A-'); + insert into takes values('18367', '334', '1', 'Fall', 2009, 'A-'); + insert into takes values('75231', '808', '1', 'Fall', 2003, 'B-'); + insert into takes values('1402', '366', '1', 'Fall', 2005, 'B-'); + insert into takes values('10527', '426', '1', 'Spring', 2006, 'A-'); + insert into takes values('56276', '702', '1', 'Spring', 2001, 'B '); + insert into takes values('90004', '313', '1', 'Fall', 2010, 'B+'); + insert into takes values('80610', '270', '1', 'Spring', 2010, 'C+'); + insert into takes values('99780', '696', '1', 'Spring', 2002, 'B '); + insert into takes values('23224', '694', '1', 'Fall', 2002, 'B '); + insert into takes values('52707', '496', '1', 'Fall', 2001, 'C '); + insert into takes values('27236', '334', '1', 'Fall', 2009, 'B '); + insert into takes values('35721', '476', '1', 'Fall', 2010, 'A-'); + insert into takes values('48776', '991', '1', 'Spring', 2008, 'C+'); + insert into takes values('73542', '949', '1', 'Fall', 2007, 'B-'); + insert into takes values('90609', '974', '1', 'Fall', 2003, 'C-'); + insert into takes values('108', '105', '2', 'Fall', 2002, 'B+'); + insert into takes values('16250', '345', '1', 'Spring', 2008, 'B-'); + insert into takes values('92949', '400', '1', 'Spring', 2007, 'B '); + insert into takes values('48589', '443', '1', 'Spring', 2010, 'B-'); + insert into takes values('6367', '362', '2', 'Fall', 2006, 'A+'); + insert into takes values('5393', '642', '1', 'Fall', 2004, 'C '); + insert into takes values('43130', '421', '1', 'Fall', 2004, 'A-'); + insert into takes values('63860', '875', '1', 'Spring', 2005, 'B '); + insert into takes values('92703', '791', '1', 'Spring', 2006, 'C '); + insert into takes values('8603', '802', '1', 'Spring', 2003, 'C+'); + insert into takes values('61527', '960', '1', 'Fall', 2009, 'A-'); + insert into takes values('49073', '791', '1', 'Spring', 2006, 'C-'); + insert into takes values('67293', '426', '1', 'Spring', 2006, 'C+'); + insert into takes values('52076', '631', '1', 'Spring', 2007, 'B+'); + insert into takes values('14484', '362', '3', 'Spring', 2008, 'C '); + insert into takes values('14032', '239', '1', 'Fall', 2006, 'B+'); + insert into takes values('66106', '169', '2', 'Fall', 2002, 'A-'); + insert into takes values('10454', '349', '1', 'Spring', 2008, 'A+'); + insert into takes values('77244', '527', '1', 'Fall', 2004, 'A+'); + insert into takes values('35905', '702', '1', 'Spring', 2001, 'C+'); + insert into takes values('65056', '642', '1', 'Fall', 2004, 'B '); + insert into takes values('95953', '426', '1', 'Spring', 2006, 'B+'); + insert into takes values('24197', '735', '2', 'Spring', 2010, 'C-'); + insert into takes values('90609', '334', '1', 'Fall', 2009, 'C+'); + insert into takes values('52750', '559', '1', 'Fall', 2002, 'C-'); + insert into takes values('92659', '545', '1', 'Fall', 2001, 'A+'); + insert into takes values('51008', '791', '1', 'Spring', 2006, 'B '); + insert into takes values('41751', '258', '1', 'Fall', 2007, 'C-'); + insert into takes values('90372', '421', '1', 'Fall', 2004, 'A+'); + insert into takes values('44881', '493', '1', 'Spring', 2010, 'A '); + insert into takes values('13749', '258', '1', 'Fall', 2007, 'A-'); + insert into takes values('18752', '493', '1', 'Spring', 2010, 'C-'); + insert into takes values('31993', '352', '1', 'Spring', 2006, 'A '); + insert into takes values('51238', '366', '1', 'Fall', 2005, 'A-'); + insert into takes values('23500', '748', '1', 'Fall', 2003, 'A '); + insert into takes values('68999', '864', '1', 'Spring', 2006, 'C-'); + insert into takes values('10481', '696', '1', 'Spring', 2002, 'C '); + insert into takes values('18675', '239', '1', 'Fall', 2006, 'A '); + insert into takes values('55000', '591', '1', 'Spring', 2005, 'A-'); + insert into takes values('78454', '642', '1', 'Fall', 2004, 'C+'); + insert into takes values('8603', '843', '1', 'Fall', 2010, 'A '); + insert into takes values('3335', '561', '1', 'Fall', 2006, 'C-'); + insert into takes values('22057', '400', '1', 'Spring', 2007, 'B+'); + insert into takes values('2561', '461', '1', 'Fall', 2002, 'A+'); + insert into takes values('82970', '527', '1', 'Fall', 2004, 'A+'); + insert into takes values('72528', '808', '1', 'Fall', 2003, 'C+'); + insert into takes values('48611', '461', '1', 'Fall', 2002, 'A-'); + insert into takes values('55238', '362', '2', 'Fall', 2006, 'A-'); + insert into takes values('98120', '642', '1', 'Fall', 2004, 'B-'); + insert into takes values('2848', '735', '2', 'Spring', 2010, 'B-'); + insert into takes values('63860', '960', '1', 'Fall', 2009, 'A '); + insert into takes values('35905', '443', '2', 'Spring', 2002, 'C-'); + insert into takes values('45570', '626', '1', 'Fall', 2006, 'B-'); + insert into takes values('59517', '604', '1', 'Spring', 2009, 'A+'); + insert into takes values('61065', '962', '1', 'Spring', 2008, 'C+'); + insert into takes values('52187', '274', '1', 'Fall', 2002, 'C-'); + insert into takes values('90089', '843', '1', 'Fall', 2010, 'A+'); + insert into takes values('74974', '401', '1', 'Fall', 2003, 'B+'); + insert into takes values('64938', '893', '1', 'Fall', 2007, 'C+'); + insert into takes values('42114', '158', '1', 'Fall', 2008, 'B '); + insert into takes values('72669', '400', '1', 'Spring', 2007, 'A '); + insert into takes values('25528', '875', '1', 'Spring', 2005, 'B-'); + insert into takes values('90234', '527', '1', 'Fall', 2004, 'C '); + insert into takes values('1087', '581', '1', 'Spring', 2005, 'B '); + insert into takes values('898', '468', '1', 'Fall', 2005, 'A+'); + insert into takes values('26473', '362', '2', 'Fall', 2006, 'B+'); + insert into takes values('91442', '401', '1', 'Fall', 2003, 'A+'); + insert into takes values('10904', '991', '1', 'Spring', 2008, 'B+'); + insert into takes values('11966', '258', '1', 'Fall', 2007, 'B '); + insert into takes values('11530', '864', '1', 'Spring', 2006, 'C-'); + insert into takes values('58170', '461', '1', 'Fall', 2002, 'C+'); + insert into takes values('95626', '927', '1', 'Fall', 2002, 'B-'); + insert into takes values('83557', '468', '2', 'Fall', 2007, 'B '); + insert into takes values('9993', '692', '1', 'Spring', 2010, 'B '); + insert into takes values('57538', '200', '1', 'Spring', 2007, 'A '); + insert into takes values('59848', '974', '1', 'Fall', 2003, 'A '); + insert into takes values('42565', '200', '2', 'Fall', 2002, 'C '); + insert into takes values('1018', '158', '1', 'Fall', 2008, 'A-'); + insert into takes values('5703', '468', '2', 'Fall', 2007, 'A+'); + insert into takes values('89051', '105', '2', 'Fall', 2002, 'B '); + insert into takes values('65715', '468', '2', 'Fall', 2007, 'C '); + insert into takes values('98940', '274', '1', 'Fall', 2002, 'B+'); + insert into takes values('8819', '571', '1', 'Spring', 2004, 'A '); + insert into takes values('63289', '793', '1', 'Spring', 2002, 'C+'); + insert into takes values('8192', '362', '3', 'Spring', 2008, 'C '); + insert into takes values('85981', '867', '1', 'Fall', 2006, 'C+'); + insert into takes values('163', '443', '1', 'Spring', 2010, 'C '); + insert into takes values('5393', '612', '1', 'Fall', 2007, 'B '); + insert into takes values('56212', '760', '1', 'Spring', 2004, 'A-'); + insert into takes values('28361', '415', '1', 'Fall', 2010, 'C+'); + insert into takes values('36402', '561', '1', 'Fall', 2006, 'A '); + insert into takes values('842', '169', '2', 'Fall', 2002, 'B+'); + insert into takes values('66259', '972', '1', 'Spring', 2009, 'C-'); + insert into takes values('51416', '274', '1', 'Fall', 2002, 'B '); + insert into takes values('44836', '415', '1', 'Fall', 2010, 'B-'); + insert into takes values('82687', '200', '1', 'Spring', 2007, 'A+'); + insert into takes values('65433', '735', '1', 'Spring', 2003, 'B '); + insert into takes values('17676', '445', '1', 'Spring', 2001, 'A+'); + insert into takes values('61364', '795', '1', 'Spring', 2004, 'A-'); + insert into takes values('1812', '237', '1', 'Spring', 2008, 'B+'); + insert into takes values('48247', '489', '1', 'Fall', 2007, 'B+'); + insert into takes values('66281', '581', '1', 'Spring', 2005, 'A-'); + insert into takes values('91569', '362', '3', 'Spring', 2008, 'A '); + insert into takes values('10705', '959', '1', 'Fall', 2006, 'A-'); + insert into takes values('73186', '571', '1', 'Spring', 2004, 'A+'); + insert into takes values('14874', '457', '1', 'Spring', 2001, 'A+'); + insert into takes values('67017', '599', '1', 'Spring', 2003, 'A+'); + insert into takes values('59908', '991', '1', 'Spring', 2008, 'B '); + insert into takes values('5208', '237', '1', 'Spring', 2008, 'A-'); + insert into takes values('70807', '927', '1', 'Fall', 2002, 'B-'); + insert into takes values('82868', '960', '1', 'Fall', 2009, 'A '); + insert into takes values('65038', '493', '1', 'Spring', 2010, 'B-'); + insert into takes values('61403', '793', '1', 'Spring', 2002, 'B-'); + insert into takes values('74796', '748', '1', 'Fall', 2003, 'A '); + insert into takes values('35685', '629', '1', 'Spring', 2003, 'B-'); + insert into takes values('76743', '599', '1', 'Spring', 2003, 'B '); + insert into takes values('8252', '415', '1', 'Fall', 2010, 'B-'); + insert into takes values('32772', '663', '1', 'Spring', 2005, 'A '); + insert into takes values('78911', '599', '1', 'Spring', 2003, 'A+'); + insert into takes values('90041', '349', '1', 'Spring', 2008, 'B '); + insert into takes values('68330', '258', '1', 'Fall', 2007, 'A+'); + insert into takes values('60762', '169', '2', 'Fall', 2002, 'A+'); + insert into takes values('39521', '679', '1', 'Spring', 2010, 'C+'); + insert into takes values('38973', '445', '1', 'Spring', 2001, 'C-'); + insert into takes values('83686', '760', '1', 'Spring', 2004, 'C+'); + insert into takes values('64820', '476', '1', 'Fall', 2010, 'A+'); + insert into takes values('17600', '604', '1', 'Spring', 2009, 'C+'); + insert into takes values('30943', '366', '1', 'Fall', 2005, 'B-'); + insert into takes values('15249', '192', '1', 'Fall', 2002, 'A+'); + insert into takes values('70359', '702', '1', 'Spring', 2001, 'C-'); + insert into takes values('19861', '974', '1', 'Fall', 2003, 'A '); + insert into takes values('30164', '626', '1', 'Fall', 2006, 'C-'); + insert into takes values('87651', '443', '2', 'Spring', 2002, 'B+'); + insert into takes values('60249', '239', '1', 'Fall', 2006, 'A-'); + insert into takes values('26080', '527', '1', 'Fall', 2004, 'A-'); + insert into takes values('58170', '304', '1', 'Fall', 2009, 'A-'); + insert into takes values('2139', '366', '1', 'Fall', 2005, 'B+'); + insert into takes values('74796', '893', '1', 'Fall', 2007, 'A-'); + insert into takes values('66229', '366', '1', 'Fall', 2005, 'B+'); + insert into takes values('94311', '493', '1', 'Spring', 2010, 'B '); + insert into takes values('53803', '791', '1', 'Spring', 2006, 'A '); + insert into takes values('7970', '338', '1', 'Spring', 2007, 'C+'); + insert into takes values('7620', '972', '1', 'Spring', 2009, 'A '); + insert into takes values('11202', '237', '1', 'Spring', 2008, 'A '); + insert into takes values('3833', '642', '1', 'Fall', 2004, 'B '); + insert into takes values('99780', '401', '1', 'Fall', 2003, 'A-'); + insert into takes values('21008', '237', '2', 'Fall', 2009, 'C-'); + insert into takes values('14869', '461', '1', 'Fall', 2002, 'C '); + insert into takes values('32419', '960', '1', 'Fall', 2009, 'A+'); + insert into takes values('23311', '401', '1', 'Fall', 2003, 'B-'); + insert into takes values('80698', '443', '1', 'Spring', 2010, 'B+'); + insert into takes values('39978', '629', '1', 'Spring', 2003, 'A '); + insert into takes values('82591', '696', '1', 'Spring', 2002, 'C-'); + insert into takes values('34331', '338', '1', 'Spring', 2007, 'B '); + insert into takes values('97023', '527', '1', 'Fall', 2004, 'B-'); + insert into takes values('76953', '192', '1', 'Fall', 2002, 'B-'); + insert into takes values('10917', '735', '1', 'Spring', 2003, 'B+'); + insert into takes values('827', '319', '1', 'Spring', 2003, 'C+'); + insert into takes values('1727', '927', '1', 'Fall', 2002, 'B-'); + insert into takes values('9256', '599', '1', 'Spring', 2003, 'B-'); + insert into takes values('39521', '274', '1', 'Fall', 2002, 'A '); + insert into takes values('65714', '974', '1', 'Fall', 2003, 'C-'); + insert into takes values('4355', '408', '2', 'Spring', 2003, 'B+'); + insert into takes values('2970', '867', '1', 'Fall', 2006, 'A '); + insert into takes values('77898', '802', '1', 'Spring', 2003, 'A+'); + insert into takes values('58081', '408', '1', 'Spring', 2007, 'B-'); + insert into takes values('13290', '408', '1', 'Spring', 2007, 'A-'); + insert into takes values('72669', '304', '1', 'Fall', 2009, 'B-'); + insert into takes values('99754', '760', '1', 'Spring', 2004, 'C+'); + insert into takes values('59530', '559', '1', 'Fall', 2002, 'A '); + insert into takes values('507', '443', '1', 'Spring', 2010, 'C-'); + insert into takes values('67793', '468', '2', 'Fall', 2007, 'B+'); + insert into takes values('16849', '959', '1', 'Fall', 2006, 'C+'); + insert into takes values('87831', '599', '1', 'Spring', 2003, 'B-'); + insert into takes values('50331', '696', '1', 'Spring', 2002, 'B-'); + insert into takes values('69285', '319', '1', 'Spring', 2003, 'A '); + insert into takes values('84704', '626', '1', 'Fall', 2006, 'A '); + insert into takes values('45436', '571', '1', 'Spring', 2004, 'B-'); + insert into takes values('7020', '735', '1', 'Spring', 2003, 'A '); + insert into takes values('92693', '760', '1', 'Spring', 2004, 'B+'); + insert into takes values('53424', '591', '1', 'Spring', 2005, 'A-'); + insert into takes values('70310', '426', '1', 'Spring', 2006, 'C '); + insert into takes values('89140', '169', '1', 'Spring', 2007, 'A '); + insert into takes values('21395', '242', '1', 'Fall', 2009, 'A '); + insert into takes values('56212', '679', '1', 'Spring', 2010, 'A '); + insert into takes values('20445', '748', '1', 'Fall', 2003, 'B '); + insert into takes values('931', '169', '2', 'Fall', 2002, 'C-'); + insert into takes values('6990', '972', '1', 'Spring', 2009, 'C+'); + insert into takes values('71630', '274', '1', 'Fall', 2002, 'C '); + insert into takes values('22532', '960', '1', 'Fall', 2009, 'A '); + insert into takes values('83557', '443', '1', 'Spring', 2010, 'C-'); + insert into takes values('94142', '482', '1', 'Fall', 2005, 'A-'); + insert into takes values('19917', '468', '2', 'Fall', 2007, 'A '); + insert into takes values('15430', '270', '1', 'Spring', 2010, 'C-'); + insert into takes values('63860', '192', '1', 'Fall', 2002, 'C+'); + insert into takes values('19848', '642', '1', 'Fall', 2004, 'B-'); + insert into takes values('41211', '629', '1', 'Spring', 2003, 'C-'); + insert into takes values('760', '581', '1', 'Spring', 2005, 'C '); + insert into takes values('42565', '366', '1', 'Fall', 2005, 'C-'); + insert into takes values('5336', '457', '1', 'Spring', 2001, 'C+'); + insert into takes values('32954', '559', '1', 'Fall', 2002, 'B '); + insert into takes values('75938', '105', '1', 'Fall', 2009, 'B-'); + insert into takes values('463', '631', '1', 'Spring', 2007, 'C-'); + insert into takes values('78581', '482', '1', 'Fall', 2005, 'A-'); + insert into takes values('61003', '338', '2', 'Spring', 2006, 'B-'); + insert into takes values('71426', '629', '1', 'Spring', 2003, 'C '); + insert into takes values('21101', '415', '1', 'Fall', 2010, 'A-'); + insert into takes values('26080', '795', '1', 'Spring', 2004, 'A '); + insert into takes values('77172', '972', '1', 'Spring', 2009, 'A '); + insert into takes values('46155', '270', '1', 'Spring', 2010, 'C+'); + insert into takes values('16347', '793', '1', 'Spring', 2002, 'B+'); + insert into takes values('81566', '802', '1', 'Spring', 2003, 'A '); + insert into takes values('96968', '696', '1', 'Spring', 2002, 'A-'); + insert into takes values('1110', '581', '1', 'Spring', 2005, 'A '); + insert into takes values('13352', '696', '1', 'Spring', 2002, 'A-'); + insert into takes values('99730', '105', '2', 'Fall', 2002, 'B+'); + insert into takes values('27017', '362', '3', 'Spring', 2008, 'C '); + insert into takes values('7620', '489', '1', 'Fall', 2007, 'A '); + insert into takes values('43211', '893', '1', 'Fall', 2007, 'B-'); + insert into takes values('28994', '482', '1', 'Fall', 2005, 'A '); + insert into takes values('78454', '362', '2', 'Fall', 2006, 'B+'); + insert into takes values('64550', '599', '1', 'Spring', 2003, 'A+'); + insert into takes values('11966', '599', '1', 'Spring', 2003, 'C '); + insert into takes values('35042', '631', '1', 'Spring', 2007, 'B+'); + insert into takes values('30110', '735', '1', 'Spring', 2003, 'C-'); + insert into takes values('95046', '974', '1', 'Fall', 2003, 'C '); + insert into takes values('93508', '974', '1', 'Fall', 2003, 'C+'); + insert into takes values('31442', '793', '1', 'Spring', 2002, 'C-'); + insert into takes values('13741', '793', '1', 'Spring', 2002, 'C '); + insert into takes values('15083', '443', '1', 'Spring', 2010, 'A+'); + insert into takes values('87222', '421', '1', 'Fall', 2004, 'C '); + insert into takes values('77218', '408', '2', 'Spring', 2003, 'B '); + insert into takes values('20195', '793', '1', 'Spring', 2002, 'C+'); + insert into takes values('46155', '408', '1', 'Spring', 2007, 'B-'); + insert into takes values('55238', '991', '1', 'Spring', 2008, 'A-'); + insert into takes values('52750', '974', '1', 'Fall', 2003, 'B '); + insert into takes values('93125', '237', '1', 'Spring', 2008, 'C-'); + insert into takes values('99719', '496', '1', 'Fall', 2001, 'A '); + insert into takes values('47126', '192', '1', 'Fall', 2002, 'A-'); + insert into takes values('51817', '415', '1', 'Fall', 2010, 'C-'); + insert into takes values('5898', '349', '1', 'Spring', 2008, 'C+'); + insert into takes values('52187', '401', '1', 'Fall', 2003, 'B-'); + insert into takes values('87784', '105', '1', 'Fall', 2009, 'C-'); + insert into takes values('31266', '362', '2', 'Fall', 2006, 'C-'); + insert into takes values('10481', '960', '1', 'Fall', 2009, 'A+'); + insert into takes values('63361', '612', '1', 'Fall', 2007, 'C '); + insert into takes values('58355', '408', '1', 'Spring', 2007, 'C-'); + insert into takes values('44703', '793', '1', 'Spring', 2002, 'A+'); + insert into takes values('81566', '421', '1', 'Fall', 2004, 'A+'); + insert into takes values('62716', '200', '1', 'Spring', 2007, 'A+'); + insert into takes values('91370', '362', '1', 'Fall', 2005, 'A-'); + insert into takes values('77415', '274', '1', 'Fall', 2002, 'B+'); + insert into takes values('78858', '169', '1', 'Spring', 2007, 'B+'); + insert into takes values('20445', '493', '1', 'Spring', 2010, 'A-'); + insert into takes values('66106', '304', '1', 'Fall', 2009, 'C '); + insert into takes values('44584', '949', '1', 'Fall', 2007, 'B+'); + insert into takes values('64642', '843', '1', 'Fall', 2010, 'A-'); + insert into takes values('13506', '559', '1', 'Fall', 2002, 'C+'); + insert into takes values('28316', '258', '1', 'Fall', 2007, 'C-'); + insert into takes values('29002', '604', '1', 'Spring', 2009, 'A+'); + insert into takes values('2177', '313', '1', 'Fall', 2010, 'C '); + insert into takes values('12683', '748', '1', 'Fall', 2003, 'C+'); + insert into takes values('24442', '426', '1', 'Spring', 2006, 'A+'); + insert into takes values('50658', '376', '1', 'Fall', 2006, 'C+'); + insert into takes values('16297', '400', '2', 'Fall', 2003, 'C-'); + insert into takes values('9953', '747', '1', 'Spring', 2004, 'B '); + insert into takes values('94726', '400', '2', 'Fall', 2003, 'B+'); + insert into takes values('59397', '527', '1', 'Fall', 2004, 'B+'); + insert into takes values('35905', '239', '1', 'Fall', 2006, 'B '); + insert into takes values('95099', '443', '1', 'Spring', 2010, 'C '); + insert into takes values('1110', '561', '1', 'Fall', 2006, 'A '); + insert into takes values('59673', '760', '1', 'Spring', 2004, 'B '); + insert into takes values('84865', '679', '1', 'Spring', 2010, 'C-'); + insert into takes values('88140', '748', '1', 'Fall', 2003, 'B+'); + insert into takes values('31137', '974', '1', 'Fall', 2003, 'A-'); + insert into takes values('27662', '893', '1', 'Fall', 2007, 'B+'); + insert into takes values('9947', '345', '1', 'Spring', 2008, 'B-'); + insert into takes values('28738', '604', '1', 'Spring', 2009, 'C+'); + insert into takes values('53152', '626', '1', 'Fall', 2006, 'C '); + insert into takes values('29091', '362', '3', 'Spring', 2008, 'C+'); + insert into takes values('52187', '482', '1', 'Fall', 2005, 'A+'); + insert into takes values('45570', '352', '1', 'Spring', 2006, 'B+'); + insert into takes values('48469', '679', '1', 'Spring', 2010, 'C-'); + insert into takes values('29920', '482', '1', 'Fall', 2005, 'A-'); + insert into takes values('77234', '352', '1', 'Spring', 2006, 'B '); + insert into takes values('19582', '972', '1', 'Spring', 2009, 'B-'); + insert into takes values('94815', '457', '1', 'Spring', 2001, 'A-'); + insert into takes values('19220', '545', '1', 'Fall', 2001, 'B-'); + insert into takes values('36791', '482', '1', 'Fall', 2005, 'B '); + insert into takes values('19362', '362', '1', 'Fall', 2005, 'A '); + insert into takes values('86674', '559', '1', 'Fall', 2002, 'A-'); + insert into takes values('87048', '927', '1', 'Fall', 2002, 'B '); + insert into takes values('45680', '867', '1', 'Fall', 2006, 'C-'); + insert into takes values('20099', '694', '1', 'Fall', 2002, 'C-'); + insert into takes values('98563', '426', '1', 'Spring', 2006, 'C-'); + insert into takes values('97042', '735', '1', 'Spring', 2003, 'B '); + insert into takes values('99647', '949', '1', 'Fall', 2007, 'C-'); + insert into takes values('50039', '362', '2', 'Fall', 2006, 'B '); + insert into takes values('42843', '400', '2', 'Fall', 2003, 'B+'); + insert into takes values('42114', '362', '3', 'Spring', 2008, 'B+'); + insert into takes values('15613', '571', '1', 'Spring', 2004, 'A '); + insert into takes values('17607', '400', '2', 'Fall', 2003, 'A '); + insert into takes values('66753', '702', '1', 'Spring', 2001, 'B '); + insert into takes values('38668', '864', '1', 'Spring', 2006, 'A-'); + insert into takes values('59290', '791', '1', 'Spring', 2006, 'C+'); + insert into takes values('81883', '561', '1', 'Fall', 2006, 'A+'); + insert into takes values('94815', '927', '1', 'Fall', 2002, 'A+'); + insert into takes values('23270', '679', '1', 'Spring', 2010, 'C+'); + insert into takes values('63361', '270', '1', 'Spring', 2010, 'A-'); + insert into takes values('45817', '200', '1', 'Spring', 2007, 'C+'); + insert into takes values('17831', '760', '1', 'Spring', 2004, 'C-'); + insert into takes values('88302', '274', '1', 'Fall', 2002, 'A+'); + insert into takes values('82402', '949', '1', 'Fall', 2007, 'A+'); + insert into takes values('80651', '274', '1', 'Fall', 2002, 'B '); + insert into takes values('13081', '867', '2', 'Fall', 2010, 'A+'); + insert into takes values('10663', '974', '1', 'Fall', 2003, 'C '); + insert into takes values('75513', '591', '1', 'Spring', 2005, 'A-'); + insert into takes values('45200', '631', '1', 'Spring', 2007, 'B-'); + insert into takes values('26028', '795', '1', 'Spring', 2004, 'B '); + insert into takes values('57511', '802', '1', 'Spring', 2003, 'B '); + insert into takes values('11057', '237', '2', 'Fall', 2009, 'A '); + insert into takes values('57160', '496', '1', 'Fall', 2001, 'B-'); + insert into takes values('84189', '192', '1', 'Fall', 2002, 'A-'); + insert into takes values('75547', '735', '2', 'Spring', 2010, 'B+'); + insert into takes values('21552', '545', '1', 'Fall', 2001, 'B+'); + insert into takes values('88553', '338', '1', 'Spring', 2007, 'B+'); + insert into takes values('95953', '239', '1', 'Fall', 2006, 'A '); + insert into takes values('73606', '401', '1', 'Fall', 2003, 'B-'); + insert into takes values('77898', '735', '1', 'Spring', 2003, 'A+'); + insert into takes values('842', '864', '1', 'Spring', 2006, 'C+'); + insert into takes values('71878', '496', '1', 'Fall', 2001, 'C+'); + insert into takes values('75116', '137', '1', 'Spring', 2002, 'B+'); + insert into takes values('67583', '274', '1', 'Fall', 2002, 'A-'); + insert into takes values('73602', '960', '2', 'Fall', 2006, 'A '); + insert into takes values('68516', '735', '2', 'Spring', 2010, 'C+'); + insert into takes values('10481', '169', '1', 'Spring', 2007, 'A '); + insert into takes values('30943', '791', '1', 'Spring', 2006, 'C-'); + insert into takes values('11422', '591', '1', 'Spring', 2005, 'C+'); + insert into takes values('59530', '793', '1', 'Spring', 2002, 'B-'); + insert into takes values('82646', '445', '1', 'Spring', 2001, 'B+'); + insert into takes values('99271', '694', '1', 'Fall', 2002, 'A-'); + insert into takes values('38902', '313', '1', 'Fall', 2010, 'C+'); + insert into takes values('63612', '242', '1', 'Fall', 2009, 'B-'); + insert into takes values('18286', '158', '1', 'Fall', 2008, 'A+'); + insert into takes values('33094', '468', '2', 'Fall', 2007, 'C '); + insert into takes values('22532', '169', '2', 'Fall', 2002, 'A-'); + insert into takes values('86075', '200', '1', 'Spring', 2007, 'C '); + insert into takes values('23934', '242', '1', 'Fall', 2009, 'A+'); + insert into takes values('19541', '400', '1', 'Spring', 2007, 'B-'); + insert into takes values('93354', '559', '1', 'Fall', 2002, 'A+'); + insert into takes values('84167', '603', '1', 'Fall', 2003, 'A+'); + insert into takes values('557', '461', '1', 'Fall', 2002, 'A '); + insert into takes values('65901', '599', '1', 'Spring', 2003, 'A+'); + insert into takes values('72521', '242', '1', 'Fall', 2009, 'B-'); + insert into takes values('18808', '962', '1', 'Spring', 2008, 'B '); + insert into takes values('74796', '443', '2', 'Spring', 2002, 'A+'); + insert into takes values('90009', '793', '1', 'Spring', 2002, 'B+'); + insert into takes values('64155', '415', '1', 'Fall', 2010, 'C '); + insert into takes values('65901', '345', '1', 'Spring', 2008, 'A-'); + insert into takes values('94990', '599', '1', 'Spring', 2003, 'B-'); + insert into takes values('30845', '426', '1', 'Spring', 2006, 'C '); + insert into takes values('22254', '867', '2', 'Fall', 2010, 'B '); + insert into takes values('17665', '496', '1', 'Fall', 2001, 'C-'); + insert into takes values('16347', '604', '1', 'Spring', 2009, 'B+'); + insert into takes values('57083', '461', '1', 'Fall', 2002, 'C '); + insert into takes values('88169', '696', '1', 'Spring', 2002, 'C+'); + insert into takes values('78787', '158', '2', 'Spring', 2008, 'B-'); + insert into takes values('80610', '137', '1', 'Spring', 2002, 'B-'); + insert into takes values('33882', '334', '1', 'Fall', 2009, 'C-'); + insert into takes values('52076', '362', '3', 'Spring', 2008, 'C-'); + insert into takes values('83314', '137', '1', 'Spring', 2002, 'A '); + insert into takes values('45494', '949', '1', 'Fall', 2007, 'A+'); + insert into takes values('86934', '972', '1', 'Spring', 2009, 'A+'); + insert into takes values('83314', '793', '1', 'Spring', 2002, 'A '); + insert into takes values('1000', '748', '1', 'Fall', 2003, 'A '); + insert into takes values('83686', '960', '1', 'Fall', 2009, 'A+'); + insert into takes values('86806', '545', '1', 'Fall', 2001, 'C+'); + insert into takes values('47265', '642', '1', 'Fall', 2004, 'B '); + insert into takes values('86552', '443', '1', 'Spring', 2010, 'A-'); + insert into takes values('16347', '960', '2', 'Fall', 2006, 'B '); + insert into takes values('99268', '694', '1', 'Fall', 2002, 'A+'); + insert into takes values('85614', '735', '2', 'Spring', 2010, 'A-'); + insert into takes values('59539', '476', '1', 'Fall', 2010, 'B '); + insert into takes values('69307', '760', '1', 'Spring', 2004, 'B '); + insert into takes values('98830', '795', '1', 'Spring', 2004, 'A-'); + insert into takes values('92040', '137', '1', 'Spring', 2002, 'B '); + insert into takes values('84727', '362', '3', 'Spring', 2008, 'B-'); + insert into takes values('86753', '408', '1', 'Spring', 2007, 'A '); + insert into takes values('56089', '581', '1', 'Spring', 2005, 'A-'); + insert into takes values('62549', '338', '2', 'Spring', 2006, 'B+'); + insert into takes values('60688', '169', '2', 'Fall', 2002, 'C-'); + insert into takes values('60688', '200', '1', 'Spring', 2007, 'A+'); + insert into takes values('61003', '493', '1', 'Spring', 2010, 'C+'); + insert into takes values('33817', '559', '1', 'Fall', 2002, 'B '); + insert into takes values('74016', '352', '1', 'Spring', 2006, 'B-'); + insert into takes values('61783', '426', '1', 'Spring', 2006, 'C-'); + insert into takes values('39114', '843', '1', 'Fall', 2010, 'B+'); + insert into takes values('64138', '105', '2', 'Fall', 2002, 'B '); + insert into takes values('18367', '362', '1', 'Fall', 2005, 'A-'); + insert into takes values('75362', '400', '1', 'Spring', 2007, 'A-'); + insert into takes values('81610', '362', '1', 'Fall', 2005, 'C '); + insert into takes values('77289', '482', '1', 'Fall', 2005, 'C+'); + insert into takes values('65433', '867', '2', 'Fall', 2010, 'C '); + insert into takes values('57242', '415', '1', 'Fall', 2010, 'B-'); + insert into takes values('47824', '304', '1', 'Fall', 2009, 'B-'); + insert into takes values('11083', '629', '1', 'Spring', 2003, 'A-'); + insert into takes values('30222', '960', '1', 'Fall', 2009, 'C+'); + insert into takes values('92040', '489', '1', 'Fall', 2007, 'C-'); + insert into takes values('6474', '482', '1', 'Fall', 2005, 'A+'); + insert into takes values('12078', '445', '1', 'Spring', 2001, 'A+'); + insert into takes values('30177', '376', '1', 'Fall', 2006, 'B+'); + insert into takes values('87706', '960', '2', 'Fall', 2006, 'C+'); + insert into takes values('41894', '304', '1', 'Fall', 2009, 'B '); + insert into takes values('63860', '468', '1', 'Fall', 2005, 'A-'); + insert into takes values('40932', '239', '1', 'Fall', 2006, 'A-'); + insert into takes values('83170', '808', '1', 'Fall', 2003, 'C-'); + insert into takes values('30124', '747', '1', 'Spring', 2004, 'B+'); + insert into takes values('10693', '692', '1', 'Spring', 2010, 'C+'); + insert into takes values('29091', '679', '1', 'Spring', 2010, 'C '); + insert into takes values('74911', '192', '1', 'Fall', 2002, 'A '); + insert into takes values('50743', '376', '1', 'Fall', 2006, 'C '); + insert into takes values('58874', '376', '1', 'Fall', 2006, 'A+'); + insert into takes values('95099', '735', '1', 'Spring', 2003, 'B '); + insert into takes values('69632', '408', '2', 'Spring', 2003, 'B-'); + insert into takes values('74530', '400', '2', 'Fall', 2003, 'A+'); + insert into takes values('48009', '875', '1', 'Spring', 2005, 'C+'); + insert into takes values('25611', '242', '1', 'Fall', 2009, 'C-'); + insert into takes values('50658', '200', '1', 'Spring', 2007, 'B '); + insert into takes values('5243', '362', '2', 'Fall', 2006, 'A+'); + insert into takes values('1826', '445', '1', 'Spring', 2001, 'C-'); + insert into takes values('52057', '443', '2', 'Spring', 2002, 'B+'); + insert into takes values('96117', '791', '1', 'Spring', 2006, 'C '); + insert into takes values('1836', '748', '1', 'Fall', 2003, 'A-'); + insert into takes values('14628', '366', '1', 'Fall', 2005, 'A-'); + insert into takes values('32483', '274', '1', 'Fall', 2002, 'C+'); + insert into takes values('2286', '791', '1', 'Spring', 2006, 'A-'); + insert into takes values('2286', '603', '1', 'Fall', 2003, 'C-'); + insert into takes values('87222', '362', '1', 'Fall', 2005, 'C '); + insert into takes values('75510', '867', '2', 'Fall', 2010, 'B '); + insert into takes values('65443', '362', '1', 'Fall', 2005, 'C+'); + insert into takes values('18808', '581', '1', 'Spring', 2005, 'C-'); + insert into takes values('14596', '629', '1', 'Spring', 2003, 'A-'); + insert into takes values('29260', '468', '2', 'Fall', 2007, 'A-'); + insert into takes values('29863', '760', '1', 'Spring', 2004, 'A-'); + insert into takes values('88358', '960', '1', 'Fall', 2009, 'C+'); + insert into takes values('16885', '482', '1', 'Fall', 2005, 'A+'); + insert into takes values('57156', '642', '1', 'Fall', 2004, 'A '); + insert into takes values('75928', '468', '2', 'Fall', 2007, 'B '); + insert into takes values('60267', '642', '1', 'Fall', 2004, 'C+'); + insert into takes values('50743', '603', '1', 'Fall', 2003, 'A-'); + insert into takes values('43854', '270', '1', 'Spring', 2010, 'B-'); + insert into takes values('84410', '493', '1', 'Spring', 2010, 'A-'); + insert into takes values('39254', '169', '2', 'Fall', 2002, 'C+'); + insert into takes values('56276', '258', '1', 'Fall', 2007, 'B '); + insert into takes values('96085', '319', '1', 'Spring', 2003, 'A+'); + insert into takes values('24374', '468', '2', 'Fall', 2007, 'B+'); + insert into takes values('56499', '192', '1', 'Fall', 2002, 'C '); + insert into takes values('85575', '791', '1', 'Spring', 2006, 'B+'); + insert into takes values('60224', '274', '1', 'Fall', 2002, 'A '); + insert into takes values('1836', '802', '1', 'Spring', 2003, 'B-'); + insert into takes values('82687', '338', '2', 'Spring', 2006, 'B+'); + insert into takes values('61527', '760', '1', 'Spring', 2004, 'A-'); + insert into takes values('3005', '137', '1', 'Spring', 2002, 'B '); + insert into takes values('8022', '334', '1', 'Fall', 2009, 'A+'); + insert into takes values('25552', '192', '1', 'Fall', 2002, 'C '); + insert into takes values('22179', '808', '1', 'Fall', 2003, 'C '); + insert into takes values('19766', '631', '1', 'Spring', 2007, 'A+'); + insert into takes values('81984', '270', '1', 'Spring', 2010, 'C+'); + insert into takes values('1826', '400', '1', 'Spring', 2007, 'A+'); + insert into takes values('48640', '795', '1', 'Spring', 2004, 'C+'); + insert into takes values('79170', '962', '1', 'Spring', 2008, 'A '); + insert into takes values('71529', '486', '1', 'Fall', 2009, 'A-'); + insert into takes values('45300', '867', '2', 'Fall', 2010, 'B '); + insert into takes values('14032', '893', '1', 'Fall', 2007, 'B+'); + insert into takes values('26695', '694', '1', 'Fall', 2002, 'B '); + insert into takes values('37449', '591', '1', 'Spring', 2005, 'B '); + insert into takes values('25077', '960', '2', 'Fall', 2006, 'B+'); + insert into takes values('10663', '362', '3', 'Spring', 2008, 'A '); + insert into takes values('67407', '169', '1', 'Spring', 2007, 'B-'); + insert into takes values('84727', '200', '1', 'Spring', 2007, 'B+'); + insert into takes values('93366', '735', '2', 'Spring', 2010, 'B-'); + insert into takes values('96178', '105', '1', 'Fall', 2009, 'C+'); + insert into takes values('14621', '476', '1', 'Fall', 2010, 'B-'); + insert into takes values('39612', '747', '1', 'Spring', 2004, 'A+'); + insert into takes values('61166', '400', '1', 'Spring', 2007, 'C '); + insert into takes values('40303', '960', '1', 'Fall', 2009, 'C '); + insert into takes values('94998', '875', '1', 'Spring', 2005, 'C '); + insert into takes values('66813', '735', '2', 'Spring', 2010, 'B+'); + insert into takes values('9460', '793', '1', 'Spring', 2002, 'B-'); + insert into takes values('87268', '493', '1', 'Spring', 2010, 'B '); + insert into takes values('38691', '631', '1', 'Spring', 2007, 'B '); + insert into takes values('30124', '702', '1', 'Spring', 2001, 'B '); + insert into takes values('45720', '349', '1', 'Spring', 2008, 'C+'); + insert into takes values('89234', '352', '1', 'Spring', 2006, 'B+'); + insert into takes values('96968', '612', '1', 'Fall', 2007, 'B-'); + insert into takes values('93043', '362', '3', 'Spring', 2008, 'C-'); + insert into takes values('11578', '692', '1', 'Spring', 2010, 'A '); + insert into takes values('32376', '362', '2', 'Fall', 2006, 'C '); + insert into takes values('80610', '748', '1', 'Fall', 2003, 'C+'); + insert into takes values('38691', '893', '1', 'Fall', 2007, 'C+'); + insert into takes values('5399', '476', '1', 'Fall', 2010, 'A+'); + insert into takes values('9953', '237', '2', 'Fall', 2009, 'A '); + insert into takes values('79763', '808', '1', 'Fall', 2003, 'C+'); + insert into takes values('70098', '679', '1', 'Spring', 2010, 'A-'); + insert into takes values('81538', '362', '3', 'Spring', 2008, 'A '); + insert into takes values('97694', '735', '1', 'Spring', 2003, 'B+'); + insert into takes values('56003', '352', '1', 'Spring', 2006, 'A-'); + insert into takes values('67657', '747', '1', 'Spring', 2004, 'B-'); + insert into takes values('80821', '239', '1', 'Fall', 2006, 'A '); + insert into takes values('35462', '105', '2', 'Fall', 2002, 'B-'); + insert into takes values('13023', '486', '1', 'Fall', 2009, 'A '); + insert into takes values('41741', '468', '1', 'Fall', 2005, 'B '); + insert into takes values('87246', '408', '1', 'Spring', 2007, 'B-'); + insert into takes values('35462', '319', '1', 'Spring', 2003, 'C-'); + insert into takes values('43658', '702', '1', 'Spring', 2001, 'C-'); + insert into takes values('72657', '702', '1', 'Spring', 2001, 'C '); + insert into takes values('92464', '527', '1', 'Fall', 2004, 'A '); + insert into takes values('1285', '258', '1', 'Fall', 2007, 'B '); + insert into takes values('18775', '158', '2', 'Spring', 2008, 'B-'); + insert into takes values('24784', '421', '1', 'Fall', 2004, 'B-'); + insert into takes values('34404', '158', '1', 'Fall', 2008, 'C+'); + insert into takes values('13826', '760', '1', 'Spring', 2004, 'A-'); + insert into takes values('45650', '626', '1', 'Fall', 2006, 'B '); + insert into takes values('29871', '338', '1', 'Spring', 2007, 'C+'); + insert into takes values('56139', '468', '1', 'Fall', 2005, 'C+'); + insert into takes values('35220', '482', '1', 'Fall', 2005, 'C-'); + insert into takes values('65144', '486', '1', 'Fall', 2009, 'B '); + insert into takes values('85602', '694', '1', 'Fall', 2002, 'A '); + insert into takes values('66008', '408', '1', 'Spring', 2007, 'B '); + insert into takes values('6287', '604', '1', 'Spring', 2009, 'B-'); + insert into takes values('89297', '702', '1', 'Spring', 2001, 'A '); + insert into takes values('7204', '415', '1', 'Fall', 2010, 'A '); + insert into takes values('78116', '421', '1', 'Fall', 2004, 'A '); + insert into takes values('63538', '867', '1', 'Fall', 2006, 'A '); + insert into takes values('57190', '793', '1', 'Spring', 2002, 'C+'); + insert into takes values('34957', '362', '1', 'Fall', 2005, 'A-'); + insert into takes values('17057', '457', '1', 'Spring', 2001, 'C '); + insert into takes values('10527', '599', '1', 'Spring', 2003, 'A+'); + insert into takes values('64138', '408', '1', 'Spring', 2007, 'A+'); + insert into takes values('67655', '875', '1', 'Spring', 2005, 'B-'); + insert into takes values('58465', '352', '1', 'Spring', 2006, 'C+'); + insert into takes values('44816', '604', '1', 'Spring', 2009, 'A '); + insert into takes values('17676', '158', '2', 'Spring', 2008, 'A '); + insert into takes values('58594', '864', '1', 'Spring', 2006, 'A '); + insert into takes values('39881', '735', '1', 'Spring', 2003, 'C '); + insert into takes values('29260', '679', '1', 'Spring', 2010, 'A-'); + insert into takes values('35198', '679', '1', 'Spring', 2010, 'C+'); + insert into takes values('79534', '468', '2', 'Fall', 2007, 'A-'); + insert into takes values('23475', '242', '1', 'Fall', 2009, 'A+'); + insert into takes values('67655', '445', '1', 'Spring', 2001, 'A+'); + insert into takes values('38691', '105', '2', 'Fall', 2002, 'C '); + insert into takes values('36102', '421', '1', 'Fall', 2004, 'C-'); + insert into takes values('56755', '972', '1', 'Spring', 2009, 'B+'); + insert into takes values('11201', '959', '1', 'Fall', 2006, 'C '); + insert into takes values('55286', '748', '1', 'Fall', 2003, 'A+'); + insert into takes values('64067', '795', '1', 'Spring', 2004, 'A '); + insert into takes values('90089', '461', '1', 'Fall', 2002, 'A '); + insert into takes values('71529', '313', '1', 'Fall', 2010, 'C+'); + insert into takes values('76270', '927', '1', 'Fall', 2002, 'A-'); + insert into takes values('67657', '319', '1', 'Spring', 2003, 'C+'); + insert into takes values('60366', '612', '1', 'Fall', 2007, 'A '); + insert into takes values('62754', '852', '1', 'Spring', 2008, 'B '); + insert into takes values('32954', '445', '1', 'Spring', 2001, 'C-'); + insert into takes values('12615', '692', '1', 'Spring', 2010, 'B '); + insert into takes values('38691', '258', '1', 'Fall', 2007, 'B '); + insert into takes values('8252', '581', '1', 'Spring', 2005, 'A+'); + insert into takes values('20378', '362', '2', 'Fall', 2006, 'B+'); + insert into takes values('86674', '401', '1', 'Fall', 2003, 'B+'); + insert into takes values('10076', '482', '1', 'Fall', 2005, 'A+'); + insert into takes values('77415', '852', '1', 'Spring', 2008, 'A-'); + insert into takes values('64192', '482', '1', 'Fall', 2005, 'B-'); + insert into takes values('92965', '604', '1', 'Spring', 2009, 'A-'); + insert into takes values('94766', '468', '1', 'Fall', 2005, 'C+'); + insert into takes values('65681', '791', '1', 'Spring', 2006, 'A '); + insert into takes values('37219', '362', '2', 'Fall', 2006, 'C-'); + insert into takes values('87015', '362', '2', 'Fall', 2006, 'B-'); + insert into takes values('65703', '274', '1', 'Fall', 2002, 'C '); + insert into takes values('53077', '591', '1', 'Spring', 2005, 'B-'); + insert into takes values('36791', '313', '1', 'Fall', 2010, 'B-'); + insert into takes values('93043', '443', '1', 'Spring', 2010, 'C '); + insert into takes values('62226', '663', '1', 'Spring', 2005, 'A '); + insert into takes values('51868', '604', '1', 'Spring', 2009, 'B+'); + insert into takes values('96895', '626', '1', 'Fall', 2006, 'B '); + insert into takes values('69952', '735', '2', 'Spring', 2010, 'A+'); + insert into takes values('53588', '527', '1', 'Fall', 2004, 'C '); + insert into takes values('82063', '468', '2', 'Fall', 2007, 'A+'); + insert into takes values('14432', '313', '1', 'Fall', 2010, 'A '); + insert into takes values('53496', '599', '1', 'Spring', 2003, 'A-'); + insert into takes values('50331', '692', '1', 'Spring', 2010, 'C+'); + insert into takes values('52707', '642', '1', 'Fall', 2004, 'A '); + insert into takes values('72186', '362', '2', 'Fall', 2006, 'B+'); + insert into takes values('65987', '349', '1', 'Spring', 2008, 'C+'); + insert into takes values('32744', '735', '2', 'Spring', 2010, 'C '); + insert into takes values('87624', '760', '1', 'Spring', 2004, 'A+'); + insert into takes values('24387', '629', '1', 'Spring', 2003, 'A '); + insert into takes values('80610', '400', '2', 'Fall', 2003, 'A '); + insert into takes values('32130', '476', '1', 'Fall', 2010, 'B '); + insert into takes values('63502', '545', '1', 'Fall', 2001, 'B+'); + insert into takes values('57511', '105', '2', 'Fall', 2002, 'C '); + insert into takes values('23373', '808', '1', 'Fall', 2003, 'A-'); + insert into takes values('90779', '599', '1', 'Spring', 2003, 'B+'); + insert into takes values('29849', '663', '1', 'Spring', 2005, 'A-'); + insert into takes values('88389', '545', '1', 'Fall', 2001, 'A '); + insert into takes values('16453', '105', '2', 'Fall', 2002, 'C-'); + insert into takes values('34170', '334', '1', 'Fall', 2009, 'B-'); + insert into takes values('72186', '629', '1', 'Spring', 2003, 'A '); + insert into takes values('49759', '362', '2', 'Fall', 2006, 'B-'); + insert into takes values('89106', '362', '3', 'Spring', 2008, 'A-'); + insert into takes values('7020', '105', '1', 'Fall', 2009, 'A '); + insert into takes values('75878', '476', '1', 'Fall', 2010, 'B+'); + insert into takes values('83214', '304', '1', 'Fall', 2009, 'A-'); + insert into takes values('88140', '468', '1', 'Fall', 2005, 'A-'); + insert into takes values('50386', '338', '1', 'Spring', 2007, 'B+'); + insert into takes values('1087', '561', '1', 'Fall', 2006, 'A-'); + insert into takes values('69679', '415', '1', 'Fall', 2010, 'A-'); + insert into takes values('71904', '864', '1', 'Spring', 2006, 'A '); + insert into takes values('59848', '443', '2', 'Spring', 2002, 'A '); + insert into takes values('17911', '137', '1', 'Spring', 2002, 'C '); + insert into takes values('49391', '493', '1', 'Spring', 2010, 'B+'); + insert into takes values('67810', '991', '1', 'Spring', 2008, 'C+'); + insert into takes values('76250', '400', '2', 'Fall', 2003, 'A '); + insert into takes values('43130', '443', '2', 'Spring', 2002, 'C '); + insert into takes values('8251', '338', '2', 'Spring', 2006, 'A+'); + insert into takes values('10838', '400', '2', 'Fall', 2003, 'B '); + insert into takes values('87268', '748', '1', 'Fall', 2003, 'B+'); + insert into takes values('34197', '408', '2', 'Spring', 2003, 'C-'); + insert into takes values('27528', '747', '1', 'Spring', 2004, 'A-'); + insert into takes values('70572', '400', '1', 'Spring', 2007, 'B-'); + insert into takes values('20084', '482', '1', 'Fall', 2005, 'A-'); + insert into takes values('69758', '599', '1', 'Spring', 2003, 'B+'); + insert into takes values('38973', '468', '2', 'Fall', 2007, 'B-'); + insert into takes values('93491', '443', '2', 'Spring', 2002, 'B '); + insert into takes values('83398', '960', '1', 'Fall', 2009, 'A+'); + insert into takes values('41345', '400', '1', 'Spring', 2007, 'A '); + insert into takes values('8343', '105', '1', 'Fall', 2009, 'A '); + insert into takes values('53728', '366', '1', 'Fall', 2005, 'C-'); + insert into takes values('48471', '158', '2', 'Spring', 2008, 'A '); + insert into takes values('24374', '603', '1', 'Fall', 2003, 'A-'); + insert into takes values('85356', '748', '1', 'Fall', 2003, 'C+'); + insert into takes values('163', '304', '1', 'Fall', 2009, 'B-'); + insert into takes values('98940', '313', '1', 'Fall', 2010, 'A-'); + insert into takes values('20814', '426', '1', 'Spring', 2006, 'B+'); + insert into takes values('19450', '747', '1', 'Spring', 2004, 'C '); + insert into takes values('2967', '169', '1', 'Spring', 2007, 'C '); + insert into takes values('58413', '486', '1', 'Fall', 2009, 'A '); + insert into takes values('22004', '642', '1', 'Fall', 2004, 'A '); + insert into takes values('27094', '599', '1', 'Spring', 2003, 'A+'); + insert into takes values('34957', '760', '1', 'Spring', 2004, 'B+'); + insert into takes values('43854', '702', '1', 'Spring', 2001, 'C+'); + insert into takes values('86674', '242', '1', 'Fall', 2009, 'B+'); + insert into takes values('96772', '258', '1', 'Fall', 2007, 'A-'); + insert into takes values('47265', '631', '1', 'Spring', 2007, 'A '); + insert into takes values('3335', '415', '1', 'Fall', 2010, 'A '); + insert into takes values('43495', '237', '2', 'Fall', 2009, 'C-'); + insert into takes values('87831', '496', '1', 'Fall', 2001, 'C-'); + insert into takes values('90234', '200', '2', 'Fall', 2002, 'B+'); + insert into takes values('23475', '362', '1', 'Fall', 2005, 'A+'); + insert into takes values('19048', '362', '3', 'Spring', 2008, 'C-'); + insert into takes values('96206', '338', '1', 'Spring', 2007, 'A+'); + insert into takes values('69853', '457', '1', 'Spring', 2001, 'B '); + insert into takes values('99289', '242', '1', 'Fall', 2009, 'A+'); + insert into takes values('20985', '760', '1', 'Spring', 2004, 'B-'); + insert into takes values('90181', '400', '1', 'Spring', 2007, 'C-'); + insert into takes values('50944', '169', '2', 'Fall', 2002, 'A '); + insert into takes values('19638', '960', '2', 'Fall', 2006, 'B-'); + insert into takes values('98019', '704', '1', 'Spring', 2008, 'C-'); + insert into takes values('79170', '591', '1', 'Spring', 2005, 'C+'); + insert into takes values('84808', '974', '1', 'Fall', 2003, 'A-'); + insert into takes values('39580', '875', '1', 'Spring', 2005, 'A '); + insert into takes values('25380', '476', '1', 'Fall', 2010, 'C-'); + insert into takes values('61354', '843', '1', 'Fall', 2010, 'A+'); + insert into takes values('27919', '366', '1', 'Fall', 2005, 'A+'); + insert into takes values('14023', '493', '1', 'Spring', 2010, 'B '); + insert into takes values('70061', '795', '1', 'Spring', 2004, 'C-'); + insert into takes values('91442', '559', '1', 'Fall', 2002, 'C '); + insert into takes values('47677', '561', '1', 'Fall', 2006, 'B-'); + insert into takes values('18469', '527', '1', 'Fall', 2004, 'B '); + insert into takes values('931', '415', '1', 'Fall', 2010, 'B '); + insert into takes values('25187', '258', '1', 'Fall', 2007, 'A '); + insert into takes values('73602', '972', '1', 'Spring', 2009, 'A-'); + insert into takes values('36402', '559', '1', 'Fall', 2002, 'A-'); + insert into takes values('28352', '791', '1', 'Spring', 2006, 'B+'); + insert into takes values('75938', '270', '1', 'Spring', 2010, 'C '); + insert into takes values('13211', '408', '2', 'Spring', 2003, 'B-'); + insert into takes values('41674', '200', '1', 'Spring', 2007, 'C '); + insert into takes values('25611', '489', '1', 'Fall', 2007, 'C-'); + insert into takes values('97023', '200', '1', 'Spring', 2007, 'C+'); + insert into takes values('53089', '200', '2', 'Fall', 2002, 'A '); + insert into takes values('14596', '612', '1', 'Fall', 2007, 'B-'); + insert into takes values('49684', '972', '1', 'Spring', 2009, 'C+'); + insert into takes values('17133', '795', '1', 'Spring', 2004, 'B-'); + insert into takes values('792', '445', '1', 'Spring', 2001, 'C '); + insert into takes values('24746', '400', '1', 'Spring', 2007, 'B+'); + insert into takes values('2795', '408', '1', 'Spring', 2007, 'C+'); + insert into takes values('70395', '852', '1', 'Spring', 2008, 'B-'); + insert into takes values('84702', '893', '1', 'Fall', 2007, 'C '); + insert into takes values('18469', '200', '1', 'Spring', 2007, 'B+'); + insert into takes values('86981', '400', '1', 'Spring', 2007, 'C-'); + insert into takes values('82591', '192', '1', 'Fall', 2002, 'C '); + insert into takes values('76799', '760', '1', 'Spring', 2004, 'B+'); + insert into takes values('46450', '352', '1', 'Spring', 2006, 'C+'); + insert into takes values('94620', '760', '1', 'Spring', 2004, 'C+'); + insert into takes values('19203', '875', '1', 'Spring', 2005, 'C+'); + insert into takes values('21394', '748', '1', 'Fall', 2003, 'B-'); + insert into takes values('5336', '366', '1', 'Fall', 2005, 'C-'); + insert into takes values('69679', '304', '1', 'Fall', 2009, 'A+'); + insert into takes values('57213', '158', '2', 'Spring', 2008, 'A+'); + insert into takes values('18108', '696', '1', 'Spring', 2002, 'C '); + insert into takes values('72006', '747', '1', 'Spring', 2004, 'A '); + insert into takes values('72741', '893', '1', 'Fall', 2007, 'B-'); + insert into takes values('35685', '105', '2', 'Fall', 2002, 'C '); + insert into takes values('57123', '795', '1', 'Spring', 2004, 'B '); + insert into takes values('1460', '401', '1', 'Fall', 2003, 'A-'); + insert into takes values('30845', '704', '1', 'Spring', 2008, 'C-'); + insert into takes values('38973', '486', '1', 'Fall', 2009, 'B+'); + insert into takes values('3640', '468', '1', 'Fall', 2005, 'C+'); + insert into takes values('72768', '629', '1', 'Spring', 2003, 'B '); + insert into takes values('34404', '704', '1', 'Spring', 2008, 'B '); + insert into takes values('81031', '237', '1', 'Spring', 2008, 'B+'); + insert into takes values('71287', '158', '2', 'Spring', 2008, 'B-'); + insert into takes values('99730', '319', '1', 'Spring', 2003, 'C '); + insert into takes values('95089', '237', '2', 'Fall', 2009, 'A+'); + insert into takes values('93004', '237', '2', 'Fall', 2009, 'C '); + insert into takes values('557', '366', '1', 'Fall', 2005, 'B '); + insert into takes values('22003', '408', '1', 'Spring', 2007, 'A '); + insert into takes values('90082', '304', '1', 'Fall', 2009, 'B-'); + insert into takes values('47025', '612', '1', 'Fall', 2007, 'B+'); + insert into takes values('94836', '313', '1', 'Fall', 2010, 'C+'); + insert into takes values('53803', '445', '1', 'Spring', 2001, 'C '); + insert into takes values('62832', '158', '1', 'Fall', 2008, 'A '); + insert into takes values('99073', '545', '1', 'Fall', 2001, 'A-'); + insert into takes values('93061', '802', '1', 'Spring', 2003, 'B+'); + insert into takes values('78858', '603', '1', 'Fall', 2003, 'C+'); + insert into takes values('32130', '362', '2', 'Fall', 2006, 'C+'); + insert into takes values('63560', '362', '2', 'Fall', 2006, 'C-'); + insert into takes values('75173', '599', '1', 'Spring', 2003, 'C-'); + insert into takes values('28977', '791', '1', 'Spring', 2006, 'A+'); + insert into takes values('5871', '376', '1', 'Fall', 2006, 'B '); + insert into takes values('57190', '760', '1', 'Spring', 2004, 'B '); + insert into takes values('75560', '875', '1', 'Spring', 2005, 'A-'); + insert into takes values('59530', '962', '1', 'Spring', 2008, 'B-'); + insert into takes values('59908', '313', '1', 'Fall', 2010, 'A-'); + insert into takes values('93508', '959', '1', 'Fall', 2006, 'C-'); + insert into takes values('88169', '158', '1', 'Fall', 2008, 'A+'); + insert into takes values('41491', '561', '1', 'Fall', 2006, 'B-'); + insert into takes values('29514', '408', '1', 'Spring', 2007, 'B '); + insert into takes values('94766', '802', '1', 'Spring', 2003, 'C '); + insert into takes values('66293', '603', '1', 'Fall', 2003, 'B '); + insert into takes values('44584', '604', '1', 'Spring', 2009, 'C-'); + insert into takes values('25046', '158', '1', 'Fall', 2008, 'C+'); + insert into takes values('22086', '476', '1', 'Fall', 2010, 'C+'); + insert into takes values('31554', '461', '1', 'Fall', 2002, 'A '); + insert into takes values('45002', '599', '1', 'Spring', 2003, 'A+'); + insert into takes values('56849', '960', '2', 'Fall', 2006, 'C '); + insert into takes values('72959', '468', '2', 'Fall', 2007, 'C '); + insert into takes values('15283', '629', '1', 'Spring', 2003, 'B-'); + insert into takes values('75231', '376', '1', 'Fall', 2006, 'C-'); + insert into takes values('4015', '376', '1', 'Fall', 2006, 'B+'); + insert into takes values('16035', '694', '1', 'Fall', 2002, 'B-'); + insert into takes values('94836', '960', '1', 'Fall', 2009, 'B+'); + insert into takes values('6209', '496', '1', 'Fall', 2001, 'B+'); + insert into takes values('66484', '867', '2', 'Fall', 2010, 'B '); + insert into takes values('70918', '960', '2', 'Fall', 2006, 'A-'); + insert into takes values('1737', '362', '1', 'Fall', 2005, 'B '); + insert into takes values('8517', '158', '2', 'Spring', 2008, 'A+'); + insert into takes values('42843', '408', '1', 'Spring', 2007, 'B-'); + insert into takes values('74473', '482', '1', 'Fall', 2005, 'B '); + insert into takes values('98423', '663', '1', 'Spring', 2005, 'C-'); + insert into takes values('11195', '875', '1', 'Spring', 2005, 'B+'); + insert into takes values('95225', '482', '1', 'Fall', 2005, 'C '); + insert into takes values('72657', '482', '1', 'Fall', 2005, 'A '); + insert into takes values('16453', '960', '2', 'Fall', 2006, 'C-'); + insert into takes values('50267', '457', '1', 'Spring', 2001, 'B-'); + insert into takes values('40178', '631', '1', 'Spring', 2007, 'C+'); + insert into takes values('41299', '581', '1', 'Spring', 2005, 'B '); + insert into takes values('64138', '304', '1', 'Fall', 2009, 'C-'); + insert into takes values('99775', '362', '1', 'Fall', 2005, 'A '); + insert into takes values('84515', '274', '1', 'Fall', 2002, 'B+'); + insert into takes values('18809', '421', '1', 'Fall', 2004, 'B-'); + insert into takes values('48660', '105', '1', 'Fall', 2009, 'A '); + insert into takes values('86981', '304', '1', 'Fall', 2009, 'A-'); + insert into takes values('14065', '893', '1', 'Fall', 2007, 'A-'); + insert into takes values('41491', '748', '1', 'Fall', 2003, 'B+'); + insert into takes values('89000', '105', '2', 'Fall', 2002, 'B '); + insert into takes values('23457', '239', '1', 'Fall', 2006, 'B '); + insert into takes values('84727', '875', '1', 'Spring', 2005, 'A-'); + insert into takes values('90194', '962', '1', 'Spring', 2008, 'B-'); + insert into takes values('76672', '482', '1', 'Fall', 2005, 'C+'); + insert into takes values('75878', '400', '2', 'Fall', 2003, 'A-'); + insert into takes values('18108', '702', '1', 'Spring', 2001, 'A-'); + insert into takes values('4345', '270', '1', 'Spring', 2010, 'B+'); + insert into takes values('8343', '421', '1', 'Fall', 2004, 'A-'); + insert into takes values('9993', '362', '2', 'Fall', 2006, 'A+'); + insert into takes values('83204', '400', '1', 'Spring', 2007, 'C '); + insert into takes values('8912', '237', '1', 'Spring', 2008, 'A '); + insert into takes values('11201', '875', '1', 'Spring', 2005, 'C-'); + insert into takes values('38696', '362', '3', 'Spring', 2008, 'C+'); + insert into takes values('11578', '791', '1', 'Spring', 2006, 'B+'); + insert into takes values('68516', '604', '1', 'Spring', 2009, 'C '); + insert into takes values('75772', '366', '1', 'Fall', 2005, 'B '); + insert into takes values('15578', '960', '2', 'Fall', 2006, 'B '); + insert into takes values('4345', '415', '1', 'Fall', 2010, 'C '); + insert into takes values('48462', '362', '3', 'Spring', 2008, 'C+'); + insert into takes values('91915', '192', '1', 'Fall', 2002, 'A-'); + insert into takes values('30161', '192', '1', 'Fall', 2002, 'C+'); + insert into takes values('41751', '445', '1', 'Spring', 2001, 'A '); + insert into takes values('11202', '349', '1', 'Spring', 2008, 'B '); + insert into takes values('52523', '376', '1', 'Fall', 2006, 'C '); + insert into takes values('15487', '612', '1', 'Fall', 2007, 'C+'); + insert into takes values('71944', '629', '1', 'Spring', 2003, 'B-'); + insert into takes values('56499', '791', '1', 'Spring', 2006, 'B+'); + insert into takes values('8819', '319', '1', 'Spring', 2003, 'B '); + insert into takes values('49611', '704', '1', 'Spring', 2008, 'C '); + insert into takes values('37103', '443', '2', 'Spring', 2002, 'A+'); + insert into takes values('91091', '105', '2', 'Fall', 2002, 'B+'); + insert into takes values('32368', '735', '2', 'Spring', 2010, 'B+'); + insert into takes values('90009', '559', '1', 'Fall', 2002, 'A '); + insert into takes values('83838', '362', '1', 'Fall', 2005, 'A-'); + insert into takes values('59172', '527', '1', 'Fall', 2004, 'B-'); + insert into takes values('55329', '334', '1', 'Fall', 2009, 'C-'); + insert into takes values('34322', '694', '1', 'Fall', 2002, 'C-'); + insert into takes values('32056', '334', '1', 'Fall', 2009, 'A+'); + insert into takes values('75547', '362', '1', 'Fall', 2005, 'B+'); + insert into takes values('42556', '527', '1', 'Fall', 2004, 'C+'); + insert into takes values('17831', '795', '1', 'Spring', 2004, 'B-'); + insert into takes values('87054', '304', '1', 'Fall', 2009, 'C+'); + insert into takes values('59172', '867', '1', 'Fall', 2006, 'C+'); + insert into takes values('10481', '362', '1', 'Fall', 2005, 'B-'); + insert into takes values('73492', '702', '1', 'Spring', 2001, 'A '); + insert into takes values('8483', '338', '1', 'Spring', 2007, 'B-'); + insert into takes values('83398', '795', '1', 'Spring', 2004, 'C '); + insert into takes values('48462', '482', '1', 'Fall', 2005, 'C '); + insert into takes values('56598', '486', '1', 'Fall', 2009, 'C+'); + insert into takes values('32954', '893', '1', 'Fall', 2007, 'B '); + insert into takes values('14182', '158', '2', 'Spring', 2008, 'A-'); + insert into takes values('20244', '642', '1', 'Fall', 2004, 'A '); + insert into takes values('6367', '561', '1', 'Fall', 2006, 'B-'); + insert into takes values('69285', '105', '2', 'Fall', 2002, 'C '); + insert into takes values('54296', '349', '1', 'Spring', 2008, 'A-'); + insert into takes values('10736', '366', '1', 'Fall', 2005, 'A-'); + insert into takes values('79589', '696', '1', 'Spring', 2002, 'A+'); + insert into takes values('85680', '274', '1', 'Fall', 2002, 'C+'); + insert into takes values('50267', '237', '2', 'Fall', 2009, 'C '); + insert into takes values('41599', '808', '1', 'Fall', 2003, 'C+'); + insert into takes values('86981', '808', '1', 'Fall', 2003, 'B-'); + insert into takes values('13511', '421', '1', 'Fall', 2004, 'B-'); + insert into takes values('81984', '400', '1', 'Spring', 2007, 'C '); + insert into takes values('79469', '200', '1', 'Spring', 2007, 'A+'); + insert into takes values('21395', '158', '1', 'Fall', 2008, 'A+'); + insert into takes values('14182', '408', '2', 'Spring', 2003, 'B-'); + insert into takes values('84189', '334', '1', 'Fall', 2009, 'A+'); + insert into takes values('23457', '959', '1', 'Fall', 2006, 'A-'); + insert into takes values('10481', '702', '1', 'Spring', 2001, 'A+'); + insert into takes values('73165', '400', '2', 'Fall', 2003, 'C-'); + insert into takes values('54460', '559', '1', 'Fall', 2002, 'C+'); + insert into takes values('10917', '158', '2', 'Spring', 2008, 'A+'); + insert into takes values('65056', '795', '1', 'Spring', 2004, 'C '); + insert into takes values('83622', '338', '2', 'Spring', 2006, 'C+'); + insert into takes values('60748', '457', '1', 'Spring', 2001, 'A '); + insert into takes values('15538', '237', '2', 'Fall', 2009, 'B-'); + insert into takes values('82974', '604', '1', 'Spring', 2009, 'C '); + insert into takes values('44352', '867', '1', 'Fall', 2006, 'B+'); + insert into takes values('98830', '960', '2', 'Fall', 2006, 'A '); + insert into takes values('71628', '426', '1', 'Spring', 2006, 'B-'); + insert into takes values('34392', '345', '1', 'Spring', 2008, 'B-'); + insert into takes values('7861', '443', '2', 'Spring', 2002, 'B-'); + insert into takes values('31554', '319', '1', 'Spring', 2003, 'A '); + insert into takes values('60366', '486', '1', 'Fall', 2009, 'B-'); + insert into takes values('58935', '239', '1', 'Fall', 2006, 'C '); + insert into takes values('41973', '704', '1', 'Spring', 2008, 'A+'); + insert into takes values('83003', '421', '1', 'Fall', 2004, 'C-'); + insert into takes values('42560', '105', '2', 'Fall', 2002, 'A-'); + insert into takes values('59117', '105', '2', 'Fall', 2002, 'B+'); + insert into takes values('61854', '760', '1', 'Spring', 2004, 'B '); + insert into takes values('53077', '960', '2', 'Fall', 2006, 'B-'); + insert into takes values('4004', '991', '1', 'Spring', 2008, 'C+'); + insert into takes values('19220', '400', '2', 'Fall', 2003, 'C+'); + insert into takes values('21552', '274', '1', 'Fall', 2002, 'A '); + insert into takes values('7043', '237', '1', 'Spring', 2008, 'C '); + insert into takes values('9495', '663', '1', 'Spring', 2005, 'A+'); + insert into takes values('50966', '591', '1', 'Spring', 2005, 'C '); + insert into takes values('58170', '408', '1', 'Spring', 2007, 'B '); + insert into takes values('44836', '482', '1', 'Fall', 2005, 'B+'); + insert into takes values('64945', '972', '1', 'Spring', 2009, 'A+'); + insert into takes values('72979', '694', '1', 'Fall', 2002, 'A-'); + insert into takes values('1402', '349', '1', 'Spring', 2008, 'A+'); + insert into takes values('11194', '489', '1', 'Fall', 2007, 'A '); + insert into takes values('75791', '696', '1', 'Spring', 2002, 'A '); + insert into takes values('98726', '760', '1', 'Spring', 2004, 'A+'); + insert into takes values('76057', '791', '1', 'Spring', 2006, 'B+'); + insert into takes values('36926', '493', '1', 'Spring', 2010, 'B+'); + insert into takes values('72177', '338', '2', 'Spring', 2006, 'B '); + insert into takes values('30182', '443', '1', 'Spring', 2010, 'A-'); + insert into takes values('9114', '581', '1', 'Spring', 2005, 'C+'); + insert into takes values('83204', '960', '2', 'Fall', 2006, 'C '); + insert into takes values('36244', '959', '1', 'Fall', 2006, 'A '); + insert into takes values('83953', '169', '2', 'Fall', 2002, 'A-'); + insert into takes values('1884', '489', '1', 'Fall', 2007, 'A-'); + insert into takes values('858', '663', '1', 'Spring', 2005, 'A '); + insert into takes values('86404', '629', '1', 'Spring', 2003, 'B+'); + insert into takes values('86001', '735', '1', 'Spring', 2003, 'C+'); + insert into takes values('85746', '760', '1', 'Spring', 2004, 'C-'); + insert into takes values('89734', '192', '1', 'Fall', 2002, 'C '); + insert into takes values('75082', '694', '1', 'Fall', 2002, 'A+'); + insert into takes values('87785', '591', '1', 'Spring', 2005, 'A-'); + insert into takes values('28738', '962', '1', 'Spring', 2008, 'A '); + insert into takes values('92949', '612', '1', 'Fall', 2007, 'A '); + insert into takes values('17128', '338', '1', 'Spring', 2007, 'A-'); + insert into takes values('11578', '949', '1', 'Fall', 2007, 'B-'); + insert into takes values('51923', '527', '1', 'Fall', 2004, 'C-'); + insert into takes values('71768', '408', '2', 'Spring', 2003, 'A-'); + insert into takes values('56078', '408', '1', 'Spring', 2007, 'C '); + insert into takes values('97065', '476', '1', 'Fall', 2010, 'C-'); + insert into takes values('390', '747', '1', 'Spring', 2004, 'A-'); + insert into takes values('73542', '192', '1', 'Fall', 2002, 'C-'); + insert into takes values('92867', '679', '1', 'Spring', 2010, 'A '); + insert into takes values('43854', '468', '1', 'Fall', 2005, 'A-'); + insert into takes values('70099', '457', '1', 'Spring', 2001, 'C-'); + insert into takes values('46035', '843', '1', 'Fall', 2010, 'A+'); + insert into takes values('96722', '105', '2', 'Fall', 2002, 'C '); + insert into takes values('76953', '603', '1', 'Fall', 2003, 'C+'); + insert into takes values('7020', '443', '1', 'Spring', 2010, 'C '); + insert into takes values('76173', '242', '1', 'Fall', 2009, 'A-'); + insert into takes values('28409', '802', '1', 'Spring', 2003, 'C '); + insert into takes values('21337', '735', '1', 'Spring', 2003, 'A+'); + insert into takes values('67793', '237', '2', 'Fall', 2009, 'B '); + insert into takes values('15024', '169', '1', 'Spring', 2007, 'C-'); + insert into takes values('18007', '408', '1', 'Spring', 2007, 'C+'); + insert into takes values('6209', '200', '1', 'Spring', 2007, 'A-'); + insert into takes values('27950', '401', '1', 'Fall', 2003, 'A '); + insert into takes values('48901', '735', '1', 'Spring', 2003, 'B-'); + insert into takes values('18808', '626', '1', 'Fall', 2006, 'B-'); + insert into takes values('53225', '242', '1', 'Fall', 2009, 'A-'); + insert into takes values('18499', '893', '1', 'Fall', 2007, 'A+'); + insert into takes values('4004', '169', '2', 'Fall', 2002, 'B+'); + insert into takes values('84432', '105', '1', 'Fall', 2009, 'B+'); + insert into takes values('68712', '400', '2', 'Fall', 2003, 'A '); + insert into takes values('60762', '362', '1', 'Fall', 2005, 'C '); + insert into takes values('78454', '400', '1', 'Spring', 2007, 'C-'); + insert into takes values('96193', '927', '1', 'Fall', 2002, 'A-'); + insert into takes values('97023', '694', '1', 'Fall', 2002, 'C+'); + insert into takes values('49813', '338', '1', 'Spring', 2007, 'B-'); + insert into takes values('17076', '169', '1', 'Spring', 2007, 'A '); + insert into takes values('58085', '760', '1', 'Spring', 2004, 'A-'); + insert into takes values('83836', '949', '1', 'Fall', 2007, 'B+'); + insert into takes values('64121', '274', '1', 'Fall', 2002, 'C-'); + insert into takes values('54620', '867', '2', 'Fall', 2010, 'B+'); + insert into takes values('35257', '545', '1', 'Fall', 2001, 'C '); + insert into takes values('16885', '893', '1', 'Fall', 2007, 'C+'); + insert into takes values('31079', '694', '1', 'Fall', 2002, 'A+'); + insert into takes values('82868', '795', '1', 'Spring', 2004, 'A+'); + insert into takes values('71944', '200', '1', 'Spring', 2007, 'C '); + insert into takes values('53728', '603', '1', 'Fall', 2003, 'B+'); + insert into takes values('43989', '735', '2', 'Spring', 2010, 'C+'); + insert into takes values('72177', '571', '1', 'Spring', 2004, 'B+'); + insert into takes values('33206', '802', '1', 'Spring', 2003, 'A '); + insert into takes values('37715', '408', '1', 'Spring', 2007, 'B+'); + insert into takes values('78552', '793', '1', 'Spring', 2002, 'A+'); + insert into takes values('38676', '496', '1', 'Fall', 2001, 'B '); + insert into takes values('11578', '631', '1', 'Spring', 2007, 'A-'); + insert into takes values('888', '237', '2', 'Fall', 2009, 'B+'); + insert into takes values('87965', '366', '1', 'Fall', 2005, 'C+'); + insert into takes values('6304', '237', '2', 'Fall', 2009, 'C '); + insert into takes values('16543', '561', '1', 'Fall', 2006, 'B '); + insert into takes values('29435', '875', '1', 'Spring', 2005, 'C-'); + insert into takes values('43981', '242', '1', 'Fall', 2009, 'C-'); + insert into takes values('53547', '426', '1', 'Spring', 2006, 'C+'); + insert into takes values('85887', '960', '1', 'Fall', 2009, 'B '); + insert into takes values('46769', '591', '1', 'Spring', 2005, 'B '); + insert into takes values('62520', '843', '1', 'Fall', 2010, 'B-'); + insert into takes values('39978', '258', '1', 'Fall', 2007, 'A+'); + insert into takes values('47824', '345', '1', 'Spring', 2008, 'B-'); + insert into takes values('49611', '642', '1', 'Fall', 2004, 'B '); + insert into takes values('10705', '200', '1', 'Spring', 2007, 'C-'); + insert into takes values('34957', '561', '1', 'Fall', 2006, 'A+'); + insert into takes values('74639', '445', '1', 'Spring', 2001, 'C+'); + insert into takes values('72055', '960', '1', 'Fall', 2009, 'A-'); + insert into takes values('62832', '867', '2', 'Fall', 2010, 'A-'); + insert into takes values('19050', '468', '2', 'Fall', 2007, 'C '); + insert into takes values('43616', '461', '1', 'Fall', 2002, 'C+'); + insert into takes values('66753', '105', '2', 'Fall', 2002, 'C-'); + insert into takes values('39238', '599', '1', 'Spring', 2003, 'B '); + insert into takes values('27950', '692', '1', 'Spring', 2010, 'A+'); + insert into takes values('80420', '239', '1', 'Fall', 2006, 'A+'); + insert into takes values('51768', '704', '1', 'Spring', 2008, 'A '); + insert into takes values('58469', '843', '1', 'Fall', 2010, 'A '); + insert into takes values('76270', '200', '2', 'Fall', 2002, 'A '); + insert into takes values('84792', '496', '1', 'Fall', 2001, 'C-'); + insert into takes values('2177', '591', '1', 'Spring', 2005, 'C '); + insert into takes values('36303', '408', '1', 'Spring', 2007, 'A-'); + insert into takes values('41827', '867', '1', 'Fall', 2006, 'B '); + insert into takes values('17424', '349', '1', 'Spring', 2008, 'B-'); + insert into takes values('8957', '962', '1', 'Spring', 2008, 'C+'); + insert into takes values('80799', '319', '1', 'Spring', 2003, 'A '); + insert into takes values('53805', '735', '2', 'Spring', 2010, 'B-'); + insert into takes values('11855', '362', '1', 'Fall', 2005, 'C-'); + insert into takes values('21009', '808', '1', 'Fall', 2003, 'B-'); + insert into takes values('83557', '486', '1', 'Fall', 2009, 'B+'); + insert into takes values('32886', '362', '1', 'Fall', 2005, 'B-'); + insert into takes values('49339', '461', '1', 'Fall', 2002, 'B+'); + insert into takes values('21692', '843', '1', 'Fall', 2010, 'B-'); + insert into takes values('13757', '237', '2', 'Fall', 2009, 'C-'); + insert into takes values('35138', '445', '1', 'Spring', 2001, 'A+'); + insert into takes values('2423', '408', '2', 'Spring', 2003, 'C '); + insert into takes values('9933', '875', '1', 'Spring', 2005, 'B+'); + insert into takes values('19536', '237', '2', 'Fall', 2009, 'B '); + insert into takes values('72741', '972', '1', 'Spring', 2009, 'A+'); + insert into takes values('55531', '867', '2', 'Fall', 2010, 'B '); + insert into takes values('42556', '401', '1', 'Fall', 2003, 'C '); + insert into takes values('26028', '679', '1', 'Spring', 2010, 'C '); + insert into takes values('65438', '581', '1', 'Spring', 2005, 'A+'); + insert into takes values('67407', '338', '1', 'Spring', 2007, 'B-'); + insert into takes values('79446', '366', '1', 'Fall', 2005, 'C '); + insert into takes values('17996', '867', '2', 'Fall', 2010, 'B-'); + insert into takes values('79469', '457', '1', 'Spring', 2001, 'B-'); + insert into takes values('31137', '603', '1', 'Fall', 2003, 'A-'); + insert into takes values('82082', '599', '1', 'Spring', 2003, 'C+'); + insert into takes values('38271', '461', '1', 'Fall', 2002, 'B '); + insert into takes values('81884', '571', '1', 'Spring', 2004, 'A '); + insert into takes values('86529', '200', '2', 'Fall', 2002, 'B-'); + insert into takes values('7514', '604', '1', 'Spring', 2009, 'A '); + insert into takes values('63560', '962', '1', 'Spring', 2008, 'B+'); + insert into takes values('1018', '421', '1', 'Fall', 2004, 'C-'); + insert into takes values('61527', '545', '1', 'Fall', 2001, 'A+'); + insert into takes values('81031', '960', '1', 'Fall', 2009, 'C-'); + insert into takes values('28128', '571', '1', 'Spring', 2004, 'B '); + insert into takes values('75173', '959', '1', 'Fall', 2006, 'C-'); + insert into takes values('18367', '445', '1', 'Spring', 2001, 'B '); + insert into takes values('19245', '795', '1', 'Spring', 2004, 'B '); + insert into takes values('1727', '496', '1', 'Fall', 2001, 'A+'); + insert into takes values('8457', '349', '1', 'Spring', 2008, 'B+'); + insert into takes values('82126', '304', '1', 'Fall', 2009, 'C '); + insert into takes values('53469', '760', '1', 'Spring', 2004, 'C-'); + insert into takes values('29239', '362', '1', 'Fall', 2005, 'B '); + insert into takes values('1232', '482', '1', 'Fall', 2005, 'A+'); + insert into takes values('98843', '949', '1', 'Fall', 2007, 'C '); + insert into takes values('86707', '362', '2', 'Fall', 2006, 'A-'); + insert into takes values('39204', '482', '1', 'Fall', 2005, 'A '); + insert into takes values('92839', '704', '1', 'Spring', 2008, 'B '); + insert into takes values('37219', '105', '2', 'Fall', 2002, 'C '); + insert into takes values('81638', '319', '1', 'Spring', 2003, 'B+'); + insert into takes values('30021', '443', '2', 'Spring', 2002, 'B '); + insert into takes values('65144', '493', '1', 'Spring', 2010, 'A-'); + insert into takes values('22912', '875', '1', 'Spring', 2005, 'B '); + insert into takes values('1954', '604', '1', 'Spring', 2009, 'B+'); + insert into takes values('30188', '581', '1', 'Spring', 2005, 'B-'); + insert into takes values('31250', '376', '1', 'Fall', 2006, 'B-'); + insert into takes values('32130', '694', '1', 'Fall', 2002, 'B+'); + insert into takes values('63449', '962', '1', 'Spring', 2008, 'A-'); + insert into takes values('17600', '962', '1', 'Spring', 2008, 'C '); + insert into takes values('88169', '991', '1', 'Spring', 2008, 'A+'); + insert into takes values('23311', '808', '1', 'Fall', 2003, 'B+'); + insert into takes values('36881', '631', '1', 'Spring', 2007, 'C+'); + insert into takes values('60249', '169', '1', 'Spring', 2007, 'B '); + insert into takes values('84189', '362', '2', 'Fall', 2006, 'B '); + insert into takes values('74163', '496', '1', 'Fall', 2001, 'B+'); + insert into takes values('93004', '415', '1', 'Fall', 2010, 'B-'); + insert into takes values('73387', '843', '1', 'Fall', 2010, 'C '); + insert into takes values('85226', '105', '2', 'Fall', 2002, 'C '); + insert into takes values('17607', '702', '1', 'Spring', 2001, 'B-'); + insert into takes values('48678', '571', '1', 'Spring', 2004, 'C '); + insert into takes values('80912', '421', '1', 'Fall', 2004, 'B '); + insert into takes values('50386', '962', '1', 'Spring', 2008, 'B-'); + insert into takes values('90448', '468', '1', 'Fall', 2005, 'B+'); + insert into takes values('17924', '791', '1', 'Spring', 2006, 'B-'); + insert into takes values('65329', '362', '3', 'Spring', 2008, 'C '); + insert into takes values('28952', '927', '1', 'Fall', 2002, 'A+'); + insert into takes values('66212', '972', '1', 'Spring', 2009, 'A-'); + insert into takes values('72669', '270', '1', 'Spring', 2010, 'C+'); + insert into takes values('67051', '603', '1', 'Fall', 2003, 'A '); + insert into takes values('96003', '270', '1', 'Spring', 2010, 'B '); + insert into takes values('75362', '960', '2', 'Fall', 2006, 'B+'); + insert into takes values('92332', '401', '1', 'Fall', 2003, 'B '); + insert into takes values('14869', '545', '1', 'Fall', 2001, 'B '); + insert into takes values('15030', '349', '1', 'Spring', 2008, 'B '); + insert into takes values('63288', '158', '1', 'Fall', 2008, 'B '); + insert into takes values('51923', '352', '1', 'Spring', 2006, 'A+'); + insert into takes values('8022', '679', '1', 'Spring', 2010, 'C '); + insert into takes values('898', '843', '1', 'Fall', 2010, 'B+'); + insert into takes values('86641', '105', '1', 'Fall', 2009, 'A '); + insert into takes values('53451', '795', '1', 'Spring', 2004, 'C+'); + insert into takes values('16885', '692', '1', 'Spring', 2010, 'A+'); + insert into takes values('67293', '974', '1', 'Fall', 2003, 'A-'); + insert into takes values('65681', '629', '1', 'Spring', 2003, 'B-'); + insert into takes values('7123', '808', '1', 'Fall', 2003, 'B+'); + insert into takes values('88993', '735', '2', 'Spring', 2010, 'C+'); + insert into takes values('15517', '426', '1', 'Spring', 2006, 'C '); + insert into takes values('22179', '258', '1', 'Fall', 2007, 'A '); + insert into takes values('94836', '415', '1', 'Fall', 2010, 'C+'); + insert into takes values('53788', '949', '1', 'Fall', 2007, 'B+'); + insert into takes values('10663', '852', '1', 'Spring', 2008, 'A '); + insert into takes values('22254', '561', '1', 'Fall', 2006, 'C-'); + insert into takes values('76799', '795', '1', 'Spring', 2004, 'B+'); + insert into takes values('2178', '793', '1', 'Spring', 2002, 'C+'); + insert into takes values('59908', '415', '1', 'Fall', 2010, 'C '); + insert into takes values('4355', '496', '1', 'Fall', 2001, 'C+'); + insert into takes values('92864', '468', '1', 'Fall', 2005, 'B '); + insert into takes values('29435', '274', '1', 'Fall', 2002, 'C-'); + insert into takes values('57985', '702', '1', 'Spring', 2001, 'A+'); + insert into takes values('37284', '489', '1', 'Fall', 2007, 'A '); + insert into takes values('82301', '747', '1', 'Spring', 2004, 'B+'); + insert into takes values('78922', '867', '2', 'Fall', 2010, 'A '); + insert into takes values('90567', '274', '1', 'Fall', 2002, 'B-'); + insert into takes values('13511', '748', '1', 'Fall', 2003, 'B '); + insert into takes values('36881', '974', '1', 'Fall', 2003, 'C-'); + insert into takes values('3693', '362', '1', 'Fall', 2005, 'B+'); + insert into takes values('56755', '545', '1', 'Fall', 2001, 'B '); + insert into takes values('31080', '694', '1', 'Fall', 2002, 'A+'); + insert into takes values('63860', '692', '1', 'Spring', 2010, 'A+'); + insert into takes values('66229', '603', '1', 'Fall', 2003, 'A-'); + insert into takes values('11101', '192', '1', 'Fall', 2002, 'B '); + insert into takes values('63243', '702', '1', 'Spring', 2001, 'C '); + insert into takes values('15083', '545', '1', 'Fall', 2001, 'B-'); + insert into takes values('93004', '258', '1', 'Fall', 2007, 'B '); + insert into takes values('49982', '362', '1', 'Fall', 2005, 'C '); + insert into takes values('41827', '457', '1', 'Spring', 2001, 'C '); + insert into takes values('51768', '443', '2', 'Spring', 2002, 'B-'); + insert into takes values('89297', '747', '1', 'Spring', 2004, 'A-'); + insert into takes values('35362', '408', '1', 'Spring', 2007, 'C '); + insert into takes values('5703', '629', '1', 'Spring', 2003, 'C+'); + insert into takes values('93043', '561', '1', 'Fall', 2006, 'A+'); + insert into takes values('39472', '443', '1', 'Spring', 2010, 'B '); + insert into takes values('58634', '362', '1', 'Fall', 2005, 'C-'); + insert into takes values('1460', '489', '1', 'Fall', 2007, 'C '); + insert into takes values('86552', '400', '2', 'Fall', 2003, 'C '); + insert into takes values('75878', '158', '1', 'Fall', 2008, 'C-'); + insert into takes values('17076', '338', '1', 'Spring', 2007, 'B '); + insert into takes values('56078', '137', '1', 'Spring', 2002, 'B+'); + insert into takes values('21008', '893', '1', 'Fall', 2007, 'A+'); + insert into takes values('59673', '852', '1', 'Spring', 2008, 'C-'); + insert into takes values('82063', '237', '2', 'Fall', 2009, 'C '); + insert into takes values('9993', '242', '1', 'Fall', 2009, 'A-'); + insert into takes values('43616', '237', '2', 'Fall', 2009, 'A+'); + insert into takes values('58846', '366', '1', 'Fall', 2005, 'A '); + insert into takes values('23500', '949', '1', 'Fall', 2007, 'B+'); + insert into takes values('8347', '747', '1', 'Spring', 2004, 'A-'); + insert into takes values('94726', '960', '1', 'Fall', 2009, 'C-'); + insert into takes values('79170', '867', '1', 'Fall', 2006, 'B '); + insert into takes values('12941', '843', '1', 'Fall', 2010, 'B '); + insert into takes values('645', '496', '1', 'Fall', 2001, 'B '); + insert into takes values('11455', '105', '2', 'Fall', 2002, 'B '); + insert into takes values('86001', '457', '1', 'Spring', 2001, 'A+'); + insert into takes values('65190', '362', '3', 'Spring', 2008, 'C '); + insert into takes values('75938', '376', '1', 'Fall', 2006, 'C '); + insert into takes values('52385', '105', '1', 'Fall', 2009, 'B+'); + insert into takes values('50703', '366', '1', 'Fall', 2005, 'B-'); + insert into takes values('99780', '760', '1', 'Spring', 2004, 'C-'); + insert into takes values('282', '345', '1', 'Spring', 2008, 'B '); + insert into takes values('86344', '476', '1', 'Fall', 2010, 'B '); + insert into takes values('42388', '748', '1', 'Fall', 2003, 'B '); + insert into takes values('39310', '760', '1', 'Spring', 2004, 'A-'); + insert into takes values('37219', '960', '1', 'Fall', 2009, 'B-'); + insert into takes values('48053', '105', '2', 'Fall', 2002, 'A-'); + insert into takes values('30772', '352', '1', 'Spring', 2006, 'C-'); + insert into takes values('80742', '319', '1', 'Spring', 2003, 'C-'); + insert into takes values('58085', '237', '1', 'Spring', 2008, 'C+'); + insert into takes values('6523', '304', '1', 'Fall', 2009, 'B+'); + insert into takes values('95852', '468', '2', 'Fall', 2007, 'B-'); + insert into takes values('67725', '400', '1', 'Spring', 2007, 'B+'); + insert into takes values('1727', '747', '1', 'Spring', 2004, 'A '); + insert into takes values('94522', '362', '3', 'Spring', 2008, 'C-'); + insert into takes values('74672', '468', '2', 'Fall', 2007, 'A+'); + insert into takes values('43495', '604', '1', 'Spring', 2009, 'C '); + insert into takes values('99348', '366', '1', 'Fall', 2005, 'A+'); + insert into takes values('28316', '400', '2', 'Fall', 2003, 'B-'); + insert into takes values('96206', '867', '1', 'Fall', 2006, 'A-'); + insert into takes values('42019', '443', '1', 'Spring', 2010, 'C '); + insert into takes values('8140', '158', '1', 'Fall', 2008, 'A-'); + insert into takes values('46035', '443', '1', 'Spring', 2010, 'B-'); + insert into takes values('46155', '626', '1', 'Fall', 2006, 'A-'); + insert into takes values('78922', '949', '1', 'Fall', 2007, 'B+'); + insert into takes values('62549', '599', '1', 'Spring', 2003, 'B '); + insert into takes values('87054', '421', '1', 'Fall', 2004, 'A '); + insert into takes values('84432', '702', '1', 'Spring', 2001, 'A+'); + insert into takes values('36126', '791', '1', 'Spring', 2006, 'B '); + insert into takes values('48053', '408', '2', 'Spring', 2003, 'C-'); + insert into takes values('3693', '192', '1', 'Fall', 2002, 'A+'); + insert into takes values('77244', '960', '1', 'Fall', 2009, 'C '); + insert into takes values('1922', '704', '1', 'Spring', 2008, 'C '); + insert into takes values('18583', '793', '1', 'Spring', 2002, 'B '); + insert into takes values('23525', '527', '1', 'Fall', 2004, 'C '); + insert into takes values('95574', '559', '1', 'Fall', 2002, 'B-'); + insert into takes values('45359', '735', '2', 'Spring', 2010, 'B '); + insert into takes values('76057', '793', '1', 'Spring', 2002, 'B+'); + insert into takes values('92693', '631', '1', 'Spring', 2007, 'C-'); + insert into takes values('92464', '376', '1', 'Fall', 2006, 'C-'); + insert into takes values('96153', '443', '2', 'Spring', 2002, 'A '); + insert into takes values('78922', '702', '1', 'Spring', 2001, 'B+'); + insert into takes values('67051', '972', '1', 'Spring', 2009, 'B-'); + insert into takes values('80285', '631', '1', 'Spring', 2007, 'B-'); + insert into takes values('11201', '626', '1', 'Fall', 2006, 'A-'); + insert into takes values('10454', '270', '1', 'Spring', 2010, 'B-'); + insert into takes values('46442', '457', '1', 'Spring', 2001, 'C '); + insert into takes values('28409', '239', '1', 'Fall', 2006, 'A '); + insert into takes values('29462', '748', '1', 'Fall', 2003, 'C-'); + insert into takes values('46337', '867', '2', 'Fall', 2010, 'B+'); + insert into takes values('23506', '239', '1', 'Fall', 2006, 'A+'); + insert into takes values('10033', '679', '1', 'Spring', 2010, 'A+'); + insert into takes values('78792', '476', '1', 'Fall', 2010, 'C+'); + insert into takes values('58846', '493', '1', 'Spring', 2010, 'A '); + insert into takes values('81294', '991', '1', 'Spring', 2008, 'A '); + insert into takes values('54612', '559', '1', 'Fall', 2002, 'C '); + insert into takes values('75534', '334', '1', 'Fall', 2009, 'B '); + insert into takes values('82039', '867', '1', 'Fall', 2006, 'B-'); + insert into takes values('37521', '561', '1', 'Fall', 2006, 'C+'); + insert into takes values('19848', '476', '1', 'Fall', 2010, 'A+'); + insert into takes values('64164', '663', '1', 'Spring', 2005, 'B+'); + insert into takes values('94257', '334', '1', 'Fall', 2009, 'A '); + insert into takes values('48778', '808', '1', 'Fall', 2003, 'A+'); + insert into takes values('39881', '571', '1', 'Spring', 2004, 'A+'); + insert into takes values('41894', '760', '1', 'Spring', 2004, 'B+'); + insert into takes values('52187', '137', '1', 'Spring', 2002, 'A-'); + insert into takes values('7123', '867', '2', 'Fall', 2010, 'A '); + insert into takes values('30222', '626', '1', 'Fall', 2006, 'C-'); + insert into takes values('56755', '158', '2', 'Spring', 2008, 'B '); + insert into takes values('69679', '200', '1', 'Spring', 2007, 'C '); + insert into takes values('49701', '962', '1', 'Spring', 2008, 'B-'); + insert into takes values('86934', '559', '1', 'Fall', 2002, 'A+'); + insert into takes values('51997', '237', '2', 'Fall', 2009, 'B-'); + insert into takes values('59920', '443', '2', 'Spring', 2002, 'C-'); + insert into takes values('44816', '960', '2', 'Fall', 2006, 'C '); + insert into takes values('2201', '808', '1', 'Fall', 2003, 'B-'); + insert into takes values('68395', '974', '1', 'Fall', 2003, 'A-'); + insert into takes values('64297', '663', '1', 'Spring', 2005, 'B-'); + insert into takes values('83204', '692', '1', 'Spring', 2010, 'C+'); + insert into takes values('23311', '802', '1', 'Spring', 2003, 'B '); + insert into takes values('85849', '604', '1', 'Spring', 2009, 'C '); + insert into takes values('5017', '237', '1', 'Spring', 2008, 'A+'); + insert into takes values('99710', '692', '1', 'Spring', 2010, 'A+'); + insert into takes values('90132', '105', '2', 'Fall', 2002, 'C '); + insert into takes values('91569', '486', '1', 'Fall', 2009, 'C+'); + insert into takes values('69581', '486', '1', 'Fall', 2009, 'A-'); + insert into takes values('64121', '408', '1', 'Spring', 2007, 'C '); + insert into takes values('85809', '408', '1', 'Spring', 2007, 'C+'); + insert into takes values('51768', '867', '2', 'Fall', 2010, 'A+'); + insert into takes values('52876', '468', '2', 'Fall', 2007, 'B+'); + insert into takes values('14639', '482', '1', 'Fall', 2005, 'C-'); + insert into takes values('84808', '571', '1', 'Spring', 2004, 'B+'); + insert into takes values('19824', '400', '2', 'Fall', 2003, 'B-'); + insert into takes values('84167', '679', '1', 'Spring', 2010, 'B '); + insert into takes values('83511', '400', '2', 'Fall', 2003, 'A '); + insert into takes values('41675', '694', '1', 'Fall', 2002, 'C '); + insert into takes values('42388', '319', '1', 'Spring', 2003, 'B+'); + insert into takes values('99289', '581', '1', 'Spring', 2005, 'A+'); + insert into takes values('9495', '760', '1', 'Spring', 2004, 'A '); + insert into takes values('69679', '239', '1', 'Fall', 2006, 'B '); + insert into takes values('59530', '694', '1', 'Fall', 2002, 'A-'); + insert into takes values('27043', '105', '2', 'Fall', 2002, 'A-'); + insert into takes values('56089', '604', '1', 'Spring', 2009, 'B-'); + insert into takes values('78332', '612', '1', 'Fall', 2007, 'C-'); + insert into takes values('74464', '702', '1', 'Spring', 2001, 'A-'); + insert into takes values('52371', '237', '2', 'Fall', 2009, 'A '); + insert into takes values('9360', '169', '2', 'Fall', 2002, 'C-'); + insert into takes values('86344', '571', '1', 'Spring', 2004, 'B+'); + insert into takes values('72669', '242', '1', 'Fall', 2009, 'C-'); + insert into takes values('62429', '735', '2', 'Spring', 2010, 'C '); + insert into takes values('26102', '349', '1', 'Spring', 2008, 'B-'); + insert into takes values('29803', '612', '1', 'Fall', 2007, 'C '); + insert into takes values('22086', '603', '1', 'Fall', 2003, 'C+'); + insert into takes values('88308', '319', '1', 'Spring', 2003, 'B-'); + insert into takes values('42092', '270', '1', 'Spring', 2010, 'B-'); + insert into takes values('45720', '415', '1', 'Fall', 2010, 'C '); + insert into takes values('40897', '169', '1', 'Spring', 2007, 'A+'); + insert into takes values('61166', '482', '1', 'Fall', 2005, 'C '); + insert into takes values('36657', '959', '1', 'Fall', 2006, 'A+'); + insert into takes values('64945', '493', '1', 'Spring', 2010, 'C+'); + insert into takes values('37809', '239', '1', 'Fall', 2006, 'A+'); + insert into takes values('19220', '559', '1', 'Fall', 2002, 'A+'); + insert into takes values('61332', '591', '1', 'Spring', 2005, 'B+'); + insert into takes values('71944', '949', '1', 'Fall', 2007, 'A '); + insert into takes values('78314', '158', '1', 'Fall', 2008, 'B-'); + insert into takes values('58355', '468', '1', 'Fall', 2005, 'A+'); + insert into takes values('31250', '747', '1', 'Spring', 2004, 'B+'); + insert into takes values('85981', '591', '1', 'Spring', 2005, 'B+'); + insert into takes values('2133', '991', '1', 'Spring', 2008, 'A '); + insert into takes values('83557', '735', '2', 'Spring', 2010, 'A+'); + insert into takes values('87054', '960', '2', 'Fall', 2006, 'B '); + insert into takes values('35881', '445', '1', 'Spring', 2001, 'B '); + insert into takes values('8022', '338', '1', 'Spring', 2007, 'C+'); + insert into takes values('5617', '415', '1', 'Fall', 2010, 'B '); + insert into takes values('37350', '559', '1', 'Fall', 2002, 'B+'); + insert into takes values('26427', '334', '1', 'Fall', 2009, 'C+'); + insert into takes values('57135', '169', '2', 'Fall', 2002, 'C-'); + insert into takes values('85063', '735', '1', 'Spring', 2003, 'B-'); + insert into takes values('39310', '345', '1', 'Spring', 2008, 'C-'); + insert into takes values('95201', '604', '1', 'Spring', 2009, 'C-'); + insert into takes values('47379', '476', '1', 'Fall', 2010, 'C+'); + insert into takes values('65144', '960', '1', 'Fall', 2009, 'A-'); + insert into takes values('36494', '408', '2', 'Spring', 2003, 'C-'); + insert into takes values('39241', '496', '1', 'Fall', 2001, 'C '); + insert into takes values('37284', '237', '2', 'Fall', 2009, 'A+'); + insert into takes values('30161', '400', '1', 'Spring', 2007, 'C-'); + insert into takes values('77003', '192', '1', 'Fall', 2002, 'B '); + insert into takes values('20244', '631', '1', 'Spring', 2007, 'C-'); + insert into takes values('95225', '972', '1', 'Spring', 2009, 'A+'); + insert into takes values('57156', '461', '1', 'Fall', 2002, 'B '); + insert into takes values('30397', '960', '2', 'Fall', 2006, 'B-'); + insert into takes values('66763', '694', '1', 'Fall', 2002, 'C-'); + insert into takes values('87651', '867', '1', 'Fall', 2006, 'B '); + insert into takes values('38712', '802', '1', 'Spring', 2003, 'C-'); + insert into takes values('4435', '599', '1', 'Spring', 2003, 'B '); + insert into takes values('39552', '239', '1', 'Fall', 2006, 'B-'); + insert into takes values('80254', '612', '1', 'Fall', 2007, 'B '); + insert into takes values('36995', '376', '1', 'Fall', 2006, 'A+'); + insert into takes values('46442', '105', '1', 'Fall', 2009, 'A-'); + insert into takes values('53165', '468', '1', 'Fall', 2005, 'B+'); + insert into takes values('67293', '169', '2', 'Fall', 2002, 'A+'); + insert into takes values('52471', '679', '1', 'Spring', 2010, 'B-'); + insert into takes values('32119', '864', '1', 'Spring', 2006, 'B '); + insert into takes values('44206', '852', '1', 'Spring', 2008, 'B '); + insert into takes values('65241', '802', '1', 'Spring', 2003, 'A '); + insert into takes values('54605', '270', '1', 'Spring', 2010, 'A-'); + insert into takes values('25940', '461', '1', 'Fall', 2002, 'C '); + insert into takes values('89059', '852', '1', 'Spring', 2008, 'A '); + insert into takes values('44836', '200', '2', 'Fall', 2002, 'C-'); + insert into takes values('32130', '338', '1', 'Spring', 2007, 'C-'); + insert into takes values('5017', '105', '1', 'Fall', 2009, 'C '); + insert into takes values('44352', '486', '1', 'Fall', 2009, 'B+'); + insert into takes values('76895', '376', '1', 'Fall', 2006, 'B+'); + insert into takes values('81876', '461', '1', 'Fall', 2002, 'A-'); + insert into takes values('75513', '702', '1', 'Spring', 2001, 'B '); + insert into takes values('99647', '200', '2', 'Fall', 2002, 'C+'); + insert into takes values('51084', '791', '1', 'Spring', 2006, 'B-'); + insert into takes values('83728', '443', '2', 'Spring', 2002, 'B-'); + insert into takes values('12563', '629', '1', 'Spring', 2003, 'B-'); + insert into takes values('51553', '200', '1', 'Spring', 2007, 'C '); + insert into takes values('88169', '571', '1', 'Spring', 2004, 'A-'); + insert into takes values('92332', '105', '1', 'Fall', 2009, 'B+'); + insert into takes values('14596', '200', '1', 'Spring', 2007, 'B+'); + insert into takes values('31302', '802', '1', 'Spring', 2003, 'B+'); + insert into takes values('14182', '960', '2', 'Fall', 2006, 'A+'); + insert into takes values('91978', '304', '1', 'Fall', 2009, 'B '); + insert into takes values('21100', '304', '1', 'Fall', 2009, 'B-'); + insert into takes values('52750', '527', '1', 'Fall', 2004, 'A '); + insert into takes values('32130', '242', '1', 'Fall', 2009, 'C+'); + insert into takes values('17057', '426', '1', 'Spring', 2006, 'C-'); + insert into takes values('85226', '893', '1', 'Fall', 2007, 'C-'); + insert into takes values('38712', '476', '1', 'Fall', 2010, 'B-'); + insert into takes values('53048', '401', '1', 'Fall', 2003, 'A '); + insert into takes values('6729', '482', '1', 'Fall', 2005, 'B '); + insert into takes values('1968', '313', '1', 'Fall', 2010, 'A '); + insert into takes values('38899', '400', '1', 'Spring', 2007, 'C '); + insert into takes values('98690', '747', '1', 'Spring', 2004, 'A-'); + insert into takes values('8912', '795', '1', 'Spring', 2004, 'B+'); + insert into takes values('44584', '545', '1', 'Fall', 2001, 'A '); + insert into takes values('73186', '626', '1', 'Fall', 2006, 'C-'); + insert into takes values('31476', '927', '1', 'Fall', 2002, 'A-'); + insert into takes values('50013', '802', '1', 'Spring', 2003, 'B-'); + insert into takes values('68010', '486', '1', 'Fall', 2009, 'C '); + insert into takes values('46980', '694', '1', 'Fall', 2002, 'C '); + insert into takes values('83691', '795', '1', 'Spring', 2004, 'A+'); + insert into takes values('65753', '338', '1', 'Spring', 2007, 'A+'); + insert into takes values('86934', '748', '1', 'Fall', 2003, 'B '); + insert into takes values('39394', '527', '1', 'Fall', 2004, 'B-'); + insert into takes values('99189', '408', '1', 'Spring', 2007, 'A+'); + insert into takes values('98690', '200', '1', 'Spring', 2007, 'B '); + insert into takes values('91132', '401', '1', 'Fall', 2003, 'B-'); + insert into takes values('65299', '239', '1', 'Fall', 2006, 'B '); + insert into takes values('18675', '242', '1', 'Fall', 2009, 'B-'); + insert into takes values('5925', '843', '1', 'Fall', 2010, 'C-'); + insert into takes values('52187', '237', '2', 'Fall', 2009, 'B-'); + insert into takes values('88793', '443', '1', 'Spring', 2010, 'B '); + insert into takes values('21766', '692', '1', 'Spring', 2010, 'A-'); + insert into takes values('11202', '105', '1', 'Fall', 2009, 'C-'); + insert into takes values('85308', '239', '1', 'Fall', 2006, 'A+'); + insert into takes values('30161', '760', '1', 'Spring', 2004, 'B '); + insert into takes values('49450', '974', '1', 'Fall', 2003, 'B+'); + insert into takes values('29920', '443', '2', 'Spring', 2002, 'B-'); + insert into takes values('28316', '443', '1', 'Spring', 2010, 'C '); + insert into takes values('99754', '200', '2', 'Fall', 2002, 'B '); + insert into takes values('25780', '852', '1', 'Spring', 2008, 'C+'); + insert into takes values('52866', '486', '1', 'Fall', 2009, 'B+'); + insert into takes values('9460', '200', '1', 'Spring', 2007, 'A '); + insert into takes values('94173', '338', '1', 'Spring', 2007, 'B+'); + insert into takes values('50966', '960', '2', 'Fall', 2006, 'A-'); + insert into takes values('62832', '581', '1', 'Spring', 2005, 'B+'); + insert into takes values('41988', '105', '1', 'Fall', 2009, 'B+'); + insert into takes values('89414', '527', '1', 'Fall', 2004, 'A '); + insert into takes values('92864', '864', '1', 'Spring', 2006, 'B+'); + insert into takes values('19735', '612', '1', 'Fall', 2007, 'A '); + insert into takes values('914', '591', '1', 'Spring', 2005, 'C-'); + insert into takes values('70359', '242', '1', 'Fall', 2009, 'B+'); + insert into takes values('37734', '893', '1', 'Fall', 2007, 'A '); + insert into takes values('50664', '345', '1', 'Spring', 2008, 'A+'); + insert into takes values('37581', '169', '1', 'Spring', 2007, 'C '); + insert into takes values('10454', '603', '1', 'Fall', 2003, 'A-'); + insert into takes values('163', '603', '1', 'Fall', 2003, 'A '); + insert into takes values('38548', '408', '1', 'Spring', 2007, 'A+'); + insert into takes values('95099', '105', '1', 'Fall', 2009, 'C '); + insert into takes values('77364', '527', '1', 'Fall', 2004, 'B '); + insert into takes values('53152', '679', '1', 'Spring', 2010, 'A+'); + insert into takes values('95205', '959', '1', 'Fall', 2006, 'C '); + insert into takes values('21246', '461', '1', 'Fall', 2002, 'B+'); + insert into takes values('43032', '137', '1', 'Spring', 2002, 'A '); + insert into takes values('66090', '426', '1', 'Spring', 2006, 'C '); + insert into takes values('63449', '793', '1', 'Spring', 2002, 'B-'); + insert into takes values('50267', '158', '1', 'Fall', 2008, 'B '); + insert into takes values('63645', '852', '1', 'Spring', 2008, 'C '); + insert into takes values('33094', '270', '1', 'Spring', 2010, 'C '); + insert into takes values('73492', '493', '1', 'Spring', 2010, 'C-'); + insert into takes values('80248', '852', '1', 'Spring', 2008, 'A-'); + insert into takes values('5824', '338', '2', 'Spring', 2006, 'A-'); + insert into takes values('14668', '561', '1', 'Fall', 2006, 'B-'); + insert into takes values('42625', '443', '1', 'Spring', 2010, 'B-'); + insert into takes values('50039', '561', '1', 'Fall', 2006, 'B+'); + insert into takes values('18286', '735', '1', 'Spring', 2003, 'B '); + insert into takes values('46436', '274', '1', 'Fall', 2002, 'C+'); + insert into takes values('20378', '802', '1', 'Spring', 2003, 'C-'); + insert into takes values('73072', '642', '1', 'Fall', 2004, 'C-'); + insert into takes values('94894', '679', '1', 'Spring', 2010, 'B-'); + insert into takes values('64169', '960', '2', 'Fall', 2006, 'A-'); + insert into takes values('32056', '545', '1', 'Fall', 2001, 'A '); + insert into takes values('80057', '415', '1', 'Fall', 2010, 'A+'); + insert into takes values('75547', '274', '1', 'Fall', 2002, 'B+'); + insert into takes values('10705', '702', '1', 'Spring', 2001, 'B-'); + insert into takes values('35293', '527', '1', 'Fall', 2004, 'A-'); + insert into takes values('66229', '105', '2', 'Fall', 2002, 'B '); + insert into takes values('7970', '972', '1', 'Spring', 2009, 'A '); + insert into takes values('78581', '408', '2', 'Spring', 2003, 'B+'); + insert into takes values('74796', '192', '1', 'Fall', 2002, 'B-'); + insert into takes values('56057', '362', '1', 'Fall', 2005, 'A '); + insert into takes values('64914', '468', '1', 'Fall', 2005, 'C-'); + insert into takes values('5824', '237', '1', 'Spring', 2008, 'B-'); + insert into takes values('99760', '239', '1', 'Fall', 2006, 'B+'); + insert into takes values('63449', '748', '1', 'Fall', 2003, 'A '); + insert into takes values('35721', '974', '1', 'Fall', 2003, 'C+'); + insert into takes values('79469', '362', '3', 'Spring', 2008, 'A-'); + insert into takes values('37339', '629', '1', 'Spring', 2003, 'B+'); + insert into takes values('82301', '304', '1', 'Fall', 2009, 'A+'); + insert into takes values('95029', '349', '1', 'Spring', 2008, 'C '); + insert into takes values('35687', '169', '2', 'Fall', 2002, 'C+'); + insert into takes values('99711', '319', '1', 'Spring', 2003, 'A+'); + insert into takes values('75423', '974', '1', 'Fall', 2003, 'B-'); + insert into takes values('95850', '959', '1', 'Fall', 2006, 'C-'); + insert into takes values('67560', '304', '1', 'Fall', 2009, 'B-'); + insert into takes values('4015', '443', '2', 'Spring', 2002, 'C '); + insert into takes values('75534', '626', '1', 'Fall', 2006, 'A '); + insert into takes values('84792', '415', '1', 'Fall', 2010, 'B '); + insert into takes values('24116', '408', '1', 'Spring', 2007, 'B-'); + insert into takes values('59538', '748', '1', 'Fall', 2003, 'A '); + insert into takes values('92776', '795', '1', 'Spring', 2004, 'B+'); + insert into takes values('89414', '626', '1', 'Fall', 2006, 'B-'); + insert into takes values('94990', '496', '1', 'Fall', 2001, 'C+'); + insert into takes values('23934', '443', '1', 'Spring', 2010, 'A+'); + insert into takes values('77021', '200', '1', 'Spring', 2007, 'C '); + insert into takes values('62784', '200', '2', 'Fall', 2002, 'C '); + insert into takes values('32056', '421', '1', 'Fall', 2004, 'B-'); + insert into takes values('45300', '496', '1', 'Fall', 2001, 'C '); + insert into takes values('95205', '559', '1', 'Fall', 2002, 'A-'); + insert into takes values('23994', '158', '2', 'Spring', 2008, 'C '); + insert into takes values('80247', '795', '1', 'Spring', 2004, 'C+'); + insert into takes values('72643', '960', '1', 'Fall', 2009, 'B '); + insert into takes values('86404', '603', '1', 'Fall', 2003, 'C+'); + insert into takes values('22254', '696', '1', 'Spring', 2002, 'C-'); + insert into takes values('61444', '105', '2', 'Fall', 2002, 'A+'); + insert into takes values('21101', '493', '1', 'Spring', 2010, 'C '); + insert into takes values('53699', '486', '1', 'Fall', 2009, 'A-'); + insert into takes values('5250', '239', '1', 'Fall', 2006, 'C+'); + insert into takes values('33401', '366', '1', 'Fall', 2005, 'A '); + insert into takes values('78314', '629', '1', 'Spring', 2003, 'B '); + insert into takes values('65396', '679', '1', 'Spring', 2010, 'C-'); + insert into takes values('85366', '258', '1', 'Fall', 2007, 'C+'); + insert into takes values('23344', '735', '2', 'Spring', 2010, 'A+'); + insert into takes values('16480', '362', '3', 'Spring', 2008, 'B-'); + insert into takes values('84865', '362', '2', 'Fall', 2006, 'C+'); + insert into takes values('28004', '867', '2', 'Fall', 2010, 'C+'); + insert into takes values('57538', '443', '2', 'Spring', 2002, 'A '); + insert into takes values('48778', '702', '1', 'Spring', 2001, 'B+'); + insert into takes values('44551', '612', '1', 'Fall', 2007, 'C+'); + insert into takes values('78782', '345', '1', 'Spring', 2008, 'A-'); + insert into takes values('59908', '400', '2', 'Fall', 2003, 'A+'); + insert into takes values('52741', '258', '1', 'Fall', 2007, 'A '); + insert into takes values('69628', '875', '1', 'Spring', 2005, 'A-'); + insert into takes values('61414', '663', '1', 'Spring', 2005, 'A+'); + insert into takes values('34404', '258', '1', 'Fall', 2007, 'A+'); + insert into takes values('85308', '200', '1', 'Spring', 2007, 'C+'); + insert into takes values('85849', '493', '1', 'Spring', 2010, 'B+'); + insert into takes values('80799', '927', '1', 'Fall', 2002, 'A '); + insert into takes values('60867', '962', '1', 'Spring', 2008, 'A '); + insert into takes values('95850', '875', '1', 'Spring', 2005, 'C+'); + insert into takes values('48009', '489', '1', 'Fall', 2007, 'A '); + insert into takes values('37809', '581', '1', 'Spring', 2005, 'A+'); + insert into takes values('5898', '319', '1', 'Spring', 2003, 'A '); + insert into takes values('7123', '802', '1', 'Spring', 2003, 'A-'); + insert into takes values('32369', '612', '1', 'Fall', 2007, 'A '); + insert into takes values('14668', '408', '2', 'Spring', 2003, 'C-'); + insert into takes values('5843', '489', '1', 'Fall', 2007, 'C+'); + insert into takes values('82591', '599', '1', 'Spring', 2003, 'B '); + insert into takes values('80799', '105', '1', 'Fall', 2009, 'B '); + insert into takes values('37869', '200', '2', 'Fall', 2002, 'A '); + insert into takes values('69225', '319', '1', 'Spring', 2003, 'A '); + insert into takes values('67371', '802', '1', 'Spring', 2003, 'B+'); + insert into takes values('90372', '445', '1', 'Spring', 2001, 'C '); + insert into takes values('50664', '137', '1', 'Spring', 2002, 'C '); + insert into takes values('14668', '400', '2', 'Fall', 2003, 'C+'); + insert into takes values('38013', '482', '1', 'Fall', 2005, 'B+'); + insert into takes values('63489', '603', '1', 'Fall', 2003, 'A-'); + insert into takes values('10904', '735', '1', 'Spring', 2003, 'A+'); + insert into takes values('87651', '274', '1', 'Fall', 2002, 'B+'); + insert into takes values('68396', '867', '2', 'Fall', 2010, 'B+'); + insert into takes values('66090', '702', '1', 'Spring', 2001, 'B+'); + insert into takes values('94311', '527', '1', 'Fall', 2004, 'C-'); + insert into takes values('22179', '867', '2', 'Fall', 2010, 'C-'); + insert into takes values('13757', '137', '1', 'Spring', 2002, 'C+'); + insert into takes values('63039', '362', '1', 'Fall', 2005, 'B+'); + insert into takes values('34569', '457', '1', 'Spring', 2001, 'C '); + insert into takes values('96227', '493', '1', 'Spring', 2010, 'B-'); + insert into takes values('95099', '893', '1', 'Fall', 2007, 'B-'); + insert into takes values('43495', '443', '2', 'Spring', 2002, 'A-'); + insert into takes values('63612', '349', '1', 'Spring', 2008, 'C '); + insert into takes values('82082', '362', '3', 'Spring', 2008, 'C+'); + insert into takes values('65258', '612', '1', 'Fall', 2007, 'A-'); + insert into takes values('63288', '591', '1', 'Spring', 2005, 'C '); + insert into takes values('56882', '629', '1', 'Spring', 2003, 'B '); + insert into takes values('91978', '362', '3', 'Spring', 2008, 'A-'); + insert into takes values('83314', '663', '1', 'Spring', 2005, 'B+'); + insert into takes values('44881', '362', '1', 'Fall', 2005, 'A-'); + insert into takes values('15249', '415', '1', 'Fall', 2010, 'A+'); + insert into takes values('31079', '443', '2', 'Spring', 2002, 'A-'); + insert into takes values('77415', '571', '1', 'Spring', 2004, 'B-'); + insert into takes values('61402', '527', '1', 'Fall', 2004, 'A+'); + insert into takes values('32368', '486', '1', 'Fall', 2009, 'C '); + insert into takes values('92839', '349', '1', 'Spring', 2008, 'A-'); + insert into takes values('72165', '415', '1', 'Fall', 2010, 'A-'); + insert into takes values('99399', '338', '1', 'Spring', 2007, 'B+'); + insert into takes values('88308', '696', '1', 'Spring', 2002, 'C '); + insert into takes values('88577', '443', '2', 'Spring', 2002, 'B-'); + insert into takes values('41261', '408', '2', 'Spring', 2003, 'C '); + insert into takes values('94535', '192', '1', 'Fall', 2002, 'C-'); + insert into takes values('99719', '561', '1', 'Fall', 2006, 'B-'); + insert into takes values('10527', '603', '1', 'Fall', 2003, 'A-'); + insert into takes values('22198', '843', '1', 'Fall', 2010, 'A+'); + insert into takes values('97629', '527', '1', 'Fall', 2004, 'A '); + insert into takes values('81258', '443', '2', 'Spring', 2002, 'C '); + insert into takes values('62636', '867', '1', 'Fall', 2006, 'B-'); + insert into takes values('81884', '679', '1', 'Spring', 2010, 'B '); + insert into takes values('76799', '352', '1', 'Spring', 2006, 'A-'); + insert into takes values('64138', '349', '1', 'Spring', 2008, 'C+'); + insert into takes values('10076', '704', '1', 'Spring', 2008, 'B+'); + insert into takes values('42625', '927', '1', 'Fall', 2002, 'B '); + insert into takes values('17133', '457', '1', 'Spring', 2001, 'B+'); + insert into takes values('42388', '612', '1', 'Fall', 2007, 'A '); + insert into takes values('20084', '960', '2', 'Fall', 2006, 'A '); + insert into takes values('57135', '400', '1', 'Spring', 2007, 'A+'); + insert into takes values('58172', '334', '1', 'Fall', 2009, 'A-'); + insert into takes values('78782', '802', '1', 'Spring', 2003, 'C+'); + insert into takes values('65038', '408', '2', 'Spring', 2003, 'B-'); + insert into takes values('85981', '408', '2', 'Spring', 2003, 'B-'); + insert into takes values('53799', '338', '2', 'Spring', 2006, 'B '); + insert into takes values('52203', '974', '1', 'Fall', 2003, 'A '); + insert into takes values('40481', '612', '1', 'Fall', 2007, 'A-'); + insert into takes values('21246', '408', '2', 'Spring', 2003, 'A '); + insert into takes values('34018', '864', '1', 'Spring', 2006, 'C-'); + insert into takes values('96246', '496', '1', 'Fall', 2001, 'B '); + insert into takes values('5298', '362', '3', 'Spring', 2008, 'B+'); + insert into takes values('50598', '158', '1', 'Fall', 2008, 'B '); + insert into takes values('40178', '735', '1', 'Spring', 2003, 'C-'); + insert into takes values('20814', '626', '1', 'Fall', 2006, 'C '); + insert into takes values('68280', '237', '1', 'Spring', 2008, 'B+'); + insert into takes values('9183', '401', '1', 'Fall', 2003, 'B '); + insert into takes values('53803', '760', '1', 'Spring', 2004, 'B-'); + insert into takes values('4860', '959', '1', 'Fall', 2006, 'C+'); + insert into takes values('16035', '875', '1', 'Spring', 2005, 'C-'); + insert into takes values('91992', '200', '1', 'Spring', 2007, 'A-'); + insert into takes values('90181', '362', '3', 'Spring', 2008, 'B-'); + insert into takes values('86802', '468', '1', 'Fall', 2005, 'B '); + insert into takes values('88472', '843', '1', 'Fall', 2010, 'B-'); + insert into takes values('52385', '415', '1', 'Fall', 2010, 'C+'); + insert into takes values('11682', '949', '1', 'Fall', 2007, 'C-'); + insert into takes values('83691', '445', '1', 'Spring', 2001, 'A+'); + insert into takes values('53118', '192', '1', 'Fall', 2002, 'A '); + insert into takes values('81031', '843', '1', 'Fall', 2010, 'B '); + insert into takes values('80976', '421', '1', 'Fall', 2004, 'B+'); + insert into takes values('52371', '795', '1', 'Spring', 2004, 'B '); + insert into takes values('96246', '559', '1', 'Fall', 2002, 'B+'); + insert into takes values('49450', '239', '1', 'Fall', 2006, 'C '); + insert into takes values('64067', '274', '1', 'Fall', 2002, 'B '); + insert into takes values('5463', '158', '1', 'Fall', 2008, 'C '); + insert into takes values('30650', '408', '1', 'Spring', 2007, 'C-'); + insert into takes values('92693', '352', '1', 'Spring', 2006, 'A '); + insert into takes values('38371', '893', '1', 'Fall', 2007, 'B '); + insert into takes values('93125', '352', '1', 'Spring', 2006, 'B+'); + insert into takes values('24201', '629', '1', 'Spring', 2003, 'A '); + insert into takes values('20084', '345', '1', 'Spring', 2008, 'A+'); + insert into takes values('37038', '604', '1', 'Spring', 2009, 'C '); + insert into takes values('75299', '445', '1', 'Spring', 2001, 'B '); + insert into takes values('81984', '599', '1', 'Spring', 2003, 'C+'); + insert into takes values('30164', '962', '1', 'Spring', 2008, 'C-'); + insert into takes values('94801', '401', '1', 'Fall', 2003, 'C+'); + insert into takes values('65987', '591', '1', 'Spring', 2005, 'C '); + insert into takes values('83444', '793', '1', 'Spring', 2002, 'A '); + insert into takes values('5017', '927', '1', 'Fall', 2002, 'B '); + insert into takes values('41596', '852', '1', 'Spring', 2008, 'C-'); + insert into takes values('66753', '791', '1', 'Spring', 2006, 'C-'); + insert into takes values('9993', '791', '1', 'Spring', 2006, 'A-'); + insert into takes values('18675', '468', '1', 'Fall', 2005, 'B-'); + insert into takes values('27919', '421', '1', 'Fall', 2004, 'A-'); + insert into takes values('46655', '158', '2', 'Spring', 2008, 'B+'); + insert into takes values('77364', '991', '1', 'Spring', 2008, 'C-'); + insert into takes values('12683', '105', '1', 'Fall', 2009, 'A-'); + insert into takes values('16311', '802', '1', 'Spring', 2003, 'A+'); + insert into takes values('7970', '852', '1', 'Spring', 2008, 'A '); + insert into takes values('5871', '237', '2', 'Fall', 2009, 'B '); + insert into takes values('74464', '237', '1', 'Spring', 2008, 'B-'); + insert into takes values('21789', '476', '1', 'Fall', 2010, 'A '); + insert into takes values('72014', '893', '1', 'Fall', 2007, 'C+'); + insert into takes values('19245', '760', '1', 'Spring', 2004, 'A-'); + insert into takes values('41741', '962', '1', 'Spring', 2008, 'C+'); + insert into takes values('57083', '735', '2', 'Spring', 2010, 'B-'); + insert into takes values('10814', '581', '1', 'Spring', 2005, 'C '); + insert into takes values('69730', '591', '1', 'Spring', 2005, 'B-'); + insert into takes values('32464', '642', '1', 'Fall', 2004, 'B-'); + insert into takes values('68242', '349', '1', 'Spring', 2008, 'C-'); + insert into takes values('77244', '415', '1', 'Fall', 2010, 'C '); + insert into takes values('78756', '808', '1', 'Fall', 2003, 'B '); + insert into takes values('77898', '408', '1', 'Spring', 2007, 'A '); + insert into takes values('5208', '237', '2', 'Fall', 2009, 'B '); + insert into takes values('81175', '875', '1', 'Spring', 2005, 'A '); + insert into takes values('70572', '571', '1', 'Spring', 2004, 'B-'); + insert into takes values('18234', '591', '1', 'Spring', 2005, 'C '); + insert into takes values('69241', '631', '1', 'Spring', 2007, 'C+'); + insert into takes values('68242', '974', '1', 'Fall', 2003, 'B+'); + insert into takes values('25068', '663', '1', 'Spring', 2005, 'A-'); + insert into takes values('68779', '795', '1', 'Spring', 2004, 'B+'); + insert into takes values('68010', '362', '2', 'Fall', 2006, 'C+'); + insert into takes values('76057', '319', '1', 'Spring', 2003, 'A+'); + insert into takes values('7390', '239', '1', 'Fall', 2006, 'B-'); + insert into takes values('85445', '808', '1', 'Fall', 2003, 'C-'); + insert into takes values('87048', '334', '1', 'Fall', 2009, 'C+'); + insert into takes values('38336', '561', '1', 'Fall', 2006, 'A '); + insert into takes values('18636', '352', '1', 'Spring', 2006, 'A+'); + insert into takes values('91992', '629', '1', 'Spring', 2003, 'C+'); + insert into takes values('858', '349', '1', 'Spring', 2008, 'A+'); + insert into takes values('18809', '239', '1', 'Fall', 2006, 'A '); + insert into takes values('82580', '545', '1', 'Fall', 2001, 'C '); + insert into takes values('41751', '603', '1', 'Fall', 2003, 'A-'); + insert into takes values('95320', '345', '1', 'Spring', 2008, 'A+'); + insert into takes values('10204', '696', '1', 'Spring', 2002, 'B-'); + insert into takes values('24796', '791', '1', 'Spring', 2006, 'B+'); + insert into takes values('123', '169', '2', 'Fall', 2002, 'B-'); + insert into takes values('10663', '237', '1', 'Spring', 2008, 'B+'); + insert into takes values('93039', '169', '2', 'Fall', 2002, 'B-'); + insert into takes values('23934', '791', '1', 'Spring', 2006, 'B-'); + insert into takes values('69850', '105', '1', 'Fall', 2009, 'C-'); + insert into takes values('39521', '559', '1', 'Fall', 2002, 'C+'); + insert into takes values('73602', '612', '1', 'Fall', 2007, 'C '); + insert into takes values('94535', '362', '1', 'Fall', 2005, 'B-'); + insert into takes values('85849', '949', '1', 'Fall', 2007, 'B '); + insert into takes values('92040', '105', '1', 'Fall', 2009, 'C+'); + insert into takes values('66269', '581', '1', 'Spring', 2005, 'B '); + insert into takes values('81876', '599', '1', 'Spring', 2003, 'B '); + insert into takes values('42114', '304', '1', 'Fall', 2009, 'A-'); + insert into takes values('48901', '237', '2', 'Fall', 2009, 'C+'); + insert into takes values('5617', '972', '1', 'Spring', 2009, 'C '); + insert into takes values('85308', '960', '2', 'Fall', 2006, 'C '); + insert into takes values('86552', '692', '1', 'Spring', 2010, 'A-'); + insert into takes values('64192', '445', '1', 'Spring', 2001, 'C '); + insert into takes values('44985', '949', '1', 'Fall', 2007, 'A+'); + insert into takes values('93571', '366', '1', 'Fall', 2005, 'B+'); + insert into takes values('86651', '581', '1', 'Spring', 2005, 'B '); + insert into takes values('14182', '476', '1', 'Fall', 2010, 'C+'); + insert into takes values('46769', '704', '1', 'Spring', 2008, 'B-'); + insert into takes values('81028', '626', '1', 'Fall', 2006, 'A '); + insert into takes values('9953', '735', '2', 'Spring', 2010, 'A '); + insert into takes values('2201', '461', '1', 'Fall', 2002, 'B '); + insert into takes values('56058', '974', '1', 'Fall', 2003, 'C '); + insert into takes values('12683', '445', '1', 'Spring', 2001, 'C+'); + insert into takes values('56089', '496', '1', 'Fall', 2001, 'B+'); + insert into takes values('56212', '867', '2', 'Fall', 2010, 'A+'); + insert into takes values('99268', '864', '1', 'Spring', 2006, 'A-'); + insert into takes values('88887', '362', '2', 'Fall', 2006, 'A+'); + insert into takes values('32886', '875', '1', 'Spring', 2005, 'A '); + insert into takes values('99271', '338', '2', 'Spring', 2006, 'A-'); + insert into takes values('63582', '795', '1', 'Spring', 2004, 'C-'); + insert into takes values('66229', '791', '1', 'Spring', 2006, 'C+'); + insert into takes values('64724', '802', '1', 'Spring', 2003, 'C '); + insert into takes values('5414', '421', '1', 'Fall', 2004, 'C-'); + insert into takes values('24442', '338', '2', 'Spring', 2006, 'C '); + insert into takes values('71944', '704', '1', 'Spring', 2008, 'C+'); + insert into takes values('33107', '852', '1', 'Spring', 2008, 'B-'); + insert into takes values('59920', '960', '2', 'Fall', 2006, 'A '); + insert into takes values('59046', '401', '1', 'Fall', 2003, 'A '); + insert into takes values('93061', '362', '3', 'Spring', 2008, 'C-'); + insert into takes values('53118', '949', '1', 'Fall', 2007, 'C-'); + insert into takes values('62705', '927', '1', 'Fall', 2002, 'C-'); + insert into takes values('95205', '875', '1', 'Spring', 2005, 'C+'); + insert into takes values('85226', '875', '1', 'Spring', 2005, 'C '); + insert into takes values('97065', '972', '1', 'Spring', 2009, 'A+'); + insert into takes values('35687', '421', '1', 'Fall', 2004, 'A '); + insert into takes values('107', '366', '1', 'Fall', 2005, 'B-'); + insert into takes values('54612', '349', '1', 'Spring', 2008, 'B '); + insert into takes values('27044', '443', '2', 'Spring', 2002, 'A-'); + insert into takes values('61854', '599', '1', 'Spring', 2003, 'B+'); + insert into takes values('72358', '631', '1', 'Spring', 2007, 'C '); + insert into takes values('95953', '704', '1', 'Spring', 2008, 'C-'); + insert into takes values('28252', '400', '1', 'Spring', 2007, 'C '); + insert into takes values('14563', '349', '1', 'Spring', 2008, 'B+'); + insert into takes values('90009', '867', '1', 'Fall', 2006, 'B+'); + insert into takes values('2139', '158', '2', 'Spring', 2008, 'B '); + insert into takes values('30845', '747', '1', 'Spring', 2004, 'B '); + insert into takes values('35362', '443', '1', 'Spring', 2010, 'A+'); + insert into takes values('33645', '468', '2', 'Fall', 2007, 'B '); + insert into takes values('85754', '760', '1', 'Spring', 2004, 'A '); + insert into takes values('95027', '581', '1', 'Spring', 2005, 'B+'); + insert into takes values('22620', '679', '1', 'Spring', 2010, 'A '); + insert into takes values('87651', '962', '1', 'Spring', 2008, 'B '); + insert into takes values('62705', '642', '1', 'Fall', 2004, 'B '); + insert into takes values('87439', '237', '2', 'Fall', 2009, 'C-'); + insert into takes values('23475', '486', '1', 'Fall', 2009, 'A+'); + insert into takes values('59117', '468', '2', 'Fall', 2007, 'C '); + insert into takes values('12069', '663', '1', 'Spring', 2005, 'A '); + insert into takes values('44271', '692', '1', 'Spring', 2010, 'C+'); + insert into takes values('51238', '105', '1', 'Fall', 2009, 'B '); + insert into takes values('34422', '545', '1', 'Fall', 2001, 'C '); + insert into takes values('10033', '457', '1', 'Spring', 2001, 'C-'); + insert into takes values('86806', '242', '1', 'Fall', 2009, 'C-'); + insert into takes values('19293', '482', '1', 'Fall', 2005, 'B+'); + insert into takes values('49280', '489', '1', 'Fall', 2007, 'B '); + insert into takes values('9360', '493', '1', 'Spring', 2010, 'C '); + insert into takes values('40677', '461', '1', 'Fall', 2002, 'A-'); + insert into takes values('22260', '631', '1', 'Spring', 2007, 'C-'); + insert into takes values('8517', '362', '3', 'Spring', 2008, 'C+'); + insert into takes values('74163', '105', '1', 'Fall', 2009, 'A+'); + insert into takes values('79892', '748', '1', 'Fall', 2003, 'C-'); + insert into takes values('12711', '400', '1', 'Spring', 2007, 'C-'); + insert into takes values('78143', '631', '1', 'Spring', 2007, 'A-'); + insert into takes values('97400', '237', '1', 'Spring', 2008, 'B '); + insert into takes values('37101', '362', '1', 'Fall', 2005, 'C+'); + insert into takes values('67514', '867', '2', 'Fall', 2010, 'A-'); + insert into takes values('43432', '400', '1', 'Spring', 2007, 'B-'); + insert into takes values('74473', '679', '1', 'Spring', 2010, 'C '); + insert into takes values('26730', '486', '1', 'Fall', 2009, 'C-'); + insert into takes values('8912', '408', '1', 'Spring', 2007, 'A-'); + insert into takes values('46450', '663', '1', 'Spring', 2005, 'A-'); + insert into takes values('21394', '400', '2', 'Fall', 2003, 'B '); + insert into takes values('90353', '747', '1', 'Spring', 2004, 'C+'); + insert into takes values('77664', '304', '1', 'Fall', 2009, 'A '); + insert into takes values('85981', '338', '1', 'Spring', 2007, 'B+'); + insert into takes values('31554', '694', '1', 'Fall', 2002, 'A-'); + insert into takes values('81294', '867', '1', 'Fall', 2006, 'B '); + insert into takes values('59539', '559', '1', 'Fall', 2002, 'C '); + insert into takes values('13365', '239', '1', 'Fall', 2006, 'B+'); + insert into takes values('82687', '304', '1', 'Fall', 2009, 'C-'); + insert into takes values('70395', '612', '1', 'Fall', 2007, 'A+'); + insert into takes values('15024', '237', '1', 'Spring', 2008, 'C-'); + insert into takes values('82868', '962', '1', 'Spring', 2008, 'B+'); + insert into takes values('99399', '366', '1', 'Fall', 2005, 'B '); + insert into takes values('92849', '747', '1', 'Spring', 2004, 'C '); + insert into takes values('63489', '629', '1', 'Spring', 2003, 'A+'); + insert into takes values('57238', '864', '1', 'Spring', 2006, 'A-'); + insert into takes values('72528', '421', '1', 'Fall', 2004, 'C-'); + insert into takes values('62705', '808', '1', 'Fall', 2003, 'C '); + insert into takes values('28352', '599', '1', 'Spring', 2003, 'B '); + insert into takes values('40371', '400', '1', 'Spring', 2007, 'C+'); + insert into takes values('32772', '137', '1', 'Spring', 2002, 'C-'); + insert into takes values('43032', '704', '1', 'Spring', 2008, 'C+'); + insert into takes values('93043', '603', '1', 'Fall', 2003, 'C '); + insert into takes values('96206', '702', '1', 'Spring', 2001, 'C-'); + insert into takes values('77003', '962', '1', 'Spring', 2008, 'C-'); + insert into takes values('41938', '408', '2', 'Spring', 2003, 'B '); + insert into takes values('13757', '581', '1', 'Spring', 2005, 'C-'); + insert into takes values('10033', '972', '1', 'Spring', 2009, 'C+'); + insert into takes values('67222', '362', '2', 'Fall', 2006, 'C '); + insert into takes values('99754', '949', '1', 'Fall', 2007, 'A '); + insert into takes values('90082', '679', '1', 'Spring', 2010, 'B '); + insert into takes values('2201', '545', '1', 'Fall', 2001, 'B '); + insert into takes values('37734', '304', '1', 'Fall', 2009, 'C+'); + insert into takes values('97658', '274', '1', 'Fall', 2002, 'B '); + insert into takes values('56299', '808', '1', 'Fall', 2003, 'C+'); + insert into takes values('72521', '468', '2', 'Fall', 2007, 'C '); + insert into takes values('51238', '561', '1', 'Fall', 2006, 'A '); + insert into takes values('77588', '137', '1', 'Spring', 2002, 'C+'); + insert into takes values('99451', '476', '1', 'Fall', 2010, 'C '); + insert into takes values('78434', '445', '1', 'Spring', 2001, 'C-'); + insert into takes values('74911', '663', '1', 'Spring', 2005, 'B '); + insert into takes values('70235', '461', '1', 'Fall', 2002, 'C-'); + insert into takes values('41832', '802', '1', 'Spring', 2003, 'C-'); + insert into takes values('42114', '313', '1', 'Fall', 2010, 'C-'); + insert into takes values('57456', '631', '1', 'Spring', 2007, 'C-'); + insert into takes values('64297', '949', '1', 'Fall', 2007, 'A '); + insert into takes values('78572', '852', '1', 'Spring', 2008, 'A '); + insert into takes values('51553', '334', '1', 'Fall', 2009, 'C '); + insert into takes values('80057', '793', '1', 'Spring', 2002, 'A+'); + insert into takes values('36402', '362', '3', 'Spring', 2008, 'C+'); + insert into takes values('53788', '237', '1', 'Spring', 2008, 'C-'); + insert into takes values('1087', '864', '1', 'Spring', 2006, 'A '); + insert into takes values('35198', '663', '1', 'Spring', 2005, 'B-'); + insert into takes values('59172', '192', '1', 'Fall', 2002, 'B '); + insert into takes values('73213', '974', '1', 'Fall', 2003, 'A-'); + insert into takes values('77580', '629', '1', 'Spring', 2003, 'C-'); + insert into takes values('10834', '489', '1', 'Fall', 2007, 'B-'); + insert into takes values('81294', '443', '1', 'Spring', 2010, 'C '); + insert into takes values('2133', '105', '2', 'Fall', 2002, 'C '); + insert into takes values('2201', '802', '1', 'Spring', 2003, 'B-'); + insert into takes values('96772', '972', '1', 'Spring', 2009, 'A-'); + insert into takes values('19293', '237', '2', 'Fall', 2009, 'A+'); + insert into takes values('24796', '559', '1', 'Fall', 2002, 'A+'); + insert into takes values('75596', '158', '1', 'Fall', 2008, 'B+'); + insert into takes values('12971', '875', '1', 'Spring', 2005, 'A+'); + insert into takes values('39612', '629', '1', 'Spring', 2003, 'A-'); + insert into takes values('61166', '581', '1', 'Spring', 2005, 'A '); + insert into takes values('22258', '158', '2', 'Spring', 2008, 'C+'); + insert into takes values('76049', '795', '1', 'Spring', 2004, 'C-'); + insert into takes values('33651', '949', '1', 'Fall', 2007, 'B-'); + insert into takes values('46337', '443', '1', 'Spring', 2010, 'C+'); + insert into takes values('47126', '362', '2', 'Fall', 2006, 'C+'); + insert into takes values('10556', '603', '1', 'Fall', 2003, 'A '); + insert into takes values('88472', '612', '1', 'Fall', 2007, 'B-'); + insert into takes values('15538', '959', '1', 'Fall', 2006, 'C-'); + insert into takes values('2419', '591', '1', 'Spring', 2005, 'B-'); + insert into takes values('31560', '457', '1', 'Spring', 2001, 'A+'); + insert into takes values('53699', '571', '1', 'Spring', 2004, 'C-'); + insert into takes values('88287', '949', '1', 'Fall', 2007, 'B '); + insert into takes values('29959', '704', '1', 'Spring', 2008, 'C-'); + insert into takes values('27950', '169', '2', 'Fall', 2002, 'C '); + insert into takes values('4173', '489', '1', 'Fall', 2007, 'A+'); + insert into takes values('16347', '457', '1', 'Spring', 2001, 'B-'); + insert into takes values('69222', '612', '1', 'Fall', 2007, 'B '); + insert into takes values('92965', '702', '1', 'Spring', 2001, 'B '); + insert into takes values('56003', '793', '1', 'Spring', 2002, 'C-'); + insert into takes values('36384', '867', '2', 'Fall', 2010, 'A-'); + insert into takes values('38902', '893', '1', 'Fall', 2007, 'B '); + insert into takes values('90009', '875', '1', 'Spring', 2005, 'B-'); + insert into takes values('83002', '663', '1', 'Spring', 2005, 'A+'); + insert into takes values('16311', '571', '1', 'Spring', 2004, 'B-'); + insert into takes values('53165', '421', '1', 'Fall', 2004, 'B '); + insert into takes values('41299', '400', '1', 'Spring', 2007, 'B+'); + insert into takes values('645', '991', '1', 'Spring', 2008, 'C '); + insert into takes values('2561', '694', '1', 'Fall', 2002, 'C-'); + insert into takes values('33338', '496', '1', 'Fall', 2001, 'A '); + insert into takes values('96206', '696', '1', 'Spring', 2002, 'C '); + insert into takes values('20489', '408', '1', 'Spring', 2007, 'B-'); + insert into takes values('83003', '760', '1', 'Spring', 2004, 'B+'); + insert into takes values('78552', '960', '2', 'Fall', 2006, 'C+'); + insert into takes values('28128', '795', '1', 'Spring', 2004, 'B+'); + insert into takes values('46725', '169', '2', 'Fall', 2002, 'A '); + insert into takes values('1836', '795', '1', 'Spring', 2004, 'C '); + insert into takes values('41683', '366', '1', 'Fall', 2005, 'A-'); + insert into takes values('75772', '747', '1', 'Spring', 2004, 'C '); + insert into takes values('58935', '972', '1', 'Spring', 2009, 'C '); + insert into takes values('39204', '426', '1', 'Spring', 2006, 'B+'); + insert into takes values('19321', '692', '1', 'Spring', 2010, 'C-'); + insert into takes values('91197', '137', '1', 'Spring', 2002, 'B '); + insert into takes values('87193', '875', '1', 'Spring', 2005, 'C '); + insert into takes values('30182', '445', '1', 'Spring', 2001, 'C-'); + insert into takes values('41973', '972', '1', 'Spring', 2009, 'C+'); + insert into takes values('85904', '319', '1', 'Spring', 2003, 'B '); + insert into takes values('89196', '960', '1', 'Fall', 2009, 'B '); + insert into takes values('29435', '959', '1', 'Fall', 2006, 'C+'); + insert into takes values('2286', '972', '1', 'Spring', 2009, 'C-'); + insert into takes values('78143', '242', '1', 'Fall', 2009, 'B-'); + insert into takes values('82066', '239', '1', 'Fall', 2006, 'C+'); + insert into takes values('58307', '468', '1', 'Fall', 2005, 'C '); + insert into takes values('29849', '200', '2', 'Fall', 2002, 'C+'); + insert into takes values('42556', '352', '1', 'Spring', 2006, 'A+'); + insert into takes values('68248', '875', '1', 'Spring', 2005, 'B+'); + insert into takes values('13211', '158', '2', 'Spring', 2008, 'C '); + insert into takes values('57538', '237', '2', 'Fall', 2009, 'B '); + insert into takes values('5898', '461', '1', 'Fall', 2002, 'A+'); + insert into takes values('50365', '362', '3', 'Spring', 2008, 'A+'); + insert into takes values('67542', '493', '1', 'Spring', 2010, 'C+'); + insert into takes values('14484', '626', '1', 'Fall', 2006, 'B+'); + insert into takes values('17207', '239', '1', 'Fall', 2006, 'A '); + insert into takes values('22396', '400', '1', 'Spring', 2007, 'A+'); + insert into takes values('99250', '867', '2', 'Fall', 2010, 'A '); + insert into takes values('80976', '808', '1', 'Fall', 2003, 'A '); + insert into takes values('19862', '443', '1', 'Spring', 2010, 'B '); + insert into takes values('11095', '626', '1', 'Fall', 2006, 'A '); + insert into takes values('24932', '426', '1', 'Spring', 2006, 'C+'); + insert into takes values('11152', '237', '2', 'Fall', 2009, 'A+'); + insert into takes values('43981', '867', '2', 'Fall', 2010, 'A-'); + insert into takes values('3651', '493', '1', 'Spring', 2010, 'A-'); + insert into takes values('91569', '137', '1', 'Spring', 2002, 'B+'); + insert into takes values('47487', '496', '1', 'Fall', 2001, 'C+'); + insert into takes values('51093', '626', '1', 'Fall', 2006, 'A-'); + insert into takes values('11057', '795', '1', 'Spring', 2004, 'A-'); + insert into takes values('87831', '400', '2', 'Fall', 2003, 'C-'); + insert into takes values('61166', '496', '1', 'Fall', 2001, 'A '); + insert into takes values('41599', '349', '1', 'Spring', 2008, 'A+'); + insert into takes values('77234', '426', '1', 'Spring', 2006, 'C+'); + insert into takes values('29803', '559', '1', 'Fall', 2002, 'C-'); + insert into takes values('37350', '795', '1', 'Spring', 2004, 'A+'); + insert into takes values('86736', '612', '1', 'Fall', 2007, 'B '); + insert into takes values('48611', '626', '1', 'Fall', 2006, 'A+'); + insert into takes values('40303', '629', '1', 'Spring', 2003, 'A '); + insert into takes values('85211', '334', '1', 'Fall', 2009, 'A '); + insert into takes values('3651', '237', '2', 'Fall', 2009, 'C+'); + insert into takes values('90372', '591', '1', 'Spring', 2005, 'C+'); + insert into takes values('35905', '694', '1', 'Fall', 2002, 'B+'); + insert into takes values('11453', '334', '1', 'Fall', 2009, 'A-'); + insert into takes values('93491', '304', '1', 'Fall', 2009, 'B '); + insert into takes values('10556', '105', '1', 'Fall', 2009, 'B+'); + insert into takes values('58935', '362', '1', 'Fall', 2005, 'C-'); + insert into takes values('75046', '974', '1', 'Fall', 2003, 'C+'); + insert into takes values('59290', '960', '1', 'Fall', 2009, 'C '); + insert into takes values('56499', '663', '1', 'Spring', 2005, 'A+'); + insert into takes values('40178', '366', '1', 'Fall', 2005, 'C+'); + insert into takes values('37350', '415', '1', 'Fall', 2010, 'A+'); + insert into takes values('28538', '345', '1', 'Spring', 2008, 'C+'); + insert into takes values('66356', '400', '2', 'Fall', 2003, 'C+'); + insert into takes values('47487', '489', '1', 'Fall', 2007, 'A '); + insert into takes values('20814', '401', '1', 'Fall', 2003, 'A '); + insert into takes values('75510', '704', '1', 'Spring', 2008, 'C+'); + insert into takes values('44352', '376', '1', 'Fall', 2006, 'C '); + insert into takes values('22050', '843', '1', 'Fall', 2010, 'A+'); + insert into takes values('20985', '239', '1', 'Fall', 2006, 'A '); + insert into takes values('35905', '349', '1', 'Spring', 2008, 'C '); + insert into takes values('58170', '319', '1', 'Spring', 2003, 'B+'); + insert into takes values('5898', '581', '1', 'Spring', 2005, 'C '); + insert into takes values('67583', '561', '1', 'Fall', 2006, 'C+'); + insert into takes values('29192', '319', '1', 'Spring', 2003, 'B+'); + insert into takes values('6673', '642', '1', 'Fall', 2004, 'A '); + insert into takes values('11083', '960', '1', 'Fall', 2009, 'C+'); + insert into takes values('463', '401', '1', 'Fall', 2003, 'C-'); + insert into takes values('66753', '972', '1', 'Spring', 2009, 'B+'); + insert into takes values('57055', '843', '1', 'Fall', 2010, 'A-'); + insert into takes values('20974', '493', '1', 'Spring', 2010, 'A-'); + insert into takes values('39310', '802', '1', 'Spring', 2003, 'B-'); + insert into takes values('31820', '960', '1', 'Fall', 2009, 'B '); + insert into takes values('81031', '599', '1', 'Spring', 2003, 'B+'); + insert into takes values('23224', '949', '1', 'Fall', 2007, 'B+'); + insert into takes values('43989', '352', '1', 'Spring', 2006, 'B-'); + insert into takes values('898', '581', '1', 'Spring', 2005, 'B+'); + insert into takes values('32881', '304', '1', 'Fall', 2009, 'C+'); + insert into takes values('64938', '852', '1', 'Spring', 2008, 'B+'); + insert into takes values('53490', '319', '1', 'Spring', 2003, 'B '); + insert into takes values('73268', '631', '1', 'Spring', 2007, 'A-'); + insert into takes values('16467', '200', '1', 'Spring', 2007, 'B '); + insert into takes values('99073', '192', '1', 'Fall', 2002, 'A '); + insert into takes values('76049', '319', '1', 'Spring', 2003, 'B-'); + insert into takes values('37818', '169', '1', 'Spring', 2007, 'B+'); + insert into takes values('75116', '760', '1', 'Spring', 2004, 'C '); + insert into takes values('27952', '200', '1', 'Spring', 2007, 'A+'); + insert into takes values('88887', '604', '1', 'Spring', 2009, 'A '); + insert into takes values('58594', '843', '1', 'Fall', 2010, 'C '); + insert into takes values('3005', '200', '2', 'Fall', 2002, 'C+'); + insert into takes values('62429', '760', '1', 'Spring', 2004, 'C+'); + insert into takes values('50267', '426', '1', 'Spring', 2006, 'B-'); + insert into takes values('32464', '867', '1', 'Fall', 2006, 'A+'); + insert into takes values('35042', '489', '1', 'Fall', 2007, 'A-'); + insert into takes values('47670', '334', '1', 'Fall', 2009, 'C+'); + insert into takes values('30845', '352', '1', 'Spring', 2006, 'B '); + insert into takes values('85981', '748', '1', 'Fall', 2003, 'C-'); + insert into takes values('54296', '158', '1', 'Fall', 2008, 'C '); + insert into takes values('84189', '401', '1', 'Fall', 2003, 'A+'); + insert into takes values('85754', '959', '1', 'Fall', 2006, 'A-'); + insert into takes values('34236', '426', '1', 'Spring', 2006, 'B-'); + insert into takes values('81028', '192', '1', 'Fall', 2002, 'C+'); + insert into takes values('10454', '334', '1', 'Fall', 2009, 'B-'); + insert into takes values('10076', '105', '1', 'Fall', 2009, 'C-'); + insert into takes values('22620', '496', '1', 'Fall', 2001, 'B-'); + insert into takes values('18808', '345', '1', 'Spring', 2008, 'B+'); + insert into takes values('30164', '415', '1', 'Fall', 2010, 'C-'); + insert into takes values('45570', '960', '1', 'Fall', 2009, 'B-'); + insert into takes values('49813', '258', '1', 'Fall', 2007, 'C '); + insert into takes values('59046', '626', '1', 'Fall', 2006, 'A '); + insert into takes values('20002', '192', '1', 'Fall', 2002, 'A '); + insert into takes values('52019', '808', '1', 'Fall', 2003, 'A '); + insert into takes values('89104', '158', '2', 'Spring', 2008, 'B-'); + insert into takes values('51579', '237', '1', 'Spring', 2008, 'A+'); + insert into takes values('23794', '443', '1', 'Spring', 2010, 'A+'); + insert into takes values('96615', '972', '1', 'Spring', 2009, 'C+'); + insert into takes values('70098', '696', '1', 'Spring', 2002, 'A+'); + insert into takes values('97868', '748', '1', 'Fall', 2003, 'B '); + insert into takes values('18286', '482', '1', 'Fall', 2005, 'B+'); + insert into takes values('19766', '461', '1', 'Fall', 2002, 'C+'); + insert into takes values('99226', '493', '1', 'Spring', 2010, 'C-'); + insert into takes values('99780', '169', '2', 'Fall', 2002, 'C-'); + insert into takes values('17076', '362', '1', 'Fall', 2005, 'B-'); + insert into takes values('26619', '692', '1', 'Spring', 2010, 'B '); + insert into takes values('2501', '468', '2', 'Fall', 2007, 'B-'); + insert into takes values('13880', '426', '1', 'Spring', 2006, 'C-'); + insert into takes values('2501', '400', '1', 'Spring', 2007, 'A '); + insert into takes values('33817', '960', '1', 'Fall', 2009, 'A '); + insert into takes values('85614', '559', '1', 'Fall', 2002, 'B+'); + insert into takes values('51538', '345', '1', 'Spring', 2008, 'C '); + insert into takes values('75938', '169', '1', 'Spring', 2007, 'A+'); + insert into takes values('37219', '795', '1', 'Spring', 2004, 'B-'); + insert into takes values('73542', '468', '2', 'Fall', 2007, 'A '); + insert into takes values('27727', '581', '1', 'Spring', 2005, 'A '); + insert into takes values('10269', '421', '1', 'Fall', 2004, 'B-'); + insert into takes values('13217', '443', '1', 'Spring', 2010, 'A '); + insert into takes values('45494', '959', '1', 'Fall', 2006, 'A-'); + insert into takes values('44271', '105', '1', 'Fall', 2009, 'C+'); + insert into takes values('64138', '748', '1', 'Fall', 2003, 'B '); + insert into takes values('39114', '237', '1', 'Spring', 2008, 'C-'); + insert into takes values('19582', '443', '1', 'Spring', 2010, 'B-'); + insert into takes values('72521', '461', '1', 'Fall', 2002, 'A-'); + insert into takes values('78572', '169', '1', 'Spring', 2007, 'A '); + insert into takes values('46155', '338', '1', 'Spring', 2007, 'C+'); + insert into takes values('80420', '893', '1', 'Fall', 2007, 'C+'); + insert into takes values('43130', '237', '1', 'Spring', 2008, 'B-'); + insert into takes values('65681', '352', '1', 'Spring', 2006, 'C+'); + insert into takes values('49073', '949', '1', 'Fall', 2007, 'A '); + insert into takes values('71543', '960', '2', 'Fall', 2006, 'B '); + insert into takes values('83039', '692', '1', 'Spring', 2010, 'B-'); + insert into takes values('62054', '561', '1', 'Fall', 2006, 'C-'); + insert into takes values('1827', '400', '1', 'Spring', 2007, 'C+'); + insert into takes values('33817', '581', '1', 'Spring', 2005, 'A-'); + insert into takes values('16885', '426', '1', 'Spring', 2006, 'C '); + insert into takes values('898', '545', '1', 'Fall', 2001, 'A+'); + insert into takes values('87784', '959', '1', 'Fall', 2006, 'A+'); + insert into takes values('21789', '468', '1', 'Fall', 2005, 'A '); + insert into takes values('21556', '192', '1', 'Fall', 2002, 'C-'); + insert into takes values('69758', '169', '2', 'Fall', 2002, 'B-'); + insert into takes values('7490', '795', '1', 'Spring', 2004, 'A-'); + insert into takes values('49339', '493', '1', 'Spring', 2010, 'A '); + insert into takes values('76250', '258', '1', 'Fall', 2007, 'A+'); + insert into takes values('92949', '338', '2', 'Spring', 2006, 'B+'); + insert into takes values('69122', '571', '1', 'Spring', 2004, 'A-'); + insert into takes values('1968', '631', '1', 'Spring', 2007, 'A-'); + insert into takes values('64259', '304', '1', 'Fall', 2009, 'A-'); + insert into takes values('82970', '571', '1', 'Spring', 2004, 'B-'); + insert into takes values('463', '843', '1', 'Fall', 2010, 'A '); + insert into takes values('75273', '408', '1', 'Spring', 2007, 'C '); + insert into takes values('59539', '696', '1', 'Spring', 2002, 'C+'); + insert into takes values('87651', '338', '2', 'Spring', 2006, 'A+'); + insert into takes values('73387', '974', '1', 'Fall', 2003, 'A '); + insert into takes values('55857', '802', '1', 'Spring', 2003, 'A '); + insert into takes values('74639', '408', '1', 'Spring', 2007, 'B '); + insert into takes values('92849', '642', '1', 'Fall', 2004, 'C '); + insert into takes values('29192', '482', '1', 'Fall', 2005, 'B '); + insert into takes values('61081', '200', '2', 'Fall', 2002, 'C '); + insert into takes values('95089', '527', '1', 'Fall', 2004, 'C+'); + insert into takes values('59172', '345', '1', 'Spring', 2008, 'C+'); + insert into takes values('15883', '604', '1', 'Spring', 2009, 'A-'); + insert into takes values('81031', '362', '1', 'Fall', 2005, 'C-'); + insert into takes values('46066', '400', '1', 'Spring', 2007, 'B-'); + insert into takes values('7490', '663', '1', 'Spring', 2005, 'C '); + insert into takes values('46442', '626', '1', 'Fall', 2006, 'B-'); + insert into takes values('13495', '867', '2', 'Fall', 2010, 'A '); + insert into takes values('4582', '400', '2', 'Fall', 2003, 'B '); + insert into takes values('38555', '663', '1', 'Spring', 2005, 'A-'); + insert into takes values('27140', '158', '2', 'Spring', 2008, 'B-'); + insert into takes values('83002', '629', '1', 'Spring', 2003, 'A '); + insert into takes values('91442', '599', '1', 'Spring', 2003, 'C+'); + insert into takes values('41675', '200', '1', 'Spring', 2007, 'C+'); + insert into takes values('96911', '426', '1', 'Spring', 2006, 'A-'); + insert into takes values('19848', '704', '1', 'Spring', 2008, 'B '); + insert into takes values('41683', '875', '1', 'Spring', 2005, 'B-'); + insert into takes values('57242', '270', '1', 'Spring', 2010, 'C+'); + insert into takes values('11441', '629', '1', 'Spring', 2003, 'A+'); + insert into takes values('1232', '349', '1', 'Spring', 2008, 'B+'); + insert into takes values('81550', '893', '1', 'Fall', 2007, 'B+'); + insert into takes values('73186', '137', '1', 'Spring', 2002, 'C+'); + insert into takes values('18775', '400', '1', 'Spring', 2007, 'B '); + insert into takes values('94535', '415', '1', 'Fall', 2010, 'C '); + insert into takes values('14554', '893', '1', 'Fall', 2007, 'B+'); + insert into takes values('34404', '366', '1', 'Fall', 2005, 'A '); + insert into takes values('20244', '852', '1', 'Spring', 2008, 'B+'); + insert into takes values('14432', '200', '2', 'Fall', 2002, 'A+'); + insert into takes values('84654', '603', '1', 'Fall', 2003, 'A+'); + insert into takes values('69730', '496', '1', 'Fall', 2001, 'C+'); + insert into takes values('87054', '702', '1', 'Spring', 2001, 'B+'); + insert into takes values('27430', '362', '1', 'Fall', 2005, 'A '); + insert into takes values('76169', '875', '1', 'Spring', 2005, 'C+'); + insert into takes values('22268', '960', '2', 'Fall', 2006, 'A+'); + insert into takes values('87193', '702', '1', 'Spring', 2001, 'B-'); + insert into takes values('31250', '696', '1', 'Spring', 2002, 'B+'); + insert into takes values('79589', '237', '1', 'Spring', 2008, 'B+'); + insert into takes values('28977', '642', '1', 'Fall', 2004, 'A-'); + insert into takes values('57962', '974', '1', 'Fall', 2003, 'A+'); + insert into takes values('23994', '795', '1', 'Spring', 2004, 'C-'); + insert into takes values('57083', '200', '2', 'Fall', 2002, 'A '); + insert into takes values('31364', '169', '2', 'Fall', 2002, 'C '); + insert into takes values('78581', '864', '1', 'Spring', 2006, 'B-'); + insert into takes values('64550', '603', '1', 'Fall', 2003, 'C+'); + insert into takes values('64401', '629', '1', 'Spring', 2003, 'A-'); + insert into takes values('94324', '400', '1', 'Spring', 2007, 'C '); + insert into takes values('81789', '629', '1', 'Spring', 2003, 'B-'); + insert into takes values('42092', '489', '1', 'Fall', 2007, 'B '); + insert into takes values('69081', '559', '1', 'Fall', 2002, 'A '); + insert into takes values('78469', '468', '2', 'Fall', 2007, 'B '); + insert into takes values('36126', '571', '1', 'Spring', 2004, 'B '); + insert into takes values('40080', '972', '1', 'Spring', 2009, 'A-'); + insert into takes values('32772', '468', '1', 'Fall', 2005, 'A-'); + insert into takes values('57431', '604', '1', 'Spring', 2009, 'A-'); + insert into takes values('67293', '735', '2', 'Spring', 2010, 'A-'); + insert into takes values('97228', '802', '1', 'Spring', 2003, 'A '); + insert into takes values('29002', '457', '1', 'Spring', 2001, 'C-'); + insert into takes values('99730', '802', '1', 'Spring', 2003, 'C '); + insert into takes values('69679', '599', '1', 'Spring', 2003, 'B '); + insert into takes values('99710', '949', '1', 'Fall', 2007, 'B '); + insert into takes values('9256', '105', '2', 'Fall', 2002, 'B-'); + insert into takes values('34404', '376', '1', 'Fall', 2006, 'A+'); + insert into takes values('73542', '875', '1', 'Spring', 2005, 'A '); + insert into takes values('79911', '445', '1', 'Spring', 2001, 'B '); + insert into takes values('51955', '496', '1', 'Fall', 2001, 'A+'); + insert into takes values('88472', '581', '1', 'Spring', 2005, 'B-'); + insert into takes values('75299', '991', '1', 'Spring', 2008, 'B+'); + insert into takes values('62705', '735', '2', 'Spring', 2010, 'C-'); + insert into takes values('48778', '362', '3', 'Spring', 2008, 'B-'); + insert into takes values('79502', '482', '1', 'Fall', 2005, 'B+'); + insert into takes values('17507', '258', '1', 'Fall', 2007, 'A '); + insert into takes values('18636', '692', '1', 'Spring', 2010, 'B '); + insert into takes values('52385', '960', '2', 'Fall', 2006, 'A-'); + insert into takes values('98056', '591', '1', 'Spring', 2005, 'C '); + insert into takes values('3163', '400', '1', 'Spring', 2007, 'A-'); + insert into takes values('19766', '791', '1', 'Spring', 2006, 'B '); + insert into takes values('23110', '793', '1', 'Spring', 2002, 'B '); + insert into takes values('89000', '366', '1', 'Fall', 2005, 'C-'); + insert into takes values('36244', '426', '1', 'Spring', 2006, 'A '); + insert into takes values('28977', '274', '1', 'Fall', 2002, 'C '); + insert into takes values('19603', '692', '1', 'Spring', 2010, 'C-'); + insert into takes values('914', '319', '1', 'Spring', 2003, 'A-'); + insert into takes values('35498', '599', '1', 'Spring', 2003, 'C-'); + insert into takes values('64138', '319', '1', 'Spring', 2003, 'A-'); + insert into takes values('85505', '581', '1', 'Spring', 2005, 'B '); + insert into takes values('65101', '468', '2', 'Fall', 2007, 'B '); + insert into takes values('31761', '366', '1', 'Fall', 2005, 'B+'); + insert into takes values('83170', '169', '1', 'Spring', 2007, 'B-'); + insert into takes values('898', '443', '1', 'Spring', 2010, 'C-'); + insert into takes values('29920', '747', '1', 'Spring', 2004, 'A-'); + insert into takes values('56941', '599', '1', 'Spring', 2003, 'A+'); + insert into takes values('81984', '571', '1', 'Spring', 2004, 'B-'); + insert into takes values('97042', '443', '2', 'Spring', 2002, 'C-'); + insert into takes values('27804', '137', '1', 'Spring', 2002, 'B-'); + insert into takes values('30021', '679', '1', 'Spring', 2010, 'B '); + insert into takes values('68150', '747', '1', 'Spring', 2004, 'C-'); + insert into takes values('89000', '242', '1', 'Fall', 2009, 'A '); + insert into takes values('70299', '237', '2', 'Fall', 2009, 'C-'); + insert into takes values('94801', '791', '1', 'Spring', 2006, 'C '); + insert into takes values('43854', '571', '1', 'Spring', 2004, 'B-'); + insert into takes values('95626', '338', '2', 'Spring', 2006, 'B+'); + insert into takes values('30858', '338', '2', 'Spring', 2006, 'C '); + insert into takes values('17207', '237', '1', 'Spring', 2008, 'B+'); + insert into takes values('26695', '629', '1', 'Spring', 2003, 'B-'); + insert into takes values('13753', '468', '2', 'Fall', 2007, 'A '); + insert into takes values('20084', '239', '1', 'Fall', 2006, 'A '); + insert into takes values('75878', '802', '1', 'Spring', 2003, 'A-'); + insert into takes values('25068', '338', '2', 'Spring', 2006, 'C-'); + insert into takes values('22258', '843', '1', 'Fall', 2010, 'C-'); + insert into takes values('53588', '949', '1', 'Fall', 2007, 'A+'); + insert into takes values('66212', '400', '1', 'Spring', 2007, 'C+'); + insert into takes values('36494', '696', '1', 'Spring', 2002, 'A '); + insert into takes values('20489', '599', '1', 'Spring', 2003, 'C+'); + insert into takes values('24387', '468', '2', 'Fall', 2007, 'C-'); + insert into takes values('46442', '747', '1', 'Spring', 2004, 'B '); + insert into takes values('31137', '642', '1', 'Fall', 2004, 'B '); + insert into takes values('2177', '493', '1', 'Spring', 2010, 'C '); + insert into takes values('99369', '893', '1', 'Fall', 2007, 'C-'); + insert into takes values('66269', '867', '1', 'Fall', 2006, 'A-'); + insert into takes values('6367', '949', '1', 'Fall', 2007, 'C-'); + insert into takes values('22254', '426', '1', 'Spring', 2006, 'B-'); + insert into takes values('64550', '334', '1', 'Fall', 2009, 'A+'); + insert into takes values('45680', '599', '1', 'Spring', 2003, 'A+'); + insert into takes values('7020', '105', '2', 'Fall', 2002, 'A+'); + insert into takes values('1460', '949', '1', 'Fall', 2007, 'C '); + insert into takes values('78116', '581', '1', 'Spring', 2005, 'C+'); + insert into takes values('61444', '192', '1', 'Fall', 2002, 'A+'); + insert into takes values('15024', '237', '2', 'Fall', 2009, 'B+'); + insert into takes values('51678', '893', '1', 'Fall', 2007, 'A+'); + insert into takes values('32483', '408', '1', 'Spring', 2007, 'A+'); + insert into takes values('60406', '270', '1', 'Spring', 2010, 'A-'); + insert into takes values('26080', '445', '1', 'Spring', 2001, 'B-'); + insert into takes values('68720', '362', '3', 'Spring', 2008, 'C '); + insert into takes values('85809', '599', '1', 'Spring', 2003, 'A '); + insert into takes values('77289', '493', '1', 'Spring', 2010, 'B '); + insert into takes values('83214', '591', '1', 'Spring', 2005, 'A+'); + insert into takes values('81610', '694', '1', 'Fall', 2002, 'B+'); + insert into takes values('77415', '679', '1', 'Spring', 2010, 'C '); + insert into takes values('85746', '408', '2', 'Spring', 2003, 'B-'); + insert into takes values('95046', '362', '3', 'Spring', 2008, 'A '); + insert into takes values('15726', '334', '1', 'Fall', 2009, 'A '); + insert into takes values('6990', '629', '1', 'Spring', 2003, 'C+'); + insert into takes values('39204', '793', '1', 'Spring', 2002, 'C '); + insert into takes values('70452', '313', '1', 'Fall', 2010, 'A+'); + insert into takes values('73602', '482', '1', 'Fall', 2005, 'B '); + insert into takes values('75395', '426', '1', 'Spring', 2006, 'A+'); + insert into takes values('9933', '362', '3', 'Spring', 2008, 'A '); + insert into takes values('80990', '843', '1', 'Fall', 2010, 'B+'); + insert into takes values('1727', '852', '1', 'Spring', 2008, 'B+'); + insert into takes values('26695', '927', '1', 'Fall', 2002, 'C+'); + insert into takes values('84845', '747', '1', 'Spring', 2004, 'A '); + insert into takes values('64192', '258', '1', 'Fall', 2007, 'B-'); + insert into takes values('97953', '489', '1', 'Fall', 2007, 'A '); + insert into takes values('42388', '747', '1', 'Spring', 2004, 'A+'); + insert into takes values('63502', '591', '1', 'Spring', 2005, 'C '); + insert into takes values('23270', '200', '1', 'Spring', 2007, 'C+'); + insert into takes values('15283', '927', '1', 'Fall', 2002, 'B-'); + insert into takes values('63645', '426', '1', 'Spring', 2006, 'A '); + insert into takes values('89051', '408', '2', 'Spring', 2003, 'A '); + insert into takes values('89414', '482', '1', 'Fall', 2005, 'C '); + insert into takes values('30943', '629', '1', 'Spring', 2003, 'B-'); + insert into takes values('63645', '345', '1', 'Spring', 2008, 'A '); + insert into takes values('86753', '362', '2', 'Fall', 2006, 'B+'); + insert into takes values('40738', '105', '2', 'Fall', 2002, 'A+'); + insert into takes values('26473', '612', '1', 'Fall', 2007, 'C '); + insert into takes values('69732', '735', '1', 'Spring', 2003, 'A-'); + insert into takes values('50966', '468', '2', 'Fall', 2007, 'C '); + insert into takes values('73328', '972', '1', 'Spring', 2009, 'B+'); + insert into takes values('85063', '345', '1', 'Spring', 2008, 'C-'); + insert into takes values('11578', '959', '1', 'Fall', 2006, 'A-'); + insert into takes values('49684', '747', '1', 'Spring', 2004, 'C+'); + insert into takes values('66259', '319', '1', 'Spring', 2003, 'A-'); + insert into takes values('84808', '158', '1', 'Fall', 2008, 'C+'); + insert into takes values('49759', '489', '1', 'Fall', 2007, 'B '); + insert into takes values('31101', '692', '1', 'Spring', 2010, 'B-'); + insert into takes values('40303', '972', '1', 'Spring', 2009, 'C-'); + insert into takes values('11195', '960', '2', 'Fall', 2006, 'A-'); + insert into takes values('29091', '158', '1', 'Fall', 2008, 'B+'); + insert into takes values('51997', '200', '2', 'Fall', 2002, 'B '); + insert into takes values('336', '443', '1', 'Spring', 2010, 'B '); + insert into takes values('21225', '704', '1', 'Spring', 2008, 'B+'); + insert into takes values('40992', '457', '1', 'Spring', 2001, 'C '); + insert into takes values('15980', '591', '1', 'Spring', 2005, 'C-'); + insert into takes values('23392', '991', '1', 'Spring', 2008, 'A+'); + insert into takes values('57026', '486', '1', 'Fall', 2009, 'A-'); + insert into takes values('38336', '852', '1', 'Spring', 2008, 'C-'); + insert into takes values('95366', '457', '1', 'Spring', 2001, 'B '); + insert into takes values('58355', '793', '1', 'Spring', 2002, 'C '); + insert into takes values('76672', '352', '1', 'Spring', 2006, 'B-'); + insert into takes values('99226', '258', '1', 'Fall', 2007, 'C-'); + insert into takes values('55915', '875', '1', 'Spring', 2005, 'C-'); + insert into takes values('50414', '486', '1', 'Fall', 2009, 'C-'); + insert into takes values('80047', '401', '1', 'Fall', 2003, 'B-'); + insert into takes values('53172', '362', '2', 'Fall', 2006, 'A+'); + insert into takes values('29920', '489', '1', 'Fall', 2007, 'C+'); + insert into takes values('15086', '242', '1', 'Fall', 2009, 'C-'); + insert into takes values('34502', '875', '1', 'Spring', 2005, 'B-'); + insert into takes values('20489', '974', '1', 'Fall', 2003, 'C '); + insert into takes values('1884', '345', '1', 'Spring', 2008, 'C+'); + insert into takes values('7602', '663', '1', 'Spring', 2005, 'A-'); + insert into takes values('73186', '400', '2', 'Fall', 2003, 'B '); + insert into takes values('18808', '802', '1', 'Spring', 2003, 'A '); + insert into takes values('61783', '362', '3', 'Spring', 2008, 'C+'); + insert into takes values('23506', '694', '1', 'Fall', 2002, 'C+'); + insert into takes values('64196', '443', '2', 'Spring', 2002, 'A '); + insert into takes values('53152', '629', '1', 'Spring', 2003, 'C-'); + insert into takes values('11530', '603', '1', 'Fall', 2003, 'B-'); + insert into takes values('23110', '237', '1', 'Spring', 2008, 'A-'); + insert into takes values('83136', '338', '2', 'Spring', 2006, 'B-'); + insert into takes values('15517', '274', '1', 'Fall', 2002, 'B+'); + insert into takes values('88308', '893', '1', 'Fall', 2007, 'C-'); + insert into takes values('69122', '747', '1', 'Spring', 2004, 'A-'); + insert into takes values('20002', '352', '1', 'Spring', 2006, 'C+'); + insert into takes values('31554', '169', '2', 'Fall', 2002, 'C+'); + insert into takes values('82083', '445', '1', 'Spring', 2001, 'A+'); + insert into takes values('75547', '527', '1', 'Fall', 2004, 'B '); + insert into takes values('72055', '366', '1', 'Fall', 2005, 'C+'); + insert into takes values('16593', '270', '1', 'Spring', 2010, 'A+'); + insert into takes values('57456', '561', '1', 'Fall', 2006, 'B-'); + insert into takes values('39892', '489', '1', 'Fall', 2007, 'A-'); + insert into takes values('81150', '408', '2', 'Spring', 2003, 'B '); + insert into takes values('85754', '875', '1', 'Spring', 2005, 'C+'); + insert into takes values('49214', '795', '1', 'Spring', 2004, 'A+'); + insert into takes values('65753', '748', '1', 'Fall', 2003, 'A+'); + insert into takes values('84239', '959', '1', 'Fall', 2006, 'B-'); + insert into takes values('17397', '270', '1', 'Spring', 2010, 'C+'); + insert into takes values('81396', '489', '1', 'Fall', 2007, 'C-'); + insert into takes values('86661', '105', '1', 'Fall', 2009, 'A '); + insert into takes values('31337', '735', '1', 'Spring', 2003, 'C-'); + insert into takes values('95631', '362', '3', 'Spring', 2008, 'B+'); + insert into takes values('83696', '612', '1', 'Fall', 2007, 'B-'); + insert into takes values('5898', '443', '2', 'Spring', 2002, 'B+'); + insert into takes values('4182', '468', '1', 'Fall', 2005, 'C+'); + insert into takes values('21101', '702', '1', 'Spring', 2001, 'C '); + insert into takes values('85746', '867', '2', 'Fall', 2010, 'A-'); + insert into takes values('50331', '400', '1', 'Spring', 2007, 'A+'); + insert into takes values('40371', '345', '1', 'Spring', 2008, 'B '); + insert into takes values('48165', '239', '1', 'Fall', 2006, 'A+'); + insert into takes values('64934', '270', '1', 'Spring', 2010, 'C '); + insert into takes values('3487', '629', '1', 'Spring', 2003, 'C+'); + insert into takes values('18636', '795', '1', 'Spring', 2004, 'C '); + insert into takes values('13211', '242', '1', 'Fall', 2009, 'B+'); + insert into takes values('99977', '867', '1', 'Fall', 2006, 'A+'); + insert into takes values('7043', '679', '1', 'Spring', 2010, 'C-'); + insert into takes values('61003', '802', '1', 'Spring', 2003, 'B-'); + insert into takes values('96206', '200', '1', 'Spring', 2007, 'B-'); + insert into takes values('94814', '493', '1', 'Spring', 2010, 'B-'); + insert into takes values('89104', '242', '1', 'Fall', 2009, 'A-'); + insert into takes values('16885', '415', '1', 'Fall', 2010, 'A '); + insert into takes values('8957', '603', '1', 'Fall', 2003, 'B '); + insert into takes values('40276', '893', '1', 'Fall', 2007, 'C '); + insert into takes values('41774', '696', '1', 'Spring', 2002, 'A+'); + insert into takes values('66484', '747', '1', 'Spring', 2004, 'C '); + insert into takes values('45300', '237', '1', 'Spring', 2008, 'B '); + insert into takes values('97629', '735', '2', 'Spring', 2010, 'C-'); + insert into takes values('71631', '604', '1', 'Spring', 2009, 'A-'); + insert into takes values('23224', '735', '1', 'Spring', 2003, 'A '); + insert into takes values('38121', '867', '2', 'Fall', 2010, 'C-'); + insert into takes values('11201', '476', '1', 'Fall', 2010, 'C-'); + insert into takes values('63502', '867', '1', 'Fall', 2006, 'C-'); + insert into takes values('30845', '735', '2', 'Spring', 2010, 'C+'); + insert into takes values('71631', '581', '1', 'Spring', 2005, 'A '); + insert into takes values('31820', '237', '2', 'Fall', 2009, 'A+'); + insert into takes values('62124', '927', '1', 'Fall', 2002, 'B '); + insert into takes values('94569', '362', '2', 'Fall', 2006, 'A-'); + insert into takes values('41890', '571', '1', 'Spring', 2004, 'A '); + insert into takes values('97590', '867', '1', 'Fall', 2006, 'B-'); + insert into takes values('99226', '237', '2', 'Fall', 2009, 'B '); + insert into takes values('94535', '679', '1', 'Spring', 2010, 'A '); + insert into takes values('52876', '169', '2', 'Fall', 2002, 'A-'); + insert into takes values('71631', '200', '2', 'Fall', 2002, 'A-'); + insert into takes values('16347', '629', '1', 'Spring', 2003, 'B+'); + insert into takes values('77130', '591', '1', 'Spring', 2005, 'C+'); + insert into takes values('53490', '334', '1', 'Fall', 2009, 'B '); + insert into takes values('19766', '482', '1', 'Fall', 2005, 'C-'); + insert into takes values('60984', '468', '1', 'Fall', 2005, 'A-'); + insert into takes values('65714', '457', '1', 'Spring', 2001, 'B-'); + insert into takes values('52929', '338', '1', 'Spring', 2007, 'A '); + insert into takes values('31086', '319', '1', 'Spring', 2003, 'C-'); + insert into takes values('75794', '338', '1', 'Spring', 2007, 'A '); + insert into takes values('48165', '105', '2', 'Fall', 2002, 'A '); + insert into takes values('79911', '239', '1', 'Fall', 2006, 'A '); + insert into takes values('12078', '972', '1', 'Spring', 2009, 'C+'); + insert into takes values('760', '972', '1', 'Spring', 2009, 'C-'); + insert into takes values('16035', '338', '2', 'Spring', 2006, 'C+'); + insert into takes values('35498', '545', '1', 'Fall', 2001, 'C-'); + insert into takes values('60406', '852', '1', 'Spring', 2008, 'A-'); + insert into takes values('40178', '612', '1', 'Fall', 2007, 'C+'); + insert into takes values('36995', '991', '1', 'Spring', 2008, 'B '); + insert into takes values('34542', '960', '2', 'Fall', 2006, 'B+'); + insert into takes values('68096', '169', '2', 'Fall', 2002, 'B-'); + insert into takes values('41596', '349', '1', 'Spring', 2008, 'B '); + insert into takes values('96741', '867', '1', 'Fall', 2006, 'C '); + insert into takes values('3833', '972', '1', 'Spring', 2009, 'A+'); + insert into takes values('74974', '791', '1', 'Spring', 2006, 'A+'); + insert into takes values('99764', '105', '2', 'Fall', 2002, 'A '); + insert into takes values('645', '105', '1', 'Fall', 2009, 'A-'); + insert into takes values('85308', '242', '1', 'Fall', 2009, 'A '); + insert into takes values('25331', '852', '1', 'Spring', 2008, 'A+'); + insert into takes values('18740', '527', '1', 'Fall', 2004, 'C+'); + insert into takes values('85063', '338', '2', 'Spring', 2006, 'B '); + insert into takes values('32506', '443', '1', 'Spring', 2010, 'B-'); + insert into takes values('70522', '864', '1', 'Spring', 2006, 'A+'); + insert into takes values('73542', '802', '1', 'Spring', 2003, 'A '); + insert into takes values('56089', '169', '1', 'Spring', 2007, 'C-'); + insert into takes values('51868', '486', '1', 'Fall', 2009, 'A+'); + insert into takes values('53165', '192', '1', 'Fall', 2002, 'C-'); + insert into takes values('7498', '642', '1', 'Fall', 2004, 'A-'); + insert into takes values('81550', '426', '1', 'Spring', 2006, 'A+'); + insert into takes values('17128', '401', '1', 'Fall', 2003, 'B+'); + insert into takes values('43616', '974', '1', 'Fall', 2003, 'B+'); + insert into takes values('53165', '200', '1', 'Spring', 2007, 'C+'); + insert into takes values('44551', '962', '1', 'Spring', 2008, 'B-'); + insert into takes values('50537', '169', '1', 'Spring', 2007, 'B-'); + insert into takes values('38712', '345', '1', 'Spring', 2008, 'B+'); + insert into takes values('34331', '362', '2', 'Fall', 2006, 'C '); + insert into takes values('96153', '400', '1', 'Spring', 2007, 'A+'); + insert into takes values('94257', '270', '1', 'Spring', 2010, 'B+'); + insert into takes values('97694', '694', '1', 'Fall', 2002, 'C+'); + insert into takes values('36845', '571', '1', 'Spring', 2004, 'B-'); + insert into takes values('41674', '545', '1', 'Fall', 2001, 'A+'); + insert into takes values('36685', '457', '1', 'Spring', 2001, 'C-'); + insert into takes values('36265', '679', '1', 'Spring', 2010, 'A-'); + insert into takes values('7854', '735', '1', 'Spring', 2003, 'A '); + insert into takes values('49611', '468', '2', 'Fall', 2007, 'A '); + insert into takes values('37946', '972', '1', 'Spring', 2009, 'B+'); + insert into takes values('49339', '599', '1', 'Spring', 2003, 'B-'); + insert into takes values('35588', '679', '1', 'Spring', 2010, 'A-'); + insert into takes values('858', '962', '1', 'Spring', 2008, 'C-'); + insert into takes values('43016', '421', '1', 'Fall', 2004, 'A '); + insert into takes values('52019', '200', '2', 'Fall', 2002, 'A+'); + insert into takes values('90448', '158', '1', 'Fall', 2008, 'B-'); + insert into takes values('73213', '626', '1', 'Fall', 2006, 'A-'); + insert into takes values('26494', '960', '2', 'Fall', 2006, 'A+'); + insert into takes values('7973', '349', '1', 'Spring', 2008, 'B-'); + insert into takes values('24010', '105', '2', 'Fall', 2002, 'B '); + insert into takes values('30650', '679', '1', 'Spring', 2010, 'C '); + insert into takes values('90089', '169', '1', 'Spring', 2007, 'C+'); + insert into takes values('19321', '200', '2', 'Fall', 2002, 'A+'); + insert into takes values('60688', '960', '2', 'Fall', 2006, 'C-'); + insert into takes values('29192', '748', '1', 'Fall', 2003, 'C+'); + insert into takes values('87785', '461', '1', 'Fall', 2002, 'A '); + insert into takes values('70359', '927', '1', 'Fall', 2002, 'C '); + insert into takes values('11201', '319', '1', 'Spring', 2003, 'B '); + insert into takes values('89132', '875', '1', 'Spring', 2005, 'C '); + insert into advisor values('24746', '19368'); + insert into advisor values('79352', '95030'); + insert into advisor values('76672', '22591'); + insert into advisor values('14182', '77346'); + insert into advisor values('44985', '31955'); + insert into advisor values('96052', '73623'); + insert into advisor values('35175', '90643'); + insert into advisor values('44271', '58558'); + insert into advisor values('40897', '73623'); + insert into advisor values('92839', '25946'); + insert into advisor values('79329', '58558'); + insert into advisor values('97101', '48570'); + insert into advisor values('24865', '6569'); + insert into advisor values('36052', '31955'); + insert into advisor values('98940', '99052'); + insert into advisor values('21395', '58558'); + insert into advisor values('55859', '28097'); + insert into advisor values('74016', '74420'); + insert into advisor values('93061', '64871'); + insert into advisor values('94998', '50330'); + insert into advisor values('30772', '57180'); + insert into advisor values('1968', '3335'); + insert into advisor values('90567', '48507'); + insert into advisor values('49611', '58558'); + insert into advisor values('81538', '59795'); + insert into advisor values('68999', '6569'); + insert into advisor values('74639', '41930'); + insert into advisor values('66054', '25946'); + insert into advisor values('792', '48507'); + insert into advisor values('60267', '81991'); + insert into advisor values('17769', '36897'); + insert into advisor values('39580', '3199'); + insert into advisor values('89106', '15347'); + insert into advisor values('37856', '25946'); + insert into advisor values('58307', '48507'); + insert into advisor values('57985', '52647'); + insert into advisor values('72014', '22591'); + insert into advisor values('2795', '28400'); + insert into advisor values('89000', '58558'); + insert into advisor values('46442', '48570'); + insert into advisor values('60040', '15347'); + insert into advisor values('19791', '59795'); + insert into advisor values('4582', '64871'); + insert into advisor values('108', '77346'); + insert into advisor values('1533', '50885'); + insert into advisor values('7123', '65931'); + insert into advisor values('44584', '64871'); + insert into advisor values('32954', '90376'); + insert into advisor values('98056', '73623'); + insert into advisor values('76953', '79081'); + insert into advisor values('81884', '3199'); + insert into advisor values('22057', '48507'); + insert into advisor values('21126', '52647'); + insert into advisor values('82918', '81991'); + insert into advisor values('4173', '25946'); + insert into advisor values('83022', '64871'); + insert into advisor values('25525', '96895'); + insert into advisor values('75040', '80759'); + insert into advisor values('31624', '41930'); + insert into advisor values('64893', '96895'); + insert into advisor values('59920', '72553'); + insert into advisor values('38602', '77346'); + insert into advisor values('21401', '79081'); + insert into advisor values('93004', '15347'); + insert into advisor values('38899', '37687'); + insert into advisor values('75241', '28097'); + insert into advisor values('98830', '80759'); + insert into advisor values('37101', '80759'); + insert into advisor values('4508', '28097'); + insert into advisor values('32130', '16807'); + insert into advisor values('56755', '79653'); + insert into advisor values('11510', '95709'); + insert into advisor values('3335', '74420'); + insert into advisor values('61081', '80759'); + insert into advisor values('33651', '96895'); + insert into advisor values('8251', '73623'); + insert into advisor values('10705', '6569'); + insert into advisor values('64082', '74426'); + insert into advisor values('59517', '34175'); + insert into advisor values('91569', '14365'); + insert into advisor values('88085', '28400'); + insert into advisor values('96722', '58558'); + insert into advisor values('36379', '42782'); + insert into advisor values('69581', '25946'); + insert into advisor values('65329', '3335'); + insert into advisor values('49214', '4034'); + insert into advisor values('64155', '36897'); + insert into advisor values('58594', '74420'); + insert into advisor values('71904', '95030'); + insert into advisor values('69241', '72553'); + insert into advisor values('58889', '3335'); + insert into advisor values('30341', '79081'); + insert into advisor values('70688', '97302'); + insert into advisor values('81258', '58558'); + insert into advisor values('63090', '25946'); + insert into advisor values('70572', '35579'); + insert into advisor values('58413', '28400'); + insert into advisor values('93171', '6569'); + insert into advisor values('35138', '41930'); + insert into advisor values('77289', '59795'); + insert into advisor values('93571', '57180'); + insert into advisor values('14554', '22591'); + insert into advisor values('46725', '90376'); + insert into advisor values('99730', '3199'); + insert into advisor values('10527', '36897'); + insert into advisor values('898', '22591'); + insert into advisor values('64297', '43779'); + insert into advisor values('10204', '65931'); + insert into advisor values('36926', '43779'); + insert into advisor values('49618', '74426'); + insert into advisor values('34329', '81991'); + insert into advisor values('84410', '81991'); + insert into advisor values('29435', '77346'); + insert into advisor values('62636', '79081'); + insert into advisor values('8483', '74426'); + insert into advisor values('2177', '50330'); + insert into advisor values('43348', '81991'); + insert into advisor values('37430', '41930'); + insert into advisor values('37586', '81991'); + insert into advisor values('55238', '35579'); + insert into advisor values('34404', '74426'); + insert into advisor values('59539', '28400'); + insert into advisor values('43123', '95030'); + insert into advisor values('19582', '96895'); + insert into advisor values('88553', '31955'); + insert into advisor values('5898', '34175'); + insert into advisor values('2419', '73623'); + insert into advisor values('31516', '95030'); + insert into advisor values('3487', '4034'); + insert into advisor values('66269', '58558'); + insert into advisor values('54622', '4034'); + insert into advisor values('19638', '4034'); + insert into advisor values('88418', '57180'); + insert into advisor values('86802', '35579'); + insert into advisor values('63361', '90643'); + insert into advisor values('6367', '14365'); + insert into advisor values('84239', '22591'); + insert into advisor values('4940', '15347'); + insert into advisor values('90663', '77346'); + insert into advisor values('38476', '95030'); + insert into advisor values('96003', '3335'); + insert into advisor values('64914', '14365'); + insert into advisor values('41599', '48507'); + insert into advisor values('22226', '64871'); + insert into advisor values('96153', '28097'); + insert into advisor values('44998', '36897'); + insert into advisor values('74163', '80759'); + insert into advisor values('75046', '16807'); + insert into advisor values('97679', '43779'); + insert into advisor values('94894', '78699'); + insert into advisor values('44881', '22591'); + insert into advisor values('98619', '77346'); + insert into advisor values('86753', '22591'); + insert into advisor values('87054', '35579'); + insert into advisor values('39046', '19368'); + insert into advisor values('29031', '78699'); + insert into advisor values('97355', '28400'); + insert into advisor values('24010', '80759'); + insert into advisor values('21789', '63395'); + insert into advisor values('52157', '65931'); + insert into advisor values('64938', '52647'); + insert into advisor values('94535', '50885'); + insert into advisor values('58595', '31955'); + insert into advisor values('72979', '41930'); + insert into advisor values('32506', '28097'); + insert into advisor values('31690', '14365'); + insert into advisor values('87044', '36897'); + insert into advisor values('34236', '57180'); + insert into advisor values('18808', '77346'); + insert into advisor values('91063', '52647'); + insert into advisor values('48462', '52647'); + insert into advisor values('41965', '65931'); + insert into advisor values('31137', '50330'); + insert into advisor values('7602', '63287'); + insert into advisor values('84845', '6569'); + insert into advisor values('28252', '90643'); + insert into advisor values('10736', '90643'); + insert into advisor values('58465', '59795'); + insert into advisor values('64140', '52647'); + insert into advisor values('6523', '43779'); + insert into advisor values('64067', '77346'); + insert into advisor values('99399', '4034'); + insert into advisor values('21337', '43779'); + insert into advisor values('15457', '95709'); + insert into advisor values('26102', '99052'); + insert into advisor values('31337', '50330'); + insert into advisor values('67425', '42782'); + insert into advisor values('48640', '3335'); + insert into advisor values('72741', '80759'); + insert into advisor values('29803', '3199'); + insert into advisor values('38895', '15347'); + insert into advisor values('49391', '16807'); + insert into advisor values('13741', '4034'); + insert into advisor values('59538', '42782'); + insert into advisor values('9360', '28097'); + insert into advisor values('53728', '57180'); + insert into advisor values('77898', '15347'); + insert into advisor values('32419', '95030'); + insert into advisor values('37521', '4034'); + insert into advisor values('97065', '79653'); + insert into advisor values('80057', '90376'); + insert into advisor values('1826', '64871'); + insert into advisor values('80285', '73623'); + insert into advisor values('72959', '90643'); + insert into advisor values('41751', '34175'); + insert into advisor values('11604', '43779'); + insert into advisor values('41827', '35579'); + insert into advisor values('8853', '99052'); + insert into advisor values('9440', '4233'); + insert into advisor values('1884', '72553'); + insert into advisor values('41774', '37687'); + insert into advisor values('32385', '72553'); + insert into advisor values('336', '28097'); + insert into advisor values('82688', '79081'); + insert into advisor values('66090', '35579'); + insert into advisor values('4182', '63287'); + insert into advisor values('20099', '95709'); + insert into advisor values('81028', '78699'); + insert into advisor values('27556', '28400'); + insert into advisor values('65258', '6569'); + insert into advisor values('29239', '65931'); + insert into advisor values('54508', '80759'); + insert into advisor values('37449', '63287'); + insert into advisor values('16753', '96895'); + insert into advisor values('82697', '63287'); + insert into advisor values('11422', '37687'); + insert into advisor values('59046', '19368'); + insert into advisor values('89246', '35579'); + insert into advisor values('95859', '6569'); + insert into advisor values('94173', '43779'); + insert into advisor values('70021', '96895'); + insert into advisor values('92040', '19368'); + insert into advisor values('36019', '96895'); + insert into advisor values('40558', '79653'); + insert into advisor values('62549', '77346'); + insert into advisor values('92385', '50885'); + insert into advisor values('14214', '22591'); + insert into advisor values('32245', '15347'); + insert into advisor values('13506', '90643'); + insert into advisor values('26080', '6569'); + insert into advisor values('52872', '28400'); + insert into advisor values('28952', '74420'); + insert into advisor values('1080', '25946'); + insert into advisor values('11095', '48570'); + insert into advisor values('33460', '95709'); + insert into advisor values('99226', '79081'); + insert into advisor values('52707', '64871'); + insert into advisor values('40189', '22591'); + insert into advisor values('35721', '43779'); + insert into advisor values('6400', '80759'); + insert into advisor values('60688', '73623'); + insert into advisor values('18821', '59795'); + insert into advisor values('65443', '95709'); + insert into advisor values('71630', '48570'); + insert into advisor values('46956', '48570'); + insert into advisor values('64259', '64871'); + insert into advisor values('77021', '73623'); + insert into advisor values('41450', '77346'); + insert into advisor values('13028', '78699'); + insert into advisor values('90381', '16807'); + insert into advisor values('9460', '3199'); + insert into advisor values('98423', '64871'); + insert into advisor values('38691', '28400'); + insert into advisor values('86806', '48570'); + insert into advisor values('18469', '97302'); + insert into advisor values('11194', '16807'); + insert into advisor values('19862', '48507'); + insert into advisor values('24116', '16807'); + insert into advisor values('67021', '65931'); + insert into advisor values('69752', '16807'); + insert into advisor values('69225', '50330'); + insert into advisor values('1018', '79653'); + insert into advisor values('7656', '63287'); + insert into advisor values('35220', '80759'); + insert into advisor values('79210', '34175'); + insert into advisor values('10814', '4034'); + insert into advisor values('55698', '25946'); + insert into advisor values('49684', '95030'); + insert into advisor values('59908', '15347'); + insert into advisor values('64724', '35579'); + insert into advisor values('19048', '73623'); + insert into advisor values('62716', '90376'); + insert into advisor values('95205', '25946'); + insert into advisor values('40303', '99052'); + insert into advisor values('27430', '48570'); + insert into advisor values('83953', '50885'); + insert into advisor values('4248', '15347'); + insert into advisor values('21766', '22591'); + insert into advisor values('39657', '28400'); + insert into advisor values('85366', '48570'); + insert into advisor values('93354', '52647'); + insert into advisor values('77580', '41930'); + insert into advisor values('92864', '74420'); + insert into advisor values('57135', '50330'); + insert into advisor values('1727', '77346'); + insert into advisor values('91788', '15347'); + insert into advisor values('80420', '3199'); + insert into advisor values('67810', '79653'); + insert into advisor values('86404', '43779'); + insert into advisor values('16907', '78699'); + insert into advisor values('46928', '3199'); + insert into advisor values('84702', '14365'); + insert into advisor values('91343', '15347'); + insert into advisor values('83686', '90376'); + insert into advisor values('83462', '97302'); + insert into advisor values('67725', '74426'); + insert into advisor values('5393', '41930'); + insert into advisor values('34422', '79653'); + insert into advisor values('17128', '4034'); + insert into advisor values('81883', '50885'); + insert into advisor values('87965', '74426'); + insert into advisor values('93653', '15347'); + insert into advisor values('70522', '50330'); + insert into advisor values('48850', '36897'); + insert into advisor values('68070', '73623'); + insert into advisor values('50206', '81991'); + insert into advisor values('80254', '79081'); + insert into advisor values('22396', '48507'); + insert into advisor values('19293', '73623'); + insert into advisor values('67660', '42782'); + insert into advisor values('85910', '79653'); + insert into advisor values('10917', '77346'); + insert into advisor values('95574', '95030'); + insert into advisor values('13081', '96895'); + insert into advisor values('33349', '78699'); + insert into advisor values('19861', '25946'); + insert into advisor values('30723', '74420'); + insert into advisor values('83039', '74420'); + insert into advisor values('41741', '43779'); + insert into advisor values('97400', '90376'); + insert into advisor values('81207', '43779'); + insert into advisor values('23994', '57180'); + insert into advisor values('54672', '77346'); + insert into advisor values('47001', '50330'); + insert into advisor values('26147', '78699'); + insert into advisor values('65987', '36897'); + insert into advisor values('99250', '73623'); + insert into advisor values('13826', '31955'); + insert into advisor values('3739', '99052'); + insert into advisor values('10454', '37687'); + insert into advisor values('48053', '35579'); + insert into advisor values('66813', '95709'); + insert into advisor values('16593', '80759'); + insert into advisor values('14668', '80759'); + insert into advisor values('33338', '95030'); + insert into advisor values('45300', '37687'); + insert into advisor values('3127', '35579'); + insert into advisor values('40992', '63395'); + insert into advisor values('70310', '90376'); + insert into advisor values('46451', '90643'); + insert into advisor values('288', '41930'); + insert into advisor values('557', '63287'); + insert into advisor values('22170', '73623'); + insert into advisor values('64164', '72553'); + insert into advisor values('74911', '59795'); + insert into advisor values('7020', '31955'); + insert into advisor values('78552', '4233'); + insert into advisor values('50386', '48507'); + insert into advisor values('48678', '6569'); + insert into advisor values('24442', '74426'); + insert into advisor values('89188', '80759'); + insert into advisor values('390', '4233'); + insert into advisor values('10663', '28097'); + insert into advisor values('97551', '50330'); + insert into advisor values('76895', '43779'); + insert into advisor values('85451', '99052'); + insert into advisor values('43989', '74426'); + insert into advisor values('99719', '58558'); + insert into advisor values('19245', '80759'); + insert into advisor values('36685', '4034'); + insert into advisor values('57123', '73623'); + insert into advisor values('51997', '48570'); + insert into advisor values('95631', '48507'); + insert into advisor values('70452', '95030'); + insert into advisor values('37219', '72553'); + insert into advisor values('59530', '50885'); + insert into advisor values('61737', '36897'); + insert into advisor values('33645', '81991'); + insert into advisor values('3143', '63395'); + insert into advisor values('78792', '72553'); + insert into advisor values('10076', '6569'); + insert into advisor values('59553', '80759'); + insert into advisor values('57666', '48507'); + insert into advisor values('22004', '78699'); + insert into advisor values('38668', '97302'); + insert into advisor values('43130', '4034'); + insert into advisor values('36263', '4034'); + insert into advisor values('99271', '28400'); + insert into advisor values('69850', '3335'); + insert into advisor values('59397', '16807'); + insert into advisor values('61127', '48507'); + insert into advisor values('30299', '50330'); + insert into advisor values('57962', '81991'); + insert into advisor values('88169', '6569'); + insert into advisor values('27094', '77346'); + insert into advisor values('39115', '6569'); + insert into advisor values('84189', '28097'); + insert into advisor values('79892', '99052'); + insert into advisor values('95046', '96895'); + insert into advisor values('34386', '74426'); + insert into advisor values('82646', '34175'); + insert into advisor values('31086', '48570'); + insert into advisor values('85226', '3199'); + insert into advisor values('32490', '35579'); + insert into advisor values('39704', '73623'); + insert into advisor values('80610', '97302'); + insert into advisor values('18675', '22591'); + insert into advisor values('47630', '72553'); + insert into advisor values('36102', '35579'); + insert into advisor values('22620', '3335'); + insert into advisor values('39157', '36897'); + insert into advisor values('86327', '25946'); + insert into advisor values('84865', '74420'); + insert into advisor values('83557', '48570'); + insert into advisor values('7490', '80759'); + insert into advisor values('94178', '80759'); + insert into advisor values('99660', '42782'); + insert into advisor values('57511', '37687'); + insert into advisor values('56941', '41930'); + insert into advisor values('77415', '64871'); + insert into advisor values('99754', '4233'); + insert into advisor values('81550', '72553'); + insert into advisor values('79911', '64871'); + insert into advisor values('82082', '4233'); + insert into advisor values('58846', '79081'); + insert into advisor values('11076', '95030'); + insert into advisor values('7204', '14365'); + insert into advisor values('73165', '57180'); + insert into advisor values('1737', '41930'); + insert into advisor values('12979', '37687'); + insert into advisor values('57334', '90643'); + insert into advisor values('1827', '14365'); + insert into advisor values('29390', '52647'); + insert into advisor values('31302', '95709'); + insert into advisor values('77231', '90376'); + insert into advisor values('36126', '63287'); + insert into advisor values('45200', '37687'); + insert into advisor values('99463', '97302'); + insert into advisor values('79170', '73623'); + insert into advisor values('12216', '34175'); + insert into advisor values('64593', '96895'); + insert into advisor values('30177', '4233'); + insert into advisor values('15074', '4233'); + insert into advisor values('5005', '4233'); + insert into advisor values('99348', '99052'); + insert into advisor values('82591', '4034'); + insert into advisor values('53089', '78699'); + insert into advisor values('24630', '63395'); + insert into advisor values('71387', '35579'); + insert into advisor values('61354', '42782'); + insert into advisor values('10481', '19368'); + insert into advisor values('39310', '63395'); + insert into advisor values('16297', '16807'); + insert into advisor values('72622', '90643'); + insert into advisor values('92965', '64871'); + insert into advisor values('89104', '6569'); + insert into advisor values('13408', '63287'); + insert into advisor values('66229', '36897'); + insert into advisor values('87280', '63287'); + insert into advisor values('73206', '4034'); + insert into advisor values('24387', '19368'); + insert into advisor values('32744', '37687'); + insert into advisor values('39204', '74426'); + insert into advisor values('42298', '52647'); + insert into advisor values('53588', '81991'); + insert into advisor values('90004', '16807'); + insert into advisor values('12563', '36897'); + insert into advisor values('55000', '64871'); + insert into advisor values('1110', '3335'); + insert into advisor values('55170', '4034'); + insert into advisor values('56080', '90376'); + insert into advisor values('61065', '99052'); + insert into advisor values('107', '15347'); + insert into advisor values('11453', '97302'); + insert into advisor values('53805', '74420'); + insert into advisor values('39241', '95030'); + insert into advisor values('32886', '57180'); + insert into advisor values('40080', '95709'); + insert into advisor values('22142', '79653'); + insert into advisor values('94257', '48570'); + insert into advisor values('75513', '74420'); + insert into advisor values('99268', '95030'); + insert into advisor values('20084', '16807'); + insert into advisor values('51868', '52647'); + insert into advisor values('7287', '14365'); + insert into advisor values('35588', '48570'); + insert into advisor values('83170', '15347'); + insert into advisor values('14596', '79081'); + insert into advisor values('23794', '90376'); + insert into advisor values('78332', '41930'); + insert into advisor values('49339', '41930'); + insert into advisor values('40677', '95030'); + insert into advisor values('90220', '95709'); + insert into advisor values('95029', '48570'); + insert into advisor values('83728', '3335'); + insert into advisor values('67033', '63287'); + insert into advisor values('87785', '15347'); + insert into advisor values('4345', '28400'); + insert into advisor values('96085', '59795'); + insert into advisor values('64249', '52647'); + insert into advisor values('53803', '15347'); + insert into advisor values('27956', '79081'); + insert into advisor values('24796', '35579'); + insert into advisor values('4449', '37687'); + insert into advisor values('77364', '4233'); + insert into advisor values('70384', '37687'); + insert into advisor values('18007', '16807'); + insert into advisor values('51723', '42782'); + insert into advisor values('56486', '22591'); + insert into advisor values('70359', '6569'); + insert into advisor values('18234', '34175'); + insert into advisor values('34322', '41930'); + insert into advisor values('24325', '79653'); + insert into advisor values('83444', '64871'); + insert into advisor values('93814', '35579'); + insert into advisor values('80912', '74420'); + insert into advisor values('70099', '3335'); + insert into advisor values('64945', '97302'); + insert into advisor values('81789', '48570'); + insert into advisor values('38271', '79081'); + insert into advisor values('87784', '57180'); + insert into advisor values('46436', '50885'); + insert into advisor values('20195', '96895'); + insert into advisor values('31080', '31955'); + insert into advisor values('85887', '74426'); + insert into advisor values('85234', '4233'); + insert into advisor values('1460', '43779'); + insert into advisor values('30650', '43779'); + insert into advisor values('6474', '78699'); + insert into advisor values('67051', '95709'); + insert into advisor values('58300', '31955'); + insert into advisor values('64192', '50330'); + insert into advisor values('84727', '96895'); + insert into advisor values('39881', '72553'); + insert into advisor values('3163', '72553'); + insert into advisor values('72643', '37687'); + insert into advisor values('66008', '74426'); + insert into advisor values('76291', '25946'); + insert into advisor values('92274', '37687'); + insert into advisor values('16075', '73623'); + insert into advisor values('30334', '6569'); + insert into advisor values('75123', '48570'); + insert into advisor values('35042', '97302'); + insert into advisor values('99073', '37687'); + insert into advisor values('68280', '35579'); + insert into advisor values('80976', '19368'); + insert into advisor values('68554', '72553'); + insert into advisor values('99949', '16807'); + insert into advisor values('71287', '52647'); + insert into advisor values('73268', '74420'); + insert into advisor values('93708', '58558'); + insert into advisor values('29399', '50330'); + insert into advisor values('14284', '80759'); + insert into advisor values('80247', '3199'); + insert into advisor values('86344', '4233'); + insert into advisor values('54728', '6569'); + insert into advisor values('86375', '22591'); + insert into advisor values('64401', '48507'); + insert into advisor values('9183', '63287'); + insert into advisor values('71529', '15347'); + insert into advisor values('65433', '58558'); + insert into advisor values('89051', '81991'); + insert into advisor values('90448', '31955'); + insert into advisor values('90082', '90643'); + insert into advisor values('25362', '48570'); + insert into advisor values('74509', '79081'); + insert into advisor values('20445', '74426'); + insert into advisor values('40059', '4034'); + insert into advisor values('60867', '63287'); + insert into advisor values('28128', '74420'); + insert into advisor values('28518', '97302'); + insert into advisor values('17086', '16807'); + insert into advisor values('91132', '63287'); + insert into advisor values('29260', '57180'); + insert into advisor values('29707', '59795'); + insert into advisor values('85746', '4034'); + insert into advisor values('54605', '4034'); + insert into advisor values('78922', '79653'); + insert into advisor values('76173', '3335'); + insert into advisor values('6304', '22591'); + insert into advisor values('98120', '16807'); + insert into advisor values('6195', '37687'); + insert into advisor values('33837', '78699'); + insert into advisor values('86833', '95030'); + insert into advisor values('28829', '6569'); + insert into advisor values('82974', '95709'); + insert into advisor values('39114', '96895'); + insert into advisor values('53485', '15347'); + insert into advisor values('8603', '65931'); + insert into advisor values('7973', '58558'); + insert into advisor values('34502', '31955'); + insert into advisor values('69853', '28400'); + insert into advisor values('70389', '37687'); + insert into advisor values('75423', '6569'); + insert into advisor values('26881', '59795'); + insert into advisor values('19848', '28097'); + insert into advisor values('5017', '37687'); + insert into advisor values('33094', '14365'); + insert into advisor values('25468', '4233'); + insert into advisor values('75928', '6569'); + insert into advisor values('94522', '79653'); + insert into advisor values('30289', '35579'); + insert into advisor values('54296', '97302'); + insert into advisor values('12069', '65931'); + insert into advisor values('89059', '95709'); + insert into advisor values('38336', '36897'); + insert into advisor values('98563', '65931'); + insert into advisor values('19541', '72553'); + insert into advisor values('95366', '65931'); + insert into advisor values('69758', '16807'); + insert into advisor values('98690', '79653'); + insert into advisor values('66494', '28400'); + insert into advisor values('65205', '28097'); + insert into advisor values('11682', '59795'); + insert into advisor values('36265', '96895'); + insert into advisor values('14432', '79653'); + insert into advisor values('63860', '57180'); + insert into advisor values('50969', '77346'); + insert into advisor values('95089', '36897'); + insert into advisor values('74840', '22591'); + insert into advisor values('29002', '63395'); + insert into advisor values('37809', '28400'); + insert into advisor values('27727', '52647'); + insert into advisor values('66469', '81991'); + insert into advisor values('31486', '95030'); + insert into advisor values('95099', '73623'); + insert into advisor values('57083', '36897'); + insert into advisor values('83622', '74420'); + insert into advisor values('68278', '57180'); + insert into advisor values('87651', '4034'); + insert into advisor values('8426', '34175'); + insert into advisor values('88793', '97302'); + insert into advisor values('60249', '95709'); + insert into advisor values('65144', '28097'); + insert into advisor values('91091', '74420'); + insert into advisor values('8252', '15347'); + insert into advisor values('82126', '4233'); + insert into advisor values('13290', '77346'); + insert into advisor values('85356', '95030'); + insert into advisor values('5871', '41930'); + insert into advisor values('59290', '72553'); + insert into advisor values('5414', '63395'); + insert into advisor values('30124', '48570'); + insert into advisor values('21008', '95709'); + insert into advisor values('69732', '58558'); + insert into advisor values('19450', '25946'); + insert into advisor values('55915', '95030'); + insert into advisor values('14621', '74426'); + insert into advisor values('22003', '57180'); + insert into advisor values('16631', '19368'); + insert into advisor values('51549', '63395'); + insert into advisor values('95284', '74426'); + insert into advisor values('60366', '3199'); + insert into advisor values('99369', '52647'); + insert into advisor values('50873', '19368'); + insert into advisor values('36244', '58558'); + insert into advisor values('58874', '3199'); + insert into advisor values('82687', '79081'); + insert into advisor values('2423', '34175'); + insert into advisor values('62429', '50330'); + insert into advisor values('93631', '95709'); + insert into advisor values('29705', '80759'); + insert into advisor values('52076', '48570'); + insert into advisor values('53451', '4233'); + insert into advisor values('69730', '3199'); + insert into advisor values('56276', '48507'); + insert into advisor values('23311', '73623'); + insert into advisor values('21086', '42782'); + insert into advisor values('61003', '79081'); + insert into advisor values('27950', '22591'); + insert into advisor values('50583', '41930'); + insert into advisor values('40276', '77346'); + insert into advisor values('15487', '28400'); + insert into advisor values('83592', '48570'); + insert into advisor values('46970', '81991'); + insert into advisor values('30188', '19368'); + insert into advisor values('64934', '31955'); + insert into advisor values('99694', '15347'); + insert into advisor values('79534', '4233'); + insert into advisor values('57156', '73623'); + insert into advisor values('41894', '63287'); + insert into advisor values('69679', '35579'); + insert into advisor values('62795', '96895'); + insert into advisor values('34331', '52647'); + insert into advisor values('4645', '28400'); + insert into advisor values('70395', '97302'); + insert into advisor values('69222', '81991'); + insert into advisor values('22254', '64871'); + insert into advisor values('51817', '4233'); + insert into advisor values('66495', '95709'); + insert into advisor values('72501', '79653'); + insert into advisor values('7390', '19368'); + insert into advisor values('28538', '99052'); + insert into advisor values('68649', '65931'); + insert into advisor values('15249', '64871'); + insert into advisor values('98984', '36897'); + insert into advisor values('35198', '22591'); + insert into advisor values('67017', '50330'); + insert into advisor values('27919', '3335'); + insert into advisor values('46762', '22591'); + insert into advisor values('98843', '19368'); + insert into advisor values('14094', '95030'); + insert into advisor values('79589', '41930'); + insert into advisor values('94371', '6569'); + insert into advisor values('25528', '3335'); + insert into advisor values('7620', '31955'); + insert into advisor values('43658', '79653'); + insert into advisor values('65714', '57180'); + insert into advisor values('37339', '3199'); + insert into advisor values('38555', '74426'); + insert into advisor values('73908', '43779'); + insert into advisor values('4438', '25946'); + insert into advisor values('15883', '22591'); + insert into advisor values('41890', '35579'); + insert into advisor values('75547', '52647'); + insert into advisor values('89196', '72553'); + insert into advisor values('52494', '97302'); + insert into advisor values('44551', '74420'); + insert into advisor values('61332', '19368'); + insert into advisor values('37715', '35579'); + insert into advisor values('68779', '79653'); + insert into advisor values('71768', '3199'); + insert into advisor values('72055', '95709'); + insert into advisor values('29514', '4034'); + insert into advisor values('62152', '64871'); + insert into advisor values('66212', '31955'); + insert into advisor values('53048', '57180'); + insert into advisor values('4015', '96895'); + insert into advisor values('67340', '6569'); + insert into advisor values('2970', '42782'); + insert into advisor values('27952', '57180'); + insert into advisor values('51008', '16807'); + insert into advisor values('97629', '3199'); + insert into advisor values('31079', '65931'); + insert into advisor values('57941', '34175'); + insert into advisor values('30397', '65931'); + insert into advisor values('45826', '14365'); + insert into advisor values('70299', '22591'); + insert into advisor values('9084', '63287'); + insert into advisor values('78116', '97302'); + insert into advisor values('5250', '48570'); + insert into advisor values('93508', '50330'); + insert into advisor values('30845', '48507'); + insert into advisor values('91442', '90643'); + insert into advisor values('75938', '50330'); + insert into advisor values('74672', '3335'); + insert into advisor values('12078', '35579'); + insert into advisor values('94311', '48507'); + insert into advisor values('94697', '28400'); + insert into advisor values('50702', '77346'); + insert into advisor values('35462', '28097'); + insert into advisor values('34018', '28097'); + insert into advisor values('99775', '77346'); + insert into advisor values('88140', '16807'); + insert into advisor values('46106', '28097'); + insert into advisor values('68096', '63395'); + insert into advisor values('84808', '22591'); + insert into advisor values('97658', '34175'); + insert into advisor values('73186', '22591'); + insert into advisor values('50944', '58558'); + insert into advisor values('53165', '35579'); + insert into advisor values('86981', '77346'); + insert into advisor values('16885', '35579'); + insert into advisor values('2561', '52647'); + insert into advisor values('96178', '42782'); + insert into advisor values('64731', '65931'); + insert into advisor values('14023', '73623'); + insert into advisor values('47265', '63287'); + insert into advisor values('84704', '90376'); + insert into advisor values('69132', '77346'); + insert into advisor values('49073', '80759'); + insert into advisor values('44703', '28400'); + insert into advisor values('41211', '6569'); + insert into advisor values('61414', '77346'); + insert into advisor values('38696', '50885'); + insert into advisor values('90009', '95030'); + insert into advisor values('97868', '99052'); + insert into advisor values('17944', '64871'); + insert into advisor values('25380', '96895'); + insert into advisor values('85614', '72553'); + insert into advisor values('60984', '77346'); + insert into advisor values('84495', '63395'); + insert into advisor values('19321', '57180'); + insert into advisor values('99611', '4034'); + insert into advisor values('72485', '41930'); + insert into advisor values('50267', '43779'); + insert into advisor values('544', '78699'); + insert into advisor values('55009', '48570'); + insert into advisor values('45083', '74426'); + insert into advisor values('67018', '35579'); + insert into advisor values('93039', '74426'); + insert into advisor values('75772', '48570'); + insert into advisor values('60224', '50330'); + insert into advisor values('41674', '3199'); + insert into advisor values('97435', '80759'); + insert into advisor values('21101', '96895'); + insert into advisor values('76250', '41930'); + insert into advisor values('40682', '36897'); + insert into advisor values('39612', '14365'); + insert into advisor values('14032', '34175'); + insert into advisor values('75791', '37687'); + insert into advisor values('5208', '36897'); + insert into advisor values('43432', '63287'); + insert into advisor values('68453', '57180'); + insert into advisor values('12711', '58558'); + insert into advisor values('40932', '34175'); + insert into advisor values('6710', '77346'); + insert into advisor values('91370', '63287'); + insert into advisor values('43912', '80759'); + insert into advisor values('12666', '74420'); + insert into advisor values('74460', '81991'); + insert into advisor values('99422', '14365'); + insert into advisor values('95320', '80759'); + insert into advisor values('56299', '58558'); + insert into advisor values('84432', '79081'); + insert into advisor values('75231', '63287'); + insert into advisor values('94846', '25946'); + insert into advisor values('4004', '50330'); + insert into advisor values('28361', '96895'); + insert into advisor values('97228', '42782'); + insert into advisor values('39552', '63395'); + insert into advisor values('38676', '3199'); + insert into advisor values('94814', '57180'); + insert into advisor values('16035', '81991'); + insert into advisor values('79205', '43779'); + insert into advisor values('4682', '35579'); + insert into advisor values('5925', '4034'); + insert into advisor values('25187', '41930'); + insert into advisor values('19603', '48570'); + insert into advisor values('41491', '37687'); + insert into advisor values('99764', '63287'); + insert into advisor values('50537', '95709'); + insert into advisor values('67793', '36897'); + insert into advisor values('47487', '41930'); + insert into advisor values('19362', '14365'); + insert into advisor values('25942', '96895'); + insert into advisor values('39238', '72553'); + insert into advisor values('65979', '6569'); + insert into advisor values('22086', '19368'); + insert into advisor values('37734', '31955'); + insert into advisor values('17911', '28097'); + insert into advisor values('87831', '79081'); + insert into advisor values('12214', '25946'); + insert into advisor values('20378', '78699'); + insert into advisor values('11083', '96895'); + insert into advisor values('57377', '50885'); + insert into advisor values('35881', '78699'); + insert into advisor values('34542', '79081'); + insert into advisor values('91978', '48570'); + insert into advisor values('87048', '59795'); + insert into advisor values('64820', '14365'); + insert into advisor values('57474', '41930'); + insert into advisor values('53496', '3199'); + insert into advisor values('87193', '4233'); + insert into advisor values('847', '65931'); + insert into advisor values('42388', '97302'); + insert into advisor values('62749', '15347'); + insert into advisor values('41988', '28097'); + insert into advisor values('85680', '97302'); + insert into advisor values('82083', '63287'); + insert into advisor values('65056', '72553'); + insert into advisor values('3639', '59795'); + insert into advisor values('37038', '79653'); + insert into advisor values('9933', '64871'); + insert into advisor values('65190', '52647'); + insert into advisor values('15328', '37687'); + insert into advisor values('59455', '14365'); + insert into advisor values('49873', '22591'); + insert into advisor values('82039', '48570'); + insert into advisor values('20974', '28400'); + insert into advisor values('56089', '48507'); + insert into advisor values('86573', '72553'); + insert into advisor values('38712', '97302'); + insert into advisor values('42991', '6569'); + insert into advisor values('28019', '15347'); + insert into advisor values('13023', '58558'); + insert into advisor values('31761', '72553'); + insert into advisor values('56882', '25946'); + insert into advisor values('34788', '37687'); + insert into advisor values('17607', '52647'); + insert into advisor values('48776', '58558'); + insert into advisor values('78758', '59795'); + insert into advisor values('77218', '77346'); + insert into advisor values('4034', '97302'); + insert into advisor values('50658', '81991'); + insert into advisor values('76057', '37687'); + insert into advisor values('96067', '99052'); + insert into advisor values('24784', '4034'); + insert into advisor values('31560', '36897'); + insert into advisor values('32345', '74426'); + insert into advisor values('76799', '58558'); + insert into advisor values('37454', '96895'); + insert into advisor values('30943', '63287'); + insert into advisor values('16405', '73623'); + insert into advisor values('95850', '4233'); + insert into advisor values('26619', '35579'); + insert into advisor values('17997', '65931'); + insert into advisor values('26427', '80759'); + insert into advisor values('73213', '90376'); + insert into advisor values('93366', '58558'); + insert into advisor values('33882', '74426'); + insert into advisor values('37818', '43779'); + insert into advisor values('21102', '74426'); + insert into advisor values('76798', '52647'); + insert into advisor values('31820', '90376'); + insert into advisor values('63489', '50885'); + insert into advisor values('51955', '81991'); + insert into advisor values('71631', '72553'); + insert into advisor values('48009', '16807'); + insert into advisor values('51678', '65931'); + insert into advisor values('73602', '31955'); + insert into advisor values('11530', '4034'); + insert into advisor values('32376', '4233'); + insert into advisor values('80799', '74420'); + insert into advisor values('40178', '99052'); + insert into advisor values('58701', '42782'); + insert into advisor values('46655', '81991'); + insert into advisor values('93043', '72553'); + insert into advisor values('1402', '37687'); + insert into advisor values('29462', '3199'); + insert into advisor values('49701', '42782'); + insert into advisor values('96968', '3199'); + insert into advisor values('89551', '16807'); + insert into advisor values('32483', '72553'); + insert into advisor values('39472', '77346'); + insert into advisor values('88045', '34175'); + insert into advisor values('30474', '65931'); + insert into advisor values('31476', '36897'); + insert into advisor values('95175', '57180'); + insert into advisor values('95697', '50330'); + insert into advisor values('37759', '95030'); + insert into advisor values('96134', '95709'); + insert into advisor values('92464', '4034'); + insert into advisor values('78434', '80759'); + insert into advisor values('44038', '63395'); + insert into advisor values('43993', '95030'); + insert into advisor values('914', '95030'); + insert into advisor values('19342', '78699'); + insert into advisor values('13749', '79653'); + insert into advisor values('33546', '72553'); + insert into advisor values('40116', '42782'); + insert into advisor values('46980', '3199'); + insert into advisor values('31266', '81991'); + insert into advisor values('65688', '73623'); + insert into advisor values('65563', '35579'); + insert into advisor values('83314', '57180'); + insert into advisor values('39876', '72553'); + insert into advisor values('44706', '43779'); + insert into advisor values('15086', '48570'); + insert into advisor values('12615', '34175'); + insert into advisor values('63538', '25946'); + insert into advisor values('17831', '22591'); + insert into advisor values('96117', '15347'); + insert into advisor values('82066', '31955'); + insert into advisor values('28738', '79653'); + insert into advisor values('84515', '97302'); + insert into advisor values('90132', '90643'); + insert into advisor values('8192', '22591'); + insert into advisor values('25611', '63395'); + insert into advisor values('50743', '52647'); + insert into advisor values('41683', '28097'); + insert into advisor values('99553', '48507'); + insert into advisor values('22179', '22591'); + insert into advisor values('65121', '72553'); + insert into advisor values('52057', '81991'); + insert into advisor values('931', '95709'); + insert into advisor values('23392', '59795'); + insert into advisor values('33759', '15347'); + insert into advisor values('52203', '4233'); + insert into advisor values('78581', '74426'); + insert into advisor values('65241', '25946'); + insert into advisor values('45359', '80759'); + insert into advisor values('86001', '64871'); + insert into advisor values('22532', '50330'); + insert into advisor values('97573', '22591'); + insert into advisor values('90609', '6569'); + insert into advisor values('16528', '48507'); + insert into advisor values('61920', '28400'); + insert into advisor values('282', '28400'); + insert into advisor values('85602', '58558'); + insert into advisor values('62832', '95709'); + insert into advisor values('78454', '34175'); + insert into advisor values('30222', '90376'); + insert into advisor values('28994', '4233'); + insert into advisor values('39927', '77346'); + insert into advisor values('74070', '90376'); + insert into advisor values('65208', '59795'); + insert into advisor values('2286', '31955'); + insert into advisor values('49450', '59795'); + insert into advisor values('83214', '73623'); + insert into advisor values('6287', '99052'); + insert into advisor values('86661', '90376'); + insert into advisor values('68242', '28400'); + insert into advisor values('42092', '74420'); + insert into advisor values('9993', '96895'); + insert into advisor values('89734', '73623'); + insert into advisor values('7732', '16807'); + insert into advisor values('89312', '3335'); + insert into advisor values('35357', '50330'); + insert into advisor values('86127', '58558'); + insert into advisor values('18775', '37687'); + insert into advisor values('24374', '4034'); + insert into advisor values('2848', '57180'); + insert into advisor values('78143', '3199'); + insert into advisor values('50977', '3335'); + insert into advisor values('96895', '65931'); + insert into advisor values('95626', '50885'); + insert into advisor values('22260', '42782'); + insert into advisor values('23224', '36897'); + insert into advisor values('27528', '80759'); + insert into advisor values('71025', '74426'); + insert into advisor values('36845', '72553'); + insert into advisor values('17924', '97302'); + insert into advisor values('69632', '59795'); + insert into advisor values('70828', '97302'); + insert into advisor values('27687', '4034'); + insert into advisor values('28299', '63395'); + insert into advisor values('14869', '22591'); + insert into advisor values('11152', '6569'); + insert into advisor values('17507', '65931'); + insert into advisor values('57107', '31955'); + insert into advisor values('47670', '95030'); + insert into advisor values('25718', '6569'); + insert into advisor values('67293', '74426'); + insert into advisor values('41091', '96895'); + insert into advisor values('86674', '65931'); + insert into advisor values('23506', '52647'); + insert into advisor values('8022', '77346'); + insert into advisor values('97953', '4233'); + insert into advisor values('86934', '36897'); + insert into advisor values('58172', '28400'); + insert into advisor values('81610', '78699'); + insert into advisor values('77172', '64871'); + insert into advisor values('499', '35579'); + insert into advisor values('94730', '3199'); + insert into advisor values('40371', '31955'); + insert into advisor values('3651', '41930'); + insert into advisor values('85904', '34175'); + insert into advisor values('73394', '99052'); + insert into advisor values('8807', '96895'); + insert into advisor values('62705', '48570'); + insert into advisor values('11578', '90376'); + insert into advisor values('68248', '50330'); + insert into advisor values('98315', '6569'); + insert into advisor values('62754', '95030'); + insert into advisor values('41406', '95030'); + insert into advisor values('82063', '57180'); + insert into advisor values('87706', '34175'); + insert into advisor values('20540', '41930'); + insert into advisor values('69960', '14365'); + insert into advisor values('30252', '65931'); + insert into advisor values('70098', '37687'); + insert into advisor values('93986', '14365'); + insert into advisor values('35685', '97302'); + insert into advisor values('31364', '34175'); + insert into advisor values('36494', '4034'); + insert into advisor values('32217', '4233'); + insert into advisor values('69952', '79081'); + insert into advisor values('52523', '31955'); + insert into advisor values('7149', '97302'); + insert into advisor values('71878', '57180'); + insert into advisor values('29192', '48570'); + insert into advisor values('79446', '48507'); + insert into advisor values('77000', '22591'); + insert into advisor values('1836', '35579'); + insert into advisor values('84167', '95709'); + insert into advisor values('81785', '78699'); + insert into advisor values('1087', '35579'); + insert into advisor values('5617', '73623'); + insert into advisor values('53547', '73623'); + insert into advisor values('39978', '31955'); + insert into advisor values('60748', '6569'); + insert into advisor values('23449', '81991'); + insert into advisor values('52385', '63287'); + insert into advisor values('2139', '4233'); + insert into advisor values('12941', '37687'); + insert into advisor values('72521', '80759'); + insert into advisor values('82580', '65931'); + insert into advisor values('39394', '14365'); + insert into advisor values('39901', '43779'); + insert into advisor values('3493', '74426'); + insert into advisor values('90353', '81991'); + insert into advisor values('69747', '28400'); + insert into advisor values('39514', '14365'); + insert into advisor values('36995', '16807'); + insert into advisor values('12971', '50330'); + insert into advisor values('76768', '19368'); + insert into advisor values('79502', '90376'); + insert into advisor values('63390', '50885'); + insert into advisor values('19824', '77346'); + insert into advisor values('46769', '52647'); + insert into advisor values('65400', '4034'); + insert into advisor values('44258', '96895'); + insert into advisor values('81896', '16807'); + insert into advisor values('79772', '90643'); + insert into advisor values('46155', '78699'); + insert into advisor values('18709', '52647'); + insert into advisor values('63502', '16807'); + insert into advisor values('39521', '97302'); + insert into advisor values('51203', '78699'); + insert into advisor values('96741', '48507'); + insert into advisor values('38371', '48570'); + insert into advisor values('59673', '79081'); + insert into advisor values('13365', '95030'); + insert into advisor values('1000', '16807'); + insert into advisor values('19735', '90643'); + insert into advisor values('34126', '95709'); + insert into advisor values('16467', '50330'); + insert into advisor values('80248', '3199'); + insert into advisor values('58634', '28400'); + insert into advisor values('51975', '16807'); + insert into advisor values('77548', '90643'); + insert into advisor values('74796', '36897'); + insert into advisor values('85981', '28400'); + insert into advisor values('29645', '37687'); + insert into advisor values('89234', '57180'); + insert into advisor values('94142', '16807'); + insert into advisor values('79697', '42782'); + insert into advisor values('90089', '48570'); + insert into advisor values('20244', '25946'); + insert into advisor values('37350', '99052'); + insert into advisor values('81638', '63395'); + insert into advisor values('90914', '28400'); + insert into advisor values('75395', '95709'); + insert into advisor values('42556', '28400'); + insert into advisor values('10556', '3199'); + insert into advisor values('39619', '74426'); + insert into advisor values('38288', '3199'); + insert into advisor values('20985', '79653'); + insert into advisor values('38548', '74420'); + insert into advisor values('15698', '41930'); + insert into advisor values('23500', '79653'); + insert into advisor values('70965', '22591'); + insert into advisor values('76911', '63395'); + insert into advisor values('3545', '74420'); + insert into advisor values('46694', '28400'); + insert into advisor values('99977', '28400'); + insert into advisor values('90124', '57180'); + insert into advisor values('95840', '48570'); + insert into advisor values('56143', '52647'); + insert into advisor values('79469', '50330'); + insert into advisor values('3693', '73623'); + insert into advisor values('42096', '4233'); + insert into advisor values('88472', '90643'); + insert into advisor values('14874', '79081'); + insert into advisor values('978', '36897'); + insert into advisor values('33201', '81991'); + insert into advisor values('30161', '63287'); + insert into advisor values('46441', '14365'); + insert into advisor values('31035', '19368'); + insert into advisor values('67371', '3335'); + insert into advisor values('80651', '4233'); + insert into advisor values('43505', '72553'); + insert into advisor values('35498', '80759'); + insert into advisor values('48423', '95709'); + insert into advisor values('51093', '15347'); + insert into advisor values('78572', '37687'); + insert into advisor values('52669', '37687'); + insert into advisor values('87246', '28400'); + insert into advisor values('69122', '79081'); + insert into advisor values('52945', '48570'); + insert into advisor values('52471', '4233'); + insert into advisor values('62728', '97302'); + insert into advisor values('52929', '43779'); + insert into advisor values('85754', '19368'); + insert into advisor values('18583', '50330'); + insert into advisor values('74974', '77346'); + insert into advisor values('48611', '77346'); + insert into advisor values('63582', '81991'); + insert into advisor values('53118', '79081'); + insert into advisor values('88887', '48570'); + insert into advisor values('81175', '19368'); + insert into advisor values('69783', '31955'); + insert into advisor values('14829', '52647'); + insert into advisor values('53469', '80759'); + insert into advisor values('44304', '22591'); + insert into advisor values('48861', '52647'); + insert into advisor values('73411', '77346'); + insert into advisor values('95225', '48570'); + insert into advisor values('53788', '77346'); + insert into advisor values('68712', '57180'); + insert into advisor values('52866', '35579'); + insert into advisor values('5298', '90376'); + insert into advisor values('58606', '59795'); + insert into advisor values('76049', '14365'); + insert into advisor values('78858', '99052'); + insert into advisor values('97041', '28400'); + insert into advisor values('98388', '63287'); + insert into advisor values('15024', '77346'); + insert into advisor values('5243', '58558'); + insert into advisor values('80990', '90376'); + insert into advisor values('77664', '35579'); + insert into advisor values('49982', '77346'); + insert into advisor values('87222', '57180'); + insert into advisor values('35523', '25946'); + insert into advisor values('14499', '97302'); + insert into advisor values('33107', '77346'); + insert into advisor values('18108', '34175'); + insert into advisor values('67655', '4233'); + insert into advisor values('95852', '79081'); + insert into advisor values('50664', '36897'); + insert into advisor values('59117', '37687'); + insert into advisor values('435', '4233'); + insert into advisor values('75596', '6569'); + insert into advisor values('34197', '73623'); + insert into advisor values('66281', '79653'); + insert into advisor values('86736', '90643'); + insert into advisor values('14484', '48507'); + insert into advisor values('88308', '25946'); + insert into advisor values('36657', '96895'); + insert into advisor values('93125', '78699'); + insert into advisor values('29140', '48570'); + insert into advisor values('85211', '15347'); + insert into advisor values('23525', '50330'); + insert into advisor values('3005', '31955'); + insert into advisor values('91197', '35579'); + insert into advisor values('1285', '4034'); + insert into advisor values('29863', '16807'); + insert into advisor values('15070', '97302'); + insert into advisor values('98047', '57180'); + insert into advisor values('87624', '28097'); + insert into advisor values('38902', '65931'); + insert into advisor values('15538', '59795'); + insert into advisor values('83691', '79653'); + insert into advisor values('89759', '42782'); + insert into advisor values('34770', '64871'); + insert into advisor values('11202', '90376'); + insert into advisor values('65681', '3199'); + insert into advisor values('17665', '74426'); + insert into advisor values('11966', '79653'); + insert into advisor values('21556', '42782'); + insert into advisor values('24002', '19368'); + insert into advisor values('75878', '22591'); + insert into advisor values('52120', '34175'); + insert into advisor values('93491', '64871'); + insert into advisor values('78637', '90643'); + insert into advisor values('9256', '72553'); + insert into advisor values('41345', '50330'); + insert into advisor values('98726', '52647'); + insert into advisor values('5381', '77346'); + insert into advisor values('99647', '37687'); + insert into advisor values('50331', '78699'); + insert into advisor values('48247', '28400'); + insert into advisor values('65753', '73623'); + insert into advisor values('29091', '63287'); + insert into advisor values('72165', '99052'); + insert into advisor values('43981', '48507'); + insert into advisor values('16057', '42782'); + insert into advisor values('88525', '48507'); + insert into advisor values('16480', '41930'); + insert into advisor values('92849', '90376'); + insert into advisor values('9495', '77346'); + insert into advisor values('14581', '50885'); + insert into advisor values('65901', '96895'); + insert into advisor values('96203', '28400'); + insert into advisor values('1954', '4233'); + insert into advisor values('66484', '41930'); + insert into advisor values('15083', '73623'); + insert into advisor values('48901', '4034'); + insert into advisor values('15340', '16807'); + insert into advisor values('16515', '97302'); + insert into advisor values('54620', '58558'); + insert into advisor values('15430', '95709'); + insert into advisor values('27236', '79653'); + insert into advisor values('2201', '25946'); + insert into advisor values('69471', '63395'); + insert into advisor values('13880', '74420'); + insert into advisor values('827', '31955'); + insert into advisor values('42960', '73623'); + insert into advisor values('48471', '99052'); + insert into advisor values('13217', '16807'); + insert into advisor values('45570', '25946'); + insert into advisor values('94815', '41930'); + insert into advisor values('1922', '4233'); + insert into advisor values('51084', '63287'); + insert into advisor values('842', '48570'); + insert into advisor values('53152', '99052'); + insert into advisor values('11201', '52647'); + insert into advisor values('88577', '57180'); + insert into advisor values('22050', '79653'); + insert into advisor values('68010', '36897'); + insert into advisor values('10838', '96895'); + insert into advisor values('59848', '52647'); + insert into advisor values('7035', '36897'); + insert into advisor values('5463', '25946'); + insert into advisor values('74464', '43779'); + insert into advisor values('16969', '50885'); + insert into advisor values('62054', '25946'); + insert into advisor values('50719', '3335'); + insert into advisor values('41280', '81991'); + insert into advisor values('31341', '42782'); + insert into advisor values('23475', '97302'); + insert into advisor values('55354', '37687'); + insert into advisor values('50966', '25946'); + insert into advisor values('10269', '15347'); + insert into advisor values('92659', '19368'); + insert into advisor values('49792', '63395'); + insert into advisor values('27140', '25946'); + insert into advisor values('993', '90376'); + insert into advisor values('58326', '50885'); + insert into advisor values('70924', '63287'); + insert into advisor values('71944', '43779'); + insert into advisor values('95201', '28097'); + insert into advisor values('52876', '80759'); + insert into advisor values('58355', '58558'); + insert into advisor values('90181', '41930'); + insert into advisor values('53799', '3335'); + insert into advisor values('13511', '3335'); + insert into advisor values('69521', '35579'); + insert into advisor values('37946', '28097'); + insert into advisor values('15578', '37687'); + insert into advisor values('16311', '4233'); + insert into advisor values('56124', '52647'); + insert into advisor values('63560', '90376'); + insert into advisor values('75299', '43779'); + insert into advisor values('61356', '74420'); + insert into advisor values('70061', '36897'); + insert into advisor values('61232', '31955'); + insert into advisor values('16523', '57180'); + insert into advisor values('57238', '3199'); + insert into advisor values('63645', '37687'); + insert into advisor values('55857', '72553'); + insert into advisor values('90041', '50885'); + insert into advisor values('68263', '48507'); + insert into advisor values('48165', '59795'); + insert into advisor values('23373', '95030'); + insert into advisor values('5336', '42782'); + insert into advisor values('18286', '50885'); + insert into advisor values('4860', '73623'); + insert into advisor values('68516', '59795'); + insert into advisor values('94766', '36897'); + insert into advisor values('72669', '81991'); + insert into advisor values('41596', '3335'); + insert into advisor values('55286', '3199'); + insert into advisor values('10693', '72553'); + insert into advisor values('50467', '64871'); + insert into advisor values('21692', '97302'); + insert into advisor values('8517', '14365'); + insert into advisor values('28133', '3199'); + insert into advisor values('10033', '64871'); + insert into advisor values('60406', '41930'); + insert into advisor values('50703', '41930'); + insert into advisor values('98359', '48570'); + insert into advisor values('23992', '4034'); + insert into advisor values('31554', '14365'); + insert into advisor values('70807', '72553'); + insert into advisor values('4355', '14365'); + insert into advisor values('8457', '43779'); + insert into advisor values('10904', '48570'); + insert into advisor values('83836', '63287'); + insert into advisor values('72657', '58558'); + insert into advisor values('46035', '31955'); + insert into advisor values('36881', '59795'); + insert into advisor values('79487', '37687'); + insert into advisor values('48778', '80759'); + insert into advisor values('64039', '4034'); + insert into advisor values('42565', '79081'); + insert into advisor values('29665', '3199'); + insert into advisor values('83511', '74420'); + insert into advisor values('45494', '97302'); + insert into advisor values('12173', '95709'); + insert into advisor values('16993', '14365'); + insert into advisor values('62784', '74420'); + insert into advisor values('23344', '43779'); + insert into advisor values('92417', '78699'); + insert into advisor values('86529', '48570'); + insert into advisor values('84654', '22591'); + insert into advisor values('52134', '35579'); + insert into advisor values('90234', '57180'); + insert into advisor values('13921', '37687'); + insert into advisor values('76169', '50330'); + insert into advisor values('41832', '4233'); + insert into advisor values('68720', '41930'); + insert into advisor values('66753', '4034'); + insert into advisor values('13753', '81991'); + insert into advisor values('57190', '65931'); + insert into advisor values('27804', '79081'); + insert into advisor values('63449', '74420'); + insert into advisor values('27017', '95030'); + insert into advisor values('52291', '77346'); + insert into advisor values('80941', '15347'); + insert into advisor values('95953', '16807'); + insert into advisor values('72528', '28400'); + insert into advisor values('61854', '74420'); + insert into advisor values('91851', '37687'); + insert into advisor values('38973', '65931'); + insert into advisor values('83480', '79653'); + insert into advisor values('13504', '81991'); + insert into advisor values('19766', '28400'); + insert into advisor values('50365', '90376'); + insert into advisor values('43616', '79081'); + insert into advisor values('19917', '74426'); + insert into advisor values('29849', '43779'); + insert into advisor values('85063', '25946'); + insert into advisor values('70564', '35579'); + insert into advisor values('38121', '65931'); + insert into advisor values('14563', '6569'); + insert into advisor values('6895', '34175'); + insert into advisor values('3039', '4233'); + insert into advisor values('86969', '95709'); + insert into advisor values('11455', '63395'); + insert into advisor values('24809', '58558'); + insert into advisor values('50414', '52647'); + insert into advisor values('57026', '14365'); + insert into advisor values('69081', '73623'); + insert into advisor values('7498', '6569'); + insert into advisor values('34158', '90376'); + insert into advisor values('15144', '50330'); + insert into advisor values('88287', '22591'); + insert into advisor values('72006', '19368'); + insert into advisor values('49244', '72553'); + insert into advisor values('14639', '3199'); + insert into advisor values('76604', '63395'); + insert into advisor values('80113', '16807'); + insert into advisor values('18740', '63395'); + insert into advisor values('69628', '96895'); + insert into advisor values('13757', '42782'); + insert into advisor values('36513', '52647'); + insert into advisor values('97042', '74426'); + insert into advisor values('46260', '48570'); + insert into advisor values('29871', '3335'); + insert into advisor values('75082', '50885'); + insert into advisor values('65715', '52647'); + insert into advisor values('54875', '43779'); + insert into advisor values('99710', '52647'); + insert into advisor values('36384', '97302'); + insert into advisor values('51923', '96895'); + insert into advisor values('37653', '42782'); + insert into advisor values('61783', '48507'); + insert into advisor values('86552', '3335'); + insert into advisor values('11855', '72553'); + insert into advisor values('43016', '3199'); + insert into advisor values('11237', '72553'); + insert into advisor values('96710', '41930'); + insert into advisor values('27044', '73623'); + insert into advisor values('25046', '50885'); + insert into advisor values('62487', '37687'); + insert into advisor values('49759', '65931'); + insert into advisor values('65101', '48570'); + insert into advisor values('64550', '6569'); + insert into advisor values('25143', '95709'); + insert into advisor values('13495', '59795'); + insert into advisor values('67560', '78699'); + insert into advisor values('28316', '78699'); + insert into advisor values('47379', '74420'); + insert into advisor values('56003', '4233'); + insert into advisor values('32369', '64871'); + insert into advisor values('52187', '73623'); + insert into advisor values('91992', '97302'); + insert into advisor values('71543', '78699'); + insert into advisor values('1220', '50330'); + insert into advisor values('40937', '4233'); + insert into advisor values('14065', '77346'); + insert into advisor values('43495', '3335'); + insert into advisor values('26494', '25946'); + insert into advisor values('12362', '25946'); + insert into advisor values('41675', '36897'); + insert into advisor values('78314', '4034'); + insert into advisor values('51579', '34175'); + insert into advisor values('2178', '64871'); + insert into advisor values('86707', '6569'); + insert into advisor values('56849', '19368'); + insert into advisor values('6712', '96895'); + insert into advisor values('17207', '28400'); + insert into advisor values('81876', '97302'); + insert into advisor values('66259', '72553'); + insert into advisor values('75794', '48507'); + insert into advisor values('77003', '95709'); + insert into advisor values('31101', '15347'); + insert into advisor values('64196', '80759'); + insert into advisor values('14628', '59795'); + insert into advisor values('24197', '65931'); + insert into advisor values('3576', '78699'); + insert into advisor values('45720', '16807'); + insert into advisor values('15980', '43779'); + insert into advisor values('34569', '15347'); + insert into advisor values('73492', '37687'); + insert into advisor values('44836', '72553'); + insert into advisor values('27366', '77346'); + insert into advisor values('16250', '95709'); + insert into advisor values('10267', '59795'); + insert into advisor values('77244', '22591'); + insert into advisor values('7854', '4034'); + insert into advisor values('1726', '36897'); + insert into advisor values('8347', '37687'); + insert into advisor values('83573', '90376'); + insert into advisor values('6209', '79653'); + insert into advisor values('85849', '63395'); + insert into advisor values('76224', '35579'); + insert into advisor values('7043', '64871'); + insert into advisor values('70235', '34175'); + insert into advisor values('47824', '52647'); + insert into advisor values('58935', '57180'); + insert into advisor values('987', '90643'); + insert into advisor values('46074', '58558'); + insert into advisor values('23270', '65931'); + insert into advisor values('42956', '63287'); + insert into advisor values('78481', '58558'); + insert into advisor values('888', '50885'); + insert into advisor values('42625', '25946'); + insert into advisor values('43211', '79653'); + insert into advisor values('43226', '43779'); + insert into advisor values('53172', '90376'); + insert into advisor values('16133', '74420'); + insert into advisor values('75522', '59795'); + insert into advisor values('68330', '90376'); + insert into advisor values('53225', '58558'); + insert into advisor values('67542', '63287'); + insert into advisor values('8860', '72553'); + insert into advisor values('22198', '79081'); + insert into advisor values('56212', '14365'); + insert into advisor values('67514', '6569'); + insert into advisor values('58919', '52647'); + insert into advisor values('82707', '57180'); + insert into advisor values('86641', '65931'); + insert into advisor values('94324', '77346'); + insert into advisor values('75534', '50885'); + insert into advisor values('15283', '50330'); + insert into advisor values('47677', '31955'); + insert into advisor values('94569', '63287'); + insert into advisor values('90814', '72553'); + insert into advisor values('63310', '74426'); + insert into advisor values('48660', '95030'); + insert into advisor values('35293', '90376'); + insert into advisor values('28004', '3335'); + insert into advisor values('50038', '6569'); + insert into advisor values('25940', '96895'); + insert into advisor values('11126', '35579'); + insert into advisor values('92332', '80759'); + insert into advisor values('18752', '95709'); + insert into advisor values('61527', '22591'); + insert into advisor values('32119', '42782'); + insert into advisor values('163', '41930'); + insert into advisor values('32065', '42782'); + insert into advisor values('45436', '34175'); + insert into advisor values('58085', '73623'); + insert into advisor values('17076', '74420'); + insert into advisor values('17133', '95030'); + insert into advisor values('36791', '80759'); + insert into advisor values('25785', '73623'); + insert into advisor values('11055', '48507'); + insert into advisor values('96227', '63395'); + insert into advisor values('67024', '31955'); + insert into advisor values('69307', '79081'); + insert into advisor values('23439', '36897'); + insert into advisor values('66969', '50330'); + insert into advisor values('22268', '6569'); + insert into advisor values('41938', '96895'); + insert into advisor values('17057', '80759'); + insert into advisor values('92693', '99052'); + insert into advisor values('49503', '37687'); + insert into advisor values('77130', '78699'); + insert into advisor values('7861', '80759'); + insert into advisor values('51538', '77346'); + insert into advisor values('57787', '37687'); + insert into advisor values('75116', '31955'); + insert into advisor values('81984', '34175'); + insert into advisor values('68395', '52647'); + insert into advisor values('11057', '72553'); + insert into advisor values('20002', '28400'); + insert into advisor values('95027', '95030'); + insert into advisor values('7514', '64871'); + insert into advisor values('88358', '6569'); + insert into advisor values('34392', '79653'); + insert into advisor values('57538', '15347'); + insert into advisor values('9114', '15347'); + insert into advisor values('8378', '59795'); + insert into advisor values('51416', '19368'); + insert into advisor values('71389', '97302'); + insert into advisor values('16453', '34175'); + insert into advisor values('62226', '64871'); + insert into advisor values('26028', '42782'); + insert into advisor values('45817', '35579'); + insert into advisor values('48469', '95709'); + insert into advisor values('69230', '58558'); + insert into advisor values('99711', '42782'); + insert into advisor values('26695', '15347'); + insert into advisor values('2501', '50885'); + insert into advisor values('8819', '28097'); + insert into advisor values('507', '78699'); + insert into advisor values('80698', '31955'); + insert into advisor values('73328', '3335'); + insert into advisor values('23457', '57180'); + insert into advisor values('17996', '78699'); + insert into advisor values('75173', '72553'); + insert into advisor values('25552', '81991'); + insert into advisor values('63612', '48507'); + insert into advisor values('27898', '37687'); + insert into advisor values('33401', '14365'); + insert into advisor values('49280', '63395'); + insert into advisor values('66279', '19368'); + insert into advisor values('12326', '42782'); + insert into advisor values('32772', '59795'); + insert into advisor values('25725', '50330'); + insert into advisor values('89571', '37687'); + insert into advisor values('99780', '36897'); + insert into advisor values('91580', '4233'); + insert into advisor values('27043', '90376'); + insert into advisor values('96615', '35579'); + insert into advisor values('39892', '28097'); + insert into advisor values('1232', '79653'); + insert into advisor values('22467', '90643'); + insert into advisor values('88884', '52647'); + insert into advisor values('96911', '64871'); + insert into advisor values('46337', '48507'); + insert into advisor values('23110', '48507'); + insert into advisor values('60762', '15347'); + insert into advisor values('65676', '4233'); + insert into advisor values('47025', '58558'); + insert into advisor values('1812', '4034'); + insert into advisor values('66763', '63287'); + insert into advisor values('52741', '42782'); + insert into advisor values('78911', '73623'); + insert into advisor values('33206', '42782'); + insert into advisor values('15030', '77346'); + insert into advisor values('11377', '19368'); + insert into advisor values('17676', '74426'); + insert into advisor values('52019', '90643'); + insert into advisor values('64013', '57180'); + insert into advisor values('45770', '59795'); + insert into advisor values('63288', '99052'); + insert into advisor values('92949', '95030'); + insert into advisor values('83871', '90376'); + insert into advisor values('41671', '35579'); + insert into advisor values('645', '72553'); + insert into advisor values('61444', '81991'); + insert into advisor values('85534', '41930'); + insert into advisor values('35362', '16807'); + insert into advisor values('22417', '22591'); + insert into advisor values('5961', '97302'); + insert into advisor values('35257', '90643'); + insert into advisor values('65299', '81991'); + insert into advisor values('18367', '74426'); + insert into advisor values('68396', '4233'); + insert into advisor values('35905', '16807'); + insert into advisor values('45650', '37687'); + insert into advisor values('27662', '52647'); + insert into advisor values('25077', '79653'); + insert into advisor values('85575', '80759'); + insert into advisor values('760', '28400'); + insert into advisor values('67583', '65931'); + insert into advisor values('63886', '95030'); + insert into advisor values('34055', '14365'); + insert into advisor values('41973', '73623'); + insert into advisor values('30017', '15347'); + insert into advisor values('37581', '36897'); + insert into advisor values('62373', '19368'); + insert into advisor values('57160', '25946'); + insert into advisor values('2967', '73623'); + insert into advisor values('5144', '34175'); + insert into advisor values('5703', '79653'); + insert into advisor values('58170', '19368'); + insert into advisor values('53424', '63395'); + insert into advisor values('17397', '34175'); + insert into advisor values('77588', '35579'); + insert into advisor values('92442', '97302'); + insert into advisor values('42114', '28097'); + insert into advisor values('53699', '14365'); + insert into advisor values('22258', '4034'); + insert into advisor values('2133', '6569'); + insert into advisor values('73606', '16807'); + insert into advisor values('63040', '48507'); + insert into advisor values('74473', '41930'); + insert into advisor values('9659', '31955'); + insert into advisor values('21552', '22591'); + insert into advisor values('45002', '99052'); + insert into advisor values('57213', '42782'); + insert into advisor values('56058', '78699'); + insert into advisor values('84792', '96895'); + insert into advisor values('57185', '4034'); + insert into advisor values('75510', '4034'); + insert into advisor values('42560', '37687'); + insert into advisor values('75252', '63395'); + insert into advisor values('82402', '99052'); + insert into advisor values('17339', '57180'); + insert into advisor values('77148', '79081'); + insert into advisor values('11419', '97302'); + insert into advisor values('37869', '97302'); + insert into advisor values('28977', '74426'); + insert into advisor values('28989', '58558'); + insert into advisor values('92867', '95709'); + insert into advisor values('92703', '97302'); + insert into advisor values('17600', '73623'); + insert into advisor values('32464', '79653'); + insert into advisor values('71426', '48570'); + insert into advisor values('8343', '3335'); + insert into advisor values('41261', '35579'); + insert into advisor values('58469', '15347'); + insert into advisor values('36303', '58558'); + insert into advisor values('30164', '35579'); + insert into advisor values('29920', '35579'); + insert into advisor values('30858', '4233'); + insert into advisor values('88801', '50330'); + insert into advisor values('57780', '16807'); + insert into advisor values('21246', '72553'); + insert into advisor values('34957', '28097'); + insert into advisor values('61998', '3335'); + insert into advisor values('56598', '90376'); + insert into advisor values('463', '19368'); + insert into advisor values('81245', '19368'); + insert into advisor values('21100', '3335'); + insert into advisor values('56', '95030'); + insert into advisor values('64121', '95030'); + insert into advisor values('20489', '97302'); + insert into advisor values('10834', '79081'); + insert into advisor values('63289', '57180'); + insert into advisor values('9953', '95709'); + insert into advisor values('78782', '79653'); + insert into advisor values('5399', '79653'); + insert into advisor values('1367', '28097'); + insert into advisor values('30896', '50885'); + insert into advisor values('12236', '95030'); + insert into advisor values('89297', '22591'); + insert into advisor values('52656', '80759'); + insert into advisor values('18859', '63395'); + insert into advisor values('17377', '96895'); + insert into advisor values('50039', '64871'); + insert into advisor values('78756', '81991'); + insert into advisor values('3833', '14365'); + insert into advisor values('47627', '99052'); + insert into advisor values('65438', '35579'); + insert into advisor values('8912', '79653'); + insert into advisor values('22912', '19368'); + insert into advisor values('99289', '65931'); + insert into advisor values('63039', '52647'); + insert into advisor values('20180', '95030'); + insert into advisor values('35687', '77346'); + insert into advisor values('28409', '34175'); + insert into advisor values('56078', '52647'); + insert into advisor values('48589', '64871'); + insert into advisor values('7956', '50885'); + insert into advisor values('16347', '90376'); + insert into advisor values('75362', '58558'); + insert into advisor values('57242', '4034'); + insert into advisor values('71085', '19368'); + insert into advisor values('89132', '3199'); + insert into advisor values('79763', '42782'); + insert into advisor values('41818', '65931'); + insert into advisor values('667', '90376'); + insert into advisor values('82970', '36897'); + insert into advisor values('68150', '36897'); + insert into advisor values('63243', '28097'); + insert into advisor values('18338', '97302'); + insert into advisor values('51862', '28400'); + insert into advisor values('19203', '79653'); + insert into advisor values('78892', '48570'); + insert into advisor values('67657', '34175'); + insert into advisor values('71628', '58558'); + insert into advisor values('43854', '81991'); + insert into advisor values('123', '59795'); + insert into advisor values('5943', '52647'); + insert into advisor values('56139', '48570'); + insert into advisor values('45680', '79653'); + insert into advisor values('76759', '25946'); + insert into advisor values('26802', '77346'); + insert into advisor values('83747', '78699'); + insert into advisor values('35935', '48570'); + insert into advisor values('8957', '4233'); + insert into advisor values('40481', '16807'); + insert into advisor values('44352', '16807'); + insert into advisor values('73072', '41930'); + insert into advisor values('96206', '81991'); + insert into advisor values('8843', '72553'); + insert into advisor values('41299', '90643'); + insert into advisor values('13403', '14365'); + insert into advisor values('65703', '63287'); + insert into advisor values('49205', '36897'); + insert into advisor values('22345', '63287'); + insert into advisor values('39254', '90376'); + insert into advisor values('80742', '15347'); + insert into advisor values('94726', '80759'); + insert into advisor values('77361', '77346'); + insert into advisor values('52856', '97302'); + insert into advisor values('64138', '15347'); + insert into advisor values('89414', '52647'); + insert into advisor values('22618', '4034'); + insert into advisor values('98870', '43779'); + insert into advisor values('77234', '63395'); + insert into advisor values('56057', '42782'); + insert into advisor values('32881', '16807'); + insert into advisor values('92776', '99052'); + insert into advisor values('82301', '96895'); + insert into advisor values('29959', '57180'); + insert into advisor values('30182', '48507'); + insert into advisor values('96324', '79653'); + insert into advisor values('56232', '63287'); + insert into advisor values('53047', '34175'); + insert into advisor values('87015', '90376'); + insert into advisor values('55329', '48507'); + insert into advisor values('21394', '4034'); + insert into advisor values('61166', '37687'); + insert into advisor values('74530', '72553'); + insert into advisor values('99189', '90376'); + insert into advisor values('34170', '81991'); + insert into advisor values('19220', '16807'); + insert into advisor values('73542', '31955'); + insert into advisor values('97590', '28097'); + insert into advisor values('15613', '50885'); + insert into advisor values('78767', '3199'); + insert into advisor values('51553', '74426'); + insert into advisor values('9947', '79081'); + insert into advisor values('95260', '6569'); + insert into advisor values('87268', '59795'); + insert into advisor values('35', '65931'); + insert into advisor values('99451', '97302'); + insert into advisor values('65396', '50885'); + insert into advisor values('98140', '77346'); + insert into advisor values('62520', '73623'); + insert into advisor values('40044', '3199'); + insert into advisor values('78787', '31955'); + insert into advisor values('85308', '6569'); + insert into advisor values('85809', '43779'); + insert into advisor values('30021', '4233'); + insert into advisor values('54153', '57180'); + insert into advisor values('73387', '74426'); + insert into advisor values('83003', '28097'); + insert into advisor values('13211', '57180'); + insert into advisor values('20803', '58558'); + insert into advisor values('6990', '36897'); + insert into advisor values('2629', '4233'); + insert into advisor values('83398', '74426'); + insert into advisor values('6673', '79081'); + insert into advisor values('81294', '35579'); + insert into advisor values('81566', '63287'); + insert into advisor values('94620', '79653'); + insert into advisor values('57456', '16807'); + insert into advisor values('17424', '81991'); + insert into advisor values('34195', '14365'); + insert into advisor values('94836', '50885'); + insert into advisor values('16543', '79081'); + insert into advisor values('42843', '50330'); + insert into advisor values('82868', '90376'); + insert into advisor values('18499', '99052'); + insert into advisor values('50013', '25946'); + insert into advisor values('53077', '48507'); + insert into advisor values('87439', '19368'); + insert into advisor values('40738', '65931'); + insert into advisor values('13352', '99052'); + insert into advisor values('9605', '52647'); + insert into advisor values('53490', '42782'); + insert into advisor values('57925', '78699'); + insert into advisor values('57055', '42782'); + insert into advisor values('21009', '42782'); + insert into advisor values('8140', '31955'); + insert into advisor values('37284', '35579'); + insert into advisor values('97023', '52647'); + insert into advisor values('5920', '99052'); + insert into advisor values('91915', '28400'); + insert into advisor values('25780', '58558'); + insert into advisor values('26473', '28097'); + insert into advisor values('43032', '42782'); + insert into advisor values('30110', '95030'); + insert into advisor values('88302', '95709'); + insert into advisor values('83002', '74426'); + insert into advisor values('83136', '72553'); + insert into advisor values('61364', '16807'); + insert into advisor values('50598', '95709'); + insert into advisor values('83696', '97302'); + insert into advisor values('33791', '65931'); + insert into advisor values('61403', '65931'); + insert into advisor values('66356', '96895'); + insert into advisor values('12683', '63287'); + insert into advisor values('66106', '73623'); + insert into advisor values('77729', '28097'); + insert into advisor values('52750', '57180'); + insert into advisor values('25256', '95030'); + insert into advisor values('3640', '79653'); + insert into advisor values('22325', '37687'); + insert into advisor values('26730', '41930'); + insert into advisor values('70918', '19368'); + insert into advisor values('91616', '97302'); + insert into advisor values('69285', '41930'); + insert into advisor values('42688', '36897'); + insert into advisor values('24932', '3199'); + insert into advisor values('33817', '90643'); + insert into advisor values('53185', '25946'); + insert into advisor values('85445', '57180'); + insert into advisor values('58081', '42782'); + insert into advisor values('75560', '42782'); + insert into advisor values('80821', '95709'); + insert into advisor values('19536', '28097'); + insert into advisor values('27002', '28097'); + insert into advisor values('39925', '97302'); + insert into advisor values('90194', '3199'); + insert into advisor values('32056', '52647'); + insert into advisor values('67310', '63395'); + insert into advisor values('88389', '77346'); + insert into advisor values('78469', '48570'); + insert into advisor values('46450', '28400'); + insert into advisor values('86651', '41930'); + insert into advisor values('5824', '80759'); + insert into advisor values('11101', '14365'); + insert into advisor values('57431', '79081'); + insert into advisor values('96193', '99052'); + insert into advisor values('55531', '77346'); + insert into advisor values('17192', '77346'); + insert into advisor values('86075', '99052'); + insert into advisor values('81150', '50330'); + insert into advisor values('44206', '73623'); + insert into advisor values('67222', '63395'); + insert into advisor values('47126', '35579'); + insert into advisor values('67407', '28097'); + insert into advisor values('20814', '16807'); + insert into advisor values('25331', '35579'); + insert into advisor values('83838', '14365'); + insert into advisor values('66293', '64871'); + insert into advisor values('56499', '79653'); + insert into advisor values('32368', '48570'); + insert into advisor values('75273', '16807'); + insert into advisor values('67436', '52647'); + insert into advisor values('259', '16807'); + insert into advisor values('858', '81991'); + insert into advisor values('94990', '35579'); + insert into advisor values('89140', '97302'); + insert into advisor values('55940', '48507'); + insert into advisor values('72768', '79081'); + insert into advisor values('96772', '28097'); + insert into advisor values('25068', '99052'); + insert into advisor values('96988', '36897'); + insert into advisor values('44816', '80759'); + insert into advisor values('88417', '43779'); + insert into advisor values('11441', '35579'); + insert into advisor values('4435', '79081'); + insert into advisor values('70362', '64871'); + insert into advisor values('54460', '6569'); + insert into advisor values('7970', '79081'); + insert into advisor values('73807', '25946'); + insert into advisor values('19050', '35579'); + insert into advisor values('67146', '79081'); + insert into advisor values('23934', '99052'); + insert into advisor values('96246', '42782'); + insert into advisor values('21225', '74426'); + insert into advisor values('18554', '72553'); + insert into advisor values('38013', '63287'); + insert into advisor values('98019', '6569'); + insert into advisor values('40457', '95709'); + insert into advisor values('94801', '42782'); + insert into advisor values('65038', '74420'); + insert into advisor values('4383', '35579'); + insert into advisor values('36402', '57180'); + insert into advisor values('9514', '63287'); + insert into advisor values('11195', '31955'); + insert into advisor values('31442', '37687'); + insert into advisor values('51698', '6569'); + insert into advisor values('18809', '79081'); + insert into advisor values('85505', '36897'); + insert into advisor values('64642', '48570'); + insert into advisor values('54612', '3335'); + insert into advisor values('5843', '50330'); + insert into advisor values('90779', '95030'); + insert into advisor values('52371', '4233'); + insert into advisor values('51238', '4034'); + insert into advisor values('62124', '28400'); + insert into advisor values('84039', '95709'); + insert into advisor values('24201', '57180'); + insert into advisor values('31993', '77346'); + insert into advisor values('39520', '97302'); + insert into advisor values('59172', '50330'); + insert into advisor values('21774', '14365'); + insert into advisor values('30957', '14365'); + insert into advisor values('54610', '28400'); + insert into advisor values('72358', '73623'); + insert into advisor values('83204', '58558'); + insert into advisor values('76246', '14365'); + insert into advisor values('80047', '28097'); + insert into advisor values('38545', '63287'); + insert into advisor values('8986', '79653'); + insert into advisor values('89393', '3335'); + insert into advisor values('37103', '79081'); + insert into advisor values('76743', '64871'); + insert into advisor values('81396', '74426'); + insert into advisor values('46066', '79653'); + insert into advisor values('6729', '28097'); + insert into advisor values('90372', '25946'); + insert into advisor values('28352', '36897'); + insert into advisor values('9408', '6569'); + insert into advisor values('15517', '41930'); + insert into advisor values('61402', '63395'); + insert into advisor values('49813', '48507'); + insert into advisor values('72186', '95709'); + insert into advisor values('31250', '14365'); + insert into advisor values('51768', '80759'); + insert into advisor values('18636', '43779'); + insert into advisor values('88993', '41930'); + insert into advisor values('72177', '79653'); + insert into advisor values('99760', '81991'); + insert into advisor values('80227', '16807'); + insert into advisor values('76270', '4034'); + insert into advisor values('42019', '78699'); + insert into advisor values('15726', '72553'); + insert into advisor values('97694', '22591'); + insert into advisor values('16849', '3335'); + insert into advisor values('11262', '77346'); + insert into advisor values('64222', '37687'); + insert into advisor values('91799', '81991'); + insert into advisor values('10727', '6569'); + insert into advisor values('64169', '16807'); + insert into advisor values('81031', '50885'); + insert into advisor values('18941', '34175'); + insert into advisor values('46981', '77346'); + insert into prereq values('376', '130'); + insert into prereq values('760', '169'); + insert into prereq values('403', '345'); + insert into prereq values('353', '647'); + insert into prereq values('629', '139'); + insert into prereq values('608', '864'); + insert into prereq values('158', '408'); + insert into prereq values('496', '489'); + insert into prereq values('241', '486'); + insert into prereq values('958', '969'); + insert into prereq values('591', '403'); + insert into prereq values('656', '659'); + insert into prereq values('864', '634'); + insert into prereq values('559', '500'); + insert into prereq values('209', '780'); + insert into prereq values('603', '735'); + insert into prereq values('804', '947'); + insert into prereq values('545', '947'); + insert into prereq values('353', '694'); + insert into prereq values('692', '761'); + insert into prereq values('774', '258'); + insert into prereq values('747', '927'); + insert into prereq values('496', '416'); + insert into prereq values('544', '702'); + insert into prereq values('608', '421'); + insert into prereq values('313', '731'); + insert into prereq values('258', '137'); + insert into prereq values('486', '371'); + insert into prereq values('224', '227'); + insert into prereq values('972', '958'); + insert into prereq values('359', '694'); + insert into prereq values('998', '319'); + insert into prereq values('392', '875'); + insert into prereq values('443', '852'); + insert into prereq values('324', '408'); + insert into prereq values('805', '774'); + insert into prereq values('242', '304'); + insert into prereq values('795', '123'); + insert into prereq values('169', '603'); + insert into prereq values('774', '769'); + insert into prereq values('958', '735'); + insert into prereq values('692', '426'); + insert into prereq values('958', '139'); + insert into prereq values('663', '998'); + insert into prereq values('586', '468'); + insert into prereq values('254', '877'); + insert into prereq values('802', '666'); + insert into prereq values('820', '371'); + insert into prereq values('902', '130'); + insert into prereq values('362', '242'); + insert into prereq values('359', '818'); + insert into prereq values('664', '489'); + insert into prereq values('276', '403'); + insert into prereq values('582', '487'); + insert into prereq values('694', '254'); + insert into prereq values('841', '818'); + insert into prereq values('852', '133'); + insert into prereq values('843', '324'); + insert into prereq values('810', '966'); + insert into prereq values('628', '340'); + insert into prereq values('242', '594'); + insert into prereq values('292', '399'); + insert into prereq values('618', '352'); + insert into prereq values('664', '704'); + insert into prereq values('793', '791'); + insert into prereq values('692', '774'); + insert into prereq values('324', '857'); + insert into prereq values('612', '123'); + insert into prereq values('991', '598'); + insert into prereq values('544', '254'); + insert into prereq values('852', '267'); + insert into prereq values('792', '814'); + insert into prereq values('133', '852'); + insert into prereq values('496', '443'); + insert into prereq values('338', '133'); + insert into prereq values('399', '664'); + insert into prereq values('747', '272'); + insert into prereq values('696', '101'); + insert into prereq values('403', '352'); + insert into prereq values('545', '318'); + insert into prereq values('634', '864'); + insert into prereq values('947', '494'); + insert into prereq values('647', '792'); + insert into prereq values('631', '681'); + insert into prereq values('236', '984'); + insert into prereq values('362', '696'); + insert into prereq values('875', '458'); + insert into prereq values('457', '544'); + insert into prereq values('704', '416'); + insert into prereq values('656', '559'); + insert into prereq values('272', '275'); + insert into prereq values('338', '852'); + insert into prereq values('780', '345'); + insert into prereq values('458', '696'); + insert into prereq values('239', '628'); + insert into prereq values('411', '401'); + insert into prereq values('830', '748'); + insert into prereq values('558', '130'); + insert into prereq values('877', '599'); + insert into prereq values('349', '612'); diff --git a/database/college_2/college_2.sqlite b/database/college_2/college_2.sqlite new file mode 100644 index 0000000000000000000000000000000000000000..240e1f2479d3f25b99faa7c61bb67d55d7c8ebfc --- /dev/null +++ b/database/college_2/college_2.sqlite @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb729920ad0b7f06d38a12f6f678307964acc7d3417af83d98c519c65c90d386 +size 2117632 diff --git a/database/college_2/link.txt b/database/college_2/link.txt new file mode 100644 index 0000000000000000000000000000000000000000..e6249d4a38b08a03187af0427612e583ea9727b0 --- /dev/null +++ b/database/college_2/link.txt @@ -0,0 +1 @@ +http://www.cs.dartmouth.edu/~cs61/Examples/ diff --git a/database/college_3/college_3.sqlite b/database/college_3/college_3.sqlite new file mode 100644 index 0000000000000000000000000000000000000000..fd8eb674ad895e0dd8e1dcf244ebcd0eb3204315 Binary files /dev/null and b/database/college_3/college_3.sqlite differ diff --git a/database/college_3/schema.sql b/database/college_3/schema.sql new file mode 100644 index 0000000000000000000000000000000000000000..5d31966acbb48decbaa34918baf468ce50dfcac3 --- /dev/null +++ b/database/college_3/schema.sql @@ -0,0 +1,575 @@ +create table Student ( + StuID INTEGER PRIMARY KEY, + LName VARCHAR(12), + Fname VARCHAR(12), + Age INTEGER, + Sex VARCHAR(1), + Major INTEGER, + Advisor INTEGER, + city_code VARCHAR(3) + ); + +create table Faculty ( + FacID INTEGER PRIMARY KEY, + Lname VARCHAR(15), + Fname VARCHAR(15), + Rank VARCHAR(15), + Sex VARCHAR(1), + Phone INTEGER, + Room VARCHAR(5), + Building VARCHAR(13) +); + +create table Department ( + DNO INTEGER PRIMARY KEY, + Division VARCHAR(2), + DName VARCHAR(25), + Room VARCHAR(5), + Building VARCHAR(13), + DPhone INTEGER +); + +create table Member_of ( + FacID INTEGER, + DNO INTEGER, + Appt_Type VARCHAR(15), + FOREIGN KEY(FacID) REFERENCES Faculty(FacID), + FOREIGN KEY(DNO) REFERENCES Department(DNO) +); + +create table Course ( + CID VARCHAR(7) PRIMARY KEY, + CName VARCHAR(40), + Credits INTEGER, + Instructor INTEGER, + Days VARCHAR(5), + Hours VARCHAR(11), + DNO INTEGER, + FOREIGN KEY(Instructor) REFERENCES Faculty(FacID), + FOREIGN KEY(DNO) REFERENCES Department(DNO) +); + +create table Minor_in ( + StuID INTEGER, + DNO INTEGER, + FOREIGN KEY(StuID) REFERENCES Student(StuID), + FOREIGN KEY(DNO) REFERENCES Department(DNO) +); + +create table Enrolled_in ( + StuID INTEGER, + CID VARCHAR(7), + Grade VARCHAR(2), + FOREIGN KEY(StuID) REFERENCES Student(StuID), + FOREIGN KEY(CID) REFERENCES Course(CID), + FOREIGN KEY(Grade) REFERENCES Gradeconversion(lettergrade) +); + +create table Gradeconversion ( + lettergrade VARCHAR(2) PRIMARY KEY, + gradepoint FLOAT +); + +insert into Minor_in values ( 1004, 520); +insert into Minor_in values ( 1005, 550); +insert into Minor_in values ( 1006, 050); +insert into Minor_in values ( 1007, 520); +insert into Minor_in values ( 1008, 550); +insert into Minor_in values ( 1014, 090); +insert into Minor_in values ( 1015, 140); +insert into Minor_in values ( 1016, 190); +insert into Minor_in values ( 1027, 530); +insert into Minor_in values ( 1031, 540); + + +insert into Enrolled_in values ( 1001, '550.681', 'A-'); +insert into Enrolled_in values ( 1001, '600.303', 'B'); +insert into Enrolled_in values ( 1001, '600.315', 'B+'); +insert into Enrolled_in values ( 1001, '600.337', 'A'); +insert into Enrolled_in values ( 1001, '600.461', 'B-'); +insert into Enrolled_in values ( 1001, '600.465', 'B'); +insert into Enrolled_in values ( 1002, '520.213', 'B+'); +insert into Enrolled_in values ( 1002, '600.211', 'C'); +insert into Enrolled_in values ( 1002, '600.303', 'C+'); +insert into Enrolled_in values ( 1002, '600.337', 'A'); +insert into Enrolled_in values ( 1002, '600.463', 'B'); +insert into Enrolled_in values ( 1002, '600.465', 'B+'); +insert into Enrolled_in values ( 1003, '600.333', 'B'); +insert into Enrolled_in values ( 1003, '600.337', 'B'); +insert into Enrolled_in values ( 1003, '600.415', 'B'); +insert into Enrolled_in values ( 1003, '600.461', 'B+'); +insert into Enrolled_in values ( 1003, '600.465', 'B'); +insert into Enrolled_in values ( 1004, '600.303', 'C-'); +insert into Enrolled_in values ( 1004, '600.415', 'C-'); +insert into Enrolled_in values ( 1004, '600.437', 'C-'); +insert into Enrolled_in values ( 1004, '600.445', 'A-'); +insert into Enrolled_in values ( 1004, '600.461', 'C'); +insert into Enrolled_in values ( 1004, '600.463', 'A+'); +insert into Enrolled_in values ( 1004, '600.465', 'A'); +insert into Enrolled_in values ( 1005, '600.103', 'A'); +insert into Enrolled_in values ( 1005, '600.107', 'C+'); +insert into Enrolled_in values ( 1005, '600.113', 'C'); +insert into Enrolled_in values ( 1005, '600.227', 'A'); +insert into Enrolled_in values ( 1005, '600.303', 'B'); +insert into Enrolled_in values ( 1006, '550.420', 'B'); +insert into Enrolled_in values ( 1006, '600.107', 'B+'); +insert into Enrolled_in values ( 1006, '600.227', 'B-'); +insert into Enrolled_in values ( 1006, '600.232', 'C-'); +insert into Enrolled_in values ( 1006, '600.303', 'A-'); +insert into Enrolled_in values ( 1006, '600.315', 'A'); +insert into Enrolled_in values ( 1007, '550.420', 'A'); +insert into Enrolled_in values ( 1007, '600.113', 'A-'); +insert into Enrolled_in values ( 1007, '600.227', 'C+'); +insert into Enrolled_in values ( 1007, '600.315', 'A'); +insert into Enrolled_in values ( 1007, '600.333', 'A-'); +insert into Enrolled_in values ( 1007, '600.337', 'C'); +insert into Enrolled_in values ( 1008, '600.415', 'A+'); +insert into Enrolled_in values ( 1008, '600.463', 'B'); +insert into Enrolled_in values ( 1008, '600.465', 'B'); +insert into Enrolled_in values ( 1008, '600.657', 'B'); +insert into Enrolled_in values ( 1008, '600.787', 'B'); +insert into Enrolled_in values ( 1009, '550.413', 'B+'); +insert into Enrolled_in values ( 1009, '550.471', 'C'); +insert into Enrolled_in values ( 1009, '550.620', 'A-'); +insert into Enrolled_in values ( 1009, '550.626', 'B'); +insert into Enrolled_in values ( 1009, '550.671', 'C'); +insert into Enrolled_in values ( 1009, '550.681', 'A'); +insert into Enrolled_in values ( 1009, '550.661', 'B-'); +insert into Enrolled_in values ( 1009, '550.631', 'A-'); +insert into Enrolled_in values ( 1010, '550.291', 'A'); +insert into Enrolled_in values ( 1010, '550.310', 'A'); +insert into Enrolled_in values ( 1010, '550.413', 'C+'); +insert into Enrolled_in values ( 1010, '550.420', 'A'); +insert into Enrolled_in values ( 1010, '550.471', 'A'); +insert into Enrolled_in values ( 1010, '600.107', 'B+'); +insert into Enrolled_in values ( 1011, '520.213', 'B'); +insert into Enrolled_in values ( 1011, '520.345', 'B'); +insert into Enrolled_in values ( 1011, '520.349', 'A'); +insert into Enrolled_in values ( 1011, '520.353', 'A-'); +insert into Enrolled_in values ( 1011, '550.420', 'B'); +insert into Enrolled_in values ( 1011, '600.415', 'B+'); +insert into Enrolled_in values ( 1012, '050.109', 'B-'); +insert into Enrolled_in values ( 1012, '050.203', 'B-'); +insert into Enrolled_in values ( 1012, '050.325', 'A-'); +insert into Enrolled_in values ( 1012, '600.107', 'A'); +insert into Enrolled_in values ( 1012, '600.315', 'B'); +insert into Enrolled_in values ( 1014, '600.107', 'A'); +insert into Enrolled_in values ( 1014, '600.227', 'A'); +insert into Enrolled_in values ( 1014, '600.232', 'A'); +insert into Enrolled_in values ( 1014, '600.315', 'A+'); +insert into Enrolled_in values ( 1014, '600.445', 'B'); +insert into Enrolled_in values ( 1014, '600.461', 'B'); +insert into Enrolled_in values ( 1014, '600.463', 'B'); +insert into Enrolled_in values ( 1015, '550.420', 'A'); +insert into Enrolled_in values ( 1015, '600.227', 'A+'); +insert into Enrolled_in values ( 1015, '600.303', 'A'); +insert into Enrolled_in values ( 1015, '600.315', 'C-'); +insert into Enrolled_in values ( 1015, '600.333', 'A'); +insert into Enrolled_in values ( 1016, '050.109', 'B-'); +insert into Enrolled_in values ( 1016, '050.203', 'D-'); +insert into Enrolled_in values ( 1016, '050.325', 'A'); +insert into Enrolled_in values ( 1016, '050.821', 'A'); +insert into Enrolled_in values ( 1016, '550.420', 'A-'); +insert into Enrolled_in values ( 1016, '600.107', 'B+'); +insert into Enrolled_in values ( 1016, '600.315', 'B-'); +insert into Enrolled_in values ( 1017, '050.427', 'B'); +insert into Enrolled_in values ( 1017, '050.670', 'B'); +insert into Enrolled_in values ( 1017, '050.802', 'C'); +insert into Enrolled_in values ( 1017, '550.681', 'B'); +insert into Enrolled_in values ( 1017, '600.109', 'A-'); +insert into Enrolled_in values ( 1017, '600.461', 'A'); +insert into Enrolled_in values ( 1017, '600.465', 'C'); +insert into Enrolled_in values ( 1018, '520.213', 'A-'); +insert into Enrolled_in values ( 1018, '600.211', 'A'); +insert into Enrolled_in values ( 1018, '600.303', 'A'); +insert into Enrolled_in values ( 1018, '600.337', 'C-'); +insert into Enrolled_in values ( 1018, '600.463', 'B'); +insert into Enrolled_in values ( 1018, '600.465', 'B'); +insert into Enrolled_in values ( 1019, '600.103', 'B'); +insert into Enrolled_in values ( 1019, '600.107', 'B'); +insert into Enrolled_in values ( 1019, '600.113', 'D+'); +insert into Enrolled_in values ( 1019, '600.227', 'A'); +insert into Enrolled_in values ( 1019, '600.303', 'A'); +insert into Enrolled_in values ( 1020, '600.333', 'A'); +insert into Enrolled_in values ( 1020, '600.337', 'A'); +insert into Enrolled_in values ( 1020, '600.415', 'A'); +insert into Enrolled_in values ( 1020, '600.461', 'A'); +insert into Enrolled_in values ( 1020, '600.465', 'A'); +insert into Enrolled_in values ( 1021, '600.303', 'B-'); +insert into Enrolled_in values ( 1021, '600.303', 'B'); +insert into Enrolled_in values ( 1021, '600.415', 'B'); +insert into Enrolled_in values ( 1021, '600.437', 'B'); +insert into Enrolled_in values ( 1021, '600.437', 'B'); +insert into Enrolled_in values ( 1021, '600.445', 'B-'); +insert into Enrolled_in values ( 1021, '600.445', 'C'); +insert into Enrolled_in values ( 1021, '600.463', 'A'); +insert into Enrolled_in values ( 1021, '600.463', 'B'); +insert into Enrolled_in values ( 1022, '550.420', 'B'); +insert into Enrolled_in values ( 1022, '550.420', 'B+'); +insert into Enrolled_in values ( 1022, '600.107', 'A'); +insert into Enrolled_in values ( 1022, '600.227', 'A'); +insert into Enrolled_in values ( 1022, '600.227', 'A'); +insert into Enrolled_in values ( 1022, '600.232', 'B'); +insert into Enrolled_in values ( 1022, '600.303', 'B'); +insert into Enrolled_in values ( 1022, '600.315', 'D'); +insert into Enrolled_in values ( 1022, '600.461', 'A'); +insert into Enrolled_in values ( 1023, '600.113', 'A-'); +insert into Enrolled_in values ( 1023, '600.315', 'B'); +insert into Enrolled_in values ( 1023, '600.333', 'B'); +insert into Enrolled_in values ( 1023, '600.337', 'B+'); +insert into Enrolled_in values ( 1023, '600.463', 'A'); +insert into Enrolled_in values ( 1023, '600.465', 'A'); +insert into Enrolled_in values ( 1023, '600.657', 'B'); +insert into Enrolled_in values ( 1023, '600.787', 'B'); +insert into Enrolled_in values ( 1024, '550.291', 'B'); +insert into Enrolled_in values ( 1024, '550.413', 'C'); +insert into Enrolled_in values ( 1024, '550.471', 'A-'); +insert into Enrolled_in values ( 1024, '550.620', 'A'); +insert into Enrolled_in values ( 1024, '550.626', 'B'); +insert into Enrolled_in values ( 1024, '550.671', 'B'); +insert into Enrolled_in values ( 1024, '550.681', 'B'); +insert into Enrolled_in values ( 1024, '600.415', 'B'); +insert into Enrolled_in values ( 1025, '520.213', 'A'); +insert into Enrolled_in values ( 1025, '520.345', 'A+'); +insert into Enrolled_in values ( 1025, '550.310', 'A'); +insert into Enrolled_in values ( 1025, '550.413', 'A'); +insert into Enrolled_in values ( 1025, '550.420', 'C'); +insert into Enrolled_in values ( 1025, '550.471', 'B'); +insert into Enrolled_in values ( 1025, '600.107', 'B'); +insert into Enrolled_in values ( 1026, '520.349', 'A'); +insert into Enrolled_in values ( 1026, '520.353', 'A'); +insert into Enrolled_in values ( 1026, '600.303', 'A'); +insert into Enrolled_in values ( 1026, '600.437', 'A'); +insert into Enrolled_in values ( 1026, '600.445', 'A'); +insert into Enrolled_in values ( 1026, '600.463', 'B-'); +insert into Enrolled_in values ( 1027, '600.107', 'B'); +insert into Enrolled_in values ( 1027, '600.227', 'B'); +insert into Enrolled_in values ( 1027, '600.232', 'B'); +insert into Enrolled_in values ( 1027, '600.303', 'B'); +insert into Enrolled_in values ( 1027, '600.315', 'B-'); +insert into Enrolled_in values ( 1027, '600.461', 'B-'); +insert into Enrolled_in values ( 1027, '600.463', 'B'); +insert into Enrolled_in values ( 1028, '550.420', 'B+'); +insert into Enrolled_in values ( 1028, '600.227', 'A'); +insert into Enrolled_in values ( 1028, '600.315', 'A+'); +insert into Enrolled_in values ( 1028, '600.333', 'A'); +insert into Enrolled_in values ( 1028, '600.337', 'A+'); +insert into Enrolled_in values ( 1029, '550.413', 'C-'); +insert into Enrolled_in values ( 1029, '550.471', 'A'); +insert into Enrolled_in values ( 1029, '550.620', 'B-'); +insert into Enrolled_in values ( 1029, '550.671', 'A-'); +insert into Enrolled_in values ( 1029, '600.113', 'B-'); +insert into Enrolled_in values ( 1029, '600.463', 'A+'); +insert into Enrolled_in values ( 1030, '520.345', 'B'); +insert into Enrolled_in values ( 1030, '550.291', 'B'); +insert into Enrolled_in values ( 1030, '550.310', 'B-'); +insert into Enrolled_in values ( 1030, '550.413', 'B-'); +insert into Enrolled_in values ( 1030, '550.420', 'B'); +insert into Enrolled_in values ( 1030, '550.471', 'B+'); +insert into Enrolled_in values ( 1030, '600.107', 'B'); +insert into Enrolled_in values ( 1031, '520.213', 'B+'); +insert into Enrolled_in values ( 1031, '520.349', 'B'); +insert into Enrolled_in values ( 1031, '520.353', 'C'); +insert into Enrolled_in values ( 1031, '600.437', 'A+'); +insert into Enrolled_in values ( 1032, '550.420', 'A-'); +insert into Enrolled_in values ( 1032, '550.420', 'D-'); +insert into Enrolled_in values ( 1032, '600.232', 'A-'); +insert into Enrolled_in values ( 1032, '600.303', 'A'); +insert into Enrolled_in values ( 1032, '600.315', 'A'); +insert into Enrolled_in values ( 1033, '600.113', 'A'); +insert into Enrolled_in values ( 1033, '600.227', 'A'); +insert into Enrolled_in values ( 1033, '600.315', 'A'); +insert into Enrolled_in values ( 1033, '600.333', 'A'); +insert into Enrolled_in values ( 1033, '600.337', 'B'); +insert into Enrolled_in values ( 1034, '050.109', 'B+'); +insert into Enrolled_in values ( 1034, '050.203', 'B'); +insert into Enrolled_in values ( 1034, '050.325', 'B'); +insert into Enrolled_in values ( 1034, '600.107', 'B+'); +insert into Enrolled_in values ( 1034, '600.315', 'B'); +insert into Enrolled_in values ( 1035, '050.381', 'B-'); +insert into Enrolled_in values ( 1035, '050.427', 'A-'); +insert into Enrolled_in values ( 1035, '050.670', 'B'); +insert into Enrolled_in values ( 1035, '050.802', 'D'); +insert into Enrolled_in values ( 1035, '050.821', 'A'); +insert into Enrolled_in values ( 1035, '600.109', 'B-'); + + +insert into Gradeconversion values ('A+', 4.0); +insert into Gradeconversion values ('A', 4.0); +insert into Gradeconversion values ('A-', 3.7); +insert into Gradeconversion values ('B+', 3.3); +insert into Gradeconversion values ('B', 3.0); +insert into Gradeconversion values ('B-', 2.7); +insert into Gradeconversion values ('C+', 2.3); +insert into Gradeconversion values ('C', 2.0); +insert into Gradeconversion values ('C-', 1.7); +insert into Gradeconversion values ('D+', 1.3); +insert into Gradeconversion values ('D', 1.0); +insert into Gradeconversion values ('D-', 0.7); +insert into Gradeconversion values ('F', 0.0); + + +insert into Faculty values ( 1082, 'Giuliano', 'Mark', 'Instructor', 'M', 2424, '224', 'NEB'); +insert into Faculty values ( 1121, 'Goodrich', 'Michael', 'Professor', 'M', 3593, '219', 'NEB'); +insert into Faculty values ( 1148, 'Masson', 'Gerald', 'Professor', 'M', 3402, '224B', 'NEB'); +insert into Faculty values ( 1193, 'Jones', 'Stacey', 'Instructor', 'F', 3550, '224', 'NEB'); +insert into Faculty values ( 2192, 'Yarowsky', 'David', 'AsstProf', 'M', 6587, '324', 'NEB'); +insert into Faculty values ( 3457, 'Smith', 'Scott', 'AssocProf', 'M', 1035, '318', 'NEB'); +insert into Faculty values ( 4230, 'Houlahan', 'Joanne', 'Instructor', 'F', 1260, '328', 'NEB'); +insert into Faculty values ( 6112, 'Beach', 'Louis', 'Instructor', 'M', 1838, '207', 'NEB'); +insert into Faculty values ( 7712, 'Awerbuch', 'Baruch', 'Professor', 'M', 2105, '220', 'NEB'); +insert into Faculty values ( 7792, 'Brill', 'Eric', 'AsstProf', 'M', 2303, '324B', 'NEB'); +insert into Faculty values ( 7723, 'Taylor', 'Russell', 'Professor', 'M', 2435, '317', 'NEB'); +insert into Faculty values ( 8114, 'Angelopoulou', 'Ellie', 'Instructor', 'F', 2152, '316', 'NEB'); +insert into Faculty values ( 8423, 'Kumar', 'Subodh', 'AsstProf', 'M', 2522, '218', 'NEB'); +insert into Faculty values ( 8721, 'Wolff', 'Lawrence', 'AssocProf', 'M', 2342, '316', 'NEB'); +insert into Faculty values ( 8741, 'Salzberg', 'Steven', 'AssocProf', 'M', 2641, '324A', 'NEB'); +insert into Faculty values ( 8918, 'Amir', 'Yair', 'AsstProf', 'M', 2672, '308', 'NEB'); +insert into Faculty values ( 9172, 'Kosaraju', 'Rao', 'Professor', 'M', 2757, '319', 'NEB'); +insert into Faculty values ( 9826, 'Delcher', 'Arthur', 'Instructor', 'M', 2956, '329', 'NEB'); +insert into Faculty values ( 1172, 'Runolfsson', 'Thordur', 'AssocProf', 'M', 3121, '119', 'Barton'); +insert into Faculty values ( 1177, 'Naiman', 'Daniel', 'Professor', 'M', 3571, '288', 'Krieger'); +insert into Faculty values ( 1823, 'Davidson', 'Frederic', 'Professor', 'M', 5629, '119', 'Barton'); +insert into Faculty values ( 2028, 'Brody', 'William', 'Professor', 'M', 6073, '119', 'Barton'); +insert into Faculty values ( 2119, 'Meyer', 'Gerard', 'Professor', 'M', 6350, '119', 'Barton'); +insert into Faculty values ( 2291, 'Scheinerman', 'Edward', 'Professor', 'M', 6654, '288', 'Krieger'); +insert into Faculty values ( 2311, 'Priebe', 'Carey', 'AsstProf', 'M', 6953, '288', 'Krieger'); +insert into Faculty values ( 2738, 'Fill', 'James', 'Professor', 'M', 8209, '288', 'Krieger'); +insert into Faculty values ( 2881, 'Goldman', 'Alan', 'Professor', 'M', 8335, '288', 'Krieger'); +insert into Faculty values ( 4432, 'Burzio', 'Luigi', 'Professor', 'M', 1813, '288', 'Krieger'); +insert into Faculty values ( 5718, 'Frank', 'Robert', 'AsstProf', 'M', 1751, '288', 'Krieger'); +insert into Faculty values ( 6182, 'Cheng', 'Cheng', 'AsstProf', 'M', 1856, '288', 'Krieger'); +insert into Faculty values ( 6191, 'Kaplan', 'Alexander', 'Professor', 'M', 1825, '119', 'Barton'); +insert into Faculty values ( 6330, 'Byrne', 'William', 'Instructor', 'M', 1691, '119', 'Barton'); +insert into Faculty values ( 6541, 'Han', 'Shih-Ping', 'Professor', 'M', 1914, '288', 'Krieger'); +insert into Faculty values ( 6910, 'Smolensky', 'Paul', 'Professor', 'M', 2072, '288', 'Krieger'); +insert into Faculty values ( 6925, 'Iglesias', 'Pablo', 'AsstProf', 'M', 2021, '119', 'Barton'); +insert into Faculty values ( 7134, 'Goutsias', 'John', 'Professor', 'M', 2184, '119', 'Barton'); +insert into Faculty values ( 7231, 'Rugh', 'Wilson', 'Professor', 'M', 2191, '119', 'Barton'); +insert into Faculty values ( 7271, 'Jelinek', 'Frederick', 'Professor', 'M', 2890, '119', 'Barton'); +insert into Faculty values ( 7506, 'Westgate', 'Charles', 'Professor', 'M', 2932, '119', 'Barton'); +insert into Faculty values ( 8102, 'James', 'Lancelot', 'AsstProf', 'M', 2792, '288', 'Krieger'); +insert into Faculty values ( 8118, 'Weinert', 'Howard', 'Professor', 'M', 3272, '119', 'Barton'); +insert into Faculty values ( 8122, 'Wierman', 'John', 'Professor', 'M', 3392,'288', 'Krieger'); +insert into Faculty values ( 8722, 'Cauwenberghs', 'Gert', 'AsstProf', 'M', 1372, '119', 'Barton'); +insert into Faculty values ( 8723, 'Andreou', 'Andreas', 'Professor', 'M', 1402, '119', 'Barton'); +insert into Faculty values ( 8772, 'Cowen', 'Lenore', 'AsstProf', 'F', 2870, '288', 'Krieger'); +insert into Faculty values ( 8791, 'McCloskey', 'Michael', 'Professor', 'M', 3440, '288', 'Krieger'); +insert into Faculty values ( 8989, 'Brent', 'Michael', 'AsstProf', 'M', 9373, '288', 'Krieger'); +insert into Faculty values ( 9011, 'Rapp', 'Brenda', 'AsstProf', 'F', 2032, '288', 'Krieger'); +insert into Faculty values ( 9191, 'Collins', 'Oliver', 'AssocProf', 'M', 5427, '119', 'Barton'); +insert into Faculty values ( 9199, 'Hughes', 'Brian', 'AssocProf', 'M', 5666, '119', 'Barton'); +insert into Faculty values ( 9210, 'Joseph', 'Richard', 'Professor', 'M', 5996, '119', 'Barton'); +insert into Faculty values ( 9514, 'Prince', 'Jerry', 'AssocProf', 'M', 5106, '119', 'Barton'); +insert into Faculty values ( 9823, 'Pang', 'Jong-Shi', 'Professor', 'M', 4366, '288', 'Krieger'); +insert into Faculty values ( 9824, 'Glaser', 'Robert', 'Instructor', 'M', 4396, '119', 'Barton'); +insert into Faculty values ( 9811, 'Wu', 'Colin', 'AsstProf', 'M', 2906, '288', 'Krieger'); +insert into Faculty values ( 9643, 'Legendre', 'Geraldine', 'AssocProf', 'F', 8972, '288', 'Krieger'); +insert into Faculty values ( 9379, 'Khurgin', 'Jacob', 'Professor', 'M', 1060, '119', 'Barton'); +insert into Faculty values ( 9922, 'Hall', 'Leslie', 'AsstProf', 'F', 7332, '288', 'Krieger'); + + +insert into Department values ( 010, 'AS', 'History of Art', '268', 'Mergenthaler', 7117); +insert into Department values ( 020, 'AS', 'Biology', '144', 'Mudd', 7330); +insert into Department values ( 030, 'AS', 'Chemistry', '113', 'Remsen', 7429); +insert into Department values ( 040, 'AS', 'Classics', '121', 'Gilman', 7556); +insert into Department values ( 050, 'AS', 'Cognitive Science', '381', 'Krieger', 7119); +insert into Department values ( 060, 'AS', 'English', '146', 'Gilman', 7544); +insert into Department values ( 070, 'AS', 'Anthropology', '404B', 'Macaulay', 7272); +insert into Department values ( 090, 'AS', 'German', '245', 'Gilman', 7508); +insert into Department values ( 100, 'AS', 'History', '312', 'Gilman', 7575); +insert into Department values ( 110, 'AS', 'Mathematics', '404', 'Krieger', 7399); +insert into Department values ( 130, 'AS', 'Near Eastern Studies', '128', 'Gilman', 7499); +insert into Department values ( 140, 'AS', 'History of Science', '234', 'Gilman', 7501); +insert into Department values ( 150, 'AS', 'Philosophy', '347', 'Gilman', 7524); +insert into Department values ( 170, 'AS', 'Physics and Astronomy', '366', 'Bloomberg', 7347); +insert into Department values ( 180, 'AS', 'Economics', '440', 'Mergenthaler', 7601); +insert into Department values ( 190, 'AS', 'Political Science', '338', 'Mergenthaler', 7540); +insert into Department values ( 200, 'AS', 'Psychology', '223', 'Ames', 7055); +insert into Department values ( 340, 'AS', 'French', '225', 'Gilman', 7227); +insert into Department values ( 350, 'AS', 'Hispanic/Italian Studies', '221', 'Gilman', 7226); +insert into Department values ( 520, 'EN', 'ECE', '105', 'Barton', 7033); +insert into Department values ( 530, 'EN', 'Mechanical Engineering', '122', 'Latrobe', 7132); +insert into Department values ( 540, 'EN', 'Chemical Engineering', '24', 'NEB', 7170); +insert into Department values ( 550, 'EN', 'Mathematical Sciences', '221', 'Maryland', 7195); +insert into Department values ( 560, 'EN', 'Civil Engineering', '206', 'Latrobe', 8680); +insert into Department values ( 580, 'EN', 'Biomedical Engineering', '144', 'NEB', 8482); +insert into Department values ( 600, 'EN', 'Computer Science', '224', 'NEB', 8577); + + +insert into Member_of values (7792, 600, 'Primary'); +insert into Member_of values (9210, 520, 'Primary'); +insert into Member_of values (9811, 550, 'Primary'); +insert into Member_of values (9643, 050, 'Primary'); +insert into Member_of values (9379, 520, 'Primary'); +insert into Member_of values (8918, 600, 'Primary'); +insert into Member_of values (7712, 600, 'Primary'); +insert into Member_of values (1121, 600, 'Primary'); +insert into Member_of values (9172, 600, 'Primary'); +insert into Member_of values (8423, 600, 'Primary'); +insert into Member_of values (1148, 600, 'Primary'); +insert into Member_of values (8741, 600, 'Primary'); +insert into Member_of values (3457, 600, 'Primary'); +insert into Member_of values (7723, 600, 'Primary'); +insert into Member_of values (8721, 600, 'Primary'); +insert into Member_of values (2192, 600, 'Primary'); +insert into Member_of values (8114, 600, 'Primary'); +insert into Member_of values (6112, 600, 'Primary'); +insert into Member_of values (9826, 600, 'Primary'); +insert into Member_of values (1193, 600, 'Primary'); +insert into Member_of values (1082, 600, 'Primary'); +insert into Member_of values (4230, 600, 'Primary'); +insert into Member_of values (8989, 600, 'Secondary'); +insert into Member_of values (7271, 600, 'Secondary'); +insert into Member_of values (8721, 520, 'Secondary'); +insert into Member_of values (8741, 050, 'Secondary'); +insert into Member_of values (7271, 050, 'Secondary'); +insert into Member_of values (6182, 550, 'Primary'); +insert into Member_of values (8772, 550, 'Primary'); +insert into Member_of values (2738, 550, 'Primary'); +insert into Member_of values (2881, 550, 'Primary'); +insert into Member_of values (9922, 550, 'Primary'); +insert into Member_of values (6541, 550, 'Primary'); +insert into Member_of values (8102, 550, 'Primary'); +insert into Member_of values (1177, 550, 'Primary'); +insert into Member_of values (9823, 550, 'Primary'); +insert into Member_of values (2311, 550, 'Primary'); +insert into Member_of values (2291, 550, 'Primary'); +insert into Member_of values (8122, 550, 'Primary'); +insert into Member_of values (8989, 050, 'Primary'); +insert into Member_of values (4432, 050, 'Primary'); +insert into Member_of values (5718, 050, 'Primary'); +insert into Member_of values (8791, 050, 'Primary'); +insert into Member_of values (9011, 050, 'Primary'); +insert into Member_of values (6910, 050, 'Primary'); +insert into Member_of values (8723, 520, 'Primary'); +insert into Member_of values (2028, 520, 'Primary'); +insert into Member_of values (8722, 520, 'Primary'); +insert into Member_of values (9191, 520, 'Primary'); +insert into Member_of values (1823, 520, 'Primary'); +insert into Member_of values (7134, 520, 'Primary'); +insert into Member_of values (9199, 520, 'Primary'); +insert into Member_of values (6925, 520, 'Primary'); +insert into Member_of values (7271, 520, 'Primary'); +insert into Member_of values (6191, 520, 'Primary'); +insert into Member_of values (2119, 520, 'Primary'); +insert into Member_of values (9514, 520, 'Primary'); +insert into Member_of values (7231, 520, 'Primary'); +insert into Member_of values (1172, 520, 'Primary'); +insert into Member_of values (8118, 520, 'Primary'); +insert into Member_of values (7506, 520, 'Primary'); +insert into Member_of values (6330, 520, 'Primary'); +insert into Member_of values (9824, 520, 'Primary'); + + +insert into Course values ( '600.101', 'COMPUTER LITERACY', 3, 6112, 'MTW', '3',600); +insert into Course values ( '600.103', 'INTRODUCTION TO COMPUTER SCIENCE', 1, 4230, 'Th', '4',600); +insert into Course values ( '600.107', 'INTRO TO PROGRAMMING IN JAVA', 3, 1193, 'MTW', '3',600); +insert into Course values ( '600.109', 'INTRO TO PROGRAMMING IN C/C++', 3, 4230, 'MTW', '12',600); +insert into Course values ( '600.113', 'EXPLORING THE INTERNET', 3, 6112, 'MTW', '4',600); +insert into Course values ( '600.121', 'JAVA PROGRAMMING', 3, 6112, 'ThF', '10:30-12',600); +insert into Course values ( '600.211', 'UNIX SYSTEMS PROGRAMMING', 3, 6112, 'ThF', '1-2:15',600); +insert into Course values ( '600.227', 'DATA STRUCTURES in JAVA', 3, 1121, 'MTW', '9',600); +insert into Course values ( '600.232', 'MULTIMEDIA COMPUTING', 3, 9826, 'MW', '1-2:30',600); +insert into Course values ( '600.271', 'COMPUTATIONAL MODELS', 3, 9172, 'MTW', '1',600); +insert into Course values ( '600.303', 'SUPERCOMPUTING', 1, 9826, 'W', '4-6:20',600); +insert into Course values ( '600.315', 'DATABASE SYSTEMS', 3, 2192, 'ThF', '2:30-4',600); +insert into Course values ( '600.333', 'COMPUTER SYSTEM FUNDAMENTALS', 3, 1148, 'MTW', '8',600); +insert into Course values ( '600.337', 'DISTRIBUTED SYSTEMS', 3, 8918, 'M', '3',600); +insert into Course values ( '600.363', 'INTRODUCTION TO ALGORITHMS', 3, 7712, 'MTW', '9',600); +insert into Course values ( '600.415', 'DATABASE SYSTEMS', 3, 2192, 'ThF', '2:30-4',600); +insert into Course values ( '600.433', 'COMPUTER SYSTEMS', 3, 1148, 'MTW', '8',600); +insert into Course values ( '600.437', 'DISTRIBUTED SYSTEMS', 3, 8918, 'M', '3',600); +insert into Course values ( '600.445', 'QUANTITATIVE MEDICAL COMPUTING', 3, 7723, 'ThF', '1-2:15',600); +insert into Course values ( '600.461', 'COMPUTER VISION', 3, 8114, 'MTW', '1',600); +insert into Course values ( '600.463', 'ALGORITHMS I', 3, 7712, 'MTW', '9',600); +insert into Course values ( '600.465', 'INTRO TO NATURAL LANGUAGE PROCESSING', 3, 7792, 'MTW', '2',600); +insert into Course values ( '600.509', 'COMPUTER SCIENCE INTERNSHIP', 3, 1121, 'M', '1',600); +insert into Course values ( '600.601', 'COMPUTER SCIENCE SEMINAR', 1, 6191, 'ThF', '10:30-12',600); +insert into Course values ( '600.657', 'HIGH PERFORMANCE GRAPHICS AND MODELING', 3, 8423, 'M', '4-5:30',600); +insert into Course values ( '600.787', 'SEMINAR ON COMPUTATIONAL GEOMETRY', 3, 1121, 'Th', '2',600); +insert into Course values ( '550.111', 'STATISTICAL ANALYSIS', 4, 2311, 'MTW', '12',550); +insert into Course values ( '550.171', 'DISCRETE MATHEMATICS', 4, 8772, 'MTW', '11',550); +insert into Course values ( '500.203', 'ACCOUNTING I', 3, 9823, 'T', '6:15-8:45',550); +insert into Course values ( '500.204', 'ACCOUNTING II', 3, 9823, 'Th', '6:15-8:45',550); +insert into Course values ( '500.205', 'BUSINESS LAW I', 3, 8791, 'W', '6:15-8:45',550); +insert into Course values ( '500.206', 'BUSINESS LAW II', 3, 8791, 'M', '6:15-8:45',550); +insert into Course values ( '550.291', 'LINEAR ALGEBRA AND DIFFERENTIAL EQNS', 4, 6541, 'MTW', '9',550); +insert into Course values ( '550.310', 'PROBABILITY AND STATISTICS', 4, 8102, 'MTW', '10',550); +insert into Course values ( '550.361', 'INTRODUCTION TO OPTIMIZATION', 4, 2881, 'MTW', '2',550); +insert into Course values ( '550.413', 'APPLIED STATISTICS AND DATA ANALYSIS', 4, 1177, 'MTW', '11',550); +insert into Course values ( '550.420', 'INTRODUCTION TO PROBABILITY', 4, 2738, 'MTW', '1',550); +insert into Course values ( '550.471', 'COMBINATORIAL ANALYSIS', 4, 8772, 'MTW', '12',550); +insert into Course values ( '550.620', 'PROBABILITY THEORY I', 3, 2738, 'MTW', '2',550); +insert into Course values ( '550.626', 'STOCHASTIC PROCESSES II', 3, 8102, 'MTW', '1',550); +insert into Course values ( '550.631', 'STATISTICAL INFERENCE', 3, 6182, 'MTW', '3',550); +insert into Course values ( '550.661', 'FOUNDATIONS OF OPTIMIZATION', 3, 9823, 'MTW', '10',550); +insert into Course values ( '550.671', 'COMBINATORIAL ANALYSIS', 3, 8772, 'MTW', '12',550); +insert into Course values ( '550.681', 'NUMERICAL ANALYSIS', 3, 6541, 'MTW', '11',550); +insert into Course values ( '550.721', 'PERCOLATION THEORY', 3, 8122, 'MTW', '9',550); +insert into Course values ( '550.750', 'TOPICS IN OPERATIONS RESEARCH', 3, 9922, 'MW', '3-4:30',550); +insert into Course values ( '550.790', 'TOPICS IN APPLIED MATH', 2, 2881, 'MT', '4:30-6',550); +insert into Course values ( '520.137', 'INTRODUCTION TO ECE', 3, 8723, 'MTW', '11',520); +insert into Course values ( '520.213', 'CIRCUITS', 4, 9210, 'MTW', '2',520); +insert into Course values ( '520.219', 'FIELDS, MATTER AND WAVES', 3, 9210, 'MTW', '3',520); +insert into Course values ( '520.325', 'INTEGRATED ELECTRONICS', 3, 6191, 'MTW', '3',520); +insert into Course values ( '520.345', 'ECE LABORATORY', 3, 1823, 'W', '2',520); +insert into Course values ( '520.349', 'MICROPROCESSOR LAB I', 3, 9824, 'Th', '8',520); +insert into Course values ( '520.353', 'CONTROL SYSTEMS', 3, 6925, 'MTW', '10',520); +insert into Course values ( '520.401', 'BASIC COMMUNICATIONS', 3, 6191, 'MTW', '1',520); +insert into Course values ( '520.410', 'FIBER OPTICS AND PHOTONICS', 3, 6191, 'MTW', '1',520); +insert into Course values ( '520.419', 'ITERATIVE ALGORITHMS', 3, 2119, 'MT', '4-5:15',520); +insert into Course values ( '520.421', 'INTRODUCTION TO NON-LINEAR SYSTEMS', 3, 7231, 'MTW', '9',520); +insert into Course values ( '520.432', 'TOPICS IN MEDICAL IMAGING SYSTEMS', 3, 9514, 'TTh', '8:30-10',520); +insert into Course values ( '520.435', 'DIGITAL SIGNAL PROCESSING', 4, 8118, 'MTW', '11',520); +insert into Course values ( '520.475', 'PROCESSING AND RECOGNITION OF SPEECH', 3, 6330, 'TW', '2-3:30',520); +insert into Course values ( '520.490', 'ANALOG AND DIGITAL VLSI SYSTEMS', 3, 8722, 'ThF', '10:30-12',520); +insert into Course values ( '520.603', 'ELECTROMAGNETIC WAVES', 4, 9210, 'Th', '1-4:30',520); +insert into Course values ( '520.605', 'SOLID STATE PHYSICS', 3, 9379, 'Tu', '1-4',520); +insert into Course values ( '520.609', 'NONLINEAR TECHNICAL IMAGE PROCESSING', 3, 7134, 'Th', '1-4',520); +insert into Course values ( '520.651', 'RANDOM SIGNAL ANALYSIS', 3, 9514, 'ThF', '10:30-12',520); +insert into Course values ( '050.102', 'LANGUAGE AND MIND', 3, 4432, 'MTW', '10',050); +insert into Course values ( '050.109', 'MIND, BRAIN, COMPUTERS', 3, 6910, 'MW', '2-3:15',050); +insert into Course values ( '050.203', 'COGNITIVE NEUROSCIENCE', 4, 9011, 'MT', '3:30-4:45',050); +insert into Course values ( '050.325', 'SOUND STRUCTURES IN NATURAL LANGUAGE', 3, 4432, 'T', '10-12',050); +insert into Course values ( '050.370', 'FORMAL METHODS IN COGNITIVE SCIENCE', 3, 6910, 'MW', '11:30',050); +insert into Course values ( '050.381', 'LANGUAGE DEVELOPMENT', 3, 8989, 'T', '1-3',050); +insert into Course values ( '050.427', 'THE HISTORY OF ROMANCE LANGUAGES', 3, 4432, 'W', '1-3',050); +insert into Course values ( '050.670', 'FORMAL METHODS IN COGNITIVE SCIENCE', 3, 4432, 'MW', '11:30-12:45',050); +insert into Course values ( '050.802', 'RESEARCH SEMINAR IN COGNITIVE PROCESSES', 1, 9011, 'W', '1-3',050); +insert into Course values ( '050.821', 'COMP. MODELS OF SENTENCE PROCESSING', 3, 5718, 'M', '1-4',050); + +insert into Student values ( 1001, 'Smith', 'Linda', 18, 'F', 600, 1121,'BAL'); + insert into Student values ( 1002, 'Kim', 'Tracy', 19, 'F', 600, 7712,'HKG'); + insert into Student values ( 1003, 'Jones', 'Shiela', 21, 'F', 600, 7792,'WAS'); + insert into Student values ( 1004, 'Kumar', 'Dinesh', 20, 'M', 600, 8423,'CHI'); + insert into Student values ( 1005, 'Gompers', 'Paul', 26, 'M', 600, 1121,'YYZ'); + insert into Student values ( 1006, 'Schultz', 'Andy', 18, 'M', 600, 1148,'BAL'); + insert into Student values ( 1007, 'Apap', 'Lisa', 18, 'F', 600, 8918,'PIT'); + insert into Student values ( 1008, 'Nelson', 'Jandy', 20, 'F', 600, 9172,'BAL'); + insert into Student values ( 1009, 'Tai', 'Eric', 19, 'M', 600, 2192,'YYZ'); + insert into Student values ( 1010, 'Lee', 'Derek', 17, 'M', 600, 2192,'HOU'); + insert into Student values ( 1011, 'Adams', 'David', 22, 'M', 600, 1148,'PHL'); + insert into Student values ( 1012, 'Davis', 'Steven', 20, 'M', 600, 7723,'PIT'); + insert into Student values ( 1014, 'Norris', 'Charles', 18, 'M', 600, 8741, 'DAL'); + insert into Student values ( 1015, 'Lee', 'Susan', 16, 'F', 600, 8721,'HKG'); + insert into Student values ( 1016, 'Schwartz', 'Mark', 17, 'M', 600, 2192,'DET'); + insert into Student values ( 1017, 'Wilson', 'Bruce', 27, 'M', 600, 1148,'LON'); + insert into Student values ( 1018, 'Leighton', 'Michael', 20, 'M', 600, 1121, 'PIT'); + insert into Student values ( 1019, 'Pang', 'Arthur', 18, 'M', 600, 2192,'WAS'); + insert into Student values ( 1020, 'Thornton', 'Ian', 22, 'M', 520, 7271,'NYC'); + insert into Student values ( 1021, 'Andreou', 'George', 19, 'M', 520, 8722, 'NYC'); + insert into Student values ( 1022, 'Woods', 'Michael', 17, 'M', 540, 8722,'PHL'); + insert into Student values ( 1023, 'Shieber', 'David', 20, 'M', 520, 8722,'NYC'); + insert into Student values ( 1024, 'Prater', 'Stacy', 18, 'F', 540, 7271,'BAL'); + insert into Student values ( 1025, 'Goldman', 'Mark', 18, 'M', 520, 7134,'PIT'); + insert into Student values ( 1026, 'Pang', 'Eric', 19, 'M', 520, 7134,'HKG'); + insert into Student values ( 1027, 'Brody', 'Paul', 18, 'M', 520, 8723,'LOS'); + insert into Student values ( 1028, 'Rugh', 'Eric', 20, 'M', 550, 2311,'ROC'); + insert into Student values ( 1029, 'Han', 'Jun', 17, 'M', 100, 2311,'PEK'); + insert into Student values ( 1030, 'Cheng', 'Lisa', 21, 'F', 550, 2311,'SFO'); + insert into Student values ( 1031, 'Smith', 'Sarah', 20, 'F', 550, 8772,'PHL'); + insert into Student values ( 1032, 'Brown', 'Eric', 20, 'M', 550, 8772,'ATL'); + insert into Student values ( 1033, 'Simms', 'William', 18, 'M', 550, 8772,'NAR'); + insert into Student values ( 1034, 'Epp', 'Eric', 18, 'M', 050, 5718,'BOS'); + insert into Student values ( 1035, 'Schmidt', 'Sarah', 26, 'F', 050, 5718,'WAS'); diff --git a/database/company_1/company_1.sqlite b/database/company_1/company_1.sqlite new file mode 100644 index 0000000000000000000000000000000000000000..0d001f8bf49d4981fcc9e2cd9d3c7c81e7ba12c5 Binary files /dev/null and b/database/company_1/company_1.sqlite differ diff --git a/database/company_1/link.txt b/database/company_1/link.txt new file mode 100644 index 0000000000000000000000000000000000000000..827013da7bc0c4040b28d360d56f6e049034ef9f --- /dev/null +++ b/database/company_1/link.txt @@ -0,0 +1 @@ +https://www.classes.cs.uchicago.edu/archive/2009/spring/23500-1/homework.html diff --git a/database/company_employee/company_employee.sqlite b/database/company_employee/company_employee.sqlite new file mode 100644 index 0000000000000000000000000000000000000000..03104bfb344dd2a43f58da3d822c59de8c75467a Binary files /dev/null and b/database/company_employee/company_employee.sqlite differ diff --git a/database/company_employee/schema.sql b/database/company_employee/schema.sql new file mode 100644 index 0000000000000000000000000000000000000000..3805c59ed4753fdcbb3d483dbf607fa5705e6f23 --- /dev/null +++ b/database/company_employee/schema.sql @@ -0,0 +1,72 @@ +PRAGMA foreign_keys = ON; + +CREATE TABLE "people" ( + "People_ID" int, + "Age" int, + "Name" text, + "Nationality" text, + "Graduation_College" text, + PRIMARY KEY ("People_ID") +); + + +INSERT INTO "people" VALUES ("1","27","Reggie Lewis","United States","Northeastern"); +INSERT INTO "people" VALUES ("2","25","Brad Lohaus","United States","Iowa"); +INSERT INTO "people" VALUES ("3","37","Tom Sheehey","United Kindom","Virginia"); +INSERT INTO "people" VALUES ("4","31","Darryl Kennedy","United States","Oklahoma"); +INSERT INTO "people" VALUES ("5","34","David Butler","United Kindom","California"); +INSERT INTO "people" VALUES ("6","37","Tim Naegeli","United States","Wisconsin–Stevens Point"); +INSERT INTO "people" VALUES ("7","30","Jerry Corcoran","United States","Northeastern"); + + + +CREATE TABLE "company" ( + "Company_ID" real, + "Name" text, + "Headquarters" text, + "Industry" text, + "Sales_in_Billion" real, + "Profits_in_Billion" real, + "Assets_in_Billion" real, + "Market_Value_in_Billion" real, + PRIMARY KEY ("Company_ID") +); + + +INSERT INTO "company" VALUES ("1","ExxonMobil","USA","Oil and gas","433.5","41.1","331.1","407.4"); +INSERT INTO "company" VALUES ("2","JPMorgan Chase","USA","Banking","110.8","19","2265.8","170.1"); +INSERT INTO "company" VALUES ("3","General Electric","USA","Conglomerate","147.3","14.2","717.2","213.7"); +INSERT INTO "company" VALUES ("4","Royal Dutch Shell","Netherlands","Oil and gas","470.2","30.9","340.5","227.6"); +INSERT INTO "company" VALUES ("5","Industrial and Commercial Bank of China","China","Banking","82.6","25.1","2039.1","237.4"); +INSERT INTO "company" VALUES ("6","HSBC","UK","Banking","102","16.2","2550","164.3"); +INSERT INTO "company" VALUES ("7","PetroChina","China","Oil and gas","310.1","20.6","304.7","294.7"); +INSERT INTO "company" VALUES ("8","Berkshire Hathaway","USA","Conglomerate","143.7","10.3","392.6","202.2"); +INSERT INTO "company" VALUES ("9","Wells Fargo","USA","Banking","87.6","15.9","1313.9","178.7"); +INSERT INTO "company" VALUES ("10","Petrobras","Brazil","Oil and gas","145.9","20.1","319.4","180"); +INSERT INTO "company" VALUES ("11","BP","UK","Oil and gas","375.5","25.7","292.5","147.4"); +INSERT INTO "company" VALUES ("12","Chevron","USA","Oil and gas","236.3","26.9","209.5","218"); +INSERT INTO "company" VALUES ("13","China Construction Bank","China","Banking","68.7","20.5","1637.8","201.9"); +INSERT INTO "company" VALUES ("14","Citigroup","USA","Banking","102.6","11.1","1873.9","107.5"); +INSERT INTO "company" VALUES ("15","Gazprom","Russia","Oil and gas","117.6","31.7","302.6","159.8"); +INSERT INTO "company" VALUES ("16","Walmart","USA","Retailing","447","15.7","193.4","208.4"); +INSERT INTO "company" VALUES ("17","Volkswagen Group","Germany","Automotive","221.9","21.5","328.7","79.5"); +INSERT INTO "company" VALUES ("18","Total","France","Oil and gas","216.2","15.9","213","132.4"); +INSERT INTO "company" VALUES ("19","Agricultural Bank of China","China","Banking","62.4","14.4","1563.9","154.8"); + + + +CREATE TABLE "employment" ( + "Company_ID" int, + "People_ID" int, + "Year_working" int, + PRIMARY KEY ("Company_ID","People_ID"), + FOREIGN KEY ("Company_ID") REFERENCES `company`("Company_ID"), + FOREIGN KEY ("People_ID") REFERENCES `people`("People_ID") +); + +INSERT INTO "employment" VALUES (11,3,2); +INSERT INTO "employment" VALUES (13,2,3); +INSERT INTO "employment" VALUES (17,7,4); +INSERT INTO "employment" VALUES (15,1,1); +INSERT INTO "employment" VALUES (7,4,1); + diff --git a/database/company_office/company_office.sqlite b/database/company_office/company_office.sqlite new file mode 100644 index 0000000000000000000000000000000000000000..54c794070b9f68504195972beadca0a0ea3b2f04 Binary files /dev/null and b/database/company_office/company_office.sqlite differ diff --git a/database/company_office/schema.sql b/database/company_office/schema.sql new file mode 100644 index 0000000000000000000000000000000000000000..0f30f3373c0b34c41ee480d0bdff39d668428860 --- /dev/null +++ b/database/company_office/schema.sql @@ -0,0 +1,86 @@ +PRAGMA foreign_keys = ON; + +CREATE TABLE "buildings" ( +"id" int, +"name" text, +"City" text, +"Height" int, +"Stories" int, +"Status" text, +PRIMARY KEY("id") +); + +INSERT INTO "buildings" VALUES (1, "Torre KOI","Monterrey","220","67","under construction"); +INSERT INTO "buildings" VALUES (2, "Torre Mitikah","Mexico City","210","60","under construction"); +INSERT INTO "buildings" VALUES (3, "Punto Chapultepec","Mexico City","210","59","proposed"); +INSERT INTO "buildings" VALUES (4, "Torre Reforma","Mexico City","330","57","under construction"); +INSERT INTO "buildings" VALUES (5, "Corporativo BBVA Bancomer","Mexico City","220","50","under construction"); +INSERT INTO "buildings" VALUES (6, "Reforma 432","Mexico City","300","100","under construction"); +INSERT INTO "buildings" VALUES (7, "Torre New York Life","Mexico City","50","6","under construction"); +INSERT INTO "buildings" VALUES (8, "LIU East","Monterrey","73","20","under construction"); +INSERT INTO "buildings" VALUES (9, "Residencial Vidalta Torre Altaire 2","Mexico City","150","44","on-hold"); +INSERT INTO "buildings" VALUES (10, "Residencial Vidalta Torre Altaire 3","Mexico City","200","44","on-hold"); +INSERT INTO "buildings" VALUES (11, "Reforma 90","Mexico City","200","42","on-hold"); +INSERT INTO "buildings" VALUES (12, "Ritz-Carlton Mexico City","Mexico City","100","34","on-hold"); + + +CREATE TABLE "Companies" ( +"id" int, +"name" text, +"Headquarters" text, +"Industry" text, +"Sales_billion" real, +"Profits_billion" real, +"Assets_billion" real, +"Market_Value_billion" text, +PRIMARY KEY ("id") +); + +INSERT INTO "Companies" VALUES ("1","JPMorgan Chase","USA","Banking","115.5","17.4","2117.6","182.2"); +INSERT INTO "Companies" VALUES ("2","HSBC","UK","Banking","103.3","13.3","2467.9","186.5"); +INSERT INTO "Companies" VALUES ("3","General Electric","USA","Conglomerate","156.2","11.6","751.2","216.2"); +INSERT INTO "Companies" VALUES ("4","ExxonMobil","USA","Oil and gas","341.6","30.5","302.5","407.2"); +INSERT INTO "Companies" VALUES ("5","Royal Dutch Shell","Netherlands","Oil and gas","369.1","20.1","317.2","212.9"); +INSERT INTO "Companies" VALUES ("6","PetroChina","China","Oil and gas","222.3","21.2","251.3","320.8"); +INSERT INTO "Companies" VALUES ("7","Industrial and Commercial Bank of China","China","Banking","69.2","18.8","1723.5","239.5"); +INSERT INTO "Companies" VALUES ("8","Berkshire Hathaway","USA","Conglomerate","136.2","13","372.2","211"); +INSERT INTO "Companies" VALUES ("9","Petrobras","Brazil","Oil and gas","121.3","21.2","313.2","238.8"); +INSERT INTO "Companies" VALUES ("10","Citigroup","USA","Banking","111.5","10.6","1913.9","132.8"); +INSERT INTO "Companies" VALUES ("11","BNP Paribas","France","Banking","130.4","10.5","2680.7","88"); +INSERT INTO "Companies" VALUES ("12","Wells Fargo","USA","Banking","93.2","12.4","1258.1","170.6"); +INSERT INTO "Companies" VALUES ("13","Santander Group","Spain","Banking","109.7","12.8","1570.6","94.7"); +INSERT INTO "Companies" VALUES ("14","AT&T Inc.","USA","Telecommunications","124.3","19.9","268.5","168.2"); +INSERT INTO "Companies" VALUES ("15","Gazprom","Russia","Oil and gas","98.7","25.7","275.9","172.9"); +INSERT INTO "Companies" VALUES ("16","Chevron","USA","Oil and gas","189.6","19","184.8","200.6"); +INSERT INTO "Companies" VALUES ("17","China Construction Bank","China","Banking","58.2","15.6","1408","224.8"); +INSERT INTO "Companies" VALUES ("18","Walmart","USA","Retailing","421.8","16.4","180.7","187.3"); +INSERT INTO "Companies" VALUES ("19","Total","France","Oil and gas","188.1","14.2","192.8","138"); + + + +CREATE TABLE "Office_locations" ( +"building_id" int, +"company_id" int, +"move_in_year" int, +PRIMARY KEY ("building_id", "company_id"), +FOREIGN KEY ("building_id") REFERENCES "buildings"("id"), +FOREIGN KEY ("company_id") REFERENCES "Companies"("id") +); + +INSERT INTO "Office_locations" VALUES (1,1,2021); +INSERT INTO "Office_locations" VALUES (2,2,2022); +INSERT INTO "Office_locations" VALUES (3,4,2023); +INSERT INTO "Office_locations" VALUES (4,3,2024); +INSERT INTO "Office_locations" VALUES (5,3,2025); +INSERT INTO "Office_locations" VALUES (5,7,2026); +INSERT INTO "Office_locations" VALUES (11,5,2027); +INSERT INTO "Office_locations" VALUES (7,4,2027); +INSERT INTO "Office_locations" VALUES (3,2,2028); +INSERT INTO "Office_locations" VALUES (3,9,2029); +INSERT INTO "Office_locations" VALUES (10,9,2031); +INSERT INTO "Office_locations" VALUES (6,9,2022); +INSERT INTO "Office_locations" VALUES (8,19,2022); +INSERT INTO "Office_locations" VALUES (9,10,2019); +INSERT INTO "Office_locations" VALUES (3,11,2020); +INSERT INTO "Office_locations" VALUES (2,11,2025); + diff --git a/database/concert_singer/concert_singer.sqlite b/database/concert_singer/concert_singer.sqlite new file mode 100644 index 0000000000000000000000000000000000000000..5b06f95a70eac2ebb0d5f7cef67989c12665eed4 Binary files /dev/null and b/database/concert_singer/concert_singer.sqlite differ diff --git a/database/concert_singer/schema.sql b/database/concert_singer/schema.sql new file mode 100644 index 0000000000000000000000000000000000000000..07c63ba1c50287c5b4389b4046e92f9e1ed66416 --- /dev/null +++ b/database/concert_singer/schema.sql @@ -0,0 +1,85 @@ +PRAGMA foreign_keys = ON; + + +CREATE TABLE "stadium" ( +"Stadium_ID" int, +"Location" text, +"Name" text, +"Capacity" int, +"Highest" int, +"Lowest" int, +"Average" int, +PRIMARY KEY ("Stadium_ID") +); + + +INSERT INTO "stadium" VALUES (1,"Raith Rovers","Stark's Park","10104","4812","1294","2106"); +INSERT INTO "stadium" VALUES (2,"Ayr United","Somerset Park","11998","2363","1057","1477"); +INSERT INTO "stadium" VALUES (3,"East Fife","Bayview Stadium","2000","1980","533","864"); +INSERT INTO "stadium" VALUES (4,"Queen's Park","Hampden Park","52500","1763","466","730"); +INSERT INTO "stadium" VALUES (5,"Stirling Albion","Forthbank Stadium","3808","1125","404","642"); +INSERT INTO "stadium" VALUES (6,"Arbroath","Gayfield Park","4125","921","411","638"); +INSERT INTO "stadium" VALUES (7,"Alloa Athletic","Recreation Park","3100","1057","331","637"); +INSERT INTO "stadium" VALUES (9,"Peterhead","Balmoor","4000","837","400","615"); +INSERT INTO "stadium" VALUES (10,"Brechin City","Glebe Park","3960","780","315","552"); + +CREATE TABLE "singer" ( +"Singer_ID" int, +"Name" text, +"Country" text, +"Song_Name" text, +"Song_release_year" text, +"Age" int, +"Is_male" bool, +PRIMARY KEY ("Singer_ID") +); + + + +INSERT INTO "singer" VALUES (1,"Joe Sharp","Netherlands","You","1992",52,"F"); +INSERT INTO "singer" VALUES (2,"Timbaland","United States","Dangerous","2008",32,"T"); +INSERT INTO "singer" VALUES (3,"Justin Brown","France","Hey Oh","2013",29,"T"); +INSERT INTO "singer" VALUES (4,"Rose White","France","Sun","2003",41,"F"); +INSERT INTO "singer" VALUES (5,"John Nizinik","France","Gentleman","2014",43,"T"); +INSERT INTO "singer" VALUES (6,"Tribal King","France","Love","2016",25,"T"); + + +CREATE TABLE "concert" ( +"concert_ID" int, +"concert_Name" text, +"Theme" text, +"Stadium_ID" text, +"Year" text, +PRIMARY KEY ("concert_ID"), +FOREIGN KEY ("Stadium_ID") REFERENCES "stadium"("Stadium_ID") +); + + + +INSERT INTO "concert" VALUES (1,"Auditions","Free choice",1,2014); +INSERT INTO "concert" VALUES (2,"Super bootcamp","Free choice 2",2,2014); +INSERT INTO "concert" VALUES (3,"Home Visits","Bleeding Love",2,2015); +INSERT INTO "concert" VALUES (4,"Week 1","Wide Awake",10,2014); +INSERT INTO "concert" VALUES (5,"Week 1","Happy Tonight",9,2015); +INSERT INTO "concert" VALUES (6,"Week 2","Party All Night",7,2015); + + +CREATE TABLE "singer_in_concert" ( +"concert_ID" int, +"Singer_ID" text, +PRIMARY KEY ("concert_ID","Singer_ID"), +FOREIGN KEY ("concert_ID") REFERENCES "concert"("concert_ID"), +FOREIGN KEY ("Singer_ID") REFERENCES "singer"("Singer_ID") +); + +INSERT INTO "singer_in_concert" VALUES (1, 2); +INSERT INTO "singer_in_concert" VALUES (1, 3); +INSERT INTO "singer_in_concert" VALUES (1, 5); +INSERT INTO "singer_in_concert" VALUES (2, 3); +INSERT INTO "singer_in_concert" VALUES (2, 6); +INSERT INTO "singer_in_concert" VALUES (3, 5); +INSERT INTO "singer_in_concert" VALUES (4, 4); +INSERT INTO "singer_in_concert" VALUES (5, 6); +INSERT INTO "singer_in_concert" VALUES (5, 3); +INSERT INTO "singer_in_concert" VALUES (6, 2); + diff --git a/database/county_public_safety/county_public_safety.sqlite b/database/county_public_safety/county_public_safety.sqlite new file mode 100644 index 0000000000000000000000000000000000000000..7e8bf9684b72ab862bce0990f1c161dbb949335a Binary files /dev/null and b/database/county_public_safety/county_public_safety.sqlite differ diff --git a/database/county_public_safety/schema.sql b/database/county_public_safety/schema.sql new file mode 100644 index 0000000000000000000000000000000000000000..b1a3f7dc3d695ea08fbc6a7c51d3fe8c596f76c4 --- /dev/null +++ b/database/county_public_safety/schema.sql @@ -0,0 +1,56 @@ +PRAGMA foreign_keys = ON; + +CREATE TABLE "county_public_safety" ( +"County_ID" int, +"Name" text, +"Population" int, +"Police_officers" int, +"Residents_per_officer" int, +"Case_burden" int, +"Crime_rate" real, +"Police_force" text, +"Location" text, +PRIMARY KEY ("County_ID") +); + +CREATE TABLE "city" ( +"City_ID" int, +"County_ID" int, +"Name" text, +"White" real, +"Black" real, +"Amerindian" real, +"Asian" real, +"Multiracial" real, +"Hispanic" real, +PRIMARY KEY ("City_ID"), +FOREIGN KEY ("County_ID") REFERENCES "county_public_safety"("County_ID") +); + +INSERT INTO "county_public_safety" VALUES (1,"Abbotsford","128165","187","685","81","118","Abbotsford Police Department","East"); +INSERT INTO "county_public_safety" VALUES (2,"Burnaby","204320","253","808","100","123","RCMP","East"); +INSERT INTO "county_public_safety" VALUES (3,"Campbell River","30810","40","770","137","178","RCMP","West"); +INSERT INTO "county_public_safety" VALUES (4,"Castlegar","7821","11","711","107","150","RCMP","North"); +INSERT INTO "county_public_safety" VALUES (5,"Central Saanich","16821","21","801","39","49","Central Saanich Police","East"); +INSERT INTO "county_public_safety" VALUES (6,"Chilliwack","73066","91","803","140","174","RCMP","West"); + + + +INSERT INTO "city" VALUES (1,1,"Adjuntas","93.1","3.1","0.3","0.0","3.4","99.6"); +INSERT INTO "city" VALUES (2,1,"Aguada","86.6","5.3","0.3","0.1","7.7","99.4"); +INSERT INTO "city" VALUES (3,1,"Aguadilla","83.0","7.4","0.3","0.2","8.2","98.5"); +INSERT INTO "city" VALUES (4,2,"Aguas Buenas","72.5","12.6","0.6","0.1","14.2","99.5"); +INSERT INTO "city" VALUES (5,2,"Aibonito","83.5","7.3","0.2","0.0","9.0","99.3"); +INSERT INTO "city" VALUES (6,3,"Añasco","82.0","7.2","0.4","0.1","10.3","99.2"); +INSERT INTO "city" VALUES (7,3,"Arecibo","84.5","6.1","0.4","0.1","7.9","99.2"); +INSERT INTO "city" VALUES (8,3,"Arroyo","53.5","32.5","0.9","0.2","13.0","99.1"); +INSERT INTO "city" VALUES (9,3,"Barceloneta","80.7","7.6","0.3","0.1","11.2","99.4"); +INSERT INTO "city" VALUES (10,3,"Barranquitas","86.0","5.4","0.3","0.0","8.3","99.3"); +INSERT INTO "city" VALUES (11,3,"Bayamón","78.3","10.3","0.6","0.2","10.7","99.0"); +INSERT INTO "city" VALUES (12,4,"Cabo Rojo","84.1","5.4","0.3","0.1","10.1","98.9"); +INSERT INTO "city" VALUES (13,4,"Caguas","76.1","11.0","0.6","0.2","12.1","99.1"); +INSERT INTO "city" VALUES (14,5,"Camuy","87.9","4.1","0.3","0.1","7.6","99.4"); +INSERT INTO "city" VALUES (15,5,"Canóvanas","61.2","21.6","0.9","0.2","16.1","99.2"); +INSERT INTO "city" VALUES (16,6,"Carolina","64.3","22.8","0.9","0.4","11.7","98.6"); +INSERT INTO "city" VALUES (17,6,"Cataño","70.7","14.4","1.0","0.3","13.7","99.0"); + diff --git a/database/course_teach/course_teach.sqlite b/database/course_teach/course_teach.sqlite new file mode 100644 index 0000000000000000000000000000000000000000..15eff134cbb8b92da1ba45cd446de0bc8c0af4af Binary files /dev/null and b/database/course_teach/course_teach.sqlite differ diff --git a/database/course_teach/schema.sql b/database/course_teach/schema.sql new file mode 100644 index 0000000000000000000000000000000000000000..862575833074dfed4a7004bf5acb5e1edeeeb0d4 --- /dev/null +++ b/database/course_teach/schema.sql @@ -0,0 +1,52 @@ + +PRAGMA foreign_keys = ON; + +CREATE TABLE "course" ( +"Course_ID" int, +"Staring_Date" text, +"Course" text, +PRIMARY KEY ("Course_ID") +); + +CREATE TABLE "teacher" ( +"Teacher_ID" int, +"Name" text, +"Age" text, +"Hometown" text, +PRIMARY KEY ("Teacher_ID") +); + +INSERT INTO "course" VALUES ("1","5 May","Language Arts"); +INSERT INTO "course" VALUES ("2","6 May","Math"); +INSERT INTO "course" VALUES ("3","7 May","Science"); +INSERT INTO "course" VALUES ("4","9 May","History"); +INSERT INTO "course" VALUES ("5","10 May","Bible"); +INSERT INTO "course" VALUES ("6","11 May","Geography"); +INSERT INTO "course" VALUES ("7","13 May","Sports"); +INSERT INTO "course" VALUES ("8","14 May","French"); +INSERT INTO "course" VALUES ("9","15 May","Health"); +INSERT INTO "course" VALUES ("10","17 May","Music"); + +INSERT INTO "teacher" VALUES (1,"Joseph Huts",32,"Blackrod Urban District"); +INSERT INTO "teacher" VALUES (2,"Gustaaf Deloor",29,"Bolton County Borough"); +INSERT INTO "teacher" VALUES (3,"Vicente Carretero",26,"Farnworth Municipal Borough"); +INSERT INTO "teacher" VALUES (4,"John Deloor",33,"Horwich Urban District"); +INSERT INTO "teacher" VALUES (5,"Kearsley Brown",45,"Kearsley Urban District"); +INSERT INTO "teacher" VALUES (6,"Anne Walker",41,"Little Lever Urban District"); +INSERT INTO "teacher" VALUES (7,"Lucy Wong",39,"Turton Urban District"); + +CREATE TABLE "course_arrange" ( +"Course_ID" int, +"Teacher_ID" int, +"Grade" int, +PRIMARY KEY ("Course_ID","Teacher_ID","Grade"), +FOREIGN KEY ("Course_ID") REFERENCES `course`("Course_ID"), +FOREIGN KEY ("Teacher_ID") REFERENCES `teacher`("Teacher_ID") +); +INSERT INTO "course_arrange" VALUES (2,5,1); +INSERT INTO "course_arrange" VALUES (2,3,3); +INSERT INTO "course_arrange" VALUES (3,2,5); +INSERT INTO "course_arrange" VALUES (4,6,7); +INSERT INTO "course_arrange" VALUES (5,6,1); +INSERT INTO "course_arrange" VALUES (10,7,4); + diff --git a/database/cre_Doc_Control_Systems/cre_Doc_Control_Systems.sqlite b/database/cre_Doc_Control_Systems/cre_Doc_Control_Systems.sqlite new file mode 100644 index 0000000000000000000000000000000000000000..d8dc0ab5c3d82ffd74c0bd10cf26c9b39ae34bfd Binary files /dev/null and b/database/cre_Doc_Control_Systems/cre_Doc_Control_Systems.sqlite differ diff --git a/database/cre_Doc_Control_Systems/schema.sql b/database/cre_Doc_Control_Systems/schema.sql new file mode 100644 index 0000000000000000000000000000000000000000..2e02819bebfa4d385280d1d4a7a9b62ae3407f33 --- /dev/null +++ b/database/cre_Doc_Control_Systems/schema.sql @@ -0,0 +1,177 @@ +PRAGMA foreign_keys = ON; +CREATE TABLE Ref_Document_Types ( +document_type_code CHAR(15) NOT NULL, +document_type_description VARCHAR(255) NOT NULL, +PRIMARY KEY (document_type_code) +); +INSERT INTO Ref_Document_Types (`document_type_code`, `document_type_description`) VALUES ('CD', 'b'); +INSERT INTO Ref_Document_Types (`document_type_code`, `document_type_description`) VALUES ('Paper', 'u'); +INSERT INTO Ref_Document_Types (`document_type_code`, `document_type_description`) VALUES ('Hard Drive', 'f'); + +CREATE TABLE Roles ( +role_code CHAR(15) NOT NULL, +role_description VARCHAR(255), +PRIMARY KEY (role_code) +); +INSERT INTO Roles (`role_code`, `role_description`) VALUES ('ED', 'Editor'); +INSERT INTO Roles (`role_code`, `role_description`) VALUES ('PT', 'Photo'); +INSERT INTO Roles (`role_code`, `role_description`) VALUES ('MG', 'Manager'); +INSERT INTO Roles (`role_code`, `role_description`) VALUES ('PR', 'Proof Manager'); + +CREATE TABLE Addresses ( +address_id INTEGER NOT NULL, +address_details VARCHAR(255), +PRIMARY KEY (address_id) +); +INSERT INTO Addresses (`address_id`, `address_details`) VALUES (0, 'IT'); +INSERT INTO Addresses (`address_id`, `address_details`) VALUES (1, 'MX'); +INSERT INTO Addresses (`address_id`, `address_details`) VALUES (2, 'DE'); +INSERT INTO Addresses (`address_id`, `address_details`) VALUES (3, 'ES'); +INSERT INTO Addresses (`address_id`, `address_details`) VALUES (4, 'ES'); +INSERT INTO Addresses (`address_id`, `address_details`) VALUES (5, 'IE'); +INSERT INTO Addresses (`address_id`, `address_details`) VALUES (6, 'US'); +INSERT INTO Addresses (`address_id`, `address_details`) VALUES (7, 'PT'); +INSERT INTO Addresses (`address_id`, `address_details`) VALUES (8, 'IE'); +INSERT INTO Addresses (`address_id`, `address_details`) VALUES (9, 'MX'); + +CREATE TABLE Ref_Document_Status ( +document_status_code CHAR(15) NOT NULL, +document_status_description VARCHAR(255) NOT NULL, +PRIMARY KEY (document_status_code) +); +INSERT INTO Ref_Document_Status (`document_status_code`, `document_status_description`) VALUES ('working', 'currently working on'); +INSERT INTO Ref_Document_Status (`document_status_code`, `document_status_description`) VALUES ('done', 'mailed'); +INSERT INTO Ref_Document_Status (`document_status_code`, `document_status_description`) VALUES ('overdue', 'mailed late'); + +CREATE TABLE Ref_Shipping_Agents ( +shipping_agent_code CHAR(15) NOT NULL, +shipping_agent_name VARCHAR(255) NOT NULL, +shipping_agent_description VARCHAR(255) NOT NULL, +PRIMARY KEY (shipping_agent_code) +); +INSERT INTO Ref_Shipping_Agents (`shipping_agent_code`, `shipping_agent_name`, `shipping_agent_description`) VALUES ('UP', 'UPS', 'g'); +INSERT INTO Ref_Shipping_Agents (`shipping_agent_code`, `shipping_agent_name`, `shipping_agent_description`) VALUES ('US', 'USPS', 'q'); +INSERT INTO Ref_Shipping_Agents (`shipping_agent_code`, `shipping_agent_name`, `shipping_agent_description`) VALUES ('AL', 'Airline', 'w'); +INSERT INTO Ref_Shipping_Agents (`shipping_agent_code`, `shipping_agent_name`, `shipping_agent_description`) VALUES ('FE', 'Fedex', 'k'); +INSERT INTO Ref_Shipping_Agents (`shipping_agent_code`, `shipping_agent_name`, `shipping_agent_description`) VALUES ('SH', 'Ship', 't'); + +CREATE TABLE Documents ( +document_id INTEGER NOT NULL, +document_status_code CHAR(15) NOT NULL, +document_type_code CHAR(15) NOT NULL, +shipping_agent_code CHAR(15), +receipt_date DATETIME, +receipt_number VARCHAR(255), +other_details VARCHAR(255), +PRIMARY KEY (document_id), +FOREIGN KEY (document_type_code) REFERENCES Ref_Document_Types (document_type_code), +FOREIGN KEY (document_status_code) REFERENCES Ref_Document_Status (document_status_code), +FOREIGN KEY (shipping_agent_code) REFERENCES Ref_Shipping_Agents (shipping_agent_code) +); +INSERT INTO Documents (`document_id`, `document_status_code`, `document_type_code`, `shipping_agent_code`, `receipt_date`, `receipt_number`, `other_details`) VALUES (1, 'working', 'CD', 'UP', '2008-04-21 20:42:25', '19', 'z'); +INSERT INTO Documents (`document_id`, `document_status_code`, `document_type_code`, `shipping_agent_code`, `receipt_date`, `receipt_number`, `other_details`) VALUES (2, 'done', 'Paper', 'US', '1974-05-08 00:00:46', '34', 'h'); +INSERT INTO Documents (`document_id`, `document_status_code`, `document_type_code`, `shipping_agent_code`, `receipt_date`, `receipt_number`, `other_details`) VALUES (3, 'done', 'Paper', 'UP', '2014-12-25 17:22:44', '93', 'h'); +INSERT INTO Documents (`document_id`, `document_status_code`, `document_type_code`, `shipping_agent_code`, `receipt_date`, `receipt_number`, `other_details`) VALUES (4, 'done', 'Paper', 'US', '1973-11-05 21:48:53', '80', 'q'); +INSERT INTO Documents (`document_id`, `document_status_code`, `document_type_code`, `shipping_agent_code`, `receipt_date`, `receipt_number`, `other_details`) VALUES (7, 'working', 'CD', 'SH', '1982-09-27 14:52:15', '61', 'w'); +INSERT INTO Documents (`document_id`, `document_status_code`, `document_type_code`, `shipping_agent_code`, `receipt_date`, `receipt_number`, `other_details`) VALUES (10, 'overdue', 'Paper', 'UP', '1976-09-15 19:24:17', '8', 'm'); +INSERT INTO Documents (`document_id`, `document_status_code`, `document_type_code`, `shipping_agent_code`, `receipt_date`, `receipt_number`, `other_details`) VALUES (12, 'overdue', 'Hard Drive', 'US', '1996-05-31 06:51:58', '69', 'n'); +INSERT INTO Documents (`document_id`, `document_status_code`, `document_type_code`, `shipping_agent_code`, `receipt_date`, `receipt_number`, `other_details`) VALUES (13, 'working', 'CD', 'UP', '2015-04-03 09:36:19', '79', 'y'); +INSERT INTO Documents (`document_id`, `document_status_code`, `document_type_code`, `shipping_agent_code`, `receipt_date`, `receipt_number`, `other_details`) VALUES (14, 'working', 'CD', 'FE', '2017-07-02 17:39:09', '117', 'u'); +INSERT INTO Documents (`document_id`, `document_status_code`, `document_type_code`, `shipping_agent_code`, `receipt_date`, `receipt_number`, `other_details`) VALUES (15, 'overdue', 'CD', 'UP', '1986-12-14 14:18:59', '37', 'r'); +INSERT INTO Documents (`document_id`, `document_status_code`, `document_type_code`, `shipping_agent_code`, `receipt_date`, `receipt_number`, `other_details`) VALUES (17, 'done', 'Paper', 'FE', '1983-09-26 09:32:56', '55', 'p'); +INSERT INTO Documents (`document_id`, `document_status_code`, `document_type_code`, `shipping_agent_code`, `receipt_date`, `receipt_number`, `other_details`) VALUES (20, 'working', 'Paper', 'UP', '1996-07-27 03:30:40', '189', 'x'); +INSERT INTO Documents (`document_id`, `document_status_code`, `document_type_code`, `shipping_agent_code`, `receipt_date`, `receipt_number`, `other_details`) VALUES (23, 'working', 'Hard Drive', 'FE', '1999-04-17 14:19:32', '124', 'b'); +INSERT INTO Documents (`document_id`, `document_status_code`, `document_type_code`, `shipping_agent_code`, `receipt_date`, `receipt_number`, `other_details`) VALUES (24, 'working', 'Hard Drive', 'FE', '2005-09-30 00:10:02', '114', 'j'); +INSERT INTO Documents (`document_id`, `document_status_code`, `document_type_code`, `shipping_agent_code`, `receipt_date`, `receipt_number`, `other_details`) VALUES (25, 'overdue', 'Hard Drive', 'AL', '1985-11-05 17:59:34', '83', 'u'); + +CREATE TABLE Employees ( +employee_id INTEGER NOT NULL, +role_code CHAR(15) NOT NULL, +employee_name VARCHAR(255), +other_details VARCHAR(255), +PRIMARY KEY (employee_id), +FOREIGN KEY (role_code) REFERENCES Roles (role_code) +); +INSERT INTO Employees (`employee_id`, `role_code`, `employee_name`, `other_details`) VALUES (1, 'ED', 'Koby', 'h'); +INSERT INTO Employees (`employee_id`, `role_code`, `employee_name`, `other_details`) VALUES (2, 'ED', 'Kenyon', 'f'); +INSERT INTO Employees (`employee_id`, `role_code`, `employee_name`, `other_details`) VALUES (3, 'PR', 'Haley', 'b'); +INSERT INTO Employees (`employee_id`, `role_code`, `employee_name`, `other_details`) VALUES (5, 'PT', 'Clemens', 'b'); +INSERT INTO Employees (`employee_id`, `role_code`, `employee_name`, `other_details`) VALUES (7, 'PT', 'Jordyn', 'v'); +INSERT INTO Employees (`employee_id`, `role_code`, `employee_name`, `other_details`) VALUES (8, 'MG', 'Erling', 'u'); + +CREATE TABLE Document_Drafts ( +document_id INTEGER NOT NULL, +draft_number INTEGER NOT NULL, +draft_details VARCHAR(255), +PRIMARY KEY (document_id, draft_number), +FOREIGN KEY (document_id) REFERENCES Documents (document_id) +); +INSERT INTO Document_Drafts (`document_id`, `draft_number`, `draft_details`) VALUES (1, 0, 'e'); +INSERT INTO Document_Drafts (`document_id`, `draft_number`, `draft_details`) VALUES (1, 2, 'k'); +INSERT INTO Document_Drafts (`document_id`, `draft_number`, `draft_details`) VALUES (2, 1, 'v'); +INSERT INTO Document_Drafts (`document_id`, `draft_number`, `draft_details`) VALUES (2, 8, 'v'); +INSERT INTO Document_Drafts (`document_id`, `draft_number`, `draft_details`) VALUES (4, 9, 'r'); +INSERT INTO Document_Drafts (`document_id`, `draft_number`, `draft_details`) VALUES (7, 10, 'm'); +INSERT INTO Document_Drafts (`document_id`, `draft_number`, `draft_details`) VALUES (10, 20, 'k'); +INSERT INTO Document_Drafts (`document_id`, `draft_number`, `draft_details`) VALUES (12, 11, 'b'); +INSERT INTO Document_Drafts (`document_id`, `draft_number`, `draft_details`) VALUES (12, 12, 'r'); +INSERT INTO Document_Drafts (`document_id`, `draft_number`, `draft_details`) VALUES (13, 4, 'w'); +INSERT INTO Document_Drafts (`document_id`, `draft_number`, `draft_details`) VALUES (13, 16, 'p'); +INSERT INTO Document_Drafts (`document_id`, `draft_number`, `draft_details`) VALUES (14, 14, 'x'); +INSERT INTO Document_Drafts (`document_id`, `draft_number`, `draft_details`) VALUES (17, 19, 'a'); +INSERT INTO Document_Drafts (`document_id`, `draft_number`, `draft_details`) VALUES (20, 17, 'l'); +INSERT INTO Document_Drafts (`document_id`, `draft_number`, `draft_details`) VALUES (23, 9, 'r'); + +CREATE TABLE Draft_Copies ( +document_id INTEGER NOT NULL, +draft_number INTEGER NOT NULL, +copy_number INTEGER NOT NULL, +PRIMARY KEY (document_id, draft_number, copy_number), +FOREIGN KEY (document_id, draft_number) REFERENCES Document_Drafts (document_id,draft_number) +); +INSERT INTO Draft_Copies (`document_id`, `draft_number`, `copy_number`) VALUES (2, 8, 5); +INSERT INTO Draft_Copies (`document_id`, `draft_number`, `copy_number`) VALUES (4, 9, 6); +INSERT INTO Draft_Copies (`document_id`, `draft_number`, `copy_number`) VALUES (23, 9, 15); +INSERT INTO Draft_Copies (`document_id`, `draft_number`, `copy_number`) VALUES (10, 20, 10); +INSERT INTO Draft_Copies (`document_id`, `draft_number`, `copy_number`) VALUES (2, 1, 4); +INSERT INTO Draft_Copies (`document_id`, `draft_number`, `copy_number`) VALUES (1, 2, 5); +INSERT INTO Draft_Copies (`document_id`, `draft_number`, `copy_number`) VALUES (20, 17, 15); +INSERT INTO Draft_Copies (`document_id`, `draft_number`, `copy_number`) VALUES (12, 12, 10); + +CREATE TABLE Circulation_History ( +document_id INTEGER NOT NULL, +draft_number INTEGER NOT NULL, +copy_number INTEGER NOT NULL, +employee_id INTEGER NOT NULL, +PRIMARY KEY (document_id, draft_number, copy_number, employee_id), +FOREIGN KEY (document_id, draft_number, copy_number) REFERENCES Draft_Copies (document_id,draft_number,copy_number), +FOREIGN KEY (employee_id) REFERENCES Employees (employee_id) +); +INSERT INTO Circulation_History (`document_id`, `draft_number`, `copy_number`, `employee_id`) VALUES (20, 17, 15, 8); +INSERT INTO Circulation_History (`document_id`, `draft_number`, `copy_number`, `employee_id`) VALUES (1, 2, 5, 1); +INSERT INTO Circulation_History (`document_id`, `draft_number`, `copy_number`, `employee_id`) VALUES (2, 1, 4, 2); +INSERT INTO Circulation_History (`document_id`, `draft_number`, `copy_number`, `employee_id`) VALUES (10, 20, 10, 2); + +CREATE TABLE Documents_Mailed ( +document_id INTEGER NOT NULL, +mailed_to_address_id INTEGER NOT NULL, +mailing_date DATETIME, +PRIMARY KEY (document_id, mailed_to_address_id), +FOREIGN KEY (document_id) REFERENCES Documents (document_id), +FOREIGN KEY (mailed_to_address_id) REFERENCES Addresses (address_id) +); + +INSERT INTO Documents_Mailed (`document_id`, `mailed_to_address_id`, `mailing_date`) VALUES (2, 8, '1977-04-01 17:03:50'); +INSERT INTO Documents_Mailed (`document_id`, `mailed_to_address_id`, `mailing_date`) VALUES (4, 3, '1992-11-07 15:03:41'); +INSERT INTO Documents_Mailed (`document_id`, `mailed_to_address_id`, `mailing_date`) VALUES (4, 9, '1973-02-21 10:17:01'); +INSERT INTO Documents_Mailed (`document_id`, `mailed_to_address_id`, `mailing_date`) VALUES (7, 5, '1979-09-21 10:30:52'); +INSERT INTO Documents_Mailed (`document_id`, `mailed_to_address_id`, `mailing_date`) VALUES (10, 3, '1993-05-24 22:13:48'); +INSERT INTO Documents_Mailed (`document_id`, `mailed_to_address_id`, `mailing_date`) VALUES (12, 0, '1999-05-22 23:21:07'); +INSERT INTO Documents_Mailed (`document_id`, `mailed_to_address_id`, `mailing_date`) VALUES (12, 7, '2007-01-01 22:32:11'); +INSERT INTO Documents_Mailed (`document_id`, `mailed_to_address_id`, `mailing_date`) VALUES (12, 8, '2007-03-20 05:22:01'); +INSERT INTO Documents_Mailed (`document_id`, `mailed_to_address_id`, `mailing_date`) VALUES (13, 4, '1991-05-27 14:17:37'); +INSERT INTO Documents_Mailed (`document_id`, `mailed_to_address_id`, `mailing_date`) VALUES (14, 5, '1986-05-16 06:25:33'); +INSERT INTO Documents_Mailed (`document_id`, `mailed_to_address_id`, `mailing_date`) VALUES (20, 2, '2010-11-04 04:00:16'); +INSERT INTO Documents_Mailed (`document_id`, `mailed_to_address_id`, `mailing_date`) VALUES (20, 7, '1982-01-14 05:50:54'); +INSERT INTO Documents_Mailed (`document_id`, `mailed_to_address_id`, `mailing_date`) VALUES (23, 8, '1971-11-03 12:32:14'); +INSERT INTO Documents_Mailed (`document_id`, `mailed_to_address_id`, `mailing_date`) VALUES (24, 0, '2013-01-27 03:29:31'); diff --git a/database/cre_Doc_Template_Mgt/cre_Doc_Template_Mgt.sqlite b/database/cre_Doc_Template_Mgt/cre_Doc_Template_Mgt.sqlite new file mode 100644 index 0000000000000000000000000000000000000000..df09eb910edea6c639bcd5bf010fa199d4bfec4e Binary files /dev/null and b/database/cre_Doc_Template_Mgt/cre_Doc_Template_Mgt.sqlite differ diff --git a/database/cre_Doc_Template_Mgt/schema.sql b/database/cre_Doc_Template_Mgt/schema.sql new file mode 100644 index 0000000000000000000000000000000000000000..a5ebbe7e4bbfcccc32414cf5b93712c3a06d7222 --- /dev/null +++ b/database/cre_Doc_Template_Mgt/schema.sql @@ -0,0 +1,90 @@ +PRAGMA foreign_keys = ON; +CREATE TABLE Ref_Template_Types ( +Template_Type_Code CHAR(15) NOT NULL, +Template_Type_Description VARCHAR(255) NOT NULL, +PRIMARY KEY (Template_Type_Code) +); +CREATE TABLE Templates ( +Template_ID INTEGER NOT NULL, +Version_Number INTEGER NOT NULL, +Template_Type_Code CHAR(15) NOT NULL, +Date_Effective_From DATETIME, +Date_Effective_To DATETIME, +Template_Details VARCHAR(255) NOT NULL, +PRIMARY KEY (Template_ID), +FOREIGN KEY (Template_Type_Code) REFERENCES Ref_Template_Types (Template_Type_Code) +); +CREATE TABLE Documents ( +Document_ID INTEGER NOT NULL, +Template_ID INTEGER, +Document_Name VARCHAR(255), +Document_Description VARCHAR(255), +Other_Details VARCHAR(255), +PRIMARY KEY (Document_ID), +FOREIGN KEY (Template_ID) REFERENCES Templates (Template_ID) +); +CREATE TABLE Paragraphs ( +Paragraph_ID INTEGER NOT NULL, +Document_ID INTEGER NOT NULL, +Paragraph_Text VARCHAR(255), +Other_Details VARCHAR(255), +PRIMARY KEY (Paragraph_ID), +FOREIGN KEY (Document_ID) REFERENCES Documents (Document_ID) +); +INSERT INTO Ref_Template_Types (`Template_Type_Code`, `Template_Type_Description`) VALUES ('PPT', 'Presentation'); +INSERT INTO Ref_Template_Types (`Template_Type_Code`, `Template_Type_Description`) VALUES ('CV', 'CV'); +INSERT INTO Ref_Template_Types (`Template_Type_Code`, `Template_Type_Description`) VALUES ('AD', 'Advertisement'); +INSERT INTO Ref_Template_Types (`Template_Type_Code`, `Template_Type_Description`) VALUES ('PP', 'Paper'); +INSERT INTO Ref_Template_Types (`Template_Type_Code`, `Template_Type_Description`) VALUES ('BK', 'Book'); +INSERT INTO Templates (`Template_ID`, `Version_Number`, `Template_Type_Code`, `Date_Effective_From`, `Date_Effective_To`, `Template_Details`) VALUES (0, 5, 'PP', '2005-11-12 07:09:48', '2008-01-05 14:19:28', ''); +INSERT INTO Templates (`Template_ID`, `Version_Number`, `Template_Type_Code`, `Date_Effective_From`, `Date_Effective_To`, `Template_Details`) VALUES (1, 9, 'PP', '2010-09-24 01:15:11', '1999-07-08 03:31:04', ''); +INSERT INTO Templates (`Template_ID`, `Version_Number`, `Template_Type_Code`, `Date_Effective_From`, `Date_Effective_To`, `Template_Details`) VALUES (4, 4, 'BK', '2002-03-02 14:39:49', '2001-04-18 09:29:52', ''); +INSERT INTO Templates (`Template_ID`, `Version_Number`, `Template_Type_Code`, `Date_Effective_From`, `Date_Effective_To`, `Template_Details`) VALUES (6, 2, 'PPT', '1975-05-20 22:51:19', '1992-05-02 20:06:11', ''); +INSERT INTO Templates (`Template_ID`, `Version_Number`, `Template_Type_Code`, `Date_Effective_From`, `Date_Effective_To`, `Template_Details`) VALUES (7, 8, 'PPT', '1993-10-07 02:33:04', '1975-07-16 04:52:10', ''); +INSERT INTO Templates (`Template_ID`, `Version_Number`, `Template_Type_Code`, `Date_Effective_From`, `Date_Effective_To`, `Template_Details`) VALUES (8, 3, 'BK', '1983-07-16 21:16:16', '1976-10-28 10:08:50', ''); +INSERT INTO Templates (`Template_ID`, `Version_Number`, `Template_Type_Code`, `Date_Effective_From`, `Date_Effective_To`, `Template_Details`) VALUES (9, 2, 'BK', '1997-04-17 08:29:44', '1994-12-07 13:26:23', ''); +INSERT INTO Templates (`Template_ID`, `Version_Number`, `Template_Type_Code`, `Date_Effective_From`, `Date_Effective_To`, `Template_Details`) VALUES (10, 1, 'PPT', '2003-06-05 04:03:45', '2007-06-06 06:18:53', ''); +INSERT INTO Templates (`Template_ID`, `Version_Number`, `Template_Type_Code`, `Date_Effective_From`, `Date_Effective_To`, `Template_Details`) VALUES (11, 6, 'BK', '1996-02-04 11:27:24', '1995-09-19 22:27:48', ''); +INSERT INTO Templates (`Template_ID`, `Version_Number`, `Template_Type_Code`, `Date_Effective_From`, `Date_Effective_To`, `Template_Details`) VALUES (14, 7, 'AD', '1975-10-20 02:28:58', '1979-11-04 08:58:39', ''); +INSERT INTO Templates (`Template_ID`, `Version_Number`, `Template_Type_Code`, `Date_Effective_From`, `Date_Effective_To`, `Template_Details`) VALUES (15, 9, 'CV', '1986-12-09 14:51:36', '1993-03-24 14:30:23', ''); +INSERT INTO Templates (`Template_ID`, `Version_Number`, `Template_Type_Code`, `Date_Effective_From`, `Date_Effective_To`, `Template_Details`) VALUES (16, 5, 'CV', '2012-04-05 07:11:42', '1980-05-07 12:15:47', ''); +INSERT INTO Templates (`Template_ID`, `Version_Number`, `Template_Type_Code`, `Date_Effective_From`, `Date_Effective_To`, `Template_Details`) VALUES (18, 5, 'PP', '1984-08-07 13:36:26', '1998-05-12 12:51:29', ''); +INSERT INTO Templates (`Template_ID`, `Version_Number`, `Template_Type_Code`, `Date_Effective_From`, `Date_Effective_To`, `Template_Details`) VALUES (19, 7, 'AD', '1999-06-21 11:10:30', '1974-09-14 06:34:39', ''); +INSERT INTO Templates (`Template_ID`, `Version_Number`, `Template_Type_Code`, `Date_Effective_From`, `Date_Effective_To`, `Template_Details`) VALUES (20, 6, 'BK', '1986-11-14 12:20:18', '2008-08-08 18:36:43', ''); +INSERT INTO Templates (`Template_ID`, `Version_Number`, `Template_Type_Code`, `Date_Effective_From`, `Date_Effective_To`, `Template_Details`) VALUES (21, 9, 'AD', '2002-08-25 13:26:23', '2015-09-06 01:08:44', ''); +INSERT INTO Templates (`Template_ID`, `Version_Number`, `Template_Type_Code`, `Date_Effective_From`, `Date_Effective_To`, `Template_Details`) VALUES (22, 0, 'PP', '2005-02-20 00:31:34', '1989-11-24 19:06:06', ''); +INSERT INTO Templates (`Template_ID`, `Version_Number`, `Template_Type_Code`, `Date_Effective_From`, `Date_Effective_To`, `Template_Details`) VALUES (23, 2, 'BK', '1979-12-24 10:28:16', '2000-10-22 11:57:12', ''); +INSERT INTO Templates (`Template_ID`, `Version_Number`, `Template_Type_Code`, `Date_Effective_From`, `Date_Effective_To`, `Template_Details`) VALUES (24, 8, 'PP', '2008-08-01 13:57:26', '1973-01-12 14:13:34', ''); +INSERT INTO Templates (`Template_ID`, `Version_Number`, `Template_Type_Code`, `Date_Effective_From`, `Date_Effective_To`, `Template_Details`) VALUES (25, 5, 'PP', '1979-10-20 21:23:20', '2006-02-06 23:52:04', ''); + + +INSERT INTO Documents (`Document_ID`, `Template_ID`, `Document_Name`, `Document_Description`, `Other_Details`) VALUES (0, 7, 'Introduction of OS', 'n', NULL); +INSERT INTO Documents (`Document_ID`, `Template_ID`, `Document_Name`, `Document_Description`, `Other_Details`) VALUES (1, 25, 'Understanding DB', 'y', NULL); +INSERT INTO Documents (`Document_ID`, `Template_ID`, `Document_Name`, `Document_Description`, `Other_Details`) VALUES (3, 6, 'Summer Show', 'u', NULL); +INSERT INTO Documents (`Document_ID`, `Template_ID`, `Document_Name`, `Document_Description`, `Other_Details`) VALUES (76, 20, 'Robbin CV', 'y', NULL); +INSERT INTO Documents (`Document_ID`, `Template_ID`, `Document_Name`, `Document_Description`, `Other_Details`) VALUES (80, 14, 'Welcome to NY', 'h', NULL); +INSERT INTO Documents (`Document_ID`, `Template_ID`, `Document_Name`, `Document_Description`, `Other_Details`) VALUES (82, 11, 'Data base', 'w', NULL); +INSERT INTO Documents (`Document_ID`, `Template_ID`, `Document_Name`, `Document_Description`, `Other_Details`) VALUES (2394, 10, 'Customer reviews', 'y', NULL); +INSERT INTO Documents (`Document_ID`, `Template_ID`, `Document_Name`, `Document_Description`, `Other_Details`) VALUES (3830, 14, 'Do not panic', 'k', NULL); +INSERT INTO Documents (`Document_ID`, `Template_ID`, `Document_Name`, `Document_Description`, `Other_Details`) VALUES (33930, 1, 'How Google people work', 'z', NULL); +INSERT INTO Documents (`Document_ID`, `Template_ID`, `Document_Name`, `Document_Description`, `Other_Details`) VALUES (50123, 22, 'Learning French', 'r', NULL); +INSERT INTO Documents (`Document_ID`, `Template_ID`, `Document_Name`, `Document_Description`, `Other_Details`) VALUES (651512, 21, 'How to write a CV', 'f', NULL); +INSERT INTO Documents (`Document_ID`, `Template_ID`, `Document_Name`, `Document_Description`, `Other_Details`) VALUES (801801, 4, 'How to read a book', 'w', NULL); +INSERT INTO Documents (`Document_ID`, `Template_ID`, `Document_Name`, `Document_Description`, `Other_Details`) VALUES (3540024, 8, 'Palm reading', 'y', NULL); +INSERT INTO Documents (`Document_ID`, `Template_ID`, `Document_Name`, `Document_Description`, `Other_Details`) VALUES (16514113, 25, 'A history of Arts', 'h', NULL); +INSERT INTO Documents (`Document_ID`, `Template_ID`, `Document_Name`, `Document_Description`, `Other_Details`) VALUES (385906526, 11, 'About Korea', 'b', NULL); +INSERT INTO Paragraphs (`Paragraph_ID`, `Document_ID`, `Paragraph_Text`, `Other_Details`) VALUES (7, 2394, 'Korea', NULL); +INSERT INTO Paragraphs (`Paragraph_ID`, `Document_ID`, `Paragraph_Text`, `Other_Details`) VALUES (9, 3, 'Somalia', NULL); +INSERT INTO Paragraphs (`Paragraph_ID`, `Document_ID`, `Paragraph_Text`, `Other_Details`) VALUES (65, 50123, 'Palestinian Territory', NULL); +INSERT INTO Paragraphs (`Paragraph_ID`, `Document_ID`, `Paragraph_Text`, `Other_Details`) VALUES (241, 651512, 'Jersey', NULL); +INSERT INTO Paragraphs (`Paragraph_ID`, `Document_ID`, `Paragraph_Text`, `Other_Details`) VALUES (3708, 33930, 'UK', NULL); +INSERT INTO Paragraphs (`Paragraph_ID`, `Document_ID`, `Paragraph_Text`, `Other_Details`) VALUES (9946, 385906526, 'Fiji', NULL); +INSERT INTO Paragraphs (`Paragraph_ID`, `Document_ID`, `Paragraph_Text`, `Other_Details`) VALUES (16615, 80, 'Japan', NULL); +INSERT INTO Paragraphs (`Paragraph_ID`, `Document_ID`, `Paragraph_Text`, `Other_Details`) VALUES (1104059, 3830, 'Senegal', NULL); +INSERT INTO Paragraphs (`Paragraph_ID`, `Document_ID`, `Paragraph_Text`, `Other_Details`) VALUES (243399026, 651512, 'Indonesia', NULL); +INSERT INTO Paragraphs (`Paragraph_ID`, `Document_ID`, `Paragraph_Text`, `Other_Details`) VALUES (280120913, 2394, 'Ukraine', NULL); +INSERT INTO Paragraphs (`Paragraph_ID`, `Document_ID`, `Paragraph_Text`, `Other_Details`) VALUES (510442723, 2394, 'Korea', NULL); +INSERT INTO Paragraphs (`Paragraph_ID`, `Document_ID`, `Paragraph_Text`, `Other_Details`) VALUES (571212310, 16514113, 'Brazil', NULL); +INSERT INTO Paragraphs (`Paragraph_ID`, `Document_ID`, `Paragraph_Text`, `Other_Details`) VALUES (608931827, 80, 'Micronesia', NULL); +INSERT INTO Paragraphs (`Paragraph_ID`, `Document_ID`, `Paragraph_Text`, `Other_Details`) VALUES (765713812, 16514113, 'Ireland', NULL); +INSERT INTO Paragraphs (`Paragraph_ID`, `Document_ID`, `Paragraph_Text`, `Other_Details`) VALUES (946335436, 3540024, 'Papua New Guinea', NULL); diff --git a/database/cre_Doc_Tracking_DB/cre_Doc_Tracking_DB.sqlite b/database/cre_Doc_Tracking_DB/cre_Doc_Tracking_DB.sqlite new file mode 100644 index 0000000000000000000000000000000000000000..78f0bb6806894d7b862be90de56858f8ea928f7a Binary files /dev/null and b/database/cre_Doc_Tracking_DB/cre_Doc_Tracking_DB.sqlite differ diff --git a/database/cre_Doc_Tracking_DB/schema.sql b/database/cre_Doc_Tracking_DB/schema.sql new file mode 100644 index 0000000000000000000000000000000000000000..8797b688e4c03218115271a8ff2cdcab06eaa93d --- /dev/null +++ b/database/cre_Doc_Tracking_DB/schema.sql @@ -0,0 +1,164 @@ +PRAGMA foreign_keys = ON; +CREATE TABLE Ref_Document_Types ( +Document_Type_Code CHAR(15) NOT NULL, +Document_Type_Name VARCHAR(255) NOT NULL, +Document_Type_Description VARCHAR(255) NOT NULL, +PRIMARY KEY (Document_Type_Code) +); + +CREATE TABLE Ref_Calendar ( +Calendar_Date DATETIME NOT NULL, +Day_Number INTEGER, +PRIMARY KEY (Calendar_Date) +); +CREATE TABLE Ref_Locations ( +Location_Code CHAR(15) NOT NULL, +Location_Name VARCHAR(255) NOT NULL, +Location_Description VARCHAR(255) NOT NULL, +PRIMARY KEY (Location_Code) +); + +CREATE TABLE Roles ( +Role_Code CHAR(15) NOT NULL, +Role_Name VARCHAR(255), +Role_Description VARCHAR(255), +PRIMARY KEY (Role_Code) +); + +CREATE TABLE All_Documents ( +Document_ID INTEGER NOT NULL, +Date_Stored DATETIME, +Document_Type_Code CHAR(15) NOT NULL, +Document_Name CHAR(255), +Document_Description CHAR(255), +Other_Details VARCHAR(255), +PRIMARY KEY (Document_ID), +FOREIGN KEY (Document_Type_Code) REFERENCES Ref_Document_Types (Document_Type_Code), +FOREIGN KEY (Date_Stored) REFERENCES Ref_Calendar (Calendar_Date) +); + +CREATE TABLE Employees ( +Employee_ID INTEGER NOT NULL, +Role_Code CHAR(15) NOT NULL, +Employee_Name VARCHAR(255), +Gender_MFU CHAR(1) NOT NULL, +Date_of_Birth DATETIME NOT NULL, +Other_Details VARCHAR(255), +PRIMARY KEY (Employee_ID), +FOREIGN KEY (Role_Code) REFERENCES Roles (Role_Code) +); + +CREATE TABLE Document_Locations ( +Document_ID INTEGER NOT NULL, +Location_Code CHAR(15) NOT NULL, +Date_in_Location_From DATETIME NOT NULL, +Date_in_Locaton_To DATETIME, +PRIMARY KEY (Document_ID, Location_Code, Date_in_Location_From), +FOREIGN KEY (Location_Code) REFERENCES Ref_Locations (Location_Code), +FOREIGN KEY (Date_in_Location_From) REFERENCES Ref_Calendar (Calendar_Date), +FOREIGN KEY (Date_in_Locaton_To) REFERENCES Ref_Calendar (Calendar_Date), +FOREIGN KEY (Document_ID) REFERENCES All_Documents (Document_ID) +); + +CREATE TABLE Documents_to_be_Destroyed ( +Document_ID INTEGER NOT NULL, +Destruction_Authorised_by_Employee_ID INTEGER, +Destroyed_by_Employee_ID INTEGER, +Planned_Destruction_Date DATETIME, +Actual_Destruction_Date DATETIME, +Other_Details VARCHAR(255), +PRIMARY KEY (Document_ID), +FOREIGN KEY (Destroyed_by_Employee_ID) REFERENCES Employees (Employee_ID), +FOREIGN KEY (Destruction_Authorised_by_Employee_ID) REFERENCES Employees (Employee_ID), +FOREIGN KEY (Planned_Destruction_Date) REFERENCES Ref_Calendar (Calendar_Date), +FOREIGN KEY (Actual_Destruction_Date) REFERENCES Ref_Calendar (Calendar_Date), +FOREIGN KEY (Document_ID) REFERENCES All_Documents (Document_ID) +); +INSERT INTO Ref_Calendar (`Calendar_Date`, `Day_Number`) VALUES ('1972-03-31 09:47:22', 5); +INSERT INTO Ref_Calendar (`Calendar_Date`, `Day_Number`) VALUES ('1976-06-15 03:40:06', 7); +INSERT INTO Ref_Calendar (`Calendar_Date`, `Day_Number`) VALUES ('1985-05-13 12:19:43', 7); +INSERT INTO Ref_Calendar (`Calendar_Date`, `Day_Number`) VALUES ('1986-10-14 17:53:39', 1); +INSERT INTO Ref_Calendar (`Calendar_Date`, `Day_Number`) VALUES ('1987-11-05 06:11:22', 3); +INSERT INTO Ref_Calendar (`Calendar_Date`, `Day_Number`) VALUES ('1988-02-01 14:41:52', 8); +INSERT INTO Ref_Calendar (`Calendar_Date`, `Day_Number`) VALUES ('1994-11-15 03:49:54', 9); +INSERT INTO Ref_Calendar (`Calendar_Date`, `Day_Number`) VALUES ('1995-01-01 03:52:11', 1); +INSERT INTO Ref_Calendar (`Calendar_Date`, `Day_Number`) VALUES ('1997-03-10 15:24:00', 7); +INSERT INTO Ref_Calendar (`Calendar_Date`, `Day_Number`) VALUES ('2007-05-28 16:28:48', 2); +INSERT INTO Ref_Calendar (`Calendar_Date`, `Day_Number`) VALUES ('2008-06-08 12:45:38', 3); +INSERT INTO Ref_Calendar (`Calendar_Date`, `Day_Number`) VALUES ('2009-08-18 03:29:08', 8); +INSERT INTO Ref_Calendar (`Calendar_Date`, `Day_Number`) VALUES ('2010-11-26 19:22:50', 7); +INSERT INTO Ref_Calendar (`Calendar_Date`, `Day_Number`) VALUES ('2012-07-03 09:48:46', 7); +INSERT INTO Ref_Calendar (`Calendar_Date`, `Day_Number`) VALUES ('2017-01-06 23:17:22', 8); +INSERT INTO Ref_Document_Types (`Document_Type_Code`, `Document_Type_Name`, `Document_Type_Description`) VALUES ('CV', 'CV', ''); +INSERT INTO Ref_Document_Types (`Document_Type_Code`, `Document_Type_Name`, `Document_Type_Description`) VALUES ('BK', 'Book', ''); +INSERT INTO Ref_Document_Types (`Document_Type_Code`, `Document_Type_Name`, `Document_Type_Description`) VALUES ('PR', 'Paper', ''); +INSERT INTO Ref_Document_Types (`Document_Type_Code`, `Document_Type_Name`, `Document_Type_Description`) VALUES ('RV', 'Review', ''); +INSERT INTO Ref_Locations (`Location_Code`, `Location_Name`, `Location_Description`) VALUES ('b', 'Brazil', ''); +INSERT INTO Ref_Locations (`Location_Code`, `Location_Name`, `Location_Description`) VALUES ('c', 'Canada', ''); +INSERT INTO Ref_Locations (`Location_Code`, `Location_Name`, `Location_Description`) VALUES ('e', 'Edinburgh', ''); +INSERT INTO Ref_Locations (`Location_Code`, `Location_Name`, `Location_Description`) VALUES ('n', 'Nanjing', ''); +INSERT INTO Ref_Locations (`Location_Code`, `Location_Name`, `Location_Description`) VALUES ('x', 'Xiamen', ''); +INSERT INTO Roles (`Role_Code`, `Role_Name`, `Role_Description`) VALUES ('MG', 'Manager', 'Vero harum corrupti odit ipsa vero et odio. Iste et recusandae temporibus maxime. Magni aspernatur fugit quis explicabo totam esse corrupti.'); +INSERT INTO Roles (`Role_Code`, `Role_Name`, `Role_Description`) VALUES ('ED', 'Editor', 'Itaque dolor ut nemo rerum vitae provident. Vel laborum ipsum velit sint. Et est omnis dignissimos.'); +INSERT INTO Roles (`Role_Code`, `Role_Name`, `Role_Description`) VALUES ('PT', 'Photo', 'Aut modi nihil molestias temporibus sit rerum. Sit neque eaque odio omnis incidunt.'); +INSERT INTO Roles (`Role_Code`, `Role_Name`, `Role_Description`) VALUES ('PR', 'Proof Reader', 'Ut sed quae eaque mollitia qui hic. Natus ea expedita et odio illum fugiat qui natus. Consequatur velit ut dolorem cum ullam esse deserunt dignissimos. Enim non non rem officiis quis.'); +INSERT INTO Roles (`Role_Code`, `Role_Name`, `Role_Description`) VALUES ('HR', 'Human Resource', 'Et totam est quibusdam aspernatur ut. Vitae perferendis eligendi voluptatem molestiae rem ut enim. Ipsum expedita quae earum unde est. Repellendus ut ipsam nihil accusantium sit. Magni accusantium numquam quod et.'); + +INSERT INTO Employees (`Employee_ID`, `Role_Code`, `Employee_Name`, `Gender_MFU`, `Date_of_Birth`, `Other_Details`) VALUES (25, 'HR', 'Leo', '', '1973-02-15 17:16:00', NULL); +INSERT INTO Employees (`Employee_ID`, `Role_Code`, `Employee_Name`, `Gender_MFU`, `Date_of_Birth`, `Other_Details`) VALUES (30, 'MG', 'Ebba', '', '1979-09-20 12:50:15', NULL); +INSERT INTO Employees (`Employee_ID`, `Role_Code`, `Employee_Name`, `Gender_MFU`, `Date_of_Birth`, `Other_Details`) VALUES (38, 'ED', 'Stephanie', '1', '2012-03-30 23:02:28', NULL); +INSERT INTO Employees (`Employee_ID`, `Role_Code`, `Employee_Name`, `Gender_MFU`, `Date_of_Birth`, `Other_Details`) VALUES (55, 'ED', 'Harley', '', '1972-02-18 11:53:30', NULL); +INSERT INTO Employees (`Employee_ID`, `Role_Code`, `Employee_Name`, `Gender_MFU`, `Date_of_Birth`, `Other_Details`) VALUES (57, 'ED', 'Armani', '', '1988-12-08 06:13:33', NULL); +INSERT INTO Employees (`Employee_ID`, `Role_Code`, `Employee_Name`, `Gender_MFU`, `Date_of_Birth`, `Other_Details`) VALUES (71, 'ED', 'Gussie', '', '1973-04-04 21:41:22', NULL); +INSERT INTO Employees (`Employee_ID`, `Role_Code`, `Employee_Name`, `Gender_MFU`, `Date_of_Birth`, `Other_Details`) VALUES (99, 'ED', 'Izabella', '1', '1977-07-04 16:25:21', NULL); +INSERT INTO Employees (`Employee_ID`, `Role_Code`, `Employee_Name`, `Gender_MFU`, `Date_of_Birth`, `Other_Details`) VALUES (123, 'PT', 'Hugh', '', '2010-03-15 00:17:13', NULL); +INSERT INTO Employees (`Employee_ID`, `Role_Code`, `Employee_Name`, `Gender_MFU`, `Date_of_Birth`, `Other_Details`) VALUES (136, 'ED', 'Mallie', '', '1980-12-11 20:28:20', NULL); +INSERT INTO Employees (`Employee_ID`, `Role_Code`, `Employee_Name`, `Gender_MFU`, `Date_of_Birth`, `Other_Details`) VALUES (138, 'ED', 'Beatrice', '1', '2013-04-02 23:55:48', NULL); +INSERT INTO Employees (`Employee_ID`, `Role_Code`, `Employee_Name`, `Gender_MFU`, `Date_of_Birth`, `Other_Details`) VALUES (156, 'PR', 'Diego', '', '1998-05-30 12:54:10', NULL); +INSERT INTO Employees (`Employee_ID`, `Role_Code`, `Employee_Name`, `Gender_MFU`, `Date_of_Birth`, `Other_Details`) VALUES (159, 'PR', 'Arno', '', '2010-06-10 20:36:34', NULL); +INSERT INTO Employees (`Employee_ID`, `Role_Code`, `Employee_Name`, `Gender_MFU`, `Date_of_Birth`, `Other_Details`) VALUES (173, 'PR', 'Alene', '1', '1980-10-14 12:23:10', NULL); +INSERT INTO Employees (`Employee_ID`, `Role_Code`, `Employee_Name`, `Gender_MFU`, `Date_of_Birth`, `Other_Details`) VALUES (181, 'PR', 'Ettie', '1', '1988-08-03 00:11:14', NULL); +INSERT INTO Employees (`Employee_ID`, `Role_Code`, `Employee_Name`, `Gender_MFU`, `Date_of_Birth`, `Other_Details`) VALUES (183, 'PR', 'Jeramie', '', '1993-08-21 05:22:10', NULL); + + +INSERT INTO All_Documents (`Document_ID`, `Date_Stored`, `Document_Type_Code`, `Document_Name`, `Document_Description`, `Other_Details`) VALUES (7, '1976-06-15 03:40:06', 'CV', 'Robin CV', NULL, NULL); +INSERT INTO All_Documents (`Document_ID`, `Date_Stored`, `Document_Type_Code`, `Document_Name`, `Document_Description`, `Other_Details`) VALUES (11, '1986-10-14 17:53:39', 'CV', 'Marry CV', NULL, NULL); +INSERT INTO All_Documents (`Document_ID`, `Date_Stored`, `Document_Type_Code`, `Document_Name`, `Document_Description`, `Other_Details`) VALUES (25, '2008-06-08 12:45:38', 'BK', 'One hundred years of solitude', NULL, NULL); +INSERT INTO All_Documents (`Document_ID`, `Date_Stored`, `Document_Type_Code`, `Document_Name`, `Document_Description`, `Other_Details`) VALUES (39, '2012-07-03 09:48:46', 'BK', 'How to read a book', NULL, NULL); +INSERT INTO All_Documents (`Document_ID`, `Date_Stored`, `Document_Type_Code`, `Document_Name`, `Document_Description`, `Other_Details`) VALUES (72, '2012-07-03 09:48:46', 'CV', 'Alan CV', NULL, NULL); +INSERT INTO All_Documents (`Document_ID`, `Date_Stored`, `Document_Type_Code`, `Document_Name`, `Document_Description`, `Other_Details`) VALUES (81, '1995-01-01 03:52:11', 'BK', 'Hua Mulan', NULL, NULL); +INSERT INTO All_Documents (`Document_ID`, `Date_Stored`, `Document_Type_Code`, `Document_Name`, `Document_Description`, `Other_Details`) VALUES (99, '2008-06-08 12:45:38', 'CV', 'Leon CV', NULL, NULL); +INSERT INTO All_Documents (`Document_ID`, `Date_Stored`, `Document_Type_Code`, `Document_Name`, `Document_Description`, `Other_Details`) VALUES (111, '1987-11-05 06:11:22', 'PR', 'Learning features of CNN', NULL, NULL); +INSERT INTO All_Documents (`Document_ID`, `Date_Stored`, `Document_Type_Code`, `Document_Name`, `Document_Description`, `Other_Details`) VALUES (119, '2008-06-08 12:45:38', 'RV', 'Marriage and population', NULL, NULL); +INSERT INTO All_Documents (`Document_ID`, `Date_Stored`, `Document_Type_Code`, `Document_Name`, `Document_Description`, `Other_Details`) VALUES (120, '1997-03-10 15:24:00', 'RV', 'Society and tax', NULL, NULL); +INSERT INTO All_Documents (`Document_ID`, `Date_Stored`, `Document_Type_Code`, `Document_Name`, `Document_Description`, `Other_Details`) VALUES (166, '1997-03-10 15:24:00', 'PR', 'Are you talking to a machine', NULL, NULL); +INSERT INTO All_Documents (`Document_ID`, `Date_Stored`, `Document_Type_Code`, `Document_Name`, `Document_Description`, `Other_Details`) VALUES (170, '2009-08-18 03:29:08', 'RV', 'Population', NULL, NULL); +INSERT INTO All_Documents (`Document_ID`, `Date_Stored`, `Document_Type_Code`, `Document_Name`, `Document_Description`, `Other_Details`) VALUES (230, '1976-06-15 03:40:06', 'CV', 'Martin CV', NULL, NULL); +INSERT INTO All_Documents (`Document_ID`, `Date_Stored`, `Document_Type_Code`, `Document_Name`, `Document_Description`, `Other_Details`) VALUES (252, '1976-06-15 03:40:06', 'BK', 'Summer', NULL, NULL); +INSERT INTO All_Documents (`Document_ID`, `Date_Stored`, `Document_Type_Code`, `Document_Name`, `Document_Description`, `Other_Details`) VALUES (260, '1997-03-10 15:24:00', 'BK', 'Cats and me', NULL, NULL); +INSERT INTO Document_Locations (`Document_ID`, `Location_Code`, `Date_in_Location_From`, `Date_in_Locaton_To`) VALUES (7, 'e', '2017-01-06 23:17:22', '2008-06-08 12:45:38'); +INSERT INTO Document_Locations (`Document_ID`, `Location_Code`, `Date_in_Location_From`, `Date_in_Locaton_To`) VALUES (11, 'x', '2017-01-06 23:17:22', '2012-07-03 09:48:46'); +INSERT INTO Document_Locations (`Document_ID`, `Location_Code`, `Date_in_Location_From`, `Date_in_Locaton_To`) VALUES (81, 'c', '1972-03-31 09:47:22', '1987-11-05 06:11:22'); +INSERT INTO Document_Locations (`Document_ID`, `Location_Code`, `Date_in_Location_From`, `Date_in_Locaton_To`) VALUES (81, 'c', '2017-01-06 23:17:22', '2010-11-26 19:22:50'); +INSERT INTO Document_Locations (`Document_ID`, `Location_Code`, `Date_in_Location_From`, `Date_in_Locaton_To`) VALUES (81, 'x', '2008-06-08 12:45:38', '1976-06-15 03:40:06'); +INSERT INTO Document_Locations (`Document_ID`, `Location_Code`, `Date_in_Location_From`, `Date_in_Locaton_To`) VALUES (111, 'x', '1986-10-14 17:53:39', '2010-11-26 19:22:50'); +INSERT INTO Document_Locations (`Document_ID`, `Location_Code`, `Date_in_Location_From`, `Date_in_Locaton_To`) VALUES (119, 'b', '2017-01-06 23:17:22', '1995-01-01 03:52:11'); +INSERT INTO Document_Locations (`Document_ID`, `Location_Code`, `Date_in_Location_From`, `Date_in_Locaton_To`) VALUES (166, 'b', '1985-05-13 12:19:43', '1986-10-14 17:53:39'); +INSERT INTO Document_Locations (`Document_ID`, `Location_Code`, `Date_in_Location_From`, `Date_in_Locaton_To`) VALUES (166, 'b', '1986-10-14 17:53:39', '2010-11-26 19:22:50'); +INSERT INTO Document_Locations (`Document_ID`, `Location_Code`, `Date_in_Location_From`, `Date_in_Locaton_To`) VALUES (170, 'x', '1997-03-10 15:24:00', '1976-06-15 03:40:06'); +INSERT INTO Document_Locations (`Document_ID`, `Location_Code`, `Date_in_Location_From`, `Date_in_Locaton_To`) VALUES (230, 'e', '1972-03-31 09:47:22', '1987-11-05 06:11:22'); +INSERT INTO Document_Locations (`Document_ID`, `Location_Code`, `Date_in_Location_From`, `Date_in_Locaton_To`) VALUES (230, 'e', '2010-11-26 19:22:50', '2017-01-06 23:17:22'); +INSERT INTO Document_Locations (`Document_ID`, `Location_Code`, `Date_in_Location_From`, `Date_in_Locaton_To`) VALUES (252, 'n', '2017-01-06 23:17:22', '1997-03-10 15:24:00'); +INSERT INTO Document_Locations (`Document_ID`, `Location_Code`, `Date_in_Location_From`, `Date_in_Locaton_To`) VALUES (252, 'x', '1972-03-31 09:47:22', '2009-08-18 03:29:08'); +INSERT INTO Document_Locations (`Document_ID`, `Location_Code`, `Date_in_Location_From`, `Date_in_Locaton_To`) VALUES (260, 'e', '2009-08-18 03:29:08', '1986-10-14 17:53:39'); +INSERT INTO Documents_to_be_Destroyed (`Document_ID`, `Destruction_Authorised_by_Employee_ID`, `Destroyed_by_Employee_ID`, `Planned_Destruction_Date`, `Actual_Destruction_Date`, `Other_Details`) VALUES (7, 156, 138, '1988-02-01 14:41:52', '2017-01-06 23:17:22', NULL); +INSERT INTO Documents_to_be_Destroyed (`Document_ID`, `Destruction_Authorised_by_Employee_ID`, `Destroyed_by_Employee_ID`, `Planned_Destruction_Date`, `Actual_Destruction_Date`, `Other_Details`) VALUES (11, 55, 173, '2010-11-26 19:22:50', '1986-10-14 17:53:39', NULL); +INSERT INTO Documents_to_be_Destroyed (`Document_ID`, `Destruction_Authorised_by_Employee_ID`, `Destroyed_by_Employee_ID`, `Planned_Destruction_Date`, `Actual_Destruction_Date`, `Other_Details`) VALUES (25, 183, 156, '2009-08-18 03:29:08', '1995-01-01 03:52:11', NULL); +INSERT INTO Documents_to_be_Destroyed (`Document_ID`, `Destruction_Authorised_by_Employee_ID`, `Destroyed_by_Employee_ID`, `Planned_Destruction_Date`, `Actual_Destruction_Date`, `Other_Details`) VALUES (39, 183, 136, '1976-06-15 03:40:06', '2009-08-18 03:29:08', NULL); +INSERT INTO Documents_to_be_Destroyed (`Document_ID`, `Destruction_Authorised_by_Employee_ID`, `Destroyed_by_Employee_ID`, `Planned_Destruction_Date`, `Actual_Destruction_Date`, `Other_Details`) VALUES (99, 55, 99, '2017-01-06 23:17:22', '1986-10-14 17:53:39', NULL); +INSERT INTO Documents_to_be_Destroyed (`Document_ID`, `Destruction_Authorised_by_Employee_ID`, `Destroyed_by_Employee_ID`, `Planned_Destruction_Date`, `Actual_Destruction_Date`, `Other_Details`) VALUES (111, 38, 173, '1972-03-31 09:47:22', '2009-08-18 03:29:08', NULL); +INSERT INTO Documents_to_be_Destroyed (`Document_ID`, `Destruction_Authorised_by_Employee_ID`, `Destroyed_by_Employee_ID`, `Planned_Destruction_Date`, `Actual_Destruction_Date`, `Other_Details`) VALUES (120, 183, 173, '1972-03-31 09:47:22', '1995-01-01 03:52:11', NULL); +INSERT INTO Documents_to_be_Destroyed (`Document_ID`, `Destruction_Authorised_by_Employee_ID`, `Destroyed_by_Employee_ID`, `Planned_Destruction_Date`, `Actual_Destruction_Date`, `Other_Details`) VALUES (166, 156, 38, '1987-11-05 06:11:22', '2012-07-03 09:48:46', NULL); +INSERT INTO Documents_to_be_Destroyed (`Document_ID`, `Destruction_Authorised_by_Employee_ID`, `Destroyed_by_Employee_ID`, `Planned_Destruction_Date`, `Actual_Destruction_Date`, `Other_Details`) VALUES (170, 123, 136, '2017-01-06 23:17:22', '1988-02-01 14:41:52', NULL); +INSERT INTO Documents_to_be_Destroyed (`Document_ID`, `Destruction_Authorised_by_Employee_ID`, `Destroyed_by_Employee_ID`, `Planned_Destruction_Date`, `Actual_Destruction_Date`, `Other_Details`) VALUES (252, 30, 55, '1972-03-31 09:47:22', '1985-05-13 12:19:43', NULL); +INSERT INTO Documents_to_be_Destroyed (`Document_ID`, `Destruction_Authorised_by_Employee_ID`, `Destroyed_by_Employee_ID`, `Planned_Destruction_Date`, `Actual_Destruction_Date`, `Other_Details`) VALUES (260, 55, 99, '2017-01-06 23:17:22', '2017-01-06 23:17:22', NULL); diff --git a/database/cre_Docs_and_Epenses/cre_Docs_and_Epenses.sqlite b/database/cre_Docs_and_Epenses/cre_Docs_and_Epenses.sqlite new file mode 100644 index 0000000000000000000000000000000000000000..48f51ca537cb00360b83aa14c94fd58b8f9f150a Binary files /dev/null and b/database/cre_Docs_and_Epenses/cre_Docs_and_Epenses.sqlite differ diff --git a/database/cre_Docs_and_Epenses/schema.sql b/database/cre_Docs_and_Epenses/schema.sql new file mode 100644 index 0000000000000000000000000000000000000000..b52df2ad4cdb5ac386baa621e8f138d6f57323c9 --- /dev/null +++ b/database/cre_Docs_and_Epenses/schema.sql @@ -0,0 +1,117 @@ +PRAGMA foreign_keys = ON; + +CREATE TABLE Ref_Document_Types ( +Document_Type_Code CHAR(15) NOT NULL, +Document_Type_Name VARCHAR(255) NOT NULL, +Document_Type_Description VARCHAR(255) NOT NULL, +PRIMARY KEY (Document_Type_Code) +); +CREATE TABLE Ref_Budget_Codes ( +Budget_Type_Code CHAR(15) NOT NULL, +Budget_Type_Description VARCHAR(255) NOT NULL, +PRIMARY KEY (Budget_Type_Code) +); +INSERT INTO Ref_Budget_Codes (`Budget_Type_Code`, `Budget_Type_Description`) VALUES ('GV', 'Government'); +INSERT INTO Ref_Budget_Codes (`Budget_Type_Code`, `Budget_Type_Description`) VALUES ('ORG', 'Organisation'); +INSERT INTO Ref_Budget_Codes (`Budget_Type_Code`, `Budget_Type_Description`) VALUES ('SF', 'Self founded'); +INSERT INTO Ref_Document_Types (`Document_Type_Code`, `Document_Type_Name`, `Document_Type_Description`) VALUES ('BK', 'Book', 'excellent'); +INSERT INTO Ref_Document_Types (`Document_Type_Code`, `Document_Type_Name`, `Document_Type_Description`) VALUES ('CV', 'CV', 'excellent'); +INSERT INTO Ref_Document_Types (`Document_Type_Code`, `Document_Type_Name`, `Document_Type_Description`) VALUES ('PT', 'Presentation', 'very good'); +INSERT INTO Ref_Document_Types (`Document_Type_Code`, `Document_Type_Name`, `Document_Type_Description`) VALUES ('PP', 'Paper', 'good'); +INSERT INTO Ref_Document_Types (`Document_Type_Code`, `Document_Type_Name`, `Document_Type_Description`) VALUES ('FM', 'Film', 'fun'); + + +CREATE TABLE Projects ( +Project_ID INTEGER NOT NULL, +Project_Details VARCHAR(255), +PRIMARY KEY (Project_ID) +); +INSERT INTO Projects (`Project_ID`, `Project_Details`) VALUES (30, 'Society Research project'); +INSERT INTO Projects (`Project_ID`, `Project_Details`) VALUES (35, 'Internet of Things project'); +INSERT INTO Projects (`Project_ID`, `Project_Details`) VALUES (105, 'Graph Database project'); +INSERT INTO Projects (`Project_ID`, `Project_Details`) VALUES (134, 'Human Resource project'); +INSERT INTO Projects (`Project_ID`, `Project_Details`) VALUES (195, 'Population Research project'); + + +CREATE TABLE Documents ( +Document_ID INTEGER NOT NULL, +Document_Type_Code CHAR(15) NOT NULL, +Project_ID INTEGER NOT NULL, +Document_Date DATETIME, +Document_Name VARCHAR(255), +Document_Description VARCHAR(255), +Other_Details VARCHAR(255), +PRIMARY KEY (Document_ID), +FOREIGN KEY (Document_Type_Code) REFERENCES Ref_Document_Types (Document_Type_Code), +FOREIGN KEY (Project_ID) REFERENCES Projects (Project_ID) +); +INSERT INTO Documents (`Document_ID`, `Document_Type_Code`, `Project_ID`, `Document_Date`, `Document_Name`, `Document_Description`, `Other_Details`) VALUES (29, 'CV', 30, '2004-08-28 06:59:19', 'Review on UK files', NULL, NULL); +INSERT INTO Documents (`Document_ID`, `Document_Type_Code`, `Project_ID`, `Document_Date`, `Document_Name`, `Document_Description`, `Other_Details`) VALUES (42, 'BK', 105, '2012-12-27 19:09:18', 'Review on Canadian files', NULL, NULL); +INSERT INTO Documents (`Document_ID`, `Document_Type_Code`, `Project_ID`, `Document_Date`, `Document_Name`, `Document_Description`, `Other_Details`) VALUES (57, 'CV', 195, '1980-10-22 14:17:11', 'Review on French files', NULL, NULL); +INSERT INTO Documents (`Document_ID`, `Document_Type_Code`, `Project_ID`, `Document_Date`, `Document_Name`, `Document_Description`, `Other_Details`) VALUES (121, 'BK', 105, '1981-11-29 10:23:01', 'Review on USA files', NULL, NULL); +INSERT INTO Documents (`Document_ID`, `Document_Type_Code`, `Project_ID`, `Document_Date`, `Document_Name`, `Document_Description`, `Other_Details`) VALUES (181, 'PP', 105, '1970-06-17 14:03:21', 'Chapter on private files', NULL, NULL); +INSERT INTO Documents (`Document_ID`, `Document_Type_Code`, `Project_ID`, `Document_Date`, `Document_Name`, `Document_Description`, `Other_Details`) VALUES (192, 'PP', 134, '2013-01-26 15:15:25', 'Book on USA files', NULL, NULL); +INSERT INTO Documents (`Document_ID`, `Document_Type_Code`, `Project_ID`, `Document_Date`, `Document_Name`, `Document_Description`, `Other_Details`) VALUES (226, 'BK', 30, '1991-07-08 08:49:59', 'Review on UK files', NULL, NULL); +INSERT INTO Documents (`Document_ID`, `Document_Type_Code`, `Project_ID`, `Document_Date`, `Document_Name`, `Document_Description`, `Other_Details`) VALUES (227, 'BK', 30, '1970-03-06 07:34:49', 'Deontae files', NULL, NULL); +INSERT INTO Documents (`Document_ID`, `Document_Type_Code`, `Project_ID`, `Document_Date`, `Document_Name`, `Document_Description`, `Other_Details`) VALUES (240, 'BK', 105, '1971-06-09 19:03:41', 'Winona Book', NULL, NULL); +INSERT INTO Documents (`Document_ID`, `Document_Type_Code`, `Project_ID`, `Document_Date`, `Document_Name`, `Document_Description`, `Other_Details`) VALUES (300, 'FM', 35, '2007-09-26 02:39:11', 'Trenton Presentation', NULL, NULL); +INSERT INTO Documents (`Document_ID`, `Document_Type_Code`, `Project_ID`, `Document_Date`, `Document_Name`, `Document_Description`, `Other_Details`) VALUES (309, 'BK', 35, '1978-10-15 10:33:17', 'Noel CV', NULL, NULL); +INSERT INTO Documents (`Document_ID`, `Document_Type_Code`, `Project_ID`, `Document_Date`, `Document_Name`, `Document_Description`, `Other_Details`) VALUES (318, 'PP', 134, '1970-01-30 10:53:35', 'King Book', NULL, NULL); +INSERT INTO Documents (`Document_ID`, `Document_Type_Code`, `Project_ID`, `Document_Date`, `Document_Name`, `Document_Description`, `Other_Details`) VALUES (367, 'CV', 134, '1983-08-24 17:10:26', 'Jevon Paper', NULL, NULL); +INSERT INTO Documents (`Document_ID`, `Document_Type_Code`, `Project_ID`, `Document_Date`, `Document_Name`, `Document_Description`, `Other_Details`) VALUES (371, 'PP', 105, '1976-05-06 12:56:12', 'Katheryn statement', NULL, NULL); +INSERT INTO Documents (`Document_ID`, `Document_Type_Code`, `Project_ID`, `Document_Date`, `Document_Name`, `Document_Description`, `Other_Details`) VALUES (383, 'PP', 35, '2005-10-28 03:17:16', 'Review on UK files', NULL, NULL); + + +CREATE TABLE Statements ( +Statement_ID INTEGER NOT NULL, +Statement_Details VARCHAR(255), +PRIMARY KEY (Statement_ID), +FOREIGN KEY (Statement_ID) REFERENCES Documents (Document_ID) +); +INSERT INTO Statements (`Statement_ID`, `Statement_Details`) VALUES (57, 'Open Project'); +INSERT INTO Statements (`Statement_ID`, `Statement_Details`) VALUES (192, 'Private Project'); + + + +CREATE TABLE Documents_with_Expenses ( +Document_ID INTEGER NOT NULL, +Budget_Type_Code CHAR(15) NOT NULL, +Document_Details VARCHAR(255), +PRIMARY KEY (Document_ID), +FOREIGN KEY (Budget_Type_Code) REFERENCES Ref_Budget_Codes (Budget_Type_Code), +FOREIGN KEY (Document_ID) REFERENCES Documents (Document_ID) +); +INSERT INTO Documents_with_Expenses (`Document_ID`, `Budget_Type_Code`, `Document_Details`) VALUES (57, 'GV', 'government'); +INSERT INTO Documents_with_Expenses (`Document_ID`, `Budget_Type_Code`, `Document_Details`) VALUES (192, 'GV', 'government'); +INSERT INTO Documents_with_Expenses (`Document_ID`, `Budget_Type_Code`, `Document_Details`) VALUES (226, 'GV', 'government'); +INSERT INTO Documents_with_Expenses (`Document_ID`, `Budget_Type_Code`, `Document_Details`) VALUES (227, 'GV', 'government'); +INSERT INTO Documents_with_Expenses (`Document_ID`, `Budget_Type_Code`, `Document_Details`) VALUES (240, 'GV', 'government'); +INSERT INTO Documents_with_Expenses (`Document_ID`, `Budget_Type_Code`, `Document_Details`) VALUES (300, 'GV', 'government'); +INSERT INTO Documents_with_Expenses (`Document_ID`, `Budget_Type_Code`, `Document_Details`) VALUES (309, 'SF', 'safety'); +INSERT INTO Documents_with_Expenses (`Document_ID`, `Budget_Type_Code`, `Document_Details`) VALUES (367, 'SF', 'safety'); +INSERT INTO Documents_with_Expenses (`Document_ID`, `Budget_Type_Code`, `Document_Details`) VALUES (371, 'ORG', 'organization'); +INSERT INTO Documents_with_Expenses (`Document_ID`, `Budget_Type_Code`, `Document_Details`) VALUES (383, 'ORG', 'organization'); + + +CREATE TABLE Accounts ( +Account_ID INTEGER NOT NULL, +Statement_ID INTEGER NOT NULL, +Account_Details VARCHAR(255), +PRIMARY KEY (Account_ID), +FOREIGN KEY (Statement_ID) REFERENCES Statements (Statement_ID) +); +INSERT INTO Accounts (`Account_ID`, `Statement_ID`, `Account_Details`) VALUES (7, 57, '495.063'); +INSERT INTO Accounts (`Account_ID`, `Statement_ID`, `Account_Details`) VALUES (61, 57, '930.14'); +INSERT INTO Accounts (`Account_ID`, `Statement_ID`, `Account_Details`) VALUES (98, 57, '6035.84'); +INSERT INTO Accounts (`Account_ID`, `Statement_ID`, `Account_Details`) VALUES (136, 57, '199.52'); +INSERT INTO Accounts (`Account_ID`, `Statement_ID`, `Account_Details`) VALUES (164, 192, '12223.93'); +INSERT INTO Accounts (`Account_ID`, `Statement_ID`, `Account_Details`) VALUES (209, 57, '11130.23'); +INSERT INTO Accounts (`Account_ID`, `Statement_ID`, `Account_Details`) VALUES (211, 192, '1230.454'); +INSERT INTO Accounts (`Account_ID`, `Statement_ID`, `Account_Details`) VALUES (240, 192, '6352.31'); +INSERT INTO Accounts (`Account_ID`, `Statement_ID`, `Account_Details`) VALUES (262, 57, '147.96'); +INSERT INTO Accounts (`Account_ID`, `Statement_ID`, `Account_Details`) VALUES (280, 57, '187.14'); +INSERT INTO Accounts (`Account_ID`, `Statement_ID`, `Account_Details`) VALUES (321, 192, '745.817'); +INSERT INTO Accounts (`Account_ID`, `Statement_ID`, `Account_Details`) VALUES (346, 192, '127.9'); +INSERT INTO Accounts (`Account_ID`, `Statement_ID`, `Account_Details`) VALUES (414, 57, '25.41'); +INSERT INTO Accounts (`Account_ID`, `Statement_ID`, `Account_Details`) VALUES (427, 57, '1168.32'); +INSERT INTO Accounts (`Account_ID`, `Statement_ID`, `Account_Details`) VALUES (451, 192, '658.26'); diff --git a/database/cre_Drama_Workshop_Groups/cre_Drama_Workshop_Groups.sqlite b/database/cre_Drama_Workshop_Groups/cre_Drama_Workshop_Groups.sqlite new file mode 100644 index 0000000000000000000000000000000000000000..cbaec082f765f8dac67826be596c1c7196dd2e79 Binary files /dev/null and b/database/cre_Drama_Workshop_Groups/cre_Drama_Workshop_Groups.sqlite differ diff --git a/database/cre_Drama_Workshop_Groups/schema.sql b/database/cre_Drama_Workshop_Groups/schema.sql new file mode 100644 index 0000000000000000000000000000000000000000..5804924b204132bc221c4ea7c38d579e254348f8 --- /dev/null +++ b/database/cre_Drama_Workshop_Groups/schema.sql @@ -0,0 +1,468 @@ +PRAGMA foreign_keys = ON; + +CREATE TABLE Ref_Payment_Methods ( +payment_method_code CHAR(10) NOT NULL, +payment_method_description VARCHAR(80), +PRIMARY KEY (payment_method_code), +UNIQUE (payment_method_code) +); +INSERT INTO Ref_Payment_Methods (`payment_method_code`, `payment_method_description`) VALUES ('American E', 'credit'); +INSERT INTO Ref_Payment_Methods (`payment_method_code`, `payment_method_description`) VALUES ('MasterCard', 'debit'); +INSERT INTO Ref_Payment_Methods (`payment_method_code`, `payment_method_description`) VALUES ('Visa', 'Visa'); + +CREATE TABLE Ref_Service_Types ( +Service_Type_Code CHAR(15) NOT NULL, +Parent_Service_Type_Code CHAR(15), +Service_Type_Description VARCHAR(255), +PRIMARY KEY (Service_Type_Code), +UNIQUE (Service_Type_Code) +); + +INSERT INTO Ref_Service_Types ( `Service_Type_Code`,`Parent_Service_Type_Code`,`Service_Type_Description`) VALUES ('1','1','provide photo service'); +INSERT INTO Ref_Service_Types ( `Service_Type_Code`,`Parent_Service_Type_Code`,`Service_Type_Description`) VALUES ('2','1','provide dinning service'); +INSERT INTO Ref_Service_Types ( `Service_Type_Code`,`Parent_Service_Type_Code`,`Service_Type_Description`) VALUES ('3','1','provide filming service'); +INSERT INTO Ref_Service_Types ( `Service_Type_Code`,`Parent_Service_Type_Code`,`Service_Type_Description`) VALUES ('4','1','provide adv promoting service'); + + + +CREATE TABLE Addresses ( +Address_ID VARCHAR(100) NOT NULL, +Line_1 VARCHAR(255), +Line_2 VARCHAR(255), +City_Town VARCHAR(255), +State_County VARCHAR(255), +Other_Details VARCHAR(255), +PRIMARY KEY (Address_ID), +UNIQUE (Address_ID) +); +INSERT INTO Addresses (`Address_ID`, `Line_1`, `Line_2`, `City_Town`, `State_County`, `Other_Details`) VALUES ('110', '4753 Dach Highway', 'Suite 846', 'Feliciaberg', 'Florida', NULL); +INSERT INTO Addresses (`Address_ID`, `Line_1`, `Line_2`, `City_Town`, `State_County`, `Other_Details`) VALUES ('124', '391 Vandervort Fall Apt. 446', 'Apt. 107', 'West Sherwoodstad', 'Indiana', NULL); +INSERT INTO Addresses (`Address_ID`, `Line_1`, `Line_2`, `City_Town`, `State_County`, `Other_Details`) VALUES ('148', '809 Izabella Islands', 'Suite 271', 'Schadenville', 'Ohio', NULL); +INSERT INTO Addresses (`Address_ID`, `Line_1`, `Line_2`, `City_Town`, `State_County`, `Other_Details`) VALUES ('15', '3720 Vito View Apt. 148', 'Apt. 584', 'New Jaquelinmouth', 'Ohio', NULL); +INSERT INTO Addresses (`Address_ID`, `Line_1`, `Line_2`, `City_Town`, `State_County`, `Other_Details`) VALUES ('180', '8835 Boehm Greens', 'Apt. 741', 'Chrisside', 'Maryland', NULL); +INSERT INTO Addresses (`Address_ID`, `Line_1`, `Line_2`, `City_Town`, `State_County`, `Other_Details`) VALUES ('19', '77667 Nathan Union Apt. 606', 'Apt. 114', 'Desireefort', 'WestVirginia', NULL); +INSERT INTO Addresses (`Address_ID`, `Line_1`, `Line_2`, `City_Town`, `State_County`, `Other_Details`) VALUES ('192', '545 Lula Mission', 'Suite 311', 'East Aracely', 'Oklahoma', NULL); +INSERT INTO Addresses (`Address_ID`, `Line_1`, `Line_2`, `City_Town`, `State_County`, `Other_Details`) VALUES ('201', '2893 Jenkins Station Suite 815', 'Suite 570', 'Monahanshire', 'Kentucky', NULL); +INSERT INTO Addresses (`Address_ID`, `Line_1`, `Line_2`, `City_Town`, `State_County`, `Other_Details`) VALUES ('207', '87789 Reilly Canyon Suite 872', 'Apt. 136', 'Rueckermouth', 'Maryland', NULL); +INSERT INTO Addresses (`Address_ID`, `Line_1`, `Line_2`, `City_Town`, `State_County`, `Other_Details`) VALUES ('230', '0855 Ziemann Island', 'Apt. 597', 'Purdyville', 'SouthCarolina', NULL); +INSERT INTO Addresses (`Address_ID`, `Line_1`, `Line_2`, `City_Town`, `State_County`, `Other_Details`) VALUES ('266', '2082 Runolfsson Cliffs', 'Apt. 460', 'Macejkovicchester', 'Alaska', NULL); +INSERT INTO Addresses (`Address_ID`, `Line_1`, `Line_2`, `City_Town`, `State_County`, `Other_Details`) VALUES ('286', '51237 Maiya Center', 'Suite 714', 'New Lonzoville', 'Nebraska', NULL); +INSERT INTO Addresses (`Address_ID`, `Line_1`, `Line_2`, `City_Town`, `State_County`, `Other_Details`) VALUES ('314', '70561 Vicenta Islands Apt. 873', 'Apt. 352', 'Cronaborough', 'Ohio', NULL); +INSERT INTO Addresses (`Address_ID`, `Line_1`, `Line_2`, `City_Town`, `State_County`, `Other_Details`) VALUES ('362', '384 Fahey Flat Apt. 886', 'Suite 583', 'South Birdie', 'Pennsylvania', NULL); +INSERT INTO Addresses (`Address_ID`, `Line_1`, `Line_2`, `City_Town`, `State_County`, `Other_Details`) VALUES ('369', '899 Okuneva Haven', 'Apt. 615', 'Jasthaven', 'Delaware', NULL); +INSERT INTO Addresses (`Address_ID`, `Line_1`, `Line_2`, `City_Town`, `State_County`, `Other_Details`) VALUES ('374', '956 Aliyah Cape', 'Suite 226', 'South Eugenia', 'Washington', NULL); +INSERT INTO Addresses (`Address_ID`, `Line_1`, `Line_2`, `City_Town`, `State_County`, `Other_Details`) VALUES ('383', '788 Flossie Junction Apt. 770', 'Apt. 861', 'Nataliamouth', 'WestVirginia', NULL); +INSERT INTO Addresses (`Address_ID`, `Line_1`, `Line_2`, `City_Town`, `State_County`, `Other_Details`) VALUES ('39', '9799 Andres Shoal', 'Apt. 012', 'North Antonina', 'SouthDakota', NULL); +INSERT INTO Addresses (`Address_ID`, `Line_1`, `Line_2`, `City_Town`, `State_County`, `Other_Details`) VALUES ('74', '8682 Boyle Glen', 'Apt. 012', 'Lindberg', 'Alabama', NULL); +INSERT INTO Addresses (`Address_ID`, `Line_1`, `Line_2`, `City_Town`, `State_County`, `Other_Details`) VALUES ('98', '32128 Klocko Oval', 'Suite 184', 'Port Maximeview', 'Arizona', NULL); + + + +CREATE TABLE Products ( +Product_ID VARCHAR(100) NOT NULL, +Product_Name VARCHAR(255), +Product_Price DECIMAL(20,4), +Product_Description VARCHAR(255), +Other_Product_Service_Details VARCHAR(255), +PRIMARY KEY (Product_ID), +UNIQUE (Product_ID) +); +INSERT INTO Products (`Product_ID`, `Product_Name`, `Product_Price`, `Product_Description`, `Other_Product_Service_Details`) VALUES ('11', 'photo', '4448536.0000', NULL, NULL); +INSERT INTO Products (`Product_ID`, `Product_Name`, `Product_Price`, `Product_Description`, `Other_Product_Service_Details`) VALUES ('154', 'film', '2302.0000', NULL, NULL); +INSERT INTO Products (`Product_ID`, `Product_Name`, `Product_Price`, `Product_Description`, `Other_Product_Service_Details`) VALUES ('156', 'film', '17622723.0000', NULL, NULL); +INSERT INTO Products (`Product_ID`, `Product_Name`, `Product_Price`, `Product_Description`, `Other_Product_Service_Details`) VALUES ('179', 'film', '1432324.0000', NULL, NULL); +INSERT INTO Products (`Product_ID`, `Product_Name`, `Product_Price`, `Product_Description`, `Other_Product_Service_Details`) VALUES ('188', 'film', '49097627.0000', NULL, NULL); +INSERT INTO Products (`Product_ID`, `Product_Name`, `Product_Price`, `Product_Description`, `Other_Product_Service_Details`) VALUES ('21', 'photo', '22082866.0000', NULL, NULL); +INSERT INTO Products (`Product_ID`, `Product_Name`, `Product_Price`, `Product_Description`, `Other_Product_Service_Details`) VALUES ('216', 'film', '157216.0000', NULL, NULL); +INSERT INTO Products (`Product_ID`, `Product_Name`, `Product_Price`, `Product_Description`, `Other_Product_Service_Details`) VALUES ('232', 'photo', '22.0000', NULL, NULL); +INSERT INTO Products (`Product_ID`, `Product_Name`, `Product_Price`, `Product_Description`, `Other_Product_Service_Details`) VALUES ('233', 'photo', '4082352.0000', NULL, NULL); +INSERT INTO Products (`Product_ID`, `Product_Name`, `Product_Price`, `Product_Description`, `Other_Product_Service_Details`) VALUES ('250', 'photo', '797.0000', NULL, NULL); +INSERT INTO Products (`Product_ID`, `Product_Name`, `Product_Price`, `Product_Description`, `Other_Product_Service_Details`) VALUES ('273', 'photo', '1577.0000', NULL, NULL); +INSERT INTO Products (`Product_ID`, `Product_Name`, `Product_Price`, `Product_Description`, `Other_Product_Service_Details`) VALUES ('300', 'dinning', '30625.0000', NULL, NULL); +INSERT INTO Products (`Product_ID`, `Product_Name`, `Product_Price`, `Product_Description`, `Other_Product_Service_Details`) VALUES ('46', 'dinning', '50828.0000', NULL, NULL); +INSERT INTO Products (`Product_ID`, `Product_Name`, `Product_Price`, `Product_Description`, `Other_Product_Service_Details`) VALUES ('81', 'dinning', '634660.0000', NULL, NULL); +INSERT INTO Products (`Product_ID`, `Product_Name`, `Product_Price`, `Product_Description`, `Other_Product_Service_Details`) VALUES ('83', 'film', '900.0000', NULL, NULL); + + +CREATE TABLE Marketing_Regions ( +Marketing_Region_Code CHAR(15) NOT NULL, +Marketing_Region_Name VARCHAR(255) NOT NULL, +Marketing_Region_Descriptrion VARCHAR(255) NOT NULL, +Other_Details VARCHAR(255), +PRIMARY KEY (Marketing_Region_Code), +UNIQUE (Marketing_Region_Code) +); + +INSERT INTO Marketing_Regions (`Marketing_Region_Code`, `Marketing_Region_Name`, `Marketing_Region_Descriptrion`, `Other_Details`) VALUES ('CA', 'Canada', 'Our target market', NULL); +INSERT INTO Marketing_Regions (`Marketing_Region_Code`, `Marketing_Region_Name`, `Marketing_Region_Descriptrion`, `Other_Details`) VALUES ('CN', 'China', 'Our largest market', NULL); +INSERT INTO Marketing_Regions (`Marketing_Region_Code`, `Marketing_Region_Name`, `Marketing_Region_Descriptrion`, `Other_Details`) VALUES ('ES', 'Spain', '', NULL); +INSERT INTO Marketing_Regions (`Marketing_Region_Code`, `Marketing_Region_Name`, `Marketing_Region_Descriptrion`, `Other_Details`) VALUES ('FR', 'France', '', NULL); +INSERT INTO Marketing_Regions (`Marketing_Region_Code`, `Marketing_Region_Name`, `Marketing_Region_Descriptrion`, `Other_Details`) VALUES ('IN', 'India', '', NULL); +INSERT INTO Marketing_Regions (`Marketing_Region_Code`, `Marketing_Region_Name`, `Marketing_Region_Descriptrion`, `Other_Details`) VALUES ('MX', 'Mexico', '', NULL); +INSERT INTO Marketing_Regions (`Marketing_Region_Code`, `Marketing_Region_Name`, `Marketing_Region_Descriptrion`, `Other_Details`) VALUES ('RU', 'Russia', '', NULL); +INSERT INTO Marketing_Regions (`Marketing_Region_Code`, `Marketing_Region_Name`, `Marketing_Region_Descriptrion`, `Other_Details`) VALUES ('US', 'United States', 'Our main market', NULL); + + +CREATE TABLE Clients ( +Client_ID INTEGER NOT NULL, +Address_ID INTEGER NOT NULL, +Customer_Email_Address VARCHAR(255), +Customer_Name VARCHAR(255), +Customer_Phone VARCHAR(255), +Other_Details VARCHAR(255), +PRIMARY KEY (Client_ID), +UNIQUE (Client_ID), +FOREIGN KEY (Address_ID) REFERENCES Addresses (Address_ID) +); +INSERT INTO Clients (`Client_ID`, `Address_ID`, `Customer_Email_Address`, `Customer_Name`, `Customer_Phone`, `Other_Details`) VALUES (423, 201, 'branson94@example.net', 'Clifford', '(042)912-3404x5135', 'VIP'); +INSERT INTO Clients (`Client_ID`, `Address_ID`, `Customer_Email_Address`, `Customer_Name`, `Customer_Phone`, `Other_Details`) VALUES (426, 383, 'alba04@example.com', 'Bettye', '(604)849-0214', NULL); +INSERT INTO Clients (`Client_ID`, `Address_ID`, `Customer_Email_Address`, `Customer_Name`, `Customer_Phone`, `Other_Details`) VALUES (478, 15, 'westley30@example.net', 'Reinhold', '1-048-214-4640x64380', NULL); +INSERT INTO Clients (`Client_ID`, `Address_ID`, `Customer_Email_Address`, `Customer_Name`, `Customer_Phone`, `Other_Details`) VALUES (508, 98, 'hudson.kristina@example.net', 'Jack', '(966)022-6448x3428', 'Super VIP'); +INSERT INTO Clients (`Client_ID`, `Address_ID`, `Customer_Email_Address`, `Customer_Name`, `Customer_Phone`, `Other_Details`) VALUES (509, 286, 'white.alysa@example.com', 'Rosanna', '(651)611-6111x61144', NULL); +INSERT INTO Clients (`Client_ID`, `Address_ID`, `Customer_Email_Address`, `Customer_Name`, `Customer_Phone`, `Other_Details`) VALUES (527, 74, 'buddy98@example.org', 'Kelton', '581.457.6800', NULL); +INSERT INTO Clients (`Client_ID`, `Address_ID`, `Customer_Email_Address`, `Customer_Name`, `Customer_Phone`, `Other_Details`) VALUES (591, 98, 'considine.shyanne@example.net', 'Connor', '1-479-550-1510x89172', NULL); +INSERT INTO Clients (`Client_ID`, `Address_ID`, `Customer_Email_Address`, `Customer_Name`, `Customer_Phone`, `Other_Details`) VALUES (605, 15, 'strosin.keara@example.com', 'Garfield', '+63(3)8897932425', NULL); +INSERT INTO Clients (`Client_ID`, `Address_ID`, `Customer_Email_Address`, `Customer_Name`, `Customer_Phone`, `Other_Details`) VALUES (628, 383, 'cconn@example.net', 'Urban', '405.225.1435', NULL); +INSERT INTO Clients (`Client_ID`, `Address_ID`, `Customer_Email_Address`, `Customer_Name`, `Customer_Phone`, `Other_Details`) VALUES (631, 374, 'qaltenwerth@example.com', 'Vita', '1-299-766-5382x3122', 'VIP'); +INSERT INTO Clients (`Client_ID`, `Address_ID`, `Customer_Email_Address`, `Customer_Name`, `Customer_Phone`, `Other_Details`) VALUES (699, 98, 'lbalistreri@example.net', 'Rory', '1-431-563-2576x9849', NULL); +INSERT INTO Clients (`Client_ID`, `Address_ID`, `Customer_Email_Address`, `Customer_Name`, `Customer_Phone`, `Other_Details`) VALUES (735, 110, 'dina.gutmann@example.net', 'Arvid', '(745)818-8559x747', NULL); +INSERT INTO Clients (`Client_ID`, `Address_ID`, `Customer_Email_Address`, `Customer_Name`, `Customer_Phone`, `Other_Details`) VALUES (768, 369, 'rempel.jamison@example.com', 'Consuelo', '(729)754-0764x6020', NULL); +INSERT INTO Clients (`Client_ID`, `Address_ID`, `Customer_Email_Address`, `Customer_Name`, `Customer_Phone`, `Other_Details`) VALUES (775, 383, 'jklocko@example.net', 'Alvis', '+12(5)4915316228', NULL); +INSERT INTO Clients (`Client_ID`, `Address_ID`, `Customer_Email_Address`, `Customer_Name`, `Customer_Phone`, `Other_Details`) VALUES (776, 374, 'lacy92@example.com', 'Tevin', '08761812417', NULL); +INSERT INTO Clients (`Client_ID`, `Address_ID`, `Customer_Email_Address`, `Customer_Name`, `Customer_Phone`, `Other_Details`) VALUES (868, 74, 'boyer.carleton@example.com', 'Krista', '(066)903-6363', NULL); +INSERT INTO Clients (`Client_ID`, `Address_ID`, `Customer_Email_Address`, `Customer_Name`, `Customer_Phone`, `Other_Details`) VALUES (887, 39, 'vparker@example.net', 'Genesis', '1-121-643-1101', NULL); +INSERT INTO Clients (`Client_ID`, `Address_ID`, `Customer_Email_Address`, `Customer_Name`, `Customer_Phone`, `Other_Details`) VALUES (938, 180, 'cleora.strosin@example.org', 'Horace', '935-161-0948x33010', NULL); +INSERT INTO Clients (`Client_ID`, `Address_ID`, `Customer_Email_Address`, `Customer_Name`, `Customer_Phone`, `Other_Details`) VALUES (943, 39, 'kbailey@example.com', 'Marquis', '398-003-6983x1691', NULL); +INSERT INTO Clients (`Client_ID`, `Address_ID`, `Customer_Email_Address`, `Customer_Name`, `Customer_Phone`, `Other_Details`) VALUES (953, 362, 'conn.josiane@example.com', 'Malcolm', '(995)964-6385', NULL); + + +CREATE TABLE Drama_Workshop_Groups ( +Workshop_Group_ID INTEGER NOT NULL, +Address_ID INTEGER NOT NULL, +Currency_Code CHAR(15) NOT NULL, +Marketing_Region_Code CHAR(15) NOT NULL, +Store_Name VARCHAR(255), +Store_Phone VARCHAR(255), +Store_Email_Address VARCHAR(255), +Other_Details VARCHAR(255), +PRIMARY KEY (Workshop_Group_ID), +UNIQUE (Workshop_Group_ID), +FOREIGN KEY (Address_ID) REFERENCES Addresses (Address_ID) +); +INSERT INTO Drama_Workshop_Groups (`Workshop_Group_ID`, `Address_ID`, `Currency_Code`, `Marketing_Region_Code`, `Store_Name`, `Store_Phone`, `Store_Email_Address`, `Other_Details`) VALUES (136, 383, 'EU', 'FR', 'Amely Cafe', '122-084-8029', 'amely.ruecker@example.com', NULL); +INSERT INTO Drama_Workshop_Groups (`Workshop_Group_ID`, `Address_ID`, `Currency_Code`, `Marketing_Region_Code`, `Store_Name`, `Store_Phone`, `Store_Email_Address`, `Other_Details`) VALUES (140, 180, 'EU', 'DE', 'Veda Film', '793-966-9311x5303', 'breitenberg.veda@example.com', NULL); +INSERT INTO Drama_Workshop_Groups (`Workshop_Group_ID`, `Address_ID`, `Currency_Code`, `Marketing_Region_Code`, `Store_Name`, `Store_Phone`, `Store_Email_Address`, `Other_Details`) VALUES (176, 286, 'EU', 'RU', 'Queen Art', '492-463-5967', 'quigley.queen@example.org', 'Good'); +INSERT INTO Drama_Workshop_Groups (`Workshop_Group_ID`, `Address_ID`, `Currency_Code`, `Marketing_Region_Code`, `Store_Name`, `Store_Phone`, `Store_Email_Address`, `Other_Details`) VALUES (314, 369, 'EU', 'RU', 'Kole Photo', '(256)743-0310', 'kole.torp@example.org', NULL); +INSERT INTO Drama_Workshop_Groups (`Workshop_Group_ID`, `Address_ID`, `Currency_Code`, `Marketing_Region_Code`, `Store_Name`, `Store_Phone`, `Store_Email_Address`, `Other_Details`) VALUES (382, 266, 'USD', 'US', 'WAT Food', '(411)133-9128', 'watsica.hettie@example.com', NULL); +INSERT INTO Drama_Workshop_Groups (`Workshop_Group_ID`, `Address_ID`, `Currency_Code`, `Marketing_Region_Code`, `Store_Name`, `Store_Phone`, `Store_Email_Address`, `Other_Details`) VALUES (405, 207, 'EU', 'ES', 'Hansen Print', '1-764-337-3453', 'hansen.krista@example.net', 'Good'); +INSERT INTO Drama_Workshop_Groups (`Workshop_Group_ID`, `Address_ID`, `Currency_Code`, `Marketing_Region_Code`, `Store_Name`, `Store_Phone`, `Store_Email_Address`, `Other_Details`) VALUES (415, 383, 'EU', 'RU', 'Roo Place', '(422)705-5633', 'roosevelt61@example.com', NULL); +INSERT INTO Drama_Workshop_Groups (`Workshop_Group_ID`, `Address_ID`, `Currency_Code`, `Marketing_Region_Code`, `Store_Name`, `Store_Phone`, `Store_Email_Address`, `Other_Details`) VALUES (431, 110, 'USD', 'MX', 'Uhuels Fruit', '(636)443-4067', 'uhuels@example.net', NULL); +INSERT INTO Drama_Workshop_Groups (`Workshop_Group_ID`, `Address_ID`, `Currency_Code`, `Marketing_Region_Code`, `Store_Name`, `Store_Phone`, `Store_Email_Address`, `Other_Details`) VALUES (470, 369, 'USD', 'DE', 'Harry Beef', '(904)958-9909x0087', 'harry.nicolas@example.org', NULL); +INSERT INTO Drama_Workshop_Groups (`Workshop_Group_ID`, `Address_ID`, `Currency_Code`, `Marketing_Region_Code`, `Store_Name`, `Store_Phone`, `Store_Email_Address`, `Other_Details`) VALUES (685, 201, 'EU', 'RU', 'Welch Flower', '334-591-4561x465', 'welch.colby@example.net', 'Bad'); +INSERT INTO Drama_Workshop_Groups (`Workshop_Group_ID`, `Address_ID`, `Currency_Code`, `Marketing_Region_Code`, `Store_Name`, `Store_Phone`, `Store_Email_Address`, `Other_Details`) VALUES (708, 230, 'EU', 'RU', 'Kling Workshop', '499-032-2149', 'katherine.kling@example.org', NULL); +INSERT INTO Drama_Workshop_Groups (`Workshop_Group_ID`, `Address_ID`, `Currency_Code`, `Marketing_Region_Code`, `Store_Name`, `Store_Phone`, `Store_Email_Address`, `Other_Details`) VALUES (735, 286, 'EU', 'FR', 'Orn News', '+60(6)8081312118', 'arturo.orn@example.org', NULL); +INSERT INTO Drama_Workshop_Groups (`Workshop_Group_ID`, `Address_ID`, `Currency_Code`, `Marketing_Region_Code`, `Store_Name`, `Store_Phone`, `Store_Email_Address`, `Other_Details`) VALUES (838, 124, 'EU', 'RU', 'Bednar Film', '1-351-773-1587x95545', 'bednar.michael@example.org', NULL); +INSERT INTO Drama_Workshop_Groups (`Workshop_Group_ID`, `Address_ID`, `Currency_Code`, `Marketing_Region_Code`, `Store_Name`, `Store_Phone`, `Store_Email_Address`, `Other_Details`) VALUES (942, 98, 'EU', 'IE', 'Kessler Exploration', '(020)161-0983x567', 'kessler.maximillia@example.net', NULL); +INSERT INTO Drama_Workshop_Groups (`Workshop_Group_ID`, `Address_ID`, `Currency_Code`, `Marketing_Region_Code`, `Store_Name`, `Store_Phone`, `Store_Email_Address`, `Other_Details`) VALUES (954, 374, 'EU', 'PT', 'Warino Photo', '1-811-875-3222', 'waino.king@example.com', NULL); + + + +CREATE TABLE Performers ( +Performer_ID INTEGER NOT NULL, +Address_ID INTEGER NOT NULL, +Customer_Name VARCHAR(255), +Customer_Phone VARCHAR(255), +Customer_Email_Address VARCHAR(255), +Other_Details VARCHAR(255), +PRIMARY KEY (Performer_ID), +UNIQUE (Performer_ID), +FOREIGN KEY (Address_ID) REFERENCES Addresses (Address_ID) +); +INSERT INTO Performers (`Performer_ID`, `Address_ID`, `Customer_Name`, `Customer_Phone`, `Customer_Email_Address`, `Other_Details`) VALUES (153, 124, 'Shawna', '664.495.1939', 'krogahn@example.com', NULL); +INSERT INTO Performers (`Performer_ID`, `Address_ID`, `Customer_Name`, `Customer_Phone`, `Customer_Email_Address`, `Other_Details`) VALUES (211, 124, 'Ashley', '893-536-8857', 'preston45@example.net', NULL); +INSERT INTO Performers (`Performer_ID`, `Address_ID`, `Customer_Name`, `Customer_Phone`, `Customer_Email_Address`, `Other_Details`) VALUES (313, 39, 'Oren', '1-952-052-6685x28082', 'ferry.carolina@example.net', NULL); +INSERT INTO Performers (`Performer_ID`, `Address_ID`, `Customer_Name`, `Customer_Phone`, `Customer_Email_Address`, `Other_Details`) VALUES (341, 110, 'Issac', '08639382978', 'wisozk.john@example.org', NULL); +INSERT INTO Performers (`Performer_ID`, `Address_ID`, `Customer_Name`, `Customer_Phone`, `Customer_Email_Address`, `Other_Details`) VALUES (360, 207, 'Shaniya', '472.072.6649x4161', 'wschroeder@example.org', NULL); +INSERT INTO Performers (`Performer_ID`, `Address_ID`, `Customer_Name`, `Customer_Phone`, `Customer_Email_Address`, `Other_Details`) VALUES (376, 180, 'Peyton', '905.705.9514', 'clotilde04@example.net', NULL); +INSERT INTO Performers (`Performer_ID`, `Address_ID`, `Customer_Name`, `Customer_Phone`, `Customer_Email_Address`, `Other_Details`) VALUES (379, 192, 'Trudie', '782-118-0067', 'trey88@example.net', NULL); +INSERT INTO Performers (`Performer_ID`, `Address_ID`, `Customer_Name`, `Customer_Phone`, `Customer_Email_Address`, `Other_Details`) VALUES (415, 110, 'Gwen', '342-389-0010x682', 'okub@example.org', NULL); +INSERT INTO Performers (`Performer_ID`, `Address_ID`, `Customer_Name`, `Customer_Phone`, `Customer_Email_Address`, `Other_Details`) VALUES (433, 110, 'Doyle', '547.535.3455', 'otilia.ortiz@example.net', NULL); +INSERT INTO Performers (`Performer_ID`, `Address_ID`, `Customer_Name`, `Customer_Phone`, `Customer_Email_Address`, `Other_Details`) VALUES (448, 192, 'Fritz', '858.603.7004', 'cummings.matteo@example.com', 'Did not pay'); +INSERT INTO Performers (`Performer_ID`, `Address_ID`, `Customer_Name`, `Customer_Phone`, `Customer_Email_Address`, `Other_Details`) VALUES (466, 374, 'Tyrique', '1-417-019-8634', 'cokuneva@example.com', NULL); +INSERT INTO Performers (`Performer_ID`, `Address_ID`, `Customer_Name`, `Customer_Phone`, `Customer_Email_Address`, `Other_Details`) VALUES (650, 15, 'Keanu', '(654)496-1642x31167', 'hudson.cristobal@example.net', 'Did not pay'); +INSERT INTO Performers (`Performer_ID`, `Address_ID`, `Customer_Name`, `Customer_Phone`, `Customer_Email_Address`, `Other_Details`) VALUES (656, 148, 'Dariana', '320.705.7190x0354', 'hbreitenberg@example.com', NULL); +INSERT INTO Performers (`Performer_ID`, `Address_ID`, `Customer_Name`, `Customer_Phone`, `Customer_Email_Address`, `Other_Details`) VALUES (798, 266, 'Sid', '1-260-605-6483', 'kellen89@example.com', NULL); +INSERT INTO Performers (`Performer_ID`, `Address_ID`, `Customer_Name`, `Customer_Phone`, `Customer_Email_Address`, `Other_Details`) VALUES (808, 374, 'Vernon', '+11(1)8172674604', 'ianderson@example.com', 'Pay good tips'); +INSERT INTO Performers (`Performer_ID`, `Address_ID`, `Customer_Name`, `Customer_Phone`, `Customer_Email_Address`, `Other_Details`) VALUES (832, 124, 'Marques', '087-833-4617x095', 'joel24@example.com', NULL); +INSERT INTO Performers (`Performer_ID`, `Address_ID`, `Customer_Name`, `Customer_Phone`, `Customer_Email_Address`, `Other_Details`) VALUES (882, 207, 'Destiney', '(054)005-5168', 'jennyfer81@example.com', NULL); +INSERT INTO Performers (`Performer_ID`, `Address_ID`, `Customer_Name`, `Customer_Phone`, `Customer_Email_Address`, `Other_Details`) VALUES (904, 314, 'Jeanie', '323-787-3435x31522', 'anderson34@example.net', NULL); +INSERT INTO Performers (`Performer_ID`, `Address_ID`, `Customer_Name`, `Customer_Phone`, `Customer_Email_Address`, `Other_Details`) VALUES (954, 362, 'Joannie', '1-856-024-7910x2017', 'chaim10@example.com', NULL); +INSERT INTO Performers (`Performer_ID`, `Address_ID`, `Customer_Name`, `Customer_Phone`, `Customer_Email_Address`, `Other_Details`) VALUES (976, 19, 'Elyse', '483.180.0168x1288', 'myrtice.satterfield@example.net', NULL); + + +CREATE TABLE Customers ( +Customer_ID VARCHAR(100) NOT NULL, +Address_ID INTEGER NOT NULL, +Customer_Name VARCHAR(255), +Customer_Phone VARCHAR(255), +Customer_Email_Address VARCHAR(255), +Other_Details VARCHAR(255), +PRIMARY KEY (Customer_ID), +UNIQUE (Customer_ID), +FOREIGN KEY (Address_ID) REFERENCES Addresses (Address_ID) +); +INSERT INTO Customers (`Customer_ID`, `Address_ID`, `Customer_Name`, `Customer_Phone`, `Customer_Email_Address`, `Other_Details`) VALUES ('240', 286, 'Harold', '624-096-7791', 'jerde.harmon@example.com', NULL); +INSERT INTO Customers (`Customer_ID`, `Address_ID`, `Customer_Name`, `Customer_Phone`, `Customer_Email_Address`, `Other_Details`) VALUES ('267', 98, 'Federico', '914-915-7483', 'johnson27@example.com', NULL); +INSERT INTO Customers (`Customer_ID`, `Address_ID`, `Customer_Name`, `Customer_Phone`, `Customer_Email_Address`, `Other_Details`) VALUES ('304', 369, 'Samson', '1-463-121-4086x655', 'dalton75@example.com', NULL); +INSERT INTO Customers (`Customer_ID`, `Address_ID`, `Customer_Name`, `Customer_Phone`, `Customer_Email_Address`, `Other_Details`) VALUES ('418', 369, 'Daryl', '(191)727-6065x6351', 'hickle.jazmyn@example.org', NULL); +INSERT INTO Customers (`Customer_ID`, `Address_ID`, `Customer_Name`, `Customer_Phone`, `Customer_Email_Address`, `Other_Details`) VALUES ('516', 110, 'Robert', '903.657.6967x467', 'fheathcote@example.com', 'VIP'); +INSERT INTO Customers (`Customer_ID`, `Address_ID`, `Customer_Name`, `Customer_Phone`, `Customer_Email_Address`, `Other_Details`) VALUES ('518', 180, 'Jacques', '02902266118', 'eleannon@example.org', NULL); +INSERT INTO Customers (`Customer_ID`, `Address_ID`, `Customer_Name`, `Customer_Phone`, `Customer_Email_Address`, `Other_Details`) VALUES ('546', 266, 'Davonte', '(941)313-1839x94608', 'keanu70@example.net', 'VIP'); +INSERT INTO Customers (`Customer_ID`, `Address_ID`, `Customer_Name`, `Customer_Phone`, `Customer_Email_Address`, `Other_Details`) VALUES ('556', 19, 'Blake', '056.568.7725', 'clemens43@example.org', NULL); +INSERT INTO Customers (`Customer_ID`, `Address_ID`, `Customer_Name`, `Customer_Phone`, `Customer_Email_Address`, `Other_Details`) VALUES ('633', 148, 'Elwyn', '388.863.3459x0915', 'ggrant@example.com', NULL); +INSERT INTO Customers (`Customer_ID`, `Address_ID`, `Customer_Name`, `Customer_Phone`, `Customer_Email_Address`, `Other_Details`) VALUES ('712', 266, 'Alek', '398.352.1753', 'terry.nels@example.com', NULL); +INSERT INTO Customers (`Customer_ID`, `Address_ID`, `Customer_Name`, `Customer_Phone`, `Customer_Email_Address`, `Other_Details`) VALUES ('714', 230, 'Adelbert', '(514)659-1318x46123', 'hermann.veum@example.org', NULL); +INSERT INTO Customers (`Customer_ID`, `Address_ID`, `Customer_Name`, `Customer_Phone`, `Customer_Email_Address`, `Other_Details`) VALUES ('793', 74, 'Isaiah', '347.178.3326', 'dudley08@example.net', NULL); +INSERT INTO Customers (`Customer_ID`, `Address_ID`, `Customer_Name`, `Customer_Phone`, `Customer_Email_Address`, `Other_Details`) VALUES ('823', 383, 'Ephraim', '03189033909', 'gage.johns@example.org', NULL); +INSERT INTO Customers (`Customer_ID`, `Address_ID`, `Customer_Name`, `Customer_Phone`, `Customer_Email_Address`, `Other_Details`) VALUES ('957', 207, 'Cedrick', '620-987-5897', 'nschmidt@example.org', NULL); +INSERT INTO Customers (`Customer_ID`, `Address_ID`, `Customer_Name`, `Customer_Phone`, `Customer_Email_Address`, `Other_Details`) VALUES ('998', 201, 'Wade', '+46(5)7576252034', 'cassin.cielo@example.org', NULL); + + +CREATE TABLE Stores ( +Store_ID VARCHAR(100) NOT NULL, +Address_ID INTEGER NOT NULL, +Marketing_Region_Code CHAR(15) NOT NULL, +Store_Name VARCHAR(255), +Store_Phone VARCHAR(255), +Store_Email_Address VARCHAR(255), +Other_Details VARCHAR(255), +PRIMARY KEY (Store_ID), +UNIQUE (Store_ID), +FOREIGN KEY (Address_ID) REFERENCES Addresses (Address_ID), +FOREIGN KEY (Marketing_Region_Code) REFERENCES Marketing_Regions (Marketing_Region_Code) +); +INSERT INTO Stores (`Store_ID`, `Address_ID`, `Marketing_Region_Code`, `Store_Name`, `Store_Phone`, `Store_Email_Address`, `Other_Details`) VALUES ('150', 286, 'IN', 'FJA Filming', '+65(1)3590790358', 'fjacobson@example.com', NULL); +INSERT INTO Stores (`Store_ID`, `Address_ID`, `Marketing_Region_Code`, `Store_Name`, `Store_Phone`, `Store_Email_Address`, `Other_Details`) VALUES ('229', 266, 'CA', 'Rob Dinning', '1-327-185-9368', 'rborer@example.org', '5 stars'); +INSERT INTO Stores (`Store_ID`, `Address_ID`, `Marketing_Region_Code`, `Store_Name`, `Store_Phone`, `Store_Email_Address`, `Other_Details`) VALUES ('231', 230, 'ES', 'Adan Dinning', '896-931-9633x869', 'adan93@example.com', NULL); +INSERT INTO Stores (`Store_ID`, `Address_ID`, `Marketing_Region_Code`, `Store_Name`, `Store_Phone`, `Store_Email_Address`, `Other_Details`) VALUES ('236', 74, 'CA', 'Fred Dinning', '893-457-3102x4293', 'frederik37@example.org', NULL); +INSERT INTO Stores (`Store_ID`, `Address_ID`, `Marketing_Region_Code`, `Store_Name`, `Store_Phone`, `Store_Email_Address`, `Other_Details`) VALUES ('291', 266, 'RU', 'Ewi Filming', '+46(1)1411714927', 'ewisoky@example.org', NULL); +INSERT INTO Stores (`Store_ID`, `Address_ID`, `Marketing_Region_Code`, `Store_Name`, `Store_Phone`, `Store_Email_Address`, `Other_Details`) VALUES ('344', 369, 'ES', 'Shery Photo', '1-678-902-9434x1148', 'shirley07@example.net', '4 stars'); +INSERT INTO Stores (`Store_ID`, `Address_ID`, `Marketing_Region_Code`, `Store_Name`, `Store_Phone`, `Store_Email_Address`, `Other_Details`) VALUES ('421', 192, 'FR', 'Carmol Photo', '(941)444-7666x7089', 'carmel04@example.com', '3 stars'); +INSERT INTO Stores (`Store_ID`, `Address_ID`, `Marketing_Region_Code`, `Store_Name`, `Store_Phone`, `Store_Email_Address`, `Other_Details`) VALUES ('444', 110, 'CN', 'FK Filming', '086-705-8793', 'fkuvalis@example.net', NULL); +INSERT INTO Stores (`Store_ID`, `Address_ID`, `Marketing_Region_Code`, `Store_Name`, `Store_Phone`, `Store_Email_Address`, `Other_Details`) VALUES ('512', 369, 'CA', 'Adam Photo', '127.870.0753x54565', 'adams.miles@example.net', '5 stars'); +INSERT INTO Stores (`Store_ID`, `Address_ID`, `Marketing_Region_Code`, `Store_Name`, `Store_Phone`, `Store_Email_Address`, `Other_Details`) VALUES ('518', 110, 'ES', 'Lur Photo', '605-319-8245', 'lurline24@example.org', NULL); + + +CREATE TABLE Bookings ( +Booking_ID INTEGER NOT NULL , +Customer_ID INTEGER NOT NULL, +Workshop_Group_ID VARCHAR(100) NOT NULL, +Status_Code CHAR(15) NOT NULL, +Store_ID INTEGER NOT NULL, +Order_Date DATETIME NOT NULL, +Planned_Delivery_Date DATETIME NOT NULL, +Actual_Delivery_Date DATETIME NOT NULL, +Other_Order_Details VARCHAR(255), +PRIMARY KEY (Booking_ID), +UNIQUE (Booking_ID), +FOREIGN KEY (Customer_ID) REFERENCES Clients (Client_ID), +FOREIGN KEY (Workshop_Group_ID) REFERENCES Drama_Workshop_Groups (Workshop_Group_ID) +); +INSERT INTO Bookings (`Booking_ID`, `Customer_ID`, `Workshop_Group_ID`, `Status_Code`, `Store_ID`, `Order_Date`, `Planned_Delivery_Date`, `Actual_Delivery_Date`, `Other_Order_Details`) VALUES (1, 938, '140', 'good', 8, '2016-12-12 10:43:01', '2013-03-10 18:47:05', '1997-11-21 10:07:40', NULL); +INSERT INTO Bookings (`Booking_ID`, `Customer_ID`, `Workshop_Group_ID`, `Status_Code`, `Store_ID`, `Order_Date`, `Planned_Delivery_Date`, `Actual_Delivery_Date`, `Other_Order_Details`) VALUES (2, 868, '838', 'stop', 7, '1976-08-20 00:33:08', '2009-07-09 09:18:38', '1976-01-08 07:19:23', NULL); +INSERT INTO Bookings (`Booking_ID`, `Customer_ID`, `Workshop_Group_ID`, `Status_Code`, `Store_ID`, `Order_Date`, `Planned_Delivery_Date`, `Actual_Delivery_Date`, `Other_Order_Details`) VALUES (3, 735, '176', 'good', 9, '1975-11-23 06:28:47', '1989-01-05 19:24:45', '1990-03-16 19:38:47', NULL); +INSERT INTO Bookings (`Booking_ID`, `Customer_ID`, `Workshop_Group_ID`, `Status_Code`, `Store_ID`, `Order_Date`, `Planned_Delivery_Date`, `Actual_Delivery_Date`, `Other_Order_Details`) VALUES (4, 527, '708', 'stop', 6, '1995-02-02 15:52:57', '2017-04-27 00:16:00', '1996-10-24 21:15:27', NULL); +INSERT INTO Bookings (`Booking_ID`, `Customer_ID`, `Workshop_Group_ID`, `Status_Code`, `Store_ID`, `Order_Date`, `Planned_Delivery_Date`, `Actual_Delivery_Date`, `Other_Order_Details`) VALUES (5, 591, '176', 'good', 9, '1995-05-10 14:49:47', '1979-07-19 19:44:01', '1971-01-13 13:24:52', NULL); +INSERT INTO Bookings (`Booking_ID`, `Customer_ID`, `Workshop_Group_ID`, `Status_Code`, `Store_ID`, `Order_Date`, `Planned_Delivery_Date`, `Actual_Delivery_Date`, `Other_Order_Details`) VALUES (6, 953, '735', 'good', 1, '1992-11-26 18:11:10', '2016-06-06 20:35:14', '2016-04-30 11:45:39', NULL); +INSERT INTO Bookings (`Booking_ID`, `Customer_ID`, `Workshop_Group_ID`, `Status_Code`, `Store_ID`, `Order_Date`, `Planned_Delivery_Date`, `Actual_Delivery_Date`, `Other_Order_Details`) VALUES (7, 735, '954', 'stop', 4, '1975-12-30 14:12:32', '2008-07-18 18:15:40', '1983-10-09 10:48:48', NULL); +INSERT INTO Bookings (`Booking_ID`, `Customer_ID`, `Workshop_Group_ID`, `Status_Code`, `Store_ID`, `Order_Date`, `Planned_Delivery_Date`, `Actual_Delivery_Date`, `Other_Order_Details`) VALUES (8, 605, '176', 'good', 2, '1992-05-11 23:22:41', '1973-04-02 03:10:21', '1983-07-01 22:10:19', NULL); +INSERT INTO Bookings (`Booking_ID`, `Customer_ID`, `Workshop_Group_ID`, `Status_Code`, `Store_ID`, `Order_Date`, `Planned_Delivery_Date`, `Actual_Delivery_Date`, `Other_Order_Details`) VALUES (9, 508, '405', 'good', 4, '1971-05-11 06:53:01', '1974-05-07 21:40:39', '1986-10-04 13:31:10', NULL); +INSERT INTO Bookings (`Booking_ID`, `Customer_ID`, `Workshop_Group_ID`, `Status_Code`, `Store_ID`, `Order_Date`, `Planned_Delivery_Date`, `Actual_Delivery_Date`, `Other_Order_Details`) VALUES (10, 938, '735', 'good', 4, '1982-05-19 05:37:51', '1999-05-11 01:26:06', '1989-11-17 00:32:13', NULL); +INSERT INTO Bookings (`Booking_ID`, `Customer_ID`, `Workshop_Group_ID`, `Status_Code`, `Store_ID`, `Order_Date`, `Planned_Delivery_Date`, `Actual_Delivery_Date`, `Other_Order_Details`) VALUES (11, 423, '136', 'good', 4, '1991-10-11 17:24:15', '1978-04-10 12:23:59', '1983-02-07 20:27:10', NULL); +INSERT INTO Bookings (`Booking_ID`, `Customer_ID`, `Workshop_Group_ID`, `Status_Code`, `Store_ID`, `Order_Date`, `Planned_Delivery_Date`, `Actual_Delivery_Date`, `Other_Order_Details`) VALUES (12, 776, '954', 'good', 5, '1984-12-17 12:53:51', '2014-06-05 10:19:46', '1985-09-02 11:34:39', NULL); +INSERT INTO Bookings (`Booking_ID`, `Customer_ID`, `Workshop_Group_ID`, `Status_Code`, `Store_ID`, `Order_Date`, `Planned_Delivery_Date`, `Actual_Delivery_Date`, `Other_Order_Details`) VALUES (13, 605, '685', 'good', 6, '1996-09-14 10:17:55', '1993-04-17 23:53:01', '1982-04-18 02:59:08', NULL); +INSERT INTO Bookings (`Booking_ID`, `Customer_ID`, `Workshop_Group_ID`, `Status_Code`, `Store_ID`, `Order_Date`, `Planned_Delivery_Date`, `Actual_Delivery_Date`, `Other_Order_Details`) VALUES (14, 426, '954', 'stop', 6, '2007-08-05 15:46:29', '1971-06-29 03:04:47', '1995-12-21 05:01:38', NULL); +INSERT INTO Bookings (`Booking_ID`, `Customer_ID`, `Workshop_Group_ID`, `Status_Code`, `Store_ID`, `Order_Date`, `Planned_Delivery_Date`, `Actual_Delivery_Date`, `Other_Order_Details`) VALUES (15, 426, '176', 'stop', 8, '1976-10-24 07:40:47', '1972-06-25 15:51:34', '2004-02-22 04:37:14', NULL); + + +CREATE TABLE Performers_in_Bookings ( +Order_ID INTEGER NOT NULL, +Performer_ID INTEGER NOT NULL, +PRIMARY KEY (Order_ID, Performer_ID), +FOREIGN KEY (Performer_ID) REFERENCES Performers (Performer_ID), +FOREIGN KEY (Order_ID) REFERENCES Bookings (Booking_ID) +); +INSERT INTO Performers_in_Bookings (`Order_ID`, `Performer_ID`) VALUES (1, 153); +INSERT INTO Performers_in_Bookings (`Order_ID`, `Performer_ID`) VALUES (1, 341); +INSERT INTO Performers_in_Bookings (`Order_ID`, `Performer_ID`) VALUES (2, 466); +INSERT INTO Performers_in_Bookings (`Order_ID`, `Performer_ID`) VALUES (3, 798); +INSERT INTO Performers_in_Bookings (`Order_ID`, `Performer_ID`) VALUES (4, 313); +INSERT INTO Performers_in_Bookings (`Order_ID`, `Performer_ID`) VALUES (7, 882); +INSERT INTO Performers_in_Bookings (`Order_ID`, `Performer_ID`) VALUES (8, 650); +INSERT INTO Performers_in_Bookings (`Order_ID`, `Performer_ID`) VALUES (8, 976); +INSERT INTO Performers_in_Bookings (`Order_ID`, `Performer_ID`) VALUES (9, 376); +INSERT INTO Performers_in_Bookings (`Order_ID`, `Performer_ID`) VALUES (9, 656); +INSERT INTO Performers_in_Bookings (`Order_ID`, `Performer_ID`) VALUES (9, 954); +INSERT INTO Performers_in_Bookings (`Order_ID`, `Performer_ID`) VALUES (11, 360); +INSERT INTO Performers_in_Bookings (`Order_ID`, `Performer_ID`) VALUES (13, 313); +INSERT INTO Performers_in_Bookings (`Order_ID`, `Performer_ID`) VALUES (13, 808); +INSERT INTO Performers_in_Bookings (`Order_ID`, `Performer_ID`) VALUES (15, 313); +INSERT INTO Performers_in_Bookings (`Order_ID`, `Performer_ID`) VALUES (15, 656); +INSERT INTO Performers_in_Bookings (`Order_ID`, `Performer_ID`) VALUES (15, 832); +INSERT INTO Performers_in_Bookings (`Order_ID`, `Performer_ID`) VALUES (15, 904); + + +CREATE TABLE Customer_Orders ( +Order_ID INTEGER NOT NULL , +Customer_ID INTEGER NOT NULL, +Store_ID INTEGER NOT NULL, +Order_Date DATETIME NOT NULL, +Planned_Delivery_Date DATETIME NOT NULL, +Actual_Delivery_Date DATETIME NOT NULL, +Other_Order_Details VARCHAR(255), +PRIMARY KEY (Order_ID), +UNIQUE (Order_ID), +FOREIGN KEY (Customer_ID) REFERENCES Customers (Customer_ID), +FOREIGN KEY (Store_ID) REFERENCES Stores (Store_ID) +); +INSERT INTO Customer_Orders (`Order_ID`, `Customer_ID`, `Store_ID`, `Order_Date`, `Planned_Delivery_Date`, `Actual_Delivery_Date`, `Other_Order_Details`) VALUES (1, 516, 231, '1994-08-03 12:34:58', '1977-03-11 03:58:19', '1992-07-21 22:11:11', NULL); +INSERT INTO Customer_Orders (`Order_ID`, `Customer_ID`, `Store_ID`, `Order_Date`, `Planned_Delivery_Date`, `Actual_Delivery_Date`, `Other_Order_Details`) VALUES (2, 418, 229, '2014-07-10 10:56:01', '1996-08-26 19:19:59', '1998-08-22 17:57:32', NULL); +INSERT INTO Customer_Orders (`Order_ID`, `Customer_ID`, `Store_ID`, `Order_Date`, `Planned_Delivery_Date`, `Actual_Delivery_Date`, `Other_Order_Details`) VALUES (3, 712, 229, '1981-06-20 16:29:43', '1980-12-19 05:49:35', '2011-04-13 07:15:35', NULL); +INSERT INTO Customer_Orders (`Order_ID`, `Customer_ID`, `Store_ID`, `Order_Date`, `Planned_Delivery_Date`, `Actual_Delivery_Date`, `Other_Order_Details`) VALUES (4, 240, 229, '1999-11-20 18:48:05', '1973-08-20 08:52:39', '2004-03-27 23:30:12', NULL); +INSERT INTO Customer_Orders (`Order_ID`, `Customer_ID`, `Store_ID`, `Order_Date`, `Planned_Delivery_Date`, `Actual_Delivery_Date`, `Other_Order_Details`) VALUES (5, 418, 150, '1973-02-16 19:28:34', '1990-09-25 07:14:01', '2004-04-23 21:19:39', NULL); +INSERT INTO Customer_Orders (`Order_ID`, `Customer_ID`, `Store_ID`, `Order_Date`, `Planned_Delivery_Date`, `Actual_Delivery_Date`, `Other_Order_Details`) VALUES (6, 556, 344, '1988-11-13 15:42:13', '2012-05-19 00:38:52', '2015-06-20 20:51:17', NULL); +INSERT INTO Customer_Orders (`Order_ID`, `Customer_ID`, `Store_ID`, `Order_Date`, `Planned_Delivery_Date`, `Actual_Delivery_Date`, `Other_Order_Details`) VALUES (7, 546, 291, '1998-03-10 14:01:00', '2014-06-18 09:42:23', '1972-08-15 19:12:14', NULL); +INSERT INTO Customer_Orders (`Order_ID`, `Customer_ID`, `Store_ID`, `Order_Date`, `Planned_Delivery_Date`, `Actual_Delivery_Date`, `Other_Order_Details`) VALUES (8, 240, 231, '1979-09-01 06:29:01', '1996-05-17 09:10:57', '1996-02-16 04:20:17', NULL); +INSERT INTO Customer_Orders (`Order_ID`, `Customer_ID`, `Store_ID`, `Order_Date`, `Planned_Delivery_Date`, `Actual_Delivery_Date`, `Other_Order_Details`) VALUES (9, 240, 344, '1993-11-22 14:56:28', '1984-05-07 12:05:33', '1976-05-20 03:24:23', NULL); +INSERT INTO Customer_Orders (`Order_ID`, `Customer_ID`, `Store_ID`, `Order_Date`, `Planned_Delivery_Date`, `Actual_Delivery_Date`, `Other_Order_Details`) VALUES (10, 546, 518, '1985-05-29 01:20:18', '1977-07-08 16:35:46', '2003-12-16 23:37:19', NULL); +INSERT INTO Customer_Orders (`Order_ID`, `Customer_ID`, `Store_ID`, `Order_Date`, `Planned_Delivery_Date`, `Actual_Delivery_Date`, `Other_Order_Details`) VALUES (11, 304, 421, '2000-07-03 21:41:50', '1994-08-08 03:08:23', '1990-11-14 03:53:06', NULL); +INSERT INTO Customer_Orders (`Order_ID`, `Customer_ID`, `Store_ID`, `Order_Date`, `Planned_Delivery_Date`, `Actual_Delivery_Date`, `Other_Order_Details`) VALUES (12, 516, 231, '2011-01-05 08:01:07', '2004-04-24 01:52:57', '1993-09-16 23:20:05', NULL); +INSERT INTO Customer_Orders (`Order_ID`, `Customer_ID`, `Store_ID`, `Order_Date`, `Planned_Delivery_Date`, `Actual_Delivery_Date`, `Other_Order_Details`) VALUES (13, 240, 512, '2003-06-24 11:44:51', '1979-05-15 03:00:09', '2011-04-23 06:39:09', NULL); +INSERT INTO Customer_Orders (`Order_ID`, `Customer_ID`, `Store_ID`, `Order_Date`, `Planned_Delivery_Date`, `Actual_Delivery_Date`, `Other_Order_Details`) VALUES (14, 546, 444, '1971-05-12 10:12:46', '1987-03-21 18:50:27', '2016-10-18 16:11:20', NULL); +INSERT INTO Customer_Orders (`Order_ID`, `Customer_ID`, `Store_ID`, `Order_Date`, `Planned_Delivery_Date`, `Actual_Delivery_Date`, `Other_Order_Details`) VALUES (15, 712, 231, '2008-04-02 18:00:15', '1994-11-12 04:49:11', '1996-04-13 19:05:34', NULL); + +CREATE TABLE Order_Items ( +Order_Item_ID INTEGER NOT NULL , +Order_ID INTEGER NOT NULL, +Product_ID INTEGER NOT NULL, +Order_Quantity VARCHAR(288), +Other_Item_Details VARCHAR(255), +PRIMARY KEY (Order_Item_ID), +FOREIGN KEY (Order_ID) REFERENCES Customer_Orders (Order_ID), +FOREIGN KEY (Product_ID) REFERENCES Products (Product_ID) +); +INSERT INTO Order_Items (`Order_Item_ID`, `Order_ID`, `Product_ID`, `Order_Quantity`, `Other_Item_Details`) VALUES (1, 3, 233, '1', NULL); +INSERT INTO Order_Items (`Order_Item_ID`, `Order_ID`, `Product_ID`, `Order_Quantity`, `Other_Item_Details`) VALUES (2, 15, 300, '2', NULL); +INSERT INTO Order_Items (`Order_Item_ID`, `Order_ID`, `Product_ID`, `Order_Quantity`, `Other_Item_Details`) VALUES (3, 12, 300, '1', NULL); +INSERT INTO Order_Items (`Order_Item_ID`, `Order_ID`, `Product_ID`, `Order_Quantity`, `Other_Item_Details`) VALUES (4, 4, 273, '1', NULL); +INSERT INTO Order_Items (`Order_Item_ID`, `Order_ID`, `Product_ID`, `Order_Quantity`, `Other_Item_Details`) VALUES (5, 3, 46, '2', NULL); +INSERT INTO Order_Items (`Order_Item_ID`, `Order_ID`, `Product_ID`, `Order_Quantity`, `Other_Item_Details`) VALUES (6, 5, 83, '2', NULL); +INSERT INTO Order_Items (`Order_Item_ID`, `Order_ID`, `Product_ID`, `Order_Quantity`, `Other_Item_Details`) VALUES (7, 10, 179, '2', NULL); +INSERT INTO Order_Items (`Order_Item_ID`, `Order_ID`, `Product_ID`, `Order_Quantity`, `Other_Item_Details`) VALUES (8, 4, 156, '1', NULL); +INSERT INTO Order_Items (`Order_Item_ID`, `Order_ID`, `Product_ID`, `Order_Quantity`, `Other_Item_Details`) VALUES (9, 12, 216, '1', NULL); +INSERT INTO Order_Items (`Order_Item_ID`, `Order_ID`, `Product_ID`, `Order_Quantity`, `Other_Item_Details`) VALUES (10, 11, 46, '1', NULL); +INSERT INTO Order_Items (`Order_Item_ID`, `Order_ID`, `Product_ID`, `Order_Quantity`, `Other_Item_Details`) VALUES (11, 2, 300, '1', NULL); +INSERT INTO Order_Items (`Order_Item_ID`, `Order_ID`, `Product_ID`, `Order_Quantity`, `Other_Item_Details`) VALUES (12, 12, 156, '2', NULL); +INSERT INTO Order_Items (`Order_Item_ID`, `Order_ID`, `Product_ID`, `Order_Quantity`, `Other_Item_Details`) VALUES (13, 6, 233, '1', NULL); +INSERT INTO Order_Items (`Order_Item_ID`, `Order_ID`, `Product_ID`, `Order_Quantity`, `Other_Item_Details`) VALUES (14, 1, 81, '1', NULL); +INSERT INTO Order_Items (`Order_Item_ID`, `Order_ID`, `Product_ID`, `Order_Quantity`, `Other_Item_Details`) VALUES (15, 7, 300, '2', NULL); + +CREATE TABLE Invoices ( +Invoice_ID INTEGER NOT NULL, +Order_ID INTEGER NOT NULL, +payment_method_code CHAR(15), +Product_ID INTEGER NOT NULL, +Order_Quantity VARCHAR(288), +Other_Item_Details VARCHAR(255), +Order_Item_ID INTEGER NOT NULL, +PRIMARY KEY (Invoice_ID), +FOREIGN KEY (Order_ID) REFERENCES Customer_Orders (Order_ID), +FOREIGN KEY (Order_ID) REFERENCES Bookings (Booking_ID), +FOREIGN KEY (payment_method_code) REFERENCES Ref_Payment_Methods (payment_method_code) +); +INSERT INTO Invoices (`Invoice_ID`, `Order_ID`, `payment_method_code`, `Product_ID`, `Order_Quantity`, `Other_Item_Details`, `Order_Item_ID`) VALUES (128, 14, 'MasterCard', 4, 2, NULL, 1); +INSERT INTO Invoices (`Invoice_ID`, `Order_ID`, `payment_method_code`, `Product_ID`, `Order_Quantity`, `Other_Item_Details`, `Order_Item_ID`) VALUES (162, 13, 'MasterCard', 9, 2, NULL, 9); +INSERT INTO Invoices (`Invoice_ID`, `Order_ID`, `payment_method_code`, `Product_ID`, `Order_Quantity`, `Other_Item_Details`, `Order_Item_ID`) VALUES (164, 7, 'Visa', 7, 2, NULL, 1); +INSERT INTO Invoices (`Invoice_ID`, `Order_ID`, `payment_method_code`, `Product_ID`, `Order_Quantity`, `Other_Item_Details`, `Order_Item_ID`) VALUES (212, 8, 'Visa', 4, 2, NULL, 8); +INSERT INTO Invoices (`Invoice_ID`, `Order_ID`, `payment_method_code`, `Product_ID`, `Order_Quantity`, `Other_Item_Details`, `Order_Item_ID`) VALUES (272, 10, 'American E', 3, 2, NULL, 5); +INSERT INTO Invoices (`Invoice_ID`, `Order_ID`, `payment_method_code`, `Product_ID`, `Order_Quantity`, `Other_Item_Details`, `Order_Item_ID`) VALUES (398, 3, 'American E', 4, 1, NULL, 5); +INSERT INTO Invoices (`Invoice_ID`, `Order_ID`, `payment_method_code`, `Product_ID`, `Order_Quantity`, `Other_Item_Details`, `Order_Item_ID`) VALUES (406, 14, 'MasterCard', 7, 2, NULL, 1); +INSERT INTO Invoices (`Invoice_ID`, `Order_ID`, `payment_method_code`, `Product_ID`, `Order_Quantity`, `Other_Item_Details`, `Order_Item_ID`) VALUES (483, 7, 'Visa', 8, 1, NULL, 3); +INSERT INTO Invoices (`Invoice_ID`, `Order_ID`, `payment_method_code`, `Product_ID`, `Order_Quantity`, `Other_Item_Details`, `Order_Item_ID`) VALUES (548, 4, 'MasterCard', 3, 1, NULL, 1); +INSERT INTO Invoices (`Invoice_ID`, `Order_ID`, `payment_method_code`, `Product_ID`, `Order_Quantity`, `Other_Item_Details`, `Order_Item_ID`) VALUES (587, 1, 'American E', 4, 2, NULL, 1); +INSERT INTO Invoices (`Invoice_ID`, `Order_ID`, `payment_method_code`, `Product_ID`, `Order_Quantity`, `Other_Item_Details`, `Order_Item_ID`) VALUES (612, 6, 'American E', 3, 1, NULL, 8); +INSERT INTO Invoices (`Invoice_ID`, `Order_ID`, `payment_method_code`, `Product_ID`, `Order_Quantity`, `Other_Item_Details`, `Order_Item_ID`) VALUES (633, 11, 'Visa', 2, 1, NULL, 7); +INSERT INTO Invoices (`Invoice_ID`, `Order_ID`, `payment_method_code`, `Product_ID`, `Order_Quantity`, `Other_Item_Details`, `Order_Item_ID`) VALUES (679, 12, 'MasterCard', 9, 2, NULL, 8); +INSERT INTO Invoices (`Invoice_ID`, `Order_ID`, `payment_method_code`, `Product_ID`, `Order_Quantity`, `Other_Item_Details`, `Order_Item_ID`) VALUES (733, 11, 'Visa', 6, 1, NULL, 4); +INSERT INTO Invoices (`Invoice_ID`, `Order_ID`, `payment_method_code`, `Product_ID`, `Order_Quantity`, `Other_Item_Details`, `Order_Item_ID`) VALUES (777, 7, 'MasterCard', 6, 2, NULL, 7); + + +CREATE TABLE Services ( +Service_ID INTEGER NOT NULL, +Service_Type_Code CHAR(15), +Workshop_Group_ID INTEGER NOT NULL, +Product_Description VARCHAR(255), +Product_Name VARCHAR(255), +Product_Price DECIMAL(20,4), +Other_Product_Service_Details VARCHAR(255), +PRIMARY KEY (Service_ID), +UNIQUE (Service_ID), +FOREIGN KEY (Workshop_Group_ID) REFERENCES Drama_Workshop_Groups (Workshop_Group_ID), +FOREIGN KEY (Service_Type_Code) REFERENCES Ref_Service_Types (Service_Type_Code) +); +INSERT INTO Services (`Service_ID`, `Service_Type_Code`, `Workshop_Group_ID`, `Product_Description`, `Product_Name`, `Product_Price`, `Other_Product_Service_Details`) VALUES (191, '1', 415, NULL, 'film', '58932775.8822', NULL); +INSERT INTO Services (`Service_ID`, `Service_Type_Code`, `Workshop_Group_ID`, `Product_Description`, `Product_Name`, `Product_Price`, `Other_Product_Service_Details`) VALUES (219, '2', 838, NULL, 'film', '2704.4719', NULL); +INSERT INTO Services (`Service_ID`, `Service_Type_Code`, `Workshop_Group_ID`, `Product_Description`, `Product_Name`, `Product_Price`, `Other_Product_Service_Details`) VALUES (220, '1', 708, NULL, 'dinning', '6888.8306', NULL); +INSERT INTO Services (`Service_ID`, `Service_Type_Code`, `Workshop_Group_ID`, `Product_Description`, `Product_Name`, `Product_Price`, `Other_Product_Service_Details`) VALUES (396, '3', 735, NULL, 'photo', '31862.0853', NULL); +INSERT INTO Services (`Service_ID`, `Service_Type_Code`, `Workshop_Group_ID`, `Product_Description`, `Product_Name`, `Product_Price`, `Other_Product_Service_Details`) VALUES (414, '2', 954, NULL, 'photo', '213.9459', NULL); +INSERT INTO Services (`Service_ID`, `Service_Type_Code`, `Workshop_Group_ID`, `Product_Description`, `Product_Name`, `Product_Price`, `Other_Product_Service_Details`) VALUES (421, '3', 470, NULL, 'photo', '8004.9880', NULL); +INSERT INTO Services (`Service_ID`, `Service_Type_Code`, `Workshop_Group_ID`, `Product_Description`, `Product_Name`, `Product_Price`, `Other_Product_Service_Details`) VALUES (525, '4', 838, NULL, 'photo', '3499362.8145', NULL); +INSERT INTO Services (`Service_ID`, `Service_Type_Code`, `Workshop_Group_ID`, `Product_Description`, `Product_Name`, `Product_Price`, `Other_Product_Service_Details`) VALUES (597, '2', 735, NULL, 'photo', '5396.2935', NULL); +INSERT INTO Services (`Service_ID`, `Service_Type_Code`, `Workshop_Group_ID`, `Product_Description`, `Product_Name`, `Product_Price`, `Other_Product_Service_Details`) VALUES (630, '4', 176, NULL, 'photo', '19845767.8923', NULL); +INSERT INTO Services (`Service_ID`, `Service_Type_Code`, `Workshop_Group_ID`, `Product_Description`, `Product_Name`, `Product_Price`, `Other_Product_Service_Details`) VALUES (640, '2', 382, NULL, 'dinning', '7299.6747', NULL); +INSERT INTO Services (`Service_ID`, `Service_Type_Code`, `Workshop_Group_ID`, `Product_Description`, `Product_Name`, `Product_Price`, `Other_Product_Service_Details`) VALUES (662, '2', 954, NULL, 'dinning', '641544.2835', NULL); +INSERT INTO Services (`Service_ID`, `Service_Type_Code`, `Workshop_Group_ID`, `Product_Description`, `Product_Name`, `Product_Price`, `Other_Product_Service_Details`) VALUES (773, '3', 314, NULL, 'dinning', '827055.7309', NULL); +INSERT INTO Services (`Service_ID`, `Service_Type_Code`, `Workshop_Group_ID`, `Product_Description`, `Product_Name`, `Product_Price`, `Other_Product_Service_Details`) VALUES (779, '1', 431, NULL, 'film', '9130.7326', NULL); +INSERT INTO Services (`Service_ID`, `Service_Type_Code`, `Workshop_Group_ID`, `Product_Description`, `Product_Name`, `Product_Price`, `Other_Product_Service_Details`) VALUES (798, '1', 176, NULL, 'film', '84063402.4351', NULL); +INSERT INTO Services (`Service_ID`, `Service_Type_Code`, `Workshop_Group_ID`, `Product_Description`, `Product_Name`, `Product_Price`, `Other_Product_Service_Details`) VALUES (840, '1', 405, NULL, 'film', '187358.6469', NULL); + + + +CREATE TABLE Bookings_Services ( +Order_ID INTEGER NOT NULL, +Product_ID INTEGER NOT NULL, +PRIMARY KEY (Order_ID, Product_ID), +FOREIGN KEY (Order_ID) REFERENCES Bookings (Booking_ID), +FOREIGN KEY (Product_ID) REFERENCES Services (Service_ID) +); + +INSERT INTO Bookings_Services (`Order_ID`, `Product_ID`) VALUES (1, 396); +INSERT INTO Bookings_Services (`Order_ID`, `Product_ID`) VALUES (1, 779); +INSERT INTO Bookings_Services (`Order_ID`, `Product_ID`) VALUES (4, 191); +INSERT INTO Bookings_Services (`Order_ID`, `Product_ID`) VALUES (4, 414); +INSERT INTO Bookings_Services (`Order_ID`, `Product_ID`) VALUES (5, 773); +INSERT INTO Bookings_Services (`Order_ID`, `Product_ID`) VALUES (7, 191); +INSERT INTO Bookings_Services (`Order_ID`, `Product_ID`) VALUES (7, 640); +INSERT INTO Bookings_Services (`Order_ID`, `Product_ID`) VALUES (8, 414); +INSERT INTO Bookings_Services (`Order_ID`, `Product_ID`) VALUES (9, 630); +INSERT INTO Bookings_Services (`Order_ID`, `Product_ID`) VALUES (12, 597); +INSERT INTO Bookings_Services (`Order_ID`, `Product_ID`) VALUES (13, 396); +INSERT INTO Bookings_Services (`Order_ID`, `Product_ID`) VALUES (14, 525); + + + +CREATE TABLE Invoice_Items ( +Invoice_Item_ID INTEGER NOT NULL , +Invoice_ID INTEGER NOT NULL, +Order_ID INTEGER NOT NULL, +Order_Item_ID INTEGER NOT NULL, +Product_ID INTEGER NOT NULL, +Order_Quantity INTEGER, +Other_Item_Details VARCHAR(255), +PRIMARY KEY (Invoice_Item_ID), +FOREIGN KEY (Order_Item_ID) REFERENCES Order_Items (Order_Item_ID), +FOREIGN KEY (Invoice_ID) REFERENCES Invoices (Invoice_ID), +FOREIGN KEY (Order_ID, Product_ID) REFERENCES Bookings_Services (Order_ID,Product_ID) +); +INSERT INTO Invoice_Items (`Invoice_Item_ID`, `Invoice_ID`, `Order_ID`, `Order_Item_ID`, `Product_ID`, `Order_Quantity`, `Other_Item_Details`) VALUES (1, 128, 1, 5, 396, 2, NULL); +INSERT INTO Invoice_Items (`Invoice_Item_ID`, `Invoice_ID`, `Order_ID`, `Order_Item_ID`, `Product_ID`, `Order_Quantity`, `Other_Item_Details`) VALUES (2, 162, 4, 6, 191, 6, 'Good quality'); diff --git a/database/cre_Theme_park/cre_Theme_park.sqlite b/database/cre_Theme_park/cre_Theme_park.sqlite new file mode 100644 index 0000000000000000000000000000000000000000..4e00b364e9a03b8667cfadacf10d4b447e195679 Binary files /dev/null and b/database/cre_Theme_park/cre_Theme_park.sqlite differ diff --git a/database/cre_Theme_park/schema.sql b/database/cre_Theme_park/schema.sql new file mode 100644 index 0000000000000000000000000000000000000000..9b8b1c6894d3288dc3aa0c0d0f461f9b3a4a7722 --- /dev/null +++ b/database/cre_Theme_park/schema.sql @@ -0,0 +1,332 @@ +PRAGMA foreign_keys = ON; +CREATE TABLE Ref_Hotel_Star_Ratings ( +star_rating_code CHAR(15) NOT NULL, +star_rating_description VARCHAR(80), +PRIMARY KEY (star_rating_code), +UNIQUE (star_rating_code) +); + + +CREATE TABLE Locations ( +Location_ID INTEGER NOT NULL, +Location_Name VARCHAR(255), +Address VARCHAR(255), +Other_Details VARCHAR(255), +PRIMARY KEY (Location_ID) +); +INSERT INTO Locations (`Location_ID`, `Location_Name`, `Address`, `Other_Details`) VALUES (333, 'Astro Orbiter', '660 Shea Crescent', NULL); +INSERT INTO Locations (`Location_ID`, `Location_Name`, `Address`, `Other_Details`) VALUES (368, 'African Animals', '254 Ottilie Junction', NULL); +INSERT INTO Locations (`Location_ID`, `Location_Name`, `Address`, `Other_Details`) VALUES (417, 'American Adventure', '53815 Sawayn Tunnel Apt. 297', NULL); +INSERT INTO Locations (`Location_ID`, `Location_Name`, `Address`, `Other_Details`) VALUES (579, 'The Barnstormer', '3374 Sarina Manor', NULL); +INSERT INTO Locations (`Location_ID`, `Location_Name`, `Address`, `Other_Details`) VALUES (603, 'African Adventure', '88271 Barrows Union Suite 203', NULL); +INSERT INTO Locations (`Location_ID`, `Location_Name`, `Address`, `Other_Details`) VALUES (650, 'UK Gallery', '4411 Sabrina Radial Suite 582', NULL); +INSERT INTO Locations (`Location_ID`, `Location_Name`, `Address`, `Other_Details`) VALUES (655, 'The Boneyard', '0692 Georgiana Pass', NULL); +INSERT INTO Locations (`Location_ID`, `Location_Name`, `Address`, `Other_Details`) VALUES (661, 'Shark World', '2485 Mueller Squares Suite 537', NULL); +INSERT INTO Locations (`Location_ID`, `Location_Name`, `Address`, `Other_Details`) VALUES (740, 'Space Spin', '5536 Betsy Street Apt. 646', NULL); +INSERT INTO Locations (`Location_ID`, `Location_Name`, `Address`, `Other_Details`) VALUES (759, 'Butterflies', '959 Feest Glen Suite 523', NULL); +INSERT INTO Locations (`Location_ID`, `Location_Name`, `Address`, `Other_Details`) VALUES (858, 'Soak Station', '4908 Reinger Vista', NULL); +INSERT INTO Locations (`Location_ID`, `Location_Name`, `Address`, `Other_Details`) VALUES (861, 'Castle', '14034 Kohler Drive', NULL); +INSERT INTO Locations (`Location_ID`, `Location_Name`, `Address`, `Other_Details`) VALUES (867, 'Coral Reefs', '4510 Schuster Stream Apt. 613', NULL); +INSERT INTO Locations (`Location_ID`, `Location_Name`, `Address`, `Other_Details`) VALUES (868, 'Film Festival', '770 Edd Lane Apt. 098', NULL); +INSERT INTO Locations (`Location_ID`, `Location_Name`, `Address`, `Other_Details`) VALUES (885, 'Fossil Fun Games', '101 Paucek Crescent', NULL); + + +CREATE TABLE Ref_Attraction_Types ( +Attraction_Type_Code CHAR(15) NOT NULL, +Attraction_Type_Description VARCHAR(255), +PRIMARY KEY (Attraction_Type_Code), +UNIQUE (Attraction_Type_Code) +); + +INSERT INTO Ref_Attraction_Types (`Attraction_Type_Code`, `Attraction_Type_Description`) VALUES ('2', 'park'); +INSERT INTO Ref_Attraction_Types (`Attraction_Type_Code`, `Attraction_Type_Description`) VALUES ('3', 'garden'); +INSERT INTO Ref_Attraction_Types (`Attraction_Type_Code`, `Attraction_Type_Description`) VALUES ('5', 'gallery'); +INSERT INTO Ref_Attraction_Types (`Attraction_Type_Code`, `Attraction_Type_Description`) VALUES ('6', 'adventure'); +INSERT INTO Ref_Attraction_Types (`Attraction_Type_Code`, `Attraction_Type_Description`) VALUES ('9', 'museum'); +INSERT INTO Ref_Hotel_Star_Ratings (`star_rating_code`, `star_rating_description`) VALUES ('1', 'star'); +INSERT INTO Ref_Hotel_Star_Ratings (`star_rating_code`, `star_rating_description`) VALUES ('2', 'star'); +INSERT INTO Ref_Hotel_Star_Ratings (`star_rating_code`, `star_rating_description`) VALUES ('3', 'star'); +INSERT INTO Ref_Hotel_Star_Ratings (`star_rating_code`, `star_rating_description`) VALUES ('4', 'star'); +INSERT INTO Ref_Hotel_Star_Ratings (`star_rating_code`, `star_rating_description`) VALUES ('5', 'star'); + + +CREATE TABLE Visitors ( +Tourist_ID INTEGER NOT NULL, +Tourist_Details VARCHAR(255), +PRIMARY KEY (Tourist_ID), +UNIQUE (Tourist_ID) +); +INSERT INTO Visitors (`Tourist_ID`, `Tourist_Details`) VALUES (164, 'Toney'); +INSERT INTO Visitors (`Tourist_ID`, `Tourist_Details`) VALUES (189, 'Graciela'); +INSERT INTO Visitors (`Tourist_ID`, `Tourist_Details`) VALUES (204, 'Vincent'); +INSERT INTO Visitors (`Tourist_ID`, `Tourist_Details`) VALUES (211, 'Vivian'); +INSERT INTO Visitors (`Tourist_ID`, `Tourist_Details`) VALUES (241, 'Nettie'); +INSERT INTO Visitors (`Tourist_ID`, `Tourist_Details`) VALUES (295, 'Laurence'); +INSERT INTO Visitors (`Tourist_ID`, `Tourist_Details`) VALUES (359, 'Newell'); +INSERT INTO Visitors (`Tourist_ID`, `Tourist_Details`) VALUES (377, 'Marisol'); +INSERT INTO Visitors (`Tourist_ID`, `Tourist_Details`) VALUES (399, 'Jarrell'); +INSERT INTO Visitors (`Tourist_ID`, `Tourist_Details`) VALUES (439, 'Edna'); +INSERT INTO Visitors (`Tourist_ID`, `Tourist_Details`) VALUES (500, 'Maud'); +INSERT INTO Visitors (`Tourist_ID`, `Tourist_Details`) VALUES (513, 'Alison'); +INSERT INTO Visitors (`Tourist_ID`, `Tourist_Details`) VALUES (541, 'Rosalind'); +INSERT INTO Visitors (`Tourist_ID`, `Tourist_Details`) VALUES (545, 'Tevin'); +INSERT INTO Visitors (`Tourist_ID`, `Tourist_Details`) VALUES (578, 'Aleen'); +INSERT INTO Visitors (`Tourist_ID`, `Tourist_Details`) VALUES (610, 'Marcelle'); +INSERT INTO Visitors (`Tourist_ID`, `Tourist_Details`) VALUES (652, 'Lizzie'); +INSERT INTO Visitors (`Tourist_ID`, `Tourist_Details`) VALUES (779, 'Wayne'); +INSERT INTO Visitors (`Tourist_ID`, `Tourist_Details`) VALUES (841, 'Teresa'); +INSERT INTO Visitors (`Tourist_ID`, `Tourist_Details`) VALUES (888, 'Elnora'); + + + +CREATE TABLE Features ( +Feature_ID INTEGER NOT NULL, +Feature_Details VARCHAR(255), +PRIMARY KEY (Feature_ID) +); + +INSERT INTO Features (`Feature_ID`, `Feature_Details`) VALUES (523, 'cafe'); +INSERT INTO Features (`Feature_ID`, `Feature_Details`) VALUES (528, 'park'); +INSERT INTO Features (`Feature_ID`, `Feature_Details`) VALUES (543, 'garden'); +INSERT INTO Features (`Feature_ID`, `Feature_Details`) VALUES (681, 'shopping'); +INSERT INTO Features (`Feature_ID`, `Feature_Details`) VALUES (955, 'parking'); + + +CREATE TABLE Hotels ( +hotel_id INTEGER NOT NULL, +star_rating_code CHAR(15) NOT NULL, +pets_allowed_yn CHAR(1), +price_range real, +other_hotel_details VARCHAR(255), +PRIMARY KEY (hotel_id), +FOREIGN KEY (star_rating_code) REFERENCES Ref_Hotel_Star_Ratings (star_rating_code) +); + +INSERT INTO Hotels (`hotel_id`, `star_rating_code`, `pets_allowed_yn`, `price_range`, `other_hotel_details`) VALUES (123, '5', '1', '2914989.571', NULL); +INSERT INTO Hotels (`hotel_id`, `star_rating_code`, `pets_allowed_yn`, `price_range`, `other_hotel_details`) VALUES (144, '4', '', '', NULL); +INSERT INTO Hotels (`hotel_id`, `star_rating_code`, `pets_allowed_yn`, `price_range`, `other_hotel_details`) VALUES (172, '5', '', '17012.682586009', NULL); +INSERT INTO Hotels (`hotel_id`, `star_rating_code`, `pets_allowed_yn`, `price_range`, `other_hotel_details`) VALUES (222, '5', '1', '', NULL); +INSERT INTO Hotels (`hotel_id`, `star_rating_code`, `pets_allowed_yn`, `price_range`, `other_hotel_details`) VALUES (239, '3', '1', '', NULL); +INSERT INTO Hotels (`hotel_id`, `star_rating_code`, `pets_allowed_yn`, `price_range`, `other_hotel_details`) VALUES (264, '1', '1', '48525.4530675', NULL); +INSERT INTO Hotels (`hotel_id`, `star_rating_code`, `pets_allowed_yn`, `price_range`, `other_hotel_details`) VALUES (314, '5', '1', '766712918.96763', NULL); +INSERT INTO Hotels (`hotel_id`, `star_rating_code`, `pets_allowed_yn`, `price_range`, `other_hotel_details`) VALUES (331, '1', '1', '', NULL); +INSERT INTO Hotels (`hotel_id`, `star_rating_code`, `pets_allowed_yn`, `price_range`, `other_hotel_details`) VALUES (350, '1', '', '', NULL); +INSERT INTO Hotels (`hotel_id`, `star_rating_code`, `pets_allowed_yn`, `price_range`, `other_hotel_details`) VALUES (373, '5', '1', '250548014.90329', NULL); +INSERT INTO Hotels (`hotel_id`, `star_rating_code`, `pets_allowed_yn`, `price_range`, `other_hotel_details`) VALUES (376, '2', '', '', NULL); +INSERT INTO Hotels (`hotel_id`, `star_rating_code`, `pets_allowed_yn`, `price_range`, `other_hotel_details`) VALUES (379, '4', '1', '38014975.47848', NULL); +INSERT INTO Hotels (`hotel_id`, `star_rating_code`, `pets_allowed_yn`, `price_range`, `other_hotel_details`) VALUES (420, '5', '1', '9393.86291219', NULL); +INSERT INTO Hotels (`hotel_id`, `star_rating_code`, `pets_allowed_yn`, `price_range`, `other_hotel_details`) VALUES (421, '3', '', '5526556.6412', NULL); +INSERT INTO Hotels (`hotel_id`, `star_rating_code`, `pets_allowed_yn`, `price_range`, `other_hotel_details`) VALUES (426, '5', '', '245.067720121', NULL); +INSERT INTO Hotels (`hotel_id`, `star_rating_code`, `pets_allowed_yn`, `price_range`, `other_hotel_details`) VALUES (431, '2', '1', '43.729525', NULL); +INSERT INTO Hotels (`hotel_id`, `star_rating_code`, `pets_allowed_yn`, `price_range`, `other_hotel_details`) VALUES (442, '2', '1', '289775.7331715', NULL); +INSERT INTO Hotels (`hotel_id`, `star_rating_code`, `pets_allowed_yn`, `price_range`, `other_hotel_details`) VALUES (473, '1', '1', '2374.7971074', NULL); +INSERT INTO Hotels (`hotel_id`, `star_rating_code`, `pets_allowed_yn`, `price_range`, `other_hotel_details`) VALUES (514, '5', '', '1381255.81865', NULL); +INSERT INTO Hotels (`hotel_id`, `star_rating_code`, `pets_allowed_yn`, `price_range`, `other_hotel_details`) VALUES (555, '5', '1', '5390.432113', NULL); + + +CREATE TABLE Tourist_Attractions ( +Tourist_Attraction_ID INTEGER NOT NULL, +Attraction_Type_Code CHAR(15) NOT NULL, +Location_ID INTEGER NOT NULL, +How_to_Get_There VARCHAR(255), +Name VARCHAR(255), +Description VARCHAR(255), +Opening_Hours VARCHAR(255), +Other_Details VARCHAR(255), +PRIMARY KEY (Tourist_Attraction_ID), +FOREIGN KEY (Location_ID) REFERENCES Locations (Location_ID), +FOREIGN KEY (Attraction_Type_Code) REFERENCES Ref_Attraction_Types (Attraction_Type_Code) +); + +INSERT INTO Tourist_Attractions (`Tourist_Attraction_ID`, `Attraction_Type_Code`, `Location_ID`, `How_to_Get_There`, `Name`, `Description`, `Opening_Hours`, `Other_Details`) VALUES (2113, '2', 579, 'bus', 'art museum', NULL, NULL, NULL); +INSERT INTO Tourist_Attractions (`Tourist_Attraction_ID`, `Attraction_Type_Code`, `Location_ID`, `How_to_Get_There`, `Name`, `Description`, `Opening_Hours`, `Other_Details`) VALUES (2701, '6', 417, 'walk', 'UK gallery', NULL, NULL, NULL); +INSERT INTO Tourist_Attractions (`Tourist_Attraction_ID`, `Attraction_Type_Code`, `Location_ID`, `How_to_Get_There`, `Name`, `Description`, `Opening_Hours`, `Other_Details`) VALUES (5076, '2', 868, 'shuttle', 'flying elephant', NULL, NULL, NULL); +INSERT INTO Tourist_Attractions (`Tourist_Attraction_ID`, `Attraction_Type_Code`, `Location_ID`, `How_to_Get_There`, `Name`, `Description`, `Opening_Hours`, `Other_Details`) VALUES (5265, '5', 603, 'bus', 'film festival', NULL, NULL, NULL); +INSERT INTO Tourist_Attractions (`Tourist_Attraction_ID`, `Attraction_Type_Code`, `Location_ID`, `How_to_Get_There`, `Name`, `Description`, `Opening_Hours`, `Other_Details`) VALUES (6476, '3', 417, 'shuttle', 'US museum', NULL, NULL, NULL); +INSERT INTO Tourist_Attractions (`Tourist_Attraction_ID`, `Attraction_Type_Code`, `Location_ID`, `How_to_Get_There`, `Name`, `Description`, `Opening_Hours`, `Other_Details`) VALUES (6523, '9', 858, 'walk', 'fun games', NULL, NULL, NULL); +INSERT INTO Tourist_Attractions (`Tourist_Attraction_ID`, `Attraction_Type_Code`, `Location_ID`, `How_to_Get_There`, `Name`, `Description`, `Opening_Hours`, `Other_Details`) VALUES (6653, '9', 655, 'walk', 'history gallery', NULL, NULL, NULL); +INSERT INTO Tourist_Attractions (`Tourist_Attraction_ID`, `Attraction_Type_Code`, `Location_ID`, `How_to_Get_There`, `Name`, `Description`, `Opening_Hours`, `Other_Details`) VALUES (6852, '5', 858, 'walk', 'exploration trial', NULL, NULL, NULL); +INSERT INTO Tourist_Attractions (`Tourist_Attraction_ID`, `Attraction_Type_Code`, `Location_ID`, `How_to_Get_There`, `Name`, `Description`, `Opening_Hours`, `Other_Details`) VALUES (7067, '5', 417, 'bus', 'haunted mansion', NULL, NULL, NULL); +INSERT INTO Tourist_Attractions (`Tourist_Attraction_ID`, `Attraction_Type_Code`, `Location_ID`, `How_to_Get_There`, `Name`, `Description`, `Opening_Hours`, `Other_Details`) VALUES (8429, '9', 867, 'walk', 'presidents hall', NULL, NULL, NULL); +INSERT INTO Tourist_Attractions (`Tourist_Attraction_ID`, `Attraction_Type_Code`, `Location_ID`, `How_to_Get_There`, `Name`, `Description`, `Opening_Hours`, `Other_Details`) VALUES (8449, '2', 579, 'bus', 'impressions de France', NULL, NULL, NULL); +INSERT INTO Tourist_Attractions (`Tourist_Attraction_ID`, `Attraction_Type_Code`, `Location_ID`, `How_to_Get_There`, `Name`, `Description`, `Opening_Hours`, `Other_Details`) VALUES (8698, '5', 661, 'bus', 'jungle cruise', NULL, NULL, NULL); +INSERT INTO Tourist_Attractions (`Tourist_Attraction_ID`, `Attraction_Type_Code`, `Location_ID`, `How_to_Get_There`, `Name`, `Description`, `Opening_Hours`, `Other_Details`) VALUES (9360, '5', 868, 'shuttle', 'fun shops', NULL, NULL, NULL); +INSERT INTO Tourist_Attractions (`Tourist_Attraction_ID`, `Attraction_Type_Code`, `Location_ID`, `How_to_Get_There`, `Name`, `Description`, `Opening_Hours`, `Other_Details`) VALUES (9561, '2', 759, 'bus', 'cafe', NULL, NULL, NULL); +INSERT INTO Tourist_Attractions (`Tourist_Attraction_ID`, `Attraction_Type_Code`, `Location_ID`, `How_to_Get_There`, `Name`, `Description`, `Opening_Hours`, `Other_Details`) VALUES (9919, '6', 579, 'shuttle', 'parking', NULL, NULL, NULL); + + + +CREATE TABLE Street_Markets ( +Market_ID INTEGER NOT NULL, +Market_Details VARCHAR(255), +PRIMARY KEY (Market_ID), +FOREIGN KEY (Market_ID) REFERENCES Tourist_Attractions (Tourist_Attraction_ID) +); +CREATE TABLE Shops ( +Shop_ID INTEGER NOT NULL, +Shop_Details VARCHAR(255), +PRIMARY KEY (Shop_ID), +FOREIGN KEY (Shop_ID) REFERENCES Tourist_Attractions (Tourist_Attraction_ID) +); +CREATE TABLE Museums ( +Museum_ID INTEGER NOT NULL, +Museum_Details VARCHAR(255), +PRIMARY KEY (Museum_ID), +FOREIGN KEY (Museum_ID) REFERENCES Tourist_Attractions (Tourist_Attraction_ID) +); +CREATE TABLE Royal_Family ( +Royal_Family_ID INTEGER NOT NULL, +Royal_Family_Details VARCHAR(255), +PRIMARY KEY (Royal_Family_ID), +FOREIGN KEY (Royal_Family_ID) REFERENCES Tourist_Attractions (Tourist_Attraction_ID) +); +CREATE TABLE Theme_Parks ( +Theme_Park_ID INTEGER NOT NULL, +Theme_Park_Details VARCHAR(255), +PRIMARY KEY (Theme_Park_ID), +FOREIGN KEY (Theme_Park_ID) REFERENCES Tourist_Attractions (Tourist_Attraction_ID) +); + + +INSERT INTO Museums (`Museum_ID`,`Museum_Details`) VALUES (2113,'Yale Center for British Art'); +INSERT INTO Museums (`Museum_ID`,`Museum_Details`) VALUES (2701,'The Metropolitan Museum of Art'); +INSERT INTO Museums (`Museum_ID`,`Museum_Details`) VALUES (5076,'MoMA'); + +INSERT INTO Theme_Parks (`Theme_Park_ID`,`Theme_Park_Details`) VALUES (5265,'Disney'); +INSERT INTO Theme_Parks (`Theme_Park_ID`,`Theme_Park_Details`) VALUES (6476,'Sea World'); +INSERT INTO Theme_Parks (`Theme_Park_ID`,`Theme_Park_Details`) VALUES (6523, 'Universal Studios'); + + +INSERT INTO Street_Markets (`Market_ID`,`Market_Details`) VALUES (6852, 'Broadway'); +INSERT INTO Street_Markets (`Market_ID`,`Market_Details`) VALUES (7067, 'Fish Farm Market'); + +INSERT INTO Shops (`Shop_ID`,`Shop_Details`) VALUES (8429, 'soup'); +INSERT INTO Shops (`Shop_ID`,`Shop_Details`) VALUES (8449, 'coffee'); +INSERT INTO Shops (`Shop_ID`,`Shop_Details`) VALUES (8698, 'Flower'); +INSERT INTO Shops (`Shop_ID`,`Shop_Details`) VALUES (9360, 'see food'); + +INSERT INTO Royal_Family (`Royal_Family_ID`,`Royal_Family_Details`) VALUES (9561,NULL); +INSERT INTO Royal_Family (`Royal_Family_ID`,`Royal_Family_Details`) VALUES (9919,NULL); + + +CREATE TABLE Visits ( +Visit_ID INTEGER NOT NULL, +Tourist_Attraction_ID INTEGER NOT NULL, +Tourist_ID INTEGER NOT NULL, +Visit_Date DATETIME NOT NULL, +Visit_Details VARCHAR(40) NOT NULL, +PRIMARY KEY (Visit_ID), +FOREIGN KEY (Tourist_Attraction_ID) REFERENCES Tourist_Attractions (Tourist_Attraction_ID), +FOREIGN KEY (Tourist_ID) REFERENCES Visitors (Tourist_ID) +); + + +INSERT INTO Visits (`Visit_ID`, `Tourist_Attraction_ID`, `Tourist_ID`, `Visit_Date`, `Visit_Details`) VALUES (183, 6653, 377, '2004-08-21 03:06:14', ''); +INSERT INTO Visits (`Visit_ID`, `Tourist_Attraction_ID`, `Tourist_ID`, `Visit_Date`, `Visit_Details`) VALUES (268, 5076, 204, '2013-08-06 05:35:51', ''); +INSERT INTO Visits (`Visit_ID`, `Tourist_Attraction_ID`, `Tourist_ID`, `Visit_Date`, `Visit_Details`) VALUES (273, 9360, 211, '2013-10-27 09:56:08', ''); +INSERT INTO Visits (`Visit_ID`, `Tourist_Attraction_ID`, `Tourist_ID`, `Visit_Date`, `Visit_Details`) VALUES (302, 6476, 377, '1990-08-15 14:24:10', ''); +INSERT INTO Visits (`Visit_ID`, `Tourist_Attraction_ID`, `Tourist_ID`, `Visit_Date`, `Visit_Details`) VALUES (356, 6476, 439, '1980-11-26 02:08:00', ''); +INSERT INTO Visits (`Visit_ID`, `Tourist_Attraction_ID`, `Tourist_ID`, `Visit_Date`, `Visit_Details`) VALUES (381, 6523, 211, '2017-03-19 08:48:19', ''); +INSERT INTO Visits (`Visit_ID`, `Tourist_Attraction_ID`, `Tourist_ID`, `Visit_Date`, `Visit_Details`) VALUES (416, 6476, 841, '2008-11-09 01:28:01', ''); +INSERT INTO Visits (`Visit_ID`, `Tourist_Attraction_ID`, `Tourist_ID`, `Visit_Date`, `Visit_Details`) VALUES (479, 6852, 439, '1989-08-24 20:26:37', ''); +INSERT INTO Visits (`Visit_ID`, `Tourist_Attraction_ID`, `Tourist_ID`, `Visit_Date`, `Visit_Details`) VALUES (563, 6852, 610, '1993-02-01 15:27:20', ''); +INSERT INTO Visits (`Visit_ID`, `Tourist_Attraction_ID`, `Tourist_ID`, `Visit_Date`, `Visit_Details`) VALUES (612, 9919, 204, '2007-09-17 10:12:45', ''); +INSERT INTO Visits (`Visit_ID`, `Tourist_Attraction_ID`, `Tourist_ID`, `Visit_Date`, `Visit_Details`) VALUES (729, 6476, 513, '1998-05-12 00:50:20', ''); +INSERT INTO Visits (`Visit_ID`, `Tourist_Attraction_ID`, `Tourist_ID`, `Visit_Date`, `Visit_Details`) VALUES (776, 8698, 513, '2010-10-04 01:34:12', ''); +INSERT INTO Visits (`Visit_ID`, `Tourist_Attraction_ID`, `Tourist_ID`, `Visit_Date`, `Visit_Details`) VALUES (781, 6852, 779, '2018-01-09 20:39:52', ''); +INSERT INTO Visits (`Visit_ID`, `Tourist_Attraction_ID`, `Tourist_ID`, `Visit_Date`, `Visit_Details`) VALUES (866, 8429, 545, '1971-12-16 06:41:26', ''); +INSERT INTO Visits (`Visit_ID`, `Tourist_Attraction_ID`, `Tourist_ID`, `Visit_Date`, `Visit_Details`) VALUES (909, 8698, 779, '1998-12-10 02:46:43', ''); +INSERT INTO Visits (`Visit_ID`, `Tourist_Attraction_ID`, `Tourist_ID`, `Visit_Date`, `Visit_Details`) VALUES (937, 6523, 541, '1996-01-08 13:23:41', ''); +INSERT INTO Visits (`Visit_ID`, `Tourist_Attraction_ID`, `Tourist_ID`, `Visit_Date`, `Visit_Details`) VALUES (962, 9919, 610, '2007-09-03 04:30:01', ''); +INSERT INTO Visits (`Visit_ID`, `Tourist_Attraction_ID`, `Tourist_ID`, `Visit_Date`, `Visit_Details`) VALUES (968, 6852, 377, '1974-12-31 23:18:24', ''); +INSERT INTO Visits (`Visit_ID`, `Tourist_Attraction_ID`, `Tourist_ID`, `Visit_Date`, `Visit_Details`) VALUES (977, 8698, 500, '2001-11-13 10:08:28', ''); +INSERT INTO Visits (`Visit_ID`, `Tourist_Attraction_ID`, `Tourist_ID`, `Visit_Date`, `Visit_Details`) VALUES (999, 2701, 610, '1990-11-12 00:54:50', ''); + + + +CREATE TABLE Photos ( +Photo_ID INTEGER NOT NULL, +Tourist_Attraction_ID INTEGER NOT NULL, +Name VARCHAR(255), +Description VARCHAR(255), +Filename VARCHAR(255), +Other_Details VARCHAR(255), +PRIMARY KEY (Photo_ID), +FOREIGN KEY (Tourist_Attraction_ID) REFERENCES Tourist_Attractions (Tourist_Attraction_ID) +); +INSERT INTO Photos (`Photo_ID`, `Tourist_Attraction_ID`, `Name`, `Description`, `Filename`, `Other_Details`) VALUES (211, 8449, 'game1', NULL, '702', NULL); +INSERT INTO Photos (`Photo_ID`, `Tourist_Attraction_ID`, `Name`, `Description`, `Filename`, `Other_Details`) VALUES (280, 7067, 'game2', NULL, '762', NULL); +INSERT INTO Photos (`Photo_ID`, `Tourist_Attraction_ID`, `Name`, `Description`, `Filename`, `Other_Details`) VALUES (303, 5076, 'game3', NULL, '392', NULL); +INSERT INTO Photos (`Photo_ID`, `Tourist_Attraction_ID`, `Name`, `Description`, `Filename`, `Other_Details`) VALUES (327, 9919, 'fun1', NULL, '820', NULL); +INSERT INTO Photos (`Photo_ID`, `Tourist_Attraction_ID`, `Name`, `Description`, `Filename`, `Other_Details`) VALUES (332, 5076, 'fun2', NULL, '060', NULL); +INSERT INTO Photos (`Photo_ID`, `Tourist_Attraction_ID`, `Name`, `Description`, `Filename`, `Other_Details`) VALUES (428, 6523, 'fun3', NULL, '148', NULL); +INSERT INTO Photos (`Photo_ID`, `Tourist_Attraction_ID`, `Name`, `Description`, `Filename`, `Other_Details`) VALUES (435, 8429, 'fun4', NULL, '453', NULL); +INSERT INTO Photos (`Photo_ID`, `Tourist_Attraction_ID`, `Name`, `Description`, `Filename`, `Other_Details`) VALUES (437, 2701, 'fun5', NULL, '128', NULL); +INSERT INTO Photos (`Photo_ID`, `Tourist_Attraction_ID`, `Name`, `Description`, `Filename`, `Other_Details`) VALUES (525, 5265, 'park1', NULL, '538', NULL); +INSERT INTO Photos (`Photo_ID`, `Tourist_Attraction_ID`, `Name`, `Description`, `Filename`, `Other_Details`) VALUES (534, 6852, 'park2', NULL, '325', NULL); +INSERT INTO Photos (`Photo_ID`, `Tourist_Attraction_ID`, `Name`, `Description`, `Filename`, `Other_Details`) VALUES (537, 6653, 'park3', NULL, '695', NULL); +INSERT INTO Photos (`Photo_ID`, `Tourist_Attraction_ID`, `Name`, `Description`, `Filename`, `Other_Details`) VALUES (550, 5076, 'din1', NULL, '259', NULL); +INSERT INTO Photos (`Photo_ID`, `Tourist_Attraction_ID`, `Name`, `Description`, `Filename`, `Other_Details`) VALUES (558, 8698, 'din2', NULL, '863', NULL); +INSERT INTO Photos (`Photo_ID`, `Tourist_Attraction_ID`, `Name`, `Description`, `Filename`, `Other_Details`) VALUES (571, 6653, 'din3', NULL, '864', NULL); +INSERT INTO Photos (`Photo_ID`, `Tourist_Attraction_ID`, `Name`, `Description`, `Filename`, `Other_Details`) VALUES (596, 9561, 'din4', NULL, '141', NULL); + + +CREATE TABLE Staff ( +Staff_ID INTEGER NOT NULL, +Tourist_Attraction_ID INTEGER NOT NULL, +Name VARCHAR(40), +Other_Details VARCHAR(255), +PRIMARY KEY (Staff_ID), +FOREIGN KEY (Tourist_Attraction_ID) REFERENCES Tourist_Attractions (Tourist_Attraction_ID) +); + + +INSERT INTO Staff (`Staff_ID`, `Tourist_Attraction_ID`, `Name`, `Other_Details`) VALUES (170, 6476, 'Whitney', NULL); +INSERT INTO Staff (`Staff_ID`, `Tourist_Attraction_ID`, `Name`, `Other_Details`) VALUES (219, 6476, 'Kaela', NULL); +INSERT INTO Staff (`Staff_ID`, `Tourist_Attraction_ID`, `Name`, `Other_Details`) VALUES (237, 7067, 'Eunice', NULL); +INSERT INTO Staff (`Staff_ID`, `Tourist_Attraction_ID`, `Name`, `Other_Details`) VALUES (249, 5265, 'Kiarra', NULL); +INSERT INTO Staff (`Staff_ID`, `Tourist_Attraction_ID`, `Name`, `Other_Details`) VALUES (310, 9561, 'Phoebe', NULL); +INSERT INTO Staff (`Staff_ID`, `Tourist_Attraction_ID`, `Name`, `Other_Details`) VALUES (433, 9360, 'Vickie', NULL); +INSERT INTO Staff (`Staff_ID`, `Tourist_Attraction_ID`, `Name`, `Other_Details`) VALUES (463, 6653, 'Jannie', NULL); +INSERT INTO Staff (`Staff_ID`, `Tourist_Attraction_ID`, `Name`, `Other_Details`) VALUES (470, 6523, 'Lenore', NULL); +INSERT INTO Staff (`Staff_ID`, `Tourist_Attraction_ID`, `Name`, `Other_Details`) VALUES (487, 6852, 'Asia', NULL); +INSERT INTO Staff (`Staff_ID`, `Tourist_Attraction_ID`, `Name`, `Other_Details`) VALUES (491, 6852, 'Janet', NULL); +INSERT INTO Staff (`Staff_ID`, `Tourist_Attraction_ID`, `Name`, `Other_Details`) VALUES (532, 6852, 'Elouise', NULL); +INSERT INTO Staff (`Staff_ID`, `Tourist_Attraction_ID`, `Name`, `Other_Details`) VALUES (591, 9360, 'Gina', NULL); +INSERT INTO Staff (`Staff_ID`, `Tourist_Attraction_ID`, `Name`, `Other_Details`) VALUES (595, 8698, 'Beth', NULL); +INSERT INTO Staff (`Staff_ID`, `Tourist_Attraction_ID`, `Name`, `Other_Details`) VALUES (596, 2701, 'Ruthie', NULL); +INSERT INTO Staff (`Staff_ID`, `Tourist_Attraction_ID`, `Name`, `Other_Details`) VALUES (604, 6852, 'Aurore', NULL); +INSERT INTO Staff (`Staff_ID`, `Tourist_Attraction_ID`, `Name`, `Other_Details`) VALUES (619, 2113, 'Cortney', NULL); +INSERT INTO Staff (`Staff_ID`, `Tourist_Attraction_ID`, `Name`, `Other_Details`) VALUES (643, 6523, 'Astrid', NULL); +INSERT INTO Staff (`Staff_ID`, `Tourist_Attraction_ID`, `Name`, `Other_Details`) VALUES (667, 9561, 'Shemar', NULL); +INSERT INTO Staff (`Staff_ID`, `Tourist_Attraction_ID`, `Name`, `Other_Details`) VALUES (860, 6476, 'Trinity', NULL); +INSERT INTO Staff (`Staff_ID`, `Tourist_Attraction_ID`, `Name`, `Other_Details`) VALUES (952, 5265, 'Carmella', NULL); + + + + +CREATE TABLE Tourist_Attraction_Features ( +Tourist_Attraction_ID INTEGER NOT NULL, +Feature_ID INTEGER NOT NULL, +PRIMARY KEY (Tourist_Attraction_ID, Feature_ID), +FOREIGN KEY (Tourist_Attraction_ID) REFERENCES Tourist_Attractions (Tourist_Attraction_ID), +FOREIGN KEY (Feature_ID) REFERENCES Features (Feature_ID) +); +INSERT INTO Tourist_Attraction_Features (`Tourist_Attraction_ID`, `Feature_ID`) VALUES (5076, 528); +INSERT INTO Tourist_Attraction_Features (`Tourist_Attraction_ID`, `Feature_ID`) VALUES (5076, 681); +INSERT INTO Tourist_Attraction_Features (`Tourist_Attraction_ID`, `Feature_ID`) VALUES (5265, 523); +INSERT INTO Tourist_Attraction_Features (`Tourist_Attraction_ID`, `Feature_ID`) VALUES (5265, 955); +INSERT INTO Tourist_Attraction_Features (`Tourist_Attraction_ID`, `Feature_ID`) VALUES (6476, 543); +INSERT INTO Tourist_Attraction_Features (`Tourist_Attraction_ID`, `Feature_ID`) VALUES (6476, 681); +INSERT INTO Tourist_Attraction_Features (`Tourist_Attraction_ID`, `Feature_ID`) VALUES (6476, 955); +INSERT INTO Tourist_Attraction_Features (`Tourist_Attraction_ID`, `Feature_ID`) VALUES (6523, 528); +INSERT INTO Tourist_Attraction_Features (`Tourist_Attraction_ID`, `Feature_ID`) VALUES (6852, 528); +INSERT INTO Tourist_Attraction_Features (`Tourist_Attraction_ID`, `Feature_ID`) VALUES (6852, 955); +INSERT INTO Tourist_Attraction_Features (`Tourist_Attraction_ID`, `Feature_ID`) VALUES (7067, 543); +INSERT INTO Tourist_Attraction_Features (`Tourist_Attraction_ID`, `Feature_ID`) VALUES (8429, 681); +INSERT INTO Tourist_Attraction_Features (`Tourist_Attraction_ID`, `Feature_ID`) VALUES (8449, 528); +INSERT INTO Tourist_Attraction_Features (`Tourist_Attraction_ID`, `Feature_ID`) VALUES (8698, 528); +INSERT INTO Tourist_Attraction_Features (`Tourist_Attraction_ID`, `Feature_ID`) VALUES (8698, 543); +INSERT INTO Tourist_Attraction_Features (`Tourist_Attraction_ID`, `Feature_ID`) VALUES (8698, 681); +INSERT INTO Tourist_Attraction_Features (`Tourist_Attraction_ID`, `Feature_ID`) VALUES (9561, 681); +INSERT INTO Tourist_Attraction_Features (`Tourist_Attraction_ID`, `Feature_ID`) VALUES (9919, 681); diff --git a/database/csu_1/csu_1.sqlite b/database/csu_1/csu_1.sqlite new file mode 100644 index 0000000000000000000000000000000000000000..75764cd600d8d1fffec687e236e76635da53d793 Binary files /dev/null and b/database/csu_1/csu_1.sqlite differ diff --git a/database/csu_1/schema.sql b/database/csu_1/schema.sql new file mode 100644 index 0000000000000000000000000000000000000000..e3adbc08051a5986b769347a832a1c60958df1ab --- /dev/null +++ b/database/csu_1/schema.sql @@ -0,0 +1,54 @@ +CREATE TABLE "Campuses" ( + "Id" INTEGER PRIMARY KEY, + "Campus" TEXT, + "Location" TEXT, + "County" TEXT, + "Year" INTEGER +); + +CREATE TABLE "csu_fees" ( + "Campus" INTEGER PRIMARY KEY, + "Year" INTEGER, + "CampusFee" INTEGER, + FOREIGN KEY (Campus) REFERENCES Campuses(Id) +); + +CREATE TABLE "degrees" ( + "Year" INTEGER, + "Campus" INTEGER, + "Degrees" INTEGER, + PRIMARY KEY (Year, Campus), + FOREIGN KEY (Campus) REFERENCES Campuses(Id) +); + + + +CREATE TABLE "discipline_enrollments" ( + "Campus" INTEGER, + "Discipline" INTEGER, + "Year" INTEGER, + "Undergraduate" INTEGER, + "Graduate" INTEGER, + PRIMARY KEY (Campus, Discipline), + FOREIGN KEY (Campus) REFERENCES Campuses(Id) +); + + + +CREATE TABLE "enrollments" ( + "Campus" INTEGER, + "Year" INTEGER, + "TotalEnrollment_AY" INTEGER, + "FTE_AY" INTEGER, + PRIMARY KEY(Campus, Year), + FOREIGN KEY (Campus) REFERENCES Campuses(Id) +); + +CREATE TABLE "faculty" ( + "Campus" INTEGER, + "Year" INTEGER, + "Faculty" REAL, + FOREIGN KEY (Campus) REFERENCES Campuses(Id) +); + + diff --git a/database/culture_company/culture_company.sqlite b/database/culture_company/culture_company.sqlite new file mode 100644 index 0000000000000000000000000000000000000000..f4290e156662d069a642af1367195eddb2376440 Binary files /dev/null and b/database/culture_company/culture_company.sqlite differ diff --git a/database/culture_company/schema.sql b/database/culture_company/schema.sql new file mode 100644 index 0000000000000000000000000000000000000000..19d59db8b04c90878851d709ce452bd5df4c3130 --- /dev/null +++ b/database/culture_company/schema.sql @@ -0,0 +1,69 @@ +PRAGMA foreign_keys = ON; + +CREATE TABLE "book_club" ( +"book_club_id" int, +"Year" int, +"Author_or_Editor" text, +"Book_Title" text, +"Publisher" text, +"Category" text, +"Result" text, +PRIMARY KEY ("book_club_id") +); + +INSERT INTO "book_club" VALUES (1, "1989","Michael Nava","Goldenboy","Alyson","Gay M/SF","Won [A ]"); +INSERT INTO "book_club" VALUES (2, "1989","Donald Ward","Death Takes the Stage","St. Martin's Press","Gay M/SF","Nom"); +INSERT INTO "book_club" VALUES (3, "1989","Michael Bishop","Unicorn Mountain","William Morrow","Gay M/SF","Nom"); +INSERT INTO "book_club" VALUES (4, "1989","Joseph Hansen","Obedience","Mysterious Press","Gay M/SF","Nom"); +INSERT INTO "book_club" VALUES (5, "1989","George Baxt","Whoӳ Next","International Polygonics","Gay M/SF","Nom"); +INSERT INTO "book_club" VALUES (6, "1989","Antoinette Azolakov","Skiptrace","Banned Books","Lesb. M/SF","Won"); +INSERT INTO "book_club" VALUES (7,"1989","Claire McNab","Lessons In Murder","Naiad Press","Lesb. M/SF","Nom"); +INSERT INTO "book_club" VALUES (8, "1989","Judy Grahn","Mundaneӳ World","Crossing Press","Lesb. M/SF","Nom"); +INSERT INTO "book_club" VALUES (9, "1989","Dolores Klaich","Heavy Gilt","Naiad Press","Lesb. M/SF","Nom"); +INSERT INTO "book_club" VALUES (10, "1989","Sandy Bayer","The Crystal Curtain","Alyson","Lesb. M/SF","Nom"); +INSERT INTO "book_club" VALUES (11, "1990","Jeffrey N. McMahan","Somewhere in the Night","Alyson","Gay SF/F","Won [B ]"); +INSERT INTO "book_club" VALUES (12, "1990","Thom Nickels","Walking Water / After All This","Banned Books","Gay SF/F","Nom"); + + +CREATE TABLE "movie" ( +"movie_id" int, +"Title" text, +"Year" int, +"Director" text, +"Budget_million" real, +"Gross_worldwide" int, +PRIMARY KEY("movie_id") +); + +INSERT INTO "movie" VALUES (1, "The Boondock Saints","1999","Troy Duffy","6","30471"); +INSERT INTO "movie" VALUES (2, "The Big Kahuna","1999","John Swanbeck","7","3728888"); +INSERT INTO "movie" VALUES (3, "Storm Catcher","1999","Anthony Hickox","5","40500"); +INSERT INTO "movie" VALUES (4, "Jill Rips","2000","Anthony Hickox","4","456774"); +INSERT INTO "movie" VALUES (5, "The Whole Nine Yards","2000","Jonathan Lynn","41.3","106371651"); +INSERT INTO "movie" VALUES (6, "Battlefield Earth","2000","Roger Christian","44","29725663"); +INSERT INTO "movie" VALUES (7, "Get Carter","2000","Stephen Kay","63.6","19412993"); +INSERT INTO "movie" VALUES (8, "The Art of War","2000","Christian Duguay","60","40400425"); +INSERT INTO "movie" VALUES (9, "Agent Red","2000","Damian Lee","47","543356"); +INSERT INTO "movie" VALUES (10, "3000 Miles to Graceland","2001","Demian Lichtenstein","62","18720175"); + + + +CREATE TABLE "culture_company" ( +"Company_name" text, +"Type" text, +"Incorporated_in" text, +"Group_Equity_Shareholding" real, +"book_club_id" text, +"movie_id" text, +PRIMARY KEY("Company_name"), +FOREIGN KEY ("book_club_id") REFERENCES "book_club"("book_club_id"), +FOREIGN KEY ("movie_id") REFERENCES "movie"("movie_id") +); + +INSERT INTO "culture_company" VALUES ("Culture China","Corporate","China","18.77",1,2); +INSERT INTO "culture_company" VALUES ("Culture China Cargo","Joint Venture","China","49",2,3); +INSERT INTO "culture_company" VALUES ("Culture Hong Kong","Joint Venture","Hong Kong","60",3,4); +INSERT INTO "culture_company" VALUES ("Dragonair","Subsidiary","Hong Kong","100",5,7); +INSERT INTO "culture_company" VALUES ("Cathay Pacific Culture","Subsidiary","Hong Kong","100",5,5); +INSERT INTO "culture_company" VALUES ("Cathay Pacific Culture Services (HK) Limited","Subsidiary","Hong Kong","100",6,6); + diff --git a/database/customer_complaints/customer_complaints.sqlite b/database/customer_complaints/customer_complaints.sqlite new file mode 100644 index 0000000000000000000000000000000000000000..984b15e4f871b90999a74febb8d90efc7533c58f Binary files /dev/null and b/database/customer_complaints/customer_complaints.sqlite differ diff --git a/database/customer_complaints/schema.sql b/database/customer_complaints/schema.sql new file mode 100644 index 0000000000000000000000000000000000000000..20a541e27259c3acce5fed6d8489a557a21e48aa --- /dev/null +++ b/database/customer_complaints/schema.sql @@ -0,0 +1,83 @@ +PRAGMA foreign_keys = ON; + + +CREATE TABLE `Staff` ( +`staff_id` INTEGER PRIMARY KEY, +`gender` VARCHAR(1), +`first_name` VARCHAR(80), +`last_name` VARCHAR(80), +`email_address` VARCHAR(255), +`phone_number` VARCHAR(80) +); +INSERT INTO Staff (`staff_id`, `gender`, `first_name`, `last_name`, `email_address`, `phone_number`) VALUES (114, '0', 'Ward', 'Boehm', 'marcelle.ritchie@example.com', '(379)551-0838x146'); +INSERT INTO Staff (`staff_id`, `gender`, `first_name`, `last_name`, `email_address`, `phone_number`) VALUES (115, '1', 'Lucie', 'Lowe', 'ohintz@example.org', '142-311-6503x206'); +INSERT INTO Staff (`staff_id`, `gender`, `first_name`, `last_name`, `email_address`, `phone_number`) VALUES (116, '0', 'Dagmar', 'Erdman', 'wrau@example.com', '345-656-5571'); +INSERT INTO Staff (`staff_id`, `gender`, `first_name`, `last_name`, `email_address`, `phone_number`) VALUES (117, '0', 'Bradly', 'Hahn', 'brett99@example.net', '1-132-839-9409x288'); +INSERT INTO Staff (`staff_id`, `gender`, `first_name`, `last_name`, `email_address`, `phone_number`) VALUES (118, '0', 'Austin', 'Zieme', 'reichel.armani@example.org', '(383)553-1035x20399'); +INSERT INTO Staff (`staff_id`, `gender`, `first_name`, `last_name`, `email_address`, `phone_number`) VALUES (119, '0', 'Dorian', 'Oberbrunner', 'richard.gutkowski@example.com', '155-811-6153'); +INSERT INTO Staff (`staff_id`, `gender`, `first_name`, `last_name`, `email_address`, `phone_number`) VALUES (120, '0', 'Mikel', 'Lynch', 'glen.borer@example.com', '751-262-8424x575'); + + +CREATE TABLE `Customers` ( +`customer_id` INTEGER PRIMARY KEY, +`customer_type_code` VARCHAR(20) NOT NULL, +`address_line_1` VARCHAR(80), +`address_line_2` VARCHAR(80), +`town_city` VARCHAR(80), +`state` VARCHAR(80), +`email_address` VARCHAR(255), +`phone_number` VARCHAR(80) +); +INSERT INTO Customers (`customer_id`, `customer_type_code`, `address_line_1`, `address_line_2`, `town_city`, `state`, `email_address`, `phone_number`) VALUES (113, 'Good Credit Rating', '144 Legros Landing', 'Apt. 551', 'Maryamport', 'Kansas', 'hsteuber@example.org', '06963347450'); +INSERT INTO Customers (`customer_id`, `customer_type_code`, `address_line_1`, `address_line_2`, `town_city`, `state`, `email_address`, `phone_number`) VALUES (114, 'Good Credit Rating', '039 Jedidiah Estate Suite 537', 'Apt. 245', 'Sauerberg', 'Hawaii', 'cayla.satterfield@example.net', '470-803-0244'); +INSERT INTO Customers (`customer_id`, `customer_type_code`, `address_line_1`, `address_line_2`, `town_city`, `state`, `email_address`, `phone_number`) VALUES (115, 'Good Credit Rating', '92189 Gulgowski Ranch Apt. 683', 'Apt. 828', 'Tyreekhaven', 'Tennessee', 'vida86@example.com', '997.698.4779x882'); +INSERT INTO Customers (`customer_id`, `customer_type_code`, `address_line_1`, `address_line_2`, `town_city`, `state`, `email_address`, `phone_number`) VALUES (116, 'Good Credit Rating', '72144 Katlynn Flat Suite 512', 'Suite 959','Hansenbury', 'Tennessee', 'vbogisich@example.org', '548.373.3603x59134'); +INSERT INTO Customers (`customer_id`, `customer_type_code`, `address_line_1`, `address_line_2`, `town_city`, `state`, `email_address`, `phone_number`) VALUES (117, 'Good Credit Rating', '1566 Ramona Overpass Apt. 464', 'Suite 151', 'North Alisaville', 'Florida', 'ubeier@example.org', '044-468-4549'); +INSERT INTO Customers (`customer_id`, `customer_type_code`, `address_line_1`, `address_line_2`, `town_city`, `state`, `email_address`, `phone_number`) VALUES (118, 'Defaults on payments', '425 Roman Tunnel', 'Apt. 495', 'Funkstad', 'Colorado', 'lavonne.frami@example.com', '+38(3)9011433816'); +INSERT INTO Customers (`customer_id`, `customer_type_code`, `address_line_1`, `address_line_2`, `town_city`, `state`, `email_address`, `phone_number`) VALUES (119, 'Good Credit Rating', '05355 Marcelle Radial', 'Suite 054', 'Port Joshuah', 'Pennsylvania', 'paige.hyatt@example.com', '1-369-302-7623x576'); +INSERT INTO Customers (`customer_id`, `customer_type_code`, `address_line_1`, `address_line_2`, `town_city`, `state`, `email_address`, `phone_number`) VALUES (120, 'Defaults on payments', '518 Mann Park', 'Suite 035', 'West Annamariestad', 'Iowa', 'rzulauf@example.org', '578.019.7943x328'); + + +CREATE TABLE `Products` ( +`product_id` INTEGER PRIMARY KEY, +`parent_product_id` INTEGER, +`product_category_code` VARCHAR(20) NOT NULL, +`date_product_first_available` DATETIME, +`date_product_discontinued` DATETIME, +`product_name` VARCHAR(80), +`product_description` VARCHAR(255), +`product_price` DECIMAL(19,4) +); +INSERT INTO Products (`product_id`, `parent_product_id`, `product_category_code`, `date_product_first_available`, `date_product_discontinued`, `product_name`, `product_description`, `product_price`) VALUES (117, 4, 'Food', '1988-09-29 17:54:50', '1987-12-20 13:46:16', 'Chocolate', 'Handmade chocolate', '2.8800'); +INSERT INTO Products (`product_id`, `parent_product_id`, `product_category_code`, `date_product_first_available`, `date_product_discontinued`, `product_name`, `product_description`, `product_price`) VALUES (118, 3, 'Book', '1974-06-25 12:26:47', '1991-08-20 05:22:31', 'The Great Gatsby', 'American novel','35.0000'); +INSERT INTO Products (`product_id`, `parent_product_id`, `product_category_code`, `date_product_first_available`, `date_product_discontinued`, `product_name`, `product_description`, `product_price`) VALUES (119, 8, 'Hardware', '1994-12-18 15:13:19', '1997-07-02 18:26:16', 'Keyboard', 'Designed for games', '109.9900'); +INSERT INTO Products (`product_id`, `parent_product_id`, `product_category_code`, `date_product_first_available`, `date_product_discontinued`, `product_name`, `product_description`, `product_price`) VALUES (120, 9, 'Hardware', '1998-06-20 15:04:11', '1980-06-26 10:40:19', 'Mouse', 'Blue tooth mouse', '23.3500'); + + +CREATE TABLE `Complaints` ( +`complaint_id` INTEGER NOT NULL , +`product_id` INTEGER NOT NULL, +`customer_id` INTEGER NOT NULL, +`complaint_outcome_code` VARCHAR(20) NOT NULL, +`complaint_status_code` VARCHAR(20) NOT NULL, +`complaint_type_code` VARCHAR(20) NOT NULL, +`date_complaint_raised` DATETIME, +`date_complaint_closed` DATETIME, +`staff_id` INTEGER NOT NULL , +FOREIGN KEY (`staff_id` ) REFERENCES `Staff`(`staff_id` ), +FOREIGN KEY (`product_id` ) REFERENCES `Products`(`product_id` ), +FOREIGN KEY (`customer_id` ) REFERENCES `Customers`(`customer_id` ) +); +INSERT INTO Complaints (`complaint_id`, `product_id`, `customer_id`, `complaint_outcome_code`, `complaint_status_code`, `complaint_type_code`, `date_complaint_raised`, `date_complaint_closed`, `staff_id`) VALUES (1, 117, 120, 'OK', 'Closed', 'Product Failure', '2002-07-18 10:59:35', '1976-04-19 11:03:06', 114); +INSERT INTO Complaints (`complaint_id`, `product_id`, `customer_id`, `complaint_outcome_code`, `complaint_status_code`, `complaint_type_code`, `date_complaint_raised`, `date_complaint_closed`, `staff_id`) VALUES (2, 118, 113, 'OK', 'New', 'Product Unusable', '1973-02-10 22:55:56', '2013-09-14 02:59:10', 120); +INSERT INTO Complaints (`complaint_id`, `product_id`, `customer_id`, `complaint_outcome_code`, `complaint_status_code`, `complaint_type_code`, `date_complaint_raised`, `date_complaint_closed`, `staff_id`) VALUES (3, 119, 114, 'OK', 'New', 'Product Unusable', '2006-10-29 07:08:46', '1995-09-11 14:48:46', 115); +INSERT INTO Complaints (`complaint_id`, `product_id`, `customer_id`, `complaint_outcome_code`, `complaint_status_code`, `complaint_type_code`, `date_complaint_raised`, `date_complaint_closed`, `staff_id`) VALUES (4, 120, 114, 'OK', 'Closed', 'Product Unusable', '1977-08-06 00:31:19', '1970-10-14 00:57:25', 114); +INSERT INTO Complaints (`complaint_id`, `product_id`, `customer_id`, `complaint_outcome_code`, `complaint_status_code`, `complaint_type_code`, `date_complaint_raised`, `date_complaint_closed`, `staff_id`) VALUES (5, 117, 118, 'OK', 'Open', 'Product Failure', '2007-10-14 21:50:43', '2000-08-17 17:02:48', 116); +INSERT INTO Complaints (`complaint_id`, `product_id`, `customer_id`, `complaint_outcome_code`, `complaint_status_code`, `complaint_type_code`, `date_complaint_raised`, `date_complaint_closed`, `staff_id`) VALUES (6, 118, 114, 'OK', 'Open', 'Product Unusable', '1987-07-11 14:40:30', '1975-10-11 05:54:30', 114); +INSERT INTO Complaints (`complaint_id`, `product_id`, `customer_id`, `complaint_outcome_code`, `complaint_status_code`, `complaint_type_code`, `date_complaint_raised`, `date_complaint_closed`, `staff_id`) VALUES (7, 117, 117, 'OK', 'New', 'Product Unusable', '2002-07-18 10:59:35', '1976-04-19 11:03:06', 118); +INSERT INTO Complaints (`complaint_id`, `product_id`, `customer_id`, `complaint_outcome_code`, `complaint_status_code`, `complaint_type_code`, `date_complaint_raised`, `date_complaint_closed`, `staff_id`) VALUES (8, 117, 114, 'OK', 'New', 'Product Unusable', '1973-02-10 22:55:56', '2013-09-14 02:59:10', 117); +INSERT INTO Complaints (`complaint_id`, `product_id`, `customer_id`, `complaint_outcome_code`, `complaint_status_code`, `complaint_type_code`, `date_complaint_raised`, `date_complaint_closed`, `staff_id`) VALUES (9, 117, 116, 'OK', 'New', 'Product Unusable', '2006-10-29 07:08:46', '1995-09-11 14:48:46', 120); +INSERT INTO Complaints (`complaint_id`, `product_id`, `customer_id`, `complaint_outcome_code`, `complaint_status_code`, `complaint_type_code`, `date_complaint_raised`, `date_complaint_closed`, `staff_id`) VALUES (10, 118, 115, 'OK', 'New', 'Product Unusable', '1977-08-06 00:31:19', '1970-10-14 00:57:25', 114); +INSERT INTO Complaints (`complaint_id`, `product_id`, `customer_id`, `complaint_outcome_code`, `complaint_status_code`, `complaint_type_code`, `date_complaint_raised`, `date_complaint_closed`, `staff_id`) VALUES (11, 118, 116, 'OK', 'Open', 'Product Unusable', '2007-10-14 21:50:43', '2000-08-17 17:02:48', 115); +INSERT INTO Complaints (`complaint_id`, `product_id`, `customer_id`, `complaint_outcome_code`, `complaint_status_code`, `complaint_type_code`, `date_complaint_raised`, `date_complaint_closed`, `staff_id`) VALUES (12, 117, 116, 'OK', 'Open', 'Product Unusable', '1987-07-11 14:40:30', '1975-10-11 05:54:30', 114); + diff --git a/database/customer_deliveries/customer_deliveries.sqlite b/database/customer_deliveries/customer_deliveries.sqlite new file mode 100644 index 0000000000000000000000000000000000000000..5e3483110c6a82e80bcd51785ab81f3cdaf8d674 Binary files /dev/null and b/database/customer_deliveries/customer_deliveries.sqlite differ diff --git a/database/customer_deliveries/schema.sql b/database/customer_deliveries/schema.sql new file mode 100644 index 0000000000000000000000000000000000000000..267a8eb393a32950f72e5b063a3426e953caa9d3 --- /dev/null +++ b/database/customer_deliveries/schema.sql @@ -0,0 +1,333 @@ +PRAGMA foreign_keys = ON; + +CREATE TABLE `Products` ( +`product_id` INTEGER PRIMARY KEY, +`product_name` VARCHAR(20), +`product_price` DECIMAL(19,4), +`product_description` VARCHAR(255) +); +INSERT INTO Products (`product_id`, `product_name`, `product_price`, `product_description`) VALUES (1, 'dvds', '1322.7800', 'good condition'); +INSERT INTO Products (`product_id`, `product_name`, `product_price`, `product_description`) VALUES (2, 'cloth', '6402.0900', 'good condition'); +INSERT INTO Products (`product_id`, `product_name`, `product_price`, `product_description`) VALUES (3, 'electronics', '2511.2900', 'great condition'); +INSERT INTO Products (`product_id`, `product_name`, `product_price`, `product_description`) VALUES (4, 'books', '7111.6800', 'good condition'); +INSERT INTO Products (`product_id`, `product_name`, `product_price`, `product_description`) VALUES (5, 'food', '3644.4500', 'good condition'); +INSERT INTO Products (`product_id`, `product_name`, `product_price`, `product_description`) VALUES (6, 'gift', '5022.3900', 'bad condition'); + + +CREATE TABLE `Addresses` ( +`address_id` INTEGER PRIMARY KEY, +`address_details` VARCHAR(80), +`city` VARCHAR(50), +`zip_postcode` VARCHAR(20), +`state_province_county` VARCHAR(50), +`country` VARCHAR(50) +); +INSERT INTO Addresses (`address_id`, `address_details`, `city`, `zip_postcode`, `state_province_county`, `country`) VALUES (1, '92283 Lora Forges Suite 322', 'Mohrville', '271', 'Nebraska', 'USA'); +INSERT INTO Addresses (`address_id`, `address_details`, `city`, `zip_postcode`, `state_province_county`, `country`) VALUES (2, '17135 Jaida Fork Suite 798', 'East Brody', '940', 'Colorado', 'USA'); +INSERT INTO Addresses (`address_id`, `address_details`, `city`, `zip_postcode`, `state_province_county`, `country`) VALUES (3, '41099 Crist Prairie Suite 507', 'Evelinebury', '003', 'Idaho', 'USA'); +INSERT INTO Addresses (`address_id`, `address_details`, `city`, `zip_postcode`, `state_province_county`, `country`) VALUES (4, '615 Adams Rue Apt. 095', 'Sawaynville', '575', 'Kentucky', 'USA'); +INSERT INTO Addresses (`address_id`, `address_details`, `city`, `zip_postcode`, `state_province_county`, `country`) VALUES (5, '045 Marquardt Village Suite 484', 'Carterside', '827', 'California', 'USA'); +INSERT INTO Addresses (`address_id`, `address_details`, `city`, `zip_postcode`, `state_province_county`, `country`) VALUES (6, '203 Joseph Hills', 'Giovannaton', '960', 'Tennessee', 'USA'); +INSERT INTO Addresses (`address_id`, `address_details`, `city`, `zip_postcode`, `state_province_county`, `country`) VALUES (7, '6187 Feil Extension Apt. 749', 'East Frederic', '674', 'Maine', 'USA'); +INSERT INTO Addresses (`address_id`, `address_details`, `city`, `zip_postcode`, `state_province_county`, `country`) VALUES (8, '185 Farrell Brooks Apt. 106', 'Mosciskimouth', '076', 'Illinois', 'USA'); +INSERT INTO Addresses (`address_id`, `address_details`, `city`, `zip_postcode`, `state_province_county`, `country`) VALUES (9, '3720 Pagac Hollow Apt. 131', 'Alvertatown', '234', 'Wyoming', 'USA'); +INSERT INTO Addresses (`address_id`, `address_details`, `city`, `zip_postcode`, `state_province_county`, `country`) VALUES (10, '57136 Eichmann Ranch Suite 091', 'Gerholdtown', '297', 'Illinois', 'USA'); +INSERT INTO Addresses (`address_id`, `address_details`, `city`, `zip_postcode`, `state_province_county`, `country`) VALUES (11, '3020 Steuber Gardens Apt. 620', 'Flossiefurt', '460', 'Michigan', 'USA'); +INSERT INTO Addresses (`address_id`, `address_details`, `city`, `zip_postcode`, `state_province_county`, `country`) VALUES (12, '2060 Hilpert Forge Apt. 379', 'Annietown', '491', 'Michigan', 'USA'); +INSERT INTO Addresses (`address_id`, `address_details`, `city`, `zip_postcode`, `state_province_county`, `country`) VALUES (13, '469 Roberts Mews', 'Lake Abbey', '838', 'Washington', 'USA'); +INSERT INTO Addresses (`address_id`, `address_details`, `city`, `zip_postcode`, `state_province_county`, `country`) VALUES (14, '8701 Myrtis Ranch', 'North Marquesfort', '940', 'Ohio', 'USA'); +INSERT INTO Addresses (`address_id`, `address_details`, `city`, `zip_postcode`, `state_province_county`, `country`) VALUES (15, '06959 Garett Meadows Apt. 259', 'New Lizziechester', '934', 'Massachusetts', 'USA'); + + +CREATE TABLE `Customers` ( +`customer_id` INTEGER PRIMARY KEY, +`payment_method` VARCHAR(10) NOT NULL, +`customer_name` VARCHAR(80), +`customer_phone` VARCHAR(80), +`customer_email` VARCHAR(80), +`date_became_customer` DATETIME +); +INSERT INTO Customers (`customer_id`, `payment_method`, `customer_name`, `customer_phone`, `customer_email`, `date_became_customer`) VALUES (1, 'Visa', 'Ron Emard', '1-382-503-5179x53639', 'shaniya45@example.net', '2011-04-25 22:20:35'); +INSERT INTO Customers (`customer_id`, `payment_method`, `customer_name`, `customer_phone`, `customer_email`, `date_became_customer`) VALUES (2, 'MasterCard', 'Gabe Schroeder', '1-728-537-4293x0885', 'alexandra91@example.net', '2011-10-17 16:08:25'); +INSERT INTO Customers (`customer_id`, `payment_method`, `customer_name`, `customer_phone`, `customer_email`, `date_became_customer`) VALUES (3, 'Discover', 'Candace Schneider', '940.575.3682x7959', 'tkassulke@example.com', '2012-01-11 21:17:01'); +INSERT INTO Customers (`customer_id`, `payment_method`, `customer_name`, `customer_phone`, `customer_email`, `date_became_customer`) VALUES (4, 'Visa', 'Jaden Lang', '361.151.3489x7272', 'dedric17@example.org', '2009-12-29 17:38:10'); +INSERT INTO Customers (`customer_id`, `payment_method`, `customer_name`, `customer_phone`, `customer_email`, `date_became_customer`) VALUES (5, 'Visa', 'Geovanni Grady', '1-005-644-2495', 'elmira.langworth@example.org', '2017-05-21 07:09:55'); +INSERT INTO Customers (`customer_id`, `payment_method`, `customer_name`, `customer_phone`, `customer_email`, `date_became_customer`) VALUES (6, 'Visa', 'Dr. Karine Farrell', '+49(2)0677806107', 'reichel.winnifred@example.org', '2010-11-06 08:42:56'); +INSERT INTO Customers (`customer_id`, `payment_method`, `customer_name`, `customer_phone`, `customer_email`, `date_became_customer`) VALUES (7, 'Discover', 'Emmanuel Reilly', '129.959.6420', 'gleichner.ethelyn@example.net', '2013-11-29 06:15:22'); +INSERT INTO Customers (`customer_id`, `payment_method`, `customer_name`, `customer_phone`, `customer_email`, `date_became_customer`) VALUES (8, 'MasterCard', 'Keenan Kuhic', '686-517-9923x348', 'dallin76@example.org', '2013-04-09 18:17:05'); +INSERT INTO Customers (`customer_id`, `payment_method`, `customer_name`, `customer_phone`, `customer_email`, `date_became_customer`) VALUES (9, 'American', 'Rusty Morar', '1-123-197-9677x7194', 'njenkins@example.org', '2015-09-09 09:29:06'); +INSERT INTO Customers (`customer_id`, `payment_method`, `customer_name`, `customer_phone`, `customer_email`, `date_became_customer`) VALUES (10, 'Visa', 'Lila Howe', '1-492-284-1097', 'leann.hamill@example.org', '2014-02-04 04:51:58'); +INSERT INTO Customers (`customer_id`, `payment_method`, `customer_name`, `customer_phone`, `customer_email`, `date_became_customer`) VALUES (11, 'Visa', 'Amalia Hudson DDS', '003-991-1506x483', 'danika49@example.com', '2014-02-25 19:39:51'); +INSERT INTO Customers (`customer_id`, `payment_method`, `customer_name`, `customer_phone`, `customer_email`, `date_became_customer`) VALUES (12, 'Discover', 'Verda Streich', '06730471330', 'xgraham@example.org', '2008-10-12 12:19:27'); +INSERT INTO Customers (`customer_id`, `payment_method`, `customer_name`, `customer_phone`, `customer_email`, `date_became_customer`) VALUES (13, 'Discover', 'Patience Yundt', '969-208-8932x715', 'kira82@example.com', '2017-03-25 18:48:04'); +INSERT INTO Customers (`customer_id`, `payment_method`, `customer_name`, `customer_phone`, `customer_email`, `date_became_customer`) VALUES (14, 'Visa', 'Annabell Walsh', '(881)096-1281x6448', 'adriana83@example.org', '2017-06-30 19:02:11'); +INSERT INTO Customers (`customer_id`, `payment_method`, `customer_name`, `customer_phone`, `customer_email`, `date_became_customer`) VALUES (15, 'Visa', 'Aracely Borer V', '531-617-3230', 'rollin95@example.net', '2015-09-13 22:39:50'); + + +CREATE TABLE `Regular_Orders` ( +`regular_order_id` INTEGER PRIMARY KEY, +`distributer_id` INTEGER NOT NULL, +FOREIGN KEY (`distributer_id` ) REFERENCES `Customers`(`customer_id` ) +); + +INSERT INTO Regular_Orders (`regular_order_id`, `distributer_id`) VALUES (1, 12); +INSERT INTO Regular_Orders (`regular_order_id`, `distributer_id`) VALUES (2, 15); +INSERT INTO Regular_Orders (`regular_order_id`, `distributer_id`) VALUES (3, 6); +INSERT INTO Regular_Orders (`regular_order_id`, `distributer_id`) VALUES (4, 3); +INSERT INTO Regular_Orders (`regular_order_id`, `distributer_id`) VALUES (5, 8); +INSERT INTO Regular_Orders (`regular_order_id`, `distributer_id`) VALUES (6, 14); +INSERT INTO Regular_Orders (`regular_order_id`, `distributer_id`) VALUES (7, 2); +INSERT INTO Regular_Orders (`regular_order_id`, `distributer_id`) VALUES (8, 15); +INSERT INTO Regular_Orders (`regular_order_id`, `distributer_id`) VALUES (9, 10); +INSERT INTO Regular_Orders (`regular_order_id`, `distributer_id`) VALUES (10, 7); +INSERT INTO Regular_Orders (`regular_order_id`, `distributer_id`) VALUES (11, 3); +INSERT INTO Regular_Orders (`regular_order_id`, `distributer_id`) VALUES (12, 1); +INSERT INTO Regular_Orders (`regular_order_id`, `distributer_id`) VALUES (13, 1); +INSERT INTO Regular_Orders (`regular_order_id`, `distributer_id`) VALUES (14, 15); +INSERT INTO Regular_Orders (`regular_order_id`, `distributer_id`) VALUES (15, 15); + + +CREATE TABLE `Regular_Order_Products` ( +`regular_order_id` INTEGER NOT NULL, +`product_id` INTEGER NOT NULL, +FOREIGN KEY (`product_id` ) REFERENCES `Products`(`product_id` ), +FOREIGN KEY (`regular_order_id` ) REFERENCES `Regular_Orders`(`regular_order_id` ) +); +INSERT INTO Regular_Order_Products (`regular_order_id`, `product_id`) VALUES (5, 3); +INSERT INTO Regular_Order_Products (`regular_order_id`, `product_id`) VALUES (2, 3); +INSERT INTO Regular_Order_Products (`regular_order_id`, `product_id`) VALUES (10, 1); +INSERT INTO Regular_Order_Products (`regular_order_id`, `product_id`) VALUES (8, 5); +INSERT INTO Regular_Order_Products (`regular_order_id`, `product_id`) VALUES (12, 2); +INSERT INTO Regular_Order_Products (`regular_order_id`, `product_id`) VALUES (1, 4); +INSERT INTO Regular_Order_Products (`regular_order_id`, `product_id`) VALUES (6, 3); +INSERT INTO Regular_Order_Products (`regular_order_id`, `product_id`) VALUES (3, 6); +INSERT INTO Regular_Order_Products (`regular_order_id`, `product_id`) VALUES (3, 1); +INSERT INTO Regular_Order_Products (`regular_order_id`, `product_id`) VALUES (9, 6); +INSERT INTO Regular_Order_Products (`regular_order_id`, `product_id`) VALUES (5, 5); +INSERT INTO Regular_Order_Products (`regular_order_id`, `product_id`) VALUES (1, 1); +INSERT INTO Regular_Order_Products (`regular_order_id`, `product_id`) VALUES (7, 4); +INSERT INTO Regular_Order_Products (`regular_order_id`, `product_id`) VALUES (6, 4); +INSERT INTO Regular_Order_Products (`regular_order_id`, `product_id`) VALUES (13, 2); + + + +CREATE TABLE `Actual_Orders` ( +`actual_order_id` INTEGER PRIMARY KEY, +`order_status_code` VARCHAR(10) NOT NULL, +`regular_order_id` INTEGER NOT NULL, +`actual_order_date` DATETIME, +FOREIGN KEY (`regular_order_id` ) REFERENCES `Regular_Orders`(`regular_order_id` ) +); + + +INSERT INTO Actual_Orders (`actual_order_id`, `order_status_code`, `regular_order_id`, `actual_order_date`) VALUES (1, 'Success', 8, '2018-03-02 23:26:19'); +INSERT INTO Actual_Orders (`actual_order_id`, `order_status_code`, `regular_order_id`, `actual_order_date`) VALUES (2, 'Cancel', 15, '2018-03-02 08:33:39'); +INSERT INTO Actual_Orders (`actual_order_id`, `order_status_code`, `regular_order_id`, `actual_order_date`) VALUES (3, 'Cancel', 4, '2018-02-25 10:13:36'); +INSERT INTO Actual_Orders (`actual_order_id`, `order_status_code`, `regular_order_id`, `actual_order_date`) VALUES (4, 'Cancel', 10, '2018-03-21 01:34:52'); +INSERT INTO Actual_Orders (`actual_order_id`, `order_status_code`, `regular_order_id`, `actual_order_date`) VALUES (5, 'Cancel', 14, '2018-02-28 15:31:06'); +INSERT INTO Actual_Orders (`actual_order_id`, `order_status_code`, `regular_order_id`, `actual_order_date`) VALUES (6, 'Success', 12, '2018-03-12 05:33:57'); +INSERT INTO Actual_Orders (`actual_order_id`, `order_status_code`, `regular_order_id`, `actual_order_date`) VALUES (7, 'Success', 1, '2018-03-06 12:20:31'); +INSERT INTO Actual_Orders (`actual_order_id`, `order_status_code`, `regular_order_id`, `actual_order_date`) VALUES (8, 'Cancel', 11, '2018-03-22 19:30:17'); +INSERT INTO Actual_Orders (`actual_order_id`, `order_status_code`, `regular_order_id`, `actual_order_date`) VALUES (9, 'Success', 6, '2018-03-13 05:43:25'); +INSERT INTO Actual_Orders (`actual_order_id`, `order_status_code`, `regular_order_id`, `actual_order_date`) VALUES (10, 'Success', 13, '2018-03-05 17:31:36'); +INSERT INTO Actual_Orders (`actual_order_id`, `order_status_code`, `regular_order_id`, `actual_order_date`) VALUES (11, 'Cancel', 4, '2018-03-16 00:28:09'); +INSERT INTO Actual_Orders (`actual_order_id`, `order_status_code`, `regular_order_id`, `actual_order_date`) VALUES (12, 'Cancel', 12, '2018-02-26 01:55:52'); +INSERT INTO Actual_Orders (`actual_order_id`, `order_status_code`, `regular_order_id`, `actual_order_date`) VALUES (13, 'Cancel', 8, '2018-03-11 10:45:05'); +INSERT INTO Actual_Orders (`actual_order_id`, `order_status_code`, `regular_order_id`, `actual_order_date`) VALUES (14, 'Cancel', 4, '2018-03-12 11:24:59'); +INSERT INTO Actual_Orders (`actual_order_id`, `order_status_code`, `regular_order_id`, `actual_order_date`) VALUES (15, 'Cancel', 7, '2018-03-10 18:22:34'); + + +CREATE TABLE `Actual_Order_Products` ( +`actual_order_id` INTEGER NOT NULL, +`product_id` INTEGER NOT NULL, +FOREIGN KEY (`product_id` ) REFERENCES `Products`(`product_id` ), +FOREIGN KEY (`actual_order_id` ) REFERENCES `Actual_Orders`(`actual_order_id` ) +); + +INSERT INTO Actual_Order_Products (`actual_order_id`, `product_id`) VALUES (2, 1); +INSERT INTO Actual_Order_Products (`actual_order_id`, `product_id`) VALUES (14, 5); +INSERT INTO Actual_Order_Products (`actual_order_id`, `product_id`) VALUES (13, 6); +INSERT INTO Actual_Order_Products (`actual_order_id`, `product_id`) VALUES (9, 2); +INSERT INTO Actual_Order_Products (`actual_order_id`, `product_id`) VALUES (3, 2); +INSERT INTO Actual_Order_Products (`actual_order_id`, `product_id`) VALUES (2, 3); +INSERT INTO Actual_Order_Products (`actual_order_id`, `product_id`) VALUES (13, 2); +INSERT INTO Actual_Order_Products (`actual_order_id`, `product_id`) VALUES (3, 1); +INSERT INTO Actual_Order_Products (`actual_order_id`, `product_id`) VALUES (3, 1); +INSERT INTO Actual_Order_Products (`actual_order_id`, `product_id`) VALUES (10, 3); +INSERT INTO Actual_Order_Products (`actual_order_id`, `product_id`) VALUES (6, 6); +INSERT INTO Actual_Order_Products (`actual_order_id`, `product_id`) VALUES (5, 5); +INSERT INTO Actual_Order_Products (`actual_order_id`, `product_id`) VALUES (7, 3); +INSERT INTO Actual_Order_Products (`actual_order_id`, `product_id`) VALUES (5, 3); +INSERT INTO Actual_Order_Products (`actual_order_id`, `product_id`) VALUES (15, 4); + + + + + +CREATE TABLE `Customer_Addresses` ( +`customer_id` INTEGER NOT NULL, +`address_id` INTEGER NOT NULL, +`date_from` DATETIME NOT NULL, +`address_type` VARCHAR(10) NOT NULL, +`date_to` DATETIME, +FOREIGN KEY (`customer_id` ) REFERENCES `Customers`(`customer_id` ), +FOREIGN KEY (`address_id` ) REFERENCES `Addresses`(`address_id` ) +); + + +INSERT INTO Customer_Addresses (`customer_id`, `address_id`, `date_from`, `address_type`, `date_to`) VALUES (5, 6, '2016-09-06 19:23:46', 'House', '2018-02-25 15:34:58'); +INSERT INTO Customer_Addresses (`customer_id`, `address_id`, `date_from`, `address_type`, `date_to`) VALUES (14, 5, '2016-12-21 03:49:54', 'House', '2018-03-13 21:20:21'); +INSERT INTO Customer_Addresses (`customer_id`, `address_id`, `date_from`, `address_type`, `date_to`) VALUES (2, 2, '2014-06-09 06:31:49', 'Flat', '2018-03-02 21:56:40'); +INSERT INTO Customer_Addresses (`customer_id`, `address_id`, `date_from`, `address_type`, `date_to`) VALUES (10, 6, '2011-05-24 21:49:34', 'House', '2018-03-18 12:45:44'); +INSERT INTO Customer_Addresses (`customer_id`, `address_id`, `date_from`, `address_type`, `date_to`) VALUES (14, 2, '2011-12-06 16:49:10', 'Flat', '2018-02-24 20:18:08'); +INSERT INTO Customer_Addresses (`customer_id`, `address_id`, `date_from`, `address_type`, `date_to`) VALUES (10, 1, '2012-05-24 11:47:54', 'House', '2018-03-14 20:26:33'); +INSERT INTO Customer_Addresses (`customer_id`, `address_id`, `date_from`, `address_type`, `date_to`) VALUES (7, 3, '2016-08-17 17:45:20', 'Flat', '2018-03-16 14:09:24'); +INSERT INTO Customer_Addresses (`customer_id`, `address_id`, `date_from`, `address_type`, `date_to`) VALUES (4, 9, '2009-08-03 03:17:03', 'House', '2018-03-15 23:45:59'); +INSERT INTO Customer_Addresses (`customer_id`, `address_id`, `date_from`, `address_type`, `date_to`) VALUES (3, 7, '2010-12-29 11:01:39', 'House', '2018-03-22 02:54:10'); +INSERT INTO Customer_Addresses (`customer_id`, `address_id`, `date_from`, `address_type`, `date_to`) VALUES (12, 6, '2012-08-31 15:41:03', 'Flat', '2018-03-02 23:42:49'); +INSERT INTO Customer_Addresses (`customer_id`, `address_id`, `date_from`, `address_type`, `date_to`) VALUES (12, 11, '2008-04-02 08:23:13', 'Apartment', '2018-03-17 12:51:37'); +INSERT INTO Customer_Addresses (`customer_id`, `address_id`, `date_from`, `address_type`, `date_to`) VALUES (14, 10, '2011-08-18 09:40:49', 'House', '2018-03-06 15:48:13'); +INSERT INTO Customer_Addresses (`customer_id`, `address_id`, `date_from`, `address_type`, `date_to`) VALUES (1, 11, '2014-12-20 18:58:32', 'House', '2018-02-27 00:53:48'); +INSERT INTO Customer_Addresses (`customer_id`, `address_id`, `date_from`, `address_type`, `date_to`) VALUES (8, 6, '2013-05-06 00:49:45', 'Flat', '2018-03-05 01:34:02'); +INSERT INTO Customer_Addresses (`customer_id`, `address_id`, `date_from`, `address_type`, `date_to`) VALUES (12, 5, '2017-11-01 10:59:35', 'Flat', '2018-03-09 05:05:17'); + + +CREATE TABLE `Delivery_Routes` ( +`route_id` INTEGER PRIMARY KEY, +`route_name` VARCHAR(50), +`other_route_details` VARCHAR(255) +); + +INSERT INTO Delivery_Routes (`route_id`, `route_name`, `other_route_details`) VALUES (1, 'Torphy Ltd', '16893 Wilderman Terrace +Port Lucasburgh, ND 55978-5550'); +INSERT INTO Delivery_Routes (`route_id`, `route_name`, `other_route_details`) VALUES (2, 'Heidenreich Group', '6534 Cheyenne Trace Suite 242 +Koryburgh, PA 21391-9164'); +INSERT INTO Delivery_Routes (`route_id`, `route_name`, `other_route_details`) VALUES (3, 'Gerhold Inc', '70469 Unique Crest +Katherynville, IA 92263-4974'); +INSERT INTO Delivery_Routes (`route_id`, `route_name`, `other_route_details`) VALUES (4, 'Huel, Armstrong and Senger', '534 Lubowitz Terrace +Lake Tomfort, LA 52697-4998'); +INSERT INTO Delivery_Routes (`route_id`, `route_name`, `other_route_details`) VALUES (5, 'Nader, Leuschke and Huels', '4627 Johnnie Centers +Lake Hipolitoton, RI 37305'); +INSERT INTO Delivery_Routes (`route_id`, `route_name`, `other_route_details`) VALUES (6, 'Abshire Ltd', '36578 Kirsten Terrace +Krajcikside, NH 29063'); +INSERT INTO Delivery_Routes (`route_id`, `route_name`, `other_route_details`) VALUES (7, 'Adams, Macejkovic and Carroll', '941 Ritchie Plains Suite 833 +North Jerry, LA 32804-7405'); +INSERT INTO Delivery_Routes (`route_id`, `route_name`, `other_route_details`) VALUES (8, 'Schowalter Group', '52417 Wiza Brook Apt. 000 +Zechariahstad, WY 15885-3711'); +INSERT INTO Delivery_Routes (`route_id`, `route_name`, `other_route_details`) VALUES (9, 'Gorczany Group', '9608 Hoyt Extension +East Linnieview, GA 87356-5339'); +INSERT INTO Delivery_Routes (`route_id`, `route_name`, `other_route_details`) VALUES (10, 'Grady, King and Price', '4989 Pfeffer Passage Suite 915 +West Jacebury, SD 68079-3347'); +INSERT INTO Delivery_Routes (`route_id`, `route_name`, `other_route_details`) VALUES (11, 'Streich, Spencer and Brakus', '30335 Pacocha Burgs Apt. 400 +North Onastad, OR 76419'); +INSERT INTO Delivery_Routes (`route_id`, `route_name`, `other_route_details`) VALUES (12, 'Brekke, Powlowski and Fritsch', '53685 Abshire Falls +Lake Destineyville, OK 91313'); +INSERT INTO Delivery_Routes (`route_id`, `route_name`, `other_route_details`) VALUES (13, 'Hermiston, Feeney and Daugherty', '54645 Ziemann Skyway Suite 987 +Lake Roderickstad, OH 77820'); +INSERT INTO Delivery_Routes (`route_id`, `route_name`, `other_route_details`) VALUES (14, 'Renner-Kovacek', '809 Daija Radial Apt. 507 +Kavonfort, MN 70034-2797'); +INSERT INTO Delivery_Routes (`route_id`, `route_name`, `other_route_details`) VALUES (15, 'Hegmann-Waters', '719 Vito Parks +Kassulkeville, NH 77748'); + + +CREATE TABLE `Delivery_Route_Locations` ( +`location_code` VARCHAR(10) PRIMARY KEY, +`route_id` INTEGER NOT NULL, +`location_address_id` INTEGER NOT NULL, +`location_name` VARCHAR(50), +FOREIGN KEY (`location_address_id` ) REFERENCES `Addresses`(`address_id` ), +FOREIGN KEY (`route_id` ) REFERENCES `Delivery_Routes`(`route_id` ) +); +INSERT INTO Delivery_Route_Locations (`location_code`, `route_id`, `location_address_id`, `location_name`) VALUES ('27 City Rd', 11, 5, 'Labadie-Crooks'); +INSERT INTO Delivery_Route_Locations (`location_code`, `route_id`, `location_address_id`, `location_name`) VALUES ('30 Sam Rd', 7, 13, 'VonRueden, Schmeler and Fay'); +INSERT INTO Delivery_Route_Locations (`location_code`, `route_id`, `location_address_id`, `location_name`) VALUES ('67 LV Rd', 11, 6, 'Carter, Pfannerstill and Rutherford'); +INSERT INTO Delivery_Route_Locations (`location_code`, `route_id`, `location_address_id`, `location_name`) VALUES ('38 Enisner Av', 10, 7, 'Bradtke-Herman'); +INSERT INTO Delivery_Route_Locations (`location_code`, `route_id`, `location_address_id`, `location_name`) VALUES ('73 Nancy Av', 14, 10, 'Streich Group'); +INSERT INTO Delivery_Route_Locations (`location_code`, `route_id`, `location_address_id`, `location_name`) VALUES ('84 OE Av', 14, 7, 'Hessel and Sons'); +INSERT INTO Delivery_Route_Locations (`location_code`, `route_id`, `location_address_id`, `location_name`) VALUES ('34 Benz St', 2, 15, 'Strosin, Hegmann and Abbott'); +INSERT INTO Delivery_Route_Locations (`location_code`, `route_id`, `location_address_id`, `location_name`) VALUES ('15 Sixth Av', 8, 6, 'Pouros, Brakus and Konopelski'); +INSERT INTO Delivery_Route_Locations (`location_code`, `route_id`, `location_address_id`, `location_name`) VALUES ('04 Elm Rd', 8, 8, 'Hermiston, Hand and Wisoky'); +INSERT INTO Delivery_Route_Locations (`location_code`, `route_id`, `location_address_id`, `location_name`) VALUES ('79 Square St', 15, 5, 'Turner, Dietrich and Smitham'); +INSERT INTO Delivery_Route_Locations (`location_code`, `route_id`, `location_address_id`, `location_name`) VALUES ('84 Temple Rd', 7, 2, 'Leannon, Erdman and Schneider'); +INSERT INTO Delivery_Route_Locations (`location_code`, `route_id`, `location_address_id`, `location_name`) VALUES ('64 Kate Rd', 7, 12, 'Dach Group'); +INSERT INTO Delivery_Route_Locations (`location_code`, `route_id`, `location_address_id`, `location_name`) VALUES ('68 Denny St', 4, 7, 'Ledner-Kozey'); +INSERT INTO Delivery_Route_Locations (`location_code`, `route_id`, `location_address_id`, `location_name`) VALUES ('76 David St', 11, 3, 'Rosenbaum, Kiehn and Kilback'); +INSERT INTO Delivery_Route_Locations (`location_code`, `route_id`, `location_address_id`, `location_name`) VALUES ('58 Roof Av', 13, 4, 'Bartoletti, Keebler and Crona'); + + +CREATE TABLE `Trucks` ( +`truck_id` INTEGER PRIMARY KEY, +`truck_licence_number` VARCHAR(20), +`truck_details` VARCHAR(255) +); + +INSERT INTO Trucks (`truck_id`, `truck_licence_number`, `truck_details`) VALUES (1, '58110', 'Frida'); +INSERT INTO Trucks (`truck_id`, `truck_licence_number`, `truck_details`) VALUES (2, '33822', 'Randy'); +INSERT INTO Trucks (`truck_id`, `truck_licence_number`, `truck_details`) VALUES (3, '17106', 'Laverna'); +INSERT INTO Trucks (`truck_id`, `truck_licence_number`, `truck_details`) VALUES (4, '24474', 'Kaya'); +INSERT INTO Trucks (`truck_id`, `truck_licence_number`, `truck_details`) VALUES (5, '63359', 'Queen'); +INSERT INTO Trucks (`truck_id`, `truck_licence_number`, `truck_details`) VALUES (6, '25232', 'Deon'); +INSERT INTO Trucks (`truck_id`, `truck_licence_number`, `truck_details`) VALUES (7, '92426', 'Stacy'); +INSERT INTO Trucks (`truck_id`, `truck_licence_number`, `truck_details`) VALUES (8, '69863', 'Rebeka'); +INSERT INTO Trucks (`truck_id`, `truck_licence_number`, `truck_details`) VALUES (9, '78683', 'Bud'); +INSERT INTO Trucks (`truck_id`, `truck_licence_number`, `truck_details`) VALUES (10, '47865', 'Holly'); +INSERT INTO Trucks (`truck_id`, `truck_licence_number`, `truck_details`) VALUES (11, '49160', 'Rosamond'); +INSERT INTO Trucks (`truck_id`, `truck_licence_number`, `truck_details`) VALUES (12, '32054', 'Ricky'); +INSERT INTO Trucks (`truck_id`, `truck_licence_number`, `truck_details`) VALUES (13, '87695', 'Joanny'); +INSERT INTO Trucks (`truck_id`, `truck_licence_number`, `truck_details`) VALUES (14, '75871', 'Luisa'); +INSERT INTO Trucks (`truck_id`, `truck_licence_number`, `truck_details`) VALUES (15, '89343', 'Efren'); + + +CREATE TABLE `Employees` ( +`employee_id` INTEGER PRIMARY KEY, +`employee_address_id` INTEGER NOT NULL, +`employee_name` VARCHAR(80), +`employee_phone` VARCHAR(80), +FOREIGN KEY (`employee_address_id` ) REFERENCES `Addresses`(`address_id` ) +); + +INSERT INTO Employees (`employee_id`, `employee_address_id`, `employee_name`, `employee_phone`) VALUES (1, 4, 'Kacie', '716-650-2081'); +INSERT INTO Employees (`employee_id`, `employee_address_id`, `employee_name`, `employee_phone`) VALUES (2, 12, 'Dejuan', '211.289.9042'); +INSERT INTO Employees (`employee_id`, `employee_address_id`, `employee_name`, `employee_phone`) VALUES (3, 1, 'Leonie', '816-890-2580'); +INSERT INTO Employees (`employee_id`, `employee_address_id`, `employee_name`, `employee_phone`) VALUES (4, 11, 'Rogelio', '(539)655-7194x3276'); +INSERT INTO Employees (`employee_id`, `employee_address_id`, `employee_name`, `employee_phone`) VALUES (5, 12, 'Eriberto', '675.047.7555x13273'); +INSERT INTO Employees (`employee_id`, `employee_address_id`, `employee_name`, `employee_phone`) VALUES (6, 9, 'Matteo', '620.905.4152x7146'); +INSERT INTO Employees (`employee_id`, `employee_address_id`, `employee_name`, `employee_phone`) VALUES (7, 4, 'Sasha', '1-547-775-6049'); +INSERT INTO Employees (`employee_id`, `employee_address_id`, `employee_name`, `employee_phone`) VALUES (8, 11, 'Eino', '033.973.3729x07313'); +INSERT INTO Employees (`employee_id`, `employee_address_id`, `employee_name`, `employee_phone`) VALUES (9, 8, 'Cydney', '191.702.4400x1018'); +INSERT INTO Employees (`employee_id`, `employee_address_id`, `employee_name`, `employee_phone`) VALUES (10, 6, 'Cristian', '1-833-492-9430'); +INSERT INTO Employees (`employee_id`, `employee_address_id`, `employee_name`, `employee_phone`) VALUES (11, 5, 'Lew', '776.002.6775'); +INSERT INTO Employees (`employee_id`, `employee_address_id`, `employee_name`, `employee_phone`) VALUES (12, 15, 'Anthony', '+69(6)9999892744'); +INSERT INTO Employees (`employee_id`, `employee_address_id`, `employee_name`, `employee_phone`) VALUES (13, 14, 'Jovani', '+28(9)6180779782'); +INSERT INTO Employees (`employee_id`, `employee_address_id`, `employee_name`, `employee_phone`) VALUES (14, 10, 'Dovie', '944-507-0999'); +INSERT INTO Employees (`employee_id`, `employee_address_id`, `employee_name`, `employee_phone`) VALUES (15, 12, 'Allison', '+48(5)2807285053'); + + +CREATE TABLE `Order_Deliveries` ( +`location_code` VARCHAR(10) NOT NULL, +`actual_order_id` INTEGER NOT NULL, +`delivery_status_code` VARCHAR(10) NOT NULL, +`driver_employee_id` INTEGER NOT NULL, +`truck_id` INTEGER NOT NULL, +`delivery_date` DATETIME, +FOREIGN KEY (`truck_id` ) REFERENCES `Trucks`(`truck_id` ), +FOREIGN KEY (`actual_order_id` ) REFERENCES `Actual_Orders`(`actual_order_id` ), +FOREIGN KEY (`location_code` ) REFERENCES `Delivery_Route_Locations`(`location_code` ), +FOREIGN KEY (`driver_employee_id` ) REFERENCES `Employees`(`employee_id` ) +); + +INSERT INTO Order_Deliveries (`location_code`, `actual_order_id`, `delivery_status_code`, `driver_employee_id`, `truck_id`, `delivery_date`) VALUES ('27 City Rd', 11, 'Ready', 6, 11, '2018-03-21 00:57:22'); +INSERT INTO Order_Deliveries (`location_code`, `actual_order_id`, `delivery_status_code`, `driver_employee_id`, `truck_id`, `delivery_date`) VALUES ('27 City Rd', 1, 'On Road', 4, 10, '2018-02-26 01:32:49'); +INSERT INTO Order_Deliveries (`location_code`, `actual_order_id`, `delivery_status_code`, `driver_employee_id`, `truck_id`, `delivery_date`) VALUES ('27 City Rd', 3, 'Ready', 1, 2, '2018-03-08 17:17:12'); +INSERT INTO Order_Deliveries (`location_code`, `actual_order_id`, `delivery_status_code`, `driver_employee_id`, `truck_id`, `delivery_date`) VALUES ('73 Nancy Av', 2, 'Delivered', 12, 10, '2018-03-17 19:42:08'); +INSERT INTO Order_Deliveries (`location_code`, `actual_order_id`, `delivery_status_code`, `driver_employee_id`, `truck_id`, `delivery_date`) VALUES ('73 Nancy Av', 2, 'On Road', 1, 6, '2018-03-05 03:03:24'); +INSERT INTO Order_Deliveries (`location_code`, `actual_order_id`, `delivery_status_code`, `driver_employee_id`, `truck_id`, `delivery_date`) VALUES ('34 Benz St', 14, 'Delivered', 11, 6, '2018-03-12 20:45:27'); +INSERT INTO Order_Deliveries (`location_code`, `actual_order_id`, `delivery_status_code`, `driver_employee_id`, `truck_id`, `delivery_date`) VALUES ('73 Nancy Av', 6, 'On Road', 11, 11, '2018-03-22 22:09:56'); +INSERT INTO Order_Deliveries (`location_code`, `actual_order_id`, `delivery_status_code`, `driver_employee_id`, `truck_id`, `delivery_date`) VALUES ('34 Benz St', 6, 'Delivered', 2, 10, '2018-03-06 22:39:17'); +INSERT INTO Order_Deliveries (`location_code`, `actual_order_id`, `delivery_status_code`, `driver_employee_id`, `truck_id`, `delivery_date`) VALUES ('34 Benz St', 5, 'Delivered', 14, 6, '2018-03-02 09:03:13'); +INSERT INTO Order_Deliveries (`location_code`, `actual_order_id`, `delivery_status_code`, `driver_employee_id`, `truck_id`, `delivery_date`) VALUES ('73 Nancy Av', 8, 'Ready', 13, 4, '2018-03-17 09:09:06'); +INSERT INTO Order_Deliveries (`location_code`, `actual_order_id`, `delivery_status_code`, `driver_employee_id`, `truck_id`, `delivery_date`) VALUES ('58 Roof Av', 9, 'Ready', 3, 9, '2018-02-26 13:22:53'); +INSERT INTO Order_Deliveries (`location_code`, `actual_order_id`, `delivery_status_code`, `driver_employee_id`, `truck_id`, `delivery_date`) VALUES ('58 Roof Av', 5, 'Ready', 8, 1, '2018-03-20 20:36:44'); +INSERT INTO Order_Deliveries (`location_code`, `actual_order_id`, `delivery_status_code`, `driver_employee_id`, `truck_id`, `delivery_date`) VALUES ('58 Roof Av', 9, 'Ready', 14, 5, '2018-03-14 05:16:17'); +INSERT INTO Order_Deliveries (`location_code`, `actual_order_id`, `delivery_status_code`, `driver_employee_id`, `truck_id`, `delivery_date`) VALUES ('58 Roof Av', 10, 'Ready', 13, 11, '2018-03-18 02:35:08'); +INSERT INTO Order_Deliveries (`location_code`, `actual_order_id`, `delivery_status_code`, `driver_employee_id`, `truck_id`, `delivery_date`) VALUES ('34 Benz St', 4, 'On Road', 1, 2, '2018-03-01 00:50:45'); diff --git a/database/customers_and_addresses/customers_and_addresses.sqlite b/database/customers_and_addresses/customers_and_addresses.sqlite new file mode 100644 index 0000000000000000000000000000000000000000..a8957605eac67f08a57c6f4483ae03fb36f762ff Binary files /dev/null and b/database/customers_and_addresses/customers_and_addresses.sqlite differ diff --git a/database/customers_and_addresses/schema.sql b/database/customers_and_addresses/schema.sql new file mode 100644 index 0000000000000000000000000000000000000000..db1a7acdfdd33673aad01e88353dec2594501d36 --- /dev/null +++ b/database/customers_and_addresses/schema.sql @@ -0,0 +1,163 @@ +PRAGMA foreign_keys = ON; + +CREATE TABLE `Addresses` ( +`address_id` INTEGER PRIMARY KEY, +`address_content` VARCHAR(80), +`city` VARCHAR(50), +`zip_postcode` VARCHAR(20), +`state_province_county` VARCHAR(50), +`country` VARCHAR(50), +`other_address_details` VARCHAR(255) +); + +INSERT INTO Addresses (`address_id`, `address_content`, `city`, `zip_postcode`, `state_province_county`, `country`, `other_address_details`) VALUES (1, '9443 Boyle Route Suite 857', 'Lucasville', '416', 'Colorado', 'USA', NULL); +INSERT INTO Addresses (`address_id`, `address_content`, `city`, `zip_postcode`, `state_province_county`, `country`, `other_address_details`) VALUES (2, '1969 Jabari Port Suite 393', 'New Sabryna', '721', 'SouthCarolina', 'USA', NULL); +INSERT INTO Addresses (`address_id`, `address_content`, `city`, `zip_postcode`, `state_province_county`, `country`, `other_address_details`) VALUES (3, '295 Hackett Curve', 'Reingertown', '255', 'NewJersey', 'USA', NULL); +INSERT INTO Addresses (`address_id`, `address_content`, `city`, `zip_postcode`, `state_province_county`, `country`, `other_address_details`) VALUES (4, '92865 Margaretta Streets Suite 467', 'Gleasonmouth', '940', 'Arizona', 'USA', NULL); +INSERT INTO Addresses (`address_id`, `address_content`, `city`, `zip_postcode`, `state_province_county`, `country`, `other_address_details`) VALUES (5, '08996 Brisa Lane Apt. 583', 'Stantonville', '354', 'Mississippi', 'USA', NULL); +INSERT INTO Addresses (`address_id`, `address_content`, `city`, `zip_postcode`, `state_province_county`, `country`, `other_address_details`) VALUES (6, '826 Murray Locks Apt. 654', 'South Meghanview', '918', 'Colorado', 'USA', NULL); +INSERT INTO Addresses (`address_id`, `address_content`, `city`, `zip_postcode`, `state_province_county`, `country`, `other_address_details`) VALUES (7, '59540 Grover Wells Apt. 814', 'Lake Walterton', '767', 'Virginia', 'USA', NULL); +INSERT INTO Addresses (`address_id`, `address_content`, `city`, `zip_postcode`, `state_province_county`, `country`, `other_address_details`) VALUES (8, '78614 Maybell Alley Suite 057', 'South Bellaland', '921', 'Florida', 'USA', NULL); +INSERT INTO Addresses (`address_id`, `address_content`, `city`, `zip_postcode`, `state_province_county`, `country`, `other_address_details`) VALUES (9, '9168 King Rest', 'Felicityfort', '482', 'Texas', 'USA', NULL); +INSERT INTO Addresses (`address_id`, `address_content`, `city`, `zip_postcode`, `state_province_county`, `country`, `other_address_details`) VALUES (10, '120 Noble Radial', 'East Julianaside', '821', 'Texas', 'USA', NULL); +INSERT INTO Addresses (`address_id`, `address_content`, `city`, `zip_postcode`, `state_province_county`, `country`, `other_address_details`) VALUES (11, '618 Odie Villages Suite 133', 'Lake Geovannyton', '623', 'NewMexico', 'USA', NULL); +INSERT INTO Addresses (`address_id`, `address_content`, `city`, `zip_postcode`, `state_province_county`, `country`, `other_address_details`) VALUES (12, '16438 Herman Pine', 'New Terrillport', '684', 'Arkansas', 'USA', NULL); +INSERT INTO Addresses (`address_id`, `address_content`, `city`, `zip_postcode`, `state_province_county`, `country`, `other_address_details`) VALUES (13, '47831 Martin Islands', 'Port Lilyan', '235', 'RhodeIsland', 'USA', NULL); +INSERT INTO Addresses (`address_id`, `address_content`, `city`, `zip_postcode`, `state_province_county`, `country`, `other_address_details`) VALUES (14, '995 Weimann Gateway', 'Lake Ryann', '470', 'Kentucky', 'USA', NULL); +INSERT INTO Addresses (`address_id`, `address_content`, `city`, `zip_postcode`, `state_province_county`, `country`, `other_address_details`) VALUES (15, '41632 Kerluke Field', 'East Pascale', '720', 'Texas', 'USA', NULL); + + + +CREATE TABLE `Products` ( +`product_id` INTEGER PRIMARY KEY, +`product_details` VARCHAR(255) +); +INSERT INTO Products (`product_id`, `product_details`) VALUES (1, 'Americano'); +INSERT INTO Products (`product_id`, `product_details`) VALUES (2, 'Dove Chocolate'); +INSERT INTO Products (`product_id`, `product_details`) VALUES (3, 'Latte'); + + +CREATE TABLE `Customers` ( +`customer_id` INTEGER PRIMARY KEY, +`payment_method` VARCHAR(15) NOT NULL, +`customer_name` VARCHAR(80), +`date_became_customer` DATETIME, +`other_customer_details` VARCHAR(255) +); +INSERT INTO Customers (`customer_id`, `payment_method`, `customer_name`, `date_became_customer`, `other_customer_details`) VALUES (1, 'Cash', 'Dr. Julia Wuckert MD', '2018-03-01 23:20:10', NULL); +INSERT INTO Customers (`customer_id`, `payment_method`, `customer_name`, `date_became_customer`, `other_customer_details`) VALUES (2, 'Cheque', 'Tillman Ernser', '2018-02-28 11:37:44', NULL); +INSERT INTO Customers (`customer_id`, `payment_method`, `customer_name`, `date_became_customer`, `other_customer_details`) VALUES (3, 'Credit Card', 'Rodrick Heaney', '2018-03-09 17:41:58', NULL); +INSERT INTO Customers (`customer_id`, `payment_method`, `customer_name`, `date_became_customer`, `other_customer_details`) VALUES (4, 'Credit Card', 'Prof. Alexzander Hamill', '2018-02-24 00:20:18', 'VIP'); +INSERT INTO Customers (`customer_id`, `payment_method`, `customer_name`, `date_became_customer`, `other_customer_details`) VALUES (5, 'Cheque', 'Prof. Reyes Berge II', '2018-03-07 18:05:11', NULL); +INSERT INTO Customers (`customer_id`, `payment_method`, `customer_name`, `date_became_customer`, `other_customer_details`) VALUES (6, 'Cash', 'Maudie Kertzmann', '2018-02-26 11:57:47', NULL); +INSERT INTO Customers (`customer_id`, `payment_method`, `customer_name`, `date_became_customer`, `other_customer_details`) VALUES (7, 'Credit Card', 'Mozell Morissette', '2018-02-25 13:15:04', 'VIP'); +INSERT INTO Customers (`customer_id`, `payment_method`, `customer_name`, `date_became_customer`, `other_customer_details`) VALUES (8, 'Credit Card', 'Eunice Morar', '2018-03-21 01:01:04', NULL); +INSERT INTO Customers (`customer_id`, `payment_method`, `customer_name`, `date_became_customer`, `other_customer_details`) VALUES (9, 'Cheque', 'Devin Mills', '2018-03-05 16:52:51', NULL); +INSERT INTO Customers (`customer_id`, `payment_method`, `customer_name`, `date_became_customer`, `other_customer_details`) VALUES (10, 'Cash', 'Kitty Padberg III', '2018-03-22 18:09:09', NULL); +INSERT INTO Customers (`customer_id`, `payment_method`, `customer_name`, `date_became_customer`, `other_customer_details`) VALUES (11, 'Cheque', 'Salvatore Tillman', '2018-03-04 00:17:48', NULL); +INSERT INTO Customers (`customer_id`, `payment_method`, `customer_name`, `date_became_customer`, `other_customer_details`) VALUES (12, 'Cheque', 'Clifford Pagac', '2018-02-24 10:24:23', NULL); +INSERT INTO Customers (`customer_id`, `payment_method`, `customer_name`, `date_became_customer`, `other_customer_details`) VALUES (13, 'Credit Card', 'Miss Aliyah Witting', '2018-03-05 07:19:45', NULL); +INSERT INTO Customers (`customer_id`, `payment_method`, `customer_name`, `date_became_customer`, `other_customer_details`) VALUES (14, 'Cheque', 'Alexane Kilback', '2018-03-08 01:17:31', NULL); +INSERT INTO Customers (`customer_id`, `payment_method`, `customer_name`, `date_became_customer`, `other_customer_details`) VALUES (15, 'Cash', 'Prof. Ibrahim Bashirian', '2018-03-15 02:54:27', NULL); + + +CREATE TABLE `Customer_Addresses` ( +`customer_id` INTEGER NOT NULL, +`address_id` INTEGER NOT NULL, +`date_address_from` DATETIME NOT NULL, +`address_type` VARCHAR(15) NOT NULL, +`date_address_to` DATETIME, +FOREIGN KEY (`address_id` ) REFERENCES `Addresses`(`address_id` ), +FOREIGN KEY (`customer_id` ) REFERENCES `Customers`(`customer_id` ) +); +INSERT INTO Customer_Addresses (`customer_id`, `address_id`, `date_address_from`, `address_type`, `date_address_to`) VALUES (2, 11, '1985-03-29 20:31:43', 'Billing', '1993-02-17 17:55:18'); +INSERT INTO Customer_Addresses (`customer_id`, `address_id`, `date_address_from`, `address_type`, `date_address_to`) VALUES (13, 11, '2010-08-25 04:24:35', 'Billing', '1972-02-17 22:23:38'); +INSERT INTO Customer_Addresses (`customer_id`, `address_id`, `date_address_from`, `address_type`, `date_address_to`) VALUES (2, 14, '2010-12-26 08:52:50', 'Residential', '1979-07-16 18:22:39'); +INSERT INTO Customer_Addresses (`customer_id`, `address_id`, `date_address_from`, `address_type`, `date_address_to`) VALUES (15, 15, '1995-12-16 07:21:04', 'Billing', '1990-06-29 13:39:18'); +INSERT INTO Customer_Addresses (`customer_id`, `address_id`, `date_address_from`, `address_type`, `date_address_to`) VALUES (6, 7, '1972-12-08 17:12:08', 'Residential', '2010-11-10 11:35:28'); +INSERT INTO Customer_Addresses (`customer_id`, `address_id`, `date_address_from`, `address_type`, `date_address_to`) VALUES (10, 12, '1979-01-26 17:55:38', 'Residential', '1977-07-07 08:38:29'); +INSERT INTO Customer_Addresses (`customer_id`, `address_id`, `date_address_from`, `address_type`, `date_address_to`) VALUES (1, 14, '1990-11-25 12:40:25', 'Residential', '1974-03-28 18:09:39'); +INSERT INTO Customer_Addresses (`customer_id`, `address_id`, `date_address_from`, `address_type`, `date_address_to`) VALUES (10, 3, '1986-09-12 22:07:06', 'Residential', '2003-11-08 12:14:09'); +INSERT INTO Customer_Addresses (`customer_id`, `address_id`, `date_address_from`, `address_type`, `date_address_to`) VALUES (14, 15, '2003-07-08 05:33:19', 'Residential', '2010-05-08 10:00:17'); +INSERT INTO Customer_Addresses (`customer_id`, `address_id`, `date_address_from`, `address_type`, `date_address_to`) VALUES (13, 6, '2010-02-25 11:15:16', 'Residential', '1977-05-17 23:47:09'); +INSERT INTO Customer_Addresses (`customer_id`, `address_id`, `date_address_from`, `address_type`, `date_address_to`) VALUES (12, 7, '2013-01-29 23:14:00', 'Residential', '2008-04-30 00:20:58'); +INSERT INTO Customer_Addresses (`customer_id`, `address_id`, `date_address_from`, `address_type`, `date_address_to`) VALUES (4, 5, '2005-06-22 09:38:54', 'Billing', '1970-02-22 03:46:01'); +INSERT INTO Customer_Addresses (`customer_id`, `address_id`, `date_address_from`, `address_type`, `date_address_to`) VALUES (8, 6, '2016-11-24 11:00:17', 'Billing', '1970-09-18 09:07:32'); +INSERT INTO Customer_Addresses (`customer_id`, `address_id`, `date_address_from`, `address_type`, `date_address_to`) VALUES (5, 5, '1980-04-11 23:46:50', 'Billing', '1977-12-07 13:55:11'); +INSERT INTO Customer_Addresses (`customer_id`, `address_id`, `date_address_from`, `address_type`, `date_address_to`) VALUES (11, 11, '1979-01-11 13:53:30', 'Residential', '1971-11-17 18:29:57'); + + +CREATE TABLE `Customer_Contact_Channels` ( +`customer_id` INTEGER NOT NULL, +`channel_code` VARCHAR(15) NOT NULL, +`active_from_date` DATETIME NOT NULL, +`active_to_date` DATETIME, +`contact_number` VARCHAR(50) NOT NULL, +FOREIGN KEY (`customer_id` ) REFERENCES `Customers`(`customer_id` ) +); +CREATE TABLE `Customer_Orders` ( +`order_id` INTEGER PRIMARY KEY, +`customer_id` INTEGER NOT NULL, +`order_status` VARCHAR(15) NOT NULL, +`order_date` DATETIME, +`order_details` VARCHAR(255), +FOREIGN KEY (`customer_id` ) REFERENCES `Customers`(`customer_id` ) +); + +CREATE TABLE `Order_Items` ( +`order_id` INTEGER NOT NULL, +`product_id` INTEGER NOT NULL, +`order_quantity` VARCHAR(15), +FOREIGN KEY (`product_id` ) REFERENCES `Products`(`product_id` ), +FOREIGN KEY (`order_id` ) REFERENCES `Customer_Orders`(`order_id` ) +); +INSERT INTO Customer_Contact_Channels (`customer_id`, `channel_code`, `active_from_date`, `active_to_date`, `contact_number`) VALUES (9, 'Email', '2017-12-07 18:18:15', '2018-03-23 13:37:14', '940.035.6435x0225'); +INSERT INTO Customer_Contact_Channels (`customer_id`, `channel_code`, `active_from_date`, `active_to_date`, `contact_number`) VALUES (2, 'Email', '2017-04-07 04:51:41', '2018-03-23 01:30:52', '189.449.8326x7607'); +INSERT INTO Customer_Contact_Channels (`customer_id`, `channel_code`, `active_from_date`, `active_to_date`, `contact_number`) VALUES (9, 'Email', '2017-05-25 16:08:45', '2018-03-13 07:32:25', '958-653-2640'); +INSERT INTO Customer_Contact_Channels (`customer_id`, `channel_code`, `active_from_date`, `active_to_date`, `contact_number`) VALUES (2, 'Email', '2018-01-05 21:42:56', '2018-03-15 14:58:13', '1-968-863-4947x96956'); +INSERT INTO Customer_Contact_Channels (`customer_id`, `channel_code`, `active_from_date`, `active_to_date`, `contact_number`) VALUES (4, 'Cell', '2017-08-07 08:07:10', '2018-03-02 17:44:49', '(165)527-5756x2419'); +INSERT INTO Customer_Contact_Channels (`customer_id`, `channel_code`, `active_from_date`, `active_to_date`, `contact_number`) VALUES (2, 'Cell', '2017-09-21 12:41:56', '2018-03-08 19:28:16', '1-077-864-0102'); +INSERT INTO Customer_Contact_Channels (`customer_id`, `channel_code`, `active_from_date`, `active_to_date`, `contact_number`) VALUES (3, 'Handheld', '2017-05-11 12:32:16', '2018-03-20 14:35:34', '06068550461'); +INSERT INTO Customer_Contact_Channels (`customer_id`, `channel_code`, `active_from_date`, `active_to_date`, `contact_number`) VALUES (14, 'Handheld', '2017-05-23 15:20:20', '2018-03-15 02:34:01', '542.983.0224'); +INSERT INTO Customer_Contact_Channels (`customer_id`, `channel_code`, `active_from_date`, `active_to_date`, `contact_number`) VALUES (13, 'Handheld', '2017-08-26 15:16:44', '2018-03-16 14:00:15', '(379)834-0867x267'); +INSERT INTO Customer_Contact_Channels (`customer_id`, `channel_code`, `active_from_date`, `active_to_date`, `contact_number`) VALUES (6, 'Handheld', '2017-07-01 17:59:48', '2018-02-25 22:20:55', '(620)266-6990x8590'); +INSERT INTO Customer_Contact_Channels (`customer_id`, `channel_code`, `active_from_date`, `active_to_date`, `contact_number`) VALUES (10, 'Fax', '2017-06-21 06:41:19', '2018-03-15 06:00:34', '(068)656-5276x84466'); +INSERT INTO Customer_Contact_Channels (`customer_id`, `channel_code`, `active_from_date`, `active_to_date`, `contact_number`) VALUES (13, 'Fax', '2017-10-29 04:16:39', '2018-03-08 17:19:29', '496-074-8589x5477'); +INSERT INTO Customer_Contact_Channels (`customer_id`, `channel_code`, `active_from_date`, `active_to_date`, `contact_number`) VALUES (15, 'Handheld', '2017-09-08 14:00:01', '2018-03-04 13:35:57', '1-687-190-8968x63811'); +INSERT INTO Customer_Contact_Channels (`customer_id`, `channel_code`, `active_from_date`, `active_to_date`, `contact_number`) VALUES (2, 'Handheld', '2018-03-01 10:17:18', '2018-03-20 14:01:12', '118.523.6764x57405'); +INSERT INTO Customer_Contact_Channels (`customer_id`, `channel_code`, `active_from_date`, `active_to_date`, `contact_number`) VALUES (5, 'Handheld', '2017-11-14 16:16:02', '2018-03-02 03:22:26', '445.924.9417'); +INSERT INTO Customer_Contact_Channels (`customer_id`, `channel_code`, `active_from_date`, `active_to_date`, `contact_number`) VALUES (9, 'Mobile', '2017-05-25 20:36:21', '2018-02-24 00:57:39', '(155)830-6182'); +INSERT INTO Customer_Contact_Channels (`customer_id`, `channel_code`, `active_from_date`, `active_to_date`, `contact_number`) VALUES (3, 'Handheld', '2017-09-11 05:05:47', '2018-03-14 14:56:28', '1-453-027-1291'); +INSERT INTO Customer_Contact_Channels (`customer_id`, `channel_code`, `active_from_date`, `active_to_date`, `contact_number`) VALUES (9, 'Handheld', '2018-01-02 18:37:48', '2018-03-10 05:10:35', '026.019.5981x72518'); +INSERT INTO Customer_Contact_Channels (`customer_id`, `channel_code`, `active_from_date`, `active_to_date`, `contact_number`) VALUES (10, 'Cell', '2017-12-06 15:25:33', '2018-03-19 06:34:34', '495-168-9662'); +INSERT INTO Customer_Contact_Channels (`customer_id`, `channel_code`, `active_from_date`, `active_to_date`, `contact_number`) VALUES (14, 'Cell', '2017-10-17 11:46:37', '2018-03-08 20:07:20', '846.043.4809x0426'); +INSERT INTO Customer_Orders (`order_id`, `customer_id`, `order_status`, `order_date`, `order_details`) VALUES (1, 15, 'Cancelled', '2018-03-21 11:20:46', NULL); +INSERT INTO Customer_Orders (`order_id`, `customer_id`, `order_status`, `order_date`, `order_details`) VALUES (2, 3, 'Cancelled', '2018-03-05 06:35:33', NULL); +INSERT INTO Customer_Orders (`order_id`, `customer_id`, `order_status`, `order_date`, `order_details`) VALUES (3, 5, 'Delivered', '2018-03-04 07:16:22', 'Second time'); +INSERT INTO Customer_Orders (`order_id`, `customer_id`, `order_status`, `order_date`, `order_details`) VALUES (4, 12, 'Cancelled', '2018-02-28 15:46:06', NULL); +INSERT INTO Customer_Orders (`order_id`, `customer_id`, `order_status`, `order_date`, `order_details`) VALUES (5, 12, 'Delivered', '2018-03-08 15:30:24', NULL); +INSERT INTO Customer_Orders (`order_id`, `customer_id`, `order_status`, `order_date`, `order_details`) VALUES (6, 5, 'Cancelled', '2018-03-10 06:12:51', NULL); +INSERT INTO Customer_Orders (`order_id`, `customer_id`, `order_status`, `order_date`, `order_details`) VALUES (7, 10, 'Cancelled', '2018-03-23 04:39:50', 'Second time'); +INSERT INTO Customer_Orders (`order_id`, `customer_id`, `order_status`, `order_date`, `order_details`) VALUES (8, 3, 'Cancelled', '2018-03-17 02:51:37', NULL); +INSERT INTO Customer_Orders (`order_id`, `customer_id`, `order_status`, `order_date`, `order_details`) VALUES (9, 8, 'Cancelled', '2018-03-23 06:25:41', NULL); +INSERT INTO Customer_Orders (`order_id`, `customer_id`, `order_status`, `order_date`, `order_details`) VALUES (10, 12, 'Cancelled', '2018-03-17 07:13:53', NULL); +INSERT INTO Customer_Orders (`order_id`, `customer_id`, `order_status`, `order_date`, `order_details`) VALUES (11, 8, 'Cancelled', '2018-03-19 18:05:50', 'Second time'); +INSERT INTO Customer_Orders (`order_id`, `customer_id`, `order_status`, `order_date`, `order_details`) VALUES (12, 10, 'Delivered', '2018-03-16 03:16:57', 'Second time'); +INSERT INTO Customer_Orders (`order_id`, `customer_id`, `order_status`, `order_date`, `order_details`) VALUES (13, 4, 'Delivered', '2018-03-22 14:57:30', NULL); +INSERT INTO Customer_Orders (`order_id`, `customer_id`, `order_status`, `order_date`, `order_details`) VALUES (14, 11, 'Cancelled', '2018-02-24 13:18:49', 'Second time'); +INSERT INTO Customer_Orders (`order_id`, `customer_id`, `order_status`, `order_date`, `order_details`) VALUES (15, 10, 'Delivered', '2018-03-06 12:31:35', NULL); +INSERT INTO Order_Items (`order_id`, `product_id`, `order_quantity`) VALUES (14, 2, '5'); +INSERT INTO Order_Items (`order_id`, `product_id`, `order_quantity`) VALUES (5, 2, '9'); +INSERT INTO Order_Items (`order_id`, `product_id`, `order_quantity`) VALUES (14, 3, '2'); +INSERT INTO Order_Items (`order_id`, `product_id`, `order_quantity`) VALUES (2, 2, '9'); +INSERT INTO Order_Items (`order_id`, `product_id`, `order_quantity`) VALUES (13, 1, '9'); +INSERT INTO Order_Items (`order_id`, `product_id`, `order_quantity`) VALUES (10, 1, '5'); +INSERT INTO Order_Items (`order_id`, `product_id`, `order_quantity`) VALUES (10, 3, '6'); +INSERT INTO Order_Items (`order_id`, `product_id`, `order_quantity`) VALUES (7, 2, '9'); +INSERT INTO Order_Items (`order_id`, `product_id`, `order_quantity`) VALUES (14, 3, '8'); +INSERT INTO Order_Items (`order_id`, `product_id`, `order_quantity`) VALUES (10, 2, '5'); +INSERT INTO Order_Items (`order_id`, `product_id`, `order_quantity`) VALUES (10, 2, '9'); +INSERT INTO Order_Items (`order_id`, `product_id`, `order_quantity`) VALUES (11, 2, '1'); +INSERT INTO Order_Items (`order_id`, `product_id`, `order_quantity`) VALUES (10, 3, '6'); +INSERT INTO Order_Items (`order_id`, `product_id`, `order_quantity`) VALUES (8, 1, '7'); +INSERT INTO Order_Items (`order_id`, `product_id`, `order_quantity`) VALUES (8, 2, '5'); diff --git a/database/customers_and_invoices/customers_and_invoices.sqlite b/database/customers_and_invoices/customers_and_invoices.sqlite new file mode 100644 index 0000000000000000000000000000000000000000..630da62dc20b170de1e77ffde7c8e37f2fec2ed1 Binary files /dev/null and b/database/customers_and_invoices/customers_and_invoices.sqlite differ diff --git a/database/customers_and_invoices/schema.sql b/database/customers_and_invoices/schema.sql new file mode 100644 index 0000000000000000000000000000000000000000..4425833e7593e46f32ba3947f193c0501b211c0b --- /dev/null +++ b/database/customers_and_invoices/schema.sql @@ -0,0 +1,229 @@ +PRAGMA foreign_keys = ON; +CREATE TABLE `Customers` ( +`customer_id` INTEGER PRIMARY KEY, +`customer_first_name` VARCHAR(50), +`customer_middle_initial` VARCHAR(1), +`customer_last_name` VARCHAR(50), +`gender` VARCHAR(1), +`email_address` VARCHAR(255), +`login_name` VARCHAR(80), +`login_password` VARCHAR(20), +`phone_number` VARCHAR(255), +`town_city` VARCHAR(50), +`state_county_province` VARCHAR(50), +`country` VARCHAR(50) +); + +INSERT INTO Customers (`customer_id`, `customer_first_name`, `customer_middle_initial`, `customer_last_name`, `gender`, `email_address`, `login_name`, `login_password`, `phone_number`, `town_city`, `state_county_province`, `country`) VALUES (1, 'Dee', 'A', 'Larkin', '1', 'thora.torphy@example.org', 'xhartmann', '77789d292604ea04406f', '241.796.1219x37862', 'North Nellie', 'WestVirginia', 'USA'); +INSERT INTO Customers (`customer_id`, `customer_first_name`, `customer_middle_initial`, `customer_last_name`, `gender`, `email_address`, `login_name`, `login_password`, `phone_number`, `town_city`, `state_county_province`, `country`) VALUES (2, 'Brennon', 'H', 'Weimann', '0', 'roosevelt.collier@example.org', 'shayne.lesch', 'ce97a3e4539347daab96', '(943)219-4234x415', 'South Isabell', 'Oklahoma', 'USA'); +INSERT INTO Customers (`customer_id`, `customer_first_name`, `customer_middle_initial`, `customer_last_name`, `gender`, `email_address`, `login_name`, `login_password`, `phone_number`, `town_city`, `state_county_province`, `country`) VALUES (3, 'Joesph', 'K', 'Schaefer', '0', 'homenick.ambrose@example.net', 'feeney.lauriane', 'a6c7a7064c36b038d402', '(488)524-5345', 'New Nikolas', 'Arkansas', 'USA'); +INSERT INTO Customers (`customer_id`, `customer_first_name`, `customer_middle_initial`, `customer_last_name`, `gender`, `email_address`, `login_name`, `login_password`, `phone_number`, `town_city`, `state_county_province`, `country`) VALUES (4, 'Zita', 'L', 'Trantow', '0', 'destinee06@example.com', 'rubye.padberg', 'eb32d2933362d38faff7', '(193)465-6674x4952', 'Ellaburgh', 'Colorado', 'USA'); +INSERT INTO Customers (`customer_id`, `customer_first_name`, `customer_middle_initial`, `customer_last_name`, `gender`, `email_address`, `login_name`, `login_password`, `phone_number`, `town_city`, `state_county_province`, `country`) VALUES (5, 'Murl', 'B', 'Shanahan', '1', 'jovani64@example.com', 'jankunding', '398c1603aec3e9de2684', '1-546-447-9843x13741', 'North Helmerbury', 'Idaho', 'USA'); +INSERT INTO Customers (`customer_id`, `customer_first_name`, `customer_middle_initial`, `customer_last_name`, `gender`, `email_address`, `login_name`, `login_password`, `phone_number`, `town_city`, `state_county_province`, `country`) VALUES (6, 'Vesta', 'E', 'Leuschke', '1', 'philip94@example.org', 'zdeckow', 'bdbc3c18cf28303c4f6a', '+69(0)7149212554', 'North Devonte', 'Mississippi', 'USA'); +INSERT INTO Customers (`customer_id`, `customer_first_name`, `customer_middle_initial`, `customer_last_name`, `gender`, `email_address`, `login_name`, `login_password`, `phone_number`, `town_city`, `state_county_province`, `country`) VALUES (7, 'Dangelo', 'M', 'Spinka', '1', 'zullrich@example.net', 'camilla.dubuque', '180a37476c537e78d3de', '1-904-787-7320', 'West Khaliltown', 'Kansas', 'USA'); +INSERT INTO Customers (`customer_id`, `customer_first_name`, `customer_middle_initial`, `customer_last_name`, `gender`, `email_address`, `login_name`, `login_password`, `phone_number`, `town_city`, `state_county_province`, `country`) VALUES (8, 'Meaghan', 'M', 'Keeling', '0', 'pyundt@example.org', 'lowe.wilber', 'e67856613cd71f1b2884', '06015518212', 'Kenshire', 'Mississippi', 'USA'); +INSERT INTO Customers (`customer_id`, `customer_first_name`, `customer_middle_initial`, `customer_last_name`, `gender`, `email_address`, `login_name`, `login_password`, `phone_number`, `town_city`, `state_county_province`, `country`) VALUES (9, 'Abbey', 'B', 'Ruecker', '0', 'anastacio45@example.org', 'dubuque.gina', 'd7629de5171fe29106c8', '1-344-593-4896x425', 'Bruenchester', 'California', 'USA'); +INSERT INTO Customers (`customer_id`, `customer_first_name`, `customer_middle_initial`, `customer_last_name`, `gender`, `email_address`, `login_name`, `login_password`, `phone_number`, `town_city`, `state_county_province`, `country`) VALUES (10, 'Devin', 'V', 'Glover', '0', 'udeckow@example.com', 'ypowlowski', '604f9062a5a0de83ef9d', '197-955-3766', 'Lake Eusebiomouth', 'Florida', 'USA'); +INSERT INTO Customers (`customer_id`, `customer_first_name`, `customer_middle_initial`, `customer_last_name`, `gender`, `email_address`, `login_name`, `login_password`, `phone_number`, `town_city`, `state_county_province`, `country`) VALUES (11, 'Neoma', 'G', 'Hauck', '1', 'michel92@example.org', 'ahmad.hagenes', '035f2ba1e2a675c4f426', '+95(0)1523064649', 'New Rachellefort', 'Alabama', 'USA'); +INSERT INTO Customers (`customer_id`, `customer_first_name`, `customer_middle_initial`, `customer_last_name`, `gender`, `email_address`, `login_name`, `login_password`, `phone_number`, `town_city`, `state_county_province`, `country`) VALUES (12, 'Jensen', 'M', 'Muller', '0', 'lew.nicolas@example.org', 'pbecker', '5fe7c12dc3176ddf67c4', '(650)406-8761', 'Carleefort', 'Montana', 'USA'); +INSERT INTO Customers (`customer_id`, `customer_first_name`, `customer_middle_initial`, `customer_last_name`, `gender`, `email_address`, `login_name`, `login_password`, `phone_number`, `town_city`, `state_county_province`, `country`) VALUES (13, 'Kieran', 'A', 'Auer', '0', 'nnolan@example.org', 'sophia97', 'd4ade599672bccdabeee', '(157)046-6255x98627', 'Lake Freemanville', 'Kentucky', 'USA'); +INSERT INTO Customers (`customer_id`, `customer_first_name`, `customer_middle_initial`, `customer_last_name`, `gender`, `email_address`, `login_name`, `login_password`, `phone_number`, `town_city`, `state_county_province`, `country`) VALUES (14, 'Percival', 'B', 'Kessler', '1', 'jacobi.shanon@example.org', 'lucy.jast', '178613c20728eec256db', '(791)562-7792x45732', 'Port Hollie', 'Louisiana', 'USA'); +INSERT INTO Customers (`customer_id`, `customer_first_name`, `customer_middle_initial`, `customer_last_name`, `gender`, `email_address`, `login_name`, `login_password`, `phone_number`, `town_city`, `state_county_province`, `country`) VALUES (15, 'Ruby', 'K', 'Boyle', '0', 'gwolff@example.net', 'dthiel', 'eff2c0dbf972481ba23c', '1-546-302-5676', 'East Stephaniafort', 'SouthDakota', 'USA'); + + +CREATE TABLE `Orders` ( +`order_id` INTEGER PRIMARY KEY, +`customer_id` INTEGER NOT NULL, +`date_order_placed` DATETIME NOT NULL, +`order_details` VARCHAR(255), +FOREIGN KEY (`customer_id` ) REFERENCES `Customers`(`customer_id` ) +); +INSERT INTO Orders (`order_id`, `customer_id`, `date_order_placed`, `order_details`) VALUES (1, 12, '2012-06-27 20:49:56', NULL); +INSERT INTO Orders (`order_id`, `customer_id`, `date_order_placed`, `order_details`) VALUES (2, 12, '2012-08-25 07:51:54', NULL); +INSERT INTO Orders (`order_id`, `customer_id`, `date_order_placed`, `order_details`) VALUES (3, 8, '2017-11-05 15:32:38', NULL); +INSERT INTO Orders (`order_id`, `customer_id`, `date_order_placed`, `order_details`) VALUES (4, 5, '2017-11-27 21:50:58', NULL); +INSERT INTO Orders (`order_id`, `customer_id`, `date_order_placed`, `order_details`) VALUES (5, 15, '2015-05-17 03:05:32', NULL); +INSERT INTO Orders (`order_id`, `customer_id`, `date_order_placed`, `order_details`) VALUES (6, 5, '2015-11-25 22:55:41', NULL); +INSERT INTO Orders (`order_id`, `customer_id`, `date_order_placed`, `order_details`) VALUES (7, 3, '2016-04-15 03:33:59', NULL); +INSERT INTO Orders (`order_id`, `customer_id`, `date_order_placed`, `order_details`) VALUES (8, 3, '2010-01-28 03:43:26', NULL); +INSERT INTO Orders (`order_id`, `customer_id`, `date_order_placed`, `order_details`) VALUES (9, 2, '2017-03-08 05:42:10', NULL); +INSERT INTO Orders (`order_id`, `customer_id`, `date_order_placed`, `order_details`) VALUES (10, 11, '2017-12-04 02:59:10', NULL); +INSERT INTO Orders (`order_id`, `customer_id`, `date_order_placed`, `order_details`) VALUES (11, 14, '2010-10-22 06:45:16', NULL); +INSERT INTO Orders (`order_id`, `customer_id`, `date_order_placed`, `order_details`) VALUES (12, 1, '2017-05-24 19:26:44', NULL); +INSERT INTO Orders (`order_id`, `customer_id`, `date_order_placed`, `order_details`) VALUES (13, 10, '2015-08-06 22:40:40', NULL); +INSERT INTO Orders (`order_id`, `customer_id`, `date_order_placed`, `order_details`) VALUES (14, 10, '2017-10-29 04:20:08', NULL); +INSERT INTO Orders (`order_id`, `customer_id`, `date_order_placed`, `order_details`) VALUES (15, 6, '2013-10-25 17:40:25', NULL); + + + +CREATE TABLE `Invoices` ( +`invoice_number` INTEGER PRIMARY KEY, +`order_id` INTEGER NOT NULL, +`invoice_date` DATETIME, +FOREIGN KEY (`order_id` ) REFERENCES `Orders`(`order_id` ) +); +INSERT INTO Invoices (`invoice_number`, `order_id`, `invoice_date`) VALUES (1, 9, '2018-03-01 16:40:48'); +INSERT INTO Invoices (`invoice_number`, `order_id`, `invoice_date`) VALUES (2, 9, '2018-03-20 00:21:41'); +INSERT INTO Invoices (`invoice_number`, `order_id`, `invoice_date`) VALUES (3, 3, '2018-03-05 08:47:33'); +INSERT INTO Invoices (`invoice_number`, `order_id`, `invoice_date`) VALUES (4, 9, '2018-02-28 19:01:06'); +INSERT INTO Invoices (`invoice_number`, `order_id`, `invoice_date`) VALUES (5, 13, '2018-03-07 02:04:32'); +INSERT INTO Invoices (`invoice_number`, `order_id`, `invoice_date`) VALUES (6, 8, '2018-03-16 21:57:43'); +INSERT INTO Invoices (`invoice_number`, `order_id`, `invoice_date`) VALUES (7, 10, '2018-03-13 07:27:38'); +INSERT INTO Invoices (`invoice_number`, `order_id`, `invoice_date`) VALUES (8, 10, '2018-03-19 17:06:30'); +INSERT INTO Invoices (`invoice_number`, `order_id`, `invoice_date`) VALUES (9, 12, '2018-03-16 11:01:06'); +INSERT INTO Invoices (`invoice_number`, `order_id`, `invoice_date`) VALUES (10, 11, '2018-03-01 01:44:08'); +INSERT INTO Invoices (`invoice_number`, `order_id`, `invoice_date`) VALUES (11, 5, '2018-03-23 04:59:28'); +INSERT INTO Invoices (`invoice_number`, `order_id`, `invoice_date`) VALUES (12, 3, '2018-03-15 21:24:13'); +INSERT INTO Invoices (`invoice_number`, `order_id`, `invoice_date`) VALUES (13, 3, '2018-03-03 20:44:06'); +INSERT INTO Invoices (`invoice_number`, `order_id`, `invoice_date`) VALUES (14, 4, '2018-03-19 22:38:10'); +INSERT INTO Invoices (`invoice_number`, `order_id`, `invoice_date`) VALUES (15, 14, '2018-03-15 09:38:49'); + + +CREATE TABLE `Accounts` ( +`account_id` INTEGER PRIMARY KEY, +`customer_id` INTEGER NOT NULL, +`date_account_opened` DATETIME, +`account_name` VARCHAR(50), +`other_account_details` VARCHAR(255), +FOREIGN KEY (`customer_id` ) REFERENCES `Customers`(`customer_id` ) +); + + + +INSERT INTO Accounts (`account_id`, `customer_id`, `date_account_opened`, `account_name`, `other_account_details`) VALUES (1, 8, '2016-07-30 22:22:24', '900', 'Regular'); +INSERT INTO Accounts (`account_id`, `customer_id`, `date_account_opened`, `account_name`, `other_account_details`) VALUES (2, 3, '2017-05-29 16:45:17', '520', 'VIP'); +INSERT INTO Accounts (`account_id`, `customer_id`, `date_account_opened`, `account_name`, `other_account_details`) VALUES (3, 8, '2012-05-04 18:50:32', '323', 'Regular'); +INSERT INTO Accounts (`account_id`, `customer_id`, `date_account_opened`, `account_name`, `other_account_details`) VALUES (4, 15, '2011-03-29 15:06:59', '390', 'VIP'); +INSERT INTO Accounts (`account_id`, `customer_id`, `date_account_opened`, `account_name`, `other_account_details`) VALUES (5, 15, '2014-08-11 18:15:14', '935', 'Regular'); +INSERT INTO Accounts (`account_id`, `customer_id`, `date_account_opened`, `account_name`, `other_account_details`) VALUES (6, 12, '2014-05-30 12:16:52', '371', 'Regular'); +INSERT INTO Accounts (`account_id`, `customer_id`, `date_account_opened`, `account_name`, `other_account_details`) VALUES (7, 13, '2015-11-03 08:04:15', '398', 'VIP'); +INSERT INTO Accounts (`account_id`, `customer_id`, `date_account_opened`, `account_name`, `other_account_details`) VALUES (8, 9, '2009-06-13 11:41:52', '710', 'Regular'); +INSERT INTO Accounts (`account_id`, `customer_id`, `date_account_opened`, `account_name`, `other_account_details`) VALUES (9, 8, '2010-10-22 13:33:45', '337', 'Regular'); +INSERT INTO Accounts (`account_id`, `customer_id`, `date_account_opened`, `account_name`, `other_account_details`) VALUES (10, 15, '2016-04-25 21:49:17', '429', 'VIP'); +INSERT INTO Accounts (`account_id`, `customer_id`, `date_account_opened`, `account_name`, `other_account_details`) VALUES (11, 13, '2012-07-09 23:40:15', '191', 'VIP'); +INSERT INTO Accounts (`account_id`, `customer_id`, `date_account_opened`, `account_name`, `other_account_details`) VALUES (12, 8, '2015-02-02 09:47:08', '601', 'Regular'); +INSERT INTO Accounts (`account_id`, `customer_id`, `date_account_opened`, `account_name`, `other_account_details`) VALUES (13, 13, '2010-06-16 09:35:00', '272', 'Regular'); +INSERT INTO Accounts (`account_id`, `customer_id`, `date_account_opened`, `account_name`, `other_account_details`) VALUES (14, 13, '2014-12-28 07:29:42', '861', 'VIP'); +INSERT INTO Accounts (`account_id`, `customer_id`, `date_account_opened`, `account_name`, `other_account_details`) VALUES (15, 6, '2008-05-04 22:15:56', '662', 'VIP'); + + +CREATE TABLE `Product_Categories` ( +`production_type_code` VARCHAR(15) PRIMARY KEY, +`product_type_description` VARCHAR(80), +`vat_rating` DECIMAL(19,4) +); +CREATE TABLE `Products` ( +`product_id` INTEGER PRIMARY KEY, +`parent_product_id` INTEGER, +`production_type_code` VARCHAR(15) NOT NULL, +`unit_price` DECIMAL(19,4), +`product_name` VARCHAR(80), +`product_color` VARCHAR(20), +`product_size` VARCHAR(20), +FOREIGN KEY (`production_type_code` ) REFERENCES `Product_Categories`(`production_type_code` ) +); + +INSERT INTO Product_Categories (`production_type_code`, `product_type_description`, `vat_rating`) VALUES ('Food', 'Food', '15.8400'); +INSERT INTO Product_Categories (`production_type_code`, `product_type_description`, `vat_rating`) VALUES ('DVDs', 'Dvd products', '11.4000'); +INSERT INTO Product_Categories (`production_type_code`, `product_type_description`, `vat_rating`) VALUES ('Books', 'Books', '13.9500'); +INSERT INTO Product_Categories (`production_type_code`, `product_type_description`, `vat_rating`) VALUES ('Electronics', 'Electrical devices', '17.9000'); +INSERT INTO Products (`product_id`, `parent_product_id`, `production_type_code`, `unit_price`, `product_name`, `product_color`, `product_size`) VALUES (1, 4, 'Food', '617.9500', 'Coffee Bean', 'Red', 'Medium'); +INSERT INTO Products (`product_id`, `parent_product_id`, `production_type_code`, `unit_price`, `product_name`, `product_color`, `product_size`) VALUES (2, 4, 'Books', '558.4900', 'Learning French', 'Yellow', 'Medium'); +INSERT INTO Products (`product_id`, `parent_product_id`, `production_type_code`, `unit_price`, `product_name`, `product_color`, `product_size`) VALUES (3, 8, 'Electronics', '563.5800', 'Fans', 'Black', 'Medium'); +INSERT INTO Products (`product_id`, `parent_product_id`, `production_type_code`, `unit_price`, `product_name`, `product_color`, `product_size`) VALUES (4, 8, 'Electronics', '985.7800', 'Hard Drive', 'Black', 'Small'); +INSERT INTO Products (`product_id`, `parent_product_id`, `production_type_code`, `unit_price`, `product_name`, `product_color`, `product_size`) VALUES (5, 7, 'DVDs', '682.0600', 'Arts', 'Yellow', 'Small'); +INSERT INTO Products (`product_id`, `parent_product_id`, `production_type_code`, `unit_price`, `product_name`, `product_color`, `product_size`) VALUES (6, 7, 'Books', '469.7100', 'Art History', 'Yellow', 'Small'); +INSERT INTO Products (`product_id`, `parent_product_id`, `production_type_code`, `unit_price`, `product_name`, `product_color`, `product_size`) VALUES (7, 5, 'Books', '409.8300', 'Learning English', 'Red', 'Large'); +INSERT INTO Products (`product_id`, `parent_product_id`, `production_type_code`, `unit_price`, `product_name`, `product_color`, `product_size`) VALUES (8, 1, 'Books', '49.6200', 'Menus', 'Black', 'Small'); +INSERT INTO Products (`product_id`, `parent_product_id`, `production_type_code`, `unit_price`, `product_name`, `product_color`, `product_size`) VALUES (9, 8, 'Food', '694.3100', 'Beer Menus', 'Black', 'Small'); +INSERT INTO Products (`product_id`, `parent_product_id`, `production_type_code`, `unit_price`, `product_name`, `product_color`, `product_size`) VALUES (10, 9, 'Electronics', '937.8500', 'TV', 'Red', 'Medium'); +INSERT INTO Products (`product_id`, `parent_product_id`, `production_type_code`, `unit_price`, `product_name`, `product_color`, `product_size`) VALUES (11, 8, 'DVDs', '52.8800', 'Harry Potter 1', 'Black', 'Small'); +INSERT INTO Products (`product_id`, `parent_product_id`, `production_type_code`, `unit_price`, `product_name`, `product_color`, `product_size`) VALUES (12, 1, 'DVDs', '729.0900', 'Harry Potter 2', 'Red', 'Medium'); +INSERT INTO Products (`product_id`, `parent_product_id`, `production_type_code`, `unit_price`, `product_name`, `product_color`, `product_size`) VALUES (13, 6, 'Food', '639.7600', 'Chocolate', 'Yellow', 'Small'); +INSERT INTO Products (`product_id`, `parent_product_id`, `production_type_code`, `unit_price`, `product_name`, `product_color`, `product_size`) VALUES (14, 1, 'DVDs', '469.8700', 'Harry Potter 3', 'Yellow', 'Small'); +INSERT INTO Products (`product_id`, `parent_product_id`, `production_type_code`, `unit_price`, `product_name`, `product_color`, `product_size`) VALUES (15, 2, 'DVDs', '82.9600', 'Harry Potter 4', 'Yellow', 'Large'); + + +CREATE TABLE `Financial_Transactions` ( +`transaction_id` INTEGER NOT NULL , +`account_id` INTEGER NOT NULL, +`invoice_number` INTEGER, +`transaction_type` VARCHAR(15) NOT NULL, +`transaction_date` DATETIME, +`transaction_amount` DECIMAL(19,4), +`transaction_comment` VARCHAR(255), +`other_transaction_details` VARCHAR(255), +FOREIGN KEY (`invoice_number` ) REFERENCES `Invoices`(`invoice_number` ), +FOREIGN KEY (`account_id` ) REFERENCES `Accounts`(`account_id` ) +); +CREATE TABLE `Order_Items` ( +`order_item_id` INTEGER PRIMARY KEY, +`order_id` INTEGER NOT NULL, +`product_id` INTEGER NOT NULL, +`product_quantity` VARCHAR(50), +`other_order_item_details` VARCHAR(255), +FOREIGN KEY (`product_id` ) REFERENCES `Products`(`product_id` ), +FOREIGN KEY (`order_id` ) REFERENCES `Orders`(`order_id` ) +); + + +INSERT INTO Financial_Transactions (`transaction_id`, `account_id`, `invoice_number`, `transaction_type`, `transaction_date`, `transaction_amount`) VALUES (1, 13, 12, 'Payment', '2018-03-15 21:13:57', '613.9600'); +INSERT INTO Financial_Transactions (`transaction_id`, `account_id`, `invoice_number`, `transaction_type`, `transaction_date`, `transaction_amount`) VALUES (2, 9, 1, 'Payment', '2018-03-13 13:27:46', '368.4600'); +INSERT INTO Financial_Transactions (`transaction_id`, `account_id`, `invoice_number`, `transaction_type`, `transaction_date`, `transaction_amount`) VALUES (3, 6, 1, 'Refund', '2018-03-03 01:50:25', '1598.2500'); +INSERT INTO Financial_Transactions (`transaction_id`, `account_id`, `invoice_number`, `transaction_type`, `transaction_date`, `transaction_amount`) VALUES (4, 9, 12, 'Payment', '2018-03-10 13:46:48', '540.7300'); +INSERT INTO Financial_Transactions (`transaction_id`, `account_id`, `invoice_number`, `transaction_type`, `transaction_date`, `transaction_amount`) VALUES (5, 9, 2, 'Payment', '2018-03-23 04:56:12', '1214.2200'); +INSERT INTO Financial_Transactions (`transaction_id`, `account_id`, `invoice_number`, `transaction_type`, `transaction_date`, `transaction_amount`) VALUES (6, 12, 3, 'Refund', '2018-03-22 21:58:37', '1903.4100'); +INSERT INTO Financial_Transactions (`transaction_id`, `account_id`, `invoice_number`, `transaction_type`, `transaction_date`, `transaction_amount`) VALUES (7, 13, 14, 'Payment', '2018-03-12 03:06:52', '1585.0300'); +INSERT INTO Financial_Transactions (`transaction_id`, `account_id`, `invoice_number`, `transaction_type`, `transaction_date`, `transaction_amount`) VALUES (8, 14, 15, 'Payment', '2018-03-11 21:57:47', '1425.4100'); +INSERT INTO Financial_Transactions (`transaction_id`, `account_id`, `invoice_number`, `transaction_type`, `transaction_date`, `transaction_amount`) VALUES (9, 8, 12, 'Payment', '2018-03-07 04:32:54', '1517.7700'); +INSERT INTO Financial_Transactions (`transaction_id`, `account_id`, `invoice_number`, `transaction_type`, `transaction_date`, `transaction_amount`) VALUES (10, 6, 15, 'Payment', '2018-03-14 19:09:07', '1477.5700'); +INSERT INTO Financial_Transactions (`transaction_id`, `account_id`, `invoice_number`, `transaction_type`, `transaction_date`, `transaction_amount`) VALUES (11, 6, 13, 'Refund', '2018-03-12 22:51:05', '1567.6400'); +INSERT INTO Financial_Transactions (`transaction_id`, `account_id`, `invoice_number`, `transaction_type`, `transaction_date`, `transaction_amount`) VALUES (12, 9, 6, 'Refund', '2018-03-05 19:55:23', '1781.2400'); +INSERT INTO Financial_Transactions (`transaction_id`, `account_id`, `invoice_number`, `transaction_type`, `transaction_date`, `transaction_amount`) VALUES (13, 13, 12, 'Refund', '2018-03-24 12:05:11', '899.8700'); +INSERT INTO Financial_Transactions (`transaction_id`, `account_id`, `invoice_number`, `transaction_type`, `transaction_date`, `transaction_amount`) VALUES (14, 11, 5, 'Refund', '2018-03-13 03:51:59', '1462.6200'); +INSERT INTO Financial_Transactions (`transaction_id`, `account_id`, `invoice_number`, `transaction_type`, `transaction_date`, `transaction_amount`) VALUES (15, 4, 14, 'Refund', '2018-02-27 14:58:30', '1979.6600'); +INSERT INTO Order_Items (`order_item_id`, `order_id`, `product_id`, `product_quantity`, `other_order_item_details`) VALUES (1, 4, 4, '6', NULL); +INSERT INTO Order_Items (`order_item_id`, `order_id`, `product_id`, `product_quantity`, `other_order_item_details`) VALUES (2, 4, 10, '7', NULL); +INSERT INTO Order_Items (`order_item_id`, `order_id`, `product_id`, `product_quantity`, `other_order_item_details`) VALUES (3, 15, 5, '4', NULL); +INSERT INTO Order_Items (`order_item_id`, `order_id`, `product_id`, `product_quantity`, `other_order_item_details`) VALUES (4, 1, 3, '9', NULL); +INSERT INTO Order_Items (`order_item_id`, `order_id`, `product_id`, `product_quantity`, `other_order_item_details`) VALUES (5, 2, 14, '3', NULL); +INSERT INTO Order_Items (`order_item_id`, `order_id`, `product_id`, `product_quantity`, `other_order_item_details`) VALUES (6, 13, 12, '8', NULL); +INSERT INTO Order_Items (`order_item_id`, `order_id`, `product_id`, `product_quantity`, `other_order_item_details`) VALUES (7, 1, 15, '3', NULL); +INSERT INTO Order_Items (`order_item_id`, `order_id`, `product_id`, `product_quantity`, `other_order_item_details`) VALUES (8, 10, 4, '4', NULL); +INSERT INTO Order_Items (`order_item_id`, `order_id`, `product_id`, `product_quantity`, `other_order_item_details`) VALUES (9, 14, 5, '1', NULL); +INSERT INTO Order_Items (`order_item_id`, `order_id`, `product_id`, `product_quantity`, `other_order_item_details`) VALUES (10, 13, 9, '2', NULL); +INSERT INTO Order_Items (`order_item_id`, `order_id`, `product_id`, `product_quantity`, `other_order_item_details`) VALUES (11, 15, 7, '5', NULL); +INSERT INTO Order_Items (`order_item_id`, `order_id`, `product_id`, `product_quantity`, `other_order_item_details`) VALUES (12, 4, 14, '4', NULL); +INSERT INTO Order_Items (`order_item_id`, `order_id`, `product_id`, `product_quantity`, `other_order_item_details`) VALUES (13, 12, 13, '1', NULL); +INSERT INTO Order_Items (`order_item_id`, `order_id`, `product_id`, `product_quantity`, `other_order_item_details`) VALUES (14, 13, 14, '2', NULL); +INSERT INTO Order_Items (`order_item_id`, `order_id`, `product_id`, `product_quantity`, `other_order_item_details`) VALUES (15, 13, 14, '6', NULL); + +CREATE TABLE `Invoice_Line_Items` ( +`order_item_id` INTEGER NOT NULL, +`invoice_number` INTEGER NOT NULL, +`product_id` INTEGER NOT NULL, +`product_title` VARCHAR(80), +`product_quantity` VARCHAR(50), +`product_price` DECIMAL(19,4), +`derived_product_cost` DECIMAL(19,4), +`derived_vat_payable` DECIMAL(19,4), +`derived_total_cost` DECIMAL(19,4), +FOREIGN KEY (`order_item_id` ) REFERENCES `Order_Items`(`order_item_id` ), +FOREIGN KEY (`invoice_number` ) REFERENCES `Invoices`(`invoice_number` ), +FOREIGN KEY (`product_id` ) REFERENCES `Products`(`product_id` ) +); +INSERT INTO Invoice_Line_Items (`order_item_id`, `invoice_number`, `product_id`, `product_title`, `product_quantity`, `product_price`, `derived_product_cost`, `derived_vat_payable`, `derived_total_cost`) VALUES (14, 9, 5, 'prod_name', '4', '742.3700', '191.1100', NULL, '69.8200'); +INSERT INTO Invoice_Line_Items (`order_item_id`, `invoice_number`, `product_id`, `product_title`, `product_quantity`, `product_price`, `derived_product_cost`, `derived_vat_payable`, `derived_total_cost`) VALUES (3, 9, 15, 'prod_name', '1', '814.8700', '176.2900', NULL, '59.5600'); +INSERT INTO Invoice_Line_Items (`order_item_id`, `invoice_number`, `product_id`, `product_title`, `product_quantity`, `product_price`, `derived_product_cost`, `derived_vat_payable`, `derived_total_cost`) VALUES (4, 10, 15, 'prod_name', '8', '943.0700', '73.1400', NULL, '59.9300'); +INSERT INTO Invoice_Line_Items (`order_item_id`, `invoice_number`, `product_id`, `product_title`, `product_quantity`, `product_price`, `derived_product_cost`, `derived_vat_payable`, `derived_total_cost`) VALUES (6, 15, 14, 'prod_name', '2', '749.6000', '197.0600', NULL, '82.7700'); +INSERT INTO Invoice_Line_Items (`order_item_id`, `invoice_number`, `product_id`, `product_title`, `product_quantity`, `product_price`, `derived_product_cost`, `derived_vat_payable`, `derived_total_cost`) VALUES (8, 11, 10, 'prod_name', '2', '942.9900', '88.4300', NULL, '86.5600'); +INSERT INTO Invoice_Line_Items (`order_item_id`, `invoice_number`, `product_id`, `product_title`, `product_quantity`, `product_price`, `derived_product_cost`, `derived_vat_payable`, `derived_total_cost`) VALUES (9, 11, 9, 'prod_name', '6', '486.6900', '64.6700', NULL, '83.4000'); +INSERT INTO Invoice_Line_Items (`order_item_id`, `invoice_number`, `product_id`, `product_title`, `product_quantity`, `product_price`, `derived_product_cost`, `derived_vat_payable`, `derived_total_cost`) VALUES (8, 14, 3, 'prod_name', '3', '995.3400', '28.1800', NULL, '58.2400'); +INSERT INTO Invoice_Line_Items (`order_item_id`, `invoice_number`, `product_id`, `product_title`, `product_quantity`, `product_price`, `derived_product_cost`, `derived_vat_payable`, `derived_total_cost`) VALUES (11, 1, 6, 'prod_name', '9', '429.0500', '254.0800', NULL, '79.4800'); +INSERT INTO Invoice_Line_Items (`order_item_id`, `invoice_number`, `product_id`, `product_title`, `product_quantity`, `product_price`, `derived_product_cost`, `derived_vat_payable`, `derived_total_cost`) VALUES (15, 9, 3, 'prod_name', '4', '727.4100', '66.0000', NULL, '53.5300'); +INSERT INTO Invoice_Line_Items (`order_item_id`, `invoice_number`, `product_id`, `product_title`, `product_quantity`, `product_price`, `derived_product_cost`, `derived_vat_payable`, `derived_total_cost`) VALUES (7, 9, 14, 'prod_name', '9', '559.9500', '89.1600', NULL, '45.6600'); +INSERT INTO Invoice_Line_Items (`order_item_id`, `invoice_number`, `product_id`, `product_title`, `product_quantity`, `product_price`, `derived_product_cost`, `derived_vat_payable`, `derived_total_cost`) VALUES (5, 7, 8, 'prod_name', '6', '787.6100', '150.0400', NULL, '51.2700'); +INSERT INTO Invoice_Line_Items (`order_item_id`, `invoice_number`, `product_id`, `product_title`, `product_quantity`, `product_price`, `derived_product_cost`, `derived_vat_payable`, `derived_total_cost`) VALUES (10, 10, 1, 'prod_name', '9', '781.4600', '256.8400', NULL, '71.2200'); +INSERT INTO Invoice_Line_Items (`order_item_id`, `invoice_number`, `product_id`, `product_title`, `product_quantity`, `product_price`, `derived_product_cost`, `derived_vat_payable`, `derived_total_cost`) VALUES (10, 14, 11, 'prod_name', '7', '884.4000', '249.1900', NULL, '78.2600'); +INSERT INTO Invoice_Line_Items (`order_item_id`, `invoice_number`, `product_id`, `product_title`, `product_quantity`, `product_price`, `derived_product_cost`, `derived_vat_payable`, `derived_total_cost`) VALUES (10, 5, 11, 'prod_name', '5', '556.3600', '295.2600', NULL, '61.0000'); +INSERT INTO Invoice_Line_Items (`order_item_id`, `invoice_number`, `product_id`, `product_title`, `product_quantity`, `product_price`, `derived_product_cost`, `derived_vat_payable`, `derived_total_cost`) VALUES (8, 12, 6, 'prod_name', '8', '597.2800', '188.7100', NULL, '98.7700'); diff --git a/database/customers_and_products_contacts/customers_and_products_contacts.sqlite b/database/customers_and_products_contacts/customers_and_products_contacts.sqlite new file mode 100644 index 0000000000000000000000000000000000000000..f998c37a23a3bf44461af7a5bc067add213eaed3 Binary files /dev/null and b/database/customers_and_products_contacts/customers_and_products_contacts.sqlite differ diff --git a/database/customers_and_products_contacts/schema.sql b/database/customers_and_products_contacts/schema.sql new file mode 100644 index 0000000000000000000000000000000000000000..a9141a8f5d087a764ee0d309ef88e7ca3ef05467 --- /dev/null +++ b/database/customers_and_products_contacts/schema.sql @@ -0,0 +1,176 @@ +PRAGMA foreign_keys = ON; +CREATE TABLE `Addresses` ( +`address_id` INTEGER PRIMARY KEY, +`line_1_number_building` VARCHAR(80), +`city` VARCHAR(50), +`zip_postcode` VARCHAR(20), +`state_province_county` VARCHAR(50), +`country` VARCHAR(50) +); + +INSERT INTO Addresses (`address_id`, `line_1_number_building`, `city`, `zip_postcode`, `state_province_county`, `country`) VALUES (1, '4315 Kerluke Canyon Apt. 800', 'Hertafurt', '740', 'Nevada', 'USA'); +INSERT INTO Addresses (`address_id`, `line_1_number_building`, `city`, `zip_postcode`, `state_province_county`, `country`) VALUES (2, '319 Kozey Highway Suite 973', 'Edgardoberg', '282', 'Colorado', 'USA'); +INSERT INTO Addresses (`address_id`, `line_1_number_building`, `city`, `zip_postcode`, `state_province_county`, `country`) VALUES (3, '592 Frederique Ridge', 'Gilbertmouth', '167', 'Virginia', 'USA'); +INSERT INTO Addresses (`address_id`, `line_1_number_building`, `city`, `zip_postcode`, `state_province_county`, `country`) VALUES (4, '01868 Laverna Green', 'Lake Floyd', '041', 'Oklahoma', 'USA'); +INSERT INTO Addresses (`address_id`, `line_1_number_building`, `city`, `zip_postcode`, `state_province_county`, `country`) VALUES (5, '6017 Price Greens', 'Gibsonfurt', '873', 'District of Columbia', 'USA'); +INSERT INTO Addresses (`address_id`, `line_1_number_building`, `city`, `zip_postcode`, `state_province_county`, `country`) VALUES (6, '037 Luella Path', 'North Jairo', '126', 'Maryland', 'USA'); +INSERT INTO Addresses (`address_id`, `line_1_number_building`, `city`, `zip_postcode`, `state_province_county`, `country`) VALUES (7, '044 Greenfelder Fort', 'East Rickey', '564', 'Louisiana', 'USA'); +INSERT INTO Addresses (`address_id`, `line_1_number_building`, `city`, `zip_postcode`, `state_province_county`, `country`) VALUES (8, '2676 Connelly Islands Apt. 199', 'West Kaiatown', '770', 'Oregon', 'USA'); +INSERT INTO Addresses (`address_id`, `line_1_number_building`, `city`, `zip_postcode`, `state_province_county`, `country`) VALUES (9, '6830 Alexanne Forks Apt. 925', 'Agustinstad', '248', 'Illinois', 'USA'); +INSERT INTO Addresses (`address_id`, `line_1_number_building`, `city`, `zip_postcode`, `state_province_county`, `country`) VALUES (10, '918 Lauren Drive', 'Gleasonland', '116', 'Kentucky', 'USA'); +INSERT INTO Addresses (`address_id`, `line_1_number_building`, `city`, `zip_postcode`, `state_province_county`, `country`) VALUES (11, '70345 Marvin Glens Apt. 669', 'Lake Katheryn', '505', 'Kentucky', 'USA'); +INSERT INTO Addresses (`address_id`, `line_1_number_building`, `city`, `zip_postcode`, `state_province_county`, `country`) VALUES (12, '65854 McKenzie Tunnel', 'North Lisandroport', '202', 'Maine', 'USA'); +INSERT INTO Addresses (`address_id`, `line_1_number_building`, `city`, `zip_postcode`, `state_province_county`, `country`) VALUES (13, '494 Bruen Radial Apt. 723', 'Estaland', '381', 'Idaho', 'USA'); +INSERT INTO Addresses (`address_id`, `line_1_number_building`, `city`, `zip_postcode`, `state_province_county`, `country`) VALUES (14, '794 Doyle Lake Apt. 531', 'West Muriel', '571', 'Vermont', 'USA'); +INSERT INTO Addresses (`address_id`, `line_1_number_building`, `city`, `zip_postcode`, `state_province_county`, `country`) VALUES (15, '9590 Rogahn Point Apt. 466', 'Port Montytown', '037', 'SouthDakota', 'USA'); + + + +CREATE TABLE `Products` ( +`product_id` INTEGER PRIMARY KEY, +`product_type_code` VARCHAR(15), +`product_name` VARCHAR(80), +`product_price` DOUBLE NULL +); +INSERT INTO Products (`product_id`, `product_type_code`, `product_name`, `product_price`) VALUES (1, 'Hardware', 'Apple', '54753982.574522'); +INSERT INTO Products (`product_id`, `product_type_code`, `product_name`, `product_price`) VALUES (2, 'Clothes', 'jcrew', '30590929.528306'); +INSERT INTO Products (`product_id`, `product_type_code`, `product_name`, `product_price`) VALUES (3, 'Hardware', 'Apple', '10268.85297069'); +INSERT INTO Products (`product_id`, `product_type_code`, `product_name`, `product_price`) VALUES (4, 'Hardware', 'Apple', '22956668.699482'); +INSERT INTO Products (`product_id`, `product_type_code`, `product_name`, `product_price`) VALUES (5, 'Clothes', 'jcrew', '5927021.8748021'); +INSERT INTO Products (`product_id`, `product_type_code`, `product_name`, `product_price`) VALUES (6, 'Hardware', 'Apple', '77.109961147471'); +INSERT INTO Products (`product_id`, `product_type_code`, `product_name`, `product_price`) VALUES (7, 'Hardware', 'Apple', '450.39232520498'); +INSERT INTO Products (`product_id`, `product_type_code`, `product_name`, `product_price`) VALUES (8, 'Hardware', 'Sony', '4446237.9177554'); +INSERT INTO Products (`product_id`, `product_type_code`, `product_name`, `product_price`) VALUES (9, 'Clothes', 'jcrew', '622.79275984494'); +INSERT INTO Products (`product_id`, `product_type_code`, `product_name`, `product_price`) VALUES (10, 'Hardware', 'Sony', '7171.5933353284'); +INSERT INTO Products (`product_id`, `product_type_code`, `product_name`, `product_price`) VALUES (11, 'Clothes', 'jcrew', '149.95519076938'); +INSERT INTO Products (`product_id`, `product_type_code`, `product_name`, `product_price`) VALUES (12, 'Clothes', 'gucci', '593.80519929985'); +INSERT INTO Products (`product_id`, `product_type_code`, `product_name`, `product_price`) VALUES (13, 'Clothes', 'gucci', '11388.26282462'); +INSERT INTO Products (`product_id`, `product_type_code`, `product_name`, `product_price`) VALUES (14, 'Hardware', 'Sony', '389.91542644329'); +INSERT INTO Products (`product_id`, `product_type_code`, `product_name`, `product_price`) VALUES (15, 'Clothes', 'gucci', '310488248.48788'); + + +CREATE TABLE `Customers` ( +`customer_id` INTEGER PRIMARY KEY, +`payment_method_code` VARCHAR(15), +`customer_number` VARCHAR(20), +`customer_name` VARCHAR(80), +`customer_address` VARCHAR(255), +`customer_phone` VARCHAR(80), +`customer_email` VARCHAR(80) +); +INSERT INTO Customers (`customer_id`, `payment_method_code`, `customer_number`, `customer_name`, `customer_address`, `customer_phone`, `customer_email`) VALUES (1, 'Credit Card', '456', 'Kayley', '636 Chanelle Isle Apt. 846', '+87(9)5279161988', 'antonette73@example.com'); +INSERT INTO Customers (`customer_id`, `payment_method_code`, `customer_number`, `customer_name`, `customer_address`, `customer_phone`, `customer_email`) VALUES (2, 'Credit Card', '553', 'Sterling', '12174 Boyer Crossroad', '896.685.8228x2786', 'stroman.chadd@example.net'); +INSERT INTO Customers (`customer_id`, `payment_method_code`, `customer_number`, `customer_name`, `customer_address`, `customer_phone`, `customer_email`) VALUES (3, 'Credit Card', '951', 'Buford', '650 Spencer Way Apt. 584', '(192)144-4687', 'pattie.mayer@example.net'); +INSERT INTO Customers (`customer_id`, `payment_method_code`, `customer_number`, `customer_name`, `customer_address`, `customer_phone`, `customer_email`) VALUES (4, 'Direct Debit', '497', 'Caterina', '075 Skiles Expressway', '387.053.1225', 'dbeahan@example.net'); +INSERT INTO Customers (`customer_id`, `payment_method_code`, `customer_number`, `customer_name`, `customer_address`, `customer_phone`, `customer_email`) VALUES (5, 'Direct Debit', '752', 'Raymond', '8497 Huel Stravenue', '1-513-427-0125', 'bergnaum.ashton@example.com'); +INSERT INTO Customers (`customer_id`, `payment_method_code`, `customer_number`, `customer_name`, `customer_address`, `customer_phone`, `customer_email`) VALUES (6, 'Direct Debit', '838', 'Cheyenne', '058 Ben Street Apt. 034', '009-136-4509x19635', 'rhayes@example.org'); +INSERT INTO Customers (`customer_id`, `payment_method_code`, `customer_number`, `customer_name`, `customer_address`, `customer_phone`, `customer_email`) VALUES (7, 'Direct Debit', '429', 'Cecelia', '4065 Forest Vista Apt. 103', '672-559-0630x7875', 'caesar.lemke@example.net'); +INSERT INTO Customers (`customer_id`, `payment_method_code`, `customer_number`, `customer_name`, `customer_address`, `customer_phone`, `customer_email`) VALUES (8, 'Credit Card', '564', 'Brenna', '440 Aiden Ports', '1-271-345-4681x1131', 'macy.huel@example.org'); +INSERT INTO Customers (`customer_id`, `payment_method_code`, `customer_number`, `customer_name`, `customer_address`, `customer_phone`, `customer_email`) VALUES (9, 'Credit Card', '525', 'Lela', '13256 Valentina Valleys Suite 292', '838.718.8618x23239', 'vandervort.helena@example.org'); +INSERT INTO Customers (`customer_id`, `payment_method_code`, `customer_number`, `customer_name`, `customer_address`, `customer_phone`, `customer_email`) VALUES (10, 'Credit Card', '795', 'Cleo', '91702 Hilpert Pines Suite 177', '1-202-928-5395', 'xrosenbaum@example.org'); +INSERT INTO Customers (`customer_id`, `payment_method_code`, `customer_number`, `customer_name`, `customer_address`, `customer_phone`, `customer_email`) VALUES (11, 'Direct Debit', '233', 'Shany', '55270 Carter Street Apt. 214', '936.929.9929', 'kling.jesus@example.com'); +INSERT INTO Customers (`customer_id`, `payment_method_code`, `customer_number`, `customer_name`, `customer_address`, `customer_phone`, `customer_email`) VALUES (12, 'Credit Card', '586', 'Madaline', '8428 Cecile Land Apt. 192', '097-514-4641', 'brady.ernser@example.net'); +INSERT INTO Customers (`customer_id`, `payment_method_code`, `customer_number`, `customer_name`, `customer_address`, `customer_phone`, `customer_email`) VALUES (13, 'Direct Debit', '445', 'Melissa', '251 Botsford Harbors Suite 399', '529.148.1926', 'howard27@example.com'); +INSERT INTO Customers (`customer_id`, `payment_method_code`, `customer_number`, `customer_name`, `customer_address`, `customer_phone`, `customer_email`) VALUES (14, 'Direct Debit', '735', 'Orion', '10823 Rollin Spur', '479-171-6355x66065', 'kip.abernathy@example.com'); +INSERT INTO Customers (`customer_id`, `payment_method_code`, `customer_number`, `customer_name`, `customer_address`, `customer_phone`, `customer_email`) VALUES (15, 'Direct Debit', '523', 'Ottilie', '4098 Kreiger Knoll Suite 758', '393-750-2077x72779', 'morton06@example.net'); + +CREATE TABLE `Contacts` ( +`contact_id` INTEGER PRIMARY KEY, +`customer_id` INTEGER NOT NULL, +`gender` VARCHAR(1), +`first_name` VARCHAR(80), +`last_name` VARCHAR(50), +`contact_phone` VARCHAR(80) +); + +INSERT INTO Contacts (`contact_id`, `customer_id`, `gender`, `first_name`, `last_name`, `contact_phone`) VALUES (1, 4, 'male', 'Cierra', 'Collins', '+73(2)0854391820'); +INSERT INTO Contacts (`contact_id`, `customer_id`, `gender`, `first_name`, `last_name`, `contact_phone`) VALUES (2, 6, 'male', 'Jennifer', 'Doyle', '482-949-1364x17500'); +INSERT INTO Contacts (`contact_id`, `customer_id`, `gender`, `first_name`, `last_name`, `contact_phone`) VALUES (3, 8, 'female', 'Carli', 'Blick', '(608)868-5069x554'); +INSERT INTO Contacts (`contact_id`, `customer_id`, `gender`, `first_name`, `last_name`, `contact_phone`) VALUES (4, 14, 'female', 'Gustave', 'Ebert', '00414184198'); +INSERT INTO Contacts (`contact_id`, `customer_id`, `gender`, `first_name`, `last_name`, `contact_phone`) VALUES (5, 3, 'male', 'Danika', 'Bauch', '1-368-227-6322'); +INSERT INTO Contacts (`contact_id`, `customer_id`, `gender`, `first_name`, `last_name`, `contact_phone`) VALUES (6, 9, 'female', 'Rachelle', 'Stamm', '048-342-0880x5170'); +INSERT INTO Contacts (`contact_id`, `customer_id`, `gender`, `first_name`, `last_name`, `contact_phone`) VALUES (7, 10, 'male', 'Sid', 'Legros', '658.850.7946x9993'); +INSERT INTO Contacts (`contact_id`, `customer_id`, `gender`, `first_name`, `last_name`, `contact_phone`) VALUES (8, 7, 'female', 'Adella', 'Streich', '1-613-226-7727'); +INSERT INTO Contacts (`contact_id`, `customer_id`, `gender`, `first_name`, `last_name`, `contact_phone`) VALUES (9, 4, 'male', 'Etha', 'Raynor', '385-123-4556'); +INSERT INTO Contacts (`contact_id`, `customer_id`, `gender`, `first_name`, `last_name`, `contact_phone`) VALUES (10, 15, 'female', 'Skye', 'Ratke', '+62(3)0497423927'); +INSERT INTO Contacts (`contact_id`, `customer_id`, `gender`, `first_name`, `last_name`, `contact_phone`) VALUES (11, 10, 'female', 'Leif', 'Buckridge', '+96(5)1807022818'); +INSERT INTO Contacts (`contact_id`, `customer_id`, `gender`, `first_name`, `last_name`, `contact_phone`) VALUES (12, 6, 'female', 'Shyann', 'Hills', '(842)564-7057x121'); +INSERT INTO Contacts (`contact_id`, `customer_id`, `gender`, `first_name`, `last_name`, `contact_phone`) VALUES (13, 3, 'male', 'Darion', 'Leannon', '1-279-181-8737'); +INSERT INTO Contacts (`contact_id`, `customer_id`, `gender`, `first_name`, `last_name`, `contact_phone`) VALUES (14, 8, 'female', 'Amani', 'Kunze', '405-058-1659'); +INSERT INTO Contacts (`contact_id`, `customer_id`, `gender`, `first_name`, `last_name`, `contact_phone`) VALUES (15, 14, 'female', 'Hellen', 'Little', '136.724.5322'); + + +CREATE TABLE `Customer_Address_History` ( +`customer_id` INTEGER NOT NULL, +`address_id` INTEGER NOT NULL, +`date_from` DATETIME NOT NULL, +`date_to` DATETIME, +FOREIGN KEY (`customer_id` ) REFERENCES `Customers`(`customer_id` ), +FOREIGN KEY (`address_id` ) REFERENCES `Addresses`(`address_id` ) +); +CREATE TABLE `Customer_Orders` ( +`order_id` INTEGER PRIMARY KEY, +`customer_id` INTEGER NOT NULL, +`order_date` DATETIME NOT NULL, +`order_status_code` VARCHAR(15), +FOREIGN KEY (`customer_id` ) REFERENCES `Customers`(`customer_id` ) +); + +CREATE TABLE `Order_Items` ( +`order_item_id` INTEGER NOT NULL , +`order_id` INTEGER NOT NULL, +`product_id` INTEGER NOT NULL, +`order_quantity` VARCHAR(80), +FOREIGN KEY (`product_id` ) REFERENCES `Products`(`product_id` ), +FOREIGN KEY (`order_id` ) REFERENCES `Customer_Orders`(`order_id` ) +); +INSERT INTO Customer_Address_History (`customer_id`, `address_id`, `date_from`, `date_to`) VALUES (12, 7, '2015-07-23 14:37:18', '2018-03-07 12:04:20'); +INSERT INTO Customer_Address_History (`customer_id`, `address_id`, `date_from`, `date_to`) VALUES (12, 2, '2016-11-06 14:33:12', '2018-03-14 21:36:28'); +INSERT INTO Customer_Address_History (`customer_id`, `address_id`, `date_from`, `date_to`) VALUES (3, 9, '2011-11-19 12:17:36', '2018-03-22 10:20:16'); +INSERT INTO Customer_Address_History (`customer_id`, `address_id`, `date_from`, `date_to`) VALUES (13, 15, '2009-02-16 23:04:20', '2018-03-07 17:47:47'); +INSERT INTO Customer_Address_History (`customer_id`, `address_id`, `date_from`, `date_to`) VALUES (3, 12, '2008-06-22 21:50:44', '2018-03-13 00:08:29'); +INSERT INTO Customer_Address_History (`customer_id`, `address_id`, `date_from`, `date_to`) VALUES (11, 10, '2012-04-09 18:10:36', '2018-03-11 20:16:56'); +INSERT INTO Customer_Address_History (`customer_id`, `address_id`, `date_from`, `date_to`) VALUES (11, 10, '2014-11-17 15:11:26', '2018-03-08 23:31:30'); +INSERT INTO Customer_Address_History (`customer_id`, `address_id`, `date_from`, `date_to`) VALUES (2, 13, '2011-01-02 21:42:29', '2018-02-25 19:55:00'); +INSERT INTO Customer_Address_History (`customer_id`, `address_id`, `date_from`, `date_to`) VALUES (13, 11, '2015-05-01 12:44:46', '2018-03-24 06:20:36'); +INSERT INTO Customer_Address_History (`customer_id`, `address_id`, `date_from`, `date_to`) VALUES (12, 3, '2011-06-02 02:53:28', '2018-03-10 00:47:18'); +INSERT INTO Customer_Address_History (`customer_id`, `address_id`, `date_from`, `date_to`) VALUES (6, 1, '2013-06-14 23:07:04', '2018-03-16 14:49:28'); +INSERT INTO Customer_Address_History (`customer_id`, `address_id`, `date_from`, `date_to`) VALUES (14, 12, '2008-10-13 04:37:27', '2018-03-19 10:10:53'); +INSERT INTO Customer_Address_History (`customer_id`, `address_id`, `date_from`, `date_to`) VALUES (13, 5, '2012-03-16 17:42:30', '2018-02-27 07:31:19'); +INSERT INTO Customer_Address_History (`customer_id`, `address_id`, `date_from`, `date_to`) VALUES (7, 13, '2012-11-19 09:20:49', '2018-03-11 20:11:21'); +INSERT INTO Customer_Address_History (`customer_id`, `address_id`, `date_from`, `date_to`) VALUES (7, 3, '2012-11-09 07:15:16', '2018-03-09 12:03:31'); +INSERT INTO Customer_Address_History (`customer_id`, `address_id`, `date_from`, `date_to`) VALUES (2, 4, '2011-11-02 17:31:41', '2018-03-07 05:29:10'); +INSERT INTO Customer_Address_History (`customer_id`, `address_id`, `date_from`, `date_to`) VALUES (9, 13, '2010-03-25 08:23:20', '2018-03-09 16:41:55'); +INSERT INTO Customer_Address_History (`customer_id`, `address_id`, `date_from`, `date_to`) VALUES (6, 12, '2017-10-25 07:35:59', '2018-03-11 21:40:52'); +INSERT INTO Customer_Address_History (`customer_id`, `address_id`, `date_from`, `date_to`) VALUES (7, 3, '2009-05-22 04:42:28', '2018-03-18 11:13:27'); +INSERT INTO Customer_Address_History (`customer_id`, `address_id`, `date_from`, `date_to`) VALUES (12, 9, '2016-12-23 04:42:07', '2018-03-20 01:13:38'); +INSERT INTO Customer_Orders (`order_id`, `customer_id`, `order_date`, `order_status_code`) VALUES (1, 2, '2009-07-19 13:40:49', 'Completed'); +INSERT INTO Customer_Orders (`order_id`, `customer_id`, `order_date`, `order_status_code`) VALUES (2, 2, '1976-05-28 15:02:44', 'Part'); +INSERT INTO Customer_Orders (`order_id`, `customer_id`, `order_date`, `order_status_code`) VALUES (3, 6, '1979-03-29 02:47:13', 'Completed'); +INSERT INTO Customer_Orders (`order_id`, `customer_id`, `order_date`, `order_status_code`) VALUES (4, 4, '2003-01-17 00:06:12', 'Part'); +INSERT INTO Customer_Orders (`order_id`, `customer_id`, `order_date`, `order_status_code`) VALUES (5, 13, '1992-04-19 21:42:58', 'Completed'); +INSERT INTO Customer_Orders (`order_id`, `customer_id`, `order_date`, `order_status_code`) VALUES (6, 4, '1972-03-17 21:42:29', 'Part'); +INSERT INTO Customer_Orders (`order_id`, `customer_id`, `order_date`, `order_status_code`) VALUES (7, 10, '2002-01-20 01:52:53', 'Part'); +INSERT INTO Customer_Orders (`order_id`, `customer_id`, `order_date`, `order_status_code`) VALUES (8, 2, '1985-01-03 05:22:09', 'Part'); +INSERT INTO Customer_Orders (`order_id`, `customer_id`, `order_date`, `order_status_code`) VALUES (9, 9, '2016-09-17 03:00:47', 'Completed'); +INSERT INTO Customer_Orders (`order_id`, `customer_id`, `order_date`, `order_status_code`) VALUES (10, 5, '1971-12-04 19:14:18', 'Completed'); +INSERT INTO Customer_Orders (`order_id`, `customer_id`, `order_date`, `order_status_code`) VALUES (11, 10, '1993-05-08 14:12:06', 'Completed'); +INSERT INTO Customer_Orders (`order_id`, `customer_id`, `order_date`, `order_status_code`) VALUES (12, 10, '1998-06-14 21:22:53', 'Completed'); +INSERT INTO Customer_Orders (`order_id`, `customer_id`, `order_date`, `order_status_code`) VALUES (13, 9, '1997-08-02 09:44:57', 'Part'); +INSERT INTO Customer_Orders (`order_id`, `customer_id`, `order_date`, `order_status_code`) VALUES (14, 3, '1979-07-13 17:19:40', 'Part'); +INSERT INTO Customer_Orders (`order_id`, `customer_id`, `order_date`, `order_status_code`) VALUES (15, 1, '2007-01-19 07:54:50', 'Completed'); +INSERT INTO Order_Items (`order_item_id`, `order_id`, `product_id`, `order_quantity`) VALUES (1, 9, 15, '3'); +INSERT INTO Order_Items (`order_item_id`, `order_id`, `product_id`, `order_quantity`) VALUES (2, 8, 12, '7'); +INSERT INTO Order_Items (`order_item_id`, `order_id`, `product_id`, `order_quantity`) VALUES (3, 11, 9, '9'); +INSERT INTO Order_Items (`order_item_id`, `order_id`, `product_id`, `order_quantity`) VALUES (4, 15, 2, 'male'); +INSERT INTO Order_Items (`order_item_id`, `order_id`, `product_id`, `order_quantity`) VALUES (5, 13, 3, '3'); +INSERT INTO Order_Items (`order_item_id`, `order_id`, `product_id`, `order_quantity`) VALUES (6, 3, 6, '4'); +INSERT INTO Order_Items (`order_item_id`, `order_id`, `product_id`, `order_quantity`) VALUES (7, 7, 4, '8'); +INSERT INTO Order_Items (`order_item_id`, `order_id`, `product_id`, `order_quantity`) VALUES (8, 6, 2, '7'); +INSERT INTO Order_Items (`order_item_id`, `order_id`, `product_id`, `order_quantity`) VALUES (9, 3, 15, '2'); +INSERT INTO Order_Items (`order_item_id`, `order_id`, `product_id`, `order_quantity`) VALUES (10, 4, 12, '5'); +INSERT INTO Order_Items (`order_item_id`, `order_id`, `product_id`, `order_quantity`) VALUES (11, 14, 11, '8'); +INSERT INTO Order_Items (`order_item_id`, `order_id`, `product_id`, `order_quantity`) VALUES (12, 6, 2, '7'); +INSERT INTO Order_Items (`order_item_id`, `order_id`, `product_id`, `order_quantity`) VALUES (13, 7, 5, '9'); +INSERT INTO Order_Items (`order_item_id`, `order_id`, `product_id`, `order_quantity`) VALUES (14, 5, 13, '4'); +INSERT INTO Order_Items (`order_item_id`, `order_id`, `product_id`, `order_quantity`) VALUES (15, 7, 3, '8'); diff --git a/database/customers_campaigns_ecommerce/customers_campaigns_ecommerce.sqlite b/database/customers_campaigns_ecommerce/customers_campaigns_ecommerce.sqlite new file mode 100644 index 0000000000000000000000000000000000000000..330bf5f1034e54a6d8f685b08a40d818581f488f Binary files /dev/null and b/database/customers_campaigns_ecommerce/customers_campaigns_ecommerce.sqlite differ diff --git a/database/customers_campaigns_ecommerce/schema.sql b/database/customers_campaigns_ecommerce/schema.sql new file mode 100644 index 0000000000000000000000000000000000000000..3832fef476c1a09bc79c5b68dd21f81e36c8ff7d --- /dev/null +++ b/database/customers_campaigns_ecommerce/schema.sql @@ -0,0 +1,207 @@ +PRAGMA foreign_keys = ON; + +CREATE TABLE `Premises` ( +`premise_id` INTEGER PRIMARY KEY, +`premises_type` VARCHAR(15) NOT NULL, +`premise_details` VARCHAR(255) +); +INSERT INTO Premises (`premise_id`, `premises_type`, `premise_details`) VALUES (1, 'Warehouse', '036 Lueilwitz Harbor'); +INSERT INTO Premises (`premise_id`, `premises_type`, `premise_details`) VALUES (2, 'Warehouse', '676 Kelly Spur'); +INSERT INTO Premises (`premise_id`, `premises_type`, `premise_details`) VALUES (3, 'Residence', '27839 Carissa Tunnel Suite 048'); +INSERT INTO Premises (`premise_id`, `premises_type`, `premise_details`) VALUES (4, 'Residence', '2219 Barrows Tunnel Apt. 893'); +INSERT INTO Premises (`premise_id`, `premises_type`, `premise_details`) VALUES (5, 'Office', '38291 Jerde Light Apt. 713'); +INSERT INTO Premises (`premise_id`, `premises_type`, `premise_details`) VALUES (6, 'Office', '5585 Abbott Walk'); +INSERT INTO Premises (`premise_id`, `premises_type`, `premise_details`) VALUES (7, 'Residence', '5510 Veum Green'); +INSERT INTO Premises (`premise_id`, `premises_type`, `premise_details`) VALUES (8, 'Warehouse', '7230 Tillman Glens Suite 202'); +INSERT INTO Premises (`premise_id`, `premises_type`, `premise_details`) VALUES (9, 'Warehouse', '62282 Wiza Glen Apt. 430'); +INSERT INTO Premises (`premise_id`, `premises_type`, `premise_details`) VALUES (10, 'Office', '07318 Annetta Motorway'); +INSERT INTO Premises (`premise_id`, `premises_type`, `premise_details`) VALUES (11, 'Office', '00100 Green Mountains Apt. 653'); +INSERT INTO Premises (`premise_id`, `premises_type`, `premise_details`) VALUES (12, 'Office', '33294 William Lodge Apt. 953'); +INSERT INTO Premises (`premise_id`, `premises_type`, `premise_details`) VALUES (13, 'Office', '2760 Austin Station'); +INSERT INTO Premises (`premise_id`, `premises_type`, `premise_details`) VALUES (14, 'Residence', '5109 Jules Squares Apt. 082'); +INSERT INTO Premises (`premise_id`, `premises_type`, `premise_details`) VALUES (15, 'Office', '867 Emard Drives Apt. 066'); + + +CREATE TABLE `Products` ( +`product_id` INTEGER PRIMARY KEY, +`product_category` VARCHAR(15) NOT NULL, +`product_name` VARCHAR(80) +); + +INSERT INTO Products (`product_id`, `product_category`, `product_name`) VALUES (1, 'Food', 'Coffee Bean'); +INSERT INTO Products (`product_id`, `product_category`, `product_name`) VALUES (2, 'Electronics', 'Keyboard'); +INSERT INTO Products (`product_id`, `product_category`, `product_name`) VALUES (3, 'Books', 'Four Seasons'); +INSERT INTO Products (`product_id`, `product_category`, `product_name`) VALUES (4, 'Hardware', 'Mouse'); +INSERT INTO Products (`product_id`, `product_category`, `product_name`) VALUES (5, 'Books', 'Life of Van gogh'); +INSERT INTO Products (`product_id`, `product_category`, `product_name`) VALUES (6, 'Hardware', 'Monitor'); +INSERT INTO Products (`product_id`, `product_category`, `product_name`) VALUES (7, 'Electronics', 'MP3'); +INSERT INTO Products (`product_id`, `product_category`, `product_name`) VALUES (8, 'Books', 'Learning French'); +INSERT INTO Products (`product_id`, `product_category`, `product_name`) VALUES (9, 'Books', 'How to read a book'); +INSERT INTO Products (`product_id`, `product_category`, `product_name`) VALUES (10, 'Electronics', 'iWatch'); +INSERT INTO Products (`product_id`, `product_category`, `product_name`) VALUES (11, 'Books', 'IOS Programming'); +INSERT INTO Products (`product_id`, `product_category`, `product_name`) VALUES (12, 'Books', 'Everything about Amazon'); +INSERT INTO Products (`product_id`, `product_category`, `product_name`) VALUES (13, 'Hardware', 'Drive'); +INSERT INTO Products (`product_id`, `product_category`, `product_name`) VALUES (14, 'Food', 'Chocolate'); +INSERT INTO Products (`product_id`, `product_category`, `product_name`) VALUES (15, 'Electronics', 'iPhone'); + + + +CREATE TABLE `Customers` ( +`customer_id` INTEGER PRIMARY KEY, +`payment_method` VARCHAR(15) NOT NULL, +`customer_name` VARCHAR(80), +`customer_phone` VARCHAR(80), +`customer_email` VARCHAR(80), +`customer_address` VARCHAR(255), +`customer_login` VARCHAR(80), +`customer_password` VARCHAR(10) +); +INSERT INTO Customers (`customer_id`, `payment_method`, `customer_name`, `customer_phone`, `customer_email`, `customer_address`, `customer_login`, `customer_password`) VALUES (1, 'Credit Card', 'Wendell', '(773)971-9411x759', 'rodriguez.nathanael@example.net', '618 Webster Stream Apt. 161', NULL, 'b4459ad261'); +INSERT INTO Customers (`customer_id`, `payment_method`, `customer_name`, `customer_phone`, `customer_email`, `customer_address`, `customer_login`, `customer_password`) VALUES (2, 'Direct Debit', 'Gage', '(402)890-2603x6005', 'stark.elna@example.net', '0260 Walker Trace', NULL, '7905d7f1b1'); +INSERT INTO Customers (`customer_id`, `payment_method`, `customer_name`, `customer_phone`, `customer_email`, `customer_address`, `customer_login`, `customer_password`) VALUES (3, 'Direct Debit', 'Elvera', '1-878-600-7193x8180', 'madyson.mclaughlin@example.org', '280 Landen Lake', NULL, '0b9f651030'); +INSERT INTO Customers (`customer_id`, `payment_method`, `customer_name`, `customer_phone`, `customer_email`, `customer_address`, `customer_login`, `customer_password`) VALUES (4, 'Direct Debit', 'Stella', '+43(3)1861877192', 'kristina85@example.org', '5607 Ryann Canyon', NULL, 'f64f0fd096'); +INSERT INTO Customers (`customer_id`, `payment_method`, `customer_name`, `customer_phone`, `customer_email`, `customer_address`, `customer_login`, `customer_password`) VALUES (5, 'Credit Card', 'Magdalena', '1-352-291-1721x265', 'franecki.danial@example.com', '523 Mose Hills', NULL, 'bdfdc8e91a'); +INSERT INTO Customers (`customer_id`, `payment_method`, `customer_name`, `customer_phone`, `customer_email`, `customer_address`, `customer_login`, `customer_password`) VALUES (6, 'Direct Debit', 'Carlotta', '+66(7)1491041398', 'fstanton@example.net', '31932 Kailey Lodge', NULL, 'a8467590fd'); +INSERT INTO Customers (`customer_id`, `payment_method`, `customer_name`, `customer_phone`, `customer_email`, `customer_address`, `customer_login`, `customer_password`) VALUES (7, 'Direct Debit', 'Leanna', '203-036-0511x96487', 'marc.schiller@example.com', '94105 Bahringer Oval Suite 178', NULL, '67e9037197'); +INSERT INTO Customers (`customer_id`, `payment_method`, `customer_name`, `customer_phone`, `customer_email`, `customer_address`, `customer_login`, `customer_password`) VALUES (8, 'Direct Debit', 'Ruthie', '(840)754-4148x20545', 'elva.mccullough@example.org', '5514 Ophelia Cliffs Apt. 266', NULL, '280160b7b3'); +INSERT INTO Customers (`customer_id`, `payment_method`, `customer_name`, `customer_phone`, `customer_email`, `customer_address`, `customer_login`, `customer_password`) VALUES (9, 'Credit Card', 'Donnie', '(030)521-0681x0191', 'saul30@example.net', '115 Farrell Squares Suite 599', NULL, '22dc8bfaf5'); +INSERT INTO Customers (`customer_id`, `payment_method`, `customer_name`, `customer_phone`, `customer_email`, `customer_address`, `customer_login`, `customer_password`) VALUES (10, 'Direct Debit', 'Shanel', '1-957-676-9414', 'kheathcote@example.org', '80569 Crona Path Suite 165', NULL, 'd93857e0c2'); +INSERT INTO Customers (`customer_id`, `payment_method`, `customer_name`, `customer_phone`, `customer_email`, `customer_address`, `customer_login`, `customer_password`) VALUES (11, 'Direct Debit', 'Osborne', '232.171.7032', 'vpowlowski@example.net', '509 Isabelle Route', NULL, 'b00e35cc0a'); +INSERT INTO Customers (`customer_id`, `payment_method`, `customer_name`, `customer_phone`, `customer_email`, `customer_address`, `customer_login`, `customer_password`) VALUES (12, 'Direct Debit', 'Kyle', '291-425-7193', 'davis.rosamond@example.net', '056 Ibrahim Path Suite 669', NULL, '341f672c2c'); +INSERT INTO Customers (`customer_id`, `payment_method`, `customer_name`, `customer_phone`, `customer_email`, `customer_address`, `customer_login`, `customer_password`) VALUES (13, 'Credit Card', 'Annabel', '100.220.3484', 'yoshiko.balistreri@example.org', '56955 Desmond Lake Apt. 120', NULL, '9dc50bc5b6'); +INSERT INTO Customers (`customer_id`, `payment_method`, `customer_name`, `customer_phone`, `customer_email`, `customer_address`, `customer_login`, `customer_password`) VALUES (14, 'Direct Debit', 'Geovanny', '205.496.0690x53058', 'jesus.robel@example.org', '0813 Carolina Bridge Suite 488', NULL, '49f32173a2'); +INSERT INTO Customers (`customer_id`, `payment_method`, `customer_name`, `customer_phone`, `customer_email`, `customer_address`, `customer_login`, `customer_password`) VALUES (15, 'Direct Debit', 'Mitchell', '698-327-5792', 'princess75@example.com', '6735 Daron Lane Apt. 271', NULL, '791b1b3e64'); + + +CREATE TABLE `Mailshot_Campaigns` ( +`mailshot_id` INTEGER PRIMARY KEY, +`product_category` VARCHAR(15), +`mailshot_name` VARCHAR(80), +`mailshot_start_date` DATETIME, +`mailshot_end_date` DATETIME +); +INSERT INTO Mailshot_Campaigns (`mailshot_id`, `product_category`, `mailshot_name`, `mailshot_start_date`, `mailshot_end_date`) VALUES (1, 'food', 'US', '2018-02-15 09:52:17', '2018-03-08 14:40:20'); +INSERT INTO Mailshot_Campaigns (`mailshot_id`, `product_category`, `mailshot_name`, `mailshot_start_date`, `mailshot_end_date`) VALUES (2, 'clothes', 'US', '2017-09-14 12:05:30', '2018-03-15 01:06:16'); +INSERT INTO Mailshot_Campaigns (`mailshot_id`, `product_category`, `mailshot_name`, `mailshot_start_date`, `mailshot_end_date`) VALUES (3, 'food', 'FED', '2017-06-16 11:18:45', '2018-03-13 14:42:26'); +INSERT INTO Mailshot_Campaigns (`mailshot_id`, `product_category`, `mailshot_name`, `mailshot_start_date`, `mailshot_end_date`) VALUES (4, 'clothes', 'USPS', '2017-09-27 02:35:45', '2018-03-18 11:29:56'); +INSERT INTO Mailshot_Campaigns (`mailshot_id`, `product_category`, `mailshot_name`, `mailshot_start_date`, `mailshot_end_date`) VALUES (5, 'food', 'AL', '2017-05-20 20:05:09', '2018-03-02 21:41:46'); +INSERT INTO Mailshot_Campaigns (`mailshot_id`, `product_category`, `mailshot_name`, `mailshot_start_date`, `mailshot_end_date`) VALUES (6, 'clothes', 'FED', '2017-10-23 05:41:45', '2018-03-03 08:01:57'); +INSERT INTO Mailshot_Campaigns (`mailshot_id`, `product_category`, `mailshot_name`, `mailshot_start_date`, `mailshot_end_date`) VALUES (7, 'food', 'FED', '2017-11-25 03:14:25', '2018-03-05 03:08:48'); +INSERT INTO Mailshot_Campaigns (`mailshot_id`, `product_category`, `mailshot_name`, `mailshot_start_date`, `mailshot_end_date`) VALUES (8, 'clothes', 'AL', '2017-10-22 08:46:29', '2018-03-01 13:42:09'); +INSERT INTO Mailshot_Campaigns (`mailshot_id`, `product_category`, `mailshot_name`, `mailshot_start_date`, `mailshot_end_date`) VALUES (9, 'food', 'US', '2017-11-12 08:26:08', '2018-02-27 07:58:02'); +INSERT INTO Mailshot_Campaigns (`mailshot_id`, `product_category`, `mailshot_name`, `mailshot_start_date`, `mailshot_end_date`) VALUES (10, 'clothes', 'USPS', '2018-01-14 21:03:10', '2018-03-19 13:07:33'); +INSERT INTO Mailshot_Campaigns (`mailshot_id`, `product_category`, `mailshot_name`, `mailshot_start_date`, `mailshot_end_date`) VALUES (11, 'food', 'US', '2017-12-13 01:40:06', '2018-03-24 02:05:36'); +INSERT INTO Mailshot_Campaigns (`mailshot_id`, `product_category`, `mailshot_name`, `mailshot_start_date`, `mailshot_end_date`) VALUES (12, 'clothes', 'USPS', '2018-01-20 05:22:29', '2018-03-23 07:48:46'); +INSERT INTO Mailshot_Campaigns (`mailshot_id`, `product_category`, `mailshot_name`, `mailshot_start_date`, `mailshot_end_date`) VALUES (13, 'food', 'AL', '2017-05-08 21:14:52', '2018-03-12 12:06:50'); +INSERT INTO Mailshot_Campaigns (`mailshot_id`, `product_category`, `mailshot_name`, `mailshot_start_date`, `mailshot_end_date`) VALUES (14, 'clothes', 'AL', '2017-06-11 23:24:31', '2018-03-23 03:36:49'); +INSERT INTO Mailshot_Campaigns (`mailshot_id`, `product_category`, `mailshot_name`, `mailshot_start_date`, `mailshot_end_date`) VALUES (15, 'food', 'FED', '2017-11-29 00:56:35', '2018-03-17 07:54:46'); +INSERT INTO Mailshot_Campaigns (`mailshot_id`, `product_category`, `mailshot_name`, `mailshot_start_date`, `mailshot_end_date`) VALUES (16, 'clothes', 'US', '2017-11-02 17:26:30', '2018-03-02 17:07:50'); +INSERT INTO Mailshot_Campaigns (`mailshot_id`, `product_category`, `mailshot_name`, `mailshot_start_date`, `mailshot_end_date`) VALUES (17, 'food', 'FED', '2018-02-04 13:13:36', '2018-02-26 16:12:30'); +INSERT INTO Mailshot_Campaigns (`mailshot_id`, `product_category`, `mailshot_name`, `mailshot_start_date`, `mailshot_end_date`) VALUES (18, 'clothes', 'USPS', '2017-12-08 10:24:12', '2018-03-20 20:10:16'); +INSERT INTO Mailshot_Campaigns (`mailshot_id`, `product_category`, `mailshot_name`, `mailshot_start_date`, `mailshot_end_date`) VALUES (19, 'food', 'US', '2017-06-25 11:43:09', '2018-03-15 11:58:52'); +INSERT INTO Mailshot_Campaigns (`mailshot_id`, `product_category`, `mailshot_name`, `mailshot_start_date`, `mailshot_end_date`) VALUES (20, 'food', 'US', '2017-11-15 15:58:17', '2018-03-15 06:00:47'); + + +CREATE TABLE `Customer_Addresses` ( +`customer_id` INTEGER NOT NULL, +`premise_id` INTEGER NOT NULL, +`date_address_from` DATETIME NOT NULL, +`address_type_code` VARCHAR(15) NOT NULL, +`date_address_to` DATETIME, +FOREIGN KEY (`premise_id` ) REFERENCES `Premises`(`premise_id` ) +FOREIGN KEY (`customer_id` ) REFERENCES `Customers`(`customer_id` ) +); + +INSERT INTO Customer_Addresses (`customer_id`, `premise_id`, `date_address_from`, `address_type_code`, `date_address_to`) VALUES (15, 1, '1992-08-23 21:17:38', 'Billing', '2018-02-28 20:54:58'); +INSERT INTO Customer_Addresses (`customer_id`, `premise_id`, `date_address_from`, `address_type_code`, `date_address_to`) VALUES (2, 2, '2010-02-23 02:49:50', 'Billing', '2018-03-15 18:34:41'); +INSERT INTO Customer_Addresses (`customer_id`, `premise_id`, `date_address_from`, `address_type_code`, `date_address_to`) VALUES (1, 1, '1975-12-24 10:01:37', 'Shipping', '2018-03-08 08:03:51'); +INSERT INTO Customer_Addresses (`customer_id`, `premise_id`, `date_address_from`, `address_type_code`, `date_address_to`) VALUES (3, 2, '1995-03-26 17:39:46', 'Shipping', '2018-02-27 17:42:19'); +INSERT INTO Customer_Addresses (`customer_id`, `premise_id`, `date_address_from`, `address_type_code`, `date_address_to`) VALUES (7, 1, '1929-05-14 04:29:43', 'Billing', '2018-03-16 18:51:47'); +INSERT INTO Customer_Addresses (`customer_id`, `premise_id`, `date_address_from`, `address_type_code`, `date_address_to`) VALUES (8, 4, '1939-01-15 17:55:39', 'Shipping', '2018-03-13 08:21:27'); +INSERT INTO Customer_Addresses (`customer_id`, `premise_id`, `date_address_from`, `address_type_code`, `date_address_to`) VALUES (5, 5, '1931-03-24 11:44:07', 'Shipping', '2018-03-05 02:34:01'); +INSERT INTO Customer_Addresses (`customer_id`, `premise_id`, `date_address_from`, `address_type_code`, `date_address_to`) VALUES (11, 6, '1975-04-23 20:41:01', 'Billing', '2018-03-04 03:08:46'); +INSERT INTO Customer_Addresses (`customer_id`, `premise_id`, `date_address_from`, `address_type_code`, `date_address_to`) VALUES (11, 3, '1920-08-18 04:42:55', 'Shipping', '2018-03-22 22:46:52'); +INSERT INTO Customer_Addresses (`customer_id`, `premise_id`, `date_address_from`, `address_type_code`, `date_address_to`) VALUES (11, 5, '1960-07-31 06:10:20', 'Shipping', '2018-03-09 03:34:11'); +INSERT INTO Customer_Addresses (`customer_id`, `premise_id`, `date_address_from`, `address_type_code`, `date_address_to`) VALUES (13, 6, '1990-12-19 22:02:27', 'Billing', '2018-03-24 07:12:35'); +INSERT INTO Customer_Addresses (`customer_id`, `premise_id`, `date_address_from`, `address_type_code`, `date_address_to`) VALUES (4, 8, '1985-03-18 20:46:30', 'Shipping', '2018-02-27 16:47:24'); +INSERT INTO Customer_Addresses (`customer_id`, `premise_id`, `date_address_from`, `address_type_code`, `date_address_to`) VALUES (10, 10, '1972-06-06 01:50:40', 'Billing', '2018-03-08 21:09:30'); +INSERT INTO Customer_Addresses (`customer_id`, `premise_id`, `date_address_from`, `address_type_code`, `date_address_to`) VALUES (8, 12, '1984-06-16 10:10:37', 'Billing', '2018-03-05 11:26:03'); +INSERT INTO Customer_Addresses (`customer_id`, `premise_id`, `date_address_from`, `address_type_code`, `date_address_to`) VALUES (3, 14, '2002-02-01 02:55:13', 'Billing', '2018-03-16 11:55:11'); + + +CREATE TABLE `Customer_Orders` ( +`order_id` INTEGER PRIMARY KEY, +`customer_id` INTEGER NOT NULL, +`order_status_code` VARCHAR(15) NOT NULL, +`shipping_method_code` VARCHAR(15) NOT NULL, +`order_placed_datetime` DATETIME NOT NULL, +`order_delivered_datetime` DATETIME, +`order_shipping_charges` VARCHAR(255), +FOREIGN KEY (`customer_id` ) REFERENCES `Customers`(`customer_id` ) +); + +CREATE TABLE `Mailshot_Customers` ( +`mailshot_id` INTEGER NOT NULL, +`customer_id` INTEGER NOT NULL, +`outcome_code` VARCHAR(15) NOT NULL, +`mailshot_customer_date` DATETIME, +FOREIGN KEY (`customer_id` ) REFERENCES `Customers`(`customer_id` ), +FOREIGN KEY (`mailshot_id` ) REFERENCES `Mailshot_Campaigns`(`mailshot_id` ) +); +CREATE TABLE `Order_Items` ( +`item_id` INTEGER NOT NULL , +`order_item_status_code` VARCHAR(15) NOT NULL, +`order_id` INTEGER NOT NULL, +`product_id` INTEGER NOT NULL, +`item_status_code` VARCHAR(15), +`item_delivered_datetime` DATETIME, +`item_order_quantity` VARCHAR(80), +FOREIGN KEY (`product_id` ) REFERENCES `Products`(`product_id` ), +FOREIGN KEY (`order_id` ) REFERENCES `Customer_Orders`(`order_id` ) +); + +INSERT INTO Customer_Orders (`order_id`, `customer_id`, `order_status_code`, `shipping_method_code`, `order_placed_datetime`, `order_delivered_datetime`, `order_shipping_charges`) VALUES (1, 2, 'Cancelled', 'Unspecified', '2015-06-15 18:19:26', '2018-03-20 12:00:00', '85.79'); +INSERT INTO Customer_Orders (`order_id`, `customer_id`, `order_status_code`, `shipping_method_code`, `order_placed_datetime`, `order_delivered_datetime`, `order_shipping_charges`) VALUES (2, 8, 'Cancelled', 'Unspecified', '2009-07-05 20:02:55', '2018-03-20 12:00:00', '98.4'); +INSERT INTO Customer_Orders (`order_id`, `customer_id`, `order_status_code`, `shipping_method_code`, `order_placed_datetime`, `order_delivered_datetime`, `order_shipping_charges`) VALUES (3, 9, 'Cancelled', 'FedEx', '2008-11-15 12:22:36', '2018-03-20 12:00:00', '36.87'); +INSERT INTO Customer_Orders (`order_id`, `customer_id`, `order_status_code`, `shipping_method_code`, `order_placed_datetime`, `order_delivered_datetime`, `order_shipping_charges`) VALUES (4, 1, 'Delivered', 'UPS', '2008-10-23 06:42:10', '2018-03-20 12:00:00', '98.73'); +INSERT INTO Customer_Orders (`order_id`, `customer_id`, `order_status_code`, `shipping_method_code`, `order_placed_datetime`, `order_delivered_datetime`, `order_shipping_charges`) VALUES (5, 7, 'Paid', 'FedEx', '2017-05-28 05:48:26', '2018-03-20 12:00:00', '35.63'); +INSERT INTO Customer_Orders (`order_id`, `customer_id`, `order_status_code`, `shipping_method_code`, `order_placed_datetime`, `order_delivered_datetime`, `order_shipping_charges`) VALUES (6, 2, 'Cancelled', 'Unspecified', '2014-06-24 13:53:54', '2018-03-20 12:00:00', '99.26'); +INSERT INTO Customer_Orders (`order_id`, `customer_id`, `order_status_code`, `shipping_method_code`, `order_placed_datetime`, `order_delivered_datetime`, `order_shipping_charges`) VALUES (7, 15, 'Cancelled', 'FedEx', '2014-08-28 15:08:12', '2018-03-20 12:00:00', '26.56'); +INSERT INTO Customer_Orders (`order_id`, `customer_id`, `order_status_code`, `shipping_method_code`, `order_placed_datetime`, `order_delivered_datetime`, `order_shipping_charges`) VALUES (8, 2, 'Delivered', 'Unspecified', '2012-06-05 09:05:34', '2018-03-20 12:00:00', '77.32'); +INSERT INTO Customer_Orders (`order_id`, `customer_id`, `order_status_code`, `shipping_method_code`, `order_placed_datetime`, `order_delivered_datetime`, `order_shipping_charges`) VALUES (9, 1, 'Cancelled', 'FedEx', '2009-05-30 16:13:26', '2018-03-20 12:00:00', '57.36'); +INSERT INTO Customer_Orders (`order_id`, `customer_id`, `order_status_code`, `shipping_method_code`, `order_placed_datetime`, `order_delivered_datetime`, `order_shipping_charges`) VALUES (10, 14, 'Paid', 'Unspecified', '2013-08-29 03:17:04', '2018-03-20 12:00:00', '33.58'); +INSERT INTO Customer_Orders (`order_id`, `customer_id`, `order_status_code`, `shipping_method_code`, `order_placed_datetime`, `order_delivered_datetime`, `order_shipping_charges`) VALUES (11, 1, 'Paid', 'Unspecified', '2015-12-29 10:39:56', '2018-03-20 12:00:00', '22.84'); +INSERT INTO Customer_Orders (`order_id`, `customer_id`, `order_status_code`, `shipping_method_code`, `order_placed_datetime`, `order_delivered_datetime`, `order_shipping_charges`) VALUES (12, 12, 'Cancelled', 'Unspecified', '2016-10-20 20:59:35', '2018-03-20 12:00:00', '21.24'); +INSERT INTO Customer_Orders (`order_id`, `customer_id`, `order_status_code`, `shipping_method_code`, `order_placed_datetime`, `order_delivered_datetime`, `order_shipping_charges`) VALUES (13, 12, 'Paid', 'FedEx', '2013-06-16 17:51:45', '2018-03-20 12:00:00', '31.33'); +INSERT INTO Customer_Orders (`order_id`, `customer_id`, `order_status_code`, `shipping_method_code`, `order_placed_datetime`, `order_delivered_datetime`, `order_shipping_charges`) VALUES (14, 14, 'Paid', 'UPS', '2010-04-29 08:21:49', '2018-03-20 12:00:00', '46.4'); +INSERT INTO Customer_Orders (`order_id`, `customer_id`, `order_status_code`, `shipping_method_code`, `order_placed_datetime`, `order_delivered_datetime`, `order_shipping_charges`) VALUES (15, 5, 'Delivered', 'FedEx', '2009-01-18 20:06:19', '2018-03-20 12:00:00', '74.28'); +INSERT INTO Mailshot_Customers (`mailshot_id`, `customer_id`, `outcome_code`, `mailshot_customer_date`) VALUES (4, 3, 'Order', '2018-03-15 15:43:14'); +INSERT INTO Mailshot_Customers (`mailshot_id`, `customer_id`, `outcome_code`, `mailshot_customer_date`) VALUES (10, 1, 'No Response', '2018-03-04 13:06:55'); +INSERT INTO Mailshot_Customers (`mailshot_id`, `customer_id`, `outcome_code`, `mailshot_customer_date`) VALUES (15, 9, 'No Response', '2018-03-11 11:32:20'); +INSERT INTO Mailshot_Customers (`mailshot_id`, `customer_id`, `outcome_code`, `mailshot_customer_date`) VALUES (20, 11, 'Order', '2018-03-01 21:39:07'); +INSERT INTO Mailshot_Customers (`mailshot_id`, `customer_id`, `outcome_code`, `mailshot_customer_date`) VALUES (7, 1, 'Order', '2018-03-13 05:18:16'); +INSERT INTO Mailshot_Customers (`mailshot_id`, `customer_id`, `outcome_code`, `mailshot_customer_date`) VALUES (10, 4, 'No Response', '2018-03-15 04:05:08'); +INSERT INTO Mailshot_Customers (`mailshot_id`, `customer_id`, `outcome_code`, `mailshot_customer_date`) VALUES (15, 6, 'Order', '2018-03-06 21:21:38'); +INSERT INTO Mailshot_Customers (`mailshot_id`, `customer_id`, `outcome_code`, `mailshot_customer_date`) VALUES (10, 13, 'Order', '2018-02-26 02:17:16'); +INSERT INTO Mailshot_Customers (`mailshot_id`, `customer_id`, `outcome_code`, `mailshot_customer_date`) VALUES (15, 13, 'Order', '2018-03-07 11:19:43'); +INSERT INTO Mailshot_Customers (`mailshot_id`, `customer_id`, `outcome_code`, `mailshot_customer_date`) VALUES (17, 11, 'Order', '2018-03-05 20:48:13'); +INSERT INTO Mailshot_Customers (`mailshot_id`, `customer_id`, `outcome_code`, `mailshot_customer_date`) VALUES (18, 14, 'Order', '2018-03-14 01:08:29'); +INSERT INTO Mailshot_Customers (`mailshot_id`, `customer_id`, `outcome_code`, `mailshot_customer_date`) VALUES (15, 6, 'Order', '2018-02-27 20:51:37'); +INSERT INTO Mailshot_Customers (`mailshot_id`, `customer_id`, `outcome_code`, `mailshot_customer_date`) VALUES (18, 2, 'Order', '2018-03-20 23:40:02'); +INSERT INTO Mailshot_Customers (`mailshot_id`, `customer_id`, `outcome_code`, `mailshot_customer_date`) VALUES (7, 1, 'No Response', '2018-03-03 15:29:56'); +INSERT INTO Mailshot_Customers (`mailshot_id`, `customer_id`, `outcome_code`, `mailshot_customer_date`) VALUES (6, 6, 'No Response', '2018-03-05 17:35:24'); +INSERT INTO Order_Items (`item_id`, `order_item_status_code`, `order_id`, `product_id`, `item_status_code`, `item_delivered_datetime`, `item_order_quantity`) VALUES (1, 'Delivered', 10, 13, 'good', '2018-02-25 18:22:10', '6'); +INSERT INTO Order_Items (`item_id`, `order_item_status_code`, `order_id`, `product_id`, `item_status_code`, `item_delivered_datetime`, `item_order_quantity`) VALUES (2, 'Paid', 6, 7, 'good', '2018-02-27 18:04:55', '7'); +INSERT INTO Order_Items (`item_id`, `order_item_status_code`, `order_id`, `product_id`, `item_status_code`, `item_delivered_datetime`, `item_order_quantity`) VALUES (3, 'Cancelled', 8, 1, 'good', '2018-03-16 15:58:27', '4'); +INSERT INTO Order_Items (`item_id`, `order_item_status_code`, `order_id`, `product_id`, `item_status_code`, `item_delivered_datetime`, `item_order_quantity`) VALUES (4, 'Cancelled', 13, 11, 'good', '2018-03-04 18:19:12', '3'); +INSERT INTO Order_Items (`item_id`, `order_item_status_code`, `order_id`, `product_id`, `item_status_code`, `item_delivered_datetime`, `item_order_quantity`) VALUES (5, 'Paid', 11, 5, 'good', '2018-03-07 12:35:59', '6'); +INSERT INTO Order_Items (`item_id`, `order_item_status_code`, `order_id`, `product_id`, `item_status_code`, `item_delivered_datetime`, `item_order_quantity`) VALUES (6, 'Delivered', 6, 10, 'good', '2018-03-03 22:22:38', '5'); +INSERT INTO Order_Items (`item_id`, `order_item_status_code`, `order_id`, `product_id`, `item_status_code`, `item_delivered_datetime`, `item_order_quantity`) VALUES (7, 'Delivered', 7, 14, 'good', '2018-03-04 01:39:37', '6'); +INSERT INTO Order_Items (`item_id`, `order_item_status_code`, `order_id`, `product_id`, `item_status_code`, `item_delivered_datetime`, `item_order_quantity`) VALUES (8, 'Delivered', 2, 5, 'good', '2018-03-05 14:33:02', '4'); +INSERT INTO Order_Items (`item_id`, `order_item_status_code`, `order_id`, `product_id`, `item_status_code`, `item_delivered_datetime`, `item_order_quantity`) VALUES (9, 'Delivered', 6, 6, 'good', '2018-03-22 04:33:17', '6'); +INSERT INTO Order_Items (`item_id`, `order_item_status_code`, `order_id`, `product_id`, `item_status_code`, `item_delivered_datetime`, `item_order_quantity`) VALUES (10, 'Cancelled', 7, 9, 'good', '2018-03-03 00:37:19', '2'); +INSERT INTO Order_Items (`item_id`, `order_item_status_code`, `order_id`, `product_id`, `item_status_code`, `item_delivered_datetime`, `item_order_quantity`) VALUES (11, 'Paid', 15, 3, 'good', '2018-03-12 20:01:38', '1'); +INSERT INTO Order_Items (`item_id`, `order_item_status_code`, `order_id`, `product_id`, `item_status_code`, `item_delivered_datetime`, `item_order_quantity`) VALUES (12, 'Delivered', 11, 9, 'good', '2018-03-03 00:19:41', '5'); +INSERT INTO Order_Items (`item_id`, `order_item_status_code`, `order_id`, `product_id`, `item_status_code`, `item_delivered_datetime`, `item_order_quantity`) VALUES (13, 'Paid', 14, 1, 'good', '2018-03-07 15:53:54', '5'); +INSERT INTO Order_Items (`item_id`, `order_item_status_code`, `order_id`, `product_id`, `item_status_code`, `item_delivered_datetime`, `item_order_quantity`) VALUES (14, 'Paid', 15, 13, 'good', '2018-03-17 07:10:51', '9'); +INSERT INTO Order_Items (`item_id`, `order_item_status_code`, `order_id`, `product_id`, `item_status_code`, `item_delivered_datetime`, `item_order_quantity`) VALUES (15, 'Paid', 14, 9, 'good', '2018-03-05 12:04:23', '4'); diff --git a/database/customers_card_transactions/customers_card_transactions.sqlite b/database/customers_card_transactions/customers_card_transactions.sqlite new file mode 100644 index 0000000000000000000000000000000000000000..1960ce440a81f35e60dbdf688380ac64140928d9 Binary files /dev/null and b/database/customers_card_transactions/customers_card_transactions.sqlite differ diff --git a/database/customers_card_transactions/schema.sql b/database/customers_card_transactions/schema.sql new file mode 100644 index 0000000000000000000000000000000000000000..750ee68be6bfe078d06f81c2b2dde4cf505406fe --- /dev/null +++ b/database/customers_card_transactions/schema.sql @@ -0,0 +1,115 @@ +PRAGMA foreign_keys = ON; + +CREATE TABLE `Accounts` ( +`account_id` INTEGER PRIMARY KEY, +`customer_id` INTEGER NOT NULL, +`account_name` VARCHAR(50), +`other_account_details` VARCHAR(255) +); +CREATE TABLE `Customers` ( +`customer_id` INTEGER PRIMARY KEY, +`customer_first_name` VARCHAR(20), +`customer_last_name` VARCHAR(20), +`customer_address` VARCHAR(255), +`customer_phone` VARCHAR(255), +`customer_email` VARCHAR(255), +`other_customer_details` VARCHAR(255) +); +CREATE TABLE `Customers_Cards` ( +`card_id` INTEGER PRIMARY KEY, +`customer_id` INTEGER NOT NULL, +`card_type_code` VARCHAR(15) NOT NULL, +`card_number` VARCHAR(80), +`date_valid_from` DATETIME, +`date_valid_to` DATETIME, +`other_card_details` VARCHAR(255) +); +CREATE TABLE `Financial_Transactions` ( +`transaction_id` INTEGER NOT NULL , +`previous_transaction_id` INTEGER, +`account_id` INTEGER NOT NULL, +`card_id` INTEGER NOT NULL, +`transaction_type` VARCHAR(15) NOT NULL, +`transaction_date` DATETIME, +`transaction_amount` DOUBLE NULL, +`transaction_comment` VARCHAR(255), +`other_transaction_details` VARCHAR(255), +FOREIGN KEY (`card_id` ) REFERENCES `Customers_Cards`(`card_id` ), +FOREIGN KEY (`account_id` ) REFERENCES `Accounts`(`account_id` ) +); + +INSERT INTO Accounts (`account_id`, `customer_id`, `account_name`, `other_account_details`) VALUES (1, 6, '338', 'Regular'); +INSERT INTO Accounts (`account_id`, `customer_id`, `account_name`, `other_account_details`) VALUES (2, 14, '562', 'VIP'); +INSERT INTO Accounts (`account_id`, `customer_id`, `account_name`, `other_account_details`) VALUES (3, 9, '162', 'VIP'); +INSERT INTO Accounts (`account_id`, `customer_id`, `account_name`, `other_account_details`) VALUES (4, 12, '038', 'Regular'); +INSERT INTO Accounts (`account_id`, `customer_id`, `account_name`, `other_account_details`) VALUES (5, 13, '858', 'Regular'); +INSERT INTO Accounts (`account_id`, `customer_id`, `account_name`, `other_account_details`) VALUES (6, 12, '262', 'Regular'); +INSERT INTO Accounts (`account_id`, `customer_id`, `account_name`, `other_account_details`) VALUES (7, 9, '621', 'Regular'); +INSERT INTO Accounts (`account_id`, `customer_id`, `account_name`, `other_account_details`) VALUES (8, 8, '381', 'Regular'); +INSERT INTO Accounts (`account_id`, `customer_id`, `account_name`, `other_account_details`) VALUES (9, 9, '546', 'Regular'); +INSERT INTO Accounts (`account_id`, `customer_id`, `account_name`, `other_account_details`) VALUES (10, 4, '767', 'VIP'); +INSERT INTO Accounts (`account_id`, `customer_id`, `account_name`, `other_account_details`) VALUES (11, 4, '022', 'VIP'); +INSERT INTO Accounts (`account_id`, `customer_id`, `account_name`, `other_account_details`) VALUES (12, 2, '866', 'VIP'); +INSERT INTO Accounts (`account_id`, `customer_id`, `account_name`, `other_account_details`) VALUES (13, 10, '234', 'VIP'); +INSERT INTO Accounts (`account_id`, `customer_id`, `account_name`, `other_account_details`) VALUES (14, 9, '557', 'VIP'); +INSERT INTO Accounts (`account_id`, `customer_id`, `account_name`, `other_account_details`) VALUES (15, 4, '725', 'VIP'); +INSERT INTO Customers (`customer_id`, `customer_first_name`, `customer_last_name`, `customer_address`, `customer_phone`, `customer_email`, `other_customer_details`) VALUES (1, 'Aniyah', 'Feest', '55975 Theodore Estates +Lake Brody, VT 57078', '(673)872-5338', 'fahey.dorian@example.com', NULL); +INSERT INTO Customers (`customer_id`, `customer_first_name`, `customer_last_name`, `customer_address`, `customer_phone`, `customer_email`, `other_customer_details`) VALUES (2, 'Susie', 'Wiza', '6478 Moen Isle Suite 910 +Schimmelmouth, VT 96364-4898', '679-845-8645x94312', 'idickinson@example.com', NULL); +INSERT INTO Customers (`customer_id`, `customer_first_name`, `customer_last_name`, `customer_address`, `customer_phone`, `customer_email`, `other_customer_details`) VALUES (3, 'Marcel', 'Brekke', '1965 Abernathy Plains +Port Lilla, LA 44867', '1-511-656-6664', 'nichole.rodriguez@example.com', NULL); +INSERT INTO Customers (`customer_id`, `customer_first_name`, `customer_last_name`, `customer_address`, `customer_phone`, `customer_email`, `other_customer_details`) VALUES (4, 'Art', 'Turcotte', '6862 Domenic Port +New Elbert, DE 86980-8517', '941-213-6716x675', 'enrique59@example.com', NULL); +INSERT INTO Customers (`customer_id`, `customer_first_name`, `customer_last_name`, `customer_address`, `customer_phone`, `customer_email`, `other_customer_details`) VALUES (5, 'Armani', 'Farrell', '3031 Ludwig Square +Unaview, SC 86336-3287', '224-123-1012', 'dauer@example.net', NULL); +INSERT INTO Customers (`customer_id`, `customer_first_name`, `customer_last_name`, `customer_address`, `customer_phone`, `customer_email`, `other_customer_details`) VALUES (6, 'Kiel', 'Schinner', '19935 Allie Bypass Apt. 409 +Coleberg, FL 69194-5357', '1-564-044-3909', 'ebert.omer@example.net', NULL); +INSERT INTO Customers (`customer_id`, `customer_first_name`, `customer_last_name`, `customer_address`, `customer_phone`, `customer_email`, `other_customer_details`) VALUES (7, 'Izabella', 'Erdman', '23793 Athena Inlet Apt. 455 +Schmidtmouth, NH 15794', '751.049.9948', 'kling.catalina@example.com', NULL); +INSERT INTO Customers (`customer_id`, `customer_first_name`, `customer_last_name`, `customer_address`, `customer_phone`, `customer_email`, `other_customer_details`) VALUES (8, 'Elyssa', 'Lind', '094 Julianne Mill +Webstertown, KY 91980-4004', '+12(6)9024410984', 'dell13@example.com', NULL); +INSERT INTO Customers (`customer_id`, `customer_first_name`, `customer_last_name`, `customer_address`, `customer_phone`, `customer_email`, `other_customer_details`) VALUES (9, 'Faustino', 'Langworth', '0748 Lola Union Apt. 874 +Reynoldsfurt, NM 94584-3767', '284.749.0453', 'ahomenick@example.org', NULL); +INSERT INTO Customers (`customer_id`, `customer_first_name`, `customer_last_name`, `customer_address`, `customer_phone`, `customer_email`, `other_customer_details`) VALUES (10, 'Axel', 'Effertz', '936 Lula Overpass +East Alisonville, NH 14890', '+90(8)1290735932', 'kyra.murazik@example.org', NULL); +INSERT INTO Customers (`customer_id`, `customer_first_name`, `customer_last_name`, `customer_address`, `customer_phone`, `customer_email`, `other_customer_details`) VALUES (11, 'Frederic', 'Swift', '7127 Hilpert Parks +South Johnfort, SD 67577-9504', '1-207-977-5182', 'keegan16@example.com', NULL); +INSERT INTO Customers (`customer_id`, `customer_first_name`, `customer_last_name`, `customer_address`, `customer_phone`, `customer_email`, `other_customer_details`) VALUES (12, 'Bryce', 'Rath', '74962 Hugh Mills +North Laurenland, KY 46376', '(415)237-0701x3115', 'grady.general@example.org', NULL); +INSERT INTO Customers (`customer_id`, `customer_first_name`, `customer_last_name`, `customer_address`, `customer_phone`, `customer_email`, `other_customer_details`) VALUES (13, 'Serenity', 'Effertz', '71560 Eulah Squares +Torphyberg, OK 34312-0380', '1-894-567-2283', 'schaden.katrina@example.net', NULL); +INSERT INTO Customers (`customer_id`, `customer_first_name`, `customer_last_name`, `customer_address`, `customer_phone`, `customer_email`, `other_customer_details`) VALUES (14, 'Blanche', 'Huels', '47286 Mraz Park Apt. 424 +Jocelynfurt, OH 59023-2787', '(703)950-4708x8972', 'huels.antonina@example.com', NULL); +INSERT INTO Customers (`customer_id`, `customer_first_name`, `customer_last_name`, `customer_address`, `customer_phone`, `customer_email`, `other_customer_details`) VALUES (15, 'Nat', 'Davis', '163 Collier Square +New Ceciltown, AL 64723-5646', '246-469-4472x359', 'earlene.carroll@example.net', NULL); +INSERT INTO Customers_Cards (`card_id`, `customer_id`, `card_type_code`, `card_number`, `date_valid_from`, `date_valid_to`, `other_card_details`) VALUES (1, 14, 'Credit', '4560596484842', '2011-04-17 09:05:28', '2018-03-07 17:06:19', '5567915676420343'); +INSERT INTO Customers_Cards (`card_id`, `customer_id`, `card_type_code`, `card_number`, `date_valid_from`, `date_valid_to`, `other_card_details`) VALUES (2, 9, 'Credit', '4859448397570735', '2012-05-22 02:05:41', '2018-02-25 15:43:32', '4539333582760'); +INSERT INTO Customers_Cards (`card_id`, `customer_id`, `card_type_code`, `card_number`, `date_valid_from`, `date_valid_to`, `other_card_details`) VALUES (3, 6, 'Debit', '348237249146948', '2014-08-01 14:26:45', '2018-03-24 15:29:00', '4916210554814'); +INSERT INTO Customers_Cards (`card_id`, `customer_id`, `card_type_code`, `card_number`, `date_valid_from`, `date_valid_to`, `other_card_details`) VALUES (4, 15, 'Credit', '4485460762694', '2009-11-05 09:26:01', '2018-03-19 05:34:08', '5296134475180061'); +INSERT INTO Customers_Cards (`card_id`, `customer_id`, `card_type_code`, `card_number`, `date_valid_from`, `date_valid_to`, `other_card_details`) VALUES (5, 13, 'Credit', '5122249720639438', '2015-12-21 22:07:49', '2018-03-22 08:31:28', '5388642773088467'); +INSERT INTO Customers_Cards (`card_id`, `customer_id`, `card_type_code`, `card_number`, `date_valid_from`, `date_valid_to`, `other_card_details`) VALUES (6, 10, 'Debit', '5102229294602335', '2017-01-01 13:34:04', '2018-03-11 01:12:33', '5513587359761653'); +INSERT INTO Customers_Cards (`card_id`, `customer_id`, `card_type_code`, `card_number`, `date_valid_from`, `date_valid_to`, `other_card_details`) VALUES (7, 9, 'Credit', '4716674779726', '2016-12-11 03:01:12', '2018-03-15 06:27:45', '6011771512810699'); +INSERT INTO Customers_Cards (`card_id`, `customer_id`, `card_type_code`, `card_number`, `date_valid_from`, `date_valid_to`, `other_card_details`) VALUES (8, 12, 'Credit', '6011225247353230', '2016-09-17 13:31:05', '2018-03-24 00:38:54', '5428692691195935'); +INSERT INTO Customers_Cards (`card_id`, `customer_id`, `card_type_code`, `card_number`, `date_valid_from`, `date_valid_to`, `other_card_details`) VALUES (9, 3, 'Debit', '4929590358481', '2015-03-27 02:01:12', '2018-03-12 02:16:45', '5307019264041461'); +INSERT INTO Customers_Cards (`card_id`, `customer_id`, `card_type_code`, `card_number`, `date_valid_from`, `date_valid_to`, `other_card_details`) VALUES (10, 10, 'Debit', '4532488235104', '2011-06-15 23:10:10', '2018-03-17 21:27:32', '5571147786750739'); +INSERT INTO Customers_Cards (`card_id`, `customer_id`, `card_type_code`, `card_number`, `date_valid_from`, `date_valid_to`, `other_card_details`) VALUES (11, 8, 'Debit', '4707949584519', '2013-11-17 02:58:22', '2018-03-14 14:00:07', '377852690396160'); +INSERT INTO Customers_Cards (`card_id`, `customer_id`, `card_type_code`, `card_number`, `date_valid_from`, `date_valid_to`, `other_card_details`) VALUES (12, 3, 'Debit', '4929896676202959', '2015-05-09 04:05:26', '2018-03-16 16:00:19', '4556142375374'); +INSERT INTO Customers_Cards (`card_id`, `customer_id`, `card_type_code`, `card_number`, `date_valid_from`, `date_valid_to`, `other_card_details`) VALUES (13, 2, 'Credit', '5484846021884483', '2008-08-20 17:59:51', '2018-03-20 02:08:02', '4916493714393'); +INSERT INTO Customers_Cards (`card_id`, `customer_id`, `card_type_code`, `card_number`, `date_valid_from`, `date_valid_to`, `other_card_details`) VALUES (14, 5, 'Debit', '4929384762825', '2013-05-23 07:55:36', '2018-03-11 06:05:44', '4485258248930151'); +INSERT INTO Customers_Cards (`card_id`, `customer_id`, `card_type_code`, `card_number`, `date_valid_from`, `date_valid_to`, `other_card_details`) VALUES (15, 2, 'Debit', '345475370003028', '2014-07-03 20:19:31', '2018-02-28 22:26:31', '4716851737494984'); +INSERT INTO Financial_Transactions (`transaction_id`, `previous_transaction_id`, `account_id`, `card_id`, `transaction_type`, `transaction_date`, `transaction_amount`, `transaction_comment`, `other_transaction_details`) VALUES (1, 925, 15, 1, 'Payment', '2018-03-24 06:41:41', '1701.23', NULL, NULL); +INSERT INTO Financial_Transactions (`transaction_id`, `previous_transaction_id`, `account_id`, `card_id`, `transaction_type`, `transaction_date`, `transaction_amount`, `transaction_comment`, `other_transaction_details`) VALUES (2, 494, 3, 2, 'Refund', '2018-03-24 12:08:55', '1931.76', NULL, NULL); +INSERT INTO Financial_Transactions (`transaction_id`, `previous_transaction_id`, `account_id`, `card_id`, `transaction_type`, `transaction_date`, `transaction_amount`, `transaction_comment`, `other_transaction_details`) VALUES (3, 642, 4, 3, 'Payment', '2018-03-24 09:08:27', '486.56', NULL, NULL); +INSERT INTO Financial_Transactions (`transaction_id`, `previous_transaction_id`, `account_id`, `card_id`, `transaction_type`, `transaction_date`, `transaction_amount`, `transaction_comment`, `other_transaction_details`) VALUES (4, 457, 15, 4, 'Refund', '2018-03-23 21:59:28', '1336.21', NULL, NULL); +INSERT INTO Financial_Transactions (`transaction_id`, `previous_transaction_id`, `account_id`, `card_id`, `transaction_type`, `transaction_date`, `transaction_amount`, `transaction_comment`, `other_transaction_details`) VALUES (5, 947, 13, 5, 'Refund', '2018-03-23 21:43:32', '357.06', NULL, NULL); +INSERT INTO Financial_Transactions (`transaction_id`, `previous_transaction_id`, `account_id`, `card_id`, `transaction_type`, `transaction_date`, `transaction_amount`, `transaction_comment`, `other_transaction_details`) VALUES (6, 958, 12, 6, 'Refund', '2018-03-24 11:48:28', '1967.75', NULL, NULL); +INSERT INTO Financial_Transactions (`transaction_id`, `previous_transaction_id`, `account_id`, `card_id`, `transaction_type`, `transaction_date`, `transaction_amount`, `transaction_comment`, `other_transaction_details`) VALUES (7, 368, 1, 6, 'Refund', '2018-03-24 05:13:42', '1483.05', NULL, NULL); +INSERT INTO Financial_Transactions (`transaction_id`, `previous_transaction_id`, `account_id`, `card_id`, `transaction_type`, `transaction_date`, `transaction_amount`, `transaction_comment`, `other_transaction_details`) VALUES (8, 924, 6, 7, 'Refund', '2018-03-24 14:47:05', '1194.48', NULL, NULL); +INSERT INTO Financial_Transactions (`transaction_id`, `previous_transaction_id`, `account_id`, `card_id`, `transaction_type`, `transaction_date`, `transaction_amount`, `transaction_comment`, `other_transaction_details`) VALUES (9, 296, 9, 6, 'Payment', '2018-03-24 05:31:43', '1475.56', NULL, NULL); +INSERT INTO Financial_Transactions (`transaction_id`, `previous_transaction_id`, `account_id`, `card_id`, `transaction_type`, `transaction_date`, `transaction_amount`, `transaction_comment`, `other_transaction_details`) VALUES (10, 495, 5, 7, 'Payment', '2018-03-24 05:45:57', '1795.66', NULL, NULL); +INSERT INTO Financial_Transactions (`transaction_id`, `previous_transaction_id`, `account_id`, `card_id`, `transaction_type`, `transaction_date`, `transaction_amount`, `transaction_comment`, `other_transaction_details`) VALUES (11, 333, 11, 7, 'Refund', '2018-03-24 10:39:09', '462.63', NULL, NULL); +INSERT INTO Financial_Transactions (`transaction_id`, `previous_transaction_id`, `account_id`, `card_id`, `transaction_type`, `transaction_date`, `transaction_amount`, `transaction_comment`, `other_transaction_details`) VALUES (12, 986, 10, 9, 'Payment', '2018-03-24 15:17:49', '1658.32', NULL, NULL); +INSERT INTO Financial_Transactions (`transaction_id`, `previous_transaction_id`, `account_id`, `card_id`, `transaction_type`, `transaction_date`, `transaction_amount`, `transaction_comment`, `other_transaction_details`) VALUES (13, 885, 14, 11, 'Refund', '2018-03-24 17:00:41', '1298.73', NULL, NULL); +INSERT INTO Financial_Transactions (`transaction_id`, `previous_transaction_id`, `account_id`, `card_id`, `transaction_type`, `transaction_date`, `transaction_amount`, `transaction_comment`, `other_transaction_details`) VALUES (14, 965, 10, 12, 'Refund', '2018-03-24 16:31:34', '945.43', NULL, NULL); +INSERT INTO Financial_Transactions (`transaction_id`, `previous_transaction_id`, `account_id`, `card_id`, `transaction_type`, `transaction_date`, `transaction_amount`, `transaction_comment`, `other_transaction_details`) VALUES (15, 203, 8, 12, 'Payment', '2018-03-24 10:48:34', '1529.97', NULL, NULL); diff --git a/database/debate/debate.sqlite b/database/debate/debate.sqlite new file mode 100644 index 0000000000000000000000000000000000000000..9f10409503571bd5b713f302e5fcfad895cae2ed Binary files /dev/null and b/database/debate/debate.sqlite differ diff --git a/database/debate/schema.sql b/database/debate/schema.sql new file mode 100644 index 0000000000000000000000000000000000000000..c8eb2e64d308bf48336e7ade08c3ef8674ce3cbd --- /dev/null +++ b/database/debate/schema.sql @@ -0,0 +1,60 @@ + +PRAGMA foreign_keys = ON; + +CREATE TABLE "people" ( +"People_ID" int, +"District" text, +"Name" text, +"Party" text, +"Age" int, +PRIMARY KEY ("People_ID") +); + +CREATE TABLE "debate" ( +"Debate_ID" int, +"Date" text, +"Venue" text, +"Num_of_Audience" int, +PRIMARY KEY ("Debate_ID") +); + +INSERT INTO "people" VALUES (1,"New York 1","Luther C. Carter","Republican",35); +INSERT INTO "people" VALUES (2,"New York 2","James Humphrey","Republican",38); +INSERT INTO "people" VALUES (3,"New York 3","Daniel Sickles","Democratic",46); +INSERT INTO "people" VALUES (4,"New York 4","Thomas J. Barr","Independent Democrat",48); +INSERT INTO "people" VALUES (5,"New York 5","William B. Maclay","Democratic",36); +INSERT INTO "people" VALUES (6,"New York 6","John Cochrane","Democratic",46); +INSERT INTO "people" VALUES (7,"New York 7","George Briggs","Republican",42); +INSERT INTO "people" VALUES (8,"New York 8","Horace F. Clark","Anti-Lecompton Democrat",45); +INSERT INTO "people" VALUES (9,"New York 9","John B. Haskin","Anti-Lecompton Democrat",43); +INSERT INTO "people" VALUES (10,"New York 10","Charles Van Wyck","Republican",36); + + + +INSERT INTO "debate" VALUES (1,"October 21, 2011","Manama , Bahrain",342); +INSERT INTO "debate" VALUES (2,"December 17, 2014","Doha , Qatar",134); +INSERT INTO "debate" VALUES (3,"August 3, 2015","Manama , Bahrain",90); +INSERT INTO "debate" VALUES (4,"October 27, 2015","Manama , Bahrain",209); +INSERT INTO "debate" VALUES (5,"January 12, 2017","Dubai , UAE",313); +INSERT INTO "debate" VALUES (6,"January 21, 2017","Abu Dhabi , UAE",159); + + + + +CREATE TABLE "debate_people" ( +"Debate_ID" int, +"Affirmative" int, +"Negative" int, +"If_Affirmative_Win" bool, +PRIMARY KEY ("Debate_ID","Affirmative","Negative"), +FOREIGN KEY ("Debate_ID") REFERENCES `debate`("Debate_ID"), +FOREIGN KEY ("Affirmative") REFERENCES `people`("People_ID"), +FOREIGN KEY ("Negative") REFERENCES `people`("People_ID") +); + + +INSERT INTO "debate_people" VALUES (1,1,10,"F"); +INSERT INTO "debate_people" VALUES (5,2,8,"F"); +INSERT INTO "debate_people" VALUES (3,4,7,"T"); +INSERT INTO "debate_people" VALUES (6,5,6,"T"); +INSERT INTO "debate_people" VALUES (4,5,8,"F"); diff --git a/database/decoration_competition/decoration_competition.sqlite b/database/decoration_competition/decoration_competition.sqlite new file mode 100644 index 0000000000000000000000000000000000000000..082156773bd3a2fb773588c8f578d394dc640604 Binary files /dev/null and b/database/decoration_competition/decoration_competition.sqlite differ diff --git a/database/decoration_competition/schema.sql b/database/decoration_competition/schema.sql new file mode 100644 index 0000000000000000000000000000000000000000..88c843b4d9f7308a7e55fae5607b7eeea87fd2ed --- /dev/null +++ b/database/decoration_competition/schema.sql @@ -0,0 +1,58 @@ +PRAGMA foreign_keys = ON; + +CREATE TABLE "college" ( +"College_ID" int, +"Name" text, +"Leader_Name" text, +"College_Location" text, +PRIMARY KEY ("College_ID") +); + + + +INSERT INTO "college" VALUES ("1","Saskatchewan School","Ousame Tounkara","Ottawa"); +INSERT INTO "college" VALUES ("2","B.C. School","Ryan Thelwell","Minnesota"); +INSERT INTO "college" VALUES ("3","Calgary School","Andre Arlain","St. Francis Xavier"); +INSERT INTO "college" VALUES ("4","Edmonton School","Samir Chahine","McGill"); +INSERT INTO "college" VALUES ("5","Toronto School","Roger Dunbrack","Western Ontario"); + + +CREATE TABLE "member" ( +"Member_ID" int, +"Name" text, +"Country" text, +"College_ID" int, +PRIMARY KEY ("Member_ID"), +FOREIGN KEY ("College_ID") REFERENCES `college`("College_ID") +); + + +INSERT INTO "member" VALUES ("1","Jack Nicklaus","United States",1); +INSERT INTO "member" VALUES ("2","Billy Casper","United States",1); +INSERT INTO "member" VALUES ("3","Arnold Palmer","Canada",4); +INSERT INTO "member" VALUES ("4","Tom Watson","United States",4); +INSERT INTO "member" VALUES ("5","Homero Blancas","United States",2); +INSERT INTO "member" VALUES ("6","Pat Fitzsimons","Canada",5); +INSERT INTO "member" VALUES ("7","Bobby Nichols","Canada",5); +INSERT INTO "member" VALUES ("8","J. C. Snead","Canada",4); +INSERT INTO "member" VALUES ("9","Lee Trevino","United States",3); +INSERT INTO "member" VALUES ("10","Tom Weiskopf","United States",3); + + +CREATE TABLE "round" ( +"Round_ID" int, +"Member_ID" int, +"Decoration_Theme" text, +"Rank_in_Round" int, +PRIMARY KEY ("Member_ID","Round_ID"), +FOREIGN KEY ("Member_ID") REFERENCES "member"("Member_ID") +); + + +INSERT INTO "round" VALUES (1,1,"Walk on the Moon",1); +INSERT INTO "round" VALUES (1,2,"Soft Dream",2); +INSERT INTO "round" VALUES (1,10,"Dark Nights",4); +INSERT INTO "round" VALUES (2,4,"Sweetie",3); +INSERT INTO "round" VALUES (2,6,"Summer",2); +INSERT INTO "round" VALUES (2,9,"Happiness",1); + diff --git a/database/department_management/department_management.sqlite b/database/department_management/department_management.sqlite new file mode 100644 index 0000000000000000000000000000000000000000..847f801643785e0dc34c238c54c147b57a40e10f Binary files /dev/null and b/database/department_management/department_management.sqlite differ diff --git a/database/department_management/schema.sql b/database/department_management/schema.sql new file mode 100644 index 0000000000000000000000000000000000000000..2a5aaef8b750cd72e3119e3da26275911cfc7293 --- /dev/null +++ b/database/department_management/schema.sql @@ -0,0 +1,58 @@ +PRAGMA foreign_keys=ON; +BEGIN TRANSACTION; +CREATE TABLE IF NOT EXISTS "department" ( +"Department_ID" int, +"Name" text, +"Creation" text, +"Ranking" int, +"Budget_in_Billions" real, +"Num_Employees" real, +PRIMARY KEY ("Department_ID") +); +INSERT INTO department VALUES(1,'State','1789','1',9.9600000000000008526,30265.999999999999999); +INSERT INTO department VALUES(2,'Treasury','1789','2',11.099999999999999644,115896.99999999999999); +INSERT INTO department VALUES(3,'Defense','1947','3',439.30000000000001135,3000000.0); +INSERT INTO department VALUES(4,'Justice','1870','4',23.399999999999998578,112556.99999999999999); +INSERT INTO department VALUES(5,'Interior','1849','5',10.699999999999999289,71436.000000000000002); +INSERT INTO department VALUES(6,'Agriculture','1889','6',77.599999999999994316,109831.99999999999999); +INSERT INTO department VALUES(7,'Commerce','1903','7',6.2000000000000001776,35999.999999999999999); +INSERT INTO department VALUES(8,'Labor','1913','8',59.700000000000002843,17346.999999999999999); +INSERT INTO department VALUES(9,'Health and Human Services','1953','9',543.20000000000004548,66999.999999999999998); +INSERT INTO department VALUES(10,'Housing and Urban Development','1965','10',46.200000000000002843,10599.999999999999999); +INSERT INTO department VALUES(11,'Transportation','1966','11',58.000000000000000001,58621.999999999999998); +INSERT INTO department VALUES(12,'Energy','1977','12',21.5,116099.99999999999999); +INSERT INTO department VALUES(13,'Education','1979','13',62.799999999999997156,4487.0000000000000001); +INSERT INTO department VALUES(14,'Veterans Affairs','1989','14',73.200000000000002842,234999.99999999999999); +INSERT INTO department VALUES(15,'Homeland Security','2002','15',44.600000000000001422,207999.99999999999999); +CREATE TABLE IF NOT EXISTS "head" ( +"head_ID" int, +"name" text, +"born_state" text, +"age" real, +PRIMARY KEY ("head_ID") +); +INSERT INTO head VALUES(1,'Tiger Woods','Alabama',66.999999999999999998); +INSERT INTO head VALUES(2,'Sergio García','California',68.000000000000000001); +INSERT INTO head VALUES(3,'K. J. Choi','Alabama',69.0); +INSERT INTO head VALUES(4,'Dudley Hart','California',51.999999999999999998); +INSERT INTO head VALUES(5,'Jeff Maggert','Delaware',53.000000000000000001); +INSERT INTO head VALUES(6,'Billy Mayfair','California',69.0); +INSERT INTO head VALUES(7,'Stewart Cink','Florida',50.0); +INSERT INTO head VALUES(8,'Nick Faldo','California',55.999999999999999999); +INSERT INTO head VALUES(9,'Pádraig Harrington','Connecticut',43.000000000000000001); +INSERT INTO head VALUES(10,'Franklin Langham','Connecticut',66.999999999999999998); +CREATE TABLE IF NOT EXISTS "management" ( +"department_ID" int, +"head_ID" int, +"temporary_acting" text, +PRIMARY KEY ("Department_ID","head_ID"), +FOREIGN KEY ("Department_ID") REFERENCES `department`("Department_ID"), +FOREIGN KEY ("head_ID") REFERENCES `head`("head_ID") +); +INSERT INTO management VALUES(2,5,'Yes'); +INSERT INTO management VALUES(15,4,'Yes'); +INSERT INTO management VALUES(2,6,'Yes'); +INSERT INTO management VALUES(7,3,'No'); +INSERT INTO management VALUES(11,10,'No'); +COMMIT; + diff --git a/database/department_store/department_store.sqlite b/database/department_store/department_store.sqlite new file mode 100644 index 0000000000000000000000000000000000000000..afa2ab62e1f9737da818f85105c175302bdc3ae3 Binary files /dev/null and b/database/department_store/department_store.sqlite differ diff --git a/database/department_store/schema.sql b/database/department_store/schema.sql new file mode 100644 index 0000000000000000000000000000000000000000..833c6f70e447fd9c75e05dc9144541a625e3d9f5 --- /dev/null +++ b/database/department_store/schema.sql @@ -0,0 +1,348 @@ +PRAGMA foreign_keys = ON; +CREATE TABLE `Addresses` ( +`address_id` INTEGER PRIMARY KEY, +`address_details` VARCHAR(255) +); + + +INSERT INTO Addresses (`address_id`, `address_details`) VALUES (1, '28481 Crist Circle +East Burdettestad, IA 21232'); +INSERT INTO Addresses (`address_id`, `address_details`) VALUES (2, '0292 Mitchel Pike +Port Abefurt, IA 84402-4249'); +INSERT INTO Addresses (`address_id`, `address_details`) VALUES (3, '4062 Mante Place +West Lindsey, DE 76199-8015'); +INSERT INTO Addresses (`address_id`, `address_details`) VALUES (4, '99666 Julie Junction +Marvinburgh, OH 16085-1623'); +INSERT INTO Addresses (`address_id`, `address_details`) VALUES (5, '195 Mara Rue +Jenkinsmouth, OK 22345'); +INSERT INTO Addresses (`address_id`, `address_details`) VALUES (6, '11784 Stehr Road +Port Isaac, NV 61159'); +INSERT INTO Addresses (`address_id`, `address_details`) VALUES (7, '69482 Renner Ville Suite 653 +Langworthborough, OH 95195'); +INSERT INTO Addresses (`address_id`, `address_details`) VALUES (8, '36594 O''Keefe Lock +New Cali, RI 42319'); +INSERT INTO Addresses (`address_id`, `address_details`) VALUES (9, '7181 Wuckert Port Apt. 571 +Lake Zariaburgh, IL 98085'); +INSERT INTO Addresses (`address_id`, `address_details`) VALUES (10, '92594 Marvin Trafficway +Pourosfurt, IA 98649'); +INSERT INTO Addresses (`address_id`, `address_details`) VALUES (11, '0258 Kessler Mountains Suite 688 +Mooreside, ME 41586-5022'); +INSERT INTO Addresses (`address_id`, `address_details`) VALUES (12, '69275 Mose Drive +Wilkinsonstad, CO 79055-7622'); +INSERT INTO Addresses (`address_id`, `address_details`) VALUES (13, '8207 Morissette Lakes +East Rheaview, ID 47493'); +INSERT INTO Addresses (`address_id`, `address_details`) VALUES (14, '145 Alice Corners +Willmsport, NV 36680'); +INSERT INTO Addresses (`address_id`, `address_details`) VALUES (15, '521 Molly Harbors Apt. 567 +Reingerland, HI 97099-1005'); + +CREATE TABLE `Staff` ( +`staff_id` INTEGER PRIMARY KEY, +`staff_gender` VARCHAR(1), +`staff_name` VARCHAR(80) +); + +INSERT INTO Staff (`staff_id`, `staff_gender`, `staff_name`) VALUES (1, '1', 'Tom'); +INSERT INTO Staff (`staff_id`, `staff_gender`, `staff_name`) VALUES (2, '1', 'Malika'); +INSERT INTO Staff (`staff_id`, `staff_gender`, `staff_name`) VALUES (3, '1', 'Katelynn'); +INSERT INTO Staff (`staff_id`, `staff_gender`, `staff_name`) VALUES (4, '1', 'Vanessa'); +INSERT INTO Staff (`staff_id`, `staff_gender`, `staff_name`) VALUES (5, '0', 'Maximus'); +INSERT INTO Staff (`staff_id`, `staff_gender`, `staff_name`) VALUES (6, '1', 'Tyson'); +INSERT INTO Staff (`staff_id`, `staff_gender`, `staff_name`) VALUES (7, '1', 'Yolanda'); +INSERT INTO Staff (`staff_id`, `staff_gender`, `staff_name`) VALUES (8, '1', 'Vito'); +INSERT INTO Staff (`staff_id`, `staff_gender`, `staff_name`) VALUES (9, '1', 'Zakary'); +INSERT INTO Staff (`staff_id`, `staff_gender`, `staff_name`) VALUES (10, '1', 'Sabrina'); +INSERT INTO Staff (`staff_id`, `staff_gender`, `staff_name`) VALUES (11, '1', 'Dannie'); +INSERT INTO Staff (`staff_id`, `staff_gender`, `staff_name`) VALUES (12, '1', 'Melody'); +INSERT INTO Staff (`staff_id`, `staff_gender`, `staff_name`) VALUES (13, '1', 'Archibald'); +INSERT INTO Staff (`staff_id`, `staff_gender`, `staff_name`) VALUES (14, '1', 'Adrienne'); +INSERT INTO Staff (`staff_id`, `staff_gender`, `staff_name`) VALUES (15, '1', 'Kristy'); + +CREATE TABLE `Suppliers` ( +`supplier_id` INTEGER PRIMARY KEY, +`supplier_name` VARCHAR(80), +`supplier_phone` VARCHAR(80) +); + +INSERT INTO Suppliers (`supplier_id`, `supplier_name`, `supplier_phone`) VALUES (1, 'Lidl', '(692)009-5928'); +INSERT INTO Suppliers (`supplier_id`, `supplier_name`, `supplier_phone`) VALUES (2, 'AB Store', '1-483-283-4742'); +INSERT INTO Suppliers (`supplier_id`, `supplier_name`, `supplier_phone`) VALUES (3, 'Tesco', '287-071-1153x254'); +INSERT INTO Suppliers (`supplier_id`, `supplier_name`, `supplier_phone`) VALUES (4, 'Audi', '1-432-960-2402x1734'); + +CREATE TABLE `Department_Store_Chain` ( +`dept_store_chain_id` INTEGER PRIMARY KEY, +`dept_store_chain_name` VARCHAR(80) +); + +INSERT INTO Department_Store_Chain (`dept_store_chain_id`, `dept_store_chain_name`) VALUES (1, 'South'); +INSERT INTO Department_Store_Chain (`dept_store_chain_id`, `dept_store_chain_name`) VALUES (2, 'West'); +INSERT INTO Department_Store_Chain (`dept_store_chain_id`, `dept_store_chain_name`) VALUES (3, 'East'); +INSERT INTO Department_Store_Chain (`dept_store_chain_id`, `dept_store_chain_name`) VALUES (4, 'North'); + + +CREATE TABLE `Customers` ( +`customer_id` INTEGER PRIMARY KEY, +`payment_method_code` VARCHAR(10) NOT NULL, +`customer_code` VARCHAR(20), +`customer_name` VARCHAR(80), +`customer_address` VARCHAR(255), +`customer_phone` VARCHAR(80), +`customer_email` VARCHAR(80) +); +INSERT INTO Customers (`customer_id`, `payment_method_code`, `customer_code`, `customer_name`, `customer_address`, `customer_phone`, `customer_email`) VALUES (1, 'Credit Card', '401', 'Ahmed', '75099 Tremblay Port Apt. 163 +South Norrisland, SC 80546', '254-072-4068x33935', 'margarett.vonrueden@example.com'); +INSERT INTO Customers (`customer_id`, `payment_method_code`, `customer_code`, `customer_name`, `customer_address`, `customer_phone`, `customer_email`) VALUES (2, 'Credit Card', '665', 'Chauncey', '8408 Lindsay Court +East Dasiabury, IL 72656-3552', '+41(8)1897032009', 'stiedemann.sigrid@example.com'); +INSERT INTO Customers (`customer_id`, `payment_method_code`, `customer_code`, `customer_name`, `customer_address`, `customer_phone`, `customer_email`) VALUES (3, 'Direct Debit', '844', 'Lukas', '7162 Rodolfo Knoll Apt. 502 +Lake Annalise, TN 35791-8871', '197-417-3557', 'joelle.monahan@example.com'); +INSERT INTO Customers (`customer_id`, `payment_method_code`, `customer_code`, `customer_name`, `customer_address`, `customer_phone`, `customer_email`) VALUES (4, 'Direct Debit', '662', 'Lexus', '9581 Will Flat Suite 272 +East Cathryn, WY 30751-4404', '+08(3)8056580281', 'gbrekke@example.com'); +INSERT INTO Customers (`customer_id`, `payment_method_code`, `customer_code`, `customer_name`, `customer_address`, `customer_phone`, `customer_email`) VALUES (5, 'Credit Card', '848', 'Tara', '5065 Mraz Fields Apt. 041 +East Chris, NH 41624', '1-064-498-6609x051', 'nicholas44@example.com'); +INSERT INTO Customers (`customer_id`, `payment_method_code`, `customer_code`, `customer_name`, `customer_address`, `customer_phone`, `customer_email`) VALUES (6, 'Credit Card', '916', 'Jon', '841 Goyette Unions +South Dionbury, NC 62021', '(443)013-3112x528', 'cconroy@example.net'); +INSERT INTO Customers (`customer_id`, `payment_method_code`, `customer_code`, `customer_name`, `customer_address`, `customer_phone`, `customer_email`) VALUES (7, 'Credit Card', '172', 'Cristobal', '8327 Christiansen Lakes Suite 409 +Schneiderland, IA 93624', '877-150-8674x63517', 'shawna.cummerata@example.net'); +INSERT INTO Customers (`customer_id`, `payment_method_code`, `customer_code`, `customer_name`, `customer_address`, `customer_phone`, `customer_email`) VALUES (8, 'Direct Debit', '927', 'Adah', '5049 Hand Land +Coymouth, IL 97300-7731', '1-695-364-7586x59256', 'kathlyn24@example.org'); +INSERT INTO Customers (`customer_id`, `payment_method_code`, `customer_code`, `customer_name`, `customer_address`, `customer_phone`, `customer_email`) VALUES (9, 'Credit Card', '808', 'Yasmeen', '3558 Witting Meadow Apt. 483 +Lake Moriahbury, OH 91556-2122', '587.398.2400x31176', 'ludwig54@example.net'); +INSERT INTO Customers (`customer_id`, `payment_method_code`, `customer_code`, `customer_name`, `customer_address`, `customer_phone`, `customer_email`) VALUES (10, 'Credit Card', '887', 'Karson', '7308 Joan Lake Suite 346 +Lizethtown, DE 56522', '857-844-9339x40140', 'moriah91@example.com'); +INSERT INTO Customers (`customer_id`, `payment_method_code`, `customer_code`, `customer_name`, `customer_address`, `customer_phone`, `customer_email`) VALUES (11, 'Direct Debit', '611', 'Cordell', '362 Fisher Forge Apt. 900 +New Mckenna, CA 98525-5674', '(730)934-8249', 'qstokes@example.org'); +INSERT INTO Customers (`customer_id`, `payment_method_code`, `customer_code`, `customer_name`, `customer_address`, `customer_phone`, `customer_email`) VALUES (12, 'Credit Card', '182', 'Darron', '84445 Elinor Glens +Port Zita, SD 39410', '117.822.3577', 'gwisozk@example.net'); +INSERT INTO Customers (`customer_id`, `payment_method_code`, `customer_code`, `customer_name`, `customer_address`, `customer_phone`, `customer_email`) VALUES (13, 'Credit Card', '589', 'Kenya', '338 Floy Mountains Suite 589 +Yesseniaville, TN 60847', '08023680831', 'maxime86@example.net'); +INSERT INTO Customers (`customer_id`, `payment_method_code`, `customer_code`, `customer_name`, `customer_address`, `customer_phone`, `customer_email`) VALUES (14, 'Direct Debit', '240', 'Abbie', '983 Elinore Passage +Darrionborough, SC 53915-0479', '07594320656', 'celine.bogan@example.com'); +INSERT INTO Customers (`customer_id`, `payment_method_code`, `customer_code`, `customer_name`, `customer_address`, `customer_phone`, `customer_email`) VALUES (15, 'Credit Card', '980', 'Lyric', '649 Ocie Lights +Wyatttown, UT 12697', '1-472-036-0434', 'schultz.arnoldo@example.net'); + + +CREATE TABLE `Products` ( +`product_id` INTEGER PRIMARY KEY, +`product_type_code` VARCHAR(10) NOT NULL, +`product_name` VARCHAR(80), +`product_price` DECIMAL(19,4) +); +INSERT INTO Products (`product_id`, `product_type_code`, `product_name`, `product_price`) VALUES (1, 'Clothes', 'red jeans', '734.7300'); +INSERT INTO Products (`product_id`, `product_type_code`, `product_name`, `product_price`) VALUES (2, 'Clothes', 'yellow jeans', '687.2300'); +INSERT INTO Products (`product_id`, `product_type_code`, `product_name`, `product_price`) VALUES (3, 'Clothes', 'black jeans', '695.1600'); +INSERT INTO Products (`product_id`, `product_type_code`, `product_name`, `product_price`) VALUES (4, 'Clothes', 'blue jeans', '939.5700'); +INSERT INTO Products (`product_id`, `product_type_code`, `product_name`, `product_price`) VALUES (5, 'Clothes', 'red jeans', '534.5200'); +INSERT INTO Products (`product_id`, `product_type_code`, `product_name`, `product_price`) VALUES (6, 'Clothes', 'red topping', '408.8200'); +INSERT INTO Products (`product_id`, `product_type_code`, `product_name`, `product_price`) VALUES (7, 'Clothes', 'black topping', '916.5300'); +INSERT INTO Products (`product_id`, `product_type_code`, `product_name`, `product_price`) VALUES (8, 'Clothes', 'yellow topping', '918.4100'); +INSERT INTO Products (`product_id`, `product_type_code`, `product_name`, `product_price`) VALUES (9, 'Clothes', 'blue topping', '604.8600'); +INSERT INTO Products (`product_id`, `product_type_code`, `product_name`, `product_price`) VALUES (10, 'Hardware', 'monitor', '813.7600'); +INSERT INTO Products (`product_id`, `product_type_code`, `product_name`, `product_price`) VALUES (11, 'Hardware', 'mouse', '803.7400'); +INSERT INTO Products (`product_id`, `product_type_code`, `product_name`, `product_price`) VALUES (12, 'Hardware', 'drive', '944.9600'); +INSERT INTO Products (`product_id`, `product_type_code`, `product_name`, `product_price`) VALUES (13, 'Hardware', 'keyboard', '629.8900'); +INSERT INTO Products (`product_id`, `product_type_code`, `product_name`, `product_price`) VALUES (14, 'Hardware', 'speaker', '612.4600'); +INSERT INTO Products (`product_id`, `product_type_code`, `product_name`, `product_price`) VALUES (15, 'Hardware', 'mic', '971.4400'); + +CREATE TABLE `Supplier_Addresses` ( +`supplier_id` INTEGER NOT NULL, +`address_id` INTEGER NOT NULL, +`date_from` DATETIME NOT NULL, +`date_to` DATETIME, +PRIMARY KEY (`supplier_id`, `address_id`), +FOREIGN KEY (`address_id` ) REFERENCES `Addresses`(`address_id` ), +FOREIGN KEY (`supplier_id` ) REFERENCES `Suppliers`(`supplier_id` ) +); + +INSERT INTO Supplier_Addresses (`supplier_id`, `address_id`, `date_from`, `date_to`) VALUES (4, 5, '2016-09-22 16:41:31', '2018-03-14 20:06:37'); +INSERT INTO Supplier_Addresses (`supplier_id`, `address_id`, `date_from`, `date_to`) VALUES (3, 9, '2014-11-07 19:18:49', '2018-03-16 16:39:58'); +INSERT INTO Supplier_Addresses (`supplier_id`, `address_id`, `date_from`, `date_to`) VALUES (3, 2, '2008-11-22 12:01:25', '2018-03-02 19:50:22'); +INSERT INTO Supplier_Addresses (`supplier_id`, `address_id`, `date_from`, `date_to`) VALUES (2, 11, '2015-03-16 19:30:29', '2018-03-24 00:14:45'); + + +CREATE TABLE `Customer_Addresses` ( +`customer_id` INTEGER NOT NULL, +`address_id` INTEGER NOT NULL, +`date_from` DATETIME NOT NULL, +`date_to` DATETIME, +PRIMARY KEY (`customer_id`, `address_id`), +FOREIGN KEY (`address_id` ) REFERENCES `Addresses`(`address_id` ), +FOREIGN KEY (`customer_id` ) REFERENCES `Customers`(`customer_id` ) +); + + +INSERT INTO Customer_Addresses (`customer_id`, `address_id`, `date_from`, `date_to`) VALUES (2, 9, '2017-12-11 05:00:22', '2018-03-20 20:52:34'); +INSERT INTO Customer_Addresses (`customer_id`, `address_id`, `date_from`, `date_to`) VALUES (1, 6, '2017-10-07 23:00:26', '2018-02-28 14:53:52'); +INSERT INTO Customer_Addresses (`customer_id`, `address_id`, `date_from`, `date_to`) VALUES (10, 8, '2017-04-04 20:00:27', '2018-02-27 20:08:33'); +INSERT INTO Customer_Addresses (`customer_id`, `address_id`, `date_from`, `date_to`) VALUES (1, 9, '2017-12-14 07:40:08', '2018-03-24 14:31:59'); +INSERT INTO Customer_Addresses (`customer_id`, `address_id`, `date_from`, `date_to`) VALUES (1, 2, '2017-07-31 20:18:52', '2018-03-12 05:32:28'); +INSERT INTO Customer_Addresses (`customer_id`, `address_id`, `date_from`, `date_to`) VALUES (8, 2, '2018-01-27 06:27:34', '2018-03-23 17:49:51'); +INSERT INTO Customer_Addresses (`customer_id`, `address_id`, `date_from`, `date_to`) VALUES (1, 14, '2017-08-06 20:57:36', '2018-03-05 21:19:53'); +INSERT INTO Customer_Addresses (`customer_id`, `address_id`, `date_from`, `date_to`) VALUES (6, 13, '2017-09-07 04:41:01', '2018-02-27 23:10:07'); +INSERT INTO Customer_Addresses (`customer_id`, `address_id`, `date_from`, `date_to`) VALUES (7, 7, '2017-10-02 19:56:27', '2018-03-22 17:22:34'); +INSERT INTO Customer_Addresses (`customer_id`, `address_id`, `date_from`, `date_to`) VALUES (8, 4, '2018-01-15 12:05:39', '2018-03-13 21:49:51'); +INSERT INTO Customer_Addresses (`customer_id`, `address_id`, `date_from`, `date_to`) VALUES (7, 4, '2018-02-22 04:46:48', '2018-02-26 00:52:25'); +INSERT INTO Customer_Addresses (`customer_id`, `address_id`, `date_from`, `date_to`) VALUES (2, 4, '2017-11-28 23:36:20', '2018-03-02 17:46:11'); +INSERT INTO Customer_Addresses (`customer_id`, `address_id`, `date_from`, `date_to`) VALUES (12, 14, '2017-11-01 04:21:41', '2018-03-05 16:18:34'); +INSERT INTO Customer_Addresses (`customer_id`, `address_id`, `date_from`, `date_to`) VALUES (7, 10, '2018-01-07 13:31:08', '2018-03-09 07:06:56'); +INSERT INTO Customer_Addresses (`customer_id`, `address_id`, `date_from`, `date_to`) VALUES (4, 12, '2017-08-27 13:38:37', '2018-03-17 15:44:10'); + + + +CREATE TABLE `Customer_Orders` ( +`order_id` INTEGER PRIMARY KEY, +`customer_id` INTEGER NOT NULL, +`order_status_code` VARCHAR(10) NOT NULL, +`order_date` DATETIME NOT NULL, +FOREIGN KEY (`customer_id` ) REFERENCES `Customers`(`customer_id` ) +); + +INSERT INTO Customer_Orders (`order_id`, `customer_id`, `order_status_code`, `order_date`) VALUES (1, 12, 'Completed', '2018-02-10 15:44:48'); +INSERT INTO Customer_Orders (`order_id`, `customer_id`, `order_status_code`, `order_date`) VALUES (2, 4, 'New', '2018-01-31 17:49:18'); +INSERT INTO Customer_Orders (`order_id`, `customer_id`, `order_status_code`, `order_date`) VALUES (3, 1, 'PartFilled', '2018-02-26 12:39:33'); +INSERT INTO Customer_Orders (`order_id`, `customer_id`, `order_status_code`, `order_date`) VALUES (4, 4, 'Pending', '2018-03-07 16:55:17'); +INSERT INTO Customer_Orders (`order_id`, `customer_id`, `order_status_code`, `order_date`) VALUES (5, 4, 'New', '2018-02-12 19:34:12'); +INSERT INTO Customer_Orders (`order_id`, `customer_id`, `order_status_code`, `order_date`) VALUES (6, 11, 'PartFilled', '2018-03-06 16:35:51'); +INSERT INTO Customer_Orders (`order_id`, `customer_id`, `order_status_code`, `order_date`) VALUES (7, 1, 'Cancelled', '2018-02-15 02:25:32'); +INSERT INTO Customer_Orders (`order_id`, `customer_id`, `order_status_code`, `order_date`) VALUES (8, 13, 'Pending', '2018-03-05 23:17:54'); +INSERT INTO Customer_Orders (`order_id`, `customer_id`, `order_status_code`, `order_date`) VALUES (9, 7, 'Pending', '2018-02-09 11:16:46'); +INSERT INTO Customer_Orders (`order_id`, `customer_id`, `order_status_code`, `order_date`) VALUES (10, 11, 'Cancelled', '2018-03-22 10:49:25'); +INSERT INTO Customer_Orders (`order_id`, `customer_id`, `order_status_code`, `order_date`) VALUES (11, 8, 'Cancelled', '2018-02-16 19:42:39'); +INSERT INTO Customer_Orders (`order_id`, `customer_id`, `order_status_code`, `order_date`) VALUES (12, 4, 'New', '2018-02-02 23:42:01'); +INSERT INTO Customer_Orders (`order_id`, `customer_id`, `order_status_code`, `order_date`) VALUES (13, 15, 'PartFilled', '2018-02-26 05:34:18'); +INSERT INTO Customer_Orders (`order_id`, `customer_id`, `order_status_code`, `order_date`) VALUES (14, 6, 'Completed', '2018-03-18 15:12:39'); +INSERT INTO Customer_Orders (`order_id`, `customer_id`, `order_status_code`, `order_date`) VALUES (15, 10, 'Pending', '2018-03-16 22:42:46'); + + +CREATE TABLE `Department_Stores` ( +`dept_store_id` INTEGER PRIMARY KEY, +`dept_store_chain_id` INTEGER, +`store_name` VARCHAR(80), +`store_address` VARCHAR(255), +`store_phone` VARCHAR(80), +`store_email` VARCHAR(80), +FOREIGN KEY (`dept_store_chain_id` ) REFERENCES `Department_Store_Chain`(`dept_store_chain_id` ) +); + + +INSERT INTO Department_Stores (`dept_store_id`, `dept_store_chain_id`, `store_name`, `store_address`, `store_phone`, `store_email`) VALUES (1, 1, 'store_name', '01290 Jeremie Parkway Suite 753 +North Arielle, MS 51249', '(948)944-5099x2027', 'bmaggio@example.com'); +INSERT INTO Department_Stores (`dept_store_id`, `dept_store_chain_id`, `store_name`, `store_address`, `store_phone`, `store_email`) VALUES (2, 3, 'store_name', '082 Purdy Expressway +O''Connellshire, IL 31732', '877-917-5029', 'larissa10@example.org'); +INSERT INTO Department_Stores (`dept_store_id`, `dept_store_chain_id`, `store_name`, `store_address`, `store_phone`, `store_email`) VALUES (3, 4, 'store_name', '994 Travis Plains +North Wadeton, WV 27575-3951', '1-216-312-0375', 'alexandro.mcclure@example.net'); +INSERT INTO Department_Stores (`dept_store_id`, `dept_store_chain_id`, `store_name`, `store_address`, `store_phone`, `store_email`) VALUES (4, 2, 'store_name', '93472 Mayert Shore Apt. 360 +Mitchellton, TN 84209', '670-466-6367', 'bryon24@example.org'); +INSERT INTO Department_Stores (`dept_store_id`, `dept_store_chain_id`, `store_name`, `store_address`, `store_phone`, `store_email`) VALUES (5, 3, 'store_name', '88112 Parisian Lights +Sporermouth, MN 25962', '01399327266', 'creola23@example.org'); +INSERT INTO Department_Stores (`dept_store_id`, `dept_store_chain_id`, `store_name`, `store_address`, `store_phone`, `store_email`) VALUES (6, 4, 'store_name', '49708 Marcella Valleys Suite 181 +Ninamouth, WA 86667', '1-859-843-1957', 'jerod.reynolds@example.net'); +INSERT INTO Department_Stores (`dept_store_id`, `dept_store_chain_id`, `store_name`, `store_address`, `store_phone`, `store_email`) VALUES (7, 4, 'store_name', '41924 Alfredo Cliff +New Eviestad, NY 17573', '1-109-872-9142x77078', 'ihamill@example.org'); +INSERT INTO Department_Stores (`dept_store_id`, `dept_store_chain_id`, `store_name`, `store_address`, `store_phone`, `store_email`) VALUES (8, 4, 'store_name', '7081 Shanna Cape +West Zacheryshire, NC 17408', '+67(5)4983519062', 'casper.adolfo@example.org'); +INSERT INTO Department_Stores (`dept_store_id`, `dept_store_chain_id`, `store_name`, `store_address`, `store_phone`, `store_email`) VALUES (9, 4, 'store_name', '5288 Kaia Street +Devonton, NJ 61782-9006', '(723)503-7086x356', 'selmer.stiedemann@example.org'); +INSERT INTO Department_Stores (`dept_store_id`, `dept_store_chain_id`, `store_name`, `store_address`, `store_phone`, `store_email`) VALUES (10, 3, 'store_name', '00578 Lisa Gateway Suite 476 +Strosinville, VA 03998-3292', '07126036440', 'luisa57@example.org'); +INSERT INTO Department_Stores (`dept_store_id`, `dept_store_chain_id`, `store_name`, `store_address`, `store_phone`, `store_email`) VALUES (11, 2, 'store_name', '34894 Everett Road +South Jeremiehaven, GA 08730', '611-037-9309', 'vonrueden.vern@example.org'); +INSERT INTO Department_Stores (`dept_store_id`, `dept_store_chain_id`, `store_name`, `store_address`, `store_phone`, `store_email`) VALUES (12, 4, 'store_name', '2676 Cruickshank Gardens +North Ginahaven, CT 85046', '(626)763-7031', 'freda.toy@example.org'); +INSERT INTO Department_Stores (`dept_store_id`, `dept_store_chain_id`, `store_name`, `store_address`, `store_phone`, `store_email`) VALUES (13, 2, 'store_name', '29297 West Road Suite 210 +West Dulceside, UT 58085-8998', '1-764-126-7567x0795', 'katlynn62@example.com'); +INSERT INTO Department_Stores (`dept_store_id`, `dept_store_chain_id`, `store_name`, `store_address`, `store_phone`, `store_email`) VALUES (14, 1, 'store_name', '16650 Lysanne River Apt. 281 +North Garettton, AL 84756-4375', '319.331.3397', 'mohr.elwin@example.net'); +INSERT INTO Department_Stores (`dept_store_id`, `dept_store_chain_id`, `store_name`, `store_address`, `store_phone`, `store_email`) VALUES (15, 3, 'store_name', '82470 Hansen Squares Suite 190 +Wehnermouth, NC 76791', '(587)993-3604x3077', 'kelly30@example.com'); + + +CREATE TABLE `Departments` ( +`department_id` INTEGER PRIMARY KEY, +`dept_store_id` INTEGER NOT NULL, +`department_name` VARCHAR(80), +FOREIGN KEY (`dept_store_id` ) REFERENCES `Department_Stores`(`dept_store_id` ) +); +INSERT INTO Departments (`department_id`, `dept_store_id`, `department_name`) VALUES (1, 5, 'human resource'); +INSERT INTO Departments (`department_id`, `dept_store_id`, `department_name`) VALUES (2, 11, 'purchasing'); +INSERT INTO Departments (`department_id`, `dept_store_id`, `department_name`) VALUES (3, 4, 'marketing'); +INSERT INTO Departments (`department_id`, `dept_store_id`, `department_name`) VALUES (4, 11, 'advertising'); +INSERT INTO Departments (`department_id`, `dept_store_id`, `department_name`) VALUES (5, 4, 'managing'); + + +CREATE TABLE `Order_Items` ( +`order_item_id` INTEGER PRIMARY KEY, +`order_id` INTEGER NOT NULL, +`product_id` INTEGER NOT NULL, +FOREIGN KEY (`order_id` ) REFERENCES `Customer_Orders`(`order_id` ), +FOREIGN KEY (`product_id` ) REFERENCES `Products`(`product_id` ) +); +INSERT INTO Order_Items (`order_item_id`, `order_id`, `product_id`) VALUES (1, 9, 7); +INSERT INTO Order_Items (`order_item_id`, `order_id`, `product_id`) VALUES (2, 1, 3); +INSERT INTO Order_Items (`order_item_id`, `order_id`, `product_id`) VALUES (3, 5, 2); +INSERT INTO Order_Items (`order_item_id`, `order_id`, `product_id`) VALUES (4, 14, 10); +INSERT INTO Order_Items (`order_item_id`, `order_id`, `product_id`) VALUES (5, 15, 4); +INSERT INTO Order_Items (`order_item_id`, `order_id`, `product_id`) VALUES (6, 14, 13); +INSERT INTO Order_Items (`order_item_id`, `order_id`, `product_id`) VALUES (7, 6, 13); +INSERT INTO Order_Items (`order_item_id`, `order_id`, `product_id`) VALUES (8, 12, 8); +INSERT INTO Order_Items (`order_item_id`, `order_id`, `product_id`) VALUES (9, 13, 12); +INSERT INTO Order_Items (`order_item_id`, `order_id`, `product_id`) VALUES (10, 14, 13); +INSERT INTO Order_Items (`order_item_id`, `order_id`, `product_id`) VALUES (11, 7, 11); +INSERT INTO Order_Items (`order_item_id`, `order_id`, `product_id`) VALUES (12, 14, 14); +INSERT INTO Order_Items (`order_item_id`, `order_id`, `product_id`) VALUES (13, 15, 5); +INSERT INTO Order_Items (`order_item_id`, `order_id`, `product_id`) VALUES (14, 8, 10); +INSERT INTO Order_Items (`order_item_id`, `order_id`, `product_id`) VALUES (15, 5, 4); +CREATE TABLE `Product_Suppliers` ( +`product_id` INTEGER NOT NULL, +`supplier_id` INTEGER NOT NULL, +`date_supplied_from` DATETIME NOT NULL, +`date_supplied_to` DATETIME, +`total_amount_purchased` VARCHAR(80), +`total_value_purchased` DECIMAL(19,4), +PRIMARY KEY (`product_id`, `supplier_id`), +FOREIGN KEY (`supplier_id` ) REFERENCES `Suppliers`(`supplier_id` ), +FOREIGN KEY (`product_id` ) REFERENCES `Products`(`product_id` ) +); + + +CREATE TABLE `Staff_Department_Assignments` ( +`staff_id` INTEGER NOT NULL, +`department_id` INTEGER NOT NULL, +`date_assigned_from` DATETIME NOT NULL, +`job_title_code` VARCHAR(10) NOT NULL, +`date_assigned_to` DATETIME, +PRIMARY KEY (`staff_id`, `department_id`), +FOREIGN KEY (`department_id` ) REFERENCES `Departments`(`department_id` ), +FOREIGN KEY (`staff_id` ) REFERENCES `Staff`(`staff_id` ) +); + +INSERT INTO Product_Suppliers (`product_id`, `supplier_id`, `date_supplied_from`, `date_supplied_to`, `total_amount_purchased`, `total_value_purchased`) VALUES (4, 3, '2017-06-19 00:49:05', '2018-03-24 19:29:18', '89366.05', '36014.6000'); +INSERT INTO Product_Suppliers (`product_id`, `supplier_id`, `date_supplied_from`, `date_supplied_to`, `total_amount_purchased`, `total_value_purchased`) VALUES (8, 4, '2017-07-02 00:35:12', '2018-03-25 07:30:49', '25085.57', '36274.5600'); +INSERT INTO Product_Suppliers (`product_id`, `supplier_id`, `date_supplied_from`, `date_supplied_to`, `total_amount_purchased`, `total_value_purchased`) VALUES (3, 3, '2017-10-14 19:15:37', '2018-03-24 02:29:44', '15752.45', '7273.7400'); +INSERT INTO Product_Suppliers (`product_id`, `supplier_id`, `date_supplied_from`, `date_supplied_to`, `total_amount_purchased`, `total_value_purchased`) VALUES (7, 1, '2017-08-22 00:58:42', '2018-03-24 02:38:31', '22332.08', '8042.7800'); +INSERT INTO Product_Suppliers (`product_id`, `supplier_id`, `date_supplied_from`, `date_supplied_to`, `total_amount_purchased`, `total_value_purchased`) VALUES (15, 4, '2017-12-08 09:14:05', '2018-03-24 23:03:30', '25318.21', '29836.2600'); +INSERT INTO Product_Suppliers (`product_id`, `supplier_id`, `date_supplied_from`, `date_supplied_to`, `total_amount_purchased`, `total_value_purchased`) VALUES (11, 1, '2017-12-01 19:46:53', '2018-03-24 05:22:36', '35149.74', '67216.3100'); +INSERT INTO Product_Suppliers (`product_id`, `supplier_id`, `date_supplied_from`, `date_supplied_to`, `total_amount_purchased`, `total_value_purchased`) VALUES (11, 3, '2017-07-13 15:02:24', '2018-03-24 23:01:03', '31862.59', '76992.4200'); +INSERT INTO Product_Suppliers (`product_id`, `supplier_id`, `date_supplied_from`, `date_supplied_to`, `total_amount_purchased`, `total_value_purchased`) VALUES (5, 2, '2017-07-28 19:23:39', '2018-03-24 09:17:15', '85922.86', '82524.9500'); +INSERT INTO Product_Suppliers (`product_id`, `supplier_id`, `date_supplied_from`, `date_supplied_to`, `total_amount_purchased`, `total_value_purchased`) VALUES (6, 2, '2017-12-20 07:07:31', '2018-03-24 23:25:58', '64444.18', '97371.1200'); +INSERT INTO Product_Suppliers (`product_id`, `supplier_id`, `date_supplied_from`, `date_supplied_to`, `total_amount_purchased`, `total_value_purchased`) VALUES (4, 1, '2017-09-19 02:14:02', '2018-03-25 09:15:30', '32881.38', '29987.7100'); +INSERT INTO Product_Suppliers (`product_id`, `supplier_id`, `date_supplied_from`, `date_supplied_to`, `total_amount_purchased`, `total_value_purchased`) VALUES (15, 2, '2017-08-07 12:08:00', '2018-03-23 19:21:12', '13712.91', '48100.2300'); +INSERT INTO Product_Suppliers (`product_id`, `supplier_id`, `date_supplied_from`, `date_supplied_to`, `total_amount_purchased`, `total_value_purchased`) VALUES (4, 4, '2017-06-09 01:30:40', '2018-03-24 12:35:08', '79316.31', '98086.8000'); +INSERT INTO Product_Suppliers (`product_id`, `supplier_id`, `date_supplied_from`, `date_supplied_to`, `total_amount_purchased`, `total_value_purchased`) VALUES (8, 2, '2017-06-25 14:59:40', '2018-03-24 12:27:13', '83873.58', '99049.0100'); +INSERT INTO Product_Suppliers (`product_id`, `supplier_id`, `date_supplied_from`, `date_supplied_to`, `total_amount_purchased`, `total_value_purchased`) VALUES (7, 4, '2017-11-17 08:23:16', '2018-03-25 12:03:33', '20689.78', '61800.9500'); +INSERT INTO Product_Suppliers (`product_id`, `supplier_id`, `date_supplied_from`, `date_supplied_to`, `total_amount_purchased`, `total_value_purchased`) VALUES (14, 1, '2017-08-09 21:26:38', '2018-03-24 18:16:47', '20447.99', '27257.6000'); + +INSERT INTO Staff_Department_Assignments (`staff_id`, `department_id`, `date_assigned_from`, `job_title_code`, `date_assigned_to`) VALUES (5, 4, '2017-06-11 22:55:20', 'Department Manager', '2018-03-23 21:59:11'); +INSERT INTO Staff_Department_Assignments (`staff_id`, `department_id`, `date_assigned_from`, `job_title_code`, `date_assigned_to`) VALUES (10, 5, '2017-12-18 19:12:15', 'Sales Person', '2018-03-23 20:25:24'); +INSERT INTO Staff_Department_Assignments (`staff_id`, `department_id`, `date_assigned_from`, `job_title_code`, `date_assigned_to`) VALUES (1, 5, '2018-02-14 03:15:29', 'Clerical Staff', '2018-03-24 19:57:56'); +INSERT INTO Staff_Department_Assignments (`staff_id`, `department_id`, `date_assigned_from`, `job_title_code`, `date_assigned_to`) VALUES (8, 1, '2017-05-14 12:30:33', 'Clerical Staff', '2018-03-25 03:15:31'); +INSERT INTO Staff_Department_Assignments (`staff_id`, `department_id`, `date_assigned_from`, `job_title_code`, `date_assigned_to`) VALUES (15, 2, '2017-03-31 23:07:54', 'Department Manager', '2018-03-24 09:11:14'); +INSERT INTO Staff_Department_Assignments (`staff_id`, `department_id`, `date_assigned_from`, `job_title_code`, `date_assigned_to`) VALUES (2, 5, '2017-11-14 04:38:44', 'Administration', '2018-03-24 07:04:28'); +INSERT INTO Staff_Department_Assignments (`staff_id`, `department_id`, `date_assigned_from`, `job_title_code`, `date_assigned_to`) VALUES (9, 4, '2016-09-20 02:59:15', 'Sales Person', '2018-03-24 20:13:13'); +INSERT INTO Staff_Department_Assignments (`staff_id`, `department_id`, `date_assigned_from`, `job_title_code`, `date_assigned_to`) VALUES (8, 2, '2017-05-10 02:32:17', 'Administration', '2018-03-24 02:36:57'); +INSERT INTO Staff_Department_Assignments (`staff_id`, `department_id`, `date_assigned_from`, `job_title_code`, `date_assigned_to`) VALUES (3, 5, '2016-10-19 08:11:39', 'Clerical Staff', '2018-03-25 15:34:31'); +INSERT INTO Staff_Department_Assignments (`staff_id`, `department_id`, `date_assigned_from`, `job_title_code`, `date_assigned_to`) VALUES (6, 1, '2017-12-26 06:34:20', 'Department Manager', '2018-03-25 09:53:37'); +INSERT INTO Staff_Department_Assignments (`staff_id`, `department_id`, `date_assigned_from`, `job_title_code`, `date_assigned_to`) VALUES (6, 2, '2016-09-15 11:00:41', 'Administration', '2018-03-25 02:29:08'); +INSERT INTO Staff_Department_Assignments (`staff_id`, `department_id`, `date_assigned_from`, `job_title_code`, `date_assigned_to`) VALUES (8, 5, '2017-06-06 22:22:17', 'Clerical Staff', '2018-03-24 13:02:22'); +INSERT INTO Staff_Department_Assignments (`staff_id`, `department_id`, `date_assigned_from`, `job_title_code`, `date_assigned_to`) VALUES (12, 5, '2016-11-12 14:10:55', 'Sales Person', '2018-03-25 02:59:19'); +INSERT INTO Staff_Department_Assignments (`staff_id`, `department_id`, `date_assigned_from`, `job_title_code`, `date_assigned_to`) VALUES (7, 3, '2016-05-17 07:02:37', 'Clerical Staff', '2018-03-24 10:45:21'); +INSERT INTO Staff_Department_Assignments (`staff_id`, `department_id`, `date_assigned_from`, `job_title_code`, `date_assigned_to`) VALUES (2, 3, '2016-06-24 17:31:24', 'Administration', '2018-03-25 13:32:57'); diff --git a/database/device/device.sqlite b/database/device/device.sqlite new file mode 100644 index 0000000000000000000000000000000000000000..0e056b8ee43d544bf4626689fc2fc586f66d0ddc Binary files /dev/null and b/database/device/device.sqlite differ diff --git a/database/device/schema.sql b/database/device/schema.sql new file mode 100644 index 0000000000000000000000000000000000000000..fb2eab61aa2feb4d8f9ccf3ee012243ef3dce3e8 --- /dev/null +++ b/database/device/schema.sql @@ -0,0 +1,61 @@ +PRAGMA foreign_keys = ON; + +CREATE TABLE "device" ( +"Device_ID" int, +"Device" text, +"Carrier" text, +"Package_Version" text, +"Applications" text, +"Software_Platform" text, +PRIMARY KEY ("Device_ID") +); + +CREATE TABLE "shop" ( +"Shop_ID" int, +"Shop_Name" text, +"Location" text, +"Open_Date" text, +"Open_Year" int, +PRIMARY KEY ("Shop_ID") +); + +INSERT INTO "device" VALUES (1,"BlackBerry Storm 9530","MTS Mobility","5.0.0.808","5.0.0.419","Android"); +INSERT INTO "device" VALUES (2,"Apple","Verizon Wireless","5.0.0.328","5.0.0.328","iOS"); +INSERT INTO "device" VALUES (3,"Huawei","Telus Mobility","5.0.0.419","5.0.0.419","Android"); +INSERT INTO "device" VALUES (4,"Xiaomi","Bell Mobility","5.0.0.419","5.0.0.419","Android"); +INSERT INTO "device" VALUES (5,"Samsung","Iusacell","4.7.0.208","4.7.0.151","Android"); +INSERT INTO "device" VALUES (6,"Galaxy","Vodafone AU","5.0.0.742","5.0.0.451","Android"); + + + +INSERT INTO "shop" VALUES (1,"Dinas Device","Dinas","1 January","2014"); +INSERT INTO "shop" VALUES (2,"Best Buy","Cymmer","15 July","2006"); +INSERT INTO "shop" VALUES (3,"Ferndale","Blaenllechau","8 November","2009"); +INSERT INTO "shop" VALUES (4,"Apple","Blaenllechau","10 June","2009"); +INSERT INTO "shop" VALUES (5,"Pentre store","Pentre","24 February","2011"); +INSERT INTO "shop" VALUES (6,"Tynewydd repair","Porth","11 April","2007"); +INSERT INTO "shop" VALUES (7,"Dinas store","Dinas","13 January","2009"); +INSERT INTO "shop" VALUES (8,"Naval repair","Penygraig","10 December","2010"); +INSERT INTO "shop" VALUES (9,"Gelli repair","Gelli","21 August","2013"); +INSERT INTO "shop" VALUES (10,"Naval's shop","Penygraig","27 January","2014"); +INSERT INTO "shop" VALUES (11,"ATnT","Maerdy","23–24 December","2015"); +INSERT INTO "shop" VALUES (12,"National Cellphone","Wattstown","18 February","2017"); + +CREATE TABLE "stock" ( +"Shop_ID" int, +"Device_ID" int, +"Quantity" int, +PRIMARY KEY ("Shop_ID","Device_ID"), +FOREIGN KEY (`Shop_ID`) REFERENCES `shop`(`Shop_ID`), +FOREIGN KEY (`Device_ID`) REFERENCES `device`(`Device_ID`) +); + +INSERT INTO "stock" VALUES (1,6,100); +INSERT INTO "stock" VALUES (2,6,110); +INSERT INTO "stock" VALUES (3,6,134); +INSERT INTO "stock" VALUES (4,6,56); +INSERT INTO "stock" VALUES (1,4,200); +INSERT INTO "stock" VALUES (11,6,112); +INSERT INTO "stock" VALUES (3,4,124); +INSERT INTO "stock" VALUES (9,4,51); + diff --git a/database/document_management/document_management.sqlite b/database/document_management/document_management.sqlite new file mode 100644 index 0000000000000000000000000000000000000000..94ab2e167169b58277967abef198847f2a7ce7ee Binary files /dev/null and b/database/document_management/document_management.sqlite differ diff --git a/database/document_management/schema.sql b/database/document_management/schema.sql new file mode 100644 index 0000000000000000000000000000000000000000..cf29b8d00ff6a262fe16fcf326d06bf18b8d315d --- /dev/null +++ b/database/document_management/schema.sql @@ -0,0 +1,182 @@ +PRAGMA foreign_keys = ON; + +CREATE TABLE `Roles` ( +`role_code` VARCHAR(15) PRIMARY KEY, +`role_description` VARCHAR(80) +); + +CREATE TABLE `Users` ( +`user_id` INTEGER PRIMARY KEY, +`role_code` VARCHAR(15) NOT NULL, +`user_name` VARCHAR(40), +`user_login` VARCHAR(40), +`password` VARCHAR(40), +FOREIGN KEY (`role_code` ) REFERENCES `Roles`(`role_code` ) +); +INSERT INTO Roles (`role_code`, `role_description`) VALUES ('DBA', 'Database Administrator'); +INSERT INTO Roles (`role_code`, `role_description`) VALUES ('PROJ-MGR', 'Project Manager'); +INSERT INTO Users (`user_id`, `role_code`, `user_name`, `user_login`, `password`) VALUES (1, 'PROJ-MGR', 'dickens.elta', '0', 'e72b5a2d50b39a8760764a5f7a9d68ca2f076877'); +INSERT INTO Users (`user_id`, `role_code`, `user_name`, `user_login`, `password`) VALUES (2, 'DBA', 'tremblay.raheem', '1', '9bc25a040d5647ced5ec32e1a455e90fafc10bcb'); +INSERT INTO Users (`user_id`, `role_code`, `user_name`, `user_login`, `password`) VALUES (3, 'DBA', 'lynn.haley', '0', '90db8f51449e6c39e2a01f0b649d5a92fe76bbbb'); +INSERT INTO Users (`user_id`, `role_code`, `user_name`, `user_login`, `password`) VALUES (4, 'PROJ-MGR', 'ycremin', '0', 'f6977378f409f5d2d230016a6678a582e14f43b0'); +INSERT INTO Users (`user_id`, `role_code`, `user_name`, `user_login`, `password`) VALUES (5, 'PROJ-MGR', 'larson.vesta', '1', 'da383455a05a824606c54e99f671c4d6a2ddae26'); +INSERT INTO Users (`user_id`, `role_code`, `user_name`, `user_login`, `password`) VALUES (6, 'DBA', 'amelie53', '0', '6aa66440864ff8143fe7dee5940a6af3460bad07'); +INSERT INTO Users (`user_id`, `role_code`, `user_name`, `user_login`, `password`) VALUES (7, 'DBA', 'jacklyn.schmitt', '1', '3f6affa583bfdf7fac6faeb2ca418431909d4b39'); +INSERT INTO Users (`user_id`, `role_code`, `user_name`, `user_login`, `password`) VALUES (8, 'PROJ-MGR', 'joanne.deckow', '0', '20241478f890508ac47870cfba472e1db04a71ca'); +INSERT INTO Users (`user_id`, `role_code`, `user_name`, `user_login`, `password`) VALUES (9, 'PROJ-MGR', 'dickinson.lenora', '0', 'a0fe5434a5f4c218e37b0082f2408b357feb0fa6'); +INSERT INTO Users (`user_id`, `role_code`, `user_name`, `user_login`, `password`) VALUES (10, 'DBA', 'heller.harley', '1', '11af7569a5c1e8b455add5755e18131be2ac8636'); +INSERT INTO Users (`user_id`, `role_code`, `user_name`, `user_login`, `password`) VALUES (11, 'DBA', 'roger.o''conner', '0', '3d478d7056d6417966f6b1676f6ec81b3094f44f'); +INSERT INTO Users (`user_id`, `role_code`, `user_name`, `user_login`, `password`) VALUES (12, 'DBA', 'gussie00', '1', '75f7b5ed8e70e86467155e003ccda6fce1011c29'); +INSERT INTO Users (`user_id`, `role_code`, `user_name`, `user_login`, `password`) VALUES (13, 'PROJ-MGR', 'johanna.fisher', '1', '1fb26eea854962d41512827bf90a5b7ce4b359d8'); +INSERT INTO Users (`user_id`, `role_code`, `user_name`, `user_login`, `password`) VALUES (14, 'DBA', 'faye30', '0', '27cca8f94136f0e8971b5ca555a21ff756871b27'); +INSERT INTO Users (`user_id`, `role_code`, `user_name`, `user_login`, `password`) VALUES (15, 'PROJ-MGR', 'glenna.simonis', '1', '95f489fc0921bbb3e7d661a550ae208b88d9b11a'); + +CREATE TABLE `Document_Structures` ( +`document_structure_code` VARCHAR(15) PRIMARY KEY, +`parent_document_structure_code` VARCHAR(15), +`document_structure_description` VARCHAR(80) +); +INSERT INTO Document_Structures (`document_structure_code`, `parent_document_structure_code`, `document_structure_description`) VALUES ('1', '1', 'Header'); +INSERT INTO Document_Structures (`document_structure_code`, `parent_document_structure_code`, `document_structure_description`) VALUES ('6', '1', 'Main section'); +INSERT INTO Document_Structures (`document_structure_code`, `parent_document_structure_code`, `document_structure_description`) VALUES ('8', '1', 'Bib'); +INSERT INTO Document_Structures (`document_structure_code`, `parent_document_structure_code`, `document_structure_description`) VALUES ('5', '6', 'Image section'); +INSERT INTO Document_Structures (`document_structure_code`, `parent_document_structure_code`, `document_structure_description`) VALUES ('9', '8', 'Author section'); + + +CREATE TABLE `Functional_Areas` ( +`functional_area_code` VARCHAR(15) PRIMARY KEY, +`parent_functional_area_code` VARCHAR(15), +`functional_area_description` VARCHAR(80) NOT NULL +); + +INSERT INTO Functional_Areas (`functional_area_code`, `parent_functional_area_code`, `functional_area_description`) VALUES ('8', '8', 'Signature'); +INSERT INTO Functional_Areas (`functional_area_code`, `parent_functional_area_code`, `functional_area_description`) VALUES ('1', '8', 'Acknowledgement'); +INSERT INTO Functional_Areas (`functional_area_code`, `parent_functional_area_code`, `functional_area_description`) VALUES ('9', '8', 'Keep blank'); + + +CREATE TABLE `Images` ( +`image_id` INTEGER PRIMARY KEY, +`image_alt_text` VARCHAR(80), +`image_name` VARCHAR(40), +`image_url` VARCHAR(255) +); +INSERT INTO Images (`image_id`, `image_alt_text`, `image_name`, `image_url`) VALUES (1, 'Lea', 'top1', 'http://www.rempelnader.com/1.jpg'); +INSERT INTO Images (`image_id`, `image_alt_text`, `image_name`, `image_url`) VALUES (2, 'Arden', 'top2', 'http://connellykertzmann.org/1.jpg'); +INSERT INTO Images (`image_id`, `image_alt_text`, `image_name`, `image_url`) VALUES (3, 'Mohamed', 'top3', 'http://www.bernierconnelly.com/1.jpg'); +INSERT INTO Images (`image_id`, `image_alt_text`, `image_name`, `image_url`) VALUES (4, 'Chaya', 'top4', 'http://abernathyboehm.com/1.jpg'); +INSERT INTO Images (`image_id`, `image_alt_text`, `image_name`, `image_url`) VALUES (5, 'Percival', 'chapter1', 'http://gaylord.info/1.jpg'); +INSERT INTO Images (`image_id`, `image_alt_text`, `image_name`, `image_url`) VALUES (6, 'Lincoln', 'chapter2', 'http://www.hellerreinger.com/1.jpg'); +INSERT INTO Images (`image_id`, `image_alt_text`, `image_name`, `image_url`) VALUES (7, 'Camylle', 'chapter3', 'http://faycummerata.net/1.jpg'); +INSERT INTO Images (`image_id`, `image_alt_text`, `image_name`, `image_url`) VALUES (8, 'Ashtyn', 'chapter4', 'http://haleychamplin.net/1.jpg'); +INSERT INTO Images (`image_id`, `image_alt_text`, `image_name`, `image_url`) VALUES (9, 'Filomena', 'chapter5', 'http://www.fritsch.net/1.jpg'); +INSERT INTO Images (`image_id`, `image_alt_text`, `image_name`, `image_url`) VALUES (10, 'Jeanette', 'data1', 'http://sauer.com/1.jpg'); +INSERT INTO Images (`image_id`, `image_alt_text`, `image_name`, `image_url`) VALUES (11, 'Name', 'data2', 'http://www.heller.com/1.jpg'); +INSERT INTO Images (`image_id`, `image_alt_text`, `image_name`, `image_url`) VALUES (12, 'Marianna', 'data3', 'http://www.hermann.com/1.jpg'); +INSERT INTO Images (`image_id`, `image_alt_text`, `image_name`, `image_url`) VALUES (13, 'Stephen', 'data4', 'http://rowelakin.com/1.jpg'); +INSERT INTO Images (`image_id`, `image_alt_text`, `image_name`, `image_url`) VALUES (14, 'Miller', 'data5', 'http://andersonluettgen.net/1.jpg'); +INSERT INTO Images (`image_id`, `image_alt_text`, `image_name`, `image_url`) VALUES (15, 'Trycia', 'data6', 'http://www.beahan.biz/1.jpg'); + + +CREATE TABLE `Documents` ( +`document_code` VARCHAR(15) PRIMARY KEY, +`document_structure_code` VARCHAR(15) NOT NULL, +`document_type_code` VARCHAR(15) NOT NULL, +`access_count` INTEGER, +`document_name` VARCHAR(80), +FOREIGN KEY (`document_structure_code` ) REFERENCES `Document_Structures`(`document_structure_code` ) +); + +INSERT INTO Documents (`document_code`, `document_structure_code`, `document_type_code`, `access_count`, `document_name`) VALUES ('217', '8', 'Book', 1864, 'Learning English'); +INSERT INTO Documents (`document_code`, `document_structure_code`, `document_type_code`, `access_count`, `document_name`) VALUES ('621', '1', 'Paper', 8208, 'Research about Art history'); +INSERT INTO Documents (`document_code`, `document_structure_code`, `document_type_code`, `access_count`, `document_name`) VALUES ('958', '8', 'Book', 3769, 'Learning Database'); +INSERT INTO Documents (`document_code`, `document_structure_code`, `document_type_code`, `access_count`, `document_name`) VALUES ('961', '5', 'Advertisement', 6661, 'Summer Sails'); +INSERT INTO Documents (`document_code`, `document_structure_code`, `document_type_code`, `access_count`, `document_name`) VALUES ('989', '9', 'Book', 2910, 'Learning Japanese'); +INSERT INTO Documents (`document_code`, `document_structure_code`, `document_type_code`, `access_count`, `document_name`) VALUES ('930', '9', 'CV', 6345, 'David CV'); +INSERT INTO Documents (`document_code`, `document_structure_code`, `document_type_code`, `access_count`, `document_name`) VALUES ('928', '8', 'Book', 2045, 'How to cook pasta'); +INSERT INTO Documents (`document_code`, `document_structure_code`, `document_type_code`, `access_count`, `document_name`) VALUES ('510', '6', 'Paper', 3479, 'Humanity: a fact'); +INSERT INTO Documents (`document_code`, `document_structure_code`, `document_type_code`, `access_count`, `document_name`) VALUES ('706', '9', 'Advertisement', 8623, 'Winter Sails'); +INSERT INTO Documents (`document_code`, `document_structure_code`, `document_type_code`, `access_count`, `document_name`) VALUES ('465', '9', 'CV', 5924, 'John CV'); +INSERT INTO Documents (`document_code`, `document_structure_code`, `document_type_code`, `access_count`, `document_name`) VALUES ('713', '8', 'CV', 2294, 'Joe CV'); +INSERT INTO Documents (`document_code`, `document_structure_code`, `document_type_code`, `access_count`, `document_name`) VALUES ('566', '5', 'Advertisement', 3289, 'Spring Sails'); +INSERT INTO Documents (`document_code`, `document_structure_code`, `document_type_code`, `access_count`, `document_name`) VALUES ('349', '9', 'Book', 1219, 'Life about Claude Monet'); +INSERT INTO Documents (`document_code`, `document_structure_code`, `document_type_code`, `access_count`, `document_name`) VALUES ('675', '1', 'Advertisement', 7509, 'Fall Sails'); +INSERT INTO Documents (`document_code`, `document_structure_code`, `document_type_code`, `access_count`, `document_name`) VALUES ('714', '6', 'Paper', 9948, 'Relationships between History and Arts'); + + + + +CREATE TABLE `Document_Functional_Areas` ( +`document_code` VARCHAR(15) NOT NULL, +`functional_area_code` VARCHAR(15) NOT NULL, +FOREIGN KEY (`document_code` ) REFERENCES `Documents`(`document_code` ), +FOREIGN KEY (`functional_area_code` ) REFERENCES `Functional_Areas`(`functional_area_code` ) +); +INSERT INTO Document_Functional_Areas (`document_code`, `functional_area_code`) VALUES ('675', '9'); +INSERT INTO Document_Functional_Areas (`document_code`, `functional_area_code`) VALUES ('930', '1'); +INSERT INTO Document_Functional_Areas (`document_code`, `functional_area_code`) VALUES ('217', '1'); +INSERT INTO Document_Functional_Areas (`document_code`, `functional_area_code`) VALUES ('465', '1'); +INSERT INTO Document_Functional_Areas (`document_code`, `functional_area_code`) VALUES ('958', '1'); +INSERT INTO Document_Functional_Areas (`document_code`, `functional_area_code`) VALUES ('958', '9'); +INSERT INTO Document_Functional_Areas (`document_code`, `functional_area_code`) VALUES ('217', '9'); +INSERT INTO Document_Functional_Areas (`document_code`, `functional_area_code`) VALUES ('961', '9'); +INSERT INTO Document_Functional_Areas (`document_code`, `functional_area_code`) VALUES ('928', '9'); +INSERT INTO Document_Functional_Areas (`document_code`, `functional_area_code`) VALUES ('958', '9'); +INSERT INTO Document_Functional_Areas (`document_code`, `functional_area_code`) VALUES ('349', '1'); +INSERT INTO Document_Functional_Areas (`document_code`, `functional_area_code`) VALUES ('961', '8'); +INSERT INTO Document_Functional_Areas (`document_code`, `functional_area_code`) VALUES ('989', '1'); +INSERT INTO Document_Functional_Areas (`document_code`, `functional_area_code`) VALUES ('706', '8'); +INSERT INTO Document_Functional_Areas (`document_code`, `functional_area_code`) VALUES ('713', '8'); + + +CREATE TABLE `Document_Sections` ( +`section_id` INTEGER PRIMARY KEY, +`document_code` VARCHAR(15) NOT NULL, +`section_sequence` INTEGER, +`section_code` VARCHAR(20), +`section_title` VARCHAR(80), +FOREIGN KEY (`document_code` ) REFERENCES `Documents`(`document_code` ) +); +INSERT INTO Document_Sections (`section_id`, `document_code`, `section_sequence`, `section_code`, `section_title`) VALUES (40, '465', 4964, '93', 'after'); +INSERT INTO Document_Sections (`section_id`, `document_code`, `section_sequence`, `section_code`, `section_title`) VALUES (57, '989', 6349, '22', 'after'); +INSERT INTO Document_Sections (`section_id`, `document_code`, `section_sequence`, `section_code`, `section_title`) VALUES (15, '217', 4510, '14', 'after'); +INSERT INTO Document_Sections (`section_id`, `document_code`, `section_sequence`, `section_code`, `section_title`) VALUES (62, '621', 5552, '16', 'after'); +INSERT INTO Document_Sections (`section_id`, `document_code`, `section_sequence`, `section_code`, `section_title`) VALUES (23, '465', 8548, '49', 'after'); +INSERT INTO Document_Sections (`section_id`, `document_code`, `section_sequence`, `section_code`, `section_title`) VALUES (19, '675', 7236, '90', 'after'); +INSERT INTO Document_Sections (`section_id`, `document_code`, `section_sequence`, `section_code`, `section_title`) VALUES (95, '621', 8805, '38', 'before'); +INSERT INTO Document_Sections (`section_id`, `document_code`, `section_sequence`, `section_code`, `section_title`) VALUES (27, '566', 6016, '18', 'before'); +INSERT INTO Document_Sections (`section_id`, `document_code`, `section_sequence`, `section_code`, `section_title`) VALUES (89, '566', 2354, '34', 'before'); +INSERT INTO Document_Sections (`section_id`, `document_code`, `section_sequence`, `section_code`, `section_title`) VALUES (93, '713', 4433, '91', 'before'); +INSERT INTO Document_Sections (`section_id`, `document_code`, `section_sequence`, `section_code`, `section_title`) VALUES (21, '675', 9847, '72', 'before'); +INSERT INTO Document_Sections (`section_id`, `document_code`, `section_sequence`, `section_code`, `section_title`) VALUES (54, '961', 4794, '34', 'before'); +INSERT INTO Document_Sections (`section_id`, `document_code`, `section_sequence`, `section_code`, `section_title`) VALUES (12, '714', 6072, '70', 'after'); +INSERT INTO Document_Sections (`section_id`, `document_code`, `section_sequence`, `section_code`, `section_title`) VALUES (38, '930', 6521, '58', 'after'); +INSERT INTO Document_Sections (`section_id`, `document_code`, `section_sequence`, `section_code`, `section_title`) VALUES (86, '706', 2170, '60', 'after'); + +CREATE TABLE `Document_Sections_Images` ( +`section_id` INTEGER NOT NULL, +`image_id` INTEGER NOT NULL, +PRIMARY KEY (`section_id`,`image_id`), +FOREIGN KEY (`section_id` ) REFERENCES `Document_Sections`(`section_id` ), +FOREIGN KEY (`image_id` ) REFERENCES `Images`(`image_id` ) +); + +INSERT INTO Document_Sections_Images (`section_id`, `image_id`) VALUES (93, 6); +INSERT INTO Document_Sections_Images (`section_id`, `image_id`) VALUES (86, 2); +INSERT INTO Document_Sections_Images (`section_id`, `image_id`) VALUES (27, 3); +INSERT INTO Document_Sections_Images (`section_id`, `image_id`) VALUES (12, 12); +INSERT INTO Document_Sections_Images (`section_id`, `image_id`) VALUES (19, 12); +INSERT INTO Document_Sections_Images (`section_id`, `image_id`) VALUES (38, 12); +INSERT INTO Document_Sections_Images (`section_id`, `image_id`) VALUES (89, 8); +INSERT INTO Document_Sections_Images (`section_id`, `image_id`) VALUES (23, 8); +INSERT INTO Document_Sections_Images (`section_id`, `image_id`) VALUES (40, 5); +INSERT INTO Document_Sections_Images (`section_id`, `image_id`) VALUES (19, 2); +INSERT INTO Document_Sections_Images (`section_id`, `image_id`) VALUES (62, 14); +INSERT INTO Document_Sections_Images (`section_id`, `image_id`) VALUES (21, 2); +INSERT INTO Document_Sections_Images (`section_id`, `image_id`) VALUES (86, 4); +INSERT INTO Document_Sections_Images (`section_id`, `image_id`) VALUES (15, 14); +INSERT INTO Document_Sections_Images (`section_id`, `image_id`) VALUES (54, 12); +INSERT INTO Document_Sections_Images (`section_id`, `image_id`) VALUES (38, 7); +INSERT INTO Document_Sections_Images (`section_id`, `image_id`) VALUES (15, 13); +INSERT INTO Document_Sections_Images (`section_id`, `image_id`) VALUES (27, 10); +INSERT INTO Document_Sections_Images (`section_id`, `image_id`) VALUES (40, 6); +INSERT INTO Document_Sections_Images (`section_id`, `image_id`) VALUES (19, 6); diff --git a/database/dog_kennels/dog_kennels.sqlite b/database/dog_kennels/dog_kennels.sqlite new file mode 100644 index 0000000000000000000000000000000000000000..102f9e770a76366af3c45878a46ce0ddbeb77690 Binary files /dev/null and b/database/dog_kennels/dog_kennels.sqlite differ diff --git a/database/dog_kennels/schema.sql b/database/dog_kennels/schema.sql new file mode 100644 index 0000000000000000000000000000000000000000..a8149aee3b5a26ea45aeaf42a762e8067058e1a9 --- /dev/null +++ b/database/dog_kennels/schema.sql @@ -0,0 +1,172 @@ +PRAGMA foreign_keys = ON; +CREATE TABLE `Breeds` ( +`breed_code` VARCHAR(10) PRIMARY KEY , +`breed_name` VARCHAR(80) +); +CREATE TABLE `Charges` ( +`charge_id` INTEGER PRIMARY KEY , +`charge_type` VARCHAR(10), +`charge_amount` DECIMAL(19,4) +); +INSERT INTO Breeds (`breed_code`, `breed_name`) VALUES ('ESK', 'Eskimo'); +INSERT INTO Breeds (`breed_code`, `breed_name`) VALUES ('HUS', 'Husky'); +INSERT INTO Breeds (`breed_code`, `breed_name`) VALUES ('BUL', 'Bulldog'); +INSERT INTO Charges (`charge_id`, `charge_type`, `charge_amount`) VALUES (1, 'Daily Accommodation', '98.0000'); +INSERT INTO Charges (`charge_id`, `charge_type`, `charge_amount`) VALUES (2, 'Drugs', '322.0000'); +INSERT INTO Charges (`charge_id`, `charge_type`, `charge_amount`) VALUES (3, 'Health Check', '640.0000'); + +CREATE TABLE `Sizes` ( +`size_code` VARCHAR(10) PRIMARY KEY , +`size_description` VARCHAR(80) +); + +INSERT INTO Sizes (`size_code`, `size_description`) VALUES ('SML', 'Small'); +INSERT INTO Sizes (`size_code`, `size_description`) VALUES ('MED', 'Medium'); +INSERT INTO Sizes (`size_code`, `size_description`) VALUES ('LGE', 'Large'); + + +CREATE TABLE `Treatment_Types` ( +`treatment_type_code` VARCHAR(10) PRIMARY KEY , +`treatment_type_description` VARCHAR(80) +); +INSERT INTO Treatment_Types (`treatment_type_code`, `treatment_type_description`) VALUES ('EXAM', 'Physical examination'); +INSERT INTO Treatment_Types (`treatment_type_code`, `treatment_type_description`) VALUES ('VAC', 'Vaccination'); +INSERT INTO Treatment_Types (`treatment_type_code`, `treatment_type_description`) VALUES ('WALK', 'Take for a Walk'); + +CREATE TABLE `Owners` ( +`owner_id` INTEGER PRIMARY KEY , +`first_name` VARCHAR(50), +`last_name` VARCHAR(50), +`street` VARCHAR(50), +`city` VARCHAR(50), +`state` VARCHAR(20), +`zip_code` VARCHAR(20), +`email_address` VARCHAR(50), +`home_phone` VARCHAR(20), +`cell_number` VARCHAR(20) +); +INSERT INTO Owners (`owner_id`, `first_name`, `last_name`, `street`, `city`, `state`, `zip_code`, `email_address`, `home_phone`, `cell_number`) VALUES (1, 'Nora', 'Haley', '0647 Hintz Village Apt. 024', 'Lake Tia', 'Wisconsin', '93165', 'lynn81@example.org', '1-682-845-0116x63235', '478.978.0729'); +INSERT INTO Owners (`owner_id`, `first_name`, `last_name`, `street`, `city`, `state`, `zip_code`, `email_address`, `home_phone`, `cell_number`) VALUES (2, 'Melisa', 'DuBuque', '1204 Mae Highway Apt. 107', 'Port Reannamouth', 'Virginia', '45244', 'ykris@example.com', '(799)563-0260x454', '(722)768-5439x484'); +INSERT INTO Owners (`owner_id`, `first_name`, `last_name`, `street`, `city`, `state`, `zip_code`, `email_address`, `home_phone`, `cell_number`) VALUES (3, 'Jaclyn', 'Stoltenberg', '2635 Caitlyn Plains', 'Barrettburgh', 'Vermont', '02647', 'hudson.favian@example.com', '916.976.9480x13851', '481-483-9083x37986'); +INSERT INTO Owners (`owner_id`, `first_name`, `last_name`, `street`, `city`, `state`, `zip_code`, `email_address`, `home_phone`, `cell_number`) VALUES (4, 'Tre', 'Hamill', '692 Jaskolski Forges', 'Brakusfurt', 'Florida', '87304', 'marks.gail@example.org', '1-332-849-1908', '739-136-7202'); +INSERT INTO Owners (`owner_id`, `first_name`, `last_name`, `street`, `city`, `state`, `zip_code`, `email_address`, `home_phone`, `cell_number`) VALUES (5, 'Johann', 'Fisher', '68118 Daniel Row', 'Lake Valentin', 'NorthDakota', '61019', 'zboncak.madonna@example.net', '(544)034-1670', '1-626-264-7659x1697'); +INSERT INTO Owners (`owner_id`, `first_name`, `last_name`, `street`, `city`, `state`, `zip_code`, `email_address`, `home_phone`, `cell_number`) VALUES (6, 'Kade', 'Rippin', '51934 Treutel Harbor', 'Lake Carleyborough', 'Arizona', '25609', 'margaretta.runte@example.net', '318-052-6573', '+70(4)9217952551'); +INSERT INTO Owners (`owner_id`, `first_name`, `last_name`, `street`, `city`, `state`, `zip_code`, `email_address`, `home_phone`, `cell_number`) VALUES (7, 'Emelie', 'Mertz', '2417 Keara Stravenue Apt. 146', 'Lake Jennyferfort', 'NewYork', '00589', 'angeline99@example.com', '(058)997-7627', '121.381.3316x6535'); +INSERT INTO Owners (`owner_id`, `first_name`, `last_name`, `street`, `city`, `state`, `zip_code`, `email_address`, `home_phone`, `cell_number`) VALUES (8, 'Rolando', 'Prohaska', '57382 Yost Ridges', 'South Afton', 'Arkansas', '86010', 'kturner@example.net', '01802479758', '(783)271-6744x4507'); +INSERT INTO Owners (`owner_id`, `first_name`, `last_name`, `street`, `city`, `state`, `zip_code`, `email_address`, `home_phone`, `cell_number`) VALUES (9, 'Adelle', 'Ondricka', '9212 Rosenbaum Lights', 'East Hillardberg', 'Washington', '92406', 'fschoen@example.net', '066.264.7885', '+00(2)4323592985'); +INSERT INTO Owners (`owner_id`, `first_name`, `last_name`, `street`, `city`, `state`, `zip_code`, `email_address`, `home_phone`, `cell_number`) VALUES (10, 'Lorenz', 'Nicolas', '59509 Mellie Mountain', 'New Margaretteborough', 'SouthDakota', '78297', 'ymaggio@example.com', '085.557.0379x84348', '559.874.3011x989'); +INSERT INTO Owners (`owner_id`, `first_name`, `last_name`, `street`, `city`, `state`, `zip_code`, `email_address`, `home_phone`, `cell_number`) VALUES (11, 'Gay', 'Feil', '60352 Kayleigh Crossing Suite 700', 'Port Zackery', 'Indiana', '35747', 'pearlie18@example.com', '130-796-4589x05454', '762.589.6117x1328'); +INSERT INTO Owners (`owner_id`, `first_name`, `last_name`, `street`, `city`, `state`, `zip_code`, `email_address`, `home_phone`, `cell_number`) VALUES (12, 'Orlando', 'Price', '89011 Kertzmann Spring Suite 642', 'East Maribelbury', 'Mississippi', '11990', 'christy49@example.org', '363.948.1090', '1-739-421-2225x38148'); +INSERT INTO Owners (`owner_id`, `first_name`, `last_name`, `street`, `city`, `state`, `zip_code`, `email_address`, `home_phone`, `cell_number`) VALUES (13, 'Cindy', 'Schmitt', '6950 Katherine Forges Apt. 630', 'Beerton', 'NorthDakota', '36871', 'wpfeffer@example.net', '(094)747-5094x8134', '633.455.3045x85484'); +INSERT INTO Owners (`owner_id`, `first_name`, `last_name`, `street`, `city`, `state`, `zip_code`, `email_address`, `home_phone`, `cell_number`) VALUES (14, 'Rachelle', 'Funk', '15828 Spencer Extensions', 'West Leonard', 'Maryland', '22731', 'edythe62@example.org', '1-346-655-5842x768', '(257)399-3116'); +INSERT INTO Owners (`owner_id`, `first_name`, `last_name`, `street`, `city`, `state`, `zip_code`, `email_address`, `home_phone`, `cell_number`) VALUES (15, 'Heather', 'Hauck', '1858 Jan Park', 'South Daisyfurt', 'Pennsylvania', '22693', 'ybergstrom@example.com', '893-862-5295x61709', '341.667.8085'); + + +CREATE TABLE `Dogs` ( +`dog_id` INTEGER PRIMARY KEY , +`owner_id` INTEGER NOT NULL, +`abandoned_yn` VARCHAR(1), +`breed_code` VARCHAR(10) NOT NULL, +`size_code` VARCHAR(10) NOT NULL, +`name` VARCHAR(50), +`age` VARCHAR(20), +`date_of_birth` DATETIME, +`gender` VARCHAR(1), +`weight` VARCHAR(20), +`date_arrived` DATETIME, +`date_adopted` DATETIME, +`date_departed` DATETIME, +FOREIGN KEY (`breed_code` ) REFERENCES `Breeds`(`breed_code` ), +FOREIGN KEY (`size_code` ) REFERENCES `Sizes`(`size_code` ), +FOREIGN KEY (`owner_id` ) REFERENCES `Owners`(`owner_id` ), +FOREIGN KEY (`owner_id` ) REFERENCES `Owners`(`owner_id` ) +); + +INSERT INTO Dogs (`dog_id`, `owner_id`, `abandoned_yn`, `breed_code`, `size_code`, `name`, `age`, `date_of_birth`, `gender`, `weight`, `date_arrived`, `date_adopted`, `date_departed`) VALUES (1, 3, '1', 'ESK', 'LGE', 'Kacey', '6', '2012-01-27 05:11:53', '1', '7.57', '2017-09-08 20:10:13', '2018-03-06 16:32:11', '2018-03-25 06:58:44'); +INSERT INTO Dogs (`dog_id`, `owner_id`, `abandoned_yn`, `breed_code`, `size_code`, `name`, `age`, `date_of_birth`, `gender`, `weight`, `date_arrived`, `date_adopted`, `date_departed`) VALUES (2, 11, '0', 'BUL', 'LGE', 'Hipolito', '9', '2013-02-13 05:15:21', '0', '1.72', '2017-12-22 05:02:02', '2018-03-25 08:12:51', '2018-03-25 02:11:32'); +INSERT INTO Dogs (`dog_id`, `owner_id`, `abandoned_yn`, `breed_code`, `size_code`, `name`, `age`, `date_of_birth`, `gender`, `weight`, `date_arrived`, `date_adopted`, `date_departed`) VALUES (3, 1, '0', 'BUL', 'MED', 'Mavis', '8', '2008-05-19 15:54:49', '1', '8.04', '2017-06-25 10:14:05', '2018-03-07 21:45:43', '2018-03-25 10:25:46'); +INSERT INTO Dogs (`dog_id`, `owner_id`, `abandoned_yn`, `breed_code`, `size_code`, `name`, `age`, `date_of_birth`, `gender`, `weight`, `date_arrived`, `date_adopted`, `date_departed`) VALUES (4, 14, '0', 'ESK', 'LGE', 'Houston', '5', '2008-10-09 22:38:53', '0', '2.18', '2017-04-20 00:58:55', '2018-03-18 15:12:50', '2018-03-24 19:12:22'); +INSERT INTO Dogs (`dog_id`, `owner_id`, `abandoned_yn`, `breed_code`, `size_code`, `name`, `age`, `date_of_birth`, `gender`, `weight`, `date_arrived`, `date_adopted`, `date_departed`) VALUES (5, 7, '0', 'BUL', 'MED', 'Jeffrey', '4', '2018-03-17 04:05:12', '0', '1.39', '2017-10-25 00:55:34', '2018-02-27 11:54:35', '2018-03-25 04:50:22'); +INSERT INTO Dogs (`dog_id`, `owner_id`, `abandoned_yn`, `breed_code`, `size_code`, `name`, `age`, `date_of_birth`, `gender`, `weight`, `date_arrived`, `date_adopted`, `date_departed`) VALUES (6, 5, '0', 'HUS', 'MED', 'Merritt', '9', '2015-02-26 21:31:22', '1', '9.8', '2017-04-15 09:25:31', '2018-03-08 15:03:00', '2018-03-25 13:07:04'); +INSERT INTO Dogs (`dog_id`, `owner_id`, `abandoned_yn`, `breed_code`, `size_code`, `name`, `age`, `date_of_birth`, `gender`, `weight`, `date_arrived`, `date_adopted`, `date_departed`) VALUES (7, 3, '0', 'BUL', 'MED', 'Narciso', '2', '2017-09-19 05:39:09', '1', '9.48', '2017-05-06 08:03:52', '2018-02-27 00:27:57', '2018-03-25 06:29:10'); +INSERT INTO Dogs (`dog_id`, `owner_id`, `abandoned_yn`, `breed_code`, `size_code`, `name`, `age`, `date_of_birth`, `gender`, `weight`, `date_arrived`, `date_adopted`, `date_departed`) VALUES (8, 14, '0', 'ESK', 'SML', 'George', '2', '2013-02-20 14:50:56', '0', '8.95', '2017-10-16 20:06:21', '2018-03-23 16:02:04', '2018-03-25 02:47:40'); +INSERT INTO Dogs (`dog_id`, `owner_id`, `abandoned_yn`, `breed_code`, `size_code`, `name`, `age`, `date_of_birth`, `gender`, `weight`, `date_arrived`, `date_adopted`, `date_departed`) VALUES (9, 2, '0', 'BUL', 'MED', 'Bessie', '4', '2012-05-31 08:01:36', '1', '3.52', '2018-01-17 11:44:16', '2018-02-25 23:45:30', '2018-03-25 06:46:07'); +INSERT INTO Dogs (`dog_id`, `owner_id`, `abandoned_yn`, `breed_code`, `size_code`, `name`, `age`, `date_of_birth`, `gender`, `weight`, `date_arrived`, `date_adopted`, `date_departed`) VALUES (10, 6, '0', 'HUS', 'MED', 'Troy', '9', '2012-07-11 17:15:10', '0', '8.96', '2017-12-29 06:08:26', '2018-03-18 07:47:40', '2018-03-25 04:42:14'); +INSERT INTO Dogs (`dog_id`, `owner_id`, `abandoned_yn`, `breed_code`, `size_code`, `name`, `age`, `date_of_birth`, `gender`, `weight`, `date_arrived`, `date_adopted`, `date_departed`) VALUES (11, 13, '0', 'BUL', 'LGE', 'Betty', '3', '2012-10-14 14:44:37', '0', '8.16', '2017-07-25 15:19:07', '2018-03-14 08:05:18', '2018-03-25 15:05:16'); +INSERT INTO Dogs (`dog_id`, `owner_id`, `abandoned_yn`, `breed_code`, `size_code`, `name`, `age`, `date_of_birth`, `gender`, `weight`, `date_arrived`, `date_adopted`, `date_departed`) VALUES (12, 12, '0', 'HUS', 'MED', 'Holden', '8', '2009-04-12 06:02:48', '0', '6.92', '2017-10-24 04:45:13', '2018-03-05 06:05:23', '2018-03-25 14:15:41'); +INSERT INTO Dogs (`dog_id`, `owner_id`, `abandoned_yn`, `breed_code`, `size_code`, `name`, `age`, `date_of_birth`, `gender`, `weight`, `date_arrived`, `date_adopted`, `date_departed`) VALUES (13, 8, '0', 'HUS', 'SML', 'Jesus', '2', '2012-05-03 21:42:25', '0', '5.16', '2018-01-02 03:15:29', '2018-03-21 10:41:18', '2018-03-25 05:07:47'); +INSERT INTO Dogs (`dog_id`, `owner_id`, `abandoned_yn`, `breed_code`, `size_code`, `name`, `age`, `date_of_birth`, `gender`, `weight`, `date_arrived`, `date_adopted`, `date_departed`) VALUES (14, 14, '1', 'ESK', 'MED', 'Lyric', '4', '2010-11-11 07:11:53', '0', '4.36', '2017-06-18 19:45:38', '2018-03-13 12:47:15', '2018-03-24 23:48:59'); +INSERT INTO Dogs (`dog_id`, `owner_id`, `abandoned_yn`, `breed_code`, `size_code`, `name`, `age`, `date_of_birth`, `gender`, `weight`, `date_arrived`, `date_adopted`, `date_departed`) VALUES (15, 10, '1', 'BUL', 'MED', 'Evangeline', '1', '2008-05-30 12:51:34', '1', '4.01', '2017-12-29 23:24:13', '2018-03-10 15:06:43', '2018-03-24 19:36:59'); + + +CREATE TABLE `Professionals` ( +`professional_id` INTEGER PRIMARY KEY , +`role_code` VARCHAR(10) NOT NULL, +`first_name` VARCHAR(50), +`street` VARCHAR(50), +`city` VARCHAR(50), +`state` VARCHAR(20), +`zip_code` VARCHAR(20), +`last_name` VARCHAR(50), +`email_address` VARCHAR(50), +`home_phone` VARCHAR(20), +`cell_number` VARCHAR(20) +); + +CREATE TABLE `Treatments` ( +`treatment_id` INTEGER PRIMARY KEY , +`dog_id` INTEGER NOT NULL, +`professional_id` INTEGER NOT NULL, +`treatment_type_code` VARCHAR(10) NOT NULL, +`date_of_treatment` DATETIME, +`cost_of_treatment` DECIMAL(19,4), +FOREIGN KEY (`treatment_type_code` ) REFERENCES `Treatment_Types`(`treatment_type_code` ), +FOREIGN KEY (`professional_id` ) REFERENCES `Professionals`(`professional_id` ), +FOREIGN KEY (`dog_id` ) REFERENCES `Dogs`(`dog_id` ) +); + +INSERT INTO Professionals (`professional_id`, `role_code`, `first_name`, `street`, `city`, `state`, `zip_code`, `last_name`, `email_address`, `home_phone`, `cell_number`) VALUES (1, 'Employee', 'Taryn', '6915 Oberbrunner Point Suite 491 +Gleasonville, LA ', 'West Heidi', 'Indiana', '06646', 'Braun', 'deanna.schuster@example.com', '+71(6)2898266914', '(275)939-2435x80863'); +INSERT INTO Professionals (`professional_id`, `role_code`, `first_name`, `street`, `city`, `state`, `zip_code`, `last_name`, `email_address`, `home_phone`, `cell_number`) VALUES (2, 'Employee', 'Jayson', '88665 Terence Lodge Apt. 904 +Corneliusfort, NC 194', 'North Odellfurt', 'Connecticut', '43129', 'Ullrich', 'lucile.shanahan@example.org', '+02(1)0259033559', '889-940-2676'); +INSERT INTO Professionals (`professional_id`, `role_code`, `first_name`, `street`, `city`, `state`, `zip_code`, `last_name`, `email_address`, `home_phone`, `cell_number`) VALUES (3, 'Employee', 'Olaf', '68589 Bradly Manor +New Audrey, IN 91497', 'Jaceton', 'Wisconsin', '77129', 'Watsica', 'uboehm@example.org', '325-155-0801x7005', '(369)908-7311x065'); +INSERT INTO Professionals (`professional_id`, `role_code`, `first_name`, `street`, `city`, `state`, `zip_code`, `last_name`, `email_address`, `home_phone`, `cell_number`) VALUES (4, 'Veterenarian', 'Vernice', '72532 Hane Course +Lake Berylland, ND 95283', 'Domenickton', 'Mississippi', '02281', 'Tillman', 'lourdes.lowe@example.net', '312.216.3352', '00230569697'); +INSERT INTO Professionals (`professional_id`, `role_code`, `first_name`, `street`, `city`, `state`, `zip_code`, `last_name`, `email_address`, `home_phone`, `cell_number`) VALUES (5, 'Veterenarian', 'Danny', '188 VonRueden Tunnel Suite 630 +North Macibury, NV ', 'New Laurytown', 'Hawaii', '84515', 'Considine', 'mekhi.little@example.org', '1-609-566-2752x25197', '011.193.9081x3186'); +INSERT INTO Professionals (`professional_id`, `role_code`, `first_name`, `street`, `city`, `state`, `zip_code`, `last_name`, `email_address`, `home_phone`, `cell_number`) VALUES (6, 'Veterenarian', 'Ruben', '17286 Waters Green +East Bernadinefort, CA 89573', 'Baileymouth', 'NewMexico', '52476', 'O''Reilly', 'jacynthe.mclaughlin@example.net', '+43(5)1132733868', '139-321-7313'); +INSERT INTO Professionals (`professional_id`, `role_code`, `first_name`, `street`, `city`, `state`, `zip_code`, `last_name`, `email_address`, `home_phone`, `cell_number`) VALUES (7, 'Veterenarian', 'Velva', '44234 Marvin Shoals Suite 659 +North Frances, AL 23', 'McLaughlinfort', 'NorthCarolina', '67980', 'Hayes', 'lambert62@example.org', '022.529.0550x1319', '499-434-0215x1628'); +INSERT INTO Professionals (`professional_id`, `role_code`, `first_name`, `street`, `city`, `state`, `zip_code`, `last_name`, `email_address`, `home_phone`, `cell_number`) VALUES (8, 'Employee', 'Karley', '36895 Eli Ferry +Port Marcelle, FL 45712', 'Kirastad', 'Indiana', '33020', 'Hyatt', 'goyette.roosevelt@example.net', '891.475.2256', '328.842.3792'); +INSERT INTO Professionals (`professional_id`, `role_code`, `first_name`, `street`, `city`, `state`, `zip_code`, `last_name`, `email_address`, `home_phone`, `cell_number`) VALUES (9, 'Veterenarian', 'Monte', '07073 Brenna Ways Suite 089 +Lowehaven, KY 93275-96', 'South Rockyport', 'SouthCarolina', '80775', 'Kshlerin', 'schneider.kathryne@example.org', '320-508-6023', '962-983-8109x3509'); +INSERT INTO Professionals (`professional_id`, `role_code`, `first_name`, `street`, `city`, `state`, `zip_code`, `last_name`, `email_address`, `home_phone`, `cell_number`) VALUES (10, 'Employee', 'Domenica', '7284 Torphy Flats Apt. 610 +Diannaburgh, SC 78560', 'New Maryjane', 'California', '54312', 'Jacobs', 'jerrod.bahringer@example.org', '(230)338-3342x585', '461-801-2600'); +INSERT INTO Professionals (`professional_id`, `role_code`, `first_name`, `street`, `city`, `state`, `zip_code`, `last_name`, `email_address`, `home_phone`, `cell_number`) VALUES (11, 'Employee', 'Brady', '09615 McKenzie Stravenue Apt. 128 +West Elliottview', 'Raynorfort', 'Alabama', '07412', 'Pouros', 'west.eula@example.net', '(920)304-4499x59146', '609-405-2990'); +INSERT INTO Professionals (`professional_id`, `role_code`, `first_name`, `street`, `city`, `state`, `zip_code`, `last_name`, `email_address`, `home_phone`, `cell_number`) VALUES (12, 'Veterenarian', 'Winfield', '92912 Langworth Valleys Apt. 743 +Thompsonborough, ', 'Juddton', 'Utah', '34041', 'Christiansen', 'marquardt.furman@example.org', '246-951-0080x76716', '1-181-670-9466'); +INSERT INTO Professionals (`professional_id`, `role_code`, `first_name`, `street`, `city`, `state`, `zip_code`, `last_name`, `email_address`, `home_phone`, `cell_number`) VALUES (13, 'Veterenarian', 'Ericka', '7783 Abraham Alley +Port Madelynhaven, KY 59172-273', 'Borisside', 'Wyoming', '17902', 'Murazik', 'delphine29@example.com', '346.594.3739', '880-659-7577x736'); +INSERT INTO Professionals (`professional_id`, `role_code`, `first_name`, `street`, `city`, `state`, `zip_code`, `last_name`, `email_address`, `home_phone`, `cell_number`) VALUES (14, 'Employee', 'Sigurd', '390 Bryce Drive +North Dock, LA 65357-7228', 'East Ila', 'Connecticut', '41215', 'Frami', 'cole.margarita@example.org', '971.048.3763x9404', '1-185-137-1945x409'); +INSERT INTO Professionals (`professional_id`, `role_code`, `first_name`, `street`, `city`, `state`, `zip_code`, `last_name`, `email_address`, `home_phone`, `cell_number`) VALUES (15, 'Employee', 'Lesly', '63949 Keeling Landing Apt. 502 +Johnsview, SD 06780', 'North Adelberttown', 'Montana', '98844', 'Walter', 'jeichmann@example.com', '1-138-287-3775', '1-258-285-4707x8020'); +INSERT INTO Treatments (`treatment_id`, `dog_id`, `professional_id`, `treatment_type_code`, `date_of_treatment`, `cost_of_treatment`) VALUES (1, 14, 9, 'WALK', '2018-03-19 04:39:54', '567.0000'); +INSERT INTO Treatments (`treatment_id`, `dog_id`, `professional_id`, `treatment_type_code`, `date_of_treatment`, `cost_of_treatment`) VALUES (2, 4, 10, 'VAC', '2018-03-15 20:25:34', '147.0000'); +INSERT INTO Treatments (`treatment_id`, `dog_id`, `professional_id`, `treatment_type_code`, `date_of_treatment`, `cost_of_treatment`) VALUES (3, 14, 4, 'EXAM', '2018-03-08 05:26:23', '429.0000'); +INSERT INTO Treatments (`treatment_id`, `dog_id`, `professional_id`, `treatment_type_code`, `date_of_treatment`, `cost_of_treatment`) VALUES (4, 2, 8, 'VAC', '2018-03-01 04:14:46', '266.0000'); +INSERT INTO Treatments (`treatment_id`, `dog_id`, `professional_id`, `treatment_type_code`, `date_of_treatment`, `cost_of_treatment`) VALUES (5, 12, 14, 'VAC', '2018-03-23 13:52:10', '668.0000'); +INSERT INTO Treatments (`treatment_id`, `dog_id`, `professional_id`, `treatment_type_code`, `date_of_treatment`, `cost_of_treatment`) VALUES (6, 10, 4, 'EXAM', '2018-03-11 04:23:15', '313.0000'); +INSERT INTO Treatments (`treatment_id`, `dog_id`, `professional_id`, `treatment_type_code`, `date_of_treatment`, `cost_of_treatment`) VALUES (7, 15, 14, 'EXAM', '2018-03-10 11:45:58', '852.0000'); +INSERT INTO Treatments (`treatment_id`, `dog_id`, `professional_id`, `treatment_type_code`, `date_of_treatment`, `cost_of_treatment`) VALUES (8, 2, 6, 'EXAM', '2018-03-24 22:25:58', '407.0000'); +INSERT INTO Treatments (`treatment_id`, `dog_id`, `professional_id`, `treatment_type_code`, `date_of_treatment`, `cost_of_treatment`) VALUES (9, 14, 10, 'WALK', '2018-03-14 19:10:40', '139.0000'); +INSERT INTO Treatments (`treatment_id`, `dog_id`, `professional_id`, `treatment_type_code`, `date_of_treatment`, `cost_of_treatment`) VALUES (10, 10, 7, 'WALK', '2018-02-28 17:09:43', '681.0000'); +INSERT INTO Treatments (`treatment_id`, `dog_id`, `professional_id`, `treatment_type_code`, `date_of_treatment`, `cost_of_treatment`) VALUES (11, 15, 5, 'VAC', '2018-03-13 12:22:58', '514.0000'); +INSERT INTO Treatments (`treatment_id`, `dog_id`, `professional_id`, `treatment_type_code`, `date_of_treatment`, `cost_of_treatment`) VALUES (12, 13, 9, 'EXAM', '2018-03-16 10:27:36', '428.0000'); +INSERT INTO Treatments (`treatment_id`, `dog_id`, `professional_id`, `treatment_type_code`, `date_of_treatment`, `cost_of_treatment`) VALUES (13, 7, 8, 'VAC', '2018-02-26 09:08:53', '945.0000'); +INSERT INTO Treatments (`treatment_id`, `dog_id`, `professional_id`, `treatment_type_code`, `date_of_treatment`, `cost_of_treatment`) VALUES (14, 10, 9, 'WALK', '2018-03-04 20:33:43', '349.0000'); +INSERT INTO Treatments (`treatment_id`, `dog_id`, `professional_id`, `treatment_type_code`, `date_of_treatment`, `cost_of_treatment`) VALUES (15, 1, 6, 'WALK', '2018-03-15 19:10:02', '656.0000'); diff --git a/database/dorm_1/dorm_1.sqlite b/database/dorm_1/dorm_1.sqlite new file mode 100644 index 0000000000000000000000000000000000000000..cf579a590332b0a02afb56b9eae5ebc4457c4836 Binary files /dev/null and b/database/dorm_1/dorm_1.sqlite differ diff --git a/database/dorm_1/schema.sql b/database/dorm_1/schema.sql new file mode 100644 index 0000000000000000000000000000000000000000..f6222fcbefc7d78fabadc67f30710cf68e110207 --- /dev/null +++ b/database/dorm_1/schema.sql @@ -0,0 +1,172 @@ + +create table Student ( + StuID INTEGER PRIMARY KEY, + LName VARCHAR(12), + Fname VARCHAR(12), + Age INTEGER, + Sex VARCHAR(1), + Major INTEGER, + Advisor INTEGER, + city_code VARCHAR(3) + ); + + +create table Dorm ( + dormid INTEGER, + dorm_name VARCHAR(20), + student_capacity INTEGER, + gender VARCHAR(1) +) ; + +create table Dorm_amenity ( + amenid INTEGER, + amenity_name VARCHAR(25) +) ; + +create table Has_amenity ( + dormid INTEGER, + amenid INTEGER, + FOREIGN KEY (dormid) REFERENCES `Dorm`(dormid), + FOREIGN KEY (amenid) REFERENCES `Dorm_amenity`(amenid) +); + +create table Lives_in ( + stuid INTEGER, + dormid INTEGER, + room_number INTEGER, + FOREIGN KEY (stuid) REFERENCES `Student`(StuID), + FOREIGN KEY (dormid) REFERENCES `Dorm`(dormid) +); + +insert into Student values ( 1001, 'Smith', 'Linda', 18, 'F', 600, 1121,'BAL'); + insert into Student values ( 1002, 'Kim', 'Tracy', 19, 'F', 600, 7712,'HKG'); + insert into Student values ( 1003, 'Jones', 'Shiela', 21, 'F', 600, 7792,'WAS'); + insert into Student values ( 1004, 'Kumar', 'Dinesh', 20, 'M', 600, 8423,'CHI'); + insert into Student values ( 1005, 'Gompers', 'Paul', 26, 'M', 600, 1121,'YYZ'); + insert into Student values ( 1006, 'Schultz', 'Andy', 18, 'M', 600, 1148,'BAL'); + insert into Student values ( 1007, 'Apap', 'Lisa', 18, 'F', 600, 8918,'PIT'); + insert into Student values ( 1008, 'Nelson', 'Jandy', 20, 'F', 600, 9172,'BAL'); + insert into Student values ( 1009, 'Tai', 'Eric', 19, 'M', 600, 2192,'YYZ'); + insert into Student values ( 1010, 'Lee', 'Derek', 17, 'M', 600, 2192,'HOU'); + insert into Student values ( 1011, 'Adams', 'David', 22, 'M', 600, 1148,'PHL'); + insert into Student values ( 1012, 'Davis', 'Steven', 20, 'M', 600, 7723,'PIT'); + insert into Student values ( 1014, 'Norris', 'Charles', 18, 'M', 600, 8741, 'DAL'); + insert into Student values ( 1015, 'Lee', 'Susan', 16, 'F', 600, 8721,'HKG'); + insert into Student values ( 1016, 'Schwartz', 'Mark', 17, 'M', 600, 2192,'DET'); + insert into Student values ( 1017, 'Wilson', 'Bruce', 27, 'M', 600, 1148,'LON'); + insert into Student values ( 1018, 'Leighton', 'Michael', 20, 'M', 600, 1121, 'PIT'); + insert into Student values ( 1019, 'Pang', 'Arthur', 18, 'M', 600, 2192,'WAS'); + insert into Student values ( 1020, 'Thornton', 'Ian', 22, 'M', 520, 7271,'NYC'); + insert into Student values ( 1021, 'Andreou', 'George', 19, 'M', 520, 8722, 'NYC'); + insert into Student values ( 1022, 'Woods', 'Michael', 17, 'M', 540, 8722,'PHL'); + insert into Student values ( 1023, 'Shieber', 'David', 20, 'M', 520, 8722,'NYC'); + insert into Student values ( 1024, 'Prater', 'Stacy', 18, 'F', 540, 7271,'BAL'); + insert into Student values ( 1025, 'Goldman', 'Mark', 18, 'M', 520, 7134,'PIT'); + insert into Student values ( 1026, 'Pang', 'Eric', 19, 'M', 520, 7134,'HKG'); + insert into Student values ( 1027, 'Brody', 'Paul', 18, 'M', 520, 8723,'LOS'); + insert into Student values ( 1028, 'Rugh', 'Eric', 20, 'M', 550, 2311,'ROC'); + insert into Student values ( 1029, 'Han', 'Jun', 17, 'M', 100, 2311,'PEK'); + insert into Student values ( 1030, 'Cheng', 'Lisa', 21, 'F', 550, 2311,'SFO'); + insert into Student values ( 1031, 'Smith', 'Sarah', 20, 'F', 550, 8772,'PHL'); + insert into Student values ( 1032, 'Brown', 'Eric', 20, 'M', 550, 8772,'ATL'); + insert into Student values ( 1033, 'Simms', 'William', 18, 'M', 550, 8772,'NAR'); + insert into Student values ( 1034, 'Epp', 'Eric', 18, 'M', 050, 5718,'BOS'); + insert into Student values ( 1035, 'Schmidt', 'Sarah', 26, 'F', 050, 5718,'WAS'); + +insert into Dorm values (100,'Smith Hall',85,'X'); +insert into Dorm values (110,'Bud Jones Hall',116,'M'); +insert into Dorm values (140,'Fawlty Towers',355,'X'); +insert into Dorm values (160,'Dorm-plex 2000',400,'X'); +insert into Dorm values (109,'Anonymous Donor Hall',128,'F'); +insert into Dorm values (117,'University Hovels',40,'X'); +insert into Dorm values (104,'Grad Student Asylum',256,'X'); + + +insert into Dorm_amenity values ( 900 , 'TV Lounge' ) ; +insert into Dorm_amenity values ( 901 , 'Study Room' ) ; +insert into Dorm_amenity values ( 902 , 'Pub in Basement' ) ; +insert into Dorm_amenity values ( 903 , 'Carpeted Rooms' ) ; +insert into Dorm_amenity values ( 904 , '4 Walls' ) ; +insert into Dorm_amenity values ( 930 , 'Roof' ) ; +insert into Dorm_amenity values ( 931 , 'Ethernet Ports' ) ; +insert into Dorm_amenity values ( 932 , 'Air Conditioning' ) ; +insert into Dorm_amenity values ( 922 , 'Heat' ) ; +insert into Dorm_amenity values ( 950 , 'Working Fireplaces' ) ; +insert into Dorm_amenity values ( 955 , 'Kitchen in Every Room' ) ; +insert into Dorm_amenity values ( 909 , 'Allows Pets' ) ; + + +insert into Has_amenity values ( 109 , 900) ; +insert into Has_amenity values ( 109 , 901) ; +insert into Has_amenity values ( 109 , 903) ; +insert into Has_amenity values ( 109 , 904 ) ; +insert into Has_amenity values ( 109 , 930 ) ; +insert into Has_amenity values ( 109 , 931) ; +insert into Has_amenity values ( 109 , 932) ; +insert into Has_amenity values ( 109 , 922) ; +insert into Has_amenity values ( 104 , 901) ; +insert into Has_amenity values ( 104 , 904) ; +insert into Has_amenity values ( 104 , 930 ) ; +insert into Has_amenity values ( 160 , 900 ) ; +insert into Has_amenity values ( 160 , 901 ) ; +insert into Has_amenity values ( 160 , 902 ) ; +insert into Has_amenity values ( 160 , 903 ) ; +insert into Has_amenity values ( 160 , 931 ) ; +insert into Has_amenity values ( 160 , 904) ; +insert into Has_amenity values ( 160 , 930 ) ; +insert into Has_amenity values ( 160 , 922 ) ; +insert into Has_amenity values ( 160 , 932 ) ; +insert into Has_amenity values ( 160 , 950 ) ; +insert into Has_amenity values ( 160 , 955 ) ; +insert into Has_amenity values ( 160 , 909 ) ; +insert into Has_amenity values ( 100 , 901) ; +insert into Has_amenity values ( 100 , 903) ; +insert into Has_amenity values ( 100 , 904) ; +insert into Has_amenity values ( 100 , 930 ) ; +insert into Has_amenity values ( 100 , 922 ) ; +insert into Has_amenity values ( 117 , 930 ) ; +insert into Has_amenity values ( 110 , 901) ; +insert into Has_amenity values ( 110 , 903) ; +insert into Has_amenity values ( 110 , 904) ; +insert into Has_amenity values ( 110 , 930 ) ; +insert into Has_amenity values ( 110 , 922 ) ; +insert into Has_amenity values ( 140 , 909 ) ; +insert into Has_amenity values ( 140 , 900) ; +insert into Has_amenity values ( 140 , 902) ; +insert into Has_amenity values ( 140 , 904) ; +insert into Has_amenity values ( 140 , 930 ) ; +insert into Has_amenity values ( 140 , 932 ) ; + + +insert into Lives_in values ( 1001 , 109 , 105 ) ; +insert into Lives_in values ( 1002 , 100 , 112 ) ; +insert into Lives_in values ( 1003 , 100 , 124 ) ; +insert into Lives_in values ( 1004 , 140 , 215 ) ; +insert into Lives_in values ( 1005 , 160 , 333 ) ; +insert into Lives_in values ( 1007 , 140 , 113 ) ; +insert into Lives_in values ( 1008 , 160 , 334 ) ; +insert into Lives_in values ( 1009 , 140 , 332 ) ; +insert into Lives_in values ( 1010 , 160 , 443 ) ; +insert into Lives_in values ( 1011 , 140 , 102 ) ; +insert into Lives_in values ( 1012 , 160 , 333 ) ; +insert into Lives_in values ( 1014 , 104 , 211 ) ; +insert into Lives_in values ( 1015 , 160 , 443 ) ; +insert into Lives_in values ( 1016 , 140 , 301 ) ; +insert into Lives_in values ( 1017 , 140 , 319 ) ; +insert into Lives_in values ( 1018 , 140 , 225 ) ; +insert into Lives_in values ( 1020 , 160 , 405 ) ; +insert into Lives_in values ( 1021 , 160 , 405 ) ; +insert into Lives_in values ( 1022 , 100 , 153 ) ; +insert into Lives_in values ( 1023 , 160 , 317 ) ; +insert into Lives_in values ( 1024 , 100 , 151 ) ; +insert into Lives_in values ( 1025 , 160 , 317 ) ; +insert into Lives_in values ( 1027 , 140 , 208 ) ; +insert into Lives_in values ( 1028 , 110 , 48 ) ; +insert into Lives_in values ( 1029 , 140 , 418 ) ; +insert into Lives_in values ( 1030 , 109 , 211 ) ; +insert into Lives_in values ( 1031 , 100 , 112 ) ; +insert into Lives_in values ( 1032 , 109 , 105 ) ; +insert into Lives_in values ( 1033 , 117 , 3 ) ; +insert into Lives_in values ( 1034 , 160 , 105 ) ; +insert into Lives_in values ( 1035 , 100 , 124 ) ; + diff --git a/database/driving_school/driving_school.sqlite b/database/driving_school/driving_school.sqlite new file mode 100644 index 0000000000000000000000000000000000000000..72ae5177fe45d7a1213c10ac7890dc00b975ea64 Binary files /dev/null and b/database/driving_school/driving_school.sqlite differ diff --git a/database/driving_school/schema.sql b/database/driving_school/schema.sql new file mode 100644 index 0000000000000000000000000000000000000000..859c7ffcd48c94564effa04381f8bd2e177998e3 --- /dev/null +++ b/database/driving_school/schema.sql @@ -0,0 +1,148 @@ +PRAGMA foreign_keys = ON; + +CREATE TABLE `Addresses` ( +`address_id` INTEGER PRIMARY KEY, +`line_1_number_building` VARCHAR(80), +`city` VARCHAR(50), +`zip_postcode` VARCHAR(20), +`state_province_county` VARCHAR(50), +`country` VARCHAR(50) +); + + +INSERT INTO Addresses (`address_id`, `line_1_number_building`, `city`, `zip_postcode`, `state_province_county`, `country`) VALUES (1, '3904 Stroman Passage', 'Port Melyssa', '14445', 'Georgia', 'USA'); +INSERT INTO Addresses (`address_id`, `line_1_number_building`, `city`, `zip_postcode`, `state_province_county`, `country`) VALUES (2, '053 Quigley Island', 'Hagenesfurt', '22194', 'Kentucky', 'USA'); +INSERT INTO Addresses (`address_id`, `line_1_number_building`, `city`, `zip_postcode`, `state_province_county`, `country`) VALUES (3, '00704 Zoe Alley', 'Lake Elaina', '08938', 'Georgia', 'USA'); +INSERT INTO Addresses (`address_id`, `line_1_number_building`, `city`, `zip_postcode`, `state_province_county`, `country`) VALUES (4, '484 O''Hara Drive', 'Buckridgehaven', '00005', 'Oregon', 'USA'); +INSERT INTO Addresses (`address_id`, `line_1_number_building`, `city`, `zip_postcode`, `state_province_county`, `country`) VALUES (5, '354 Frederik Ridge', 'Powlowskichester', '27559', 'Ohio', 'USA'); +INSERT INTO Addresses (`address_id`, `line_1_number_building`, `city`, `zip_postcode`, `state_province_county`, `country`) VALUES (6, '376 Kallie Tunnel Apt. 784', 'Elviebury', '63768', 'Connecticut', 'USA'); +INSERT INTO Addresses (`address_id`, `line_1_number_building`, `city`, `zip_postcode`, `state_province_county`, `country`) VALUES (7, '56461 Baumbach Well Suite 634', 'Lockmanfurt', '34975', 'Washington', 'USA'); +INSERT INTO Addresses (`address_id`, `line_1_number_building`, `city`, `zip_postcode`, `state_province_county`, `country`) VALUES (8, '29085 Dejah Pine Suite 059', 'Lake Rafaela', '80376', 'WestVirginia', 'USA'); +INSERT INTO Addresses (`address_id`, `line_1_number_building`, `city`, `zip_postcode`, `state_province_county`, `country`) VALUES (9, '535 Ariel Brook', 'Port Jackelinemouth', '85954', 'Maine', 'USA'); +INSERT INTO Addresses (`address_id`, `line_1_number_building`, `city`, `zip_postcode`, `state_province_county`, `country`) VALUES (10, '2291 Larkin Ports', 'South Richieport', '95098', 'Idaho', 'USA'); +INSERT INTO Addresses (`address_id`, `line_1_number_building`, `city`, `zip_postcode`, `state_province_county`, `country`) VALUES (11, '37698 Hahn Curve Apt. 572', 'South Eugene', '99903', 'Alabama', 'USA'); +INSERT INTO Addresses (`address_id`, `line_1_number_building`, `city`, `zip_postcode`, `state_province_county`, `country`) VALUES (12, '7089 Mueller Forks', 'New Bernieceburgh', '38197', 'Louisiana', 'USA'); +INSERT INTO Addresses (`address_id`, `line_1_number_building`, `city`, `zip_postcode`, `state_province_county`, `country`) VALUES (13, '43235 Jazmin Mountain Suite 251', 'Ericamouth', '75074', 'Louisiana', 'USA'); +INSERT INTO Addresses (`address_id`, `line_1_number_building`, `city`, `zip_postcode`, `state_province_county`, `country`) VALUES (14, '4834 Schaefer Light Suite 947', 'Damianfort', '61121', 'Connecticut', 'USA'); +INSERT INTO Addresses (`address_id`, `line_1_number_building`, `city`, `zip_postcode`, `state_province_county`, `country`) VALUES (15, '9260 Streich Mountain', 'West Edmondview', '43988', 'Kentucky', 'USA'); + +CREATE TABLE `Staff` ( +`staff_id` INTEGER PRIMARY KEY, +`staff_address_id` INTEGER NOT NULL, +`nickname` VARCHAR(80), +`first_name` VARCHAR(80), +`middle_name` VARCHAR(80), +`last_name` VARCHAR(80), +`date_of_birth` DATETIME, +`date_joined_staff` DATETIME, +`date_left_staff` DATETIME, +FOREIGN KEY (`staff_address_id` ) REFERENCES `Addresses`(`address_id` ) +); + +INSERT INTO Staff (`staff_id`, `staff_address_id`, `nickname`, `first_name`, `middle_name`, `last_name`, `date_of_birth`, `date_joined_staff`, `date_left_staff`) VALUES (1, 14, 'thompson.constantin', 'Janessa', 'Amara', 'Sawayn', '2010-12-08 16:55:14', '2017-04-27 03:21:26', '2018-03-23 22:53:12'); +INSERT INTO Staff (`staff_id`, `staff_address_id`, `nickname`, `first_name`, `middle_name`, `last_name`, `date_of_birth`, `date_joined_staff`, `date_left_staff`) VALUES (2, 3, 'santos45', 'Camylle', 'Icie', 'Weissnat', '2015-08-01 13:22:43', '2016-06-06 08:54:28', '2018-03-10 15:25:00'); +INSERT INTO Staff (`staff_id`, `staff_address_id`, `nickname`, `first_name`, `middle_name`, `last_name`, `date_of_birth`, `date_joined_staff`, `date_left_staff`) VALUES (3, 5, 'ynader', 'Kaitlin', 'Stephania', 'Mertz', '1994-05-17 05:32:11', '2018-01-02 12:24:24', '2018-03-24 10:11:08'); +INSERT INTO Staff (`staff_id`, `staff_address_id`, `nickname`, `first_name`, `middle_name`, `last_name`, `date_of_birth`, `date_joined_staff`, `date_left_staff`) VALUES (4, 1, 'lsenger', 'Rebekah', 'Sherwood', 'Hermann', '2003-01-16 06:29:11', '2017-10-21 17:20:57', '2018-03-04 17:13:53'); +INSERT INTO Staff (`staff_id`, `staff_address_id`, `nickname`, `first_name`, `middle_name`, `last_name`, `date_of_birth`, `date_joined_staff`, `date_left_staff`) VALUES (5, 14, 'ledner.jamie', 'Jedidiah', 'Dejon', 'Herzog', '2015-08-10 11:37:39', '2016-05-16 20:56:53', '2018-03-08 04:23:14'); +INSERT INTO Staff (`staff_id`, `staff_address_id`, `nickname`, `first_name`, `middle_name`, `last_name`, `date_of_birth`, `date_joined_staff`, `date_left_staff`) VALUES (6, 12, 'bogisich.geovany', 'Eulalia', 'Tre', 'Maggio', '1998-04-27 12:55:05', '2017-08-27 19:19:44', '2018-02-28 08:26:10'); +INSERT INTO Staff (`staff_id`, `staff_address_id`, `nickname`, `first_name`, `middle_name`, `last_name`, `date_of_birth`, `date_joined_staff`, `date_left_staff`) VALUES (7, 13, 'weldon.kling', 'Queenie', 'Madelyn', 'Macejkovic', '2007-06-11 20:03:28', '2017-06-04 14:30:41', '2018-03-08 05:16:29'); +INSERT INTO Staff (`staff_id`, `staff_address_id`, `nickname`, `first_name`, `middle_name`, `last_name`, `date_of_birth`, `date_joined_staff`, `date_left_staff`) VALUES (8, 1, 'gabe21', 'Titus', 'Duane', 'Durgan', '2005-05-02 06:23:36', '2016-05-26 00:55:07', '2018-03-05 18:30:12'); +INSERT INTO Staff (`staff_id`, `staff_address_id`, `nickname`, `first_name`, `middle_name`, `last_name`, `date_of_birth`, `date_joined_staff`, `date_left_staff`) VALUES (9, 4, 'ymiller', 'Margie', 'Caesar', 'Doyle', '1995-06-03 08:09:17', '2017-12-22 03:06:32', '2018-03-08 12:31:16'); +INSERT INTO Staff (`staff_id`, `staff_address_id`, `nickname`, `first_name`, `middle_name`, `last_name`, `date_of_birth`, `date_joined_staff`, `date_left_staff`) VALUES (10, 2, 'sbrown', 'Jaleel', 'Maiya', 'Rogahn', '1996-09-24 09:51:42', '2016-06-05 22:22:23', '2018-03-14 07:14:37'); +INSERT INTO Staff (`staff_id`, `staff_address_id`, `nickname`, `first_name`, `middle_name`, `last_name`, `date_of_birth`, `date_joined_staff`, `date_left_staff`) VALUES (11, 1, 'nicholaus92', 'Winnifred', 'Liam', 'Jast', '2000-06-13 18:09:11', '2016-05-01 02:22:45', '2018-03-09 05:08:35'); +INSERT INTO Staff (`staff_id`, `staff_address_id`, `nickname`, `first_name`, `middle_name`, `last_name`, `date_of_birth`, `date_joined_staff`, `date_left_staff`) VALUES (12, 7, 'edwin.hudson', 'Lincoln', 'Benny', 'Carroll', '1996-03-09 08:19:49', '2016-11-05 01:43:52', '2018-03-06 23:17:41'); +INSERT INTO Staff (`staff_id`, `staff_address_id`, `nickname`, `first_name`, `middle_name`, `last_name`, `date_of_birth`, `date_joined_staff`, `date_left_staff`) VALUES (13, 1, 'norma73', 'Ernestina', 'Clarabelle', 'Mraz', '2004-05-19 14:11:13', '2016-11-13 20:44:23', '2018-02-26 17:56:31'); +INSERT INTO Staff (`staff_id`, `staff_address_id`, `nickname`, `first_name`, `middle_name`, `last_name`, `date_of_birth`, `date_joined_staff`, `date_left_staff`) VALUES (14, 6, 'bkunze', 'Ludie', 'Ulices', 'Kuphal', '2000-11-16 06:55:12', '2017-08-30 15:08:37', '2018-03-02 01:48:15'); +INSERT INTO Staff (`staff_id`, `staff_address_id`, `nickname`, `first_name`, `middle_name`, `last_name`, `date_of_birth`, `date_joined_staff`, `date_left_staff`) VALUES (15, 3, 'weissnat.vincenzo', 'Simeon', 'Mayra', 'Turner', '1997-03-29 10:55:45', '2017-02-20 18:45:20', '2018-03-01 17:10:03'); + + +CREATE TABLE `Vehicles` ( +`vehicle_id` INTEGER PRIMARY KEY, +`vehicle_details` VARCHAR(255) +); +INSERT INTO Vehicles (`vehicle_id`, `vehicle_details`) VALUES (1, 'Van'); +INSERT INTO Vehicles (`vehicle_id`, `vehicle_details`) VALUES (2, 'Truck'); +INSERT INTO Vehicles (`vehicle_id`, `vehicle_details`) VALUES (3, 'Car'); + +CREATE TABLE `Customers` ( +`customer_id` INTEGER PRIMARY KEY, +`customer_address_id` INTEGER NOT NULL, +`customer_status_code` VARCHAR(15) NOT NULL, +`date_became_customer` DATETIME, +`date_of_birth` DATETIME, +`first_name` VARCHAR(80), +`last_name` VARCHAR(80), +`amount_outstanding` DOUBLE NULL, +`email_address` VARCHAR(250), +`phone_number` VARCHAR(255), +`cell_mobile_phone_number` VARCHAR(255), +FOREIGN KEY (`customer_address_id` ) REFERENCES `Addresses`(`address_id` ) +); +INSERT INTO Customers (`customer_id`, `customer_address_id`, `customer_status_code`, `date_became_customer`, `date_of_birth`, `first_name`, `last_name`, `amount_outstanding`, `email_address`, `phone_number`, `cell_mobile_phone_number`) VALUES (1, 13, 'Bad Customer', '2016-05-11 17:03:48', '1998-12-15 13:24:40', 'Carole', 'Bernhard', '255', 'everette.goyette@example.org', '07278206718', '861-638-9797'); +INSERT INTO Customers (`customer_id`, `customer_address_id`, `customer_status_code`, `date_became_customer`, `date_of_birth`, `first_name`, `last_name`, `amount_outstanding`, `email_address`, `phone_number`, `cell_mobile_phone_number`) VALUES (2, 10, 'Bad Customer', '2015-11-16 22:52:14', '1995-07-17 12:13:16', 'Genevieve', 'Terry', '7256', 'huel.jana@example.org', '+14(5)2351480248', '578-518-4785x612'); +INSERT INTO Customers (`customer_id`, `customer_address_id`, `customer_status_code`, `date_became_customer`, `date_of_birth`, `first_name`, `last_name`, `amount_outstanding`, `email_address`, `phone_number`, `cell_mobile_phone_number`) VALUES (3, 10, 'Good Customer', '2016-04-08 00:28:15', '1994-06-21 01:34:56', 'Clara', 'Ortiz', '9443', 'hilario.sporer@example.org', '374-483-2758x85087', '1-197-686-2849x8761'); +INSERT INTO Customers (`customer_id`, `customer_address_id`, `customer_status_code`, `date_became_customer`, `date_of_birth`, `first_name`, `last_name`, `amount_outstanding`, `email_address`, `phone_number`, `cell_mobile_phone_number`) VALUES (4, 8, 'Good Customer', '2016-07-22 15:53:44', '1993-02-07 05:40:26', 'Jordy', 'Tromp', '3751', 'afranecki@example.com', '218.550.1362', '081-097-3684'); +INSERT INTO Customers (`customer_id`, `customer_address_id`, `customer_status_code`, `date_became_customer`, `date_of_birth`, `first_name`, `last_name`, `amount_outstanding`, `email_address`, `phone_number`, `cell_mobile_phone_number`) VALUES (5, 2, 'Bad Customer', '2017-11-12 04:34:44', '1991-02-10 00:42:17', 'Millie', 'Bruen', '5687', 'asha.kilback@example.org', '1-618-535-9750', '00659133944'); +INSERT INTO Customers (`customer_id`, `customer_address_id`, `customer_status_code`, `date_became_customer`, `date_of_birth`, `first_name`, `last_name`, `amount_outstanding`, `email_address`, `phone_number`, `cell_mobile_phone_number`) VALUES (6, 9, 'Good Customer', '2017-04-16 05:12:21', '1993-03-08 08:48:42', 'Amya', 'Spinka', '3900', 'kozey.citlalli@example.org', '1-673-962-8158x7646', '(780)719-4206x033'); +INSERT INTO Customers (`customer_id`, `customer_address_id`, `customer_status_code`, `date_became_customer`, `date_of_birth`, `first_name`, `last_name`, `amount_outstanding`, `email_address`, `phone_number`, `cell_mobile_phone_number`) VALUES (7, 1, 'Bad Customer', '2015-06-24 03:50:04', '1996-11-07 05:30:55', 'Marina', 'Koelpin', '8144', 'mayert.judy@example.com', '(662)490-3108', '848-099-2095x785'); +INSERT INTO Customers (`customer_id`, `customer_address_id`, `customer_status_code`, `date_became_customer`, `date_of_birth`, `first_name`, `last_name`, `amount_outstanding`, `email_address`, `phone_number`, `cell_mobile_phone_number`) VALUES (8, 10, 'Bad Customer', '2017-10-05 14:15:46', '1998-09-18 04:45:01', 'Dianna', 'Trantow', '9500', 'kroberts@example.org', '206-054-0689x05861', '739-333-6966x187'); +INSERT INTO Customers (`customer_id`, `customer_address_id`, `customer_status_code`, `date_became_customer`, `date_of_birth`, `first_name`, `last_name`, `amount_outstanding`, `email_address`, `phone_number`, `cell_mobile_phone_number`) VALUES (9, 12, 'Bad Customer', '2016-02-17 08:26:23', '1991-12-05 02:50:15', 'Leif', 'Mertz', '7093', 'mariela28@example.org', '753.921.0871', '1-387-258-1016x96963'); +INSERT INTO Customers (`customer_id`, `customer_address_id`, `customer_status_code`, `date_became_customer`, `date_of_birth`, `first_name`, `last_name`, `amount_outstanding`, `email_address`, `phone_number`, `cell_mobile_phone_number`) VALUES (10, 1, 'Bad Customer', '2017-11-25 01:42:26', '1996-08-29 00:03:08', 'Rylan', 'Goodwin', '1000', 'nichole59@example.com', '1-387-884-0656', '+45(6)4872981083'); +INSERT INTO Customers (`customer_id`, `customer_address_id`, `customer_status_code`, `date_became_customer`, `date_of_birth`, `first_name`, `last_name`, `amount_outstanding`, `email_address`, `phone_number`, `cell_mobile_phone_number`) VALUES (11, 13, 'Good Customer', '2016-11-30 10:37:41', '1994-05-07 01:32:16', 'Ray', 'Kohler', '9447', 'karina.carroll@example.net', '(297)122-0086', '577-584-4864'); +INSERT INTO Customers (`customer_id`, `customer_address_id`, `customer_status_code`, `date_became_customer`, `date_of_birth`, `first_name`, `last_name`, `amount_outstanding`, `email_address`, `phone_number`, `cell_mobile_phone_number`) VALUES (12, 9, 'Bad Customer', '2016-05-13 07:38:23', '1993-07-09 11:11:36', 'Omer', 'Leuschke', '2099', 'myrl.lind@example.net', '417.136.2900x672', '200.830.8723'); +INSERT INTO Customers (`customer_id`, `customer_address_id`, `customer_status_code`, `date_became_customer`, `date_of_birth`, `first_name`, `last_name`, `amount_outstanding`, `email_address`, `phone_number`, `cell_mobile_phone_number`) VALUES (13, 7, 'Good Customer', '2016-09-04 23:08:20', '1988-09-19 14:45:56', 'Sigrid', 'Schmeler', '2255', 'wehner.harold@example.com', '192-395-2411', '+57(9)4602098297'); +INSERT INTO Customers (`customer_id`, `customer_address_id`, `customer_status_code`, `date_became_customer`, `date_of_birth`, `first_name`, `last_name`, `amount_outstanding`, `email_address`, `phone_number`, `cell_mobile_phone_number`) VALUES (14, 10, 'Good Customer', '2016-03-18 06:14:18', '1996-05-23 01:21:54', 'Estelle', 'Grant', '5494', 'ehowell@example.com', '1-875-045-0806', '1-401-108-8016x078'); +INSERT INTO Customers (`customer_id`, `customer_address_id`, `customer_status_code`, `date_became_customer`, `date_of_birth`, `first_name`, `last_name`, `amount_outstanding`, `email_address`, `phone_number`, `cell_mobile_phone_number`) VALUES (15, 1, 'Bad Customer', '2015-09-25 13:59:21', '1996-08-30 06:17:50', 'Dameon', 'Sanford', '9332', 'kitty.hand@example.net', '(729)396-4354x3576', '(630)964-2426'); + + +CREATE TABLE `Customer_Payments` ( +`customer_id` INTEGER NOT NULL, +`datetime_payment` DATETIME NOT NULL, +`payment_method_code` VARCHAR(10) NOT NULL, +`amount_payment` DOUBLE NULL, +PRIMARY KEY (`customer_id`,`datetime_payment`), +FOREIGN KEY (`customer_id` ) REFERENCES `Customers`(`customer_id` ) +); +CREATE TABLE `Lessons` ( +`lesson_id` INTEGER PRIMARY KEY, +`customer_id` INTEGER NOT NULL, +`lesson_status_code` VARCHAR(15) NOT NULL, +`staff_id` INTEGER, +`vehicle_id` INTEGER NOT NULL, +`lesson_date` DATETIME, +`lesson_time` VARCHAR(10), +`price` DOUBLE NULL, +FOREIGN KEY (`vehicle_id` ) REFERENCES `Vehicles`(`vehicle_id` ), +FOREIGN KEY (`staff_id` ) REFERENCES `Staff`(`staff_id` ), +FOREIGN KEY (`customer_id` ) REFERENCES `Customers`(`customer_id` ) +); +INSERT INTO Customer_Payments (`customer_id`, `datetime_payment`, `payment_method_code`, `amount_payment`) VALUES (11, '2018-02-05 18:44:46', 'Direct Debit', '9570.93'); +INSERT INTO Customer_Payments (`customer_id`, `datetime_payment`, `payment_method_code`, `amount_payment`) VALUES (2, '2018-02-24 10:07:05', 'Direct Debit', '8180.26'); +INSERT INTO Customer_Payments (`customer_id`, `datetime_payment`, `payment_method_code`, `amount_payment`) VALUES (14, '2018-02-27 20:08:53', 'Direct Debit', '4610.26'); +INSERT INTO Customer_Payments (`customer_id`, `datetime_payment`, `payment_method_code`, `amount_payment`) VALUES (6, '2018-03-12 08:41:47', 'Direct Debit', '4032.33'); +INSERT INTO Customer_Payments (`customer_id`, `datetime_payment`, `payment_method_code`, `amount_payment`) VALUES (3, '2018-02-06 13:35:58', 'Credit Card', '787.12'); +INSERT INTO Customer_Payments (`customer_id`, `datetime_payment`, `payment_method_code`, `amount_payment`) VALUES (14, '2018-03-12 13:31:36', 'Credit Card', '6970.98'); +INSERT INTO Customer_Payments (`customer_id`, `datetime_payment`, `payment_method_code`, `amount_payment`) VALUES (4, '2018-02-03 15:04:36', 'Direct Debit', '6311.37'); +INSERT INTO Customer_Payments (`customer_id`, `datetime_payment`, `payment_method_code`, `amount_payment`) VALUES (7, '2018-02-15 16:38:49', 'Direct Debit', '4773.16'); +INSERT INTO Customer_Payments (`customer_id`, `datetime_payment`, `payment_method_code`, `amount_payment`) VALUES (13, '2018-02-21 05:28:49', 'Credit Card', '7440.34'); +INSERT INTO Customer_Payments (`customer_id`, `datetime_payment`, `payment_method_code`, `amount_payment`) VALUES (6, '2018-02-19 09:06:29', 'Direct Debit', '5475.26'); +INSERT INTO Customer_Payments (`customer_id`, `datetime_payment`, `payment_method_code`, `amount_payment`) VALUES (2, '2018-03-20 21:38:41', 'Direct Debit', '1708.18'); +INSERT INTO Customer_Payments (`customer_id`, `datetime_payment`, `payment_method_code`, `amount_payment`) VALUES (10, '2018-02-01 06:15:31', 'Direct Debit', '6782.84'); +INSERT INTO Customer_Payments (`customer_id`, `datetime_payment`, `payment_method_code`, `amount_payment`) VALUES (1, '2018-03-18 13:48:13', 'Direct Debit', '9886.62'); +INSERT INTO Customer_Payments (`customer_id`, `datetime_payment`, `payment_method_code`, `amount_payment`) VALUES (14, '2018-02-19 01:49:59', 'Credit Card', '3073.98'); +INSERT INTO Customer_Payments (`customer_id`, `datetime_payment`, `payment_method_code`, `amount_payment`) VALUES (12, '2018-03-06 21:36:41', 'Credit Card', '9414.74'); +INSERT INTO Lessons (`lesson_id`, `customer_id`, `lesson_status_code`, `staff_id`, `vehicle_id`, `lesson_date`, `lesson_time`, `price`) VALUES (1, 6, 'Cancelled', 8, 3, '2018-02-28 10:55:36', '5', '199'); +INSERT INTO Lessons (`lesson_id`, `customer_id`, `lesson_status_code`, `staff_id`, `vehicle_id`, `lesson_date`, `lesson_time`, `price`) VALUES (2, 8, 'Cancelled', 14, 3, '2018-03-07 16:12:36', '6', '167'); +INSERT INTO Lessons (`lesson_id`, `customer_id`, `lesson_status_code`, `staff_id`, `vehicle_id`, `lesson_date`, `lesson_time`, `price`) VALUES (3, 6, 'Cancelled', 11, 2, '2018-03-03 15:10:16', '3', '352'); +INSERT INTO Lessons (`lesson_id`, `customer_id`, `lesson_status_code`, `staff_id`, `vehicle_id`, `lesson_date`, `lesson_time`, `price`) VALUES (4, 8, 'Completed', 1, 2, '2018-03-17 19:02:07', '9', '306'); +INSERT INTO Lessons (`lesson_id`, `customer_id`, `lesson_status_code`, `staff_id`, `vehicle_id`, `lesson_date`, `lesson_time`, `price`) VALUES (5, 10, 'Completed', 3, 2, '2018-03-12 00:41:59', '9', '295'); +INSERT INTO Lessons (`lesson_id`, `customer_id`, `lesson_status_code`, `staff_id`, `vehicle_id`, `lesson_date`, `lesson_time`, `price`) VALUES (6, 5, 'Completed', 4, 2, '2018-03-07 22:03:49', '6', '492'); +INSERT INTO Lessons (`lesson_id`, `customer_id`, `lesson_status_code`, `staff_id`, `vehicle_id`, `lesson_date`, `lesson_time`, `price`) VALUES (7, 9, 'Cancelled', 11, 1, '2018-03-08 16:05:05', '9', '231'); +INSERT INTO Lessons (`lesson_id`, `customer_id`, `lesson_status_code`, `staff_id`, `vehicle_id`, `lesson_date`, `lesson_time`, `price`) VALUES (8, 3, 'Completed', 8, 2, '2018-03-21 06:48:45', '2', '277'); +INSERT INTO Lessons (`lesson_id`, `customer_id`, `lesson_status_code`, `staff_id`, `vehicle_id`, `lesson_date`, `lesson_time`, `price`) VALUES (9, 2, 'Completed', 4, 2, '2018-03-05 20:05:33', '9', '456'); +INSERT INTO Lessons (`lesson_id`, `customer_id`, `lesson_status_code`, `staff_id`, `vehicle_id`, `lesson_date`, `lesson_time`, `price`) VALUES (10, 2, 'Cancelled', 5, 2, '2018-02-26 02:36:35', '4', '495'); +INSERT INTO Lessons (`lesson_id`, `customer_id`, `lesson_status_code`, `staff_id`, `vehicle_id`, `lesson_date`, `lesson_time`, `price`) VALUES (11, 10, 'Cancelled', 15, 1, '2018-03-04 06:55:46', '2', '223'); +INSERT INTO Lessons (`lesson_id`, `customer_id`, `lesson_status_code`, `staff_id`, `vehicle_id`, `lesson_date`, `lesson_time`, `price`) VALUES (12, 11, 'Cancelled', 12, 2, '2018-03-16 07:08:52', '2', '184'); +INSERT INTO Lessons (`lesson_id`, `customer_id`, `lesson_status_code`, `staff_id`, `vehicle_id`, `lesson_date`, `lesson_time`, `price`) VALUES (13, 13, 'Completed', 12, 1, '2018-03-05 18:05:31', '5', '446'); +INSERT INTO Lessons (`lesson_id`, `customer_id`, `lesson_status_code`, `staff_id`, `vehicle_id`, `lesson_date`, `lesson_time`, `price`) VALUES (14, 11, 'Cancelled', 11, 1, '2018-03-07 11:53:32', '5', '483'); +INSERT INTO Lessons (`lesson_id`, `customer_id`, `lesson_status_code`, `staff_id`, `vehicle_id`, `lesson_date`, `lesson_time`, `price`) VALUES (15, 3, 'Cancelled', 8, 1, '2018-03-06 21:48:51', '9', '340'); diff --git a/database/e_government/e_government.sqlite b/database/e_government/e_government.sqlite new file mode 100644 index 0000000000000000000000000000000000000000..0cc2d1fd69bd6fa5efa34f937b10d9ebc91a1235 Binary files /dev/null and b/database/e_government/e_government.sqlite differ diff --git a/database/e_government/schema.sql b/database/e_government/schema.sql new file mode 100644 index 0000000000000000000000000000000000000000..132e36ba9c7833693487c597dd434b12eed72bbc --- /dev/null +++ b/database/e_government/schema.sql @@ -0,0 +1,231 @@ +PRAGMA foreign_keys = ON; +CREATE TABLE `Addresses` ( +`address_id` INTEGER PRIMARY KEY, +`line_1_number_building` VARCHAR(80), +`town_city` VARCHAR(50), +`zip_postcode` VARCHAR(20), +`state_province_county` VARCHAR(50), +`country` VARCHAR(50) +); +INSERT INTO Addresses (`address_id`, `line_1_number_building`, `town_city`, `zip_postcode`, `state_province_county`, `country`) VALUES (1, '25518 Ortiz Centers', 'West Stacy', '193', 'NorthCarolina', 'USA'); +INSERT INTO Addresses (`address_id`, `line_1_number_building`, `town_city`, `zip_postcode`, `state_province_county`, `country`) VALUES (2, '033 Stracke Parkways', 'Lake Meaghan', '227', 'Colorado', 'USA'); +INSERT INTO Addresses (`address_id`, `line_1_number_building`, `town_city`, `zip_postcode`, `state_province_county`, `country`) VALUES (3, '269 Flatley Port Suite 062', 'Breanneberg', '527', 'NewHampshire', 'USA'); +INSERT INTO Addresses (`address_id`, `line_1_number_building`, `town_city`, `zip_postcode`, `state_province_county`, `country`) VALUES (4, '90928 Garret Mall', 'New Gabe', '993', 'Missouri', 'USA'); +INSERT INTO Addresses (`address_id`, `line_1_number_building`, `town_city`, `zip_postcode`, `state_province_county`, `country`) VALUES (5, '0399 Colby Extensions', 'Carrollland', '250', 'Kentucky', 'USA'); +INSERT INTO Addresses (`address_id`, `line_1_number_building`, `town_city`, `zip_postcode`, `state_province_county`, `country`) VALUES (6, '538 Schaefer Highway Apt. 472', 'East Lamonttown', '202', 'Louisiana', 'USA'); +INSERT INTO Addresses (`address_id`, `line_1_number_building`, `town_city`, `zip_postcode`, `state_province_county`, `country`) VALUES (7, '34580 Mireille Crescent Suite 776', 'Cletusbury', '215', 'Georgia', 'USA'); +INSERT INTO Addresses (`address_id`, `line_1_number_building`, `town_city`, `zip_postcode`, `state_province_county`, `country`) VALUES (8, '6862 Kaitlyn Knolls Suite 309', 'New Katlyn', '021', 'Pennsylvania', 'USA'); +INSERT INTO Addresses (`address_id`, `line_1_number_building`, `town_city`, `zip_postcode`, `state_province_county`, `country`) VALUES (9, '90236 Kunze Pass', 'Dangelohaven', '259', 'Louisiana', 'USA'); +INSERT INTO Addresses (`address_id`, `line_1_number_building`, `town_city`, `zip_postcode`, `state_province_county`, `country`) VALUES (10, '51124 Marquardt Forks', 'Robertsberg', '023', 'NewYork', 'USA'); +INSERT INTO Addresses (`address_id`, `line_1_number_building`, `town_city`, `zip_postcode`, `state_province_county`, `country`) VALUES (11, '3986 Bergstrom Stravenue', 'Lake Taryn', '332', 'Michigan', 'USA'); +INSERT INTO Addresses (`address_id`, `line_1_number_building`, `town_city`, `zip_postcode`, `state_province_county`, `country`) VALUES (12, '43686 Kihn Corner', 'Feilmouth', '460', 'Vermont', 'USA'); +INSERT INTO Addresses (`address_id`, `line_1_number_building`, `town_city`, `zip_postcode`, `state_province_county`, `country`) VALUES (13, '29446 Hauck Ridge', 'Lake Gertrudeton', '603', 'Montana', 'USA'); +INSERT INTO Addresses (`address_id`, `line_1_number_building`, `town_city`, `zip_postcode`, `state_province_county`, `country`) VALUES (14, '326 Emile Turnpike Suite 964', 'East Clair', '515', 'Georgia', 'USA'); +INSERT INTO Addresses (`address_id`, `line_1_number_building`, `town_city`, `zip_postcode`, `state_province_county`, `country`) VALUES (15, '266 Feeney Falls', 'West Brandynland', '320', 'Arkansas', 'USA'); + + +CREATE TABLE `Services` ( +`service_id` INTEGER PRIMARY KEY, +`service_type_code` VARCHAR(15) NOT NULL, +`service_name` VARCHAR(80), +`service_descriptio` VARCHAR(255) +); +INSERT INTO Services (`service_id`, `service_type_code`, `service_name`, `service_descriptio`) VALUES (1, 'Education', 'Education', 'Education'); +INSERT INTO Services (`service_id`, `service_type_code`, `service_name`, `service_descriptio`) VALUES (2, 'Welfare', 'Health', 'Welfare'); +INSERT INTO Services (`service_id`, `service_type_code`, `service_name`, `service_descriptio`) VALUES (3, 'Education', 'Education', 'Health'); +INSERT INTO Services (`service_id`, `service_type_code`, `service_name`, `service_descriptio`) VALUES (4, 'Welfare', 'Education', 'Education'); +INSERT INTO Services (`service_id`, `service_type_code`, `service_name`, `service_descriptio`) VALUES (5, 'Education', 'Education', 'Health'); +INSERT INTO Services (`service_id`, `service_type_code`, `service_name`, `service_descriptio`) VALUES (6, 'Welfare', 'Welfare', 'Health'); +INSERT INTO Services (`service_id`, `service_type_code`, `service_name`, `service_descriptio`) VALUES (7, 'Welfare', 'Welfare', 'Welfare'); +INSERT INTO Services (`service_id`, `service_type_code`, `service_name`, `service_descriptio`) VALUES (8, 'Education', 'Education', 'Welfare'); +INSERT INTO Services (`service_id`, `service_type_code`, `service_name`, `service_descriptio`) VALUES (9, 'Education', 'Health', 'Education'); +INSERT INTO Services (`service_id`, `service_type_code`, `service_name`, `service_descriptio`) VALUES (10, 'Education', 'Health', 'Welfare'); +INSERT INTO Services (`service_id`, `service_type_code`, `service_name`, `service_descriptio`) VALUES (11, 'Welfare', 'Education', 'Health'); +INSERT INTO Services (`service_id`, `service_type_code`, `service_name`, `service_descriptio`) VALUES (12, 'Education', 'Education', 'Health'); +INSERT INTO Services (`service_id`, `service_type_code`, `service_name`, `service_descriptio`) VALUES (13, 'Health', 'Welfare', 'Education'); +INSERT INTO Services (`service_id`, `service_type_code`, `service_name`, `service_descriptio`) VALUES (14, 'Education', 'Education', 'Health'); +INSERT INTO Services (`service_id`, `service_type_code`, `service_name`, `service_descriptio`) VALUES (15, 'Welfare', 'Health', 'Education'); + + +CREATE TABLE `Forms` ( +`form_id` INTEGER PRIMARY KEY, +`form_type_code` VARCHAR(15) NOT NULL, +`service_id` INTEGER, +`form_number` VARCHAR(50), +`form_name` VARCHAR(80), +`form_description` VARCHAR(255), +FOREIGN KEY (`service_id` ) REFERENCES `Services`(`service_id` ) +); + + +INSERT INTO Forms (`form_id`, `form_type_code`, `service_id`, `form_number`, `form_name`, `form_description`) VALUES (1, 'Basic', 13, '8069', 'SSN Application', 'Form for SSN Application'); +INSERT INTO Forms (`form_id`, `form_type_code`, `service_id`, `form_number`, `form_name`, `form_description`) VALUES (2, 'Complex', 9, '2675', 'Marriage Certificate', 'Marriage Certificate'); +INSERT INTO Forms (`form_id`, `form_type_code`, `service_id`, `form_number`, `form_name`, `form_description`) VALUES (3, 'Complex', 2, '9837', 'Divorce Certificate', 'Divorce Certificate'); +INSERT INTO Forms (`form_id`, `form_type_code`, `service_id`, `form_number`, `form_name`, `form_description`) VALUES (4, 'Complex', 14, '9173', 'Moving Form', 'Form for moving house'); +INSERT INTO Forms (`form_id`, `form_type_code`, `service_id`, `form_number`, `form_name`, `form_description`) VALUES (5, 'Basic', 3, '6673', 'Account Application', 'Form for Account Application'); +INSERT INTO Forms (`form_id`, `form_type_code`, `service_id`, `form_number`, `form_name`, `form_description`) VALUES (6, 'Complex', 7, '9130', 'Property Change', 'Form for Property Change'); + + +CREATE TABLE `Individuals` ( +`individual_id` INTEGER PRIMARY KEY, +`individual_first_name` VARCHAR(80), +`individual_middle_name` VARCHAR(80), +`inidividual_phone` VARCHAR(80), +`individual_email` VARCHAR(80), +`individual_address` VARCHAR(255), +`individual_last_name` VARCHAR(80) +); +INSERT INTO Individuals (`individual_id`, `individual_first_name`, `individual_middle_name`, `inidividual_phone`, `individual_email`, `individual_address`, `individual_last_name`) VALUES (1, 'Oscar', 'Hosea', '1-925-696-5232', 'amie.okuneva@example.org', '6956 Lia Plaza', 'Maggio'); +INSERT INTO Individuals (`individual_id`, `individual_first_name`, `individual_middle_name`, `inidividual_phone`, `individual_email`, `individual_address`, `individual_last_name`) VALUES (2, 'Geovanny', 'Antonia', '075.012.6775x409', 'jamey.effertz@example.net', '69578 Baylee Prairie', 'Kerluke'); +INSERT INTO Individuals (`individual_id`, `individual_first_name`, `individual_middle_name`, `inidividual_phone`, `individual_email`, `individual_address`, `individual_last_name`) VALUES (3, 'Casper', 'Mitchell', '1-818-062-2837', 'brandon.hermiston@example.com', '4555 Hane Orchard', 'Kutch'); +INSERT INTO Individuals (`individual_id`, `individual_first_name`, `individual_middle_name`, `inidividual_phone`, `individual_email`, `individual_address`, `individual_last_name`) VALUES (4, 'Guy', 'Erick', '1-014-109-1968x40778', 'reinger.leola@example.net', '919 Cummerata Burgs Apt. 063', 'Wunsch'); +INSERT INTO Individuals (`individual_id`, `individual_first_name`, `individual_middle_name`, `inidividual_phone`, `individual_email`, `individual_address`, `individual_last_name`) VALUES (5, 'Matteo', 'Rene', '634.660.8469', 'strosin.conor@example.org', '13223 Torphy Point', 'Schuster'); +INSERT INTO Individuals (`individual_id`, `individual_first_name`, `individual_middle_name`, `inidividual_phone`, `individual_email`, `individual_address`, `individual_last_name`) VALUES (6, 'Nella', 'Tommie', '892.154.8492', 'austyn.effertz@example.org', '640 Johns Branch', 'Kertzmann'); +INSERT INTO Individuals (`individual_id`, `individual_first_name`, `individual_middle_name`, `inidividual_phone`, `individual_email`, `individual_address`, `individual_last_name`) VALUES (7, 'Jeffery', 'Alberto', '317.382.4425x7924', 'august78@example.net', '384 Carter Flat Suite 896', 'Jacobs'); +INSERT INTO Individuals (`individual_id`, `individual_first_name`, `individual_middle_name`, `inidividual_phone`, `individual_email`, `individual_address`, `individual_last_name`) VALUES (8, 'Shany', 'Colleen', '(030)939-8437x6141', 'mbahringer@example.com', '407 Sofia Knoll Suite 591', 'D''Amore'); +INSERT INTO Individuals (`individual_id`, `individual_first_name`, `individual_middle_name`, `inidividual_phone`, `individual_email`, `individual_address`, `individual_last_name`) VALUES (9, 'Allene', 'Erwin', '1-797-739-0925', 'autumn.fisher@example.net', '3889 Theodore Radial Suite 795', 'Rutherford'); +INSERT INTO Individuals (`individual_id`, `individual_first_name`, `individual_middle_name`, `inidividual_phone`, `individual_email`, `individual_address`, `individual_last_name`) VALUES (10, 'Lafayette', 'Raoul', '396.348.9925x9122', 'hickle.ewell@example.com', '3203 Hermann Port Apt. 429', 'Rau'); +INSERT INTO Individuals (`individual_id`, `individual_first_name`, `individual_middle_name`, `inidividual_phone`, `individual_email`, `individual_address`, `individual_last_name`) VALUES (11, 'Daniella', 'Jamel', '(121)788-2928', 'ericka97@example.net', '4643 Ismael Pines Apt. 899', 'Rogahn'); +INSERT INTO Individuals (`individual_id`, `individual_first_name`, `individual_middle_name`, `inidividual_phone`, `individual_email`, `individual_address`, `individual_last_name`) VALUES (12, 'Daron', 'Howard', '+94(0)3793557310', 'allison.lemke@example.org', '104 Bernier Loop', 'Hand'); +INSERT INTO Individuals (`individual_id`, `individual_first_name`, `individual_middle_name`, `inidividual_phone`, `individual_email`, `individual_address`, `individual_last_name`) VALUES (13, 'Ressie', 'Alysson', '1-727-057-0382x999', 'delpha81@example.com', '5114 Jakubowski Port Apt. 758', 'Bradtke'); +INSERT INTO Individuals (`individual_id`, `individual_first_name`, `individual_middle_name`, `inidividual_phone`, `individual_email`, `individual_address`, `individual_last_name`) VALUES (14, 'Katarina', 'Lacey', '(348)944-9700', 'zlehner@example.net', '16688 Powlowski Views Apt. 341', 'Dooley'); +INSERT INTO Individuals (`individual_id`, `individual_first_name`, `individual_middle_name`, `inidividual_phone`, `individual_email`, `individual_address`, `individual_last_name`) VALUES (15, 'Jaylen', 'Jewell', '(468)679-4017', 'shanahan.julien@example.net', '06409 Beatty Glen Suite 000', 'O''Conner'); + + +CREATE TABLE `Organizations` ( +`organization_id` INTEGER PRIMARY KEY, +`date_formed` DATETIME, +`organization_name` VARCHAR(255), +`uk_vat_number` VARCHAR(20) +); +INSERT INTO Organizations (`organization_id`, `date_formed`, `organization_name`, `uk_vat_number`) VALUES (1, '2016-08-24 23:52:48', 'Labour Party', '2157'); +INSERT INTO Organizations (`organization_id`, `date_formed`, `organization_name`, `uk_vat_number`) VALUES (2, '2016-10-01 12:42:01', 'Plaid Cymru', '7459'); +INSERT INTO Organizations (`organization_id`, `date_formed`, `organization_name`, `uk_vat_number`) VALUES (3, '2016-10-09 07:22:53', 'Conservative', '1211'); +INSERT INTO Organizations (`organization_id`, `date_formed`, `organization_name`, `uk_vat_number`) VALUES (4, '2017-04-06 23:59:16', 'Liberal Democrats', '7237'); +INSERT INTO Organizations (`organization_id`, `date_formed`, `organization_name`, `uk_vat_number`) VALUES (5, '2016-07-28 01:45:10', 'Green Party', '4271'); + + +CREATE TABLE `Parties` ( +`party_id` INTEGER PRIMARY KEY, +`payment_method_code` VARCHAR(15) NOT NULL, +`party_phone` VARCHAR(80), +`party_email` VARCHAR(80) +); +INSERT INTO Parties (`party_id`, `payment_method_code`, `party_phone`, `party_email`) VALUES (1, 'Cheque', '05374656172', 'enrico09@example.com'); +INSERT INTO Parties (`party_id`, `payment_method_code`, `party_phone`, `party_email`) VALUES (2, 'Credit Card', '1-525-947-7867x51521', 'brakus.aliya@example.com'); +INSERT INTO Parties (`party_id`, `payment_method_code`, `party_phone`, `party_email`) VALUES (3, 'Cheque', '1-606-232-3728x3568', 'frida57@example.org'); +INSERT INTO Parties (`party_id`, `payment_method_code`, `party_phone`, `party_email`) VALUES (4, 'Cash', '019-302-5166', 'wuckert.misty@example.com'); +INSERT INTO Parties (`party_id`, `payment_method_code`, `party_phone`, `party_email`) VALUES (5, 'Cheque', '529-074-5348', 'alanna.boehm@example.net'); +INSERT INTO Parties (`party_id`, `payment_method_code`, `party_phone`, `party_email`) VALUES (6, 'Credit Card', '1-950-874-1693x65923', 'daniel.charity@example.net'); +INSERT INTO Parties (`party_id`, `payment_method_code`, `party_phone`, `party_email`) VALUES (7, 'Direct Debit', '112-477-4433x137', 'lucinda83@example.org'); +INSERT INTO Parties (`party_id`, `payment_method_code`, `party_phone`, `party_email`) VALUES (8, 'Cash', '(919)169-1514x55820', 'erick.mills@example.com'); +INSERT INTO Parties (`party_id`, `payment_method_code`, `party_phone`, `party_email`) VALUES (9, 'Cash', '04177934231', 'evie97@example.org'); +INSERT INTO Parties (`party_id`, `payment_method_code`, `party_phone`, `party_email`) VALUES (10, 'Credit Card', '(211)528-0733x8063', 'hilll.elyssa@example.net'); +INSERT INTO Parties (`party_id`, `payment_method_code`, `party_phone`, `party_email`) VALUES (11, 'Credit Card', '1-985-957-5462', 'jamir.hyatt@example.net'); +INSERT INTO Parties (`party_id`, `payment_method_code`, `party_phone`, `party_email`) VALUES (12, 'Cheque', '1-386-339-9244', 'eden67@example.net'); +INSERT INTO Parties (`party_id`, `payment_method_code`, `party_phone`, `party_email`) VALUES (13, 'Direct Debit', '186-726-9855', 'ora.hyatt@example.net'); +INSERT INTO Parties (`party_id`, `payment_method_code`, `party_phone`, `party_email`) VALUES (14, 'Cash', '971-607-7001x08626', 'rhauck@example.org'); +INSERT INTO Parties (`party_id`, `payment_method_code`, `party_phone`, `party_email`) VALUES (15, 'Cash', '231.232.0099', 'noe.ziemann@example.org'); + + +CREATE TABLE `Organization_Contact_Individuals` ( +`individual_id` INTEGER NOT NULL, +`organization_id` INTEGER NOT NULL, +`date_contact_from` DATETIME NOT NULL, +`date_contact_to` DATETIME, +PRIMARY KEY (`individual_id`,`organization_id` ), +FOREIGN KEY (`organization_id` ) REFERENCES `Organizations`(`organization_id` ), +FOREIGN KEY (`individual_id` ) REFERENCES `Individuals`(`individual_id` ) +); +INSERT INTO Organization_Contact_Individuals (`individual_id`, `organization_id`, `date_contact_from`, `date_contact_to`) VALUES (13, 1, '2016-08-16 22:09:11', '2018-03-25 10:27:18'); +INSERT INTO Organization_Contact_Individuals (`individual_id`, `organization_id`, `date_contact_from`, `date_contact_to`) VALUES (11, 1, '2017-03-02 00:00:16', '2018-03-06 05:39:43'); +INSERT INTO Organization_Contact_Individuals (`individual_id`, `organization_id`, `date_contact_from`, `date_contact_to`) VALUES (10, 3, '2016-08-23 03:24:24', '2018-03-12 07:55:28'); +INSERT INTO Organization_Contact_Individuals (`individual_id`, `organization_id`, `date_contact_from`, `date_contact_to`) VALUES (10, 4, '2017-08-08 12:05:25', '2018-03-04 09:30:20'); +INSERT INTO Organization_Contact_Individuals (`individual_id`, `organization_id`, `date_contact_from`, `date_contact_to`) VALUES (13, 3, '2016-04-21 03:55:35', '2018-03-06 21:22:49'); +INSERT INTO Organization_Contact_Individuals (`individual_id`, `organization_id`, `date_contact_from`, `date_contact_to`) VALUES (5, 4, '2016-08-27 16:55:59', '2018-03-18 05:47:36'); +INSERT INTO Organization_Contact_Individuals (`individual_id`, `organization_id`, `date_contact_from`, `date_contact_to`) VALUES (9, 1, '2017-01-06 09:38:54', '2018-02-27 09:20:42'); +INSERT INTO Organization_Contact_Individuals (`individual_id`, `organization_id`, `date_contact_from`, `date_contact_to`) VALUES (11, 5, '2017-09-14 08:24:22', '2018-03-24 16:54:36'); +INSERT INTO Organization_Contact_Individuals (`individual_id`, `organization_id`, `date_contact_from`, `date_contact_to`) VALUES (13, 2, '2016-09-16 13:53:24', '2018-03-18 16:33:16'); +INSERT INTO Organization_Contact_Individuals (`individual_id`, `organization_id`, `date_contact_from`, `date_contact_to`) VALUES (6, 3, '2017-05-24 11:38:02', '2018-03-24 03:43:00'); +INSERT INTO Organization_Contact_Individuals (`individual_id`, `organization_id`, `date_contact_from`, `date_contact_to`) VALUES (6, 5, '2016-05-15 13:16:35', '2018-03-05 19:29:24'); +INSERT INTO Organization_Contact_Individuals (`individual_id`, `organization_id`, `date_contact_from`, `date_contact_to`) VALUES (7, 2, '2016-11-24 03:57:30', '2018-03-07 16:40:29'); +INSERT INTO Organization_Contact_Individuals (`individual_id`, `organization_id`, `date_contact_from`, `date_contact_to`) VALUES (14, 5, '2017-02-19 08:51:41', '2018-03-23 22:06:48'); +INSERT INTO Organization_Contact_Individuals (`individual_id`, `organization_id`, `date_contact_from`, `date_contact_to`) VALUES (9, 2, '2016-04-30 14:39:31', '2018-03-20 00:33:08'); +INSERT INTO Organization_Contact_Individuals (`individual_id`, `organization_id`, `date_contact_from`, `date_contact_to`) VALUES (8, 3, '2016-07-26 09:08:15', '2018-03-02 03:50:51'); + + + +CREATE TABLE `Party_Addresses` ( +`party_id` INTEGER NOT NULL, +`address_id` INTEGER NOT NULL, +`date_address_from` DATETIME NOT NULL, +`address_type_code` VARCHAR(15) NOT NULL, +`date_address_to` DATETIME, +PRIMARY KEY (`party_id`, `address_id`), +FOREIGN KEY (`address_id` ) REFERENCES `Addresses`(`address_id` ), +FOREIGN KEY (`party_id` ) REFERENCES `Parties`(`party_id` ) +); +INSERT INTO Party_Addresses (`party_id`, `address_id`, `date_address_from`, `address_type_code`, `date_address_to`) VALUES (10, 8, '2016-04-08 22:40:02', 'Residence', '2018-02-28 23:14:41'); +INSERT INTO Party_Addresses (`party_id`, `address_id`, `date_address_from`, `address_type_code`, `date_address_to`) VALUES (15, 5, '2016-05-20 23:22:06', 'Billing', '2018-01-29 16:48:01'); +INSERT INTO Party_Addresses (`party_id`, `address_id`, `date_address_from`, `address_type_code`, `date_address_to`) VALUES (4, 4, '2016-05-14 15:13:30', 'Delivery', '2018-02-25 19:39:16'); +INSERT INTO Party_Addresses (`party_id`, `address_id`, `date_address_from`, `address_type_code`, `date_address_to`) VALUES (4, 10, '2017-02-21 12:12:50', 'Residence', '2018-03-11 12:12:52'); +INSERT INTO Party_Addresses (`party_id`, `address_id`, `date_address_from`, `address_type_code`, `date_address_to`) VALUES (5, 10, '2016-04-04 03:57:02', 'Billing', '2018-02-11 06:11:11'); +INSERT INTO Party_Addresses (`party_id`, `address_id`, `date_address_from`, `address_type_code`, `date_address_to`) VALUES (11, 2, '2016-07-21 08:39:50', 'Billing', '2018-03-03 22:17:09'); +INSERT INTO Party_Addresses (`party_id`, `address_id`, `date_address_from`, `address_type_code`, `date_address_to`) VALUES (3, 2, '2016-06-09 00:48:07', 'Billing', '2018-03-11 00:08:16'); +INSERT INTO Party_Addresses (`party_id`, `address_id`, `date_address_from`, `address_type_code`, `date_address_to`) VALUES (5, 7, '2016-09-05 11:53:36', 'Billing', '2018-03-07 13:28:44'); +INSERT INTO Party_Addresses (`party_id`, `address_id`, `date_address_from`, `address_type_code`, `date_address_to`) VALUES (5, 4, '2016-05-24 08:11:04', 'Residence', '2018-03-04 08:34:45'); +INSERT INTO Party_Addresses (`party_id`, `address_id`, `date_address_from`, `address_type_code`, `date_address_to`) VALUES (8, 7, '2017-02-07 02:51:33', 'Residence', '2018-02-27 09:21:41'); +INSERT INTO Party_Addresses (`party_id`, `address_id`, `date_address_from`, `address_type_code`, `date_address_to`) VALUES (15, 2, '2016-09-23 19:59:54', 'Billing', '2018-03-01 13:51:27'); +INSERT INTO Party_Addresses (`party_id`, `address_id`, `date_address_from`, `address_type_code`, `date_address_to`) VALUES (10, 1, '2016-11-02 02:06:07', 'Delivery', '2018-02-02 00:37:45'); +INSERT INTO Party_Addresses (`party_id`, `address_id`, `date_address_from`, `address_type_code`, `date_address_to`) VALUES (11, 5, '2017-01-07 12:02:39', 'Residence', '2018-02-09 08:47:26'); +INSERT INTO Party_Addresses (`party_id`, `address_id`, `date_address_from`, `address_type_code`, `date_address_to`) VALUES (6, 9, '2016-12-21 03:54:15', 'Delivery', '2018-02-25 07:34:22'); +INSERT INTO Party_Addresses (`party_id`, `address_id`, `date_address_from`, `address_type_code`, `date_address_to`) VALUES (5, 13, '2016-04-15 03:54:06', 'Billing', '2018-03-23 17:52:47'); + + +CREATE TABLE `Party_Forms` ( +`party_id` INTEGER NOT NULL, +`form_id` INTEGER NOT NULL, +`date_completion_started` DATETIME NOT NULL, +`form_status_code` VARCHAR(15) NOT NULL, +`date_fully_completed` DATETIME, +PRIMARY KEY (`party_id`, `form_id`), +FOREIGN KEY (`party_id` ) REFERENCES `Parties`(`party_id` ), +FOREIGN KEY (`form_id` ) REFERENCES `Forms`(`form_id` ) +); +CREATE TABLE `Party_Services` ( +`booking_id` INTEGER NOT NULL , +`customer_id` INTEGER NOT NULL, +`service_id` INTEGER NOT NULL, +`service_datetime` DATETIME NOT NULL, +`booking_made_date` DATETIME, +FOREIGN KEY (`service_id` ) REFERENCES `Services`(`service_id` ), +FOREIGN KEY (`customer_id` ) REFERENCES `Parties`(`party_id` ) +); +INSERT INTO Party_Forms (`party_id`, `form_id`, `date_completion_started`, `form_status_code`, `date_fully_completed`) VALUES (2, 4, '2017-12-17 11:29:47', 'Completed', '2018-02-11 16:46:10'); +INSERT INTO Party_Forms (`party_id`, `form_id`, `date_completion_started`, `form_status_code`, `date_fully_completed`) VALUES (15, 4, '2017-12-16 15:25:48', 'Partially Completed', '2018-02-18 16:09:04'); +INSERT INTO Party_Forms (`party_id`, `form_id`, `date_completion_started`, `form_status_code`, `date_fully_completed`) VALUES (8, 5, '2017-12-09 21:26:11', 'Partially Completed', '2018-02-05 16:16:58'); +INSERT INTO Party_Forms (`party_id`, `form_id`, `date_completion_started`, `form_status_code`, `date_fully_completed`) VALUES (6, 2, '2017-12-04 16:57:31', 'Partially Completed', '2018-01-28 22:29:07'); +INSERT INTO Party_Forms (`party_id`, `form_id`, `date_completion_started`, `form_status_code`, `date_fully_completed`) VALUES (7, 2, '2017-11-30 18:49:37', 'Not Started', '2018-02-21 17:59:08'); +INSERT INTO Party_Forms (`party_id`, `form_id`, `date_completion_started`, `form_status_code`, `date_fully_completed`) VALUES (11, 5, '2017-12-20 01:10:33', 'Not Started', '2018-02-10 14:07:46'); +INSERT INTO Party_Forms (`party_id`, `form_id`, `date_completion_started`, `form_status_code`, `date_fully_completed`) VALUES (11, 3, '2017-12-18 01:32:49', 'Not Started', '2018-02-04 05:57:01'); +INSERT INTO Party_Forms (`party_id`, `form_id`, `date_completion_started`, `form_status_code`, `date_fully_completed`) VALUES (8, 6, '2017-12-07 18:17:01', 'Work In Progress', '2018-02-15 23:09:42'); +INSERT INTO Party_Forms (`party_id`, `form_id`, `date_completion_started`, `form_status_code`, `date_fully_completed`) VALUES (5, 6, '2017-12-05 19:48:45', 'Partially Completed', '2018-01-30 09:33:37'); +INSERT INTO Party_Forms (`party_id`, `form_id`, `date_completion_started`, `form_status_code`, `date_fully_completed`) VALUES (7, 6, '2017-11-29 03:11:38', 'Not Started', '2018-02-01 10:26:47'); +INSERT INTO Party_Forms (`party_id`, `form_id`, `date_completion_started`, `form_status_code`, `date_fully_completed`) VALUES (13, 3, '2017-12-04 18:20:10', 'Work In Progress', '2018-01-31 17:09:32'); +INSERT INTO Party_Forms (`party_id`, `form_id`, `date_completion_started`, `form_status_code`, `date_fully_completed`) VALUES (2, 5, '2017-11-26 09:09:29', 'Not Started', '2018-02-09 09:49:09'); +INSERT INTO Party_Forms (`party_id`, `form_id`, `date_completion_started`, `form_status_code`, `date_fully_completed`) VALUES (9, 2, '2017-11-27 11:57:03', 'Completed', '2018-02-15 13:15:25'); +INSERT INTO Party_Services (`booking_id`, `customer_id`, `service_id`, `service_datetime`, `booking_made_date`) VALUES (1, 10, 12, '2018-03-10 22:43:12', '2018-03-23 23:56:51'); +INSERT INTO Party_Services (`booking_id`, `customer_id`, `service_id`, `service_datetime`, `booking_made_date`) VALUES (2, 14, 11, '2018-03-05 15:06:23', '2018-03-25 11:08:29'); +INSERT INTO Party_Services (`booking_id`, `customer_id`, `service_id`, `service_datetime`, `booking_made_date`) VALUES (3, 4, 7, '2018-03-08 10:39:29', '2018-03-24 11:09:52'); +INSERT INTO Party_Services (`booking_id`, `customer_id`, `service_id`, `service_datetime`, `booking_made_date`) VALUES (4, 13, 3, '2018-03-08 23:52:44', '2018-03-25 12:56:09'); +INSERT INTO Party_Services (`booking_id`, `customer_id`, `service_id`, `service_datetime`, `booking_made_date`) VALUES (5, 2, 6, '2018-03-17 18:35:26', '2018-03-25 02:57:32'); +INSERT INTO Party_Services (`booking_id`, `customer_id`, `service_id`, `service_datetime`, `booking_made_date`) VALUES (6, 14, 6, '2018-03-17 08:16:30', '2018-03-24 06:50:50'); +INSERT INTO Party_Services (`booking_id`, `customer_id`, `service_id`, `service_datetime`, `booking_made_date`) VALUES (7, 6, 12, '2018-03-15 09:48:27', '2018-03-25 11:52:29'); +INSERT INTO Party_Services (`booking_id`, `customer_id`, `service_id`, `service_datetime`, `booking_made_date`) VALUES (8, 3, 6, '2018-03-01 18:31:32', '2018-03-24 07:55:33'); +INSERT INTO Party_Services (`booking_id`, `customer_id`, `service_id`, `service_datetime`, `booking_made_date`) VALUES (9, 5, 7, '2018-03-05 13:02:22', '2018-03-24 10:17:36'); +INSERT INTO Party_Services (`booking_id`, `customer_id`, `service_id`, `service_datetime`, `booking_made_date`) VALUES (10, 15, 13, '2018-02-28 16:29:04', '2018-03-24 09:20:46'); +INSERT INTO Party_Services (`booking_id`, `customer_id`, `service_id`, `service_datetime`, `booking_made_date`) VALUES (11, 13, 12, '2018-03-09 07:27:30', '2018-03-25 15:09:54'); +INSERT INTO Party_Services (`booking_id`, `customer_id`, `service_id`, `service_datetime`, `booking_made_date`) VALUES (12, 9, 1, '2018-03-19 14:38:29', '2018-03-24 18:05:07'); +INSERT INTO Party_Services (`booking_id`, `customer_id`, `service_id`, `service_datetime`, `booking_made_date`) VALUES (13, 3, 11, '2018-03-14 18:53:35', '2018-03-24 12:21:20'); +INSERT INTO Party_Services (`booking_id`, `customer_id`, `service_id`, `service_datetime`, `booking_made_date`) VALUES (14, 3, 5, '2018-03-18 17:53:02', '2018-03-24 22:12:30'); +INSERT INTO Party_Services (`booking_id`, `customer_id`, `service_id`, `service_datetime`, `booking_made_date`) VALUES (15, 12, 6, '2018-03-01 04:41:58', '2018-03-25 16:47:47'); diff --git a/database/e_learning/e_learning.sqlite b/database/e_learning/e_learning.sqlite new file mode 100644 index 0000000000000000000000000000000000000000..b1496dd81c78ab8f5a945121c24cccad0dfc2575 Binary files /dev/null and b/database/e_learning/e_learning.sqlite differ diff --git a/database/e_learning/schema.sql b/database/e_learning/schema.sql new file mode 100644 index 0000000000000000000000000000000000000000..bd00cf480a043539b763ded3829c81a62b5805ce --- /dev/null +++ b/database/e_learning/schema.sql @@ -0,0 +1,158 @@ +PRAGMA foreign_keys = ON; +CREATE TABLE `Course_Authors_and_Tutors` ( +`author_id` INTEGER PRIMARY KEY, +`author_tutor_ATB` VARCHAR(3), +`login_name` VARCHAR(40), +`password` VARCHAR(40), +`personal_name` VARCHAR(80), +`middle_name` VARCHAR(80), +`family_name` VARCHAR(80), +`gender_mf` VARCHAR(1), +`address_line_1` VARCHAR(80) +); +INSERT INTO Course_Authors_and_Tutors (`author_id`, `author_tutor_ATB`, `login_name`, `password`, `personal_name`, `middle_name`, `family_name`, `gender_mf`, `address_line_1`) VALUES (1, '331', 'jmckenzie', 'c40fa148bdd0d2d45cd6e9ec1e685750fe07f81b', 'Cathrine', 'Ruthie', 'Grant', '0', '756 Monahan Mews +Spinkashire, NJ 64230-5098'); +INSERT INTO Course_Authors_and_Tutors (`author_id`, `author_tutor_ATB`, `login_name`, `password`, `personal_name`, `middle_name`, `family_name`, `gender_mf`, `address_line_1`) VALUES (2, '975', 'heidenreich.ara', '24b0ee84063c3b017ab1839e01b7280f47f7c7c2', 'Retha', 'Corene', 'Armstrong', '0', '98623 Huels Manor +Jasttown, DE 31611'); +INSERT INTO Course_Authors_and_Tutors (`author_id`, `author_tutor_ATB`, `login_name`, `password`, `personal_name`, `middle_name`, `family_name`, `gender_mf`, `address_line_1`) VALUES (3, '349', 'clementina29', 'cdaf6c3483f19e2253659a40a3aab786a3390f78', 'Darius', 'Ethyl', 'Reichel', '0', '99296 Keeling Courts +North Audreanne, IL 28272'); +INSERT INTO Course_Authors_and_Tutors (`author_id`, `author_tutor_ATB`, `login_name`, `password`, `personal_name`, `middle_name`, `family_name`, `gender_mf`, `address_line_1`) VALUES (4, '782', 'wlehner', 'd34378200c9b5f72d3039fa640e7920aaec0fdf2', 'Julio', 'Aniyah', 'Nader', '1', '644 Montana Hill Suite 489 +Daijamouth, CA 19587-4254'); +INSERT INTO Course_Authors_and_Tutors (`author_id`, `author_tutor_ATB`, `login_name`, `password`, `personal_name`, `middle_name`, `family_name`, `gender_mf`, `address_line_1`) VALUES (5, '388', 'nyundt', '2c196efe8aee23a1b9a7e752fe63029c5879af6f', 'Yessenia', 'Zena', 'Barrows', '1', '5284 Champlin Roads +Cassinport, WY 54636'); +INSERT INTO Course_Authors_and_Tutors (`author_id`, `author_tutor_ATB`, `login_name`, `password`, `personal_name`, `middle_name`, `family_name`, `gender_mf`, `address_line_1`) VALUES (6, '817', 'al75', 'e96c0bcbbbb14747747a56ff4c17354f343a5b4f', 'Adolf', 'Keira', 'Rohan', '1', '92220 Hellen Skyway Apt. 635 +Rennerview, MS 81036'); +INSERT INTO Course_Authors_and_Tutors (`author_id`, `author_tutor_ATB`, `login_name`, `password`, `personal_name`, `middle_name`, `family_name`, `gender_mf`, `address_line_1`) VALUES (7, '869', 'marty.bergnaum', '3e2f7bf1e6acf0d616a8703ee0050fba13bc007f', 'Logan', 'Ethelyn', 'Treutel', '1', '67541 Osborne Creek Suite 532 +Bernhardview, WV 30288-1050'); +INSERT INTO Course_Authors_and_Tutors (`author_id`, `author_tutor_ATB`, `login_name`, `password`, `personal_name`, `middle_name`, `family_name`, `gender_mf`, `address_line_1`) VALUES (8, '557', 'medhurst.alvah', '02d64f11de97436343a0beba41bfcf69af61be1e', 'Kelsie', 'Kennith', 'Rowe', '0', '0256 Walter Meadows Suite 523 +Norbertoborough, AZ 49193'); +INSERT INTO Course_Authors_and_Tutors (`author_id`, `author_tutor_ATB`, `login_name`, `password`, `personal_name`, `middle_name`, `family_name`, `gender_mf`, `address_line_1`) VALUES (9, '505', 'antonetta19', '4d8e909ae9b8888c93a2c5f1eccbd0c4ac6a01c3', 'Georgiana', 'Mathew', 'Zboncak', '0', '445 Quigley Fall +Port Antonette, IN 81992-1255'); +INSERT INTO Course_Authors_and_Tutors (`author_id`, `author_tutor_ATB`, `login_name`, `password`, `personal_name`, `middle_name`, `family_name`, `gender_mf`, `address_line_1`) VALUES (10, '159', 'adam.rippin', 'b517a107b5f08fafe9628e88e7263a6f3a4a55c0', 'Deja', 'Joyce', 'Champlin', '1', '22575 Effertz Neck Apt. 046 +Port Scotty, NY 67108-9197'); +INSERT INTO Course_Authors_and_Tutors (`author_id`, `author_tutor_ATB`, `login_name`, `password`, `personal_name`, `middle_name`, `family_name`, `gender_mf`, `address_line_1`) VALUES (11, '229', 'dschaefer', '4f149f75ecd84afcdf27343509cdd03d81edb119', 'Ciara', 'Alejandra', 'Greenholt', '0', '425 White Brooks +Emmaleefort, IN 97850-2510'); +INSERT INTO Course_Authors_and_Tutors (`author_id`, `author_tutor_ATB`, `login_name`, `password`, `personal_name`, `middle_name`, `family_name`, `gender_mf`, `address_line_1`) VALUES (12, '847', 'nellie.mosciski', 'a48e25a58b3088e9cfdaca61130555ed2c772452', 'Sheldon', 'Jayce', 'Kreiger', '1', '513 Collins Plain Apt. 829 +Clementinaville, VT 59908-2793'); +INSERT INTO Course_Authors_and_Tutors (`author_id`, `author_tutor_ATB`, `login_name`, `password`, `personal_name`, `middle_name`, `family_name`, `gender_mf`, `address_line_1`) VALUES (13, '613', 'qking', '6b9979a83b4a9e03ead034c8de47f1b013a3d3af', 'Madonna', 'Jaclyn', 'Effertz', '1', '139 O''Conner Circles +Virginieland, KS 23365'); +INSERT INTO Course_Authors_and_Tutors (`author_id`, `author_tutor_ATB`, `login_name`, `password`, `personal_name`, `middle_name`, `family_name`, `gender_mf`, `address_line_1`) VALUES (14, '833', 'fiona77', '120ac8a5744f5b710ecaebbd8dd1633e3e33886e', 'Dusty', 'Amani', 'Crist', '1', '3602 Boehm Forest +Zulaufton, DC 35229-0366'); +INSERT INTO Course_Authors_and_Tutors (`author_id`, `author_tutor_ATB`, `login_name`, `password`, `personal_name`, `middle_name`, `family_name`, `gender_mf`, `address_line_1`) VALUES (15, '974', 'ekshlerin', '6d587cec8006e3a40565e1dad2c5b5b12b475b8f', 'Shakira', 'Fritz', 'Haley', '0', '8928 Kunze Valley Apt. 747 +South Jedidiahmouth, DE 28167'); + + +CREATE TABLE `Students` ( +`student_id` INTEGER PRIMARY KEY, +`date_of_registration` DATETIME, +`date_of_latest_logon` DATETIME, +`login_name` VARCHAR(40), +`password` VARCHAR(10), +`personal_name` VARCHAR(40), +`middle_name` VARCHAR(40), +`family_name` VARCHAR(40) +); +INSERT INTO Students (`student_id`, `date_of_registration`, `date_of_latest_logon`, `login_name`, `password`, `personal_name`, `middle_name`, `family_name`) VALUES (1, '2015-07-22 13:32:35', '2017-10-17 22:52:26', 'annamae.hoppe', 'db8765bb6f', 'Wilson', 'Aubrey', 'Ward'); +INSERT INTO Students (`student_id`, `date_of_registration`, `date_of_latest_logon`, `login_name`, `password`, `personal_name`, `middle_name`, `family_name`) VALUES (2, '2015-07-02 00:21:42', '2017-06-24 22:16:27', 'wmiller', '35faf8182a', 'Karson', 'Luella', 'Jaskolski'); +INSERT INTO Students (`student_id`, `date_of_registration`, `date_of_latest_logon`, `login_name`, `password`, `personal_name`, `middle_name`, `family_name`) VALUES (3, '2015-10-11 03:23:27', '2018-03-10 23:22:23', 'ahartmann', '8e064ec4e6', 'Mariela', 'Brandt', 'Legros'); +INSERT INTO Students (`student_id`, `date_of_registration`, `date_of_latest_logon`, `login_name`, `password`, `personal_name`, `middle_name`, `family_name`) VALUES (4, '2016-01-05 17:21:32', '2018-02-24 23:15:41', 'ylockman', 'a18d639a12', 'Krystel', 'Casimir', 'Langosh'); +INSERT INTO Students (`student_id`, `date_of_registration`, `date_of_latest_logon`, `login_name`, `password`, `personal_name`, `middle_name`, `family_name`) VALUES (5, '2015-04-27 10:25:31', '2017-09-05 23:04:07', 'mohamed50', 'aedd08a3b9', 'Autumn', 'Lawson', 'Schumm'); +INSERT INTO Students (`student_id`, `date_of_registration`, `date_of_latest_logon`, `login_name`, `password`, `personal_name`, `middle_name`, `family_name`) VALUES (6, '2015-05-12 03:59:32', '2017-09-09 13:19:18', 'bmarquardt', '3e72450865', 'Bernie', 'Asa', 'Zieme'); +INSERT INTO Students (`student_id`, `date_of_registration`, `date_of_latest_logon`, `login_name`, `password`, `personal_name`, `middle_name`, `family_name`) VALUES (7, '2015-09-05 10:49:02', '2017-07-17 23:13:31', 'darrin56', '35cd4a47a3', 'Jewel', 'Marianne', 'Hodkiewicz'); +INSERT INTO Students (`student_id`, `date_of_registration`, `date_of_latest_logon`, `login_name`, `password`, `personal_name`, `middle_name`, `family_name`) VALUES (8, '2015-12-06 07:43:56', '2017-08-24 19:42:33', 'eichmann.lera', '623af75b4a', 'Marshall', 'Linnea', 'Johns'); +INSERT INTO Students (`student_id`, `date_of_registration`, `date_of_latest_logon`, `login_name`, `password`, `personal_name`, `middle_name`, `family_name`) VALUES (9, '2015-08-13 03:31:42', '2017-11-25 03:14:32', 'sdaugherty', '7c90dbbfde', 'Prince', 'Kailey', 'Ziemann'); +INSERT INTO Students (`student_id`, `date_of_registration`, `date_of_latest_logon`, `login_name`, `password`, `personal_name`, `middle_name`, `family_name`) VALUES (10, '2015-04-12 11:07:48', '2017-12-11 14:29:41', 'myron.bergnaum', '5bc0d35e75', 'Alicia', 'Vicente', 'Carroll'); +INSERT INTO Students (`student_id`, `date_of_registration`, `date_of_latest_logon`, `login_name`, `password`, `personal_name`, `middle_name`, `family_name`) VALUES (11, '2015-10-15 09:36:40', '2017-05-29 19:06:35', 'gia.jacobson', '2e05a1e6a3', 'Clotilde', 'Kolby', 'Windler'); +INSERT INTO Students (`student_id`, `date_of_registration`, `date_of_latest_logon`, `login_name`, `password`, `personal_name`, `middle_name`, `family_name`) VALUES (12, '2016-03-25 18:58:58', '2018-01-07 00:15:03', 'kiarra28', 'aa33f3b875', 'Claudia', 'Karley', 'Mitchell'); +INSERT INTO Students (`student_id`, `date_of_registration`, `date_of_latest_logon`, `login_name`, `password`, `personal_name`, `middle_name`, `family_name`) VALUES (13, '2015-03-29 14:43:22', '2018-01-10 11:27:03', 'francisca48', '1c760b9d5d', 'Else', 'Camilla', 'Hartmann'); +INSERT INTO Students (`student_id`, `date_of_registration`, `date_of_latest_logon`, `login_name`, `password`, `personal_name`, `middle_name`, `family_name`) VALUES (14, '2015-08-11 01:04:31', '2017-09-15 08:10:04', 'ruthie.rolfson', '9031f3a72e', 'Cary', 'Ursula', 'O''Reilly'); +INSERT INTO Students (`student_id`, `date_of_registration`, `date_of_latest_logon`, `login_name`, `password`, `personal_name`, `middle_name`, `family_name`) VALUES (15, '2016-01-12 15:33:36', '2018-02-22 18:38:02', 'jgulgowski', '0f37421f02', 'Eliza', 'Shanel', 'Leannon'); + +CREATE TABLE `Subjects` ( +`subject_id` INTEGER PRIMARY KEY, +`subject_name` VARCHAR(120) +); +INSERT INTO Subjects (`subject_id`, `subject_name`) VALUES (1, 'Computer Science'); +INSERT INTO Subjects (`subject_id`, `subject_name`) VALUES (2, 'Arts'); +INSERT INTO Subjects (`subject_id`, `subject_name`) VALUES (3, 'Language'); + + +CREATE TABLE `Courses` ( +`course_id` INTEGER PRIMARY KEY, +`author_id` INTEGER NOT NULL, +`subject_id` INTEGER NOT NULL, +`course_name` VARCHAR(120), +`course_description` VARCHAR(255), +FOREIGN KEY (`author_id` ) REFERENCES `Course_Authors_and_Tutors`(`author_id` ), +FOREIGN KEY (`subject_id` ) REFERENCES `Subjects`(`subject_id` ) +); +INSERT INTO Courses (`course_id`, `author_id`, `subject_id`, `course_name`, `course_description`) VALUES (1, 8, 1, 'database', 'database'); +INSERT INTO Courses (`course_id`, `author_id`, `subject_id`, `course_name`, `course_description`) VALUES (2, 6, 1, 'advanced database', 'advanced database'); +INSERT INTO Courses (`course_id`, `author_id`, `subject_id`, `course_name`, `course_description`) VALUES (3, 15, 1, 'operating system', 'operating system'); +INSERT INTO Courses (`course_id`, `author_id`, `subject_id`, `course_name`, `course_description`) VALUES (4, 14, 2, 'Art history', 'Art history'); +INSERT INTO Courses (`course_id`, `author_id`, `subject_id`, `course_name`, `course_description`) VALUES (5, 11, 1, 'data structure', 'data structure'); +INSERT INTO Courses (`course_id`, `author_id`, `subject_id`, `course_name`, `course_description`) VALUES (6, 12, 3, 'English', 'English'); +INSERT INTO Courses (`course_id`, `author_id`, `subject_id`, `course_name`, `course_description`) VALUES (7, 8, 3, 'French', 'French'); +INSERT INTO Courses (`course_id`, `author_id`, `subject_id`, `course_name`, `course_description`) VALUES (8, 4, 3, 'Japanese', 'Japanese'); +INSERT INTO Courses (`course_id`, `author_id`, `subject_id`, `course_name`, `course_description`) VALUES (9, 13, 1, 'AI', 'AI'); +INSERT INTO Courses (`course_id`, `author_id`, `subject_id`, `course_name`, `course_description`) VALUES (10, 5, 3, 'Writing in French', 'Writing in French'); +INSERT INTO Courses (`course_id`, `author_id`, `subject_id`, `course_name`, `course_description`) VALUES (11, 9, 3, 'Spanish', 'Spanish'); +INSERT INTO Courses (`course_id`, `author_id`, `subject_id`, `course_name`, `course_description`) VALUES (12, 5, 2, 'European Arts', 'European Arts'); +INSERT INTO Courses (`course_id`, `author_id`, `subject_id`, `course_name`, `course_description`) VALUES (13, 13, 1, 'machine learning', 'machine learning'); +INSERT INTO Courses (`course_id`, `author_id`, `subject_id`, `course_name`, `course_description`) VALUES (14, 6, 2, 'modern Arts', 'modern Arts'); +INSERT INTO Courses (`course_id`, `author_id`, `subject_id`, `course_name`, `course_description`) VALUES (15, 14, 2, 'Chinese Painting', 'Chinese Painting'); + + +CREATE TABLE `Student_Course_Enrolment` ( +`registration_id` INTEGER PRIMARY KEY, +`student_id` INTEGER NOT NULL, +`course_id` INTEGER NOT NULL, +`date_of_enrolment` DATETIME NOT NULL, +`date_of_completion` DATETIME NOT NULL, +FOREIGN KEY (`course_id` ) REFERENCES `Courses`(`course_id` ), +FOREIGN KEY (`student_id` ) REFERENCES `Students`(`student_id` ) +); + +INSERT INTO Student_Course_Enrolment (`registration_id`, `student_id`, `course_id`, `date_of_enrolment`, `date_of_completion`) VALUES (1, 11, 2, '2017-10-09 07:09:02', '2018-02-26 07:48:52'); +INSERT INTO Student_Course_Enrolment (`registration_id`, `student_id`, `course_id`, `date_of_enrolment`, `date_of_completion`) VALUES (2, 15, 4, '2017-11-13 12:49:33', '2018-03-04 01:24:56'); +INSERT INTO Student_Course_Enrolment (`registration_id`, `student_id`, `course_id`, `date_of_enrolment`, `date_of_completion`) VALUES (3, 10, 8, '2017-10-17 13:50:40', '2018-03-22 02:53:01'); +INSERT INTO Student_Course_Enrolment (`registration_id`, `student_id`, `course_id`, `date_of_enrolment`, `date_of_completion`) VALUES (4, 13, 7, '2017-09-06 06:27:15', '2018-03-07 09:45:48'); +INSERT INTO Student_Course_Enrolment (`registration_id`, `student_id`, `course_id`, `date_of_enrolment`, `date_of_completion`) VALUES (5, 15, 10, '2017-08-20 01:07:18', '2018-03-06 00:27:09'); +INSERT INTO Student_Course_Enrolment (`registration_id`, `student_id`, `course_id`, `date_of_enrolment`, `date_of_completion`) VALUES (6, 14, 1, '2017-09-24 15:17:26', '2018-03-01 00:08:30'); +INSERT INTO Student_Course_Enrolment (`registration_id`, `student_id`, `course_id`, `date_of_enrolment`, `date_of_completion`) VALUES (7, 12, 9, '2017-09-21 07:05:01', '2018-03-04 22:34:37'); +INSERT INTO Student_Course_Enrolment (`registration_id`, `student_id`, `course_id`, `date_of_enrolment`, `date_of_completion`) VALUES (8, 15, 11, '2017-12-07 02:21:13', '2018-02-27 20:06:06'); +INSERT INTO Student_Course_Enrolment (`registration_id`, `student_id`, `course_id`, `date_of_enrolment`, `date_of_completion`) VALUES (9, 8, 9, '2017-08-02 17:21:44', '2018-03-07 00:39:37'); +INSERT INTO Student_Course_Enrolment (`registration_id`, `student_id`, `course_id`, `date_of_enrolment`, `date_of_completion`) VALUES (10, 6, 1, '2017-10-10 10:05:03', '2018-03-19 07:34:05'); +INSERT INTO Student_Course_Enrolment (`registration_id`, `student_id`, `course_id`, `date_of_enrolment`, `date_of_completion`) VALUES (11, 15, 11, '2017-08-17 00:16:46', '2018-03-16 09:00:44'); +INSERT INTO Student_Course_Enrolment (`registration_id`, `student_id`, `course_id`, `date_of_enrolment`, `date_of_completion`) VALUES (12, 3, 7, '2017-11-30 11:40:56', '2018-03-02 14:38:49'); +INSERT INTO Student_Course_Enrolment (`registration_id`, `student_id`, `course_id`, `date_of_enrolment`, `date_of_completion`) VALUES (13, 14, 10, '2017-10-26 20:42:34', '2018-03-10 16:38:28'); +INSERT INTO Student_Course_Enrolment (`registration_id`, `student_id`, `course_id`, `date_of_enrolment`, `date_of_completion`) VALUES (14, 8, 2, '2017-07-15 12:48:43', '2018-03-18 03:23:54'); +INSERT INTO Student_Course_Enrolment (`registration_id`, `student_id`, `course_id`, `date_of_enrolment`, `date_of_completion`) VALUES (15, 4, 8, '2017-12-09 20:49:23', '2018-02-28 09:34:51'); +INSERT INTO Student_Course_Enrolment (`registration_id`, `student_id`, `course_id`, `date_of_enrolment`, `date_of_completion`) VALUES (16, 8, 14, '2017-12-16 15:53:06', '2018-03-22 18:04:54'); +INSERT INTO Student_Course_Enrolment (`registration_id`, `student_id`, `course_id`, `date_of_enrolment`, `date_of_completion`) VALUES (17, 9, 7, '2017-10-29 15:39:31', '2018-03-01 07:12:39'); +INSERT INTO Student_Course_Enrolment (`registration_id`, `student_id`, `course_id`, `date_of_enrolment`, `date_of_completion`) VALUES (18, 2, 4, '2017-11-22 18:29:18', '2018-03-09 17:56:18'); +INSERT INTO Student_Course_Enrolment (`registration_id`, `student_id`, `course_id`, `date_of_enrolment`, `date_of_completion`) VALUES (19, 15, 15, '2017-10-23 08:23:22', '2018-02-26 23:46:25'); +INSERT INTO Student_Course_Enrolment (`registration_id`, `student_id`, `course_id`, `date_of_enrolment`, `date_of_completion`) VALUES (20, 10, 14, '2017-12-04 12:16:10', '2018-03-14 23:33:47'); + +CREATE TABLE `Student_Tests_Taken` ( +`registration_id` INTEGER NOT NULL, +`date_test_taken` DATETIME NOT NULL, +`test_result` VARCHAR(255), +FOREIGN KEY (`registration_id` ) REFERENCES `Student_Course_Enrolment`(`registration_id` ) +); + +INSERT INTO Student_Tests_Taken (`registration_id`, `date_test_taken`, `test_result`) VALUES (12, '2018-03-25 03:27:16', 'Fail'); +INSERT INTO Student_Tests_Taken (`registration_id`, `date_test_taken`, `test_result`) VALUES (10, '2018-03-25 21:50:22', 'Pass'); +INSERT INTO Student_Tests_Taken (`registration_id`, `date_test_taken`, `test_result`) VALUES (7, '2018-03-21 00:32:25', 'Pass'); +INSERT INTO Student_Tests_Taken (`registration_id`, `date_test_taken`, `test_result`) VALUES (7, '2018-03-25 00:44:50', 'Pass'); +INSERT INTO Student_Tests_Taken (`registration_id`, `date_test_taken`, `test_result`) VALUES (4, '2018-03-25 15:06:12', 'Pass'); +INSERT INTO Student_Tests_Taken (`registration_id`, `date_test_taken`, `test_result`) VALUES (16, '2018-03-25 12:00:08', 'Fail'); +INSERT INTO Student_Tests_Taken (`registration_id`, `date_test_taken`, `test_result`) VALUES (16, '2018-03-25 21:22:00', 'Fail'); +INSERT INTO Student_Tests_Taken (`registration_id`, `date_test_taken`, `test_result`) VALUES (19, '2018-03-24 13:22:17', 'Pass'); +INSERT INTO Student_Tests_Taken (`registration_id`, `date_test_taken`, `test_result`) VALUES (19, '2018-03-25 16:59:22', 'Fail'); +INSERT INTO Student_Tests_Taken (`registration_id`, `date_test_taken`, `test_result`) VALUES (4, '2018-03-25 21:41:51', 'Fail'); +INSERT INTO Student_Tests_Taken (`registration_id`, `date_test_taken`, `test_result`) VALUES (9, '2018-03-19 02:04:26', 'Pass'); +INSERT INTO Student_Tests_Taken (`registration_id`, `date_test_taken`, `test_result`) VALUES (5, '2018-03-22 17:07:11', 'Fail'); +INSERT INTO Student_Tests_Taken (`registration_id`, `date_test_taken`, `test_result`) VALUES (17, '2018-03-23 23:47:42', 'Pass'); +INSERT INTO Student_Tests_Taken (`registration_id`, `date_test_taken`, `test_result`) VALUES (2, '2018-03-22 13:10:06', 'Fail'); +INSERT INTO Student_Tests_Taken (`registration_id`, `date_test_taken`, `test_result`) VALUES (2, '2018-03-19 14:48:12', 'Pass'); diff --git a/database/election/election.sqlite b/database/election/election.sqlite new file mode 100644 index 0000000000000000000000000000000000000000..d8dad1f7aa96f41ed0d672cdd75b5f10076c101e Binary files /dev/null and b/database/election/election.sqlite differ diff --git a/database/election/schema.sql b/database/election/schema.sql new file mode 100644 index 0000000000000000000000000000000000000000..6a9b9e9ff529b699bfa332679ff5486ecf466575 --- /dev/null +++ b/database/election/schema.sql @@ -0,0 +1,62 @@ +PRAGMA foreign_keys = ON; + +CREATE TABLE "county" ( +"County_Id" int, +"County_name" text, +"Population" real, +"Zip_code" text, +PRIMARY KEY ("County_Id") +); + +INSERT INTO "county" VALUES (1,"Howard",21000, "D21"); +INSERT INTO "county" VALUES (2,"Baltimore County", 90000,"D08"); +INSERT INTO "county" VALUES (3,"Colony",79000,"D02"); +INSERT INTO "county" VALUES (4,"Mansfield",87200,"D09"); +INSERT INTO "county" VALUES (5,"Manning",13300,"D11"); + + +CREATE TABLE "party" ( +"Party_ID" int, +"Year" real, +"Party" text, +"Governor" text, +"Lieutenant_Governor" text, +"Comptroller" text, +"Attorney_General" text, +"US_Senate" text, +PRIMARY KEY ("Party_ID") +); + + +INSERT INTO "party" VALUES (1,"1998","Democratic","Peter Vallone","Sandra Frankel","Carl McCall","Eliot Spitzer","Charles Schumer"); +INSERT INTO "party" VALUES (2,"1998","Liberal","Betsy McCaughey Ross","Jonathan Reiter","Carl McCall","Eliot Spitzer","Charles Schumer"); +INSERT INTO "party" VALUES (3,"2002","Democratic","Carl McCall","Dennis Mehiel","Alan Hevesi","Eliot Spitzer","(no election)"); +INSERT INTO "party" VALUES (4,"2002","Independence","Tom Golisano","Mary Donohue","John Faso","Eliot Spitzer","(no election)"); +INSERT INTO "party" VALUES (5,"2006","Democratic","Eliot Spitzer","David Paterson","Alan Hevesi","Andrew Cuomo","Hillary Rodham Clinton"); +INSERT INTO "party" VALUES (6,"2006","Independence","Eliot Spitzer","David Paterson","Alan Hevesi","Jeanine Pirro","Hillary Rodham Clinton"); +INSERT INTO "party" VALUES (7,"2006","Working Families","Eliot Spitzer","David Paterson","Alan Hevesi","Andrew Cuomo","Hillary Rodham Clinton"); + + + +CREATE TABLE "election" ( +"Election_ID" int, +"Counties_Represented" text, +"District" int, +"Delegate" text, +"Party" int, +"First_Elected" real, +"Committee" text, +PRIMARY KEY ("Election_ID"), +FOREIGN KEY (`Party`) REFERENCES `party`(`Party_ID`), +FOREIGN KEY (`District`) REFERENCES `county`(`County_Id`) +); + +INSERT INTO "election" VALUES (1,"09.1 9A",1,"Bates, Gail H. Gail H. Bates",1,"2002","Appropriations"); +INSERT INTO "election" VALUES (2,"09.1 9A",1,"Miller, Warren E. Warren E. Miller",1,"2003","Economic Matters"); +INSERT INTO "election" VALUES (3,"12.1 12A",2,"DeBoy, Steven J. Sr. Steven J. DeBoy, Sr.",2,"2002","Appropriations"); +INSERT INTO "election" VALUES (4,"12.1 12A",3,"Malone, James E. Jr. James E. Malone, Jr.",2,"1994","Environmental Matters (Vice-Chair)"); +INSERT INTO "election" VALUES (5,"12.2 12B",2,"Bobo, Elizabeth Elizabeth Bobo",3,"1994","Environmental Matters"); +INSERT INTO "election" VALUES (6,"13",1,"Pendergrass, Shane E. Shane Pendergrass",4,"1994","Health and Government Operations"); +INSERT INTO "election" VALUES (7,"13",4,"Guzzone, Guy Guy Guzzone",1,"2006","Appropriations"); +INSERT INTO "election" VALUES (8,"13",3,"Turner, Frank S. Frank S. Turner",7,"1994","Ways and Means"); + diff --git a/database/election_representative/election_representative.sqlite b/database/election_representative/election_representative.sqlite new file mode 100644 index 0000000000000000000000000000000000000000..dc6a662880ed5e43a1be16f36a6b52d4005e844c Binary files /dev/null and b/database/election_representative/election_representative.sqlite differ diff --git a/database/election_representative/schema.sql b/database/election_representative/schema.sql new file mode 100644 index 0000000000000000000000000000000000000000..03a2806fc3aeb4c5441300a5fa053899f0b6d703 --- /dev/null +++ b/database/election_representative/schema.sql @@ -0,0 +1,37 @@ +PRAGMA foreign_keys = ON; + +CREATE TABLE "election" ( +"Election_ID" int, +"Representative_ID" int, +"Date" text, +"Votes" real, +"Vote_Percent" real, +"Seats" real, +"Place" real, +PRIMARY KEY ("Election_ID"), +FOREIGN KEY ("Representative_ID") REFERENCES `representative`("Representative_ID") +); + +CREATE TABLE "representative" ( +"Representative_ID" int, +"Name" text, +"State" text, +"Party" text, +"Lifespan" text, +PRIMARY KEY ("Representative_ID") +); + +INSERT INTO "representative" VALUES (1,"Dan Quayle","Indiana","Republican","1947–"); +INSERT INTO "representative" VALUES (2,"John Quayle","New York","Democratic","1868–1930"); +INSERT INTO "representative" VALUES (3,"Al Quie","Minnesota","Republican","1923–"); +INSERT INTO "representative" VALUES (4,"James M. Quigley","Pennsylvania","Democratic","1918–"); +INSERT INTO "representative" VALUES (5,"Jimmy Quillen","Tennessee","Republican","1916–2003"); +INSERT INTO "representative" VALUES (6,"Jack Quinn","New York","Republican","1951–"); +INSERT INTO "representative" VALUES (7,"James L. Quinn","Pennsylvania","Democratic","1875–1960"); + +INSERT INTO "election" VALUES (1,1,"July 1942","9423","16.2","6","3"); +INSERT INTO "election" VALUES (2,2,"October 1942","11059","18.5","10","1"); +INSERT INTO "election" VALUES (3,4,"1946","13049","19.5","10","2"); +INSERT INTO "election" VALUES (4,5,"1949","14077","19.5","9","2"); +INSERT INTO "election" VALUES (5,7,"1953","12422","16.0","7","3"); + diff --git a/database/employee_hire_evaluation/employee_hire_evaluation.sqlite b/database/employee_hire_evaluation/employee_hire_evaluation.sqlite new file mode 100644 index 0000000000000000000000000000000000000000..daa2ecfdd2e6030bbe476d6a891b79eead647fee Binary files /dev/null and b/database/employee_hire_evaluation/employee_hire_evaluation.sqlite differ diff --git a/database/employee_hire_evaluation/schema.sql b/database/employee_hire_evaluation/schema.sql new file mode 100644 index 0000000000000000000000000000000000000000..4c149e2ec99ed8814fa26f77d8399f95d584494b --- /dev/null +++ b/database/employee_hire_evaluation/schema.sql @@ -0,0 +1,84 @@ + +PRAGMA foreign_keys = ON; + +CREATE TABLE "employee" ( +"Employee_ID" int, +"Name" text, +"Age" int, +"City" text, +PRIMARY KEY ("Employee_ID") +); + + +INSERT INTO "employee" VALUES (1, "George Chuter",23,"Bristol"); +INSERT INTO "employee" VALUES (2,"Lee Mears",29,"Bath"); +INSERT INTO "employee" VALUES (3,"Mark Regan",43,"Bristol"); +INSERT INTO "employee" VALUES (4,"Jason Hobson",30,"Bristol"); +INSERT INTO "employee" VALUES (5,"Tim Payne",29,"Wasps"); +INSERT INTO "employee" VALUES (6,"Andrew Sheridan",28,"Sale"); +INSERT INTO "employee" VALUES (7,"Matt Stevens",29,"Bath"); +INSERT INTO "employee" VALUES (8,"Phil Vickery",40,"Wasps"); +INSERT INTO "employee" VALUES (9,"Steve Borthwick",32,"Bath"); +INSERT INTO "employee" VALUES (10,"Louis Deacon",36,"Leicester"); + + + +CREATE TABLE "shop" ( +"Shop_ID" int, +"Name" text, +"Location" text, +"District" text, +"Number_products" int, +"Manager_name" text, +PRIMARY KEY ("Shop_ID") +); + + +INSERT INTO "shop" VALUES (1,"FC Haka","Valkeakoski","Tehtaan kenttä","3516","Olli Huttunen"); +INSERT INTO "shop" VALUES (2,"HJK","Helsinki","Finnair Stadium","10770","Antti Muurinen"); +INSERT INTO "shop" VALUES (3,"FC Honka","Espoo","Tapiolan Urheilupuisto","6000","Mika Lehkosuo"); +INSERT INTO "shop" VALUES (4,"FC Inter","Turku","Veritas Stadion","10000","Job Dragtsma"); +INSERT INTO "shop" VALUES (5,"FF Jaro","Jakobstad","Jakobstads Centralplan","5000","Mika Laurikainen"); +INSERT INTO "shop" VALUES (6,"FC KooTeePee","Kotka","Arto Tolsa Areena","4780","Tommi Kautonen"); +INSERT INTO "shop" VALUES (7,"KuPS","Kuopio","Magnum Areena","3500","Kai Nyyssönen"); +INSERT INTO "shop" VALUES (8,"FC Lahti","Lahti","Lahden Stadion","15000","Ilkka Mäkelä"); +INSERT INTO "shop" VALUES (9,"IFK Mariehamn","Mariehamn","Wiklöf Holding Arena","1600","Pekka Lyyski"); + + +CREATE TABLE "hiring" ( +"Shop_ID" int, +"Employee_ID" int, +"Start_from" text, +"Is_full_time" bool, +PRIMARY KEY ("Employee_ID"), +FOREIGN KEY (`Shop_ID`) REFERENCES `shop`(`Shop_ID`), +FOREIGN KEY (`Employee_ID`) REFERENCES `employee`(`Employee_ID`) +); + +INSERT INTO "hiring" VALUES (1,1,"2009","T"); +INSERT INTO "hiring" VALUES (1,2,"2003","T"); +INSERT INTO "hiring" VALUES (8,3,"2011","F"); +INSERT INTO "hiring" VALUES (4,4,"2012","T"); +INSERT INTO "hiring" VALUES (5,5,"2013","T"); +INSERT INTO "hiring" VALUES (2,6,"2010","F"); +INSERT INTO "hiring" VALUES (6,7,"2008","T"); + + + + +CREATE TABLE "evaluation" ( +"Employee_ID" text, +"Year_awarded" text, +"Bonus" real, +PRIMARY KEY ("Employee_ID","Year_awarded"), +FOREIGN KEY (`Employee_ID`) REFERENCES `employee`(`Employee_ID`) +); + + +INSERT INTO "evaluation" VALUES (1,"2011", 3000); +INSERT INTO "evaluation" VALUES (2,"2015", 3200); +INSERT INTO "evaluation" VALUES (1,"2016", 2900); +INSERT INTO "evaluation" VALUES (4,"2017", 3200); +INSERT INTO "evaluation" VALUES (7,"2018", 3200); +INSERT INTO "evaluation" VALUES (10,"2016", 4000); + diff --git a/database/entertainment_awards/entertainment_awards.sqlite b/database/entertainment_awards/entertainment_awards.sqlite new file mode 100644 index 0000000000000000000000000000000000000000..b54c6e5b8576bc86c3e389304dae96c9cf4e6a74 Binary files /dev/null and b/database/entertainment_awards/entertainment_awards.sqlite differ diff --git a/database/entertainment_awards/schema.sql b/database/entertainment_awards/schema.sql new file mode 100644 index 0000000000000000000000000000000000000000..38c70e48596e117c030d5f2ca33fceb122a6f84b --- /dev/null +++ b/database/entertainment_awards/schema.sql @@ -0,0 +1,54 @@ +PRAGMA foreign_keys = ON; + + +CREATE TABLE "festival_detail" ( +"Festival_ID" int, +"Festival_Name" text, +"Chair_Name" text, +"Location" text, +"Year" int, +"Num_of_Audience" int, +PRIMARY KEY ("Festival_ID") +); + +INSERT INTO "festival_detail" VALUES (1,"Panasonic Awards","Raymond Floyd","United States","2006","152"); +INSERT INTO "festival_detail" VALUES (2,"Flower Awards","Charles Coody","United States","2007","155"); +INSERT INTO "festival_detail" VALUES (3,"Cherry Awards","Doug Ford","United States","2007","160"); +INSERT INTO "festival_detail" VALUES (4,"Gobel Awards","Arnold Palmer","United States","2008","160"); +INSERT INTO "festival_detail" VALUES (5,"LA Awards","Lucy Lu","United States","2010","161"); + + +CREATE TABLE artwork ( +"Artwork_ID" int, +"Type" text, +"Name" text, +PRIMARY KEY ("Artwork_ID") +); + + +INSERT INTO artwork VALUES (1,"Program Music/Variety Show","Indonesian Idol"); +INSERT INTO artwork VALUES (2,"Program Music/Variety Show","I Know"); +INSERT INTO artwork VALUES (3,"Presenter Music/Variety Show","Loving you"); +INSERT INTO artwork VALUES (4,"Program Music/Variety Show","Why"); +INSERT INTO artwork VALUES (5,"Presenter Music/Variety Show","Boys"); +INSERT INTO artwork VALUES (6,"Program Talent Show","Cats"); +INSERT INTO artwork VALUES (7,"Presenter Talent Show","Daniel Mananta"); +INSERT INTO artwork VALUES (8,"Program Talent Show","Martin"); +INSERT INTO artwork VALUES (9,"Presenter Talent Show","Back Home"); + +CREATE TABLE nomination ( +"Artwork_ID" int, +"Festival_ID" int, +"Result" text, +PRIMARY KEY ("Artwork_ID","Festival_ID"), +FOREIGN KEY ("Artwork_ID") REFERENCES `artwork`("Artwork_ID"), +FOREIGN KEY ("Festival_ID") REFERENCES `festival_detail`("Festival_ID") +); + +INSERT INTO nomination VALUES (1,2,"Nominated"); +INSERT INTO nomination VALUES (2,2,"Won"); +INSERT INTO nomination VALUES (3,1,"Nominated"); +INSERT INTO nomination VALUES (4,1,"Won"); +INSERT INTO nomination VALUES (8,5,"Nominated"); +INSERT INTO nomination VALUES (9,5,"Nominated"); + diff --git a/database/entrepreneur/entrepreneur.sqlite b/database/entrepreneur/entrepreneur.sqlite new file mode 100644 index 0000000000000000000000000000000000000000..9599e53265eb0980468a1c3bb9e84ab12a59905f Binary files /dev/null and b/database/entrepreneur/entrepreneur.sqlite differ diff --git a/database/entrepreneur/schema.sql b/database/entrepreneur/schema.sql new file mode 100644 index 0000000000000000000000000000000000000000..0934b7f0a04766d0bf0981d4b32c230d2dae591d --- /dev/null +++ b/database/entrepreneur/schema.sql @@ -0,0 +1,40 @@ +PRAGMA foreign_keys = ON; + +CREATE TABLE "entrepreneur" ( +"Entrepreneur_ID" int, +"People_ID" int, +"Company" text, +"Money_Requested" real, +"Investor" text, +PRIMARY KEY ("Entrepreneur_ID"), +FOREIGN KEY ("People_ID") REFERENCES "people"("People_ID") +); + +CREATE TABLE "people" ( +"People_ID" int, +"Name" text, +"Height" real, +"Weight" real, +"Date_of_Birth" text, +PRIMARY KEY ("People_ID") +); + + +INSERT INTO "people" VALUES (1,"Francesco Postiglione",1.9,80,"1972-04-29"); +INSERT INTO "people" VALUES (2,"Leonardo Binchi",1.86,57,"1975-08-27"); +INSERT INTO "people" VALUES (3,"Fabrizio Buonocore",1.83, 45, "1977-04-28"); +INSERT INTO "people" VALUES (4,"Marco Gerini",1.72, 75,"1971-08-05"); +INSERT INTO "people" VALUES (5,"Roberto Calcaterra",1.75, 67, "1972-02-06"); +INSERT INTO "people" VALUES (6,"Goran Fiorentini",1.78, 89, "1981-11-21"); +INSERT INTO "people" VALUES (7,"Alberto Angelini",1.82,58, "1974-09-28"); +INSERT INTO "people" VALUES (8,"Maurizio Felugo",1.95,76, "1981-03-04"); + +INSERT INTO "entrepreneur" VALUES (1,1,"Umbrolly","150000","Duncan Bannatyne"); +INSERT INTO "entrepreneur" VALUES (2,2,"Grails Ltd","120000","Doug Richard"); +INSERT INTO "entrepreneur" VALUES (3,3,"Le Beanock","54000","Rachel Elnaugh"); +INSERT INTO "entrepreneur" VALUES (4,5,"IV Cam","50000","Peter Jones"); +INSERT INTO "entrepreneur" VALUES (5,6,"Mycorrhizal Systems","75000","Simon Woodroffe"); +INSERT INTO "entrepreneur" VALUES (6,8,"Elizabeth Galton Ltd","110000","Duncan Bannatyne"); + + + diff --git a/database/epinions_1/epinions_1.sqlite b/database/epinions_1/epinions_1.sqlite new file mode 100644 index 0000000000000000000000000000000000000000..78b1e2d02bfd357dc3143b8dbab5eb54d7574b5d Binary files /dev/null and b/database/epinions_1/epinions_1.sqlite differ diff --git a/database/farm/farm.sqlite b/database/farm/farm.sqlite new file mode 100644 index 0000000000000000000000000000000000000000..3fa3b9efa101f8aed0c7c2e7ba54c79f36958b04 Binary files /dev/null and b/database/farm/farm.sqlite differ diff --git a/database/farm/schema.sql b/database/farm/schema.sql new file mode 100644 index 0000000000000000000000000000000000000000..c374b70ac4f6e17c357dd3732a2507375c07fcb7 --- /dev/null +++ b/database/farm/schema.sql @@ -0,0 +1,86 @@ + +PRAGMA foreign_keys = ON; + +CREATE TABLE "city" ( +"City_ID" int, +"Official_Name" text, +"Status" text, +"Area_km_2" real, +"Population" real, +"Census_Ranking" text, +PRIMARY KEY ("City_ID") +); + +CREATE TABLE "farm" ( +"Farm_ID" int, +"Year" int, +"Total_Horses" real, +"Working_Horses" real, +"Total_Cattle" real, +"Oxen" real, +"Bulls" real, +"Cows" real, +"Pigs" real, +"Sheep_and_Goats" real, +PRIMARY KEY ("Farm_ID") +); + +CREATE TABLE "farm_competition" ( +"Competition_ID" int, +"Year" int, +"Theme" text, +"Host_city_ID" int, +"Hosts" text, +PRIMARY KEY ("Competition_ID"), +FOREIGN KEY (`Host_city_ID`) REFERENCES `city`(`City_ID`) +); + + +CREATE TABLE "competition_record" ( +"Competition_ID" int, +"Farm_ID" int, +"Rank" int, +PRIMARY KEY ("Competition_ID","Farm_ID"), +FOREIGN KEY (`Competition_ID`) REFERENCES `farm_competition`(`Competition_ID`), +FOREIGN KEY (`Farm_ID`) REFERENCES `farm`(`Farm_ID`) +); + + + +INSERT INTO "city" VALUES (1,"Grand Falls/Grand-Sault","Town","18.06","5706","636 of 5008"); +INSERT INTO "city" VALUES (2,"Perth-Andover","Village","8.89","1778","1442 of 5,008"); +INSERT INTO "city" VALUES (3,"Plaster Rock","Village","3.09","1135","1936 of 5,008"); +INSERT INTO "city" VALUES (4,"Drummond","Village","8.91","775","2418 of 5008"); +INSERT INTO "city" VALUES (5,"Aroostook","Village","2.24","351","3460 of 5008"); + + +INSERT INTO "farm" VALUES (1,"1927","5056.5","3900.1","8374.5","805.5","31.6","3852.1","4412.4","7956.3"); +INSERT INTO "farm" VALUES (2,"1928","5486.9","4090.5","8604.8","895.3","32.8","3987.0","6962.9","8112.2"); +INSERT INTO "farm" VALUES (3,"1929","5607.5","4198.8","7611.0","593.7","26.9","3873.0","4161.2","7030.8"); +INSERT INTO "farm" VALUES (4,"1930","5308.2","3721.6","6274.1","254.8","49.6","3471.6","3171.8","4533.4"); +INSERT INTO "farm" VALUES (5,"1931","4781.3","3593.7","6189.5","113.8","40.0","3377.0","3373.3","3364.8"); +INSERT INTO "farm" VALUES (6,"1932","3658.9","3711.6","5006.7","105.2","71.6","2739.5","2623.7","2109.5"); +INSERT INTO "farm" VALUES (7,"1933","2604.8","3711.2","4446.3","116.9","37.6","2407.2","2089.2","2004.7"); +INSERT INTO "farm" VALUES (8,"1934","2546.9","2197.3","5277.5","156.5","46.7","2518.0","4236.7","2197.1"); + + +INSERT INTO "farm_competition" VALUES (1,"2013","Carnival M is back!",1,"Miley Cyrus Jared Leto and Karen Mok"); +INSERT INTO "farm_competition" VALUES (2,"2006","Codehunters",2,"Leehom Wang and Kelly Rowland"); +INSERT INTO "farm_competition" VALUES (3,"2005","MTV Asia Aid",3,"Alicia Keys"); +INSERT INTO "farm_competition" VALUES (4,"2004","Valentine's Day",4,"Vanness Wu and Michelle Branch"); +INSERT INTO "farm_competition" VALUES (5,"2003","MTV Cube",5,"Shaggy and Coco Lee"); +INSERT INTO "farm_competition" VALUES (6,"2002","Aliens",5,"Mandy Moore and Ronan Keating"); + + +INSERT INTO "competition_record" VALUES (1,8,1); +INSERT INTO "competition_record" VALUES (1,2,2); +INSERT INTO "competition_record" VALUES (1,3,3); +INSERT INTO "competition_record" VALUES (2,1,3); +INSERT INTO "competition_record" VALUES (2,4,1); +INSERT INTO "competition_record" VALUES (2,3,2); +INSERT INTO "competition_record" VALUES (3,7,1); +INSERT INTO "competition_record" VALUES (3,1,3); +INSERT INTO "competition_record" VALUES (4,3,2); +INSERT INTO "competition_record" VALUES (4,1,4); +INSERT INTO "competition_record" VALUES (5,5,1); +INSERT INTO "competition_record" VALUES (5,3,2); diff --git a/database/film_rank/film_rank.sqlite b/database/film_rank/film_rank.sqlite new file mode 100644 index 0000000000000000000000000000000000000000..e3d51cd9928958df4a25b6771259083b863d1594 Binary files /dev/null and b/database/film_rank/film_rank.sqlite differ diff --git a/database/film_rank/schema.sql b/database/film_rank/schema.sql new file mode 100644 index 0000000000000000000000000000000000000000..358ba3e0501e47db6114b51065e08c77e50541da --- /dev/null +++ b/database/film_rank/schema.sql @@ -0,0 +1,70 @@ + +PRAGMA foreign_keys = ON; + + + +CREATE TABLE "film" ( +"Film_ID" int, +"Title" text, +"Studio" text, +"Director" text, +"Gross_in_dollar" int, +PRIMARY KEY ("Film_ID") +); + + +INSERT INTO "film" VALUES (1,"ET the Extra-Terrestrial","Universal","Steven Spielberg","435110554"); +INSERT INTO "film" VALUES (2,"Tootsie","Columbia","Sydney Pollack","177200000"); +INSERT INTO "film" VALUES (3,"An Officer and a Gentleman","Paramount / Lorimar","Taylor Hackford","129795554"); +INSERT INTO "film" VALUES (4,"Rocky III","United Artists","Sylvester Stallone","125049125"); +INSERT INTO "film" VALUES (5,"Porky's","20th Century Fox","Bob Clark","109492484"); +INSERT INTO "film" VALUES (6,"Star Trek II: The Wrath of Khan","Paramount","Nicholas Meyer","79912963"); +INSERT INTO "film" VALUES (7,"48 Hrs","Paramount","Walter Hill","78868508"); +INSERT INTO "film" VALUES (8,"Poltergeist","MGM","Tobe Hooper","76606280"); +INSERT INTO "film" VALUES (9,"The Best Little Whorehouse in Texas","Universal / RKO","Colin Higgins","69701637"); +INSERT INTO "film" VALUES (10,"Annie","Columbia / Rastar","John Huston","57059003"); +INSERT INTO "film" VALUES (11,"The Verdict","20th Century Fox","Sidney Lumet","53977250"); +INSERT INTO "film" VALUES (12,"Gandhi","Columbia","Richard Attenborough","52767889"); +INSERT INTO "film" VALUES (13,"First Blood","Orion / Carolco","Ted Kotcheff","47212904"); + + +CREATE TABLE "market" ( +"Market_ID" int, +"Country" text, +"Number_cities" int, +PRIMARY KEY ("Market_ID") +); + +INSERT INTO "market" VALUES (1,"Japan",209); +INSERT INTO "market" VALUES (2,"China",540); +INSERT INTO "market" VALUES (3,"USA",700); +INSERT INTO "market" VALUES (4,"Russia",231); +INSERT INTO "market" VALUES (5,"France",212); +INSERT INTO "market" VALUES (6,"Poland",453); + + +CREATE TABLE "film_market_estimation" ( +"Estimation_ID" int, +"Low_Estimate" real, +"High_Estimate" real, +"Film_ID" int, +"Type" text, +"Market_ID" int, +"Year" int, +PRIMARY KEY ("Estimation_ID"), +FOREIGN KEY ("Film_ID") REFERENCES film("Film_ID"), +FOREIGN KEY ("Market_ID") REFERENCES market("Market_ID") +); + + +INSERT INTO "film_market_estimation" VALUES (1,"80000","80400",1,"Mass suicide murder",1,"1945"); +INSERT INTO "film_market_estimation" VALUES (2,"8000","8000",2,"Mass suicide",2,"1944"); +INSERT INTO "film_market_estimation" VALUES (3,"3000","80400",3,"Mass human sacrifice",3,"1487"); +INSERT INTO "film_market_estimation" VALUES (4,"960","960",4,"Mass suicide",2,"1973"); +INSERT INTO "film_market_estimation" VALUES (5,"913","913",4,"Mass suicide murder",1,"1978"); +INSERT INTO "film_market_estimation" VALUES (6,"300","1000",4,"Mass suicide",1,"2000"); +INSERT INTO "film_market_estimation" VALUES (7,"53","53",4,"Mass suicide",1,"1994"); +INSERT INTO "film_market_estimation" VALUES (8,"39","39",1,"Mass suicide",2,"1997"); +INSERT INTO "film_market_estimation" VALUES (9,"16","16",1,"Mass suicide",3,"1995"); + + diff --git a/database/flight_1/flight_1.sqlite b/database/flight_1/flight_1.sqlite new file mode 100644 index 0000000000000000000000000000000000000000..d4404c23f209904a223b19d08c91e80f2581ad8f Binary files /dev/null and b/database/flight_1/flight_1.sqlite differ diff --git a/database/flight_1/schema.sql b/database/flight_1/schema.sql new file mode 100644 index 0000000000000000000000000000000000000000..5834b4cbc7c4f140786c06ac25ff3fa618b0c0a8 --- /dev/null +++ b/database/flight_1/schema.sql @@ -0,0 +1,174 @@ +-- drop table flight cascade constraints; +-- drop table aircraft cascade constraints; +-- drop table employee cascade constraints; +-- drop table certificate cascade constraints; + +create table flight( + flno number(4,0) primary key, + origin varchar2(20), + destination varchar2(20), + distance number(6,0), + departure_date date, + arrival_date date, + price number(7,2), + aid number(9,0), + foreign key("aid") references `aircraft`("aid")); + +create table aircraft( + aid number(9,0) primary key, + name varchar2(30), + distance number(6,0)); + +create table employee( + eid number(9,0) primary key, + name varchar2(30), + salary number(10,2)); + +create table certificate( + eid number(9,0), + aid number(9,0), + primary key(eid,aid), + foreign key("eid") references `employee`("eid"), + foreign key("aid") references `aircraft`("aid")); + +INSERT INTO flight (FLNO, origin, destination, distance, departure_date, arrival_date, price,aid) VALUES (99.0,'Los Angeles','Washington D.C.',2308.0,'04/12/2005 09:30','04/12/2005 09:40',235.98, 1); + +INSERT INTO flight (FLNO, origin, destination, distance, departure_date, arrival_date, price,aid) VALUES (13.0,'Los Angeles','Chicago',1749.0,'04/12/2005 08:45', '04/12/2005 08:45',220.98, 3); + +INSERT INTO flight (FLNO, origin, destination, distance, departure_date, arrival_date, price,aid) VALUES (346.0,'Los Angeles','Dallas',1251.0,'04/12/2005 11:50','04/12/2005 07:05',225-43, 2); + +INSERT INTO flight (FLNO, origin, destination, distance, departure_date, arrival_date, price,aid) VALUES (387.0,'Los Angeles','Boston',2606.0,'04/12/2005 07:03', '04/12/2005 05:03',261.56, 6); + +INSERT INTO flight (FLNO, origin, destination, distance, departure_date, arrival_date, price,aid) VALUES (7.0,'Los Angeles','Sydney',7487.0,'04/12/2005 05:30', '04/12/2005 11:10',278.56, 3); + +INSERT INTO flight (FLNO, origin, destination, distance, departure_date, arrival_date, price,aid) VALUES (2.0,'Los Angeles','Tokyo',5478.0,'04/12/2005 06:30','04/12/2005 03:55',780.99, 9); + +INSERT INTO flight (FLNO, origin, destination, distance, departure_date, arrival_date, price,aid) VALUES (33.0,'Los Angeles','Honolulu',2551.0,'04/12/2005 09:15', '04/12/2005 11:15',375.23, 7); + +INSERT INTO flight (FLNO, origin, destination, distance, departure_date, arrival_date, price,aid) VALUES (34.0,'Los Angeles','Honolulu',2551.0,'04/12/2005 12:45', '04/12/2005 03:18',425.98, 5); + +INSERT INTO flight (FLNO, origin, destination, distance, departure_date, arrival_date, price,aid) VALUES (76.0,'Chicago','Los Angeles',1749.0,'04/12/2005 08:32', '04/12/2005 10:03',220.98, 9); + +INSERT INTO flight (FLNO, origin, destination, distance, departure_date, arrival_date, price,aid) VALUES (68.0,'Chicago','New York',802.0,'04/12/2005 09:00','04/12/2005 12:02',202.45, 10); + + +Insert into aircraft (AID,name,distance) values ('1','Boeing 747-400','8430'); +Insert into aircraft (AID,name,distance) values ('2','Boeing 737-800','3383'); +Insert into aircraft (AID,name,distance) values ('3','Airbus A340-300','7120'); +Insert into aircraft (AID,name,distance) values ('4','British Aerospace Jetstream 41','1502'); +Insert into aircraft (AID,name,distance) values ('5','Embraer ERJ-145','1530'); +Insert into aircraft (AID,name,distance) values ('6','SAAB 340','2128'); +Insert into aircraft (AID,name,distance) values ('7','Piper Archer III','520'); +Insert into aircraft (AID,name,distance) values ('8','Tupolev 154','4103'); +Insert into aircraft (AID,name,distance) values ('16','Schwitzer 2-33','30'); +Insert into aircraft (AID,name,distance) values ('9','Lockheed L1011','6900'); +Insert into aircraft (AID,name,distance) values ('10','Boeing 757-300','4010'); +Insert into aircraft (AID,name,distance) values ('11','Boeing 777-300','6441'); +Insert into aircraft (AID,name,distance) values ('12','Boeing 767-400ER','6475'); +Insert into aircraft (AID,name,distance) values ('13','Airbus A320','2605'); +Insert into aircraft (AID,name,distance) values ('14','Airbus A319','1805'); +Insert into aircraft (AID,name,distance) values ('15','Boeing 727','1504'); + + +Insert into employee (EID,name,salary) values ('242518965','James Smith','120433'); +Insert into employee (EID,name,salary) values ('141582651','Mary Johnson','178345'); +Insert into employee (EID,name,salary) values ('11564812','John Williams','153972'); +Insert into employee (EID,name,salary) values ('567354612','Lisa Walker','256481'); +Insert into employee (EID,name,salary) values ('552455318','Larry West','101745'); +Insert into employee (EID,name,salary) values ('550156548','Karen Scott','205187'); +Insert into employee (EID,name,salary) values ('390487451','Lawrence Sperry','212156'); +Insert into employee (EID,name,salary) values ('274878974','Michael Miller','99890'); +Insert into employee (EID,name,salary) values ('254099823','Patricia Jones','24450'); +Insert into employee (EID,name,salary) values ('356187925','Robert Brown','44740'); +Insert into employee (EID,name,salary) values ('355548984','Angela Martinez','212156'); +Insert into employee (EID,name,salary) values ('310454876','Joseph Thompson','212156'); +Insert into employee (EID,name,salary) values ('489456522','Linda Davis','27984'); +Insert into employee (EID,name,salary) values ('489221823','Richard Jackson','23980'); +Insert into employee (EID,name,salary) values ('548977562','William Ward','84476'); +Insert into employee (EID,name,salary) values ('310454877','Chad Stewart','33546'); +Insert into employee (EID,name,salary) values ('142519864','Betty Adams','227489'); +Insert into employee (EID,name,salary) values ('269734834','George Wright','289950'); +Insert into employee (EID,name,salary) values ('287321212','Michael Miller','48090'); +Insert into employee (EID,name,salary) values ('552455348','Dorthy Lewis','152013'); +Insert into employee (EID,name,salary) values ('248965255','Barbara Wilson','43723'); +Insert into employee (EID,name,salary) values ('159542516','William Moore','48250'); +Insert into employee (EID,name,salary) values ('348121549','Haywood Kelly','32899'); +Insert into employee (EID,name,salary) values ('90873519','Elizabeth Taylor','32021'); +Insert into employee (EID,name,salary) values ('486512566','David Anderson','43001'); +Insert into employee (EID,name,salary) values ('619023588','Jennifer Thomas','54921'); +Insert into employee (EID,name,salary) values ('15645489','Donald King','18050'); +Insert into employee (EID,name,salary) values ('556784565','Mark Young','205187'); +Insert into employee (EID,name,salary) values ('573284895','Eric Cooper','114323'); +Insert into employee (EID,name,salary) values ('574489456','William Jones','105743'); +Insert into employee (EID,name,salary) values ('574489457','Milo Brooks','20'); + + +Insert into certificate (EID,AID) values ('11564812','2'); +Insert into certificate (EID,AID) values ('11564812','10'); +Insert into certificate (EID,AID) values ('90873519','6'); +Insert into certificate (EID,AID) values ('141582651','2'); +Insert into certificate (EID,AID) values ('141582651','10'); +Insert into certificate (EID,AID) values ('141582651','12'); +Insert into certificate (EID,AID) values ('142519864','1'); +Insert into certificate (EID,AID) values ('142519864','2'); +Insert into certificate (EID,AID) values ('142519864','3'); +Insert into certificate (EID,AID) values ('142519864','7'); +Insert into certificate (EID,AID) values ('142519864','10'); +Insert into certificate (EID,AID) values ('142519864','11'); +Insert into certificate (EID,AID) values ('142519864','12'); +Insert into certificate (EID,AID) values ('142519864','13'); +Insert into certificate (EID,AID) values ('159542516','5'); +Insert into certificate (EID,AID) values ('159542516','7'); +Insert into certificate (EID,AID) values ('242518965','2'); +Insert into certificate (EID,AID) values ('242518965','10'); +Insert into certificate (EID,AID) values ('269734834','1'); +Insert into certificate (EID,AID) values ('269734834','2'); +Insert into certificate (EID,AID) values ('269734834','3'); +Insert into certificate (EID,AID) values ('269734834','4'); +Insert into certificate (EID,AID) values ('269734834','5'); +Insert into certificate (EID,AID) values ('269734834','6'); +Insert into certificate (EID,AID) values ('269734834','7'); +Insert into certificate (EID,AID) values ('269734834','8'); +Insert into certificate (EID,AID) values ('269734834','9'); +Insert into certificate (EID,AID) values ('269734834','10'); +Insert into certificate (EID,AID) values ('269734834','11'); +Insert into certificate (EID,AID) values ('269734834','12'); +Insert into certificate (EID,AID) values ('269734834','13'); +Insert into certificate (EID,AID) values ('269734834','14'); +Insert into certificate (EID,AID) values ('269734834','15'); +Insert into certificate (EID,AID) values ('274878974','10'); +Insert into certificate (EID,AID) values ('274878974','12'); +Insert into certificate (EID,AID) values ('310454876','8'); +Insert into certificate (EID,AID) values ('310454876','9'); +Insert into certificate (EID,AID) values ('355548984','8'); +Insert into certificate (EID,AID) values ('355548984','9'); +Insert into certificate (EID,AID) values ('356187925','6'); +Insert into certificate (EID,AID) values ('390487451','3'); +Insert into certificate (EID,AID) values ('390487451','13'); +Insert into certificate (EID,AID) values ('390487451','14'); +Insert into certificate (EID,AID) values ('548977562','7'); +Insert into certificate (EID,AID) values ('550156548','1'); +Insert into certificate (EID,AID) values ('550156548','12'); +Insert into certificate (EID,AID) values ('552455318','2'); +Insert into certificate (EID,AID) values ('552455318','7'); +Insert into certificate (EID,AID) values ('552455318','14'); +Insert into certificate (EID,AID) values ('556784565','2'); +Insert into certificate (EID,AID) values ('556784565','3'); +Insert into certificate (EID,AID) values ('556784565','5'); +Insert into certificate (EID,AID) values ('567354612','1'); +Insert into certificate (EID,AID) values ('567354612','2'); +Insert into certificate (EID,AID) values ('567354612','3'); +Insert into certificate (EID,AID) values ('567354612','4'); +Insert into certificate (EID,AID) values ('567354612','5'); +Insert into certificate (EID,AID) values ('567354612','7'); +Insert into certificate (EID,AID) values ('567354612','9'); +Insert into certificate (EID,AID) values ('567354612','10'); +Insert into certificate (EID,AID) values ('567354612','11'); +Insert into certificate (EID,AID) values ('567354612','12'); +Insert into certificate (EID,AID) values ('567354612','15'); +Insert into certificate (EID,AID) values ('573284895','3'); +Insert into certificate (EID,AID) values ('573284895','4'); +Insert into certificate (EID,AID) values ('573284895','5'); +Insert into certificate (EID,AID) values ('574489456','6'); +Insert into certificate (EID,AID) values ('574489456','8'); +Insert into certificate (EID,AID) values ('574489457','7'); diff --git a/database/flight_2/annotation.json b/database/flight_2/annotation.json new file mode 100644 index 0000000000000000000000000000000000000000..7701d8328a9510003f9a2f7c67ef75b5c9af20e0 --- /dev/null +++ b/database/flight_2/annotation.json @@ -0,0 +1,38 @@ +{ + "label_id": null, + "data": [ + { + "nl": "Find all airlines that have at least one flight out of AXX airport. Report the full name and the abbreviation of each airline\n", + "id": 0 + }, + { + "nl": "Find all destinations served from the AXX airport by Northwest. Re- port flight number, airport code and the full name of the airport.\n", + "id": 1 + }, + { + "nl": "Find all airports served by ALL five of the airlines listed below: Delta, Frontier, USAir, UAL and Southwest. Report just the airport codes.\n", + "id": 2 + }, + { + "nl": "Find all airports that are served by at least three Southwest flights. Report just the three-letter codes of the airports\n", + "id": 3 + }, + { + "nl": "Find the number of airports from which airport ANP can be reached with exactly one transfer.\n", + "id": 4 + }, + { + "nl": "Find the number of airports from which airport ATE can be reached with at most one transfer. (make sure to exclude ATE itself from the count). Report just the number.\n", + "id": 5 + }, + { + "nl": "Find all airports with exactly 17 outgoing flights. Report airport code and the full name of the airport\n", + "id": 6 + }, + { + "nl": "For each room report the total revenue for all stays and the average revenue per stay generated by stays in the room that originated in the months of September\n", + "id": 7 + } + ], + "review_id": null +} \ No newline at end of file diff --git a/database/flight_2/data_csv/README.AIRLINES.txt b/database/flight_2/data_csv/README.AIRLINES.txt new file mode 100644 index 0000000000000000000000000000000000000000..fb7fa500054bece0f24794fdaa5abe1bb8a7d9ed --- /dev/null +++ b/database/flight_2/data_csv/README.AIRLINES.txt @@ -0,0 +1,96 @@ +***************************************************** +CPE 365 Alex Dekhtyar +Cal Poly Computer Science Department +San Luis Obispo College of Engineering +California dekhtyar@csc.calpoly.edu +***************************************************** + AIRLINES DATASET + Version 1.0 + November 19, 2007 +***************************************************** +Sources: the list of US airports is from + http://www.world-airport-codes.com/ + + the list of airlines is from http://www.wikipedia.org + + the list of flights is synthesized. + +****************************************************** + +This file describes the contents of the AIRLINES dataset +developed for the CPE 365, Introduction to Databases, +course at Cal Poly. + +The dataset contains information about some US airlines and +airports, and routes flown by the airlines between these airports. + +General Conventions. + + 1. All files in the dataset are CSV (comma-separated values) files. + 2. First line of each file provides the names of + columns. Second line may be empty, or may contain + the first row of the data. + 3. All string values are enclosed in single quotes (') + 4. All string values in the airports.csv and flights.csv files + have a trailing space.This is important to note, because + one of the string columns, airport code is the unique identifier + of the airport. This issue needs to be dealt with programmatically. + + + The dataset consists of the following files: + + + - airlines.csv : list of airlines + - airports100.csv : list of airports + - flights.csv : list of flights + + + Individual files have the following formats. + +************************************************************************** + +airlines.csv + + Id : unique identifier of the airline + Airline : full name of the airline + Abbreviation : abbreviated name of the airline + Country : country of the airline + + + +************************************************************************** + +airports100.csv + + City : location of the airport + AirportCode : unique three-letter airport code + AirportName : name of the airport + Country : country of the airport +CountryAbbrev : abbreviation of the country + + + +************************************************************************** + +flights.csv + + Airline : airline that manages the flight + FlightNo : flight number (unique for each airline, may repeat + for different airlines) +SourceAirport : Code for the airport from which the flight originates + (see airports100.AirportCode) + DestAirport : Code for the airport at which the flight terminates + +************************************************************************** +************************************************************************** + +Permission granted to use and distribute this dataset in its current form, +provided this file is kept unchanged and is distributed together with the +data. + +Permission granted to modify and expand this dataset, provided this +file is updated accordingly with new information. + +************************************************************************** +************************************************************************** + diff --git a/database/flight_2/data_csv/airlines.csv b/database/flight_2/data_csv/airlines.csv new file mode 100644 index 0000000000000000000000000000000000000000..9cf768804d017d763674666c897346c42f3c6599 --- /dev/null +++ b/database/flight_2/data_csv/airlines.csv @@ -0,0 +1,14 @@ +uid, Airline, Abbreviation, Country +1,'United Airlines','UAL','USA' +2,'US Airways','USAir','USA' +3,'Delta Airlines','Delta','USA' +4,'Southwest Airlines','Southwest','USA' +5,'American Airlines','American','USA' +6,'Northwest Airlines','Northwest','USA' +7,'Continental Airlines','Continental','USA' +8,'JetBlue Airways','JetBlue','USA' +9,'Frontier Airlines','Frontier','USA' +10,'AirTran Airways','AirTran','USA' +11,'Allegiant Air','Allegiant','USA' +12,'Virgin America','Virgin','USA' + diff --git a/database/flight_2/data_csv/airports100.csv b/database/flight_2/data_csv/airports100.csv new file mode 100644 index 0000000000000000000000000000000000000000..c63ac00b7b40eedc44a478c1d3a222389a70e10e --- /dev/null +++ b/database/flight_2/data_csv/airports100.csv @@ -0,0 +1,101 @@ +City ,AirportCode , AirportName ,Country , CountryAbbrev +'Aberdeen ','APG','Phillips AAF ','United States ','US ' +'Aberdeen ','ABR','Municipal ','United States ','US ' +'Abilene ','DYS','Dyess AFB ','United States ','US ' +'Abilene ','ABI','Municipal ','United States ','US ' +'Abingdon ','VJI','Virginia Highlands ','United States ','US ' +'Ada ','ADT','Ada ','United States ','US ' +'Adak Island ','ADK','Adak Island Ns ','United States ','US ' +'Adrian ','ADG','Lenawee County ','United States ','US ' +'Afton ','AFO','Municipal ','United States ','US ' +'Aiken ','AIK','Municipal ','United States ','US ' +'Ainsworth ','ANW','Ainsworth ','United States ','US ' +'Akhiok ','AKK','Akhiok SPB ','United States ','US ' +'Akiachak ','KKI','Spb ','United States ','US ' +'Akiak ','AKI','Akiak ','United States ','US ' +'Akron CO ' ,'AKO','Colorado Plains Regional Airport ','United States ','US ' +'Akron/Canton OH ' ,'CAK','Akron/canton Regional ','United States ','US ' +'Akron/Canton ','AKC','Fulton International ','United States ','US ' +'Akutan ','KQA','Akutan ','United States ','US ' +'Alakanuk ','AUK','Alakanuk ','United States ','US ' +'Alameda ','NGZ','NAS ','United States ','US ' +'Alamogordo ','HMN','Holloman AFB ','United States ','US ' +'Alamogordo ','ALM','Municipal ','United States ','US ' +'Alamosa ','ALS','Municipal ','United States ','US ' +'Albany ','NAB','Albany NAS ','United States ','US ' +'Albany ','ABY','Dougherty County ','United States ','US ' +'Albany ','ALB','Albany International ','United States ','US ' +'Albany ','CVO','Albany ','United States ','US ' +'Albert Lea ','AEL','Albert Lea ','United States ','US ' +'Albuquerque ','ABQ','Albuquerque International ','United States ','US ' +'Aleknagik ','WKK','Aleknagik ','United States ','US ' +'Aleneva ','AED','Aleneva ','United States ','US ' + 'Alexander City AL ' ,'ALX','Thomas C Russell Fld ','United States ','US ' + 'Alexandria LA ' ,'AEX','Alexandria International ','United States ','US ' +'Alexandria ','ESF','Esler Field ','United States ','US ' +'Alexandria ','AXN','Alexandria ','United States ','US ' +'Alexandria Bay ','AXB','Alexandria Bay ','United States ','US ' +'Algona ','AXG','Algona ','United States ','US ' +'Alice ','ALI','International ','United States ','US ' + 'Aliceville AL ' ,'AIV','George Downer ','United States ','US ' +'Alitak ','ALZ','Alitak SPB ','United States ','US ' +'Allakaket ','AET','Allakaket ','United States ','US ' +'Alliance ','AIA','Alliance ','United States ','US ' +'Alma ','AMN','Gratiot Community ','United States ','US ' +'Alpena ','APN','Alpena County Regional ','United States ','US ' +'Alpine ','ALE','Alpine ','United States ','US ' +'Alton ','ALN','Alton ','United States ','US ' +'Altus ','LTS','Altus AFB ','United States ','US ' +'Altus ','AXS','Municipal ','United States ','US ' +'Alyeska ','AQY','Alyeska ','United States ','US ' + 'Amarillo ' ,'AMA','Rick Husband Amarillo International ','United States ','US ' +'Amarillo ','TDW','Tradewind ','United States ','US ' +'Ambler ','ABL','Ambler ','United States ','US ' +'Amchitka ','AHT','Amchitka ','United States ','US ' +'Amery ','AHH','Municipal ','United States ','US ' +'Ames ','AMW','Ames ','United States ','US ' +'Amityville ','AYZ','Zahns ','United States ','US ' +'Amook ','AOS','Amook ','United States ','US ' +'Anacortes ','OTS','Anacortes ','United States ','US ' +'Anacostia ','NDV','USN Heliport ','United States ','US ' +'Anaheim ','ANA','Orange County Steel Salvage Heliport ','United States ','US ' +'Anaktuvuk ','AKP','Anaktuvuk ','United States ','US ' +'Anchorage ','EDF','Elmendorf Afb ','United States ','US ' +'Anchorage ','ANC','Ted Stevens Anchorage International Airport ','United States ','US ' +'Anchorage ','MRI','Merrill Field ','United States ','US ' +'Anderson ','AID','Municipal ','United States ','US ' +'Anderson ','AND','Anderson ','United States ','US ' +'Andrews ','ADR','Andrews ','United States ','US ' +'Angel Fire ','AXX','Angel Fire ','United States ','US ' +'Angola ','ANQ','Tri-State Steuben Cty ','United States ','US ' +'Angoon ','AGN','Angoon ','United States ','US ' +'Anguilla ','RFK','Rollang Field ','United States ','US ' +'Aniak ','ANI','Aniak ','United States ','US ' +'Anita Bay ','AIB','Anita Bay ','United States ','US ' + 'Ann Arbor MI ' ,'ARB','Municipal ','United States ','US ' +'Annapolis ','ANP','Lee ','United States ','US ' +'Annette Island ','ANN','Annette Island ','United States ','US ' + 'Anniston AL ' ,'ANB','Anniston Metropolitan ','United States ','US ' +'Anniston ','QAW','Ft Mcclellan Bus Trml ','United States ','US ' +'Anniston ','RLI','Reilly AHP ','United States ','US ' +'Anthony ','ANY','Anthony ','United States ','US ' +'Antlers ','ATE','Antlers ','United States ','US ' +'Anvik ','ANV','Anvik ','United States ','US ' +'Apalachicola ','AAF','Municipal ','United States ','US ' +'Apple Valley ','APV','Apple Valley ','United States ','US ' +'Appleton ','ATW','Outagamie County ','United States ','US ' +'Arapahoe ','AHF','Municipal ','United States ','US ' +'Arcata ','ACV','Arcata ','United States ','US ' +'Arctic Village ','ARC','Arctic Village ','United States ','US ' +'Ardmore ','AHD','Downtown ','United States ','US ' +'Ardmore ','ADM','Ardmore Municipal Arpt ','United States ','US ' +'Arlington Heights ','JLH','US Army Heliport ','United States ','US ' +'Artesia ','ATS','Artesia ','United States ','US ' + 'Neptune ' ,'ARX','Asbury Park ','United States ','US ' +'Ashland ','ASX','Ashland ','United States ','US ' +'Ashley ','ASY','Ashley ','United States ','US ' +'Aspen ','ASE','Aspen ','United States ','US ' +'Astoria ','AST','Astoria ','United States ','US ' +'Athens ','AHN','Athens ','United States ','US ' +'Athens ','ATO','Ohio University ','United States ','US ' +'Athens ','MMI','McMinn County ','United States ','US ' diff --git a/database/flight_2/data_csv/flights.csv b/database/flight_2/data_csv/flights.csv new file mode 100644 index 0000000000000000000000000000000000000000..23ee30f192d41cd436a8a41ad23eff228a0fccd8 --- /dev/null +++ b/database/flight_2/data_csv/flights.csv @@ -0,0 +1,1201 @@ +Airline, FlightNo, SourceAirport, DestAirport +1, 28, 'APG', 'ASY' +1, 29, 'ASY', 'APG' +1, 44, 'CVO', 'ACV' +1, 45, 'ACV', 'CVO' +1, 54, 'AHD', 'AHT' +1, 55, 'AHT', 'AHD' +1, 90, 'ATO', 'ABR' +1, 91, 'ABR', 'ATO' +1, 108, 'ANV', 'MMI' +1, 109, 'MMI', 'ANV' +1, 142, 'ALI', 'AKC' +1, 143, 'AKC', 'ALI' +1, 148, 'HMN', 'ABL' +1, 149, 'ABL', 'HMN' +1, 198, 'NGZ', 'AAF' +1, 199, 'AAF', 'NGZ' +1, 226, 'CVO', 'KKI' +1, 227, 'KKI', 'CVO' +1, 276, 'ARB', 'ANV' +1, 277, 'ANV', 'ARB' +1, 308, 'ATE', 'AKC' +1, 309, 'AKC', 'ATE' +1, 326, 'ALX', 'ALI' +1, 327, 'ALI', 'ALX' +1, 370, 'AKC', 'WKK' +1, 371, 'WKK', 'AKC' +1, 414, 'AAF', 'ALB' +1, 415, 'ALB', 'AAF' +1, 424, 'ADG', 'AOS' +1, 425, 'AOS', 'ADG' +1, 470, 'ABQ', 'MMI' +1, 471, 'MMI', 'ABQ' +1, 520, 'AIV', 'ALS' +1, 521, 'ALS', 'AIV' +1, 556, 'AYZ', 'AHD' +1, 557, 'AHD', 'AYZ' +1, 560, 'AHF', 'ATO' +1, 561, 'ATO', 'AHF' +1, 604, 'ADG', 'ANN' +1, 605, 'ANN', 'ADG' +1, 608, 'AST', 'DYS' +1, 609, 'DYS', 'AST' +1, 626, 'AKI', 'AEL' +1, 627, 'AEL', 'AKI' +1, 658, 'ARC', 'ALM' +1, 659, 'ALM', 'ARC' +1, 708, 'AXB', 'AFO' +1, 709, 'AFO', 'AXB' +1, 744, 'AED', 'OTS' +1, 745, 'OTS', 'AED' +1, 754, 'CVO', 'ANY' +1, 755, 'ANY', 'CVO' +1, 786, 'ACV', 'AHD' +1, 787, 'AHD', 'ACV' +1, 810, 'ARC', 'AQY' +1, 811, 'AQY', 'ARC' +1, 828, 'HMN', 'EDF' +1, 829, 'EDF', 'HMN' +1, 878, 'KKI', 'ALM' +1, 879, 'ALM', 'KKI' +1, 888, 'ALZ', 'ANW' +1, 889, 'ANW', 'ALZ' +1, 900, 'AHT', 'AXX' +1, 901, 'AXX', 'AHT' +1, 924, 'AXG', 'ASX' +1, 925, 'ASX', 'AXG' +1, 946, 'APV', 'ADR' +1, 947, 'ADR', 'APV' +1, 996, 'AXG', 'AXS' +1, 997, 'AXS', 'AXG' +1, 1000, 'ADK', 'KKI' +1, 1001, 'KKI', 'ADK' +1, 1026, 'AHN', 'DYS' +1, 1027, 'DYS', 'AHN' +1, 1062, 'AQY', 'AFO' +1, 1063, 'AFO', 'AQY' +1, 1068, 'APN', 'ALB' +1, 1069, 'ALB', 'APN' +1, 1100, 'ATE', 'ALE' +1, 1101, 'ALE', 'ATE' +1, 1144, 'AIA', 'AMW' +1, 1145, 'AMW', 'AIA' +1, 1166, 'ABQ', 'AAF' +1, 1167, 'AAF', 'ABQ' +1, 1168, 'ADK', 'NAB' +1, 1169, 'NAB', 'ADK' +1, 1192, 'QAW', 'AHH' +1, 1193, 'AHH', 'QAW' +1, 1208, 'NAB', 'MMI' +1, 1209, 'MMI', 'NAB' +1, 1216, 'ATE', 'ALX' +1, 1217, 'ALX', 'ATE' +1, 1250, 'ARC', 'AED' +1, 1251, 'AED', 'ARC' +1, 1274, 'ALS', 'APG' +1, 1275, 'APG', 'ALS' +1, 1284, 'ADK', 'ADG' +1, 1285, 'ADG', 'ADK' +1, 1328, 'RLI', 'LTS' +1, 1329, 'LTS', 'RLI' +2, 14, 'APV', 'ALX' +2, 15, 'ALX', 'APV' +2, 18, 'MRI', 'OTS' +2, 19, 'OTS', 'MRI' +2, 64, 'VJI', 'AOS' +2, 65, 'AOS', 'VJI' +2, 88, 'AGN', 'AXX' +2, 89, 'AXX', 'AGN' +2, 124, 'OTS', 'ALZ' +2, 125, 'ALZ', 'OTS' +2, 142, 'ABQ', 'ADM' +2, 143, 'ADM', 'ABQ' +2, 192, 'AKK', 'NDV' +2, 193, 'NDV', 'AKK' +2, 240, 'ATE', 'ATW' +2, 241, 'ATW', 'ATE' +2, 278, 'ACV', 'ALX' +2, 279, 'ALX', 'ACV' +2, 322, 'ALN', 'ARB' +2, 323, 'ARB', 'ALN' +2, 330, 'AYZ', 'AND' +2, 331, 'AND', 'AYZ' +2, 356, 'AKC', 'MRI' +2, 357, 'MRI', 'AKC' +2, 358, 'ASE', 'ASX' +2, 359, 'ASX', 'ASE' +2, 384, 'AOS', 'AGN' +2, 385, 'AGN', 'AOS' +2, 426, 'AFO', 'AMN' +2, 427, 'AMN', 'AFO' +2, 466, 'ARB', 'AGN' +2, 467, 'AGN', 'ARB' +2, 484, 'ARX', 'AQY' +2, 485, 'AQY', 'ARX' +2, 488, 'VJI', 'APG' +2, 489, 'APG', 'VJI' +2, 526, 'CAK', 'ANP' +2, 527, 'ANP', 'CAK' +2, 550, 'AIV', 'ADK' +2, 551, 'ADK', 'AIV' +2, 600, 'MRI', 'ARB' +2, 601, 'ARB', 'MRI' +2, 644, 'AHD', 'AMA' +2, 645, 'AMA', 'AHD' +2, 670, 'KKI', 'ATS' +2, 671, 'ATS', 'KKI' +2, 672, 'ANV', 'ABL' +2, 673, 'ABL', 'ANV' +2, 692, 'CAK', 'ATS' +2, 693, 'ATS', 'CAK' +2, 728, 'AKI', 'ESF' +2, 729, 'ESF', 'AKI' +2, 746, 'ANC', 'AST' +2, 747, 'AST', 'ANC' +2, 790, 'APN', 'CVO' +2, 791, 'CVO', 'APN' +2, 830, 'ANQ', 'AMA' +2, 831, 'AMA', 'ANQ' +2, 840, 'NGZ', 'ADT' +2, 841, 'ADT', 'NGZ' +2, 886, 'ANW', 'ABY' +2, 887, 'ABY', 'ANW' +2, 902, 'AKO', 'OTS' +2, 903, 'OTS', 'AKO' +2, 920, 'AET', 'ASX' +2, 921, 'ASX', 'AET' +2, 950, 'ALB', 'ADM' +2, 951, 'ADM', 'ALB' +2, 988, 'ALS', 'ADG' +2, 989, 'ADG', 'ALS' +2, 1020, 'ANP', 'ADG' +2, 1021, 'ADG', 'ANP' +2, 1064, 'NAB', 'ALB' +2, 1065, 'ALB', 'NAB' +2, 1068, 'AIK', 'ANN' +2, 1069, 'ANN', 'AIK' +2, 1076, 'AXG', 'ABQ' +2, 1077, 'ABQ', 'AXG' +2, 1120, 'ACV', 'AKK' +2, 1121, 'AKK', 'ACV' +2, 1158, 'ABI', 'QAW' +2, 1159, 'QAW', 'ABI' +2, 1188, 'AIV', 'ALE' +2, 1189, 'ALE', 'AIV' +2, 1230, 'ANY', 'ANI' +2, 1231, 'ANI', 'ANY' +2, 1242, 'AED', 'AMA' +2, 1243, 'AMA', 'AED' +2, 1266, 'AHT', 'ALE' +2, 1267, 'ALE', 'AHT' +2, 1286, 'HMN', 'ESF' +2, 1287, 'ESF', 'HMN' +2, 1330, 'AXX', 'ANP' +2, 1331, 'ANP', 'AXX' +2, 1360, 'AHH', 'AST' +2, 1361, 'AST', 'AHH' +2, 1374, 'ALI', 'AMW' +2, 1375, 'AMW', 'ALI' +2, 1376, 'ALI', 'APG' +2, 1377, 'APG', 'ALI' +3, 2, 'ATS', 'OTS' +3, 3, 'OTS', 'ATS' +3, 26, 'VJI', 'ATW' +3, 27, 'ATW', 'VJI' +3, 36, 'CAK', 'OTS' +3, 37, 'OTS', 'CAK' +3, 84, 'ABY', 'ALS' +3, 85, 'ALS', 'ABY' +3, 100, 'AXN', 'APG' +3, 101, 'APG', 'AXN' +3, 118, 'AXB', 'ANA' +3, 119, 'ANA', 'AXB' +3, 126, 'LTS', 'EDF' +3, 127, 'EDF', 'LTS' +3, 130, 'JLH', 'AND' +3, 131, 'AND', 'JLH' +3, 162, 'AIK', 'ADT' +3, 163, 'ADT', 'AIK' +3, 194, 'AST', 'ARX' +3, 195, 'ARX', 'AST' +3, 206, 'ANB', 'ALE' +3, 207, 'ALE', 'ANB' +3, 240, 'AKC', 'MMI' +3, 241, 'MMI', 'AKC' +3, 244, 'EDF', 'AHT' +3, 245, 'AHT', 'EDF' +3, 268, 'AMW', 'AHN' +3, 269, 'AHN', 'AMW' +3, 284, 'AXB', 'AXN' +3, 285, 'AXN', 'AXB' +3, 300, 'ASY', 'ALE' +3, 301, 'ALE', 'ASY' +3, 334, 'ALI', 'ATW' +3, 335, 'ATW', 'ALI' +3, 364, 'AYZ', 'AUK' +3, 365, 'AUK', 'AYZ' +3, 396, 'AED', 'ASX' +3, 397, 'ASX', 'AED' +3, 432, 'ABQ', 'ANN' +3, 433, 'ANN', 'ABQ' +3, 438, 'AFO', 'AUK' +3, 439, 'AUK', 'AFO' +3, 460, 'RLI', 'AHD' +3, 461, 'AHD', 'RLI' +3, 498, 'ATW', 'TDW' +3, 499, 'TDW', 'ATW' +3, 528, 'ARB', 'AKK' +3, 529, 'AKK', 'ARB' +3, 548, 'ARX', 'ASX' +3, 549, 'ASX', 'ARX' +3, 588, 'AKO', 'WKK' +3, 589, 'WKK', 'AKO' +3, 626, 'KQA', 'ANV' +3, 627, 'ANV', 'KQA' +3, 656, 'ANN', 'EDF' +3, 657, 'EDF', 'ANN' +3, 670, 'ALN', 'ARX' +3, 671, 'ARX', 'ALN' +3, 694, 'AUK', 'JLH' +3, 695, 'JLH', 'AUK' +3, 710, 'ANN', 'AHT' +3, 711, 'AHT', 'ANN' +3, 734, 'ASY', 'NDV' +3, 735, 'NDV', 'ASY' +3, 782, 'AXG', 'JLH' +3, 783, 'JLH', 'AXG' +3, 826, 'ABQ', 'AEL' +3, 827, 'AEL', 'ABQ' +3, 862, 'LTS', 'RLI' +3, 863, 'RLI', 'LTS' +3, 904, 'APV', 'ANV' +3, 905, 'ANV', 'APV' +3, 922, 'ASY', 'AAF' +3, 923, 'AAF', 'ASY' +3, 962, 'NGZ', 'ALI' +3, 963, 'ALI', 'NGZ' +3, 970, 'ANP', 'AIB' +3, 971, 'AIB', 'ANP' +3, 1000, 'ASX', 'ANY' +3, 1001, 'ANY', 'ASX' +3, 1010, 'CVO', 'AST' +3, 1011, 'AST', 'CVO' +3, 1040, 'AHF', 'OTS' +3, 1041, 'OTS', 'AHF' +3, 1070, 'ANP', 'ARC' +3, 1071, 'ARC', 'ANP' +3, 1094, 'AAF', 'ALS' +3, 1095, 'ALS', 'AAF' +3, 1140, 'ATW', 'ALB' +3, 1141, 'ALB', 'ATW' +3, 1186, 'ANB', 'AET' +3, 1187, 'AET', 'ANB' +3, 1190, 'AXX', 'ADG' +3, 1191, 'ADG', 'AXX' +3, 1226, 'AID', 'ABL' +3, 1227, 'ABL', 'AID' +3, 1270, 'CAK', 'AXS' +3, 1271, 'AXS', 'CAK' +3, 1274, 'ASY', 'AFO' +3, 1275, 'AFO', 'ASY' +4, 10, 'ASY', 'ATS' +4, 11, 'ATS', 'ASY' +4, 32, 'ALX', 'OTS' +4, 33, 'OTS', 'ALX' +4, 34, 'ADR', 'ATS' +4, 35, 'ATS', 'ADR' +4, 56, 'AET', 'AKI' +4, 57, 'AKI', 'AET' +4, 62, 'AEX', 'MRI' +4, 63, 'MRI', 'AEX' +4, 94, 'AHH', 'ANA' +4, 95, 'ANA', 'AHH' +4, 136, 'LTS', 'JLH' +4, 137, 'JLH', 'LTS' +4, 166, 'AAF', 'AKI' +4, 167, 'AKI', 'AAF' +4, 168, 'ALI', 'ANY' +4, 169, 'ANY', 'ALI' +4, 200, 'ADT', 'EDF' +4, 201, 'EDF', 'ADT' +4, 226, 'VJI', 'OTS' +4, 227, 'OTS', 'VJI' +4, 260, 'ADT', 'ANN' +4, 261, 'ANN', 'ADT' +4, 264, 'ARB', 'ATW' +4, 265, 'ATW', 'ARB' +4, 296, 'AIV', 'AFO' +4, 297, 'AFO', 'AIV' +4, 340, 'ADM', 'AST' +4, 341, 'AST', 'ADM' +4, 358, 'ADG', 'AMN' +4, 359, 'AMN', 'ADG' +4, 378, 'WKK', 'ANQ' +4, 379, 'ANQ', 'WKK' +4, 384, 'AYZ', 'CVO' +4, 385, 'CVO', 'AYZ' +4, 430, 'CVO', 'LTS' +4, 431, 'LTS', 'CVO' +4, 436, 'AMA', 'WKK' +4, 437, 'WKK', 'AMA' +4, 478, 'AAF', 'AXX' +4, 479, 'AXX', 'AAF' +4, 510, 'ANP', 'AIB' +4, 511, 'AIB', 'ANP' +4, 544, 'LTS', 'QAW' +4, 545, 'QAW', 'LTS' +4, 546, 'ANY', 'AKC' +4, 547, 'AKC', 'ANY' +4, 558, 'AGN', 'AHN' +4, 559, 'AHN', 'AGN' +4, 564, 'AYZ', 'AED' +4, 565, 'AED', 'AYZ' +4, 582, 'AXX', 'WKK' +4, 583, 'WKK', 'AXX' +4, 604, 'AFO', 'ANC' +4, 605, 'ANC', 'AFO' +4, 624, 'ANC', 'ANV' +4, 625, 'ANV', 'ANC' +4, 626, 'AIA', 'AXG' +4, 627, 'AXG', 'AIA' +4, 666, 'AAF', 'AMA' +4, 667, 'AMA', 'AAF' +4, 716, 'JLH', 'AYZ' +4, 717, 'AYZ', 'JLH' +4, 742, 'HMN', 'APG' +4, 743, 'APG', 'HMN' +4, 750, 'NAB', 'ESF' +4, 751, 'ESF', 'NAB' +4, 784, 'AQY', 'DYS' +4, 785, 'DYS', 'AQY' +4, 832, 'ANN', 'AOS' +4, 833, 'AOS', 'ANN' +4, 838, 'APV', 'ALM' +4, 839, 'ALM', 'APV' +4, 870, 'ATE', 'ARB' +4, 871, 'ARB', 'ATE' +4, 902, 'NGZ', 'ANQ' +4, 903, 'ANQ', 'NGZ' +4, 946, 'AHT', 'AXG' +4, 947, 'AXG', 'AHT' +4, 990, 'ALI', 'ANN' +4, 991, 'ANN', 'ALI' +4, 1036, 'ANQ', 'ALS' +4, 1037, 'ALS', 'ANQ' +4, 1064, 'ANV', 'AET' +4, 1065, 'AET', 'ANV' +4, 1100, 'ARB', 'AEL' +4, 1101, 'AEL', 'ARB' +4, 1118, 'ANC', 'ANY' +4, 1119, 'ANY', 'ANC' +4, 1138, 'ABR', 'AET' +4, 1139, 'AET', 'ABR' +4, 1162, 'ANW', 'AKO' +4, 1163, 'AKO', 'ANW' +4, 1172, 'AHH', 'AYZ' +4, 1173, 'AYZ', 'AHH' +4, 1206, 'AXN', 'NDV' +4, 1207, 'NDV', 'AXN' +4, 1224, 'AND', 'MMI' +4, 1225, 'MMI', 'AND' +5, 22, 'WKK', 'ARB' +5, 23, 'ARB', 'WKK' +5, 62, 'ALM', 'AKP' +5, 63, 'AKP', 'ALM' +5, 66, 'ANA', 'AIK' +5, 67, 'AIK', 'ANA' +5, 76, 'ANC', 'AMA' +5, 77, 'AMA', 'ANC' +5, 104, 'ALB', 'ANY' +5, 105, 'ANY', 'ALB' +5, 134, 'AFO', 'ADT' +5, 135, 'ADT', 'AFO' +5, 148, 'CAK', 'ALE' +5, 149, 'ALE', 'CAK' +5, 194, 'ASY', 'ALE' +5, 195, 'ALE', 'ASY' +5, 234, 'ALS', 'AET' +5, 235, 'AET', 'ALS' +5, 238, 'AHF', 'ABY' +5, 239, 'ABY', 'AHF' +5, 242, 'ADR', 'LTS' +5, 243, 'LTS', 'ADR' +5, 244, 'ALM', 'EDF' +5, 245, 'EDF', 'ALM' +5, 264, 'ARX', 'AHN' +5, 265, 'AHN', 'ARX' +5, 300, 'AXS', 'AXX' +5, 301, 'AXX', 'AXS' +5, 318, 'ARX', 'QAW' +5, 319, 'QAW', 'ARX' +5, 350, 'ATW', 'AOS' +5, 351, 'AOS', 'ATW' +5, 360, 'ARX', 'ANW' +5, 361, 'ANW', 'ARX' +5, 386, 'NDV', 'EDF' +5, 387, 'EDF', 'NDV' +5, 412, 'ALS', 'AHT' +5, 413, 'AHT', 'ALS' +5, 432, 'APV', 'TDW' +5, 433, 'TDW', 'APV' +5, 468, 'CVO', 'AXS' +5, 469, 'AXS', 'CVO' +5, 484, 'QAW', 'MMI' +5, 485, 'MMI', 'QAW' +5, 504, 'ASX', 'AND' +5, 505, 'AND', 'ASX' +5, 546, 'ALS', 'AOS' +5, 547, 'AOS', 'ALS' +5, 592, 'VJI', 'AIB' +5, 593, 'AIB', 'VJI' +5, 602, 'ANW', 'AHT' +5, 603, 'AHT', 'ANW' +5, 616, 'AHH', 'ASX' +5, 617, 'ASX', 'AHH' +5, 648, 'ASX', 'AND' +5, 649, 'AND', 'ASX' +5, 688, 'ANI', 'DYS' +5, 689, 'DYS', 'ANI' +5, 726, 'RFK', 'ASY' +5, 727, 'ASY', 'RFK' +5, 752, 'ASE', 'CVO' +5, 753, 'CVO', 'ASE' +5, 798, 'AGN', 'ESF' +5, 799, 'ESF', 'AGN' +5, 808, 'ARC', 'AMN' +5, 809, 'AMN', 'ARC' +5, 816, 'ALI', 'ABY' +5, 817, 'ABY', 'ALI' +5, 866, 'AND', 'ALE' +5, 867, 'ALE', 'AND' +5, 894, 'ALS', 'KQA' +5, 895, 'KQA', 'ALS' +5, 902, 'AFO', 'WKK' +5, 903, 'WKK', 'AFO' +5, 918, 'ASY', 'QAW' +5, 919, 'QAW', 'ASY' +5, 926, 'DYS', 'AAF' +5, 927, 'AAF', 'DYS' +5, 964, 'AXN', 'AYZ' +5, 965, 'AYZ', 'AXN' +5, 1010, 'RLI', 'LTS' +5, 1011, 'LTS', 'RLI' +5, 1054, 'ANN', 'ATW' +5, 1055, 'ATW', 'ANN' +5, 1088, 'ANV', 'AKO' +5, 1089, 'AKO', 'ANV' +5, 1128, 'ANB', 'ASY' +5, 1129, 'ASY', 'ANB' +5, 1178, 'ANQ', 'ALX' +5, 1179, 'ALX', 'ANQ' +5, 1204, 'AOS', 'AST' +5, 1205, 'AST', 'AOS' +5, 1248, 'ABR', 'ALE' +5, 1249, 'ALE', 'ABR' +5, 1276, 'AMN', 'KQA' +5, 1277, 'KQA', 'AMN' +5, 1324, 'DYS', 'TDW' +5, 1325, 'TDW', 'DYS' +5, 1334, 'CAK', 'AKC' +5, 1335, 'AKC', 'CAK' +6, 4, 'ALX', 'NAB' +6, 5, 'NAB', 'ALX' +6, 28, 'ABQ', 'APG' +6, 29, 'APG', 'ABQ' +6, 50, 'AIB', 'ALZ' +6, 51, 'ALZ', 'AIB' +6, 70, 'AKC', 'AAF' +6, 71, 'AAF', 'AKC' +6, 82, 'ABY', 'ATO' +6, 83, 'ATO', 'ABY' +6, 112, 'NAB', 'AKP' +6, 113, 'AKP', 'NAB' +6, 162, 'NDV', 'AOS' +6, 163, 'AOS', 'NDV' +6, 174, 'ANV', 'ALZ' +6, 175, 'ALZ', 'ANV' +6, 178, 'ABQ', 'ALI' +6, 179, 'ALI', 'ABQ' +6, 210, 'AXG', 'AQY' +6, 211, 'AQY', 'AXG' +6, 250, 'AXX', 'AED' +6, 251, 'AED', 'AXX' +6, 252, 'AXG', 'ANY' +6, 253, 'ANY', 'AXG' +6, 302, 'CAK', 'AIV' +6, 303, 'AIV', 'CAK' +6, 346, 'ARB', 'OTS' +6, 347, 'OTS', 'ARB' +6, 368, 'JLH', 'NAB' +6, 369, 'NAB', 'JLH' +6, 370, 'WKK', 'ADT' +6, 371, 'ADT', 'WKK' +6, 372, 'ATE', 'MMI' +6, 373, 'MMI', 'ATE' +6, 400, 'TDW', 'ABR' +6, 401, 'ABR', 'TDW' +6, 424, 'RFK', 'ALS' +6, 425, 'ALS', 'RFK' +6, 442, 'OTS', 'AXX' +6, 443, 'AXX', 'OTS' +6, 478, 'APG', 'AEL' +6, 479, 'AEL', 'APG' +6, 516, 'KKI', 'AKI' +6, 517, 'AKI', 'KKI' +6, 534, 'QAW', 'ABY' +6, 535, 'ABY', 'QAW' +6, 568, 'ASY', 'AMW' +6, 569, 'AMW', 'ASY' +6, 610, 'ANP', 'AXG' +6, 611, 'AXG', 'ANP' +6, 620, 'AST', 'OTS' +6, 621, 'OTS', 'AST' +6, 658, 'ALM', 'CVO' +6, 659, 'CVO', 'ALM' +6, 670, 'AYZ', 'HMN' +6, 671, 'HMN', 'AYZ' +6, 704, 'KKI', 'WKK' +6, 705, 'WKK', 'KKI' +6, 708, 'ANB', 'ALI' +6, 709, 'ALI', 'ANB' +6, 716, 'AKP', 'AHF' +6, 717, 'AHF', 'AKP' +6, 740, 'HMN', 'AXG' +6, 741, 'AXG', 'HMN' +6, 754, 'AAF', 'ARX' +6, 755, 'ARX', 'AAF' +6, 762, 'AMW', 'ATS' +6, 763, 'ATS', 'AMW' +6, 810, 'AHD', 'DYS' +6, 811, 'DYS', 'AHD' +6, 812, 'ARB', 'CAK' +6, 813, 'CAK', 'ARB' +6, 814, 'ANB', 'NGZ' +6, 815, 'NGZ', 'ANB' +6, 862, 'ANQ', 'AXX' +6, 863, 'AXX', 'ANQ' +6, 906, 'ARC', 'RFK' +6, 907, 'RFK', 'ARC' +6, 932, 'NDV', 'ASY' +6, 933, 'ASY', 'NDV' +6, 950, 'ALE', 'AIB' +6, 951, 'AIB', 'ALE' +6, 970, 'ASE', 'AOS' +6, 971, 'AOS', 'ASE' +6, 1012, 'AXS', 'VJI' +6, 1013, 'VJI', 'AXS' +6, 1020, 'MRI', 'AXG' +6, 1021, 'AXG', 'MRI' +6, 1070, 'ADK', 'ABR' +6, 1071, 'ABR', 'ADK' +6, 1114, 'AEX', 'NDV' +6, 1115, 'NDV', 'AEX' +6, 1132, 'AOS', 'MRI' +6, 1133, 'MRI', 'AOS' +6, 1144, 'ALS', 'AEL' +6, 1145, 'AEL', 'ALS' +6, 1154, 'AIK', 'AIB' +6, 1155, 'AIB', 'AIK' +6, 1194, 'AAF', 'AXG' +6, 1195, 'AXG', 'AAF' +7, 44, 'AKI', 'ABR' +7, 45, 'ABR', 'AKI' +7, 58, 'ASX', 'AST' +7, 59, 'AST', 'ASX' +7, 68, 'EDF', 'AFO' +7, 69, 'AFO', 'EDF' +7, 76, 'ARB', 'ABL' +7, 77, 'ABL', 'ARB' +7, 114, 'ARB', 'ADK' +7, 115, 'ADK', 'ARB' +7, 118, 'AKK', 'ANW' +7, 119, 'ANW', 'AKK' +7, 120, 'AKI', 'ALX' +7, 121, 'ALX', 'AKI' +7, 122, 'KKI', 'ANN' +7, 123, 'ANN', 'KKI' +7, 152, 'AXG', 'MRI' +7, 153, 'MRI', 'AXG' +7, 188, 'AND', 'ALZ' +7, 189, 'ALZ', 'AND' +7, 230, 'NGZ', 'ABY' +7, 231, 'ABY', 'NGZ' +7, 250, 'AXS', 'ATS' +7, 251, 'ATS', 'AXS' +7, 294, 'AET', 'AKP' +7, 295, 'AKP', 'AET' +7, 312, 'AIV', 'ALE' +7, 313, 'ALE', 'AIV' +7, 316, 'AST', 'AKI' +7, 317, 'AKI', 'AST' +7, 336, 'AXG', 'AUK' +7, 337, 'AUK', 'AXG' +7, 370, 'QAW', 'ATW' +7, 371, 'ATW', 'QAW' +7, 398, 'JLH', 'AET' +7, 399, 'AET', 'JLH' +7, 408, 'AMN', 'ADG' +7, 409, 'ADG', 'AMN' +7, 454, 'KQA', 'ADK' +7, 455, 'ADK', 'KQA' +7, 484, 'ALX', 'AKK' +7, 485, 'AKK', 'ALX' +7, 492, 'OTS', 'NAB' +7, 493, 'NAB', 'OTS' +7, 542, 'WKK', 'ANC' +7, 543, 'ANC', 'WKK' +7, 560, 'ATW', 'ASE' +7, 561, 'ASE', 'ATW' +7, 570, 'OTS', 'ADG' +7, 571, 'ADG', 'OTS' +7, 614, 'AIA', 'AMW' +7, 615, 'AMW', 'AIA' +7, 662, 'ATS', 'AKO' +7, 663, 'AKO', 'ATS' +7, 670, 'ANA', 'ADR' +7, 671, 'ADR', 'ANA' +7, 714, 'ARC', 'ALM' +7, 715, 'ALM', 'ARC' +7, 720, 'AED', 'KQA' +7, 721, 'KQA', 'AED' +7, 722, 'AST', 'CAK' +7, 723, 'CAK', 'AST' +7, 736, 'ARX', 'ABY' +7, 737, 'ABY', 'ARX' +7, 754, 'ABR', 'MMI' +7, 755, 'MMI', 'ABR' +7, 792, 'AIA', 'NGZ' +7, 793, 'NGZ', 'AIA' +7, 812, 'AND', 'AXN' +7, 813, 'AXN', 'AND' +7, 818, 'AXN', 'AEX' +7, 819, 'AEX', 'AXN' +7, 844, 'MMI', 'AOS' +7, 845, 'AOS', 'MMI' +7, 854, 'KQA', 'APN' +7, 855, 'APN', 'KQA' +7, 856, 'LTS', 'TDW' +7, 857, 'TDW', 'LTS' +7, 898, 'AYZ', 'MRI' +7, 899, 'MRI', 'AYZ' +7, 942, 'AKP', 'AIB' +7, 943, 'AIB', 'AKP' +7, 948, 'AKK', 'OTS' +7, 949, 'OTS', 'AKK' +7, 980, 'AUK', 'AIA' +7, 981, 'AIA', 'AUK' +7, 1030, 'AED', 'AXS' +7, 1031, 'AXS', 'AED' +7, 1070, 'AET', 'ARB' +7, 1071, 'ARB', 'AET' +7, 1080, 'AHF', 'AGN' +7, 1081, 'AGN', 'AHF' +7, 1096, 'ABI', 'EDF' +7, 1097, 'EDF', 'ABI' +7, 1118, 'MMI', 'AKI' +7, 1119, 'AKI', 'MMI' +7, 1126, 'AKI', 'ESF' +7, 1127, 'ESF', 'AKI' +7, 1138, 'VJI', 'ESF' +7, 1139, 'ESF', 'VJI' +8, 42, 'ABY', 'ALM' +8, 43, 'ALM', 'ABY' +8, 88, 'KQA', 'AMW' +8, 89, 'AMW', 'KQA' +8, 132, 'AKK', 'AIK' +8, 133, 'AIK', 'AKK' +8, 170, 'LTS', 'EDF' +8, 171, 'EDF', 'LTS' +8, 174, 'DYS', 'ABQ' +8, 175, 'ABQ', 'DYS' +8, 210, 'CAK', 'ANP' +8, 211, 'ANP', 'CAK' +8, 246, 'AIK', 'AST' +8, 247, 'AST', 'AIK' +8, 292, 'QAW', 'DYS' +8, 293, 'DYS', 'QAW' +8, 336, 'KKI', 'ALE' +8, 337, 'ALE', 'KKI' +8, 372, 'AHF', 'AKC' +8, 373, 'AKC', 'AHF' +8, 420, 'AKP', 'ADT' +8, 421, 'ADT', 'AKP' +8, 468, 'HMN', 'AGN' +8, 469, 'AGN', 'HMN' +8, 512, 'ABQ', 'ADK' +8, 513, 'ADK', 'ABQ' +8, 536, 'AKC', 'ANV' +8, 537, 'ANV', 'AKC' +8, 542, 'ABQ', 'NGZ' +8, 543, 'NGZ', 'ABQ' +8, 576, 'AIV', 'AMA' +8, 577, 'AMA', 'AIV' +8, 588, 'AEX', 'AXN' +8, 589, 'AXN', 'AEX' +8, 604, 'ASY', 'ASE' +8, 605, 'ASE', 'ASY' +8, 640, 'ABQ', 'AOS' +8, 641, 'AOS', 'ABQ' +8, 652, 'AHF', 'AHD' +8, 653, 'AHD', 'AHF' +8, 670, 'ASY', 'CVO' +8, 671, 'CVO', 'ASY' +8, 714, 'JLH', 'AAF' +8, 715, 'AAF', 'JLH' +8, 726, 'ACV', 'ASY' +8, 727, 'ASY', 'ACV' +8, 736, 'ACV', 'ABQ' +8, 737, 'ABQ', 'ACV' +8, 752, 'AEL', 'ATE' +8, 753, 'ATE', 'AEL' +8, 792, 'ANY', 'ANP' +8, 793, 'ANP', 'ANY' +8, 832, 'AAF', 'MMI' +8, 833, 'MMI', 'AAF' +8, 836, 'APN', 'ALB' +8, 837, 'ALB', 'APN' +8, 872, 'ABY', 'CAK' +8, 873, 'CAK', 'ABY' +8, 908, 'MMI', 'ABR' +8, 909, 'ABR', 'MMI' +8, 956, 'ADK', 'AQY' +8, 957, 'AQY', 'ADK' +8, 994, 'ABY', 'AXB' +8, 995, 'AXB', 'ABY' +8, 1038, 'EDF', 'ARX' +8, 1039, 'ARX', 'EDF' +8, 1050, 'RFK', 'CVO' +8, 1051, 'CVO', 'RFK' +8, 1086, 'EDF', 'AFO' +8, 1087, 'AFO', 'EDF' +8, 1096, 'ANP', 'NAB' +8, 1097, 'NAB', 'ANP' +8, 1138, 'DYS', 'AAF' +8, 1139, 'AAF', 'DYS' +8, 1182, 'AKI', 'ARC' +8, 1183, 'ARC', 'AKI' +8, 1232, 'NDV', 'AKI' +8, 1233, 'AKI', 'NDV' +8, 1278, 'ANB', 'ANP' +8, 1279, 'ANP', 'ANB' +8, 1280, 'ATO', 'AET' +8, 1281, 'AET', 'ATO' +8, 1308, 'ADG', 'ALS' +8, 1309, 'ALS', 'ADG' +8, 1346, 'AND', 'ESF' +8, 1347, 'ESF', 'AND' +8, 1348, 'ANI', 'AHF' +8, 1349, 'AHF', 'ANI' +8, 1376, 'WKK', 'ASE' +8, 1377, 'ASE', 'WKK' +8, 1418, 'AEL', 'ATS' +8, 1419, 'ATS', 'AEL' +8, 1420, 'ALM', 'ANV' +8, 1421, 'ANV', 'ALM' +8, 1468, 'AID', 'JLH' +8, 1469, 'JLH', 'AID' +8, 1490, 'ANB', 'JLH' +8, 1491, 'JLH', 'ANB' +8, 1534, 'AMN', 'CAK' +8, 1535, 'CAK', 'AMN' +9, 12, 'ACV', 'ATW' +9, 13, 'ATW', 'ACV' +9, 62, 'AYZ', 'ANI' +9, 63, 'ANI', 'AYZ' +9, 78, 'ASE', 'JLH' +9, 79, 'JLH', 'ASE' +9, 84, 'ACV', 'AKI' +9, 85, 'AKI', 'ACV' +9, 120, 'ABI', 'AMA' +9, 121, 'AMA', 'ABI' +9, 158, 'AKO', 'AQY' +9, 159, 'AQY', 'AKO' +9, 178, 'QAW', 'VJI' +9, 179, 'VJI', 'QAW' +9, 224, 'ASY', 'AHF' +9, 225, 'AHF', 'ASY' +9, 230, 'ANY', 'ABQ' +9, 231, 'ABQ', 'ANY' +9, 270, 'ARC', 'VJI' +9, 271, 'VJI', 'ARC' +9, 278, 'AHH', 'AST' +9, 279, 'AST', 'AHH' +9, 312, 'AXG', 'ALN' +9, 313, 'ALN', 'AXG' +9, 342, 'ALB', 'ANC' +9, 343, 'ANC', 'ALB' +9, 384, 'ANV', 'ANQ' +9, 385, 'ANQ', 'ANV' +9, 390, 'DYS', 'AIV' +9, 391, 'AIV', 'DYS' +9, 422, 'AIA', 'VJI' +9, 423, 'VJI', 'AIA' +9, 468, 'HMN', 'AHD' +9, 469, 'AHD', 'HMN' +9, 486, 'AET', 'AMA' +9, 487, 'AMA', 'AET' +9, 536, 'CAK', 'AMA' +9, 537, 'AMA', 'CAK' +9, 580, 'ADM', 'ANI' +9, 581, 'ANI', 'ADM' +9, 616, 'HMN', 'AND' +9, 617, 'AND', 'HMN' +9, 622, 'AED', 'KKI' +9, 623, 'KKI', 'AED' +9, 628, 'ANI', 'ADT' +9, 629, 'ADT', 'ANI' +9, 634, 'AKI', 'ATW' +9, 635, 'ATW', 'AKI' +9, 646, 'ARX', 'AHF' +9, 647, 'AHF', 'ARX' +9, 654, 'ATS', 'DYS' +9, 655, 'DYS', 'ATS' +9, 680, 'ABY', 'AGN' +9, 681, 'AGN', 'ABY' +9, 692, 'AIK', 'CVO' +9, 693, 'CVO', 'AIK' +9, 722, 'ANP', 'ANB' +9, 723, 'ANB', 'ANP' +9, 746, 'WKK', 'ESF' +9, 747, 'ESF', 'WKK' +9, 748, 'ATS', 'RLI' +9, 749, 'RLI', 'ATS' +9, 780, 'JLH', 'ANV' +9, 781, 'ANV', 'JLH' +9, 828, 'ADG', 'HMN' +9, 829, 'HMN', 'ADG' +9, 876, 'ALM', 'AIV' +9, 877, 'AIV', 'ALM' +9, 882, 'ADT', 'ALZ' +9, 883, 'ALZ', 'ADT' +9, 892, 'WKK', 'ANV' +9, 893, 'ANV', 'WKK' +9, 894, 'AAF', 'AHT' +9, 895, 'AHT', 'AAF' +9, 942, 'ABI', 'MMI' +9, 943, 'MMI', 'ABI' +9, 968, 'CAK', 'ALN' +9, 969, 'ALN', 'CAK' +9, 1006, 'AET', 'ANV' +9, 1007, 'ANV', 'AET' +9, 1026, 'AEL', 'MRI' +9, 1027, 'MRI', 'AEL' +9, 1044, 'AQY', 'NGZ' +9, 1045, 'NGZ', 'AQY' +9, 1060, 'AST', 'ADK' +9, 1061, 'ADK', 'AST' +9, 1090, 'CVO', 'HMN' +9, 1091, 'HMN', 'CVO' +9, 1114, 'LTS', 'ABI' +9, 1115, 'ABI', 'LTS' +9, 1150, 'ASE', 'VJI' +9, 1151, 'VJI', 'ASE' +9, 1188, 'AHF', 'OTS' +9, 1189, 'OTS', 'AHF' +9, 1228, 'ALN', 'ALZ' +9, 1229, 'ALZ', 'ALN' +9, 1260, 'AEX', 'ARC' +9, 1261, 'ARC', 'AEX' +9, 1286, 'ALE', 'JLH' +9, 1287, 'JLH', 'ALE' +10, 6, 'TDW', 'AXN' +10, 7, 'AXN', 'TDW' +10, 54, 'KQA', 'AHF' +10, 55, 'AHF', 'KQA' +10, 66, 'DYS', 'ADT' +10, 67, 'ADT', 'DYS' +10, 98, 'MRI', 'ANA' +10, 99, 'ANA', 'MRI' +10, 144, 'AXN', 'RFK' +10, 145, 'RFK', 'AXN' +10, 174, 'AED', 'AMA' +10, 175, 'AMA', 'AED' +10, 218, 'AKO', 'ANN' +10, 219, 'ANN', 'AKO' +10, 224, 'ANI', 'AIV' +10, 225, 'AIV', 'ANI' +10, 264, 'AIA', 'ABI' +10, 265, 'ABI', 'AIA' +10, 310, 'QAW', 'ANP' +10, 311, 'ANP', 'QAW' +10, 336, 'ARC', 'ADR' +10, 337, 'ADR', 'ARC' +10, 352, 'AYZ', 'QAW' +10, 353, 'QAW', 'AYZ' +10, 382, 'APG', 'ALE' +10, 383, 'ALE', 'APG' +10, 408, 'ANQ', 'AUK' +10, 409, 'AUK', 'ANQ' +10, 430, 'ADR', 'CAK' +10, 431, 'CAK', 'ADR' +10, 468, 'AAF', 'APV' +10, 469, 'APV', 'AAF' +10, 512, 'CVO', 'ESF' +10, 513, 'ESF', 'CVO' +10, 562, 'ANW', 'ATE' +10, 563, 'ATE', 'ANW' +10, 600, 'ABQ', 'AKI' +10, 601, 'AKI', 'ABQ' +10, 602, 'AKK', 'ADK' +10, 603, 'ADK', 'AKK' +10, 646, 'ARB', 'ASE' +10, 647, 'ASE', 'ARB' +10, 650, 'ANQ', 'AEX' +10, 651, 'AEX', 'ANQ' +10, 700, 'ANC', 'AKI' +10, 701, 'AKI', 'ANC' +10, 736, 'QAW', 'AMN' +10, 737, 'AMN', 'QAW' +10, 784, 'NGZ', 'NAB' +10, 785, 'NAB', 'NGZ' +10, 820, 'AHN', 'ACV' +10, 821, 'ACV', 'AHN' +10, 826, 'AHH', 'ARB' +10, 827, 'ARB', 'AHH' +10, 858, 'VJI', 'ALB' +10, 859, 'ALB', 'VJI' +10, 890, 'AYZ', 'AXG' +10, 891, 'AXG', 'AYZ' +10, 928, 'ANB', 'AHD' +10, 929, 'AHD', 'ANB' +10, 934, 'ABI', 'AKP' +10, 935, 'AKP', 'ABI' +10, 982, 'ANP', 'ATE' +10, 983, 'ATE', 'ANP' +10, 1000, 'AHN', 'ANN' +10, 1001, 'ANN', 'AHN' +10, 1040, 'AIB', 'MRI' +10, 1041, 'MRI', 'AIB' +10, 1070, 'ANN', 'ARC' +10, 1071, 'ARC', 'ANN' +10, 1116, 'ANI', 'AFO' +10, 1117, 'AFO', 'ANI' +10, 1128, 'ABI', 'AMN' +10, 1129, 'AMN', 'ABI' +10, 1136, 'ABL', 'ABI' +10, 1137, 'ABI', 'ABL' +10, 1144, 'AKK', 'CAK' +10, 1145, 'CAK', 'AKK' +10, 1172, 'APG', 'AKC' +10, 1173, 'AKC', 'APG' +10, 1182, 'ATW', 'ALZ' +10, 1183, 'ALZ', 'ATW' +10, 1210, 'ANY', 'ALB' +10, 1211, 'ALB', 'ANY' +10, 1256, 'AED', 'ADM' +10, 1257, 'ADM', 'AED' +10, 1298, 'ATS', 'ALS' +10, 1299, 'ALS', 'ATS' +10, 1314, 'AIV', 'AHF' +10, 1315, 'AHF', 'AIV' +10, 1330, 'ALM', 'NGZ' +10, 1331, 'NGZ', 'ALM' +10, 1356, 'AMA', 'ATW' +10, 1357, 'ATW', 'AMA' +10, 1390, 'ADG', 'ABL' +10, 1391, 'ABL', 'ADG' +10, 1426, 'JLH', 'ABL' +10, 1427, 'ABL', 'JLH' +10, 1476, 'AIV', 'ALE' +10, 1477, 'ALE', 'AIV' +11, 14, 'AGN', 'ANP' +11, 15, 'ANP', 'AGN' +11, 58, 'AKK', 'TDW' +11, 59, 'TDW', 'AKK' +11, 80, 'AET', 'AXB' +11, 81, 'AXB', 'AET' +11, 88, 'ANY', 'AQY' +11, 89, 'AQY', 'ANY' +11, 110, 'AXS', 'AMW' +11, 111, 'AMW', 'AXS' +11, 134, 'NDV', 'ADG' +11, 135, 'ADG', 'NDV' +11, 142, 'AXS', 'APG' +11, 143, 'APG', 'AXS' +11, 158, 'AHT', 'ANV' +11, 159, 'ANV', 'AHT' +11, 200, 'ANC', 'AIK' +11, 201, 'AIK', 'ANC' +11, 204, 'AIK', 'AXN' +11, 205, 'AXN', 'AIK' +11, 240, 'ARC', 'AXG' +11, 241, 'AXG', 'ARC' +11, 284, 'ABQ', 'WKK' +11, 285, 'WKK', 'ABQ' +11, 296, 'AGN', 'AIV' +11, 297, 'AIV', 'AGN' +11, 302, 'ANY', 'TDW' +11, 303, 'TDW', 'ANY' +11, 330, 'AXG', 'LTS' +11, 331, 'LTS', 'AXG' +11, 378, 'RFK', 'ASY' +11, 379, 'ASY', 'RFK' +11, 400, 'ANA', 'AEL' +11, 401, 'AEL', 'ANA' +11, 436, 'ABQ', 'AND' +11, 437, 'AND', 'ABQ' +11, 470, 'CAK', 'AHT' +11, 471, 'AHT', 'CAK' +11, 504, 'AAF', 'AKO' +11, 505, 'AKO', 'AAF' +11, 512, 'ASY', 'ABR' +11, 513, 'ABR', 'ASY' +11, 524, 'ADK', 'ALM' +11, 525, 'ALM', 'ADK' +11, 566, 'LTS', 'AET' +11, 567, 'AET', 'LTS' +11, 570, 'ANA', 'RLI' +11, 571, 'RLI', 'ANA' +11, 574, 'ADK', 'LTS' +11, 575, 'LTS', 'ADK' +11, 590, 'ANY', 'AAF' +11, 591, 'AAF', 'ANY' +11, 594, 'ANN', 'ANY' +11, 595, 'ANY', 'ANN' +11, 636, 'ALX', 'RLI' +11, 637, 'RLI', 'ALX' +11, 640, 'AND', 'AIA' +11, 641, 'AIA', 'AND' +11, 666, 'AYZ', 'ANC' +11, 667, 'ANC', 'AYZ' +11, 704, 'ADR', 'AKI' +11, 705, 'AKI', 'ADR' +11, 730, 'AUK', 'ALS' +11, 731, 'ALS', 'AUK' +11, 740, 'AXG', 'OTS' +11, 741, 'OTS', 'AXG' +11, 772, 'JLH', 'ADM' +11, 773, 'ADM', 'JLH' +11, 774, 'ALN', 'AKP' +11, 775, 'AKP', 'ALN' +11, 824, 'ABI', 'ANW' +11, 825, 'ANW', 'ABI' +11, 834, 'ATS', 'AXN' +11, 835, 'AXN', 'ATS' +11, 842, 'ABR', 'AXN' +11, 843, 'AXN', 'ABR' +11, 876, 'KQA', 'AXX' +11, 877, 'AXX', 'KQA' +11, 904, 'AKO', 'DYS' +11, 905, 'DYS', 'AKO' +11, 908, 'ANQ', 'ATO' +11, 909, 'ATO', 'ANQ' +11, 954, 'AHH', 'AQY' +11, 955, 'AQY', 'AHH' +11, 986, 'MMI', 'AIB' +11, 987, 'AIB', 'MMI' +11, 1012, 'ABI', 'ALZ' +11, 1013, 'ALZ', 'ABI' +11, 1022, 'CVO', 'NDV' +11, 1023, 'NDV', 'CVO' +11, 1060, 'WKK', 'NAB' +11, 1061, 'NAB', 'WKK' +11, 1078, 'ALZ', 'ADG' +11, 1079, 'ADG', 'ALZ' +11, 1112, 'ARB', 'CVO' +11, 1113, 'CVO', 'ARB' +11, 1136, 'AEX', 'AHF' +11, 1137, 'AHF', 'AEX' +11, 1178, 'KQA', 'AFO' +11, 1179, 'AFO', 'KQA' +12, 42, 'AID', 'ADK' +12, 43, 'ADK', 'AID' +12, 80, 'AKK', 'APV' +12, 81, 'APV', 'AKK' +12, 120, 'ASY', 'ADK' +12, 121, 'ADK', 'ASY' +12, 156, 'ABY', 'ESF' +12, 157, 'ESF', 'ABY' +12, 206, 'ARB', 'AIV' +12, 207, 'AIV', 'ARB' +12, 208, 'AHN', 'AHD' +12, 209, 'AHD', 'AHN' +12, 234, 'EDF', 'AKK' +12, 235, 'AKK', 'EDF' +12, 264, 'AMW', 'AKI' +12, 265, 'AKI', 'AMW' +12, 284, 'ADM', 'RLI' +12, 285, 'RLI', 'ADM' +12, 312, 'TDW', 'ANC' +12, 313, 'ANC', 'TDW' +12, 326, 'ATO', 'AOS' +12, 327, 'AOS', 'ATO' +12, 368, 'LTS', 'ANB' +12, 369, 'ANB', 'LTS' +12, 402, 'ATW', 'ANP' +12, 403, 'ANP', 'ATW' +12, 424, 'RLI', 'ABY' +12, 425, 'ABY', 'RLI' +12, 450, 'ALB', 'HMN' +12, 451, 'HMN', 'ALB' +12, 490, 'AIA', 'NAB' +12, 491, 'NAB', 'AIA' +12, 540, 'AHT', 'AMW' +12, 541, 'AMW', 'AHT' +12, 584, 'ALZ', 'ASE' +12, 585, 'ASE', 'ALZ' +12, 614, 'QAW', 'ADT' +12, 615, 'ADT', 'QAW' +12, 650, 'CAK', 'AXN' +12, 651, 'AXN', 'CAK' +12, 690, 'AEX', 'ANI' +12, 691, 'ANI', 'AEX' +12, 728, 'ADM', 'KKI' +12, 729, 'KKI', 'ADM' +12, 748, 'AAF', 'ALS' +12, 749, 'ALS', 'AAF' +12, 766, 'RLI', 'AND' +12, 767, 'AND', 'RLI' +12, 778, 'ABY', 'AQY' +12, 779, 'AQY', 'ABY' +12, 820, 'ALN', 'ANW' +12, 821, 'ANW', 'ALN' +12, 834, 'ABI', 'AIV' +12, 835, 'AIV', 'ABI' +12, 850, 'ARC', 'AET' +12, 851, 'AET', 'ARC' +12, 890, 'ATO', 'ALS' +12, 891, 'ALS', 'ATO' +12, 924, 'ANB', 'KKI' +12, 925, 'KKI', 'ANB' +12, 946, 'AXG', 'AKK' +12, 947, 'AKK', 'AXG' +12, 956, 'AKO', 'ABL' +12, 957, 'ABL', 'AKO' +12, 970, 'AST', 'ADM' +12, 971, 'ADM', 'AST' +12, 1004, 'CAK', 'LTS' +12, 1005, 'LTS', 'CAK' +12, 1022, 'AKI', 'AHN' +12, 1023, 'AHN', 'AKI' +12, 1056, 'ALN', 'ADR' +12, 1057, 'ADR', 'ALN' +12, 1106, 'RLI', 'AIB' +12, 1107, 'AIB', 'RLI' +12, 1120, 'JLH', 'AHF' +12, 1121, 'AHF', 'JLH' +12, 1126, 'RLI', 'ABY' +12, 1127, 'ABY', 'RLI' +12, 1172, 'AMA', 'ARX' +12, 1173, 'ARX', 'AMA' +12, 1204, 'ARB', 'ADM' +12, 1205, 'ADM', 'ARB' +12, 1230, 'ANC', 'CVO' +12, 1231, 'CVO', 'ANC' +12, 1244, 'ANP', 'ANY' +12, 1245, 'ANY', 'ANP' +12, 1252, 'WKK', 'ANN' +12, 1253, 'ANN', 'WKK' +12, 1254, 'AIB', 'ANV' +12, 1255, 'ANV', 'AIB' +12, 1280, 'AEX', 'ARX' +12, 1281, 'ARX', 'AEX' +12, 1300, 'AMA', 'AFO' +12, 1301, 'AFO', 'AMA' +12, 1334, 'ADT', 'AKK' +12, 1335, 'AKK', 'ADT' +12, 1364, 'AMW', 'ANN' +12, 1365, 'ANN', 'AMW' +12, 1376, 'ALE', 'LTS' +12, 1377, 'LTS', 'ALE' diff --git a/database/flight_2/flight_2.json b/database/flight_2/flight_2.json new file mode 100644 index 0000000000000000000000000000000000000000..34af28a4695418b147b6a0dca09fc32aacbf4cce --- /dev/null +++ b/database/flight_2/flight_2.json @@ -0,0 +1,121 @@ +[ + { + "col_data": [ + { + "column_name": "uid", + "data_type": "INTEGER", + "default_column_name": "uid", + "default_value": null, + "not_null": 0, + "primary_key": 1 + }, + { + "column_name": "Airline", + "data_type": "TEXT", + "default_column_name": "Airline", + "default_value": null, + "not_null": 0, + "primary_key": 0 + }, + { + "column_name": "Abbreviation", + "data_type": "TEXT", + "default_column_name": "Abbreviation", + "default_value": null, + "not_null": 0, + "primary_key": 0 + }, + { + "column_name": "Country", + "data_type": "TEXT", + "default_column_name": "Country", + "default_value": null, + "not_null": 0, + "primary_key": 0 + } + ], + "table": "airlines" + }, + { + "col_data": [ + { + "column_name": "City", + "data_type": "TEXT", + "default_column_name": "City", + "default_value": null, + "not_null": 0, + "primary_key": 0 + }, + { + "column_name": "AirportCode", + "data_type": "TEXT", + "default_column_name": "AirportCode", + "default_value": null, + "not_null": 0, + "primary_key": 1 + }, + { + "column_name": "AirportName", + "data_type": "TEXT", + "default_column_name": "AirportName", + "default_value": null, + "not_null": 0, + "primary_key": 0 + }, + { + "column_name": "Country", + "data_type": "TEXT", + "default_column_name": "Country", + "default_value": null, + "not_null": 0, + "primary_key": 0 + }, + { + "column_name": "CountryAbbrev", + "data_type": "TEXT", + "default_column_name": "CountryAbbrev", + "default_value": null, + "not_null": 0, + "primary_key": 0 + } + ], + "table": "airports100" + }, + { + "col_data": [ + { + "column_name": "Airline", + "data_type": "INTEGER", + "default_column_name": "Airline", + "default_value": null, + "not_null": 0, + "primary_key": 1 + }, + { + "column_name": "FlightNo", + "data_type": "INTEGER", + "default_column_name": "FlightNo", + "default_value": null, + "not_null": 0, + "primary_key": 2 + }, + { + "column_name": "SourceAirport", + "data_type": "TEXT", + "default_column_name": "SourceAirport", + "default_value": null, + "not_null": 0, + "primary_key": 0 + }, + { + "column_name": "DestAirport", + "data_type": "TEXT", + "default_column_name": "DestAirport", + "default_value": null, + "not_null": 0, + "primary_key": 0 + } + ], + "table": "flights" + } +] \ No newline at end of file diff --git a/database/flight_2/flight_2.sql b/database/flight_2/flight_2.sql new file mode 100644 index 0000000000000000000000000000000000000000..07b4a50b928fa24cdd20eddf0144a5e41668a139 --- /dev/null +++ b/database/flight_2/flight_2.sql @@ -0,0 +1,22 @@ +CREATE TABLE 'airlines' ( + uid INTEGER PRIMARY KEY, + Airline TEXT, + Abbreviation TEXT, + Country TEXT +); +CREATE TABLE 'airports' ( + City TEXT, + AirportCode TEXT PRIMARY KEY, + AirportName TEXT, + Country TEXT, + CountryAbbrev TEXT +); +CREATE TABLE 'flights' ( + Airline INTEGER, + FlightNo INTEGER, + SourceAirport TEXT, + DestAirport TEXT, + PRIMARY KEY(Airline, FlightNo), + FOREIGN KEY (SourceAirport) REFERENCES airports(AirportCode), + FOREIGN KEY (DestAirport) REFERENCES airports(AirportCode) +); diff --git a/database/flight_2/flight_2.sqlite b/database/flight_2/flight_2.sqlite new file mode 100644 index 0000000000000000000000000000000000000000..657a06136e3968d08b18543009765b7a67c787f0 Binary files /dev/null and b/database/flight_2/flight_2.sqlite differ diff --git a/database/flight_2/link.txt b/database/flight_2/link.txt new file mode 100644 index 0000000000000000000000000000000000000000..94c167197fe075c59a0eb4db5c0ce5bf25f766e7 --- /dev/null +++ b/database/flight_2/link.txt @@ -0,0 +1 @@ +http://users.csc.calpoly.edu/~dekhtyar/365-Spring2017/index.html \ No newline at end of file diff --git a/database/flight_2/q.txt b/database/flight_2/q.txt new file mode 100644 index 0000000000000000000000000000000000000000..4727e771616e715aea6612cb14326eef28eabc51 --- /dev/null +++ b/database/flight_2/q.txt @@ -0,0 +1,15 @@ +Find all airlines that have at least one flight out of AXX airport. Report the full name and the abbreviation of each airline + +Find all destinations served from the AXX airport by Northwest. Re- port flight number, airport code and the full name of the airport. + +Find all airports served by ALL five of the airlines listed below: Delta, Frontier, USAir, UAL and Southwest. Report just the airport codes. + +Find all airports that are served by at least three Southwest flights. Report just the three-letter codes of the airports + +Find the number of airports from which airport ANP can be reached with exactly one transfer. + +Find the number of airports from which airport ATE can be reached with at most one transfer. (make sure to exclude ATE itself from the count). Report just the number. + +Find all airports with exactly 17 outgoing flights. Report airport code and the full name of the airport + +For each room report the total revenue for all stays and the average revenue per stay generated by stays in the room that originated in the months of September diff --git a/database/flight_4/flight_4.sqlite b/database/flight_4/flight_4.sqlite new file mode 100644 index 0000000000000000000000000000000000000000..de6b0fc3c63ade01c428721b1aaa5bb8e41556b0 --- /dev/null +++ b/database/flight_4/flight_4.sqlite @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4885150ab97173411aee5b73009ac2a28ce1748ce1218331608b939d9d54330e +size 3129344 diff --git a/database/flight_4/link.txt b/database/flight_4/link.txt new file mode 100644 index 0000000000000000000000000000000000000000..d0cb6cda09681e9706e018f6bb8c46480b85add1 --- /dev/null +++ b/database/flight_4/link.txt @@ -0,0 +1 @@ +https://psfotis.github.io/sqlseminar/exercises/ diff --git a/database/flight_4/sql.txt b/database/flight_4/sql.txt new file mode 100644 index 0000000000000000000000000000000000000000..d0cb6cda09681e9706e018f6bb8c46480b85add1 --- /dev/null +++ b/database/flight_4/sql.txt @@ -0,0 +1 @@ +https://psfotis.github.io/sqlseminar/exercises/ diff --git a/database/flight_company/flight_company.sqlite b/database/flight_company/flight_company.sqlite new file mode 100644 index 0000000000000000000000000000000000000000..9d85c1d7a97e8822f743dd41268efd71c0b53300 Binary files /dev/null and b/database/flight_company/flight_company.sqlite differ diff --git a/database/flight_company/schema.sql b/database/flight_company/schema.sql new file mode 100644 index 0000000000000000000000000000000000000000..1a3ca17276eb3678d351da7cf319a4401ef3992b --- /dev/null +++ b/database/flight_company/schema.sql @@ -0,0 +1,82 @@ +PRAGMA foreign_keys = ON; + +CREATE TABLE "airport" ( +"id" int, +"City" text, +"Country" text, +"IATA" text, +"ICAO" text, +"name" text, +primary key("id") +); + + +CREATE TABLE "operate_company" ( +"id" int, +"name" text, +"Type" text, +"Principal_activities" text, +"Incorporated_in" text, +"Group_Equity_Shareholding" real, +primary key ("id") +); + +CREATE TABLE "flight" ( +"id" int, +"Vehicle_Flight_number" text, +"Date" text, +"Pilot" text, +"Velocity" real, +"Altitude" real, +"airport_id" int, +"company_id" int, +primary key ("id"), +foreign key ("airport_id") references `airport`("id"), +foreign key ("company_id") references `operate_company`("id") +); + + + +INSERT INTO "airport" VALUES (1,"Akureyri","Iceland","AEY","BIAR","Akureyri Airport"); +INSERT INTO "airport" VALUES (2,"Amsterdam","Netherlands","AMS","EHAM","Schiphol Airport"); +INSERT INTO "airport" VALUES (3,"Anchorage","United States","ANC","PANC","Ted Stevens Airport"); +INSERT INTO "airport" VALUES (4,"Baltimore","United States","BWI","KBWI","Baltimore-Washington Airport"); +INSERT INTO "airport" VALUES (5,"Barcelona","Spain","BCN","LEBL","El Prat Airport"); +INSERT INTO "airport" VALUES (6,"Bergen","Norway","BGO","ENBR","Bergen Airport"); +INSERT INTO "airport" VALUES (7,"Billund","Denmark","BLL","EKBI","Billund Airport"); +INSERT INTO "airport" VALUES (8,"Boston","United States","BOS","KBOS","Logan International Airport"); +INSERT INTO "airport" VALUES (9,"Brussels","Belgium","BRU","EBBR","National Airport"); + + + + +INSERT INTO "operate_company" VALUES (1, "Air China","Corporate","Airline","China","18.77"); +INSERT INTO "operate_company" VALUES (2, "Air China Cargo","Joint Venture","Cargo airline","China","49"); +INSERT INTO "operate_company" VALUES (3, "Air Hong Kong","Joint Venture","Cargo airline","Hong Kong","60"); +INSERT INTO "operate_company" VALUES (4, "Dragonair","Subsidiary","Airline","Hong Kong","100"); +INSERT INTO "operate_company" VALUES (5, "Cathay Pacific Cargo","Subsidiary","Cargo airline","Hong Kong","100"); +INSERT INTO "operate_company" VALUES (6, "Cathay Pacific Catering Services (HK) Limited","Subsidiary","Catering services","Hong Kong","100"); +INSERT INTO "operate_company" VALUES (7, "Cathay Pacific Services Limited","Subsidiary","Cargo","Hong Kong","100"); +INSERT INTO "operate_company" VALUES (8, "Cathay Pacific Holidays","Subsidiary","Travel agency","Hong Kong","100"); +INSERT INTO "operate_company" VALUES (9, "Dragonair Holidays","Subsidiary","Travel agency","Hong Kong","100"); +INSERT INTO "operate_company" VALUES (10, "Hong Kong Airport Services","Subsidiary","Ground handling","Hong Kong","100"); +INSERT INTO "operate_company" VALUES (11, "Vogue Laundry Service Limited","Subsidiary","Laundry","Hong Kong","100"); +INSERT INTO "operate_company" VALUES (12, "China Pacific Laundry Services","Joint Venture","Laundry","Taiwan","45"); +INSERT INTO "operate_company" VALUES (13, "VN/CX Catering Services Limited","Joint Venture","Catering services","Vietnam","40"); +INSERT INTO "operate_company" VALUES (14, "CLS Catering Services Limited","Joint Venture","Catering services","Canada","30"); + + +INSERT INTO "flight" VALUES (1,"M2-F1 #0","March 1, 1963","Thompson","135","0", 1,2); +INSERT INTO "flight" VALUES (2,"M2-F1 #1","August 16, 1963","Thompson","240","3650",2,3); +INSERT INTO "flight" VALUES (3,"M2-F1 #6","September 3, 1963","Thompson","240","3650",2,4); +INSERT INTO "flight" VALUES (4,"M2-F1 #13","October 25, 1963","Thompson","240","3650",3,4); +INSERT INTO "flight" VALUES (5,"M2-F1 #14","November 8, 1963","Thompson","240","3650",4,5); +INSERT INTO "flight" VALUES (6,"M2-F1 #21","January 29, 1964","Thompson","240","3650",4,6); +INSERT INTO "flight" VALUES (7,"M2-F1 #33","March 30, 1964","Peterson","240","3650",5,11); +INSERT INTO "flight" VALUES (8,"M2-F1 #39","May 19, 1964","Peterson","240","3650",2,13); +INSERT INTO "flight" VALUES (9,"M2-F1 #61","July 16, 1965","Thompson","240","3650",6,11); +INSERT INTO "flight" VALUES (10,"M2-F1 #64","August 30, 1965","Thompson","240","3650",9,1); +INSERT INTO "flight" VALUES (11,"M2-F1 #70","October 8, 1965","Thompson","240","3650",4,5); +INSERT INTO "flight" VALUES (12,"M2-F1 #71","March 28, 1966","Thompson","240","3650",6,7); +INSERT INTO "flight" VALUES (13,"M2-F1 #73","August 4, 1966","Peterson","240","3650",8,9); + diff --git a/database/formula_1/annotation.json b/database/formula_1/annotation.json new file mode 100644 index 0000000000000000000000000000000000000000..0ec79e0fd411208df6b008d159efec071478d00f --- /dev/null +++ b/database/formula_1/annotation.json @@ -0,0 +1,5 @@ +{ + "label_id": null, + "data": [], + "review_id": null +} \ No newline at end of file diff --git a/database/formula_1/data_csv/circuits.csv b/database/formula_1/data_csv/circuits.csv new file mode 100644 index 0000000000000000000000000000000000000000..b747c407487be48e22b9ce6b7df7599c907fad01 --- /dev/null +++ b/database/formula_1/data_csv/circuits.csv @@ -0,0 +1,74 @@ +circuitId,circuitRef,name,location,country,lat,lng,alt,url +1,albert_park,Albert Park Grand Prix Circuit,Melbourne,Australia,-37.8497,144.968,10,http://en.wikipedia.org/wiki/Melbourne_Grand_Prix_Circuit +2,sepang,Sepang International Circuit,Kuala Lumpur,Malaysia,2.76083,101.738,,http://en.wikipedia.org/wiki/Sepang_International_Circuit +3,bahrain,Bahrain International Circuit,Sakhir,Bahrain,26.0325,50.5106,,http://en.wikipedia.org/wiki/Bahrain_International_Circuit +4,catalunya,Circuit de Barcelona-Catalunya,Montmel_,Spain,41.57,2.26111,,http://en.wikipedia.org/wiki/Circuit_de_Barcelona-Catalunya +5,istanbul,Istanbul Park,Istanbul,Turkey,40.9517,29.405,,http://en.wikipedia.org/wiki/Istanbul_Park +6,monaco,Circuit de Monaco,Monte-Carlo,Monaco,43.7347,7.42056,,http://en.wikipedia.org/wiki/Circuit_de_Monaco +7,villeneuve,Circuit Gilles Villeneuve,Montreal,Canada,45.5,-73.5228,,http://en.wikipedia.org/wiki/Circuit_Gilles_Villeneuve +8,magny_cours,Circuit de Nevers Magny-Cours,Magny Cours,France,46.8642,3.16361,,http://en.wikipedia.org/wiki/Circuit_de_Nevers_Magny-Cours +9,silverstone,Silverstone Circuit,Silverstone,UK,52.0786,-1.01694,,http://en.wikipedia.org/wiki/Silverstone_Circuit +10,hockenheimring,Hockenheimring,Hockenheim,Germany,49.3278,8.56583,,http://en.wikipedia.org/wiki/Hockenheimring +11,hungaroring,Hungaroring,Budapest,Hungary,47.5789,19.2486,,http://en.wikipedia.org/wiki/Hungaroring +12,valencia,Valencia Street Circuit,Valencia,Spain,39.4589,-0.331667,,http://en.wikipedia.org/wiki/Valencia_Street_Circuit +13,spa,Circuit de Spa-Francorchamps,Spa,Belgium,50.4372,5.97139,,http://en.wikipedia.org/wiki/Circuit_de_Spa-Francorchamps +14,monza,Autodromo Nazionale di Monza,Monza,Italy,45.6156,9.28111,,http://en.wikipedia.org/wiki/Autodromo_Nazionale_Monza +15,marina_bay,Marina Bay Street Circuit,Marina Bay,Singapore,1.2914,103.864,,http://en.wikipedia.org/wiki/Marina_Bay_Street_Circuit +16,fuji,Fuji Speedway,Oyama,Japan,35.3717,138.927,,http://en.wikipedia.org/wiki/Fuji_Speedway +17,shanghai,Shanghai International Circuit,Shanghai,China,31.3389,121.22,,http://en.wikipedia.org/wiki/Shanghai_International_Circuit +18,interlagos,Aut_dromo Jos̩ Carlos Pace,Ṣo Paulo,Brazil,-23.7036,-46.6997,,http://en.wikipedia.org/wiki/Aut%C3%B3dromo_Jos%C3%A9_Carlos_Pace +19,indianapolis,Indianapolis Motor Speedway,Indianapolis,USA,39.795,-86.2347,,http://en.wikipedia.org/wiki/Indianapolis_Motor_Speedway +20,nurburgring,N_rburgring,N_rburg,Germany,50.3356,6.9475,,http://en.wikipedia.org/wiki/N%C3%BCrburgring +21,imola,Autodromo Enzo e Dino Ferrari,Imola,Italy,44.3439,11.7167,,http://en.wikipedia.org/wiki/Autodromo_Enzo_e_Dino_Ferrari +22,suzuka,Suzuka Circuit,Suzuka,Japan,34.8431,136.541,,http://en.wikipedia.org/wiki/Suzuka_Circuit +23,osterreichring,A1-Ring,Spielburg,Austria,47.2197,14.7647,,http://en.wikipedia.org/wiki/A1-Ring +24,yas_marina,Yas Marina Circuit,Abu Dhabi,UAE,24.4672,54.6031,,http://en.wikipedia.org/wiki/Yas_Marina_Circuit +25,galvez,Aut_dromo Juan y Oscar Glvez,Buenos Aires,Argentina,-34.6943,-58.4593,,http://en.wikipedia.org/wiki/Aut%C3%B3dromo_Oscar_Alfredo_G%C3%A1lvez +26,jerez,Circuito de Jerez,Jerez de la Frontera,Spain,36.7083,-6.03417,,http://en.wikipedia.org/wiki/Circuito_Permanente_de_Jerez +27,estoril,Aut_dromo do Estoril,Estoril,Portugal,38.7506,-9.39417,,http://en.wikipedia.org/wiki/Aut%C3%B3dromo_do_Estoril +28,okayama,Okayama International Circuit,Okayama,Japan,34.915,134.221,,http://en.wikipedia.org/wiki/TI_Circuit +29,adelaide,Adelaide Street Circuit,Adelaide,Australia,-34.9272,138.617,,http://en.wikipedia.org/wiki/Adelaide_Street_Circuit +30,kyalami,Kyalami,Midrand,South Africa,-25.9894,28.0767,,http://en.wikipedia.org/wiki/Kyalami +31,donington,Donington Park,Castle Donington,UK,52.8306,-1.37528,,http://en.wikipedia.org/wiki/Donington_Park +32,rodriguez,Aut_dromo Hermanos Rodr_guez,Mexico City,Mexico,19.4042,-99.0907,,http://en.wikipedia.org/wiki/Aut%C3%B3dromo_Hermanos_Rodr%C3%ADguez +33,phoenix,Phoenix street circuit,Phoenix,USA,33.4479,-112.075,,http://en.wikipedia.org/wiki/Phoenix_street_circuit +34,ricard,Circuit Paul Ricard,Le Castellet,France,43.2506,5.79167,,http://en.wikipedia.org/wiki/Paul_Ricard_Circuit +35,yeongam,Korean International Circuit,Yeongam County,Korea,34.7333,126.417,,http://en.wikipedia.org/wiki/Korean_International_Circuit +36,jacarepagua,Aut_dromo Internacional Nelson Piquet,Rio de Janeiro,Brazil,-22.9756,-43.395,,http://en.wikipedia.org/wiki/Aut%C3%B3dromo_Internacional_Nelson_Piquet +37,detroit,Detroit Street Circuit,Detroit,USA,42.3298,-83.0401,,http://en.wikipedia.org/wiki/Detroit_street_circuit +38,brands_hatch,Brands Hatch,Kent,UK,51.3569,0.263056,,http://en.wikipedia.org/wiki/Brands_Hatch +39,zandvoort,Circuit Park Zandvoort,Zandvoort,Netherlands,52.3888,4.54092,,http://en.wikipedia.org/wiki/Circuit_Zandvoort +40,zolder,Zolder,Heusden-Zolder,Belgium,50.9894,5.25694,,http://en.wikipedia.org/wiki/Zolder +41,dijon,Dijon-Prenois,Dijon,France,47.3625,4.89913,,http://en.wikipedia.org/wiki/Dijon-Prenois +42,dallas,Fair Park,Dallas,USA,32.7774,-96.7587,,http://en.wikipedia.org/wiki/Fair_Park +43,long_beach,Long Beach,California,USA,33.7651,-118.189,,"http://en.wikipedia.org/wiki/Long_Beach,_California" +44,las_vegas,Las Vegas Street Circuit,Nevada,USA,36.1162,-115.174,,"http://en.wikipedia.org/wiki/Las_Vegas,_Nevada" +45,jarama,Jarama,Madrid,Spain,40.6171,-3.58558,,http://en.wikipedia.org/wiki/Circuito_Permanente_Del_Jarama +46,watkins_glen,Watkins Glen,New York State,USA,42.3369,-76.9272,,http://en.wikipedia.org/wiki/Watkins_Glen_International +47,anderstorp,Scandinavian Raceway,Anderstorp,Sweden,57.2653,13.6042,,http://en.wikipedia.org/wiki/Scandinavian_Raceway +48,mosport,Mosport International Raceway,Ontario,Canada,44.0481,-78.6756,,http://en.wikipedia.org/wiki/Mosport +49,montjuic,Montjuc,Barcelona,Spain,41.3664,2.15167,,http://en.wikipedia.org/wiki/Montju%C3%AFc_circuit +50,nivelles,Nivelles-Baulers,Brussels,Belgium,50.6211,4.32694,,http://en.wikipedia.org/wiki/Nivelles-Baulers +51,charade,Charade Circuit,Clermont-Ferrand,France,45.7472,3.03889,,http://en.wikipedia.org/wiki/Charade_Circuit +52,tremblant,Circuit Mont-Tremblant,Quebec,Canada,46.1877,-74.6099,,http://en.wikipedia.org/wiki/Circuit_Mont-Tremblant +53,essarts,Rouen-Les-Essarts,Rouen,France,49.3306,1.00458,,http://en.wikipedia.org/wiki/Rouen-Les-Essarts +54,lemans,Le Mans,Le Mans,France,47.95,0.224231,,http://en.wikipedia.org/wiki/Circuit_de_la_Sarthe#Bugatti_Circuit +55,reims,Reims-Gueux,Reims,France,49.2542,3.93083,,http://en.wikipedia.org/wiki/Reims-Gueux +56,george,Prince George Circuit,Eastern Cape Province,South Africa,-33.0486,27.8736,,http://en.wikipedia.org/wiki/Prince_George_Circuit +57,zeltweg,Zeltweg,Styria,Austria,47.2039,14.7478,,http://en.wikipedia.org/wiki/Zeltweg_Airfield +58,aintree,Aintree,Liverpool,UK,53.4769,-2.94056,,http://en.wikipedia.org/wiki/Aintree_Motor_Racing_Circuit +59,boavista,Circuito da Boavista,Oporto,Portugal,41.1705,-8.67325,,http://en.wikipedia.org/wiki/Circuito_da_Boavista +60,riverside,Riverside International Raceway,California,USA,33.937,-117.273,,http://en.wikipedia.org/wiki/Riverside_International_Raceway +61,avus,AVUS,Berlin,Germany,52.4806,13.2514,,http://en.wikipedia.org/wiki/AVUS +62,monsanto,Monsanto Park Circuit,Lisbon,Portugal,38.7197,-9.20306,,http://en.wikipedia.org/wiki/Monsanto_Park_Circuit +63,sebring,Sebring International Raceway,Florida,USA,27.4547,-81.3483,,http://en.wikipedia.org/wiki/Sebring_Raceway +64,ain-diab,Ain Diab,Casablanca,Morocco,33.5786,-7.6875,,http://en.wikipedia.org/wiki/Ain-Diab_Circuit +65,pescara,Pescara Circuit,Pescara,Italy,42.475,14.1508,,http://en.wikipedia.org/wiki/Pescara_Circuit +66,bremgarten,Circuit Bremgarten,Bern,Switzerland,46.9589,7.40194,,http://en.wikipedia.org/wiki/Circuit_Bremgarten +67,pedralbes,Circuit de Pedralbes,Barcelona,Spain,41.3903,2.11667,,http://en.wikipedia.org/wiki/Pedralbes_Circuit +68,buddh,Buddh International Circuit,Uttar Pradesh,India,28.3487,77.5331,,http://en.wikipedia.org/wiki/Buddh_International_Circuit +69,americas,Circuit of the Americas,Austin,USA,30.1328,-97.6411,,http://en.wikipedia.org/wiki/Circuit_of_the_Americas +70,red_bull_ring,Red Bull Ring,Spielburg,Austria,47.2197,14.7647,,http://en.wikipedia.org/wiki/Red_Bull_Ring +71,sochi,Sochi Autodrom,Sochi,Russia,43.4057,39.9578,,http://en.wikipedia.org/wiki/Sochi_Autodrom +72,port_imperial,Port Imperial Street Circuit,New Jersey,USA,40.7769,-74.0111,,http://en.wikipedia.org/wiki/Port_Imperial_Street_Circuit +73,BAK,Baku City Circuit,Baku,Azerbaijan,40.3725,49.8533,,http://en.wikipedia.org/wiki/Baku_City_Circuit \ No newline at end of file diff --git a/database/formula_1/data_csv/constructorResults.csv b/database/formula_1/data_csv/constructorResults.csv new file mode 100644 index 0000000000000000000000000000000000000000..3dcb7d4f1c084b288992b79ef96f5388a1dd26ed --- /dev/null +++ b/database/formula_1/data_csv/constructorResults.csv @@ -0,0 +1,11143 @@ +constructorResultsId,raceId,constructorId,points,status +1,18,1,14,NULL +2,18,2,8,NULL +3,18,3,9,NULL +4,18,4,5,NULL +5,18,5,2,NULL +6,18,6,1,NULL +7,18,7,0,NULL +8,18,8,0,NULL +9,18,9,0,NULL +10,18,10,0,NULL +11,18,11,0,NULL +12,19,6,10,NULL +13,19,2,11,NULL +14,19,1,10,NULL +15,19,7,5,NULL +16,19,9,2,NULL +17,19,4,1,NULL +18,19,11,0,NULL +19,19,10,0,NULL +20,19,3,0,NULL +21,19,8,0,NULL +22,19,5,0,NULL +23,20,6,18,NULL +24,20,2,11,NULL +25,20,1,4,NULL +26,20,7,3,NULL +27,20,9,2,NULL +28,20,3,1,NULL +29,20,4,0,NULL +30,20,11,0,NULL +31,20,10,0,NULL +32,20,5,0,NULL +33,20,8,0,NULL +34,21,6,18,NULL +35,21,1,6,NULL +36,21,2,5,NULL +37,21,9,4,NULL +38,21,11,3,NULL +39,21,3,2,NULL +40,21,7,1,NULL +41,21,10,0,NULL +42,21,8,0,NULL +43,21,4,0,NULL +44,21,5,0,NULL +45,22,6,16,NULL +46,22,1,8,NULL +47,22,2,9,NULL +48,22,4,3,NULL +49,22,9,2,NULL +50,22,3,1,NULL +51,22,7,0,NULL +52,22,11,0,NULL +53,22,10,0,NULL +54,22,5,0,NULL +55,23,1,11,NULL +56,23,2,8,NULL +57,23,6,6,NULL +58,23,9,5,NULL +59,23,5,4,NULL +60,23,11,3,NULL +61,23,3,2,NULL +62,23,4,0,NULL +63,23,7,0,NULL +64,23,10,0,NULL +65,24,2,18,NULL +66,24,9,6,NULL +67,24,7,8,NULL +68,24,6,4,NULL +69,24,11,2,NULL +70,24,5,1,NULL +71,24,1,0,NULL +72,24,3,0,NULL +73,24,10,0,NULL +74,24,4,0,NULL +75,25,6,18,NULL +76,25,7,6,NULL +77,25,1,5,NULL +78,25,2,4,NULL +79,25,9,3,NULL +80,25,4,3,NULL +81,25,5,0,NULL +82,25,11,0,NULL +83,25,3,0,NULL +84,25,10,0,NULL +85,26,1,14,NULL +86,26,2,8,NULL +87,26,11,6,NULL +88,26,6,5,NULL +89,26,4,3,NULL +90,26,7,2,NULL +91,26,3,1,NULL +92,26,9,0,NULL +93,26,5,0,NULL +94,26,10,0,NULL +95,27,1,14,NULL +96,27,4,8,NULL +97,27,6,9,NULL +98,27,2,7,NULL +99,27,5,1,NULL +100,27,7,0,NULL +101,27,3,0,NULL +102,27,9,0,NULL +103,27,10,0,NULL +104,27,11,0,NULL +105,28,1,14,NULL +106,28,7,10,NULL +107,28,6,6,NULL +108,28,4,8,NULL +109,28,2,1,NULL +110,28,9,0,NULL +111,28,11,0,NULL +112,28,3,0,NULL +113,28,10,0,NULL +114,28,5,0,NULL +115,29,6,10,NULL +116,29,1,13,NULL +117,29,2,6,NULL +118,29,7,6,NULL +119,29,5,3,NULL +120,29,3,1,NULL +121,29,4,0,NULL +122,29,9,0,NULL +123,29,11,0,NULL +124,29,10,0,NULL +125,30,6,10,NULL +126,30,2,11,NULL +127,30,1,6,NULL +128,30,4,5,NULL +129,30,5,6,NULL +130,30,9,1,NULL +131,30,7,0,NULL +132,30,3,0,NULL +133,30,10,0,NULL +134,30,11,0,NULL +135,31,5,10,NULL +136,31,1,10,NULL +137,31,2,10,NULL +138,31,4,5,NULL +139,31,6,3,NULL +140,31,9,1,NULL +141,31,7,0,NULL +142,31,3,0,NULL +143,31,11,0,NULL +144,31,10,0,NULL +145,32,4,10,NULL +146,32,3,9,NULL +147,32,1,6,NULL +148,32,7,5,NULL +149,32,5,4,NULL +150,32,2,3,NULL +151,32,9,2,NULL +152,32,11,0,NULL +153,32,6,0,NULL +154,32,10,0,NULL +155,33,4,15,NULL +156,33,2,8,NULL +157,33,6,8,NULL +158,33,7,4,NULL +159,33,5,3,NULL +160,33,9,1,NULL +161,33,3,0,NULL +162,33,1,0,NULL +163,33,11,0,NULL +164,33,10,0,NULL +165,34,1,10,NULL +166,34,6,14,NULL +167,34,4,6,NULL +168,34,2,7,NULL +169,34,7,2,NULL +170,34,5,0,NULL +171,34,9,0,NULL +172,34,11,0,NULL +173,34,3,0,NULL +174,34,10,0,NULL +175,35,6,16,NULL +176,35,4,8,NULL +177,35,5,5,NULL +178,35,1,6,NULL +179,35,7,4,NULL +180,35,9,0,NULL +181,35,2,0,NULL +182,35,3,0,NULL +183,35,11,0,NULL +184,35,10,0,NULL +185,36,6,13,NULL +186,36,1,14,D +187,36,2,5,NULL +188,36,4,4,NULL +189,36,3,2,NULL +190,36,7,1,NULL +191,36,11,0,NULL +192,36,8,0,NULL +193,36,9,0,NULL +194,36,5,0,NULL +195,36,12,0,NULL +196,37,1,18,D +197,37,6,10,NULL +198,37,2,5,NULL +199,37,4,4,NULL +200,37,7,2,NULL +201,37,3,0,NULL +202,37,9,0,NULL +203,37,11,0,NULL +204,37,8,0,NULL +205,37,5,0,NULL +206,37,12,0,NULL +207,38,6,16,NULL +208,38,1,12,D +209,38,2,8,NULL +210,38,7,2,NULL +211,38,4,1,NULL +212,38,3,0,NULL +213,38,11,0,NULL +214,38,12,0,NULL +215,38,8,0,NULL +216,38,9,0,NULL +217,38,5,0,NULL +218,39,6,10,NULL +219,39,1,14,D +220,39,2,5,NULL +221,39,9,4,NULL +222,39,3,3,NULL +223,39,4,2,NULL +224,39,8,1,NULL +225,39,11,0,NULL +226,39,12,0,NULL +227,39,7,0,NULL +228,39,5,0,NULL +229,40,1,18,D +230,40,6,7,NULL +231,40,4,5,NULL +232,40,2,7,NULL +233,40,3,2,NULL +234,40,5,0,NULL +235,40,11,0,NULL +236,40,9,0,NULL +237,40,7,0,NULL +238,40,8,0,NULL +239,40,12,0,NULL +240,41,1,12,D +241,41,2,8,NULL +242,41,3,6,NULL +243,41,4,5,NULL +244,41,6,4,NULL +245,41,8,3,NULL +246,41,7,1,NULL +247,41,9,0,NULL +248,41,11,0,NULL +249,41,5,0,NULL +250,41,12,0,NULL +251,42,1,18,D +252,42,6,11,NULL +253,42,4,4,NULL +254,42,7,3,NULL +255,42,9,2,NULL +256,42,2,1,NULL +257,42,3,0,NULL +258,42,8,0,NULL +259,42,11,0,NULL +260,42,5,0,NULL +261,42,12,0,NULL +262,43,6,18,NULL +263,43,1,8,D +264,43,2,9,NULL +265,43,4,3,NULL +266,43,11,1,NULL +267,43,3,0,NULL +268,43,7,0,NULL +269,43,9,0,NULL +270,43,8,0,NULL +271,43,12,0,NULL +272,43,5,0,NULL +273,44,6,14,NULL +274,44,1,14,D +275,44,2,8,NULL +276,44,4,3,NULL +277,44,11,0,NULL +278,44,9,0,NULL +279,44,3,0,NULL +280,44,8,0,NULL +281,44,12,0,NULL +282,44,5,0,NULL +283,44,7,0,NULL +284,45,1,10,D +285,45,6,8,NULL +286,45,9,10,NULL +287,45,3,5,NULL +288,45,2,5,NULL +289,45,4,1,NULL +290,45,11,0,NULL +291,45,8,0,NULL +292,45,7,0,NULL +293,45,12,0,NULL +294,45,5,0,NULL +295,46,1,15,D +296,46,6,8,NULL +297,46,2,10,NULL +298,46,7,3,NULL +299,46,3,2,NULL +300,46,4,1,NULL +301,46,9,0,NULL +302,46,8,0,NULL +303,46,5,0,NULL +304,46,12,0,NULL +305,46,11,0,NULL +306,47,6,18,NULL +307,47,1,10,D +308,47,2,6,NULL +309,47,4,3,NULL +310,47,3,2,NULL +311,47,9,0,NULL +312,47,7,0,NULL +313,47,11,0,NULL +314,47,8,0,NULL +315,47,5,0,NULL +316,47,12,0,NULL +317,48,1,18,D +318,48,6,6,NULL +319,48,2,9,NULL +320,48,3,3,NULL +321,48,4,2,NULL +322,48,11,1,NULL +323,48,9,0,NULL +324,48,7,0,NULL +325,48,8,0,NULL +326,48,5,0,NULL +327,48,12,0,NULL +328,49,6,18,NULL +329,49,1,11,D +330,49,2,4,NULL +331,49,3,3,NULL +332,49,9,2,NULL +333,49,4,1,NULL +334,49,7,0,NULL +335,49,5,0,NULL +336,49,11,0,NULL +337,49,12,0,NULL +338,49,8,0,NULL +339,50,1,10,D +340,50,4,12,NULL +341,50,6,9,NULL +342,50,9,5,NULL +343,50,2,2,NULL +344,50,12,1,NULL +345,50,5,0,NULL +346,50,11,0,NULL +347,50,7,0,NULL +348,50,8,0,NULL +349,50,3,0,NULL +350,51,6,16,NULL +351,51,1,8,D +352,51,5,8,NULL +353,51,11,4,NULL +354,51,2,2,NULL +355,51,9,1,NULL +356,51,4,0,NULL +357,51,3,0,NULL +358,51,7,0,NULL +359,51,8,0,NULL +360,51,12,0,NULL +361,52,6,18,NULL +362,52,1,8,D +363,52,3,5,NULL +364,52,2,7,NULL +365,52,7,1,NULL +366,52,9,0,NULL +367,52,8,0,NULL +368,52,5,0,NULL +369,52,12,0,NULL +370,52,11,0,NULL +371,52,4,0,NULL +372,53,4,10,NULL +373,53,6,8,NULL +374,53,1,10,NULL +375,53,11,5,NULL +376,53,3,5,NULL +377,53,9,1,NULL +378,53,5,0,NULL +379,53,2,0,NULL +380,53,7,0,NULL +381,53,13,0,NULL +382,53,8,0,NULL +383,54,4,18,NULL +384,54,11,6,NULL +385,54,1,5,NULL +386,54,6,7,NULL +387,54,2,2,NULL +388,54,7,1,NULL +389,54,5,0,NULL +390,54,13,0,NULL +391,54,8,0,NULL +392,54,9,0,NULL +393,54,3,0,NULL +394,55,4,14,NULL +395,55,1,8,NULL +396,55,7,6,NULL +397,55,2,8,NULL +398,55,11,2,NULL +399,55,9,1,NULL +400,55,5,0,NULL +401,55,13,0,NULL +402,55,8,0,NULL +403,55,6,0,NULL +404,55,3,0,NULL +405,56,6,15,NULL +406,56,4,9,NULL +407,56,1,10,NULL +408,56,3,3,NULL +409,56,11,2,NULL +410,56,7,0,NULL +411,56,2,0,NULL +412,56,5,0,NULL +413,56,13,0,NULL +414,56,9,0,NULL +415,56,8,0,NULL +416,57,6,16,NULL +417,57,4,11,NULL +418,57,1,5,NULL +419,57,11,4,NULL +420,57,3,2,NULL +421,57,2,1,NULL +422,57,7,0,NULL +423,57,5,0,NULL +424,57,13,0,NULL +425,57,8,0,NULL +426,57,9,0,NULL +427,58,4,16,NULL +428,58,6,13,NULL +429,58,1,4,NULL +430,58,11,5,NULL +431,58,2,1,NULL +432,58,3,0,NULL +433,58,7,0,NULL +434,58,9,0,NULL +435,58,5,0,NULL +436,58,13,0,NULL +437,58,8,0,NULL +438,59,4,13,NULL +439,59,1,8,NULL +440,59,9,6,NULL +441,59,11,5,NULL +442,59,6,4,NULL +443,59,2,2,NULL +444,59,7,1,NULL +445,59,5,0,NULL +446,59,13,0,NULL +447,59,8,0,NULL +448,59,3,0,NULL +449,60,4,15,NULL +450,60,6,12,NULL +451,60,1,9,NULL +452,60,2,3,NULL +453,60,3,0,NULL +454,60,11,0,NULL +455,60,7,0,NULL +456,60,9,0,NULL +457,60,5,0,NULL +458,60,13,0,NULL +459,60,8,0,NULL +460,61,4,15,NULL +461,61,6,12,NULL +462,61,1,6,NULL +463,61,7,3,NULL +464,61,2,2,NULL +465,61,9,1,NULL +466,61,11,0,NULL +467,61,5,0,NULL +468,61,3,0,NULL +469,61,13,0,NULL +470,61,8,0,NULL +471,62,6,18,NULL +472,62,4,10,NULL +473,62,7,5,NULL +474,62,11,3,NULL +475,62,9,2,NULL +476,62,5,1,NULL +477,62,3,0,NULL +478,62,13,0,NULL +479,62,2,0,NULL +480,62,8,0,NULL +481,62,1,0,NULL +482,63,6,16,NULL +483,63,4,11,NULL +484,63,7,5,NULL +485,63,1,6,NULL +486,63,2,1,NULL +487,63,9,0,NULL +488,63,5,0,NULL +489,63,3,0,NULL +490,63,13,0,NULL +491,63,8,0,NULL +492,63,11,0,NULL +493,64,6,18,NULL +494,64,1,6,NULL +495,64,11,5,NULL +496,64,4,7,NULL +497,64,7,2,NULL +498,64,9,1,NULL +499,64,5,0,NULL +500,64,3,0,NULL +501,64,8,0,NULL +502,64,2,0,NULL +503,64,13,0,NULL +504,65,11,15,NULL +505,65,1,8,NULL +506,65,2,6,NULL +507,65,9,4,NULL +508,65,7,3,NULL +509,65,6,3,NULL +510,65,13,0,NULL +511,65,5,0,NULL +512,65,8,0,NULL +513,65,4,0,NULL +514,65,3,0,NULL +515,66,6,16,NULL +516,66,4,11,NULL +517,66,11,6,NULL +518,66,1,4,NULL +519,66,7,2,NULL +520,66,3,0,NULL +521,66,9,0,NULL +522,66,2,0,NULL +523,66,5,0,NULL +524,66,13,0,NULL +525,66,8,0,NULL +526,67,6,10,NULL +527,67,1,8,NULL +528,67,2,7,NULL +529,67,4,5,NULL +530,67,11,7,NULL +531,67,7,2,NULL +532,67,3,0,NULL +533,67,9,0,NULL +534,67,5,0,NULL +535,67,8,0,NULL +536,67,14,0,NULL +537,68,6,10,NULL +538,68,4,14,NULL +539,68,11,8,NULL +540,68,1,4,NULL +541,68,2,2,NULL +542,68,3,1,NULL +543,68,9,0,NULL +544,68,5,0,NULL +545,68,14,0,NULL +546,68,8,0,NULL +547,68,7,0,NULL +548,69,4,16,NULL +549,69,6,8,NULL +550,69,11,5,NULL +551,69,1,4,NULL +552,69,7,5,NULL +553,69,2,1,NULL +554,69,3,0,NULL +555,69,9,0,NULL +556,69,5,0,NULL +557,69,8,0,NULL +558,69,14,0,NULL +559,70,6,15,NULL +560,70,4,11,NULL +561,70,11,8,NULL +562,70,1,5,NULL +563,70,2,0,NULL +564,70,8,0,NULL +565,70,5,0,NULL +566,70,9,0,NULL +567,70,14,0,NULL +568,70,7,0,NULL +569,70,3,0,NULL +570,71,4,16,NULL +571,71,6,8,NULL +572,71,9,7,NULL +573,71,3,4,NULL +574,71,1,4,NULL +575,71,7,0,NULL +576,71,15,0,NULL +577,71,16,0,NULL +578,71,17,0,NULL +579,71,18,0,NULL +580,72,4,10,NULL +581,72,7,12,NULL +582,72,3,6,NULL +583,72,1,5,NULL +584,72,9,4,NULL +585,72,6,2,NULL +586,72,15,0,NULL +587,72,17,0,NULL +588,72,18,0,NULL +589,72,16,0,NULL +590,73,4,10,NULL +591,73,7,13,NULL +592,73,1,10,NULL +593,73,3,3,NULL +594,73,15,2,NULL +595,73,9,1,NULL +596,73,6,0,NULL +597,73,17,0,NULL +598,73,18,0,NULL +599,73,16,0,NULL +600,74,4,10,NULL +601,74,6,8,NULL +602,74,1,6,NULL +603,74,15,5,NULL +604,74,7,4,NULL +605,74,3,5,NULL +606,74,9,1,NULL +607,74,17,0,NULL +608,74,18,0,NULL +609,74,16,0,NULL +610,75,1,12,NULL +611,75,4,12,NULL +612,75,7,11,NULL +613,75,3,3,NULL +614,75,9,1,NULL +615,75,6,0,NULL +616,75,15,0,NULL +617,75,17,0,NULL +618,75,18,0,NULL +619,76,1,14,NULL +620,76,3,14,NULL +621,76,4,5,NULL +622,76,7,3,NULL +623,76,6,3,NULL +624,76,15,0,NULL +625,76,17,0,NULL +626,76,18,0,NULL +627,76,9,0,NULL +628,77,4,13,NULL +629,77,3,8,NULL +630,77,6,10,NULL +631,77,9,5,NULL +632,77,1,2,NULL +633,77,7,1,NULL +634,77,16,0,NULL +635,77,15,0,NULL +636,77,17,0,NULL +637,77,18,0,NULL +638,78,1,10,NULL +639,78,6,14,NULL +640,78,15,5,NULL +641,78,3,4,NULL +642,78,7,3,NULL +643,78,9,3,NULL +644,78,17,0,NULL +645,78,18,0,NULL +646,78,16,0,NULL +647,78,4,0,NULL +648,79,6,18,NULL +649,79,17,11,NULL +650,79,18,7,NULL +651,79,7,0,NULL +652,79,1,0,NULL +653,79,16,0,NULL +654,79,4,0,NULL +655,79,3,0,NULL +656,79,15,0,NULL +657,79,9,0,NULL +658,80,4,13,NULL +659,80,1,8,NULL +660,80,6,6,NULL +661,80,16,5,NULL +662,80,7,6,NULL +663,80,15,1,NULL +664,80,9,0,NULL +665,80,3,0,NULL +666,80,17,0,NULL +667,80,18,0,NULL +668,81,1,16,NULL +669,81,4,13,NULL +670,81,16,4,NULL +671,81,6,5,NULL +672,81,7,1,NULL +673,81,15,0,NULL +674,81,3,0,NULL +675,81,9,0,NULL +676,81,17,0,NULL +677,81,18,0,NULL +678,82,4,15,NULL +679,82,1,8,NULL +680,82,16,6,NULL +681,82,6,4,NULL +682,82,7,3,NULL +683,82,9,2,NULL +684,82,15,1,NULL +685,82,3,0,NULL +686,82,18,0,NULL +687,82,17,0,NULL +688,83,1,10,NULL +689,83,6,8,NULL +690,83,7,11,NULL +691,83,16,5,NULL +692,83,3,5,NULL +693,83,4,0,NULL +694,83,17,0,NULL +695,83,15,0,NULL +696,83,18,0,NULL +697,83,9,0,NULL +698,84,1,16,NULL +699,84,4,13,NULL +700,84,16,4,NULL +701,84,7,3,NULL +702,84,9,3,NULL +703,84,6,0,NULL +704,84,15,0,NULL +705,84,18,0,NULL +706,84,17,0,NULL +707,84,3,0,NULL +708,85,1,15,NULL +709,85,4,14,NULL +710,85,7,7,NULL +711,85,3,2,NULL +712,85,16,1,NULL +713,85,15,0,NULL +714,85,6,0,NULL +715,85,9,0,NULL +716,85,17,0,NULL +717,85,18,0,NULL +718,86,1,10,NULL +719,86,4,8,NULL +720,86,16,6,NULL +721,86,3,5,NULL +722,86,6,4,NULL +723,86,15,3,NULL +724,86,7,2,NULL +725,86,17,1,NULL +726,86,9,0,NULL +727,86,18,0,NULL +728,87,1,18,NULL +729,87,4,10,NULL +730,87,6,8,NULL +731,87,16,2,NULL +732,87,7,1,NULL +733,87,9,0,NULL +734,87,15,0,NULL +735,87,18,0,NULL +736,87,17,0,NULL +737,87,3,0,NULL +738,88,1,10,NULL +739,88,4,14,NULL +740,88,3,5,NULL +741,88,16,4,NULL +742,88,9,3,NULL +743,88,6,2,NULL +744,88,7,1,NULL +745,88,15,0,NULL +746,88,17,0,NULL +747,88,18,0,NULL +748,89,4,15,NULL +749,89,1,8,NULL +750,89,7,6,NULL +751,89,9,4,NULL +752,89,15,3,NULL +753,89,3,2,NULL +754,89,16,1,NULL +755,89,17,0,NULL +756,89,6,0,NULL +757,89,18,0,NULL +758,90,6,18,NULL +759,90,4,8,NULL +760,90,3,9,NULL +761,90,16,3,NULL +762,90,1,1,NULL +763,90,15,0,NULL +764,90,19,0,NULL +765,90,7,0,NULL +766,90,17,0,NULL +767,90,18,0,NULL +768,91,6,15,NULL +769,91,3,8,NULL +770,91,16,6,NULL +771,91,4,6,NULL +772,91,1,3,NULL +773,91,15,1,NULL +774,91,7,0,NULL +775,91,19,0,NULL +776,91,17,0,NULL +777,91,18,0,NULL +778,92,6,18,NULL +779,92,16,10,NULL +780,92,4,8,NULL +781,92,3,2,NULL +782,92,19,1,NULL +783,92,7,0,NULL +784,92,15,0,NULL +785,92,17,0,NULL +786,92,18,0,NULL +787,92,1,0,NULL +788,93,6,13,NULL +789,93,16,8,NULL +790,93,3,8,NULL +791,93,4,9,NULL +792,93,1,1,NULL +793,93,15,0,NULL +794,93,7,0,NULL +795,93,19,0,NULL +796,93,18,0,NULL +797,93,17,0,NULL +798,94,6,18,NULL +799,94,4,11,NULL +800,94,16,5,NULL +801,94,3,3,NULL +802,94,15,2,NULL +803,94,1,0,NULL +804,94,19,0,NULL +805,94,7,0,NULL +806,94,17,0,NULL +807,94,18,0,NULL +808,95,4,10,NULL +809,95,16,8,NULL +810,95,6,6,NULL +811,95,3,5,NULL +812,95,15,4,NULL +813,95,7,4,NULL +814,95,17,2,NULL +815,95,18,0,NULL +816,95,1,0,NULL +817,95,19,0,NULL +818,96,6,18,NULL +819,96,16,6,NULL +820,96,4,9,NULL +821,96,15,3,NULL +822,96,19,2,NULL +823,96,3,1,NULL +824,96,17,0,NULL +825,96,7,0,NULL +826,96,18,0,NULL +827,96,1,0,NULL +828,97,6,18,NULL +829,97,16,6,NULL +830,97,15,5,NULL +831,97,1,7,NULL +832,97,17,3,NULL +833,97,19,0,NULL +834,97,18,0,NULL +835,97,4,0,NULL +836,97,3,0,NULL +837,97,7,0,NULL +838,98,6,18,NULL +839,98,16,6,NULL +840,98,4,5,NULL +841,98,7,4,NULL +842,98,1,5,NULL +843,98,18,1,NULL +844,98,15,0,NULL +845,98,19,0,NULL +846,98,3,0,NULL +847,98,17,0,NULL +848,99,6,16,NULL +849,99,4,13,NULL +850,99,16,4,NULL +851,99,1,5,NULL +852,99,3,1,NULL +853,99,19,0,NULL +854,99,15,0,NULL +855,99,7,0,NULL +856,99,17,0,NULL +857,99,18,0,NULL +858,100,6,16,NULL +859,100,1,10,NULL +860,100,16,5,NULL +861,100,3,4,NULL +862,100,15,3,NULL +863,100,19,1,NULL +864,100,4,0,NULL +865,100,7,0,NULL +866,100,17,0,NULL +867,100,18,0,NULL +868,101,6,10,NULL +869,101,16,9,NULL +870,101,4,6,NULL +871,101,1,5,NULL +872,101,3,6,NULL +873,101,19,3,NULL +874,101,15,0,NULL +875,101,7,0,NULL +876,101,17,0,NULL +877,101,18,0,NULL +878,102,6,18,NULL +879,102,4,6,NULL +880,102,3,7,NULL +881,102,16,7,NULL +882,102,15,1,NULL +883,102,1,0,NULL +884,102,19,0,NULL +885,102,7,0,NULL +886,102,17,0,NULL +887,102,18,0,NULL +888,103,1,12,NULL +889,103,6,14,NULL +890,103,15,9,NULL +891,103,19,3,NULL +892,103,7,1,NULL +893,103,4,0,NULL +894,103,17,0,NULL +895,103,3,0,NULL +896,103,16,0,NULL +897,103,18,0,NULL +898,104,6,18,NULL +899,104,16,11,NULL +900,104,3,6,NULL +901,104,1,3,NULL +902,104,15,1,NULL +903,104,19,0,NULL +904,104,4,0,NULL +905,104,7,0,NULL +906,104,17,0,NULL +907,104,18,0,NULL +908,105,6,10,NULL +909,105,16,11,NULL +910,105,1,6,NULL +911,105,4,5,NULL +912,105,3,4,NULL +913,105,15,3,NULL +914,105,19,0,NULL +915,105,17,0,NULL +916,105,7,0,NULL +917,105,18,0,NULL +918,106,6,10,NULL +919,106,3,10,NULL +920,106,16,11,NULL +921,106,4,4,NULL +922,106,1,3,NULL +923,106,15,1,NULL +924,106,7,0,NULL +925,106,19,0,NULL +926,106,17,0,NULL +927,106,18,0,NULL +928,107,3,14,NULL +929,107,1,8,NULL +930,107,6,8,NULL +931,107,4,5,NULL +932,107,16,3,NULL +933,107,15,1,NULL +934,107,7,0,NULL +935,107,19,0,NULL +936,107,17,0,NULL +937,107,18,0,NULL +938,108,1,16,NULL +939,108,3,9,NULL +940,108,6,5,NULL +941,108,4,6,NULL +942,108,15,3,NULL +943,108,16,0,NULL +944,108,18,0,NULL +945,108,17,0,NULL +946,108,19,0,NULL +947,108,7,0,NULL +948,109,1,10,NULL +949,109,6,11,NULL +950,109,4,10,NULL +951,109,3,5,NULL +952,109,16,2,NULL +953,109,15,1,NULL +954,109,17,0,NULL +955,109,7,0,NULL +956,109,18,0,NULL +957,109,19,0,NULL +958,110,17,10,NULL +959,110,1,13,NULL +960,110,4,7,NULL +961,110,15,4,NULL +962,110,16,3,NULL +963,110,3,2,NULL +964,110,19,0,NULL +965,110,7,0,NULL +966,110,6,0,NULL +967,110,18,0,NULL +968,111,6,16,NULL +969,111,1,12,NULL +970,111,3,7,NULL +971,111,4,3,NULL +972,111,16,1,NULL +973,111,7,0,NULL +974,111,15,0,NULL +975,111,19,0,NULL +976,111,17,0,NULL +977,111,18,0,NULL +978,112,6,16,NULL +979,112,4,8,NULL +980,112,3,9,NULL +981,112,7,3,NULL +982,112,19,2,NULL +983,112,17,1,NULL +984,112,16,0,NULL +985,112,15,0,NULL +986,112,18,0,NULL +987,112,1,0,NULL +988,113,6,16,NULL +989,113,1,12,NULL +990,113,16,5,NULL +991,113,3,3,NULL +992,113,19,2,NULL +993,113,4,1,NULL +994,113,7,0,NULL +995,113,17,0,NULL +996,113,18,0,NULL +997,113,15,0,NULL +998,114,3,15,NULL +999,114,1,10,NULL +1000,114,6,7,NULL +1001,114,4,7,NULL +1002,114,7,0,NULL +1003,114,17,0,NULL +1004,114,15,0,NULL +1005,114,16,0,NULL +1006,114,18,0,NULL +1007,114,19,0,NULL +1008,115,6,14,NULL +1009,115,3,14,NULL +1010,115,4,5,NULL +1011,115,1,3,NULL +1012,115,19,2,NULL +1013,115,7,1,NULL +1014,115,18,0,NULL +1015,115,16,0,NULL +1016,115,15,0,NULL +1017,115,17,0,NULL +1018,116,3,18,NULL +1019,116,6,10,NULL +1020,116,4,5,NULL +1021,116,19,3,NULL +1022,116,16,2,NULL +1023,116,15,1,NULL +1024,116,17,0,NULL +1025,116,18,0,NULL +1026,116,1,0,NULL +1027,116,7,0,NULL +1028,117,3,18,NULL +1029,117,6,8,NULL +1030,117,1,9,NULL +1031,117,19,3,NULL +1032,117,7,1,NULL +1033,117,16,0,NULL +1034,117,15,0,NULL +1035,117,18,0,NULL +1036,117,17,0,NULL +1037,117,4,0,NULL +1038,118,6,15,NULL +1039,118,3,8,NULL +1040,118,1,10,NULL +1041,118,4,3,NULL +1042,118,7,2,NULL +1043,118,16,1,NULL +1044,118,15,0,NULL +1045,118,17,0,NULL +1046,118,19,0,NULL +1047,118,18,0,NULL +1048,119,3,10,NULL +1049,119,1,8,NULL +1050,119,4,11,NULL +1051,119,7,7,NULL +1052,119,6,2,NULL +1053,119,16,1,NULL +1054,119,15,0,NULL +1055,119,19,0,NULL +1056,119,18,0,NULL +1057,119,17,0,NULL +1058,120,4,12,NULL +1059,120,1,12,NULL +1060,120,3,11,NULL +1061,120,19,3,NULL +1062,120,6,1,NULL +1063,120,15,0,NULL +1064,120,16,0,NULL +1065,120,7,0,NULL +1066,120,18,0,NULL +1067,120,17,0,NULL +1068,121,6,16,NULL +1069,121,3,12,NULL +1070,121,1,5,NULL +1071,121,16,3,NULL +1072,121,19,2,NULL +1073,121,4,1,NULL +1074,121,15,0,NULL +1075,121,17,0,NULL +1076,121,18,0,NULL +1077,121,7,0,NULL +1078,122,6,10,NULL +1079,122,1,8,NULL +1080,122,15,10,NULL +1081,122,4,5,NULL +1082,122,3,3,NULL +1083,122,17,2,NULL +1084,122,19,1,NULL +1085,122,7,0,NULL +1086,122,18,0,NULL +1087,122,16,0,NULL +1088,123,6,11,NULL +1089,123,1,14,NULL +1090,123,16,8,NULL +1091,123,4,4,NULL +1092,123,7,2,NULL +1093,123,15,0,NULL +1094,123,19,0,NULL +1095,123,3,0,NULL +1096,123,17,0,NULL +1097,123,18,0,NULL +1098,124,6,10,NULL +1099,124,3,6,NULL +1100,124,1,4,NULL +1101,124,19,3,NULL +1102,124,18,2,NULL +1103,124,7,1,NULL +1104,124,16,0,NULL +1105,124,21,0,NULL +1106,124,17,0,NULL +1107,124,4,0,NULL +1108,124,15,0,NULL +1109,125,3,16,NULL +1110,125,6,4,NULL +1111,125,4,3,NULL +1112,125,15,3,NULL +1113,125,7,0,NULL +1114,125,16,0,NULL +1115,125,17,0,NULL +1116,125,19,0,NULL +1117,125,21,0,NULL +1118,125,18,0,NULL +1119,125,1,0,NULL +1120,126,6,10,NULL +1121,126,3,8,NULL +1122,126,1,4,NULL +1123,126,4,3,NULL +1124,126,7,1,NULL +1125,126,19,0,NULL +1126,126,17,0,NULL +1127,126,16,0,NULL +1128,126,18,0,NULL +1129,126,15,0,NULL +1130,126,21,0,NULL +1131,127,6,16,NULL +1132,127,3,7,NULL +1133,127,4,2,NULL +1134,127,1,1,NULL +1135,127,16,0,NULL +1136,127,15,0,NULL +1137,127,18,0,NULL +1138,127,21,0,NULL +1139,127,19,0,NULL +1140,127,7,0,NULL +1141,127,17,0,NULL +1142,128,6,10,NULL +1143,128,3,6,NULL +1144,128,1,4,NULL +1145,128,15,5,NULL +1146,128,21,1,NULL +1147,128,16,0,NULL +1148,128,7,0,NULL +1149,128,4,0,NULL +1150,128,19,0,NULL +1151,128,17,0,NULL +1152,128,18,0,NULL +1153,129,6,16,NULL +1154,129,3,7,NULL +1155,129,17,2,NULL +1156,129,1,1,NULL +1157,129,4,0,NULL +1158,129,7,0,NULL +1159,129,16,0,NULL +1160,129,21,0,NULL +1161,129,18,0,NULL +1162,129,19,0,NULL +1163,129,15,0,NULL +1164,130,1,10,NULL +1165,130,6,6,NULL +1166,130,3,4,NULL +1167,130,4,3,NULL +1168,130,17,2,NULL +1169,130,21,1,NULL +1170,130,15,0,NULL +1171,130,19,0,NULL +1172,130,18,0,NULL +1173,130,7,0,NULL +1174,130,16,0,NULL +1175,131,6,14,NULL +1176,131,1,9,NULL +1177,131,17,2,NULL +1178,131,4,1,NULL +1179,131,3,0,NULL +1180,131,16,0,NULL +1181,131,15,0,NULL +1182,131,18,0,NULL +1183,131,21,0,NULL +1184,131,7,0,NULL +1185,131,19,0,NULL +1186,132,6,16,NULL +1187,132,1,4,NULL +1188,132,3,3,NULL +1189,132,4,2,NULL +1190,132,15,1,NULL +1191,132,16,0,NULL +1192,132,19,0,NULL +1193,132,21,0,NULL +1194,132,7,0,NULL +1195,132,18,0,NULL +1196,132,17,0,NULL +1197,133,6,16,NULL +1198,133,3,4,NULL +1199,133,16,5,NULL +1200,133,15,1,NULL +1201,133,17,0,NULL +1202,133,1,0,NULL +1203,133,19,0,NULL +1204,133,4,0,NULL +1205,133,21,0,NULL +1206,133,7,0,NULL +1207,133,18,0,NULL +1208,134,6,10,NULL +1209,134,1,10,NULL +1210,134,3,5,NULL +1211,134,4,1,NULL +1212,134,15,0,NULL +1213,134,18,0,NULL +1214,134,19,0,NULL +1215,134,7,0,NULL +1216,134,16,0,NULL +1217,134,17,0,NULL +1218,134,21,0,NULL +1219,135,6,13,NULL +1220,135,3,10,NULL +1221,135,1,2,NULL +1222,135,15,1,NULL +1223,135,17,0,NULL +1224,135,7,0,NULL +1225,135,19,0,NULL +1226,135,21,0,NULL +1227,135,16,0,NULL +1228,135,4,0,NULL +1229,135,18,0,NULL +1230,136,6,16,NULL +1231,136,3,4,NULL +1232,136,1,5,NULL +1233,136,17,1,NULL +1234,136,15,0,NULL +1235,136,4,0,NULL +1236,136,16,0,NULL +1237,136,19,0,NULL +1238,136,7,0,NULL +1239,136,18,0,NULL +1240,137,6,16,NULL +1241,137,3,6,NULL +1242,137,1,3,NULL +1243,137,19,1,NULL +1244,137,7,0,NULL +1245,137,16,0,NULL +1246,137,15,0,NULL +1247,137,17,0,NULL +1248,137,4,0,NULL +1249,137,18,0,NULL +1250,138,6,16,NULL +1251,138,19,4,NULL +1252,138,4,5,NULL +1253,138,16,1,NULL +1254,138,1,0,NULL +1255,138,17,0,NULL +1256,138,15,0,NULL +1257,138,7,0,NULL +1258,138,18,0,NULL +1259,138,3,0,NULL +1260,139,6,16,NULL +1261,139,1,4,NULL +1262,139,3,3,NULL +1263,139,4,2,NULL +1264,139,16,1,NULL +1265,139,17,0,NULL +1266,139,15,0,NULL +1267,139,19,0,NULL +1268,139,7,0,NULL +1269,139,18,0,NULL +1270,140,6,16,NULL +1271,140,1,4,NULL +1272,140,3,3,NULL +1273,140,17,2,NULL +1274,140,4,1,NULL +1275,140,15,0,NULL +1276,140,7,0,NULL +1277,140,19,0,NULL +1278,140,18,0,NULL +1279,140,16,0,NULL +1280,141,6,14,NULL +1281,141,1,6,NULL +1282,141,15,4,NULL +1283,141,17,2,NULL +1284,141,16,0,NULL +1285,141,19,0,NULL +1286,141,20,0,NULL +1287,141,21,0,NULL +1288,141,18,0,NULL +1289,141,22,0,NULL +1290,141,3,0,NULL +1291,142,6,16,NULL +1292,142,1,5,NULL +1293,142,17,3,NULL +1294,142,3,2,NULL +1295,142,21,0,NULL +1296,142,20,0,NULL +1297,142,19,0,NULL +1298,142,22,0,NULL +1299,142,18,0,NULL +1300,142,16,0,NULL +1301,142,15,0,NULL +1302,143,1,10,NULL +1303,143,6,6,NULL +1304,143,15,4,NULL +1305,143,16,3,NULL +1306,143,17,2,NULL +1307,143,22,1,NULL +1308,143,20,0,NULL +1309,143,18,0,NULL +1310,143,3,0,NULL +1311,143,19,0,NULL +1312,143,21,0,NULL +1313,144,3,10,NULL +1314,144,1,9,NULL +1315,144,6,4,NULL +1316,144,17,3,NULL +1317,144,15,0,NULL +1318,144,16,0,NULL +1319,144,20,0,NULL +1320,144,21,0,NULL +1321,144,19,0,NULL +1322,144,22,0,NULL +1323,144,18,0,NULL +1324,145,6,10,NULL +1325,145,3,6,NULL +1326,145,16,4,NULL +1327,145,17,3,NULL +1328,145,1,2,NULL +1329,145,15,1,NULL +1330,145,20,0,NULL +1331,145,21,0,NULL +1332,145,18,0,NULL +1333,145,22,0,NULL +1334,145,19,0,NULL +1335,146,1,10,NULL +1336,146,6,10,NULL +1337,146,15,3,NULL +1338,146,16,2,NULL +1339,146,21,1,NULL +1340,146,19,0,NULL +1341,146,20,0,NULL +1342,146,22,0,NULL +1343,146,3,0,NULL +1344,146,18,0,NULL +1345,146,17,0,NULL +1346,147,6,16,NULL +1347,147,19,4,NULL +1348,147,16,3,NULL +1349,147,1,2,NULL +1350,147,20,1,NULL +1351,147,22,0,NULL +1352,147,21,0,NULL +1353,147,15,0,NULL +1354,147,3,0,NULL +1355,147,18,0,NULL +1356,147,17,0,NULL +1357,148,3,10,NULL +1358,148,6,6,NULL +1359,148,1,4,NULL +1360,148,15,3,NULL +1361,148,20,2,NULL +1362,148,19,1,NULL +1363,148,17,0,NULL +1364,148,18,0,NULL +1365,148,21,0,NULL +1366,148,16,0,NULL +1367,148,22,0,NULL +1368,149,6,12,NULL +1369,149,3,9,NULL +1370,149,1,5,NULL +1371,149,19,0,NULL +1372,149,16,0,NULL +1373,149,15,0,NULL +1374,149,22,0,NULL +1375,149,20,0,NULL +1376,149,18,0,NULL +1377,149,21,0,NULL +1378,149,17,0,NULL +1379,150,6,14,NULL +1380,150,3,6,NULL +1381,150,1,3,NULL +1382,150,17,2,NULL +1383,150,15,1,NULL +1384,150,16,0,NULL +1385,150,20,0,NULL +1386,150,22,0,NULL +1387,150,21,0,NULL +1388,150,19,0,NULL +1389,150,18,0,NULL +1390,151,1,10,NULL +1391,151,6,10,NULL +1392,151,3,3,NULL +1393,151,15,3,NULL +1394,151,17,0,NULL +1395,151,16,0,NULL +1396,151,19,0,NULL +1397,151,21,0,NULL +1398,151,20,0,NULL +1399,151,22,0,NULL +1400,151,18,0,NULL +1401,152,3,10,NULL +1402,152,6,6,NULL +1403,152,16,4,NULL +1404,152,22,5,NULL +1405,152,20,1,NULL +1406,152,21,0,NULL +1407,152,18,0,NULL +1408,152,17,0,NULL +1409,152,1,0,NULL +1410,152,15,0,NULL +1411,152,19,0,NULL +1412,153,6,16,NULL +1413,153,1,6,NULL +1414,153,3,3,NULL +1415,153,15,1,NULL +1416,153,16,0,NULL +1417,153,17,0,NULL +1418,153,19,0,NULL +1419,153,21,0,NULL +1420,153,22,0,NULL +1421,153,20,0,NULL +1422,153,18,0,NULL +1423,154,6,12,NULL +1424,154,1,9,NULL +1425,154,22,4,NULL +1426,154,17,1,NULL +1427,154,3,0,NULL +1428,154,16,0,NULL +1429,154,20,0,NULL +1430,154,21,0,NULL +1431,154,18,0,NULL +1432,154,19,0,NULL +1433,154,15,0,NULL +1434,155,3,14,NULL +1435,155,6,9,NULL +1436,155,19,2,NULL +1437,155,16,1,NULL +1438,155,15,0,NULL +1439,155,17,0,NULL +1440,155,22,0,NULL +1441,155,20,0,NULL +1442,155,18,0,NULL +1443,155,21,0,NULL +1444,155,1,0,NULL +1445,156,1,14,NULL +1446,156,6,6,NULL +1447,156,17,3,NULL +1448,156,19,2,NULL +1449,156,15,1,NULL +1450,156,22,0,NULL +1451,156,20,0,NULL +1452,156,16,0,NULL +1453,156,21,0,NULL +1454,156,3,0,NULL +1455,156,18,0,NULL +1456,157,6,12,NULL +1457,157,3,7,NULL +1458,157,1,7,NULL +1459,157,22,0,NULL +1460,157,17,0,NULL +1461,157,15,0,NULL +1462,157,16,0,NULL +1463,157,18,0,NULL +1464,157,20,0,NULL +1465,157,21,0,NULL +1466,157,19,0,NULL +1467,158,6,16,NULL +1468,158,3,4,NULL +1469,158,16,4,NULL +1470,158,22,2,NULL +1471,158,18,0,NULL +1472,158,20,0,NULL +1473,158,15,0,NULL +1474,158,17,0,NULL +1475,158,1,0,NULL +1476,158,21,0,NULL +1477,158,19,0,NULL +1478,159,6,10,NULL +1479,159,22,6,NULL +1480,159,17,7,NULL +1481,159,3,3,NULL +1482,159,21,0,NULL +1483,159,16,0,NULL +1484,159,18,0,NULL +1485,159,1,0,NULL +1486,159,19,0,NULL +1487,159,20,0,NULL +1488,159,15,0,NULL +1489,160,6,13,NULL +1490,160,1,10,NULL +1491,160,16,2,NULL +1492,160,15,1,NULL +1493,160,19,0,NULL +1494,160,22,0,NULL +1495,160,18,0,NULL +1496,160,21,0,NULL +1497,160,17,0,NULL +1498,160,3,0,NULL +1499,160,20,0,NULL +1500,161,1,16,NULL +1501,161,6,4,NULL +1502,161,3,5,NULL +1503,161,17,1,NULL +1504,161,22,0,NULL +1505,161,15,0,NULL +1506,161,20,0,NULL +1507,161,19,0,NULL +1508,161,18,0,NULL +1509,161,16,0,NULL +1510,161,21,0,NULL +1511,162,1,16,NULL +1512,162,6,6,NULL +1513,162,3,3,NULL +1514,162,17,1,NULL +1515,162,15,0,NULL +1516,162,16,0,NULL +1517,162,22,0,NULL +1518,162,19,0,NULL +1519,162,18,0,NULL +1520,162,20,0,NULL +1521,162,21,0,NULL +1522,163,6,13,NULL +1523,163,1,10,NULL +1524,163,22,2,NULL +1525,163,21,1,NULL +1526,163,15,0,NULL +1527,163,18,0,NULL +1528,163,20,0,NULL +1529,163,3,0,NULL +1530,163,19,0,NULL +1531,163,16,0,NULL +1532,163,17,0,NULL +1533,164,1,11,NULL +1534,164,6,6,NULL +1535,164,22,4,NULL +1536,164,19,3,NULL +1537,164,15,2,NULL +1538,164,16,0,NULL +1539,164,20,0,NULL +1540,164,17,0,NULL +1541,164,21,0,NULL +1542,164,3,0,NULL +1543,164,18,0,NULL +1544,165,6,16,NULL +1545,165,22,4,NULL +1546,165,1,3,NULL +1547,165,21,2,NULL +1548,165,17,1,NULL +1549,165,16,0,NULL +1550,165,15,0,NULL +1551,165,3,0,NULL +1552,165,18,0,NULL +1553,165,19,0,NULL +1554,165,20,0,NULL +1555,166,1,16,NULL +1556,166,6,4,NULL +1557,166,16,3,NULL +1558,166,3,2,NULL +1559,166,17,1,NULL +1560,166,22,0,NULL +1561,166,15,0,NULL +1562,166,20,0,NULL +1563,166,19,0,NULL +1564,166,18,0,NULL +1565,166,21,0,NULL +1566,167,1,16,NULL +1567,167,6,4,NULL +1568,167,16,3,NULL +1569,167,3,2,NULL +1570,167,15,1,NULL +1571,167,19,0,NULL +1572,167,18,0,NULL +1573,167,22,0,NULL +1574,167,20,0,NULL +1575,167,21,0,NULL +1576,167,17,0,NULL +1577,168,6,10,NULL +1578,168,1,10,NULL +1579,168,3,3,NULL +1580,168,15,2,NULL +1581,168,21,1,NULL +1582,168,16,0,NULL +1583,168,17,0,NULL +1584,168,19,0,NULL +1585,168,18,0,NULL +1586,168,20,0,NULL +1587,168,22,0,NULL +1588,169,1,14,NULL +1589,169,6,9,NULL +1590,169,3,2,NULL +1591,169,17,1,NULL +1592,169,19,0,NULL +1593,169,15,0,NULL +1594,169,22,0,NULL +1595,169,16,0,NULL +1596,169,21,0,NULL +1597,169,18,0,NULL +1598,169,20,0,NULL +1599,170,1,13,NULL +1600,170,6,6,NULL +1601,170,3,6,NULL +1602,170,17,1,NULL +1603,170,16,0,NULL +1604,170,19,0,NULL +1605,170,15,0,NULL +1606,170,22,0,NULL +1607,170,18,0,NULL +1608,170,21,0,NULL +1609,170,20,0,NULL +1610,171,6,10,NULL +1611,171,1,6,NULL +1612,171,3,4,NULL +1613,171,21,3,NULL +1614,171,22,2,NULL +1615,171,16,1,NULL +1616,171,15,0,NULL +1617,171,18,0,NULL +1618,171,20,0,NULL +1619,171,19,0,NULL +1620,171,17,0,NULL +1621,172,6,16,NULL +1622,172,17,4,NULL +1623,172,16,4,NULL +1624,172,1,2,NULL +1625,172,19,0,NULL +1626,172,15,0,NULL +1627,172,20,0,NULL +1628,172,22,0,NULL +1629,172,18,0,NULL +1630,172,3,0,NULL +1631,172,21,0,NULL +1632,173,6,13,NULL +1633,173,1,10,NULL +1634,173,3,2,NULL +1635,173,16,1,NULL +1636,173,19,0,NULL +1637,173,15,0,NULL +1638,173,21,0,NULL +1639,173,17,0,NULL +1640,173,22,0,NULL +1641,173,18,0,NULL +1642,173,20,0,NULL +1643,174,6,14,NULL +1644,174,1,9,NULL +1645,174,16,2,NULL +1646,174,19,1,NULL +1647,174,22,0,NULL +1648,174,15,0,NULL +1649,174,21,0,NULL +1650,174,20,0,NULL +1651,174,17,0,NULL +1652,174,18,0,NULL +1653,174,3,0,NULL +1654,175,6,10,NULL +1655,175,17,6,NULL +1656,175,3,4,NULL +1657,175,22,3,NULL +1658,175,24,2,NULL +1659,175,21,1,NULL +1660,175,16,0,NULL +1661,175,18,0,NULL +1662,175,15,0,NULL +1663,175,20,0,NULL +1664,175,1,0,NULL +1665,176,1,10,NULL +1666,176,6,8,NULL +1667,176,17,4,NULL +1668,176,3,3,NULL +1669,176,20,1,NULL +1670,176,22,0,NULL +1671,176,21,0,NULL +1672,176,18,0,NULL +1673,176,16,0,NULL +1674,176,24,0,NULL +1675,176,15,0,NULL +1676,177,6,10,NULL +1677,177,1,6,NULL +1678,177,24,4,NULL +1679,177,17,3,NULL +1680,177,22,2,NULL +1681,177,15,1,NULL +1682,177,16,0,NULL +1683,177,18,0,NULL +1684,177,3,0,NULL +1685,177,20,0,NULL +1686,177,21,0,NULL +1687,178,6,16,NULL +1688,178,1,4,NULL +1689,178,17,3,NULL +1690,178,22,3,NULL +1691,178,20,0,NULL +1692,178,3,0,NULL +1693,178,24,0,NULL +1694,178,15,0,NULL +1695,178,16,0,NULL +1696,178,21,0,NULL +1697,178,18,0,NULL +1698,179,1,16,NULL +1699,179,6,7,NULL +1700,179,3,2,NULL +1701,179,20,1,NULL +1702,179,17,0,NULL +1703,179,16,0,NULL +1704,179,22,0,NULL +1705,179,21,0,NULL +1706,179,18,0,NULL +1707,179,15,0,NULL +1708,179,24,0,NULL +1709,180,1,10,NULL +1710,180,22,6,NULL +1711,180,6,4,NULL +1712,180,3,3,NULL +1713,180,24,2,NULL +1714,180,15,1,NULL +1715,180,18,0,NULL +1716,180,20,0,NULL +1717,180,17,0,NULL +1718,180,21,0,NULL +1719,180,16,0,NULL +1720,181,17,10,NULL +1721,181,1,6,NULL +1722,181,24,4,NULL +1723,181,3,3,NULL +1724,181,6,3,NULL +1725,181,20,0,NULL +1726,181,16,0,NULL +1727,181,18,0,NULL +1728,181,21,0,NULL +1729,181,22,0,NULL +1730,181,15,0,NULL +1731,182,1,10,NULL +1732,182,6,6,NULL +1733,182,3,4,NULL +1734,182,17,5,NULL +1735,182,15,1,NULL +1736,182,22,0,NULL +1737,182,24,0,NULL +1738,182,20,0,NULL +1739,182,18,0,NULL +1740,182,21,0,NULL +1741,182,16,0,NULL +1742,183,6,10,NULL +1743,183,1,10,NULL +1744,183,17,3,NULL +1745,183,22,2,NULL +1746,183,15,1,NULL +1747,183,20,0,NULL +1748,183,18,0,NULL +1749,183,24,0,NULL +1750,183,16,0,NULL +1751,183,21,0,NULL +1752,183,3,0,NULL +1753,184,6,16,NULL +1754,184,17,4,NULL +1755,184,3,3,NULL +1756,184,1,2,NULL +1757,184,20,1,NULL +1758,184,22,0,NULL +1759,184,15,0,NULL +1760,184,18,0,NULL +1761,184,24,0,NULL +1762,184,21,0,NULL +1763,184,16,0,NULL +1764,185,1,16,NULL +1765,185,6,4,NULL +1766,185,17,4,NULL +1767,185,24,2,NULL +1768,185,22,0,NULL +1769,185,20,0,NULL +1770,185,3,0,NULL +1771,185,16,0,NULL +1772,185,18,0,NULL +1773,185,21,0,NULL +1774,185,15,0,NULL +1775,186,1,16,NULL +1776,186,17,5,NULL +1777,186,6,3,NULL +1778,186,3,2,NULL +1779,186,15,0,NULL +1780,186,24,0,NULL +1781,186,22,0,NULL +1782,186,20,0,NULL +1783,186,16,0,NULL +1784,186,18,0,NULL +1785,186,21,0,NULL +1786,187,17,10,NULL +1787,187,3,6,NULL +1788,187,6,5,NULL +1789,187,24,3,NULL +1790,187,1,2,NULL +1791,187,16,0,NULL +1792,187,15,0,NULL +1793,187,20,0,NULL +1794,187,21,0,NULL +1795,187,18,0,NULL +1796,187,22,0,NULL +1797,188,24,14,NULL +1798,188,20,6,NULL +1799,188,3,3,NULL +1800,188,1,2,NULL +1801,188,18,1,NULL +1802,188,6,0,NULL +1803,188,16,0,NULL +1804,188,21,0,NULL +1805,188,22,0,NULL +1806,188,15,0,NULL +1807,188,17,0,NULL +1808,189,6,16,NULL +1809,189,1,4,NULL +1810,189,24,5,NULL +1811,189,17,1,NULL +1812,189,15,0,NULL +1813,189,22,0,NULL +1814,189,18,0,NULL +1815,189,3,0,NULL +1816,189,16,0,NULL +1817,189,21,0,NULL +1818,189,20,0,NULL +1819,190,1,10,NULL +1820,190,6,10,NULL +1821,190,17,3,NULL +1822,190,3,2,NULL +1823,190,15,1,NULL +1824,190,24,0,NULL +1825,190,16,0,NULL +1826,190,22,0,NULL +1827,190,21,0,NULL +1828,190,18,0,NULL +1829,190,20,0,NULL +1830,191,1,16,NULL +1831,191,3,6,NULL +1832,191,6,3,NULL +1833,191,15,1,NULL +1834,191,22,0,NULL +1835,191,17,0,NULL +1836,191,20,0,NULL +1837,191,25,0,NULL +1838,191,21,0,NULL +1839,191,18,0,NULL +1840,191,24,0,NULL +1841,192,1,16,NULL +1842,192,6,4,NULL +1843,192,22,4,NULL +1844,192,3,2,NULL +1845,192,15,0,NULL +1846,192,24,0,NULL +1847,192,17,0,NULL +1848,192,20,0,NULL +1849,192,25,0,NULL +1850,192,18,0,NULL +1851,192,21,0,NULL +1852,193,6,14,NULL +1853,193,1,7,NULL +1854,193,22,3,NULL +1855,193,15,2,NULL +1856,193,17,0,NULL +1857,193,3,0,NULL +1858,193,24,0,NULL +1859,193,20,0,NULL +1860,193,25,0,NULL +1861,193,18,0,NULL +1862,193,21,0,NULL +1863,194,1,10,NULL +1864,194,6,10,NULL +1865,194,3,5,NULL +1866,194,15,1,NULL +1867,194,17,0,NULL +1868,194,18,0,NULL +1869,194,21,0,NULL +1870,194,20,0,NULL +1871,194,25,0,NULL +1872,194,22,0,NULL +1873,194,24,0,NULL +1874,195,1,16,NULL +1875,195,6,4,NULL +1876,195,22,3,NULL +1877,195,24,2,NULL +1878,195,3,1,NULL +1879,195,15,0,NULL +1880,195,20,0,NULL +1881,195,17,0,NULL +1882,195,25,0,NULL +1883,195,18,0,NULL +1884,195,21,0,NULL +1885,196,1,10,NULL +1886,196,22,6,NULL +1887,196,6,4,NULL +1888,196,21,4,NULL +1889,196,3,2,NULL +1890,196,15,0,NULL +1891,196,17,0,NULL +1892,196,18,0,NULL +1893,196,25,0,NULL +1894,196,20,0,NULL +1895,196,24,0,NULL +1896,197,6,14,NULL +1897,197,22,9,NULL +1898,197,24,3,NULL +1899,197,18,0,NULL +1900,197,25,0,NULL +1901,197,21,0,NULL +1902,197,3,0,NULL +1903,197,17,0,NULL +1904,197,20,0,NULL +1905,197,1,0,NULL +1906,197,15,0,NULL +1907,198,6,16,NULL +1908,198,1,5,NULL +1909,198,3,3,NULL +1910,198,22,2,NULL +1911,198,15,0,NULL +1912,198,24,0,NULL +1913,198,20,0,NULL +1914,198,21,0,NULL +1915,198,17,0,NULL +1916,198,18,0,NULL +1917,198,25,0,NULL +1918,199,6,14,NULL +1919,199,1,6,NULL +1920,199,22,5,NULL +1921,199,17,1,NULL +1922,199,3,0,NULL +1923,199,18,0,NULL +1924,199,25,0,NULL +1925,199,15,0,NULL +1926,199,21,0,NULL +1927,199,20,0,NULL +1928,199,24,0,NULL +1929,200,1,16,NULL +1930,200,6,7,NULL +1931,200,17,2,NULL +1932,200,3,1,NULL +1933,200,15,0,NULL +1934,200,22,0,NULL +1935,200,20,0,NULL +1936,200,18,0,NULL +1937,200,25,0,NULL +1938,200,24,0,NULL +1939,200,21,0,NULL +1940,201,1,16,NULL +1941,201,3,4,NULL +1942,201,17,4,NULL +1943,201,6,2,NULL +1944,201,22,0,NULL +1945,201,15,0,NULL +1946,201,20,0,NULL +1947,201,25,0,NULL +1948,201,21,0,NULL +1949,201,18,0,NULL +1950,201,24,0,NULL +1951,202,6,10,NULL +1952,202,1,7,NULL +1953,202,3,6,NULL +1954,202,17,3,NULL +1955,202,15,0,NULL +1956,202,22,0,NULL +1957,202,21,0,NULL +1958,202,20,0,NULL +1959,202,24,0,NULL +1960,202,25,0,NULL +1961,202,18,0,NULL +1962,203,17,16,NULL +1963,203,15,4,NULL +1964,203,3,3,NULL +1965,203,21,2,NULL +1966,203,20,1,NULL +1967,203,1,0,NULL +1968,203,18,0,NULL +1969,203,22,0,NULL +1970,203,6,0,NULL +1971,203,25,0,NULL +1972,203,24,0,NULL +1973,204,6,16,NULL +1974,204,17,5,NULL +1975,204,1,3,NULL +1976,204,15,2,NULL +1977,204,3,0,NULL +1978,204,22,0,NULL +1979,204,25,0,NULL +1980,204,24,0,NULL +1981,204,18,0,NULL +1982,204,20,0,NULL +1983,204,21,0,NULL +1984,205,1,14,NULL +1985,205,6,9,NULL +1986,205,3,2,NULL +1987,205,22,1,NULL +1988,205,17,0,NULL +1989,205,15,0,NULL +1990,205,24,0,NULL +1991,205,20,0,NULL +1992,205,21,0,NULL +1993,205,18,0,NULL +1994,205,25,0,NULL +1995,206,1,14,NULL +1996,206,6,6,NULL +1997,206,17,3,NULL +1998,206,3,3,NULL +1999,206,15,0,NULL +2000,206,22,0,NULL +2001,206,20,0,NULL +2002,206,18,0,NULL +2003,206,25,0,NULL +2004,206,24,0,NULL +2005,206,21,0,NULL +2006,207,1,14,NULL +2007,207,6,6,NULL +2008,207,22,3,NULL +2009,207,20,2,NULL +2010,207,15,1,NULL +2011,207,3,0,NULL +2012,207,18,0,NULL +2013,207,21,0,NULL +2014,207,24,0,NULL +2015,207,25,0,NULL +2016,207,17,0,NULL +2017,207,26,0,NULL +2018,208,3,10,NULL +2019,208,22,7,NULL +2020,208,20,4,NULL +2021,208,1,3,NULL +2022,208,6,2,NULL +2023,208,15,0,NULL +2024,208,17,0,NULL +2025,208,18,0,NULL +2026,208,25,0,NULL +2027,208,21,0,NULL +2028,208,24,0,NULL +2029,209,3,10,NULL +2030,209,6,6,NULL +2031,209,17,4,NULL +2032,209,15,3,NULL +2033,209,1,2,NULL +2034,209,22,1,NULL +2035,209,25,0,NULL +2036,209,18,0,NULL +2037,209,24,0,NULL +2038,209,21,0,NULL +2039,209,20,0,NULL +2040,210,3,10,NULL +2041,210,6,10,NULL +2042,210,17,3,NULL +2043,210,22,2,NULL +2044,210,1,1,NULL +2045,210,15,0,NULL +2046,210,20,0,NULL +2047,210,25,0,NULL +2048,210,18,0,NULL +2049,210,21,0,NULL +2050,210,24,0,NULL +2051,211,6,14,NULL +2052,211,24,6,NULL +2053,211,20,3,NULL +2054,211,25,2,NULL +2055,211,17,1,NULL +2056,211,22,0,NULL +2057,211,18,0,NULL +2058,211,3,0,NULL +2059,211,15,0,NULL +2060,211,1,0,NULL +2061,211,21,0,NULL +2062,212,3,10,NULL +2063,212,20,6,NULL +2064,212,22,4,NULL +2065,212,6,3,NULL +2066,212,15,2,NULL +2067,212,1,1,NULL +2068,212,17,0,NULL +2069,212,25,0,NULL +2070,212,24,0,NULL +2071,212,18,0,NULL +2072,212,21,0,NULL +2073,213,6,10,NULL +2074,213,22,6,NULL +2075,213,17,4,NULL +2076,213,3,3,NULL +2077,213,15,2,NULL +2078,213,20,1,NULL +2079,213,1,0,NULL +2080,213,21,0,NULL +2081,213,25,0,NULL +2082,213,24,0,NULL +2083,213,18,0,NULL +2084,214,6,14,NULL +2085,214,3,9,NULL +2086,214,22,2,NULL +2087,214,17,1,NULL +2088,214,1,0,NULL +2089,214,15,0,NULL +2090,214,20,0,NULL +2091,214,18,0,NULL +2092,214,21,0,NULL +2093,214,25,0,NULL +2094,214,24,0,NULL +2095,215,3,10,NULL +2096,215,22,10,NULL +2097,215,1,3,NULL +2098,215,17,2,NULL +2099,215,21,1,NULL +2100,215,20,0,NULL +2101,215,15,0,NULL +2102,215,18,0,NULL +2103,215,24,0,NULL +2104,215,25,0,NULL +2105,215,6,0,NULL +2106,216,22,11,NULL +2107,216,6,6,NULL +2108,216,1,4,NULL +2109,216,20,3,NULL +2110,216,17,2,NULL +2111,216,21,0,NULL +2112,216,15,0,NULL +2113,216,25,0,NULL +2114,216,24,0,NULL +2115,216,3,0,NULL +2116,216,18,0,NULL +2117,217,3,10,NULL +2118,217,21,6,NULL +2119,217,15,4,NULL +2120,217,6,3,NULL +2121,217,17,2,NULL +2122,217,20,1,NULL +2123,217,22,0,NULL +2124,217,18,0,NULL +2125,217,25,0,NULL +2126,217,1,0,NULL +2127,217,24,0,NULL +2128,218,6,10,NULL +2129,218,17,6,NULL +2130,218,3,6,NULL +2131,218,15,3,NULL +2132,218,22,1,NULL +2133,218,21,0,NULL +2134,218,25,0,NULL +2135,218,24,0,NULL +2136,218,18,0,NULL +2137,218,20,0,NULL +2138,218,1,0,NULL +2139,219,1,10,NULL +2140,219,22,6,NULL +2141,219,3,6,NULL +2142,219,17,3,NULL +2143,219,6,1,NULL +2144,219,20,0,NULL +2145,219,15,0,NULL +2146,219,24,0,NULL +2147,219,18,0,NULL +2148,219,21,0,NULL +2149,219,25,0,NULL +2150,220,3,14,NULL +2151,220,1,6,NULL +2152,220,17,5,NULL +2153,220,6,1,NULL +2154,220,21,0,NULL +2155,220,15,0,NULL +2156,220,22,0,NULL +2157,220,18,0,NULL +2158,220,25,0,NULL +2159,220,24,0,NULL +2160,220,20,0,NULL +2161,221,3,14,NULL +2162,221,22,9,NULL +2163,221,21,2,NULL +2164,221,20,1,NULL +2165,221,15,0,NULL +2166,221,25,0,NULL +2167,221,1,0,NULL +2168,221,24,0,NULL +2169,221,6,0,NULL +2170,221,18,0,NULL +2171,221,17,0,NULL +2172,222,6,14,NULL +2173,222,3,6,NULL +2174,222,1,3,NULL +2175,222,22,2,NULL +2176,222,15,1,NULL +2177,222,17,0,NULL +2178,222,21,0,NULL +2179,222,25,0,NULL +2180,222,18,0,NULL +2181,222,20,0,NULL +2182,222,24,0,NULL +2183,223,1,16,NULL +2184,223,3,5,NULL +2185,223,22,3,NULL +2186,223,6,2,NULL +2187,223,20,0,NULL +2188,223,15,0,NULL +2189,223,24,0,NULL +2190,223,17,0,NULL +2191,223,25,0,NULL +2192,223,18,0,NULL +2193,223,21,0,NULL +2194,224,3,16,NULL +2195,224,6,4,NULL +2196,224,22,3,NULL +2197,224,1,2,NULL +2198,224,25,1,NULL +2199,224,27,0,NULL +2200,224,15,0,NULL +2201,224,29,0,NULL +2202,224,18,0,NULL +2203,224,17,0,NULL +2204,224,28,0,NULL +2205,225,3,10,NULL +2206,225,22,6,NULL +2207,225,6,4,NULL +2208,225,1,3,NULL +2209,225,25,2,NULL +2210,225,27,1,NULL +2211,225,18,0,NULL +2212,225,28,0,NULL +2213,225,17,0,NULL +2214,225,15,0,NULL +2215,225,29,0,NULL +2216,226,3,16,NULL +2217,226,22,4,NULL +2218,226,17,3,NULL +2219,226,6,2,NULL +2220,226,29,1,NULL +2221,226,1,0,NULL +2222,226,27,0,NULL +2223,226,15,0,NULL +2224,226,28,0,NULL +2225,226,18,0,NULL +2226,226,25,0,NULL +2227,227,3,13,NULL +2228,227,6,6,NULL +2229,227,1,4,NULL +2230,227,17,3,NULL +2231,227,15,0,NULL +2232,227,22,0,NULL +2233,227,27,0,NULL +2234,227,29,0,NULL +2235,227,18,0,NULL +2236,227,25,0,NULL +2237,227,28,0,NULL +2238,228,3,10,NULL +2239,228,6,9,NULL +2240,228,22,5,NULL +2241,228,17,2,NULL +2242,228,27,0,NULL +2243,228,1,0,NULL +2244,228,18,0,NULL +2245,228,28,0,NULL +2246,228,25,0,NULL +2247,228,29,0,NULL +2248,228,15,0,NULL +2249,229,27,10,NULL +2250,229,1,7,NULL +2251,229,15,7,NULL +2252,229,25,2,NULL +2253,229,6,0,NULL +2254,229,3,0,NULL +2255,229,22,0,NULL +2256,229,28,0,NULL +2257,229,17,0,NULL +2258,229,29,0,NULL +2259,229,18,0,NULL +2260,230,6,10,NULL +2261,230,22,6,NULL +2262,230,3,4,NULL +2263,230,15,3,NULL +2264,230,1,2,NULL +2265,230,27,1,NULL +2266,230,29,0,NULL +2267,230,17,0,NULL +2268,230,25,0,NULL +2269,230,18,0,NULL +2270,230,28,0,NULL +2271,231,3,16,NULL +2272,231,22,4,NULL +2273,231,1,5,NULL +2274,231,17,1,NULL +2275,231,15,0,NULL +2276,231,18,0,NULL +2277,231,28,0,NULL +2278,231,6,0,NULL +2279,231,27,0,NULL +2280,231,25,0,NULL +2281,231,29,0,NULL +2282,232,3,16,NULL +2283,232,22,7,NULL +2284,232,1,3,NULL +2285,232,27,0,NULL +2286,232,17,0,NULL +2287,232,25,0,NULL +2288,232,29,0,NULL +2289,232,18,0,NULL +2290,232,15,0,NULL +2291,232,28,0,NULL +2292,232,6,0,NULL +2293,233,3,10,NULL +2294,233,22,6,NULL +2295,233,1,6,NULL +2296,233,17,4,NULL +2297,233,25,0,NULL +2298,233,15,0,NULL +2299,233,29,0,NULL +2300,233,18,0,NULL +2301,233,27,0,NULL +2302,233,6,0,NULL +2303,233,28,0,NULL +2304,234,3,14,NULL +2305,234,22,6,NULL +2306,234,6,3,NULL +2307,234,1,2,NULL +2308,234,17,1,NULL +2309,234,27,0,NULL +2310,234,15,0,NULL +2311,234,25,0,NULL +2312,234,29,0,NULL +2313,234,18,0,NULL +2314,235,3,16,NULL +2315,235,22,4,NULL +2316,235,1,3,NULL +2317,235,27,2,NULL +2318,235,17,1,NULL +2319,235,25,0,NULL +2320,235,29,0,NULL +2321,235,6,0,NULL +2322,235,18,0,NULL +2323,235,15,0,NULL +2324,236,6,10,NULL +2325,236,3,8,NULL +2326,236,1,4,NULL +2327,236,22,4,NULL +2328,236,25,0,NULL +2329,236,29,0,NULL +2330,236,18,0,NULL +2331,236,17,0,NULL +2332,236,27,0,NULL +2333,236,15,0,NULL +2334,237,6,10,NULL +2335,237,22,6,NULL +2336,237,1,4,NULL +2337,237,17,5,NULL +2338,237,27,1,NULL +2339,237,3,0,NULL +2340,237,29,0,NULL +2341,237,15,0,NULL +2342,237,25,0,NULL +2343,237,18,0,NULL +2344,238,3,16,NULL +2345,238,6,6,NULL +2346,238,22,4,NULL +2347,238,15,0,NULL +2348,238,17,0,NULL +2349,238,27,0,NULL +2350,238,25,0,NULL +2351,238,1,0,NULL +2352,238,29,0,NULL +2353,238,18,0,NULL +2354,239,3,10,NULL +2355,239,6,6,NULL +2356,239,1,4,NULL +2357,239,22,3,NULL +2358,239,17,2,NULL +2359,239,15,1,NULL +2360,239,27,0,NULL +2361,239,29,0,NULL +2362,239,18,0,NULL +2363,239,25,0,NULL +2364,240,22,10,NULL +2365,240,3,6,NULL +2366,240,6,6,NULL +2367,240,1,4,NULL +2368,240,25,0,NULL +2369,240,27,0,NULL +2370,240,30,0,NULL +2371,240,28,0,NULL +2372,240,29,0,NULL +2373,240,18,0,NULL +2374,240,15,0,NULL +2375,240,17,0,NULL +2376,240,31,0,NULL +2377,241,3,10,NULL +2378,241,6,7,NULL +2379,241,22,7,NULL +2380,241,15,2,NULL +2381,241,27,0,NULL +2382,241,25,0,NULL +2383,241,31,0,NULL +2384,241,28,0,NULL +2385,241,18,0,NULL +2386,241,29,0,NULL +2387,241,17,0,NULL +2388,241,1,0,NULL +2389,241,30,0,NULL +2390,242,3,13,NULL +2391,242,6,10,NULL +2392,242,1,2,NULL +2393,242,15,1,NULL +2394,242,22,0,NULL +2395,242,17,0,NULL +2396,242,27,0,NULL +2397,242,18,0,NULL +2398,242,29,0,NULL +2399,242,28,0,NULL +2400,242,30,0,NULL +2401,242,31,0,NULL +2402,242,25,0,NULL +2403,243,22,16,NULL +2404,243,6,4,NULL +2405,243,3,3,NULL +2406,243,17,2,NULL +2407,243,27,1,NULL +2408,243,15,0,NULL +2409,243,25,0,NULL +2410,243,29,0,NULL +2411,243,31,0,NULL +2412,243,18,0,NULL +2413,243,1,0,NULL +2414,243,30,0,NULL +2415,243,28,0,NULL +2416,244,22,13,NULL +2417,244,3,6,NULL +2418,244,6,4,NULL +2419,244,1,2,NULL +2420,244,15,1,NULL +2421,244,18,0,NULL +2422,244,29,0,NULL +2423,244,28,0,NULL +2424,244,27,0,NULL +2425,244,25,0,NULL +2426,244,17,0,NULL +2427,244,30,0,NULL +2428,244,31,0,NULL +2429,245,6,10,NULL +2430,245,17,10,NULL +2431,245,27,3,NULL +2432,245,22,2,NULL +2433,245,29,1,NULL +2434,245,25,0,NULL +2435,245,18,0,NULL +2436,245,28,0,NULL +2437,245,3,0,NULL +2438,245,1,0,NULL +2439,245,30,0,NULL +2440,245,15,0,NULL +2441,246,22,10,NULL +2442,246,3,10,NULL +2443,246,27,3,NULL +2444,246,6,2,NULL +2445,246,17,1,NULL +2446,246,1,0,NULL +2447,246,15,0,NULL +2448,246,18,0,NULL +2449,246,29,0,NULL +2450,246,25,0,NULL +2451,246,28,0,NULL +2452,246,30,0,NULL +2453,247,22,10,NULL +2454,247,6,6,NULL +2455,247,3,4,NULL +2456,247,27,3,NULL +2457,247,1,2,NULL +2458,247,15,1,NULL +2459,247,18,0,NULL +2460,247,25,0,NULL +2461,247,17,0,NULL +2462,247,30,0,NULL +2463,247,28,0,NULL +2464,247,29,0,NULL +2465,248,22,13,NULL +2466,248,3,6,NULL +2467,248,6,4,NULL +2468,248,15,2,NULL +2469,248,27,1,NULL +2470,248,25,0,NULL +2471,248,30,0,NULL +2472,248,17,0,NULL +2473,248,1,0,NULL +2474,248,18,0,NULL +2475,248,28,0,NULL +2476,248,29,0,NULL +2477,249,3,16,NULL +2478,249,6,4,NULL +2479,249,22,3,NULL +2480,249,15,2,NULL +2481,249,27,1,NULL +2482,249,17,0,NULL +2483,249,18,0,NULL +2484,249,30,0,NULL +2485,249,25,0,NULL +2486,249,1,0,NULL +2487,249,29,0,NULL +2488,249,28,0,NULL +2489,250,22,10,NULL +2490,250,3,6,NULL +2491,250,27,4,NULL +2492,250,15,3,NULL +2493,250,1,2,NULL +2494,250,17,1,NULL +2495,250,25,0,NULL +2496,250,18,0,NULL +2497,250,29,0,NULL +2498,250,28,0,NULL +2499,250,30,0,NULL +2500,250,6,0,NULL +2501,251,22,10,NULL +2502,251,1,9,NULL +2503,251,15,5,NULL +2504,251,25,2,NULL +2505,251,29,0,NULL +2506,251,28,0,NULL +2507,251,6,0,NULL +2508,251,17,0,NULL +2509,251,18,0,NULL +2510,251,3,0,NULL +2511,251,27,0,NULL +2512,251,30,0,NULL +2513,252,3,14,NULL +2514,252,22,6,NULL +2515,252,6,5,NULL +2516,252,15,1,NULL +2517,252,27,0,NULL +2518,252,1,0,NULL +2519,252,17,0,NULL +2520,252,25,0,NULL +2521,252,18,0,NULL +2522,252,29,0,NULL +2523,252,28,0,NULL +2524,252,30,0,NULL +2525,253,22,12,NULL +2526,253,6,6,NULL +2527,253,3,4,NULL +2528,253,17,4,NULL +2529,253,27,0,NULL +2530,253,1,0,NULL +2531,253,18,0,NULL +2532,253,25,0,NULL +2533,253,29,0,NULL +2534,253,28,0,NULL +2535,253,30,0,NULL +2536,253,15,0,NULL +2537,254,22,11,NULL +2538,254,3,10,NULL +2539,254,6,5,NULL +2540,254,15,0,NULL +2541,254,27,0,NULL +2542,254,1,0,NULL +2543,254,17,0,NULL +2544,254,25,0,NULL +2545,254,18,0,NULL +2546,254,28,0,NULL +2547,254,29,0,NULL +2548,254,30,0,NULL +2549,255,22,14,NULL +2550,255,1,6,NULL +2551,255,17,3,NULL +2552,255,27,2,NULL +2553,255,25,1,NULL +2554,255,15,0,NULL +2555,255,18,0,NULL +2556,255,29,0,NULL +2557,255,3,0,NULL +2558,255,28,0,NULL +2559,255,6,0,NULL +2560,255,30,0,NULL +2561,256,3,10,NULL +2562,256,27,6,NULL +2563,256,29,4,NULL +2564,256,1,3,NULL +2565,256,25,2,NULL +2566,256,18,1,NULL +2567,256,28,0,NULL +2568,256,30,0,NULL +2569,256,22,0,NULL +2570,256,17,0,NULL +2571,256,15,0,NULL +2572,256,6,0,NULL +2573,257,22,10,NULL +2574,257,3,6,NULL +2575,257,6,4,NULL +2576,257,17,3,NULL +2577,257,25,2,NULL +2578,257,15,1,NULL +2579,257,32,0,NULL +2580,257,18,0,NULL +2581,257,33,0,NULL +2582,257,27,0,NULL +2583,257,31,0,NULL +2584,257,1,0,NULL +2585,257,29,0,NULL +2586,257,30,0,NULL +2587,258,22,10,NULL +2588,258,6,6,NULL +2589,258,17,4,NULL +2590,258,29,3,NULL +2591,258,15,2,NULL +2592,258,33,1,NULL +2593,258,32,0,NULL +2594,258,27,0,NULL +2595,258,31,0,NULL +2596,258,18,0,NULL +2597,258,1,0,NULL +2598,258,3,0,NULL +2599,258,25,0,NULL +2600,258,30,0,NULL +2601,259,22,10,NULL +2602,259,6,6,NULL +2603,259,1,4,NULL +2604,259,15,3,NULL +2605,259,25,2,NULL +2606,259,3,1,NULL +2607,259,32,0,NULL +2608,259,27,0,NULL +2609,259,29,0,NULL +2610,259,17,0,NULL +2611,259,18,0,NULL +2612,259,31,0,NULL +2613,259,30,0,NULL +2614,259,33,0,NULL +2615,260,22,10,NULL +2616,260,1,6,NULL +2617,260,6,6,NULL +2618,260,17,3,NULL +2619,260,18,1,NULL +2620,260,33,0,NULL +2621,260,27,0,NULL +2622,260,32,0,NULL +2623,260,30,0,NULL +2624,260,29,0,NULL +2625,260,31,0,NULL +2626,260,25,0,NULL +2627,260,3,0,NULL +2628,260,15,0,NULL +2629,261,3,10,NULL +2630,261,22,6,NULL +2631,261,25,4,NULL +2632,261,6,3,NULL +2633,261,18,2,NULL +2634,261,17,1,NULL +2635,261,27,0,NULL +2636,261,32,0,NULL +2637,261,31,0,NULL +2638,261,1,0,NULL +2639,261,29,0,NULL +2640,261,30,0,NULL +2641,261,15,0,NULL +2642,261,33,0,NULL +2643,262,22,11,NULL +2644,262,3,8,NULL +2645,262,6,7,NULL +2646,262,17,0,NULL +2647,262,32,0,NULL +2648,262,18,0,NULL +2649,262,25,0,NULL +2650,262,27,0,NULL +2651,262,31,0,NULL +2652,262,29,0,NULL +2653,262,1,0,NULL +2654,262,33,0,NULL +2655,262,30,0,NULL +2656,262,15,0,NULL +2657,263,22,10,NULL +2658,263,3,6,NULL +2659,263,6,4,NULL +2660,263,15,4,NULL +2661,263,18,2,NULL +2662,263,32,0,NULL +2663,263,29,0,NULL +2664,263,31,0,NULL +2665,263,25,0,NULL +2666,263,33,0,NULL +2667,263,1,0,NULL +2668,263,17,0,NULL +2669,263,27,0,NULL +2670,263,30,0,NULL +2671,264,3,12,NULL +2672,264,6,6,NULL +2673,264,1,4,NULL +2674,264,17,3,NULL +2675,264,25,1,NULL +2676,264,15,0,NULL +2677,264,22,0,NULL +2678,264,29,0,NULL +2679,264,18,0,NULL +2680,264,32,0,NULL +2681,264,27,0,NULL +2682,264,33,0,NULL +2683,264,31,0,NULL +2684,264,30,0,NULL +2685,265,6,10,NULL +2686,265,27,10,NULL +2687,265,29,5,NULL +2688,265,33,1,NULL +2689,265,3,0,NULL +2690,265,31,0,NULL +2691,265,22,0,NULL +2692,265,1,0,NULL +2693,265,25,0,NULL +2694,265,15,0,NULL +2695,265,17,0,NULL +2696,265,32,0,NULL +2697,265,18,0,NULL +2698,265,30,0,NULL +2699,266,22,14,NULL +2700,266,3,6,NULL +2701,266,1,3,NULL +2702,266,25,2,NULL +2703,266,27,1,NULL +2704,266,18,0,NULL +2705,266,33,0,NULL +2706,266,31,0,NULL +2707,266,6,0,NULL +2708,266,32,0,NULL +2709,266,29,0,NULL +2710,266,15,0,NULL +2711,266,17,0,NULL +2712,266,30,0,NULL +2713,267,3,13,NULL +2714,267,1,6,NULL +2715,267,22,4,NULL +2716,267,25,2,NULL +2717,267,29,1,NULL +2718,267,27,0,NULL +2719,267,18,0,NULL +2720,267,31,0,NULL +2721,267,32,0,NULL +2722,267,17,0,NULL +2723,267,15,0,NULL +2724,267,6,0,NULL +2725,267,33,0,NULL +2726,267,30,0,NULL +2727,268,3,11,NULL +2728,268,6,6,NULL +2729,268,1,6,NULL +2730,268,17,3,NULL +2731,268,27,0,NULL +2732,268,33,0,NULL +2733,268,22,0,NULL +2734,268,31,0,NULL +2735,268,25,0,NULL +2736,268,29,0,NULL +2737,268,18,0,NULL +2738,268,15,0,NULL +2739,268,32,0,NULL +2740,268,30,0,NULL +2741,269,3,16,NULL +2742,269,1,5,NULL +2743,269,17,3,NULL +2744,269,22,2,NULL +2745,269,29,0,NULL +2746,269,27,0,NULL +2747,269,32,0,NULL +2748,269,18,0,NULL +2749,269,33,0,NULL +2750,269,31,0,NULL +2751,269,25,0,NULL +2752,269,15,0,NULL +2753,269,6,0,NULL +2754,269,30,0,NULL +2755,270,22,10,NULL +2756,270,3,6,NULL +2757,270,1,4,NULL +2758,270,17,3,NULL +2759,270,6,2,NULL +2760,270,15,1,NULL +2761,270,25,0,NULL +2762,270,27,0,NULL +2763,270,29,0,NULL +2764,270,18,0,NULL +2765,270,32,0,NULL +2766,270,31,0,NULL +2767,270,33,0,NULL +2768,270,30,0,NULL +2769,271,3,13,NULL +2770,271,22,6,NULL +2771,271,6,4,NULL +2772,271,17,2,NULL +2773,271,15,1,NULL +2774,271,1,0,NULL +2775,271,29,0,NULL +2776,271,33,0,NULL +2777,271,32,0,NULL +2778,271,27,0,NULL +2779,271,31,0,NULL +2780,271,25,0,NULL +2781,271,18,0,NULL +2782,271,30,0,NULL +2783,272,3,10,NULL +2784,272,6,7,NULL +2785,272,1,4,NULL +2786,272,17,3,NULL +2787,272,27,2,NULL +2788,272,15,0,NULL +2789,272,29,0,NULL +2790,272,18,0,NULL +2791,272,25,0,NULL +2792,272,33,0,NULL +2793,272,32,0,NULL +2794,272,31,0,NULL +2795,272,22,0,NULL +2796,272,30,0,NULL +2797,273,3,10,NULL +2798,273,1,6,NULL +2799,273,27,4,NULL +2800,273,18,3,NULL +2801,273,15,2,NULL +2802,273,6,1,NULL +2803,273,29,0,NULL +2804,273,26,0,NULL +2805,273,33,0,NULL +2806,273,22,0,NULL +2807,273,32,0,NULL +2808,273,17,0,NULL +2809,273,25,0,NULL +2810,274,1,10,NULL +2811,274,3,6,NULL +2812,274,22,4,NULL +2813,274,32,4,NULL +2814,274,27,2,NULL +2815,274,33,0,NULL +2816,274,6,0,NULL +2817,274,29,0,NULL +2818,274,26,0,NULL +2819,274,15,0,NULL +2820,274,25,0,NULL +2821,274,18,0,NULL +2822,274,17,0,NULL +2823,275,1,10,NULL +2824,275,3,10,NULL +2825,275,32,3,NULL +2826,275,22,2,NULL +2827,275,18,1,NULL +2828,275,33,0,NULL +2829,275,17,0,NULL +2830,275,26,0,NULL +2831,275,29,0,NULL +2832,275,25,0,NULL +2833,275,6,0,NULL +2834,275,27,0,NULL +2835,275,15,0,NULL +2836,276,3,10,NULL +2837,276,22,6,NULL +2838,276,27,4,NULL +2839,276,15,3,NULL +2840,276,33,2,NULL +2841,276,18,1,NULL +2842,276,26,0,NULL +2843,276,32,0,NULL +2844,276,29,0,NULL +2845,276,1,0,NULL +2846,276,6,0,NULL +2847,276,25,0,NULL +2848,276,17,0,NULL +2849,277,3,10,NULL +2850,277,1,8,NULL +2851,277,22,7,NULL +2852,277,6,1,NULL +2853,277,27,0,NULL +2854,277,18,0,NULL +2855,277,33,0,NULL +2856,277,29,0,NULL +2857,277,17,0,NULL +2858,277,32,0,NULL +2859,277,15,0,NULL +2860,277,26,0,NULL +2861,277,25,0,NULL +2862,278,1,10,NULL +2863,278,3,9,NULL +2864,278,6,4,NULL +2865,278,18,2,NULL +2866,278,27,1,NULL +2867,278,32,0,NULL +2868,278,17,0,NULL +2869,278,25,0,NULL +2870,278,33,0,NULL +2871,278,15,0,NULL +2872,278,22,0,NULL +2873,278,29,0,NULL +2874,278,26,0,NULL +2875,279,3,14,NULL +2876,279,22,6,NULL +2877,279,6,3,NULL +2878,279,27,2,NULL +2879,279,15,1,NULL +2880,279,33,0,NULL +2881,279,18,0,NULL +2882,279,32,0,NULL +2883,279,17,0,NULL +2884,279,29,0,NULL +2885,279,1,0,NULL +2886,279,26,0,NULL +2887,279,25,0,NULL +2888,280,3,16,NULL +2889,280,22,4,NULL +2890,280,1,4,NULL +2891,280,27,2,NULL +2892,280,17,0,NULL +2893,280,18,0,NULL +2894,280,33,0,NULL +2895,280,29,0,NULL +2896,280,6,0,NULL +2897,280,25,0,NULL +2898,280,26,0,NULL +2899,280,15,0,NULL +2900,280,32,0,NULL +2901,281,3,10,NULL +2902,281,22,10,NULL +2903,281,32,3,NULL +2904,281,1,2,NULL +2905,281,29,1,NULL +2906,281,27,0,NULL +2907,281,15,0,NULL +2908,281,6,0,NULL +2909,281,17,0,NULL +2910,281,33,0,NULL +2911,281,18,0,NULL +2912,281,25,0,NULL +2913,281,26,0,NULL +2914,282,3,10,NULL +2915,282,22,8,NULL +2916,282,27,4,NULL +2917,282,1,3,NULL +2918,282,6,1,NULL +2919,282,15,0,NULL +2920,282,32,0,NULL +2921,282,18,0,NULL +2922,282,33,0,NULL +2923,282,17,0,NULL +2924,282,26,0,NULL +2925,282,29,0,NULL +2926,282,25,0,NULL +2927,283,3,10,NULL +2928,283,22,6,NULL +2929,283,6,4,NULL +2930,283,29,3,NULL +2931,283,27,2,NULL +2932,283,15,1,NULL +2933,283,33,0,NULL +2934,283,17,0,NULL +2935,283,25,0,NULL +2936,283,18,0,NULL +2937,283,32,0,NULL +2938,283,26,0,NULL +2939,283,1,0,NULL +2940,284,3,14,NULL +2941,284,22,7,NULL +2942,284,1,3,NULL +2943,284,32,2,NULL +2944,284,27,0,NULL +2945,284,15,0,NULL +2946,284,6,0,NULL +2947,284,33,0,NULL +2948,284,26,0,NULL +2949,284,25,0,NULL +2950,284,29,0,NULL +2951,284,18,0,NULL +2952,284,17,0,NULL +2953,285,3,10,NULL +2954,285,6,6,NULL +2955,285,1,4,NULL +2956,285,15,3,NULL +2957,285,22,2,NULL +2958,285,33,1,NULL +2959,285,18,0,NULL +2960,285,26,0,NULL +2961,285,32,0,NULL +2962,285,25,0,NULL +2963,285,27,0,NULL +2964,285,29,0,NULL +2965,285,17,0,NULL +2966,286,22,10,NULL +2967,286,3,10,NULL +2968,286,6,3,NULL +2969,286,15,2,NULL +2970,286,27,1,NULL +2971,286,18,0,NULL +2972,286,33,0,NULL +2973,286,25,0,NULL +2974,286,17,0,NULL +2975,286,26,0,NULL +2976,286,29,0,NULL +2977,286,32,0,NULL +2978,286,1,0,NULL +2979,287,1,14,NULL +2980,287,3,9,NULL +2981,287,17,3,NULL +2982,287,27,0,NULL +2983,287,15,0,NULL +2984,287,18,0,NULL +2985,287,32,0,NULL +2986,287,33,0,NULL +2987,287,29,0,NULL +2988,287,22,0,NULL +2989,287,6,0,NULL +2990,287,25,0,NULL +2991,288,1,10,NULL +2992,288,3,10,NULL +2993,288,6,5,NULL +2994,288,27,1,NULL +2995,288,29,0,NULL +2996,288,22,0,NULL +2997,288,17,0,NULL +2998,288,33,0,NULL +2999,288,25,0,NULL +3000,288,15,0,NULL +3001,288,18,0,NULL +3002,288,32,0,NULL +3003,289,3,16,NULL +3004,289,1,6,NULL +3005,289,22,3,NULL +3006,289,32,1,NULL +3007,289,27,0,NULL +3008,289,29,0,NULL +3009,289,17,0,NULL +3010,289,33,0,NULL +3011,289,34,0,NULL +3012,289,25,0,NULL +3013,289,35,0,NULL +3014,289,18,0,NULL +3015,289,6,0,NULL +3016,289,36,0,NULL +3017,289,37,0,NULL +3018,124,2,0,NULL +3019,290,3,16,NULL +3020,290,22,4,NULL +3021,290,1,3,NULL +3022,290,25,2,NULL +3023,290,32,1,NULL +3024,290,35,0,NULL +3025,290,27,0,NULL +3026,290,33,0,NULL +3027,290,29,0,NULL +3028,290,36,0,NULL +3029,290,6,0,NULL +3030,290,18,0,NULL +3031,290,17,0,NULL +3032,290,37,0,NULL +3033,290,34,0,NULL +3034,291,3,16,NULL +3035,291,22,4,NULL +3036,291,6,5,NULL +3037,291,29,1,NULL +3038,291,18,0,NULL +3039,291,35,0,NULL +3040,291,33,0,NULL +3041,291,32,0,NULL +3042,291,36,0,NULL +3043,291,37,0,NULL +3044,291,25,0,NULL +3045,291,27,0,NULL +3046,291,17,0,NULL +3047,291,1,0,NULL +3048,291,34,0,NULL +3049,292,3,10,NULL +3050,292,22,6,NULL +3051,292,6,4,NULL +3052,292,1,3,NULL +3053,292,29,2,NULL +3054,292,35,1,NULL +3055,292,37,0,NULL +3056,292,18,0,NULL +3057,292,36,0,NULL +3058,292,32,0,NULL +3059,292,27,0,NULL +3060,292,33,0,NULL +3061,292,25,0,NULL +3062,292,17,0,NULL +3063,292,34,0,NULL +3064,292,38,0,NULL +3065,293,3,16,NULL +3066,293,1,4,NULL +3067,293,22,3,NULL +3068,293,29,2,NULL +3069,293,35,1,NULL +3070,293,17,0,NULL +3071,293,25,0,NULL +3072,293,27,0,NULL +3073,293,37,0,NULL +3074,293,33,0,NULL +3075,293,6,0,NULL +3076,293,18,0,NULL +3077,293,36,0,NULL +3078,293,32,0,NULL +3079,293,34,0,NULL +3080,293,38,0,NULL +3081,294,1,10,NULL +3082,294,3,10,NULL +3083,294,22,5,NULL +3084,294,33,1,NULL +3085,294,29,0,NULL +3086,294,18,0,NULL +3087,294,35,0,NULL +3088,294,27,0,NULL +3089,294,6,0,NULL +3090,294,32,0,NULL +3091,294,17,0,NULL +3092,294,38,0,NULL +3093,294,25,0,NULL +3094,294,36,0,NULL +3095,294,37,0,NULL +3096,294,34,0,NULL +3097,295,1,10,NULL +3098,295,22,6,NULL +3099,295,6,4,NULL +3100,295,37,3,NULL +3101,295,25,2,NULL +3102,295,27,1,NULL +3103,295,29,0,NULL +3104,295,35,0,NULL +3105,295,18,0,NULL +3106,295,33,0,NULL +3107,295,3,0,NULL +3108,295,17,0,NULL +3109,295,32,0,NULL +3110,295,36,0,NULL +3111,295,34,0,NULL +3112,295,38,0,NULL +3113,296,3,16,NULL +3114,296,22,4,NULL +3115,296,32,4,NULL +3116,296,27,2,NULL +3117,296,29,0,NULL +3118,296,18,0,NULL +3119,296,35,0,NULL +3120,296,25,0,NULL +3121,296,6,0,NULL +3122,296,33,0,NULL +3123,296,37,0,NULL +3124,296,17,0,NULL +3125,296,1,0,NULL +3126,296,36,0,NULL +3127,296,34,0,NULL +3128,297,3,16,NULL +3129,297,22,7,NULL +3130,297,1,2,NULL +3131,297,32,1,NULL +3132,297,29,0,NULL +3133,297,27,0,NULL +3134,297,6,0,NULL +3135,297,25,0,NULL +3136,297,35,0,NULL +3137,297,36,0,NULL +3138,297,34,0,NULL +3139,297,18,0,NULL +3140,297,17,0,NULL +3141,297,33,0,NULL +3142,297,37,0,NULL +3143,297,38,0,NULL +3144,298,3,10,NULL +3145,298,1,6,NULL +3146,298,22,7,NULL +3147,298,6,2,NULL +3148,298,27,1,NULL +3149,298,29,0,NULL +3150,298,35,0,NULL +3151,298,18,0,NULL +3152,298,37,0,NULL +3153,298,33,0,NULL +3154,298,17,0,NULL +3155,298,36,0,NULL +3156,298,25,0,NULL +3157,298,32,0,NULL +3158,298,34,0,NULL +3159,298,38,0,NULL +3160,299,1,14,NULL +3161,299,3,6,NULL +3162,299,32,3,NULL +3163,299,22,2,NULL +3164,299,6,1,NULL +3165,299,29,0,NULL +3166,299,25,0,NULL +3167,299,37,0,NULL +3168,299,17,0,NULL +3169,299,34,0,NULL +3170,299,35,0,NULL +3171,299,33,0,NULL +3172,299,36,0,NULL +3173,299,27,0,NULL +3174,299,18,0,NULL +3175,299,38,0,NULL +3176,300,22,13,NULL +3177,300,3,10,NULL +3178,300,1,2,NULL +3179,300,32,1,NULL +3180,300,35,0,NULL +3181,300,25,0,NULL +3182,300,29,0,NULL +3183,300,36,0,NULL +3184,300,37,0,NULL +3185,300,17,0,NULL +3186,300,18,0,NULL +3187,300,33,0,NULL +3188,300,27,0,NULL +3189,300,6,0,NULL +3190,300,38,0,NULL +3191,301,1,13,NULL +3192,301,22,10,NULL +3193,301,3,2,NULL +3194,301,25,1,NULL +3195,301,29,0,NULL +3196,301,35,0,NULL +3197,301,33,0,NULL +3198,301,37,0,NULL +3199,301,17,0,NULL +3200,301,27,0,NULL +3201,301,36,0,NULL +3202,301,32,0,NULL +3203,301,6,0,NULL +3204,301,18,0,NULL +3205,302,3,10,NULL +3206,302,1,10,NULL +3207,302,22,3,NULL +3208,302,32,2,NULL +3209,302,29,1,NULL +3210,302,27,0,NULL +3211,302,25,0,NULL +3212,302,37,0,NULL +3213,302,18,0,NULL +3214,302,17,0,NULL +3215,302,35,0,NULL +3216,302,33,0,NULL +3217,302,6,0,NULL +3218,303,3,10,NULL +3219,303,1,6,NULL +3220,303,22,4,NULL +3221,303,25,3,NULL +3222,303,6,2,NULL +3223,303,18,1,NULL +3224,303,17,0,NULL +3225,303,29,0,NULL +3226,303,35,0,NULL +3227,303,33,0,NULL +3228,303,37,0,NULL +3229,303,32,0,NULL +3230,303,27,0,NULL +3231,304,1,10,NULL +3232,304,22,10,NULL +3233,304,6,3,NULL +3234,304,27,2,NULL +3235,304,17,1,NULL +3236,304,32,0,NULL +3237,304,29,0,NULL +3238,304,18,0,NULL +3239,304,37,0,NULL +3240,304,35,0,NULL +3241,304,33,0,NULL +3242,304,3,0,NULL +3243,304,25,0,NULL +3244,305,1,10,NULL +3245,305,6,6,NULL +3246,305,22,4,NULL +3247,305,25,5,NULL +3248,305,33,1,NULL +3249,305,40,0,NULL +3250,305,39,0,NULL +3251,305,18,0,NULL +3252,305,17,0,NULL +3253,305,34,0,NULL +3254,305,32,0,NULL +3255,305,3,0,NULL +3256,305,29,0,NULL +3257,305,41,0,NULL +3258,305,27,0,NULL +3259,305,35,0,NULL +3260,305,42,0,NULL +3261,305,36,0,NULL +3262,306,1,14,NULL +3263,306,3,6,NULL +3264,306,6,4,NULL +3265,306,22,2,NULL +3266,306,18,0,NULL +3267,306,32,0,NULL +3268,306,27,0,NULL +3269,306,35,0,NULL +3270,306,34,0,NULL +3271,306,17,0,NULL +3272,306,33,0,NULL +3273,306,25,0,NULL +3274,306,41,0,NULL +3275,306,39,0,NULL +3276,306,29,0,NULL +3277,306,36,0,NULL +3278,306,40,0,NULL +3279,306,42,0,NULL +3280,307,1,16,NULL +3281,307,35,4,NULL +3282,307,18,3,NULL +3283,307,32,3,NULL +3284,307,27,0,NULL +3285,307,34,0,NULL +3286,307,40,0,NULL +3287,307,41,0,NULL +3288,307,22,0,NULL +3289,307,25,0,NULL +3290,307,17,0,NULL +3291,307,26,0,NULL +3292,307,3,0,NULL +3293,307,6,0,NULL +3294,307,39,0,NULL +3295,307,29,0,NULL +3296,307,36,0,NULL +3297,307,42,0,NULL +3298,308,1,10,NULL +3299,308,3,6,NULL +3300,308,6,6,NULL +3301,308,22,3,NULL +3302,308,35,1,NULL +3303,308,27,0,NULL +3304,308,17,0,NULL +3305,308,26,0,NULL +3306,308,18,0,NULL +3307,308,32,0,NULL +3308,308,41,0,NULL +3309,308,25,0,NULL +3310,308,34,0,NULL +3311,308,29,0,NULL +3312,308,39,0,NULL +3313,308,40,0,NULL +3314,308,42,0,NULL +3315,308,36,0,NULL +3316,309,22,10,NULL +3317,309,25,6,NULL +3318,309,3,5,NULL +3319,309,17,5,NULL +3320,309,18,0,NULL +3321,309,27,0,NULL +3322,309,35,0,NULL +3323,309,41,0,NULL +3324,309,29,0,NULL +3325,309,6,0,NULL +3326,309,26,0,NULL +3327,309,1,0,NULL +3328,309,32,0,NULL +3329,309,34,0,NULL +3330,309,39,0,NULL +3331,309,36,0,NULL +3332,309,40,0,NULL +3333,309,42,0,NULL +3334,310,3,16,NULL +3335,310,1,4,NULL +3336,310,17,3,NULL +3337,310,22,2,NULL +3338,310,26,1,NULL +3339,310,18,0,NULL +3340,310,27,0,NULL +3341,310,32,0,NULL +3342,310,25,0,NULL +3343,310,34,0,NULL +3344,310,6,0,NULL +3345,310,35,0,NULL +3346,310,29,0,NULL +3347,310,41,0,NULL +3348,310,36,0,NULL +3349,310,39,0,NULL +3350,310,40,0,NULL +3351,310,42,0,NULL +3352,311,3,12,NULL +3353,311,6,9,NULL +3354,311,1,4,NULL +3355,311,17,1,NULL +3356,311,41,0,NULL +3357,311,22,0,NULL +3358,311,18,0,NULL +3359,311,32,0,NULL +3360,311,27,0,NULL +3361,311,25,0,NULL +3362,311,36,0,NULL +3363,311,26,0,NULL +3364,311,35,0,NULL +3365,311,34,0,NULL +3366,311,29,0,NULL +3367,311,39,0,NULL +3368,311,40,0,NULL +3369,311,42,0,NULL +3370,312,3,10,NULL +3371,312,1,9,NULL +3372,312,6,4,NULL +3373,312,22,2,NULL +3374,312,17,1,NULL +3375,312,25,0,NULL +3376,312,18,0,NULL +3377,312,35,0,NULL +3378,312,32,0,NULL +3379,312,34,0,NULL +3380,312,26,0,NULL +3381,312,27,0,NULL +3382,312,29,0,NULL +3383,312,41,0,NULL +3384,312,39,0,NULL +3385,312,36,0,NULL +3386,312,40,0,NULL +3387,312,42,0,NULL +3388,313,3,16,NULL +3389,313,6,4,NULL +3390,313,1,3,NULL +3391,313,17,3,NULL +3392,313,22,0,NULL +3393,313,27,0,NULL +3394,313,35,0,NULL +3395,313,34,0,NULL +3396,313,25,0,NULL +3397,313,41,0,NULL +3398,313,32,0,NULL +3399,313,26,0,NULL +3400,313,18,0,NULL +3401,313,40,0,NULL +3402,313,29,0,NULL +3403,313,39,0,NULL +3404,313,36,0,NULL +3405,313,42,0,NULL +3406,314,1,13,NULL +3407,314,3,10,NULL +3408,314,6,2,NULL +3409,314,41,1,NULL +3410,314,17,0,NULL +3411,314,22,0,NULL +3412,314,27,0,NULL +3413,314,25,0,NULL +3414,314,18,0,NULL +3415,314,32,0,NULL +3416,314,40,0,NULL +3417,314,34,0,NULL +3418,314,35,0,NULL +3419,314,26,0,NULL +3420,314,36,0,NULL +3421,314,29,0,NULL +3422,314,39,0,NULL +3423,314,42,0,NULL +3424,315,1,16,NULL +3425,315,22,7,NULL +3426,315,3,2,NULL +3427,315,34,1,NULL +3428,315,32,0,NULL +3429,315,35,0,NULL +3430,315,36,0,NULL +3431,315,27,0,NULL +3432,315,18,0,NULL +3433,315,17,0,NULL +3434,315,25,0,NULL +3435,315,6,0,NULL +3436,315,26,0,NULL +3437,315,41,0,NULL +3438,315,40,0,NULL +3439,315,29,0,NULL +3440,315,39,0,NULL +3441,315,42,0,NULL +3442,316,3,10,NULL +3443,316,1,9,NULL +3444,316,6,4,NULL +3445,316,22,3,NULL +3446,316,17,0,NULL +3447,316,41,0,NULL +3448,316,18,0,NULL +3449,316,35,0,NULL +3450,316,27,0,NULL +3451,316,34,0,NULL +3452,316,32,0,NULL +3453,316,40,0,NULL +3454,316,36,0,NULL +3455,316,25,0,NULL +3456,316,26,0,NULL +3457,316,29,0,NULL +3458,316,39,0,NULL +3459,316,42,0,NULL +3460,317,3,10,NULL +3461,317,1,6,NULL +3462,317,6,4,NULL +3463,317,18,3,NULL +3464,317,22,3,NULL +3465,317,41,0,NULL +3466,317,17,0,NULL +3467,317,27,0,NULL +3468,317,34,0,NULL +3469,317,25,0,NULL +3470,317,32,0,NULL +3471,317,29,0,NULL +3472,317,26,0,NULL +3473,317,35,0,NULL +3474,317,39,0,NULL +3475,317,40,0,NULL +3476,317,36,0,NULL +3477,317,42,0,NULL +3478,318,3,14,NULL +3479,318,6,9,NULL +3480,318,1,2,NULL +3481,318,22,1,NULL +3482,318,41,0,NULL +3483,318,35,0,NULL +3484,318,17,0,NULL +3485,318,34,0,NULL +3486,318,36,0,NULL +3487,318,18,0,NULL +3488,318,25,0,NULL +3489,318,27,0,NULL +3490,318,29,0,NULL +3491,318,32,0,NULL +3492,318,26,0,NULL +3493,318,40,0,NULL +3494,318,39,0,NULL +3495,319,1,16,NULL +3496,319,3,4,NULL +3497,319,6,3,NULL +3498,319,34,2,NULL +3499,319,25,1,NULL +3500,319,22,0,NULL +3501,319,41,0,NULL +3502,319,27,0,NULL +3503,319,29,0,NULL +3504,319,36,0,NULL +3505,319,18,0,NULL +3506,319,32,0,NULL +3507,319,26,0,NULL +3508,319,17,0,NULL +3509,319,35,0,NULL +3510,319,40,0,NULL +3511,319,42,0,NULL +3512,320,1,7,NULL +3513,320,3,4,NULL +3514,320,22,1.5,NULL +3515,320,6,0.5,NULL +3516,320,35,0,NULL +3517,320,17,0,NULL +3518,320,25,0,NULL +3519,320,32,0,NULL +3520,320,29,0,NULL +3521,320,41,0,NULL +3522,320,18,0,NULL +3523,320,34,0,NULL +3524,320,27,0,NULL +3525,320,40,0,NULL +3526,320,33,0,NULL +3527,320,36,0,NULL +3528,320,42,0,NULL +3529,321,1,9,NULL +3530,321,25,7,NULL +3531,321,3,4,NULL +3532,321,22,3,NULL +3533,321,34,2,NULL +3534,321,18,0,NULL +3535,321,33,0,NULL +3536,321,21,0,NULL +3537,321,44,0,NULL +3538,321,41,0,NULL +3539,321,6,0,NULL +3540,321,45,0,NULL +3541,321,35,0,NULL +3542,321,32,0,NULL +3543,321,27,0,NULL +3544,321,46,0,NULL +3545,321,39,0,NULL +3546,321,47,0,NULL +3547,321,42,0,NULL +3548,322,6,12,NULL +3549,322,1,10,NULL +3550,322,3,2,NULL +3551,322,22,1,NULL +3552,322,25,0,NULL +3553,322,18,0,NULL +3554,322,27,0,NULL +3555,322,35,0,NULL +3556,322,21,0,NULL +3557,322,32,0,NULL +3558,322,34,0,NULL +3559,322,39,0,NULL +3560,322,33,0,NULL +3561,322,45,0,NULL +3562,322,46,0,NULL +3563,322,41,0,NULL +3564,322,44,0,NULL +3565,322,42,0,NULL +3566,322,47,0,NULL +3567,323,3,9,NULL +3568,323,1,6,NULL +3569,323,22,6,NULL +3570,323,6,3,NULL +3571,323,25,1,NULL +3572,323,32,0,NULL +3573,323,27,0,NULL +3574,323,18,0,NULL +3575,323,46,0,NULL +3576,323,33,0,NULL +3577,323,45,0,NULL +3578,323,34,0,NULL +3579,323,35,0,NULL +3580,323,41,0,NULL +3581,323,44,0,NULL +3582,323,21,0,NULL +3583,323,42,0,NULL +3584,323,47,0,NULL +3585,323,39,0,NULL +3586,324,1,13,NULL +3587,324,25,6,NULL +3588,324,3,3,NULL +3589,324,21,2,NULL +3590,324,33,1,NULL +3591,324,46,0,NULL +3592,324,32,0,NULL +3593,324,6,0,NULL +3594,324,18,0,NULL +3595,324,27,0,NULL +3596,324,35,0,NULL +3597,324,22,0,NULL +3598,324,34,0,NULL +3599,324,41,0,NULL +3600,324,45,0,NULL +3601,324,44,0,NULL +3602,324,39,0,NULL +3603,324,42,0,NULL +3604,324,47,0,NULL +3605,325,1,12,NULL +3606,325,22,6,NULL +3607,325,6,6,NULL +3608,325,32,1,NULL +3609,325,34,0,NULL +3610,325,21,0,NULL +3611,325,33,0,NULL +3612,325,41,0,NULL +3613,325,25,0,NULL +3614,325,45,0,NULL +3615,325,46,0,NULL +3616,325,35,0,NULL +3617,325,3,0,NULL +3618,325,27,0,NULL +3619,325,18,0,NULL +3620,325,44,0,NULL +3621,325,39,0,NULL +3622,325,42,0,NULL +3623,325,47,0,NULL +3624,326,6,15,NULL +3625,326,1,4,NULL +3626,326,22,4,NULL +3627,326,3,2,NULL +3628,326,25,0,NULL +3629,326,32,0,NULL +3630,326,34,0,NULL +3631,326,18,0,NULL +3632,326,35,0,NULL +3633,326,46,0,NULL +3634,326,27,0,NULL +3635,326,21,0,NULL +3636,326,45,0,NULL +3637,326,33,0,NULL +3638,326,44,0,NULL +3639,326,41,0,NULL +3640,326,39,0,NULL +3641,326,42,0,NULL +3642,326,47,0,NULL +3643,327,6,9,NULL +3644,327,41,6,NULL +3645,327,1,6,NULL +3646,327,22,3,NULL +3647,327,3,1,NULL +3648,327,33,0,NULL +3649,327,27,0,NULL +3650,327,21,0,NULL +3651,327,32,0,NULL +3652,327,34,0,NULL +3653,327,39,0,NULL +3654,327,35,0,NULL +3655,327,25,0,NULL +3656,327,18,0,NULL +3657,327,46,0,NULL +3658,327,45,0,NULL +3659,327,44,0,NULL +3660,327,42,0,NULL +3661,327,47,0,NULL +3662,328,6,9,NULL +3663,328,3,6,NULL +3664,328,1,4,NULL +3665,328,33,4,NULL +3666,328,22,2,NULL +3667,328,21,0,NULL +3668,328,25,0,NULL +3669,328,34,0,NULL +3670,328,27,0,NULL +3671,328,35,0,NULL +3672,328,18,0,NULL +3673,328,41,0,NULL +3674,328,32,0,NULL +3675,328,39,0,NULL +3676,328,45,0,NULL +3677,328,46,0,NULL +3678,328,44,0,NULL +3679,328,42,0,NULL +3680,328,47,0,NULL +3681,329,1,13,NULL +3682,329,22,6,NULL +3683,329,6,3,NULL +3684,329,3,3,NULL +3685,329,41,0,NULL +3686,329,32,0,NULL +3687,329,21,0,NULL +3688,329,27,0,NULL +3689,329,25,0,NULL +3690,329,46,0,NULL +3691,329,33,0,NULL +3692,329,18,0,NULL +3693,329,34,0,NULL +3694,329,35,0,NULL +3695,329,45,0,NULL +3696,329,39,0,NULL +3697,329,44,0,NULL +3698,329,42,0,NULL +3699,329,47,0,NULL +3700,330,3,12,NULL +3701,330,1,6,NULL +3702,330,22,4,NULL +3703,330,32,2,NULL +3704,330,33,1,NULL +3705,330,41,0,NULL +3706,330,21,0,NULL +3707,330,35,0,NULL +3708,330,27,0,NULL +3709,330,39,0,NULL +3710,330,18,0,NULL +3711,330,6,0,NULL +3712,330,25,0,NULL +3713,330,34,0,NULL +3714,330,46,0,NULL +3715,330,45,0,NULL +3716,330,42,0,NULL +3717,330,44,0,NULL +3718,330,47,0,NULL +3719,331,1,13,NULL +3720,331,6,6,NULL +3721,331,22,5,NULL +3722,331,41,1,NULL +3723,331,25,0,NULL +3724,331,33,0,NULL +3725,331,21,0,NULL +3726,331,32,0,NULL +3727,331,27,0,NULL +3728,331,18,0,NULL +3729,331,45,0,NULL +3730,331,34,0,NULL +3731,331,35,0,NULL +3732,331,3,0,NULL +3733,331,39,0,NULL +3734,331,42,0,NULL +3735,331,44,0,NULL +3736,331,47,0,NULL +3737,332,1,13,NULL +3738,332,6,9,NULL +3739,332,3,2,NULL +3740,332,25,1,NULL +3741,332,22,0,NULL +3742,332,21,0,NULL +3743,332,35,0,NULL +3744,332,27,0,NULL +3745,332,39,0,NULL +3746,332,41,0,NULL +3747,332,33,0,NULL +3748,332,45,0,NULL +3749,332,34,0,NULL +3750,332,32,0,NULL +3751,332,18,0,NULL +3752,332,42,0,NULL +3753,332,44,0,NULL +3754,332,47,0,NULL +3755,333,6,13,NULL +3756,333,1,9,NULL +3757,333,22,3,NULL +3758,333,3,0,NULL +3759,333,25,0,NULL +3760,333,21,0,NULL +3761,333,27,0,NULL +3762,333,18,0,NULL +3763,333,41,0,NULL +3764,333,33,0,NULL +3765,333,35,0,NULL +3766,333,34,0,NULL +3767,333,32,0,NULL +3768,333,39,0,NULL +3769,333,45,0,NULL +3770,333,42,0,NULL +3771,333,44,0,NULL +3772,333,47,0,NULL +3773,334,6,15,NULL +3774,334,22,4,NULL +3775,334,3,5,NULL +3776,334,33,1,NULL +3777,334,27,0,NULL +3778,334,41,0,NULL +3779,334,39,0,NULL +3780,334,21,0,NULL +3781,334,32,0,NULL +3782,334,1,0,NULL +3783,334,35,0,NULL +3784,334,45,0,NULL +3785,334,18,0,NULL +3786,334,25,0,NULL +3787,334,34,0,NULL +3788,334,42,0,NULL +3789,334,44,0,NULL +3790,334,47,0,NULL +3791,335,22,15,NULL +3792,335,33,4,NULL +3793,335,3,5,NULL +3794,335,25,1,NULL +3795,335,27,0,NULL +3796,335,18,0,NULL +3797,335,21,0,NULL +3798,335,32,0,NULL +3799,335,6,0,NULL +3800,335,35,0,NULL +3801,335,41,0,NULL +3802,335,34,0,NULL +3803,335,1,0,NULL +3804,335,45,0,NULL +3805,335,39,0,NULL +3806,335,42,0,NULL +3807,336,22,9,NULL +3808,336,6,10,NULL +3809,336,1,3,NULL +3810,336,3,3,NULL +3811,336,25,0,NULL +3812,336,18,0,NULL +3813,336,27,0,NULL +3814,336,34,0,NULL +3815,336,45,0,NULL +3816,336,35,0,NULL +3817,336,39,0,NULL +3818,336,32,0,NULL +3819,336,41,0,NULL +3820,336,33,0,NULL +3821,336,21,0,NULL +3822,336,42,0,NULL +3823,1,23,18,NULL +3824,1,1,0,NULL +3825,1,7,11,NULL +3826,1,4,4,NULL +3827,1,3,3,NULL +3828,1,5,3,NULL +3829,1,10,0,NULL +3830,1,2,0,NULL +3831,1,9,0,NULL +3832,1,6,0,NULL +3833,2,23,7,NULL +3834,2,2,4,NULL +3835,2,7,5.5,NULL +3836,2,9,1.5,NULL +3837,2,1,1,NULL +3838,2,3,0.5,NULL +3839,2,6,0,NULL +3840,2,5,0,NULL +3841,2,4,0,NULL +3842,2,10,0,NULL +3843,3,9,18,NULL +3844,3,23,11,NULL +3845,3,1,7,NULL +3846,3,7,2,NULL +3847,3,5,1,NULL +3848,3,4,0,NULL +3849,3,6,0,NULL +3850,3,2,0,NULL +3851,3,10,0,NULL +3852,3,3,0,NULL +3853,4,23,14,NULL +3854,4,9,8,NULL +3855,4,7,8,NULL +3856,4,1,5,NULL +3857,4,6,3,NULL +3858,4,4,1,NULL +3859,4,3,0,NULL +3860,4,5,0,NULL +3861,4,10,0,NULL +3862,4,2,0,NULL +3863,5,23,18,NULL +3864,5,9,11,NULL +3865,5,4,4,NULL +3866,5,6,3,NULL +3867,5,2,2,NULL +3868,5,3,1,NULL +3869,5,1,0,NULL +3870,5,7,0,NULL +3871,5,10,0,NULL +3872,5,5,0,NULL +3873,6,23,18,NULL +3874,6,6,11,NULL +3875,6,9,4,NULL +3876,6,3,3,NULL +3877,6,4,2,NULL +3878,6,5,1,NULL +3879,6,10,0,NULL +3880,6,7,0,NULL +3881,6,2,0,NULL +3882,6,1,0,NULL +3883,7,23,10,NULL +3884,7,9,14,NULL +3885,7,7,6,NULL +3886,7,3,4,NULL +3887,7,6,3,NULL +3888,7,2,2,NULL +3889,7,4,0,NULL +3890,7,1,0,NULL +3891,7,5,0,NULL +3892,7,10,0,NULL +3893,8,9,18,NULL +3894,8,23,9,NULL +3895,8,6,6,NULL +3896,8,3,4,NULL +3897,8,7,2,NULL +3898,8,10,0,NULL +3899,8,4,0,NULL +3900,8,2,0,NULL +3901,8,1,0,NULL +3902,8,5,0,NULL +3903,9,9,18,NULL +3904,9,6,6,NULL +3905,9,3,5,NULL +3906,9,23,7,NULL +3907,9,4,2,NULL +3908,9,1,1,NULL +3909,9,7,0,NULL +3910,9,2,0,NULL +3911,9,10,0,NULL +3912,9,5,0,NULL +3913,10,1,14,NULL +3914,10,6,8,NULL +3915,10,9,6,NULL +3916,10,3,5,NULL +3917,10,7,4,NULL +3918,10,23,2,NULL +3919,10,2,0,NULL +3920,10,4,0,NULL +3921,10,10,0,NULL +3922,10,5,0,NULL +3923,11,23,12,NULL +3924,11,1,13,NULL +3925,11,6,6,NULL +3926,11,3,4,NULL +3927,11,4,3,NULL +3928,11,2,1,NULL +3929,11,9,0,NULL +3930,11,10,0,NULL +3931,11,7,0,NULL +3932,11,5,0,NULL +3933,12,6,10,NULL +3934,12,10,8,NULL +3935,12,9,6,NULL +3936,12,2,9,NULL +3937,12,1,3,NULL +3938,12,23,2,NULL +3939,12,3,1,NULL +3940,12,7,0,NULL +3941,12,5,0,NULL +3942,12,4,0,NULL +3943,13,23,18,NULL +3944,13,6,6,NULL +3945,13,10,5,NULL +3946,13,4,4,NULL +3947,13,1,3,NULL +3948,13,2,2,NULL +3949,13,9,1,NULL +3950,13,3,0,NULL +3951,13,7,0,NULL +3952,13,5,0,NULL +3953,14,1,12,NULL +3954,14,7,8,NULL +3955,14,4,6,NULL +3956,14,9,5,NULL +3957,14,23,7,NULL +3958,14,2,1,NULL +3959,14,3,0,NULL +3960,14,6,0,NULL +3961,14,10,0,NULL +3962,14,5,0,NULL +3963,15,9,10,NULL +3964,15,7,8,NULL +3965,15,1,6,NULL +3966,15,6,5,NULL +3967,15,3,4,NULL +3968,15,2,3,NULL +3969,15,23,3,NULL +3970,15,4,0,NULL +3971,15,10,0,NULL +3972,15,5,0,NULL +3973,16,9,15,NULL +3974,16,2,8,NULL +3975,16,1,6,NULL +3976,16,23,5,NULL +3977,16,6,3,NULL +3978,16,5,2,NULL +3979,16,7,0,NULL +3980,16,10,0,NULL +3981,16,4,0,NULL +3982,16,3,0,NULL +3983,356,6,9,NULL +3984,356,1,6,NULL +3985,356,37,4,NULL +3986,356,22,4,NULL +3987,356,21,2,NULL +3988,356,25,0,NULL +3989,356,32,0,NULL +3990,356,27,0,NULL +3991,356,33,0,NULL +3992,356,35,0,NULL +3993,356,48,0,NULL +3994,356,3,0,NULL +3995,356,49,0,NULL +3996,356,34,0,NULL +3997,356,45,0,NULL +3998,356,18,0,NULL +3999,356,44,0,NULL +4000,356,42,0,NULL +4001,356,39,0,NULL +4002,356,46,0,NULL +4003,357,1,15,NULL +4004,357,22,4,NULL +4005,357,3,3,NULL +4006,357,21,2,NULL +4007,357,25,1,NULL +4008,357,35,0,NULL +4009,357,39,0,NULL +4010,357,45,0,NULL +4011,357,34,0,NULL +4012,357,32,0,NULL +4013,357,18,0,NULL +4014,357,37,0,NULL +4015,357,6,0,NULL +4016,357,27,0,NULL +4017,357,33,0,NULL +4018,357,48,0,NULL +4019,357,42,0,NULL +4020,357,46,0,NULL +4021,357,44,0,NULL +4022,357,49,0,NULL +4023,358,1,15,NULL +4024,358,34,5,NULL +4025,358,35,3,NULL +4026,358,25,2,NULL +4027,358,21,0,NULL +4028,358,22,0,NULL +4029,358,3,0,NULL +4030,358,37,0,NULL +4031,358,27,0,NULL +4032,358,18,0,NULL +4033,358,39,0,NULL +4034,358,42,0,NULL +4035,358,33,0,NULL +4036,358,32,0,NULL +4037,358,6,0,NULL +4038,358,48,0,NULL +4039,358,45,0,NULL +4040,358,46,0,NULL +4041,358,49,0,NULL +4042,358,44,0,NULL +4043,359,1,11,NULL +4044,359,3,6,NULL +4045,359,25,4,NULL +4046,359,22,3,NULL +4047,359,39,1,NULL +4048,359,21,0,NULL +4049,359,27,0,NULL +4050,359,34,0,NULL +4051,359,32,0,NULL +4052,359,48,0,NULL +4053,359,35,0,NULL +4054,359,18,0,NULL +4055,359,6,0,NULL +4056,359,33,0,NULL +4057,359,46,0,NULL +4058,359,37,0,NULL +4059,359,42,0,NULL +4060,359,44,0,NULL +4061,359,45,0,NULL +4062,359,49,0,NULL +4063,360,1,9,NULL +4064,360,3,7,NULL +4065,360,21,4,NULL +4066,360,48,3,NULL +4067,360,22,2,NULL +4068,360,39,0,NULL +4069,360,35,0,NULL +4070,360,25,0,NULL +4071,360,6,0,NULL +4072,360,32,0,NULL +4073,360,46,0,NULL +4074,360,18,0,NULL +4075,360,34,0,NULL +4076,360,37,0,NULL +4077,360,33,0,NULL +4078,360,27,0,NULL +4079,360,42,0,NULL +4080,360,45,0,NULL +4081,360,44,0,NULL +4082,360,49,0,NULL +4083,361,3,15,NULL +4084,361,35,5,NULL +4085,361,32,3,NULL +4086,361,27,2,NULL +4087,361,1,0,NULL +4088,361,48,0,NULL +4089,361,42,0,NULL +4090,361,21,0,NULL +4091,361,25,0,NULL +4092,361,45,0,NULL +4093,361,37,0,NULL +4094,361,33,0,NULL +4095,361,46,0,NULL +4096,361,18,0,NULL +4097,361,6,0,NULL +4098,361,39,0,NULL +4099,361,34,0,NULL +4100,361,22,0,NULL +4101,361,44,0,NULL +4102,361,49,0,NULL +4103,362,1,9,NULL +4104,362,6,6,NULL +4105,362,3,4,NULL +4106,362,25,3,NULL +4107,362,46,2,NULL +4108,362,27,1,NULL +4109,362,21,0,NULL +4110,362,32,0,NULL +4111,362,22,0,NULL +4112,362,33,0,NULL +4113,362,37,0,NULL +4114,362,34,0,NULL +4115,362,18,0,NULL +4116,362,39,0,NULL +4117,362,35,0,NULL +4118,362,48,0,NULL +4119,362,42,0,NULL +4120,362,45,0,NULL +4121,362,49,0,NULL +4122,362,44,0,NULL +4123,363,1,9,NULL +4124,363,6,6,NULL +4125,363,22,4,NULL +4126,363,32,3,NULL +4127,363,18,3,NULL +4128,363,27,0,NULL +4129,363,21,0,NULL +4130,363,3,0,NULL +4131,363,46,0,NULL +4132,363,37,0,NULL +4133,363,34,0,NULL +4134,363,33,0,NULL +4135,363,25,0,NULL +4136,363,45,0,NULL +4137,363,35,0,NULL +4138,363,42,0,NULL +4139,363,39,0,NULL +4140,363,48,0,NULL +4141,363,44,0,NULL +4142,363,49,0,NULL +4143,364,1,15,NULL +4144,364,6,4,NULL +4145,364,3,3,NULL +4146,364,32,2,NULL +4147,364,21,1,NULL +4148,364,35,0,NULL +4149,364,34,0,NULL +4150,364,18,0,NULL +4151,364,25,0,NULL +4152,364,27,0,NULL +4153,364,37,0,NULL +4154,364,22,0,NULL +4155,364,33,0,NULL +4156,364,46,0,NULL +4157,364,48,0,NULL +4158,364,39,0,NULL +4159,364,45,0,NULL +4160,364,42,0,NULL +4161,364,44,0,NULL +4162,364,49,0,NULL +4163,365,6,9,NULL +4164,365,1,9,NULL +4165,365,3,4,NULL +4166,365,21,2,NULL +4167,365,32,1,NULL +4168,365,35,0,NULL +4169,365,22,0,NULL +4170,365,25,0,NULL +4171,365,34,0,NULL +4172,365,18,0,NULL +4173,365,46,0,NULL +4174,365,37,0,NULL +4175,365,33,0,NULL +4176,365,45,0,NULL +4177,365,27,0,NULL +4178,365,48,0,NULL +4179,365,39,0,NULL +4180,365,49,0,NULL +4181,365,42,0,NULL +4182,365,44,0,NULL +4183,366,1,15,NULL +4184,366,6,4,NULL +4185,366,3,3,NULL +4186,366,22,2,NULL +4187,366,21,1,NULL +4188,366,37,0,NULL +4189,366,46,0,NULL +4190,366,18,0,NULL +4191,366,35,0,NULL +4192,366,27,0,NULL +4193,366,25,0,NULL +4194,366,33,0,NULL +4195,366,34,0,NULL +4196,366,32,0,NULL +4197,366,48,0,NULL +4198,366,45,0,NULL +4199,366,42,0,NULL +4200,366,39,0,NULL +4201,366,49,0,NULL +4202,366,44,0,NULL +4203,367,1,9,NULL +4204,367,6,6,NULL +4205,367,3,7,NULL +4206,367,25,2,NULL +4207,367,34,1,NULL +4208,367,18,0,NULL +4209,367,27,0,NULL +4210,367,32,0,NULL +4211,367,35,0,NULL +4212,367,46,0,NULL +4213,367,22,0,NULL +4214,367,37,0,NULL +4215,367,21,0,NULL +4216,367,45,0,NULL +4217,367,33,0,NULL +4218,367,48,0,NULL +4219,367,39,0,NULL +4220,367,42,0,NULL +4221,367,49,0,NULL +4222,367,44,0,NULL +4223,368,6,9,NULL +4224,368,1,6,NULL +4225,368,46,4,NULL +4226,368,22,3,NULL +4227,368,18,2,NULL +4228,368,25,1,NULL +4229,368,32,0,NULL +4230,368,34,0,NULL +4231,368,33,0,NULL +4232,368,37,0,NULL +4233,368,27,0,NULL +4234,368,3,0,NULL +4235,368,21,0,NULL +4236,368,35,0,NULL +4237,368,42,0,NULL +4238,368,48,0,NULL +4239,368,39,0,NULL +4240,368,45,0,NULL +4241,368,44,0,NULL +4242,368,49,0,NULL +4243,369,1,13,NULL +4244,369,6,6,NULL +4245,369,25,3,NULL +4246,369,3,2,NULL +4247,369,33,1,NULL +4248,369,35,0,NULL +4249,369,32,0,NULL +4250,369,21,0,NULL +4251,369,22,0,NULL +4252,369,34,0,NULL +4253,369,37,0,NULL +4254,369,18,0,NULL +4255,369,27,0,NULL +4256,369,46,0,NULL +4257,369,45,0,NULL +4258,369,48,0,NULL +4259,369,39,0,NULL +4260,369,42,0,NULL +4261,369,49,0,NULL +4262,369,44,0,NULL +4263,370,22,9,NULL +4264,370,3,10,NULL +4265,370,32,3,NULL +4266,370,34,2,NULL +4267,370,21,1,NULL +4268,370,37,0,NULL +4269,370,35,0,NULL +4270,370,1,0,NULL +4271,370,6,0,NULL +4272,370,25,0,NULL +4273,370,33,0,NULL +4274,370,27,0,NULL +4275,370,45,0,NULL +4276,370,49,0,NULL +4277,370,18,0,NULL +4278,370,48,0,NULL +4279,370,42,0,NULL +4280,370,46,0,NULL +4281,370,44,0,NULL +4282,370,39,0,NULL +4283,371,3,13,NULL +4284,371,22,8,NULL +4285,371,32,3,NULL +4286,371,18,1,NULL +4287,371,37,0,NULL +4288,371,34,0,NULL +4289,371,21,0,NULL +4290,371,46,0,NULL +4291,371,27,0,NULL +4292,371,45,0,NULL +4293,371,6,0,NULL +4294,371,1,0,NULL +4295,371,35,0,NULL +4296,371,33,0,NULL +4297,371,25,0,NULL +4298,371,48,0,NULL +4299,371,49,0,NULL +4300,371,42,0,NULL +4301,371,44,0,NULL +4302,371,39,0,NULL +4303,372,1,9,NULL +4304,372,6,8,NULL +4305,372,32,5,NULL +4306,372,21,3,NULL +4307,372,22,0,NULL +4308,372,27,0,NULL +4309,372,48,0,NULL +4310,372,25,0,NULL +4311,372,18,0,NULL +4312,372,33,0,NULL +4313,372,42,0,NULL +4314,372,39,0,NULL +4315,372,44,0,NULL +4316,372,3,0,NULL +4317,372,37,0,NULL +4318,372,49,0,NULL +4319,372,45,0,NULL +4320,372,35,0,NULL +4321,373,1,15,NULL +4322,373,32,4,NULL +4323,373,22,4,NULL +4324,373,6,2,NULL +4325,373,21,0,NULL +4326,373,39,0,NULL +4327,373,18,0,NULL +4328,373,33,0,NULL +4329,373,3,0,NULL +4330,373,25,0,NULL +4331,373,37,0,NULL +4332,373,44,0,NULL +4333,373,42,0,NULL +4334,373,35,0,NULL +4335,373,49,0,NULL +4336,373,48,0,NULL +4337,373,45,0,NULL +4338,373,27,0,NULL +4339,374,1,9,NULL +4340,374,6,10,NULL +4341,374,21,3,NULL +4342,374,25,2,NULL +4343,374,3,1,NULL +4344,374,33,0,NULL +4345,374,22,0,NULL +4346,374,45,0,NULL +4347,374,37,0,NULL +4348,374,49,0,NULL +4349,374,18,0,NULL +4350,374,48,0,NULL +4351,374,27,0,NULL +4352,374,44,0,NULL +4353,374,42,0,NULL +4354,374,32,0,NULL +4355,374,35,0,NULL +4356,374,39,0,NULL +4357,375,1,15,NULL +4358,375,6,7,NULL +4359,375,21,3,NULL +4360,375,22,0,NULL +4361,375,33,0,NULL +4362,375,27,0,NULL +4363,375,18,0,NULL +4364,375,39,0,NULL +4365,375,44,0,NULL +4366,375,42,0,NULL +4367,375,49,0,NULL +4368,375,37,0,NULL +4369,375,32,0,NULL +4370,375,48,0,NULL +4371,375,3,0,NULL +4372,375,35,0,NULL +4373,375,25,0,NULL +4374,375,45,0,NULL +4375,376,1,15,NULL +4376,376,22,4,NULL +4377,376,32,3,NULL +4378,376,37,2,NULL +4379,376,25,1,NULL +4380,376,21,0,NULL +4381,376,42,0,NULL +4382,376,48,0,NULL +4383,376,33,0,NULL +4384,376,44,0,NULL +4385,376,18,0,NULL +4386,376,49,0,NULL +4387,376,39,0,NULL +4388,376,27,0,NULL +4389,376,6,0,NULL +4390,376,3,0,NULL +4391,376,45,0,NULL +4392,376,35,0,NULL +4393,377,1,15,NULL +4394,377,22,4,NULL +4395,377,48,3,NULL +4396,377,25,2,NULL +4397,377,18,1,NULL +4398,377,33,0,NULL +4399,377,35,0,NULL +4400,377,44,0,NULL +4401,377,6,0,NULL +4402,377,27,0,NULL +4403,377,37,0,NULL +4404,377,3,0,NULL +4405,377,32,0,NULL +4406,377,21,0,NULL +4407,377,39,0,NULL +4408,377,45,0,NULL +4409,377,49,0,NULL +4410,377,42,0,NULL +4411,378,1,15,NULL +4412,378,6,7,NULL +4413,378,32,2,NULL +4414,378,22,1,NULL +4415,378,37,0,NULL +4416,378,48,0,NULL +4417,378,21,0,NULL +4418,378,35,0,NULL +4419,378,33,0,NULL +4420,378,44,0,NULL +4421,378,18,0,NULL +4422,378,45,0,NULL +4423,378,49,0,NULL +4424,378,3,0,NULL +4425,378,25,0,NULL +4426,378,39,0,NULL +4427,378,27,0,NULL +4428,378,42,0,NULL +4429,379,1,9,NULL +4430,379,3,6,NULL +4431,379,22,4,NULL +4432,379,37,3,NULL +4433,379,32,2,NULL +4434,379,21,1,NULL +4435,379,6,0,NULL +4436,379,35,0,NULL +4437,379,44,0,NULL +4438,379,33,0,NULL +4439,379,18,0,NULL +4440,379,25,0,NULL +4441,379,27,0,NULL +4442,379,45,0,NULL +4443,379,48,0,NULL +4444,379,39,0,NULL +4445,379,49,0,NULL +4446,379,42,0,NULL +4447,380,1,15,NULL +4448,380,6,7,NULL +4449,380,37,2,NULL +4450,380,22,1,NULL +4451,380,21,0,NULL +4452,380,32,0,NULL +4453,380,25,0,NULL +4454,380,49,0,NULL +4455,380,48,0,NULL +4456,380,35,0,NULL +4457,380,44,0,NULL +4458,380,27,0,NULL +4459,380,33,0,NULL +4460,380,39,0,NULL +4461,380,3,0,NULL +4462,380,45,0,NULL +4463,380,18,0,NULL +4464,380,42,0,NULL +4465,381,1,15,NULL +4466,381,22,4,NULL +4467,381,6,3,NULL +4468,381,37,2,NULL +4469,381,3,1,NULL +4470,381,32,0,NULL +4471,381,33,0,NULL +4472,381,18,0,NULL +4473,381,44,0,NULL +4474,381,42,0,NULL +4475,381,21,0,NULL +4476,381,27,0,NULL +4477,381,48,0,NULL +4478,381,35,0,NULL +4479,381,39,0,NULL +4480,381,25,0,NULL +4481,381,49,0,NULL +4482,381,45,0,NULL +4483,382,1,15,NULL +4484,382,37,4,NULL +4485,382,32,3,NULL +4486,382,21,3,NULL +4487,382,3,0,NULL +4488,382,35,0,NULL +4489,382,33,0,NULL +4490,382,39,0,NULL +4491,382,27,0,NULL +4492,382,25,0,NULL +4493,382,49,0,NULL +4494,382,22,0,NULL +4495,382,42,0,NULL +4496,382,6,0,NULL +4497,382,45,0,NULL +4498,382,48,0,NULL +4499,382,18,0,NULL +4500,382,44,0,NULL +4501,383,6,15,NULL +4502,383,21,7,NULL +4503,383,37,2,NULL +4504,383,22,1,NULL +4505,383,3,0,NULL +4506,383,1,0,NULL +4507,383,25,0,NULL +4508,383,27,0,NULL +4509,383,33,0,NULL +4510,383,39,0,NULL +4511,383,49,0,NULL +4512,383,48,0,NULL +4513,383,35,0,NULL +4514,383,18,0,NULL +4515,383,32,0,NULL +4516,383,45,0,NULL +4517,383,42,0,NULL +4518,383,44,0,NULL +4519,384,1,10,NULL +4520,384,37,6,NULL +4521,384,22,4,NULL +4522,384,21,3,NULL +4523,384,6,2,NULL +4524,384,35,0,NULL +4525,384,18,0,NULL +4526,384,39,0,NULL +4527,384,27,0,NULL +4528,384,42,0,NULL +4529,384,45,0,NULL +4530,384,3,0,NULL +4531,384,25,0,NULL +4532,384,32,0,NULL +4533,384,33,0,NULL +4534,384,48,0,NULL +4535,384,49,0,NULL +4536,384,44,0,NULL +4537,385,1,12,NULL +4538,385,3,8,NULL +4539,385,22,4,NULL +4540,385,6,1,NULL +4541,385,37,0,NULL +4542,385,32,0,NULL +4543,385,35,0,NULL +4544,385,33,0,NULL +4545,385,18,0,NULL +4546,385,44,0,NULL +4547,385,27,0,NULL +4548,385,21,0,NULL +4549,385,48,0,NULL +4550,385,39,0,NULL +4551,385,45,0,NULL +4552,385,25,0,NULL +4553,385,49,0,NULL +4554,385,42,0,NULL +4555,386,1,15,NULL +4556,386,22,6,NULL +4557,386,6,3,NULL +4558,386,3,1,NULL +4559,386,32,0,NULL +4560,386,39,0,NULL +4561,386,33,0,NULL +4562,386,37,0,NULL +4563,386,25,0,NULL +4564,386,18,0,NULL +4565,386,27,0,NULL +4566,386,48,0,NULL +4567,386,21,0,NULL +4568,386,45,0,NULL +4569,386,35,0,NULL +4570,386,49,0,NULL +4571,386,44,0,NULL +4572,386,42,0,NULL +4573,387,1,15,NULL +4574,387,32,4,NULL +4575,387,3,3,NULL +4576,387,22,2,NULL +4577,387,37,1,NULL +4578,387,18,0,NULL +4579,387,48,0,NULL +4580,387,27,0,NULL +4581,387,33,0,NULL +4582,387,39,0,NULL +4583,387,49,0,NULL +4584,387,44,0,NULL +4585,387,21,0,NULL +4586,387,35,0,NULL +4587,387,6,0,NULL +4588,387,25,0,NULL +4589,387,42,0,NULL +4590,387,45,0,NULL +4591,388,1,13,NULL +4592,388,3,7,NULL +4593,388,6,3,NULL +4594,388,22,2,NULL +4595,388,32,0,NULL +4596,388,49,0,NULL +4597,388,25,0,NULL +4598,388,39,0,NULL +4599,388,21,0,NULL +4600,388,34,0,NULL +4601,388,45,0,NULL +4602,388,18,0,NULL +4603,388,37,0,NULL +4604,389,3,9,NULL +4605,389,32,7,NULL +4606,389,6,4,NULL +4607,389,1,3,NULL +4608,389,49,2,NULL +4609,389,25,0,NULL +4610,389,34,0,NULL +4611,389,33,0,NULL +4612,389,21,0,NULL +4613,389,45,0,NULL +4614,389,39,0,NULL +4615,389,22,0,NULL +4616,389,18,0,NULL +4617,389,37,0,NULL +4618,389,27,0,NULL +4619,390,1,15,NULL +4620,390,34,4,NULL +4621,390,21,3,NULL +4622,390,32,2,NULL +4623,390,27,1,NULL +4624,390,33,0,NULL +4625,390,25,0,NULL +4626,390,39,0,NULL +4627,390,22,0,NULL +4628,390,49,0,NULL +4629,390,3,0,NULL +4630,390,37,0,NULL +4631,390,45,0,NULL +4632,390,6,0,NULL +4633,390,18,0,NULL +4634,391,32,9,NULL +4635,391,3,6,NULL +4636,391,6,7,NULL +4637,391,25,2,NULL +4638,391,37,1,NULL +4639,391,49,0,NULL +4640,391,22,0,NULL +4641,391,1,0,NULL +4642,391,27,0,NULL +4643,391,39,0,NULL +4644,391,21,0,NULL +4645,391,33,0,NULL +4646,391,34,0,NULL +4647,391,45,0,NULL +4648,391,18,0,NULL +4649,392,32,9,NULL +4650,392,3,8,NULL +4651,392,1,4,NULL +4652,392,6,3,NULL +4653,392,21,1,NULL +4654,392,49,0,NULL +4655,392,34,0,NULL +4656,392,27,0,NULL +4657,392,25,0,NULL +4658,392,39,0,NULL +4659,392,22,0,NULL +4660,392,33,0,NULL +4661,392,18,0,NULL +4662,392,37,0,NULL +4663,392,45,0,NULL +4664,393,3,15,NULL +4665,393,1,4,NULL +4666,393,32,3,NULL +4667,393,22,2,NULL +4668,393,25,1,NULL +4669,393,39,0,NULL +4670,393,6,0,NULL +4671,393,21,0,NULL +4672,393,33,0,NULL +4673,393,37,0,NULL +4674,393,18,0,NULL +4675,393,27,0,NULL +4676,393,49,0,NULL +4677,393,34,0,NULL +4678,393,45,0,NULL +4679,394,3,15,NULL +4680,394,32,7,NULL +4681,394,21,2,NULL +4682,394,22,1,NULL +4683,394,25,0,NULL +4684,394,39,0,NULL +4685,394,49,0,NULL +4686,394,1,0,NULL +4687,394,6,0,NULL +4688,394,18,0,NULL +4689,394,45,0,NULL +4690,394,34,0,NULL +4691,394,33,0,NULL +4692,394,27,0,NULL +4693,394,37,0,NULL +4694,395,3,9,NULL +4695,395,1,6,NULL +4696,395,32,4,NULL +4697,395,25,5,NULL +4698,395,33,1,NULL +4699,395,49,0,NULL +4700,395,27,0,NULL +4701,395,18,0,NULL +4702,395,22,0,NULL +4703,395,21,0,NULL +4704,395,6,0,NULL +4705,395,45,0,NULL +4706,395,34,0,NULL +4707,395,39,0,NULL +4708,395,37,0,NULL +4709,396,3,9,NULL +4710,396,32,6,NULL +4711,396,1,4,NULL +4712,396,22,3,NULL +4713,396,34,2,NULL +4714,396,21,1,NULL +4715,396,25,0,NULL +4716,396,37,0,NULL +4717,396,18,0,NULL +4718,396,27,0,NULL +4719,396,39,0,NULL +4720,396,45,0,NULL +4721,396,33,0,NULL +4722,396,49,0,NULL +4723,396,6,0,NULL +4724,397,3,15,NULL +4725,397,22,7,NULL +4726,397,32,2,NULL +4727,397,1,1,NULL +4728,397,27,0,NULL +4729,397,49,0,NULL +4730,397,37,0,NULL +4731,397,33,0,NULL +4732,397,25,0,NULL +4733,397,39,0,NULL +4734,397,34,0,NULL +4735,397,6,0,NULL +4736,397,21,0,NULL +4737,397,18,0,NULL +4738,397,45,0,NULL +4739,398,3,13,NULL +4740,398,32,6,NULL +4741,398,6,3,NULL +4742,398,22,2,NULL +4743,398,1,1,NULL +4744,398,27,0,NULL +4745,398,49,0,NULL +4746,398,25,0,NULL +4747,398,37,0,NULL +4748,398,18,0,NULL +4749,398,33,0,NULL +4750,398,21,0,NULL +4751,398,45,0,NULL +4752,398,34,0,NULL +4753,398,42,0,NULL +4754,398,39,0,NULL +4755,399,1,11,NULL +4756,399,6,6,NULL +4757,399,3,4,NULL +4758,399,22,3,NULL +4759,399,21,1,NULL +4760,399,32,0,NULL +4761,399,37,0,NULL +4762,399,25,0,NULL +4763,399,18,0,NULL +4764,399,34,0,NULL +4765,399,49,0,NULL +4766,399,45,0,NULL +4767,399,33,0,NULL +4768,399,27,0,NULL +4769,400,3,12,NULL +4770,400,1,10,NULL +4771,400,32,2,NULL +4772,400,33,1,NULL +4773,400,25,0,NULL +4774,400,21,0,NULL +4775,400,49,0,NULL +4776,400,37,0,NULL +4777,400,34,0,NULL +4778,400,18,0,NULL +4779,400,6,0,NULL +4780,400,22,0,NULL +4781,400,27,0,NULL +4782,400,39,0,NULL +4783,400,42,0,NULL +4784,400,45,0,NULL +4785,401,3,15,NULL +4786,401,34,4,NULL +4787,401,21,3,NULL +4788,401,22,2,NULL +4789,401,33,1,NULL +4790,401,25,0,NULL +4791,401,32,0,NULL +4792,401,37,0,NULL +4793,401,45,0,NULL +4794,401,27,0,NULL +4795,401,18,0,NULL +4796,401,6,0,NULL +4797,401,49,0,NULL +4798,401,1,0,NULL +4799,402,6,12,NULL +4800,402,32,7,NULL +4801,402,1,4,NULL +4802,402,22,2,NULL +4803,402,25,0,NULL +4804,402,21,0,NULL +4805,402,34,0,NULL +4806,402,27,0,NULL +4807,402,33,0,NULL +4808,402,3,0,NULL +4809,402,45,0,NULL +4810,402,39,0,NULL +4811,402,18,0,NULL +4812,402,49,0,NULL +4813,402,37,0,NULL +4814,403,6,15,NULL +4815,403,22,4,NULL +4816,403,25,3,NULL +4817,403,33,0,NULL +4818,403,39,1,NULL +4819,403,49,0,NULL +4820,403,34,0,NULL +4821,403,3,0,NULL +4822,403,32,0,NULL +4823,403,37,0,NULL +4824,403,1,0,NULL +4825,403,21,0,NULL +4826,403,18,0,NULL +4827,403,27,0,NULL +4828,403,45,0,NULL +4829,404,3,9,NULL +4830,404,32,6,NULL +4831,404,27,7,NULL +4832,404,25,2,NULL +4833,404,22,1,NULL +4834,404,34,0,NULL +4835,404,21,0,NULL +4836,404,6,0,NULL +4837,404,1,0,NULL +4838,404,45,0,NULL +4839,404,26,0,NULL +4840,404,49,0,NULL +4841,404,18,0,NULL +4842,405,32,9,NULL +4843,405,3,6,NULL +4844,405,1,7,NULL +4845,405,22,3,NULL +4846,405,21,0,NULL +4847,405,26,0,NULL +4848,405,25,0,NULL +4849,405,27,0,NULL +4850,405,34,0,NULL +4851,405,6,0,NULL +4852,405,45,0,NULL +4853,405,18,0,NULL +4854,405,49,0,NULL +4855,406,1,11,NULL +4856,406,3,6,NULL +4857,406,22,4,NULL +4858,406,6,3,NULL +4859,406,34,1,NULL +4860,406,21,0,NULL +4861,406,25,0,NULL +4862,406,45,0,NULL +4863,406,27,0,NULL +4864,406,49,0,NULL +4865,406,26,0,NULL +4866,406,18,0,NULL +4867,406,32,0,NULL +4868,407,1,15,NULL +4869,407,32,4,NULL +4870,407,3,3,NULL +4871,407,27,3,NULL +4872,407,21,0,NULL +4873,407,6,0,NULL +4874,407,25,0,NULL +4875,407,49,0,NULL +4876,407,26,0,NULL +4877,407,22,0,NULL +4878,407,34,0,NULL +4879,407,45,0,NULL +4880,407,18,0,NULL +4881,408,3,9,NULL +4882,408,32,6,NULL +4883,408,6,7,NULL +4884,408,27,2,NULL +4885,408,1,1,NULL +4886,408,22,0,NULL +4887,408,34,0,NULL +4888,408,21,0,NULL +4889,408,26,0,NULL +4890,408,25,0,NULL +4891,408,49,0,NULL +4892,408,18,0,NULL +4893,408,45,0,NULL +4894,409,3,13,NULL +4895,409,1,9,NULL +4896,409,32,2,NULL +4897,409,27,1,NULL +4898,409,6,0,NULL +4899,409,25,0,NULL +4900,409,26,0,NULL +4901,409,49,0,NULL +4902,409,34,0,NULL +4903,409,45,0,NULL +4904,409,18,0,NULL +4905,409,21,0,NULL +4906,409,22,0,NULL +4907,410,32,9,NULL +4908,410,27,6,NULL +4909,410,1,4,NULL +4910,410,6,3,NULL +4911,410,3,2,NULL +4912,410,34,1,NULL +4913,410,49,0,NULL +4914,410,25,0,NULL +4915,410,21,0,NULL +4916,410,18,0,NULL +4917,410,22,0,NULL +4918,410,26,0,NULL +4919,410,45,0,NULL +4920,411,3,13,NULL +4921,411,1,9,NULL +4922,411,27,3,NULL +4923,411,34,0,NULL +4924,411,6,0,NULL +4925,411,25,0,NULL +4926,411,21,0,NULL +4927,411,26,0,NULL +4928,411,32,0,NULL +4929,411,49,0,NULL +4930,411,45,0,NULL +4931,411,22,0,NULL +4932,411,18,0,NULL +4933,412,3,15,NULL +4934,412,1,4,NULL +4935,412,27,3,NULL +4936,412,25,3,NULL +4937,412,32,0,NULL +4938,412,34,0,NULL +4939,412,49,0,NULL +4940,412,21,0,NULL +4941,412,26,0,NULL +4942,412,6,0,NULL +4943,412,18,0,NULL +4944,412,22,0,NULL +4945,412,45,0,NULL +4946,413,3,13,NULL +4947,413,32,6,NULL +4948,413,27,3,NULL +4949,413,1,3,NULL +4950,413,34,0,NULL +4951,413,26,0,NULL +4952,413,22,0,NULL +4953,413,6,0,NULL +4954,413,45,0,NULL +4955,413,21,0,NULL +4956,413,49,0,NULL +4957,413,25,0,NULL +4958,413,18,0,NULL +4959,414,3,13,NULL +4960,414,32,8,NULL +4961,414,6,3,NULL +4962,414,25,1,NULL +4963,414,26,0,NULL +4964,414,27,0,NULL +4965,414,49,0,NULL +4966,414,22,0,NULL +4967,414,21,0,NULL +4968,414,1,0,NULL +4969,414,18,0,NULL +4970,414,34,0,NULL +4971,414,45,0,NULL +4972,415,1,9,NULL +4973,415,6,10,NULL +4974,415,26,5,NULL +4975,415,21,1,NULL +4976,415,22,0,NULL +4977,415,49,0,NULL +4978,415,27,0,NULL +4979,415,45,0,NULL +4980,415,3,0,NULL +4981,415,18,0,NULL +4982,415,32,0,NULL +4983,415,25,0,NULL +4984,415,34,0,NULL +4985,416,3,15,NULL +4986,416,6,4,NULL +4987,416,1,3,NULL +4988,416,22,2,NULL +4989,416,26,1,NULL +4990,416,21,0,NULL +4991,416,25,0,NULL +4992,416,45,0,NULL +4993,416,18,0,NULL +4994,416,39,0,NULL +4995,416,27,0,NULL +4996,416,49,0,NULL +4997,416,32,0,NULL +4998,416,34,0,NULL +4999,417,3,13,NULL +5000,417,1,6,NULL +5001,417,32,3,NULL +5002,417,6,3,NULL +5003,417,27,0,NULL +5004,417,22,0,NULL +5005,417,21,0,NULL +5006,417,49,0,NULL +5007,417,45,0,NULL +5008,417,34,0,NULL +5009,417,26,0,NULL +5010,417,18,0,NULL +5011,417,25,0,NULL +5012,417,39,0,NULL +5013,418,22,9,NULL +5014,418,1,6,NULL +5015,418,32,4,NULL +5016,418,3,5,NULL +5017,418,27,1,NULL +5018,418,21,0,NULL +5019,418,18,0,NULL +5020,418,49,0,NULL +5021,418,25,0,NULL +5022,418,6,0,NULL +5023,418,34,0,NULL +5024,418,45,0,NULL +5025,418,26,0,NULL +5026,419,1,9,NULL +5027,419,3,6,NULL +5028,419,6,4,NULL +5029,419,25,5,NULL +5030,419,32,1,NULL +5031,419,27,0,NULL +5032,419,49,0,NULL +5033,419,22,0,NULL +5034,419,26,0,NULL +5035,419,34,0,NULL +5036,419,45,0,NULL +5037,419,21,0,NULL +5038,419,18,0,NULL +5039,420,1,9,NULL +5040,420,6,9,NULL +5041,420,32,4,NULL +5042,420,4,2,NULL +5043,420,27,1,NULL +5044,420,25,0,NULL +5045,420,50,0,NULL +5046,420,21,0,NULL +5047,420,45,0,NULL +5048,420,51,0,NULL +5049,420,18,0,NULL +5050,420,3,0,NULL +5051,420,34,0,NULL +5052,420,52,0,NULL +5053,421,32,12,NULL +5054,421,6,6,NULL +5055,421,4,4,NULL +5056,421,3,2,NULL +5057,421,25,1,NULL +5058,421,45,0,NULL +5059,421,50,0,NULL +5060,421,1,0,NULL +5061,421,51,0,NULL +5062,421,27,0,NULL +5063,421,34,0,NULL +5064,421,21,0,NULL +5065,421,52,0,NULL +5066,421,18,0,NULL +5067,421,49,0,NULL +5068,422,32,9,NULL +5069,422,21,6,NULL +5070,422,4,4,NULL +5071,422,1,3,NULL +5072,422,3,2,NULL +5073,422,6,1,NULL +5074,422,34,0,NULL +5075,422,25,0,NULL +5076,422,51,0,NULL +5077,422,45,0,NULL +5078,422,50,0,NULL +5079,422,27,0,NULL +5080,422,18,0,NULL +5081,422,52,0,NULL +5082,422,49,0,NULL +5083,423,1,9,NULL +5084,423,6,6,NULL +5085,423,32,4,NULL +5086,423,27,4,NULL +5087,423,4,2,NULL +5088,423,3,0,NULL +5089,423,21,0,NULL +5090,423,25,0,NULL +5091,423,49,0,NULL +5092,423,51,0,NULL +5093,423,34,0,NULL +5094,423,53,0,NULL +5095,423,45,0,NULL +5096,423,50,0,NULL +5097,424,6,15,NULL +5098,424,1,4,NULL +5099,424,3,4,NULL +5100,424,32,2,NULL +5101,424,4,0,NULL +5102,424,27,0,NULL +5103,424,21,0,NULL +5104,424,51,0,NULL +5105,424,25,0,NULL +5106,424,34,0,NULL +5107,424,18,0,NULL +5108,424,45,0,NULL +5109,424,50,0,NULL +5110,424,53,0,NULL +5111,425,3,9,NULL +5112,425,6,10,NULL +5113,425,25,3,NULL +5114,425,32,2,NULL +5115,425,34,1,NULL +5116,425,21,0,NULL +5117,425,51,0,NULL +5118,425,27,0,NULL +5119,425,50,0,NULL +5120,425,1,0,NULL +5121,425,4,0,NULL +5122,425,18,0,NULL +5123,425,53,0,NULL +5124,425,45,0,NULL +5125,426,34,9,NULL +5126,426,3,6,NULL +5127,426,1,4,NULL +5128,426,6,3,NULL +5129,426,32,2,NULL +5130,426,4,1,NULL +5131,426,21,0,NULL +5132,426,51,0,NULL +5133,426,50,0,NULL +5134,426,25,0,NULL +5135,426,53,0,NULL +5136,426,45,0,NULL +5137,426,18,0,NULL +5138,426,49,0,NULL +5139,426,27,0,NULL +5140,427,1,9,NULL +5141,427,6,6,NULL +5142,427,27,4,NULL +5143,427,34,4,NULL +5144,427,4,2,NULL +5145,427,25,0,NULL +5146,427,21,0,NULL +5147,427,51,0,NULL +5148,427,32,0,NULL +5149,427,18,0,NULL +5150,427,50,0,NULL +5151,427,3,0,NULL +5152,427,49,0,NULL +5153,427,53,0,NULL +5154,427,45,0,NULL +5155,428,6,9,NULL +5156,428,1,8,NULL +5157,428,27,4,NULL +5158,428,21,3,NULL +5159,428,3,1,NULL +5160,428,25,0,NULL +5161,428,18,0,NULL +5162,428,51,0,NULL +5163,428,32,0,NULL +5164,428,45,0,NULL +5165,428,53,0,NULL +5166,428,4,0,NULL +5167,428,34,0,NULL +5168,428,50,0,NULL +5169,428,49,0,NULL +5170,429,1,9,NULL +5171,429,32,8,NULL +5172,429,6,7,NULL +5173,429,34,1,NULL +5174,429,25,0,NULL +5175,429,21,0,NULL +5176,429,45,0,NULL +5177,429,4,0,NULL +5178,429,27,0,NULL +5179,429,18,0,NULL +5180,429,53,0,NULL +5181,429,50,0,NULL +5182,429,3,0,NULL +5183,429,51,0,NULL +5184,429,49,0,NULL +5185,430,1,15,NULL +5186,430,32,6,NULL +5187,430,6,3,NULL +5188,430,3,1,NULL +5189,430,25,0,NULL +5190,430,34,0,NULL +5191,430,21,0,NULL +5192,430,45,0,NULL +5193,430,50,0,NULL +5194,430,4,0,NULL +5195,430,27,0,NULL +5196,430,53,0,NULL +5197,430,49,0,NULL +5198,430,18,0,NULL +5199,430,51,0,NULL +5200,431,1,9,NULL +5201,431,34,9,NULL +5202,431,32,5,NULL +5203,431,6,2,NULL +5204,431,4,0,NULL +5205,431,25,0,NULL +5206,431,21,0,NULL +5207,431,27,0,NULL +5208,431,3,0,NULL +5209,431,53,0,NULL +5210,431,51,0,NULL +5211,431,45,0,NULL +5212,431,50,0,NULL +5213,431,26,0,NULL +5214,431,18,0,NULL +5215,432,32,9,NULL +5216,432,3,9,NULL +5217,432,1,4,NULL +5218,432,34,2,NULL +5219,432,4,1,NULL +5220,432,21,0,NULL +5221,432,27,0,NULL +5222,432,18,0,NULL +5223,432,25,0,NULL +5224,432,45,0,NULL +5225,432,51,0,NULL +5226,432,53,0,NULL +5227,432,49,0,NULL +5228,432,50,0,NULL +5229,432,6,0,NULL +5230,433,3,13,NULL +5231,433,32,8,NULL +5232,433,1,3,NULL +5233,433,21,1,NULL +5234,433,27,0,NULL +5235,433,51,0,NULL +5236,433,4,0,NULL +5237,433,34,0,NULL +5238,433,6,0,NULL +5239,433,49,0,NULL +5240,433,25,0,NULL +5241,433,53,0,NULL +5242,433,50,0,NULL +5243,433,26,0,NULL +5244,433,18,0,NULL +5245,434,3,15,NULL +5246,434,1,4,NULL +5247,434,6,3,NULL +5248,434,21,3,NULL +5249,434,25,0,NULL +5250,434,32,0,NULL +5251,434,18,0,NULL +5252,434,34,0,NULL +5253,434,53,0,NULL +5254,434,45,0,NULL +5255,434,51,0,NULL +5256,434,26,0,NULL +5257,435,3,9,NULL +5258,435,27,10,NULL +5259,435,25,3,NULL +5260,435,6,2,NULL +5261,435,21,1,NULL +5262,435,45,0,NULL +5263,435,18,0,NULL +5264,435,32,0,NULL +5265,435,1,0,NULL +5266,435,4,0,NULL +5267,435,34,0,NULL +5268,435,51,0,NULL +5269,435,53,0,NULL +5270,435,26,0,NULL +5271,436,1,9,NULL +5272,436,3,6,NULL +5273,436,32,4,NULL +5274,436,51,3,NULL +5275,436,4,2,NULL +5276,436,21,1,NULL +5277,436,50,0,NULL +5278,436,25,0,NULL +5279,436,27,0,NULL +5280,436,34,0,NULL +5281,436,6,0,NULL +5282,436,45,0,NULL +5283,436,53,0,NULL +5284,436,52,0,NULL +5285,436,54,0,NULL +5286,437,1,15,NULL +5287,437,4,4,NULL +5288,437,51,3,NULL +5289,437,27,2,NULL +5290,437,53,1,NULL +5291,437,32,0,NULL +5292,437,52,0,NULL +5293,437,21,0,NULL +5294,437,6,0,NULL +5295,437,25,0,NULL +5296,437,3,0,NULL +5297,437,54,0,NULL +5298,437,34,0,NULL +5299,437,50,0,NULL +5300,437,45,0,NULL +5301,438,6,13,NULL +5302,438,4,6,NULL +5303,438,3,3,NULL +5304,438,32,2,NULL +5305,438,53,1,NULL +5306,438,21,0,NULL +5307,438,34,0,NULL +5308,438,50,0,NULL +5309,438,25,0,NULL +5310,438,52,0,NULL +5311,438,27,0,NULL +5312,438,54,0,NULL +5313,438,1,0,NULL +5314,438,51,0,NULL +5315,438,45,0,NULL +5316,439,1,9,NULL +5317,439,6,6,NULL +5318,439,32,4,NULL +5319,439,4,3,NULL +5320,439,21,2,NULL +5321,439,27,1,NULL +5322,439,51,0,NULL +5323,439,52,0,NULL +5324,439,50,0,NULL +5325,439,25,0,NULL +5326,439,53,0,NULL +5327,439,34,0,NULL +5328,439,45,0,NULL +5329,439,54,0,NULL +5330,439,3,0,NULL +5331,440,1,9,NULL +5332,440,4,6,NULL +5333,440,32,6,NULL +5334,440,6,3,NULL +5335,440,3,1,NULL +5336,440,34,0,NULL +5337,440,27,0,NULL +5338,440,21,0,NULL +5339,440,45,0,NULL +5340,440,50,0,NULL +5341,440,25,0,NULL +5342,440,52,0,NULL +5343,440,51,0,NULL +5344,440,53,0,NULL +5345,440,54,0,NULL +5346,441,1,4.5,NULL +5347,441,53,3,NULL +5348,441,6,2.5,NULL +5349,441,3,1.5,NULL +5350,441,32,1,NULL +5351,441,45,0,NULL +5352,441,25,0,NULL +5353,441,51,0,NULL +5354,441,54,0,NULL +5355,441,34,0,NULL +5356,441,27,0,NULL +5357,441,4,0,NULL +5358,441,21,0,NULL +5359,441,50,0,NULL +5360,441,52,0,NULL +5361,442,34,9,NULL +5362,442,1,10,NULL +5363,442,32,4,NULL +5364,442,6,2,NULL +5365,442,53,0,NULL +5366,442,54,0,NULL +5367,442,50,0,NULL +5368,442,51,0,NULL +5369,442,25,0,NULL +5370,442,21,0,NULL +5371,442,4,0,NULL +5372,442,52,0,NULL +5373,442,27,0,NULL +5374,442,3,0,NULL +5375,442,45,0,NULL +5376,443,34,13,NULL +5377,443,32,6,NULL +5378,443,1,3,NULL +5379,443,3,2,NULL +5380,443,25,0,NULL +5381,443,6,0,NULL +5382,443,4,0,NULL +5383,443,50,0,NULL +5384,443,21,0,NULL +5385,443,27,0,NULL +5386,443,53,0,NULL +5387,443,51,0,NULL +5388,443,45,0,NULL +5389,443,54,0,NULL +5390,443,52,0,NULL +5391,444,3,12,NULL +5392,444,6,6,NULL +5393,444,32,5,NULL +5394,444,45,2,NULL +5395,444,34,0,NULL +5396,444,54,0,NULL +5397,444,1,0,NULL +5398,444,21,0,NULL +5399,444,53,0,NULL +5400,444,50,0,NULL +5401,444,4,0,NULL +5402,444,27,0,NULL +5403,444,52,0,NULL +5404,444,51,0,NULL +5405,444,25,0,NULL +5406,445,1,9,NULL +5407,445,4,6,NULL +5408,445,53,4,NULL +5409,445,32,3,NULL +5410,445,6,3,NULL +5411,445,34,0,NULL +5412,445,45,0,NULL +5413,445,27,0,NULL +5414,445,21,0,NULL +5415,445,51,0,NULL +5416,445,25,0,NULL +5417,445,52,0,NULL +5418,445,3,0,NULL +5419,445,50,0,NULL +5420,445,54,0,NULL +5421,446,1,15,NULL +5422,446,4,6,NULL +5423,446,32,3,NULL +5424,446,6,1,NULL +5425,446,27,0,NULL +5426,446,52,0,NULL +5427,446,25,0,NULL +5428,446,54,0,NULL +5429,446,51,0,NULL +5430,446,34,0,NULL +5431,446,45,0,NULL +5432,446,50,0,NULL +5433,446,3,0,NULL +5434,446,21,0,NULL +5435,446,53,0,NULL +5436,447,1,9,NULL +5437,447,34,9,NULL +5438,447,6,4,NULL +5439,447,21,3,NULL +5440,447,27,0,NULL +5441,447,50,0,NULL +5442,447,51,0,NULL +5443,447,54,0,NULL +5444,447,4,0,NULL +5445,447,53,0,NULL +5446,447,32,0,NULL +5447,447,52,0,NULL +5448,447,3,0,NULL +5449,447,45,0,NULL +5450,447,25,0,NULL +5451,448,1,15,NULL +5452,448,32,7,NULL +5453,448,34,2,NULL +5454,448,4,1,NULL +5455,448,27,0,NULL +5456,448,3,0,NULL +5457,448,50,0,NULL +5458,448,6,0,NULL +5459,448,45,0,NULL +5460,448,51,0,NULL +5461,448,25,0,NULL +5462,448,21,0,NULL +5463,448,52,0,NULL +5464,448,54,0,NULL +5465,448,53,0,NULL +5466,449,1,9,NULL +5467,449,6,6,NULL +5468,449,51,4,NULL +5469,449,53,3,NULL +5470,449,45,0,NULL +5471,449,54,0,NULL +5472,449,52,0,NULL +5473,449,21,0,NULL +5474,449,4,0,NULL +5475,449,34,0,NULL +5476,449,50,0,NULL +5477,449,32,0,NULL +5478,449,3,0,NULL +5479,449,27,0,NULL +5480,450,1,12,NULL +5481,450,6,8,NULL +5482,450,34,4,NULL +5483,450,51,1,NULL +5484,450,27,0,NULL +5485,450,52,0,NULL +5486,450,21,0,NULL +5487,450,4,0,NULL +5488,450,45,0,NULL +5489,450,32,0,NULL +5490,450,50,0,NULL +5491,450,3,0,NULL +5492,450,53,0,NULL +5493,450,54,0,NULL +5494,451,1,15,NULL +5495,451,53,4,NULL +5496,451,6,3,NULL +5497,451,32,2,NULL +5498,451,34,1,NULL +5499,451,4,0,NULL +5500,451,51,0,NULL +5501,451,27,0,NULL +5502,451,54,0,NULL +5503,451,3,0,NULL +5504,451,52,0,NULL +5505,451,45,0,NULL +5506,451,21,0,NULL +5507,451,50,0,NULL +5508,452,34,9,NULL +5509,452,1,4,NULL +5510,452,3,3,NULL +5511,452,6,2,NULL +5512,452,21,1,NULL +5513,452,4,0,NULL +5514,452,53,0,NULL +5515,452,25,0,NULL +5516,452,32,0,NULL +5517,452,55,0,NULL +5518,452,50,0,NULL +5519,452,54,0,NULL +5520,452,27,0,NULL +5521,452,51,0,NULL +5522,452,45,0,NULL +5523,453,1,15,NULL +5524,453,6,4,NULL +5525,453,3,3,NULL +5526,453,21,2,NULL +5527,453,55,1,NULL +5528,453,27,0,NULL +5529,453,25,0,NULL +5530,453,34,0,NULL +5531,453,4,0,NULL +5532,453,32,0,NULL +5533,453,51,0,NULL +5534,453,53,0,NULL +5535,453,50,0,NULL +5536,453,54,0,NULL +5537,453,45,0,NULL +5538,454,4,13,NULL +5539,454,34,6,NULL +5540,454,6,3,NULL +5541,454,3,3,NULL +5542,454,25,0,NULL +5543,454,27,0,NULL +5544,454,21,0,NULL +5545,454,55,0,NULL +5546,454,51,0,NULL +5547,454,53,0,NULL +5548,454,45,0,NULL +5549,454,54,0,NULL +5550,454,1,0,NULL +5551,454,32,0,NULL +5552,454,50,0,NULL +5553,455,6,13,NULL +5554,455,4,6,NULL +5555,455,3,3,NULL +5556,455,1,2,NULL +5557,455,21,1,NULL +5558,455,27,0,NULL +5559,455,51,0,NULL +5560,455,54,0,NULL +5561,455,32,0,NULL +5562,455,34,0,NULL +5563,455,25,0,NULL +5564,455,53,0,NULL +5565,455,45,0,NULL +5566,455,55,0,NULL +5567,455,50,0,NULL +5568,456,3,9,NULL +5569,456,34,6,NULL +5570,456,4,4,NULL +5571,456,6,3,NULL +5572,456,25,2,NULL +5573,456,51,1,NULL +5574,456,21,0,NULL +5575,456,53,0,NULL +5576,456,32,0,NULL +5577,456,27,0,NULL +5578,456,54,0,NULL +5579,456,1,0,NULL +5580,456,45,0,NULL +5581,456,50,0,NULL +5582,456,55,0,NULL +5583,457,4,13,NULL +5584,457,6,6,NULL +5585,457,34,3,NULL +5586,457,3,3,NULL +5587,457,53,0,NULL +5588,457,32,0,NULL +5589,457,55,0,NULL +5590,457,21,0,NULL +5591,457,25,0,NULL +5592,457,27,0,NULL +5593,457,1,0,NULL +5594,457,51,0,NULL +5595,457,45,0,NULL +5596,457,54,0,NULL +5597,457,50,0,NULL +5598,458,25,9,NULL +5599,458,3,8,NULL +5600,458,1,4,NULL +5601,458,34,3,NULL +5602,458,32,1,NULL +5603,458,21,0,NULL +5604,458,4,0,NULL +5605,458,53,0,NULL +5606,458,27,0,NULL +5607,458,51,0,NULL +5608,458,55,0,NULL +5609,458,6,0,NULL +5610,458,54,0,NULL +5611,458,45,0,NULL +5612,459,6,13,NULL +5613,459,4,8,NULL +5614,459,3,3,NULL +5615,459,1,1,NULL +5616,459,21,0,NULL +5617,459,25,0,NULL +5618,459,54,0,NULL +5619,459,51,0,NULL +5620,459,34,0,NULL +5621,459,53,0,NULL +5622,459,32,0,NULL +5623,459,27,0,NULL +5624,459,55,0,NULL +5625,459,45,0,NULL +5626,459,50,0,NULL +5627,460,4,9,NULL +5628,460,34,6,NULL +5629,460,6,6,NULL +5630,460,32,3,NULL +5631,460,1,1,NULL +5632,460,51,0,NULL +5633,460,27,0,NULL +5634,460,3,0,NULL +5635,460,25,0,NULL +5636,460,21,0,NULL +5637,460,55,0,NULL +5638,460,54,0,NULL +5639,460,45,0,NULL +5640,460,53,0,NULL +5641,460,52,0,NULL +5642,460,50,0,NULL +5643,461,6,9,NULL +5644,461,51,6,NULL +5645,461,34,4,NULL +5646,461,4,3,NULL +5647,461,1,2,NULL +5648,461,3,1,NULL +5649,461,21,0,NULL +5650,461,27,0,NULL +5651,461,55,0,NULL +5652,461,25,0,NULL +5653,461,45,0,NULL +5654,461,53,0,NULL +5655,461,52,0,NULL +5656,461,32,0,NULL +5657,461,50,0,NULL +5658,461,54,0,NULL +5659,462,4,12,NULL +5660,462,6,6,NULL +5661,462,34,4,NULL +5662,462,32,2,NULL +5663,462,1,1,NULL +5664,462,27,0,NULL +5665,462,3,0,NULL +5666,462,45,0,NULL +5667,462,52,0,NULL +5668,462,21,0,NULL +5669,462,54,0,NULL +5670,462,51,0,NULL +5671,462,55,0,NULL +5672,462,25,0,NULL +5673,462,53,0,NULL +5674,462,50,0,NULL +5675,463,6,15,NULL +5676,463,1,4,NULL +5677,463,53,3,NULL +5678,463,51,2,NULL +5679,463,25,1,NULL +5680,463,52,0,NULL +5681,463,21,0,NULL +5682,463,34,0,NULL +5683,463,27,0,NULL +5684,463,45,0,NULL +5685,463,55,0,NULL +5686,463,3,0,NULL +5687,463,54,0,NULL +5688,463,4,0,NULL +5689,463,32,0,NULL +5690,463,50,0,NULL +5691,464,34,9,NULL +5692,464,6,9,NULL +5693,464,4,4,NULL +5694,464,32,2,NULL +5695,464,53,1,NULL +5696,464,27,0,NULL +5697,464,21,0,NULL +5698,464,3,0,NULL +5699,464,55,0,NULL +5700,464,45,0,NULL +5701,464,25,0,NULL +5702,464,54,0,NULL +5703,464,1,0,NULL +5704,464,51,0,NULL +5705,464,52,0,NULL +5706,464,50,0,NULL +5707,465,34,9,NULL +5708,465,4,6,NULL +5709,465,32,4,NULL +5710,465,51,3,NULL +5711,465,53,3,NULL +5712,465,54,0,NULL +5713,465,6,0,NULL +5714,465,21,0,NULL +5715,465,55,0,NULL +5716,465,3,0,NULL +5717,465,52,0,NULL +5718,465,27,0,NULL +5719,465,25,0,NULL +5720,465,45,0,NULL +5721,465,1,0,NULL +5722,465,50,0,NULL +5723,466,34,13,NULL +5724,466,51,6,NULL +5725,466,53,3,NULL +5726,466,3,2,NULL +5727,466,4,1,NULL +5728,466,25,0,NULL +5729,466,21,0,NULL +5730,466,27,0,NULL +5731,466,1,0,NULL +5732,466,50,0,NULL +5733,466,32,0,NULL +5734,466,6,0,NULL +5735,466,45,0,NULL +5736,466,54,0,NULL +5737,467,4,13,NULL +5738,467,3,8,NULL +5739,467,1,4,NULL +5740,467,25,0,NULL +5741,467,32,0,NULL +5742,467,54,0,NULL +5743,467,51,0,NULL +5744,467,37,0,NULL +5745,467,55,0,NULL +5746,467,56,0,NULL +5747,467,6,0,NULL +5748,467,27,0,NULL +5749,467,53,0,NULL +5750,467,34,0,NULL +5751,467,45,0,NULL +5752,467,21,0,NULL +5753,467,57,0,NULL +5754,468,4,9,NULL +5755,468,1,6,NULL +5756,468,32,4,NULL +5757,468,25,3,NULL +5758,468,54,2,NULL +5759,468,6,1,NULL +5760,468,37,0,NULL +5761,468,45,0,NULL +5762,468,21,0,NULL +5763,468,34,0,NULL +5764,468,3,0,NULL +5765,468,56,0,NULL +5766,468,27,0,NULL +5767,468,51,0,NULL +5768,468,55,0,NULL +5769,468,53,0,NULL +5770,468,57,0,NULL +5771,469,1,10,NULL +5772,469,3,6,NULL +5773,469,34,4,NULL +5774,469,25,3,NULL +5775,469,32,2,NULL +5776,469,37,0,NULL +5777,469,6,0,NULL +5778,469,27,0,NULL +5779,469,51,0,NULL +5780,469,21,0,NULL +5781,469,57,0,NULL +5782,469,45,0,NULL +5783,469,55,0,NULL +5784,469,4,0,NULL +5785,469,54,0,NULL +5786,469,53,0,NULL +5787,469,56,0,NULL +5788,470,6,15,NULL +5789,470,25,4,NULL +5790,470,45,3,NULL +5791,470,54,2,NULL +5792,470,53,0,NULL +5793,470,4,0,NULL +5794,470,51,0,NULL +5795,471,1,9,NULL +5796,471,3,6,NULL +5797,471,27,4,NULL +5798,471,32,3,NULL +5799,471,34,2,NULL +5800,471,56,1,NULL +5801,471,21,0,NULL +5802,471,37,0,NULL +5803,471,4,0,NULL +5804,471,45,0,NULL +5805,471,51,0,NULL +5806,471,25,0,NULL +5807,471,53,0,NULL +5808,471,54,0,NULL +5809,471,6,0,NULL +5810,471,57,0,NULL +5811,471,55,0,NULL +5812,472,34,9,NULL +5813,472,6,6,NULL +5814,472,51,4,NULL +5815,472,32,5,NULL +5816,472,3,1,NULL +5817,472,4,0,NULL +5818,472,25,0,NULL +5819,472,21,0,NULL +5820,472,1,0,NULL +5821,472,54,0,NULL +5822,472,27,0,NULL +5823,472,55,0,NULL +5824,472,37,0,NULL +5825,472,53,0,NULL +5826,472,45,0,NULL +5827,472,57,0,NULL +5828,472,56,0,NULL +5829,473,1,9,NULL +5830,473,27,7,NULL +5831,473,6,4,NULL +5832,473,3,5,NULL +5833,473,37,0,NULL +5834,473,21,0,NULL +5835,473,25,0,NULL +5836,473,4,0,NULL +5837,473,56,0,NULL +5838,473,32,0,NULL +5839,473,51,0,NULL +5840,473,54,0,NULL +5841,473,57,0,NULL +5842,473,34,0,NULL +5843,473,45,0,NULL +5844,473,55,0,NULL +5845,474,34,15,NULL +5846,474,1,4,NULL +5847,474,32,3,NULL +5848,474,21,2,NULL +5849,474,51,1,NULL +5850,474,3,0,NULL +5851,474,6,0,NULL +5852,474,27,0,NULL +5853,474,37,0,NULL +5854,474,25,0,NULL +5855,474,4,0,NULL +5856,474,54,0,NULL +5857,474,57,0,NULL +5858,474,45,0,NULL +5859,474,55,0,NULL +5860,474,56,0,NULL +5861,475,6,9,NULL +5862,475,34,6,NULL +5863,475,3,6,NULL +5864,475,1,3,NULL +5865,475,21,1,NULL +5866,475,25,0,NULL +5867,475,51,0,NULL +5868,475,54,0,NULL +5869,475,45,0,NULL +5870,475,37,0,NULL +5871,475,55,0,NULL +5872,475,32,0,NULL +5873,475,4,0,NULL +5874,475,56,0,NULL +5875,475,53,0,NULL +5876,475,27,0,NULL +5877,475,57,0,NULL +5878,476,1,9,NULL +5879,476,6,10,NULL +5880,476,32,3,NULL +5881,476,3,2,NULL +5882,476,4,1,NULL +5883,476,51,0,NULL +5884,476,25,0,NULL +5885,476,21,0,NULL +5886,476,37,0,NULL +5887,476,27,0,NULL +5888,476,53,0,NULL +5889,476,34,0,NULL +5890,476,57,0,NULL +5891,476,45,0,NULL +5892,476,56,0,NULL +5893,476,54,0,NULL +5894,476,55,0,NULL +5895,477,4,15,NULL +5896,477,6,7,NULL +5897,477,3,2,NULL +5898,477,25,1,NULL +5899,477,1,0,NULL +5900,477,51,0,NULL +5901,477,54,0,NULL +5902,477,32,0,NULL +5903,477,21,0,NULL +5904,477,27,0,NULL +5905,477,53,0,NULL +5906,477,34,0,NULL +5907,477,37,0,NULL +5908,477,45,0,NULL +5909,477,55,0,NULL +5910,477,57,0,NULL +5911,478,6,9,NULL +5912,478,4,6,NULL +5913,478,3,4,NULL +5914,478,25,3,NULL +5915,478,51,2,NULL +5916,478,21,1,NULL +5917,478,57,0,NULL +5918,478,32,0,NULL +5919,478,53,0,NULL +5920,478,56,0,NULL +5921,478,1,0,NULL +5922,478,27,0,NULL +5923,478,37,0,NULL +5924,478,34,0,NULL +5925,478,54,0,NULL +5926,478,45,0,NULL +5927,478,55,0,NULL +5928,479,32,9,NULL +5929,479,3,6,NULL +5930,479,27,4,NULL +5931,479,6,3,NULL +5932,479,1,2,NULL +5933,479,21,1,NULL +5934,479,56,0,NULL +5935,479,4,0,NULL +5936,479,25,0,NULL +5937,479,34,0,NULL +5938,479,55,0,NULL +5939,479,54,0,NULL +5940,479,53,0,NULL +5941,479,57,0,NULL +5942,479,37,0,NULL +5943,479,51,0,NULL +5944,479,45,0,NULL +5945,480,3,9,NULL +5946,480,4,6,NULL +5947,480,1,4,NULL +5948,480,34,5,NULL +5949,480,32,1,NULL +5950,480,25,0,NULL +5951,480,51,0,NULL +5952,480,54,0,NULL +5953,480,21,0,NULL +5954,480,27,0,NULL +5955,480,45,0,NULL +5956,480,53,0,NULL +5957,480,37,0,NULL +5958,480,57,0,NULL +5959,480,6,0,NULL +5960,480,56,0,NULL +5961,480,55,0,NULL +5962,481,4,9,NULL +5963,481,6,10,NULL +5964,481,1,3,NULL +5965,481,25,2,NULL +5966,481,27,1,NULL +5967,481,32,0,NULL +5968,481,3,0,NULL +5969,481,54,0,NULL +5970,481,51,0,NULL +5971,481,56,0,NULL +5972,481,21,0,NULL +5973,481,57,0,NULL +5974,481,45,0,NULL +5975,481,34,0,NULL +5976,481,53,0,NULL +5977,481,37,0,NULL +5978,481,55,0,NULL +5979,482,25,9,NULL +5980,482,1,6,NULL +5981,482,27,4,NULL +5982,482,4,3,NULL +5983,482,3,3,NULL +5984,482,21,0,NULL +5985,482,51,0,NULL +5986,482,37,0,NULL +5987,482,54,0,NULL +5988,482,55,0,NULL +5989,482,53,0,NULL +5990,482,32,0,NULL +5991,482,6,0,NULL +5992,482,34,0,NULL +5993,482,57,0,NULL +5994,482,45,0,NULL +5995,482,56,0,NULL +5996,483,3,15,NULL +5997,483,34,4,NULL +5998,483,51,3,NULL +5999,483,25,2,NULL +6000,483,55,1,NULL +6001,483,56,0,NULL +6002,483,4,0,NULL +6003,483,57,0,NULL +6004,483,6,0,NULL +6005,483,27,0,NULL +6006,483,54,0,NULL +6007,483,21,0,NULL +6008,483,45,0,NULL +6009,483,32,0,NULL +6010,483,1,0,NULL +6011,483,37,0,NULL +6012,484,3,15,NULL +6013,484,21,4,NULL +6014,484,57,3,NULL +6015,484,32,2,NULL +6016,484,27,1,NULL +6017,484,1,0,NULL +6018,484,56,0,NULL +6019,484,55,0,NULL +6020,484,34,0,NULL +6021,484,25,0,NULL +6022,484,51,0,NULL +6023,484,6,0,NULL +6024,484,4,0,NULL +6025,484,54,0,NULL +6026,484,45,0,NULL +6027,484,37,0,NULL +6028,485,34,9,NULL +6029,485,3,9,NULL +6030,485,4,6,NULL +6031,485,32,1,NULL +6032,485,21,0,NULL +6033,485,51,0,NULL +6034,485,1,0,NULL +6035,485,54,0,NULL +6036,485,25,0,NULL +6037,485,6,0,NULL +6038,485,55,0,NULL +6039,485,56,0,NULL +6040,485,27,0,NULL +6041,485,57,0,NULL +6042,485,45,0,NULL +6043,485,37,0,NULL +6044,486,34,12,NULL +6045,486,21,6,NULL +6046,486,3,4,NULL +6047,486,6,2,NULL +6048,486,1,1,NULL +6049,486,4,0,NULL +6050,486,57,0,NULL +6051,486,55,0,NULL +6052,486,54,0,NULL +6053,486,27,0,NULL +6054,486,37,0,NULL +6055,486,25,0,NULL +6056,486,45,0,NULL +6057,486,51,0,NULL +6058,486,56,0,NULL +6059,486,53,0,NULL +6060,486,32,0,NULL +6061,487,3,9,NULL +6062,487,27,6,NULL +6063,487,32,6,NULL +6064,487,6,3,NULL +6065,487,25,1,NULL +6066,487,1,0,NULL +6067,487,51,0,NULL +6068,487,57,0,NULL +6069,487,45,0,NULL +6070,487,34,0,NULL +6071,487,56,0,NULL +6072,487,4,0,NULL +6073,487,21,0,NULL +6074,487,37,0,NULL +6075,487,54,0,NULL +6076,487,55,0,NULL +6077,487,53,0,NULL +6078,488,6,12,NULL +6079,488,3,6,NULL +6080,488,27,4,NULL +6081,488,25,2,NULL +6082,488,57,1,NULL +6083,488,55,0,NULL +6084,488,34,0,NULL +6085,488,1,0,NULL +6086,488,51,0,NULL +6087,488,4,0,NULL +6088,488,32,0,NULL +6089,488,21,0,NULL +6090,488,56,0,NULL +6091,488,45,0,NULL +6092,488,54,0,NULL +6093,488,37,0,NULL +6094,488,53,0,NULL +6095,489,6,9,NULL +6096,489,27,6,NULL +6097,489,1,4,NULL +6098,489,3,3,NULL +6099,489,32,3,NULL +6100,489,51,0,NULL +6101,489,4,0,NULL +6102,489,56,0,NULL +6103,489,55,0,NULL +6104,489,57,0,NULL +6105,489,37,0,NULL +6106,489,25,0,NULL +6107,489,34,0,NULL +6108,489,21,0,NULL +6109,489,45,0,NULL +6110,489,54,0,NULL +6111,489,53,0,NULL +6112,490,4,12,NULL +6113,490,1,6,NULL +6114,490,34,4,NULL +6115,490,6,2,NULL +6116,490,32,1,NULL +6117,490,51,0,NULL +6118,490,3,0,NULL +6119,490,55,0,NULL +6120,490,25,0,NULL +6121,490,21,0,NULL +6122,490,27,0,NULL +6123,490,37,0,NULL +6124,490,56,0,NULL +6125,490,57,0,NULL +6126,490,53,0,NULL +6127,490,54,0,NULL +6128,490,45,0,NULL +6129,491,1,9,NULL +6130,491,3,6,NULL +6131,491,27,4,NULL +6132,491,25,3,NULL +6133,491,34,2,NULL +6134,491,54,1,NULL +6135,491,37,0,NULL +6136,491,45,0,NULL +6137,491,4,0,NULL +6138,491,21,0,NULL +6139,491,55,0,NULL +6140,491,51,0,NULL +6141,491,56,0,NULL +6142,491,32,0,NULL +6143,491,6,0,NULL +6144,491,53,0,NULL +6145,491,57,0,NULL +6146,492,34,12,NULL +6147,492,4,6,NULL +6148,492,27,4,NULL +6149,492,25,2,NULL +6150,492,1,1,NULL +6151,492,32,0,NULL +6152,492,45,0,NULL +6153,492,51,0,NULL +6154,492,6,0,NULL +6155,492,3,0,NULL +6156,492,21,0,NULL +6157,492,55,0,NULL +6158,492,57,0,NULL +6159,492,54,0,NULL +6160,492,37,0,NULL +6161,492,56,0,NULL +6162,492,53,0,NULL +6163,493,27,9,NULL +6164,493,4,6,NULL +6165,493,34,4,NULL +6166,493,3,5,NULL +6167,493,1,1,NULL +6168,493,32,0,NULL +6169,493,6,0,NULL +6170,493,45,0,NULL +6171,493,37,0,NULL +6172,493,51,0,NULL +6173,493,54,0,NULL +6174,493,21,0,NULL +6175,493,57,0,NULL +6176,493,25,0,NULL +6177,493,55,0,NULL +6178,493,53,0,NULL +6179,494,4,9,NULL +6180,494,34,9,NULL +6181,494,3,4,NULL +6182,494,32,2,NULL +6183,494,57,1,NULL +6184,494,21,0,NULL +6185,494,55,0,NULL +6186,494,25,0,NULL +6187,494,54,0,NULL +6188,494,51,0,NULL +6189,494,1,0,NULL +6190,494,45,0,NULL +6191,494,27,0,NULL +6192,494,37,0,NULL +6193,494,6,0,NULL +6194,494,53,0,NULL +6195,494,56,0,NULL +6196,495,4,9,NULL +6197,495,3,10,NULL +6198,495,32,3,NULL +6199,495,6,2,NULL +6200,495,34,1,NULL +6201,495,1,0,NULL +6202,495,51,0,NULL +6203,495,45,0,NULL +6204,495,53,0,NULL +6205,495,37,0,NULL +6206,495,27,0,NULL +6207,495,21,0,NULL +6208,495,25,0,NULL +6209,495,57,0,NULL +6210,495,54,0,NULL +6211,495,55,0,NULL +6212,495,56,0,NULL +6213,496,27,9,NULL +6214,496,1,6,NULL +6215,496,6,4,NULL +6216,496,51,3,NULL +6217,496,34,2,NULL +6218,496,32,1,NULL +6219,496,37,0,NULL +6220,496,55,0,NULL +6221,496,3,0,NULL +6222,496,25,0,NULL +6223,496,4,0,NULL +6224,496,54,0,NULL +6225,496,45,0,NULL +6226,496,57,0,NULL +6227,496,21,0,NULL +6228,496,56,0,NULL +6229,496,53,0,NULL +6230,497,3,9,NULL +6231,497,4,6,NULL +6232,497,51,4,NULL +6233,497,32,3,NULL +6234,497,34,2,NULL +6235,497,27,1,NULL +6236,497,1,0,NULL +6237,497,6,0,NULL +6238,497,56,0,NULL +6239,497,21,0,NULL +6240,497,25,0,NULL +6241,497,57,0,NULL +6242,497,53,0,NULL +6243,497,55,0,NULL +6244,497,45,0,NULL +6245,497,54,0,NULL +6246,497,37,0,NULL +6247,498,3,9,NULL +6248,498,34,6,NULL +6249,498,56,4,NULL +6250,498,25,3,NULL +6251,498,51,2,NULL +6252,498,1,1,NULL +6253,498,6,0,NULL +6254,498,57,0,NULL +6255,498,27,0,NULL +6256,498,21,0,NULL +6257,498,54,0,NULL +6258,498,32,0,NULL +6259,498,4,0,NULL +6260,498,58,0,NULL +6261,498,45,0,NULL +6262,499,4,9,NULL +6263,499,32,6,NULL +6264,499,3,4,NULL +6265,499,27,3,NULL +6266,499,1,2,NULL +6267,499,21,1,NULL +6268,499,54,0,NULL +6269,499,34,0,NULL +6270,499,56,0,NULL +6271,499,25,0,NULL +6272,499,51,0,NULL +6273,499,6,0,NULL +6274,499,57,0,NULL +6275,499,58,0,NULL +6276,499,45,0,NULL +6277,500,4,9,NULL +6278,500,27,10,NULL +6279,500,34,3,NULL +6280,500,3,2,NULL +6281,500,21,1,NULL +6282,500,25,0,NULL +6283,500,56,0,NULL +6284,500,57,0,NULL +6285,500,1,0,NULL +6286,500,32,0,NULL +6287,500,58,0,NULL +6288,500,51,0,NULL +6289,500,6,0,NULL +6290,500,45,0,NULL +6291,500,54,0,NULL +6292,501,34,9,NULL +6293,501,21,6,NULL +6294,501,56,4,NULL +6295,501,1,3,NULL +6296,501,6,2,NULL +6297,501,27,1,NULL +6298,501,25,0,NULL +6299,501,4,0,NULL +6300,501,57,0,NULL +6301,501,51,0,NULL +6302,501,3,0,NULL +6303,501,45,0,NULL +6304,501,32,0,NULL +6305,501,54,0,NULL +6306,501,58,0,NULL +6307,502,27,9,NULL +6308,502,3,10,NULL +6309,502,4,3,NULL +6310,502,25,2,NULL +6311,502,6,1,NULL +6312,502,56,0,NULL +6313,502,32,0,NULL +6314,502,54,0,NULL +6315,502,1,0,NULL +6316,502,21,0,NULL +6317,502,51,0,NULL +6318,502,34,0,NULL +6319,502,57,0,NULL +6320,502,58,0,NULL +6321,502,45,0,NULL +6322,503,3,9,NULL +6323,503,27,6,NULL +6324,503,34,4,NULL +6325,503,21,3,NULL +6326,503,6,2,NULL +6327,503,56,1,NULL +6328,503,32,0,NULL +6329,503,54,0,NULL +6330,503,4,0,NULL +6331,503,51,0,NULL +6332,503,25,0,NULL +6333,503,1,0,NULL +6334,503,45,0,NULL +6335,503,58,0,NULL +6336,503,57,0,NULL +6337,504,3,10,NULL +6338,504,27,10,NULL +6339,504,34,3,NULL +6340,504,4,2,NULL +6341,504,1,0,NULL +6342,504,6,0,NULL +6343,504,21,0,NULL +6344,504,25,0,NULL +6345,504,56,0,NULL +6346,504,45,0,NULL +6347,504,54,0,NULL +6348,504,51,0,NULL +6349,504,32,0,NULL +6350,504,58,0,NULL +6351,504,57,0,NULL +6352,505,3,13,NULL +6353,505,34,6,NULL +6354,505,25,5,NULL +6355,505,1,1,NULL +6356,505,21,0,NULL +6357,505,6,0,NULL +6358,505,56,0,NULL +6359,505,4,0,NULL +6360,505,27,0,NULL +6361,505,54,0,NULL +6362,505,32,0,NULL +6363,505,51,0,NULL +6364,505,45,0,NULL +6365,505,57,0,NULL +6366,506,27,9,NULL +6367,506,3,10,NULL +6368,506,34,3,NULL +6369,506,51,2,NULL +6370,506,6,1,NULL +6371,506,32,0,NULL +6372,506,21,0,NULL +6373,506,25,0,NULL +6374,506,1,0,NULL +6375,506,54,0,NULL +6376,506,57,0,NULL +6377,506,4,0,NULL +6378,506,45,0,NULL +6379,506,56,0,NULL +6380,507,4,9,NULL +6381,507,3,10,NULL +6382,507,27,3,NULL +6383,507,34,2,NULL +6384,507,32,1,NULL +6385,507,1,0,NULL +6386,507,6,0,NULL +6387,507,56,0,NULL +6388,507,54,0,NULL +6389,507,21,0,NULL +6390,507,51,0,NULL +6391,507,25,0,NULL +6392,507,45,0,NULL +6393,507,57,0,NULL +6394,508,34,9,NULL +6395,508,4,6,NULL +6396,508,27,4,NULL +6397,508,3,3,NULL +6398,508,25,2,NULL +6399,508,1,1,NULL +6400,508,6,0,NULL +6401,508,32,0,NULL +6402,508,54,0,NULL +6403,508,51,0,NULL +6404,508,45,0,NULL +6405,508,21,0,NULL +6406,508,57,0,NULL +6407,508,56,0,NULL +6408,509,34,9,NULL +6409,509,3,10,NULL +6410,509,32,3,NULL +6411,509,56,2,NULL +6412,509,27,1,NULL +6413,509,1,0,NULL +6414,509,6,0,NULL +6415,509,4,0,NULL +6416,509,45,0,NULL +6417,509,25,0,NULL +6418,509,54,0,NULL +6419,509,21,0,NULL +6420,509,51,0,NULL +6421,509,57,0,NULL +6422,510,3,15,NULL +6423,510,27,4,NULL +6424,510,1,3,NULL +6425,510,6,2,NULL +6426,510,34,1,NULL +6427,510,25,0,NULL +6428,510,56,0,NULL +6429,510,32,0,NULL +6430,510,21,0,NULL +6431,510,57,0,NULL +6432,510,4,0,NULL +6433,510,51,0,NULL +6434,510,45,0,NULL +6435,510,54,0,NULL +6436,511,3,15,NULL +6437,511,27,6,NULL +6438,511,32,4,NULL +6439,511,4,0,NULL +6440,511,54,0,NULL +6441,511,56,0,NULL +6442,511,6,0,NULL +6443,511,1,0,NULL +6444,511,25,0,NULL +6445,511,21,0,NULL +6446,511,51,0,NULL +6447,511,34,0,NULL +6448,511,45,0,NULL +6449,511,57,0,NULL +13705,512,204,0,NULL +13704,512,4,0,NULL +13703,512,25,0,NULL +13702,512,59,0,NULL +13701,512,6,0,NULL +13700,512,57,0,NULL +13699,512,3,0,NULL +13698,512,21,0,NULL +13697,512,58,0,NULL +13696,512,56,1,NULL +13695,512,1,4,NULL +13688,513,3,0,NULL +13687,513,57,0,NULL +13686,513,58,0,NULL +13685,513,56,0,NULL +13684,513,4,0,NULL +13683,513,1,0,NULL +13682,513,21,0,NULL +13681,513,6,3,NULL +13680,513,25,3,NULL +13679,513,32,4,NULL +13678,513,27,15,NULL +6480,514,6,15,NULL +6481,514,25,4,NULL +6482,514,32,5,NULL +6483,514,34,1,NULL +6484,514,59,0,NULL +6485,514,3,0,NULL +6486,514,1,0,NULL +6487,514,21,0,NULL +6488,514,56,0,NULL +6489,514,4,0,NULL +6490,514,54,0,NULL +6491,514,27,0,NULL +6492,514,58,0,NULL +6493,514,57,0,NULL +6494,514,60,0,NULL +13717,515,1,0,NULL +13716,515,57,0,NULL +13715,515,21,0,NULL +13714,515,204,0,NULL +13713,515,58,0,NULL +13712,515,25,1,NULL +13711,515,27,2,NULL +13710,515,32,3,NULL +13709,515,3,4,NULL +13708,515,6,15,NULL +13734,516,3,0,NULL +13733,516,204,0,NULL +13732,516,54,0,NULL +13731,516,1,0,NULL +13730,516,58,0,NULL +13729,516,56,0,NULL +13728,516,4,0,NULL +13727,516,21,0,NULL +13726,516,25,3,NULL +13725,516,6,3,NULL +13724,516,32,10,NULL +13723,516,27,9,NULL +13749,517,3,0,NULL +13748,517,59,0,NULL +13747,517,58,0,NULL +13746,517,56,0,NULL +13745,517,54,0,NULL +13744,517,1,1,NULL +13743,517,21,2,NULL +13742,517,32,3,NULL +13741,517,25,4,NULL +13740,517,27,6,NULL +13739,517,6,9,NULL +13765,518,54,0,NULL +13764,518,25,0,NULL +13763,518,4,0,NULL +13762,518,204,0,NULL +13761,518,21,1,NULL +13760,518,27,2,NULL +13759,518,1,3,NULL +13758,518,32,4,NULL +13757,518,3,6,NULL +13756,518,6,9,NULL +13782,519,56,0,NULL +13781,519,51,0,NULL +13780,519,58,0,NULL +13779,519,21,0,NULL +13778,519,32,0,NULL +13777,519,1,0,NULL +13776,519,59,0,NULL +13775,519,27,0,NULL +13774,519,25,2,NULL +13773,519,3,4,NULL +13772,519,6,6,NULL +13771,519,4,13,NULL +13796,520,21,0,NULL +13795,520,57,0,NULL +13794,520,58,0,NULL +13793,520,32,0,NULL +13792,520,27,1,NULL +13791,520,6,2,NULL +13790,520,1,3,NULL +13789,520,25,4,NULL +13788,520,4,6,NULL +13787,520,3,9,NULL +13828,521,56,0,NULL +13827,521,4,0,NULL +13826,521,32,0,NULL +13825,521,59,0,NULL +13824,521,204,0,NULL +13823,521,58,0,NULL +13822,521,25,0,NULL +13821,521,21,1,NULL +13820,521,1,2,NULL +6604,522,3,11,NULL +6605,522,6,9,NULL +6606,522,27,4,NULL +6607,522,4,1,NULL +6608,522,25,0,NULL +6609,522,1,0,NULL +6610,522,34,0,NULL +6611,522,57,0,NULL +6612,522,21,0,NULL +6613,522,58,0,NULL +6614,522,54,0,NULL +6615,522,32,0,NULL +6616,522,59,0,NULL +6617,522,56,0,NULL +6618,522,60,0,NULL +13841,523,4,0,NULL +13840,523,59,0,NULL +13839,523,58,0,NULL +13838,523,25,0,NULL +13837,523,32,0,NULL +13836,523,21,1,NULL +13835,523,204,3,NULL +13834,523,27,6,NULL +13833,523,6,6,NULL +13832,523,3,9,NULL +13858,524,59,0,NULL +13857,524,27,0,NULL +13856,524,4,0,NULL +13855,524,21,0,NULL +13854,524,51,0,NULL +13853,524,54,0,NULL +13852,524,56,0,NULL +13851,524,25,1,NULL +13850,524,32,2,NULL +13849,524,204,3,NULL +13848,524,3,4,NULL +13847,524,6,15,NULL +13876,525,21,0,NULL +13875,525,4,0,NULL +13874,525,62,0,NULL +13873,525,27,0,NULL +13872,525,51,0,NULL +13871,525,32,0,NULL +13870,525,58,0,NULL +13869,525,56,0,NULL +13868,525,182,0,NULL +13867,525,1,1,NULL +13866,525,25,2,NULL +13865,525,6,9,NULL +13864,525,3,13,NULL +13891,526,57,0,NULL +13890,526,3,0,NULL +13889,526,21,0,NULL +13888,526,182,0,NULL +13887,526,56,0,NULL +13886,526,1,1,NULL +13885,526,54,2,NULL +13884,526,58,3,NULL +13883,526,25,4,NULL +13882,526,4,6,NULL +13881,526,6,9,NULL +13400,527,3,0,NULL +13399,527,63,0,NULL +13398,527,27,0,NULL +13397,527,58,0,NULL +13396,527,54,0,NULL +13395,527,59,0,NULL +13394,527,56,0,NULL +13393,527,6,0,NULL +13392,527,1,3,NULL +13391,527,25,4,NULL +13390,527,34,6,NULL +13389,527,32,9,NULL +13415,528,1,0,NULL +13414,528,3,0,NULL +13413,528,21,0,NULL +13412,528,27,0,NULL +13411,528,54,0,NULL +13410,528,25,1,NULL +13409,528,58,2,NULL +13408,528,32,3,NULL +13407,528,34,4,NULL +13406,528,56,6,NULL +13405,528,6,9,NULL +13435,529,55,0,NULL +13434,529,4,0,NULL +13433,529,60,0,NULL +13432,529,6,0,NULL +13431,529,59,0,NULL +13430,529,63,0,NULL +13429,529,1,0,NULL +13428,529,21,0,NULL +13427,529,54,0,NULL +13426,529,27,2,NULL +13425,529,3,3,NULL +13424,529,34,4,NULL +13423,529,25,6,NULL +13422,529,32,9,NULL +13453,530,4,0,NULL +13452,530,63,0,NULL +13451,530,59,0,NULL +13450,530,1,0,NULL +13449,530,54,0,NULL +13448,530,58,0,NULL +13447,530,56,0,NULL +13446,530,3,0,NULL +13445,530,21,1,NULL +13444,530,27,2,NULL +13443,530,25,4,NULL +13442,530,32,6,NULL +13441,530,6,9,NULL +13473,531,54,0,NULL +13472,531,63,0,NULL +13471,531,27,0,NULL +13470,531,58,0,NULL +13469,531,57,0,NULL +13468,531,3,0,NULL +13467,531,32,0,NULL +13466,531,4,0,NULL +13465,531,56,0,NULL +13464,531,6,0,NULL +13463,531,1,0,NULL +13462,531,21,1,NULL +13461,531,59,4,NULL +13460,531,34,6,NULL +13459,531,25,9,NULL +13492,532,34,0,NULL +13491,532,21,0,NULL +13490,532,59,0,NULL +13489,532,4,0,NULL +13488,532,58,0,NULL +13487,532,63,0,NULL +13486,532,57,0,NULL +13485,532,54,0,NULL +13484,532,3,0,NULL +13483,532,65,0,NULL +13482,532,1,0,NULL +13481,532,25,1,NULL +13480,532,27,2,NULL +13479,532,6,4,NULL +13478,532,32,9,NULL +13508,533,21,0,NULL +13507,533,4,0,NULL +13506,533,25,0,NULL +13505,533,6,0,NULL +13504,533,54,0,NULL +13503,533,3,0,NULL +13502,533,63,0,NULL +13501,533,1,1,NULL +13500,533,34,2,NULL +13499,533,59,3,NULL +13498,533,27,4,NULL +13497,533,32,9,NULL +13524,534,3,0,NULL +13523,534,60,0,NULL +13522,534,54,0,NULL +13521,534,6,0,NULL +13520,534,27,0,NULL +13519,534,56,1,NULL +13518,534,58,2,NULL +13517,534,1,3,NULL +13516,534,32,4,NULL +13515,534,21,6,NULL +13514,534,34,9,NULL +13541,535,65,0,NULL +13540,535,54,0,NULL +13539,535,6,0,NULL +13538,535,58,0,NULL +13537,535,25,0,NULL +13536,535,21,0,NULL +13535,535,27,0,NULL +13534,535,59,1,NULL +13533,535,3,2,NULL +13532,535,34,3,NULL +13531,535,1,4,NULL +13530,535,32,9,NULL +13557,536,59,0,NULL +13556,536,21,0,NULL +13555,536,4,0,NULL +13554,536,54,0,NULL +13553,536,27,0,NULL +13552,536,63,0,NULL +13551,536,1,1,NULL +13550,536,58,2,NULL +13549,536,25,3,NULL +13548,536,34,6,NULL +13547,536,6,9,NULL +13574,537,63,0,NULL +13573,537,3,0,NULL +13572,537,1,0,NULL +13571,537,57,0,NULL +13570,537,21,0,NULL +13569,537,6,0,NULL +13568,537,34,0,NULL +13567,537,25,2,NULL +13566,537,56,3,NULL +13565,537,27,4,NULL +13564,537,59,6,NULL +13563,537,32,9,NULL +13590,538,59,0,NULL +13589,538,58,0,NULL +13588,538,65,0,NULL +13587,538,1,0,NULL +13586,538,34,0,NULL +13585,538,63,1,NULL +13584,538,27,2,NULL +13583,538,56,3,NULL +13582,538,6,4,NULL +13581,538,25,6,NULL +13580,538,32,9,NULL +13609,539,3,0,NULL +13608,539,4,0,NULL +13607,539,63,0,NULL +13606,539,60,0,NULL +13605,539,65,0,NULL +13604,539,58,0,NULL +13603,539,59,0,NULL +13602,539,1,0,NULL +13601,539,27,0,NULL +13600,539,6,1,NULL +13599,539,56,2,NULL +13598,539,34,4,NULL +13597,539,32,9,NULL +13624,540,58,0,NULL +13623,540,3,0,NULL +13622,540,59,0,NULL +13621,540,25,0,NULL +13620,540,57,0,NULL +13619,540,56,0,NULL +13618,540,32,1,NULL +13617,540,1,2,NULL +13616,540,27,3,NULL +13615,540,6,4,NULL +13614,540,34,9,NULL +13640,541,58,0,NULL +13639,541,27,0,NULL +13638,541,25,0,NULL +13637,541,65,0,NULL +13636,541,57,0,NULL +13635,541,1,1,NULL +13634,541,56,2,NULL +13633,541,4,3,NULL +13632,541,59,4,NULL +13631,541,3,6,NULL +13630,541,6,9,NULL +13657,542,54,0,NULL +13656,542,4,0,NULL +13655,542,34,0,NULL +13654,542,32,0,NULL +13653,542,3,0,NULL +13652,542,1,0,NULL +13651,542,57,1,NULL +13650,542,25,2,NULL +13649,542,21,3,NULL +13648,542,59,6,NULL +13647,542,6,9,NULL +13144,543,58,0,NULL +13143,543,37,0,NULL +13142,543,63,0,NULL +13141,543,57,1,NULL +13140,543,32,2,NULL +13139,543,56,3,NULL +13138,543,6,4,NULL +13137,543,34,6,NULL +13136,543,59,9,NULL +13156,544,25,0,NULL +13155,544,27,0,NULL +13154,544,63,0,NULL +13153,544,34,0,NULL +13152,544,58,1,NULL +13151,544,32,2,NULL +13150,544,56,3,NULL +13149,544,1,6,NULL +13148,544,6,9,NULL +13169,545,32,0,NULL +13168,545,56,0,NULL +13167,545,57,0,NULL +13166,545,63,0,NULL +13165,545,34,1,NULL +13164,545,1,3,NULL +13163,545,25,4,NULL +13162,545,59,6,NULL +13161,545,6,9,NULL +13182,546,37,0,NULL +13181,546,27,0,NULL +13180,546,1,0,NULL +13179,546,67,1,NULL +13178,546,56,2,NULL +13177,546,25,3,NULL +13176,546,59,4,NULL +13175,546,6,6,NULL +13174,546,32,9,NULL +13197,547,58,0,NULL +13196,547,56,0,NULL +13195,547,37,0,NULL +13194,547,63,0,NULL +13193,547,25,0,NULL +13192,547,27,0,NULL +13191,547,34,1,NULL +13190,547,1,3,NULL +13189,547,59,4,NULL +13188,547,6,6,NULL +13187,547,32,9,NULL +13211,548,67,0,NULL +13210,548,57,0,NULL +13209,548,63,0,NULL +13208,548,27,0,NULL +13207,548,58,1,NULL +13206,548,32,2,NULL +13205,548,1,3,NULL +13204,548,6,6,NULL +13203,548,59,9,NULL +13227,549,68,0,NULL +13226,549,67,0,NULL +13225,549,37,0,NULL +13224,549,64,0,NULL +13223,549,1,0,NULL +13222,549,34,1,NULL +13221,549,58,2,NULL +13220,549,63,3,NULL +13219,549,25,4,NULL +13218,549,6,6,NULL +13217,549,32,9,NULL +13243,550,68,0,NULL +13242,550,64,0,NULL +13241,550,58,0,NULL +13240,550,67,0,NULL +13239,550,57,0,NULL +13238,550,32,1,NULL +13237,550,34,2,NULL +13236,550,25,3,NULL +13235,550,6,4,NULL +13234,550,1,6,NULL +13233,550,27,9,NULL +13260,551,59,0,NULL +13259,551,37,0,NULL +13258,551,63,0,NULL +13257,551,25,0,NULL +13256,551,56,0,NULL +13255,551,64,0,NULL +13254,551,27,0,NULL +13253,551,57,0,NULL +13252,551,6,2,NULL +13251,551,1,4,NULL +13250,551,34,6,NULL +13249,551,32,9,NULL +13277,552,4,0,NULL +13276,552,25,0,NULL +13275,552,56,0,NULL +13274,552,59,0,NULL +13273,552,37,0,NULL +13272,552,67,0,NULL +13271,552,63,0,NULL +13270,552,58,0,NULL +13269,552,27,1,NULL +13268,552,34,2,NULL +13267,552,32,4,NULL +13266,552,6,6,NULL +13265,552,1,9,NULL +13292,553,32,0,NULL +13291,553,64,0,NULL +13290,553,58,0,NULL +13289,553,25,0,NULL +13288,553,37,0,NULL +13287,553,57,1,NULL +13286,553,63,2,NULL +13285,553,34,4,NULL +13284,553,59,6,NULL +13283,553,6,9,NULL +13306,554,67,0,NULL +13305,554,56,0,NULL +13304,554,37,0,NULL +13303,554,64,0,NULL +13302,554,1,1,NULL +13301,554,25,2,NULL +13300,554,34,4,NULL +13299,554,6,6,NULL +13298,554,58,9,NULL +13323,555,70,0,NULL +13322,555,58,0,NULL +13321,555,63,0,NULL +13320,555,37,0,NULL +13319,555,1,0,NULL +13318,555,67,0,NULL +13317,555,34,0,NULL +13316,555,57,2,NULL +13315,555,56,3,NULL +13314,555,59,4,NULL +13313,555,27,6,NULL +13312,555,6,9,NULL +13340,556,4,0,NULL +13339,556,59,0,NULL +13338,556,34,0,NULL +13337,556,64,0,NULL +13336,556,27,0,NULL +13335,556,37,0,NULL +13334,556,25,1,NULL +13333,556,57,2,NULL +13332,556,1,3,NULL +13331,556,58,4,NULL +13330,556,6,6,NULL +13329,556,32,9,NULL +13356,557,34,0,NULL +13355,557,63,0,NULL +13354,557,58,0,NULL +13353,557,64,0,NULL +13352,557,27,0,NULL +13351,557,57,2,NULL +13350,557,6,3,NULL +13349,557,59,4,NULL +13348,557,32,6,NULL +13347,557,1,9,NULL +13371,558,6,0,NULL +13370,558,32,0,NULL +13369,558,37,0,NULL +13368,558,67,0,NULL +13367,558,63,1,NULL +13366,558,57,2,NULL +13365,558,58,3,NULL +13364,558,1,4,NULL +13363,558,25,6,NULL +13362,558,59,9,NULL +13384,559,59,0,NULL +13383,559,63,0,NULL +13382,559,34,0,NULL +13381,559,27,2,NULL +13380,559,58,3,NULL +13379,559,25,4,NULL +13378,559,6,6,NULL +13377,559,1,9,NULL +12904,560,204,0,NULL +12903,560,3,0,NULL +12902,560,59,0,NULL +12901,560,1,1,NULL +12900,560,37,3,NULL +12899,560,58,4,NULL +12898,560,25,6,NULL +12897,560,6,9,NULL +12919,561,59,0,NULL +12918,561,63,0,NULL +12917,561,32,0,NULL +12916,561,37,0,NULL +12915,561,58,0,NULL +12914,561,73,1,NULL +12913,561,67,2,NULL +12912,561,25,3,NULL +12911,561,1,6,NULL +12910,561,6,9,NULL +12934,562,63,0,NULL +12933,562,37,0,NULL +12932,562,204,0,NULL +12931,562,57,0,NULL +12930,562,58,0,NULL +12929,562,56,1,NULL +12928,562,1,2,NULL +12927,562,27,3,NULL +12926,562,25,4,NULL +12925,562,6,9,NULL +12949,563,70,0,NULL +12948,563,27,0,NULL +12947,563,63,0,NULL +12946,563,58,0,NULL +12945,563,59,0,NULL +12944,563,57,2,NULL +12943,563,204,3,NULL +12942,563,32,4,NULL +12941,563,6,6,NULL +12940,563,1,9,NULL +12966,564,182,0,NULL +12965,564,59,0,NULL +12964,564,58,0,NULL +12963,564,70,0,NULL +12962,564,67,0,NULL +12961,564,1,1,NULL +12960,564,63,2,NULL +12959,564,25,3,NULL +12958,564,27,4,NULL +12957,564,6,9,NULL +12982,565,27,0,NULL +12981,565,59,0,NULL +12980,565,67,0,NULL +12979,565,204,0,NULL +12978,565,58,0,NULL +12977,565,56,1,NULL +12976,565,1,2,NULL +12975,565,37,3,NULL +12974,565,25,6,NULL +12973,565,6,9,NULL +12998,566,57,0,NULL +12997,566,32,0,NULL +12996,566,64,0,NULL +12995,566,63,0,NULL +12994,566,58,0,NULL +12993,566,204,0,NULL +12992,566,37,0,NULL +12991,566,1,2,NULL +12990,566,27,3,NULL +12989,566,6,4,NULL +12988,566,25,9,NULL +13012,567,27,0,NULL +13011,567,59,0,NULL +13010,567,58,0,NULL +13009,567,37,0,NULL +13008,567,32,2,NULL +13007,567,204,3,NULL +13006,567,67,4,NULL +13005,567,25,6,NULL +13004,567,1,9,NULL +13028,568,32,0,NULL +13027,568,1,0,NULL +13026,568,204,0,NULL +13025,568,64,0,NULL +13024,568,56,1,NULL +13023,568,63,2,NULL +13022,568,58,3,NULL +13021,568,67,4,NULL +13020,568,25,6,NULL +13019,568,6,9,NULL +13043,569,64,0,NULL +13042,569,56,0,NULL +13041,569,63,0,NULL +13040,569,6,0,NULL +13039,569,58,0,NULL +13038,569,67,0,NULL +13037,569,32,2,NULL +13036,569,204,3,NULL +13035,569,25,6,NULL +13034,569,1,9,NULL +13057,570,182,0,NULL +13056,570,25,0,NULL +13055,570,63,0,NULL +13054,570,64,0,NULL +13053,570,37,1,NULL +13052,570,1,3,NULL +13051,570,32,4,NULL +13050,570,27,6,NULL +13049,570,67,9,NULL +13072,571,67,0,NULL +13071,571,57,0,NULL +13070,571,64,0,NULL +13069,571,63,0,NULL +13068,571,37,1,NULL +13067,571,25,2,NULL +13066,571,58,3,NULL +13065,571,32,4,NULL +13064,571,6,6,NULL +13063,571,1,9,NULL +13088,572,64,0,NULL +13087,572,56,0,NULL +13086,572,32,0,NULL +13085,572,63,0,NULL +13084,572,67,0,NULL +13083,572,57,0,NULL +13082,572,58,0,NULL +13081,572,25,2,NULL +13080,572,27,4,NULL +13079,572,6,6,NULL +13078,572,37,9,NULL +13102,573,63,0,NULL +13101,573,57,0,NULL +13100,573,58,0,NULL +13099,573,67,0,NULL +13098,573,37,0,NULL +13097,573,204,0,NULL +13096,573,6,1,NULL +13095,573,32,4,NULL +13094,573,25,6,NULL +13093,573,1,9,NULL +13115,574,64,0,NULL +13114,574,58,0,NULL +13113,574,56,0,NULL +13112,574,63,0,NULL +13111,574,67,1,NULL +13110,574,37,2,NULL +13109,574,6,4,NULL +13108,574,25,6,NULL +13107,574,1,9,NULL +13130,575,59,0,NULL +13129,575,72,0,NULL +13128,575,58,0,NULL +13127,575,64,0,NULL +13126,575,27,0,NULL +13125,575,6,2,NULL +13124,575,63,3,NULL +13123,575,1,4,NULL +13122,575,25,6,NULL +13121,575,32,9,NULL +12566,576,202,0,NULL +12565,576,26,0,NULL +12564,576,37,0,NULL +12563,576,32,0,NULL +12562,576,67,0,NULL +12561,576,25,2,NULL +12560,576,6,3,NULL +12559,576,34,4,NULL +12558,576,64,6,NULL +12557,576,1,9,NULL +12582,577,202,0,NULL +12581,577,56,0,NULL +12580,577,26,0,NULL +12579,577,3,0,NULL +12578,577,63,0,NULL +12577,577,32,0,NULL +12576,577,73,0,NULL +12575,577,64,1,NULL +12574,577,6,3,NULL +12573,577,1,6,NULL +12572,577,34,9,NULL +12598,578,64,0,NULL +12597,578,3,0,NULL +12596,578,73,0,NULL +12595,578,66,0,NULL +12594,578,32,0,NULL +12593,578,202,0,NULL +12592,578,67,0,NULL +12591,578,75,0,NULL +12590,578,1,1,NULL +12589,578,6,2,NULL +12588,578,34,6,NULL +12587,578,25,9,NULL +12613,579,73,0,NULL +12612,579,57,0,NULL +12611,579,26,0,NULL +12610,579,6,0,NULL +12609,579,63,0,NULL +12608,579,3,0,NULL +12607,579,37,1,NULL +12606,579,202,1.5,NULL +12605,579,34,2,NULL +12604,579,32,3,NULL +12603,579,1,4.5,NULL +12629,580,73,0,NULL +12628,580,63,0,NULL +12627,580,202,0,NULL +12626,580,37,0,NULL +12625,580,64,0,NULL +12624,580,67,0,NULL +12623,580,25,2,NULL +12622,580,32,3,NULL +12621,580,34,4,NULL +12620,580,1,6,NULL +12619,580,6,9,NULL +12644,581,75,0,NULL +12643,581,56,0,NULL +12642,581,67,0,NULL +12641,581,63,0,NULL +12640,581,66,0,NULL +12639,581,1,0,NULL +12638,581,202,1,NULL +12637,581,34,4,NULL +12636,581,25,6,NULL +12635,581,6,9,NULL +12784,582,63,0,NULL +12783,582,3,0,NULL +12782,582,66,0,NULL +12781,582,64,0,NULL +12780,582,32,0,NULL +12779,582,1,0,NULL +12778,582,25,0,NULL +12777,582,75,1,NULL +12776,582,67,2,NULL +12801,583,63,0,NULL +12800,583,1,0,NULL +12799,583,32,0,NULL +12798,583,37,0,NULL +12797,583,3,0,NULL +12796,583,56,0,NULL +12795,583,57,0,NULL +12794,583,25,0,NULL +12793,583,67,0,NULL +12792,583,75,0,NULL +12791,583,202,1,NULL +12790,583,34,3,NULL +12816,584,66,0,NULL +12815,584,57,0,NULL +12814,584,34,0,NULL +12813,584,63,0,NULL +12812,584,3,0,NULL +12811,584,32,0,NULL +12810,584,202,0,NULL +12809,584,75,0,NULL +12808,584,25,1,NULL +12807,584,73,2,NULL +12832,585,56,0,NULL +12831,585,76,0,NULL +12830,585,32,0,NULL +12829,585,202,0,NULL +12828,585,73,0,NULL +12827,585,63,0,NULL +12826,585,75,0,NULL +12825,585,6,0,NULL +12824,585,37,2,NULL +12823,585,64,3,NULL +12847,586,1,0,NULL +12846,586,56,0,NULL +12845,586,73,0,NULL +12844,586,25,0,NULL +12843,586,64,0,NULL +12842,586,37,0,NULL +12841,586,57,1,NULL +12840,586,75,2,NULL +12839,586,202,3,NULL +12838,586,6,4,NULL +12863,587,66,0,NULL +12862,587,203,0,NULL +12861,587,3,0,NULL +12860,587,75,0,NULL +12859,587,34,0,NULL +12858,587,57,0,NULL +12857,587,63,0,NULL +12856,587,25,0,NULL +12855,587,6,0.5,NULL +12854,587,32,1,NULL +12853,587,1,1.5,NULL +12879,588,75,0,NULL +12878,588,37,0,NULL +12877,588,203,0,NULL +12876,588,3,0,NULL +12875,588,32,0,NULL +12874,588,57,0,NULL +12873,588,56,0,NULL +12872,588,25,0,NULL +12871,588,202,1,NULL +12870,588,64,2,NULL +12893,589,34,0,NULL +12892,589,57,0,NULL +12891,589,202,0,NULL +12890,589,56,0,NULL +12889,589,67,0,NULL +12888,589,37,0,NULL +12887,589,25,1,NULL +12886,589,32,2,NULL +12352,590,26,0,NULL +12351,590,37,0,NULL +12350,590,34,0,NULL +12349,590,25,1,NULL +12348,590,66,2,NULL +12347,590,6,6,NULL +12346,590,1,9,NULL +12363,591,37,0,NULL +12362,591,25,0,NULL +12361,591,34,0,NULL +12360,591,63,3,NULL +12359,591,32,4,NULL +12358,591,6,6,NULL +12357,591,1,9,NULL +12375,592,26,0,NULL +12374,592,63,0,NULL +12373,592,80,1,NULL +12372,592,37,2,NULL +12371,592,25,3,NULL +12370,592,1,4,NULL +12369,592,66,6,NULL +12368,592,34,9,NULL +12388,593,77,0,NULL +12387,593,63,0,NULL +12386,593,66,0,NULL +12385,593,34,0,NULL +12384,593,64,0,NULL +12383,593,58,0,NULL +12382,593,25,2,NULL +12381,593,37,3,NULL +12380,593,1,4,NULL +12379,593,6,9,NULL +12403,594,57,0,NULL +12402,594,80,0,NULL +12401,594,58,0,NULL +12400,594,34,0,NULL +12399,594,77,0,NULL +12398,594,37,0,NULL +12397,594,26,0,NULL +12396,594,66,2,NULL +12395,594,25,4,NULL +12394,594,6,6,NULL +12393,594,1,9,NULL +12417,595,57,0,NULL +12416,595,64,0,NULL +12415,595,66,0,NULL +12414,595,26,0,NULL +12413,595,34,1,NULL +12412,595,1,2,NULL +12411,595,6,3,NULL +12410,595,58,4,NULL +12409,595,25,6,NULL +12408,595,32,9,NULL +12431,596,57,0,NULL +12430,596,37,0,NULL +12429,596,34,0,NULL +12428,596,80,0,NULL +12427,596,26,1,NULL +12426,596,58,2,NULL +12425,596,1,3,NULL +12424,596,64,4,NULL +12423,596,25,9,NULL +12446,597,58,0,NULL +12445,597,26,0,NULL +12444,597,80,0,NULL +12443,597,66,0,NULL +12442,597,57,0,NULL +12441,597,37,0,NULL +12440,597,32,0,NULL +12439,597,34,0,NULL +12438,597,25,2,NULL +12437,597,1,4,NULL +12436,597,6,9,NULL +12458,598,26,0,NULL +12457,598,58,0,NULL +12456,598,37,0,NULL +12455,598,66,0,NULL +12454,598,80,0,NULL +12453,598,1,1,NULL +12452,598,25,3,NULL +12451,598,6,6,NULL +12450,598,32,9,NULL +12474,599,77,0,NULL +12473,599,80,0,NULL +12472,599,37,0,NULL +12471,599,63,0,NULL +12470,599,26,0,NULL +12469,599,66,0,NULL +12468,599,58,0,NULL +12467,599,34,1,NULL +12466,599,6,3,NULL +12465,599,32,4,NULL +12464,599,1,6,NULL +12463,599,25,9,NULL +12491,600,64,0,NULL +12490,600,1,0,NULL +12489,600,79,0,NULL +12488,600,63,0,NULL +12487,600,66,0,NULL +12486,600,26,0,NULL +12485,600,37,0,NULL +12484,600,58,1,NULL +12483,600,32,3,NULL +12482,600,34,4,NULL +12481,600,25,6,NULL +12480,600,6,9,NULL +12506,601,79,0,NULL +12505,601,26,0,NULL +12504,601,77,0,NULL +12503,601,63,0,NULL +12502,601,58,0,NULL +12501,601,37,1,NULL +12500,601,6,2,NULL +12499,601,64,4,NULL +12498,601,1,6,NULL +12497,601,34,9,NULL +12521,602,77,0,NULL +12520,602,37,0,NULL +12519,602,6,0,NULL +12518,602,58,0,NULL +12517,602,26,0,NULL +12516,602,34,2,NULL +12515,602,80,3,NULL +12514,602,25,4,NULL +12513,602,1,6,NULL +12512,602,32,9,NULL +12536,603,67,0,NULL +12535,603,26,0,NULL +12534,603,63,0,NULL +12533,603,34,0,NULL +12532,603,73,0,NULL +12531,603,25,2,NULL +12530,603,64,3,NULL +12529,603,32,4,NULL +12528,603,6,6,NULL +12527,603,1,9,NULL +12552,604,80,0,NULL +12551,604,57,0,NULL +12550,604,32,0,NULL +12549,604,6,0,NULL +12548,604,58,0,NULL +12547,604,66,0,NULL +12546,604,26,0,NULL +12545,604,25,1,NULL +12544,604,1,3,NULL +12543,604,64,4,NULL +12542,604,34,9,NULL +12182,605,80,0,NULL +12181,605,37,0,NULL +12180,605,66,0,NULL +12179,605,34,1,NULL +12178,605,1,2,NULL +12177,605,6,3,NULL +12176,605,25,6,NULL +12036,606,34,0,NULL +12035,606,80,0,NULL +12034,606,66,1,NULL +12033,606,6,3,NULL +12032,606,1,4,NULL +12031,606,25,6,NULL +12030,606,32,9,NULL +12191,607,80,0,NULL +12190,607,63,0,NULL +12189,607,34,0,NULL +12188,607,58,1,NULL +12187,607,6,3,NULL +12186,607,32,4,NULL +12200,608,34,0,NULL +12199,608,37,0,NULL +12198,608,66,2,NULL +12197,608,1,3,NULL +12196,608,58,4,NULL +12195,608,25,6,NULL +12194,608,32,9,NULL +12211,609,58,0,NULL +12210,609,63,0,NULL +12209,609,1,0,NULL +12208,609,81,1,NULL +12207,609,66,2,NULL +12206,609,34,3,NULL +12205,609,32,4,NULL +12204,609,25,9,NULL +12222,610,6,0,NULL +12221,610,58,0,NULL +12220,610,37,0,NULL +12219,610,63,0,NULL +12218,610,34,0,NULL +12217,610,1,2,NULL +12216,610,32,6,NULL +12215,610,25,9,NULL +12232,611,66,0,NULL +12231,611,37,0,NULL +12230,611,6,1,NULL +12229,611,34,3,NULL +12228,611,25,4,NULL +12227,611,32,6,NULL +12226,611,1,9,NULL +12267,612,63,0,NULL +12266,612,58,0,NULL +12265,612,66,0,NULL +12264,612,1,0,NULL +12263,612,37,1,NULL +12262,612,6,2,NULL +12261,612,34,4,NULL +12279,613,58,0,NULL +12278,613,57,0,NULL +12277,613,80,0,NULL +12276,613,6,0,NULL +12275,613,66,0,NULL +12274,613,34,1,NULL +12273,613,25,2,NULL +12272,613,37,3,NULL +12289,614,32,0,NULL +12288,614,58,0,NULL +12287,614,63,0,NULL +12286,614,80,1,NULL +12285,614,66,2,NULL +12284,614,1,3,NULL +12283,614,37,4,NULL +12282,614,25,9,NULL +12299,615,80,0,NULL +12298,615,58,0,NULL +12297,615,32,1,NULL +12296,615,34,2,NULL +12295,615,63,3,NULL +12294,615,1,4,NULL +12293,615,25,9,NULL +12309,616,80,0,NULL +12308,616,1,0,NULL +12307,616,6,0,NULL +12306,616,66,2,NULL +12305,616,34,3,NULL +12304,616,63,4,NULL +12303,616,25,6,NULL +12302,616,32,9,NULL +12319,617,37,0,NULL +12318,617,6,0,NULL +12317,617,63,0,NULL +12316,617,34,1,NULL +12315,617,25,3,NULL +12314,617,1,4,NULL +12313,617,32,9,NULL +12331,618,34,0,NULL +12330,618,37,0,NULL +12329,618,80,1,NULL +12328,618,25,2,NULL +12327,618,66,3,NULL +12326,618,58,4,NULL +12325,618,32,6,NULL +12324,618,1,9,NULL +12341,619,58,0,NULL +12340,619,66,0,NULL +12339,619,80,0,NULL +12338,619,1,3,NULL +12337,619,34,4,NULL +12336,619,37,6,NULL +12335,619,32,9,NULL +12056,620,32,0,NULL +12055,620,66,0,NULL +12054,620,34,0,NULL +12053,620,37,1,NULL +12052,620,63,2,NULL +12051,620,6,4,NULL +12050,620,1,6,NULL +12065,621,82,0,NULL +12064,621,66,0,NULL +12063,621,25,0,NULL +12062,621,34,1,NULL +12061,621,37,2,NULL +12060,621,6,3,NULL +12059,621,32,6,NULL +12074,622,82,0,NULL +12073,622,25,0,NULL +12072,622,34,0,NULL +12071,622,37,1,NULL +12070,622,1,2,NULL +12069,622,63,3,NULL +12068,622,6,6,NULL +12083,623,34,0,NULL +12082,623,63,0,NULL +12081,623,82,1,NULL +12080,623,1,2,NULL +12079,623,25,3,NULL +12078,623,32,4,NULL +12077,623,6,6,NULL +12103,624,6,0,NULL +12102,624,34,0,NULL +12101,624,66,0,NULL +12100,624,82,1,NULL +12099,624,37,2,NULL +12098,624,63,3,NULL +12097,624,1,4,NULL +12096,624,25,6,NULL +12111,625,34,0,NULL +12110,625,1,0,NULL +12109,625,63,1,NULL +12108,625,37,2,NULL +12107,625,82,4,NULL +12106,625,32,6,NULL +12105,625,25,9,NULL +12121,626,66,0,NULL +12120,626,34,0,NULL +12119,626,37,0,NULL +12118,626,6,1,NULL +12117,626,82,3,NULL +12116,626,1,4,NULL +12115,626,25,6,NULL +12114,626,32,9,NULL +12131,627,63,0,NULL +12130,627,25,0,NULL +12129,627,34,1,NULL +12128,627,1,2,NULL +12127,627,66,3,NULL +12126,627,37,4,NULL +12125,627,6,9,NULL +12142,628,81,0,NULL +12141,628,37,0,NULL +12140,628,25,0,NULL +12139,628,66,1,NULL +12138,628,82,2,NULL +12137,628,63,3,NULL +12136,628,1,6,NULL +12135,628,32,9,NULL +12152,629,37,0,NULL +12151,629,6,0,NULL +12150,629,66,1,NULL +12149,629,34,2,NULL +12148,629,1,4,NULL +12147,629,63,6,NULL +12146,629,32,9,NULL +12162,630,37,0,NULL +12161,630,63,0,NULL +12160,630,82,1,NULL +12159,630,6,2,NULL +12158,630,34,3,NULL +12157,630,1,10,NULL +12156,630,25,9,NULL +12171,631,63,0,NULL +12170,631,34,0,NULL +12169,631,32,0,NULL +12168,631,6,2,NULL +12167,631,37,3,NULL +12166,631,1,4,NULL +12165,631,25,9,NULL +11846,632,34,0,NULL +11845,632,63,0,NULL +11844,632,1,1,NULL +11843,632,82,2,NULL +11842,632,180,3,NULL +11841,632,25,6,NULL +11840,632,6,9,NULL +11856,633,63,0,NULL +11855,633,34,0,NULL +11854,633,1,2,NULL +11853,633,66,3,NULL +11852,633,82,4,NULL +11851,633,6,6,NULL +11850,633,25,9,NULL +11865,634,66,0,NULL +11864,634,63,1,NULL +11863,634,180,2,NULL +11862,634,1,3,NULL +11861,634,6,4,NULL +11860,634,200,6,NULL +11859,634,25,9,NULL +11873,635,34,0,NULL +11872,635,82,0,NULL +11871,635,63,2,NULL +11870,635,200,3,NULL +11869,635,66,6,NULL +11868,635,6,9,NULL +11883,636,1,0,NULL +11882,636,63,0,NULL +11881,636,82,2,NULL +11880,636,66,3,NULL +11879,636,180,4,NULL +11878,636,25,9,NULL +11893,637,66,0,NULL +11892,637,82,0,NULL +11891,637,63,2,NULL +11890,637,180,4,NULL +11889,637,200,6,NULL +11888,637,25,9,NULL +11904,638,180,0,NULL +11903,638,63,0,NULL +11902,638,34,1,NULL +11901,638,200,2,NULL +11900,638,6,4,NULL +11899,638,25,9,NULL +11914,639,1,0,NULL +11913,639,63,0,NULL +11912,639,200,1,NULL +11911,639,34,4,NULL +11910,639,180,6,NULL +11909,639,66,9,NULL +11924,640,201,0,NULL +11923,640,1,0,NULL +11922,640,82,1,NULL +11921,640,63,3,NULL +11920,640,25,4,NULL +11919,640,200,6,NULL +11918,640,66,9,NULL +11934,641,66,0,NULL +11933,641,6,0,NULL +11932,641,180,2,NULL +11931,641,1,4,NULL +11930,641,200,6,NULL +11929,641,25,9,NULL +11943,642,82,0,NULL +11942,642,34,0,NULL +11941,642,6,1,NULL +11940,642,200,4,NULL +11939,642,66,6,NULL +11938,642,25,9,NULL +11721,643,6,0,NULL +11720,643,66,0,NULL +11719,643,32,2,NULL +11718,643,82,3,NULL +11717,643,37,4,NULL +11729,644,6,0,NULL +11728,644,66,0,NULL +11727,644,82,0,NULL +11726,644,34,0,NULL +11725,644,32,3,NULL +11738,645,86,0,NULL +11737,645,37,0,NULL +11736,645,66,1,NULL +11735,645,187,3,NULL +11734,645,82,4,NULL +11746,646,32,0,NULL +11745,646,34,2,NULL +11744,646,6,3,NULL +11743,646,82,4,NULL +11742,646,37,6,NULL +11755,647,86,0,NULL +11754,647,34,0,NULL +11753,647,66,0,NULL +11752,647,187,1,NULL +11751,647,82,2,NULL +11750,647,6,4,NULL +11764,648,6,0,NULL +11763,648,66,0,NULL +11762,648,82,2,NULL +11761,648,187,3,NULL +11760,648,34,4,NULL +11773,649,63,0,NULL +11772,649,66,0,NULL +11771,649,37,2,NULL +11770,649,6,3,NULL +11769,649,187,4,NULL +11784,650,86,0,NULL +11783,650,66,0,NULL +11782,650,63,0,NULL +11781,650,37,0,NULL +11780,650,82,1,NULL +11779,650,34,2,NULL +11778,650,187,4,NULL +8305,17,9,18,NULL +8306,17,23,11,NULL +8307,17,2,4,NULL +8308,17,7,5,NULL +8309,17,5,1,NULL +8310,17,3,0,NULL +8311,17,1,0,NULL +8312,17,6,0,NULL +8313,17,4,0,NULL +8314,17,10,0,NULL +11795,651,63,0,NULL +11794,651,32,0,NULL +11793,651,198,0,NULL +11792,651,187,0,NULL +11791,651,37,0,NULL +11790,651,82,1,NULL +11789,651,66,5,NULL +11806,652,63,0,NULL +11805,652,86,0,NULL +11804,652,66,0,NULL +11803,652,198,0,NULL +11802,652,34,2,NULL +11801,652,187,3,NULL +11800,652,82,4,NULL +11817,653,198,0,NULL +11816,653,32,0,NULL +11815,653,86,0,NULL +11814,653,82,0,NULL +11813,653,187,1,NULL +11812,653,63,2,NULL +11811,653,66,3,NULL +11828,654,25,0,NULL +11827,654,34,0,NULL +11826,654,82,0,NULL +11825,654,187,0,NULL +11824,654,63,1,NULL +11823,654,37,2,NULL +11822,654,6,3,NULL +11838,655,34,0,NULL +11837,655,32,0,NULL +11836,655,63,0,NULL +11835,655,66,1,NULL +11834,655,82,2,NULL +11833,655,37,3,NULL +11832,655,187,4,NULL +11526,656,182,0,NULL +11525,656,6,0,NULL +11524,656,191,0,NULL +11522,656,187,4,NULL +11531,657,6,0,NULL +11530,657,182,1,NULL +11529,657,66,2,NULL +11537,658,196,0,NULL +11536,658,167,0,NULL +11535,658,187,2,NULL +11544,659,182,2,NULL +11543,659,187,3,NULL +11542,659,6,4,NULL +11549,660,180,1,NULL +11548,660,187,3,NULL +11555,661,6,0,NULL +11554,661,180,3,NULL +11553,661,187,4,NULL +11561,662,197,0,NULL +11560,662,180,3,NULL +11559,662,187,4,NULL +11558,662,196,6,NULL +11568,663,66,0,NULL +11567,663,6,1,NULL +11566,663,182,2,NULL +11565,663,187,3,NULL +11564,663,180,6,NULL +11575,664,189,0,NULL +11574,664,6,0,NULL +11573,664,66,0,NULL +11571,664,196,3,NULL +11581,665,196,0,NULL +11580,665,6,2,NULL +11579,665,66,4,NULL +11587,666,6,0,NULL +11586,666,66,1,NULL +11585,666,196,3,NULL +11265,667,11,0,NULL +11264,667,167,0,NULL +11263,667,196,1,NULL +11262,667,194,2,NULL +11261,667,6,3,NULL +11260,667,191,4,NULL +11259,667,180,9,NULL +11277,668,6,0,NULL +11276,668,11,0,NULL +11275,668,196,2,NULL +11274,668,195,4,NULL +11273,668,187,6,NULL +11272,668,180,9,NULL +11285,669,82,0,NULL +11284,669,11,0,NULL +11283,669,187,2,NULL +11282,669,195,4,NULL +11281,669,66,6,NULL +11280,669,180,9,NULL +11296,670,82,0,NULL +11295,670,195,1,NULL +11294,670,180,2,NULL +11293,670,196,3,NULL +11292,670,6,4,NULL +11291,670,66,6,NULL +11290,670,187,9,NULL +11305,671,194,0,NULL +11304,671,191,2,NULL +11303,671,6,3,NULL +11302,671,66,4,NULL +11301,671,82,6,NULL +11300,671,196,9,NULL +11316,672,82,0,NULL +11315,672,66,1,NULL +11314,672,187,2,NULL +11313,672,195,3,NULL +11312,672,196,4,NULL +11311,672,11,6,NULL +11310,672,6,9,NULL +11325,673,191,0,NULL +11324,673,66,0,NULL +11323,673,196,1,NULL +11322,673,11,2,NULL +11321,673,187,3,NULL +11320,673,6,6,NULL +11319,673,180,9,NULL +11336,674,190,0,NULL +11335,674,187,0,NULL +11334,674,66,1,NULL +11333,674,6,3,NULL +11332,674,191,4,NULL +11331,674,180,6,NULL +11330,674,196,9,NULL +11347,675,194,1,NULL +11346,675,82,2,NULL +11345,675,66,3,NULL +11344,675,6,4,NULL +11343,675,196,6,NULL +11342,675,187,9,NULL +11358,676,82,0,NULL +11357,676,196,1,NULL +11356,676,195,2,NULL +11355,676,180,3,NULL +11354,676,66,4,NULL +11353,676,187,9,NULL +11368,677,1,0,NULL +11367,677,66,0,NULL +11366,677,187,3,NULL +11365,677,11,4,NULL +11364,677,180,6,NULL +11363,677,196,9,NULL +11379,678,195,0,NULL +11378,678,196,0,NULL +11377,678,11,2,NULL +11376,678,66,3,NULL +11375,678,187,6,NULL +11374,678,180,9,NULL +11160,679,183,2,NULL +11159,679,191,3,NULL +11158,679,11,4,NULL +11157,679,170,6,NULL +11156,679,167,9,NULL +11171,680,172,0,NULL +11170,680,66,1,NULL +11169,680,167,2,NULL +11168,680,194,3,NULL +11167,680,6,4,NULL +11166,680,176,6,NULL +11165,680,191,9,NULL +11181,681,66,0,NULL +11180,681,176,0,NULL +11179,681,6,3,NULL +11178,681,191,6,NULL +11177,681,180,9,NULL +11192,682,183,0,NULL +11191,682,180,1,NULL +11190,682,167,3,NULL +11189,682,6,4,NULL +11188,682,66,8,NULL +11187,682,190,9,NULL +11198,683,6,0,NULL +11197,683,167,3,NULL +11196,683,66,4,NULL +11195,683,191,9,NULL +11207,684,66,0,NULL +11206,684,11,1,NULL +11205,684,167,2,NULL +11204,684,6,4,NULL +11203,684,191,6,NULL +11202,684,180,9,NULL +11217,685,66,0,NULL +11216,685,182,0,NULL +11215,685,167,2,NULL +11214,685,180,0,NULL +11213,685,11,3,NULL +11212,685,6,4,NULL +11211,685,191,9,NULL +11227,686,194,0,NULL +11226,686,6,1,NULL +11225,686,66,2,NULL +11224,686,180,3,NULL +11223,686,190,4,NULL +11222,686,191,9,NULL +11237,687,6,0,NULL +11236,687,66,2,NULL +11235,687,167,3,NULL +11234,687,180,4,NULL +11233,687,191,6,NULL +11232,687,11,9,NULL +11245,688,6,0,NULL +11244,688,11,0,NULL +11243,688,187,0,NULL +11242,688,167,3,NULL +11241,688,191,4,NULL +11240,688,180,9,NULL +11255,689,6,0,NULL +11254,689,187,0,NULL +11253,689,167,1,NULL +11252,689,66,2,NULL +11251,689,11,3,NULL +11250,689,191,6,NULL +11249,689,180,9,NULL +11076,690,191,0,NULL +11075,690,176,0,NULL +11074,690,181,0,NULL +11073,690,172,0,NULL +11086,691,183,0,NULL +11085,691,172,0,NULL +11084,691,176,0,NULL +11083,691,66,0,NULL +11082,691,189,0,NULL +11095,692,66,0,NULL +11094,692,172,0,NULL +11093,692,183,0,NULL +11092,692,181,1,NULL +11091,692,189,2,NULL +11106,693,189,0,NULL +11105,693,176,0,NULL +11104,693,192,0,NULL +11103,693,181,0,NULL +11102,693,183,0,NULL +11101,693,188,1,NULL +11114,694,181,0,NULL +11113,694,167,0,NULL +11112,694,6,1,NULL +11111,694,176,2,NULL +11125,695,183,0,NULL +11124,695,192,0,NULL +11123,695,172,0,NULL +11122,695,176,0,NULL +11121,695,189,0,NULL +11134,696,11,0,NULL +11133,696,172,0,NULL +11132,696,66,0,NULL +11131,696,183,1,NULL +11146,697,190,0,NULL +11145,697,6,0,NULL +11144,697,191,0,NULL +11143,697,11,0,NULL +11142,697,66,0,NULL +11155,698,190,0,NULL +11154,698,66,0,NULL +11153,698,187,0,NULL +11152,698,176,0,NULL +11151,698,189,2,NULL +10918,700,11,0,NULL +10910,699,167,0,NULL +10909,699,93,0,NULL +10908,699,180,0,NULL +10907,699,184,0,NULL +10906,699,186,0,NULL +10917,700,176,0,NULL +10916,700,172,0,NULL +10915,700,183,0,NULL +10914,700,181,1,NULL +10913,700,170,2,NULL +10926,701,176,0,NULL +10925,701,6,0,NULL +10924,701,181,0,NULL +10923,701,11,1,NULL +10922,701,183,3,NULL +10932,702,170,0,NULL +10931,702,181,1,NULL +10930,702,183,3,NULL +10929,702,6,4,NULL +10942,703,11,0,NULL +10941,703,176,0,NULL +10940,703,170,0,NULL +10939,703,181,0,NULL +10949,704,176,0,NULL +10948,704,6,0,NULL +10947,704,11,1,NULL +10946,704,183,4,NULL +10957,705,181,0,NULL +10956,705,6,1,NULL +10955,705,170,3,NULL +10954,705,183,4,NULL +10953,705,66,6,NULL +10965,706,11,0,NULL +10964,706,172,0,NULL +10963,706,176,1,NULL +10962,706,170,2,NULL +10961,706,6,3,NULL +10973,707,181,0,NULL +10972,707,176,0,NULL +10971,707,11,0,NULL +10970,707,170,1,NULL +10981,708,66,0,NULL +10980,708,6,0,NULL +10979,708,176,1,NULL +10728,709,6,0,NULL +10727,709,183,0,NULL +10726,709,176,1,NULL +10725,709,170,2,NULL +10737,710,181,0,NULL +10736,710,170,0,NULL +10735,710,183,1,NULL +10734,710,176,2,NULL +10744,711,6,0,NULL +10743,711,94,0,NULL +10742,711,66,3,NULL +10741,711,183,4,NULL +10752,712,6,0,NULL +10751,712,176,0,NULL +10750,712,170,1,NULL +10749,712,172,3,NULL +10761,713,181,0,NULL +10760,713,94,0,NULL +10759,713,170,1,NULL +10758,713,183,3,NULL +10757,713,6,4,NULL +10771,714,170,0,NULL +10770,714,11,0,NULL +10769,714,176,0,NULL +10768,714,183,0,NULL +10767,714,172,0,NULL +10779,715,170,0,NULL +10778,715,181,0,NULL +10777,715,176,0,NULL +10776,715,94,2,NULL +10775,715,183,4,NULL +10788,716,176,0,NULL +10787,716,183,0,NULL +10786,716,181,0,NULL +10785,716,172,1,NULL +10784,716,94,2,NULL +10799,717,170,0,NULL +10798,717,11,0,NULL +10797,717,183,0,NULL +10796,717,176,0,NULL +10795,717,94,1,NULL +10794,717,172,2,NULL +10806,718,181,0,NULL +10805,718,94,0,NULL +10804,718,66,0,NULL +10803,718,170,0,NULL +10527,719,92,0,NULL +10526,719,54,0,NULL +10525,719,34,0,NULL +10524,719,26,0,NULL +10523,719,176,0,NULL +10522,719,172,1,NULL +10538,720,176,0,NULL +10537,720,26,0,NULL +10536,720,6,0,NULL +10535,720,92,0,NULL +10534,720,95,1,NULL +10533,720,66,3,NULL +10532,720,34,4,NULL +10550,721,54,0,NULL +10549,721,26,0,NULL +10548,721,170,0,NULL +10547,721,95,0,NULL +10546,721,176,0,NULL +10545,721,66,2,NULL +10560,722,92,0,NULL +10559,722,6,0,NULL +10558,722,94,0,NULL +10557,722,26,0,NULL +10556,722,176,1,NULL +10555,722,34,3,NULL +10573,723,94,0,NULL +10572,723,92,0,NULL +10571,723,97,0,NULL +10570,723,34,0,NULL +10569,723,95,0,NULL +10568,723,170,0,NULL +10567,723,26,0,NULL +10585,724,97,0,NULL +10584,724,26,0,NULL +10583,724,92,0,NULL +10582,724,34,0,NULL +10581,724,170,1,NULL +10580,724,176,2,NULL +10579,724,95,3,NULL +10600,725,167,0,NULL +10599,725,95,0,NULL +10598,725,92,0,NULL +10597,725,97,0,NULL +10596,725,6,0,NULL +10595,725,54,0,NULL +10594,725,26,0,NULL +10593,725,176,0,NULL +10611,726,26,0,NULL +10610,726,176,0,NULL +10609,726,170,0,NULL +10608,726,98,0,NULL +10607,726,95,1,NULL +10606,726,6,2,NULL +10605,726,34,3,NULL +10620,727,6,0,NULL +10619,727,54,0,NULL +10618,727,95,0,NULL +10617,727,176,0,NULL +10616,727,170,2,NULL +10333,729,26,0,NULL +10332,729,99,0,NULL +10331,729,95,1,NULL +10330,729,170,2,NULL +10329,729,6,4,NULL +10328,729,172,6,NULL +10341,730,175,0,NULL +10340,730,176,0,NULL +10339,730,172,0,NULL +10338,730,66,1,NULL +10337,730,95,2,NULL +10336,730,26,3,NULL +10347,731,170,0,NULL +10346,731,95,0,NULL +10345,731,26,2,NULL +10344,731,6,4,NULL +10343,731,66,6,NULL +10354,732,87,0,NULL +10353,732,172,0,NULL +10352,732,26,2,NULL +10351,732,66,4,NULL +10365,733,97,0,NULL +10364,733,176,0,NULL +10363,733,6,0,NULL +10362,733,99,0,NULL +10361,733,95,0,NULL +10360,733,66,3,NULL +10373,734,34,0,NULL +10372,734,100,0,NULL +10371,734,6,1,NULL +10370,734,170,2,NULL +10369,734,172,3,NULL +10368,734,95,4,NULL +10384,735,97,0,NULL +10383,735,99,0,NULL +10382,735,26,0,NULL +10381,735,176,0,NULL +10380,735,172,0,NULL +10379,735,95,1,NULL +10393,736,176,1,NULL +10392,736,95,2,NULL +10391,736,34,3,NULL +10390,736,170,4,NULL +10401,737,26,0,NULL +10400,737,89,0,NULL +10399,737,95,0,NULL +10398,737,172,2,NULL +10397,737,34,3,NULL +10219,741,101,0,NULL +10199,738,99,0,NULL +10198,738,66,0,NULL +10197,738,167,0,NULL +10196,738,170,1,NULL +10210,740,167,0,NULL +10204,739,95,0,NULL +10203,739,66,0,NULL +10201,739,172,4,NULL +10209,740,66,0,NULL +10208,740,172,0,NULL +10207,740,95,1,NULL +10218,741,99,0,NULL +10217,741,174,0,NULL +10216,741,167,0,NULL +10215,741,66,1,NULL +10212,741,95,6,NULL +10327,729,66,9,NULL +10246,744,99,0,NULL +10228,742,99,0,NULL +10227,742,102,0,NULL +10222,742,95,2,NULL +10235,743,103,0,NULL +10234,743,66,0,NULL +10233,743,167,0,NULL +10232,743,95,0,NULL +10245,744,174,0,NULL +10244,744,101,0,NULL +10243,744,175,0,NULL +10242,744,173,0,NULL +10241,744,172,0,NULL +10240,744,167,0,NULL +10250,745,170,3,NULL +10249,745,66,4,NULL +10248,745,95,6,NULL +10247,745,172,9,NULL +10028,749,117,0,NULL +10027,749,167,0,NULL +10026,749,6,2,NULL +10025,749,66,4,NULL +10024,749,32,6,NULL +10023,749,170,8,NULL +9903,757,115,0,NULL +9902,757,109,0,NULL +9901,757,121,0,NULL +9893,756,105,0,NULL +9900,757,120,0,NULL +9899,757,119,0,NULL +9898,757,114,0,NULL +10010,747,101,0,NULL +10009,747,167,0,NULL +10008,747,66,2,NULL +10007,747,6,4,NULL +10006,747,170,6,NULL +10005,747,32,8,NULL +10003,746,104,0,NULL +10002,746,66,0,NULL +10001,746,32,1,NULL +10000,746,167,3,NULL +9999,746,6,8,NULL +9998,746,170,8,NULL +9886,764,105,0,NULL +9885,764,125,0,NULL +9884,764,169,0,NULL +9883,764,124,0,NULL +9882,764,168,0,NULL +9881,764,113,0,NULL +9880,764,167,0,NULL +9879,764,95,0,NULL +9904,757,122,0,NULL +9875,763,32,0,NULL +9874,763,105,0,NULL +9873,763,167,0,NULL +9871,763,66,0,NULL +9872,763,117,0,NULL +9937,762,32,0,NULL +9936,762,167,0,NULL +9935,762,117,0,NULL +9933,762,6,4,NULL +9931,761,32,0,NULL +9930,761,167,0,NULL +9928,761,170,3,NULL +9916,759,32,0,NULL +9926,760,123,0,NULL +9925,760,118,0,NULL +9924,760,101,0,NULL +9923,760,167,0,NULL +9922,760,105,0,NULL +9921,760,169,0,NULL +9920,760,32,0,NULL +9915,759,167,0,NULL +9914,759,105,0,NULL +10022,748,116,0,NULL +9912,759,170,4,NULL +9910,758,117,0,NULL +9909,758,95,0,NULL +9908,758,6,2,NULL +9907,758,32,3,NULL +9906,758,170,6,NULL +9905,758,66,8,NULL +9897,757,113,0,NULL +9896,757,108,3,NULL +9895,757,110,5,NULL +9929,761,66,2,NULL +9892,756,95,0,NULL +9891,756,32,0,NULL +9890,756,66,0,NULL +9889,756,167,0,NULL +9888,756,6,6,NULL +9887,756,170,8,NULL +9669,775,32,0,NULL +9668,775,87,0,NULL +9667,775,105,0,NULL +9666,775,66,5,NULL +9665,775,6,10,NULL +9664,775,118,9,NULL +9663,774,66,0,NULL +9662,774,32,0,NULL +9661,774,87,2,NULL +9660,774,105,0,NULL +9659,774,6,6,NULL +9658,774,118,8,NULL +9657,773,32,0,NULL +9656,773,105,0,NULL +9655,773,87,0,NULL +9654,773,66,3,NULL +9653,773,6,6,NULL +9652,773,118,8,NULL +9651,772,105,0,NULL +9650,772,66,0,NULL +9649,772,32,0,NULL +9648,772,95,0,NULL +9647,772,6,3,NULL +9646,772,87,6,NULL +9645,772,118,8,NULL +9644,771,125,0,NULL +9643,771,32,0,NULL +9642,771,105,0,NULL +9641,771,66,2,NULL +9640,771,118,3,NULL +9639,771,87,4,NULL +9638,771,6,8,NULL +9637,770,32,0,NULL +9636,770,66,0,NULL +9635,770,87,0,NULL +9634,770,105,3,NULL +9633,770,118,6,NULL +9632,770,6,8,NULL +9631,769,87,0,NULL +9630,769,105,0,NULL +9629,769,66,2,NULL +9628,769,32,3,NULL +9627,769,6,6,NULL +9626,769,118,8,NULL +9927,761,6,8,NULL +9919,760,117,0,NULL +9918,760,66,6,NULL +9917,760,170,8,NULL +9934,762,66,2,NULL +9618,767,95,0,NULL +9617,767,105,0,NULL +9616,767,32,0,NULL +9615,767,6,2,NULL +9614,767,87,3,NULL +9613,767,66,6,NULL +9612,767,118,8,NULL +9611,766,127,0,NULL +9610,766,125,0,NULL +9609,766,118,0,NULL +9608,766,105,0,NULL +9607,766,32,0,NULL +9606,766,66,2,NULL +9605,766,6,6,NULL +9604,766,87,8,NULL +9603,765,105,3,NULL +9602,765,6,6,NULL +9601,765,87,8,NULL +11238,687,194,0,NULL +11231,686,170,0,NULL +11230,686,189,0,NULL +11229,686,176,0,NULL +11228,686,167,0,NULL +11221,685,90,0,NULL +11220,685,82,0,NULL +11219,685,190,0,NULL +11218,685,26,0,NULL +11210,684,193,0,NULL +11209,684,190,0,NULL +11208,684,183,0,NULL +11201,683,183,0,NULL +11200,683,180,0,NULL +11199,683,190,0,NULL +11194,682,11,0,NULL +11193,682,191,0,NULL +11186,681,194,0,NULL +11185,681,190,0,NULL +11184,681,11,0,NULL +11183,681,167,0,NULL +11182,681,183,0,NULL +11176,680,189,0,NULL +11175,680,183,0,NULL +11174,680,82,0,NULL +11173,680,190,0,NULL +11172,680,11,0,NULL +11164,679,66,0,NULL +11163,679,189,0,NULL +11162,679,176,0,NULL +11161,679,184,0,NULL +11147,697,189,0,NULL +11137,696,181,0,NULL +11136,696,189,0,NULL +11135,696,190,0,NULL +11126,695,181,0,NULL +11116,694,189,0,NULL +11115,694,183,0,NULL +11107,693,91,0,NULL +11096,692,176,0,NULL +11087,691,188,0,NULL +11078,690,187,0,NULL +11077,690,183,0,NULL +11150,698,11,3,NULL +11149,698,191,6,NULL +11148,698,167,9,NULL +11141,697,172,1,NULL +11140,697,187,2,NULL +11139,697,167,6,NULL +11138,697,176,9,NULL +11130,696,176,2,NULL +11129,696,167,3,NULL +11128,696,191,4,NULL +11127,696,6,9,NULL +11120,695,6,1,NULL +11119,695,66,3,NULL +11118,695,167,6,NULL +11117,695,191,9,NULL +11110,694,172,4,NULL +11109,694,66,6,NULL +11108,694,191,9,NULL +11100,693,167,2,NULL +11099,693,172,3,NULL +11098,693,66,4,NULL +11097,693,191,15,NULL +11090,692,167,3,NULL +11089,692,6,6,NULL +11088,692,191,9,NULL +11081,691,191,3,NULL +11080,691,167,6,NULL +11079,691,6,9,NULL +11072,690,167,0,NULL +11071,690,6,6,NULL +11070,690,66,9,NULL +10982,708,170,0,NULL +10974,707,172,0,NULL +10966,706,181,0,NULL +10958,705,176,0,NULL +10951,704,170,0,NULL +10950,704,181,0,NULL +10943,703,186,0,NULL +10934,702,11,0,NULL +10933,702,176,0,NULL +10978,708,181,3,NULL +10977,708,172,4,NULL +10976,708,183,6,NULL +10975,708,11,9,NULL +10969,707,6,3,NULL +10968,707,183,6,NULL +10967,707,66,9,NULL +10960,706,183,4,NULL +10959,706,66,9,NULL +10952,705,172,9,NULL +10945,704,66,6,NULL +10944,704,172,9,NULL +10938,703,183,1,NULL +10937,703,6,4,NULL +10936,703,66,6,NULL +10935,703,172,9,NULL +10928,702,66,6,NULL +10927,702,172,9,NULL +10921,701,170,4,NULL +10920,701,66,6,NULL +10919,701,172,9,NULL +10912,700,6,6,NULL +10911,700,66,9,NULL +10905,699,185,0,NULL +10904,699,176,0,NULL +10903,699,51,0,NULL +10902,699,182,0,NULL +10901,699,183,0,NULL +10900,699,181,0,NULL +10899,699,170,2,NULL +10898,699,66,4,NULL +10897,699,6,6,NULL +10896,699,172,9,NULL +10807,718,176,0,NULL +10790,716,11,0,NULL +10789,716,96,0,NULL +10780,715,172,0,NULL +10772,714,92,0,NULL +10763,713,182,0,NULL +10762,713,176,0,NULL +10754,712,181,0,NULL +10753,712,94,0,NULL +10746,711,176,0,NULL +10745,711,92,0,NULL +10738,710,95,0,NULL +10730,709,92,0,NULL +10729,709,94,0,NULL +10802,718,172,3,NULL +10801,718,6,6,NULL +10800,718,183,9,NULL +10793,717,181,4,NULL +10792,717,6,6,NULL +10791,717,66,9,NULL +10783,716,66,3,NULL +10782,716,170,6,NULL +10781,716,6,9,NULL +10774,715,66,6,NULL +10773,715,6,9,NULL +10766,714,181,3,NULL +10765,714,66,6,NULL +10764,714,6,9,NULL +10756,713,66,6,NULL +10755,713,172,9,NULL +10748,712,66,6,NULL +10747,712,183,9,NULL +10740,711,170,6,NULL +10739,711,172,9,NULL +10733,710,66,3,NULL +10732,710,6,6,NULL +10731,710,172,9,NULL +10724,709,172,4,NULL +10723,709,66,9,NULL +10622,727,32,0,NULL +10621,727,26,0,NULL +10612,726,54,0,NULL +10602,725,173,0,NULL +10601,725,179,0,NULL +10587,724,54,0,NULL +10586,724,177,0,NULL +10575,723,54,0,NULL +10574,723,86,0,NULL +10562,722,86,0,NULL +10561,722,54,0,NULL +10551,721,92,0,NULL +10540,720,94,0,NULL +10539,720,54,0,NULL +10529,719,95,0,NULL +10528,719,86,0,NULL +10634,728,26,0,NULL +10633,728,176,0,NULL +10632,728,51,0,NULL +10631,728,180,0,NULL +10630,728,167,0,NULL +10629,728,89,0,NULL +10628,728,95,0,NULL +10627,728,6,2,NULL +10626,728,170,3,NULL +10625,728,66,4,NULL +10624,728,34,6,NULL +10623,728,172,9,NULL +10615,727,66,4,NULL +10614,727,34,6,NULL +10613,727,172,9,NULL +10604,726,172,4,NULL +10603,726,66,9,NULL +10592,725,34,2,NULL +10591,725,94,3,NULL +10590,725,170,4,NULL +10589,725,66,6,NULL +10588,725,172,9,NULL +10578,724,66,4,NULL +10577,724,172,6,NULL +10576,724,6,9,NULL +10566,723,176,1,NULL +10565,723,66,4,NULL +10564,723,6,6,NULL +10563,723,172,9,NULL +10554,722,66,0,NULL +10553,722,170,6,NULL +10552,722,172,9,NULL +10544,721,94,3,NULL +10543,721,6,4,NULL +10542,721,34,6,NULL +10541,721,172,9,NULL +10531,720,170,6,NULL +10530,720,172,9,NULL +10521,719,6,3,NULL +10520,719,170,4,NULL +10519,719,66,9,NULL +10403,737,99,0,NULL +10402,737,178,0,NULL +10394,736,26,0,NULL +10387,735,177,0,NULL +10386,735,86,0,NULL +10385,735,174,0,NULL +10375,734,176,0,NULL +10374,734,97,0,NULL +10356,732,32,0,NULL +10355,732,176,0,NULL +10348,731,176,0,NULL +10396,737,170,6,NULL +10395,737,66,9,NULL +10389,736,66,6,NULL +10388,736,172,9,NULL +10378,735,6,3,NULL +10377,735,170,4,NULL +10376,735,66,9,NULL +10367,734,26,6,NULL +10366,734,66,9,NULL +10359,733,170,4,NULL +10358,733,26,6,NULL +10357,733,172,9,NULL +10350,732,170,6,NULL +10349,732,95,9,NULL +10342,731,172,9,NULL +10335,730,6,6,NULL +10334,730,170,9,NULL +10239,744,66,2,NULL +10226,742,97,0,NULL +10225,742,167,0,NULL +10224,742,172,0,NULL +10214,741,170,2,NULL +10206,740,170,2,NULL +10238,744,170,4,NULL +10237,744,95,6,NULL +10236,744,6,9,NULL +10231,743,170,2,NULL +10230,743,6,6,NULL +10229,743,172,9,NULL +10223,742,66,0,NULL +10221,742,170,4,NULL +10220,742,6,19,NULL +10213,741,172,4,NULL +10211,741,6,9,NULL +10205,740,6,9,NULL +10202,739,170,1,NULL +10200,739,6,9,NULL +10195,738,95,2,NULL +10194,738,6,6,NULL +10193,738,172,9,NULL +10070,755,105,0,NULL +10069,755,171,0,NULL +10063,754,105,0,NULL +10062,754,167,0,NULL +10055,753,66,0,NULL +10050,752,171,0,NULL +10049,752,167,0,NULL +10042,751,106,0,NULL +10041,751,118,0,NULL +10029,749,106,0,NULL +10012,747,171,0,NULL +10011,747,106,0,NULL +10004,746,105,0,NULL +10021,748,115,0,NULL +10020,748,114,0,NULL +10019,748,113,0,NULL +10018,748,112,0,NULL +10017,748,111,1,NULL +10016,748,110,2,NULL +10015,748,109,3,NULL +10014,748,108,4,NULL +10013,748,107,8,NULL +9894,757,107,8,NULL +9911,759,6,8,NULL +9878,764,32,2,NULL +9877,764,6,4,NULL +9876,764,170,8,NULL +9870,763,6,6,NULL +9869,763,170,8,NULL +9932,762,170,8,NULL +10068,755,106,0,NULL +10067,755,167,0,NULL +10066,755,66,2,NULL +10065,755,170,4,NULL +10064,755,32,8,NULL +10061,754,101,0,NULL +10060,754,104,0,NULL +10059,754,170,0,NULL +10058,754,95,1,NULL +10057,754,171,3,NULL +10056,754,6,8,NULL +10054,753,167,0,NULL +10053,753,6,3,NULL +10052,753,32,4,NULL +10051,753,170,8,NULL +10048,752,101,0,NULL +10047,752,117,0,NULL +10046,752,66,0,NULL +10045,752,6,1,NULL +10044,752,32,6,NULL +10043,752,170,8,NULL +10040,751,171,0,NULL +10039,751,66,0,NULL +10038,751,6,0,NULL +10037,751,167,0,NULL +10036,751,32,2,NULL +10035,751,170,8,NULL +10034,750,106,0,NULL +10033,750,66,0,NULL +10032,750,32,2,NULL +10031,750,6,3,NULL +10030,750,170,8,NULL +11239,687,190,0,NULL +11246,688,66,0,NULL +11247,688,190,0,NULL +11248,688,194,0,NULL +11256,689,194,0,NULL +11257,689,176,0,NULL +11258,689,189,0,NULL +11266,667,183,0,NULL +11267,667,190,0,NULL +11268,667,89,0,NULL +11269,667,170,0,NULL +11270,667,66,0,NULL +11271,667,195,0,NULL +11278,668,66,0,NULL +11279,668,191,0,NULL +11286,669,190,0,NULL +11287,669,191,0,NULL +11288,669,196,0,NULL +11289,669,194,0,NULL +11297,670,11,0,NULL +11298,670,191,0,NULL +11299,670,194,0,NULL +11306,671,180,0,NULL +11307,671,11,0,NULL +11308,671,187,0,NULL +11309,671,195,0,NULL +11317,672,180,0,NULL +11318,672,191,0,NULL +11326,673,195,0,NULL +11327,673,82,0,NULL +11328,673,190,0,NULL +11329,673,194,0,NULL +11337,674,26,0,NULL +11338,674,1,0,NULL +11339,674,82,0,NULL +11340,674,195,0,NULL +11341,674,11,0,NULL +11348,675,180,0,NULL +11349,675,191,0,NULL +11350,675,11,0,NULL +11351,675,190,0,NULL +11352,675,195,0,NULL +11359,676,6,0,NULL +11360,676,191,0,NULL +11361,676,11,0,NULL +11362,676,194,0,NULL +11369,677,195,0,NULL +11370,677,191,0,NULL +11371,677,194,0,NULL +11372,677,6,0,NULL +11373,677,82,0,NULL +11380,678,82,0,NULL +11381,678,191,0,NULL +11382,678,6,0,NULL +11523,656,66,0,NULL +11521,656,180,6,NULL +11528,657,187,6,NULL +11534,658,182,6,NULL +11541,659,180,6,NULL +11547,660,182,4,NULL +11552,661,182,6,NULL +11563,663,196,9,NULL +11572,664,187,2,NULL +11570,664,180,4,NULL +11578,665,182,6,NULL +11584,666,182,6,NULL +11520,656,196,9,NULL +11527,657,196,9,NULL +11533,658,180,9,NULL +11540,659,196,9,NULL +11546,660,196,9,NULL +11551,661,196,9,NULL +11557,662,182,9,NULL +11569,664,182,9,NULL +11577,665,180,9,NULL +11583,666,187,9,NULL +11532,657,180,0,NULL +11538,658,6,0,NULL +11539,658,66,0,NULL +11545,659,66,0,NULL +11550,660,6,0,NULL +11556,661,66,0,NULL +11562,662,66,0,NULL +11576,664,183,0,NULL +11582,665,187,0,NULL +11588,666,180,0,NULL +11716,643,187,6,NULL +11715,643,34,9,NULL +11724,644,187,6,NULL +11723,644,37,9,NULL +11733,645,34,6,NULL +11732,645,32,9,NULL +11741,646,66,9,NULL +11749,647,37,6,NULL +11748,647,32,9,NULL +11759,648,37,6,NULL +11758,648,32,9,NULL +11768,649,34,6,NULL +11767,649,32,9,NULL +11777,650,6,6,NULL +11776,650,32,12,NULL +11788,651,34,4,NULL +11787,651,6,15,NULL +11799,652,37,6,NULL +11798,652,6,9,NULL +11810,653,37,4,NULL +11809,653,6,9,NULL +11821,654,66,6,NULL +11820,654,32,9,NULL +11831,655,6,9,NULL +11722,643,86,0,NULL +11730,644,86,0,NULL +11731,644,198,0,NULL +11739,645,6,0,NULL +11740,645,198,0,NULL +11747,646,86,0,NULL +11756,647,198,0,NULL +11757,647,85,0,NULL +11765,648,198,0,NULL +11766,648,85,0,NULL +11774,649,82,0,NULL +11775,649,198,0,NULL +11785,650,198,0,NULL +11786,650,85,0,NULL +11796,651,86,0,NULL +11797,651,85,0,NULL +11807,652,32,0,NULL +11808,652,85,0,NULL +11818,653,34,0,NULL +11819,653,25,0,NULL +11829,654,86,0,NULL +11830,654,198,0,NULL +11839,655,25,0,NULL +11847,632,200,0,NULL +11848,632,199,0,NULL +11849,632,66,0,NULL +11857,633,180,0,NULL +11858,633,200,0,NULL +11866,634,34,0,NULL +11867,634,82,0,NULL +11874,635,25,0,NULL +11875,635,1,0,NULL +11876,635,180,0,NULL +11877,635,201,0,NULL +11884,636,34,0,NULL +11885,636,200,0,NULL +11886,636,199,0,NULL +11887,636,6,0,NULL +11894,637,34,0,NULL +11895,637,201,0,NULL +11896,637,199,0,NULL +11897,637,1,0,NULL +11898,637,6,0,NULL +11905,638,66,0,NULL +11906,638,199,0,NULL +11907,638,82,0,NULL +11908,638,1,0,NULL +11915,639,199,0,NULL +11916,639,25,0,NULL +11917,639,6,0,NULL +11925,640,34,0,NULL +11926,640,199,0,NULL +11927,640,6,0,NULL +11928,640,85,0,NULL +11935,641,82,0,NULL +11936,641,63,0,NULL +11937,641,34,0,NULL +11944,642,1,0,NULL +11945,642,199,0,NULL +11946,642,63,0,NULL +11947,642,180,0,NULL +12076,623,66,9,NULL +12049,620,25,9,NULL +12058,621,1,9,NULL +12067,622,32,9,NULL +12175,605,32,9,NULL +12037,606,63,0,NULL +12038,606,37,0,NULL +12185,607,1,6,NULL +12184,607,25,9,NULL +12057,620,82,0,NULL +12066,621,63,0,NULL +12075,622,66,0,NULL +12084,623,37,0,NULL +12095,624,32,9,NULL +12104,624,81,0,NULL +12112,625,6,0,NULL +12113,625,66,0,NULL +12122,626,63,0,NULL +12123,626,81,0,NULL +12124,626,83,0,NULL +12132,627,82,0,NULL +12133,627,32,0,NULL +12134,627,81,0,NULL +12143,628,34,0,NULL +12144,628,84,0,NULL +12145,628,6,0,NULL +12153,629,82,0,NULL +12154,629,25,0,NULL +12155,629,81,0,NULL +12163,630,66,0,NULL +12164,630,32,0,NULL +12172,631,82,0,NULL +12173,631,66,0,NULL +12174,631,81,0,NULL +12183,605,63,0,NULL +12192,607,37,0,NULL +12193,607,66,0,NULL +12201,608,80,0,NULL +12202,608,6,0,NULL +12203,608,63,0,NULL +12212,609,37,0,NULL +12213,609,80,0,NULL +12214,609,6,0,NULL +12223,610,80,0,NULL +12224,610,66,0,NULL +12225,610,81,0,NULL +12233,611,63,0,NULL +12234,611,80,0,NULL +12235,611,58,0,NULL +12260,612,25,6,NULL +12259,612,32,9,NULL +12271,613,32,6,NULL +12270,613,1,9,NULL +12268,612,80,0,NULL +12269,612,57,0,NULL +12280,613,81,0,NULL +12281,613,63,0,NULL +12290,614,34,0,NULL +12291,614,81,0,NULL +12292,614,57,0,NULL +12300,615,37,0,NULL +12301,615,66,0,NULL +12310,616,37,0,NULL +12311,616,57,0,NULL +12312,616,58,0,NULL +12320,617,58,0,NULL +12321,617,66,0,NULL +12322,617,80,0,NULL +12323,617,57,0,NULL +12332,618,63,0,NULL +12333,618,6,0,NULL +12334,618,57,0,NULL +12342,619,6,0,NULL +12343,619,63,0,NULL +12344,619,57,0,NULL +12345,619,25,0,NULL +12353,590,32,0,NULL +12354,590,63,0,NULL +12355,590,80,0,NULL +12356,590,58,0,NULL +12364,591,66,0,NULL +12365,591,26,0,NULL +12366,591,58,0,NULL +12367,591,80,0,NULL +12376,592,32,0,NULL +12377,592,6,0,NULL +12378,592,64,0,NULL +12389,593,26,0,NULL +12390,593,80,0,NULL +12391,593,32,0,NULL +12392,593,78,0,NULL +12404,594,32,0,NULL +12405,594,79,0,NULL +12406,594,63,0,NULL +12407,594,64,0,NULL +12418,595,37,0,NULL +12419,595,80,0,NULL +12420,595,63,0,NULL +12421,595,77,0,NULL +12422,595,78,0,NULL +12432,596,6,0,NULL +12433,596,63,0,NULL +12434,596,32,0,NULL +12435,596,66,0,NULL +12447,597,63,0,NULL +12448,597,64,0,NULL +12449,597,77,0,NULL +12459,598,34,0,NULL +12460,598,63,0,NULL +12461,598,64,0,NULL +12462,598,57,0,NULL +12475,599,64,0,NULL +12476,599,79,0,NULL +12477,599,57,0,NULL +12478,599,76,0,NULL +12479,599,74,0,NULL +12492,600,80,0,NULL +12493,600,57,0,NULL +12494,600,77,0,NULL +12495,600,78,0,NULL +12496,600,74,0,NULL +12507,601,32,0,NULL +12508,601,25,0,NULL +12509,601,80,0,NULL +12510,601,66,0,NULL +12511,601,57,0,NULL +12522,602,66,0,NULL +12523,602,64,0,NULL +12524,602,63,0,NULL +12525,602,57,0,NULL +12526,602,78,0,NULL +12537,603,80,0,NULL +12538,603,66,0,NULL +12539,603,58,0,NULL +12540,603,37,0,NULL +12541,603,57,0,NULL +12553,604,67,0,NULL +12554,604,63,0,NULL +12555,604,37,0,NULL +12556,604,73,0,NULL +12567,576,3,0,NULL +12568,576,73,0,NULL +12569,576,66,0,NULL +12570,576,56,0,NULL +12571,576,63,0,NULL +12583,577,25,0,NULL +12584,577,67,0,NULL +12585,577,66,0,NULL +12586,577,37,0,NULL +12599,578,37,0,NULL +12600,578,63,0,NULL +12601,578,56,0,NULL +12602,578,26,0,NULL +12614,579,66,0,NULL +12615,579,64,0,NULL +12616,579,25,0,NULL +12617,579,67,0,NULL +12618,579,56,0,NULL +12630,580,3,0,NULL +12631,580,75,0,NULL +12632,580,66,0,NULL +12633,580,57,0,NULL +12634,580,56,0,NULL +12645,581,37,0,NULL +12646,581,32,0,NULL +12647,581,3,0,NULL +12648,581,64,0,NULL +12775,582,73,3,NULL +12774,582,34,6,NULL +12773,582,6,9,NULL +12789,583,6,6,NULL +12788,583,64,9,NULL +12806,584,1,4,NULL +12805,584,64,6,NULL +12804,584,6,9,NULL +12822,585,25,4,NULL +12821,585,34,6,NULL +12820,585,1,9,NULL +12837,586,3,6,NULL +12836,586,34,9,NULL +12852,587,202,2,NULL +12851,587,64,3,NULL +12850,587,37,4.5,NULL +12869,588,34,3,NULL +12868,588,1,6,NULL +12867,588,6,9,NULL +12885,589,64,3,NULL +12884,589,1,6,NULL +12883,589,6,9,NULL +12785,582,56,0,NULL +12786,582,202,0,NULL +12787,582,37,0,NULL +12802,583,66,0,NULL +12803,583,74,0,NULL +12817,584,37,0,NULL +12818,584,56,0,NULL +12819,584,67,0,NULL +12833,585,3,0,NULL +12834,585,57,0,NULL +12835,585,74,0,NULL +12848,586,32,0,NULL +12849,586,74,0,NULL +12864,587,73,0,NULL +12865,587,74,0,NULL +12866,587,56,0,NULL +12880,588,73,0,NULL +12881,588,66,0,NULL +12882,588,74,0,NULL +12894,589,73,0,NULL +12895,589,75,0,NULL +12896,589,3,0,NULL +12905,560,56,0,NULL +12906,560,27,0,NULL +12907,560,32,0,NULL +12908,560,67,0,NULL +12909,560,66,0,NULL +12920,561,57,0,NULL +12921,561,64,0,NULL +12922,561,56,0,NULL +12923,561,27,0,NULL +12924,561,204,0,NULL +12935,562,67,0,NULL +12936,562,73,0,NULL +12937,562,32,0,NULL +12938,562,59,0,NULL +12939,562,64,0,NULL +12950,563,25,0,NULL +12951,563,67,0,NULL +12952,563,37,0,NULL +12953,563,56,0,NULL +12954,563,182,0,NULL +12955,563,3,0,NULL +12956,563,64,0,NULL +12967,564,204,0,NULL +12968,564,57,0,NULL +12969,564,37,0,NULL +12970,564,64,0,NULL +12971,564,32,0,NULL +12972,564,56,0,NULL +12983,565,57,0,NULL +12984,565,32,0,NULL +12985,565,63,0,NULL +12986,565,70,0,NULL +12987,565,64,0,NULL +12999,566,59,0,NULL +13000,566,70,0,NULL +13001,566,56,0,NULL +13002,566,182,0,NULL +13003,566,67,0,NULL +13013,567,63,0,NULL +13014,567,64,0,NULL +13015,567,57,0,NULL +13016,567,56,0,NULL +13017,567,6,0,NULL +13018,567,182,0,NULL +13029,568,37,0,NULL +13030,568,27,0,NULL +13031,568,182,0,NULL +13032,568,57,0,NULL +13033,568,59,0,NULL +13044,569,59,0,NULL +13045,569,37,0,NULL +13046,569,27,0,NULL +13047,569,57,0,NULL +13048,569,182,0,NULL +13058,570,57,0,NULL +13059,570,56,0,NULL +13060,570,204,0,NULL +13061,570,58,0,NULL +13062,570,59,0,NULL +13073,571,204,0,NULL +13074,571,27,0,NULL +13075,571,70,0,NULL +13076,571,56,0,NULL +13077,571,59,0,NULL +13089,572,204,0,NULL +13090,572,1,0,NULL +13091,572,70,0,NULL +13092,572,59,0,NULL +13103,573,64,0,NULL +13104,573,27,0,NULL +13105,573,56,0,NULL +13106,573,59,0,NULL +13116,574,59,0,NULL +13117,574,27,0,NULL +13118,574,204,0,NULL +13119,574,32,0,NULL +13120,574,57,0,NULL +13131,575,37,0,NULL +13132,575,67,0,NULL +13133,575,56,0,NULL +13134,575,204,0,NULL +13135,575,74,0,NULL +13145,543,27,0,NULL +13146,543,25,0,NULL +13147,543,1,0,NULL +13157,544,37,0,NULL +13158,544,57,0,NULL +13159,544,59,0,NULL +13160,544,66,0,NULL +13170,545,37,0,NULL +13171,545,66,0,NULL +13172,545,27,0,NULL +13173,545,58,0,NULL +13183,546,63,0,NULL +13184,546,57,0,NULL +13185,546,34,0,NULL +13186,546,58,0,NULL +13198,547,64,0,NULL +13199,547,57,0,NULL +13200,547,67,0,NULL +13201,547,68,0,NULL +13202,547,66,0,NULL +13212,548,64,0,NULL +13213,548,34,0,NULL +13214,548,25,0,NULL +13215,548,56,0,NULL +13216,548,37,0,NULL +13228,549,59,0,NULL +13229,549,27,0,NULL +13230,549,57,0,NULL +13231,549,56,0,NULL +13232,549,66,0,NULL +13244,550,37,0,NULL +13245,550,56,0,NULL +13246,550,63,0,NULL +13247,550,59,0,NULL +13248,550,66,0,NULL +13261,551,58,0,NULL +13262,551,68,0,NULL +13263,551,67,0,NULL +13264,551,66,0,NULL +13278,552,57,0,NULL +13279,552,64,0,NULL +13280,552,68,0,NULL +13281,552,66,0,NULL +13282,552,69,0,NULL +13293,553,1,0,NULL +13294,553,27,0,NULL +13295,553,67,0,NULL +13296,553,56,0,NULL +13297,553,66,0,NULL +13307,554,63,0,NULL +13308,554,59,0,NULL +13309,554,57,0,NULL +13310,554,32,0,NULL +13311,554,27,0,NULL +13324,555,4,0,NULL +13325,555,32,0,NULL +13326,555,25,0,NULL +13327,555,64,0,NULL +13328,555,66,0,NULL +13341,556,67,0,NULL +13342,556,63,0,NULL +13343,556,56,0,NULL +13344,556,70,0,NULL +13345,556,66,0,NULL +13346,556,71,0,NULL +13357,557,56,0,NULL +13358,557,25,0,NULL +13359,557,37,0,NULL +13360,557,4,0,NULL +13361,557,67,0,NULL +13372,558,64,0,NULL +13373,558,56,0,NULL +13374,558,34,0,NULL +13375,558,27,0,NULL +13376,558,4,0,NULL +13385,559,72,0,NULL +13386,559,37,0,NULL +13387,559,32,0,NULL +13388,559,57,0,NULL +13401,527,57,0,NULL +13402,527,60,0,NULL +13403,527,55,0,NULL +13404,527,64,0,NULL +13416,528,59,0,NULL +13417,528,57,0,NULL +13418,528,63,0,NULL +13419,528,60,0,NULL +13420,528,55,0,NULL +13421,528,64,0,NULL +13436,529,56,0,NULL +13437,529,64,0,NULL +13438,529,65,0,NULL +13439,529,58,0,NULL +13440,529,57,0,NULL +13454,530,34,0,NULL +13455,530,60,0,NULL +13456,530,57,0,NULL +13457,530,55,0,NULL +13458,530,64,0,NULL +13474,531,55,0,NULL +13475,531,64,0,NULL +13476,531,65,0,NULL +13477,531,60,0,NULL +13493,532,56,0,NULL +13494,532,64,0,NULL +13495,532,55,0,NULL +13496,532,60,0,NULL +13509,533,58,0,NULL +13510,533,57,0,NULL +13511,533,56,0,NULL +13512,533,60,0,NULL +13513,533,55,0,NULL +13525,534,25,0,NULL +13526,534,4,0,NULL +13527,534,59,0,NULL +13528,534,63,0,NULL +13529,534,57,0,NULL +13542,535,63,0,NULL +13543,535,56,0,NULL +13544,535,4,0,NULL +13545,535,60,0,NULL +13546,535,57,0,NULL +13558,536,56,0,NULL +13559,536,60,0,NULL +13560,536,57,0,NULL +13561,536,32,0,NULL +13562,536,3,0,NULL +13575,537,4,0,NULL +13576,537,54,0,NULL +13577,537,58,0,NULL +13578,537,60,0,NULL +13579,537,65,0,NULL +13591,538,57,0,NULL +13592,538,4,0,NULL +13593,538,3,0,NULL +13594,538,21,0,NULL +13595,538,60,0,NULL +13596,538,54,0,NULL +13610,539,25,0,NULL +13611,539,57,0,NULL +13612,539,21,0,NULL +13613,539,54,0,NULL +13625,540,21,0,NULL +13626,540,60,0,NULL +13627,540,4,0,NULL +13628,540,63,0,NULL +13629,540,54,0,NULL +13641,541,32,0,NULL +13642,541,21,0,NULL +13643,541,60,0,NULL +13644,541,54,0,NULL +13645,541,34,0,NULL +13646,541,63,0,NULL +13658,542,27,0,NULL +13659,542,63,0,NULL +13660,542,58,0,NULL +13661,542,56,0,NULL +13662,542,60,0,NULL +13694,512,32,8,NULL +13693,512,27,12,NULL +13689,513,54,0,NULL +13690,513,59,0,NULL +13691,513,204,0,NULL +13692,513,60,0,NULL +13706,512,60,0,NULL +13707,512,54,0,NULL +13718,515,54,0,NULL +13719,515,56,0,NULL +13720,515,60,0,NULL +13721,515,59,0,NULL +13722,515,4,0,NULL +13735,516,59,0,NULL +13736,516,57,0,NULL +13737,516,60,0,NULL +13738,516,61,0,NULL +13750,517,204,0,NULL +13751,517,4,0,NULL +13752,517,51,0,NULL +13753,517,60,0,NULL +13754,517,57,0,NULL +13755,517,61,0,NULL +13766,518,56,0,NULL +13767,518,59,0,NULL +13768,518,58,0,NULL +13769,518,57,0,NULL +13770,518,60,0,NULL +13783,519,204,0,NULL +13784,519,54,0,NULL +13785,519,57,0,NULL +13786,519,60,0,NULL +13797,520,59,0,NULL +13798,520,56,0,NULL +13799,520,204,0,NULL +13800,520,54,0,NULL +13801,520,60,0,NULL +13819,521,6,3,NULL +13818,521,27,4,NULL +13817,521,3,15,NULL +13829,521,54,0,NULL +13830,521,57,0,NULL +13831,521,60,0,NULL +13842,523,1,0,NULL +13843,523,54,0,NULL +13844,523,56,0,NULL +13845,523,57,0,NULL +13846,523,60,0,NULL +13859,524,58,0,NULL +13860,524,1,0,NULL +13861,524,57,0,NULL +13862,524,60,0,NULL +13863,524,62,0,NULL +13877,525,54,0,NULL +13878,525,57,0,NULL +13879,525,59,0,NULL +13880,525,60,0,NULL +13892,526,59,0,NULL +13893,526,32,0,NULL +13894,526,27,0,NULL +13895,526,51,0,NULL +13896,526,62,0,NULL +13897,526,60,0,NULL +13898,514,204,1,NULL +13899,522,204,0,NULL +13900,337,6,43,NULL +13901,337,1,21,NULL +13902,337,9,16,NULL +13903,337,131,18,NULL +13904,337,10,2,NULL +13905,337,3,1,NULL +13906,337,4,0,NULL +13907,337,5,0,NULL +13908,337,205,0,NULL +13909,337,15,0,NULL +13910,337,164,0,NULL +13911,337,166,0,NULL +13912,338,1,33,NULL +13913,338,4,18,NULL +13914,338,6,27,NULL +13915,338,131,11,NULL +13916,338,10,6,NULL +13917,338,3,4,NULL +13918,338,9,2,NULL +13919,338,5,0,NULL +13920,338,15,0,NULL +13921,338,205,0,NULL +13922,338,164,0,NULL +13923,338,166,0,NULL +13924,339,9,43,NULL +13925,339,131,15,NULL +13926,339,4,12,NULL +13927,339,10,10,NULL +13928,339,1,12,NULL +13929,339,6,6,NULL +13930,339,5,2,NULL +13931,339,3,1,NULL +13932,339,166,0,NULL +13933,339,164,0,NULL +13934,339,205,0,NULL +13935,339,15,0,NULL +13936,340,1,43,NULL +13937,340,131,16,NULL +13938,340,6,14,NULL +13939,340,4,16,NULL +13940,340,9,12,NULL +13941,340,10,0,NULL +13942,340,3,0,NULL +13943,340,5,0,NULL +13944,340,205,0,NULL +13945,340,164,0,NULL +13946,340,166,0,NULL +13947,340,15,0,NULL +13948,341,9,40,NULL +13949,341,6,26,NULL +13950,341,131,12,NULL +13951,341,1,10,NULL +13952,341,10,6,NULL +13953,341,4,4,NULL +13954,341,3,2,NULL +13955,341,5,1,NULL +13956,341,15,0,NULL +13957,341,205,0,NULL +13958,341,166,0,NULL +13959,341,164,0,NULL +13960,342,9,43,NULL +13961,342,4,15,NULL +13962,342,6,20,NULL +13963,342,1,10,NULL +13964,342,131,6,NULL +13965,342,10,6,NULL +13966,342,5,1,NULL +13967,342,164,0,NULL +13968,342,205,0,NULL +13969,342,3,0,NULL +13970,342,15,0,NULL +13971,342,166,0,NULL +13972,343,1,43,NULL +13973,343,9,15,NULL +13974,343,131,22,NULL +13975,343,4,8,NULL +13976,343,6,10,NULL +13977,343,10,2,NULL +13978,343,15,1,NULL +13979,343,5,0,NULL +13980,343,3,0,NULL +13981,343,166,0,NULL +13982,343,164,0,NULL +13983,343,205,0,NULL +13984,344,1,43,NULL +13985,344,6,15,NULL +13986,344,9,22,NULL +13987,344,131,8,NULL +13988,344,4,6,NULL +13989,344,5,4,NULL +13990,344,10,3,NULL +13991,344,3,0,NULL +13992,344,205,0,NULL +13993,344,164,0,NULL +13994,344,166,0,NULL +13995,344,15,0,NULL +13996,345,9,25,NULL +13997,345,1,33,NULL +13998,345,3,12,NULL +13999,345,4,10,NULL +14000,345,10,8,NULL +14001,345,15,6,NULL +14002,345,6,4,NULL +14003,345,5,2,NULL +14004,345,131,1,NULL +14005,345,166,0,NULL +14006,345,164,0,NULL +14007,345,205,0,NULL +14008,346,9,31,NULL +14009,346,1,30,NULL +14010,346,131,17,NULL +14011,346,3,11,NULL +14012,346,15,8,NULL +14013,346,10,4,NULL +14014,346,5,0,NULL +14015,346,4,0,NULL +14016,346,6,0,NULL +14017,346,205,0,NULL +14018,346,166,0,NULL +14019,346,164,0,NULL +14020,347,6,43,NULL +14021,347,9,23,NULL +14022,347,1,22,NULL +14023,347,4,7,NULL +14024,347,131,6,NULL +14025,347,15,0,NULL +14026,347,3,0,NULL +14027,347,5,0,NULL +14028,347,10,0,NULL +14029,347,166,0,NULL +14030,347,164,0,NULL +14031,347,205,0,NULL +14032,348,9,40,NULL +14033,348,6,30,NULL +14034,348,4,10,NULL +14035,348,3,9,NULL +14036,348,15,8,NULL +14037,348,1,4,NULL +14038,348,131,0,NULL +14039,348,5,0,NULL +14040,348,10,0,NULL +14041,348,205,0,NULL +14042,348,166,0,NULL +14043,348,164,0,NULL +14044,349,1,25,NULL +14045,349,9,18,NULL +14046,349,4,17,NULL +14047,349,6,12,NULL +14048,349,10,11,NULL +14049,349,131,14,NULL +14050,349,15,4,NULL +14051,349,5,0,NULL +14052,349,3,0,NULL +14053,349,205,0,NULL +14054,349,166,0,NULL +14055,349,164,0,NULL +14056,350,6,40,NULL +14057,350,1,18,NULL +14058,350,9,20,NULL +14059,350,131,12,NULL +14060,350,3,7,NULL +14061,350,4,4,NULL +14062,350,5,0,NULL +14063,350,10,0,NULL +14064,350,15,0,NULL +14065,350,166,0,NULL +14066,350,205,0,NULL +14067,350,164,0,NULL +14068,351,6,29,NULL +14069,351,9,33,NULL +14070,351,1,12,NULL +14071,351,131,10,NULL +14072,351,3,9,NULL +14073,351,4,6,NULL +14074,351,10,2,NULL +14075,351,5,0,NULL +14076,351,166,0,NULL +14077,351,205,0,NULL +14078,351,15,0,NULL +14079,351,164,0,NULL +14080,352,9,43,NULL +14081,352,6,15,NULL +14082,352,1,22,NULL +14083,352,131,8,NULL +14084,352,15,10,NULL +14085,352,3,2,NULL +14086,352,5,1,NULL +14087,352,205,0,NULL +14088,352,166,0,NULL +14089,352,164,0,NULL +14090,352,10,0,NULL +14091,352,4,0,NULL +14092,353,6,40,NULL +14093,353,1,18,NULL +14094,353,131,12,NULL +14095,353,4,10,NULL +14096,353,10,8,NULL +14097,353,3,7,NULL +14098,353,15,6,NULL +14099,353,5,0,NULL +14100,353,205,0,NULL +14101,353,164,0,NULL +14102,353,9,0,NULL +14103,353,166,0,NULL +14104,354,9,43,NULL +14105,354,6,15,NULL +14106,354,1,22,NULL +14107,354,131,14,NULL +14108,354,3,4,NULL +14109,354,4,2,NULL +14110,354,15,1,NULL +14111,354,5,0,NULL +14112,354,10,0,NULL +14113,354,205,0,NULL +14114,354,166,0,NULL +14115,354,164,0,NULL +14116,355,9,29,NULL +14117,355,1,33,NULL +14118,355,131,12,NULL +14119,355,4,18,NULL +14120,355,6,7,NULL +14121,355,5,2,NULL +14122,355,15,0,NULL +14123,355,3,0,NULL +14124,355,10,0,NULL +14125,355,205,0,NULL +14126,355,166,0,NULL +14127,355,164,0,NULL +14128,75,7,11,NULL +14129,841,9,35,NULL +14130,841,1,26,NULL +14131,841,4,15,NULL +14132,841,6,18,NULL +14133,841,15,0,NULL +14134,841,5,4,NULL +14135,841,10,3,NULL +14136,841,205,0,NULL +14137,841,166,0,NULL +14138,841,3,0,NULL +14139,841,131,0,NULL +14140,842,9,37,NULL +14141,842,1,22,NULL +14142,842,4,15,NULL +14143,842,6,18,NULL +14144,842,15,6,NULL +14145,842,131,2,NULL +14146,842,10,1,NULL +14147,842,5,0,NULL +14148,842,205,0,NULL +14149,842,166,0,NULL +14150,842,164,0,NULL +14151,842,3,0,NULL +14152,843,1,37,NULL +14153,843,9,33,NULL +14154,843,131,14,NULL +14155,843,6,14,NULL +14156,843,4,2,NULL +14157,843,15,1,NULL +14158,843,10,0,NULL +14159,843,3,0,NULL +14160,843,5,0,NULL +14161,843,205,0,NULL +14162,843,166,0,NULL +14163,843,164,0,NULL +14164,844,9,43,NULL +14165,844,6,15,NULL +14166,844,1,20,NULL +14167,844,131,10,NULL +14168,844,4,10,NULL +14169,844,5,2,NULL +14170,844,15,1,NULL +14171,844,10,0,NULL +14172,844,3,0,NULL +14173,844,205,0,NULL +14174,844,166,0,NULL +14175,844,164,0,NULL +14176,845,9,37,NULL +14177,845,1,33,NULL +14178,845,6,10,NULL +14179,845,131,14,NULL +14180,845,4,4,NULL +14181,845,15,3,NULL +14182,845,10,0,NULL +14183,845,5,0,NULL +14184,845,3,0,NULL +14185,845,205,0,NULL +14186,845,166,0,NULL +14187,845,164,0,NULL +14188,846,9,37,NULL +14189,846,6,18,NULL +14190,846,1,23,NULL +14191,846,15,10,NULL +14192,846,10,6,NULL +14193,846,4,4,NULL +14194,846,3,2,NULL +14195,846,5,1,NULL +14196,846,131,0,NULL +14197,846,205,0,NULL +14198,846,166,0,NULL +14199,846,164,0,NULL +14200,847,1,25,NULL +14201,847,9,33,NULL +14202,847,131,12,NULL +14203,847,4,10,NULL +14204,847,6,8,NULL +14205,847,15,6,NULL +14206,847,5,5,NULL +14207,847,3,2,NULL +14208,847,164,0,NULL +14209,847,166,0,NULL +14210,847,205,0,NULL +14211,847,10,0,NULL +14212,848,9,40,NULL +14213,848,6,28,NULL +14214,848,1,20,NULL +14215,848,131,6,NULL +14216,848,5,4,NULL +14217,848,10,2,NULL +14218,848,4,1,NULL +14219,848,15,0,NULL +14220,848,3,0,NULL +14221,848,205,0,NULL +14222,848,166,0,NULL +14223,848,164,0,NULL +14224,849,6,35,NULL +14225,849,9,33,NULL +14226,849,1,12,NULL +14227,849,131,10,NULL +14228,849,15,6,NULL +14229,849,4,4,NULL +14230,849,5,1,NULL +14231,849,10,0,NULL +14232,849,3,0,NULL +14233,849,166,0,NULL +14234,849,164,0,NULL +14235,849,205,0,NULL +14236,850,1,25,NULL +14237,850,6,28,NULL +14238,850,9,27,NULL +14239,850,10,8,NULL +14240,850,131,10,NULL +14241,850,15,2,NULL +14242,850,4,1,NULL +14243,850,5,0,NULL +14244,850,3,0,NULL +14245,850,205,0,NULL +14246,850,166,0,NULL +14247,850,164,0,NULL +14248,851,1,37,NULL +14249,851,9,28,NULL +14250,851,6,23,NULL +14251,851,10,6,NULL +14252,851,5,5,NULL +14253,851,131,2,NULL +14254,851,15,0,NULL +14255,851,4,0,NULL +14256,851,3,0,NULL +14257,851,166,0,NULL +14258,851,164,0,NULL +14259,851,205,0,NULL +14260,852,9,43,NULL +14261,852,1,15,NULL +14262,852,6,16,NULL +14263,852,131,18,NULL +14264,852,10,6,NULL +14265,852,4,2,NULL +14266,852,3,1,NULL +14267,852,15,0,NULL +14268,852,205,0,NULL +14269,852,166,0,NULL +14270,852,164,0,NULL +14271,852,5,0,NULL +14272,853,9,25,NULL +14273,853,1,30,NULL +14274,853,6,23,NULL +14275,853,131,10,NULL +14276,853,5,7,NULL +14277,853,10,4,NULL +14278,853,4,2,NULL +14279,853,3,0,NULL +14280,853,205,0,NULL +14281,853,166,0,NULL +14282,853,164,0,NULL +14283,853,15,0,NULL +14284,854,9,40,NULL +14285,854,1,28,NULL +14286,854,6,14,NULL +14287,854,10,12,NULL +14288,854,131,6,NULL +14289,854,15,1,NULL +14290,854,3,0,NULL +14291,854,5,0,NULL +14292,854,4,0,NULL +14293,854,205,0,NULL +14294,854,166,0,NULL +14295,854,164,0,NULL +14296,855,1,35,NULL +14297,855,6,24,NULL +14298,855,9,27,NULL +14299,855,131,9,NULL +14300,855,15,4,NULL +14301,855,4,2,NULL +14302,855,10,0,NULL +14303,855,3,0,NULL +14304,855,5,0,NULL +14305,855,205,0,NULL +14306,855,166,0,NULL +14307,855,164,0,NULL +14308,856,9,40,NULL +14309,856,1,30,NULL +14310,856,6,18,NULL +14311,856,5,8,NULL +14312,856,131,4,NULL +14313,856,10,1,NULL +14314,856,3,0,NULL +14315,856,4,0,NULL +14316,856,205,0,NULL +14317,856,15,0,NULL +14318,856,166,0,NULL +14319,856,164,0,NULL +14320,857,9,37,NULL +14321,857,1,24,NULL +14322,857,6,15,NULL +14323,857,131,18,NULL +14324,857,5,4,NULL +14325,857,10,2,NULL +14326,857,15,1,NULL +14327,857,4,0,NULL +14328,857,205,0,NULL +14329,857,3,0,NULL +14330,857,166,0,NULL +14331,857,164,0,NULL +14332,858,1,40,NULL +14333,858,6,28,NULL +14334,858,9,12,NULL +14335,858,131,14,NULL +14336,858,10,6,NULL +14337,858,15,1,NULL +14338,858,3,0,NULL +14339,858,4,0,NULL +14340,858,5,0,NULL +14341,858,205,0,NULL +14342,858,166,0,NULL +14343,858,164,0,NULL +14344,859,9,43,NULL +14345,859,1,15,NULL +14346,859,6,22,NULL +14347,859,10,12,NULL +14348,859,131,6,NULL +14349,859,15,2,NULL +14350,859,4,1,NULL +14351,859,5,0,NULL +14352,859,3,0,NULL +14353,859,205,0,NULL +14354,859,166,0,NULL +14355,859,164,0,NULL +14356,860,1,40,NULL +14357,860,9,30,NULL +14358,860,6,10,NULL +14359,860,15,12,NULL +14360,860,208,6,NULL +14361,860,5,2,NULL +14362,860,10,1,NULL +14363,860,131,0,NULL +14364,860,3,0,NULL +14365,860,206,0,NULL +14366,860,207,0,NULL +14367,861,6,25,NULL +14368,861,15,18,NULL +14369,861,1,15,NULL +14370,861,9,12,NULL +14371,861,208,10,NULL +14372,861,3,8,NULL +14373,861,10,8,NULL +14374,861,5,4,NULL +14375,861,131,1,NULL +14376,861,207,0,NULL +14377,861,206,0,NULL +14378,861,164,0,NULL +14379,862,131,25,NULL +14380,862,1,33,NULL +14381,862,9,22,NULL +14382,862,208,8,NULL +14383,862,3,10,NULL +14384,862,6,2,NULL +14385,862,15,1,NULL +14386,862,10,0,NULL +14387,862,5,0,NULL +14388,862,207,0,NULL +14389,862,206,0,NULL +14390,862,164,0,NULL +14391,863,9,37,NULL +14392,863,208,33,NULL +14393,863,131,11,NULL +14394,863,10,8,NULL +14395,863,6,8,NULL +14396,863,1,4,NULL +14397,863,15,0,NULL +14398,863,5,0,NULL +14399,863,207,0,NULL +14400,863,206,0,NULL +14401,863,164,0,NULL +14402,863,3,0,NULL +14403,864,3,25,NULL +14404,864,6,18,NULL +14405,864,208,27,NULL +14406,864,15,10,NULL +14407,864,9,8,NULL +14408,864,131,6,NULL +14409,864,1,6,NULL +14410,864,10,1,NULL +14411,864,5,0,NULL +14412,864,207,0,NULL +14413,864,206,0,NULL +14414,864,164,0,NULL +14415,865,9,37,NULL +14416,865,131,18,NULL +14417,865,6,23,NULL +14418,865,1,10,NULL +14419,865,10,10,NULL +14420,865,208,2,NULL +14421,865,3,1,NULL +14422,865,15,0,NULL +14423,865,5,0,NULL +14424,865,207,0,NULL +14425,865,206,0,NULL +14426,865,164,0,NULL +14427,866,1,25,NULL +14428,866,208,22,NULL +14429,866,15,17,NULL +14430,866,9,18,NULL +14431,866,6,11,NULL +14432,866,131,8,NULL +14433,866,10,0,NULL +14434,866,3,0,NULL +14435,866,5,0,NULL +14436,866,207,0,NULL +14437,866,206,0,NULL +14438,866,164,0,NULL +14439,867,6,25,NULL +14440,867,208,18,NULL +14441,867,131,23,NULL +14442,867,9,12,NULL +14443,867,10,16,NULL +14444,867,1,4,NULL +14445,867,15,2,NULL +14446,867,3,1,NULL +14447,867,5,0,NULL +14448,867,207,0,NULL +14449,867,206,0,NULL +14450,867,164,0,NULL +14451,868,9,40,NULL +14452,868,6,30,NULL +14453,868,208,18,NULL +14454,868,131,6,NULL +14455,868,1,5,NULL +14456,868,3,2,NULL +14457,868,15,0,NULL +14458,868,10,0,NULL +14459,868,5,0,NULL +14460,868,207,0,NULL +14461,868,206,0,NULL +14462,868,164,0,NULL +14463,869,6,25,NULL +14464,869,9,14,NULL +14465,869,1,18,NULL +14466,869,208,15,NULL +14467,869,15,20,NULL +14468,869,131,7,NULL +14469,869,10,2,NULL +14470,869,5,0,NULL +14471,869,3,0,NULL +14472,869,207,0,NULL +14473,869,206,0,NULL +14474,869,164,0,NULL +14475,870,1,33,NULL +14476,870,208,33,NULL +14477,870,9,16,NULL +14478,870,6,12,NULL +14479,870,3,6,NULL +14480,870,131,1,NULL +14481,870,10,0,NULL +14482,870,15,0,NULL +14483,870,5,0,NULL +14484,870,207,0,NULL +14485,870,206,0,NULL +14486,870,164,0,NULL +14487,871,1,25,NULL +14488,871,9,26,NULL +14489,871,208,15,NULL +14490,871,10,13,NULL +14491,871,6,10,NULL +14492,871,131,6,NULL +14493,871,5,6,NULL +14494,871,3,0,NULL +14495,871,15,0,NULL +14496,871,207,0,NULL +14497,871,206,0,NULL +14498,871,164,0,NULL +14499,872,1,25,NULL +14500,872,15,20,NULL +14501,872,6,27,NULL +14502,872,208,10,NULL +14503,872,131,14,NULL +14504,872,10,4,NULL +14505,872,3,1,NULL +14506,872,5,0,NULL +14507,872,207,0,NULL +14508,872,206,0,NULL +14509,872,164,0,NULL +14510,872,9,0,NULL +14511,873,9,25,NULL +14512,873,1,18,NULL +14513,873,6,19,NULL +14514,873,10,12,NULL +14515,873,131,10,NULL +14516,873,208,14,NULL +14517,873,5,2,NULL +14518,873,15,1,NULL +14519,873,206,0,NULL +14520,873,207,0,NULL +14524,874,9,27,NULL +14522,873,3,0,NULL +14523,873,164,0,NULL +14525,874,6,18,NULL +14526,874,15,15,NULL +14527,874,1,22,NULL +14528,874,208,8,NULL +14529,874,10,6,NULL +14530,874,3,4,NULL +14531,874,5,1,NULL +14532,874,131,0,NULL +14533,874,207,0,NULL +14534,874,206,0,NULL +14535,874,164,0,NULL +14536,875,9,43,NULL +14537,875,6,27,NULL +14538,875,208,16,NULL +14539,875,10,8,NULL +14540,875,5,6,NULL +14541,875,1,1,NULL +14542,875,15,0,NULL +14543,875,131,0,NULL +14544,875,3,0,NULL +14545,875,207,0,NULL +14546,875,206,0,NULL +14547,875,164,0,NULL +14548,876,9,40,NULL +14549,876,6,26,NULL +14550,876,1,22,NULL +14551,876,208,8,NULL +14552,876,10,4,NULL +14553,876,3,1,NULL +14554,876,131,0,NULL +14555,876,5,0,NULL +14556,876,15,0,NULL +14557,876,207,0,NULL +14558,876,206,0,NULL +14559,876,164,0,NULL +14560,877,208,25,NULL +14561,877,6,24,NULL +14562,877,9,15,NULL +14563,877,1,12,NULL +14564,877,3,14,NULL +14565,877,15,8,NULL +14566,877,10,2,NULL +14567,877,5,1,NULL +14568,877,131,0,NULL +14569,877,207,0,NULL +14570,877,206,0,NULL +14571,877,164,0,NULL +14572,878,1,35,NULL +14573,878,9,18,NULL +14574,878,6,27,NULL +14575,878,208,14,NULL +14576,878,10,4,NULL +14577,878,3,3,NULL +14578,878,15,0,NULL +14579,878,5,0,NULL +14580,878,131,0,NULL +14581,878,207,0,NULL +14582,878,206,0,NULL +14583,878,164,0,NULL +14584,879,1,25,NULL +14585,879,6,33,NULL +14586,879,9,20,NULL +14587,879,10,10,NULL +14588,879,131,6,NULL +14589,879,5,4,NULL +14590,879,15,2,NULL +14591,879,208,1,NULL +14592,879,207,0,NULL +14593,879,206,0,NULL +14594,879,164,0,NULL +14595,879,3,0,NULL +14596,880,208,26,NULL +14597,880,6,30,NULL +14598,880,9,23,NULL +14599,880,131,10,NULL +14600,880,10,10,NULL +14601,880,1,2,NULL +14602,880,5,0,NULL +14603,880,15,0,NULL +14604,880,3,0,NULL +14605,880,206,0,NULL +14606,880,207,0,NULL +14607,881,9,43,NULL +14608,881,131,27,NULL +14609,881,6,10,NULL +14610,881,208,14,NULL +14611,881,15,4,NULL +14612,881,1,2,NULL +14613,881,5,1,NULL +14614,881,3,0,NULL +14615,881,206,0,NULL +14616,881,207,0,NULL +14617,881,10,0,NULL +14618,882,6,33,NULL +14619,882,208,20,NULL +14620,882,131,15,NULL +14621,882,9,12,NULL +14622,882,1,10,NULL +14623,882,5,6,NULL +14624,882,10,4,NULL +14625,882,15,1,NULL +14626,882,3,0,NULL +14627,882,206,0,NULL +14628,882,207,0,NULL +14629,883,9,31,NULL +14630,883,208,33,NULL +14631,883,10,12,NULL +14632,883,131,12,NULL +14633,883,1,9,NULL +14634,883,6,4,NULL +14635,883,3,0,NULL +14636,883,15,0,NULL +14637,883,5,0,NULL +14638,883,207,0,NULL +14639,883,206,0,NULL +14640,884,6,40,NULL +14641,884,208,18,NULL +14642,884,9,22,NULL +14643,884,131,8,NULL +14644,884,10,6,NULL +14645,884,1,6,NULL +14646,884,5,1,NULL +14647,884,15,0,NULL +14648,884,3,0,NULL +14649,884,207,0,NULL +14650,884,206,0,NULL +14651,885,131,37,NULL +14652,885,9,33,NULL +14653,885,10,12,NULL +14654,885,1,8,NULL +14655,885,6,6,NULL +14656,885,5,4,NULL +14657,885,208,1,NULL +14658,885,15,0,NULL +14659,885,3,0,NULL +14660,885,206,0,NULL +14661,885,207,0,NULL +14662,886,9,37,NULL +14663,886,6,22,NULL +14664,886,131,25,NULL +14665,886,5,8,NULL +14666,886,10,7,NULL +14667,886,208,2,NULL +14668,886,1,0,NULL +14669,886,3,0,NULL +14670,886,206,0,NULL +14671,886,207,0,NULL +14672,886,15,0,NULL +14673,887,131,37,NULL +14674,887,9,18,NULL +14675,887,6,23,NULL +14676,887,208,10,NULL +14677,887,10,8,NULL +14678,887,5,4,NULL +14679,887,15,1,NULL +14680,887,3,0,NULL +14681,887,1,0,NULL +14682,887,207,0,NULL +14683,887,206,0,NULL +14684,888,9,31,NULL +14685,888,208,33,NULL +14686,888,6,12,NULL +14687,888,131,12,NULL +14688,888,1,12,NULL +14689,888,15,1,NULL +14690,888,10,0,NULL +14691,888,5,0,NULL +14692,888,3,0,NULL +14693,888,207,0,NULL +14694,888,206,0,NULL +14695,890,131,25,NULL +14696,890,208,26,NULL +14697,890,9,27,NULL +14698,890,6,14,NULL +14699,890,1,8,NULL +14700,890,3,1,NULL +14701,890,15,0,NULL +14702,890,5,0,NULL +14703,890,207,0,NULL +14704,890,206,0,NULL +14705,890,10,0,NULL +14706,891,9,35,NULL +14707,891,6,24,NULL +14708,891,131,27,NULL +14709,891,1,8,NULL +14710,891,208,4,NULL +14711,891,10,2,NULL +14712,891,5,1,NULL +14713,891,15,0,NULL +14714,891,3,0,NULL +14715,891,207,0,NULL +14716,891,206,0,NULL +14717,892,9,40,NULL +14718,892,6,30,NULL +14719,892,15,10,NULL +14720,892,131,10,NULL +14721,892,5,6,NULL +14722,892,208,4,NULL +14723,892,1,1,NULL +14724,892,3,0,NULL +14725,892,10,0,NULL +14726,892,207,0,NULL +14727,892,206,0,NULL +14728,893,9,25,NULL +14729,893,6,26,NULL +14730,893,208,15,NULL +14731,893,131,22,NULL +14732,893,1,10,NULL +14733,893,15,2,NULL +14734,893,10,1,NULL +14735,893,3,0,NULL +14736,893,5,0,NULL +14737,893,207,0,NULL +14738,893,206,0,NULL +14739,894,9,25,NULL +14740,894,208,33,NULL +14741,894,15,12,NULL +14742,894,131,16,NULL +14743,894,6,10,NULL +14744,894,1,5,NULL +14745,894,3,0,NULL +14746,894,207,0,NULL +14747,894,206,0,NULL +14748,894,5,0,NULL +14749,894,10,0,NULL +14750,895,9,43,NULL +14751,895,208,25,NULL +14752,895,6,13,NULL +14753,895,15,14,NULL +14754,895,131,4,NULL +14755,895,1,2,NULL +14756,895,10,0,NULL +14757,895,5,0,NULL +14758,895,3,0,NULL +14759,895,207,0,NULL +14760,895,206,0,NULL +14761,896,9,25,NULL +14762,896,131,26,NULL +14763,896,208,21,NULL +14764,896,6,12,NULL +14765,896,1,10,NULL +14766,896,10,6,NULL +14767,896,5,1,NULL +14768,896,3,0,NULL +14769,896,15,0,NULL +14770,896,206,0,NULL +14771,896,207,0,NULL +14772,897,9,43,NULL +14773,897,131,21,NULL +14774,897,208,12,NULL +14775,897,6,14,NULL +14776,897,10,9,NULL +14777,897,1,2,NULL +14778,897,3,0,NULL +14779,897,15,0,NULL +14780,897,5,0,NULL +14781,897,207,0,NULL +14782,897,206,0,NULL +14783,898,9,40,NULL +14784,898,208,18,NULL +14785,898,131,14,NULL +14786,898,6,10,NULL +14787,898,15,8,NULL +14788,898,1,7,NULL +14789,898,3,4,NULL +14790,898,5,0,NULL +14791,898,10,0,NULL +14792,898,206,0,NULL +14793,898,207,0,NULL +14794,899,9,43,NULL +14795,899,6,21,NULL +14796,899,1,20,NULL +14797,899,131,12,NULL +14798,899,15,4,NULL +14799,899,5,1,NULL +14800,899,10,0,NULL +14801,899,208,0,NULL +14802,899,3,0,NULL +14803,899,206,0,NULL +14804,899,207,0,NULL +14805,790,6,9,NULL +14806,790,105,15,NULL +14807,790,128,0,NULL +14808,900,131,25,NULL +14809,900,9,0,NULL +14810,900,1,33,NULL +14811,900,6,18,NULL +14812,900,3,10,NULL +14813,900,10,9,NULL +14814,900,5,6,NULL +14815,900,15,0,NULL +14816,900,206,0,NULL +14817,900,208,0,NULL +14818,900,207,0,NULL +14819,901,131,43,NULL +14820,901,9,15,NULL +14821,901,6,12,NULL +14822,901,10,10,NULL +14823,901,1,10,NULL +14824,901,3,10,NULL +14825,901,5,1,NULL +14826,901,208,0,NULL +14827,901,207,0,NULL +14828,901,206,0,NULL +14829,901,15,0,NULL +14830,902,131,43,NULL +14831,902,10,25,NULL +14832,902,9,20,NULL +14833,902,3,10,NULL +14834,902,6,3,NULL +14835,902,5,0,NULL +14836,902,208,0,NULL +14837,902,206,0,NULL +14838,902,207,0,NULL +14839,902,1,0,NULL +14840,902,15,0,NULL +14841,903,131,43,NULL +14842,903,6,19,NULL +14843,903,9,22,NULL +14844,903,10,10,NULL +14845,903,3,6,NULL +14846,903,5,1,NULL +14847,903,1,0,NULL +14848,903,208,0,NULL +14849,903,15,0,NULL +14850,903,207,0,NULL +14851,903,206,0,NULL +14852,903,3,6,NULL +14853,904,131,43,NULL +14854,904,9,27,NULL +14855,904,3,10,NULL +14856,904,6,14,NULL +14857,904,208,4,NULL +14858,904,10,3,NULL +14859,904,1,0,NULL +14860,904,5,0,NULL +14861,904,15,0,NULL +14862,904,206,0,NULL +14863,904,207,0,NULL +14864,905,131,43,NULL +14865,905,9,15,NULL +14866,905,6,12,NULL +14867,905,10,10,NULL +14868,905,1,9,NULL +14869,905,3,6,NULL +14870,905,208,4,NULL +14871,905,206,2,NULL +14872,905,207,0,NULL +14873,905,15,0,NULL +14874,905,5,0,NULL +14875,906,9,40,NULL +14876,906,131,18,NULL +14877,906,1,14,NULL +14878,906,10,10,NULL +14879,906,6,9,NULL +14880,906,3,6,NULL +14881,906,5,4,NULL +14882,906,15,0,NULL +14883,906,208,0,NULL +14884,906,207,0,NULL +14885,906,206,0,NULL +14886,907,131,43,NULL +14887,907,3,27,NULL +14888,907,6,11,NULL +14889,907,10,10,NULL +14890,907,1,6,NULL +14891,907,9,4,NULL +14892,907,208,0,NULL +14893,907,15,0,NULL +14894,907,206,0,NULL +14895,907,207,0,NULL +14896,907,5,0,NULL +14897,908,131,25,NULL +14898,908,3,18,NULL +14899,908,9,25,NULL +14900,908,1,18,NULL +14901,908,6,8,NULL +14902,908,10,4,NULL +14903,908,5,3,NULL +14904,908,208,0,NULL +14905,908,15,0,NULL +14906,908,206,0,NULL +14907,908,207,0,NULL +14908,909,131,40,NULL +14909,909,3,18,NULL +14910,909,9,20,NULL +14911,909,6,10,NULL +14912,909,10,7,NULL +14913,909,1,6,NULL +14914,909,208,0,NULL +14915,909,5,0,NULL +14916,909,15,0,NULL +14917,909,206,0,NULL +14918,909,207,0,NULL +14919,910,9,31,NULL +14920,910,6,26,NULL +14921,910,131,27,NULL +14922,910,3,14,NULL +14923,910,5,2,NULL +14924,910,1,1,NULL +14925,910,15,0,NULL +14926,910,208,0,NULL +14927,910,206,0,NULL +14928,910,207,0,NULL +14929,910,10,0,NULL +14930,911,9,35,NULL +14931,911,131,18,NULL +14932,911,3,15,NULL +14933,911,6,18,NULL +14934,911,1,8,NULL +14935,911,10,5,NULL +14936,911,5,2,NULL +14937,911,15,0,NULL +14938,911,206,0,NULL +14939,911,207,0,NULL +14940,911,208,0,NULL +14941,912,131,43,NULL +14942,912,3,27,NULL +14943,912,9,18,NULL +14944,912,10,6,NULL +14945,912,1,5,NULL +14946,912,6,2,NULL +14947,912,5,0,NULL +14948,912,208,0,NULL +14949,912,15,0,NULL +14950,912,207,0,NULL +14951,912,206,0,NULL +14952,913,131,25,NULL +14953,913,9,33,NULL +14954,913,6,16,NULL +14955,913,3,10,NULL +14956,913,5,8,NULL +14957,913,10,8,NULL +14958,913,1,1,NULL +14959,913,208,0,NULL +14960,913,207,0,NULL +14961,913,206,0,NULL +14962,913,15,0,NULL +14963,914,131,43,NULL +14964,914,9,27,NULL +14965,914,1,10,NULL +14966,914,3,14,NULL +14967,914,10,5,NULL +14968,914,5,2,NULL +14969,914,6,0,NULL +14970,914,15,0,NULL +14971,914,208,0,NULL +14972,914,207,0,NULL +14973,914,206,0,NULL +14974,915,131,43,NULL +14975,915,3,15,NULL +14976,915,1,22,NULL +14977,915,6,10,NULL +14978,915,9,10,NULL +14979,915,10,1,NULL +14980,915,5,0,NULL +14981,915,15,0,NULL +14982,915,208,0,NULL +14983,915,207,0,NULL +14984,915,206,0,NULL +14985,784,6,12,NULL +14986,784,105,13,NULL +14987,916,131,43,NULL +14988,916,9,21,NULL +14989,916,3,22,NULL +14990,916,6,8,NULL +14991,916,1,4,NULL +14992,916,5,1,NULL +14993,916,208,2,NULL +14994,916,15,0,NULL +14995,916,10,0,NULL +14996,917,131,43,NULL +14997,917,3,16,NULL +14998,917,1,14,NULL +14999,917,9,10,NULL +15000,917,6,14,NULL +15001,917,10,4,NULL +15002,917,5,0,NULL +15003,917,208,0,NULL +15004,917,15,0,NULL +15005,918,131,50,NULL +15006,918,3,66,NULL +15007,918,9,32,NULL +15008,918,1,20,NULL +15009,918,10,28,NULL +15010,918,6,6,NULL +15011,918,5,0,NULL +15012,918,208,0,NULL +15013,918,15,0,NULL +15014,918,207,0,NULL +15015,926,131,43,NULL +15016,926,6,15,NULL +15017,926,3,12,NULL +15018,926,15,14,NULL +15019,926,9,8,NULL +15020,926,10,7,NULL +15021,926,5,2,NULL +15022,926,1,0,NULL +15023,926,208,0,NULL +15024,927,6,37,NULL +15025,927,131,33,NULL +15026,927,3,18,NULL +15027,927,5,10,NULL +15028,927,9,3,NULL +15029,927,208,0,NULL +15030,927,15,0,NULL +15031,927,10,0,NULL +15032,927,209,0,NULL +15033,927,1,0,NULL +15034,928,131,43,NULL +15035,928,6,27,NULL +15036,928,3,18,NULL +15037,928,208,6,NULL +15038,928,15,5,NULL +15039,928,9,2,NULL +15040,928,10,0,NULL +15041,928,1,0,NULL +15042,928,5,0,NULL +15043,928,209,0,NULL +15044,929,131,40,NULL +15045,929,6,28,NULL +15046,929,3,13,NULL +15047,929,9,10,NULL +15048,929,208,6,NULL +15049,929,10,4,NULL +15050,929,1,0,NULL +15051,929,15,0,NULL +15052,929,209,0,NULL +15053,929,5,0,NULL +15054,930,131,43,NULL +15055,930,6,25,NULL +15056,930,3,20,NULL +15057,930,9,7,NULL +15058,930,208,4,NULL +15059,930,5,2,NULL +15060,930,15,0,NULL +15061,930,10,0,NULL +15062,930,1,0,NULL +15063,930,209,0,NULL +15064,931,131,40,NULL +15065,931,6,26,NULL +15066,931,9,22,NULL +15067,931,10,6,NULL +15068,931,1,4,NULL +15069,931,15,2,NULL +15070,931,5,1,NULL +15071,931,208,0,NULL +15072,931,3,0,NULL +15073,931,209,0,NULL +15074,932,131,43,NULL +15075,932,3,23,NULL +15076,932,6,22,NULL +15077,932,208,7,NULL +15078,932,10,4,NULL +15079,932,9,2,NULL +15080,932,5,0,NULL +15081,932,15,0,NULL +15082,932,209,0,NULL +15083,932,1,0,NULL +15084,933,131,43,NULL +15085,933,3,25,NULL +15086,933,6,12,NULL +15087,933,10,10,NULL +15088,933,208,6,NULL +15089,933,5,4,NULL +15090,933,9,1,NULL +15091,933,15,0,NULL +15092,933,209,0,NULL +15093,933,1,0,NULL +15094,934,131,43,NULL +15095,934,6,19,NULL +15096,934,3,22,NULL +15097,934,9,8,NULL +15098,934,10,8,NULL +15099,934,1,1,NULL +15100,934,15,0,NULL +15101,934,209,0,NULL +15102,934,5,0,NULL +15103,934,208,0,NULL +15104,936,6,25,NULL +15105,936,9,33,NULL +15106,936,5,12,NULL +15107,936,1,12,NULL +15108,936,131,12,NULL +15109,936,208,6,NULL +15110,936,15,1,NULL +15111,936,3,0,NULL +15112,936,209,0,NULL +15113,936,10,0,NULL +15114,937,131,43,NULL +15115,937,208,15,NULL +15116,937,9,12,NULL +15117,937,10,10,NULL +15118,937,3,10,NULL +15119,937,6,6,NULL +15120,937,5,4,NULL +15121,937,15,1,NULL +15122,937,1,0,NULL +15123,937,206,0,NULL +15124,937,209,0,NULL +15125,938,131,25,NULL +15126,938,6,28,NULL +15127,938,3,27,NULL +15128,938,10,14,NULL +15129,938,9,5,NULL +15130,938,15,2,NULL +15131,938,5,0,NULL +15132,938,1,0,NULL +15133,938,209,0,NULL +15134,938,208,0,NULL +15135,939,6,40,NULL +15136,939,9,26,NULL +15137,939,131,12,NULL +15138,939,3,10,NULL +15139,939,10,6,NULL +15140,939,5,6,NULL +15141,939,15,1,NULL +15142,939,208,0,NULL +15143,939,209,0,NULL +15144,939,1,0,NULL +15145,940,131,43,NULL +15146,940,6,27,NULL +15147,940,3,10,NULL +15148,940,10,8,NULL +15149,940,208,10,NULL +15150,940,5,3,NULL +15151,940,1,0,NULL +15152,940,9,0,NULL +15153,940,15,0,NULL +15154,940,209,0,NULL +15155,941,131,25,NULL +15156,941,6,22,NULL +15157,941,10,15,NULL +15158,941,3,12,NULL +15159,941,9,10,NULL +15160,941,15,8,NULL +15161,941,208,6,NULL +15162,941,1,2,NULL +15163,941,5,1,NULL +15164,941,209,0,NULL +15165,941,206,0,NULL +15166,942,131,43,NULL +15167,942,6,15,NULL +15168,942,5,18,NULL +15169,942,10,10,NULL +15170,942,1,8,NULL +15171,942,208,4,NULL +15172,942,15,2,NULL +15173,942,9,1,NULL +15174,942,209,0,NULL +15175,942,3,0,NULL +15176,943,131,43,NULL +15177,943,3,23,NULL +15178,943,9,22,NULL +15179,943,10,10,NULL +15180,943,5,2,NULL +15181,943,208,1,NULL +15182,943,15,0,NULL +15183,943,1,0,NULL +15184,943,206,0,NULL +15185,943,6,0,NULL +15186,944,131,43,NULL +15187,944,6,27,NULL +15188,944,3,10,NULL +15189,944,10,8,NULL +15190,944,9,6,NULL +15191,944,208,5,NULL +15192,944,5,2,NULL +15193,944,15,0,NULL +15194,944,1,0,NULL +15195,944,209,0,NULL +15196,943,209,0,NULL +15197,945,131,43,NULL +15198,945,6,27,NULL +15199,945,10,16,NULL +15200,945,9,9,NULL +15201,945,3,4,NULL +15202,945,208,2,NULL +15203,945,5,0,NULL +15204,945,1,0,NULL +15205,945,15,0,NULL +15206,945,206,0,NULL +15207,945,209,0,NULL +15208,948,131,43,NULL +15209,948,6,15,NULL +15210,948,9,12,NULL +15211,948,3,14,NULL +15212,948,210,8,NULL +15213,948,10,6,NULL +15214,948,5,3,NULL +15215,948,4,0,NULL +15216,948,1,0,NULL +15217,948,15,0,NULL +15218,948,209,0,NULL +15219,949,131,40,NULL +15220,949,6,18,NULL +15221,949,9,18,NULL +15222,949,210,10,NULL +15223,949,5,8,NULL +15224,949,3,6,NULL +15225,949,1,1,NULL +15226,949,4,0,NULL +15227,949,15,0,NULL +15228,949,209,0,NULL +15229,949,10,0,NULL +15230,950,131,31,NULL +15231,950,6,28,NULL +15232,950,9,27,NULL +15233,950,3,9,NULL +15234,950,5,6,NULL +15235,950,10,0,NULL +15236,950,1,0,NULL +15237,950,210,0,NULL +15238,950,15,0,NULL +15239,950,4,0,NULL +15240,950,209,0,NULL +15241,951,131,43,NULL +15242,951,6,15,NULL +15243,951,3,22,NULL +15244,951,1,9,NULL +15245,951,4,6,NULL +15246,951,210,4,NULL +15247,951,10,2,NULL +15248,951,9,0,NULL +15249,951,5,0,NULL +15250,951,15,0,NULL +15251,951,209,0,NULL +15252,952,9,37,NULL +15253,952,6,33,NULL +15254,952,3,14,NULL +15255,952,5,9,NULL +15256,952,10,6,NULL +15257,952,1,2,NULL +15258,952,210,0,NULL +15259,952,15,0,NULL +15260,952,4,0,NULL +15261,952,209,0,NULL +15262,952,131,0,NULL +15263,953,131,31,NULL +15264,953,9,18,NULL +15265,953,10,23,NULL +15266,953,6,12,NULL +15267,953,1,12,NULL +15268,953,5,4,NULL +15269,953,3,1,NULL +15270,953,210,0,NULL +15271,953,209,0,NULL +15272,953,15,0,NULL +15273,953,4,0,NULL +15274,954,131,35,NULL +15275,954,6,26,NULL +15276,954,3,15,NULL +15277,954,9,18,NULL +15278,954,10,5,NULL +15279,954,5,2,NULL +15280,954,1,0,NULL +15281,954,210,0,NULL +15282,954,15,0,NULL +15283,954,4,0,NULL +15284,954,209,0,NULL +15285,955,131,35,NULL +15286,955,6,30,NULL +15287,955,10,17,NULL +15288,955,3,9,NULL +15289,955,9,10,NULL +15290,955,1,0,NULL +15291,955,15,0,NULL +15292,955,210,0,NULL +15293,955,4,0,NULL +15294,955,209,0,NULL +15295,955,5,0,NULL +15296,956,131,37,NULL +15297,956,9,28,NULL +15298,956,6,15,NULL +15299,956,1,8,NULL +15300,956,210,6,NULL +15301,956,5,4,NULL +15302,956,3,2,NULL +15303,956,209,1,NULL +15304,956,4,0,NULL +15305,956,15,0,NULL +15306,956,10,0,NULL +15307,957,131,40,NULL +15308,957,9,30,NULL +15309,957,6,12,NULL +15310,957,10,14,NULL +15311,957,5,5,NULL +15312,957,3,0,NULL +15313,957,1,0,NULL +15314,957,15,0,NULL +15315,957,210,0,NULL +15316,957,4,0,NULL +15317,957,209,0,NULL +15318,958,131,43,NULL +15319,958,9,25,NULL +15320,958,6,20,NULL +15321,958,1,6,NULL +15322,958,5,4,NULL +15323,958,3,2,NULL +15324,958,10,1,NULL +15325,958,4,0,NULL +15326,958,210,0,NULL +15327,958,15,0,NULL +15328,958,209,0,NULL +15329,959,131,37,NULL +15330,959,9,33,NULL +15331,959,6,18,NULL +15332,959,10,7,NULL +15333,959,1,4,NULL +15334,959,3,2,NULL +15335,959,210,0,NULL +15336,959,5,0,NULL +15337,959,4,0,NULL +15338,959,209,0,NULL +15339,959,15,0,NULL +15340,960,131,40,NULL +15341,960,9,18,NULL +15342,960,10,22,NULL +15343,960,6,10,NULL +15344,960,1,6,NULL +15345,960,3,5,NULL +15346,960,210,0,NULL +15347,960,5,0,NULL +15348,960,4,0,NULL +15349,960,209,0,NULL +15350,960,15,0,NULL +15351,961,131,43,NULL +15352,961,6,27,NULL +15353,961,9,16,NULL +15354,961,3,10,NULL +15355,961,10,5,NULL +15356,961,210,0,NULL +15357,961,1,0,NULL +15358,961,5,0,NULL +15359,961,15,0,NULL +15360,961,4,0,NULL +15361,961,209,0,NULL +15362,962,131,40,NULL +15363,962,9,26,NULL +15364,962,6,22,NULL +15365,962,1,6,NULL +15366,962,10,4,NULL +15367,962,5,2,NULL +15368,962,4,1,NULL +15369,962,210,0,NULL +15370,962,3,0,NULL +15371,962,15,0,NULL +15372,962,209,0,NULL +15373,963,9,43,NULL +15374,963,131,15,NULL +15375,963,6,12,NULL +15376,963,3,10,NULL +15377,963,10,12,NULL +15378,963,1,8,NULL +15379,963,4,1,NULL +15380,963,5,0,NULL +15381,963,15,0,NULL +15382,963,209,0,NULL +15383,963,210,0,NULL +15384,964,131,40,NULL +15385,964,9,26,NULL +15386,964,6,22,NULL +15387,964,10,10,NULL +15388,964,3,3,NULL +15389,964,210,0,NULL +15390,964,4,0,NULL +15391,964,5,0,NULL +15392,964,15,0,NULL +15393,964,1,0,NULL +15394,964,209,0,NULL +15395,965,131,43,NULL +15396,965,9,15,NULL +15397,965,6,12,NULL +15398,965,1,12,NULL +15399,965,5,8,NULL +15400,965,3,6,NULL +15401,965,10,4,NULL +15402,965,210,1,NULL +15403,965,4,0,NULL +15404,965,15,0,NULL +15405,965,209,0,NULL +15406,966,131,43,NULL +15407,966,6,18,NULL +15408,966,9,27,NULL +15409,966,10,7,NULL +15410,966,3,6,NULL +15411,966,15,0,NULL +15412,966,1,0,NULL +15413,966,4,0,NULL +15414,966,5,0,NULL +15415,966,210,0,NULL +15416,966,209,0,NULL +15417,967,131,43,NULL +15418,967,9,19,NULL +15419,967,10,18,NULL +15420,967,6,10,NULL +15421,967,5,8,NULL +15422,967,15,2,NULL +15423,967,1,1,NULL +15424,967,3,0,NULL +15425,967,209,0,NULL +15426,967,4,0,NULL +15427,967,210,0,NULL +15428,968,131,43,NULL +15429,968,6,23,NULL +15430,968,9,22,NULL +15431,968,10,10,NULL +15432,968,3,2,NULL +15433,968,1,1,NULL +15434,968,210,0,NULL +15435,968,209,0,NULL +15436,968,15,0,NULL +15437,968,4,0,NULL +15438,968,5,0,NULL +15439,969,6,37,NULL +15440,969,131,33,NULL +15441,969,9,10,NULL +15442,969,3,8,NULL +15443,969,10,7,NULL +15444,969,5,6,NULL +15445,969,4,0,NULL +15446,969,15,0,NULL +15447,969,1,0,NULL +15448,969,210,0,NULL +15449,970,131,33,NULL +15450,970,6,28,NULL +15451,970,9,27,NULL +15452,970,5,6,NULL +15453,970,210,4,NULL +15454,970,10,3,NULL +15455,970,4,0,NULL +15456,970,3,0,NULL +15457,970,15,0,NULL +15458,970,1,0,NULL +15459,971,6,37,NULL +15460,971,131,33,NULL +15461,971,9,10,NULL +15462,971,3,8,NULL +15463,971,10,7,NULL +15464,971,210,4,NULL +15465,971,4,2,NULL +15466,971,15,0,NULL +15467,971,5,0,NULL +15468,971,1,0,NULL +15469,972,131,37,NULL +15470,972,6,33,NULL +15471,972,9,10,NULL +15472,972,10,14,NULL +15473,972,4,4,NULL +15474,972,3,2,NULL +15475,972,5,1,NULL +15476,972,210,0,NULL +15477,972,1,0,NULL +15478,972,15,0,NULL +15479,973,131,25,NULL +15480,973,6,18,NULL +15481,973,9,15,NULL +15482,973,10,22,NULL +15483,973,4,8,NULL +15484,973,5,8,NULL +15485,973,15,4,NULL +15486,973,210,1,NULL +15487,973,1,0,NULL +15488,973,3,0,NULL +15489,974,6,43,NULL +15490,974,9,25,NULL +15491,974,131,18,NULL +15492,974,5,8,NULL +15493,974,210,5,NULL +15494,974,3,2,NULL +15495,974,4,0,NULL +15496,974,10,0,NULL +15497,974,1,0,NULL +15498,974,15,0,NULL +15499,975,131,43,NULL +15500,975,9,15,NULL +15501,975,6,18,NULL +15502,975,10,18,NULL +15503,975,4,4,NULL +15504,975,3,2,NULL +15505,975,210,1,NULL +15506,975,15,0,NULL +15507,975,1,0,NULL +15508,975,5,0,NULL +15509,976,9,25,NULL +15510,976,131,28,NULL +15511,976,3,15,NULL +15512,976,6,12,NULL +15513,976,10,8,NULL +15514,976,210,6,NULL +15515,976,5,4,NULL +15516,976,1,2,NULL +15517,976,15,1,NULL +15518,976,4,0,NULL +15519,841,164,0,NULL +15520,977,131,37,NULL +15521,977,6,28,NULL +15522,977,9,15,NULL +15523,977,210,8,NULL +15524,977,10,10,NULL +15525,977,3,3,NULL +15526,977,4,0,NULL +15527,977,1,0,NULL +15528,977,15,0,NULL +15529,977,5,0,NULL +15530,978,131,43,NULL +15531,978,6,21,NULL +15532,978,9,22,NULL +15533,978,4,8,NULL +15534,978,10,6,NULL +15535,978,3,1,NULL +15536,978,1,0,NULL +15537,978,210,0,NULL +15538,978,15,0,NULL +15539,978,5,0,NULL +15540,979,6,43,NULL +15541,979,131,27,NULL +15542,979,9,10,NULL +15543,979,1,9,NULL +15544,979,5,6,NULL +15545,979,10,6,NULL +15546,979,4,0,NULL +15547,979,210,0,NULL +15548,979,3,0,NULL +15549,979,15,0,NULL +15550,980,131,35,NULL +15551,980,6,30,NULL +15552,980,9,15,NULL +15553,980,4,8,NULL +15554,980,210,6,NULL +15555,980,3,4,NULL +15556,980,10,2,NULL +15557,980,5,1,NULL +15558,980,1,0,NULL +15559,980,15,0,NULL +15560,981,131,43,NULL +15561,981,6,25,NULL +15562,981,9,13,NULL +15563,981,10,10,NULL +15564,981,3,10,NULL +15565,981,210,0,NULL +15566,981,5,0,NULL +15567,981,4,0,NULL +15568,981,15,0,NULL +15569,981,1,0,NULL +15570,982,131,40,NULL +15571,982,9,18,NULL +15572,982,5,12,NULL +15573,982,10,11,NULL +15574,982,4,8,NULL +15575,982,1,6,NULL +15576,982,3,4,NULL +15577,982,210,2,NULL +15578,982,15,0,NULL +15579,982,6,0,NULL +15580,983,9,40,NULL +15581,983,131,28,NULL +15582,983,6,12,NULL +15583,983,10,9,NULL +15584,983,1,6,NULL +15585,983,3,6,NULL +15586,983,210,0,NULL +15587,983,5,0,NULL +15588,983,4,0,NULL +15589,983,15,0,NULL +15590,984,131,37,NULL +15591,984,9,33,NULL +15592,984,6,10,NULL +15593,984,10,14,NULL +15594,984,210,6,NULL +15595,984,3,1,NULL +15596,984,1,0,NULL +15597,984,4,0,NULL +15598,984,5,0,NULL +15599,984,15,0,NULL +15600,985,131,35,NULL +15601,985,6,33,NULL +15602,985,9,12,NULL +15603,985,10,12,NULL +15604,985,4,6,NULL +15605,985,3,2,NULL +15606,985,5,1,NULL +15607,985,1,0,NULL +15608,985,210,0,NULL +15609,985,15,0,NULL +15610,986,9,25,NULL +15611,986,131,20,NULL +15612,986,6,27,NULL +15613,986,10,16,NULL +15614,986,3,8,NULL +15615,986,210,4,NULL +15616,986,1,1,NULL +15617,986,5,0,NULL +15618,986,15,0,NULL +15619,986,4,0,NULL +15620,987,6,40,NULL +15621,987,131,30,NULL +15622,987,9,18,NULL +15623,987,3,6,NULL +15624,987,1,4,NULL +15625,987,10,2,NULL +15626,987,4,1,NULL +15627,987,5,0,NULL +15628,987,15,0,NULL +15629,987,210,0,NULL +15630,988,131,43,NULL +15631,988,6,27,NULL +15632,988,9,10,NULL +15633,988,4,8,NULL +15634,988,10,10,NULL +15635,988,1,2,NULL +15636,988,3,1,NULL +15637,988,210,0,NULL +15638,988,15,0,NULL +15639,988,5,0,NULL diff --git a/database/formula_1/data_csv/constructorStandings.csv b/database/formula_1/data_csv/constructorStandings.csv new file mode 100644 index 0000000000000000000000000000000000000000..80a63fb66b71c4a8a7ebaa1a8a259d5c90fd9ff2 --- /dev/null +++ b/database/formula_1/data_csv/constructorStandings.csv @@ -0,0 +1,11897 @@ +constructorStandingsId,raceId,constructorId,points,position,positionText,wins, +1,18,1,14,1,1,1 +2,18,2,8,3,3,0 +3,18,3,9,2,2,0 +4,18,4,5,4,4,0 +5,18,5,2,5,5,0 +6,18,6,1,6,6,0 +7,19,1,24,1,1,1 +8,19,2,19,2,2,0 +9,19,3,9,4,4,0 +10,19,4,6,5,5,0 +11,19,5,2,8,8,0 +12,19,6,11,3,3,1 +13,19,7,5,6,6,0 +14,19,9,2,7,7,0 +15,19,11,0,9,9,0 +16,19,10,0,10,10,0 +17,19,8,0,11,11,0 +18,20,1,28,3,3,1 +19,20,2,30,1,1,0 +20,20,3,10,4,4,0 +21,20,4,6,6,6,0 +22,20,5,2,8,8,0 +23,20,6,29,2,2,2 +24,20,7,8,5,5,0 +25,20,9,4,7,7,0 +26,20,11,0,9,9,0 +27,20,10,0,10,10,0 +28,20,8,0,11,11,0 +29,21,1,34,3,3,1 +30,21,2,35,2,2,0 +31,21,3,12,4,4,0 +32,21,4,6,7,7,0 +33,21,5,2,9,9,0 +34,21,6,47,1,1,3 +35,21,7,9,5,5,0 +36,21,9,8,6,6,0 +37,21,11,3,8,8,0 +38,21,10,0,10,10,0 +39,21,8,0,11,11,0 +40,22,1,42,3,3,1 +41,22,2,44,2,2,0 +42,22,3,13,4,4,0 +43,22,4,9,7,7,0 +44,22,5,2,9,9,0 +45,22,6,63,1,1,4 +46,22,7,9,6,6,0 +47,22,9,10,5,5,0 +48,22,11,3,8,8,0 +49,22,10,0,10,10,0 +50,22,8,0,11,11,0 +51,23,1,53,2,2,2 +52,23,2,52,3,3,0 +53,23,3,15,4,4,0 +54,23,4,9,7,7,0 +55,23,5,6,8,8,0 +56,23,6,69,1,1,4 +57,23,7,9,6,6,0 +58,23,9,15,5,5,0 +59,23,11,6,9,9,0 +60,23,10,0,10,10,0 +61,23,8,0,11,11,0 +62,24,1,53,3,3,2 +63,24,2,70,2,2,1 +64,24,3,15,6,6,0 +65,24,4,9,7,7,0 +66,24,5,7,9,9,0 +67,24,6,73,1,1,4 +68,24,7,17,5,5,0 +69,24,9,21,4,4,0 +70,24,11,8,8,8,0 +71,24,10,0,10,10,0 +72,24,8,0,11,11,0 +73,25,1,58,3,3,2 +74,25,2,74,2,2,1 +75,25,3,15,6,6,0 +76,25,4,12,7,7,0 +77,25,5,7,9,9,0 +78,25,6,91,1,1,5 +79,25,7,23,5,5,0 +80,25,9,24,4,4,0 +81,25,11,8,8,8,0 +82,25,10,0,10,10,0 +83,25,8,0,11,11,0 +84,26,1,72,3,3,3 +85,26,2,82,2,2,1 +86,26,3,16,6,6,0 +87,26,4,15,7,7,0 +88,26,5,7,9,9,0 +89,26,6,96,1,1,5 +90,26,7,25,4,4,0 +91,26,9,24,5,5,0 +92,26,11,14,8,8,0 +93,26,10,0,10,10,0 +94,26,8,0,11,11,0 +95,27,1,86,3,3,4 +96,27,2,89,2,2,1 +97,27,3,16,7,7,0 +98,27,4,23,6,6,0 +99,27,5,8,9,9,0 +100,27,6,105,1,1,5 +101,27,7,25,4,4,0 +102,27,9,24,5,5,0 +103,27,11,14,8,8,0 +104,27,10,0,10,10,0 +105,27,8,0,11,11,0 +106,28,1,100,2,2,5 +107,28,2,90,3,3,1 +108,28,3,16,7,7,0 +109,28,4,31,5,5,0 +110,28,5,8,9,9,0 +111,28,6,111,1,1,5 +112,28,7,35,4,4,0 +113,28,9,24,6,6,0 +114,28,11,14,8,8,0 +115,28,10,0,10,10,0 +116,28,8,0,11,11,0 +117,29,1,113,2,2,5 +118,29,2,96,3,3,1 +119,29,3,17,7,7,0 +120,29,4,31,5,5,0 +121,29,5,11,9,9,0 +122,29,6,121,1,1,6 +123,29,7,41,4,4,0 +124,29,9,24,6,6,0 +125,29,11,14,8,8,0 +126,29,10,0,10,10,0 +127,29,8,0,11,11,0 +128,30,1,119,2,2,5 +129,30,2,107,3,3,1 +130,30,3,17,7,7,0 +131,30,4,36,5,5,0 +132,30,5,17,8,8,0 +133,30,6,131,1,1,7 +134,30,7,41,4,4,0 +135,30,9,25,6,6,0 +136,30,11,14,9,9,0 +137,30,10,0,10,10,0 +138,30,8,0,11,11,0 +139,31,1,129,2,2,5 +140,31,2,117,3,3,1 +141,31,3,17,8,8,0 +142,31,4,41,5,5,0 +143,31,5,27,6,6,1 +144,31,6,134,1,1,7 +145,31,7,41,4,4,0 +146,31,9,26,7,7,0 +147,31,11,14,9,9,0 +148,31,10,0,10,10,0 +149,31,8,0,11,11,0 +150,32,1,135,1,1,5 +151,32,2,120,3,3,1 +152,32,3,26,8,8,0 +153,32,4,51,4,4,1 +154,32,5,31,6,6,1 +155,32,6,134,2,2,7 +156,32,7,46,5,5,0 +157,32,9,28,7,7,0 +158,32,11,14,9,9,0 +159,32,10,0,10,10,0 +160,32,8,0,11,11,0 +161,33,1,135,2,2,5 +162,33,2,128,3,3,1 +163,33,3,26,8,8,0 +164,33,4,66,4,4,2 +165,33,5,34,6,6,1 +166,33,6,142,1,1,7 +167,33,7,50,5,5,0 +168,33,9,29,7,7,0 +169,33,11,14,9,9,0 +170,33,10,0,10,10,0 +171,33,8,0,11,11,0 +1643,34,8,0,11,11,0 +1642,34,10,0,10,10,0 +1641,34,11,14,9,9,0 +1640,34,9,29,7,7,0 +1639,34,7,52,5,5,0 +1638,34,6,156,1,1,7 +1637,34,5,34,6,6,1 +1636,34,4,72,4,4,2 +1635,34,3,26,8,8,0 +1634,34,2,135,3,3,1 +1633,34,1,145,2,2,6 +183,35,1,151,2,2,6 +184,35,2,135,3,3,1 +185,35,3,26,8,8,0 +186,35,4,80,4,4,2 +187,35,5,39,6,6,1 +188,35,6,172,1,1,8 +189,35,7,56,5,5,0 +190,35,9,29,7,7,0 +191,35,11,14,9,9,0 +192,35,10,0,10,10,0 +193,35,8,0,11,11,0 +25742,36,5,0,9,9,0 +25741,36,9,0,8,8,0 +25740,36,8,0,7,7,0 +25739,36,11,0,6,6,0 +25738,36,7,1,5,5,0 +25737,36,3,2,4,4,0 +25736,36,4,4,3,3,0 +25735,36,2,5,2,2,0 +25753,37,5,0,9,9,0 +25752,37,9,0,6,6,0 +25751,37,8,0,8,8,0 +25750,37,11,0,7,7,0 +25749,37,7,3,4,4,0 +25748,37,3,2,5,5,0 +25747,37,4,8,3,3,0 +25746,37,2,10,2,2,0 +25764,38,5,0,9,9,0 +25763,38,9,0,6,6,0 +25762,38,8,0,8,8,0 +25761,38,11,0,7,7,0 +25760,38,7,5,4,4,0 +25759,38,3,2,5,5,0 +25758,38,4,9,3,3,0 +25757,38,2,18,2,2,0 +25756,38,1,44,11,E,1 +25755,38,6,39,1,1,2 +25775,39,5,0,10,10,0 +25774,39,9,4,6,6,0 +25773,39,8,1,7,7,0 +25772,39,11,0,8,8,0 +25771,39,7,5,5,5,0 +25770,39,3,5,4,4,0 +25769,39,4,11,3,3,0 +25768,39,2,23,2,2,0 +25767,39,1,58,11,E,1 +25786,40,5,0,8,8,0 +25785,40,9,4,6,6,0 +25784,40,8,1,7,7,0 +25783,40,11,0,9,9,0 +25782,40,7,5,5,5,0 +25781,40,3,7,4,4,0 +25780,40,4,16,3,3,0 +25779,40,2,30,2,2,0 +25778,40,1,76,11,E,2 +25797,41,5,0,8,8,0 +25796,41,9,4,6,6,0 +25795,41,8,4,7,7,0 +25794,41,11,0,9,9,0 +25793,41,7,6,5,5,0 +25792,41,3,13,4,4,0 +25791,41,4,21,3,3,0 +25790,41,2,38,2,2,0 +25789,41,1,88,11,E,3 +25808,42,5,0,8,8,0 +25807,42,9,6,6,6,0 +25806,42,8,4,7,7,0 +25805,42,11,0,9,9,0 +25804,42,7,9,5,5,0 +25803,42,3,13,4,4,0 +25802,42,4,25,3,3,0 +25801,42,2,39,2,2,0 +25800,42,1,106,11,E,4 +25819,43,5,0,9,9,0 +25818,43,9,6,6,6,0 +25817,43,8,4,7,7,0 +25816,43,11,1,8,8,0 +25815,43,7,9,5,5,0 +25814,43,3,13,4,4,0 +25813,43,4,28,3,3,0 +25812,43,2,48,2,2,0 +25811,43,1,114,11,E,4 +25830,44,5,0,9,9,0 +25829,44,9,6,6,6,0 +25828,44,8,4,7,7,0 +25827,44,11,1,8,8,0 +25826,44,7,9,5,5,0 +25825,44,3,13,4,4,0 +25824,44,4,31,3,3,0 +25823,44,2,56,2,2,0 +25822,44,1,128,11,E,5 +25841,45,5,0,9,9,0 +25840,45,9,16,5,5,0 +25839,45,8,4,7,7,0 +25838,45,11,1,8,8,0 +25837,45,7,9,6,6,0 +25836,45,3,18,4,4,0 +25835,45,4,32,3,3,0 +25834,45,2,61,2,2,0 +25833,45,1,138,11,E,5 +25852,46,5,0,9,9,0 +25851,46,9,16,5,5,0 +25850,46,8,4,7,7,0 +25849,46,11,1,8,8,0 +25848,46,7,12,6,6,0 +25847,46,3,20,4,4,0 +25846,46,4,33,3,3,0 +25845,46,2,71,2,2,0 +25844,46,1,138,11,E,6 +25863,47,5,0,9,9,0 +25862,47,9,16,5,5,0 +25861,47,8,4,7,7,0 +25860,47,11,1,8,8,0 +25859,47,7,12,6,6,0 +25858,47,3,22,4,4,0 +25857,47,4,36,3,3,0 +25856,47,2,77,2,2,0 +25855,47,1,148,11,E,6 +25874,48,5,0,9,9,0 +25873,48,9,16,5,5,0 +25872,48,8,4,7,7,0 +25871,48,11,2,8,8,0 +25870,48,7,12,6,6,0 +25869,48,3,25,4,4,0 +25868,48,4,38,3,3,0 +25867,48,2,86,2,2,0 +25866,48,1,166,11,E,7 +25885,49,5,0,9,9,0 +25884,49,9,18,5,5,0 +25883,49,8,4,7,7,0 +25882,49,11,2,8,8,0 +25881,49,7,12,6,6,0 +25880,49,3,28,4,4,0 +25879,49,4,39,3,3,0 +25878,49,2,90,2,2,0 +25877,49,1,192,11,E,7 +25896,50,5,0,10,10,0 +25895,50,9,23,5,5,0 +25894,50,8,4,7,7,0 +25893,50,11,2,8,8,0 +25892,50,7,12,6,6,0 +25891,50,3,28,4,4,0 +25890,50,4,51,3,3,0 +25889,50,2,92,2,2,0 +25888,50,1,202,11,E,8 +25907,51,5,8,7,7,0 +25906,51,9,24,5,5,0 +25905,51,8,4,9,9,0 +25904,51,11,6,8,8,0 +25903,51,7,12,6,6,0 +25902,51,3,28,4,4,0 +25901,51,4,51,3,3,0 +25900,51,2,94,2,2,0 +25899,51,1,210,11,E,8 +25918,52,5,8,7,7,0 +25917,52,9,24,5,5,0 +25916,52,8,4,9,9,0 +25915,52,11,6,8,8,0 +25914,52,7,13,6,6,0 +25913,52,3,33,4,4,0 +25912,52,4,51,3,3,0 +25911,52,2,101,2,2,0 +25910,52,1,118,11,E,8 +6327,53,8,0,11,11,0 +6326,53,13,0,10,10,0 +6325,53,7,0,9,9,0 +6324,53,2,0,8,8,0 +6323,53,5,0,7,7,0 +6322,53,9,1,6,6,0 +6321,53,3,5,5,5,0 +6320,53,11,5,4,4,0 +6319,53,1,10,2,2,0 +6318,53,6,8,3,3,0 +6317,53,4,10,1,1,1 +6338,54,8,0,11,11,0 +6337,54,13,0,10,10,0 +6336,54,7,1,7,7,0 +6335,54,2,2,6,6,0 +6334,54,5,0,9,9,0 +6333,54,9,1,8,8,0 +6332,54,3,5,5,5,0 +6331,54,11,11,4,4,0 +6330,54,1,15,3,3,0 +6329,54,6,15,2,2,0 +6328,54,4,28,1,1,2 +6349,55,8,0,11,11,0 +6348,55,13,0,10,10,0 +6347,55,7,7,6,6,0 +6346,55,2,10,5,5,0 +6345,55,5,0,9,9,0 +6344,55,9,2,8,8,0 +6343,55,3,5,7,7,0 +6342,55,11,13,4,4,0 +6341,55,1,23,2,2,0 +6340,55,6,15,3,3,0 +6339,55,4,42,1,1,3 +6360,56,8,0,11,11,0 +6359,56,13,0,10,10,0 +6358,56,7,7,7,7,0 +6357,56,2,10,5,5,0 +6356,56,5,0,9,9,0 +6355,56,9,2,8,8,0 +6354,56,3,8,6,6,0 +6353,56,11,15,4,4,0 +6352,56,1,33,2,2,0 +6351,56,6,30,3,3,1 +6350,56,4,51,1,1,3 +6371,57,8,0,11,11,0 +6370,57,13,0,10,10,0 +6369,57,7,7,7,7,0 +6368,57,2,11,5,5,0 +6367,57,5,0,9,9,0 +6366,57,9,2,8,8,0 +6365,57,3,10,6,6,0 +6364,57,11,19,4,4,0 +6363,57,1,38,3,3,0 +6362,57,6,46,2,2,2 +6361,57,4,62,1,1,3 +6382,58,8,0,11,11,0 +6381,58,13,0,10,10,0 +6380,58,7,7,7,7,0 +6379,58,2,12,5,5,0 +6378,58,5,0,9,9,0 +6377,58,9,2,8,8,0 +6376,58,3,10,6,6,0 +6375,58,11,24,4,4,0 +6374,58,1,42,3,3,0 +6373,58,6,59,2,2,2 +6372,58,4,78,1,1,4 +6393,59,8,0,11,11,0 +6392,59,13,0,10,10,0 +6391,59,7,8,7,7,0 +6390,59,2,14,5,5,0 +6389,59,5,0,9,9,0 +6388,59,9,8,8,8,0 +6387,59,3,10,6,6,0 +6386,59,11,29,4,4,0 +6385,59,1,50,3,3,0 +6384,59,6,63,2,2,2 +6383,59,4,91,1,1,5 +6404,60,8,0,11,11,0 +6403,60,13,0,10,10,0 +6402,60,7,8,7,7,0 +6401,60,2,17,5,5,0 +6400,60,5,0,9,9,0 +6399,60,9,8,8,8,0 +6398,60,3,10,6,6,0 +6397,60,11,29,4,4,0 +6396,60,1,59,3,3,0 +6395,60,6,75,2,2,2 +6394,60,4,106,1,1,6 +6415,61,8,0,11,11,0 +6414,61,13,0,10,10,0 +6413,61,7,11,6,6,0 +6412,61,2,19,5,5,0 +6411,61,5,0,9,9,0 +6410,61,9,9,8,8,0 +6409,61,3,10,7,7,0 +6408,61,11,29,4,4,0 +6407,61,1,65,3,3,0 +6406,61,6,87,2,2,2 +6405,61,4,121,1,1,7 +6426,62,8,0,11,11,0 +6425,62,13,0,10,10,0 +6424,62,7,16,6,6,0 +6423,62,2,19,5,5,0 +6422,62,5,1,9,9,0 +6421,62,9,11,7,7,0 +6420,62,3,10,8,8,0 +6419,62,11,32,4,4,0 +6418,62,1,65,3,3,0 +6417,62,6,105,2,2,3 +6416,62,4,131,1,1,7 +6437,63,8,0,11,11,0 +6436,63,13,0,10,10,0 +6435,63,7,21,5,5,0 +6434,63,2,20,6,6,0 +6433,63,5,1,9,9,0 +6432,63,9,11,7,7,0 +6431,63,3,10,8,8,0 +6430,63,11,32,4,4,0 +6429,63,1,71,3,3,0 +6428,63,6,121,2,2,4 +6427,63,4,142,1,1,7 +6448,64,8,0,11,11,0 +6447,64,13,0,10,10,0 +6446,64,7,23,5,5,0 +6445,64,2,20,6,6,0 +6444,64,5,1,9,9,0 +6443,64,9,12,7,7,0 +6442,64,3,10,8,8,0 +6441,64,11,37,4,4,0 +6440,64,1,77,3,3,0 +6439,64,6,139,2,2,5 +6438,64,4,149,1,1,7 +6459,65,8,0,11,11,0 +6458,65,13,0,10,10,0 +6457,65,7,26,5,5,0 +6456,65,2,26,6,6,0 +6455,65,5,1,9,9,0 +6454,65,9,16,7,7,0 +6453,65,3,10,8,8,0 +6452,65,11,52,4,4,1 +6451,65,1,85,3,3,0 +6450,65,6,142,2,2,5 +6449,65,4,149,1,1,7 +6470,66,8,0,11,11,0 +6469,66,13,0,10,10,0 +6468,66,7,28,5,5,0 +6467,66,2,26,6,6,0 +6466,66,5,1,9,9,0 +6465,66,9,16,7,7,0 +6464,66,3,10,8,8,0 +6463,66,11,58,4,4,1 +6462,66,1,89,3,3,0 +6461,66,6,158,2,2,6 +6460,66,4,160,1,1,7 +6482,67,14,0,12,12,0 +6481,67,8,0,11,11,0 +6480,67,13,0,10,10,0 +6479,67,7,30,6,6,0 +6478,67,2,33,5,5,0 +6477,67,5,1,9,9,0 +6476,67,9,16,7,7,0 +6475,67,3,10,8,8,0 +6474,67,11,65,4,4,1 +6473,67,1,97,3,3,0 +6472,67,6,168,1,1,7 +6471,67,4,165,2,2,7 +6494,68,14,0,12,12,0 +6493,68,8,0,11,11,0 +6492,68,13,0,10,10,0 +6491,68,7,30,6,6,0 +6490,68,2,35,5,5,0 +6489,68,5,1,9,9,0 +6488,68,9,16,7,7,0 +6487,68,3,11,8,8,0 +6486,68,11,73,4,4,1 +6485,68,1,101,3,3,0 +6484,68,6,178,2,2,8 +6483,68,4,179,1,1,7 +6506,69,14,0,12,12,0 +6505,69,8,0,11,11,0 +6504,69,13,0,10,10,0 +6503,69,7,35,6,6,0 +6502,69,2,36,5,5,0 +6501,69,5,1,9,9,0 +6500,69,9,16,7,7,0 +6499,69,3,11,8,8,0 +6498,69,11,78,4,4,1 +6497,69,1,105,3,3,0 +6496,69,6,186,2,2,8 +6495,69,4,195,1,1,8 +6518,70,14,0,12,12,0 +6517,70,8,0,11,11,0 +6516,70,13,0,10,10,0 +6515,70,7,35,6,6,0 +6514,70,2,36,5,5,0 +6513,70,5,1,9,9,0 +6512,70,9,16,7,7,0 +6511,70,3,11,8,8,0 +6510,70,11,86,4,4,1 +6509,70,1,110,3,3,0 +6508,70,6,201,2,2,9 +6507,70,4,206,1,1,8 +567,71,4,16,1,1,1 +568,71,6,8,2,2,0 +569,71,9,7,3,3,0 +570,71,3,4,4,4,0 +571,71,1,4,5,5,0 +572,71,7,0,6,6,0 +573,71,15,0,7,7,0 +574,71,17,0,8,8,0 +575,71,18,0,9,9,0 +576,72,4,26,1,1,2 +577,72,6,10,4,4,0 +578,72,9,11,3,3,0 +579,72,3,10,5,5,0 +580,72,1,9,6,6,0 +581,72,7,12,2,2,0 +582,72,15,0,7,7,0 +583,72,17,0,8,8,0 +584,72,18,0,9,9,0 +1808,73,18,0,9,9,0 +1807,73,17,0,8,8,0 +1806,73,15,2,7,7,0 +1805,73,7,25,2,2,0 +1804,73,1,19,3,3,0 +1803,73,3,13,4,4,0 +1802,73,9,12,5,5,0 +1801,73,6,10,6,6,0 +1800,73,4,36,1,1,3 +1817,74,18,0,9,9,0 +1816,74,17,0,8,8,0 +1815,74,15,7,7,7,0 +1814,74,7,29,2,2,0 +1813,74,1,25,3,3,0 +1812,74,3,18,5,5,0 +1811,74,9,13,6,6,0 +1810,74,6,18,4,4,0 +24516,75,17,0,8,8,0 +24515,75,16,0,10,10,0 +24514,75,15,7,7,7,0 +24513,75,7,40,2,2,0 +24512,75,1,37,3,3,1 +24511,75,3,21,4,4,0 +24510,75,9,14,6,6,0 +24509,75,6,18,5,5,0 +24508,75,4,58,1,1,4 +612,76,4,63,1,1,4 +613,76,6,21,5,5,0 +614,76,9,14,6,6,0 +615,76,3,35,4,4,0 +616,76,1,51,2,2,2 +617,76,7,43,3,3,0 +618,76,15,7,7,7,0 +619,76,17,0,8,8,0 +620,76,18,0,9,9,0 +621,77,4,76,1,1,5 +622,77,6,31,5,5,0 +623,77,9,19,6,6,0 +624,77,3,43,4,4,0 +625,77,1,53,2,2,2 +626,77,7,44,3,3,0 +627,77,15,7,7,7,0 +628,77,17,0,8,8,0 +629,77,18,0,10,10,0 +630,77,16,0,9,9,0 +1827,78,16,0,9,9,0 +1826,78,18,0,10,10,0 +1825,78,17,0,8,8,0 +1824,78,15,12,7,7,0 +1823,78,7,47,4,4,0 +1822,78,1,63,2,2,3 +1821,78,3,47,3,3,0 +1820,78,9,22,6,6,0 +1819,78,6,45,5,5,0 +1818,78,4,76,1,1,5 +1672,79,16,0,10,10,0 +1671,79,18,7,9,9,0 +1670,79,17,11,8,8,0 +1669,79,15,12,7,7,0 +1668,79,7,47,5,5,0 +1667,79,1,63,2,2,3 +1666,79,3,47,4,4,0 +1665,79,9,22,6,6,0 +1664,79,6,63,3,3,1 +1663,79,4,76,1,1,5 +651,80,4,89,1,1,6 +652,80,6,69,3,3,1 +653,80,9,22,6,6,0 +654,80,3,47,5,5,0 +655,80,1,71,2,2,3 +656,80,7,53,4,4,0 +657,80,15,13,7,7,0 +658,80,17,11,8,8,0 +659,80,18,7,9,9,0 +660,80,16,5,10,10,0 +661,81,4,102,1,1,6 +662,81,6,74,3,3,1 +663,81,9,22,6,6,0 +664,81,3,47,5,5,0 +665,81,1,87,2,2,4 +666,81,7,54,4,4,0 +667,81,15,13,7,7,0 +668,81,17,11,8,8,0 +669,81,18,7,10,10,0 +670,81,16,9,9,9,0 +671,82,4,117,1,1,7 +672,82,6,78,3,3,1 +673,82,9,24,6,6,0 +674,82,3,47,5,5,0 +675,82,1,95,2,2,4 +676,82,7,57,4,4,0 +677,82,15,14,8,8,0 +678,82,17,11,9,9,0 +679,82,18,7,10,10,0 +680,82,16,15,7,7,0 +681,83,4,117,1,1,7 +682,83,6,86,3,3,1 +683,83,9,24,6,6,0 +684,83,3,52,5,5,0 +685,83,1,105,2,2,5 +686,83,7,68,4,4,0 +687,83,15,14,8,8,0 +688,83,17,11,9,9,0 +689,83,18,7,10,10,0 +690,83,16,20,7,7,0 +691,84,4,130,1,1,7 +692,84,6,86,3,3,1 +693,84,9,27,6,6,0 +694,84,3,52,5,5,0 +695,84,1,121,2,2,6 +696,84,7,71,4,4,0 +697,84,15,14,8,8,0 +698,84,17,11,9,9,0 +699,84,18,7,10,10,0 +700,84,16,24,7,7,0 +701,85,4,144,1,1,7 +702,85,6,86,3,3,1 +703,85,9,27,6,6,0 +704,85,3,54,5,5,0 +705,85,1,136,2,2,7 +706,85,7,78,4,4,0 +707,85,15,14,8,8,0 +708,85,17,11,9,9,0 +709,85,18,7,10,10,0 +710,85,16,25,7,7,0 +711,86,4,152,1,1,7 +712,86,6,90,3,3,1 +713,86,9,27,7,7,0 +714,86,3,59,5,5,0 +715,86,1,146,2,2,8 +716,86,7,80,4,4,0 +717,86,15,17,8,8,0 +718,86,17,12,9,9,0 +719,86,18,7,10,10,0 +720,86,16,31,6,6,0 +721,87,4,162,2,2,7 +722,87,6,98,3,3,1 +723,87,9,27,7,7,0 +724,87,3,59,5,5,0 +725,87,1,164,1,1,9 +726,87,7,81,4,4,0 +727,87,15,17,8,8,0 +728,87,17,12,9,9,0 +729,87,18,7,10,10,0 +730,87,16,33,6,6,0 +731,88,4,176,1,1,7 +732,88,6,100,3,3,1 +733,88,9,30,7,7,0 +734,88,3,64,5,5,0 +735,88,1,174,2,2,10 +736,88,7,82,4,4,0 +737,88,15,17,8,8,0 +738,88,17,12,9,9,0 +739,88,18,7,10,10,0 +740,88,16,37,6,6,0 +741,89,4,191,1,1,8 +742,89,6,100,3,3,1 +743,89,9,34,7,7,0 +744,89,3,66,5,5,0 +745,89,1,182,2,2,10 +746,89,7,88,4,4,0 +747,89,15,20,8,8,0 +748,89,17,12,9,9,0 +749,89,18,7,10,10,0 +750,89,16,38,6,6,0 +6146,90,17,0,9,9,0 +6145,90,7,0,8,8,0 +6144,90,19,0,7,7,0 +6143,90,15,0,6,6,0 +6142,90,1,1,5,5,0 +6141,90,16,3,4,4,0 +6140,90,3,9,2,2,0 +6139,90,4,8,3,3,0 +6138,90,6,18,1,1,1 +6156,91,18,0,10,10,0 +6155,91,17,0,9,9,0 +6154,91,7,0,7,7,0 +6153,91,19,0,8,8,0 +6152,91,15,1,6,6,0 +6151,91,1,4,5,5,0 +6150,91,16,9,4,4,0 +6149,91,3,17,2,2,0 +6148,91,4,14,3,3,0 +6147,91,6,33,1,1,2 +6166,92,18,0,10,10,0 +6165,92,17,0,9,9,0 +6164,92,7,0,8,8,0 +6163,92,19,1,7,7,0 +6162,92,15,1,6,6,0 +6161,92,1,4,5,5,0 +6160,92,16,19,4,4,0 +6159,92,3,19,3,3,0 +6158,92,4,22,2,2,0 +6157,92,6,51,1,1,3 +6176,93,18,0,10,10,0 +6175,93,17,0,9,9,0 +6174,93,7,0,8,8,0 +6173,93,19,1,7,7,0 +6172,93,15,1,6,6,0 +6171,93,1,5,5,5,0 +6170,93,16,27,3,3,0 +6169,93,3,27,4,4,0 +6168,93,4,31,2,2,0 +6167,93,6,64,1,1,4 +6186,94,18,0,10,10,0 +6185,94,17,0,9,9,0 +6184,94,7,0,8,8,0 +6183,94,19,1,7,7,0 +6182,94,15,3,6,6,0 +6181,94,1,5,5,5,0 +6180,94,16,32,3,3,0 +6179,94,3,30,4,4,0 +6178,94,4,42,2,2,0 +6177,94,6,82,1,1,5 +6196,95,18,0,10,10,0 +6195,95,17,2,8,8,0 +6194,95,7,4,7,7,0 +6193,95,19,1,9,9,0 +6192,95,15,7,5,5,0 +6191,95,1,5,6,6,0 +6190,95,16,40,3,3,0 +6189,95,3,35,4,4,0 +6188,95,4,52,2,2,1 +6187,95,6,88,1,1,5 +6206,96,18,0,10,10,0 +6205,96,17,2,9,9,0 +6204,96,7,4,7,7,0 +6203,96,19,3,8,8,0 +6202,96,15,10,5,5,0 +6201,96,1,5,6,6,0 +6200,96,16,46,3,3,0 +6199,96,3,36,4,4,0 +6198,96,4,61,2,2,1 +6197,96,6,106,1,1,6 +6216,97,18,0,10,10,0 +6215,97,17,5,7,7,0 +6214,97,7,4,8,8,0 +6213,97,19,3,9,9,0 +6212,97,15,15,5,5,0 +6211,97,1,12,6,6,0 +6210,97,16,52,3,3,0 +6209,97,3,36,4,4,0 +6208,97,4,61,2,2,1 +6207,97,6,124,1,1,7 +6226,98,18,1,10,10,0 +6225,98,17,5,8,8,0 +6224,98,7,8,7,7,0 +6223,98,19,3,9,9,0 +6222,98,15,15,6,6,0 +6221,98,1,17,5,5,0 +6220,98,16,58,3,3,0 +6219,98,3,36,4,4,0 +6218,98,4,66,2,2,1 +6217,98,6,142,1,1,8 +6236,99,18,1,10,10,0 +6235,99,17,5,8,8,0 +6234,99,7,8,7,7,0 +6233,99,19,3,9,9,0 +6232,99,15,15,6,6,0 +6231,99,1,22,5,5,0 +6230,99,16,62,3,3,0 +6229,99,3,37,4,4,0 +6228,99,4,79,2,2,1 +6227,99,6,158,1,1,9 +6246,100,18,1,10,10,0 +6245,100,17,5,8,8,0 +6244,100,7,8,7,7,0 +6243,100,19,4,9,9,0 +6242,100,15,18,6,6,0 +6241,100,1,32,5,5,0 +6240,100,16,67,3,3,0 +6239,100,3,41,4,4,0 +6238,100,4,79,2,2,1 +6237,100,6,174,1,1,10 +6256,101,18,1,10,10,0 +6255,101,17,5,9,9,0 +6254,101,7,8,7,7,0 +6253,101,19,7,8,8,0 +6252,101,15,18,6,6,0 +6251,101,1,37,5,5,0 +6250,101,16,76,3,3,0 +6249,101,3,47,4,4,0 +6248,101,4,85,2,2,1 +6247,101,6,184,1,1,11 +6266,102,18,1,10,10,0 +6265,102,17,5,9,9,0 +6264,102,7,8,7,7,0 +6263,102,19,7,8,8,0 +6262,102,15,19,6,6,0 +6261,102,1,37,5,5,0 +6260,102,16,83,3,3,0 +6259,102,3,54,4,4,0 +6258,102,4,91,2,2,1 +6257,102,6,202,1,1,12 +6276,103,18,1,10,10,0 +6275,103,17,5,9,9,0 +6274,103,7,9,8,8,0 +6273,103,19,10,7,7,0 +6272,103,15,28,6,6,0 +6271,103,1,49,5,5,1 +6270,103,16,83,3,3,0 +6269,103,3,54,4,4,0 +6268,103,4,91,2,2,1 +6267,103,6,216,1,1,12 +6286,104,18,1,10,10,0 +6285,104,17,5,9,9,0 +6284,104,7,9,8,8,0 +6283,104,19,10,7,7,0 +6282,104,15,29,6,6,0 +6281,104,1,52,5,5,1 +6280,104,16,94,2,2,0 +6279,104,3,60,4,4,0 +6278,104,4,91,3,3,1 +6277,104,6,234,1,1,13 +6296,105,18,1,10,10,0 +6295,105,17,5,9,9,0 +6294,105,7,9,8,8,0 +6293,105,19,10,7,7,0 +6292,105,15,32,6,6,0 +6291,105,1,58,5,5,1 +6290,105,16,105,2,2,0 +6289,105,3,64,4,4,0 +6288,105,4,96,3,3,1 +6287,105,6,244,1,1,14 +6306,106,18,1,10,10,0 +6305,106,17,5,9,9,0 +6304,106,7,9,8,8,0 +6303,106,19,10,7,7,0 +6302,106,15,33,6,6,0 +6301,106,1,61,5,5,1 +6300,106,16,116,2,2,0 +6299,106,3,74,4,4,0 +6298,106,4,100,3,3,1 +6297,106,6,254,1,1,15 +6316,107,18,1,10,10,0 +6315,107,17,5,9,9,0 +6314,107,7,9,8,8,0 +6313,107,19,10,7,7,0 +6312,107,15,34,6,6,0 +6311,107,1,69,5,5,1 +6310,107,16,119,2,2,0 +6309,107,3,88,4,4,1 +6308,107,4,105,3,3,1 +6307,107,6,262,1,1,15 +5988,108,18,0,7,7,0 +5987,108,16,0,6,6,0 +5986,108,15,3,5,5,0 +5985,108,4,6,3,3,0 +5984,108,6,5,4,4,0 +5983,108,3,9,2,2,0 +5982,108,1,16,1,1,1 +5997,109,7,0,9,9,0 +5996,109,17,0,7,7,0 +5995,109,18,0,8,8,0 +5994,109,16,2,6,6,0 +5993,109,15,4,5,5,0 +5992,109,4,16,3,3,0 +5991,109,6,16,2,2,0 +5990,109,3,14,4,4,0 +5989,109,1,26,1,1,2 +6007,110,19,0,8,8,0 +6006,110,7,0,9,9,0 +6005,110,17,10,5,5,1 +6004,110,18,0,10,10,0 +6003,110,16,5,7,7,0 +6002,110,15,8,6,6,0 +6001,110,4,23,2,2,0 +6000,110,6,16,3,3,0 +5999,110,3,16,4,4,0 +5998,110,1,39,1,1,2 +6017,111,19,0,9,9,0 +6016,111,7,0,8,8,0 +6015,111,17,10,5,5,1 +6014,111,18,0,10,10,0 +6013,111,16,6,7,7,0 +6012,111,15,8,6,6,0 +6011,111,4,26,3,3,0 +6010,111,6,32,2,2,1 +6009,111,3,23,4,4,0 +6008,111,1,51,1,1,2 +6027,112,19,2,9,9,0 +6026,112,7,3,8,8,0 +6025,112,17,11,5,5,1 +6024,112,18,0,10,10,0 +6023,112,16,6,7,7,0 +6022,112,15,8,6,6,0 +6021,112,4,34,3,3,0 +6020,112,6,48,2,2,2 +6019,112,3,32,4,4,0 +6018,112,1,51,1,1,2 +6037,113,19,4,8,8,0 +6036,113,7,3,9,9,0 +6035,113,17,11,5,5,1 +6034,113,18,0,10,10,0 +6033,113,16,11,6,6,0 +6032,113,15,8,7,7,0 +6031,113,4,35,3,3,0 +6030,113,6,64,1,1,3 +6029,113,3,35,4,4,0 +6028,113,1,63,2,2,2 +6047,114,19,4,8,8,0 +6046,114,7,3,9,9,0 +6045,114,17,11,5,5,1 +6044,114,18,0,10,10,0 +6043,114,16,11,6,6,0 +6042,114,15,8,7,7,0 +6041,114,4,42,4,4,0 +6040,114,6,71,2,2,3 +6039,114,3,50,3,3,1 +6038,114,1,73,1,1,2 +6057,115,19,6,8,8,0 +6056,115,7,4,9,9,0 +6055,115,17,11,5,5,1 +6054,115,18,0,10,10,0 +6053,115,16,11,6,6,0 +6052,115,15,8,7,7,0 +6051,115,4,47,4,4,0 +6050,115,6,85,1,1,4 +6049,115,3,64,3,3,1 +6048,115,1,76,2,2,2 +6067,116,19,9,8,8,0 +6066,116,7,4,9,9,0 +6065,116,17,11,6,6,1 +6064,116,18,0,10,10,0 +6063,116,16,13,5,5,0 +6062,116,15,9,7,7,0 +6061,116,4,52,4,4,0 +6060,116,6,95,1,1,4 +6059,116,3,82,2,2,2 +6058,116,1,76,3,3,2 +6077,117,19,12,6,6,0 +6076,117,7,5,9,9,0 +6075,117,17,11,7,7,1 +6074,117,18,0,10,10,0 +6073,117,16,13,5,5,0 +6072,117,15,9,8,8,0 +6071,117,4,52,4,4,0 +6070,117,6,103,1,1,4 +6069,117,3,100,2,2,3 +6068,117,1,85,3,3,2 +6087,118,19,12,6,6,0 +6086,118,7,7,9,9,0 +6085,118,17,11,7,7,1 +6084,118,18,0,10,10,0 +6083,118,16,14,5,5,0 +6082,118,15,9,8,8,0 +6081,118,4,55,4,4,0 +6080,118,6,118,1,1,5 +6079,118,3,108,2,2,3 +6078,118,1,95,3,3,2 +6097,119,19,12,7,7,0 +6096,119,7,14,6,6,0 +6095,119,17,11,8,8,1 +6094,119,18,0,10,10,0 +6093,119,16,15,5,5,0 +6092,119,15,9,9,9,0 +6091,119,4,66,4,4,0 +6090,119,6,120,1,1,5 +6089,119,3,118,2,2,4 +6088,119,1,103,3,3,2 +6107,120,19,15,6,6,0 +6106,120,7,14,7,7,0 +6105,120,17,11,8,8,1 +6104,120,18,0,10,10,0 +6103,120,16,15,5,5,0 +6102,120,15,9,9,9,0 +6101,120,4,78,4,4,1 +6100,120,6,121,2,2,5 +6099,120,3,129,1,1,4 +6098,120,1,115,3,3,2 +6117,121,19,17,6,6,0 +6116,121,7,14,7,7,0 +6115,121,17,11,8,8,1 +6114,121,18,0,10,10,0 +6113,121,16,18,5,5,0 +6112,121,15,9,9,9,0 +6111,121,4,79,4,4,1 +6110,121,6,137,2,2,6 +6109,121,3,141,1,1,4 +6108,121,1,120,3,3,2 +6127,122,19,18,7,7,0 +6126,122,7,14,8,8,0 +6125,122,17,13,9,9,1 +6124,122,18,0,10,10,0 +6123,122,16,18,6,6,0 +6122,122,15,19,5,5,0 +6121,122,4,84,4,4,1 +6120,122,6,147,1,1,7 +6119,122,3,144,2,2,4 +6118,122,1,128,3,3,2 +6137,123,19,18,7,7,0 +6136,123,7,16,8,8,0 +6135,123,17,13,9,9,1 +6134,123,18,0,10,10,0 +6133,123,16,26,5,5,0 +6132,123,15,19,6,6,0 +6131,123,4,88,4,4,1 +6130,123,6,158,1,1,8 +6129,123,3,144,2,2,4 +6128,123,1,142,3,3,2 +5805,124,7,1,6,6,0 +5804,124,18,2,5,5,0 +5803,124,19,3,4,4,0 +5802,124,1,4,3,3,0 +5801,124,3,6,2,2,0 +5800,124,6,10,1,1,1 +5816,125,21,0,11,11,0 +5815,125,17,0,10,10,0 +5814,125,16,0,9,9,0 +5813,125,15,3,6,6,0 +5812,125,4,3,5,5,0 +5811,125,7,1,8,8,0 +5810,125,18,2,7,7,0 +5809,125,19,3,4,4,0 +5808,125,1,4,3,3,0 +5807,125,3,22,1,1,1 +5806,125,6,14,2,2,1 +5827,126,21,0,11,11,0 +5826,126,17,0,10,10,0 +5825,126,16,0,9,9,0 +5824,126,15,3,6,6,0 +5823,126,4,6,4,4,0 +5822,126,7,2,8,8,0 +5821,126,18,2,7,7,0 +5820,126,19,3,5,5,0 +5819,126,1,8,3,3,0 +5818,126,3,30,1,1,1 +5817,126,6,24,2,2,2 +5838,127,21,0,11,11,0 +5837,127,17,0,10,10,0 +5836,127,16,0,9,9,0 +5835,127,15,3,6,6,0 +5834,127,4,8,4,4,0 +5833,127,7,2,8,8,0 +5832,127,18,2,7,7,0 +5831,127,19,3,5,5,0 +5830,127,1,9,3,3,0 +5829,127,3,37,2,2,1 +5828,127,6,40,1,1,3 +5849,128,21,1,9,9,0 +5848,128,17,0,11,11,0 +5847,128,16,0,10,10,0 +5846,128,15,8,5,5,0 +5845,128,4,8,4,4,0 +5844,128,7,2,8,8,0 +5843,128,18,2,7,7,0 +5842,128,19,3,6,6,0 +5841,128,1,13,3,3,0 +5840,128,3,43,2,2,1 +5839,128,6,50,1,1,4 +5860,129,21,1,10,10,0 +5859,129,17,2,8,8,0 +5858,129,16,0,11,11,0 +5857,129,15,8,5,5,0 +5856,129,4,8,4,4,0 +5855,129,7,2,9,9,0 +5854,129,18,2,7,7,0 +5853,129,19,3,6,6,0 +5852,129,1,14,3,3,0 +5851,129,3,50,2,2,1 +5850,129,6,66,1,1,5 +5871,130,21,2,10,10,0 +5870,130,17,4,6,6,0 +5869,130,16,0,11,11,0 +5868,130,15,8,5,5,0 +5867,130,4,11,4,4,0 +5866,130,7,2,9,9,0 +5865,130,18,2,8,8,0 +5864,130,19,3,7,7,0 +5863,130,1,24,3,3,1 +5862,130,3,54,2,2,1 +5861,130,6,72,1,1,5 +5882,131,21,2,10,10,0 +5881,131,17,6,6,6,0 +5880,131,16,0,11,11,0 +5879,131,15,8,5,5,0 +5878,131,4,12,4,4,0 +5877,131,7,2,9,9,0 +5876,131,18,2,8,8,0 +5875,131,19,3,7,7,0 +5874,131,1,33,3,3,1 +5873,131,3,54,2,2,1 +5872,131,6,86,1,1,6 +5893,132,21,2,10,10,0 +5892,132,17,6,6,6,0 +5891,132,16,0,11,11,0 +5890,132,15,9,5,5,0 +5889,132,4,14,4,4,0 +5888,132,7,2,9,9,0 +5887,132,18,2,8,8,0 +5886,132,19,3,7,7,0 +5885,132,1,37,3,3,1 +5884,132,3,57,2,2,1 +5883,132,6,102,1,1,7 +5904,133,21,2,11,11,0 +5903,133,17,6,6,6,0 +5902,133,16,5,7,7,0 +5901,133,15,10,5,5,0 +5900,133,4,14,4,4,0 +5899,133,7,2,10,10,0 +5898,133,18,2,9,9,0 +5897,133,19,3,8,8,0 +5896,133,1,37,3,3,1 +5895,133,3,61,2,2,1 +5894,133,6,118,1,1,8 +5915,134,21,2,11,11,0 +5914,134,17,6,6,6,0 +5913,134,16,5,7,7,0 +5912,134,15,10,5,5,0 +5911,134,4,15,4,4,0 +5910,134,7,2,10,10,0 +5909,134,18,2,9,9,0 +5908,134,19,3,8,8,0 +5907,134,1,47,3,3,1 +5906,134,3,66,2,2,1 +5905,134,6,128,1,1,9 +5926,135,21,2,11,11,0 +5925,135,17,6,6,6,0 +5924,135,16,5,7,7,0 +5923,135,15,11,5,5,0 +5922,135,4,15,4,4,0 +5921,135,7,2,10,10,0 +5920,135,18,2,9,9,0 +5919,135,19,3,8,8,0 +5918,135,1,49,3,3,1 +5917,135,3,76,2,2,1 +5916,135,6,141,1,1,10 +5937,136,21,2,11,11,0 +5936,136,17,7,6,6,0 +5935,136,16,5,7,7,0 +5934,136,15,11,5,5,0 +5933,136,4,15,4,4,0 +5932,136,7,2,10,10,0 +5931,136,18,2,9,9,0 +5930,136,19,3,8,8,0 +5929,136,1,54,3,3,1 +5928,136,3,80,2,2,1 +5927,136,6,157,1,1,11 +5948,137,21,2,11,11,0 +5947,137,17,7,6,6,0 +5946,137,16,5,7,7,0 +5945,137,15,11,5,5,0 +5944,137,4,15,4,4,0 +5943,137,7,2,10,10,0 +5942,137,18,2,9,9,0 +5941,137,19,4,8,8,0 +5940,137,1,57,3,3,1 +5939,137,3,86,2,2,1 +5938,137,6,173,1,1,12 +5959,138,21,2,11,11,0 +5958,138,17,7,7,7,0 +5957,138,16,6,8,8,0 +5956,138,15,11,5,5,0 +5955,138,4,20,4,4,0 +5954,138,7,2,10,10,0 +5953,138,18,2,9,9,0 +5952,138,19,8,6,6,0 +5951,138,1,57,3,3,1 +5950,138,3,86,2,2,1 +5949,138,6,189,1,1,13 +5970,139,21,2,11,11,0 +5969,139,17,7,8,8,0 +5968,139,16,7,7,7,0 +5967,139,15,11,5,5,0 +5966,139,4,22,4,4,0 +5965,139,7,2,10,10,0 +5964,139,18,2,9,9,0 +5963,139,19,8,6,6,0 +5962,139,1,61,3,3,1 +5961,139,3,89,2,2,1 +5960,139,6,205,1,1,14 +5981,140,21,2,11,11,0 +5980,140,17,9,6,6,0 +5979,140,16,7,8,8,0 +5978,140,15,11,5,5,0 +5977,140,4,23,4,4,0 +5976,140,7,2,10,10,0 +5975,140,18,2,9,9,0 +5974,140,19,8,7,7,0 +5973,140,1,65,3,3,1 +5972,140,3,92,2,2,1 +5971,140,6,221,1,1,15 +5623,141,22,0,10,10,0 +5622,141,18,0,9,9,0 +5621,141,21,0,8,8,0 +5620,141,20,0,7,7,0 +5619,141,19,0,6,6,0 +5618,141,16,0,5,5,0 +5617,141,17,2,4,4,0 +5616,141,15,4,3,3,0 +5615,141,1,6,2,2,0 +5614,141,6,14,1,1,1 +5634,142,3,2,5,5,0 +5633,142,22,0,10,10,0 +5632,142,18,0,11,11,0 +5631,142,21,0,6,6,0 +5630,142,20,0,9,9,0 +5629,142,19,0,8,8,0 +5628,142,16,0,7,7,0 +5627,142,17,5,3,3,0 +5626,142,15,4,4,4,0 +5625,142,1,11,2,2,0 +5624,142,6,30,1,1,2 +5645,143,3,2,6,6,0 +5644,143,22,1,7,7,0 +5643,143,18,0,11,11,0 +5642,143,21,0,8,8,0 +5641,143,20,0,9,9,0 +5640,143,19,0,10,10,0 +5639,143,16,3,5,5,0 +5638,143,17,7,4,4,0 +5637,143,15,8,3,3,0 +5636,143,1,21,2,2,1 +5635,143,6,36,1,1,2 +5656,144,3,12,3,3,1 +5655,144,22,1,7,7,0 +5654,144,18,0,11,11,0 +5653,144,21,0,8,8,0 +5652,144,20,0,9,9,0 +5651,144,19,0,10,10,0 +5650,144,16,3,6,6,0 +5649,144,17,10,4,4,0 +5648,144,15,8,5,5,0 +5647,144,1,30,2,2,1 +5646,144,6,40,1,1,2 +5667,145,3,18,3,3,1 +5666,145,22,1,7,7,0 +5665,145,18,0,11,11,0 +5664,145,21,0,8,8,0 +5663,145,20,0,9,9,0 +5662,145,19,0,10,10,0 +5661,145,16,7,6,6,0 +5660,145,17,13,4,4,0 +5659,145,15,9,5,5,0 +5658,145,1,32,2,2,1 +5657,145,6,50,1,1,3 +5678,146,3,18,3,3,1 +5677,146,22,1,8,8,0 +5676,146,18,0,11,11,0 +5675,146,21,1,7,7,0 +5674,146,20,0,10,10,0 +5673,146,19,0,9,9,0 +5672,146,16,9,6,6,0 +5671,146,17,13,4,4,0 +5670,146,15,12,5,5,0 +5669,146,1,42,2,2,2 +5668,146,6,60,1,1,3 +5689,147,3,18,3,3,1 +5688,147,22,1,9,9,0 +5687,147,18,0,11,11,0 +5686,147,21,1,8,8,0 +5685,147,20,1,10,10,0 +5684,147,19,4,7,7,0 +5683,147,16,12,5,5,0 +5682,147,17,13,4,4,0 +5681,147,15,12,6,6,0 +5680,147,1,44,2,2,2 +5679,147,6,76,1,1,4 +5700,148,3,28,3,3,2 +5699,148,22,1,10,10,0 +5698,148,18,0,11,11,0 +5697,148,21,1,9,9,0 +5696,148,20,3,8,8,0 +5695,148,19,5,7,7,0 +5694,148,16,12,6,6,0 +5693,148,17,13,5,5,0 +5692,148,15,15,4,4,0 +5691,148,1,48,2,2,2 +5690,148,6,82,1,1,4 +5711,149,3,37,3,3,2 +5710,149,22,1,10,10,0 +5709,149,18,0,11,11,0 +5708,149,21,1,9,9,0 +5707,149,20,3,8,8,0 +5706,149,19,5,7,7,0 +5705,149,16,12,6,6,0 +5704,149,17,13,5,5,0 +5703,149,15,15,4,4,0 +5702,149,1,53,2,2,2 +5701,149,6,94,1,1,5 +5722,150,3,43,3,3,2 +5721,150,22,1,10,10,0 +5720,150,18,0,11,11,0 +5719,150,21,1,9,9,0 +5718,150,20,3,8,8,0 +5717,150,19,5,7,7,0 +5716,150,16,12,6,6,0 +5715,150,17,15,5,5,0 +5714,150,15,16,4,4,0 +5713,150,1,56,2,2,2 +5712,150,6,108,1,1,6 +5733,151,3,46,3,3,2 +5732,151,22,1,10,10,0 +5731,151,18,0,11,11,0 +5730,151,21,1,9,9,0 +5729,151,20,3,8,8,0 +5728,151,19,5,7,7,0 +5727,151,16,12,6,6,0 +5726,151,17,15,5,5,0 +5725,151,15,19,4,4,0 +5724,151,1,66,2,2,3 +5723,151,6,118,1,1,6 +5744,152,3,56,3,3,3 +5743,152,22,6,7,7,0 +5742,152,18,0,11,11,0 +5741,152,21,1,10,10,0 +5740,152,20,4,9,9,0 +5739,152,19,5,8,8,0 +5738,152,16,16,5,5,0 +5737,152,17,15,6,6,0 +5736,152,15,19,4,4,0 +5735,152,1,66,2,2,3 +5734,152,6,124,1,1,6 +5755,153,3,59,3,3,3 +5754,153,22,6,7,7,0 +5753,153,18,0,11,11,0 +5752,153,21,1,10,10,0 +5751,153,20,4,9,9,0 +5750,153,19,5,8,8,0 +5749,153,16,16,5,5,0 +5748,153,17,15,6,6,0 +5747,153,15,20,4,4,0 +5746,153,1,72,2,2,3 +5745,153,6,140,1,1,7 +5766,154,3,59,3,3,3 +5765,154,22,10,7,7,0 +5764,154,18,0,11,11,0 +5763,154,21,1,10,10,0 +5762,154,20,4,9,9,0 +5761,154,19,5,8,8,0 +5760,154,16,16,5,5,0 +5759,154,17,16,6,6,0 +5758,154,15,20,4,4,0 +5757,154,1,81,2,2,3 +5756,154,6,152,1,1,8 +5777,155,3,73,3,3,4 +5776,155,22,10,7,7,0 +5775,155,18,0,11,11,0 +5774,155,21,1,10,10,0 +5773,155,20,4,9,9,0 +5772,155,19,7,8,8,0 +5771,155,16,17,5,5,0 +5770,155,17,16,6,6,0 +5769,155,15,20,4,4,0 +5768,155,1,81,2,2,3 +5767,155,6,161,1,1,8 +5788,156,3,73,3,3,4 +5787,156,22,10,7,7,0 +5786,156,18,0,11,11,0 +5785,156,21,1,10,10,0 +5784,156,20,4,9,9,0 +5783,156,19,9,8,8,0 +5782,156,16,17,6,6,0 +5781,156,17,19,5,5,0 +5780,156,15,21,4,4,0 +5779,156,1,95,2,2,4 +5778,156,6,167,1,1,8 +5799,157,3,80,3,3,4 +5798,157,22,10,7,7,0 +5797,157,18,0,11,11,0 +5796,157,21,1,10,10,0 +5795,157,20,4,9,9,0 +5794,157,19,9,8,8,0 +5793,157,16,17,6,6,0 +5792,157,17,19,5,5,0 +5791,157,15,21,4,4,0 +5790,157,1,102,2,2,4 +5789,157,6,179,1,1,9 +1454,158,6,16,1,1,1 +1455,158,3,4,2,2,0 +1456,158,16,4,3,3,0 +1457,158,22,2,4,4,0 +1458,158,18,0,5,5,0 +1459,158,20,0,6,6,0 +1460,159,6,26,1,1,2 +1461,159,3,7,4,4,0 +1462,159,16,4,5,5,0 +1463,159,22,8,2,2,0 +1464,159,18,0,7,7,0 +1465,159,20,0,8,8,0 +1466,159,17,7,3,3,0 +1467,159,21,0,6,6,0 +1468,160,6,39,1,1,3 +1469,160,3,7,5,5,0 +1470,160,16,6,6,6,0 +1471,160,22,8,3,3,0 +1472,160,18,0,10,10,0 +1473,160,20,0,11,11,0 +1474,160,17,7,4,4,0 +1475,160,21,0,8,8,0 +1476,160,1,10,2,2,0 +1477,160,15,1,7,7,0 +1478,160,19,0,9,9,0 +1479,161,6,43,1,1,3 +1480,161,3,12,3,3,0 +1481,161,16,6,6,6,0 +1482,161,22,8,4,4,0 +1483,161,18,0,10,10,0 +1484,161,20,0,11,11,0 +1485,161,17,8,5,5,0 +1486,161,21,0,8,8,0 +1487,161,1,26,2,2,1 +1488,161,15,1,7,7,0 +1489,161,19,0,9,9,0 +1490,162,6,49,1,1,3 +1491,162,3,15,3,3,0 +1492,162,16,6,6,6,0 +1493,162,22,8,5,5,0 +1494,162,18,0,10,10,0 +1495,162,20,0,11,11,0 +1496,162,17,9,4,4,0 +1497,162,21,0,8,8,0 +1498,162,1,42,2,2,2 +1499,162,15,1,7,7,0 +1500,162,19,0,9,9,0 +1501,163,6,62,1,1,4 +1502,163,3,15,3,3,0 +1503,163,16,6,6,6,0 +1504,163,22,10,4,4,0 +1505,163,18,0,10,10,0 +1506,163,20,0,11,11,0 +1507,163,17,9,5,5,0 +1508,163,21,1,8,8,0 +1509,163,1,52,2,2,2 +1510,163,15,1,7,7,0 +1511,163,19,0,9,9,0 +1512,164,6,68,1,1,4 +1513,164,3,15,3,3,0 +1514,164,16,6,6,6,0 +1515,164,22,14,4,4,0 +1516,164,18,0,10,10,0 +1517,164,20,0,11,11,0 +1518,164,17,9,5,5,0 +1519,164,21,1,9,9,0 +1520,164,1,63,2,2,3 +1521,164,15,3,8,8,0 +1522,164,19,3,7,7,0 +1523,165,6,84,1,1,5 +1524,165,3,15,4,4,0 +1525,165,16,6,6,6,0 +1526,165,22,18,3,3,0 +1527,165,18,0,10,10,0 +1528,165,20,0,11,11,0 +1529,165,17,10,5,5,0 +1530,165,21,3,9,9,0 +1531,165,1,66,2,2,3 +1532,165,15,3,8,8,0 +1533,165,19,3,7,7,0 +1534,166,6,88,1,1,5 +1535,166,3,17,4,4,0 +1536,166,16,9,6,6,0 +1537,166,22,18,3,3,0 +1538,166,18,0,10,10,0 +1539,166,20,0,11,11,0 +1540,166,17,11,5,5,0 +1541,166,21,3,9,9,0 +1542,166,1,82,2,2,4 +1543,166,15,3,8,8,0 +1544,166,19,3,7,7,0 +1545,167,6,92,2,2,5 +1546,167,3,19,3,3,0 +1547,167,16,12,5,5,0 +1548,167,22,18,4,4,0 +1549,167,18,0,10,10,0 +1550,167,20,0,11,11,0 +1551,167,17,11,6,6,0 +1552,167,21,3,9,9,0 +1553,167,1,98,1,1,5 +1554,167,15,4,7,7,0 +1555,167,19,3,8,8,0 +1556,168,6,102,2,2,6 +1557,168,3,22,3,3,0 +1558,168,16,12,5,5,0 +1559,168,22,18,4,4,0 +1560,168,18,0,10,10,0 +1561,168,20,0,11,11,0 +1562,168,17,11,6,6,0 +1563,168,21,4,8,8,0 +1564,168,1,108,1,1,5 +1565,168,15,6,7,7,0 +1566,168,19,3,9,9,0 +1567,169,6,111,2,2,6 +1568,169,3,24,3,3,0 +1569,169,16,12,6,6,0 +1570,169,22,18,4,4,0 +1571,169,18,0,10,10,0 +1572,169,20,0,11,11,0 +1573,169,17,12,5,5,0 +1574,169,21,4,8,8,0 +1575,169,1,122,1,1,6 +1576,169,15,6,7,7,0 +1577,169,19,3,9,9,0 +1578,170,6,117,2,2,6 +1579,170,3,30,3,3,0 +1580,170,16,12,6,6,0 +1581,170,22,18,4,4,0 +1582,170,18,0,10,10,0 +1583,170,20,0,11,11,0 +1584,170,17,13,5,5,0 +1585,170,21,4,8,8,0 +1586,170,1,135,1,1,7 +1587,170,15,6,7,7,0 +1588,170,19,3,9,9,0 +1589,171,6,127,2,2,7 +1590,171,3,34,3,3,0 +1591,171,16,13,6,6,0 +1592,171,22,20,4,4,0 +1593,171,18,0,10,10,0 +1594,171,20,0,11,11,0 +1595,171,17,13,5,5,0 +1596,171,21,7,7,7,0 +1597,171,1,141,1,1,7 +1598,171,15,6,8,8,0 +1599,171,19,3,9,9,0 +1600,172,6,143,1,1,8 +1601,172,3,34,3,3,0 +1602,172,16,17,6,6,0 +1603,172,22,20,4,4,0 +1604,172,18,0,10,10,0 +1605,172,20,0,11,11,0 +1606,172,17,17,5,5,0 +1607,172,21,7,7,7,0 +1608,172,1,143,2,2,7 +1609,172,15,6,8,8,0 +1610,172,19,3,9,9,0 +1611,173,6,156,1,1,9 +1612,173,3,36,3,3,0 +1613,173,16,18,5,5,0 +1614,173,22,20,4,4,0 +1615,173,18,0,10,10,0 +1616,173,20,0,11,11,0 +1617,173,17,17,6,6,0 +1618,173,21,7,7,7,0 +1619,173,1,153,2,2,7 +1620,173,15,6,8,8,0 +1621,173,19,3,9,9,0 +1622,174,6,170,1,1,10 +1623,174,3,36,3,3,0 +1624,174,16,20,5,5,0 +1625,174,22,20,4,4,0 +1626,174,18,0,10,10,0 +1627,174,20,0,11,11,0 +1628,174,17,17,6,6,0 +1629,174,21,7,7,7,0 +1630,174,1,162,2,2,7 +1631,174,15,6,8,8,0 +1632,174,19,4,9,9,0 +1809,74,4,46,1,1,4 +5450,175,21,1,6,6,0 +5449,175,24,2,5,5,0 +5448,175,22,3,4,4,0 +5447,175,3,4,3,3,0 +5446,175,17,6,2,2,0 +5445,175,6,10,1,1,1 +5470,177,16,0,10,10,0 +5459,176,18,0,9,9,0 +5458,176,20,1,8,8,0 +5457,176,1,10,2,2,1 +5456,176,21,1,7,7,0 +5455,176,24,2,6,6,0 +5454,176,22,3,5,5,0 +5453,176,3,7,4,4,0 +5452,176,17,10,3,3,0 +5469,177,15,1,9,9,0 +5468,177,18,0,11,11,0 +5467,177,20,1,8,8,0 +5466,177,1,16,2,2,1 +5465,177,21,1,7,7,0 +5464,177,24,6,5,5,0 +5463,177,22,5,6,6,0 +5462,177,3,7,4,4,0 +5461,177,17,13,3,3,0 +5460,177,6,28,1,1,2 +5451,176,6,18,1,1,1 +5481,178,16,0,10,10,0 +5480,178,15,1,9,9,0 +5479,178,18,0,11,11,0 +5478,178,20,1,8,8,0 +5477,178,1,20,2,2,1 +5476,178,21,1,7,7,0 +5475,178,24,6,6,6,0 +5474,178,22,8,4,4,0 +5473,178,3,7,5,5,0 +5472,178,17,16,3,3,0 +5471,178,6,44,1,1,3 +5492,179,16,0,10,10,0 +5491,179,15,1,9,9,0 +5490,179,18,0,11,11,0 +5489,179,20,2,7,7,0 +5488,179,1,36,2,2,2 +5487,179,21,1,8,8,0 +5486,179,24,6,6,6,0 +5485,179,22,8,5,5,0 +5484,179,3,9,4,4,0 +5483,179,17,16,3,3,0 +5482,179,6,51,1,1,3 +5503,180,16,0,10,10,0 +5502,180,15,2,8,8,0 +5501,180,18,0,11,11,0 +5500,180,20,2,7,7,0 +5499,180,1,46,2,2,3 +5498,180,21,1,9,9,0 +5497,180,24,8,6,6,0 +5496,180,22,14,4,4,0 +5495,180,3,12,5,5,0 +5494,180,17,16,3,3,0 +5493,180,6,55,1,1,3 +5514,181,16,0,10,10,0 +5513,181,15,2,8,8,0 +5512,181,18,0,11,11,0 +5511,181,20,2,7,7,0 +5510,181,1,52,2,2,3 +5509,181,21,1,9,9,0 +5508,181,24,12,6,6,0 +5507,181,22,14,5,5,0 +5506,181,3,15,4,4,0 +5505,181,17,26,3,3,1 +5504,181,6,58,1,1,3 +5525,182,16,0,10,10,0 +5524,182,15,3,7,7,0 +5523,182,18,0,11,11,0 +5522,182,20,2,8,8,0 +5521,182,1,62,2,2,4 +5520,182,21,1,9,9,0 +5519,182,24,12,6,6,0 +5518,182,22,14,5,5,0 +5517,182,3,19,4,4,0 +5516,182,17,31,3,3,1 +5515,182,6,64,1,1,3 +5536,183,16,0,10,10,0 +5535,183,15,4,7,7,0 +5534,183,18,0,11,11,0 +5533,183,20,2,8,8,0 +5532,183,1,72,2,2,4 +5531,183,21,1,9,9,0 +5530,183,24,12,6,6,0 +5529,183,22,16,5,5,0 +5528,183,3,19,4,4,0 +5527,183,17,34,3,3,1 +5526,183,6,74,1,1,4 +5547,184,16,0,10,10,0 +5546,184,15,4,7,7,0 +5545,184,18,0,11,11,0 +5544,184,20,3,8,8,0 +5543,184,1,74,2,2,4 +5542,184,21,1,9,9,0 +5541,184,24,12,6,6,0 +5540,184,22,16,5,5,0 +5539,184,3,22,4,4,0 +5538,184,17,38,3,3,1 +5537,184,6,90,1,1,5 +5558,185,16,0,10,10,0 +5557,185,15,4,7,7,0 +5556,185,18,0,11,11,0 +5555,185,20,3,8,8,0 +5554,185,1,90,2,2,5 +5553,185,21,1,9,9,0 +5552,185,24,14,6,6,0 +5551,185,22,16,5,5,0 +5550,185,3,22,4,4,0 +5549,185,17,42,3,3,1 +5548,185,6,94,1,1,5 +5569,186,16,0,10,10,0 +5568,186,15,4,7,7,0 +5567,186,18,0,11,11,0 +5566,186,20,3,8,8,0 +5565,186,1,106,1,1,6 +5564,186,21,1,9,9,0 +5563,186,24,14,6,6,0 +5562,186,22,16,5,5,0 +5561,186,3,24,4,4,0 +5560,186,17,47,3,3,1 +5559,186,6,97,2,2,5 +5580,187,16,0,10,10,0 +5579,187,15,4,7,7,0 +5578,187,18,0,11,11,0 +5577,187,20,3,8,8,0 +5576,187,1,108,1,1,6 +5575,187,21,1,9,9,0 +5574,187,24,17,5,5,0 +5573,187,22,16,6,6,0 +5572,187,3,30,4,4,0 +5571,187,17,57,3,3,2 +5570,187,6,102,2,2,5 +5591,188,16,0,11,11,0 +5590,188,15,4,8,8,0 +5589,188,18,1,10,10,0 +5588,188,20,9,7,7,0 +5587,188,1,110,1,1,6 +5586,188,21,1,9,9,0 +5585,188,24,31,5,5,1 +5584,188,22,16,6,6,0 +5583,188,3,33,4,4,0 +5582,188,17,57,3,3,2 +5581,188,6,102,2,2,5 +5602,189,16,0,11,11,0 +5601,189,15,4,8,8,0 +5600,189,18,1,10,10,0 +5599,189,20,9,7,7,0 +5598,189,1,114,2,2,6 +5597,189,21,1,9,9,0 +5596,189,24,36,4,4,1 +5595,189,22,16,6,6,0 +5594,189,3,33,5,5,0 +5593,189,17,58,3,3,2 +5592,189,6,118,1,1,6 +5613,190,16,0,11,11,0 +5612,190,15,5,8,8,0 +5611,190,18,1,10,10,0 +5610,190,20,9,7,7,0 +5609,190,1,124,2,2,7 +5608,190,21,1,9,9,0 +5607,190,24,36,4,4,1 +5606,190,22,16,6,6,0 +5605,190,3,35,5,5,0 +5604,190,17,61,3,3,2 +5603,190,6,128,1,1,6 +2055,191,1,16,1,1,1 +2056,191,3,6,2,2,0 +2057,191,6,3,3,3,0 +2058,191,15,1,4,4,0 +2059,191,22,0,5,5,0 +2060,191,17,0,6,6,0 +2061,191,20,0,7,7,0 +2062,192,1,32,1,1,2 +2063,192,3,8,2,2,0 +2064,192,6,7,3,3,0 +2065,192,15,1,5,5,0 +2066,192,22,4,4,4,0 +2067,192,17,0,6,6,0 +2068,192,20,0,7,7,0 +2069,192,24,0,8,8,0 +2070,193,1,39,1,1,2 +2071,193,3,8,3,3,0 +2072,193,6,21,2,2,1 +2073,193,15,3,5,5,0 +2074,193,22,7,4,4,0 +2075,193,17,0,6,6,0 +2076,193,20,0,7,7,0 +2077,193,24,0,8,8,0 +2078,193,25,0,9,9,0 +2079,193,18,0,10,10,0 +2080,194,1,49,1,1,3 +2081,194,3,13,3,3,0 +2082,194,6,31,2,2,1 +2083,194,15,4,5,5,0 +2084,194,22,7,4,4,0 +2085,194,17,0,6,6,0 +2086,194,20,0,8,8,0 +2087,194,24,0,10,10,0 +2088,194,25,0,11,11,0 +2089,194,18,0,7,7,0 +2090,194,21,0,9,9,0 +2091,195,1,65,1,1,4 +2092,195,3,14,3,3,0 +2093,195,6,35,2,2,1 +2094,195,15,4,5,5,0 +2095,195,22,10,4,4,0 +2096,195,17,0,7,7,0 +2097,195,20,0,9,9,0 +2098,195,24,2,6,6,0 +2099,195,25,0,11,11,0 +2100,195,18,0,8,8,0 +2101,195,21,0,10,10,0 +2102,196,1,75,1,1,5 +2103,196,3,16,4,4,0 +2104,196,6,39,2,2,1 +2105,196,15,4,6,6,0 +2106,196,22,16,3,3,0 +2107,196,17,0,8,8,0 +2108,196,20,0,10,10,0 +2109,196,24,2,7,7,0 +2110,196,25,0,11,11,0 +2111,196,18,0,9,9,0 +2112,196,21,4,5,5,0 +2113,197,1,75,1,1,5 +2114,197,3,16,4,4,0 +2115,197,6,53,2,2,2 +2116,197,15,4,7,7,0 +2117,197,22,25,3,3,0 +2118,197,17,0,8,8,0 +2119,197,20,0,11,11,0 +2120,197,24,5,5,5,0 +2121,197,25,0,10,10,0 +2122,197,18,0,9,9,0 +2123,197,21,4,6,6,0 +2124,198,1,80,1,1,5 +2125,198,3,19,4,4,0 +2126,198,6,69,2,2,3 +2127,198,15,4,7,7,0 +2128,198,22,27,3,3,0 +2129,198,17,0,8,8,0 +2130,198,20,0,11,11,0 +2131,198,24,5,5,5,0 +2132,198,25,0,10,10,0 +2133,198,18,0,9,9,0 +2134,198,21,4,6,6,0 +2135,199,1,86,1,1,5 +2136,199,3,19,4,4,0 +2137,199,6,83,2,2,4 +2138,199,15,4,7,7,0 +2139,199,22,32,3,3,0 +2140,199,17,1,8,8,0 +2141,199,20,0,11,11,0 +2142,199,24,5,5,5,0 +2143,199,25,0,10,10,0 +2144,199,18,0,9,9,0 +2145,199,21,4,6,6,0 +2146,200,1,102,1,1,6 +2147,200,3,20,4,4,0 +2148,200,6,90,2,2,4 +2149,200,15,4,7,7,0 +2150,200,22,32,3,3,0 +2151,200,17,3,8,8,0 +2152,200,20,0,11,11,0 +2153,200,24,5,5,5,0 +2154,200,25,0,10,10,0 +2155,200,18,0,9,9,0 +2156,200,21,4,6,6,0 +2157,201,1,118,1,1,7 +2158,201,3,24,4,4,0 +2159,201,6,92,2,2,4 +2160,201,15,4,8,8,0 +2161,201,22,32,3,3,0 +2162,201,17,7,5,5,0 +2163,201,20,0,11,11,0 +2164,201,24,5,6,6,0 +2165,201,25,0,10,10,0 +2166,201,18,0,9,9,0 +2167,201,21,4,7,7,0 +2168,202,1,125,1,1,7 +2169,202,3,30,4,4,0 +2170,202,6,102,2,2,5 +2171,202,15,4,8,8,0 +2172,202,22,32,3,3,0 +2173,202,17,10,5,5,0 +2174,202,20,0,11,11,0 +2175,202,24,5,6,6,0 +2176,202,25,0,10,10,0 +2177,202,18,0,9,9,0 +2178,202,21,4,7,7,0 +2179,203,1,125,1,1,7 +2180,203,3,33,3,3,0 +2181,203,6,102,2,2,5 +2182,203,15,8,6,6,0 +2183,203,22,32,4,4,0 +2184,203,17,26,5,5,1 +2185,203,20,1,9,9,0 +2186,203,24,5,8,8,0 +2187,203,25,0,11,11,0 +2188,203,18,0,10,10,0 +2189,203,21,6,7,7,0 +2190,204,1,128,1,1,7 +2191,204,3,33,3,3,0 +2192,204,6,118,2,2,6 +2193,204,15,10,6,6,0 +2194,204,22,32,4,4,0 +2195,204,17,31,5,5,1 +2196,204,20,1,9,9,0 +2197,204,24,5,8,8,0 +2198,204,25,0,11,11,0 +2199,204,18,0,10,10,0 +2200,204,21,6,7,7,0 +2201,205,1,142,1,1,8 +2202,205,3,35,3,3,0 +2203,205,6,127,2,2,6 +2204,205,15,10,6,6,0 +2205,205,22,33,4,4,0 +2206,205,17,31,5,5,1 +2207,205,20,1,9,9,0 +2208,205,24,5,8,8,0 +2209,205,25,0,11,11,0 +2210,205,18,0,10,10,0 +2211,205,21,6,7,7,0 +2212,206,1,156,1,1,9 +2213,206,3,38,3,3,0 +2214,206,6,133,2,2,6 +2215,206,15,10,6,6,0 +2216,206,22,33,5,5,0 +2217,206,17,34,4,4,1 +2218,206,20,1,9,9,0 +2219,206,24,5,8,8,0 +2220,206,25,0,11,11,0 +2221,206,18,0,10,10,0 +2222,206,21,6,7,7,0 +5257,207,21,0,8,8,0 +5256,207,18,0,7,7,0 +5255,207,3,0,6,6,0 +5254,207,15,1,5,5,0 +5253,207,20,2,4,4,0 +5252,207,22,3,3,3,0 +5251,207,6,6,2,2,0 +5250,207,1,14,1,1,1 +5267,208,25,0,10,10,0 +5266,208,17,0,7,7,0 +5265,208,21,0,9,9,0 +5264,208,18,0,8,8,0 +5263,208,3,10,2,2,1 +5262,208,15,1,6,6,0 +5261,208,20,6,5,5,0 +5260,208,22,10,3,3,0 +5259,208,6,8,4,4,0 +5258,208,1,17,1,1,1 +5278,209,24,0,11,11,0 +5277,209,25,0,8,8,0 +5276,209,17,4,6,6,0 +5275,209,21,0,10,10,0 +5274,209,18,0,9,9,0 +5273,209,3,20,1,1,2 +5272,209,15,4,7,7,0 +5271,209,20,6,5,5,0 +5270,209,22,11,4,4,0 +5269,209,6,14,3,3,0 +5268,209,1,19,2,2,1 +5289,210,24,0,11,11,0 +5288,210,25,0,8,8,0 +5287,210,17,7,5,5,0 +5286,210,21,0,10,10,0 +5285,210,18,0,9,9,0 +5284,210,3,30,1,1,3 +5283,210,15,4,7,7,0 +5282,210,20,6,6,6,0 +5281,210,22,13,4,4,0 +5280,210,6,24,2,2,0 +5279,210,1,20,3,3,1 +5300,211,24,6,7,7,0 +5299,211,25,2,9,9,0 +5298,211,17,8,6,6,0 +5297,211,21,0,11,11,0 +5296,211,18,0,10,10,0 +5295,211,3,30,2,2,3 +5294,211,15,4,8,8,0 +5293,211,20,9,5,5,0 +5292,211,22,13,4,4,0 +5291,211,6,38,1,1,1 +5290,211,1,20,3,3,1 +25366,212,26,0,12,12,0 +25365,212,17,8,6,6,0 +25364,212,25,2,9,9,0 +25363,212,24,6,7,7,0 +25362,212,21,0,11,11,0 +25361,212,18,0,10,10,0 +25360,212,3,40,2,2,4 +25359,212,15,6,8,8,0 +25358,212,20,15,5,5,0 +25357,212,22,17,4,4,0 +25356,212,6,41,1,1,1 +25355,212,1,21,3,3,1 +25378,213,26,0,12,12,0 +25377,213,17,12,6,6,0 +25376,213,25,2,9,9,0 +25375,213,24,6,8,8,0 +25374,213,21,0,10,10,0 +25373,213,18,0,11,11,0 +25372,213,3,43,2,2,4 +25371,213,15,8,7,7,0 +25370,213,20,16,5,5,0 +25369,213,22,23,3,3,0 +25368,213,6,51,1,1,2 +25367,213,1,21,4,4,1 +25390,214,26,0,12,12,0 +25389,214,17,13,6,6,0 +25388,214,25,2,9,9,0 +25387,214,24,6,8,8,0 +25386,214,21,0,10,10,0 +25385,214,18,0,11,11,0 +25384,214,3,52,2,2,4 +25383,214,15,8,7,7,0 +25382,214,20,16,5,5,0 +25381,214,22,25,3,3,0 +25380,214,6,65,1,1,3 +25379,214,1,21,4,4,1 +25402,215,26,0,12,12,0 +25401,215,17,15,6,6,0 +25400,215,25,2,9,9,0 +25399,215,24,6,8,8,0 +25398,215,21,1,10,10,0 +25397,215,18,0,11,11,0 +25396,215,3,62,2,2,5 +25395,215,15,8,7,7,0 +25394,215,20,16,5,5,0 +25393,215,22,35,3,3,0 +25392,215,6,65,1,1,3 +25391,215,1,24,4,4,1 +25414,216,26,0,12,12,0 +25413,216,17,17,6,6,0 +25412,216,25,2,9,9,0 +25411,216,24,6,8,8,0 +25410,216,21,1,10,10,0 +25409,216,18,0,11,11,0 +25408,216,3,62,2,2,5 +25407,216,15,8,7,7,0 +25406,216,20,19,5,5,0 +25405,216,22,46,3,3,1 +25404,216,6,71,1,1,3 +25403,216,1,28,4,4,1 +25426,217,26,0,12,12,0 +25425,217,17,19,6,6,0 +25424,217,25,2,10,10,0 +25423,217,24,6,9,9,0 +25422,217,21,7,8,8,0 +25421,217,18,0,11,11,0 +25420,217,3,72,2,2,6 +25419,217,15,12,7,7,0 +25418,217,20,20,5,5,0 +25417,217,22,46,3,3,1 +25416,217,6,74,1,1,3 +25415,217,1,28,4,4,1 +25438,218,26,0,12,12,0 +25437,218,17,25,5,5,0 +25436,218,25,2,10,10,0 +25435,218,24,6,9,9,0 +25434,218,21,7,8,8,0 +25433,218,18,0,11,11,0 +25432,218,3,78,2,2,6 +25431,218,15,15,7,7,0 +25430,218,20,20,6,6,0 +25429,218,22,47,3,3,1 +25428,218,6,84,1,1,4 +25427,218,1,28,4,4,1 +25450,219,26,0,12,12,0 +25449,219,17,28,5,5,0 +25448,219,25,2,10,10,0 +25447,219,24,6,9,9,0 +25446,219,21,7,8,8,0 +25445,219,18,0,11,11,0 +25444,219,3,84,2,2,6 +25443,219,15,15,7,7,0 +25442,219,20,20,6,6,0 +25441,219,22,53,3,3,1 +25440,219,6,85,1,1,4 +25439,219,1,38,4,4,2 +25462,220,26,0,12,12,0 +25461,220,17,33,5,5,0 +25460,220,25,2,10,10,0 +25459,220,24,6,9,9,0 +25458,220,21,7,8,8,0 +25457,220,18,0,11,11,0 +25456,220,3,98,1,1,7 +25455,220,15,15,7,7,0 +25454,220,20,20,6,6,0 +25453,220,22,53,3,3,1 +25452,220,6,86,2,2,4 +25451,220,1,44,4,4,2 +25474,221,26,0,12,12,0 +25473,221,17,33,5,5,0 +25472,221,25,2,10,10,0 +25471,221,24,6,9,9,0 +25470,221,21,9,8,8,0 +25469,221,18,0,11,11,0 +25468,221,3,112,1,1,8 +25467,221,15,15,7,7,0 +25466,221,20,21,6,6,0 +25465,221,22,62,3,3,1 +25464,221,6,86,2,2,4 +25463,221,1,44,4,4,2 +25486,222,26,0,12,12,0 +25485,222,17,33,5,5,0 +25484,222,25,2,10,10,0 +25483,222,24,6,9,9,0 +25482,222,21,9,8,8,0 +25481,222,18,0,11,11,0 +25480,222,3,118,1,1,8 +25479,222,15,16,7,7,0 +25478,222,20,21,6,6,0 +25477,222,22,64,3,3,1 +25476,222,6,100,2,2,5 +25475,222,1,47,4,4,2 +25498,223,26,0,12,12,0 +25497,223,17,33,5,5,0 +25496,223,25,2,10,10,0 +25495,223,24,6,9,9,0 +25494,223,21,9,8,8,0 +25493,223,18,0,11,11,0 +25492,223,3,123,1,1,8 +25491,223,15,16,7,7,0 +25490,223,20,21,6,6,0 +25489,223,22,67,3,3,1 +25488,223,6,102,2,2,5 +25487,223,1,63,4,4,3 +2418,224,3,16,1,1,1 +2419,224,6,4,2,2,0 +2420,224,22,3,3,3,0 +2421,224,1,2,4,4,0 +2422,224,25,1,5,5,0 +2423,224,27,0,6,6,0 +2424,224,15,0,7,7,0 +2425,224,29,0,8,8,0 +2426,225,3,26,1,1,2 +2427,225,6,8,3,3,0 +2428,225,22,9,2,2,0 +2429,225,1,5,4,4,0 +2430,225,25,3,5,5,0 +2431,225,27,1,6,6,0 +2432,225,15,0,7,7,0 +2433,225,29,0,8,8,0 +2434,225,18,0,9,9,0 +2435,225,28,0,10,10,0 +2436,225,17,0,11,11,0 +2437,226,3,42,1,1,3 +2438,226,6,10,3,3,0 +2439,226,22,13,2,2,0 +2440,226,1,5,4,4,0 +2441,226,25,3,6,6,0 +2442,226,27,1,7,7,0 +2443,226,15,0,9,9,0 +2444,226,29,1,8,8,0 +2445,226,18,0,11,11,0 +2446,226,28,0,10,10,0 +2447,226,17,3,5,5,0 +2448,227,3,55,1,1,4 +2449,227,6,16,2,2,0 +2450,227,22,13,3,3,0 +2451,227,1,9,4,4,0 +2452,227,25,3,6,6,0 +2453,227,27,1,7,7,0 +2454,227,15,0,9,9,0 +2455,227,29,1,8,8,0 +2456,227,18,0,11,11,0 +2457,227,28,0,10,10,0 +2458,227,17,6,5,5,0 +2459,228,3,65,1,1,5 +2460,228,6,25,2,2,0 +2461,228,22,18,3,3,0 +2462,228,1,9,4,4,0 +2463,228,25,3,6,6,0 +2464,228,27,1,7,7,0 +2465,228,15,0,9,9,0 +2466,228,29,1,8,8,0 +2467,228,18,0,10,10,0 +2468,228,28,0,11,11,0 +2469,228,17,8,5,5,0 +2470,229,3,65,1,1,5 +2471,229,6,25,2,2,0 +2472,229,22,18,3,3,0 +2473,229,1,16,4,4,0 +2474,229,25,5,8,8,0 +2475,229,27,11,5,5,1 +2476,229,15,7,7,7,0 +2477,229,29,1,9,9,0 +2478,229,18,0,10,10,0 +2479,229,28,0,11,11,0 +2480,229,17,8,6,6,0 +2481,230,3,69,1,1,5 +2482,230,6,35,2,2,1 +2483,230,22,24,3,3,0 +2484,230,1,18,4,4,0 +2485,230,25,5,8,8,0 +2486,230,27,12,5,5,1 +2487,230,15,10,6,6,0 +2488,230,29,1,9,9,0 +2489,230,18,0,10,10,0 +2490,230,28,0,11,11,0 +2491,230,17,8,7,7,0 +2492,231,3,85,1,1,6 +2493,231,6,35,2,2,1 +2494,231,22,28,3,3,0 +2495,231,1,23,4,4,0 +2496,231,25,5,8,8,0 +2497,231,27,12,5,5,1 +2498,231,15,10,6,6,0 +2499,231,29,1,9,9,0 +2500,231,18,0,10,10,0 +2501,231,28,0,11,11,0 +2502,231,17,9,7,7,0 +2503,232,3,101,1,1,7 +2504,232,6,35,2,2,1 +2505,232,22,35,3,3,0 +2506,232,1,26,4,4,0 +2507,232,25,5,8,8,0 +2508,232,27,12,5,5,1 +2509,232,15,10,6,6,0 +2510,232,29,1,9,9,0 +2511,232,18,0,10,10,0 +2512,232,28,0,11,11,0 +2513,232,17,9,7,7,0 +2514,233,3,111,1,1,8 +2515,233,6,35,3,3,1 +2516,233,22,41,2,2,0 +2517,233,1,32,4,4,0 +2518,233,25,5,8,8,0 +2519,233,27,12,6,6,1 +2520,233,15,10,7,7,0 +2521,233,29,1,9,9,0 +2522,233,18,0,10,10,0 +2523,233,28,0,11,11,0 +2524,233,17,13,5,5,0 +2525,234,3,125,1,1,9 +2526,234,6,38,3,3,1 +2527,234,22,47,2,2,0 +2528,234,1,34,4,4,0 +2529,234,25,5,8,8,0 +2530,234,27,12,6,6,1 +2531,234,15,10,7,7,0 +2532,234,29,1,9,9,0 +2533,234,18,0,10,10,0 +2534,234,28,0,11,11,0 +2535,234,17,14,5,5,0 +2536,235,3,141,1,1,10 +2537,235,6,38,3,3,1 +2538,235,22,51,2,2,0 +2539,235,1,37,4,4,0 +2540,235,25,5,8,8,0 +2541,235,27,14,6,6,1 +2542,235,15,10,7,7,0 +2543,235,29,1,9,9,0 +2544,235,18,0,10,10,0 +2545,235,28,0,11,11,0 +2546,235,17,15,5,5,0 +2547,236,3,149,1,1,10 +2548,236,6,48,3,3,2 +2549,236,22,55,2,2,0 +2550,236,1,41,4,4,0 +2551,236,25,5,8,8,0 +2552,236,27,14,6,6,1 +2553,236,15,10,7,7,0 +2554,236,29,1,9,9,0 +2555,236,18,0,10,10,0 +2556,236,28,0,11,11,0 +2557,236,17,15,5,5,0 +2558,237,3,149,1,1,10 +2559,237,6,58,3,3,3 +2560,237,22,61,2,2,0 +2561,237,1,45,4,4,0 +2562,237,25,5,8,8,0 +2563,237,27,15,6,6,1 +2564,237,15,10,7,7,0 +2565,237,29,1,9,9,0 +2566,237,18,0,10,10,0 +2567,237,28,0,11,11,0 +2568,237,17,20,5,5,0 +2569,238,3,165,1,1,11 +2570,238,6,64,3,3,3 +2571,238,22,65,2,2,0 +2572,238,1,45,4,4,0 +2573,238,25,5,8,8,0 +2574,238,27,15,6,6,1 +2575,238,15,10,7,7,0 +2576,238,29,1,9,9,0 +2577,238,18,0,10,10,0 +2578,238,28,0,11,11,0 +2579,238,17,20,5,5,0 +2580,239,3,175,1,1,12 +2581,239,6,70,2,2,3 +2582,239,22,68,3,3,0 +2583,239,1,49,4,4,0 +2584,239,25,5,8,8,0 +2585,239,27,15,6,6,1 +2586,239,15,11,7,7,0 +2587,239,29,1,9,9,0 +2588,239,18,0,10,10,0 +2589,239,28,0,11,11,0 +2590,239,17,22,5,5,0 +5044,240,28,0,8,8,0 +5043,240,30,0,7,7,0 +5042,240,27,0,6,6,0 +5041,240,25,0,5,5,0 +5040,240,1,4,4,4,0 +5039,240,6,6,3,3,0 +5038,240,3,6,2,2,0 +5037,240,22,10,1,1,1 +5054,241,31,0,9,9,0 +5053,241,15,2,5,5,0 +5052,241,28,0,10,10,0 +5051,241,30,0,8,8,0 +5050,241,27,0,6,6,0 +5049,241,25,0,7,7,0 +5048,241,1,4,4,4,0 +5047,241,6,13,3,3,0 +5046,241,3,16,2,2,1 +5045,241,22,17,1,1,1 +5067,242,29,0,13,13,0 +5066,242,18,0,12,12,0 +5065,242,17,0,8,8,0 +5064,242,31,0,10,10,0 +5063,242,15,3,5,5,0 +5062,242,28,0,11,11,0 +5061,242,30,0,9,9,0 +5060,242,27,0,6,6,0 +5059,242,25,0,7,7,0 +5058,242,1,6,4,4,0 +5057,242,6,23,2,2,0 +5056,242,3,29,1,1,2 +5055,242,22,17,3,3,1 +5080,243,29,0,12,12,0 +5079,243,18,0,13,13,0 +5078,243,17,2,6,6,0 +5077,243,31,0,9,9,0 +5076,243,15,3,5,5,0 +5075,243,28,0,11,11,0 +5074,243,30,0,10,10,0 +5073,243,27,1,7,7,0 +5072,243,25,0,8,8,0 +5071,243,1,6,4,4,0 +5070,243,6,27,3,3,0 +5069,243,3,32,2,2,2 +5068,243,22,33,1,1,2 +5106,245,29,1,8,8,0 +5093,244,29,0,10,10,0 +5092,244,18,0,9,9,0 +5091,244,17,2,6,6,0 +5090,244,31,0,11,11,0 +5089,244,15,4,5,5,0 +5088,244,28,0,13,13,0 +5087,244,30,0,12,12,0 +5086,244,27,1,7,7,0 +5105,245,18,0,10,10,0 +5085,244,25,0,8,8,0 +5084,244,1,8,4,4,0 +5083,244,6,31,3,3,0 +5082,244,3,38,2,2,2 +5081,244,22,46,1,1,3 +5104,245,17,12,4,4,0 +5103,245,31,0,11,11,0 +5102,245,15,4,7,7,0 +5101,245,28,0,13,13,0 +5100,245,30,0,12,12,0 +5099,245,27,4,6,6,0 +5098,245,25,0,9,9,0 +5097,245,1,8,5,5,0 +5096,245,6,41,2,2,1 +5095,245,3,38,3,3,2 +5094,245,22,48,1,1,3 +5119,246,29,1,8,8,0 +5118,246,18,0,10,10,0 +5117,246,17,13,4,4,0 +5116,246,31,0,11,11,0 +5115,246,15,4,7,7,0 +5114,246,28,0,13,13,0 +5113,246,30,0,12,12,0 +5112,246,27,7,6,6,0 +5111,246,25,0,9,9,0 +5110,246,1,8,5,5,0 +5109,246,6,43,3,3,1 +5108,246,3,48,2,2,2 +5107,246,22,58,1,1,4 +5132,247,29,1,8,8,0 +5131,247,18,0,10,10,0 +5130,247,17,13,4,4,0 +5129,247,31,0,11,11,0 +5128,247,15,5,7,7,0 +5127,247,28,0,13,13,0 +5126,247,30,0,12,12,0 +5125,247,27,10,5,5,0 +5124,247,25,0,9,9,0 +5123,247,1,10,6,6,0 +5122,247,6,49,3,3,1 +5121,247,3,52,2,2,2 +5120,247,22,68,1,1,5 +5145,248,29,1,8,8,0 +5144,248,18,0,10,10,0 +5143,248,17,13,4,4,0 +5142,248,31,0,12,12,0 +5141,248,15,7,7,7,0 +5140,248,28,0,13,13,0 +5139,248,30,0,11,11,0 +5138,248,27,11,5,5,0 +5137,248,25,0,9,9,0 +5136,248,1,10,6,6,0 +5135,248,6,53,3,3,1 +5134,248,3,58,2,2,2 +5133,248,22,81,1,1,6 +5158,249,29,1,8,8,0 +5157,249,18,0,10,10,0 +5156,249,17,13,4,4,0 +5155,249,31,0,12,12,0 +5154,249,15,9,7,7,0 +5153,249,28,0,13,13,0 +5152,249,30,0,11,11,0 +5151,249,27,12,5,5,0 +5150,249,25,0,9,9,0 +5149,249,1,10,6,6,0 +5148,249,6,57,3,3,1 +5147,249,3,74,2,2,3 +5146,249,22,84,1,1,6 +5171,250,29,1,8,8,0 +5170,250,18,0,10,10,0 +5169,250,17,14,5,5,0 +5168,250,31,0,12,12,0 +5167,250,15,12,7,7,0 +5166,250,28,0,13,13,0 +5165,250,30,0,11,11,0 +5164,250,27,16,4,4,0 +5163,250,25,0,9,9,0 +5162,250,1,12,6,6,0 +5161,250,6,57,3,3,1 +5160,250,3,80,2,2,3 +5159,250,22,94,1,1,7 +5184,251,29,1,9,9,0 +5183,251,18,0,10,10,0 +5182,251,17,14,7,7,0 +5181,251,31,0,13,13,0 +5180,251,15,17,5,5,0 +5179,251,28,0,12,12,0 +5178,251,30,0,11,11,0 +5177,251,27,16,6,6,0 +5176,251,25,2,8,8,0 +5175,251,1,21,4,4,0 +5174,251,6,57,3,3,1 +5173,251,3,80,2,2,3 +5172,251,22,104,1,1,8 +5197,252,29,1,9,9,0 +5196,252,18,0,10,10,0 +5195,252,17,14,7,7,0 +5194,252,31,0,13,13,0 +5193,252,15,18,5,5,0 +5192,252,28,0,12,12,0 +5191,252,30,0,11,11,0 +5190,252,27,16,6,6,0 +5189,252,25,2,8,8,0 +5188,252,1,21,4,4,0 +5187,252,6,62,3,3,1 +5186,252,3,94,2,2,4 +5185,252,22,110,1,1,8 +5210,253,29,1,9,9,0 +5209,253,18,0,10,10,0 +5208,253,17,18,5,5,0 +5207,253,31,0,13,13,0 +5206,253,15,18,6,6,0 +5205,253,28,0,12,12,0 +5204,253,30,0,11,11,0 +5203,253,27,16,7,7,0 +5202,253,25,2,8,8,0 +5201,253,1,21,4,4,0 +5200,253,6,68,3,3,1 +5199,253,3,98,2,2,4 +5198,253,22,122,1,1,9 +5223,254,29,1,9,9,0 +5222,254,18,0,10,10,0 +5221,254,17,18,5,5,0 +5220,254,31,0,13,13,0 +5219,254,15,18,6,6,0 +5218,254,28,0,12,12,0 +5217,254,30,0,11,11,0 +5216,254,27,16,7,7,0 +5215,254,25,2,8,8,0 +5214,254,1,21,4,4,0 +5213,254,6,73,3,3,1 +5212,254,3,108,2,2,4 +5211,254,22,133,1,1,10 +5236,255,29,1,9,9,0 +5235,255,18,0,10,10,0 +5234,255,17,21,5,5,0 +5233,255,31,0,13,13,0 +5232,255,15,18,7,7,0 +5231,255,28,0,12,12,0 +5230,255,30,0,11,11,0 +5229,255,27,18,6,6,0 +5228,255,25,3,8,8,0 +5227,255,1,27,4,4,0 +5226,255,6,73,3,3,1 +5225,255,3,108,2,2,4 +5224,255,22,147,1,1,11 +5249,256,29,5,8,8,0 +5248,256,18,1,10,10,0 +5247,256,17,21,6,6,0 +5246,256,31,0,13,13,0 +5245,256,15,18,7,7,0 +5244,256,28,0,11,11,0 +5243,256,30,0,12,12,0 +5242,256,27,24,5,5,0 +5241,256,25,5,9,9,0 +5240,256,1,30,4,4,0 +5239,256,6,73,3,3,1 +5238,256,3,118,2,2,5 +5237,256,22,147,1,1,11 +25523,257,31,0,11,11,0 +25522,257,27,0,10,10,0 +25521,257,33,0,9,9,0 +25520,257,18,0,8,8,0 +25519,257,32,0,7,7,0 +25518,257,15,1,6,6,0 +25517,257,25,2,5,5,0 +25516,257,17,3,4,4,0 +25515,257,6,4,3,3,0 +25514,257,3,6,2,2,0 +25513,257,22,10,1,1,1 +25538,258,1,0,13,13,0 +25537,258,31,0,12,12,0 +25536,258,27,0,11,11,0 +25535,258,33,1,8,8,0 +25534,258,18,0,10,10,0 +25533,258,32,0,9,9,0 +25532,258,15,3,6,6,0 +25531,258,25,2,7,7,0 +25530,258,17,7,3,3,0 +25529,258,6,10,2,2,0 +25528,258,3,6,4,4,0 +25527,258,22,20,1,1,2 +25553,259,29,3,8,8,0 +25552,259,1,4,6,6,0 +25551,259,31,0,13,13,0 +25550,259,27,0,12,12,0 +25549,259,33,1,9,9,0 +25548,259,18,0,11,11,0 +25547,259,32,0,10,10,0 +25546,259,15,6,5,5,0 +25545,259,25,4,7,7,0 +25544,259,17,7,4,4,0 +25543,259,6,16,2,2,0 +25542,259,3,7,3,3,0 +25541,259,22,30,1,1,3 +25567,260,29,3,8,8,0 +25566,260,1,10,3,3,0 +25565,260,31,0,13,13,0 +25564,260,27,0,12,12,0 +25563,260,33,1,9,9,0 +25562,260,18,1,10,10,0 +25561,260,32,0,11,11,0 +25560,260,15,6,6,6,0 +25559,260,25,4,7,7,0 +25558,260,17,10,4,4,0 +25557,260,6,22,2,2,0 +25556,260,3,7,5,5,0 +25555,260,22,40,1,1,4 +25581,261,29,3,8,8,0 +25580,261,1,10,5,5,0 +25579,261,31,0,13,13,0 +25578,261,27,0,12,12,0 +25577,261,33,1,10,10,0 +25576,261,18,3,9,9,0 +25575,261,32,0,11,11,0 +25574,261,15,6,7,7,0 +25573,261,25,8,6,6,0 +25572,261,17,11,4,4,0 +25571,261,6,25,2,2,0 +25570,261,3,17,3,3,1 +25569,261,22,46,1,1,4 +25595,262,29,3,8,8,0 +25594,262,1,10,5,5,0 +25593,262,31,0,13,13,0 +25592,262,27,0,12,12,0 +25591,262,33,1,10,10,0 +25590,262,18,3,9,9,0 +25589,262,32,0,11,11,0 +25588,262,15,6,7,7,0 +25587,262,25,8,6,6,0 +25586,262,17,11,4,4,0 +25585,262,6,32,2,2,0 +25584,262,3,25,3,3,1 +25583,262,22,57,1,1,5 +25609,263,29,3,9,9,0 +25608,263,1,10,5,5,0 +25607,263,31,0,13,13,0 +25606,263,27,0,12,12,0 +25605,263,33,1,10,10,0 +25604,263,18,5,8,8,0 +25603,263,32,0,11,11,0 +25602,263,15,10,6,6,0 +25601,263,25,8,7,7,0 +25600,263,17,11,4,4,0 +25599,263,6,36,2,2,0 +25598,263,3,31,3,3,1 +25597,263,22,67,1,1,6 +25623,264,29,3,9,9,0 +25622,264,1,14,4,4,0 +25621,264,31,0,13,13,0 +25620,264,27,0,12,12,0 +25619,264,33,1,10,10,0 +25618,264,18,5,8,8,0 +25617,264,32,0,11,11,0 +25616,264,15,10,6,6,0 +25615,264,25,9,7,7,0 +25614,264,17,14,5,5,0 +25613,264,6,42,3,3,0 +25612,264,3,43,2,2,2 +25611,264,22,67,1,1,6 +25637,265,29,8,9,9,0 +25636,265,1,14,4,4,0 +25635,265,31,0,13,13,0 +25634,265,27,10,6,6,0 +25633,265,33,2,11,11,0 +25632,265,18,5,10,10,0 +25631,265,32,0,12,12,0 +25630,265,15,10,7,7,0 +25629,265,25,9,8,8,0 +25628,265,17,14,5,5,0 +25627,265,6,52,2,2,1 +25626,265,3,43,3,3,2 +25625,265,22,67,1,1,6 +25651,266,29,8,9,9,0 +25650,266,1,17,4,4,0 +25649,266,31,0,13,13,0 +25648,266,27,11,6,6,0 +25647,266,33,2,11,11,0 +25646,266,18,5,10,10,0 +25645,266,32,0,12,12,0 +25644,266,15,10,8,8,0 +25643,266,25,11,7,7,0 +25642,266,17,14,5,5,0 +25641,266,6,52,2,2,1 +25640,266,3,49,3,3,2 +25639,266,22,81,1,1,7 +25665,267,29,9,9,9,0 +25664,267,1,23,4,4,0 +25663,267,31,0,13,13,0 +25662,267,27,11,7,7,0 +25661,267,33,2,11,11,0 +25660,267,18,5,10,10,0 +25659,267,32,0,12,12,0 +25658,267,15,10,8,8,0 +25657,267,25,13,6,6,0 +25656,267,17,14,5,5,0 +25655,267,6,52,3,3,1 +25654,267,3,62,2,2,3 +25653,267,22,85,1,1,7 +25679,268,29,9,9,9,0 +25678,268,1,29,4,4,0 +25677,268,31,0,13,13,0 +25676,268,27,11,7,7,0 +25675,268,33,2,11,11,0 +25674,268,18,5,10,10,0 +25673,268,32,0,12,12,0 +25672,268,15,10,8,8,0 +25671,268,25,13,6,6,0 +25670,268,17,17,5,5,0 +25669,268,6,58,3,3,1 +25668,268,3,73,2,2,4 +25667,268,22,85,1,1,7 +25693,269,29,9,9,9,0 +25692,269,1,34,4,4,0 +25691,269,31,0,13,13,0 +25690,269,27,11,7,7,0 +25689,269,33,2,11,11,0 +25688,269,18,5,10,10,0 +25687,269,32,0,12,12,0 +25686,269,15,10,8,8,0 +25685,269,25,13,6,6,0 +25684,269,17,20,5,5,0 +25683,269,6,58,3,3,1 +25682,269,3,89,1,1,5 +25681,269,22,87,2,2,7 +25707,270,29,9,9,9,0 +25706,270,1,38,4,4,0 +25705,270,31,0,13,13,0 +25704,270,27,11,7,7,0 +25703,270,33,2,11,11,0 +25702,270,18,5,10,10,0 +25701,270,32,0,12,12,0 +25700,270,15,11,8,8,0 +25699,270,25,13,6,6,0 +25698,270,17,23,5,5,0 +25697,270,6,60,3,3,1 +25696,270,3,95,2,2,5 +25695,270,22,97,1,1,8 +25721,271,29,9,9,9,0 +25720,271,1,38,4,4,0 +25719,271,31,0,13,13,0 +25718,271,27,11,8,8,0 +25717,271,33,2,11,11,0 +25716,271,18,5,10,10,0 +25715,271,32,0,12,12,0 +25714,271,15,12,7,7,0 +25713,271,25,13,6,6,0 +25712,271,17,25,5,5,0 +25711,271,6,64,3,3,1 +25710,271,3,108,1,1,6 +25709,271,22,103,2,2,8 +25511,272,29,9,9,9,0 +25510,272,1,42,4,4,0 +25509,272,31,0,13,13,0 +25508,272,27,13,6,6,0 +25507,272,33,2,11,11,0 +25506,272,18,5,10,10,0 +25505,272,32,0,12,12,0 +25504,272,15,12,8,8,0 +25503,272,25,13,7,7,0 +25502,272,17,28,5,5,0 +25501,272,6,71,3,3,1 +25500,272,3,118,1,1,7 +25499,272,22,103,2,2,8 +4641,273,29,0,7,7,0 +4640,273,6,1,6,6,0 +4639,273,15,2,5,5,0 +4638,273,18,3,4,4,0 +4637,273,27,4,3,3,0 +4636,273,1,6,2,2,0 +4635,273,3,10,1,1,1 +4652,274,26,0,11,11,0 +4651,274,33,0,10,10,0 +4650,274,32,4,5,5,0 +4649,274,22,4,4,4,0 +4648,274,29,0,9,9,0 +4647,274,6,1,8,8,0 +4646,274,15,2,7,7,0 +4645,274,18,3,6,6,0 +4644,274,27,6,3,3,0 +4643,274,1,16,1,1,1 +4642,274,3,16,2,2,1 +4664,275,17,0,11,11,0 +4663,275,26,0,12,12,0 +4662,275,33,0,9,9,0 +4661,275,32,7,3,3,0 +4660,275,22,6,4,4,0 +4659,275,29,0,10,10,0 +4658,275,6,1,8,8,0 +4657,275,15,2,7,7,0 +4656,275,18,4,6,6,0 +4655,275,27,6,5,5,0 +4654,275,1,26,1,1,2 +4653,275,3,26,2,2,1 +4676,276,17,0,12,12,0 +4675,276,26,0,11,11,0 +4674,276,33,2,8,8,0 +4673,276,32,7,5,5,0 +4672,276,22,12,3,3,0 +4671,276,29,0,10,10,0 +4670,276,6,1,9,9,0 +4669,276,15,5,6,6,0 +4668,276,18,5,7,7,0 +4667,276,27,10,4,4,0 +4666,276,1,26,2,2,2 +4665,276,3,36,1,1,2 +4688,277,17,0,12,12,0 +4687,277,26,0,11,11,0 +4686,277,33,2,8,8,0 +4685,277,32,7,5,5,0 +4684,277,22,19,3,3,0 +4683,277,29,0,10,10,0 +4682,277,6,2,9,9,0 +4681,277,15,5,6,6,0 +4680,277,18,5,7,7,0 +4679,277,27,10,4,4,0 +4678,277,1,34,2,2,2 +4677,277,3,46,1,1,3 +4701,278,25,0,13,13,0 +4700,278,17,0,12,12,0 +4699,278,26,0,11,11,0 +4698,278,33,2,9,9,0 +4697,278,32,7,5,5,0 +4696,278,22,19,3,3,0 +4695,278,29,0,10,10,0 +4694,278,6,6,7,7,0 +4693,278,15,5,8,8,0 +4692,278,18,7,6,6,0 +4691,278,27,11,4,4,0 +4690,278,1,44,2,2,3 +4689,278,3,55,1,1,3 +4727,280,25,0,13,13,0 +4726,280,17,0,11,11,0 +4714,279,25,0,13,13,0 +4713,279,17,0,12,12,0 +4712,279,26,0,11,11,0 +4711,279,33,2,9,9,0 +4710,279,32,7,6,6,0 +4709,279,22,25,3,3,0 +4708,279,29,0,10,10,0 +4707,279,6,9,5,5,0 +4706,279,15,6,8,8,0 +4705,279,18,7,7,7,0 +4704,279,27,13,4,4,0 +4703,279,1,44,2,2,3 +4702,279,3,69,1,1,4 +4725,280,26,0,12,12,0 +4724,280,33,2,9,9,0 +4723,280,32,7,6,6,0 +4722,280,22,29,3,3,0 +4721,280,29,0,10,10,0 +4720,280,6,9,5,5,0 +4719,280,15,6,8,8,0 +4718,280,18,7,7,7,0 +4717,280,27,15,4,4,0 +4716,280,1,48,2,2,3 +4715,280,3,85,1,1,5 +4740,281,25,0,13,13,0 +4739,281,17,0,11,11,0 +4738,281,26,0,12,12,0 +4737,281,33,2,9,9,0 +4736,281,32,10,5,5,0 +4735,281,22,39,3,3,0 +4734,281,29,1,10,10,0 +4733,281,6,9,6,6,0 +4732,281,15,6,8,8,0 +4731,281,18,7,7,7,0 +4730,281,27,15,4,4,0 +4729,281,1,50,2,2,3 +4728,281,3,95,1,1,6 +4753,282,25,0,13,13,0 +4752,282,17,0,11,11,0 +4751,282,26,0,12,12,0 +4750,282,33,2,9,9,0 +4749,282,32,10,6,6,0 +4748,282,22,47,3,3,0 +4747,282,29,1,10,10,0 +4746,282,6,10,5,5,0 +4745,282,15,6,8,8,0 +4744,282,18,7,7,7,0 +4743,282,27,19,4,4,0 +4742,282,1,53,2,2,3 +4741,282,3,105,1,1,7 +4766,283,25,0,13,13,0 +4765,283,17,0,11,11,0 +4764,283,26,0,12,12,0 +4763,283,33,2,10,10,0 +4762,283,32,10,6,6,0 +4761,283,22,53,3,3,0 +4760,283,29,4,9,9,0 +4759,283,6,14,5,5,0 +4758,283,15,7,8,8,0 +4757,283,18,7,7,7,0 +4756,283,27,21,4,4,0 +4755,283,1,53,2,2,3 +4754,283,3,115,1,1,8 +4779,284,25,0,13,13,0 +4778,284,17,0,11,11,0 +4777,284,26,0,12,12,0 +4776,284,33,2,10,10,0 +4775,284,32,12,6,6,0 +4774,284,22,60,2,2,0 +4773,284,29,4,9,9,0 +4772,284,6,14,5,5,0 +4771,284,15,7,8,8,0 +4770,284,18,7,7,7,0 +4769,284,27,21,4,4,0 +4768,284,1,56,3,3,3 +4767,284,3,129,1,1,9 +4792,285,25,0,13,13,0 +4791,285,17,0,11,11,0 +4790,285,26,0,12,12,0 +4789,285,33,3,10,10,0 +4788,285,32,12,6,6,0 +4787,285,22,62,2,2,0 +4786,285,29,4,9,9,0 +4785,285,6,20,5,5,0 +4784,285,15,10,7,7,0 +4783,285,18,7,8,8,0 +4782,285,27,21,4,4,0 +4781,285,1,60,3,3,3 +4780,285,3,139,1,1,10 +4805,286,25,0,13,13,0 +4804,286,17,0,11,11,0 +4803,286,26,0,12,12,0 +4802,286,33,3,10,10,0 +4801,286,32,12,6,6,0 +4800,286,22,72,2,2,1 +4799,286,29,4,9,9,0 +4798,286,6,23,4,4,0 +4797,286,15,12,7,7,0 +4796,286,18,7,8,8,0 +4795,286,27,22,5,5,0 +4794,286,1,60,3,3,3 +4793,286,3,149,1,1,10 +4818,287,25,0,13,13,0 +4817,287,17,3,11,11,0 +4816,287,26,0,12,12,0 +4815,287,33,3,10,10,0 +4814,287,32,12,6,6,0 +4813,287,22,72,3,3,1 +4812,287,29,4,9,9,0 +4811,287,6,23,4,4,0 +4810,287,15,12,7,7,0 +4809,287,18,7,8,8,0 +4808,287,27,22,5,5,0 +4807,287,1,74,2,2,4 +4806,287,3,158,1,1,10 +4831,288,25,0,13,13,0 +4830,288,17,3,11,11,0 +4829,288,26,0,12,12,0 +4828,288,33,3,10,10,0 +4827,288,32,12,6,6,0 +4826,288,22,72,3,3,1 +4825,288,29,4,9,9,0 +4824,288,6,28,4,4,0 +4823,288,15,12,7,7,0 +4822,288,18,7,8,8,0 +4821,288,27,23,5,5,0 +4820,288,1,84,2,2,5 +4819,288,3,168,1,1,10 +3254,289,33,0,8,8,0 +3252,289,29,0,6,6,0 +3255,289,34,0,9,9,0 +3253,289,17,0,7,7,0 +3251,289,27,0,5,5,0 +3250,289,32,1,4,4,0 +3249,289,22,3,3,3,0 +3248,289,1,6,2,2,0 +3247,289,3,16,1,1,1 +3256,290,3,32,1,1,2 +3257,290,1,9,2,2,0 +3258,290,22,7,3,3,0 +3259,290,32,2,5,5,0 +3260,290,27,0,6,6,0 +3261,290,29,0,7,7,0 +3262,290,17,0,10,10,0 +3263,290,33,0,9,9,0 +3264,290,34,0,11,11,0 +3265,290,25,2,4,4,0 +3266,290,35,0,8,8,0 +3267,291,3,48,1,1,3 +3268,291,1,9,3,3,0 +3269,291,22,11,2,2,0 +3270,291,32,2,6,6,0 +3271,291,27,0,8,8,0 +3272,291,29,1,7,7,0 +3273,291,17,0,12,12,0 +3274,291,33,0,11,11,0 +3275,291,34,0,13,13,0 +3276,291,25,2,5,5,0 +3277,291,35,0,10,10,0 +3278,291,6,5,4,4,0 +3279,291,18,0,9,9,0 +3322,293,3,74,1,1,5 +3321,292,37,0,11,11,0 +3320,292,18,0,10,10,0 +3319,292,6,9,4,4,0 +3318,292,35,1,8,8,0 +3317,292,25,2,6,6,0 +3310,292,22,17,2,2,0 +3311,292,32,2,7,7,0 +3312,292,27,0,9,9,0 +3313,292,29,3,5,5,0 +3314,292,17,0,13,13,0 +3315,292,33,0,12,12,0 +3316,292,34,0,14,14,0 +3309,292,1,12,3,3,0 +3308,292,3,58,1,1,4 +3323,293,1,16,3,3,0 +3324,293,22,20,2,2,0 +3325,293,32,2,7,7,0 +3326,293,27,0,9,9,0 +3327,293,29,5,5,5,0 +3328,293,17,0,10,10,0 +3329,293,33,0,13,13,0 +3330,293,34,0,14,14,0 +3331,293,25,2,6,6,0 +3332,293,35,2,8,8,0 +3333,293,6,9,4,4,0 +3334,293,18,0,11,11,0 +3335,293,37,0,12,12,0 +3336,294,3,84,1,1,5 +3337,294,1,26,2,2,1 +3338,294,22,25,3,3,0 +3339,294,32,2,7,7,0 +3340,294,27,0,11,11,0 +3341,294,29,5,5,5,0 +3342,294,17,0,12,12,0 +3343,294,33,1,9,9,0 +3344,294,34,0,14,14,0 +3345,294,25,2,6,6,0 +3346,294,35,2,8,8,0 +3347,294,6,9,4,4,0 +3348,294,18,0,10,10,0 +3349,294,37,0,13,13,0 +3350,295,3,84,1,1,5 +3351,295,1,36,2,2,2 +3352,295,22,31,3,3,0 +3353,295,32,2,8,8,0 +3354,295,27,1,10,10,0 +3355,295,29,5,5,5,0 +3356,295,17,0,13,13,0 +3357,295,33,1,11,11,0 +3358,295,34,0,14,14,0 +3359,295,25,4,6,6,0 +3360,295,35,2,9,9,0 +3361,295,6,13,4,4,0 +3362,295,18,0,12,12,0 +3363,295,37,3,7,7,0 +3364,296,3,100,1,1,6 +3365,296,1,36,2,2,2 +3366,296,22,35,3,3,0 +3367,296,32,6,5,5,0 +3368,296,27,3,9,9,0 +3369,296,29,5,6,6,0 +3370,296,17,0,13,13,0 +3371,296,33,1,11,11,0 +3372,296,34,0,14,14,0 +3373,296,25,4,7,7,0 +3374,296,35,2,10,10,0 +3375,296,6,13,4,4,0 +3376,296,18,0,12,12,0 +3377,296,37,3,8,8,0 +3378,297,3,116,1,1,7 +3379,297,1,38,3,3,2 +3380,297,22,42,2,2,0 +3381,297,32,7,5,5,0 +3382,297,27,3,9,9,0 +3383,297,29,5,6,6,0 +3384,297,17,0,13,13,0 +3385,297,33,1,11,11,0 +3386,297,34,0,14,14,0 +3387,297,25,4,7,7,0 +3388,297,35,2,10,10,0 +3389,297,6,13,4,4,0 +3390,297,18,0,12,12,0 +3391,297,37,3,8,8,0 +3392,297,36,0,15,15,0 +3393,298,3,126,1,1,8 +3394,298,1,44,3,3,2 +3395,298,22,49,2,2,0 +3396,298,32,7,5,5,0 +3397,298,27,4,8,8,0 +3398,298,29,5,6,6,0 +3399,298,17,0,13,13,0 +3400,298,33,1,11,11,0 +3401,298,34,0,14,14,0 +3402,298,25,4,7,7,0 +3403,298,35,2,10,10,0 +3404,298,6,15,4,4,0 +3405,298,18,0,12,12,0 +3406,298,37,3,9,9,0 +3407,298,36,0,15,15,0 +3408,299,3,132,1,1,8 +3409,299,1,58,2,2,3 +3410,299,22,51,3,3,0 +3411,299,32,10,5,5,0 +3412,299,27,4,8,8,0 +3413,299,29,5,6,6,0 +3414,299,17,0,13,13,0 +3415,299,33,1,11,11,0 +3416,299,34,0,14,14,0 +3417,299,25,4,7,7,0 +3418,299,35,2,10,10,0 +3419,299,6,16,4,4,0 +3420,299,18,0,12,12,0 +3421,299,37,3,9,9,0 +3422,299,36,0,15,15,0 +3423,300,3,142,1,1,8 +3424,300,1,60,3,3,3 +3425,300,22,64,2,2,1 +3426,300,32,11,5,5,0 +3427,300,27,4,8,8,0 +3428,300,29,5,6,6,0 +3429,300,17,0,13,13,0 +3430,300,33,1,11,11,0 +3431,300,34,0,15,15,0 +3432,300,25,4,7,7,0 +3433,300,35,2,10,10,0 +3434,300,6,16,4,4,0 +3435,300,18,0,12,12,0 +3436,300,37,3,9,9,0 +3437,300,36,0,14,14,0 +3438,301,3,144,1,1,8 +3439,301,1,73,3,3,4 +3440,301,22,74,2,2,1 +3441,301,32,11,5,5,0 +3442,301,27,4,8,8,0 +3443,301,29,5,6,6,0 +3444,301,17,0,13,13,0 +3445,301,33,1,11,11,0 +3446,301,34,0,15,15,0 +3447,301,25,5,7,7,0 +3448,301,35,2,10,10,0 +3449,301,6,16,4,4,0 +3450,301,18,0,12,12,0 +3451,301,37,3,9,9,0 +3452,301,36,0,14,14,0 +3453,302,3,154,1,1,9 +3454,302,1,83,2,2,4 +3455,302,22,77,3,3,1 +3456,302,32,13,5,5,0 +3457,302,27,4,8,8,0 +3458,302,29,6,6,6,0 +3459,302,17,0,13,13,0 +3460,302,33,1,11,11,0 +3461,302,34,0,15,15,0 +3462,302,25,5,7,7,0 +3463,302,35,2,10,10,0 +3464,302,6,16,4,4,0 +3465,302,18,0,12,12,0 +3466,302,37,3,9,9,0 +3467,302,36,0,14,14,0 +3468,303,3,164,1,1,10 +3469,303,1,89,2,2,4 +3470,303,22,81,3,3,1 +3471,303,32,13,5,5,0 +3472,303,27,4,8,8,0 +3473,303,29,6,7,7,0 +3474,303,17,0,13,13,0 +3475,303,33,1,12,12,0 +3476,303,34,0,15,15,0 +3477,303,25,8,6,6,0 +3478,303,35,2,10,10,0 +3479,303,6,18,4,4,0 +3480,303,18,1,11,11,0 +3481,303,37,3,9,9,0 +3482,303,36,0,14,14,0 +3483,304,3,164,1,1,10 +3484,304,1,99,2,2,5 +3485,304,22,91,3,3,1 +3486,304,32,13,5,5,0 +3487,304,27,6,8,8,0 +3488,304,29,6,7,7,0 +3489,304,17,1,11,11,0 +3490,304,33,1,13,13,0 +3491,304,34,0,15,15,0 +3492,304,25,8,6,6,0 +3493,304,35,2,10,10,0 +3494,304,6,21,4,4,0 +3495,304,18,1,12,12,0 +3496,304,37,3,9,9,0 +3497,304,36,0,14,14,0 +8247,305,36,0,18,18,0 +8246,305,42,0,17,17,0 +8245,305,35,0,16,16,0 +8244,305,27,0,15,15,0 +8243,305,41,0,14,14,0 +8242,305,29,0,13,13,0 +8241,305,3,0,12,12,0 +8240,305,32,0,11,11,0 +8239,305,34,0,10,10,0 +8238,305,17,0,9,9,0 +8265,306,36,0,17,17,0 +8264,306,42,0,18,18,0 +8263,306,35,0,14,14,0 +8262,306,27,0,12,12,0 +8261,306,41,0,16,16,0 +8260,306,29,0,15,15,0 +8259,306,3,6,3,3,0 +8258,306,32,0,10,10,0 +8257,306,34,0,13,13,0 +8256,306,17,0,11,11,0 +8255,306,18,0,8,8,0 +8254,306,39,0,9,9,0 +8253,306,40,0,7,7,0 +8252,306,33,1,6,6,0 +8284,307,26,0,17,17,0 +8283,307,36,0,18,18,0 +8282,307,42,0,19,19,0 +8281,307,35,4,6,6,0 +8280,307,27,0,11,11,0 +8279,307,41,0,15,15,0 +8278,307,29,0,16,16,0 +8277,307,3,6,3,3,0 +8276,307,32,3,8,8,0 +8275,307,34,0,12,12,0 +8274,307,17,0,14,14,0 +8273,307,18,3,7,7,0 +8272,307,39,0,13,13,0 +8271,307,40,0,10,10,0 +8270,307,33,1,9,9,0 +8303,308,26,0,15,15,0 +8302,308,36,0,18,18,0 +8301,308,42,0,19,19,0 +8300,308,35,5,5,5,0 +8299,308,27,0,10,10,0 +8298,308,41,0,16,16,0 +8297,308,29,0,17,17,0 +8296,308,3,12,3,3,0 +8295,308,32,3,8,8,0 +8294,308,34,0,13,13,0 +8293,308,17,0,12,12,0 +8292,308,18,3,7,7,0 +8291,308,39,0,14,14,0 +8290,308,40,0,11,11,0 +8289,308,33,1,9,9,0 +8288,308,25,5,6,6,0 +8322,309,26,0,15,15,0 +8321,309,36,0,18,18,0 +8320,309,42,0,19,19,0 +8319,309,35,5,6,6,0 +8318,309,27,0,11,11,0 +8317,309,41,0,16,16,0 +8316,309,29,0,17,17,0 +8315,309,3,17,3,3,0 +8314,309,32,3,9,9,0 +8313,309,34,0,13,13,0 +8312,309,17,5,7,7,0 +8311,309,18,3,8,8,0 +8310,309,39,0,14,14,0 +8309,309,40,0,12,12,0 +8308,309,33,1,10,10,0 +8307,309,25,11,5,5,0 +8341,310,26,1,10,10,0 +8340,310,36,0,18,18,0 +8339,310,42,0,19,19,0 +8338,310,35,5,7,7,0 +8337,310,27,0,12,12,0 +8336,310,41,0,16,16,0 +8335,310,29,0,17,17,0 +8334,310,3,33,2,2,1 +8333,310,32,3,9,9,0 +8332,310,34,0,14,14,0 +8331,310,17,8,6,6,0 +8330,310,18,3,8,8,0 +8329,310,39,0,15,15,0 +8328,310,40,0,13,13,0 +8327,310,33,1,11,11,0 +8326,310,25,11,5,5,0 +8360,311,26,1,10,10,0 +8359,311,36,0,18,18,0 +8358,311,42,0,19,19,0 +8357,311,35,5,7,7,0 +8356,311,27,0,12,12,0 +8355,311,41,0,14,14,0 +8354,311,29,0,17,17,0 +8353,311,3,45,2,2,2 +8352,311,32,3,9,9,0 +8351,311,34,0,15,15,0 +8350,311,17,9,6,6,0 +8349,311,18,3,8,8,0 +8348,311,39,0,16,16,0 +8347,311,40,0,13,13,0 +8346,311,33,1,11,11,0 +8345,311,25,11,5,5,0 +8379,312,26,1,10,10,0 +8378,312,36,0,18,18,0 +8377,312,42,0,19,19,0 +8376,312,35,5,7,7,0 +8375,312,27,0,12,12,0 +8374,312,41,0,14,14,0 +8373,312,29,0,17,17,0 +8372,312,3,55,2,2,3 +8371,312,32,3,9,9,0 +8370,312,34,0,15,15,0 +8369,312,17,10,6,6,0 +8368,312,18,3,8,8,0 +8367,312,39,0,16,16,0 +8366,312,40,0,13,13,0 +8365,312,33,1,11,11,0 +8364,312,25,11,5,5,0 +8398,313,26,1,10,10,0 +8397,313,36,0,18,18,0 +8396,313,42,0,19,19,0 +8395,313,35,5,7,7,0 +8394,313,27,0,12,12,0 +8393,313,41,0,14,14,0 +8392,313,29,0,17,17,0 +8391,313,3,71,1,1,4 +8390,313,32,3,9,9,0 +8389,313,34,0,15,15,0 +8388,313,17,13,5,5,0 +8387,313,18,3,8,8,0 +8386,313,39,0,16,16,0 +8385,313,40,0,13,13,0 +8384,313,33,1,11,11,0 +8383,313,25,11,6,6,0 +8417,314,26,1,11,11,0 +8416,314,36,0,18,18,0 +8415,314,42,0,19,19,0 +8414,314,35,5,7,7,0 +8413,314,27,0,13,13,0 +8412,314,41,1,10,10,0 +8411,314,29,0,17,17,0 +8410,314,3,81,2,2,4 +8409,314,32,3,9,9,0 +8408,314,34,0,15,15,0 +8407,314,17,13,5,5,0 +8406,314,18,3,8,8,0 +8405,314,39,0,16,16,0 +8404,314,40,0,14,14,0 +8403,314,33,1,12,12,0 +8402,314,25,11,6,6,0 +8435,315,36,0,17,17,0 +8434,315,42,0,19,19,0 +8433,315,35,5,7,7,0 +8432,315,27,0,14,14,0 +8431,315,41,1,10,10,0 +8430,315,29,0,18,18,0 +8429,315,3,83,2,2,4 +8428,315,32,3,9,9,0 +8427,315,34,1,11,11,0 +8426,315,17,13,5,5,0 +8425,315,18,3,8,8,0 +8424,315,39,0,16,16,0 +8423,315,40,0,15,15,0 +8422,315,33,1,13,13,0 +8421,315,25,11,6,6,0 +8420,315,22,30,4,4,1 +8454,316,36,0,17,17,0 +8453,316,42,0,19,19,0 +8452,316,35,5,7,7,0 +8451,316,27,0,14,14,0 +8450,316,41,1,10,10,0 +8449,316,29,0,18,18,0 +8448,316,3,93,2,2,5 +8447,316,32,3,9,9,0 +8446,316,34,1,11,11,0 +8445,316,17,13,5,5,0 +8444,316,18,3,8,8,0 +8443,316,39,0,16,16,0 +8442,316,40,0,15,15,0 +8441,316,33,1,13,13,0 +8440,316,25,11,6,6,0 +8439,316,22,33,4,4,1 +8474,317,26,1,12,12,0 +8473,317,36,0,17,17,0 +8472,317,42,0,19,19,0 +8471,317,35,5,8,8,0 +8470,317,27,0,14,14,0 +8469,317,41,1,10,10,0 +8468,317,29,0,18,18,0 +8467,317,3,103,2,2,6 +8466,317,32,3,9,9,0 +8465,317,34,1,11,11,0 +8464,317,17,13,5,5,0 +8463,317,18,6,7,7,0 +8462,317,39,0,16,16,0 +8461,317,40,0,15,15,0 +8460,317,33,1,13,13,0 +8459,317,25,11,6,6,0 +8458,317,22,36,4,4,1 +8457,317,6,43,3,3,0 +8493,318,26,1,12,12,0 +8492,318,36,0,17,17,0 +8491,318,42,0,19,19,0 +8490,318,35,5,8,8,0 +8489,318,27,0,14,14,0 +8488,318,41,1,10,10,0 +8487,318,29,0,18,18,0 +8486,318,3,117,1,1,7 +8485,318,32,3,9,9,0 +8484,318,34,1,11,11,0 +8483,318,17,13,5,5,0 +8482,318,18,6,7,7,0 +8481,318,39,0,16,16,0 +8480,318,40,0,15,15,0 +8479,318,33,1,13,13,0 +8478,318,25,11,6,6,0 +8477,318,22,37,4,4,1 +8476,318,6,52,3,3,0 +8512,319,26,1,12,12,0 +8511,319,36,0,17,17,0 +8510,319,42,0,19,19,0 +8509,319,35,5,8,8,0 +8508,319,27,0,14,14,0 +8507,319,41,1,11,11,0 +8506,319,29,0,18,18,0 +8505,319,3,121,2,2,7 +8504,319,32,3,9,9,0 +8503,319,34,3,10,10,0 +8502,319,17,13,5,5,0 +8501,319,18,6,7,7,0 +8500,319,39,0,16,16,0 +8499,319,40,0,15,15,0 +8498,319,33,1,13,13,0 +8497,319,25,12,6,6,0 +8496,319,22,37,4,4,1 +8495,319,6,55,3,3,0 +8531,320,26,1,12,12,0 +8530,320,36,0,17,17,0 +8529,320,42,0,19,19,0 +8528,320,35,5,8,8,0 +8527,320,27,0,14,14,0 +8526,320,41,1,11,11,0 +8525,320,29,0,18,18,0 +8524,320,3,125,2,2,7 +8523,320,32,3,9,9,0 +8522,320,34,3,10,10,0 +8521,320,17,13,5,5,0 +8520,320,18,6,7,7,0 +8519,320,39,0,16,16,0 +8518,320,40,0,15,15,0 +8517,320,33,1,13,13,0 +8516,320,25,12,6,6,0 +8515,320,22,38.5,4,4,1 +8514,320,6,55.5,3,3,0 +7633,321,41,0,10,10,0 +7632,321,44,0,9,9,0 +7631,321,21,0,8,8,0 +7630,321,33,0,7,7,0 +7629,321,18,0,6,6,0 +7628,321,34,2,5,5,0 +7627,321,22,3,4,4,0 +7626,321,3,4,3,3,0 +7625,321,25,7,2,2,0 +7624,321,1,9,1,1,1 +7655,322,35,0,12,12,0 +7654,322,45,0,16,16,0 +7653,322,6,12,2,2,1 +7652,322,41,0,13,13,0 +7651,322,44,0,11,11,0 +7650,322,21,0,9,9,0 +7649,322,33,0,8,8,0 +7648,322,18,0,7,7,0 +7647,322,34,2,6,6,0 +7646,322,22,4,5,5,0 +7645,322,3,6,4,4,0 +7644,322,25,7,3,3,0 +7643,322,1,19,1,1,1 +7676,323,27,0,10,10,0 +7675,323,32,0,7,7,0 +7674,323,35,0,14,14,0 +7673,323,45,0,16,16,0 +7672,323,6,15,3,3,1 +7671,323,41,0,15,15,0 +7670,323,44,0,13,13,0 +7669,323,21,0,11,11,0 +7668,323,33,0,9,9,0 +7667,323,18,0,8,8,0 +7666,323,34,2,6,6,0 +7665,323,22,10,4,4,0 +7664,323,3,15,2,2,1 +7663,323,25,8,5,5,0 +7662,323,1,25,1,1,1 +7695,324,27,0,12,12,0 +7694,324,32,0,9,9,0 +7693,324,35,0,14,14,0 +7692,324,45,0,16,16,0 +7691,324,6,15,3,3,1 +7690,324,41,0,15,15,0 +7689,324,44,0,13,13,0 +7688,324,21,2,6,6,0 +7687,324,33,1,8,8,0 +7686,324,18,0,10,10,0 +7685,324,34,2,7,7,0 +7684,324,22,10,5,5,0 +7683,324,3,18,2,2,1 +7682,324,25,14,4,4,0 +7681,324,1,38,1,1,2 +7715,325,46,0,11,11,0 +7714,325,27,0,12,12,0 +7713,325,32,1,8,8,0 +7712,325,35,0,16,16,0 +7711,325,45,0,14,14,0 +7710,325,6,21,2,2,1 +7709,325,41,0,13,13,0 +7708,325,44,0,15,15,0 +7707,325,21,2,7,7,0 +7706,325,33,1,9,9,0 +7705,325,18,0,10,10,0 +7704,325,34,2,6,6,0 +7703,325,22,16,4,4,0 +7702,325,3,18,3,3,1 +7701,325,25,14,5,5,0 +7700,325,1,50,1,1,3 +7734,326,46,0,11,11,0 +7733,326,27,0,12,12,0 +7732,326,32,1,8,8,0 +7731,326,35,0,14,14,0 +7730,326,45,0,15,15,0 +7729,326,6,36,2,2,2 +7728,326,41,0,13,13,0 +7727,326,44,0,16,16,0 +7726,326,21,2,7,7,0 +7725,326,33,1,9,9,0 +7724,326,18,0,10,10,0 +7723,326,34,2,6,6,0 +7722,326,22,20,4,4,0 +7721,326,3,20,3,3,1 +7720,326,25,14,5,5,0 +7719,326,1,54,1,1,3 +7754,327,39,0,17,17,0 +7753,327,46,0,12,12,0 +7752,327,27,0,13,13,0 +7751,327,32,1,10,10,0 +7750,327,35,0,14,14,0 +7749,327,45,0,15,15,0 +7748,327,6,45,2,2,3 +7747,327,41,6,6,6,0 +7746,327,44,0,16,16,0 +7745,327,21,2,8,8,0 +7744,327,33,1,9,9,0 +7743,327,18,0,11,11,0 +7742,327,34,2,7,7,0 +7741,327,22,23,3,3,0 +7740,327,3,21,4,4,1 +7739,327,25,14,5,5,0 +7738,327,1,60,1,1,3 +7773,328,39,0,17,17,0 +7772,328,46,0,12,12,0 +7771,328,27,0,13,13,0 +7770,328,32,1,10,10,0 +7769,328,35,0,14,14,0 +7768,328,45,0,15,15,0 +7767,328,6,54,2,2,4 +7766,328,41,6,6,6,0 +7765,328,44,0,16,16,0 +7764,328,21,2,8,8,0 +7763,328,33,5,7,7,0 +7762,328,18,0,11,11,0 +7761,328,34,2,9,9,0 +7760,328,22,25,4,4,0 +7759,328,3,27,3,3,1 +7758,328,25,14,5,5,0 +7757,328,1,64,1,1,3 +7792,329,39,0,17,17,0 +7791,329,46,0,12,12,0 +7790,329,27,0,13,13,0 +7789,329,32,1,10,10,0 +7788,329,35,0,14,14,0 +7787,329,45,0,15,15,0 +7786,329,6,57,2,2,4 +7785,329,41,6,6,6,0 +7784,329,44,0,16,16,0 +7783,329,21,2,8,8,0 +7782,329,33,5,7,7,0 +7781,329,18,0,11,11,0 +7780,329,34,2,9,9,0 +7779,329,22,31,3,3,0 +7778,329,3,30,4,4,1 +7777,329,25,14,5,5,0 +7776,329,1,77,1,1,4 +7811,330,39,0,15,15,0 +7810,330,46,0,12,12,0 +7809,330,27,0,13,13,0 +7808,330,32,3,8,8,0 +7807,330,35,0,14,14,0 +7806,330,45,0,16,16,0 +7805,330,6,57,2,2,4 +7804,330,41,6,6,6,0 +7803,330,44,0,17,17,0 +7802,330,21,2,9,9,0 +7801,330,33,6,7,7,0 +7800,330,18,0,11,11,0 +7799,330,34,2,10,10,0 +7798,330,22,35,4,4,0 +7797,330,3,42,3,3,2 +7796,330,25,14,5,5,0 +7795,330,1,83,1,1,4 +7830,331,39,0,16,16,0 +7829,331,46,0,12,12,0 +7828,331,27,0,13,13,0 +7827,331,32,3,8,8,0 +7826,331,35,0,14,14,0 +7825,331,45,0,15,15,0 +7824,331,6,63,2,2,4 +7823,331,41,7,6,6,0 +7822,331,44,0,17,17,0 +7821,331,21,2,9,9,0 +7820,331,33,6,7,7,0 +7819,331,18,0,11,11,0 +7818,331,34,2,10,10,0 +7817,331,22,40,4,4,0 +7816,331,3,42,3,3,2 +7815,331,25,14,5,5,0 +7814,331,1,96,1,1,5 +7849,332,39,0,16,16,0 +7848,332,46,0,12,12,0 +7847,332,27,0,13,13,0 +7846,332,32,3,8,8,0 +7845,332,35,0,14,14,0 +7844,332,45,0,15,15,0 +7843,332,6,72,2,2,4 +7842,332,41,7,6,6,0 +7841,332,44,0,17,17,0 +7840,332,21,2,9,9,0 +7839,332,33,6,7,7,0 +7838,332,18,0,11,11,0 +7837,332,34,2,10,10,0 +7836,332,22,40,4,4,0 +7835,332,3,44,3,3,2 +7834,332,25,15,5,5,0 +7833,332,1,109,1,1,6 +7868,333,39,0,16,16,0 +7867,333,46,0,12,12,0 +7866,333,27,0,13,13,0 +7865,333,32,3,8,8,0 +7864,333,35,0,14,14,0 +7863,333,45,0,15,15,0 +7862,333,6,85,2,2,5 +7861,333,41,7,6,6,0 +7860,333,44,0,17,17,0 +7859,333,21,2,9,9,0 +7858,333,33,6,7,7,0 +7857,333,18,0,11,11,0 +7856,333,34,2,10,10,0 +7855,333,22,43,4,4,0 +7854,333,3,44,3,3,2 +7853,333,25,15,5,5,0 +7852,333,1,118,1,1,6 +7887,334,39,0,14,14,0 +7886,334,46,0,13,13,0 +7885,334,27,0,11,11,0 +7884,334,32,3,8,8,0 +7883,334,35,0,15,15,0 +7882,334,45,0,16,16,0 +7881,334,6,100,2,2,6 +7880,334,41,7,6,6,0 +7879,334,44,0,17,17,0 +7878,334,21,2,9,9,0 +7877,334,33,7,7,7,0 +7876,334,18,0,12,12,0 +7875,334,34,2,10,10,0 +7874,334,22,47,4,4,0 +7873,334,3,49,3,3,2 +7872,334,25,15,5,5,0 +7871,334,1,118,1,1,6 +7906,335,39,0,14,14,0 +7905,335,46,0,13,13,0 +7904,335,27,0,11,11,0 +7903,335,32,3,8,8,0 +7902,335,35,0,15,15,0 +7901,335,45,0,16,16,0 +7900,335,6,100,2,2,6 +7899,335,41,7,7,7,0 +7898,335,44,0,17,17,0 +7897,335,21,2,9,9,0 +7896,335,33,11,6,6,0 +7895,335,18,0,12,12,0 +7894,335,34,2,10,10,0 +7893,335,22,62,3,3,1 +7892,335,3,54,4,4,2 +7891,335,25,16,5,5,0 +7890,335,1,118,1,1,6 +7925,336,39,0,14,14,0 +7924,336,46,0,13,13,0 +7923,336,27,0,11,11,0 +7922,336,32,3,8,8,0 +7921,336,35,0,15,15,0 +7920,336,45,0,16,16,0 +7919,336,6,110,2,2,6 +7918,336,41,7,7,7,0 +7917,336,44,0,17,17,0 +7916,336,21,2,9,9,0 +7915,336,33,11,6,6,0 +7914,336,18,0,12,12,0 +7913,336,34,2,10,10,0 +7912,336,22,71,3,3,2 +7911,336,3,57,4,4,2 +7910,336,25,16,5,5,0 +7909,336,1,121,1,1,6 +4046,1,6,0,9,9,0 +4044,1,2,0,7,7,0 +4045,1,9,0,8,8,0 +4043,1,10,0,6,6,0 +4042,1,5,3,5,5,0 +4041,1,3,3,4,4,0 +4040,1,4,4,3,3,0 +4039,1,7,11,2,2,0 +4038,1,23,18,1,1,1 +8541,2,6,0,10,10,0 +8540,2,9,1.5,7,7,0 +8539,2,2,4,3,3,0 +8538,2,10,0,9,9,0 +8537,2,5,3,6,6,0 +8536,2,3,3.5,5,5,0 +8535,2,4,4,4,4,0 +8534,2,7,16.5,2,2,0 +8533,2,1,1,8,8,0 +8532,2,23,25,1,1,2 +25734,36,1,14,11,E,0 +25745,37,1,32,11,E,1 +25744,37,6,23,1,1,1 +25766,39,6,49,1,1,3 +25777,40,6,56,1,1,3 +25788,41,6,60,1,1,3 +25799,42,6,71,1,1,3 +25810,43,6,89,1,1,4 +25821,44,6,103,1,1,5 +25832,45,6,111,1,1,5 +25843,46,6,119,1,1,5 +25854,47,6,137,1,1,6 +25865,48,6,143,1,1,6 +25876,49,6,161,1,1,7 +25887,50,6,170,1,1,7 +25898,51,6,186,1,1,8 +25909,52,6,204,1,1,9 +7634,321,6,0,11,11,0 +7635,321,45,0,12,12,0 +7636,321,35,0,13,13,0 +7637,321,32,0,14,14,0 +7638,321,27,0,15,15,0 +7639,321,46,0,16,16,0 +7640,321,39,0,17,17,0 +7641,321,47,0,18,18,0 +7642,321,42,0,19,19,0 +7656,322,32,0,14,14,0 +7657,322,27,0,10,10,0 +7658,322,46,0,17,17,0 +7659,322,39,0,15,15,0 +7660,322,47,0,19,19,0 +7661,322,42,0,18,18,0 +7677,323,46,0,12,12,0 +7678,323,39,0,17,17,0 +7679,323,47,0,19,19,0 +7680,323,42,0,18,18,0 +7696,324,46,0,11,11,0 +7697,324,39,0,17,17,0 +7698,324,47,0,19,19,0 +7699,324,42,0,18,18,0 +7716,325,39,0,17,17,0 +7717,325,47,0,19,19,0 +7718,325,42,0,18,18,0 +7735,326,39,0,17,17,0 +7736,326,47,0,19,19,0 +7737,326,42,0,18,18,0 +7755,327,47,0,19,19,0 +7756,327,42,0,18,18,0 +7774,328,47,0,19,19,0 +7775,328,42,0,18,18,0 +7793,329,47,0,19,19,0 +7794,329,42,0,18,18,0 +7812,330,47,0,19,19,0 +7813,330,42,0,18,18,0 +7831,331,47,0,19,19,0 +7832,331,42,0,18,18,0 +7850,332,47,0,19,19,0 +7851,332,42,0,18,18,0 +7869,333,47,0,19,19,0 +7870,333,42,0,18,18,0 +7888,334,47,0,19,19,0 +7889,334,42,0,18,18,0 +7907,335,47,0,19,19,0 +7908,335,42,0,18,18,0 +7926,336,47,0,19,19,0 +7927,336,42,0,18,18,0 +8237,305,18,0,8,8,0 +8236,305,39,0,7,7,0 +8235,305,40,0,6,6,0 +8234,305,33,1,5,5,0 +8233,305,25,5,3,3,0 +8232,305,22,4,4,4,0 +8231,305,6,6,2,2,0 +8230,305,1,10,1,1,1 +8251,306,25,5,5,5,0 +8250,306,22,6,4,4,0 +8249,306,6,10,2,2,0 +8248,306,1,24,1,1,2 +8269,307,25,5,5,5,0 +8268,307,22,6,4,4,0 +8267,307,6,10,2,2,0 +8266,307,1,40,1,1,3 +8287,308,22,9,4,4,0 +8286,308,6,16,2,2,0 +8285,308,1,50,1,1,4 +8306,309,22,19,2,2,1 +8305,309,6,16,4,4,0 +8304,309,1,50,1,1,4 +8325,310,22,21,3,3,1 +8323,310,1,54,1,1,4 +8324,310,6,16,4,4,0 +8344,311,22,21,4,4,1 +8342,311,1,58,1,1,4 +8343,311,6,25,3,3,0 +8363,312,22,23,4,4,1 +8361,312,1,67,1,1,4 +8362,312,6,29,3,3,0 +8382,313,22,23,4,4,1 +8380,313,1,70,2,2,4 +8381,313,6,33,3,3,0 +8401,314,22,23,4,4,1 +8399,314,1,83,1,1,5 +8400,314,6,35,3,3,0 +8419,315,6,35,3,3,0 +8418,315,1,99,1,1,6 +8438,316,6,39,3,3,0 +8437,316,1,108,1,1,6 +8456,317,1,114,1,1,6 +8475,318,1,116,2,2,6 +8494,319,1,132,1,1,7 +8513,320,1,139,1,1,8 +8436,315,26,1,12,12,0 +8455,316,26,1,12,12,0 +8570,3,9,19.5,2,2,1 +8567,3,5,4,7,7,0 +8568,3,10,0,10,10,0 +8571,3,6,0,9,9,0 +8569,3,2,4,5,5,0 +8566,3,3,3.5,8,8,0 +8565,3,4,4,6,6,0 +8564,3,7,18.5,3,3,0 +8563,3,1,8,4,4,0 +8562,3,23,36,1,1,2 +8590,4,9,27.5,2,2,1 +8589,4,2,4,6,6,0 +8588,4,10,0,10,10,0 +8587,4,5,4,7,7,0 +8585,4,4,5,5,5,0 +8583,4,1,13,4,4,0 +8584,4,7,26.5,3,3,0 +8591,4,6,3,9,9,0 +8586,4,3,3.5,8,8,0 +8582,4,23,50,1,1,3 +8592,5,23,68,1,1,4 +8593,5,1,13,4,4,0 +8594,5,7,26.5,3,3,0 +8595,5,4,9,5,5,0 +8596,5,3,4.5,8,8,0 +8597,5,5,4,9,9,0 +8598,5,10,0,10,10,0 +8599,5,2,6,6,6,0 +8600,5,9,38.5,2,2,1 +8601,5,6,6,7,7,0 +8678,6,10,0,10,10,0 +8679,6,2,6,8,8,0 +8674,6,7,26.5,3,3,0 +8681,6,6,17,4,4,0 +8680,6,9,42.5,2,2,1 +8677,6,5,5,9,9,0 +8676,6,3,7.5,7,7,0 +8675,6,4,11,6,6,0 +8673,6,1,13,5,5,0 +8672,6,23,86,1,1,5 +8651,7,6,20,4,4,0 +8649,7,2,8,8,8,0 +8647,7,5,5,9,9,0 +8645,7,4,11,7,7,0 +8643,7,1,13,5,5,0 +8644,7,7,32.5,3,3,0 +8642,7,23,96,1,1,6 +8650,7,9,56.5,2,2,1 +8646,7,3,11.5,6,6,0 +8648,7,10,0,10,10,0 +8671,8,6,26,4,4,0 +8669,8,2,8,8,8,0 +8667,8,5,5,9,9,0 +8665,8,4,11,7,7,0 +8663,8,1,13,6,6,0 +8664,8,7,34.5,3,3,0 +8662,8,23,105,1,1,6 +8670,8,9,74.5,2,2,2 +8666,8,3,15.5,5,5,0 +8668,8,10,0,10,10,0 +8682,9,23,112,1,1,6 +8683,9,1,14,6,6,0 +8684,9,7,34.5,3,3,0 +8685,9,4,13,7,7,0 +8686,9,3,20.5,5,5,0 +8687,9,5,5,9,9,0 +8688,9,10,0,10,10,0 +8689,9,2,8,8,8,0 +8690,9,9,92.5,2,2,3 +8691,9,6,32,4,4,0 +8692,10,23,114,1,1,6 +8693,10,1,28,5,5,1 +8694,10,7,38.5,4,4,0 +8695,10,4,13,7,7,0 +8696,10,3,25.5,6,6,0 +8697,10,5,5,9,9,0 +8698,10,10,0,10,10,0 +8699,10,2,8,8,8,0 +8700,10,9,98.5,2,2,3 +8701,10,6,40,3,3,0 +8702,11,23,126,1,1,7 +8703,11,1,41,4,4,1 +8704,11,7,38.5,5,5,0 +8705,11,4,16,7,7,0 +8706,11,3,29.5,6,6,0 +8707,11,5,5,9,9,0 +8708,11,10,0,10,10,0 +8709,11,2,9,8,8,0 +8710,11,9,98.5,2,2,3 +8711,11,6,46,3,3,0 +8712,12,23,128,1,1,7 +8713,12,1,44,4,4,1 +8714,12,7,38.5,5,5,0 +8715,12,4,16,8,8,0 +8716,12,3,30.5,6,6,0 +8717,12,5,5,10,10,0 +8718,12,10,8,9,9,0 +8719,12,2,18,7,7,0 +8720,12,9,104.5,2,2,3 +8721,12,6,56,3,3,1 +8722,13,23,146,1,1,8 +8723,13,1,47,4,4,1 +8724,13,7,38.5,5,5,0 +8725,13,4,20,8,8,0 +8726,13,3,30.5,6,6,0 +8727,13,5,5,10,10,0 +8728,13,10,13,9,9,0 +8729,13,2,20,7,7,0 +8730,13,9,105.5,2,2,3 +8731,13,6,62,3,3,1 +8732,14,23,153,1,1,8 +8733,14,1,59,4,4,2 +8734,14,7,46.5,5,5,0 +8735,14,4,26,7,7,0 +8736,14,3,30.5,6,6,0 +8737,14,5,5,10,10,0 +8738,14,10,13,9,9,0 +8739,14,2,21,8,8,0 +8740,14,9,110.5,2,2,3 +8741,14,6,62,3,3,1 +8761,15,6,67,3,3,1 +8760,15,9,120.5,2,2,4 +8758,15,10,13,9,9,0 +8757,15,5,5,10,10,0 +8756,15,3,34.5,6,6,0 +8753,15,1,65,4,4,2 +8754,15,7,54.5,5,5,0 +8752,15,23,156,1,1,8 +8759,15,2,24,8,8,0 +8755,15,4,26,7,7,0 +8762,16,23,161,1,1,8 +8763,16,1,71,3,3,2 +8764,16,7,54.5,5,5,0 +8765,16,4,26,8,8,0 +8766,16,3,34.5,6,6,0 +8767,16,5,7,10,10,0 +8768,16,10,13,9,9,0 +8769,16,2,32,7,7,0 +8770,16,9,135.5,2,2,5 +8771,16,6,70,4,4,1 +8772,356,6,9,1,1,1 +8773,356,1,6,2,2,0 +8774,356,37,4,3,3,0 +8775,356,22,4,4,4,0 +8776,356,21,2,5,5,0 +8777,356,25,0,6,6,0 +8778,356,32,0,7,7,0 +8779,356,27,0,8,8,0 +8780,356,33,0,9,9,0 +8781,356,35,0,10,10,0 +8782,356,48,0,11,11,0 +8783,356,3,0,12,12,0 +8784,356,49,0,13,13,0 +8785,356,34,0,14,14,0 +8786,356,45,0,18,18,0 +8787,356,18,0,15,15,0 +8788,356,44,0,16,16,0 +8789,356,42,0,17,17,0 +8790,356,39,0,19,19,0 +8791,356,46,0,20,20,0 +8792,357,6,9,2,2,1 +8793,357,1,21,1,1,1 +8794,357,37,4,4,4,0 +8795,357,22,8,3,3,0 +8796,357,21,4,5,5,0 +8797,357,25,1,7,7,0 +8798,357,32,0,9,9,0 +8799,357,27,0,11,11,0 +8800,357,33,0,12,12,0 +8801,357,35,0,8,8,0 +8802,357,48,0,14,14,0 +8803,357,3,3,6,6,0 +8804,357,49,0,17,17,0 +8805,357,34,0,15,15,0 +8806,357,45,0,13,13,0 +8807,357,18,0,16,16,0 +8808,357,44,0,18,18,0 +8809,357,42,0,19,19,0 +8810,357,39,0,10,10,0 +8811,357,46,0,20,20,0 +8812,358,6,9,2,2,1 +8813,358,1,36,1,1,2 +8814,358,37,4,5,5,0 +8815,358,22,8,3,3,0 +8816,358,21,4,6,6,0 +8817,358,25,3,9,9,0 +8818,358,32,0,10,10,0 +8819,358,27,0,12,12,0 +8820,358,33,0,13,13,0 +8821,358,35,3,7,7,0 +8822,358,48,0,15,15,0 +8823,358,3,3,8,8,0 +8824,358,49,0,17,17,0 +8825,358,34,5,4,4,0 +8826,358,45,0,14,14,0 +8827,358,18,0,16,16,0 +8828,358,44,0,19,19,0 +8829,358,42,0,18,18,0 +8830,358,39,0,11,11,0 +8831,358,46,0,20,20,0 +8832,359,6,9,3,3,1 +8833,359,1,47,1,1,3 +8834,359,37,4,7,7,0 +8835,359,22,11,2,2,0 +8836,359,21,4,8,8,0 +8837,359,25,7,5,5,0 +8838,359,32,0,12,12,0 +8839,359,27,0,11,11,0 +8840,359,33,0,14,14,0 +8841,359,35,3,9,9,0 +8842,359,48,0,13,13,0 +8843,359,3,9,4,4,0 +8844,359,49,0,17,17,0 +8845,359,34,5,6,6,0 +8846,359,45,0,15,15,0 +8847,359,18,0,16,16,0 +8848,359,44,0,20,20,0 +8849,359,42,0,18,18,0 +8850,359,39,1,10,10,0 +8851,359,46,0,19,19,0 +8852,360,6,9,4,4,1 +8853,360,1,56,1,1,4 +8854,360,37,4,8,8,0 +8855,360,22,13,3,3,0 +8856,360,21,8,5,5,0 +8857,360,25,7,6,6,0 +8858,360,32,0,13,13,0 +8859,360,27,0,12,12,0 +8860,360,33,0,14,14,0 +8861,360,35,3,9,9,0 +8862,360,48,3,10,10,0 +8863,360,3,16,2,2,0 +8864,360,49,0,18,18,0 +8865,360,34,5,7,7,0 +8866,360,45,0,15,15,0 +8867,360,18,0,17,17,0 +8868,360,44,0,20,20,0 +8869,360,42,0,19,19,0 +8870,360,39,1,11,11,0 +8871,360,46,0,16,16,0 +8872,361,6,9,4,4,1 +8873,361,1,56,1,1,4 +8874,361,37,4,9,9,0 +8875,361,22,13,3,3,0 +8876,361,21,8,6,6,0 +8877,361,25,7,7,7,0 +8878,361,32,3,10,10,0 +8879,361,27,2,12,12,0 +8880,361,33,0,15,15,0 +8881,361,35,8,5,5,0 +8882,361,48,3,11,11,0 +8883,361,3,31,2,2,1 +8884,361,49,0,19,19,0 +8885,361,34,5,8,8,0 +8886,361,45,0,14,14,0 +8887,361,18,0,18,18,0 +8888,361,44,0,20,20,0 +8889,361,42,0,16,16,0 +8890,361,39,1,13,13,0 +8891,361,46,0,17,17,0 +8892,362,6,15,3,3,1 +8893,362,1,65,1,1,5 +8894,362,37,4,9,9,0 +8895,362,22,13,4,4,0 +8896,362,21,8,7,7,0 +8897,362,25,10,5,5,0 +8898,362,32,3,10,10,0 +8899,362,27,3,12,12,0 +8900,362,33,0,15,15,0 +8901,362,35,8,6,6,0 +8902,362,48,3,11,11,0 +8903,362,3,35,2,2,1 +8904,362,49,0,19,19,0 +8905,362,34,5,8,8,0 +8906,362,45,0,16,16,0 +8907,362,18,0,18,18,0 +8908,362,44,0,20,20,0 +8909,362,42,0,17,17,0 +8910,362,39,1,14,14,0 +8911,362,46,2,13,13,0 +8912,363,6,21,3,3,1 +8913,363,1,74,1,1,6 +8914,363,37,4,10,10,0 +8915,363,22,17,4,4,0 +8916,363,21,8,7,7,0 +8917,363,25,10,5,5,0 +8918,363,32,6,8,8,0 +8919,363,27,3,12,12,0 +8920,363,33,0,16,16,0 +8921,363,35,8,6,6,0 +8922,363,48,3,11,11,0 +8923,363,3,35,2,2,1 +8924,363,49,0,19,19,0 +8925,363,34,5,9,9,0 +8926,363,45,0,17,17,0 +8927,363,18,3,13,13,0 +8928,363,44,0,20,20,0 +8929,363,42,0,18,18,0 +8930,363,39,1,15,15,0 +8931,363,46,2,14,14,0 +8932,364,6,25,3,3,1 +8933,364,1,89,1,1,7 +8934,364,37,4,10,10,0 +8935,364,22,17,4,4,0 +8936,364,21,9,6,6,0 +8937,364,25,10,5,5,0 +8938,364,32,8,8,8,0 +8939,364,27,3,12,12,0 +8940,364,33,0,16,16,0 +8941,364,35,8,7,7,0 +8942,364,48,3,11,11,0 +8943,364,3,38,2,2,1 +8944,364,49,0,19,19,0 +8945,364,34,5,9,9,0 +8946,364,45,0,17,17,0 +8947,364,18,3,13,13,0 +8948,364,44,0,20,20,0 +8949,364,42,0,18,18,0 +8950,364,39,1,15,15,0 +8951,364,46,2,14,14,0 +8952,365,6,34,3,3,2 +8953,365,1,98,1,1,7 +8954,365,37,4,10,10,0 +8955,365,22,17,4,4,0 +8956,365,21,11,5,5,0 +8957,365,25,10,6,6,0 +8958,365,32,9,7,7,0 +8959,365,27,3,12,12,0 +8960,365,33,0,16,16,0 +8961,365,35,8,8,8,0 +8962,365,48,3,11,11,0 +8963,365,3,42,2,2,1 +8964,365,49,0,19,19,0 +8965,365,34,5,9,9,0 +8966,365,45,0,17,17,0 +8967,365,18,3,13,13,0 +8968,365,44,0,20,20,0 +8969,365,42,0,18,18,0 +8970,365,39,1,15,15,0 +8971,365,46,2,14,14,0 +8972,366,6,38,3,3,2 +8973,366,1,113,1,1,8 +8974,366,37,4,10,10,0 +8975,366,22,19,4,4,0 +8976,366,21,12,5,5,0 +8977,366,25,10,6,6,0 +8978,366,32,9,7,7,0 +8979,366,27,3,12,12,0 +8980,366,33,0,16,16,0 +8981,366,35,8,8,8,0 +8982,366,48,3,11,11,0 +8983,366,3,45,2,2,1 +8984,366,49,0,19,19,0 +8985,366,34,5,9,9,0 +8986,366,45,0,17,17,0 +8987,366,18,3,13,13,0 +8988,366,44,0,20,20,0 +8989,366,42,0,18,18,0 +8990,366,39,1,15,15,0 +8991,366,46,2,14,14,0 +8992,367,6,44,3,3,2 +8993,367,1,122,1,1,9 +8994,367,37,4,10,10,0 +8995,367,22,19,4,4,0 +8996,367,21,12,6,6,0 +8997,367,25,12,5,5,0 +8998,367,32,9,7,7,0 +8999,367,27,3,12,12,0 +9000,367,33,0,16,16,0 +9001,367,35,8,8,8,0 +9002,367,48,3,11,11,0 +9003,367,3,52,2,2,1 +9004,367,49,0,19,19,0 +9005,367,34,6,9,9,0 +9006,367,45,0,17,17,0 +9007,367,18,3,13,13,0 +9008,367,44,0,20,20,0 +9009,367,42,0,18,18,0 +9010,367,39,1,15,15,0 +9011,367,46,2,14,14,0 +9012,368,6,53,2,2,3 +9013,368,1,128,1,1,9 +9014,368,37,4,12,12,0 +9015,368,22,22,4,4,0 +9016,368,21,12,6,6,0 +9017,368,25,13,5,5,0 +9018,368,32,9,7,7,0 +9019,368,27,3,14,14,0 +9020,368,33,0,16,16,0 +9021,368,35,8,8,8,0 +9022,368,48,3,13,13,0 +9023,368,3,52,3,3,1 +9024,368,49,0,19,19,0 +9025,368,34,6,10,10,0 +9026,368,45,0,17,17,0 +9027,368,18,5,11,11,0 +9028,368,44,0,20,20,0 +9029,368,42,0,18,18,0 +9030,368,39,1,15,15,0 +9031,368,46,6,9,9,0 +9032,369,6,59,2,2,3 +9033,369,1,141,1,1,10 +9034,369,37,4,12,12,0 +9035,369,22,22,4,4,0 +9036,369,21,12,6,6,0 +9037,369,25,16,5,5,0 +9038,369,32,9,7,7,0 +9039,369,27,3,14,14,0 +9040,369,33,1,16,16,0 +9041,369,35,8,8,8,0 +9042,369,48,3,13,13,0 +9043,369,3,54,3,3,1 +9044,369,49,0,19,19,0 +9045,369,34,6,10,10,0 +9046,369,45,0,17,17,0 +9047,369,18,5,11,11,0 +9048,369,44,0,20,20,0 +9049,369,42,0,18,18,0 +9050,369,39,1,15,15,0 +9051,369,46,6,9,9,0 +9129,370,42,0,18,18,0 +9133,371,1,141,1,1,10 +9132,371,6,59,3,3,3 +9131,370,46,6,10,10,0 +9117,370,25,16,5,5,0 +9118,370,32,12,7,7,0 +9119,370,27,3,14,14,0 +9120,370,33,1,16,16,0 +9121,370,35,8,8,8,0 +9122,370,48,3,13,13,0 +9123,370,3,64,2,2,1 +9124,370,49,0,19,19,0 +9125,370,34,8,9,9,0 +9126,370,45,0,17,17,0 +9127,370,18,5,11,11,0 +9128,370,44,0,20,20,0 +9116,370,21,13,6,6,0 +9115,370,22,31,4,4,1 +9114,370,37,4,12,12,0 +9112,370,6,59,3,3,3 +9113,370,1,141,1,1,10 +9130,370,39,1,15,15,0 +9134,371,37,4,12,12,0 +9135,371,22,39,4,4,1 +9136,371,21,13,7,7,0 +9137,371,25,16,5,5,0 +9138,371,32,15,6,6,0 +9139,371,27,3,14,14,0 +9140,371,33,1,16,16,0 +9141,371,35,8,8,8,0 +9142,371,48,3,13,13,0 +9143,371,3,77,2,2,2 +9144,371,49,0,19,19,0 +9145,371,34,8,9,9,0 +9146,371,45,0,17,17,0 +9147,371,18,6,11,11,0 +9148,371,44,0,20,20,0 +9149,371,42,0,18,18,0 +9150,371,39,1,15,15,0 +9151,371,46,6,10,10,0 +9152,372,1,9,1,1,1 +9153,372,6,8,2,2,0 +9154,372,32,5,3,3,0 +9155,372,21,3,4,4,0 +9156,372,22,0,5,5,0 +9157,372,27,0,6,6,0 +9158,372,48,0,7,7,0 +9159,372,25,0,8,8,0 +9160,372,18,0,9,9,0 +9161,372,33,0,10,10,0 +9162,372,42,0,11,11,0 +9163,372,39,0,12,12,0 +9164,372,44,0,13,13,0 +9165,372,3,0,14,14,0 +9166,372,37,0,15,15,0 +9167,372,49,0,16,16,0 +9168,372,45,0,17,17,0 +9169,372,35,0,18,18,0 +9170,373,1,24,1,1,2 +9171,373,6,10,2,2,0 +9172,373,32,9,3,3,0 +9173,373,21,3,5,5,0 +9174,373,22,4,4,4,0 +9175,373,27,0,6,6,0 +9176,373,48,0,13,13,0 +9177,373,25,0,11,11,0 +9178,373,18,0,8,8,0 +9179,373,33,0,9,9,0 +9180,373,42,0,14,14,0 +9181,373,39,0,7,7,0 +9182,373,44,0,15,15,0 +9183,373,3,0,10,10,0 +9184,373,37,0,12,12,0 +9185,373,49,0,17,17,0 +9186,373,45,0,18,18,0 +9187,373,35,0,16,16,0 +9188,374,1,33,1,1,3 +9189,374,6,20,2,2,0 +9190,374,32,9,3,3,0 +9191,374,21,6,4,4,0 +9192,374,22,4,5,5,0 +9193,374,27,0,9,9,0 +9194,374,48,0,14,14,0 +9195,374,25,2,6,6,0 +9196,374,18,0,13,13,0 +9197,374,33,0,8,8,0 +9198,374,42,0,15,15,0 +9199,374,39,0,12,12,0 +9200,374,44,0,17,17,0 +9201,374,3,1,7,7,0 +9202,374,37,0,11,11,0 +9203,374,49,0,16,16,0 +9204,374,45,0,10,10,0 +9205,374,35,0,18,18,0 +9206,375,1,48,1,1,4 +9207,375,6,27,2,2,0 +9208,375,32,9,3,3,0 +9209,375,21,9,4,4,0 +9210,375,22,4,5,5,0 +9211,375,27,0,9,9,0 +9212,375,48,0,17,17,0 +9213,375,25,2,6,6,0 +9214,375,18,0,13,13,0 +9215,375,33,0,8,8,0 +9216,375,42,0,15,15,0 +9217,375,39,0,11,11,0 +9218,375,44,0,14,14,0 +9219,375,3,1,7,7,0 +9220,375,37,0,12,12,0 +9221,375,49,0,16,16,0 +9222,375,45,0,10,10,0 +9223,375,35,0,18,18,0 +9224,376,1,63,1,1,5 +9225,376,6,27,2,2,0 +9226,376,32,12,3,3,0 +9227,376,21,9,4,4,0 +9228,376,22,8,5,5,0 +9229,376,27,0,11,11,0 +9230,376,48,0,12,12,0 +9231,376,25,3,6,6,0 +9232,376,18,0,15,15,0 +9233,376,33,0,9,9,0 +9234,376,42,0,10,10,0 +9235,376,39,0,14,14,0 +9236,376,44,0,16,16,0 +9237,376,3,1,8,8,0 +9238,376,37,2,7,7,0 +9239,376,49,0,17,17,0 +9240,376,45,0,13,13,0 +9241,376,35,0,18,18,0 +9242,377,1,78,1,1,6 +9243,377,6,27,2,2,0 +9244,377,32,12,4,4,0 +9245,377,21,9,5,5,0 +9246,377,22,12,3,3,0 +9247,377,27,0,14,14,0 +9248,377,48,3,7,7,0 +9249,377,25,5,6,6,0 +9250,377,18,1,9,9,0 +9251,377,33,0,11,11,0 +9252,377,42,0,12,12,0 +9253,377,39,0,16,16,0 +9254,377,44,0,17,17,0 +9255,377,3,1,10,10,0 +9256,377,37,2,8,8,0 +9257,377,49,0,18,18,0 +9258,377,45,0,15,15,0 +9259,377,35,0,13,13,0 +9260,378,1,93,1,1,7 +9261,378,6,34,2,2,0 +9262,378,32,14,3,3,0 +9263,378,21,9,5,5,0 +9264,378,22,13,4,4,0 +9265,378,27,0,14,14,0 +9266,378,48,3,7,7,0 +9267,378,25,5,6,6,0 +9268,378,18,1,9,9,0 +9269,378,33,0,11,11,0 +9270,378,42,0,13,13,0 +9271,378,39,0,16,16,0 +9272,378,44,0,17,17,0 +9273,378,3,1,10,10,0 +9274,378,37,2,8,8,0 +9275,378,49,0,18,18,0 +9276,378,45,0,15,15,0 +9277,378,35,0,12,12,0 +9278,379,1,102,1,1,8 +9279,379,6,34,2,2,0 +9280,379,32,16,4,4,0 +9281,379,21,10,5,5,0 +9282,379,22,17,3,3,0 +9283,379,27,0,14,14,0 +9284,379,48,3,9,9,0 +9285,379,25,5,8,8,0 +9286,379,18,1,10,10,0 +9287,379,33,0,11,11,0 +9288,379,42,0,13,13,0 +9289,379,39,0,16,16,0 +9290,379,44,0,17,17,0 +9291,379,3,7,6,6,0 +9292,379,37,5,7,7,0 +9293,379,49,0,18,18,0 +9294,379,45,0,15,15,0 +9295,379,35,0,12,12,0 +9296,380,1,117,1,1,9 +9297,380,6,41,2,2,0 +9298,380,32,16,4,4,0 +9299,380,21,10,5,5,0 +9300,380,22,18,3,3,0 +9301,380,27,0,14,14,0 +9302,380,48,3,9,9,0 +9303,380,25,5,8,8,0 +9304,380,18,1,10,10,0 +9305,380,33,0,11,11,0 +9306,380,42,0,13,13,0 +9307,380,39,0,16,16,0 +9308,380,44,0,17,17,0 +9309,380,3,7,6,6,0 +9310,380,37,7,7,7,0 +9311,380,49,0,18,18,0 +9312,380,45,0,15,15,0 +9313,380,35,0,12,12,0 +9314,381,1,132,1,1,10 +9315,381,6,44,2,2,0 +9316,381,32,16,4,4,0 +9317,381,21,10,5,5,0 +9318,381,22,22,3,3,0 +9319,381,27,0,14,14,0 +9320,381,48,3,9,9,0 +9321,381,25,5,8,8,0 +9322,381,18,1,10,10,0 +9323,381,33,0,11,11,0 +9324,381,42,0,13,13,0 +9325,381,39,0,16,16,0 +9326,381,44,0,17,17,0 +9327,381,3,8,7,7,0 +9328,381,37,9,6,6,0 +9329,381,49,0,18,18,0 +9330,381,45,0,15,15,0 +9331,381,35,0,12,12,0 +9332,382,1,147,1,1,11 +9333,382,6,44,2,2,0 +9334,382,32,19,4,4,0 +9335,382,21,13,6,6,0 +9336,382,22,22,3,3,0 +9337,382,27,0,14,14,0 +9338,382,48,3,9,9,0 +9339,382,25,5,8,8,0 +9340,382,18,1,10,10,0 +9341,382,33,0,11,11,0 +9342,382,42,0,13,13,0 +9343,382,39,0,16,16,0 +9344,382,44,0,17,17,0 +9345,382,3,8,7,7,0 +9346,382,37,13,5,5,0 +9347,382,49,0,18,18,0 +9348,382,45,0,15,15,0 +9349,382,35,0,12,12,0 +9350,383,1,147,1,1,11 +9351,383,6,59,2,2,1 +9352,383,32,19,5,5,0 +9353,383,21,20,4,4,0 +9354,383,22,23,3,3,0 +9355,383,27,0,14,14,0 +9356,383,48,3,9,9,0 +9357,383,25,5,8,8,0 +9358,383,18,1,10,10,0 +9359,383,33,0,11,11,0 +9360,383,42,0,13,13,0 +9361,383,39,0,16,16,0 +9362,383,44,0,17,17,0 +9363,383,3,8,7,7,0 +9364,383,37,15,6,6,0 +9365,383,49,0,18,18,0 +9366,383,45,0,15,15,0 +9367,383,35,0,12,12,0 +9368,384,1,157,1,1,12 +9369,384,6,61,2,2,1 +9370,384,32,19,6,6,0 +9371,384,21,23,4,4,0 +9372,384,22,27,3,3,0 +9373,384,27,0,14,14,0 +9374,384,48,3,9,9,0 +9375,384,25,5,8,8,0 +9376,384,18,1,10,10,0 +9377,384,33,0,11,11,0 +9378,384,42,0,13,13,0 +9379,384,39,0,15,15,0 +9380,384,44,0,17,17,0 +9381,384,3,8,7,7,0 +9382,384,37,21,5,5,0 +9383,384,49,0,18,18,0 +9384,384,45,0,16,16,0 +9385,384,35,0,12,12,0 +9386,385,1,169,1,1,13 +9387,385,6,62,2,2,1 +9388,385,32,19,6,6,0 +9389,385,21,23,4,4,0 +9390,385,22,31,3,3,0 +9391,385,27,0,14,14,0 +9392,385,48,3,9,9,0 +9393,385,25,5,8,8,0 +9394,385,18,1,10,10,0 +9395,385,33,0,11,11,0 +9396,385,42,0,13,13,0 +9397,385,39,0,15,15,0 +9398,385,44,0,17,17,0 +9399,385,3,16,7,7,0 +9400,385,37,21,5,5,0 +9401,385,49,0,18,18,0 +9402,385,45,0,16,16,0 +9403,385,35,0,12,12,0 +9404,386,1,184,1,1,14 +9405,386,6,65,2,2,1 +9406,386,32,19,6,6,0 +9407,386,21,23,4,4,0 +9408,386,22,37,3,3,0 +9409,386,27,0,15,15,0 +9410,386,48,3,9,9,0 +9411,386,25,5,8,8,0 +9412,386,18,1,10,10,0 +9413,386,33,0,11,11,0 +9414,386,42,0,14,14,0 +9415,386,39,0,13,13,0 +9416,386,44,0,17,17,0 +9417,386,3,17,7,7,0 +9418,386,37,21,5,5,0 +9419,386,49,0,18,18,0 +9420,386,45,0,16,16,0 +9421,386,35,0,12,12,0 +9422,387,1,199,1,1,15 +9423,387,6,65,2,2,1 +9424,387,32,23,4,4,0 +9425,387,21,23,5,5,0 +9426,387,22,39,3,3,0 +9427,387,27,0,15,15,0 +9428,387,48,3,9,9,0 +9429,387,25,5,8,8,0 +9430,387,18,1,10,10,0 +9431,387,33,0,11,11,0 +9432,387,42,0,14,14,0 +9433,387,39,0,13,13,0 +9434,387,44,0,17,17,0 +9435,387,3,20,7,7,0 +9436,387,37,22,6,6,0 +9437,387,49,0,18,18,0 +9438,387,45,0,16,16,0 +9439,387,35,0,12,12,0 +9440,388,1,13,1,1,1 +9441,388,3,7,2,2,0 +9442,388,6,3,3,3,0 +9443,388,22,2,4,4,0 +9444,388,32,0,5,5,0 +9445,388,49,0,6,6,0 +9446,388,25,0,7,7,0 +9447,388,39,0,8,8,0 +9448,388,21,0,9,9,0 +9449,388,34,0,10,10,0 +9450,388,45,0,11,11,0 +9451,388,18,0,12,12,0 +9452,388,37,0,13,13,0 +9453,389,1,16,2,2,1 +9454,389,3,16,1,1,1 +9455,389,6,7,4,4,0 +9456,389,22,2,6,6,0 +9457,389,32,7,3,3,0 +9458,389,49,2,5,5,0 +9459,389,25,0,7,7,0 +9460,389,39,0,11,11,0 +9461,389,21,0,10,10,0 +9462,389,34,0,8,8,0 +9463,389,45,0,12,12,0 +9464,389,18,0,13,13,0 +9465,389,37,0,14,14,0 +9466,389,33,0,9,9,0 +9467,389,27,0,15,15,0 +9468,390,1,31,1,1,2 +9469,390,3,16,2,2,1 +9470,390,6,7,4,4,0 +9471,390,22,2,8,8,0 +9472,390,32,9,3,3,0 +9473,390,49,2,7,7,0 +9474,390,25,0,10,10,0 +9475,390,39,0,12,12,0 +9476,390,21,3,6,6,0 +9477,390,34,4,5,5,0 +9478,390,45,0,13,13,0 +9479,390,18,0,15,15,0 +9480,390,37,0,14,14,0 +9481,390,33,0,11,11,0 +9482,390,27,1,9,9,0 +9483,391,1,31,1,1,2 +9484,391,3,22,2,2,1 +9485,391,6,14,4,4,0 +9486,391,22,2,9,9,0 +9487,391,32,18,3,3,1 +9488,391,49,2,7,7,0 +9489,391,25,2,8,8,0 +9490,391,39,0,13,13,0 +9491,391,21,3,6,6,0 +9492,391,34,4,5,5,0 +9493,391,45,0,14,14,0 +9494,391,18,0,15,15,0 +9495,391,37,1,11,11,0 +9496,391,33,0,12,12,0 +9497,391,27,1,10,10,0 +9498,392,1,35,1,1,2 +9499,392,3,30,2,2,1 +9500,392,6,17,4,4,0 +9501,392,22,2,9,9,0 +9502,392,32,27,3,3,2 +9503,392,49,2,7,7,0 +9504,392,25,2,8,8,0 +9505,392,39,0,13,13,0 +9506,392,21,4,6,6,0 +9507,392,34,4,5,5,0 +9508,392,45,0,14,14,0 +9509,392,18,0,15,15,0 +9510,392,37,1,11,11,0 +9511,392,33,0,12,12,0 +9512,392,27,1,10,10,0 +9513,393,1,39,2,2,2 +9514,393,3,45,1,1,2 +9515,393,6,17,4,4,0 +9516,393,22,4,7,7,0 +9517,393,32,30,3,3,2 +9518,393,49,2,9,9,0 +9519,393,25,3,8,8,0 +9520,393,39,0,13,13,0 +9521,393,21,4,6,6,0 +9522,393,34,4,5,5,0 +9523,393,45,0,14,14,0 +9524,393,18,0,15,15,0 +9525,393,37,1,11,11,0 +9526,393,33,0,12,12,0 +9527,393,27,1,10,10,0 +9528,394,1,39,2,2,2 +9529,394,3,60,1,1,3 +9530,394,6,17,4,4,0 +9531,394,22,5,6,6,0 +9532,394,32,37,3,3,2 +9533,394,49,2,9,9,0 +9534,394,25,3,8,8,0 +9535,394,39,0,13,13,0 +9536,394,21,6,5,5,0 +9537,394,34,4,7,7,0 +9538,394,45,0,14,14,0 +9539,394,18,0,15,15,0 +9540,394,37,1,11,11,0 +9541,394,33,0,12,12,0 +9542,394,27,1,10,10,0 +9543,395,1,45,2,2,2 +9544,395,3,69,1,1,4 +9545,395,6,17,4,4,0 +9546,395,22,5,7,7,0 +9547,395,32,41,3,3,2 +9548,395,49,2,9,9,0 +9549,395,25,8,5,5,0 +9550,395,39,0,13,13,0 +9551,395,21,6,6,6,0 +9552,395,34,4,8,8,0 +9553,395,45,0,14,14,0 +9554,395,18,0,15,15,0 +9555,395,37,1,12,12,0 +9556,395,33,1,11,11,0 +9557,395,27,1,10,10,0 +9558,396,1,49,2,2,2 +9559,396,3,78,1,1,5 +9560,396,6,17,4,4,0 +9561,396,22,8,6,6,0 +9562,396,32,47,3,3,2 +9563,396,49,2,9,9,0 +9564,396,25,8,5,5,0 +9565,396,39,0,13,13,0 +9566,396,21,7,7,7,0 +9567,396,34,6,8,8,0 +9568,396,45,0,15,15,0 +9569,396,18,0,14,14,0 +9570,396,37,1,12,12,0 +9571,396,33,1,11,11,0 +9572,396,27,1,10,10,0 +9573,397,1,50,2,2,2 +9574,397,3,93,1,1,6 +9575,397,6,17,4,4,0 +9576,397,22,15,5,5,0 +9577,397,32,49,3,3,2 +9578,397,49,2,9,9,0 +9579,397,25,8,6,6,0 +9580,397,39,0,13,13,0 +9581,397,21,7,7,7,0 +9582,397,34,6,8,8,0 +9583,397,45,0,15,15,0 +9584,397,18,0,14,14,0 +9585,397,37,1,12,12,0 +9586,397,33,1,11,11,0 +9587,397,27,1,10,10,0 +9588,398,1,51,3,3,2 +9589,398,3,106,1,1,7 +9590,398,6,20,4,4,0 +9591,398,22,17,5,5,0 +9592,398,32,55,2,2,2 +9593,398,49,2,9,9,0 +9594,398,25,8,6,6,0 +9595,398,39,0,13,13,0 +9596,398,21,7,7,7,0 +9597,398,34,6,8,8,0 +9598,398,45,0,15,15,0 +9599,398,18,0,14,14,0 +9600,398,37,1,12,12,0 +9601,398,33,1,11,11,0 +9602,398,27,1,10,10,0 +9603,398,42,0,16,16,0 +9604,399,1,62,2,2,3 +9605,399,3,110,1,1,7 +9606,399,6,26,4,4,0 +9607,399,22,20,5,5,0 +9608,399,32,55,3,3,2 +9609,399,49,2,9,9,0 +9610,399,25,8,6,6,0 +9611,399,39,0,13,13,0 +9612,399,21,8,7,7,0 +9613,399,34,6,8,8,0 +9614,399,45,0,15,15,0 +9615,399,18,0,14,14,0 +9616,399,37,1,12,12,0 +9617,399,33,1,11,11,0 +9618,399,27,1,10,10,0 +9619,399,42,0,16,16,0 +9620,400,1,72,2,2,3 +9621,400,3,122,1,1,8 +9622,400,6,26,4,4,0 +9623,400,22,20,5,5,0 +9624,400,32,57,3,3,2 +9625,400,49,2,9,9,0 +9626,400,25,8,6,6,0 +9627,400,39,0,13,13,0 +9628,400,21,8,7,7,0 +9629,400,34,6,8,8,0 +9630,400,45,0,15,15,0 +9631,400,18,0,14,14,0 +9632,400,37,1,12,12,0 +9633,400,33,2,10,10,0 +9634,400,27,1,11,11,0 +9635,400,42,0,16,16,0 +9636,401,1,72,2,2,3 +9637,401,3,137,1,1,9 +9638,401,6,26,4,4,0 +9639,401,22,22,5,5,0 +9640,401,32,57,3,3,2 +9641,401,49,2,10,10,0 +9642,401,25,8,8,8,0 +9643,401,39,0,13,13,0 +9644,401,21,11,6,6,0 +9645,401,34,10,7,7,0 +9646,401,45,0,15,15,0 +9647,401,18,0,14,14,0 +9648,401,37,1,12,12,0 +9649,401,33,3,9,9,0 +9650,401,27,1,11,11,0 +9651,401,42,0,16,16,0 +9652,402,1,76,2,2,3 +9653,402,3,137,1,1,9 +9654,402,6,38,4,4,1 +9655,402,22,24,5,5,0 +9656,402,32,64,3,3,2 +9657,402,49,2,10,10,0 +9658,402,25,8,8,8,0 +9659,402,39,0,13,13,0 +9660,402,21,11,6,6,0 +9661,402,34,10,7,7,0 +9662,402,45,0,15,15,0 +9663,402,18,0,14,14,0 +9664,402,37,1,12,12,0 +9665,402,33,3,9,9,0 +9666,402,27,1,11,11,0 +9667,402,42,0,16,16,0 +9668,403,1,76,2,2,3 +9669,403,3,137,1,1,9 +9670,403,6,53,4,4,2 +9671,403,22,28,5,5,0 +9672,403,32,64,3,3,2 +9673,403,49,2,10,10,0 +9674,403,25,11,6,6,0 +9675,403,39,1,12,12,0 +9676,403,21,11,7,7,0 +9677,403,34,10,8,8,0 +9678,403,45,0,15,15,0 +9679,403,18,0,14,14,0 +9680,403,37,1,13,13,0 +9681,403,33,3,9,9,0 +9682,403,27,1,11,11,0 +9683,403,42,0,16,16,0 +9684,404,3,9,1,1,1 +9685,404,32,6,3,3,0 +9686,404,27,7,2,2,0 +9687,404,25,2,4,4,0 +9688,404,22,1,5,5,0 +9689,404,34,0,6,6,0 +9690,404,21,0,7,7,0 +9691,404,6,0,8,8,0 +9692,404,1,0,9,9,0 +9693,404,45,0,10,10,0 +9694,404,26,0,11,11,0 +9695,404,49,0,12,12,0 +9696,404,18,0,13,13,0 +9697,405,3,15,2,2,1 +9698,405,32,15,1,1,1 +9699,405,27,7,3,3,0 +9700,405,25,2,6,6,0 +9701,405,22,4,5,5,0 +9702,405,34,0,8,8,0 +9703,405,21,0,7,7,0 +9704,405,6,0,10,10,0 +9705,405,1,7,4,4,0 +9706,405,45,0,11,11,0 +9707,405,26,0,9,9,0 +9708,405,49,0,12,12,0 +9709,405,18,0,13,13,0 +9710,406,3,21,1,1,1 +9711,406,32,15,3,3,1 +9712,406,27,7,5,5,0 +9713,406,25,2,7,7,0 +9714,406,22,8,4,4,0 +9715,406,34,1,8,8,0 +9716,406,21,0,9,9,0 +9717,406,6,3,6,6,0 +9718,406,1,18,2,2,1 +9719,406,45,0,11,11,0 +9720,406,26,0,10,10,0 +9721,406,49,0,12,12,0 +9722,406,18,0,13,13,0 +9723,407,3,24,2,2,1 +9724,407,32,19,3,3,1 +9725,407,27,10,4,4,0 +9726,407,25,2,7,7,0 +9727,407,22,8,5,5,0 +9728,407,34,1,8,8,0 +9729,407,21,0,9,9,0 +9730,407,6,3,6,6,0 +9731,407,1,33,1,1,2 +9732,407,45,0,12,12,0 +9733,407,26,0,10,10,0 +9734,407,49,0,11,11,0 +9735,407,18,0,13,13,0 +9736,408,3,33,2,2,2 +9737,408,32,25,3,3,1 +9738,408,27,12,4,4,0 +9739,408,25,2,7,7,0 +9740,408,22,8,6,6,0 +9741,408,34,1,8,8,0 +9742,408,21,0,9,9,0 +9743,408,6,10,5,5,0 +9744,408,1,34,1,1,2 +9745,408,45,0,12,12,0 +9746,408,26,0,10,10,0 +9747,408,49,0,11,11,0 +9748,408,18,0,13,13,0 +9749,409,3,46,1,1,3 +9750,409,32,27,3,3,1 +9751,409,27,13,4,4,0 +9752,409,25,2,7,7,0 +9753,409,22,8,6,6,0 +9754,409,34,1,8,8,0 +9755,409,21,0,9,9,0 +9756,409,6,10,5,5,0 +9757,409,1,43,2,2,2 +9758,409,45,0,12,12,0 +9759,409,26,0,10,10,0 +9760,409,49,0,11,11,0 +9761,409,18,0,13,13,0 +9788,411,3,61,1,1,4 +9787,410,18,0,13,13,0 +9786,410,49,0,11,11,0 +9785,410,26,0,10,10,0 +9782,410,6,13,5,5,0 +9780,410,34,2,8,8,0 +9778,410,25,2,7,7,0 +9777,410,27,19,4,4,0 +9779,410,22,8,6,6,0 +9781,410,21,0,9,9,0 +9784,410,45,0,12,12,0 +9783,410,1,47,2,2,2 +9776,410,32,36,3,3,2 +9775,410,3,48,1,1,3 +9789,411,32,36,3,3,2 +9790,411,27,22,4,4,0 +9791,411,25,2,7,7,0 +9792,411,22,8,6,6,0 +9793,411,34,2,8,8,0 +9794,411,21,0,9,9,0 +9795,411,6,13,5,5,0 +9796,411,1,56,2,2,2 +9797,411,45,0,12,12,0 +9798,411,26,0,10,10,0 +9799,411,49,0,11,11,0 +9800,411,18,0,13,13,0 +9801,412,3,76,1,1,5 +9802,412,32,36,3,3,2 +9803,412,27,25,4,4,0 +9804,412,25,5,7,7,0 +9805,412,22,8,6,6,0 +9806,412,34,2,8,8,0 +9807,412,21,0,9,9,0 +9808,412,6,13,5,5,0 +9809,412,1,60,2,2,2 +9810,412,45,0,12,12,0 +9811,412,26,0,11,11,0 +9812,412,49,0,10,10,0 +9813,412,18,0,13,13,0 +9814,413,3,89,1,1,6 +9815,413,32,42,3,3,2 +9816,413,27,28,4,4,0 +9817,413,25,5,7,7,0 +9818,413,22,8,6,6,0 +9819,413,34,2,8,8,0 +9820,413,21,0,9,9,0 +9821,413,6,13,5,5,0 +9822,413,1,63,2,2,2 +9823,413,45,0,12,12,0 +9824,413,26,0,10,10,0 +9825,413,49,0,11,11,0 +9826,413,18,0,13,13,0 +9827,414,3,102,1,1,7 +9828,414,32,50,3,3,2 +9829,414,27,28,4,4,0 +9830,414,25,6,7,7,0 +9831,414,22,8,6,6,0 +9832,414,34,2,8,8,0 +9833,414,21,0,9,9,0 +9834,414,6,16,5,5,0 +9835,414,1,63,2,2,2 +9836,414,45,0,12,12,0 +9837,414,26,0,10,10,0 +9838,414,49,0,11,11,0 +9839,414,18,0,13,13,0 +9840,415,3,102,1,1,7 +9841,415,32,50,3,3,2 +9842,415,27,28,4,4,0 +9843,415,25,6,7,7,0 +9844,415,22,8,6,6,0 +9845,415,34,2,9,9,0 +9846,415,21,1,10,10,0 +9847,415,6,26,5,5,0 +9848,415,1,72,2,2,3 +9849,415,45,0,12,12,0 +9850,415,26,5,8,8,0 +9851,415,49,0,11,11,0 +9852,415,18,0,13,13,0 +9853,416,3,117,1,1,8 +9854,416,32,50,3,3,2 +9855,416,27,28,5,5,0 +9856,416,25,6,8,8,0 +9857,416,22,10,6,6,0 +9858,416,34,2,9,9,0 +9859,416,21,1,10,10,0 +9860,416,6,30,4,4,0 +9861,416,1,75,2,2,3 +9862,416,45,0,12,12,0 +9863,416,26,6,7,7,0 +9864,416,49,0,11,11,0 +9865,416,18,0,13,13,0 +9866,416,39,0,14,14,0 +9867,417,3,130,1,1,9 +9868,417,32,53,3,3,2 +9869,417,27,28,5,5,0 +9870,417,25,6,8,8,0 +9871,417,22,10,6,6,0 +9872,417,34,2,9,9,0 +9873,417,21,1,10,10,0 +9874,417,6,33,4,4,0 +9875,417,1,81,2,2,3 +9876,417,45,0,12,12,0 +9877,417,26,6,7,7,0 +9878,417,49,0,11,11,0 +9879,417,18,0,13,13,0 +9880,417,39,0,14,14,0 +9881,418,3,135,1,1,9 +9882,418,32,57,3,3,2 +9883,418,27,29,5,5,0 +9884,418,25,6,8,8,0 +9885,418,22,19,6,6,1 +9886,418,34,2,9,9,0 +9887,418,21,1,10,10,0 +9888,418,6,33,4,4,0 +9889,418,1,87,2,2,3 +9890,418,45,0,13,13,0 +9891,418,26,6,7,7,0 +9892,418,49,0,11,11,0 +9893,418,18,0,12,12,0 +9894,418,39,0,14,14,0 +9895,419,3,141,1,1,9 +9896,419,32,58,3,3,2 +9897,419,27,29,5,5,0 +9898,419,25,11,7,7,0 +9899,419,22,19,6,6,1 +9900,419,34,2,9,9,0 +9901,419,21,1,10,10,0 +9902,419,6,37,4,4,0 +9903,419,1,96,2,2,4 +9904,419,45,0,13,13,0 +9905,419,26,6,8,8,0 +9906,419,49,0,11,11,0 +9907,419,18,0,12,12,0 +9908,419,39,0,14,14,0 +9909,420,1,9,1,1,1 +9910,420,6,9,2,2,0 +9911,420,32,4,3,3,0 +9912,420,4,2,4,4,0 +9913,420,27,1,5,5,0 +9914,420,25,0,6,6,0 +9915,420,50,0,7,7,0 +9916,420,21,0,8,8,0 +9917,420,45,0,9,9,0 +9918,420,51,0,10,10,0 +9919,420,18,0,11,11,0 +9920,420,3,0,12,12,0 +9921,420,34,0,13,13,0 +9922,420,52,0,14,14,0 +9923,421,1,9,3,3,1 +9924,421,6,15,2,2,0 +9925,421,32,16,1,1,1 +9926,421,4,6,4,4,0 +9927,421,27,1,7,7,0 +9928,421,25,1,6,6,0 +9929,421,50,0,9,9,0 +9930,421,21,0,10,10,0 +9931,421,45,0,8,8,0 +9932,421,51,0,11,11,0 +9933,421,18,0,13,13,0 +9934,421,3,2,5,5,0 +9935,421,34,0,12,12,0 +9936,421,52,0,14,14,0 +9937,421,49,0,15,15,0 +9938,422,1,12,3,3,1 +9939,422,6,16,2,2,0 +9940,422,32,25,1,1,2 +9941,422,4,10,4,4,0 +9942,422,27,1,8,8,0 +9943,422,25,1,7,7,0 +9944,422,50,0,11,11,0 +9945,422,21,6,5,5,0 +9946,422,45,0,10,10,0 +9947,422,51,0,12,12,0 +9948,422,18,0,13,13,0 +9949,422,3,4,6,6,0 +9950,422,34,0,9,9,0 +9951,422,52,0,14,14,0 +9952,422,49,0,15,15,0 +9953,423,1,21,3,3,2 +9954,423,6,22,2,2,0 +9955,423,32,29,1,1,2 +9956,423,4,12,4,4,0 +9957,423,27,5,6,6,0 +9958,423,25,1,8,8,0 +9959,423,50,0,11,11,0 +9960,423,21,6,5,5,0 +9961,423,45,0,10,10,0 +9962,423,51,0,13,13,0 +9963,423,18,0,15,15,0 +9964,423,3,4,7,7,0 +9965,423,34,0,9,9,0 +9966,423,52,0,16,16,0 +9967,423,49,0,12,12,0 +9968,423,53,0,14,14,0 +9969,424,1,25,3,3,2 +9970,424,6,37,1,1,1 +9971,424,32,31,2,2,2 +9972,424,4,12,4,4,0 +9973,424,27,5,7,7,0 +9974,424,25,1,8,8,0 +9975,424,50,0,11,11,0 +9976,424,21,6,6,6,0 +9977,424,45,0,10,10,0 +9978,424,51,0,12,12,0 +9979,424,18,0,15,15,0 +9980,424,3,8,5,5,0 +9981,424,34,0,9,9,0 +9982,424,52,0,16,16,0 +9983,424,49,0,13,13,0 +9984,424,53,0,14,14,0 +10031,425,49,0,13,13,0 +10029,425,34,1,9,9,0 +10019,425,32,33,2,2,2 +10032,425,53,0,14,14,0 +10030,425,52,0,16,16,0 +10028,425,3,17,4,4,1 +10027,425,18,0,15,15,0 +10020,425,4,12,5,5,0 +10023,425,50,0,12,12,0 +10024,425,21,6,6,6,0 +10025,425,45,0,11,11,0 +10026,425,51,0,10,10,0 +10022,425,25,4,8,8,0 +10021,425,27,5,7,7,0 +10018,425,6,47,1,1,1 +10017,425,1,25,3,3,2 +10064,426,53,0,14,14,0 +10062,426,52,0,16,16,0 +10061,426,34,10,6,6,1 +10059,426,18,0,15,15,0 +10057,426,45,0,12,12,0 +10056,426,21,6,7,7,0 +10054,426,25,4,9,9,0 +10050,426,6,50,1,1,1 +10055,426,50,0,11,11,0 +10053,426,27,5,8,8,0 +10063,426,49,0,13,13,0 +10058,426,51,0,10,10,0 +10060,426,3,23,4,4,1 +10051,426,32,35,2,2,2 +10049,426,1,29,3,3,2 +10052,426,4,13,5,5,0 +10065,427,1,38,2,2,3 +10066,427,6,56,1,1,1 +10067,427,32,35,3,3,2 +10068,427,4,15,5,5,0 +10069,427,27,9,7,7,0 +10070,427,25,4,9,9,0 +10071,427,50,0,11,11,0 +10072,427,21,6,8,8,0 +10073,427,45,0,12,12,0 +10074,427,51,0,10,10,0 +10075,427,18,0,15,15,0 +10076,427,3,23,4,4,1 +10077,427,34,14,6,6,1 +10078,427,52,0,16,16,0 +10079,427,49,0,13,13,0 +10080,427,53,0,14,14,0 +10081,428,1,46,2,2,3 +10082,428,6,65,1,1,2 +10083,428,32,35,3,3,2 +10084,428,4,15,5,5,0 +10085,428,27,13,7,7,0 +10086,428,25,4,9,9,0 +10087,428,50,0,11,11,0 +10088,428,21,9,8,8,0 +10089,428,45,0,12,12,0 +10090,428,51,0,10,10,0 +10091,428,18,0,13,13,0 +10092,428,3,24,4,4,1 +10093,428,34,14,6,6,1 +10094,428,52,0,16,16,0 +10095,428,49,0,14,14,0 +10096,428,53,0,15,15,0 +10097,429,1,55,2,2,4 +10098,429,6,72,1,1,2 +10099,429,32,43,3,3,2 +10100,429,4,15,6,6,0 +10101,429,27,13,7,7,0 +10102,429,25,4,9,9,0 +10103,429,50,0,12,12,0 +10104,429,21,9,8,8,0 +10105,429,45,0,11,11,0 +10106,429,51,0,10,10,0 +10107,429,18,0,13,13,0 +10108,429,3,24,4,4,1 +10109,429,34,15,5,5,1 +10110,429,52,0,16,16,0 +10111,429,49,0,14,14,0 +10112,429,53,0,15,15,0 +10113,430,1,70,2,2,5 +10114,430,6,75,1,1,2 +10115,430,32,49,3,3,2 +10116,430,4,15,6,6,0 +10117,430,27,13,7,7,0 +10118,430,25,4,9,9,0 +10119,430,50,0,12,12,0 +10120,430,21,9,8,8,0 +10121,430,45,0,11,11,0 +10122,430,51,0,10,10,0 +10123,430,18,0,13,13,0 +10124,430,3,25,4,4,1 +10125,430,34,15,5,5,1 +10126,430,52,0,16,16,0 +10127,430,49,0,14,14,0 +10128,430,53,0,15,15,0 +10129,431,1,79,1,1,6 +10130,431,6,77,2,2,2 +10131,431,32,54,3,3,2 +10132,431,4,15,6,6,0 +10133,431,27,13,7,7,0 +10134,431,25,4,9,9,0 +10135,431,50,0,12,12,0 +10136,431,21,9,8,8,0 +10137,431,45,0,11,11,0 +10138,431,51,0,10,10,0 +10139,431,18,0,13,13,0 +10140,431,3,25,4,4,1 +10141,431,34,24,5,5,1 +10142,431,52,0,16,16,0 +10143,431,49,0,14,14,0 +10144,431,53,0,15,15,0 +10145,431,26,0,17,17,0 +10146,432,1,83,1,1,6 +10147,432,6,77,2,2,2 +10148,432,32,63,3,3,3 +10149,432,4,16,6,6,0 +10150,432,27,13,7,7,0 +10151,432,25,4,9,9,0 +10152,432,50,0,12,12,0 +10153,432,21,9,8,8,0 +10154,432,45,0,11,11,0 +10155,432,51,0,10,10,0 +10156,432,18,0,13,13,0 +10157,432,3,34,4,4,1 +10158,432,34,26,5,5,1 +10159,432,52,0,16,16,0 +10160,432,49,0,14,14,0 +10161,432,53,0,15,15,0 +10162,432,26,0,17,17,0 +10163,433,1,86,1,1,6 +10164,433,6,77,2,2,2 +10165,433,32,71,3,3,3 +10166,433,4,16,6,6,0 +10167,433,27,13,7,7,0 +10168,433,25,4,9,9,0 +10169,433,50,0,12,12,0 +10170,433,21,10,8,8,0 +10171,433,45,0,11,11,0 +10172,433,51,0,10,10,0 +10173,433,18,0,13,13,0 +10174,433,3,47,4,4,2 +10175,433,34,26,5,5,1 +10176,433,52,0,16,16,0 +10177,433,49,0,14,14,0 +10178,433,53,0,15,15,0 +10179,433,26,0,17,17,0 +10180,434,1,90,1,1,6 +10181,434,6,80,2,2,2 +10182,434,32,71,3,3,3 +10183,434,4,16,6,6,0 +10184,434,27,13,8,8,0 +10185,434,25,4,9,9,0 +10186,434,50,0,12,12,0 +10187,434,21,13,7,7,0 +10188,434,45,0,11,11,0 +10189,434,51,0,10,10,0 +10190,434,18,0,13,13,0 +10191,434,3,62,4,4,3 +10192,434,34,26,5,5,1 +10193,434,52,0,16,16,0 +10194,434,49,0,14,14,0 +10195,434,53,0,15,15,0 +10196,434,26,0,17,17,0 +10197,435,1,90,1,1,6 +10198,435,6,82,2,2,2 +10199,435,32,71,4,4,3 +10200,435,4,16,7,7,0 +10201,435,27,23,6,6,0 +10202,435,25,7,9,9,0 +10203,435,50,0,13,13,0 +10204,435,21,14,8,8,0 +10205,435,45,0,10,10,0 +10206,435,51,0,12,12,0 +10207,435,18,0,11,11,0 +10208,435,3,71,3,3,4 +10209,435,34,26,5,5,1 +10210,435,52,0,16,16,0 +10211,435,49,0,14,14,0 +10212,435,53,0,15,15,0 +10213,435,26,0,17,17,0 +10214,436,1,9,1,1,1 +10215,436,3,6,2,2,0 +10216,436,32,4,3,3,0 +10217,436,51,3,4,4,0 +10218,436,4,2,5,5,0 +10219,436,21,1,6,6,0 +10220,436,50,0,7,7,0 +10221,436,27,0,8,8,0 +10222,436,34,0,9,9,0 +10223,436,6,0,10,10,0 +10224,436,45,0,11,11,0 +10225,436,53,0,12,12,0 +10226,436,52,0,13,13,0 +10227,437,1,24,1,1,2 +10228,437,3,6,2,2,0 +10229,437,32,4,5,5,0 +10230,437,51,6,4,4,0 +10231,437,4,6,3,3,0 +10232,437,21,1,7,7,0 +10233,437,50,0,9,9,0 +10234,437,27,2,6,6,0 +10235,437,34,0,13,13,0 +10236,437,6,0,11,11,0 +10237,437,45,0,15,15,0 +10238,437,53,1,8,8,0 +10239,437,52,0,10,10,0 +10240,437,25,0,12,12,0 +10241,437,54,0,14,14,0 +10242,438,1,24,1,1,2 +10243,438,3,9,4,4,0 +10244,438,32,6,5,5,0 +10245,438,51,6,6,6,0 +10246,438,4,12,3,3,0 +10247,438,21,1,9,9,0 +10248,438,50,0,10,10,0 +10249,438,27,2,7,7,0 +10250,438,34,0,12,12,0 +10251,438,6,13,2,2,1 +10252,438,45,0,15,15,0 +10253,438,53,2,8,8,0 +10254,438,52,0,11,11,0 +10255,438,25,0,13,13,0 +10256,438,54,0,14,14,0 +10288,440,3,10,5,5,0 +10287,440,1,42,1,1,4 +10286,439,54,0,14,14,0 +10285,439,25,0,13,13,0 +10282,439,45,0,15,15,0 +10278,439,50,0,11,11,0 +10277,439,21,3,7,7,0 +10276,439,4,15,3,3,0 +10273,439,3,9,5,5,0 +10279,439,27,3,8,8,0 +10280,439,34,0,12,12,0 +10281,439,6,19,2,2,1 +10284,439,52,0,10,10,0 +10275,439,51,6,6,6,0 +10283,439,53,2,9,9,0 +10274,439,32,10,4,4,0 +10272,439,1,33,1,1,3 +10289,440,32,16,4,4,0 +10290,440,51,6,6,6,0 +10291,440,4,21,3,3,0 +10292,440,21,3,7,7,0 +10293,440,50,0,11,11,0 +10294,440,27,3,8,8,0 +10295,440,34,0,12,12,0 +10296,440,6,22,2,2,1 +10297,440,45,0,13,13,0 +10298,440,53,2,9,9,0 +10299,440,52,0,10,10,0 +10300,440,25,0,14,14,0 +10301,440,54,0,15,15,0 +10302,441,1,46.5,1,1,5 +10303,441,3,11.5,5,5,0 +10304,441,32,17,4,4,0 +10305,441,51,6,6,6,0 +10306,441,4,21,3,3,0 +10307,441,21,3,8,8,0 +10308,441,50,0,12,12,0 +10309,441,27,3,9,9,0 +10310,441,34,0,13,13,0 +10311,441,6,24.5,2,2,1 +10312,441,45,0,10,10,0 +10313,441,53,5,7,7,0 +10314,441,52,0,11,11,0 +10315,441,25,0,15,15,0 +10316,441,54,0,14,14,0 +10317,442,1,56.5,1,1,5 +10318,442,3,11.5,5,5,0 +10319,442,32,21,4,4,0 +10320,442,51,6,7,7,0 +10321,442,4,21,3,3,0 +10322,442,21,3,9,9,0 +10323,442,50,0,13,13,0 +10324,442,27,3,10,10,0 +10325,442,34,9,6,6,1 +10326,442,6,26.5,2,2,1 +10327,442,45,0,11,11,0 +10328,442,53,5,8,8,0 +10329,442,52,0,12,12,0 +10330,442,25,0,15,15,0 +10331,442,54,0,14,14,0 +10332,443,1,59.5,1,1,5 +10333,443,3,13.5,6,6,0 +10334,443,32,27,2,2,0 +10335,443,51,6,7,7,0 +10336,443,4,21,5,5,0 +10337,443,21,3,9,9,0 +10338,443,50,0,13,13,0 +10339,443,27,3,10,10,0 +10340,443,34,22,4,4,2 +10341,443,6,26.5,3,3,1 +10342,443,45,0,11,11,0 +10343,443,53,5,8,8,0 +10344,443,52,0,12,12,0 +10345,443,25,0,15,15,0 +10346,443,54,0,14,14,0 +10347,444,1,59.5,1,1,5 +10348,444,3,25.5,4,4,1 +10349,444,32,32,3,3,0 +10350,444,51,6,7,7,0 +10351,444,4,21,6,6,0 +10352,444,21,3,9,9,0 +10353,444,50,0,14,14,0 +10354,444,27,3,10,10,0 +10355,444,34,22,5,5,2 +10356,444,6,32.5,2,2,1 +10357,444,45,2,11,11,0 +10358,444,53,5,8,8,0 +10359,444,52,0,12,12,0 +10360,444,25,0,15,15,0 +10361,444,54,0,13,13,0 +10362,445,1,68.5,1,1,6 +10363,445,3,25.5,5,5,1 +10364,445,32,35,3,3,0 +10365,445,51,6,8,8,0 +10366,445,4,27,4,4,0 +10367,445,21,3,9,9,0 +10368,445,50,0,14,14,0 +10369,445,27,3,10,10,0 +10370,445,34,22,6,6,2 +10371,445,6,35.5,2,2,1 +10372,445,45,2,11,11,0 +10373,445,53,9,7,7,0 +10374,445,52,0,12,12,0 +10375,445,25,0,15,15,0 +10376,445,54,0,13,13,0 +10377,446,1,83.5,1,1,7 +10378,446,3,25.5,5,5,1 +10379,446,32,38,2,2,0 +10380,446,51,6,8,8,0 +10381,446,4,33,4,4,0 +10382,446,21,3,9,9,0 +10383,446,50,0,14,14,0 +10384,446,27,3,10,10,0 +10385,446,34,22,6,6,2 +10386,446,6,36.5,3,3,1 +10387,446,45,2,11,11,0 +10388,446,53,9,7,7,0 +10389,446,52,0,12,12,0 +10390,446,25,0,15,15,0 +10391,446,54,0,13,13,0 +10392,447,1,92.5,1,1,8 +10393,447,3,25.5,6,6,1 +10394,447,32,38,3,3,0 +10395,447,51,6,8,8,0 +10396,447,4,33,4,4,0 +10397,447,21,6,9,9,0 +10398,447,50,0,14,14,0 +10399,447,27,3,10,10,0 +10400,447,34,31,5,5,2 +10401,447,6,40.5,2,2,1 +10402,447,45,2,11,11,0 +10403,447,53,9,7,7,0 +10404,447,52,0,12,12,0 +10405,447,25,0,15,15,0 +10406,447,54,0,13,13,0 +10407,448,1,107.5,1,1,9 +10408,448,3,25.5,6,6,1 +10409,448,32,45,2,2,0 +10410,448,51,6,8,8,0 +10411,448,4,34,4,4,0 +10412,448,21,6,9,9,0 +10413,448,50,0,14,14,0 +10414,448,27,3,10,10,0 +10415,448,34,33,5,5,2 +10416,448,6,40.5,3,3,1 +10417,448,45,2,11,11,0 +10418,448,53,9,7,7,0 +10419,448,52,0,12,12,0 +10420,448,25,0,15,15,0 +10421,448,54,0,13,13,0 +10452,450,1,128.5,1,1,11 +10451,449,54,0,12,12,0 +10449,449,52,0,13,13,0 +10448,449,53,12,7,7,0 +10446,449,6,46.5,2,2,1 +10444,449,27,3,10,10,0 +10441,449,4,34,4,4,0 +10440,449,51,10,8,8,0 +10438,449,3,25.5,6,6,1 +10443,449,50,0,14,14,0 +10450,449,25,0,15,15,0 +10445,449,34,33,5,5,2 +10447,449,45,2,11,11,0 +10442,449,21,6,9,9,0 +10437,449,1,116.5,1,1,10 +10439,449,32,45,3,3,0 +10453,450,3,25.5,6,6,1 +10454,450,32,45,3,3,0 +10455,450,51,11,8,8,0 +10456,450,4,34,5,5,0 +10457,450,21,6,9,9,0 +10458,450,50,0,14,14,0 +10459,450,27,3,10,10,0 +10460,450,34,37,4,4,2 +10461,450,6,54.5,2,2,1 +10462,450,45,2,11,11,0 +10463,450,53,12,7,7,0 +10464,450,52,0,13,13,0 +10465,450,25,0,15,15,0 +10466,450,54,0,12,12,0 +10467,451,1,143.5,1,1,12 +10468,451,3,25.5,6,6,1 +10469,451,32,47,3,3,0 +10470,451,51,11,8,8,0 +10471,451,4,34,5,5,0 +10472,451,21,6,9,9,0 +10473,451,50,0,14,14,0 +10474,451,27,3,10,10,0 +10475,451,34,38,4,4,2 +10476,451,6,57.5,2,2,1 +10477,451,45,2,11,11,0 +10478,451,53,16,7,7,0 +10479,451,52,0,13,13,0 +10480,451,25,0,15,15,0 +10481,451,54,0,12,12,0 +10482,452,34,9,1,1,1 +10483,452,1,4,2,2,0 +10484,452,3,3,3,3,0 +10485,452,6,2,4,4,0 +10486,452,21,1,5,5,0 +10487,452,4,0,6,6,0 +10488,452,53,0,7,7,0 +10489,452,25,0,8,8,0 +10490,452,32,0,9,9,0 +10491,452,55,0,10,10,0 +10492,452,50,0,11,11,0 +10493,452,54,0,12,12,0 +10494,452,27,0,13,13,0 +10495,452,51,0,14,14,0 +10496,452,45,0,15,15,0 +10497,453,34,9,2,2,1 +10498,453,1,19,1,1,1 +10499,453,3,6,4,4,0 +10500,453,6,6,3,3,0 +10501,453,21,3,5,5,0 +10502,453,4,0,7,7,0 +10503,453,53,0,10,10,0 +10504,453,25,0,9,9,0 +10505,453,32,0,11,11,0 +10506,453,55,1,6,6,0 +10507,453,50,0,12,12,0 +10508,453,54,0,13,13,0 +10509,453,27,0,8,8,0 +10510,453,51,0,14,14,0 +10511,453,45,0,15,15,0 +10512,454,34,15,2,2,1 +10513,454,1,19,1,1,1 +10514,454,3,9,5,5,0 +10515,454,6,9,4,4,0 +10516,454,21,3,6,6,0 +10517,454,4,13,3,3,1 +10518,454,53,0,10,10,0 +10519,454,25,0,9,9,0 +10520,454,32,0,11,11,0 +10521,454,55,1,7,7,0 +10522,454,50,0,13,13,0 +10523,454,54,0,14,14,0 +10524,454,27,0,8,8,0 +10525,454,51,0,12,12,0 +10526,454,45,0,15,15,0 +10527,455,34,15,4,4,1 +10528,455,1,21,2,2,1 +10529,455,3,12,5,5,0 +10530,455,6,22,1,1,1 +10531,455,21,4,6,6,0 +10532,455,4,19,3,3,1 +10533,455,53,0,10,10,0 +10534,455,25,0,9,9,0 +10535,455,32,0,13,13,0 +10536,455,55,1,7,7,0 +10537,455,50,0,14,14,0 +10538,455,54,0,12,12,0 +10539,455,27,0,8,8,0 +10540,455,51,0,11,11,0 +10541,455,45,0,15,15,0 +10542,456,34,21,3,3,1 +10543,456,1,21,4,4,1 +10544,456,3,21,5,5,1 +10545,456,6,25,1,1,1 +10546,456,21,4,6,6,0 +10547,456,4,23,2,2,1 +10548,456,53,0,11,11,0 +10549,456,25,2,7,7,0 +10550,456,32,0,13,13,0 +10551,456,55,1,9,9,0 +10552,456,50,0,14,14,0 +10553,456,54,0,12,12,0 +10554,456,27,0,10,10,0 +10555,456,51,1,8,8,0 +10556,456,45,0,15,15,0 +10557,457,34,24,3,3,1 +10558,457,1,21,5,5,1 +10559,457,3,24,4,4,1 +10560,457,6,31,2,2,1 +10561,457,21,4,6,6,0 +10562,457,4,36,1,1,2 +10563,457,53,0,10,10,0 +10564,457,25,2,7,7,0 +10565,457,32,0,12,12,0 +10566,457,55,1,8,8,0 +10567,457,50,0,14,14,0 +10568,457,54,0,13,13,0 +10569,457,27,0,11,11,0 +10570,457,51,1,9,9,0 +10571,457,45,0,15,15,0 +10572,458,34,27,4,4,1 +10573,458,1,25,5,5,1 +10574,458,3,32,2,2,1 +10575,458,6,31,3,3,1 +10576,458,21,4,7,7,0 +10577,458,4,36,1,1,2 +10578,458,53,0,11,11,0 +10579,458,25,11,6,6,1 +10580,458,32,1,8,8,0 +10581,458,55,1,9,9,0 +10582,458,50,0,14,14,0 +10583,458,54,0,13,13,0 +10584,458,27,0,12,12,0 +10585,458,51,1,10,10,0 +10586,458,45,0,15,15,0 +10587,459,34,27,4,4,1 +10588,459,1,26,5,5,1 +10589,459,3,35,3,3,1 +10590,459,6,44,2,2,2 +10591,459,21,4,7,7,0 +10592,459,4,44,1,1,2 +10593,459,53,0,11,11,0 +10594,459,25,11,6,6,1 +10595,459,32,1,8,8,0 +10596,459,55,1,10,10,0 +10597,459,50,0,14,14,0 +10598,459,54,0,13,13,0 +10599,459,27,0,12,12,0 +10600,459,51,1,9,9,0 +10601,459,45,0,15,15,0 +10602,460,34,33,4,4,1 +10603,460,1,27,5,5,1 +10604,460,3,35,3,3,1 +10605,460,6,50,2,2,2 +10606,460,21,4,8,8,0 +10607,460,4,53,1,1,3 +10608,460,53,0,11,11,0 +10609,460,25,11,6,6,1 +10610,460,32,4,7,7,0 +10611,460,55,1,10,10,0 +10612,460,50,0,14,14,0 +10613,460,54,0,13,13,0 +10614,460,27,0,12,12,0 +10615,460,51,1,9,9,0 +10616,460,45,0,15,15,0 +10617,460,52,0,16,16,0 +10618,461,34,37,3,3,1 +10619,461,1,29,5,5,1 +10620,461,3,36,4,4,1 +10621,461,6,59,1,1,3 +10622,461,21,4,9,9,0 +10623,461,4,56,2,2,3 +10624,461,53,0,11,11,0 +10625,461,25,11,6,6,1 +10626,461,32,4,8,8,0 +10627,461,55,1,10,10,0 +10628,461,50,0,14,14,0 +10629,461,54,0,13,13,0 +10630,461,27,0,12,12,0 +10631,461,51,7,7,7,0 +10632,461,45,0,15,15,0 +10633,461,52,0,16,16,0 +10634,462,34,41,3,3,1 +10635,462,1,30,5,5,1 +10636,462,3,36,4,4,1 +10637,462,6,65,2,2,3 +10638,462,21,4,9,9,0 +10639,462,4,68,1,1,4 +10640,462,53,0,12,12,0 +10641,462,25,11,6,6,1 +10642,462,32,6,8,8,0 +10643,462,55,1,10,10,0 +10644,462,50,0,16,16,0 +10645,462,54,0,13,13,0 +10646,462,27,0,11,11,0 +10647,462,51,7,7,7,0 +10648,462,45,0,14,14,0 +10649,462,52,0,15,15,0 +10650,463,34,41,3,3,1 +10651,463,1,34,5,5,1 +10652,463,3,36,4,4,1 +10653,463,6,80,1,1,4 +10654,463,21,4,9,9,0 +10655,463,4,68,2,2,4 +10656,463,53,3,10,10,0 +10657,463,25,12,6,6,1 +10658,463,32,6,8,8,0 +10659,463,55,1,11,11,0 +10660,463,50,0,16,16,0 +10661,463,54,0,14,14,0 +10662,463,27,0,12,12,0 +10663,463,51,9,7,7,0 +10664,463,45,0,15,15,0 +10665,463,52,0,13,13,0 +10666,464,34,50,3,3,2 +10667,464,1,34,5,5,1 +10668,464,3,36,4,4,1 +10669,464,6,89,1,1,4 +10670,464,21,4,10,10,0 +10671,464,4,72,2,2,4 +10672,464,53,4,9,9,0 +10673,464,25,12,6,6,1 +10674,464,32,8,8,8,0 +10675,464,55,1,11,11,0 +10676,464,50,0,16,16,0 +10677,464,54,0,14,14,0 +10678,464,27,0,12,12,0 +10679,464,51,9,7,7,0 +10680,464,45,0,15,15,0 +10681,464,52,0,13,13,0 +10714,466,34,72,3,3,4 +10713,465,52,0,13,13,0 +10712,465,45,0,15,15,0 +10710,465,27,0,12,12,0 +10709,465,54,0,14,14,0 +10707,465,55,1,11,11,0 +10706,465,32,12,8,8,0 +10705,465,25,12,6,6,1 +10704,465,53,7,9,9,0 +10701,465,6,89,1,1,4 +10699,465,1,34,5,5,1 +10711,465,51,12,7,7,0 +10708,465,50,0,16,16,0 +10702,465,21,4,10,10,0 +10703,465,4,78,2,2,4 +10698,465,34,59,3,3,3 +10700,465,3,36,4,4,1 +10715,466,1,34,5,5,1 +10716,466,3,38,4,4,1 +10717,466,6,89,1,1,4 +10718,466,21,4,10,10,0 +10719,466,4,79,2,2,4 +10720,466,53,10,9,9,0 +10721,466,25,12,7,7,1 +10722,466,32,12,8,8,0 +10723,466,55,1,11,11,0 +10724,466,50,0,16,16,0 +10725,466,54,0,14,14,0 +10726,466,27,0,12,12,0 +10727,466,51,18,6,6,0 +10728,466,45,0,15,15,0 +10729,466,52,0,13,13,0 +10730,467,4,13,1,1,1 +10731,467,3,8,2,2,0 +10732,467,1,4,3,3,0 +10733,467,25,0,4,4,0 +10734,467,32,0,5,5,0 +10735,467,54,0,6,6,0 +10736,467,51,0,7,7,0 +10737,467,37,0,8,8,0 +10738,467,55,0,9,9,0 +10739,467,56,0,10,10,0 +10740,467,6,0,11,11,0 +10741,467,27,0,12,12,0 +10742,467,53,0,13,13,0 +10743,467,34,0,14,14,0 +10744,467,45,0,15,15,0 +10745,467,21,0,16,16,0 +10746,467,57,0,17,17,0 +10747,468,4,22,1,1,2 +10748,468,3,8,3,3,0 +10749,468,1,10,2,2,0 +10750,468,25,3,5,5,0 +10751,468,32,4,4,4,0 +10752,468,54,2,6,6,0 +10753,468,51,0,11,11,0 +10754,468,37,0,8,8,0 +10755,468,55,0,12,12,0 +10756,468,56,0,13,13,0 +10757,468,6,1,7,7,0 +10758,468,27,0,15,15,0 +10759,468,53,0,16,16,0 +10760,468,34,0,14,14,0 +10761,468,45,0,9,9,0 +10762,468,21,0,10,10,0 +10763,468,57,0,17,17,0 +10764,469,4,22,1,1,2 +10765,469,3,14,3,3,0 +10766,469,1,20,2,2,1 +10767,469,25,6,5,5,0 +10768,469,32,6,4,4,0 +10769,469,54,2,7,7,0 +10770,469,51,0,12,12,0 +10771,469,37,0,9,9,0 +10772,469,55,0,13,13,0 +10773,469,56,0,14,14,0 +10774,469,6,1,8,8,0 +10775,469,27,0,15,15,0 +10776,469,53,0,17,17,0 +10777,469,34,4,6,6,0 +10778,469,45,0,10,10,0 +10779,469,21,0,11,11,0 +10780,469,57,0,16,16,0 +10781,470,4,22,1,1,2 +10782,470,3,14,4,4,0 +10783,470,1,20,2,2,1 +10784,470,25,10,5,5,0 +10785,470,32,6,6,6,0 +10786,470,54,4,8,8,0 +10787,470,51,0,12,12,0 +10788,470,37,0,10,10,0 +10789,470,55,0,13,13,0 +10790,470,56,0,14,14,0 +10791,470,6,16,3,3,1 +10792,470,27,0,16,16,0 +10793,470,53,0,15,15,0 +10794,470,34,4,7,7,0 +10795,470,45,3,9,9,0 +10796,470,21,0,11,11,0 +10797,470,57,0,17,17,0 +10798,471,4,22,2,2,2 +10799,471,3,20,3,3,0 +10800,471,1,29,1,1,2 +10801,471,25,10,5,5,0 +10802,471,32,9,6,6,0 +10803,471,54,4,9,9,0 +10804,471,51,0,14,14,0 +10805,471,37,0,13,13,0 +10806,471,55,0,15,15,0 +10807,471,56,1,11,11,0 +10808,471,6,16,4,4,1 +10809,471,27,4,8,8,0 +10810,471,53,0,16,16,0 +10811,471,34,6,7,7,0 +10812,471,45,3,10,10,0 +10813,471,21,0,12,12,0 +10814,471,57,0,17,17,0 +10815,472,4,22,2,2,2 +10816,472,3,21,4,4,0 +10817,472,1,29,1,1,2 +10818,472,25,10,7,7,0 +10819,472,32,14,6,6,0 +10820,472,54,4,10,10,0 +10821,472,51,4,9,9,0 +10822,472,37,0,14,14,0 +10823,472,55,0,15,15,0 +10824,472,56,1,12,12,0 +10825,472,6,22,3,3,1 +10826,472,27,4,8,8,0 +10827,472,53,0,16,16,0 +10828,472,34,15,5,5,1 +10829,472,45,3,11,11,0 +10830,472,21,0,13,13,0 +10831,472,57,0,17,17,0 +10832,473,4,22,4,4,2 +10833,473,3,26,3,3,0 +10834,473,1,38,1,1,3 +10835,473,25,10,8,8,0 +10836,473,32,14,6,6,0 +10837,473,54,4,10,10,0 +10838,473,51,4,9,9,0 +10839,473,37,0,13,13,0 +10840,473,55,0,15,15,0 +10841,473,56,1,12,12,0 +10842,473,6,26,2,2,1 +10843,473,27,11,7,7,0 +10844,473,53,0,16,16,0 +10845,473,34,15,5,5,1 +10846,473,45,3,11,11,0 +10847,473,21,0,14,14,0 +10848,473,57,0,17,17,0 +10849,474,4,22,5,5,2 +10850,474,3,26,4,4,0 +10851,474,1,42,1,1,3 +10852,474,25,10,8,8,0 +10853,474,32,17,6,6,0 +10854,474,54,4,10,10,0 +10855,474,51,5,9,9,0 +10856,474,37,0,14,14,0 +10857,474,55,0,15,15,0 +10858,474,56,1,13,13,0 +10859,474,6,26,3,3,1 +10860,474,27,11,7,7,0 +10861,474,53,0,16,16,0 +10862,474,34,30,2,2,2 +10863,474,45,3,11,11,0 +10864,474,21,2,12,12,0 +10865,474,57,0,17,17,0 +10866,475,4,22,5,5,2 +10867,475,3,32,4,4,0 +10868,475,1,45,1,1,3 +10869,475,25,10,8,8,0 +10870,475,32,17,6,6,0 +10871,475,54,4,10,10,0 +10872,475,51,5,9,9,0 +10873,475,37,0,14,14,0 +10874,475,55,0,15,15,0 +10875,475,56,1,13,13,0 +10876,475,6,35,3,3,2 +10877,475,27,11,7,7,0 +10878,475,53,0,16,16,0 +10879,475,34,36,2,2,2 +10880,475,45,3,11,11,0 +10881,475,21,3,12,12,0 +10882,475,57,0,17,17,0 +10883,476,4,23,5,5,2 +10884,476,3,34,4,4,0 +10885,476,1,54,1,1,4 +10886,476,25,10,8,8,0 +10887,476,32,20,6,6,0 +10888,476,54,4,10,10,0 +10889,476,51,5,9,9,0 +10890,476,37,0,14,14,0 +10891,476,55,0,15,15,0 +10892,476,56,1,13,13,0 +10893,476,6,45,2,2,2 +10894,476,27,11,7,7,0 +10895,476,53,0,16,16,0 +10896,476,34,36,3,3,2 +10897,476,45,3,11,11,0 +10898,476,21,3,12,12,0 +10899,476,57,0,17,17,0 +10900,477,4,38,3,3,3 +10901,477,3,36,5,5,0 +10902,477,1,54,1,1,4 +10903,477,25,11,8,8,0 +10904,477,32,20,6,6,0 +10905,477,54,4,10,10,0 +10906,477,51,5,9,9,0 +10907,477,37,0,14,14,0 +10908,477,55,0,15,15,0 +10909,477,56,1,13,13,0 +10910,477,6,52,2,2,2 +10911,477,27,11,7,7,0 +10912,477,53,0,16,16,0 +10913,477,34,36,4,4,2 +10914,477,45,3,11,11,0 +10915,477,21,3,12,12,0 +10916,477,57,0,17,17,0 +10917,478,4,44,3,3,3 +10918,478,3,40,4,4,0 +10919,478,1,54,2,2,4 +10920,478,25,14,7,7,0 +10921,478,32,20,6,6,0 +10922,478,54,4,10,10,0 +10923,478,51,7,9,9,0 +10924,478,37,0,14,14,0 +10925,478,55,0,17,17,0 +10926,478,56,1,13,13,0 +10927,478,6,61,1,1,3 +10928,478,27,11,8,8,0 +10929,478,53,0,16,16,0 +10930,478,34,36,5,5,2 +10931,478,45,3,12,12,0 +10932,478,21,4,11,11,0 +10933,478,57,0,15,15,0 +10934,479,4,44,4,4,3 +10935,479,3,46,3,3,0 +10936,479,1,56,2,2,4 +10937,479,25,14,8,8,0 +10938,479,32,29,6,6,1 +10939,479,54,4,11,11,0 +10940,479,51,7,9,9,0 +10941,479,37,0,14,14,0 +10942,479,55,0,17,17,0 +10943,479,56,1,13,13,0 +10944,479,6,64,1,1,3 +10945,479,27,15,7,7,0 +10946,479,53,0,16,16,0 +10947,479,34,36,5,5,2 +10948,479,45,3,12,12,0 +10949,479,21,5,10,10,0 +10950,479,57,0,15,15,0 +10951,480,4,50,4,4,3 +10952,480,3,55,3,3,1 +10953,480,1,60,2,2,4 +10954,480,25,14,8,8,0 +10955,480,32,30,6,6,1 +10956,480,54,4,11,11,0 +10957,480,51,7,9,9,0 +10958,480,37,0,14,14,0 +10959,480,55,0,17,17,0 +10960,480,56,1,13,13,0 +10961,480,6,64,1,1,3 +10962,480,27,15,7,7,0 +10963,480,53,0,16,16,0 +10964,480,34,41,5,5,2 +10965,480,45,3,12,12,0 +10966,480,21,5,10,10,0 +10967,480,57,0,15,15,0 +10968,481,4,59,3,3,4 +10969,481,3,55,4,4,1 +10970,481,1,63,2,2,4 +10971,481,25,16,8,8,0 +10972,481,32,30,6,6,1 +10973,481,54,4,11,11,0 +10974,481,51,7,9,9,0 +10975,481,37,0,14,14,0 +10976,481,55,0,17,17,0 +10977,481,56,1,13,13,0 +10978,481,6,74,1,1,3 +10979,481,27,16,7,7,0 +10980,481,53,0,16,16,0 +10981,481,34,41,5,5,2 +10982,481,45,3,12,12,0 +10983,481,21,5,10,10,0 +10984,481,57,0,15,15,0 +11035,482,57,0,15,15,0 +11029,482,6,74,1,1,3 +11037,483,34,4,2,2,0 +11036,483,3,15,1,1,1 +11034,482,21,5,10,10,0 +11033,482,45,3,12,12,0 +11032,482,34,41,5,5,2 +11031,482,53,0,16,16,0 +11030,482,27,20,8,8,0 +11028,482,56,1,13,13,0 +11026,482,37,0,14,14,0 +11027,482,55,0,17,17,0 +11024,482,54,4,11,11,0 +11025,482,51,7,9,9,0 +11023,482,32,30,6,6,1 +11022,482,25,25,7,7,1 +11019,482,4,62,3,3,4 +11020,482,3,58,4,4,1 +11021,482,1,69,2,2,4 +11038,483,51,3,3,3,0 +11039,483,25,2,4,4,0 +11040,483,55,1,5,5,0 +11041,483,56,0,6,6,0 +11042,483,4,0,7,7,0 +11043,483,57,0,8,8,0 +11044,483,6,0,9,9,0 +11045,483,27,0,10,10,0 +11046,483,54,0,11,11,0 +11047,483,21,0,12,12,0 +11048,483,45,0,13,13,0 +11049,483,32,0,14,14,0 +11050,483,1,0,15,15,0 +11051,483,37,0,16,16,0 +11052,484,3,30,1,1,2 +11053,484,34,4,2,2,0 +11054,484,51,3,5,5,0 +11055,484,25,2,7,7,0 +11056,484,55,1,9,9,0 +11057,484,56,0,10,10,0 +11058,484,4,0,11,11,0 +11059,484,57,3,4,4,0 +11060,484,6,0,13,13,0 +11061,484,27,1,8,8,0 +11062,484,54,0,14,14,0 +11063,484,21,4,3,3,0 +11064,484,45,0,15,15,0 +11065,484,32,2,6,6,0 +11066,484,1,0,12,12,0 +11067,484,37,0,16,16,0 +11068,485,3,39,1,1,2 +11069,485,34,13,2,2,1 +11070,485,51,3,5,5,0 +11071,485,25,2,8,8,0 +11072,485,55,1,10,10,0 +11073,485,56,0,11,11,0 +11074,485,4,6,3,3,0 +11075,485,57,3,6,6,0 +11076,485,6,0,14,14,0 +11077,485,27,1,9,9,0 +11078,485,54,0,13,13,0 +11079,485,21,4,4,4,0 +11080,485,45,0,15,15,0 +11081,485,32,3,7,7,0 +11082,485,1,0,12,12,0 +11083,485,37,0,16,16,0 +11084,486,3,43,1,1,2 +11085,486,34,25,2,2,2 +11086,486,51,3,5,5,0 +11087,486,25,2,9,9,0 +11088,486,55,1,12,12,0 +11089,486,56,0,13,13,0 +11090,486,4,6,4,4,0 +11091,486,57,3,6,6,0 +11092,486,6,2,8,8,0 +11093,486,27,1,10,10,0 +11094,486,54,0,14,14,0 +11095,486,21,10,3,3,0 +11096,486,45,0,16,16,0 +11097,486,32,3,7,7,0 +11098,486,1,1,11,11,0 +11099,486,37,0,15,15,0 +11100,486,53,0,17,17,0 +11101,487,3,52,1,1,3 +11102,487,34,25,2,2,2 +11103,487,51,3,8,8,0 +11104,487,25,3,10,10,0 +11105,487,55,1,12,12,0 +11106,487,56,0,13,13,0 +11107,487,4,6,6,6,0 +11108,487,57,3,9,9,0 +11109,487,6,5,7,7,0 +11110,487,27,7,5,5,0 +11111,487,54,0,14,14,0 +11112,487,21,10,3,3,0 +11113,487,45,0,15,15,0 +11114,487,32,9,4,4,0 +11115,487,1,1,11,11,0 +11116,487,37,0,16,16,0 +11117,487,53,0,17,17,0 +11118,488,3,58,1,1,3 +11119,488,34,25,2,2,2 +11120,488,51,3,10,10,0 +11121,488,25,5,8,8,0 +11122,488,55,1,12,12,0 +11123,488,56,0,13,13,0 +11124,488,4,6,7,7,0 +11125,488,57,4,9,9,0 +11126,488,6,17,3,3,1 +11127,488,27,11,4,4,0 +11128,488,54,0,14,14,0 +11129,488,21,10,5,5,0 +11130,488,45,0,15,15,0 +11131,488,32,9,6,6,0 +11132,488,1,1,11,11,0 +11133,488,37,0,16,16,0 +11134,488,53,0,17,17,0 +11135,489,3,61,1,1,3 +11136,489,34,25,3,3,2 +11137,489,51,3,11,11,0 +11138,489,25,5,9,9,0 +11139,489,55,1,12,12,0 +11140,489,56,0,13,13,0 +11141,489,4,6,7,7,0 +11142,489,57,4,10,10,0 +11143,489,6,26,2,2,2 +11144,489,27,17,4,4,0 +11145,489,54,0,14,14,0 +11146,489,21,10,6,6,0 +11147,489,45,0,15,15,0 +11148,489,32,12,5,5,0 +11149,489,1,5,8,8,0 +11150,489,37,0,16,16,0 +11151,489,53,0,17,17,0 +11152,490,3,61,1,1,3 +11153,490,34,29,2,2,2 +11154,490,51,3,11,11,0 +11155,490,25,5,9,9,0 +11156,490,55,1,12,12,0 +11157,490,56,0,13,13,0 +11158,490,4,18,4,4,1 +11159,490,57,4,10,10,0 +11160,490,6,28,3,3,2 +11161,490,27,17,5,5,0 +11162,490,54,0,14,14,0 +11163,490,21,10,8,8,0 +11164,490,45,0,15,15,0 +11165,490,32,13,6,6,0 +11166,490,1,11,7,7,0 +11167,490,37,0,16,16,0 +11168,490,53,0,17,17,0 +11169,491,3,67,1,1,3 +11170,491,34,31,2,2,2 +11171,491,51,3,11,11,0 +11172,491,25,8,9,9,0 +11173,491,55,1,12,12,0 +11174,491,56,0,14,14,0 +11175,491,4,18,6,6,1 +11176,491,57,4,10,10,0 +11177,491,6,28,3,3,2 +11178,491,27,21,4,4,0 +11179,491,54,1,13,13,0 +11180,491,21,10,8,8,0 +11181,491,45,0,16,16,0 +11182,491,32,13,7,7,0 +11183,491,1,20,5,5,1 +11184,491,37,0,15,15,0 +11185,491,53,0,17,17,0 +11220,493,3,72,1,1,3 +11219,492,53,0,17,17,0 +11218,492,37,0,15,15,0 +11217,492,1,21,6,6,1 +11215,492,45,0,16,16,0 +11213,492,54,1,13,13,0 +11212,492,27,25,4,4,0 +11211,492,6,28,3,3,2 +11210,492,57,4,10,10,0 +11205,492,51,3,11,11,0 +11216,492,32,13,7,7,0 +11214,492,21,10,8,8,0 +11206,492,25,10,9,9,0 +11207,492,55,1,12,12,0 +11208,492,56,0,14,14,0 +11209,492,4,24,5,5,1 +11204,492,34,43,2,2,3 +11203,492,3,67,1,1,3 +11221,493,34,47,2,2,3 +11222,493,51,3,11,11,0 +11223,493,25,10,9,9,0 +11224,493,55,1,12,12,0 +11225,493,56,0,14,14,0 +11226,493,4,30,4,4,1 +11227,493,57,4,10,10,0 +11228,493,6,28,5,5,2 +11229,493,27,34,3,3,1 +11230,493,54,1,13,13,0 +11231,493,21,10,8,8,0 +11232,493,45,0,16,16,0 +11233,493,32,13,7,7,0 +11234,493,1,22,6,6,1 +11235,493,37,0,15,15,0 +11236,493,53,0,17,17,0 +11237,494,3,76,1,1,3 +11238,494,34,56,2,2,3 +11239,494,51,3,11,11,0 +11240,494,25,10,9,9,0 +11241,494,55,1,12,12,0 +11242,494,56,0,14,14,0 +11243,494,4,39,3,3,2 +11244,494,57,5,10,10,0 +11245,494,6,28,5,5,2 +11246,494,27,34,4,4,1 +11247,494,54,1,13,13,0 +11248,494,21,10,8,8,0 +11249,494,45,0,16,16,0 +11250,494,32,15,7,7,0 +11251,494,1,22,6,6,1 +11252,494,37,0,15,15,0 +11253,494,53,0,17,17,0 +11254,495,3,86,1,1,3 +11255,495,34,57,2,2,3 +11256,495,51,3,11,11,0 +11257,495,25,10,9,9,0 +11258,495,55,1,12,12,0 +11259,495,56,0,14,14,0 +11260,495,4,48,3,3,3 +11261,495,57,5,10,10,0 +11262,495,6,30,5,5,2 +11263,495,27,34,4,4,1 +11264,495,54,1,13,13,0 +11265,495,21,10,8,8,0 +11266,495,45,0,16,16,0 +11267,495,32,18,7,7,0 +11268,495,1,22,6,6,1 +11269,495,37,0,15,15,0 +11270,495,53,0,17,17,0 +11271,496,3,86,1,1,3 +11272,496,34,59,2,2,3 +11273,496,51,6,10,10,0 +11274,496,25,10,9,9,0 +11275,496,55,1,12,12,0 +11276,496,56,0,15,15,0 +11277,496,4,48,3,3,3 +11278,496,57,5,11,11,0 +11279,496,6,34,5,5,2 +11280,496,27,43,4,4,2 +11281,496,54,1,13,13,0 +11282,496,21,10,8,8,0 +11283,496,45,0,16,16,0 +11284,496,32,19,7,7,0 +11285,496,1,28,6,6,1 +11286,496,37,0,14,14,0 +11287,496,53,0,17,17,0 +11288,497,3,95,1,1,4 +11289,497,34,61,2,2,3 +11290,497,51,10,9,9,0 +11291,497,25,10,10,10,0 +11292,497,55,1,12,12,0 +11293,497,56,0,15,15,0 +11294,497,4,54,3,3,3 +11295,497,57,5,11,11,0 +11296,497,6,34,5,5,2 +11297,497,27,44,4,4,2 +11298,497,54,1,13,13,0 +11299,497,21,10,8,8,0 +11300,497,45,0,16,16,0 +11301,497,32,22,7,7,0 +11302,497,1,28,6,6,1 +11303,497,37,0,14,14,0 +11304,497,53,0,17,17,0 +11305,498,3,9,1,1,1 +11306,498,34,6,2,2,0 +11307,498,56,4,3,3,0 +11308,498,25,3,4,4,0 +11309,498,51,2,5,5,0 +11310,498,1,1,6,6,0 +11311,498,6,0,7,7,0 +11312,498,57,0,8,8,0 +11313,498,27,0,9,9,0 +11314,498,21,0,10,10,0 +11315,498,54,0,11,11,0 +11316,498,32,0,12,12,0 +11317,498,4,0,13,13,0 +11318,498,58,0,14,14,0 +11319,498,45,0,15,15,0 +11320,499,3,13,1,1,1 +11321,499,34,6,3,3,0 +11322,499,56,4,5,5,0 +11323,499,25,3,6,6,0 +11324,499,51,2,9,9,0 +11325,499,1,3,8,8,0 +11326,499,6,0,12,12,0 +11327,499,57,0,13,13,0 +11328,499,27,3,7,7,0 +11329,499,21,1,10,10,0 +11330,499,54,0,11,11,0 +11331,499,32,6,4,4,0 +11332,499,4,9,2,2,1 +11333,499,58,0,14,14,0 +11334,499,45,0,15,15,0 +11335,500,3,15,2,2,1 +11336,500,34,9,4,4,0 +11337,500,56,4,6,6,0 +11338,500,25,3,7,7,0 +11339,500,51,2,9,9,0 +11340,500,1,3,8,8,0 +11341,500,6,0,14,14,0 +11342,500,57,0,12,12,0 +11343,500,27,13,3,3,0 +11344,500,21,2,10,10,0 +11345,500,54,0,11,11,0 +11346,500,32,6,5,5,0 +11347,500,4,18,1,1,2 +11348,500,58,0,13,13,0 +11349,500,45,0,15,15,0 +11350,501,3,15,3,3,1 +11351,501,34,18,2,2,1 +11352,501,56,8,6,6,0 +11353,501,25,3,9,9,0 +11354,501,51,2,10,10,0 +11355,501,1,6,8,8,0 +11356,501,6,2,11,11,0 +11357,501,57,0,13,13,0 +11358,501,27,14,4,4,0 +11359,501,21,8,5,5,0 +11360,501,54,0,12,12,0 +11361,501,32,6,7,7,0 +11362,501,4,18,1,1,2 +11363,501,58,0,14,14,0 +11364,501,45,0,15,15,0 +11365,502,3,25,1,1,1 +11366,502,34,18,4,4,1 +11367,502,56,8,6,6,0 +11368,502,25,5,9,9,0 +11369,502,51,2,11,11,0 +11370,502,1,6,8,8,0 +11371,502,6,3,10,10,0 +11372,502,57,0,13,13,0 +11373,502,27,23,2,2,1 +11374,502,21,8,5,5,0 +11375,502,54,0,12,12,0 +11376,502,32,6,7,7,0 +11377,502,4,21,3,3,2 +11378,502,58,0,14,14,0 +11379,502,45,0,15,15,0 +11380,503,3,34,1,1,2 +11381,503,34,22,3,3,1 +11382,503,56,9,6,6,0 +11383,503,25,5,9,9,0 +11384,503,51,2,11,11,0 +11385,503,1,6,8,8,0 +11386,503,6,5,10,10,0 +11387,503,57,0,13,13,0 +11388,503,27,29,2,2,1 +11389,503,21,11,5,5,0 +11390,503,54,0,12,12,0 +11391,503,32,6,7,7,0 +11392,503,4,21,4,4,2 +11393,503,58,0,14,14,0 +11394,503,45,0,15,15,0 +11395,504,3,44,1,1,3 +11396,504,34,25,3,3,1 +11397,504,56,9,6,6,0 +11398,504,25,5,9,9,0 +11399,504,51,2,11,11,0 +11400,504,1,6,8,8,0 +11401,504,6,5,10,10,0 +11402,504,57,0,13,13,0 +11403,504,27,39,2,2,1 +11404,504,21,11,5,5,0 +11405,504,54,0,12,12,0 +11406,504,32,6,7,7,0 +11407,504,4,23,4,4,2 +11408,504,58,0,14,14,0 +11409,504,45,0,15,15,0 +11410,505,3,57,1,1,4 +11411,505,34,31,3,3,1 +11412,505,56,9,7,7,0 +11413,505,25,10,6,6,0 +11414,505,51,2,11,11,0 +11415,505,1,7,8,8,0 +11416,505,6,5,10,10,0 +11417,505,57,0,13,13,0 +11418,505,27,39,2,2,1 +11419,505,21,11,5,5,0 +11420,505,54,0,12,12,0 +11421,505,32,6,9,9,0 +11422,505,4,23,4,4,2 +11423,505,58,0,14,14,0 +11424,505,45,0,15,15,0 +11425,506,3,67,1,1,4 +11426,506,34,34,3,3,1 +11427,506,56,9,7,7,0 +11428,506,25,10,6,6,0 +11429,506,51,4,11,11,0 +11430,506,1,7,8,8,0 +11431,506,6,6,10,10,0 +11432,506,57,0,13,13,0 +11433,506,27,48,2,2,2 +11434,506,21,11,5,5,0 +11435,506,54,0,12,12,0 +11436,506,32,6,9,9,0 +11437,506,4,23,4,4,2 +11438,506,58,0,14,14,0 +11439,506,45,0,15,15,0 +11440,507,3,77,1,1,4 +11441,507,34,36,3,3,1 +11442,507,56,9,7,7,0 +11443,507,25,10,6,6,0 +11444,507,51,4,11,11,0 +11445,507,1,7,9,9,0 +11446,507,6,6,10,10,0 +11447,507,57,0,13,13,0 +11448,507,27,51,2,2,2 +11449,507,21,11,5,5,0 +11450,507,54,0,12,12,0 +11451,507,32,7,8,8,0 +11452,507,4,32,4,4,3 +11453,507,58,0,14,14,0 +11454,507,45,0,15,15,0 +11455,508,3,80,1,1,4 +11456,508,34,45,3,3,2 +11457,508,56,9,7,7,0 +11458,508,25,12,5,5,0 +11459,508,51,4,11,11,0 +11460,508,1,8,8,8,0 +11461,508,6,6,10,10,0 +11462,508,57,0,13,13,0 +11463,508,27,55,2,2,2 +11464,508,21,11,6,6,0 +11465,508,54,0,12,12,0 +11466,508,32,7,9,9,0 +11467,508,4,38,4,4,3 +11468,508,58,0,14,14,0 +11469,508,45,0,15,15,0 +11470,509,3,90,1,1,4 +11471,509,34,54,3,3,3 +11472,509,56,11,7,7,0 +11473,509,25,12,5,5,0 +11474,509,51,4,11,11,0 +11475,509,1,8,9,9,0 +11476,509,6,6,10,10,0 +11477,509,57,0,13,13,0 +11478,509,27,56,2,2,2 +11479,509,21,11,6,6,0 +11480,509,54,0,12,12,0 +11481,509,32,10,8,8,0 +11482,509,4,38,4,4,3 +11483,509,58,0,15,15,0 +11484,509,45,0,14,14,0 +11485,510,3,105,1,1,5 +11486,510,34,55,3,3,3 +11487,510,56,11,7,7,0 +11488,510,25,12,5,5,0 +11489,510,51,4,11,11,0 +11490,510,1,11,8,8,0 +11491,510,6,8,10,10,0 +11492,510,57,0,13,13,0 +11493,510,27,60,2,2,2 +11494,510,21,11,6,6,0 +11495,510,54,0,12,12,0 +11496,510,32,10,9,9,0 +11497,510,4,38,4,4,3 +11498,510,58,0,15,15,0 +11499,510,45,0,14,14,0 +11500,511,3,120,1,1,6 +11501,511,34,55,3,3,3 +11502,511,56,11,8,8,0 +11503,511,25,12,6,6,0 +11504,511,51,4,11,11,0 +11505,511,1,11,9,9,0 +11506,511,6,8,10,10,0 +11507,511,57,0,13,13,0 +11508,511,27,66,2,2,2 +11509,511,21,11,7,7,0 +11510,511,54,0,12,12,0 +11511,511,32,14,5,5,0 +11512,511,4,38,4,4,3 +11513,511,58,0,15,15,0 +11514,511,45,0,14,14,0 +23987,512,3,0,7,7,0 +23985,512,6,0,9,9,0 +23983,512,25,0,11,11,0 +23995,512,54,0,15,15,0 +23994,512,60,0,14,14,0 +23993,512,27,12,1,1,1 +23992,512,32,8,2,2,0 +23991,512,1,4,3,3,0 +23990,512,56,1,4,4,0 +23989,512,58,0,5,5,0 +24010,513,60,0,15,15,0 +24009,513,54,0,13,13,0 +24008,513,27,27,1,1,2 +24004,513,58,0,8,8,0 +24003,513,21,0,7,7,0 +24002,513,3,0,9,9,0 +24001,513,57,0,11,11,0 +24000,513,6,3,5,5,0 +23999,513,59,0,12,12,0 +23998,513,25,3,4,4,0 +23997,513,4,0,10,10,0 +24025,514,60,0,15,15,0 +24024,514,54,0,14,14,0 +24023,514,27,27,1,1,2 +24022,514,32,17,3,3,0 +24021,514,1,4,5,5,0 +24020,514,56,1,7,7,0 +24019,514,58,0,9,9,0 +24018,514,21,0,8,8,0 +24017,514,3,0,11,11,0 +24016,514,57,0,13,13,0 +24015,514,6,18,2,2,1 +24014,514,59,0,10,10,0 +24013,514,25,7,4,4,0 +24012,514,4,0,12,12,0 +24011,514,204,1,6,6,0 +24040,515,60,0,15,15,0 +24039,515,54,0,14,14,0 +24038,515,27,29,2,2,2 +24035,515,56,1,8,8,0 +24034,515,58,0,9,9,0 +24033,515,21,0,10,10,0 +24032,515,3,4,6,6,0 +24031,515,57,0,13,13,0 +24029,515,59,0,11,11,0 +24028,515,25,8,4,4,0 +24027,515,4,0,12,12,0 +24026,515,204,1,7,7,0 +24055,516,60,0,15,15,0 +24054,516,54,0,14,14,0 +24053,516,27,38,1,1,3 +24052,516,32,30,3,3,0 +24051,516,1,4,5,5,0 +24050,516,56,1,8,8,0 +24048,516,21,0,10,10,0 +24047,516,3,4,6,6,0 +24045,516,6,36,2,2,2 +24044,516,59,0,11,11,0 +24042,516,4,0,12,12,0 +24041,516,204,1,7,7,0 +24073,517,51,0,15,15,0 +24072,517,61,0,17,17,0 +24071,517,60,0,16,16,0 +24070,517,54,0,11,11,0 +24069,517,27,44,2,2,3 +24068,517,32,33,3,3,0 +24067,517,1,5,5,5,0 +24066,517,56,1,9,9,0 +24065,517,58,0,10,10,0 +24064,517,21,2,7,7,0 +24063,517,3,4,6,6,0 +24061,517,6,45,1,1,3 +24060,517,59,0,12,12,0 +24058,517,4,0,13,13,0 +24057,517,204,1,8,8,0 +24090,518,51,0,15,15,0 +24089,518,61,0,17,17,0 +24088,518,60,0,16,16,0 +24087,518,54,0,11,11,0 +24086,518,27,46,2,2,3 +24085,518,32,37,3,3,0 +24084,518,1,8,6,6,0 +24083,518,56,1,9,9,0 +24082,518,58,0,10,10,0 +24081,518,21,3,7,7,0 +24080,518,3,10,5,5,0 +24078,518,6,54,1,1,4 +24077,518,59,0,12,12,0 +24075,518,4,0,13,13,0 +24074,518,204,1,8,8,0 +24107,519,61,0,17,17,0 +24106,519,51,0,15,15,0 +24105,519,60,0,16,16,0 +24104,519,54,0,13,13,0 +24103,519,27,46,2,2,3 +24102,519,32,37,3,3,0 +24101,519,1,8,7,7,0 +24100,519,56,1,10,10,0 +24099,519,58,0,11,11,0 +24098,519,21,3,8,8,0 +24096,519,57,0,14,14,0 +24095,519,6,60,1,1,4 +24093,519,25,17,4,4,0 +24091,519,204,1,9,9,0 +24124,520,61,0,17,17,0 +24123,520,51,0,15,15,0 +24122,520,60,0,16,16,0 +24121,520,54,0,13,13,0 +24120,520,27,47,2,2,3 +24119,520,32,37,3,3,0 +24118,520,1,11,7,7,0 +24116,520,58,0,11,11,0 +24115,520,21,3,8,8,0 +24113,520,57,0,14,14,0 +24112,520,6,62,1,1,4 +24110,520,25,21,5,5,0 +24108,520,204,1,9,9,0 +24131,521,3,38,3,3,2 +24133,521,58,0,11,11,0 +24141,521,61,0,17,17,0 +24140,521,51,0,15,15,0 +24139,521,60,0,16,16,0 +24138,521,54,0,13,13,0 +24137,521,27,51,2,2,3 +24136,521,32,37,4,4,0 +24135,521,1,13,7,7,0 +24134,521,56,1,10,10,0 +24132,521,21,4,8,8,0 +24130,521,57,0,14,14,0 +24158,522,51,0,15,15,0 +24157,522,61,0,17,17,0 +24156,522,54,0,13,13,0 +24155,522,60,0,16,16,0 +24154,522,204,1,9,9,0 +24153,522,4,20,6,6,1 +24152,522,25,21,5,5,0 +24151,522,59,0,12,12,0 +24150,522,6,74,1,1,4 +24149,522,57,0,14,14,0 +24148,522,3,49,3,3,3 +24147,522,21,4,8,8,0 +24146,522,58,0,11,11,0 +24145,522,56,1,10,10,0 +24144,522,1,13,7,7,0 +24143,522,32,37,4,4,0 +24142,522,27,55,2,2,3 +24175,523,51,0,15,15,0 +24174,523,61,0,17,17,0 +24173,523,54,0,13,13,0 +24172,523,60,0,16,16,0 +24171,523,204,4,9,9,0 +24170,523,4,20,6,6,1 +24169,523,25,21,5,5,0 +24168,523,59,0,12,12,0 +24167,523,6,80,1,1,4 +24165,523,3,58,3,3,4 +24164,523,21,5,8,8,0 +24162,523,56,1,10,10,0 +24160,523,32,37,4,4,0 +24193,524,62,0,18,18,0 +24192,524,51,0,15,15,0 +24191,524,61,0,17,17,0 +24190,524,54,0,13,13,0 +24189,524,60,0,16,16,0 +24188,524,204,7,8,8,0 +24187,524,4,20,6,6,1 +24186,524,25,22,5,5,0 +24185,524,59,0,12,12,0 +24184,524,6,95,1,1,5 +24183,524,57,0,14,14,0 +24182,524,3,62,2,2,4 +24180,524,58,0,11,11,0 +24178,524,1,13,7,7,0 +24212,525,182,0,12,12,0 +24211,525,62,0,17,17,0 +24210,525,51,0,16,16,0 +24209,525,61,0,19,19,0 +24208,525,54,0,14,14,0 +24207,525,60,0,18,18,0 +24206,525,204,7,8,8,0 +24205,525,4,20,6,6,1 +24204,525,25,24,5,5,0 +24203,525,59,0,13,13,0 +24202,525,6,104,1,1,5 +24201,525,57,0,15,15,0 +24200,525,3,75,2,2,5 +24199,525,21,5,9,9,0 +24197,525,56,1,10,10,0 +24231,526,182,0,13,13,0 +24230,526,62,0,17,17,0 +24229,526,51,0,16,16,0 +24228,526,61,0,19,19,0 +24227,526,54,2,11,11,0 +24226,526,60,0,18,18,0 +24225,526,204,7,8,8,0 +24224,526,4,26,6,6,1 +24223,526,25,28,5,5,0 +24222,526,59,0,14,14,0 +24221,526,6,113,1,1,6 +24220,526,57,0,15,15,0 +24219,526,3,75,2,2,5 +24217,526,58,3,10,10,0 +24215,526,1,15,7,7,0 +23446,527,64,0,16,16,0 +23445,527,55,0,15,15,0 +23444,527,60,0,14,14,0 +23443,527,57,0,13,13,0 +23442,527,32,9,1,1,1 +23441,527,34,6,2,2,0 +23440,527,25,4,3,3,0 +23439,527,1,3,4,4,0 +23438,527,6,0,5,5,0 +23437,527,56,0,6,6,0 +23436,527,59,0,7,7,0 +23435,527,54,0,8,8,0 +23434,527,58,0,9,9,0 +23433,527,27,0,10,10,0 +23432,527,63,0,11,11,0 +23431,527,3,0,12,12,0 +23463,528,64,0,17,17,0 +23462,528,55,0,16,16,0 +23461,528,60,0,15,15,0 +23460,528,57,0,14,14,0 +23459,528,21,0,11,11,0 +23458,528,32,12,1,1,1 +23457,528,34,10,2,2,0 +23456,528,25,5,5,5,0 +23455,528,1,3,6,6,0 +23454,528,6,9,3,3,1 +23453,528,56,6,4,4,0 +23452,528,59,0,10,10,0 +23451,528,54,0,8,8,0 +23450,528,58,2,7,7,0 +23449,528,27,0,9,9,0 +23448,528,63,0,13,13,0 +23447,528,3,0,12,12,0 +23501,530,65,0,19,19,0 +23482,529,65,0,19,19,0 +23481,529,64,0,18,18,0 +23480,529,57,0,14,14,0 +23479,529,60,0,15,15,0 +23478,529,4,0,16,16,0 +23477,529,55,0,17,17,0 +23476,529,21,0,11,11,0 +23475,529,32,21,1,1,2 +23474,529,34,14,2,2,0 +23473,529,25,11,3,3,0 +23472,529,1,3,6,6,0 +23471,529,6,9,4,4,1 +23470,529,56,6,5,5,0 +23469,529,59,0,12,12,0 +23468,529,54,0,10,10,0 +23467,529,58,2,9,9,0 +23466,529,27,2,8,8,0 +23465,529,63,0,13,13,0 +23464,529,3,3,7,7,0 +23500,530,64,0,18,18,0 +23499,530,57,0,15,15,0 +23498,530,60,0,16,16,0 +23497,530,4,0,14,14,0 +23496,530,55,0,17,17,0 +23495,530,21,1,10,10,0 +23494,530,32,27,1,1,2 +23493,530,34,14,4,4,0 +23492,530,25,15,3,3,0 +23491,530,1,3,7,7,0 +23490,530,6,18,2,2,2 +23489,530,56,6,5,5,0 +23488,530,59,0,12,12,0 +23487,530,54,0,11,11,0 +23486,530,58,2,9,9,0 +23485,530,27,4,6,6,0 +23484,530,63,0,13,13,0 +23483,530,3,3,8,8,0 +23520,531,65,0,19,19,0 +23519,531,64,0,18,18,0 +23518,531,57,0,15,15,0 +23517,531,60,0,16,16,0 +23516,531,4,0,13,13,0 +23515,531,55,0,17,17,0 +23514,531,21,2,11,11,0 +23513,531,32,27,1,1,2 +23512,531,34,20,3,3,0 +23511,531,25,24,2,2,1 +23510,531,1,3,8,8,0 +23509,531,6,18,4,4,2 +23508,531,56,6,5,5,0 +23507,531,59,4,6,6,0 +23506,531,54,0,12,12,0 +23505,531,58,2,10,10,0 +23504,531,27,4,7,7,0 +23503,531,63,0,14,14,0 +23502,531,3,3,9,9,0 +23539,532,64,0,19,19,0 +23538,532,65,0,13,13,0 +23537,532,57,0,16,16,0 +23536,532,60,0,17,17,0 +23535,532,4,0,14,14,0 +23534,532,55,0,18,18,0 +23533,532,21,2,11,11,0 +23532,532,32,36,1,1,3 +23531,532,34,20,4,4,0 +23530,532,25,25,2,2,1 +23529,532,1,3,8,8,0 +23528,532,6,22,3,3,2 +23527,532,56,6,5,5,0 +23526,532,59,4,7,7,0 +23525,532,54,0,12,12,0 +23524,532,58,2,10,10,0 +23523,532,27,6,6,6,0 +23522,532,63,0,15,15,0 +23521,532,3,3,9,9,0 +23558,533,64,0,19,19,0 +23557,533,65,0,14,14,0 +23556,533,57,0,16,16,0 +23555,533,60,0,17,17,0 +23554,533,4,0,15,15,0 +23553,533,55,0,18,18,0 +23552,533,21,2,11,11,0 +23551,533,32,45,1,1,4 +23550,533,34,22,4,4,0 +23549,533,25,25,2,2,1 +23548,533,1,4,8,8,0 +23547,533,6,22,3,3,2 +23546,533,56,6,7,7,0 +23545,533,59,7,6,6,0 +23544,533,54,0,12,12,0 +23543,533,58,2,10,10,0 +23542,533,27,10,5,5,0 +23541,533,63,0,13,13,0 +23540,533,3,3,9,9,0 +23577,534,64,0,19,19,0 +23576,534,65,0,14,14,0 +23575,534,57,0,16,16,0 +23574,534,60,0,17,17,0 +23573,534,4,0,15,15,0 +23572,534,55,0,18,18,0 +23571,534,21,8,6,6,0 +23570,534,32,49,1,1,4 +23569,534,34,31,2,2,1 +23568,534,25,25,3,3,1 +23567,534,1,7,9,9,0 +23566,534,6,22,4,4,2 +23565,534,56,7,7,7,0 +23564,534,59,7,8,8,0 +23563,534,54,0,12,12,0 +23562,534,58,4,10,10,0 +23561,534,27,10,5,5,0 +23560,534,63,0,13,13,0 +23559,534,3,3,11,11,0 +23596,535,64,0,19,19,0 +23595,535,65,0,14,14,0 +23594,535,57,0,16,16,0 +23593,535,60,0,17,17,0 +23592,535,4,0,15,15,0 +23591,535,55,0,18,18,0 +23590,535,21,8,7,7,0 +23589,535,32,58,1,1,5 +23588,535,34,34,2,2,1 +23587,535,25,25,3,3,1 +23586,535,1,11,5,5,0 +23585,535,6,22,4,4,2 +23584,535,56,7,9,9,0 +23583,535,59,8,8,8,0 +23582,535,54,0,12,12,0 +23581,535,58,4,11,11,0 +23580,535,27,10,6,6,0 +23579,535,63,0,13,13,0 +23578,535,3,5,10,10,0 +23615,536,64,0,19,19,0 +23614,536,65,0,14,14,0 +23613,536,57,0,16,16,0 +23612,536,60,0,17,17,0 +23611,536,4,0,15,15,0 +23610,536,55,0,18,18,0 +23609,536,21,8,7,7,0 +23608,536,32,58,1,1,5 +23607,536,34,40,2,2,1 +23606,536,25,28,4,4,1 +23605,536,1,12,5,5,0 +23604,536,6,31,3,3,3 +23603,536,56,7,9,9,0 +23602,536,59,8,8,8,0 +23601,536,54,0,12,12,0 +23600,536,58,6,10,10,0 +23599,536,27,10,6,6,0 +23598,536,63,0,13,13,0 +23597,536,3,5,11,11,0 +23634,537,64,0,19,19,0 +23633,537,65,0,14,14,0 +23632,537,57,0,16,16,0 +23631,537,60,0,17,17,0 +23630,537,4,0,15,15,0 +23629,537,55,0,18,18,0 +23628,537,21,8,9,9,0 +23627,537,32,67,1,1,6 +23626,537,34,40,2,2,1 +23625,537,25,30,4,4,1 +23624,537,1,12,7,7,0 +23623,537,6,31,3,3,3 +23622,537,56,10,8,8,0 +23621,537,59,14,5,5,0 +23620,537,54,0,12,12,0 +23619,537,58,6,10,10,0 +23618,537,27,14,6,6,0 +23617,537,63,0,13,13,0 +23616,537,3,5,11,11,0 +23672,539,64,0,19,19,0 +23653,538,64,0,19,19,0 +23652,538,65,0,14,14,0 +23651,538,57,0,16,16,0 +23650,538,60,0,17,17,0 +23649,538,4,0,15,15,0 +23648,538,55,0,18,18,0 +23647,538,21,8,9,9,0 +23646,538,32,76,1,1,7 +23645,538,34,40,2,2,1 +23644,538,25,36,3,3,1 +23643,538,1,12,8,8,0 +23642,538,6,35,4,4,3 +23641,538,56,13,7,7,0 +23640,538,59,14,6,6,0 +23639,538,54,0,13,13,0 +23638,538,58,6,10,10,0 +23637,538,27,16,5,5,0 +23636,538,63,1,12,12,0 +23635,538,3,5,11,11,0 +23671,539,65,0,14,14,0 +23670,539,57,0,16,16,0 +23669,539,60,0,17,17,0 +23668,539,4,0,15,15,0 +23667,539,55,0,18,18,0 +23666,539,21,8,9,9,0 +23665,539,32,85,1,1,8 +23664,539,34,44,2,2,1 +23663,539,25,36,4,4,1 +23662,539,1,12,8,8,0 +23661,539,6,36,3,3,3 +23660,539,56,15,6,6,0 +23659,539,59,14,7,7,0 +23658,539,54,0,13,13,0 +23657,539,58,6,10,10,0 +23656,539,27,16,5,5,0 +23655,539,63,1,12,12,0 +23654,539,3,5,11,11,0 +23691,540,64,0,19,19,0 +23690,540,65,0,14,14,0 +23689,540,57,0,15,15,0 +23688,540,60,0,17,17,0 +23687,540,4,0,16,16,0 +23686,540,55,0,18,18,0 +23685,540,21,8,9,9,0 +23684,540,32,86,1,1,8 +23683,540,34,53,2,2,2 +23682,540,25,36,4,4,1 +23681,540,1,14,8,8,0 +23680,540,6,40,3,3,3 +23679,540,56,15,6,6,0 +23678,540,59,14,7,7,0 +23677,540,54,0,13,13,0 +23676,540,58,6,10,10,0 +23675,540,27,19,5,5,0 +23674,540,63,1,12,12,0 +23673,540,3,5,11,11,0 +23710,541,64,0,19,19,0 +23709,541,65,0,16,16,0 +23708,541,57,0,15,15,0 +23707,541,60,0,17,17,0 +23706,541,4,3,12,12,0 +23705,541,55,0,18,18,0 +23704,541,21,8,10,10,0 +23703,541,32,86,1,1,8 +23702,541,34,53,2,2,2 +23701,541,25,36,4,4,1 +23700,541,1,15,8,8,0 +23699,541,6,49,3,3,4 +23698,541,56,17,7,7,0 +23697,541,59,18,6,6,0 +23696,541,54,0,14,14,0 +23695,541,58,6,11,11,0 +23694,541,27,19,5,5,0 +23693,541,63,1,13,13,0 +23692,541,3,11,9,9,0 +23729,542,64,0,19,19,0 +23728,542,65,0,16,16,0 +23727,542,57,1,14,14,0 +23726,542,60,0,17,17,0 +23725,542,4,3,12,12,0 +23724,542,55,0,18,18,0 +23723,542,21,11,10,10,0 +23722,542,32,86,1,1,8 +23721,542,34,53,3,3,2 +23720,542,25,38,4,4,1 +23719,542,1,15,8,8,0 +23718,542,6,58,2,2,5 +23717,542,56,17,7,7,0 +23716,542,59,24,5,5,0 +23715,542,54,0,15,15,0 +23714,542,58,6,11,11,0 +23713,542,27,19,6,6,0 +23712,542,63,1,13,13,0 +23711,542,3,11,9,9,0 +23157,543,1,0,12,12,0 +23156,543,25,0,11,11,0 +23155,543,27,0,10,10,0 +23154,543,59,9,1,1,1 +23153,543,34,6,2,2,0 +23152,543,6,4,3,3,0 +23151,543,56,3,4,4,0 +23150,543,32,2,5,5,0 +23149,543,57,1,6,6,0 +23148,543,63,0,7,7,0 +23147,543,37,0,8,8,0 +23146,543,58,0,9,9,0 +23170,544,66,0,13,13,0 +23169,544,1,6,4,4,0 +23168,544,27,0,11,11,0 +23167,544,25,0,12,12,0 +23166,544,59,9,2,2,1 +23165,544,34,6,3,3,0 +23164,544,6,13,1,1,1 +23163,544,56,6,5,5,0 +23162,544,32,4,6,6,0 +23161,544,57,1,8,8,0 +23160,544,63,0,9,9,0 +23159,544,37,0,10,10,0 +23158,544,58,1,7,7,0 +23183,545,66,0,12,12,0 +23182,545,1,9,3,3,0 +23181,545,27,0,13,13,0 +23180,545,25,4,6,6,0 +23179,545,59,15,2,2,1 +23178,545,34,7,4,4,0 +23177,545,6,22,1,1,2 +23176,545,56,6,5,5,0 +23175,545,32,4,7,7,0 +23174,545,57,1,8,8,0 +23173,545,63,0,10,10,0 +23172,545,37,0,11,11,0 +23171,545,58,1,9,9,0 +23197,546,66,0,14,14,0 +23196,546,67,1,10,10,0 +23195,546,1,9,4,4,0 +23194,546,27,0,12,12,0 +23193,546,25,7,7,7,0 +23192,546,59,19,2,2,1 +23191,546,34,7,6,6,0 +23190,546,6,28,1,1,2 +23189,546,56,8,5,5,0 +23188,546,32,13,3,3,1 +23187,546,57,1,8,8,0 +23186,546,63,0,11,11,0 +23185,546,37,0,13,13,0 +23184,546,58,1,9,9,0 +23213,547,68,0,16,16,0 +23212,547,64,0,15,15,0 +23211,547,66,0,14,14,0 +23210,547,67,1,10,10,0 +23209,547,1,12,4,4,0 +23208,547,27,0,12,12,0 +23207,547,25,7,7,7,0 +23206,547,59,23,2,2,1 +23205,547,34,8,5,5,0 +23204,547,6,34,1,1,2 +23203,547,56,8,6,6,0 +23202,547,32,22,3,3,2 +23201,547,57,1,8,8,0 +23200,547,63,0,11,11,0 +23199,547,37,0,13,13,0 +23198,547,58,1,9,9,0 +23229,548,68,0,16,16,0 +23228,548,64,0,14,14,0 +23227,548,66,0,15,15,0 +23226,548,67,1,10,10,0 +23225,548,1,15,4,4,0 +23224,548,27,0,12,12,0 +23223,548,25,7,7,7,0 +23222,548,59,32,2,2,2 +23221,548,34,8,5,5,0 +23220,548,6,40,1,1,2 +23219,548,56,8,6,6,0 +23218,548,32,24,3,3,2 +23217,548,57,1,9,9,0 +23216,548,63,0,11,11,0 +23215,548,37,0,13,13,0 +23214,548,58,2,8,8,0 +23245,549,66,0,16,16,0 +23244,549,64,0,13,13,0 +23243,549,68,0,15,15,0 +23242,549,67,1,11,11,0 +23241,549,1,15,4,4,0 +23240,549,27,0,12,12,0 +23239,549,25,11,5,5,0 +23238,549,59,32,3,3,2 +23237,549,34,9,6,6,0 +23236,549,6,46,1,1,2 +23235,549,56,8,7,7,0 +23234,549,32,33,2,2,3 +23233,549,57,1,10,10,0 +23232,549,63,3,9,9,0 +23231,549,37,0,14,14,0 +23230,549,58,4,8,8,0 +23261,550,66,0,16,16,0 +23260,550,64,0,13,13,0 +23259,550,68,0,15,15,0 +23258,550,67,1,12,12,0 +23257,550,1,21,4,4,0 +23256,550,27,9,7,7,1 +23255,550,25,14,5,5,0 +23254,550,59,32,3,3,2 +23253,550,34,11,6,6,0 +23252,550,6,50,1,1,2 +23251,550,56,8,8,8,0 +23250,550,32,34,2,2,3 +23249,550,57,1,11,11,0 +23248,550,63,3,10,10,0 +23247,550,37,0,14,14,0 +23246,550,58,4,9,9,0 +23277,551,66,0,16,16,0 +23276,551,64,0,13,13,0 +23275,551,68,0,15,15,0 +23274,551,67,1,12,12,0 +23273,551,1,25,4,4,0 +23272,551,27,9,7,7,1 +23271,551,25,14,6,6,0 +23270,551,59,32,3,3,2 +23269,551,34,17,5,5,0 +23268,551,6,50,1,1,2 +23267,551,56,8,8,8,0 +23266,551,32,43,2,2,4 +23265,551,57,1,11,11,0 +23264,551,63,3,10,10,0 +23263,551,37,0,14,14,0 +23262,551,58,4,9,9,0 +23295,552,69,0,18,18,0 +23294,552,66,0,16,16,0 +23293,552,4,0,17,17,0 +23292,552,64,0,13,13,0 +23291,552,68,0,15,15,0 +23290,552,67,1,12,12,0 +23289,552,1,34,3,3,1 +23288,552,27,10,7,7,1 +23287,552,25,14,6,6,0 +23286,552,59,32,4,4,2 +23285,552,34,19,5,5,0 +23284,552,6,56,1,1,2 +23283,552,56,8,8,8,0 +23282,552,32,47,2,2,4 +23281,552,57,1,11,11,0 +23280,552,63,3,10,10,0 +23279,552,37,0,14,14,0 +23278,552,58,4,9,9,0 +23313,553,69,0,18,18,0 +23312,553,66,0,16,16,0 +23311,553,4,0,17,17,0 +23310,553,64,0,14,14,0 +23309,553,68,0,15,15,0 +23308,553,67,1,12,12,0 +23307,553,1,34,4,4,1 +23306,553,27,10,7,7,1 +23305,553,25,14,6,6,0 +23304,553,59,38,3,3,2 +23303,553,34,23,5,5,0 +23302,553,6,65,1,1,3 +23301,553,56,8,8,8,0 +23300,553,32,47,2,2,4 +23299,553,57,2,11,11,0 +23298,553,63,5,9,9,0 +23297,553,37,0,13,13,0 +23296,553,58,4,10,10,0 +23331,554,69,0,18,18,0 +23330,554,66,0,16,16,0 +23329,554,4,0,17,17,0 +23328,554,64,0,13,13,0 +23327,554,68,0,15,15,0 +23326,554,67,1,12,12,0 +23325,554,1,35,4,4,1 +23324,554,27,10,8,8,1 +23323,554,25,16,6,6,0 +23322,554,59,38,3,3,2 +23321,554,34,27,5,5,0 +23320,554,6,71,1,1,3 +23319,554,56,8,9,9,0 +23318,554,32,47,2,2,4 +23317,554,57,2,11,11,0 +23316,554,63,5,10,10,0 +23315,554,37,0,14,14,0 +23314,554,58,13,7,7,1 +23349,555,69,0,18,18,0 +23348,555,66,0,16,16,0 +23347,555,4,0,17,17,0 +23346,555,64,0,13,13,0 +23345,555,68,0,15,15,0 +23344,555,67,1,12,12,0 +23343,555,1,35,4,4,1 +23342,555,27,16,6,6,1 +23341,555,25,16,7,7,0 +23340,555,59,42,3,3,2 +23339,555,34,27,5,5,0 +23338,555,6,80,1,1,4 +23337,555,56,11,9,9,0 +23336,555,32,47,2,2,4 +23335,555,57,4,11,11,0 +23334,555,63,5,10,10,0 +23333,555,37,0,14,14,0 +23332,555,58,13,8,8,1 +23369,556,71,0,19,19,0 +23368,556,70,0,18,18,0 +23367,556,69,0,20,20,0 +23366,556,66,0,16,16,0 +23365,556,4,0,17,17,0 +23364,556,64,0,14,14,0 +23363,556,68,0,15,15,0 +23362,556,67,1,12,12,0 +23361,556,1,38,4,4,1 +23360,556,27,16,8,8,1 +23359,556,25,17,7,7,0 +23358,556,59,42,3,3,2 +23357,556,34,27,5,5,0 +23356,556,6,86,1,1,4 +23355,556,56,11,9,9,0 +23354,556,32,56,2,2,5 +23353,556,57,6,10,10,0 +23352,556,63,5,11,11,0 +23351,556,37,0,13,13,0 +23389,557,71,0,19,19,0 +23388,557,70,0,18,18,0 +23387,557,69,0,20,20,0 +23386,557,66,0,16,16,0 +23385,557,4,0,17,17,0 +23384,557,64,0,13,13,0 +23383,557,68,0,15,15,0 +23382,557,67,1,12,12,0 +23381,557,1,47,3,3,2 +23380,557,27,16,8,8,1 +23379,557,25,17,7,7,0 +23378,557,59,46,4,4,2 +23377,557,34,27,5,5,0 +23376,557,6,89,1,1,4 +23375,557,56,11,9,9,0 +23374,557,32,62,2,2,5 +23373,557,57,8,10,10,0 +23372,557,63,5,11,11,0 +23371,557,37,0,14,14,0 +23370,557,58,17,6,6,1 +23409,558,71,0,19,19,0 +23408,558,70,0,18,18,0 +23407,558,69,0,20,20,0 +23406,558,66,0,16,16,0 +23405,558,4,0,17,17,0 +23404,558,64,0,14,14,0 +23403,558,68,0,15,15,0 +23402,558,67,1,12,12,0 +23401,558,1,51,4,4,2 +23400,558,27,16,8,8,1 +23399,558,25,23,6,6,0 +23398,558,59,55,3,3,3 +23397,558,34,27,5,5,0 +23396,558,6,89,1,1,4 +23395,558,56,11,9,9,0 +23394,558,32,62,2,2,5 +23393,558,57,10,10,10,0 +23392,558,63,6,11,11,0 +23391,558,37,0,13,13,0 +23390,558,58,20,7,7,1 +23430,559,72,0,15,15,0 +23429,559,71,0,20,20,0 +23428,559,70,0,19,19,0 +23427,559,69,0,21,21,0 +23426,559,66,0,17,17,0 +23425,559,4,0,18,18,0 +23424,559,64,0,14,14,0 +23423,559,68,0,16,16,0 +23422,559,67,1,12,12,0 +23421,559,1,60,3,3,3 +23420,559,27,18,8,8,1 +23419,559,25,27,6,6,0 +23418,559,59,55,4,4,3 +23417,559,34,27,5,5,0 +23416,559,6,95,1,1,4 +23415,559,56,11,9,9,0 +23414,559,32,62,2,2,5 +23413,559,57,10,10,10,0 +23412,559,63,6,11,11,0 +23411,559,37,0,13,13,0 +23410,559,58,23,7,7,1 +23350,556,58,17,6,6,1 +22861,560,67,0,12,12,0 +22860,560,32,0,11,11,0 +22859,560,27,0,10,10,0 +22858,560,56,0,9,9,0 +22857,560,204,0,8,8,0 +22856,560,3,0,7,7,0 +22855,560,59,0,6,6,0 +22854,560,1,1,5,5,0 +22853,560,37,3,4,4,0 +22852,560,58,4,3,3,0 +22851,560,25,6,2,2,0 +22850,560,6,9,1,1,1 +22878,561,57,0,14,14,0 +22877,561,63,0,13,13,0 +22876,561,73,1,7,7,0 +22875,561,66,0,17,17,0 +22874,561,67,2,6,6,0 +22873,561,32,0,11,11,0 +22872,561,27,0,16,16,0 +22871,561,56,0,12,12,0 +22870,561,204,0,10,10,0 +22869,561,3,0,9,9,0 +22868,561,59,0,8,8,0 +22867,561,1,7,3,3,0 +22866,561,37,3,5,5,0 +22865,561,58,4,4,4,0 +22864,561,25,9,2,2,0 +22863,561,6,18,1,1,2 +22895,562,57,0,11,11,0 +22894,562,63,0,15,15,0 +22893,562,73,1,9,9,0 +22892,562,66,0,17,17,0 +22891,562,67,2,7,7,0 +22890,562,32,0,14,14,0 +22889,562,27,3,6,6,0 +22888,562,56,1,8,8,0 +22887,562,204,0,12,12,0 +22886,562,3,0,13,13,0 +22885,562,59,0,10,10,0 +22884,562,1,9,3,3,0 +22883,562,37,3,5,5,0 +22882,562,58,4,4,4,0 +22881,562,25,13,2,2,0 +22880,562,6,27,1,1,3 +22913,563,66,0,18,18,0 +22912,563,70,0,16,16,0 +22911,563,27,3,8,8,0 +22910,563,56,1,11,11,0 +22909,563,57,2,9,9,0 +22908,563,67,2,10,10,0 +22907,563,73,1,12,12,0 +22906,563,32,4,5,5,0 +22905,563,63,0,14,14,0 +22904,563,6,33,1,1,3 +22903,563,25,13,3,3,0 +22902,563,58,4,4,4,0 +22901,563,37,3,7,7,0 +22900,563,1,18,2,2,1 +22899,563,59,0,13,13,0 +22898,563,3,0,15,15,0 +22897,563,204,3,6,6,0 +22932,564,182,0,17,17,0 +22931,564,70,0,15,15,0 +22930,564,27,7,4,4,0 +22929,564,56,1,12,12,0 +22928,564,57,2,10,10,0 +22927,564,67,2,9,9,0 +22926,564,73,1,13,13,0 +22925,564,32,4,6,6,0 +22924,564,63,2,11,11,0 +22923,564,6,42,1,1,4 +22922,564,25,16,3,3,0 +22921,564,58,4,5,5,0 +22920,564,37,3,8,8,0 +22919,564,1,19,2,2,1 +22918,564,59,0,14,14,0 +22917,564,3,0,16,16,0 +22916,564,204,3,7,7,0 +22951,565,182,0,17,17,0 +22950,565,70,0,15,15,0 +22949,565,27,7,4,4,0 +22948,565,56,2,12,12,0 +22947,565,57,2,10,10,0 +22946,565,67,2,9,9,0 +22945,565,73,1,13,13,0 +22944,565,32,4,7,7,0 +22943,565,63,2,11,11,0 +22942,565,6,51,1,1,5 +22941,565,25,22,2,2,0 +22940,565,58,4,6,6,0 +22939,565,37,6,5,5,0 +22938,565,1,21,3,3,1 +22937,565,59,0,14,14,0 +22936,565,3,0,16,16,0 +22935,565,204,3,8,8,0 +22970,566,182,0,17,17,0 +22969,566,70,0,15,15,0 +22968,566,27,10,4,4,0 +22967,566,56,2,12,12,0 +22966,566,57,2,10,10,0 +22965,566,67,2,9,9,0 +22964,566,73,1,13,13,0 +22963,566,32,4,7,7,0 +22962,566,63,2,11,11,0 +22961,566,6,55,1,1,5 +22960,566,25,31,2,2,1 +22959,566,58,4,6,6,0 +22958,566,37,6,5,5,0 +22957,566,1,23,3,3,1 +22956,566,59,0,14,14,0 +22955,566,3,0,16,16,0 +22954,566,204,3,8,8,0 +22989,567,64,0,18,18,0 +22988,567,57,2,10,10,0 +22987,567,63,2,11,11,0 +22986,567,73,1,13,13,0 +22985,567,66,0,19,19,0 +22984,567,67,6,5,5,0 +22983,567,32,6,6,6,0 +22982,567,27,10,4,4,0 +22981,567,56,2,12,12,0 +22980,567,204,6,7,7,0 +22979,567,3,0,16,16,0 +22978,567,59,0,14,14,0 +22977,567,1,31,3,3,2 +22976,567,37,6,8,8,0 +22975,567,58,4,9,9,0 +22974,567,25,37,2,2,1 +22973,567,6,55,1,1,5 +23008,568,64,0,15,15,0 +23007,568,57,2,12,12,0 +23006,568,63,4,10,10,0 +23005,568,73,1,13,13,0 +23004,568,66,0,19,19,0 +23003,568,67,10,4,4,0 +23002,568,32,6,7,7,0 +23001,568,27,10,5,5,0 +23000,568,56,3,11,11,0 +22999,568,204,6,8,8,0 +22998,568,3,0,17,17,0 +22997,568,59,0,14,14,0 +22996,568,1,31,3,3,2 +22995,568,37,6,9,9,0 +22994,568,58,7,6,6,0 +22993,568,25,43,2,2,1 +22992,568,6,64,1,1,6 +23027,569,182,0,18,18,0 +23026,569,70,0,16,16,0 +23025,569,27,10,5,5,0 +23024,569,56,3,11,11,0 +23023,569,57,2,12,12,0 +23022,569,67,10,4,4,0 +23021,569,73,1,13,13,0 +23020,569,32,8,7,7,0 +23019,569,63,4,10,10,0 +23018,569,6,64,1,1,6 +23017,569,25,49,2,2,1 +23016,569,58,7,8,8,0 +23015,569,37,6,9,9,0 +23014,569,1,40,3,3,3 +23013,569,59,0,14,14,0 +23012,569,3,0,17,17,0 +23011,569,204,9,6,6,0 +23046,570,182,0,18,18,0 +23045,570,70,0,16,16,0 +23044,570,27,16,5,5,0 +23043,570,56,3,11,11,0 +23042,570,57,2,12,12,0 +23041,570,67,19,4,4,1 +23040,570,73,1,13,13,0 +23039,570,32,12,6,6,0 +23038,570,63,4,10,10,0 +23037,570,6,64,1,1,6 +23036,570,25,49,2,2,1 +23035,570,58,7,8,8,0 +23034,570,37,7,9,9,0 +23033,570,1,43,3,3,3 +23032,570,59,0,14,14,0 +23031,570,3,0,17,17,0 +23030,570,204,9,7,7,0 +23065,571,182,0,18,18,0 +23064,571,70,0,16,16,0 +23063,571,27,16,5,5,0 +23062,571,56,3,11,11,0 +23061,571,57,2,12,12,0 +23060,571,67,19,4,4,1 +23059,571,73,1,13,13,0 +23058,571,32,16,6,6,0 +23057,571,63,4,10,10,0 +23056,571,6,70,1,1,6 +23055,571,25,51,3,3,1 +23054,571,58,10,7,7,0 +23053,571,37,8,9,9,0 +23052,571,1,52,2,2,4 +23051,571,59,0,14,14,0 +23050,571,3,0,17,17,0 +23049,571,204,9,8,8,0 +23084,572,182,0,18,18,0 +23083,572,70,0,16,16,0 +23082,572,27,20,4,4,0 +23081,572,56,3,11,11,0 +23080,572,57,2,12,12,0 +23079,572,67,19,5,5,1 +23078,572,73,1,13,13,0 +23077,572,32,16,7,7,0 +23076,572,63,4,10,10,0 +23075,572,6,76,1,1,6 +23074,572,25,53,2,2,1 +23073,572,58,10,8,8,0 +23072,572,37,17,6,6,1 +23071,572,1,52,3,3,4 +23070,572,59,0,14,14,0 +23069,572,3,0,17,17,0 +23068,572,204,9,9,9,0 +23103,573,182,0,18,18,0 +23102,573,70,0,16,16,0 +23101,573,27,20,4,4,0 +23100,573,56,3,11,11,0 +23099,573,57,2,12,12,0 +23098,573,67,19,6,6,1 +23097,573,73,1,13,13,0 +23096,573,32,20,5,5,0 +23095,573,63,4,10,10,0 +23094,573,6,77,1,1,6 +23093,573,25,59,3,3,1 +23092,573,58,10,8,8,0 +23091,573,37,17,7,7,1 +23090,573,1,61,2,2,5 +23089,573,59,0,14,14,0 +23088,573,3,0,17,17,0 +23087,573,204,9,9,9,0 +23122,574,182,0,18,18,0 +23121,574,70,0,16,16,0 +23120,574,27,20,5,5,0 +23119,574,56,3,11,11,0 +23118,574,57,2,12,12,0 +23117,574,67,20,4,4,1 +23116,574,73,1,13,13,0 +23115,574,32,20,6,6,0 +23114,574,63,4,10,10,0 +23113,574,6,81,1,1,6 +23112,574,25,65,3,3,1 +23111,574,58,10,8,8,0 +23110,574,37,19,7,7,1 +23109,574,1,70,2,2,6 +23108,574,59,0,14,14,0 +23107,574,3,0,17,17,0 +23106,574,204,9,9,9,0 +23143,575,72,0,18,18,0 +23142,575,64,0,14,14,0 +23141,575,182,0,19,19,0 +23140,575,70,0,16,16,0 +23139,575,27,20,6,6,0 +23138,575,56,3,11,11,0 +23137,575,57,2,12,12,0 +23136,575,67,20,5,5,1 +23135,575,73,1,13,13,0 +23134,575,32,29,4,4,1 +23133,575,63,7,10,10,0 +23132,575,6,83,1,1,6 +23131,575,25,71,3,3,1 +23130,575,58,10,8,8,0 +23129,575,37,19,7,7,1 +23128,575,1,74,2,2,6 +23127,575,59,0,15,15,0 +23126,575,3,0,17,17,0 +23125,575,204,9,9,9,0 +22465,576,56,0,14,14,0 +22464,576,66,0,13,13,0 +22463,576,73,0,12,12,0 +22462,576,3,0,11,11,0 +22461,576,1,9,1,1,1 +22460,576,64,6,2,2,0 +22459,576,34,4,3,3,0 +22458,576,6,3,4,4,0 +22457,576,25,2,5,5,0 +22456,576,67,0,6,6,0 +22455,576,32,0,7,7,0 +22454,576,37,0,8,8,0 +22453,576,26,0,9,9,0 +22452,576,202,0,10,10,0 +22480,577,66,0,15,15,0 +22479,577,73,0,6,6,0 +22478,577,63,0,11,11,0 +22477,577,3,0,12,12,0 +22476,577,56,0,14,14,0 +22475,577,1,15,1,1,1 +22474,577,64,7,3,3,0 +22473,577,34,13,2,2,1 +22472,577,6,6,4,4,0 +22471,577,25,2,5,5,0 +22470,577,67,0,7,7,0 +22469,577,32,0,8,8,0 +22468,577,37,0,9,9,0 +22467,577,26,0,10,10,0 +22466,577,202,0,13,13,0 +22496,578,75,0,8,8,0 +22495,578,66,0,16,16,0 +22494,578,73,0,7,7,0 +22493,578,63,0,13,13,0 +22492,578,3,0,14,14,0 +22491,578,56,0,15,15,0 +22490,578,1,16,2,2,1 +22489,578,64,7,5,5,0 +22488,578,34,19,1,1,1 +22487,578,6,8,4,4,0 +22486,578,25,11,3,3,1 +22485,578,67,0,6,6,0 +22484,578,32,0,9,9,0 +22483,578,37,0,11,11,0 +22482,578,26,0,12,12,0 +22481,578,202,0,10,10,0 +22513,579,57,0,17,17,0 +22512,579,75,0,12,12,0 +22511,579,66,0,16,16,0 +22510,579,73,0,11,11,0 +22509,579,63,0,13,13,0 +22508,579,3,0,10,10,0 +22507,579,56,0,15,15,0 +22506,579,1,20.5,2,2,2 +22505,579,64,7,5,5,0 +22504,579,34,21,1,1,1 +22503,579,6,8,4,4,0 +22502,579,25,11,3,3,1 +22501,579,67,0,9,9,0 +22500,579,32,3,6,6,0 +22499,579,37,1,8,8,0 +22498,579,26,0,14,14,0 +22497,579,202,1.5,7,7,0 +22530,580,57,0,17,17,0 +22529,580,75,0,12,12,0 +22528,580,66,0,16,16,0 +22527,580,73,0,11,11,0 +22526,580,63,0,13,13,0 +22525,580,3,0,10,10,0 +22524,580,56,0,15,15,0 +22523,580,1,26.5,1,1,2 +22522,580,64,7,5,5,0 +22521,580,34,25,2,2,1 +22520,580,6,17,3,3,1 +22519,580,25,13,4,4,1 +22518,580,67,0,9,9,0 +22517,580,32,6,6,6,0 +22516,580,37,1,8,8,0 +22515,580,26,0,14,14,0 +22514,580,202,1.5,7,7,0 +22547,581,57,0,17,17,0 +22546,581,75,0,12,12,0 +22545,581,66,0,14,14,0 +22544,581,73,0,11,11,0 +22543,581,63,0,13,13,0 +22542,581,3,0,10,10,0 +22541,581,56,0,16,16,0 +22540,581,1,26.5,2,2,2 +22539,581,64,7,5,5,0 +22538,581,34,29,1,1,1 +22537,581,6,26,3,3,2 +22536,581,25,19,4,4,1 +22535,581,67,0,9,9,0 +22534,581,32,6,6,6,0 +22533,581,37,1,8,8,0 +22532,581,26,0,15,15,0 +22531,581,202,2.5,7,7,0 +22715,582,57,0,17,17,0 +22714,582,75,1,11,11,0 +22713,582,66,0,14,14,0 +22712,582,73,3,7,7,0 +22711,582,63,0,13,13,0 +22710,582,3,0,12,12,0 +22709,582,56,0,16,16,0 +22708,582,1,26.5,3,3,2 +22706,582,34,33,2,2,1 +22704,582,25,19,4,4,1 +22701,582,37,1,10,10,0 +22700,582,26,0,15,15,0 +22733,583,74,0,18,18,0 +22732,583,57,0,16,16,0 +22731,583,75,1,11,11,0 +22730,583,66,0,14,14,0 +22729,583,73,3,8,8,0 +22728,583,63,0,13,13,0 +22727,583,3,0,12,12,0 +22726,583,56,0,17,17,0 +22725,583,1,26.5,3,3,2 +22723,583,34,36,2,2,1 +22721,583,25,19,4,4,1 +22719,583,32,6,6,6,0 +22718,583,37,1,10,10,0 +22717,583,26,0,15,15,0 +22751,584,74,0,18,18,0 +22750,584,57,0,16,16,0 +22749,584,75,1,11,11,0 +22748,584,66,0,14,14,0 +22747,584,73,5,7,7,0 +22746,584,63,0,13,13,0 +22745,584,3,0,12,12,0 +22743,584,1,30.5,3,3,2 +22742,584,64,22,4,4,1 +22739,584,25,20,5,5,1 +22737,584,32,6,6,6,0 +22736,584,37,1,10,10,0 +22735,584,26,0,15,15,0 +22770,585,74,0,19,19,0 +22769,585,76,0,18,18,0 +22768,585,57,0,16,16,0 +22767,585,75,1,11,11,0 +22766,585,66,0,14,14,0 +22765,585,73,5,7,7,0 +22764,585,63,0,13,13,0 +22763,585,3,0,12,12,0 +22761,585,1,39.5,3,3,3 +22760,585,64,25,4,4,1 +22757,585,25,24,5,5,1 +22756,585,67,2,10,10,0 +22755,585,32,6,6,6,0 +22754,585,37,3,9,9,0 +22753,585,26,0,15,15,0 +22789,586,74,0,19,19,0 +22788,586,76,0,18,18,0 +22787,586,57,1,13,13,0 +22786,586,75,3,11,11,0 +22785,586,66,0,15,15,0 +22784,586,73,5,9,9,0 +22783,586,63,0,14,14,0 +22782,586,3,6,8,8,0 +22780,586,1,39.5,3,3,3 +22779,586,64,25,4,4,1 +22776,586,25,24,5,5,1 +22775,586,67,2,12,12,0 +22774,586,32,6,7,7,0 +22773,586,37,3,10,10,0 +22772,586,26,0,16,16,0 +22809,587,74,0,20,20,0 +22808,587,203,0,19,19,0 +22807,587,76,0,18,18,0 +22806,587,57,1,13,13,0 +22805,587,75,3,11,11,0 +22804,587,66,0,15,15,0 +22803,587,73,5,10,10,0 +22802,587,63,0,14,14,0 +22801,587,3,6,9,9,0 +22800,587,56,0,17,17,0 +22799,587,1,41,3,3,3 +22798,587,64,28,4,4,1 +22797,587,34,51,2,2,2 +22796,587,6,54.5,1,1,4 +22795,587,25,24,5,5,1 +22794,587,67,2,12,12,0 +22829,588,74,0,20,20,0 +22828,588,203,0,19,19,0 +22827,588,76,0,18,18,0 +22826,588,57,1,13,13,0 +22825,588,75,3,11,11,0 +22824,588,66,0,15,15,0 +22823,588,73,5,10,10,0 +22822,588,63,0,14,14,0 +22821,588,3,6,9,9,0 +22820,588,56,0,17,17,0 +22819,588,1,47,3,3,3 +22818,588,64,30,4,4,1 +22817,588,34,54,2,2,2 +22816,588,6,63.5,1,1,5 +22815,588,25,24,5,5,1 +22814,588,67,2,12,12,0 +22849,589,74,0,20,20,0 +22848,589,203,0,19,19,0 +22847,589,76,0,18,18,0 +22846,589,57,1,13,13,0 +22845,589,75,3,11,11,0 +22844,589,66,0,15,15,0 +22843,589,73,5,10,10,0 +22842,589,63,0,14,14,0 +22841,589,3,6,9,9,0 +22840,589,56,0,16,16,0 +22839,589,1,53,3,3,3 +22838,589,64,33,4,4,1 +22837,589,34,54,2,2,2 +22836,589,6,72.5,1,1,6 +22835,589,25,25,5,5,1 +22834,589,67,2,12,12,0 +22222,590,58,0,11,11,0 +22221,590,80,0,10,10,0 +22220,590,63,0,9,9,0 +22219,590,32,0,8,8,0 +22218,590,1,9,1,1,1 +22217,590,6,6,2,2,0 +22216,590,66,2,3,3,0 +22215,590,25,1,4,4,0 +22214,590,34,0,5,5,0 +22213,590,37,0,6,6,0 +22212,590,26,0,7,7,0 +22233,591,58,0,10,10,0 +22232,591,80,0,11,11,0 +22231,591,32,4,3,3,0 +22230,591,63,3,4,4,0 +22229,591,1,18,1,1,2 +22228,591,6,12,2,2,0 +22227,591,66,2,5,5,0 +22226,591,25,1,6,6,0 +22225,591,34,0,7,7,0 +22224,591,37,0,8,8,0 +22223,591,26,0,9,9,0 +22245,592,64,0,12,12,0 +22244,592,58,0,11,11,0 +22243,592,80,1,9,9,0 +22242,592,32,4,5,5,0 +22241,592,63,3,7,7,0 +22240,592,1,22,1,1,2 +22239,592,6,12,2,2,0 +22238,592,66,8,4,4,0 +22237,592,25,4,6,6,0 +22236,592,34,9,3,3,1 +22235,592,37,2,8,8,0 +22234,592,26,0,10,10,0 +22259,593,78,0,14,14,0 +22258,593,58,0,10,10,0 +22257,593,64,0,11,11,0 +22256,593,77,0,13,13,0 +22255,593,80,1,9,9,0 +22254,593,32,4,7,7,0 +22253,593,63,3,8,8,0 +22252,593,1,26,1,1,2 +22251,593,6,21,2,2,1 +22250,593,66,8,4,4,0 +22249,593,25,6,5,5,0 +22248,593,34,9,3,3,1 +22247,593,37,5,6,6,0 +22246,593,26,0,12,12,0 +22275,594,79,0,15,15,0 +22274,594,78,0,16,16,0 +22273,594,57,0,14,14,0 +22272,594,58,0,10,10,0 +22271,594,64,0,13,13,0 +22270,594,77,0,12,12,0 +22269,594,80,1,9,9,0 +22268,594,32,4,7,7,0 +22267,594,63,3,8,8,0 +22266,594,1,35,1,1,3 +22265,594,6,27,2,2,1 +22264,594,66,10,3,3,0 +22263,594,25,10,4,4,0 +22262,594,34,9,5,5,1 +22261,594,37,5,6,6,0 +22260,594,26,0,11,11,0 +22291,595,79,0,15,15,0 +22290,595,78,0,16,16,0 +22289,595,57,0,14,14,0 +22288,595,58,4,8,8,0 +22287,595,64,0,13,13,0 +22286,595,77,0,12,12,0 +22285,595,80,1,10,10,0 +22284,595,32,13,4,4,1 +22283,595,63,3,9,9,0 +22282,595,1,37,1,1,3 +22281,595,6,30,2,2,1 +22280,595,66,10,6,6,0 +22279,595,25,16,3,3,0 +22278,595,34,10,5,5,1 +22277,595,37,5,7,7,0 +22276,595,26,0,11,11,0 +22307,596,79,0,15,15,0 +22306,596,78,0,16,16,0 +22305,596,57,0,14,14,0 +22304,596,58,6,7,7,0 +22303,596,64,4,9,9,0 +22302,596,77,0,13,13,0 +22301,596,80,1,12,12,0 +22300,596,32,13,4,4,1 +22299,596,63,3,10,10,0 +22298,596,1,40,1,1,3 +22297,596,6,30,2,2,1 +22296,596,66,10,6,6,0 +22295,596,25,25,3,3,1 +22294,596,34,10,5,5,1 +22293,596,37,5,8,8,0 +22292,596,26,1,11,11,0 +22323,597,79,0,15,15,0 +22322,597,78,0,16,16,0 +22321,597,57,0,14,14,0 +22320,597,58,6,7,7,0 +22319,597,64,4,9,9,0 +22318,597,77,0,13,13,0 +22317,597,80,1,12,12,0 +22316,597,32,13,4,4,1 +22315,597,63,3,10,10,0 +22314,597,1,42,1,1,3 +22313,597,6,39,2,2,2 +22312,597,66,10,6,6,0 +22311,597,25,27,3,3,1 +22310,597,34,10,5,5,1 +22309,597,37,5,8,8,0 +22308,597,26,1,11,11,0 +22339,598,79,0,15,15,0 +22338,598,78,0,16,16,0 +22337,598,57,0,14,14,0 +22336,598,58,6,7,7,0 +22335,598,64,4,9,9,0 +22334,598,77,0,13,13,0 +22333,598,80,1,12,12,0 +22332,598,32,22,4,4,2 +22331,598,63,3,10,10,0 +22330,598,1,43,2,2,3 +22329,598,6,45,1,1,2 +22328,598,66,10,6,6,0 +22327,598,25,30,3,3,1 +22326,598,34,10,5,5,1 +22325,598,37,5,8,8,0 +22324,598,26,1,11,11,0 +22357,599,74,0,18,18,0 +22356,599,76,0,17,17,0 +22355,599,79,0,15,15,0 +22354,599,78,0,16,16,0 +22353,599,57,0,14,14,0 +22352,599,58,6,7,7,0 +22351,599,64,4,9,9,0 +22350,599,77,0,13,13,0 +22349,599,80,1,12,12,0 +22348,599,32,26,4,4,2 +22347,599,63,3,10,10,0 +22346,599,1,49,1,1,3 +22345,599,6,48,2,2,2 +22344,599,66,10,6,6,0 +22343,599,25,39,3,3,2 +22342,599,34,11,5,5,1 +22341,599,37,5,8,8,0 +22340,599,26,1,11,11,0 +22375,600,74,0,18,18,0 +22374,600,76,0,17,17,0 +22373,600,78,0,16,16,0 +22372,600,79,0,14,14,0 +22371,600,57,0,15,15,0 +22370,600,58,7,7,7,0 +22369,600,64,4,9,9,0 +22368,600,77,0,13,13,0 +22367,600,80,1,12,12,0 +22366,600,32,29,4,4,2 +22365,600,63,3,10,10,0 +22364,600,1,49,2,2,3 +22363,600,6,57,1,1,3 +22362,600,66,10,6,6,0 +22361,600,25,45,3,3,2 +22360,600,34,15,5,5,1 +22359,600,37,5,8,8,0 +22358,600,26,1,11,11,0 +22393,601,74,0,18,18,0 +22392,601,76,0,17,17,0 +22391,601,78,0,16,16,0 +22390,601,79,0,14,14,0 +22389,601,57,0,15,15,0 +22388,601,58,7,8,8,0 +22387,601,64,8,7,7,0 +22386,601,77,0,13,13,0 +22385,601,80,1,12,12,0 +22384,601,32,29,4,4,2 +22383,601,63,3,10,10,0 +22382,601,1,55,2,2,3 +22381,601,6,59,1,1,3 +22380,601,66,10,6,6,0 +22379,601,25,45,3,3,2 +22378,601,34,24,5,5,2 +22377,601,37,6,9,9,0 +22376,601,26,1,11,11,0 +22411,602,74,0,18,18,0 +22410,602,76,0,17,17,0 +22409,602,78,0,16,16,0 +22408,602,79,0,14,14,0 +22407,602,57,0,15,15,0 +22406,602,58,7,8,8,0 +22405,602,64,8,7,7,0 +22404,602,77,0,13,13,0 +22403,602,80,4,10,10,0 +22402,602,32,38,4,4,3 +22401,602,63,3,11,11,0 +22400,602,1,61,1,1,3 +22399,602,6,59,2,2,3 +22398,602,66,10,6,6,0 +22397,602,25,49,3,3,2 +22396,602,34,26,5,5,2 +22395,602,37,6,9,9,0 +22394,602,26,1,12,12,0 +22431,603,74,0,20,20,0 +22430,603,76,0,19,19,0 +22429,603,78,0,18,18,0 +22428,603,73,0,13,13,0 +22427,603,67,0,15,15,0 +22426,603,79,0,16,16,0 +22425,603,57,0,17,17,0 +22424,603,58,7,8,8,0 +22423,603,64,11,6,6,0 +22422,603,77,0,14,14,0 +22421,603,80,4,10,10,0 +22420,603,32,42,4,4,3 +22419,603,63,3,11,11,0 +22418,603,1,70,1,1,4 +22417,603,6,65,2,2,3 +22416,603,66,10,7,7,0 +22415,603,25,51,3,3,2 +22414,603,34,26,5,5,2 +22413,603,37,6,9,9,0 +22412,603,26,1,12,12,0 +22451,604,74,0,20,20,0 +22450,604,76,0,19,19,0 +22449,604,78,0,18,18,0 +22448,604,73,0,13,13,0 +22447,604,67,0,15,15,0 +22446,604,79,0,16,16,0 +22445,604,57,0,17,17,0 +22444,604,58,7,8,8,0 +22443,604,64,15,6,6,0 +22442,604,77,0,14,14,0 +22441,604,80,4,10,10,0 +22440,604,32,42,4,4,3 +22439,604,63,3,11,11,0 +22438,604,1,73,1,1,4 +22437,604,6,65,2,2,3 +22436,604,66,10,7,7,0 +22435,604,25,52,3,3,2 +22434,604,34,35,5,5,3 +22433,604,37,6,9,9,0 +22432,604,26,1,12,12,0 +22038,605,63,0,9,9,0 +22037,605,32,9,1,1,1 +22036,605,25,6,2,2,0 +22035,605,6,3,3,3,0 +22034,605,1,2,4,4,0 +22031,605,37,0,7,7,0 +22030,605,80,0,8,8,0 +21883,606,63,0,9,9,0 +21882,606,80,0,7,7,0 +21881,606,32,18,1,1,2 +21880,606,25,12,2,2,0 +21879,606,6,6,4,4,0 +21878,606,1,6,3,3,0 +21877,606,34,1,6,6,0 +21876,606,66,1,5,5,0 +21875,606,37,0,8,8,0 +22048,607,58,1,7,7,0 +22047,607,63,0,9,9,0 +22046,607,32,22,1,1,2 +22045,607,25,21,2,2,1 +22043,607,1,12,3,3,0 +22039,607,80,0,8,8,0 +22058,608,58,5,5,5,0 +22057,608,63,0,10,10,0 +22056,608,32,31,1,1,3 +22055,608,25,27,2,2,1 +22054,608,6,9,4,4,0 +22053,608,1,15,3,3,0 +22052,608,34,1,7,7,0 +22051,608,66,3,6,6,0 +22050,608,37,0,8,8,0 +22049,608,80,0,9,9,0 +22069,609,81,1,8,8,0 +22068,609,58,5,5,5,0 +22067,609,63,0,11,11,0 +22066,609,32,35,2,2,3 +22065,609,25,36,1,1,2 +22064,609,6,9,4,4,0 +22063,609,1,15,3,3,0 +22062,609,34,4,7,7,0 +22061,609,66,5,6,6,0 +22060,609,37,0,9,9,0 +22059,609,80,0,10,10,0 +22080,610,81,1,8,8,0 +22079,610,58,5,5,5,0 +22078,610,63,0,11,11,0 +22077,610,32,37,2,2,3 +22076,610,25,39,1,1,3 +22075,610,6,9,4,4,0 +22074,610,1,17,3,3,0 +22073,610,34,4,7,7,0 +22072,610,66,5,6,6,0 +22071,610,37,0,9,9,0 +22070,610,80,0,10,10,0 +22091,611,81,1,8,8,0 +22090,611,58,5,6,6,0 +22089,611,63,0,11,11,0 +22088,611,32,43,2,2,3 +22087,611,25,43,1,1,3 +22086,611,6,10,4,4,0 +22085,611,1,26,3,3,1 +22084,611,34,7,5,5,0 +22083,611,66,5,7,7,0 +22082,611,37,0,9,9,0 +22081,611,80,0,10,10,0 +22127,612,57,0,12,12,0 +22126,612,81,1,9,9,0 +22125,612,58,5,6,6,0 +22124,612,63,0,11,11,0 +22123,612,32,52,1,1,4 +22122,612,25,51,2,2,3 +22121,612,6,12,4,4,0 +22118,612,66,5,7,7,0 +22117,612,37,1,8,8,0 +22116,612,80,0,10,10,0 +22139,613,57,0,12,12,0 +22138,613,81,1,9,9,0 +22137,613,58,5,6,6,0 +22136,613,63,0,11,11,0 +22135,613,32,58,1,1,4 +22134,613,25,53,2,2,3 +22130,613,66,5,7,7,0 +22129,613,37,4,8,8,0 +22128,613,80,0,10,10,0 +22151,614,57,0,12,12,0 +22150,614,81,1,10,10,0 +22149,614,58,5,8,8,0 +22148,614,63,0,11,11,0 +22147,614,32,58,2,2,4 +22146,614,25,62,1,1,4 +22145,614,6,12,5,5,0 +22144,614,1,38,3,3,2 +22143,614,34,12,4,4,0 +22142,614,66,7,7,7,0 +22141,614,37,8,6,6,0 +22140,614,80,1,9,9,0 +22163,615,57,0,12,12,0 +22162,615,81,1,11,11,0 +22161,615,58,5,8,8,0 +22160,615,63,3,9,9,0 +22159,615,32,59,2,2,4 +22158,615,25,71,1,1,5 +22157,615,6,12,5,5,0 +22156,615,1,42,3,3,2 +22155,615,34,14,4,4,0 +22154,615,66,7,7,7,0 +22153,615,37,8,6,6,0 +22152,615,80,1,10,10,0 +22175,616,57,0,12,12,0 +22174,616,81,1,11,11,0 +22173,616,58,5,9,9,0 +22172,616,63,7,8,8,0 +22171,616,32,68,2,2,5 +22170,616,25,77,1,1,5 +22169,616,6,12,5,5,0 +22168,616,1,42,3,3,2 +22167,616,34,17,4,4,0 +22166,616,66,9,6,6,0 +22165,616,37,8,7,7,0 +22164,616,80,1,10,10,0 +22187,617,57,0,12,12,0 +22186,617,81,1,11,11,0 +22185,617,58,5,9,9,0 +22184,617,63,7,8,8,0 +22183,617,32,77,2,2,6 +22182,617,25,80,1,1,5 +22181,617,6,12,5,5,0 +22180,617,1,46,3,3,2 +22179,617,34,18,4,4,0 +22178,617,66,9,6,6,0 +22177,617,37,8,7,7,0 +22176,617,80,1,10,10,0 +22199,618,57,0,12,12,0 +22198,618,81,1,11,11,0 +22197,618,58,9,7,7,0 +22196,618,63,7,9,9,0 +22195,618,32,83,1,1,6 +22194,618,25,82,2,2,5 +22193,618,6,12,5,5,0 +22192,618,1,55,3,3,3 +22191,618,34,18,4,4,0 +22190,618,66,12,6,6,0 +22189,618,37,8,8,8,0 +22188,618,80,2,10,10,0 +22211,619,57,0,12,12,0 +22210,619,81,1,11,11,0 +22209,619,58,9,8,8,0 +22208,619,63,7,9,9,0 +22207,619,32,92,1,1,7 +22206,619,25,82,2,2,5 +22205,619,6,12,6,6,0 +22204,619,1,58,3,3,3 +22203,619,34,22,4,4,0 +22202,619,66,12,7,7,0 +22201,619,37,14,5,5,0 +22200,619,80,2,10,10,0 +21900,620,1,6,2,2,0 +21901,620,25,9,1,1,1 +21902,620,82,0,9,9,0 +21899,620,6,4,3,3,0 +21897,620,37,1,5,5,0 +21896,620,34,0,6,6,0 +21903,621,32,6,4,4,0 +21911,621,25,9,2,2,1 +21910,621,82,0,9,9,0 +21908,621,6,7,3,3,0 +21907,621,63,2,6,6,0 +21915,622,37,4,6,6,0 +21920,622,25,9,4,4,1 +21919,622,82,0,9,9,0 +21917,622,6,13,3,3,0 +21916,622,63,5,5,5,0 +21929,623,25,12,4,4,1 +21928,623,82,1,9,9,0 +21926,623,6,19,3,3,0 +21925,623,63,5,6,6,0 +21924,623,37,4,7,7,0 +21923,623,34,1,8,8,0 +21922,623,66,9,5,5,1 +21942,624,34,1,9,9,0 +21943,624,37,6,7,7,0 +21944,624,63,8,6,6,0 +21945,624,6,19,3,3,0 +21949,624,81,0,10,10,0 +21948,624,25,18,4,4,1 +21947,624,82,2,8,8,0 +21959,625,81,0,10,10,0 +21958,625,25,27,2,2,2 +21957,625,82,6,8,8,0 +21956,625,1,23,3,3,1 +21955,625,6,19,4,4,0 +21954,625,63,9,6,6,0 +21953,625,37,8,7,7,0 +21952,625,34,1,9,9,0 +21951,625,66,9,5,5,1 +21950,625,32,34,1,1,2 +21970,626,83,0,11,11,0 +21969,626,81,0,10,10,0 +21968,626,25,33,2,2,2 +21967,626,82,9,6,6,0 +21966,626,1,27,3,3,1 +21965,626,6,20,4,4,0 +21964,626,63,9,7,7,0 +21963,626,37,8,8,8,0 +21962,626,34,1,9,9,0 +21961,626,66,9,5,5,1 +21960,626,32,43,1,1,3 +21981,627,83,0,11,11,0 +21980,627,81,0,10,10,0 +21979,627,25,33,2,2,2 +21978,627,82,9,7,7,0 +21977,627,1,29,4,4,1 +21976,627,6,29,3,3,1 +21975,627,63,9,8,8,0 +21974,627,37,12,6,6,0 +21973,627,34,2,9,9,0 +21972,627,66,12,5,5,1 +21971,627,32,43,1,1,3 +21993,628,84,0,11,11,0 +21992,628,83,0,12,12,0 +21991,628,81,0,10,10,0 +21990,628,25,33,3,3,2 +21989,628,82,11,8,8,0 +21988,628,1,35,2,2,1 +21987,628,6,29,4,4,1 +21986,628,63,12,7,7,0 +21985,628,37,12,6,6,0 +21984,628,34,2,9,9,0 +21983,628,66,13,5,5,1 +21982,628,32,52,1,1,4 +22005,629,84,0,11,11,0 +22004,629,83,0,12,12,0 +22003,629,81,0,10,10,0 +22002,629,25,33,3,3,2 +22001,629,82,11,8,8,0 +22000,629,1,39,2,2,1 +21999,629,6,29,4,4,1 +21998,629,63,18,5,5,0 +21997,629,37,12,7,7,0 +21996,629,34,4,9,9,0 +21995,629,66,14,6,6,1 +21994,629,32,61,1,1,5 +22017,630,84,0,11,11,0 +22016,630,83,0,12,12,0 +22015,630,81,0,10,10,0 +22014,630,25,42,3,3,3 +22013,630,82,12,7,7,0 +22012,630,1,45,2,2,1 +22011,630,6,31,4,4,1 +22010,630,63,18,5,5,0 +22009,630,37,12,8,8,0 +22008,630,34,7,9,9,0 +22007,630,66,14,6,6,1 +22006,630,32,61,1,1,5 +22029,631,84,0,11,11,0 +22028,631,83,0,12,12,0 +22027,631,81,0,10,10,0 +22026,631,25,51,2,2,4 +22025,631,82,12,8,8,0 +22024,631,1,47,3,3,1 +22023,631,6,33,4,4,1 +22022,631,63,18,5,5,0 +22021,631,37,15,6,6,0 +22020,631,34,7,9,9,0 +22019,631,66,14,7,7,1 +22018,631,32,61,1,1,5 +21680,632,199,0,9,9,0 +21679,632,200,0,8,8,0 +21678,632,6,9,1,1,1 +21677,632,25,6,2,2,0 +21676,632,180,3,3,3,0 +21675,632,82,2,4,4,0 +21674,632,1,1,5,5,0 +21673,632,63,0,6,6,0 +21672,632,34,0,7,7,0 +21690,633,200,0,9,9,0 +21689,633,66,3,4,4,0 +21688,633,6,15,1,1,1 +21687,633,25,15,2,2,1 +21686,633,180,3,5,5,0 +21685,633,82,6,3,3,0 +21684,633,1,3,6,6,0 +21683,633,63,0,7,7,0 +21682,633,34,0,8,8,0 +21700,634,200,6,3,3,0 +21699,634,66,3,7,7,0 +21698,634,6,19,2,2,1 +21697,634,25,24,1,1,2 +21696,634,180,5,6,6,0 +21695,634,82,6,4,4,0 +21694,634,1,6,5,5,0 +21693,634,63,1,8,8,0 +21692,634,34,0,9,9,0 +21710,635,199,0,10,10,0 +21709,635,200,9,4,4,0 +21708,635,34,0,9,9,0 +21707,635,63,3,8,8,0 +21706,635,1,6,6,6,0 +21705,635,82,6,5,5,0 +21704,635,180,5,7,7,0 +21703,635,25,24,2,2,2 +21702,635,6,28,1,1,2 +21721,636,199,0,10,10,0 +21720,636,200,9,4,4,0 +21719,636,34,0,9,9,0 +21718,636,63,3,8,8,0 +21717,636,1,6,7,7,0 +21716,636,82,8,6,6,0 +21715,636,180,9,5,5,0 +21714,636,25,33,1,1,3 +21713,636,6,28,2,2,2 +21732,637,200,15,3,3,0 +21731,637,66,12,5,5,0 +21730,637,6,28,2,2,2 +21729,637,25,42,1,1,4 +21728,637,180,13,4,4,0 +21727,637,82,8,6,6,0 +21726,637,1,6,7,7,0 +21725,637,63,5,8,8,0 +21724,637,34,0,9,9,0 +21743,638,200,17,3,3,0 +21742,638,66,12,5,5,0 +21741,638,6,32,2,2,2 +21740,638,25,51,1,1,5 +21739,638,180,13,4,4,0 +21738,638,82,8,6,6,0 +21737,638,1,6,7,7,0 +21736,638,63,5,8,8,0 +21735,638,34,1,9,9,0 +21754,639,199,0,10,10,0 +21753,639,200,18,5,5,0 +21752,639,34,5,8,8,0 +21751,639,63,5,9,9,0 +21750,639,1,6,7,7,0 +21749,639,82,8,6,6,0 +21748,639,180,19,4,4,0 +21747,639,25,51,1,1,5 +21746,639,6,32,2,2,2 +21766,640,66,30,3,3,2 +21765,640,199,0,11,11,0 +21764,640,200,24,4,4,0 +21763,640,34,5,9,9,0 +21762,640,63,8,7,7,0 +21761,640,1,6,8,8,0 +21760,640,82,9,6,6,0 +21759,640,180,19,5,5,0 +21758,640,25,55,1,1,5 +21757,640,6,32,2,2,2 +21778,641,66,30,3,3,2 +21777,641,199,0,11,11,0 +21776,641,200,30,4,4,0 +21775,641,34,5,9,9,0 +21774,641,63,8,8,8,0 +21773,641,1,10,6,6,0 +21772,641,82,9,7,7,0 +21771,641,180,21,5,5,0 +21770,641,25,64,1,1,6 +21769,641,6,32,2,2,2 +21790,642,201,0,10,10,0 +21789,642,200,33,4,4,0 +21788,642,66,36,2,2,2 +21787,642,6,33,3,3,2 +21786,642,25,73,1,1,7 +21785,642,180,21,5,5,0 +21784,642,82,9,7,7,0 +21783,642,1,10,6,6,0 +21782,642,63,8,8,8,0 +21781,642,34,5,9,9,0 +21544,643,86,0,8,8,0 +21543,643,34,9,1,1,1 +21542,643,187,6,2,2,0 +21541,643,37,4,3,3,0 +21538,643,66,0,6,6,0 +21553,644,198,0,9,9,0 +21552,644,86,0,8,8,0 +21551,644,187,12,2,2,0 +21550,644,34,9,3,3,1 +21549,644,37,13,1,1,1 +21562,645,198,0,9,9,0 +21561,645,187,15,2,2,0 +21559,645,34,15,1,1,1 +21557,645,82,7,5,5,0 +21571,646,198,0,9,9,0 +21569,646,86,0,8,8,0 +21568,646,34,17,2,2,1 +21567,646,37,19,1,1,1 +21566,646,82,11,5,5,0 +21581,647,85,0,10,10,0 +21580,647,198,0,9,9,0 +21579,647,187,16,4,4,0 +21578,647,86,0,8,8,0 +21577,647,34,17,3,3,1 +21575,647,82,13,5,5,0 +21591,648,85,0,10,10,0 +21590,648,198,0,9,9,0 +21589,648,187,19,4,4,0 +21588,648,86,0,8,8,0 +21587,648,34,21,3,3,1 +21585,648,82,15,5,5,0 +21602,649,85,0,11,11,0 +21601,649,198,0,9,9,0 +21600,649,63,0,10,10,0 +21599,649,187,23,4,4,0 +21598,649,86,0,8,8,0 +21597,649,34,27,3,3,1 +21596,649,37,33,2,2,1 +21613,650,85,0,11,11,0 +21612,650,198,0,10,10,0 +21611,650,63,0,8,8,0 +21610,650,187,27,4,4,0 +21609,650,86,0,9,9,0 +21608,650,34,29,3,3,1 +21606,650,82,16,6,6,0 +13918,17,23,172,1,1,8 +13919,17,1,71,3,3,2 +13920,17,7,59.5,5,5,0 +13921,17,4,26,8,8,0 +13922,17,3,34.5,7,7,0 +13923,17,5,8,10,10,0 +13924,17,10,13,9,9,0 +13925,17,2,36,6,6,0 +13926,17,9,153.5,2,2,6 +13927,17,6,70,4,4,1 +21623,651,198,0,9,9,0 +21622,651,63,0,8,8,0 +21621,651,187,27,4,4,0 +21620,651,86,0,10,10,0 +21619,651,34,33,3,3,1 +21617,651,82,17,6,6,0 +21635,652,85,0,11,11,0 +21634,652,198,0,8,8,0 +21633,652,63,0,9,9,0 +21632,652,187,30,5,5,0 +21631,652,86,0,10,10,0 +21630,652,34,35,3,3,1 +21629,652,37,39,2,2,1 +21647,653,25,0,11,11,0 +21646,653,85,0,12,12,0 +21645,653,198,0,9,9,0 +21644,653,63,2,8,8,0 +21643,653,187,31,5,5,0 +21642,653,86,0,10,10,0 +21641,653,34,35,4,4,1 +21659,654,85,0,12,12,0 +21658,654,25,0,11,11,0 +21657,654,198,0,9,9,0 +21656,654,63,3,8,8,0 +21655,654,187,31,5,5,0 +21653,654,34,35,4,4,1 +21651,654,82,21,7,7,0 +21671,655,85,0,12,12,0 +21670,655,25,0,11,11,0 +21669,655,198,0,9,9,0 +21668,655,63,3,8,8,0 +21667,655,187,35,5,5,0 +21665,655,34,35,4,4,1 +21663,655,82,23,7,7,0 +21304,657,191,0,6,6,0 +21299,656,66,0,4,4,0 +21301,656,196,9,1,1,1 +21300,656,180,6,2,2,0 +21298,656,187,4,3,3,0 +21308,657,196,18,1,1,2 +21307,657,180,6,3,3,0 +21306,657,66,2,4,4,0 +21305,657,187,10,2,2,0 +21312,658,187,12,3,3,0 +21313,658,66,2,5,5,0 +21314,658,196,18,1,1,2 +21316,658,180,15,2,2,1 +21315,658,167,0,6,6,0 +21324,659,180,21,2,2,1 +21323,659,167,0,7,7,0 +21322,659,196,27,1,1,3 +21321,659,66,2,6,6,0 +21332,660,180,22,2,2,1 +21331,660,167,0,7,7,0 +21330,660,196,36,1,1,4 +21329,660,66,2,6,6,0 +21340,661,180,25,2,2,1 +21339,661,167,0,7,7,0 +21338,661,196,45,1,1,5 +21337,661,66,2,6,6,0 +21344,662,187,24,4,4,0 +21345,662,66,2,6,6,0 +21346,662,196,51,1,1,5 +21347,662,167,0,7,7,0 +21348,662,180,28,2,2,1 +21355,663,196,60,1,1,6 +21356,663,167,0,7,7,0 +21357,663,180,34,2,2,1 +21358,663,197,0,9,9,0 +21362,664,187,29,4,4,0 +21364,664,196,63,1,1,6 +21368,664,183,0,10,10,0 +21376,665,180,47,2,2,2 +21377,665,197,0,9,9,0 +21378,665,183,0,10,10,0 +21375,665,167,0,7,7,0 +21387,666,197,0,9,9,0 +21381,666,191,0,8,8,0 +21382,666,187,38,4,4,1 +21383,666,66,7,5,5,0 +21384,666,196,66,1,1,6 +21385,666,167,0,7,7,0 +20925,667,89,0,10,10,0 +20924,667,190,0,9,9,0 +20923,667,183,0,8,8,0 +20922,667,180,9,1,1,1 +20921,667,191,4,2,2,0 +20920,667,6,3,3,3,0 +20919,667,194,2,4,4,0 +20918,667,196,1,5,5,0 +20917,667,167,0,6,6,0 +20916,667,11,0,7,7,0 +20967,670,89,0,14,14,0 +20966,670,190,0,13,13,0 +20938,668,183,0,11,11,0 +20937,668,187,6,2,2,0 +20936,668,195,4,3,3,0 +20935,668,180,18,1,1,2 +20934,668,191,4,4,4,0 +20933,668,6,3,5,5,0 +20932,668,194,2,7,7,0 +20931,668,196,3,6,6,0 +20930,668,167,0,8,8,0 +20929,668,11,0,9,9,0 +20965,670,183,0,12,12,0 +20952,669,82,0,11,11,0 +20951,669,187,8,2,2,0 +20950,669,195,8,3,3,0 +20949,669,180,27,1,1,3 +20948,669,191,4,5,5,0 +20947,669,6,3,6,6,0 +20946,669,194,2,8,8,0 +20945,669,196,3,7,7,0 +20944,669,167,0,9,9,0 +20943,669,11,0,10,10,0 +20964,670,11,0,10,10,0 +20963,670,167,0,9,9,0 +20962,670,196,6,6,6,0 +20961,670,194,2,8,8,0 +20960,670,6,7,5,5,0 +20959,670,191,4,7,7,0 +20958,670,180,29,1,1,3 +20982,671,82,6,7,7,0 +20981,671,187,17,2,2,1 +20980,671,195,9,6,6,0 +20979,671,180,29,1,1,3 +20978,671,191,6,8,8,0 +20977,671,6,10,5,5,0 +20976,671,194,2,9,9,0 +20975,671,196,15,4,4,1 +20974,671,167,0,10,10,0 +20973,671,11,0,11,11,0 +20997,672,82,6,7,7,0 +20996,672,187,19,2,2,1 +20995,672,195,12,6,6,0 +20994,672,180,29,1,1,3 +20993,672,191,6,9,9,0 +20992,672,6,19,3,3,1 +20991,672,194,2,10,10,0 +20990,672,196,19,4,4,1 +20989,672,167,0,11,11,0 +20988,672,11,6,8,8,0 +21012,673,89,0,14,14,0 +21011,673,190,0,13,13,0 +21010,673,183,0,12,12,0 +21009,673,11,8,7,7,0 +21008,673,167,0,11,11,0 +21007,673,196,20,4,4,1 +21006,673,194,2,10,10,0 +21005,673,6,25,2,2,1 +21004,673,191,6,9,9,0 +21003,673,180,38,1,1,4 +21028,674,66,18,5,5,0 +21027,674,82,6,9,9,0 +21026,674,187,22,4,4,1 +21025,674,195,12,6,6,0 +21024,674,180,44,1,1,4 +21023,674,191,10,7,7,0 +21022,674,6,28,3,3,1 +21021,674,194,2,10,10,0 +21020,674,196,29,2,2,2 +21019,674,167,0,11,11,0 +21018,674,11,8,8,8,0 +21045,675,170,0,17,17,0 +21044,675,89,0,16,16,0 +21043,675,190,0,12,12,0 +21042,675,183,0,15,15,0 +21041,675,11,8,9,9,0 +21040,675,167,0,11,11,0 +21039,675,196,35,2,2,2 +21038,675,194,3,10,10,0 +21037,675,6,32,3,3,1 +21036,675,191,10,7,7,0 +21035,675,180,44,1,1,4 +21062,676,66,25,5,5,0 +21061,676,82,8,8,8,0 +21060,676,187,40,2,2,3 +21059,676,195,14,6,6,0 +21058,676,180,47,1,1,4 +21057,676,191,10,7,7,0 +21056,676,6,32,4,4,1 +21055,676,194,3,10,10,0 +21054,676,196,36,3,3,2 +21053,676,167,0,11,11,0 +21052,676,11,8,9,9,0 +21079,677,170,0,17,17,0 +21078,677,89,0,16,16,0 +21077,677,190,0,12,12,0 +21076,677,183,0,15,15,0 +21075,677,11,12,7,7,0 +21074,677,167,0,11,11,0 +21073,677,196,45,2,2,3 +21072,677,194,3,10,10,0 +21071,677,6,32,4,4,1 +21070,677,191,10,8,8,0 +21069,677,180,53,1,1,4 +21096,678,170,0,17,17,0 +21095,678,89,0,16,16,0 +21094,678,190,0,12,12,0 +21093,678,183,0,15,15,0 +21092,678,11,14,6,6,0 +21091,678,167,0,11,11,0 +21090,678,196,45,3,3,3 +21089,678,194,3,10,10,0 +21088,678,6,32,4,4,1 +21087,678,191,10,8,8,0 +21086,678,180,62,1,1,5 +20741,679,176,0,7,7,0 +20740,679,184,0,6,6,0 +20739,679,183,2,5,5,0 +20738,679,191,3,4,4,0 +20737,679,11,4,3,3,0 +20736,679,170,6,2,2,0 +20735,679,167,9,1,1,1 +20753,680,176,6,3,3,0 +20752,680,6,4,5,5,0 +20751,680,194,3,7,7,0 +20750,680,66,1,9,9,0 +20749,680,172,0,11,11,0 +20748,680,167,11,2,2,1 +20747,680,170,6,4,4,0 +20746,680,11,4,6,6,0 +20745,680,191,12,1,1,1 +20744,680,183,2,8,8,0 +20767,681,6,7,4,4,0 +20766,681,66,1,10,10,0 +20765,681,189,0,13,13,0 +20764,681,176,6,5,5,0 +20763,681,184,0,11,11,0 +20762,681,183,2,9,9,0 +20761,681,191,18,1,1,1 +20760,681,11,4,7,7,0 +20759,681,170,6,6,6,0 +20758,681,167,11,2,2,1 +20782,682,6,11,3,3,0 +20781,682,66,7,6,6,0 +20780,682,189,0,14,14,0 +20779,682,176,6,7,7,0 +20778,682,184,0,12,12,0 +20777,682,183,2,11,11,0 +20776,682,191,18,1,1,1 +20775,682,11,4,9,9,0 +20774,682,170,6,8,8,0 +20773,682,167,14,2,2,1 +20797,683,176,6,7,7,0 +20796,683,6,11,4,4,0 +20795,683,194,3,10,10,0 +20794,683,66,11,3,3,0 +20793,683,172,0,13,13,0 +20792,683,167,17,2,2,1 +20791,683,170,6,8,8,0 +20790,683,11,4,9,9,0 +20789,683,191,27,1,1,2 +20788,683,183,2,11,11,0 +20812,684,176,6,7,7,0 +20811,684,6,15,4,4,0 +20810,684,194,3,10,10,0 +20809,684,66,11,5,5,0 +20808,684,172,0,13,13,0 +20807,684,167,19,3,3,1 +20806,684,170,6,8,8,0 +20805,684,11,5,9,9,0 +20804,684,191,33,1,1,2 +20803,684,183,2,11,11,0 +20830,685,172,0,15,15,0 +20829,685,194,3,10,10,0 +20828,685,6,19,4,4,0 +20827,685,66,11,5,5,0 +20826,685,189,0,16,16,0 +20825,685,176,6,8,8,0 +20824,685,184,0,14,14,0 +20823,685,183,2,11,11,0 +20822,685,191,42,1,1,3 +20821,685,11,8,7,7,0 +20820,685,170,6,9,9,0 +20819,685,167,21,2,2,1 +20849,686,190,13,5,5,1 +20848,686,180,22,2,2,2 +20847,686,176,6,8,8,0 +20846,686,6,20,4,4,0 +20845,686,194,3,10,10,0 +20844,686,66,13,6,6,0 +20843,686,172,0,15,15,0 +20842,686,167,21,3,3,1 +20841,686,170,6,9,9,0 +20840,686,11,8,7,7,0 +20839,686,191,51,1,1,4 +20838,686,183,2,11,11,0 +20868,687,190,13,7,7,1 +20867,687,180,26,2,2,2 +20866,687,176,6,8,8,0 +20865,687,6,20,4,4,0 +20864,687,194,3,10,10,0 +20863,687,66,15,6,6,0 +20862,687,172,0,15,15,0 +20861,687,167,24,3,3,1 +20860,687,170,6,9,9,0 +20859,687,11,17,5,5,1 +20858,687,191,57,1,1,4 +20857,687,183,2,11,11,0 +20887,688,190,13,7,7,1 +20886,688,180,35,2,2,3 +20885,688,176,6,8,8,0 +20884,688,6,20,4,4,0 +20883,688,194,3,10,10,0 +20882,688,66,15,6,6,0 +20881,688,172,0,16,16,0 +20880,688,167,27,3,3,1 +20879,688,170,6,9,9,0 +20878,688,11,17,5,5,1 +20877,688,191,61,1,1,4 +20876,688,183,2,11,11,0 +20907,689,190,13,7,7,1 +20906,689,180,44,2,2,4 +20905,689,176,6,8,8,0 +20904,689,6,20,5,5,0 +20903,689,194,3,10,10,0 +20902,689,66,17,6,6,0 +20901,689,172,0,16,16,0 +20900,689,167,28,3,3,1 +20899,689,170,6,9,9,0 +20898,689,11,20,4,4,1 +20897,689,191,63,1,1,4 +20896,689,183,2,11,11,0 +20628,690,66,9,1,1,1 +20627,690,6,6,2,2,0 +20626,690,167,0,3,3,0 +20624,690,187,0,9,9,0 +20639,691,6,15,1,1,1 +20638,691,167,6,3,3,0 +20637,691,187,0,10,10,0 +20635,691,189,0,5,5,0 +20633,691,183,0,9,9,0 +20650,692,6,21,1,1,1 +20649,692,167,9,4,4,0 +20648,692,187,0,10,10,0 +20647,692,188,0,11,11,0 +20646,692,189,2,5,5,0 +20645,692,66,9,3,3,1 +20663,693,6,21,2,2,1 +20662,693,167,11,4,4,0 +20661,693,187,0,12,12,0 +20660,693,91,0,13,13,0 +20659,693,188,1,8,8,0 +20658,693,192,0,10,10,0 +20676,694,187,0,12,12,0 +20675,694,91,0,13,13,0 +20674,694,6,22,2,2,1 +20673,694,167,11,4,4,0 +20672,694,188,1,9,9,0 +20671,694,192,0,11,11,0 +20689,695,187,0,12,12,0 +20688,695,91,0,13,13,0 +20687,695,6,23,2,2,1 +20686,695,167,17,4,4,0 +20685,695,188,1,9,9,0 +20684,695,192,0,11,11,0 +20704,696,187,0,13,13,0 +20703,696,91,0,15,15,0 +20702,696,190,0,14,14,0 +20701,696,11,0,12,12,0 +20700,696,6,31,2,2,2 +20699,696,167,20,4,4,0 +20698,696,188,1,10,10,0 +20719,697,187,2,8,8,0 +20718,697,91,0,15,15,0 +20717,697,190,0,14,14,0 +20716,697,11,0,13,13,0 +20715,697,6,31,2,2,2 +20713,697,188,1,11,11,0 +20734,698,91,0,15,15,0 +20733,698,187,2,9,9,0 +20732,698,190,0,14,14,0 +20731,698,11,3,8,8,0 +20729,698,167,30,3,3,1 +20359,699,172,9,1,1,1 +20358,699,6,6,2,2,0 +20356,699,170,2,4,4,0 +20355,699,181,0,5,5,0 +20354,699,183,0,6,6,0 +20353,699,182,0,7,7,0 +20375,700,182,0,7,7,0 +20374,700,51,0,8,8,0 +20372,700,66,13,1,1,1 +20371,700,6,12,2,2,0 +20370,700,170,4,4,4,0 +20391,701,182,0,8,8,0 +20390,701,51,0,9,9,0 +20389,701,185,0,11,11,0 +20388,701,66,19,1,1,1 +20384,701,183,3,5,5,0 +20407,702,182,0,8,8,0 +20406,702,51,0,9,9,0 +20405,702,185,0,11,11,0 +20404,702,66,25,2,2,1 +20402,702,170,8,4,4,0 +20423,703,182,0,8,8,0 +20422,703,51,0,9,9,0 +20421,703,185,0,11,11,0 +20420,703,66,31,2,2,1 +20419,703,6,20,3,3,0 +20416,703,183,7,5,5,0 +20439,704,182,0,8,8,0 +20438,704,51,0,10,10,0 +20437,704,185,0,11,11,0 +20436,704,66,37,2,2,1 +20434,704,170,8,5,5,0 +20455,705,182,0,8,8,0 +20454,705,51,0,10,10,0 +20453,705,185,0,11,11,0 +20452,705,66,39,2,2,1 +20448,705,183,15,4,4,0 +20471,706,182,0,9,9,0 +20470,706,51,0,10,10,0 +20469,706,185,0,11,11,0 +20468,706,66,42,2,2,2 +20467,706,6,24,3,3,0 +20464,706,183,19,4,4,0 +20487,707,182,0,9,9,0 +20486,707,51,0,10,10,0 +20485,707,185,0,11,11,0 +20484,707,66,45,2,2,3 +20482,707,170,14,5,5,0 +20622,690,181,0,5,5,0 +20503,708,182,0,9,9,0 +20502,708,51,0,10,10,0 +20501,708,185,0,11,11,0 +20500,708,66,45,2,2,3 +20496,708,183,27,3,3,0 +20071,709,66,9,1,1,1 +20069,709,94,0,7,7,0 +20067,709,170,2,3,3,0 +20065,709,183,0,5,5,0 +20081,710,172,13,1,1,1 +20080,710,66,12,2,2,1 +20079,710,94,0,8,8,0 +20077,710,95,0,9,9,0 +20076,710,181,0,7,7,0 +20091,711,172,22,1,1,2 +20090,711,95,0,10,10,0 +20088,711,66,15,2,2,1 +20100,712,92,0,9,9,0 +20098,712,66,21,2,2,1 +20097,712,94,0,7,7,0 +20096,712,181,0,8,8,0 +20095,712,170,9,4,4,0 +20112,713,95,0,10,10,0 +20111,713,92,0,9,9,0 +20109,713,172,34,1,1,3 +20108,713,66,27,2,2,1 +20107,713,94,0,7,7,0 +20106,713,181,0,8,8,0 +20124,714,95,0,11,11,0 +20123,714,182,0,12,12,0 +20121,714,11,0,9,9,0 +20119,714,66,33,2,2,1 +20118,714,94,0,8,8,0 +20136,715,95,0,11,11,0 +20135,715,182,0,12,12,0 +20134,715,92,0,10,10,0 +20133,715,11,0,9,9,0 +20132,715,172,34,2,2,3 +20130,715,94,2,8,8,0 +20149,716,95,0,12,12,0 +20148,716,182,0,13,13,0 +20147,716,92,0,10,10,0 +20146,716,96,0,11,11,0 +20145,716,11,0,9,9,0 +20143,716,66,36,2,2,1 +20352,699,51,0,8,8,0 +20351,699,176,0,9,9,0 +20162,717,96,0,11,11,0 +20161,717,11,0,9,9,0 +20160,717,182,0,13,13,0 +20159,717,95,0,12,12,0 +20157,717,92,0,10,10,0 +20175,718,96,0,11,11,0 +20174,718,11,0,9,9,0 +20173,718,182,0,13,13,0 +20172,718,95,0,12,12,0 +20170,718,92,0,10,10,0 +20075,710,170,2,5,5,0 +20074,710,176,3,4,4,0 +19801,719,95,0,11,11,0 +19799,719,92,0,9,9,0 +19798,719,54,0,8,8,0 +19795,719,176,0,5,5,0 +19794,719,172,1,4,4,0 +19793,719,6,3,3,3,0 +19792,719,170,4,2,2,0 +20073,710,183,1,6,6,0 +20072,710,6,6,3,3,0 +20066,709,176,1,4,4,0 +19812,720,86,0,12,12,0 +19811,720,94,0,11,11,0 +19809,720,95,1,6,6,0 +19808,720,6,3,5,5,0 +19806,720,176,0,8,8,0 +19805,720,26,0,9,9,0 +20070,709,172,4,2,2,0 +19825,721,86,0,12,12,0 +19824,721,94,3,6,6,0 +19823,721,170,10,3,3,0 +19821,721,95,1,7,7,0 +19819,721,172,19,1,1,2 +19818,721,176,0,8,8,0 +19837,722,86,0,12,12,0 +19835,722,170,16,2,2,0 +19834,722,66,14,3,3,1 +19832,722,6,7,5,5,0 +19831,722,172,28,1,1,3 +19850,723,86,0,13,13,0 +19849,723,97,0,12,12,0 +19848,723,94,3,6,6,0 +19847,723,170,16,3,3,0 +19845,723,95,1,8,8,0 +19844,723,6,13,5,5,0 +19843,723,172,37,1,1,4 +19864,724,86,0,13,13,0 +19862,724,97,0,12,12,0 +19861,724,94,3,8,8,0 +19859,724,66,22,2,2,1 +19857,724,6,22,3,3,1 +19856,724,172,43,1,1,4 +19881,725,86,0,13,13,0 +19880,725,177,0,15,15,0 +19879,725,179,0,16,16,0 +19878,725,173,0,17,17,0 +19877,725,167,0,14,14,0 +19875,725,94,6,6,6,0 +19873,725,66,28,2,2,1 +19872,725,95,4,7,7,0 +20064,709,6,0,6,6,0 +19899,726,86,0,14,14,0 +19897,726,179,0,17,17,0 +19895,726,98,0,10,10,0 +19894,726,167,0,15,15,0 +19893,726,97,0,13,13,0 +19891,726,170,21,4,4,0 +19889,726,95,5,7,7,0 +19918,727,86,0,14,14,0 +19917,727,177,0,17,17,0 +19915,727,173,0,19,19,0 +19913,727,98,0,10,10,0 +19912,727,167,0,16,16,0 +19911,727,97,0,13,13,0 +19910,727,94,6,6,6,0 +19908,727,66,36,2,2,2 +19516,729,26,0,7,7,0 +19515,729,99,0,6,6,0 +19514,729,95,1,5,5,0 +19513,729,170,2,4,4,0 +19512,729,6,4,3,3,0 +19525,730,175,0,9,9,0 +19524,730,176,0,8,8,0 +19523,730,26,3,5,5,0 +19522,730,99,0,7,7,0 +19520,730,170,11,1,1,1 +19519,730,6,10,3,3,0 +19534,731,175,0,9,9,0 +19533,731,176,0,8,8,0 +19532,731,26,5,5,5,0 +19531,731,99,0,7,7,0 +19530,731,95,3,6,6,0 +19528,731,6,14,3,3,0 +19527,731,172,15,2,2,1 +20068,709,92,0,8,8,0 +19810,720,66,12,1,1,1 +19545,732,32,0,10,10,0 +19544,732,87,0,7,7,0 +19543,732,175,0,11,11,0 +19542,732,176,0,8,8,0 +19541,732,26,7,6,6,0 +19540,732,99,0,9,9,0 +19804,720,34,4,4,4,0 +19557,733,97,0,12,12,0 +19556,733,32,0,10,10,0 +19555,733,87,0,8,8,0 +19554,733,175,0,11,11,0 +19552,733,26,13,5,5,0 +19551,733,99,0,7,7,0 +19550,733,95,12,6,6,1 +19571,734,34,0,12,12,0 +19570,734,100,0,8,8,0 +19569,734,97,0,13,13,0 +19568,734,32,0,11,11,0 +19564,734,26,19,4,4,0 +19561,734,170,23,3,3,1 +19796,719,26,0,6,6,0 +19797,719,34,0,7,7,0 +19588,735,32,0,11,11,0 +19587,735,174,0,15,15,0 +19586,735,86,0,16,16,0 +19583,735,34,0,12,12,0 +19582,735,97,0,13,13,0 +19581,735,87,0,10,10,0 +19577,735,172,27,2,2,2 +19605,736,32,0,12,12,0 +19604,736,174,0,15,15,0 +19603,736,86,0,16,16,0 +19602,736,177,0,17,17,0 +19601,736,100,0,10,10,0 +19600,736,34,3,7,7,0 +19598,736,87,0,11,11,0 +19800,719,86,0,10,10,0 +19791,719,66,9,1,1,1 +19624,737,32,0,14,14,0 +19623,737,174,0,17,17,0 +19622,737,86,0,18,18,0 +19621,737,177,0,19,19,0 +19620,737,178,0,13,13,0 +19619,737,89,0,12,12,0 +19615,737,87,0,11,11,0 +19613,737,176,1,8,8,0 +19340,740,66,0,6,6,0 +19333,739,66,0,6,6,0 +19327,738,172,9,1,1,1 +19548,733,6,14,4,4,0 +19547,733,172,24,1,1,2 +19334,739,99,0,7,7,0 +19538,732,170,17,2,2,1 +19539,732,95,12,5,5,1 +19546,733,66,23,2,2,1 +19341,740,99,0,7,7,0 +19348,741,99,0,7,7,0 +19349,741,174,0,8,8,0 +19350,741,101,0,9,9,0 +19537,732,6,14,4,4,0 +19536,732,172,15,3,3,1 +19535,732,66,20,1,1,1 +19529,731,170,11,4,4,1 +19360,742,97,0,7,7,0 +19359,742,101,0,10,10,0 +19358,742,174,0,9,9,0 +19357,742,99,0,8,8,0 +19356,742,66,1,5,5,0 +19526,731,66,16,1,1,1 +19367,743,99,0,8,8,0 +19368,743,174,0,9,9,0 +19369,743,101,0,11,11,0 +19370,743,97,0,7,7,0 +19371,743,103,0,10,10,0 +19553,733,176,0,9,9,0 +19379,744,174,0,11,11,0 +19380,744,101,0,12,12,0 +19381,744,97,0,7,7,0 +19382,744,103,0,13,13,0 +19521,730,95,3,6,6,0 +19510,729,66,9,1,1,1 +19511,729,172,6,2,2,0 +19517,730,66,10,2,2,1 +19518,730,172,6,4,4,0 +19560,734,6,15,6,6,0 +19549,733,170,21,3,3,1 +19397,745,175,0,9,9,0 +19396,745,173,0,8,8,0 +19395,745,103,0,13,13,0 +19394,745,97,0,7,7,0 +19393,745,101,0,12,12,0 +19392,745,174,0,11,11,0 +19391,745,99,0,10,10,0 +19390,745,66,7,5,5,0 +19389,745,167,0,6,6,0 +19388,745,170,14,4,4,0 +19387,745,95,22,3,3,0 +18893,761,123,0,12,12,0 +18892,761,118,0,11,11,0 +19134,755,106,0,9,9,0 +18917,763,123,0,12,12,0 +18905,762,123,0,12,12,0 +18904,762,118,0,11,11,0 +18903,762,101,0,10,10,0 +18902,762,169,0,8,8,0 +18901,762,117,0,5,5,0 +18900,762,105,0,7,7,0 +18899,762,95,0,9,9,0 +18881,760,123,0,12,12,0 +18880,760,118,0,11,11,0 +18916,763,118,0,11,11,0 +18915,763,101,0,10,10,0 +18913,763,117,0,5,5,0 +18914,763,169,0,8,8,0 +18869,759,117,0,8,8,0 +18868,759,105,0,6,6,0 +18867,759,95,0,7,7,0 +18866,759,32,3,4,4,0 +18865,759,66,8,3,3,1 +18864,759,167,0,5,5,0 +18861,758,117,0,7,7,0 +19063,749,105,0,7,7,0 +19123,754,95,1,7,7,0 +18853,757,105,0,7,7,0 +18846,756,105,0,7,7,0 +19940,728,89,0,13,13,0 +19939,728,180,0,15,15,0 +19938,728,51,0,16,16,0 +19937,728,86,0,18,18,0 +19935,728,179,0,21,21,0 +19933,728,32,0,19,19,0 +19932,728,98,0,10,10,0 +19931,728,167,0,14,14,0 +19930,728,97,0,17,17,0 +19928,728,170,25,5,5,0 +19907,727,95,5,7,7,0 +19906,727,6,24,3,3,1 +19904,727,176,4,8,8,0 +19888,726,6,24,3,3,1 +19887,726,172,51,1,1,5 +19886,726,176,4,8,8,0 +19871,725,6,22,3,3,1 +19870,725,172,51,1,1,5 +19855,724,176,4,7,7,0 +19854,724,26,0,9,9,0 +19852,724,54,0,11,11,0 +19841,723,26,0,9,9,0 +19839,723,54,0,11,11,0 +19830,722,176,1,7,7,0 +19828,722,34,13,4,4,0 +19817,721,26,0,10,10,0 +19815,721,54,0,11,11,0 +19803,720,54,0,10,10,0 +19802,720,92,0,7,7,0 +19559,734,172,27,2,2,2 +19558,734,66,31,1,1,2 +19386,745,6,45,1,1,5 +19385,745,172,35,2,2,3 +19384,744,175,0,9,9,0 +19383,744,173,0,8,8,0 +19378,744,99,0,10,10,0 +19377,744,66,3,5,5,0 +19366,743,66,1,5,5,0 +19365,743,167,0,6,6,0 +19364,743,170,10,4,4,0 +19363,743,95,11,3,3,0 +19355,742,167,0,6,6,0 +19354,742,170,9,4,4,0 +19353,742,95,11,3,3,0 +19347,741,66,1,5,5,0 +19346,741,167,0,6,6,0 +19339,740,167,0,5,5,0 +19332,739,167,0,5,5,0 +19326,738,6,6,2,2,0 +19325,738,95,2,3,3,0 +19136,755,95,1,7,7,0 +19135,755,118,0,13,13,0 +19133,755,171,3,6,6,0 +19126,755,6,26,3,3,1 +19132,755,105,0,11,11,0 +19131,755,104,0,8,8,0 +19130,755,101,0,12,12,0 +19129,755,170,48,1,1,6 +19128,755,32,34,2,2,2 +19127,755,66,8,4,4,0 +19125,755,167,3,5,5,0 +19124,755,117,0,10,10,0 +19122,754,118,0,13,13,0 +19121,754,117,0,9,9,0 +19114,754,32,28,2,2,1 +19120,754,171,3,6,6,0 +19118,754,101,0,11,11,0 +19117,754,105,0,10,10,0 +19116,754,104,0,8,8,0 +19115,754,66,6,4,4,0 +19113,754,167,3,5,5,0 +19112,754,6,26,3,3,1 +19111,754,170,48,1,1,6 +19109,753,118,0,12,12,0 +19107,753,171,0,10,10,0 +19102,753,66,6,4,4,0 +19106,753,104,0,7,7,0 +19105,753,101,0,9,9,0 +19104,753,170,48,1,1,6 +19103,753,32,28,2,2,1 +19101,753,6,19,3,3,0 +19100,753,167,3,5,5,0 +19099,753,117,0,6,6,0 +19097,752,118,0,12,12,0 +19095,752,171,0,10,10,0 +19089,752,6,16,3,3,0 +19094,752,104,0,7,7,0 +19093,752,101,0,9,9,0 +19092,752,170,46,1,1,5 +19091,752,32,25,2,2,1 +19090,752,66,6,4,4,0 +19088,752,167,3,5,5,0 +19087,752,117,0,6,6,0 +19098,752,105,0,8,8,0 +19081,751,105,0,7,7,0 +19086,751,118,0,11,11,0 +19085,751,117,0,10,10,0 +19084,751,171,0,9,9,0 +19083,751,106,0,8,8,0 +19082,751,101,0,12,12,0 +19080,751,104,0,6,6,0 +19075,751,170,38,1,1,4 +19076,751,6,15,3,3,0 +19077,751,167,3,5,5,0 +19078,751,32,19,2,2,1 +19073,750,171,0,11,11,0 +19110,753,105,0,8,8,0 +19074,750,105,0,7,7,0 +19072,750,106,0,8,8,0 +19066,750,6,15,3,3,0 +19064,750,117,0,9,9,0 +19062,749,171,0,11,11,0 +19061,749,106,0,10,10,0 +19056,749,66,6,4,4,0 +19060,749,104,0,6,6,0 +19059,749,101,0,9,9,0 +19058,749,170,22,1,1,2 +19057,749,32,15,2,2,1 +19055,749,6,12,3,3,0 +19053,749,117,0,8,8,0 +19052,748,105,0,7,7,0 +19051,748,106,0,9,9,0 +19050,748,171,0,10,10,0 +19049,748,104,0,6,6,0 +19046,748,6,10,2,2,0 +19044,748,167,3,4,4,0 +19048,748,32,9,3,3,1 +19047,748,170,14,1,1,1 +19045,748,66,2,5,5,0 +19043,748,101,0,8,8,0 +19041,747,106,0,9,9,0 +19036,747,6,10,2,2,0 +19040,747,171,0,10,10,0 +19039,747,104,0,6,6,0 +19037,747,170,14,1,1,1 +19035,747,66,2,5,5,0 +19033,747,101,0,8,8,0 +19032,746,105,0,7,7,0 +19031,746,104,0,6,6,0 +19030,746,66,0,5,5,0 +19028,746,167,3,3,3,0 +19029,746,32,1,4,4,0 +19026,746,170,8,1,1,1 +19027,746,6,6,2,2,0 +19596,736,176,1,8,8,0 +19592,736,170,27,3,3,1 +19578,735,175,0,14,14,0 +19579,735,176,0,8,8,0 +19580,735,66,37,1,1,3 +18860,758,105,0,8,8,0 +18852,757,95,0,6,6,0 +18851,757,32,0,5,5,0 +18850,757,66,0,4,4,0 +18849,757,167,0,3,3,0 +18859,758,95,0,6,6,0 +18858,758,32,3,4,4,0 +18857,758,66,8,2,2,1 +18856,758,167,0,5,5,0 +18855,758,6,8,3,3,0 +18854,758,170,14,1,1,1 +17846,775,32,3,6,6,0 +17847,775,118,48,1,1,6 +17848,775,125,0,8,8,0 +17849,775,127,0,9,9,0 +17850,775,95,0,7,7,0 +18845,756,95,0,6,6,0 +18844,756,32,0,5,5,0 +18843,756,66,0,4,4,0 +18842,756,167,0,3,3,0 +18841,756,6,6,2,2,0 +18840,756,170,8,1,1,1 +18848,757,6,6,2,2,0 +18847,757,170,8,1,1,1 +17845,775,66,18,4,4,0 +17844,775,105,6,5,5,0 +17833,774,87,31,3,3,2 +17834,774,6,40,2,2,2 +17835,774,105,6,5,5,0 +17836,774,66,15,4,4,0 +17837,774,32,3,6,6,0 +17838,774,118,46,1,1,5 +17839,774,125,0,8,8,0 +17840,774,127,0,9,9,0 +17841,774,95,0,7,7,0 +17824,773,87,29,3,3,2 +19611,737,172,36,2,2,3 +19610,737,6,18,6,6,0 +19584,735,100,0,9,9,0 +19585,735,177,0,17,17,0 +19576,735,6,18,5,5,0 +18863,759,6,16,2,2,1 +18862,759,170,18,1,1,1 +17827,773,66,15,4,4,0 +17828,773,32,3,6,6,0 +17829,773,118,41,1,1,4 +17830,773,125,0,8,8,0 +17831,773,127,0,9,9,0 +17832,773,95,0,7,7,0 +18879,760,101,0,10,10,0 +18878,760,169,0,8,8,0 +18877,760,117,0,5,5,0 +18876,760,105,0,7,7,0 +18875,760,95,0,9,9,0 +17826,773,105,6,5,5,0 +17825,773,6,40,2,2,2 +18874,760,32,3,4,4,0 +18873,760,66,14,3,3,1 +18872,760,167,0,6,6,0 +18871,760,6,16,2,2,1 +18870,760,170,26,1,1,2 +17823,772,95,0,7,7,0 +17822,772,127,0,9,9,0 +17821,772,125,0,8,8,0 +17820,772,118,33,2,2,3 +17818,772,66,12,4,4,0 +17819,772,32,3,6,6,0 +17817,772,105,6,5,5,0 +17816,772,6,37,1,1,2 +17815,772,87,29,3,3,2 +18891,761,101,0,10,10,0 +18890,761,169,0,8,8,0 +18889,761,117,0,6,6,0 +18888,761,105,0,7,7,0 +18887,761,95,0,9,9,0 +18886,761,32,3,4,4,0 +18885,761,66,16,3,3,1 +18884,761,167,0,5,5,0 +17810,771,32,3,6,6,0 +17811,771,118,25,2,2,2 +17812,771,125,0,8,8,0 +17813,771,127,0,9,9,0 +17814,771,95,0,7,7,0 +17809,771,66,12,4,4,0 +17806,771,87,23,3,3,2 +17807,771,6,36,1,1,2 +19609,737,170,29,3,3,1 +19608,737,95,18,5,5,1 +19607,737,99,0,9,9,0 +19606,737,26,19,4,4,0 +19593,736,6,18,6,6,0 +19594,736,172,36,2,2,3 +19595,736,175,0,14,14,0 +18883,761,6,24,2,2,2 +17799,770,105,6,5,5,0 +17800,770,66,10,4,4,0 +17801,770,32,3,6,6,0 +17802,770,118,22,2,2,2 +17803,770,125,0,8,8,0 +17804,770,127,0,9,9,0 +17805,770,95,0,7,7,0 +18882,761,170,29,1,1,2 +17793,769,118,16,3,3,2 +17794,769,125,0,8,8,0 +17795,769,127,0,9,9,0 +17796,769,95,0,7,7,0 +19599,736,97,0,13,13,0 +19376,744,167,0,6,6,0 +19375,744,170,13,4,4,0 +19374,744,95,17,3,3,0 +19362,743,6,42,1,1,4 +19361,743,172,26,2,2,2 +19352,742,6,42,1,1,4 +19351,742,172,17,2,2,1 +17792,769,32,3,6,6,0 +17789,769,6,20,1,1,0 +17790,769,105,3,5,5,0 +17785,768,125,0,8,8,0 +17786,768,127,0,9,9,0 +17787,768,95,0,7,7,0 +19597,736,66,39,1,1,3 +19591,736,95,18,5,5,1 +19345,741,170,6,4,4,0 +19344,741,95,9,3,3,0 +19343,741,6,33,1,1,3 +19342,741,172,17,2,2,1 +19338,740,170,4,3,3,0 +19337,740,95,3,4,4,0 +17784,768,118,8,3,3,1 +17783,768,32,0,6,6,0 +17782,768,66,8,4,4,0 +17781,768,105,3,5,5,0 +17780,768,6,14,2,2,0 +17779,768,87,19,1,1,2 +17778,767,95,0,7,7,0 +17777,767,127,0,9,9,0 +17776,767,125,0,8,8,0 +17775,767,118,8,3,3,1 +17791,769,66,10,4,4,0 +17774,767,32,0,6,6,0 +17769,766,127,0,8,8,0 +17768,766,125,0,7,7,0 +17767,766,118,0,6,6,0 +17766,766,32,0,5,5,0 +17765,766,66,2,4,4,0 +17764,766,105,3,3,3,0 +17763,766,6,12,2,2,0 +17762,766,87,16,1,1,2 +17773,767,66,8,4,4,0 +17772,767,105,3,5,5,0 +17771,767,6,14,2,2,0 +17770,767,87,19,1,1,2 +17761,765,105,3,3,3,0 +17760,765,6,6,2,2,0 +17759,765,87,8,1,1,1 +17788,769,87,19,2,2,2 +17798,770,6,28,1,1,1 +17797,770,87,19,3,3,2 +17808,771,105,6,5,5,0 +17842,775,87,31,3,3,2 +17843,775,6,40,2,2,2 +19575,735,170,25,3,3,1 +19562,734,95,16,5,5,1 +19563,734,99,0,7,7,0 +19574,735,95,17,6,6,1 +19573,735,99,0,7,7,0 +19572,735,26,19,4,4,0 +19565,734,176,0,10,10,0 +19566,734,175,0,14,14,0 +19567,734,87,0,9,9,0 +19336,740,6,24,1,1,2 +19335,740,172,13,2,2,1 +19331,739,170,2,4,4,0 +19330,739,95,2,3,3,0 +19324,738,170,1,4,4,0 +19323,738,167,0,5,5,0 +19119,754,106,0,12,12,0 +19108,753,106,0,11,11,0 +19096,752,106,0,11,11,0 +19079,751,66,6,4,4,0 +19065,750,167,3,5,5,0 +18928,764,118,0,15,15,0 +18929,764,123,0,16,16,0 +18930,764,113,0,7,7,0 +18931,764,168,0,11,11,0 +18932,764,124,0,12,12,0 +18933,764,125,0,13,13,0 +19042,747,105,0,7,7,0 +19038,747,32,9,3,3,1 +19034,747,167,3,4,4,0 +19054,749,167,3,5,5,0 +19067,750,66,6,4,4,0 +19068,750,32,17,2,2,1 +19069,750,170,30,1,1,3 +19070,750,101,0,10,10,0 +19071,750,104,0,6,6,0 +22131,613,34,12,4,4,0 +22132,613,1,35,3,3,2 +22133,613,6,12,5,5,0 +22119,612,34,11,5,5,0 +22120,612,1,26,3,3,1 +22044,607,6,9,4,4,0 +22040,607,37,0,10,10,0 +22041,607,66,1,5,5,0 +22042,607,34,1,6,6,0 +22032,605,66,0,6,6,0 +22033,605,34,1,5,5,0 +21918,622,1,17,1,1,1 +21909,621,1,15,1,1,1 +21906,621,37,3,5,5,0 +21898,620,63,2,4,4,0 +21946,624,1,23,2,2,1 +21941,624,66,9,5,5,1 +21940,624,32,28,1,1,2 +21921,623,32,19,2,2,1 +21927,623,1,19,1,1,1 +21913,622,66,0,8,8,0 +21914,622,34,1,7,7,0 +21912,622,32,15,2,2,1 +21905,621,34,1,7,7,0 +21904,621,66,0,8,8,0 +21895,620,66,0,7,7,0 +21894,620,32,0,8,8,0 +21792,642,85,0,12,12,0 +21791,642,199,0,11,11,0 +21780,641,85,0,12,12,0 +21779,641,201,0,10,10,0 +21768,640,85,0,12,12,0 +21767,640,201,0,10,10,0 +21756,639,201,0,11,11,0 +21755,639,66,21,3,3,1 +21745,638,201,0,11,11,0 +21744,638,199,0,10,10,0 +21734,637,201,0,11,11,0 +21733,637,199,0,10,10,0 +21723,636,201,0,11,11,0 +21722,636,66,12,3,3,0 +21712,635,201,0,11,11,0 +21711,635,66,9,3,3,0 +21701,634,199,0,10,10,0 +21691,633,199,0,10,10,0 +21681,632,66,0,10,10,0 +21666,655,86,0,10,10,0 +21662,655,32,59,1,1,6 +21664,655,37,48,3,3,1 +21661,655,66,23,6,6,1 +21660,655,6,52,2,2,4 +21654,654,86,0,10,10,0 +21650,654,32,59,1,1,6 +21652,654,37,45,3,3,1 +21649,654,66,22,6,6,1 +21648,654,6,46,2,2,3 +21638,653,32,50,1,1,5 +21639,653,82,21,6,6,0 +21640,653,37,43,3,3,1 +21637,653,66,16,7,7,1 +21636,653,6,43,2,2,3 +21627,652,32,50,1,1,5 +21628,652,82,21,6,6,0 +21626,652,66,13,7,7,1 +21625,652,6,34,4,4,2 +21624,651,85,0,11,11,0 +21618,651,37,33,2,2,1 +21616,651,32,50,1,1,5 +21615,651,66,13,7,7,1 +21614,651,6,25,5,5,1 +21607,650,37,33,2,2,1 +21605,650,32,50,1,1,5 +21604,650,66,10,7,7,1 +21603,650,6,16,5,5,0 +21594,649,32,41,1,1,4 +21595,649,82,15,5,5,0 +21593,649,66,10,6,6,1 +21592,649,6,10,7,7,0 +21584,648,32,32,1,1,3 +21586,648,37,31,2,2,1 +21583,648,66,10,6,6,1 +21582,648,6,7,7,7,0 +21574,647,32,23,2,2,2 +21576,647,37,25,1,1,1 +21573,647,66,10,6,6,1 +21572,647,6,7,7,7,0 +21570,646,187,15,3,3,0 +21565,646,32,14,4,4,1 +21564,646,66,10,6,6,1 +21563,646,6,3,7,7,0 +21560,645,86,0,7,7,0 +21558,645,37,13,4,4,1 +21556,645,32,14,3,3,1 +21555,645,66,1,6,6,0 +21554,645,6,0,8,8,0 +21547,644,32,5,4,4,0 +21548,644,82,3,5,5,0 +21546,644,66,0,6,6,0 +21545,644,6,0,7,7,0 +21539,643,32,2,5,5,0 +21540,643,82,3,4,4,0 +21369,665,182,45,3,3,2 +21359,664,182,39,2,2,2 +21350,663,182,30,3,3,1 +21342,662,6,4,5,5,0 +21336,661,187,20,3,3,0 +21328,660,187,18,3,3,0 +21318,659,6,4,5,5,0 +21537,643,6,0,7,7,0 +21388,666,183,0,10,10,0 +21386,666,180,47,3,3,2 +21380,666,6,7,6,6,0 +21379,666,182,49,2,2,2 +21374,665,196,63,1,1,6 +21373,665,66,6,6,6,0 +21372,665,187,29,4,4,0 +21371,665,191,0,8,8,0 +21370,665,6,7,5,5,0 +21367,664,197,0,9,9,0 +21366,664,180,38,3,3,1 +21365,664,167,0,7,7,0 +21363,664,66,2,6,6,0 +21361,664,191,0,8,8,0 +21360,664,6,5,5,5,0 +21354,663,66,2,6,6,0 +21353,663,187,27,4,4,0 +21352,663,191,0,8,8,0 +21351,663,6,5,5,5,0 +21349,662,197,0,9,9,0 +21343,662,191,0,8,8,0 +21341,662,182,28,3,3,1 +21335,661,191,0,8,8,0 +21334,661,6,4,5,5,0 +21333,661,182,19,4,4,0 +21327,660,191,0,8,8,0 +21326,660,6,4,5,5,0 +21325,660,182,13,4,4,0 +21320,659,187,15,3,3,0 +21319,659,191,0,8,8,0 +21317,659,182,9,4,4,0 +21310,658,6,0,8,8,0 +21311,658,191,0,7,7,0 +21309,658,182,7,4,4,0 +21303,657,6,0,7,7,0 +21302,657,182,1,5,5,0 +21297,656,191,0,5,5,0 +21296,656,6,0,6,6,0 +21295,656,182,0,7,7,0 +21102,678,1,0,14,14,0 +21101,678,26,0,13,13,0 +21100,678,82,8,9,9,0 +21099,678,187,49,2,2,3 +21098,678,195,14,7,7,0 +21097,678,66,28,5,5,0 +21085,677,1,0,14,14,0 +21084,677,26,0,13,13,0 +21083,677,82,8,9,9,0 +21082,677,187,43,3,3,3 +21081,677,195,14,6,6,0 +21080,677,66,25,5,5,0 +21068,676,1,0,14,14,0 +21067,676,26,0,13,13,0 +21066,676,170,0,17,17,0 +21065,676,89,0,16,16,0 +21064,676,183,0,15,15,0 +21063,676,190,0,12,12,0 +21051,675,1,0,14,14,0 +21050,675,26,0,13,13,0 +21049,675,82,8,8,8,0 +21048,675,187,31,4,4,2 +21047,675,195,12,6,6,0 +21046,675,66,21,5,5,0 +21034,674,1,0,14,14,0 +21033,674,26,0,13,13,0 +21032,674,170,0,17,17,0 +21031,674,89,0,16,16,0 +21030,674,183,0,15,15,0 +21029,674,190,0,12,12,0 +21017,673,82,6,8,8,0 +21016,673,187,22,3,3,1 +21015,673,195,12,6,6,0 +21014,673,66,17,5,5,0 +21013,673,170,0,15,15,0 +21002,672,170,0,15,15,0 +21001,672,89,0,14,14,0 +21000,672,190,0,13,13,0 +20999,672,183,0,12,12,0 +20998,672,66,17,5,5,0 +20987,671,170,0,15,15,0 +20986,671,89,0,14,14,0 +20985,671,190,0,13,13,0 +20984,671,183,0,12,12,0 +20983,671,66,16,3,3,0 +20972,670,82,0,11,11,0 +20971,670,187,17,2,2,1 +20970,670,195,9,4,4,0 +20969,670,66,12,3,3,0 +20968,670,170,0,15,15,0 +20957,669,170,0,15,15,0 +20956,669,89,0,14,14,0 +20955,669,190,0,13,13,0 +20954,669,183,0,12,12,0 +20953,669,66,6,4,4,0 +20942,668,66,0,10,10,0 +20941,668,170,0,14,14,0 +20940,668,89,0,13,13,0 +20939,668,190,0,12,12,0 +20928,667,195,0,13,13,0 +20927,667,66,0,12,12,0 +20926,667,170,0,11,11,0 +20915,689,184,0,15,15,0 +20914,689,193,0,20,20,0 +20913,689,26,0,14,14,0 +20912,689,82,0,18,18,0 +20911,689,90,0,19,19,0 +20910,689,189,0,17,17,0 +20909,689,187,0,12,12,0 +20908,689,182,0,13,13,0 +20895,688,184,0,15,15,0 +20894,688,193,0,20,20,0 +20893,688,26,0,14,14,0 +20892,688,82,0,18,18,0 +20891,688,90,0,19,19,0 +20890,688,189,0,17,17,0 +20889,688,187,0,13,13,0 +20888,688,182,0,12,12,0 +20875,687,184,0,14,14,0 +20874,687,193,0,19,19,0 +20873,687,26,0,13,13,0 +20872,687,82,0,17,17,0 +20871,687,90,0,18,18,0 +20870,687,189,0,16,16,0 +20869,687,182,0,12,12,0 +20856,686,184,0,14,14,0 +20855,686,193,0,19,19,0 +20854,686,26,0,13,13,0 +20853,686,82,0,17,17,0 +20852,686,90,0,18,18,0 +20851,686,189,0,16,16,0 +20850,686,182,0,12,12,0 +20837,685,90,0,18,18,0 +20836,685,26,0,13,13,0 +20835,685,182,0,12,12,0 +20834,685,193,0,19,19,0 +20833,685,180,19,3,3,2 +20832,685,82,0,17,17,0 +20831,685,190,9,6,6,1 +20818,684,184,0,12,12,0 +20817,684,82,0,15,15,0 +20816,684,189,0,14,14,0 +20815,684,193,0,16,16,0 +20814,684,190,9,6,6,1 +20813,684,180,19,2,2,2 +20802,683,184,0,12,12,0 +20801,683,82,0,15,15,0 +20800,683,189,0,14,14,0 +20799,683,190,9,6,6,1 +20798,683,180,10,5,5,1 +20787,682,180,10,4,4,1 +20786,682,82,0,15,15,0 +20785,682,190,9,5,5,1 +20784,682,172,0,13,13,0 +20783,682,194,3,10,10,0 +20772,681,180,9,3,3,1 +20771,681,82,0,15,15,0 +20770,681,190,0,14,14,0 +20769,681,172,0,12,12,0 +20768,681,194,3,8,8,0 +20757,680,184,0,10,10,0 +20756,680,190,0,13,13,0 +20755,680,82,0,14,14,0 +20754,680,189,0,12,12,0 +20743,679,66,0,9,9,0 +20742,679,189,0,8,8,0 +20724,698,183,1,10,10,0 +20720,698,191,42,1,1,4 +20730,698,6,31,2,2,2 +20728,698,188,1,12,12,0 +20727,698,192,0,13,13,0 +20726,698,189,4,7,7,0 +20725,698,66,22,4,4,1 +20723,698,172,8,6,6,0 +20722,698,181,1,11,11,0 +20721,698,176,13,5,5,1 +20707,697,181,1,10,10,0 +20705,697,191,40,1,1,4 +20714,697,167,24,3,3,0 +20712,697,192,0,12,12,0 +20711,697,189,2,7,7,0 +20710,697,66,22,4,4,1 +20709,697,183,1,9,9,0 +20708,697,172,8,6,6,0 +20706,697,176,13,5,5,1 +20696,696,189,2,7,7,0 +20697,696,192,0,11,11,0 +20695,696,66,22,3,3,1 +20694,696,183,1,8,8,0 +20693,696,172,7,5,5,0 +20692,696,181,1,9,9,0 +20691,696,176,4,6,6,0 +20690,696,191,40,1,1,4 +20682,695,66,22,3,3,1 +20678,695,176,2,7,7,0 +20679,695,181,1,8,8,0 +20680,695,172,7,5,5,0 +20683,695,189,2,6,6,0 +20681,695,183,0,10,10,0 +20677,695,191,39,1,1,4 +20664,694,191,30,1,1,3 +20665,694,176,2,7,7,0 +20666,694,181,1,8,8,0 +20667,694,172,7,5,5,0 +20668,694,183,0,10,10,0 +20669,694,66,19,3,3,1 +20670,694,189,2,6,6,0 +20656,693,66,13,3,3,1 +20657,693,189,2,6,6,0 +20655,693,183,0,9,9,0 +20654,693,172,3,5,5,0 +20653,693,181,1,7,7,0 +20652,693,176,0,11,11,0 +20651,693,191,21,1,1,2 +20642,692,181,1,6,6,0 +20643,692,172,0,8,8,0 +20644,692,183,0,7,7,0 +20641,692,176,0,9,9,0 +20640,692,191,12,2,2,1 +20634,691,66,9,2,2,1 +20636,691,188,0,11,11,0 +20632,691,172,0,6,6,0 +20631,691,181,0,8,8,0 +20630,691,176,0,7,7,0 +20629,691,191,3,4,4,0 +20625,690,183,0,8,8,0 +20623,690,172,0,4,4,0 +20621,690,176,0,6,6,0 +20620,690,191,0,7,7,0 +20497,708,181,5,7,7,0 +20498,708,170,14,5,5,0 +20499,708,6,26,4,4,0 +20495,708,172,54,1,1,6 +20494,708,176,2,8,8,0 +20493,708,186,0,12,12,0 +20492,708,184,0,13,13,0 +20491,708,180,0,14,14,0 +20490,708,93,0,15,15,0 +20489,708,167,0,16,16,0 +20488,708,11,11,6,6,1 +20479,707,172,54,1,1,6 +20483,707,6,26,3,3,0 +20481,707,181,2,6,6,0 +20480,707,183,24,4,4,0 +20478,707,176,1,8,8,0 +20477,707,186,0,12,12,0 +20476,707,184,0,13,13,0 +20475,707,180,0,14,14,0 +20474,707,93,0,15,15,0 +20473,707,167,0,16,16,0 +20472,707,11,2,7,7,0 +20465,706,181,2,6,6,0 +20466,706,170,13,5,5,0 +20463,706,172,54,1,1,6 +20462,706,176,1,8,8,0 +20461,706,186,0,12,12,0 +20460,706,184,0,13,13,0 +20459,706,180,0,14,14,0 +20458,706,93,0,15,15,0 +20457,706,167,0,16,16,0 +20456,706,11,2,7,7,0 +20449,705,181,2,6,6,0 +20450,705,170,11,5,5,0 +20451,705,6,21,3,3,0 +20447,705,172,54,1,1,6 +20446,705,176,0,9,9,0 +20445,705,186,0,12,12,0 +20444,705,184,0,13,13,0 +20443,705,180,0,14,14,0 +20442,705,93,0,15,15,0 +20441,705,167,0,16,16,0 +20440,705,11,2,7,7,0 +20431,704,172,45,1,1,5 +20435,704,6,20,3,3,0 +20433,704,181,2,6,6,0 +20432,704,183,11,4,4,0 +20430,704,176,0,9,9,0 +20429,704,186,0,12,12,0 +20428,704,184,0,13,13,0 +20427,704,180,0,14,14,0 +20426,704,93,0,15,15,0 +20425,704,167,0,16,16,0 +20424,704,11,2,7,7,0 +20417,703,181,2,6,6,0 +20418,703,170,8,4,4,0 +20415,703,172,36,1,1,4 +20414,703,176,0,10,10,0 +20413,703,186,0,12,12,0 +20412,703,184,0,13,13,0 +20411,703,180,0,14,14,0 +20410,703,93,0,15,15,0 +20409,703,167,0,16,16,0 +20408,703,11,1,7,7,0 +20399,702,172,27,1,1,3 +20403,702,6,16,3,3,0 +20401,702,181,2,6,6,0 +20400,702,183,6,5,5,0 +20398,702,176,0,10,10,0 +20397,702,186,0,12,12,0 +20396,702,184,0,13,13,0 +20395,702,180,0,14,14,0 +20394,702,93,0,15,15,0 +20393,702,167,0,16,16,0 +20392,702,11,1,7,7,0 +20385,701,181,1,6,6,0 +20386,701,170,8,4,4,0 +20387,701,6,12,3,3,0 +20383,701,172,18,2,2,2 +20382,701,176,0,10,10,0 +20381,701,186,0,12,12,0 +20380,701,184,0,13,13,0 +20379,701,180,0,14,14,0 +20378,701,93,0,15,15,0 +20377,701,167,0,16,16,0 +20376,701,11,1,7,7,0 +20373,700,185,0,10,10,0 +20368,700,183,0,6,6,0 +20369,700,181,1,5,5,0 +20367,700,172,9,3,3,1 +20366,700,176,0,9,9,0 +20365,700,186,0,12,12,0 +20364,700,184,0,13,13,0 +20363,700,180,0,14,14,0 +20362,700,93,0,15,15,0 +20361,700,167,0,16,16,0 +20360,700,11,0,11,11,0 +20357,699,66,4,3,3,0 +20350,699,185,0,10,10,0 +20349,699,186,0,11,11,0 +20348,699,184,0,12,12,0 +20347,699,180,0,13,13,0 +20346,699,93,0,14,14,0 +20345,699,167,0,15,15,0 +20171,718,181,7,6,6,0 +20168,718,6,45,1,1,3 +20169,718,94,5,7,7,0 +20167,718,183,30,4,4,2 +20166,718,176,3,8,8,0 +20165,718,170,16,5,5,0 +20164,718,172,37,3,3,3 +20163,718,66,42,2,2,2 +20158,717,181,7,6,6,0 +20155,717,6,43,1,1,3 +20156,717,94,5,7,7,0 +20154,717,183,21,4,4,1 +20153,717,176,3,8,8,0 +20152,717,170,16,5,5,0 +20151,717,172,36,3,3,3 +20150,717,66,42,2,2,2 +20144,716,172,35,3,3,3 +20141,716,181,3,7,7,0 +20142,716,94,4,6,6,0 +20140,716,170,16,5,5,0 +20139,716,176,3,8,8,0 +20138,716,183,21,4,4,1 +20137,716,6,37,1,1,3 +20131,715,66,36,1,1,1 +20129,715,181,3,6,6,0 +20128,715,170,10,5,5,0 +20127,715,176,3,7,7,0 +20126,715,183,21,4,4,1 +20125,715,6,28,3,3,2 +20122,714,92,0,10,10,0 +20120,714,172,34,1,1,3 +20117,714,181,3,6,6,0 +20116,714,170,10,5,5,0 +20115,714,176,3,7,7,0 +20114,714,183,17,4,4,1 +20113,714,6,19,3,3,1 +20110,713,182,0,11,11,0 +20105,713,170,10,5,5,0 +20104,713,176,3,6,6,0 +20103,713,183,17,3,3,1 +20102,713,6,10,4,4,0 +20101,712,95,0,10,10,0 +20099,712,172,25,1,1,2 +20094,712,176,3,6,6,0 +20093,712,183,14,3,3,1 +20092,712,6,6,5,5,0 +20089,711,92,0,9,9,0 +20085,711,170,8,3,3,0 +20086,711,181,0,8,8,0 +20087,711,94,0,7,7,0 +20084,711,176,3,6,6,0 +20083,711,183,5,5,5,0 +20082,711,6,6,4,4,0 +20078,710,92,0,10,10,0 +19934,728,173,0,22,22,0 +19936,728,177,0,20,20,0 +19929,728,94,6,6,6,0 +19927,728,66,36,2,2,2 +19926,728,95,5,7,7,0 +19925,728,6,26,4,4,1 +19924,728,172,54,1,1,7 +19923,728,176,4,8,8,0 +19922,728,26,0,9,9,0 +19921,728,34,28,3,3,0 +19920,728,54,0,12,12,0 +19919,728,92,0,11,11,0 +19914,727,32,0,15,15,0 +19916,727,179,0,18,18,0 +19905,727,172,54,1,1,6 +19909,727,170,23,5,5,0 +19903,727,26,0,9,9,0 +19902,727,34,24,4,4,0 +19901,727,54,0,12,12,0 +19900,727,92,0,11,11,0 +19896,726,173,0,18,18,0 +19898,726,177,0,16,16,0 +19892,726,94,6,6,6,0 +19890,726,66,35,2,2,2 +19885,726,26,0,9,9,0 +19884,726,34,18,5,5,0 +19883,726,54,0,12,12,0 +19882,726,92,0,11,11,0 +19876,725,97,0,12,12,0 +19874,725,170,21,4,4,0 +19869,725,176,4,8,8,0 +19868,725,26,0,9,9,0 +19867,725,34,15,5,5,0 +19866,725,54,0,11,11,0 +19865,725,92,0,10,10,0 +19863,724,177,0,14,14,0 +19860,724,170,17,4,4,0 +19858,724,95,4,6,6,0 +19853,724,34,13,5,5,0 +19851,724,92,0,10,10,0 +19846,723,66,18,2,2,1 +19842,723,176,2,7,7,0 +19840,723,34,13,4,4,0 +19838,723,92,0,10,10,0 +19833,722,95,1,8,8,0 +19826,722,92,0,10,10,0 +19836,722,94,3,6,6,0 +19829,722,26,0,9,9,0 +19827,722,54,0,11,11,0 +19822,721,66,14,2,2,1 +19820,721,6,7,5,5,0 +19816,721,34,10,4,4,0 +19814,721,92,0,9,9,0 +19813,720,170,10,3,3,0 +19807,720,172,10,2,2,1 +19616,737,97,0,15,15,0 +19617,737,34,6,7,7,0 +19618,737,100,0,10,10,0 +19614,737,66,42,1,1,4 +19612,737,175,0,16,16,0 +19590,736,99,0,9,9,0 +19589,736,26,19,4,4,0 +19373,744,6,45,1,1,5 +19372,744,172,26,2,2,2 +19329,739,6,15,1,1,1 +19328,739,172,13,2,2,1 +19322,738,66,0,6,6,0 +19321,738,99,0,7,7,0 +18927,764,101,0,14,14,0 +18926,764,169,0,10,10,0 +18925,764,117,0,5,5,0 +18924,764,105,0,9,9,0 +18923,764,95,0,8,8,0 +18922,764,32,5,4,4,0 +18921,764,66,18,3,3,1 +18920,764,167,0,6,6,0 +18919,764,6,32,2,2,2 +18918,764,170,40,1,1,5 +18912,763,105,0,7,7,0 +18911,763,95,0,9,9,0 +18910,763,32,3,4,4,0 +18909,763,66,18,3,3,1 +18908,763,167,0,6,6,0 +18907,763,6,32,2,2,2 +18906,763,170,38,1,1,4 +18898,762,32,3,4,4,0 +18897,762,66,18,3,3,1 +18896,762,167,0,6,6,0 +18895,762,6,28,2,2,2 +18894,762,170,34,1,1,3 +22707,582,64,7,5,5,0 +22705,582,6,35,1,1,3 +22703,582,67,2,9,9,0 +22699,582,202,2.5,8,8,0 +22702,582,32,6,6,6,0 +22724,583,64,16,5,5,1 +22722,583,6,41,1,1,3 +22720,583,67,2,9,9,0 +22716,583,202,3.5,7,7,0 +22741,584,34,36,2,2,1 +22744,584,56,0,17,17,0 +22740,584,6,50,1,1,4 +22738,584,67,2,9,9,0 +22734,584,202,3.5,8,8,0 +22759,585,34,42,2,2,1 +22762,585,56,0,17,17,0 +22758,585,6,50,1,1,4 +22752,585,202,3.5,8,8,0 +22778,586,34,51,2,2,2 +22781,586,56,0,17,17,0 +22777,586,6,54,1,1,4 +22771,586,202,6.5,6,6,0 +22791,587,26,0,16,16,0 +22792,587,37,7.5,7,7,1 +22793,587,32,7,8,8,0 +22790,587,202,8.5,6,6,0 +22811,588,26,0,16,16,0 +22812,588,37,7.5,7,7,1 +22813,588,32,7,8,8,0 +22810,588,202,9.5,6,6,0 +22831,589,26,0,17,17,0 +22832,589,37,7.5,8,8,1 +22833,589,32,9,7,7,0 +22830,589,202,9.5,6,6,0 +22862,560,66,0,13,13,0 +22879,561,64,0,15,15,0 +22896,562,64,0,16,16,0 +22914,563,64,0,17,17,0 +22915,563,182,0,19,19,0 +22933,564,66,0,19,19,0 +22934,564,64,0,18,18,0 +22952,565,66,0,19,19,0 +22953,565,64,0,18,18,0 +22971,566,64,0,18,18,0 +22972,566,66,0,19,19,0 +22990,567,70,0,15,15,0 +22991,567,182,0,17,17,0 +23009,568,70,0,16,16,0 +23010,568,182,0,18,18,0 +23028,569,64,0,15,15,0 +23029,569,66,0,19,19,0 +23047,570,64,0,15,15,0 +23048,570,66,0,19,19,0 +23066,571,64,0,15,15,0 +23067,571,66,0,19,19,0 +23085,572,64,0,15,15,0 +23086,572,66,0,19,19,0 +23104,573,64,0,15,15,0 +23105,573,66,0,19,19,0 +23123,574,64,0,15,15,0 +23124,574,66,0,19,19,0 +23144,575,66,0,20,20,0 +23145,575,74,0,21,21,0 +23988,512,21,0,6,6,0 +23986,512,57,0,8,8,0 +23984,512,59,0,10,10,0 +23982,512,4,0,12,12,0 +24007,513,32,12,2,2,0 +24006,513,1,4,3,3,0 +24005,513,56,1,6,6,0 +23996,513,204,0,14,14,0 +23981,512,204,0,13,13,0 +24030,515,6,33,1,1,2 +24037,515,32,20,3,3,0 +24036,515,1,4,5,5,0 +24056,516,61,0,16,16,0 +24046,516,57,0,13,13,0 +24043,516,25,11,4,4,0 +24049,516,58,0,9,9,0 +24062,517,57,0,14,14,0 +24059,517,25,15,4,4,0 +24079,518,57,0,14,14,0 +24076,518,25,15,4,4,0 +24097,519,3,14,5,5,0 +24094,519,59,0,12,12,0 +24092,519,4,13,6,6,1 +24114,520,3,23,4,4,1 +24117,520,56,1,10,10,0 +24111,520,59,0,12,12,0 +24109,520,4,19,6,6,1 +24129,521,6,65,1,1,4 +24128,521,59,0,12,12,0 +24127,521,25,21,5,5,0 +24125,521,204,1,9,9,0 +24126,521,4,19,6,6,1 +24166,523,57,0,14,14,0 +24163,523,58,0,11,11,0 +24161,523,1,13,7,7,0 +24159,523,27,61,2,2,3 +24181,524,21,5,9,9,0 +24179,524,56,1,10,10,0 +24177,524,32,39,4,4,0 +24176,524,27,61,3,3,3 +24198,525,58,0,11,11,0 +24196,525,1,14,7,7,0 +24195,525,32,39,4,4,0 +24194,525,27,61,3,3,3 +24218,526,21,5,9,9,0 +24216,526,56,1,12,12,0 +24214,526,32,39,4,4,0 +24213,526,27,61,3,3,3 +24232,337,6,43,1,1,1 +24233,337,1,21,2,2,0 +24234,337,9,16,4,4,0 +24235,337,131,18,3,3,0 +24236,337,10,2,5,5,0 +24237,337,3,1,6,6,0 +24238,337,4,0,7,7,0 +24239,337,5,0,8,8,0 +24240,337,205,0,9,9,0 +24241,337,15,0,10,10,0 +24242,337,164,0,11,11,0 +24243,337,166,0,12,12,0 +24244,338,6,70,1,1,1 +24245,338,1,54,2,2,1 +24246,338,9,18,5,5,0 +24247,338,131,29,3,3,0 +24248,338,10,8,6,6,0 +24249,338,3,5,7,7,0 +24250,338,4,18,4,4,0 +24251,338,5,0,8,8,0 +24252,338,205,0,10,10,0 +24253,338,15,0,9,9,0 +24254,338,164,0,11,11,0 +24255,338,166,0,12,12,0 +24256,339,6,76,1,1,1 +24257,339,1,66,2,2,1 +24258,339,9,61,3,3,1 +24259,339,131,44,4,4,0 +24260,339,10,18,6,6,0 +24261,339,3,6,7,7,0 +24262,339,4,30,5,5,0 +24263,339,5,2,8,8,0 +24264,339,205,0,10,10,0 +24265,339,15,0,9,9,0 +24266,339,164,0,11,11,0 +24267,339,166,0,12,12,0 +24268,340,6,90,2,2,1 +24269,340,1,109,1,1,2 +24270,340,9,73,3,3,1 +24271,340,131,60,4,4,0 +24272,340,10,18,6,6,0 +24273,340,3,6,7,7,0 +24274,340,4,46,5,5,0 +24275,340,5,2,8,8,0 +24276,340,205,0,10,10,0 +24277,340,15,0,9,9,0 +24278,340,164,0,11,11,0 +24279,340,166,0,12,12,0 +24280,341,6,116,2,2,1 +24281,341,1,119,1,1,2 +24282,341,9,113,3,3,2 +24283,341,131,72,4,4,0 +24284,341,10,24,6,6,0 +24285,341,3,8,7,7,0 +24286,341,4,50,5,5,0 +24287,341,5,3,8,8,0 +24288,341,205,0,10,10,0 +24289,341,15,0,9,9,0 +24290,341,164,0,11,11,0 +24291,341,166,0,12,12,0 +24316,343,6,146,3,3,1 +24315,342,166,0,12,12,0 +24314,342,164,0,11,11,0 +24312,342,205,0,10,10,0 +24310,342,4,65,5,5,0 +24307,342,131,78,4,4,0 +24313,342,15,0,9,9,0 +24309,342,3,8,7,7,0 +24311,342,5,4,8,8,0 +24308,342,10,30,6,6,0 +24306,342,9,156,1,1,3 +24305,342,1,129,3,3,2 +24304,342,6,136,2,2,1 +24317,343,1,172,1,1,3 +24318,343,9,171,2,2,3 +24319,343,131,100,4,4,0 +24320,343,10,32,6,6,0 +24321,343,3,8,7,7,0 +24322,343,4,73,5,5,0 +24323,343,5,4,8,8,0 +24324,343,205,0,10,10,0 +24325,343,15,1,9,9,0 +24326,343,164,0,11,11,0 +24327,343,166,0,12,12,0 +24328,344,6,161,3,3,1 +24329,344,1,215,1,1,4 +24330,344,9,193,2,2,3 +24331,344,131,108,4,4,0 +24332,344,10,35,6,6,0 +24333,344,3,8,8,8,0 +24334,344,4,79,5,5,0 +24335,344,5,8,7,7,0 +24336,344,205,0,10,10,0 +24337,344,15,1,9,9,0 +24338,344,164,0,11,11,0 +24339,344,166,0,12,12,0 +24340,345,6,165,3,3,1 +24341,345,1,248,1,1,4 +24342,345,9,218,2,2,4 +24343,345,131,109,4,4,0 +24344,345,10,43,6,6,0 +24345,345,3,20,7,7,0 +24346,345,4,89,5,5,0 +24347,345,5,10,8,8,0 +24348,345,205,0,10,10,0 +24349,345,15,7,9,9,0 +24350,345,164,0,11,11,0 +24351,345,166,0,12,12,0 +24352,346,6,165,3,3,1 +24353,346,1,278,1,1,4 +24354,346,9,249,2,2,5 +24355,346,131,126,4,4,0 +24356,346,10,47,6,6,0 +24357,346,3,31,7,7,0 +24358,346,4,89,5,5,0 +24359,346,5,10,9,9,0 +24360,346,205,0,10,10,0 +24361,346,15,15,8,8,0 +24362,346,164,0,11,11,0 +24363,346,166,0,12,12,0 +24364,347,6,208,3,3,2 +24365,347,1,300,1,1,4 +24366,347,9,272,2,2,5 +24367,347,131,132,4,4,0 +24368,347,10,47,6,6,0 +24369,347,3,31,7,7,0 +24370,347,4,96,5,5,0 +24371,347,5,10,9,9,0 +24372,347,205,0,10,10,0 +24373,347,15,15,8,8,0 +24374,347,164,0,11,11,0 +24375,347,166,0,12,12,0 +24376,348,6,238,3,3,2 +24377,348,1,304,2,2,4 +24378,348,9,312,1,1,6 +24379,348,131,132,4,4,0 +24380,348,10,47,6,6,0 +24381,348,3,40,7,7,0 +24382,348,4,106,5,5,0 +24383,348,5,10,9,9,0 +24384,348,205,0,10,10,0 +24385,348,15,23,8,8,0 +24386,348,164,0,11,11,0 +24387,348,166,0,12,12,0 +24388,349,6,250,3,3,2 +24389,349,1,329,2,2,5 +24390,349,9,330,1,1,6 +24391,349,131,146,4,4,0 +24392,349,10,58,6,6,0 +24393,349,3,40,7,7,0 +24394,349,4,123,5,5,0 +24395,349,5,10,9,9,0 +24396,349,205,0,10,10,0 +24397,349,15,27,8,8,0 +24398,349,164,0,11,11,0 +24399,349,166,0,12,12,0 +24400,350,6,290,3,3,3 +24401,350,1,347,2,2,5 +24402,350,9,350,1,1,6 +24403,350,131,158,4,4,0 +24404,350,10,58,6,6,0 +24405,350,3,47,7,7,0 +24406,350,4,127,5,5,0 +24407,350,5,10,9,9,0 +24408,350,205,0,10,10,0 +24409,350,15,27,8,8,0 +24410,350,164,0,11,11,0 +24411,350,166,0,12,12,0 +24447,351,166,0,12,12,0 +24446,351,164,0,11,11,0 +24445,351,15,27,8,8,0 +24444,351,205,0,10,10,0 +24443,351,5,10,9,9,0 +24442,351,4,133,5,5,0 +24437,351,1,359,2,2,5 +24438,351,9,383,1,1,6 +24439,351,131,168,4,4,0 +24440,351,10,60,6,6,0 +24441,351,3,56,7,7,0 +24436,351,6,319,3,3,4 +24483,353,166,0,12,12,0 +24459,352,166,0,12,12,0 +24458,352,164,0,11,11,0 +24457,352,15,37,8,8,0 +24456,352,205,0,10,10,0 +24455,352,5,11,9,9,0 +24454,352,4,133,5,5,0 +24449,352,1,381,2,2,5 +24450,352,9,426,1,1,7 +24451,352,131,176,4,4,0 +24452,352,10,60,6,6,0 +24453,352,3,58,7,7,0 +24448,352,6,334,3,3,4 +24481,353,15,43,8,8,0 +24479,353,5,11,9,9,0 +24477,353,3,65,7,7,0 +24475,353,131,188,4,4,0 +24482,353,164,0,11,11,0 +24478,353,4,143,5,5,0 +24480,353,205,0,10,10,0 +24474,353,9,426,1,1,7 +24476,353,10,68,6,6,0 +24473,353,1,399,2,2,5 +24472,353,6,374,3,3,5 +24484,354,6,389,3,3,5 +24485,354,1,421,2,2,5 +24486,354,9,469,1,1,8 +24487,354,131,202,4,4,0 +24488,354,10,68,7,7,0 +24489,354,3,69,6,6,0 +24490,354,4,145,5,5,0 +24491,354,5,11,9,9,0 +24492,354,205,0,10,10,0 +24493,354,15,44,8,8,0 +24494,354,164,0,11,11,0 +24495,354,166,0,12,12,0 +24496,355,6,396,3,3,5 +24497,355,1,454,2,2,5 +24498,355,9,498,1,1,9 +24499,355,131,214,4,4,0 +24500,355,10,68,7,7,0 +24501,355,3,69,6,6,0 +24502,355,4,163,5,5,0 +24503,355,5,13,9,9,0 +24504,355,205,0,10,10,0 +24505,355,15,44,8,8,0 +24506,355,164,0,11,11,0 +24507,355,166,0,12,12,0 +24517,75,18,0,9,9,0 +24542,842,4,30,4,4,0 +24541,842,1,48,2,2,0 +24540,842,9,72,1,1,2 +24669,841,131,0,10,10,0 +24668,841,3,0,9,9,0 +24667,841,166,0,8,8,0 +24666,841,205,0,7,7,0 +24665,841,10,3,6,6,0 +24664,841,5,4,5,5,0 +24663,841,6,18,3,3,0 +24662,841,4,15,4,4,0 +24661,841,1,26,2,2,0 +24660,841,9,35,1,1,1 +24543,842,6,36,3,3,0 +24544,842,5,4,6,6,0 +24545,842,10,4,7,7,0 +24546,842,205,0,9,9,0 +24547,842,166,0,10,10,0 +24548,842,3,0,11,11,0 +24549,842,131,2,8,8,0 +24550,842,15,6,5,5,0 +24551,842,164,0,12,12,0 +24552,843,9,105,1,1,2 +24553,843,1,85,2,2,1 +24554,843,4,32,4,4,0 +24555,843,6,50,3,3,0 +24556,843,5,4,7,7,0 +24557,843,10,4,8,8,0 +24558,843,205,0,9,9,0 +24559,843,166,0,11,11,0 +24560,843,3,0,10,10,0 +24561,843,131,16,5,5,0 +24562,843,15,7,6,6,0 +24563,843,164,0,12,12,0 +24564,844,9,148,1,1,3 +24565,844,1,105,2,2,1 +24566,844,4,42,4,4,0 +24567,844,6,65,3,3,0 +24568,844,5,6,7,7,0 +24569,844,10,4,8,8,0 +24570,844,205,0,9,9,0 +24571,844,166,0,11,11,0 +24572,844,3,0,10,10,0 +24573,844,131,26,5,5,0 +24574,844,15,8,6,6,0 +24575,844,164,0,12,12,0 +24576,845,9,185,1,1,4 +24577,845,1,138,2,2,1 +24578,845,4,46,4,4,0 +24579,845,6,75,3,3,0 +24580,845,5,6,7,7,0 +24581,845,10,4,8,8,0 +24582,845,205,0,10,10,0 +24583,845,166,0,11,11,0 +24584,845,3,0,9,9,0 +24585,845,131,40,5,5,0 +24586,845,15,11,6,6,0 +24587,845,164,0,12,12,0 +24588,846,9,222,1,1,5 +24589,846,1,161,2,2,1 +24590,846,4,50,4,4,0 +24591,846,6,93,3,3,0 +24592,846,5,7,8,8,0 +24593,846,10,10,7,7,0 +24594,846,205,0,10,10,0 +24595,846,166,0,11,11,0 +24596,846,3,2,9,9,0 +24597,846,131,40,5,5,0 +24598,846,15,21,6,6,0 +24599,846,164,0,12,12,0 +24600,847,9,255,1,1,5 +24601,847,1,186,2,2,2 +24602,847,4,60,4,4,0 +24603,847,6,101,3,3,0 +24604,847,5,12,7,7,0 +24605,847,10,10,8,8,0 +24606,847,205,0,10,10,0 +24607,847,166,0,12,12,0 +24608,847,3,4,9,9,0 +24609,847,131,52,5,5,0 +24610,847,15,27,6,6,0 +24611,847,164,0,11,11,0 +24612,848,9,295,1,1,6 +24613,848,1,206,2,2,2 +24614,848,4,61,4,4,0 +24615,848,6,129,3,3,0 +24616,848,5,16,7,7,0 +24617,848,10,12,8,8,0 +24618,848,205,0,10,10,0 +24619,848,166,0,12,12,0 +24620,848,3,4,9,9,0 +24621,848,131,58,5,5,0 +24622,848,15,27,6,6,0 +24623,848,164,0,11,11,0 +24624,849,9,328,1,1,6 +24625,849,1,218,2,2,2 +24626,849,4,65,5,5,0 +24627,849,6,164,3,3,1 +24628,849,5,17,7,7,0 +24629,849,10,12,8,8,0 +24630,849,205,0,10,10,0 +24631,849,166,0,12,12,0 +24632,849,3,4,9,9,0 +24633,849,131,68,4,4,0 +24634,849,15,33,6,6,0 +24635,849,164,0,11,11,0 +24636,850,9,355,1,1,6 +24637,850,1,243,2,2,3 +24638,850,4,66,5,5,0 +24639,850,6,192,3,3,1 +24640,850,5,17,8,8,0 +24641,850,10,20,7,7,0 +24642,850,205,0,10,10,0 +24643,850,166,0,12,12,0 +24644,850,3,4,9,9,0 +24645,850,131,78,4,4,0 +24646,850,15,35,6,6,0 +24647,850,164,0,11,11,0 +24648,851,9,383,1,1,6 +24649,851,1,280,2,2,4 +24650,851,4,66,5,5,0 +24651,851,6,215,3,3,1 +24652,851,5,22,8,8,0 +24653,851,10,26,7,7,0 +24654,851,205,0,10,10,0 +24655,851,166,0,12,12,0 +24656,851,3,4,9,9,0 +24657,851,131,80,4,4,0 +24658,851,15,35,6,6,0 +24659,851,164,0,11,11,0 +24670,852,9,426,1,1,7 +24671,852,1,295,2,2,4 +24672,852,4,68,5,5,0 +24673,852,6,231,3,3,1 +24674,852,5,22,8,8,0 +24675,852,10,32,7,7,0 +24676,852,205,0,10,10,0 +24677,852,166,0,12,12,0 +24678,852,3,5,9,9,0 +24679,852,131,98,4,4,0 +24680,852,15,35,6,6,0 +24681,852,164,0,11,11,0 +24682,853,9,451,1,1,8 +24683,853,1,325,2,2,4 +24684,853,4,70,5,5,0 +24685,853,6,254,3,3,1 +24686,853,5,29,8,8,0 +24687,853,10,36,6,6,0 +24688,853,205,0,10,10,0 +24689,853,166,0,12,12,0 +24690,853,3,5,9,9,0 +24691,853,131,108,4,4,0 +24692,853,15,35,7,7,0 +24693,853,164,0,11,11,0 +24694,854,9,491,1,1,9 +24695,854,1,353,2,2,4 +24696,854,4,70,5,5,0 +24697,854,6,268,3,3,1 +24698,854,5,29,8,8,0 +24699,854,10,48,6,6,0 +24700,854,205,0,10,10,0 +24701,854,166,0,12,12,0 +24702,854,3,5,9,9,0 +24703,854,131,114,4,4,0 +24704,854,15,36,7,7,0 +24705,854,164,0,11,11,0 +24706,855,9,518,1,1,9 +24707,855,1,388,2,2,5 +24708,855,4,72,5,5,0 +24709,855,6,292,3,3,1 +24710,855,5,29,8,8,0 +24711,855,10,48,6,6,0 +24712,855,205,0,10,10,0 +24713,855,166,0,12,12,0 +24714,855,3,5,9,9,0 +24715,855,131,123,4,4,0 +24716,855,15,40,7,7,0 +24717,855,164,0,11,11,0 +24718,856,9,558,1,1,10 +24719,856,1,418,2,2,5 +24720,856,4,72,5,5,0 +24721,856,6,310,3,3,1 +24722,856,5,37,8,8,0 +24723,856,10,49,6,6,0 +24724,856,205,0,10,10,0 +24725,856,166,0,12,12,0 +24726,856,3,5,9,9,0 +24727,856,131,127,4,4,0 +24728,856,15,40,7,7,0 +24729,856,164,0,11,11,0 +24730,857,9,595,1,1,11 +24731,857,1,442,2,2,5 +24732,857,4,72,5,5,0 +24733,857,6,325,3,3,1 +24734,857,5,41,8,8,0 +24735,857,10,51,6,6,0 +24736,857,205,0,10,10,0 +24737,857,166,0,12,12,0 +24738,857,3,5,9,9,0 +24739,857,131,145,4,4,0 +24740,857,15,41,7,7,0 +24741,857,164,0,11,11,0 +24742,858,9,607,1,1,11 +24743,858,1,482,2,2,6 +24744,858,4,72,5,5,0 +24745,858,6,353,3,3,1 +24746,858,5,41,8,8,0 +24747,858,10,57,6,6,0 +24748,858,205,0,10,10,0 +24749,858,166,0,12,12,0 +24750,858,3,5,9,9,0 +24751,858,131,159,4,4,0 +24752,858,15,42,7,7,0 +24753,858,164,0,11,11,0 +24754,859,9,650,1,1,12 +24755,859,1,497,2,2,6 +24756,859,4,73,5,5,0 +24757,859,6,375,3,3,1 +24758,859,5,41,8,8,0 +24759,859,10,69,6,6,0 +24760,859,205,0,10,10,0 +24761,859,166,0,12,12,0 +24762,859,3,5,9,9,0 +24763,859,131,165,4,4,0 +24764,859,15,44,7,7,0 +24765,859,164,0,11,11,0 +24941,860,206,0,10,10,0 +24942,860,207,0,11,11,0 +24932,860,1,40,1,1,1 +24940,860,3,0,9,9,0 +24939,860,131,0,8,8,0 +24938,860,10,1,7,7,0 +24937,860,5,2,6,6,0 +24936,860,208,6,5,5,0 +24935,860,15,12,3,3,0 +24934,860,6,10,4,4,0 +24933,860,9,30,2,2,0 +24777,861,1,55,1,1,1 +24778,861,9,42,2,2,0 +24779,861,6,35,3,3,1 +24780,861,15,30,4,4,0 +24781,861,208,16,5,5,0 +24782,861,5,6,8,8,0 +24783,861,10,9,6,6,0 +24784,861,131,1,9,9,0 +24785,861,3,8,7,7,0 +24786,861,206,0,10,10,0 +24787,861,207,0,11,11,0 +24788,861,164,0,12,12,0 +24789,862,1,88,1,1,1 +24790,862,9,64,2,2,0 +24791,862,6,37,3,3,1 +24792,862,15,31,4,4,0 +24793,862,208,24,6,6,0 +24794,862,5,6,9,9,0 +24795,862,10,9,8,8,0 +24796,862,131,26,5,5,1 +24797,862,3,18,7,7,0 +24798,862,206,0,10,10,0 +24799,862,207,0,11,11,0 +24800,862,164,0,12,12,0 +24847,864,164,0,12,12,0 +24846,864,207,0,11,11,0 +24844,864,3,43,6,6,1 +24843,864,131,43,5,5,1 +24842,864,10,18,8,8,0 +24840,864,208,84,3,3,0 +24845,864,206,0,10,10,0 +24841,864,5,6,9,9,0 +24839,864,15,41,7,7,0 +24838,864,6,63,4,4,1 +24837,864,9,109,1,1,1 +24836,864,1,98,2,2,1 +24824,863,1,92,2,2,1 +24825,863,9,101,1,1,1 +24826,863,6,45,4,4,1 +24827,863,15,31,6,6,0 +24828,863,208,57,3,3,0 +24829,863,5,6,9,9,0 +24830,863,10,17,8,8,0 +24831,863,131,37,5,5,1 +24832,863,3,18,7,7,0 +24833,863,206,0,10,10,0 +24834,863,207,0,11,11,0 +24835,863,164,0,12,12,0 +24848,865,1,108,2,2,1 +24849,865,9,146,1,1,2 +24850,865,6,86,3,3,1 +24851,865,15,41,7,7,0 +24852,865,208,86,4,4,0 +24853,865,5,6,9,9,0 +24854,865,10,28,8,8,0 +24855,865,131,61,5,5,1 +24856,865,3,44,6,6,1 +24857,865,206,0,11,11,0 +24858,865,207,0,10,10,0 +24859,865,164,0,12,12,0 +24860,866,1,133,2,2,2 +24861,866,9,164,1,1,2 +24862,866,6,97,4,4,1 +24863,866,15,58,6,6,0 +24864,866,208,108,3,3,0 +24865,866,5,6,9,9,0 +24866,866,10,28,8,8,0 +24867,866,131,69,5,5,1 +24868,866,3,44,7,7,1 +24869,866,206,0,11,11,0 +24870,866,207,0,10,10,0 +24871,866,164,0,12,12,0 +24872,867,1,137,2,2,2 +24873,867,9,176,1,1,2 +24874,867,6,122,4,4,2 +24875,867,15,60,6,6,0 +24876,867,208,126,3,3,0 +24877,867,5,6,9,9,0 +24878,867,10,44,8,8,0 +24879,867,131,92,5,5,1 +24880,867,3,45,7,7,1 +24881,867,206,0,11,11,0 +24882,867,207,0,10,10,0 +24883,867,164,0,12,12,0 +24884,868,1,142,4,4,2 +24885,868,9,216,1,1,3 +24886,868,6,152,2,2,2 +24887,868,15,60,6,6,0 +24888,868,208,144,3,3,0 +24889,868,5,6,9,9,0 +24890,868,10,44,8,8,0 +24891,868,131,98,5,5,1 +24892,868,3,47,7,7,1 +24893,868,206,0,11,11,0 +24894,868,207,0,10,10,0 +24895,868,164,0,12,12,0 +24977,869,207,0,10,10,0 +24978,869,164,0,12,12,0 +24974,869,131,105,5,5,1 +24976,869,206,0,11,11,0 +24975,869,3,47,7,7,1 +24973,869,10,46,8,8,0 +24972,869,5,6,9,9,0 +24971,869,208,159,4,4,0 +24970,869,15,80,6,6,0 +24969,869,6,177,2,2,3 +24968,869,9,230,1,1,3 +24967,869,1,160,3,3,2 +24990,870,164,0,12,12,0 +24988,870,206,0,11,11,0 +24985,870,10,46,8,8,0 +24992,871,9,272,1,1,3 +24989,870,207,0,10,10,0 +24986,870,131,106,5,5,1 +24991,871,1,218,2,2,4 +24979,870,1,193,2,2,3 +24980,870,9,246,1,1,3 +24983,870,208,192,3,3,0 +24982,870,15,80,6,6,0 +24981,870,6,189,4,4,3 +24987,870,3,53,7,7,1 +24984,870,5,6,9,9,0 +24993,871,6,199,4,4,3 +24994,871,15,80,6,6,0 +24995,871,208,207,3,3,0 +24996,871,5,12,9,9,0 +24997,871,10,59,7,7,0 +24998,871,131,112,5,5,1 +24999,871,3,53,8,8,1 +25000,871,206,0,11,11,0 +25001,871,207,0,10,10,0 +25002,871,164,0,12,12,0 +25003,872,1,243,2,2,5 +25004,872,9,272,1,1,3 +25005,872,6,226,3,3,3 +25006,872,15,100,6,6,0 +25007,872,208,217,4,4,0 +25008,872,5,12,9,9,0 +25009,872,10,63,7,7,0 +25010,872,131,126,5,5,1 +25011,872,3,54,8,8,1 +25012,872,206,0,11,11,0 +25013,872,207,0,10,10,0 +25014,872,164,0,12,12,0 +25050,873,164,0,12,12,0 +25049,873,207,0,11,11,0 +25047,873,3,54,8,8,1 +25045,873,10,75,7,7,0 +25043,873,208,231,4,4,0 +25048,873,206,0,10,10,0 +25044,873,5,14,9,9,0 +25046,873,131,136,5,5,1 +25042,873,15,101,6,6,0 +25041,873,6,245,3,3,3 +25040,873,9,297,1,1,4 +25039,873,1,261,2,2,5 +25062,874,164,0,12,12,0 +25061,874,207,0,11,11,0 +25059,874,3,58,8,8,1 +25057,874,10,81,7,7,0 +25055,874,208,239,4,4,0 +25060,874,206,0,10,10,0 +25056,874,5,15,9,9,0 +25058,874,131,136,5,5,1 +25054,874,15,116,6,6,0 +25053,874,6,263,3,3,3 +25052,874,9,324,1,1,5 +25051,874,1,283,2,2,5 +25063,875,1,284,3,3,5 +25064,875,9,367,1,1,6 +25065,875,6,290,2,2,3 +25066,875,15,116,6,6,0 +25067,875,208,255,4,4,0 +25068,875,5,21,9,9,0 +25069,875,10,89,7,7,0 +25070,875,131,136,5,5,1 +25071,875,3,58,8,8,1 +25072,875,206,0,10,10,0 +25073,875,207,0,11,11,0 +25074,875,164,0,12,12,0 +25098,876,164,0,12,12,0 +25097,876,207,0,11,11,0 +25095,876,3,59,8,8,1 +25093,876,10,93,7,7,0 +25091,876,208,263,4,4,0 +25096,876,206,0,10,10,0 +25092,876,5,21,9,9,0 +25094,876,131,136,5,5,1 +25090,876,15,116,6,6,0 +25089,876,6,316,2,2,3 +25088,876,9,407,1,1,7 +25087,876,1,306,3,3,5 +25099,877,1,318,3,3,5 +25100,877,9,422,1,1,7 +25101,877,6,340,2,2,3 +25102,877,15,124,6,6,0 +25103,877,208,288,4,4,1 +25104,877,5,22,9,9,0 +25105,877,10,95,7,7,0 +25106,877,131,136,5,5,1 +25107,877,3,73,8,8,1 +25108,877,206,0,10,10,0 +25109,877,207,0,11,11,0 +25110,877,164,0,12,12,0 +25111,878,1,353,3,3,6 +25112,878,9,440,1,1,7 +25113,878,6,367,2,2,3 +25114,878,15,124,6,6,0 +25115,878,208,302,4,4,1 +25116,878,5,22,9,9,0 +25117,878,10,99,7,7,0 +25118,878,131,136,5,5,1 +25119,878,3,76,8,8,1 +25120,878,206,0,10,10,0 +25121,878,207,0,11,11,0 +25122,878,164,0,12,12,0 +25123,879,1,378,3,3,7 +25124,879,9,460,1,1,7 +25125,879,6,400,2,2,3 +25126,879,15,126,6,6,0 +25127,879,208,303,4,4,1 +25128,879,5,26,9,9,0 +25129,879,10,109,7,7,0 +25130,879,131,142,5,5,1 +25131,879,3,76,8,8,1 +25132,879,206,0,11,11,0 +25133,879,207,0,10,10,0 +25134,879,164,0,12,12,0 +25135,880,208,26,2,2,1 +25136,880,6,30,1,1,0 +25137,880,9,23,3,3,0 +25138,880,131,10,4,4,0 +25139,880,10,10,5,5,0 +25140,880,1,2,6,6,0 +25141,880,5,0,7,7,0 +25142,880,15,0,8,8,0 +25143,880,3,0,9,9,0 +25144,880,206,0,10,10,0 +25145,880,207,0,11,11,0 +25146,881,208,40,2,2,1 +25147,881,6,40,3,3,0 +25148,881,9,66,1,1,1 +25149,881,131,37,4,4,0 +25150,881,10,10,5,5,0 +25151,881,1,4,7,7,0 +25152,881,5,1,8,8,0 +25153,881,15,4,6,6,0 +25154,881,3,0,9,9,0 +25155,881,206,0,10,10,0 +25156,881,207,0,11,11,0 +25157,882,208,60,3,3,1 +25158,882,6,73,2,2,1 +25159,882,9,78,1,1,1 +25160,882,131,52,4,4,0 +25161,882,10,14,6,6,0 +25162,882,1,14,5,5,0 +25163,882,5,7,7,7,0 +25164,882,15,5,8,8,0 +25165,882,3,0,9,9,0 +25166,882,206,0,10,10,0 +25167,882,207,0,11,11,0 +25168,883,208,93,2,2,1 +25169,883,6,77,3,3,1 +25170,883,9,109,1,1,2 +25171,883,131,64,4,4,0 +25172,883,10,26,5,5,0 +25173,883,1,23,6,6,0 +25174,883,5,7,7,7,0 +25175,883,15,5,8,8,0 +25176,883,3,0,9,9,0 +25177,883,206,0,10,10,0 +25178,883,207,0,11,11,0 +25179,884,208,111,3,3,1 +25180,884,6,117,2,2,2 +25181,884,9,131,1,1,2 +25182,884,131,72,4,4,0 +25183,884,10,32,5,5,0 +25184,884,1,29,6,6,0 +25185,884,5,8,7,7,0 +25186,884,15,5,8,8,0 +25187,884,3,0,9,9,0 +25188,884,206,0,10,10,0 +25189,884,207,0,11,11,0 +25190,885,208,112,3,3,1 +25191,885,6,123,2,2,2 +25192,885,9,164,1,1,2 +25193,885,131,109,4,4,1 +25194,885,10,44,5,5,0 +25195,885,1,37,6,6,0 +25196,885,5,12,7,7,0 +25197,885,15,5,8,8,0 +25198,885,3,0,9,9,0 +25199,885,206,0,10,10,0 +25200,885,207,0,11,11,0 +25201,886,208,114,4,4,1 +25202,886,6,145,2,2,2 +25203,886,9,201,1,1,3 +25204,886,131,134,3,3,1 +25205,886,10,51,5,5,0 +25206,886,1,37,6,6,0 +25207,886,5,20,7,7,0 +25208,886,15,5,8,8,0 +25209,886,3,0,9,9,0 +25210,886,206,0,10,10,0 +25211,886,207,0,11,11,0 +25212,887,208,124,4,4,1 +25213,887,6,168,3,3,2 +25214,887,9,219,1,1,3 +25215,887,131,171,2,2,2 +25216,887,10,59,5,5,0 +25217,887,1,37,6,6,0 +25218,887,5,24,7,7,0 +25219,887,15,6,8,8,0 +25220,887,3,0,9,9,0 +25221,887,206,0,10,10,0 +25222,887,207,0,11,11,0 +25223,888,208,157,4,4,1 +25224,888,6,180,3,3,2 +25225,888,9,250,1,1,4 +25226,888,131,183,2,2,2 +25227,888,10,59,5,5,0 +25228,888,1,49,6,6,0 +25229,888,5,24,7,7,0 +25230,888,15,7,8,8,0 +25231,888,3,0,9,9,0 +25232,888,206,0,10,10,0 +25233,888,207,0,11,11,0 +25234,890,208,183,4,4,1 +25235,890,6,194,3,3,2 +25236,890,9,277,1,1,4 +25237,890,131,208,2,2,3 +25238,890,10,59,5,5,0 +25239,890,1,57,6,6,0 +25240,890,5,24,7,7,0 +25241,890,15,7,8,8,0 +25242,890,3,1,9,9,0 +25243,890,206,0,10,10,0 +25244,890,207,0,11,11,0 +25245,891,208,187,4,4,1 +25246,891,6,218,3,3,2 +25247,891,9,312,1,1,5 +25248,891,131,235,2,2,3 +25249,891,10,61,6,6,0 +25250,891,1,65,5,5,0 +25251,891,5,25,7,7,0 +25252,891,15,7,8,8,0 +25253,891,3,1,9,9,0 +25254,891,206,0,10,10,0 +25255,891,207,0,11,11,0 +25288,893,207,0,11,11,0 +25287,893,206,0,10,10,0 +25285,893,15,19,8,8,0 +25284,893,5,31,7,7,0 +25286,893,3,1,9,9,0 +25283,893,1,76,5,5,0 +25282,893,10,62,6,6,0 +25281,893,131,267,3,3,3 +25280,893,9,377,1,1,7 +25279,893,6,274,2,2,2 +25278,893,208,206,4,4,1 +25267,892,208,191,4,4,1 +25268,892,6,248,2,2,2 +25269,892,9,352,1,1,6 +25270,892,131,245,3,3,3 +25271,892,10,61,6,6,0 +25272,892,1,66,5,5,0 +25273,892,5,31,7,7,0 +25274,892,15,17,8,8,0 +25275,892,3,1,9,9,0 +25276,892,206,0,10,10,0 +25277,892,207,0,11,11,0 +25289,894,208,239,4,4,1 +25290,894,6,284,2,2,2 +25291,894,9,402,1,1,8 +25292,894,131,283,3,3,3 +25293,894,10,62,6,6,0 +25294,894,1,81,5,5,0 +25295,894,5,31,8,8,0 +25296,894,15,31,7,7,0 +25297,894,3,1,9,9,0 +25298,894,206,0,10,10,0 +25299,894,207,0,11,11,0 +25300,895,208,264,4,4,1 +25301,895,6,297,2,2,2 +25302,895,9,445,1,1,9 +25303,895,131,287,3,3,3 +25304,895,10,62,6,6,0 +25305,895,1,83,5,5,0 +25306,895,5,31,8,8,0 +25307,895,15,45,7,7,0 +25308,895,3,1,9,9,0 +25309,895,206,0,10,10,0 +25310,895,207,0,11,11,0 +25311,896,208,285,4,4,1 +25312,896,6,309,3,3,2 +25313,896,9,470,1,1,10 +25314,896,131,313,2,2,3 +25315,896,10,68,6,6,0 +25316,896,1,93,5,5,0 +25317,896,5,32,8,8,0 +25318,896,15,45,7,7,0 +25319,896,3,1,9,9,0 +25320,896,206,0,10,10,0 +25321,896,207,0,11,11,0 +25322,897,208,297,4,4,1 +25323,897,6,323,3,3,2 +25324,897,9,513,1,1,11 +25325,897,131,334,2,2,3 +25326,897,10,77,6,6,0 +25327,897,1,95,5,5,0 +25328,897,5,32,8,8,0 +25329,897,15,45,7,7,0 +25330,897,3,1,9,9,0 +25331,897,206,0,10,10,0 +25332,897,207,0,11,11,0 +25333,898,208,315,4,4,1 +25334,898,6,333,3,3,2 +25335,898,9,553,1,1,12 +25336,898,131,348,2,2,3 +25337,898,10,77,6,6,0 +25338,898,1,102,5,5,0 +25339,898,5,32,8,8,0 +25340,898,15,53,7,7,0 +25341,898,3,5,9,9,0 +25342,898,206,0,10,10,0 +25343,898,207,0,11,11,0 +25344,899,208,315,4,4,1 +25345,899,6,354,3,3,2 +25346,899,9,596,1,1,13 +25347,899,131,360,2,2,3 +25348,899,10,77,6,6,0 +25349,899,1,122,5,5,0 +25350,899,5,33,8,8,0 +25351,899,15,57,7,7,0 +25352,899,3,5,9,9,0 +25353,899,206,0,10,10,0 +25354,899,207,0,11,11,0 +25512,272,30,0,14,14,0 +25524,257,1,0,12,12,0 +25525,257,29,0,13,13,0 +25526,257,30,0,14,14,0 +25539,258,29,3,5,5,0 +25540,258,30,0,14,14,0 +25554,259,30,0,14,14,0 +25568,260,30,0,14,14,0 +25582,261,30,0,14,14,0 +25596,262,30,0,14,14,0 +25610,263,30,0,14,14,0 +25624,264,30,0,14,14,0 +25638,265,30,0,14,14,0 +25652,266,30,0,14,14,0 +25666,267,30,0,14,14,0 +25680,268,30,0,14,14,0 +25694,269,30,0,14,14,0 +25708,270,30,0,14,14,0 +25722,271,30,0,14,14,0 +25733,36,6,13,1,1,1 +25743,36,12,0,10,10,0 +25754,37,12,0,10,10,0 +25765,38,12,0,10,10,0 +25776,39,12,0,9,9,0 +25787,40,12,0,10,10,0 +25798,41,12,0,10,10,0 +25809,42,12,0,10,10,0 +25820,43,12,0,10,10,0 +25831,44,12,0,10,10,0 +25842,45,12,0,10,10,0 +25853,46,12,0,10,10,0 +25864,47,12,0,10,10,0 +25875,48,12,0,10,10,0 +25886,49,12,0,10,10,0 +25897,50,12,1,9,9,0 +25908,51,12,1,10,10,0 +25919,52,12,1,10,10,0 +25943,901,1,43,2,2,0 +25942,901,131,68,1,1,2 +25941,900,9,0,11,11,0 +25940,900,207,0,10,10,0 +25938,900,206,0,8,8,0 +25939,900,208,0,9,9,0 +25937,900,15,0,7,7,0 +25936,900,5,6,6,6,0 +25935,900,10,9,5,5,0 +25934,900,3,10,4,4,0 +25933,900,6,18,3,3,0 +25932,900,1,33,1,1,0 +25931,900,131,25,2,2,1 +25944,901,6,30,3,3,0 +25945,901,3,20,4,4,0 +25946,901,10,19,5,5,0 +25947,901,5,7,7,7,0 +25948,901,15,0,8,8,0 +25949,901,206,0,11,11,0 +25950,901,208,0,9,9,0 +25951,901,207,0,10,10,0 +25952,901,9,15,6,6,0 +25953,902,131,111,1,1,3 +25954,902,1,43,3,3,0 +25955,902,6,33,5,5,0 +25956,902,3,30,6,6,0 +25957,902,10,44,2,2,0 +25958,902,5,7,7,7,0 +25959,902,15,0,9,9,0 +25960,902,206,0,10,10,0 +25961,902,208,0,8,8,0 +25962,902,207,0,11,11,0 +25963,902,9,35,4,4,0 +25964,903,131,154,1,1,4 +25965,903,1,43,5,5,0 +25966,903,6,52,4,4,0 +25967,903,3,36,6,6,0 +25968,903,10,54,3,3,0 +25969,903,5,8,7,7,0 +25970,903,15,0,9,9,0 +25971,903,206,0,10,10,0 +25972,903,208,0,8,8,0 +25973,903,207,0,11,11,0 +25974,903,9,57,2,2,0 +25975,904,131,197,1,1,5 +25976,904,1,43,6,6,0 +25977,904,6,66,3,3,0 +25978,904,3,46,5,5,0 +25979,904,10,57,4,4,0 +25980,904,5,8,7,7,0 +25981,904,15,0,9,9,0 +25982,904,206,0,10,10,0 +25983,904,208,4,8,8,0 +25984,904,207,0,11,11,0 +25985,904,9,84,2,2,0 +25986,905,131,240,1,1,6 +25987,905,1,52,5,5,0 +25988,905,6,78,3,3,0 +25989,905,3,52,6,6,0 +25990,905,10,67,4,4,0 +25991,905,5,8,8,8,0 +25992,905,15,0,10,10,0 +25993,905,206,2,9,9,0 +25994,905,208,8,7,7,0 +25995,905,207,0,11,11,0 +25996,905,9,99,2,2,0 +25997,906,131,258,1,1,6 +25998,906,1,66,5,5,0 +25999,906,6,87,3,3,0 +26000,906,3,58,6,6,0 +26001,906,10,77,4,4,0 +26002,906,5,12,7,7,0 +26003,906,15,0,10,10,0 +26004,906,206,2,9,9,0 +26005,906,208,8,8,8,0 +26006,906,207,0,11,11,0 +26007,906,9,139,2,2,1 +26008,907,131,301,1,1,7 +26009,907,1,72,6,6,0 +26010,907,6,98,3,3,0 +26011,907,3,85,5,5,0 +26012,907,10,87,4,4,0 +26013,907,5,12,7,7,0 +26014,907,15,0,10,10,0 +26015,907,206,2,9,9,0 +26016,907,208,8,8,8,0 +26017,907,207,0,11,11,0 +26018,907,9,143,2,2,1 +26019,908,131,326,1,1,8 +26020,908,1,90,6,6,0 +26021,908,6,106,3,3,0 +26022,908,3,103,4,4,0 +26023,908,10,91,5,5,0 +26024,908,5,15,7,7,0 +26025,908,15,0,10,10,0 +26026,908,206,2,9,9,0 +26027,908,208,8,8,8,0 +26028,908,207,0,11,11,0 +26029,908,9,168,2,2,1 +26030,909,131,366,1,1,9 +26031,909,1,96,6,6,0 +26032,909,6,116,4,4,0 +26033,909,3,121,3,3,0 +26034,909,10,98,5,5,0 +26035,909,5,15,7,7,0 +26036,909,15,0,10,10,0 +26037,909,206,2,9,9,0 +26038,909,208,8,8,8,0 +26039,909,207,0,11,11,0 +26040,909,9,188,2,2,1 +26041,910,131,393,1,1,9 +26042,910,1,97,6,6,0 +26043,910,6,142,3,3,0 +26044,910,3,135,4,4,0 +26045,910,10,98,5,5,0 +26046,910,5,17,7,7,0 +26047,910,15,0,10,10,0 +26048,910,206,2,9,9,0 +26049,910,208,8,8,8,0 +26050,910,207,0,11,11,0 +26051,910,9,219,2,2,2 +26052,911,131,411,1,1,9 +26053,911,1,105,5,5,0 +26054,911,6,160,3,3,0 +26055,911,3,150,4,4,0 +26056,911,10,103,6,6,0 +26057,911,5,19,7,7,0 +26058,911,15,0,10,10,0 +26059,911,206,2,9,9,0 +26060,911,208,8,8,8,0 +26061,911,207,0,11,11,0 +26062,911,9,254,2,2,3 +26063,912,131,454,1,1,10 +26064,912,1,110,5,5,0 +26065,912,6,162,4,4,0 +26066,912,3,177,3,3,0 +26067,912,10,109,6,6,0 +26068,912,5,19,7,7,0 +26069,912,15,0,10,10,0 +26070,912,206,2,9,9,0 +26071,912,208,8,8,8,0 +26072,912,207,0,11,11,0 +26073,912,9,272,2,2,3 +26074,913,131,479,1,1,11 +26075,913,1,111,6,6,0 +26076,913,6,178,4,4,0 +26077,913,3,187,3,3,0 +26078,913,10,117,5,5,0 +26079,913,5,27,7,7,0 +26080,913,15,0,10,10,0 +26081,913,206,2,9,9,0 +26082,913,208,8,8,8,0 +26083,913,207,0,11,11,0 +26084,913,9,305,2,2,3 +26085,914,131,522,1,1,12 +26086,914,1,121,6,6,0 +26087,914,6,178,4,4,0 +26088,914,3,201,3,3,0 +26089,914,10,122,5,5,0 +26090,914,5,29,7,7,0 +26091,914,15,0,10,10,0 +26092,914,206,2,9,9,0 +26093,914,208,8,8,8,0 +26094,914,207,0,11,11,0 +26095,914,9,332,2,2,3 +26096,915,131,565,1,1,13 +26097,915,1,143,5,5,0 +26098,915,6,188,4,4,0 +26099,915,3,216,3,3,0 +26100,915,10,123,6,6,0 +26101,915,5,29,7,7,0 +26102,915,15,0,10,10,0 +26103,915,206,2,9,9,0 +26104,915,208,8,8,8,0 +26105,915,207,0,11,11,0 +26106,915,9,342,2,2,3 +26107,916,131,608,1,1,14 +26108,916,1,147,5,5,0 +26109,916,6,196,4,4,0 +26110,916,3,238,3,3,0 +26111,916,10,123,6,6,0 +26112,916,5,30,7,7,0 +26113,916,15,0,10,10,0 +26114,916,206,2,9,9,0 +26115,916,208,10,8,8,0 +26116,916,207,0,11,11,0 +26117,916,9,363,2,2,3 +26118,917,131,651,1,1,15 +26119,917,1,161,5,5,0 +26120,917,6,210,4,4,0 +26121,917,3,254,3,3,0 +26122,917,10,127,6,6,0 +26123,917,5,30,7,7,0 +26124,917,15,0,10,10,0 +26125,917,206,2,9,9,0 +26126,917,208,10,8,8,0 +26127,917,207,0,11,11,0 +26128,917,9,373,2,2,3 +26129,918,131,701,1,1,16 +26130,918,1,181,5,5,0 +26131,918,6,216,4,4,0 +26132,918,3,320,3,3,0 +26133,918,10,155,6,6,0 +26134,918,5,30,7,7,0 +26135,918,15,0,10,10,0 +26136,918,206,2,9,9,0 +26137,918,208,10,8,8,0 +26138,918,207,0,11,11,0 +26139,918,9,405,2,2,3 +26733,969,6,37,1,1,1 +26140,926,131,43,1,1,1 +26141,926,6,15,2,2,0 +26142,926,3,12,4,4,0 +26143,926,15,14,3,3,0 +26144,926,9,8,5,5,0 +26145,926,10,7,6,6,0 +26146,926,5,2,7,7,0 +26147,926,1,0,8,8,0 +26148,926,208,0,9,9,0 +26149,927,131,76,1,1,1 +26150,927,6,52,2,2,1 +26151,927,3,30,3,3,0 +26152,927,15,14,4,4,0 +26153,927,9,11,6,6,0 +26154,927,10,7,7,7,0 +26155,927,5,12,5,5,0 +26156,927,1,0,9,9,0 +26157,927,208,0,8,8,0 +26158,927,209,0,10,10,0 +26159,928,131,119,1,1,2 +26160,928,6,79,2,2,1 +26161,928,3,48,3,3,0 +26162,928,15,19,4,4,0 +26163,928,9,13,5,5,0 +26164,928,10,7,7,7,0 +26165,928,5,12,6,6,0 +26166,928,1,0,9,9,0 +26167,928,208,6,8,8,0 +26168,928,209,0,10,10,0 +26169,929,131,159,1,1,3 +26170,929,6,107,2,2,1 +26171,929,3,61,3,3,0 +26172,929,15,19,5,5,0 +26173,929,9,23,4,4,0 +26174,929,10,11,8,8,0 +26175,929,5,12,7,7,0 +26176,929,1,0,9,9,0 +26177,929,208,12,6,6,0 +26178,929,209,0,10,10,0 +26179,930,131,202,1,1,4 +26180,930,6,132,2,2,1 +26181,930,3,81,3,3,0 +26182,930,15,19,5,5,0 +26183,930,9,30,4,4,0 +26184,930,10,11,8,8,0 +26185,930,5,14,7,7,0 +26186,930,1,0,9,9,0 +26187,930,208,16,6,6,0 +26188,930,209,0,10,10,0 +26189,931,131,242,1,1,5 +26190,931,6,158,2,2,1 +26191,931,3,81,3,3,0 +26192,931,15,21,5,5,0 +26193,931,9,52,4,4,0 +26194,931,10,17,6,6,0 +26195,931,5,15,8,8,0 +26196,931,1,4,9,9,0 +26197,931,208,16,7,7,0 +26198,931,209,0,10,10,0 +26199,932,131,285,1,1,6 +26200,932,6,180,2,2,1 +26201,932,3,104,3,3,0 +26202,932,15,21,6,6,0 +26203,932,9,54,4,4,0 +26204,932,10,21,7,7,0 +26205,932,5,15,8,8,0 +26206,932,1,4,9,9,0 +26207,932,208,23,5,5,0 +26208,932,209,0,10,10,0 +26209,933,131,328,1,1,7 +26210,933,6,192,2,2,1 +26211,933,3,129,3,3,0 +26212,933,15,21,7,7,0 +26213,933,9,55,4,4,0 +26214,933,10,31,5,5,0 +26215,933,5,19,8,8,0 +26216,933,1,4,9,9,0 +26217,933,208,29,6,6,0 +26218,933,209,0,10,10,0 +26219,934,131,371,1,1,8 +26220,934,6,211,2,2,1 +26221,934,3,151,3,3,0 +26222,934,15,21,7,7,0 +26223,934,9,63,4,4,0 +26224,934,10,39,5,5,0 +26225,934,5,19,8,8,0 +26226,934,1,5,9,9,0 +26227,934,208,29,6,6,0 +26228,934,209,0,10,10,0 +26229,936,131,383,1,1,8 +26230,936,6,236,2,2,2 +26231,936,3,151,3,3,0 +26232,936,15,22,8,8,0 +26233,936,9,96,4,4,0 +26234,936,10,39,5,5,0 +26235,936,5,31,7,7,0 +26236,936,1,17,9,9,0 +26237,936,208,35,6,6,0 +26238,936,209,0,10,10,0 +26260,938,131,451,1,1,10 +26259,937,209,0,10,10,0 +26257,937,1,17,9,9,0 +26256,937,5,35,7,7,0 +26253,937,15,23,8,8,0 +26258,937,208,50,5,5,0 +26252,937,3,161,3,3,0 +26255,937,10,49,6,6,0 +26254,937,9,108,4,4,0 +26251,937,6,242,2,2,2 +26250,937,131,426,1,1,9 +26261,938,6,270,2,2,2 +26262,938,3,188,3,3,0 +26263,938,15,25,8,8,0 +26264,938,9,113,4,4,0 +26265,938,10,63,5,5,0 +26266,938,5,35,7,7,0 +26267,938,1,17,9,9,0 +26268,938,208,50,6,6,0 +26269,938,209,0,10,10,0 +26270,939,131,463,1,1,10 +26271,939,6,310,2,2,3 +26272,939,3,198,3,3,0 +26273,939,15,26,8,8,0 +26274,939,9,139,4,4,0 +26275,939,10,69,5,5,0 +26276,939,5,41,7,7,0 +26277,939,1,17,9,9,0 +26278,939,208,50,6,6,0 +26279,939,209,0,10,10,0 +26297,940,1,17,9,9,0 +26294,940,9,139,4,4,0 +26292,940,3,208,3,3,0 +26299,940,209,0,10,10,0 +26298,940,208,60,6,6,0 +26296,940,5,44,7,7,0 +26295,940,10,77,5,5,0 +26291,940,6,337,2,2,3 +26293,940,15,26,8,8,0 +26290,940,131,506,1,1,11 +26384,941,209,0,10,10,0 +26383,941,208,66,6,6,0 +26382,941,1,19,9,9,0 +26381,941,5,45,7,7,0 +26380,941,10,92,5,5,0 +26379,941,9,149,4,4,0 +26378,941,15,34,8,8,0 +26377,941,3,220,3,3,0 +26376,941,6,359,2,2,3 +26394,942,209,0,10,10,0 +26375,941,131,531,1,1,12 +26393,942,208,70,6,6,0 +26390,942,10,102,5,5,0 +26388,942,15,36,8,8,0 +26392,942,1,27,9,9,0 +26391,942,5,63,7,7,0 +26387,942,3,220,3,3,0 +26389,942,9,150,4,4,0 +26386,942,6,374,2,2,3 +26385,942,131,574,1,1,13 +26403,943,208,71,6,6,0 +26400,943,10,112,5,5,0 +26398,943,15,36,8,8,0 +26404,943,209,0,10,10,0 +26402,943,1,27,9,9,0 +26401,943,5,65,7,7,0 +26397,943,3,243,3,3,0 +26399,943,9,172,4,4,0 +26396,943,6,374,2,2,3 +26395,943,131,617,1,1,14 +26413,944,208,76,6,6,0 +26410,944,10,120,5,5,0 +26408,944,15,36,8,8,0 +26414,944,209,0,10,10,0 +26412,944,1,27,9,9,0 +26411,944,5,67,7,7,0 +26407,944,3,253,3,3,0 +26409,944,9,178,4,4,0 +26406,944,6,401,2,2,3 +26405,944,131,660,1,1,15 +26434,945,208,78,6,6,0 +26431,945,10,136,5,5,0 +26429,945,15,36,8,8,0 +26435,945,209,0,10,10,0 +26433,945,1,27,9,9,0 +26432,945,5,67,7,7,0 +26428,945,3,257,3,3,0 +26430,945,9,187,4,4,0 +26427,945,6,428,2,2,3 +26426,945,131,703,1,1,16 +26524,955,131,258,1,1,7 +26566,948,15,0,10,10,0 +26567,948,209,0,11,11,0 +26557,948,131,43,1,1,1 +26565,948,1,0,9,9,0 +26564,948,4,0,8,8,0 +26563,948,5,3,7,7,0 +26562,948,10,6,6,6,0 +26561,948,210,8,5,5,0 +26560,948,3,14,3,3,0 +26559,948,9,12,4,4,0 +26558,948,6,15,2,2,0 +26447,949,131,83,1,1,2 +26448,949,6,33,2,2,0 +26449,949,9,30,3,3,0 +26450,949,3,20,4,4,0 +26451,949,210,18,5,5,0 +26452,949,10,6,7,7,0 +26453,949,5,11,6,6,0 +26454,949,4,0,9,9,0 +26455,949,1,1,8,8,0 +26456,949,15,0,10,10,0 +26457,949,209,0,11,11,0 +26458,950,131,114,1,1,3 +26459,950,6,61,2,2,0 +26460,950,9,57,3,3,0 +26461,950,3,29,4,4,0 +26462,950,210,18,5,5,0 +26463,950,10,6,7,7,0 +26464,950,5,17,6,6,0 +26465,950,4,0,9,9,0 +26466,950,1,1,8,8,0 +26467,950,15,0,10,10,0 +26468,950,209,0,11,11,0 +26469,951,131,157,1,1,4 +26470,951,6,76,2,2,0 +26471,951,9,57,3,3,0 +26472,951,3,51,4,4,0 +26473,951,210,22,5,5,0 +26474,951,10,8,8,8,0 +26475,951,5,17,6,6,0 +26476,951,4,6,9,9,0 +26477,951,1,10,7,7,0 +26478,951,15,0,10,10,0 +26479,951,209,0,11,11,0 +26480,952,131,157,1,1,4 +26481,952,6,109,2,2,0 +26482,952,9,94,3,3,1 +26483,952,3,65,4,4,0 +26484,952,210,22,6,6,0 +26485,952,10,14,7,7,0 +26486,952,5,26,5,5,0 +26487,952,4,6,9,9,0 +26488,952,1,12,8,8,0 +26489,952,15,0,10,10,0 +26490,952,209,0,11,11,0 +26491,953,131,188,1,1,5 +26492,953,6,121,2,2,0 +26493,953,9,112,3,3,1 +26494,953,3,66,4,4,0 +26495,953,210,22,8,8,0 +26496,953,10,37,5,5,0 +26497,953,5,30,6,6,0 +26498,953,4,6,9,9,0 +26499,953,1,24,7,7,0 +26500,953,15,0,10,10,0 +26501,953,209,0,11,11,0 +26502,954,131,223,1,1,6 +26503,954,6,147,2,2,0 +26504,954,9,130,3,3,1 +26505,954,3,81,4,4,0 +26506,954,210,22,8,8,0 +26507,954,10,42,5,5,0 +26508,954,5,32,6,6,0 +26509,954,4,6,9,9,0 +26510,954,1,24,7,7,0 +26511,954,15,0,10,10,0 +26512,954,209,0,11,11,0 +26525,955,6,177,2,2,0 +26526,955,9,140,3,3,1 +26527,955,3,90,4,4,0 +26528,955,210,22,8,8,0 +26529,955,10,59,5,5,0 +26530,955,5,32,6,6,0 +26531,955,4,6,9,9,0 +26532,955,1,24,7,7,0 +26533,955,15,0,10,10,0 +26534,955,209,0,11,11,0 +26535,956,131,295,1,1,8 +26536,956,6,192,2,2,0 +26537,956,9,168,3,3,1 +26538,956,3,92,4,4,0 +26539,956,210,28,8,8,0 +26540,956,10,59,5,5,0 +26541,956,5,36,6,6,0 +26542,956,4,6,9,9,0 +26543,956,1,32,7,7,0 +26544,956,15,0,11,11,0 +26545,956,209,1,10,10,0 +26546,957,131,335,1,1,9 +26547,957,6,204,2,2,0 +26548,957,9,198,3,3,1 +26549,957,3,92,4,4,0 +26550,957,210,28,8,8,0 +26551,957,10,73,5,5,0 +26552,957,5,41,6,6,0 +26553,957,4,6,9,9,0 +26554,957,1,32,7,7,0 +26555,957,15,0,11,11,0 +26556,957,209,1,10,10,0 +26568,958,131,378,1,1,10 +26569,958,6,224,2,2,0 +26570,958,9,223,3,3,1 +26571,958,3,94,4,4,0 +26572,958,210,28,8,8,0 +26573,958,10,74,5,5,0 +26574,958,5,45,6,6,0 +26575,958,4,6,9,9,0 +26576,958,1,38,7,7,0 +26577,958,15,0,11,11,0 +26578,958,209,1,10,10,0 +26579,959,131,415,1,1,11 +26580,959,6,242,3,3,0 +26581,959,9,256,2,2,1 +26582,959,3,96,4,4,0 +26583,959,210,28,8,8,0 +26584,959,10,81,5,5,0 +26585,959,5,45,6,6,0 +26586,959,4,6,9,9,0 +26587,959,1,42,7,7,0 +26588,959,15,0,11,11,0 +26589,959,209,1,10,10,0 +26590,960,131,455,1,1,12 +26591,960,6,252,3,3,0 +26592,960,9,274,2,2,1 +26593,960,3,101,5,5,0 +26594,960,210,28,8,8,0 +26595,960,10,103,4,4,0 +26596,960,5,45,7,7,0 +26597,960,4,6,9,9,0 +26598,960,1,48,6,6,0 +26599,960,15,0,11,11,0 +26600,960,209,1,10,10,0 +26601,961,131,498,1,1,13 +26602,961,6,279,3,3,0 +26603,961,9,290,2,2,1 +26604,961,3,111,4,4,0 +26605,961,210,28,8,8,0 +26606,961,10,108,5,5,0 +26607,961,5,45,7,7,0 +26608,961,4,6,9,9,0 +26609,961,1,48,6,6,0 +26610,961,15,0,11,11,0 +26611,961,209,1,10,10,0 +26612,962,131,538,1,1,14 +26613,962,6,301,3,3,0 +26614,962,9,316,2,2,1 +26615,962,3,111,5,5,0 +26616,962,210,28,8,8,0 +26617,962,10,112,4,4,0 +26618,962,5,47,7,7,0 +26619,962,4,7,9,9,0 +26620,962,1,54,6,6,0 +26621,962,15,0,11,11,0 +26622,962,209,1,10,10,0 +26623,963,131,553,1,1,14 +26624,963,6,313,3,3,0 +26625,963,9,359,2,2,2 +26626,963,3,121,5,5,0 +26627,963,210,28,8,8,0 +26628,963,10,124,4,4,0 +26629,963,5,47,7,7,0 +26630,963,4,8,9,9,0 +26631,963,1,62,6,6,0 +26632,963,15,0,11,11,0 +26633,963,209,1,10,10,0 +26634,964,131,593,1,1,15 +26635,964,6,335,3,3,0 +26636,964,9,385,2,2,2 +26637,964,3,124,5,5,0 +26638,964,210,28,8,8,0 +26639,964,10,134,4,4,0 +26640,964,5,47,7,7,0 +26641,964,4,8,9,9,0 +26642,964,1,62,6,6,0 +26643,964,15,0,11,11,0 +26644,964,209,1,10,10,0 +26712,967,6,375,3,3,0 +26697,965,1,74,6,6,0 +26711,967,131,722,1,1,18 +26698,965,15,0,11,11,0 +26690,965,6,347,3,3,0 +26696,965,4,8,9,9,0 +26695,965,5,55,7,7,0 +26694,965,10,138,4,4,0 +26692,965,3,130,5,5,0 +26693,965,210,29,8,8,0 +26691,965,9,400,2,2,2 +26689,965,131,636,1,1,16 +26708,966,1,74,6,6,0 +26710,966,209,1,10,10,0 +26709,966,15,0,11,11,0 +26701,966,6,365,3,3,0 +26707,966,4,8,9,9,0 +26706,966,5,55,7,7,0 +26705,966,10,145,4,4,0 +26703,966,3,136,5,5,0 +26704,966,210,29,8,8,0 +26702,966,9,427,2,2,2 +26700,966,131,679,1,1,17 +26699,965,209,1,10,10,0 +26713,967,9,446,2,2,2 +26714,967,3,136,5,5,0 +26715,967,210,29,8,8,0 +26716,967,10,163,4,4,0 +26717,967,5,63,7,7,0 +26718,967,4,8,9,9,0 +26719,967,1,75,6,6,0 +26720,967,15,2,10,10,0 +26721,967,209,1,11,11,0 +26722,968,131,765,1,1,19 +26723,968,6,398,3,3,0 +26724,968,9,468,2,2,2 +26725,968,3,138,5,5,0 +26726,968,210,29,8,8,0 +26727,968,10,173,4,4,0 +26728,968,5,63,7,7,0 +26729,968,4,8,9,9,0 +26730,968,1,76,6,6,0 +26731,968,15,2,10,10,0 +26732,968,209,1,11,11,0 +26734,969,131,33,2,2,0 +26735,969,9,10,3,3,0 +26736,969,3,8,4,4,0 +26737,969,10,7,5,5,0 +26738,969,5,6,6,6,0 +26739,969,4,0,7,7,0 +26740,969,15,0,8,8,0 +26741,969,1,0,9,9,0 +26742,969,210,0,10,10,0 +26743,970,6,65,2,2,1 +26744,970,131,66,1,1,1 +26745,970,9,37,3,3,0 +26746,970,3,8,6,6,0 +26747,970,10,10,5,5,0 +26748,970,5,12,4,4,0 +26749,970,4,0,8,8,0 +26750,970,15,0,9,9,0 +26751,970,1,0,10,10,0 +26752,970,210,4,7,7,0 +26753,971,6,102,1,1,2 +26754,971,131,99,2,2,1 +26755,971,9,47,3,3,0 +26756,971,3,16,5,5,0 +26757,971,10,17,4,4,0 +26758,971,5,12,6,6,0 +26759,971,4,2,8,8,0 +26760,971,15,0,9,9,0 +26761,971,1,0,10,10,0 +26762,971,210,8,7,7,0 +26763,972,6,135,2,2,2 +26764,972,131,136,1,1,2 +26765,972,9,57,3,3,0 +26766,972,3,18,5,5,0 +26767,972,10,31,4,4,0 +26768,972,5,13,6,6,0 +26769,972,4,6,8,8,0 +26770,972,15,0,9,9,0 +26771,972,1,0,10,10,0 +26772,972,210,8,7,7,0 +26773,973,6,153,2,2,2 +26774,973,131,161,1,1,3 +26775,973,9,72,3,3,0 +26776,973,3,18,6,6,0 +26777,973,10,53,4,4,0 +26778,973,5,21,5,5,0 +26779,973,4,14,7,7,0 +26780,973,15,4,9,9,0 +26781,973,1,0,10,10,0 +26782,973,210,9,8,8,0 +26783,974,6,196,1,1,3 +26784,974,131,179,2,2,3 +26785,974,9,97,3,3,0 +26786,974,3,20,6,6,0 +26787,974,10,53,4,4,0 +26788,974,5,29,5,5,0 +26789,974,4,14,7,7,0 +26790,974,15,4,9,9,0 +26791,974,1,0,10,10,0 +26792,974,210,14,8,8,0 +26793,975,6,214,2,2,3 +26794,975,131,222,1,1,4 +26795,975,9,112,3,3,0 +26796,975,3,22,6,6,0 +26797,975,10,71,4,4,0 +26798,975,5,29,5,5,0 +26799,975,4,18,7,7,0 +26800,975,15,4,9,9,0 +26801,975,1,0,10,10,0 +26802,975,210,15,8,8,0 +26803,976,6,226,2,2,3 +26804,976,131,250,1,1,4 +26805,976,9,137,3,3,1 +26806,976,3,37,5,5,0 +26807,976,10,79,4,4,0 +26808,976,5,33,6,6,0 +26809,976,4,18,8,8,0 +26810,976,15,5,9,9,0 +26811,976,1,2,10,10,0 +26812,976,210,21,7,7,0 +26813,977,6,254,2,2,3 +26814,977,131,287,1,1,5 +26815,977,9,152,3,3,1 +26816,977,3,40,5,5,0 +26817,977,10,89,4,4,0 +26818,977,5,33,6,6,0 +26819,977,4,18,8,8,0 +26820,977,15,5,9,9,0 +26821,977,1,2,10,10,0 +26822,977,210,29,7,7,0 +26823,978,6,275,2,2,3 +26824,978,131,330,1,1,6 +26825,978,9,174,3,3,1 +26826,978,3,41,5,5,0 +26827,978,10,95,4,4,0 +26828,978,5,33,6,6,0 +26829,978,4,26,8,8,0 +26830,978,15,5,9,9,0 +26831,978,1,2,10,10,0 +26832,978,210,29,7,7,0 +26833,979,6,318,2,2,4 +26834,979,131,357,1,1,6 +26835,979,9,184,3,3,1 +26836,979,3,41,5,5,0 +26837,979,10,101,4,4,0 +26838,979,5,39,6,6,0 +26839,979,4,26,8,8,0 +26840,979,15,5,10,10,0 +26841,979,1,11,9,9,0 +26842,979,210,29,7,7,0 +26843,980,6,348,2,2,4 +26844,980,131,392,1,1,7 +26845,980,9,199,3,3,1 +26846,980,3,45,5,5,0 +26847,980,10,103,4,4,0 +26848,980,5,40,6,6,0 +26849,980,4,34,8,8,0 +26850,980,15,5,10,10,0 +26851,980,1,11,9,9,0 +26852,980,210,35,7,7,0 +26853,981,6,373,2,2,4 +26854,981,131,435,1,1,8 +26855,981,9,212,3,3,1 +26856,981,3,55,5,5,0 +26857,981,10,113,4,4,0 +26858,981,5,40,6,6,0 +26859,981,4,34,8,8,0 +26860,981,15,5,10,10,0 +26861,981,1,11,9,9,0 +26862,981,210,35,7,7,0 +26863,982,6,373,2,2,4 +26864,982,131,475,1,1,9 +26865,982,9,230,3,3,1 +26866,982,3,59,5,5,0 +26867,982,10,124,4,4,0 +26868,982,5,52,6,6,0 +26869,982,4,42,7,7,0 +26870,982,15,5,10,10,0 +26871,982,1,17,9,9,0 +26872,982,210,37,8,8,0 +26873,983,6,385,2,2,4 +26874,983,131,503,1,1,9 +26875,983,9,270,3,3,2 +26876,983,3,65,5,5,0 +26877,983,10,133,4,4,0 +26878,983,5,52,6,6,0 +26879,983,4,42,7,7,0 +26880,983,15,5,10,10,0 +26881,983,1,23,9,9,0 +26882,983,210,37,8,8,0 +26883,984,6,395,2,2,4 +26884,984,131,540,1,1,10 +26885,984,9,303,3,3,2 +26886,984,3,66,5,5,0 +26887,984,10,147,4,4,0 +26888,984,5,52,6,6,0 +26889,984,4,42,8,8,0 +26890,984,15,5,10,10,0 +26891,984,1,23,9,9,0 +26892,984,210,43,7,7,0 +26893,985,6,428,2,2,4 +26894,985,131,575,1,1,11 +26895,985,9,315,3,3,2 +26896,985,3,68,5,5,0 +26897,985,10,159,4,4,0 +26898,985,5,53,6,6,0 +26899,985,4,48,7,7,0 +26900,985,15,5,10,10,0 +26901,985,1,23,9,9,0 +26902,985,210,43,8,8,0 +26903,986,6,455,2,2,4 +26904,986,131,595,1,1,11 +26905,986,9,340,3,3,3 +26906,986,3,76,5,5,0 +26907,986,10,175,4,4,0 +26908,986,5,53,6,6,0 +26909,986,4,48,7,7,0 +26910,986,15,5,10,10,0 +26911,986,1,24,9,9,0 +26912,986,210,47,8,8,0 +26913,987,6,495,2,2,5 +26914,987,131,625,1,1,11 +26915,987,9,358,3,3,3 +26916,987,3,82,5,5,0 +26917,987,10,177,4,4,0 +26918,987,5,53,6,6,0 +26919,987,4,49,7,7,0 +26920,987,15,5,10,10,0 +26921,987,1,28,9,9,0 +26922,987,210,47,8,8,0 +26923,988,6,522,2,2,5 +26924,988,131,668,1,1,12 +26925,988,9,368,3,3,3 +26926,988,3,83,5,5,0 +26927,988,10,187,4,4,0 +26928,988,5,53,7,7,0 +26929,988,4,57,6,6,0 +26930,988,15,5,10,10,0 +26931,988,1,30,9,9,0 +26932,988,210,47,8,8,0 diff --git a/database/formula_1/data_csv/constructors.csv b/database/formula_1/data_csv/constructors.csv new file mode 100644 index 0000000000000000000000000000000000000000..93a75f2e51e9fdcc4491f087a6ee18074ffaa1d8 --- /dev/null +++ b/database/formula_1/data_csv/constructors.csv @@ -0,0 +1,209 @@ +constructorId,constructorRef,name,nationality,url, +1,mclaren,McLaren,British,http://en.wikipedia.org/wiki/McLaren +2,bmw_sauber,BMW Sauber,German,http://en.wikipedia.org/wiki/BMW_Sauber +3,williams,Williams,British,http://en.wikipedia.org/wiki/Williams_Grand_Prix_Engineering +4,renault,Renault,French,http://en.wikipedia.org/wiki/Renault_F1 +5,toro_rosso,Toro Rosso,Italian,http://en.wikipedia.org/wiki/Scuderia_Toro_Rosso +6,ferrari,Ferrari,Italian,http://en.wikipedia.org/wiki/Scuderia_Ferrari +7,toyota,Toyota,Japanese,http://en.wikipedia.org/wiki/Toyota_Racing +8,super_aguri,Super Aguri,Japanese,http://en.wikipedia.org/wiki/Super_Aguri_F1 +9,red_bull,Red Bull,Austrian,http://en.wikipedia.org/wiki/Red_Bull_Racing +10,force_india,Force India,Indian,http://en.wikipedia.org/wiki/Force_India +11,honda,Honda,Japanese,http://en.wikipedia.org/wiki/Honda_Racing_F1 +12,spyker,Spyker,Dutch,http://en.wikipedia.org/wiki/Spyker_F1 +13,mf1,MF1,Russian,http://en.wikipedia.org/wiki/Midland_F1_Racing +14,spyker_mf1,Spyker MF1,Dutch,http://en.wikipedia.org/wiki/Midland_F1_Racing +15,sauber,Sauber,Swiss,http://en.wikipedia.org/wiki/Sauber +16,bar,BAR,British,http://en.wikipedia.org/wiki/British_American_Racing +17,jordan,Jordan,Irish,http://en.wikipedia.org/wiki/Jordan_Grand_Prix +18,minardi,Minardi,Italian,http://en.wikipedia.org/wiki/Minardi +19,jaguar,Jaguar,British,http://en.wikipedia.org/wiki/Jaguar_Racing +20,prost,Prost,French,http://en.wikipedia.org/wiki/Prost_Grand_Prix +21,arrows,Arrows,British,http://en.wikipedia.org/wiki/Arrows_Grand_Prix_International +22,benetton,Benetton,Italian,http://en.wikipedia.org/wiki/Benetton_Formula +23,brawn,Brawn,British,http://en.wikipedia.org/wiki/Brawn_GP +24,stewart,Stewart,British,http://en.wikipedia.org/wiki/Stewart_Grand_Prix +25,tyrrell,Tyrrell,British,http://en.wikipedia.org/wiki/Tyrrell_Racing +26,lola,Lola,British,http://en.wikipedia.org/wiki/MasterCard_Lola +27,ligier,Ligier,French,http://en.wikipedia.org/wiki/Ligier +28,forti,Forti,Italian,http://en.wikipedia.org/wiki/Forti +29,footwork,Footwork,British,http://en.wikipedia.org/wiki/Footwork_Arrows +30,pacific,Pacific,British,http://en.wikipedia.org/wiki/Pacific_Racing +31,simtek,Simtek,British,http://en.wikipedia.org/wiki/Simtek +32,team_lotus,Team Lotus,British,http://en.wikipedia.org/wiki/Team_Lotus +33,larrousse,Larrousse,French,http://en.wikipedia.org/wiki/Larrousse +34,brabham,Brabham,British,http://en.wikipedia.org/wiki/Brabham +35,dallara,Dallara,Italian,http://en.wikipedia.org/wiki/Dallara +36,fondmetal,Fondmetal,Italian,http://en.wikipedia.org/wiki/Fondmetal +37,march,March,British,http://en.wikipedia.org/wiki/March_Engineering +38,moda,Andrea Moda,Italian,http://en.wikipedia.org/wiki/Andrea_Moda_Formula +39,ags,AGS,French,http://en.wikipedia.org/wiki/Automobiles_Gonfaronnaises_Sportives +40,lambo,Lambo,Italian,http://en.wikipedia.org/wiki/Modena_(racing_team) +41,leyton,Leyton House,British,http://en.wikipedia.org/wiki/Leyton_House +42,coloni,Coloni,Italian,http://en.wikipedia.org/wiki/Enzo_Coloni_Racing_Car_Systems +44,eurobrun,Euro Brun,Italian,http://en.wikipedia.org/wiki/Euro_Brun +45,osella,Osella,Italian,http://en.wikipedia.org/wiki/Osella +46,onyx,Onyx,British,http://en.wikipedia.org/wiki/Onyx_(racing_team) +47,life,Life,Italian,http://en.wikipedia.org/wiki/Life_(Racing_Team) +48,rial,Rial,German,http://en.wikipedia.org/wiki/Rial_%28racing_team%29 +49,zakspeed,Zakspeed,German,http://en.wikipedia.org/wiki/Zakspeed +50,ram,RAM,British,http://en.wikipedia.org/wiki/RAM_Racing +51,alfa,Alfa Romeo,Italian,http://en.wikipedia.org/wiki/Alfa_Romeo_(Formula_One) +52,spirit,Spirit,British,http://en.wikipedia.org/wiki/Spirit_(racing_team) +53,toleman,Toleman,British,http://en.wikipedia.org/wiki/Toleman +54,ats,ATS,Italian,http://en.wikipedia.org/wiki/ATS_(wheels) +55,theodore,Theodore,Hong Kong,http://en.wikipedia.org/wiki/Theodore_Racing +56,fittipaldi,Fittipaldi,Brazilian,http://en.wikipedia.org/wiki/Fittipaldi_%28constructor%29 +57,ensign,Ensign,British,http://en.wikipedia.org/wiki/Ensign_%28racing_team%29 +58,shadow,Shadow,British,http://en.wikipedia.org/wiki/Shadow_Racing_Cars +59,wolf,Wolf,Canadian,http://en.wikipedia.org/wiki/Walter_Wolf_Racing +60,merzario,Merzario,Italian,http://en.wikipedia.org/wiki/Merzario +61,kauhsen,Kauhsen,German,http://en.wikipedia.org/wiki/Kauhsen +62,rebaque,Rebaque,Mexican,http://en.wikipedia.org/wiki/Rebaque +63,surtees,Surtees,British,http://en.wikipedia.org/wiki/Surtees +64,hesketh,Hesketh,British,http://en.wikipedia.org/wiki/Hesketh_Racing +65,martini,Martini,French,http://en.wikipedia.org/wiki/Martini_(cars) +66,brm,BRM,British,http://en.wikipedia.org/wiki/BRM +67,penske,Penske,American,http://en.wikipedia.org/wiki/Penske_Racing +68,lec,LEC,British,http://en.wikipedia.org/wiki/LEC_(Formula_One) +69,mcguire,McGuire,Australian,http://en.wikipedia.org/wiki/McGuire_(Formula_One) +70,boro,Boro,Dutch,http://en.wikipedia.org/wiki/Boro_(Formula_One) +71,apollon,Apollon,Swiss,http://en.wikipedia.org/wiki/Apollon_(Formula_One) +72,kojima,Kojima,Japanese,http://en.wikipedia.org/wiki/Kojima_Engineering +73,parnelli,Parnelli,American,http://en.wikipedia.org/wiki/Parnelli +74,maki,Maki,Japanese,http://en.wikipedia.org/wiki/Maki_(cars) +75,hill,Embassy Hill,British,http://en.wikipedia.org/wiki/Hill_(constructor) +76,lyncar,Lyncar,British,http://en.wikipedia.org/wiki/Lyncar +77,trojan,Trojan,British,http://en.wikipedia.org/wiki/Trojan_(Racing_team) +78,amon,Amon,New Zealand,http://en.wikipedia.org/wiki/Amon_(Formula_One_team) +79,token,Token,British,http://en.wikipedia.org/wiki/Token_(Racing_team) +80,iso_marlboro,Iso Marlboro,British,http://en.wikipedia.org/wiki/Iso_Marlboro +81,tecno,Tecno,Italian,http://en.wikipedia.org/wiki/Tecno +82,matra,Matra,French,http://en.wikipedia.org/wiki/Matra +83,politoys,Politoys,British,http://en.wikipedia.org/wiki/Frank_Williams_Racing_Cars +84,connew,Connew,British,http://en.wikipedia.org/wiki/Connew +85,bellasi,Bellasi,Swiss,http://en.wikipedia.org/wiki/Bellasi +86,tomaso,De Tomaso,Italian,http://en.wikipedia.org/wiki/De_Tomaso +87,cooper,Cooper,British,http://en.wikipedia.org/wiki/Cooper_Car_Company +88,eagle,Eagle,American,http://en.wikipedia.org/wiki/Anglo_American_Racers +89,lds,LDS,South African,http://en.wikipedia.org/wiki/LDS_(automobile) +90,protos,Protos,British,http://en.wikipedia.org/wiki/Protos_(constructor) +91,shannon,Shannon,British,http://en.wikipedia.org/wiki/Shannon_(Formula_One) +92,scirocco,Scirocco,British,http://en.wikipedia.org/wiki/Scirocco-Powell +93,re,RE,Rhodesian,http://en.wikipedia.org/wiki/RE_%28automobile%29 +94,brp,BRP,British,http://en.wikipedia.org/wiki/British_Racing_Partnership +95,porsche,Porsche,German,http://en.wikipedia.org/wiki/Porsche_in_Formula_One +96,derrington,Derrington,British,http://en.wikipedia.org/wiki/Derrington-Francis +97,gilby,Gilby,British,http://en.wikipedia.org/wiki/Gilby +98,stebro,Stebro,Canadian,http://en.wikipedia.org/wiki/Stebro +99,emeryson,Emeryson,British,http://en.wikipedia.org/wiki/Emeryson +100,enb,ENB,Belgium,http://en.wikipedia.org/wiki/Ecurie_Nationale_Belge +101,jbw,JBW,British,http://en.wikipedia.org/wiki/JBW +102,ferguson,Ferguson,British,http://en.wikipedia.org/wiki/Ferguson_Research_Ltd. +103,mbm,MBM,Swiss,http://en.wikipedia.org/wiki/Monteverdi_Basel_Motors +104,behra-porsche,Behra-Porsche,Italian,http://en.wikipedia.org/wiki/Behra-Porsche +105,maserati,Maserati,Italian,http://en.wikipedia.org/wiki/Maserati +106,scarab,Scarab,American,http://en.wikipedia.org/wiki/Scarab_(constructor) +107,watson,Watson,American,http://en.wikipedia.org/wiki/A.J._Watson +108,epperly,Epperly,American,http://en.wikipedia.org/wiki/Epperly +109,phillips,Phillips,American,http://en.wikipedia.org/wiki/Phillips_(constructor) +110,lesovsky,Lesovsky,American,http://en.wikipedia.org/wiki/Lesovsky +111,trevis,Trevis,American,http://en.wikipedia.org/wiki/Trevis +112,meskowski,Meskowski,American,http://en.wikipedia.org/wiki/Meskowski +113,kurtis_kraft,Kurtis Kraft,American,http://en.wikipedia.org/wiki/Kurtis_Kraft +114,kuzma,Kuzma,American,http://en.wikipedia.org/wiki/Kuzma_(constructor) +115,vhristensen,Christensen,American,http://en.wikipedia.org/wiki/Christensen_(constructor) +116,ewing,Ewing,American,http://en.wikipedia.org/wiki/Ewing_(constructor) +117,aston_martin,Aston Martin,British,http://en.wikipedia.org/wiki/Aston_Martin +118,vanwall,Vanwall,British,http://en.wikipedia.org/wiki/Vanwall +119,moore,Moore,American,http://en.wikipedia.org/wiki/Moore_(constructor) +120,dunn,Dunn,American,http://en.wikipedia.org/wiki/Dunn_Engineering +121,elder,Elder,American,http://en.wikipedia.org/wiki/Elder_(constructor) +122,sutton,Sutton,American,http://en.wikipedia.org/wiki/Sutton_(constructor) +123,fry,Fry,British,http://en.wikipedia.org/wiki/Fry_(racing_team) +124,tec-mec,Tec-Mec,Italian,http://en.wikipedia.org/wiki/Tec-Mec +125,connaught,Connaught,British,http://en.wikipedia.org/wiki/Connaught_Engineering +126,alta,Alta,British,http://en.wikipedia.org/wiki/Alta_auto_racing_team +127,osca,OSCA,Italian,http://en.wikipedia.org/wiki/Officine_Specializate_Costruzione_Automobili +128,gordini,Gordini,French,http://en.wikipedia.org/wiki/Gordini +129,stevens,Stevens,American,http://en.wikipedia.org/wiki/Stevens_(constructor) +130,bugatti,Bugatti,French,http://en.wikipedia.org/wiki/Bugatti +131,mercedes,Mercedes,German,http://en.wikipedia.org/wiki/Mercedes-Benz_in_Formula_One +132,lancia,Lancia,Italian,http://en.wikipedia.org/wiki/Lancia_in_Formula_One +133,hwm,HWM,British,http://en.wikipedia.org/wiki/Hersham_and_Walton_Motors +134,schroeder,Schroeder,American,http://en.wikipedia.org/wiki/Schroeder_(constructor) +135,pawl,Pawl,American,http://en.wikipedia.org/wiki/Pawl_(constructor) +136,pankratz,Pankratz,American,http://en.wikipedia.org/wiki/Pankratz +137,arzani-volpini,Arzani-Volpini,Italian,http://en.wikipedia.org/wiki/Arzani-Volpini +138,nichels,Nichels,American,http://en.wikipedia.org/wiki/Nichels +139,bromme,Bromme,American,http://en.wikipedia.org/wiki/Bromme +140,klenk,Klenk,German,http://en.wikipedia.org/wiki/Klenk +141,simca,Simca,French,http://en.wikipedia.org/wiki/Simca +142,turner,Turner,American,http://en.wikipedia.org/wiki/Turner_(constructor) +143,del_roy,Del Roy,American,http://en.wikipedia.org/wiki/Del_Roy +144,veritas,Veritas,German,http://en.wikipedia.org/wiki/Veritas_(constructor) +145,bmw,BMW,German,http://en.wikipedia.org/wiki/BMW +146,emw,EMW,East German,http://en.wikipedia.org/wiki/Eisenacher_Motorenwerk +147,afm,AFM,German,http://en.wikipedia.org/wiki/Alex_von_Falkenhausen_Motorenbau +148,frazer_nash,Frazer Nash,British,http://en.wikipedia.org/wiki/Frazer_Nash +149,sherman,Sherman,American,http://en.wikipedia.org/wiki/Sherman_(constructor) +150,deidt,Deidt,American,http://en.wikipedia.org/wiki/Deidt +151,era,ERA,British,http://en.wikipedia.org/wiki/English_Racing_Automobiles +152,butterworth,Aston Butterworth,British,http://en.wikipedia.org/wiki/Aston_Butterworth +153,cisitalia,Cisitalia,Italian,http://en.wikipedia.org/wiki/Cisitalia +154,lago,Talbot-Lago,French,http://en.wikipedia.org/wiki/Talbot-Lago +155,hall,Hall,American,http://en.wikipedia.org/wiki/Hall_(constructor) +156,marchese,Marchese,American,http://en.wikipedia.org/wiki/Marchese_(constructor) +157,langley,Langley,American,http://en.wikipedia.org/wiki/Langley_(constructor) +158,rae,Rae,American,http://en.wikipedia.org/wiki/Rae_(motorsport) +159,olson,Olson,American,http://en.wikipedia.org/wiki/Olson_(constructor) +160,wetteroth,Wetteroth,American,http://en.wikipedia.org/wiki/Wetteroth +161,adams,Adams,American,http://en.wikipedia.org/wiki/Adams_(constructor) +162,snowberger,Snowberger,American,http://en.wikipedia.org/wiki/Snowberger +163,milano,Milano,Italian,http://en.wikipedia.org/wiki/Scuderia_Milano +164,hrt,HRT,Spanish,http://en.wikipedia.org/wiki/Hispania_Racing +167,cooper-maserati,Cooper-Maserati,British,http://en.wikipedia.org/wiki/Cooper_Car_Company +166,virgin,Virgin,British,http://en.wikipedia.org/wiki/Virgin_Racing +168,cooper-osca,Cooper-OSCA,British,http://en.wikipedia.org/wiki/Cooper_Car_Company +169,cooper-borgward,Cooper-Borgward,British,http://en.wikipedia.org/wiki/Cooper_Car_Company +170,cooper-climax,Cooper-Climax,British,http://en.wikipedia.org/wiki/Cooper_Car_Company +171,cooper-castellotti,Cooper-Castellotti,British,http://en.wikipedia.org/wiki/Cooper_Car_Company +172,lotus-climax,Lotus-Climax,British,http://en.wikipedia.org/wiki/Team_Lotus +173,lotus-maserati,Lotus-Maserati,British,http://en.wikipedia.org/wiki/Team_Lotus +174,de_tomaso-osca,De Tomaso-Osca,Italian,http://en.wikipedia.org/wiki/De_Tomaso +175,de_tomaso-alfa_romeo,De Tomaso-Alfa Romeo,Italian,http://en.wikipedia.org/wiki/De_Tomaso +176,lotus-brm,Lotus-BRM,British,http://en.wikipedia.org/wiki/Team_Lotus +177,lotus-borgward,Lotus-Borgward,British,http://en.wikipedia.org/wiki/Team_Lotus +178,cooper-alfa_romeo,Cooper-Alfa Romeo,British,http://en.wikipedia.org/wiki/Cooper_Car_Company +179,de_tomaso-ferrari,De Tomaso-Ferrari,Italian,http://en.wikipedia.org/wiki/De_Tomaso +180,lotus-ford,Lotus-Ford,British,http://en.wikipedia.org/wiki/Team_Lotus +181,brabham-brm,Brabham-BRM,British,http://en.wikipedia.org/wiki/Brabham +182,brabham-ford,Brabham-Ford,British,http://en.wikipedia.org/wiki/Brabham +183,brabham-climax,Brabham-Climax,British,http://en.wikipedia.org/wiki/Brabham +184,lds-climax,LDS-Climax,South African,http://en.wikipedia.org/wiki/LDS_(automobile) +185,lds-alfa_romeo,LDS-Alfa Romeo,South African,http://en.wikipedia.org/wiki/LDS_(automobile) +186,cooper-ford,Cooper-Ford,British,http://en.wikipedia.org/wiki/Cooper_Car_Company +187,mclaren-ford,McLaren-Ford,British,http://en.wikipedia.org/wiki/Team_McLaren +188,mclaren-seren,McLaren-Serenissima,British,http://en.wikipedia.org/wiki/Team_McLaren +189,eagle-climax,Eagle-Climax,American,http://en.wikipedia.org/wiki/Anglo_American_Racers +190,eagle-weslake,Eagle-Weslake,American,http://en.wikipedia.org/wiki/Anglo_American_Racers +191,brabham-repco,Brabham-Repco,British,http://en.wikipedia.org/wiki/Brabham +192,cooper-ferrari,Cooper-Ferrari,British,http://en.wikipedia.org/wiki/Cooper_Car_Company +193,cooper-ats,Cooper-ATS,British,http://en.wikipedia.org/wiki/Cooper_Car_Company +194,mclaren-brm,McLaren-BRM,British,http://en.wikipedia.org/wiki/McLaren_(racing) +195,cooper-brm,Cooper-BRM,British,http://en.wikipedia.org/wiki/Cooper_Car_Company +196,matra-ford,Matra-Ford,French,http://en.wikipedia.org/wiki/Matra +197,brm-ford,BRM-Ford,British,http://en.wikipedia.org/wiki/BRM +198,mclaren-alfa_romeo,McLaren-Alfa Romeo,British,http://en.wikipedia.org/wiki/McLaren_(racing) +199,march-alfa_romeo,March-Alfa Romeo,British,http://en.wikipedia.org/wiki/March_Engineering +200,march-ford,March-Ford,British,http://en.wikipedia.org/wiki/March_Engineering +201,lotus-pw,Lotus-Pratt & Whitney,British,http://en.wikipedia.org/wiki/Team_Lotus +202,shadow-ford,Shadow-Ford,British,http://en.wikipedia.org/wiki/Shadow_Racing_Cars +203,shadow-matra,Shadow-Matra,British,http://en.wikipedia.org/wiki/Shadow_Racing_Cars +204,brabham-alfa_romeo,Brabham-Alfa Romeo,British,http://en.wikipedia.org/wiki/Brabham +205,lotus_racing,Lotus,Malaysian,http://en.wikipedia.org/wiki/Lotus_Racing +206,marussia,Marussia,Russian,http://en.wikipedia.org/wiki/Marussia_F1 +207,caterham,Caterham,Malaysian,http://en.wikipedia.org/wiki/Caterham_F1 +208,lotus_f1,Lotus F1,British,http://en.wikipedia.org/wiki/Lotus_F1 +209,manor,Manor Marussia,British,http://en.wikipedia.org/wiki/Manor_Motorsport +210,haas,Haas F1 Team,American,http://en.wikipedia.org/wiki/Haas_F1_Team diff --git a/database/formula_1/data_csv/driverStandings.csv b/database/formula_1/data_csv/driverStandings.csv new file mode 100644 index 0000000000000000000000000000000000000000..95ec151dcf577ae340e7d5c4115105c875c4035f --- /dev/null +++ b/database/formula_1/data_csv/driverStandings.csv @@ -0,0 +1,31727 @@ +driverStandingsId,raceId,driverId,points,position,positionText,wins +1,18,1,10,1,1,1 +2,18,2,8,2,2,0 +3,18,3,6,3,3,0 +4,18,4,5,4,4,0 +5,18,5,4,5,5,0 +6,18,6,3,6,6,0 +7,18,7,2,7,7,0 +8,18,8,1,8,8,0 +9,19,1,14,1,1,1 +10,19,2,11,3,3,0 +11,19,3,6,6,6,0 +12,19,4,6,7,7,0 +13,19,5,10,4,4,0 +14,19,6,3,9,9,0 +15,19,7,2,10,10,0 +16,19,8,11,2,2,1 +17,19,9,8,5,5,0 +18,19,15,5,8,8,0 +19,19,17,2,11,11,0 +20,19,14,0,12,12,0 +21,19,18,0,13,13,0 +22,19,12,0,14,14,0 +23,19,21,0,15,15,0 +24,19,22,0,16,16,0 +25,19,19,0,17,17,0 +26,19,11,0,18,18,0 +27,20,1,14,3,3,1 +28,20,2,16,2,2,0 +29,20,3,7,8,8,0 +30,20,4,6,9,9,0 +31,20,5,14,5,5,0 +32,20,6,3,11,11,0 +33,20,7,2,12,12,0 +34,20,8,19,1,1,1 +35,20,9,14,4,4,0 +36,20,15,8,7,7,0 +37,20,17,4,10,10,0 +38,20,14,0,13,13,0 +39,20,18,0,15,15,0 +40,20,12,0,17,17,0 +41,20,21,0,18,18,0 +42,20,22,0,16,16,0 +43,20,19,0,19,19,0 +44,20,11,0,20,20,0 +45,20,13,10,6,6,1 +46,20,10,0,14,14,0 +47,20,16,0,21,21,0 +48,21,1,20,2,2,1 +49,21,2,16,5,5,0 +50,21,3,7,9,9,0 +51,21,4,6,10,10,0 +52,21,5,14,6,6,0 +53,21,6,5,11,11,0 +54,21,7,2,13,13,0 +55,21,8,29,1,1,2 +56,21,9,19,3,3,0 +57,21,15,9,7,7,0 +58,21,17,8,8,8,0 +59,21,14,0,15,15,0 +60,21,18,3,12,12,0 +61,21,12,0,18,18,0 +62,21,21,0,16,16,0 +63,21,22,0,17,17,0 +64,21,19,0,20,20,0 +65,21,11,0,19,19,0 +66,21,13,18,4,4,1 +67,21,10,0,14,14,0 +68,21,16,0,21,21,0 +69,22,1,28,3,3,1 +70,22,2,20,5,5,0 +71,22,3,8,10,10,0 +72,22,4,9,8,8,0 +73,22,5,14,6,6,0 +74,22,6,5,11,11,0 +75,22,7,2,13,13,0 +76,22,8,35,1,1,2 +77,22,9,24,4,4,0 +78,22,15,9,9,9,0 +79,22,17,10,7,7,0 +80,22,14,0,14,14,0 +81,22,18,3,12,12,0 +82,22,12,0,18,18,0 +83,22,21,0,16,16,0 +84,22,22,0,17,17,0 +85,22,19,0,20,20,0 +86,22,11,0,19,19,0 +87,22,13,28,2,2,2 +88,22,10,0,15,15,0 +89,22,16,0,21,21,0 +90,22,20,0,22,22,0 +91,23,1,38,1,1,2 +92,23,2,20,5,5,0 +93,23,3,8,10,10,0 +94,23,4,9,8,8,0 +95,23,5,15,6,6,0 +96,23,6,7,11,11,0 +97,23,7,2,15,15,0 +98,23,8,35,2,2,2 +99,23,9,32,4,4,0 +100,23,15,9,9,9,0 +101,23,17,15,7,7,0 +102,23,14,0,16,16,0 +103,23,18,3,13,13,0 +104,23,12,0,19,19,0 +105,23,21,0,18,18,0 +106,23,22,3,14,14,0 +107,23,19,0,21,21,0 +108,23,11,0,20,20,0 +109,23,13,34,3,3,2 +110,23,10,0,17,17,0 +111,23,16,0,22,22,0 +112,23,20,4,12,12,0 +113,24,1,38,2,2,2 +114,24,2,28,5,5,0 +115,24,3,8,10,10,0 +116,24,4,9,9,9,0 +117,24,5,15,6,6,0 +118,24,6,7,11,11,0 +119,24,7,2,17,17,0 +120,24,8,35,4,4,2 +121,24,9,42,1,1,1 +122,24,15,12,8,8,0 +123,24,17,15,7,7,0 +124,24,14,6,12,12,0 +125,24,18,3,16,16,0 +126,24,12,0,19,19,0 +127,24,21,0,18,18,0 +128,24,22,5,15,15,0 +129,24,19,0,21,21,0 +130,24,11,0,20,20,0 +131,24,13,38,3,3,2 +132,24,10,5,13,13,0 +133,24,16,0,22,22,0 +134,24,20,5,14,14,0 +135,25,1,38,4,4,2 +136,25,2,28,5,5,0 +137,25,3,8,10,10,0 +138,25,4,10,9,9,0 +139,25,5,20,6,6,0 +140,25,6,7,11,11,0 +141,25,7,2,18,18,0 +142,25,8,43,3,3,2 +143,25,9,46,2,2,1 +144,25,15,18,7,7,0 +145,25,17,18,8,8,0 +146,25,14,6,12,12,0 +147,25,18,3,16,16,0 +148,25,12,2,17,17,0 +149,25,21,0,19,19,0 +150,25,22,5,15,15,0 +151,25,19,0,21,21,0 +152,25,11,0,20,20,0 +153,25,13,48,1,1,3 +154,25,10,5,13,13,0 +155,25,16,0,22,22,0 +156,25,20,5,14,14,0 +157,26,1,48,1,1,3 +158,26,2,36,5,5,0 +159,26,3,8,11,11,0 +160,26,4,13,9,9,0 +161,26,5,24,6,6,0 +162,26,6,8,12,12,0 +163,26,7,2,17,17,0 +164,26,8,48,3,3,2 +165,26,9,46,4,4,1 +166,26,15,20,7,7,0 +167,26,17,18,8,8,0 +168,26,14,6,13,13,0 +169,26,18,3,16,16,0 +170,26,12,2,18,18,0 +171,26,21,0,19,19,0 +172,26,22,11,10,10,0 +173,26,19,0,21,21,0 +174,26,11,0,20,20,0 +175,26,13,48,2,2,3 +176,26,10,5,14,14,0 +177,26,16,0,22,22,0 +178,26,20,5,15,15,0 +179,27,1,58,1,1,4 +180,27,2,41,5,5,0 +181,27,3,8,12,12,0 +182,27,4,13,9,9,0 +183,27,5,28,6,6,0 +184,27,6,8,13,13,0 +185,27,7,2,18,18,0 +186,27,8,51,3,3,2 +187,27,9,48,4,4,1 +188,27,15,20,7,7,0 +189,27,17,18,8,8,0 +190,27,14,6,14,14,0 +191,27,18,3,17,17,0 +192,27,12,10,11,11,0 +193,27,21,0,19,19,0 +194,27,22,11,10,10,0 +195,27,19,0,22,22,0 +196,27,11,0,20,20,0 +197,27,13,54,2,2,3 +198,27,10,5,16,16,0 +199,27,16,0,21,21,0 +200,27,20,6,15,15,0 +201,28,1,62,1,1,4 +202,28,2,41,5,5,0 +203,28,3,8,13,13,0 +204,28,4,18,8,8,0 +205,28,5,38,6,6,1 +206,28,6,8,14,14,0 +207,28,7,2,18,18,0 +208,28,8,57,2,2,2 +209,28,9,49,4,4,1 +210,28,15,22,7,7,0 +211,28,17,18,9,9,0 +212,28,14,6,15,15,0 +213,28,18,3,17,17,0 +214,28,12,13,11,11,0 +215,28,21,0,19,19,0 +216,28,22,11,12,12,0 +217,28,19,0,22,22,0 +218,28,11,0,20,20,0 +219,28,13,54,3,3,3 +220,28,10,13,10,10,0 +221,28,16,0,21,21,0 +222,28,20,6,16,16,0 +223,29,1,70,1,1,4 +224,29,2,41,6,6,0 +225,29,3,9,13,13,0 +226,29,4,18,8,8,0 +227,29,5,43,5,5,1 +228,29,6,8,15,15,0 +229,29,7,2,18,18,0 +230,29,8,57,3,3,2 +231,29,9,55,4,4,1 +232,29,15,26,7,7,0 +233,29,17,18,9,9,0 +234,29,14,6,16,16,0 +235,29,18,3,17,17,0 +236,29,12,13,11,11,0 +237,29,21,0,19,19,0 +238,29,22,11,12,12,0 +239,29,19,0,22,22,0 +240,29,11,0,20,20,0 +241,29,13,64,2,2,4 +242,29,10,15,10,10,0 +243,29,16,0,21,21,0 +244,29,20,9,14,14,0 +245,30,1,76,1,1,4 +246,30,2,49,5,5,0 +247,30,3,9,14,14,0 +248,30,4,23,8,8,0 +249,30,5,43,6,6,1 +250,30,6,8,15,15,0 +251,30,7,4,17,17,0 +252,30,8,57,4,4,2 +253,30,9,58,3,3,1 +254,30,15,26,7,7,0 +255,30,17,19,9,9,0 +256,30,14,6,16,16,0 +257,30,18,3,18,18,0 +258,30,12,13,11,11,0 +259,30,21,0,19,19,0 +260,30,22,11,13,13,0 +261,30,19,0,22,22,0 +262,30,11,0,21,21,0 +263,30,13,74,2,2,5 +264,30,10,15,10,10,0 +265,30,16,0,20,20,0 +266,30,20,13,12,12,0 +267,31,1,78,1,1,4 +268,31,2,53,5,5,0 +269,31,3,9,14,14,0 +270,31,4,28,7,7,0 +271,31,5,51,6,6,1 +272,31,6,8,15,15,0 +273,31,7,4,17,17,0 +274,31,8,57,4,4,2 +275,31,9,64,3,3,1 +276,31,15,26,8,8,0 +277,31,17,20,10,10,0 +278,31,14,6,16,16,0 +279,31,18,3,18,18,0 +280,31,12,13,12,12,0 +281,31,21,0,19,19,0 +282,31,22,11,13,13,0 +283,31,19,0,22,22,0 +284,31,11,0,21,21,0 +285,31,13,77,2,2,5 +286,31,10,15,11,11,0 +287,31,16,0,20,20,0 +288,31,20,23,9,9,1 +289,32,1,84,1,1,4 +290,32,2,56,5,5,0 +291,32,3,17,12,12,0 +292,32,4,38,7,7,1 +293,32,5,51,6,6,1 +294,32,6,9,15,15,0 +295,32,7,4,17,17,0 +296,32,8,57,4,4,2 +297,32,9,64,3,3,1 +298,32,15,26,9,9,0 +299,32,17,20,11,11,0 +300,32,14,8,16,16,0 +301,32,18,3,18,18,0 +302,32,12,13,13,13,0 +303,32,21,0,19,19,0 +304,32,22,11,14,14,0 +305,32,19,0,22,22,0 +306,32,11,0,21,21,0 +307,32,13,77,2,2,5 +308,32,10,20,10,10,0 +309,32,16,0,20,20,0 +310,32,20,27,8,8,1 +311,33,1,84,1,1,4 +312,33,2,56,5,5,0 +313,33,3,17,13,13,0 +314,33,4,48,7,7,2 +315,33,5,51,6,6,1 +316,33,6,9,15,15,0 +317,33,7,4,17,17,0 +318,33,8,63,4,4,2 +319,33,9,72,3,3,1 +320,33,15,30,9,9,0 +321,33,17,21,10,10,0 +322,33,14,8,16,16,0 +323,33,18,3,18,18,0 +324,33,12,18,12,12,0 +325,33,21,0,19,19,0 +326,33,22,11,14,14,0 +327,33,19,0,22,22,0 +328,33,11,0,21,21,0 +329,33,13,79,2,2,5 +330,33,10,20,11,11,0 +331,33,16,0,20,20,0 +332,33,20,30,8,8,1 +3459,34,20,30,8,8,1 +3458,34,16,0,20,20,0 +3457,34,10,22,10,10,0 +3456,34,13,87,2,2,5 +3455,34,11,0,21,21,0 +3454,34,19,0,22,22,0 +3453,34,22,11,14,14,0 +3452,34,21,0,19,19,0 +3451,34,12,19,12,12,0 +3450,34,18,3,18,18,0 +3449,34,14,8,16,16,0 +3448,34,17,21,11,11,0 +3447,34,15,30,9,9,0 +3446,34,9,75,3,3,1 +3445,34,8,69,4,4,2 +3444,34,7,4,17,17,0 +3443,34,6,9,15,15,0 +3442,34,5,51,7,7,1 +3441,34,4,53,6,6,2 +3440,34,3,17,13,13,0 +3439,34,2,60,5,5,0 +3438,34,1,94,1,1,5 +355,35,1,98,1,1,5 +356,35,2,60,6,6,0 +357,35,3,17,13,13,0 +358,35,4,61,5,5,2 +359,35,5,53,7,7,1 +360,35,6,9,15,15,0 +361,35,7,4,17,17,0 +362,35,8,75,3,3,2 +363,35,9,75,4,4,1 +364,35,15,31,9,9,0 +365,35,17,21,11,11,0 +366,35,14,8,16,16,0 +367,35,18,3,18,18,0 +368,35,12,19,12,12,0 +369,35,21,0,19,19,0 +370,35,22,11,14,14,0 +371,35,19,0,22,22,0 +372,35,11,0,21,21,0 +373,35,13,97,2,2,6 +374,35,10,25,10,10,0 +375,35,16,0,20,20,0 +376,35,20,35,8,8,1 +13629,36,16,0,17,17,0 +13628,36,19,0,16,16,0 +13627,36,18,0,15,15,0 +13626,36,24,0,14,14,0 +13625,36,17,0,13,13,0 +13624,36,11,0,12,12,0 +13623,36,22,0,11,11,0 +13622,36,5,0,10,10,0 +13621,36,15,0,9,9,0 +13620,36,23,1,8,8,0 +13619,36,3,2,7,7,0 +13618,36,13,3,6,6,0 +13617,36,21,4,5,5,0 +13649,37,9,0,20,20,0 +13648,37,26,0,17,17,0 +13647,37,25,0,11,11,0 +13646,37,16,0,19,19,0 +13645,37,19,0,18,18,0 +13644,37,18,0,15,15,0 +13643,37,24,0,16,16,0 +13642,37,17,0,12,12,0 +13641,37,11,0,14,14,0 +13640,37,22,0,13,13,0 +13639,37,5,1,9,9,0 +13638,37,15,2,7,7,0 +13637,37,23,1,10,10,0 +13635,37,13,7,6,6,0 +13670,38,27,0,18,18,0 +13669,38,9,3,8,8,0 +13668,38,26,0,19,19,0 +13667,38,25,0,12,12,0 +13666,38,16,0,20,20,0 +13665,38,19,0,21,21,0 +13664,38,18,0,16,16,0 +13663,38,24,0,17,17,0 +13662,38,17,0,13,13,0 +13661,38,11,0,15,15,0 +13660,38,22,0,14,14,0 +13659,38,5,1,10,10,0 +13658,38,15,4,7,7,0 +13657,38,23,1,11,11,0 +13656,38,3,2,9,9,0 +13655,38,13,17,4,4,1 +13654,38,21,8,6,6,0 +13653,38,2,15,5,5,0 +13652,38,1,22,3,3,0 +13651,38,4,22,1,1,1 +13650,38,8,22,2,2,1 +13692,39,14,4,9,9,0 +13691,39,27,0,20,20,0 +13690,39,9,8,6,6,0 +13689,39,26,0,22,22,0 +13688,39,25,0,14,14,0 +13687,39,16,0,19,19,0 +13686,39,19,0,17,17,0 +13685,39,18,0,18,18,0 +13684,39,24,0,21,21,0 +13683,39,17,0,16,16,0 +13682,39,11,1,12,12,0 +13681,39,22,0,15,15,0 +13680,39,5,3,11,11,0 +13679,39,15,4,10,10,0 +13678,39,23,1,13,13,0 +13677,39,3,5,8,8,0 +13675,39,21,8,7,7,0 +13714,40,14,4,9,9,0 +13713,40,27,0,21,21,0 +13712,40,9,12,7,7,0 +13711,40,26,0,15,15,0 +13710,40,25,2,12,12,0 +13709,40,16,0,20,20,0 +13708,40,19,0,19,19,0 +13707,40,18,0,18,18,0 +13706,40,24,0,22,22,0 +13705,40,17,0,17,17,0 +13704,40,11,1,13,13,0 +13703,40,22,0,16,16,0 +13702,40,5,3,11,11,0 +13701,40,15,4,10,10,0 +13700,40,23,1,14,14,0 +13699,40,3,5,8,8,0 +13697,40,21,13,6,6,0 +13736,41,14,4,11,11,0 +13735,41,27,0,21,21,0 +13734,41,9,12,7,7,0 +13733,41,26,0,16,16,0 +13732,41,25,8,8,8,0 +13731,41,16,0,20,20,0 +13730,41,19,0,18,18,0 +13729,41,18,0,19,19,0 +13728,41,24,0,22,22,0 +13726,41,11,4,12,12,0 +13724,41,5,8,9,9,0 +13722,41,23,2,14,14,0 +13721,41,3,5,10,10,0 +13720,41,13,33,3,3,2 +13718,41,2,26,5,5,0 +13716,41,4,40,2,2,2 +13759,42,20,1,16,16,0 +13758,42,14,4,12,12,0 +13757,42,27,0,22,22,0 +13756,42,9,12,7,7,0 +13755,42,26,0,17,17,0 +13754,42,25,8,9,9,0 +13753,42,16,0,21,21,0 +13752,42,19,0,19,19,0 +13751,42,18,0,20,20,0 +13750,42,24,0,23,23,0 +13748,42,11,4,13,13,0 +13746,42,5,12,8,8,0 +13744,42,23,2,15,15,0 +13743,42,3,5,11,11,0 +13742,42,13,39,3,3,2 +13740,42,2,26,5,5,0 +13738,42,4,48,2,2,2 +13782,43,20,1,17,17,0 +13781,43,14,4,12,12,0 +13780,43,27,0,22,22,0 +13779,43,9,17,6,6,0 +13778,43,26,0,18,18,0 +13777,43,25,8,9,9,0 +13776,43,16,0,21,21,0 +13775,43,19,0,20,20,0 +13774,43,18,1,16,16,0 +13773,43,24,0,23,23,0 +13772,43,17,2,14,14,0 +13771,43,11,4,13,13,0 +13769,43,5,12,8,8,0 +13767,43,23,2,15,15,0 +13766,43,3,5,11,11,0 +13765,43,13,47,3,3,2 +13763,43,2,30,5,5,0 +13761,43,4,50,2,2,2 +13805,44,20,1,17,17,0 +13804,44,14,4,12,12,0 +13803,44,27,0,22,22,0 +13802,44,9,22,6,6,0 +13801,44,26,0,19,19,0 +13800,44,25,8,9,9,0 +13799,44,16,0,21,21,0 +13798,44,19,0,20,20,0 +13797,44,18,1,16,16,0 +13796,44,24,0,23,23,0 +13795,44,17,2,14,14,0 +13794,44,11,4,13,13,0 +13792,44,5,14,8,8,0 +13790,44,23,2,15,15,0 +13789,44,3,5,11,11,0 +13787,44,21,17,7,7,0 +13784,44,4,58,2,2,2 +13828,45,20,1,17,17,0 +13827,45,14,8,11,11,0 +13826,45,27,0,22,22,0 +13825,45,9,24,6,6,0 +13824,45,26,0,19,19,0 +13823,45,25,13,9,9,0 +13822,45,16,0,21,21,0 +13821,45,19,0,20,20,0 +13820,45,18,1,16,16,0 +13819,45,24,0,23,23,0 +13818,45,17,8,10,10,0 +13817,45,11,4,14,14,0 +13816,45,22,0,18,18,0 +13815,45,5,15,8,8,0 +13814,45,15,7,12,12,0 +13813,45,23,2,15,15,0 +13811,45,13,59,3,3,2 +13809,45,2,36,5,5,0 +13832,46,2,42,5,5,0 +13851,46,20,1,17,17,0 +13850,46,14,8,11,11,0 +13849,46,27,0,22,22,0 +13848,46,9,28,6,6,0 +13847,46,26,0,19,19,0 +13846,46,25,13,9,9,0 +13845,46,16,0,21,21,0 +13844,46,19,0,20,20,0 +13843,46,18,1,16,16,0 +13842,46,24,0,23,23,0 +13841,46,17,8,10,10,0 +13840,46,11,4,15,15,0 +13838,46,5,16,8,8,0 +13837,46,15,7,13,13,0 +13836,46,23,5,14,14,0 +13835,46,3,7,12,12,0 +13833,46,21,17,7,7,0 +13830,46,4,73,2,2,3 +13856,47,21,17,8,8,0 +13875,47,29,0,24,24,0 +13874,47,20,1,17,17,0 +13873,47,14,8,12,12,0 +13872,47,27,0,22,22,0 +13871,47,9,29,6,6,0 +13870,47,26,0,19,19,0 +13869,47,25,13,9,9,0 +13868,47,16,0,21,21,0 +13867,47,19,0,20,20,0 +13866,47,18,1,16,16,0 +13865,47,24,0,23,23,0 +13864,47,17,8,11,11,0 +13863,47,11,4,15,15,0 +13862,47,22,0,18,18,0 +13861,47,5,19,7,7,0 +13858,47,3,9,10,10,0 +13857,47,13,69,3,3,3 +13855,47,2,47,5,5,0 +13853,47,4,79,2,2,3 +13879,48,2,52,5,5,0 +13899,48,29,0,24,24,0 +13898,48,20,1,17,17,0 +13897,48,14,8,12,12,0 +13896,48,27,0,22,22,0 +13895,48,9,33,6,6,0 +13894,48,26,0,19,19,0 +13893,48,25,13,9,9,0 +13892,48,16,0,21,21,0 +13891,48,19,0,20,20,0 +13890,48,18,2,16,16,0 +13889,48,24,0,23,23,0 +13888,48,17,8,11,11,0 +13887,48,11,4,15,15,0 +13886,48,22,0,18,18,0 +13885,48,5,21,7,7,0 +13884,48,15,7,13,13,0 +13881,48,13,69,4,4,3 +13880,48,21,17,8,8,0 +13877,48,4,89,2,2,4 +13903,49,2,56,5,5,0 +13923,49,29,0,24,24,0 +13922,49,20,1,17,17,0 +13921,49,14,8,12,12,0 +13920,49,27,0,23,23,0 +13919,49,9,33,6,6,0 +13918,49,26,0,19,19,0 +13917,49,25,13,10,10,0 +13916,49,16,0,22,22,0 +13915,49,19,0,20,20,0 +13914,49,18,2,16,16,0 +13913,49,24,0,21,21,0 +13912,49,17,10,11,11,0 +13911,49,11,4,15,15,0 +13910,49,22,0,18,18,0 +13909,49,5,22,7,7,0 +13908,49,15,7,13,13,0 +13905,49,13,77,4,4,3 +13904,49,21,17,8,8,0 +13901,49,4,95,2,2,4 +13927,50,2,56,5,5,0 +13947,50,29,0,23,23,0 +13946,50,20,1,18,18,0 +13945,50,14,13,11,11,0 +13944,50,27,0,24,24,0 +13943,50,9,35,6,6,0 +13942,50,26,0,21,21,0 +13941,50,25,13,10,10,0 +13940,50,16,1,17,17,0 +13939,50,19,0,22,22,0 +13938,50,18,2,16,16,0 +13937,50,24,0,20,20,0 +13936,50,17,10,12,12,0 +13935,50,11,4,15,15,0 +13934,50,22,0,19,19,0 +13933,50,5,30,7,7,0 +13932,50,15,7,13,13,0 +13929,50,13,80,4,4,3 +13928,50,21,21,8,8,0 +13925,50,4,95,2,2,4 +13951,51,2,58,5,5,0 +13971,51,29,0,23,23,0 +13970,51,20,6,14,14,0 +13969,51,14,14,10,10,0 +13968,51,27,0,24,24,0 +13967,51,9,35,6,6,0 +13966,51,26,0,21,21,0 +13965,51,25,13,11,11,0 +13964,51,16,1,19,19,0 +13963,51,19,0,22,22,0 +13962,51,18,6,15,15,0 +13961,51,24,3,18,18,0 +13960,51,17,10,12,12,0 +13959,51,11,4,17,17,0 +13958,51,22,0,20,20,0 +13957,51,5,30,7,7,0 +13956,51,15,7,13,13,0 +13955,51,23,5,16,16,0 +13953,51,13,86,4,4,3 +13952,51,21,21,8,8,0 +13949,51,4,103,2,2,4 +13972,52,8,110,1,1,6 +13996,52,6,0,22,22,0 +13995,52,29,0,24,24,0 +13994,52,20,6,14,14,0 +13993,52,14,14,10,10,0 +13992,52,27,0,25,25,0 +13991,52,9,39,6,6,0 +13990,52,26,0,21,21,0 +13989,52,25,13,11,11,0 +13988,52,16,1,19,19,0 +13987,52,19,0,23,23,0 +13986,52,18,6,15,15,0 +13985,52,24,3,18,18,0 +13984,52,17,10,12,12,0 +13983,52,11,4,17,17,0 +13982,52,22,0,20,20,0 +13981,52,5,30,7,7,0 +13980,52,15,8,13,13,0 +13979,52,23,5,16,16,0 +13978,52,3,20,9,9,0 +13977,52,13,94,4,4,3 +13975,52,2,61,5,5,0 +13973,52,4,109,3,3,4 +12824,53,11,0,18,18,0 +12823,53,33,0,17,17,0 +12822,53,15,0,16,16,0 +12821,53,22,0,15,15,0 +12820,53,23,0,14,14,0 +12819,53,26,0,13,13,0 +12818,53,2,0,12,12,0 +12817,53,24,0,11,11,0 +12816,53,14,0,10,10,0 +12815,53,13,0,9,9,0 +12814,53,32,1,8,8,0 +12813,53,3,2,7,7,0 +12812,53,17,3,6,6,0 +12811,53,31,4,5,5,0 +12810,53,18,5,4,4,0 +12809,53,8,6,3,3,0 +12808,53,30,8,2,2,0 +12807,53,4,10,1,1,1 +12845,54,27,0,17,17,0 +12844,54,35,2,10,10,0 +12843,54,21,10,4,4,1 +12842,54,11,0,21,21,0 +12841,54,33,0,19,19,0 +12840,54,15,0,13,13,0 +12839,54,22,0,14,14,0 +12838,54,23,1,11,11,0 +12837,54,26,0,20,20,0 +12836,54,2,0,18,18,0 +12835,54,24,0,16,16,0 +12834,54,14,0,15,15,0 +12833,54,13,4,7,7,0 +12832,54,32,1,12,12,0 +12831,54,3,2,9,9,0 +12830,54,17,3,8,8,0 +12829,54,31,9,5,5,0 +12828,54,18,11,3,3,0 +12827,54,8,6,6,6,0 +12826,54,30,11,2,2,0 +12825,54,4,18,1,1,1 +12867,55,34,0,22,22,0 +12866,55,27,0,19,19,0 +12865,55,35,5,9,9,0 +12864,55,21,14,2,2,1 +12863,55,11,0,20,20,0 +12862,55,33,0,21,21,0 +12861,55,15,0,17,17,0 +12860,55,22,2,12,12,0 +12859,55,23,7,7,7,0 +12858,55,26,0,16,16,0 +12857,55,2,5,8,8,0 +12856,55,24,0,18,18,0 +12855,55,14,1,14,14,0 +12854,55,13,4,10,10,0 +12853,55,32,1,15,15,0 +12852,55,3,2,13,13,0 +12851,55,17,3,11,11,0 +12850,55,31,9,6,6,0 +12849,55,18,11,5,5,0 +12848,55,8,14,3,3,0 +12847,55,30,11,4,4,0 +12846,55,4,28,1,1,2 +12889,56,34,0,22,22,0 +12888,56,27,0,19,19,0 +12887,56,35,5,11,11,0 +12886,56,21,15,4,4,1 +12885,56,11,0,20,20,0 +12884,56,33,0,21,21,0 +12883,56,15,0,17,17,0 +12882,56,22,2,12,12,0 +12881,56,23,7,8,8,0 +12880,56,26,0,16,16,0 +12879,56,2,5,10,10,0 +12878,56,24,0,18,18,0 +12877,56,14,1,14,14,0 +12876,56,13,9,7,7,0 +12875,56,32,1,15,15,0 +12874,56,3,2,13,13,0 +12873,56,17,6,9,9,0 +12872,56,31,15,5,5,0 +12871,56,18,13,6,6,0 +12870,56,8,18,3,3,0 +12869,56,30,21,2,2,1 +12868,56,4,36,1,1,2 +12911,57,34,0,22,22,0 +12910,57,27,0,19,19,0 +12909,57,35,6,11,11,0 +12908,57,21,18,4,4,1 +12907,57,11,0,21,21,0 +12906,57,33,0,20,20,0 +12905,57,15,0,16,16,0 +12904,57,22,6,9,9,0 +12903,57,23,7,8,8,0 +12902,57,26,0,17,17,0 +12901,57,2,5,12,12,0 +12900,57,24,0,18,18,0 +12899,57,14,1,14,14,0 +12898,57,13,15,5,5,0 +12897,57,32,1,15,15,0 +12896,57,3,4,13,13,0 +12895,57,17,6,10,10,0 +12894,57,31,15,6,6,0 +12893,57,18,13,7,7,0 +12892,57,8,23,3,3,0 +12891,57,30,31,2,2,2 +12890,57,4,44,1,1,2 +12933,58,34,0,22,22,0 +12932,58,27,0,19,19,0 +12931,58,35,6,12,12,0 +12930,58,21,24,4,4,1 +12929,58,11,0,21,21,0 +12928,58,33,0,20,20,0 +12927,58,15,0,16,16,0 +12926,58,22,8,8,8,0 +12925,58,23,7,9,9,0 +12924,58,26,0,17,17,0 +12923,58,2,6,10,10,0 +12922,58,24,0,18,18,0 +12921,58,14,1,14,14,0 +12920,58,13,20,5,5,0 +12919,58,32,1,15,15,0 +12918,58,3,4,13,13,0 +12917,58,17,6,11,11,0 +12916,58,31,15,7,7,0 +12915,58,18,16,6,6,0 +12914,58,8,27,3,3,0 +12913,58,30,39,2,2,2 +12912,58,4,54,1,1,3 +12956,59,36,0,23,23,0 +12955,59,34,0,22,22,0 +12954,59,27,0,19,19,0 +12953,59,35,6,13,13,0 +12952,59,21,27,3,3,1 +12951,59,11,0,21,21,0 +12950,59,33,0,20,20,0 +12949,59,15,0,16,16,0 +12948,59,22,13,8,8,0 +12947,59,23,8,9,9,0 +12946,59,26,0,17,17,0 +12945,59,2,8,10,10,0 +12944,59,24,0,18,18,0 +12943,59,14,7,11,11,0 +12942,59,13,20,6,6,0 +12941,59,32,1,15,15,0 +12940,59,3,4,14,14,0 +12939,59,17,6,12,12,0 +12938,59,31,23,5,5,0 +12937,59,18,16,7,7,0 +12936,59,8,27,4,4,0 +12935,59,30,43,2,2,2 +12934,59,4,64,1,1,4 +12979,60,36,0,23,23,0 +12978,60,34,0,22,22,0 +12977,60,27,0,19,19,0 +12976,60,35,7,12,12,0 +12975,60,21,32,4,4,1 +12974,60,11,0,21,21,0 +12973,60,33,0,20,20,0 +12972,60,15,0,16,16,0 +12971,60,22,13,8,8,0 +12970,60,23,8,10,10,0 +12969,60,26,0,17,17,0 +12968,60,2,10,9,9,0 +12967,60,24,0,18,18,0 +12966,60,14,7,11,11,0 +12965,60,13,24,6,6,0 +12964,60,32,1,15,15,0 +12963,60,3,4,14,14,0 +12962,60,17,6,13,13,0 +12961,60,31,26,5,5,0 +12960,60,18,16,7,7,0 +12959,60,8,33,3,3,0 +12958,60,30,51,2,2,2 +12957,60,4,74,1,1,5 +13002,61,36,0,23,23,0 +13001,61,34,0,22,22,0 +13000,61,27,0,19,19,0 +12999,61,35,7,12,12,0 +12998,61,21,37,4,4,1 +12997,61,11,0,21,21,0 +12996,61,33,0,20,20,0 +12995,61,15,3,15,15,0 +12994,61,22,13,8,8,0 +12993,61,23,8,10,10,0 +12992,61,26,0,17,17,0 +12991,61,2,12,9,9,0 +12990,61,24,0,18,18,0 +12989,61,14,8,11,11,0 +12988,61,13,28,5,5,0 +12987,61,32,1,16,16,0 +12986,61,3,4,14,14,0 +12985,61,17,6,13,13,0 +12984,61,31,26,6,6,0 +12983,61,18,16,7,7,0 +12982,61,8,39,3,3,0 +12981,61,30,59,2,2,2 +12980,61,4,84,1,1,6 +13025,62,36,0,23,23,0 +13024,62,34,0,22,22,0 +13023,62,27,0,19,19,0 +13022,62,35,7,13,13,0 +13021,62,21,43,3,3,1 +13020,62,11,0,21,21,0 +13019,62,33,0,20,20,0 +13018,62,15,8,12,12,0 +13017,62,22,16,8,8,0 +13016,62,23,8,11,11,0 +13015,62,26,0,18,18,0 +13014,62,2,12,9,9,0 +13013,62,24,1,16,16,0 +13012,62,14,10,10,10,0 +13011,62,13,36,5,5,0 +13010,62,32,1,17,17,0 +13009,62,3,4,15,15,0 +13008,62,17,6,14,14,0 +13007,62,31,26,6,6,0 +13006,62,18,16,7,7,0 +13005,62,8,39,4,4,0 +13004,62,30,69,2,2,3 +13003,62,4,88,1,1,6 +13049,63,37,2,16,16,0 +13048,63,36,0,24,24,0 +13047,63,34,0,23,23,0 +13046,63,27,0,20,20,0 +13045,63,35,7,13,13,0 +13044,63,21,46,3,3,1 +13043,63,11,0,22,22,0 +13042,63,33,0,21,21,0 +13041,63,15,8,12,12,0 +13040,63,22,16,8,8,0 +13039,63,23,13,9,9,0 +13038,63,26,0,19,19,0 +13037,63,2,13,10,10,0 +13036,63,24,1,17,17,0 +13035,63,14,10,11,11,0 +13034,63,13,42,5,5,0 +13033,63,32,1,18,18,0 +13032,63,3,4,15,15,0 +13031,63,17,6,14,14,0 +13030,63,31,26,6,6,0 +13029,63,18,16,7,7,0 +13028,63,8,43,4,4,0 +13027,63,30,79,2,2,4 +13026,63,4,96,1,1,6 +13073,64,37,2,16,16,0 +13072,64,36,0,24,24,0 +13071,64,34,0,23,23,0 +13070,64,27,0,20,20,0 +13069,64,35,7,13,13,0 +13068,64,21,49,4,4,1 +13067,64,11,0,22,22,0 +13066,64,33,0,21,21,0 +13065,64,15,10,12,12,0 +13064,64,22,16,8,8,0 +13063,64,23,13,9,9,0 +13062,64,26,0,19,19,0 +13061,64,2,13,10,10,0 +13060,64,24,1,18,18,0 +13059,64,14,10,11,11,0 +13058,64,13,50,3,3,0 +13057,64,32,2,17,17,0 +13056,64,3,4,15,15,0 +13055,64,17,6,14,14,0 +13054,64,31,26,6,6,0 +13053,64,18,21,7,7,0 +13052,64,8,49,5,5,0 +13051,64,30,89,2,2,5 +13050,64,4,100,1,1,6 +13097,65,37,10,12,12,0 +13096,65,36,0,24,24,0 +13095,65,34,0,23,23,0 +13094,65,27,0,21,21,0 +13093,65,35,7,14,14,0 +13092,65,21,49,4,4,1 +13091,65,11,0,22,22,0 +13090,65,33,0,20,20,0 +13089,65,15,10,13,13,0 +13088,65,22,21,8,8,0 +13087,65,23,16,10,10,0 +13086,65,26,0,19,19,0 +13085,65,2,19,9,9,0 +13084,65,24,1,18,18,0 +13083,65,14,14,11,11,0 +13082,65,13,52,3,3,0 +13081,65,32,2,17,17,0 +13080,65,3,4,16,16,0 +13079,65,17,6,15,15,0 +13078,65,31,26,7,7,0 +13077,65,18,31,6,6,1 +13076,65,8,49,5,5,0 +13075,65,30,90,2,2,5 +13074,65,4,100,1,1,6 +13122,66,9,0,23,23,0 +13121,66,37,14,11,11,0 +13120,66,36,0,25,25,0 +13119,66,34,0,24,24,0 +13118,66,27,0,21,21,0 +13117,66,35,7,14,14,0 +13116,66,21,52,4,4,1 +13115,66,11,0,22,22,0 +13114,66,33,0,20,20,0 +13113,66,15,10,13,13,0 +13112,66,22,22,8,8,0 +13111,66,23,18,10,10,0 +13110,66,26,0,19,19,0 +13109,66,2,19,9,9,0 +13108,66,24,1,18,18,0 +13107,66,14,14,12,12,0 +13106,66,13,62,3,3,1 +13105,66,32,2,17,17,0 +13104,66,3,4,16,16,0 +13103,66,17,6,15,15,0 +13102,66,31,26,7,7,0 +13101,66,18,36,6,6,1 +13100,66,8,49,5,5,0 +13099,66,30,96,2,2,5 +13098,66,4,108,1,1,6 +13147,67,9,6,15,15,0 +13146,67,37,14,11,11,0 +13145,67,36,0,25,25,0 +13144,67,34,0,24,24,0 +13143,67,27,0,22,22,0 +13142,67,35,7,14,14,0 +13141,67,21,57,4,4,1 +13140,67,11,0,23,23,0 +13139,67,33,0,21,21,0 +13138,67,15,12,13,13,0 +13137,67,22,25,8,8,0 +13136,67,23,18,10,10,0 +13135,67,26,0,20,20,0 +13134,67,2,20,9,9,0 +13133,67,24,1,19,19,0 +13132,67,14,14,12,12,0 +13131,67,13,62,3,3,1 +13130,67,32,2,18,18,0 +13129,67,3,4,17,17,0 +13128,67,17,6,16,16,0 +13127,67,31,26,7,7,0 +13126,67,18,40,6,6,1 +13125,67,8,57,5,5,0 +13124,67,30,106,2,2,6 +13123,67,4,108,1,1,6 +13174,68,29,0,27,27,0 +13173,68,38,0,24,24,0 +13172,68,9,6,16,16,0 +13171,68,37,18,10,10,0 +13170,68,36,0,26,26,0 +13169,68,34,0,25,25,0 +13168,68,27,0,22,22,0 +13167,68,35,7,15,15,0 +13166,68,21,63,3,3,1 +13165,68,11,0,23,23,0 +13164,68,33,0,21,21,0 +13163,68,15,12,13,13,0 +13162,68,22,28,7,7,0 +13161,68,23,18,11,11,0 +13160,68,26,0,20,20,0 +13159,68,2,22,9,9,0 +13158,68,24,1,19,19,0 +13157,68,14,14,12,12,0 +13156,68,13,62,4,4,1 +13155,68,32,2,18,18,0 +13154,68,3,4,17,17,0 +13153,68,17,7,14,14,0 +13152,68,31,26,8,8,0 +13151,68,18,45,6,6,1 +13150,68,8,57,5,5,0 +13149,68,30,116,1,1,7 +13148,68,4,116,2,2,6 +13201,69,29,0,27,27,0 +13200,69,38,0,24,24,0 +13199,69,9,6,16,16,0 +13198,69,37,18,11,11,0 +13197,69,36,0,26,26,0 +13196,69,34,0,25,25,0 +13195,69,27,0,22,22,0 +13194,69,35,7,15,15,0 +13193,69,21,69,4,4,1 +13192,69,11,0,23,23,0 +13191,69,33,0,21,21,0 +13190,69,15,15,12,12,0 +13189,69,22,28,7,7,0 +13188,69,23,20,10,10,0 +13187,69,26,0,20,20,0 +13186,69,2,23,9,9,0 +13185,69,24,1,19,19,0 +13184,69,14,14,13,13,0 +13183,69,13,70,3,3,1 +13182,69,32,2,18,18,0 +13181,69,3,4,17,17,0 +13180,69,17,7,14,14,0 +13179,69,31,26,8,8,0 +13178,69,18,50,6,6,1 +13177,69,8,61,5,5,0 +13176,69,30,116,2,2,7 +13175,69,4,126,1,1,7 +13228,70,29,0,26,26,0 +13227,70,38,0,24,24,0 +13226,70,9,6,16,16,0 +13225,70,37,19,11,11,0 +13224,70,36,0,27,27,0 +13223,70,34,0,25,25,0 +13222,70,27,0,22,22,0 +13221,70,35,7,15,15,0 +13220,70,21,72,4,4,1 +13219,70,11,0,23,23,0 +13218,70,33,0,21,21,0 +13217,70,15,15,12,12,0 +13216,70,22,30,7,7,0 +13215,70,23,20,10,10,0 +13214,70,26,0,20,20,0 +13213,70,2,23,9,9,0 +13212,70,24,1,19,19,0 +13211,70,14,14,13,13,0 +13210,70,13,80,3,3,2 +13209,70,32,2,18,18,0 +13208,70,3,4,17,17,0 +13207,70,17,7,14,14,0 +13206,70,31,26,8,8,0 +13205,70,18,56,6,6,1 +13204,70,8,65,5,5,0 +13203,70,30,121,2,2,7 +13202,70,4,134,1,1,7 +1196,71,21,10,1,1,1 +1197,71,22,8,2,2,0 +1198,71,4,6,3,3,0 +1199,71,14,5,4,4,0 +1200,71,17,4,5,5,0 +1201,71,31,3,6,6,0 +1202,71,32,2,7,7,0 +1203,71,8,1,8,8,0 +1204,71,15,0,9,9,0 +1205,71,13,0,10,10,0 +1206,71,23,0,11,11,0 +1207,71,35,0,12,12,0 +1208,71,39,0,13,13,0 +1209,71,33,0,14,14,0 +1210,71,40,0,15,15,0 +1211,72,21,10,2,2,1 +1212,72,22,8,4,4,0 +1213,72,4,16,1,1,1 +1214,72,14,8,5,5,0 +1215,72,17,4,9,9,0 +1216,72,31,8,6,6,0 +1217,72,32,3,10,10,0 +1218,72,8,1,12,12,0 +1219,72,15,8,3,3,0 +1220,72,13,0,13,13,0 +1221,72,23,4,8,8,0 +1222,72,35,0,17,17,0 +1223,72,39,0,14,14,0 +1224,72,33,0,15,15,0 +1225,72,40,0,18,18,0 +1226,72,2,6,7,7,0 +1227,72,30,2,11,11,0 +1228,72,27,0,16,16,0 +3805,73,37,4,11,11,0 +3804,73,27,0,19,19,0 +3803,73,30,2,14,14,0 +3802,73,2,6,10,10,0 +3801,73,40,0,18,18,0 +3800,73,33,0,15,15,0 +3799,73,39,0,17,17,0 +3798,73,35,0,16,16,0 +3797,73,23,9,4,4,0 +3796,73,13,2,13,13,0 +3795,73,15,16,2,2,0 +3794,73,8,7,8,8,0 +3793,73,32,3,12,12,0 +3792,73,31,8,7,7,0 +3791,73,17,7,9,9,0 +3790,73,14,9,5,5,0 +3789,73,4,26,1,1,2 +3788,73,22,8,6,6,0 +3787,73,21,10,3,3,1 +3826,74,24,1,17,17,0 +3825,74,25,6,12,12,0 +3824,74,37,4,14,14,0 +3823,74,27,0,21,21,0 +3822,74,30,10,4,4,0 +3821,74,2,9,5,5,0 +3820,74,40,0,20,20,0 +3819,74,33,0,18,18,0 +3818,74,39,0,19,19,0 +3817,74,35,5,13,13,0 +3816,74,23,9,6,6,0 +3815,74,13,2,16,16,0 +3813,74,8,7,11,11,0 +3812,74,32,3,15,15,0 +3811,74,31,8,10,10,0 +3810,74,17,9,8,8,0 +3808,74,4,36,1,1,3 +3807,74,22,8,9,9,0 +64338,75,19,0,24,24,0 +64337,75,27,0,21,21,0 +64336,75,2,9,10,10,0 +64335,75,30,10,7,7,0 +64334,75,40,0,20,20,0 +64333,75,33,0,18,18,0 +64332,75,39,0,19,19,0 +64331,75,11,0,23,23,0 +64330,75,35,5,13,13,0 +64329,75,23,14,5,5,0 +64328,75,18,0,22,22,0 +64327,75,13,2,16,16,0 +64326,75,15,26,2,2,0 +64325,75,8,17,3,3,1 +64324,75,32,3,15,15,0 +64323,75,31,10,8,8,0 +64322,75,17,12,6,6,0 +64321,75,14,10,9,9,0 +64320,75,4,44,1,1,3 +64319,75,22,8,11,11,0 +64318,75,21,14,4,4,1 +1290,76,21,14,7,7,1 +1291,76,22,9,11,11,0 +1292,76,4,49,1,1,3 +1293,76,14,10,10,10,0 +1294,76,17,18,4,4,0 +1295,76,31,14,8,8,0 +1296,76,32,3,15,15,0 +1297,76,8,27,2,2,2 +1298,76,15,26,3,3,0 +1299,76,13,2,16,16,0 +1300,76,23,17,6,6,0 +1301,76,35,5,13,13,0 +1302,76,39,0,19,19,0 +1303,76,33,0,18,18,0 +1304,76,40,0,20,20,0 +1305,76,2,17,5,5,0 +1306,76,30,12,9,9,0 +1307,76,27,0,21,21,0 +1308,76,37,4,14,14,0 +1309,76,25,6,12,12,0 +1310,76,24,1,17,17,0 +1311,77,21,17,6,6,1 +1312,77,22,15,10,10,0 +1313,77,4,59,1,1,4 +1314,77,14,15,11,11,0 +1315,77,17,18,5,5,0 +1316,77,31,16,9,9,0 +1317,77,32,3,15,15,0 +1318,77,8,27,2,2,2 +1319,77,15,27,3,3,0 +1320,77,13,2,16,16,0 +1321,77,23,17,7,7,0 +1322,77,35,5,13,13,0 +1323,77,39,0,20,20,0 +1324,77,33,0,18,18,0 +1325,77,40,0,21,21,0 +1326,77,2,25,4,4,0 +1327,77,30,16,8,8,0 +1328,77,27,0,23,23,0 +1329,77,37,4,14,14,0 +1330,77,25,6,12,12,0 +1331,77,24,1,17,17,0 +1332,77,18,0,19,19,0 +1333,77,11,0,22,22,0 +3849,78,11,0,23,23,0 +3848,78,18,0,19,19,0 +3847,78,24,1,17,17,0 +3846,78,25,6,13,13,0 +3845,78,37,4,15,15,0 +3844,78,27,0,21,21,0 +3843,78,30,24,5,5,0 +3842,78,2,25,4,4,0 +3841,78,40,0,22,22,0 +3840,78,33,0,18,18,0 +3839,78,39,0,20,20,0 +3838,78,35,5,14,14,0 +3837,78,23,20,8,8,0 +3836,78,13,7,12,12,0 +3835,78,15,27,3,3,0 +3834,78,8,37,2,2,3 +3833,78,32,4,16,16,0 +3832,78,31,16,11,11,0 +3831,78,17,22,6,6,0 +3830,78,14,17,10,10,0 +3829,78,4,59,1,1,4 +3828,78,22,21,7,7,0 +3827,78,21,17,9,9,1 +3524,79,11,0,23,23,0 +3523,79,18,0,22,22,0 +3522,79,24,1,21,21,0 +3521,79,25,6,14,14,0 +3520,79,37,4,18,18,0 +3519,79,27,4,17,17,0 +3518,79,30,34,3,3,1 +3517,79,2,25,6,6,0 +3516,79,40,3,20,20,0 +3515,79,33,6,13,13,0 +3514,79,39,5,16,16,0 +3513,79,35,5,15,15,0 +3512,79,23,20,8,8,0 +3511,79,13,7,12,12,0 +3510,79,15,27,5,5,0 +3509,79,8,37,2,2,3 +3508,79,32,4,19,19,0 +3507,79,31,16,11,11,0 +3506,79,17,22,7,7,0 +3505,79,14,17,10,10,0 +3504,79,4,59,1,1,4 +3503,79,22,29,4,4,0 +3502,79,21,17,9,9,1 +1380,80,21,20,9,9,1 +1381,80,22,29,5,5,0 +1382,80,4,69,1,1,5 +1383,80,14,17,10,10,0 +1384,80,17,22,7,7,0 +1385,80,31,16,11,11,0 +1386,80,32,4,20,20,0 +1387,80,8,45,2,2,3 +1388,80,15,31,4,4,0 +1389,80,13,7,12,12,0 +1390,80,23,22,8,8,0 +1391,80,35,6,15,15,0 +1392,80,39,5,17,17,0 +1393,80,33,6,13,13,0 +1394,80,40,3,21,21,0 +1395,80,2,25,6,6,0 +1396,80,30,40,3,3,1 +1397,80,27,4,18,18,0 +1398,80,37,4,19,19,0 +1399,80,25,6,14,14,0 +1400,80,24,1,22,22,0 +1401,80,18,5,16,16,0 +1402,80,11,0,23,23,0 +1403,81,21,25,7,7,1 +1404,81,22,31,4,4,0 +1405,81,4,77,1,1,5 +1406,81,14,17,11,11,0 +1407,81,17,22,10,10,0 +1408,81,31,26,6,6,1 +1409,81,32,4,20,20,0 +1410,81,8,51,2,2,3 +1411,81,15,31,5,5,0 +1412,81,13,7,13,13,0 +1413,81,23,23,9,9,0 +1414,81,35,6,16,16,0 +1415,81,39,5,17,17,0 +1416,81,33,6,14,14,0 +1417,81,40,3,21,21,0 +1418,81,2,25,8,8,0 +1419,81,30,43,3,3,1 +1420,81,27,4,18,18,0 +1421,81,37,4,19,19,0 +1422,81,25,6,15,15,0 +1423,81,24,1,22,22,0 +1424,81,18,9,12,12,0 +1425,81,11,0,23,23,0 +1426,82,21,30,7,7,1 +1427,82,22,31,5,5,0 +1428,82,4,87,1,1,6 +1429,82,14,19,11,11,0 +1430,82,17,22,10,10,0 +1431,82,31,34,4,4,1 +1432,82,32,4,20,20,0 +1433,82,8,51,2,2,3 +1434,82,15,31,6,6,0 +1435,82,13,8,13,13,0 +1436,82,23,26,8,8,0 +1437,82,35,6,16,16,0 +1438,82,39,5,17,17,0 +1439,82,33,6,14,14,0 +1440,82,40,3,21,21,0 +1441,82,2,25,9,9,0 +1442,82,30,47,3,3,1 +1443,82,27,4,18,18,0 +1444,82,37,4,19,19,0 +1445,82,25,6,15,15,0 +1446,82,24,1,22,22,0 +1447,82,18,15,12,12,0 +1448,82,11,0,23,23,0 +1449,82,38,0,24,24,0 +1450,83,21,30,8,8,1 +1451,83,22,31,7,7,0 +1452,83,4,87,1,1,6 +1453,83,14,19,12,12,0 +1454,83,17,24,10,10,0 +1455,83,31,34,5,5,1 +1456,83,32,4,20,20,0 +1457,83,8,61,2,2,4 +1458,83,15,36,4,4,0 +1459,83,13,8,13,13,0 +1460,83,23,32,6,6,0 +1461,83,35,6,16,16,0 +1462,83,39,5,17,17,0 +1463,83,33,6,14,14,0 +1464,83,40,3,21,21,0 +1465,83,2,28,9,9,0 +1466,83,30,55,3,3,1 +1467,83,27,4,18,18,0 +1468,83,37,4,19,19,0 +1469,83,25,6,15,15,0 +1470,83,24,1,22,22,0 +1471,83,18,19,11,11,0 +1472,83,11,1,23,23,0 +1473,83,38,0,24,24,0 +1474,84,21,35,6,6,1 +1475,84,22,31,8,8,0 +1476,84,4,95,1,1,6 +1477,84,14,21,12,12,0 +1478,84,17,24,10,10,0 +1479,84,31,40,4,4,1 +1480,84,32,5,18,18,0 +1481,84,8,71,2,2,5 +1482,84,15,39,5,5,0 +1483,84,13,8,13,13,0 +1484,84,23,32,7,7,0 +1485,84,35,6,16,16,0 +1486,84,39,5,17,17,0 +1487,84,33,6,14,14,0 +1488,84,40,3,21,21,0 +1489,84,2,28,9,9,0 +1490,84,30,55,3,3,1 +1491,84,27,4,19,19,0 +1492,84,37,4,20,20,0 +1493,84,25,6,15,15,0 +1494,84,24,1,23,23,0 +1495,84,18,23,11,11,0 +1496,84,11,1,22,22,0 +1497,84,38,0,24,24,0 +1498,85,21,41,6,6,1 +1499,85,22,31,8,8,0 +1500,85,4,103,1,1,6 +1501,85,14,21,12,12,0 +1502,85,17,24,11,11,0 +1503,85,31,50,4,4,2 +1504,85,32,5,18,18,0 +1505,85,8,76,2,2,5 +1506,85,15,43,5,5,0 +1507,85,13,8,13,13,0 +1508,85,23,35,7,7,0 +1509,85,35,6,16,16,0 +1510,85,39,5,17,17,0 +1511,85,33,6,14,14,0 +1512,85,40,3,21,21,0 +1513,85,2,28,9,9,0 +1514,85,30,55,3,3,1 +1515,85,27,4,19,19,0 +1516,85,37,4,20,20,0 +1517,85,25,6,15,15,0 +1518,85,24,1,24,24,0 +1519,85,18,24,10,10,0 +1520,85,11,1,23,23,0 +1521,85,38,0,25,25,0 +1522,85,42,2,22,22,0 +1523,86,21,41,6,6,1 +1524,86,22,35,8,8,0 +1525,86,4,111,1,1,6 +1526,86,14,21,12,12,0 +1527,86,17,29,10,10,0 +1528,86,31,50,4,4,2 +1529,86,32,5,18,18,0 +1530,86,8,86,2,2,6 +1531,86,15,43,5,5,0 +1532,86,13,8,14,14,0 +1533,86,23,37,7,7,0 +1534,86,35,9,13,13,0 +1535,86,39,5,17,17,0 +1536,86,33,7,15,15,0 +1537,86,40,3,21,21,0 +1538,86,2,28,11,11,0 +1539,86,30,55,3,3,1 +1540,86,27,4,19,19,0 +1541,86,37,4,20,20,0 +1542,86,25,6,16,16,0 +1543,86,24,1,24,24,0 +1544,86,18,30,9,9,0 +1545,86,11,1,23,23,0 +1546,86,38,0,25,25,0 +1547,86,42,2,22,22,0 +1548,87,21,45,5,5,1 +1549,87,22,38,7,7,0 +1550,87,4,117,1,1,6 +1551,87,14,21,12,12,0 +1552,87,17,29,10,10,0 +1553,87,31,60,3,3,3 +1554,87,32,5,18,18,0 +1555,87,8,94,2,2,6 +1556,87,15,43,6,6,0 +1557,87,13,8,14,14,0 +1558,87,23,38,8,8,0 +1559,87,35,9,13,13,0 +1560,87,39,5,17,17,0 +1561,87,33,7,15,15,0 +1562,87,40,3,21,21,0 +1563,87,2,28,11,11,0 +1564,87,30,60,4,4,1 +1565,87,27,4,19,19,0 +1566,87,37,4,20,20,0 +1567,87,25,6,16,16,0 +1568,87,24,1,24,24,0 +1569,87,18,32,9,9,0 +1570,87,11,1,23,23,0 +1571,87,38,0,25,25,0 +1572,87,42,2,22,22,0 +1573,88,21,53,5,5,1 +1574,88,22,38,8,8,0 +1575,88,4,123,1,1,6 +1576,88,14,24,12,12,0 +1577,88,17,34,10,10,0 +1578,88,31,60,4,4,3 +1579,88,32,5,18,18,0 +1580,88,8,104,2,2,7 +1581,88,15,43,6,6,0 +1582,88,13,8,14,14,0 +1583,88,23,39,7,7,0 +1584,88,35,9,13,13,0 +1585,88,39,5,17,17,0 +1586,88,33,7,15,15,0 +1587,88,40,3,21,21,0 +1588,88,2,28,11,11,0 +1589,88,30,62,3,3,1 +1590,88,27,4,19,19,0 +1591,88,37,4,20,20,0 +1592,88,25,6,16,16,0 +1593,88,24,1,24,24,0 +1594,88,18,36,9,9,0 +1595,88,11,1,23,23,0 +1596,88,38,0,25,25,0 +1597,88,42,2,22,22,0 +1598,89,21,58,5,5,1 +1599,89,22,38,8,8,0 +1600,89,4,133,1,1,7 +1601,89,14,24,12,12,0 +1602,89,17,36,10,10,0 +1603,89,31,60,4,4,3 +1604,89,32,9,15,15,0 +1605,89,8,112,2,2,7 +1606,89,15,43,7,7,0 +1607,89,13,11,13,13,0 +1608,89,23,45,6,6,0 +1609,89,35,9,14,14,0 +1610,89,39,5,18,18,0 +1611,89,33,7,16,16,0 +1612,89,40,3,21,21,0 +1613,89,2,28,11,11,0 +1614,89,30,62,3,3,1 +1615,89,27,4,19,19,0 +1616,89,37,4,20,20,0 +1617,89,25,6,17,17,0 +1618,89,24,1,24,24,0 +1619,89,18,37,9,9,0 +1620,89,11,1,23,23,0 +1621,89,38,0,25,25,0 +1622,89,42,2,22,22,0 +12435,90,45,0,14,14,0 +12434,90,44,0,13,13,0 +12433,90,43,0,12,12,0 +12432,90,32,0,11,11,0 +12431,90,21,0,10,10,0 +12430,90,11,0,9,9,0 +12429,90,14,1,8,8,0 +12428,90,15,2,7,7,0 +12427,90,18,3,6,6,0 +12426,90,31,4,5,5,0 +12425,90,23,5,4,4,0 +12424,90,4,6,3,3,0 +12423,90,22,8,2,2,0 +12422,90,30,10,1,1,1 +12452,91,47,0,17,17,0 +12451,91,46,0,16,16,0 +12450,91,13,1,9,9,0 +12449,91,45,0,15,15,0 +12448,91,44,0,14,14,0 +12447,91,43,0,10,10,0 +12446,91,32,0,13,13,0 +12445,91,21,0,12,12,0 +12444,91,11,0,11,11,0 +12443,91,14,4,8,8,0 +12442,91,15,6,6,6,0 +12441,91,18,9,4,4,0 +12440,91,31,12,3,3,0 +12439,91,23,5,7,7,0 +12438,91,4,8,5,5,0 +12437,91,22,13,2,2,0 +12436,91,30,20,1,1,2 +12471,92,2,0,18,18,0 +12470,92,17,1,11,11,0 +12469,92,47,0,19,19,0 +12468,92,46,0,17,17,0 +12467,92,13,1,10,10,0 +12466,92,45,0,16,16,0 +12465,92,44,0,13,13,0 +12464,92,43,0,12,12,0 +12463,92,32,0,15,15,0 +12462,92,21,0,14,14,0 +12461,92,11,4,8,8,0 +12460,92,14,4,9,9,0 +12459,92,15,11,6,6,0 +12458,92,18,15,3,3,0 +12457,92,31,12,4,4,0 +12456,92,23,7,7,7,0 +12455,92,4,11,5,5,0 +12454,92,22,21,2,2,0 +12453,92,30,30,1,1,3 +12491,93,8,1,12,12,0 +12490,93,2,0,20,20,0 +12489,93,17,1,11,11,0 +12488,93,47,0,19,19,0 +12487,93,46,0,18,18,0 +12486,93,13,1,10,10,0 +12485,93,45,0,17,17,0 +12484,93,44,0,15,15,0 +12483,93,43,0,14,14,0 +12482,93,32,0,16,16,0 +12481,93,21,0,13,13,0 +12480,93,11,4,8,8,0 +12479,93,14,4,9,9,0 +12478,93,15,15,6,6,0 +12477,93,18,23,3,3,0 +12476,93,31,18,4,4,0 +12475,93,23,9,7,7,0 +12474,93,4,16,5,5,0 +12473,93,22,24,2,2,0 +12472,93,30,40,1,1,4 +12511,94,8,1,12,12,0 +12510,94,2,0,20,20,0 +12509,94,17,1,13,13,0 +12508,94,47,0,19,19,0 +12507,94,46,0,18,18,0 +12506,94,13,1,11,11,0 +12505,94,45,0,17,17,0 +12504,94,44,0,15,15,0 +12503,94,43,0,14,14,0 +12502,94,32,0,16,16,0 +12501,94,21,2,10,10,0 +12500,94,11,8,8,8,0 +12499,94,14,4,9,9,0 +12498,94,15,21,5,5,0 +12497,94,18,24,3,3,0 +12496,94,31,18,6,6,0 +12495,94,23,12,7,7,0 +12494,94,4,21,4,4,0 +12493,94,22,32,2,2,0 +12492,94,30,50,1,1,5 +12531,95,8,1,15,15,0 +12530,95,2,2,13,13,0 +12529,95,17,1,16,16,0 +12528,95,47,0,17,17,0 +12527,95,46,0,20,20,0 +12526,95,13,5,9,9,0 +12525,95,45,0,19,19,0 +12524,95,44,1,14,14,0 +12523,95,43,3,11,11,0 +12522,95,32,0,18,18,0 +12521,95,21,2,12,12,0 +12520,95,11,8,8,8,0 +12519,95,14,4,10,10,0 +12518,95,15,31,4,4,1 +12517,95,18,32,3,3,0 +12516,95,31,23,5,5,0 +12515,95,23,12,7,7,0 +12514,95,4,21,6,6,0 +12513,95,22,38,2,2,0 +12512,95,30,50,1,1,5 +12551,96,8,1,16,16,0 +12550,96,2,2,14,14,0 +12549,96,17,3,13,13,0 +12548,96,47,0,17,17,0 +12547,96,46,0,20,20,0 +12546,96,13,5,9,9,0 +12545,96,45,0,19,19,0 +12544,96,44,1,15,15,0 +12543,96,43,3,12,12,0 +12542,96,32,0,18,18,0 +12541,96,21,5,10,10,0 +12540,96,11,8,8,8,0 +12539,96,14,4,11,11,0 +12538,96,15,36,4,4,1 +12537,96,18,38,3,3,0 +12536,96,31,24,6,6,0 +12535,96,23,12,7,7,0 +12534,96,4,25,5,5,0 +12533,96,22,46,2,2,0 +12532,96,30,60,1,1,6 +12572,97,10,2,16,16,0 +12571,97,8,5,12,12,0 +12570,97,2,3,14,14,0 +12569,97,17,3,15,15,0 +12568,97,47,0,19,19,0 +12567,97,46,0,21,21,0 +12566,97,13,5,11,11,0 +12565,97,45,0,20,20,0 +12564,97,44,1,17,17,0 +12563,97,43,3,13,13,0 +12562,97,32,0,18,18,0 +12561,97,21,10,8,8,0 +12560,97,11,8,9,9,0 +12559,97,14,7,10,10,0 +12558,97,15,36,4,4,1 +12557,97,18,44,3,3,0 +12556,97,31,24,6,6,0 +12555,97,23,12,7,7,0 +12554,97,4,25,5,5,0 +12553,97,22,54,2,2,0 +12552,97,30,70,1,1,7 +12593,98,10,2,17,17,0 +12592,98,8,8,11,11,0 +12591,98,2,3,15,15,0 +12590,98,17,3,16,16,0 +12589,98,47,1,18,18,0 +12588,98,46,0,21,21,0 +12587,98,13,5,12,12,0 +12586,98,45,0,20,20,0 +12585,98,44,5,13,13,0 +12584,98,43,3,14,14,0 +12583,98,32,0,19,19,0 +12582,98,21,10,9,9,0 +12581,98,11,14,7,7,0 +12580,98,14,9,10,10,0 +12579,98,15,41,4,4,1 +12578,98,18,44,3,3,0 +12577,98,31,24,6,6,0 +12576,98,23,12,8,8,0 +12575,98,4,25,5,5,0 +12574,98,22,62,2,2,0 +12573,98,30,80,1,1,8 +12615,99,48,0,20,20,0 +12614,99,10,2,17,17,0 +12613,99,8,10,11,11,0 +12612,99,2,3,16,16,0 +12611,99,17,3,15,15,0 +12610,99,47,1,18,18,0 +12609,99,46,0,22,22,0 +12608,99,13,5,12,12,0 +12607,99,45,0,21,21,0 +12606,99,44,5,13,13,0 +12605,99,43,3,14,14,0 +12604,99,32,0,19,19,0 +12603,99,21,10,10,10,0 +12602,99,11,14,7,7,0 +12601,99,14,12,9,9,0 +12600,99,15,46,4,4,1 +12599,99,18,48,3,3,0 +12598,99,31,25,6,6,0 +12597,99,23,12,8,8,0 +12596,99,4,33,5,5,0 +12595,99,22,68,2,2,0 +12594,99,30,90,1,1,9 +12637,100,48,0,20,20,0 +12636,100,10,2,17,17,0 +12635,100,8,18,7,7,0 +12634,100,2,3,16,16,0 +12633,100,17,4,14,14,0 +12632,100,47,1,18,18,0 +12631,100,46,0,22,22,0 +12630,100,13,5,12,12,0 +12629,100,45,0,21,21,0 +12628,100,44,5,13,13,0 +12627,100,43,3,15,15,0 +12626,100,32,0,19,19,0 +12625,100,21,13,10,10,0 +12624,100,11,14,8,8,0 +12623,100,14,14,9,9,0 +12622,100,15,46,4,4,1 +12621,100,18,53,3,3,0 +12620,100,31,29,6,6,0 +12619,100,23,12,11,11,0 +12618,100,4,33,5,5,0 +12617,100,22,74,2,2,0 +12616,100,30,100,1,1,10 +12660,101,42,2,18,18,0 +12659,101,48,0,21,21,0 +12658,101,10,2,17,17,0 +12657,101,8,18,8,8,0 +12656,101,2,3,16,16,0 +12655,101,17,7,12,12,0 +12654,101,47,1,19,19,0 +12653,101,46,0,23,23,0 +12652,101,13,5,13,13,0 +12651,101,45,0,22,22,0 +12650,101,44,5,14,14,0 +12649,101,43,3,15,15,0 +12648,101,32,0,20,20,0 +12647,101,21,13,10,10,0 +12646,101,11,15,9,9,0 +12645,101,14,19,7,7,0 +12644,101,15,46,4,4,1 +12643,101,18,61,3,3,0 +12642,101,31,33,6,6,0 +12641,101,23,12,11,11,0 +12640,101,4,39,5,5,0 +12639,101,22,74,2,2,0 +12638,101,30,110,1,1,11 +12683,102,42,4,15,15,0 +12682,102,48,0,21,21,0 +12681,102,10,2,18,18,0 +12680,102,8,18,8,8,0 +12679,102,2,3,17,17,0 +12678,102,17,7,12,12,0 +12677,102,47,1,19,19,0 +12676,102,46,0,23,23,0 +12675,102,13,5,13,13,0 +12674,102,45,0,22,22,0 +12673,102,44,5,14,14,0 +12672,102,43,3,16,16,0 +12671,102,32,0,20,20,0 +12670,102,21,14,10,10,0 +12669,102,11,18,9,9,0 +12668,102,14,19,7,7,0 +12667,102,15,46,4,4,1 +12666,102,18,65,3,3,0 +12665,102,31,38,6,6,0 +12664,102,23,12,11,11,0 +12663,102,4,45,5,5,0 +12662,102,22,82,2,2,0 +12661,102,30,120,1,1,12 +12707,103,41,0,22,22,0 +12706,103,42,4,15,15,0 +12705,103,48,0,21,21,0 +12704,103,10,2,19,19,0 +12703,103,8,28,7,7,1 +12702,103,2,3,18,18,0 +12701,103,17,7,13,13,0 +12700,103,47,1,20,20,0 +12699,103,46,0,24,24,0 +12698,103,13,10,12,12,0 +12697,103,45,0,23,23,0 +12696,103,44,6,14,14,0 +12695,103,43,3,17,17,0 +12694,103,32,3,16,16,0 +12693,103,21,18,10,10,0 +12692,103,11,18,9,9,0 +12691,103,14,21,8,8,0 +12690,103,15,46,4,4,1 +12689,103,18,65,3,3,0 +12688,103,31,38,6,6,0 +12687,103,23,12,11,11,0 +12686,103,4,45,5,5,0 +12685,103,22,88,2,2,0 +12684,103,30,128,1,1,12 +12731,104,41,0,21,21,0 +12730,104,42,6,15,15,0 +12729,104,48,0,22,22,0 +12728,104,10,2,19,19,0 +12727,104,8,28,7,7,1 +12726,104,2,3,18,18,0 +12725,104,17,7,13,13,0 +12724,104,47,1,20,20,0 +12723,104,46,0,24,24,0 +12722,104,13,10,12,12,0 +12721,104,45,0,23,23,0 +12720,104,44,6,14,14,0 +12719,104,43,3,17,17,0 +12718,104,32,3,16,16,0 +12717,104,21,19,10,10,0 +12716,104,11,23,9,9,0 +12715,104,14,24,8,8,0 +12714,104,15,46,4,4,1 +12713,104,18,71,3,3,0 +12712,104,31,42,6,6,0 +12711,104,23,12,11,11,0 +12710,104,4,45,5,5,0 +12709,104,22,98,2,2,1 +12708,104,30,136,1,1,12 +12756,105,35,0,23,23,0 +12755,105,41,0,21,21,0 +12754,105,42,6,15,15,0 +12753,105,48,0,22,22,0 +12752,105,10,2,19,19,0 +12751,105,8,34,7,7,1 +12750,105,2,3,18,18,0 +12749,105,17,7,13,13,0 +12748,105,47,1,20,20,0 +12747,105,46,0,25,25,0 +12746,105,13,11,12,12,0 +12745,105,45,0,24,24,0 +12744,105,44,6,14,14,0 +12743,105,43,3,17,17,0 +12742,105,32,3,16,16,0 +12741,105,21,21,10,10,0 +12740,105,11,26,8,8,0 +12739,105,14,24,9,9,0 +12738,105,15,46,5,5,1 +12737,105,18,79,3,3,0 +12736,105,31,46,6,6,0 +12735,105,23,12,11,11,0 +12734,105,4,50,4,4,0 +12733,105,22,108,2,2,2 +12732,105,30,136,1,1,12 +12781,106,35,0,21,21,0 +12780,106,41,0,22,22,0 +12779,106,42,6,15,15,0 +12778,106,48,0,23,23,0 +12777,106,10,2,19,19,0 +12776,106,8,37,7,7,1 +12775,106,2,3,18,18,0 +12774,106,17,7,13,13,0 +12773,106,47,1,20,20,0 +12772,106,46,0,25,25,0 +12771,106,13,11,12,12,0 +12770,106,45,0,24,24,0 +12769,106,44,6,14,14,0 +12768,106,43,3,17,17,0 +12767,106,32,3,16,16,0 +12766,106,21,22,10,10,0 +12765,106,11,31,8,8,0 +12764,106,14,24,9,9,0 +12763,106,15,46,6,6,1 +12762,106,18,85,3,3,0 +12761,106,31,48,5,5,0 +12760,106,23,20,11,11,0 +12759,106,4,54,4,4,0 +12758,106,22,108,2,2,2 +12757,106,30,146,1,1,13 +12806,107,35,0,21,21,0 +12805,107,41,0,22,22,0 +12804,107,42,6,15,15,0 +12803,107,48,0,23,23,0 +12802,107,10,2,19,19,0 +12801,107,8,45,7,7,1 +12800,107,2,3,18,18,0 +12799,107,17,7,13,13,0 +12798,107,47,1,20,20,0 +12797,107,46,0,25,25,0 +12796,107,13,12,12,12,0 +12795,107,45,0,24,24,0 +12794,107,44,6,14,14,0 +12793,107,43,3,17,17,0 +12792,107,32,3,16,16,0 +12791,107,21,22,11,11,0 +12790,107,11,34,8,8,0 +12789,107,14,24,10,10,0 +12788,107,15,46,6,6,1 +12787,107,18,85,3,3,0 +12786,107,31,58,5,5,1 +12785,107,23,24,9,9,0 +12784,107,4,59,4,4,0 +12783,107,22,114,2,2,2 +12782,107,30,148,1,1,13 +12118,108,50,0,11,11,0 +12117,108,18,0,10,10,0 +12116,108,35,0,9,9,0 +12115,108,23,1,8,8,0 +12114,108,4,2,7,7,0 +12113,108,49,3,6,6,0 +12112,108,15,4,5,5,0 +12111,108,30,5,4,4,0 +12110,108,8,6,3,3,0 +12109,108,31,8,2,2,0 +12108,108,14,10,1,1,1 +12133,109,43,0,15,15,0 +12132,109,52,0,13,13,0 +12131,109,2,1,11,11,0 +12130,109,22,8,4,4,0 +12129,109,50,0,14,14,0 +12128,109,18,2,10,10,0 +12127,109,35,0,12,12,0 +12126,109,23,6,8,8,0 +12125,109,4,8,5,5,0 +12124,109,49,3,9,9,0 +12123,109,15,8,7,7,0 +12122,109,30,8,6,6,0 +12121,109,8,16,1,1,1 +12120,109,31,8,3,3,0 +12119,109,14,10,2,2,1 +12150,110,17,0,14,14,0 +12149,110,21,10,4,4,1 +12148,110,43,0,15,15,0 +12147,110,52,0,16,16,0 +12146,110,2,1,13,13,0 +12145,110,22,8,7,7,0 +12144,110,50,0,17,17,0 +12143,110,18,2,12,12,0 +12142,110,35,3,11,11,0 +12141,110,23,8,9,9,0 +12140,110,4,14,3,3,0 +12139,110,49,7,10,10,0 +12138,110,15,9,5,5,0 +12137,110,30,8,8,8,0 +12136,110,8,24,1,1,1 +12135,110,31,8,6,6,0 +12134,110,14,15,2,2,1 +12169,111,42,0,19,19,0 +12168,111,44,0,14,14,0 +12167,111,17,0,15,15,0 +12166,111,21,10,7,7,1 +12165,111,43,0,16,16,0 +12164,111,52,0,17,17,0 +12163,111,2,1,13,13,0 +12162,111,22,14,5,5,0 +12161,111,50,0,18,18,0 +12160,111,18,3,12,12,0 +12159,111,35,3,11,11,0 +12158,111,23,13,6,6,0 +12157,111,4,17,4,4,0 +12156,111,49,7,10,10,0 +12155,111,15,9,9,9,0 +12154,111,30,18,3,3,1 +12153,111,8,32,1,1,1 +12152,111,31,10,8,8,0 +12151,111,14,19,2,2,1 +12189,112,51,0,19,19,0 +12188,112,42,0,20,20,0 +12187,112,44,0,17,17,0 +12186,112,17,2,14,14,0 +12185,112,21,10,8,8,1 +12184,112,43,3,12,12,0 +12183,112,52,1,16,16,0 +12182,112,2,1,15,15,0 +12181,112,22,20,4,4,0 +12180,112,50,0,18,18,0 +12179,112,18,3,13,13,0 +12178,112,35,3,11,11,0 +12177,112,23,17,6,6,0 +12176,112,4,25,3,3,0 +12175,112,49,7,10,10,0 +12174,112,15,9,9,9,0 +12173,112,30,28,2,2,2 +12172,112,8,32,1,1,1 +12171,112,31,15,7,7,0 +12170,112,14,19,5,5,1 +12209,113,51,0,20,20,0 +12208,113,42,0,17,17,0 +12207,113,44,0,18,18,0 +12206,113,17,4,12,12,0 +12205,113,21,10,8,8,1 +12204,113,43,3,14,14,0 +12203,113,52,1,16,16,0 +12202,113,2,1,15,15,0 +12201,113,22,26,3,3,0 +12200,113,50,0,19,19,0 +12199,113,18,8,10,10,0 +12198,113,35,3,13,13,0 +12197,113,23,20,6,6,0 +12196,113,4,25,4,4,0 +12195,113,49,7,11,11,0 +12194,113,15,10,9,9,0 +12193,113,30,38,2,2,3 +12192,113,8,40,1,1,1 +12191,113,31,15,7,7,0 +12190,113,14,23,5,5,1 +12229,114,51,0,20,20,0 +12228,114,42,0,18,18,0 +12227,114,44,0,17,17,0 +12226,114,17,4,12,12,0 +12225,114,21,10,9,9,1 +12224,114,43,3,13,13,0 +12223,114,52,1,16,16,0 +12222,114,2,1,15,15,0 +12221,114,22,27,4,4,0 +12220,114,50,0,19,19,0 +12219,114,18,8,10,10,0 +12218,114,35,3,14,14,0 +12217,114,23,25,7,7,0 +12216,114,4,29,3,3,0 +12215,114,49,7,11,11,0 +12214,114,15,13,8,8,0 +12213,114,30,44,2,2,3 +12212,114,8,48,1,1,1 +12211,114,31,25,5,5,1 +12210,114,14,25,6,6,1 +12249,115,51,0,20,20,0 +12248,115,42,0,18,18,0 +12247,115,44,1,15,15,0 +12246,115,17,6,12,12,0 +12245,115,21,10,9,9,1 +12244,115,43,3,13,13,0 +12243,115,52,1,17,17,0 +12242,115,2,1,16,16,0 +12241,115,22,31,6,6,0 +12240,115,50,0,19,19,0 +12239,115,18,8,10,10,0 +12238,115,35,3,14,14,0 +12237,115,23,33,4,4,0 +12236,115,4,34,3,3,0 +12235,115,49,7,11,11,0 +12234,115,15,13,8,8,0 +12233,115,30,54,1,1,4 +12232,115,8,51,2,2,1 +12231,115,31,31,5,5,1 +12230,115,14,25,7,7,1 +12269,116,51,0,20,20,0 +12268,116,42,0,18,18,0 +12267,116,44,1,16,16,0 +12266,116,17,9,11,11,0 +12265,116,21,10,9,9,1 +12264,116,43,3,13,13,0 +12263,116,52,1,17,17,0 +12262,116,2,2,15,15,0 +12261,116,22,37,6,6,0 +12260,116,50,0,19,19,0 +12259,116,18,10,10,10,0 +12258,116,35,3,14,14,0 +12257,116,23,43,3,3,1 +12256,116,4,39,5,5,0 +12255,116,49,7,12,12,0 +12254,116,15,13,8,8,0 +12253,116,30,58,1,1,4 +12252,116,8,51,2,2,1 +12251,116,31,39,4,4,1 +12250,116,14,25,7,7,1 +12289,117,51,0,20,20,0 +12288,117,42,0,18,18,0 +12287,117,44,2,15,15,0 +12286,117,17,12,9,9,0 +12285,117,21,10,10,10,1 +12284,117,43,3,14,14,0 +12283,117,52,1,17,17,0 +12282,117,2,2,16,16,0 +12281,117,22,39,5,5,0 +12280,117,50,0,19,19,0 +12279,117,18,10,11,11,0 +12278,117,35,3,13,13,0 +12277,117,23,53,3,3,2 +12276,117,4,39,6,6,0 +12275,117,49,7,12,12,0 +12274,117,15,13,8,8,0 +12273,117,30,64,1,1,4 +12272,117,8,56,2,2,1 +12271,117,31,47,4,4,1 +12270,117,14,29,7,7,1 +12309,118,51,0,20,20,0 +12308,118,42,0,18,18,0 +12307,118,44,2,15,15,0 +12306,118,17,12,9,9,0 +12305,118,21,10,11,11,1 +12304,118,43,5,13,13,0 +12303,118,52,1,17,17,0 +12302,118,2,2,16,16,0 +12301,118,22,49,5,5,1 +12300,118,50,0,19,19,0 +12299,118,18,11,10,10,0 +12298,118,35,3,14,14,0 +12297,118,23,53,4,4,2 +12296,118,4,39,6,6,0 +12295,118,49,7,12,12,0 +12294,118,15,16,8,8,0 +12293,118,30,69,1,1,4 +12292,118,8,62,2,2,1 +12291,118,31,55,3,3,1 +12290,118,14,33,7,7,1 +12330,119,53,0,21,21,0 +12329,119,51,0,20,20,0 +12328,119,42,0,18,18,0 +12327,119,44,6,14,14,0 +12326,119,17,12,10,10,0 +12325,119,21,10,11,11,1 +12324,119,43,8,12,12,0 +12323,119,52,1,17,17,0 +12322,119,2,2,16,16,0 +12321,119,22,49,5,5,1 +12320,119,50,0,19,19,0 +12319,119,18,12,9,9,0 +12318,119,35,3,15,15,0 +12317,119,23,53,4,4,2 +12316,119,4,44,6,6,0 +12315,119,49,7,13,13,0 +12314,119,15,22,8,8,0 +12313,119,30,71,1,1,4 +12312,119,8,62,3,3,1 +12311,119,31,65,2,2,2 +12310,119,14,41,7,7,1 +12351,120,53,0,21,21,0 +12350,120,51,0,20,20,0 +12349,120,42,0,18,18,0 +12348,120,44,6,14,14,0 +12347,120,17,15,9,9,0 +12346,120,21,10,11,11,1 +12345,120,43,8,12,12,0 +12344,120,52,1,17,17,0 +12343,120,2,2,16,16,0 +12342,120,22,49,6,6,1 +12341,120,50,0,19,19,0 +12340,120,18,12,10,10,0 +12339,120,35,3,15,15,0 +12338,120,23,58,4,4,2 +12337,120,4,54,5,5,1 +12336,120,49,7,13,13,0 +12335,120,15,24,8,8,0 +12334,120,30,72,1,1,4 +12333,120,8,70,3,3,1 +12332,120,31,71,2,2,2 +12331,120,14,45,7,7,1 +12374,121,47,0,22,22,0 +12373,121,48,4,16,16,0 +12372,121,53,0,23,23,0 +12371,121,51,0,21,21,0 +12370,121,42,0,19,19,0 +12369,121,44,6,14,14,0 +12368,121,17,17,9,9,0 +12367,121,21,10,11,11,1 +12366,121,43,8,12,12,0 +12365,121,52,1,18,18,0 +12364,121,2,2,17,17,0 +12363,121,22,55,5,5,1 +12362,121,50,0,20,20,0 +12361,121,18,12,10,10,0 +12360,121,35,6,15,15,0 +12359,121,23,58,4,4,2 +12358,121,4,55,6,6,1 +12357,121,49,7,13,13,0 +12356,121,15,24,8,8,0 +12355,121,30,82,1,1,5 +12354,121,8,75,3,3,1 +12353,121,31,79,2,2,2 +12352,121,14,45,7,7,1 +12397,122,47,0,23,23,0 +12396,122,48,4,17,17,0 +12395,122,53,0,22,22,0 +12394,122,51,1,19,19,0 +12393,122,42,0,20,20,0 +12392,122,44,6,15,15,0 +12391,122,17,17,9,9,0 +12390,122,21,12,11,11,1 +12389,122,43,8,13,13,0 +12388,122,52,1,18,18,0 +12387,122,2,6,14,14,0 +12386,122,22,55,5,5,1 +12385,122,50,0,21,21,0 +12384,122,18,12,12,12,0 +12383,122,35,6,16,16,0 +12382,122,23,58,4,4,2 +12381,122,4,55,6,6,1 +12380,122,49,13,10,10,0 +12379,122,15,29,8,8,0 +12378,122,30,92,1,1,6 +12377,122,8,83,2,2,1 +12376,122,31,82,3,3,2 +12375,122,14,45,7,7,1 +12421,123,11,3,18,18,0 +12420,123,47,0,24,24,0 +12419,123,48,4,17,17,0 +12418,123,53,0,23,23,0 +12417,123,51,1,20,20,0 +12416,123,42,0,21,21,0 +12415,123,44,6,15,15,0 +12414,123,17,17,10,10,0 +12413,123,21,12,12,12,1 +12412,123,43,10,13,13,0 +12411,123,52,1,19,19,0 +12410,123,2,6,14,14,0 +12409,123,22,65,4,4,2 +12408,123,50,0,22,22,0 +12407,123,18,17,9,9,0 +12406,123,35,6,16,16,0 +12405,123,23,58,5,5,2 +12404,123,4,55,6,6,1 +12403,123,49,13,11,11,0 +12402,123,15,33,8,8,0 +12401,123,30,93,1,1,6 +12400,123,8,91,2,2,1 +12399,123,31,82,3,3,2 +12398,123,14,51,7,7,1 +11771,124,37,0,8,8,0 +11770,124,62,0,7,7,0 +11769,124,63,1,6,6,0 +11768,124,17,2,5,5,0 +11767,124,56,3,4,4,0 +11766,124,8,4,3,3,0 +11765,124,31,6,2,2,0 +11764,124,30,10,1,1,1 +11788,125,21,0,17,17,0 +11787,125,49,0,16,16,0 +11786,125,11,0,15,15,0 +11785,125,35,0,14,14,0 +11784,125,66,0,11,11,0 +11783,125,13,1,10,10,0 +11782,125,2,2,7,7,0 +11781,125,18,3,5,5,0 +11780,125,23,10,3,3,1 +11779,125,37,0,13,13,0 +11778,125,62,0,12,12,0 +11777,125,63,1,9,9,0 +11776,125,17,2,8,8,0 +11775,125,56,3,6,6,0 +11774,125,8,4,4,4,0 +11773,125,31,12,2,2,0 +11772,125,30,14,1,1,1 +11806,126,14,4,6,6,0 +11805,126,21,0,18,18,0 +11804,126,49,0,17,17,0 +11803,126,11,0,16,16,0 +11802,126,35,0,15,15,0 +11801,126,66,0,13,13,0 +11800,126,13,1,11,11,0 +11799,126,2,2,9,9,0 +11798,126,18,6,4,4,0 +11797,126,23,16,2,2,1 +11796,126,37,0,14,14,0 +11795,126,62,0,12,12,0 +11794,126,63,2,10,10,0 +11793,126,17,2,8,8,0 +11792,126,56,3,7,7,0 +11791,126,8,4,5,5,0 +11790,126,31,14,3,3,0 +11789,126,30,24,1,1,2 +11826,127,15,0,18,18,0 +11825,127,22,6,5,5,0 +11824,127,14,5,6,6,0 +11823,127,21,0,20,20,0 +11822,127,49,0,19,19,0 +11821,127,11,0,17,17,0 +11820,127,35,0,13,13,0 +11819,127,66,0,15,15,0 +11818,127,13,1,12,12,0 +11817,127,2,2,9,9,0 +11816,127,18,8,4,4,0 +11815,127,23,20,2,2,1 +11814,127,37,0,16,16,0 +11813,127,62,0,14,14,0 +11812,127,63,2,11,11,0 +11811,127,17,2,10,10,0 +11810,127,56,3,8,8,0 +11809,127,8,4,7,7,0 +11808,127,31,17,3,3,0 +11807,127,30,34,1,1,3 +11846,128,15,0,19,19,0 +11845,128,22,6,6,6,0 +11844,128,14,9,4,4,0 +11843,128,21,0,20,20,0 +11842,128,49,1,13,13,0 +11841,128,11,0,18,18,0 +11840,128,35,0,14,14,0 +11839,128,66,0,15,15,0 +11838,128,13,3,10,10,0 +11837,128,2,5,7,7,0 +11836,128,18,8,5,5,0 +11835,128,23,20,3,3,1 +11834,128,37,0,17,17,0 +11833,128,62,0,16,16,0 +11832,128,63,2,12,12,0 +11831,128,17,2,11,11,0 +11830,128,56,3,9,9,0 +11829,128,8,4,8,8,0 +11828,128,31,23,2,2,0 +11827,128,30,44,1,1,4 +11866,129,15,0,20,20,0 +11865,129,22,12,4,4,0 +11864,129,14,10,5,5,0 +11863,129,21,2,12,12,0 +11862,129,49,1,14,14,0 +11861,129,11,0,19,19,0 +11860,129,35,0,15,15,0 +11859,129,66,0,16,16,0 +11858,129,13,3,10,10,0 +11857,129,2,5,7,7,0 +11856,129,18,8,6,6,0 +11855,129,23,23,3,3,1 +11854,129,37,0,18,18,0 +11853,129,62,0,17,17,0 +11852,129,63,2,13,13,0 +11851,129,17,2,11,11,0 +11850,129,56,3,9,9,0 +11849,129,8,4,8,8,0 +11848,129,31,27,2,2,0 +11847,129,30,54,1,1,5 +11887,130,59,0,21,21,0 +11886,130,15,3,11,11,0 +11885,130,22,12,5,5,0 +11884,130,14,20,4,4,1 +11883,130,21,4,9,9,0 +11882,130,49,2,15,15,0 +11881,130,11,0,20,20,0 +11880,130,35,0,16,16,0 +11879,130,66,0,17,17,0 +11878,130,13,3,12,12,0 +11877,130,2,5,7,7,0 +11876,130,18,8,6,6,0 +11875,130,23,27,2,2,1 +11874,130,37,0,19,19,0 +11873,130,62,0,18,18,0 +11872,130,63,2,14,14,0 +11871,130,17,2,13,13,0 +11870,130,56,3,10,10,0 +11869,130,8,4,8,8,0 +11868,130,31,27,3,3,0 +11867,130,30,60,1,1,5 +11909,131,44,0,20,20,0 +11908,131,59,0,22,22,0 +11907,131,15,4,10,10,0 +11906,131,22,16,5,5,0 +11905,131,14,26,4,4,1 +11904,131,21,6,8,8,0 +11903,131,49,2,15,15,0 +11902,131,11,0,21,21,0 +11901,131,35,0,16,16,0 +11900,131,66,0,17,17,0 +11899,131,13,3,12,12,0 +11898,131,2,5,9,9,0 +11897,131,18,8,6,6,0 +11896,131,23,27,2,2,1 +11895,131,37,0,19,19,0 +11894,131,62,0,18,18,0 +11893,131,63,2,14,14,0 +11892,131,17,2,13,13,0 +11891,131,56,3,11,11,0 +11890,131,8,7,7,7,0 +11889,131,31,27,3,3,0 +11888,131,30,70,1,1,6 +11931,132,44,0,20,20,0 +11930,132,59,0,22,22,0 +11929,132,15,4,10,10,0 +11928,132,22,26,4,4,1 +11927,132,14,26,5,5,1 +11926,132,21,6,8,8,0 +11925,132,49,2,15,15,0 +11924,132,11,0,21,21,0 +11923,132,35,0,16,16,0 +11922,132,66,0,17,17,0 +11921,132,13,4,11,11,0 +11920,132,2,5,9,9,0 +11919,132,18,10,7,7,0 +11918,132,23,30,2,2,1 +11917,132,37,0,19,19,0 +11916,132,62,0,18,18,0 +11915,132,63,2,14,14,0 +11914,132,17,2,13,13,0 +11913,132,56,3,12,12,0 +11912,132,8,11,6,6,0 +11911,132,31,27,3,3,0 +11910,132,30,76,1,1,6 +11953,133,44,2,14,14,0 +11952,133,59,0,22,22,0 +11951,133,15,4,10,10,0 +11950,133,22,32,2,2,1 +11949,133,14,26,5,5,1 +11948,133,21,6,9,9,0 +11947,133,49,2,17,17,0 +11946,133,11,0,21,21,0 +11945,133,35,3,12,12,0 +11944,133,66,0,18,18,0 +11943,133,13,4,11,11,0 +11942,133,2,6,8,8,0 +11941,133,18,10,7,7,0 +11940,133,23,30,4,4,1 +11939,133,37,0,20,20,0 +11938,133,62,0,19,19,0 +11937,133,63,2,16,16,0 +11936,133,17,2,15,15,0 +11935,133,56,3,13,13,0 +11934,133,8,11,6,6,0 +11933,133,31,31,3,3,0 +11932,133,30,86,1,1,7 +11975,134,44,2,14,14,0 +11974,134,59,0,22,22,0 +11973,134,15,4,10,10,0 +11972,134,22,32,3,3,1 +11971,134,14,30,5,5,1 +11970,134,21,6,9,9,0 +11969,134,49,2,17,17,0 +11968,134,11,0,21,21,0 +11967,134,35,3,12,12,0 +11966,134,66,0,18,18,0 +11965,134,13,4,11,11,0 +11964,134,2,6,8,8,0 +11963,134,18,11,7,7,0 +11962,134,23,32,4,4,1 +11961,134,37,0,20,20,0 +11960,134,62,0,19,19,0 +11959,134,63,2,16,16,0 +11958,134,17,2,15,15,0 +11957,134,56,3,13,13,0 +11956,134,8,17,6,6,0 +11955,134,31,34,2,2,0 +11954,134,30,96,1,1,8 +11997,135,44,2,14,14,0 +11996,135,59,0,22,22,0 +11995,135,15,4,10,10,0 +11994,135,22,35,4,4,1 +11993,135,14,32,5,5,1 +11992,135,21,6,9,9,0 +11991,135,49,2,17,17,0 +11990,135,11,0,21,21,0 +11989,135,35,3,12,12,0 +11988,135,66,0,18,18,0 +11987,135,13,4,11,11,0 +11986,135,2,7,8,8,0 +11985,135,18,11,7,7,0 +11984,135,23,36,3,3,1 +11983,135,37,0,20,20,0 +11982,135,62,0,19,19,0 +11981,135,63,2,16,16,0 +11980,135,17,2,15,15,0 +11979,135,56,3,13,13,0 +11978,135,8,17,6,6,0 +11977,135,31,40,2,2,0 +11976,135,30,106,1,1,9 +12019,136,44,2,14,14,0 +12018,136,59,0,22,22,0 +12017,136,15,4,10,10,0 +12016,136,22,45,2,2,2 +12015,136,14,34,5,5,1 +12014,136,21,7,9,9,0 +12013,136,49,2,17,17,0 +12012,136,11,0,21,21,0 +12011,136,35,3,12,12,0 +12010,136,66,0,18,18,0 +12009,136,13,4,11,11,0 +12008,136,2,7,8,8,0 +12007,136,18,11,7,7,0 +12006,136,23,40,3,3,1 +12005,136,37,0,20,20,0 +12004,136,62,0,19,19,0 +12003,136,63,2,16,16,0 +12002,136,17,2,15,15,0 +12001,136,56,3,13,13,0 +12000,136,8,20,6,6,0 +11999,136,31,40,4,4,0 +11998,136,30,112,1,1,9 +12041,137,44,2,14,14,0 +12040,137,59,0,22,22,0 +12039,137,15,4,11,11,0 +12038,137,22,51,2,2,2 +12037,137,14,37,5,5,1 +12036,137,21,7,9,9,0 +12035,137,49,2,17,17,0 +12034,137,11,0,21,21,0 +12033,137,35,3,13,13,0 +12032,137,66,0,18,18,0 +12031,137,13,4,12,12,0 +12030,137,2,7,8,8,0 +12029,137,18,11,7,7,0 +12028,137,23,42,4,4,1 +12027,137,37,0,20,20,0 +12026,137,62,0,19,19,0 +12025,137,63,2,16,16,0 +12024,137,17,2,15,15,0 +12023,137,56,4,10,10,0 +12022,137,8,20,6,6,0 +12021,137,31,44,3,3,0 +12020,137,30,122,1,1,10 +12063,138,44,3,14,14,0 +12062,138,59,0,22,22,0 +12061,138,15,7,9,9,0 +12060,138,22,61,2,2,3 +12059,138,14,37,5,5,1 +12058,138,21,7,11,11,0 +12057,138,49,2,17,17,0 +12056,138,11,0,21,21,0 +12055,138,35,3,13,13,0 +12054,138,66,0,18,18,0 +12053,138,13,4,12,12,0 +12052,138,2,7,10,10,0 +12051,138,18,13,7,7,0 +12050,138,23,42,4,4,1 +12049,138,37,0,20,20,0 +12048,138,62,0,19,19,0 +12047,138,63,2,16,16,0 +12046,138,17,2,15,15,0 +12045,138,56,8,8,8,0 +12044,138,8,20,6,6,0 +12043,138,31,44,3,3,0 +12042,138,30,128,1,1,10 +12085,139,44,3,14,14,0 +12084,139,59,0,22,22,0 +12083,139,15,9,8,8,0 +12082,139,22,71,2,2,4 +12081,139,14,41,5,5,1 +12080,139,21,7,11,11,0 +12079,139,49,2,17,17,0 +12078,139,11,0,21,21,0 +12077,139,35,4,12,12,0 +12076,139,66,0,18,18,0 +12075,139,13,4,13,13,0 +12074,139,2,7,10,10,0 +12073,139,18,13,7,7,0 +12072,139,23,42,4,4,1 +12071,139,37,0,20,20,0 +12070,139,62,0,19,19,0 +12069,139,63,2,16,16,0 +12068,139,17,2,15,15,0 +12067,139,56,8,9,9,0 +12066,139,8,20,6,6,0 +12065,139,31,47,3,3,0 +12064,139,30,134,1,1,10 +12107,140,44,3,14,14,0 +12106,140,59,0,22,22,0 +12105,140,15,9,8,8,0 +12104,140,22,77,2,2,4 +12103,140,14,41,5,5,1 +12102,140,21,7,11,11,0 +12101,140,49,2,18,18,0 +12100,140,11,2,15,15,0 +12099,140,35,4,12,12,0 +12098,140,66,0,19,19,0 +12097,140,13,4,13,13,0 +12096,140,2,7,10,10,0 +12095,140,18,14,7,7,0 +12094,140,23,42,4,4,1 +12093,140,37,0,21,21,0 +12092,140,62,0,20,20,0 +12091,140,63,2,17,17,0 +12090,140,17,2,16,16,0 +12089,140,56,8,9,9,0 +12088,140,8,24,6,6,0 +12087,140,31,50,3,3,0 +12086,140,30,144,1,1,11 +11393,141,21,0,13,13,0 +11392,141,4,0,12,12,0 +11391,141,56,0,11,11,0 +11390,141,50,0,10,10,0 +11389,141,55,0,9,9,0 +11388,141,54,0,8,8,0 +11387,141,44,0,7,7,0 +11386,141,8,1,6,6,0 +11385,141,49,2,5,5,0 +11384,141,2,3,4,4,0 +11383,141,22,4,3,3,0 +11382,141,14,6,2,2,0 +11381,141,30,10,1,1,1 +11412,142,58,0,19,19,0 +11411,142,60,0,17,17,0 +11410,142,18,0,14,14,0 +11409,142,15,0,12,12,0 +11408,142,57,1,7,7,0 +11407,142,23,2,6,6,0 +11406,142,21,0,18,18,0 +11405,142,4,0,16,16,0 +11404,142,56,0,15,15,0 +11403,142,50,0,9,9,0 +11402,142,55,0,13,13,0 +11401,142,54,0,11,11,0 +11400,142,44,0,10,10,0 +11399,142,8,1,8,8,0 +11398,142,49,5,4,4,0 +11397,142,2,3,5,5,0 +11396,142,22,10,2,2,0 +11395,142,14,10,3,3,0 +11394,142,30,20,1,1,2 +11432,143,35,0,13,13,0 +11431,143,58,0,16,16,0 +11430,143,60,0,20,20,0 +11429,143,18,0,17,17,0 +11428,143,15,2,7,7,0 +11427,143,57,1,10,10,0 +11426,143,23,2,8,8,0 +11425,143,21,1,9,9,0 +11424,143,4,0,19,19,0 +11423,143,56,0,18,18,0 +11422,143,50,0,12,12,0 +11421,143,55,0,14,14,0 +11420,143,54,0,15,15,0 +11419,143,44,3,6,6,0 +11418,143,8,1,11,11,0 +11417,143,49,5,5,5,0 +11416,143,2,7,4,4,0 +11415,143,22,10,3,3,0 +11414,143,14,20,2,2,1 +11413,143,30,26,1,1,2 +11453,144,59,0,18,18,0 +11452,144,35,0,13,13,0 +11451,144,58,0,16,16,0 +11450,144,60,0,21,21,0 +11449,144,18,0,17,17,0 +11448,144,15,4,8,8,0 +11447,144,57,4,7,7,0 +11446,144,23,12,4,4,1 +11445,144,21,1,10,10,0 +11444,144,4,0,20,20,0 +11443,144,56,0,19,19,0 +11442,144,50,0,12,12,0 +11441,144,55,0,14,14,0 +11440,144,54,0,15,15,0 +11439,144,44,3,9,9,0 +11438,144,8,1,11,11,0 +11437,144,49,6,6,6,0 +11436,144,2,7,5,5,0 +11435,144,22,14,3,3,0 +11434,144,14,26,2,2,1 +11433,144,30,26,1,1,2 +11475,145,31,6,7,7,0 +11474,145,59,0,19,19,0 +11473,145,35,4,9,9,0 +11472,145,58,0,17,17,0 +11471,145,60,0,22,22,0 +11470,145,18,0,18,18,0 +11469,145,15,7,6,6,0 +11468,145,57,4,10,10,0 +11467,145,23,12,4,4,1 +11466,145,21,1,13,13,0 +11465,145,4,0,21,21,0 +11464,145,56,0,20,20,0 +11463,145,50,0,14,14,0 +11462,145,55,0,15,15,0 +11461,145,54,0,16,16,0 +11460,145,44,3,11,11,0 +11459,145,8,1,12,12,0 +11458,145,49,6,8,8,0 +11457,145,2,8,5,5,0 +11456,145,22,14,3,3,0 +11455,145,14,28,2,2,1 +11454,145,30,36,1,1,3 +11497,146,31,6,7,7,0 +11496,146,59,0,20,20,0 +11495,146,35,4,10,10,0 +11494,146,58,0,18,18,0 +11493,146,60,0,22,22,0 +11492,146,18,0,19,19,0 +11491,146,15,7,6,6,0 +11490,146,57,4,12,12,0 +11489,146,23,12,4,4,1 +11488,146,21,1,14,14,0 +11487,146,4,0,21,21,0 +11486,146,56,0,15,15,0 +11485,146,50,1,13,13,0 +11484,146,55,0,16,16,0 +11483,146,54,0,17,17,0 +11482,146,44,5,9,9,0 +11481,146,8,4,11,11,0 +11480,146,49,6,8,8,0 +11479,146,2,8,5,5,0 +11478,146,22,18,3,3,0 +11477,146,14,38,2,2,2 +11476,146,30,42,1,1,3 +11519,147,31,6,8,8,0 +11518,147,59,0,19,19,0 +11517,147,35,7,6,6,0 +11516,147,58,0,20,20,0 +11515,147,60,0,22,22,0 +11514,147,18,0,17,17,0 +11513,147,15,7,7,7,0 +11512,147,57,4,13,13,0 +11511,147,23,12,4,4,1 +11510,147,21,1,16,16,0 +11509,147,4,0,21,21,0 +11508,147,56,4,11,11,0 +11507,147,50,1,14,14,0 +11506,147,55,1,15,15,0 +11505,147,54,0,18,18,0 +11504,147,44,5,10,10,0 +11503,147,8,4,12,12,0 +11502,147,49,6,9,9,0 +11501,147,2,8,5,5,0 +11500,147,22,24,3,3,0 +11499,147,14,40,2,2,2 +11498,147,30,52,1,1,4 +11543,148,41,0,19,19,0 +11542,148,37,1,17,17,0 +11541,148,31,6,10,10,0 +11540,148,59,0,22,22,0 +11539,148,35,7,7,7,0 +11538,148,58,0,21,21,0 +11537,148,60,0,24,24,0 +11536,148,18,0,18,18,0 +11535,148,15,7,9,9,0 +11534,148,57,8,6,6,0 +11533,148,23,22,4,4,2 +11532,148,21,1,16,16,0 +11531,148,4,0,23,23,0 +11530,148,56,4,13,13,0 +11529,148,50,1,15,15,0 +11528,148,55,3,14,14,0 +11527,148,54,0,20,20,0 +11526,148,44,5,12,12,0 +11525,148,8,7,8,8,0 +11524,148,49,6,11,11,0 +11523,148,2,8,5,5,0 +11522,148,22,24,3,3,0 +11521,148,14,40,2,2,2 +11520,148,30,58,1,1,4 +11567,149,41,0,19,19,0 +11566,149,37,1,16,16,0 +11565,149,31,12,5,5,0 +11564,149,59,0,22,22,0 +11563,149,35,7,8,8,0 +11562,149,58,0,21,21,0 +11561,149,60,0,24,24,0 +11560,149,18,0,18,18,0 +11559,149,15,7,10,10,0 +11558,149,57,9,6,6,0 +11557,149,23,25,4,4,2 +11556,149,21,1,17,17,0 +11555,149,4,0,23,23,0 +11554,149,56,4,13,13,0 +11553,149,50,1,15,15,0 +11552,149,55,3,14,14,0 +11551,149,54,0,20,20,0 +11550,149,44,5,12,12,0 +11549,149,8,7,9,9,0 +11548,149,49,6,11,11,0 +11547,149,2,8,7,7,0 +11546,149,22,26,3,3,0 +11545,149,14,44,2,2,2 +11544,149,30,68,1,1,5 +11591,150,41,0,19,19,0 +11590,150,37,1,16,16,0 +11589,150,31,12,5,5,0 +11588,150,59,0,22,22,0 +11587,150,35,7,9,9,0 +11586,150,58,0,21,21,0 +11585,150,60,0,24,24,0 +11584,150,18,0,18,18,0 +11583,150,15,9,8,8,0 +11582,150,57,9,7,7,0 +11581,150,23,31,3,3,2 +11580,150,21,1,17,17,0 +11579,150,4,0,23,23,0 +11578,150,56,4,13,13,0 +11577,150,50,1,15,15,0 +11576,150,55,3,14,14,0 +11575,150,54,0,20,20,0 +11574,150,44,5,12,12,0 +11573,150,8,7,10,10,0 +11572,150,49,6,11,11,0 +11571,150,2,9,6,6,0 +11570,150,22,30,4,4,0 +11569,150,14,47,2,2,2 +11568,150,30,78,1,1,6 +11615,151,41,0,19,19,0 +11614,151,37,1,16,16,0 +11613,151,31,15,6,6,0 +11612,151,59,0,22,22,0 +11611,151,35,7,10,10,0 +11610,151,58,0,21,21,0 +11609,151,60,0,24,24,0 +11608,151,18,0,18,18,0 +11607,151,15,9,9,9,0 +11606,151,57,19,5,5,1 +11605,151,23,31,4,4,2 +11604,151,21,1,17,17,0 +11603,151,4,0,23,23,0 +11602,151,56,4,13,13,0 +11601,151,50,1,15,15,0 +11600,151,55,3,14,14,0 +11599,151,54,0,20,20,0 +11598,151,44,5,12,12,0 +11597,151,8,9,8,8,0 +11596,151,49,6,11,11,0 +11595,151,2,10,7,7,0 +11594,151,22,34,3,3,0 +11593,151,14,47,2,2,2 +11592,151,30,84,1,1,6 +11639,152,41,0,19,19,0 +11638,152,37,1,18,18,0 +11637,152,31,15,6,6,0 +11636,152,59,0,21,21,0 +11635,152,35,11,7,7,0 +11634,152,58,0,22,22,0 +11633,152,60,0,24,24,0 +11632,152,18,2,16,16,0 +11631,152,15,9,10,10,0 +11630,152,57,19,5,5,1 +11629,152,23,41,3,3,3 +11628,152,21,4,14,14,0 +11627,152,4,0,23,23,0 +11626,152,56,4,13,13,0 +11625,152,50,1,17,17,0 +11624,152,55,4,15,15,0 +11623,152,54,0,20,20,0 +11622,152,44,5,12,12,0 +11621,152,8,9,9,9,0 +11620,152,49,6,11,11,0 +11619,152,2,10,8,8,0 +11618,152,22,40,4,4,0 +11617,152,14,47,2,2,2 +11616,152,30,84,1,1,6 +11663,153,41,0,19,19,0 +11662,153,37,1,18,18,0 +11661,153,31,15,6,6,0 +11660,153,59,0,21,21,0 +11659,153,35,11,7,7,0 +11658,153,58,0,22,22,0 +11657,153,60,0,24,24,0 +11656,153,18,2,16,16,0 +11655,153,15,9,10,10,0 +11654,153,57,21,5,5,1 +11653,153,23,44,4,4,3 +11652,153,21,4,14,14,0 +11651,153,4,0,23,23,0 +11650,153,56,4,13,13,0 +11649,153,50,1,17,17,0 +11648,153,55,4,15,15,0 +11647,153,54,0,20,20,0 +11646,153,44,5,12,12,0 +11645,153,8,9,9,9,0 +11644,153,49,6,11,11,0 +11643,153,2,11,8,8,0 +11642,153,22,46,3,3,0 +11641,153,14,51,2,2,2 +11640,153,30,94,1,1,7 +11687,154,41,0,19,19,0 +11686,154,37,1,18,18,0 +11685,154,31,15,6,6,0 +11684,154,59,0,21,21,0 +11683,154,35,11,7,7,0 +11682,154,58,0,22,22,0 +11681,154,60,0,24,24,0 +11680,154,18,2,16,16,0 +11679,154,15,9,10,10,0 +11678,154,57,24,5,5,1 +11677,154,23,44,4,4,3 +11676,154,21,8,11,11,0 +11675,154,4,0,23,23,0 +11674,154,56,4,15,15,0 +11673,154,50,1,17,17,0 +11672,154,55,5,14,14,0 +11671,154,54,0,20,20,0 +11670,154,44,5,13,13,0 +11669,154,8,9,9,9,0 +11668,154,49,6,12,12,0 +11667,154,2,11,8,8,0 +11666,154,22,48,3,3,0 +11665,154,14,57,2,2,2 +11664,154,30,104,1,1,8 +11712,155,61,0,24,24,0 +11711,155,41,0,19,19,0 +11710,155,37,3,16,16,0 +11709,155,31,25,5,5,1 +11708,155,59,0,21,21,0 +11707,155,35,12,7,7,0 +11706,155,58,0,22,22,0 +11705,155,60,0,25,25,0 +11704,155,18,2,17,17,0 +11703,155,15,9,10,10,0 +11702,155,57,24,6,6,1 +11701,155,23,48,4,4,3 +11700,155,21,8,11,11,0 +11699,155,4,0,23,23,0 +11698,155,56,4,15,15,0 +11697,155,50,1,18,18,0 +11696,155,55,5,14,14,0 +11695,155,54,0,20,20,0 +11694,155,44,5,13,13,0 +11693,155,8,9,9,9,0 +11692,155,49,6,12,12,0 +11691,155,2,11,8,8,0 +11690,155,22,54,3,3,0 +11689,155,14,57,2,2,2 +11688,155,30,107,1,1,8 +11737,156,61,0,24,24,0 +11736,156,41,0,19,19,0 +11735,156,37,3,16,16,0 +11734,156,31,25,6,6,1 +11733,156,59,0,21,21,0 +11732,156,35,12,7,7,0 +11731,156,58,0,22,22,0 +11730,156,60,0,25,25,0 +11729,156,18,2,17,17,0 +11728,156,15,12,9,9,0 +11727,156,57,34,5,5,2 +11726,156,23,48,4,4,3 +11725,156,21,8,11,11,0 +11724,156,4,0,23,23,0 +11723,156,56,6,12,12,0 +11722,156,50,1,18,18,0 +11721,156,55,5,15,15,0 +11720,156,54,0,20,20,0 +11719,156,44,5,14,14,0 +11718,156,8,9,10,10,0 +11717,156,49,6,13,13,0 +11716,156,2,12,8,8,0 +11715,156,22,54,3,3,0 +11714,156,14,61,2,2,2 +11713,156,30,113,1,1,8 +11763,157,62,0,26,26,0 +11762,157,61,0,24,24,0 +11761,157,41,0,19,19,0 +11760,157,37,3,16,16,0 +11759,157,31,31,6,6,1 +11758,157,59,0,21,21,0 +11757,157,35,12,7,7,0 +11756,157,58,0,22,22,0 +11755,157,60,0,25,25,0 +11754,157,18,2,17,17,0 +11753,157,15,12,9,9,0 +11752,157,57,37,5,5,2 +11751,157,23,49,4,4,3 +11750,157,21,8,11,11,0 +11749,157,4,0,23,23,0 +11748,157,56,6,12,12,0 +11747,157,50,1,18,18,0 +11746,157,55,5,15,15,0 +11745,157,54,0,20,20,0 +11744,157,44,5,14,14,0 +11743,157,8,9,10,10,0 +11742,157,49,6,13,13,0 +11741,157,2,12,8,8,0 +11740,157,22,56,3,3,0 +11739,157,14,65,2,2,2 +11738,157,30,123,1,1,9 +3077,158,30,10,1,1,1 +3078,158,22,6,2,2,0 +3079,158,23,4,3,3,0 +3080,158,35,3,4,4,0 +3081,158,21,2,5,5,0 +3082,158,41,1,6,6,0 +3083,158,25,0,7,7,0 +3084,158,48,0,8,8,0 +3085,158,2,0,9,9,0 +3086,159,30,20,1,1,2 +3087,159,22,6,3,3,0 +3088,159,23,6,4,4,0 +3089,159,35,3,7,7,0 +3090,159,21,8,2,2,0 +3091,159,41,1,8,8,0 +3092,159,25,0,11,11,0 +3093,159,48,0,13,13,0 +3094,159,2,0,14,14,0 +3095,159,49,4,5,5,0 +3096,159,15,3,6,6,0 +3097,159,18,1,9,9,0 +3098,159,50,0,10,10,0 +3099,159,37,0,12,12,0 +3100,159,60,0,15,15,0 +3101,160,30,30,1,1,3 +3102,160,22,9,2,2,0 +3103,160,23,6,5,5,0 +3104,160,35,5,6,6,0 +3105,160,21,8,3,3,0 +3106,160,41,1,10,10,0 +3107,160,25,0,13,13,0 +3108,160,48,0,18,18,0 +3109,160,2,0,19,19,0 +3110,160,49,4,8,8,0 +3111,160,15,3,9,9,0 +3112,160,18,1,11,11,0 +3113,160,50,0,14,14,0 +3114,160,37,0,16,16,0 +3115,160,60,0,20,20,0 +3116,160,57,6,4,4,0 +3117,160,14,4,7,7,0 +3118,160,63,1,12,12,0 +3119,160,56,0,15,15,0 +3120,160,64,0,17,17,0 +3121,160,65,0,21,21,0 +3122,161,30,34,1,1,3 +3123,161,22,9,4,4,0 +3124,161,23,9,5,5,0 +3125,161,35,5,7,7,0 +3126,161,21,8,6,6,0 +3127,161,41,1,12,12,0 +3128,161,25,0,13,13,0 +3129,161,48,0,17,17,0 +3130,161,2,0,19,19,0 +3131,161,49,4,8,8,0 +3132,161,15,4,9,9,0 +3133,161,18,3,10,10,0 +3134,161,50,0,15,15,0 +3135,161,37,0,18,18,0 +3136,161,60,0,21,21,0 +3137,161,57,12,3,3,0 +3138,161,14,14,2,2,1 +3139,161,63,1,11,11,0 +3140,161,56,0,14,14,0 +3141,161,64,0,16,16,0 +3142,161,65,0,20,20,0 +3143,161,55,0,22,22,0 +3144,162,30,36,1,1,3 +3145,162,22,13,4,4,0 +3146,162,23,12,5,5,0 +3147,162,35,5,8,8,0 +3148,162,21,8,6,6,0 +3149,162,41,1,12,12,0 +3150,162,25,0,13,13,0 +3151,162,48,0,17,17,0 +3152,162,2,0,19,19,0 +3153,162,49,5,7,7,0 +3154,162,15,4,9,9,0 +3155,162,18,3,10,10,0 +3156,162,50,0,15,15,0 +3157,162,37,0,18,18,0 +3158,162,60,0,21,21,0 +3159,162,57,22,2,2,1 +3160,162,14,20,3,3,1 +3161,162,63,1,11,11,0 +3162,162,56,0,14,14,0 +3163,162,64,0,16,16,0 +3164,162,65,0,20,20,0 +3165,162,55,0,22,22,0 +3166,163,30,46,1,1,4 +3167,163,22,16,4,4,0 +3168,163,23,12,5,5,0 +3169,163,35,5,8,8,0 +3170,163,21,10,6,6,0 +3171,163,41,1,12,12,0 +3172,163,25,0,15,15,0 +3173,163,48,0,19,19,0 +3174,163,2,0,21,21,0 +3175,163,49,5,7,7,0 +3176,163,15,4,9,9,0 +3177,163,18,3,10,10,0 +3178,163,50,0,17,17,0 +3179,163,37,1,13,13,0 +3180,163,60,0,18,18,0 +3181,163,57,28,2,2,1 +3182,163,14,24,3,3,1 +3183,163,63,1,11,11,0 +3184,163,56,0,16,16,0 +3185,163,64,0,14,14,0 +3186,163,65,0,22,22,0 +3187,163,55,0,20,20,0 +3188,164,30,46,1,1,4 +3189,164,22,22,4,4,0 +3190,164,23,12,6,6,0 +3191,164,35,5,8,8,0 +3192,164,21,14,5,5,0 +3193,164,41,1,13,13,0 +3194,164,25,0,16,16,0 +3195,164,48,0,20,20,0 +3196,164,2,0,18,18,0 +3197,164,49,5,7,7,0 +3198,164,15,4,9,9,0 +3199,164,18,3,12,12,0 +3200,164,50,0,17,17,0 +3201,164,37,1,14,14,0 +3202,164,60,0,19,19,0 +3203,164,57,29,3,3,1 +3204,164,14,34,2,2,2 +3205,164,63,3,11,11,0 +3206,164,56,3,10,10,0 +3207,164,64,0,15,15,0 +3208,164,65,0,21,21,0 +3209,164,55,0,22,22,0 +3210,165,30,56,1,1,5 +3211,165,22,28,4,4,0 +3212,165,23,12,6,6,0 +3213,165,35,5,8,8,0 +3214,165,21,18,5,5,0 +3215,165,41,1,14,14,0 +3216,165,25,0,17,17,0 +3217,165,48,0,20,20,0 +3218,165,2,0,18,18,0 +3219,165,49,5,7,7,0 +3220,165,15,5,9,9,0 +3221,165,18,3,12,12,0 +3222,165,50,2,13,13,0 +3223,165,37,1,15,15,0 +3224,165,60,0,19,19,0 +3225,165,57,32,3,3,1 +3226,165,14,34,2,2,2 +3227,165,63,3,11,11,0 +3228,165,56,3,10,10,0 +3229,165,64,0,16,16,0 +3230,165,65,0,21,21,0 +3231,165,55,0,22,22,0 +3232,166,30,56,1,1,5 +3233,166,22,32,4,4,0 +3234,166,23,14,6,6,0 +3235,166,35,8,7,7,0 +3236,166,21,18,5,5,0 +3237,166,41,1,14,14,0 +3238,166,25,0,17,17,0 +3239,166,48,0,20,20,0 +3240,166,2,0,18,18,0 +3241,166,49,5,9,9,0 +3242,166,15,6,8,8,0 +3243,166,18,3,12,12,0 +3244,166,50,2,13,13,0 +3245,166,37,1,15,15,0 +3246,166,60,0,19,19,0 +3247,166,57,38,3,3,1 +3248,166,14,44,2,2,3 +3249,166,63,3,11,11,0 +3250,166,56,3,10,10,0 +3251,166,64,0,16,16,0 +3252,166,65,0,21,21,0 +3253,166,55,0,22,22,0 +3254,167,30,56,1,1,5 +3255,167,22,36,4,4,0 +3256,167,23,14,6,6,0 +3257,167,35,11,7,7,0 +3258,167,21,18,5,5,0 +3259,167,41,1,14,14,0 +3260,167,25,0,17,17,0 +3261,167,48,0,19,19,0 +3262,167,2,0,20,20,0 +3263,167,49,5,9,9,0 +3264,167,15,6,8,8,0 +3265,167,18,5,10,10,0 +3266,167,50,2,13,13,0 +3267,167,37,1,15,15,0 +3268,167,60,0,21,21,0 +3269,167,57,48,3,3,2 +3270,167,14,50,2,2,3 +3271,167,63,4,11,11,0 +3272,167,56,3,12,12,0 +3273,167,64,0,16,16,0 +3274,167,65,0,18,18,0 +3275,167,55,0,22,22,0 +3276,167,54,0,23,23,0 +3277,168,30,56,1,1,5 +3278,168,22,46,4,4,1 +3279,168,23,14,6,6,0 +3280,168,35,11,7,7,0 +3281,168,21,18,5,5,0 +3282,168,41,1,15,15,0 +3283,168,25,0,17,17,0 +3284,168,48,0,19,19,0 +3285,168,2,0,20,20,0 +3286,168,49,5,11,11,0 +3287,168,15,6,9,9,0 +3288,168,18,8,8,8,0 +3289,168,50,2,13,13,0 +3290,168,37,2,14,14,0 +3291,168,60,0,21,21,0 +3292,168,57,54,3,3,2 +3293,168,14,54,2,2,3 +3294,168,63,6,10,10,0 +3295,168,56,3,12,12,0 +3296,168,64,0,16,16,0 +3297,168,65,0,18,18,0 +3298,168,55,0,22,22,0 +3299,168,54,0,23,23,0 +3300,169,30,62,2,2,5 +3301,169,22,49,4,4,1 +3302,169,23,16,6,6,0 +3303,169,35,11,7,7,0 +3304,169,21,18,5,5,0 +3305,169,41,1,15,15,0 +3306,169,25,0,17,17,0 +3307,169,48,0,19,19,0 +3308,169,2,0,20,20,0 +3309,169,49,6,9,9,0 +3310,169,15,6,10,10,0 +3311,169,18,8,8,8,0 +3312,169,50,2,13,13,0 +3313,169,37,2,14,14,0 +3314,169,60,0,21,21,0 +3315,169,57,64,1,1,3 +3316,169,14,58,3,3,3 +3317,169,63,6,11,11,0 +3318,169,56,3,12,12,0 +3319,169,64,0,16,16,0 +3320,169,65,0,18,18,0 +3321,169,55,0,22,22,0 +3322,169,54,0,23,23,0 +3323,170,30,68,2,2,5 +3324,170,22,49,4,4,1 +3325,170,23,20,5,5,0 +3326,170,35,11,7,7,0 +3327,170,21,18,6,6,0 +3328,170,41,1,15,15,0 +3329,170,25,0,18,18,0 +3330,170,48,0,19,19,0 +3331,170,2,0,20,20,0 +3332,170,49,7,9,9,0 +3333,170,15,6,10,10,0 +3334,170,18,10,8,8,0 +3335,170,50,2,13,13,0 +3336,170,37,2,14,14,0 +3337,170,60,0,21,21,0 +3338,170,57,74,1,1,4 +3339,170,14,61,3,3,3 +3340,170,63,6,11,11,0 +3341,170,56,3,12,12,0 +3342,170,64,0,16,16,0 +3343,170,65,0,17,17,0 +3344,170,55,0,22,22,0 +3345,170,54,0,23,23,0 +3346,171,30,78,2,2,6 +3347,171,22,49,4,4,1 +3348,171,23,24,5,5,0 +3349,171,35,11,7,7,0 +3350,171,21,18,6,6,0 +3351,171,41,2,15,15,0 +3352,171,25,2,14,14,0 +3353,171,48,0,19,19,0 +3354,171,2,0,20,20,0 +3355,171,49,7,9,9,0 +3356,171,15,6,10,10,0 +3357,171,18,10,8,8,0 +3358,171,50,5,12,12,0 +3359,171,37,2,16,16,0 +3360,171,60,0,21,21,0 +3361,171,57,80,1,1,4 +3362,171,14,61,3,3,3 +3363,171,63,6,11,11,0 +3364,171,56,3,13,13,0 +3365,171,64,0,17,17,0 +3366,171,65,0,18,18,0 +3367,171,55,0,22,22,0 +3368,171,54,0,23,23,0 +3369,172,30,88,1,1,7 +3370,172,22,55,4,4,1 +3371,172,23,24,5,5,0 +3372,172,35,14,7,7,0 +3373,172,21,18,6,6,0 +3374,172,41,3,14,14,0 +3375,172,25,2,15,15,0 +3376,172,48,0,19,19,0 +3377,172,2,0,20,20,0 +3378,172,49,11,8,8,0 +3379,172,15,6,10,10,0 +3380,172,18,10,9,9,0 +3381,172,50,5,12,12,0 +3382,172,37,2,16,16,0 +3383,172,60,0,21,21,0 +3384,172,57,80,2,2,4 +3385,172,14,63,3,3,3 +3386,172,63,6,11,11,0 +3387,172,56,3,13,13,0 +3388,172,64,0,17,17,0 +3389,172,65,0,18,18,0 +3390,172,55,0,22,22,0 +3391,172,54,0,23,23,0 +3392,173,30,98,1,1,8 +3393,173,22,58,4,4,1 +3394,173,23,24,5,5,0 +3395,173,35,15,7,7,0 +3396,173,21,18,6,6,0 +3397,173,41,3,14,14,0 +3398,173,25,2,15,15,0 +3399,173,48,0,19,19,0 +3400,173,2,0,20,20,0 +3401,173,49,11,9,9,0 +3402,173,15,6,10,10,0 +3403,173,18,12,8,8,0 +3404,173,50,5,12,12,0 +3405,173,37,2,16,16,0 +3406,173,60,0,21,21,0 +3407,173,57,86,2,2,4 +3408,173,14,67,3,3,3 +3409,173,63,6,11,11,0 +3410,173,56,3,13,13,0 +3411,173,64,0,18,18,0 +3412,173,65,0,17,17,0 +3413,173,55,0,22,22,0 +3414,173,54,0,23,23,0 +3415,174,30,108,1,1,9 +3416,174,22,62,4,4,1 +3417,174,23,24,5,5,0 +3418,174,35,17,7,7,0 +3419,174,21,18,6,6,0 +3420,174,41,3,14,14,0 +3421,174,25,2,15,15,0 +3422,174,48,0,19,19,0 +3423,174,2,0,20,20,0 +3424,174,49,11,9,9,0 +3425,174,15,6,10,10,0 +3426,174,18,12,8,8,0 +3427,174,50,5,12,12,0 +3428,174,37,2,16,16,0 +3429,174,60,0,21,21,0 +3430,174,57,89,2,2,4 +3431,174,14,73,3,3,3 +3432,174,63,6,11,11,0 +3433,174,56,4,13,13,0 +3434,174,64,0,18,18,0 +3435,174,65,0,17,17,0 +3436,174,55,0,22,22,0 +3437,174,54,0,23,23,0 +3809,74,14,9,7,7,0 +3806,74,21,10,3,3,1 +3814,74,15,20,2,2,0 +11063,175,30,0,8,8,0 +11062,175,68,0,7,7,0 +11061,175,37,1,6,6,0 +11060,175,22,2,5,5,0 +11059,175,21,3,4,4,0 +11058,175,23,4,3,3,0 +11057,175,49,6,2,2,0 +11056,175,56,10,1,1,1 +11075,176,48,0,12,12,0 +11074,176,25,0,11,11,0 +11073,176,44,1,9,9,0 +11072,176,57,10,2,2,1 +11071,176,30,6,5,5,0 +11070,176,68,0,10,10,0 +11069,176,37,1,8,8,0 +11068,176,22,2,7,7,0 +11067,176,21,3,6,6,0 +11066,176,23,7,4,4,0 +11065,176,49,10,3,3,0 +11064,176,56,12,1,1,1 +11094,177,70,0,19,19,0 +11093,177,65,0,18,18,0 +11092,177,69,0,16,16,0 +11091,177,63,0,14,14,0 +11090,177,55,1,10,10,0 +11089,177,71,3,9,9,0 +11088,177,14,6,6,6,0 +11087,177,48,0,17,17,0 +11086,177,25,0,15,15,0 +11085,177,44,1,12,12,0 +11084,177,57,10,3,3,1 +11083,177,30,16,1,1,1 +11082,177,68,0,13,13,0 +11081,177,37,1,11,11,0 +11080,177,22,6,7,7,0 +11079,177,21,5,8,8,0 +11078,177,23,7,5,5,0 +11077,177,49,10,4,4,0 +11076,177,56,12,2,2,1 +11114,178,15,0,16,16,0 +11113,178,70,0,17,17,0 +11112,178,65,0,20,20,0 +11111,178,69,0,18,18,0 +11110,178,63,0,15,15,0 +11109,178,55,1,11,11,0 +11108,178,71,3,9,9,0 +11107,178,14,6,7,7,0 +11106,178,48,0,19,19,0 +11105,178,25,1,10,10,0 +11104,178,44,1,13,13,0 +11103,178,57,14,3,3,1 +11102,178,30,26,1,1,2 +11101,178,68,0,14,14,0 +11100,178,37,1,12,12,0 +11099,178,22,6,8,8,0 +11098,178,21,7,6,6,0 +11097,178,23,7,5,5,0 +11096,178,49,13,4,4,0 +11095,178,56,18,2,2,1 +11134,179,15,1,11,11,0 +11133,179,70,0,17,17,0 +11132,179,65,0,20,20,0 +11131,179,69,0,18,18,0 +11130,179,63,0,16,16,0 +11129,179,55,1,13,13,0 +11128,179,71,3,9,9,0 +11127,179,14,12,5,5,0 +11126,179,48,0,19,19,0 +11125,179,25,1,10,10,0 +11124,179,44,1,14,14,0 +11123,179,57,24,2,2,2 +11122,179,30,30,1,1,2 +11121,179,68,0,15,15,0 +11120,179,37,1,12,12,0 +11119,179,22,6,8,8,0 +11118,179,21,7,7,7,0 +11117,179,23,9,6,6,0 +11116,179,49,13,4,4,0 +11115,179,56,21,3,3,1 +11155,180,64,1,16,16,0 +11154,180,15,1,12,12,0 +11153,180,70,0,21,21,0 +11152,180,65,2,10,10,0 +11151,180,69,0,20,20,0 +11150,180,63,0,18,18,0 +11149,180,55,1,15,15,0 +11148,180,71,3,9,9,0 +11147,180,14,12,6,6,0 +11146,180,48,0,19,19,0 +11145,180,25,1,11,11,0 +11144,180,44,1,13,13,0 +11143,180,57,34,1,1,3 +11142,180,30,30,2,2,2 +11141,180,68,0,17,17,0 +11140,180,37,1,14,14,0 +11139,180,22,6,8,8,0 +11138,180,21,13,5,5,0 +11137,180,23,12,7,7,0 +11136,180,49,13,4,4,0 +11135,180,56,25,3,3,1 +11177,181,41,0,22,22,0 +11176,181,64,1,16,16,0 +11175,181,15,1,11,11,0 +11174,181,70,0,21,21,0 +11173,181,65,2,10,10,0 +11172,181,69,0,20,20,0 +11171,181,63,0,18,18,0 +11170,181,55,1,15,15,0 +11169,181,71,3,9,9,0 +11168,181,14,12,7,7,0 +11167,181,48,0,19,19,0 +11166,181,25,1,12,12,0 +11165,181,44,1,13,13,0 +11164,181,57,40,1,1,3 +11163,181,30,32,2,2,2 +11162,181,68,0,17,17,0 +11161,181,37,1,14,14,0 +11160,181,22,10,8,8,0 +11159,181,21,13,6,6,0 +11158,181,23,15,5,5,0 +11157,181,49,23,4,4,1 +11156,181,56,26,3,3,1 +11199,182,41,0,22,22,0 +11198,182,64,2,11,11,0 +11197,182,15,1,12,12,0 +11196,182,70,0,21,21,0 +11195,182,65,2,10,10,0 +11194,182,69,0,20,20,0 +11193,182,63,0,18,18,0 +11192,182,55,1,16,16,0 +11191,182,71,5,9,9,0 +11190,182,14,22,5,5,1 +11189,182,48,0,19,19,0 +11188,182,25,1,13,13,0 +11187,182,44,1,14,14,0 +11186,182,57,40,1,1,3 +11185,182,30,32,2,2,2 +11184,182,68,0,17,17,0 +11183,182,37,1,15,15,0 +11182,182,22,10,8,8,0 +11181,182,21,13,7,7,0 +11180,182,23,19,6,6,0 +11179,182,49,26,4,4,1 +11178,182,56,32,3,3,1 +11221,183,41,0,22,22,0 +11220,183,64,3,11,11,0 +11219,183,15,1,13,13,0 +11218,183,70,0,21,21,0 +11217,183,65,2,12,12,0 +11216,183,69,0,20,20,0 +11215,183,63,0,17,17,0 +11214,183,55,1,16,16,0 +11213,183,71,5,9,9,0 +11212,183,14,28,5,5,1 +11211,183,48,0,19,19,0 +11210,183,25,3,10,10,0 +11209,183,44,1,14,14,0 +11208,183,57,44,1,1,3 +11207,183,30,32,3,3,2 +11206,183,68,0,18,18,0 +11205,183,37,1,15,15,0 +11204,183,22,10,8,8,0 +11203,183,21,13,7,7,0 +11202,183,23,19,6,6,0 +11201,183,49,29,4,4,1 +11200,183,56,42,2,2,2 +11243,184,41,0,22,22,0 +11242,184,64,3,12,12,0 +11241,184,15,1,15,15,0 +11240,184,70,0,21,21,0 +11239,184,65,2,13,13,0 +11238,184,69,0,20,20,0 +11237,184,63,6,9,9,0 +11236,184,55,1,16,16,0 +11235,184,71,5,10,10,0 +11234,184,14,30,5,5,1 +11233,184,48,0,19,19,0 +11232,184,25,3,11,11,0 +11231,184,44,2,14,14,0 +11230,184,57,44,2,2,3 +11229,184,30,32,4,4,2 +11228,184,68,0,18,18,0 +11227,184,37,1,17,17,0 +11226,184,22,10,8,8,0 +11225,184,21,13,7,7,0 +11224,184,23,22,6,6,0 +11223,184,49,33,3,3,1 +11222,184,56,52,1,1,3 +11265,185,41,0,22,22,0 +11264,185,64,3,12,12,0 +11263,185,15,1,15,15,0 +11262,185,70,0,21,21,0 +11261,185,65,2,13,13,0 +11260,185,69,0,20,20,0 +11259,185,63,6,9,9,0 +11258,185,55,1,16,16,0 +11257,185,71,6,10,10,0 +11256,185,14,36,3,3,1 +11255,185,48,0,19,19,0 +11254,185,25,3,11,11,0 +11253,185,44,2,14,14,0 +11252,185,57,54,2,2,4 +11251,185,30,32,5,5,2 +11250,185,68,0,18,18,0 +11249,185,37,1,17,17,0 +11248,185,22,12,8,8,0 +11247,185,21,13,7,7,0 +11246,185,23,22,6,6,0 +11245,185,49,36,4,4,1 +11244,185,56,56,1,1,3 +11288,186,35,0,23,23,0 +11287,186,41,0,22,22,0 +11286,186,64,3,12,12,0 +11285,186,15,1,15,15,0 +11284,186,70,0,19,19,0 +11283,186,65,2,13,13,0 +11282,186,69,0,21,21,0 +11281,186,63,6,10,10,0 +11280,186,55,1,16,16,0 +11279,186,71,7,9,9,0 +11278,186,14,46,3,3,2 +11277,186,48,0,20,20,0 +11276,186,25,3,11,11,0 +11275,186,44,2,14,14,0 +11274,186,57,60,1,1,4 +11273,186,30,32,5,5,2 +11272,186,68,0,18,18,0 +11271,186,37,1,17,17,0 +11270,186,22,12,8,8,0 +11269,186,21,13,7,7,0 +11268,186,23,24,6,6,0 +11267,186,49,40,4,4,1 +11266,186,56,59,2,2,3 +11311,187,35,0,22,22,0 +11310,187,41,0,23,23,0 +11309,187,64,3,12,12,0 +11308,187,15,1,15,15,0 +11307,187,70,0,18,18,0 +11306,187,65,2,13,13,0 +11305,187,69,0,21,21,0 +11304,187,63,10,9,9,0 +11303,187,55,1,16,16,0 +11302,187,71,7,10,10,0 +11301,187,14,48,4,4,2 +11300,187,48,0,20,20,0 +11299,187,25,3,11,11,0 +11298,187,44,2,14,14,0 +11297,187,57,60,1,1,4 +11296,187,30,32,5,5,2 +11295,187,68,0,19,19,0 +11294,187,37,1,17,17,0 +11293,187,22,15,7,7,0 +11292,187,21,13,8,8,0 +11291,187,23,30,6,6,0 +11290,187,49,50,3,3,2 +11289,187,56,60,2,2,3 +11334,188,35,0,23,23,0 +11333,188,41,0,21,21,0 +11332,188,64,3,14,14,0 +11331,188,15,7,11,11,0 +11330,188,70,0,19,19,0 +11329,188,65,12,9,9,1 +11328,188,69,0,22,22,0 +11327,188,63,10,10,10,0 +11326,188,55,1,17,17,0 +11325,188,71,7,12,12,0 +11324,188,14,48,4,4,2 +11323,188,48,1,16,16,0 +11322,188,25,3,13,13,0 +11321,188,44,2,15,15,0 +11320,188,57,62,1,1,4 +11319,188,30,32,6,6,2 +11318,188,68,0,20,20,0 +11317,188,37,1,18,18,0 +11316,188,22,19,7,7,0 +11315,188,21,13,8,8,0 +11314,188,23,33,5,5,0 +11313,188,49,50,3,3,2 +11312,188,56,60,2,2,3 +11357,189,35,0,23,23,0 +11356,189,41,0,21,21,0 +11355,189,64,3,14,14,0 +11354,189,15,7,11,11,0 +11353,189,70,0,19,19,0 +11352,189,65,15,8,8,1 +11351,189,69,0,22,22,0 +11350,189,63,10,10,10,0 +11349,189,55,1,16,16,0 +11348,189,71,7,12,12,0 +11347,189,14,48,4,4,2 +11346,189,48,1,17,17,0 +11345,189,25,3,13,13,0 +11344,189,44,2,15,15,0 +11343,189,57,66,2,2,4 +11342,189,30,38,5,5,2 +11341,189,68,0,20,20,0 +11340,189,37,1,18,18,0 +11339,189,22,21,7,7,0 +11338,189,21,13,9,9,0 +11337,189,23,33,6,6,0 +11336,189,49,51,3,3,2 +11335,189,56,70,1,1,4 +11380,190,35,0,21,21,0 +11379,190,41,0,22,22,0 +11378,190,64,3,14,14,0 +11377,190,15,7,11,11,0 +11376,190,70,0,19,19,0 +11375,190,65,15,8,8,1 +11374,190,69,0,23,23,0 +11373,190,63,10,10,10,0 +11372,190,55,2,15,15,0 +11371,190,71,7,12,12,0 +11370,190,14,48,4,4,2 +11369,190,48,1,17,17,0 +11368,190,25,3,13,13,0 +11367,190,44,2,16,16,0 +11366,190,57,76,1,1,5 +11365,190,30,44,5,5,2 +11364,190,68,0,20,20,0 +11363,190,37,1,18,18,0 +11362,190,22,21,7,7,0 +11361,190,21,13,9,9,0 +11360,190,23,35,6,6,0 +11359,190,49,54,3,3,2 +11358,190,56,74,2,2,4 +4291,191,57,10,1,1,1 +4292,191,14,6,2,2,0 +4293,191,49,4,3,3,0 +4294,191,56,3,4,4,0 +4295,191,35,2,5,5,0 +4296,191,65,1,6,6,0 +4297,191,25,0,7,7,0 +4298,191,71,0,8,8,0 +4299,191,44,0,9,9,0 +4300,192,57,20,1,1,2 +4301,192,14,12,2,2,0 +4302,192,49,6,3,3,0 +4303,192,56,3,6,6,0 +4304,192,35,2,7,7,0 +4305,192,65,1,8,8,0 +4306,192,25,3,5,5,0 +4307,192,71,0,10,10,0 +4308,192,44,0,12,12,0 +4309,192,30,4,4,4,0 +4310,192,21,1,9,9,0 +4311,192,55,0,11,11,0 +4312,192,76,0,13,13,0 +4313,193,57,26,1,1,2 +4314,193,14,13,3,3,0 +4315,193,49,6,5,5,0 +4316,193,56,7,4,4,0 +4317,193,35,2,7,7,0 +4318,193,65,1,10,10,0 +4319,193,25,6,6,6,0 +4320,193,71,0,11,11,0 +4321,193,44,0,12,12,0 +4322,193,30,14,2,2,1 +4323,193,21,1,9,9,0 +4324,193,55,2,8,8,0 +4325,193,76,0,14,14,0 +4326,193,22,0,13,13,0 +4327,193,15,0,15,15,0 +4328,193,68,0,16,16,0 +4329,193,75,0,17,17,0 +4330,193,73,0,18,18,0 +4331,194,57,26,1,1,2 +4332,194,14,23,2,2,1 +4333,194,49,8,5,5,0 +4334,194,56,11,4,4,0 +4335,194,35,5,7,7,0 +4336,194,65,1,10,10,0 +4337,194,25,6,6,6,0 +4338,194,71,0,12,12,0 +4339,194,44,0,14,14,0 +4340,194,30,20,3,3,1 +4341,194,21,1,9,9,0 +4342,194,55,3,8,8,0 +4343,194,76,0,17,17,0 +4344,194,22,0,16,16,0 +4345,194,15,0,18,18,0 +4346,194,68,0,19,19,0 +4347,194,75,0,20,20,0 +4348,194,73,0,21,21,0 +4349,194,23,0,11,11,0 +4350,194,74,0,13,13,0 +4351,194,63,0,15,15,0 +4352,195,57,36,1,1,3 +4353,195,14,29,2,2,1 +4354,195,49,8,6,6,0 +4355,195,56,11,4,4,0 +4356,195,35,6,7,7,0 +4357,195,65,1,10,10,0 +4358,195,25,9,5,5,0 +4359,195,71,0,13,13,0 +4360,195,44,0,15,15,0 +4361,195,30,24,3,3,1 +4362,195,21,1,11,11,0 +4363,195,55,3,8,8,0 +4364,195,76,0,18,18,0 +4365,195,22,2,9,9,0 +4366,195,15,0,16,16,0 +4367,195,68,0,19,19,0 +4368,195,75,0,20,20,0 +4369,195,73,0,21,21,0 +4370,195,23,0,12,12,0 +4371,195,74,0,14,14,0 +4372,195,63,0,17,17,0 +4373,196,57,46,1,1,4 +4374,196,14,29,2,2,1 +4375,196,49,8,6,6,0 +4376,196,56,15,4,4,0 +4377,196,35,8,7,7,0 +4378,196,65,1,12,12,0 +4379,196,25,9,5,5,0 +4380,196,71,0,15,15,0 +4381,196,44,0,17,17,0 +4382,196,30,24,3,3,1 +4383,196,21,7,8,8,0 +4384,196,55,3,10,10,0 +4385,196,76,0,20,20,0 +4386,196,22,2,11,11,0 +4387,196,15,0,18,18,0 +4388,196,68,0,21,21,0 +4389,196,75,0,19,19,0 +4390,196,73,0,22,22,0 +4391,196,23,0,14,14,0 +4392,196,74,0,16,16,0 +4393,196,63,3,9,9,0 +4394,196,64,1,13,13,0 +4395,197,57,46,1,1,4 +4396,197,14,29,3,3,1 +4397,197,49,8,7,7,0 +4398,197,56,19,4,4,0 +4399,197,35,8,8,8,0 +4400,197,65,1,12,12,0 +4401,197,25,12,6,6,0 +4402,197,71,0,17,17,0 +4403,197,44,0,20,20,0 +4404,197,30,34,2,2,2 +4405,197,21,13,5,5,0 +4406,197,55,3,11,11,0 +4407,197,76,1,14,14,0 +4408,197,22,4,9,9,0 +4409,197,15,0,21,21,0 +4410,197,68,0,22,22,0 +4411,197,75,0,15,15,0 +4412,197,73,0,18,18,0 +4413,197,23,0,16,16,0 +4414,197,74,0,19,19,0 +4415,197,63,3,10,10,0 +4416,197,64,1,13,13,0 +4417,198,57,50,1,1,4 +4418,198,14,30,3,3,1 +4419,198,49,8,8,8,0 +4420,198,56,25,4,4,0 +4421,198,35,11,7,7,0 +4422,198,65,1,12,12,0 +4423,198,25,14,5,5,0 +4424,198,71,0,17,17,0 +4425,198,44,0,20,20,0 +4426,198,30,44,2,2,3 +4427,198,21,13,6,6,0 +4428,198,55,3,11,11,0 +4429,198,76,1,14,14,0 +4430,198,22,4,9,9,0 +4431,198,15,0,21,21,0 +4432,198,68,0,22,22,0 +4433,198,75,0,15,15,0 +4434,198,73,0,18,18,0 +4435,198,23,0,16,16,0 +4436,198,74,0,19,19,0 +4437,198,63,3,10,10,0 +4438,198,64,1,13,13,0 +4439,198,50,0,23,23,0 +4440,199,57,56,1,1,4 +4441,199,14,30,3,3,1 +4442,199,49,8,8,8,0 +4443,199,56,29,4,4,0 +4444,199,35,11,7,7,0 +4445,199,65,1,12,12,0 +4446,199,25,17,5,5,0 +4447,199,71,0,17,17,0 +4448,199,44,0,20,20,0 +4449,199,30,54,2,2,4 +4450,199,21,15,6,6,0 +4451,199,55,3,11,11,0 +4452,199,76,1,15,15,0 +4453,199,22,4,9,9,0 +4454,199,15,0,22,22,0 +4455,199,68,0,21,21,0 +4456,199,75,0,16,16,0 +4457,199,73,0,18,18,0 +4458,199,23,1,13,13,0 +4459,199,74,0,19,19,0 +4460,199,63,3,10,10,0 +4461,199,64,1,14,14,0 +4462,199,50,0,23,23,0 +4463,200,57,66,1,1,5 +4464,200,14,36,3,3,1 +4465,200,49,8,8,8,0 +4466,200,56,32,4,4,0 +4467,200,35,12,7,7,0 +4468,200,65,1,13,13,0 +4469,200,25,17,5,5,0 +4470,200,71,0,16,16,0 +4471,200,44,0,21,21,0 +4472,200,30,58,2,2,4 +4473,200,21,15,6,6,0 +4474,200,55,3,11,11,0 +4475,200,76,1,15,15,0 +4476,200,22,4,9,9,0 +4477,200,15,0,20,20,0 +4478,200,68,0,22,22,0 +4479,200,75,0,17,17,0 +4480,200,73,0,18,18,0 +4481,200,23,3,12,12,0 +4482,200,74,0,19,19,0 +4483,200,63,3,10,10,0 +4484,200,64,1,14,14,0 +4485,200,50,0,23,23,0 +4486,201,57,76,1,1,6 +4487,201,14,42,3,3,1 +4488,201,49,8,8,8,0 +4489,201,56,32,4,4,0 +4490,201,35,16,6,6,0 +4491,201,65,1,14,14,0 +4492,201,25,17,5,5,0 +4493,201,71,3,11,11,0 +4494,201,44,0,21,21,0 +4495,201,30,60,2,2,4 +4496,201,21,15,7,7,0 +4497,201,55,3,13,13,0 +4498,201,76,1,16,16,0 +4499,201,22,4,9,9,0 +4500,201,15,0,20,20,0 +4501,201,68,0,22,22,0 +4502,201,75,0,17,17,0 +4503,201,73,0,18,18,0 +4504,201,23,4,10,10,0 +4505,201,74,0,19,19,0 +4506,201,63,3,12,12,0 +4507,201,64,1,15,15,0 +4508,201,50,0,23,23,0 +4509,202,57,77,1,1,6 +4510,202,14,48,3,3,1 +4511,202,49,10,8,8,0 +4512,202,56,32,4,4,0 +4513,202,35,20,5,5,0 +4514,202,65,1,14,14,0 +4515,202,25,17,6,6,0 +4516,202,71,6,9,9,0 +4517,202,44,0,21,21,0 +4518,202,30,70,2,2,5 +4519,202,21,15,7,7,0 +4520,202,55,3,13,13,0 +4521,202,76,1,16,16,0 +4522,202,22,4,10,10,0 +4523,202,15,0,20,20,0 +4524,202,68,0,22,22,0 +4525,202,75,0,17,17,0 +4526,202,73,0,18,18,0 +4527,202,23,4,11,11,0 +4528,202,74,0,19,19,0 +4529,202,63,3,12,12,0 +4530,202,64,1,15,15,0 +4531,202,50,0,23,23,0 +4532,203,57,77,1,1,6 +4533,203,14,48,3,3,1 +4534,203,49,13,9,9,0 +4535,203,56,32,4,4,0 +4536,203,35,20,5,5,0 +4537,203,65,1,15,15,0 +4538,203,25,17,6,6,0 +4539,203,71,16,7,7,1 +4540,203,44,0,21,21,0 +4541,203,30,70,2,2,5 +4542,203,21,15,8,8,0 +4543,203,55,7,11,11,0 +4544,203,76,1,17,17,0 +4545,203,22,4,12,12,0 +4546,203,15,1,16,16,0 +4547,203,68,0,22,22,0 +4548,203,75,0,18,18,0 +4549,203,73,0,19,19,0 +4550,203,23,10,10,10,0 +4551,203,74,0,20,20,0 +4552,203,63,3,13,13,0 +4553,203,64,3,14,14,0 +4554,203,50,0,23,23,0 +4555,204,57,80,1,1,6 +4556,204,14,48,3,3,1 +4557,204,49,13,10,10,0 +4558,204,56,38,4,4,0 +4559,204,35,20,5,5,0 +4560,204,65,1,15,15,0 +4561,204,25,17,7,7,0 +4562,204,71,17,6,6,1 +4563,204,44,0,22,22,0 +4564,204,30,80,2,2,6 +4565,204,21,15,8,8,0 +4566,204,55,9,11,11,0 +4567,204,76,1,17,17,0 +4568,204,22,4,12,12,0 +4569,204,15,1,16,16,0 +4570,204,68,0,21,21,0 +4571,204,75,0,18,18,0 +4572,204,73,0,20,20,0 +4573,204,23,14,9,9,0 +4574,204,74,0,19,19,0 +4575,204,63,3,13,13,0 +4576,204,64,3,14,14,0 +4577,204,50,0,23,23,0 +4578,205,57,90,1,1,7 +4579,205,14,52,3,3,1 +4580,205,49,15,9,9,0 +4581,205,56,41,4,4,0 +4582,205,35,20,5,5,0 +4583,205,65,1,15,15,0 +4584,205,25,17,7,7,0 +4585,205,71,17,6,6,1 +4586,205,44,0,22,22,0 +4587,205,30,86,2,2,6 +4588,205,21,16,8,8,0 +4589,205,55,9,11,11,0 +4590,205,76,1,17,17,0 +4591,205,22,4,12,12,0 +4592,205,15,1,16,16,0 +4593,205,68,0,21,21,0 +4594,205,75,0,18,18,0 +4595,205,73,0,20,20,0 +4596,205,23,14,10,10,0 +4597,205,74,0,19,19,0 +4598,205,63,3,13,13,0 +4599,205,64,3,14,14,0 +4600,205,50,0,23,23,0 +4601,206,57,100,1,1,8 +4602,206,14,56,3,3,1 +4603,206,49,17,7,7,0 +4604,206,56,47,4,4,0 +4605,206,35,21,5,5,0 +4606,206,65,1,15,15,0 +4607,206,25,17,8,8,0 +4608,206,71,20,6,6,1 +4609,206,44,0,22,22,0 +4610,206,30,86,2,2,6 +4611,206,21,16,9,9,0 +4612,206,55,9,11,11,0 +4613,206,76,1,17,17,0 +4614,206,22,4,12,12,0 +4615,206,15,1,16,16,0 +4616,206,68,0,21,21,0 +4617,206,75,0,18,18,0 +4618,206,73,0,20,20,0 +4619,206,23,14,10,10,0 +4620,206,74,0,19,19,0 +4621,206,63,3,13,13,0 +4622,206,64,3,14,14,0 +4623,206,50,0,23,23,0 +10669,207,64,0,10,10,0 +10668,207,15,0,9,9,0 +10667,207,49,0,8,8,0 +10666,207,75,0,7,7,0 +10665,207,78,1,6,6,0 +10664,207,44,2,5,5,0 +10663,207,77,3,4,4,0 +10662,207,57,4,3,3,0 +10661,207,30,6,2,2,0 +10660,207,14,10,1,1,1 +10688,208,79,0,19,19,0 +10687,208,71,0,18,18,0 +10686,208,56,0,17,17,0 +10685,208,50,0,16,16,0 +10684,208,63,0,15,15,0 +10683,208,21,0,12,12,0 +10682,208,65,0,10,10,0 +10681,208,55,1,8,8,0 +10680,208,35,10,2,2,1 +10679,208,64,0,14,14,0 +10678,208,15,0,13,13,0 +10677,208,49,0,11,11,0 +10676,208,75,0,9,9,0 +10675,208,78,1,7,7,0 +10674,208,44,6,6,6,0 +10673,208,77,9,3,3,0 +10672,208,57,7,5,5,0 +10671,208,30,8,4,4,0 +10670,208,14,10,1,1,1 +10709,209,76,0,18,18,0 +10708,209,23,4,8,8,0 +10707,209,79,0,21,21,0 +10706,209,71,0,20,20,0 +10705,209,56,6,6,6,0 +10704,209,50,0,19,19,0 +10703,209,63,0,14,14,0 +10702,209,21,0,15,15,0 +10701,209,65,3,9,9,0 +10700,209,55,1,10,10,0 +10699,209,35,20,1,1,2 +10698,209,64,0,17,17,0 +10697,209,15,0,16,16,0 +10696,209,49,0,13,13,0 +10695,209,75,0,12,12,0 +10694,209,78,1,11,11,0 +10693,209,44,6,7,7,0 +10692,209,77,10,3,3,0 +10691,209,57,9,4,4,0 +10690,209,30,8,5,5,0 +10689,209,14,10,2,2,1 +10730,210,76,0,19,19,0 +10729,210,23,4,9,9,0 +10728,210,79,0,20,20,0 +10727,210,71,0,21,21,0 +10726,210,56,10,5,5,0 +10725,210,50,0,17,17,0 +10724,210,63,0,15,15,0 +10723,210,21,3,11,11,0 +10722,210,65,3,10,10,0 +10721,210,55,3,12,12,0 +10720,210,35,20,1,1,2 +10719,210,64,0,18,18,0 +10718,210,15,0,16,16,0 +10717,210,49,10,3,3,1 +10716,210,75,0,14,14,0 +10715,210,78,1,13,13,0 +10714,210,44,6,8,8,0 +10713,210,77,10,6,6,0 +10712,210,57,10,7,7,0 +10711,210,30,14,2,2,0 +10710,210,14,10,4,4,1 +10752,211,22,6,9,9,0 +10751,211,76,0,16,16,0 +10750,211,23,4,10,10,0 +10749,211,79,0,20,20,0 +10748,211,71,0,22,22,0 +10747,211,56,14,3,3,0 +10746,211,50,0,18,18,0 +10745,211,63,2,14,14,0 +10744,211,21,4,11,11,0 +10743,211,65,3,12,12,0 +10742,211,55,3,13,13,0 +10741,211,35,20,2,2,2 +10740,211,64,0,21,21,0 +10739,211,15,0,19,19,0 +10738,211,49,10,4,4,1 +10737,211,75,0,17,17,0 +10736,211,78,1,15,15,0 +10735,211,44,9,8,8,0 +10734,211,77,10,6,6,0 +10733,211,57,10,7,7,0 +10732,211,30,24,1,1,1 +10731,211,14,10,5,5,1 +10775,212,81,0,22,22,0 +10774,212,22,6,10,10,0 +10773,212,76,0,16,16,0 +10772,212,23,4,12,12,0 +10771,212,79,0,20,20,0 +10770,212,71,0,23,23,0 +10769,212,56,14,4,4,0 +10768,212,50,0,18,18,0 +10767,212,63,2,14,14,0 +10766,212,21,4,13,13,0 +10765,212,65,5,11,11,0 +10764,212,55,7,9,9,0 +10763,212,35,30,1,1,3 +10762,212,64,0,21,21,0 +10761,212,15,0,19,19,0 +10760,212,49,10,6,6,1 +10759,212,75,0,17,17,0 +10758,212,78,1,15,15,0 +10757,212,44,15,3,3,0 +10756,212,77,10,7,7,0 +10755,212,57,10,8,8,0 +10754,212,30,27,2,2,1 +10753,212,14,11,5,5,1 +10798,213,81,0,23,23,0 +10797,213,22,6,12,12,0 +10796,213,76,0,17,17,0 +10795,213,23,4,13,13,0 +10794,213,79,0,22,22,0 +10793,213,71,0,21,21,0 +10792,213,56,14,4,4,0 +10791,213,50,0,18,18,0 +10790,213,63,2,14,14,0 +10789,213,21,8,10,10,0 +10788,213,65,7,11,11,0 +10787,213,55,13,6,6,0 +10786,213,35,30,2,2,3 +10785,213,64,0,19,19,0 +10784,213,15,0,20,20,0 +10783,213,49,13,5,5,1 +10782,213,75,1,16,16,0 +10781,213,78,1,15,15,0 +10780,213,44,15,3,3,0 +10779,213,77,10,8,8,0 +10778,213,57,10,9,9,0 +10777,213,30,37,1,1,2 +10776,213,14,11,7,7,1 +10821,214,81,0,23,23,0 +10820,214,22,6,12,12,0 +10819,214,76,0,17,17,0 +10818,214,23,5,13,13,0 +10817,214,79,0,22,22,0 +10816,214,71,0,21,21,0 +10815,214,56,18,4,4,0 +10814,214,50,0,18,18,0 +10813,214,63,2,14,14,0 +10812,214,21,8,10,10,0 +10811,214,65,7,11,11,0 +10810,214,55,15,6,6,0 +10809,214,35,33,2,2,3 +10808,214,64,0,19,19,0 +10807,214,15,0,20,20,0 +10806,214,49,19,3,3,1 +10805,214,75,1,16,16,0 +10804,214,78,1,15,15,0 +10803,214,44,15,5,5,0 +10802,214,77,10,8,8,0 +10801,214,57,10,9,9,0 +10800,214,30,47,1,1,3 +10799,214,14,11,7,7,1 +10847,215,58,0,26,26,0 +10846,215,82,0,23,23,0 +10845,215,25,4,14,14,0 +10844,215,81,0,25,25,0 +10843,215,22,6,13,13,0 +10842,215,76,0,19,19,0 +10841,215,23,7,11,11,0 +10840,215,79,0,24,24,0 +10839,215,71,1,18,18,0 +10838,215,56,18,5,5,0 +10837,215,50,0,21,21,0 +10836,215,63,2,15,15,0 +10835,215,21,8,10,10,0 +10834,215,65,7,12,12,0 +10833,215,55,21,3,3,0 +10832,215,35,43,2,2,4 +10831,215,64,0,22,22,0 +10830,215,15,0,20,20,0 +10829,215,49,19,4,4,1 +10828,215,75,1,16,16,0 +10827,215,78,1,17,17,0 +10826,215,44,15,6,6,0 +10825,215,77,10,8,8,0 +10824,215,57,10,9,9,0 +10823,215,30,47,1,1,3 +10822,215,14,14,7,7,1 +10873,216,58,0,26,26,0 +10872,216,82,0,23,23,0 +10871,216,25,4,14,14,0 +10870,216,81,0,25,25,0 +10869,216,22,6,13,13,0 +10868,216,76,0,20,20,0 +10867,216,23,9,10,10,0 +10866,216,79,0,24,24,0 +10865,216,71,1,19,19,0 +10864,216,56,18,6,6,0 +10863,216,50,0,21,21,0 +10862,216,63,2,16,16,0 +10861,216,21,8,11,11,0 +10860,216,65,7,12,12,0 +10859,216,55,22,3,3,0 +10858,216,35,43,2,2,4 +10857,216,64,0,22,22,0 +10856,216,15,3,15,15,0 +10855,216,49,19,5,5,1 +10854,216,75,1,17,17,0 +10853,216,78,1,18,18,0 +10852,216,44,15,7,7,0 +10851,216,77,20,4,4,1 +10850,216,57,14,9,9,0 +10849,216,30,53,1,1,3 +10848,216,14,14,8,8,1 +10899,217,58,0,25,25,0 +10898,217,82,0,23,23,0 +10897,217,25,4,15,15,0 +10896,217,81,0,26,26,0 +10895,217,22,6,14,14,0 +10894,217,76,0,20,20,0 +10893,217,23,11,11,11,0 +10892,217,79,0,24,24,0 +10891,217,71,7,13,13,0 +10890,217,56,18,6,6,0 +10889,217,50,0,21,21,0 +10888,217,63,2,17,17,0 +10887,217,21,8,12,12,0 +10886,217,65,11,10,10,0 +10885,217,55,22,3,3,0 +10884,217,35,53,2,2,5 +10883,217,64,0,22,22,0 +10882,217,15,3,16,16,0 +10881,217,49,19,5,5,1 +10880,217,75,2,18,18,0 +10879,217,78,1,19,19,0 +10878,217,44,15,7,7,0 +10877,217,77,20,4,4,1 +10876,217,57,14,9,9,0 +10875,217,30,56,1,1,3 +10874,217,14,14,8,8,1 +10925,218,58,0,26,26,0 +10924,218,82,0,23,23,0 +10923,218,25,4,15,15,0 +10922,218,81,0,24,24,0 +10921,218,22,6,14,14,0 +10920,218,76,0,21,21,0 +10919,218,23,11,12,12,0 +10918,218,79,0,25,25,0 +10917,218,71,7,13,13,0 +10916,218,56,18,6,6,0 +10915,218,50,0,22,22,0 +10914,218,63,2,17,17,0 +10913,218,21,14,9,9,0 +10912,218,65,14,11,11,0 +10911,218,55,22,4,4,0 +10910,218,35,55,2,2,5 +10909,218,64,0,20,20,0 +10908,218,15,3,16,16,0 +10907,218,49,23,3,3,1 +10906,218,75,2,18,18,0 +10905,218,78,1,19,19,0 +10904,218,44,15,7,7,0 +10903,218,77,21,5,5,1 +10902,218,57,14,10,10,0 +10901,218,30,66,1,1,4 +10900,218,14,14,8,8,1 +10951,219,58,0,26,26,0 +10950,219,82,0,23,23,0 +10949,219,25,4,15,15,0 +10948,219,81,0,24,24,0 +10947,219,22,6,14,14,0 +10946,219,76,0,21,21,0 +10945,219,23,11,12,12,0 +10944,219,79,0,25,25,0 +10943,219,71,7,13,13,0 +10942,219,56,18,7,7,0 +10941,219,50,0,22,22,0 +10940,219,63,2,17,17,0 +10939,219,21,17,8,8,0 +10938,219,65,14,11,11,0 +10937,219,55,28,3,3,0 +10936,219,35,57,2,2,5 +10935,219,64,0,20,20,0 +10934,219,15,3,16,16,0 +10933,219,49,27,4,4,1 +10932,219,75,2,18,18,0 +10931,219,78,1,19,19,0 +10930,219,44,15,9,9,0 +10929,219,77,21,6,6,1 +10928,219,57,14,10,10,0 +10927,219,30,67,1,1,4 +10926,219,14,24,5,5,2 +10977,220,58,0,26,26,0 +10976,220,82,0,24,24,0 +10975,220,25,4,15,15,0 +10974,220,81,0,23,23,0 +10973,220,22,6,14,14,0 +10972,220,76,0,21,21,0 +10971,220,23,13,12,12,0 +10970,220,79,0,25,25,0 +10969,220,71,7,13,13,0 +10968,220,56,18,8,8,0 +10967,220,50,0,22,22,0 +10966,220,63,2,17,17,0 +10965,220,21,20,7,7,0 +10964,220,65,14,11,11,0 +10963,220,55,28,5,5,0 +10962,220,35,67,2,2,6 +10961,220,64,0,20,20,0 +10960,220,15,3,16,16,0 +10959,220,49,31,3,3,1 +10958,220,75,2,18,18,0 +10957,220,78,1,19,19,0 +10956,220,44,15,9,9,0 +10955,220,77,21,6,6,1 +10954,220,57,14,10,10,0 +10953,220,30,68,1,1,4 +10952,220,14,30,4,4,2 +11003,221,58,0,26,26,0 +11002,221,82,0,24,24,0 +11001,221,25,4,15,15,0 +11000,221,81,0,23,23,0 +10999,221,22,6,14,14,0 +10998,221,76,0,21,21,0 +10997,221,23,13,12,12,0 +10996,221,79,0,25,25,0 +10995,221,71,7,13,13,0 +10994,221,56,18,8,8,0 +10993,221,50,0,22,22,0 +10992,221,63,2,18,18,0 +10991,221,21,20,7,7,0 +10990,221,65,14,11,11,0 +10989,221,55,34,4,4,0 +10988,221,35,77,1,1,7 +10987,221,64,2,17,17,0 +10986,221,15,3,16,16,0 +10985,221,49,35,3,3,1 +10984,221,75,2,19,19,0 +10983,221,78,1,20,20,0 +10982,221,44,16,9,9,0 +10981,221,77,24,6,6,1 +10980,221,57,14,10,10,0 +10979,221,30,68,2,2,4 +10978,221,14,30,5,5,2 +11029,222,58,0,26,26,0 +11028,222,82,0,24,24,0 +11027,222,25,4,15,15,0 +11026,222,81,0,23,23,0 +11025,222,22,6,14,14,0 +11024,222,76,0,21,21,0 +11023,222,23,13,12,12,0 +11022,222,79,0,25,25,0 +11021,222,71,7,13,13,0 +11020,222,56,22,7,7,0 +11019,222,50,0,22,22,0 +11018,222,63,2,18,18,0 +11017,222,21,20,8,8,0 +11016,222,65,15,11,11,0 +11015,222,55,36,4,4,0 +11014,222,35,77,2,2,7 +11013,222,64,2,17,17,0 +11012,222,15,3,16,16,0 +11011,222,49,41,3,3,1 +11010,222,75,2,19,19,0 +11009,222,78,1,20,20,0 +11008,222,44,16,10,10,0 +11007,222,77,24,6,6,1 +11006,222,57,17,9,9,0 +11005,222,30,78,1,1,5 +11004,222,14,30,5,5,2 +11055,223,58,0,25,25,0 +11054,223,82,0,23,23,0 +11053,223,25,4,14,14,0 +11052,223,81,0,22,22,0 +11051,223,22,6,13,13,0 +11050,223,76,0,20,20,0 +11049,223,23,13,11,11,0 +11048,223,79,0,24,24,0 +11047,223,71,7,12,12,0 +11046,223,56,24,7,7,0 +11045,223,50,0,21,21,0 +11044,223,63,2,17,17,0 +11043,223,21,20,8,8,0 +11042,223,65,15,10,10,0 +11041,223,55,36,4,4,0 +11040,223,35,81,1,1,7 +11039,223,64,2,16,16,0 +11038,223,15,3,15,15,0 +11037,223,49,42,2,2,1 +11036,223,75,2,18,18,0 +11035,223,78,1,19,19,0 +11034,223,44,16,9,9,0 +11033,223,77,27,5,5,1 +11032,223,57,27,6,6,1 +11031,223,30,78,26,D,5 +11030,223,14,36,3,3,2 +5042,224,71,10,1,1,1 +5043,224,35,6,2,2,0 +5044,224,56,4,3,3,0 +5045,224,77,3,4,4,0 +5046,224,57,2,5,5,0 +5047,224,63,1,6,6,0 +5048,224,44,0,7,7,0 +5049,224,49,0,8,8,0 +5050,224,73,0,9,9,0 +5051,224,64,0,10,10,0 +5052,224,79,0,11,11,0 +5053,225,71,20,1,1,2 +5054,225,35,6,3,3,0 +5055,225,56,4,5,5,0 +5056,225,77,3,7,7,0 +5057,225,57,5,4,4,0 +5058,225,63,3,8,8,0 +5059,225,44,1,9,9,0 +5060,225,49,0,11,11,0 +5061,225,73,0,13,13,0 +5062,225,64,0,10,10,0 +5063,225,79,0,12,12,0 +5064,225,55,6,2,2,0 +5065,225,30,4,6,6,0 +5066,225,83,0,14,14,0 +5067,225,69,0,15,15,0 +5068,225,84,0,16,16,0 +5069,226,71,30,1,1,3 +5070,226,35,12,2,2,0 +5071,226,56,6,4,4,0 +5072,226,77,3,8,8,0 +5073,226,57,5,5,5,0 +5074,226,63,3,9,9,0 +5075,226,44,1,10,10,0 +5076,226,49,0,14,14,0 +5077,226,73,0,17,17,0 +5078,226,64,0,13,13,0 +5079,226,79,0,15,15,0 +5080,226,55,10,3,3,0 +5081,226,30,4,6,6,0 +5082,226,83,0,18,18,0 +5083,226,69,0,20,20,0 +5084,226,84,0,21,21,0 +5085,226,22,3,7,7,0 +5086,226,50,1,11,11,0 +5087,226,14,0,12,12,0 +5088,226,65,0,16,16,0 +5089,226,85,0,19,19,0 +5090,227,71,33,1,1,3 +5091,227,35,22,2,2,1 +5092,227,56,6,5,5,0 +5093,227,77,3,9,9,0 +5094,227,57,5,6,6,0 +5095,227,63,3,10,10,0 +5096,227,44,1,11,11,0 +5097,227,49,0,16,16,0 +5098,227,73,0,18,18,0 +5099,227,64,0,15,15,0 +5100,227,79,0,17,17,0 +5101,227,55,10,3,3,0 +5102,227,30,10,4,4,0 +5103,227,83,0,19,19,0 +5104,227,69,0,21,21,0 +5105,227,84,1,12,12,0 +5106,227,22,5,7,7,0 +5107,227,50,1,13,13,0 +5108,227,14,4,8,8,0 +5109,227,65,0,14,14,0 +5110,227,85,0,20,20,0 +5111,227,21,0,22,22,0 +5112,228,71,43,1,1,4 +5113,228,35,22,2,2,1 +5114,228,56,9,5,5,0 +5115,228,77,7,6,6,0 +5116,228,57,5,8,8,0 +5117,228,63,3,10,10,0 +5118,228,44,1,11,11,0 +5119,228,49,0,16,16,0 +5120,228,73,0,19,19,0 +5121,228,64,0,14,14,0 +5122,228,79,0,18,18,0 +5123,228,55,11,4,4,0 +5124,228,30,16,3,3,0 +5125,228,83,0,17,17,0 +5126,228,69,0,20,20,0 +5127,228,84,1,12,12,0 +5128,228,22,7,7,7,0 +5129,228,50,1,13,13,0 +5130,228,14,4,9,9,0 +5131,228,65,0,15,15,0 +5132,228,85,0,21,21,0 +5133,228,21,0,22,22,0 +5134,229,71,43,1,1,4 +5135,229,35,22,2,2,1 +5136,229,56,9,7,7,0 +5137,229,77,7,8,8,0 +5138,229,57,6,10,10,0 +5139,229,63,5,11,11,0 +5140,229,44,11,4,4,1 +5141,229,49,3,13,13,0 +5142,229,73,0,19,19,0 +5143,229,64,0,16,16,0 +5144,229,79,0,18,18,0 +5145,229,55,11,5,5,0 +5146,229,30,16,3,3,0 +5147,229,83,0,17,17,0 +5148,229,69,0,20,20,0 +5149,229,84,1,14,14,0 +5150,229,22,7,9,9,0 +5151,229,50,1,15,15,0 +5152,229,14,10,6,6,0 +5153,229,65,4,12,12,0 +5154,229,85,0,21,21,0 +5155,229,21,0,22,22,0 +5156,230,71,43,1,1,4 +5157,230,35,26,2,2,1 +5158,230,56,9,7,7,0 +5159,230,77,7,9,9,0 +5160,230,57,8,8,8,0 +5161,230,63,5,12,12,0 +5162,230,44,11,5,5,1 +5163,230,49,6,11,11,0 +5164,230,73,0,19,19,0 +5165,230,64,1,14,14,0 +5166,230,79,0,18,18,0 +5167,230,55,17,4,4,0 +5168,230,30,26,3,3,1 +5169,230,83,0,17,17,0 +5170,230,69,0,20,20,0 +5171,230,84,1,15,15,0 +5172,230,22,7,10,10,0 +5173,230,50,1,16,16,0 +5174,230,14,10,6,6,0 +5175,230,65,4,13,13,0 +5176,230,85,0,21,21,0 +5177,230,21,0,22,22,0 +5178,231,71,53,1,1,5 +5179,231,35,32,2,2,1 +5180,231,56,9,8,8,0 +5181,231,77,7,9,9,0 +5182,231,57,10,7,7,0 +5183,231,63,5,12,12,0 +5184,231,44,11,6,6,1 +5185,231,49,6,11,11,0 +5186,231,73,0,20,20,0 +5187,231,64,1,15,15,0 +5188,231,79,0,19,19,0 +5189,231,55,21,4,4,0 +5190,231,30,26,3,3,1 +5191,231,83,0,18,18,0 +5192,231,69,0,21,21,0 +5193,231,84,2,14,14,0 +5194,231,22,7,10,10,0 +5195,231,50,1,16,16,0 +5196,231,14,13,5,5,0 +5197,231,65,4,13,13,0 +5198,231,85,0,22,22,0 +5199,231,21,0,17,17,0 +5200,232,71,63,1,1,6 +5201,232,35,38,2,2,1 +5202,232,56,9,9,9,0 +5203,232,77,10,8,8,0 +5204,232,57,12,6,6,0 +5205,232,63,5,12,12,0 +5206,232,44,11,7,7,1 +5207,232,49,6,11,11,0 +5208,232,73,0,19,19,0 +5209,232,64,1,15,15,0 +5210,232,79,0,20,20,0 +5211,232,55,25,4,4,0 +5212,232,30,26,3,3,1 +5213,232,83,0,18,18,0 +5214,232,69,0,21,21,0 +5215,232,84,2,14,14,0 +5216,232,22,7,10,10,0 +5217,232,50,1,16,16,0 +5218,232,14,14,5,5,0 +5219,232,65,4,13,13,0 +5220,232,85,0,22,22,0 +5221,232,21,0,17,17,0 +5222,233,71,63,1,1,6 +5223,233,35,48,2,2,2 +5224,233,56,9,10,10,0 +5225,233,77,16,5,5,0 +5226,233,57,16,7,7,0 +5227,233,63,5,12,12,0 +5228,233,44,11,8,8,1 +5229,233,49,6,11,11,0 +5230,233,73,0,19,19,0 +5231,233,64,1,15,15,0 +5232,233,79,0,20,20,0 +5233,233,55,25,4,4,0 +5234,233,30,26,3,3,1 +5235,233,83,0,18,18,0 +5236,233,69,0,21,21,0 +5237,233,84,3,14,14,0 +5238,233,22,10,9,9,0 +5239,233,50,1,16,16,0 +5240,233,14,16,6,6,0 +5241,233,65,4,13,13,0 +5242,233,85,0,22,22,0 +5243,233,21,0,17,17,0 +5244,234,71,73,1,1,7 +5245,234,35,52,2,2,2 +5246,234,56,9,10,10,0 +5247,234,77,16,6,6,0 +5248,234,57,16,7,7,0 +5249,234,63,5,12,12,0 +5250,234,44,11,8,8,1 +5251,234,49,6,11,11,0 +5252,234,73,0,19,19,0 +5253,234,64,1,15,15,0 +5254,234,79,0,20,20,0 +5255,234,55,31,3,3,0 +5256,234,30,29,4,4,1 +5257,234,83,0,18,18,0 +5258,234,69,0,21,21,0 +5259,234,84,3,14,14,0 +5260,234,22,11,9,9,0 +5261,234,50,1,16,16,0 +5262,234,14,18,5,5,0 +5263,234,65,4,13,13,0 +5264,234,85,0,22,22,0 +5265,234,21,0,17,17,0 +5266,235,71,79,1,1,7 +5267,235,35,62,2,2,3 +5268,235,56,9,10,10,0 +5269,235,77,16,7,7,0 +5270,235,57,19,5,5,0 +5271,235,63,5,12,12,0 +5272,235,44,13,8,8,1 +5273,235,49,6,11,11,0 +5274,235,73,0,18,18,0 +5275,235,64,1,15,15,0 +5276,235,79,0,17,17,0 +5277,235,55,35,3,3,0 +5278,235,30,29,4,4,1 +5279,235,83,0,20,20,0 +5280,235,69,0,21,21,0 +5281,235,84,3,14,14,0 +5282,235,22,12,9,9,0 +5283,235,50,1,16,16,0 +5284,235,14,18,6,6,0 +5285,235,65,4,13,13,0 +5286,235,85,0,23,23,0 +5287,235,21,0,19,19,0 +5288,235,86,0,22,22,0 +5289,236,71,81,1,1,7 +5290,236,35,68,2,2,3 +5291,236,56,9,10,10,0 +5292,236,77,17,7,7,0 +5293,236,57,23,5,5,0 +5294,236,63,5,12,12,0 +5295,236,44,13,8,8,1 +5296,236,49,6,11,11,0 +5297,236,73,0,18,18,0 +5298,236,64,1,15,15,0 +5299,236,79,0,17,17,0 +5300,236,55,38,4,4,0 +5301,236,30,39,3,3,2 +5302,236,83,0,20,20,0 +5303,236,69,0,21,21,0 +5304,236,84,3,14,14,0 +5305,236,22,12,9,9,0 +5306,236,50,1,16,16,0 +5307,236,14,18,6,6,0 +5308,236,65,4,13,13,0 +5309,236,85,0,23,23,0 +5310,236,21,0,19,19,0 +5311,236,86,0,22,22,0 +5312,237,71,81,1,1,7 +5313,237,35,68,2,2,3 +5314,237,56,9,10,10,0 +5315,237,77,17,7,7,0 +5316,237,57,27,5,5,0 +5317,237,63,5,13,13,0 +5318,237,44,13,9,9,1 +5319,237,49,6,11,11,0 +5320,237,73,0,18,18,0 +5321,237,64,2,15,15,0 +5322,237,79,0,17,17,0 +5323,237,55,44,4,4,0 +5324,237,30,49,3,3,3 +5325,237,83,0,20,20,0 +5326,237,69,0,21,21,0 +5327,237,84,6,12,12,0 +5328,237,22,14,8,8,0 +5329,237,50,1,16,16,0 +5330,237,14,18,6,6,0 +5331,237,65,4,14,14,0 +5332,237,85,0,23,23,0 +5333,237,21,0,19,19,0 +5334,237,86,0,22,22,0 +5335,238,71,87,1,1,7 +5336,238,35,78,2,2,4 +5337,238,56,11,10,10,0 +5338,238,77,18,6,6,0 +5339,238,57,27,5,5,0 +5340,238,63,5,13,13,0 +5341,238,44,13,9,9,1 +5342,238,49,6,11,11,0 +5343,238,73,0,18,18,0 +5344,238,64,2,15,15,0 +5345,238,79,0,17,17,0 +5346,238,55,47,4,4,0 +5347,238,30,53,3,3,3 +5348,238,83,0,20,20,0 +5349,238,69,0,21,21,0 +5350,238,84,6,12,12,0 +5351,238,22,14,8,8,0 +5352,238,50,1,16,16,0 +5353,238,14,18,7,7,0 +5354,238,65,4,14,14,0 +5355,238,85,0,23,23,0 +5356,238,21,0,19,19,0 +5357,238,86,0,22,22,0 +5358,239,71,97,1,1,8 +5359,239,35,78,2,2,4 +5360,239,56,11,10,10,0 +5361,239,77,21,6,6,0 +5362,239,57,31,5,5,0 +5363,239,63,5,13,13,0 +5364,239,44,13,9,9,1 +5365,239,49,7,12,12,0 +5366,239,73,0,18,18,0 +5367,239,64,2,15,15,0 +5368,239,79,0,17,17,0 +5369,239,55,47,4,4,0 +5370,239,30,59,3,3,3 +5371,239,83,0,20,20,0 +5372,239,69,0,21,21,0 +5373,239,84,8,11,11,0 +5374,239,22,14,8,8,0 +5375,239,50,1,16,16,0 +5376,239,14,18,7,7,0 +5377,239,65,4,14,14,0 +5378,239,85,0,23,23,0 +5379,239,21,0,19,19,0 +5380,239,86,0,22,22,0 +10201,240,64,0,10,10,0 +10200,240,85,0,9,9,0 +10199,240,88,0,8,8,0 +10198,240,63,0,7,7,0 +10197,240,87,1,6,6,0 +10196,240,55,2,5,5,0 +10195,240,57,3,4,4,0 +10194,240,77,4,3,3,0 +10193,240,14,6,2,2,0 +10192,240,30,10,1,1,1 +10217,241,93,0,15,15,0 +10216,241,79,0,12,12,0 +10215,241,44,0,10,10,0 +10214,241,49,2,8,8,0 +10213,241,65,3,7,7,0 +10212,241,71,10,2,2,1 +10211,241,64,0,16,16,0 +10210,241,85,0,14,14,0 +10209,241,88,0,13,13,0 +10208,241,63,0,11,11,0 +10207,241,87,1,9,9,0 +10206,241,55,8,3,3,0 +10205,241,57,3,6,6,0 +10204,241,77,5,5,5,0 +10203,241,14,6,4,4,0 +10202,241,30,14,1,1,1 +10238,242,69,0,21,21,0 +10237,242,81,0,20,20,0 +10236,242,94,0,19,19,0 +10235,242,95,0,18,18,0 +10234,242,56,0,13,13,0 +10233,242,93,0,16,16,0 +10232,242,79,0,14,14,0 +10231,242,44,0,10,10,0 +10230,242,49,3,8,8,0 +10229,242,65,3,7,7,0 +10228,242,71,20,1,1,2 +10227,242,64,0,17,17,0 +10226,242,85,0,15,15,0 +10225,242,88,0,12,12,0 +10224,242,63,0,11,11,0 +10223,242,87,1,9,9,0 +10222,242,55,14,3,3,0 +10221,242,57,5,6,6,0 +10220,242,77,9,5,5,0 +10219,242,14,9,4,4,0 +10218,242,30,14,2,2,1 +10263,243,91,0,24,24,0 +10262,243,50,0,23,23,0 +10261,243,84,0,17,17,0 +10260,243,22,0,13,13,0 +10259,243,69,0,25,25,0 +10258,243,81,0,21,21,0 +10257,243,94,0,22,22,0 +10256,243,95,0,20,20,0 +10255,243,56,2,9,9,0 +10254,243,93,0,16,16,0 +10253,243,79,0,15,15,0 +10252,243,44,1,10,10,0 +10251,243,49,3,8,8,0 +10250,243,65,9,5,5,0 +10249,243,71,23,2,2,2 +10248,243,64,0,19,19,0 +10247,243,85,0,18,18,0 +10246,243,88,0,14,14,0 +10245,243,63,0,12,12,0 +10244,243,87,1,11,11,0 +10243,243,55,14,3,3,0 +10242,243,57,5,7,7,0 +10241,243,77,13,4,4,0 +10240,243,14,9,6,6,0 +10239,243,30,24,1,1,2 +10289,244,96,0,16,16,0 +10288,244,91,0,25,25,0 +10287,244,50,0,24,24,0 +10286,244,84,0,20,20,0 +10285,244,22,0,14,14,0 +10284,244,69,0,26,26,0 +10283,244,81,0,18,18,0 +10282,244,94,0,13,13,0 +10281,244,95,0,23,23,0 +10280,244,56,2,10,10,0 +10279,244,93,0,19,19,0 +10278,244,79,0,17,17,0 +10277,244,44,1,11,11,0 +10276,244,49,4,8,8,0 +10275,244,65,12,5,5,0 +10274,244,71,29,2,2,2 +10273,244,64,0,22,22,0 +10272,244,85,0,21,21,0 +10271,244,88,0,15,15,0 +10270,244,63,0,12,12,0 +10269,244,87,3,9,9,0 +10268,244,55,14,4,4,0 +10267,244,57,5,7,7,0 +10266,244,77,17,3,3,0 +10265,244,14,9,6,6,0 +10264,244,30,34,1,1,3 +10316,245,89,0,22,22,0 +10315,245,96,0,18,18,0 +10314,245,91,0,27,27,0 +10313,245,50,0,26,26,0 +10312,245,84,0,20,20,0 +10311,245,22,6,7,7,0 +10310,245,69,0,17,17,0 +10309,245,81,1,13,13,0 +10308,245,94,0,15,15,0 +10307,245,95,0,25,25,0 +10306,245,56,6,8,8,0 +10305,245,93,0,21,21,0 +10304,245,79,0,19,19,0 +10303,245,44,4,10,10,0 +10302,245,49,4,11,11,0 +10301,245,65,12,5,5,0 +10300,245,71,29,2,2,2 +10299,245,64,0,24,24,0 +10298,245,85,0,23,23,0 +10297,245,88,0,16,16,0 +10296,245,63,0,14,14,0 +10295,245,87,3,12,12,0 +10294,245,55,24,3,3,1 +10293,245,57,5,9,9,0 +10292,245,77,17,4,4,0 +10291,245,14,9,6,6,0 +10290,245,30,36,1,1,3 +10344,246,90,0,28,28,0 +10343,246,89,0,22,22,0 +10342,246,96,0,19,19,0 +10341,246,91,0,27,27,0 +10340,246,50,0,26,26,0 +10339,246,84,3,12,12,0 +10338,246,22,7,7,7,0 +10337,246,69,0,18,18,0 +10336,246,81,1,14,14,0 +10335,246,94,0,16,16,0 +10334,246,95,0,25,25,0 +10333,246,56,6,8,8,0 +10332,246,93,0,21,21,0 +10331,246,79,0,20,20,0 +10330,246,44,4,10,10,0 +10329,246,49,4,11,11,0 +10328,246,65,12,6,6,0 +10327,246,71,35,2,2,2 +10326,246,64,0,24,24,0 +10325,246,85,0,23,23,0 +10324,246,88,0,17,17,0 +10323,246,63,0,15,15,0 +10322,246,87,3,13,13,0 +10321,246,55,26,3,3,1 +10320,246,57,5,9,9,0 +10319,246,77,17,4,4,0 +10318,246,14,13,5,5,0 +10317,246,30,46,1,1,4 +10373,247,92,0,26,26,0 +10372,247,90,0,29,29,0 +10371,247,89,0,22,22,0 +10370,247,96,0,17,17,0 +10369,247,91,0,28,28,0 +10368,247,50,0,27,27,0 +10367,247,84,3,13,13,0 +10366,247,22,7,7,7,0 +10365,247,69,0,18,18,0 +10364,247,81,1,14,14,0 +10363,247,94,0,16,16,0 +10362,247,95,0,25,25,0 +10361,247,56,6,9,9,0 +10360,247,93,0,21,21,0 +10359,247,79,0,20,20,0 +10358,247,44,7,8,8,0 +10357,247,49,5,12,12,0 +10356,247,65,22,4,4,1 +10355,247,71,35,2,2,2 +10354,247,64,0,24,24,0 +10353,247,85,0,23,23,0 +10352,247,88,0,19,19,0 +10351,247,63,0,15,15,0 +10350,247,87,5,11,11,0 +10349,247,55,32,3,3,1 +10348,247,57,5,10,10,0 +10347,247,77,17,6,6,0 +10346,247,14,17,5,5,0 +10345,247,30,46,1,1,4 +10402,248,92,0,26,26,0 +10401,248,90,0,29,29,0 +10400,248,89,0,23,23,0 +10399,248,96,2,14,14,0 +10398,248,91,0,28,28,0 +10397,248,50,0,27,27,0 +10396,248,84,3,13,13,0 +10395,248,22,7,7,7,0 +10394,248,69,0,21,21,0 +10393,248,81,1,16,16,0 +10392,248,94,0,18,18,0 +10391,248,95,0,25,25,0 +10390,248,56,6,9,9,0 +10389,248,93,0,22,22,0 +10388,248,79,0,19,19,0 +10387,248,44,7,8,8,0 +10386,248,49,5,12,12,0 +10385,248,65,25,4,4,1 +10384,248,71,35,2,2,2 +10383,248,64,0,24,24,0 +10382,248,85,0,20,20,0 +10381,248,88,1,15,15,0 +10380,248,63,0,17,17,0 +10379,248,87,5,11,11,0 +10378,248,55,32,3,3,1 +10377,248,57,5,10,10,0 +10376,248,77,21,6,6,0 +10375,248,14,23,5,5,0 +10374,248,30,56,1,1,5 +10432,249,83,0,24,24,0 +10431,249,92,0,27,27,0 +10430,249,90,0,30,30,0 +10429,249,89,0,23,23,0 +10428,249,96,2,14,14,0 +10427,249,91,0,29,29,0 +10426,249,50,0,28,28,0 +10425,249,84,3,13,13,0 +10424,249,22,7,8,8,0 +10423,249,69,0,20,20,0 +10422,249,81,1,16,16,0 +10421,249,94,0,18,18,0 +10420,249,95,0,26,26,0 +10419,249,56,6,10,10,0 +10418,249,93,0,22,22,0 +10417,249,79,0,19,19,0 +10416,249,44,8,7,7,0 +10415,249,49,7,9,9,0 +10414,249,65,28,5,5,1 +10413,249,71,45,2,2,3 +10412,249,64,0,25,25,0 +10411,249,85,0,21,21,0 +10410,249,88,1,15,15,0 +10409,249,63,0,17,17,0 +10408,249,87,5,12,12,0 +10407,249,55,32,3,3,1 +10406,249,57,5,11,11,0 +10405,249,77,25,6,6,0 +10404,249,14,29,4,4,0 +10403,249,30,56,1,1,5 +10462,250,83,0,22,22,0 +10461,250,92,0,27,27,0 +10460,250,90,0,30,30,0 +10459,250,89,0,23,23,0 +10458,250,96,2,14,14,0 +10457,250,91,0,29,29,0 +10456,250,50,0,28,28,0 +10455,250,84,7,10,10,0 +10454,250,22,8,8,8,0 +10453,250,69,0,20,20,0 +10452,250,81,1,16,16,0 +10451,250,94,0,18,18,0 +10450,250,95,0,26,26,0 +10449,250,56,6,12,12,0 +10448,250,93,0,24,24,0 +10447,250,79,0,19,19,0 +10446,250,44,8,9,9,0 +10445,250,49,10,7,7,0 +10444,250,65,28,5,5,1 +10443,250,71,51,2,2,3 +10442,250,64,0,25,25,0 +10441,250,85,0,21,21,0 +10440,250,88,1,15,15,0 +10439,250,63,0,17,17,0 +10438,250,87,7,11,11,0 +10437,250,55,32,3,3,1 +10436,250,57,5,13,13,0 +10435,250,77,25,6,6,0 +10434,250,14,29,4,4,0 +10433,250,30,66,1,1,6 +10493,251,97,0,20,20,0 +10492,251,83,0,25,25,0 +10491,251,92,0,28,28,0 +10490,251,90,0,31,31,0 +10489,251,89,0,22,22,0 +10488,251,96,3,14,14,0 +10487,251,91,0,30,30,0 +10486,251,50,0,29,29,0 +10485,251,84,7,12,12,0 +10484,251,22,8,10,10,0 +10483,251,69,0,21,21,0 +10482,251,81,1,17,17,0 +10481,251,94,0,18,18,0 +10480,251,95,0,27,27,0 +10479,251,56,6,13,13,0 +10478,251,93,0,26,26,0 +10477,251,79,0,19,19,0 +10476,251,44,8,11,11,0 +10475,251,49,14,7,7,0 +10474,251,65,38,3,3,2 +10473,251,71,51,2,2,3 +10472,251,64,0,24,24,0 +10471,251,85,0,23,23,0 +10470,251,88,1,16,16,0 +10469,251,63,2,15,15,0 +10468,251,87,10,9,9,0 +10467,251,55,32,4,4,1 +10466,251,57,11,8,8,0 +10465,251,77,25,6,6,0 +10464,251,14,29,5,5,0 +10463,251,30,66,1,1,6 +10524,252,97,0,20,20,0 +10523,252,83,0,25,25,0 +10522,252,92,0,28,28,0 +10521,252,90,0,31,31,0 +10520,252,89,0,22,22,0 +10519,252,96,3,14,14,0 +10518,252,91,0,30,30,0 +10517,252,50,0,29,29,0 +10516,252,84,7,12,12,0 +10515,252,22,8,10,10,0 +10514,252,69,0,21,21,0 +10513,252,81,1,17,17,0 +10512,252,94,0,18,18,0 +10511,252,95,0,27,27,0 +10510,252,56,6,13,13,0 +10509,252,93,0,26,26,0 +10508,252,79,0,19,19,0 +10507,252,44,8,11,11,0 +10506,252,49,15,7,7,0 +10505,252,65,38,4,4,2 +10504,252,71,55,2,2,3 +10503,252,64,0,24,24,0 +10502,252,85,0,23,23,0 +10501,252,88,1,16,16,0 +10500,252,63,2,15,15,0 +10499,252,87,10,9,9,0 +10498,252,55,34,5,5,1 +10497,252,57,11,8,8,0 +10496,252,77,28,6,6,0 +10495,252,14,39,3,3,1 +10494,252,30,72,1,1,6 +10557,253,98,0,33,33,0 +10556,253,99,0,32,32,0 +10555,253,97,0,20,20,0 +10554,253,83,0,24,24,0 +10553,253,92,0,28,28,0 +10552,253,90,0,31,31,0 +10551,253,89,0,22,22,0 +10550,253,96,3,14,14,0 +10549,253,91,0,30,30,0 +10548,253,50,0,29,29,0 +10547,253,84,7,12,12,0 +10546,253,22,11,9,9,0 +10545,253,69,0,21,21,0 +10544,253,81,1,17,17,0 +10543,253,94,0,18,18,0 +10542,253,95,0,27,27,0 +10541,253,56,7,13,13,0 +10540,253,93,0,26,26,0 +10539,253,79,0,19,19,0 +10538,253,44,8,11,11,0 +10537,253,49,15,7,7,0 +10536,253,65,40,4,4,2 +10535,253,71,55,2,2,3 +10534,253,64,0,25,25,0 +10533,253,85,0,23,23,0 +10532,253,88,1,16,16,0 +10531,253,63,2,15,15,0 +10530,253,87,10,10,10,0 +10529,253,55,40,5,5,1 +10528,253,57,11,8,8,0 +10527,253,77,28,6,6,0 +10526,253,14,43,3,3,1 +10525,253,30,82,1,1,7 +10591,254,76,0,27,27,0 +10590,254,98,0,34,34,0 +10589,254,99,0,33,33,0 +10588,254,97,0,20,20,0 +10587,254,83,0,24,24,0 +10586,254,92,0,29,29,0 +10585,254,90,0,32,32,0 +10584,254,89,0,22,22,0 +10583,254,96,3,14,14,0 +10582,254,91,0,31,31,0 +10581,254,50,0,30,30,0 +10580,254,84,7,12,12,0 +10579,254,22,11,9,9,0 +10578,254,69,0,21,21,0 +10577,254,81,1,17,17,0 +10576,254,94,0,18,18,0 +10575,254,95,0,28,28,0 +10574,254,56,7,13,13,0 +10573,254,93,0,26,26,0 +10572,254,79,0,19,19,0 +10571,254,44,8,11,11,0 +10570,254,49,15,7,7,0 +10569,254,65,41,5,5,2 +10568,254,71,59,2,2,3 +10567,254,64,0,25,25,0 +10566,254,85,0,23,23,0 +10565,254,88,1,16,16,0 +10564,254,63,2,15,15,0 +10563,254,87,10,10,10,0 +10562,254,55,42,4,4,1 +10561,254,57,11,8,8,0 +10560,254,77,31,6,6,0 +10559,254,14,49,3,3,1 +10558,254,30,92,1,1,8 +10625,255,76,0,28,28,0 +10624,255,98,0,34,34,0 +10623,255,99,0,33,33,0 +10622,255,97,0,20,20,0 +10621,255,83,0,24,24,0 +10620,255,92,0,30,30,0 +10619,255,90,0,32,32,0 +10618,255,89,0,22,22,0 +10617,255,96,3,15,15,0 +10616,255,91,0,27,27,0 +10615,255,50,0,31,31,0 +10614,255,84,7,13,13,0 +10613,255,22,11,9,9,0 +10612,255,69,0,21,21,0 +10611,255,81,1,17,17,0 +10610,255,94,0,18,18,0 +10609,255,95,0,29,29,0 +10608,255,56,10,10,10,0 +10607,255,93,0,26,26,0 +10606,255,79,0,19,19,0 +10605,255,44,10,11,11,0 +10604,255,49,15,8,8,0 +10603,255,65,45,4,4,2 +10602,255,71,59,2,2,3 +10601,255,64,0,25,25,0 +10600,255,85,0,23,23,0 +10599,255,88,1,16,16,0 +10598,255,63,3,14,14,0 +10597,255,87,10,12,12,0 +10596,255,55,42,5,5,1 +10595,255,57,17,7,7,0 +10594,255,77,31,6,6,0 +10593,255,14,49,3,3,1 +10592,255,30,102,1,1,9 +10659,256,76,0,29,29,0 +10658,256,98,0,34,34,0 +10657,256,99,0,33,33,0 +10656,256,97,0,22,22,0 +10655,256,83,1,18,18,0 +10654,256,92,0,26,26,0 +10653,256,90,0,32,32,0 +10652,256,89,0,24,24,0 +10651,256,96,3,16,16,0 +10650,256,91,0,28,28,0 +10649,256,50,0,31,31,0 +10648,256,84,7,13,13,0 +10647,256,22,11,11,11,0 +10646,256,69,0,23,23,0 +10645,256,81,5,14,14,0 +10644,256,94,0,19,19,0 +10643,256,95,0,30,30,0 +10642,256,56,10,12,12,0 +10641,256,93,0,27,27,0 +10640,256,79,0,20,20,0 +10639,256,44,16,8,8,0 +10638,256,49,15,9,9,0 +10637,256,65,45,4,4,2 +10636,256,71,69,2,2,4 +10635,256,64,0,21,21,0 +10634,256,85,0,25,25,0 +10633,256,88,1,17,17,0 +10632,256,63,5,15,15,0 +10631,256,87,13,10,10,0 +10630,256,55,42,5,5,1 +10629,256,57,17,7,7,0 +10628,256,77,31,6,6,0 +10627,256,14,49,3,3,1 +10626,256,30,102,1,1,9 +66036,257,101,0,12,12,0 +66035,257,44,0,11,11,0 +66034,257,83,0,10,10,0 +66033,257,100,0,9,9,0 +66032,257,94,0,8,8,0 +66031,257,65,0,7,7,0 +66030,257,91,1,6,6,0 +66029,257,79,2,5,5,0 +66028,257,22,3,4,4,0 +66027,257,55,4,3,3,0 +66026,257,71,6,2,2,0 +66025,257,30,10,1,1,1 +66069,258,103,0,15,15,0 +66068,258,50,0,23,23,0 +66067,258,56,0,22,22,0 +66066,258,84,0,20,20,0 +66065,258,102,0,19,19,0 +66064,258,101,0,17,17,0 +66063,258,44,0,14,14,0 +66062,258,83,0,12,12,0 +66061,258,100,1,9,9,0 +66060,258,94,0,13,13,0 +66059,258,65,0,11,11,0 +66058,258,91,1,10,10,0 +66057,258,79,2,8,8,0 +66056,258,22,7,2,2,0 +66055,258,55,4,5,5,0 +66054,258,71,6,3,3,0 +66053,258,30,20,1,1,2 +66103,259,57,4,6,6,0 +66102,259,49,2,11,11,0 +66101,259,104,3,10,10,0 +66100,259,87,0,18,18,0 +66099,259,103,0,19,19,0 +66098,259,50,0,27,27,0 +66097,259,56,0,26,26,0 +66096,259,84,0,15,15,0 +66095,259,102,0,23,23,0 +66094,259,101,0,21,21,0 +66093,259,44,0,17,17,0 +66092,259,83,0,14,14,0 +66091,259,100,1,12,12,0 +66090,259,94,0,16,16,0 +66089,259,65,0,13,13,0 +66088,259,91,4,8,8,0 +66087,259,79,4,9,9,0 +66086,259,22,7,3,3,0 +66085,259,55,4,7,7,0 +66084,259,71,7,2,2,0 +66083,259,30,30,1,1,3 +66139,260,106,0,20,20,0 +66138,260,77,10,2,2,0 +66137,260,81,0,26,26,0 +66136,260,105,1,15,15,0 +66135,260,57,4,8,8,0 +66134,260,49,2,13,13,0 +66133,260,104,3,11,11,0 +66132,260,87,0,22,22,0 +66131,260,103,0,23,23,0 +66130,260,50,0,31,31,0 +66129,260,56,0,30,30,0 +66128,260,84,6,5,5,0 +66127,260,102,0,27,27,0 +66126,260,101,0,25,25,0 +66125,260,44,0,21,21,0 +66124,260,83,0,18,18,0 +66123,260,100,1,14,14,0 +66122,260,94,0,19,19,0 +66121,260,65,0,16,16,0 +66120,260,91,4,9,9,0 +66119,260,79,4,10,10,0 +66118,260,22,7,4,4,0 +66117,260,55,6,7,7,0 +66116,260,71,7,3,3,0 +66115,260,30,40,1,1,4 +66173,261,107,0,27,27,0 +66172,261,92,0,31,31,0 +66171,261,106,0,24,24,0 +66170,261,77,10,3,3,0 +66169,261,81,0,28,28,0 +66168,261,105,1,17,17,0 +66167,261,57,4,9,9,0 +66166,261,49,2,14,14,0 +66165,261,104,3,12,12,0 +66164,261,87,4,8,8,0 +66163,261,103,0,23,23,0 +66162,261,50,0,32,32,0 +66161,261,56,1,18,18,0 +66160,261,84,6,6,6,0 +66159,261,102,0,29,29,0 +66158,261,101,0,26,26,0 +66157,261,44,0,20,20,0 +66156,261,83,0,22,22,0 +66155,261,100,1,16,16,0 +66154,261,94,2,15,15,0 +66153,261,65,0,19,19,0 +66152,261,91,4,10,10,0 +66151,261,79,4,11,11,0 +66150,261,22,7,5,5,0 +66149,261,55,9,4,4,0 +66148,261,71,17,2,2,1 +66147,261,30,46,1,1,4 +66209,262,108,0,31,31,0 +66208,262,107,0,28,28,0 +66207,262,92,0,32,32,0 +66206,262,106,0,25,25,0 +66205,262,77,13,3,3,0 +66204,262,81,0,29,29,0 +66203,262,105,1,19,19,0 +66202,262,57,4,9,9,0 +66201,262,49,2,14,14,0 +66200,262,104,3,12,12,0 +66199,262,87,4,8,8,0 +66198,262,103,0,24,24,0 +66197,262,50,0,33,33,0 +66196,262,56,1,20,20,0 +66195,262,84,6,6,6,0 +66194,262,102,0,30,30,0 +66193,262,101,0,27,27,0 +66192,262,44,0,22,22,0 +66191,262,83,0,23,23,0 +66190,262,100,1,18,18,0 +66189,262,94,2,15,15,0 +66188,262,65,0,21,21,0 +66187,262,91,4,10,10,0 +66186,262,79,4,11,11,0 +66185,262,22,7,5,5,0 +66184,262,55,13,4,4,0 +66183,262,71,23,2,2,1 +66182,262,30,56,1,1,5 +66245,263,88,0,36,36,0 +66244,263,108,0,32,32,0 +66243,263,107,0,29,29,0 +66242,263,92,0,33,33,0 +66241,263,106,0,25,25,0 +66240,263,77,17,3,3,0 +66239,263,81,0,30,30,0 +66238,263,105,1,19,19,0 +66237,263,57,4,10,10,0 +66236,263,49,5,8,8,0 +66235,263,104,3,15,15,0 +66234,263,87,4,9,9,0 +66233,263,103,0,24,24,0 +66232,263,50,0,35,35,0 +66231,263,56,1,20,20,0 +66230,263,84,6,6,6,0 +66229,263,102,0,31,31,0 +66228,263,101,0,28,28,0 +66227,263,44,0,22,22,0 +66226,263,83,0,23,23,0 +66225,263,100,1,18,18,0 +66224,263,94,4,13,13,0 +66223,263,65,0,21,21,0 +66222,263,91,4,11,11,0 +66221,263,79,4,14,14,0 +66220,263,22,7,5,5,0 +66219,263,55,13,4,4,0 +66218,263,71,29,2,2,1 +66217,263,30,66,1,1,6 +66283,264,78,6,8,8,0 +66282,264,88,0,36,36,0 +66281,264,108,0,33,33,0 +66280,264,107,0,30,30,0 +66279,264,92,0,34,34,0 +66278,264,106,0,25,25,0 +66277,264,77,17,4,4,0 +66276,264,81,0,31,31,0 +66275,264,105,1,19,19,0 +66274,264,57,8,6,6,0 +66273,264,49,5,9,9,0 +66272,264,104,3,16,16,0 +66271,264,87,4,11,11,0 +66270,264,103,0,24,24,0 +66269,264,50,0,26,26,0 +66268,264,56,1,20,20,0 +66267,264,84,6,7,7,0 +66266,264,102,0,32,32,0 +66265,264,101,0,29,29,0 +66264,264,44,0,22,22,0 +66263,264,83,0,23,23,0 +66262,264,100,1,18,18,0 +66261,264,94,4,14,14,0 +66260,264,65,0,21,21,0 +66259,264,91,4,12,12,0 +66258,264,79,5,10,10,0 +66257,264,22,10,5,5,0 +66256,264,55,19,3,3,0 +66255,264,71,39,2,2,2 +66254,264,30,66,1,1,6 +66321,265,110,4,16,16,0 +66320,265,78,6,9,9,0 +66319,265,88,0,36,36,0 +66318,265,108,0,33,33,0 +66317,265,107,0,31,31,0 +66316,265,92,0,34,34,0 +66315,265,106,0,25,25,0 +66314,265,77,27,3,3,1 +66313,265,81,2,19,19,0 +66312,265,105,1,22,22,0 +66311,265,57,8,6,6,0 +66310,265,49,5,11,11,0 +66309,265,104,6,10,10,0 +66308,265,87,4,14,14,0 +66307,265,103,4,13,13,0 +66306,265,50,0,27,27,0 +66305,265,56,1,23,23,0 +66304,265,84,6,8,8,0 +66303,265,102,0,32,32,0 +66302,265,101,0,30,30,0 +66301,265,44,6,7,7,0 +66300,265,83,0,26,26,0 +66299,265,100,2,20,20,0 +66298,265,94,4,17,17,0 +66297,265,65,0,24,24,0 +66296,265,91,4,15,15,0 +66295,265,79,5,12,12,0 +66294,265,22,10,5,5,0 +66293,265,55,19,4,4,0 +66292,265,71,39,2,2,2 +66291,265,30,66,1,1,6 +66358,266,110,4,17,17,0 +66357,266,78,6,9,9,0 +66356,266,88,0,36,36,0 +66355,266,108,0,33,33,0 +66354,266,107,0,31,31,0 +66353,266,92,0,34,34,0 +66352,266,106,0,26,26,0 +66351,266,77,27,3,3,1 +66350,266,81,2,20,20,0 +66349,266,105,1,22,22,0 +66348,266,57,8,7,7,0 +66347,266,49,5,12,12,0 +66346,266,104,6,11,11,0 +66345,266,87,6,10,10,0 +66344,266,103,4,14,14,0 +66343,266,50,4,15,15,0 +66342,266,56,1,24,24,0 +66341,266,84,9,6,6,0 +66340,266,102,0,32,32,0 +66339,266,101,0,30,30,0 +66338,266,44,7,8,8,0 +66337,266,83,0,27,27,0 +66336,266,100,2,21,21,0 +66335,266,94,4,18,18,0 +66334,266,65,0,25,25,0 +66333,266,91,4,16,16,0 +66332,266,79,5,13,13,0 +66331,266,22,10,5,5,0 +66330,266,55,19,4,4,0 +66329,266,71,45,2,2,2 +66328,266,30,76,1,1,7 +66396,267,110,4,18,18,0 +66395,267,78,6,12,12,0 +66394,267,88,0,36,36,0 +66393,267,108,0,33,33,0 +66392,267,107,0,31,31,0 +66391,267,92,0,34,34,0 +66390,267,106,0,26,26,0 +66389,267,77,27,3,3,1 +66388,267,81,3,20,20,0 +66387,267,105,1,22,22,0 +66386,267,57,14,5,5,0 +66385,267,49,5,14,14,0 +66384,267,104,6,13,13,0 +66383,267,87,8,9,9,0 +66382,267,103,4,16,16,0 +66381,267,50,8,8,8,0 +66380,267,56,1,24,24,0 +66379,267,84,9,7,7,0 +66378,267,102,0,32,32,0 +66377,267,101,0,30,30,0 +66376,267,44,7,10,10,0 +66375,267,83,0,27,27,0 +66374,267,100,2,21,21,0 +66373,267,94,4,19,19,0 +66372,267,65,0,25,25,0 +66371,267,91,4,17,17,0 +66370,267,79,5,15,15,0 +66369,267,22,10,6,6,0 +66368,267,55,19,4,4,0 +66367,267,71,55,2,2,3 +66366,267,30,76,1,1,7 +66434,268,110,4,18,18,0 +66433,268,78,6,12,12,0 +66432,268,88,0,36,36,0 +66431,268,108,0,33,33,0 +66430,268,107,0,31,31,0 +66429,268,92,0,34,34,0 +66428,268,106,0,26,26,0 +66427,268,77,33,3,3,1 +66426,268,81,3,20,20,0 +66425,268,105,1,22,22,0 +66424,268,57,18,5,5,0 +66423,268,49,5,14,14,0 +66422,268,104,6,13,13,0 +66421,268,87,8,9,9,0 +66420,268,103,4,16,16,0 +66419,268,50,8,8,8,0 +66418,268,56,1,24,24,0 +66417,268,84,11,7,7,0 +66416,268,102,0,32,32,0 +66415,268,101,0,30,30,0 +66414,268,44,7,11,11,0 +66413,268,83,0,27,27,0 +66412,268,100,2,21,21,0 +66411,268,94,4,19,19,0 +66410,268,65,0,25,25,0 +66409,268,91,4,17,17,0 +66408,268,79,5,15,15,0 +66407,268,22,13,6,6,0 +66406,268,55,19,4,4,0 +66405,268,71,65,2,2,4 +66404,268,30,76,1,1,7 +66475,269,70,0,29,29,0 +66474,269,109,1,23,23,0 +66473,269,110,4,18,18,0 +66472,269,78,6,12,12,0 +66471,269,88,0,38,38,0 +66470,269,108,0,35,35,0 +66469,269,107,0,31,31,0 +66468,269,92,0,36,36,0 +66467,269,106,0,26,26,0 +66466,269,77,33,3,3,1 +66465,269,81,3,20,20,0 +66464,269,105,1,22,22,0 +66463,269,57,22,4,4,0 +66462,269,49,5,14,14,0 +66461,269,104,6,13,13,0 +66460,269,87,8,10,10,0 +66459,269,103,4,16,16,0 +66458,269,50,10,9,9,0 +66457,269,56,1,24,24,0 +66456,269,84,12,8,8,0 +66455,269,102,0,34,34,0 +66454,269,101,0,30,30,0 +66453,269,44,7,11,11,0 +66452,269,83,0,27,27,0 +66451,269,100,2,21,21,0 +66450,269,94,4,19,19,0 +66449,269,65,0,25,25,0 +66448,269,91,4,17,17,0 +66447,269,79,5,15,15,0 +66446,269,22,16,6,6,0 +66445,269,55,19,5,5,0 +66444,269,71,75,2,2,5 +66443,269,30,76,1,1,7 +66516,270,14,14,7,7,0 +66515,270,70,0,29,29,0 +66514,270,109,1,24,24,0 +66513,270,110,4,19,19,0 +66512,270,78,6,12,12,0 +66511,270,88,0,39,39,0 +66510,270,108,0,36,36,0 +66509,270,107,0,31,31,0 +66508,270,92,0,37,37,0 +66507,270,106,0,26,26,0 +66506,270,77,35,3,3,1 +66505,270,81,3,21,21,0 +66504,270,105,1,23,23,0 +66503,270,57,26,4,4,0 +66502,270,49,6,14,14,0 +66501,270,104,6,13,13,0 +66500,270,87,8,10,10,0 +66499,270,103,4,16,16,0 +66498,270,50,10,9,9,0 +66497,270,56,4,17,17,0 +66496,270,84,12,8,8,0 +66495,270,102,0,35,35,0 +66494,270,101,0,30,30,0 +66493,270,44,7,11,11,0 +66492,270,83,0,27,27,0 +66491,270,100,2,22,22,0 +66490,270,94,4,20,20,0 +66489,270,65,0,25,25,0 +66488,270,91,4,18,18,0 +66487,270,79,5,15,15,0 +66486,270,22,16,6,6,0 +66485,270,55,19,5,5,0 +66484,270,71,81,2,2,5 +66483,270,30,86,1,1,8 +66560,271,111,0,29,29,0 +66559,271,85,0,45,45,0 +66558,271,14,14,7,7,0 +66557,271,70,0,30,30,0 +66556,271,109,1,25,25,0 +66555,271,110,4,19,19,0 +66554,271,78,6,13,13,0 +66553,271,88,0,41,41,0 +66552,271,108,0,38,38,0 +66551,271,107,0,33,33,0 +66550,271,92,0,39,39,0 +66549,271,106,0,27,27,0 +66548,271,77,35,3,3,1 +66547,271,81,3,22,22,0 +66546,271,105,1,24,24,0 +66545,271,57,26,4,4,0 +66544,271,49,7,12,12,0 +66543,271,104,6,14,14,0 +66542,271,87,8,10,10,0 +66541,271,103,4,17,17,0 +66540,271,50,10,9,9,0 +66539,271,56,6,15,15,0 +66538,271,84,12,8,8,0 +66537,271,102,0,37,37,0 +66536,271,101,0,31,31,0 +66535,271,44,7,11,11,0 +66534,271,83,0,28,28,0 +66533,271,100,2,23,23,0 +66532,271,94,4,20,20,0 +66531,271,65,0,26,26,0 +66530,271,91,4,18,18,0 +66529,271,79,5,16,16,0 +66528,271,22,16,6,6,0 +66527,271,55,23,5,5,0 +66526,271,71,91,2,2,6 +66525,271,30,92,1,1,8 +66015,272,95,13,9,9,1 +66014,272,111,0,29,29,0 +66013,272,85,0,46,46,0 +66012,272,14,14,8,8,0 +66011,272,70,0,30,30,0 +66010,272,109,1,24,24,0 +66009,272,110,4,20,20,0 +66008,272,78,6,14,14,0 +66007,272,88,0,42,42,0 +66006,272,108,0,39,39,0 +66005,272,107,0,34,34,0 +66004,272,92,0,40,40,0 +66003,272,106,0,27,27,0 +66002,272,77,41,3,3,1 +66001,272,81,3,22,22,0 +66000,272,105,1,25,25,0 +65999,272,57,26,4,4,0 +65998,272,49,7,13,13,0 +65997,272,104,6,15,15,0 +65996,272,87,8,12,12,0 +65995,272,103,4,18,18,0 +65994,272,50,10,10,10,0 +65993,272,56,6,16,16,0 +65992,272,84,16,7,7,0 +65991,272,102,0,38,38,0 +65990,272,101,0,31,31,0 +65989,272,44,9,11,11,0 +65988,272,83,0,28,28,0 +65987,272,100,2,23,23,0 +65986,272,94,4,21,21,0 +65985,272,65,0,26,26,0 +65984,272,91,4,19,19,0 +65983,272,79,5,17,17,0 +65982,272,22,19,6,6,0 +65981,272,55,24,5,5,0 +65980,272,71,91,2,2,6 +65979,272,30,92,1,1,8 +9357,273,118,0,7,7,0 +9356,273,77,1,6,6,0 +9355,273,109,2,5,5,0 +9354,273,104,3,4,4,0 +9353,273,87,4,3,3,0 +9352,273,102,6,2,2,0 +9351,273,117,10,1,1,1 +9373,274,69,0,16,16,0 +9372,274,105,0,15,15,0 +9371,274,100,0,14,14,0 +9370,274,55,0,13,13,0 +9369,274,112,0,12,12,0 +9368,274,70,1,10,10,0 +9367,274,65,3,7,7,0 +9366,274,30,4,5,5,0 +9365,274,71,6,3,3,0 +9364,274,118,0,11,11,0 +9363,274,77,1,9,9,0 +9362,274,109,2,8,8,0 +9361,274,104,3,6,6,0 +9360,274,87,6,4,4,0 +9359,274,102,16,1,1,1 +9358,274,117,10,2,2,1 +9392,275,22,0,17,17,0 +9391,275,120,1,11,11,0 +9390,275,119,2,9,9,0 +9389,275,69,0,19,19,0 +9388,275,105,0,18,18,0 +9387,275,100,0,16,16,0 +9386,275,55,0,15,15,0 +9385,275,112,0,14,14,0 +9384,275,70,1,10,10,0 +9383,275,65,6,5,5,0 +9382,275,30,4,6,6,0 +9381,275,71,12,3,3,0 +9380,275,118,0,13,13,0 +9379,275,77,1,12,12,0 +9378,275,109,2,8,8,0 +9377,275,104,3,7,7,0 +9376,275,87,6,4,4,0 +9375,275,102,26,1,1,2 +9374,275,117,14,2,2,1 +9413,276,88,0,19,19,0 +9412,276,84,4,8,8,0 +9411,276,22,0,20,20,0 +9410,276,120,2,12,12,0 +9409,276,119,2,11,11,0 +9408,276,69,0,16,16,0 +9407,276,105,0,21,21,0 +9406,276,100,0,18,18,0 +9405,276,55,0,17,17,0 +9404,276,112,2,10,10,0 +9403,276,70,1,13,13,0 +9402,276,65,6,6,6,0 +9401,276,30,10,4,4,0 +9400,276,71,12,3,3,0 +9399,276,118,0,15,15,0 +9398,276,77,1,14,14,0 +9397,276,109,5,7,7,0 +9396,276,104,3,9,9,0 +9395,276,87,6,5,5,0 +9394,276,102,26,1,1,2 +9393,276,117,24,2,2,2 +9436,277,123,0,23,23,0 +9435,277,121,2,12,12,0 +9434,277,88,0,20,20,0 +9433,277,84,4,9,9,0 +9432,277,22,0,21,21,0 +9431,277,120,2,13,13,0 +9430,277,119,5,8,8,0 +9429,277,69,0,17,17,0 +9428,277,105,0,22,22,0 +9427,277,100,0,19,19,0 +9426,277,55,0,18,18,0 +9425,277,112,2,11,11,0 +9424,277,70,1,15,15,0 +9423,277,65,6,6,6,0 +9422,277,30,14,3,3,0 +9421,277,71,12,4,4,0 +9420,277,118,0,16,16,0 +9419,277,77,2,14,14,0 +9418,277,109,5,7,7,0 +9417,277,104,3,10,10,0 +9416,277,87,6,5,5,0 +9415,277,102,32,2,2,2 +9414,277,117,34,1,1,3 +9461,278,91,0,25,25,0 +9460,278,110,0,22,22,0 +9459,278,123,0,24,24,0 +9458,278,121,2,13,13,0 +9457,278,88,0,21,21,0 +9456,278,84,5,7,7,0 +9455,278,22,0,20,20,0 +9454,278,120,2,14,14,0 +9453,278,119,5,10,10,0 +9452,278,69,0,18,18,0 +9451,278,105,0,23,23,0 +9450,278,100,0,19,19,0 +9449,278,55,4,11,11,0 +9448,278,112,2,12,12,0 +9447,278,70,1,16,16,0 +9446,278,65,6,6,6,0 +9445,278,30,14,4,4,0 +9444,278,71,18,3,3,0 +9443,278,118,0,17,17,0 +9442,278,77,2,15,15,0 +9441,278,109,5,9,9,0 +9440,278,104,5,8,8,0 +9439,278,87,6,5,5,0 +9438,278,102,42,1,1,3 +9437,278,117,37,2,2,3 +9513,280,79,0,26,26,0 +9512,280,91,1,17,17,0 +9487,279,79,0,26,26,0 +9486,279,91,1,17,17,0 +9485,279,110,0,23,23,0 +9484,279,123,0,25,25,0 +9483,279,121,2,14,14,0 +9482,279,88,0,22,22,0 +9481,279,84,7,5,5,0 +9480,279,22,0,21,21,0 +9479,279,120,2,15,15,0 +9478,279,119,5,10,10,0 +9477,279,69,0,19,19,0 +9476,279,105,0,24,24,0 +9475,279,100,0,20,20,0 +9474,279,55,4,12,12,0 +9473,279,112,2,13,13,0 +9472,279,70,1,16,16,0 +9471,279,65,6,7,7,0 +9470,279,30,20,4,4,0 +9469,279,71,22,3,3,0 +9468,279,118,0,18,18,0 +9467,279,77,5,11,11,0 +9466,279,109,5,9,9,0 +9465,279,104,5,8,8,0 +9464,279,87,6,6,6,0 +9463,279,102,42,2,2,3 +9462,279,117,47,1,1,4 +9511,280,110,0,23,23,0 +9510,280,123,0,24,24,0 +9509,280,121,3,13,13,0 +9508,280,88,0,22,22,0 +9507,280,84,9,5,5,0 +9506,280,22,0,18,18,0 +9505,280,120,2,15,15,0 +9504,280,119,5,10,10,0 +9503,280,69,0,20,20,0 +9502,280,105,0,25,25,0 +9501,280,100,0,21,21,0 +9500,280,55,4,12,12,0 +9499,280,112,2,14,14,0 +9498,280,70,1,16,16,0 +9497,280,65,6,7,7,0 +9496,280,30,24,4,4,0 +9495,280,71,28,3,3,0 +9494,280,118,0,19,19,0 +9493,280,77,5,11,11,0 +9492,280,109,5,9,9,0 +9491,280,104,5,8,8,0 +9490,280,87,6,6,6,0 +9489,280,102,45,2,2,3 +9488,280,117,57,1,1,5 +9539,281,79,0,26,26,0 +9538,281,91,1,18,18,0 +9537,281,110,0,23,23,0 +9536,281,123,0,24,24,0 +9535,281,121,3,13,13,0 +9534,281,88,0,22,22,0 +9533,281,84,9,6,6,0 +9532,281,22,0,19,19,0 +9531,281,120,2,15,15,0 +9530,281,119,9,5,5,0 +9529,281,69,0,20,20,0 +9528,281,105,0,25,25,0 +9527,281,100,0,21,21,0 +9526,281,55,4,12,12,0 +9525,281,112,2,14,14,0 +9524,281,70,1,16,16,0 +9523,281,65,9,7,7,0 +9522,281,30,30,3,3,0 +9521,281,71,28,4,4,0 +9520,281,118,1,17,17,0 +9519,281,77,5,11,11,0 +9518,281,109,5,10,10,0 +9517,281,104,5,9,9,0 +9516,281,87,6,8,8,0 +9515,281,102,47,2,2,3 +9514,281,117,67,1,1,6 +9566,282,94,0,27,27,0 +9565,282,79,0,26,26,0 +9564,282,91,1,18,18,0 +9563,282,110,0,23,23,0 +9562,282,123,0,24,24,0 +9561,282,121,3,13,13,0 +9560,282,88,0,22,22,0 +9559,282,84,9,7,7,0 +9558,282,22,0,19,19,0 +9557,282,120,2,15,15,0 +9556,282,119,11,5,5,0 +9555,282,69,0,20,20,0 +9554,282,105,0,25,25,0 +9553,282,100,0,21,21,0 +9552,282,55,4,12,12,0 +9551,282,112,2,14,14,0 +9550,282,70,1,16,16,0 +9549,282,65,9,8,8,0 +9548,282,30,36,3,3,0 +9547,282,71,28,4,4,0 +9546,282,118,1,17,17,0 +9545,282,77,6,9,9,0 +9544,282,109,5,11,11,0 +9543,282,104,5,10,10,0 +9542,282,87,10,6,6,0 +9541,282,102,50,2,2,3 +9540,282,117,77,1,1,7 +9593,283,94,0,27,27,0 +9592,283,79,0,25,25,0 +9591,283,91,2,16,16,0 +9590,283,110,0,24,24,0 +9589,283,123,0,23,23,0 +9588,283,121,3,14,14,0 +9587,283,88,0,22,22,0 +9586,283,84,11,6,6,0 +9585,283,22,0,19,19,0 +9584,283,120,2,17,17,0 +9583,283,119,17,5,5,0 +9582,283,69,0,20,20,0 +9581,283,105,0,26,26,0 +9580,283,100,0,21,21,0 +9579,283,55,4,12,12,0 +9578,283,112,2,15,15,0 +9577,283,70,1,18,18,0 +9576,283,65,9,9,9,0 +9575,283,30,36,4,4,0 +9574,283,71,38,3,3,1 +9573,283,118,4,13,13,0 +9572,283,77,10,8,8,0 +9571,283,109,5,11,11,0 +9570,283,104,5,10,10,0 +9569,283,87,10,7,7,0 +9568,283,102,50,2,2,3 +9567,283,117,77,1,1,7 +9620,284,94,0,27,27,0 +9619,284,79,0,25,25,0 +9618,284,91,2,16,16,0 +9617,284,110,0,24,24,0 +9616,284,123,0,23,23,0 +9615,284,121,3,14,14,0 +9614,284,88,0,22,22,0 +9613,284,84,11,6,6,0 +9612,284,22,0,19,19,0 +9611,284,120,2,17,17,0 +9610,284,119,18,5,5,0 +9609,284,69,0,20,20,0 +9608,284,105,0,26,26,0 +9607,284,100,0,21,21,0 +9606,284,55,4,12,12,0 +9605,284,112,2,15,15,0 +9604,284,70,1,18,18,0 +9603,284,65,11,7,7,0 +9602,284,30,42,4,4,0 +9601,284,71,48,3,3,2 +9600,284,118,4,13,13,0 +9599,284,77,10,9,9,0 +9598,284,109,5,11,11,0 +9597,284,104,5,10,10,0 +9596,284,87,10,8,8,0 +9595,284,102,53,2,2,3 +9594,284,117,81,1,1,7 +9648,285,83,0,28,28,0 +9647,285,94,0,22,22,0 +9646,285,79,0,26,26,0 +9645,285,91,5,14,14,0 +9644,285,110,0,25,25,0 +9643,285,123,0,24,24,0 +9642,285,121,7,11,11,0 +9641,285,88,0,23,23,0 +9640,285,84,11,6,6,0 +9639,285,22,0,20,20,0 +9638,285,120,2,17,17,0 +9637,285,119,20,5,5,0 +9636,285,69,0,21,21,0 +9635,285,105,0,27,27,0 +9634,285,100,1,19,19,0 +9633,285,55,10,8,8,0 +9632,285,112,2,16,16,0 +9631,285,70,1,18,18,0 +9630,285,65,11,7,7,0 +9629,285,30,42,4,4,0 +9628,285,71,58,2,2,3 +9627,285,118,4,15,15,0 +9626,285,77,10,10,10,0 +9625,285,109,5,13,13,0 +9624,285,104,5,12,12,0 +9623,285,87,10,9,9,0 +9622,285,102,53,3,3,3 +9621,285,117,81,1,1,7 +9676,286,83,0,28,28,0 +9675,286,94,0,20,20,0 +9674,286,79,0,26,26,0 +9673,286,91,7,12,12,0 +9672,286,110,0,25,25,0 +9671,286,123,0,24,24,0 +9670,286,121,7,11,11,0 +9669,286,88,0,23,23,0 +9668,286,84,12,7,7,0 +9667,286,22,0,21,21,0 +9666,286,120,2,17,17,0 +9665,286,119,20,5,5,0 +9664,286,69,0,22,22,0 +9663,286,105,0,27,27,0 +9662,286,100,1,19,19,0 +9661,286,55,13,6,6,0 +9660,286,112,2,16,16,0 +9659,286,70,1,18,18,0 +9658,286,65,11,8,8,0 +9657,286,30,52,4,4,1 +9656,286,71,62,2,2,3 +9655,286,118,4,15,15,0 +9654,286,77,10,10,10,0 +9653,286,109,5,13,13,0 +9652,286,104,5,14,14,0 +9651,286,87,10,9,9,0 +9650,286,102,53,3,3,3 +9649,286,117,87,1,1,7 +9707,287,126,0,31,31,0 +9706,287,56,1,22,22,0 +9705,287,57,4,15,15,0 +9704,287,83,0,30,30,0 +9703,287,94,0,23,23,0 +9702,287,79,0,28,28,0 +9701,287,91,7,12,12,0 +9700,287,110,0,27,27,0 +9699,287,123,0,26,26,0 +9698,287,121,7,11,11,0 +9697,287,88,0,25,25,0 +9696,287,84,12,7,7,0 +9695,287,22,2,18,18,0 +9694,287,120,2,19,19,0 +9693,287,119,20,5,5,0 +9692,287,69,0,24,24,0 +9691,287,105,0,29,29,0 +9690,287,100,1,21,21,0 +9689,287,55,13,6,6,0 +9688,287,112,2,17,17,0 +9687,287,70,1,20,20,0 +9686,287,65,11,8,8,0 +9685,287,30,52,4,4,1 +9684,287,71,65,2,2,3 +9683,287,118,4,16,16,0 +9682,287,77,10,10,10,0 +9681,287,109,5,13,13,0 +9680,287,104,5,14,14,0 +9679,287,87,10,9,9,0 +9678,287,102,63,3,3,4 +9677,287,117,93,1,1,7 +9738,288,126,0,31,31,0 +9737,288,56,1,22,22,0 +9736,288,57,4,15,15,0 +9735,288,83,0,30,30,0 +9734,288,94,0,23,23,0 +9733,288,79,0,28,28,0 +9732,288,91,7,12,12,0 +9731,288,110,0,27,27,0 +9730,288,123,0,26,26,0 +9729,288,121,7,11,11,0 +9728,288,88,0,24,24,0 +9727,288,84,13,7,7,0 +9726,288,22,2,18,18,0 +9725,288,120,2,19,19,0 +9724,288,119,20,5,5,0 +9723,288,69,0,25,25,0 +9722,288,105,0,29,29,0 +9721,288,100,1,21,21,0 +9720,288,55,16,6,6,0 +9719,288,112,2,17,17,0 +9718,288,70,1,20,20,0 +9717,288,65,11,9,9,0 +9716,288,30,52,4,4,1 +9715,288,71,69,3,3,3 +9714,288,118,4,16,16,0 +9713,288,77,12,8,8,0 +9712,288,109,5,13,13,0 +9711,288,104,5,14,14,0 +9710,288,87,10,10,10,0 +9709,288,102,73,2,2,5 +9708,288,117,99,1,1,7 +6792,289,128,0,13,13,0 +6791,289,79,0,12,12,0 +6790,289,127,0,11,11,0 +6789,289,105,0,10,10,0 +6788,289,57,0,9,9,0 +6787,289,88,0,8,8,0 +6786,289,100,0,7,7,0 +6785,289,65,1,6,6,0 +6784,289,77,2,5,5,0 +6783,289,30,3,4,4,0 +6782,289,102,4,3,3,0 +6781,289,119,6,2,2,0 +6780,289,95,10,1,1,1 +6793,290,95,20,1,1,2 +6794,290,119,12,2,2,0 +6795,290,102,4,5,5,0 +6796,290,30,7,3,3,0 +6797,290,77,5,4,4,0 +6798,290,65,1,7,7,0 +6799,290,100,0,9,9,0 +6800,290,88,0,11,11,0 +6801,290,57,1,8,8,0 +6802,290,105,0,12,12,0 +6803,290,127,0,15,15,0 +6804,290,79,0,16,16,0 +6805,290,128,0,17,17,0 +6806,290,110,2,6,6,0 +6807,290,109,0,10,10,0 +6808,290,123,0,13,13,0 +6809,290,92,0,14,14,0 +6810,291,95,30,1,1,3 +6811,291,119,18,2,2,0 +6812,291,102,4,5,5,0 +6813,291,30,11,3,3,0 +6814,291,77,5,4,4,0 +6815,291,65,1,9,9,0 +6816,291,100,0,12,12,0 +6817,291,88,0,15,15,0 +6818,291,57,1,10,10,0 +6819,291,105,1,11,11,0 +6820,291,127,0,19,19,0 +6821,291,79,0,16,16,0 +6822,291,128,0,20,20,0 +6823,291,110,2,8,8,0 +6824,291,109,0,14,14,0 +6825,291,123,0,17,17,0 +6826,291,92,0,18,18,0 +6827,291,55,3,6,6,0 +6828,291,122,2,7,7,0 +6829,291,81,0,13,13,0 +6897,292,81,0,15,15,0 +6891,292,110,2,9,9,0 +6901,292,108,0,23,23,0 +6883,292,65,1,10,10,0 +6884,292,100,0,14,14,0 +6885,292,88,0,13,13,0 +6886,292,57,1,11,11,0 +6880,292,102,4,6,6,0 +6899,292,91,0,17,17,0 +6898,292,94,1,12,12,0 +6896,292,122,2,8,8,0 +6895,292,55,7,5,5,0 +6894,292,92,0,21,21,0 +6893,292,123,0,19,19,0 +6892,292,109,0,16,16,0 +6890,292,128,0,24,24,0 +6889,292,79,0,18,18,0 +6887,292,105,3,7,7,0 +6888,292,127,0,22,22,0 +6882,292,77,8,4,4,0 +6881,292,30,17,3,3,0 +6879,292,119,18,2,2,0 +6878,292,95,40,1,1,4 +6900,292,104,0,20,20,0 +6902,293,95,50,1,1,5 +6903,293,119,24,2,2,0 +6904,293,102,8,4,4,0 +6905,293,30,17,3,3,0 +6906,293,77,8,5,5,0 +6907,293,65,1,12,12,0 +6908,293,100,0,15,15,0 +6909,293,88,0,14,14,0 +6910,293,57,1,13,13,0 +6911,293,105,5,7,7,0 +6912,293,127,0,16,16,0 +6913,293,79,0,21,21,0 +6914,293,128,0,26,26,0 +6915,293,110,2,10,10,0 +6916,293,109,0,18,18,0 +6917,293,123,0,22,22,0 +6918,293,92,0,24,24,0 +6919,293,55,7,6,6,0 +6920,293,122,2,9,9,0 +6921,293,81,0,17,17,0 +6922,293,94,2,11,11,0 +6923,293,91,0,19,19,0 +6924,293,104,0,23,23,0 +6925,293,108,0,25,25,0 +6926,293,84,3,8,8,0 +6927,293,129,0,20,20,0 +6928,294,95,56,1,1,5 +6929,294,119,28,2,2,0 +6930,294,102,18,4,4,1 +6931,294,30,20,3,3,0 +6932,294,77,8,5,5,0 +6933,294,65,1,12,12,0 +6934,294,100,0,16,16,0 +6935,294,88,0,15,15,0 +6936,294,57,1,13,13,0 +6937,294,105,5,8,8,0 +6938,294,127,0,17,17,0 +6939,294,79,0,23,23,0 +6940,294,128,0,26,26,0 +6941,294,110,2,10,10,0 +6942,294,109,0,19,19,0 +6943,294,123,0,24,24,0 +6944,294,92,1,14,14,0 +6945,294,55,7,6,6,0 +6946,294,122,2,9,9,0 +6947,294,81,0,18,18,0 +6948,294,94,2,11,11,0 +6949,294,91,0,21,21,0 +6950,294,104,0,20,20,0 +6951,294,108,0,25,25,0 +6952,294,84,5,7,7,0 +6953,294,129,0,22,22,0 +6954,295,95,56,1,1,5 +6955,295,119,28,2,2,0 +6956,295,102,18,4,4,1 +6957,295,30,26,3,3,0 +6958,295,77,18,5,5,1 +6959,295,65,1,14,14,0 +6960,295,100,1,13,13,0 +6961,295,88,0,17,17,0 +6962,295,57,1,15,15,0 +6963,295,105,5,8,8,0 +6964,295,127,0,18,18,0 +6965,295,79,0,23,23,0 +6966,295,128,0,26,26,0 +6967,295,110,4,9,9,0 +6968,295,109,0,20,20,0 +6969,295,123,0,24,24,0 +6970,295,92,1,16,16,0 +6971,295,55,11,6,6,0 +6972,295,122,2,11,11,0 +6973,295,81,0,19,19,0 +6974,295,94,2,12,12,0 +6975,295,91,3,10,10,0 +6976,295,104,0,21,21,0 +6977,295,108,0,25,25,0 +6978,295,84,5,7,7,0 +6979,295,129,0,22,22,0 +6980,296,95,66,1,1,6 +6981,296,119,34,2,2,0 +6982,296,102,18,4,4,1 +6983,296,30,26,3,3,0 +6984,296,77,18,5,5,1 +6985,296,65,2,14,14,0 +6986,296,100,3,12,12,0 +6987,296,88,0,17,17,0 +6988,296,57,4,9,9,0 +6989,296,105,5,8,8,0 +6990,296,127,0,19,19,0 +6991,296,79,0,23,23,0 +6992,296,128,0,26,26,0 +6993,296,110,4,10,10,0 +6994,296,109,0,20,20,0 +6995,296,123,0,24,24,0 +6996,296,92,1,16,16,0 +6997,296,55,11,6,6,0 +6998,296,122,2,13,13,0 +6999,296,81,0,18,18,0 +7000,296,94,2,15,15,0 +7001,296,91,3,11,11,0 +7002,296,104,0,22,22,0 +7003,296,108,0,25,25,0 +7004,296,84,9,7,7,0 +7005,296,129,0,21,21,0 +7006,297,95,76,1,1,7 +7007,297,119,40,2,2,0 +7008,297,102,18,5,5,1 +7009,297,30,29,3,3,0 +7010,297,77,20,4,4,1 +7011,297,65,2,14,14,0 +7012,297,100,3,12,12,0 +7013,297,88,0,17,17,0 +7014,297,57,5,8,8,0 +7015,297,105,5,9,9,0 +7016,297,127,0,19,19,0 +7017,297,79,0,23,23,0 +7018,297,128,0,26,26,0 +7019,297,110,4,10,10,0 +7020,297,109,0,20,20,0 +7021,297,123,0,24,24,0 +7022,297,92,1,16,16,0 +7023,297,55,11,7,7,0 +7024,297,122,2,13,13,0 +7025,297,81,0,18,18,0 +7026,297,94,2,15,15,0 +7027,297,91,3,11,11,0 +7028,297,104,0,22,22,0 +7029,297,108,0,25,25,0 +7030,297,84,13,6,6,0 +7031,297,129,0,21,21,0 +7032,297,99,0,27,27,0 +7033,297,71,0,28,28,0 +7034,298,95,86,1,1,8 +7035,298,119,40,2,2,0 +7036,298,102,24,4,4,1 +7037,298,30,33,3,3,0 +7038,298,77,20,5,5,1 +7039,298,65,2,14,14,0 +7040,298,100,4,11,11,0 +7041,298,88,0,17,17,0 +7042,298,57,5,8,8,0 +7043,298,105,5,9,9,0 +7044,298,127,0,20,20,0 +7045,298,79,0,24,24,0 +7046,298,128,0,26,26,0 +7047,298,110,4,10,10,0 +7048,298,109,0,21,21,0 +7049,298,123,0,19,19,0 +7050,298,92,1,16,16,0 +7051,298,55,13,7,7,0 +7052,298,122,2,13,13,0 +7053,298,81,0,18,18,0 +7054,298,94,2,15,15,0 +7055,298,91,3,12,12,0 +7056,298,104,0,23,23,0 +7057,298,108,0,25,25,0 +7058,298,84,16,6,6,0 +7059,298,129,0,22,22,0 +7060,298,99,0,27,27,0 +7061,298,71,0,28,28,0 +7062,299,95,92,1,1,8 +7063,299,119,40,2,2,0 +7064,299,102,34,3,3,2 +7065,299,30,33,4,4,0 +7066,299,77,24,5,5,1 +7067,299,65,2,14,14,0 +7068,299,100,4,11,11,0 +7069,299,88,0,17,17,0 +7070,299,57,8,8,8,0 +7071,299,105,5,9,9,0 +7072,299,127,0,20,20,0 +7073,299,79,0,24,24,0 +7074,299,128,0,27,27,0 +7075,299,110,4,10,10,0 +7076,299,109,0,21,21,0 +7077,299,123,0,19,19,0 +7078,299,92,1,16,16,0 +7079,299,55,13,7,7,0 +7080,299,122,3,13,13,0 +7081,299,81,0,18,18,0 +7082,299,94,2,15,15,0 +7083,299,91,3,12,12,0 +7084,299,104,0,23,23,0 +7085,299,108,0,25,25,0 +7086,299,84,18,6,6,0 +7087,299,129,0,22,22,0 +7088,299,99,0,28,28,0 +7089,299,71,0,26,26,0 +7090,300,95,98,1,1,8 +7091,300,119,44,2,2,0 +7092,300,102,36,4,4,2 +7093,300,30,43,3,3,1 +7094,300,77,24,5,5,1 +7095,300,65,2,14,14,0 +7096,300,100,4,11,11,0 +7097,300,88,0,18,18,0 +7098,300,57,9,8,8,0 +7099,300,105,5,9,9,0 +7100,300,127,0,21,21,0 +7101,300,79,0,24,24,0 +7102,300,128,0,26,26,0 +7103,300,110,4,10,10,0 +7104,300,109,0,17,17,0 +7105,300,123,0,20,20,0 +7106,300,92,1,16,16,0 +7107,300,55,13,7,7,0 +7108,300,122,3,13,13,0 +7109,300,81,0,19,19,0 +7110,300,94,2,15,15,0 +7111,300,91,3,12,12,0 +7112,300,104,0,23,23,0 +7113,300,108,0,25,25,0 +7114,300,84,21,6,6,0 +7115,300,129,0,22,22,0 +7116,300,99,0,29,29,0 +7117,300,71,0,27,27,0 +68160,969,830,10,5,5,0 +7119,300,125,0,28,28,0 +7120,300,131,0,30,30,0 +7121,301,95,98,1,1,8 +7122,301,119,46,4,4,0 +7123,301,102,46,3,3,3 +7124,301,30,47,2,2,1 +7125,301,77,27,5,5,1 +7126,301,65,2,14,14,0 +7127,301,100,4,11,11,0 +7128,301,88,0,18,18,0 +7129,301,57,9,8,8,0 +7130,301,105,5,9,9,0 +7131,301,127,0,21,21,0 +7132,301,79,0,24,24,0 +7133,301,128,0,26,26,0 +7134,301,110,5,10,10,0 +7135,301,109,0,17,17,0 +7136,301,123,0,20,20,0 +7137,301,92,1,16,16,0 +7138,301,55,13,7,7,0 +7139,301,122,3,13,13,0 +7140,301,81,0,19,19,0 +7141,301,94,2,15,15,0 +7142,301,91,3,12,12,0 +7143,301,104,0,23,23,0 +7144,301,108,0,25,25,0 +7145,301,84,27,6,6,0 +7146,301,129,0,22,22,0 +7147,301,99,0,29,29,0 +7148,301,71,0,27,27,0 +68159,969,8,12,4,4,0 +7150,301,125,0,28,28,0 +7151,301,131,0,30,30,0 +7152,302,95,108,1,1,9 +7153,302,119,46,4,4,0 +7154,302,102,50,2,2,3 +7155,302,30,47,3,3,1 +7156,302,77,33,5,5,1 +7157,302,65,2,14,14,0 +7158,302,100,4,11,11,0 +7159,302,88,0,18,18,0 +7160,302,57,11,8,8,0 +7161,302,105,6,9,9,0 +7162,302,127,0,21,21,0 +7163,302,79,0,24,24,0 +7164,302,128,0,26,26,0 +7165,302,110,5,10,10,0 +7166,302,109,0,17,17,0 +7167,302,123,0,19,19,0 +7168,302,92,1,16,16,0 +7169,302,55,13,7,7,0 +7170,302,122,3,13,13,0 +7171,302,81,0,20,20,0 +7172,302,94,2,15,15,0 +7173,302,91,3,12,12,0 +7174,302,104,0,23,23,0 +7175,302,108,0,25,25,0 +7176,302,84,30,6,6,0 +7177,302,129,0,22,22,0 +7178,302,99,0,30,30,0 +7179,302,71,0,28,28,0 +68158,969,822,15,3,3,0 +7181,302,125,0,27,27,0 +7182,302,131,0,29,29,0 +7183,303,95,108,1,1,9 +7184,303,119,56,2,2,1 +7185,303,102,50,3,3,3 +7186,303,30,47,4,4,1 +7187,303,77,39,5,5,1 +7188,303,65,2,14,14,0 +7189,303,100,4,11,11,0 +7190,303,88,0,19,19,0 +7191,303,57,11,8,8,0 +7192,303,105,6,10,10,0 +7193,303,127,0,22,22,0 +7194,303,79,0,25,25,0 +7195,303,128,0,27,27,0 +7196,303,110,8,9,9,0 +7197,303,109,0,18,18,0 +7198,303,123,0,20,20,0 +7199,303,92,1,17,17,0 +7200,303,55,15,7,7,0 +7201,303,122,3,13,13,0 +7202,303,81,0,21,21,0 +7203,303,94,2,15,15,0 +7204,303,91,3,12,12,0 +7205,303,104,1,16,16,0 +7206,303,108,0,26,26,0 +7207,303,84,34,6,6,0 +7208,303,129,0,24,24,0 +7209,303,99,0,31,31,0 +7210,303,71,0,29,29,0 +68157,969,1,18,2,2,0 +7212,303,125,0,28,28,0 +7213,303,131,0,23,23,0 +7214,303,78,0,30,30,0 +7215,304,95,108,1,1,9 +7216,304,119,56,2,2,1 +7217,304,102,50,4,4,3 +7218,304,30,53,3,3,1 +7219,304,77,49,5,5,2 +7220,304,65,2,15,15,0 +7221,304,100,4,11,11,0 +7222,304,88,0,20,20,0 +7223,304,57,11,8,8,0 +7224,304,105,6,10,10,0 +7225,304,127,0,23,23,0 +7226,304,79,0,25,25,0 +7227,304,128,0,27,27,0 +7228,304,110,8,9,9,0 +7229,304,109,0,21,21,0 +7230,304,123,2,14,14,0 +7231,304,92,1,19,19,0 +7232,304,55,18,7,7,0 +7233,304,122,3,13,13,0 +7234,304,81,0,22,22,0 +7235,304,94,2,16,16,0 +7236,304,91,3,12,12,0 +7237,304,104,1,18,18,0 +7238,304,108,0,26,26,0 +7239,304,84,38,6,6,0 +7240,304,129,0,24,24,0 +7241,304,99,0,32,32,0 +7242,304,71,0,30,30,0 +68156,969,20,25,1,1,1 +7244,304,125,0,28,28,0 +7245,304,131,1,17,17,0 +7246,304,78,0,29,29,0 +7247,304,136,0,31,31,0 +17127,306,128,0,34,34,0 +17126,306,129,0,32,32,0 +17125,306,142,0,33,33,0 +17124,306,110,0,27,27,0 +17123,306,141,0,31,31,0 +17122,306,100,0,21,21,0 +17121,306,140,0,30,30,0 +17120,306,133,0,29,29,0 +17119,306,103,0,25,25,0 +17118,306,109,0,26,26,0 +17117,306,81,0,12,12,0 +17116,306,139,0,19,19,0 +17115,306,87,0,23,23,0 +17114,306,127,0,28,28,0 +17113,306,95,0,20,20,0 +17162,307,120,0,33,33,0 +17161,307,128,0,20,20,0 +17160,307,129,0,34,34,0 +17159,307,142,0,35,35,0 +17158,307,110,0,27,27,0 +17157,307,141,1,13,13,0 +17156,307,100,0,22,22,0 +17155,307,140,0,32,32,0 +17154,307,133,0,31,31,0 +17153,307,103,0,30,30,0 +17152,307,109,4,6,6,0 +17151,307,81,0,18,18,0 +17150,307,139,0,24,24,0 +17149,307,87,0,17,17,0 +17148,307,127,0,25,25,0 +17147,307,95,0,26,26,0 +17146,307,77,10,2,2,0 +17145,307,123,0,14,14,0 +17144,307,122,0,29,29,0 +17143,307,105,0,28,28,0 +17142,307,90,0,15,15,0 +17141,307,119,6,4,4,0 +17140,307,57,2,9,9,0 +17197,308,120,0,32,32,0 +17196,308,128,0,24,24,0 +17195,308,129,0,34,34,0 +17193,308,110,0,28,28,0 +17192,308,141,1,16,16,0 +17191,308,100,0,25,25,0 +17190,308,140,0,33,33,0 +17189,308,133,0,31,31,0 +17188,308,103,0,23,23,0 +17187,308,109,4,8,8,0 +17186,308,81,0,20,20,0 +17185,308,139,1,14,14,0 +17184,308,87,0,21,21,0 +17183,308,127,0,27,27,0 +17182,308,95,6,5,5,0 +17181,308,77,10,3,3,0 +17180,308,123,0,17,17,0 +17179,308,122,0,30,30,0 +17178,308,105,0,29,29,0 +17177,308,90,3,9,9,0 +17176,308,119,6,4,4,0 +17175,308,57,2,12,12,0 +17174,308,55,5,7,7,0 +17173,308,84,0,26,26,0 +17172,308,92,0,19,19,0 +17233,309,65,0,34,34,0 +17232,309,120,0,33,33,0 +17231,309,128,0,26,26,0 +17230,309,129,0,35,35,0 +17229,309,142,0,36,36,0 +17228,309,110,3,12,12,0 +17227,309,141,1,18,18,0 +17226,309,100,0,21,21,0 +17225,309,140,0,29,29,0 +17224,309,133,0,32,32,0 +17223,309,103,0,25,25,0 +17222,309,109,4,9,9,0 +17221,309,81,0,22,22,0 +17220,309,139,1,16,16,0 +17219,309,87,0,23,23,0 +17218,309,127,0,28,28,0 +17217,309,95,7,7,7,0 +17216,309,77,10,5,5,0 +17215,309,123,0,19,19,0 +17214,309,122,0,30,30,0 +17213,309,105,0,31,31,0 +17212,309,90,3,11,11,0 +17211,309,119,10,4,4,0 +17210,309,57,2,14,14,0 +17209,309,55,5,8,8,0 +17208,309,84,0,27,27,0 +17269,310,65,0,27,27,0 +17268,310,120,0,35,35,0 +17267,310,128,0,26,26,0 +17266,310,129,0,33,33,0 +17265,310,142,0,36,36,0 +17263,310,141,1,19,19,0 +17262,310,100,0,23,23,0 +17261,310,140,0,30,30,0 +17260,310,133,0,34,34,0 +17259,310,103,1,17,17,0 +17258,310,109,4,11,11,0 +17257,310,81,0,21,21,0 +17256,310,139,1,16,16,0 +17255,310,87,0,24,24,0 +17254,310,127,0,29,29,0 +17253,310,95,13,4,4,0 +17252,310,77,10,6,6,0 +17251,310,123,0,20,20,0 +17250,310,122,0,31,31,0 +17249,310,105,0,32,32,0 +17248,310,90,5,10,10,0 +17247,310,119,20,2,2,1 +17246,310,57,2,14,14,0 +17245,310,55,5,9,9,0 +17244,310,84,0,28,28,0 +17243,310,92,2,13,13,0 +17242,310,94,3,12,12,0 +17305,311,65,0,28,28,0 +17304,311,120,0,35,35,0 +17303,311,128,0,27,27,0 +17302,311,129,0,32,32,0 +17300,311,110,7,9,9,0 +17299,311,141,1,19,19,0 +17298,311,100,0,24,24,0 +17297,311,140,0,30,30,0 +17296,311,133,0,34,34,0 +17295,311,103,1,17,17,0 +17294,311,109,4,11,11,0 +17293,311,81,0,21,21,0 +17292,311,139,1,16,16,0 +17291,311,87,0,25,25,0 +17290,311,127,0,22,22,0 +17289,311,95,23,2,2,1 +17288,311,77,10,6,6,0 +17287,311,123,0,20,20,0 +17286,311,122,0,31,31,0 +17285,311,105,0,33,33,0 +17284,311,90,5,10,10,0 +17283,311,119,22,3,3,1 +17282,311,57,2,14,14,0 +17281,311,55,8,8,8,0 +17280,311,84,0,29,29,0 +17279,311,92,2,13,13,0 +17341,312,65,0,28,28,0 +17340,312,120,0,35,35,0 +17339,312,128,0,27,27,0 +17338,312,129,0,32,32,0 +17336,312,110,7,9,9,0 +17335,312,141,1,19,19,0 +17334,312,100,0,24,24,0 +17333,312,140,0,30,30,0 +17332,312,133,0,34,34,0 +17331,312,103,1,17,17,0 +17330,312,109,4,11,11,0 +17329,312,81,0,21,21,0 +17328,312,139,1,16,16,0 +17327,312,87,0,25,25,0 +17326,312,127,0,22,22,0 +17325,312,95,33,2,2,2 +17324,312,77,16,6,6,0 +17323,312,123,0,20,20,0 +17322,312,122,0,31,31,0 +17321,312,105,0,33,33,0 +17320,312,90,5,10,10,0 +17319,312,119,22,3,3,1 +17318,312,57,2,15,15,0 +17317,312,55,8,8,8,0 +17316,312,84,0,29,29,0 +17315,312,92,3,13,13,0 +17378,313,143,0,36,36,0 +17377,313,65,0,28,28,0 +17376,313,120,0,35,35,0 +17375,313,128,0,27,27,0 +17373,313,142,0,37,37,0 +17372,313,110,9,9,9,0 +17371,313,141,1,19,19,0 +17370,313,100,0,24,24,0 +17369,313,140,0,30,30,0 +17368,313,133,0,34,34,0 +17367,313,103,1,17,17,0 +17366,313,109,4,11,11,0 +17365,313,81,0,21,21,0 +17364,313,139,1,16,16,0 +17363,313,87,0,25,25,0 +17362,313,127,0,22,22,0 +17361,313,95,43,2,2,3 +17360,313,77,19,5,5,0 +17359,313,123,0,20,20,0 +17358,313,122,0,31,31,0 +17357,313,105,0,33,33,0 +17356,313,90,5,10,10,0 +17355,313,119,28,3,3,1 +17354,313,57,2,15,15,0 +17353,313,55,12,7,7,0 +17352,313,84,0,29,29,0 +17415,314,143,0,36,36,0 +17414,314,65,0,29,29,0 +17413,314,120,0,35,35,0 +17412,314,128,0,28,28,0 +17411,314,129,0,32,32,0 +17409,314,110,9,9,9,0 +17408,314,141,1,20,20,0 +17407,314,100,0,25,25,0 +17406,314,140,0,31,31,0 +17405,314,133,0,34,34,0 +17403,314,109,4,11,11,0 +17402,314,81,0,22,22,0 +17401,314,139,1,16,16,0 +17400,314,87,0,26,26,0 +17399,314,127,0,23,23,0 +17398,314,95,49,2,2,3 +17397,314,77,22,4,4,0 +17396,314,123,0,21,21,0 +17395,314,122,1,18,18,0 +17394,314,105,0,33,33,0 +17393,314,90,5,10,10,0 +17392,314,119,32,3,3,1 +17391,314,57,2,15,15,0 +17390,314,55,14,7,7,0 +17389,314,84,0,30,30,0 +17388,314,92,4,12,12,0 +17453,315,30,0,34,34,0 +17452,315,143,0,37,37,0 +17451,315,65,0,24,24,0 +17450,315,120,0,36,36,0 +17449,315,128,0,30,30,0 +17447,315,142,0,38,38,0 +17445,315,141,1,21,21,0 +17444,315,100,0,27,27,0 +17443,315,140,0,32,32,0 +17442,315,133,0,35,35,0 +17441,315,103,1,18,18,0 +17440,315,109,4,11,11,0 +17438,315,139,1,16,16,0 +17437,315,87,1,17,17,0 +17436,315,127,0,25,25,0 +17435,315,95,49,2,2,3 +17434,315,77,28,4,4,0 +17433,315,123,0,22,22,0 +17432,315,122,1,19,19,0 +17431,315,105,0,33,33,0 +17430,315,90,8,10,10,0 +17429,315,119,34,3,3,1 +17428,315,57,2,15,15,0 +17427,315,55,14,7,7,0 +17426,315,84,0,29,29,0 +17425,315,92,4,12,12,0 +17424,315,94,3,13,13,0 +17423,315,99,0,28,28,0 +17491,316,30,2,16,16,0 +17490,316,143,0,37,37,0 +17489,316,65,0,25,25,0 +17488,316,120,0,36,36,0 +17487,316,128,0,31,31,0 +17485,316,142,0,38,38,0 +17484,316,110,9,9,9,0 +17483,316,141,1,22,22,0 +17482,316,100,0,28,28,0 +17481,316,140,0,33,33,0 +17480,316,133,0,35,35,0 +17479,316,103,1,20,20,0 +17478,316,109,4,11,11,0 +17476,316,139,1,17,17,0 +17475,316,87,1,18,18,0 +17474,316,127,0,26,26,0 +17473,316,95,59,2,2,4 +17472,316,77,31,4,4,0 +17471,316,123,0,23,23,0 +17470,316,122,1,19,19,0 +17469,316,105,0,34,34,0 +17468,316,90,8,10,10,0 +17467,316,119,34,3,3,1 +17466,316,57,2,15,15,0 +17465,316,55,14,7,7,0 +17464,316,84,0,30,30,0 +17463,316,92,4,12,12,0 +17462,316,94,3,13,13,0 +17461,316,99,0,29,29,0 +17529,317,30,3,14,14,0 +17528,317,143,0,37,37,0 +17527,317,65,0,26,26,0 +17526,317,120,0,36,36,0 +17525,317,128,0,31,31,0 +17524,317,129,0,32,32,0 +17523,317,142,0,38,38,0 +17521,317,141,1,22,22,0 +17520,317,100,0,28,28,0 +17519,317,140,0,34,34,0 +17518,317,133,0,35,35,0 +17517,317,103,1,20,20,0 +17516,317,109,4,12,12,0 +17515,317,81,0,25,25,0 +17513,317,87,1,18,18,0 +17512,317,127,0,24,24,0 +17511,317,95,59,2,2,4 +17510,317,77,31,4,4,0 +17509,317,123,0,23,23,0 +17508,317,122,1,19,19,0 +17507,317,105,0,33,33,0 +17506,317,90,8,10,10,0 +17505,317,119,44,3,3,2 +17504,317,57,2,16,16,0 +17503,317,55,18,7,7,0 +17502,317,84,0,30,30,0 +17501,317,92,4,13,13,0 +17500,317,94,6,11,11,0 +17499,317,99,0,29,29,0 +17498,317,78,0,27,27,0 +17568,318,70,0,32,32,0 +17567,318,30,4,14,14,0 +17566,318,143,0,38,38,0 +17565,318,65,0,26,26,0 +17564,318,120,0,37,37,0 +17563,318,128,0,31,31,0 +17561,318,142,0,39,39,0 +17560,318,110,9,9,9,0 +17559,318,141,1,22,22,0 +17558,318,100,0,28,28,0 +17557,318,140,0,35,35,0 +17556,318,133,0,36,36,0 +17555,318,103,1,20,20,0 +17554,318,109,4,12,12,0 +17552,318,139,1,17,17,0 +17551,318,87,1,18,18,0 +17550,318,127,0,23,23,0 +17549,318,95,69,2,2,5 +17548,318,77,31,5,5,0 +17547,318,123,0,24,24,0 +17546,318,122,1,19,19,0 +17545,318,105,0,34,34,0 +17544,318,90,8,10,10,0 +17543,318,119,48,3,3,2 +17542,318,57,2,16,16,0 +17541,318,55,21,7,7,0 +17540,318,84,0,30,30,0 +17539,318,92,4,13,13,0 +17538,318,94,6,11,11,0 +17537,318,99,0,29,29,0 +17609,319,144,0,41,41,0 +17608,319,91,0,37,37,0 +17607,319,70,0,31,31,0 +17606,319,30,4,14,14,0 +17605,319,143,0,39,39,0 +17604,319,65,0,27,27,0 +17603,319,120,0,38,38,0 +17601,319,129,0,33,33,0 +17600,319,142,0,40,40,0 +17599,319,110,9,9,9,0 +17598,319,141,1,23,23,0 +17597,319,100,0,29,29,0 +17596,319,140,0,36,36,0 +17594,319,103,1,21,21,0 +17593,319,109,4,12,12,0 +17591,319,139,1,18,18,0 +17590,319,87,1,19,19,0 +17589,319,127,0,24,24,0 +17588,319,95,69,2,2,5 +17587,319,77,41,4,4,1 +17586,319,123,0,25,25,0 +17585,319,122,1,20,20,0 +17584,319,105,0,35,35,0 +17583,319,90,8,10,10,0 +17582,319,119,52,3,3,2 +17581,319,57,2,16,16,0 +17580,319,55,21,7,7,0 +17579,319,84,2,17,17,0 +17578,319,92,4,13,13,0 +17577,319,94,6,11,11,0 +17576,319,99,0,30,30,0 +17650,320,144,0,40,40,0 +17649,320,91,0,36,36,0 +17648,320,70,0,31,31,0 +17647,320,30,4,14,14,0 +17646,320,143,0,39,39,0 +17645,320,65,0,27,27,0 +17644,320,120,0,38,38,0 +17643,320,128,0,32,32,0 +17642,320,129,0,34,34,0 +17641,320,142,0,41,41,0 +17639,320,141,1,23,23,0 +17638,320,100,0,29,29,0 +17637,320,140,0,37,37,0 +17636,320,133,0,33,33,0 +17635,320,103,1,21,21,0 +17634,320,109,4,12,12,0 +17632,320,139,1,18,18,0 +17631,320,87,1,19,19,0 +17630,320,127,0,25,25,0 +17629,320,95,72,2,2,5 +17628,320,77,43,4,4,1 +17627,320,123,0,26,26,0 +17626,320,122,1,20,20,0 +17625,320,105,0,35,35,0 +17624,320,90,8,10,10,0 +17623,320,119,53,3,3,2 +17622,320,57,2,16,16,0 +17621,320,55,21,7,7,0 +17620,320,84,2,17,17,0 +17619,320,92,4,13,13,0 +17618,320,94,6,11,11,0 +17617,320,99,0,30,30,0 +17616,320,78,0,28,28,0 +15889,322,131,2,8,8,0 +15912,322,81,0,19,19,0 +15894,322,105,0,14,14,0 +15891,322,94,0,10,10,0 +15892,322,103,0,11,11,0 +15920,322,133,0,22,22,0 +15919,322,112,0,16,16,0 +15959,323,152,0,38,38,0 +15958,323,101,0,34,34,0 +15957,323,139,0,32,32,0 +15942,323,117,12,2,2,1 +15940,323,129,0,25,25,0 +15921,323,102,13,1,1,1 +15956,323,133,0,26,26,0 +15955,323,112,0,16,16,0 +15954,323,92,0,36,36,0 +15953,323,150,0,39,39,0 +15952,323,149,0,37,37,0 +15951,323,114,0,30,30,0 +15950,323,99,0,35,35,0 +15949,323,109,0,20,20,0 +15948,323,81,0,24,24,0 +15947,323,140,0,33,33,0 +15946,323,151,0,15,15,0 +15972,324,90,0,24,24,0 +15973,324,127,0,25,25,0 +15974,324,147,0,21,21,0 +15975,324,88,0,29,29,0 +15976,324,95,3,9,9,0 +15977,324,77,16,2,2,0 +15978,324,148,0,16,16,0 +15979,324,129,0,28,28,0 +15980,324,110,0,27,27,0 +15981,324,117,12,4,4,1 +15982,324,122,0,31,31,0 +15983,324,118,0,15,15,0 +15984,324,78,0,19,19,0 +15985,324,151,0,17,17,0 +15986,324,140,0,34,34,0 +15998,324,152,0,38,38,0 +15997,324,101,0,30,30,0 +15996,324,139,0,33,33,0 +16000,325,55,13,4,4,0 +16001,325,123,9,7,7,0 +16011,325,90,0,27,27,0 +16012,325,127,0,28,28,0 +16013,325,147,0,22,22,0 +16037,325,152,0,38,38,0 +16036,325,101,0,31,31,0 +16035,325,139,0,33,33,0 +16034,325,133,2,11,11,0 +16033,325,112,0,18,18,0 +16032,325,92,0,36,36,0 +16031,325,150,0,39,39,0 +16030,325,149,0,37,37,0 +16029,325,114,0,32,32,0 +16028,325,99,0,35,35,0 +16027,325,109,0,23,23,0 +16026,325,81,0,29,29,0 +16025,325,140,0,34,34,0 +16024,325,151,0,17,17,0 +16023,325,78,0,19,19,0 +16022,325,118,1,12,12,0 +16021,325,122,0,20,20,0 +16076,326,152,0,38,38,0 +16074,326,139,0,33,33,0 +16075,326,101,0,31,31,0 +16048,326,145,7,9,9,0 +16045,326,103,1,13,13,0 +16073,326,133,2,11,11,0 +16072,326,112,0,18,18,0 +16071,326,92,0,36,36,0 +16070,326,150,0,39,39,0 +16069,326,149,0,37,37,0 +16068,326,114,0,32,32,0 +16067,326,99,0,35,35,0 +16066,326,109,0,23,23,0 +16065,326,81,0,30,30,0 +16064,326,140,0,34,34,0 +16063,326,151,0,17,17,0 +16062,326,78,0,19,19,0 +16061,326,118,1,12,12,0 +16060,326,122,0,21,21,0 +16059,326,117,23,2,2,2 +16058,326,110,0,27,27,0 +16057,326,129,0,26,26,0 +16056,326,148,0,16,16,0 +16055,326,77,23,3,3,0 +16054,326,95,13,5,5,0 +16053,326,88,0,24,24,0 +16052,326,147,0,22,22,0 +16115,327,152,0,38,38,0 +16114,327,101,0,31,31,0 +16113,327,139,0,33,33,0 +16112,327,133,2,12,12,0 +16111,327,112,0,20,20,0 +16110,327,92,0,36,36,0 +16109,327,150,0,39,39,0 +16108,327,149,0,37,37,0 +16107,327,114,0,32,32,0 +16106,327,99,0,35,35,0 +16105,327,109,0,24,24,0 +16104,327,81,0,30,30,0 +16103,327,140,0,34,34,0 +16102,327,151,0,19,19,0 +16101,327,78,0,22,22,0 +16100,327,118,1,13,13,0 +16098,327,117,32,2,2,3 +16097,327,110,0,27,27,0 +16095,327,148,0,18,18,0 +16094,327,77,25,3,3,0 +16093,327,95,13,6,6,0 +16092,327,88,0,17,17,0 +16091,327,147,0,23,23,0 +16090,327,127,0,29,29,0 +16089,327,90,0,28,28,0 +16087,327,145,7,9,9,0 +16154,328,152,0,38,38,0 +16137,328,117,41,1,1,4 +16124,328,119,10,8,8,1 +16153,328,101,0,32,32,0 +16152,328,139,0,24,24,0 +16150,328,112,0,20,20,0 +16149,328,92,0,36,36,0 +16148,328,150,0,39,39,0 +16147,328,149,0,37,37,0 +16146,328,114,0,33,33,0 +16145,328,99,0,34,34,0 +16144,328,109,0,25,25,0 +16143,328,81,0,31,31,0 +16142,328,140,0,35,35,0 +16141,328,151,0,19,19,0 +16140,328,78,0,21,21,0 +16139,328,118,1,14,14,0 +16138,328,122,6,10,10,0 +16136,328,110,0,28,28,0 +16135,328,129,0,27,27,0 +16134,328,148,0,18,18,0 +16133,328,77,25,3,3,0 +16132,328,95,13,7,7,0 +16131,328,88,1,15,15,0 +16130,328,147,0,23,23,0 +16129,328,127,0,30,30,0 +16127,328,146,0,26,26,0 +16193,329,152,0,38,38,0 +16176,329,117,44,2,2,4 +16163,329,119,12,9,9,1 +16192,329,101,0,32,32,0 +16191,329,139,0,24,24,0 +16189,329,112,0,20,20,0 +16188,329,92,0,36,36,0 +16187,329,150,0,39,39,0 +16186,329,149,0,37,37,0 +16185,329,114,0,33,33,0 +16184,329,99,0,34,34,0 +16183,329,109,0,25,25,0 +16182,329,81,0,31,31,0 +16181,329,140,0,35,35,0 +16180,329,151,0,19,19,0 +16179,329,78,0,21,21,0 +16178,329,118,1,14,14,0 +16177,329,122,6,10,10,0 +16175,329,110,0,28,28,0 +16174,329,129,0,27,27,0 +16173,329,148,0,18,18,0 +16172,329,77,29,3,3,0 +16171,329,95,13,8,8,0 +16170,329,88,1,15,15,0 +16169,329,147,0,23,23,0 +16168,329,127,0,30,30,0 +16166,329,146,0,26,26,0 +16211,330,77,29,3,3,0 +16217,330,118,3,12,12,0 +16232,330,152,0,38,38,0 +16231,330,101,0,33,33,0 +16230,330,139,0,24,24,0 +16229,330,133,2,13,13,0 +16228,330,112,0,21,21,0 +16227,330,92,0,36,36,0 +16226,330,150,0,39,39,0 +16225,330,149,0,37,37,0 +16224,330,114,0,34,34,0 +16223,330,99,0,30,30,0 +16222,330,109,0,26,26,0 +16221,330,81,0,32,32,0 +16220,330,140,0,35,35,0 +16219,330,151,0,17,17,0 +16218,330,78,0,22,22,0 +16196,330,123,27,4,4,1 +16216,330,122,6,10,10,0 +16215,330,117,44,2,2,4 +16214,330,110,0,29,29,0 +16213,330,129,0,28,28,0 +16212,330,148,0,19,19,0 +16210,330,95,13,9,9,0 +16209,330,88,1,15,15,0 +16208,330,147,0,25,25,0 +16207,330,127,0,20,20,0 +16205,330,146,0,27,27,0 +16271,331,152,0,38,38,0 +16352,334,123,30,5,5,1 +16250,331,77,33,3,3,0 +16251,331,148,0,20,20,0 +16252,331,129,0,28,28,0 +16270,331,101,0,33,33,0 +16269,331,139,0,24,24,0 +16268,331,133,2,13,13,0 +16267,331,112,0,21,21,0 +16266,331,92,0,36,36,0 +16265,331,150,0,39,39,0 +16264,331,149,0,37,37,0 +16263,331,114,0,34,34,0 +16262,331,99,0,30,30,0 +16261,331,109,0,26,26,0 +16260,331,81,0,32,32,0 +16259,331,140,0,35,35,0 +16258,331,151,0,18,18,0 +16235,331,123,27,4,4,1 +16257,331,78,0,22,22,0 +16256,331,118,3,12,12,0 +16255,331,122,6,10,10,0 +16254,331,117,50,2,2,4 +16253,331,110,0,29,29,0 +16249,331,95,13,9,9,0 +16248,331,88,1,15,15,0 +16247,331,147,0,25,25,0 +16246,331,127,1,17,17,0 +16244,331,146,0,27,27,0 +16310,332,152,0,38,38,0 +16320,333,105,0,22,22,0 +16289,332,77,37,3,3,0 +16290,332,148,0,20,20,0 +16291,332,129,0,29,29,0 +16309,332,101,0,33,33,0 +16308,332,139,0,24,24,0 +16307,332,133,2,13,13,0 +16306,332,112,0,21,21,0 +16305,332,92,0,36,36,0 +16304,332,150,0,39,39,0 +16303,332,149,0,37,37,0 +16302,332,114,0,34,34,0 +16301,332,99,0,30,30,0 +16300,332,109,0,27,27,0 +16299,332,81,0,32,32,0 +16298,332,140,0,35,35,0 +16297,332,151,0,18,18,0 +16274,332,123,27,4,4,1 +16296,332,78,0,22,22,0 +16295,332,118,3,12,12,0 +16294,332,122,6,10,10,0 +16293,332,117,56,2,2,4 +16292,332,110,0,25,25,0 +16288,332,95,16,8,8,0 +16287,332,88,1,16,16,0 +16286,332,147,0,26,26,0 +16285,332,127,1,17,17,0 +16283,332,146,0,28,28,0 +16349,333,152,0,38,38,0 +16327,333,95,25,6,6,1 +16328,333,77,40,3,3,0 +16329,333,148,0,20,20,0 +16348,333,101,0,33,33,0 +16347,333,139,0,24,24,0 +16346,333,133,2,13,13,0 +16345,333,112,0,21,21,0 +16344,333,92,0,36,36,0 +16343,333,150,0,39,39,0 +16342,333,149,0,37,37,0 +16341,333,114,0,34,34,0 +16340,333,99,0,30,30,0 +16339,333,109,0,27,27,0 +16338,333,81,0,32,32,0 +16337,333,140,0,35,35,0 +16336,333,151,0,18,18,0 +16335,333,78,0,23,23,0 +16334,333,118,3,12,12,0 +16333,333,122,6,10,10,0 +16332,333,117,60,2,2,4 +16331,333,110,0,25,25,0 +16330,333,129,0,29,29,0 +16326,333,88,1,16,16,0 +16325,333,147,0,26,26,0 +16324,333,127,1,17,17,0 +16323,333,90,0,31,31,0 +16322,333,146,0,28,28,0 +16367,334,77,40,3,3,0 +16369,334,129,0,30,30,0 +16370,334,110,0,26,26,0 +16371,334,117,69,2,2,5 +16388,334,152,0,38,38,0 +16387,334,101,0,34,34,0 +16386,334,139,0,25,25,0 +16385,334,133,2,13,13,0 +16384,334,112,0,22,22,0 +16383,334,92,0,36,36,0 +16382,334,150,0,39,39,0 +16381,334,149,0,37,37,0 +16380,334,114,0,24,24,0 +16379,334,99,0,31,31,0 +16378,334,109,0,28,28,0 +16377,334,81,0,33,33,0 +16376,334,140,0,35,35,0 +16375,334,151,0,18,18,0 +16374,334,78,0,20,20,0 +16373,334,118,3,12,12,0 +16372,334,122,6,10,10,0 +16368,334,148,0,21,21,0 +16366,334,95,31,4,4,1 +16365,334,88,2,15,15,0 +16364,334,147,0,27,27,0 +16363,334,127,1,17,17,0 +16361,334,146,0,29,29,0 +16428,335,65,0,35,35,0 +16427,335,152,0,39,39,0 +16405,335,95,31,6,6,1 +16406,335,77,40,3,3,0 +16407,335,148,0,22,22,0 +16426,335,101,0,34,34,0 +16425,335,139,0,26,26,0 +16424,335,133,2,16,16,0 +16423,335,112,0,23,23,0 +16422,335,92,0,37,37,0 +16421,335,150,0,40,40,0 +16420,335,149,0,38,38,0 +16419,335,114,0,25,25,0 +16418,335,99,0,32,32,0 +16417,335,109,0,29,29,0 +16416,335,81,0,33,33,0 +16415,335,140,0,36,36,0 +16414,335,151,0,20,20,0 +16413,335,78,0,19,19,0 +16412,335,118,3,14,14,0 +16411,335,122,6,10,10,0 +16410,335,117,69,2,2,5 +16409,335,110,0,27,27,0 +16408,335,129,0,31,31,0 +16404,335,88,6,12,12,0 +16402,335,127,1,18,18,0 +16401,335,90,6,11,11,0 +16400,335,146,0,30,30,0 +16391,335,123,32,5,5,1 +16468,336,65,0,35,35,0 +16467,336,152,0,39,39,0 +16444,336,88,6,12,12,0 +16445,336,95,37,5,5,1 +16446,336,77,43,4,4,0 +16447,336,148,0,22,22,0 +16448,336,129,0,31,31,0 +16449,336,110,0,27,27,0 +16466,336,101,0,34,34,0 +16465,336,139,0,26,26,0 +16464,336,133,2,16,16,0 +16463,336,112,0,23,23,0 +16462,336,92,0,37,37,0 +16461,336,150,0,40,40,0 +16460,336,149,0,38,38,0 +16459,336,114,0,25,25,0 +16458,336,99,0,32,32,0 +16457,336,109,0,29,29,0 +16456,336,81,0,33,33,0 +16455,336,140,0,36,36,0 +16454,336,151,0,20,20,0 +16453,336,78,0,19,19,0 +16452,336,118,3,14,14,0 +16451,336,122,6,10,10,0 +16450,336,117,71,2,2,5 +16443,336,147,0,28,28,0 +16442,336,127,1,18,18,0 +16441,336,90,6,11,11,0 +16440,336,146,0,30,30,0 +16439,336,145,21,8,8,0 +8261,1,8,0,15,15,0 +8260,1,9,0,14,14,0 +8259,1,20,0,13,13,0 +8258,1,17,0,12,12,0 +8257,1,21,0,11,11,0 +8256,1,2,0,10,10,0 +8255,1,16,0,9,9,0 +8254,1,7,1,8,8,0 +8253,1,67,2,7,7,0 +8252,1,3,3,6,6,0 +8251,1,4,4,5,5,0 +8250,1,10,5,4,4,0 +8249,1,15,6,3,3,0 +8248,1,22,8,2,2,0 +8247,1,18,10,1,1,1 +17669,2,5,0,20,20,0 +17668,2,6,0,15,15,0 +17667,2,12,0,17,17,0 +17666,2,13,0,13,13,0 +17665,2,8,0,18,18,0 +17664,2,9,0,19,19,0 +17663,2,20,0,16,16,0 +17662,2,17,1.5,9,9,0 +17661,2,21,0,14,14,0 +17660,2,2,4,5,5,0 +17659,2,16,0,12,12,0 +17658,2,7,1,11,11,0 +17657,2,67,2,8,8,0 +17656,2,3,3.5,7,7,0 +17655,2,4,4,6,6,0 +17654,2,10,8,4,4,0 +17653,2,15,8.5,3,3,0 +17652,2,22,10,2,2,0 +17651,2,18,15,1,1,2 +13613,36,8,10,1,1,1 +13614,36,4,8,2,2,0 +13615,36,1,6,3,3,0 +13616,36,2,5,4,4,0 +13636,37,3,2,8,8,0 +13630,37,8,16,2,2,1 +13631,37,4,18,1,1,1 +13632,37,1,14,3,3,0 +13633,37,2,10,4,4,0 +13634,37,21,7,5,5,0 +13676,39,13,27,3,3,2 +13671,39,8,22,4,4,1 +13672,39,4,28,2,2,1 +13673,39,1,30,1,1,0 +13674,39,2,15,5,5,0 +13698,40,13,33,3,3,2 +13693,40,8,23,4,4,1 +13694,40,4,38,1,1,2 +13695,40,1,38,2,2,0 +13696,40,2,18,5,5,0 +13719,41,21,13,6,6,0 +13717,41,1,48,1,1,1 +13715,41,8,27,4,4,1 +13723,41,15,4,13,13,0 +13727,41,17,0,15,15,0 +13725,41,22,0,17,17,0 +13741,42,21,13,6,6,0 +13739,42,1,58,1,1,2 +13737,42,8,32,4,4,1 +13749,42,17,2,14,14,0 +13745,42,15,7,10,10,0 +13747,42,22,0,18,18,0 +13764,43,21,16,7,7,0 +13762,43,1,64,1,1,2 +13760,43,8,42,4,4,2 +13768,43,15,7,10,10,0 +13770,43,22,0,19,19,0 +13786,44,2,33,5,5,0 +13785,44,1,70,1,1,2 +13783,44,8,52,3,3,3 +13788,44,13,51,4,4,2 +13791,44,15,7,10,10,0 +13793,44,22,0,18,18,0 +13812,45,3,5,13,13,0 +13810,45,21,17,7,7,0 +13806,45,8,52,4,4,3 +13807,45,4,68,2,2,3 +13808,45,1,70,1,1,2 +13831,46,1,80,1,1,3 +13829,46,8,60,3,3,3 +13834,46,13,59,4,4,2 +13839,46,22,0,18,18,0 +13854,47,1,84,1,1,3 +13852,47,8,68,4,4,3 +13859,47,23,5,14,14,0 +13860,47,15,7,13,13,0 +13878,48,1,92,1,1,3 +13876,48,8,74,3,3,3 +13882,48,3,12,10,10,0 +13883,48,23,5,14,14,0 +13902,49,1,97,1,1,3 +13900,49,8,84,3,3,4 +13906,49,3,15,9,9,0 +13907,49,23,5,14,14,0 +13926,50,1,107,1,1,4 +13924,50,8,90,3,3,4 +13930,50,3,15,9,9,0 +13931,50,23,5,14,14,0 +13950,51,1,107,1,1,4 +13948,51,8,100,3,3,5 +13954,51,3,15,9,9,0 +13976,52,21,21,8,8,0 +13974,52,1,109,2,2,4 +15883,321,150,0,33,33,0 +15881,321,114,0,31,31,0 +15879,321,109,0,29,29,0 +15875,321,78,0,25,25,0 +15873,321,122,0,23,23,0 +15871,321,110,0,21,21,0 +15869,321,148,0,19,19,0 +15867,321,95,0,17,17,0 +15865,321,147,0,15,15,0 +15863,321,90,0,13,13,0 +15861,321,145,0,11,11,0 +15857,321,94,0,7,7,0 +15858,321,103,0,8,8,0 +15859,321,119,0,9,9,0 +15884,321,92,0,34,34,0 +15882,321,149,0,32,32,0 +15880,321,99,0,30,30,0 +15878,321,81,0,28,28,0 +15876,321,151,0,26,26,0 +15874,321,118,0,24,24,0 +15872,321,117,0,22,22,0 +15870,321,129,0,20,20,0 +15868,321,77,0,18,18,0 +15866,321,88,0,16,16,0 +15864,321,127,0,14,14,0 +15862,321,146,0,12,12,0 +15860,321,105,0,10,10,0 +15918,322,92,0,35,35,0 +15916,322,149,0,34,34,0 +15915,322,114,0,26,26,0 +15913,322,109,0,32,32,0 +15911,322,140,0,31,31,0 +15910,322,151,0,24,24,0 +15908,322,118,0,27,27,0 +15907,322,122,0,30,30,0 +15906,322,117,9,2,2,1 +15902,322,77,6,4,4,0 +15903,322,148,0,25,25,0 +15904,322,129,0,28,28,0 +15900,322,88,0,23,23,0 +15901,322,95,3,7,7,0 +15899,322,147,0,21,21,0 +15898,322,127,0,20,20,0 +15897,322,90,0,18,18,0 +15896,322,146,0,17,17,0 +15895,322,145,0,13,13,0 +15893,322,119,0,12,12,0 +15890,322,138,1,9,9,0 +15888,322,137,4,6,6,0 +15945,323,78,0,17,17,0 +15944,323,118,0,13,13,0 +15943,323,122,0,31,31,0 +15941,323,110,0,29,29,0 +15939,323,148,0,27,27,0 +15938,323,77,12,3,3,0 +15937,323,95,3,9,9,0 +15936,323,88,0,28,28,0 +15935,323,147,0,19,19,0 +15934,323,127,0,23,23,0 +15930,323,105,0,18,18,0 +15929,323,119,9,4,4,1 +15928,323,103,0,14,14,0 +15927,323,94,0,12,12,0 +15926,323,138,1,11,11,0 +15925,323,131,2,10,10,0 +15924,323,137,6,7,7,0 +15995,324,133,2,10,10,0 +15993,324,92,0,36,36,0 +15992,324,150,0,39,39,0 +15991,324,149,0,37,37,0 +15990,324,114,0,32,32,0 +15988,324,109,0,22,22,0 +15987,324,81,0,26,26,0 +15971,324,146,0,23,23,0 +15969,324,105,0,20,20,0 +15968,324,119,9,5,5,1 +15967,324,103,1,12,12,0 +15966,324,94,0,14,14,0 +15965,324,138,1,13,13,0 +15964,324,131,2,11,11,0 +15963,324,137,6,7,7,0 +15962,324,123,9,6,6,0 +16020,325,117,14,3,3,1 +16019,325,110,0,30,30,0 +16017,325,148,0,16,16,0 +16015,325,95,7,8,8,0 +16014,325,88,0,24,24,0 +16008,325,105,0,21,21,0 +16009,325,145,4,9,9,0 +16010,325,146,0,25,25,0 +16007,325,119,9,6,6,1 +16006,325,103,1,13,13,0 +16005,325,94,0,15,15,0 +16004,325,138,1,14,14,0 +16051,326,127,0,29,29,0 +16050,326,90,0,28,28,0 +16049,326,146,0,25,25,0 +16039,326,55,13,4,4,0 +16047,326,105,0,20,20,0 +16046,326,119,9,8,8,1 +16044,326,94,0,15,15,0 +16043,326,138,1,14,14,0 +16042,326,131,2,10,10,0 +16088,327,146,0,25,25,0 +16081,327,131,2,11,11,0 +16082,327,138,1,15,15,0 +16083,327,94,0,16,16,0 +16084,327,103,1,14,14,0 +16077,327,102,35,1,1,3 +16078,327,55,13,5,5,0 +16079,327,123,11,7,7,0 +16128,328,90,0,29,29,0 +16126,328,145,7,9,9,0 +16125,328,105,0,22,22,0 +16123,328,103,4,11,11,0 +16122,328,94,0,17,17,0 +16121,328,138,1,16,16,0 +16120,328,131,2,13,13,0 +16119,328,137,18,4,4,0 +16118,328,123,17,5,5,0 +16167,329,90,0,29,29,0 +16165,329,145,13,7,7,0 +16164,329,105,0,22,22,0 +16162,329,103,4,11,11,0 +16161,329,94,0,17,17,0 +16160,329,138,1,16,16,0 +16159,329,131,2,13,13,0 +16158,329,137,18,5,5,0 +16157,329,123,18,4,4,0 +16206,330,90,0,31,31,0 +16204,330,145,13,8,8,0 +16203,330,105,0,23,23,0 +16202,330,119,15,6,6,1 +16201,330,103,5,11,11,0 +16200,330,94,0,18,18,0 +16199,330,138,1,16,16,0 +16198,330,131,2,14,14,0 +16245,331,90,0,31,31,0 +16243,331,145,16,6,6,0 +16242,331,105,0,23,23,0 +16241,331,119,15,7,7,1 +16240,331,103,5,11,11,0 +16239,331,94,0,19,19,0 +16238,331,138,1,16,16,0 +16237,331,131,2,14,14,0 +16284,332,90,0,31,31,0 +16282,332,145,16,7,7,0 +16281,332,105,0,23,23,0 +16280,332,119,17,6,6,1 +16279,332,103,5,11,11,0 +16278,332,94,0,19,19,0 +16277,332,138,2,15,15,0 +16276,332,131,2,14,14,0 +16321,333,145,17,8,8,0 +16311,333,102,78,1,1,6 +16319,333,119,17,7,7,1 +16317,333,94,0,19,19,0 +16316,333,138,2,15,15,0 +16315,333,131,2,14,14,0 +16314,333,137,26,5,5,0 +16313,333,123,27,4,4,1 +16362,334,90,0,32,32,0 +16360,334,145,21,7,7,0 +16359,334,105,0,23,23,0 +16358,334,119,19,8,8,1 +16357,334,103,5,11,11,0 +16356,334,94,0,19,19,0 +16355,334,138,2,16,16,0 +16354,334,131,2,14,14,0 +16389,335,102,78,1,1,6 +16399,335,145,21,8,8,0 +16397,335,119,22,7,7,1 +16396,335,103,5,13,13,0 +16395,335,94,0,21,21,0 +16394,335,138,3,15,15,0 +16429,336,102,78,1,1,6 +16438,336,105,0,24,24,0 +16436,336,103,5,13,13,0 +16435,336,94,0,21,21,0 +16434,336,138,3,15,15,0 +16433,336,131,2,17,17,0 +16432,336,137,43,3,3,2 +15877,321,140,0,27,27,0 +15856,321,138,1,6,6,0 +15855,321,131,2,5,5,0 +15854,321,137,3,4,4,0 +15853,321,123,4,3,3,0 +15852,321,55,6,2,2,0 +15851,321,102,9,1,1,1 +15887,322,123,6,5,5,0 +15886,322,55,6,3,3,0 +15885,322,102,13,1,1,1 +15923,323,123,6,6,6,0 +15922,323,55,7,5,5,0 +15970,324,145,4,8,8,0 +15960,324,102,22,1,1,2 +15961,324,55,13,3,3,0 +16002,325,137,12,5,5,0 +15999,325,102,31,1,1,3 +16041,326,137,13,6,6,0 +16040,326,123,11,7,7,0 +16038,326,102,31,1,1,3 +16086,327,105,0,21,21,0 +16085,327,119,10,8,8,1 +16080,327,137,16,4,4,0 +16116,328,102,39,2,2,3 +16155,329,102,48,1,1,4 +16197,330,137,22,5,5,0 +16195,330,55,13,7,7,0 +16194,330,102,54,1,1,4 +16236,331,137,24,5,5,0 +16234,331,55,13,8,8,0 +16233,331,102,63,1,1,5 +16275,332,137,24,5,5,0 +16273,332,55,13,9,9,0 +16272,332,102,72,1,1,6 +16318,333,103,5,11,11,0 +16312,333,55,13,9,9,0 +16353,334,137,26,6,6,0 +16351,334,55,13,9,9,0 +16350,334,102,78,1,1,6 +16393,335,131,2,17,17,0 +16392,335,137,35,4,4,1 +16390,335,55,13,9,9,0 +16431,336,123,34,6,6,1 +16430,336,55,13,9,9,0 +15917,322,150,0,36,36,0 +15914,322,99,0,33,33,0 +15909,322,78,0,15,15,0 +15905,322,110,0,29,29,0 +15931,323,145,4,8,8,0 +15932,323,146,0,21,21,0 +15933,323,90,0,22,22,0 +15994,324,112,0,18,18,0 +15989,324,99,0,35,35,0 +16018,325,129,0,26,26,0 +16016,325,77,19,2,2,0 +16003,325,131,2,10,10,0 +16096,327,129,0,26,26,0 +16099,327,122,6,10,10,0 +16151,328,133,2,12,12,0 +16117,328,55,13,6,6,0 +16190,329,133,2,12,12,0 +16156,329,55,13,6,6,0 +16403,335,147,0,28,28,0 +16398,335,105,0,24,24,0 +16437,336,119,23,7,7,1 +17093,305,128,0,34,34,0 +17091,305,142,0,32,32,0 +17089,305,141,0,30,30,0 +17087,305,140,0,28,28,0 +17085,305,103,0,26,26,0 +17083,305,81,0,24,24,0 +17081,305,87,0,22,22,0 +17079,305,95,0,20,20,0 +17077,305,123,0,18,18,0 +17075,305,105,0,16,16,0 +17073,305,119,0,14,14,0 +17071,305,55,0,12,12,0 +17069,305,92,0,10,10,0 +17067,305,99,0,8,8,0 +17092,305,129,0,33,33,0 +17090,305,110,0,31,31,0 +17088,305,100,0,29,29,0 +17086,305,133,0,27,27,0 +17084,305,109,0,25,25,0 +17082,305,139,0,23,23,0 +17080,305,127,0,21,21,0 +17078,305,77,0,19,19,0 +17076,305,122,0,17,17,0 +17074,305,90,0,15,15,0 +17072,305,57,0,13,13,0 +17070,305,84,0,11,11,0 +17068,305,94,0,9,9,0 +17066,305,78,0,7,7,0 +17065,305,88,1,6,6,0 +17064,305,138,2,5,5,0 +17063,305,131,3,4,4,0 +17062,305,137,4,3,3,0 +17061,305,117,6,2,2,0 +17060,305,102,10,1,1,1 +17112,306,77,4,5,5,0 +17111,306,123,0,17,17,0 +17110,306,122,0,24,24,0 +17109,306,105,0,22,22,0 +17108,306,90,0,10,10,0 +17107,306,119,6,3,3,0 +17106,306,57,0,14,14,0 +17104,306,84,0,18,18,0 +17102,306,94,0,15,15,0 +17100,306,78,0,11,11,0 +17099,306,88,1,9,9,0 +17098,306,138,2,7,7,0 +17096,306,137,6,4,4,0 +17105,306,55,1,8,8,0 +17097,306,131,3,6,6,0 +17103,306,92,0,16,16,0 +17101,306,99,0,13,13,0 +17095,306,117,9,2,2,0 +17094,306,102,20,1,1,2 +17139,307,55,1,11,11,0 +17138,307,84,0,23,23,0 +17135,307,99,0,19,19,0 +17134,307,78,0,16,16,0 +17133,307,88,1,12,12,0 +17132,307,138,2,10,10,0 +17131,307,131,3,8,8,0 +17129,307,117,9,3,3,0 +17130,307,137,6,5,5,0 +17137,307,92,0,21,21,0 +17136,307,94,3,7,7,0 +17128,307,102,30,1,1,3 +17171,308,94,3,10,10,0 +17170,308,99,0,22,22,0 +17167,308,138,2,13,13,0 +17166,308,131,3,11,11,0 +17164,308,117,11,2,2,0 +17194,308,142,0,35,35,0 +17169,308,78,0,18,18,0 +17165,308,137,6,6,6,0 +17168,308,88,1,15,15,0 +17163,308,102,40,1,1,4 +17207,309,92,2,13,13,0 +17206,309,94,3,10,10,0 +17204,309,78,0,20,20,0 +17202,309,138,2,15,15,0 +17199,309,117,11,3,3,0 +17203,309,88,1,17,17,0 +17205,309,99,0,24,24,0 +17201,309,131,9,6,6,0 +17200,309,137,16,2,2,1 +17198,309,102,40,1,1,4 +17241,310,99,0,25,25,0 +17239,310,88,1,18,18,0 +17238,310,138,2,15,15,0 +17237,310,131,9,7,7,0 +17235,310,117,11,5,5,0 +17264,310,110,6,8,8,0 +17240,310,78,0,22,22,0 +17234,310,102,44,1,1,4 +17236,310,137,16,3,3,1 +17278,311,94,3,12,12,0 +17276,311,78,0,23,23,0 +17275,311,88,1,18,18,0 +17274,311,138,2,15,15,0 +17273,311,131,9,7,7,0 +17271,311,117,17,4,4,0 +17301,311,142,0,36,36,0 +17277,311,99,0,26,26,0 +17270,311,102,48,1,1,4 +17272,311,137,16,5,5,1 +17314,312,94,3,12,12,0 +17312,312,78,0,23,23,0 +17311,312,88,1,18,18,0 +17310,312,138,2,14,14,0 +17309,312,131,9,7,7,0 +17307,312,117,21,4,4,0 +17337,312,142,0,36,36,0 +17313,312,99,0,26,26,0 +17306,312,102,51,1,1,4 +17308,312,137,18,5,5,1 +17350,313,94,3,13,13,0 +17348,313,78,0,23,23,0 +17347,313,88,1,18,18,0 +17346,313,138,2,14,14,0 +17345,313,131,9,8,8,0 +17343,313,117,21,4,4,0 +17349,313,99,0,26,26,0 +17374,313,129,0,32,32,0 +17351,313,92,4,12,12,0 +17344,313,137,18,6,6,1 +17342,313,102,51,1,1,4 +17387,314,94,3,13,13,0 +17385,314,78,0,24,24,0 +17384,314,88,1,19,19,0 +17383,314,138,2,14,14,0 +17382,314,131,9,8,8,0 +17380,314,117,21,5,5,0 +17386,314,99,0,27,27,0 +17410,314,142,0,37,37,0 +17404,314,103,1,17,17,0 +17381,314,137,18,6,6,1 +17379,314,102,61,1,1,5 +17422,315,78,0,26,26,0 +17421,315,88,1,20,20,0 +17420,315,138,2,14,14,0 +17419,315,131,9,8,8,0 +17417,315,117,21,6,6,0 +17448,315,129,0,31,31,0 +17446,315,110,9,9,9,0 +17439,315,81,0,23,23,0 +17416,315,102,71,1,1,6 +17418,315,137,22,5,5,1 +17460,316,78,0,27,27,0 +17459,316,88,1,21,21,0 +17458,316,138,2,14,14,0 +17455,316,117,25,5,5,0 +17486,316,129,0,32,32,0 +17454,316,102,77,1,1,6 +17477,316,81,0,24,24,0 +17457,316,131,9,8,8,0 +17456,316,137,23,6,6,1 +17497,317,88,1,21,21,0 +17496,317,138,2,15,15,0 +17493,317,117,25,6,6,0 +17522,317,110,9,9,9,0 +17492,317,102,83,1,1,6 +17514,317,139,1,17,17,0 +17495,317,131,9,8,8,0 +17494,317,137,25,5,5,1 +17536,318,78,0,27,27,0 +17533,318,131,9,8,8,0 +17531,318,117,31,4,4,0 +17562,318,129,0,33,33,0 +17532,318,137,25,6,6,1 +17553,318,81,0,25,25,0 +17535,318,88,1,21,21,0 +17530,318,102,85,1,1,6 +17534,318,138,2,15,15,0 +17575,319,78,0,28,28,0 +17574,319,88,1,22,22,0 +17573,319,138,2,15,15,0 +17572,319,131,10,8,8,0 +17571,319,137,25,6,6,1 +17595,319,133,0,34,34,0 +17602,319,128,0,32,32,0 +17592,319,81,0,26,26,0 +17570,319,117,34,5,5,0 +17569,319,102,91,1,1,6 +17615,320,88,1,22,22,0 +17614,320,138,2,15,15,0 +17613,320,131,10,8,8,0 +17612,320,137,26.5,6,6,1 +17633,320,81,0.5,24,24,0 +17640,320,110,9,9,9,0 +17611,320,117,34,5,5,0 +17610,320,102,96,1,1,7 +17670,2,1,1,10,10,0 +17714,3,10,10,4,4,0 +17729,3,5,4,9,9,0 +17730,3,1,4,10,10,0 +17728,3,6,0,18,18,0 +17727,3,12,0,20,20,0 +17726,3,13,0,15,15,0 +17725,3,8,0,16,16,0 +17724,3,9,0,19,19,0 +17723,3,20,10,3,3,1 +17717,3,67,3,12,12,0 +17718,3,7,1,13,13,0 +17719,3,16,0,14,14,0 +17720,3,2,4,7,7,0 +17721,3,21,0,17,17,0 +17722,3,17,9.5,5,5,0 +17716,3,3,3.5,11,11,0 +17715,3,4,4,8,8,0 +17713,3,15,8.5,6,6,0 +17711,3,18,21,1,1,2 +17712,3,22,15,2,2,0 +17769,4,5,4,10,10,0 +17768,4,6,0,19,19,0 +17767,4,12,0,17,17,0 +17766,4,13,0,15,15,0 +17765,4,8,3,12,12,0 +17764,4,9,0,20,20,0 +17763,4,20,18,3,3,1 +17761,4,21,0,18,18,0 +17760,4,2,4,9,9,0 +17759,4,16,0,16,16,0 +17758,4,7,1,14,14,0 +17757,4,67,3,13,13,0 +17756,4,3,3.5,11,11,0 +17754,4,10,12,5,5,0 +17752,4,22,19,2,2,0 +17770,4,1,9,7,7,0 +17762,4,17,9.5,6,6,0 +17751,4,18,31,1,1,3 +17753,4,15,14.5,4,4,0 +17755,4,4,5,8,8,0 +17771,5,18,41,1,1,4 +17772,5,22,27,2,2,0 +17773,5,15,14.5,5,5,0 +17774,5,10,12,6,6,0 +17775,5,4,9,8,8,0 +17776,5,3,4.5,10,10,0 +17777,5,67,3,14,14,0 +17778,5,7,1,15,15,0 +17779,5,16,0,16,16,0 +17780,5,2,6,9,9,0 +17781,5,21,0,19,19,0 +17782,5,17,15.5,4,4,0 +17783,5,20,23,3,3,1 +17784,5,9,0,18,18,0 +17785,5,8,3,13,13,0 +17786,5,13,3,12,12,0 +17787,5,12,0,17,17,0 +17788,5,6,0,20,20,0 +17789,5,5,4,11,11,0 +17790,5,1,9,7,7,0 +17946,6,13,8,10,10,0 +17947,6,12,0,18,18,0 +17950,6,1,9,9,9,0 +17931,6,18,51,1,1,5 +17949,6,5,4,13,13,0 +17948,6,6,0,20,20,0 +17945,6,8,9,8,8,0 +17944,6,9,0,19,19,0 +17943,6,20,23,3,3,1 +17942,6,17,19.5,4,4,0 +17941,6,21,0,16,16,0 +17940,6,2,6,12,12,0 +17939,6,16,0,17,17,0 +17938,6,7,2,15,15,0 +17936,6,3,7.5,11,11,0 +17937,6,67,3,14,14,0 +17935,6,4,11,7,7,0 +17934,6,10,12,6,6,0 +17933,6,15,14.5,5,5,0 +17932,6,22,35,2,2,0 +17890,7,1,9,11,11,0 +17889,7,5,4,13,13,0 +17888,7,6,0,20,20,0 +17887,7,12,0,19,19,0 +17885,7,8,9,10,10,0 +17884,7,9,2,15,15,0 +17882,7,17,27.5,4,4,0 +17880,7,2,6,12,12,0 +17878,7,7,2,16,16,0 +17874,7,10,13,6,6,0 +17872,7,22,35,2,2,0 +17883,7,20,29,3,3,1 +17877,7,67,3,14,14,0 +17879,7,16,0,18,18,0 +17871,7,18,61,1,1,6 +17873,7,15,19.5,5,5,0 +17881,7,21,0,17,17,0 +17886,7,13,11,8,8,0 +17876,7,3,11.5,7,7,0 +17875,7,4,11,9,9,0 +17930,8,1,9,11,11,0 +17929,8,5,4,13,13,0 +17928,8,6,0,20,20,0 +17927,8,12,0,19,19,0 +17925,8,8,10,10,10,0 +17924,8,9,2,15,15,0 +17922,8,17,35.5,4,4,0 +17920,8,2,6,12,12,0 +17918,8,7,2,16,16,0 +17914,8,10,13,8,8,0 +17912,8,22,41,2,2,0 +17923,8,20,39,3,3,2 +17917,8,67,3,14,14,0 +17919,8,16,0,18,18,0 +17911,8,18,64,1,1,6 +17913,8,15,21.5,5,5,0 +17921,8,21,0,17,17,0 +17926,8,13,16,6,6,0 +17916,8,3,15.5,7,7,0 +17915,8,4,11,9,9,0 +17951,9,18,68,1,1,6 +17952,9,22,44,4,4,0 +17953,9,15,21.5,6,6,0 +17954,9,10,13,8,8,0 +17955,9,4,13,9,9,0 +17956,9,3,20.5,7,7,0 +17957,9,67,3,14,14,0 +17958,9,7,2,16,16,0 +17959,9,16,0,18,18,0 +17960,9,2,6,12,12,0 +17961,9,21,0,17,17,0 +17962,9,17,45.5,3,3,1 +17963,9,20,47,2,2,2 +17964,9,9,2,15,15,0 +17965,9,8,10,10,10,0 +17966,9,13,22,5,5,0 +17967,9,12,0,19,19,0 +17968,9,6,0,20,20,0 +17969,9,5,5,13,13,0 +17970,9,1,9,11,11,0 +17971,10,18,70,1,1,6 +17972,10,22,44,4,4,0 +17973,10,15,22.5,6,6,0 +17974,10,10,16,10,10,0 +17975,10,4,13,11,11,0 +17976,10,3,25.5,5,5,0 +17977,10,67,3,14,14,0 +17978,10,7,2,16,16,0 +17979,10,16,0,19,19,0 +17980,10,2,6,13,13,0 +17981,10,21,0,17,17,0 +17982,10,17,51.5,2,2,1 +17983,10,20,47,3,3,2 +17984,10,9,2,15,15,0 +17985,10,8,18,9,9,0 +17986,10,13,22,7,7,0 +17987,10,12,0,20,20,0 +17988,10,6,0,18,18,0 +17989,10,5,9,12,12,0 +17990,10,1,19,8,8,1 +17991,10,153,0,21,21,0 +17992,11,18,72,1,1,6 +17993,11,22,54,2,2,1 +17994,11,15,22.5,8,8,0 +17995,11,10,16,10,10,0 +17996,11,4,16,11,11,0 +17997,11,3,29.5,5,5,0 +17998,11,67,3,15,15,0 +17999,11,7,2,16,16,0 +18000,11,16,0,18,18,0 +18001,11,2,6,13,13,0 +18002,11,21,0,17,17,0 +18003,11,17,51.5,3,3,1 +18004,11,20,47,4,4,2 +18005,11,9,3,14,14,0 +18006,11,8,24,7,7,0 +18007,11,13,22,9,9,0 +18008,11,12,0,20,20,0 +18009,11,6,0,19,19,0 +18010,11,5,14,12,12,0 +18011,11,1,27,6,6,1 +18012,11,153,0,21,21,0 +18013,11,154,0,22,22,0 +18014,11,69,0,23,23,0 +18015,12,18,72,1,1,6 +18016,12,22,56,2,2,1 +18017,12,15,22.5,8,8,0 +18018,12,10,16,11,11,0 +18019,12,4,16,12,12,0 +18020,12,3,30.5,6,6,0 +18021,12,67,3,16,16,0 +18022,12,7,2,17,17,0 +18023,12,16,0,18,18,0 +18024,12,2,10,13,13,0 +18025,12,21,8,14,14,0 +18026,12,17,51.5,4,4,1 +18027,12,20,53,3,3,2 +18028,12,9,8,15,15,0 +18029,12,8,34,5,5,1 +18030,12,13,22,9,9,0 +18031,12,12,0,20,20,0 +18032,12,6,0,19,19,0 +18033,12,5,17,10,10,0 +18034,12,1,27,7,7,1 +18035,12,153,0,22,22,0 +18036,12,154,0,23,23,0 +18037,12,69,0,21,21,0 +18038,13,18,80,1,1,6 +18039,13,22,66,2,2,2 +18040,13,15,22.5,8,8,0 +18041,13,10,16,12,12,0 +18042,13,4,20,11,11,0 +18043,13,3,30.5,6,6,0 +18044,13,67,3,17,17,0 +18045,13,7,2,18,18,0 +18046,13,16,5,16,16,0 +18047,13,2,12,13,13,0 +18048,13,21,8,14,14,0 +18049,13,17,51.5,4,4,1 +18050,13,20,54,3,3,2 +18051,13,9,8,15,15,0 +18052,13,8,40,5,5,1 +18053,13,13,22,9,9,0 +18054,13,12,0,20,20,0 +18055,13,6,0,19,19,0 +18056,13,5,20,10,10,0 +18057,13,1,27,7,7,1 +18058,13,153,0,23,23,0 +18059,13,154,0,22,22,0 +18060,13,69,0,21,21,0 +18061,13,24,0,24,24,0 +18062,14,18,84,1,1,6 +18063,14,22,69,2,2,2 +18064,14,15,22.5,10,10,0 +18065,14,10,24,9,9,0 +18066,14,4,26,8,8,0 +18067,14,3,30.5,7,7,0 +18068,14,67,3,17,17,0 +18069,14,7,2,18,18,0 +18070,14,16,5,16,16,0 +18071,14,2,12,13,13,0 +18072,14,21,8,15,15,0 +18073,14,17,51.5,4,4,1 +18074,14,20,59,3,3,2 +18075,14,9,9,14,14,0 +18076,14,8,40,5,5,1 +18077,14,13,22,11,11,0 +18078,14,12,0,20,20,0 +18079,14,6,0,19,19,0 +18080,14,5,22,12,12,0 +18081,14,1,37,6,6,2 +18082,14,153,0,24,24,0 +18083,14,154,0,23,23,0 +18084,14,69,0,21,21,0 +18085,14,24,0,22,22,0 +18133,15,24,0,21,21,0 +18132,15,69,0,22,22,0 +18131,15,154,0,23,23,0 +18130,15,153,0,24,24,0 +18129,15,1,43,6,6,2 +18128,15,5,22,12,12,0 +18127,15,6,0,19,19,0 +18126,15,12,0,20,20,0 +18124,15,8,45,5,5,1 +18119,15,2,15,13,13,0 +18117,15,7,2,18,18,0 +18115,15,3,34.5,7,7,0 +18114,15,4,26,9,9,0 +18113,15,10,24,10,10,0 +18112,15,15,30.5,8,8,0 +18125,15,13,22,11,11,0 +18121,15,17,51.5,4,4,1 +18120,15,21,8,15,15,0 +18116,15,67,3,17,17,0 +18122,15,20,69,3,3,3 +18123,15,9,9,14,14,0 +18118,15,16,5,16,16,0 +18110,15,18,85,1,1,6 +18111,15,22,71,2,2,2 +18134,16,18,89,1,1,6 +18135,16,22,72,3,3,2 +18136,16,15,30.5,8,8,0 +18137,16,10,24,10,10,0 +18138,16,4,26,9,9,0 +18139,16,3,34.5,7,7,0 +18140,16,67,5,17,17,0 +18141,16,7,2,18,18,0 +18142,16,16,5,16,16,0 +18143,16,2,15,14,14,0 +18144,16,21,8,15,15,0 +18145,16,17,61.5,4,4,2 +18146,16,20,74,2,2,3 +18147,16,9,17,13,13,0 +18148,16,8,48,6,6,1 +18149,16,13,22,11,11,0 +18150,16,12,0,20,20,0 +18151,16,6,0,19,19,0 +18152,16,5,22,12,12,0 +18153,16,1,49,5,5,2 +18154,16,153,0,24,24,0 +18155,16,154,0,23,23,0 +18156,16,69,0,25,25,0 +18157,16,24,0,22,22,0 +18158,16,155,0,21,21,0 +18159,356,95,9,1,1,1 +18160,356,117,6,2,2,0 +18161,356,127,4,3,3,0 +18162,356,65,3,4,4,0 +18163,356,118,2,5,5,0 +18164,356,145,1,6,6,0 +18165,356,156,0,7,7,0 +18166,356,138,0,8,8,0 +18167,356,129,0,9,9,0 +18168,356,105,0,10,10,0 +18169,356,102,0,11,11,0 +18170,356,112,0,12,12,0 +18171,356,110,0,13,13,0 +18172,356,157,0,14,14,0 +18173,356,119,0,15,15,0 +18174,356,158,0,16,16,0 +18175,356,146,0,17,17,0 +18176,356,84,0,18,18,0 +18177,356,122,0,19,19,0 +18178,356,137,0,20,20,0 +18179,356,131,0,21,21,0 +18180,356,123,0,22,22,0 +18181,356,94,0,23,23,0 +18182,356,77,0,24,24,0 +18183,356,159,0,25,25,0 +18184,356,114,0,26,26,0 +18185,356,163,0,27,27,0 +18186,356,148,0,28,28,0 +18187,356,90,0,29,29,0 +18188,356,133,0,30,30,0 +18189,356,160,0,31,31,0 +18190,356,161,0,32,32,0 +18191,356,162,0,33,33,0 +18192,356,164,0,34,34,0 +18193,356,88,0,35,35,0 +18194,356,140,0,36,36,0 +18195,356,92,0,37,37,0 +18196,357,95,9,3,3,1 +18197,357,117,12,1,1,0 +18198,357,127,4,5,5,0 +18199,357,65,3,7,7,0 +18200,357,118,4,6,6,0 +18201,357,145,5,4,4,0 +18202,357,156,1,9,9,0 +18203,357,138,0,11,11,0 +18204,357,129,0,14,14,0 +18205,357,105,0,16,16,0 +18206,357,102,9,2,2,1 +18207,357,112,0,17,17,0 +18208,357,110,0,15,15,0 +18209,357,157,0,19,19,0 +18210,357,119,0,20,20,0 +18211,357,158,0,13,13,0 +18212,357,146,0,24,24,0 +18213,357,84,0,21,21,0 +18214,357,122,0,25,25,0 +18215,357,137,0,23,23,0 +18216,357,131,0,26,26,0 +18217,357,123,3,8,8,0 +18218,357,94,0,27,27,0 +18219,357,77,0,28,28,0 +18220,357,159,0,22,22,0 +18221,357,114,0,29,29,0 +18222,357,163,0,30,30,0 +18223,357,148,0,31,31,0 +18224,357,90,0,32,32,0 +18225,357,133,0,10,10,0 +18226,357,160,0,34,34,0 +18227,357,161,0,35,35,0 +18228,357,162,0,36,36,0 +18229,357,164,0,38,38,0 +18230,357,88,0,39,39,0 +18231,357,140,0,37,37,0 +18232,357,92,0,33,33,0 +18233,357,99,0,12,12,0 +18234,357,78,0,18,18,0 +18235,358,95,9,3,3,1 +18236,358,117,18,2,2,0 +18237,358,127,4,5,5,0 +18238,358,65,3,10,10,0 +18239,358,118,4,7,7,0 +18240,358,145,5,4,4,0 +18241,358,156,1,12,12,0 +18242,358,138,0,15,15,0 +18243,358,129,0,17,17,0 +18244,358,105,2,11,11,0 +18245,358,102,18,1,1,2 +18246,358,112,0,20,20,0 +18247,358,110,0,18,18,0 +18248,358,157,0,23,23,0 +18249,358,119,0,24,24,0 +18250,358,158,0,14,14,0 +18251,358,146,0,27,27,0 +18252,358,84,1,13,13,0 +18253,358,122,0,19,19,0 +18254,358,137,0,26,26,0 +18255,358,131,4,6,6,0 +18256,358,123,3,9,9,0 +18257,358,94,0,29,29,0 +18258,358,77,0,30,30,0 +18259,358,159,0,25,25,0 +18260,358,114,0,32,32,0 +18261,358,163,0,21,21,0 +18262,358,148,0,33,33,0 +18263,358,90,0,28,28,0 +18264,358,133,3,8,8,0 +18265,358,160,0,34,34,0 +18266,358,161,0,37,37,0 +18267,358,162,0,31,31,0 +18268,358,164,0,38,38,0 +18269,358,88,0,39,39,0 +18270,358,140,0,35,35,0 +18271,358,92,0,36,36,0 +18272,358,99,0,16,16,0 +18273,358,78,0,22,22,0 +18274,359,95,9,3,3,1 +18275,359,117,20,2,2,0 +18276,359,127,4,8,8,0 +18277,359,65,3,12,12,0 +18278,359,118,4,9,9,0 +18279,359,145,8,4,4,0 +18280,359,156,1,13,13,0 +18281,359,138,0,18,18,0 +18282,359,129,0,17,17,0 +18283,359,105,6,6,6,0 +18284,359,102,27,1,1,3 +18285,359,112,0,24,24,0 +18286,359,110,0,19,19,0 +18287,359,157,0,22,22,0 +18288,359,119,6,5,5,0 +18289,359,158,0,16,16,0 +18290,359,146,0,28,28,0 +18291,359,84,1,15,15,0 +18292,359,122,0,21,21,0 +18293,359,137,0,20,20,0 +18294,359,131,4,7,7,0 +18295,359,123,3,11,11,0 +18296,359,94,0,27,27,0 +18297,359,77,0,30,30,0 +18298,359,159,0,26,26,0 +18299,359,114,0,33,33,0 +18300,359,163,0,23,23,0 +18301,359,148,0,34,34,0 +18302,359,90,0,29,29,0 +18303,359,133,3,10,10,0 +18304,359,160,0,35,35,0 +18305,359,161,0,37,37,0 +18306,359,162,0,32,32,0 +18307,359,164,0,38,38,0 +18308,359,88,0,39,39,0 +18309,359,140,0,31,31,0 +18310,359,92,0,36,36,0 +18311,359,99,1,14,14,0 +18312,359,78,0,25,25,0 +18313,360,95,9,4,4,1 +18314,360,117,29,1,1,1 +18315,360,127,4,10,10,0 +18316,360,65,5,7,7,0 +18317,360,118,4,12,12,0 +18318,360,145,8,5,5,0 +18319,360,156,1,16,16,0 +18320,360,138,0,20,20,0 +18321,360,129,0,18,18,0 +18322,360,105,6,6,6,0 +18323,360,102,27,2,2,3 +18324,360,112,0,24,24,0 +18325,360,110,0,19,19,0 +18326,360,157,3,14,14,0 +18327,360,119,12,3,3,0 +18328,360,158,4,8,8,0 +18329,360,146,0,30,30,0 +18330,360,84,1,17,17,0 +18331,360,122,0,22,22,0 +18332,360,137,0,21,21,0 +18333,360,131,4,9,9,0 +18334,360,123,4,11,11,0 +18335,360,94,0,29,29,0 +18336,360,77,0,26,26,0 +18337,360,159,0,28,28,0 +18338,360,114,0,33,33,0 +18339,360,163,0,23,23,0 +18340,360,148,0,34,34,0 +18341,360,90,0,31,31,0 +18342,360,133,3,13,13,0 +18343,360,160,0,35,35,0 +18344,360,161,0,37,37,0 +18345,360,162,0,32,32,0 +18346,360,164,0,38,38,0 +18347,360,88,0,39,39,0 +18348,360,140,0,27,27,0 +18349,360,92,0,36,36,0 +18350,360,99,1,15,15,0 +18351,360,78,0,25,25,0 +18352,361,95,9,5,5,1 +18353,361,117,29,1,1,1 +18354,361,127,4,12,12,0 +18355,361,65,5,8,8,0 +18356,361,118,4,14,14,0 +18357,361,145,8,6,6,0 +18358,361,156,1,19,19,0 +18359,361,138,0,22,22,0 +18360,361,129,0,21,21,0 +18361,361,105,6,7,7,0 +18362,361,102,27,2,2,3 +18363,361,112,0,25,25,0 +18364,361,110,4,10,10,0 +18365,361,157,3,15,15,0 +18366,361,119,18,3,3,0 +18367,361,158,4,9,9,0 +18368,361,146,0,31,31,0 +18369,361,84,1,20,20,0 +18370,361,122,0,23,23,0 +18371,361,137,3,16,16,0 +18372,361,131,4,11,11,0 +18373,361,123,13,4,4,1 +18374,361,94,0,30,30,0 +18375,361,77,0,27,27,0 +18376,361,159,0,29,29,0 +18377,361,114,0,33,33,0 +18378,361,163,2,17,17,0 +18379,361,148,0,34,34,0 +18380,361,90,0,26,26,0 +18381,361,133,4,13,13,0 +18382,361,160,0,35,35,0 +18383,361,161,0,37,37,0 +18384,361,162,0,32,32,0 +18385,361,164,0,38,38,0 +18386,361,88,0,39,39,0 +18387,361,140,0,28,28,0 +18388,361,92,0,36,36,0 +18389,361,99,1,18,18,0 +18390,361,78,0,24,24,0 +18391,362,95,15,4,4,1 +18392,362,117,38,1,1,2 +18393,362,127,4,12,12,0 +18394,362,65,5,8,8,0 +18395,362,118,4,14,14,0 +18396,362,145,8,6,6,0 +18397,362,156,1,21,21,0 +18398,362,138,0,24,24,0 +18399,362,129,1,22,22,0 +18400,362,105,6,7,7,0 +18401,362,102,27,2,2,3 +18402,362,112,0,29,29,0 +18403,362,110,4,10,10,0 +18404,362,157,3,16,16,0 +18405,362,119,22,3,3,0 +18406,362,158,4,9,9,0 +18407,362,146,0,36,36,0 +18408,362,84,1,23,23,0 +18409,362,122,0,26,26,0 +18410,362,137,3,15,15,0 +18411,362,131,4,11,11,0 +18412,362,123,13,5,5,1 +18413,362,94,0,35,35,0 +18414,362,77,0,33,33,0 +18415,362,159,0,34,34,0 +18416,362,114,0,38,38,0 +18417,362,163,2,18,18,0 +18418,362,148,0,39,39,0 +18419,362,90,0,32,32,0 +18420,362,133,4,13,13,0 +18421,362,160,0,40,40,0 +18422,362,161,0,41,41,0 +18423,362,162,0,37,37,0 +18424,362,164,0,42,42,0 +18425,362,88,0,43,43,0 +18426,362,140,2,19,19,0 +18427,362,92,0,31,31,0 +18428,362,99,1,20,20,0 +18429,362,78,0,28,28,0 +18430,362,55,3,17,17,0 +18431,362,139,0,25,25,0 +18432,362,103,0,27,27,0 +18433,362,151,0,30,30,0 +18434,363,95,21,4,4,1 +18435,363,117,47,1,1,3 +18436,363,127,4,13,13,0 +18437,363,65,5,9,9,0 +18438,363,118,4,15,15,0 +18439,363,145,12,6,6,0 +18440,363,156,1,23,23,0 +18441,363,138,0,26,26,0 +18442,363,129,1,21,21,0 +18443,363,105,6,7,7,0 +18444,363,102,27,2,2,3 +18445,363,112,0,32,32,0 +18446,363,110,4,11,11,0 +18447,363,157,3,16,16,0 +18448,363,119,22,3,3,0 +18449,363,158,4,10,10,0 +18450,363,146,0,36,36,0 +18451,363,84,1,24,24,0 +18452,363,122,0,28,28,0 +18453,363,137,6,8,8,0 +18454,363,131,4,12,12,0 +18455,363,123,13,5,5,1 +18456,363,94,2,20,20,0 +18457,363,77,0,35,35,0 +18458,363,159,1,25,25,0 +18459,363,114,0,38,38,0 +18460,363,163,2,18,18,0 +18461,363,148,0,39,39,0 +18462,363,90,0,34,34,0 +18463,363,133,4,14,14,0 +18464,363,160,0,40,40,0 +18465,363,161,0,41,41,0 +18466,363,162,0,37,37,0 +18467,363,164,0,42,42,0 +18468,363,88,0,43,43,0 +18469,363,140,2,19,19,0 +18470,363,92,0,30,30,0 +18471,363,99,1,22,22,0 +18472,363,78,0,31,31,0 +18473,363,55,3,17,17,0 +18474,363,139,0,27,27,0 +18475,363,103,0,29,29,0 +18476,363,151,0,33,33,0 +18477,364,95,25,3,3,1 +18478,364,117,53,1,1,3 +18479,364,127,4,14,14,0 +18480,364,65,5,9,9,0 +18481,364,118,5,10,10,0 +18482,364,145,12,6,6,0 +18483,364,156,1,23,23,0 +18484,364,138,0,26,26,0 +18485,364,129,1,21,21,0 +18486,364,105,6,8,8,0 +18487,364,102,36,2,2,4 +18488,364,112,0,32,32,0 +18489,364,110,4,12,12,0 +18490,364,157,3,16,16,0 +18491,364,119,25,4,4,0 +18492,364,158,4,11,11,0 +18493,364,146,0,36,36,0 +18494,364,84,1,24,24,0 +18495,364,122,0,28,28,0 +18496,364,137,8,7,7,0 +18497,364,131,4,13,13,0 +18498,364,123,13,5,5,1 +18499,364,94,2,18,18,0 +18500,364,77,0,35,35,0 +18501,364,159,1,25,25,0 +18502,364,114,0,38,38,0 +18503,364,163,2,19,19,0 +18504,364,148,0,39,39,0 +18505,364,90,0,34,34,0 +18506,364,133,4,15,15,0 +18507,364,160,0,40,40,0 +18508,364,161,0,41,41,0 +18509,364,162,0,37,37,0 +18510,364,164,0,42,42,0 +18511,364,88,0,43,43,0 +18512,364,140,2,20,20,0 +18513,364,92,0,30,30,0 +18514,364,99,1,22,22,0 +18515,364,78,0,31,31,0 +18516,364,55,3,17,17,0 +18517,364,139,0,27,27,0 +18518,364,103,0,29,29,0 +18519,364,151,0,33,33,0 +18520,365,95,34,3,3,2 +18521,365,117,56,1,1,3 +18522,365,127,4,14,14,0 +18523,365,65,5,10,10,0 +18524,365,118,5,11,11,0 +18525,365,145,12,6,6,0 +18526,365,156,1,23,23,0 +18527,365,138,0,26,26,0 +18528,365,129,1,21,21,0 +18529,365,105,6,9,9,0 +18530,365,102,42,2,2,4 +18531,365,112,0,32,32,0 +18532,365,110,4,12,12,0 +18533,365,157,3,16,16,0 +18534,365,119,25,4,4,0 +18535,365,158,6,8,8,0 +18536,365,146,0,36,36,0 +18537,365,84,1,24,24,0 +18538,365,122,0,28,28,0 +18539,365,137,9,7,7,0 +18540,365,131,4,13,13,0 +18541,365,123,17,5,5,1 +18542,365,94,2,18,18,0 +18543,365,77,0,35,35,0 +18544,365,159,1,25,25,0 +18545,365,114,0,39,39,0 +18546,365,163,2,19,19,0 +18547,365,148,0,40,40,0 +18548,365,90,0,34,34,0 +18549,365,133,4,15,15,0 +18550,365,160,0,38,38,0 +18551,365,161,0,41,41,0 +18552,365,162,0,37,37,0 +18553,365,164,0,42,42,0 +18554,365,88,0,43,43,0 +18555,365,140,2,20,20,0 +18556,365,92,0,30,30,0 +18557,365,99,1,22,22,0 +18558,365,78,0,31,31,0 +18559,365,55,3,17,17,0 +18560,365,139,0,27,27,0 +18561,365,103,0,29,29,0 +18562,365,151,0,33,33,0 +18563,366,95,38,3,3,2 +18564,366,117,62,1,1,3 +18565,366,127,4,13,13,0 +18566,366,65,5,11,11,0 +18567,366,118,6,10,10,0 +18568,366,145,14,6,6,0 +18569,366,156,1,23,23,0 +18570,366,138,0,26,26,0 +18571,366,129,1,21,21,0 +18572,366,105,6,9,9,0 +18573,366,102,51,2,2,5 +18574,366,112,0,31,31,0 +18575,366,110,4,12,12,0 +18576,366,157,3,16,16,0 +18577,366,119,25,4,4,0 +18578,366,158,6,8,8,0 +18579,366,146,0,36,36,0 +18580,366,84,1,24,24,0 +18581,366,122,0,28,28,0 +18582,366,137,9,7,7,0 +18583,366,131,4,14,14,0 +18584,366,123,20,5,5,1 +18585,366,94,2,19,19,0 +18586,366,77,0,35,35,0 +18587,366,159,1,25,25,0 +18588,366,114,0,39,39,0 +18589,366,163,2,20,20,0 +18590,366,148,0,40,40,0 +18591,366,90,0,34,34,0 +18592,366,133,4,15,15,0 +18593,366,160,0,38,38,0 +18594,366,161,0,41,41,0 +18595,366,162,0,37,37,0 +18596,366,164,0,42,42,0 +18597,366,88,0,43,43,0 +18598,366,140,2,18,18,0 +18599,366,92,0,30,30,0 +18600,366,99,1,22,22,0 +18601,366,78,0,32,32,0 +18602,366,55,3,17,17,0 +18603,366,139,0,27,27,0 +18604,366,103,0,29,29,0 +18605,366,151,0,33,33,0 +18606,366,134,0,44,44,0 +18607,367,95,38,3,3,2 +18608,367,117,71,1,1,4 +18609,367,127,4,15,15,0 +18610,367,65,5,13,13,0 +18611,367,118,6,11,11,0 +18612,367,145,14,6,6,0 +18613,367,156,1,25,25,0 +18614,367,138,0,27,27,0 +18615,367,129,1,23,23,0 +18616,367,105,6,10,10,0 +18617,367,102,51,2,2,5 +18618,367,112,0,32,32,0 +18619,367,110,4,14,14,0 +18620,367,157,3,18,18,0 +18621,367,119,28,4,4,0 +18622,367,158,6,9,9,0 +18623,367,146,0,36,36,0 +18624,367,84,2,22,22,0 +18625,367,122,0,29,29,0 +18626,367,137,9,7,7,0 +18627,367,131,4,16,16,0 +18628,367,123,24,5,5,1 +18629,367,94,2,19,19,0 +18630,367,77,6,8,8,0 +18631,367,159,1,26,26,0 +18632,367,114,0,39,39,0 +18633,367,163,2,21,21,0 +18634,367,148,0,40,40,0 +18635,367,90,0,35,35,0 +18636,367,133,4,17,17,0 +18637,367,160,0,38,38,0 +18638,367,161,0,41,41,0 +18639,367,162,0,37,37,0 +18640,367,164,0,42,42,0 +18641,367,88,0,43,43,0 +18642,367,140,2,20,20,0 +18643,367,92,0,31,31,0 +18644,367,99,1,24,24,0 +18645,367,78,0,33,33,0 +18646,367,55,5,12,12,0 +18647,367,139,0,28,28,0 +18648,367,103,0,30,30,0 +18649,367,151,0,34,34,0 +18650,367,134,0,45,45,0 +18651,367,165,0,44,44,0 +18652,368,95,38,3,3,2 +18653,368,117,75,1,1,4 +18654,368,127,4,16,16,0 +18655,368,65,5,14,14,0 +18656,368,118,6,12,12,0 +18657,368,145,17,6,6,0 +18658,368,156,2,22,22,0 +18659,368,138,0,27,27,0 +18660,368,129,1,24,24,0 +18661,368,105,6,11,11,0 +18662,368,102,51,2,2,5 +18663,368,112,0,29,29,0 +18664,368,110,4,15,15,0 +18665,368,157,3,20,20,0 +18666,368,119,28,4,4,0 +18667,368,158,6,9,9,0 +18668,368,146,0,36,36,0 +18669,368,84,2,23,23,0 +18670,368,122,0,30,30,0 +18671,368,137,9,8,8,0 +18672,368,131,4,17,17,0 +18673,368,123,24,5,5,1 +18674,368,94,4,19,19,0 +18675,368,77,15,7,7,1 +18676,368,159,1,26,26,0 +18677,368,114,0,39,39,0 +18678,368,163,2,21,21,0 +18679,368,148,0,40,40,0 +18680,368,90,0,35,35,0 +18681,368,133,4,18,18,0 +18682,368,160,0,38,38,0 +18683,368,161,0,41,41,0 +18684,368,162,0,37,37,0 +18685,368,164,0,44,44,0 +18686,368,88,0,45,45,0 +18687,368,140,6,10,10,0 +18688,368,92,0,32,32,0 +18689,368,99,1,25,25,0 +18690,368,78,0,33,33,0 +18691,368,55,5,13,13,0 +18692,368,139,0,28,28,0 +18693,368,103,0,31,31,0 +18694,368,151,0,34,34,0 +18695,368,134,0,46,46,0 +18696,368,165,0,43,43,0 +18697,368,109,0,42,42,0 +18698,369,95,38,3,3,2 +18699,369,117,76,1,1,4 +18700,369,127,4,16,16,0 +18701,369,65,5,14,14,0 +18702,369,118,6,13,13,0 +18703,369,145,17,7,7,0 +18704,369,156,2,22,22,0 +18705,369,138,0,28,28,0 +18706,369,129,1,24,24,0 +18707,369,105,6,12,12,0 +18708,369,102,60,2,2,6 +18709,369,112,1,27,27,0 +18710,369,110,4,15,15,0 +18711,369,157,3,20,20,0 +18712,369,119,30,4,4,0 +18713,369,158,6,10,10,0 +18714,369,146,0,36,36,0 +18715,369,84,2,23,23,0 +18716,369,122,0,30,30,0 +18717,369,137,9,8,8,0 +18718,369,131,4,17,17,0 +18719,369,123,24,5,5,1 +18720,369,94,4,19,19,0 +18721,369,77,21,6,6,1 +18722,369,159,1,26,26,0 +18723,369,114,0,40,40,0 +18724,369,163,2,21,21,0 +18725,369,148,0,41,41,0 +18726,369,90,0,35,35,0 +18727,369,133,4,18,18,0 +18728,369,160,0,38,38,0 +18729,369,161,0,42,42,0 +18730,369,162,0,39,39,0 +18731,369,164,0,45,45,0 +18732,369,88,0,43,43,0 +18733,369,140,6,11,11,0 +18734,369,92,0,32,32,0 +18735,369,99,1,25,25,0 +18736,369,78,0,33,33,0 +18737,369,55,8,9,9,0 +18738,369,139,0,29,29,0 +18739,369,103,0,31,31,0 +18740,369,151,0,34,34,0 +18741,369,134,0,46,46,0 +18742,369,165,0,44,44,0 +18743,369,109,0,37,37,0 +18923,370,78,0,33,33,0 +18928,370,134,0,47,47,0 +18913,370,90,0,35,35,0 +18914,370,133,4,18,18,0 +18915,370,160,0,38,38,0 +18908,370,77,21,7,7,1 +18909,370,159,1,26,26,0 +18920,370,140,6,12,12,0 +18917,370,162,0,39,39,0 +18931,370,147,0,41,41,0 +18930,370,109,0,37,37,0 +18929,370,165,0,45,45,0 +18927,370,151,0,34,34,0 +18926,370,103,0,31,31,0 +18925,370,139,0,29,29,0 +18924,370,55,8,9,9,0 +18922,370,99,1,25,25,0 +18921,370,92,0,32,32,0 +18919,370,88,0,44,44,0 +18918,370,164,0,46,46,0 +18916,370,161,0,43,43,0 +18912,370,148,0,42,42,0 +18911,370,163,2,22,22,0 +18910,370,114,0,40,40,0 +18907,370,94,4,19,19,0 +18906,370,123,28,5,5,1 +18905,370,131,4,17,17,0 +18904,370,137,12,8,8,0 +18903,370,122,0,30,30,0 +18902,370,84,4,20,20,0 +18901,370,146,0,36,36,0 +18900,370,158,6,11,11,0 +18899,370,119,36,4,4,0 +18898,370,157,3,21,21,0 +18897,370,110,4,15,15,0 +18896,370,112,1,27,27,0 +18895,370,102,60,2,2,6 +18894,370,105,6,13,13,0 +18893,370,129,1,24,24,0 +18892,370,138,0,28,28,0 +18891,370,156,2,23,23,0 +18890,370,145,26,6,6,1 +18889,370,118,7,10,10,0 +18888,370,65,5,14,14,0 +18887,370,127,4,16,16,0 +18886,370,117,76,1,1,4 +18885,370,95,38,3,3,2 +18932,371,95,38,4,4,2 +18933,371,117,76,1,1,4 +18934,371,127,4,16,16,0 +18935,371,65,5,14,14,0 +18936,371,118,7,10,10,0 +18937,371,145,32,6,6,1 +18938,371,156,2,25,25,0 +18939,371,138,3,21,21,0 +18940,371,129,1,26,26,0 +18941,371,105,6,13,13,0 +18942,371,102,60,2,2,6 +18943,371,112,1,29,29,0 +18944,371,110,4,17,17,0 +18945,371,157,3,22,22,0 +18946,371,119,40,3,3,0 +18947,371,158,6,11,11,0 +18948,371,146,0,38,38,0 +18949,371,84,4,20,20,0 +18950,371,122,0,30,30,0 +18951,371,137,12,8,8,0 +18952,371,131,4,18,18,0 +18953,371,123,37,5,5,2 +18954,371,94,5,15,15,0 +18955,371,77,21,7,7,1 +18956,371,159,1,28,28,0 +18957,371,114,0,40,40,0 +18958,371,163,2,24,24,0 +18959,371,148,0,42,42,0 +18960,371,90,0,35,35,0 +18961,371,133,4,19,19,0 +18962,371,160,0,37,37,0 +18963,371,161,0,43,43,0 +18964,371,162,0,39,39,0 +18965,371,164,0,46,46,0 +18966,371,88,0,44,44,0 +18967,371,140,6,12,12,0 +18968,371,92,0,32,32,0 +18969,371,99,1,27,27,0 +18970,371,78,0,33,33,0 +18971,371,55,8,9,9,0 +18972,371,139,2,23,23,0 +18973,371,103,0,31,31,0 +18974,371,151,0,34,34,0 +18975,371,134,0,47,47,0 +18976,371,165,0,45,45,0 +18977,371,109,0,36,36,0 +18978,371,147,0,41,41,0 +18979,372,117,9,1,1,1 +18980,372,77,6,2,2,0 +18981,372,137,4,3,3,0 +18982,372,118,3,4,4,0 +18983,372,105,2,5,5,0 +18984,372,138,1,6,6,0 +18985,372,123,0,7,7,0 +18986,372,158,0,8,8,0 +18987,372,140,0,9,9,0 +18988,372,110,0,10,10,0 +18989,372,156,0,11,11,0 +18990,372,159,0,12,12,0 +18991,372,112,0,13,13,0 +18992,372,99,0,14,14,0 +18993,372,166,0,15,15,0 +18994,372,114,0,16,16,0 +18995,372,163,0,17,17,0 +18996,372,131,0,18,18,0 +18997,372,95,0,19,19,0 +18998,372,145,0,20,20,0 +18999,372,119,0,21,21,0 +19000,372,122,0,22,22,0 +19001,372,167,0,23,23,0 +19002,372,127,0,24,24,0 +19003,372,165,0,25,25,0 +19004,372,141,0,26,26,0 +19005,372,160,0,27,27,0 +19006,372,78,0,28,28,0 +19007,372,146,0,29,29,0 +19008,372,133,0,30,30,0 +19009,373,117,15,1,1,1 +19010,373,77,8,3,3,0 +19011,373,137,8,4,4,0 +19012,373,118,3,6,6,0 +19013,373,105,2,7,7,0 +19014,373,138,1,8,8,0 +19015,373,123,3,5,5,0 +19016,373,158,0,10,10,0 +19017,373,140,0,11,11,0 +19018,373,110,0,20,20,0 +19019,373,156,0,16,16,0 +19020,373,159,0,13,13,0 +19021,373,112,0,19,19,0 +19022,373,99,0,21,21,0 +19023,373,166,0,12,12,0 +19024,373,114,0,14,14,0 +19025,373,163,0,22,22,0 +19026,373,131,0,23,23,0 +19027,373,95,0,24,24,0 +19028,373,145,1,9,9,0 +19029,373,119,0,15,15,0 +19030,373,122,0,26,26,0 +19031,373,167,0,18,18,0 +19032,373,127,0,17,17,0 +19033,373,165,0,29,29,0 +19034,373,141,0,25,25,0 +19035,373,160,0,28,28,0 +19036,373,78,0,30,30,0 +19037,373,146,0,31,31,0 +19038,373,133,0,27,27,0 +19039,373,102,9,2,2,1 +19040,374,117,24,1,1,2 +19041,374,77,14,2,2,0 +19042,374,137,8,4,4,0 +19043,374,118,6,6,6,0 +19044,374,105,6,5,5,0 +19045,374,138,1,9,9,0 +19046,374,123,3,7,7,0 +19047,374,158,0,12,12,0 +19048,374,140,0,14,14,0 +19049,374,110,0,22,22,0 +19050,374,156,2,8,8,0 +19051,374,159,0,18,18,0 +19052,374,112,0,21,21,0 +19053,374,99,0,23,23,0 +19054,374,166,0,16,16,0 +19055,374,114,0,13,13,0 +19056,374,163,0,26,26,0 +19057,374,131,0,27,27,0 +19058,374,95,0,25,25,0 +19059,374,145,1,11,11,0 +19060,374,119,1,10,10,0 +19061,374,122,0,17,17,0 +19062,374,167,0,20,20,0 +19063,374,127,0,19,19,0 +19064,374,165,0,28,28,0 +19065,374,141,0,29,29,0 +19066,374,160,0,24,24,0 +19067,374,78,0,15,15,0 +19068,374,146,0,31,31,0 +19069,374,133,0,30,30,0 +19070,374,102,9,3,3,1 +19071,375,117,33,1,1,3 +19072,375,77,18,2,2,0 +19073,375,137,8,5,5,0 +19074,375,118,8,6,6,0 +19075,375,105,9,4,4,0 +19076,375,138,1,11,11,0 +19077,375,123,3,7,7,0 +19078,375,158,1,9,9,0 +19079,375,140,0,14,14,0 +19080,375,110,0,25,25,0 +19081,375,156,2,8,8,0 +19082,375,159,0,18,18,0 +19083,375,112,0,24,24,0 +19084,375,99,0,20,20,0 +19085,375,166,0,16,16,0 +19086,375,114,0,13,13,0 +19087,375,163,0,27,27,0 +19088,375,131,0,28,28,0 +19089,375,95,0,26,26,0 +19090,375,145,1,10,10,0 +19091,375,119,1,12,12,0 +19092,375,122,0,17,17,0 +19093,375,167,0,23,23,0 +19094,375,127,0,21,21,0 +19095,375,165,0,19,19,0 +19096,375,141,0,29,29,0 +19097,375,160,0,22,22,0 +19098,375,78,0,15,15,0 +19099,375,146,0,30,30,0 +19100,375,133,0,31,31,0 +19101,375,102,15,3,3,1 +19102,376,117,39,1,1,3 +19103,376,77,18,3,3,0 +19104,376,137,11,4,4,0 +19105,376,118,8,6,6,0 +19106,376,105,9,5,5,0 +19107,376,138,1,12,12,0 +19108,376,123,7,7,7,0 +19109,376,158,1,10,10,0 +19110,376,140,0,16,16,0 +19111,376,110,0,17,17,0 +19112,376,156,3,8,8,0 +19113,376,159,0,21,21,0 +19114,376,112,0,20,20,0 +19115,376,99,0,15,15,0 +19116,376,166,0,19,19,0 +19117,376,114,0,14,14,0 +19118,376,163,0,27,27,0 +19119,376,131,0,22,22,0 +19120,376,95,0,28,28,0 +19121,376,145,1,11,11,0 +19122,376,119,1,13,13,0 +19123,376,122,2,9,9,0 +19124,376,167,0,26,26,0 +19125,376,127,0,25,25,0 +19126,376,165,0,23,23,0 +19127,376,141,0,29,29,0 +19128,376,160,0,24,24,0 +19129,376,78,0,18,18,0 +19130,376,146,0,30,30,0 +19131,376,133,0,31,31,0 +19132,376,102,24,2,2,2 +19133,377,117,45,1,1,3 +19134,377,77,18,3,3,0 +19135,377,137,11,5,5,0 +19136,377,118,8,7,7,0 +19137,377,105,9,6,6,0 +19138,377,138,1,13,13,0 +19139,377,123,11,4,4,0 +19140,377,158,1,11,11,0 +19141,377,140,0,19,19,0 +19142,377,110,3,9,9,0 +19143,377,156,5,8,8,0 +19144,377,159,0,24,24,0 +19145,377,112,0,23,23,0 +19146,377,99,0,17,17,0 +19147,377,166,0,22,22,0 +19148,377,114,0,16,16,0 +19149,377,163,0,30,30,0 +19150,377,131,0,25,25,0 +19151,377,95,0,31,31,0 +19152,377,145,1,12,12,0 +19153,377,119,1,14,14,0 +19154,377,122,2,10,10,0 +19155,377,167,0,29,29,0 +19156,377,127,0,28,28,0 +19157,377,165,0,26,26,0 +19158,377,141,0,20,20,0 +19159,377,160,0,27,27,0 +19160,377,78,0,21,21,0 +19161,377,146,0,32,32,0 +19162,377,133,0,18,18,0 +19163,377,102,33,2,2,3 +19164,377,94,1,15,15,0 +19165,378,117,54,1,1,4 +19166,378,77,21,3,3,0 +19167,378,137,13,5,5,0 +19168,378,118,8,7,7,0 +19169,378,105,13,4,4,0 +19170,378,138,1,12,12,0 +19171,378,123,11,6,6,0 +19172,378,158,1,13,13,0 +19173,378,140,0,20,20,0 +19174,378,110,3,9,9,0 +19175,378,156,5,8,8,0 +19176,378,159,0,25,25,0 +19177,378,112,0,24,24,0 +19178,378,99,0,18,18,0 +19179,378,166,0,23,23,0 +19180,378,114,0,16,16,0 +19181,378,163,0,30,30,0 +19182,378,131,0,26,26,0 +19183,378,95,0,31,31,0 +19184,378,145,2,11,11,0 +19185,378,119,1,14,14,0 +19186,378,122,2,10,10,0 +19187,378,167,0,29,29,0 +19188,378,127,0,19,19,0 +19189,378,165,0,27,27,0 +19190,378,141,0,22,22,0 +19191,378,160,0,28,28,0 +19192,378,78,0,21,21,0 +19193,378,146,0,32,32,0 +19194,378,133,0,17,17,0 +19195,378,102,39,2,2,3 +19196,378,94,1,15,15,0 +19197,379,117,54,1,1,4 +19198,379,77,21,3,3,0 +19199,379,137,15,4,4,0 +19200,379,118,9,7,7,0 +19201,379,105,13,5,5,0 +19202,379,138,1,15,15,0 +19203,379,123,11,6,6,0 +19204,379,158,1,14,14,0 +19205,379,140,0,21,21,0 +19206,379,110,3,12,12,0 +19207,379,156,5,10,10,0 +19208,379,159,0,26,26,0 +19209,379,112,0,25,25,0 +19210,379,99,0,20,20,0 +19211,379,166,0,24,24,0 +19212,379,114,0,18,18,0 +19213,379,163,0,31,31,0 +19214,379,131,0,27,27,0 +19215,379,95,6,8,8,0 +19216,379,145,6,9,9,0 +19217,379,119,1,16,16,0 +19218,379,122,2,13,13,0 +19219,379,167,0,30,30,0 +19220,379,127,3,11,11,0 +19221,379,165,0,28,28,0 +19222,379,141,0,22,22,0 +19223,379,160,0,29,29,0 +19224,379,78,0,23,23,0 +19225,379,146,0,32,32,0 +19226,379,133,0,19,19,0 +19227,379,102,48,2,2,4 +19228,379,94,1,17,17,0 +19229,380,117,60,1,1,4 +19230,380,77,25,3,3,0 +19231,380,137,15,5,5,0 +19232,380,118,9,7,7,0 +19233,380,105,16,4,4,0 +19234,380,138,1,15,15,0 +19235,380,123,12,6,6,0 +19236,380,158,1,14,14,0 +19237,380,140,0,21,21,0 +19238,380,110,3,13,13,0 +19239,380,156,5,10,10,0 +19240,380,159,0,26,26,0 +19241,380,112,0,25,25,0 +19242,380,99,0,20,20,0 +19243,380,166,0,24,24,0 +19244,380,114,0,18,18,0 +19245,380,163,0,32,32,0 +19246,380,131,0,27,27,0 +19247,380,95,6,8,8,0 +19248,380,145,6,9,9,0 +19249,380,119,1,16,16,0 +19250,380,122,4,11,11,0 +19251,380,167,0,31,31,0 +19252,380,127,3,12,12,0 +19253,380,165,0,29,29,0 +19254,380,141,0,22,22,0 +19255,380,160,0,30,30,0 +19256,380,78,0,23,23,0 +19257,380,146,0,28,28,0 +19258,380,133,0,19,19,0 +19259,380,102,57,2,2,5 +19260,380,94,1,17,17,0 +19261,381,117,66,2,2,4 +19262,381,77,28,3,3,0 +19263,381,137,15,6,6,0 +19264,381,118,9,7,7,0 +19265,381,105,16,5,5,0 +19266,381,138,1,15,15,0 +19267,381,123,16,4,4,0 +19268,381,158,1,16,16,0 +19269,381,140,0,21,21,0 +19270,381,110,3,13,13,0 +19271,381,156,5,11,11,0 +19272,381,159,0,24,24,0 +19273,381,112,0,25,25,0 +19274,381,99,0,20,20,0 +19275,381,166,0,26,26,0 +19276,381,114,0,18,18,0 +19277,381,163,0,32,32,0 +19278,381,131,0,27,27,0 +19279,381,95,6,8,8,0 +19280,381,145,6,9,9,0 +19281,381,119,2,14,14,0 +19282,381,122,4,12,12,0 +19283,381,167,0,31,31,0 +19284,381,127,5,10,10,0 +19285,381,165,0,29,29,0 +19286,381,141,0,22,22,0 +19287,381,160,0,30,30,0 +19288,381,78,0,23,23,0 +19289,381,146,0,28,28,0 +19290,381,133,0,19,19,0 +19291,381,102,66,1,1,6 +19292,381,94,1,17,17,0 +19293,382,117,72,2,2,4 +19294,382,77,28,3,3,0 +19295,382,137,18,4,4,0 +19296,382,118,11,7,7,0 +19297,382,105,16,6,6,0 +19298,382,138,1,16,16,0 +19299,382,123,16,5,5,0 +19300,382,158,2,14,14,0 +19301,382,140,0,22,22,0 +19302,382,110,3,13,13,0 +19303,382,156,5,12,12,0 +19304,382,159,0,27,27,0 +19305,382,112,0,23,23,0 +19306,382,99,0,21,21,0 +19307,382,166,0,26,26,0 +19308,382,114,0,18,18,0 +19309,382,163,0,33,33,0 +19310,382,131,0,28,28,0 +19311,382,95,6,9,9,0 +19312,382,145,6,10,10,0 +19313,382,119,2,15,15,0 +19314,382,122,8,8,8,0 +19315,382,167,0,32,32,0 +19316,382,127,5,11,11,0 +19317,382,165,0,30,30,0 +19318,382,141,0,24,24,0 +19319,382,160,0,31,31,0 +19320,382,78,0,25,25,0 +19321,382,146,0,29,29,0 +19322,382,133,0,20,20,0 +19323,382,102,75,1,1,7 +19324,382,94,1,17,17,0 +19325,382,84,0,19,19,0 +19326,383,117,72,2,2,4 +19327,383,77,37,3,3,1 +19328,383,137,18,5,5,0 +19329,383,118,14,7,7,0 +19330,383,105,22,4,4,0 +19331,383,138,1,16,16,0 +19332,383,123,17,6,6,0 +19333,383,158,6,10,10,0 +19334,383,140,0,22,22,0 +19335,383,110,3,14,14,0 +19336,383,156,5,13,13,0 +19337,383,159,0,27,27,0 +19338,383,112,0,23,23,0 +19339,383,99,0,21,21,0 +19340,383,166,0,26,26,0 +19341,383,114,0,18,18,0 +19342,383,163,0,32,32,0 +19343,383,131,0,28,28,0 +19344,383,95,6,9,9,0 +19345,383,145,6,11,11,0 +19346,383,119,2,15,15,0 +19347,383,122,10,8,8,0 +19348,383,167,0,34,34,0 +19349,383,127,5,12,12,0 +19350,383,165,0,31,31,0 +19351,383,141,0,24,24,0 +19352,383,160,0,33,33,0 +19353,383,78,0,25,25,0 +19354,383,146,0,30,30,0 +19355,383,133,0,20,20,0 +19356,383,102,75,1,1,7 +19357,383,94,1,17,17,0 +19358,383,84,0,19,19,0 +19359,383,168,0,29,29,0 +19360,384,117,81,1,1,5 +19361,384,77,37,3,3,1 +19362,384,137,18,6,6,0 +19363,384,118,17,7,7,0 +19364,384,105,24,4,4,0 +19365,384,138,1,16,16,0 +19366,384,123,21,5,5,0 +19367,384,158,6,10,10,0 +19368,384,140,0,24,24,0 +19369,384,110,3,14,14,0 +19370,384,156,5,13,13,0 +19371,384,159,0,21,21,0 +19372,384,112,0,25,25,0 +19373,384,99,0,22,22,0 +19374,384,166,0,23,23,0 +19375,384,114,0,18,18,0 +19376,384,163,0,28,28,0 +19377,384,131,0,29,29,0 +19378,384,95,6,9,9,0 +19379,384,145,6,11,11,0 +19380,384,119,2,15,15,0 +19381,384,122,16,8,8,0 +19382,384,167,0,34,34,0 +19383,384,127,5,12,12,0 +19384,384,165,0,32,32,0 +19385,384,141,0,26,26,0 +19386,384,160,0,33,33,0 +19387,384,78,0,27,27,0 +19388,384,146,0,31,31,0 +19389,384,133,0,19,19,0 +19390,384,102,76,2,2,7 +19391,384,94,1,17,17,0 +19392,384,84,0,20,20,0 +19393,384,168,0,30,30,0 +19394,385,117,84,1,1,6 +19395,385,77,38,3,3,1 +19396,385,137,18,6,6,0 +19397,385,118,17,7,7,0 +19398,385,105,24,4,4,0 +19399,385,138,1,16,16,0 +19400,385,123,21,5,5,0 +19401,385,158,6,11,11,0 +19402,385,140,0,24,24,0 +19403,385,110,3,15,15,0 +19404,385,156,5,13,13,0 +19405,385,159,0,21,21,0 +19406,385,112,0,25,25,0 +19407,385,99,0,22,22,0 +19408,385,166,0,23,23,0 +19409,385,114,0,18,18,0 +19410,385,163,0,28,28,0 +19411,385,131,0,29,29,0 +19412,385,95,12,9,9,0 +19413,385,145,10,10,10,0 +19414,385,119,4,14,14,0 +19415,385,122,16,8,8,0 +19416,385,167,0,34,34,0 +19417,385,127,5,12,12,0 +19418,385,165,0,32,32,0 +19419,385,141,0,26,26,0 +19420,385,160,0,33,33,0 +19421,385,78,0,27,27,0 +19422,385,146,0,31,31,0 +19423,385,133,0,19,19,0 +19424,385,102,79,2,2,7 +19425,385,94,1,17,17,0 +19426,385,84,0,20,20,0 +19427,385,168,0,30,30,0 +19428,386,117,84,2,2,6 +19429,386,77,41,3,3,1 +19430,386,137,18,6,6,0 +19431,386,118,17,7,7,0 +19432,386,105,24,5,5,0 +19433,386,138,1,16,16,0 +19434,386,123,25,4,4,0 +19435,386,158,6,11,11,0 +19436,386,140,0,25,25,0 +19437,386,110,3,15,15,0 +19438,386,156,5,13,13,0 +19439,386,159,0,22,22,0 +19440,386,112,0,24,24,0 +19441,386,99,0,23,23,0 +19442,386,166,0,21,21,0 +19443,386,114,0,18,18,0 +19444,386,163,0,28,28,0 +19445,386,131,0,29,29,0 +19446,386,95,12,9,9,0 +19447,386,145,12,10,10,0 +19448,386,119,5,14,14,0 +19449,386,122,16,8,8,0 +19450,386,167,0,34,34,0 +19451,386,127,5,12,12,0 +19452,386,165,0,32,32,0 +19453,386,141,0,26,26,0 +19454,386,160,0,33,33,0 +19455,386,78,0,27,27,0 +19456,386,146,0,31,31,0 +19457,386,133,0,19,19,0 +19458,386,102,87,1,1,8 +19459,386,94,1,17,17,0 +19460,386,84,0,20,20,0 +19461,386,168,0,30,30,0 +19462,386,88,0,35,35,0 +19463,387,117,87,2,2,7 +19464,387,77,41,3,3,1 +19465,387,137,22,6,6,0 +19466,387,118,17,8,8,0 +19467,387,105,24,5,5,0 +19468,387,138,1,16,16,0 +19469,387,123,27,4,4,0 +19470,387,158,6,12,12,0 +19471,387,140,0,25,25,0 +19472,387,110,3,15,15,0 +19473,387,156,5,14,14,0 +19474,387,159,0,22,22,0 +19475,387,112,0,24,24,0 +19476,387,99,0,23,23,0 +19477,387,166,0,21,21,0 +19478,387,114,0,18,18,0 +19479,387,163,0,28,28,0 +19480,387,131,0,29,29,0 +19481,387,95,12,9,9,0 +19482,387,145,12,10,10,0 +19483,387,119,8,11,11,0 +19484,387,122,17,7,7,0 +19485,387,167,0,34,34,0 +19486,387,127,5,13,13,0 +19487,387,165,0,32,32,0 +19488,387,141,0,26,26,0 +19489,387,160,0,33,33,0 +19490,387,78,0,27,27,0 +19491,387,146,0,31,31,0 +19492,387,133,0,19,19,0 +19493,387,102,90,1,1,8 +19494,387,94,1,17,17,0 +19495,387,84,0,20,20,0 +19496,387,168,0,30,30,0 +19497,387,88,0,35,35,0 +19498,387,162,0,36,36,0 +19499,388,117,9,1,1,1 +19500,388,137,6,2,2,0 +19501,388,140,4,3,3,0 +19502,388,77,3,4,4,0 +19503,388,123,2,5,5,0 +19504,388,95,1,6,6,0 +19505,388,138,0,7,7,0 +19506,388,105,0,8,8,0 +19507,388,157,0,9,9,0 +19508,388,156,0,10,10,0 +19509,388,166,0,11,11,0 +19510,388,169,0,12,12,0 +19511,388,158,0,13,13,0 +19512,388,102,0,14,14,0 +19513,388,119,0,15,15,0 +19514,388,110,0,16,16,0 +19515,388,118,0,17,17,0 +19516,388,133,0,18,18,0 +19517,388,145,0,19,19,0 +19518,388,84,0,20,20,0 +19519,388,170,0,21,21,0 +19520,388,122,0,22,22,0 +19521,389,117,9,2,2,1 +19522,389,137,6,5,5,0 +19523,389,140,7,3,3,0 +19524,389,77,3,7,7,0 +19525,389,123,2,8,8,0 +19526,389,95,10,1,1,1 +19527,389,138,1,10,10,0 +19528,389,105,4,6,6,0 +19529,389,157,0,11,11,0 +19530,389,156,0,14,14,0 +19531,389,166,0,12,12,0 +19532,389,169,0,17,17,0 +19533,389,158,0,19,19,0 +19534,389,102,6,4,4,0 +19535,389,119,0,13,13,0 +19536,389,110,0,21,21,0 +19537,389,118,0,16,16,0 +19538,389,133,0,18,18,0 +19539,389,145,0,22,22,0 +19540,389,84,2,9,9,0 +19541,389,170,0,20,20,0 +19542,389,122,0,25,25,0 +19543,389,112,0,15,15,0 +19544,389,167,0,23,23,0 +19545,389,99,0,24,24,0 +19546,389,160,0,26,26,0 +19547,389,163,0,27,27,0 +19548,390,117,18,1,1,2 +19549,390,137,6,5,5,0 +19550,390,140,13,2,2,0 +19551,390,77,3,9,9,0 +19552,390,123,2,12,12,0 +19553,390,95,10,3,3,1 +19554,390,138,3,10,10,0 +19555,390,105,4,6,6,0 +19556,390,157,0,14,14,0 +19557,390,156,0,20,20,0 +19558,390,166,0,16,16,0 +19559,390,169,0,19,19,0 +19560,390,158,3,8,8,0 +19561,390,102,6,4,4,0 +19562,390,119,0,18,18,0 +19563,390,110,4,7,7,0 +19564,390,118,0,21,21,0 +19565,390,133,0,22,22,0 +19566,390,145,0,25,25,0 +19567,390,84,2,11,11,0 +19568,390,170,0,23,23,0 +19569,390,122,0,24,24,0 +19570,390,112,0,17,17,0 +19571,390,167,0,26,26,0 +19572,390,99,0,27,27,0 +19573,390,160,0,15,15,0 +19574,390,163,1,13,13,0 +19575,391,117,18,1,1,2 +19576,391,137,12,4,4,0 +19577,391,140,13,3,3,0 +19578,391,77,6,7,7,0 +19579,391,123,2,13,13,0 +19580,391,95,10,5,5,1 +19581,391,138,3,10,10,0 +19582,391,105,8,6,6,0 +19583,391,157,0,16,16,0 +19584,391,156,2,12,12,0 +19585,391,166,0,18,18,0 +19586,391,169,0,22,22,0 +19587,391,158,3,9,9,0 +19588,391,102,15,2,2,1 +19589,391,119,0,21,21,0 +19590,391,110,4,8,8,0 +19591,391,118,0,23,23,0 +19592,391,133,0,24,24,0 +19593,391,145,0,25,25,0 +19594,391,84,2,11,11,0 +19595,391,170,0,20,20,0 +19596,391,122,1,15,15,0 +19597,391,112,0,19,19,0 +19598,391,167,0,26,26,0 +19599,391,99,0,27,27,0 +19600,391,160,0,17,17,0 +19601,391,163,1,14,14,0 +19602,392,117,22,2,2,2 +19603,392,137,18,3,3,0 +19604,392,140,13,4,4,0 +19605,392,77,9,6,6,0 +19606,392,123,2,13,13,0 +19607,392,95,12,5,5,1 +19608,392,138,3,10,10,0 +19609,392,105,8,7,7,0 +19610,392,157,0,16,16,0 +19611,392,156,2,12,12,0 +19612,392,166,0,18,18,0 +19613,392,169,0,22,22,0 +19614,392,158,4,9,9,0 +19615,392,102,24,1,1,2 +19616,392,119,0,21,21,0 +19617,392,110,4,8,8,0 +19618,392,118,0,23,23,0 +19619,392,133,0,24,24,0 +19620,392,145,0,25,25,0 +19621,392,84,2,11,11,0 +19622,392,170,0,20,20,0 +19623,392,122,1,15,15,0 +19624,392,112,0,19,19,0 +19625,392,167,0,26,26,0 +19626,392,99,0,27,27,0 +19627,392,160,0,17,17,0 +19628,392,163,1,14,14,0 +19629,393,117,26,2,2,2 +19630,393,137,24,3,3,0 +19631,393,140,13,5,5,0 +19632,393,77,9,6,6,0 +19633,393,123,2,14,14,0 +19634,393,95,21,4,4,2 +19635,393,138,3,10,10,0 +19636,393,105,8,7,7,0 +19637,393,157,0,18,18,0 +19638,393,156,2,11,11,0 +19639,393,166,1,15,15,0 +19640,393,169,0,22,22,0 +19641,393,158,4,9,9,0 +19642,393,102,27,1,1,2 +19643,393,119,0,21,21,0 +19644,393,110,4,8,8,0 +19645,393,118,0,23,23,0 +19646,393,133,0,24,24,0 +19647,393,145,0,26,26,0 +19648,393,84,2,12,12,0 +19649,393,170,2,13,13,0 +19650,393,122,1,17,17,0 +19651,393,112,0,20,20,0 +19652,393,167,0,25,25,0 +19653,393,99,0,27,27,0 +19654,393,160,0,19,19,0 +19655,393,163,1,16,16,0 +19656,394,117,26,4,4,2 +19657,394,137,30,3,3,0 +19658,394,140,13,5,5,0 +19659,394,77,9,6,6,0 +19660,394,123,2,14,14,0 +19661,394,95,30,2,2,3 +19662,394,138,6,8,8,0 +19663,394,105,8,7,7,0 +19664,394,157,0,19,19,0 +19665,394,156,2,12,12,0 +19666,394,166,1,16,16,0 +19667,394,169,0,22,22,0 +19668,394,158,4,10,10,0 +19669,394,102,31,1,1,2 +19670,394,119,0,23,23,0 +19671,394,110,4,9,9,0 +19672,394,118,2,15,15,0 +19673,394,133,0,24,24,0 +19674,394,145,0,26,26,0 +19675,394,84,2,13,13,0 +19676,394,170,3,11,11,0 +19677,394,122,1,18,18,0 +19678,394,112,0,21,21,0 +19679,394,167,0,25,25,0 +19680,394,99,0,27,27,0 +19681,394,160,0,20,20,0 +19682,394,163,1,17,17,0 +19683,395,117,26,4,4,2 +19684,395,137,39,1,1,1 +19685,395,140,19,5,5,0 +19686,395,77,9,6,6,0 +19687,395,123,2,15,15,0 +19688,395,95,30,3,3,3 +19689,395,138,6,8,8,0 +19690,395,105,8,7,7,0 +19691,395,157,0,20,20,0 +19692,395,156,4,12,12,0 +19693,395,166,4,10,10,0 +19694,395,169,0,22,22,0 +19695,395,158,4,11,11,0 +19696,395,102,35,2,2,2 +19697,395,119,0,23,23,0 +19698,395,110,4,9,9,0 +19699,395,118,2,16,16,0 +19700,395,133,0,24,24,0 +19701,395,145,0,26,26,0 +19702,395,84,2,14,14,0 +19703,395,170,3,13,13,0 +19704,395,122,1,19,19,0 +19705,395,112,1,17,17,0 +19706,395,167,0,25,25,0 +19707,395,99,0,27,27,0 +19708,395,160,0,21,21,0 +19709,395,163,1,18,18,0 +19710,396,117,30,4,4,2 +19711,396,137,48,1,1,2 +19712,396,140,19,5,5,0 +19713,396,77,9,6,6,0 +19714,396,123,5,9,9,0 +19715,396,95,30,3,3,3 +19716,396,138,6,8,8,0 +19717,396,105,8,7,7,0 +19718,396,157,0,21,21,0 +19719,396,156,4,13,13,0 +19720,396,166,4,11,11,0 +19721,396,169,0,23,23,0 +19722,396,158,4,12,12,0 +19723,396,102,41,2,2,2 +19724,396,119,2,17,17,0 +19725,396,110,4,10,10,0 +19726,396,118,3,15,15,0 +19727,396,133,0,25,25,0 +19728,396,145,0,24,24,0 +19729,396,84,2,16,16,0 +19730,396,170,3,14,14,0 +19731,396,122,1,20,20,0 +19732,396,112,1,18,18,0 +19733,396,167,0,26,26,0 +19734,396,99,0,27,27,0 +19735,396,160,0,22,22,0 +19736,396,163,1,19,19,0 +19737,397,117,31,4,4,2 +19738,397,137,54,1,1,2 +19739,397,140,19,5,5,0 +19740,397,77,9,6,6,0 +19741,397,123,8,8,8,0 +19742,397,95,39,3,3,4 +19743,397,138,6,10,10,0 +19744,397,105,8,7,7,0 +19745,397,157,0,21,21,0 +19746,397,156,4,14,14,0 +19747,397,166,4,12,12,0 +19748,397,169,0,23,23,0 +19749,397,158,4,13,13,0 +19750,397,102,43,2,2,2 +19751,397,119,2,17,17,0 +19752,397,110,4,11,11,0 +19753,397,118,3,15,15,0 +19754,397,133,0,25,25,0 +19755,397,145,0,24,24,0 +19756,397,84,2,16,16,0 +19757,397,170,7,9,9,0 +19758,397,122,1,20,20,0 +19759,397,112,1,18,18,0 +19760,397,167,0,26,26,0 +19761,397,99,0,27,27,0 +19762,397,160,0,22,22,0 +19763,397,163,1,19,19,0 +19764,398,117,31,4,4,2 +19765,398,137,63,1,1,3 +19766,398,140,20,5,5,0 +19767,398,77,12,6,6,0 +19768,398,123,10,7,7,0 +19769,398,95,43,3,3,4 +19770,398,138,6,10,10,0 +19771,398,105,8,8,8,0 +19772,398,157,0,22,22,0 +19773,398,156,4,14,14,0 +19774,398,166,4,12,12,0 +19775,398,169,0,23,23,0 +19776,398,158,4,13,13,0 +19777,398,102,49,2,2,2 +19778,398,119,2,17,17,0 +19779,398,110,4,11,11,0 +19780,398,118,3,15,15,0 +19781,398,133,0,25,25,0 +19782,398,145,0,24,24,0 +19783,398,84,2,16,16,0 +19784,398,170,7,9,9,0 +19785,398,122,1,20,20,0 +19786,398,112,1,18,18,0 +19787,398,167,0,26,26,0 +19788,398,99,0,27,27,0 +19789,398,160,0,21,21,0 +19790,398,163,1,19,19,0 +19791,398,171,0,28,28,0 +19792,398,78,0,29,29,0 +19793,399,117,40,4,4,3 +19794,399,137,67,1,1,3 +19795,399,140,22,5,5,0 +19796,399,77,18,6,6,0 +19797,399,123,10,8,8,0 +19798,399,95,43,3,3,4 +19799,399,138,6,10,10,0 +19800,399,105,8,9,9,0 +19801,399,157,0,22,22,0 +19802,399,156,4,14,14,0 +19803,399,166,4,13,13,0 +19804,399,169,0,23,23,0 +19805,399,158,5,11,11,0 +19806,399,102,49,2,2,2 +19807,399,119,2,17,17,0 +19808,399,110,4,12,12,0 +19809,399,118,3,15,15,0 +19810,399,133,0,25,25,0 +19811,399,145,0,24,24,0 +19812,399,84,2,16,16,0 +19813,399,170,10,7,7,0 +19814,399,122,1,19,19,0 +19815,399,112,1,18,18,0 +19816,399,167,0,26,26,0 +19817,399,99,0,28,28,0 +19818,399,160,0,21,21,0 +19819,399,163,1,20,20,0 +19820,399,171,0,27,27,0 +19821,399,78,0,29,29,0 +19822,400,117,46,4,4,3 +19823,400,137,70,1,1,3 +19824,400,140,26,5,5,0 +19825,400,77,18,6,6,0 +19826,400,123,10,8,8,0 +19827,400,95,52,2,2,5 +19828,400,138,6,10,10,0 +19829,400,105,8,9,9,0 +19830,400,157,0,22,22,0 +19831,400,156,4,14,14,0 +19832,400,166,4,13,13,0 +19833,400,169,0,23,23,0 +19834,400,158,5,11,11,0 +19835,400,102,51,3,3,2 +19836,400,119,2,17,17,0 +19837,400,110,4,12,12,0 +19838,400,118,3,15,15,0 +19839,400,133,0,25,25,0 +19840,400,145,0,24,24,0 +19841,400,84,2,16,16,0 +19842,400,170,10,7,7,0 +19843,400,122,1,19,19,0 +19844,400,112,2,18,18,0 +19845,400,167,0,26,26,0 +19846,400,99,0,28,28,0 +19847,400,160,0,21,21,0 +19848,400,163,1,20,20,0 +19849,400,171,0,27,27,0 +19850,400,78,0,29,29,0 +19851,401,117,46,4,4,3 +19852,401,137,73,1,1,3 +19853,401,140,26,5,5,0 +19854,401,77,18,6,6,0 +19855,401,123,10,8,8,0 +19856,401,95,61,2,2,6 +19857,401,138,6,12,12,0 +19858,401,105,8,9,9,0 +19859,401,157,0,22,22,0 +19860,401,156,4,15,15,0 +19861,401,166,4,14,14,0 +19862,401,169,0,23,23,0 +19863,401,158,8,10,10,0 +19864,401,102,51,3,3,2 +19865,401,119,6,11,11,0 +19866,401,110,4,13,13,0 +19867,401,118,3,16,16,0 +19868,401,133,0,26,26,0 +19869,401,145,0,25,25,0 +19870,401,84,2,18,18,0 +19871,401,170,12,7,7,0 +19872,401,122,1,19,19,0 +19873,401,112,3,17,17,0 +19874,401,167,0,27,27,0 +19875,401,99,0,29,29,0 +19876,401,160,0,21,21,0 +19877,401,163,1,20,20,0 +19878,401,171,0,28,28,0 +19879,401,78,0,30,30,0 +19880,401,114,0,24,24,0 +19881,402,117,46,4,4,3 +19882,402,137,73,1,1,3 +19883,402,140,30,5,5,0 +19884,402,77,27,6,6,1 +19885,402,123,12,8,8,0 +19886,402,95,61,2,2,6 +19887,402,138,7,11,11,0 +19888,402,105,11,9,9,0 +19889,402,157,0,22,22,0 +19890,402,156,4,15,15,0 +19891,402,166,4,14,14,0 +19892,402,169,0,23,23,0 +19893,402,158,8,10,10,0 +19894,402,102,57,3,3,2 +19895,402,119,6,12,12,0 +19896,402,110,4,13,13,0 +19897,402,118,3,16,16,0 +19898,402,133,0,26,26,0 +19899,402,145,0,25,25,0 +19900,402,84,2,18,18,0 +19901,402,170,12,7,7,0 +19902,402,122,1,19,19,0 +19903,402,112,3,17,17,0 +19904,402,167,0,27,27,0 +19905,402,99,0,30,30,0 +19906,402,160,0,21,21,0 +19907,402,163,1,20,20,0 +19908,402,171,0,28,28,0 +19909,402,78,0,31,31,0 +19910,402,114,0,24,24,0 +19911,402,90,0,29,29,0 +19912,403,117,46,4,4,3 +19913,403,137,73,1,1,3 +19914,403,140,30,6,6,0 +19915,403,77,36,5,5,2 +19916,403,123,16,8,8,0 +19917,403,95,61,2,2,6 +19918,403,138,7,12,12,0 +19919,403,105,17,7,7,0 +19920,403,157,0,23,23,0 +19921,403,156,7,11,11,0 +19922,403,166,4,15,15,0 +19923,403,169,0,25,25,0 +19924,403,158,8,10,10,0 +19925,403,102,57,3,3,2 +19926,403,119,6,13,13,0 +19927,403,110,4,14,14,0 +19928,403,118,3,16,16,0 +19929,403,133,0,27,27,0 +19930,403,145,0,26,26,0 +19931,403,84,2,18,18,0 +19932,403,170,12,9,9,0 +19933,403,122,1,19,19,0 +19934,403,112,3,17,17,0 +19935,403,167,0,28,28,0 +19936,403,99,0,31,31,0 +19937,403,160,0,24,24,0 +19938,403,163,1,20,20,0 +19939,403,171,0,29,29,0 +19940,403,78,0,32,32,0 +19941,403,114,0,22,22,0 +19942,403,90,1,21,21,0 +19943,403,131,0,30,30,0 +19944,404,137,9,1,1,1 +19945,404,102,6,2,2,0 +19946,404,172,4,3,3,0 +19947,404,163,3,4,4,0 +19948,404,84,2,5,5,0 +19949,404,77,1,6,6,0 +19950,404,166,0,7,7,0 +19951,404,173,0,8,8,0 +19952,404,174,0,9,9,0 +19953,404,170,0,10,10,0 +19954,404,123,0,11,11,0 +19955,404,105,0,12,12,0 +19956,404,117,0,13,13,0 +19957,404,157,0,14,14,0 +19958,404,140,0,15,15,0 +19959,404,175,0,16,16,0 +19960,404,119,0,17,17,0 +19961,404,156,0,18,18,0 +19962,404,176,0,19,19,0 +19963,404,145,0,20,20,0 +19964,404,110,0,21,21,0 +19965,404,160,0,22,22,0 +19966,404,177,0,23,23,0 +19967,404,178,0,24,24,0 +19968,404,95,0,25,25,0 +19969,405,137,9,2,2,1 +19970,405,102,15,1,1,1 +19971,405,172,4,4,4,0 +19972,405,163,3,6,6,0 +19973,405,84,2,9,9,0 +19974,405,77,2,10,10,0 +19975,405,166,0,12,12,0 +19976,405,173,0,13,13,0 +19977,405,174,0,15,15,0 +19978,405,170,2,8,8,0 +19979,405,123,0,11,11,0 +19980,405,105,0,16,16,0 +19981,405,117,4,5,5,0 +19982,405,157,0,18,18,0 +19983,405,140,0,19,19,0 +19984,405,175,0,14,14,0 +19985,405,119,0,20,20,0 +19986,405,156,0,21,21,0 +19987,405,176,0,17,17,0 +19988,405,145,0,23,23,0 +19989,405,110,0,24,24,0 +19990,405,160,0,22,22,0 +19991,405,177,3,7,7,0 +19992,405,178,0,25,25,0 +19993,405,95,6,3,3,0 +19994,406,137,15,1,1,1 +19995,406,102,15,2,2,1 +19996,406,172,4,7,7,0 +19997,406,163,3,8,8,0 +19998,406,84,2,10,10,0 +19999,406,77,6,5,5,0 +20000,406,166,0,14,14,0 +20001,406,173,0,15,15,0 +20002,406,174,0,17,17,0 +20003,406,170,2,11,11,0 +20004,406,123,0,13,13,0 +20005,406,105,0,19,19,0 +20006,406,117,13,3,3,1 +20007,406,157,0,21,21,0 +20008,406,140,3,9,9,0 +20009,406,175,0,16,16,0 +20010,406,119,1,12,12,0 +20011,406,156,0,22,22,0 +20012,406,176,0,18,18,0 +20013,406,145,0,25,25,0 +20014,406,110,0,24,24,0 +20015,406,160,0,20,20,0 +20016,406,177,5,6,6,0 +20017,406,178,0,23,23,0 +20018,406,95,6,4,4,0 +20019,406,179,0,26,26,0 +20020,407,137,15,3,3,1 +20021,407,102,19,2,2,1 +20022,407,172,5,7,7,0 +20023,407,163,5,8,8,0 +20024,407,84,2,10,10,0 +20025,407,77,6,6,6,0 +20026,407,166,0,14,14,0 +20027,407,173,0,16,16,0 +20028,407,174,0,18,18,0 +20029,407,170,2,11,11,0 +20030,407,123,0,13,13,0 +20031,407,105,0,19,19,0 +20032,407,117,22,1,1,2 +20033,407,157,0,22,22,0 +20034,407,140,3,9,9,0 +20035,407,175,0,15,15,0 +20036,407,119,1,12,12,0 +20037,407,156,0,20,20,0 +20038,407,176,0,17,17,0 +20039,407,145,0,25,25,0 +20040,407,110,0,24,24,0 +20041,407,160,0,21,21,0 +20042,407,177,11,4,4,0 +20043,407,178,0,23,23,0 +20044,407,95,9,5,5,0 +20045,407,179,0,26,26,0 +20046,408,137,15,4,4,1 +20047,408,102,25,1,1,1 +20048,408,172,7,7,7,0 +20049,408,163,5,9,9,0 +20050,408,84,2,12,12,0 +20051,408,77,6,8,8,0 +20052,408,166,0,15,15,0 +20053,408,173,0,17,17,0 +20054,408,174,0,19,19,0 +20055,408,170,2,11,11,0 +20056,408,123,0,14,14,0 +20057,408,105,3,10,10,0 +20058,408,117,23,2,2,2 +20059,408,157,0,23,23,0 +20060,408,140,7,6,6,0 +20061,408,175,0,16,16,0 +20062,408,119,1,13,13,0 +20063,408,156,0,21,21,0 +20064,408,176,0,18,18,0 +20065,408,145,0,26,26,0 +20066,408,110,0,24,24,0 +20067,408,160,0,22,22,0 +20068,408,177,11,5,5,0 +20069,408,178,0,20,20,0 +20070,408,95,18,3,3,1 +20071,408,179,0,25,25,0 +20072,409,137,19,4,4,1 +20073,409,102,27,3,3,1 +20074,409,172,7,7,7,0 +20075,409,163,6,9,9,0 +20076,409,84,2,12,12,0 +20077,409,77,6,8,8,0 +20078,409,166,0,15,15,0 +20079,409,173,0,17,17,0 +20080,409,174,0,19,19,0 +20081,409,170,2,11,11,0 +20082,409,123,0,14,14,0 +20083,409,105,3,10,10,0 +20084,409,117,29,1,1,2 +20085,409,157,0,25,25,0 +20086,409,140,7,6,6,0 +20087,409,175,0,16,16,0 +20088,409,119,1,13,13,0 +20089,409,156,0,21,21,0 +20090,409,176,0,18,18,0 +20091,409,145,0,26,26,0 +20092,409,110,0,24,24,0 +20093,409,160,0,23,23,0 +20094,409,177,14,5,5,0 +20095,409,178,0,20,20,0 +20096,409,95,27,2,2,2 +20097,409,179,0,22,22,0 +20098,409,118,0,27,27,0 +20155,410,158,0,28,28,0 +20153,410,179,0,23,23,0 +20152,410,95,29,3,3,2 +20149,410,160,0,25,25,0 +20148,410,110,0,26,26,0 +20146,410,176,0,20,20,0 +20145,410,156,0,17,17,0 +20143,410,175,0,18,18,0 +20141,410,157,0,24,24,0 +20140,410,117,33,2,2,2 +20139,410,105,6,9,9,0 +20137,410,170,2,11,11,0 +20135,410,173,0,19,19,0 +20133,410,77,6,8,8,0 +20131,410,163,6,10,10,0 +20150,410,177,14,5,5,0 +20132,410,84,2,12,12,0 +20136,410,174,0,16,16,0 +20147,410,145,0,27,27,0 +20151,410,178,0,21,21,0 +20154,410,118,0,22,22,0 +20144,410,119,2,13,13,0 +20156,410,180,0,29,29,0 +20142,410,140,7,7,7,0 +20134,410,166,0,15,15,0 +20130,410,172,13,6,6,0 +20138,410,123,0,14,14,0 +20129,410,102,36,1,1,2 +20128,410,137,19,4,4,1 +20157,411,137,23,4,4,1 +20158,411,102,36,3,3,2 +20159,411,172,14,6,6,0 +20160,411,163,8,7,7,0 +20161,411,84,2,12,12,0 +20162,411,77,6,9,9,0 +20163,411,166,0,15,15,0 +20164,411,173,0,19,19,0 +20165,411,174,0,16,16,0 +20166,411,170,2,11,11,0 +20167,411,123,0,14,14,0 +20168,411,105,6,10,10,0 +20169,411,117,39,1,1,2 +20170,411,157,0,23,23,0 +20171,411,140,7,8,8,0 +20172,411,175,0,18,18,0 +20173,411,119,2,13,13,0 +20174,411,156,0,17,17,0 +20175,411,176,0,20,20,0 +20176,411,145,0,27,27,0 +20177,411,110,0,26,26,0 +20178,411,160,0,25,25,0 +20179,411,177,17,5,5,0 +20180,411,178,0,22,22,0 +20181,411,95,38,2,2,3 +20182,411,179,0,24,24,0 +20183,411,118,0,21,21,0 +20184,411,158,0,29,29,0 +20185,411,180,0,28,28,0 +20186,412,137,29,4,4,1 +20187,412,102,36,3,3,2 +20188,412,172,14,6,6,0 +20189,412,163,11,7,7,0 +20190,412,84,4,11,11,0 +20191,412,77,6,9,9,0 +20192,412,166,1,14,14,0 +20193,412,173,0,20,20,0 +20194,412,174,0,16,16,0 +20195,412,170,2,12,12,0 +20196,412,123,0,15,15,0 +20197,412,105,6,10,10,0 +20198,412,117,43,2,2,2 +20199,412,157,0,23,23,0 +20200,412,140,7,8,8,0 +20201,412,175,0,19,19,0 +20202,412,119,2,13,13,0 +20203,412,156,0,18,18,0 +20204,412,176,0,21,21,0 +20205,412,145,0,26,26,0 +20206,412,110,0,27,27,0 +20207,412,160,0,25,25,0 +20208,412,177,17,5,5,0 +20209,412,178,0,22,22,0 +20210,412,95,47,1,1,4 +20211,412,179,0,24,24,0 +20212,412,118,0,17,17,0 +20213,412,158,0,29,29,0 +20214,412,180,0,28,28,0 +20215,413,137,38,4,4,2 +20216,413,102,42,3,3,2 +20217,413,172,14,6,6,0 +20218,413,163,14,7,7,0 +20219,413,84,4,11,11,0 +20220,413,77,6,9,9,0 +20221,413,166,1,14,14,0 +20222,413,173,0,20,20,0 +20223,413,174,0,16,16,0 +20224,413,170,2,12,12,0 +20225,413,123,0,15,15,0 +20226,413,105,6,10,10,0 +20227,413,117,44,2,2,2 +20228,413,157,0,23,23,0 +20229,413,140,7,8,8,0 +20230,413,175,0,18,18,0 +20231,413,119,2,13,13,0 +20232,413,156,0,19,19,0 +20233,413,176,0,21,21,0 +20234,413,145,0,27,27,0 +20235,413,110,0,28,28,0 +20236,413,160,0,26,26,0 +20237,413,177,19,5,5,0 +20238,413,178,0,22,22,0 +20239,413,95,51,1,1,4 +20240,413,179,0,24,24,0 +20241,413,118,0,17,17,0 +20242,413,158,0,29,29,0 +20243,413,180,0,25,25,0 +20244,413,112,0,30,30,0 +20245,414,137,47,3,3,3 +20246,414,102,48,2,2,2 +20247,414,172,14,6,6,0 +20248,414,163,14,7,7,0 +20249,414,84,5,11,11,0 +20250,414,77,6,9,9,0 +20251,414,166,1,15,15,0 +20252,414,173,0,20,20,0 +20253,414,174,2,12,12,0 +20254,414,170,2,13,13,0 +20255,414,123,0,16,16,0 +20256,414,105,6,10,10,0 +20257,414,117,44,4,4,2 +20258,414,157,0,24,24,0 +20259,414,140,10,8,8,0 +20260,414,175,0,17,17,0 +20261,414,119,2,14,14,0 +20262,414,156,0,19,19,0 +20263,414,176,0,21,21,0 +20264,414,145,0,28,28,0 +20265,414,110,0,29,29,0 +20266,414,160,0,27,27,0 +20267,414,177,19,5,5,0 +20268,414,178,0,22,22,0 +20269,414,95,55,1,1,4 +20270,414,179,0,25,25,0 +20271,414,118,0,18,18,0 +20272,414,158,0,30,30,0 +20273,414,180,0,26,26,0 +20274,414,112,0,23,23,0 +20275,415,137,47,4,4,3 +20276,415,102,48,3,3,2 +20277,415,172,14,6,6,0 +20278,415,163,14,8,8,0 +20279,415,84,5,11,11,0 +20280,415,77,6,10,10,0 +20281,415,166,1,17,17,0 +20282,415,173,0,23,23,0 +20283,415,174,2,13,13,0 +20284,415,170,2,15,15,0 +20285,415,123,0,19,19,0 +20286,415,105,12,9,9,0 +20287,415,117,53,2,2,3 +20288,415,157,1,18,18,0 +20289,415,140,14,7,7,0 +20290,415,175,2,14,14,0 +20291,415,119,2,16,16,0 +20292,415,156,0,21,21,0 +20293,415,176,0,24,24,0 +20294,415,145,0,28,28,0 +20295,415,110,0,29,29,0 +20296,415,160,0,26,26,0 +20297,415,177,19,5,5,0 +20298,415,178,3,12,12,0 +20299,415,95,55,1,1,4 +20300,415,179,0,22,22,0 +20301,415,118,0,20,20,0 +20302,415,158,0,30,30,0 +20303,415,180,0,27,27,0 +20304,415,112,0,25,25,0 +20305,416,137,56,2,2,4 +20306,416,102,48,4,4,2 +20307,416,172,14,7,7,0 +20308,416,163,14,8,8,0 +20309,416,84,5,11,11,0 +20310,416,77,8,10,10,0 +20311,416,166,1,17,17,0 +20312,416,173,0,23,23,0 +20313,416,174,2,13,13,0 +20314,416,170,2,15,15,0 +20315,416,123,0,19,19,0 +20316,416,105,12,9,9,0 +20317,416,117,53,3,3,3 +20318,416,157,1,18,18,0 +20319,416,140,18,6,6,0 +20320,416,175,2,14,14,0 +20321,416,119,2,16,16,0 +20322,416,156,0,21,21,0 +20323,416,176,0,24,24,0 +20324,416,145,0,29,29,0 +20325,416,110,0,30,30,0 +20326,416,160,0,26,26,0 +20327,416,177,22,5,5,0 +20328,416,178,4,12,12,0 +20329,416,95,61,1,1,4 +20330,416,179,0,22,22,0 +20331,416,118,0,20,20,0 +20332,416,158,0,32,32,0 +20333,416,180,0,27,27,0 +20334,416,112,0,25,25,0 +20335,416,133,0,28,28,0 +20336,416,122,0,31,31,0 +20337,417,137,60,2,2,4 +20338,417,102,51,4,4,2 +20339,417,172,14,7,7,0 +20340,417,163,14,9,9,0 +20341,417,84,5,11,11,0 +20342,417,77,8,10,10,0 +20343,417,166,1,17,17,0 +20344,417,173,0,23,23,0 +20345,417,174,2,13,13,0 +20346,417,170,2,15,15,0 +20347,417,123,0,19,19,0 +20348,417,105,14,8,8,0 +20349,417,117,59,3,3,3 +20350,417,157,1,18,18,0 +20351,417,140,19,6,6,0 +20352,417,175,2,14,14,0 +20353,417,119,2,16,16,0 +20354,417,156,0,21,21,0 +20355,417,176,0,24,24,0 +20356,417,145,0,29,29,0 +20357,417,110,0,30,30,0 +20358,417,160,0,26,26,0 +20359,417,177,22,5,5,0 +20360,417,178,4,12,12,0 +20361,417,95,70,1,1,5 +20362,417,179,0,22,22,0 +20363,417,118,0,20,20,0 +20364,417,158,0,32,32,0 +20365,417,180,0,27,27,0 +20366,417,112,0,25,25,0 +20367,417,133,0,28,28,0 +20368,417,122,0,31,31,0 +20369,418,137,63,3,3,4 +20370,418,102,55,4,4,2 +20371,418,172,14,8,8,0 +20372,418,163,14,10,10,0 +20373,418,84,5,11,11,0 +20374,418,77,17,7,7,1 +20375,418,166,1,17,17,0 +20376,418,173,0,25,25,0 +20377,418,174,2,13,13,0 +20378,418,170,2,15,15,0 +20379,418,123,0,20,20,0 +20380,418,105,14,9,9,0 +20381,418,117,64,2,2,3 +20382,418,157,1,18,18,0 +20383,418,140,19,6,6,0 +20384,418,175,2,14,14,0 +20385,418,119,2,16,16,0 +20386,418,156,0,22,22,0 +20387,418,176,0,26,26,0 +20388,418,145,0,29,29,0 +20389,418,110,0,24,24,0 +20390,418,160,0,27,27,0 +20391,418,177,22,5,5,0 +20392,418,178,4,12,12,0 +20393,418,95,70,1,1,5 +20394,418,179,0,23,23,0 +20395,418,118,0,21,21,0 +20396,418,158,0,32,32,0 +20397,418,180,0,28,28,0 +20398,418,112,1,19,19,0 +20399,418,133,0,30,30,0 +20400,418,122,0,31,31,0 +20401,419,137,69,3,3,4 +20402,419,102,55,4,4,2 +20403,419,172,14,8,8,0 +20404,419,163,14,10,10,0 +20405,419,84,8,11,11,0 +20406,419,77,17,7,7,1 +20407,419,166,3,14,14,0 +20408,419,173,0,25,25,0 +20409,419,174,3,13,13,0 +20410,419,170,2,16,16,0 +20411,419,123,0,20,20,0 +20412,419,105,14,9,9,0 +20413,419,117,72,1,1,4 +20414,419,157,1,18,18,0 +20415,419,140,23,5,5,0 +20416,419,175,2,15,15,0 +20417,419,119,2,17,17,0 +20418,419,156,0,22,22,0 +20419,419,176,0,26,26,0 +20420,419,145,0,29,29,0 +20421,419,110,0,24,24,0 +20422,419,160,0,27,27,0 +20423,419,177,22,6,6,0 +20424,419,178,4,12,12,0 +20425,419,95,70,2,2,5 +20426,419,179,0,23,23,0 +20427,419,118,0,21,21,0 +20428,419,158,0,32,32,0 +20429,419,180,0,28,28,0 +20430,419,112,1,19,19,0 +20431,419,133,0,30,30,0 +20432,419,122,0,31,31,0 +20433,420,117,9,1,1,1 +20434,420,105,6,2,2,0 +20435,420,173,4,3,3,0 +20436,420,163,3,4,4,0 +20437,420,175,2,5,5,0 +20438,420,172,1,6,6,0 +20439,420,140,0,7,7,0 +20440,420,84,0,8,8,0 +20441,420,112,0,9,9,0 +20442,420,118,0,10,10,0 +20443,420,123,0,11,11,0 +20444,420,160,0,12,12,0 +20445,420,181,0,13,13,0 +20446,420,77,0,14,14,0 +20447,420,102,0,15,15,0 +20448,420,158,0,16,16,0 +20449,420,94,0,17,17,0 +20450,420,182,0,18,18,0 +20451,420,110,0,19,19,0 +20452,420,119,0,20,20,0 +20453,420,177,0,21,21,0 +20454,420,183,0,22,22,0 +20455,420,95,0,23,23,0 +20456,420,184,0,24,24,0 +20457,420,137,0,25,25,0 +20458,421,117,9,2,2,1 +20459,421,105,12,1,1,0 +20460,421,173,7,4,4,0 +20461,421,163,3,6,6,0 +20462,421,175,6,5,5,0 +20463,421,172,1,8,8,0 +20464,421,140,0,10,10,0 +20465,421,84,0,12,12,0 +20466,421,112,0,14,14,0 +20467,421,118,0,11,11,0 +20468,421,123,0,15,15,0 +20469,421,160,0,13,13,0 +20470,421,181,0,16,16,0 +20471,421,77,0,20,20,0 +20472,421,102,9,3,3,1 +20473,421,158,0,18,18,0 +20474,421,94,0,22,22,0 +20475,421,182,0,17,17,0 +20476,421,110,0,19,19,0 +20477,421,119,0,25,25,0 +20478,421,177,0,24,24,0 +20479,421,183,0,26,26,0 +20480,421,95,2,7,7,0 +20481,421,184,0,23,23,0 +20482,421,137,0,21,21,0 +20483,421,185,1,9,9,0 +20484,421,156,0,27,27,0 +20485,422,117,9,5,5,1 +20486,422,105,12,2,2,0 +20487,422,173,16,1,1,1 +20488,422,163,3,9,9,0 +20489,422,175,10,3,3,0 +20490,422,172,1,11,11,0 +20491,422,140,1,10,10,0 +20492,422,84,0,14,14,0 +20493,422,112,0,17,17,0 +20494,422,118,0,13,13,0 +20495,422,123,6,6,6,0 +20496,422,160,0,16,16,0 +20497,422,181,0,18,18,0 +20498,422,77,0,21,21,0 +20499,422,102,9,4,4,1 +20500,422,158,0,19,19,0 +20501,422,94,0,23,23,0 +20502,422,182,3,8,8,0 +20503,422,110,0,20,20,0 +20504,422,119,0,25,25,0 +20505,422,177,0,22,22,0 +20506,422,183,0,26,26,0 +20507,422,95,4,7,7,0 +20508,422,184,0,24,24,0 +20509,422,137,0,15,15,0 +20510,422,185,1,12,12,0 +20511,422,156,0,27,27,0 +20512,423,117,18,2,2,2 +20513,423,105,18,3,3,0 +20514,423,173,20,1,1,1 +20515,423,163,3,10,10,0 +20516,423,175,10,4,4,0 +20517,423,172,2,12,12,0 +20518,423,140,1,13,13,0 +20519,423,84,0,15,15,0 +20520,423,112,0,19,19,0 +20521,423,118,2,11,11,0 +20522,423,123,6,6,6,0 +20523,423,160,0,18,18,0 +20524,423,181,0,21,21,0 +20525,423,77,0,24,24,0 +20526,423,102,9,5,5,1 +20527,423,158,0,22,22,0 +20528,423,94,0,26,26,0 +20529,423,182,3,8,8,0 +20530,423,110,3,9,9,0 +20531,423,119,0,23,23,0 +20532,423,177,0,17,17,0 +20533,423,183,0,28,28,0 +20534,423,95,4,7,7,0 +20535,423,184,0,27,27,0 +20536,423,137,0,16,16,0 +20537,423,185,1,14,14,0 +20538,423,156,0,20,20,0 +20539,423,170,0,25,25,0 +20540,424,117,22,2,2,2 +20541,424,105,27,1,1,1 +20542,424,173,22,3,3,1 +20543,424,163,3,12,12,0 +20544,424,175,10,4,4,0 +20545,424,172,2,14,14,0 +20546,424,140,7,6,6,0 +20547,424,84,0,16,16,0 +20548,424,112,0,19,19,0 +20549,424,118,2,13,13,0 +20550,424,123,6,7,7,0 +20551,424,160,0,18,18,0 +20552,424,181,0,22,22,0 +20553,424,77,0,23,23,0 +20554,424,102,9,5,5,1 +20555,424,158,0,25,25,0 +20556,424,94,0,27,27,0 +20557,424,182,3,11,11,0 +20558,424,110,3,10,10,0 +20559,424,119,0,20,20,0 +20560,424,177,3,9,9,0 +20561,424,183,0,29,29,0 +20562,424,95,5,8,8,0 +20563,424,184,0,28,28,0 +20564,424,137,0,17,17,0 +20565,424,185,1,15,15,0 +20566,424,156,0,21,21,0 +20567,424,170,0,26,26,0 +20568,424,176,0,24,24,0 +20655,425,176,0,18,18,0 +20636,425,118,2,14,14,0 +20637,425,123,6,8,8,0 +20646,425,119,0,22,22,0 +20654,425,170,0,26,26,0 +20653,425,156,0,24,24,0 +20652,425,185,4,10,10,0 +20651,425,137,1,16,16,0 +20650,425,184,0,28,28,0 +20649,425,95,5,9,9,0 +20648,425,183,0,29,29,0 +20647,425,177,12,5,5,1 +20645,425,110,3,11,11,0 +20644,425,182,3,12,12,0 +20640,425,77,0,23,23,0 +20641,425,102,9,7,7,1 +20642,425,158,0,20,20,0 +20643,425,94,0,27,27,0 +20639,425,181,0,25,25,0 +20638,425,160,0,19,19,0 +20635,425,112,0,21,21,0 +20634,425,84,0,17,17,0 +20633,425,140,13,4,4,0 +20632,425,172,2,15,15,0 +20631,425,175,10,6,6,0 +20629,425,173,24,2,2,1 +20630,425,163,3,13,13,0 +20628,425,105,31,1,1,1 +20627,425,117,22,3,3,2 +20713,426,176,0,17,17,0 +20712,426,170,0,26,26,0 +20711,426,156,0,24,24,0 +20710,426,185,4,11,11,0 +20709,426,137,10,7,7,1 +20708,426,184,0,28,28,0 +20707,426,95,5,10,10,0 +20706,426,183,0,29,29,0 +20704,426,119,0,22,22,0 +20703,426,110,3,12,12,0 +20702,426,182,3,13,13,0 +20700,426,158,0,19,19,0 +20699,426,102,9,8,8,1 +20698,426,77,0,23,23,0 +20696,426,160,0,20,20,0 +20694,426,118,2,15,15,0 +20692,426,84,0,18,18,0 +20689,426,175,11,6,6,0 +20688,426,163,3,14,14,0 +20686,426,105,31,1,1,1 +20693,426,112,0,21,21,0 +20697,426,181,0,25,25,0 +20690,426,172,2,16,16,0 +20691,426,140,16,5,5,0 +20685,426,117,26,2,2,2 +20705,426,177,18,4,4,1 +20701,426,94,0,27,27,0 +20687,426,173,26,3,3,1 +20695,426,123,6,9,9,0 +20714,427,117,35,2,2,3 +20715,427,105,37,1,1,1 +20716,427,173,26,3,3,1 +20717,427,163,3,16,16,0 +20718,427,175,11,7,7,0 +20719,427,172,6,10,10,0 +20720,427,140,16,5,5,0 +20721,427,84,0,18,18,0 +20722,427,112,0,23,23,0 +20723,427,118,4,13,13,0 +20724,427,123,6,9,9,0 +20725,427,160,0,22,22,0 +20726,427,181,0,25,25,0 +20727,427,77,0,19,19,0 +20728,427,102,9,8,8,1 +20729,427,158,0,21,21,0 +20730,427,94,0,27,27,0 +20731,427,182,3,15,15,0 +20732,427,110,3,14,14,0 +20733,427,119,0,20,20,0 +20734,427,177,18,4,4,1 +20735,427,183,0,29,29,0 +20736,427,95,5,11,11,0 +20737,427,184,0,28,28,0 +20738,427,137,13,6,6,1 +20739,427,185,4,12,12,0 +20740,427,156,0,24,24,0 +20741,427,170,0,26,26,0 +20742,427,176,1,17,17,0 +20743,428,117,41,2,2,3 +20744,428,105,46,1,1,2 +20745,428,173,26,3,3,1 +20746,428,163,3,16,16,0 +20747,428,175,11,7,7,0 +20748,428,172,10,8,8,0 +20749,428,140,16,5,5,0 +20750,428,84,0,18,18,0 +20751,428,112,0,23,23,0 +20752,428,118,4,14,14,0 +20753,428,123,9,10,10,0 +20754,428,160,0,22,22,0 +20755,428,181,0,26,26,0 +20756,428,77,0,19,19,0 +20757,428,102,9,9,9,1 +20758,428,158,0,21,21,0 +20759,428,94,0,24,24,0 +20760,428,182,5,12,12,0 +20761,428,110,3,15,15,0 +20762,428,119,0,20,20,0 +20763,428,177,18,4,4,1 +20764,428,183,0,30,30,0 +20765,428,95,6,11,11,0 +20766,428,184,0,29,29,0 +20767,428,137,13,6,6,1 +20768,428,185,4,13,13,0 +20769,428,156,0,25,25,0 +20770,428,170,0,27,27,0 +20771,428,176,1,17,17,0 +20772,428,179,0,28,28,0 +20773,429,117,50,1,1,4 +20774,429,105,50,2,2,2 +20775,429,173,28,3,3,1 +20776,429,163,3,16,16,0 +20777,429,175,11,8,8,0 +20778,429,172,10,9,9,0 +20779,429,140,19,4,4,0 +20780,429,84,0,18,18,0 +20781,429,112,0,23,23,0 +20782,429,118,4,14,14,0 +20783,429,123,9,10,10,0 +20784,429,160,0,22,22,0 +20785,429,181,0,27,27,0 +20786,429,77,0,19,19,0 +20787,429,102,15,6,6,1 +20788,429,158,0,21,21,0 +20789,429,94,0,25,25,0 +20790,429,182,5,12,12,0 +20791,429,110,3,15,15,0 +20792,429,119,0,20,20,0 +20793,429,177,18,5,5,1 +20794,429,183,0,31,31,0 +20795,429,95,6,11,11,0 +20796,429,184,0,30,30,0 +20797,429,137,13,7,7,1 +20798,429,185,4,13,13,0 +20799,429,156,0,26,26,0 +20800,429,170,0,28,28,0 +20801,429,176,2,17,17,0 +20802,429,179,0,24,24,0 +20803,429,186,0,29,29,0 +20804,430,117,56,1,1,4 +20805,430,105,53,2,2,2 +20806,430,173,30,3,3,1 +20807,430,163,3,16,16,0 +20808,430,175,11,9,9,0 +20809,430,172,10,10,10,0 +20810,430,140,19,5,5,0 +20811,430,84,0,18,18,0 +20812,430,112,0,24,24,0 +20813,430,118,4,14,14,0 +20814,430,123,9,11,11,0 +20815,430,160,0,22,22,0 +20816,430,181,0,27,27,0 +20817,430,77,0,19,19,0 +20818,430,102,19,4,4,1 +20819,430,158,0,21,21,0 +20820,430,94,0,25,25,0 +20821,430,182,14,7,7,1 +20822,430,110,3,15,15,0 +20823,430,119,0,20,20,0 +20824,430,177,18,6,6,1 +20825,430,183,0,31,31,0 +20826,430,95,7,12,12,0 +20827,430,184,0,30,30,0 +20828,430,137,13,8,8,1 +20829,430,185,4,13,13,0 +20830,430,156,0,26,26,0 +20831,430,170,0,28,28,0 +20832,430,176,2,17,17,0 +20833,430,179,0,23,23,0 +20834,430,186,0,29,29,0 +20835,431,117,65,1,1,5 +20836,431,105,53,2,2,2 +20837,431,173,31,3,3,1 +20838,431,163,3,17,17,0 +20839,431,175,11,9,9,0 +20840,431,172,10,10,10,0 +20841,431,140,21,5,5,0 +20842,431,84,0,18,18,0 +20843,431,112,0,24,24,0 +20844,431,118,4,15,15,0 +20845,431,123,9,11,11,0 +20846,431,160,0,22,22,0 +20847,431,181,0,28,28,0 +20848,431,77,0,19,19,0 +20849,431,102,23,4,4,1 +20850,431,158,0,21,21,0 +20851,431,94,0,26,26,0 +20852,431,182,14,8,8,1 +20853,431,110,3,16,16,0 +20854,431,119,0,20,20,0 +20855,431,177,18,7,7,1 +20856,431,183,0,32,32,0 +20857,431,95,7,12,12,0 +20858,431,184,0,31,31,0 +20859,431,137,19,6,6,1 +20860,431,185,4,14,14,0 +20861,431,156,0,27,27,0 +20862,431,170,0,29,29,0 +20863,431,176,5,13,13,0 +20864,431,179,0,23,23,0 +20865,431,186,0,30,30,0 +20866,431,166,0,25,25,0 +20867,431,178,0,33,33,0 +20868,432,117,69,1,1,5 +20869,432,105,53,2,2,2 +20870,432,173,31,4,4,1 +20871,432,163,3,17,17,0 +20872,432,175,11,10,10,0 +20873,432,172,10,11,11,0 +20874,432,140,21,7,7,0 +20875,432,84,0,18,18,0 +20876,432,112,0,25,25,0 +20877,432,118,5,14,14,0 +20878,432,123,9,12,12,0 +20879,432,160,0,23,23,0 +20880,432,181,0,28,28,0 +20881,432,77,0,19,19,0 +20882,432,102,32,3,3,2 +20883,432,158,0,21,21,0 +20884,432,94,0,26,26,0 +20885,432,182,14,8,8,1 +20886,432,110,3,16,16,0 +20887,432,119,0,20,20,0 +20888,432,177,21,5,5,1 +20889,432,183,0,33,33,0 +20890,432,95,13,9,9,0 +20891,432,184,0,31,31,0 +20892,432,137,21,6,6,1 +20893,432,185,4,15,15,0 +20894,432,156,0,27,27,0 +20895,432,170,0,29,29,0 +20896,432,176,5,13,13,0 +20897,432,179,0,24,24,0 +20898,432,186,0,30,30,0 +20899,432,166,0,22,22,0 +20900,432,178,0,34,34,0 +20901,432,157,0,32,32,0 +20902,433,117,72,1,1,5 +20903,433,105,53,2,2,2 +20904,433,173,33,4,4,1 +20905,433,163,3,17,17,0 +20906,433,175,11,10,10,0 +20907,433,172,10,12,12,0 +20908,433,140,21,8,8,0 +20909,433,84,0,18,18,0 +20910,433,112,0,26,26,0 +20911,433,118,5,14,14,0 +20912,433,123,10,11,11,0 +20913,433,160,0,24,24,0 +20914,433,181,0,29,29,0 +20915,433,77,0,19,19,0 +20916,433,102,38,3,3,2 +20917,433,158,0,23,23,0 +20918,433,94,0,27,27,0 +20919,433,182,14,9,9,1 +20920,433,110,3,16,16,0 +20921,433,119,0,22,22,0 +20922,433,177,25,5,5,1 +20923,433,183,0,35,35,0 +20924,433,95,22,6,6,1 +20925,433,184,0,34,34,0 +20926,433,137,21,7,7,1 +20927,433,185,4,15,15,0 +20928,433,156,0,28,28,0 +20929,433,170,0,30,30,0 +20930,433,176,5,13,13,0 +20931,433,179,0,25,25,0 +20932,433,186,0,32,32,0 +20933,433,166,0,21,21,0 +20934,433,178,0,36,36,0 +20935,433,157,0,31,31,0 +20936,433,187,0,20,20,0 +20937,433,122,0,33,33,0 +20938,434,117,73,1,1,5 +20939,434,105,53,2,2,2 +20940,434,173,33,4,4,1 +20941,434,163,3,17,17,0 +20942,434,175,11,11,11,0 +20943,434,172,10,12,12,0 +20944,434,140,24,7,7,0 +20945,434,84,0,19,19,0 +20946,434,112,0,26,26,0 +20947,434,118,5,14,14,0 +20948,434,123,11,10,10,0 +20949,434,160,0,24,24,0 +20950,434,181,0,29,29,0 +20951,434,77,2,18,18,0 +20952,434,102,38,3,3,2 +20953,434,158,0,23,23,0 +20954,434,94,0,27,27,0 +20955,434,182,14,9,9,1 +20956,434,110,3,16,16,0 +20957,434,119,0,22,22,0 +20958,434,177,31,6,6,1 +20959,434,183,0,36,36,0 +20960,434,95,31,5,5,2 +20961,434,184,0,34,34,0 +20962,434,137,21,8,8,1 +20963,434,185,4,15,15,0 +20964,434,156,0,28,28,0 +20965,434,170,0,30,30,0 +20966,434,176,5,13,13,0 +20967,434,179,0,25,25,0 +20968,434,186,0,32,32,0 +20969,434,166,0,21,21,0 +20970,434,178,0,35,35,0 +20971,434,157,0,31,31,0 +20972,434,187,0,20,20,0 +20973,434,122,0,33,33,0 +20974,435,117,73,1,1,5 +20975,435,105,53,2,2,2 +20976,435,173,33,5,5,1 +20977,435,163,3,19,19,0 +20978,435,175,11,12,12,0 +20979,435,172,16,9,9,0 +20980,435,140,26,7,7,0 +20981,435,84,0,21,21,0 +20982,435,112,0,28,28,0 +20983,435,118,5,14,14,0 +20984,435,123,11,11,11,0 +20985,435,160,0,27,27,0 +20986,435,181,0,30,30,0 +20987,435,77,3,20,20,0 +20988,435,102,38,4,4,2 +20989,435,158,0,26,26,0 +20990,435,94,0,24,24,0 +20991,435,182,14,10,10,1 +20992,435,110,3,17,17,0 +20993,435,119,0,25,25,0 +20994,435,177,40,3,3,2 +20995,435,183,0,36,36,0 +20996,435,95,31,6,6,2 +20997,435,184,0,34,34,0 +20998,435,137,21,8,8,1 +20999,435,185,4,16,16,0 +21000,435,156,0,29,29,0 +21001,435,170,0,31,31,0 +21002,435,176,5,13,13,0 +21003,435,179,0,22,22,0 +21004,435,186,0,33,33,0 +21005,435,166,4,15,15,0 +21006,435,178,0,35,35,0 +21007,435,157,0,32,32,0 +21008,435,187,0,23,23,0 +21009,435,122,3,18,18,0 +21010,436,117,9,1,1,1 +21011,436,177,6,2,2,0 +21012,436,173,4,3,3,0 +21013,436,158,3,4,4,0 +21014,436,175,2,5,5,0 +21015,436,123,1,6,6,0 +21016,436,176,0,7,7,0 +21017,436,156,0,8,8,0 +21018,436,118,0,9,9,0 +21019,436,110,0,10,10,0 +21020,436,119,0,11,11,0 +21021,436,182,0,12,12,0 +21022,436,95,0,13,13,0 +21023,436,137,0,14,14,0 +21024,436,170,0,15,15,0 +21025,436,163,0,16,16,0 +21026,436,160,0,17,17,0 +21027,436,183,0,18,18,0 +21028,436,112,0,19,19,0 +21029,436,188,0,20,20,0 +21030,436,172,0,21,21,0 +21031,436,105,0,22,22,0 +21032,436,184,0,23,23,0 +21033,436,102,0,24,24,0 +21034,437,117,15,1,1,1 +21035,437,177,6,3,3,0 +21036,437,173,4,4,4,0 +21037,437,158,3,7,7,0 +21038,437,175,2,9,9,0 +21039,437,123,1,10,10,0 +21040,437,176,0,12,12,0 +21041,437,156,0,14,14,0 +21042,437,118,4,5,5,0 +21043,437,110,2,8,8,0 +21044,437,119,3,6,6,0 +21045,437,182,9,2,2,1 +21046,437,95,0,18,18,0 +21047,437,137,0,19,19,0 +21048,437,170,0,22,22,0 +21049,437,163,0,23,23,0 +21050,437,160,0,25,25,0 +21051,437,183,0,15,15,0 +21052,437,112,0,26,26,0 +21053,437,188,0,27,27,0 +21054,437,172,0,21,21,0 +21055,437,105,0,16,16,0 +21056,437,184,0,13,13,0 +21057,437,102,1,11,11,0 +21058,437,84,0,17,17,0 +21059,437,185,0,20,20,0 +21060,437,181,0,24,24,0 +21061,438,117,15,1,1,1 +21062,438,177,9,5,5,0 +21063,438,173,6,6,6,0 +21064,438,158,3,9,9,0 +21065,438,175,2,10,10,0 +21066,438,123,1,13,13,0 +21067,438,176,0,14,14,0 +21068,438,156,0,15,15,0 +21069,438,118,10,2,2,0 +21070,438,110,2,11,11,0 +21071,438,119,3,8,8,0 +21072,438,182,9,4,4,1 +21073,438,95,0,20,20,0 +21074,438,137,0,17,17,0 +21075,438,170,0,21,21,0 +21076,438,163,4,7,7,0 +21077,438,160,0,25,25,0 +21078,438,183,0,18,18,0 +21079,438,112,0,26,26,0 +21080,438,188,0,27,27,0 +21081,438,172,0,24,24,0 +21082,438,105,9,3,3,1 +21083,438,184,0,16,16,0 +21084,438,102,2,12,12,0 +21085,438,84,0,19,19,0 +21086,438,185,0,22,22,0 +21087,438,181,0,23,23,0 +21143,439,189,0,27,27,0 +21141,439,185,0,24,24,0 +21139,439,102,2,13,13,0 +21137,439,105,9,5,5,1 +21136,439,172,0,26,26,0 +21134,439,112,0,19,19,0 +21132,439,160,0,28,28,0 +21131,439,163,10,3,3,0 +21130,439,170,0,23,23,0 +21128,439,95,0,22,22,0 +21127,439,182,9,6,6,1 +21126,439,119,3,9,9,0 +21125,439,110,3,11,11,0 +21124,439,118,13,2,2,0 +21122,439,176,0,14,14,0 +21121,439,123,3,10,10,0 +21120,439,175,2,12,12,0 +21119,439,158,3,8,8,0 +21117,439,177,9,7,7,0 +21142,439,181,0,25,25,0 +21138,439,184,0,15,15,0 +21140,439,84,0,21,21,0 +21123,439,156,0,16,16,0 +21135,439,188,0,20,20,0 +21129,439,137,0,17,17,0 +21133,439,183,0,18,18,0 +21118,439,173,10,4,4,0 +21116,439,117,24,1,1,2 +21144,440,117,24,1,1,2 +21145,440,177,10,6,6,0 +21146,440,173,12,5,5,0 +21147,440,158,3,10,10,0 +21148,440,175,8,8,8,0 +21149,440,123,3,13,13,0 +21150,440,176,0,15,15,0 +21151,440,156,0,17,17,0 +21152,440,118,13,3,3,0 +21153,440,110,3,12,12,0 +21154,440,119,3,11,11,0 +21155,440,182,18,2,2,2 +21156,440,95,4,9,9,0 +21157,440,137,0,19,19,0 +21158,440,170,0,20,20,0 +21159,440,163,13,4,4,0 +21160,440,160,0,22,22,0 +21161,440,183,0,21,21,0 +21162,440,112,0,23,23,0 +21163,440,188,0,24,24,0 +21164,440,172,0,18,18,0 +21165,440,105,9,7,7,1 +21166,440,184,0,16,16,0 +21167,440,102,2,14,14,0 +21168,440,84,0,25,25,0 +21169,440,185,0,26,26,0 +21170,440,181,0,27,27,0 +21171,440,189,0,28,28,0 +21172,441,117,28.5,1,1,3 +21173,441,177,11.5,6,6,0 +21174,441,173,13,5,5,0 +21175,441,158,3,11,11,0 +21176,441,175,8,8,8,0 +21177,441,123,3,14,14,0 +21178,441,176,0,15,15,0 +21179,441,156,0,19,19,0 +21180,441,118,13,4,4,0 +21181,441,110,3,13,13,0 +21182,441,119,3,12,12,0 +21183,441,182,18,2,2,2 +21184,441,95,4,10,10,0 +21185,441,137,0,20,20,0 +21186,441,170,0,21,21,0 +21187,441,163,15,3,3,0 +21188,441,160,0,16,16,0 +21189,441,183,0,22,22,0 +21190,441,112,0,24,24,0 +21191,441,188,0,25,25,0 +21192,441,172,0,18,18,0 +21193,441,105,9.5,7,7,1 +21194,441,184,0,17,17,0 +21195,441,102,5,9,9,0 +21196,441,84,0,26,26,0 +21197,441,185,0,27,27,0 +21198,441,181,0,23,23,0 +21199,441,189,0,29,29,0 +21200,441,190,0,28,28,0 +21201,442,117,32.5,1,1,3 +21202,442,177,11.5,6,6,0 +21203,442,173,16,4,4,0 +21204,442,158,3,12,12,0 +21205,442,175,8,9,9,0 +21206,442,123,3,15,15,0 +21207,442,176,0,16,16,0 +21208,442,156,0,20,20,0 +21209,442,118,13,5,5,0 +21210,442,110,3,14,14,0 +21211,442,119,3,13,13,0 +21212,442,182,24,2,2,2 +21213,442,95,5,11,11,0 +21214,442,137,9,8,8,1 +21215,442,170,0,23,23,0 +21216,442,163,17,3,3,0 +21217,442,160,0,17,17,0 +21218,442,183,0,25,25,0 +21219,442,112,0,24,24,0 +21220,442,188,0,22,22,0 +21221,442,172,0,19,19,0 +21222,442,105,9.5,7,7,1 +21223,442,184,0,18,18,0 +21224,442,102,5,10,10,0 +21225,442,84,0,26,26,0 +21226,442,185,0,27,27,0 +21227,442,181,0,21,21,0 +21228,442,189,0,30,30,0 +21229,442,190,0,29,29,0 +21230,442,179,0,28,28,0 +21231,442,191,0,31,31,0 +21232,443,117,35.5,1,1,3 +21233,443,177,11.5,7,7,0 +21234,443,173,22,3,3,0 +21235,443,158,3,13,13,0 +21236,443,175,8,9,9,0 +21237,443,123,3,16,16,0 +21238,443,176,0,18,18,0 +21239,443,156,0,21,21,0 +21240,443,118,13,6,6,0 +21241,443,110,3,15,15,0 +21242,443,119,3,14,14,0 +21243,443,182,24,2,2,2 +21244,443,95,5,11,11,0 +21245,443,137,18,4,4,2 +21246,443,170,4,12,12,0 +21247,443,163,17,5,5,0 +21248,443,160,0,19,19,0 +21249,443,183,0,25,25,0 +21250,443,112,0,24,24,0 +21251,443,188,0,23,23,0 +21252,443,172,2,17,17,0 +21253,443,105,9.5,8,8,1 +21254,443,184,0,20,20,0 +21255,443,102,5,10,10,0 +21256,443,84,0,26,26,0 +21257,443,185,0,28,28,0 +21258,443,181,0,22,22,0 +21259,443,189,0,30,30,0 +21260,443,190,0,29,29,0 +21261,443,179,0,27,27,0 +21262,443,191,0,31,31,0 +21263,444,117,35.5,1,1,3 +21264,444,177,20.5,5,5,1 +21265,444,173,26,2,2,0 +21266,444,158,3,14,14,0 +21267,444,175,8,9,9,0 +21268,444,123,3,17,17,0 +21269,444,176,0,19,19,0 +21270,444,156,0,23,23,0 +21271,444,118,13,7,7,0 +21272,444,110,3,16,16,0 +21273,444,119,3,15,15,0 +21274,444,182,24,3,3,2 +21275,444,95,6,10,10,0 +21276,444,137,18,6,6,2 +21277,444,170,4,13,13,0 +21278,444,163,23,4,4,0 +21279,444,160,2,18,18,0 +21280,444,183,0,26,26,0 +21281,444,112,0,25,25,0 +21282,444,188,0,24,24,0 +21283,444,172,5,12,12,0 +21284,444,105,9.5,8,8,1 +21285,444,184,0,21,21,0 +21286,444,102,5,11,11,0 +21287,444,84,0,27,27,0 +21288,444,185,0,29,29,0 +21289,444,181,0,22,22,0 +21290,444,189,0,30,30,0 +21291,444,190,0,20,20,0 +21292,444,179,0,28,28,0 +21293,444,191,0,31,31,0 +21294,445,117,35.5,1,1,3 +21295,445,177,20.5,5,5,1 +21296,445,173,29,3,3,0 +21297,445,158,3,14,14,0 +21298,445,175,8,10,10,0 +21299,445,123,3,17,17,0 +21300,445,176,0,19,19,0 +21301,445,156,0,23,23,0 +21302,445,118,19,6,6,0 +21303,445,110,3,16,16,0 +21304,445,119,3,15,15,0 +21305,445,182,33,2,2,3 +21306,445,95,6,11,11,0 +21307,445,137,18,7,7,2 +21308,445,170,4,13,13,0 +21309,445,163,24,4,4,0 +21310,445,160,2,18,18,0 +21311,445,183,0,26,26,0 +21312,445,112,0,25,25,0 +21313,445,188,0,24,24,0 +21314,445,172,5,12,12,0 +21315,445,105,11.5,8,8,1 +21316,445,184,0,21,21,0 +21317,445,102,9,9,9,0 +21318,445,84,0,27,27,0 +21319,445,185,0,29,29,0 +21320,445,181,0,22,22,0 +21321,445,189,0,30,30,0 +21322,445,190,0,20,20,0 +21323,445,179,0,28,28,0 +21324,445,191,0,31,31,0 +21325,446,117,44.5,1,1,4 +21326,446,177,20.5,6,6,1 +21327,446,173,29,3,3,0 +21328,446,158,3,14,14,0 +21329,446,175,10,9,9,0 +21330,446,123,3,17,17,0 +21331,446,176,0,19,19,0 +21332,446,156,0,23,23,0 +21333,446,118,23,5,5,0 +21334,446,110,3,16,16,0 +21335,446,119,3,15,15,0 +21336,446,182,39,2,2,3 +21337,446,95,9,11,11,0 +21338,446,137,18,7,7,2 +21339,446,170,4,13,13,0 +21340,446,163,25,4,4,0 +21341,446,160,2,18,18,0 +21342,446,183,0,24,24,0 +21343,446,112,0,27,27,0 +21344,446,188,0,25,25,0 +21345,446,172,5,12,12,0 +21346,446,105,11.5,8,8,1 +21347,446,184,0,22,22,0 +21348,446,102,9,10,10,0 +21349,446,84,0,28,28,0 +21350,446,185,0,29,29,0 +21351,446,181,0,21,21,0 +21352,446,189,0,30,30,0 +21353,446,190,0,20,20,0 +21354,446,179,0,26,26,0 +21355,446,191,0,31,31,0 +21356,447,117,44.5,2,2,4 +21357,447,177,20.5,7,7,1 +21358,447,173,29,3,3,0 +21359,447,158,3,15,15,0 +21360,447,175,10,9,9,0 +21361,447,123,5,14,14,0 +21362,447,176,1,19,19,0 +21363,447,156,0,24,24,0 +21364,447,118,23,6,6,0 +21365,447,110,3,17,17,0 +21366,447,119,3,16,16,0 +21367,447,182,48,1,1,4 +21368,447,95,9,11,11,0 +21369,447,137,24,5,5,2 +21370,447,170,7,12,12,0 +21371,447,163,25,4,4,0 +21372,447,160,2,18,18,0 +21373,447,183,0,21,21,0 +21374,447,112,0,27,27,0 +21375,447,188,0,25,25,0 +21376,447,172,5,13,13,0 +21377,447,105,15.5,8,8,1 +21378,447,184,0,23,23,0 +21379,447,102,9,10,10,0 +21380,447,84,0,29,29,0 +21381,447,185,0,30,30,0 +21382,447,181,0,22,22,0 +21383,447,189,0,31,31,0 +21384,447,190,0,20,20,0 +21385,447,179,0,26,26,0 +21386,447,191,0,32,32,0 +21387,447,77,0,28,28,0 +21388,447,140,0,33,33,0 +21389,448,117,53.5,2,2,5 +21390,448,177,20.5,7,7,1 +21391,448,173,32,3,3,0 +21392,448,158,3,15,15,0 +21393,448,175,11,10,10,0 +21394,448,123,5,14,14,0 +21395,448,176,1,19,19,0 +21396,448,156,0,24,24,0 +21397,448,118,23,6,6,0 +21398,448,110,3,17,17,0 +21399,448,119,3,16,16,0 +21400,448,182,54,1,1,4 +21401,448,95,13,9,9,0 +21402,448,137,24,5,5,2 +21403,448,170,9,12,12,0 +21404,448,163,25,4,4,0 +21405,448,160,2,18,18,0 +21406,448,183,0,20,20,0 +21407,448,112,0,27,27,0 +21408,448,188,0,25,25,0 +21409,448,172,5,13,13,0 +21410,448,105,15.5,8,8,1 +21411,448,184,0,23,23,0 +21412,448,102,9,11,11,0 +21413,448,84,0,30,30,0 +21414,448,185,0,31,31,0 +21415,448,181,0,22,22,0 +21416,448,189,0,28,28,0 +21417,448,190,0,21,21,0 +21418,448,179,0,26,26,0 +21419,448,191,0,32,32,0 +21420,448,77,0,29,29,0 +21421,448,140,0,33,33,0 +21489,449,94,0,34,34,0 +21488,449,140,3,17,17,0 +21487,449,77,0,22,22,0 +21486,449,191,0,33,33,0 +21485,449,179,0,28,28,0 +21484,449,190,0,24,24,0 +21483,449,189,0,21,21,0 +21481,449,185,0,32,32,0 +21480,449,84,0,31,31,0 +21479,449,102,9,11,11,0 +21477,449,105,21.5,7,7,1 +21476,449,172,5,14,14,0 +21475,449,188,0,29,29,0 +21474,449,112,0,30,30,0 +21473,449,183,0,23,23,0 +21471,449,163,25,4,4,0 +21470,449,170,9,12,12,0 +21469,449,137,24,5,5,2 +21465,449,110,3,18,18,0 +21464,449,118,23,6,6,0 +21462,449,176,1,20,20,0 +21461,449,123,5,15,15,0 +21460,449,175,11,10,10,0 +21458,449,173,32,3,3,0 +21478,449,184,0,26,26,0 +21482,449,181,0,25,25,0 +21468,449,95,13,9,9,0 +21472,449,160,2,19,19,0 +21457,449,177,20.5,8,8,1 +21459,449,158,3,16,16,0 +21463,449,156,0,27,27,0 +21467,449,182,63,1,1,5 +21466,449,119,7,13,13,0 +21456,449,117,53.5,2,2,5 +21490,450,117,62.5,2,2,6 +21491,450,177,20.5,8,8,1 +21492,450,173,32,3,3,0 +21493,450,158,3,16,16,0 +21494,450,175,11,10,10,0 +21495,450,123,5,15,15,0 +21496,450,176,1,20,20,0 +21497,450,156,0,27,27,0 +21498,450,118,23,7,7,0 +21499,450,110,3,18,18,0 +21500,450,119,8,13,13,0 +21501,450,182,66,1,1,5 +21502,450,95,13,9,9,0 +21503,450,137,28,4,4,2 +21504,450,170,9,12,12,0 +21505,450,163,27,6,6,0 +21506,450,160,2,19,19,0 +21507,450,183,0,23,23,0 +21508,450,112,0,30,30,0 +21509,450,188,0,29,29,0 +21510,450,172,5,14,14,0 +21511,450,105,27.5,5,5,1 +21512,450,184,0,25,25,0 +21513,450,102,9,11,11,0 +21514,450,84,0,31,31,0 +21515,450,185,0,32,32,0 +21516,450,181,0,26,26,0 +21517,450,189,0,21,21,0 +21518,450,190,0,24,24,0 +21519,450,179,0,28,28,0 +21520,450,191,0,33,33,0 +21521,450,77,0,22,22,0 +21522,450,140,3,17,17,0 +21523,450,94,0,34,34,0 +21524,451,117,71.5,2,2,7 +21525,451,177,20.5,8,8,1 +21526,451,173,34,3,3,0 +21527,451,158,3,16,16,0 +21528,451,175,11,11,11,0 +21529,451,123,5,15,15,0 +21530,451,176,1,20,20,0 +21531,451,156,0,27,27,0 +21532,451,118,23,7,7,0 +21533,451,110,3,18,18,0 +21534,451,119,8,13,13,0 +21535,451,182,72,1,1,5 +21536,451,95,13,10,10,0 +21537,451,137,29,5,5,2 +21538,451,170,9,12,12,0 +21539,451,163,27,6,6,0 +21540,451,160,2,19,19,0 +21541,451,183,0,23,23,0 +21542,451,112,0,30,30,0 +21543,451,188,0,29,29,0 +21544,451,172,5,14,14,0 +21545,451,105,30.5,4,4,1 +21546,451,184,0,25,25,0 +21547,451,102,13,9,9,0 +21548,451,84,0,31,31,0 +21549,451,185,0,32,32,0 +21550,451,181,0,26,26,0 +21551,451,189,0,21,21,0 +21552,451,190,0,24,24,0 +21553,451,179,0,28,28,0 +21554,451,191,0,34,34,0 +21555,451,77,0,22,22,0 +21556,451,140,3,17,17,0 +21557,451,94,0,35,35,0 +21558,451,166,0,33,33,0 +21559,452,137,9,1,1,1 +21560,452,182,4,2,2,0 +21561,452,172,3,3,3,0 +21562,452,175,2,4,4,0 +21563,452,176,1,5,5,0 +21564,452,117,0,6,6,0 +21565,452,118,0,7,7,0 +21566,452,192,0,8,8,0 +21567,452,163,0,9,9,0 +21568,452,193,0,10,10,0 +21569,452,95,0,11,11,0 +21570,452,188,0,12,12,0 +21571,452,194,0,13,13,0 +21572,452,181,0,14,14,0 +21573,452,195,0,15,15,0 +21574,452,158,0,16,16,0 +21575,452,187,0,17,17,0 +21576,452,196,0,18,18,0 +21577,452,184,0,19,19,0 +21578,452,197,0,20,20,0 +21579,452,119,0,21,21,0 +21580,452,190,0,22,22,0 +21581,452,152,0,23,23,0 +21582,452,105,0,24,24,0 +21583,452,110,0,25,25,0 +21584,452,160,0,26,26,0 +21585,453,137,9,2,2,1 +21586,453,182,10,1,1,0 +21587,453,172,6,4,4,0 +21588,453,175,2,7,7,0 +21589,453,176,3,6,6,0 +21590,453,117,0,9,9,0 +21591,453,118,0,12,12,0 +21592,453,192,0,14,14,0 +21593,453,163,4,5,5,0 +21594,453,193,0,11,11,0 +21595,453,95,0,16,16,0 +21596,453,188,1,8,8,0 +21597,453,194,0,18,18,0 +21598,453,181,0,19,19,0 +21599,453,195,0,22,22,0 +21600,453,158,0,17,17,0 +21601,453,187,9,3,3,1 +21602,453,196,0,10,10,0 +21603,453,184,0,26,26,0 +21604,453,197,0,24,24,0 +21605,453,119,0,15,15,0 +21606,453,190,0,28,28,0 +21607,453,152,0,25,25,0 +21608,453,105,0,13,13,0 +21609,453,110,0,21,21,0 +21610,453,160,0,29,29,0 +21611,453,178,0,20,20,0 +21612,453,173,0,23,23,0 +21613,453,177,0,27,27,0 +21614,454,137,15,1,1,1 +21615,454,182,10,2,2,0 +21616,454,172,7,5,5,0 +21617,454,175,5,6,6,0 +21618,454,176,3,9,9,0 +21619,454,117,9,3,3,1 +21620,454,118,0,15,15,0 +21621,454,192,0,17,17,0 +21622,454,163,4,7,7,0 +21623,454,193,0,14,14,0 +21624,454,95,0,19,19,0 +21625,454,188,1,11,11,0 +21626,454,194,0,22,22,0 +21627,454,181,0,23,23,0 +21628,454,195,0,26,26,0 +21629,454,158,4,8,8,0 +21630,454,187,9,4,4,1 +21631,454,196,0,12,12,0 +21632,454,184,0,28,28,0 +21633,454,197,0,16,16,0 +21634,454,119,0,18,18,0 +21635,454,190,0,25,25,0 +21636,454,152,0,21,21,0 +21637,454,105,0,13,13,0 +21638,454,110,0,20,20,0 +21639,454,160,0,29,29,0 +21640,454,178,0,24,24,0 +21641,454,173,0,27,27,0 +21642,454,177,2,10,10,0 +21643,454,168,0,30,30,0 +21644,455,137,15,2,2,1 +21645,455,182,10,5,5,0 +21646,455,172,7,7,7,0 +21647,455,175,14,3,3,1 +21648,455,176,4,10,10,0 +21649,455,117,15,1,1,1 +21650,455,118,0,16,16,0 +21651,455,192,0,13,13,0 +21652,455,163,8,6,6,0 +21653,455,193,0,15,15,0 +21654,455,95,0,21,21,0 +21655,455,188,1,11,11,0 +21656,455,194,0,24,24,0 +21657,455,181,0,20,20,0 +21658,455,195,0,28,28,0 +21659,455,158,4,9,9,0 +21660,455,187,11,4,4,1 +21661,455,196,0,12,12,0 +21662,455,184,0,19,19,0 +21663,455,197,0,17,17,0 +21664,455,119,0,18,18,0 +21665,455,190,0,27,27,0 +21666,455,152,0,23,23,0 +21667,455,105,0,14,14,0 +21668,455,110,0,22,22,0 +21669,455,160,0,29,29,0 +21670,455,178,0,25,25,0 +21671,455,173,0,26,26,0 +21672,455,177,5,8,8,0 +21673,455,168,0,30,30,0 +21674,456,137,21,1,1,1 +21675,456,182,10,6,6,0 +21676,456,172,7,8,8,0 +21677,456,175,17,3,3,1 +21678,456,176,4,10,10,0 +21679,456,117,19,2,2,1 +21680,456,118,0,17,17,0 +21681,456,192,0,14,14,0 +21682,456,163,8,7,7,0 +21683,456,193,2,11,11,0 +21684,456,95,0,21,21,0 +21685,456,188,1,13,13,0 +21686,456,194,0,24,24,0 +21687,456,181,0,20,20,0 +21688,456,195,0,28,28,0 +21689,456,158,4,9,9,0 +21690,456,187,11,5,5,1 +21691,456,196,0,15,15,0 +21692,456,184,1,12,12,0 +21693,456,197,0,18,18,0 +21694,456,119,0,19,19,0 +21695,456,190,0,27,27,0 +21696,456,152,0,23,23,0 +21697,456,105,0,16,16,0 +21698,456,110,0,22,22,0 +21699,456,160,0,29,29,0 +21700,456,178,0,26,26,0 +21701,456,173,0,25,25,0 +21702,456,177,14,4,4,1 +21703,456,168,0,30,30,0 +21704,457,137,24,2,2,1 +21705,457,182,10,6,6,0 +21706,457,172,8,9,9,0 +21707,457,175,23,3,3,1 +21708,457,176,4,10,10,0 +21709,457,117,28,1,1,2 +21710,457,118,0,15,15,0 +21711,457,192,0,14,14,0 +21712,457,163,8,7,7,0 +21713,457,193,2,11,11,0 +21714,457,95,0,23,23,0 +21715,457,188,1,12,12,0 +21716,457,194,0,25,25,0 +21717,457,181,0,22,22,0 +21718,457,195,0,28,28,0 +21719,457,158,8,8,8,0 +21720,457,187,11,5,5,1 +21721,457,196,0,16,16,0 +21722,457,184,1,13,13,0 +21723,457,197,0,20,20,0 +21724,457,119,0,21,21,0 +21725,457,190,0,27,27,0 +21726,457,152,0,18,18,0 +21727,457,105,0,17,17,0 +21728,457,110,0,24,24,0 +21729,457,160,0,30,30,0 +21730,457,178,0,26,26,0 +21731,457,173,0,19,19,0 +21732,457,177,16,4,4,1 +21733,457,168,0,31,31,0 +21734,457,123,0,29,29,0 +21735,458,137,27,2,2,1 +21736,458,182,10,6,6,0 +21737,458,172,10,7,7,0 +21738,458,175,23,3,3,1 +21739,458,176,4,11,11,0 +21740,458,117,28,1,1,2 +21741,458,118,0,17,17,0 +21742,458,192,0,16,16,0 +21743,458,163,8,9,9,0 +21744,458,193,2,12,12,0 +21745,458,95,1,15,15,0 +21746,458,188,1,13,13,0 +21747,458,194,0,26,26,0 +21748,458,181,0,24,24,0 +21749,458,195,0,27,27,0 +21750,458,158,8,10,10,0 +21751,458,187,15,5,5,1 +21752,458,196,0,18,18,0 +21753,458,184,1,14,14,0 +21754,458,197,0,22,22,0 +21755,458,119,0,23,23,0 +21756,458,190,0,29,29,0 +21757,458,152,0,20,20,0 +21758,458,105,9,8,8,1 +21759,458,110,0,25,25,0 +21760,458,160,0,30,30,0 +21761,458,178,0,28,28,0 +21762,458,173,0,21,21,0 +21763,458,177,22,4,4,1 +21764,458,168,0,31,31,0 +21765,458,123,0,19,19,0 +21766,459,137,27,2,2,1 +21767,459,182,10,8,8,0 +21768,459,172,10,9,9,0 +21769,459,175,27,3,3,1 +21770,459,176,4,11,11,0 +21771,459,117,30,1,1,2 +21772,459,118,0,18,18,0 +21773,459,192,0,17,17,0 +21774,459,163,17,5,5,1 +21775,459,193,2,12,12,0 +21776,459,95,1,15,15,0 +21777,459,188,1,14,14,0 +21778,459,194,0,26,26,0 +21779,459,181,0,21,21,0 +21780,459,195,0,27,27,0 +21781,459,158,14,7,7,0 +21782,459,187,16,6,6,1 +21783,459,196,0,19,19,0 +21784,459,184,1,13,13,0 +21785,459,197,0,23,23,0 +21786,459,119,0,24,24,0 +21787,459,190,0,29,29,0 +21788,459,152,0,20,20,0 +21789,459,105,9,10,10,1 +21790,459,110,0,25,25,0 +21791,459,160,0,30,30,0 +21792,459,178,0,28,28,0 +21793,459,173,0,22,22,0 +21794,459,177,25,4,4,1 +21795,459,168,0,32,32,0 +21796,459,123,0,16,16,0 +21797,459,198,0,31,31,0 +21798,460,137,33,2,2,1 +21799,460,182,11,8,8,0 +21800,460,172,10,9,9,0 +21801,460,175,31,3,3,1 +21802,460,176,4,12,12,0 +21803,460,117,39,1,1,3 +21804,460,118,0,18,18,0 +21805,460,192,0,17,17,0 +21806,460,163,19,5,5,1 +21807,460,193,2,13,13,0 +21808,460,95,4,11,11,0 +21809,460,188,1,15,15,0 +21810,460,194,0,26,26,0 +21811,460,181,0,23,23,0 +21812,460,195,0,27,27,0 +21813,460,158,14,7,7,0 +21814,460,187,16,6,6,1 +21815,460,196,0,19,19,0 +21816,460,184,1,14,14,0 +21817,460,197,0,22,22,0 +21818,460,119,0,25,25,0 +21819,460,190,0,29,29,0 +21820,460,152,0,20,20,0 +21821,460,105,9,10,10,1 +21822,460,110,0,21,21,0 +21823,460,160,0,30,30,0 +21824,460,178,0,28,28,0 +21825,460,173,0,24,24,0 +21826,460,177,25,4,4,1 +21827,460,168,0,34,34,0 +21828,460,123,0,16,16,0 +21829,460,198,0,32,32,0 +21830,460,140,0,31,31,0 +21831,460,186,0,33,33,0 +21832,461,137,33,2,2,1 +21833,461,182,11,8,8,0 +21834,461,172,11,9,9,0 +21835,461,175,31,3,3,1 +21836,461,176,4,14,14,0 +21837,461,117,42,1,1,3 +21838,461,118,0,20,20,0 +21839,461,192,0,19,19,0 +21840,461,163,28,4,4,2 +21841,461,193,2,15,15,0 +21842,461,95,4,13,13,0 +21843,461,188,1,17,17,0 +21844,461,194,0,26,26,0 +21845,461,181,0,24,24,0 +21846,461,195,0,27,27,0 +21847,461,158,14,7,7,0 +21848,461,187,18,6,6,1 +21849,461,196,0,21,21,0 +21850,461,184,1,16,16,0 +21851,461,197,0,22,22,0 +21852,461,119,4,12,12,0 +21853,461,190,0,29,29,0 +21854,461,152,0,23,23,0 +21855,461,105,9,10,10,1 +21856,461,110,6,11,11,0 +21857,461,160,0,30,30,0 +21858,461,178,0,28,28,0 +21859,461,173,0,25,25,0 +21860,461,177,25,5,5,1 +21861,461,168,0,34,34,0 +21862,461,123,0,18,18,0 +21863,461,198,0,33,33,0 +21864,461,140,0,31,31,0 +21865,461,186,0,32,32,0 +21866,462,137,37,2,2,1 +21867,462,182,12,8,8,0 +21868,462,172,11,9,9,0 +21869,462,175,31,4,4,1 +21870,462,176,4,14,14,0 +21871,462,117,51,1,1,4 +21872,462,118,0,21,21,0 +21873,462,192,0,20,20,0 +21874,462,163,34,3,3,2 +21875,462,193,2,15,15,0 +21876,462,95,6,12,12,0 +21877,462,188,1,17,17,0 +21878,462,194,0,29,29,0 +21879,462,181,0,24,24,0 +21880,462,195,0,30,30,0 +21881,462,158,17,7,7,0 +21882,462,187,18,6,6,1 +21883,462,196,0,22,22,0 +21884,462,184,1,16,16,0 +21885,462,197,0,19,19,0 +21886,462,119,4,13,13,0 +21887,462,190,0,26,26,0 +21888,462,152,0,23,23,0 +21889,462,105,9,10,10,1 +21890,462,110,6,11,11,0 +21891,462,160,0,27,27,0 +21892,462,178,0,31,31,0 +21893,462,173,0,25,25,0 +21894,462,177,25,5,5,1 +21895,462,168,0,34,34,0 +21896,462,123,0,18,18,0 +21897,462,198,0,33,33,0 +21898,462,140,0,28,28,0 +21899,462,186,0,32,32,0 +21900,463,137,37,3,3,1 +21901,463,182,12,8,8,0 +21902,463,172,11,9,9,0 +21903,463,175,37,4,4,1 +21904,463,176,4,14,14,0 +21905,463,117,51,1,1,4 +21906,463,118,3,15,15,0 +21907,463,192,0,21,21,0 +21908,463,163,43,2,2,3 +21909,463,193,2,17,17,0 +21910,463,95,6,12,12,0 +21911,463,188,1,18,18,0 +21912,463,194,0,30,30,0 +21913,463,181,0,25,25,0 +21914,463,195,0,29,29,0 +21915,463,158,17,7,7,0 +21916,463,187,22,6,6,1 +21917,463,196,0,22,22,0 +21918,463,184,3,16,16,0 +21919,463,197,0,20,20,0 +21920,463,119,4,13,13,0 +21921,463,190,0,27,27,0 +21922,463,152,0,24,24,0 +21923,463,105,10,10,10,1 +21924,463,110,6,11,11,0 +21925,463,160,0,28,28,0 +21926,463,178,0,31,31,0 +21927,463,173,0,26,26,0 +21928,463,177,25,5,5,1 +21929,463,168,0,34,34,0 +21930,463,123,0,19,19,0 +21931,463,198,0,33,33,0 +21932,463,140,0,23,23,0 +21933,463,186,0,32,32,0 +21934,464,137,46,3,3,2 +21935,464,182,12,8,8,0 +21936,464,172,11,9,9,0 +21937,464,175,40,4,4,1 +21938,464,176,4,15,15,0 +21939,464,117,51,1,1,4 +21940,464,118,4,14,14,0 +21941,464,192,0,23,23,0 +21942,464,163,49,2,2,3 +21943,464,193,2,17,17,0 +21944,464,95,6,12,12,0 +21945,464,188,1,19,19,0 +21946,464,194,0,30,30,0 +21947,464,181,0,26,26,0 +21948,464,195,0,29,29,0 +21949,464,158,21,7,7,0 +21950,464,187,22,6,6,1 +21951,464,196,0,24,24,0 +21952,464,184,3,16,16,0 +21953,464,197,0,21,21,0 +21954,464,119,4,13,13,0 +21955,464,190,0,27,27,0 +21956,464,152,0,22,22,0 +21957,464,105,10,10,10,1 +21958,464,110,6,11,11,0 +21959,464,160,0,28,28,0 +21960,464,178,0,31,31,0 +21961,464,173,2,18,18,0 +21962,464,177,25,5,5,1 +21963,464,168,0,34,34,0 +21964,464,123,0,20,20,0 +21965,464,198,0,33,33,0 +21966,464,140,0,25,25,0 +21967,464,186,0,32,32,0 +22037,465,156,0,30,30,0 +22036,465,186,0,33,33,0 +22035,465,140,0,25,25,0 +22034,465,198,0,34,34,0 +22033,465,123,0,21,21,0 +22032,465,168,0,35,35,0 +22031,465,177,25,5,5,1 +22029,465,178,0,32,32,0 +22028,465,160,0,28,28,0 +22027,465,110,9,12,12,0 +22025,465,152,1,19,19,0 +22024,465,190,0,27,27,0 +22023,465,119,4,14,14,0 +22020,465,196,0,24,24,0 +22019,465,187,22,6,6,1 +22009,465,118,6,13,13,0 +22007,465,176,4,15,15,0 +22006,465,175,40,4,4,1 +22004,465,182,12,8,8,0 +22010,465,192,0,23,23,0 +22011,465,163,49,3,3,3 +22012,465,193,2,17,17,0 +22013,465,95,10,11,11,0 +22014,465,188,1,20,20,0 +22015,465,194,0,31,31,0 +22016,465,181,0,26,26,0 +22017,465,195,0,29,29,0 +22018,465,158,21,7,7,0 +22008,465,117,57,1,1,4 +22030,465,173,2,18,18,0 +22026,465,105,10,10,10,1 +22022,465,197,0,22,22,0 +22003,465,137,55,2,2,3 +22021,465,184,3,16,16,0 +22005,465,172,11,9,9,0 +22038,466,137,59,1,1,3 +22039,466,182,12,10,10,0 +22040,466,172,11,11,11,0 +22041,466,175,40,4,4,1 +22042,466,176,4,15,15,0 +22043,466,117,57,2,2,4 +22044,466,118,9,14,14,0 +22045,466,192,0,23,23,0 +22046,466,163,49,3,3,3 +22047,466,193,2,17,17,0 +22048,466,95,10,13,13,0 +22049,466,188,1,20,20,0 +22050,466,194,0,32,32,0 +22051,466,181,0,26,26,0 +22052,466,195,0,29,29,0 +22053,466,158,22,7,7,0 +22054,466,187,22,6,6,1 +22055,466,196,0,24,24,0 +22056,466,184,3,16,16,0 +22057,466,197,0,22,22,0 +22058,466,119,13,9,9,1 +22059,466,190,0,27,27,0 +22060,466,152,1,19,19,0 +22061,466,105,10,12,12,1 +22062,466,110,15,8,8,0 +22063,466,160,0,28,28,0 +22064,466,178,0,33,33,0 +22065,466,173,2,18,18,0 +22066,466,177,27,5,5,1 +22067,466,168,0,35,35,0 +22068,466,123,0,21,21,0 +22069,466,198,0,34,34,0 +22070,466,140,0,25,25,0 +22071,466,186,0,30,30,0 +22072,466,156,0,31,31,0 +22073,467,117,9,1,1,1 +22074,467,199,6,2,2,0 +22075,467,163,4,3,3,0 +22076,467,182,3,4,4,0 +22077,467,177,2,5,5,0 +22078,467,187,1,6,6,0 +22079,467,105,0,7,7,0 +22080,467,173,0,8,8,0 +22081,467,194,0,9,9,0 +22082,467,181,0,10,10,0 +22083,467,152,0,11,11,0 +22084,467,200,0,12,12,0 +22085,467,110,0,13,13,0 +22086,467,206,0,14,14,0 +22087,467,196,0,15,15,0 +22088,467,201,0,16,16,0 +22089,467,192,0,17,17,0 +22090,467,202,0,18,18,0 +22091,467,172,0,19,19,0 +22092,467,118,0,20,20,0 +22093,467,119,0,21,21,0 +22094,467,158,0,22,22,0 +22095,467,203,0,23,23,0 +22096,467,137,0,24,24,0 +22097,467,95,0,25,25,0 +22098,467,197,0,26,26,0 +22099,467,184,0,27,27,0 +22100,467,204,0,28,28,0 +22101,467,205,0,29,29,0 +22102,467,195,0,30,30,0 +22103,467,170,0,31,31,0 +22104,468,117,18,1,1,2 +22105,468,199,6,3,3,0 +22106,468,163,4,4,4,0 +22107,468,182,3,7,7,0 +22108,468,177,2,9,9,0 +22109,468,187,7,2,2,0 +22110,468,105,3,6,6,0 +22111,468,173,0,13,13,0 +22112,468,194,0,14,14,0 +22113,468,181,2,8,8,0 +22114,468,152,0,17,17,0 +22115,468,200,0,12,12,0 +22116,468,110,0,18,18,0 +22117,468,206,0,19,19,0 +22118,468,196,0,20,20,0 +22119,468,201,0,11,11,0 +22120,468,192,0,21,21,0 +22121,468,202,1,10,10,0 +22122,468,172,0,24,24,0 +22123,468,118,0,25,25,0 +22124,468,119,0,22,22,0 +22125,468,158,0,26,26,0 +22126,468,203,0,23,23,0 +22127,468,137,0,27,27,0 +22128,468,95,4,5,5,0 +22129,468,197,0,15,15,0 +22130,468,184,0,16,16,0 +22131,468,204,0,30,30,0 +22132,468,205,0,29,29,0 +22133,468,195,0,31,31,0 +22134,468,170,0,28,28,0 +22135,469,117,18,1,1,2 +22136,469,199,6,5,5,0 +22137,469,163,4,9,9,0 +22138,469,182,12,2,2,1 +22139,469,177,8,3,3,0 +22140,469,187,8,4,4,0 +22141,469,105,6,6,6,0 +22142,469,173,2,10,10,0 +22143,469,194,0,16,16,0 +22144,469,181,2,11,11,0 +22145,469,152,0,19,19,0 +22146,469,200,0,14,14,0 +22147,469,110,0,20,20,0 +22148,469,206,0,21,21,0 +22149,469,196,0,15,15,0 +22150,469,201,0,13,13,0 +22151,469,192,0,22,22,0 +22152,469,202,1,12,12,0 +22153,469,172,0,26,26,0 +22154,469,118,0,29,29,0 +22155,469,119,4,8,8,0 +22156,469,158,0,23,23,0 +22157,469,203,0,27,27,0 +22158,469,137,0,28,28,0 +22159,469,95,4,7,7,0 +22160,469,197,0,17,17,0 +22161,469,184,0,18,18,0 +22162,469,204,0,32,32,0 +22163,469,205,0,24,24,0 +22164,469,195,0,25,25,0 +22165,469,170,0,31,31,0 +22166,469,207,0,30,30,0 +22167,470,117,18,1,1,2 +22168,470,199,6,8,8,0 +22169,470,163,4,10,10,0 +22170,470,182,12,2,2,1 +22171,470,177,8,5,5,0 +22172,470,187,8,6,6,0 +22173,470,105,10,4,4,0 +22174,470,173,2,13,13,0 +22175,470,194,2,14,14,0 +22176,470,181,2,15,15,0 +22177,470,152,0,20,20,0 +22178,470,200,0,17,17,0 +22179,470,110,0,21,21,0 +22180,470,206,0,22,22,0 +22181,470,196,0,18,18,0 +22182,470,201,0,16,16,0 +22183,470,192,0,23,23,0 +22184,470,202,10,3,3,1 +22185,470,172,0,30,30,0 +22186,470,118,0,28,28,0 +22187,470,119,4,11,11,0 +22188,470,158,0,26,26,0 +22189,470,203,6,7,7,0 +22190,470,137,0,31,31,0 +22191,470,95,4,9,9,0 +22192,470,197,3,12,12,0 +22193,470,184,0,19,19,0 +22194,470,204,0,25,25,0 +22195,470,205,0,27,27,0 +22196,470,195,0,29,29,0 +22197,470,170,0,24,24,0 +22198,470,207,0,32,32,0 +22199,471,117,18,1,1,2 +22200,471,199,6,8,8,0 +22201,471,163,4,11,11,0 +22202,471,182,12,4,4,1 +22203,471,177,14,3,3,0 +22204,471,187,17,2,2,1 +22205,471,105,10,6,6,0 +22206,471,173,5,9,9,0 +22207,471,194,2,15,15,0 +22208,471,181,2,16,16,0 +22209,471,152,0,25,25,0 +22210,471,200,0,21,21,0 +22211,471,110,0,26,26,0 +22212,471,206,0,27,27,0 +22213,471,196,0,22,22,0 +22214,471,201,0,19,19,0 +22215,471,192,1,18,18,0 +22216,471,202,10,5,5,1 +22217,471,172,0,23,23,0 +22218,471,118,0,31,31,0 +22219,471,119,4,13,13,0 +22220,471,158,4,12,12,0 +22221,471,203,6,7,7,0 +22222,471,137,2,17,17,0 +22223,471,95,4,10,10,0 +22224,471,197,3,14,14,0 +22225,471,184,0,24,24,0 +22226,471,204,0,29,29,0 +22227,471,205,0,30,30,0 +22228,471,195,0,32,32,0 +22229,471,170,0,28,28,0 +22230,471,207,0,33,33,0 +22231,471,176,0,20,20,0 +22232,471,136,0,34,34,0 +22233,471,208,0,35,35,0 +22234,472,117,18,1,1,2 +22235,472,199,6,11,11,0 +22236,472,163,4,13,13,0 +22237,472,182,12,6,6,1 +22238,472,177,14,4,4,0 +22239,472,187,17,2,2,1 +22240,472,105,10,7,7,0 +22241,472,173,7,9,9,0 +22242,472,194,2,16,16,0 +22243,472,181,2,17,17,0 +22244,472,152,0,28,28,0 +22245,472,200,0,23,23,0 +22246,472,110,4,12,12,0 +22247,472,206,1,19,19,0 +22248,472,196,0,24,24,0 +22249,472,201,0,22,22,0 +22250,472,192,1,20,20,0 +22251,472,202,16,3,3,1 +22252,472,172,0,26,26,0 +22253,472,118,0,31,31,0 +22254,472,119,13,5,5,1 +22255,472,158,4,14,14,0 +22256,472,203,6,10,10,0 +22257,472,137,2,18,18,0 +22258,472,95,7,8,8,0 +22259,472,197,3,15,15,0 +22260,472,184,0,27,27,0 +22261,472,204,0,30,30,0 +22262,472,205,0,25,25,0 +22263,472,195,0,32,32,0 +22264,472,170,0,29,29,0 +22265,472,207,0,33,33,0 +22266,472,176,0,21,21,0 +22267,472,136,0,34,34,0 +22268,472,208,0,35,35,0 +22269,473,117,18,3,3,2 +22270,473,199,6,12,12,0 +22271,473,163,4,13,13,0 +22272,473,182,12,6,6,1 +22273,473,177,17,4,4,0 +22274,473,187,26,1,1,2 +22275,473,105,10,8,8,0 +22276,473,173,7,10,10,0 +22277,473,194,2,17,17,0 +22278,473,181,2,18,18,0 +22279,473,152,0,28,28,0 +22280,473,200,0,22,22,0 +22281,473,110,4,14,14,0 +22282,473,206,3,16,16,0 +22283,473,196,0,25,25,0 +22284,473,201,0,24,24,0 +22285,473,192,1,21,21,0 +22286,473,202,20,2,2,1 +22287,473,172,1,20,20,0 +22288,473,118,0,31,31,0 +22289,473,119,13,5,5,1 +22290,473,158,10,7,7,0 +22291,473,203,6,11,11,0 +22292,473,137,2,19,19,0 +22293,473,95,7,9,9,0 +22294,473,197,3,15,15,0 +22295,473,184,0,27,27,0 +22296,473,204,0,30,30,0 +22297,473,205,0,26,26,0 +22298,473,195,0,32,32,0 +22299,473,170,0,29,29,0 +22300,473,207,0,33,33,0 +22301,473,176,0,23,23,0 +22302,473,136,0,34,34,0 +22303,473,208,0,35,35,0 +22304,474,117,18,4,4,2 +22305,474,199,6,13,13,0 +22306,474,163,4,15,15,0 +22307,474,182,12,6,6,1 +22308,474,177,17,5,5,0 +22309,474,187,30,1,1,2 +22310,474,105,10,9,9,0 +22311,474,173,10,10,10,0 +22312,474,194,2,19,19,0 +22313,474,181,2,20,20,0 +22314,474,152,0,28,28,0 +22315,474,200,0,23,23,0 +22316,474,110,5,14,14,0 +22317,474,206,3,17,17,0 +22318,474,196,0,25,25,0 +22319,474,201,0,24,24,0 +22320,474,192,1,22,22,0 +22321,474,202,20,2,2,1 +22322,474,172,1,21,21,0 +22323,474,118,0,31,31,0 +22324,474,119,19,3,3,1 +22325,474,158,10,8,8,0 +22326,474,203,6,12,12,0 +22327,474,137,11,7,7,1 +22328,474,95,7,11,11,0 +22329,474,197,3,16,16,0 +22330,474,184,0,27,27,0 +22331,474,204,0,30,30,0 +22332,474,205,0,26,26,0 +22333,474,195,0,32,32,0 +22334,474,170,0,29,29,0 +22335,474,207,0,33,33,0 +22336,474,176,2,18,18,0 +22337,474,136,0,34,34,0 +22338,474,208,0,36,36,0 +22339,474,209,0,35,35,0 +22340,475,117,18,5,5,2 +22341,475,199,6,13,13,0 +22342,475,163,4,16,16,0 +22343,475,182,15,7,7,1 +22344,475,177,21,3,3,0 +22345,475,187,30,1,1,2 +22346,475,105,10,9,9,0 +22347,475,173,10,10,10,0 +22348,475,194,2,19,19,0 +22349,475,181,2,20,20,0 +22350,475,152,0,29,29,0 +22351,475,200,0,24,24,0 +22352,475,110,5,14,14,0 +22353,475,206,5,15,15,0 +22354,475,196,0,26,26,0 +22355,475,201,0,25,25,0 +22356,475,192,1,23,23,0 +22357,475,202,29,2,2,2 +22358,475,172,1,22,22,0 +22359,475,118,0,32,32,0 +22360,475,119,19,4,4,1 +22361,475,158,10,8,8,0 +22362,475,203,6,12,12,0 +22363,475,137,17,6,6,1 +22364,475,95,7,11,11,0 +22365,475,197,3,17,17,0 +22366,475,184,1,21,21,0 +22367,475,204,0,31,31,0 +22368,475,205,0,27,27,0 +22369,475,195,0,33,33,0 +22370,475,170,0,30,30,0 +22371,475,207,0,35,35,0 +22372,475,176,2,18,18,0 +22373,475,136,0,34,34,0 +22374,475,208,0,37,37,0 +22375,475,209,0,36,36,0 +22376,475,175,0,28,28,0 +22377,475,90,0,38,38,0 +22378,476,117,19,5,5,2 +22379,476,199,6,14,14,0 +22380,476,163,4,17,17,0 +22381,476,182,24,3,3,2 +22382,476,177,21,4,4,0 +22383,476,187,30,2,2,2 +22384,476,105,10,10,10,0 +22385,476,173,13,8,8,0 +22386,476,194,2,20,20,0 +22387,476,181,2,21,21,0 +22388,476,152,0,27,27,0 +22389,476,200,0,25,25,0 +22390,476,110,5,15,15,0 +22391,476,206,7,12,12,0 +22392,476,196,0,29,29,0 +22393,476,201,0,26,26,0 +22394,476,192,1,24,24,0 +22395,476,202,35,1,1,2 +22396,476,172,1,23,23,0 +22397,476,118,0,32,32,0 +22398,476,119,19,6,6,1 +22399,476,158,10,9,9,0 +22400,476,203,6,13,13,0 +22401,476,137,17,7,7,1 +22402,476,95,7,11,11,0 +22403,476,197,3,18,18,0 +22404,476,184,1,22,22,0 +22405,476,204,0,31,31,0 +22406,476,205,0,28,28,0 +22407,476,195,0,33,33,0 +22408,476,170,0,30,30,0 +22409,476,207,0,35,35,0 +22410,476,176,2,19,19,0 +22411,476,136,0,34,34,0 +22412,476,208,0,37,37,0 +22413,476,209,0,36,36,0 +22414,476,175,4,16,16,0 +22415,476,90,0,38,38,0 +22416,477,117,25,3,3,2 +22417,477,199,6,16,16,0 +22418,477,163,13,8,8,1 +22419,477,182,24,4,4,2 +22420,477,177,23,5,5,0 +22421,477,187,30,2,2,2 +22422,477,105,11,10,10,0 +22423,477,173,13,9,9,0 +22424,477,194,2,20,20,0 +22425,477,181,2,21,21,0 +22426,477,152,0,26,26,0 +22427,477,200,0,25,25,0 +22428,477,110,5,17,17,0 +22429,477,206,7,14,14,0 +22430,477,196,0,29,29,0 +22431,477,201,0,27,27,0 +22432,477,192,1,24,24,0 +22433,477,202,39,1,1,2 +22434,477,172,1,23,23,0 +22435,477,118,0,31,31,0 +22436,477,119,19,6,6,1 +22437,477,158,10,11,11,0 +22438,477,203,6,15,15,0 +22439,477,137,17,7,7,1 +22440,477,95,7,12,12,0 +22441,477,197,3,18,18,0 +22442,477,184,1,22,22,0 +22443,477,204,0,33,33,0 +22444,477,205,0,28,28,0 +22445,477,195,0,34,34,0 +22446,477,170,0,32,32,0 +22447,477,207,0,36,36,0 +22448,477,176,2,19,19,0 +22449,477,136,0,35,35,0 +22450,477,208,0,37,37,0 +22451,477,209,0,30,30,0 +22452,477,175,7,13,13,0 +22453,477,90,0,38,38,0 +22454,478,117,25,4,4,2 +22455,478,199,6,16,16,0 +22456,478,163,19,6,6,1 +22457,478,182,24,5,5,2 +22458,478,177,27,3,3,0 +22459,478,187,30,2,2,2 +22460,478,105,14,10,10,0 +22461,478,173,13,11,11,0 +22462,478,194,2,21,21,0 +22463,478,181,2,22,22,0 +22464,478,152,2,20,20,0 +22465,478,200,0,27,27,0 +22466,478,110,5,17,17,0 +22467,478,206,7,14,14,0 +22468,478,196,0,29,29,0 +22469,478,201,0,28,28,0 +22470,478,192,1,25,25,0 +22471,478,202,39,1,1,2 +22472,478,172,1,24,24,0 +22473,478,118,0,31,31,0 +22474,478,119,19,7,7,1 +22475,478,158,10,12,12,0 +22476,478,203,6,15,15,0 +22477,478,137,17,8,8,1 +22478,478,95,7,13,13,0 +22479,478,197,3,18,18,0 +22480,478,184,1,23,23,0 +22481,478,204,0,34,34,0 +22482,478,205,0,26,26,0 +22483,478,195,0,30,30,0 +22484,478,170,0,33,33,0 +22485,478,207,0,36,36,0 +22486,478,176,3,19,19,0 +22487,478,136,0,35,35,0 +22488,478,208,0,37,37,0 +22489,478,209,0,32,32,0 +22490,478,175,16,9,9,1 +22491,478,90,0,40,40,0 +22492,478,210,0,38,38,0 +22493,478,211,0,39,39,0 +22494,479,117,25,5,5,2 +22495,479,199,6,16,16,0 +22496,479,163,19,7,7,1 +22497,479,182,26,4,4,2 +22498,479,177,33,2,2,0 +22499,479,187,30,3,3,2 +22500,479,105,14,11,11,0 +22501,479,173,22,6,6,1 +22502,479,194,2,22,22,0 +22503,479,181,2,23,23,0 +22504,479,152,2,21,21,0 +22505,479,200,0,27,27,0 +22506,479,110,5,18,18,0 +22507,479,206,7,14,14,0 +22508,479,196,0,29,29,0 +22509,479,201,0,28,28,0 +22510,479,192,1,25,25,0 +22511,479,202,39,1,1,2 +22512,479,172,5,17,17,0 +22513,479,118,0,31,31,0 +22514,479,119,19,8,8,1 +22515,479,158,10,12,12,0 +22516,479,203,6,15,15,0 +22517,479,137,17,10,10,1 +22518,479,95,7,13,13,0 +22519,479,197,3,19,19,0 +22520,479,184,2,24,24,0 +22521,479,204,0,34,34,0 +22522,479,205,0,26,26,0 +22523,479,195,0,30,30,0 +22524,479,170,0,33,33,0 +22525,479,207,0,37,37,0 +22526,479,176,3,20,20,0 +22527,479,136,0,36,36,0 +22528,479,208,0,39,39,0 +22529,479,209,0,32,32,0 +22530,479,175,19,9,9,1 +22531,479,90,0,40,40,0 +22532,479,210,0,35,35,0 +22533,479,211,0,38,38,0 +22534,480,117,31,3,3,2 +22535,480,199,6,16,16,0 +22536,480,163,19,9,9,1 +22537,480,182,30,5,5,2 +22538,480,177,42,1,1,1 +22539,480,187,30,4,4,2 +22540,480,105,14,11,11,0 +22541,480,173,23,6,6,1 +22542,480,194,2,22,22,0 +22543,480,181,2,23,23,0 +22544,480,152,2,21,21,0 +22545,480,200,0,27,27,0 +22546,480,110,5,18,18,0 +22547,480,206,7,14,14,0 +22548,480,196,0,29,29,0 +22549,480,201,0,28,28,0 +22550,480,192,1,25,25,0 +22551,480,202,39,2,2,2 +22552,480,172,5,17,17,0 +22553,480,118,0,31,31,0 +22554,480,119,21,7,7,1 +22555,480,158,10,12,12,0 +22556,480,203,6,15,15,0 +22557,480,137,20,8,8,1 +22558,480,95,7,13,13,0 +22559,480,197,3,19,19,0 +22560,480,184,2,24,24,0 +22561,480,204,0,34,34,0 +22562,480,205,0,26,26,0 +22563,480,195,0,30,30,0 +22564,480,170,0,33,33,0 +22565,480,207,0,37,37,0 +22566,480,176,3,20,20,0 +22567,480,136,0,36,36,0 +22568,480,208,0,39,39,0 +22569,480,209,0,32,32,0 +22570,480,175,19,10,10,1 +22571,480,90,0,40,40,0 +22572,480,210,0,35,35,0 +22573,480,211,0,38,38,0 +22574,481,117,31,4,4,2 +22575,481,199,6,16,16,0 +22576,481,163,28,6,6,2 +22577,481,182,30,5,5,2 +22578,481,177,42,1,1,1 +22579,481,187,33,3,3,2 +22580,481,105,16,11,11,0 +22581,481,173,23,8,8,1 +22582,481,194,2,23,23,0 +22583,481,181,2,24,24,0 +22584,481,152,2,22,22,0 +22585,481,200,0,28,28,0 +22586,481,110,5,18,18,0 +22587,481,206,7,14,14,0 +22588,481,196,0,30,30,0 +22589,481,201,0,29,29,0 +22590,481,192,1,26,26,0 +22591,481,202,39,2,2,2 +22592,481,172,5,17,17,0 +22593,481,118,0,32,32,0 +22594,481,119,21,9,9,1 +22595,481,158,11,12,12,0 +22596,481,203,6,15,15,0 +22597,481,137,20,10,10,1 +22598,481,95,7,13,13,0 +22599,481,197,3,20,20,0 +22600,481,184,2,25,25,0 +22601,481,204,0,35,35,0 +22602,481,205,0,27,27,0 +22603,481,195,0,31,31,0 +22604,481,170,0,34,34,0 +22605,481,207,4,19,19,0 +22606,481,176,3,21,21,0 +22607,481,136,0,37,37,0 +22608,481,208,0,39,39,0 +22609,481,209,0,33,33,0 +22610,481,175,25,7,7,1 +22611,481,90,0,40,40,0 +22612,481,210,0,36,36,0 +22613,481,211,0,38,38,0 +22735,483,178,9,1,1,1 +22712,482,202,39,2,2,2 +22713,482,172,5,18,18,0 +22733,482,210,0,37,37,0 +22727,482,176,3,21,21,0 +22728,482,136,0,38,38,0 +22720,482,197,3,20,20,0 +22740,483,175,1,6,6,0 +22739,483,158,2,5,5,0 +22738,483,207,3,4,4,0 +22737,483,137,4,3,3,0 +22736,483,199,6,2,2,0 +22734,482,211,0,33,33,0 +22732,482,90,0,40,40,0 +22731,482,175,25,7,7,1 +22730,482,209,0,34,34,0 +22729,482,208,0,39,39,0 +22726,482,207,4,19,19,0 +22725,482,170,0,35,35,0 +22724,482,195,0,31,31,0 +22723,482,205,0,27,27,0 +22722,482,204,0,36,36,0 +22721,482,184,2,25,25,0 +22719,482,95,7,14,14,0 +22715,482,119,21,10,10,1 +22716,482,158,15,12,12,0 +22717,482,203,6,15,15,0 +22718,482,137,20,11,11,1 +22714,482,118,0,32,32,0 +22711,482,192,1,26,26,0 +22710,482,201,0,29,29,0 +22709,482,196,0,30,30,0 +22708,482,206,8,13,13,0 +22705,482,152,2,22,22,0 +22706,482,200,0,28,28,0 +22707,482,110,5,17,17,0 +22704,482,181,2,24,24,0 +22703,482,194,2,23,23,0 +22701,482,105,25,8,8,1 +22702,482,173,23,9,9,1 +22700,482,187,39,3,3,2 +22699,482,177,44,1,1,1 +22698,482,182,30,5,5,2 +22695,482,117,34,4,4,2 +22696,482,199,6,16,16,0 +22697,482,163,28,6,6,2 +22741,483,192,0,7,7,0 +22742,483,163,0,8,8,0 +22743,483,176,0,9,9,0 +22744,483,202,0,10,10,0 +22745,483,197,0,11,11,0 +22746,483,212,0,12,12,0 +22747,483,152,0,13,13,0 +22748,483,172,0,14,14,0 +22749,483,177,0,15,15,0 +22750,483,136,0,16,16,0 +22751,483,119,0,17,17,0 +22752,483,213,0,18,18,0 +22753,483,95,0,19,19,0 +22754,483,203,0,20,20,0 +22755,483,187,0,21,21,0 +22756,483,173,0,22,22,0 +22757,483,117,0,23,23,0 +22758,483,110,0,24,24,0 +22759,483,214,0,25,25,0 +22760,483,206,0,26,26,0 +22761,483,215,0,27,27,0 +22762,483,216,0,28,28,0 +22763,483,194,0,29,29,0 +22764,484,178,15,1,1,1 +22765,484,199,15,2,2,1 +22766,484,137,4,3,3,0 +22767,484,207,3,6,6,0 +22768,484,158,2,7,7,0 +22769,484,175,1,9,9,0 +22770,484,192,0,12,12,0 +22771,484,163,0,14,14,0 +22772,484,176,3,5,5,0 +22773,484,202,0,18,18,0 +22774,484,197,0,11,11,0 +22775,484,212,0,19,19,0 +22776,484,152,0,20,20,0 +22777,484,172,1,10,10,0 +22778,484,177,0,15,15,0 +22779,484,136,0,22,22,0 +22780,484,119,4,4,4,0 +22781,484,213,0,24,24,0 +22782,484,95,0,16,16,0 +22783,484,203,0,21,21,0 +22784,484,187,0,13,13,0 +22785,484,173,2,8,8,0 +22786,484,117,0,23,23,0 +22787,484,110,0,26,26,0 +22788,484,214,0,27,27,0 +22789,484,206,0,28,28,0 +22790,484,215,0,29,29,0 +22791,484,216,0,25,25,0 +22792,484,194,0,30,30,0 +22793,484,217,0,17,17,0 +22794,484,218,0,31,31,0 +22795,485,178,18,2,2,1 +22796,485,199,21,1,1,1 +22797,485,137,13,3,3,1 +22798,485,207,3,6,6,0 +22799,485,158,2,10,10,0 +22800,485,175,1,11,11,0 +22801,485,192,0,14,14,0 +22802,485,163,2,9,9,0 +22803,485,176,3,7,7,0 +22804,485,202,0,23,23,0 +22805,485,197,0,13,13,0 +22806,485,212,0,24,24,0 +22807,485,152,0,18,18,0 +22808,485,172,1,12,12,0 +22809,485,177,0,16,16,0 +22810,485,136,0,21,21,0 +22811,485,119,4,4,4,0 +22812,485,213,0,26,26,0 +22813,485,95,0,19,19,0 +22814,485,203,0,25,25,0 +22815,485,187,0,15,15,0 +22816,485,173,3,8,8,0 +22817,485,117,4,5,5,0 +22818,485,110,0,20,20,0 +22819,485,214,0,28,28,0 +22820,485,206,0,29,29,0 +22821,485,215,0,27,27,0 +22822,485,216,0,17,17,0 +22823,485,194,0,30,30,0 +22824,485,217,0,22,22,0 +22825,485,218,0,32,32,0 +22826,485,219,0,31,31,0 +22827,486,178,18,3,3,1 +22828,486,199,25,1,1,1 +22829,486,137,22,2,2,2 +22830,486,207,3,6,6,0 +22831,486,158,2,12,12,0 +22832,486,175,1,13,13,0 +22833,486,192,0,18,18,0 +22834,486,163,2,10,10,0 +22835,486,176,3,7,7,0 +22836,486,202,2,11,11,0 +22837,486,197,0,16,16,0 +22838,486,212,3,8,8,0 +22839,486,152,0,22,22,0 +22840,486,172,1,15,15,0 +22841,486,177,0,20,20,0 +22842,486,136,0,24,24,0 +22843,486,119,10,4,4,0 +22844,486,213,0,30,30,0 +22845,486,95,0,23,23,0 +22846,486,203,0,17,17,0 +22847,486,187,0,19,19,0 +22848,486,173,3,9,9,0 +22849,486,117,4,5,5,0 +22850,486,110,1,14,14,0 +22851,486,214,0,32,32,0 +22852,486,206,0,33,33,0 +22853,486,215,0,31,31,0 +22854,486,216,0,21,21,0 +22855,486,194,0,28,28,0 +22856,486,217,0,25,25,0 +22857,486,218,0,36,36,0 +22858,486,219,0,27,27,0 +22859,486,201,0,26,26,0 +22860,486,105,0,29,29,0 +22861,486,118,0,34,34,0 +22862,486,205,0,35,35,0 +22863,487,178,18,3,3,1 +22864,487,199,34,1,1,2 +22865,487,137,22,2,2,2 +22866,487,207,3,10,10,0 +22867,487,158,3,13,13,0 +22868,487,175,1,16,16,0 +22869,487,192,0,20,20,0 +22870,487,163,2,14,14,0 +22871,487,176,3,11,11,0 +22872,487,202,2,15,15,0 +22873,487,197,0,19,19,0 +22874,487,212,3,12,12,0 +22875,487,152,0,21,21,0 +22876,487,172,7,5,5,0 +22877,487,177,0,22,22,0 +22878,487,136,0,24,24,0 +22879,487,119,10,4,4,0 +22880,487,213,0,31,31,0 +22881,487,95,4,7,7,0 +22882,487,203,3,9,9,0 +22883,487,187,0,18,18,0 +22884,487,173,5,6,6,0 +22885,487,117,4,8,8,0 +22886,487,110,1,17,17,0 +22887,487,214,0,34,34,0 +22888,487,206,0,33,33,0 +22889,487,215,0,32,32,0 +22890,487,216,0,23,23,0 +22891,487,194,0,30,30,0 +22892,487,217,0,26,26,0 +22893,487,218,0,37,37,0 +22894,487,219,0,29,29,0 +22895,487,201,0,27,27,0 +22896,487,105,0,25,25,0 +22897,487,118,0,35,35,0 +22898,487,205,0,36,36,0 +22899,487,160,0,28,28,0 +22900,488,178,24,2,2,1 +22901,488,199,34,1,1,2 +22902,488,137,22,3,3,2 +22903,488,207,3,13,13,0 +22904,488,158,5,8,8,0 +22905,488,175,1,16,16,0 +22906,488,192,0,20,20,0 +22907,488,163,2,15,15,0 +22908,488,176,4,12,12,0 +22909,488,202,5,7,7,0 +22910,488,197,0,19,19,0 +22911,488,212,3,14,14,0 +22912,488,152,0,21,21,0 +22913,488,172,11,5,5,0 +22914,488,177,0,22,22,0 +22915,488,136,0,25,25,0 +22916,488,119,10,6,6,0 +22917,488,213,0,31,31,0 +22918,488,95,4,10,10,0 +22919,488,203,12,4,4,1 +22920,488,187,0,18,18,0 +22921,488,173,5,9,9,0 +22922,488,117,4,11,11,0 +22923,488,110,1,17,17,0 +22924,488,214,0,34,34,0 +22925,488,206,0,33,33,0 +22926,488,215,0,32,32,0 +22927,488,216,0,23,23,0 +22928,488,194,0,30,30,0 +22929,488,217,0,26,26,0 +22930,488,218,0,37,37,0 +22931,488,219,0,29,29,0 +22932,488,201,0,28,28,0 +22933,488,105,0,24,24,0 +22934,488,118,0,35,35,0 +22935,488,205,0,36,36,0 +22936,488,160,0,27,27,0 +22937,489,178,24,2,2,1 +22938,489,199,37,1,1,2 +22939,489,137,22,3,3,2 +22940,489,207,3,14,14,0 +22941,489,158,5,10,10,0 +22942,489,175,1,17,17,0 +22943,489,192,0,19,19,0 +22944,489,163,2,16,16,0 +22945,489,176,4,13,13,0 +22946,489,202,5,9,9,0 +22947,489,197,0,20,20,0 +22948,489,212,3,15,15,0 +22949,489,152,0,21,21,0 +22950,489,172,17,5,5,0 +22951,489,177,0,22,22,0 +22952,489,136,0,25,25,0 +22953,489,119,10,6,6,0 +22954,489,213,0,32,32,0 +22955,489,95,5,8,8,0 +22956,489,203,21,4,4,2 +22957,489,187,4,11,11,0 +22958,489,173,7,7,7,0 +22959,489,117,4,12,12,0 +22960,489,110,1,18,18,0 +22961,489,214,0,34,34,0 +22962,489,206,0,30,30,0 +22963,489,215,0,33,33,0 +22964,489,216,0,23,23,0 +22965,489,194,0,29,29,0 +22966,489,217,0,26,26,0 +22967,489,218,0,38,38,0 +22968,489,219,0,31,31,0 +22969,489,201,0,28,28,0 +22970,489,105,0,24,24,0 +22971,489,118,0,36,36,0 +22972,489,205,0,35,35,0 +22973,489,160,0,27,27,0 +22974,489,220,0,37,37,0 +22975,490,178,24,3,3,1 +22976,490,199,37,1,1,2 +22977,490,137,26,2,2,2 +22978,490,207,3,15,15,0 +22979,490,158,5,13,13,0 +22980,490,175,1,17,17,0 +22981,490,192,0,19,19,0 +22982,490,163,5,12,12,0 +22983,490,176,4,14,14,0 +22984,490,202,7,10,10,0 +22985,490,197,0,20,20,0 +22986,490,212,3,16,16,0 +22987,490,152,0,21,21,0 +22988,490,172,17,5,5,0 +22989,490,177,0,22,22,0 +22990,490,136,0,25,25,0 +22991,490,119,10,8,8,0 +22992,490,213,0,32,32,0 +22993,490,95,5,11,11,0 +22994,490,203,21,4,4,2 +22995,490,187,10,7,7,0 +22996,490,173,8,9,9,0 +22997,490,117,13,6,6,1 +22998,490,110,1,18,18,0 +22999,490,214,0,34,34,0 +23000,490,206,0,30,30,0 +23001,490,215,0,33,33,0 +23002,490,216,0,23,23,0 +23003,490,194,0,29,29,0 +23004,490,217,0,26,26,0 +23005,490,218,0,38,38,0 +23006,490,219,0,31,31,0 +23007,490,201,0,28,28,0 +23008,490,105,0,24,24,0 +23009,490,118,0,36,36,0 +23010,490,205,0,35,35,0 +23011,490,160,0,27,27,0 +23012,490,220,0,37,37,0 +23013,491,178,24,3,3,1 +23014,491,199,43,1,1,2 +23015,491,137,26,2,2,2 +23016,491,207,3,16,16,0 +23017,491,158,8,9,9,0 +23018,491,175,1,17,17,0 +23019,491,192,0,21,21,0 +23020,491,163,5,13,13,0 +23021,491,176,4,15,15,0 +23022,491,202,7,11,11,0 +23023,491,197,0,20,20,0 +23024,491,212,5,14,14,0 +23025,491,152,0,23,23,0 +23026,491,172,21,5,5,0 +23027,491,177,0,24,24,0 +23028,491,136,0,27,27,0 +23029,491,119,10,8,8,0 +23030,491,213,0,32,32,0 +23031,491,95,5,12,12,0 +23032,491,203,21,4,4,2 +23033,491,187,19,6,6,1 +23034,491,173,8,10,10,0 +23035,491,117,13,7,7,1 +23036,491,110,1,18,18,0 +23037,491,214,0,34,34,0 +23038,491,206,0,22,22,0 +23039,491,215,0,33,33,0 +23040,491,216,0,25,25,0 +23041,491,194,0,30,30,0 +23042,491,217,0,28,28,0 +23043,491,218,0,38,38,0 +23044,491,219,0,31,31,0 +23045,491,201,1,19,19,0 +23046,491,105,0,26,26,0 +23047,491,118,0,36,36,0 +23048,491,205,0,35,35,0 +23049,491,160,0,29,29,0 +23050,491,220,0,37,37,0 +23125,492,160,0,29,29,0 +23124,492,205,0,35,35,0 +23122,492,105,0,26,26,0 +23121,492,201,1,19,19,0 +23120,492,219,0,31,31,0 +23119,492,218,0,38,38,0 +23118,492,217,0,28,28,0 +23116,492,216,0,25,25,0 +23114,492,206,0,22,22,0 +23112,492,110,1,18,18,0 +23110,492,173,8,11,11,0 +23108,492,203,21,5,5,2 +23107,492,95,5,13,13,0 +23106,492,213,0,32,32,0 +23105,492,119,10,8,8,0 +23103,492,177,0,24,24,0 +23102,492,172,25,3,3,0 +23101,492,152,0,23,23,0 +23100,492,212,8,10,10,0 +23099,492,197,0,20,20,0 +23097,492,176,4,15,15,0 +23095,492,192,0,21,21,0 +23093,492,158,10,9,9,0 +23092,492,207,3,16,16,0 +23090,492,199,43,1,1,2 +23123,492,118,0,36,36,0 +23115,492,215,0,33,33,0 +23113,492,214,0,34,34,0 +23109,492,187,20,6,6,1 +23126,492,220,0,37,37,0 +23111,492,117,19,7,7,1 +23117,492,194,0,30,30,0 +23096,492,163,5,14,14,0 +23094,492,175,1,17,17,0 +23091,492,137,35,2,2,3 +23098,492,202,7,12,12,0 +23104,492,136,0,27,27,0 +23089,492,178,24,4,4,1 +23127,493,178,27,4,4,1 +23128,493,199,45,1,1,2 +23129,493,137,39,2,2,3 +23130,493,207,3,16,16,0 +23131,493,158,10,10,10,0 +23132,493,175,1,17,17,0 +23133,493,192,0,22,22,0 +23134,493,163,11,8,8,0 +23135,493,176,4,15,15,0 +23136,493,202,7,13,13,0 +23137,493,197,0,20,20,0 +23138,493,212,8,11,11,0 +23139,493,152,0,23,23,0 +23140,493,172,34,3,3,1 +23141,493,177,0,24,24,0 +23142,493,136,0,27,27,0 +23143,493,119,10,9,9,0 +23144,493,213,0,32,32,0 +23145,493,95,5,14,14,0 +23146,493,203,21,5,5,2 +23147,493,187,21,6,6,1 +23148,493,173,8,12,12,0 +23149,493,117,19,7,7,1 +23150,493,110,1,18,18,0 +23151,493,214,0,34,34,0 +23152,493,206,0,21,21,0 +23153,493,215,0,33,33,0 +23154,493,216,0,25,25,0 +23155,493,194,0,30,30,0 +23156,493,217,0,28,28,0 +23157,493,218,0,38,38,0 +23158,493,219,0,31,31,0 +23159,493,201,1,19,19,0 +23160,493,105,0,26,26,0 +23161,493,118,0,36,36,0 +23162,493,205,0,35,35,0 +23163,493,160,0,29,29,0 +23164,493,220,0,37,37,0 +23165,494,178,31,4,4,1 +23166,494,199,45,2,2,2 +23167,494,137,45,1,1,3 +23168,494,207,3,16,16,0 +23169,494,158,10,11,11,0 +23170,494,175,1,17,17,0 +23171,494,192,0,24,24,0 +23172,494,163,11,8,8,0 +23173,494,176,4,15,15,0 +23174,494,202,7,13,13,0 +23175,494,197,0,21,21,0 +23176,494,212,11,9,9,0 +23177,494,152,0,25,25,0 +23178,494,172,34,3,3,1 +23179,494,177,0,27,27,0 +23180,494,136,0,28,28,0 +23181,494,119,10,10,10,0 +23182,494,213,0,32,32,0 +23183,494,95,5,14,14,0 +23184,494,203,21,6,6,2 +23185,494,187,21,7,7,1 +23186,494,173,10,12,12,0 +23187,494,117,28,5,5,2 +23188,494,110,1,18,18,0 +23189,494,214,0,34,34,0 +23190,494,206,0,23,23,0 +23191,494,215,0,33,33,0 +23192,494,216,0,22,22,0 +23193,494,194,1,20,20,0 +23194,494,217,0,29,29,0 +23195,494,218,0,38,38,0 +23196,494,219,0,31,31,0 +23197,494,201,1,19,19,0 +23198,494,105,0,26,26,0 +23199,494,118,0,36,36,0 +23200,494,205,0,35,35,0 +23201,494,160,0,30,30,0 +23202,494,220,0,37,37,0 +23203,495,178,37,4,4,1 +23204,495,199,49,1,1,2 +23205,495,137,46,2,2,3 +23206,495,207,3,16,16,0 +23207,495,158,10,12,12,0 +23208,495,175,1,18,18,0 +23209,495,192,0,24,24,0 +23210,495,163,11,9,9,0 +23211,495,176,4,15,15,0 +23212,495,202,9,13,13,0 +23213,495,197,0,21,21,0 +23214,495,212,11,10,10,0 +23215,495,152,0,25,25,0 +23216,495,172,34,5,5,1 +23217,495,177,0,27,27,0 +23218,495,136,0,29,29,0 +23219,495,119,10,11,11,0 +23220,495,213,0,33,33,0 +23221,495,95,5,14,14,0 +23222,495,203,21,6,6,2 +23223,495,187,21,7,7,1 +23224,495,173,13,8,8,0 +23225,495,117,37,3,3,3 +23226,495,110,1,17,17,0 +23227,495,214,0,35,35,0 +23228,495,206,0,23,23,0 +23229,495,215,0,34,34,0 +23230,495,216,0,22,22,0 +23231,495,194,1,20,20,0 +23232,495,217,0,30,30,0 +23233,495,218,0,38,38,0 +23234,495,219,0,32,32,0 +23235,495,201,1,19,19,0 +23236,495,105,0,26,26,0 +23237,495,118,0,36,36,0 +23238,495,205,0,28,28,0 +23239,495,160,0,31,31,0 +23240,495,220,0,37,37,0 +23241,496,178,37,5,5,1 +23242,496,199,49,1,1,2 +23243,496,137,48,2,2,3 +23244,496,207,3,16,16,0 +23245,496,158,10,12,12,0 +23246,496,175,1,19,19,0 +23247,496,192,0,25,25,0 +23248,496,163,11,9,9,0 +23249,496,176,4,15,15,0 +23250,496,202,9,13,13,0 +23251,496,197,0,22,22,0 +23252,496,212,11,10,10,0 +23253,496,152,3,17,17,0 +23254,496,172,43,3,3,2 +23255,496,177,0,27,27,0 +23256,496,136,0,29,29,0 +23257,496,119,10,11,11,0 +23258,496,213,0,33,33,0 +23259,496,95,5,14,14,0 +23260,496,203,25,7,7,2 +23261,496,187,27,6,6,1 +23262,496,173,14,8,8,0 +23263,496,117,37,4,4,3 +23264,496,110,1,18,18,0 +23265,496,214,0,35,35,0 +23266,496,206,0,23,23,0 +23267,496,215,0,34,34,0 +23268,496,216,0,24,24,0 +23269,496,194,1,21,21,0 +23270,496,217,0,30,30,0 +23271,496,218,0,39,39,0 +23272,496,219,0,32,32,0 +23273,496,201,1,20,20,0 +23274,496,105,0,26,26,0 +23275,496,118,0,36,36,0 +23276,496,205,0,28,28,0 +23277,496,160,0,31,31,0 +23278,496,220,0,38,38,0 +23279,496,198,0,37,37,0 +23280,497,178,46,3,3,2 +23281,497,199,49,2,2,2 +23282,497,137,50,1,1,3 +23283,497,207,3,17,17,0 +23284,497,158,10,12,12,0 +23285,497,175,1,19,19,0 +23286,497,192,0,25,25,0 +23287,497,163,11,9,9,0 +23288,497,176,4,16,16,0 +23289,497,202,9,13,13,0 +23290,497,197,0,22,22,0 +23291,497,212,11,10,10,0 +23292,497,152,7,15,15,0 +23293,497,172,44,4,4,2 +23294,497,177,0,26,26,0 +23295,497,136,0,29,29,0 +23296,497,119,10,11,11,0 +23297,497,213,0,34,34,0 +23298,497,95,8,14,14,0 +23299,497,203,25,7,7,2 +23300,497,187,27,6,6,1 +23301,497,173,14,8,8,0 +23302,497,117,43,5,5,3 +23303,497,110,1,18,18,0 +23304,497,214,0,36,36,0 +23305,497,206,0,23,23,0 +23306,497,215,0,35,35,0 +23307,497,216,0,24,24,0 +23308,497,194,1,21,21,0 +23309,497,217,0,30,30,0 +23310,497,218,0,39,39,0 +23311,497,219,0,32,32,0 +23312,497,201,1,20,20,0 +23313,497,105,0,27,27,0 +23314,497,118,0,33,33,0 +23315,497,205,0,28,28,0 +23316,497,160,0,31,31,0 +23317,497,220,0,38,38,0 +23318,497,198,0,37,37,0 +58952,498,158,0,28,28,0 +58951,498,136,0,27,27,0 +58950,498,140,0,26,26,0 +58949,498,225,0,25,25,0 +58948,498,197,0,24,24,0 +58947,498,202,0,23,23,0 +58946,498,163,0,22,22,0 +58945,498,219,0,21,21,0 +58944,498,187,0,20,20,0 +58943,498,173,0,19,19,0 +58942,498,199,0,18,18,0 +58941,498,200,0,17,17,0 +58940,498,207,0,16,16,0 +58939,498,176,0,15,15,0 +58938,498,119,0,14,14,0 +58937,498,172,0,13,13,0 +58936,498,203,0,12,12,0 +58935,498,224,0,11,11,0 +58934,498,223,0,10,10,0 +58933,498,222,0,9,9,0 +58932,498,221,0,8,8,0 +58931,498,217,0,7,7,0 +58930,498,117,1,6,6,0 +58929,498,152,2,5,5,0 +58928,498,206,3,4,4,0 +58927,498,177,4,3,3,0 +58926,498,137,6,2,2,0 +58925,498,178,9,1,1,1 +58980,499,158,0,28,28,0 +58979,499,136,0,26,26,0 +58978,499,140,0,27,27,0 +58977,499,225,0,25,25,0 +58976,499,197,0,15,15,0 +58975,499,202,3,7,7,0 +58974,499,163,9,2,2,1 +58973,499,219,0,23,23,0 +58972,499,187,0,14,14,0 +58971,499,173,6,3,3,0 +58970,499,199,0,24,24,0 +58969,499,200,0,13,13,0 +58968,499,207,0,22,22,0 +58967,499,176,0,12,12,0 +58966,499,119,1,10,10,0 +58965,499,172,0,21,21,0 +58964,499,203,0,17,17,0 +58963,499,224,0,16,16,0 +58962,499,223,0,20,20,0 +58961,499,222,0,19,19,0 +58960,499,221,0,18,18,0 +58959,499,217,0,11,11,0 +58958,499,117,3,8,8,0 +58957,499,152,2,9,9,0 +58956,499,206,3,6,6,0 +58955,499,177,4,5,5,0 +58954,499,137,6,4,4,0 +58953,499,178,13,1,1,1 +59009,500,209,0,21,21,0 +59008,500,158,0,26,26,0 +59007,500,136,0,28,28,0 +59006,500,140,0,29,29,0 +59005,500,225,0,27,27,0 +59004,500,197,0,15,15,0 +59003,500,202,7,4,4,0 +59002,500,163,18,1,1,2 +59001,500,219,0,25,25,0 +59000,500,187,0,19,19,0 +58999,500,173,6,6,6,0 +58998,500,199,2,11,11,0 +58997,500,200,1,12,12,0 +58996,500,207,0,20,20,0 +58995,500,176,0,16,16,0 +58994,500,119,1,13,13,0 +58993,500,172,6,5,5,0 +58992,500,203,0,22,22,0 +58991,500,224,0,17,17,0 +58990,500,223,0,18,18,0 +58989,500,222,0,24,24,0 +58988,500,221,0,23,23,0 +58987,500,217,0,14,14,0 +58986,500,117,3,9,9,0 +58985,500,152,2,10,10,0 +58984,500,206,3,8,8,0 +58983,500,177,4,7,7,0 +58982,500,137,9,3,3,0 +58981,500,178,13,2,2,1 +59039,501,226,0,30,30,0 +59038,501,209,0,23,23,0 +59037,501,158,0,26,26,0 +59036,501,136,0,27,27,0 +59035,501,140,0,29,29,0 +59034,501,225,0,28,28,0 +59033,501,197,0,18,18,0 +59032,501,202,8,4,4,0 +59031,501,163,18,1,1,2 +59030,501,219,0,21,21,0 +59029,501,187,3,11,11,0 +59028,501,173,6,7,7,0 +59027,501,199,2,15,15,0 +59026,501,200,1,16,16,0 +59025,501,207,0,22,22,0 +59024,501,176,0,19,19,0 +59023,501,119,7,5,5,0 +59022,501,172,6,6,6,0 +59021,501,203,0,24,24,0 +59020,501,224,4,8,8,0 +59019,501,223,0,20,20,0 +59018,501,222,2,14,14,0 +59017,501,221,0,25,25,0 +59016,501,217,0,17,17,0 +59015,501,117,3,12,12,0 +59014,501,152,2,13,13,0 +59013,501,206,3,10,10,0 +59012,501,177,4,9,9,0 +59011,501,137,18,2,2,1 +59010,501,178,13,3,3,1 +59070,502,227,0,28,28,0 +59069,502,226,0,31,31,0 +59068,502,209,0,25,25,0 +59067,502,158,0,27,27,0 +59066,502,136,0,24,24,0 +59065,502,140,0,30,30,0 +59064,502,225,0,29,29,0 +59063,502,197,2,14,14,0 +59062,502,202,17,4,4,1 +59061,502,163,21,1,1,2 +59060,502,219,0,22,22,0 +59059,502,187,3,12,12,0 +59058,502,173,6,6,6,0 +59057,502,199,6,8,8,0 +59056,502,200,1,17,17,0 +59055,502,207,0,23,23,0 +59054,502,176,0,20,20,0 +59053,502,119,7,5,5,0 +59052,502,172,6,7,7,0 +59051,502,203,1,18,18,0 +59050,502,224,4,10,10,0 +59049,502,223,0,21,21,0 +59048,502,222,2,15,15,0 +59047,502,221,0,26,26,0 +59046,502,217,0,19,19,0 +59045,502,117,3,13,13,0 +59044,502,152,2,16,16,0 +59043,502,206,3,11,11,0 +59042,502,177,4,9,9,0 +59041,502,137,18,3,3,1 +59040,502,178,19,2,2,1 +59101,503,227,0,28,28,0 +59100,503,226,0,31,31,0 +59099,503,209,0,25,25,0 +59098,503,158,0,27,27,0 +59097,503,136,0,24,24,0 +59096,503,140,0,30,30,0 +59095,503,225,0,29,29,0 +59094,503,197,2,16,16,0 +59093,503,202,17,4,4,1 +59092,503,163,21,2,2,2 +59091,503,219,0,23,23,0 +59090,503,187,3,13,13,0 +59089,503,173,6,8,8,0 +59088,503,199,15,5,5,1 +59087,503,200,4,11,11,0 +59086,503,207,0,20,20,0 +59085,503,176,0,21,21,0 +59084,503,119,7,7,7,0 +59083,503,172,12,6,6,0 +59082,503,203,3,14,14,0 +59081,503,224,5,9,9,0 +59080,503,223,0,22,22,0 +59079,503,222,2,17,17,0 +59078,503,221,0,26,26,0 +59077,503,217,0,19,19,0 +59076,503,117,3,15,15,0 +59075,503,152,2,18,18,0 +59074,503,206,3,12,12,0 +59073,503,177,4,10,10,0 +59072,503,137,22,1,1,1 +59071,503,178,19,3,3,1 +59132,504,227,0,28,28,0 +59131,504,226,0,31,31,0 +59130,504,209,0,25,25,0 +59129,504,158,0,27,27,0 +59128,504,136,0,24,24,0 +59127,504,140,0,30,30,0 +59126,504,225,0,29,29,0 +59125,504,197,2,16,16,0 +59124,504,202,23,4,4,1 +59123,504,163,23,3,3,2 +59122,504,219,0,23,23,0 +59121,504,187,3,12,12,0 +59120,504,173,6,8,8,0 +59119,504,199,16,5,5,1 +59118,504,200,4,11,11,0 +59117,504,207,0,20,20,0 +59116,504,176,0,21,21,0 +59115,504,119,7,7,7,0 +59114,504,172,16,6,6,0 +59113,504,203,3,14,14,0 +59112,504,224,5,9,9,0 +59111,504,223,0,22,22,0 +59110,504,222,2,17,17,0 +59109,504,221,0,26,26,0 +59108,504,217,0,19,19,0 +59107,504,117,3,15,15,0 +59106,504,152,2,18,18,0 +59105,504,206,3,13,13,0 +59104,504,177,4,10,10,0 +59103,504,137,25,2,2,1 +59102,504,178,28,1,1,2 +59166,505,228,0,34,34,0 +59165,505,211,0,25,25,0 +59164,505,212,0,22,22,0 +59163,505,227,0,30,30,0 +59162,505,226,0,33,33,0 +59161,505,209,0,27,27,0 +59160,505,158,0,29,29,0 +59159,505,136,0,26,26,0 +59158,505,140,0,32,32,0 +59157,505,225,0,31,31,0 +59156,505,197,4,13,13,0 +59155,505,202,23,4,4,1 +59154,505,163,23,3,3,2 +59153,505,219,0,24,24,0 +59152,505,187,3,15,15,0 +59151,505,173,6,8,8,0 +59150,505,199,20,5,5,1 +59149,505,200,4,12,12,0 +59148,505,207,0,20,20,0 +59147,505,176,0,21,21,0 +59146,505,119,7,7,7,0 +59145,505,172,16,6,6,0 +59144,505,203,3,16,16,0 +59143,505,224,5,10,10,0 +59142,505,223,0,23,23,0 +59141,505,222,2,17,17,0 +59140,505,221,0,28,28,0 +59139,505,217,0,19,19,0 +59138,505,117,4,14,14,0 +59137,505,152,2,18,18,0 +59136,505,206,6,9,9,0 +59135,505,177,4,11,11,0 +59134,505,137,31,2,2,1 +59133,505,178,37,1,1,3 +59201,506,229,0,33,33,0 +59200,506,228,0,35,35,0 +59199,506,211,0,25,25,0 +59198,506,212,0,22,22,0 +59197,506,227,0,30,30,0 +59196,506,226,0,34,34,0 +59195,506,209,0,27,27,0 +59194,506,158,0,29,29,0 +59193,506,136,0,26,26,0 +59192,506,140,0,32,32,0 +59191,506,225,0,31,31,0 +59190,506,197,4,13,13,0 +59189,506,202,23,6,6,1 +59188,506,163,23,5,5,2 +59187,506,219,0,24,24,0 +59186,506,187,3,17,17,0 +59185,506,173,6,8,8,0 +59184,506,199,26,3,3,1 +59183,506,200,4,12,12,0 +59182,506,207,0,19,19,0 +59181,506,176,0,21,21,0 +59180,506,119,7,7,7,0 +59179,506,172,25,4,4,1 +59178,506,203,4,15,15,0 +59177,506,224,5,10,10,0 +59176,506,223,0,23,23,0 +59175,506,222,2,18,18,0 +59174,506,221,0,28,28,0 +59173,506,217,0,20,20,0 +59172,506,117,4,16,16,0 +59171,506,152,4,14,14,0 +59170,506,206,6,9,9,0 +59169,506,177,4,11,11,0 +59168,506,137,34,2,2,1 +59167,506,178,41,1,1,3 +59237,507,95,0,30,30,0 +59236,507,229,0,34,34,0 +59235,507,228,0,36,36,0 +59234,507,211,0,25,25,0 +59233,507,212,0,22,22,0 +59232,507,227,0,31,31,0 +59231,507,226,0,35,35,0 +59230,507,209,0,27,27,0 +59229,507,158,0,29,29,0 +59228,507,136,0,26,26,0 +59227,507,140,0,33,33,0 +59226,507,225,0,32,32,0 +59225,507,197,4,14,14,0 +59224,507,202,23,6,6,1 +59223,507,163,23,5,5,2 +59222,507,219,9,7,7,1 +59221,507,187,3,18,18,0 +59220,507,173,7,9,9,0 +59219,507,199,30,3,3,1 +59218,507,200,4,13,13,0 +59217,507,207,0,20,20,0 +59216,507,176,0,23,23,0 +59215,507,119,7,8,8,0 +59214,507,172,28,4,4,1 +59213,507,203,4,17,17,0 +59212,507,224,5,11,11,0 +59211,507,223,0,24,24,0 +59210,507,222,2,19,19,0 +59209,507,221,0,28,28,0 +59208,507,217,0,21,21,0 +59207,507,117,4,16,16,0 +59206,507,152,4,15,15,0 +59205,507,206,6,10,10,0 +59204,507,177,4,12,12,0 +59203,507,137,36,2,2,1 +59202,507,178,47,1,1,3 +59275,508,191,0,37,37,0 +59274,508,230,0,31,31,0 +59273,508,95,0,30,30,0 +59272,508,229,0,35,35,0 +59271,508,228,0,38,38,0 +59270,508,211,0,25,25,0 +59269,508,212,0,23,23,0 +59268,508,227,0,32,32,0 +59267,508,226,0,36,36,0 +59266,508,209,0,27,27,0 +59265,508,158,0,29,29,0 +59264,508,136,0,26,26,0 +59263,508,140,0,34,34,0 +59262,508,225,0,33,33,0 +59261,508,197,6,11,11,0 +59260,508,202,23,6,6,1 +59259,508,163,29,5,5,2 +59258,508,219,9,7,7,1 +59257,508,187,3,18,18,0 +59256,508,173,7,9,9,0 +59255,508,199,33,3,3,1 +59254,508,200,4,15,15,0 +59253,508,207,0,20,20,0 +59252,508,176,0,22,22,0 +59251,508,119,7,8,8,0 +59250,508,172,32,4,4,1 +59249,508,203,4,17,17,0 +59248,508,224,5,12,12,0 +59247,508,223,0,24,24,0 +59246,508,222,2,19,19,0 +59245,508,221,0,28,28,0 +59244,508,217,0,21,21,0 +59243,508,117,5,13,13,0 +59242,508,152,4,16,16,0 +59241,508,206,6,10,10,0 +59240,508,177,4,14,14,0 +59239,508,137,45,2,2,2 +59238,508,178,47,1,1,3 +59314,509,181,0,36,36,0 +59313,509,191,0,38,38,0 +59312,509,230,0,31,31,0 +59311,509,95,0,30,30,0 +59310,509,229,0,35,35,0 +59309,509,228,0,39,39,0 +59308,509,211,0,25,25,0 +59307,509,212,0,23,23,0 +59306,509,227,0,32,32,0 +59305,509,226,0,37,37,0 +59304,509,209,0,28,28,0 +59303,509,158,0,27,27,0 +59302,509,136,0,26,26,0 +59301,509,140,0,34,34,0 +59300,509,225,0,33,33,0 +59299,509,197,6,12,12,0 +59298,509,202,24,6,6,1 +59297,509,163,29,5,5,2 +59296,509,219,9,8,8,1 +59295,509,187,3,18,18,0 +59294,509,173,10,7,7,0 +59293,509,199,37,3,3,1 +59292,509,200,4,15,15,0 +59291,509,207,0,20,20,0 +59290,509,176,0,22,22,0 +59289,509,119,7,9,9,0 +59288,509,172,32,4,4,1 +59287,509,203,4,17,17,0 +59286,509,224,5,13,13,0 +59285,509,223,0,24,24,0 +59284,509,222,2,19,19,0 +59283,509,221,0,29,29,0 +59282,509,217,0,21,21,0 +59281,509,117,5,14,14,0 +59280,509,152,4,16,16,0 +59279,509,206,6,11,11,0 +59278,509,177,6,10,10,0 +59277,509,137,54,1,1,3 +59276,509,178,53,2,2,3 +59355,510,214,0,41,41,0 +59354,510,110,0,32,32,0 +59353,510,181,0,38,38,0 +59352,510,191,0,34,34,0 +59351,510,230,0,31,31,0 +59350,510,95,0,30,30,0 +59349,510,229,0,37,37,0 +59348,510,228,0,40,40,0 +59347,510,211,0,25,25,0 +59346,510,212,1,20,20,0 +59345,510,227,0,33,33,0 +59344,510,226,0,39,39,0 +59343,510,209,0,28,28,0 +59342,510,158,0,27,27,0 +59341,510,136,0,26,26,0 +59340,510,140,0,36,36,0 +59339,510,225,0,35,35,0 +59338,510,197,6,13,13,0 +59337,510,202,28,6,6,1 +59336,510,163,29,5,5,2 +59335,510,219,9,8,8,1 +59334,510,187,6,11,11,0 +59333,510,173,10,7,7,0 +59332,510,199,40,3,3,1 +59331,510,200,4,17,17,0 +59330,510,207,0,21,21,0 +59329,510,176,0,23,23,0 +59328,510,119,7,9,9,0 +59327,510,172,32,4,4,1 +59326,510,203,6,14,14,0 +59325,510,224,5,15,15,0 +59324,510,223,0,24,24,0 +59323,510,222,2,19,19,0 +59322,510,221,0,29,29,0 +59321,510,217,0,22,22,0 +59320,510,117,5,16,16,0 +59319,510,152,4,18,18,0 +59318,510,206,6,12,12,0 +59317,510,177,6,10,10,0 +59316,510,137,54,2,2,3 +59315,510,178,62,1,1,4 +59396,511,214,0,41,41,0 +59395,511,110,0,32,32,0 +59394,511,181,0,38,38,0 +59393,511,191,0,34,34,0 +59392,511,230,0,31,31,0 +59391,511,95,0,30,30,0 +59390,511,229,0,37,37,0 +59389,511,228,0,40,40,0 +59388,511,211,0,24,24,0 +59387,511,212,1,21,21,0 +59386,511,227,0,33,33,0 +59385,511,226,0,39,39,0 +59384,511,209,0,28,28,0 +59383,511,158,0,27,27,0 +59382,511,136,0,26,26,0 +59381,511,140,0,36,36,0 +59380,511,225,0,35,35,0 +59379,511,197,6,13,13,0 +59378,511,202,32,5,5,1 +59377,511,163,29,6,6,2 +59376,511,219,9,8,8,1 +59375,511,187,6,11,11,0 +59374,511,173,13,7,7,0 +59373,511,199,42,3,3,1 +59372,511,200,4,17,17,0 +59371,511,207,1,20,20,0 +59370,511,176,0,22,22,0 +59369,511,119,7,9,9,0 +59368,511,172,34,4,4,1 +59367,511,203,6,14,14,0 +59366,511,224,5,15,15,0 +59365,511,223,0,25,25,0 +59364,511,222,2,19,19,0 +59363,511,221,0,29,29,0 +59362,511,217,0,23,23,0 +59361,511,117,5,16,16,0 +59360,511,152,4,18,18,0 +59359,511,206,6,12,12,0 +59358,511,177,6,10,10,0 +59357,511,137,54,2,2,3 +59356,511,178,67,1,1,5 +58499,512,233,0,26,26,0 +58498,512,119,0,25,25,0 +58497,512,232,0,24,24,0 +58496,512,137,0,23,23,0 +58495,512,175,0,22,22,0 +58494,512,202,0,21,21,0 +58493,512,222,0,20,20,0 +58492,512,163,0,19,19,0 +58491,512,182,0,18,18,0 +58490,512,219,0,17,17,0 +58489,512,197,0,16,16,0 +58488,512,231,0,15,15,0 +58487,512,136,0,14,14,0 +58486,512,212,0,13,13,0 +58485,512,203,0,12,12,0 +58484,512,206,0,11,11,0 +58483,512,223,0,10,10,0 +58482,512,178,0,9,9,0 +58481,512,200,0,8,8,0 +58480,512,173,0,7,7,0 +58479,512,224,1,6,6,0 +58478,512,207,2,5,5,0 +58477,512,221,3,4,4,0 +58476,512,187,4,3,3,0 +58475,512,199,6,2,2,0 +58474,512,172,9,1,1,1 +58525,513,233,0,21,21,0 +58524,513,119,0,13,13,0 +58523,513,232,0,26,26,0 +58522,513,137,0,25,25,0 +58521,513,175,0,24,24,0 +58520,513,202,3,5,5,0 +58519,513,222,1,9,9,0 +58518,513,163,0,22,22,0 +58517,513,182,0,23,23,0 +58516,513,219,0,15,15,0 +58515,513,197,0,20,20,0 +58514,513,231,0,19,19,0 +58513,513,136,0,17,17,0 +58512,513,212,0,18,18,0 +58511,513,203,2,6,6,0 +58510,513,206,0,16,16,0 +58509,513,223,0,14,14,0 +58508,513,178,0,12,12,0 +58507,513,200,0,10,10,0 +58506,513,173,0,11,11,0 +58505,513,224,1,8,8,0 +58504,513,207,2,7,7,0 +58503,513,221,9,3,3,0 +58502,513,187,4,4,4,0 +58501,513,199,10,2,2,0 +58500,513,172,18,1,1,2 +58551,514,233,0,25,25,0 +58550,514,119,0,17,17,0 +58549,514,232,0,26,26,0 +58548,514,137,0,14,14,0 +58547,514,175,0,20,20,0 +58546,514,202,3,9,9,0 +58545,514,222,7,5,5,0 +58544,514,163,0,24,24,0 +58543,514,182,1,11,11,0 +58542,514,219,0,19,19,0 +58541,514,197,4,8,8,0 +58540,514,231,0,15,15,0 +58539,514,136,0,22,22,0 +58538,514,212,0,23,23,0 +58537,514,203,11,3,3,1 +58536,514,206,0,21,21,0 +58535,514,223,0,16,16,0 +58534,514,178,0,18,18,0 +58533,514,200,0,12,12,0 +58532,514,173,0,13,13,0 +58531,514,224,1,10,10,0 +58530,514,207,5,6,6,0 +58529,514,221,9,4,4,0 +58528,514,187,4,7,7,0 +58527,514,199,12,2,2,0 +58526,514,172,18,1,1,2 +58577,515,233,0,25,25,0 +58576,515,119,0,18,18,0 +58575,515,232,0,26,26,0 +58574,515,137,0,15,15,0 +58573,515,175,0,20,20,0 +58572,515,202,3,10,10,0 +58571,515,222,13,3,3,0 +58570,515,163,0,24,24,0 +58569,515,182,1,12,12,0 +58568,515,219,0,19,19,0 +58567,515,197,5,7,7,0 +58566,515,231,0,16,16,0 +58565,515,136,0,22,22,0 +58564,515,212,0,23,23,0 +58563,515,203,20,1,1,2 +58562,515,206,0,21,21,0 +58561,515,223,0,17,17,0 +58560,515,178,4,9,9,0 +58559,515,200,0,14,14,0 +58558,515,173,0,13,13,0 +58557,515,224,1,11,11,0 +58556,515,207,8,6,6,0 +58555,515,221,11,5,5,0 +58554,515,187,4,8,8,0 +58553,515,199,12,4,4,0 +58552,515,172,18,2,2,2 +58604,516,234,0,27,27,0 +58603,516,233,0,24,24,0 +58602,516,119,0,17,17,0 +58601,516,232,0,26,26,0 +58600,516,137,0,15,15,0 +58599,516,175,0,20,20,0 +58598,516,202,4,10,10,0 +58597,516,222,16,5,5,0 +58596,516,163,0,19,19,0 +58595,516,182,1,12,12,0 +58594,516,219,0,21,21,0 +58593,516,197,7,7,7,0 +58592,516,231,0,16,16,0 +58591,516,136,0,23,23,0 +58590,516,212,0,25,25,0 +58589,516,203,20,1,1,2 +58588,516,206,0,22,22,0 +58587,516,223,0,18,18,0 +58586,516,178,4,9,9,0 +58585,516,200,0,14,14,0 +58584,516,173,0,13,13,0 +58583,516,224,1,11,11,0 +58582,516,207,12,6,6,0 +58581,516,221,20,2,2,1 +58580,516,187,4,8,8,0 +58579,516,199,18,4,4,0 +58578,516,172,18,3,3,2 +58632,517,152,0,26,26,0 +58631,517,234,0,28,28,0 +58630,517,233,0,17,17,0 +58629,517,119,2,11,11,0 +58628,517,232,0,27,27,0 +58627,517,137,0,16,16,0 +58626,517,175,0,22,22,0 +58625,517,202,8,7,7,0 +58624,517,222,24,2,2,1 +58623,517,163,0,20,20,0 +58622,517,182,1,13,13,0 +58621,517,219,0,23,23,0 +58620,517,197,7,8,8,0 +58619,517,231,0,18,18,0 +58618,517,136,0,21,21,0 +58617,517,212,0,25,25,0 +58616,517,203,20,3,3,2 +58615,517,206,0,24,24,0 +58614,517,223,0,19,19,0 +58613,517,178,4,10,10,0 +58612,517,200,0,15,15,0 +58611,517,173,0,14,14,0 +58610,517,224,1,12,12,0 +58609,517,207,12,6,6,0 +58608,517,221,20,4,4,1 +58607,517,187,5,9,9,0 +58606,517,199,19,5,5,0 +58605,517,172,24,1,1,2 +58660,518,152,0,26,26,0 +58659,518,234,0,28,28,0 +58658,518,233,0,18,18,0 +58657,518,119,2,12,12,0 +58656,518,232,0,27,27,0 +58655,518,137,0,17,17,0 +58654,518,175,0,22,22,0 +58653,518,202,8,8,8,0 +58652,518,222,30,1,1,2 +58651,518,163,0,20,20,0 +58650,518,182,1,15,15,0 +58649,518,219,0,23,23,0 +58648,518,197,7,9,9,0 +58647,518,231,0,19,19,0 +58646,518,136,0,21,21,0 +58645,518,212,0,25,25,0 +58644,518,203,20,3,3,2 +58643,518,206,0,24,24,0 +58642,518,223,6,10,10,0 +58641,518,178,4,11,11,0 +58640,518,200,1,13,13,0 +58639,518,173,0,16,16,0 +58638,518,224,1,14,14,0 +58637,518,207,12,6,6,0 +58636,518,221,20,4,4,1 +58635,518,187,8,7,7,0 +58634,518,199,20,5,5,0 +58633,518,172,24,2,2,2 +58691,519,236,0,31,31,0 +58690,519,235,0,29,29,0 +58689,519,177,0,22,22,0 +58688,519,152,0,27,27,0 +58687,519,234,0,30,30,0 +58686,519,233,0,20,20,0 +58685,519,119,2,14,14,0 +58684,519,232,0,28,28,0 +58683,519,137,0,19,19,0 +58682,519,175,0,23,23,0 +58681,519,202,8,10,10,0 +58680,519,222,30,1,1,2 +58679,519,163,4,13,13,0 +58678,519,182,1,17,17,0 +58677,519,219,9,7,7,1 +58676,519,197,9,8,8,0 +58675,519,231,0,21,21,0 +58674,519,136,0,24,24,0 +58673,519,212,0,26,26,0 +58672,519,203,26,2,2,2 +58671,519,206,0,25,25,0 +58670,519,223,7,11,11,0 +58669,519,178,7,12,12,0 +58668,519,200,1,15,15,0 +58667,519,173,0,18,18,0 +58666,519,224,1,16,16,0 +58665,519,207,12,6,6,0 +58664,519,221,20,4,4,1 +58663,519,187,8,9,9,0 +58662,519,199,20,5,5,0 +58661,519,172,24,3,3,2 +58722,520,236,0,28,28,0 +58721,520,235,1,18,18,0 +58720,520,177,0,25,25,0 +58719,520,152,0,29,29,0 +58718,520,234,0,31,31,0 +58717,520,233,0,22,22,0 +58716,520,119,2,14,14,0 +58715,520,232,0,30,30,0 +58714,520,137,0,20,20,0 +58713,520,175,0,21,21,0 +58712,520,202,8,12,12,0 +58711,520,222,32,1,1,2 +58710,520,163,10,10,10,0 +58709,520,182,1,17,17,0 +58708,520,219,9,11,11,1 +58707,520,197,13,7,7,0 +58706,520,231,0,23,23,0 +58705,520,136,0,26,26,0 +58704,520,212,0,24,24,0 +58703,520,203,26,2,2,2 +58702,520,206,0,27,27,0 +58701,520,223,16,6,6,1 +58700,520,178,7,13,13,0 +58699,520,200,1,15,15,0 +58698,520,173,0,19,19,0 +58697,520,224,1,16,16,0 +58696,520,207,12,8,8,0 +58695,520,221,20,4,4,1 +58694,520,187,11,9,9,0 +58693,520,199,20,5,5,0 +58692,520,172,24,3,3,2 +58754,521,209,0,22,22,0 +58753,521,236,0,29,29,0 +58752,521,235,1,18,18,0 +58751,521,177,0,26,26,0 +58750,521,152,0,30,30,0 +58749,521,234,0,32,32,0 +58748,521,233,0,23,23,0 +58747,521,119,2,14,14,0 +58746,521,232,0,31,31,0 +58745,521,137,0,20,20,0 +58744,521,175,0,21,21,0 +58743,521,202,8,13,13,0 +58742,521,222,35,1,1,2 +58741,521,163,10,11,11,0 +58740,521,182,1,17,17,0 +58739,521,219,9,12,12,1 +58738,521,197,13,8,8,0 +58737,521,231,0,24,24,0 +58736,521,136,0,27,27,0 +58735,521,212,0,25,25,0 +58734,521,203,26,3,3,2 +58733,521,206,0,28,28,0 +58732,521,223,22,4,4,1 +58731,521,178,16,7,7,1 +58730,521,200,2,15,15,0 +58729,521,173,0,19,19,0 +58728,521,224,1,16,16,0 +58727,521,207,12,10,10,0 +58726,521,221,20,5,5,1 +58725,521,187,13,9,9,0 +58724,521,199,20,6,6,0 +58723,521,172,28,2,2,2 +58786,522,209,0,22,22,0 +58785,522,236,0,29,29,0 +58784,522,235,1,18,18,0 +58783,522,177,0,27,27,0 +58782,522,152,0,30,30,0 +58781,522,234,0,32,32,0 +58780,522,233,0,24,24,0 +58779,522,119,2,14,14,0 +58778,522,232,0,31,31,0 +58777,522,137,0,20,20,0 +58776,522,175,0,21,21,0 +58775,522,202,8,13,13,0 +58774,522,222,38,1,1,2 +58773,522,163,11,11,11,0 +58772,522,182,1,17,17,0 +58771,522,219,9,12,12,1 +58770,522,197,13,8,8,0 +58769,522,231,0,25,25,0 +58768,522,136,0,28,28,0 +58767,522,212,0,26,26,0 +58766,522,203,32,2,2,2 +58765,522,206,0,23,23,0 +58764,522,223,24,5,5,1 +58763,522,178,25,4,4,2 +58762,522,200,2,15,15,0 +58761,522,173,0,19,19,0 +58760,522,224,1,16,16,0 +58759,522,207,12,10,10,0 +58758,522,221,20,6,6,1 +58757,522,187,13,9,9,0 +58756,522,199,20,7,7,0 +58755,522,172,32,3,3,2 +58818,523,209,0,23,23,0 +58817,523,236,0,29,29,0 +58816,523,235,3,15,15,0 +58815,523,177,0,27,27,0 +58814,523,152,0,30,30,0 +58813,523,234,0,32,32,0 +58812,523,233,0,25,25,0 +58811,523,119,2,17,17,0 +58810,523,232,0,31,31,0 +58809,523,137,3,14,14,0 +58808,523,175,0,22,22,0 +58807,523,202,8,13,13,0 +58806,523,222,44,1,1,2 +58805,523,163,11,11,11,0 +58804,523,182,1,19,19,0 +58803,523,219,9,12,12,1 +58802,523,197,13,8,8,0 +58801,523,231,0,26,26,0 +58800,523,136,0,28,28,0 +58799,523,212,0,21,21,0 +58798,523,203,32,4,4,2 +58797,523,206,0,24,24,0 +58796,523,223,24,5,5,1 +58795,523,178,34,3,3,3 +58794,523,200,3,16,16,0 +58793,523,173,0,20,20,0 +58792,523,224,1,18,18,0 +58791,523,207,12,10,10,0 +58790,523,221,20,6,6,1 +58789,523,187,13,9,9,0 +58788,523,199,20,7,7,0 +58787,523,172,36,2,2,2 +58852,524,176,0,34,34,0 +58851,524,230,0,29,29,0 +58850,524,209,0,23,23,0 +58849,524,236,0,30,30,0 +58848,524,235,3,16,16,0 +58847,524,177,0,27,27,0 +58846,524,152,0,31,31,0 +58845,524,234,0,33,33,0 +58844,524,233,0,25,25,0 +58843,524,119,2,18,18,0 +58842,524,232,0,32,32,0 +58841,524,137,3,15,15,0 +58840,524,175,0,22,22,0 +58839,524,202,8,13,13,0 +58838,524,222,51,1,1,3 +58837,524,163,11,11,11,0 +58836,524,182,4,14,14,0 +58835,524,219,9,12,12,1 +58834,524,197,14,8,8,0 +58833,524,231,0,26,26,0 +58832,524,136,0,28,28,0 +58831,524,212,0,21,21,0 +58830,524,203,38,2,2,2 +58829,524,206,0,24,24,0 +58828,524,223,27,5,5,1 +58827,524,178,34,4,4,3 +58826,524,200,3,17,17,0 +58825,524,173,0,20,20,0 +58824,524,224,1,19,19,0 +58823,524,207,14,9,9,0 +58822,524,221,20,6,6,1 +58821,524,187,13,10,10,0 +58820,524,199,20,7,7,0 +58819,524,172,36,3,3,2 +58888,525,237,0,36,36,0 +58887,525,217,0,24,24,0 +58886,525,176,0,35,35,0 +58885,525,230,0,30,30,0 +58884,525,209,0,23,23,0 +58883,525,236,0,31,31,0 +58882,525,235,3,16,16,0 +58881,525,177,0,29,29,0 +58880,525,152,0,32,32,0 +58879,525,234,0,34,34,0 +58878,525,233,0,26,26,0 +58877,525,119,2,18,18,0 +58876,525,232,0,33,33,0 +58875,525,137,3,15,15,0 +58874,525,175,0,22,22,0 +58873,525,202,10,12,12,0 +58872,525,222,51,1,1,3 +58871,525,163,11,11,11,0 +58870,525,182,4,14,14,0 +58869,525,219,9,13,13,1 +58868,525,197,14,8,8,0 +58867,525,231,0,27,27,0 +58866,525,136,0,28,28,0 +58865,525,212,0,21,21,0 +58864,525,203,44,2,2,2 +58863,525,206,0,25,25,0 +58862,525,223,29,5,5,1 +58861,525,178,40,3,3,4 +58860,525,200,3,17,17,0 +58859,525,173,0,20,20,0 +58858,525,224,1,19,19,0 +58857,525,207,14,9,9,0 +58856,525,221,20,6,6,1 +58855,525,187,14,10,10,0 +58854,525,199,20,7,7,0 +58853,525,172,36,4,4,2 +58924,526,237,0,36,36,0 +58923,526,217,0,24,24,0 +58922,526,176,0,33,33,0 +58921,526,230,0,30,30,0 +58920,526,209,0,25,25,0 +58919,526,236,0,31,31,0 +58918,526,235,3,17,17,0 +58917,526,177,0,29,29,0 +58916,526,152,0,32,32,0 +58915,526,234,0,35,35,0 +58914,526,233,2,19,19,0 +58913,526,119,2,20,20,0 +58912,526,232,0,34,34,0 +58911,526,137,3,16,16,0 +58910,526,175,0,23,23,0 +58909,526,202,14,10,10,0 +58908,526,222,51,1,1,3 +58907,526,163,17,8,8,0 +58906,526,182,4,14,14,0 +58905,526,219,9,13,13,1 +58904,526,197,14,11,11,0 +58903,526,231,0,27,27,0 +58902,526,136,0,28,28,0 +58901,526,212,0,22,22,0 +58900,526,203,47,2,2,3 +58899,526,206,0,26,26,0 +58898,526,223,29,5,5,1 +58897,526,178,40,3,3,4 +58896,526,200,3,18,18,0 +58895,526,173,3,15,15,0 +58894,526,224,1,21,21,0 +58893,526,207,14,12,12,0 +58892,526,221,20,6,6,1 +58891,526,187,15,9,9,0 +58890,526,199,20,7,7,0 +58889,526,172,36,4,4,2 +57169,527,242,0,27,27,0 +57168,527,158,0,26,26,0 +57167,527,212,0,25,25,0 +57166,527,211,0,24,24,0 +57165,527,232,0,23,23,0 +57164,527,241,0,22,22,0 +57163,527,240,0,21,21,0 +57162,527,178,0,20,20,0 +57161,527,187,0,19,19,0 +57160,527,230,0,18,18,0 +57159,527,233,0,17,17,0 +57158,527,172,0,16,16,0 +57157,527,223,0,15,15,0 +57156,527,202,0,14,14,0 +57155,527,239,0,13,13,0 +57154,527,197,0,12,12,0 +57153,527,200,0,11,11,0 +57152,527,222,0,10,10,0 +57151,527,224,0,9,9,0 +57150,527,203,0,8,8,0 +57149,527,199,0,7,7,0 +57148,527,175,1,6,6,0 +57147,527,238,2,5,5,0 +57146,527,231,3,4,4,0 +57145,527,221,4,3,3,0 +57144,527,182,6,2,2,0 +57143,527,207,9,1,1,1 +57197,528,119,0,16,16,0 +57196,528,242,0,28,28,0 +57195,528,158,0,27,27,0 +57194,528,212,0,22,22,0 +57193,528,211,0,25,25,0 +57192,528,232,0,26,26,0 +57191,528,241,0,24,24,0 +57190,528,240,0,23,23,0 +57189,528,178,0,17,17,0 +57188,528,187,0,13,13,0 +57187,528,230,0,21,21,0 +57186,528,233,0,20,20,0 +57185,528,172,0,14,14,0 +57184,528,223,2,7,7,0 +57183,528,202,1,9,9,0 +57182,528,239,0,19,19,0 +57181,528,197,0,18,18,0 +57180,528,200,0,11,11,0 +57179,528,222,0,15,15,0 +57178,528,224,6,4,4,0 +57177,528,203,0,12,12,0 +57176,528,199,9,3,3,1 +57175,528,175,1,10,10,0 +57174,528,238,2,8,8,0 +57173,528,231,3,6,6,0 +57172,528,221,4,5,5,0 +57171,528,182,10,2,2,0 +57170,528,207,12,1,1,1 +57229,529,163,0,32,32,0 +57228,529,177,0,29,29,0 +57227,529,219,0,28,28,0 +57226,529,243,0,17,17,0 +57225,529,119,0,19,19,0 +57224,529,242,0,31,31,0 +57223,529,158,0,30,30,0 +57222,529,212,0,18,18,0 +57221,529,211,0,25,25,0 +57220,529,232,0,26,26,0 +57219,529,241,0,27,27,0 +57218,529,240,0,24,24,0 +57217,529,178,3,8,8,0 +57216,529,187,4,7,7,0 +57215,529,230,0,22,22,0 +57214,529,233,0,23,23,0 +57213,529,172,2,10,10,0 +57212,529,223,2,11,11,0 +57211,529,202,2,12,12,0 +57210,529,239,0,21,21,0 +57209,529,197,0,15,15,0 +57208,529,200,0,14,14,0 +57207,529,222,0,20,20,0 +57206,529,224,6,6,6,0 +57205,529,203,0,16,16,0 +57204,529,199,9,5,5,1 +57203,529,175,1,13,13,0 +57202,529,238,11,2,2,1 +57201,529,231,3,9,9,0 +57200,529,221,10,4,4,0 +57199,529,182,10,3,3,0 +57198,529,207,12,1,1,1 +57262,530,206,0,33,33,0 +57261,530,163,0,32,32,0 +57260,530,177,0,29,29,0 +57259,530,219,0,24,24,0 +57258,530,243,0,18,18,0 +57257,530,119,1,13,13,0 +57256,530,242,0,31,31,0 +57255,530,158,0,30,30,0 +57254,530,212,0,19,19,0 +57253,530,211,0,27,27,0 +57252,530,232,0,25,25,0 +57251,530,241,0,28,28,0 +57250,530,240,0,26,26,0 +57249,530,178,3,9,9,0 +57248,530,187,4,7,7,0 +57247,530,230,0,22,22,0 +57246,530,233,0,23,23,0 +57245,530,172,4,8,8,0 +57244,530,223,2,11,11,0 +57243,530,202,2,12,12,0 +57242,530,239,0,21,21,0 +57241,530,197,0,16,16,0 +57240,530,200,0,15,15,0 +57239,530,222,0,20,20,0 +57238,530,224,6,6,6,0 +57237,530,203,0,17,17,0 +57236,530,199,18,1,1,2 +57235,530,175,1,14,14,0 +57234,530,238,14,3,3,1 +57233,530,231,3,10,10,0 +57232,530,221,14,4,4,0 +57231,530,182,10,5,5,0 +57230,530,207,18,2,2,1 +57296,531,235,0,25,25,0 +57295,531,206,0,32,32,0 +57294,531,163,0,33,33,0 +57293,531,177,0,30,30,0 +57292,531,219,0,21,21,0 +57291,531,243,0,19,19,0 +57290,531,119,2,14,14,0 +57289,531,242,0,34,34,0 +57288,531,158,0,31,31,0 +57287,531,212,0,20,20,0 +57286,531,211,0,26,26,0 +57285,531,232,0,27,27,0 +57284,531,241,0,29,29,0 +57283,531,240,0,28,28,0 +57282,531,178,3,11,11,0 +57281,531,187,7,6,6,0 +57280,531,230,0,23,23,0 +57279,531,233,0,24,24,0 +57278,531,172,4,9,9,0 +57277,531,223,2,13,13,0 +57276,531,202,4,10,10,0 +57275,531,239,0,22,22,0 +57274,531,197,0,17,17,0 +57273,531,200,0,16,16,0 +57272,531,222,4,8,8,0 +57271,531,224,6,7,7,0 +57270,531,203,0,18,18,0 +57269,531,199,18,2,2,2 +57268,531,175,1,15,15,0 +57267,531,238,14,5,5,1 +57266,531,231,3,12,12,0 +57265,531,221,23,1,1,1 +57264,531,182,16,4,4,0 +57263,531,207,18,3,3,1 +57332,532,244,0,36,36,0 +57331,532,152,0,20,20,0 +57330,532,235,0,26,26,0 +57329,532,206,0,34,34,0 +57328,532,163,0,22,22,0 +57327,532,177,0,32,32,0 +57326,532,219,0,24,24,0 +57325,532,243,0,21,21,0 +57324,532,119,2,15,15,0 +57323,532,242,0,35,35,0 +57322,532,158,0,33,33,0 +57321,532,212,0,23,23,0 +57320,532,211,0,28,28,0 +57319,532,232,0,29,29,0 +57318,532,241,0,31,31,0 +57317,532,240,0,30,30,0 +57316,532,178,3,11,11,0 +57315,532,187,7,6,6,0 +57314,532,230,0,25,25,0 +57313,532,233,0,27,27,0 +57312,532,172,6,8,8,0 +57311,532,223,2,14,14,0 +57310,532,202,5,9,9,0 +57309,532,239,0,18,18,0 +57308,532,197,0,19,19,0 +57307,532,200,0,17,17,0 +57306,532,222,4,10,10,0 +57305,532,224,6,7,7,0 +57304,532,203,3,12,12,0 +57303,532,199,22,3,3,2 +57302,532,175,1,16,16,0 +57301,532,238,20,4,4,1 +57300,532,231,3,13,13,0 +57299,532,221,23,2,2,1 +57298,532,182,16,5,5,0 +57297,532,207,27,1,1,2 +57369,533,208,0,36,36,0 +57368,533,244,0,37,37,0 +57367,533,152,0,21,21,0 +57366,533,235,0,27,27,0 +57365,533,206,0,34,34,0 +57364,533,163,0,23,23,0 +57363,533,177,0,32,32,0 +57362,533,219,0,24,24,0 +57361,533,243,0,22,22,0 +57360,533,119,2,15,15,0 +57359,533,242,0,35,35,0 +57358,533,158,0,33,33,0 +57357,533,212,0,25,25,0 +57356,533,211,0,26,26,0 +57355,533,232,0,29,29,0 +57354,533,241,0,31,31,0 +57353,533,240,0,30,30,0 +57352,533,178,3,12,12,0 +57351,533,187,9,7,7,0 +57350,533,230,0,19,19,0 +57349,533,233,0,28,28,0 +57348,533,172,10,6,6,0 +57347,533,223,2,14,14,0 +57346,533,202,5,10,10,0 +57345,533,239,0,18,18,0 +57344,533,197,0,20,20,0 +57343,533,200,0,17,17,0 +57342,533,222,7,8,8,0 +57341,533,224,6,9,9,0 +57340,533,203,3,13,13,0 +57339,533,199,22,4,4,2 +57338,533,175,1,16,16,0 +57337,533,238,26,2,2,1 +57336,533,231,4,11,11,0 +57335,533,221,23,3,3,1 +57334,533,182,16,5,5,0 +57333,533,207,36,1,1,3 +57406,534,208,0,36,36,0 +57405,534,244,0,37,37,0 +57404,534,152,0,21,21,0 +57403,534,235,0,28,28,0 +57402,534,206,0,34,34,0 +57401,534,163,0,23,23,0 +57400,534,177,0,29,29,0 +57399,534,219,0,25,25,0 +57398,534,243,0,22,22,0 +57397,534,119,8,8,8,0 +57396,534,242,0,35,35,0 +57395,534,158,0,33,33,0 +57394,534,212,0,24,24,0 +57393,534,211,0,27,27,0 +57392,534,232,0,30,30,0 +57391,534,241,0,32,32,0 +57390,534,240,0,31,31,0 +57389,534,178,3,15,15,0 +57388,534,187,9,7,7,0 +57387,534,230,0,19,19,0 +57386,534,233,0,26,26,0 +57385,534,172,10,6,6,0 +57384,534,223,4,14,14,0 +57383,534,202,5,11,11,0 +57382,534,239,0,18,18,0 +57381,534,197,0,20,20,0 +57380,534,200,0,17,17,0 +57379,534,222,7,10,10,0 +57378,534,224,7,9,9,0 +57377,534,203,3,16,16,0 +57376,534,199,22,5,5,2 +57375,534,175,4,12,12,0 +57374,534,238,30,2,2,1 +57373,534,231,4,13,13,0 +57372,534,221,23,4,4,1 +57371,534,182,25,3,3,1 +57370,534,207,36,1,1,3 +57443,535,208,0,36,36,0 +57442,535,244,0,37,37,0 +57441,535,152,0,21,21,0 +57440,535,235,0,28,28,0 +57439,535,206,0,34,34,0 +57438,535,163,0,23,23,0 +57437,535,177,0,29,29,0 +57436,535,219,0,25,25,0 +57435,535,243,0,22,22,0 +57434,535,119,8,8,8,0 +57433,535,242,0,35,35,0 +57432,535,158,0,33,33,0 +57431,535,212,0,24,24,0 +57430,535,211,0,27,27,0 +57429,535,232,0,30,30,0 +57428,535,241,0,32,32,0 +57427,535,240,0,31,31,0 +57426,535,178,5,12,12,0 +57425,535,187,12,6,6,0 +57424,535,230,0,19,19,0 +57423,535,233,0,26,26,0 +57422,535,172,10,7,7,0 +57421,535,223,4,15,15,0 +57420,535,202,5,13,13,0 +57419,535,239,0,18,18,0 +57418,535,197,0,20,20,0 +57417,535,200,0,17,17,0 +57416,535,222,8,10,10,0 +57415,535,224,7,11,11,0 +57414,535,203,3,16,16,0 +57413,535,199,22,5,5,2 +57412,535,175,4,14,14,0 +57411,535,238,36,2,2,1 +57410,535,231,8,9,9,0 +57409,535,221,23,4,4,1 +57408,535,182,25,3,3,1 +57407,535,207,45,1,1,4 +57482,536,245,0,39,39,0 +57481,536,209,0,38,38,0 +57480,536,208,0,36,36,0 +57479,536,244,0,37,37,0 +57478,536,152,0,19,19,0 +57477,536,235,0,28,28,0 +57476,536,206,0,32,32,0 +57475,536,163,0,24,24,0 +57474,536,177,0,29,29,0 +57473,536,219,0,26,26,0 +57472,536,243,0,23,23,0 +57471,536,119,8,8,8,0 +57470,536,242,0,35,35,0 +57469,536,158,0,34,34,0 +57468,536,212,0,25,25,0 +57467,536,211,0,27,27,0 +57466,536,232,0,30,30,0 +57465,536,241,0,33,33,0 +57464,536,240,0,31,31,0 +57463,536,178,5,12,12,0 +57462,536,187,16,6,6,0 +57461,536,230,0,21,21,0 +57460,536,233,2,17,17,0 +57459,536,172,10,7,7,0 +57458,536,223,4,15,15,0 +57457,536,202,5,14,14,0 +57456,536,239,0,18,18,0 +57455,536,197,0,22,22,0 +57454,536,200,0,20,20,0 +57453,536,222,8,10,10,0 +57452,536,224,7,11,11,0 +57451,536,203,3,16,16,0 +57450,536,199,31,3,3,3 +57449,536,175,5,13,13,0 +57448,536,238,36,2,2,1 +57447,536,231,8,9,9,0 +57446,536,221,26,5,5,1 +57445,536,182,31,4,4,1 +57444,536,207,45,1,1,4 +57523,537,137,0,32,32,0 +57522,537,229,0,29,29,0 +57521,537,245,0,41,41,0 +57520,537,209,0,40,40,0 +57519,537,208,0,38,38,0 +57518,537,244,0,39,39,0 +57517,537,152,0,20,20,0 +57516,537,235,0,30,30,0 +57515,537,206,0,34,34,0 +57514,537,163,0,25,25,0 +57513,537,177,0,27,27,0 +57512,537,219,0,26,26,0 +57511,537,243,0,24,24,0 +57510,537,119,8,10,10,0 +57509,537,242,0,37,37,0 +57508,537,158,0,36,36,0 +57507,537,212,1,18,18,0 +57506,537,211,0,28,28,0 +57505,537,232,0,31,31,0 +57504,537,241,0,35,35,0 +57503,537,240,0,33,33,0 +57502,537,178,5,13,13,0 +57501,537,187,16,6,6,0 +57500,537,230,0,22,22,0 +57499,537,233,2,17,17,0 +57498,537,172,14,8,8,0 +57497,537,223,4,15,15,0 +57496,537,202,7,12,12,0 +57495,537,239,0,19,19,0 +57494,537,197,0,23,23,0 +57493,537,200,0,21,21,0 +57492,537,222,14,7,7,0 +57491,537,224,10,9,9,0 +57490,537,203,3,16,16,0 +57489,537,199,31,3,3,3 +57488,537,175,5,14,14,0 +57487,537,238,36,2,2,1 +57486,537,231,8,11,11,0 +57485,537,221,26,5,5,1 +57484,537,182,31,4,4,1 +57483,537,207,54,1,1,5 +57565,538,246,0,41,41,0 +57564,538,137,0,32,32,0 +57563,538,229,0,29,29,0 +57562,538,245,0,42,42,0 +57561,538,209,0,40,40,0 +57560,538,208,0,38,38,0 +57559,538,244,0,39,39,0 +57558,538,152,0,21,21,0 +57557,538,235,0,30,30,0 +57556,538,206,0,34,34,0 +57555,538,163,0,25,25,0 +57554,538,177,0,27,27,0 +57553,538,219,0,26,26,0 +57552,538,243,0,24,24,0 +57551,538,119,8,10,10,0 +57550,538,242,0,37,37,0 +57549,538,158,0,36,36,0 +57548,538,212,1,19,19,0 +57547,538,211,0,28,28,0 +57546,538,232,0,31,31,0 +57545,538,241,0,35,35,0 +57544,538,240,0,33,33,0 +57543,538,178,5,14,14,0 +57542,538,187,16,6,6,0 +57541,538,230,1,18,18,0 +57540,538,233,2,17,17,0 +57539,538,172,16,7,7,0 +57538,538,223,4,16,16,0 +57537,538,202,7,13,13,0 +57536,538,239,0,20,20,0 +57535,538,197,0,23,23,0 +57534,538,200,0,22,22,0 +57533,538,222,14,8,8,0 +57532,538,224,13,9,9,0 +57531,538,203,7,12,12,0 +57530,538,199,31,4,4,3 +57529,538,175,5,15,15,0 +57528,538,238,45,2,2,2 +57527,538,231,8,11,11,0 +57526,538,221,32,3,3,1 +57525,538,182,31,5,5,1 +57524,538,207,54,1,1,5 +57608,539,247,0,40,40,0 +57607,539,246,0,42,42,0 +57606,539,137,0,32,32,0 +57605,539,229,0,29,29,0 +57604,539,245,0,43,43,0 +57603,539,209,0,41,41,0 +57602,539,208,0,38,38,0 +57601,539,244,0,39,39,0 +57600,539,152,0,21,21,0 +57599,539,235,0,30,30,0 +57598,539,206,0,34,34,0 +57597,539,163,0,25,25,0 +57596,539,177,0,27,27,0 +57595,539,219,0,26,26,0 +57594,539,243,0,24,24,0 +57593,539,119,8,10,10,0 +57592,539,242,0,37,37,0 +57591,539,158,0,36,36,0 +57590,539,212,1,19,19,0 +57589,539,211,0,28,28,0 +57588,539,232,0,31,31,0 +57587,539,241,0,35,35,0 +57586,539,240,0,33,33,0 +57585,539,178,5,14,14,0 +57584,539,187,19,6,6,0 +57583,539,230,1,18,18,0 +57582,539,233,2,17,17,0 +57581,539,172,16,7,7,0 +57580,539,223,4,16,16,0 +57579,539,202,7,13,13,0 +57578,539,239,0,20,20,0 +57577,539,197,0,23,23,0 +57576,539,200,0,22,22,0 +57575,539,222,14,9,9,0 +57574,539,224,15,8,8,0 +57573,539,203,8,11,11,0 +57572,539,199,31,5,5,3 +57571,539,175,5,15,15,0 +57570,539,238,51,2,2,2 +57569,539,231,8,12,12,0 +57568,539,221,32,4,4,1 +57567,539,182,35,3,3,1 +57566,539,207,63,1,1,6 +57652,540,248,0,41,41,0 +57651,540,247,0,38,38,0 +57650,540,246,0,43,43,0 +57649,540,137,0,26,26,0 +57648,540,229,0,31,31,0 +57647,540,245,0,44,44,0 +57646,540,209,0,42,42,0 +57645,540,208,0,39,39,0 +57644,540,244,0,40,40,0 +57643,540,152,0,21,21,0 +57642,540,235,0,32,32,0 +57641,540,206,0,29,29,0 +57640,540,163,0,25,25,0 +57639,540,177,0,28,28,0 +57638,540,219,0,27,27,0 +57637,540,243,0,24,24,0 +57636,540,119,8,10,10,0 +57635,540,242,0,37,37,0 +57634,540,158,0,36,36,0 +57633,540,212,1,19,19,0 +57632,540,211,0,30,30,0 +57631,540,232,0,33,33,0 +57630,540,241,0,35,35,0 +57629,540,240,0,34,34,0 +57628,540,178,5,15,15,0 +57627,540,187,25,6,6,0 +57626,540,230,1,18,18,0 +57625,540,233,2,17,17,0 +57624,540,172,19,7,7,0 +57623,540,223,4,16,16,0 +57622,540,202,7,14,14,0 +57621,540,239,0,20,20,0 +57620,540,197,0,23,23,0 +57619,540,200,0,22,22,0 +57618,540,222,14,9,9,0 +57617,540,224,15,8,8,0 +57616,540,203,8,11,11,0 +57615,540,199,35,4,4,3 +57614,540,175,7,13,13,0 +57613,540,238,51,2,2,2 +57612,540,231,8,12,12,0 +57611,540,221,32,5,5,1 +57610,540,182,44,3,3,2 +57609,540,207,64,1,1,6 +57698,541,213,0,41,41,0 +57697,541,249,0,33,33,0 +57696,541,248,0,43,43,0 +57695,541,247,0,35,35,0 +57694,541,246,0,45,45,0 +57693,541,137,0,28,28,0 +57692,541,229,0,31,31,0 +57691,541,245,0,46,46,0 +57690,541,209,0,44,44,0 +57689,541,208,0,40,40,0 +57688,541,244,0,42,42,0 +57687,541,152,0,22,22,0 +57686,541,235,0,32,32,0 +57685,541,206,0,24,24,0 +57684,541,163,0,26,26,0 +57683,541,177,0,29,29,0 +57682,541,219,3,17,17,0 +57681,541,243,0,27,27,0 +57680,541,119,8,11,11,0 +57679,541,242,0,39,39,0 +57678,541,158,0,38,38,0 +57677,541,212,1,20,20,0 +57676,541,211,0,30,30,0 +57675,541,232,0,34,34,0 +57674,541,241,0,37,37,0 +57673,541,240,0,36,36,0 +57672,541,178,11,10,10,0 +57671,541,187,25,6,6,0 +57670,541,230,1,19,19,0 +57669,541,233,2,18,18,0 +57668,541,172,19,7,7,0 +57667,541,223,4,16,16,0 +57666,541,202,7,15,15,0 +57665,541,239,0,21,21,0 +57664,541,197,0,25,25,0 +57663,541,200,0,23,23,0 +57662,541,222,18,8,8,0 +57661,541,224,17,9,9,0 +57660,541,203,8,12,12,0 +57659,541,199,44,3,3,4 +57658,541,175,8,14,14,0 +57657,541,238,51,2,2,2 +57656,541,231,8,13,13,0 +57655,541,221,32,5,5,1 +57654,541,182,44,4,4,2 +57653,541,207,64,1,1,6 +57744,542,213,0,38,38,0 +57743,542,249,0,33,33,0 +57742,542,248,0,43,43,0 +57741,542,247,0,35,35,0 +57740,542,246,0,45,45,0 +57739,542,137,0,28,28,0 +57738,542,229,0,31,31,0 +57737,542,245,0,46,46,0 +57736,542,209,0,44,44,0 +57735,542,208,0,41,41,0 +57734,542,244,0,42,42,0 +57733,542,152,0,23,23,0 +57732,542,235,0,32,32,0 +57731,542,206,1,20,20,0 +57730,542,163,0,26,26,0 +57729,542,177,0,29,29,0 +57728,542,219,3,17,17,0 +57727,542,243,0,27,27,0 +57726,542,119,11,12,12,0 +57725,542,242,0,40,40,0 +57724,542,158,0,39,39,0 +57723,542,212,1,21,21,0 +57722,542,211,0,30,30,0 +57721,542,232,0,34,34,0 +57720,542,241,0,37,37,0 +57719,542,240,0,36,36,0 +57718,542,178,11,11,11,0 +57717,542,187,25,6,6,0 +57716,542,230,1,19,19,0 +57715,542,233,2,18,18,0 +57714,542,172,19,8,8,0 +57713,542,223,4,16,16,0 +57712,542,202,7,15,15,0 +57711,542,239,0,22,22,0 +57710,542,197,0,25,25,0 +57709,542,200,0,24,24,0 +57708,542,222,24,7,7,0 +57707,542,224,17,10,10,0 +57706,542,203,17,9,9,1 +57705,542,199,48,3,3,4 +57704,542,175,8,14,14,0 +57703,542,238,51,2,2,2 +57702,542,231,8,13,13,0 +57701,542,221,34,5,5,1 +57700,542,182,44,4,4,2 +57699,542,207,64,1,1,6 +57765,543,255,0,21,21,0 +57764,543,254,0,20,20,0 +57763,543,246,0,19,19,0 +57762,543,182,0,18,18,0 +57761,543,253,0,17,17,0 +57760,543,238,0,16,16,0 +57759,543,200,0,15,15,0 +57758,543,231,0,14,14,0 +57757,543,221,0,13,13,0 +57756,543,172,0,12,12,0 +57755,543,237,0,11,11,0 +57754,543,187,0,10,10,0 +57753,543,252,0,9,9,0 +57752,543,251,0,8,8,0 +57751,543,230,0,7,7,0 +57750,543,223,1,6,6,0 +57749,543,207,2,5,5,0 +57748,543,224,3,4,4,0 +57747,543,199,4,3,3,0 +57746,543,250,6,2,2,0 +57745,543,222,9,1,1,1 +57787,544,256,0,22,22,0 +57786,544,255,2,8,8,0 +57785,544,254,1,10,10,0 +57784,544,246,0,16,16,0 +57783,544,182,4,6,6,0 +57782,544,253,0,11,11,0 +57781,544,238,0,21,21,0 +57780,544,200,0,20,20,0 +57779,544,231,6,4,4,0 +57778,544,221,0,19,19,0 +57777,544,172,0,18,18,0 +57776,544,237,0,17,17,0 +57775,544,187,0,15,15,0 +57774,544,252,0,14,14,0 +57773,544,251,0,13,13,0 +57772,544,230,0,12,12,0 +57771,544,223,1,9,9,0 +57770,544,207,2,7,7,0 +57769,544,224,6,5,5,0 +57768,544,199,13,1,1,1 +57767,544,250,6,3,3,0 +57766,544,222,9,2,2,1 +57812,545,257,0,25,25,0 +57811,545,233,0,24,24,0 +57810,545,239,0,17,17,0 +57809,545,256,0,18,18,0 +57808,545,255,2,8,8,0 +57807,545,254,1,13,13,0 +57806,545,246,0,16,16,0 +57805,545,182,13,3,3,1 +57804,545,253,0,15,15,0 +57803,545,238,0,23,23,0 +57802,545,200,2,10,10,0 +57801,545,231,9,4,4,0 +57800,545,221,4,7,7,0 +57799,545,172,0,22,22,0 +57798,545,237,0,21,21,0 +57797,545,187,1,12,12,0 +57796,545,252,0,20,20,0 +57795,545,251,0,19,19,0 +57794,545,230,0,14,14,0 +57793,545,223,1,11,11,0 +57792,545,207,2,9,9,0 +57791,545,224,6,6,6,0 +57790,545,199,13,2,2,1 +57789,545,250,6,5,5,0 +57788,545,222,15,1,1,1 +57840,546,178,0,27,27,0 +57839,546,205,0,18,18,0 +57838,546,197,1,14,14,0 +57837,546,257,0,28,28,0 +57836,546,233,0,26,26,0 +57835,546,239,0,20,20,0 +57834,546,256,0,21,21,0 +57833,546,255,2,9,9,0 +57832,546,254,1,13,13,0 +57831,546,246,0,19,19,0 +57830,546,182,19,1,1,1 +57829,546,253,0,16,16,0 +57828,546,238,0,25,25,0 +57827,546,200,2,10,10,0 +57826,546,231,9,5,5,0 +57825,546,221,7,7,7,0 +57824,546,172,0,17,17,0 +57823,546,237,0,24,24,0 +57822,546,187,1,12,12,0 +57821,546,252,0,23,23,0 +57820,546,251,0,22,22,0 +57819,546,230,0,15,15,0 +57818,546,223,1,11,11,0 +57817,546,207,11,4,4,1 +57816,546,224,8,6,6,0 +57815,546,199,13,3,3,1 +57814,546,250,6,8,8,0 +57813,546,222,19,2,2,1 +57875,547,260,0,35,35,0 +57874,547,259,0,34,34,0 +57873,547,232,0,33,33,0 +57872,547,229,0,31,31,0 +57871,547,211,0,30,30,0 +57870,547,208,0,25,25,0 +57869,547,258,0,24,24,0 +57868,547,178,0,29,29,0 +57867,547,205,0,22,22,0 +57866,547,197,1,15,15,0 +57865,547,257,0,32,32,0 +57864,547,233,1,13,13,0 +57863,547,239,0,21,21,0 +57862,547,256,0,26,26,0 +57861,547,255,4,10,10,0 +57860,547,254,1,14,14,0 +57859,547,246,0,20,20,0 +57858,547,182,19,4,4,1 +57857,547,253,0,18,18,0 +57856,547,238,0,19,19,0 +57855,547,200,5,9,9,0 +57854,547,231,9,5,5,0 +57853,547,221,7,7,7,0 +57852,547,172,0,17,17,0 +57851,547,237,0,28,28,0 +57850,547,187,1,12,12,0 +57849,547,252,0,27,27,0 +57848,547,251,0,23,23,0 +57847,547,230,0,16,16,0 +57846,547,223,1,11,11,0 +57845,547,207,20,2,2,2 +57844,547,224,8,6,6,0 +57843,547,199,19,3,3,1 +57842,547,250,6,8,8,0 +57841,547,222,23,1,1,1 +57912,548,235,0,25,25,0 +57911,548,119,0,22,22,0 +57910,548,260,0,37,37,0 +57909,548,259,0,36,36,0 +57908,548,232,0,35,35,0 +57907,548,229,0,33,33,0 +57906,548,211,0,27,27,0 +57905,548,208,0,29,29,0 +57904,548,258,0,28,28,0 +57903,548,178,1,15,15,0 +57902,548,205,0,24,24,0 +57901,548,197,1,12,12,0 +57900,548,257,0,34,34,0 +57899,548,233,1,14,14,0 +57898,548,239,0,23,23,0 +57897,548,256,0,30,30,0 +57896,548,255,4,10,10,0 +57895,548,254,1,16,16,0 +57894,548,246,0,21,21,0 +57893,548,182,25,2,2,1 +57892,548,253,0,19,19,0 +57891,548,238,0,20,20,0 +57890,548,200,8,7,7,0 +57889,548,231,9,5,5,0 +57888,548,221,7,8,8,0 +57887,548,172,0,18,18,0 +57886,548,237,0,32,32,0 +57885,548,187,1,13,13,0 +57884,548,252,0,31,31,0 +57883,548,251,0,26,26,0 +57882,548,230,0,17,17,0 +57881,548,223,1,11,11,0 +57880,548,207,22,4,4,2 +57879,548,224,8,6,6,0 +57878,548,199,23,3,3,1 +57877,548,250,6,9,9,0 +57876,548,222,32,1,1,2 +57951,549,212,0,39,39,0 +57950,549,261,0,38,38,0 +57949,549,235,0,27,27,0 +57948,549,119,0,23,23,0 +57947,549,260,0,37,37,0 +57946,549,259,0,32,32,0 +57945,549,232,0,33,33,0 +57944,549,229,0,22,22,0 +57943,549,211,0,30,30,0 +57942,549,208,0,31,31,0 +57941,549,258,0,24,24,0 +57940,549,178,3,13,13,0 +57939,549,205,0,26,26,0 +57938,549,197,1,16,16,0 +57937,549,257,0,36,36,0 +57936,549,233,2,14,14,0 +57935,549,239,0,25,25,0 +57934,549,256,0,29,29,0 +57933,549,255,13,5,5,1 +57932,549,254,1,18,18,0 +57931,549,246,0,21,21,0 +57930,549,182,31,2,2,1 +57929,549,253,0,20,20,0 +57928,549,238,4,11,11,0 +57927,549,200,8,8,8,0 +57926,549,231,9,6,6,0 +57925,549,221,7,9,9,0 +57924,549,172,0,19,19,0 +57923,549,237,0,35,35,0 +57922,549,187,1,17,17,0 +57921,549,252,0,34,34,0 +57920,549,251,0,28,28,0 +57919,549,230,3,12,12,0 +57918,549,223,1,15,15,0 +57917,549,207,22,4,4,2 +57916,549,224,8,7,7,0 +57915,549,199,23,3,3,1 +57914,549,250,6,10,10,0 +57913,549,222,32,1,1,2 +57992,550,263,0,41,41,0 +57991,550,262,0,24,24,0 +57990,550,212,0,39,39,0 +57989,550,261,0,40,40,0 +57988,550,235,0,28,28,0 +57987,550,119,0,23,23,0 +57986,550,260,0,38,38,0 +57985,550,259,0,32,32,0 +57984,550,232,0,34,34,0 +57983,550,229,0,22,22,0 +57982,550,211,0,30,30,0 +57981,550,208,0,33,33,0 +57980,550,258,0,26,26,0 +57979,550,178,3,14,14,0 +57978,550,205,0,27,27,0 +57977,550,197,1,18,18,0 +57976,550,257,0,37,37,0 +57975,550,233,2,16,16,0 +57974,550,239,0,25,25,0 +57973,550,256,0,31,31,0 +57972,550,255,13,6,6,1 +57971,550,254,1,19,19,0 +57970,550,246,0,21,21,0 +57969,550,182,31,2,2,1 +57968,550,253,0,20,20,0 +57967,550,238,4,12,12,0 +57966,550,200,14,5,5,0 +57965,550,231,9,9,9,0 +57964,550,221,10,7,7,0 +57963,550,172,9,8,8,1 +57962,550,237,0,36,36,0 +57961,550,187,3,15,15,0 +57960,550,252,0,35,35,0 +57959,550,251,0,29,29,0 +57958,550,230,3,13,13,0 +57957,550,223,1,17,17,0 +57956,550,207,23,4,4,2 +57955,550,224,8,10,10,0 +57954,550,199,27,3,3,1 +57953,550,250,6,11,11,0 +57952,550,222,32,1,1,2 +58034,551,175,0,40,40,0 +58033,551,263,0,42,42,0 +58032,551,262,0,24,24,0 +58031,551,212,0,38,38,0 +58030,551,261,0,41,41,0 +58029,551,235,0,29,29,0 +58028,551,119,0,23,23,0 +58027,551,260,0,39,39,0 +58026,551,259,0,32,32,0 +58025,551,232,0,34,34,0 +58024,551,229,0,22,22,0 +58023,551,211,0,26,26,0 +58022,551,208,0,33,33,0 +58021,551,258,0,27,27,0 +58020,551,178,3,15,15,0 +58019,551,205,0,28,28,0 +58018,551,197,1,18,18,0 +58017,551,257,0,37,37,0 +58016,551,233,2,16,16,0 +58015,551,239,0,25,25,0 +58014,551,256,0,31,31,0 +58013,551,255,16,5,5,1 +58012,551,254,1,19,19,0 +58011,551,246,0,21,21,0 +58010,551,182,33,1,1,1 +58009,551,253,0,20,20,0 +58008,551,238,4,13,13,0 +58007,551,200,14,6,6,0 +58006,551,231,13,7,7,0 +58005,551,221,10,8,8,0 +58004,551,172,9,9,9,1 +58003,551,237,0,36,36,0 +58002,551,187,9,10,10,0 +58001,551,252,0,35,35,0 +58000,551,251,0,30,30,0 +57999,551,230,3,14,14,0 +57998,551,223,1,17,17,0 +57997,551,207,32,2,2,3 +57996,551,224,8,11,11,0 +57995,551,199,28,4,4,1 +57994,551,250,6,12,12,0 +57993,551,222,32,3,3,2 +58083,552,266,0,49,49,0 +58082,552,245,0,48,48,0 +58081,552,265,0,47,47,0 +58080,552,264,0,46,46,0 +58079,552,219,0,40,40,0 +58078,552,267,0,33,33,0 +58077,552,203,0,31,31,0 +58076,552,175,0,41,41,0 +58075,552,263,0,45,45,0 +58074,552,262,0,24,24,0 +58073,552,212,0,42,42,0 +58072,552,261,0,44,44,0 +58071,552,235,0,29,29,0 +58070,552,119,0,23,23,0 +58069,552,260,0,43,43,0 +58068,552,259,0,34,34,0 +58067,552,232,0,36,36,0 +58066,552,229,0,22,22,0 +58065,552,211,0,27,27,0 +58064,552,208,0,35,35,0 +58063,552,258,0,25,25,0 +58062,552,178,3,16,16,0 +58061,552,205,0,28,28,0 +58060,552,197,1,18,18,0 +58059,552,257,0,39,39,0 +58058,552,233,4,14,14,0 +58057,552,239,0,26,26,0 +58056,552,256,0,32,32,0 +58055,552,255,20,6,6,1 +58054,552,254,1,19,19,0 +58053,552,246,0,21,21,0 +58052,552,182,39,1,1,1 +58051,552,253,0,20,20,0 +58050,552,238,4,13,13,0 +58049,552,200,17,7,7,0 +58048,552,231,22,5,5,1 +58047,552,221,10,9,9,0 +58046,552,172,10,8,8,1 +58045,552,237,0,38,38,0 +58044,552,187,9,10,10,0 +58043,552,252,0,37,37,0 +58042,552,251,0,30,30,0 +58041,552,230,3,15,15,0 +58040,552,223,1,17,17,0 +58039,552,207,32,2,2,3 +58038,552,224,8,11,11,0 +58037,552,199,28,4,4,1 +58036,552,250,6,12,12,0 +58035,552,222,32,3,3,2 +58134,553,269,0,45,45,0 +58133,553,268,0,43,43,0 +58132,553,266,0,51,51,0 +58131,553,245,0,50,50,0 +58130,553,265,0,49,49,0 +58129,553,264,0,48,48,0 +58128,553,219,0,42,42,0 +58127,553,267,0,21,21,0 +58126,553,203,0,34,34,0 +58125,553,175,1,20,20,0 +58124,553,263,0,47,47,0 +58123,553,262,0,27,27,0 +58122,553,212,0,41,41,0 +58121,553,261,0,46,46,0 +58120,553,235,0,32,32,0 +58119,553,119,0,24,24,0 +58118,553,260,0,44,44,0 +58117,553,259,0,36,36,0 +58116,553,232,0,38,38,0 +58115,553,229,0,26,26,0 +58114,553,211,0,30,30,0 +58113,553,208,0,37,37,0 +58112,553,258,0,28,28,0 +58111,553,178,3,16,16,0 +58110,553,205,0,31,31,0 +58109,553,197,1,18,18,0 +58108,553,257,0,40,40,0 +58107,553,233,8,11,11,0 +58106,553,239,0,29,29,0 +58105,553,256,0,35,35,0 +58104,553,255,20,6,6,1 +58103,553,254,1,19,19,0 +58102,553,246,0,25,25,0 +58101,553,182,48,1,1,2 +58100,553,253,0,22,22,0 +58099,553,238,4,15,15,0 +58098,553,200,17,7,7,0 +58097,553,231,22,5,5,1 +58096,553,221,10,9,9,0 +58095,553,172,10,8,8,1 +58094,553,237,0,23,23,0 +58093,553,187,9,10,10,0 +58092,553,252,0,39,39,0 +58091,553,251,0,33,33,0 +58090,553,230,5,14,14,0 +58089,553,223,1,17,17,0 +58088,553,207,32,3,3,3 +58087,553,224,8,12,12,0 +58086,553,199,31,4,4,1 +58085,553,250,6,13,13,0 +58084,553,222,38,2,2,2 +58186,554,270,0,44,44,0 +58185,554,269,0,46,46,0 +58184,554,268,0,43,43,0 +58183,554,266,0,52,52,0 +58182,554,245,0,51,51,0 +58181,554,265,0,50,50,0 +58180,554,264,0,49,49,0 +58179,554,219,0,42,42,0 +58178,554,267,0,22,22,0 +58177,554,203,0,34,34,0 +58176,554,175,1,20,20,0 +58175,554,263,0,48,48,0 +58174,554,262,0,29,29,0 +58173,554,212,0,41,41,0 +58172,554,261,0,47,47,0 +58171,554,235,0,32,32,0 +58170,554,119,0,26,26,0 +58169,554,260,0,45,45,0 +58168,554,259,0,36,36,0 +58167,554,232,0,38,38,0 +58166,554,229,0,28,28,0 +58165,554,211,0,21,21,0 +58164,554,208,0,37,37,0 +58163,554,258,0,25,25,0 +58162,554,178,12,8,8,1 +58161,554,205,0,31,31,0 +58160,554,197,1,18,18,0 +58159,554,257,0,40,40,0 +58158,554,233,12,9,9,0 +58157,554,239,0,30,30,0 +58156,554,256,0,35,35,0 +58155,554,255,20,6,6,1 +58154,554,254,1,19,19,0 +58153,554,246,0,27,27,0 +58152,554,182,54,1,1,2 +58151,554,253,0,23,23,0 +58150,554,238,6,15,15,0 +58149,554,200,18,7,7,0 +58148,554,231,22,5,5,1 +58147,554,221,10,11,11,0 +58146,554,172,10,10,10,1 +58145,554,237,0,24,24,0 +58144,554,187,9,12,12,0 +58143,554,252,0,39,39,0 +58142,554,251,0,33,33,0 +58141,554,230,5,16,16,0 +58140,554,223,1,17,17,0 +58139,554,207,32,4,4,3 +58138,554,224,8,13,13,0 +58137,554,199,34,3,3,1 +58136,554,250,6,14,14,0 +58135,554,222,38,2,2,2 +58239,555,247,0,51,51,0 +58238,555,270,0,44,44,0 +58237,555,269,0,46,46,0 +58236,555,268,0,43,43,0 +58235,555,266,0,53,53,0 +58234,555,245,0,52,52,0 +58233,555,265,0,50,50,0 +58232,555,264,0,49,49,0 +58231,555,219,0,41,41,0 +58230,555,267,0,22,22,0 +58229,555,203,0,34,34,0 +58228,555,175,3,17,17,0 +58227,555,263,0,48,48,0 +58226,555,262,0,30,30,0 +58225,555,212,0,42,42,0 +58224,555,261,0,47,47,0 +58223,555,235,0,33,33,0 +58222,555,119,0,28,28,0 +58221,555,260,0,45,45,0 +58220,555,259,0,36,36,0 +58219,555,232,0,38,38,0 +58218,555,229,0,29,29,0 +58217,555,211,0,21,21,0 +58216,555,208,0,37,37,0 +58215,555,258,0,27,27,0 +58214,555,178,12,9,9,1 +58213,555,205,0,32,32,0 +58212,555,197,1,19,19,0 +58211,555,257,0,40,40,0 +58210,555,233,12,10,10,0 +58209,555,239,0,26,26,0 +58208,555,256,0,35,35,0 +58207,555,255,20,6,6,1 +58206,555,254,1,20,20,0 +58205,555,246,0,24,24,0 +58204,555,182,63,1,1,3 +58203,555,253,0,23,23,0 +58202,555,238,6,15,15,0 +58201,555,200,18,7,7,0 +58200,555,231,22,5,5,1 +58199,555,221,10,12,12,0 +58198,555,172,16,8,8,1 +58197,555,237,0,25,25,0 +58196,555,187,9,13,13,0 +58195,555,252,0,39,39,0 +58194,555,251,0,31,31,0 +58193,555,230,5,16,16,0 +58192,555,223,1,18,18,0 +58191,555,207,32,4,4,3 +58190,555,224,11,11,11,0 +58189,555,199,35,3,3,1 +58188,555,250,6,14,14,0 +58187,555,222,42,2,2,2 +58296,556,220,0,55,55,0 +58295,556,271,0,53,53,0 +58294,556,241,0,45,45,0 +58293,556,152,0,40,40,0 +58292,556,247,0,54,54,0 +58291,556,270,0,46,46,0 +58290,556,269,0,48,48,0 +58289,556,268,0,44,44,0 +58288,556,266,0,57,57,0 +58287,556,245,0,56,56,0 +58286,556,265,0,52,52,0 +58285,556,264,0,51,51,0 +58284,556,219,0,41,41,0 +58283,556,267,0,23,23,0 +58282,556,203,0,34,34,0 +58281,556,175,3,18,18,0 +58280,556,263,0,50,50,0 +58279,556,262,0,30,30,0 +58278,556,212,0,43,43,0 +58277,556,261,0,49,49,0 +58276,556,235,0,33,33,0 +58275,556,119,0,28,28,0 +58274,556,260,0,47,47,0 +58273,556,259,0,36,36,0 +58272,556,232,0,38,38,0 +58271,556,229,0,29,29,0 +58270,556,211,0,22,22,0 +58269,556,208,0,37,37,0 +58268,556,258,0,21,21,0 +58267,556,178,16,9,9,1 +58266,556,205,0,32,32,0 +58265,556,197,1,19,19,0 +58264,556,257,0,42,42,0 +58263,556,233,12,10,10,0 +58262,556,239,0,27,27,0 +58261,556,256,0,35,35,0 +58260,556,255,20,7,7,1 +58259,556,254,1,20,20,0 +58258,556,246,0,25,25,0 +58257,556,182,69,1,1,3 +58256,556,253,0,24,24,0 +58255,556,238,7,14,14,0 +58254,556,200,21,6,6,0 +58253,556,231,22,5,5,1 +58252,556,221,10,12,12,0 +58251,556,172,16,8,8,1 +58250,556,237,0,26,26,0 +58249,556,187,9,13,13,0 +58248,556,252,0,39,39,0 +58247,556,251,0,31,31,0 +58246,556,230,5,16,16,0 +58354,557,240,0,46,46,0 +58353,557,220,0,56,56,0 +58352,557,271,0,54,54,0 +58351,557,241,0,47,47,0 +58350,557,152,0,41,41,0 +58349,557,247,0,55,55,0 +58348,557,270,0,39,39,0 +58347,557,269,0,49,49,0 +58346,557,268,0,45,45,0 +58345,557,266,0,58,58,0 +58344,557,245,0,57,57,0 +58343,557,265,0,53,53,0 +58342,557,264,0,52,52,0 +58341,557,219,0,42,42,0 +58340,557,267,0,23,23,0 +58339,557,203,0,34,34,0 +58338,557,175,3,18,18,0 +58337,557,263,0,51,51,0 +58336,557,262,0,30,30,0 +58335,557,212,0,44,44,0 +58334,557,261,0,50,50,0 +58333,557,235,0,33,33,0 +58332,557,119,0,28,28,0 +58331,557,260,0,48,48,0 +58330,557,259,0,36,36,0 +58329,557,232,0,38,38,0 +58328,557,229,0,29,29,0 +58327,557,211,0,21,21,0 +58326,557,208,0,37,37,0 +58325,557,258,0,22,22,0 +58324,557,178,16,9,9,1 +58323,557,205,0,32,32,0 +58322,557,197,1,19,19,0 +58321,557,257,0,43,43,0 +58320,557,233,12,10,10,0 +58319,557,239,0,27,27,0 +58318,557,256,0,35,35,0 +58317,557,255,20,7,7,1 +58316,557,254,1,20,20,0 +58315,557,246,0,25,25,0 +58314,557,182,72,1,1,3 +58313,557,253,0,24,24,0 +58312,557,238,7,14,14,0 +58311,557,200,21,6,6,0 +58310,557,231,31,5,5,2 +58309,557,221,10,12,12,0 +58308,557,172,16,8,8,1 +58307,557,237,0,26,26,0 +58306,557,187,9,13,13,0 +58305,557,252,0,40,40,0 +58304,557,251,0,31,31,0 +58303,557,230,5,16,16,0 +58302,557,223,5,17,17,0 +58301,557,207,47,2,2,4 +58300,557,224,11,11,11,0 +58299,557,199,36,4,4,1 +58298,557,250,6,15,15,0 +58297,557,222,46,3,3,2 +58412,558,240,0,25,25,0 +58411,558,220,0,56,56,0 +58410,558,271,0,54,54,0 +58409,558,241,0,47,47,0 +58408,558,152,0,42,42,0 +58407,558,247,0,55,55,0 +58406,558,270,0,40,40,0 +58405,558,269,0,49,49,0 +58404,558,268,0,46,46,0 +58403,558,266,0,58,58,0 +58402,558,245,0,57,57,0 +58401,558,265,0,53,53,0 +58400,558,264,0,52,52,0 +58399,558,219,0,43,43,0 +58398,558,267,0,23,23,0 +58397,558,203,0,35,35,0 +58396,558,175,5,18,18,0 +58395,558,263,0,51,51,0 +58394,558,262,0,31,31,0 +58393,558,212,0,45,45,0 +58392,558,261,0,50,50,0 +58391,558,235,0,34,34,0 +58390,558,119,0,29,29,0 +58389,558,260,0,48,48,0 +58388,558,259,0,37,37,0 +58387,558,232,0,39,39,0 +58386,558,229,0,30,30,0 +58385,558,211,0,21,21,0 +58384,558,208,0,38,38,0 +58383,558,258,0,22,22,0 +58382,558,178,19,8,8,1 +58381,558,205,0,33,33,0 +58380,558,197,1,19,19,0 +58379,558,257,0,44,44,0 +58378,558,233,12,11,11,0 +58377,558,239,0,28,28,0 +58376,558,256,0,36,36,0 +58375,558,255,20,7,7,1 +58374,558,254,1,20,20,0 +58373,558,246,0,27,27,0 +58372,558,182,72,1,1,3 +58371,558,253,0,24,24,0 +58370,558,238,7,14,14,0 +58369,558,200,25,6,6,0 +58368,558,231,31,5,5,2 +58367,558,221,16,10,10,0 +58366,558,172,16,9,9,1 +58365,558,237,0,26,26,0 +58364,558,187,9,13,13,0 +58363,558,252,0,41,41,0 +58362,558,251,0,32,32,0 +58361,558,230,6,16,16,0 +58360,558,223,5,17,17,0 +58359,558,207,47,3,3,4 +58358,558,224,11,12,12,0 +58357,558,199,36,4,4,1 +58356,558,250,6,15,15,0 +58355,558,222,55,2,2,3 +58473,559,274,0,48,48,0 +58472,559,273,0,37,37,0 +58471,559,272,0,32,32,0 +58470,559,240,0,26,26,0 +58469,559,220,0,59,59,0 +58468,559,271,0,57,57,0 +58467,559,241,0,50,50,0 +58466,559,152,0,44,44,0 +58465,559,247,0,58,58,0 +58464,559,270,0,42,42,0 +58463,559,269,0,52,52,0 +58462,559,268,0,49,49,0 +58461,559,266,0,61,61,0 +58460,559,245,0,60,60,0 +58459,559,265,0,56,56,0 +58458,559,264,0,55,55,0 +58457,559,219,0,45,45,0 +58456,559,267,0,24,24,0 +58455,559,203,0,36,36,0 +58454,559,175,5,18,18,0 +58453,559,263,0,54,54,0 +58452,559,262,0,31,31,0 +58451,559,212,0,47,47,0 +58450,559,261,0,53,53,0 +58449,559,235,0,35,35,0 +58448,559,119,1,20,20,0 +58447,559,260,0,51,51,0 +58446,559,259,0,39,39,0 +58445,559,232,0,41,41,0 +58444,559,229,0,30,30,0 +58443,559,211,0,22,22,0 +58442,559,208,0,40,40,0 +58441,559,258,0,23,23,0 +58440,559,178,22,7,7,1 +58439,559,205,0,34,34,0 +58438,559,197,1,19,19,0 +58437,559,257,0,46,46,0 +58436,559,233,12,11,11,0 +58435,559,239,0,29,29,0 +58434,559,256,0,38,38,0 +58433,559,255,20,8,8,1 +58432,559,254,1,21,21,0 +58431,559,246,0,28,28,0 +58430,559,182,72,1,1,3 +58429,559,253,0,25,25,0 +58428,559,238,7,14,14,0 +58427,559,200,25,6,6,0 +58426,559,231,40,5,5,3 +58425,559,221,20,9,9,0 +58424,559,172,18,10,10,1 +58423,559,237,0,27,27,0 +58422,559,187,9,13,13,0 +58421,559,252,0,43,43,0 +58420,559,251,0,33,33,0 +58419,559,230,6,16,16,0 +58418,559,223,5,17,17,0 +58417,559,207,47,3,3,4 +58416,559,224,11,12,12,0 +58415,559,199,42,4,4,1 +58414,559,250,6,15,15,0 +58413,559,222,55,2,2,3 +58245,556,223,3,17,17,0 +58244,556,207,41,3,3,4 +58243,556,224,11,11,11,0 +58242,556,199,35,4,4,1 +58241,556,250,6,15,15,0 +58240,556,222,42,2,2,2 +56515,560,270,0,22,22,0 +56514,560,187,0,21,21,0 +56513,560,207,0,20,20,0 +56512,560,238,0,19,19,0 +56511,560,172,0,18,18,0 +56510,560,230,0,17,17,0 +56509,560,231,0,16,16,0 +56508,560,197,0,15,15,0 +56507,560,275,0,14,14,0 +56506,560,224,0,13,13,0 +56505,560,199,0,12,12,0 +56504,560,253,0,11,11,0 +56503,560,250,0,10,10,0 +56502,560,254,0,9,9,0 +56501,560,235,0,8,8,0 +56500,560,223,0,7,7,0 +56499,560,200,1,6,6,0 +56498,560,222,2,5,5,0 +56497,560,233,3,4,4,0 +56496,560,252,4,3,3,0 +56495,560,221,6,2,2,0 +56494,560,182,9,1,1,1 +56544,561,251,0,29,29,0 +56543,561,255,0,28,28,0 +56542,561,229,0,23,23,0 +56541,561,278,0,21,21,0 +56540,561,277,0,20,20,0 +56539,561,239,0,17,17,0 +56538,561,276,0,15,15,0 +56537,561,270,0,27,27,0 +56536,561,187,2,8,8,0 +56535,561,207,1,9,9,0 +56534,561,238,0,26,26,0 +56533,561,172,0,25,25,0 +56532,561,230,0,12,12,0 +56531,561,231,6,3,3,0 +56530,561,197,0,24,24,0 +56529,561,275,0,22,22,0 +56528,561,224,0,19,19,0 +56527,561,199,0,18,18,0 +56526,561,253,0,16,16,0 +56525,561,250,0,14,14,0 +56524,561,254,0,13,13,0 +56523,561,235,0,11,11,0 +56522,561,223,0,10,10,0 +56521,561,200,5,4,4,0 +56520,561,222,5,5,5,0 +56519,561,233,3,7,7,0 +56518,561,252,4,6,6,0 +56517,561,221,6,2,2,0 +56516,561,182,18,1,1,2 +56575,562,232,0,30,30,0 +56574,562,178,0,27,27,0 +56573,562,251,0,31,31,0 +56572,562,255,0,28,28,0 +56571,562,229,0,26,26,0 +56570,562,278,0,14,14,0 +56569,562,277,0,24,24,0 +56568,562,239,0,22,22,0 +56567,562,276,0,20,20,0 +56566,562,270,0,29,29,0 +56565,562,187,2,10,10,0 +56564,562,207,1,12,12,0 +56563,562,238,0,19,19,0 +56562,562,172,3,9,9,0 +56561,562,230,0,16,16,0 +56560,562,231,6,5,5,0 +56559,562,197,0,13,13,0 +56558,562,275,0,25,25,0 +56557,562,224,1,11,11,0 +56556,562,199,0,23,23,0 +56555,562,253,0,21,21,0 +56554,562,250,0,17,17,0 +56553,562,254,0,18,18,0 +56552,562,235,0,15,15,0 +56551,562,223,9,3,3,1 +56550,562,200,7,4,4,0 +56549,562,222,5,6,6,0 +56548,562,233,3,8,8,0 +56547,562,252,4,7,7,0 +56546,562,221,10,2,2,0 +56545,562,182,24,1,1,2 +56610,563,208,0,35,35,0 +56609,563,279,0,34,34,0 +56608,563,271,0,33,33,0 +56607,563,256,0,27,27,0 +56606,563,232,0,30,30,0 +56605,563,178,0,20,20,0 +56604,563,251,0,32,32,0 +56603,563,255,4,8,8,0 +56602,563,229,0,29,29,0 +56601,563,278,2,12,12,0 +56600,563,277,0,22,22,0 +56599,563,239,0,26,26,0 +56598,563,276,0,24,24,0 +56597,563,270,0,31,31,0 +56596,563,187,2,13,13,0 +56595,563,207,1,16,16,0 +56594,563,238,0,23,23,0 +56593,563,172,3,10,10,0 +56592,563,230,0,19,19,0 +56591,563,231,15,2,2,1 +56590,563,197,0,18,18,0 +56589,563,275,0,28,28,0 +56588,563,224,1,15,15,0 +56587,563,199,3,11,11,0 +56586,563,253,0,25,25,0 +56585,563,250,1,14,14,0 +56584,563,254,0,21,21,0 +56583,563,235,0,17,17,0 +56582,563,223,9,4,4,1 +56581,563,200,7,5,5,0 +56580,563,222,5,6,6,0 +56579,563,233,3,9,9,0 +56578,563,252,4,7,7,0 +56577,563,221,10,3,3,0 +56576,563,182,30,1,1,2 +56647,564,265,0,37,37,0 +56646,564,258,0,32,32,0 +56645,564,208,0,36,36,0 +56644,564,279,0,35,35,0 +56643,564,271,0,28,28,0 +56642,564,256,0,20,20,0 +56641,564,232,0,31,31,0 +56640,564,178,2,14,14,0 +56639,564,251,0,34,34,0 +56638,564,255,4,9,9,0 +56637,564,229,0,30,30,0 +56636,564,278,2,13,13,0 +56635,564,277,0,23,23,0 +56634,564,239,0,26,26,0 +56633,564,276,0,25,25,0 +56632,564,270,0,33,33,0 +56631,564,187,2,12,12,0 +56630,564,207,1,17,17,0 +56629,564,238,0,24,24,0 +56628,564,172,7,7,7,0 +56627,564,230,0,21,21,0 +56626,564,231,15,3,3,1 +56625,564,197,0,19,19,0 +56624,564,275,0,29,29,0 +56623,564,224,1,16,16,0 +56622,564,199,3,11,11,0 +56621,564,253,0,27,27,0 +56620,564,250,1,15,15,0 +56619,564,254,0,22,22,0 +56618,564,235,0,18,18,0 +56617,564,223,15,2,2,1 +56616,564,200,8,5,5,0 +56615,564,222,8,6,6,0 +56614,564,233,3,10,10,0 +56613,564,252,4,8,8,0 +56612,564,221,10,4,4,0 +56611,564,182,39,1,1,3 +56685,565,280,0,34,34,0 +56684,565,265,0,38,38,0 +56683,565,258,0,32,32,0 +56682,565,208,0,37,37,0 +56681,565,279,0,36,36,0 +56680,565,271,0,28,28,0 +56679,565,256,0,20,20,0 +56678,565,232,0,31,31,0 +56677,565,178,2,14,14,0 +56676,565,251,0,35,35,0 +56675,565,255,4,10,10,0 +56674,565,229,0,30,30,0 +56673,565,278,2,13,13,0 +56672,565,277,0,23,23,0 +56671,565,239,0,26,26,0 +56670,565,276,0,25,25,0 +56669,565,270,0,33,33,0 +56668,565,187,2,12,12,0 +56667,565,207,1,17,17,0 +56666,565,238,0,24,24,0 +56665,565,172,7,7,7,0 +56664,565,230,0,21,21,0 +56663,565,231,15,3,3,1 +56662,565,197,0,18,18,0 +56661,565,275,0,29,29,0 +56660,565,224,2,15,15,0 +56659,565,199,3,11,11,0 +56658,565,253,0,27,27,0 +56657,565,250,1,16,16,0 +56656,565,254,0,22,22,0 +56655,565,235,0,19,19,0 +56654,565,223,15,2,2,1 +56653,565,200,10,6,6,0 +56652,565,222,14,5,5,0 +56651,565,233,6,8,8,0 +56650,565,252,4,9,9,0 +56649,565,221,14,4,4,0 +56648,565,182,48,1,1,4 +56724,566,281,0,36,36,0 +56723,566,280,0,34,34,0 +56722,566,265,0,39,39,0 +56721,566,258,0,32,32,0 +56720,566,208,0,38,38,0 +56719,566,279,0,37,37,0 +56718,566,271,0,28,28,0 +56717,566,256,0,22,22,0 +56716,566,232,0,29,29,0 +56715,566,178,2,14,14,0 +56714,566,251,0,35,35,0 +56713,566,255,4,10,10,0 +56712,566,229,0,31,31,0 +56711,566,278,2,13,13,0 +56710,566,277,0,24,24,0 +56709,566,239,0,26,26,0 +56708,566,276,0,25,25,0 +56707,566,270,0,33,33,0 +56706,566,187,2,12,12,0 +56705,566,207,1,17,17,0 +56704,566,238,0,20,20,0 +56703,566,172,10,6,6,0 +56702,566,230,0,21,21,0 +56701,566,231,17,4,4,1 +56700,566,197,0,18,18,0 +56699,566,275,0,30,30,0 +56698,566,224,2,15,15,0 +56697,566,199,3,11,11,0 +56696,566,253,0,27,27,0 +56695,566,250,1,16,16,0 +56694,566,254,0,23,23,0 +56693,566,235,0,19,19,0 +56692,566,223,16,5,5,1 +56691,566,200,10,7,7,0 +56690,566,222,23,2,2,1 +56689,566,233,6,8,8,0 +56688,566,252,4,9,9,0 +56687,566,221,20,3,3,0 +56686,566,182,52,1,1,4 +56764,567,282,0,40,40,0 +56763,567,281,0,37,37,0 +56762,567,280,0,34,34,0 +56761,567,265,0,32,32,0 +56760,567,258,0,33,33,0 +56759,567,208,0,39,39,0 +56758,567,279,0,38,38,0 +56757,567,271,0,29,29,0 +56756,567,256,0,22,22,0 +56755,567,232,0,23,23,0 +56754,567,178,2,16,16,0 +56753,567,251,0,36,36,0 +56752,567,255,4,11,11,0 +56751,567,229,0,31,31,0 +56750,567,278,2,15,15,0 +56749,567,277,0,25,25,0 +56748,567,239,0,27,27,0 +56747,567,276,0,26,26,0 +56746,567,270,0,35,35,0 +56745,567,187,6,8,8,0 +56744,567,207,3,14,14,0 +56743,567,238,0,20,20,0 +56742,567,172,10,6,6,0 +56741,567,230,0,21,21,0 +56740,567,231,26,2,2,2 +56739,567,197,0,18,18,0 +56738,567,275,0,30,30,0 +56737,567,224,2,17,17,0 +56736,567,199,3,13,13,0 +56735,567,253,0,28,28,0 +56734,567,250,4,12,12,0 +56733,567,254,0,24,24,0 +56732,567,235,0,19,19,0 +56731,567,223,16,5,5,1 +56730,567,200,10,7,7,0 +56729,567,222,24,4,4,1 +56728,567,233,6,9,9,0 +56727,567,252,4,10,10,0 +56726,567,221,26,3,3,0 +56725,567,182,52,1,1,4 +56806,568,283,0,42,42,0 +56805,568,242,0,40,40,0 +56804,568,282,0,41,41,0 +56803,568,281,0,37,37,0 +56802,568,280,0,34,34,0 +56801,568,265,0,32,32,0 +56800,568,258,0,33,33,0 +56799,568,208,0,39,39,0 +56798,568,279,0,38,38,0 +56797,568,271,0,30,30,0 +56796,568,256,0,23,23,0 +56795,568,232,0,24,24,0 +56794,568,178,4,13,13,0 +56793,568,251,0,36,36,0 +56792,568,255,4,11,11,0 +56791,568,229,0,21,21,0 +56790,568,278,2,17,17,0 +56789,568,277,0,26,26,0 +56788,568,239,0,28,28,0 +56787,568,276,0,27,27,0 +56786,568,270,0,35,35,0 +56785,568,187,10,6,6,0 +56784,568,207,3,15,15,0 +56783,568,238,0,20,20,0 +56782,568,172,10,7,7,0 +56781,568,230,0,22,22,0 +56780,568,231,26,3,3,2 +56779,568,197,0,18,18,0 +56778,568,275,0,31,31,0 +56777,568,224,3,16,16,0 +56776,568,199,3,14,14,0 +56775,568,253,0,29,29,0 +56774,568,250,4,12,12,0 +56773,568,254,0,25,25,0 +56772,568,235,0,19,19,0 +56771,568,223,16,5,5,1 +56770,568,200,10,8,8,0 +56769,568,222,30,2,2,1 +56768,568,233,6,10,10,0 +56767,568,252,7,9,9,0 +56766,568,221,26,4,4,0 +56765,568,182,61,1,1,5 +56850,569,284,0,33,33,0 +56849,569,243,1,18,18,0 +56848,569,283,0,44,44,0 +56847,569,242,0,42,42,0 +56846,569,282,0,43,43,0 +56845,569,281,0,39,39,0 +56844,569,280,0,36,36,0 +56843,569,265,0,34,34,0 +56842,569,258,0,35,35,0 +56841,569,208,0,41,41,0 +56840,569,279,0,40,40,0 +56839,569,271,0,31,31,0 +56838,569,256,0,24,24,0 +56837,569,232,0,25,25,0 +56836,569,178,4,13,13,0 +56835,569,251,0,38,38,0 +56834,569,255,6,11,11,0 +56833,569,229,0,22,22,0 +56832,569,278,2,17,17,0 +56831,569,277,0,27,27,0 +56830,569,239,0,29,29,0 +56829,569,276,0,28,28,0 +56828,569,270,0,37,37,0 +56827,569,187,10,7,7,0 +56826,569,207,3,15,15,0 +56825,569,238,0,21,21,0 +56824,569,172,10,8,8,0 +56823,569,230,0,23,23,0 +56822,569,231,35,3,3,3 +56821,569,197,0,19,19,0 +56820,569,275,0,32,32,0 +56819,569,224,3,16,16,0 +56818,569,199,3,14,14,0 +56817,569,253,0,30,30,0 +56816,569,250,7,10,10,0 +56815,569,254,0,26,26,0 +56814,569,235,0,20,20,0 +56813,569,223,16,5,5,1 +56812,569,200,14,6,6,0 +56811,569,222,36,2,2,1 +56810,569,233,6,12,12,0 +56809,569,252,7,9,9,0 +56808,569,221,26,4,4,0 +56807,569,182,61,1,1,5 +56895,570,246,0,37,37,0 +56894,570,284,0,31,31,0 +56893,570,243,1,19,19,0 +56892,570,283,0,45,45,0 +56891,570,242,0,43,43,0 +56890,570,282,0,44,44,0 +56889,570,281,0,40,40,0 +56888,570,280,0,26,26,0 +56887,570,265,0,35,35,0 +56886,570,258,0,36,36,0 +56885,570,208,0,42,42,0 +56884,570,279,0,41,41,0 +56883,570,271,0,34,34,0 +56882,570,256,0,24,24,0 +56881,570,232,0,25,25,0 +56880,570,178,4,14,14,0 +56879,570,251,0,39,39,0 +56878,570,255,10,9,9,0 +56877,570,229,0,22,22,0 +56876,570,278,2,17,17,0 +56875,570,277,0,28,28,0 +56874,570,239,0,29,29,0 +56873,570,276,0,30,30,0 +56872,570,270,0,38,38,0 +56871,570,187,19,5,5,1 +56870,570,207,5,13,13,0 +56869,570,238,1,18,18,0 +56868,570,172,16,7,7,0 +56867,570,230,0,23,23,0 +56866,570,231,38,2,2,3 +56865,570,197,0,20,20,0 +56864,570,275,0,33,33,0 +56863,570,224,3,16,16,0 +56862,570,199,3,15,15,0 +56861,570,253,0,32,32,0 +56860,570,250,7,11,11,0 +56859,570,254,0,27,27,0 +56858,570,235,0,21,21,0 +56857,570,223,16,6,6,1 +56856,570,200,14,8,8,0 +56855,570,222,36,3,3,1 +56854,570,233,6,12,12,0 +56853,570,252,7,10,10,0 +56852,570,221,26,4,4,0 +56851,570,182,61,1,1,5 +56942,571,260,0,40,40,0 +56941,571,257,0,38,38,0 +56940,571,246,0,37,37,0 +56939,571,284,0,31,31,0 +56938,571,243,1,20,20,0 +56937,571,283,0,47,47,0 +56936,571,242,0,45,45,0 +56935,571,282,0,46,46,0 +56934,571,281,0,42,42,0 +56933,571,280,0,25,25,0 +56932,571,265,0,35,35,0 +56931,571,258,0,36,36,0 +56930,571,208,0,44,44,0 +56929,571,279,0,43,43,0 +56928,571,271,0,34,34,0 +56927,571,256,0,24,24,0 +56926,571,232,0,26,26,0 +56925,571,178,4,14,14,0 +56924,571,251,0,41,41,0 +56923,571,255,10,9,9,0 +56922,571,229,0,23,23,0 +56921,571,278,2,17,17,0 +56920,571,277,0,28,28,0 +56919,571,239,0,29,29,0 +56918,571,276,0,30,30,0 +56917,571,270,0,39,39,0 +56916,571,187,19,6,6,1 +56915,571,207,9,11,11,0 +56914,571,238,1,18,18,0 +56913,571,172,16,7,7,0 +56912,571,230,1,19,19,0 +56911,571,231,47,2,2,4 +56910,571,197,0,21,21,0 +56909,571,275,0,33,33,0 +56908,571,224,3,16,16,0 +56907,571,199,3,15,15,0 +56906,571,253,0,32,32,0 +56905,571,250,7,12,12,0 +56904,571,254,0,27,27,0 +56903,571,235,0,22,22,0 +56902,571,223,22,5,5,1 +56901,571,200,14,8,8,0 +56900,571,222,38,3,3,1 +56899,571,233,6,13,13,0 +56898,571,252,10,10,10,0 +56897,571,221,26,4,4,0 +56896,571,182,61,1,1,5 +56990,572,285,0,47,47,0 +56989,572,260,0,40,40,0 +56988,572,257,0,38,38,0 +56987,572,246,0,37,37,0 +56986,572,284,0,31,31,0 +56985,572,243,1,20,20,0 +56984,572,283,0,48,48,0 +56983,572,242,0,45,45,0 +56982,572,282,0,46,46,0 +56981,572,281,0,42,42,0 +56980,572,280,0,25,25,0 +56979,572,265,0,35,35,0 +56978,572,258,0,36,36,0 +56977,572,208,0,44,44,0 +56976,572,279,0,43,43,0 +56975,572,271,0,34,34,0 +56974,572,256,0,24,24,0 +56973,572,232,0,26,26,0 +56972,572,178,4,15,15,0 +56971,572,251,0,41,41,0 +56970,572,255,10,10,10,0 +56969,572,229,0,23,23,0 +56968,572,278,2,18,18,0 +56967,572,277,0,28,28,0 +56966,572,239,0,29,29,0 +56965,572,276,0,30,30,0 +56964,572,270,0,39,39,0 +56963,572,187,19,7,7,1 +56962,572,207,9,12,12,0 +56961,572,238,10,9,9,1 +56960,572,172,20,6,6,0 +56959,572,230,1,19,19,0 +56958,572,231,47,2,2,4 +56957,572,197,0,21,21,0 +56956,572,275,0,33,33,0 +56955,572,224,3,17,17,0 +56954,572,199,3,16,16,0 +56953,572,253,0,32,32,0 +56952,572,250,7,13,13,0 +56951,572,254,0,27,27,0 +56950,572,235,0,22,22,0 +56949,572,223,28,4,4,1 +56948,572,200,14,8,8,0 +56947,572,222,40,3,3,1 +56946,572,233,6,14,14,0 +56945,572,252,10,11,11,0 +56944,572,221,27,5,5,0 +56943,572,182,64,1,1,5 +57038,573,285,0,42,42,0 +57037,573,260,0,40,40,0 +57036,573,257,0,38,38,0 +57035,573,246,0,37,37,0 +57034,573,284,0,31,31,0 +57033,573,243,1,20,20,0 +57032,573,283,0,48,48,0 +57031,573,242,0,46,46,0 +57030,573,282,0,47,47,0 +57029,573,281,0,43,43,0 +57028,573,280,0,25,25,0 +57027,573,265,0,35,35,0 +57026,573,258,0,36,36,0 +57025,573,208,0,45,45,0 +57024,573,279,0,44,44,0 +57023,573,271,0,34,34,0 +57022,573,256,0,24,24,0 +57021,573,232,0,26,26,0 +57020,573,178,4,15,15,0 +57019,573,251,0,41,41,0 +57018,573,255,10,11,11,0 +57017,573,229,0,23,23,0 +57016,573,278,2,18,18,0 +57015,573,277,0,28,28,0 +57014,573,239,0,29,29,0 +57013,573,276,0,30,30,0 +57012,573,270,0,39,39,0 +57011,573,187,19,7,7,1 +57010,573,207,13,9,9,0 +57009,573,238,10,10,10,1 +57008,573,172,20,6,6,0 +57007,573,230,1,19,19,0 +57006,573,231,56,2,2,5 +57005,573,197,0,21,21,0 +57004,573,275,0,33,33,0 +57003,573,224,3,17,17,0 +57002,573,199,3,16,16,0 +57001,573,253,0,32,32,0 +57000,573,250,7,13,13,0 +56999,573,254,0,27,27,0 +56998,573,235,0,22,22,0 +56997,573,223,29,5,5,1 +56996,573,200,16,8,8,0 +56995,573,222,43,3,3,1 +56994,573,233,6,14,14,0 +56993,573,252,10,12,12,0 +56992,573,221,33,4,4,0 +56991,573,182,64,1,1,5 +57088,574,286,0,36,36,0 +57087,574,237,0,35,35,0 +57086,574,285,0,44,44,0 +57085,574,260,0,42,42,0 +57084,574,257,0,40,40,0 +57083,574,246,0,39,39,0 +57082,574,284,0,31,31,0 +57081,574,243,1,20,20,0 +57080,574,283,0,50,50,0 +57079,574,242,0,48,48,0 +57078,574,282,0,49,49,0 +57077,574,281,0,45,45,0 +57076,574,280,0,25,25,0 +57075,574,265,0,37,37,0 +57074,574,258,0,38,38,0 +57073,574,208,0,47,47,0 +57072,574,279,0,46,46,0 +57071,574,271,0,34,34,0 +57070,574,256,0,24,24,0 +57069,574,232,0,26,26,0 +57068,574,178,4,15,15,0 +57067,574,251,0,43,43,0 +57066,574,255,10,11,11,0 +57065,574,229,0,23,23,0 +57064,574,278,2,18,18,0 +57063,574,277,0,28,28,0 +57062,574,239,0,29,29,0 +57061,574,276,0,30,30,0 +57060,574,270,0,41,41,0 +57059,574,187,20,6,6,1 +57058,574,207,13,9,9,0 +57057,574,238,10,10,10,1 +57056,574,172,20,7,7,0 +57055,574,230,1,19,19,0 +57054,574,231,65,2,2,6 +57053,574,197,0,21,21,0 +57052,574,275,0,33,33,0 +57051,574,224,3,17,17,0 +57050,574,199,3,16,16,0 +57049,574,253,0,32,32,0 +57048,574,250,7,14,14,0 +57047,574,254,0,27,27,0 +57046,574,235,0,22,22,0 +57045,574,223,29,5,5,1 +57044,574,200,19,8,8,0 +57043,574,222,49,3,3,1 +57042,574,233,8,13,13,0 +57041,574,252,10,12,12,0 +57040,574,221,33,4,4,0 +57039,574,182,68,1,1,5 +57142,575,245,0,47,47,0 +57141,575,273,0,43,43,0 +57140,575,287,0,34,34,0 +57139,575,274,0,27,27,0 +57138,575,286,0,38,38,0 +57137,575,237,0,37,37,0 +57136,575,285,0,48,48,0 +57135,575,260,0,45,45,0 +57134,575,257,0,42,42,0 +57133,575,246,0,41,41,0 +57132,575,284,0,32,32,0 +57131,575,243,1,20,20,0 +57130,575,283,0,54,54,0 +57129,575,242,0,52,52,0 +57128,575,282,0,53,53,0 +57127,575,281,0,49,49,0 +57126,575,280,0,25,25,0 +57125,575,265,0,39,39,0 +57124,575,258,0,40,40,0 +57123,575,208,0,51,51,0 +57122,575,279,0,50,50,0 +57121,575,271,0,36,36,0 +57120,575,256,0,24,24,0 +57119,575,232,0,26,26,0 +57118,575,178,7,15,15,0 +57117,575,251,0,46,46,0 +57116,575,255,11,10,10,0 +57115,575,229,0,21,21,0 +57114,575,278,2,18,18,0 +57113,575,277,0,29,29,0 +57112,575,239,0,30,30,0 +57111,575,276,0,31,31,0 +57110,575,270,0,44,44,0 +57109,575,187,20,7,7,1 +57108,575,207,22,6,6,1 +57107,575,238,10,11,11,1 +57106,575,172,20,8,8,0 +57105,575,230,1,19,19,0 +57104,575,231,69,1,1,6 +57103,575,197,0,22,22,0 +57102,575,275,0,35,35,0 +57101,575,224,3,17,17,0 +57100,575,199,3,16,16,0 +57099,575,253,0,33,33,0 +57098,575,250,7,14,14,0 +57097,575,254,0,28,28,0 +57096,575,235,0,23,23,0 +57095,575,223,31,5,5,1 +57094,575,200,19,9,9,0 +57093,575,222,49,3,3,1 +57092,575,233,8,13,13,0 +57091,575,252,10,12,12,0 +57090,575,221,39,4,4,0 +57089,575,182,68,2,2,5 +55983,576,197,0,22,22,0 +55982,576,290,0,21,21,0 +55981,576,172,0,20,20,0 +55980,576,238,0,19,19,0 +55979,576,283,0,18,18,0 +55978,576,207,0,17,17,0 +55977,576,232,0,16,16,0 +55976,576,250,0,15,15,0 +55975,576,200,0,14,14,0 +55974,576,243,0,13,13,0 +55973,576,252,0,12,12,0 +55972,576,222,0,11,11,0 +55971,576,289,0,10,10,0 +55970,576,230,0,9,9,0 +55969,576,235,0,8,8,0 +55968,576,288,0,7,7,0 +55967,576,182,1,6,6,0 +55966,576,221,2,5,5,0 +55965,576,223,3,4,4,0 +55964,576,199,4,3,3,0 +55963,576,231,6,2,2,0 +55962,576,224,9,1,1,1 +56006,577,187,0,14,14,0 +56005,577,197,0,22,22,0 +56004,577,290,0,19,19,0 +56003,577,172,0,15,15,0 +56002,577,238,0,20,20,0 +56001,577,283,0,23,23,0 +56000,577,207,0,9,9,0 +55999,577,232,0,21,21,0 +55998,577,250,9,2,2,1 +55997,577,200,4,6,6,0 +55996,577,243,0,18,18,0 +55995,577,252,0,17,17,0 +55994,577,222,0,16,16,0 +55993,577,289,0,13,13,0 +55992,577,230,0,12,12,0 +55991,577,235,0,11,11,0 +55990,577,288,0,10,10,0 +55989,577,182,3,7,7,0 +55988,577,221,2,8,8,0 +55987,577,223,6,4,4,0 +55986,577,199,4,5,5,0 +55985,577,231,7,3,3,0 +55984,577,224,15,1,1,1 +56035,578,275,0,29,29,0 +56034,578,251,0,28,28,0 +56033,578,276,0,24,24,0 +56032,578,293,0,23,23,0 +56031,578,292,0,22,22,0 +56030,578,291,0,20,20,0 +56029,578,187,0,18,18,0 +56028,578,197,0,26,26,0 +56027,578,290,0,21,21,0 +56026,578,172,0,19,19,0 +56025,578,238,0,17,17,0 +56024,578,283,0,27,27,0 +56023,578,207,0,12,12,0 +56022,578,232,0,25,25,0 +56021,578,250,12,2,2,1 +56020,578,200,5,8,8,0 +56019,578,243,0,11,11,0 +56018,578,252,0,14,14,0 +56017,578,222,9,4,4,1 +56016,578,289,0,16,16,0 +56015,578,230,0,15,15,0 +56014,578,235,0,13,13,0 +56013,578,288,0,10,10,0 +56012,578,182,5,9,9,0 +56011,578,221,6,6,6,0 +56010,578,223,6,7,7,0 +56009,578,199,10,3,3,0 +56008,578,231,7,5,5,0 +56007,578,224,15,1,1,1 +56068,579,178,0,33,33,0 +56067,579,296,0,29,29,0 +56066,579,295,0,28,28,0 +56065,579,294,0,17,17,0 +56064,579,275,0.5,13,13,0 +56063,579,251,0,32,32,0 +56062,579,276,0,27,27,0 +56061,579,293,0,26,26,0 +56060,579,292,0,25,25,0 +56059,579,291,0,23,23,0 +56058,579,187,0,18,18,0 +56057,579,197,1.5,11,11,0 +56056,579,290,0,24,24,0 +56055,579,172,0,22,22,0 +56054,579,238,0,21,21,0 +56053,579,283,0,31,31,0 +56052,579,207,0,16,16,0 +56051,579,232,0,30,30,0 +56050,579,250,12,2,2,1 +56049,579,200,9.5,4,4,1 +56048,579,243,0,15,15,0 +56047,579,252,0,19,19,0 +56046,579,222,9,5,5,1 +56045,579,289,0,20,20,0 +56044,579,230,1,12,12,0 +56043,579,235,3,10,10,0 +56042,579,288,0,14,14,0 +56041,579,182,5,9,9,0 +56040,579,221,6,7,7,0 +56039,579,223,6,8,8,0 +56038,579,199,12,3,3,0 +56037,579,231,7,6,6,0 +56036,579,224,15,1,1,1 +56102,580,297,0,34,34,0 +56101,580,178,0,28,28,0 +56100,580,296,0,30,30,0 +56099,580,295,0,29,29,0 +56098,580,294,0,18,18,0 +56097,580,275,0.5,14,14,0 +56096,580,251,0,33,33,0 +56095,580,276,0,27,27,0 +56094,580,293,0,26,26,0 +56093,580,292,0,25,25,0 +56092,580,291,0,23,23,0 +56091,580,187,0,19,19,0 +56090,580,197,1.5,12,12,0 +56089,580,290,0,24,24,0 +56088,580,172,0,22,22,0 +56087,580,238,3,11,11,0 +56086,580,283,0,32,32,0 +56085,580,207,0,17,17,0 +56084,580,232,0,31,31,0 +56083,580,250,16,2,2,1 +56082,580,200,10.5,5,5,1 +56081,580,243,0,16,16,0 +56080,580,252,0,20,20,0 +56079,580,222,9,6,6,1 +56078,580,289,0,21,21,0 +56077,580,230,1,13,13,0 +56076,580,235,3,10,10,0 +56075,580,288,0,15,15,0 +56074,580,182,14,3,3,1 +56073,580,221,8,7,7,0 +56072,580,223,6,9,9,0 +56071,580,199,12,4,4,0 +56070,580,231,7,8,8,0 +56069,580,224,21,1,1,1 +56136,581,297,0,34,34,0 +56135,581,178,0,28,28,0 +56134,581,296,0,29,29,0 +56133,581,295,0,30,30,0 +56132,581,294,0,19,19,0 +56131,581,275,0.5,15,15,0 +56130,581,251,0,33,33,0 +56129,581,276,0,21,21,0 +56128,581,293,0,27,27,0 +56127,581,292,0,26,26,0 +56126,581,291,0,24,24,0 +56125,581,187,0,20,20,0 +56124,581,197,1.5,12,12,0 +56123,581,290,0,25,25,0 +56122,581,172,0,23,23,0 +56121,581,238,3,11,11,0 +56120,581,283,0,32,32,0 +56119,581,207,0,18,18,0 +56118,581,232,0,31,31,0 +56117,581,250,16,3,3,1 +56116,581,200,10.5,7,7,1 +56115,581,243,0,17,17,0 +56114,581,252,1,14,14,0 +56113,581,222,15,5,5,1 +56112,581,289,0,22,22,0 +56111,581,230,1,13,13,0 +56110,581,235,3,10,10,0 +56109,581,288,0,16,16,0 +56108,581,182,23,1,1,2 +56107,581,221,11,6,6,0 +56106,581,223,8,8,8,0 +56105,581,199,16,4,4,0 +56104,581,231,7,9,9,0 +56103,581,224,21,2,2,1 +56172,582,267,0,36,36,0 +56171,582,282,0,30,30,0 +56170,582,297,0,23,23,0 +56169,582,178,0,24,24,0 +56168,582,296,0,31,31,0 +56167,582,295,0,32,32,0 +56166,582,294,1,16,16,0 +56165,582,275,0.5,18,18,0 +56164,582,251,0,35,35,0 +56163,582,276,0,21,21,0 +56162,582,293,0,29,29,0 +56161,582,292,0,28,28,0 +56160,582,291,0,26,26,0 +56159,582,187,0,20,20,0 +56158,582,197,1.5,14,14,0 +56157,582,290,0,27,27,0 +56156,582,172,0,25,25,0 +56155,582,238,3,12,12,0 +56154,582,283,0,34,34,0 +56153,582,207,3,11,11,0 +56152,582,232,0,33,33,0 +56151,582,250,16,4,4,1 +56150,582,200,10.5,8,8,1 +56149,582,243,0,19,19,0 +56148,582,252,1,17,17,0 +56147,582,222,15,5,5,1 +56146,582,289,0,22,22,0 +56145,582,230,1,15,15,0 +56144,582,235,3,10,10,0 +56143,582,288,2,13,13,0 +56142,582,182,32,1,1,3 +56141,582,221,11,7,7,0 +56140,582,223,12,6,6,0 +56139,582,199,22,2,2,0 +56138,582,231,7,9,9,0 +56137,582,224,21,3,3,1 +56210,583,299,0,38,38,0 +56209,583,298,0,24,24,0 +56208,583,267,0,37,37,0 +56207,583,282,0,32,32,0 +56206,583,297,0,23,23,0 +56205,583,178,0,26,26,0 +56204,583,296,0,33,33,0 +56203,583,295,0,34,34,0 +56202,583,294,1,17,17,0 +56201,583,275,0.5,18,18,0 +56200,583,251,0,29,29,0 +56199,583,276,0,21,21,0 +56198,583,293,0,31,31,0 +56197,583,292,0,30,30,0 +56196,583,291,0,28,28,0 +56195,583,187,0,20,20,0 +56194,583,197,1.5,15,15,0 +56193,583,290,0,25,25,0 +56192,583,172,0,27,27,0 +56191,583,238,3,12,12,0 +56190,583,283,0,36,36,0 +56189,583,207,3,11,11,0 +56188,583,232,0,35,35,0 +56187,583,250,18,4,4,1 +56186,583,200,10.5,9,9,1 +56185,583,243,0,19,19,0 +56184,583,252,2,14,14,0 +56183,583,222,15,7,7,1 +56182,583,289,0,22,22,0 +56181,583,230,1,16,16,0 +56180,583,235,3,10,10,0 +56179,583,288,2,13,13,0 +56178,583,182,38,1,1,3 +56177,583,221,11,8,8,0 +56176,583,223,16,6,6,0 +56175,583,199,25,2,2,0 +56174,583,231,16,5,5,1 +56173,583,224,21,3,3,1 +56249,584,219,0,30,30,0 +56248,584,299,0,39,39,0 +56247,584,298,0,23,23,0 +56246,584,267,0,38,38,0 +56245,584,282,0,33,33,0 +56244,584,297,0,24,24,0 +56243,584,178,0,27,27,0 +56242,584,296,0,34,34,0 +56241,584,295,0,35,35,0 +56240,584,294,1,17,17,0 +56239,584,275,0.5,18,18,0 +56238,584,251,0,29,29,0 +56237,584,276,0,21,21,0 +56236,584,293,0,32,32,0 +56235,584,292,0,31,31,0 +56234,584,291,0,28,28,0 +56233,584,187,0,20,20,0 +56232,584,197,1.5,15,15,0 +56231,584,290,0,26,26,0 +56230,584,172,0,25,25,0 +56229,584,238,3,12,12,0 +56228,584,283,0,37,37,0 +56227,584,207,5,10,10,0 +56226,584,232,0,36,36,0 +56225,584,250,18,5,5,1 +56224,584,200,14.5,8,8,1 +56223,584,243,0,19,19,0 +56222,584,252,2,14,14,0 +56221,584,222,15,7,7,1 +56220,584,289,0,22,22,0 +56219,584,230,1,16,16,0 +56218,584,235,3,11,11,0 +56217,584,288,2,13,13,0 +56216,584,182,47,1,1,4 +56215,584,221,12,9,9,0 +56214,584,223,16,6,6,0 +56213,584,199,25,2,2,0 +56212,584,231,22,4,4,1 +56211,584,224,24,3,3,1 +56293,585,302,0,43,43,0 +56292,585,233,0,42,42,0 +56291,585,301,0,36,36,0 +56290,585,300,0,35,35,0 +56289,585,205,0,34,34,0 +56288,585,219,0,30,30,0 +56287,585,299,0,44,44,0 +56286,585,298,0,24,24,0 +56285,585,267,0,41,41,0 +56284,585,282,0,33,33,0 +56283,585,297,0,25,25,0 +56282,585,178,0,22,22,0 +56281,585,296,0,37,37,0 +56280,585,295,0,38,38,0 +56279,585,294,1,17,17,0 +56278,585,275,0.5,18,18,0 +56277,585,251,0,29,29,0 +56276,585,276,0,21,21,0 +56275,585,293,0,32,32,0 +56274,585,292,0,31,31,0 +56273,585,291,0,28,28,0 +56272,585,187,0,20,20,0 +56271,585,197,1.5,16,16,0 +56270,585,290,0,27,27,0 +56269,585,172,0,26,26,0 +56268,585,238,3,13,13,0 +56267,585,283,0,40,40,0 +56266,585,207,5,10,10,0 +56265,585,232,0,39,39,0 +56264,585,250,24,5,5,1 +56263,585,200,14.5,8,8,1 +56262,585,243,0,19,19,0 +56261,585,252,2,15,15,0 +56260,585,222,19,6,6,1 +56259,585,289,0,23,23,0 +56258,585,230,2,14,14,0 +56257,585,235,3,12,12,0 +56256,585,288,4,11,11,0 +56255,585,182,47,1,1,4 +56254,585,221,12,9,9,0 +56253,585,223,16,7,7,0 +56252,585,199,25,4,4,0 +56251,585,231,25,3,3,1 +56250,585,224,33,2,2,2 +56340,586,245,0,47,47,0 +56339,586,270,0,46,46,0 +56338,586,229,0,24,24,0 +56337,586,302,0,44,44,0 +56336,586,233,0,41,41,0 +56335,586,301,0,37,37,0 +56334,586,300,0,36,36,0 +56333,586,205,0,35,35,0 +56332,586,219,0,31,31,0 +56331,586,299,0,45,45,0 +56330,586,298,1,20,20,0 +56329,586,267,0,43,43,0 +56328,586,282,0,34,34,0 +56327,586,297,0,27,27,0 +56326,586,178,2,17,17,0 +56325,586,296,0,38,38,0 +56324,586,295,0,39,39,0 +56323,586,294,1,19,19,0 +56322,586,275,0.5,21,21,0 +56321,586,251,0,30,30,0 +56320,586,276,0,25,25,0 +56319,586,293,0,33,33,0 +56318,586,292,0,32,32,0 +56317,586,291,0,29,29,0 +56316,586,187,0,23,23,0 +56315,586,197,1.5,18,18,0 +56314,586,290,0,28,28,0 +56313,586,172,6,10,10,0 +56312,586,238,3,15,15,0 +56311,586,283,0,42,42,0 +56310,586,207,5,11,11,0 +56309,586,232,0,40,40,0 +56308,586,250,24,5,5,1 +56307,586,200,14.5,8,8,1 +56306,586,243,0,22,22,0 +56305,586,252,5,12,12,0 +56304,586,222,19,6,6,1 +56303,586,289,0,26,26,0 +56302,586,230,2,16,16,0 +56301,586,235,3,14,14,0 +56300,586,288,4,13,13,0 +56299,586,182,51,1,1,4 +56298,586,221,12,9,9,0 +56297,586,223,16,7,7,0 +56296,586,199,34,2,2,1 +56295,586,231,25,4,4,1 +56294,586,224,33,3,3,2 +56390,587,303,0,47,47,0 +56389,587,239,0,34,34,0 +56388,587,278,0,31,31,0 +56387,587,245,0,50,50,0 +56386,587,270,0,49,49,0 +56385,587,229,0,24,24,0 +56384,587,302,0,46,46,0 +56383,587,233,0,43,43,0 +56382,587,301,0,39,39,0 +56381,587,300,0,38,38,0 +56380,587,205,0,37,37,0 +56379,587,219,0,32,32,0 +56378,587,299,0,48,48,0 +56377,587,298,1,20,20,0 +56376,587,267,0,45,45,0 +56375,587,282,0,36,36,0 +56374,587,297,0,27,27,0 +56373,587,178,2,17,17,0 +56372,587,296,0,40,40,0 +56371,587,295,0,41,41,0 +56370,587,294,1,19,19,0 +56369,587,275,0.5,21,21,0 +56368,587,251,0,30,30,0 +56367,587,276,0,25,25,0 +56366,587,293,0,35,35,0 +56365,587,292,0,33,33,0 +56364,587,291,0,29,29,0 +56363,587,187,0,23,23,0 +56362,587,197,1.5,18,18,0 +56361,587,290,0,28,28,0 +56360,587,172,6,12,12,0 +56359,587,238,4,14,14,0 +56358,587,283,0,44,44,0 +56357,587,207,5,13,13,0 +56356,587,232,0,42,42,0 +56355,587,250,24,5,5,1 +56354,587,200,16,7,7,1 +56353,587,243,0,22,22,0 +56352,587,252,7,10,10,0 +56351,587,222,19,6,6,1 +56350,587,289,0,26,26,0 +56349,587,230,6.5,11,11,1 +56348,587,235,3,16,16,0 +56347,587,288,4,15,15,0 +56346,587,182,51.5,1,1,4 +56345,587,221,12,9,9,0 +56344,587,223,16,8,8,0 +56343,587,199,34,2,2,1 +56342,587,231,28,4,4,1 +56341,587,224,33,3,3,2 +56441,588,254,0,39,39,0 +56440,588,303,0,48,48,0 +56439,588,239,0,27,27,0 +56438,588,278,0,32,32,0 +56437,588,245,0,51,51,0 +56436,588,270,0,50,50,0 +56435,588,229,0,23,23,0 +56434,588,302,0,35,35,0 +56433,588,233,0,45,45,0 +56432,588,301,0,42,42,0 +56431,588,300,0,41,41,0 +56430,588,205,0,40,40,0 +56429,588,219,0,34,34,0 +56428,588,299,0,49,49,0 +56427,588,298,1,20,20,0 +56426,588,267,0,47,47,0 +56425,588,282,0,38,38,0 +56424,588,297,0,28,28,0 +56423,588,178,2,17,17,0 +56422,588,296,0,43,43,0 +56421,588,295,0,44,44,0 +56420,588,294,1,19,19,0 +56419,588,275,0.5,21,21,0 +56418,588,251,0,33,33,0 +56417,588,276,0,25,25,0 +56416,588,293,0,37,37,0 +56415,588,292,0,36,36,0 +56414,588,291,0,31,31,0 +56413,588,187,0,24,24,0 +56412,588,197,1.5,18,18,0 +56411,588,290,0,29,29,0 +56410,588,172,6,12,12,0 +56409,588,238,4,14,14,0 +56408,588,283,0,46,46,0 +56407,588,207,5,13,13,0 +56406,588,232,0,30,30,0 +56405,588,250,24,6,6,1 +56404,588,200,16,8,8,1 +56403,588,243,0,22,22,0 +56402,588,252,8,10,10,0 +56401,588,222,19,7,7,1 +56400,588,289,0,26,26,0 +56399,588,230,6.5,11,11,1 +56398,588,235,3,16,16,0 +56397,588,288,4,15,15,0 +56396,588,182,55.5,1,1,4 +56395,588,221,12,9,9,0 +56394,588,223,25,5,5,1 +56393,588,199,37,3,3,1 +56392,588,231,30,4,4,1 +56391,588,224,39,2,2,2 +56493,589,277,0,47,47,0 +56492,589,254,0,40,40,0 +56491,589,303,0,49,49,0 +56490,589,239,0,29,29,0 +56489,589,278,0,33,33,0 +56488,589,245,0,52,52,0 +56487,589,270,0,51,51,0 +56486,589,229,0,24,24,0 +56485,589,302,0,36,36,0 +56484,589,233,0,25,25,0 +56483,589,301,0,43,43,0 +56482,589,300,0,42,42,0 +56481,589,205,0,41,41,0 +56480,589,219,0,35,35,0 +56479,589,299,0,50,50,0 +56478,589,298,1,20,20,0 +56477,589,267,0,48,48,0 +56476,589,282,0,39,39,0 +56475,589,297,0,30,30,0 +56474,589,178,2,17,17,0 +56473,589,296,0,44,44,0 +56472,589,295,0,45,45,0 +56471,589,294,1,19,19,0 +56470,589,275,0.5,21,21,0 +56469,589,251,0,34,34,0 +56468,589,276,0,26,26,0 +56467,589,293,0,38,38,0 +56466,589,292,0,37,37,0 +56465,589,291,0,32,32,0 +56464,589,187,0,23,23,0 +56463,589,197,1.5,18,18,0 +56462,589,290,0,27,27,0 +56461,589,172,6,12,12,0 +56460,589,238,6,13,13,0 +56459,589,283,0,46,46,0 +56458,589,207,5,14,14,0 +56457,589,232,0,31,31,0 +56456,589,250,24,6,6,1 +56455,589,200,20,8,8,1 +56454,589,243,0,22,22,0 +56453,589,252,8,10,10,0 +56452,589,222,20,7,7,1 +56451,589,289,0,28,28,0 +56450,589,230,6.5,11,11,1 +56449,589,235,3,16,16,0 +56448,589,288,4,15,15,0 +56447,589,182,64.5,1,1,5 +56446,589,221,12,9,9,0 +56445,589,223,25,5,5,1 +56444,589,199,37,3,3,1 +56443,589,231,33,4,4,1 +56442,589,224,45,2,2,2 +55311,590,197,0,25,25,0 +55310,590,309,0,24,24,0 +55309,590,200,0,23,23,0 +55308,590,231,0,22,22,0 +55307,590,232,0,21,21,0 +55306,590,250,0,20,20,0 +55305,590,222,0,19,19,0 +55304,590,296,0,18,18,0 +55303,590,233,0,17,17,0 +55302,590,308,0,16,16,0 +55301,590,235,0,15,15,0 +55300,590,289,0,14,14,0 +55299,590,238,0,13,13,0 +55298,590,187,0,12,12,0 +55297,590,265,0,11,11,0 +55296,590,224,0,10,10,0 +55295,590,280,0,9,9,0 +55294,590,307,0,8,8,0 +55293,590,199,0,7,7,0 +55292,590,221,1,6,6,0 +55291,590,306,2,5,5,0 +55290,590,305,3,4,4,0 +55289,590,223,4,3,3,0 +55288,590,182,6,2,2,0 +55287,590,304,9,1,1,1 +55336,591,197,0,23,23,0 +55335,591,309,0,25,25,0 +55334,591,200,0,21,21,0 +55333,591,231,0,14,14,0 +55332,591,232,0,24,24,0 +55331,591,250,3,7,7,0 +55330,591,222,0,18,18,0 +55329,591,296,0,20,20,0 +55328,591,233,0,22,22,0 +55327,591,308,0,19,19,0 +55326,591,235,4,6,6,0 +55325,591,289,0,15,15,0 +55324,591,238,1,10,10,0 +55323,591,187,0,17,17,0 +55322,591,265,0,16,16,0 +55321,591,224,9,2,2,1 +55320,591,280,0,13,13,0 +55319,591,307,0,12,12,0 +55318,591,199,0,11,11,0 +55317,591,221,1,9,9,0 +55316,591,306,2,8,8,0 +55315,591,305,5,5,5,0 +55314,591,223,10,1,1,0 +55313,591,182,6,4,4,0 +55312,591,304,9,3,3,1 +55367,592,311,0,31,31,0 +55366,592,310,0,30,30,0 +55365,592,293,0,27,27,0 +55364,592,292,0,23,23,0 +55363,592,251,0,22,22,0 +55362,592,230,0,18,18,0 +55361,592,197,0,28,28,0 +55360,592,309,0,29,29,0 +55359,592,200,0,26,26,0 +55358,592,231,0,17,17,0 +55357,592,232,1,13,13,0 +55356,592,250,3,10,10,0 +55355,592,222,0,14,14,0 +55354,592,296,0,24,24,0 +55353,592,233,2,11,11,0 +55352,592,308,0,25,25,0 +55351,592,235,4,8,8,0 +55350,592,289,0,19,19,0 +55349,592,238,1,12,12,0 +55348,592,187,0,21,21,0 +55347,592,265,0,20,20,0 +55346,592,224,9,3,3,1 +55345,592,280,0,16,16,0 +55344,592,307,0,15,15,0 +55343,592,199,9,2,2,1 +55342,592,221,4,9,9,0 +55341,592,306,8,6,6,0 +55340,592,305,9,5,5,0 +55339,592,223,10,1,1,0 +55338,592,182,6,7,7,0 +55337,592,304,9,4,4,1 +55402,593,313,0,33,33,0 +55401,593,278,0,32,32,0 +55400,593,314,0,25,25,0 +55399,593,312,0,15,15,0 +55398,593,311,0,35,35,0 +55397,593,310,0,34,34,0 +55396,593,293,0,29,29,0 +55395,593,292,0,24,24,0 +55394,593,251,0,23,23,0 +55393,593,230,0,19,19,0 +55392,593,197,0,30,30,0 +55391,593,309,0,31,31,0 +55390,593,200,0,28,28,0 +55389,593,231,0,17,17,0 +55388,593,232,1,14,14,0 +55387,593,250,3,11,11,0 +55386,593,222,2,12,12,0 +55385,593,296,0,26,26,0 +55384,593,233,5,8,8,0 +55383,593,308,0,27,27,0 +55382,593,235,4,9,9,0 +55381,593,289,0,20,20,0 +55380,593,238,1,13,13,0 +55379,593,187,0,21,21,0 +55378,593,265,0,22,22,0 +55377,593,224,13,3,3,1 +55376,593,280,0,18,18,0 +55375,593,307,0,16,16,0 +55374,593,199,9,5,5,1 +55373,593,221,4,10,10,0 +55372,593,306,8,7,7,0 +55371,593,305,9,6,6,0 +55370,593,223,16,1,1,0 +55369,593,182,15,2,2,1 +55368,593,304,10,4,4,1 +55443,594,316,0,41,41,0 +55442,594,315,0,39,39,0 +55441,594,252,0,34,34,0 +55440,594,269,0,32,32,0 +55439,594,267,0,30,30,0 +55438,594,298,0,27,27,0 +55437,594,313,0,37,37,0 +55436,594,278,0,36,36,0 +55435,594,314,0,21,21,0 +55434,594,312,0,15,15,0 +55433,594,311,0,40,40,0 +55432,594,310,0,38,38,0 +55431,594,293,0,33,33,0 +55430,594,292,0,26,26,0 +55429,594,251,0,25,25,0 +55428,594,230,0,19,19,0 +55427,594,197,0,24,24,0 +55426,594,309,0,35,35,0 +55425,594,200,0,31,31,0 +55424,594,231,0,18,18,0 +55423,594,232,1,14,14,0 +55422,594,250,3,12,12,0 +55421,594,222,6,8,8,0 +55420,594,296,0,28,28,0 +55419,594,233,5,9,9,0 +55418,594,308,0,29,29,0 +55417,594,235,4,10,10,0 +55416,594,289,0,16,16,0 +55415,594,238,1,13,13,0 +55414,594,187,0,22,22,0 +55413,594,265,0,23,23,0 +55412,594,224,22,1,1,2 +55411,594,280,0,20,20,0 +55410,594,307,0,17,17,0 +55409,594,199,9,6,6,1 +55408,594,221,4,11,11,0 +55407,594,306,10,5,5,0 +55406,594,305,9,7,7,0 +55405,594,223,19,3,3,0 +55404,594,182,21,2,2,1 +55403,594,304,11,4,4,1 +55484,595,316,0,41,41,0 +55483,595,315,0,39,39,0 +55482,595,252,0,34,34,0 +55481,595,269,0,32,32,0 +55480,595,267,0,30,30,0 +55479,595,298,0,27,27,0 +55478,595,313,0,37,37,0 +55477,595,278,0,36,36,0 +55476,595,314,0,24,24,0 +55475,595,312,0,18,18,0 +55474,595,311,0,40,40,0 +55473,595,310,0,38,38,0 +55472,595,293,0,33,33,0 +55471,595,292,0,26,26,0 +55470,595,251,0,25,25,0 +55469,595,230,0,22,22,0 +55468,595,197,4,11,11,0 +55467,595,309,0,35,35,0 +55466,595,200,0,31,31,0 +55465,595,231,0,21,21,0 +55464,595,232,1,16,16,0 +55463,595,250,3,14,14,0 +55462,595,222,12,4,4,0 +55461,595,296,0,28,28,0 +55460,595,233,5,10,10,0 +55459,595,308,0,29,29,0 +55458,595,235,4,12,12,0 +55457,595,289,0,17,17,0 +55456,595,238,10,6,6,1 +55455,595,187,1,15,15,0 +55454,595,265,0,19,19,0 +55453,595,224,24,1,1,2 +55452,595,280,0,23,23,0 +55451,595,307,0,20,20,0 +55450,595,199,9,8,8,1 +55449,595,221,4,13,13,0 +55448,595,306,10,7,7,0 +55447,595,305,9,9,9,0 +55446,595,223,22,2,2,0 +55445,595,182,21,3,3,1 +55444,595,304,11,5,5,1 +55527,596,318,0,43,43,0 +55526,596,317,0,36,36,0 +55525,596,316,0,40,40,0 +55524,596,315,0,42,42,0 +55523,596,252,0,37,37,0 +55522,596,269,0,34,34,0 +55521,596,267,0,32,32,0 +55520,596,298,0,29,29,0 +55519,596,313,0,25,25,0 +55518,596,278,0,39,39,0 +55517,596,314,0,26,26,0 +55516,596,312,0,20,20,0 +55515,596,311,0,22,22,0 +55514,596,310,0,41,41,0 +55513,596,293,0,35,35,0 +55512,596,292,0,28,28,0 +55511,596,251,0,27,27,0 +55510,596,230,0,23,23,0 +55509,596,197,6,11,11,0 +55508,596,309,0,38,38,0 +55507,596,200,0,33,33,0 +55506,596,231,4,13,13,0 +55505,596,232,1,18,18,0 +55504,596,250,3,15,15,0 +55503,596,222,21,4,4,1 +55502,596,296,0,30,30,0 +55501,596,233,5,12,12,0 +55500,596,308,0,31,31,0 +55499,596,235,4,14,14,0 +55498,596,289,1,16,16,0 +55497,596,238,10,6,6,1 +55496,596,187,1,17,17,0 +55495,596,265,0,19,19,0 +55494,596,224,27,1,1,2 +55493,596,280,0,24,24,0 +55492,596,307,0,21,21,0 +55491,596,199,9,9,9,1 +55490,596,221,10,7,7,0 +55489,596,306,10,8,8,0 +55488,596,305,9,10,10,0 +55487,596,223,22,2,2,0 +55486,596,182,21,3,3,1 +55485,596,304,11,5,5,1 +55570,597,318,0,43,43,0 +55569,597,317,0,36,36,0 +55568,597,316,0,40,40,0 +55567,597,315,0,42,42,0 +55566,597,252,0,37,37,0 +55565,597,269,0,34,34,0 +55564,597,267,0,32,32,0 +55563,597,298,0,28,28,0 +55562,597,313,0,23,23,0 +55561,597,278,0,39,39,0 +55560,597,314,0,26,26,0 +55559,597,312,0,20,20,0 +55558,597,311,0,22,22,0 +55557,597,310,0,41,41,0 +55556,597,293,0,35,35,0 +55555,597,292,0,29,29,0 +55554,597,251,0,27,27,0 +55553,597,230,0,24,24,0 +55552,597,197,6,11,11,0 +55551,597,309,0,38,38,0 +55550,597,200,0,33,33,0 +55549,597,231,4,13,13,0 +55548,597,232,1,18,18,0 +55547,597,250,3,15,15,0 +55546,597,222,23,4,4,1 +55545,597,296,0,30,30,0 +55544,597,233,5,12,12,0 +55543,597,308,0,31,31,0 +55542,597,235,4,14,14,0 +55541,597,289,1,16,16,0 +55540,597,238,10,8,8,1 +55539,597,187,1,17,17,0 +55538,597,265,0,19,19,0 +55537,597,224,31,1,1,2 +55536,597,280,0,25,25,0 +55535,597,307,0,21,21,0 +55534,597,199,9,10,10,1 +55533,597,221,11,7,7,0 +55532,597,306,10,9,9,0 +55531,597,305,12,5,5,0 +55530,597,223,28,3,3,0 +55529,597,182,30,2,2,2 +55528,597,304,11,6,6,1 +55615,598,319,0,45,45,0 +55614,598,219,0,44,44,0 +55613,598,318,0,43,43,0 +55612,598,317,0,36,36,0 +55611,598,316,0,40,40,0 +55610,598,315,0,41,41,0 +55609,598,252,0,37,37,0 +55608,598,269,0,34,34,0 +55607,598,267,0,32,32,0 +55606,598,298,0,29,29,0 +55605,598,313,0,23,23,0 +55604,598,278,0,39,39,0 +55603,598,314,0,26,26,0 +55602,598,312,0,20,20,0 +55601,598,311,0,22,22,0 +55600,598,310,0,42,42,0 +55599,598,293,0,35,35,0 +55598,598,292,0,30,30,0 +55597,598,251,0,27,27,0 +55596,598,230,0,24,24,0 +55595,598,197,6,12,12,0 +55594,598,309,0,38,38,0 +55593,598,200,0,33,33,0 +55592,598,231,4,14,14,0 +55591,598,232,1,18,18,0 +55590,598,250,3,15,15,0 +55589,598,222,26,4,4,1 +55588,598,296,0,28,28,0 +55587,598,233,5,13,13,0 +55586,598,308,0,31,31,0 +55585,598,235,6,11,11,0 +55584,598,289,1,16,16,0 +55583,598,238,19,5,5,2 +55582,598,187,1,17,17,0 +55581,598,265,0,19,19,0 +55580,598,224,31,3,3,2 +55579,598,280,0,25,25,0 +55578,598,307,0,21,21,0 +55577,598,199,9,10,10,1 +55576,598,221,11,8,8,0 +55575,598,306,10,9,9,0 +55574,598,305,12,7,7,0 +55573,598,223,32,2,2,0 +55572,598,182,36,1,1,2 +55571,598,304,12,6,6,1 +55666,599,283,0,51,51,0 +55665,599,300,0,50,50,0 +55664,599,275,0,49,49,0 +55663,599,321,0,47,47,0 +55662,599,259,0,46,46,0 +55661,599,320,0,43,43,0 +55660,599,319,0,48,48,0 +55659,599,219,0,45,45,0 +55658,599,318,0,44,44,0 +55657,599,317,0,37,37,0 +55656,599,316,0,40,40,0 +55655,599,315,0,41,41,0 +55654,599,252,0,21,21,0 +55653,599,269,0,35,35,0 +55652,599,267,0,34,34,0 +55651,599,298,0,31,31,0 +55650,599,313,0,24,24,0 +55649,599,278,0,39,39,0 +55648,599,314,0,27,27,0 +55647,599,312,0,20,20,0 +55646,599,311,0,23,23,0 +55645,599,310,0,42,42,0 +55644,599,293,0,36,36,0 +55643,599,292,0,32,32,0 +55642,599,251,0,28,28,0 +55641,599,230,0,25,25,0 +55640,599,197,6,12,12,0 +55639,599,309,0,38,38,0 +55638,599,200,0,30,30,0 +55637,599,231,4,14,14,0 +55636,599,232,1,18,18,0 +55635,599,250,3,15,15,0 +55634,599,222,35,3,3,2 +55633,599,296,0,29,29,0 +55632,599,233,5,13,13,0 +55631,599,308,0,33,33,0 +55630,599,235,10,11,11,0 +55629,599,289,1,16,16,0 +55628,599,238,19,5,5,2 +55627,599,187,1,17,17,0 +55626,599,265,0,19,19,0 +55625,599,224,37,2,2,2 +55624,599,280,0,26,26,0 +55623,599,307,0,22,22,0 +55622,599,199,10,9,9,1 +55621,599,221,11,8,8,0 +55620,599,306,10,10,10,0 +55619,599,305,12,7,7,0 +55618,599,223,35,4,4,0 +55617,599,182,38,1,1,2 +55616,599,304,12,6,6,1 +55720,600,256,0,52,52,0 +55719,600,172,0,43,43,0 +55718,600,270,0,33,33,0 +55717,600,283,0,54,54,0 +55716,600,300,0,53,53,0 +55715,600,275,0,51,51,0 +55714,600,321,0,28,28,0 +55713,600,259,0,49,49,0 +55712,600,320,0,46,46,0 +55711,600,319,0,50,50,0 +55710,600,219,0,48,48,0 +55709,600,318,0,47,47,0 +55708,600,317,0,39,39,0 +55707,600,316,0,42,42,0 +55706,600,315,0,44,44,0 +55705,600,252,1,18,18,0 +55704,600,269,0,37,37,0 +55703,600,267,0,36,36,0 +55702,600,298,0,32,32,0 +55701,600,313,0,24,24,0 +55700,600,278,0,41,41,0 +55699,600,314,0,27,27,0 +55698,600,312,0,21,21,0 +55697,600,311,0,23,23,0 +55696,600,310,0,45,45,0 +55695,600,293,0,38,38,0 +55694,600,292,0,34,34,0 +55693,600,251,0,29,29,0 +55692,600,230,0,25,25,0 +55691,600,197,6,12,12,0 +55690,600,309,0,40,40,0 +55689,600,200,0,31,31,0 +55688,600,231,4,14,14,0 +55687,600,232,1,19,19,0 +55686,600,250,3,15,15,0 +55685,600,222,41,2,2,2 +55684,600,296,0,30,30,0 +55683,600,233,5,13,13,0 +55682,600,308,0,35,35,0 +55681,600,235,12,8,8,0 +55680,600,289,1,16,16,0 +55679,600,238,22,5,5,2 +55678,600,187,1,17,17,0 +55677,600,265,0,20,20,0 +55676,600,224,37,4,4,2 +55675,600,280,0,26,26,0 +55674,600,307,0,22,22,0 +55673,600,199,14,6,6,1 +55672,600,221,11,10,10,0 +55671,600,306,10,11,11,0 +55670,600,305,12,9,9,0 +55669,600,223,44,1,1,1 +55668,600,182,38,3,3,2 +55667,600,304,12,7,7,1 +55778,601,324,0,57,57,0 +55777,601,243,0,46,46,0 +55776,601,323,0,28,28,0 +55775,601,322,0,23,23,0 +55774,601,256,0,56,56,0 +55773,601,172,0,42,42,0 +55772,601,270,0,34,34,0 +55771,601,283,0,54,54,0 +55770,601,300,0,58,58,0 +55769,601,275,0,55,55,0 +55768,601,321,0,30,30,0 +55767,601,259,0,52,52,0 +55766,601,320,0,49,49,0 +55765,601,319,0,53,53,0 +55764,601,219,0,51,51,0 +55763,601,318,0,50,50,0 +55762,601,317,0,41,41,0 +55761,601,316,0,44,44,0 +55760,601,315,0,47,47,0 +55759,601,252,1,18,18,0 +55758,601,269,0,39,39,0 +55757,601,267,0,38,38,0 +55756,601,298,0,35,35,0 +55755,601,313,0,26,26,0 +55754,601,278,0,45,45,0 +55753,601,314,0,29,29,0 +55752,601,312,0,22,22,0 +55751,601,311,0,25,25,0 +55750,601,310,0,48,48,0 +55749,601,293,0,40,40,0 +55748,601,292,0,36,36,0 +55747,601,251,0,31,31,0 +55746,601,230,1,19,19,0 +55745,601,197,6,13,13,0 +55744,601,309,0,43,43,0 +55743,601,200,0,33,33,0 +55742,601,231,8,12,12,0 +55741,601,232,1,20,20,0 +55740,601,250,3,16,16,0 +55739,601,222,41,2,2,2 +55738,601,296,0,32,32,0 +55737,601,233,5,14,14,0 +55736,601,308,0,37,37,0 +55735,601,235,12,8,8,0 +55734,601,289,1,17,17,0 +55733,601,238,22,6,6,2 +55732,601,187,4,15,15,0 +55731,601,265,0,21,21,0 +55730,601,224,37,4,4,2 +55729,601,280,0,27,27,0 +55728,601,307,0,24,24,0 +55727,601,199,23,5,5,2 +55726,601,221,11,10,10,0 +55725,601,306,10,11,11,0 +55724,601,305,12,9,9,0 +55723,601,223,46,1,1,1 +55722,601,182,38,3,3,2 +55721,601,304,18,7,7,1 +55837,602,325,0,54,54,0 +55836,602,324,0,58,58,0 +55835,602,243,0,42,42,0 +55834,602,323,0,28,28,0 +55833,602,322,0,22,22,0 +55832,602,256,0,57,57,0 +55831,602,172,0,43,43,0 +55830,602,270,0,34,34,0 +55829,602,283,0,55,55,0 +55828,602,300,0,59,59,0 +55827,602,275,0,56,56,0 +55826,602,321,0,30,30,0 +55825,602,259,0,53,53,0 +55824,602,320,0,49,49,0 +55823,602,319,0,51,51,0 +55822,602,219,0,52,52,0 +55821,602,318,0,50,50,0 +55820,602,317,0,41,41,0 +55819,602,316,0,45,45,0 +55818,602,315,0,47,47,0 +55817,602,252,1,19,19,0 +55816,602,269,0,39,39,0 +55815,602,267,0,38,38,0 +55814,602,298,0,35,35,0 +55813,602,313,0,26,26,0 +55812,602,278,0,46,46,0 +55811,602,314,0,29,29,0 +55810,602,312,0,23,23,0 +55809,602,311,0,25,25,0 +55808,602,310,0,48,48,0 +55807,602,293,0,40,40,0 +55806,602,292,0,36,36,0 +55805,602,251,0,31,31,0 +55804,602,230,1,20,20,0 +55803,602,197,6,13,13,0 +55802,602,309,0,44,44,0 +55801,602,200,0,33,33,0 +55800,602,231,8,12,12,0 +55799,602,232,4,17,17,0 +55798,602,250,5,15,15,0 +55797,602,222,45,2,2,2 +55796,602,296,0,32,32,0 +55795,602,233,5,14,14,0 +55794,602,308,0,37,37,0 +55793,602,235,12,8,8,0 +55792,602,289,1,18,18,0 +55791,602,238,31,5,5,3 +55790,602,187,4,16,16,0 +55789,602,265,0,21,21,0 +55788,602,224,43,3,3,2 +55787,602,280,0,27,27,0 +55786,602,307,0,24,24,0 +55785,602,199,23,6,6,2 +55784,602,221,11,10,10,0 +55783,602,306,10,11,11,0 +55782,602,305,12,9,9,0 +55781,602,223,46,1,1,1 +55780,602,182,38,4,4,2 +55779,602,304,19,7,7,1 +55899,603,326,0,54,54,0 +55898,603,288,0,34,34,0 +55897,603,207,0,24,24,0 +55896,603,325,0,58,58,0 +55895,603,324,0,31,31,0 +55894,603,243,0,32,32,0 +55893,603,323,0,29,29,0 +55892,603,322,0,22,22,0 +55891,603,256,0,61,61,0 +55890,603,172,0,42,42,0 +55889,603,270,0,38,38,0 +55888,603,283,0,59,59,0 +55887,603,300,0,62,62,0 +55886,603,275,0,60,60,0 +55885,603,321,0,33,33,0 +55884,603,259,0,57,57,0 +55883,603,320,0,52,52,0 +55882,603,319,0,55,55,0 +55881,603,219,0,56,56,0 +55880,603,318,0,53,53,0 +55879,603,317,0,46,46,0 +55878,603,316,0,49,49,0 +55877,603,315,0,50,50,0 +55876,603,252,1,19,19,0 +55875,603,269,0,44,44,0 +55874,603,267,0,43,43,0 +55873,603,298,0,39,39,0 +55872,603,313,0,27,27,0 +55871,603,278,0,47,47,0 +55870,603,314,0,30,30,0 +55869,603,312,0,23,23,0 +55868,603,311,0,26,26,0 +55867,603,310,0,51,51,0 +55866,603,293,0,45,45,0 +55865,603,292,0,40,40,0 +55864,603,251,0,35,35,0 +55863,603,230,1,20,20,0 +55862,603,197,6,13,13,0 +55861,603,309,0,48,48,0 +55860,603,200,0,37,37,0 +55859,603,231,11,11,11,0 +55858,603,232,4,17,17,0 +55857,603,250,5,15,15,0 +55856,603,222,45,3,3,2 +55855,603,296,0,36,36,0 +55854,603,233,5,14,14,0 +55853,603,308,0,41,41,0 +55852,603,235,12,9,9,0 +55851,603,289,1,18,18,0 +55850,603,238,35,5,5,3 +55849,603,187,4,16,16,0 +55848,603,265,0,21,21,0 +55847,603,224,52,1,1,3 +55846,603,280,0,28,28,0 +55845,603,307,0,25,25,0 +55844,603,199,23,6,6,2 +55843,603,221,13,8,8,0 +55842,603,306,10,12,12,0 +55841,603,305,12,10,10,0 +55840,603,223,52,2,2,1 +55839,603,182,38,4,4,2 +55838,603,304,20,7,7,1 +55961,604,326,0,56,56,0 +55960,604,288,0,36,36,0 +55959,604,207,0,25,25,0 +55958,604,325,0,59,59,0 +55957,604,324,0,33,33,0 +55956,604,243,0,34,34,0 +55955,604,323,0,31,31,0 +55954,604,322,0,22,22,0 +55953,604,256,0,61,61,0 +55952,604,172,0,43,43,0 +55951,604,270,0,39,39,0 +55950,604,283,0,47,47,0 +55949,604,300,0,62,62,0 +55948,604,275,0,60,60,0 +55947,604,321,0,35,35,0 +55946,604,259,0,58,58,0 +55945,604,320,0,54,54,0 +55944,604,319,0,49,49,0 +55943,604,219,0,57,57,0 +55942,604,318,0,55,55,0 +55941,604,317,0,48,48,0 +55940,604,316,0,51,51,0 +55939,604,315,0,52,52,0 +55938,604,252,1,19,19,0 +55937,604,269,0,45,45,0 +55936,604,267,0,44,44,0 +55935,604,298,0,40,40,0 +55934,604,313,0,28,28,0 +55933,604,278,0,30,30,0 +55932,604,314,0,32,32,0 +55931,604,312,0,24,24,0 +55930,604,311,0,27,27,0 +55929,604,310,0,53,53,0 +55928,604,293,0,46,46,0 +55927,604,292,0,41,41,0 +55926,604,251,0,37,37,0 +55925,604,230,1,20,20,0 +55924,604,197,6,14,14,0 +55923,604,309,0,50,50,0 +55922,604,200,0,23,23,0 +55921,604,231,15,8,8,0 +55920,604,232,4,17,17,0 +55919,604,250,11,12,12,0 +55918,604,222,45,3,3,2 +55917,604,296,0,38,38,0 +55916,604,233,5,16,16,0 +55915,604,308,0,42,42,0 +55914,604,235,12,10,10,0 +55913,604,289,1,18,18,0 +55912,604,238,35,5,5,3 +55911,604,187,6,15,15,0 +55910,604,265,0,21,21,0 +55909,604,224,55,1,1,3 +55908,604,280,0,29,29,0 +55907,604,307,0,26,26,0 +55906,604,199,32,6,6,3 +55905,604,221,14,9,9,0 +55904,604,306,10,13,13,0 +55903,604,305,12,11,11,0 +55902,604,223,52,2,2,1 +55901,604,182,38,4,4,2 +55900,604,304,20,7,7,1 +54800,605,330,0,19,19,0 +54799,605,250,0,18,18,0 +54798,605,305,0,17,17,0 +54797,605,199,0,16,16,0 +54796,605,182,0,15,15,0 +54795,605,238,0,14,14,0 +54794,605,307,0,13,13,0 +54793,605,306,0,12,12,0 +54792,605,197,0,11,11,0 +54791,605,329,0,10,10,0 +54790,605,232,0,9,9,0 +54789,605,309,0,8,8,0 +54788,605,223,0,7,7,0 +54787,605,290,1,6,6,0 +54786,605,304,2,5,5,0 +54785,605,235,3,4,4,0 +54784,605,328,4,3,3,0 +54783,605,327,6,2,2,0 +54782,605,224,9,1,1,1 +54820,606,331,0,15,15,0 +54819,606,330,0,12,12,0 +54818,606,250,0,19,19,0 +54817,606,305,0,20,20,0 +54816,606,199,0,14,14,0 +54815,606,182,0,10,10,0 +54814,606,238,0,18,18,0 +54813,606,307,0,9,9,0 +54812,606,306,0,17,17,0 +54811,606,197,0,16,16,0 +54810,606,329,0,13,13,0 +54809,606,232,3,6,6,0 +54808,606,309,0,11,11,0 +54807,606,223,1,7,7,0 +54806,606,290,1,8,8,0 +54805,606,304,6,4,4,0 +54804,606,235,5,5,5,0 +54803,606,328,10,2,2,0 +54802,606,327,6,3,3,0 +54801,606,224,18,1,1,2 +54847,607,293,0,27,27,0 +54846,607,262,0,26,26,0 +54845,607,334,0,25,25,0 +54844,607,292,0,23,23,0 +54843,607,222,0,16,16,0 +54842,607,333,0,14,14,0 +54841,607,332,1,10,10,0 +54840,607,331,0,19,19,0 +54839,607,330,0,15,15,0 +54838,607,250,0,22,22,0 +54837,607,305,0,24,24,0 +54836,607,199,0,12,12,0 +54835,607,182,0,13,13,0 +54834,607,238,0,18,18,0 +54833,607,307,0,11,11,0 +54832,607,306,0,21,21,0 +54831,607,197,0,20,20,0 +54830,607,329,0,17,17,0 +54829,607,232,6,6,6,0 +54828,607,309,6,4,4,0 +54827,607,223,1,8,8,0 +54826,607,290,1,9,9,0 +54825,607,304,8,3,3,0 +54824,607,235,5,7,7,0 +54823,607,328,19,2,2,1 +54822,607,327,6,5,5,0 +54821,607,224,22,1,1,2 +54876,608,289,0,26,26,0 +54875,608,280,0,17,17,0 +54874,608,293,0,29,29,0 +54873,608,262,0,28,28,0 +54872,608,334,0,27,27,0 +54871,608,292,0,24,24,0 +54870,608,222,0,19,19,0 +54869,608,333,0,16,16,0 +54868,608,332,5,7,7,0 +54867,608,331,0,21,21,0 +54866,608,330,0,18,18,0 +54865,608,250,0,23,23,0 +54864,608,305,0,25,25,0 +54863,608,199,0,14,14,0 +54862,608,182,0,15,15,0 +54861,608,238,0,20,20,0 +54860,608,307,0,12,12,0 +54859,608,306,2,9,9,0 +54858,608,197,0,22,22,0 +54857,608,329,0,13,13,0 +54856,608,232,6,6,6,0 +54855,608,309,9,4,4,0 +54854,608,223,1,10,10,0 +54853,608,290,1,11,11,0 +54852,608,304,9,5,5,0 +54851,608,235,5,8,8,0 +54850,608,328,19,2,2,1 +54849,608,327,12,3,3,0 +54848,608,224,31,1,1,3 +54906,609,278,1,14,14,0 +54905,609,289,0,21,21,0 +54904,609,280,0,19,19,0 +54903,609,293,0,30,30,0 +54902,609,262,0,29,29,0 +54901,609,334,0,28,28,0 +54900,609,292,0,26,26,0 +54899,609,222,0,22,22,0 +54898,609,333,3,9,9,0 +54897,609,332,5,7,7,0 +54896,609,331,0,24,24,0 +54895,609,330,0,20,20,0 +54894,609,250,0,18,18,0 +54893,609,305,0,27,27,0 +54892,609,199,0,17,17,0 +54891,609,182,2,10,10,0 +54890,609,238,0,23,23,0 +54889,609,307,0,16,16,0 +54888,609,306,2,11,11,0 +54887,609,197,0,25,25,0 +54886,609,329,0,15,15,0 +54885,609,232,6,6,6,0 +54884,609,309,9,4,4,0 +54883,609,223,1,12,12,0 +54882,609,290,1,13,13,0 +54881,609,304,9,5,5,0 +54880,609,235,5,8,8,0 +54879,609,328,28,2,2,2 +54878,609,327,18,3,3,0 +54877,609,224,35,1,1,3 +54938,610,259,0,31,31,0 +54937,610,231,0,24,24,0 +54936,610,278,1,15,15,0 +54935,610,289,0,23,23,0 +54934,610,280,0,21,21,0 +54933,610,293,0,32,32,0 +54932,610,262,0,26,26,0 +54931,610,334,0,30,30,0 +54930,610,292,0,29,29,0 +54929,610,222,0,25,25,0 +54928,610,333,3,10,10,0 +54927,610,332,5,7,7,0 +54926,610,331,0,27,27,0 +54925,610,330,0,22,22,0 +54924,610,250,0,19,19,0 +54923,610,305,0,20,20,0 +54922,610,199,0,18,18,0 +54921,610,182,2,11,11,0 +54920,610,238,4,9,9,0 +54919,610,307,0,17,17,0 +54918,610,306,2,12,12,0 +54917,610,197,0,28,28,0 +54916,610,329,0,16,16,0 +54915,610,232,6,6,6,0 +54914,610,309,11,4,4,0 +54913,610,223,1,13,13,0 +54912,610,290,1,14,14,0 +54911,610,304,10,5,5,0 +54910,610,235,5,8,8,0 +54909,610,328,37,2,2,3 +54908,610,327,21,3,3,0 +54907,610,224,41,1,1,3 +54971,611,317,0,32,32,0 +54970,611,259,0,31,31,0 +54969,611,231,0,24,24,0 +54968,611,278,1,16,16,0 +54967,611,289,0,23,23,0 +54966,611,280,0,21,21,0 +54965,611,293,0,33,33,0 +54964,611,262,0,26,26,0 +54963,611,334,0,30,30,0 +54962,611,292,0,29,29,0 +54961,611,222,0,25,25,0 +54960,611,333,3,10,10,0 +54959,611,332,5,9,9,0 +54958,611,331,0,27,27,0 +54957,611,330,0,22,22,0 +54956,611,250,0,19,19,0 +54955,611,305,0,20,20,0 +54954,611,199,3,11,11,0 +54953,611,182,2,12,12,0 +54952,611,238,10,6,6,0 +54951,611,307,0,18,18,0 +54950,611,306,2,13,13,0 +54949,611,197,0,28,28,0 +54948,611,329,0,17,17,0 +54947,611,232,6,7,7,0 +54946,611,309,11,5,5,0 +54945,611,223,1,14,14,0 +54944,611,290,1,15,15,0 +54943,611,304,19,4,4,1 +54942,611,235,6,8,8,0 +54941,611,328,39,2,2,3 +54940,611,327,25,3,3,0 +54939,611,224,41,1,1,3 +55005,612,313,0,28,28,0 +55004,612,317,0,33,33,0 +55003,612,259,0,32,32,0 +55002,612,231,1,15,15,0 +55001,612,278,1,17,17,0 +55000,612,289,0,23,23,0 +54999,612,280,0,22,22,0 +54998,612,293,0,34,34,0 +54997,612,262,0,26,26,0 +54996,612,334,0,31,31,0 +54995,612,292,0,30,30,0 +54994,612,222,0,25,25,0 +54993,612,333,3,11,11,0 +54992,612,332,5,10,10,0 +54991,612,331,0,27,27,0 +54990,612,330,0,24,24,0 +54989,612,250,0,20,20,0 +54988,612,305,0,21,21,0 +54987,612,199,7,8,8,0 +54986,612,182,2,12,12,0 +54985,612,238,19,4,4,1 +54984,612,307,0,19,19,0 +54983,612,306,2,13,13,0 +54982,612,197,0,29,29,0 +54981,612,329,0,18,18,0 +54980,612,232,6,9,9,0 +54979,612,309,11,6,6,0 +54978,612,223,1,14,14,0 +54977,612,290,1,16,16,0 +54976,612,304,19,5,5,1 +54975,612,235,8,7,7,0 +54974,612,328,42,1,1,3 +54973,612,327,31,3,3,0 +54972,612,224,41,2,2,3 +55043,613,336,0,38,38,0 +55042,613,335,0,37,37,0 +55041,613,200,0,35,35,0 +55040,613,187,0,31,31,0 +55039,613,313,0,28,28,0 +55038,613,317,0,34,34,0 +55037,613,259,0,33,33,0 +55036,613,231,4,11,11,0 +55035,613,278,1,17,17,0 +55034,613,289,0,23,23,0 +55033,613,280,0,22,22,0 +55032,613,293,0,36,36,0 +55031,613,262,0,26,26,0 +55030,613,334,0,32,32,0 +55029,613,292,0,30,30,0 +55028,613,222,0,25,25,0 +55027,613,333,3,12,12,0 +55026,613,332,5,10,10,0 +55025,613,331,0,27,27,0 +55024,613,330,0,24,24,0 +55023,613,250,0,20,20,0 +55022,613,305,0,21,21,0 +55021,613,199,8,7,7,0 +55020,613,182,2,13,13,0 +55019,613,238,25,4,4,1 +55018,613,307,0,19,19,0 +55017,613,306,2,14,14,0 +55016,613,197,0,29,29,0 +55015,613,329,0,18,18,0 +55014,613,232,6,9,9,0 +55013,613,309,20,6,6,1 +55012,613,223,1,15,15,0 +55011,613,290,1,16,16,0 +55010,613,304,23,5,5,1 +55009,613,235,8,8,8,0 +55008,613,328,42,1,1,3 +55007,613,327,33,3,3,0 +55006,613,224,41,2,2,3 +55082,614,298,1,18,18,0 +55081,614,336,0,39,39,0 +55080,614,335,0,35,35,0 +55079,614,200,0,37,37,0 +55078,614,187,0,32,32,0 +55077,614,313,0,29,29,0 +55076,614,317,0,36,36,0 +55075,614,259,0,34,34,0 +55074,614,231,8,8,8,0 +55073,614,278,1,17,17,0 +55072,614,289,0,24,24,0 +55071,614,280,0,23,23,0 +55070,614,293,0,38,38,0 +55069,614,262,0,27,27,0 +55068,614,334,0,33,33,0 +55067,614,292,0,31,31,0 +55066,614,222,0,26,26,0 +55065,614,333,3,13,13,0 +55064,614,332,5,11,11,0 +55063,614,331,0,28,28,0 +55062,614,330,0,25,25,0 +55061,614,250,0,20,20,0 +55060,614,305,0,22,22,0 +55059,614,199,8,7,7,0 +55058,614,182,2,14,14,0 +55057,614,238,25,4,4,1 +55056,614,307,0,21,21,0 +55055,614,306,4,12,12,0 +55054,614,197,0,30,30,0 +55053,614,329,0,19,19,0 +55052,614,232,6,10,10,0 +55051,614,309,23,5,5,1 +55050,614,223,1,15,15,0 +55049,614,290,1,16,16,0 +55048,614,304,23,6,6,1 +55047,614,235,8,9,9,0 +55046,614,328,51,1,1,4 +55045,614,327,39,3,3,0 +55044,614,224,41,2,2,3 +55122,615,243,0,29,29,0 +55121,615,298,1,19,19,0 +55120,615,336,0,40,40,0 +55119,615,335,0,37,37,0 +55118,615,200,0,22,22,0 +55117,615,187,0,35,35,0 +55116,615,313,0,31,31,0 +55115,615,317,0,38,38,0 +55114,615,259,0,32,32,0 +55113,615,231,8,9,9,0 +55112,615,278,1,18,18,0 +55111,615,289,0,26,26,0 +55110,615,280,0,24,24,0 +55109,615,293,0,39,39,0 +55108,615,262,0,23,23,0 +55107,615,334,0,36,36,0 +55106,615,292,0,34,34,0 +55105,615,222,0,28,28,0 +55104,615,333,3,14,14,0 +55103,615,332,5,11,11,0 +55102,615,331,0,30,30,0 +55101,615,330,0,27,27,0 +55100,615,250,3,13,13,0 +55099,615,305,0,25,25,0 +55098,615,199,8,8,8,0 +55097,615,182,2,16,16,0 +55096,615,238,25,4,4,1 +55095,615,307,0,21,21,0 +55094,615,306,4,12,12,0 +55093,615,197,0,33,33,0 +55092,615,329,0,20,20,0 +55091,615,232,6,10,10,0 +55090,615,309,23,5,5,1 +55089,615,223,1,17,17,0 +55088,615,290,3,15,15,0 +55087,615,304,23,6,6,1 +55086,615,235,12,7,7,0 +55085,615,328,60,1,1,5 +55084,615,327,45,2,2,0 +55083,615,224,42,3,3,3 +55162,616,243,0,29,29,0 +55161,616,298,1,18,18,0 +55160,616,336,0,40,40,0 +55159,616,335,0,37,37,0 +55158,616,200,0,22,22,0 +55157,616,187,0,35,35,0 +55156,616,313,0,31,31,0 +55155,616,317,0,38,38,0 +55154,616,259,0,32,32,0 +55153,616,231,8,9,9,0 +55152,616,278,1,19,19,0 +55151,616,289,0,26,26,0 +55150,616,280,0,25,25,0 +55149,616,293,0,39,39,0 +55148,616,262,0,24,24,0 +55147,616,334,0,36,36,0 +55146,616,292,0,34,34,0 +55145,616,222,0,28,28,0 +55144,616,333,3,14,14,0 +55143,616,332,5,13,13,0 +55142,616,331,0,30,30,0 +55141,616,330,0,27,27,0 +55140,616,250,7,10,10,0 +55139,616,305,0,23,23,0 +55138,616,199,11,8,8,0 +55137,616,182,2,16,16,0 +55136,616,238,34,4,4,2 +55135,616,307,0,21,21,0 +55134,616,306,6,12,12,0 +55133,616,197,0,33,33,0 +55132,616,329,0,20,20,0 +55131,616,232,6,11,11,0 +55130,616,309,23,5,5,1 +55129,616,223,2,17,17,0 +55128,616,290,3,15,15,0 +55127,616,304,23,6,6,1 +55126,616,235,12,7,7,0 +55125,616,328,66,1,1,5 +55124,616,327,45,2,2,0 +55123,616,224,42,3,3,3 +55202,617,243,0,30,30,0 +55201,617,298,1,18,18,0 +55200,617,336,0,40,40,0 +55199,617,335,0,37,37,0 +55198,617,200,0,23,23,0 +55197,617,187,0,35,35,0 +55196,617,313,0,32,32,0 +55195,617,317,0,38,38,0 +55194,617,259,0,28,28,0 +55193,617,231,8,9,9,0 +55192,617,278,1,19,19,0 +55191,617,289,0,26,26,0 +55190,617,280,0,25,25,0 +55189,617,293,0,39,39,0 +55188,617,262,0,24,24,0 +55187,617,334,0,36,36,0 +55186,617,292,0,34,34,0 +55185,617,222,0,29,29,0 +55184,617,333,3,14,14,0 +55183,617,332,5,13,13,0 +55182,617,331,0,31,31,0 +55181,617,330,0,27,27,0 +55180,617,250,7,10,10,0 +55179,617,305,0,21,21,0 +55178,617,199,12,7,7,0 +55177,617,182,2,16,16,0 +55176,617,238,43,4,4,3 +55175,617,307,0,22,22,0 +55174,617,306,6,12,12,0 +55173,617,197,0,33,33,0 +55172,617,329,0,20,20,0 +55171,617,232,6,11,11,0 +55170,617,309,27,5,5,1 +55169,617,223,2,17,17,0 +55168,617,290,3,15,15,0 +55167,617,304,23,6,6,1 +55166,617,235,12,8,8,0 +55165,617,328,69,1,1,5 +55164,617,327,47,3,3,0 +55163,617,224,48,2,2,3 +55244,618,320,0,41,41,0 +55243,618,314,0,33,33,0 +55242,618,243,0,30,30,0 +55241,618,298,1,20,20,0 +55240,618,336,0,42,42,0 +55239,618,335,0,38,38,0 +55238,618,200,0,24,24,0 +55237,618,187,0,36,36,0 +55236,618,313,0,32,32,0 +55235,618,317,0,39,39,0 +55234,618,259,0,28,28,0 +55233,618,231,8,10,10,0 +55232,618,278,1,21,21,0 +55231,618,289,0,26,26,0 +55230,618,280,0,25,25,0 +55229,618,293,0,40,40,0 +55228,618,262,4,14,14,0 +55227,618,334,0,37,37,0 +55226,618,292,0,35,35,0 +55225,618,222,0,29,29,0 +55224,618,333,3,15,15,0 +55223,618,332,5,13,13,0 +55222,618,331,0,31,31,0 +55221,618,330,0,27,27,0 +55220,618,250,7,11,11,0 +55219,618,305,0,22,22,0 +55218,618,199,12,7,7,0 +55217,618,182,2,17,17,0 +55216,618,238,43,4,4,3 +55215,618,307,1,19,19,0 +55214,618,306,9,9,9,0 +55213,618,197,0,34,34,0 +55212,618,329,0,23,23,0 +55211,618,232,6,12,12,0 +55210,618,309,36,5,5,2 +55209,618,223,2,18,18,0 +55208,618,290,3,16,16,0 +55207,618,304,23,6,6,1 +55206,618,235,12,8,8,0 +55205,618,328,71,1,1,5 +55204,618,327,47,3,3,0 +55203,618,224,54,2,2,3 +55286,619,320,0,41,41,0 +55285,619,314,0,34,34,0 +55284,619,243,0,30,30,0 +55283,619,298,1,20,20,0 +55282,619,336,0,42,42,0 +55281,619,335,0,38,38,0 +55280,619,200,0,24,24,0 +55279,619,187,0,36,36,0 +55278,619,313,0,33,33,0 +55277,619,317,0,39,39,0 +55276,619,259,0,28,28,0 +55275,619,231,14,8,8,0 +55274,619,278,1,21,21,0 +55273,619,289,0,26,26,0 +55272,619,280,0,25,25,0 +55271,619,293,0,40,40,0 +55270,619,262,4,14,14,0 +55269,619,334,0,37,37,0 +55268,619,292,0,35,35,0 +55267,619,222,0,29,29,0 +55266,619,333,3,15,15,0 +55265,619,332,5,13,13,0 +55264,619,331,0,32,32,0 +55263,619,330,0,27,27,0 +55262,619,250,7,11,11,0 +55261,619,305,0,22,22,0 +55260,619,199,16,7,7,0 +55259,619,182,2,17,17,0 +55258,619,238,52,3,3,4 +55257,619,307,1,19,19,0 +55256,619,306,9,10,10,0 +55255,619,197,0,31,31,0 +55254,619,329,0,23,23,0 +55253,619,232,6,12,12,0 +55252,619,309,38,5,5,2 +55251,619,223,2,18,18,0 +55250,619,290,3,16,16,0 +55249,619,304,26,6,6,1 +55248,619,235,12,9,9,0 +55247,619,328,71,1,1,5 +55246,619,327,47,4,4,0 +55245,619,224,55,2,2,3 +53953,620,278,0,21,21,0 +53952,620,339,0,20,20,0 +53951,620,320,0,19,19,0 +53950,620,289,0,18,18,0 +53949,620,333,0,17,17,0 +53948,620,207,0,16,16,0 +53947,620,309,0,15,15,0 +53946,620,317,0,14,14,0 +53945,620,327,0,13,13,0 +53944,620,224,0,12,12,0 +53943,620,182,0,11,11,0 +53942,620,337,0,10,10,0 +53941,620,307,0,9,9,0 +53940,620,280,0,8,8,0 +53939,620,199,0,7,7,0 +53938,620,238,1,6,6,0 +53937,620,314,2,5,5,0 +53936,620,223,3,4,4,0 +53935,620,235,4,3,3,0 +53934,620,304,6,2,2,0 +53933,620,328,9,1,1,1 +53981,621,293,0,28,28,0 +53980,621,305,0,27,27,0 +53979,621,306,0,25,25,0 +53978,621,250,0,21,21,0 +53977,621,340,0,20,20,0 +53976,621,243,0,18,18,0 +53975,621,338,0,17,17,0 +53974,621,278,0,19,19,0 +53973,621,339,0,26,26,0 +53972,621,320,0,24,24,0 +53971,621,289,1,10,10,0 +53970,621,333,0,23,23,0 +53969,621,207,3,7,7,0 +53968,621,309,4,5,5,0 +53967,621,317,0,22,22,0 +53966,621,327,0,14,14,0 +53965,621,224,6,3,3,0 +53964,621,182,0,11,11,0 +53963,621,337,0,16,16,0 +53962,621,307,0,15,15,0 +53961,621,280,0,13,13,0 +53960,621,199,0,12,12,0 +53959,621,238,3,8,8,0 +53958,621,314,2,9,9,0 +53957,621,223,3,6,6,0 +53956,621,235,4,4,4,0 +53955,621,304,15,1,1,1 +53954,621,328,9,2,2,1 +54011,622,329,0,29,29,0 +54010,622,290,0,15,15,0 +54009,622,293,0,30,30,0 +54008,622,305,0,26,26,0 +54007,622,306,0,27,27,0 +54006,622,250,1,12,12,0 +54005,622,340,0,23,23,0 +54004,622,243,0,21,21,0 +54003,622,338,0,17,17,0 +54002,622,278,0,22,22,0 +54001,622,339,0,28,28,0 +54000,622,320,0,25,25,0 +53999,622,289,1,11,11,0 +53998,622,333,3,8,8,0 +53997,622,207,3,7,7,0 +53996,622,309,6,6,6,0 +53995,622,317,0,24,24,0 +53994,622,327,0,18,18,0 +53993,622,224,15,1,1,1 +53992,622,182,0,13,13,0 +53991,622,337,0,20,20,0 +53990,622,307,0,19,19,0 +53989,622,280,0,16,16,0 +53988,622,199,0,14,14,0 +53987,622,238,3,9,9,0 +53986,622,314,2,10,10,0 +53985,622,223,7,5,5,0 +53984,622,235,10,3,3,0 +53983,622,304,15,2,2,1 +53982,622,328,9,4,4,1 +54042,623,312,2,12,12,0 +54041,623,329,0,25,25,0 +54040,623,290,0,16,16,0 +54039,623,293,0,31,31,0 +54038,623,305,0,29,29,0 +54037,623,306,9,5,5,1 +54036,623,250,1,15,15,0 +54035,623,340,0,26,26,0 +54034,623,243,0,24,24,0 +54033,623,338,0,21,21,0 +54032,623,278,1,14,14,0 +54031,623,339,0,30,30,0 +54030,623,320,0,28,28,0 +54029,623,289,1,13,13,0 +54028,623,333,3,8,8,0 +54027,623,207,3,9,9,0 +54026,623,309,6,7,7,0 +54025,623,317,0,27,27,0 +54024,623,327,0,22,22,0 +54023,623,224,19,1,1,1 +54022,623,182,0,17,17,0 +54021,623,337,0,19,19,0 +54020,623,307,0,23,23,0 +54019,623,280,0,20,20,0 +54018,623,199,0,18,18,0 +54017,623,238,3,10,10,0 +54016,623,314,2,11,11,0 +54015,623,223,7,6,6,0 +54014,623,235,16,2,2,0 +54013,623,304,15,3,3,1 +54012,623,328,12,4,4,1 +54074,624,330,0,30,30,0 +54073,624,312,2,15,15,0 +54072,624,329,0,26,26,0 +54071,624,290,0,18,18,0 +54070,624,293,0,32,32,0 +54069,624,305,3,11,11,0 +54068,624,306,9,5,5,1 +54067,624,250,3,13,13,0 +54066,624,340,0,27,27,0 +54065,624,243,0,25,25,0 +54064,624,338,0,24,24,0 +54063,624,278,2,16,16,0 +54062,624,339,0,31,31,0 +54061,624,320,0,29,29,0 +54060,624,289,1,17,17,0 +54059,624,333,3,9,9,0 +54058,624,207,3,10,10,0 +54057,624,309,6,8,8,0 +54056,624,317,0,28,28,0 +54055,624,327,6,7,7,0 +54054,624,224,28,1,1,2 +54053,624,182,0,19,19,0 +54052,624,337,0,22,22,0 +54051,624,307,0,21,21,0 +54050,624,280,0,23,23,0 +54049,624,199,0,20,20,0 +54048,624,238,3,12,12,0 +54047,624,314,2,14,14,0 +54046,624,223,7,6,6,0 +54045,624,235,16,3,3,0 +54044,624,304,19,2,2,1 +54043,624,328,12,4,4,1 +54107,625,221,0,31,31,0 +54106,625,330,0,27,27,0 +54105,625,312,2,16,16,0 +54104,625,329,0,26,26,0 +54103,625,290,0,18,18,0 +54102,625,293,0,33,33,0 +54101,625,305,4,11,11,0 +54100,625,306,9,5,5,1 +54099,625,250,3,14,14,0 +54098,625,340,0,28,28,0 +54097,625,243,0,25,25,0 +54096,625,338,0,24,24,0 +54095,625,278,6,9,9,0 +54094,625,339,0,32,32,0 +54093,625,320,0,30,30,0 +54092,625,289,1,17,17,0 +54091,625,333,3,12,12,0 +54090,625,207,3,13,13,0 +54089,625,309,6,8,8,0 +54088,625,317,0,29,29,0 +54087,625,327,9,6,6,0 +54086,625,224,34,1,1,2 +54085,625,182,0,19,19,0 +54084,625,337,0,22,22,0 +54083,625,307,0,21,21,0 +54082,625,280,0,23,23,0 +54081,625,199,0,20,20,0 +54080,625,238,5,10,10,0 +54079,625,314,2,15,15,0 +54078,625,223,7,7,7,0 +54077,625,235,16,4,4,0 +54076,625,304,19,3,3,1 +54075,625,328,21,2,2,2 +54142,626,262,0,33,33,0 +54141,626,232,1,18,18,0 +54140,626,221,0,32,32,0 +54139,626,330,0,28,28,0 +54138,626,312,2,16,16,0 +54137,626,329,0,27,27,0 +54136,626,290,0,19,19,0 +54135,626,293,0,35,35,0 +54134,626,305,4,11,11,0 +54133,626,306,9,6,6,1 +54132,626,250,3,14,14,0 +54131,626,340,0,29,29,0 +54130,626,243,0,26,26,0 +54129,626,338,0,25,25,0 +54128,626,278,9,8,8,0 +54127,626,339,0,34,34,0 +54126,626,320,0,31,31,0 +54125,626,289,1,17,17,0 +54124,626,333,3,12,12,0 +54123,626,207,3,13,13,0 +54122,626,309,10,5,5,0 +54121,626,317,0,30,30,0 +54120,626,327,9,7,7,0 +54119,626,224,43,1,1,3 +54118,626,182,0,21,21,0 +54117,626,337,0,23,23,0 +54116,626,307,0,22,22,0 +54115,626,280,0,24,24,0 +54114,626,199,0,20,20,0 +54113,626,238,5,10,10,0 +54112,626,314,2,15,15,0 +54111,626,223,7,9,9,0 +54110,626,235,16,4,4,0 +54109,626,304,21,3,3,1 +54108,626,328,27,2,2,2 +54178,627,321,0,36,36,0 +54177,627,262,0,33,33,0 +54176,627,232,1,19,19,0 +54175,627,221,0,32,32,0 +54174,627,330,0,28,28,0 +54173,627,312,4,12,12,0 +54172,627,329,0,25,25,0 +54171,627,290,0,20,20,0 +54170,627,293,0,35,35,0 +54169,627,305,4,11,11,0 +54168,627,306,9,7,7,1 +54167,627,250,3,16,16,0 +54166,627,340,0,29,29,0 +54165,627,243,0,27,27,0 +54164,627,338,0,26,26,0 +54163,627,278,9,9,9,0 +54162,627,339,0,34,34,0 +54161,627,320,0,31,31,0 +54160,627,289,2,18,18,0 +54159,627,333,3,13,13,0 +54158,627,207,3,15,15,0 +54157,627,309,10,6,6,0 +54156,627,317,0,30,30,0 +54155,627,327,9,8,8,0 +54154,627,224,43,1,1,3 +54153,627,182,0,22,22,0 +54152,627,337,0,23,23,0 +54151,627,307,3,14,14,0 +54150,627,280,0,24,24,0 +54149,627,199,0,21,21,0 +54148,627,238,9,10,10,0 +54147,627,314,2,17,17,0 +54146,627,223,13,5,5,0 +54145,627,235,25,3,3,1 +54144,627,304,21,4,4,1 +54143,627,328,27,2,2,2 +54215,628,296,0,35,35,0 +54214,628,321,0,37,37,0 +54213,628,262,0,33,33,0 +54212,628,232,1,19,19,0 +54211,628,221,0,32,32,0 +54210,628,330,0,29,29,0 +54209,628,312,4,13,13,0 +54208,628,329,0,25,25,0 +54207,628,290,0,20,20,0 +54206,628,293,0,36,36,0 +54205,628,305,7,11,11,0 +54204,628,306,9,8,8,1 +54203,628,250,3,16,16,0 +54202,628,340,0,30,30,0 +54201,628,243,0,27,27,0 +54200,628,338,0,26,26,0 +54199,628,278,11,7,7,0 +54198,628,339,0,34,34,0 +54197,628,320,0,28,28,0 +54196,628,289,2,18,18,0 +54195,628,333,3,14,14,0 +54194,628,207,3,15,15,0 +54193,628,309,14,5,5,0 +54192,628,317,0,31,31,0 +54191,628,327,9,9,9,0 +54190,628,224,52,1,1,4 +54189,628,182,0,22,22,0 +54188,628,337,0,23,23,0 +54187,628,307,4,12,12,0 +54186,628,280,0,24,24,0 +54185,628,199,0,21,21,0 +54184,628,238,9,10,10,0 +54183,628,314,2,17,17,0 +54182,628,223,13,6,6,0 +54181,628,235,25,4,4,1 +54180,628,304,27,3,3,1 +54179,628,328,27,2,2,2 +54253,629,341,0,32,32,0 +54252,629,296,0,36,36,0 +54251,629,321,0,38,38,0 +54250,629,262,0,34,34,0 +54249,629,232,1,19,19,0 +54248,629,221,0,33,33,0 +54247,629,330,0,30,30,0 +54246,629,312,4,13,13,0 +54245,629,329,0,25,25,0 +54244,629,290,0,21,21,0 +54243,629,293,0,37,37,0 +54242,629,305,13,7,7,0 +54241,629,306,9,9,9,1 +54240,629,250,3,17,17,0 +54239,629,340,0,31,31,0 +54238,629,243,0,28,28,0 +54237,629,338,0,27,27,0 +54236,629,278,11,8,8,0 +54235,629,339,0,35,35,0 +54234,629,320,1,20,20,0 +54233,629,289,4,14,14,0 +54232,629,333,3,15,15,0 +54231,629,207,3,16,16,0 +54230,629,309,17,5,5,0 +54229,629,317,0,29,29,0 +54228,629,327,9,10,10,0 +54227,629,224,61,1,1,5 +54226,629,182,0,23,23,0 +54225,629,337,0,24,24,0 +54224,629,307,4,12,12,0 +54223,629,280,0,26,26,0 +54222,629,199,0,22,22,0 +54221,629,238,9,11,11,0 +54220,629,314,2,18,18,0 +54219,629,223,13,6,6,0 +54218,629,235,25,4,4,1 +54217,629,304,31,2,2,1 +54216,629,328,27,3,3,2 +54293,630,343,0,39,39,0 +54292,630,342,0,33,33,0 +54291,630,341,0,32,32,0 +54290,630,296,0,37,37,0 +54289,630,321,0,40,40,0 +54288,630,262,0,35,35,0 +54287,630,232,1,20,20,0 +54286,630,221,0,34,34,0 +54285,630,330,0,30,30,0 +54284,630,312,4,13,13,0 +54283,630,329,0,25,25,0 +54282,630,290,0,22,22,0 +54281,630,293,0,38,38,0 +54280,630,305,13,7,7,0 +54279,630,306,9,9,9,1 +54278,630,250,3,18,18,0 +54277,630,340,0,31,31,0 +54276,630,243,0,28,28,0 +54275,630,338,0,27,27,0 +54274,630,278,12,8,8,0 +54273,630,339,0,36,36,0 +54272,630,320,1,21,21,0 +54271,630,289,4,14,14,0 +54270,630,333,3,16,16,0 +54269,630,207,3,17,17,0 +54268,630,309,23,5,5,0 +54267,630,317,0,29,29,0 +54266,630,327,9,10,10,0 +54265,630,224,61,1,1,5 +54264,630,182,0,23,23,0 +54263,630,337,0,24,24,0 +54262,630,307,4,12,12,0 +54261,630,280,0,26,26,0 +54260,630,199,3,15,15,0 +54259,630,238,9,11,11,0 +54258,630,314,2,19,19,0 +54257,630,223,15,6,6,0 +54256,630,235,25,4,4,1 +54255,630,304,35,3,3,1 +54254,630,328,36,2,2,3 +54335,631,344,0,32,32,0 +54334,631,222,0,29,29,0 +54333,631,343,0,41,41,0 +54332,631,342,0,34,34,0 +54331,631,341,0,36,36,0 +54330,631,296,0,39,39,0 +54329,631,321,0,42,42,0 +54328,631,262,0,37,37,0 +54327,631,232,1,20,20,0 +54326,631,221,0,24,24,0 +54325,631,330,0,33,33,0 +54324,631,312,4,14,14,0 +54323,631,329,0,26,26,0 +54322,631,290,0,22,22,0 +54321,631,293,0,40,40,0 +54320,631,305,13,8,8,0 +54319,631,306,9,11,11,1 +54318,631,250,3,18,18,0 +54317,631,340,0,35,35,0 +54316,631,243,0,30,30,0 +54315,631,338,0,28,28,0 +54314,631,278,12,10,10,0 +54313,631,339,0,38,38,0 +54312,631,320,1,21,21,0 +54311,631,289,4,15,15,0 +54310,631,333,3,17,17,0 +54309,631,207,4,12,12,0 +54308,631,309,23,5,5,0 +54307,631,317,0,31,31,0 +54306,631,327,15,6,6,0 +54305,631,224,61,1,1,5 +54304,631,182,0,23,23,0 +54303,631,337,0,25,25,0 +54302,631,307,4,13,13,0 +54301,631,280,0,27,27,0 +54300,631,199,3,16,16,0 +54299,631,238,12,9,9,0 +54298,631,314,2,19,19,0 +54297,631,223,15,7,7,0 +54296,631,235,27,4,4,1 +54295,631,304,39,3,3,1 +54294,631,328,45,2,2,4 +53164,632,339,0,25,25,0 +53163,632,347,0,24,24,0 +53162,632,320,0,23,23,0 +53161,632,334,0,22,22,0 +53160,632,340,0,21,21,0 +53159,632,346,0,20,20,0 +53158,632,293,0,19,19,0 +53157,632,345,0,18,18,0 +53156,632,307,0,17,17,0 +53155,632,327,0,16,16,0 +53154,632,341,0,15,15,0 +53153,632,224,0,14,14,0 +53152,632,333,0,13,13,0 +53151,632,243,0,12,12,0 +53150,632,280,0,11,11,0 +53149,632,238,0,10,10,0 +53148,632,289,0,9,9,0 +53147,632,235,0,8,8,0 +53146,632,312,0,7,7,0 +53145,632,304,1,6,6,0 +53144,632,278,2,5,5,0 +53143,632,317,3,4,4,0 +53142,632,223,4,3,3,0 +53141,632,328,6,2,2,0 +53140,632,207,9,1,1,1 +53191,633,314,0,14,14,0 +53190,633,306,1,9,9,0 +53189,633,339,0,22,22,0 +53188,633,347,0,27,27,0 +53187,633,320,0,12,12,0 +53186,633,334,0,26,26,0 +53185,633,340,0,25,25,0 +53184,633,346,0,24,24,0 +53183,633,293,0,23,23,0 +53182,633,345,3,7,7,0 +53181,633,307,0,15,15,0 +53180,633,327,0,10,10,0 +53179,633,341,0,18,18,0 +53178,633,224,0,21,21,0 +53177,633,333,0,20,20,0 +53176,633,243,0,19,19,0 +53175,633,280,0,17,17,0 +53174,633,238,0,16,16,0 +53173,633,289,0,13,13,0 +53172,633,235,6,3,3,0 +53171,633,312,0,11,11,0 +53170,633,304,3,8,8,0 +53169,633,278,6,4,4,0 +53168,633,317,3,6,6,0 +53167,633,223,4,5,5,0 +53166,633,328,15,1,1,1 +53165,633,207,9,2,2,1 +53219,634,342,0,26,26,0 +53218,634,314,0,18,18,0 +53217,634,306,1,12,12,0 +53216,634,339,0,23,23,0 +53215,634,347,0,28,28,0 +53214,634,320,0,17,17,0 +53213,634,334,0,27,27,0 +53212,634,340,0,25,25,0 +53211,634,346,0,22,22,0 +53210,634,293,0,24,24,0 +53209,634,345,3,8,8,0 +53208,634,307,0,20,20,0 +53207,634,327,0,14,14,0 +53206,634,341,0,13,13,0 +53205,634,224,2,10,10,0 +53204,634,333,0,21,21,0 +53203,634,243,1,11,11,0 +53202,634,280,0,16,16,0 +53201,634,238,6,4,4,0 +53200,634,289,0,19,19,0 +53199,634,235,10,2,2,0 +53198,634,312,0,15,15,0 +53197,634,304,6,6,6,0 +53196,634,278,6,5,5,0 +53195,634,317,3,9,9,0 +53194,634,223,4,7,7,0 +53193,634,328,24,1,1,2 +53192,634,207,9,3,3,1 +53249,635,338,0,29,29,0 +53248,635,298,0,20,20,0 +53247,635,342,0,24,24,0 +53246,635,314,0,21,21,0 +53245,635,306,1,12,12,0 +53244,635,339,0,25,25,0 +53243,635,347,0,30,30,0 +53242,635,320,0,19,19,0 +53241,635,334,0,28,28,0 +53240,635,340,0,27,27,0 +53239,635,346,1,14,14,0 +53238,635,293,0,26,26,0 +53237,635,345,9,4,4,0 +53236,635,307,0,15,15,0 +53235,635,327,0,16,16,0 +53234,635,341,2,10,10,0 +53233,635,224,2,11,11,0 +53232,635,333,0,23,23,0 +53231,635,243,1,13,13,0 +53230,635,280,0,18,18,0 +53229,635,238,9,5,5,0 +53228,635,289,0,22,22,0 +53227,635,235,19,2,2,1 +53226,635,312,0,17,17,0 +53225,635,304,6,8,8,0 +53224,635,278,6,7,7,0 +53223,635,317,3,9,9,0 +53222,635,223,8,6,6,0 +53221,635,328,24,1,1,2 +53220,635,207,9,3,3,1 +53281,636,349,0,26,26,0 +53280,636,348,0,24,24,0 +53279,636,338,0,31,31,0 +53278,636,298,0,20,20,0 +53277,636,342,0,25,25,0 +53276,636,314,0,21,21,0 +53275,636,306,1,14,14,0 +53274,636,339,0,27,27,0 +53273,636,347,0,32,32,0 +53272,636,320,0,18,18,0 +53271,636,334,0,30,30,0 +53270,636,340,0,29,29,0 +53269,636,346,4,11,11,0 +53268,636,293,0,28,28,0 +53267,636,345,9,4,4,0 +53266,636,307,0,16,16,0 +53265,636,327,6,8,8,0 +53264,636,341,2,13,13,0 +53263,636,224,6,9,9,0 +53262,636,333,0,23,23,0 +53261,636,243,1,15,15,0 +53260,636,280,0,19,19,0 +53259,636,238,9,5,5,0 +53258,636,289,0,22,22,0 +53257,636,235,19,2,2,1 +53256,636,312,0,17,17,0 +53255,636,304,6,10,10,0 +53254,636,278,8,7,7,0 +53253,636,317,4,12,12,0 +53252,636,223,8,6,6,0 +53251,636,328,33,1,1,3 +53250,636,207,9,3,3,1 +53317,637,262,0,36,36,0 +53316,637,329,0,31,31,0 +53315,637,321,0,30,30,0 +53314,637,330,0,23,23,0 +53313,637,349,0,27,27,0 +53312,637,348,0,25,25,0 +53311,637,338,0,34,34,0 +53310,637,298,0,20,20,0 +53309,637,342,0,26,26,0 +53308,637,314,0,21,21,0 +53307,637,306,1,16,16,0 +53306,637,339,0,28,28,0 +53305,637,347,0,35,35,0 +53304,637,320,0,19,19,0 +53303,637,334,0,33,33,0 +53302,637,340,0,32,32,0 +53301,637,346,4,11,11,0 +53300,637,293,0,29,29,0 +53299,637,345,9,6,6,0 +53298,637,307,0,17,17,0 +53297,637,327,6,9,9,0 +53296,637,341,3,14,14,0 +53295,637,224,10,4,4,0 +53294,637,333,0,24,24,0 +53293,637,243,3,15,15,0 +53292,637,280,3,13,13,0 +53291,637,238,15,3,3,0 +53290,637,289,0,22,22,0 +53289,637,235,19,2,2,1 +53288,637,312,0,18,18,0 +53287,637,304,6,10,10,0 +53286,637,278,8,8,8,0 +53285,637,317,4,12,12,0 +53284,637,223,8,7,7,0 +53283,637,328,42,1,1,4 +53282,637,207,9,5,5,1 +53354,638,350,0,24,24,0 +53353,638,262,0,37,37,0 +53352,638,329,0,32,32,0 +53351,638,321,0,31,31,0 +53350,638,330,0,23,23,0 +53349,638,349,0,28,28,0 +53348,638,348,0,26,26,0 +53347,638,338,0,35,35,0 +53346,638,298,0,21,21,0 +53345,638,342,0,27,27,0 +53344,638,314,1,17,17,0 +53343,638,306,1,16,16,0 +53342,638,339,0,29,29,0 +53341,638,347,0,36,36,0 +53340,638,320,0,20,20,0 +53339,638,334,0,34,34,0 +53338,638,340,0,33,33,0 +53337,638,346,4,12,12,0 +53336,638,293,0,30,30,0 +53335,638,345,9,8,8,0 +53334,638,307,0,18,18,0 +53333,638,327,12,5,5,0 +53332,638,341,3,14,14,0 +53331,638,224,10,7,7,0 +53330,638,333,0,25,25,0 +53329,638,243,3,15,15,0 +53328,638,280,3,13,13,0 +53327,638,238,17,3,3,0 +53326,638,289,0,22,22,0 +53325,638,235,19,2,2,1 +53324,638,312,0,19,19,0 +53323,638,304,6,10,10,0 +53322,638,278,8,9,9,0 +53321,638,317,4,11,11,0 +53320,638,223,12,6,6,0 +53319,638,328,51,1,1,5 +53318,638,207,12,4,4,1 +53393,639,182,0,33,33,0 +53392,639,337,0,26,26,0 +53391,639,350,0,25,25,0 +53390,639,262,0,23,23,0 +53389,639,329,0,29,29,0 +53388,639,321,0,35,35,0 +53387,639,330,0,24,24,0 +53386,639,349,0,31,31,0 +53385,639,348,0,28,28,0 +53384,639,338,0,39,39,0 +53383,639,298,0,22,22,0 +53382,639,342,0,30,30,0 +53381,639,314,5,13,13,0 +53380,639,306,1,18,18,0 +53379,639,339,0,32,32,0 +53378,639,347,0,37,37,0 +53377,639,320,0,21,21,0 +53376,639,334,0,38,38,0 +53375,639,340,0,36,36,0 +53374,639,346,13,5,5,1 +53373,639,293,0,34,34,0 +53372,639,345,9,9,9,0 +53371,639,307,0,19,19,0 +53370,639,327,12,7,7,0 +53369,639,341,3,15,15,0 +53368,639,224,16,4,4,0 +53367,639,333,0,27,27,0 +53366,639,243,3,16,16,0 +53365,639,280,4,14,14,0 +53364,639,238,17,3,3,0 +53363,639,289,2,17,17,0 +53362,639,235,19,2,2,1 +53361,639,312,0,20,20,0 +53360,639,304,6,12,12,0 +53359,639,278,8,10,10,0 +53358,639,317,7,11,11,0 +53357,639,223,12,8,8,0 +53356,639,328,51,1,1,5 +53355,639,207,12,6,6,1 +53435,640,351,0,40,40,0 +53434,640,197,0,31,31,0 +53433,640,305,3,16,16,0 +53432,640,182,0,36,36,0 +53431,640,337,0,27,27,0 +53430,640,350,0,28,28,0 +53429,640,262,0,22,22,0 +53428,640,329,0,32,32,0 +53427,640,321,0,38,38,0 +53426,640,330,0,26,26,0 +53425,640,349,0,34,34,0 +53424,640,348,0,30,30,0 +53423,640,338,0,42,42,0 +53422,640,298,0,24,24,0 +53421,640,342,0,33,33,0 +53420,640,314,5,14,14,0 +53419,640,306,1,21,21,0 +53418,640,339,0,35,35,0 +53417,640,347,0,25,25,0 +53416,640,320,9,9,9,1 +53415,640,334,0,41,41,0 +53414,640,340,0,39,39,0 +53413,640,346,13,6,6,1 +53412,640,293,0,37,37,0 +53411,640,345,9,10,10,0 +53410,640,307,2,19,19,0 +53409,640,327,16,4,4,0 +53408,640,341,3,17,17,0 +53407,640,224,16,5,5,0 +53406,640,333,0,29,29,0 +53405,640,243,3,18,18,0 +53404,640,280,4,15,15,0 +53403,640,238,23,2,2,0 +53402,640,289,2,20,20,0 +53401,640,235,19,3,3,1 +53400,640,312,0,23,23,0 +53399,640,304,6,13,13,0 +53398,640,278,9,11,11,0 +53397,640,317,7,12,12,0 +53396,640,223,12,8,8,0 +53395,640,328,51,1,1,5 +53394,640,207,12,7,7,1 +53481,641,354,0,46,46,0 +53480,641,353,0,39,39,0 +53479,641,352,0,32,32,0 +53478,641,288,4,15,15,0 +53477,641,351,0,43,43,0 +53476,641,197,0,33,33,0 +53475,641,305,3,17,17,0 +53474,641,182,0,38,38,0 +53473,641,337,0,28,28,0 +53472,641,350,0,29,29,0 +53471,641,262,0,23,23,0 +53470,641,329,0,34,34,0 +53469,641,321,0,41,41,0 +53468,641,330,0,27,27,0 +53467,641,349,0,36,36,0 +53466,641,348,0,31,31,0 +53465,641,338,0,45,45,0 +53464,641,298,0,25,25,0 +53463,641,342,0,35,35,0 +53462,641,314,5,14,14,0 +53461,641,306,1,22,22,0 +53460,641,339,0,37,37,0 +53459,641,347,0,26,26,0 +53458,641,320,9,9,9,1 +53457,641,334,0,44,44,0 +53456,641,340,0,42,42,0 +53455,641,346,13,6,6,1 +53454,641,293,0,40,40,0 +53453,641,345,9,10,10,0 +53452,641,307,2,20,20,0 +53451,641,327,17,4,4,0 +53450,641,341,3,18,18,0 +53449,641,224,16,5,5,0 +53448,641,333,0,30,30,0 +53447,641,243,3,19,19,0 +53446,641,280,4,16,16,0 +53445,641,238,29,2,2,0 +53444,641,289,2,21,21,0 +53443,641,235,19,3,3,1 +53442,641,312,0,24,24,0 +53441,641,304,9,13,13,0 +53440,641,278,9,11,11,0 +53439,641,317,9,12,12,0 +53438,641,223,12,8,8,0 +53437,641,328,60,1,1,6 +53436,641,207,12,7,7,1 +53531,642,309,0,50,50,0 +53530,642,344,0,49,49,0 +53529,642,355,0,33,33,0 +53528,642,322,0,27,27,0 +53527,642,354,0,48,48,0 +53526,642,353,0,41,41,0 +53525,642,352,0,34,34,0 +53524,642,288,4,16,16,0 +53523,642,351,0,45,45,0 +53522,642,197,0,35,35,0 +53521,642,305,3,18,18,0 +53520,642,182,0,40,40,0 +53519,642,337,0,29,29,0 +53518,642,350,0,31,31,0 +53517,642,262,0,23,23,0 +53516,642,329,0,36,36,0 +53515,642,321,0,43,43,0 +53514,642,330,0,28,28,0 +53513,642,349,0,38,38,0 +53512,642,348,0,32,32,0 +53511,642,338,0,47,47,0 +53510,642,298,0,25,25,0 +53509,642,342,0,37,37,0 +53508,642,314,5,14,14,0 +53507,642,306,1,22,22,0 +53506,642,339,0,39,39,0 +53505,642,347,0,26,26,0 +53504,642,320,9,9,9,1 +53503,642,334,0,46,46,0 +53502,642,340,0,44,44,0 +53501,642,346,19,5,5,1 +53500,642,293,0,42,42,0 +53499,642,345,9,10,10,0 +53498,642,307,5,15,15,0 +53497,642,327,26,3,3,1 +53496,642,341,3,19,19,0 +53495,642,224,16,6,6,0 +53494,642,333,0,30,30,0 +53493,642,243,3,20,20,0 +53492,642,280,4,17,17,0 +53491,642,238,33,2,2,0 +53490,642,289,2,21,21,0 +53489,642,235,19,4,4,1 +53488,642,312,0,24,24,0 +53487,642,304,9,13,13,0 +53486,642,278,9,11,11,0 +53485,642,317,9,12,12,0 +53484,642,223,13,7,7,0 +53483,642,328,62,1,1,6 +53482,642,207,12,8,8,1 +54358,643,278,0,23,23,0 +54357,643,262,0,22,22,0 +54356,643,243,0,21,21,0 +54355,643,207,0,20,20,0 +54354,643,361,0,19,19,0 +54353,643,360,0,18,18,0 +54352,643,359,0,17,17,0 +54351,643,352,0,16,16,0 +54350,643,341,0,15,15,0 +54349,643,235,0,14,14,0 +54348,643,358,0,13,13,0 +54347,643,293,0,12,12,0 +54346,643,362,0,11,11,0 +54345,643,346,0,10,10,0 +54344,643,345,0,9,9,0 +54343,643,340,0,8,8,0 +54342,643,280,0,7,7,0 +54341,643,289,1,6,6,0 +54340,643,357,2,5,5,0 +54339,643,306,3,4,4,0 +54338,643,328,4,3,3,0 +54337,643,304,6,2,2,0 +54336,643,356,9,1,1,1 +54383,644,339,0,25,25,0 +54382,644,333,0,24,24,0 +54381,644,278,0,19,19,0 +54380,644,262,0,22,22,0 +54379,644,243,0,18,18,0 +54378,644,207,4,5,5,0 +54377,644,361,0,23,23,0 +54376,644,360,6,4,4,0 +54375,644,359,2,8,8,0 +54374,644,352,0,21,21,0 +54373,644,341,0,17,17,0 +54372,644,235,0,20,20,0 +54371,644,358,0,16,16,0 +54370,644,293,0,15,15,0 +54369,644,362,0,14,14,0 +54368,644,346,0,13,13,0 +54367,644,345,0,12,12,0 +54366,644,340,0,11,11,0 +54365,644,280,0,10,10,0 +54364,644,289,4,6,6,0 +54363,644,357,2,9,9,0 +54362,644,306,3,7,7,0 +54361,644,328,13,1,1,1 +54360,644,304,6,3,3,0 +54359,644,356,9,2,2,1 +54409,645,238,0,13,13,0 +54408,645,339,0,26,26,0 +54407,645,333,0,25,25,0 +54406,645,278,0,20,20,0 +54405,645,262,0,22,22,0 +54404,645,243,0,19,19,0 +54403,645,207,4,8,8,0 +54402,645,361,0,21,21,0 +54401,645,360,6,5,5,0 +54400,645,359,2,10,10,0 +54399,645,352,0,24,24,0 +54398,645,341,0,18,18,0 +54397,645,235,0,23,23,0 +54396,645,358,9,3,3,1 +54395,645,293,0,17,17,0 +54394,645,362,0,16,16,0 +54393,645,346,0,14,14,0 +54392,645,345,1,12,12,0 +54391,645,340,0,15,15,0 +54390,645,280,4,7,7,0 +54389,645,289,6,6,6,0 +54388,645,357,2,11,11,0 +54387,645,306,3,9,9,0 +54386,645,328,13,2,2,1 +54385,645,304,9,4,4,0 +54384,645,356,15,1,1,1 +54437,646,321,0,27,27,0 +54436,646,363,3,12,12,0 +54435,646,238,0,17,17,0 +54434,646,339,0,28,28,0 +54433,646,333,0,26,26,0 +54432,646,278,6,7,7,0 +54431,646,262,0,24,24,0 +54430,646,243,2,13,13,0 +54429,646,207,4,11,11,0 +54428,646,361,0,23,23,0 +54427,646,360,6,8,8,0 +54426,646,359,2,15,15,0 +54425,646,352,0,25,25,0 +54424,646,341,0,22,22,0 +54423,646,235,0,18,18,0 +54422,646,358,9,4,4,1 +54421,646,293,0,21,21,0 +54420,646,362,0,20,20,0 +54419,646,346,0,16,16,0 +54418,646,345,10,3,3,1 +54417,646,340,0,19,19,0 +54416,646,280,5,10,10,0 +54415,646,289,6,9,9,0 +54414,646,357,2,14,14,0 +54413,646,306,7,6,6,0 +54412,646,328,13,2,2,1 +54411,646,304,9,5,5,0 +54410,646,356,15,1,1,1 +54471,647,351,0,34,34,0 +54470,647,353,0,33,33,0 +54469,647,364,0,31,31,0 +54468,647,320,0,30,30,0 +54467,647,327,0,26,26,0 +54466,647,223,3,14,14,0 +54465,647,321,0,29,29,0 +54464,647,363,3,13,13,0 +54463,647,238,0,20,20,0 +54462,647,339,0,32,32,0 +54461,647,333,0,28,28,0 +54460,647,278,6,7,7,0 +54459,647,262,0,25,25,0 +54458,647,243,2,16,16,0 +54457,647,207,4,12,12,0 +54456,647,361,0,24,24,0 +54455,647,360,6,8,8,0 +54454,647,359,2,17,17,0 +54453,647,352,0,27,27,0 +54452,647,341,1,18,18,0 +54451,647,235,4,11,11,0 +54450,647,358,18,2,2,2 +54449,647,293,0,23,23,0 +54448,647,362,0,22,22,0 +54447,647,346,0,19,19,0 +54446,647,345,10,4,4,1 +54445,647,340,0,21,21,0 +54444,647,280,5,10,10,0 +54443,647,289,6,9,9,0 +54442,647,357,2,15,15,0 +54441,647,306,9,6,6,0 +54440,647,328,19,1,1,1 +54439,647,304,9,5,5,0 +54438,647,356,15,3,3,1 +54505,648,351,0,32,32,0 +54504,648,353,0,34,34,0 +54503,648,364,1,19,19,0 +54502,648,320,0,31,31,0 +54501,648,327,0,23,23,0 +54500,648,223,3,14,14,0 +54499,648,321,0,30,30,0 +54498,648,363,3,13,13,0 +54497,648,238,0,21,21,0 +54496,648,339,0,33,33,0 +54495,648,333,0,29,29,0 +54494,648,278,12,4,4,0 +54493,648,262,0,28,28,0 +54492,648,243,2,16,16,0 +54491,648,207,4,12,12,0 +54490,648,361,0,27,27,0 +54489,648,360,6,9,9,0 +54488,648,359,2,17,17,0 +54487,648,352,0,25,25,0 +54486,648,341,1,18,18,0 +54485,648,235,4,11,11,0 +54484,648,358,27,1,1,3 +54483,648,293,0,26,26,0 +54482,648,362,0,24,24,0 +54481,648,346,0,20,20,0 +54480,648,345,10,6,6,1 +54479,648,340,0,22,22,0 +54478,648,280,7,8,8,0 +54477,648,289,6,10,10,0 +54476,648,357,2,15,15,0 +54475,648,306,9,7,7,0 +54474,648,328,19,2,2,1 +54473,648,304,12,5,5,0 +54472,648,356,19,3,3,1 +54540,649,224,0,23,23,0 +54539,649,351,0,34,34,0 +54538,649,353,0,29,29,0 +54537,649,364,1,19,19,0 +54536,649,320,0,33,33,0 +54535,649,327,0,22,22,0 +54534,649,223,6,11,11,0 +54533,649,321,0,32,32,0 +54532,649,363,3,14,14,0 +54531,649,238,0,21,21,0 +54530,649,339,0,35,35,0 +54529,649,333,0,31,31,0 +54528,649,278,14,5,5,0 +54527,649,262,0,30,30,0 +54526,649,243,2,16,16,0 +54525,649,207,4,13,13,0 +54524,649,361,0,28,28,0 +54523,649,360,6,10,10,0 +54522,649,359,2,17,17,0 +54521,649,352,0,26,26,0 +54520,649,341,1,18,18,0 +54519,649,235,4,12,12,0 +54518,649,358,36,1,1,4 +54517,649,293,0,27,27,0 +54516,649,362,0,25,25,0 +54515,649,346,0,20,20,0 +54514,649,345,10,6,6,1 +54513,649,340,0,24,24,0 +54512,649,280,7,8,8,0 +54511,649,289,7,9,9,0 +54510,649,357,2,15,15,0 +54509,649,306,9,7,7,0 +54508,649,328,19,3,3,1 +54507,649,304,16,4,4,0 +54506,649,356,25,2,2,1 +54577,650,365,0,37,37,0 +54576,650,312,0,36,36,0 +54575,650,224,3,15,15,0 +54574,650,351,0,34,34,0 +54573,650,353,0,29,29,0 +54572,650,364,1,20,20,0 +54571,650,320,0,33,33,0 +54570,650,327,0,21,21,0 +54569,650,223,6,12,12,0 +54568,650,321,0,32,32,0 +54567,650,363,3,16,16,0 +54566,650,238,0,23,23,0 +54565,650,339,0,35,35,0 +54564,650,333,0,31,31,0 +54563,650,278,14,5,5,0 +54562,650,262,0,30,30,0 +54561,650,243,4,14,14,0 +54560,650,207,4,13,13,0 +54559,650,361,0,28,28,0 +54558,650,360,6,11,11,0 +54557,650,359,2,18,18,0 +54556,650,352,0,26,26,0 +54555,650,341,1,19,19,0 +54554,650,235,10,7,7,0 +54553,650,358,45,1,1,5 +54552,650,293,0,27,27,0 +54551,650,362,0,25,25,0 +54550,650,346,0,22,22,0 +54549,650,345,10,6,6,1 +54548,650,340,0,24,24,0 +54547,650,280,8,9,9,0 +54546,650,289,7,10,10,0 +54545,650,357,2,17,17,0 +54544,650,306,9,8,8,0 +54543,650,328,19,4,4,1 +54542,650,304,20,3,3,0 +54541,650,356,25,2,2,1 +29863,17,18,95,1,1,6 +29864,17,22,77,3,3,2 +29865,17,15,32.5,8,8,0 +29866,17,10,24,10,10,0 +29867,17,4,26,9,9,0 +29868,17,3,34.5,7,7,0 +29869,17,67,6,16,16,0 +29870,17,7,2,19,19,0 +29871,17,16,5,17,17,0 +29872,17,2,19,13,13,0 +29873,17,21,8,15,15,0 +29874,17,17,69.5,4,4,2 +29875,17,20,84,2,2,4 +29876,17,9,17,14,14,0 +29877,17,8,48,6,6,1 +29878,17,13,22,11,11,0 +29879,17,12,0,21,21,0 +29880,17,6,0,20,20,0 +29881,17,5,22,12,12,0 +29882,17,1,49,5,5,2 +29883,17,153,0,24,24,0 +29884,17,154,0,23,23,0 +29885,17,69,0,25,25,0 +29886,17,24,0,22,22,0 +29887,17,155,3,18,18,0 +54615,651,314,0,34,34,0 +54614,651,365,0,38,38,0 +54613,651,312,0,37,37,0 +54612,651,224,3,16,16,0 +54611,651,351,0,35,35,0 +54610,651,353,0,32,32,0 +54609,651,364,1,21,21,0 +54608,651,320,0,26,26,0 +54607,651,327,0,22,22,0 +54606,651,223,12,8,8,0 +54605,651,321,0,33,33,0 +54604,651,363,3,15,15,0 +54603,651,238,0,24,24,0 +54602,651,339,0,36,36,0 +54601,651,333,0,29,29,0 +54600,651,278,14,6,6,0 +54599,651,262,2,18,18,0 +54598,651,243,8,10,10,0 +54597,651,207,4,14,14,0 +54596,651,361,0,31,31,0 +54595,651,360,6,13,13,0 +54594,651,359,2,19,19,0 +54593,651,352,0,27,27,0 +54592,651,341,1,20,20,0 +54591,651,235,19,4,4,1 +54590,651,358,45,1,1,5 +54589,651,293,0,30,30,0 +54588,651,362,0,28,28,0 +54587,651,346,0,23,23,0 +54586,651,345,13,7,7,1 +54585,651,340,0,25,25,0 +54584,651,280,8,11,11,0 +54583,651,289,7,12,12,0 +54582,651,357,2,17,17,0 +54581,651,306,10,9,9,0 +54580,651,328,19,5,5,1 +54579,651,304,20,3,3,0 +54578,651,356,25,2,2,1 +54655,652,330,0,40,40,0 +54654,652,347,0,38,38,0 +54653,652,314,0,33,33,0 +54652,652,365,0,39,39,0 +54651,652,312,0,37,37,0 +54650,652,224,3,16,16,0 +54649,652,351,0,35,35,0 +54648,652,353,0,32,32,0 +54647,652,364,1,22,22,0 +54646,652,320,0,27,27,0 +54645,652,327,1,20,20,0 +54644,652,223,21,5,5,1 +54643,652,321,0,34,34,0 +54642,652,363,3,15,15,0 +54641,652,238,0,24,24,0 +54640,652,339,0,36,36,0 +54639,652,333,0,25,25,0 +54638,652,278,14,7,7,0 +54637,652,262,2,18,18,0 +54636,652,243,10,10,10,0 +54635,652,207,4,14,14,0 +54634,652,361,0,31,31,0 +54633,652,360,6,13,13,0 +54632,652,359,2,19,19,0 +54631,652,352,0,28,28,0 +54630,652,341,1,21,21,0 +54629,652,235,19,6,6,1 +54628,652,358,45,1,1,5 +54627,652,293,0,30,30,0 +54626,652,362,0,29,29,0 +54625,652,346,0,23,23,0 +54624,652,345,13,9,9,1 +54623,652,340,0,26,26,0 +54622,652,280,8,11,11,0 +54621,652,289,7,12,12,0 +54620,652,357,2,17,17,0 +54619,652,306,14,8,8,0 +54618,652,328,25,2,2,1 +54617,652,304,23,4,4,0 +54616,652,356,25,3,3,1 +54695,653,330,0,40,40,0 +54694,653,347,0,38,38,0 +54693,653,314,0,33,33,0 +54692,653,365,0,39,39,0 +54691,653,312,0,37,37,0 +54690,653,224,3,16,16,0 +54689,653,351,0,35,35,0 +54688,653,353,0,32,32,0 +54687,653,364,1,23,23,0 +54686,653,320,1,22,22,0 +54685,653,327,1,21,21,0 +54684,653,223,27,3,3,1 +54683,653,321,0,34,34,0 +54682,653,363,3,15,15,0 +54681,653,238,0,25,25,0 +54680,653,339,0,36,36,0 +54679,653,333,0,26,26,0 +54678,653,278,18,7,7,0 +54677,653,262,2,19,19,0 +54676,653,243,10,10,10,0 +54675,653,207,4,14,14,0 +54674,653,361,0,31,31,0 +54673,653,360,6,13,13,0 +54672,653,359,2,20,20,0 +54671,653,352,0,28,28,0 +54670,653,341,3,17,17,0 +54669,653,235,28,2,2,2 +54668,653,358,45,1,1,5 +54667,653,293,0,30,30,0 +54666,653,362,0,29,29,0 +54665,653,346,0,24,24,0 +54664,653,345,16,8,8,1 +54663,653,340,0,27,27,0 +54662,653,280,8,11,11,0 +54661,653,289,7,12,12,0 +54660,653,357,2,18,18,0 +54659,653,306,14,9,9,0 +54658,653,328,25,4,4,1 +54657,653,304,23,6,6,0 +54656,653,356,25,5,5,1 +54738,654,367,0,42,42,0 +54737,654,366,0,38,38,0 +54736,654,317,4,16,16,0 +54735,654,330,0,43,43,0 +54734,654,347,0,36,36,0 +54733,654,314,0,35,35,0 +54732,654,365,0,41,41,0 +54731,654,312,0,40,40,0 +54730,654,224,12,10,10,1 +54729,654,351,0,37,37,0 +54728,654,353,0,34,34,0 +54727,654,364,1,24,24,0 +54726,654,320,1,23,23,0 +54725,654,327,1,22,22,0 +54724,654,223,27,3,3,1 +54723,654,321,1,25,25,0 +54722,654,363,3,17,17,0 +54721,654,238,0,27,27,0 +54720,654,339,0,39,39,0 +54719,654,333,0,28,28,0 +54718,654,278,20,8,8,0 +54717,654,262,2,20,20,0 +54716,654,243,10,11,11,0 +54715,654,207,4,15,15,0 +54714,654,361,0,33,33,0 +54713,654,360,6,14,14,0 +54712,654,359,2,21,21,0 +54711,654,352,0,30,30,0 +54710,654,341,3,18,18,0 +54709,654,235,31,2,2,2 +54708,654,358,45,1,1,5 +54707,654,293,0,32,32,0 +54706,654,362,0,31,31,0 +54705,654,346,0,26,26,0 +54704,654,345,22,7,7,1 +54703,654,340,0,29,29,0 +54702,654,280,8,12,12,0 +54701,654,289,7,13,13,0 +54700,654,357,2,19,19,0 +54699,654,306,14,9,9,0 +54698,654,328,25,4,4,1 +54697,654,304,23,6,6,0 +54696,654,356,25,5,5,1 +54781,655,367,0,42,42,0 +54780,655,366,0,38,38,0 +54779,655,317,4,15,15,0 +54778,655,330,0,43,43,0 +54777,655,347,0,36,36,0 +54776,655,314,0,35,35,0 +54775,655,365,0,41,41,0 +54774,655,312,0,40,40,0 +54773,655,224,12,10,10,1 +54772,655,351,0,37,37,0 +54771,655,353,0,34,34,0 +54770,655,364,1,24,24,0 +54769,655,320,1,23,23,0 +54768,655,327,1,22,22,0 +54767,655,223,33,3,3,1 +54766,655,321,1,25,25,0 +54765,655,363,3,17,17,0 +54764,655,238,0,27,27,0 +54763,655,339,0,39,39,0 +54762,655,333,0,28,28,0 +54761,655,278,23,8,8,0 +54760,655,262,2,20,20,0 +54759,655,243,10,11,11,0 +54758,655,207,4,16,16,0 +54757,655,361,0,33,33,0 +54756,655,360,6,14,14,0 +54755,655,359,2,21,21,0 +54754,655,352,0,30,30,0 +54753,655,341,3,18,18,0 +54752,655,235,40,2,2,3 +54751,655,358,45,1,1,5 +54750,655,293,0,32,32,0 +54749,655,362,0,31,31,0 +54748,655,346,0,26,26,0 +54747,655,345,23,7,7,1 +54746,655,340,0,29,29,0 +54745,655,280,8,12,12,0 +54744,655,289,7,13,13,0 +54743,655,357,2,19,19,0 +54742,655,306,16,9,9,0 +54741,655,328,25,5,5,1 +54740,655,304,27,4,4,0 +54739,655,356,25,6,6,1 +52889,656,369,0,18,18,0 +52888,656,235,0,17,17,0 +52887,656,340,0,16,16,0 +52886,656,207,0,15,15,0 +52885,656,356,0,14,14,0 +52884,656,278,0,13,13,0 +52883,656,345,0,12,12,0 +52882,656,341,0,11,11,0 +52881,656,358,0,10,10,0 +52880,656,362,0,9,9,0 +52879,656,368,0,8,8,0 +52878,656,262,0,7,7,0 +52877,656,306,1,6,6,0 +52876,656,360,2,5,5,0 +52875,656,346,3,4,4,0 +52874,656,304,4,3,3,0 +52873,656,289,6,2,2,0 +52872,656,328,9,1,1,1 +52908,657,361,0,16,16,0 +52907,657,369,0,19,19,0 +52906,657,235,1,8,8,0 +52905,657,340,0,18,18,0 +52904,657,207,0,17,17,0 +52903,657,356,0,13,13,0 +52902,657,278,0,12,12,0 +52901,657,345,0,11,11,0 +52900,657,341,2,7,7,0 +52899,657,358,0,15,15,0 +52898,657,362,0,14,14,0 +52897,657,368,0,10,10,0 +52896,657,262,0,9,9,0 +52895,657,306,5,5,5,0 +52894,657,360,8,2,2,0 +52893,657,346,3,6,6,0 +52892,657,304,7,3,3,0 +52891,657,289,6,4,4,0 +52890,657,328,18,1,1,2 +52930,658,351,0,19,19,0 +52929,658,350,0,12,12,0 +52928,658,370,3,8,8,0 +52927,658,361,6,6,6,0 +52926,658,369,0,22,22,0 +52925,658,235,1,10,10,0 +52924,658,340,0,21,21,0 +52923,658,207,0,20,20,0 +52922,658,356,0,16,16,0 +52921,658,278,0,15,15,0 +52920,658,345,0,14,14,0 +52919,658,341,2,9,9,0 +52918,658,358,0,18,18,0 +52917,658,362,0,17,17,0 +52916,658,368,0,13,13,0 +52915,658,262,0,11,11,0 +52914,658,306,5,7,7,0 +52913,658,360,10,3,3,0 +52912,658,346,7,5,5,0 +52911,658,304,8,4,4,0 +52910,658,289,15,2,2,1 +52909,658,328,18,1,1,2 +52952,659,351,0,19,19,0 +52951,659,350,0,13,13,0 +52950,659,370,3,9,9,0 +52949,659,361,6,6,6,0 +52948,659,369,0,22,22,0 +52947,659,235,3,10,10,0 +52946,659,340,0,21,21,0 +52945,659,207,0,20,20,0 +52944,659,356,1,12,12,0 +52943,659,278,4,8,8,0 +52942,659,345,0,16,16,0 +52941,659,341,2,11,11,0 +52940,659,358,0,18,18,0 +52939,659,362,0,17,17,0 +52938,659,368,0,15,15,0 +52937,659,262,0,14,14,0 +52936,659,306,5,7,7,0 +52935,659,360,10,5,5,0 +52934,659,346,13,3,3,0 +52933,659,304,11,4,4,0 +52932,659,289,15,2,2,1 +52931,659,328,27,1,1,3 +52975,660,357,0,20,20,0 +52974,660,351,0,14,14,0 +52973,660,350,2,11,11,0 +52972,660,370,3,10,10,0 +52971,660,361,6,8,8,0 +52970,660,369,0,23,23,0 +52969,660,235,7,7,7,0 +52968,660,340,0,22,22,0 +52967,660,207,0,21,21,0 +52966,660,356,1,13,13,0 +52965,660,278,4,9,9,0 +52964,660,345,0,17,17,0 +52963,660,341,2,12,12,0 +52962,660,358,0,19,19,0 +52961,660,362,0,18,18,0 +52960,660,368,0,16,16,0 +52959,660,262,0,15,15,0 +52958,660,306,11,5,5,0 +52957,660,360,13,4,4,0 +52956,660,346,13,3,3,0 +52955,660,304,11,6,6,0 +52954,660,289,16,2,2,1 +52953,660,328,36,1,1,4 +53000,661,321,0,23,23,0 +52999,661,347,0,22,22,0 +52998,661,357,0,18,18,0 +52997,661,351,0,15,15,0 +52996,661,350,3,12,12,0 +52995,661,370,3,11,11,0 +52994,661,361,8,8,8,0 +52993,661,369,0,25,25,0 +52992,661,235,13,5,5,0 +52991,661,340,0,24,24,0 +52990,661,207,0,21,21,0 +52989,661,356,1,14,14,0 +52988,661,278,4,9,9,0 +52987,661,345,0,19,19,0 +52986,661,341,2,13,13,0 +52985,661,358,3,10,10,0 +52984,661,362,0,20,20,0 +52983,661,368,0,17,17,0 +52982,661,262,0,16,16,0 +52981,661,306,11,6,6,0 +52980,661,360,17,2,2,0 +52979,661,346,13,4,4,0 +52978,661,304,11,7,7,0 +52977,661,289,16,3,3,1 +52976,661,328,45,1,1,5 +53025,662,321,0,23,23,0 +53024,662,347,0,21,21,0 +53023,662,357,0,18,18,0 +53022,662,351,0,16,16,0 +53021,662,350,3,12,12,0 +53020,662,370,3,11,11,0 +53019,662,361,8,8,8,0 +53018,662,369,0,25,25,0 +53017,662,235,22,2,2,1 +53016,662,340,0,24,24,0 +53015,662,207,0,22,22,0 +53014,662,356,1,14,14,0 +53013,662,278,4,9,9,0 +53012,662,345,0,19,19,0 +53011,662,341,2,13,13,0 +53010,662,358,3,10,10,0 +53009,662,362,0,20,20,0 +53008,662,368,0,17,17,0 +53007,662,262,0,15,15,0 +53006,662,306,12,6,6,0 +53005,662,360,21,3,3,0 +53004,662,346,15,5,5,0 +53003,662,304,11,7,7,0 +53002,662,289,19,4,4,1 +53001,662,328,51,1,1,5 +53050,663,321,0,23,23,0 +53049,663,347,0,21,21,0 +53048,663,357,0,19,19,0 +53047,663,351,0,17,17,0 +53046,663,350,3,12,12,0 +53045,663,370,3,11,11,0 +53044,663,361,10,8,8,0 +53043,663,369,0,25,25,0 +53042,663,235,22,3,3,1 +53041,663,340,0,24,24,0 +53040,663,207,0,22,22,0 +53039,663,356,1,15,15,0 +53038,663,278,4,10,10,0 +53037,663,345,1,14,14,0 +53036,663,341,2,13,13,0 +53035,663,358,9,9,9,0 +53034,663,362,0,20,20,0 +53033,663,368,0,18,18,0 +53032,663,262,0,16,16,0 +53031,663,306,16,5,5,0 +53030,663,360,24,2,2,0 +53029,663,346,15,6,6,0 +53028,663,304,11,7,7,0 +53027,663,289,19,4,4,1 +53026,663,328,60,1,1,6 +53079,664,372,0,28,28,0 +53078,664,343,0,22,22,0 +53077,664,353,0,19,19,0 +53076,664,359,1,16,16,0 +53075,664,321,0,26,26,0 +53074,664,347,0,24,24,0 +53073,664,357,0,21,21,0 +53072,664,351,0,18,18,0 +53071,664,350,3,13,13,0 +53070,664,370,3,12,12,0 +53069,664,361,10,9,9,0 +53068,664,369,0,29,29,0 +53067,664,235,31,2,2,2 +53066,664,340,0,27,27,0 +53065,664,207,0,25,25,0 +53064,664,356,7,10,10,0 +53063,664,278,4,11,11,0 +53062,664,345,1,15,15,0 +53061,664,341,2,14,14,0 +53060,664,358,13,7,7,0 +53059,664,362,0,23,23,0 +53058,664,368,0,20,20,0 +53057,664,262,0,17,17,0 +53056,664,306,19,5,5,0 +53055,664,360,26,3,3,0 +53054,664,346,15,6,6,0 +53053,664,304,11,8,8,0 +53052,664,289,19,4,4,1 +53051,664,328,60,1,1,6 +53109,665,352,0,25,25,0 +53108,665,372,0,29,29,0 +53107,665,343,0,22,22,0 +53106,665,353,0,19,19,0 +53105,665,359,1,17,17,0 +53104,665,321,0,27,27,0 +53103,665,347,0,24,24,0 +53102,665,357,0,21,21,0 +53101,665,351,1,16,16,0 +53100,665,350,3,14,14,0 +53099,665,370,3,13,13,0 +53098,665,361,16,7,7,0 +53097,665,369,0,30,30,0 +53096,665,235,31,2,2,2 +53095,665,340,0,28,28,0 +53094,665,207,0,26,26,0 +53093,665,356,10,10,10,0 +53092,665,278,4,12,12,0 +53091,665,345,3,15,15,0 +53090,665,341,6,11,11,0 +53089,665,358,22,4,4,1 +53088,665,362,0,23,23,0 +53087,665,368,0,20,20,0 +53086,665,262,0,18,18,0 +53085,665,306,19,6,6,0 +53084,665,360,26,3,3,0 +53083,665,346,15,8,8,0 +53082,665,304,11,9,9,0 +53081,665,289,19,5,5,1 +53080,665,328,60,1,1,6 +53139,666,352,0,24,24,0 +53138,666,372,0,29,29,0 +53137,666,343,0,22,22,0 +53136,666,353,0,19,19,0 +53135,666,359,1,18,18,0 +53134,666,321,0,27,27,0 +53133,666,347,0,25,25,0 +53132,666,357,0,21,21,0 +53131,666,351,1,16,16,0 +53130,666,350,3,14,14,0 +53129,666,370,3,13,13,0 +53128,666,361,16,8,8,0 +53127,666,369,0,30,30,0 +53126,666,235,37,2,2,2 +53125,666,340,0,28,28,0 +53124,666,207,0,26,26,0 +53123,666,356,14,10,10,0 +53122,666,278,4,12,12,0 +53121,666,345,3,15,15,0 +53120,666,341,6,11,11,0 +53119,666,358,22,4,4,1 +53118,666,362,0,23,23,0 +53117,666,368,0,20,20,0 +53116,666,262,1,17,17,0 +53115,666,306,21,5,5,0 +53114,666,360,26,3,3,0 +53113,666,346,15,9,9,0 +53112,666,304,20,6,6,1 +53111,666,289,19,7,7,1 +53110,666,328,63,1,1,6 +53554,667,375,0,23,23,0 +53553,667,293,0,22,22,0 +53552,667,312,0,21,21,0 +53551,667,374,0,20,20,0 +53550,667,333,0,19,19,0 +53549,667,356,0,18,18,0 +53548,667,345,0,17,17,0 +53547,667,369,0,16,16,0 +53546,667,368,0,15,15,0 +53545,667,328,0,14,14,0 +53544,667,347,0,13,13,0 +53543,667,235,0,12,12,0 +53542,667,364,0,11,11,0 +53541,667,334,0,10,10,0 +53540,667,340,0,9,9,0 +53539,667,341,0,8,8,0 +53538,667,346,0,7,7,0 +53537,667,306,1,6,6,0 +53536,667,304,2,5,5,0 +53535,667,278,3,4,4,0 +53534,667,358,4,3,3,0 +53533,667,289,6,2,2,0 +53532,667,373,9,1,1,1 +53579,668,361,0,13,13,0 +53578,668,360,0,12,12,0 +53577,668,375,3,7,7,0 +53576,668,293,0,25,25,0 +53575,668,312,4,5,5,0 +53574,668,374,0,24,24,0 +53573,668,333,0,23,23,0 +53572,668,356,0,19,19,0 +53571,668,345,0,15,15,0 +53570,668,369,0,22,22,0 +53569,668,368,0,21,21,0 +53568,668,328,0,20,20,0 +53567,668,347,0,18,18,0 +53566,668,235,0,17,17,0 +53565,668,364,0,16,16,0 +53564,668,334,0,14,14,0 +53563,668,340,0,11,11,0 +53562,668,341,0,10,10,0 +53561,668,346,0,9,9,0 +53560,668,306,3,8,8,0 +53559,668,304,8,3,3,0 +53558,668,278,3,6,6,0 +53557,668,358,4,4,4,0 +53556,668,289,15,1,1,1 +53555,668,373,9,2,2,1 +53609,669,351,0,27,27,0 +53608,669,262,0,25,25,0 +53607,669,359,0,22,22,0 +53606,669,376,4,8,8,0 +53605,669,370,6,4,4,0 +53604,669,361,0,16,16,0 +53603,669,360,0,14,14,0 +53602,669,375,6,5,5,0 +53601,669,293,0,30,30,0 +53600,669,312,4,7,7,0 +53599,669,374,0,29,29,0 +53598,669,333,0,28,28,0 +53597,669,356,0,20,20,0 +53596,669,345,0,15,15,0 +53595,669,369,0,26,26,0 +53594,669,368,0,24,24,0 +53593,669,328,0,23,23,0 +53592,669,347,0,21,21,0 +53591,669,235,0,19,19,0 +53590,669,364,0,18,18,0 +53589,669,334,0,17,17,0 +53588,669,340,0,13,13,0 +53587,669,341,0,12,12,0 +53586,669,346,0,11,11,0 +53585,669,306,3,10,10,0 +53584,669,304,10,2,2,0 +53583,669,278,3,9,9,0 +53582,669,358,4,6,6,0 +53581,669,289,24,1,1,2 +53580,669,373,9,3,3,1 +53639,670,351,0,27,27,0 +53638,670,262,2,15,15,0 +53637,670,359,0,24,24,0 +53636,670,376,5,8,8,0 +53635,670,370,6,6,6,0 +53634,670,361,0,19,19,0 +53633,670,360,9,3,3,1 +53632,670,375,6,7,7,0 +53631,670,293,0,30,30,0 +53630,670,312,4,11,11,0 +53629,670,374,0,29,29,0 +53628,670,333,0,28,28,0 +53627,670,356,0,22,22,0 +53626,670,345,6,5,5,0 +53625,670,369,0,26,26,0 +53624,670,368,0,25,25,0 +53623,670,328,3,13,13,0 +53622,670,347,0,23,23,0 +53621,670,235,4,9,9,0 +53620,670,364,0,21,21,0 +53619,670,334,0,20,20,0 +53618,670,340,0,18,18,0 +53617,670,341,0,17,17,0 +53616,670,346,0,16,16,0 +53615,670,306,3,14,14,0 +53614,670,304,10,2,2,0 +53613,670,278,3,12,12,0 +53612,670,358,4,10,10,0 +53611,670,289,24,1,1,2 +53610,670,373,9,4,4,1 +53669,671,351,2,16,16,0 +53668,671,262,2,15,15,0 +53667,671,359,0,25,25,0 +53666,671,376,5,11,11,0 +53665,671,370,6,9,9,0 +53664,671,361,0,21,21,0 +53663,671,360,9,5,5,1 +53662,671,375,6,10,10,0 +53661,671,293,0,30,30,0 +53660,671,312,4,13,13,0 +53659,671,374,0,29,29,0 +53658,671,333,0,28,28,0 +53657,671,356,0,24,24,0 +53656,671,345,10,3,3,0 +53655,671,369,0,27,27,0 +53654,671,368,0,26,26,0 +53653,671,328,12,2,2,1 +53652,671,347,0,19,19,0 +53651,671,235,7,8,8,0 +53650,671,364,0,23,23,0 +53649,671,334,0,22,22,0 +53648,671,340,0,20,20,0 +53647,671,341,0,18,18,0 +53646,671,346,0,17,17,0 +53645,671,306,9,7,7,0 +53644,671,304,10,4,4,0 +53643,671,278,4,14,14,0 +53642,671,358,4,12,12,0 +53641,671,289,24,1,1,2 +53640,671,373,9,6,6,1 +53701,672,377,0,29,29,0 +53700,672,350,3,16,16,0 +53699,672,351,2,18,18,0 +53698,672,262,2,17,17,0 +53697,672,359,0,26,26,0 +53696,672,376,5,12,12,0 +53695,672,370,6,9,9,0 +53694,672,361,1,19,19,0 +53693,672,360,9,6,6,1 +53692,672,375,6,11,11,0 +53691,672,293,0,32,32,0 +53690,672,312,4,14,14,0 +53689,672,374,0,31,31,0 +53688,672,333,0,30,30,0 +53687,672,356,0,25,25,0 +53686,672,345,10,5,5,0 +53685,672,369,0,28,28,0 +53684,672,368,0,27,27,0 +53683,672,328,16,3,3,1 +53682,672,347,0,21,21,0 +53681,672,235,16,2,2,1 +53680,672,364,0,24,24,0 +53679,672,334,0,23,23,0 +53678,672,340,0,22,22,0 +53677,672,341,6,10,10,0 +53676,672,346,0,20,20,0 +53675,672,306,9,8,8,0 +53674,672,304,12,4,4,0 +53673,672,278,4,15,15,0 +53672,672,358,4,13,13,0 +53671,672,289,24,1,1,2 +53670,672,373,9,7,7,1 +53734,673,378,0,26,26,0 +53733,673,377,0,30,30,0 +53732,673,350,3,17,17,0 +53731,673,351,2,19,19,0 +53730,673,262,2,18,18,0 +53729,673,359,0,27,27,0 +53728,673,376,5,14,14,0 +53727,673,370,6,12,12,0 +53726,673,361,1,20,20,0 +53725,673,360,9,8,8,1 +53724,673,375,6,13,13,0 +53723,673,293,0,33,33,0 +53722,673,312,4,16,16,0 +53721,673,374,0,32,32,0 +53720,673,333,0,31,31,0 +53719,673,356,0,25,25,0 +53718,673,345,10,5,5,0 +53717,673,369,0,29,29,0 +53716,673,368,0,28,28,0 +53715,673,328,17,3,3,1 +53714,673,347,0,21,21,0 +53713,673,235,20,2,2,1 +53712,673,364,0,24,24,0 +53711,673,334,0,23,23,0 +53710,673,340,0,22,22,0 +53709,673,341,8,11,11,0 +53708,673,346,9,7,7,1 +53707,673,306,9,10,10,0 +53706,673,304,15,4,4,0 +53705,673,278,10,6,6,0 +53704,673,358,4,15,15,0 +53703,673,289,24,1,1,2 +53702,673,373,9,9,9,1 +53769,674,379,0,26,26,0 +53768,674,365,0,25,25,0 +53767,674,378,0,28,28,0 +53766,674,377,0,32,32,0 +53765,674,350,3,17,17,0 +53764,674,351,2,19,19,0 +53763,674,262,2,18,18,0 +53762,674,359,0,29,29,0 +53761,674,376,5,15,15,0 +53760,674,370,6,13,13,0 +53759,674,361,1,21,21,0 +53758,674,360,9,8,8,1 +53757,674,375,6,14,14,0 +53756,674,293,0,35,35,0 +53755,674,312,4,16,16,0 +53754,674,374,0,34,34,0 +53753,674,333,0,33,33,0 +53752,674,356,2,20,20,0 +53751,674,345,11,5,5,0 +53750,674,369,0,31,31,0 +53749,674,368,0,30,30,0 +53748,674,328,26,2,2,2 +53747,674,347,0,22,22,0 +53746,674,235,23,3,3,1 +53745,674,364,0,23,23,0 +53744,674,334,0,27,27,0 +53743,674,340,0,24,24,0 +53742,674,341,8,11,11,0 +53741,674,346,9,7,7,1 +53740,674,306,9,10,10,0 +53739,674,304,15,4,4,0 +53738,674,278,10,6,6,0 +53737,674,358,8,12,12,0 +53736,674,289,30,1,1,2 +53735,674,373,9,9,9,1 +53807,675,380,0,37,37,0 +53806,675,321,0,34,34,0 +53805,675,322,0,28,28,0 +53804,675,379,0,27,27,0 +53803,675,365,0,26,26,0 +53802,675,378,0,30,30,0 +53801,675,377,0,33,33,0 +53800,675,350,3,19,19,0 +53799,675,351,2,22,22,0 +53798,675,262,2,20,20,0 +53797,675,359,6,14,14,0 +53796,675,376,5,16,16,0 +53795,675,370,6,13,13,0 +53794,675,361,4,18,18,0 +53793,675,360,9,9,9,1 +53792,675,375,6,15,15,0 +53791,675,293,0,38,38,0 +53790,675,312,4,17,17,0 +53789,675,374,0,36,36,0 +53788,675,333,0,35,35,0 +53787,675,356,2,21,21,0 +53786,675,345,11,5,5,0 +53785,675,369,0,32,32,0 +53784,675,368,0,31,31,0 +53783,675,328,26,3,3,2 +53782,675,347,1,23,23,0 +53781,675,235,27,2,2,1 +53780,675,364,0,24,24,0 +53779,675,334,0,29,29,0 +53778,675,340,0,25,25,0 +53777,675,341,8,11,11,0 +53776,675,346,9,8,8,1 +53775,675,306,11,6,6,0 +53774,675,304,24,4,4,1 +53773,675,278,10,7,7,0 +53772,675,358,8,12,12,0 +53771,675,289,30,1,1,2 +53770,675,373,9,10,10,1 +53847,676,343,0,35,35,0 +53846,676,280,0,30,30,0 +53845,676,380,0,39,39,0 +53844,676,321,0,36,36,0 +53843,676,322,0,28,28,0 +53842,676,379,0,27,27,0 +53841,676,365,0,26,26,0 +53840,676,378,0,31,31,0 +53839,676,377,0,34,34,0 +53838,676,350,5,17,17,0 +53837,676,351,2,22,22,0 +53836,676,262,2,20,20,0 +53835,676,359,6,14,14,0 +53834,676,376,5,16,16,0 +53833,676,370,6,13,13,0 +53832,676,361,4,19,19,0 +53831,676,360,15,5,5,1 +53830,676,375,6,15,15,0 +53829,676,293,0,40,40,0 +53828,676,312,4,18,18,0 +53827,676,374,0,38,38,0 +53826,676,333,0,37,37,0 +53825,676,356,2,21,21,0 +53824,676,345,15,6,6,0 +53823,676,369,0,33,33,0 +53822,676,368,0,32,32,0 +53821,676,328,27,3,3,2 +53820,676,347,1,23,23,0 +53819,676,235,27,4,4,1 +53818,676,364,0,24,24,0 +53817,676,334,0,29,29,0 +53816,676,340,0,25,25,0 +53815,676,341,8,11,11,0 +53814,676,346,9,9,9,1 +53813,676,306,11,7,7,0 +53812,676,304,33,2,2,2 +53811,676,278,10,8,8,0 +53810,676,358,8,12,12,0 +53809,676,289,33,1,1,2 +53808,676,373,9,10,10,1 +53889,677,207,0,36,36,0 +53888,677,381,0,35,35,0 +53887,677,343,0,37,37,0 +53886,677,280,0,30,30,0 +53885,677,380,0,41,41,0 +53884,677,321,0,38,38,0 +53883,677,322,0,28,28,0 +53882,677,379,0,27,27,0 +53881,677,365,0,26,26,0 +53880,677,378,0,31,31,0 +53879,677,377,0,34,34,0 +53878,677,350,5,17,17,0 +53877,677,351,2,23,23,0 +53876,677,262,2,21,21,0 +53875,677,359,6,14,14,0 +53874,677,376,5,16,16,0 +53873,677,370,6,13,13,0 +53872,677,361,4,19,19,0 +53871,677,360,16,5,5,1 +53870,677,375,6,15,15,0 +53869,677,293,0,42,42,0 +53868,677,312,4,18,18,0 +53867,677,374,0,40,40,0 +53866,677,333,0,39,39,0 +53865,677,356,2,22,22,0 +53864,677,345,15,6,6,0 +53863,677,369,0,33,33,0 +53862,677,368,0,32,32,0 +53861,677,328,36,2,2,3 +53860,677,347,1,24,24,0 +53859,677,235,27,4,4,1 +53858,677,364,3,20,20,0 +53857,677,334,0,29,29,0 +53856,677,340,0,25,25,0 +53855,677,341,12,7,7,0 +53854,677,346,11,8,8,1 +53853,677,306,11,9,9,0 +53852,677,304,33,3,3,2 +53851,677,278,10,10,10,0 +53850,677,358,8,12,12,0 +53849,677,289,39,1,1,2 +53848,677,373,9,11,11,1 +53932,678,382,0,35,35,0 +53931,678,207,0,37,37,0 +53930,678,381,0,36,36,0 +53929,678,343,0,38,38,0 +53928,678,280,0,25,25,0 +53927,678,380,0,42,42,0 +53926,678,321,0,39,39,0 +53925,678,322,0,29,29,0 +53924,678,379,0,28,28,0 +53923,678,365,0,27,27,0 +53922,678,378,0,31,31,0 +53921,678,377,0,34,34,0 +53920,678,350,5,18,18,0 +53919,678,351,2,24,24,0 +53918,678,262,6,15,15,0 +53917,678,359,6,14,14,0 +53916,678,376,5,17,17,0 +53915,678,370,6,13,13,0 +53914,678,361,4,20,20,0 +53913,678,360,22,5,5,1 +53912,678,375,6,16,16,0 +53911,678,293,0,43,43,0 +53910,678,312,4,19,19,0 +53909,678,374,0,41,41,0 +53908,678,333,0,40,40,0 +53907,678,356,2,23,23,0 +53906,678,345,18,6,6,0 +53905,678,369,0,33,33,0 +53904,678,368,0,32,32,0 +53903,678,328,36,2,2,3 +53902,678,347,3,22,22,0 +53901,678,235,27,4,4,1 +53900,678,364,3,21,21,0 +53899,678,334,0,30,30,0 +53898,678,340,0,26,26,0 +53897,678,341,12,8,8,0 +53896,678,346,12,7,7,1 +53895,678,306,11,9,9,0 +53894,678,304,33,3,3,2 +53893,678,278,10,10,10,0 +53892,678,358,8,12,12,0 +53891,678,289,48,1,1,3 +53890,678,373,9,11,11,1 +52526,679,328,0,18,18,0 +52525,679,289,0,17,17,0 +52524,679,373,0,16,16,0 +52523,679,347,0,15,15,0 +52522,679,374,0,14,14,0 +52521,679,358,0,13,13,0 +52520,679,346,0,12,12,0 +52519,679,364,0,11,11,0 +52518,679,361,0,10,10,0 +52517,679,368,0,9,9,0 +52516,679,384,0,8,8,0 +52515,679,293,0,7,7,0 +52512,679,304,3,4,4,0 +52510,679,340,6,2,2,0 +52550,680,386,0,24,24,0 +52549,680,306,0,23,23,0 +52548,680,359,0,22,22,0 +52547,680,385,0,11,11,0 +52546,680,360,3,7,7,0 +52545,680,278,4,6,6,0 +52544,680,328,0,19,19,0 +52543,680,289,6,3,3,0 +52542,680,373,0,15,15,0 +52541,680,347,0,21,21,0 +52540,680,374,1,9,9,0 +52539,680,358,0,20,20,0 +52538,680,346,0,17,17,0 +52537,680,364,0,18,18,0 +52536,680,361,0,13,13,0 +52535,680,368,0,16,16,0 +52534,680,384,0,14,14,0 +52533,680,293,0,12,12,0 +52531,680,383,2,8,8,0 +52530,680,304,12,1,1,1 +52528,680,340,6,4,4,0 +52577,681,388,0,14,14,0 +52576,681,375,1,13,13,0 +52575,681,387,2,11,11,0 +52574,681,386,0,27,27,0 +52573,681,306,0,26,26,0 +52572,681,359,0,25,25,0 +52571,681,385,0,16,16,0 +52570,681,360,3,9,9,0 +52568,681,328,0,22,22,0 +52567,681,289,6,6,6,0 +52566,681,373,9,3,3,1 +52565,681,347,0,24,24,0 +52564,681,374,1,12,12,0 +52563,681,358,0,23,23,0 +52562,681,346,0,15,15,0 +52561,681,364,0,21,21,0 +52560,681,361,0,18,18,0 +52559,681,368,0,20,20,0 +52558,681,384,0,19,19,0 +52554,681,304,16,1,1,1 +52553,681,341,4,8,8,0 +52552,681,340,6,7,7,0 +52605,682,389,0,19,19,0 +52604,682,388,0,18,18,0 +52603,682,375,1,16,16,0 +52602,682,387,2,15,15,0 +52601,682,386,0,28,28,0 +52600,682,306,0,27,27,0 +52599,682,359,0,26,26,0 +52597,682,360,3,12,12,0 +52595,682,328,6,7,7,0 +52594,682,289,6,8,8,0 +52593,682,373,10,4,4,1 +52591,682,374,3,13,13,0 +52590,682,358,3,11,11,0 +52589,682,346,0,17,17,0 +52588,682,364,9,5,5,1 +52587,682,361,0,22,22,0 +52585,682,384,0,23,23,0 +52582,682,383,2,14,14,0 +52581,682,304,16,1,1,1 +52579,682,340,6,9,9,0 +52633,683,389,0,19,19,0 +52632,683,388,2,15,15,0 +52631,683,375,1,18,18,0 +52630,683,387,2,17,17,0 +52629,683,386,0,28,28,0 +52628,683,306,0,27,27,0 +52627,683,359,0,26,26,0 +52626,683,385,0,20,20,0 +52624,683,278,11,4,4,0 +52622,683,289,6,8,8,0 +52621,683,373,10,5,5,1 +52620,683,347,0,25,25,0 +52618,683,358,3,12,12,0 +52617,683,346,3,11,11,0 +52616,683,364,9,7,7,1 +52615,683,361,0,22,22,0 +52614,683,368,0,24,24,0 +52613,683,384,0,23,23,0 +52611,683,356,16,2,2,1 +52609,683,304,22,1,1,1 +52608,683,341,4,10,10,0 +52607,683,340,6,9,9,0 +52664,684,351,0,28,28,0 +52663,684,390,0,20,20,0 +52662,684,322,0,19,19,0 +52661,684,389,0,21,21,0 +52660,684,388,2,15,15,0 +52659,684,375,1,18,18,0 +52658,684,387,2,17,17,0 +52657,684,386,0,31,31,0 +52656,684,306,0,30,30,0 +52655,684,359,0,29,29,0 +52654,684,385,0,22,22,0 +52653,684,360,3,13,13,0 +52652,684,278,15,4,4,0 +52651,684,328,10,6,6,0 +52650,684,289,6,8,8,0 +52649,684,373,19,2,2,2 +52648,684,347,0,27,27,0 +52647,684,374,3,14,14,0 +52646,684,358,3,12,12,0 +52645,684,346,3,11,11,0 +52644,684,364,9,7,7,1 +52643,684,361,0,24,24,0 +52642,684,368,0,26,26,0 +52641,684,384,0,25,25,0 +52640,684,293,0,23,23,0 +52638,684,383,2,16,16,0 +52637,684,304,28,1,1,1 +52635,684,340,6,9,9,0 +52701,685,377,0,37,37,0 +52700,685,379,0,36,36,0 +52699,685,365,0,33,33,0 +52698,685,391,0,30,30,0 +52697,685,235,0,29,29,0 +52696,685,262,0,21,21,0 +52695,685,351,0,31,31,0 +52694,685,390,0,22,22,0 +52693,685,322,0,23,23,0 +52692,685,389,1,20,20,0 +52691,685,388,2,15,15,0 +52690,685,375,1,19,19,0 +52689,685,387,2,17,17,0 +52688,685,386,0,35,35,0 +52687,685,306,0,34,34,0 +52686,685,359,0,32,32,0 +52685,685,385,0,24,24,0 +52684,685,360,3,13,13,0 +52683,685,278,19,4,4,0 +52682,685,328,10,6,6,0 +52681,685,289,6,9,9,0 +52680,685,373,19,3,3,2 +52679,685,347,2,18,18,0 +52678,685,374,3,14,14,0 +52677,685,358,3,12,12,0 +52676,685,346,3,11,11,0 +52675,685,364,9,7,7,1 +52674,685,361,0,26,26,0 +52672,685,384,0,27,27,0 +52670,685,356,25,2,2,1 +52668,685,304,37,1,1,2 +52666,685,340,6,10,10,0 +52742,686,393,0,38,38,0 +52741,686,371,0,34,34,0 +52740,686,392,0,25,25,0 +52739,686,370,0,24,24,0 +52738,686,377,0,41,41,0 +52737,686,379,0,40,40,0 +52736,686,365,0,36,36,0 +52735,686,391,0,32,32,0 +52734,686,235,0,31,31,0 +52733,686,262,0,21,21,0 +52732,686,351,0,33,33,0 +52731,686,390,0,22,22,0 +52730,686,322,0,23,23,0 +52729,686,389,1,20,20,0 +52728,686,388,2,15,15,0 +52727,686,375,1,19,19,0 +52726,686,387,2,17,17,0 +52725,686,386,0,39,39,0 +52724,686,306,0,37,37,0 +52723,686,359,0,35,35,0 +52722,686,385,0,26,26,0 +52720,686,278,20,3,3,0 +52719,686,328,10,7,7,0 +52717,686,373,19,4,4,2 +52716,686,347,2,18,18,0 +52715,686,374,5,11,11,0 +52714,686,358,3,14,14,0 +52713,686,346,3,12,12,0 +52712,686,364,13,6,6,1 +52711,686,361,0,28,28,0 +52710,686,368,0,30,30,0 +52708,686,293,0,27,27,0 +52705,686,304,43,1,1,2 +52703,686,340,6,10,10,0 +52784,687,394,0,32,32,0 +52783,687,393,0,39,39,0 +52782,687,371,0,35,35,0 +52781,687,392,0,26,26,0 +52780,687,370,0,25,25,0 +52779,687,377,0,42,42,0 +52778,687,379,0,41,41,0 +52777,687,365,0,37,37,0 +52776,687,391,0,33,33,0 +52775,687,235,1,20,20,0 +52774,687,262,0,22,22,0 +52773,687,351,0,34,34,0 +52772,687,390,0,23,23,0 +52771,687,322,0,24,24,0 +52770,687,389,1,21,21,0 +52769,687,388,2,15,15,0 +52768,687,375,1,19,19,0 +52767,687,387,2,17,17,0 +52766,687,386,0,40,40,0 +52765,687,306,0,38,38,0 +52764,687,359,0,36,36,0 +52763,687,385,0,27,27,0 +52762,687,360,3,14,14,0 +52761,687,278,20,4,4,0 +52760,687,328,10,8,8,0 +52758,687,373,23,3,3,2 +52757,687,347,2,18,18,0 +52756,687,374,7,10,10,0 +52755,687,358,6,12,12,0 +52754,687,346,3,13,13,0 +52753,687,364,13,7,7,1 +52752,687,361,0,29,29,0 +52750,687,384,0,30,30,0 +52746,687,304,43,1,1,2 +52744,687,340,6,11,11,0 +52827,688,382,0,40,40,0 +52826,688,394,0,33,33,0 +52825,688,393,0,39,39,0 +52824,688,371,0,36,36,0 +52823,688,392,0,27,27,0 +52822,688,370,0,26,26,0 +52821,688,377,0,43,43,0 +52820,688,379,0,42,42,0 +52819,688,365,0,38,38,0 +52818,688,391,0,34,34,0 +52817,688,235,1,19,19,0 +52816,688,262,0,22,22,0 +52815,688,351,0,35,35,0 +52814,688,390,0,23,23,0 +52813,688,322,0,25,25,0 +52812,688,389,1,21,21,0 +52811,688,388,2,16,16,0 +52810,688,375,1,20,20,0 +52809,688,387,2,18,18,0 +52808,688,386,0,41,41,0 +52807,688,306,0,24,24,0 +52806,688,359,0,37,37,0 +52805,688,385,0,28,28,0 +52804,688,360,3,14,14,0 +52803,688,278,20,4,4,0 +52802,688,328,10,9,9,0 +52801,688,289,15,6,6,0 +52800,688,373,32,3,3,3 +52799,688,347,3,15,15,0 +52798,688,374,7,10,10,0 +52797,688,358,6,13,13,0 +52796,688,346,6,12,12,0 +52795,688,364,13,8,8,1 +52794,688,361,0,30,30,0 +52792,688,384,0,31,31,0 +52789,688,383,2,17,17,0 +52786,688,340,6,11,11,0 +52871,689,395,0,26,26,0 +52870,689,382,0,39,39,0 +52869,689,394,0,34,34,0 +52868,689,393,0,41,41,0 +52867,689,371,0,37,37,0 +52866,689,392,0,28,28,0 +52865,689,370,0,27,27,0 +52864,689,377,0,44,44,0 +52863,689,379,0,43,43,0 +52862,689,365,0,40,40,0 +52861,689,391,0,35,35,0 +52860,689,235,1,19,19,0 +52859,689,262,0,22,22,0 +52858,689,351,0,36,36,0 +52857,689,390,0,24,24,0 +52856,689,322,0,25,25,0 +52855,689,389,1,21,21,0 +52854,689,388,2,16,16,0 +52853,689,375,1,20,20,0 +52852,689,387,2,18,18,0 +52851,689,386,0,42,42,0 +52850,689,306,0,23,23,0 +52849,689,359,0,38,38,0 +52848,689,385,0,29,29,0 +52847,689,360,3,14,14,0 +52846,689,278,20,5,5,0 +52845,689,328,10,9,9,0 +52844,689,289,15,7,7,0 +52843,689,373,41,3,3,4 +52842,689,347,3,15,15,0 +52841,689,374,9,10,10,0 +52840,689,358,6,13,13,0 +52839,689,346,6,12,12,0 +52838,689,364,13,8,8,1 +52837,689,361,0,31,31,0 +52836,689,368,0,33,33,0 +52834,689,293,0,30,30,0 +52831,689,304,51,1,1,2 +52829,689,340,6,11,11,0 +48757,690,383,0,16,16,0 +48756,690,360,0,15,15,0 +48755,690,304,0,14,14,0 +48754,690,341,0,13,13,0 +48753,690,356,0,12,12,0 +48752,690,374,0,11,11,0 +48751,690,346,0,10,10,0 +48750,690,358,0,9,9,0 +48749,690,373,0,8,8,0 +48748,690,347,0,7,7,0 +48747,690,389,0,6,6,0 +48746,690,386,0,5,5,0 +48745,690,396,3,4,4,0 +48744,690,289,4,3,3,0 +48743,690,385,6,2,2,0 +48742,690,328,9,1,1,1 +48776,691,398,0,19,19,0 +48775,691,397,0,18,18,0 +48774,691,364,0,11,11,0 +48773,691,383,0,17,17,0 +48772,691,360,0,16,16,0 +48771,691,304,0,15,15,0 +48770,691,341,9,3,3,1 +48769,691,356,3,6,6,0 +48768,691,374,0,13,13,0 +48767,691,346,0,14,14,0 +48766,691,358,6,4,4,0 +48765,691,373,0,12,12,0 +48764,691,347,0,10,10,0 +48763,691,389,0,9,9,0 +48762,691,386,2,8,8,0 +48761,691,396,3,7,7,0 +48760,691,289,4,5,5,0 +48759,691,385,10,1,1,0 +48758,691,328,9,2,2,1 +48799,692,345,0,20,20,0 +48798,692,278,0,14,14,0 +48797,692,399,1,12,12,0 +48796,692,387,6,6,6,0 +48795,692,398,0,23,23,0 +48794,692,397,0,22,22,0 +48793,692,364,2,11,11,0 +48792,692,383,0,13,13,0 +48791,692,360,0,21,21,0 +48790,692,304,4,8,8,0 +48789,692,341,9,4,4,1 +48788,692,356,12,1,1,1 +48787,692,374,0,18,18,0 +48786,692,346,0,19,19,0 +48785,692,358,9,5,5,0 +48784,692,373,0,17,17,0 +48783,692,347,0,16,16,0 +48782,692,389,0,15,15,0 +48781,692,386,2,10,10,0 +48780,692,396,3,9,9,0 +48779,692,289,4,7,7,0 +48778,692,385,10,2,2,0 +48777,692,328,9,3,3,1 +48825,693,401,0,26,26,0 +48824,693,400,0,19,19,0 +48823,693,388,0,16,16,0 +48822,693,345,0,23,23,0 +48821,693,278,0,17,17,0 +48820,693,399,1,13,13,0 +48819,693,387,6,8,8,0 +48818,693,398,0,25,25,0 +48817,693,397,0,24,24,0 +48816,693,364,2,12,12,0 +48815,693,383,0,15,15,0 +48814,693,360,1,14,14,0 +48813,693,304,10,4,4,0 +48812,693,341,9,6,6,1 +48811,693,356,21,1,1,2 +48810,693,374,0,21,21,0 +48809,693,346,0,22,22,0 +48808,693,358,11,2,2,0 +48807,693,373,3,10,10,0 +48806,693,347,0,20,20,0 +48805,693,389,0,18,18,0 +48804,693,386,2,11,11,0 +48803,693,396,3,9,9,0 +48802,693,289,8,7,7,0 +48801,693,385,10,3,3,0 +48800,693,328,9,5,5,1 +48851,694,401,0,26,26,0 +48850,694,400,0,21,21,0 +48849,694,388,0,18,18,0 +48848,694,345,0,23,23,0 +48847,694,278,0,19,19,0 +48846,694,399,1,14,14,0 +48845,694,387,6,9,9,0 +48844,694,398,0,25,25,0 +48843,694,397,0,24,24,0 +48842,694,364,2,12,12,0 +48841,694,383,0,17,17,0 +48840,694,360,1,15,15,0 +48839,694,304,10,6,6,0 +48838,694,341,9,7,7,1 +48837,694,356,30,1,1,3 +48836,694,374,2,13,13,0 +48835,694,346,0,22,22,0 +48834,694,358,11,5,5,0 +48833,694,373,7,8,8,0 +48832,694,347,0,16,16,0 +48831,694,389,0,20,20,0 +48830,694,386,2,11,11,0 +48829,694,396,3,10,10,0 +48828,694,289,14,2,2,0 +48827,694,385,11,4,4,0 +48826,694,328,12,3,3,1 +48878,695,375,0,25,25,0 +48877,695,401,0,27,27,0 +48876,695,400,0,22,22,0 +48875,695,388,0,18,18,0 +48874,695,345,0,24,24,0 +48873,695,278,0,20,20,0 +48872,695,399,1,14,14,0 +48871,695,387,6,9,9,0 +48870,695,398,0,26,26,0 +48869,695,397,0,19,19,0 +48868,695,364,2,11,11,0 +48867,695,383,0,17,17,0 +48866,695,360,1,15,15,0 +48865,695,304,10,7,7,0 +48864,695,341,15,3,3,1 +48863,695,356,39,1,1,4 +48862,695,374,2,13,13,0 +48861,695,346,0,23,23,0 +48860,695,358,15,4,4,0 +48859,695,373,7,8,8,0 +48858,695,347,0,16,16,0 +48857,695,389,0,21,21,0 +48856,695,386,2,12,12,0 +48855,695,396,3,10,10,0 +48854,695,289,17,2,2,0 +48853,695,385,12,6,6,0 +48852,695,328,14,5,5,1 +48908,696,403,0,30,30,0 +48907,696,394,0,26,26,0 +48906,696,402,0,23,23,0 +48905,696,375,9,9,9,1 +48904,696,401,0,29,29,0 +48903,696,400,0,24,24,0 +48902,696,388,0,19,19,0 +48901,696,345,0,27,27,0 +48900,696,278,0,21,21,0 +48899,696,399,1,16,16,0 +48898,696,387,12,7,7,0 +48897,696,398,0,28,28,0 +48896,696,397,0,20,20,0 +48895,696,364,2,13,13,0 +48894,696,383,1,15,15,0 +48893,696,360,1,17,17,0 +48892,696,304,14,6,6,0 +48891,696,341,15,4,4,1 +48890,696,356,39,1,1,4 +48889,696,374,4,11,11,0 +48888,696,346,0,25,25,0 +48887,696,358,18,2,2,0 +48886,696,373,7,10,10,0 +48885,696,347,0,18,18,0 +48884,696,389,0,22,22,0 +48883,696,386,2,14,14,0 +48882,696,396,3,12,12,0 +48881,696,289,17,3,3,0 +48880,696,385,12,8,8,0 +48879,696,328,14,5,5,1 +48940,697,405,0,29,29,0 +48939,697,404,0,26,26,0 +48938,697,403,0,32,32,0 +48937,697,394,0,28,28,0 +48936,697,402,0,24,24,0 +48935,697,375,9,10,10,1 +48934,697,401,0,31,31,0 +48933,697,400,0,25,25,0 +48932,697,388,0,21,21,0 +48931,697,345,0,27,27,0 +48930,697,278,0,22,22,0 +48929,697,399,1,19,19,0 +48928,697,387,12,8,8,0 +48927,697,398,0,30,30,0 +48926,697,397,1,18,18,0 +48925,697,364,2,15,15,0 +48924,697,383,1,17,17,0 +48923,697,360,3,14,14,0 +48922,697,304,14,7,7,0 +48921,697,341,19,3,3,1 +48920,697,356,39,1,1,4 +48919,697,374,4,11,11,0 +48918,697,346,3,13,13,0 +48917,697,358,22,2,2,0 +48916,697,373,16,5,5,1 +48915,697,347,0,20,20,0 +48914,697,389,0,23,23,0 +48913,697,386,2,16,16,0 +48912,697,396,3,12,12,0 +48911,697,289,17,4,4,0 +48910,697,385,12,9,9,0 +48909,697,328,14,6,6,1 +48973,698,382,0,30,30,0 +48972,698,405,0,22,22,0 +48971,698,404,0,27,27,0 +48970,698,403,0,33,33,0 +48969,698,394,0,29,29,0 +48968,698,402,0,25,25,0 +48967,698,375,9,10,10,1 +48966,698,401,0,32,32,0 +48965,698,400,0,26,26,0 +48964,698,388,0,21,21,0 +48963,698,345,0,28,28,0 +48962,698,278,0,23,23,0 +48961,698,399,1,20,20,0 +48960,698,387,12,8,8,0 +48959,698,398,0,31,31,0 +48958,698,397,1,17,17,0 +48957,698,364,4,12,12,0 +48956,698,383,1,19,19,0 +48955,698,360,3,16,16,0 +48954,698,304,18,4,4,0 +48953,698,341,28,2,2,2 +48952,698,356,42,1,1,4 +48951,698,374,4,13,13,0 +48950,698,346,3,15,15,0 +48949,698,358,22,3,3,0 +48948,698,373,16,6,6,1 +48947,698,347,1,18,18,0 +48946,698,389,0,24,24,0 +48945,698,386,5,11,11,0 +48944,698,396,3,14,14,0 +48943,698,289,17,5,5,0 +48942,698,385,12,9,9,0 +48941,698,328,14,7,7,1 +51056,699,417,0,31,31,0 +51055,699,416,0,30,30,0 +51054,699,415,0,29,29,0 +51053,699,293,0,28,28,0 +51052,699,334,0,27,27,0 +51051,699,414,0,26,26,0 +51050,699,413,0,25,25,0 +51049,699,412,0,24,24,0 +51048,699,411,0,23,23,0 +51047,699,410,0,22,22,0 +51046,699,409,0,21,21,0 +51045,699,364,0,20,20,0 +51044,699,340,0,19,19,0 +51043,699,358,0,18,18,0 +51042,699,347,0,17,17,0 +51041,699,383,0,16,16,0 +51040,699,385,0,15,15,0 +51039,699,407,0,14,14,0 +51038,699,368,0,13,13,0 +51037,699,380,0,12,12,0 +51036,699,408,0,11,11,0 +51035,699,362,0,10,10,0 +51034,699,406,0,9,9,0 +51033,699,356,0,8,8,0 +51032,699,346,0,7,7,0 +51031,699,328,1,6,6,0 +51030,699,360,2,5,5,0 +51029,699,374,3,4,4,0 +51028,699,289,4,3,3,0 +51027,699,341,6,2,2,0 +51026,699,373,9,1,1,1 +51092,700,386,0,22,22,0 +51091,700,305,0,21,21,0 +51090,700,405,0,20,20,0 +51089,700,370,0,19,19,0 +51088,700,304,0,11,11,0 +51087,700,417,0,36,36,0 +51086,700,416,0,35,35,0 +51085,700,415,0,34,34,0 +51084,700,293,0,33,33,0 +51083,700,334,0,32,32,0 +51082,700,414,0,31,31,0 +51081,700,413,0,30,30,0 +51080,700,412,0,29,29,0 +51079,700,411,0,28,28,0 +51078,700,410,0,27,27,0 +51077,700,409,0,26,26,0 +51076,700,364,0,25,25,0 +51075,700,340,0,24,24,0 +51074,700,358,0,23,23,0 +51073,700,347,0,9,9,0 +51072,700,383,0,13,13,0 +51071,700,385,6,4,4,0 +51070,700,407,0,18,18,0 +51069,700,368,0,17,17,0 +51068,700,380,0,16,16,0 +51067,700,408,0,15,15,0 +51066,700,362,0,14,14,0 +51065,700,406,0,12,12,0 +51064,700,356,0,10,10,0 +51063,700,346,1,8,8,0 +51062,700,328,5,5,5,0 +51061,700,360,4,6,6,0 +51060,700,374,3,7,7,0 +51059,700,289,13,1,1,1 +51058,700,341,9,3,3,0 +51057,700,373,9,2,2,1 +51131,701,418,0,26,26,0 +51130,701,404,0,21,21,0 +51129,701,376,0,20,20,0 +51128,701,386,1,10,10,0 +51127,701,305,0,27,27,0 +51126,701,405,0,25,25,0 +51125,701,370,0,23,23,0 +51124,701,304,0,12,12,0 +51123,701,417,0,39,39,0 +51122,701,416,0,38,38,0 +51121,701,415,0,37,37,0 +51120,701,293,0,36,36,0 +51119,701,334,0,35,35,0 +51118,701,414,0,34,34,0 +51117,701,413,0,33,33,0 +51116,701,412,0,32,32,0 +51115,701,411,0,31,31,0 +51114,701,410,0,30,30,0 +51113,701,409,0,29,29,0 +51112,701,364,0,15,15,0 +51111,701,340,0,28,28,0 +51110,701,358,0,17,17,0 +51109,701,347,0,11,11,0 +51108,701,383,0,14,14,0 +51107,701,385,6,6,6,0 +51106,701,407,0,24,24,0 +51105,701,368,0,22,22,0 +51104,701,380,0,19,19,0 +51103,701,408,0,18,18,0 +51102,701,362,0,16,16,0 +51101,701,406,0,13,13,0 +51100,701,356,3,8,8,0 +51099,701,346,1,9,9,0 +51098,701,328,11,3,3,0 +51097,701,360,8,5,5,0 +51096,701,374,3,7,7,0 +51095,701,289,15,2,2,1 +51094,701,341,9,4,4,0 +51093,701,373,18,1,1,2 +51171,702,278,0,25,25,0 +51170,702,418,0,27,27,0 +51169,702,404,0,21,21,0 +51168,702,376,0,20,20,0 +51167,702,386,1,11,11,0 +51166,702,305,0,28,28,0 +51165,702,405,0,26,26,0 +51164,702,370,0,23,23,0 +51163,702,304,3,9,9,0 +51162,702,417,0,40,40,0 +51161,702,416,0,39,39,0 +51160,702,415,0,38,38,0 +51159,702,293,0,37,37,0 +51158,702,334,0,36,36,0 +51157,702,414,0,35,35,0 +51156,702,413,0,34,34,0 +51155,702,412,0,33,33,0 +51154,702,411,0,32,32,0 +51153,702,410,0,31,31,0 +51152,702,409,0,30,30,0 +51151,702,364,0,15,15,0 +51150,702,340,0,29,29,0 +51149,702,358,0,17,17,0 +51148,702,347,0,12,12,0 +51147,702,383,0,13,13,0 +51146,702,385,6,6,6,0 +51145,702,407,0,24,24,0 +51144,702,368,0,22,22,0 +51143,702,380,0,19,19,0 +51142,702,408,0,18,18,0 +51141,702,362,0,16,16,0 +51140,702,406,0,14,14,0 +51139,702,356,3,8,8,0 +51138,702,346,2,10,10,0 +51137,702,328,17,3,3,0 +51136,702,360,8,5,5,0 +51135,702,374,3,7,7,0 +51134,702,289,17,2,2,1 +51133,702,341,13,4,4,0 +51132,702,373,27,1,1,3 +51215,703,422,0,35,35,0 +51214,703,421,0,34,34,0 +51213,703,419,0,30,30,0 +51212,703,420,0,20,20,0 +51211,703,278,0,27,27,0 +51210,703,418,0,21,21,0 +51209,703,404,0,24,24,0 +51208,703,376,0,22,22,0 +51207,703,386,1,12,12,0 +51206,703,305,0,29,29,0 +51205,703,405,0,28,28,0 +51204,703,370,0,23,23,0 +51203,703,304,3,9,9,0 +51202,703,417,0,44,44,0 +51201,703,416,0,43,43,0 +51200,703,415,0,42,42,0 +51199,703,293,0,41,41,0 +51198,703,334,0,40,40,0 +51197,703,414,0,39,39,0 +51196,703,413,0,38,38,0 +51195,703,412,0,37,37,0 +51194,703,411,0,36,36,0 +51193,703,410,0,33,33,0 +51192,703,409,0,32,32,0 +51191,703,364,1,11,11,0 +51190,703,340,0,31,31,0 +51189,703,358,0,18,18,0 +51188,703,347,0,13,13,0 +51187,703,383,0,15,15,0 +51186,703,385,6,6,6,0 +51185,703,407,0,26,26,0 +51184,703,368,0,25,25,0 +51183,703,380,0,14,14,0 +51182,703,408,0,19,19,0 +51181,703,362,0,17,17,0 +51180,703,406,0,16,16,0 +51179,703,356,3,8,8,0 +51178,703,346,2,10,10,0 +51177,703,328,19,3,3,0 +51176,703,360,8,5,5,0 +51175,703,374,6,7,7,0 +51174,703,289,23,2,2,1 +51173,703,341,17,4,4,0 +51172,703,373,36,1,1,4 +51259,704,422,0,35,35,0 +51258,704,421,0,34,34,0 +51257,704,419,0,30,30,0 +51256,704,420,0,21,21,0 +51255,704,278,0,27,27,0 +51254,704,418,0,23,23,0 +51253,704,404,0,17,17,0 +51252,704,376,0,24,24,0 +51251,704,386,2,12,12,0 +51250,704,305,0,29,29,0 +51249,704,405,0,28,28,0 +51248,704,370,0,22,22,0 +51247,704,304,5,9,9,0 +51246,704,417,0,44,44,0 +51245,704,416,0,43,43,0 +51244,704,415,0,42,42,0 +51243,704,293,0,41,41,0 +51242,704,334,0,40,40,0 +51241,704,414,0,39,39,0 +51240,704,413,0,38,38,0 +51239,704,412,0,37,37,0 +51238,704,411,0,36,36,0 +51237,704,410,0,33,33,0 +51236,704,409,0,32,32,0 +51235,704,364,5,8,8,0 +51234,704,340,0,31,31,0 +51233,704,358,0,19,19,0 +51232,704,347,0,13,13,0 +51231,704,383,0,15,15,0 +51230,704,385,6,6,6,0 +51229,704,407,0,26,26,0 +51228,704,368,0,25,25,0 +51227,704,380,0,14,14,0 +51226,704,408,0,20,20,0 +51225,704,362,0,18,18,0 +51224,704,406,0,16,16,0 +51223,704,356,3,10,10,0 +51222,704,346,2,11,11,0 +51221,704,328,25,3,3,0 +51220,704,360,8,5,5,0 +51219,704,374,6,7,7,0 +51218,704,289,26,2,2,1 +51217,704,341,17,4,4,0 +51216,704,373,45,1,1,5 +51305,705,424,0,33,33,0 +51304,705,423,0,28,28,0 +51303,705,422,0,37,37,0 +51302,705,421,0,36,36,0 +51301,705,419,0,31,31,0 +51300,705,420,0,21,21,0 +51299,705,278,0,27,27,0 +51298,705,418,0,16,16,0 +51297,705,404,0,19,19,0 +51296,705,376,0,24,24,0 +51295,705,386,2,13,13,0 +51294,705,305,0,30,30,0 +51293,705,405,0,29,29,0 +51292,705,370,0,23,23,0 +51291,705,304,5,10,10,0 +51290,705,417,0,46,46,0 +51289,705,416,0,45,45,0 +51288,705,415,0,44,44,0 +51287,705,293,0,43,43,0 +51286,705,334,0,42,42,0 +51285,705,414,0,41,41,0 +51284,705,413,0,40,40,0 +51283,705,412,0,39,39,0 +51282,705,411,0,38,38,0 +51281,705,410,0,35,35,0 +51280,705,409,0,34,34,0 +51279,705,364,9,5,5,0 +51278,705,340,0,32,32,0 +51277,705,358,3,11,11,0 +51276,705,347,0,14,14,0 +51275,705,383,0,17,17,0 +51274,705,385,7,7,7,0 +51273,705,407,0,26,26,0 +51272,705,368,0,25,25,0 +51271,705,380,0,15,15,0 +51270,705,408,0,22,22,0 +51269,705,362,0,20,20,0 +51268,705,406,0,18,18,0 +51267,705,356,5,9,9,0 +51266,705,346,2,12,12,0 +51265,705,328,25,3,3,0 +51264,705,360,8,6,6,0 +51263,705,374,6,8,8,0 +51262,705,289,30,2,2,1 +51261,705,341,17,4,4,0 +51260,705,373,54,1,1,6 +51355,706,426,0,40,40,0 +51354,706,394,0,37,37,0 +51353,706,402,0,34,34,0 +51352,706,425,0,25,25,0 +51351,706,424,0,26,26,0 +51350,706,423,0,30,30,0 +51349,706,422,0,41,41,0 +51348,706,421,0,39,39,0 +51347,706,419,0,33,33,0 +51346,706,420,0,22,22,0 +51345,706,278,0,29,29,0 +51344,706,418,0,17,17,0 +51343,706,404,0,19,19,0 +51342,706,376,0,24,24,0 +51341,706,386,2,13,13,0 +51340,706,305,0,32,32,0 +51339,706,405,0,31,31,0 +51338,706,370,1,14,14,0 +51337,706,304,5,10,10,0 +51336,706,417,0,50,50,0 +51335,706,416,0,49,49,0 +51334,706,415,0,48,48,0 +51333,706,293,0,47,47,0 +51332,706,334,0,46,46,0 +51331,706,414,0,45,45,0 +51330,706,413,0,44,44,0 +51329,706,412,0,43,43,0 +51328,706,411,0,42,42,0 +51327,706,410,0,38,38,0 +51326,706,409,0,36,36,0 +51325,706,364,13,5,5,0 +51324,706,340,0,35,35,0 +51323,706,358,3,11,11,0 +51322,706,347,0,15,15,0 +51321,706,383,0,18,18,0 +51320,706,385,10,6,6,0 +51319,706,407,0,28,28,0 +51318,706,368,0,27,27,0 +51317,706,380,0,16,16,0 +51316,706,408,0,23,23,0 +51315,706,362,0,21,21,0 +51314,706,406,0,20,20,0 +51313,706,356,5,9,9,0 +51312,706,346,2,12,12,0 +51311,706,328,33,3,3,1 +51310,706,360,10,7,7,0 +51309,706,374,6,8,8,0 +51308,706,289,34,2,2,1 +51307,706,341,17,4,4,0 +51306,706,373,54,1,1,6 +51408,707,382,0,27,27,0 +51407,707,396,0,22,22,0 +51406,707,345,2,12,12,0 +51405,707,426,0,43,43,0 +51404,707,394,0,40,40,0 +51403,707,402,0,37,37,0 +51402,707,425,0,28,28,0 +51401,707,424,0,30,30,0 +51400,707,423,0,34,34,0 +51399,707,422,0,44,44,0 +51398,707,421,0,42,42,0 +51397,707,419,0,36,36,0 +51396,707,420,0,24,24,0 +51395,707,278,0,33,33,0 +51394,707,418,0,18,18,0 +51393,707,404,0,20,20,0 +51392,707,376,0,26,26,0 +51391,707,386,2,14,14,0 +51390,707,305,0,35,35,0 +51389,707,405,0,29,29,0 +51388,707,370,1,15,15,0 +51387,707,304,5,10,10,0 +51386,707,417,0,53,53,0 +51385,707,416,0,52,52,0 +51384,707,415,0,51,51,0 +51383,707,293,0,50,50,0 +51382,707,334,0,49,49,0 +51381,707,414,0,48,48,0 +51380,707,413,0,47,47,0 +51379,707,412,0,46,46,0 +51378,707,411,0,45,45,0 +51377,707,410,0,41,41,0 +51376,707,409,0,39,39,0 +51375,707,364,19,4,4,0 +51374,707,340,0,38,38,0 +51373,707,358,4,11,11,0 +51372,707,347,0,16,16,0 +51371,707,383,0,19,19,0 +51370,707,385,13,6,6,0 +51369,707,407,0,32,32,0 +51368,707,368,0,31,31,0 +51367,707,380,0,17,17,0 +51366,707,408,0,25,25,0 +51365,707,362,0,23,23,0 +51364,707,406,0,21,21,0 +51363,707,356,9,8,8,0 +51362,707,346,2,13,13,0 +51361,707,328,33,3,3,1 +51360,707,360,10,7,7,0 +51359,707,374,6,9,9,0 +51358,707,289,40,2,2,2 +51357,707,341,17,5,5,0 +51356,707,373,54,1,1,6 +51462,708,375,0,39,39,0 +51461,708,382,0,27,27,0 +51460,708,396,0,23,23,0 +51459,708,345,2,14,14,0 +51458,708,426,0,44,44,0 +51457,708,394,0,41,41,0 +51456,708,402,0,37,37,0 +51455,708,425,0,29,29,0 +51454,708,424,0,30,30,0 +51453,708,423,0,34,34,0 +51452,708,422,0,45,45,0 +51451,708,421,0,43,43,0 +51450,708,419,0,36,36,0 +51449,708,420,0,25,25,0 +51448,708,278,0,33,33,0 +51447,708,418,0,19,19,0 +51446,708,404,0,21,21,0 +51445,708,376,0,28,28,0 +51444,708,386,11,7,7,1 +51443,708,305,0,35,35,0 +51442,708,405,2,15,15,0 +51441,708,370,2,16,16,0 +51440,708,304,5,11,11,0 +51439,708,417,0,54,54,0 +51438,708,416,0,53,53,0 +51437,708,415,0,52,52,0 +51436,708,293,0,51,51,0 +51435,708,334,0,50,50,0 +51434,708,414,0,49,49,0 +51433,708,413,0,48,48,0 +51432,708,412,0,47,47,0 +51431,708,411,0,46,46,0 +51430,708,410,0,42,42,0 +51429,708,409,0,40,40,0 +51428,708,364,25,4,4,0 +51427,708,340,0,38,38,0 +51426,708,358,4,13,13,0 +51425,708,347,0,17,17,0 +51424,708,383,0,20,20,0 +51423,708,385,13,6,6,0 +51422,708,407,0,32,32,0 +51421,708,368,0,31,31,0 +51420,708,380,0,18,18,0 +51419,708,408,0,26,26,0 +51418,708,362,0,24,24,0 +51417,708,406,0,22,22,0 +51416,708,356,9,10,10,0 +51415,708,346,5,12,12,0 +51414,708,328,33,3,3,1 +51413,708,360,10,9,9,0 +51412,708,374,10,8,8,0 +51411,708,289,40,2,2,2 +51410,708,341,17,5,5,0 +51409,708,373,54,1,1,6 +50742,709,408,0,23,23,0 +50741,709,394,0,22,22,0 +50740,709,429,0,21,21,0 +50739,709,404,0,20,20,0 +50738,709,428,0,19,19,0 +50737,709,309,0,18,18,0 +50736,709,278,0,17,17,0 +50735,709,401,0,16,16,0 +50734,709,341,0,15,15,0 +50733,709,360,0,14,14,0 +50732,709,356,0,13,13,0 +50731,709,427,0,12,12,0 +50730,709,364,0,11,11,0 +50729,709,385,0,10,10,0 +50728,709,403,0,9,9,0 +50727,709,346,0,8,8,0 +50726,709,383,0,7,7,0 +50725,709,305,1,6,6,0 +50724,709,347,2,5,5,0 +50723,709,373,3,4,4,0 +50722,709,397,4,3,3,0 +50721,709,386,6,2,2,0 +50720,709,289,9,1,1,1 +50766,710,430,0,19,19,0 +50765,710,408,0,20,20,0 +50764,710,394,0,14,14,0 +50763,710,429,0,24,24,0 +50762,710,404,0,23,23,0 +50761,710,428,0,22,22,0 +50760,710,309,0,21,21,0 +50759,710,278,2,7,7,0 +50758,710,401,0,18,18,0 +50757,710,341,6,5,5,0 +50756,710,360,0,10,10,0 +50755,710,356,0,17,17,0 +50754,710,427,0,16,16,0 +50753,710,364,0,15,15,0 +50752,710,385,0,13,13,0 +50751,710,403,0,11,11,0 +50750,710,346,0,12,12,0 +50749,710,383,1,8,8,0 +50748,710,305,1,9,9,0 +50747,710,347,2,6,6,0 +50746,710,373,12,1,1,1 +50745,710,397,8,3,3,0 +50744,710,386,6,4,4,0 +50743,710,289,12,2,2,1 +50790,711,430,0,21,21,0 +50789,711,408,0,22,22,0 +50788,711,394,0,15,15,0 +50787,711,429,0,20,20,0 +50786,711,404,0,18,18,0 +50785,711,428,0,24,24,0 +50784,711,309,0,23,23,0 +50783,711,278,2,9,9,0 +50782,711,401,0,13,13,0 +50781,711,341,6,6,6,0 +50780,711,360,6,5,5,0 +50779,711,356,4,7,7,0 +50778,711,427,0,19,19,0 +50777,711,364,1,12,12,0 +50776,711,385,0,17,17,0 +50775,711,403,0,14,14,0 +50774,711,346,0,16,16,0 +50773,711,383,1,10,10,0 +50772,711,305,1,11,11,0 +50771,711,347,2,8,8,0 +50770,711,373,21,1,1,2 +50769,711,397,8,4,4,0 +50768,711,386,9,3,3,0 +50767,711,289,14,2,2,1 +50814,712,430,0,21,21,0 +50813,712,408,0,22,22,0 +50812,712,394,0,15,15,0 +50811,712,429,0,20,20,0 +50810,712,404,0,18,18,0 +50809,712,428,0,24,24,0 +50808,712,309,0,23,23,0 +50807,712,278,2,10,10,0 +50806,712,401,0,14,14,0 +50805,712,341,6,8,8,0 +50804,712,360,7,7,7,0 +50803,712,356,8,6,6,0 +50802,712,427,0,19,19,0 +50801,712,364,10,5,5,1 +50800,712,385,0,17,17,0 +50799,712,403,0,13,13,0 +50798,712,346,0,16,16,0 +50797,712,383,1,11,11,0 +50796,712,305,1,12,12,0 +50795,712,347,2,9,9,0 +50794,712,373,21,1,1,2 +50793,712,397,11,4,4,0 +50792,712,386,11,3,3,0 +50791,712,289,20,2,2,1 +50843,713,370,0,29,29,0 +50842,713,380,0,28,28,0 +50841,713,420,0,26,26,0 +50840,713,399,0,21,21,0 +50839,713,374,0,18,18,0 +50838,713,430,0,25,25,0 +50837,713,408,0,24,24,0 +50836,713,394,0,16,16,0 +50835,713,429,0,22,22,0 +50834,713,404,0,19,19,0 +50833,713,428,0,27,27,0 +50832,713,309,0,23,23,0 +50831,713,278,2,11,11,0 +50830,713,401,0,15,15,0 +50829,713,341,10,7,7,0 +50828,713,360,7,8,8,0 +50827,713,356,11,5,5,0 +50826,713,427,0,20,20,0 +50825,713,364,10,6,6,1 +50824,713,385,2,9,9,0 +50823,713,403,1,13,13,0 +50822,713,346,0,17,17,0 +50821,713,383,1,12,12,0 +50820,713,305,1,14,14,0 +50819,713,347,2,10,10,0 +50818,713,373,30,1,1,3 +50817,713,397,11,4,4,0 +50816,713,386,11,3,3,0 +50815,713,289,26,2,2,1 +50875,714,431,0,28,28,0 +50874,714,405,0,23,23,0 +50873,714,423,0,21,21,0 +50872,714,370,0,32,32,0 +50871,714,380,0,31,31,0 +50870,714,420,0,29,29,0 +50869,714,399,0,25,25,0 +50868,714,374,0,19,19,0 +50867,714,430,0,27,27,0 +50866,714,408,1,17,17,0 +50865,714,394,0,20,20,0 +50864,714,429,0,26,26,0 +50863,714,404,0,22,22,0 +50862,714,428,0,30,30,0 +50861,714,309,0,24,24,0 +50860,714,278,2,12,12,0 +50859,714,401,0,18,18,0 +50858,714,341,19,3,3,1 +50857,714,360,7,8,8,0 +50856,714,356,11,6,6,0 +50855,714,427,2,13,13,0 +50854,714,364,10,7,7,1 +50853,714,385,6,9,9,0 +50852,714,403,1,15,15,0 +50851,714,346,3,10,10,0 +50850,714,383,1,14,14,0 +50849,714,305,1,16,16,0 +50848,714,347,2,11,11,0 +50847,714,373,30,2,2,3 +50846,714,397,11,5,5,0 +50845,714,386,11,4,4,0 +50844,714,289,32,1,1,1 +50908,715,358,0,26,26,0 +50907,715,431,0,29,29,0 +50906,715,405,0,23,23,0 +50905,715,423,0,22,22,0 +50904,715,370,0,33,33,0 +50903,715,380,0,32,32,0 +50902,715,420,0,30,30,0 +50901,715,399,0,25,25,0 +50900,715,374,0,21,21,0 +50899,715,430,0,28,28,0 +50898,715,408,4,11,11,0 +50897,715,394,0,19,19,0 +50896,715,429,0,27,27,0 +50895,715,404,2,14,14,0 +50894,715,428,0,31,31,0 +50893,715,309,0,24,24,0 +50892,715,278,2,15,15,0 +50891,715,401,0,20,20,0 +50890,715,341,19,3,3,1 +50889,715,360,7,9,9,0 +50888,715,356,11,6,6,0 +50887,715,427,2,16,16,0 +50886,715,364,10,8,8,1 +50885,715,385,15,5,5,1 +50884,715,403,1,17,17,0 +50883,715,346,3,12,12,0 +50882,715,383,5,10,10,0 +50881,715,305,1,18,18,0 +50880,715,347,3,13,13,0 +50879,715,373,30,2,2,3 +50878,715,397,11,7,7,0 +50877,715,386,17,4,4,0 +50876,715,289,32,1,1,1 +50945,716,340,0,36,36,0 +50944,716,402,0,34,34,0 +50943,716,432,0,29,29,0 +50942,716,375,0,23,23,0 +50941,716,358,0,27,27,0 +50940,716,431,0,32,32,0 +50939,716,405,0,25,25,0 +50938,716,423,0,22,22,0 +50937,716,370,0,37,37,0 +50936,716,380,0,35,35,0 +50935,716,420,0,31,31,0 +50934,716,399,0,26,26,0 +50933,716,374,1,19,19,0 +50932,716,430,0,30,30,0 +50931,716,408,4,11,11,0 +50930,716,394,0,20,20,0 +50929,716,429,0,28,28,0 +50928,716,404,4,12,12,0 +50927,716,428,0,33,33,0 +50926,716,309,0,24,24,0 +50925,716,278,2,15,15,0 +50924,716,401,0,21,21,0 +50923,716,341,28,3,3,2 +50922,716,360,13,6,6,0 +50921,716,356,11,7,7,0 +50920,716,427,2,16,16,0 +50919,716,364,10,9,9,1 +50918,716,385,19,5,5,1 +50917,716,403,1,17,17,0 +50916,716,346,3,13,13,0 +50915,716,383,5,10,10,0 +50914,716,305,1,18,18,0 +50913,716,347,3,14,14,0 +50912,716,373,30,2,2,3 +50911,716,397,11,8,8,0 +50910,716,386,20,4,4,0 +50909,716,289,32,1,1,1 +50984,717,434,0,29,29,0 +50983,717,433,2,17,17,0 +50982,717,340,0,38,38,0 +50981,717,402,0,36,36,0 +50980,717,432,0,31,31,0 +50979,717,375,0,24,24,0 +50978,717,358,0,28,28,0 +50977,717,431,0,34,34,0 +50976,717,405,0,26,26,0 +50975,717,423,0,23,23,0 +50974,717,370,0,39,39,0 +50973,717,380,0,37,37,0 +50972,717,420,0,33,33,0 +50971,717,399,0,27,27,0 +50970,717,374,1,21,21,0 +50969,717,430,0,32,32,0 +50968,717,408,4,12,12,0 +50967,717,394,0,22,22,0 +50966,717,429,0,30,30,0 +50965,717,404,4,13,13,0 +50964,717,428,0,35,35,0 +50963,717,309,0,25,25,0 +50962,717,278,2,15,15,0 +50961,717,401,1,19,19,0 +50960,717,341,34,2,2,2 +50959,717,360,13,6,6,0 +50958,717,356,11,7,7,0 +50957,717,427,2,16,16,0 +50956,717,364,10,9,9,1 +50955,717,385,19,5,5,1 +50954,717,403,1,18,18,0 +50953,717,346,7,10,10,0 +50952,717,383,5,11,11,0 +50951,717,305,1,20,20,0 +50950,717,347,3,14,14,0 +50949,717,373,30,3,3,3 +50948,717,397,11,8,8,0 +50947,717,386,23,4,4,0 +50946,717,289,39,1,1,2 +51025,718,382,0,26,26,0 +51024,718,345,1,22,22,0 +51023,718,434,0,28,28,0 +51022,718,433,2,18,18,0 +51021,718,340,0,40,40,0 +51020,718,402,0,38,38,0 +51019,718,432,0,33,33,0 +51018,718,375,0,25,25,0 +51017,718,358,0,31,31,0 +51016,718,431,0,36,36,0 +51015,718,405,0,29,29,0 +51014,718,423,0,24,24,0 +51013,718,370,0,41,41,0 +51012,718,380,0,39,39,0 +51011,718,420,0,35,35,0 +51010,718,399,0,30,30,0 +51009,718,374,4,12,12,0 +51008,718,430,0,34,34,0 +51007,718,408,4,13,13,0 +51006,718,394,0,23,23,0 +51005,718,429,0,32,32,0 +51004,718,404,4,14,14,0 +51003,718,428,0,37,37,0 +51002,718,309,0,27,27,0 +51001,718,278,2,16,16,0 +51000,718,401,1,20,20,0 +50999,718,341,40,1,1,2 +50998,718,360,13,7,7,0 +50997,718,356,11,8,8,0 +50996,718,427,2,17,17,0 +50995,718,364,19,6,6,2 +50994,718,385,23,4,4,1 +50993,718,403,1,19,19,0 +50992,718,346,7,10,10,0 +50991,718,383,5,11,11,0 +50990,718,305,1,21,21,0 +50989,718,347,3,15,15,0 +50988,718,373,32,3,3,3 +50987,718,397,11,9,9,0 +50986,718,386,23,5,5,0 +50985,718,289,39,2,2,2 +63373,719,430,0,25,25,0 +63372,719,385,0,24,24,0 +63371,719,439,0,23,23,0 +63370,719,438,0,22,22,0 +63369,719,437,0,21,21,0 +63368,719,436,0,20,20,0 +63367,719,394,0,19,19,0 +63366,719,403,0,18,18,0 +63365,719,428,0,17,17,0 +63364,719,278,0,16,16,0 +63363,719,346,0,15,15,0 +63362,719,440,0,14,14,0 +63361,719,364,0,13,13,0 +63360,719,427,0,12,12,0 +63359,719,435,0,11,11,0 +63358,719,404,0,10,10,0 +63357,719,356,0,9,9,0 +63356,719,373,0,8,8,0 +63355,719,347,0,7,7,0 +63354,719,401,1,6,6,0 +63353,719,408,2,5,5,0 +63352,719,341,3,4,4,0 +63351,719,360,4,3,3,0 +63350,719,386,6,2,2,0 +63349,719,289,9,1,1,1 +63401,720,375,0,26,26,0 +63400,720,397,0,25,25,0 +63378,720,408,2,8,8,0 +63380,720,347,2,7,7,0 +63399,720,376,0,15,15,0 +63398,720,430,1,10,10,0 +63397,720,385,0,27,27,0 +63395,720,438,0,11,11,0 +63394,720,437,0,24,24,0 +63393,720,436,0,23,23,0 +63392,720,394,0,22,22,0 +63391,720,403,0,19,19,0 +63390,720,428,0,21,21,0 +63389,720,278,0,20,20,0 +63388,720,346,0,18,18,0 +63387,720,440,0,16,16,0 +63386,720,364,4,5,5,0 +63385,720,427,0,17,17,0 +63384,720,435,0,14,14,0 +63383,720,404,0,13,13,0 +63382,720,356,0,12,12,0 +63381,720,373,9,2,2,1 +63379,720,401,1,9,9,0 +63430,721,423,0,24,24,0 +63429,721,375,1,12,12,0 +63428,721,397,0,27,27,0 +63427,721,376,0,18,18,0 +63426,721,430,1,10,10,0 +63425,721,385,0,28,28,0 +63424,721,439,0,29,29,0 +63423,721,438,0,15,15,0 +63422,721,437,0,26,26,0 +63421,721,436,0,25,25,0 +63420,721,394,0,22,22,0 +63419,721,403,0,21,21,0 +63418,721,428,0,23,23,0 +63417,721,278,0,20,20,0 +63416,721,346,0,13,13,0 +63415,721,440,0,14,14,0 +63414,721,364,10,3,3,0 +63413,721,427,0,19,19,0 +63412,721,435,0,17,17,0 +63406,721,408,2,9,9,0 +63402,721,289,9,5,5,1 +63403,721,386,11,2,2,0 +63460,722,418,0,24,24,0 +63459,722,423,0,26,26,0 +63457,722,397,0,29,29,0 +63458,722,375,1,14,14,0 +63439,722,356,3,9,9,0 +63456,722,376,0,21,21,0 +63455,722,430,1,12,12,0 +63454,722,385,0,19,19,0 +63453,722,439,0,30,30,0 +63452,722,438,0,18,18,0 +63451,722,437,0,28,28,0 +63450,722,436,0,27,27,0 +63449,722,394,0,23,23,0 +63448,722,403,0,22,22,0 +63447,722,428,0,25,25,0 +63446,722,278,0,15,15,0 +63445,722,346,1,11,11,0 +63444,722,440,0,16,16,0 +63443,722,364,12,2,2,0 +63442,722,427,0,17,17,0 +63440,722,404,3,8,8,0 +63438,722,373,27,1,1,3 +63437,722,347,2,10,10,0 +63468,723,373,36,1,1,4 +63469,723,356,3,9,9,0 +63470,723,404,3,8,8,0 +63471,723,435,0,24,24,0 +63472,723,427,0,18,18,0 +63473,723,364,12,5,5,0 +63474,723,440,1,13,13,0 +63475,723,346,1,12,12,0 +63476,723,278,0,17,17,0 +63477,723,428,0,28,28,0 +63478,723,403,0,26,26,0 +63479,723,394,0,27,27,0 +63480,723,436,0,23,23,0 +63481,723,437,0,30,30,0 +63493,723,420,0,29,29,0 +63492,723,383,0,22,22,0 +63491,723,305,0,20,20,0 +63490,723,418,0,21,21,0 +63489,723,423,0,31,31,0 +63488,723,375,1,16,16,0 +63487,723,397,0,32,32,0 +63486,723,376,0,25,25,0 +63484,723,385,2,11,11,0 +63483,723,439,0,33,33,0 +63530,724,442,0,37,37,0 +63504,724,435,0,26,26,0 +63505,724,427,0,19,19,0 +63506,724,364,12,5,5,0 +63507,724,440,3,12,12,0 +63508,724,346,1,14,14,0 +63509,724,278,0,18,18,0 +63510,724,428,0,22,22,0 +63511,724,403,0,28,28,0 +63512,724,394,0,31,31,0 +63513,724,436,0,25,25,0 +63514,724,437,0,30,30,0 +63515,724,438,0,20,20,0 +63516,724,439,0,34,34,0 +63517,724,385,2,13,13,0 +63518,724,430,1,16,16,0 +63529,724,441,0,36,36,0 +63528,724,429,0,35,35,0 +63527,724,432,0,29,29,0 +63526,724,420,0,32,32,0 +63525,724,383,0,24,24,0 +63524,724,305,0,21,21,0 +63523,724,418,0,23,23,0 +63522,724,423,3,10,10,0 +63521,724,375,1,17,17,0 +63520,724,397,0,33,33,0 +63500,724,347,3,11,11,0 +63501,724,373,42,1,1,4 +63573,725,447,0,43,43,0 +63572,725,446,0,42,42,0 +63570,725,444,0,40,40,0 +63571,725,445,0,41,41,0 +63542,725,427,0,19,19,0 +63569,725,443,0,38,38,0 +63568,725,374,0,27,27,0 +63567,725,442,0,39,39,0 +63566,725,441,0,37,37,0 +63565,725,429,0,36,36,0 +63564,725,432,0,31,31,0 +63563,725,420,0,33,33,0 +63562,725,383,0,25,25,0 +63561,725,305,0,20,20,0 +63560,725,418,0,24,24,0 +63559,725,423,3,10,10,0 +63558,725,375,1,17,17,0 +63557,725,397,0,34,34,0 +63556,725,376,0,30,30,0 +63531,725,289,13,5,5,1 +63555,725,430,1,16,16,0 +63554,725,385,2,13,13,0 +63553,725,439,0,35,35,0 +63552,725,438,0,21,21,0 +63551,725,437,0,32,32,0 +63550,725,436,0,26,26,0 +63549,725,394,0,28,28,0 +63548,725,403,0,23,23,0 +63547,725,428,0,22,22,0 +63546,725,278,0,18,18,0 +63545,725,346,1,14,14,0 +63543,725,364,12,6,6,0 +63541,725,435,0,29,29,0 +63540,725,404,6,8,8,0 +63539,725,356,5,9,9,0 +63538,725,373,51,1,1,5 +63537,725,347,3,11,11,0 +63536,725,401,1,15,15,0 +63622,726,450,0,42,42,0 +63584,726,435,0,30,30,0 +63585,726,427,0,20,20,0 +63586,726,364,12,6,6,0 +63587,726,440,3,13,13,0 +63588,726,346,1,15,15,0 +63589,726,278,0,18,18,0 +63590,726,428,0,23,23,0 +63621,726,433,0,39,39,0 +63620,726,434,0,37,37,0 +63619,726,345,0,35,35,0 +63618,726,449,0,33,33,0 +63617,726,448,0,19,19,0 +63616,726,447,0,49,49,0 +63615,726,446,0,48,48,0 +63614,726,445,0,47,47,0 +63613,726,444,0,46,46,0 +63612,726,443,0,44,44,0 +63611,726,374,0,28,28,0 +63610,726,442,0,45,45,0 +63609,726,441,0,43,43,0 +63607,726,432,0,32,32,0 +63606,726,420,0,36,36,0 +63605,726,383,0,26,26,0 +63604,726,305,0,21,21,0 +63603,726,418,0,25,25,0 +63602,726,423,3,11,11,0 +63601,726,375,1,17,17,0 +63600,726,397,0,38,38,0 +63599,726,376,0,31,31,0 +63598,726,430,2,14,14,0 +63597,726,385,4,10,10,0 +63581,726,373,51,1,1,5 +63582,726,356,8,8,8,0 +63595,726,438,0,22,22,0 +63593,726,436,0,27,27,0 +63592,726,394,0,29,29,0 +63633,727,435,0,32,32,0 +63634,727,427,0,21,21,0 +63635,727,364,13,7,7,0 +63636,727,440,3,13,13,0 +63637,727,346,1,15,15,0 +63638,727,278,0,18,18,0 +63639,727,428,0,24,24,0 +63631,727,356,14,6,6,0 +63674,727,452,0,45,45,0 +63673,727,451,0,41,41,0 +63672,727,382,0,27,27,0 +63671,727,450,0,44,44,0 +63670,727,433,0,40,40,0 +63669,727,434,0,19,19,0 +63668,727,345,0,36,36,0 +63667,727,449,0,35,35,0 +63666,727,448,0,20,20,0 +63665,727,447,0,52,52,0 +63664,727,446,0,51,51,0 +63663,727,445,0,50,50,0 +63662,727,444,0,49,49,0 +63661,727,443,0,47,47,0 +63660,727,374,0,30,30,0 +63659,727,442,0,48,48,0 +63658,727,441,0,46,46,0 +63657,727,429,0,43,43,0 +63656,727,432,0,34,34,0 +63655,727,420,0,38,38,0 +63654,727,383,0,28,28,0 +63653,727,305,0,22,22,0 +63652,727,418,0,26,26,0 +63650,727,375,1,17,17,0 +63649,727,397,0,39,39,0 +63648,727,376,0,33,33,0 +63647,727,430,2,14,14,0 +63646,727,385,4,11,11,0 +63645,727,439,0,42,42,0 +63644,727,438,0,23,23,0 +63643,727,437,0,37,37,0 +63641,727,394,0,31,31,0 +48402,729,427,0,22,22,0 +48401,729,458,0,21,21,0 +48400,729,457,0,20,20,0 +48399,729,356,0,19,19,0 +48398,729,341,0,18,18,0 +48397,729,456,0,17,17,0 +48396,729,360,0,16,16,0 +48395,729,364,0,15,15,0 +48394,729,455,0,14,14,0 +48393,729,418,0,13,13,0 +48392,729,404,0,12,12,0 +48391,729,386,0,11,11,0 +48390,729,454,0,10,10,0 +48389,729,373,0,9,9,0 +48388,729,453,0,8,8,0 +48387,729,347,0,7,7,0 +48386,729,430,1,6,6,0 +48385,729,408,2,5,5,0 +48384,729,394,3,4,4,0 +48383,729,403,4,3,3,0 +48382,729,401,6,2,2,0 +48381,729,289,9,1,1,1 +48430,730,459,0,28,28,0 +48429,730,424,0,27,27,0 +48428,730,425,0,26,26,0 +48427,730,346,0,23,23,0 +48426,730,435,0,11,11,0 +48425,730,385,4,5,5,0 +48424,730,427,0,22,22,0 +48423,730,458,0,25,25,0 +48422,730,457,0,24,24,0 +48421,730,356,0,13,13,0 +48420,730,341,3,6,6,0 +48419,730,456,0,18,18,0 +48418,730,360,9,3,3,1 +48417,730,364,0,20,20,0 +48416,730,455,0,21,21,0 +48415,730,418,0,19,19,0 +48414,730,404,0,15,15,0 +48413,730,386,0,17,17,0 +48412,730,454,0,16,16,0 +48411,730,373,0,14,14,0 +48410,730,453,0,12,12,0 +48409,730,347,2,8,8,0 +48408,730,430,1,10,10,0 +48407,730,408,2,9,9,0 +48406,730,394,3,7,7,0 +48405,730,403,10,2,2,0 +48404,730,401,6,4,4,0 +48403,730,289,10,1,1,1 +48462,731,461,0,32,32,0 +48461,731,460,0,30,30,0 +48460,731,436,0,19,19,0 +48459,731,376,0,17,17,0 +48458,731,459,0,27,27,0 +48457,731,424,0,31,31,0 +48456,731,425,0,29,29,0 +48455,731,346,0,18,18,0 +48454,731,435,0,14,14,0 +48453,731,385,4,7,7,0 +48452,731,427,0,15,15,0 +48451,731,458,0,28,28,0 +48450,731,457,0,26,26,0 +48449,731,356,1,13,13,0 +48448,731,341,5,6,6,0 +48447,731,456,0,22,22,0 +48446,731,360,9,4,4,1 +48445,731,364,0,24,24,0 +48444,731,455,0,25,25,0 +48443,731,418,0,23,23,0 +48442,731,404,0,20,20,0 +48441,731,386,0,21,21,0 +48440,731,454,3,8,8,0 +48439,731,373,9,3,3,1 +48438,731,453,0,16,16,0 +48437,731,347,2,10,10,0 +48436,731,430,1,12,12,0 +48435,731,408,2,11,11,0 +48434,731,394,3,9,9,0 +48433,731,403,14,2,2,0 +48432,731,401,6,5,5,0 +48431,731,289,16,1,1,1 +48498,732,437,0,33,33,0 +48497,732,446,0,30,30,0 +48496,732,462,0,28,28,0 +48495,732,397,0,26,26,0 +48494,732,461,0,36,36,0 +48493,732,460,0,34,34,0 +48492,732,436,0,21,21,0 +48491,732,376,0,19,19,0 +48490,732,459,0,27,27,0 +48489,732,424,0,35,35,0 +48488,732,425,0,32,32,0 +48487,732,346,0,20,20,0 +48486,732,435,0,17,17,0 +48485,732,385,4,10,10,0 +48484,732,427,0,16,16,0 +48483,732,458,0,31,31,0 +48482,732,457,0,29,29,0 +48481,732,356,1,15,15,0 +48480,732,341,7,7,7,0 +48479,732,456,0,23,23,0 +48478,732,360,12,3,3,1 +48477,732,364,9,5,5,1 +48476,732,455,0,25,25,0 +48475,732,418,0,24,24,0 +48474,732,404,0,22,22,0 +48473,732,386,4,9,9,0 +48472,732,454,3,11,11,0 +48471,732,373,9,4,4,1 +48470,732,453,0,18,18,0 +48469,732,347,2,13,13,0 +48468,732,430,2,14,14,0 +48467,732,408,8,6,6,0 +48466,732,394,3,12,12,0 +48465,732,403,14,2,2,0 +48464,732,401,6,8,8,0 +48463,732,289,16,1,1,1 +48538,733,465,0,37,37,0 +48537,733,464,0,34,34,0 +48536,733,463,0,25,25,0 +48535,733,438,0,23,23,0 +48534,733,437,0,24,24,0 +48533,733,446,0,33,33,0 +48532,733,462,0,31,31,0 +48531,733,397,0,29,29,0 +48530,733,461,0,40,40,0 +48529,733,460,0,38,38,0 +48528,733,436,0,22,22,0 +48527,733,376,0,20,20,0 +48526,733,459,0,30,30,0 +48525,733,424,0,39,39,0 +48524,733,425,0,36,36,0 +48523,733,346,0,21,21,0 +48522,733,435,0,18,18,0 +48521,733,385,4,10,10,0 +48520,733,427,0,16,16,0 +48519,733,458,0,35,35,0 +48518,733,457,0,32,32,0 +48517,733,356,3,13,13,0 +48516,733,341,13,5,5,0 +48515,733,456,0,27,27,0 +48514,733,360,16,3,3,1 +48513,733,364,9,6,6,1 +48512,733,455,0,28,28,0 +48511,733,418,0,17,17,0 +48510,733,404,0,26,26,0 +48509,733,386,4,9,9,0 +48508,733,454,3,11,11,0 +48507,733,373,18,2,2,2 +48506,733,453,0,19,19,0 +48505,733,347,2,14,14,0 +48504,733,430,2,15,15,0 +48503,733,408,9,7,7,0 +48502,733,394,3,12,12,0 +48501,733,403,14,4,4,0 +48500,733,401,6,8,8,0 +48499,733,289,19,1,1,1 +48581,734,445,0,43,43,0 +48580,734,428,0,42,42,0 +48579,734,466,0,25,25,0 +48578,734,465,0,33,33,0 +48577,734,464,0,36,36,0 +48576,734,463,0,27,27,0 +48575,734,438,0,24,24,0 +48574,734,437,0,22,22,0 +48573,734,446,0,37,37,0 +48572,734,462,0,34,34,0 +48571,734,397,0,31,31,0 +48570,734,461,0,41,41,0 +48569,734,460,0,39,39,0 +48568,734,436,0,23,23,0 +48567,734,376,0,20,20,0 +48566,734,459,0,32,32,0 +48565,734,424,0,40,40,0 +48564,734,425,0,26,26,0 +48563,734,346,0,21,21,0 +48562,734,435,0,18,18,0 +48561,734,385,4,10,10,0 +48560,734,427,0,16,16,0 +48559,734,458,0,38,38,0 +48558,734,457,0,35,35,0 +48557,734,356,3,13,13,0 +48556,734,341,19,3,3,0 +48555,734,456,0,29,29,0 +48554,734,360,18,4,4,1 +48553,734,364,13,6,6,1 +48552,734,455,0,30,30,0 +48551,734,418,0,17,17,0 +48550,734,404,0,28,28,0 +48549,734,386,4,9,9,0 +48548,734,454,4,11,11,0 +48547,734,373,21,2,2,2 +48546,734,453,0,19,19,0 +48545,734,347,2,14,14,0 +48544,734,430,2,15,15,0 +48543,734,408,9,7,7,0 +48542,734,394,3,12,12,0 +48541,734,403,14,5,5,0 +48540,734,401,6,8,8,0 +48539,734,289,28,1,1,2 +48628,735,442,0,47,47,0 +48627,735,439,0,45,45,0 +48626,735,444,0,44,44,0 +48625,735,467,0,43,43,0 +48624,735,445,0,46,46,0 +48623,735,428,0,42,42,0 +48622,735,466,0,26,26,0 +48621,735,465,0,33,33,0 +48620,735,464,0,36,36,0 +48619,735,463,0,27,27,0 +48618,735,438,0,24,24,0 +48617,735,437,0,23,23,0 +48616,735,446,0,37,37,0 +48615,735,462,0,34,34,0 +48614,735,397,0,31,31,0 +48613,735,461,0,41,41,0 +48612,735,460,0,39,39,0 +48611,735,436,0,25,25,0 +48610,735,376,0,21,21,0 +48609,735,459,0,32,32,0 +48608,735,424,0,40,40,0 +48607,735,425,0,20,20,0 +48606,735,346,0,22,22,0 +48605,735,435,3,13,13,0 +48604,735,385,4,11,11,0 +48603,735,427,0,17,17,0 +48602,735,458,0,38,38,0 +48601,735,457,0,35,35,0 +48600,735,356,3,15,15,0 +48599,735,341,19,4,4,0 +48598,735,456,0,29,29,0 +48597,735,360,22,2,2,1 +48596,735,364,13,6,6,1 +48595,735,455,0,30,30,0 +48594,735,418,0,18,18,0 +48593,735,404,0,28,28,0 +48592,735,386,10,7,7,0 +48591,735,454,4,12,12,0 +48590,735,373,21,3,3,2 +48589,735,453,0,19,19,0 +48588,735,347,3,14,14,0 +48587,735,430,2,16,16,0 +48586,735,408,9,8,8,0 +48585,735,394,5,10,10,0 +48584,735,403,14,5,5,0 +48583,735,401,6,9,9,0 +48582,735,289,36,1,1,3 +48680,736,440,0,39,39,0 +48679,736,470,0,34,34,0 +48678,736,434,0,29,29,0 +48677,736,469,0,25,25,0 +48676,736,468,0,23,23,0 +48675,736,442,0,52,52,0 +48674,736,439,0,50,50,0 +48673,736,444,0,49,49,0 +48672,736,467,0,48,48,0 +48671,736,445,0,51,51,0 +48670,736,428,0,47,47,0 +48669,736,466,0,30,30,0 +48668,736,465,0,37,37,0 +48667,736,464,0,41,41,0 +48666,736,463,0,31,31,0 +48665,736,438,0,27,27,0 +48664,736,437,0,26,26,0 +48663,736,446,0,42,42,0 +48662,736,462,0,38,38,0 +48661,736,397,0,35,35,0 +48660,736,461,0,46,46,0 +48659,736,460,0,44,44,0 +48658,736,436,0,28,28,0 +48657,736,376,0,22,22,0 +48656,736,459,0,36,36,0 +48655,736,424,0,45,45,0 +48654,736,425,0,21,21,0 +48653,736,346,0,24,24,0 +48652,736,435,3,14,14,0 +48651,736,385,4,12,12,0 +48650,736,427,0,18,18,0 +48649,736,458,0,43,43,0 +48648,736,457,0,40,40,0 +48647,736,356,6,10,10,0 +48646,736,341,19,4,4,0 +48645,736,456,0,32,32,0 +48644,736,360,24,3,3,1 +48643,736,364,15,5,5,1 +48642,736,455,0,33,33,0 +48641,736,418,1,17,17,0 +48640,736,404,0,20,20,0 +48639,736,386,10,7,7,0 +48638,736,454,4,13,13,0 +48637,736,373,30,2,2,3 +48636,736,453,0,19,19,0 +48635,736,347,3,15,15,0 +48634,736,430,2,16,16,0 +48633,736,408,9,8,8,0 +48632,736,394,5,11,11,0 +48631,736,403,14,6,6,0 +48630,736,401,6,9,9,0 +48629,736,289,39,1,1,3 +48741,737,368,0,52,52,0 +48740,737,474,0,44,44,0 +48739,737,473,0,42,42,0 +48738,737,472,0,39,39,0 +48737,737,411,0,37,37,0 +48736,737,413,0,28,28,0 +48735,737,471,0,25,25,0 +48734,737,340,0,22,22,0 +48733,737,410,1,19,19,0 +48732,737,440,0,47,47,0 +48731,737,470,0,40,40,0 +48730,737,434,0,33,33,0 +48729,737,469,0,29,29,0 +48728,737,468,0,26,26,0 +48727,737,442,0,61,61,0 +48726,737,439,0,59,59,0 +48725,737,444,0,58,58,0 +48724,737,467,0,57,57,0 +48723,737,445,0,60,60,0 +48722,737,428,0,56,56,0 +48721,737,466,0,34,34,0 +48720,737,465,0,45,45,0 +48719,737,464,0,49,49,0 +48718,737,463,0,35,35,0 +48717,737,438,0,31,31,0 +48716,737,437,0,30,30,0 +48715,737,446,0,50,50,0 +48714,737,462,0,46,46,0 +48713,737,397,0,41,41,0 +48712,737,461,0,55,55,0 +48711,737,460,0,53,53,0 +48710,737,436,0,32,32,0 +48709,737,376,0,24,24,0 +48708,737,459,0,43,43,0 +48707,737,424,0,54,54,0 +48706,737,425,0,23,23,0 +48705,737,346,0,27,27,0 +48704,737,435,3,14,14,0 +48703,737,385,4,12,12,0 +48702,737,427,0,20,20,0 +48701,737,458,0,51,51,0 +48700,737,457,0,48,48,0 +48699,737,356,9,9,9,0 +48698,737,341,19,4,4,0 +48697,737,456,0,36,36,0 +48696,737,360,27,3,3,1 +48695,737,364,15,5,5,1 +48694,737,455,0,38,38,0 +48693,737,418,1,18,18,0 +48692,737,404,2,16,16,0 +48691,737,386,10,8,8,0 +48690,737,454,4,13,13,0 +48689,737,373,30,2,2,3 +48688,737,453,0,21,21,0 +48687,737,347,3,15,15,0 +48686,737,430,2,17,17,0 +48685,737,408,13,7,7,0 +48684,737,394,5,11,11,0 +48683,737,403,14,6,6,0 +48682,737,401,6,10,10,0 +48681,737,289,42,1,1,4 +48090,738,482,0,21,21,0 +48089,738,376,0,20,20,0 +48088,738,418,0,19,19,0 +48087,738,481,0,18,18,0 +48086,738,404,0,17,17,0 +48085,738,289,0,16,16,0 +48084,738,356,0,15,15,0 +48083,738,480,0,14,14,0 +48082,738,479,0,13,13,0 +48081,738,347,0,12,12,0 +48080,738,341,0,11,11,0 +48079,738,373,0,10,10,0 +48078,738,478,0,9,9,0 +48077,738,477,0,8,8,0 +48076,738,427,0,7,7,0 +48075,738,360,1,6,6,0 +48074,738,364,2,5,5,0 +48073,738,476,3,4,4,0 +48072,738,403,4,3,3,0 +48071,738,386,6,2,2,0 +48070,738,475,9,1,1,1 +48114,739,437,0,20,20,0 +48113,739,430,0,17,17,0 +48112,739,401,0,16,16,0 +48111,739,482,0,24,24,0 +48110,739,376,0,23,23,0 +48109,739,418,0,19,19,0 +48108,739,481,0,22,22,0 +48107,739,404,0,21,21,0 +48106,739,289,0,11,11,0 +48105,739,356,1,8,8,0 +48104,739,480,0,18,18,0 +48103,739,479,0,13,13,0 +48102,739,347,0,15,15,0 +48101,739,341,0,9,9,0 +48100,739,373,4,5,5,0 +48099,739,478,0,14,14,0 +48098,739,477,0,12,12,0 +48097,739,427,0,10,10,0 +48096,739,360,1,7,7,0 +48095,739,364,2,6,6,0 +48094,739,476,12,2,2,1 +48093,739,403,10,3,3,0 +48092,739,386,8,4,4,0 +48091,739,475,12,1,1,1 +48143,740,455,0,29,29,0 +48142,740,459,0,28,28,0 +48141,740,435,0,27,27,0 +48140,740,385,0,22,22,0 +48139,740,453,0,17,17,0 +48138,740,437,0,24,24,0 +48137,740,430,0,19,19,0 +48136,740,401,0,20,20,0 +48135,740,482,3,6,6,0 +48134,740,376,0,26,26,0 +48133,740,418,0,18,18,0 +48132,740,481,0,25,25,0 +48131,740,404,0,23,23,0 +48130,740,289,0,13,13,0 +48129,740,356,1,10,10,0 +48128,740,480,0,21,21,0 +48127,740,479,0,15,15,0 +48126,740,347,0,11,11,0 +48125,740,341,2,8,8,0 +48124,740,373,4,5,5,0 +48123,740,478,0,16,16,0 +48122,740,477,0,14,14,0 +48121,740,427,0,12,12,0 +48120,740,360,1,9,9,0 +48119,740,364,3,7,7,0 +48118,740,476,18,2,2,1 +48117,740,403,19,1,1,1 +48116,740,386,12,4,4,0 +48115,740,475,12,3,3,1 +48178,741,484,0,35,35,0 +48177,741,485,0,34,34,0 +48176,741,428,0,33,33,0 +48175,741,483,0,30,30,0 +48174,741,456,0,17,17,0 +48173,741,394,9,5,5,1 +48172,741,455,0,32,32,0 +48171,741,459,0,31,31,0 +48170,741,435,0,28,28,0 +48169,741,385,0,27,27,0 +48168,741,453,0,20,20,0 +48167,741,437,0,26,26,0 +48166,741,430,0,23,23,0 +48165,741,401,0,25,25,0 +48164,741,482,3,9,9,0 +48163,741,376,0,29,29,0 +48162,741,418,0,21,21,0 +48161,741,481,0,22,22,0 +48160,741,404,3,8,8,0 +48159,741,289,1,12,12,0 +48158,741,356,1,13,13,0 +48157,741,480,0,24,24,0 +48156,741,479,0,18,18,0 +48155,741,347,0,14,14,0 +48154,741,341,2,11,11,0 +48153,741,373,8,7,7,0 +48152,741,478,0,19,19,0 +48151,741,477,0,16,16,0 +48150,741,427,0,15,15,0 +48149,741,360,3,10,10,0 +48148,741,364,9,6,6,0 +48147,741,476,18,2,2,1 +48146,741,403,19,1,1,1 +48145,741,386,12,4,4,0 +48144,741,475,12,3,3,1 +48218,742,487,0,39,39,0 +48217,742,460,0,37,37,0 +48216,742,441,0,36,36,0 +48215,742,465,0,29,29,0 +48214,742,408,0,26,26,0 +48213,742,484,0,40,40,0 +48212,742,485,0,38,38,0 +48211,742,428,0,35,35,0 +48210,742,483,0,33,33,0 +48209,742,456,1,15,15,0 +48208,742,394,9,5,5,1 +48207,742,455,0,30,30,0 +48206,742,459,0,34,34,0 +48205,742,435,0,31,31,0 +48204,742,385,0,25,25,0 +48203,742,453,0,20,20,0 +48202,742,437,0,28,28,0 +48201,742,430,0,23,23,0 +48200,742,401,0,27,27,0 +48199,742,482,3,10,10,0 +48198,742,376,0,32,32,0 +48197,742,418,0,21,21,0 +48196,742,481,0,22,22,0 +48195,742,404,3,9,9,0 +48194,742,289,1,14,14,0 +48193,742,356,4,8,8,0 +48192,742,480,0,24,24,0 +48191,742,479,0,18,18,0 +48190,742,347,2,12,12,0 +48189,742,341,2,13,13,0 +48188,742,373,8,7,7,0 +48187,742,478,0,19,19,0 +48186,742,477,0,17,17,0 +48185,742,427,0,16,16,0 +48184,742,360,3,11,11,0 +48183,742,364,9,6,6,0 +48182,742,476,27,1,1,2 +48181,742,403,25,2,2,1 +48180,742,386,16,3,3,0 +48179,742,475,12,4,4,1 +48263,743,436,0,45,45,0 +48262,743,490,0,44,44,0 +48261,743,489,0,43,43,0 +48260,743,488,0,40,40,0 +48259,743,431,0,38,38,0 +48258,743,487,0,41,41,0 +48257,743,460,0,31,31,0 +48256,743,441,0,37,37,0 +48255,743,465,0,30,30,0 +48254,743,408,0,23,23,0 +48253,743,484,0,42,42,0 +48252,743,485,0,39,39,0 +48251,743,428,0,35,35,0 +48250,743,483,0,36,36,0 +48249,743,456,1,14,14,0 +48248,743,394,9,6,6,1 +48247,743,455,0,32,32,0 +48246,743,459,0,29,29,0 +48245,743,435,0,33,33,0 +48244,743,385,0,27,27,0 +48243,743,453,0,19,19,0 +48242,743,437,0,26,26,0 +48241,743,430,0,24,24,0 +48240,743,401,0,28,28,0 +48239,743,482,3,12,12,0 +48238,743,376,0,34,34,0 +48237,743,418,0,21,21,0 +48236,743,481,0,22,22,0 +48235,743,404,3,11,11,0 +48234,743,289,1,15,15,0 +48233,743,356,4,8,8,0 +48232,743,480,0,25,25,0 +48231,743,479,0,18,18,0 +48230,743,347,2,13,13,0 +48229,743,341,4,9,9,0 +48228,743,373,11,5,5,0 +48227,743,478,0,20,20,0 +48226,743,477,0,17,17,0 +48225,743,427,0,16,16,0 +48224,743,360,4,10,10,0 +48223,743,364,9,7,7,0 +48222,743,476,33,1,1,2 +48221,743,403,29,2,2,1 +48220,743,386,16,4,4,0 +48219,743,475,21,3,3,2 +48318,744,492,0,55,55,0 +48317,744,467,0,54,54,0 +48316,744,491,0,53,53,0 +48315,744,429,0,52,52,0 +48314,744,444,0,49,49,0 +48313,744,424,0,46,46,0 +48312,744,486,0,43,43,0 +48311,744,425,0,40,40,0 +48310,744,454,0,37,37,0 +48309,744,447,0,35,35,0 +48308,744,436,0,51,51,0 +48307,744,490,0,50,50,0 +48306,744,489,0,29,29,0 +48305,744,488,0,48,48,0 +48304,744,431,0,44,44,0 +48303,744,487,0,47,47,0 +48302,744,460,0,33,33,0 +48301,744,441,0,25,25,0 +48300,744,465,0,32,32,0 +48299,744,408,0,26,26,0 +48298,744,484,0,42,42,0 +48297,744,485,0,45,45,0 +48296,744,428,0,39,39,0 +48295,744,483,0,41,41,0 +48294,744,456,2,16,16,0 +48293,744,394,9,7,7,1 +48292,744,455,0,34,34,0 +48291,744,459,0,31,31,0 +48290,744,435,0,36,36,0 +48289,744,385,0,20,20,0 +48288,744,453,3,11,11,0 +48287,744,437,0,28,28,0 +48286,744,430,0,19,19,0 +48285,744,401,0,30,30,0 +48284,744,482,3,13,13,0 +48283,744,376,0,38,38,0 +48282,744,418,0,23,23,0 +48281,744,481,0,24,24,0 +48280,744,404,3,12,12,0 +48279,744,289,1,17,17,0 +48278,744,356,4,9,9,0 +48277,744,480,0,27,27,0 +48276,744,479,2,15,15,0 +48275,744,347,2,14,14,0 +48274,744,341,4,10,10,0 +48273,744,373,11,6,6,0 +48272,744,478,0,22,22,0 +48271,744,477,0,21,21,0 +48270,744,427,0,18,18,0 +48269,744,360,8,8,8,0 +48268,744,364,15,5,5,0 +48267,744,476,33,2,2,2 +48266,744,403,34,1,1,2 +48265,744,386,16,4,4,0 +48264,744,475,21,3,3,2 +48380,745,495,0,47,47,0 +48379,745,433,0,43,43,0 +48378,745,494,0,39,39,0 +48377,745,440,0,38,38,0 +48376,745,434,0,28,28,0 +48375,745,493,0,24,24,0 +48374,745,468,0,22,22,0 +48373,745,492,0,62,62,0 +48372,745,467,0,61,61,0 +48371,745,491,0,60,60,0 +48370,745,429,0,59,59,0 +48369,745,444,0,56,56,0 +48368,745,424,0,53,53,0 +48367,745,486,0,50,50,0 +48366,745,425,0,46,46,0 +48365,745,454,0,42,42,0 +48364,745,447,0,40,40,0 +48363,745,436,0,58,58,0 +48362,745,490,0,57,57,0 +48361,745,489,0,32,32,0 +48360,745,488,0,55,55,0 +48359,745,431,0,51,51,0 +48358,745,487,0,54,54,0 +48357,745,460,0,36,36,0 +48356,745,441,0,27,27,0 +48355,745,465,0,35,35,0 +48354,745,408,0,29,29,0 +48353,745,484,0,49,49,0 +48352,745,485,0,52,52,0 +48351,745,428,0,45,45,0 +48350,745,483,0,48,48,0 +48349,745,456,2,17,17,0 +48348,745,394,9,9,9,1 +48347,745,455,0,37,37,0 +48346,745,459,0,34,34,0 +48345,745,435,0,41,41,0 +48344,745,385,0,20,20,0 +48343,745,453,3,13,13,0 +48342,745,437,0,31,31,0 +48341,745,430,0,19,19,0 +48340,745,401,0,33,33,0 +48339,745,482,3,14,14,0 +48338,745,376,0,44,44,0 +48337,745,418,0,25,25,0 +48336,745,481,0,26,26,0 +48335,745,404,12,6,6,1 +48334,745,289,3,16,16,0 +48333,745,356,4,11,11,0 +48332,745,480,0,30,30,0 +48331,745,479,6,10,10,0 +48330,745,347,3,15,15,0 +48329,745,341,4,12,12,0 +48328,745,373,11,7,7,0 +48327,745,478,0,23,23,0 +48326,745,477,0,21,21,0 +48325,745,427,0,18,18,0 +48324,745,360,11,8,8,0 +48323,745,364,21,4,4,0 +48322,745,476,33,2,2,2 +48321,745,403,34,1,1,2 +48320,745,386,16,5,5,0 +48319,745,475,21,3,3,2 +49690,746,483,0,22,22,0 +49689,746,504,0,21,21,0 +49688,746,503,0,20,20,0 +49687,746,502,0,19,19,0 +49686,746,289,0,18,18,0 +49685,746,356,0,17,17,0 +49684,746,501,0,16,16,0 +49683,746,439,0,15,15,0 +49682,746,500,0,14,14,0 +49681,746,418,0,13,13,0 +49680,746,499,0,12,12,0 +49679,746,498,0,11,11,0 +49678,746,497,0,10,10,0 +49677,746,403,0,9,9,0 +49676,746,347,0,8,8,0 +49675,746,404,1,5,5,0 +49674,746,476,2,4,4,0 +49673,746,496,3,3,3,0 +49672,746,475,0,6,6,0 +49671,746,477,6,2,2,0 +49670,746,360,8,1,1,1 +49724,747,437,0,33,33,0 +49723,747,508,0,32,32,0 +49722,747,507,0,30,30,0 +49721,747,484,0,27,27,0 +49720,747,506,0,26,26,0 +49719,747,427,0,11,11,0 +49718,747,341,0,24,24,0 +49717,747,505,0,22,22,0 +49716,747,456,0,20,20,0 +49715,747,364,0,19,19,0 +49714,747,386,1,10,10,0 +49713,747,479,3,5,5,0 +49712,747,483,0,31,31,0 +49711,747,504,0,29,29,0 +49710,747,503,0,28,28,0 +49709,747,502,0,21,21,0 +49708,747,289,0,12,12,0 +49707,747,356,0,25,25,0 +49706,747,501,0,23,23,0 +49705,747,439,0,18,18,0 +49704,747,500,0,17,17,0 +49703,747,418,0,16,16,0 +49702,747,499,0,15,15,0 +49701,747,498,0,14,14,0 +49700,747,497,0,13,13,0 +49699,747,403,4,4,4,0 +49698,747,347,2,7,7,0 +49697,747,404,1,9,9,0 +49696,747,476,2,8,8,0 +49695,747,496,3,6,6,0 +49694,747,475,8,2,2,1 +49693,747,477,6,3,3,0 +49692,747,360,14,1,1,1 +49790,748,539,0,51,51,0 +49789,748,538,0,50,50,0 +49788,748,537,0,49,49,0 +49787,748,536,0,48,48,0 +49786,748,535,0,47,47,0 +49785,748,534,0,46,46,0 +49784,748,533,0,45,45,0 +49783,748,532,0,44,44,0 +49782,748,531,0,43,43,0 +49781,748,530,0,42,42,0 +49780,748,529,0,41,41,0 +49779,748,528,0,40,40,0 +49778,748,527,0,39,39,0 +49777,748,526,0,38,38,0 +49776,748,525,0,37,37,0 +49775,748,524,0,36,36,0 +49774,748,523,0,35,35,0 +49773,748,522,0,34,34,0 +49772,748,521,0,33,33,0 +49771,748,520,0,32,32,0 +49770,748,519,0,29,29,0 +49769,748,518,0,28,28,0 +49768,748,517,0,25,25,0 +49767,748,516,0,23,23,0 +49766,748,515,0,22,22,0 +49765,748,514,0,20,20,0 +49764,748,494,0,19,19,0 +49763,748,513,1,16,16,0 +49762,748,512,2,13,13,0 +49761,748,511,3,8,8,0 +49760,748,510,4,7,7,0 +49759,748,449,6,5,5,0 +49758,748,509,8,3,3,1 +49757,748,437,0,66,66,0 +49756,748,508,0,65,65,0 +49755,748,507,0,63,63,0 +49754,748,484,0,60,60,0 +49753,748,506,0,59,59,0 +49752,748,427,0,17,17,0 +49751,748,341,0,57,57,0 +49750,748,505,0,55,55,0 +49749,748,456,0,53,53,0 +49748,748,364,0,52,52,0 +49747,748,386,1,15,15,0 +49746,748,479,3,9,9,0 +49745,748,483,0,64,64,0 +49744,748,504,0,62,62,0 +49743,748,503,0,61,61,0 +49742,748,502,0,54,54,0 +49741,748,289,0,18,18,0 +49740,748,356,0,58,58,0 +49739,748,501,0,56,56,0 +49738,748,439,0,31,31,0 +49737,748,500,0,30,30,0 +49736,748,418,0,27,27,0 +49735,748,499,0,26,26,0 +49734,748,498,0,24,24,0 +49733,748,497,0,21,21,0 +49732,748,403,4,6,6,0 +49731,748,347,2,11,11,0 +49730,748,404,1,14,14,0 +49729,748,476,2,12,12,0 +49728,748,496,3,10,10,0 +49727,748,475,8,2,2,1 +49726,748,477,6,4,4,0 +49725,748,360,14,1,1,1 +49859,749,373,0,58,58,0 +49858,749,430,0,22,22,0 +49857,749,481,0,21,21,0 +49856,749,539,0,54,54,0 +49855,749,538,0,53,53,0 +49854,749,537,0,52,52,0 +49853,749,536,0,51,51,0 +49852,749,535,0,50,50,0 +49851,749,534,0,49,49,0 +49850,749,533,0,48,48,0 +49849,749,532,0,47,47,0 +49848,749,531,0,46,46,0 +49847,749,530,0,45,45,0 +49846,749,529,0,44,44,0 +49845,749,528,0,43,43,0 +49844,749,527,0,42,42,0 +49843,749,526,0,41,41,0 +49842,749,525,0,40,40,0 +49841,749,524,0,39,39,0 +49840,749,523,0,38,38,0 +49839,749,522,0,37,37,0 +49838,749,521,0,36,36,0 +49837,749,520,0,35,35,0 +49836,749,519,0,32,32,0 +49835,749,518,0,31,31,0 +49834,749,517,0,28,28,0 +49833,749,516,0,26,26,0 +49832,749,515,0,25,25,0 +49831,749,514,0,23,23,0 +49830,749,494,0,20,20,0 +49829,749,513,1,18,18,0 +49828,749,512,2,16,16,0 +49827,749,511,3,13,13,0 +49826,749,510,4,10,10,0 +49825,749,449,6,7,7,0 +49824,749,509,8,4,4,1 +49823,749,437,0,69,69,0 +49822,749,508,0,64,64,0 +49821,749,507,0,66,66,0 +49820,749,484,0,63,63,0 +49819,749,506,0,62,62,0 +49818,749,427,0,19,19,0 +49817,749,341,0,61,61,0 +49816,749,505,0,59,59,0 +49815,749,456,0,57,57,0 +49814,749,364,0,56,56,0 +49813,749,386,2,17,17,0 +49812,749,479,3,12,12,0 +49811,749,483,0,68,68,0 +49810,749,504,0,67,67,0 +49809,749,503,0,65,65,0 +49808,749,502,0,55,55,0 +49807,749,289,4,8,8,0 +49806,749,356,8,3,3,1 +49805,749,501,0,60,60,0 +49804,749,439,0,34,34,0 +49803,749,500,0,33,33,0 +49802,749,418,0,30,30,0 +49801,749,499,0,29,29,0 +49800,749,498,0,27,27,0 +49799,749,497,0,24,24,0 +49798,749,403,4,9,9,0 +49797,749,347,2,15,15,0 +49796,749,404,7,5,5,0 +49795,749,476,4,11,11,0 +49794,749,496,3,14,14,0 +49793,749,475,11,2,2,1 +49792,749,477,6,6,6,0 +49791,749,360,14,1,1,1 +49932,750,540,0,69,69,0 +49931,750,435,0,59,59,0 +49930,750,376,1,20,20,0 +49929,750,482,4,10,10,0 +49928,750,373,2,17,17,0 +49927,750,430,0,25,25,0 +49926,750,481,0,24,24,0 +49925,750,539,0,57,57,0 +49924,750,538,0,56,56,0 +49923,750,537,0,55,55,0 +49922,750,536,0,54,54,0 +49921,750,535,0,53,53,0 +49920,750,534,0,52,52,0 +49919,750,533,0,51,51,0 +49918,750,532,0,50,50,0 +49917,750,531,0,49,49,0 +49916,750,530,0,48,48,0 +49915,750,529,0,47,47,0 +49914,750,528,0,46,46,0 +49913,750,527,0,45,45,0 +49912,750,526,0,44,44,0 +49911,750,525,0,43,43,0 +49910,750,524,0,42,42,0 +49909,750,523,0,41,41,0 +49908,750,522,0,40,40,0 +49907,750,521,0,39,39,0 +49906,750,520,0,38,38,0 +49905,750,519,0,35,35,0 +49904,750,518,0,34,34,0 +49903,750,517,0,31,31,0 +49902,750,516,0,29,29,0 +49901,750,515,0,28,28,0 +49900,750,514,0,26,26,0 +49899,750,494,0,23,23,0 +49898,750,513,1,21,21,0 +49897,750,512,2,18,18,0 +49896,750,511,3,14,14,0 +49895,750,510,4,11,11,0 +49894,750,449,6,8,8,0 +49893,750,509,8,4,4,1 +49892,750,437,0,73,73,0 +49891,750,508,0,66,66,0 +49890,750,507,0,63,63,0 +49889,750,484,0,68,68,0 +49888,750,506,0,67,67,0 +49887,750,427,0,22,22,0 +49886,750,341,0,65,65,0 +49885,750,505,0,61,61,0 +49884,750,456,0,62,62,0 +49883,750,364,0,60,60,0 +49882,750,386,2,19,19,0 +49881,750,479,3,13,13,0 +49880,750,483,0,72,72,0 +49879,750,504,0,71,71,0 +49878,750,503,0,70,70,0 +49877,750,502,0,58,58,0 +49876,750,289,4,9,9,0 +49875,750,356,16,2,2,2 +49874,750,501,0,64,64,0 +49873,750,439,0,37,37,0 +49872,750,500,0,36,36,0 +49871,750,418,0,33,33,0 +49870,750,499,0,32,32,0 +49869,750,498,0,30,30,0 +49868,750,497,0,27,27,0 +49867,750,403,7,6,6,0 +49866,750,347,2,16,16,0 +49865,750,404,7,5,5,0 +49864,750,476,4,12,12,0 +49863,750,496,3,15,15,0 +49862,750,475,11,3,3,1 +49861,750,477,6,7,7,0 +49860,750,360,20,1,1,1 +50007,751,542,0,75,75,0 +50006,751,541,1,22,22,0 +50005,751,540,0,71,71,0 +50004,751,435,0,62,62,0 +50003,751,376,1,21,21,0 +50002,751,482,10,4,4,0 +50001,751,373,4,13,13,0 +50000,751,430,0,27,27,0 +49999,751,481,3,14,14,0 +49998,751,539,0,60,60,0 +49997,751,538,0,59,59,0 +49996,751,537,0,58,58,0 +49995,751,536,0,57,57,0 +49994,751,535,0,56,56,0 +49993,751,534,0,55,55,0 +49992,751,533,0,54,54,0 +49991,751,532,0,53,53,0 +49990,751,531,0,52,52,0 +49989,751,530,0,51,51,0 +49988,751,529,0,50,50,0 +49987,751,528,0,49,49,0 +49986,751,527,0,48,48,0 +49985,751,526,0,47,47,0 +49984,751,525,0,46,46,0 +49983,751,524,0,45,45,0 +49982,751,523,0,44,44,0 +49981,751,522,0,43,43,0 +49980,751,521,0,42,42,0 +49979,751,520,0,41,41,0 +49978,751,519,0,39,39,0 +49977,751,518,0,37,37,0 +49976,751,517,0,35,35,0 +49975,751,516,0,33,33,0 +49974,751,515,0,31,31,0 +49973,751,514,0,28,28,0 +49972,751,494,0,25,25,0 +49971,751,513,1,23,23,0 +49970,751,512,2,19,19,0 +49969,751,511,3,16,16,0 +49968,751,510,4,11,11,0 +49967,751,449,6,9,9,0 +49966,751,509,8,5,5,1 +49965,751,437,0,32,32,0 +49964,751,508,0,69,69,0 +49963,751,507,0,66,66,0 +49962,751,484,0,70,70,0 +49961,751,506,0,26,26,0 +49960,751,427,0,24,24,0 +49959,751,341,0,68,68,0 +49958,751,505,0,64,64,0 +49957,751,456,0,65,65,0 +49956,751,364,0,63,63,0 +49955,751,386,2,20,20,0 +49954,751,479,3,15,15,0 +49953,751,483,0,74,74,0 +49952,751,504,0,73,73,0 +49951,751,503,0,72,72,0 +49950,751,502,0,61,61,0 +49949,751,289,4,10,10,0 +49948,751,356,24,1,1,3 +49947,751,501,0,67,67,0 +49946,751,439,0,40,40,0 +49945,751,500,0,38,38,0 +49944,751,418,0,29,29,0 +49943,751,499,0,36,36,0 +49942,751,498,0,34,34,0 +49941,751,497,0,30,30,0 +49940,751,403,7,7,7,0 +49939,751,347,2,18,18,0 +49938,751,404,7,6,6,0 +49937,751,476,4,12,12,0 +49936,751,496,3,17,17,0 +49935,751,475,11,3,3,1 +49934,751,477,6,8,8,0 +49933,751,360,24,2,2,1 +50084,752,465,0,77,77,0 +50083,752,486,0,76,76,0 +50082,752,542,0,39,39,0 +50081,752,541,1,23,23,0 +50080,752,540,0,72,72,0 +50079,752,435,0,66,66,0 +50078,752,376,1,22,22,0 +50077,752,482,10,5,5,0 +50076,752,373,4,15,15,0 +50075,752,430,0,28,28,0 +50074,752,481,3,16,16,0 +50073,752,539,0,64,64,0 +50072,752,538,0,63,63,0 +50071,752,537,0,62,62,0 +50070,752,536,0,61,61,0 +50069,752,535,0,60,60,0 +50068,752,534,0,59,59,0 +50067,752,533,0,58,58,0 +50066,752,532,0,57,57,0 +50065,752,531,0,56,56,0 +50064,752,530,0,55,55,0 +50063,752,529,0,54,54,0 +50062,752,528,0,53,53,0 +50061,752,527,0,52,52,0 +50060,752,526,0,51,51,0 +50059,752,525,0,50,50,0 +50058,752,524,0,49,49,0 +50057,752,523,0,48,48,0 +50056,752,522,0,47,47,0 +50055,752,521,0,46,46,0 +50054,752,520,0,45,45,0 +50053,752,519,0,43,43,0 +50052,752,518,0,40,40,0 +50051,752,517,0,37,37,0 +50050,752,516,0,35,35,0 +50049,752,515,0,32,32,0 +50048,752,514,0,29,29,0 +50047,752,494,0,26,26,0 +50046,752,513,1,24,24,0 +50045,752,512,2,20,20,0 +50044,752,511,3,17,17,0 +50043,752,510,4,14,14,0 +50042,752,449,6,10,10,0 +50041,752,509,8,6,6,1 +50040,752,437,0,34,34,0 +50039,752,508,0,71,71,0 +50038,752,507,0,69,69,0 +50037,752,484,0,42,42,0 +50036,752,506,0,27,27,0 +50035,752,427,0,25,25,0 +50034,752,341,6,8,8,0 +50033,752,505,0,67,67,0 +50032,752,456,0,68,68,0 +50031,752,364,0,33,33,0 +50030,752,386,2,21,21,0 +50029,752,479,5,11,11,0 +50028,752,483,0,75,75,0 +50027,752,504,0,74,74,0 +50026,752,503,0,73,73,0 +50025,752,502,0,65,65,0 +50024,752,289,4,13,13,0 +50023,752,356,32,1,1,4 +50022,752,501,0,70,70,0 +50021,752,439,0,44,44,0 +50020,752,500,0,41,41,0 +50019,752,418,0,30,30,0 +50018,752,499,0,38,38,0 +50017,752,498,0,36,36,0 +50016,752,497,0,31,31,0 +50015,752,403,7,7,7,0 +50014,752,347,2,19,19,0 +50013,752,404,11,4,4,0 +50012,752,476,5,12,12,0 +50011,752,496,3,18,18,0 +50010,752,475,11,3,3,1 +50009,752,477,6,9,9,0 +50008,752,360,27,2,2,1 +50162,753,432,0,67,67,0 +50161,753,465,0,78,78,0 +50160,753,486,0,77,77,0 +50159,753,542,0,39,39,0 +50158,753,541,1,23,23,0 +50157,753,540,0,73,73,0 +50156,753,435,0,66,66,0 +50155,753,376,1,22,22,0 +50154,753,482,10,5,5,0 +50153,753,373,8,7,7,0 +50152,753,430,0,28,28,0 +50151,753,481,3,16,16,0 +50150,753,539,0,64,64,0 +50149,753,538,0,63,63,0 +50148,753,537,0,62,62,0 +50147,753,536,0,61,61,0 +50146,753,535,0,60,60,0 +50145,753,534,0,59,59,0 +50144,753,533,0,58,58,0 +50143,753,532,0,57,57,0 +50142,753,531,0,56,56,0 +50141,753,530,0,55,55,0 +50140,753,529,0,54,54,0 +50139,753,528,0,53,53,0 +50138,753,527,0,52,52,0 +50137,753,526,0,51,51,0 +50136,753,525,0,50,50,0 +50135,753,524,0,49,49,0 +50134,753,523,0,48,48,0 +50133,753,522,0,47,47,0 +50132,753,521,0,46,46,0 +50131,753,520,0,45,45,0 +50130,753,519,0,43,43,0 +50129,753,518,0,40,40,0 +50128,753,517,0,37,37,0 +50127,753,516,0,35,35,0 +50126,753,515,0,32,32,0 +50125,753,514,0,29,29,0 +50124,753,494,0,26,26,0 +50123,753,513,1,24,24,0 +50122,753,512,2,20,20,0 +50121,753,511,3,17,17,0 +50120,753,510,4,15,15,0 +50119,753,449,6,13,13,0 +50118,753,509,8,6,6,1 +50117,753,437,0,34,34,0 +50116,753,508,0,72,72,0 +50115,753,507,0,70,70,0 +50114,753,484,0,42,42,0 +50113,753,506,0,27,27,0 +50112,753,427,0,25,25,0 +50111,753,341,6,11,11,0 +50110,753,505,0,68,68,0 +50109,753,456,0,69,69,0 +50108,753,364,0,33,33,0 +50107,753,386,2,21,21,0 +50106,753,479,7,10,10,0 +50105,753,483,0,76,76,0 +50104,753,504,0,75,75,0 +50103,753,503,0,74,74,0 +50102,753,502,0,65,65,0 +50101,753,289,4,14,14,0 +50100,753,356,40,1,1,5 +50099,753,501,0,71,71,0 +50098,753,439,0,44,44,0 +50097,753,500,0,41,41,0 +50096,753,418,0,30,30,0 +50095,753,499,0,38,38,0 +50094,753,498,0,36,36,0 +50093,753,497,0,31,31,0 +50092,753,403,7,9,9,0 +50091,753,347,2,19,19,0 +50090,753,404,12,3,3,0 +50089,753,476,8,8,8,0 +50088,753,496,3,18,18,0 +50087,753,475,11,4,4,1 +50086,753,477,6,12,12,0 +50085,753,360,33,2,2,1 +50250,754,547,0,83,83,0 +50249,754,546,0,81,81,0 +50248,754,398,0,80,80,0 +50247,754,491,0,77,77,0 +50246,754,545,0,42,42,0 +50245,754,455,0,37,37,0 +50244,754,544,0,33,33,0 +50243,754,431,0,29,29,0 +50242,754,478,1,26,26,0 +50241,754,543,3,20,20,0 +50240,754,432,0,73,73,0 +50239,754,465,0,88,88,0 +50238,754,486,0,87,87,0 +50237,754,542,0,46,46,0 +50236,754,541,1,25,25,0 +50235,754,540,0,84,84,0 +50234,754,435,4,16,16,0 +50233,754,376,1,24,24,0 +50232,754,482,10,6,6,0 +50231,754,373,8,10,10,0 +50230,754,430,0,32,32,0 +50229,754,481,3,18,18,0 +50228,754,539,0,71,71,0 +50227,754,538,0,70,70,0 +50226,754,537,0,69,69,0 +50225,754,536,0,68,68,0 +50224,754,535,0,67,67,0 +50223,754,534,0,66,66,0 +50222,754,533,0,65,65,0 +50221,754,532,0,64,64,0 +50220,754,531,0,63,63,0 +50219,754,530,0,62,62,0 +50218,754,529,0,61,61,0 +50217,754,528,0,60,60,0 +50216,754,527,0,59,59,0 +50215,754,526,0,58,58,0 +50214,754,525,0,57,57,0 +50213,754,524,0,56,56,0 +50212,754,523,0,55,55,0 +50211,754,522,0,54,54,0 +50210,754,521,0,53,53,0 +50209,754,520,0,52,52,0 +50208,754,519,0,50,50,0 +50207,754,518,0,47,47,0 +50206,754,517,0,44,44,0 +50205,754,516,0,41,41,0 +50204,754,515,0,38,38,0 +50203,754,514,0,34,34,0 +50202,754,494,0,30,30,0 +50201,754,513,1,27,27,0 +50200,754,512,2,23,23,0 +50199,754,511,3,19,19,0 +50198,754,510,4,17,17,0 +50197,754,449,6,14,14,0 +50196,754,509,8,8,8,1 +50195,754,437,0,40,40,0 +50194,754,508,0,82,82,0 +50193,754,507,0,76,76,0 +50192,754,484,0,49,49,0 +50191,754,506,0,31,31,0 +50190,754,427,0,28,28,0 +50189,754,341,6,12,12,0 +50188,754,505,0,74,74,0 +50187,754,456,0,75,75,0 +50186,754,364,0,39,39,0 +50185,754,386,8,9,9,0 +50184,754,479,7,11,11,0 +50183,754,483,0,78,78,0 +50182,754,504,0,86,86,0 +50181,754,503,0,85,85,0 +50180,754,502,0,72,72,0 +50179,754,289,4,15,15,0 +50178,754,356,40,1,1,5 +50177,754,501,0,79,79,0 +50176,754,439,0,51,51,0 +50175,754,500,0,48,48,0 +50174,754,418,0,35,35,0 +50173,754,499,0,45,45,0 +50172,754,498,0,43,43,0 +50171,754,497,0,36,36,0 +50170,754,403,15,3,3,1 +50169,754,347,2,22,22,0 +50168,754,404,12,4,4,0 +50167,754,476,10,7,7,0 +50166,754,496,3,21,21,0 +50165,754,475,11,5,5,1 +50164,754,477,6,13,13,0 +50163,754,360,33,2,2,1 +50341,755,548,0,54,54,0 +50340,755,353,0,49,49,0 +50339,755,440,0,30,30,0 +50338,755,547,0,86,86,0 +50337,755,546,0,84,84,0 +50336,755,398,0,83,83,0 +50335,755,491,0,80,80,0 +50334,755,545,0,45,45,0 +50333,755,455,0,39,39,0 +50332,755,544,0,35,35,0 +50331,755,431,0,29,29,0 +50330,755,478,1,26,26,0 +50329,755,543,3,21,21,0 +50328,755,432,0,78,78,0 +50327,755,465,0,91,91,0 +50326,755,486,0,90,90,0 +50325,755,542,0,50,50,0 +50324,755,541,1,25,25,0 +50323,755,540,0,87,87,0 +50322,755,435,4,16,16,0 +50321,755,376,1,24,24,0 +50320,755,482,10,6,6,0 +50319,755,373,8,10,10,0 +50318,755,430,0,34,34,0 +50317,755,481,3,19,19,0 +50316,755,539,0,76,76,0 +50315,755,538,0,75,75,0 +50314,755,537,0,74,74,0 +50313,755,536,0,73,73,0 +50312,755,535,0,72,72,0 +50311,755,534,0,71,71,0 +50310,755,533,0,70,70,0 +50309,755,532,0,69,69,0 +50308,755,531,0,68,68,0 +50307,755,530,0,67,67,0 +50306,755,529,0,66,66,0 +50305,755,528,0,65,65,0 +50304,755,527,0,64,64,0 +50303,755,526,0,63,63,0 +50302,755,525,0,62,62,0 +50301,755,524,0,61,61,0 +50300,755,523,0,60,60,0 +50299,755,522,0,59,59,0 +50298,755,521,0,58,58,0 +50297,755,520,0,57,57,0 +50296,755,519,0,55,55,0 +50295,755,518,0,51,51,0 +50294,755,517,0,47,47,0 +50293,755,516,0,44,44,0 +50292,755,515,0,40,40,0 +50291,755,514,0,36,36,0 +50290,755,494,0,31,31,0 +50289,755,513,1,27,27,0 +50288,755,512,2,23,23,0 +50287,755,511,3,20,20,0 +50286,755,510,4,17,17,0 +50285,755,449,6,14,14,0 +50284,755,509,8,8,8,1 +50283,755,437,0,43,43,0 +50282,755,508,0,85,85,0 +50281,755,507,0,42,42,0 +50280,755,484,0,53,53,0 +50279,755,506,0,33,33,0 +50278,755,427,0,28,28,0 +50277,755,341,6,12,12,0 +50276,755,505,0,79,79,0 +50275,755,456,0,32,32,0 +50274,755,364,0,41,41,0 +50273,755,386,8,9,9,0 +50272,755,479,7,11,11,0 +50271,755,483,0,81,81,0 +50270,755,504,0,89,89,0 +50269,755,503,0,88,88,0 +50268,755,502,0,77,77,0 +50267,755,289,4,15,15,0 +50266,755,356,43,1,1,5 +50265,755,501,0,82,82,0 +50264,755,439,0,56,56,0 +50263,755,500,0,52,52,0 +50262,755,418,0,37,37,0 +50261,755,499,0,48,48,0 +50260,755,498,0,46,46,0 +50259,755,497,0,38,38,0 +50258,755,403,16,5,5,1 +50257,755,347,4,18,18,0 +50256,755,404,18,4,4,0 +50255,755,476,10,7,7,0 +50254,755,496,3,22,22,0 +50253,755,475,19,3,3,2 +50252,755,477,6,13,13,0 +50251,755,360,34,2,2,1 +61974,756,553,0,24,24,0 +61973,756,552,0,23,23,0 +61972,756,353,0,22,22,0 +61971,756,551,0,21,21,0 +61970,756,376,0,20,20,0 +61969,756,550,0,19,19,0 +61968,756,483,0,18,18,0 +61967,756,549,0,17,17,0 +61966,756,506,0,16,16,0 +61965,756,477,0,15,15,0 +61964,756,476,0,14,14,0 +61963,756,418,0,13,13,0 +61962,756,289,0,12,12,0 +61961,756,554,0,11,11,0 +61960,756,347,0,10,10,0 +61959,756,501,0,9,9,0 +61958,756,541,0,8,8,0 +61957,756,475,0,7,7,0 +61956,756,456,0,6,6,0 +61975,757,356,9,1,1,1 +61976,757,479,6,3,3,0 +61977,757,427,4,6,6,0 +61978,757,403,3,8,8,0 +61979,757,360,2,10,10,0 +61980,757,456,0,12,12,0 +61981,757,475,0,23,23,0 +61982,757,541,0,24,24,0 +61983,757,501,0,25,25,0 +61984,757,347,0,26,26,0 +61985,757,554,0,27,27,0 +61986,757,289,0,28,28,0 +61987,757,418,0,29,29,0 +61988,757,476,0,30,30,0 +61989,757,477,0,31,31,0 +61990,757,506,0,32,32,0 +61991,757,549,0,33,33,0 +61992,757,483,0,36,36,0 +61993,757,550,0,37,37,0 +61994,757,376,0,39,39,0 +62031,757,525,0,57,57,0 +62030,757,536,0,56,56,0 +62029,757,517,0,55,55,0 +62028,757,565,0,54,54,0 +62027,757,564,0,53,53,0 +62026,757,563,0,52,52,0 +62025,757,562,0,51,51,0 +62024,757,522,0,50,50,0 +62023,757,516,0,49,49,0 +62022,757,511,0,47,47,0 +62021,757,561,0,45,45,0 +62020,757,528,0,43,43,0 +62019,757,560,0,41,41,0 +62018,757,537,0,40,40,0 +62017,757,559,0,38,38,0 +62016,757,558,0,35,35,0 +62015,757,527,0,34,34,0 +62014,757,535,0,22,22,0 +62013,757,557,0,21,21,0 +62012,757,556,0,20,20,0 +62011,757,538,0,19,19,0 +62010,757,514,0,18,18,0 +62009,757,520,0,17,17,0 +62008,757,531,0,16,16,0 +62007,757,555,0,15,15,0 +62006,757,513,0,14,14,0 +62005,757,518,0,13,13,0 +62004,757,533,0,11,11,0 +62003,757,510,2,9,9,0 +62091,758,566,0,33,33,0 +62090,758,430,0,23,23,0 +62088,758,525,0,60,60,0 +62089,758,404,3,11,11,0 +62117,759,509,6,6,6,0 +62087,758,536,0,59,59,0 +62055,758,553,0,51,51,0 +62056,758,449,8,3,3,1 +62057,758,509,6,5,5,0 +62058,758,512,5,6,6,0 +62059,758,529,3,10,10,0 +62060,758,510,2,13,13,0 +62061,758,533,0,17,17,0 +62086,758,517,0,58,58,0 +62085,758,565,0,57,57,0 +62084,758,564,0,56,56,0 +62083,758,563,0,55,55,0 +62082,758,562,0,54,54,0 +62081,758,522,0,53,53,0 +62080,758,516,0,52,52,0 +62079,758,511,0,50,50,0 +62078,758,561,0,48,48,0 +62077,758,528,0,46,46,0 +62076,758,560,0,44,44,0 +62075,758,537,0,43,43,0 +62074,758,559,0,41,41,0 +62073,758,558,0,38,38,0 +62072,758,527,0,37,37,0 +62071,758,535,0,30,30,0 +62070,758,557,0,29,29,0 +62069,758,556,0,28,28,0 +62068,758,538,0,27,27,0 +62067,758,514,0,26,26,0 +62066,758,520,0,25,25,0 +62065,758,531,0,24,24,0 +62064,758,555,0,22,22,0 +62063,758,513,0,20,20,0 +62062,758,518,0,19,19,0 +62054,758,552,0,49,49,0 +62052,758,551,0,45,45,0 +62051,758,376,0,42,42,0 +62050,758,550,0,40,40,0 +62049,758,483,0,39,39,0 +62048,758,549,0,36,36,0 +62047,758,506,0,35,35,0 +62046,758,477,0,21,21,0 +62045,758,476,0,34,34,0 +62044,758,418,4,8,8,0 +62043,758,289,0,18,18,0 +62042,758,554,2,12,12,0 +62115,759,553,0,57,57,0 +62093,759,479,14,2,2,1 +62094,759,427,4,8,8,0 +62157,759,568,0,51,51,0 +62156,759,462,0,47,47,0 +62155,759,437,0,41,41,0 +62154,759,364,0,38,38,0 +62153,759,567,0,28,28,0 +62152,759,482,3,13,13,0 +62151,759,566,0,36,36,0 +62150,759,430,0,25,25,0 +62149,759,404,3,11,11,0 +62148,759,525,0,66,66,0 +62147,759,536,0,65,65,0 +62146,759,517,0,64,64,0 +62145,759,565,0,63,63,0 +62144,759,564,0,62,62,0 +62143,759,563,0,61,61,0 +62142,759,562,0,60,60,0 +62141,759,522,0,59,59,0 +62140,759,516,0,58,58,0 +62139,759,511,0,56,56,0 +62138,759,561,0,54,54,0 +62137,759,528,0,52,52,0 +62136,759,560,0,49,49,0 +62135,759,537,0,48,48,0 +62134,759,559,0,45,45,0 +62133,759,558,0,43,43,0 +62132,759,527,0,42,42,0 +62131,759,535,0,35,35,0 +62130,759,557,0,34,34,0 +62129,759,556,0,33,33,0 +62128,759,538,0,32,32,0 +62127,759,514,0,31,31,0 +62126,759,520,0,30,30,0 +62125,759,531,0,29,29,0 +62124,759,555,0,27,27,0 +62123,759,513,0,24,24,0 +62122,759,518,0,22,22,0 +62121,759,533,0,19,19,0 +62120,759,510,2,15,15,0 +62118,759,512,5,7,7,0 +62116,759,449,8,5,5,1 +62114,759,552,0,55,55,0 +62113,759,353,0,53,53,0 +62112,759,551,0,50,50,0 +62111,759,376,0,46,46,0 +62110,759,550,0,44,44,0 +62109,759,483,0,23,23,0 +62108,759,549,0,40,40,0 +62107,759,506,0,39,39,0 +62106,759,477,0,26,26,0 +62105,759,476,0,37,37,0 +62180,760,552,0,63,63,0 +62181,760,553,0,66,66,0 +62182,760,449,8,7,7,1 +62163,760,456,0,18,18,0 +62164,760,475,8.5,4,4,0 +62165,760,541,0,19,19,0 +62166,760,501,3,12,12,0 +62167,760,347,8,6,6,1 +62168,760,554,2,16,16,0 +62169,760,289,0,21,21,0 +62170,760,418,4,11,11,0 +62238,760,441,0,78,78,0 +62237,760,401,0,76,76,0 +62236,760,571,0,73,73,0 +62235,760,387,0,71,71,0 +62234,760,570,0,70,70,0 +62233,760,465,0,68,68,0 +62232,760,540,0,64,64,0 +62231,760,484,0,61,61,0 +62230,760,542,0,57,57,0 +62229,760,478,0,53,53,0 +62228,760,486,0,46,46,0 +62227,760,569,0,34,34,0 +62226,760,481,0,33,33,0 +62225,760,505,0,30,30,0 +62223,760,568,0,58,58,0 +62222,760,462,0,52,52,0 +62221,760,437,0,45,45,0 +62220,760,364,0,43,43,0 +62219,760,567,0,29,29,0 +62218,760,482,3,15,15,0 +62217,760,566,0,41,41,0 +62216,760,430,0,26,26,0 +62215,760,404,3,13,13,0 +62214,760,525,0,81,81,0 +62213,760,536,0,80,80,0 +62212,760,517,0,79,79,0 +62211,760,565,0,77,77,0 +62210,760,564,0,75,75,0 +62209,760,563,0,74,74,0 +62208,760,562,0,72,72,0 +62207,760,522,0,69,69,0 +62206,760,516,0,67,67,0 +62205,760,511,0,65,65,0 +62204,760,561,0,62,62,0 +62203,760,528,0,59,59,0 +62202,760,560,0,55,55,0 +62201,760,537,0,54,54,0 +62200,760,559,0,50,50,0 +62199,760,558,0,48,48,0 +62198,760,527,0,47,47,0 +62197,760,535,0,40,40,0 +62196,760,557,0,39,39,0 +62194,760,538,0,37,37,0 +62158,760,356,27,1,1,2 +62159,760,479,14,2,2,1 +62192,760,520,0,32,32,0 +62191,760,531,0,31,31,0 +62190,760,555,0,28,28,0 +62189,760,513,0,24,24,0 +62188,760,518,0,22,22,0 +62187,760,533,0,20,20,0 +62186,760,510,2,17,17,0 +62185,760,529,3,14,14,0 +62184,760,512,5,10,10,0 +62183,760,509,6,8,8,0 +62319,761,441,0,78,78,0 +62318,761,401,0,76,76,0 +62317,761,571,0,73,73,0 +62316,761,387,0,71,71,0 +62315,761,570,0,70,70,0 +62314,761,465,0,68,68,0 +62313,761,540,0,64,64,0 +62312,761,484,0,61,61,0 +62311,761,542,0,57,57,0 +62310,761,478,0,43,43,0 +62309,761,486,0,47,47,0 +62308,761,569,0,36,36,0 +62307,761,481,0,35,35,0 +62306,761,505,0,32,32,0 +62305,761,502,0,27,27,0 +62304,761,568,0,58,58,0 +62303,761,462,0,53,53,0 +62302,761,437,0,21,21,0 +62301,761,364,6,9,9,0 +62300,761,567,0,31,31,0 +62352,762,555,0,31,31,0 +62242,761,403,13,3,3,0 +62239,761,356,27,1,1,2 +62299,761,482,3,16,16,0 +62298,761,566,0,44,44,0 +62297,761,430,0,28,28,0 +62296,761,404,3,14,14,0 +62295,761,525,0,81,81,0 +62294,761,536,0,80,80,0 +62293,761,517,0,79,79,0 +62292,761,565,0,77,77,0 +62291,761,564,0,75,75,0 +62290,761,563,0,74,74,0 +62289,761,562,0,72,72,0 +62288,761,522,0,69,69,0 +62287,761,516,0,67,67,0 +62286,761,511,0,65,65,0 +62285,761,561,0,62,62,0 +62284,761,528,0,59,59,0 +62283,761,560,0,55,55,0 +62282,761,537,0,54,54,0 +62281,761,559,0,51,51,0 +62280,761,558,0,49,49,0 +62279,761,527,0,48,48,0 +62278,761,535,0,42,42,0 +62277,761,557,0,41,41,0 +62276,761,556,0,40,40,0 +62275,761,538,0,39,39,0 +62274,761,514,0,37,37,0 +62273,761,520,0,34,34,0 +62272,761,531,0,33,33,0 +62271,761,555,0,30,30,0 +62270,761,513,0,26,26,0 +62269,761,518,0,24,24,0 +62268,761,533,0,22,22,0 +62267,761,510,2,18,18,0 +62266,761,529,3,15,15,0 +62265,761,512,5,11,11,0 +62264,761,509,6,10,10,0 +62263,761,449,8,8,8,1 +62262,761,553,0,66,66,0 +62261,761,552,0,63,63,0 +62260,761,353,0,60,60,0 +62259,761,551,0,56,56,0 +62258,761,376,0,52,52,0 +62257,761,550,0,50,50,0 +62256,761,483,0,25,25,0 +62386,762,502,0,28,28,0 +62387,762,505,0,33,33,0 +62388,762,481,0,37,37,0 +62389,762,569,0,38,38,0 +62390,762,486,0,48,48,0 +62381,762,567,0,32,32,0 +62351,762,513,0,27,27,0 +62349,762,533,0,22,22,0 +62332,762,418,10,7,7,0 +62333,762,476,0,46,46,0 +62334,762,477,0,30,30,0 +62335,762,506,0,47,47,0 +62336,762,549,0,40,40,0 +62337,762,483,0,26,26,0 +62401,762,432,0,34,34,0 +62400,762,441,0,79,79,0 +62399,762,401,0,77,77,0 +62398,762,571,0,74,74,0 +62397,762,387,0,72,72,0 +62396,762,570,0,71,71,0 +62395,762,465,0,69,69,0 +62394,762,540,0,65,65,0 +62393,762,484,0,62,62,0 +62392,762,542,0,58,58,0 +62391,762,478,0,45,45,0 +62385,762,568,0,59,59,0 +62384,762,462,0,54,54,0 +62383,762,437,0,21,21,0 +62382,762,364,10,8,8,0 +62380,762,482,3,16,16,0 +62379,762,566,0,25,25,0 +62378,762,430,0,29,29,0 +62377,762,404,3,14,14,0 +62376,762,525,0,82,82,0 +62375,762,536,0,81,81,0 +62374,762,517,0,80,80,0 +62373,762,565,0,78,78,0 +62372,762,564,0,76,76,0 +62371,762,563,0,75,75,0 +62370,762,562,0,73,73,0 +62369,762,522,0,70,70,0 +62368,762,516,0,68,68,0 +62367,762,511,0,66,66,0 +62366,762,561,0,63,63,0 +62365,762,528,0,60,60,0 +62364,762,560,0,56,56,0 +62363,762,537,0,55,55,0 +62362,762,559,0,52,52,0 +62361,762,558,0,50,50,0 +62360,762,527,0,49,49,0 +62359,762,535,0,44,44,0 +62358,762,557,0,43,43,0 +62357,762,556,0,42,42,0 +62356,762,538,0,41,41,0 +62355,762,514,0,39,39,0 +62354,762,520,0,36,36,0 +62353,762,531,0,35,35,0 +62350,762,518,0,24,24,0 +62348,762,510,2,18,18,0 +62347,762,529,3,15,15,0 +62346,762,512,5,12,12,0 +62345,762,509,6,11,11,0 +62344,762,449,8,10,10,1 +62343,762,553,0,67,67,0 +62342,762,552,0,64,64,0 +62341,762,353,0,61,61,0 +62340,762,551,0,57,57,0 +62339,762,376,0,53,53,0 +62338,762,550,0,51,51,0 +62331,762,289,0,23,23,0 +62449,763,511,0,67,67,0 +62414,763,418,10,8,8,0 +62415,763,476,0,48,48,0 +62416,763,477,2,17,17,0 +62417,763,506,0,49,49,0 +62418,763,549,0,41,41,0 +62419,763,483,0,27,27,0 +62420,763,550,0,53,53,0 +62421,763,376,0,55,55,0 +62422,763,551,0,58,58,0 +62423,763,353,0,62,62,0 +62424,763,552,0,65,65,0 +62425,763,553,0,68,68,0 +62426,763,449,8,10,10,1 +62427,763,509,6,11,11,0 +62428,763,512,5,12,12,0 +62429,763,529,3,16,16,0 +62430,763,510,2,19,19,0 +62431,763,533,0,23,23,0 +62432,763,518,0,25,25,0 +62433,763,513,0,28,28,0 +62434,763,555,0,31,31,0 +62435,763,531,0,35,35,0 +62436,763,520,0,37,37,0 +62484,763,543,0,45,45,0 +62482,763,441,0,80,80,0 +62481,763,401,0,78,78,0 +62480,763,571,0,75,75,0 +62479,763,387,0,73,73,0 +62478,763,570,0,72,72,0 +62477,763,465,0,70,70,0 +62476,763,540,0,66,66,0 +62475,763,484,0,63,63,0 +62474,763,542,0,59,59,0 +62473,763,478,0,47,47,0 +62472,763,486,0,50,50,0 +62471,763,569,0,39,39,0 +62470,763,481,0,38,38,0 +62469,763,505,0,33,33,0 +62468,763,502,0,29,29,0 +62467,763,568,0,60,60,0 +62466,763,462,0,36,36,0 +62465,763,437,0,22,22,0 +62464,763,364,13,5,5,0 +62463,763,567,0,32,32,0 +62462,763,482,3,14,14,0 +62461,763,566,0,26,26,0 +62460,763,430,0,30,30,0 +62459,763,404,3,15,15,0 +62458,763,525,0,83,83,0 +62457,763,536,0,82,82,0 +62456,763,517,0,81,81,0 +62455,763,565,0,79,79,0 +62453,763,563,0,76,76,0 +62452,763,562,0,74,74,0 +62450,763,516,0,69,69,0 +62448,763,561,0,64,64,0 +62447,763,528,0,61,61,0 +62446,763,560,0,57,57,0 +62445,763,537,0,56,56,0 +62444,763,559,0,54,54,0 +62443,763,558,0,52,52,0 +62442,763,527,0,51,51,0 +62441,763,535,0,46,46,0 +62440,763,557,0,44,44,0 +62439,763,556,0,43,43,0 +62437,763,514,0,40,40,0 +62572,764,576,0,57,57,0 +62571,764,575,0,56,56,0 +62570,764,574,0,51,51,0 +62569,764,573,0,50,50,0 +62568,764,572,0,26,26,0 +62567,764,543,0,47,47,0 +62566,764,432,0,36,36,0 +62565,764,441,0,85,85,0 +62564,764,401,0,83,83,0 +62563,764,571,0,80,80,0 +62562,764,387,0,78,78,0 +62561,764,570,0,77,77,0 +62560,764,465,0,75,75,0 +62490,764,456,0,20,20,0 +62491,764,475,25.5,3,3,2 +62492,764,541,0,21,21,0 +62493,764,501,5,13,13,0 +62494,764,347,10,8,8,1 +62495,764,554,2,18,18,0 +62496,764,289,0,25,25,0 +62497,764,418,10,9,9,0 +62498,764,476,0,23,23,0 +62499,764,477,2,17,17,0 +62500,764,506,0,52,52,0 +62501,764,549,0,43,43,0 +62559,764,540,0,71,71,0 +62558,764,484,0,68,68,0 +62557,764,542,0,64,64,0 +62556,764,478,0,49,49,0 +62555,764,486,0,53,53,0 +62554,764,569,0,41,41,0 +62553,764,481,0,40,40,0 +62552,764,505,0,35,35,0 +62551,764,502,0,30,30,0 +62550,764,568,0,65,65,0 +62549,764,462,0,38,38,0 +62548,764,437,0,22,22,0 +62547,764,364,13,7,7,0 +62546,764,567,0,34,34,0 +62545,764,482,3,15,15,0 +62544,764,566,0,28,28,0 +62543,764,430,0,32,32,0 +62542,764,404,5,14,14,0 +62541,764,525,0,88,88,0 +62540,764,536,0,87,87,0 +62539,764,517,0,86,86,0 +62538,764,565,0,84,84,0 +62537,764,564,0,82,82,0 +62536,764,563,0,81,81,0 +62535,764,562,0,79,79,0 +62534,764,522,0,76,76,0 +62533,764,516,0,74,74,0 +62532,764,511,0,72,72,0 +62531,764,561,0,69,69,0 +62530,764,528,0,66,66,0 +62529,764,560,0,62,62,0 +62528,764,537,0,61,61,0 +62527,764,559,0,59,59,0 +62526,764,558,0,55,55,0 +62525,764,527,0,54,54,0 +62524,764,535,0,48,48,0 +62523,764,557,0,46,46,0 +62522,764,556,0,45,45,0 +62521,764,538,0,44,44,0 +62520,764,514,0,42,42,0 +62519,764,520,0,39,39,0 +62518,764,531,0,37,37,0 +62517,764,555,0,33,33,0 +62516,764,513,0,31,31,0 +62515,764,518,0,27,27,0 +62514,764,533,0,24,24,0 +62513,764,510,2,19,19,0 +62512,764,529,3,16,16,0 +62511,764,512,5,12,12,0 +48983,765,581,0,10,10,0 +48982,765,547,0,9,9,0 +48981,765,580,0,8,8,0 +48980,765,496,0,7,7,0 +48979,765,501,0,6,6,0 +48978,765,554,2,5,5,0 +48977,765,579,4,4,4,0 +48976,765,578,4,3,3,0 +48975,765,577,6,2,2,0 +48974,765,475,8,1,1,1 +49015,766,589,0,32,32,0 +49014,766,588,0,31,31,0 +49013,766,587,0,30,30,0 +49012,766,586,0,29,29,0 +49011,766,543,0,28,28,0 +49010,766,553,0,27,27,0 +49009,766,551,0,26,26,0 +49008,766,585,0,25,25,0 +49007,766,584,0,24,24,0 +49006,766,583,0,23,23,0 +49005,766,582,0,22,22,0 +49004,766,541,0,21,21,0 +49003,766,590,0,20,20,0 +49002,766,479,0,19,19,0 +49001,766,483,0,18,18,0 +49000,766,456,0,17,17,0 +48999,766,289,0,16,16,0 +48998,766,347,0,15,15,0 +48997,766,476,0,14,14,0 +48996,766,477,0,10,10,0 +48995,766,356,3,7,7,0 +48994,766,427,8,3,3,1 +48993,766,581,4,5,5,0 +48992,766,547,0,13,13,0 +48991,766,580,0,12,12,0 +48990,766,496,0,11,11,0 +48989,766,501,2,8,8,0 +48988,766,554,2,9,9,0 +48987,766,579,4,6,6,0 +48986,766,578,5,4,4,0 +48985,766,577,12,1,1,0 +48984,766,475,8,2,2,1 +49049,767,418,0,22,22,0 +49048,767,430,0,16,16,0 +49047,767,589,0,34,34,0 +49046,767,588,0,33,33,0 +49045,767,587,0,32,32,0 +49044,767,586,0,31,31,0 +49043,767,543,0,30,30,0 +49042,767,553,0,29,29,0 +49041,767,551,0,28,28,0 +49040,767,585,0,27,27,0 +49039,767,584,0,26,26,0 +49038,767,583,0,25,25,0 +49037,767,582,0,24,24,0 +49036,767,541,0,23,23,0 +49035,767,590,0,20,20,0 +49034,767,479,0,21,21,0 +49033,767,483,0,19,19,0 +49032,767,456,3,10,10,0 +49031,767,289,0,18,18,0 +49030,767,347,0,15,15,0 +49029,767,476,0,17,17,0 +49028,767,477,0,11,11,0 +49027,767,356,3,9,9,0 +49026,767,427,8,3,3,1 +49025,767,581,4,7,7,0 +49024,767,547,0,14,14,0 +49023,767,580,0,13,13,0 +49022,767,496,0,12,12,0 +49021,767,501,8,4,4,0 +49020,767,554,6,6,6,0 +49019,767,579,4,8,8,0 +49018,767,578,7,5,5,0 +49017,767,577,12,2,2,0 +49016,767,475,17,1,1,2 +49116,768,599,0,67,67,0 +49115,768,536,0,66,66,0 +49114,768,598,0,65,65,0 +49113,768,510,0,64,64,0 +49112,768,597,0,61,61,0 +49111,768,596,0,60,60,0 +49110,768,537,0,58,58,0 +49109,768,514,0,57,57,0 +49108,768,562,0,56,56,0 +49107,768,563,0,54,54,0 +49106,768,512,0,52,52,0 +49105,768,527,0,50,50,0 +49104,768,595,0,48,48,0 +49103,768,449,0,46,46,0 +49102,768,523,0,44,44,0 +49101,768,555,0,42,42,0 +49100,768,565,0,40,40,0 +49099,768,531,0,37,37,0 +49098,768,539,0,36,36,0 +49097,768,516,0,34,34,0 +49096,768,594,0,29,29,0 +49095,768,593,0,28,28,0 +49094,768,558,0,27,27,0 +49093,768,560,0,25,25,0 +49092,768,513,0,23,23,0 +49091,768,564,0,21,21,0 +49090,768,528,0,18,18,0 +49089,768,592,0,17,17,0 +49088,768,509,2,15,15,0 +49087,768,529,4,11,11,0 +49086,768,533,4,10,10,0 +49085,768,591,6,7,7,0 +49084,768,525,8,4,4,1 +49083,768,418,0,38,38,0 +49082,768,430,0,26,26,0 +49081,768,589,0,63,63,0 +49080,768,588,0,62,62,0 +49079,768,587,0,59,59,0 +49078,768,586,0,55,55,0 +49077,768,543,0,53,53,0 +49076,768,553,0,51,51,0 +49075,768,551,0,49,49,0 +49074,768,585,0,47,47,0 +49073,768,584,0,45,45,0 +49072,768,583,0,43,43,0 +49071,768,582,0,41,41,0 +49070,768,541,0,39,39,0 +49069,768,590,0,33,33,0 +49068,768,479,0,35,35,0 +49067,768,483,0,32,32,0 +49066,768,456,3,14,14,0 +49065,768,289,0,31,31,0 +49064,768,347,0,24,24,0 +49063,768,476,0,30,30,0 +49062,768,477,0,16,16,0 +49061,768,356,3,13,13,0 +49060,768,427,8,3,3,1 +49059,768,581,4,9,9,0 +49058,768,547,0,22,22,0 +49057,768,580,0,20,20,0 +49056,768,496,0,19,19,0 +49055,768,501,8,5,5,0 +49054,768,554,6,8,8,0 +49053,768,579,4,12,12,0 +49052,768,578,7,6,6,0 +49051,768,577,12,2,2,0 +49050,768,475,17,1,1,2 +49185,769,455,0,43,43,0 +49184,769,482,0,19,19,0 +49183,769,599,0,69,69,0 +49182,769,536,0,68,68,0 +49181,769,598,0,67,67,0 +49180,769,510,0,66,66,0 +49179,769,597,0,63,63,0 +49178,769,596,0,62,62,0 +49177,769,537,0,60,60,0 +49176,769,514,0,59,59,0 +49175,769,562,0,58,58,0 +49174,769,563,0,56,56,0 +49173,769,512,0,54,54,0 +49172,769,527,0,52,52,0 +49171,769,595,0,51,51,0 +49170,769,449,0,49,49,0 +49169,769,523,0,47,47,0 +49168,769,555,0,45,45,0 +49167,769,565,0,42,42,0 +49166,769,531,0,40,40,0 +49165,769,539,0,38,38,0 +49164,769,516,0,37,37,0 +49163,769,594,0,33,33,0 +49162,769,593,0,32,32,0 +49161,769,558,0,31,31,0 +49160,769,560,0,29,29,0 +49159,769,513,0,27,27,0 +49158,769,564,0,24,24,0 +49157,769,528,0,21,21,0 +49156,769,592,0,20,20,0 +49155,769,509,2,18,18,0 +49154,769,529,4,13,13,0 +49153,769,533,4,12,12,0 +49152,769,591,6,8,8,0 +49151,769,525,8,7,7,1 +49150,769,418,0,39,39,0 +49149,769,430,0,30,30,0 +49148,769,589,0,65,65,0 +49147,769,588,0,64,64,0 +49146,769,587,0,61,61,0 +49145,769,586,0,57,57,0 +49144,769,543,0,55,55,0 +49143,769,553,0,53,53,0 +49142,769,551,0,28,28,0 +49141,769,585,0,50,50,0 +49140,769,584,0,48,48,0 +49139,769,583,0,46,46,0 +49138,769,582,0,44,44,0 +49137,769,541,0,41,41,0 +49136,769,590,4,11,11,0 +49135,769,479,8,6,6,1 +49134,769,483,0,36,36,0 +49133,769,456,3,16,16,0 +49132,769,289,0,35,35,0 +49131,769,347,0,25,25,0 +49130,769,476,0,34,34,0 +49129,769,477,3,15,15,0 +49128,769,356,3,17,17,0 +49127,769,427,8,5,5,1 +49126,769,581,4,10,10,0 +49125,769,547,0,26,26,0 +49124,769,580,0,23,23,0 +49123,769,496,0,22,22,0 +49122,769,501,10,4,4,0 +49121,769,554,6,9,9,0 +49120,769,579,4,14,14,0 +49119,769,578,14,2,2,0 +49118,769,577,12,3,3,0 +49117,769,475,17,1,1,2 +49257,770,566,0,51,51,0 +49256,770,526,0,33,33,0 +49255,770,403,0,23,23,0 +49254,770,455,0,46,46,0 +49253,770,482,0,20,20,0 +49252,770,599,0,72,72,0 +49251,770,536,0,71,71,0 +49250,770,598,0,70,70,0 +49249,770,510,0,69,69,0 +49248,770,597,0,66,66,0 +49247,770,596,0,65,65,0 +49246,770,537,0,63,63,0 +49245,770,514,0,62,62,0 +49244,770,562,0,61,61,0 +49243,770,563,0,59,59,0 +49242,770,512,0,57,57,0 +49241,770,527,0,55,55,0 +49240,770,595,0,54,54,0 +49239,770,449,0,52,52,0 +49238,770,523,0,49,49,0 +49237,770,555,0,48,48,0 +49236,770,565,0,45,45,0 +49235,770,531,0,43,43,0 +49234,770,539,0,41,41,0 +49233,770,516,0,40,40,0 +49232,770,594,0,37,37,0 +49231,770,593,0,36,36,0 +49230,770,558,0,35,35,0 +49229,770,560,0,32,32,0 +49228,770,513,0,30,30,0 +49227,770,564,0,27,27,0 +49226,770,528,0,22,22,0 +49225,770,592,0,21,21,0 +49224,770,509,2,19,19,0 +49223,770,529,4,15,15,0 +49222,770,533,4,14,14,0 +49221,770,591,6,9,9,0 +49220,770,525,8,7,7,1 +49219,770,418,0,42,42,0 +49218,770,430,0,34,34,0 +49217,770,589,0,68,68,0 +49216,770,588,0,67,67,0 +49215,770,587,0,64,64,0 +49214,770,586,0,60,60,0 +49213,770,543,0,58,58,0 +49212,770,553,0,56,56,0 +49211,770,551,0,31,31,0 +49210,770,585,0,53,53,0 +49209,770,584,0,50,50,0 +49208,770,583,0,29,29,0 +49207,770,582,0,47,47,0 +49206,770,541,0,44,44,0 +49205,770,590,4,13,13,0 +49204,770,479,8,6,6,1 +49203,770,483,0,39,39,0 +49202,770,456,3,18,18,0 +49201,770,289,0,38,38,0 +49200,770,347,0,25,25,0 +49199,770,476,4,12,12,0 +49198,770,477,3,16,16,0 +49197,770,356,3,17,17,0 +49196,770,427,8,5,5,1 +49195,770,581,6,10,10,0 +49194,770,547,0,28,28,0 +49193,770,580,0,26,26,0 +49192,770,496,0,24,24,0 +49191,770,501,10,4,4,0 +49190,770,554,6,11,11,0 +49189,770,579,7,8,8,0 +49188,770,578,23,2,2,1 +49187,770,577,12,3,3,0 +49186,770,475,23,1,1,2 +49333,771,486,0,54,54,0 +49332,771,502,0,52,52,0 +49331,771,549,0,47,47,0 +49330,771,437,0,41,41,0 +49329,771,566,0,30,30,0 +49328,771,526,0,34,34,0 +49327,771,403,0,23,23,0 +49326,771,455,0,49,49,0 +49325,771,482,0,20,20,0 +49324,771,599,0,76,76,0 +49323,771,536,0,75,75,0 +49322,771,598,0,74,74,0 +49321,771,510,0,73,73,0 +49320,771,597,0,70,70,0 +49319,771,596,0,69,69,0 +49318,771,537,0,67,67,0 +49317,771,514,0,66,66,0 +49316,771,562,0,65,65,0 +49315,771,563,0,63,63,0 +49314,771,512,0,61,61,0 +49313,771,527,0,59,59,0 +49312,771,595,0,58,58,0 +49311,771,449,0,56,56,0 +49310,771,523,0,53,53,0 +49309,771,555,0,51,51,0 +49308,771,565,0,48,48,0 +49307,771,531,0,45,45,0 +49306,771,539,0,43,43,0 +49305,771,516,0,42,42,0 +49304,771,594,0,38,38,0 +49303,771,593,0,37,37,0 +49302,771,558,0,36,36,0 +49301,771,560,0,33,33,0 +49300,771,513,0,31,31,0 +49299,771,564,0,27,27,0 +49298,771,528,0,22,22,0 +49297,771,592,0,21,21,0 +49296,771,509,2,19,19,0 +49295,771,529,4,16,16,0 +49294,771,533,4,15,15,0 +49293,771,591,6,12,12,0 +49292,771,525,8,8,8,1 +49291,771,418,0,44,44,0 +49290,771,430,0,35,35,0 +49289,771,589,0,72,72,0 +49288,771,588,0,71,71,0 +49287,771,587,0,68,68,0 +49286,771,586,0,64,64,0 +49285,771,543,0,62,62,0 +49284,771,553,0,60,60,0 +49283,771,551,0,32,32,0 +49282,771,585,0,57,57,0 +49281,771,584,0,55,55,0 +49280,771,583,0,28,28,0 +49279,771,582,0,50,50,0 +49278,771,541,0,46,46,0 +49277,771,590,7,10,10,0 +49276,771,479,8,7,7,1 +49275,771,483,0,40,40,0 +49274,771,456,7,9,9,0 +49273,771,289,0,39,39,0 +49272,771,347,0,25,25,0 +49271,771,476,4,14,14,0 +49270,771,477,3,18,18,0 +49269,771,356,3,17,17,0 +49268,771,427,8,6,6,1 +49267,771,581,14,3,3,1 +49266,771,547,0,29,29,0 +49265,771,580,0,26,26,0 +49264,771,496,0,24,24,0 +49263,771,501,12,5,5,0 +49262,771,554,6,13,13,0 +49261,771,579,7,11,11,0 +49260,771,578,30,1,1,1 +49259,771,577,12,4,4,0 +49258,771,475,23,2,2,2 +49416,772,484,0,66,66,0 +49415,772,601,0,64,64,0 +49414,772,478,0,59,59,0 +49413,772,600,0,51,51,0 +49412,772,459,0,31,31,0 +49411,772,431,0,21,21,0 +49410,772,360,0,20,20,0 +49409,772,486,0,58,58,0 +49408,772,502,0,56,56,0 +49407,772,549,0,39,39,0 +49406,772,437,0,25,25,0 +49405,772,566,0,34,34,0 +49404,772,526,0,37,37,0 +49403,772,403,0,24,24,0 +49402,772,455,0,46,46,0 +49401,772,482,0,22,22,0 +49400,772,599,0,83,83,0 +49399,772,536,0,82,82,0 +49398,772,598,0,81,81,0 +49397,772,510,0,80,80,0 +49396,772,597,0,77,77,0 +49395,772,596,0,76,76,0 +49394,772,537,0,74,74,0 +49393,772,514,0,73,73,0 +49392,772,562,0,72,72,0 +49391,772,563,0,70,70,0 +49390,772,512,0,68,68,0 +49389,772,527,0,65,65,0 +49388,772,595,0,63,63,0 +49387,772,449,0,61,61,0 +49386,772,523,0,57,57,0 +49385,772,555,0,55,55,0 +49384,772,565,0,53,53,0 +49383,772,531,0,50,50,0 +49382,772,539,0,48,48,0 +49381,772,516,0,47,47,0 +49380,772,594,0,43,43,0 +49379,772,593,0,42,42,0 +49378,772,558,0,41,41,0 +49377,772,560,0,38,38,0 +49376,772,513,0,35,35,0 +49375,772,564,0,30,30,0 +49374,772,528,0,26,26,0 +49373,772,592,0,23,23,0 +49372,772,509,2,19,19,0 +49371,772,529,4,16,16,0 +49370,772,533,4,15,15,0 +49369,772,591,6,13,13,0 +49368,772,525,8,9,9,1 +49367,772,418,0,49,49,0 +49366,772,430,0,40,40,0 +49365,772,589,0,79,79,0 +49364,772,588,0,78,78,0 +49363,772,587,0,75,75,0 +49362,772,586,0,71,71,0 +49361,772,543,0,69,69,0 +49360,772,553,0,67,67,0 +49359,772,551,0,36,36,0 +49358,772,585,0,62,62,0 +49357,772,584,0,60,60,0 +49356,772,583,0,32,32,0 +49355,772,582,0,54,54,0 +49354,772,541,0,52,52,0 +49353,772,590,7,11,11,0 +49352,772,479,16,3,3,2 +49351,772,483,0,45,45,0 +49350,772,456,13,5,5,0 +49349,772,289,0,44,44,0 +49348,772,347,0,28,28,0 +49347,772,476,7,10,10,0 +49346,772,477,3,18,18,0 +49345,772,356,3,17,17,0 +49344,772,427,12,6,6,1 +49343,772,581,14,4,4,1 +49342,772,547,0,33,33,0 +49341,772,580,0,29,29,0 +49340,772,496,0,27,27,0 +49339,772,501,12,8,8,0 +49338,772,554,6,14,14,0 +49337,772,579,7,12,12,0 +49336,772,578,30,1,1,1 +49335,772,577,12,7,7,0 +49334,772,475,24,2,2,2 +49499,773,484,0,66,66,0 +49498,773,601,0,64,64,0 +49497,773,478,0,59,59,0 +49496,773,600,0,51,51,0 +49495,773,459,0,31,31,0 +49494,773,431,0,21,21,0 +49493,773,360,0,20,20,0 +49492,773,486,0,58,58,0 +49491,773,502,0,56,56,0 +49490,773,549,0,39,39,0 +49489,773,437,0,25,25,0 +49488,773,566,0,32,32,0 +49487,773,526,0,37,37,0 +49486,773,403,0,24,24,0 +49485,773,455,0,46,46,0 +49484,773,482,0,22,22,0 +49483,773,599,0,83,83,0 +49482,773,536,0,82,82,0 +49481,773,598,0,81,81,0 +49480,773,510,0,80,80,0 +49479,773,597,0,77,77,0 +49478,773,596,0,76,76,0 +49477,773,537,0,74,74,0 +49476,773,514,0,73,73,0 +49475,773,562,0,72,72,0 +49474,773,563,0,70,70,0 +49473,773,512,0,68,68,0 +49472,773,527,0,65,65,0 +49471,773,595,0,63,63,0 +49470,773,449,0,61,61,0 +49469,773,523,0,57,57,0 +49468,773,555,0,55,55,0 +49467,773,565,0,53,53,0 +49466,773,531,0,50,50,0 +49465,773,539,0,48,48,0 +49464,773,516,0,47,47,0 +49463,773,594,0,43,43,0 +49462,773,593,0,42,42,0 +49461,773,558,0,41,41,0 +49460,773,560,0,38,38,0 +49459,773,513,0,35,35,0 +49458,773,564,0,30,30,0 +49457,773,528,0,26,26,0 +49456,773,592,0,23,23,0 +49455,773,509,2,19,19,0 +49454,773,529,4,16,16,0 +49453,773,533,4,15,15,0 +49452,773,591,6,14,14,0 +49451,773,525,8,12,12,1 +49450,773,418,0,49,49,0 +49449,773,430,0,40,40,0 +49448,773,589,0,79,79,0 +49447,773,588,0,78,78,0 +49446,773,587,0,75,75,0 +49445,773,586,0,71,71,0 +49444,773,543,0,69,69,0 +49443,773,553,0,67,67,0 +49442,773,551,0,36,36,0 +49441,773,585,0,62,62,0 +49440,773,584,0,60,60,0 +49439,773,583,0,33,33,0 +49438,773,582,0,54,54,0 +49437,773,541,0,52,52,0 +49436,773,590,11,9,9,0 +49435,773,479,16,3,3,2 +49434,773,483,0,45,45,0 +49433,773,456,13,5,5,0 +49432,773,289,0,44,44,0 +49431,773,347,0,28,28,0 +49430,773,476,9,10,10,0 +49429,773,477,3,18,18,0 +49428,773,356,3,17,17,0 +49427,773,427,12,6,6,1 +49426,773,581,14,4,4,1 +49425,773,547,0,34,34,0 +49424,773,580,0,29,29,0 +49423,773,496,0,27,27,0 +49422,773,501,12,8,8,0 +49421,773,554,9,11,11,0 +49420,773,579,7,13,13,0 +49419,773,578,36,1,1,1 +49418,773,577,12,7,7,0 +49417,773,475,32,2,2,3 +49582,774,484,0,67,67,0 +49581,774,601,0,65,65,0 +49580,774,478,0,47,47,0 +49579,774,600,0,53,53,0 +49578,774,459,0,34,34,0 +49577,774,431,0,26,26,0 +49576,774,360,0,23,23,0 +49575,774,486,0,60,60,0 +49574,774,502,0,58,58,0 +49573,774,549,0,41,41,0 +49572,774,437,0,28,28,0 +49571,774,566,0,21,21,0 +49570,774,526,0,39,39,0 +49569,774,403,5,15,15,0 +49568,774,455,0,49,49,0 +49567,774,482,0,25,25,0 +49566,774,599,0,83,83,0 +49565,774,536,0,82,82,0 +49564,774,598,0,81,81,0 +49563,774,510,0,80,80,0 +49562,774,597,0,77,77,0 +49561,774,596,0,76,76,0 +49560,774,537,0,74,74,0 +49559,774,514,0,73,73,0 +49558,774,562,0,72,72,0 +49557,774,563,0,70,70,0 +49556,774,512,0,69,69,0 +49555,774,527,0,66,66,0 +49554,774,595,0,64,64,0 +49553,774,449,0,62,62,0 +49552,774,523,0,59,59,0 +49551,774,555,0,57,57,0 +49550,774,565,0,55,55,0 +49549,774,531,0,52,52,0 +49548,774,539,0,51,51,0 +49547,774,516,0,50,50,0 +49546,774,594,0,45,45,0 +49545,774,593,0,44,44,0 +49544,774,558,0,43,43,0 +49543,774,560,0,40,40,0 +49542,774,513,0,37,37,0 +49541,774,564,0,33,33,0 +49540,774,528,0,29,29,0 +49539,774,592,0,27,27,0 +49538,774,509,2,20,20,0 +49537,774,529,4,17,17,0 +49536,774,533,4,16,16,0 +49535,774,591,6,14,14,0 +49534,774,525,8,12,12,1 +49533,774,418,0,22,22,0 +49532,774,430,0,42,42,0 +49531,774,589,0,79,79,0 +49530,774,588,0,78,78,0 +49529,774,587,0,75,75,0 +49528,774,586,0,71,71,0 +49527,774,543,0,46,46,0 +49526,774,553,0,68,68,0 +49525,774,551,0,38,38,0 +49524,774,585,0,63,63,0 +49523,774,584,0,61,61,0 +49522,774,583,0,35,35,0 +49521,774,582,0,56,56,0 +49520,774,541,0,54,54,0 +49519,774,590,11,9,9,0 +49518,774,479,24,3,3,3 +49517,774,483,0,48,48,0 +49516,774,456,15,4,4,0 +49515,774,289,0,24,24,0 +49514,774,347,0,31,31,0 +49513,774,476,9,10,10,0 +49512,774,477,3,19,19,0 +49511,774,356,3,18,18,0 +49510,774,427,12,6,6,1 +49509,774,581,14,5,5,1 +49508,774,547,0,36,36,0 +49507,774,580,0,32,32,0 +49506,774,496,0,30,30,0 +49505,774,501,12,8,8,0 +49504,774,554,9,11,11,0 +49503,774,579,7,13,13,0 +49502,774,578,40,1,1,1 +49501,774,577,12,7,7,0 +49500,774,475,32,2,2,3 +49669,775,605,0,63,63,0 +49668,775,604,0,60,60,0 +49667,775,603,0,49,49,0 +49666,775,602,0,48,48,0 +49665,775,484,0,71,71,0 +49664,775,601,0,69,69,0 +49663,775,478,0,37,37,0 +49662,775,600,0,56,56,0 +49661,775,459,0,35,35,0 +49660,775,431,0,27,27,0 +49659,775,360,0,24,24,0 +49658,775,486,0,33,33,0 +49657,775,502,0,62,62,0 +49656,775,549,0,43,43,0 +49655,775,437,0,29,29,0 +49654,775,566,0,23,23,0 +49653,775,526,0,41,41,0 +49652,775,403,9,10,10,0 +49651,775,455,0,52,52,0 +49650,775,482,0,26,26,0 +49649,775,599,0,87,87,0 +49648,775,536,0,86,86,0 +49647,775,598,0,85,85,0 +49646,775,510,0,84,84,0 +49645,775,597,0,81,81,0 +49644,775,596,0,80,80,0 +49643,775,537,0,78,78,0 +49642,775,514,0,77,77,0 +49641,775,562,0,76,76,0 +49640,775,563,0,74,74,0 +49639,775,512,0,73,73,0 +49638,775,527,0,70,70,0 +49637,775,595,0,68,68,0 +49636,775,449,0,66,66,0 +49635,775,523,0,64,64,0 +49634,775,555,0,61,61,0 +49633,775,565,0,58,58,0 +49632,775,531,0,55,55,0 +49631,775,539,0,54,54,0 +49630,775,516,0,53,53,0 +49629,775,594,0,47,47,0 +49628,775,593,0,46,46,0 +49627,775,558,0,45,45,0 +49626,775,560,0,42,42,0 +49625,775,513,0,39,39,0 +49624,775,564,0,34,34,0 +49623,775,528,0,30,30,0 +49622,775,592,0,28,28,0 +49621,775,509,2,21,21,0 +49620,775,529,4,17,17,0 +49619,775,533,4,16,16,0 +49618,775,591,6,15,15,0 +49617,775,525,8,13,13,1 +49616,775,418,0,22,22,0 +49615,775,430,0,44,44,0 +49614,775,589,0,83,83,0 +49613,775,588,0,82,82,0 +49612,775,587,0,79,79,0 +49611,775,586,0,75,75,0 +49610,775,543,0,50,50,0 +49609,775,553,0,72,72,0 +49608,775,551,0,40,40,0 +49607,775,585,0,67,67,0 +49606,775,584,0,65,65,0 +49605,775,583,0,36,36,0 +49604,775,582,0,59,59,0 +49603,775,541,0,57,57,0 +49602,775,590,11,9,9,0 +49601,775,479,24,3,3,3 +49600,775,483,0,51,51,0 +49599,775,456,15,4,4,0 +49598,775,289,0,25,25,0 +49597,775,347,3,20,20,0 +49596,775,476,9,11,11,0 +49595,775,477,3,19,19,0 +49594,775,356,3,18,18,0 +49593,775,427,12,7,7,1 +49592,775,581,14,5,5,1 +49591,775,547,0,38,38,0 +49590,775,580,0,32,32,0 +49589,775,496,0,31,31,0 +49588,775,501,14,6,6,0 +49587,775,554,9,12,12,0 +49586,775,579,7,14,14,0 +49585,775,578,42,1,1,1 +49584,775,577,12,8,8,0 +49583,775,475,41,2,2,4 +47000,776,476,0,10,10,0 +46999,776,498,1,6,6,0 +46998,776,581,0,8,8,0 +46997,776,577,0,16,16,0 +46996,776,578,0,15,15,0 +46995,776,608,0,14,14,0 +46994,776,586,0,13,13,0 +46993,776,573,0,12,12,0 +46992,776,475,1,7,7,0 +46991,776,347,0,11,11,0 +46990,776,607,0,9,9,0 +46989,776,606,1,5,5,0 +46988,776,501,3,4,4,0 +46987,776,496,4,3,3,0 +46986,776,554,6,2,2,0 +46985,776,579,8,1,1,1 +47029,777,498,1,10,10,0 +47028,777,610,0,29,29,0 +47027,777,609,0,28,28,0 +47026,777,478,0,27,27,0 +47025,777,456,0,26,26,0 +47024,777,547,0,24,24,0 +47023,777,549,0,22,22,0 +47022,777,541,0,21,21,0 +47021,777,483,0,20,20,0 +47020,777,476,0,12,12,0 +47019,777,356,0,14,14,0 +47018,777,427,2,8,8,0 +47017,777,590,3,7,7,0 +47016,777,418,4,5,5,0 +47015,777,479,6,3,3,0 +47014,777,581,0,13,13,0 +47013,777,577,0,25,25,0 +47012,777,578,0,19,19,0 +47011,777,608,0,23,23,0 +47010,777,586,0,18,18,0 +47009,777,573,0,17,17,0 +47008,777,475,1,11,11,0 +47007,777,347,0,16,16,0 +47006,777,607,0,15,15,0 +47005,777,606,1,9,9,0 +47004,777,501,3,6,6,0 +47003,777,496,4,4,4,0 +47002,777,554,6,2,2,0 +47001,777,579,17,1,1,2 +47090,778,616,0,62,62,0 +47089,778,532,0,61,61,0 +47088,778,526,0,60,60,0 +47087,778,449,0,59,59,0 +47086,778,596,0,58,58,0 +47085,778,556,0,57,57,0 +47084,778,558,0,56,56,0 +47083,778,560,0,55,55,0 +47082,778,513,0,54,54,0 +47081,778,565,0,53,53,0 +47080,778,527,0,52,52,0 +47079,778,615,0,51,51,0 +47078,778,538,0,49,49,0 +47077,778,594,0,48,48,0 +47076,778,614,0,46,46,0 +47075,778,592,0,45,45,0 +47074,778,528,0,35,35,0 +47073,778,593,0,34,34,0 +47072,778,529,0,33,33,0 +47071,778,563,0,32,32,0 +47070,778,516,0,31,31,0 +47069,778,512,0,30,30,0 +47068,778,562,0,29,29,0 +47067,778,520,0,28,28,0 +47066,778,514,0,26,26,0 +47065,778,597,0,24,24,0 +47064,778,613,0,23,23,0 +47063,778,533,0,19,19,0 +47062,778,612,2,12,12,0 +47061,778,555,3,11,11,0 +47060,778,525,4,7,7,0 +47059,778,509,7,3,3,0 +47058,778,611,8,2,2,1 +47057,778,610,0,50,50,0 +47056,778,609,0,47,47,0 +47055,778,478,0,44,44,0 +47054,778,456,0,43,43,0 +47053,778,547,0,41,41,0 +47052,778,549,0,39,39,0 +47051,778,541,0,38,38,0 +47050,778,483,0,37,37,0 +47049,778,476,0,17,17,0 +47048,778,356,0,20,20,0 +47047,778,427,2,13,13,0 +47046,778,590,3,10,10,0 +47045,778,418,4,8,8,0 +47044,778,479,6,5,5,0 +47043,778,581,0,18,18,0 +47042,778,577,0,42,42,0 +47041,778,578,0,36,36,0 +47040,778,608,0,40,40,0 +47039,778,586,0,27,27,0 +47038,778,573,0,25,25,0 +47037,778,475,1,16,16,0 +47036,778,347,0,22,22,0 +47035,778,607,0,21,21,0 +47034,778,606,1,14,14,0 +47033,778,501,3,9,9,0 +47032,778,496,4,6,6,0 +47031,778,554,6,4,4,0 +47030,778,579,17,1,1,2 +47155,779,498,1,18,18,0 +47154,779,618,0,44,44,0 +47153,779,617,0,25,25,0 +47152,779,616,0,64,64,0 +47151,779,532,0,63,63,0 +47150,779,526,0,62,62,0 +47149,779,449,0,61,61,0 +47148,779,596,0,60,60,0 +47147,779,556,0,59,59,0 +47146,779,558,0,58,58,0 +47145,779,560,0,57,57,0 +47144,779,513,0,56,56,0 +47143,779,565,0,55,55,0 +47142,779,527,0,54,54,0 +47141,779,615,0,53,53,0 +47140,779,538,0,51,51,0 +47139,779,594,0,50,50,0 +47138,779,614,0,48,48,0 +47137,779,592,0,47,47,0 +47136,779,528,0,38,38,0 +47135,779,593,0,37,37,0 +47134,779,529,0,36,36,0 +47133,779,563,0,35,35,0 +47132,779,516,0,34,34,0 +47131,779,512,0,33,33,0 +47130,779,562,0,32,32,0 +47129,779,520,0,31,31,0 +47128,779,514,0,29,29,0 +47127,779,597,0,27,27,0 +47126,779,613,0,26,26,0 +47125,779,533,0,22,22,0 +47124,779,612,2,16,16,0 +47123,779,555,3,14,14,0 +47122,779,525,4,10,10,0 +47121,779,509,7,4,4,0 +47120,779,611,8,2,2,1 +47119,779,610,0,52,52,0 +47118,779,609,0,49,49,0 +47117,779,478,0,46,46,0 +47116,779,456,0,41,41,0 +47115,779,547,0,45,45,0 +47114,779,549,0,42,42,0 +47113,779,541,0,40,40,0 +47112,779,483,0,39,39,0 +47111,779,476,0,21,21,0 +47110,779,356,0,20,20,0 +47109,779,427,2,15,15,0 +47108,779,590,3,13,13,0 +47107,779,418,4,11,11,0 +47106,779,479,6,6,6,0 +47105,779,581,4,8,8,0 +47104,779,577,7,3,3,0 +47103,779,578,3,12,12,0 +47102,779,608,0,43,43,0 +47101,779,586,0,30,30,0 +47100,779,573,0,28,28,0 +47099,779,475,1,19,19,0 +47098,779,347,0,24,24,0 +47097,779,607,0,23,23,0 +47096,779,606,1,17,17,0 +47095,779,501,5,7,7,0 +47094,779,496,4,9,9,0 +47093,779,554,6,5,5,0 +47092,779,579,25,1,1,3 +47221,780,498,1,20,20,0 +47220,780,486,0,47,47,0 +47219,780,619,0,24,24,0 +47218,780,618,0,45,45,0 +47217,780,617,0,27,27,0 +47216,780,616,0,66,66,0 +47215,780,532,0,65,65,0 +47214,780,526,0,64,64,0 +47213,780,449,0,63,63,0 +47212,780,596,0,62,62,0 +47211,780,556,0,61,61,0 +47210,780,558,0,60,60,0 +47209,780,560,0,59,59,0 +47208,780,513,0,58,58,0 +47207,780,565,0,57,57,0 +47206,780,527,0,56,56,0 +47205,780,615,0,55,55,0 +47204,780,538,0,54,54,0 +47203,780,594,0,53,53,0 +47202,780,614,0,51,51,0 +47201,780,592,0,50,50,0 +47200,780,528,0,41,41,0 +47199,780,593,0,40,40,0 +47198,780,529,0,39,39,0 +47197,780,563,0,38,38,0 +47196,780,516,0,37,37,0 +47195,780,512,0,36,36,0 +47194,780,562,0,35,35,0 +47193,780,520,0,34,34,0 +47192,780,514,0,32,32,0 +47191,780,597,0,30,30,0 +47190,780,613,0,28,28,0 +47189,780,533,0,23,23,0 +47188,780,612,2,18,18,0 +47187,780,555,3,16,16,0 +47186,780,525,4,13,13,0 +47185,780,509,7,5,5,0 +47184,780,611,8,4,4,1 +47183,780,610,0,48,48,0 +47182,780,609,0,52,52,0 +47181,780,478,0,49,49,0 +47180,780,456,2,17,17,0 +47179,780,547,0,46,46,0 +47178,780,549,0,29,29,0 +47177,780,541,0,43,43,0 +47176,780,483,0,42,42,0 +47175,780,476,0,22,22,0 +47174,780,356,0,21,21,0 +47173,780,427,5,10,10,0 +47172,780,590,3,15,15,0 +47171,780,418,4,14,14,0 +47170,780,479,10,3,3,1 +47169,780,581,4,11,11,0 +47168,780,577,13,2,2,0 +47167,780,578,7,6,6,0 +47166,780,608,0,44,44,0 +47165,780,586,0,33,33,0 +47164,780,573,0,31,31,0 +47163,780,475,6,7,7,1 +47162,780,347,0,26,26,0 +47161,780,607,0,25,25,0 +47160,780,606,1,19,19,0 +47159,780,501,5,9,9,0 +47158,780,496,4,12,12,0 +47157,780,554,6,8,8,0 +47156,780,579,25,1,1,3 +47295,781,601,0,64,64,0 +47294,781,621,0,63,63,0 +47293,781,580,0,58,58,0 +47292,781,620,0,55,55,0 +47291,781,459,0,45,45,0 +47290,781,430,0,42,42,0 +47289,781,484,0,41,41,0 +47288,781,431,0,38,38,0 +47287,781,506,0,36,36,0 +47286,781,486,0,52,52,0 +47285,781,619,0,24,24,0 +47284,781,618,0,50,50,0 +47283,781,617,0,27,27,0 +47282,781,616,0,75,75,0 +47281,781,532,0,74,74,0 +47280,781,526,0,73,73,0 +47279,781,449,0,72,72,0 +47278,781,596,0,71,71,0 +47277,781,556,0,70,70,0 +47276,781,558,0,69,69,0 +47275,781,560,0,68,68,0 +47274,781,513,0,67,67,0 +47273,781,565,0,66,66,0 +47272,781,527,0,65,65,0 +47271,781,615,0,62,62,0 +47270,781,538,0,61,61,0 +47269,781,594,0,60,60,0 +47268,781,614,0,57,57,0 +47267,781,592,0,56,56,0 +47266,781,528,0,47,47,0 +47265,781,593,0,46,46,0 +47264,781,529,0,44,44,0 +47263,781,563,0,43,43,0 +47262,781,516,0,40,40,0 +47261,781,512,0,39,39,0 +47260,781,562,0,37,37,0 +47259,781,520,0,35,35,0 +47258,781,514,0,32,32,0 +47257,781,597,0,30,30,0 +47256,781,613,0,28,28,0 +47255,781,533,0,23,23,0 +47254,781,612,2,18,18,0 +47253,781,555,3,16,16,0 +47252,781,525,4,14,14,0 +47251,781,509,7,8,8,0 +47250,781,611,8,6,6,1 +47249,781,610,0,53,53,0 +47248,781,609,0,59,59,0 +47247,781,478,0,54,54,0 +47246,781,456,2,17,17,0 +47245,781,547,0,51,51,0 +47244,781,549,0,29,29,0 +47243,781,541,0,48,48,0 +47242,781,483,0,33,33,0 +47241,781,476,0,22,22,0 +47240,781,356,0,21,21,0 +47239,781,427,5,11,11,0 +47238,781,590,3,15,15,0 +47237,781,418,4,12,12,0 +47236,781,479,10,4,4,1 +47235,781,581,8,7,7,0 +47234,781,577,16,2,2,0 +47233,781,578,13,3,3,0 +47232,781,608,0,49,49,0 +47231,781,586,0,34,34,0 +47230,781,573,0,31,31,0 +47229,781,475,8,5,5,1 +47228,781,347,0,26,26,0 +47227,781,607,0,25,25,0 +47226,781,606,1,19,19,0 +47225,781,501,5,10,10,0 +47224,781,496,4,13,13,0 +47223,781,554,6,9,9,0 +47222,781,579,34,1,1,4 +47370,782,601,0,64,64,0 +47369,782,621,0,63,63,0 +47368,782,580,0,49,49,0 +47367,782,620,0,56,56,0 +47366,782,459,0,45,45,0 +47365,782,430,0,42,42,0 +47364,782,484,0,41,41,0 +47363,782,431,0,38,38,0 +47362,782,506,0,36,36,0 +47361,782,486,0,53,53,0 +47360,782,619,0,25,25,0 +47359,782,618,0,51,51,0 +47358,782,617,0,28,28,0 +47357,782,616,0,75,75,0 +47356,782,532,0,74,74,0 +47355,782,526,0,73,73,0 +47354,782,449,0,72,72,0 +47353,782,596,0,71,71,0 +47352,782,556,0,70,70,0 +47351,782,558,0,69,69,0 +47350,782,560,0,68,68,0 +47349,782,513,0,67,67,0 +47348,782,565,0,66,66,0 +47347,782,527,0,65,65,0 +47346,782,615,0,62,62,0 +47345,782,538,0,61,61,0 +47344,782,594,0,60,60,0 +47343,782,614,0,58,58,0 +47342,782,592,0,57,57,0 +47341,782,528,0,47,47,0 +47340,782,593,0,46,46,0 +47339,782,529,0,44,44,0 +47338,782,563,0,43,43,0 +47337,782,516,0,40,40,0 +47336,782,512,0,39,39,0 +47335,782,562,0,37,37,0 +47334,782,520,0,35,35,0 +47333,782,514,0,33,33,0 +47332,782,597,0,31,31,0 +47331,782,613,0,29,29,0 +47330,782,533,0,24,24,0 +47329,782,612,2,18,18,0 +47328,782,555,3,16,16,0 +47327,782,525,4,15,15,0 +47326,782,509,7,9,9,0 +47325,782,611,8,7,7,1 +47324,782,610,0,54,54,0 +47323,782,609,0,59,59,0 +47322,782,478,0,55,55,0 +47321,782,456,2,17,17,0 +47320,782,547,0,52,52,0 +47319,782,549,0,30,30,0 +47318,782,541,0,48,48,0 +47317,782,483,0,22,22,0 +47316,782,476,0,23,23,0 +47315,782,356,0,21,21,0 +47314,782,427,5,13,13,0 +47313,782,590,5,12,12,0 +47312,782,418,7,10,10,0 +47311,782,479,10,5,5,1 +47310,782,581,8,8,8,0 +47309,782,577,16,3,3,0 +47308,782,578,13,4,4,0 +47307,782,608,0,50,50,0 +47306,782,586,0,34,34,0 +47305,782,573,0,32,32,0 +47304,782,475,17,2,2,2 +47303,782,347,0,27,27,0 +47302,782,607,0,26,26,0 +47301,782,606,1,19,19,0 +47300,782,501,9,6,6,0 +47299,782,496,4,14,14,0 +47298,782,554,6,11,11,0 +47297,782,579,40,1,1,4 +47447,783,638,0,41,41,0 +47446,783,498,1,22,22,0 +47445,783,601,0,65,65,0 +47444,783,621,0,64,64,0 +47443,783,580,0,32,32,0 +47442,783,620,0,58,58,0 +47441,783,459,0,49,49,0 +47440,783,430,0,46,46,0 +47439,783,484,0,45,45,0 +47438,783,431,0,42,42,0 +47437,783,506,0,38,38,0 +47436,783,486,0,55,55,0 +47435,783,619,0,25,25,0 +47434,783,618,0,54,54,0 +47433,783,617,0,28,28,0 +47432,783,616,0,76,76,0 +47431,783,532,0,75,75,0 +47430,783,526,0,74,74,0 +47429,783,449,0,73,73,0 +47428,783,596,0,72,72,0 +47427,783,556,0,71,71,0 +47426,783,558,0,70,70,0 +47425,783,560,0,69,69,0 +47424,783,513,0,68,68,0 +47423,783,565,0,67,67,0 +47422,783,527,0,66,66,0 +47421,783,615,0,63,63,0 +47420,783,538,0,62,62,0 +47419,783,594,0,61,61,0 +47418,783,614,0,60,60,0 +47417,783,592,0,59,59,0 +47416,783,528,0,51,51,0 +47415,783,593,0,50,50,0 +47414,783,529,0,48,48,0 +47413,783,563,0,47,47,0 +47412,783,516,0,44,44,0 +47411,783,512,0,43,43,0 +47410,783,562,0,40,40,0 +47409,783,520,0,37,37,0 +47408,783,514,0,34,34,0 +47407,783,597,0,31,31,0 +47406,783,613,0,29,29,0 +47405,783,533,0,24,24,0 +47404,783,612,2,19,19,0 +47403,783,555,3,17,17,0 +47402,783,525,4,16,16,0 +47401,783,509,7,10,10,0 +47400,783,611,8,8,8,1 +47399,783,610,0,56,56,0 +47398,783,609,0,39,39,0 +47397,783,478,0,57,57,0 +47396,783,456,2,18,18,0 +47395,783,547,0,35,35,0 +47394,783,549,0,30,30,0 +47393,783,541,0,52,52,0 +47392,783,483,1,20,20,0 +47391,783,476,4,14,14,0 +47390,783,356,0,23,23,0 +47389,783,427,5,13,13,0 +47388,783,590,5,12,12,0 +47387,783,418,10,6,6,0 +47386,783,479,11,5,5,1 +47385,783,581,8,9,9,0 +47384,783,577,16,3,3,0 +47383,783,578,13,4,4,0 +47382,783,608,0,53,53,0 +47381,783,586,0,36,36,0 +47380,783,573,0,33,33,0 +47379,783,475,25,2,2,3 +47378,783,347,0,27,27,0 +47377,783,607,0,26,26,0 +47376,783,606,1,21,21,0 +47375,783,501,10,7,7,0 +47374,783,496,4,15,15,0 +47373,783,554,6,11,11,0 +47372,783,579,40,1,1,4 +46520,784,806,0,8,8,0 +46519,784,583,1.5,6,6,0 +46518,784,579,5,2,2,1 +46517,784,498,0,15,15,0 +46516,784,608,0,14,14,0 +46515,784,496,0,13,13,0 +46514,784,586,0,12,12,0 +46513,784,581,0,11,11,0 +46512,784,475,0,10,10,0 +46511,784,623,0,9,9,0 +46510,784,482,2,5,5,0 +46509,784,622,1.5,7,7,0 +46508,784,578,4,4,4,0 +46507,784,554,6,1,1,0 +46506,784,577,4,3,3,1 +46547,785,429,0,14,14,0 +46546,785,806,0,13,13,0 +46545,785,583,1.5,10,10,0 +46544,785,589,0,27,27,0 +46543,785,479,0,26,26,0 +46542,785,483,0,25,25,0 +46541,785,501,0,24,24,0 +46540,785,427,0,23,23,0 +46539,785,627,0,21,21,0 +46538,785,626,0,18,18,0 +46537,785,547,0,17,17,0 +46536,785,607,0,16,16,0 +46535,785,625,0,12,12,0 +46534,785,624,2,7,7,0 +46533,785,579,10.5,1,1,1 +46532,785,498,0,22,22,0 +46531,785,608,1.5,9,9,0 +46530,785,496,0,20,20,0 +46529,785,586,0,19,19,0 +46528,785,581,3,6,6,0 +46527,785,475,8,3,3,1 +46526,785,623,0,15,15,0 +46525,785,482,2,8,8,0 +46524,785,622,1.5,11,11,0 +46523,785,578,4,5,5,0 +46522,785,554,10,2,2,0 +46521,785,577,4,4,4,1 +46608,786,532,0,52,52,0 +46607,786,429,0,20,20,0 +46606,786,806,0,19,19,0 +46605,786,583,1.5,15,15,0 +46604,786,555,1,17,17,0 +46603,786,512,0,61,61,0 +46602,786,526,0,60,60,0 +46601,786,533,0,59,59,0 +46600,786,561,0,58,58,0 +46599,786,538,0,57,57,0 +46598,786,612,0,56,56,0 +46597,786,631,0,55,55,0 +46596,786,562,0,54,54,0 +46595,786,556,0,53,53,0 +46594,786,596,0,51,51,0 +46593,786,529,0,50,50,0 +46592,786,594,0,49,49,0 +46591,786,509,0,48,48,0 +46590,786,525,0,37,37,0 +46589,786,597,0,36,36,0 +46588,786,630,0,35,35,0 +46587,786,595,0,34,34,0 +46586,786,513,0,33,33,0 +46585,786,558,0,32,32,0 +46584,786,516,0,31,31,0 +46583,786,615,0,30,30,0 +46582,786,520,0,29,29,0 +46581,786,629,0,28,28,0 +46580,786,592,0,27,27,0 +46579,786,449,0,26,26,0 +46578,786,514,0,24,24,0 +46577,786,628,0,21,21,0 +46576,786,537,2,13,13,0 +46575,786,593,3,10,10,0 +46574,786,528,4,8,8,0 +46573,786,611,6,5,5,0 +46572,786,559,8,4,4,1 +46571,786,589,0,47,47,0 +46570,786,479,0,46,46,0 +46569,786,483,0,45,45,0 +46568,786,501,0,44,44,0 +46567,786,427,0,43,43,0 +46566,786,627,0,41,41,0 +46565,786,626,0,38,38,0 +46564,786,547,0,25,25,0 +46563,786,607,0,23,23,0 +46562,786,625,0,18,18,0 +46561,786,624,2,11,11,0 +46560,786,579,10.5,1,1,1 +46559,786,498,0,42,42,0 +46558,786,608,1.5,14,14,0 +46557,786,496,0,40,40,0 +46556,786,586,0,39,39,0 +46555,786,581,3,9,9,0 +46554,786,475,8,3,3,1 +46553,786,623,0,22,22,0 +46552,786,482,2,12,12,0 +46551,786,622,1.5,16,16,0 +46550,786,578,4,7,7,0 +46549,786,554,10,2,2,0 +46548,786,577,4,6,6,1 +46673,787,532,0,56,56,0 +46672,787,806,0,24,24,0 +46671,787,583,1.5,19,19,0 +46670,787,580,0,48,48,0 +46669,787,634,0,47,47,0 +46668,787,429,0,22,22,0 +46667,787,633,2,17,17,0 +46666,787,632,6,6,6,0 +46665,787,555,1,21,21,0 +46664,787,512,0,65,65,0 +46663,787,526,0,64,64,0 +46662,787,533,0,63,63,0 +46661,787,561,0,62,62,0 +46660,787,538,0,61,61,0 +46659,787,612,0,60,60,0 +46658,787,631,0,59,59,0 +46657,787,562,0,58,58,0 +46656,787,556,0,57,57,0 +46655,787,596,0,55,55,0 +46654,787,529,0,54,54,0 +46653,787,594,0,53,53,0 +46652,787,509,0,52,52,0 +46651,787,525,0,41,41,0 +46650,787,597,0,40,40,0 +46649,787,630,0,39,39,0 +46648,787,595,0,38,38,0 +46647,787,513,0,37,37,0 +46646,787,558,0,36,36,0 +46645,787,516,0,35,35,0 +46644,787,615,0,34,34,0 +46643,787,520,0,33,33,0 +46642,787,629,0,32,32,0 +46641,787,592,0,31,31,0 +46640,787,449,0,30,30,0 +46639,787,514,0,27,27,0 +46638,787,628,0,25,25,0 +46637,787,537,2,16,16,0 +46636,787,593,3,12,12,0 +46635,787,528,4,10,10,0 +46634,787,611,6,7,7,0 +46633,787,559,8,5,5,1 +46632,787,589,0,51,51,0 +46631,787,479,0,50,50,0 +46630,787,483,0,49,49,0 +46629,787,501,3,11,11,0 +46628,787,427,0,44,44,0 +46627,787,627,0,28,28,0 +46626,787,626,0,42,42,0 +46625,787,547,0,29,29,0 +46624,787,607,2,13,13,0 +46623,787,625,0,23,23,0 +46622,787,624,2,14,14,0 +46621,787,579,10.5,3,3,1 +46620,787,498,0,46,46,0 +46619,787,608,1.5,18,18,0 +46618,787,496,0,45,45,0 +46617,787,586,0,43,43,0 +46616,787,581,11,1,1,1 +46615,787,475,11,2,2,1 +46614,787,623,0,26,26,0 +46613,787,482,2,15,15,0 +46612,787,622,1.5,20,20,0 +46611,787,578,4,9,9,0 +46610,787,554,10,4,4,0 +46609,787,577,4,8,8,1 +46741,788,532,0,59,59,0 +46740,788,806,0,25,25,0 +46739,788,583,1.5,19,19,0 +46738,788,635,0,54,54,0 +46737,788,606,0,51,51,0 +46736,788,609,0,48,48,0 +46735,788,580,0,28,28,0 +46734,788,634,0,49,49,0 +46733,788,429,0,22,22,0 +46732,788,633,2,17,17,0 +46731,788,632,6,7,7,0 +46730,788,555,1,21,21,0 +46729,788,512,0,68,68,0 +46728,788,526,0,67,67,0 +46727,788,533,0,66,66,0 +46726,788,561,0,65,65,0 +46725,788,538,0,64,64,0 +46724,788,612,0,63,63,0 +46723,788,631,0,62,62,0 +46722,788,562,0,61,61,0 +46721,788,556,0,60,60,0 +46720,788,596,0,58,58,0 +46719,788,529,0,57,57,0 +46718,788,594,0,56,56,0 +46717,788,509,0,55,55,0 +46716,788,525,0,43,43,0 +46715,788,597,0,42,42,0 +46714,788,630,0,41,41,0 +46713,788,595,0,40,40,0 +46712,788,513,0,39,39,0 +46711,788,558,0,38,38,0 +46710,788,516,0,37,37,0 +46709,788,615,0,36,36,0 +46708,788,520,0,35,35,0 +46707,788,629,0,34,34,0 +46706,788,592,0,33,33,0 +46705,788,449,0,31,31,0 +46704,788,514,0,29,29,0 +46703,788,628,0,26,26,0 +46702,788,537,2,18,18,0 +46701,788,593,3,14,14,0 +46700,788,528,4,11,11,0 +46699,788,611,6,8,8,0 +46698,788,559,8,5,5,1 +46697,788,589,0,53,53,0 +46696,788,479,0,52,52,0 +46695,788,483,0,50,50,0 +46694,788,501,3,13,13,0 +46693,788,427,0,45,45,0 +46692,788,627,0,23,23,0 +46691,788,626,0,32,32,0 +46690,788,547,0,30,30,0 +46689,788,607,3,12,12,0 +46688,788,625,0,24,24,0 +46687,788,624,2,15,15,0 +46686,788,579,14.5,2,2,1 +46685,788,498,0,47,47,0 +46684,788,608,7.5,6,6,0 +46683,788,496,0,46,46,0 +46682,788,586,0,44,44,0 +46681,788,581,19,1,1,2 +46680,788,475,12,4,4,1 +46679,788,623,0,27,27,0 +46678,788,482,2,16,16,0 +46677,788,622,1.5,20,20,0 +46676,788,578,4,10,10,0 +46675,788,554,14,3,3,0 +46674,788,577,4,9,9,1 +46819,789,532,0,65,65,0 +46818,789,806,0,28,28,0 +46817,789,583,1.5,22,22,0 +46816,789,541,0,72,72,0 +46815,789,356,0,71,71,0 +46814,789,585,0,68,68,0 +46813,789,637,0,67,67,0 +46812,789,620,0,64,64,0 +46811,789,506,0,62,62,0 +46810,789,456,0,57,57,0 +46809,789,636,0,53,53,0 +46808,789,619,0,37,37,0 +46807,789,486,3,15,15,0 +46806,789,635,0,58,58,0 +46805,789,606,3,12,12,0 +46804,789,609,0,51,51,0 +46803,789,580,0,31,31,0 +46802,789,634,0,52,52,0 +46801,789,429,0,25,25,0 +46800,789,633,2,17,17,0 +46799,789,632,6,7,7,0 +46798,789,555,1,24,24,0 +46797,789,512,0,78,78,0 +46796,789,526,0,77,77,0 +46795,789,533,0,76,76,0 +46794,789,561,0,75,75,0 +46793,789,538,0,74,74,0 +46792,789,612,0,73,73,0 +46791,789,631,0,70,70,0 +46790,789,562,0,69,69,0 +46789,789,556,0,66,66,0 +46788,789,596,0,63,63,0 +46787,789,529,0,61,61,0 +46786,789,594,0,60,60,0 +46785,789,509,0,59,59,0 +46784,789,525,0,46,46,0 +46783,789,597,0,45,45,0 +46782,789,630,0,44,44,0 +46781,789,595,0,43,43,0 +46780,789,513,0,42,42,0 +46779,789,558,0,41,41,0 +46778,789,516,0,40,40,0 +46777,789,615,0,39,39,0 +46776,789,520,0,38,38,0 +46775,789,629,0,36,36,0 +46774,789,592,0,35,35,0 +46773,789,449,0,33,33,0 +46772,789,514,0,32,32,0 +46771,789,628,0,29,29,0 +46770,789,537,2,21,21,0 +46769,789,593,3,16,16,0 +46768,789,528,4,11,11,0 +46767,789,611,6,8,8,0 +46766,789,559,8,5,5,1 +46765,789,589,0,56,56,0 +46764,789,479,0,55,55,0 +46763,789,483,0,54,54,0 +46762,789,501,3,14,14,0 +46761,789,427,0,48,48,0 +46760,789,627,0,26,26,0 +46759,789,626,0,34,34,0 +46758,789,547,2,19,19,0 +46757,789,607,3,13,13,0 +46756,789,625,0,27,27,0 +46755,789,624,2,18,18,0 +46754,789,579,22.5,1,1,2 +46753,789,498,0,50,50,0 +46752,789,608,7.5,6,6,0 +46751,789,496,0,49,49,0 +46750,789,586,0,47,47,0 +46749,789,581,22,2,2,2 +46748,789,475,13,4,4,1 +46747,789,623,0,30,30,0 +46746,789,482,2,20,20,0 +46745,789,622,1.5,23,23,0 +46744,789,578,4,10,10,0 +46743,789,554,18,3,3,0 +46742,789,577,4,9,9,1 +46899,790,532,0,67,67,0 +46898,790,806,0,29,29,0 +46897,790,583,1.5,24,24,0 +46896,790,639,0,48,48,0 +46895,790,638,0,47,47,0 +46894,790,541,0,74,74,0 +46893,790,356,0,73,73,0 +46892,790,585,0,70,70,0 +46891,790,637,0,69,69,0 +46890,790,620,0,57,57,0 +46889,790,506,0,65,65,0 +46888,790,456,0,58,58,0 +46887,790,636,0,55,55,0 +46886,790,619,0,37,37,0 +46885,790,486,3,16,16,0 +46884,790,635,0,61,61,0 +46883,790,606,3,12,12,0 +46882,790,609,0,53,53,0 +46881,790,580,3,14,14,0 +46880,790,634,0,54,54,0 +46879,790,429,0,27,27,0 +46878,790,633,2,19,19,0 +46877,790,632,6,7,7,0 +46876,790,555,1,26,26,0 +46875,790,512,0,80,80,0 +46874,790,526,0,79,79,0 +46873,790,533,0,78,78,0 +46872,790,561,0,77,77,0 +46871,790,538,0,76,76,0 +46870,790,612,0,75,75,0 +46869,790,631,0,72,72,0 +46868,790,562,0,71,71,0 +46867,790,556,0,68,68,0 +46866,790,596,0,66,66,0 +46865,790,529,0,64,64,0 +46864,790,594,0,63,63,0 +46863,790,509,0,62,62,0 +46862,790,525,0,46,46,0 +46861,790,597,0,45,45,0 +46860,790,630,0,44,44,0 +46859,790,595,0,43,43,0 +46858,790,513,0,42,42,0 +46857,790,558,0,41,41,0 +46856,790,516,0,40,40,0 +46855,790,615,0,39,39,0 +46854,790,520,0,38,38,0 +46853,790,629,0,36,36,0 +46852,790,592,0,35,35,0 +46851,790,449,0,33,33,0 +46850,790,514,0,32,32,0 +46849,790,628,0,30,30,0 +46848,790,537,2,23,23,0 +46847,790,593,3,17,17,0 +46846,790,528,4,11,11,0 +46845,790,611,6,8,8,0 +46844,790,559,8,5,5,1 +46843,790,589,0,60,60,0 +46842,790,479,0,59,59,0 +46841,790,483,0,56,56,0 +46840,790,501,3,15,15,0 +46839,790,427,0,50,50,0 +46838,790,627,2,18,18,0 +46837,790,626,0,34,34,0 +46836,790,547,2,21,21,0 +46835,790,607,3,13,13,0 +46834,790,625,0,28,28,0 +46833,790,624,2,20,20,0 +46832,790,579,30,1,1,3 +46831,790,498,0,52,52,0 +46830,790,608,7.5,6,6,0 +46829,790,496,0,51,51,0 +46828,790,586,0,49,49,0 +46827,790,581,22,2,2,2 +46826,790,475,19,4,4,1 +46825,790,623,0,31,31,0 +46824,790,482,2,22,22,0 +46823,790,622,1.5,25,25,0 +46822,790,578,4,10,10,0 +46821,790,554,22,3,3,0 +46820,790,577,4,9,9,1 +46984,791,347,0,65,65,0 +46983,791,532,0,72,72,0 +46982,791,806,0,31,31,0 +46981,791,476,0,77,77,0 +46980,791,610,0,71,71,0 +46979,791,641,0,64,64,0 +46978,791,583,1.5,25,25,0 +46977,791,640,0,34,34,0 +46976,791,639,0,53,53,0 +46975,791,638,0,52,52,0 +46974,791,541,4,13,13,0 +46973,791,356,0,79,79,0 +46972,791,585,0,75,75,0 +46971,791,637,0,74,74,0 +46970,791,620,0,57,57,0 +46969,791,506,0,61,61,0 +46968,791,456,0,41,41,0 +46967,791,636,0,59,59,0 +46966,791,619,0,42,42,0 +46965,791,486,5,10,10,0 +46964,791,635,0,66,66,0 +46963,791,606,3,15,15,0 +46962,791,609,0,38,38,0 +46961,791,580,6,9,9,0 +46960,791,634,0,58,58,0 +46959,791,429,0,28,28,0 +46958,791,633,2,20,20,0 +46957,791,632,6,7,7,0 +46956,791,555,1,27,27,0 +46955,791,512,0,85,85,0 +46954,791,526,0,84,84,0 +46953,791,533,0,83,83,0 +46952,791,561,0,82,82,0 +46951,791,538,0,81,81,0 +46950,791,612,0,80,80,0 +46949,791,631,0,78,78,0 +46948,791,562,0,76,76,0 +46947,791,556,0,73,73,0 +46946,791,596,0,70,70,0 +46945,791,529,0,69,69,0 +46944,791,594,0,68,68,0 +46943,791,509,0,67,67,0 +46942,791,525,0,51,51,0 +46941,791,597,0,50,50,0 +46940,791,630,0,49,49,0 +46939,791,595,0,48,48,0 +46938,791,513,0,47,47,0 +46937,791,558,0,46,46,0 +46936,791,516,0,45,45,0 +46935,791,615,0,44,44,0 +46934,791,520,0,43,43,0 +46933,791,629,0,40,40,0 +46932,791,592,0,39,39,0 +46931,791,449,0,36,36,0 +46930,791,514,0,35,35,0 +46929,791,628,0,32,32,0 +46928,791,537,2,24,24,0 +46927,791,593,3,18,18,0 +46926,791,528,4,14,14,0 +46925,791,611,6,8,8,0 +46924,791,559,8,5,5,1 +46923,791,589,0,63,63,0 +46922,791,479,0,62,62,0 +46921,791,483,0,60,60,0 +46920,791,501,3,17,17,0 +46919,791,427,0,54,54,0 +46918,791,627,2,19,19,0 +46917,791,626,0,37,37,0 +46916,791,547,2,22,22,0 +46915,791,607,3,16,16,0 +46914,791,625,0,30,30,0 +46913,791,624,2,21,21,0 +46912,791,579,30,1,1,3 +46911,791,498,0,56,56,0 +46910,791,608,7.5,6,6,0 +46909,791,496,0,55,55,0 +46908,791,586,0,29,29,0 +46907,791,581,25,3,3,2 +46906,791,475,27,2,2,2 +46905,791,623,0,33,33,0 +46904,791,482,2,23,23,0 +46903,791,622,1.5,26,26,0 +46902,791,578,4,12,12,0 +46901,791,554,22,4,4,0 +46900,791,577,4,11,11,1 +46098,792,620,1.33,6,6,0 +46097,792,496,0,14,14,0 +46096,792,649,0,22,22,0 +46095,792,633,0,17,17,0 +46094,792,648,1,8,8,0 +46093,792,554,0,11,11,0 +46092,792,625,0,21,21,0 +46091,792,647,0,20,20,0 +46090,792,623,0,19,19,0 +46089,792,475,1,7,7,0 +46088,792,608,0,18,18,0 +46087,792,427,3.33,2,2,0 +46086,792,646,0,16,16,0 +46085,792,645,0,15,15,0 +46084,792,644,0,12,12,0 +46083,792,577,0,13,13,0 +46082,792,501,0,10,10,0 +46081,792,643,2,5,5,0 +46080,792,478,1,9,9,0 +46079,792,642,3.33,3,3,0 +46078,792,498,2,4,4,0 +46077,792,579,9,1,1,1 +46131,793,632,0,19,19,0 +46130,793,620,1.33,10,10,0 +46129,793,652,0,33,33,0 +46128,793,651,0,32,32,0 +46127,793,627,0,30,30,0 +46126,793,578,0,29,29,0 +46125,793,609,0,28,28,0 +46124,793,626,0,27,27,0 +46123,793,607,2,7,7,0 +46122,793,641,0,20,20,0 +46121,793,650,0,18,18,0 +46120,793,589,0,15,15,0 +46119,793,496,0,21,21,0 +46118,793,649,0,31,31,0 +46117,793,633,2,8,8,0 +46116,793,648,1,12,12,0 +46115,793,554,2,6,6,0 +46114,793,625,0,25,25,0 +46113,793,647,0,24,24,0 +46112,793,623,0,26,26,0 +46111,793,475,1,11,11,0 +46110,793,608,6,4,4,0 +46109,793,427,11.33,1,1,1 +46108,793,646,0,23,23,0 +46107,793,645,0,22,22,0 +46106,793,644,0,17,17,0 +46105,793,577,0,16,16,0 +46104,793,501,0,14,14,0 +46103,793,643,2,9,9,0 +46102,793,478,1,13,13,0 +46101,793,642,6.33,3,3,0 +46100,793,498,2,5,5,0 +46099,793,579,10,2,2,1 +46199,794,519,1,20,20,0 +46198,794,555,3,8,8,0 +46197,794,632,0,29,29,0 +46196,794,620,1.33,15,15,0 +46195,794,592,0,68,68,0 +46194,794,615,0,67,67,0 +46193,794,659,0,66,66,0 +46192,794,596,0,65,65,0 +46191,794,533,0,64,64,0 +46190,794,449,0,63,63,0 +46189,794,558,0,62,62,0 +46188,794,658,0,61,61,0 +46187,794,657,1,21,21,0 +46186,794,525,0,60,60,0 +46185,794,561,0,59,59,0 +46184,794,532,0,57,57,0 +46183,794,593,0,56,56,0 +46182,794,631,0,53,53,0 +46181,794,611,0,51,51,0 +46180,794,523,0,50,50,0 +46179,794,656,0,47,47,0 +46178,794,655,0,46,46,0 +46177,794,528,0,44,44,0 +46176,794,509,0,37,37,0 +46175,794,513,0,36,36,0 +46174,794,563,0,35,35,0 +46173,794,518,0,34,34,0 +46172,794,559,0,33,33,0 +46171,794,556,0,32,32,0 +46170,794,597,0,30,30,0 +46169,794,538,0,27,27,0 +46168,794,612,0,24,24,0 +46167,794,654,1,19,19,0 +46166,794,512,3,9,9,0 +46165,794,653,4,6,6,0 +46164,794,529,3,7,7,0 +46163,794,628,8,3,3,1 +46162,794,652,0,58,58,0 +46161,794,651,0,55,55,0 +46160,794,627,0,52,52,0 +46159,794,578,0,49,49,0 +46158,794,609,0,48,48,0 +46157,794,626,0,45,45,0 +46156,794,607,2,12,12,0 +46155,794,641,0,31,31,0 +46154,794,650,0,28,28,0 +46153,794,589,0,23,23,0 +46152,794,496,0,38,38,0 +46151,794,649,0,54,54,0 +46150,794,633,2,13,13,0 +46149,794,648,1,17,17,0 +46148,794,554,2,11,11,0 +46147,794,625,0,42,42,0 +46146,794,647,0,41,41,0 +46145,794,623,0,43,43,0 +46144,794,475,1,16,16,0 +46143,794,608,6,5,5,0 +46142,794,427,11.33,1,1,1 +46141,794,646,0,40,40,0 +46140,794,645,0,39,39,0 +46139,794,644,0,26,26,0 +46138,794,577,0,25,25,0 +46137,794,501,0,22,22,0 +46136,794,643,2,14,14,0 +46135,794,478,1,18,18,0 +46134,794,642,6.33,4,4,0 +46133,794,498,2,10,10,0 +46132,794,579,10,2,2,1 +46268,795,519,1,21,21,0 +46267,795,555,3,9,9,0 +46266,795,620,1.33,17,17,0 +46265,795,660,0,45,45,0 +46264,795,632,3,11,11,0 +46263,795,592,0,69,69,0 +46262,795,615,0,68,68,0 +46261,795,659,0,67,67,0 +46260,795,596,0,66,66,0 +46259,795,533,0,65,65,0 +46258,795,449,0,64,64,0 +46257,795,558,0,63,63,0 +46256,795,658,0,62,62,0 +46255,795,657,1,22,22,0 +46254,795,525,0,61,61,0 +46253,795,561,0,60,60,0 +46252,795,532,0,58,58,0 +46251,795,593,0,57,57,0 +46250,795,631,0,54,54,0 +46249,795,611,0,53,53,0 +46248,795,523,0,52,52,0 +46247,795,656,0,50,50,0 +46246,795,655,0,49,49,0 +46245,795,528,0,47,47,0 +46244,795,509,0,38,38,0 +46243,795,513,0,37,37,0 +46242,795,563,0,36,36,0 +46241,795,518,0,35,35,0 +46240,795,559,0,34,34,0 +46239,795,556,0,33,33,0 +46238,795,597,0,31,31,0 +46237,795,538,0,28,28,0 +46236,795,612,0,25,25,0 +46235,795,654,1,20,20,0 +46234,795,512,3,12,12,0 +46233,795,653,4,7,7,0 +46232,795,529,3,8,8,0 +46231,795,628,8,4,4,1 +46230,795,652,0,59,59,0 +46229,795,651,0,56,56,0 +46228,795,627,0,32,32,0 +46227,795,578,0,43,43,0 +46226,795,609,0,51,51,0 +46225,795,626,0,48,48,0 +46224,795,607,2,15,15,0 +46223,795,641,0,30,30,0 +46222,795,650,0,29,29,0 +46221,795,589,0,24,24,0 +46220,795,496,0,39,39,0 +46219,795,649,0,55,55,0 +46218,795,633,2,16,16,0 +46217,795,648,1,18,18,0 +46216,795,554,3,10,10,0 +46215,795,625,0,44,44,0 +46214,795,647,0,42,42,0 +46213,795,623,0,46,46,0 +46212,795,475,7,5,5,0 +46211,795,608,6,6,6,0 +46210,795,427,11.33,2,2,1 +46209,795,646,0,41,41,0 +46208,795,645,0,40,40,0 +46207,795,644,0,27,27,0 +46206,795,577,0,26,26,0 +46205,795,501,0,23,23,0 +46204,795,643,3,13,13,0 +46203,795,478,1,19,19,0 +46202,795,642,10.33,3,3,0 +46201,795,498,2,14,14,0 +46200,795,579,19,1,1,2 +46337,796,661,0,52,52,0 +46336,796,547,0,48,48,0 +46335,796,624,0,32,32,0 +46334,796,660,0,37,37,0 +46333,796,632,3,13,13,0 +46332,796,592,0,72,72,0 +46331,796,615,0,71,71,0 +46330,796,659,0,70,70,0 +46329,796,596,0,69,69,0 +46328,796,533,0,68,68,0 +46327,796,449,0,67,67,0 +46326,796,558,0,66,66,0 +46325,796,658,0,65,65,0 +46324,796,657,1,23,23,0 +46323,796,525,0,64,64,0 +46322,796,561,0,63,63,0 +46321,796,532,0,61,61,0 +46320,796,593,0,60,60,0 +46319,796,631,0,57,57,0 +46318,796,611,0,56,56,0 +46317,796,523,0,55,55,0 +46316,796,656,0,53,53,0 +46315,796,655,0,51,51,0 +46314,796,528,0,50,50,0 +46313,796,509,0,41,41,0 +46312,796,513,0,40,40,0 +46311,796,563,0,39,39,0 +46310,796,518,0,38,38,0 +46309,796,559,0,36,36,0 +46308,796,556,0,35,35,0 +46307,796,597,0,33,33,0 +46306,796,538,0,30,30,0 +46305,796,612,0,26,26,0 +46304,796,654,1,21,21,0 +46303,796,512,3,14,14,0 +46302,796,653,4,9,9,0 +46301,796,529,3,10,10,0 +46300,796,628,8,5,5,1 +46299,796,652,0,62,62,0 +46298,796,651,0,59,59,0 +46297,796,627,0,34,34,0 +46296,796,578,0,29,29,0 +46295,796,609,0,54,54,0 +46294,796,626,0,46,46,0 +46293,796,607,2,16,16,0 +46292,796,641,0,31,31,0 +46291,796,650,0,27,27,0 +46290,796,589,0,25,25,0 +46289,796,496,0,42,42,0 +46288,796,649,0,58,58,0 +46287,796,633,2,17,17,0 +46286,796,648,1,19,19,0 +46285,796,554,3,12,12,0 +46284,796,625,0,47,47,0 +46283,796,647,0,45,45,0 +46282,796,623,0,49,49,0 +46281,796,475,13,2,2,0 +46280,796,608,8,6,6,0 +46279,796,427,11.33,3,3,1 +46278,796,646,0,44,44,0 +46277,796,645,0,43,43,0 +46276,796,644,0,28,28,0 +46275,796,577,4,8,8,0 +46274,796,501,0,24,24,0 +46273,796,643,7,7,7,0 +46272,796,478,1,20,20,0 +46271,796,642,10.33,4,4,0 +46270,796,498,2,15,15,0 +46269,796,579,27,1,1,3 +46421,797,519,1,23,23,0 +46420,797,555,3,12,12,0 +46419,797,620,1.33,20,20,0 +46418,797,486,0,73,73,0 +46417,797,665,0,67,67,0 +46416,797,666,0,64,64,0 +46415,797,456,0,59,59,0 +46414,797,581,0,54,54,0 +46413,797,664,0,51,51,0 +46412,797,356,0,49,49,0 +46411,797,663,0,38,38,0 +46410,797,662,0,32,32,0 +46409,797,661,0,57,57,0 +46408,797,547,0,53,53,0 +46407,797,624,0,33,33,0 +46406,797,660,0,40,40,0 +46405,797,632,3,15,15,0 +46404,797,592,0,81,81,0 +46403,797,615,0,80,80,0 +46402,797,659,0,79,79,0 +46401,797,596,0,78,78,0 +46400,797,533,0,77,77,0 +46399,797,449,0,76,76,0 +46398,797,558,0,75,75,0 +46397,797,658,0,74,74,0 +46396,797,657,1,24,24,0 +46395,797,525,0,72,72,0 +46394,797,561,0,71,71,0 +46393,797,532,0,69,69,0 +46392,797,593,0,68,68,0 +46391,797,631,0,65,65,0 +46390,797,611,0,63,63,0 +46389,797,523,0,62,62,0 +46388,797,656,0,61,61,0 +46387,797,655,0,58,58,0 +46386,797,528,0,56,56,0 +46385,797,509,0,44,44,0 +46384,797,513,0,43,43,0 +46383,797,563,0,42,42,0 +46382,797,518,0,41,41,0 +46381,797,559,0,39,39,0 +46380,797,556,0,37,37,0 +46379,797,597,0,35,35,0 +46378,797,538,0,31,31,0 +46377,797,612,0,28,28,0 +46376,797,654,1,22,22,0 +46375,797,512,3,16,16,0 +46374,797,653,4,10,10,0 +46373,797,529,3,11,11,0 +46372,797,628,8,5,5,1 +46371,797,652,0,70,70,0 +46370,797,651,0,34,34,0 +46369,797,627,0,36,36,0 +46368,797,578,0,26,26,0 +46367,797,609,0,60,60,0 +46366,797,626,0,50,50,0 +46365,797,607,2,18,18,0 +46364,797,641,3,14,14,0 +46363,797,650,0,29,29,0 +46362,797,589,0,27,27,0 +46361,797,496,0,45,45,0 +46360,797,649,0,66,66,0 +46359,797,633,2,19,19,0 +46358,797,648,5,9,9,0 +46357,797,554,3,13,13,0 +46356,797,625,0,52,52,0 +46355,797,647,0,48,48,0 +46354,797,623,0,55,55,0 +46353,797,475,22,2,2,1 +46352,797,608,8,6,6,0 +46351,797,427,11.33,3,3,1 +46350,797,646,0,47,47,0 +46349,797,645,0,46,46,0 +46348,797,644,0,30,30,0 +46347,797,577,6,8,8,0 +46346,797,501,0,25,25,0 +46345,797,643,7,7,7,0 +46344,797,478,1,21,21,0 +46343,797,642,10.33,4,4,0 +46342,797,498,2,17,17,0 +46341,797,579,33,1,1,3 +46503,798,586,0,74,74,0 +46502,798,668,0,65,65,0 +46501,798,667,0,40,40,0 +46500,798,620,1.33,21,21,0 +46499,798,486,0,76,76,0 +46498,798,665,0,69,69,0 +46497,798,666,0,66,66,0 +46496,798,456,0,60,60,0 +46495,798,581,0,55,55,0 +46494,798,664,0,53,53,0 +46493,798,356,0,50,50,0 +46492,798,663,0,38,38,0 +46491,798,662,0,33,33,0 +46490,798,661,0,58,58,0 +46489,798,547,0,51,51,0 +46488,798,624,0,34,34,0 +46487,798,660,0,42,42,0 +46486,798,632,3,15,15,0 +46485,798,592,0,84,84,0 +46484,798,615,0,83,83,0 +46483,798,659,0,82,82,0 +46482,798,596,0,81,81,0 +46481,798,533,0,80,80,0 +46480,798,449,0,79,79,0 +46479,798,558,0,78,78,0 +46478,798,658,0,77,77,0 +46477,798,657,1,25,25,0 +46476,798,525,0,75,75,0 +46475,798,561,0,73,73,0 +46474,798,532,0,71,71,0 +46473,798,593,0,70,70,0 +46472,798,631,0,67,67,0 +46471,798,611,0,64,64,0 +46470,798,523,0,63,63,0 +46469,798,656,0,62,62,0 +46468,798,655,0,59,59,0 +46467,798,528,0,57,57,0 +46466,798,509,0,46,46,0 +46465,798,513,0,45,45,0 +46464,798,563,0,44,44,0 +46463,798,518,0,43,43,0 +46462,798,559,0,41,41,0 +46461,798,556,0,39,39,0 +46460,798,597,0,36,36,0 +46459,798,538,0,32,32,0 +46458,798,612,0,29,29,0 +46457,798,654,1,23,23,0 +46456,798,512,3,16,16,0 +46455,798,653,4,12,12,0 +46454,798,529,3,13,13,0 +46453,798,628,8,7,7,1 +46452,798,652,0,72,72,0 +46451,798,651,0,35,35,0 +46450,798,627,0,37,37,0 +46449,798,578,0,27,27,0 +46448,798,609,0,61,61,0 +46447,798,626,0,52,52,0 +46446,798,607,2,18,18,0 +46445,798,641,9,6,6,0 +46444,798,650,0,30,30,0 +46443,798,589,0,28,28,0 +46442,798,496,2,19,19,0 +46441,798,649,0,68,68,0 +46440,798,633,2,20,20,0 +46439,798,648,5,11,11,0 +46438,798,554,6,9,9,0 +46437,798,625,0,54,54,0 +46436,798,647,0,49,49,0 +46435,798,623,0,56,56,0 +46434,798,475,23,2,2,1 +46433,798,608,12,3,3,0 +46432,798,427,11.33,4,4,1 +46431,798,646,0,48,48,0 +46430,798,645,0,47,47,0 +46429,798,644,0,31,31,0 +46428,798,577,6,10,10,0 +46427,798,501,0,26,26,0 +46426,798,643,7,8,8,0 +46425,798,478,1,22,22,0 +46424,798,642,10.33,5,5,0 +46423,798,498,2,17,17,0 +46422,798,579,40,1,1,4 +51478,799,496,0,16,16,0 +51477,799,577,0,15,15,0 +51476,799,627,0,14,14,0 +51475,799,672,0,13,13,0 +51474,799,671,0,12,12,0 +51473,799,643,0,11,11,0 +51472,799,670,0,10,10,0 +51471,799,620,0,9,9,0 +51470,799,640,0,8,8,0 +51469,799,669,0,7,7,0 +51468,799,501,0,6,6,0 +51467,799,625,2,5,5,0 +51466,799,427,3,4,4,0 +51465,799,498,5,3,3,0 +51536,800,805,0,55,55,0 +51535,800,559,0,54,54,0 +51534,800,513,0,50,50,0 +51533,800,730,0,38,38,0 +51532,800,702,0,36,36,0 +51531,800,799,0,33,33,0 +51530,800,613,0,31,31,0 +51529,800,654,0,27,27,0 +51528,800,653,0,22,22,0 +51527,800,519,0,58,58,0 +51526,800,593,0,25,25,0 +51525,800,678,0,57,57,0 +51524,800,677,0,56,56,0 +51523,800,529,0,32,32,0 +51522,800,509,0,48,48,0 +51521,800,556,0,52,52,0 +51520,800,659,0,16,16,0 +51519,800,612,0,24,24,0 +51518,800,512,0,53,53,0 +51517,800,520,0,40,40,0 +51516,800,449,0,51,51,0 +51515,800,597,0,49,49,0 +51514,800,611,0,23,23,0 +51513,800,676,0,39,39,0 +51512,800,596,0,37,37,0 +51511,800,592,0,35,35,0 +51510,800,679,0,34,34,0 +51509,800,518,1.5,10,10,0 +51508,800,628,0,30,30,0 +51507,800,675,0,29,29,0 +51506,800,521,0,28,28,0 +51505,800,656,0,26,26,0 +51504,800,655,0,21,21,0 +51503,800,674,0,19,19,0 +51502,800,555,0,18,18,0 +51500,800,615,0,12,12,0 +51499,800,673,2,9,9,0 +51498,800,526,1.5,11,11,0 +51496,800,525,6,3,3,0 +51495,800,657,8,2,2,1 +51494,800,496,0,47,47,0 +51493,800,577,0,46,46,0 +51492,800,627,0,45,45,0 +51491,800,672,0,44,44,0 +51490,800,671,0,43,43,0 +51489,800,643,0,42,42,0 +51488,800,670,0,41,41,0 +51487,800,620,0,20,20,0 +51486,800,640,0,17,17,0 +51485,800,669,0,14,14,0 +51601,801,578,1.5,13,13,0 +51600,801,805,0,62,62,0 +51599,801,559,0,61,61,0 +51598,801,513,0,57,57,0 +51597,801,730,0,42,42,0 +51596,801,702,0,40,40,0 +51595,801,799,0,37,37,0 +51594,801,613,0,35,35,0 +51593,801,654,0,31,31,0 +51592,801,653,0,26,26,0 +51591,801,680,0,49,49,0 +51590,801,554,0,46,46,0 +51589,801,632,0,45,45,0 +51588,801,644,0,19,19,0 +51587,801,429,2,11,11,0 +51586,801,475,4,8,8,0 +51585,801,519,0,65,65,0 +51584,801,593,0,29,29,0 +51583,801,678,0,64,64,0 +51582,801,677,0,63,63,0 +51581,801,529,0,36,36,0 +51580,801,509,0,55,55,0 +51579,801,556,0,59,59,0 +51578,801,659,0,20,20,0 +51577,801,612,0,28,28,0 +51576,801,512,0,60,60,0 +51575,801,520,0,44,44,0 +51574,801,449,0,58,58,0 +51573,801,597,0,56,56,0 +51572,801,611,0,27,27,0 +51570,801,596,0,41,41,0 +51569,801,592,0,39,39,0 +51568,801,679,0,38,38,0 +51567,801,518,1.5,12,12,0 +51566,801,628,0,34,34,0 +51565,801,675,0,33,33,0 +51564,801,521,0,32,32,0 +51563,801,656,0,30,30,0 +51562,801,655,0,25,25,0 +51561,801,674,0,23,23,0 +51560,801,555,0,22,22,0 +51558,801,615,0,16,16,0 +51557,801,673,2,10,10,0 +51556,801,526,1.5,14,14,0 +51555,801,658,5,7,7,0 +51554,801,525,6,6,6,0 +51553,801,657,8,3,3,1 +51552,801,496,0,54,54,0 +51551,801,577,0,53,53,0 +51550,801,627,0,52,52,0 +51549,801,672,0,51,51,0 +51676,802,805,0,72,72,0 +51675,802,559,0,71,71,0 +51674,802,513,0,67,67,0 +51673,802,730,0,47,47,0 +51672,802,702,0,45,45,0 +51671,802,799,0,42,42,0 +51670,802,613,0,40,40,0 +51669,802,654,0,36,36,0 +51668,802,653,0,31,31,0 +51667,802,647,0,65,65,0 +51666,802,650,0,64,64,0 +51665,802,578,1.5,17,17,0 +51664,802,681,0,61,61,0 +51663,802,651,0,59,59,0 +51662,802,456,0,58,58,0 +51661,802,478,1,19,19,0 +51660,802,663,0,54,54,0 +51659,802,633,2,15,15,0 +51658,802,626,4,9,9,0 +51657,802,648,6,7,7,0 +51656,802,680,0,55,55,0 +51655,802,554,0,20,20,0 +51654,802,632,0,50,50,0 +51653,802,644,0,23,23,0 +51652,802,429,2,14,14,0 +51651,802,475,4,10,10,0 +51650,802,519,0,75,75,0 +51649,802,593,0,34,34,0 +51648,802,678,0,74,74,0 +51647,802,677,0,73,73,0 +51646,802,529,0,41,41,0 +51645,802,509,0,63,63,0 +51644,802,556,0,69,69,0 +51643,802,659,0,25,25,0 +51642,802,612,0,33,33,0 +51641,802,512,0,70,70,0 +51640,802,520,0,49,49,0 +51639,802,449,0,68,68,0 +51638,802,597,0,66,66,0 +51637,802,611,0,32,32,0 +51636,802,676,0,48,48,0 +51635,802,596,0,46,46,0 +51634,802,592,0,44,44,0 +51633,802,679,0,43,43,0 +51632,802,518,1.5,16,16,0 +51631,802,628,0,39,39,0 +51630,802,675,0,38,38,0 +51629,802,521,0,37,37,0 +51628,802,656,0,35,35,0 +51627,802,655,0,30,30,0 +51626,802,674,0,28,28,0 +51625,802,555,0,27,27,0 +51624,802,528,0,24,24,0 +51623,802,615,0,22,22,0 +51622,802,673,2,13,13,0 +51766,803,541,0,70,70,0 +51765,803,805,0,85,85,0 +51764,803,559,0,82,82,0 +51763,803,513,0,74,74,0 +51762,803,730,0,55,55,0 +51761,803,702,0,53,53,0 +51760,803,799,0,50,50,0 +51759,803,613,0,47,47,0 +51758,803,654,0,41,41,0 +51757,803,653,0,35,35,0 +51756,803,690,0,89,89,0 +51755,803,689,0,87,87,0 +51754,803,688,0,84,84,0 +51753,803,687,0,83,83,0 +51752,803,581,0,81,81,0 +51751,803,645,0,80,80,0 +51750,803,686,0,77,77,0 +51749,803,685,0,75,75,0 +51748,803,684,0,66,66,0 +51747,803,547,0,49,49,0 +51746,803,683,0,46,46,0 +51745,803,665,0,44,44,0 +51744,803,682,0,39,39,0 +51743,803,619,0,33,33,0 +51742,803,647,0,72,72,0 +51741,803,650,0,71,71,0 +51740,803,578,7.64,5,5,0 +51739,803,681,0,67,67,0 +51737,803,456,0,62,62,0 +51736,803,478,1,20,20,0 +51735,803,663,0,27,27,0 +51734,803,633,2,15,15,0 +51733,803,626,4,12,12,0 +51732,803,648,6,6,6,0 +51731,803,680,0,60,60,0 +51730,803,554,0,22,22,0 +51729,803,632,0,58,58,0 +51728,803,644,0,25,25,0 +51727,803,429,2,14,14,0 +51726,803,475,4,11,11,0 +51725,803,519,0,90,90,0 +51724,803,593,0,38,38,0 +51723,803,678,0,88,88,0 +51722,803,677,0,86,86,0 +51721,803,529,0,48,48,0 +51720,803,509,0,69,69,0 +51719,803,556,0,78,78,0 +51718,803,659,0,28,28,0 +51717,803,612,0,37,37,0 +51716,803,512,0,79,79,0 +51715,803,520,0,57,57,0 +51714,803,449,0,76,76,0 +51713,803,597,0,73,73,0 +51712,803,611,0,36,36,0 +51711,803,676,0,56,56,0 +51710,803,596,0,54,54,0 +51709,803,592,0,52,52,0 +51708,803,679,0,51,51,0 +51707,803,518,1.5,18,18,0 +51706,803,628,0,45,45,0 +51705,803,675,0,43,43,0 +51704,803,521,0,42,42,0 +51703,803,656,0,40,40,0 +51701,803,674,0,31,31,0 +51699,803,528,0,26,26,0 +51698,803,615,0,24,24,0 +51696,803,526,1.5,19,19,0 +51694,803,525,6,8,8,0 +51693,803,657,8,4,4,1 +51692,803,496,0,68,68,0 +51691,803,577,0,65,65,0 +51690,803,627,0,59,59,0 +51689,803,672,0,63,63,0 +51688,803,671,0,61,61,0 +51686,803,670,4.14,10,10,0 +51685,803,620,0,32,32,0 +51684,803,640,0,29,29,0 +51682,803,501,0,21,21,0 +51681,803,625,2,16,16,0 +51680,803,427,11,3,3,0 +51679,803,498,14.64,2,2,1 +51678,803,642,6,7,7,0 +51677,803,579,28.14,1,1,3 +51859,804,541,0,74,74,0 +51858,804,805,0,88,88,0 +51857,804,559,0,85,85,0 +51856,804,513,0,78,78,0 +51855,804,730,0,57,57,0 +51854,804,702,0,55,55,0 +51853,804,799,0,52,52,0 +51852,804,613,0,49,49,0 +51851,804,654,0,43,43,0 +51850,804,653,0,37,37,0 +51849,804,692,0,64,64,0 +51848,804,691,0,61,61,0 +51847,804,641,0,26,26,0 +51846,804,690,0,92,92,0 +51845,804,689,0,90,90,0 +51844,804,688,0,87,87,0 +51843,804,687,0,86,86,0 +51842,804,581,0,84,84,0 +51841,804,645,0,62,62,0 +51840,804,686,0,81,81,0 +51839,804,685,0,79,79,0 +51838,804,684,0,70,70,0 +51837,804,547,0,51,51,0 +51836,804,683,0,48,48,0 +51835,804,665,0,46,46,0 +51834,804,682,0,41,41,0 +51833,804,619,0,35,35,0 +51832,804,647,0,76,76,0 +51831,804,650,0,75,75,0 +51830,804,578,10.64,4,4,0 +51829,804,681,0,71,71,0 +51828,804,651,0,68,68,0 +51827,804,456,0,66,66,0 +51826,804,478,1,21,21,0 +51825,804,663,0,29,29,0 +51824,804,633,2,16,16,0 +51823,804,626,4,11,11,0 +51822,804,648,10,5,5,0 +51821,804,680,0,63,63,0 +51820,804,554,0,23,23,0 +51819,804,632,0,60,60,0 +51818,804,644,2,14,14,0 +51817,804,429,2,15,15,0 +51816,804,475,4,12,12,0 +51815,804,519,0,93,93,0 +51814,804,593,0,40,40,0 +51813,804,678,0,91,91,0 +51812,804,677,0,89,89,0 +51811,804,529,0,50,50,0 +51810,804,509,0,73,73,0 +51809,804,556,0,82,82,0 +51808,804,659,0,30,30,0 +51807,804,612,0,39,39,0 +51806,804,512,0,83,83,0 +51805,804,520,0,59,59,0 +51804,804,449,0,80,80,0 +51803,804,597,0,77,77,0 +51802,804,611,0,38,38,0 +51801,804,676,0,58,58,0 +51800,804,596,0,56,56,0 +51799,804,592,0,54,54,0 +51798,804,679,0,53,53,0 +51797,804,518,1.5,19,19,0 +51796,804,628,0,47,47,0 +51795,804,675,0,45,45,0 +51794,804,521,0,44,44,0 +51793,804,656,0,42,42,0 +51791,804,674,0,33,33,0 +51790,804,555,0,32,32,0 +51789,804,528,0,27,27,0 +51787,804,673,2,18,18,0 +51786,804,526,1.5,20,20,0 +51785,804,658,5,9,9,0 +51784,804,525,6,8,8,0 +51783,804,657,8,6,6,1 +51782,804,496,0,72,72,0 +51781,804,577,0,69,69,0 +51780,804,627,0,28,28,0 +51779,804,672,0,67,67,0 +51778,804,671,0,65,65,0 +51776,804,670,4.14,10,10,0 +51775,804,620,0,34,34,0 +51773,804,669,3,13,13,0 +51772,804,501,0,22,22,0 +51771,804,625,2,17,17,0 +51769,804,498,17.64,2,2,1 +52511,679,341,4,3,3,0 +52509,679,345,9,1,1,1 +51953,805,541,0,75,75,0 +51952,805,805,0,89,89,0 +51951,805,559,0,86,86,0 +51950,805,513,0,79,79,0 +51949,805,730,0,58,58,0 +51948,805,702,0,56,56,0 +51947,805,799,0,53,53,0 +51946,805,613,0,50,50,0 +51945,805,654,0,44,44,0 +51944,805,653,0,38,38,0 +51943,805,693,0,66,66,0 +51942,805,692,0,64,64,0 +51941,805,691,0,62,62,0 +51940,805,641,0,27,27,0 +51939,805,690,0,93,93,0 +51938,805,689,0,91,91,0 +51937,805,688,0,88,88,0 +51936,805,687,0,87,87,0 +51935,805,581,0,85,85,0 +51934,805,645,0,63,63,0 +51933,805,686,0,82,82,0 +51932,805,685,0,80,80,0 +51931,805,684,0,71,71,0 +51930,805,547,0,52,52,0 +51929,805,683,0,49,49,0 +51928,805,665,0,47,47,0 +51927,805,682,0,42,42,0 +51926,805,619,0,36,36,0 +51925,805,647,0,77,77,0 +51924,805,650,0,76,76,0 +51923,805,578,10.64,4,4,0 +51922,805,681,0,72,72,0 +51921,805,651,0,69,69,0 +51920,805,456,0,67,67,0 +51919,805,478,5,9,9,0 +51918,805,663,0,24,24,0 +51917,805,633,2,18,18,0 +51916,805,626,4,12,12,0 +51915,805,648,10,5,5,0 +51914,805,680,0,31,31,0 +51913,805,554,0,25,25,0 +51912,805,632,0,61,61,0 +51911,805,644,4,14,14,0 +51910,805,429,2,17,17,0 +51909,805,475,4,13,13,0 +51908,805,519,0,94,94,0 +51907,805,593,0,41,41,0 +51906,805,678,0,92,92,0 +51905,805,677,0,90,90,0 +51904,805,529,0,51,51,0 +51903,805,509,0,74,74,0 +51902,805,556,0,83,83,0 +51901,805,659,0,32,32,0 +51900,805,612,0,40,40,0 +51899,805,512,0,84,84,0 +51898,805,520,0,60,60,0 +51897,805,449,0,81,81,0 +51896,805,597,0,78,78,0 +51895,805,611,0,39,39,0 +51894,805,676,0,59,59,0 +51893,805,596,0,57,57,0 +51892,805,592,0,55,55,0 +51891,805,679,0,54,54,0 +51890,805,518,1.5,21,21,0 +51889,805,628,0,48,48,0 +51888,805,675,0,46,46,0 +51887,805,521,0,45,45,0 +51886,805,656,0,43,43,0 +51885,805,655,0,37,37,0 +51884,805,674,0,35,35,0 +52048,806,541,0,77,77,0 +52047,806,805,0,90,90,0 +52046,806,559,0,87,87,0 +52045,806,513,0,81,81,0 +52044,806,730,0,61,61,0 +52043,806,702,0,59,59,0 +52042,806,799,0,56,56,0 +52041,806,613,0,53,53,0 +52040,806,654,0,47,47,0 +52039,806,653,0,41,41,0 +52038,806,694,0,79,79,0 +52037,806,693,0,27,27,0 +52036,806,692,0,68,68,0 +52035,806,691,0,66,66,0 +52034,806,641,0,29,29,0 +52033,806,690,0,94,94,0 +52032,806,689,0,92,92,0 +52031,806,688,0,89,89,0 +52030,806,687,0,88,88,0 +52029,806,581,0,30,30,0 +52028,806,645,0,67,67,0 +52027,806,686,0,84,84,0 +52026,806,685,0,82,82,0 +52025,806,684,0,73,73,0 +52024,806,547,0,55,55,0 +52023,806,683,0,52,52,0 +52022,806,665,0,50,50,0 +52021,806,682,0,45,45,0 +52020,806,619,0,38,38,0 +52019,806,647,0,65,65,0 +52017,806,578,16.64,4,4,0 +52016,806,681,0,74,74,0 +52015,806,651,0,72,72,0 +52014,806,456,0,70,70,0 +52013,806,478,8,7,7,0 +52012,806,663,0,25,25,0 +52011,806,633,2,19,19,0 +52010,806,626,4,12,12,0 +52009,806,648,10,5,5,0 +52008,806,680,0,33,33,0 +52007,806,554,0,26,26,0 +52006,806,632,0,64,64,0 +52005,806,644,4,14,14,0 +52004,806,429,2,18,18,0 +52003,806,475,4,13,13,0 +52002,806,519,0,95,95,0 +52001,806,593,0,44,44,0 +52000,806,678,0,93,93,0 +51999,806,677,0,91,91,0 +51998,806,529,0,54,54,0 +51997,806,509,0,76,76,0 +51996,806,556,0,85,85,0 +51995,806,659,0,34,34,0 +51994,806,612,0,43,43,0 +51993,806,512,0,86,86,0 +51992,806,520,0,63,63,0 +51991,806,449,0,83,83,0 +51990,806,597,0,80,80,0 +51989,806,611,0,42,42,0 +51988,806,676,0,62,62,0 +51987,806,596,0,60,60,0 +51986,806,592,0,58,58,0 +51985,806,679,0,57,57,0 +51984,806,518,1.5,22,22,0 +51983,806,628,0,51,51,0 +51982,806,675,0,49,49,0 +51981,806,521,0,48,48,0 +51980,806,656,0,46,46,0 +51979,806,655,0,39,39,0 +51977,806,555,0,36,36,0 +51976,806,528,0,31,31,0 +51975,806,615,0,28,28,0 +51974,806,673,2,21,21,0 +51973,806,526,1.5,23,23,0 +51972,806,658,5,10,10,0 +51971,806,525,6,9,9,0 +51970,806,657,8,6,6,1 +51969,806,496,0,75,75,0 +51968,806,577,0,71,71,0 +51967,806,627,0,32,32,0 +51966,806,672,0,40,40,0 +51965,806,671,0,69,69,0 +51964,806,643,3,16,16,0 +51963,806,670,4.14,11,11,0 +51955,806,642,6,8,8,0 +52145,807,638,0,68,68,0 +52144,807,541,0,80,80,0 +52143,807,805,0,92,92,0 +52142,807,559,0,89,89,0 +52141,807,513,0,83,83,0 +52140,807,730,0,64,64,0 +52139,807,702,0,62,62,0 +52138,807,799,0,59,59,0 +52137,807,613,0,56,56,0 +52136,807,654,0,50,50,0 +52135,807,653,0,44,44,0 +52134,807,580,0,31,31,0 +52133,807,694,0,81,81,0 +52132,807,693,0,29,29,0 +52131,807,692,0,72,72,0 +52130,807,691,0,69,69,0 +52129,807,641,0,32,32,0 +52128,807,690,0,96,96,0 +52127,807,689,0,94,94,0 +52126,807,688,0,91,91,0 +52125,807,687,0,90,90,0 +52124,807,581,0,34,34,0 +52123,807,645,0,70,70,0 +52122,807,686,0,86,86,0 +52121,807,685,0,84,84,0 +52120,807,684,0,76,76,0 +52119,807,547,0,58,58,0 +52118,807,683,0,55,55,0 +52117,807,665,0,53,53,0 +52116,807,682,0,48,48,0 +52115,807,619,0,41,41,0 +52114,807,647,1,25,25,0 +52113,807,650,0,71,71,0 +52112,807,578,24.64,3,3,1 +52111,807,681,0,77,77,0 +52110,807,651,0,75,75,0 +52109,807,456,0,74,74,0 +52108,807,478,8,7,7,0 +52107,807,663,0,27,27,0 +52106,807,633,2,20,20,0 +52105,807,626,4,14,14,0 +52104,807,648,12,5,5,0 +52103,807,680,0,37,37,0 +52102,807,554,0,28,28,0 +52101,807,632,0,67,67,0 +52100,807,644,4,16,16,0 +52099,807,429,2,19,19,0 +52098,807,475,4,15,15,0 +52097,807,519,0,97,97,0 +52096,807,593,0,47,47,0 +52095,807,678,0,95,95,0 +52094,807,677,0,93,93,0 +52093,807,529,0,57,57,0 +52092,807,509,0,79,79,0 +52091,807,556,0,87,87,0 +52090,807,659,0,38,38,0 +52089,807,612,0,46,46,0 +52088,807,512,0,88,88,0 +52087,807,520,0,66,66,0 +52086,807,449,0,85,85,0 +52085,807,597,0,82,82,0 +52084,807,611,0,45,45,0 +52083,807,676,0,65,65,0 +52082,807,596,0,63,63,0 +52081,807,592,0,61,61,0 +52080,807,679,0,60,60,0 +52079,807,518,1.5,23,23,0 +52078,807,628,0,54,54,0 +52077,807,675,0,52,52,0 +52076,807,521,0,51,51,0 +52074,807,655,0,42,42,0 +52073,807,674,0,40,40,0 +52072,807,555,0,39,39,0 +52070,807,615,0,30,30,0 +52069,807,673,2,22,22,0 +52067,807,658,5,12,12,0 +52066,807,525,6,10,10,0 +52065,807,657,8,6,6,1 +52064,807,496,0,78,78,0 +52062,807,627,0,33,33,0 +52060,807,671,0,73,73,0 +52059,807,643,6,11,11,0 +52058,807,670,4.14,13,13,0 +52057,807,620,2,18,18,0 +52056,807,640,0,36,36,0 +52054,807,501,0,26,26,0 +52052,807,427,17,4,4,0 +52051,807,498,25.14,2,2,1 +52050,807,642,6,8,8,0 +44739,808,501,0,7,7,0 +44738,808,698,0,17,17,0 +44737,808,649,0,16,16,0 +44736,808,496,0,15,15,0 +44735,808,642,0,14,14,0 +44734,808,697,0,13,13,0 +44733,808,579,0,12,12,0 +44732,808,626,0,11,11,0 +44731,808,689,0,10,10,0 +44730,808,696,0,9,9,0 +44729,808,427,0,8,8,0 +44728,808,554,0,6,6,0 +44727,808,695,2,5,5,0 +44726,808,578,3,4,4,0 +44725,808,498,4,3,3,0 +44724,808,633,6,2,2,0 +44723,808,647,9,1,1,1 +44793,809,797,0,46,46,0 +44792,809,804,0,36,36,0 +44791,809,630,0,33,33,0 +44790,809,513,0,16,16,0 +44789,809,501,0,17,17,0 +44788,809,612,0,32,32,0 +44787,809,512,0,45,45,0 +44786,809,702,0,27,27,0 +44785,809,655,0,54,54,0 +44784,809,521,0,21,21,0 +44783,809,520,0,22,22,0 +44782,809,528,0,53,53,0 +44781,809,593,0,52,52,0 +44780,809,555,1.5,11,11,0 +44779,809,518,2,7,7,0 +44778,809,659,0,51,51,0 +44777,809,559,0,50,50,0 +44776,809,673,0,49,49,0 +44775,809,628,0,48,48,0 +44774,809,677,0,47,47,0 +44773,809,613,0,44,44,0 +44772,809,654,0,35,35,0 +44771,809,449,0,34,34,0 +44770,809,701,0,31,31,0 +44769,809,525,0,30,30,0 +44768,809,675,0,29,29,0 +44767,809,700,0,28,28,0 +44766,809,699,0,26,26,0 +44765,809,653,0,25,25,0 +44764,809,529,0,23,23,0 +44763,809,679,0,20,20,0 +44762,809,509,0,15,15,0 +44761,809,556,0,14,14,0 +44760,809,658,2,10,10,0 +44759,809,615,1.5,12,12,0 +44758,809,611,2,8,8,0 +44757,809,656,6,3,3,0 +44756,809,657,9,2,2,1 +44755,809,698,0,43,43,0 +44754,809,649,0,42,42,0 +44753,809,496,0,41,41,0 +44752,809,642,0,40,40,0 +44751,809,697,0,39,39,0 +44750,809,579,0,38,38,0 +44749,809,626,0,37,37,0 +44748,809,689,0,24,24,0 +44747,809,696,0,19,19,0 +44746,809,427,0,18,18,0 +44745,809,554,0,13,13,0 +44744,809,695,2,9,9,0 +44743,809,578,3,6,6,0 +44742,809,498,4,5,5,0 +44741,809,633,6,4,4,0 +44740,809,647,9,1,1,1 +44857,810,797,0,55,55,0 +44856,810,804,0,42,42,0 +44855,810,630,0,39,39,0 +44854,810,513,0,21,21,0 +44853,810,651,0,56,56,0 +44852,810,456,0,52,52,0 +44851,810,663,0,51,51,0 +44850,810,643,0,49,49,0 +44849,810,660,0,46,46,0 +44848,810,501,0,20,20,0 +44847,810,664,0,45,45,0 +44846,810,475,0,30,30,0 +44845,810,581,0,24,24,0 +44844,810,627,0,22,22,0 +44843,810,640,2,11,11,0 +44842,810,612,0,38,38,0 +44841,810,512,0,54,54,0 +44840,810,702,0,33,33,0 +44839,810,655,0,64,64,0 +44838,810,521,0,26,26,0 +44837,810,520,0,27,27,0 +44836,810,528,0,63,63,0 +44835,810,593,0,62,62,0 +44834,810,555,1.5,14,14,0 +44833,810,518,2,9,9,0 +44832,810,659,0,61,61,0 +44831,810,559,0,60,60,0 +44830,810,673,0,59,59,0 +44829,810,628,0,58,58,0 +44828,810,677,0,57,57,0 +44827,810,613,0,53,53,0 +44826,810,654,0,41,41,0 +44825,810,449,0,40,40,0 +44824,810,701,0,37,37,0 +44823,810,525,0,36,36,0 +44822,810,675,0,35,35,0 +44821,810,700,0,34,34,0 +44820,810,699,0,32,32,0 +44819,810,653,0,31,31,0 +44818,810,529,0,28,28,0 +44817,810,679,0,25,25,0 +44816,810,509,0,19,19,0 +44815,810,556,0,18,18,0 +44814,810,658,2,13,13,0 +44813,810,615,1.5,15,15,0 +44812,810,611,2,10,10,0 +44811,810,656,6,5,5,0 +44810,810,657,9,2,2,1 +44809,810,698,0,50,50,0 +44808,810,649,0,48,48,0 +44807,810,496,0,47,47,0 +44806,810,642,6,4,4,0 +44805,810,697,2,8,8,0 +44804,810,579,0,44,44,0 +44803,810,626,0,43,43,0 +44802,810,689,0,29,29,0 +44801,810,696,0,23,23,0 +44800,810,427,0,16,16,0 +44799,810,554,0,17,17,0 +44798,810,695,2,12,12,0 +44797,810,578,6,7,7,0 +44796,810,498,6,6,6,0 +44795,810,633,7,3,3,0 +44794,810,647,17,1,1,2 +44927,811,797,0,61,61,0 +44926,811,804,0,46,46,0 +44925,811,630,0,43,43,0 +44924,811,513,0,23,23,0 +44923,811,703,0,63,63,0 +44922,811,681,0,60,60,0 +44921,811,429,0,36,36,0 +44920,811,632,0,34,34,0 +44919,811,693,0,32,32,0 +44918,811,670,4,9,9,0 +44917,811,651,0,51,51,0 +44916,811,456,0,57,57,0 +44915,811,663,0,56,56,0 +44914,811,643,0,54,54,0 +44913,811,660,0,50,50,0 +44912,811,501,0,20,20,0 +44911,811,664,0,49,49,0 +44910,811,475,0,31,31,0 +44909,811,581,0,24,24,0 +44908,811,627,0,21,21,0 +44907,811,640,5,8,8,0 +44906,811,612,0,42,42,0 +44905,811,512,0,59,59,0 +44904,811,702,0,37,37,0 +44903,811,655,0,70,70,0 +44902,811,521,0,27,27,0 +44901,811,520,0,28,28,0 +44900,811,528,0,69,69,0 +44899,811,593,0,68,68,0 +44898,811,555,1.5,16,16,0 +44897,811,518,2,11,11,0 +44896,811,659,0,67,67,0 +44895,811,559,0,66,66,0 +44894,811,673,0,65,65,0 +44893,811,628,0,64,64,0 +44892,811,677,0,62,62,0 +44891,811,613,0,58,58,0 +44890,811,654,0,45,45,0 +44889,811,449,0,44,44,0 +44888,811,701,0,41,41,0 +44887,811,525,0,40,40,0 +44886,811,675,0,39,39,0 +44885,811,700,0,38,38,0 +44884,811,699,0,35,35,0 +44883,811,653,0,33,33,0 +44882,811,529,0,29,29,0 +44881,811,679,0,26,26,0 +44880,811,509,0,22,22,0 +44879,811,556,0,19,19,0 +44878,811,658,2,15,15,0 +44877,811,615,1.5,17,17,0 +44876,811,611,2,12,12,0 +44875,811,656,6,6,6,0 +44874,811,657,9,3,3,1 +44873,811,698,0,55,55,0 +44872,811,649,0,53,53,0 +44871,811,496,0,52,52,0 +44870,811,642,6,5,5,0 +44869,811,697,2,10,10,0 +44868,811,579,0,48,48,0 +44867,811,626,0,47,47,0 +44866,811,689,0,30,30,0 +44865,811,696,0,25,25,0 +44864,811,427,2,13,13,0 +44863,811,554,0,18,18,0 +44862,811,695,2,14,14,0 +44861,811,578,6,7,7,0 +44860,811,498,7,4,4,0 +44859,811,633,13,2,2,0 +44858,811,647,25,1,1,3 +44998,812,625,0,64,64,0 +44997,812,669,0,61,61,0 +44996,812,589,0,45,45,0 +44995,812,704,0,44,44,0 +44994,812,619,0,36,36,0 +44993,812,703,0,68,68,0 +44992,812,681,0,65,65,0 +44991,812,429,0,38,38,0 +44990,812,632,0,35,35,0 +44989,812,693,0,33,33,0 +44988,812,670,4,10,10,0 +44987,812,651,0,54,54,0 +44986,812,456,0,60,60,0 +44985,812,663,0,59,59,0 +44984,812,643,0,56,56,0 +44983,812,660,0,39,39,0 +44982,812,501,0,21,21,0 +44981,812,664,0,53,53,0 +44980,812,475,0,28,28,0 +44979,812,581,0,25,25,0 +44978,812,627,0,22,22,0 +44977,812,640,5,9,9,0 +44976,812,612,0,47,47,0 +44975,812,512,0,63,63,0 +44974,812,702,0,40,40,0 +44973,812,655,0,75,75,0 +44972,812,521,0,29,29,0 +44971,812,520,0,30,30,0 +44970,812,528,0,74,74,0 +44969,812,593,0,73,73,0 +44968,812,555,1.5,17,17,0 +44967,812,518,2,12,12,0 +44966,812,659,0,72,72,0 +44965,812,559,0,71,71,0 +44964,812,673,0,70,70,0 +44963,812,628,0,69,69,0 +44962,812,677,0,67,67,0 +44961,812,613,0,62,62,0 +44960,812,654,0,50,50,0 +44959,812,449,0,49,49,0 +44958,812,701,0,46,46,0 +44957,812,525,0,43,43,0 +44956,812,675,0,42,42,0 +44955,812,700,0,41,41,0 +44954,812,699,0,37,37,0 +44953,812,653,0,34,34,0 +44952,812,529,0,31,31,0 +44951,812,679,0,27,27,0 +44950,812,509,0,23,23,0 +44949,812,556,0,20,20,0 +44948,812,658,2,16,16,0 +44947,812,615,1.5,18,18,0 +44946,812,611,2,13,13,0 +44945,812,656,6,8,8,0 +44944,812,657,9,5,5,1 +44943,812,698,0,58,58,0 +44942,812,649,0,57,57,0 +44941,812,496,0,55,55,0 +44940,812,642,8,6,6,0 +44939,812,697,2,11,11,0 +44938,812,579,7,7,7,0 +44937,812,626,0,52,52,0 +44936,812,689,0,32,32,0 +44935,812,696,0,26,26,0 +44934,812,427,2,14,14,0 +44933,812,554,0,19,19,0 +44932,812,695,2,15,15,0 +44931,812,578,14,2,2,1 +44930,812,498,11,4,4,0 +44929,812,633,13,3,3,0 +44928,812,647,28,1,1,3 +45080,813,705,0,80,80,0 +45079,813,708,0,78,78,0 +45078,813,707,0,76,76,0 +45077,813,486,0,64,64,0 +45076,813,666,0,58,58,0 +45075,813,706,0,57,57,0 +45074,813,687,0,36,36,0 +45073,813,625,0,68,68,0 +45072,813,669,0,24,24,0 +45071,813,589,0,48,48,0 +45070,813,704,0,47,47,0 +45069,813,619,0,39,39,0 +45068,813,703,0,72,72,0 +45067,813,681,0,69,69,0 +45066,813,429,0,41,41,0 +45065,813,632,0,38,38,0 +45064,813,693,0,35,35,0 +45063,813,670,4,10,10,0 +45062,813,651,0,59,59,0 +45061,813,456,0,65,65,0 +45060,813,663,0,27,27,0 +45059,813,643,0,61,61,0 +45058,813,660,0,42,42,0 +45057,813,501,0,21,21,0 +45056,813,664,0,56,56,0 +45055,813,475,0,31,31,0 +45054,813,581,0,26,26,0 +45053,813,627,0,22,22,0 +45052,813,640,5,9,9,0 +45051,813,612,0,50,50,0 +45050,813,512,0,67,67,0 +45049,813,702,0,43,43,0 +45048,813,655,0,82,82,0 +45047,813,521,0,32,32,0 +45046,813,520,0,33,33,0 +45045,813,528,0,81,81,0 +45044,813,593,0,79,79,0 +45043,813,555,1.5,17,17,0 +45042,813,518,2,12,12,0 +45041,813,659,0,77,77,0 +45040,813,559,0,75,75,0 +45039,813,673,0,74,74,0 +45038,813,628,0,73,73,0 +45037,813,677,0,71,71,0 +45036,813,613,0,66,66,0 +45035,813,654,0,53,53,0 +45034,813,449,0,52,52,0 +45033,813,701,0,49,49,0 +45032,813,525,0,46,46,0 +45031,813,675,0,45,45,0 +45030,813,700,0,44,44,0 +45029,813,699,0,40,40,0 +45028,813,653,0,37,37,0 +45027,813,529,0,34,34,0 +45026,813,679,0,29,29,0 +45025,813,509,0,23,23,0 +45024,813,556,0,20,20,0 +45023,813,658,2,16,16,0 +45022,813,615,1.5,18,18,0 +45021,813,611,2,13,13,0 +45020,813,656,6,8,8,0 +45019,813,657,9,7,7,1 +45018,813,698,0,63,63,0 +45017,813,649,0,62,62,0 +45016,813,496,0,60,60,0 +45015,813,642,12,6,6,0 +45014,813,697,2,11,11,0 +45013,813,579,13,5,5,0 +45012,813,626,0,55,55,0 +45011,813,689,0,30,30,0 +45010,813,696,0,28,28,0 +45009,813,427,2,14,14,0 +45008,813,554,0,19,19,0 +45007,813,695,2,15,15,0 +45006,813,578,16,2,2,1 +45005,813,498,13.5,3,3,0 +45004,813,633,13,4,4,0 +45003,813,647,33.5,1,1,4 +45182,814,797,0,77,77,0 +45181,814,804,0,62,62,0 +45180,814,630,0,58,58,0 +45179,814,513,0,26,26,0 +45178,814,718,0,98,98,0 +45177,814,717,0,97,97,0 +45176,814,716,0,96,96,0 +45175,814,715,0,94,94,0 +45174,814,714,0,93,93,0 +45173,814,713,0,91,91,0 +45172,814,712,0,86,86,0 +45171,814,711,0,84,84,0 +45170,814,431,0,79,79,0 +45169,814,455,0,59,59,0 +45168,814,709,0,56,56,0 +45167,814,710,0,53,53,0 +45166,814,692,0,47,47,0 +45165,814,690,0,43,43,0 +45164,814,478,0,36,36,0 +45163,814,680,0,27,27,0 +45162,814,705,0,90,90,0 +45161,814,708,0,88,88,0 +45160,814,707,0,85,85,0 +45159,814,486,0,71,71,0 +45158,814,666,0,65,65,0 +45157,814,706,0,64,64,0 +45156,814,687,0,38,38,0 +45155,814,625,0,75,75,0 +45154,814,669,0,25,25,0 +45153,814,589,0,54,54,0 +45152,814,704,0,52,52,0 +45151,814,619,0,41,41,0 +45150,814,703,0,80,80,0 +45149,814,681,0,76,76,0 +45148,814,429,0,44,44,0 +45147,814,632,0,40,40,0 +45146,814,693,0,37,37,0 +45145,814,670,4,11,11,0 +45144,814,651,0,66,66,0 +45143,814,456,0,72,72,0 +45142,814,663,0,29,29,0 +45141,814,643,0,68,68,0 +45140,814,660,0,45,45,0 +45139,814,501,0,22,22,0 +45138,814,664,0,49,49,0 +45137,814,475,0,19,19,0 +45136,814,581,0,28,28,0 +45135,814,627,0,23,23,0 +45134,814,640,7,8,8,0 +45133,814,612,0,57,57,0 +45132,814,512,0,74,74,0 +45131,814,702,0,46,46,0 +45130,814,655,0,95,95,0 +45129,814,521,0,33,33,0 +45128,814,520,0,34,34,0 +45127,814,528,0,92,92,0 +45126,814,593,0,89,89,0 +45125,814,555,1.5,17,17,0 +45124,814,518,2,12,12,0 +45123,814,659,0,87,87,0 +45122,814,559,0,83,83,0 +45121,814,673,0,82,82,0 +45120,814,628,0,81,81,0 +45119,814,677,0,78,78,0 +45118,814,613,0,73,73,0 +45117,814,654,0,61,61,0 +45116,814,449,0,60,60,0 +45115,814,701,0,55,55,0 +45114,814,525,0,51,51,0 +45113,814,675,0,50,50,0 +45112,814,700,0,48,48,0 +45111,814,699,0,42,42,0 +45110,814,653,0,39,39,0 +45109,814,529,0,35,35,0 +45108,814,679,0,31,31,0 +45107,814,509,0,24,24,0 +45106,814,556,0,21,21,0 +45105,814,658,2,16,16,0 +45104,814,615,1.5,18,18,0 +45103,814,611,2,13,13,0 +45102,814,656,6,9,9,0 +45101,814,657,9,7,7,1 +45100,814,698,0,70,70,0 +45099,814,649,0,69,69,0 +45098,814,496,0,67,67,0 +45097,814,642,20,2,2,1 +45096,814,697,5,10,10,0 +45095,814,579,19,3,3,0 +45094,814,626,0,63,63,0 +45093,814,689,0,32,32,0 +45092,814,696,0,30,30,0 +45091,814,427,2,14,14,0 +45090,814,554,0,20,20,0 +45089,814,695,2,15,15,0 +45088,814,578,18,4,4,1 +45087,814,498,13.5,5,5,0 +45086,814,633,13,6,6,0 +45085,814,647,33.5,1,1,4 +45285,815,797,0,82,82,0 +45284,815,804,0,65,65,0 +45283,815,630,0,61,61,0 +45282,815,513,0,29,29,0 +45281,815,721,0,76,76,0 +45280,815,622,0,66,66,0 +45279,815,719,0,39,39,0 +45278,815,720,0,32,32,0 +45277,815,691,2,16,16,0 +45276,815,718,0,103,103,0 +45275,815,717,0,102,102,0 +45274,815,716,0,101,101,0 +45273,815,715,0,99,99,0 +45272,815,714,0,98,98,0 +45271,815,713,0,96,96,0 +45270,815,712,0,91,91,0 +45269,815,711,0,89,89,0 +45268,815,431,0,84,84,0 +45267,815,455,0,62,62,0 +45266,815,709,0,59,59,0 +45265,815,710,0,56,56,0 +45264,815,692,0,50,50,0 +45263,815,690,0,46,46,0 +45262,815,478,0,38,38,0 +45261,815,680,0,28,28,0 +45260,815,705,0,95,95,0 +45259,815,708,0,93,93,0 +45258,815,707,0,90,90,0 +45257,815,486,0,75,75,0 +45256,815,666,0,69,69,0 +45255,815,706,0,68,68,0 +45254,815,687,0,41,41,0 +45253,815,625,0,80,80,0 +45252,815,669,0,27,27,0 +45251,815,589,0,57,57,0 +45250,815,704,0,55,55,0 +45249,815,619,0,44,44,0 +45248,815,703,0,85,85,0 +45247,815,681,0,81,81,0 +45246,815,429,0,47,47,0 +45245,815,632,0,42,42,0 +45244,815,693,0,40,40,0 +45243,815,670,4,11,11,0 +45242,815,651,0,70,70,0 +45241,815,456,0,77,77,0 +45240,815,663,0,25,25,0 +45239,815,643,0,72,72,0 +45238,815,660,0,48,48,0 +45237,815,501,0,23,23,0 +45236,815,664,0,52,52,0 +45235,815,475,0,20,20,0 +45234,815,581,0,30,30,0 +45233,815,627,0,24,24,0 +45232,815,640,7,8,8,0 +45231,815,612,0,60,60,0 +45230,815,512,0,79,79,0 +45229,815,702,0,49,49,0 +45228,815,655,0,100,100,0 +45227,815,521,0,35,35,0 +45226,815,520,0,36,36,0 +45225,815,528,0,97,97,0 +45224,815,593,0,94,94,0 +45223,815,555,1.5,18,18,0 +45222,815,518,2,12,12,0 +45221,815,659,0,92,92,0 +45220,815,559,0,88,88,0 +45219,815,673,0,87,87,0 +45218,815,628,0,86,86,0 +45217,815,677,0,83,83,0 +45216,815,613,0,78,78,0 +45215,815,654,0,64,64,0 +45214,815,449,0,63,63,0 +45213,815,701,0,58,58,0 +45212,815,525,0,54,54,0 +45211,815,675,0,53,53,0 +45210,815,700,0,51,51,0 +45209,815,699,0,45,45,0 +45208,815,653,0,43,43,0 +45207,815,529,0,37,37,0 +45206,815,679,0,33,33,0 +45205,815,509,0,26,26,0 +45204,815,556,0,22,22,0 +45203,815,658,2,17,17,0 +45202,815,615,1.5,19,19,0 +45201,815,611,2,13,13,0 +45200,815,656,6,10,10,0 +45199,815,657,9,7,7,1 +45198,815,698,0,74,74,0 +45197,815,649,0,73,73,0 +45196,815,496,0,71,71,0 +45195,815,642,24,2,2,1 +45194,815,697,6.5,9,9,0 +45193,815,579,20.5,3,3,0 +45192,815,626,0,67,67,0 +45191,815,689,0,34,34,0 +45190,815,696,0,31,31,0 +45189,815,427,2,14,14,0 +45188,815,554,0,21,21,0 +45187,815,695,2,15,15,0 +45186,815,578,19,4,4,1 +45185,815,498,13.5,5,5,0 +45184,815,633,13,6,6,0 +45183,815,647,34.5,1,1,5 +45393,816,577,0,32,32,0 +45392,816,797,0,86,86,0 +45391,816,804,0,70,70,0 +45390,816,630,0,66,66,0 +45389,816,513,0,30,30,0 +45388,816,667,0,104,104,0 +45387,816,722,0,97,97,0 +45386,816,620,0,36,36,0 +45385,816,644,0,31,31,0 +45384,816,721,0,80,80,0 +45383,816,622,0,71,71,0 +45382,816,719,0,43,43,0 +45381,816,720,0,35,35,0 +45380,816,691,2,16,16,0 +45379,816,718,0,108,108,0 +45378,816,717,0,60,60,0 +45377,816,716,0,107,107,0 +45376,816,715,0,105,105,0 +45375,816,714,0,103,103,0 +45374,816,713,0,101,101,0 +45373,816,712,0,95,95,0 +45372,816,711,0,93,93,0 +45371,816,431,0,88,88,0 +45370,816,455,0,67,67,0 +45369,816,709,0,64,64,0 +45368,816,710,0,62,62,0 +45367,816,692,0,55,55,0 +45366,816,690,0,51,51,0 +45365,816,478,0,42,42,0 +45364,816,680,0,29,29,0 +45363,816,705,0,100,100,0 +45362,816,708,0,98,98,0 +45361,816,707,0,94,94,0 +45360,816,486,0,79,79,0 +45359,816,666,0,74,74,0 +45358,816,706,0,73,73,0 +45357,816,687,0,45,45,0 +45356,816,625,0,83,83,0 +45355,816,669,0,27,27,0 +45354,816,589,0,46,46,0 +45353,816,704,0,59,59,0 +45352,816,619,0,49,49,0 +45351,816,703,0,89,89,0 +45350,816,681,0,85,85,0 +45349,816,429,0,52,52,0 +45348,816,632,0,47,47,0 +45347,816,693,0,44,44,0 +45346,816,670,4,11,11,0 +45345,816,651,0,75,75,0 +45344,816,456,0,81,81,0 +45343,816,663,0,26,26,0 +45342,816,643,0,22,22,0 +45341,816,660,0,53,53,0 +45340,816,501,0,24,24,0 +45339,816,664,0,57,57,0 +45338,816,475,0,20,20,0 +45337,816,581,0,33,33,0 +45336,816,627,0,25,25,0 +45335,816,640,7,8,8,0 +45334,816,612,0,65,65,0 +45333,816,512,0,84,84,0 +45332,816,702,0,54,54,0 +45331,816,655,0,106,106,0 +45330,816,521,0,39,39,0 +45329,816,520,0,40,40,0 +45328,816,528,0,102,102,0 +45327,816,593,0,99,99,0 +45326,816,555,1.5,18,18,0 +45325,816,518,2,13,13,0 +45324,816,659,0,96,96,0 +45323,816,559,0,92,92,0 +45322,816,673,0,91,91,0 +45321,816,628,0,90,90,0 +45320,816,677,0,87,87,0 +45319,816,613,0,82,82,0 +45318,816,654,0,69,69,0 +45317,816,449,0,68,68,0 +45316,816,701,0,63,63,0 +45315,816,525,0,61,61,0 +45314,816,675,0,58,58,0 +45313,816,700,0,56,56,0 +45312,816,699,0,50,50,0 +45311,816,653,0,48,48,0 +45310,816,529,0,41,41,0 +45309,816,679,0,37,37,0 +45308,816,509,0,28,28,0 +45307,816,556,0,23,23,0 +45306,816,658,2,17,17,0 +45305,816,615,1.5,19,19,0 +45304,816,611,2,14,14,0 +45303,816,656,6,10,10,0 +45302,816,657,9,7,7,1 +45301,816,698,0,78,78,0 +45300,816,649,0,77,77,0 +45299,816,496,0,76,76,0 +45298,816,642,26,3,3,1 +45297,816,697,6.5,9,9,0 +45296,816,579,28,2,2,1 +45295,816,626,0,72,72,0 +45294,816,689,0,38,38,0 +45293,816,696,0,34,34,0 +45292,816,427,4,12,12,0 +45291,816,554,0,21,21,0 +45290,816,695,2,15,15,0 +45289,816,578,19,4,4,1 +45288,816,498,13.5,6,6,0 +45287,816,633,17,5,5,0 +45286,816,647,34.5,1,1,5 +44153,817,720,0,21,21,0 +44152,817,627,0,20,20,0 +44151,817,724,0,19,19,0 +44150,817,717,0,18,18,0 +44149,817,725,0,17,17,0 +44148,817,581,0,16,16,0 +44147,817,642,0,10,10,0 +44146,817,626,0,15,15,0 +44145,817,651,0,14,14,0 +44144,817,475,0,13,13,0 +44143,817,501,0,12,12,0 +44142,817,609,0,11,11,0 +44141,817,669,0,9,9,0 +44140,817,688,0,8,8,0 +44139,817,721,0,7,7,0 +44138,817,640,0,6,6,0 +44137,817,689,2,5,5,0 +44136,817,663,3,4,4,0 +44135,817,554,4,3,3,0 +44134,817,723,6,2,2,0 +44133,817,641,9,1,1,1 +44207,818,612,0,54,54,0 +44206,818,734,0,53,53,0 +44205,818,647,0,52,52,0 +44204,818,733,0,51,51,0 +44203,818,702,0,50,50,0 +44202,818,520,0,49,49,0 +44201,818,615,0,48,48,0 +44200,818,628,0,47,47,0 +44199,818,699,0,46,46,0 +44198,818,529,0,45,45,0 +44197,818,449,0,44,44,0 +44196,818,677,0,43,43,0 +44195,818,732,0,29,29,0 +44194,818,675,0,28,28,0 +44193,818,731,0,27,27,0 +44192,818,521,0,26,26,0 +44191,818,657,1,11,11,0 +44190,818,513,0,25,25,0 +44189,818,730,0,24,24,0 +44188,818,729,0,23,23,0 +44187,818,728,0,22,22,0 +44186,818,727,0,21,21,0 +44185,818,658,0,20,20,0 +44184,818,593,0,19,19,0 +44183,818,629,0,18,18,0 +44182,818,726,0,17,17,0 +44181,818,592,0,15,15,0 +44180,818,525,0,12,12,0 +44179,818,656,2,10,10,0 +44178,818,518,3,7,7,0 +44177,818,611,4,6,6,0 +44176,818,509,6,4,4,0 +44175,818,526,8,2,2,1 +44174,818,720,0,42,42,0 +44173,818,627,0,41,41,0 +44172,818,724,0,40,40,0 +44171,818,717,0,39,39,0 +44170,818,725,0,38,38,0 +44169,818,581,0,37,37,0 +44168,818,642,0,31,31,0 +44167,818,626,0,36,36,0 +44166,818,651,0,35,35,0 +44165,818,475,0,34,34,0 +44164,818,501,0,33,33,0 +44163,818,609,0,32,32,0 +44162,818,669,0,30,30,0 +44161,818,688,0,16,16,0 +44160,818,721,0,14,14,0 +44159,818,640,0,13,13,0 +44158,818,689,2,9,9,0 +44157,818,663,3,8,8,0 +44156,818,554,4,5,5,0 +44155,818,723,6,3,3,0 +44154,818,641,9,1,1,1 +44270,819,739,0,47,47,0 +44269,819,738,0,37,37,0 +44268,819,737,0,34,34,0 +44267,819,703,0,33,33,0 +44266,819,736,0,30,30,0 +44265,819,660,0,23,23,0 +44264,819,735,0,19,19,0 +44263,819,632,2,15,15,0 +44262,819,578,3,12,12,0 +44261,819,612,0,63,63,0 +44260,819,734,0,62,62,0 +44259,819,647,9,2,2,1 +44258,819,733,0,61,61,0 +44257,819,702,0,60,60,0 +44256,819,520,0,59,59,0 +44255,819,615,0,58,58,0 +44254,819,628,0,57,57,0 +44253,819,699,0,56,56,0 +44252,819,529,0,55,55,0 +44251,819,449,0,54,54,0 +44250,819,677,0,53,53,0 +44249,819,732,0,42,42,0 +44248,819,675,0,41,41,0 +44247,819,731,0,40,40,0 +44246,819,521,0,39,39,0 +44245,819,657,1,16,16,0 +44244,819,513,0,38,38,0 +44243,819,730,0,36,36,0 +44242,819,729,0,35,35,0 +44241,819,728,0,32,32,0 +44240,819,727,0,31,31,0 +44239,819,658,0,29,29,0 +44238,819,593,0,27,27,0 +44237,819,629,0,25,25,0 +44236,819,726,0,24,24,0 +44235,819,592,0,21,21,0 +44234,819,525,0,17,17,0 +44233,819,656,2,14,14,0 +44232,819,518,3,11,11,0 +44231,819,611,4,9,9,0 +44230,819,509,6,6,6,0 +44229,819,526,8,3,3,1 +44228,819,720,0,52,52,0 +44227,819,627,0,51,51,0 +44226,819,724,0,50,50,0 +44225,819,717,0,49,49,0 +44224,819,725,0,48,48,0 +44223,819,581,0,46,46,0 +44222,819,642,6,4,4,0 +44221,819,626,4,7,7,0 +44220,819,651,0,28,28,0 +44219,819,475,0,45,45,0 +44218,819,501,0,44,44,0 +44217,819,609,0,43,43,0 +44216,819,669,0,26,26,0 +44215,819,688,0,22,22,0 +44214,819,721,0,20,20,0 +44213,819,640,0,18,18,0 +44212,819,689,2,13,13,0 +44211,819,663,3,10,10,0 +44210,819,554,4,8,8,0 +44209,819,723,6,5,5,0 +44208,819,641,9,1,1,1 +44339,820,722,0,57,57,0 +44338,820,687,0,52,52,0 +44337,820,740,0,34,34,0 +44336,820,704,0,31,31,0 +44335,820,741,0,26,26,0 +44334,820,427,2,16,16,0 +44333,820,739,0,51,51,0 +44332,820,738,0,42,42,0 +44331,820,737,0,39,39,0 +44330,820,703,0,38,38,0 +44329,820,736,0,35,35,0 +44328,820,660,0,25,25,0 +44327,820,735,0,22,22,0 +44326,820,632,2,15,15,0 +44325,820,578,3,10,10,0 +44324,820,612,0,69,69,0 +44323,820,734,0,68,68,0 +44322,820,647,18,1,1,2 +44321,820,733,0,67,67,0 +44320,820,702,0,66,66,0 +44319,820,520,0,65,65,0 +44318,820,615,0,64,64,0 +44317,820,628,0,63,63,0 +44316,820,699,0,62,62,0 +44315,820,529,0,61,61,0 +44314,820,449,0,60,60,0 +44313,820,677,0,59,59,0 +44312,820,732,0,47,47,0 +44311,820,675,0,46,46,0 +44310,820,731,0,45,45,0 +44309,820,521,0,44,44,0 +44308,820,657,1,17,17,0 +44307,820,513,0,43,43,0 +44306,820,730,0,41,41,0 +44305,820,729,0,40,40,0 +44304,820,728,0,37,37,0 +44303,820,727,0,36,36,0 +44302,820,658,0,33,33,0 +44301,820,593,0,32,32,0 +44300,820,629,0,29,29,0 +44299,820,726,0,27,27,0 +44298,820,592,0,23,23,0 +44297,820,525,0,20,20,0 +44296,820,656,2,14,14,0 +44295,820,518,3,12,12,0 +44294,820,611,4,9,9,0 +44293,820,509,6,7,7,0 +44292,820,526,8,4,4,1 +44291,820,720,0,58,58,0 +44290,820,627,0,53,53,0 +44289,820,724,0,56,56,0 +44288,820,717,0,55,55,0 +44287,820,725,0,54,54,0 +44286,820,581,0,19,19,0 +44285,820,642,12,3,3,0 +44284,820,626,7,5,5,0 +44283,820,651,0,28,28,0 +44282,820,475,0,50,50,0 +44281,820,501,0,49,49,0 +44280,820,609,0,48,48,0 +44279,820,669,0,30,30,0 +44278,820,688,0,24,24,0 +44277,820,721,0,21,21,0 +44276,820,640,0,18,18,0 +44275,820,689,2,13,13,0 +44274,820,663,3,11,11,0 +44273,820,554,4,8,8,0 +44272,820,723,6,6,6,0 +44271,820,641,13,2,2,1 +44421,821,749,0,80,80,0 +44420,821,748,0,79,79,0 +44419,821,747,0,76,76,0 +44418,821,708,0,71,71,0 +44417,821,705,0,57,57,0 +44416,821,746,0,53,53,0 +44415,821,664,0,51,51,0 +44414,821,745,0,43,43,0 +44413,821,744,0,33,33,0 +44412,821,456,0,31,31,0 +44411,821,686,0,25,25,0 +44410,821,743,2,18,18,0 +44409,821,742,3,13,13,0 +44408,821,722,0,66,66,0 +44407,821,687,0,36,36,0 +44406,821,740,0,40,40,0 +44405,821,704,0,37,37,0 +44404,821,741,0,29,29,0 +44403,821,427,2,15,15,0 +44402,821,739,0,61,61,0 +44401,821,738,0,48,48,0 +44400,821,737,0,46,46,0 +44399,821,703,0,45,45,0 +44398,821,736,0,41,41,0 +44397,821,660,0,28,28,0 +44396,821,735,0,24,24,0 +44395,821,632,2,17,17,0 +44394,821,578,7,6,6,0 +44393,821,612,0,82,82,0 +44392,821,734,0,81,81,0 +44391,821,647,27,1,1,3 +44390,821,733,0,78,78,0 +44389,821,702,0,77,77,0 +44388,821,520,0,75,75,0 +44387,821,615,0,74,74,0 +44386,821,628,0,73,73,0 +44385,821,699,0,72,72,0 +44384,821,529,0,70,70,0 +44383,821,449,0,69,69,0 +44382,821,677,0,68,68,0 +44381,821,732,0,58,58,0 +44380,821,675,0,56,56,0 +44379,821,731,0,55,55,0 +44378,821,521,0,54,54,0 +44377,821,657,1,19,19,0 +44376,821,513,0,50,50,0 +44375,821,730,0,49,49,0 +44374,821,729,0,47,47,0 +44373,821,728,0,44,44,0 +44372,821,727,0,42,42,0 +44371,821,658,0,39,39,0 +44370,821,593,0,38,38,0 +44369,821,629,0,34,34,0 +44368,821,726,0,30,30,0 +44367,821,592,0,26,26,0 +44366,821,525,0,22,22,0 +44365,821,656,2,16,16,0 +44364,821,518,3,12,12,0 +44363,821,611,4,10,10,0 +44362,821,509,6,8,8,0 +44361,821,526,8,4,4,1 +44360,821,720,0,67,67,0 +44359,821,627,0,62,62,0 +44358,821,724,0,65,65,0 +44357,821,717,0,64,64,0 +44356,821,725,0,63,63,0 +44355,821,581,0,21,21,0 +44354,821,642,12,3,3,0 +44353,821,626,7,5,5,0 +44352,821,651,0,32,32,0 +44351,821,475,0,60,60,0 +44350,821,501,0,52,52,0 +44349,821,609,0,59,59,0 +44348,821,669,0,35,35,0 +44347,821,688,0,27,27,0 +44346,821,721,0,23,23,0 +44345,821,640,0,20,20,0 +44344,821,689,2,14,14,0 +44343,821,663,3,11,11,0 +44342,821,554,4,9,9,0 +44341,821,723,6,7,7,0 +44340,821,641,19,2,2,1 +44517,822,757,0,92,92,0 +44516,822,692,0,89,89,0 +44515,822,697,0,85,85,0 +44514,822,756,0,84,84,0 +44513,822,755,0,78,78,0 +44512,822,710,0,76,76,0 +44511,822,715,0,72,72,0 +44510,822,754,0,71,71,0 +44509,822,750,0,67,67,0 +44508,822,712,0,66,66,0 +44507,822,709,0,46,46,0 +44506,822,753,0,43,43,0 +44505,822,752,0,38,38,0 +44504,822,751,0,28,28,0 +44503,822,749,0,79,79,0 +44502,822,748,0,74,74,0 +44501,822,747,0,91,91,0 +44500,822,708,0,83,83,0 +44499,822,705,0,62,62,0 +44498,822,746,0,58,58,0 +44497,822,664,0,56,56,0 +44496,822,745,0,48,48,0 +44495,822,744,0,36,36,0 +44494,822,456,0,34,34,0 +44493,822,686,0,26,26,0 +44492,822,743,2,18,18,0 +44491,822,742,3,13,13,0 +44490,822,722,0,75,75,0 +44489,822,687,0,40,40,0 +44488,822,740,0,45,45,0 +44487,822,704,0,41,41,0 +44486,822,741,0,32,32,0 +44485,822,427,2,15,15,0 +44484,822,739,0,68,68,0 +44483,822,738,0,53,53,0 +44482,822,737,0,51,51,0 +44481,822,703,0,50,50,0 +44480,822,736,0,20,20,0 +44479,822,660,0,30,30,0 +44478,822,735,0,25,25,0 +44477,822,632,2,16,16,0 +44476,822,578,7,7,7,0 +44475,822,612,0,96,96,0 +44474,822,734,0,95,95,0 +44473,822,647,36,1,1,4 +44472,822,733,0,94,94,0 +44471,822,702,0,93,93,0 +44470,822,520,0,90,90,0 +44469,822,615,0,88,88,0 +44468,822,628,0,87,87,0 +44467,822,699,0,86,86,0 +44466,822,529,0,82,82,0 +44465,822,449,0,81,81,0 +44464,822,677,0,80,80,0 +44463,822,732,0,63,63,0 +44462,822,675,0,61,61,0 +44461,822,731,0,60,60,0 +44460,822,521,0,59,59,0 +44459,822,657,1,19,19,0 +44458,822,513,0,55,55,0 +44457,822,730,0,54,54,0 +44456,822,729,0,52,52,0 +44455,822,728,0,49,49,0 +44454,822,727,0,47,47,0 +44453,822,658,0,44,44,0 +44452,822,593,0,42,42,0 +44451,822,629,0,37,37,0 +44450,822,726,0,33,33,0 +44449,822,592,0,27,27,0 +44448,822,525,0,23,23,0 +44447,822,656,2,17,17,0 +44446,822,518,3,12,12,0 +44445,822,611,4,10,10,0 +44444,822,509,6,8,8,0 +44443,822,526,8,5,5,1 +44442,822,720,0,77,77,0 +44441,822,627,0,69,69,0 +44440,822,724,0,31,31,0 +44439,822,717,0,73,73,0 +44438,822,725,0,70,70,0 +44437,822,581,0,22,22,0 +44436,822,642,18,3,3,0 +44435,822,626,7,6,6,0 +44434,822,651,0,35,35,0 +44433,822,475,0,65,65,0 +44432,822,501,0,57,57,0 +44431,822,609,0,64,64,0 +44430,822,669,0,39,39,0 +44429,822,688,0,29,29,0 +44428,822,721,0,24,24,0 +44427,822,640,0,21,21,0 +44426,822,689,2,14,14,0 +44425,822,663,3,11,11,0 +44424,822,554,6,9,9,0 +44423,822,723,10,4,4,0 +44422,822,641,22,2,2,1 +44617,823,759,0,39,39,0 +44616,823,758,0,70,70,0 +44615,823,622,0,41,41,0 +44614,823,633,4,11,11,0 +44613,823,757,0,96,96,0 +44612,823,692,0,93,93,0 +44611,823,697,0,89,89,0 +44610,823,756,0,88,88,0 +44609,823,755,0,83,83,0 +44608,823,710,0,81,81,0 +44607,823,715,0,77,77,0 +44606,823,754,0,76,76,0 +44605,823,750,0,72,72,0 +44604,823,712,0,71,71,0 +44603,823,709,0,50,50,0 +44602,823,753,0,47,47,0 +44601,823,752,0,42,42,0 +44600,823,751,0,30,30,0 +44599,823,749,0,84,84,0 +44598,823,748,0,79,79,0 +44597,823,747,0,95,95,0 +44596,823,708,0,27,27,0 +44595,823,705,0,66,66,0 +44594,823,746,0,62,62,0 +44593,823,664,0,60,60,0 +44592,823,745,0,52,52,0 +44591,823,744,0,38,38,0 +44590,823,456,0,37,37,0 +44589,823,686,0,28,28,0 +44588,823,743,2,19,19,0 +44587,823,742,3,14,14,0 +44586,823,722,0,80,80,0 +44585,823,687,0,44,44,0 +44584,823,740,0,49,49,0 +44583,823,704,0,45,45,0 +44582,823,741,0,35,35,0 +44581,823,427,2,16,16,0 +44580,823,739,0,73,73,0 +44579,823,738,0,57,57,0 +44578,823,737,0,55,55,0 +44577,823,703,0,54,54,0 +44576,823,736,0,21,21,0 +44575,823,660,0,33,33,0 +44574,823,735,0,26,26,0 +44573,823,632,2,17,17,0 +44572,823,578,10,5,5,0 +44571,823,612,0,100,100,0 +44570,823,734,0,99,99,0 +44569,823,647,36,1,1,5 +44568,823,733,0,98,98,0 +44567,823,702,0,97,97,0 +44566,823,520,0,94,94,0 +44565,823,615,0,92,92,0 +44564,823,628,0,91,91,0 +44563,823,699,0,90,90,0 +44562,823,529,0,87,87,0 +44561,823,449,0,86,86,0 +44560,823,677,0,85,85,0 +44559,823,732,0,67,67,0 +44558,823,675,0,65,65,0 +44557,823,731,0,64,64,0 +44556,823,521,0,63,63,0 +44555,823,657,1,20,20,0 +44554,823,513,0,59,59,0 +44553,823,730,0,58,58,0 +44552,823,729,0,56,56,0 +44551,823,728,0,53,53,0 +44550,823,727,0,51,51,0 +44549,823,658,0,48,48,0 +44548,823,593,0,46,46,0 +44547,823,629,0,40,40,0 +44546,823,726,0,36,36,0 +44545,823,592,0,29,29,0 +44544,823,525,0,24,24,0 +44543,823,656,2,18,18,0 +44542,823,518,3,13,13,0 +44541,823,611,4,10,10,0 +44540,823,509,6,8,8,0 +44539,823,526,8,7,7,1 +44538,823,720,0,82,82,0 +44537,823,627,0,74,74,0 +44536,823,724,0,34,34,0 +44535,823,717,0,78,78,0 +44534,823,725,0,75,75,0 +44533,823,581,0,23,23,0 +44532,823,642,24,2,2,0 +44531,823,626,9,6,6,0 +44530,823,651,0,31,31,0 +44529,823,475,0,69,69,0 +44528,823,501,0,61,61,0 +44527,823,609,0,68,68,0 +44526,823,669,0,43,43,0 +44525,823,688,0,32,32,0 +44524,823,721,0,25,25,0 +44523,823,640,0,22,22,0 +44522,823,689,2,15,15,0 +44521,823,663,3,12,12,0 +44520,823,554,6,9,9,0 +44519,823,723,10,4,4,0 +44518,823,641,22,3,3,1 +44722,824,760,0,105,105,0 +44721,824,761,0,94,94,0 +44720,824,625,0,90,90,0 +44719,824,762,0,84,84,0 +44718,824,498,6.5,9,9,0 +44717,824,759,0,43,43,0 +44716,824,758,0,74,74,0 +44715,824,622,0,36,36,0 +44714,824,633,8,8,8,0 +44713,824,757,0,100,100,0 +44712,824,692,0,97,97,0 +44711,824,697,2,19,19,0 +44710,824,756,0,92,92,0 +44709,824,755,0,86,86,0 +44708,824,710,0,83,83,0 +44707,824,715,0,81,81,0 +44706,824,754,0,79,79,0 +44705,824,750,0,76,76,0 +44704,824,712,0,75,75,0 +44703,824,709,0,55,55,0 +44702,824,753,0,52,52,0 +44701,824,752,0,45,45,0 +44700,824,751,0,33,33,0 +44699,824,749,0,87,87,0 +44698,824,748,0,51,51,0 +44697,824,747,0,99,99,0 +44696,824,708,0,30,30,0 +44695,824,705,0,71,71,0 +44694,824,746,0,67,67,0 +44693,824,664,0,64,64,0 +44692,824,745,0,57,57,0 +44691,824,744,0,42,42,0 +44690,824,456,0,41,41,0 +44689,824,686,0,31,31,0 +44688,824,743,2,21,21,0 +44687,824,742,3,14,14,0 +44686,824,722,0,82,82,0 +44685,824,687,0,47,47,0 +44684,824,740,0,54,54,0 +44683,824,704,0,49,49,0 +44682,824,741,0,39,39,0 +44681,824,427,2,17,17,0 +44680,824,739,0,77,77,0 +44679,824,738,0,62,62,0 +44678,824,737,0,60,60,0 +44677,824,703,0,59,59,0 +44676,824,736,0,23,23,0 +44675,824,660,0,37,37,0 +44674,824,735,0,29,29,0 +44673,824,632,2,18,18,0 +44672,824,578,10,5,5,0 +44671,824,612,0,104,104,0 +44670,824,734,0,103,103,0 +44669,824,647,36,1,1,6 +44668,824,733,0,102,102,0 +44667,824,702,0,101,101,0 +44666,824,520,0,98,98,0 +44665,824,615,0,96,96,0 +44664,824,628,0,95,95,0 +44663,824,699,0,93,93,0 +44662,824,529,0,91,91,0 +44661,824,449,0,89,89,0 +44660,824,677,0,88,88,0 +44659,824,732,0,72,72,0 +44658,824,675,0,70,70,0 +44657,824,731,0,69,69,0 +44656,824,521,0,68,68,0 +44655,824,657,1,22,22,0 +44654,824,513,0,65,65,0 +44653,824,730,0,63,63,0 +44652,824,729,0,61,61,0 +44651,824,728,0,58,58,0 +44650,824,727,0,56,56,0 +44649,824,658,0,53,53,0 +44648,824,593,0,50,50,0 +44647,824,629,0,44,44,0 +44646,824,726,0,40,40,0 +44645,824,592,0,32,32,0 +44644,824,525,0,27,27,0 +44643,824,656,2,20,20,0 +44642,824,518,3,15,15,0 +44641,824,611,4,12,12,0 +44640,824,509,6,10,10,0 +44639,824,526,8,7,7,1 +44638,824,720,0,85,85,0 +44637,824,627,0,48,48,0 +44636,824,724,0,38,38,0 +44635,824,717,0,80,80,0 +44634,824,725,0,78,78,0 +44633,824,581,0,26,26,0 +44632,824,642,24,2,2,0 +44631,824,626,9,6,6,0 +44630,824,651,0,34,34,0 +44629,824,475,0,73,73,0 +44628,824,501,0,66,66,0 +44627,824,609,0,25,25,0 +44626,824,669,0,46,46,0 +44625,824,688,0,35,35,0 +44624,824,721,0,28,28,0 +44623,824,640,0,24,24,0 +44622,824,689,2,16,16,0 +44621,824,663,3,13,13,0 +44620,824,554,6,11,11,0 +44619,824,723,10,4,4,0 +44618,824,641,22,3,3,1 +43640,825,721,0,21,21,0 +43639,825,498,0,20,20,0 +43638,825,633,0,19,19,0 +43637,825,704,0,18,18,0 +43636,825,725,0,17,17,0 +43635,825,765,0,16,16,0 +43634,825,687,0,15,15,0 +43633,825,764,0,14,14,0 +43632,825,660,0,13,13,0 +43631,825,501,0,12,12,0 +43630,825,723,0,11,11,0 +43629,825,741,0,10,10,0 +43628,825,627,0,9,9,0 +43627,825,475,0,8,8,0 +43626,825,589,0,7,7,0 +43625,825,647,0,6,6,0 +43624,825,640,2,5,5,0 +43623,825,763,3,4,4,0 +43622,825,642,4,3,3,0 +43621,825,641,6,2,2,0 +43620,825,579,9,1,1,1 +43695,826,675,2,11,11,0 +43694,826,728,0,55,55,0 +43693,826,732,0,54,54,0 +43692,826,772,0,53,53,0 +43691,826,726,0,52,52,0 +43690,826,657,0,51,51,0 +43689,826,629,0,50,50,0 +43688,826,449,0,49,49,0 +43687,826,771,0,48,48,0 +43686,826,733,0,47,47,0 +43685,826,630,0,46,46,0 +43684,826,526,0,45,45,0 +43683,826,770,0,44,44,0 +43682,826,593,0,43,43,0 +43681,826,521,0,41,41,0 +43680,826,769,0,38,38,0 +43679,826,700,0,37,37,0 +43678,826,615,0,35,35,0 +43677,826,653,0,32,32,0 +43676,826,654,0,30,30,0 +43675,826,768,0,29,29,0 +43674,826,729,0,28,28,0 +43673,826,611,0,27,27,0 +43672,826,534,0,26,26,0 +43671,826,699,0,25,25,0 +43670,826,529,0,24,24,0 +43669,826,518,0,16,16,0 +43668,826,767,0,15,15,0 +43667,826,731,0,13,13,0 +43666,826,734,2,9,9,0 +43665,826,612,3,6,6,0 +43664,826,658,2,8,8,0 +43663,826,673,6,3,3,0 +43662,826,766,9,2,2,1 +43661,826,721,0,42,42,0 +43660,826,498,0,40,40,0 +43659,826,633,0,39,39,0 +43658,826,704,0,36,36,0 +43657,826,725,0,34,34,0 +43656,826,765,0,33,33,0 +43655,826,687,0,31,31,0 +43654,826,764,0,23,23,0 +43653,826,660,0,22,22,0 +43652,826,501,0,21,21,0 +43651,826,723,0,20,20,0 +43650,826,741,0,19,19,0 +43649,826,627,0,18,18,0 +43648,826,475,0,17,17,0 +43647,826,589,0,14,14,0 +43646,826,647,0,12,12,0 +43645,826,640,2,10,10,0 +43644,826,763,3,7,7,0 +43643,826,642,4,5,5,0 +43642,826,641,6,4,4,0 +43641,826,579,9,1,1,1 +43751,827,773,0,22,22,0 +43750,827,429,0,17,17,0 +43749,827,728,0,57,57,0 +43748,827,732,0,56,56,0 +43747,827,772,0,55,55,0 +43746,827,726,0,54,54,0 +43745,827,657,0,53,53,0 +43744,827,629,0,52,52,0 +43743,827,449,0,51,51,0 +43742,827,771,0,50,50,0 +43741,827,733,0,49,49,0 +43740,827,630,0,48,48,0 +43739,827,526,0,47,47,0 +43738,827,770,0,46,46,0 +43737,827,593,0,45,45,0 +43736,827,521,0,43,43,0 +43735,827,769,0,41,41,0 +43734,827,700,0,40,40,0 +43733,827,615,0,39,39,0 +43732,827,653,0,36,36,0 +43731,827,654,0,34,34,0 +43730,827,768,0,33,33,0 +43729,827,729,0,32,32,0 +43728,827,611,0,31,31,0 +43727,827,534,0,30,30,0 +43726,827,699,0,29,29,0 +43725,827,529,0,28,28,0 +43724,827,518,0,21,21,0 +43723,827,767,0,20,20,0 +43722,827,731,0,16,16,0 +43721,827,734,2,13,13,0 +43720,827,612,3,10,10,0 +43719,827,658,2,11,11,0 +43718,827,673,6,6,6,0 +43717,827,766,9,3,3,1 +43716,827,721,0,44,44,0 +43715,827,498,0,42,42,0 +43714,827,633,4,7,7,0 +43713,827,704,2,12,12,0 +43712,827,725,0,38,38,0 +43711,827,765,0,37,37,0 +43710,827,687,0,35,35,0 +43709,827,764,0,27,27,0 +43708,827,660,0,18,18,0 +43707,827,501,0,26,26,0 +43706,827,723,0,25,25,0 +43705,827,741,0,24,24,0 +43704,827,627,3,8,8,0 +43703,827,475,0,23,23,0 +43702,827,589,0,19,19,0 +43701,827,647,6,4,4,0 +43700,827,640,2,14,14,0 +43699,827,763,3,9,9,0 +43698,827,642,12,1,1,1 +43697,827,641,6,5,5,0 +43696,827,579,10,2,2,1 +43817,828,675,2,18,18,0 +43816,828,670,0,52,52,0 +43815,828,626,0,49,49,0 +43814,828,609,0,48,48,0 +43813,828,427,0,45,45,0 +43812,828,775,0,40,40,0 +43811,828,774,0,25,25,0 +43810,828,686,3,13,13,0 +43809,828,786,4,8,8,1 +43808,828,773,0,26,26,0 +43807,828,429,0,21,21,0 +43806,828,728,0,65,65,0 +43805,828,732,0,64,64,0 +43804,828,772,0,63,63,0 +43803,828,726,0,62,62,0 +43802,828,657,0,61,61,0 +43801,828,629,0,60,60,0 +43800,828,449,0,59,59,0 +43799,828,771,0,58,58,0 +43798,828,733,0,57,57,0 +43797,828,630,0,56,56,0 +43796,828,526,0,55,55,0 +43795,828,770,0,54,54,0 +43794,828,593,0,53,53,0 +43793,828,521,0,50,50,0 +43792,828,769,0,47,47,0 +43791,828,700,0,46,46,0 +43790,828,615,0,44,44,0 +43789,828,653,0,41,41,0 +43788,828,654,0,39,39,0 +43787,828,768,0,37,37,0 +43786,828,729,0,36,36,0 +43785,828,611,0,35,35,0 +43784,828,534,0,34,34,0 +43783,828,699,0,33,33,0 +43782,828,529,0,32,32,0 +43781,828,518,0,24,24,0 +43780,828,767,0,23,23,0 +43779,828,731,0,20,20,0 +43778,828,734,2,17,17,0 +43777,828,612,3,12,12,0 +43776,828,658,2,14,14,0 +43775,828,673,6,7,7,0 +43774,828,766,9,3,3,1 +43773,828,721,0,51,51,0 +43772,828,498,3,9,9,0 +43771,828,633,8,5,5,0 +43770,828,704,2,15,15,0 +43769,828,725,0,43,43,0 +43768,828,765,0,42,42,0 +43767,828,687,0,38,38,0 +43766,828,764,0,28,28,0 +43765,828,660,0,22,22,0 +43764,828,501,0,31,31,0 +43763,828,723,0,30,30,0 +43762,828,741,0,29,29,0 +43761,828,627,3,10,10,0 +43760,828,475,0,27,27,0 +43759,828,589,0,19,19,0 +43758,828,647,9,4,4,0 +43757,828,640,2,16,16,0 +43756,828,763,3,11,11,0 +43755,828,642,14,2,2,1 +43754,828,641,6,6,6,0 +43753,828,579,15,1,1,2 +43889,829,747,0,53,53,0 +43888,829,777,0,51,51,0 +43887,829,776,0,46,46,0 +43886,829,708,0,37,37,0 +43885,829,619,0,35,35,0 +43884,829,778,0,30,30,0 +43883,829,661,0,25,25,0 +43882,829,697,3,13,13,0 +43881,829,670,0,61,61,0 +43880,829,626,0,58,58,0 +43879,829,609,0,56,56,0 +43878,829,427,0,52,52,0 +43877,829,775,0,45,45,0 +43876,829,774,0,27,27,0 +43875,829,686,5,9,9,0 +43874,829,786,4,10,10,1 +43873,829,773,0,28,28,0 +43872,829,429,0,22,22,0 +43871,829,728,0,74,74,0 +43870,829,732,0,73,73,0 +43869,829,772,0,72,72,0 +43868,829,726,0,71,71,0 +43867,829,657,0,70,70,0 +43866,829,629,0,69,69,0 +43865,829,449,0,68,68,0 +43864,829,771,0,67,67,0 +43863,829,733,0,66,66,0 +43862,829,630,0,65,65,0 +43861,829,526,0,64,64,0 +43860,829,770,0,63,63,0 +43859,829,593,0,62,62,0 +43858,829,521,0,59,59,0 +43857,829,769,0,55,55,0 +43856,829,700,0,54,54,0 +43855,829,615,0,50,50,0 +43854,829,653,0,47,47,0 +43853,829,654,0,44,44,0 +43852,829,768,0,43,43,0 +43851,829,729,0,42,42,0 +43850,829,611,0,41,41,0 +43849,829,534,0,40,40,0 +43848,829,699,0,39,39,0 +43847,829,529,0,38,38,0 +43846,829,518,0,26,26,0 +43845,829,767,0,24,24,0 +43844,829,731,0,21,21,0 +43843,829,734,2,18,18,0 +43842,829,612,3,14,14,0 +43841,829,658,2,15,15,0 +43840,829,673,6,8,8,0 +43839,829,766,9,5,5,1 +43838,829,721,0,60,60,0 +43837,829,498,11,4,4,1 +43836,829,633,12,3,3,0 +43835,829,704,2,16,16,0 +43834,829,725,0,49,49,0 +43833,829,765,0,48,48,0 +43832,829,687,0,32,32,0 +43831,829,764,0,31,31,0 +43830,829,660,0,23,23,0 +43829,829,501,0,36,36,0 +43828,829,723,0,34,34,0 +43827,829,741,0,33,33,0 +43826,829,627,3,12,12,0 +43825,829,475,0,29,29,0 +43824,829,589,0,20,20,0 +43823,829,647,9,6,6,0 +43822,829,640,2,17,17,0 +43821,829,763,3,11,11,0 +43820,829,642,15,2,2,1 +43819,829,641,6,7,7,0 +43818,829,579,21,1,1,2 +43966,830,756,0,52,52,0 +43965,830,680,0,36,36,0 +43964,830,779,0,60,60,0 +43963,830,747,0,57,57,0 +43962,830,777,0,56,56,0 +43961,830,776,0,49,49,0 +43960,830,708,0,38,38,0 +43959,830,619,0,37,37,0 +43958,830,778,0,32,32,0 +43957,830,661,0,27,27,0 +43956,830,697,3,13,13,0 +43955,830,670,0,64,64,0 +43954,830,626,0,25,25,0 +43953,830,609,0,53,53,0 +43952,830,427,0,44,44,0 +43951,830,775,0,48,48,0 +43950,830,774,0,30,30,0 +43949,830,686,5,9,9,0 +43948,830,786,4,10,10,1 +43947,830,773,0,28,28,0 +43946,830,429,0,23,23,0 +43945,830,728,0,77,77,0 +43944,830,732,0,76,76,0 +43943,830,772,0,75,75,0 +43942,830,726,0,74,74,0 +43941,830,657,0,73,73,0 +43940,830,629,0,72,72,0 +43939,830,449,0,71,71,0 +43938,830,771,0,70,70,0 +43937,830,733,0,69,69,0 +43936,830,630,0,68,68,0 +43935,830,526,0,67,67,0 +43934,830,770,0,66,66,0 +43933,830,593,0,65,65,0 +43932,830,521,0,61,61,0 +43931,830,769,0,59,59,0 +43930,830,700,0,58,58,0 +43929,830,615,0,55,55,0 +43928,830,653,0,50,50,0 +43927,830,654,0,47,47,0 +43926,830,768,0,46,46,0 +43925,830,729,0,45,45,0 +43924,830,611,0,43,43,0 +43923,830,534,0,42,42,0 +43922,830,699,0,41,41,0 +43921,830,529,0,40,40,0 +43920,830,518,0,29,29,0 +43919,830,767,0,26,26,0 +43918,830,731,0,22,22,0 +43917,830,734,2,18,18,0 +43916,830,612,3,14,14,0 +43915,830,658,2,15,15,0 +43914,830,673,6,8,8,0 +43913,830,766,9,6,6,1 +43912,830,721,0,63,63,0 +43911,830,498,15,3,3,1 +43910,830,633,15,5,5,0 +43909,830,704,2,16,16,0 +43908,830,725,0,54,54,0 +43907,830,765,0,51,51,0 +43906,830,687,0,34,34,0 +43905,830,764,0,33,33,0 +43904,830,660,0,24,24,0 +43903,830,501,0,39,39,0 +43902,830,723,0,21,21,0 +43901,830,741,0,35,35,0 +43900,830,627,3,12,12,0 +43899,830,475,0,31,31,0 +43898,830,589,0,20,20,0 +43897,830,647,17,2,2,1 +43896,830,640,2,17,17,0 +43895,830,763,3,11,11,0 +43894,830,642,15,4,4,1 +43893,830,641,8,7,7,0 +43892,830,579,27,1,1,2 +44048,831,675,2,19,19,0 +44047,831,781,0,69,69,0 +44046,831,622,0,62,62,0 +44045,831,762,0,36,36,0 +44044,831,780,0,64,64,0 +44043,831,756,0,54,54,0 +44042,831,680,0,38,38,0 +44041,831,779,0,61,61,0 +44040,831,747,0,58,58,0 +44039,831,777,0,57,57,0 +44038,831,776,0,51,51,0 +44037,831,708,0,40,40,0 +44036,831,619,0,39,39,0 +44035,831,778,0,33,33,0 +44034,831,661,0,28,28,0 +44033,831,697,5,9,9,0 +44032,831,670,0,66,66,0 +44031,831,626,0,26,26,0 +44030,831,609,0,22,22,0 +44029,831,427,0,44,44,0 +44028,831,775,0,50,50,0 +44027,831,774,0,31,31,0 +44026,831,686,5,10,10,0 +44025,831,786,4,11,11,1 +44024,831,773,0,29,29,0 +44023,831,429,0,24,24,0 +44022,831,728,0,80,80,0 +44021,831,732,0,79,79,0 +44020,831,772,0,78,78,0 +44019,831,726,0,77,77,0 +44018,831,657,0,76,76,0 +44017,831,629,0,75,75,0 +44016,831,449,0,74,74,0 +44015,831,771,0,73,73,0 +44014,831,733,0,72,72,0 +44013,831,630,0,71,71,0 +44012,831,526,0,70,70,0 +44011,831,770,0,68,68,0 +44010,831,593,0,67,67,0 +44009,831,521,0,63,63,0 +44008,831,769,0,60,60,0 +44007,831,700,0,59,59,0 +44006,831,615,0,56,56,0 +44005,831,653,0,52,52,0 +44004,831,654,0,49,49,0 +44003,831,768,0,48,48,0 +44002,831,729,0,47,47,0 +44001,831,611,0,46,46,0 +44000,831,534,0,45,45,0 +43999,831,699,0,43,43,0 +43998,831,529,0,42,42,0 +43997,831,518,0,30,30,0 +43996,831,767,0,27,27,0 +43995,831,731,0,23,23,0 +43994,831,734,2,18,18,0 +43993,831,612,3,14,14,0 +43992,831,658,2,15,15,0 +43991,831,673,6,8,8,0 +43990,831,766,9,7,7,1 +43989,831,721,0,65,65,0 +43988,831,498,21,3,3,1 +43987,831,633,15,5,5,0 +43986,831,704,2,16,16,0 +43985,831,725,0,55,55,0 +43984,831,765,0,53,53,0 +43983,831,687,0,35,35,0 +43982,831,764,0,34,34,0 +43981,831,660,0,25,25,0 +43980,831,501,0,41,41,0 +43979,831,723,0,21,21,0 +43978,831,741,0,37,37,0 +43977,831,627,3,13,13,0 +43976,831,475,0,32,32,0 +43975,831,589,0,20,20,0 +43974,831,647,25,2,2,2 +43973,831,640,2,17,17,0 +43972,831,763,3,12,12,0 +43971,831,642,17,4,4,1 +43970,831,641,10,6,6,0 +43969,831,579,27,1,1,2 +44130,832,669,0,62,62,0 +44129,832,783,0,54,54,0 +44128,832,580,0,39,39,0 +44127,832,781,0,73,73,0 +44126,832,622,0,66,66,0 +44125,832,762,0,37,37,0 +44124,832,780,0,68,68,0 +44123,832,756,0,56,56,0 +44122,832,680,0,38,38,0 +44121,832,779,0,64,64,0 +44120,832,747,0,60,60,0 +44119,832,777,0,59,59,0 +44118,832,776,0,52,52,0 +44117,832,708,0,41,41,0 +44116,832,619,0,40,40,0 +44115,832,778,0,34,34,0 +44114,832,661,0,28,28,0 +44113,832,697,7,8,8,0 +44112,832,670,0,70,70,0 +44111,832,626,0,25,25,0 +44110,832,609,0,22,22,0 +44109,832,427,0,45,45,0 +44108,832,775,0,51,51,0 +44107,832,774,0,32,32,0 +44106,832,686,5,10,10,0 +44105,832,786,4,11,11,1 +44104,832,773,0,29,29,0 +44103,832,429,0,24,24,0 +44102,832,728,0,84,84,0 +44101,832,732,0,83,83,0 +44100,832,772,0,82,82,0 +44099,832,726,0,81,81,0 +44098,832,657,0,80,80,0 +44097,832,629,0,79,79,0 +44096,832,449,0,78,78,0 +44095,832,771,0,77,77,0 +44094,832,733,0,76,76,0 +44093,832,630,0,75,75,0 +44092,832,526,0,74,74,0 +44091,832,770,0,72,72,0 +44090,832,593,0,71,71,0 +44089,832,521,0,67,67,0 +44088,832,769,0,63,63,0 +44087,832,700,0,61,61,0 +44086,832,615,0,58,58,0 +44085,832,653,0,53,53,0 +44084,832,654,0,50,50,0 +44083,832,768,0,49,49,0 +44082,832,729,0,48,48,0 +44081,832,611,0,47,47,0 +44080,832,534,0,46,46,0 +44079,832,699,0,44,44,0 +44078,832,529,0,43,43,0 +44077,832,518,0,31,31,0 +44076,832,767,0,27,27,0 +44075,832,731,0,23,23,0 +44074,832,734,2,18,18,0 +44073,832,612,3,14,14,0 +44072,832,658,2,15,15,0 +44071,832,673,6,9,9,0 +44070,832,766,9,7,7,1 +44069,832,721,0,69,69,0 +44068,832,498,24,3,3,1 +44067,832,633,15,5,5,0 +44066,832,704,2,17,17,0 +44065,832,725,0,57,57,0 +44064,832,765,0,55,55,0 +44063,832,687,0,36,36,0 +44062,832,764,0,35,35,0 +44061,832,660,0,26,26,0 +44060,832,501,0,42,42,0 +44059,832,723,0,21,21,0 +44058,832,741,0,30,30,0 +44057,832,627,3,13,13,0 +44056,832,475,0,33,33,0 +44055,832,589,0,20,20,0 +44054,832,647,25,2,2,2 +44053,832,640,2,16,16,0 +44052,832,763,3,12,12,0 +44051,832,642,19,4,4,1 +44050,832,641,10,6,6,0 +44049,832,579,31,1,1,3 +43223,833,666,0,21,21,0 +43222,833,788,0,10,10,0 +43221,833,790,0,23,23,0 +43220,833,661,0,22,22,0 +43219,833,789,0,20,20,0 +43218,833,589,0,19,19,0 +43217,833,640,0,18,18,0 +43216,833,785,0,17,17,0 +43215,833,747,0,16,16,0 +43214,833,669,0,15,15,0 +43213,833,776,0,14,14,0 +43212,833,579,0,13,13,0 +43211,833,660,0,12,12,0 +43210,833,778,0,11,11,0 +43209,833,784,0,9,9,0 +43208,833,741,0,8,8,0 +43207,833,787,0,7,7,0 +43206,833,619,0,6,6,0 +43205,833,627,2,5,5,0 +43204,833,704,3,4,4,0 +43256,834,666,0,29,29,0 +43255,834,788,0,16,16,0 +43254,834,792,0,33,33,0 +43253,834,687,0,31,31,0 +43252,834,501,0,28,28,0 +43251,834,762,0,26,26,0 +43250,834,427,0,25,25,0 +43249,834,626,0,21,21,0 +43248,834,498,0,19,19,0 +43247,834,633,0,18,18,0 +43246,834,793,3,8,8,0 +43245,834,647,6,4,4,0 +43243,834,661,0,30,30,0 +43242,834,789,0,27,27,0 +43241,834,589,4,5,5,0 +43240,834,640,0,22,22,0 +43239,834,785,0,24,24,0 +43238,834,747,0,23,23,0 +43236,834,776,0,20,20,0 +43235,834,579,9,2,2,1 +43234,834,660,0,12,12,0 +43233,834,778,0,17,17,0 +43232,834,784,0,15,15,0 +43231,834,741,0,14,14,0 +43230,834,787,0,13,13,0 +43228,834,627,2,9,9,0 +43227,834,704,3,7,7,0 +43225,834,786,6,3,3,0 +43224,834,642,9,1,1,1 +43323,835,803,0,60,60,0 +43322,835,666,0,54,54,0 +43321,835,788,0,27,27,0 +43320,835,630,0,66,66,0 +43319,835,537,0,65,65,0 +43318,835,529,1,15,15,0 +43317,835,611,0,64,64,0 +43316,835,799,0,63,63,0 +43315,835,615,0,62,62,0 +43314,835,798,0,61,61,0 +43313,835,729,0,59,59,0 +43312,835,731,0,67,67,0 +43311,835,509,0,42,42,0 +43310,835,797,0,41,41,0 +43309,835,796,0,40,40,0 +43308,835,659,0,39,39,0 +43307,835,677,0,38,38,0 +43306,835,771,0,37,37,0 +43305,835,732,0,36,36,0 +43304,835,653,0,35,35,0 +43303,835,520,0,34,34,0 +43302,835,526,0,33,33,0 +43301,835,658,0,32,32,0 +43300,835,772,0,31,31,0 +43299,835,518,0,30,30,0 +43298,835,795,0,29,29,0 +43297,835,559,0,26,26,0 +43296,835,555,0,25,25,0 +43295,835,726,0,23,23,0 +43294,835,654,0,21,21,0 +43293,835,766,0,18,18,0 +43292,835,794,1,16,16,0 +43291,835,770,3,11,11,0 +43290,835,768,4,9,9,0 +43289,835,701,6,6,6,0 +43288,835,593,9,3,3,1 +43287,835,792,0,58,58,0 +43286,835,687,0,56,56,0 +43285,835,501,0,53,53,0 +43284,835,762,0,51,51,0 +43283,835,427,0,50,50,0 +43282,835,626,0,46,46,0 +43281,835,498,0,44,44,0 +43280,835,633,0,43,43,0 +43278,835,647,6,5,5,0 +43277,835,790,0,57,57,0 +43276,835,661,0,55,55,0 +43275,835,789,0,52,52,0 +43274,835,589,4,7,7,0 +43273,835,640,0,47,47,0 +43272,835,785,0,49,49,0 +43271,835,747,0,48,48,0 +43270,835,669,2,14,14,0 +43269,835,776,0,45,45,0 +43393,836,803,0,63,63,0 +43391,836,788,0,31,31,0 +43390,836,780,0,33,33,0 +43389,836,800,0,24,24,0 +43388,836,697,2,15,15,0 +43387,836,630,0,69,69,0 +43386,836,537,0,68,68,0 +43385,836,529,1,16,16,0 +43384,836,611,0,67,67,0 +43383,836,799,0,66,66,0 +43382,836,615,0,65,65,0 +43381,836,798,0,64,64,0 +43380,836,729,0,62,62,0 +43379,836,731,0,70,70,0 +43378,836,509,0,47,47,0 +43377,836,797,0,46,46,0 +43376,836,796,0,45,45,0 +43375,836,659,0,44,44,0 +43374,836,677,0,43,43,0 +43373,836,771,0,42,42,0 +43372,836,732,0,41,41,0 +43371,836,653,0,40,40,0 +43370,836,520,0,39,39,0 +43369,836,526,0,38,38,0 +43368,836,658,0,37,37,0 +43367,836,772,0,36,36,0 +43366,836,518,0,35,35,0 +43364,836,559,0,30,30,0 +43363,836,555,0,29,29,0 +43362,836,726,0,27,27,0 +43361,836,654,0,23,23,0 +43360,836,766,0,20,20,0 +43359,836,794,1,17,17,0 +43358,836,770,3,14,14,0 +43357,836,768,4,11,11,0 +43356,836,701,6,6,6,0 +43355,836,593,9,4,4,1 +43354,836,792,0,61,61,0 +43353,836,687,0,59,59,0 +43352,836,501,0,26,26,0 +43350,836,427,0,55,55,0 +43348,836,498,0,49,49,0 +43347,836,633,0,48,48,0 +43346,836,793,3,12,12,0 +43345,836,647,6,5,5,0 +43344,836,790,0,60,60,0 +43343,836,661,0,58,58,0 +43342,836,789,0,51,51,0 +43341,836,589,4,9,9,0 +43340,836,640,0,19,19,0 +43339,836,785,0,54,54,0 +43338,836,747,0,53,53,0 +43337,836,669,5,8,8,0 +43336,836,776,0,50,50,0 +43335,836,579,9,3,3,1 +43334,836,660,0,21,21,0 +43333,836,778,0,32,32,0 +43332,836,784,0,28,28,0 +43330,836,787,0,22,22,0 +43328,836,627,6,7,7,0 +43326,836,686,4,10,10,0 +43325,836,786,12,2,2,0 +43465,837,803,0,65,65,0 +43464,837,666,0,59,59,0 +43463,837,788,0,35,35,0 +43461,837,773,0,25,25,0 +43460,837,780,0,33,33,0 +43459,837,800,0,26,26,0 +43458,837,697,2,15,15,0 +43457,837,630,0,71,71,0 +43456,837,537,0,70,70,0 +43455,837,529,1,16,16,0 +43454,837,611,0,69,69,0 +43453,837,799,0,68,68,0 +43452,837,615,0,67,67,0 +43451,837,798,0,66,66,0 +43450,837,729,0,64,64,0 +43449,837,731,0,72,72,0 +43448,837,509,0,50,50,0 +43447,837,797,0,49,49,0 +43446,837,796,0,48,48,0 +43445,837,659,0,47,47,0 +43444,837,677,0,46,46,0 +43443,837,771,0,45,45,0 +43442,837,732,0,44,44,0 +43441,837,653,0,43,43,0 +43440,837,520,0,42,42,0 +43439,837,526,0,41,41,0 +43438,837,658,0,40,40,0 +43437,837,772,0,39,39,0 +43436,837,518,0,38,38,0 +43434,837,559,0,34,34,0 +43433,837,555,0,32,32,0 +43432,837,726,0,29,29,0 +43431,837,654,0,24,24,0 +43430,837,766,0,21,21,0 +43429,837,794,1,17,17,0 +43428,837,770,3,14,14,0 +43427,837,768,4,11,11,0 +43426,837,701,6,7,7,0 +43425,837,593,9,5,5,1 +43424,837,792,0,63,63,0 +43423,837,687,0,61,61,0 +43422,837,501,0,28,28,0 +43421,837,762,0,58,58,0 +43419,837,626,0,55,55,0 +43418,837,498,0,51,51,0 +43417,837,633,0,19,19,0 +43416,837,793,3,12,12,0 +43415,837,647,8,6,6,0 +43414,837,790,0,62,62,0 +43413,837,661,0,60,60,0 +43412,837,789,0,54,54,0 +43410,837,640,0,20,20,0 +43409,837,785,0,30,30,0 +43408,837,747,0,56,56,0 +43407,837,669,5,8,8,0 +43406,837,776,0,53,53,0 +43405,837,579,17,3,3,2 +43404,837,660,0,22,22,0 +43403,837,778,0,36,36,0 +43402,837,784,0,31,31,0 +43400,837,787,0,23,23,0 +43398,837,627,10,4,4,0 +43396,837,686,4,10,10,0 +43395,837,786,18,2,2,0 +43538,838,803,0,66,66,0 +43537,838,666,0,61,61,0 +43536,838,788,0,39,39,0 +43535,838,801,0,25,25,0 +43534,838,774,1,19,19,0 +43533,838,773,0,28,28,0 +43532,838,780,0,37,37,0 +43531,838,800,0,31,31,0 +43530,838,697,2,17,17,0 +43529,838,630,0,72,72,0 +43528,838,537,0,71,71,0 +43527,838,529,1,20,20,0 +43526,838,611,0,70,70,0 +43525,838,799,0,69,69,0 +43524,838,615,0,68,68,0 +43523,838,798,0,67,67,0 +43522,838,729,0,65,65,0 +43521,838,731,0,73,73,0 +43520,838,509,0,54,54,0 +43519,838,797,0,53,53,0 +43518,838,796,0,52,52,0 +43517,838,659,0,51,51,0 +43516,838,677,0,50,50,0 +43515,838,771,0,49,49,0 +43514,838,732,0,48,48,0 +43513,838,653,0,47,47,0 +43512,838,520,0,46,46,0 +43511,838,526,0,45,45,0 +43510,838,658,0,44,44,0 +43509,838,772,0,43,43,0 +43508,838,518,0,42,42,0 +43507,838,795,0,41,41,0 +43506,838,559,0,38,38,0 +43505,838,555,0,36,36,0 +43504,838,726,0,33,33,0 +43503,838,654,0,30,30,0 +43502,838,766,0,26,26,0 +43501,838,794,1,21,21,0 +43500,838,770,3,16,16,0 +43499,838,768,4,12,12,0 +43498,838,701,6,7,7,0 +43497,838,593,9,5,5,1 +43496,838,792,0,64,64,0 +43495,838,687,4,11,11,0 +43493,838,762,0,57,57,0 +43492,838,427,0,60,60,0 +43491,838,626,3,15,15,0 +43490,838,498,0,55,55,0 +43489,838,633,0,23,23,0 +43488,838,793,3,14,14,0 +43487,838,647,8,6,6,0 +43486,838,790,0,63,63,0 +43484,838,789,0,58,58,0 +43483,838,589,4,9,9,0 +43481,838,785,0,34,34,0 +43480,838,747,0,59,59,0 +43479,838,669,5,8,8,0 +43478,838,776,0,56,56,0 +43477,838,579,26,1,1,3 +43476,838,660,0,27,27,0 +43619,839,803,0,74,74,0 +43618,839,666,0,67,67,0 +43617,839,788,0,40,40,0 +43616,839,756,0,72,72,0 +43615,839,763,0,71,71,0 +43614,839,740,0,66,66,0 +43613,839,765,0,65,65,0 +43612,839,791,0,64,64,0 +43611,839,641,0,61,61,0 +43610,839,764,0,58,58,0 +43609,839,802,3,13,13,0 +43608,839,801,0,26,26,0 +43606,839,773,0,29,29,0 +43605,839,780,0,38,38,0 +43604,839,800,0,32,32,0 +43603,839,697,2,19,19,0 +43602,839,630,0,80,80,0 +43601,839,537,0,79,79,0 +43600,839,529,1,21,21,0 +43599,839,611,0,78,78,0 +43598,839,799,0,77,77,0 +43597,839,615,0,76,76,0 +43596,839,798,0,75,75,0 +43595,839,729,0,73,73,0 +43594,839,731,0,81,81,0 +43593,839,509,0,55,55,0 +43592,839,797,0,54,54,0 +43591,839,796,0,53,53,0 +43590,839,659,0,52,52,0 +43589,839,677,0,51,51,0 +43588,839,771,0,50,50,0 +43587,839,732,0,49,49,0 +43586,839,653,0,48,48,0 +43585,839,520,0,47,47,0 +43584,839,526,0,46,46,0 +43583,839,658,0,45,45,0 +43582,839,772,0,44,44,0 +43581,839,518,0,43,43,0 +43579,839,559,0,39,39,0 +43578,839,555,0,37,37,0 +43577,839,726,0,34,34,0 +43576,839,654,0,31,31,0 +43575,839,766,0,27,27,0 +43574,839,794,1,22,22,0 +43573,839,770,3,17,17,0 +43572,839,768,4,12,12,0 +43571,839,701,6,7,7,0 +43570,839,593,9,6,6,1 +43568,839,687,4,9,9,0 +43567,839,501,0,33,33,0 +43566,839,762,0,59,59,0 +43565,839,427,0,63,63,0 +43564,839,626,3,16,16,0 +43563,839,498,0,57,57,0 +43562,839,633,0,25,25,0 +43561,839,793,3,15,15,0 +43560,839,647,11,5,5,0 +43559,839,790,0,69,69,0 +43558,839,661,0,68,68,0 +43557,839,789,0,62,62,0 +43556,839,589,4,10,10,0 +43555,839,640,0,23,23,0 +43554,839,785,0,35,35,0 +43553,839,747,0,56,56,0 +43552,839,669,5,8,8,0 +43551,839,776,0,60,60,0 +43550,839,579,27,2,2,3 +43203,833,686,4,3,3,0 +43202,833,786,6,2,2,0 +43268,835,579,9,2,2,1 +43267,835,660,0,19,19,0 +43266,835,778,0,28,28,0 +43265,835,784,0,24,24,0 +43264,835,741,0,22,22,0 +43260,835,704,3,10,10,0 +43258,835,786,6,4,4,0 +43475,838,778,0,40,40,0 +43474,838,784,0,35,35,0 +43469,838,704,3,13,13,0 +43468,838,686,4,10,10,0 +43466,838,642,22,3,3,2 +43549,839,660,0,28,28,0 +43548,839,778,0,41,41,0 +43544,839,619,0,24,24,0 +43543,839,627,13,4,4,0 +43541,839,686,4,11,11,0 +43540,839,786,24,3,3,0 +51484,800,501,0,13,13,0 +51482,800,427,3,7,7,0 +51481,800,498,5,5,5,0 +51479,800,579,8,1,1,1 +51548,801,671,0,50,50,0 +51547,801,643,0,48,48,0 +51546,801,670,0,47,47,0 +51545,801,620,0,24,24,0 +51544,801,640,0,21,21,0 +51542,801,501,0,17,17,0 +51541,801,625,2,9,9,0 +51540,801,427,9,2,2,0 +51538,801,642,6,5,5,0 +43201,833,642,9,1,1,1 +43237,834,669,2,10,10,0 +43244,834,790,0,32,32,0 +43226,834,686,4,6,6,0 +43229,834,619,0,11,11,0 +43257,835,642,9,1,1,1 +43259,835,686,4,8,8,0 +43279,835,793,3,12,12,0 +43261,835,627,2,13,13,0 +43262,835,619,0,17,17,0 +43263,835,787,0,20,20,0 +43324,836,642,18,1,1,2 +43349,836,626,0,52,52,0 +43331,836,741,0,25,25,0 +43327,836,704,3,13,13,0 +43351,836,762,0,56,56,0 +43329,836,619,0,18,18,0 +43392,836,666,0,57,57,0 +43365,836,795,0,34,34,0 +43394,837,642,22,1,1,2 +43401,837,741,0,27,27,0 +43420,837,427,0,57,57,0 +43411,837,589,4,9,9,0 +43397,837,704,3,13,13,0 +43399,837,619,0,18,18,0 +43462,837,774,0,52,52,0 +43435,837,795,0,37,37,0 +43482,838,640,0,24,24,0 +43467,838,786,24,2,2,0 +43494,838,501,0,32,32,0 +43485,838,661,0,62,62,0 +43470,838,627,10,4,4,0 +43471,838,619,0,22,22,0 +43472,838,787,0,29,29,0 +43473,838,741,1,18,18,0 +43539,839,642,30,1,1,3 +43545,839,787,0,30,30,0 +43546,839,741,3,18,18,0 +43547,839,784,0,36,36,0 +43542,839,704,3,14,14,0 +43569,839,792,0,70,70,0 +43607,839,774,1,20,20,0 +43580,839,795,0,42,42,0 +43752,827,675,2,15,15,0 +43890,829,779,0,57,57,0 +43891,829,675,2,19,19,0 +43967,830,780,0,62,62,0 +43968,830,675,2,19,19,0 +44131,832,782,0,65,65,0 +44132,832,675,2,19,19,0 +44999,812,513,0,24,24,0 +45000,812,630,0,48,48,0 +45001,812,804,0,51,51,0 +45002,812,797,0,66,66,0 +45081,813,513,0,25,25,0 +45082,813,630,0,51,51,0 +45083,813,804,0,54,54,0 +45084,813,797,0,70,70,0 +51463,799,579,8,1,1,1 +51464,799,642,6,2,2,0 +51497,800,658,5,6,6,0 +51480,800,642,6,4,4,0 +51483,800,625,2,8,8,0 +51501,800,528,0,15,15,0 +51537,801,579,17,1,1,2 +51539,801,498,6.5,4,4,0 +51543,801,669,0,15,15,0 +51571,801,676,0,43,43,0 +51559,801,528,0,18,18,0 +51621,802,526,1.5,18,18,0 +51620,802,658,5,8,8,0 +51619,802,525,6,6,6,0 +51618,802,657,8,3,3,1 +51616,802,577,0,60,60,0 +51614,802,672,0,57,57,0 +51603,802,642,6,5,5,0 +51604,802,498,6.5,4,4,0 +51605,802,427,9,2,2,0 +51606,802,625,2,12,12,0 +51607,802,501,0,21,21,0 +51608,802,669,3,11,11,0 +51609,802,640,0,26,26,0 +51610,802,620,0,29,29,0 +51611,802,670,0,52,52,0 +51612,802,643,0,53,53,0 +51617,802,496,0,62,62,0 +51615,802,627,0,51,51,0 +51613,802,671,0,56,56,0 +51602,802,579,25,1,1,3 +51695,803,658,5,9,9,0 +51738,803,651,0,64,64,0 +51697,803,673,2,17,17,0 +51687,803,643,0,23,23,0 +51683,803,669,3,13,13,0 +51702,803,655,0,34,34,0 +51700,803,555,0,30,30,0 +51767,804,579,36.14,1,1,4 +51768,804,642,6,7,7,0 +51788,804,615,0,25,25,0 +51770,804,427,15,3,3,0 +51777,804,643,0,24,24,0 +51774,804,640,0,31,31,0 +51792,804,655,0,36,36,0 +51883,805,555,0,34,34,0 +51882,805,528,0,29,29,0 +51881,805,615,0,26,26,0 +51880,805,673,2,20,20,0 +51879,805,526,1.5,22,22,0 +51861,805,642,6,7,7,0 +51862,805,498,23.64,2,2,1 +51863,805,427,15,3,3,0 +51864,805,625,2,19,19,0 +51865,805,501,0,23,23,0 +51866,805,669,3,15,15,0 +51867,805,640,0,33,33,0 +51868,805,620,0,28,28,0 +51869,805,670,4.14,11,11,0 +51870,805,643,3,16,16,0 +51871,805,671,0,65,65,0 +51872,805,672,0,68,68,0 +51873,805,627,0,30,30,0 +51874,805,577,0,70,70,0 +51875,805,496,0,73,73,0 +51876,805,657,8,6,6,1 +51860,805,579,42,1,1,5 +51878,805,658,5,10,10,0 +51877,805,525,6,8,8,0 +51954,806,579,42,1,1,6 +52018,806,650,0,78,78,0 +51978,806,674,0,37,37,0 +51956,806,498,25.14,2,2,1 +51957,806,427,17,3,3,0 +51958,806,625,2,20,20,0 +51959,806,501,0,24,24,0 +51960,806,669,3,15,15,0 +51961,806,640,0,35,35,0 +51962,806,620,2,17,17,0 +52049,807,579,42,1,1,6 +52053,807,625,2,21,21,0 +52071,807,528,0,35,35,0 +52068,807,526,1.5,24,24,0 +52063,807,577,6,9,9,0 +52061,807,672,0,43,43,0 +52055,807,669,3,17,17,0 +52075,807,656,0,49,49,0 +46338,796,620,1.33,18,18,0 +46339,796,555,3,11,11,0 +46340,796,519,1,22,22,0 +46504,798,555,3,14,14,0 +46505,798,519,1,24,24,0 +47091,778,498,1,15,15,0 +47296,781,498,1,20,20,0 +47371,782,498,1,20,20,0 +61953,756,427,4,3,3,0 +61954,756,403,3,4,4,0 +62002,757,529,3,7,7,0 +62001,757,512,5,5,5,0 +62000,757,509,6,4,4,0 +61997,757,552,0,46,46,0 +62041,758,347,8,2,2,1 +62040,758,501,0,32,32,0 +62039,758,541,0,31,31,0 +62038,758,475,1,15,15,0 +62037,758,456,0,16,16,0 +62036,758,360,2,14,14,0 +62104,759,418,4,9,9,0 +62103,759,289,0,21,21,0 +62102,759,554,2,14,14,0 +62101,759,347,8,4,4,1 +62100,759,501,0,20,20,0 +62099,759,541,0,17,17,0 +62098,759,475,2,16,16,0 +62097,759,456,0,18,18,0 +62096,759,360,4,10,10,0 +62179,760,353,0,60,60,0 +62178,760,551,0,56,56,0 +62177,760,376,0,51,51,0 +62176,760,550,0,49,49,0 +62175,760,483,0,23,23,0 +62174,760,549,0,36,36,0 +62173,760,506,0,44,44,0 +62172,760,477,0,27,27,0 +62161,760,403,9,3,3,0 +62255,761,549,0,38,38,0 +62254,761,506,0,46,46,0 +62253,761,477,0,29,29,0 +62252,761,476,0,45,45,0 +62251,761,418,4,12,12,0 +62250,761,289,0,23,23,0 +62249,761,554,2,17,17,0 +62248,761,347,10,4,4,1 +62247,761,501,3,13,13,0 +62245,761,475,8.5,6,6,0 +62330,762,554,2,17,17,0 +62329,762,347,10,6,6,1 +62328,762,501,5,13,13,0 +62327,762,541,0,20,20,0 +62326,762,475,17.5,3,3,1 +62325,762,456,0,19,19,0 +62324,762,360,8.5,9,9,0 +62413,763,289,0,24,24,0 +62412,763,554,2,18,18,0 +62411,763,347,10,7,7,1 +62410,763,501,5,13,13,0 +62409,763,541,0,21,21,0 +62408,763,475,25.5,2,2,2 +62407,763,456,0,20,20,0 +62406,763,360,8.5,9,9,0 +62404,763,427,12,6,6,0 +62510,764,509,6,11,11,0 +62509,764,449,8,10,10,1 +62508,764,553,0,73,73,0 +62507,764,552,0,70,70,0 +62506,764,353,0,67,67,0 +62505,764,551,0,63,63,0 +62504,764,376,0,60,60,0 +49691,746,427,0,7,7,0 +63377,720,341,3,6,6,0 +63374,720,289,9,3,3,1 +63409,721,373,18,1,1,2 +63408,721,347,2,8,8,0 +63407,721,401,1,11,11,0 +63436,722,401,1,13,13,0 +63435,722,408,8,6,6,0 +63434,722,341,7,7,7,0 +63433,722,360,10,4,4,0 +63482,723,438,0,19,19,0 +63467,723,347,2,10,10,0 +63466,723,401,1,15,15,0 +63465,723,408,8,7,7,0 +63464,723,341,13,4,4,0 +63519,724,376,0,27,27,0 +63503,724,404,3,9,9,0 +63502,724,356,3,8,8,0 +63499,724,401,1,15,15,0 +63498,724,408,8,7,7,0 +63497,724,341,22,2,2,1 +63535,725,408,9,7,7,0 +63534,725,341,22,3,3,1 +63533,725,360,14,4,4,0 +63591,726,403,0,24,24,0 +63583,726,404,6,9,9,0 +63580,726,347,3,12,12,0 +63579,726,401,1,16,16,0 +63578,726,408,9,7,7,0 +63577,726,341,22,4,4,1 +63576,726,360,14,5,5,0 +63575,726,386,28,2,2,0 +63574,726,289,22,3,3,2 +63640,727,403,0,25,25,0 +63632,727,404,6,9,9,0 +63630,727,373,54,1,1,6 +63629,727,347,5,10,10,0 +63628,727,401,1,16,16,0 +63626,727,341,22,4,4,1 +63627,727,408,9,8,8,0 +63689,728,346,1,15,15,0 +63690,728,278,0,18,18,0 +63691,728,428,0,25,25,0 +63692,728,403,0,26,26,0 +63693,728,394,0,35,35,0 +63694,728,436,0,32,32,0 +63675,728,289,29,2,2,2 +63726,728,452,0,55,55,0 +63724,728,382,0,29,29,0 +63709,728,429,0,53,53,0 +63699,728,430,2,14,14,0 +63682,728,373,54,1,1,7 +63736,728,410,0,51,51,0 +63735,728,310,0,48,48,0 +63734,728,368,0,46,46,0 +63733,728,413,0,45,45,0 +63731,728,362,0,42,42,0 +63729,728,409,0,31,31,0 +63727,728,340,0,24,24,0 +63725,728,451,0,50,50,0 +63723,728,450,0,54,54,0 +63722,728,433,0,49,49,0 +63721,728,434,0,19,19,0 +63720,728,345,0,40,40,0 +63719,728,449,0,39,39,0 +63718,728,448,0,20,20,0 +63717,728,447,0,62,62,0 +63716,728,446,0,61,61,0 +63715,728,445,0,60,60,0 +63714,728,444,0,59,59,0 +63713,728,443,0,57,57,0 +63712,728,374,0,33,33,0 +63711,728,442,0,58,58,0 +63710,728,441,0,56,56,0 +63708,728,432,0,38,38,0 +63707,728,420,0,44,44,0 +63705,728,305,0,22,22,0 +63706,728,383,0,30,30,0 +63704,728,418,0,27,27,0 +63703,728,423,3,12,12,0 +63702,728,375,1,17,17,0 +63701,728,397,0,47,47,0 +63700,728,376,0,37,37,0 +63698,728,385,6,10,10,0 +63697,728,439,0,52,52,0 +63696,728,438,0,23,23,0 +63695,728,437,0,41,41,0 +63688,728,440,3,13,13,0 +52513,679,383,2,5,5,0 +52514,679,356,1,6,6,0 +52532,680,356,1,10,10,0 +52527,680,345,11,2,2,1 +52529,680,341,4,5,5,0 +52555,681,383,2,10,10,0 +52551,681,345,11,2,2,1 +52557,681,293,0,17,17,0 +52569,681,278,7,5,5,0 +52556,681,356,7,4,4,0 +52583,682,356,7,6,6,0 +52578,682,345,11,2,2,1 +52598,682,385,0,20,20,0 +52592,682,347,0,25,25,0 +52586,682,368,0,24,24,0 +52580,682,341,4,10,10,0 +52596,682,278,11,3,3,0 +52584,682,293,0,21,21,0 +52610,683,383,2,16,16,0 +52606,683,345,12,3,3,1 +52625,683,360,3,13,13,0 +52619,683,374,3,14,14,0 +52623,683,328,10,6,6,0 +52612,683,293,0,21,21,0 +52639,684,356,19,3,3,1 +52634,684,345,14,5,5,1 +52636,684,341,5,10,10,0 +52671,685,293,0,25,25,0 +52665,685,345,14,5,5,1 +52669,685,383,2,16,16,0 +52667,685,341,8,8,8,0 +52673,685,368,0,28,28,0 +52707,686,356,34,2,2,2 +52721,686,360,3,13,13,0 +52702,686,345,14,5,5,1 +52706,686,383,2,16,16,0 +52704,686,341,8,9,9,0 +52718,686,289,9,8,8,0 +52709,686,384,0,29,29,0 +52748,687,356,40,2,2,2 +52749,687,293,0,28,28,0 +52747,687,383,2,16,16,0 +52743,687,345,14,6,6,1 +52745,687,341,17,5,5,1 +52759,687,289,9,9,9,0 +52751,687,368,0,31,31,0 +52791,688,293,0,29,29,0 +52790,688,356,42,2,2,2 +52785,688,345,14,7,7,1 +52787,688,341,17,5,5,1 +52788,688,304,47,1,1,2 +52793,688,368,0,32,32,0 +52833,689,356,46,2,2,2 +52832,689,383,2,17,17,0 +52828,689,345,15,6,6,1 +52830,689,341,20,4,4,1 +52835,689,384,0,32,32,0 +62095,759,403,9,3,3,0 +61955,756,360,2,5,5,0 +61999,757,449,8,2,2,1 +62035,758,403,3,9,9,0 +62034,758,427,4,7,7,0 +62171,760,476,0,42,42,0 +62486,764,479,27,2,2,2 +62487,764,427,19,5,5,0 +62488,764,403,20,4,4,0 +61998,757,553,0,48,48,0 +61996,757,353,0,44,44,0 +62033,758,479,6,4,4,0 +62092,759,356,19,1,1,1 +62162,760,360,8.5,5,5,0 +62246,761,541,0,20,20,0 +62244,761,456,0,19,19,0 +62240,761,479,23,2,2,2 +62320,762,356,27,1,1,2 +62321,762,479,23,2,2,2 +62405,763,403,20,4,4,0 +62503,764,550,0,58,58,0 +62502,764,483,0,29,29,0 +62489,764,360,16.5,6,6,1 +61995,757,551,0,42,42,0 +62053,758,353,0,47,47,0 +62032,758,356,15,1,1,1 +62160,760,427,6,9,9,0 +62243,761,360,8.5,7,7,0 +62241,761,427,9,5,5,0 +62323,762,403,13,4,4,0 +62322,762,427,12,5,5,0 +62402,763,356,31,1,1,2 +61952,756,479,6,2,2,0 +61951,756,356,9,1,1,1 +62119,759,529,3,12,12,0 +62224,760,502,0,25,25,0 +62193,760,514,0,35,35,0 +62195,760,556,0,38,38,0 +62451,763,522,0,71,71,0 +62483,763,432,0,34,34,0 +62454,763,564,0,77,77,0 +62438,763,538,0,42,42,0 +62403,763,479,23,3,3,2 +62485,764,356,31,1,1,2 +63376,720,360,10,1,1,0 +63375,720,386,9,4,4,0 +63405,721,341,7,6,6,0 +63404,721,360,10,4,4,0 +63432,722,386,11,3,3,0 +63463,723,360,10,6,6,0 +63462,723,386,14,2,2,0 +63496,724,360,10,6,6,0 +63494,724,289,13,4,4,1 +63532,725,386,24,2,2,0 +63625,727,360,14,5,5,0 +63623,727,289,25,3,3,2 +63687,728,364,19,5,5,0 +63686,728,427,0,21,21,0 +63684,728,404,6,9,9,0 +63685,728,435,0,36,36,0 +63683,728,356,14,7,7,0 +63681,728,347,6,11,11,0 +63680,728,401,1,16,16,0 +63678,728,341,22,4,4,1 +63679,728,408,9,8,8,0 +63677,728,360,17,6,6,0 +63676,728,386,29,3,3,0 +63396,720,439,0,28,28,0 +63411,721,404,3,7,7,0 +63410,721,356,0,16,16,0 +63441,722,435,0,20,20,0 +63431,722,289,9,5,5,1 +63485,723,430,1,14,14,0 +63461,723,289,13,3,3,1 +63495,724,386,18,3,3,0 +63544,725,440,3,12,12,0 +63608,726,429,0,41,41,0 +63594,726,437,0,34,34,0 +63596,726,439,0,40,40,0 +63651,727,423,3,12,12,0 +63642,727,436,0,29,29,0 +63624,727,386,29,2,2,0 +63728,728,411,0,28,28,0 +63732,728,407,0,43,43,0 +63730,728,412,0,34,34,0 +63737,337,4,25,1,1,1 +63738,337,13,18,2,2,0 +63739,337,1,15,3,3,0 +63740,337,20,12,4,4,0 +63741,337,3,10,5,5,0 +63742,337,30,8,6,6,0 +63743,337,18,6,7,7,0 +63744,337,17,4,8,8,0 +63745,337,24,2,9,9,0 +63746,337,22,1,10,10,0 +63747,337,9,0,11,11,0 +63748,337,16,0,12,12,0 +63749,337,153,0,13,13,0 +63750,337,807,0,14,14,0 +63751,337,5,0,15,15,0 +63752,337,67,0,16,16,0 +63753,337,15,0,17,17,0 +63754,337,37,0,18,18,0 +63755,337,811,0,19,19,0 +63756,337,10,0,20,20,0 +63757,337,808,0,21,21,0 +63758,337,155,0,22,22,0 +63759,337,810,0,23,23,0 +63760,337,812,0,24,24,0 +63761,338,4,37,1,1,1 +63762,338,13,33,2,2,0 +63763,338,1,23,4,4,0 +63764,338,20,12,7,7,0 +63765,338,3,20,5,5,0 +63766,338,30,9,8,8,0 +63767,338,18,31,3,3,1 +63768,338,17,6,10,10,0 +63769,338,24,8,9,9,0 +63770,338,22,5,11,11,0 +63771,338,9,18,6,6,0 +63772,338,16,0,13,13,0 +63773,338,153,0,12,12,0 +63774,338,807,0,17,17,0 +63775,338,5,0,15,15,0 +63776,338,67,0,18,18,0 +63777,338,15,0,19,19,0 +63778,338,37,0,14,14,0 +63779,338,811,0,20,20,0 +63780,338,10,0,21,21,0 +63781,338,808,0,22,22,0 +63782,338,155,0,23,23,0 +63783,338,810,0,24,24,0 +63784,338,812,0,16,16,0 +63785,339,4,37,2,2,1 +63786,339,13,39,1,1,0 +63787,339,1,31,6,6,0 +63788,339,20,37,3,3,1 +63789,339,3,35,5,5,0 +63790,339,30,9,10,10,0 +63791,339,18,35,4,4,1 +63792,339,17,24,8,8,0 +63793,339,24,8,11,11,0 +63794,339,22,5,12,12,0 +63795,339,9,30,7,7,0 +63796,339,16,10,9,9,0 +63797,339,153,2,13,13,0 +63798,339,807,1,14,14,0 +63799,339,5,0,17,17,0 +63800,339,67,0,15,15,0 +63801,339,15,0,21,21,0 +63802,339,37,0,16,16,0 +63803,339,811,0,20,20,0 +63804,339,10,0,22,22,0 +63805,339,808,0,23,23,0 +63806,339,155,0,24,24,0 +63807,339,810,0,19,19,0 +63808,339,812,0,18,18,0 +63809,340,4,49,3,3,1 +63810,340,13,41,6,6,0 +63811,340,1,49,4,4,0 +63812,340,20,45,5,5,1 +63813,340,3,50,2,2,0 +63814,340,30,10,10,10,0 +63815,340,18,60,1,1,2 +63816,340,17,28,8,8,0 +63817,340,24,8,11,11,0 +63818,340,22,5,13,13,0 +63819,340,9,40,7,7,0 +63820,340,16,10,9,9,0 +63821,340,153,2,14,14,0 +63822,340,807,1,15,15,0 +63823,340,5,0,18,18,0 +63824,340,67,0,16,16,0 +63825,340,15,0,22,22,0 +63826,340,37,0,17,17,0 +63827,340,811,0,21,21,0 +63828,340,10,0,23,23,0 +63829,340,808,6,12,12,0 +63830,340,155,0,24,24,0 +63831,340,810,0,20,20,0 +63832,340,812,0,19,19,0 +63833,341,4,67,2,2,1 +63834,341,13,49,7,7,0 +63835,341,1,49,6,6,0 +63836,341,20,60,3,3,1 +63837,341,3,50,5,5,0 +63838,341,30,22,9,9,0 +63839,341,18,70,1,1,2 +63840,341,17,53,4,4,1 +63841,341,24,8,11,11,0 +63842,341,22,7,12,12,0 +63843,341,9,44,8,8,0 +63844,341,16,16,10,10,0 +63845,341,153,3,14,14,0 +63846,341,807,1,15,15,0 +63847,341,5,0,19,19,0 +63848,341,67,0,16,16,0 +63849,341,15,0,23,23,0 +63850,341,37,0,17,17,0 +63851,341,811,0,22,22,0 +63852,341,10,0,24,24,0 +63853,341,808,6,13,13,0 +63854,341,155,0,18,18,0 +63855,341,810,0,21,21,0 +63856,341,812,0,20,20,0 +63905,343,4,79,4,4,1 +63904,342,812,0,20,20,0 +63903,342,810,0,21,21,0 +63902,342,155,0,18,18,0 +63900,342,10,0,24,24,0 +63899,342,811,0,23,23,0 +63897,342,15,0,22,22,0 +63896,342,67,1,15,15,0 +63894,342,807,1,16,16,0 +63893,342,153,3,14,14,0 +63889,342,24,10,11,11,0 +63888,342,17,78,1,1,2 +63887,342,18,70,4,4,2 +63882,342,13,61,5,5,0 +63883,342,1,59,7,7,0 +63884,342,20,78,2,2,1 +63885,342,3,56,8,8,0 +63886,342,30,22,9,9,0 +63898,342,37,0,17,17,0 +63901,342,808,6,13,13,0 +63895,342,5,0,19,19,0 +63892,342,16,20,10,10,0 +63881,342,4,75,3,3,1 +63891,342,9,59,6,6,0 +63890,342,22,7,12,12,0 +63906,343,13,67,7,7,0 +63907,343,1,84,3,3,1 +63908,343,20,78,5,5,1 +63909,343,3,66,8,8,0 +63910,343,30,34,9,9,0 +63911,343,18,88,2,2,2 +63912,343,17,93,1,1,2 +63913,343,24,10,11,11,0 +63914,343,22,7,12,12,0 +63915,343,9,67,6,6,0 +63916,343,16,22,10,10,0 +63917,343,153,3,14,14,0 +63918,343,807,1,17,17,0 +63919,343,5,0,19,19,0 +63920,343,67,1,15,15,0 +63921,343,15,0,22,22,0 +63922,343,37,0,18,18,0 +63923,343,811,0,23,23,0 +63924,343,10,0,24,24,0 +63925,343,808,6,13,13,0 +63926,343,155,1,16,16,0 +63927,343,810,0,21,21,0 +63928,343,812,0,20,20,0 +63929,344,4,94,4,4,1 +63930,344,13,67,8,8,0 +63931,344,1,109,1,1,2 +63932,344,20,90,5,5,1 +63933,344,3,74,6,6,0 +63934,344,30,34,9,9,0 +63935,344,18,106,2,2,2 +63936,344,17,103,3,3,2 +63937,344,24,12,11,11,0 +63938,344,22,7,12,12,0 +63939,344,9,73,7,7,0 +63940,344,16,23,10,10,0 +63941,344,153,3,15,15,0 +63942,344,807,1,17,17,0 +63943,344,5,0,19,19,0 +63944,344,67,5,14,14,0 +63945,344,15,0,22,22,0 +63946,344,37,0,18,18,0 +63947,344,811,0,23,23,0 +63948,344,10,0,24,24,0 +63949,344,808,6,13,13,0 +63950,344,155,1,16,16,0 +63951,344,810,0,21,21,0 +63952,344,812,0,20,20,0 +63953,345,4,98,5,5,1 +63954,345,13,67,8,8,0 +63955,345,1,127,1,1,2 +63956,345,20,115,3,3,2 +63957,345,3,75,7,7,0 +63958,345,30,34,9,9,0 +63959,345,18,121,2,2,2 +63960,345,17,103,4,4,2 +63961,345,24,12,12,12,0 +63962,345,22,19,11,11,0 +63963,345,9,83,6,6,0 +63964,345,16,31,10,10,0 +63965,345,153,3,16,16,0 +63966,345,807,1,17,17,0 +63967,345,5,0,19,19,0 +63968,345,67,7,14,14,0 +63969,345,15,0,22,22,0 +63970,345,37,0,18,18,0 +63971,345,811,0,23,23,0 +63972,345,10,0,24,24,0 +63973,345,808,6,15,15,0 +63974,345,155,7,13,13,0 +63975,345,810,0,21,21,0 +63976,345,812,0,20,20,0 +63977,346,4,98,5,5,1 +63978,346,13,67,8,8,0 +63979,346,1,145,1,1,2 +63980,346,20,121,4,4,2 +63981,346,3,90,6,6,0 +63982,346,30,36,9,9,0 +63983,346,18,133,2,2,2 +63984,346,17,128,3,3,3 +63985,346,24,12,13,13,0 +63986,346,22,29,11,11,0 +63987,346,9,83,7,7,0 +63988,346,16,35,10,10,0 +63989,346,153,3,16,16,0 +63990,346,807,2,17,17,0 +63991,346,5,0,19,19,0 +63992,346,67,7,14,14,0 +63993,346,15,0,22,22,0 +63994,346,37,0,18,18,0 +63995,346,811,0,23,23,0 +63996,346,10,0,24,24,0 +63997,346,808,6,15,15,0 +63998,346,155,15,12,12,0 +63999,346,810,0,21,21,0 +64000,346,812,0,20,20,0 +64001,346,29,0,25,25,0 +64002,347,4,123,5,5,2 +64003,347,13,85,8,8,0 +64004,347,1,157,1,1,2 +64005,347,20,136,4,4,2 +64006,347,3,94,6,6,0 +64007,347,30,38,9,9,0 +64008,347,18,143,2,2,2 +64009,347,17,136,3,3,3 +64010,347,24,12,13,13,0 +64011,347,22,29,11,11,0 +64012,347,9,89,7,7,0 +64013,347,16,35,10,10,0 +64014,347,153,3,16,16,0 +64015,347,807,2,17,17,0 +64016,347,5,0,19,19,0 +64017,347,67,7,15,15,0 +64018,347,15,0,22,22,0 +64019,347,37,0,18,18,0 +64020,347,811,0,23,23,0 +64021,347,10,0,24,24,0 +64022,347,808,7,14,14,0 +64023,347,155,15,12,12,0 +64024,347,810,0,21,21,0 +64025,347,812,0,20,20,0 +64026,347,29,0,25,25,0 +64027,348,4,141,5,5,2 +64028,348,13,97,6,6,0 +64029,348,1,157,2,2,2 +64030,348,20,151,3,3,2 +64031,348,3,94,7,7,0 +64032,348,30,38,9,9,0 +64033,348,18,147,4,4,2 +64034,348,17,161,1,1,4 +64035,348,24,12,14,14,0 +64036,348,22,30,11,11,0 +64037,348,9,89,8,8,0 +64038,348,16,35,10,10,0 +64039,348,153,3,18,18,0 +64040,348,807,10,15,15,0 +64041,348,5,0,19,19,0 +64042,348,67,7,16,16,0 +64043,348,15,0,22,22,0 +64044,348,37,6,17,17,0 +64045,348,811,0,23,23,0 +64046,348,10,0,24,24,0 +64047,348,808,17,12,12,0 +64048,348,155,17,13,13,0 +64049,348,810,0,21,21,0 +64050,348,812,0,20,20,0 +64051,348,29,0,25,25,0 +64052,349,4,141,5,5,2 +64053,349,13,109,6,6,0 +64054,349,1,182,1,1,3 +64055,349,20,151,3,3,2 +64056,349,3,102,8,8,0 +64057,349,30,44,10,10,0 +64058,349,18,147,4,4,2 +64059,349,17,179,2,2,4 +64060,349,24,13,14,14,0 +64061,349,22,30,11,11,0 +64062,349,9,104,7,7,0 +64063,349,16,45,9,9,0 +64064,349,153,3,18,18,0 +64065,349,807,10,15,15,0 +64066,349,5,0,19,19,0 +64067,349,67,7,16,16,0 +64068,349,15,0,22,22,0 +64069,349,37,6,17,17,0 +64070,349,811,0,23,23,0 +64071,349,10,0,24,24,0 +64072,349,808,19,13,13,0 +64073,349,155,21,12,12,0 +64074,349,810,0,21,21,0 +64075,349,812,0,20,20,0 +64076,349,29,0,25,25,0 +64077,350,4,166,3,3,3 +64078,350,13,124,6,6,0 +64079,350,1,182,2,2,3 +64080,350,20,163,5,5,2 +64081,350,3,112,7,7,0 +64082,350,30,46,9,9,0 +64083,350,18,165,4,4,2 +64084,350,17,187,1,1,4 +64085,350,24,13,15,15,0 +64086,350,22,31,11,11,0 +64087,350,9,108,8,8,0 +64088,350,16,45,10,10,0 +64089,350,153,3,18,18,0 +64090,350,807,16,14,14,0 +64091,350,5,0,19,19,0 +64092,350,67,7,16,16,0 +64093,350,15,0,22,22,0 +64094,350,37,6,17,17,0 +64095,350,811,0,23,23,0 +64096,350,10,0,24,24,0 +64097,350,808,19,13,13,0 +64098,350,155,21,12,12,0 +64099,350,810,0,21,21,0 +64100,350,812,0,20,20,0 +64101,350,29,0,25,25,0 +64182,351,32,0,27,27,0 +64180,351,29,0,25,25,0 +64179,351,812,0,20,20,0 +64178,351,810,0,21,21,0 +64177,351,155,21,12,12,0 +64175,351,10,0,24,24,0 +64173,351,37,6,17,17,0 +64172,351,15,0,22,22,0 +64170,351,5,0,19,19,0 +64169,351,807,17,14,14,0 +64168,351,153,3,18,18,0 +64164,351,24,13,15,15,0 +64162,351,18,177,5,5,2 +64160,351,3,122,7,7,0 +64181,351,2,0,26,26,0 +64176,351,808,19,13,13,0 +64174,351,811,0,23,23,0 +64161,351,30,46,10,10,0 +64163,351,17,202,1,1,4 +64167,351,16,47,9,9,0 +64171,351,67,7,16,16,0 +64159,351,20,181,4,4,2 +64166,351,9,114,8,8,0 +64165,351,22,39,11,11,0 +64158,351,1,182,3,3,3 +64157,351,13,128,6,6,0 +64156,351,4,191,2,2,4 +64208,352,2,4,18,18,0 +64207,352,29,0,26,26,0 +64206,352,812,0,22,22,0 +64205,352,810,0,23,23,0 +64203,352,808,19,13,13,0 +64201,352,811,0,25,25,0 +64200,352,37,6,17,17,0 +64198,352,67,8,16,16,0 +64194,352,16,47,10,10,0 +64193,352,9,114,8,8,0 +64191,352,24,13,15,15,0 +64189,352,18,189,5,5,2 +64185,352,1,192,4,4,3 +64209,352,32,0,27,27,0 +64204,352,155,27,12,12,0 +64202,352,10,0,24,24,0 +64190,352,17,220,1,1,4 +64192,352,22,41,11,11,0 +64197,352,5,0,20,20,0 +64195,352,153,3,19,19,0 +64184,352,13,128,6,6,0 +64199,352,15,0,21,21,0 +64196,352,807,17,14,14,0 +64187,352,3,122,7,7,0 +64188,352,30,54,9,9,0 +64186,352,20,206,3,3,3 +64183,352,4,206,2,2,4 +64262,353,2,6,18,18,0 +64260,353,812,0,22,22,0 +64258,353,155,31,12,12,0 +64256,353,10,0,25,25,0 +64253,353,15,0,21,21,0 +64252,353,67,8,16,16,0 +64247,353,9,124,7,7,0 +64246,353,22,47,10,10,0 +64244,353,17,220,2,2,4 +64243,353,18,189,5,5,2 +64242,353,30,66,9,9,0 +64239,353,1,210,3,3,3 +64259,353,810,0,24,24,0 +64261,353,29,0,26,26,0 +64255,353,811,0,23,23,0 +64263,353,32,0,27,27,0 +64257,353,808,19,14,14,0 +64254,353,37,6,17,17,0 +64245,353,24,21,13,13,0 +64250,353,807,18,15,15,0 +64248,353,16,47,11,11,0 +64238,353,13,143,6,6,0 +64251,353,5,0,20,20,0 +64249,353,153,3,19,19,0 +64241,353,3,122,8,8,0 +64240,353,20,206,4,4,3 +64237,353,4,231,1,1,5 +64264,354,4,246,1,1,5 +64265,354,13,143,6,6,0 +64266,354,1,222,4,4,3 +64267,354,20,231,3,3,4 +64268,354,3,130,7,7,0 +64269,354,30,72,9,9,0 +64270,354,18,199,5,5,2 +64271,354,17,238,2,2,4 +64272,354,24,21,14,14,0 +64273,354,22,47,10,10,0 +64274,354,9,126,8,8,0 +64275,354,16,47,11,11,0 +64276,354,153,3,19,19,0 +64277,354,807,22,13,13,0 +64278,354,5,0,20,20,0 +64279,354,67,8,16,16,0 +64280,354,15,0,21,21,0 +64281,354,37,6,17,17,0 +64282,354,811,0,23,23,0 +64283,354,10,0,25,25,0 +64284,354,808,19,15,15,0 +64285,354,155,32,12,12,0 +64286,354,810,0,24,24,0 +64287,354,812,0,22,22,0 +64288,354,29,0,26,26,0 +64289,354,2,6,18,18,0 +64290,354,32,0,27,27,0 +64291,355,4,252,2,2,5 +64292,355,13,144,6,6,0 +64293,355,1,240,4,4,3 +64294,355,20,256,1,1,5 +64295,355,3,142,7,7,0 +64296,355,30,72,9,9,0 +64297,355,18,214,5,5,2 +64298,355,17,242,3,3,4 +64299,355,24,21,15,15,0 +64300,355,22,47,10,10,0 +64301,355,9,136,8,8,0 +64302,355,16,47,11,11,0 +64303,355,153,5,19,19,0 +64304,355,807,22,14,14,0 +64305,355,5,0,20,20,0 +64306,355,67,8,16,16,0 +64307,355,15,0,21,21,0 +64308,355,37,6,17,17,0 +64309,355,811,0,23,23,0 +64310,355,10,0,25,25,0 +64311,355,808,27,13,13,0 +64312,355,155,32,12,12,0 +64313,355,810,0,24,24,0 +64314,355,812,0,22,22,0 +64315,355,29,0,26,26,0 +64316,355,2,6,18,18,0 +64317,355,32,0,27,27,0 +64339,75,37,4,14,14,0 +64340,75,25,6,12,12,0 +64341,75,24,1,17,17,0 +64387,842,4,20,5,5,0 +64386,842,808,15,8,8,0 +64385,842,1,22,3,3,0 +64709,841,813,0,20,20,0 +64708,841,30,0,19,19,0 +64707,841,5,0,18,18,0 +64706,841,3,0,17,17,0 +64705,841,22,0,16,16,0 +64384,842,20,50,1,1,2 +64704,841,10,0,15,15,0 +64703,841,816,0,14,14,0 +64702,841,15,0,13,13,0 +64701,841,2,0,12,12,0 +64700,841,153,0,11,11,0 +64699,841,814,1,10,10,0 +64698,841,16,2,9,9,0 +64697,841,67,4,8,8,0 +64696,841,13,6,7,7,0 +64695,841,18,8,6,6,0 +64694,841,17,10,5,5,0 +64693,841,4,12,4,4,0 +64692,841,808,15,3,3,0 +64691,841,1,18,2,2,0 +64690,841,20,25,1,1,1 +64388,842,17,22,4,4,0 +64389,842,18,26,2,2,0 +64390,842,13,16,6,6,0 +64391,842,67,4,10,10,0 +64392,842,16,2,11,11,0 +64393,842,814,2,13,13,0 +64394,842,153,0,14,14,0 +64395,842,2,15,7,7,0 +64396,842,15,0,16,16,0 +64397,842,816,0,17,17,0 +64398,842,10,0,19,19,0 +64399,842,22,0,21,21,0 +64400,842,3,0,15,15,0 +64401,842,5,0,18,18,0 +64402,842,30,2,12,12,0 +64403,842,813,0,23,23,0 +64404,842,155,6,9,9,0 +64405,842,24,0,22,22,0 +64406,842,815,0,20,20,0 +64407,842,39,0,24,24,0 +64408,843,20,68,1,1,2 +64409,843,1,47,2,2,1 +64410,843,808,17,7,7,0 +64411,843,4,26,5,5,0 +64412,843,17,37,4,4,0 +64413,843,18,38,3,3,0 +64414,843,13,24,6,6,0 +64415,843,67,4,12,12,0 +64416,843,16,2,13,13,0 +64417,843,814,2,14,14,0 +64418,843,153,0,15,15,0 +64419,843,2,15,8,8,0 +64420,843,15,0,16,16,0 +64421,843,816,0,18,18,0 +64422,843,10,0,20,20,0 +64423,843,22,0,17,17,0 +64424,843,3,10,9,9,0 +64425,843,5,0,19,19,0 +64426,843,30,6,11,11,0 +64427,843,813,0,22,22,0 +64428,843,155,7,10,10,0 +64429,843,24,0,23,23,0 +64430,843,815,0,21,21,0 +64431,843,39,0,24,24,0 +64432,844,20,93,1,1,3 +64433,844,1,59,2,2,1 +64434,844,808,21,8,8,0 +64435,844,4,41,5,5,0 +64436,844,17,55,3,3,0 +64437,844,18,46,4,4,0 +64438,844,13,24,6,6,0 +64439,844,67,6,12,12,0 +64440,844,16,2,13,13,0 +64441,844,814,2,14,14,0 +64442,844,153,0,15,15,0 +64443,844,2,21,7,7,0 +64444,844,15,0,17,17,0 +64445,844,816,0,19,19,0 +64446,844,10,0,21,21,0 +64447,844,22,0,16,16,0 +64448,844,3,20,9,9,0 +64449,844,5,0,20,20,0 +64450,844,30,6,11,11,0 +64451,844,813,0,22,22,0 +64452,844,155,8,10,10,0 +64453,844,24,0,24,24,0 +64454,844,815,0,18,18,0 +64455,844,39,0,23,23,0 +64456,845,20,118,1,1,4 +64457,845,1,77,2,2,1 +64458,845,808,21,9,9,0 +64459,845,4,51,5,5,0 +64460,845,17,67,3,3,0 +64461,845,18,61,4,4,0 +64462,845,13,24,8,8,0 +64463,845,67,6,12,12,0 +64464,845,16,2,13,13,0 +64465,845,814,2,15,15,0 +64466,845,153,0,16,16,0 +64467,845,2,25,7,7,0 +64468,845,15,0,18,18,0 +64469,845,816,0,19,19,0 +64470,845,10,0,22,22,0 +64471,845,22,0,17,17,0 +64472,845,3,26,6,6,0 +64473,845,5,0,20,20,0 +64474,845,30,14,10,10,0 +64475,845,813,0,21,21,0 +64476,845,155,9,11,11,0 +64477,845,24,0,24,24,0 +64478,845,815,2,14,14,0 +64479,845,39,0,23,23,0 +64480,846,20,143,1,1,5 +64481,846,1,85,2,2,1 +64482,846,808,21,9,9,0 +64483,846,4,69,5,5,0 +64484,846,17,79,3,3,0 +64485,846,18,76,4,4,0 +64486,846,13,24,8,8,0 +64487,846,67,7,13,13,0 +64488,846,16,8,12,12,0 +64489,846,814,2,16,16,0 +64490,846,153,0,17,17,0 +64491,846,2,29,6,6,0 +64492,846,15,0,18,18,0 +64493,846,816,0,20,20,0 +64494,846,10,0,22,22,0 +64495,846,22,2,14,14,0 +64496,846,3,26,7,7,0 +64497,846,5,0,19,19,0 +64498,846,30,14,11,11,0 +64499,846,813,0,21,21,0 +64500,846,155,19,10,10,0 +64501,846,24,0,23,23,0 +64502,846,815,2,15,15,0 +64503,846,39,0,24,24,0 +64504,847,20,161,1,1,5 +64505,847,1,85,4,4,1 +64506,847,808,31,7,7,0 +64507,847,4,69,5,5,0 +64508,847,17,94,3,3,0 +64509,847,18,101,2,2,1 +64510,847,13,32,6,6,0 +64511,847,67,8,13,13,0 +64512,847,16,8,12,12,0 +64513,847,814,2,17,17,0 +64514,847,153,4,14,14,0 +64515,847,2,29,8,8,0 +64516,847,15,0,19,19,0 +64517,847,816,0,21,21,0 +64518,847,10,0,25,25,0 +64519,847,22,4,15,15,0 +64520,847,3,26,10,10,0 +64521,847,5,0,22,22,0 +64522,847,30,26,9,9,0 +64523,847,813,0,24,24,0 +64524,847,155,25,11,11,0 +64525,847,24,0,20,20,0 +64526,847,815,2,16,16,0 +64527,847,39,0,23,23,0 +64528,847,37,0,18,18,0 +64529,848,20,186,1,1,6 +64530,848,1,97,4,4,1 +64531,848,808,31,8,8,0 +64532,848,4,87,5,5,0 +64533,848,17,109,3,3,0 +64534,848,18,109,2,2,1 +64535,848,13,42,6,6,0 +64536,848,67,8,14,14,0 +64537,848,16,10,12,12,0 +64538,848,814,2,17,17,0 +64539,848,153,8,13,13,0 +64540,848,2,30,9,9,0 +64541,848,15,0,19,19,0 +64542,848,816,0,21,21,0 +64543,848,10,0,25,25,0 +64544,848,22,4,15,15,0 +64545,848,3,32,7,7,0 +64546,848,5,0,22,22,0 +64547,848,30,26,10,10,0 +64548,848,813,0,24,24,0 +64549,848,155,25,11,11,0 +64550,848,24,0,20,20,0 +64551,848,815,2,16,16,0 +64552,848,39,0,23,23,0 +64553,848,37,0,18,18,0 +64554,849,20,204,1,1,6 +64555,849,1,109,4,4,1 +64556,849,808,31,9,9,0 +64557,849,4,112,3,3,1 +64558,849,17,124,2,2,0 +64559,849,18,109,5,5,1 +64560,849,13,52,6,6,0 +64561,849,67,8,15,15,0 +64562,849,16,10,12,12,0 +64563,849,814,2,17,17,0 +64564,849,153,9,13,13,0 +64565,849,2,34,8,8,0 +64566,849,15,0,19,19,0 +64567,849,816,0,21,21,0 +64568,849,10,0,25,25,0 +64569,849,22,4,16,16,0 +64570,849,3,40,7,7,0 +64571,849,5,0,22,22,0 +64572,849,30,28,10,10,0 +64573,849,813,0,23,23,0 +64574,849,155,25,11,11,0 +64575,849,24,0,20,20,0 +64576,849,815,8,14,14,0 +64577,849,39,0,24,24,0 +64578,849,37,0,18,18,0 +64579,849,817,0,26,26,0 +64580,850,20,216,1,1,6 +64581,850,1,134,3,3,2 +64582,850,808,32,9,9,0 +64583,850,4,130,4,4,1 +64584,850,17,139,2,2,0 +64585,850,18,109,5,5,1 +64586,850,13,62,6,6,0 +64587,850,67,8,15,15,0 +64588,850,16,18,12,12,0 +64589,850,814,2,17,17,0 +64590,850,153,9,13,13,0 +64591,850,2,34,8,8,0 +64592,850,15,0,19,19,0 +64593,850,816,0,22,22,0 +64594,850,10,0,24,24,0 +64595,850,22,4,16,16,0 +64596,850,3,46,7,7,0 +64597,850,5,0,23,23,0 +64598,850,30,32,10,10,0 +64599,850,813,0,21,21,0 +64600,850,155,27,11,11,0 +64601,850,24,0,20,20,0 +64602,850,815,8,14,14,0 +64603,850,39,0,25,25,0 +64604,850,37,0,18,18,0 +64605,850,817,0,26,26,0 +64606,850,812,0,27,27,0 +64607,851,20,234,1,1,6 +64608,851,1,146,3,3,2 +64609,851,808,32,9,9,0 +64610,851,4,145,4,4,1 +64611,851,17,149,2,2,0 +64612,851,18,134,5,5,2 +64613,851,13,70,6,6,0 +64614,851,67,12,13,13,0 +64615,851,16,18,12,12,0 +64616,851,814,8,16,16,0 +64617,851,153,10,14,14,0 +64618,851,2,34,8,8,0 +64619,851,15,0,19,19,0 +64620,851,816,0,22,22,0 +64621,851,10,0,24,24,0 +64622,851,22,4,17,17,0 +64623,851,3,48,7,7,0 +64624,851,5,0,23,23,0 +64625,851,30,32,10,10,0 +64626,851,813,0,21,21,0 +64627,851,155,27,11,11,0 +64628,851,24,0,20,20,0 +64629,851,815,8,15,15,0 +64630,851,39,0,25,25,0 +64631,851,37,0,18,18,0 +64632,851,817,0,26,26,0 +64633,851,812,0,27,27,0 +64689,852,811,0,22,22,0 +64687,852,817,0,27,27,0 +64685,852,39,0,26,26,0 +64684,852,815,8,15,15,0 +64683,852,24,0,21,21,0 +64680,852,30,42,8,8,0 +64679,852,5,0,24,24,0 +64676,852,10,0,25,25,0 +64675,852,816,0,23,23,0 +64672,852,153,10,14,14,0 +64669,852,67,12,13,13,0 +64668,852,13,74,6,6,0 +64667,852,18,149,4,4,2 +64663,852,1,146,5,5,2 +64688,852,812,0,28,28,0 +64686,852,37,0,19,19,0 +64677,852,22,4,17,17,0 +64674,852,15,0,20,20,0 +64681,852,813,1,18,18,0 +64671,852,814,8,16,16,0 +64682,852,155,27,11,11,0 +64678,852,3,56,7,7,0 +64673,852,2,34,10,10,0 +64666,852,17,167,2,2,0 +64670,852,16,24,12,12,0 +64662,852,20,259,1,1,7 +64665,852,4,157,3,3,1 +64664,852,808,34,9,9,0 +64710,853,20,284,1,1,8 +64711,853,1,158,5,5,2 +64712,853,808,34,9,9,0 +64713,853,4,172,2,2,1 +64714,853,17,167,4,4,0 +64715,853,18,167,3,3,2 +64716,853,13,82,6,6,0 +64717,853,67,13,14,14,0 +64718,853,16,24,12,12,0 +64719,853,814,12,15,15,0 +64720,853,153,16,13,13,0 +64721,853,2,34,10,10,0 +64722,853,15,0,21,21,0 +64723,853,816,0,24,24,0 +64724,853,10,0,25,25,0 +64725,853,22,4,17,17,0 +64726,853,3,56,7,7,0 +64727,853,5,0,22,22,0 +64728,853,30,52,8,8,0 +64729,853,813,1,19,19,0 +64730,853,155,27,11,11,0 +64731,853,24,0,23,23,0 +64732,853,815,8,16,16,0 +64733,853,39,0,26,26,0 +64734,853,37,0,20,20,0 +64735,853,817,0,27,27,0 +64736,853,812,0,28,28,0 +64737,853,811,2,18,18,0 +64738,854,20,309,1,1,9 +64739,854,1,168,5,5,2 +64740,854,808,34,9,9,0 +64741,854,4,184,3,3,1 +64742,854,17,182,4,4,0 +64743,854,18,185,2,2,2 +64744,854,13,84,6,6,0 +64745,854,67,13,15,15,0 +64746,854,16,28,11,11,0 +64747,854,814,20,13,13,0 +64748,854,153,16,14,14,0 +64749,854,2,34,10,10,0 +64750,854,15,0,21,21,0 +64751,854,816,0,24,24,0 +64752,854,10,0,25,25,0 +64753,854,22,4,17,17,0 +64754,854,3,62,7,7,0 +64755,854,5,0,22,22,0 +64756,854,30,52,8,8,0 +64757,854,813,1,19,19,0 +64758,854,155,27,12,12,0 +64759,854,24,0,23,23,0 +64760,854,815,9,16,16,0 +64761,854,39,0,26,26,0 +64762,854,37,0,20,20,0 +64763,854,817,0,27,27,0 +64764,854,812,0,28,28,0 +64765,854,811,2,18,18,0 +64766,855,20,324,1,1,9 +64767,855,1,178,5,5,2 +64768,855,808,36,9,9,0 +64769,855,4,202,3,3,1 +64770,855,17,194,4,4,0 +64771,855,18,210,2,2,3 +64772,855,13,90,6,6,0 +64773,855,67,13,16,16,0 +64774,855,16,28,11,11,0 +64775,855,814,20,13,13,0 +64776,855,153,16,14,14,0 +64777,855,2,34,10,10,0 +64778,855,15,0,21,21,0 +64779,855,816,0,24,24,0 +64780,855,10,0,25,25,0 +64781,855,22,4,17,17,0 +64782,855,3,63,7,7,0 +64783,855,5,0,22,22,0 +64784,855,30,60,8,8,0 +64785,855,813,1,19,19,0 +64786,855,155,27,12,12,0 +64787,855,24,0,23,23,0 +64788,855,815,13,15,15,0 +64789,855,39,0,26,26,0 +64790,855,37,0,20,20,0 +64791,855,817,0,27,27,0 +64792,855,812,0,28,28,0 +64793,855,811,2,18,18,0 +64794,856,20,349,1,1,10 +64795,856,1,196,5,5,2 +64796,856,808,36,9,9,0 +64797,856,4,212,3,3,1 +64798,856,17,209,4,4,0 +64799,856,18,222,2,2,3 +64800,856,13,98,6,6,0 +64801,856,67,15,15,15,0 +64802,856,16,28,11,11,0 +64803,856,814,21,14,14,0 +64804,856,153,22,13,13,0 +64805,856,2,34,10,10,0 +64806,856,15,0,21,21,0 +64807,856,816,0,24,24,0 +64808,856,10,0,25,25,0 +64809,856,22,4,17,17,0 +64810,856,3,67,7,7,0 +64811,856,5,0,22,22,0 +64812,856,30,60,8,8,0 +64813,856,813,1,19,19,0 +64814,856,155,27,12,12,0 +64815,856,24,0,23,23,0 +64816,856,815,13,16,16,0 +64817,856,39,0,26,26,0 +64818,856,37,0,20,20,0 +64819,856,817,0,27,27,0 +64820,856,812,0,28,28,0 +64821,856,811,2,18,18,0 +64822,857,20,374,1,1,11 +64823,857,1,202,5,5,2 +64824,857,808,36,9,9,0 +64825,857,4,227,3,3,1 +64826,857,17,221,4,4,0 +64827,857,18,240,2,2,3 +64828,857,13,98,6,6,0 +64829,857,67,15,15,15,0 +64830,857,16,30,11,11,0 +64831,857,814,21,14,14,0 +64832,857,153,26,13,13,0 +64833,857,2,34,10,10,0 +64834,857,15,0,21,21,0 +64835,857,816,0,24,24,0 +64836,857,10,0,25,25,0 +64837,857,22,4,17,17,0 +64838,857,3,75,7,7,0 +64839,857,5,0,22,22,0 +64840,857,30,70,8,8,0 +64841,857,813,1,19,19,0 +64842,857,155,27,12,12,0 +64843,857,24,0,23,23,0 +64844,857,815,14,16,16,0 +64845,857,39,0,26,26,0 +64846,857,37,0,20,20,0 +64847,857,817,0,27,27,0 +64848,857,812,0,28,28,0 +64849,857,811,2,18,18,0 +64850,858,20,374,1,1,11 +64851,858,1,227,5,5,3 +64852,858,808,36,9,9,0 +64853,858,4,245,3,3,1 +64854,858,17,233,4,4,0 +64855,858,18,255,2,2,3 +64856,858,13,108,6,6,0 +64857,858,67,15,15,15,0 +64858,858,16,34,11,11,0 +64859,858,814,23,14,14,0 +64860,858,153,26,13,13,0 +64861,858,2,34,10,10,0 +64862,858,15,0,21,21,0 +64863,858,816,0,24,24,0 +64864,858,10,0,25,25,0 +64865,858,22,4,17,17,0 +64866,858,3,83,7,7,0 +64867,858,5,0,22,22,0 +64868,858,30,76,8,8,0 +64869,858,813,1,19,19,0 +64870,858,155,28,12,12,0 +64871,858,24,0,23,23,0 +64872,858,815,14,16,16,0 +64873,858,39,0,26,26,0 +64874,858,37,0,20,20,0 +64875,858,817,0,27,27,0 +64876,858,812,0,28,28,0 +64877,858,811,2,18,18,0 +64878,859,20,392,1,1,11 +64879,859,1,227,5,5,3 +64880,859,808,37,10,10,0 +64881,859,4,257,4,4,1 +64882,859,17,258,3,3,1 +64883,859,18,270,2,2,3 +64884,859,13,118,6,6,0 +64885,859,67,15,15,15,0 +64886,859,16,42,9,9,0 +64887,859,814,27,13,13,0 +64888,859,153,26,14,14,0 +64889,859,2,34,11,11,0 +64890,859,15,0,21,21,0 +64891,859,816,0,24,24,0 +64892,859,10,0,25,25,0 +64893,859,22,4,17,17,0 +64894,859,3,89,7,7,0 +64895,859,5,0,22,22,0 +64896,859,30,76,8,8,0 +64897,859,813,1,19,19,0 +64898,859,155,30,12,12,0 +64899,859,24,0,23,23,0 +64900,859,815,14,16,16,0 +64901,859,39,0,26,26,0 +64902,859,37,0,20,20,0 +64903,859,817,0,27,27,0 +64904,859,812,0,28,28,0 +64905,859,811,2,18,18,0 +64999,860,39,0,24,24,0 +64997,860,807,0,22,22,0 +64995,860,30,0,20,20,0 +64993,860,5,0,18,18,0 +64991,860,811,0,16,16,0 +64989,860,10,0,14,14,0 +64987,860,3,0,12,12,0 +64998,860,37,0,23,23,0 +64996,860,154,0,21,21,0 +64994,860,808,0,19,19,0 +64992,860,13,0,17,17,0 +64990,860,819,0,15,15,0 +64988,860,813,0,13,13,0 +64986,860,818,0,11,11,0 +64985,860,814,1,10,10,0 +64984,860,817,2,9,9,0 +64983,860,815,4,8,8,0 +64982,860,8,6,7,7,0 +64981,860,155,8,6,6,0 +64980,860,4,10,5,5,0 +64979,860,17,12,4,4,0 +64978,860,1,15,3,3,0 +64977,860,20,18,2,2,0 +64976,860,18,25,1,1,1 +64928,861,18,25,3,3,1 +64929,861,20,18,6,6,0 +64930,861,1,30,2,2,0 +64931,861,17,24,4,4,0 +64932,861,4,35,1,1,1 +64933,861,155,8,9,9,0 +64934,861,8,16,7,7,0 +64935,861,815,22,5,5,0 +64936,861,817,2,12,12,0 +64937,861,814,7,10,10,0 +64938,861,818,4,11,11,0 +64939,861,3,0,15,15,0 +64940,861,813,0,16,16,0 +64941,861,10,0,17,17,0 +64942,861,819,0,18,18,0 +64943,861,811,8,8,8,0 +64944,861,13,0,19,19,0 +64945,861,5,0,21,21,0 +64946,861,808,0,20,20,0 +64947,861,30,1,14,14,0 +64948,861,154,0,24,24,0 +64949,861,807,2,13,13,0 +64950,861,37,0,23,23,0 +64951,861,39,0,22,22,0 +64952,862,18,43,2,2,1 +64953,862,20,28,5,5,0 +64954,862,1,45,1,1,0 +64955,862,17,36,4,4,0 +64956,862,4,37,3,3,1 +64957,862,155,9,10,10,0 +64958,862,8,16,8,8,0 +64959,862,815,22,7,7,0 +64960,862,817,2,15,15,0 +64961,862,814,7,12,12,0 +64962,862,818,4,13,13,0 +64963,862,3,25,6,6,1 +64964,862,813,4,14,14,0 +64965,862,10,0,19,19,0 +64966,862,819,0,20,20,0 +64967,862,811,14,9,9,0 +64968,862,13,0,18,18,0 +64969,862,5,0,22,22,0 +64970,862,808,0,21,21,0 +64971,862,30,1,17,17,0 +64972,862,154,8,11,11,0 +64973,862,807,2,16,16,0 +64974,862,37,0,23,23,0 +64975,862,39,0,24,24,0 +65000,863,18,43,4,4,1 +65001,863,20,53,1,1,1 +65002,863,1,49,2,2,0 +65003,863,17,48,3,3,0 +65004,863,4,43,5,5,1 +65005,863,155,9,12,12,0 +65006,863,8,34,7,7,0 +65007,863,815,22,9,9,0 +65008,863,817,2,15,15,0 +65009,863,814,15,10,10,0 +65010,863,818,4,13,13,0 +65011,863,3,35,6,6,1 +65012,863,813,4,14,14,0 +65013,863,10,0,19,19,0 +65014,863,819,0,20,20,0 +65015,863,811,14,11,11,0 +65016,863,13,2,17,17,0 +65017,863,5,0,22,22,0 +65018,863,808,0,21,21,0 +65019,863,30,2,18,18,0 +65020,863,154,23,8,8,0 +65021,863,807,2,16,16,0 +65022,863,37,0,23,23,0 +65023,863,39,0,24,24,0 +65024,864,18,45,6,6,1 +65025,864,20,61,1,1,1 +65026,864,1,53,3,3,0 +65027,864,17,48,5,5,0 +65028,864,4,61,2,2,1 +65029,864,155,19,11,11,0 +65030,864,8,49,4,4,0 +65031,864,815,22,10,10,0 +65032,864,817,2,16,16,0 +65033,864,814,15,12,12,0 +65034,864,818,4,14,14,0 +65035,864,3,41,7,7,1 +65036,864,813,29,9,9,1 +65037,864,10,0,19,19,0 +65038,864,819,0,20,20,0 +65039,864,811,14,13,13,0 +65040,864,13,2,17,17,0 +65041,864,5,0,22,22,0 +65042,864,808,0,21,21,0 +65043,864,30,2,18,18,0 +65044,864,154,35,8,8,0 +65045,864,807,3,15,15,0 +65046,864,37,0,23,23,0 +65047,864,39,0,24,24,0 +65048,865,18,45,7,7,1 +65049,865,20,73,2,2,1 +65050,865,1,63,4,4,0 +65051,865,17,73,3,3,1 +65052,865,4,76,1,1,1 +65053,865,155,19,12,12,0 +65054,865,8,51,6,6,0 +65055,865,815,22,10,10,0 +65056,865,817,2,17,17,0 +65057,865,814,21,11,11,0 +65058,865,818,4,16,16,0 +65059,865,3,59,5,5,1 +65060,865,813,29,9,9,1 +65061,865,10,0,20,20,0 +65062,865,819,0,21,21,0 +65063,865,811,15,13,13,0 +65064,865,13,10,14,14,0 +65065,865,5,0,19,19,0 +65066,865,808,0,23,23,0 +65067,865,30,2,18,18,0 +65068,865,154,35,8,8,0 +65069,865,807,7,15,15,0 +65070,865,37,0,24,24,0 +65071,865,39,0,22,22,0 +65072,866,18,45,8,8,1 +65073,866,20,85,3,3,1 +65074,866,1,88,1,1,1 +65075,866,17,79,4,4,1 +65076,866,4,86,2,2,1 +65077,866,155,21,11,11,0 +65078,866,8,55,6,6,0 +65079,866,815,37,9,9,0 +65080,866,817,2,17,17,0 +65081,866,814,21,12,12,0 +65082,866,818,4,16,16,0 +65083,866,3,67,5,5,1 +65084,866,813,29,10,10,1 +65085,866,10,0,20,20,0 +65086,866,819,0,21,21,0 +65087,866,811,15,13,13,0 +65088,866,13,11,14,14,0 +65089,866,5,0,19,19,0 +65090,866,808,0,23,23,0 +65091,866,30,2,18,18,0 +65092,866,154,53,7,7,0 +65093,866,807,7,15,15,0 +65094,866,37,0,24,24,0 +65095,866,39,0,22,22,0 +65096,867,18,49,8,8,1 +65097,867,20,85,4,4,1 +65098,867,1,88,3,3,1 +65099,867,17,91,2,2,1 +65100,867,4,111,1,1,2 +65101,867,155,21,12,12,0 +65102,867,8,73,6,6,0 +65103,867,815,39,9,9,0 +65104,867,817,2,18,18,0 +65105,867,814,27,11,11,0 +65106,867,818,4,17,17,0 +65107,867,3,75,5,5,1 +65108,867,813,29,10,10,1 +65109,867,10,0,21,21,0 +65110,867,819,0,22,22,0 +65111,867,811,16,15,15,0 +65112,867,13,11,16,16,0 +65113,867,5,0,19,19,0 +65114,867,808,0,20,20,0 +65115,867,30,17,13,13,0 +65116,867,154,53,7,7,0 +65117,867,807,17,14,14,0 +65118,867,37,0,24,24,0 +65119,867,39,0,23,23,0 +65120,868,18,50,8,8,1 +65121,868,20,100,3,3,1 +65122,868,1,92,4,4,1 +65123,868,17,116,2,2,2 +65124,868,4,129,1,1,2 +65125,868,155,21,14,14,0 +65126,868,8,83,5,5,0 +65127,868,815,39,9,9,0 +65128,868,817,2,18,18,0 +65129,868,814,27,11,11,0 +65130,868,818,4,17,17,0 +65131,868,3,75,6,6,1 +65132,868,813,29,10,10,1 +65133,868,10,0,21,21,0 +65134,868,819,0,22,22,0 +65135,868,811,18,15,15,0 +65136,868,13,23,13,13,0 +65137,868,5,0,19,19,0 +65138,868,808,0,20,20,0 +65139,868,30,23,12,12,0 +65140,868,154,61,7,7,0 +65141,868,807,17,16,16,0 +65142,868,37,0,24,24,0 +65143,868,39,0,23,23,0 +65196,870,4,164,1,1,3 +65195,870,17,124,2,2,2 +65194,870,1,117,4,4,2 +65193,870,20,122,3,3,1 +65192,870,18,76,7,7,1 +65191,869,39,0,23,23,0 +65190,869,37,0,24,24,0 +65189,869,807,19,15,15,0 +65188,869,154,61,8,8,0 +65187,869,30,29,12,12,0 +65186,869,808,0,20,20,0 +65185,869,5,0,19,19,0 +65184,869,13,23,14,14,0 +65183,869,811,18,16,16,0 +65182,869,819,0,22,22,0 +65169,869,20,110,3,3,1 +65170,869,1,92,5,5,1 +65171,869,17,120,2,2,2 +65172,869,4,154,1,1,3 +65173,869,155,33,10,10,0 +65174,869,8,98,4,4,0 +65175,869,815,47,9,9,0 +65176,869,817,2,18,18,0 +65177,869,814,27,13,13,0 +65178,869,818,4,17,17,0 +65179,869,3,76,6,6,1 +65180,869,813,29,11,11,1 +65181,869,10,0,21,21,0 +65168,869,18,68,7,7,1 +65197,870,155,33,10,10,0 +65198,870,8,116,5,5,0 +65199,870,815,47,9,9,0 +65200,870,817,2,18,18,0 +65201,870,814,27,13,13,0 +65202,870,818,4,17,17,0 +65203,870,3,77,6,6,1 +65204,870,813,29,11,11,1 +65205,870,10,0,21,21,0 +65206,870,819,0,22,22,0 +65207,870,811,24,15,15,0 +65208,870,13,25,14,14,0 +65209,870,5,0,19,19,0 +65210,870,808,0,20,20,0 +65211,870,30,29,12,12,0 +65212,870,154,76,8,8,0 +65213,870,807,19,16,16,0 +65214,870,37,0,24,24,0 +65215,870,39,0,23,23,0 +65216,871,18,101,6,6,2 +65217,871,20,140,2,2,1 +65218,871,1,117,5,5,2 +65219,871,17,132,3,3,2 +65220,871,4,164,1,1,3 +65221,871,155,33,12,12,0 +65222,871,8,131,4,4,0 +65223,871,815,47,9,9,0 +65224,871,817,4,18,18,0 +65225,871,814,28,15,15,0 +65226,871,818,8,17,17,0 +65227,871,3,77,7,7,1 +65228,871,813,29,14,14,1 +65229,871,10,0,21,21,0 +65230,871,819,0,22,22,0 +65231,871,811,24,16,16,0 +65232,871,13,35,11,11,0 +65233,871,5,0,20,20,0 +65234,871,808,0,19,19,0 +65235,871,30,35,10,10,0 +65236,871,154,76,8,8,0 +65237,871,807,31,13,13,0 +65238,871,37,0,24,24,0 +65239,871,39,0,23,23,0 +65240,872,18,101,6,6,2 +65241,872,20,140,4,4,1 +65242,872,1,142,2,2,3 +65243,872,17,132,5,5,2 +65244,872,4,179,1,1,3 +65245,872,155,35,12,12,0 +65246,872,8,141,3,3,0 +65247,872,815,65,9,9,0 +65248,872,817,4,18,18,0 +65249,872,814,32,13,13,0 +65250,872,818,8,17,17,0 +65251,872,3,83,7,7,1 +65252,872,813,29,15,15,1 +65253,872,10,0,22,22,0 +65254,872,819,0,23,23,0 +65255,872,811,25,16,16,0 +65256,872,13,47,10,10,0 +65257,872,5,0,19,19,0 +65258,872,808,0,20,20,0 +65259,872,30,43,11,11,0 +65260,872,154,76,8,8,0 +65261,872,807,31,14,14,0 +65262,872,37,0,25,25,0 +65263,872,39,0,24,24,0 +65264,872,816,0,21,21,0 +65359,873,30,43,12,12,0 +65360,873,154,82,8,8,0 +65345,873,155,35,13,13,0 +65353,873,10,0,19,19,0 +65363,873,39,0,24,24,0 +65346,873,8,149,3,3,0 +65343,873,17,132,5,5,2 +65362,873,37,0,25,25,0 +65361,873,807,31,14,14,0 +65358,873,808,0,21,21,0 +65357,873,5,0,20,20,0 +65355,873,811,25,16,16,0 +65356,873,13,51,10,10,0 +65354,873,819,0,23,23,0 +65352,873,813,29,15,15,1 +65351,873,3,93,7,7,1 +65350,873,818,8,17,17,0 +65349,873,814,44,11,11,0 +65347,873,815,66,9,9,0 +65348,873,817,6,18,18,0 +65344,873,4,194,1,1,3 +65341,873,20,165,2,2,2 +65340,873,18,119,6,6,2 +65389,874,816,0,22,22,0 +65387,874,37,0,25,25,0 +65386,874,807,37,14,14,0 +65385,874,154,82,8,8,0 +65384,874,30,43,13,13,0 +65383,874,808,0,21,21,0 +65381,874,13,69,9,9,0 +65380,874,811,25,16,16,0 +65379,874,819,0,23,23,0 +65377,874,813,33,15,15,1 +65373,874,817,7,18,18,0 +65370,874,155,50,11,11,0 +65368,874,17,134,5,5,2 +65366,874,20,190,2,2,3 +65388,874,39,0,24,24,0 +65382,874,5,0,20,20,0 +65371,874,8,157,3,3,0 +65372,874,815,66,10,10,0 +65374,874,814,44,12,12,0 +65369,874,4,194,1,1,3 +65378,874,10,0,19,19,0 +65376,874,3,93,7,7,1 +65375,874,818,8,17,17,0 +65365,874,18,131,6,6,2 +65367,874,1,152,4,4,3 +65364,873,816,0,22,22,0 +65342,873,1,142,4,4,3 +65390,875,18,131,6,6,2 +65391,875,20,215,1,1,4 +65392,875,1,153,4,4,3 +65393,875,17,152,5,5,2 +65394,875,4,209,2,2,3 +65395,875,155,50,11,11,0 +65396,875,8,167,3,3,0 +65397,875,815,66,10,10,0 +65398,875,817,9,18,18,0 +65399,875,814,44,13,13,0 +65400,875,818,12,17,17,0 +65401,875,3,93,7,7,1 +65402,875,813,33,15,15,1 +65403,875,10,0,19,19,0 +65404,875,819,0,23,23,0 +65405,875,811,25,16,16,0 +65406,875,13,81,9,9,0 +65407,875,5,0,20,20,0 +65408,875,808,0,21,21,0 +65409,875,30,43,14,14,0 +65410,875,154,88,8,8,0 +65411,875,807,45,12,12,0 +65412,875,37,0,25,25,0 +65413,875,39,0,24,24,0 +65414,875,816,0,22,22,0 +65415,876,18,141,6,6,2 +65416,876,20,240,1,1,5 +65417,876,1,165,5,5,3 +65418,876,17,167,4,4,2 +65419,876,4,227,2,2,3 +65420,876,155,50,11,11,0 +65421,876,8,173,3,3,0 +65422,876,815,66,10,10,0 +65423,876,817,9,18,18,0 +65424,876,814,44,13,13,0 +65425,876,818,12,17,17,0 +65426,876,3,93,7,7,1 +65427,876,813,33,15,15,1 +65428,876,10,0,19,19,0 +65429,876,819,0,23,23,0 +65430,876,811,26,16,16,0 +65431,876,13,89,9,9,0 +65432,876,5,0,20,20,0 +65433,876,808,0,21,21,0 +65434,876,30,43,14,14,0 +65435,876,154,90,8,8,0 +65436,876,807,49,12,12,0 +65437,876,37,0,25,25,0 +65438,876,39,0,24,24,0 +65439,876,816,0,22,22,0 +65440,877,18,153,6,6,2 +65441,877,20,255,1,1,5 +65442,877,1,165,5,5,3 +65443,877,17,167,4,4,2 +65444,877,4,245,2,2,3 +65445,877,155,58,11,11,0 +65446,877,8,198,3,3,1 +65447,877,815,66,10,10,0 +65448,877,817,10,18,18,0 +65449,877,814,46,13,13,0 +65450,877,818,12,17,17,0 +65451,877,3,93,8,8,1 +65452,877,813,43,14,14,1 +65453,877,10,0,19,19,0 +65454,877,819,0,23,23,0 +65455,877,811,30,16,16,0 +65456,877,13,95,7,7,0 +65457,877,5,0,20,20,0 +65458,877,808,0,21,21,0 +65459,877,30,43,15,15,0 +65460,877,154,90,9,9,0 +65461,877,807,49,12,12,0 +65462,877,37,0,25,25,0 +65463,877,39,0,24,24,0 +65464,877,816,0,22,22,0 +65465,878,18,163,6,6,2 +65466,878,20,273,1,1,5 +65467,878,1,190,4,4,4 +65468,878,17,167,5,5,2 +65469,878,4,260,2,2,3 +65470,878,155,58,11,11,0 +65471,878,8,206,3,3,1 +65472,878,815,66,10,10,0 +65473,878,817,10,18,18,0 +65474,878,814,46,13,13,0 +65475,878,818,12,17,17,0 +65476,878,3,93,9,9,1 +65477,878,813,45,14,14,1 +65478,878,10,0,19,19,0 +65479,878,819,0,23,23,0 +65480,878,811,31,16,16,0 +65481,878,13,107,7,7,0 +65482,878,5,0,20,20,0 +65483,878,808,0,21,21,0 +65484,878,30,43,15,15,0 +65485,878,154,96,8,8,0 +65486,878,807,53,12,12,0 +65487,878,37,0,25,25,0 +65488,878,39,0,24,24,0 +65489,878,816,0,22,22,0 +65490,879,18,188,5,5,3 +65491,879,20,281,1,1,5 +65492,879,1,190,4,4,4 +65493,879,17,179,6,6,2 +65494,879,4,278,2,2,3 +65495,879,155,60,12,12,0 +65496,879,8,207,3,3,1 +65497,879,815,66,10,10,0 +65498,879,817,10,18,18,0 +65499,879,814,46,14,14,0 +65500,879,818,16,17,17,0 +65501,879,3,93,9,9,1 +65502,879,813,45,15,15,1 +65503,879,10,0,20,20,0 +65504,879,819,0,21,21,0 +65505,879,811,31,16,16,0 +65506,879,13,122,7,7,0 +65507,879,5,0,22,22,0 +65508,879,808,0,19,19,0 +65509,879,30,49,13,13,0 +65510,879,154,96,8,8,0 +65511,879,807,63,11,11,0 +65512,879,37,0,25,25,0 +65513,879,39,0,24,24,0 +65514,879,816,0,23,23,0 +65515,880,8,25,1,1,1 +65516,880,4,18,2,2,0 +65517,880,20,15,3,3,0 +65518,880,13,12,4,4,0 +65519,880,1,10,5,5,0 +65520,880,17,8,6,6,0 +65521,880,16,6,7,7,0 +65522,880,814,4,8,8,0 +65523,880,18,2,9,9,0 +65524,880,154,1,10,10,0 +65525,880,815,0,11,11,0 +65526,880,818,0,12,12,0 +65527,880,821,0,13,13,0 +65528,880,822,0,14,14,0 +65529,880,824,0,15,15,0 +65530,880,819,0,16,16,0 +65531,880,820,0,17,17,0 +65532,880,823,0,18,18,0 +65533,880,817,0,19,19,0 +65534,880,3,0,20,20,0 +65535,880,813,0,21,21,0 +65536,880,807,0,22,22,0 +65537,881,8,31,2,2,1 +65538,881,4,18,6,6,0 +65539,881,20,40,1,1,1 +65540,881,13,22,5,5,0 +65541,881,1,25,4,4,0 +65542,881,17,26,3,3,0 +65543,881,16,6,9,9,0 +65544,881,814,4,10,10,0 +65545,881,18,2,13,13,0 +65546,881,154,9,8,8,0 +65547,881,815,2,12,12,0 +65548,881,818,1,14,14,0 +65549,881,821,0,16,16,0 +65550,881,822,0,15,15,0 +65551,881,824,0,17,17,0 +65552,881,819,0,18,18,0 +65553,881,820,0,20,20,0 +65554,881,823,0,19,19,0 +65555,881,817,0,21,21,0 +65556,881,3,12,7,7,0 +65557,881,813,0,22,22,0 +65558,881,807,4,11,11,0 +65559,882,8,49,2,2,1 +65560,882,4,43,3,3,1 +65561,882,20,52,1,1,1 +65562,882,13,30,5,5,0 +65563,882,1,40,4,4,0 +65564,882,17,26,6,6,0 +65565,882,16,6,12,12,0 +65566,882,814,8,10,10,0 +65567,882,18,12,8,8,0 +65568,882,154,11,9,9,0 +65569,882,815,2,14,14,0 +65570,882,818,1,15,15,0 +65571,882,821,0,17,17,0 +65572,882,822,0,16,16,0 +65573,882,824,0,18,18,0 +65574,882,819,0,19,19,0 +65575,882,820,0,22,22,0 +65576,882,823,0,21,21,0 +65577,882,817,6,11,11,0 +65578,882,3,12,7,7,0 +65579,882,813,0,20,20,0 +65580,882,807,5,13,13,0 +65581,883,8,67,2,2,1 +65582,883,4,47,4,4,1 +65583,883,20,77,1,1,2 +65584,883,13,30,6,6,0 +65585,883,1,50,3,3,0 +65586,883,17,32,5,5,0 +65587,883,16,6,12,12,0 +65588,883,814,20,8,8,0 +65589,883,18,13,10,10,0 +65590,883,154,26,7,7,0 +65591,883,815,10,11,11,0 +65592,883,818,1,15,15,0 +65593,883,821,0,18,18,0 +65594,883,822,0,16,16,0 +65595,883,824,0,19,19,0 +65596,883,819,0,20,20,0 +65597,883,820,0,22,22,0 +65598,883,823,0,21,21,0 +65599,883,817,6,13,13,0 +65600,883,3,14,9,9,0 +65601,883,813,0,17,17,0 +65602,883,807,5,14,14,0 +65645,884,813,0,18,18,0 +65644,884,3,22,9,9,0 +65643,884,817,7,12,12,0 +65641,884,820,0,22,22,0 +65639,884,824,0,19,19,0 +65638,884,822,0,17,17,0 +65637,884,821,0,16,16,0 +65636,884,818,1,15,15,0 +65633,884,18,17,10,10,0 +65632,884,814,26,8,8,0 +65631,884,16,6,13,13,0 +65630,884,17,42,6,6,0 +65629,884,1,50,4,4,0 +65627,884,20,89,1,1,2 +65626,884,4,72,3,3,2 +65625,884,8,85,2,2,1 +65646,884,807,5,14,14,0 +65642,884,823,0,21,21,0 +65640,884,819,0,20,20,0 +65635,884,815,12,11,11,0 +65634,884,154,26,7,7,0 +65628,884,13,45,5,5,0 +65647,885,8,86,2,2,1 +65648,885,4,78,3,3,2 +65649,885,20,107,1,1,2 +65650,885,13,45,7,7,0 +65651,885,1,62,4,4,0 +65652,885,17,57,5,5,0 +65653,885,16,16,11,11,0 +65654,885,814,28,8,8,0 +65655,885,18,25,10,10,0 +65656,885,154,26,9,9,0 +65657,885,815,12,12,12,0 +65658,885,818,5,15,15,0 +65659,885,821,0,16,16,0 +65660,885,822,0,17,17,0 +65661,885,824,0,19,19,0 +65662,885,819,0,20,20,0 +65663,885,820,0,21,21,0 +65664,885,823,0,22,22,0 +65665,885,817,7,13,13,0 +65666,885,3,47,6,6,1 +65667,885,813,0,18,18,0 +65668,885,807,5,14,14,0 +65669,886,8,88,3,3,1 +65670,886,4,96,2,2,2 +65671,886,20,132,1,1,3 +65672,886,13,49,7,7,0 +65673,886,1,77,4,4,0 +65674,886,17,69,5,5,0 +65675,886,16,17,11,11,0 +65676,886,814,34,8,8,0 +65677,886,18,25,10,10,0 +65678,886,154,26,9,9,0 +65679,886,815,12,13,13,0 +65680,886,818,13,12,12,0 +65681,886,821,0,16,16,0 +65682,886,822,0,17,17,0 +65683,886,824,0,19,19,0 +65684,886,819,0,20,20,0 +65685,886,820,0,21,21,0 +65686,886,823,0,22,22,0 +65687,886,817,7,14,14,0 +65688,886,3,57,6,6,1 +65689,886,813,0,18,18,0 +65690,886,807,5,15,15,0 +65734,887,807,6,15,15,0 +65733,887,813,0,16,16,0 +65731,887,817,11,14,14,0 +65730,887,823,0,22,22,0 +65728,887,819,0,20,20,0 +65727,887,824,0,19,19,0 +65725,887,821,0,18,18,0 +65724,887,818,13,12,12,0 +65719,887,16,23,11,11,0 +65718,887,17,87,5,5,0 +65715,887,20,132,1,1,3 +65716,887,13,57,7,7,0 +65717,887,1,89,4,4,0 +65732,887,3,82,6,6,2 +65729,887,820,0,21,21,0 +65726,887,822,0,17,17,0 +65720,887,814,36,8,8,0 +65713,887,8,98,3,3,1 +65714,887,4,111,2,2,2 +65723,887,815,12,13,13,0 +65722,887,154,26,9,9,0 +65721,887,18,25,10,10,0 +65735,888,8,116,3,3,1 +65736,888,4,123,2,2,2 +65737,888,20,157,1,1,4 +65738,888,13,57,7,7,0 +65739,888,1,99,4,4,0 +65740,888,17,93,5,5,0 +65741,888,16,23,11,11,0 +65742,888,814,36,9,9,0 +65743,888,18,33,10,10,0 +65744,888,154,41,8,8,0 +65745,888,815,16,12,12,0 +65746,888,818,13,13,13,0 +65747,888,821,0,18,18,0 +65748,888,822,0,17,17,0 +65749,888,824,0,19,19,0 +65750,888,819,0,20,20,0 +65751,888,820,0,21,21,0 +65752,888,823,0,22,22,0 +65753,888,817,11,14,14,0 +65754,888,3,84,6,6,2 +65755,888,813,0,16,16,0 +65756,888,807,7,15,15,0 +65757,890,8,134,2,2,1 +65758,890,4,133,3,3,2 +65759,890,20,172,1,1,4 +65760,890,13,61,7,7,0 +65761,890,1,124,4,4,1 +65762,890,17,105,5,5,0 +65763,890,16,23,11,11,0 +65764,890,814,36,10,10,0 +65765,890,18,39,9,9,0 +65766,890,154,49,8,8,0 +65767,890,815,18,12,12,0 +65768,890,818,13,13,13,0 +65769,890,821,0,18,18,0 +65770,890,822,0,17,17,0 +65771,890,824,0,19,19,0 +65772,890,819,0,20,20,0 +65773,890,820,0,22,22,0 +65774,890,823,0,21,21,0 +65775,890,817,11,14,14,0 +65776,890,3,84,6,6,2 +65777,890,813,1,16,16,0 +65778,890,807,7,15,15,0 +65779,891,8,134,4,4,1 +65780,891,4,151,2,2,2 +65781,891,20,197,1,1,5 +65782,891,13,67,7,7,0 +65783,891,1,139,3,3,1 +65784,891,17,115,5,5,0 +65785,891,16,25,11,11,0 +65786,891,814,36,10,10,0 +65787,891,18,47,9,9,0 +65788,891,154,53,8,8,0 +65789,891,815,18,12,12,0 +65790,891,818,13,13,13,0 +65791,891,821,0,18,18,0 +65792,891,822,0,17,17,0 +65793,891,824,0,19,19,0 +65794,891,819,0,20,20,0 +65795,891,820,0,22,22,0 +65796,891,823,0,21,21,0 +65797,891,817,12,14,14,0 +65798,891,3,96,6,6,2 +65799,891,813,1,16,16,0 +65800,891,807,7,15,15,0 +65801,892,8,134,4,4,1 +65802,892,4,169,2,2,2 +65803,892,20,222,1,1,6 +65804,892,13,79,7,7,0 +65805,892,1,141,3,3,1 +65806,892,17,130,5,5,0 +65807,892,16,25,11,11,0 +65808,892,814,36,10,10,0 +65809,892,18,48,9,9,0 +65810,892,154,57,8,8,0 +65811,892,815,18,12,12,0 +65812,892,818,13,15,15,0 +65813,892,821,0,18,18,0 +65814,892,822,0,17,17,0 +65815,892,824,0,19,19,0 +65816,892,819,0,20,20,0 +65817,892,820,0,22,22,0 +65818,892,823,0,21,21,0 +65819,892,817,18,13,13,0 +65820,892,3,104,6,6,2 +65821,892,813,1,16,16,0 +65822,892,807,17,14,14,0 +65823,893,8,149,4,4,1 +65824,893,4,187,2,2,2 +65825,893,20,247,1,1,7 +65826,893,13,87,7,7,0 +65827,893,1,151,3,3,1 +65828,893,17,130,5,5,0 +65829,893,16,26,11,11,0 +65830,893,814,36,10,10,0 +65831,893,18,54,9,9,0 +65832,893,154,57,8,8,0 +65833,893,815,22,12,12,0 +65834,893,818,13,15,15,0 +65835,893,821,0,17,17,0 +65836,893,822,0,18,18,0 +65837,893,824,0,19,19,0 +65838,893,819,0,20,20,0 +65839,893,820,0,22,22,0 +65840,893,823,0,21,21,0 +65841,893,817,18,14,14,0 +65842,893,3,116,6,6,2 +65843,893,813,1,16,16,0 +65844,893,807,19,13,13,0 +65845,894,8,167,3,3,1 +65846,894,4,195,2,2,2 +65847,894,20,272,1,1,8 +65848,894,13,89,7,7,0 +65849,894,1,161,4,4,1 +65850,894,17,130,5,5,0 +65851,894,16,26,12,12,0 +65852,894,814,36,10,10,0 +65853,894,18,58,9,9,0 +65854,894,154,72,8,8,0 +65855,894,815,23,13,13,0 +65856,894,818,13,15,15,0 +65857,894,821,0,17,17,0 +65858,894,822,0,18,18,0 +65859,894,824,0,19,19,0 +65860,894,819,0,20,20,0 +65861,894,820,0,22,22,0 +65862,894,823,0,21,21,0 +65863,894,817,18,14,14,0 +65864,894,3,122,6,6,2 +65865,894,813,1,16,16,0 +65866,894,807,31,11,11,0 +65867,895,8,177,3,3,1 +65868,895,4,207,2,2,2 +65869,895,20,297,1,1,9 +65870,895,13,90,7,7,0 +65871,895,1,161,4,4,1 +65872,895,17,148,5,5,0 +65873,895,16,26,12,12,0 +65874,895,814,36,11,11,0 +65875,895,18,60,9,9,0 +65876,895,154,87,8,8,0 +65877,895,815,23,13,13,0 +65878,895,818,13,15,15,0 +65879,895,821,6,16,16,0 +65880,895,822,0,18,18,0 +65881,895,824,0,19,19,0 +65882,895,819,0,20,20,0 +65883,895,820,0,22,22,0 +65884,895,823,0,21,21,0 +65885,895,817,18,14,14,0 +65886,895,3,126,6,6,2 +65887,895,813,1,17,17,0 +65888,895,807,39,10,10,0 +65889,896,8,183,3,3,1 +65890,896,4,207,2,2,2 +65891,896,20,322,1,1,10 +65892,896,13,102,8,8,0 +65893,896,1,169,4,4,1 +65894,896,17,148,5,5,0 +65895,896,16,28,13,13,0 +65896,896,814,40,10,10,0 +65897,896,18,60,9,9,0 +65898,896,154,102,7,7,0 +65899,896,815,33,12,12,0 +65900,896,818,13,15,15,0 +65901,896,821,6,16,16,0 +65902,896,822,0,18,18,0 +65903,896,824,0,19,19,0 +65904,896,819,0,20,20,0 +65905,896,820,0,22,22,0 +65906,896,823,0,21,21,0 +65907,896,817,19,14,14,0 +65908,896,3,144,6,6,2 +65909,896,813,1,17,17,0 +65910,896,807,39,11,11,0 +65911,897,8,183,3,3,1 +65912,897,4,217,2,2,2 +65913,897,20,347,1,1,11 +65914,897,13,106,8,8,0 +65915,897,1,175,4,4,1 +65916,897,17,166,5,5,0 +65917,897,16,29,13,13,0 +65918,897,814,48,10,10,0 +65919,897,18,60,9,9,0 +65920,897,154,114,7,7,0 +65921,897,815,35,12,12,0 +65922,897,818,13,15,15,0 +65923,897,821,6,16,16,0 +65924,897,822,0,18,18,0 +65925,897,824,0,19,19,0 +65926,897,819,0,20,20,0 +65927,897,820,0,22,22,0 +65928,897,823,0,21,21,0 +65929,897,817,19,14,14,0 +65930,897,3,159,6,6,2 +65931,897,813,1,17,17,0 +65932,897,807,39,11,11,0 +65933,898,8,183,4,4,1 +65934,898,4,227,2,2,2 +65935,898,20,372,1,1,12 +65936,898,13,106,8,8,0 +65937,898,1,187,3,3,1 +65938,898,17,181,5,5,0 +65939,898,16,29,13,13,0 +65940,898,814,48,10,10,0 +65941,898,18,61,9,9,0 +65942,898,154,132,7,7,0 +65943,898,815,41,12,12,0 +65944,898,818,13,15,15,0 +65945,898,821,6,16,16,0 +65946,898,822,4,17,17,0 +65947,898,824,0,19,19,0 +65948,898,819,0,20,20,0 +65949,898,820,0,22,22,0 +65950,898,823,0,21,21,0 +65951,898,817,19,14,14,0 +65952,898,3,161,6,6,2 +65953,898,813,1,18,18,0 +65954,898,807,47,11,11,0 +65955,898,5,0,23,23,0 +65956,899,8,183,5,5,1 +65957,899,4,242,2,2,2 +65958,899,20,397,1,1,13 +65959,899,13,112,8,8,0 +65960,899,1,189,4,4,1 +65961,899,17,199,3,3,0 +65962,899,16,29,13,13,0 +65963,899,814,48,12,12,0 +65964,899,18,73,9,9,0 +65965,899,154,132,7,7,0 +65966,899,815,49,11,11,0 +65967,899,818,13,15,15,0 +65968,899,821,6,16,16,0 +65969,899,822,4,17,17,0 +65970,899,824,0,19,19,0 +65971,899,819,0,20,20,0 +65972,899,820,0,23,23,0 +65973,899,823,0,21,21,0 +65974,899,817,20,14,14,0 +65975,899,3,171,6,6,2 +65976,899,813,1,18,18,0 +65977,899,807,51,10,10,0 +65978,899,5,0,22,22,0 +66016,272,112,0,43,43,0 +66017,272,114,0,35,35,0 +66018,272,113,0,36,36,0 +66019,272,93,0,37,37,0 +66020,272,115,0,44,44,0 +66021,272,63,0,32,32,0 +66022,272,116,0,33,33,0 +66023,272,89,0,45,45,0 +66024,272,98,0,41,41,0 +66037,257,102,0,13,13,0 +66038,257,84,0,14,14,0 +66039,257,56,0,15,15,0 +66040,257,50,0,16,16,0 +66041,257,103,0,17,17,0 +66042,257,87,0,18,18,0 +66043,257,104,0,19,19,0 +66044,257,49,0,20,20,0 +66045,257,57,0,21,21,0 +66046,257,105,0,22,22,0 +66047,257,81,0,23,23,0 +66048,257,77,0,24,24,0 +66049,257,106,0,25,25,0 +66050,257,92,0,26,26,0 +66051,257,107,0,27,27,0 +66052,257,108,0,28,28,0 +66070,258,87,0,24,24,0 +66071,258,104,3,6,6,0 +66072,258,49,2,7,7,0 +66073,258,57,0,26,26,0 +66074,258,105,0,21,21,0 +66075,258,81,0,18,18,0 +66076,258,77,6,4,4,0 +66077,258,106,0,27,27,0 +66078,258,92,0,29,29,0 +66079,258,107,0,16,16,0 +66080,258,108,0,30,30,0 +66081,258,88,0,25,25,0 +66082,258,78,0,28,28,0 +66104,259,105,0,24,24,0 +66105,259,81,0,22,22,0 +66106,259,77,6,4,4,0 +66107,259,106,0,30,30,0 +66108,259,92,0,28,28,0 +66109,259,107,0,20,20,0 +66110,259,108,0,32,32,0 +66111,259,88,0,29,29,0 +66112,259,78,6,5,5,0 +66113,259,110,0,25,25,0 +66114,259,109,0,31,31,0 +66140,260,92,0,29,29,0 +66141,260,107,0,24,24,0 +66142,260,108,0,28,28,0 +66143,260,88,0,32,32,0 +66144,260,78,6,6,6,0 +66145,260,110,3,12,12,0 +66146,260,109,0,17,17,0 +66174,261,108,0,30,30,0 +66175,261,88,0,34,34,0 +66176,261,78,6,7,7,0 +66177,261,110,3,13,13,0 +66178,261,109,0,21,21,0 +66179,261,70,0,25,25,0 +66180,261,14,0,33,33,0 +66181,261,85,0,35,35,0 +66210,262,88,0,34,34,0 +66211,262,78,6,7,7,0 +66212,262,110,3,13,13,0 +66213,262,109,1,17,17,0 +66214,262,70,0,26,26,0 +66215,262,14,2,16,16,0 +66216,262,85,0,35,35,0 +66246,263,78,6,7,7,0 +66247,263,110,4,12,12,0 +66248,263,109,1,17,17,0 +66249,263,70,0,26,26,0 +66250,263,14,2,16,16,0 +66251,263,85,0,37,37,0 +66252,263,111,0,27,27,0 +66253,263,95,0,34,34,0 +66284,264,110,4,13,13,0 +66285,264,109,1,17,17,0 +66286,264,70,0,27,27,0 +66287,264,14,4,15,15,0 +66288,264,85,0,37,37,0 +66289,264,111,0,28,28,0 +66290,264,95,0,35,35,0 +66322,265,109,1,21,21,0 +66323,265,70,0,28,28,0 +66324,265,14,4,18,18,0 +66325,265,85,0,37,37,0 +66326,265,111,0,29,29,0 +66327,265,95,0,35,35,0 +66359,266,109,1,23,23,0 +66360,266,70,0,28,28,0 +66361,266,14,4,19,19,0 +66362,266,85,0,38,38,0 +66363,266,111,0,29,29,0 +66364,266,95,0,35,35,0 +66365,266,112,0,37,37,0 +66397,267,109,1,23,23,0 +66398,267,70,0,29,29,0 +66399,267,14,7,11,11,0 +66400,267,85,0,38,38,0 +66401,267,111,0,28,28,0 +66402,267,95,0,35,35,0 +66403,267,112,0,37,37,0 +66435,268,109,1,23,23,0 +66436,268,70,0,29,29,0 +66437,268,14,8,10,10,0 +66438,268,85,0,39,39,0 +66439,268,111,0,28,28,0 +66440,268,95,0,35,35,0 +66441,268,112,0,38,38,0 +66442,268,114,0,37,37,0 +66476,269,14,14,7,7,0 +66477,269,85,0,40,40,0 +66478,269,111,0,28,28,0 +66479,269,95,0,37,37,0 +66480,269,112,0,39,39,0 +66481,269,114,0,32,32,0 +66482,269,113,0,33,33,0 +66517,270,85,0,42,42,0 +66518,270,111,0,28,28,0 +66519,270,95,0,38,38,0 +66520,270,112,0,40,40,0 +66521,270,114,0,32,32,0 +66522,270,113,0,33,33,0 +66523,270,93,0,34,34,0 +66524,270,115,0,41,41,0 +66561,271,95,3,21,21,0 +66562,271,112,0,42,42,0 +66563,271,114,0,34,34,0 +66564,271,113,0,35,35,0 +66565,271,93,0,36,36,0 +66566,271,115,0,44,44,0 +66567,271,63,0,32,32,0 +66568,271,116,0,40,40,0 +66569,271,89,0,43,43,0 +66632,900,13,0,20,20,0 +66630,900,20,0,18,18,0 +66628,900,813,0,16,16,0 +66626,900,824,0,14,14,0 +66624,900,821,0,12,12,0 +66614,900,825,18,2,2,0 +66615,900,18,15,3,3,0 +66616,900,4,12,4,4,0 +66617,900,822,10,5,5,0 +66618,900,807,8,6,6,0 +66619,900,8,6,7,7,0 +66633,900,155,0,21,21,0 +66631,900,1,0,19,19,0 +66629,900,828,0,17,17,0 +66627,900,154,0,15,15,0 +66625,900,820,0,13,13,0 +66623,900,16,0,11,11,0 +66622,900,815,1,10,10,0 +66621,900,826,2,9,9,0 +66620,900,818,4,8,8,0 +66613,900,3,25,1,1,1 +66634,900,817,0,22,22,0 +66635,901,3,43,1,1,1 +66636,901,825,20,5,5,0 +66637,901,18,23,4,4,0 +66638,901,4,24,3,3,0 +66639,901,822,14,8,8,0 +66640,901,807,18,6,6,0 +66641,901,8,6,9,9,0 +66642,901,818,4,11,11,0 +66643,901,826,3,12,12,0 +66644,901,815,1,13,13,0 +66645,901,16,0,15,15,0 +66646,901,821,0,16,16,0 +66647,901,820,0,17,17,0 +66648,901,824,0,20,20,0 +66649,901,154,0,14,14,0 +66650,901,813,0,21,21,0 +66651,901,828,0,19,19,0 +66652,901,20,15,7,7,0 +66653,901,1,25,2,2,1 +66654,901,13,6,10,10,0 +66655,901,155,0,18,18,0 +66656,901,817,0,22,22,0 +66657,902,3,61,1,1,1 +66658,902,825,20,7,7,0 +66659,902,18,23,5,5,0 +66660,902,4,26,4,4,0 +66661,902,822,18,8,8,0 +66662,902,807,28,3,3,0 +66663,902,8,7,12,12,0 +66664,902,818,4,13,13,0 +66665,902,826,3,14,14,0 +66666,902,815,16,9,9,0 +66667,902,16,0,16,16,0 +66668,902,821,0,17,17,0 +66669,902,820,0,18,18,0 +66670,902,824,0,22,22,0 +66671,902,154,0,15,15,0 +66672,902,813,0,20,20,0 +66673,902,828,0,21,21,0 +66674,902,20,23,6,6,0 +66675,902,1,50,2,2,2 +66676,902,13,12,11,11,0 +66677,902,155,0,19,19,0 +66678,902,817,12,10,10,0 +66679,903,3,79,1,1,1 +66680,903,825,20,9,9,0 +66681,903,18,23,8,8,0 +66682,903,4,41,3,3,0 +66683,903,822,24,7,7,0 +66684,903,807,36,4,4,0 +66685,903,8,11,12,12,0 +66686,903,818,4,13,13,0 +66687,903,826,4,14,14,0 +66688,903,815,18,10,10,0 +66689,903,16,0,16,16,0 +66690,903,821,0,17,17,0 +66691,903,820,0,18,18,0 +66692,903,824,0,22,22,0 +66693,903,154,0,15,15,0 +66694,903,813,0,20,20,0 +66695,903,828,0,21,21,0 +66696,903,20,33,5,5,0 +66697,903,1,75,2,2,3 +66698,903,13,12,11,11,0 +66699,903,155,0,19,19,0 +66700,903,817,24,6,6,0 +66701,904,3,97,2,2,1 +66702,904,825,20,9,9,0 +66703,904,18,23,8,8,0 +66704,904,4,49,3,3,0 +66705,904,822,34,7,7,0 +66706,904,807,37,6,6,0 +66707,904,8,17,11,11,0 +66708,904,818,4,14,14,0 +66709,904,826,4,15,15,0 +66710,904,815,20,10,10,0 +66711,904,16,0,16,16,0 +66712,904,821,0,17,17,0 +66713,904,820,0,18,18,0 +66714,904,824,0,22,22,0 +66715,904,154,4,13,13,0 +66716,904,813,0,20,20,0 +66717,904,828,0,21,21,0 +66718,904,20,45,4,4,0 +66719,904,1,100,1,1,4 +66720,904,13,12,12,12,0 +66721,904,155,0,19,19,0 +66722,904,817,39,5,5,0 +66723,905,3,122,1,1,2 +66724,905,825,21,9,9,0 +66725,905,18,31,8,8,0 +66726,905,4,61,3,3,0 +66727,905,822,34,7,7,0 +66728,905,807,47,5,5,0 +66729,905,8,17,12,12,0 +66730,905,818,4,14,14,0 +66731,905,826,4,15,15,0 +66732,905,815,20,10,10,0 +66733,905,16,0,18,18,0 +66734,905,821,0,19,19,0 +66735,905,820,0,20,20,0 +66736,905,824,2,16,16,0 +66737,905,154,8,13,13,0 +66738,905,813,0,22,22,0 +66739,905,828,0,17,17,0 +66740,905,20,45,6,6,0 +66741,905,1,118,2,2,4 +66742,905,13,18,11,11,0 +66743,905,155,0,21,21,0 +66744,905,817,54,4,4,0 +66745,906,3,140,1,1,2 +66746,906,825,23,9,9,0 +66747,906,18,43,7,7,0 +66748,906,4,69,4,4,0 +66749,906,822,40,8,8,0 +66750,906,807,57,6,6,0 +66751,906,8,18,12,12,0 +66752,906,818,8,14,14,0 +66753,906,826,4,15,15,0 +66754,906,815,20,10,10,0 +66755,906,16,0,17,17,0 +66756,906,821,0,19,19,0 +66757,906,820,0,20,20,0 +66758,906,824,2,16,16,0 +66759,906,154,8,13,13,0 +66760,906,813,0,22,22,0 +66761,906,828,0,18,18,0 +66762,906,20,60,5,5,0 +66763,906,1,118,2,2,4 +66764,906,13,18,11,11,0 +66765,906,155,0,21,21,0 +66766,906,817,79,3,3,1 +66767,907,3,165,1,1,3 +66768,907,825,29,10,10,0 +66769,907,18,43,8,8,0 +66770,907,4,79,4,4,0 +66771,907,822,55,7,7,0 +66772,907,807,59,6,6,0 +66773,907,8,19,12,12,0 +66774,907,818,8,14,14,0 +66775,907,826,4,15,15,0 +66776,907,815,28,11,11,0 +66777,907,16,0,17,17,0 +66778,907,821,0,20,20,0 +66779,907,820,0,21,21,0 +66780,907,824,2,16,16,0 +66781,907,154,8,13,13,0 +66782,907,813,0,19,19,0 +66783,907,828,0,18,18,0 +66784,907,20,60,5,5,0 +66785,907,1,136,2,2,4 +66786,907,13,30,9,9,0 +66787,907,155,0,22,22,0 +66788,907,817,83,3,3,1 +66789,908,3,165,1,1,3 +66790,908,825,35,9,9,0 +66791,908,18,55,8,8,0 +66792,908,4,87,4,4,0 +66793,908,822,73,5,5,0 +66794,908,807,63,7,7,0 +66795,908,8,19,12,12,0 +66796,908,818,9,13,13,0 +66797,908,826,6,15,15,0 +66798,908,815,28,11,11,0 +66799,908,16,0,17,17,0 +66800,908,821,0,20,20,0 +66801,908,820,0,21,21,0 +66802,908,824,2,16,16,0 +66803,908,154,8,14,14,0 +66804,908,813,0,19,19,0 +66805,908,828,0,18,18,0 +66806,908,20,70,6,6,0 +66807,908,1,161,2,2,5 +66808,908,13,30,10,10,0 +66809,908,155,0,22,22,0 +66810,908,817,98,3,3,1 +66811,909,3,190,1,1,4 +66812,909,825,37,9,9,0 +66813,909,18,59,8,8,0 +66814,909,4,97,4,4,0 +66815,909,822,91,5,5,0 +66816,909,807,69,7,7,0 +66817,909,8,19,12,12,0 +66818,909,818,9,13,13,0 +66819,909,826,6,15,15,0 +66820,909,815,29,11,11,0 +66821,909,16,0,17,17,0 +66822,909,821,0,20,20,0 +66823,909,820,0,21,21,0 +66824,909,824,2,16,16,0 +66825,909,154,8,14,14,0 +66826,909,813,0,19,19,0 +66827,909,828,0,18,18,0 +66828,909,20,82,6,6,0 +66829,909,1,176,2,2,5 +66830,909,13,30,10,10,0 +66831,909,155,0,22,22,0 +66832,909,817,106,3,3,1 +66833,910,3,202,1,1,4 +66834,910,825,37,10,10,0 +66835,910,18,60,8,8,0 +66836,910,4,115,4,4,0 +66837,910,822,95,5,5,0 +66838,910,807,69,7,7,0 +66839,910,8,27,12,12,0 +66840,910,818,11,13,13,0 +66841,910,826,6,15,15,0 +66842,910,815,29,11,11,0 +66843,910,16,0,17,17,0 +66844,910,821,0,20,20,0 +66845,910,820,0,21,21,0 +66846,910,824,2,16,16,0 +66847,910,154,8,14,14,0 +66848,910,813,0,19,19,0 +66849,910,828,0,18,18,0 +66850,910,20,88,6,6,0 +66851,910,1,191,2,2,5 +66852,910,13,40,9,9,0 +66853,910,155,0,22,22,0 +66854,910,817,131,3,3,2 +66855,911,3,220,1,1,4 +66856,911,825,37,11,11,0 +66857,911,18,68,8,8,0 +66858,911,4,121,4,4,0 +66859,911,822,110,5,5,0 +66860,911,807,70,7,7,0 +66861,911,8,39,10,10,0 +66862,911,818,11,13,13,0 +66863,911,826,8,15,15,0 +66864,911,815,33,12,12,0 +66865,911,16,0,17,17,0 +66866,911,821,0,20,20,0 +66867,911,820,0,21,21,0 +66868,911,824,2,16,16,0 +66869,911,154,8,14,14,0 +66870,911,813,0,19,19,0 +66871,911,828,0,18,18,0 +66872,911,20,98,6,6,0 +66873,911,1,191,2,2,5 +66874,911,13,40,9,9,0 +66875,911,155,0,22,22,0 +66876,911,817,156,3,3,3 +66877,911,827,0,23,23,0 +66878,912,3,238,1,1,4 +66879,912,825,38,12,12,0 +66880,912,18,72,7,7,0 +66881,912,4,121,5,5,0 +66882,912,822,122,4,4,0 +66883,912,807,70,8,8,0 +66884,912,8,41,10,10,0 +66885,912,818,11,13,13,0 +66886,912,826,8,15,15,0 +66887,912,815,39,11,11,0 +66888,912,16,0,17,17,0 +66889,912,821,0,20,20,0 +66890,912,820,0,21,21,0 +66891,912,824,2,16,16,0 +66892,912,154,8,14,14,0 +66893,912,813,0,19,19,0 +66894,912,828,0,18,18,0 +66895,912,20,106,6,6,0 +66896,912,1,216,2,2,6 +66897,912,13,55,9,9,0 +66898,912,155,0,22,22,0 +66899,912,817,166,3,3,3 +66900,912,827,0,23,23,0 +66901,913,3,238,2,2,4 +66902,913,825,39,12,12,0 +66903,913,18,72,7,7,0 +66904,913,4,133,4,4,0 +66905,913,822,122,6,6,0 +66906,913,807,72,8,8,0 +66907,913,8,45,11,11,0 +66908,913,818,19,13,13,0 +66909,913,826,8,15,15,0 +66910,913,815,45,10,10,0 +66911,913,16,0,17,17,0 +66912,913,821,0,20,20,0 +66913,913,820,0,21,21,0 +66914,913,824,2,16,16,0 +66915,913,154,8,14,14,0 +66916,913,813,0,19,19,0 +66917,913,828,0,18,18,0 +66918,913,20,124,5,5,0 +66919,913,1,241,1,1,7 +66920,913,13,65,9,9,0 +66921,913,155,0,22,22,0 +66922,913,817,181,3,3,3 +66923,913,827,0,23,23,0 +66924,914,3,256,2,2,4 +66925,914,825,39,12,12,0 +66926,914,18,82,7,7,0 +66927,914,4,133,5,5,0 +66928,914,822,130,6,6,0 +66929,914,807,76,8,8,0 +66930,914,8,45,11,11,0 +66931,914,818,21,13,13,0 +66932,914,826,8,15,15,0 +66933,914,815,46,10,10,0 +66934,914,16,0,17,17,0 +66935,914,821,0,20,20,0 +66936,914,820,0,21,21,0 +66937,914,824,2,16,16,0 +66938,914,154,8,14,14,0 +66939,914,813,0,19,19,0 +66940,914,828,0,18,18,0 +66941,914,20,139,4,4,0 +66942,914,1,266,1,1,8 +66943,914,13,71,9,9,0 +66944,914,155,0,22,22,0 +66945,914,817,193,3,3,3 +66946,914,827,0,23,23,0 +66947,915,3,274,2,2,4 +66948,915,825,49,10,10,0 +66949,915,18,94,7,7,0 +66950,915,4,141,6,6,0 +66951,915,822,145,4,4,0 +66952,915,807,76,8,8,0 +66953,915,8,47,12,12,0 +66954,915,818,21,13,13,0 +66955,915,826,8,15,15,0 +66956,915,815,47,11,11,0 +66957,915,16,0,17,17,0 +66958,915,821,0,20,20,0 +66959,915,820,0,21,21,0 +66960,915,824,2,16,16,0 +66961,915,154,8,14,14,0 +66962,915,813,0,19,19,0 +66963,915,828,0,18,18,0 +66964,915,20,143,5,5,0 +66965,915,1,291,1,1,9 +66966,915,13,71,9,9,0 +66967,915,155,0,22,22,0 +66968,915,817,199,3,3,3 +66969,915,827,0,23,23,0 +66970,916,3,292,2,2,4 +66971,916,825,53,10,10,0 +66972,916,18,94,7,7,0 +66973,916,4,149,6,6,0 +66974,916,822,155,4,4,0 +66975,916,807,76,9,9,0 +66976,916,8,47,12,12,0 +66977,916,818,22,13,13,0 +66978,916,826,8,15,15,0 +66979,916,815,47,11,11,0 +66980,916,16,0,18,18,0 +66981,916,821,0,20,20,0 +66982,916,820,0,21,21,0 +66983,916,824,2,17,17,0 +66984,916,154,8,14,14,0 +66985,916,813,2,16,16,0 +66986,916,828,0,19,19,0 +66987,916,20,149,5,5,0 +66988,916,1,316,1,1,10 +66989,916,13,83,8,8,0 +66990,916,155,0,22,22,0 +66991,916,817,214,3,3,3 +66992,916,827,0,23,23,0 +66993,917,3,317,2,2,5 +66994,917,825,55,10,10,0 +66995,917,18,106,7,7,0 +66996,917,4,157,5,5,0 +66997,917,822,156,6,6,0 +66998,917,807,80,9,9,0 +66999,917,8,53,11,11,0 +67000,917,818,22,13,13,0 +67001,917,826,8,15,15,0 +67002,917,815,47,12,12,0 +67003,917,16,0,18,18,0 +67004,917,821,0,20,20,0 +67005,917,820,0,21,21,0 +67006,917,824,2,17,17,0 +67007,917,154,8,14,14,0 +67008,917,813,2,16,16,0 +67009,917,828,0,19,19,0 +67010,917,20,159,4,4,0 +67011,917,1,334,1,1,10 +67012,917,13,98,8,8,0 +67013,917,155,0,22,22,0 +67014,917,817,214,3,3,3 +67015,917,827,0,23,23,0 +67016,918,3,317,2,2,5 +67017,918,825,55,11,11,0 +67018,918,18,126,8,8,0 +67019,918,4,161,6,6,0 +67020,918,822,186,4,4,0 +67021,918,807,96,9,9,0 +67022,918,8,55,12,12,0 +67023,918,818,22,13,13,0 +67024,918,826,8,15,15,0 +67025,918,815,59,10,10,0 +67026,918,16,0,18,18,0 +67027,918,821,0,20,20,0 +67028,918,820,0,21,21,0 +67029,918,824,2,17,17,0 +67030,918,154,8,14,14,0 +67031,918,813,2,16,16,0 +67032,918,828,0,19,19,0 +67033,918,20,167,5,5,0 +67034,918,1,384,1,1,11 +67035,918,13,134,7,7,0 +67036,918,155,0,22,22,0 +67037,918,817,238,3,3,3 +67038,918,827,0,24,24,0 +67039,918,829,0,23,23,0 +67203,933,3,159,2,2,3 +67201,926,822,0,18,18,0 +67199,926,826,0,16,16,0 +67197,926,154,0,14,14,0 +67195,926,8,0,12,12,0 +67202,933,1,169,1,1,4 +67200,926,825,0,17,17,0 +67198,926,813,0,15,15,0 +67196,926,830,0,13,13,0 +67194,926,18,0,11,11,0 +67193,926,815,1,10,10,0 +67192,926,832,2,9,9,0 +67191,926,828,4,8,8,0 +67190,926,807,6,7,7,0 +67189,926,817,8,6,6,0 +67188,926,831,10,5,5,0 +67187,926,13,12,4,4,0 +67186,926,20,15,3,3,0 +67185,926,3,18,2,2,0 +67184,926,1,25,1,1,1 +67058,927,1,43,1,1,1 +67059,927,3,33,3,3,0 +67060,927,20,40,2,2,1 +67061,927,13,20,4,4,0 +67062,927,831,10,6,6,0 +67063,927,817,9,8,8,0 +67064,927,807,6,9,9,0 +67065,927,828,4,12,12,0 +67066,927,832,6,11,11,0 +67067,927,815,1,14,14,0 +67068,927,18,0,16,16,0 +67069,927,8,12,5,5,0 +67070,927,830,6,10,10,0 +67071,927,154,0,15,15,0 +67072,927,813,0,18,18,0 +67073,927,826,2,13,13,0 +67074,927,825,0,19,19,0 +67075,927,822,10,7,7,0 +67076,927,833,0,17,17,0 +67077,927,4,0,20,20,0 +67078,927,829,0,21,21,0 +67079,928,1,68,1,1,2 +67080,928,3,51,3,3,0 +67081,928,20,55,2,2,1 +67082,928,13,30,4,4,0 +67083,928,831,14,7,7,0 +67084,928,817,11,8,8,0 +67085,928,807,6,10,10,0 +67086,928,828,5,13,13,0 +67087,928,832,6,12,12,0 +67088,928,815,1,15,15,0 +67089,928,18,0,16,16,0 +67090,928,8,24,5,5,0 +67091,928,830,6,11,11,0 +67092,928,154,6,9,9,0 +67093,928,813,0,20,20,0 +67094,928,826,2,14,14,0 +67095,928,825,0,21,21,0 +67096,928,822,18,6,6,0 +67097,928,833,0,18,18,0 +67098,928,4,0,17,17,0 +67099,928,829,0,19,19,0 +67100,929,1,93,1,1,3 +67101,929,3,66,2,2,0 +67102,929,20,65,3,3,1 +67103,929,13,31,5,5,0 +67104,929,831,14,8,8,0 +67105,929,817,19,7,7,0 +67106,929,807,6,10,10,0 +67107,929,828,5,14,14,0 +67108,929,832,6,12,12,0 +67109,929,815,5,13,13,0 +67110,929,18,0,17,17,0 +67111,929,8,42,4,4,0 +67112,929,830,6,11,11,0 +67113,929,154,12,9,9,0 +67114,929,813,0,20,20,0 +67115,929,826,4,15,15,0 +67116,929,825,0,21,21,0 +67117,929,822,30,6,6,0 +67118,929,833,0,18,18,0 +67119,929,4,0,16,16,0 +67120,929,829,0,19,19,0 +67121,930,1,111,1,1,3 +67122,930,3,91,2,2,1 +67123,930,20,80,3,3,1 +67124,930,13,39,6,6,0 +67125,930,831,14,9,9,0 +67126,930,817,25,7,7,0 +67127,930,807,6,12,12,0 +67128,930,828,5,14,14,0 +67129,930,832,8,10,10,0 +67130,930,815,5,13,13,0 +67131,930,18,0,17,17,0 +67132,930,8,52,4,4,0 +67133,930,830,6,11,11,0 +67134,930,154,16,8,8,0 +67135,930,813,0,20,20,0 +67136,930,826,5,15,15,0 +67137,930,825,0,21,21,0 +67138,930,822,42,5,5,0 +67139,930,833,0,18,18,0 +67140,930,4,0,16,16,0 +67141,930,829,0,19,19,0 +67142,931,1,126,1,1,3 +67143,931,3,116,2,2,2 +67144,931,20,98,3,3,1 +67145,931,13,39,6,6,0 +67146,931,831,16,9,9,0 +67147,931,817,35,7,7,0 +67148,931,807,6,13,13,0 +67149,931,828,5,15,15,0 +67150,931,832,9,12,12,0 +67151,931,815,11,11,11,0 +67152,931,18,4,16,16,0 +67153,931,8,60,4,4,0 +67154,931,830,6,14,14,0 +67155,931,154,16,10,10,0 +67156,931,813,0,20,20,0 +67157,931,826,17,8,8,0 +67158,931,825,0,21,21,0 +67159,931,822,42,5,5,0 +67160,931,833,0,18,18,0 +67161,931,4,0,17,17,0 +67162,931,829,0,19,19,0 +67163,932,1,151,1,1,4 +67164,932,3,134,2,2,2 +67165,932,20,108,3,3,1 +67166,932,13,47,6,6,0 +67167,932,831,16,10,10,0 +67168,932,817,35,7,7,0 +67169,932,807,10,12,12,0 +67170,932,828,5,16,16,0 +67171,932,832,9,13,13,0 +67172,932,815,11,11,11,0 +67173,932,18,4,17,17,0 +67174,932,8,72,4,4,0 +67175,932,830,6,14,14,0 +67176,932,154,17,9,9,0 +67177,932,813,6,15,15,0 +67178,932,826,19,8,8,0 +67179,932,825,0,21,21,0 +67180,932,822,57,5,5,0 +67181,932,833,0,19,19,0 +67182,932,4,0,18,18,0 +67183,932,829,0,20,20,0 +67204,933,20,120,3,3,1 +67205,933,13,62,6,6,0 +67206,933,831,16,11,11,0 +67207,933,817,36,7,7,0 +67208,933,807,18,9,9,0 +67209,933,828,5,16,16,0 +67210,933,832,9,15,15,0 +67211,933,815,13,12,12,0 +67212,933,18,4,17,17,0 +67213,933,8,72,4,4,0 +67214,933,830,10,14,14,0 +67215,933,154,17,10,10,0 +67216,933,813,12,13,13,0 +67217,933,826,19,8,8,0 +67218,933,825,0,21,21,0 +67219,933,822,67,5,5,0 +67220,933,833,0,19,19,0 +67221,933,4,0,18,18,0 +67222,933,829,0,20,20,0 +67223,934,1,194,1,1,5 +67224,934,3,177,2,2,3 +67225,934,20,135,3,3,1 +67226,934,13,74,6,6,0 +67227,934,831,16,11,11,0 +67228,934,817,36,7,7,0 +67229,934,807,24,9,9,0 +67230,934,828,5,16,16,0 +67231,934,832,9,15,15,0 +67232,934,815,15,12,12,0 +67233,934,18,4,17,17,0 +67234,934,8,76,5,5,0 +67235,934,830,10,14,14,0 +67236,934,154,17,10,10,0 +67237,934,813,12,13,13,0 +67238,934,826,27,8,8,0 +67239,934,825,0,21,21,0 +67240,934,822,77,4,4,0 +67241,934,833,0,19,19,0 +67242,934,4,1,18,18,0 +67243,934,829,0,20,20,0 +67244,936,1,202,1,1,5 +67245,936,3,181,2,2,3 +67246,936,20,160,3,3,2 +67247,936,13,74,6,6,0 +67248,936,831,16,12,12,0 +67249,936,817,51,7,7,0 +67250,936,807,24,9,9,0 +67251,936,828,6,18,18,0 +67252,936,832,9,16,16,0 +67253,936,815,15,13,13,0 +67254,936,18,6,17,17,0 +67255,936,8,76,5,5,0 +67256,936,830,22,11,11,0 +67257,936,154,23,10,10,0 +67258,936,813,12,14,14,0 +67259,936,826,45,8,8,0 +67260,936,825,0,21,21,0 +67261,936,822,77,4,4,0 +67262,936,833,0,19,19,0 +67263,936,4,11,15,15,0 +67264,936,829,0,20,20,0 +67265,937,1,227,1,1,6 +67266,937,3,199,2,2,3 +67267,937,20,160,3,3,2 +67268,937,13,82,5,5,0 +67269,937,831,16,13,13,0 +67270,937,817,51,8,8,0 +67271,937,807,24,12,12,0 +67272,937,828,7,17,17,0 +67273,937,832,9,16,16,0 +67274,937,815,25,11,11,0 +67275,937,18,6,18,18,0 +67276,937,8,82,4,4,0 +67277,937,830,26,10,10,0 +67278,937,154,38,9,9,0 +67279,937,813,12,14,14,0 +67280,937,826,57,7,7,0 +67281,937,825,0,21,21,0 +67282,937,822,79,6,6,0 +67283,937,833,0,19,19,0 +67284,937,4,11,15,15,0 +67285,937,829,0,20,20,0 +67286,938,1,252,1,1,7 +67287,938,3,199,2,2,3 +67288,938,20,178,3,3,2 +67289,938,13,97,4,4,0 +67290,938,831,16,13,13,0 +67291,938,817,55,8,8,0 +67292,938,807,30,11,11,0 +67293,938,828,9,17,17,0 +67294,938,832,9,16,16,0 +67295,938,815,33,10,10,0 +67296,938,18,6,18,18,0 +67297,938,8,92,5,5,0 +67298,938,830,26,12,12,0 +67299,938,154,38,9,9,0 +67300,938,813,12,14,14,0 +67301,938,826,58,7,7,0 +67302,938,825,0,21,21,0 +67303,938,822,91,6,6,0 +67304,938,833,0,19,19,0 +67305,938,4,11,15,15,0 +67306,938,829,0,20,20,0 +67307,939,1,252,1,1,7 +67308,939,3,211,2,2,3 +67309,939,20,203,3,3,3 +67310,939,13,97,6,6,0 +67311,939,831,17,13,13,0 +67312,939,817,73,7,7,0 +67313,939,807,30,12,12,0 +67314,939,828,9,17,17,0 +67315,939,832,11,16,16,0 +67316,939,815,39,9,9,0 +67317,939,18,6,18,18,0 +67318,939,8,107,4,4,0 +67319,939,830,30,11,11,0 +67320,939,154,38,10,10,0 +67321,939,813,12,14,14,0 +67322,939,826,66,8,8,0 +67323,939,825,0,22,22,0 +67324,939,822,101,5,5,0 +67325,939,833,0,19,19,0 +67326,939,4,11,15,15,0 +67327,939,829,0,20,20,0 +67328,939,834,0,21,21,0 +67372,940,834,0,21,21,0 +67371,940,829,0,20,20,0 +67370,940,4,11,16,16,0 +67368,940,822,111,5,5,0 +67366,940,826,66,8,8,0 +67365,940,813,16,14,14,0 +67364,940,154,44,9,9,0 +67363,940,830,32,12,12,0 +67359,940,832,12,15,15,0 +67358,940,828,9,17,17,0 +67355,940,831,17,13,13,0 +67352,940,3,229,2,2,3 +67367,940,825,0,22,22,0 +67357,940,807,38,11,11,0 +67360,940,815,39,10,10,0 +67361,940,18,6,18,18,0 +67362,940,8,119,4,4,0 +67354,940,13,97,6,6,0 +67369,940,833,0,19,19,0 +67356,940,817,73,7,7,0 +67353,940,20,218,3,3,3 +67351,940,1,277,1,1,8 +67440,942,3,247,3,3,3 +67526,941,834,0,21,21,0 +67521,941,825,0,22,22,0 +67522,941,822,111,5,5,0 +67443,942,831,27,13,13,0 +67442,942,13,109,6,6,0 +67441,942,20,251,2,2,3 +67525,941,829,0,20,20,0 +67524,941,4,11,16,16,0 +67439,942,1,327,1,1,10 +67523,941,833,0,19,19,0 +67520,941,826,76,7,7,0 +67519,941,813,22,14,14,0 +67518,941,154,44,10,10,0 +67517,941,830,33,12,12,0 +67516,941,8,123,4,4,0 +67515,941,18,8,18,18,0 +67514,941,815,54,9,9,0 +67513,941,832,12,15,15,0 +67512,941,828,9,17,17,0 +67511,941,807,38,11,11,0 +67510,941,817,73,8,8,0 +67509,941,831,25,13,13,0 +67508,941,13,109,6,6,0 +67507,941,20,236,2,2,3 +67506,941,3,229,3,3,3 +67505,941,1,302,1,1,9 +67444,942,817,74,8,8,0 +67445,942,807,38,12,12,0 +67446,942,828,9,18,18,0 +67447,942,832,18,15,15,0 +67448,942,815,64,9,9,0 +67449,942,18,16,16,16,0 +67450,942,8,123,4,4,0 +67451,942,830,45,10,10,0 +67452,942,154,44,11,11,0 +67453,942,813,26,14,14,0 +67454,942,826,76,7,7,0 +67455,942,825,0,22,22,0 +67456,942,822,111,5,5,0 +67457,942,833,0,19,19,0 +67458,942,4,11,17,17,0 +67459,942,829,0,21,21,0 +67460,942,834,0,20,20,0 +67461,943,1,345,1,1,10 +67462,943,3,272,2,2,4 +67463,943,20,251,3,3,3 +67464,943,13,117,6,6,0 +67465,943,831,27,13,13,0 +67466,943,817,84,8,8,0 +67467,943,807,44,12,12,0 +67468,943,828,9,18,18,0 +67469,943,832,18,15,15,0 +67470,943,815,68,9,9,0 +67471,943,18,16,16,16,0 +67472,943,8,123,5,5,0 +67473,943,830,47,10,10,0 +67474,943,154,45,11,11,0 +67475,943,813,26,14,14,0 +67476,943,826,88,7,7,0 +67477,943,825,0,22,22,0 +67478,943,822,126,4,4,0 +67479,943,833,0,19,19,0 +67480,943,4,11,17,17,0 +67481,943,829,0,21,21,0 +67482,943,834,0,20,20,0 +67483,944,1,363,1,1,10 +67484,944,3,297,2,2,5 +67485,944,20,266,3,3,3 +67486,944,13,117,6,6,0 +67487,944,831,27,13,13,0 +67488,944,817,84,8,8,0 +67489,944,807,52,10,10,0 +67490,944,828,9,18,18,0 +67491,944,832,18,15,15,0 +67492,944,815,68,9,9,0 +67493,944,18,16,16,16,0 +67494,944,8,135,5,5,0 +67495,944,830,49,12,12,0 +67496,944,154,49,11,11,0 +67497,944,813,27,14,14,0 +67498,944,826,94,7,7,0 +67499,944,825,0,22,22,0 +67500,944,822,136,4,4,0 +67501,944,833,0,19,19,0 +67502,944,4,11,17,17,0 +67503,944,829,0,21,21,0 +67504,944,834,0,20,20,0 +67527,945,1,381,1,1,10 +67528,945,3,322,2,2,6 +67529,945,20,278,3,3,3 +67530,945,13,121,6,6,0 +67531,945,831,27,13,13,0 +67532,945,817,92,8,8,0 +67533,945,807,58,10,10,0 +67534,945,828,9,18,18,0 +67535,945,832,18,15,15,0 +67536,945,815,78,9,9,0 +67537,945,18,16,16,16,0 +67538,945,8,150,4,4,0 +67539,945,830,49,12,12,0 +67540,945,154,51,11,11,0 +67541,945,813,27,14,14,0 +67542,945,826,95,7,7,0 +67543,945,825,0,22,22,0 +67544,945,822,136,5,5,0 +67545,945,833,0,19,19,0 +67546,945,4,11,17,17,0 +67547,945,829,0,21,21,0 +67548,945,834,0,20,20,0 +67732,955,1,117,2,2,2 +67731,955,3,141,1,1,5 +68106,948,4,0,21,21,0 +68102,948,828,0,17,17,0 +68100,948,831,0,15,15,0 +68098,948,815,0,13,13,0 +68096,948,835,0,11,11,0 +68086,948,3,25,1,1,1 +68104,948,837,0,19,19,0 +68107,948,826,0,22,22,0 +68105,948,821,0,20,20,0 +68103,948,8,0,18,18,0 +68101,948,836,0,16,16,0 +68099,948,18,0,14,14,0 +68097,948,825,0,12,12,0 +68095,948,830,1,10,10,0 +68094,948,832,2,9,9,0 +68093,948,822,4,8,8,0 +68092,948,807,6,7,7,0 +68091,948,154,8,6,6,0 +68090,948,13,10,5,5,0 +68089,948,817,12,4,4,0 +68088,948,20,15,3,3,0 +68087,948,1,18,2,2,0 +67571,949,3,50,1,1,2 +67572,949,1,33,2,2,0 +67573,949,20,15,6,6,0 +67574,949,817,24,3,3,0 +67575,949,13,14,7,7,0 +67576,949,154,18,5,5,0 +67577,949,807,6,9,9,0 +67578,949,822,6,11,11,0 +67579,949,832,2,12,12,0 +67580,949,830,9,8,8,0 +67581,949,835,0,15,15,0 +67582,949,825,0,14,14,0 +67583,949,815,0,17,17,0 +67584,949,18,0,20,20,0 +67585,949,831,0,19,19,0 +67586,949,836,0,18,18,0 +67587,949,828,0,16,16,0 +67588,949,8,18,4,4,0 +67589,949,837,0,21,21,0 +67590,949,821,0,22,22,0 +67591,949,4,0,23,23,0 +67592,949,826,6,10,10,0 +67593,949,838,1,13,13,0 +67594,950,3,75,1,1,3 +67595,950,1,39,2,2,0 +67596,950,20,33,4,4,0 +67597,950,817,36,3,3,0 +67598,950,13,22,6,6,0 +67599,950,154,18,8,8,0 +67600,950,807,6,11,11,0 +67601,950,822,7,10,10,0 +67602,950,832,4,12,12,0 +67603,950,830,13,9,9,0 +67604,950,835,0,16,16,0 +67605,950,825,0,14,14,0 +67606,950,815,0,15,15,0 +67607,950,18,0,19,19,0 +67608,950,831,0,21,21,0 +67609,950,836,0,20,20,0 +67610,950,828,0,17,17,0 +67611,950,8,28,5,5,0 +67612,950,837,0,23,23,0 +67613,950,821,0,22,22,0 +67614,950,4,0,18,18,0 +67615,950,826,21,7,7,0 +67616,950,838,1,13,13,0 +67617,951,3,100,1,1,4 +67618,951,1,57,2,2,0 +67619,951,20,33,5,5,0 +67620,951,817,36,4,4,0 +67621,951,13,32,6,6,0 +67622,951,154,22,7,7,0 +67623,951,807,6,13,13,0 +67624,951,822,19,9,9,0 +67625,951,832,4,14,14,0 +67626,951,830,13,10,10,0 +67627,951,835,0,18,18,0 +67628,951,825,6,12,12,0 +67629,951,815,2,15,15,0 +67630,951,18,1,16,16,0 +67631,951,831,0,21,21,0 +67632,951,836,0,20,20,0 +67633,951,828,0,19,19,0 +67634,951,8,43,3,3,0 +67635,951,837,0,23,23,0 +67636,951,821,0,22,22,0 +67637,951,4,8,11,11,0 +67638,951,826,21,8,8,0 +67639,951,838,1,17,17,0 +67640,952,3,100,1,1,4 +67641,952,1,57,3,3,0 +67642,952,20,48,4,4,0 +67643,952,817,48,5,5,0 +67644,952,13,36,7,7,0 +67645,952,154,22,10,10,0 +67646,952,807,6,15,15,0 +67647,952,822,29,8,8,0 +67648,952,832,12,11,11,0 +67649,952,830,38,6,6,1 +67650,952,835,0,18,18,0 +67651,952,825,6,14,14,0 +67652,952,815,8,13,13,0 +67653,952,18,3,16,16,0 +67654,952,831,0,22,22,0 +67655,952,836,0,21,21,0 +67656,952,828,0,20,20,0 +67657,952,8,61,2,2,0 +67658,952,837,0,23,23,0 +67659,952,821,0,19,19,0 +67660,952,4,8,12,12,0 +67661,952,826,22,9,9,0 +67662,952,838,1,17,17,0 +67663,953,3,106,1,1,4 +67664,953,1,82,2,2,1 +67665,953,20,60,5,5,0 +67666,953,817,66,3,3,0 +67667,953,13,37,7,7,0 +67668,953,154,22,11,11,0 +67669,953,807,14,14,14,0 +67670,953,822,29,8,8,0 +67671,953,832,16,13,13,0 +67672,953,830,38,6,6,1 +67673,953,835,0,19,19,0 +67674,953,825,6,15,15,0 +67675,953,815,23,9,9,0 +67676,953,18,5,16,16,0 +67677,953,831,0,22,22,0 +67678,953,836,0,21,21,0 +67679,953,828,0,20,20,0 +67680,953,8,61,4,4,0 +67681,953,837,0,23,23,0 +67682,953,821,0,18,18,0 +67683,953,4,18,12,12,0 +67684,953,826,22,10,10,0 +67685,953,838,1,17,17,0 +67686,954,3,116,1,1,4 +67687,954,1,107,2,2,2 +67688,954,20,78,3,3,0 +67689,954,817,72,4,4,0 +67690,954,13,37,8,8,0 +67691,954,154,22,11,11,0 +67692,954,807,18,13,13,0 +67693,954,822,44,7,7,0 +67694,954,832,18,14,14,0 +67695,954,830,50,6,6,1 +67696,954,835,0,19,19,0 +67697,954,825,6,15,15,0 +67698,954,815,24,9,9,0 +67699,954,18,5,16,16,0 +67700,954,831,0,22,22,0 +67701,954,836,0,21,21,0 +67702,954,828,0,20,20,0 +67703,954,8,69,5,5,0 +67704,954,837,0,23,23,0 +67705,954,821,0,18,18,0 +67706,954,4,18,12,12,0 +67707,954,826,22,10,10,0 +67708,954,838,1,17,17,0 +67733,955,20,96,3,3,0 +67734,955,817,78,5,5,0 +67735,955,13,38,9,9,0 +67736,955,154,22,11,11,0 +67737,955,807,20,12,12,0 +67738,955,822,52,7,7,0 +67739,955,832,18,14,14,0 +67740,955,830,54,6,6,1 +67741,955,835,0,19,19,0 +67742,955,825,6,15,15,0 +67743,955,815,39,8,8,0 +67744,955,18,5,16,16,0 +67745,955,831,0,21,21,0 +67746,955,836,0,22,22,0 +67747,955,828,0,20,20,0 +67748,955,8,81,4,4,0 +67749,955,837,0,23,23,0 +67750,955,821,0,18,18,0 +67751,955,4,18,13,13,0 +67752,955,826,22,10,10,0 +67753,955,838,1,17,17,0 +67754,956,3,153,1,1,5 +67755,956,1,142,2,2,3 +67756,956,20,96,3,3,0 +67757,956,817,88,5,5,0 +67758,956,13,38,9,9,0 +67759,956,154,28,10,10,0 +67760,956,807,20,13,13,0 +67761,956,822,54,7,7,0 +67762,956,832,22,12,12,0 +67763,956,830,72,6,6,1 +67764,956,835,0,20,20,0 +67765,956,825,6,16,16,0 +67766,956,815,39,8,8,0 +67767,956,18,13,15,15,0 +67768,956,831,0,22,22,0 +67769,956,836,1,17,17,0 +67770,956,828,0,21,21,0 +67771,956,8,96,4,4,0 +67772,956,837,0,23,23,0 +67773,956,821,0,19,19,0 +67774,956,4,18,14,14,0 +67775,956,826,22,11,11,0 +67776,956,838,1,18,18,0 +67777,957,3,168,1,1,5 +67778,957,1,167,2,2,4 +67779,957,20,98,5,5,0 +67780,957,817,100,4,4,0 +67781,957,13,38,9,9,0 +67782,957,154,28,10,10,0 +67783,957,807,26,11,11,0 +67784,957,822,54,7,7,0 +67785,957,832,26,12,12,0 +67786,957,830,90,6,6,1 +67787,957,835,0,20,20,0 +67788,957,825,6,16,16,0 +67789,957,815,47,8,8,0 +67790,957,18,13,15,15,0 +67791,957,831,0,22,22,0 +67792,957,836,1,17,17,0 +67793,957,828,0,21,21,0 +67794,957,8,106,3,3,0 +67795,957,837,0,23,23,0 +67796,957,821,0,19,19,0 +67797,957,4,18,14,14,0 +67798,957,826,23,13,13,0 +67799,957,838,1,18,18,0 +67800,958,3,186,2,2,5 +67801,958,1,192,1,1,5 +67802,958,20,110,5,5,0 +67803,958,817,115,3,3,0 +67804,958,13,38,9,9,0 +67805,958,154,28,11,11,0 +67806,958,807,27,12,12,0 +67807,958,822,56,7,7,0 +67808,958,832,30,10,10,0 +67809,958,830,100,6,6,1 +67810,958,835,0,20,20,0 +67811,958,825,6,16,16,0 +67812,958,815,47,8,8,0 +67813,958,18,13,15,15,0 +67814,958,831,0,22,22,0 +67815,958,836,1,17,17,0 +67816,958,828,0,21,21,0 +67817,958,8,114,4,4,0 +67818,958,837,0,23,23,0 +67819,958,821,0,19,19,0 +67820,958,4,24,13,13,0 +67821,958,826,23,14,14,0 +67822,958,838,1,18,18,0 +67823,959,3,198,2,2,5 +67824,959,1,217,1,1,6 +67825,959,20,120,5,5,0 +67826,959,817,133,3,3,0 +67827,959,13,38,9,9,0 +67828,959,154,28,12,12,0 +67829,959,807,33,10,10,0 +67830,959,822,58,7,7,0 +67831,959,832,30,11,11,0 +67832,959,830,115,6,6,1 +67833,959,835,0,20,20,0 +67834,959,825,6,16,16,0 +67835,959,815,48,8,8,0 +67836,959,18,17,15,15,0 +67837,959,831,0,22,22,0 +67838,959,836,1,17,17,0 +67839,959,828,0,21,21,0 +67840,959,8,122,4,4,0 +67841,959,837,0,23,23,0 +67842,959,821,0,19,19,0 +67843,959,4,24,13,13,0 +67844,959,826,23,14,14,0 +67845,959,838,1,18,18,0 +67846,960,3,223,2,2,6 +67847,960,1,232,1,1,6 +67848,960,20,128,4,4,0 +67849,960,817,151,3,3,0 +67850,960,13,39,10,10,0 +67851,960,154,28,13,13,0 +67852,960,807,45,9,9,0 +67853,960,822,62,7,7,0 +67854,960,832,30,12,12,0 +67855,960,830,115,6,6,1 +67856,960,835,0,20,20,0 +67857,960,825,6,16,16,0 +67858,960,815,58,8,8,0 +67859,960,18,17,15,15,0 +67860,960,831,0,22,22,0 +67861,960,836,1,17,17,0 +67862,960,828,0,21,21,0 +67863,960,8,124,5,5,0 +67864,960,837,0,23,23,0 +67865,960,821,0,19,19,0 +67866,960,4,30,11,11,0 +67867,960,826,23,14,14,0 +67868,960,838,1,18,18,0 +67869,960,839,0,24,24,0 +67870,961,3,248,2,2,7 +67871,961,1,250,1,1,6 +67872,961,20,143,4,4,0 +67873,961,817,161,3,3,0 +67874,961,13,41,10,10,0 +67875,961,154,28,13,13,0 +67876,961,807,46,9,9,0 +67877,961,822,70,7,7,0 +67878,961,832,30,12,12,0 +67879,961,830,121,6,6,1 +67880,961,835,0,20,20,0 +67881,961,825,6,16,16,0 +67882,961,815,62,8,8,0 +67883,961,18,17,15,15,0 +67884,961,831,0,22,22,0 +67885,961,836,1,17,17,0 +67886,961,828,0,21,21,0 +67887,961,8,136,5,5,0 +67888,961,837,0,23,23,0 +67889,961,821,0,19,19,0 +67890,961,4,30,11,11,0 +67891,961,826,23,14,14,0 +67892,961,838,1,18,18,0 +67893,961,839,0,24,24,0 +67894,962,3,273,1,1,8 +67895,962,1,265,2,2,6 +67896,962,20,153,4,4,0 +67897,962,817,179,3,3,0 +67898,962,13,41,10,10,0 +67899,962,154,28,13,13,0 +67900,962,807,46,9,9,0 +67901,962,822,70,7,7,0 +67902,962,832,30,12,12,0 +67903,962,830,129,6,6,1 +67904,962,835,0,20,20,0 +67905,962,825,7,16,16,0 +67906,962,815,66,8,8,0 +67907,962,18,17,15,15,0 +67908,962,831,0,22,22,0 +67909,962,836,1,17,17,0 +67910,962,828,0,21,21,0 +67911,962,8,148,5,5,0 +67912,962,837,0,23,23,0 +67913,962,821,0,19,19,0 +67914,962,4,36,11,11,0 +67915,962,826,25,14,14,0 +67916,962,838,1,18,18,0 +67917,962,839,0,24,24,0 +67918,963,3,288,1,1,8 +67919,963,1,265,2,2,6 +67920,963,20,153,5,5,0 +67921,963,817,204,3,3,1 +67922,963,13,41,11,11,0 +67923,963,154,28,13,13,0 +67924,963,807,50,9,9,0 +67925,963,822,80,7,7,0 +67926,963,832,30,12,12,0 +67927,963,830,147,6,6,1 +67928,963,835,1,17,17,0 +67929,963,825,7,16,16,0 +67930,963,815,74,8,8,0 +67931,963,18,19,15,15,0 +67932,963,831,0,22,22,0 +67933,963,836,1,18,18,0 +67934,963,828,0,21,21,0 +67935,963,8,160,4,4,0 +67936,963,837,0,23,23,0 +67937,963,821,0,20,20,0 +67938,963,4,42,10,10,0 +67939,963,826,25,14,14,0 +67940,963,838,1,19,19,0 +67941,963,839,0,24,24,0 +67942,964,3,313,1,1,9 +67943,964,1,280,2,2,6 +67944,964,20,165,6,6,0 +67945,964,817,212,3,3,1 +67946,964,13,43,10,10,0 +67947,964,154,28,13,13,0 +67948,964,807,54,9,9,0 +67949,964,822,81,7,7,0 +67950,964,832,30,12,12,0 +67951,964,830,165,5,5,1 +67952,964,835,1,17,17,0 +67953,964,825,7,16,16,0 +67954,964,815,80,8,8,0 +67955,964,18,19,15,15,0 +67956,964,831,0,22,22,0 +67957,964,836,1,18,18,0 +67958,964,828,0,21,21,0 +67959,964,8,170,4,4,0 +67960,964,837,0,23,23,0 +67961,964,821,0,20,20,0 +67962,964,4,42,11,11,0 +67963,964,826,25,14,14,0 +67964,964,838,1,19,19,0 +67965,964,839,0,24,24,0 +68061,965,839,0,24,24,0 +68060,965,838,1,19,19,0 +68059,965,826,25,14,14,0 +68058,965,4,52,10,10,0 +68056,965,837,0,23,23,0 +68055,965,8,170,5,5,0 +68054,965,828,0,21,21,0 +68053,965,836,1,18,18,0 +68051,965,18,21,15,15,0 +68050,965,815,84,7,7,0 +68049,965,825,7,16,16,0 +68047,965,830,165,6,6,1 +68046,965,832,38,12,12,0 +68044,965,807,54,9,9,0 +68041,965,817,227,3,3,1 +68048,965,835,1,17,17,0 +68052,965,831,0,22,22,0 +68045,965,822,81,8,8,0 +68057,965,821,0,20,20,0 +68042,965,13,49,11,11,0 +68043,965,154,29,13,13,0 +68039,965,1,305,2,2,7 +68040,965,20,177,4,4,0 +68038,965,3,331,1,1,9 +68080,966,837,0,23,23,0 +68077,966,836,1,18,18,0 +68075,966,18,21,15,15,0 +68110,967,20,197,4,4,0 +68109,967,1,355,2,2,9 +68108,967,3,367,1,1,9 +68085,966,839,0,24,24,0 +68084,966,838,1,19,19,0 +68083,966,826,25,14,14,0 +68082,966,4,52,10,10,0 +68081,966,821,0,20,20,0 +68079,966,8,178,5,5,0 +68078,966,828,0,21,21,0 +68076,966,831,0,22,22,0 +68072,966,835,1,17,17,0 +68073,966,825,7,16,16,0 +68074,966,815,85,7,7,0 +68071,966,830,177,6,6,1 +68070,966,832,38,12,12,0 +68069,966,822,85,8,8,0 +68068,966,807,60,9,9,0 +68067,966,154,29,13,13,0 +68066,966,13,51,11,11,0 +68065,966,817,242,3,3,1 +68064,966,20,187,4,4,0 +68062,966,3,349,1,1,9 +68063,966,1,330,2,2,8 +68111,967,817,246,3,3,1 +68112,967,13,51,11,11,0 +68113,967,154,29,13,13,0 +68114,967,807,66,9,9,0 +68115,967,822,85,8,8,0 +68116,967,832,46,12,12,0 +68117,967,830,192,5,5,1 +68118,967,835,1,18,18,0 +68119,967,825,7,16,16,0 +68120,967,815,97,7,7,0 +68121,967,18,21,15,15,0 +68122,967,831,2,17,17,0 +68123,967,836,1,19,19,0 +68124,967,828,0,22,22,0 +68125,967,8,178,6,6,0 +68126,967,837,0,24,24,0 +68127,967,821,0,21,21,0 +68128,967,4,53,10,10,0 +68129,967,826,25,14,14,0 +68130,967,838,1,20,20,0 +68131,967,839,0,23,23,0 +68132,968,3,385,1,1,9 +68133,968,1,380,2,2,10 +68134,968,20,212,4,4,0 +68135,968,817,256,3,3,1 +68136,968,13,53,11,11,0 +68137,968,154,29,13,13,0 +68138,968,807,72,9,9,0 +68139,968,822,85,8,8,0 +68140,968,832,46,12,12,0 +68141,968,830,204,5,5,1 +68142,968,835,1,18,18,0 +68143,968,825,7,16,16,0 +68144,968,815,101,7,7,0 +68145,968,18,21,15,15,0 +68146,968,831,2,17,17,0 +68147,968,836,1,19,19,0 +68148,968,828,0,22,22,0 +68149,968,8,186,6,6,0 +68150,968,837,0,24,24,0 +68151,968,821,0,21,21,0 +68152,968,4,54,10,10,0 +68153,968,826,25,14,14,0 +68154,968,838,1,20,20,0 +68155,968,839,0,23,23,0 +68161,969,13,8,6,6,0 +68162,969,815,6,7,7,0 +68163,969,832,4,8,8,0 +68164,969,826,2,9,9,0 +68165,969,839,1,10,10,0 +68166,969,807,0,11,11,0 +68167,969,841,0,12,12,0 +68168,969,838,0,13,13,0 +68169,969,4,0,14,14,0 +68170,969,825,0,15,15,0 +68171,969,840,0,16,16,0 +68172,969,817,0,17,17,0 +68173,969,828,0,18,18,0 +68174,969,835,0,19,19,0 +68175,969,154,0,20,20,0 +68176,970,20,43,1,1,1 +68177,970,1,43,2,2,1 +68178,970,822,23,4,4,0 +68179,970,8,22,5,5,0 +68180,970,830,25,3,3,0 +68181,970,13,8,8,8,0 +68182,970,815,8,9,9,0 +68183,970,832,10,7,7,0 +68184,970,826,2,11,11,0 +68185,970,839,2,12,12,0 +68186,970,807,0,13,13,0 +68187,970,841,0,15,15,0 +68188,970,838,0,16,16,0 +68189,970,4,0,19,19,0 +68190,970,825,4,10,10,0 +68191,970,840,0,20,20,0 +68192,970,817,12,6,6,0 +68193,970,828,0,18,18,0 +68194,970,835,0,17,17,0 +68195,970,154,0,14,14,0 +68196,971,20,68,1,1,2 +68197,971,1,61,2,2,1 +68198,971,822,38,3,3,0 +68199,971,8,34,4,4,0 +68200,971,830,25,5,5,0 +68201,971,13,16,7,7,0 +68202,971,815,14,8,8,0 +68203,971,832,10,9,9,0 +68204,971,826,2,14,14,0 +68205,971,839,3,12,12,0 +68206,971,807,2,13,13,0 +68207,971,841,0,16,16,0 +68208,971,838,0,18,18,0 +68209,971,4,0,19,19,0 +68210,971,825,4,11,11,0 +68211,971,840,0,21,21,0 +68212,971,817,22,6,6,0 +68213,971,828,0,20,20,0 +68214,971,835,0,17,17,0 +68215,971,154,4,10,10,0 +68216,971,836,0,15,15,0 +68217,972,20,86,1,1,2 +68218,972,1,73,2,2,1 +68219,972,822,63,3,3,1 +68220,972,8,49,4,4,0 +68221,972,830,35,5,5,0 +68222,972,13,18,8,8,0 +68223,972,815,22,7,7,0 +68224,972,832,11,9,9,0 +68225,972,826,2,14,14,0 +68226,972,839,9,10,10,0 +68227,972,807,6,11,11,0 +68228,972,841,0,17,17,0 +68229,972,838,0,19,19,0 +68230,972,4,0,20,20,0 +68231,972,825,4,13,13,0 +68232,972,840,0,16,16,0 +68233,972,817,22,6,6,0 +68234,972,828,0,21,21,0 +68235,972,835,0,18,18,0 +68236,972,154,4,12,12,0 +68237,972,836,0,15,15,0 +68238,973,20,104,1,1,2 +68239,973,1,98,2,2,2 +68240,973,822,63,3,3,1 +68241,973,8,49,4,4,0 +68242,973,830,35,6,6,0 +68243,973,13,18,9,9,0 +68244,973,815,34,7,7,0 +68245,973,832,17,10,10,0 +68246,973,826,4,15,15,0 +68247,973,839,19,8,8,0 +68248,973,807,14,11,11,0 +68249,973,841,0,19,19,0 +68250,973,838,0,21,21,0 +68251,973,4,0,18,18,0 +68252,973,825,4,14,14,0 +68253,973,840,0,17,17,0 +68254,973,817,37,5,5,0 +68255,973,828,0,16,16,0 +68256,973,835,0,20,20,0 +68257,973,154,5,12,12,0 +68258,973,836,4,13,13,0 +68259,974,20,129,1,1,3 +68260,974,1,104,2,2,2 +68261,974,822,75,3,3,1 +68262,974,8,67,4,4,0 +68263,974,830,45,6,6,0 +68264,974,13,20,9,9,0 +68265,974,815,34,7,7,0 +68266,974,832,25,8,8,0 +68267,974,826,4,15,15,0 +68268,974,839,19,10,10,0 +68269,974,807,14,11,11,0 +68270,974,841,0,20,20,0 +68271,974,838,0,21,21,0 +68272,974,4,0,19,19,0 +68273,974,825,5,13,13,0 +68274,974,840,0,18,18,0 +68275,974,817,52,5,5,0 +68276,974,828,0,17,17,0 +68277,974,835,0,16,16,0 +68278,974,154,9,12,12,0 +68279,974,836,4,14,14,0 +68280,974,18,0,22,22,0 +68281,975,20,141,1,1,3 +68282,975,1,129,2,2,3 +68283,975,822,93,3,3,1 +68284,975,8,73,4,4,0 +68285,975,830,45,6,6,0 +68286,975,13,20,10,10,0 +68287,975,815,44,7,7,0 +68288,975,832,25,9,9,0 +68289,975,826,4,15,15,0 +68290,975,839,27,8,8,0 +68291,975,807,18,11,11,0 +68292,975,841,0,20,20,0 +68293,975,838,0,21,21,0 +68294,975,4,0,19,19,0 +68295,975,825,5,13,13,0 +68296,975,840,2,16,16,0 +68297,975,817,67,5,5,0 +68298,975,828,0,18,18,0 +68299,975,835,0,17,17,0 +68300,975,154,10,12,12,0 +68301,975,836,4,14,14,0 +68302,975,18,0,22,22,0 +68303,976,20,153,1,1,3 +68304,976,1,139,2,2,3 +68305,976,822,111,3,3,1 +68306,976,8,73,5,5,0 +68307,976,830,45,6,6,0 +68308,976,13,20,10,10,0 +68309,976,815,44,7,7,0 +68310,976,832,29,9,9,0 +68311,976,826,4,16,16,0 +68312,976,839,35,8,8,0 +68313,976,807,18,11,11,0 +68314,976,841,0,21,21,0 +68315,976,838,0,20,20,0 +68316,976,4,2,17,17,0 +68317,976,825,11,13,13,0 +68318,976,840,17,12,12,0 +68319,976,817,92,4,4,1 +68320,976,828,0,19,19,0 +68321,976,835,0,18,18,0 +68322,976,154,10,14,14,0 +68323,976,836,5,15,15,0 +68324,976,18,0,22,22,0 +68325,977,20,171,1,1,3 +68326,977,1,151,2,2,3 +68327,977,822,136,3,3,2 +68328,977,8,83,5,5,0 +68329,977,830,45,7,7,0 +68330,977,13,22,10,10,0 +68331,977,815,50,6,6,0 +68332,977,832,29,9,9,0 +68333,977,826,4,16,16,0 +68334,977,839,39,8,8,0 +68335,977,807,18,12,12,0 +68336,977,841,0,21,21,0 +68337,977,838,0,20,20,0 +68338,977,4,2,17,17,0 +68339,977,825,11,14,14,0 +68340,977,840,18,11,11,0 +68341,977,817,107,4,4,1 +68342,977,828,0,19,19,0 +68343,977,835,0,18,18,0 +68344,977,154,18,13,13,0 +68345,977,836,5,15,15,0 +68346,977,18,0,22,22,0 +68347,978,20,177,1,1,3 +68348,978,1,176,2,2,4 +68349,978,822,154,3,3,2 +68350,978,8,98,5,5,0 +68351,978,830,57,6,6,0 +68352,978,13,23,11,11,0 +68353,978,815,52,7,7,0 +68354,978,832,29,9,9,0 +68355,978,826,4,16,16,0 +68356,978,839,43,8,8,0 +68357,978,807,26,10,10,0 +68358,978,841,0,21,21,0 +68359,978,838,0,20,20,0 +68360,978,4,2,17,17,0 +68361,978,825,11,14,14,0 +68362,978,840,18,12,12,0 +68363,978,817,117,4,4,1 +68364,978,828,0,19,19,0 +68365,978,835,0,18,18,0 +68366,978,154,18,13,13,0 +68367,978,836,5,15,15,0 +68368,978,18,0,22,22,0 +68369,979,20,202,1,1,4 +68370,979,1,188,2,2,4 +68371,979,822,169,3,3,2 +68372,979,8,116,5,5,0 +68373,979,830,67,6,6,0 +68374,979,13,23,11,11,0 +68375,979,815,56,7,7,0 +68376,979,832,35,9,9,0 +68377,979,826,4,17,17,0 +68378,979,839,45,8,8,0 +68379,979,807,26,10,10,0 +68380,979,841,0,21,21,0 +68381,979,838,1,18,18,0 +68382,979,4,10,15,15,0 +68383,979,825,11,14,14,0 +68384,979,840,18,12,12,0 +68385,979,817,117,4,4,1 +68386,979,828,0,20,20,0 +68387,979,835,0,19,19,0 +68388,979,154,18,13,13,0 +68389,979,836,5,16,16,0 +68390,979,18,0,22,22,0 +68391,979,814,0,23,23,0 +68392,980,20,220,1,1,4 +68393,980,1,213,2,2,5 +68394,980,822,179,3,3,2 +68395,980,8,128,5,5,0 +68396,980,830,67,6,6,0 +68397,980,13,27,11,11,0 +68398,980,815,56,7,7,0 +68399,980,832,36,9,9,0 +68400,980,826,4,17,17,0 +68401,980,839,47,8,8,0 +68402,980,807,34,10,10,0 +68403,980,841,0,21,21,0 +68404,980,838,1,18,18,0 +68405,980,4,10,15,15,0 +68406,980,825,11,14,14,0 +68407,980,840,18,13,13,0 +68408,980,817,132,4,4,1 +68409,980,828,0,20,20,0 +68410,980,835,0,19,19,0 +68411,980,154,24,12,12,0 +68412,980,836,5,16,16,0 +68413,980,18,0,22,22,0 +68414,980,814,0,23,23,0 +68415,981,20,235,2,2,4 +68416,981,1,238,1,1,6 +68417,981,822,197,3,3,2 +68418,981,8,138,5,5,0 +68419,981,830,68,6,6,0 +68420,981,13,31,11,11,0 +68421,981,815,58,7,7,0 +68422,981,832,36,9,9,0 +68423,981,826,4,17,17,0 +68424,981,839,55,8,8,0 +68425,981,807,34,10,10,0 +68426,981,841,0,21,21,0 +68427,981,838,1,18,18,0 +68428,981,4,10,15,15,0 +68429,981,825,11,14,14,0 +68430,981,840,24,12,12,0 +68431,981,817,144,4,4,1 +68432,981,828,0,20,20,0 +68433,981,835,0,19,19,0 +68434,981,154,24,13,13,0 +68435,981,836,5,16,16,0 +68436,981,18,0,22,22,0 +68437,981,814,0,23,23,0 +68438,982,20,235,2,2,4 +68439,982,1,263,1,1,7 +68440,982,822,212,3,3,2 +68441,982,8,138,5,5,0 +68442,982,830,68,6,6,0 +68443,982,13,31,11,11,0 +68444,982,815,68,7,7,0 +68445,982,832,48,9,9,0 +68446,982,826,4,19,19,0 +68447,982,839,56,8,8,0 +68448,982,807,34,10,10,0 +68449,982,841,0,21,21,0 +68450,982,838,7,17,17,0 +68451,982,4,10,15,15,0 +68452,982,825,11,14,14,0 +68453,982,840,28,12,12,0 +68454,982,817,162,4,4,1 +68455,982,828,0,20,20,0 +68456,982,835,8,16,16,0 +68457,982,154,26,13,13,0 +68458,982,836,5,18,18,0 +68459,982,18,0,22,22,0 +68460,982,814,0,23,23,0 +68461,983,20,247,2,2,4 +68462,983,1,281,1,1,7 +68463,983,822,222,3,3,2 +68464,983,8,138,5,5,0 +68465,983,830,93,6,6,1 +68466,983,13,33,11,11,0 +68467,983,815,76,7,7,0 +68468,983,832,48,9,9,0 +68469,983,826,4,19,19,0 +68470,983,839,57,8,8,0 +68471,983,807,34,10,10,0 +68472,983,841,0,21,21,0 +68473,983,838,13,14,14,0 +68474,983,4,10,16,16,0 +68475,983,825,11,15,15,0 +68476,983,840,32,12,12,0 +68477,983,817,177,4,4,1 +68478,983,828,0,20,20,0 +68479,983,835,8,17,17,0 +68480,983,154,26,13,13,0 +68481,983,836,5,18,18,0 +68482,983,18,0,23,23,0 +68483,983,814,0,24,24,0 +68484,983,842,0,22,22,0 +68485,984,20,247,2,2,4 +68486,984,1,306,1,1,8 +68487,984,822,234,3,3,2 +68488,984,8,148,5,5,0 +68489,984,830,111,6,6,1 +68490,984,13,34,11,11,0 +68491,984,815,82,7,7,0 +68492,984,832,48,9,9,0 +68493,984,826,4,19,19,0 +68494,984,839,65,8,8,0 +68495,984,807,34,10,10,0 +68496,984,841,0,21,21,0 +68497,984,838,13,15,15,0 +68498,984,4,10,16,16,0 +68499,984,825,15,14,14,0 +68500,984,840,32,12,12,0 +68501,984,817,192,4,4,1 +68502,984,828,0,20,20,0 +68503,984,835,8,17,17,0 +68504,984,154,28,13,13,0 +68505,984,836,5,18,18,0 +68506,984,18,0,23,23,0 +68507,984,814,0,24,24,0 +68508,984,842,0,22,22,0 +68509,985,20,265,2,2,4 +68510,985,1,331,1,1,9 +68511,985,822,244,3,3,2 +68512,985,8,163,5,5,0 +68513,985,830,123,6,6,1 +68514,985,13,36,10,10,0 +68515,985,815,86,7,7,0 +68516,985,832,54,9,9,0 +68517,985,826,5,19,19,0 +68518,985,839,73,8,8,0 +68519,985,807,34,11,11,0 +68520,985,841,0,21,21,0 +68521,985,838,13,15,15,0 +68522,985,4,10,16,16,0 +68523,985,825,15,14,14,0 +68524,985,840,32,12,12,0 +68525,985,817,192,4,4,1 +68526,985,828,0,20,20,0 +68527,985,835,8,17,17,0 +68528,985,154,28,13,13,0 +68529,985,836,5,18,18,0 +68530,985,18,0,24,24,0 +68531,985,814,0,25,25,0 +68532,985,842,0,22,22,0 +68533,985,843,0,23,23,0 +68534,986,20,277,2,2,4 +68535,986,1,333,1,1,9 +68536,986,822,262,3,3,2 +68537,986,8,178,5,5,0 +68538,986,830,148,6,6,2 +68539,986,13,36,11,11,0 +68540,986,815,92,7,7,0 +68541,986,832,54,9,9,0 +68542,986,826,5,19,19,0 +68543,986,839,83,8,8,0 +68544,986,807,34,12,12,0 +68545,986,841,0,21,21,0 +68546,986,838,13,15,15,0 +68547,986,4,11,16,16,0 +68548,986,825,19,14,14,0 +68549,986,840,40,10,10,0 +68550,986,817,192,4,4,1 +68551,986,828,0,20,20,0 +68552,986,835,8,17,17,0 +68553,986,154,28,13,13,0 +68554,986,836,5,18,18,0 +68555,986,18,0,24,24,0 +68556,986,814,0,25,25,0 +68557,986,842,0,22,22,0 +68558,986,843,0,23,23,0 +68559,987,20,302,2,2,5 +68560,987,1,345,1,1,9 +68561,987,822,280,3,3,2 +68562,987,8,193,5,5,0 +68563,987,830,158,6,6,2 +68564,987,13,42,10,10,0 +68565,987,815,94,7,7,0 +68566,987,832,54,9,9,0 +68567,987,826,5,19,19,0 +68568,987,839,83,8,8,0 +68569,987,807,35,12,12,0 +68570,987,841,0,22,22,0 +68571,987,838,13,16,16,0 +68572,987,4,15,15,15,0 +68573,987,825,19,14,14,0 +68574,987,840,40,11,11,0 +68575,987,817,200,4,4,1 +68576,987,828,0,20,20,0 +68577,987,835,8,17,17,0 +68578,987,154,28,13,13,0 +68579,987,836,5,18,18,0 +68580,987,18,0,24,24,0 +68581,987,814,0,25,25,0 +68582,987,842,0,21,21,0 +68583,987,843,0,23,23,0 +68584,988,20,317,2,2,5 +68585,988,1,363,1,1,9 +68586,988,822,305,3,3,3 +68587,988,8,205,4,4,0 +68588,988,830,168,6,6,2 +68589,988,13,43,11,11,0 +68590,988,815,100,7,7,0 +68591,988,832,54,9,9,0 +68592,988,826,5,19,19,0 +68593,988,839,87,8,8,0 +68594,988,807,43,10,10,0 +68595,988,841,0,22,22,0 +68596,988,838,13,16,16,0 +68597,988,4,17,15,15,0 +68598,988,825,19,14,14,0 +68599,988,840,40,12,12,0 +68600,988,817,200,5,5,1 +68601,988,828,0,20,20,0 +68602,988,835,8,17,17,0 +68603,988,154,28,13,13,0 +68604,988,836,5,18,18,0 +68605,988,18,0,24,24,0 +68606,988,814,0,25,25,0 +68607,988,842,0,21,21,0 +68608,988,843,0,23,23,0 diff --git a/database/formula_1/data_csv/drivers.csv b/database/formula_1/data_csv/drivers.csv new file mode 100644 index 0000000000000000000000000000000000000000..a3376042795fade997799dc94e6687e43937fc48 --- /dev/null +++ b/database/formula_1/data_csv/drivers.csv @@ -0,0 +1,843 @@ +driverId,driverRef,number,code,forename,surname,dob,nationality,url +1,hamilton,44,HAM,Lewis,Hamilton,07/01/1985,British,http://en.wikipedia.org/wiki/Lewis_Hamilton +2,heidfeld,,HEI,Nick,Heidfeld,10/05/1977,German,http://en.wikipedia.org/wiki/Nick_Heidfeld +3,rosberg,6,ROS,Nico,Rosberg,27/06/1985,German,http://en.wikipedia.org/wiki/Nico_Rosberg +4,alonso,14,ALO,Fernando,Alonso,29/07/1981,Spanish,http://en.wikipedia.org/wiki/Fernando_Alonso +5,kovalainen,,KOV,Heikki,Kovalainen,19/10/1981,Finnish,http://en.wikipedia.org/wiki/Heikki_Kovalainen +6,nakajima,,NAK,Kazuki,Nakajima,11/01/1985,Japanese,http://en.wikipedia.org/wiki/Kazuki_Nakajima +7,bourdais,,BOU,S̩bastien,Bourdais,28/02/1979,French,http://en.wikipedia.org/wiki/S%C3%A9bastien_Bourdais +8,raikkonen,7,RAI,Kimi,R_ikk̦nen,17/10/1979,Finnish,http://en.wikipedia.org/wiki/Kimi_R%C3%A4ikk%C3%B6nen +9,kubica,,KUB,Robert,Kubica,07/12/1984,Polish,http://en.wikipedia.org/wiki/Robert_Kubica +10,glock,,GLO,Timo,Glock,18/03/1982,German,http://en.wikipedia.org/wiki/Timo_Glock +11,sato,,SAT,Takuma,Sato,28/01/1977,Japanese,http://en.wikipedia.org/wiki/Takuma_Sato +12,piquet_jr,,PIQ,Nelson,Piquet Jr.,25/07/1985,Brazilian,"http://en.wikipedia.org/wiki/Nelson_Piquet,_Jr." +13,massa,19,MAS,Felipe,Massa,25/04/1981,Brazilian,http://en.wikipedia.org/wiki/Felipe_Massa +14,coulthard,,COU,David,Coulthard,27/03/1971,British,http://en.wikipedia.org/wiki/David_Coulthard +15,trulli,,TRU,Jarno,Trulli,13/07/1974,Italian,http://en.wikipedia.org/wiki/Jarno_Trulli +16,sutil,99,SUT,Adrian,Sutil,11/01/1983,German,http://en.wikipedia.org/wiki/Adrian_Sutil +17,webber,,WEB,Mark,Webber,27/08/1976,Australian,http://en.wikipedia.org/wiki/Mark_Webber +18,button,22,BUT,Jenson,Button,19/01/1980,British,http://en.wikipedia.org/wiki/Jenson_Button +19,davidson,,DAV,Anthony,Davidson,18/04/1979,British,http://en.wikipedia.org/wiki/Anthony_Davidson +20,vettel,5,VET,Sebastian,Vettel,03/07/1987,German,http://en.wikipedia.org/wiki/Sebastian_Vettel +21,fisichella,,FIS,Giancarlo,Fisichella,14/01/1973,Italian,http://en.wikipedia.org/wiki/Giancarlo_Fisichella +22,barrichello,,BAR,Rubens,Barrichello,23/05/1972,Brazilian,http://en.wikipedia.org/wiki/Rubens_Barrichello +23,ralf_schumacher,,SCH,Ralf,Schumacher,30/06/1975,German,http://en.wikipedia.org/wiki/Ralf_Schumacher +24,liuzzi,,LIU,Vitantonio,Liuzzi,06/08/1980,Italian,http://en.wikipedia.org/wiki/Vitantonio_Liuzzi +25,wurz,,WUR,Alexander,Wurz,15/02/1974,Austrian,http://en.wikipedia.org/wiki/Alexander_Wurz +26,speed,,SPE,Scott,Speed,24/01/1983,American,http://en.wikipedia.org/wiki/Scott_Speed +27,albers,,ALB,Christijan,Albers,16/04/1979,Dutch,http://en.wikipedia.org/wiki/Christijan_Albers +28,markus_winkelhock,,WIN,Markus,Winkelhock,13/06/1980,German,http://en.wikipedia.org/wiki/Markus_Winkelhock +29,yamamoto,,YAM,Sakon,Yamamoto,09/07/1982,Japanese,http://en.wikipedia.org/wiki/Sakon_Yamamoto +30,michael_schumacher,,MSC,Michael,Schumacher,03/01/1969,German,http://en.wikipedia.org/wiki/Michael_Schumacher +31,montoya,,MON,Juan,Pablo Montoya,20/09/1975,Colombian,http://en.wikipedia.org/wiki/Juan_Pablo_Montoya +32,klien,,KLI,Christian,Klien,07/02/1983,Austrian,http://en.wikipedia.org/wiki/Christian_Klien +33,monteiro,,TMO,Tiago,Monteiro,24/07/1976,Portuguese,http://en.wikipedia.org/wiki/Tiago_Monteiro +34,ide,,IDE,Yuji,Ide,21/01/1975,Japanese,http://en.wikipedia.org/wiki/Yuji_Ide +35,villeneuve,,VIL,Jacques,Villeneuve,09/04/1971,Canadian,http://en.wikipedia.org/wiki/Jacques_Villeneuve +36,montagny,,FMO,Franck,Montagny,05/01/1978,French,http://en.wikipedia.org/wiki/Franck_Montagny +37,rosa,,DLR,Pedro,de la Rosa,24/02/1971,Spanish,http://en.wikipedia.org/wiki/Pedro_de_la_Rosa +38,doornbos,,DOO,Robert,Doornbos,23/09/1981,Dutch,http://en.wikipedia.org/wiki/Robert_Doornbos +39,karthikeyan,,KAR,Narain,Karthikeyan,14/01/1977,Indian,http://en.wikipedia.org/wiki/Narain_Karthikeyan +40,friesacher,,FRI,Patrick,Friesacher,26/09/1980,Austrian,http://en.wikipedia.org/wiki/Patrick_Friesacher +41,zonta,,ZON,Ricardo,Zonta,23/03/1976,Brazilian,http://en.wikipedia.org/wiki/Ricardo_Zonta +42,pizzonia,,PIZ,Ant̫nio,Pizzonia,11/09/1980,Brazilian,http://en.wikipedia.org/wiki/Ant%C3%B4nio_Pizzonia +43,matta,,,Cristiano,da Matta,19/09/1973,Brazilian,http://en.wikipedia.org/wiki/Cristiano_da_Matta +44,panis,,,Olivier,Panis,02/09/1966,French,http://en.wikipedia.org/wiki/Olivier_Panis +45,pantano,,,Giorgio,Pantano,04/02/1979,Italian,http://en.wikipedia.org/wiki/Giorgio_Pantano +46,bruni,,,Gianmaria,Bruni,30/05/1981,Italian,http://en.wikipedia.org/wiki/Gianmaria_Bruni +47,baumgartner,,,Zsolt,Baumgartner,01/01/1981,Hungarian,http://en.wikipedia.org/wiki/Zsolt_Baumgartner +48,gene,,,Marc,Gen̩,29/03/1974,Spanish,http://en.wikipedia.org/wiki/Marc_Gen%C3%A9 +49,frentzen,,,Heinz-Harald,Frentzen,18/05/1967,German,http://en.wikipedia.org/wiki/Heinz-Harald_Frentzen +50,verstappen,,,Jos,Verstappen,04/03/1972,Dutch,http://en.wikipedia.org/wiki/Jos_Verstappen +51,wilson,,,Justin,Wilson,31/07/1978,British,http://en.wikipedia.org/wiki/Justin_Wilson_(racing_driver) +52,firman,,,Ralph,Firman,20/05/1975,Irish,http://en.wikipedia.org/wiki/Ralph_Firman +53,kiesa,,,Nicolas,Kiesa,03/03/1978,Danish,http://en.wikipedia.org/wiki/Nicolas_Kiesa +54,burti,,,Luciano,Burti,05/03/1975,Brazilian,http://en.wikipedia.org/wiki/Luciano_Burti +55,alesi,,,Jean,Alesi,11/06/1964,French,http://en.wikipedia.org/wiki/Jean_Alesi +56,irvine,,,Eddie,Irvine,10/11/1965,British,http://en.wikipedia.org/wiki/Eddie_Irvine +57,hakkinen,,,Mika,H_kkinen,28/09/1968,Finnish,http://en.wikipedia.org/wiki/Mika_H%C3%A4kkinen +58,marques,,,Tarso,Marques,19/01/1976,Brazilian,http://en.wikipedia.org/wiki/Tarso_Marques +59,bernoldi,,,Enrique,Bernoldi,19/10/1978,Brazilian,http://en.wikipedia.org/wiki/Enrique_Bernoldi +60,mazzacane,,,Gast_n,Mazzacane,08/05/1975,Argentine,http://en.wikipedia.org/wiki/Gast%C3%B3n_Mazzacane +61,enge,,,Tom,Enge,11/09/1976,Czech,http://en.wikipedia.org/wiki/Tom%C3%A1%C5%A1_Enge +62,yoong,,,Alex,Yoong,20/07/1976,Malaysian,http://en.wikipedia.org/wiki/Alex_Yoong +63,salo,,,Mika,Salo,30/11/1966,Finnish,http://en.wikipedia.org/wiki/Mika_Salo +64,diniz,,,Pedro,Diniz,22/05/1970,Brazilian,http://en.wikipedia.org/wiki/Pedro_Diniz +65,herbert,,,Johnny,Herbert,25/06/1964,British,http://en.wikipedia.org/wiki/Johnny_Herbert +66,mcnish,,,Allan,McNish,29/12/1969,British,http://en.wikipedia.org/wiki/Allan_McNish +67,buemi,,BUE,S̩bastien,Buemi,31/10/1988,Swiss,http://en.wikipedia.org/wiki/S%C3%A9bastien_Buemi +68,takagi,,,Toranosuke,Takagi,12/02/1974,Japanese,http://en.wikipedia.org/wiki/Toranosuke_Takagi +69,badoer,,BAD,Luca,Badoer,25/01/1971,Italian,http://en.wikipedia.org/wiki/Luca_Badoer +70,zanardi,,,Alessandro,Zanardi,23/10/1966,Italian,http://en.wikipedia.org/wiki/Alex_Zanardi +71,damon_hill,,,Damon,Hill,17/09/1960,British,http://en.wikipedia.org/wiki/Damon_Hill +72,sarrazin,,,St̩phane,Sarrazin,02/11/1975,French,http://en.wikipedia.org/wiki/St%C3%A9phane_Sarrazin +73,rosset,,,Ricardo,Rosset,27/07/1968,Brazilian,http://en.wikipedia.org/wiki/Ricardo_Rosset +74,tuero,,,Esteban,Tuero,22/04/1978,Argentine,http://en.wikipedia.org/wiki/Esteban_Tuero +75,nakano,,,Shinji,Nakano,01/04/1971,Japanese,http://en.wikipedia.org/wiki/Shinji_Nakano +76,magnussen,,MAG,Jan,Magnussen,04/07/1973,Danish,http://en.wikipedia.org/wiki/Jan_Magnussen +77,berger,,,Gerhard,Berger,27/08/1959,Austrian,http://en.wikipedia.org/wiki/Gerhard_Berger +78,larini,,,Nicola,Larini,19/03/1964,Italian,http://en.wikipedia.org/wiki/Nicola_Larini +79,katayama,,,Ukyo,Katayama,29/05/1963,Japanese,http://en.wikipedia.org/wiki/Ukyo_Katayama +80,sospiri,,,Vincenzo,Sospiri,07/10/1966,Italian,http://en.wikipedia.org/wiki/Vincenzo_Sospiri +81,morbidelli,,,Gianni,Morbidelli,13/01/1968,Italian,http://en.wikipedia.org/wiki/Gianni_Morbidelli +82,fontana,,,Norberto,Fontana,20/01/1975,Argentine,http://en.wikipedia.org/wiki/Norberto_Fontana +83,lamy,,,Pedro,Lamy,20/03/1972,Portuguese,http://en.wikipedia.org/wiki/Pedro_Lamy +84,brundle,,,Martin,Brundle,01/06/1959,British,http://en.wikipedia.org/wiki/Martin_Brundle +85,montermini,,,Andrea,Montermini,30/05/1964,Italian,http://en.wikipedia.org/wiki/Andrea_Montermini +86,lavaggi,,,Giovanni,Lavaggi,18/02/1958,Italian,http://en.wikipedia.org/wiki/Giovanni_Lavaggi +87,blundell,,,Mark,Blundell,08/04/1966,British,http://en.wikipedia.org/wiki/Mark_Blundell +88,suzuki,,,Aguri,Suzuki,08/09/1960,Japanese,http://en.wikipedia.org/wiki/Aguri_Suzuki +89,inoue,,,Taki,Inoue,05/09/1963,Japanese,http://en.wikipedia.org/wiki/Taki_Inoue +90,moreno,,,Roberto,Moreno,11/02/1959,Brazilian,http://en.wikipedia.org/wiki/Roberto_Moreno +91,wendlinger,,,Karl,Wendlinger,20/12/1968,Austrian,http://en.wikipedia.org/wiki/Karl_Wendlinger +92,gachot,,,Bertrand,Gachot,23/12/1962,Belgian,http://en.wikipedia.org/wiki/Bertrand_Gachot +93,schiattarella,,,Domenico,Schiattarella,17/11/1967,Italian,http://en.wikipedia.org/wiki/Domenico_Schiattarella +94,martini,,,Pierluigi,Martini,23/04/1961,Italian,http://en.wikipedia.org/wiki/Pierluigi_Martini +95,mansell,,,Nigel,Mansell,08/08/1953,British,http://en.wikipedia.org/wiki/Nigel_Mansell +96,boullion,,,Jean-Christophe,Boullion,27/12/1969,French,http://en.wikipedia.org/wiki/Jean-Christophe_Boullion +97,papis,,,Massimiliano,Papis,03/10/1969,Italian,http://en.wikipedia.org/wiki/Massimiliano_Papis +98,deletraz,,,Jean-Denis,D̩l̩traz,01/10/1963,Swiss,http://en.wikipedia.org/wiki/Jean-Denis_Deletraz +99,tarquini,,,Gabriele,Tarquini,02/03/1962,Italian,http://en.wikipedia.org/wiki/Gabriele_Tarquini +100,comas,,,rik,Comas,28/09/1963,French,http://en.wikipedia.org/wiki/%C3%89rik_Comas +101,brabham,,,David,Brabham,05/09/1965,Australian,http://en.wikipedia.org/wiki/David_Brabham +102,senna,,,Ayrton,Senna,21/03/1960,Brazilian,http://en.wikipedia.org/wiki/Ayrton_Senna +103,bernard,,,ric,Bernard,24/08/1964,French,http://en.wikipedia.org/wiki/%C3%89ric_Bernard +104,fittipaldi,,,Christian,Fittipaldi,18/01/1971,Brazilian,http://en.wikipedia.org/wiki/Christian_Fittipaldi +105,alboreto,,,Michele,Alboreto,23/12/1956,Italian,http://en.wikipedia.org/wiki/Michele_Alboreto +106,beretta,,,Olivier,Beretta,23/11/1969,Monegasque,http://en.wikipedia.org/wiki/Olivier_Beretta +107,ratzenberger,,,Roland,Ratzenberger,04/07/1960,Austrian,http://en.wikipedia.org/wiki/Roland_Ratzenberger +108,belmondo,,,Paul,Belmondo,23/04/1963,French,http://en.wikipedia.org/wiki/Paul_Belmondo +109,lehto,,,Jyrki,J_rvilehto,31/01/1966,Finnish,http://en.wikipedia.org/wiki/Jyrki_J%C3%A4rvilehto +110,cesaris,,,Andrea,de Cesaris,31/05/1959,Italian,http://en.wikipedia.org/wiki/Andrea_de_Cesaris +111,gounon,,,Jean-Marc,Gounon,01/01/1963,French,http://en.wikipedia.org/wiki/Jean-Marc_Gounon +112,alliot,,,Philippe,Alliot,27/07/1954,French,http://en.wikipedia.org/wiki/Philippe_Alliot +113,adams,,,Philippe,Adams,19/11/1969,Belgian,http://en.wikipedia.org/wiki/Philippe_Adams +114,dalmas,,,Yannick,Dalmas,28/07/1961,French,http://en.wikipedia.org/wiki/Yannick_Dalmas +115,noda,,,Hideki,Noda,07/03/1969,Japanese,http://en.wikipedia.org/wiki/Hideki_Noda +116,lagorce,,,Franck,Lagorce,01/09/1968,French,http://en.wikipedia.org/wiki/Franck_Lagorce +117,prost,,,Alain,Prost,24/02/1955,French,http://en.wikipedia.org/wiki/Alain_Prost +118,warwick,,,Derek,Warwick,27/08/1954,British,http://en.wikipedia.org/wiki/Derek_Warwick +119,patrese,,,Riccardo,Patrese,17/04/1954,Italian,http://en.wikipedia.org/wiki/Riccardo_Patrese +120,barbazza,,,Fabrizio,Barbazza,02/04/1963,Italian,http://en.wikipedia.org/wiki/Fabrizio_Barbazza +121,andretti,,,Michael,Andretti,05/10/1962,American,http://en.wikipedia.org/wiki/Michael_Andretti +122,capelli,,,Ivan,Capelli,24/05/1963,Italian,http://en.wikipedia.org/wiki/Ivan_Capelli +123,boutsen,,,Thierry,Boutsen,13/07/1957,Belgian,http://en.wikipedia.org/wiki/Thierry_Boutsen +124,apicella,,,Marco,Apicella,07/10/1965,Italian,http://en.wikipedia.org/wiki/Marco_Apicella +125,naspetti,,,Emanuele,Naspetti,24/02/1968,Italian,http://en.wikipedia.org/wiki/Emanuele_Naspetti +126,toshio_suzuki,,,Toshio,Suzuki,10/03/1955,Japanese,http://en.wikipedia.org/wiki/Toshio_Suzuki_(driver) +127,gugelmin,,,Maur_cio,Gugelmin,20/04/1963,Brazilian,http://en.wikipedia.org/wiki/Maur%C3%ADcio_Gugelmin +128,poele,,,Eric,van de Poele,30/09/1961,Belgian,http://en.wikipedia.org/wiki/Eric_van_de_Poele +129,grouillard,,,Olivier,Grouillard,02/09/1958,French,http://en.wikipedia.org/wiki/Olivier_Grouillard +130,chiesa,,,Andrea,Chiesa,06/05/1964,Swiss,http://en.wikipedia.org/wiki/Andrea_Chiesa +131,modena,,,Stefano,Modena,12/05/1963,Italian,http://en.wikipedia.org/wiki/Stefano_Modena +132,amati,,,Giovanna,Amati,20/07/1959,Italian,http://en.wikipedia.org/wiki/Giovanna_Amati +133,caffi,,,Alex,Caffi,18/03/1964,Italian,http://en.wikipedia.org/wiki/Alex_Caffi +134,bertaggia,,,Enrico,Bertaggia,19/09/1964,Italian,http://en.wikipedia.org/wiki/Enrico_Bertaggia +135,mccarthy,,,Perry,McCarthy,03/03/1961,British,http://en.wikipedia.org/wiki/Perry_McCarthy +136,lammers,,,Jan,Lammers,02/06/1956,Dutch,http://en.wikipedia.org/wiki/Jan_Lammers +137,piquet,,,Nelson,Piquet,17/08/1952,Brazilian,http://en.wikipedia.org/wiki/Nelson_Piquet +138,satoru_nakajima,,,Satoru,Nakajima,23/02/1953,Japanese,http://en.wikipedia.org/wiki/Satoru_Nakajima +139,pirro,,,Emanuele,Pirro,12/01/1962,Italian,http://en.wikipedia.org/wiki/Emanuele_Pirro +140,johansson,,,Stefan,Johansson,08/09/1956,Swedish,http://en.wikipedia.org/wiki/Stefan_Johansson +141,bailey,,,Julian,Bailey,09/10/1961,British,http://en.wikipedia.org/wiki/Julian_Bailey +142,chaves,,,Pedro,Chaves,27/02/1965,Portuguese,http://en.wikipedia.org/wiki/Pedro_Chaves +143,bartels,,,Michael,Bartels,08/03/1968,German,http://en.wikipedia.org/wiki/Michael_Bartels +144,hattori,,,Naoki,Hattori,13/06/1966,Japanese,http://en.wikipedia.org/wiki/Naoki_Hattori +145,nannini,,,Alessandro,Nannini,07/07/1959,Italian,http://en.wikipedia.org/wiki/Alessandro_Nannini +146,schneider,,,Bernd,Schneider,20/07/1964,German,http://en.wikipedia.org/wiki/Bernd_Schneider_(racecar_driver) +147,barilla,,,Paolo,Barilla,20/04/1961,Italian,http://en.wikipedia.org/wiki/Paolo_Barilla +148,foitek,,,Gregor,Foitek,27/03/1965,Swiss,http://en.wikipedia.org/wiki/Gregor_Foitek +149,langes,,,Claudio,Langes,20/07/1960,Italian,http://en.wikipedia.org/wiki/Claudio_Langes +150,gary_brabham,,,Gary,Brabham,29/03/1961,Australian,http://en.wikipedia.org/wiki/Gary_Brabham +151,donnelly,,,Martin,Donnelly,26/03/1964,British,http://en.wikipedia.org/wiki/Martin_Donnelly_(racing_driver) +152,giacomelli,,,Bruno,Giacomelli,10/09/1952,Italian,http://en.wikipedia.org/wiki/Bruno_Giacomelli +153,alguersuari,,ALG,Jaime,Alguersuari,23/03/1990,Spanish,http://en.wikipedia.org/wiki/Jaime_Alguersuari +154,grosjean,8,GRO,Romain,Grosjean,17/04/1986,French,http://en.wikipedia.org/wiki/Romain_Grosjean +155,kobayashi,10,KOB,Kamui,Kobayashi,13/09/1986,Japanese,http://en.wikipedia.org/wiki/Kamui_Kobayashi +156,palmer,,,Jonathan,Palmer,07/11/1956,British,http://en.wikipedia.org/wiki/Jonathan_Palmer +157,danner,,,Christian,Danner,04/04/1958,German,http://en.wikipedia.org/wiki/Christian_Danner +158,cheever,,,Eddie,Cheever,10/01/1958,American,http://en.wikipedia.org/wiki/Eddie_Cheever +159,sala,,,Luis,P̩rez-Sala,15/05/1959,Spanish,http://en.wikipedia.org/wiki/Luis_Perez-Sala +160,ghinzani,,,Piercarlo,Ghinzani,16/01/1952,Italian,http://en.wikipedia.org/wiki/Piercarlo_Ghinzani +161,weidler,,,Volker,Weidler,18/03/1962,German,http://en.wikipedia.org/wiki/Volker_Weidler +162,raphanel,,,Pierre-Henri,Raphanel,27/05/1961,French,http://en.wikipedia.org/wiki/Pierre-Henri_Raphanel +163,arnoux,,,Ren̩,Arnoux,04/07/1948,French,http://en.wikipedia.org/wiki/Ren%C3%A9_Arnoux +164,joachim_winkelhock,,,Joachim,Winkelhock,24/10/1960,German,http://en.wikipedia.org/wiki/Joachim_Winkelhock +165,larrauri,,,Oscar,Larrauri,19/08/1954,Argentine,http://en.wikipedia.org/wiki/Oscar_Larrauri +166,streiff,,,Philippe,Streiff,26/06/1955,French,http://en.wikipedia.org/wiki/Philippe_Streiff +167,campos,,,Adrin,Campos,17/06/1960,Spanish,http://en.wikipedia.org/wiki/Adri%C3%A1n_Campos +168,schlesser,,,Jean-Louis,Schlesser,12/09/1948,French,http://en.wikipedia.org/wiki/Jean-Louis_Schlesser +169,fabre,,,Pascal,Fabre,09/01/1960,French,http://en.wikipedia.org/wiki/Pascal_Fabre +170,fabi,,,Teo,Fabi,09/03/1955,Italian,http://en.wikipedia.org/wiki/Teo_Fabi +171,forini,,,Franco,Forini,22/09/1958,Swiss,http://en.wikipedia.org/wiki/Franco_Forini +172,laffite,,,Jacques,Laffite,21/11/1943,French,http://en.wikipedia.org/wiki/Jacques_Laffite +173,angelis,,,Elio,de Angelis,26/03/1958,Italian,http://en.wikipedia.org/wiki/Elio_de_Angelis +174,dumfries,,,Johnny,Dumfries,26/04/1958,British,http://en.wikipedia.org/wiki/Johnny_Dumfries +175,tambay,,,Patrick,Tambay,25/06/1949,French,http://en.wikipedia.org/wiki/Patrick_Tambay +176,surer,,,Marc,Surer,18/09/1951,Swiss,http://en.wikipedia.org/wiki/Marc_Surer +177,keke_rosberg,,,Keke,Rosberg,06/12/1948,Finnish,http://en.wikipedia.org/wiki/Keke_Rosberg +178,jones,,,Alan,Jones,02/11/1946,Australian,http://en.wikipedia.org/wiki/Alan_Jones_(Formula_1) +179,rothengatter,,,Huub,Rothengatter,08/10/1954,Dutch,http://en.wikipedia.org/wiki/Huub_Rothengatter +180,berg,,,Allen,Berg,01/08/1961,Canadian,http://en.wikipedia.org/wiki/Allen_Berg +181,manfred_winkelhock,,,Manfred,Winkelhock,06/10/1951,German,http://en.wikipedia.org/wiki/Manfred_Winkelhock +182,lauda,,,Niki,Lauda,22/02/1949,Austrian,http://en.wikipedia.org/wiki/Niki_Lauda +183,hesnault,,,Fran̤ois,Hesnault,30/12/1956,French,http://en.wikipedia.org/wiki/Fran%C3%A7ois_Hesnault +184,baldi,,,Mauro,Baldi,31/01/1954,Italian,http://en.wikipedia.org/wiki/Mauro_Baldi +185,bellof,,,Stefan,Bellof,20/11/1957,German,http://en.wikipedia.org/wiki/Stefan_Bellof +186,acheson,,,Kenny,Acheson,27/11/1957,British,http://en.wikipedia.org/wiki/Kenny_Acheson +187,watson,,,John,Watson,04/05/1946,British,http://en.wikipedia.org/wiki/John_Watson_(racing_driver) +188,cecotto,,,Johnny,Cecotto,25/01/1956,Venezuelan,http://en.wikipedia.org/wiki/Johnny_Cecotto +189,gartner,,,Jo,Gartner,24/01/1954,Austrian,http://en.wikipedia.org/wiki/Jo_Gartner +190,corrado_fabi,,,Corrado,Fabi,12/04/1961,Italian,http://en.wikipedia.org/wiki/Corrado_Fabi +191,thackwell,,,Mike,Thackwell,30/03/1961,New Zealander,http://en.wikipedia.org/wiki/Mike_Thackwell +192,serra,,,Chico,Serra,03/02/1957,Brazilian,http://en.wikipedia.org/wiki/Chico_Serra +193,sullivan,,,Danny,Sullivan,09/03/1950,American,http://en.wikipedia.org/wiki/Danny_Sullivan +194,salazar,,,Eliseo,Salazar,14/11/1954,Chilean,http://en.wikipedia.org/wiki/Eliseo_Salazar +195,guerrero,,,Roberto,Guerrero,16/11/1958,Colombian,http://en.wikipedia.org/wiki/Roberto_Guerrero +196,boesel,,,Raul,Boesel,04/12/1957,Brazilian,http://en.wikipedia.org/wiki/Raul_Boesel +197,jarier,,,Jean-Pierre,Jarier,10/07/1946,French,http://en.wikipedia.org/wiki/Jean-Pierre_Jarier +198,villeneuve_sr,,,Jacques,Villeneuve Sr.,04/11/1953,Canadian,http://en.wikipedia.org/wiki/Jacques_Villeneuve_(elder) +199,reutemann,,,Carlos,Reutemann,12/04/1942,Argentine,http://en.wikipedia.org/wiki/Carlos_Reutemann +200,mass,,,Jochen,Mass,30/09/1946,German,http://en.wikipedia.org/wiki/Jochen_Mass +201,borgudd,,,Slim,Borgudd,25/11/1946,Swedish,http://en.wikipedia.org/wiki/Slim_Borgudd +202,pironi,,,Didier,Pironi,26/03/1952,French,http://en.wikipedia.org/wiki/Didier_Pironi +203,gilles_villeneuve,,,Gilles,Villeneuve,18/01/1950,Canadian,http://en.wikipedia.org/wiki/Gilles_Villeneuve +204,paletti,,,Riccardo,Paletti,15/06/1958,Italian,http://en.wikipedia.org/wiki/Riccardo_Paletti +205,henton,,,Brian,Henton,19/09/1946,British,http://en.wikipedia.org/wiki/Brian_Henton +206,daly,,,Derek,Daly,11/03/1953,Irish,http://en.wikipedia.org/wiki/Derek_Daly +207,mario_andretti,,,Mario,Andretti,28/02/1940,American,http://en.wikipedia.org/wiki/Mario_Andretti +208,villota,,,Emilio,de Villota,26/07/1946,Spanish,http://en.wikipedia.org/wiki/Emilio_de_Villota +209,lees,,,Geoff,Lees,01/05/1951,British,http://en.wikipedia.org/wiki/Geoff_Lees +210,byrne,,,Tommy,Byrne,06/05/1958,Irish,http://en.wikipedia.org/wiki/Tommy_Byrne_%28racing_driver%29 +211,keegan,,,Rupert,Keegan,26/02/1955,British,http://en.wikipedia.org/wiki/Rupert_Keegan +212,rebaque,,,Hector,Rebaque,05/02/1956,Mexican,http://en.wikipedia.org/wiki/Hector_Rebaque +213,gabbiani,,,Beppe,Gabbiani,02/01/1957,Italian,http://en.wikipedia.org/wiki/Beppe_Gabbiani +214,cogan,,,Kevin,Cogan,31/03/1956,American,http://en.wikipedia.org/wiki/Kevin_Cogan +215,guerra,,,Miguel ́ngel,Guerra,31/08/1953,Argentine,http://en.wikipedia.org/wiki/Miguel_Angel_Guerra +216,stohr,,,Siegfried,Stohr,10/10/1952,Italian,http://en.wikipedia.org/wiki/Siegfried_Stohr +217,zunino,,,Ricardo,Zunino,13/04/1949,Argentine,http://en.wikipedia.org/wiki/Ricardo_Zunino +218,londono,,,Ricardo,Londo̱o,08/08/1949,Colombian,http://en.wikipedia.org/wiki/Ricardo_Londo%C3%B1o +219,jabouille,,,Jean-Pierre,Jabouille,01/10/1942,French,http://en.wikipedia.org/wiki/Jean-Pierre_Jabouille +220,francia,,,Giorgio,Francia,08/11/1947,Italian,http://en.wikipedia.org/wiki/Giorgio_Francia +221,depailler,,,Patrick,Depailler,09/08/1944,French,http://en.wikipedia.org/wiki/Patrick_Depailler +222,scheckter,,,Jody,Scheckter,29/01/1950,South African,http://en.wikipedia.org/wiki/Jody_Scheckter +223,regazzoni,,,Clay,Regazzoni,05/09/1939,Swiss,http://en.wikipedia.org/wiki/Clay_Regazzoni +224,emerson_fittipaldi,,,Emerson,Fittipaldi,12/12/1946,Brazilian,http://en.wikipedia.org/wiki/Emerson_Fittipaldi +225,kennedy,,,Dave,Kennedy,15/01/1953,Irish,http://en.wikipedia.org/wiki/David_Kennedy_(racing_driver) +226,south,,,Stephen,South,19/02/1952,British,http://en.wikipedia.org/wiki/Stephen_South +227,needell,,,Tiff,Needell,29/10/1951,British,http://en.wikipedia.org/wiki/Tiff_Needell +228,desire_wilson,,,Desir̩,Wilson,26/11/1953,South African,http://en.wikipedia.org/wiki/Desir%C3%A9_Wilson +229,ertl,,,Harald,Ertl,31/08/1948,Austrian,http://en.wikipedia.org/wiki/Harald_Ertl +230,brambilla,,,Vittorio,Brambilla,11/11/1937,Italian,http://en.wikipedia.org/wiki/Vittorio_Brambilla +231,hunt,,,James,Hunt,29/08/1947,British,http://en.wikipedia.org/wiki/James_Hunt +232,merzario,,,Arturo,Merzario,11/03/1943,Italian,http://en.wikipedia.org/wiki/Arturo_Merzario +233,stuck,,,Hans-Joachim,Stuck,01/01/1951,German,http://en.wikipedia.org/wiki/Hans_Joachim_Stuck +234,brancatelli,,,Gianfranco,Brancatelli,18/01/1950,Italian,http://en.wikipedia.org/wiki/Gianfranco_Brancatelli +235,ickx,,,Jacky,Ickx,01/01/1945,Belgian,http://en.wikipedia.org/wiki/Jacky_Ickx +236,gaillard,,,Patrick,Gaillard,12/02/1952,French,http://en.wikipedia.org/wiki/Patrick_Gaillard +237,ribeiro,,,Alex,Ribeiro,07/11/1948,Brazilian,http://en.wikipedia.org/wiki/Alex_Ribeiro +238,peterson,,,Ronnie,Peterson,14/02/1944,Swedish,http://en.wikipedia.org/wiki/Ronnie_Peterson +239,lunger,,,Brett,Lunger,14/11/1945,American,http://en.wikipedia.org/wiki/Brett_Lunger +240,ongais,,,Danny,Ongais,21/05/1942,American,http://en.wikipedia.org/wiki/Danny_Ongais +241,leoni,,,Lamberto,Leoni,24/05/1953,Italian,http://en.wikipedia.org/wiki/Lamberto_Leoni +242,galica,,,Divina,Galica,13/08/1944,British,http://en.wikipedia.org/wiki/Divina_Galica +243,stommelen,,,Rolf,Stommelen,11/07/1943,German,http://en.wikipedia.org/wiki/Rolf_Stommelen +244,colombo,,,Alberto,Colombo,23/02/1946,Italian,http://en.wikipedia.org/wiki/Alberto_Colombo +245,trimmer,,,Tony,Trimmer,24/01/1943,British,http://en.wikipedia.org/wiki/Tony_Trimmer +246,binder,,,Hans,Binder,12/06/1948,Austrian,http://en.wikipedia.org/wiki/Hans_Binder +247,bleekemolen,,,Michael,Bleekemolen,02/10/1949,Dutch,http://en.wikipedia.org/wiki/Michael_Bleekemolen +248,gimax,,,Carlo,Franchi,01/01/1938,Italian,http://en.wikipedia.org/wiki/Gimax +249,rahal,,,Bobby,Rahal,10/01/1953,American,http://en.wikipedia.org/wiki/Bobby_Rahal +250,pace,,,Carlos,Pace,06/10/1944,Brazilian,http://en.wikipedia.org/wiki/Carlos_Pace +251,ian_scheckter,,,Ian,Scheckter,22/08/1947,South African,http://en.wikipedia.org/wiki/Ian_Scheckter +252,pryce,,,Tom,Pryce,11/06/1949,British,http://en.wikipedia.org/wiki/Tom_Pryce +253,hoffmann,,,Ingo,Hoffmann,28/02/1953,Brazilian,http://en.wikipedia.org/wiki/Ingo_Hoffmann +254,zorzi,,,Renzo,Zorzi,12/12/1946,Italian,http://en.wikipedia.org/wiki/Renzo_Zorzi +255,nilsson,,,Gunnar,Nilsson,20/11/1948,Swedish,http://en.wikipedia.org/wiki/Gunnar_Nilsson +256,perkins,,,Larry,Perkins,18/03/1950,Australian,http://en.wikipedia.org/wiki/Larry_Perkins +257,hayje,,,Boy,Lunger,03/05/1949,Dutch,http://en.wikipedia.org/wiki/Boy_Hayje +258,neve,,,Patrick,N̬ve,13/10/1949,Belgian,http://en.wikipedia.org/wiki/Patrick_Neve +259,purley,,,David,Purley,26/01/1945,British,http://en.wikipedia.org/wiki/David_Purley +260,andersson,,,Conny,Andersson,28/12/1939,Swedish,http://en.wikipedia.org/wiki/Conny_Andersson_(racing_driver) +261,dryver,,,Bernard,de Dryver,19/09/1952,Belgian,http://en.wikipedia.org/wiki/Bernard_de_Dryver +262,oliver,,,Jackie,Oliver,14/08/1942,British,http://en.wikipedia.org/wiki/Jackie_Oliver +263,kozarowitzky,,,Mikko,Kozarowitzky,17/05/1948,Finnish,http://en.wikipedia.org/wiki/Mikko_Kozarowitzky +264,sutcliffe,,,Andy,Sutcliffe,09/05/1947,British,http://en.wikipedia.org/wiki/Andy_Sutcliffe +265,edwards,,,Guy,Edwards,30/12/1942,British,http://en.wikipedia.org/wiki/Guy_Edwards +266,mcguire,,,Brian,McGuire,13/12/1945,Australian,http://en.wikipedia.org/wiki/Brian_McGuire +267,schuppan,,,Vern,Schuppan,19/03/1943,Australian,http://en.wikipedia.org/wiki/Vern_Schuppan +268,heyer,,,Hans,Heyer,16/03/1943,German,http://en.wikipedia.org/wiki/Hans_Heyer +269,pilette,,,Teddy,Pilette,26/07/1942,Belgian,http://en.wikipedia.org/wiki/Teddy_Pilette +270,ashley,,,Ian,Ashley,26/10/1947,British,http://en.wikipedia.org/wiki/Ian_Ashley +271,kessel,,,Loris,Kessel,01/04/1950,Swiss,http://en.wikipedia.org/wiki/Loris_Kessel +272,takahashi,,,Kunimitsu,Takahashi,29/01/1940,Japanese,http://en.wikipedia.org/wiki/Kunimitsu_Takahashi +273,hoshino,,,Kazuyoshi,Hoshino,01/07/1947,Japanese,http://en.wikipedia.org/wiki/Kazuyoshi_Hoshino +274,takahara,,,Noritake,Takahara,06/06/1951,Japanese,http://en.wikipedia.org/wiki/Noritake_Takahara +275,lombardi,,,Lella,Lombardi,26/03/1941,Italian,http://en.wikipedia.org/wiki/Lella_Lombardi +276,evans,,,Bob,Evans,11/06/1947,British,http://en.wikipedia.org/wiki/Bob_Evans_(race_driver) +277,leclere,,,Michel,Lecl̬re,18/03/1946,French,http://en.wikipedia.org/wiki/Michel_Lecl%C3%A8re +278,amon,,,Chris,Amon,20/07/1943,New Zealander,http://en.wikipedia.org/wiki/Chris_Amon +279,zapico,,,Emilio,Zapico,27/05/1944,Spanish,http://en.wikipedia.org/wiki/Emilio_Zapico +280,pescarolo,,,Henri,Pescarolo,25/09/1942,French,http://en.wikipedia.org/wiki/Henri_Pescarolo +281,nelleman,,,Jac,Nelleman,19/04/1944,Danish,http://en.wikipedia.org/wiki/Jac_Nelleman +282,magee,,,Damien,Magee,17/11/1945,British,http://en.wikipedia.org/wiki/Damien_Magee +283,wilds,,,Mike,Wilds,07/01/1946,British,http://en.wikipedia.org/wiki/Mike_Wilds +284,pesenti_rossi,,,Alessandro,Pesenti-Rossi,31/08/1942,Italian,http://en.wikipedia.org/wiki/Alessandro_Pesenti-Rossi +285,stuppacher,,,Otto,Stuppacher,03/03/1947,Austrian,http://en.wikipedia.org/wiki/Otto_Stuppacher +286,brown,,,Warwick,Brown,24/12/1949,Australian,http://en.wikipedia.org/wiki/Warwick_Brown +287,hasemi,,,Masahiro,Hasemi,13/11/1945,Japanese,http://en.wikipedia.org/wiki/Masahiro_Hasemi +288,donohue,,,Mark,Donohue,18/03/1937,American,http://en.wikipedia.org/wiki/Mark_Donohue +289,hill,,,Graham,Hill,15/02/1929,British,http://en.wikipedia.org/wiki/Graham_Hill +290,wilson_fittipaldi,,,Wilson,Fittipaldi,25/12/1943,Brazilian,http://en.wikipedia.org/wiki/Wilson_Fittipaldi +291,tunmer,,,Guy,Tunmer,01/12/1948,South African,http://en.wikipedia.org/wiki/Guy_Tunmer +292,keizan,,,Eddie,Keizan,12/09/1944,South African,http://en.wikipedia.org/wiki/Eddie_Keizan +293,charlton,,,Dave,Charlton,27/10/1936,South African,http://en.wikipedia.org/wiki/Dave_Charlton +294,brise,,,Tony,Brise,28/03/1952,British,http://en.wikipedia.org/wiki/Tony_Brise +295,wunderink,,,Roelof,Wunderink,12/12/1948,Dutch,http://en.wikipedia.org/wiki/Roelof_Wunderink +296,migault,,,Fran̤ois,Migault,04/12/1944,French,http://en.wikipedia.org/wiki/Fran%C3%A7ois_Migault +297,palm,,,Torsten,Palm,23/07/1947,Swedish,http://en.wikipedia.org/wiki/Torsten_Palm +298,lennep,,,Gijs,van Lennep,16/03/1942,Dutch,http://en.wikipedia.org/wiki/Gijs_Van_Lennep +299,fushida,,,Hiroshi,Fushida,10/03/1946,Japanese,http://en.wikipedia.org/wiki/Hiroshi_Fushida +300,nicholson,,,John,Nicholson,06/10/1941,New Zealander,http://en.wikipedia.org/wiki/John_Nicholson_(racing_driver) +301,morgan,,,Dave,Morgan,07/08/1944,British,http://en.wikipedia.org/wiki/Dave_Morgan_(racing_driver) +302,crawford,,,Jim,Crawford,13/02/1948,British,http://en.wikipedia.org/wiki/Jim_Crawford_(driver) +303,vonlanthen,,,Jo,Vonlanthen,31/05/1942,Swiss,http://en.wikipedia.org/wiki/Jo_Vonlanthen +304,hulme,,,Denny,Hulme,18/06/1936,New Zealander,http://en.wikipedia.org/wiki/Denny_Hulme +305,hailwood,,,Mike,Hailwood,02/04/1940,British,http://en.wikipedia.org/wiki/Mike_Hailwood +306,beltoise,,,Jean-Pierre,Beltoise,26/04/1937,French,http://en.wikipedia.org/wiki/Jean-Pierre_Beltoise +307,ganley,,,Howden,Ganley,24/12/1941,New Zealander,http://en.wikipedia.org/wiki/Howden_Ganley +308,robarts,,,Richard,Robarts,22/09/1944,British,http://en.wikipedia.org/wiki/Richard_Robarts +309,revson,,,Peter,Revson,27/02/1939,American,http://en.wikipedia.org/wiki/Peter_Revson +310,driver,,,Paddy,Driver,13/05/1934,South African,http://en.wikipedia.org/wiki/Paddy_Driver +311,belso,,,Tom,Bels,27/08/1942,Danish,http://en.wikipedia.org/wiki/Tom_Bels%C3%B8 +312,redman,,,Brian,Redman,09/03/1937,British,http://en.wikipedia.org/wiki/Brian_Redman +313,opel,,,Rikky,von Opel,14/10/1947,Liechtensteiner,http://en.wikipedia.org/wiki/Rikky_von_Opel +314,schenken,,,Tim,Schenken,26/09/1943,Australian,http://en.wikipedia.org/wiki/Tim_Schenken +315,larrousse,,,G̩rard,Larrousse,23/05/1940,French,http://en.wikipedia.org/wiki/G%C3%A9rard_Larrousse +316,kinnunen,,,Leo,Kinnunen,05/08/1943,Finnish,http://en.wikipedia.org/wiki/Leo_Kinnunen +317,wisell,,,Reine,Wisell,30/09/1941,Swedish,http://en.wikipedia.org/wiki/Reine_Wisell +318,roos,,,Bertil,Roos,12/10/1943,Swedish,http://en.wikipedia.org/wiki/Bertil_Roos +319,dolhem,,,Jos̩,Dolhem,26/04/1944,French,http://en.wikipedia.org/wiki/Jos%C3%A9_Dolhem +320,gethin,,,Peter,Gethin,21/02/1940,British,http://en.wikipedia.org/wiki/Peter_Gethin +321,bell,,,Derek,Bell,31/10/1941,British,http://en.wikipedia.org/wiki/Derek_Bell_(auto_racer) +322,hobbs,,,David,Hobbs,09/06/1939,British,http://en.wikipedia.org/wiki/David_Hobbs_(racing_driver) +323,quester,,,Dieter,Quester,30/05/1939,Austrian,http://en.wikipedia.org/wiki/Dieter_Quester +324,koinigg,,,Helmuth,Koinigg,03/11/1948,Austrian,http://en.wikipedia.org/wiki/Helmuth_Koinigg +325,facetti,,,Carlo,Facetti,26/06/1935,Italian,http://en.wikipedia.org/wiki/Carlo_Facetti +326,wietzes,,,Eppie,Wietzes,28/05/1938,Canadian,http://en.wikipedia.org/wiki/Eppie_Wietzes +327,cevert,,,Fran̤ois,Cevert,25/02/1944,French,http://en.wikipedia.org/wiki/Fran%C3%A7ois_Cevert +328,stewart,,,Jackie,Stewart,11/06/1939,British,http://en.wikipedia.org/wiki/Jackie_Stewart +329,beuttler,,,Mike,Beuttler,13/04/1940,British,http://en.wikipedia.org/wiki/Mike_Beuttler +330,galli,,,Nanni,Galli,02/10/1940,Italian,http://en.wikipedia.org/wiki/Nanni_Galli +331,bueno,,,Luiz,Bueno,16/01/1937,Brazilian,http://en.wikipedia.org/wiki/Luiz_Bueno +332,follmer,,,George,Follmer,27/01/1934,American,http://en.wikipedia.org/wiki/George_Follmer +333,adamich,,,Andrea,de Adamich,03/10/1941,Italian,http://en.wikipedia.org/wiki/Andrea_de_Adamich +334,pretorius,,,Jackie,Pretorius,22/11/1934,South African,http://en.wikipedia.org/wiki/Jackie_Pretorius +335,williamson,,,Roger,Williamson,02/02/1948,British,http://en.wikipedia.org/wiki/Roger_Williamson +336,mcrae,,,Graham,McRae,05/03/1940,New Zealander,http://en.wikipedia.org/wiki/Graham_McRae +337,marko,,,Helmut,Marko,27/04/1943,Austrian,http://en.wikipedia.org/wiki/Helmut_Marko +338,walker,,,David,Walker,10/06/1941,Australian,http://en.wikipedia.org/wiki/David_Walker_(racing_driver) +339,roig,,,Alex,Soler-Roig,29/10/1932,Spanish,http://en.wikipedia.org/wiki/Alex_Soler-Roig +340,love,,,John,Love,07/12/1924,Rhodesian,http://en.wikipedia.org/wiki/John_Love_(racing_driver) +341,surtees,,,John,Surtees,11/02/1934,British,http://en.wikipedia.org/wiki/John_Surtees +342,barber,,,Skip,Barber,16/11/1936,American,http://en.wikipedia.org/wiki/Skip_Barber +343,brack,,,Bill,Brack,26/12/1935,Canadian,http://en.wikipedia.org/wiki/Bill_Brack +344,posey,,,Sam,Posey,26/05/1944,American,http://en.wikipedia.org/wiki/Sam_Posey +345,rodriguez,,,Pedro,Rodr_guez,18/01/1940,Mexican,http://en.wikipedia.org/wiki/Pedro_Rodr%C3%ADguez_(racing_driver) +346,siffert,,,Jo,Siffert,07/07/1936,Swiss,http://en.wikipedia.org/wiki/Jo_Siffert +347,bonnier,,,Jo,Bonnier,31/01/1930,Swedish,http://en.wikipedia.org/wiki/Joakim_Bonnier +348,mazet,,,Fran̤ois,Mazet,24/02/1943,French,http://en.wikipedia.org/wiki/Fran%C3%A7ois_Mazet +349,jean,,,Max,Jean,27/07/1943,French,http://en.wikipedia.org/wiki/Max_Jean +350,elford,,,Vic,Elford,10/06/1935,British,http://en.wikipedia.org/wiki/Vic_Elford +351,moser,,,Silvio,Moser,24/04/1941,Swiss,http://en.wikipedia.org/wiki/Silvio_Moser +352,eaton,,,George,Eaton,12/11/1945,Canadian,http://en.wikipedia.org/wiki/George_Eaton +353,lovely,,,Pete,Lovely,11/04/1926,American,http://en.wikipedia.org/wiki/Pete_Lovely +354,craft,,,Chris,Craft,17/11/1939,British,http://en.wikipedia.org/wiki/Chris_Craft_(racing_driver) +355,Cannoc,,,John,Cannon,21/06/1933,Canadian,http://en.wikipedia.org/wiki/John_Cannon_(auto_racer) +356,jack_brabham,,,Jack,Brabham,02/04/1926,Australian,http://en.wikipedia.org/wiki/Jack_Brabham +357,miles,,,John,Miles,14/06/1943,British,http://en.wikipedia.org/wiki/John_Miles_(auto_racer) +358,rindt,,,Jochen,Rindt,18/04/1942,Austrian,http://en.wikipedia.org/wiki/Jochen_Rindt +359,gavin,,,Johnny,Servoz-Gavin,18/01/1942,French,http://en.wikipedia.org/wiki/Johnny_Servoz-Gavin +360,mclaren,,,Bruce,McLaren,30/08/1937,New Zealander,http://en.wikipedia.org/wiki/Bruce_McLaren +361,courage,,,Piers,Courage,27/05/1942,British,http://en.wikipedia.org/wiki/Piers_Courage +362,klerk,,,Peter,de Klerk,16/03/1935,South African,http://en.wikipedia.org/wiki/Peter_de_Klerk +363,giunti,,,Ignazio,Giunti,30/08/1941,Italian,http://en.wikipedia.org/wiki/Ignazio_Giunti +364,gurney,,,Dan,Gurney,13/04/1931,American,http://en.wikipedia.org/wiki/Dan_Gurney +365,hahne,,,Hubert,Hahne,28/03/1935,German,http://en.wikipedia.org/wiki/Hubert_Hahne +366,hutchison,,,Gus,Hutchison,26/04/1937,American,http://en.wikipedia.org/wiki/Gus_Hutchison +367,westbury,,,Peter,Westbury,26/05/1938,British,http://en.wikipedia.org/wiki/Peter_Westbury +368,tingle,,,Sam,Tingle,24/08/1921,Rhodesian,http://en.wikipedia.org/wiki/Sam_Tingle +369,rooyen,,,Basil,van Rooyen,19/04/1939,South African,http://en.wikipedia.org/wiki/Basil_van_Rooyen +370,attwood,,,Richard,Attwood,04/04/1940,British,http://en.wikipedia.org/wiki/Richard_Attwood +371,pease,,,Al,Pease,15/10/1921,Canadian,http://en.wikipedia.org/wiki/Al_Pease +372,cordts,,,John,Cordts,23/07/1935,Canadian,http://en.wikipedia.org/wiki/John_Cordts +373,clark,,,Jim,Clark,04/03/1936,British,http://en.wikipedia.org/wiki/Jim_Clark +374,spence,,,Mike,Spence,30/12/1936,British,http://en.wikipedia.org/wiki/Mike_Spence +375,scarfiotti,,,Ludovico,Scarfiotti,18/10/1933,Italian,http://en.wikipedia.org/wiki/Ludovico_Scarfiotti +376,bianchi,,BIA,Lucien,Bianchi,10/11/1934,Belgian,http://en.wikipedia.org/wiki/Lucien_Bianchi +377,jo_schlesser,,,Jo,Schlesser,18/05/1928,French,http://en.wikipedia.org/wiki/Jo_Schlesser +378,widdows,,,Robin,Widdows,27/05/1942,British,http://en.wikipedia.org/wiki/Robin_Widdows +379,ahrens,,,Kurt,Ahrens,19/04/1940,German,"http://en.wikipedia.org/wiki/Kurt_Ahrens,_Jr." +380,gardner,,,Frank,Gardner,01/10/1930,Australian,http://en.wikipedia.org/wiki/Frank_Gardner_(driver) +381,unser,,,Bobby,Unser,20/02/1934,American,http://en.wikipedia.org/wiki/Bobby_Unser +382,solana,,,Mois̩s,Solana,26/12/1935,Mexican,http://en.wikipedia.org/wiki/Mois%C3%A9s_Solana +383,anderson,,,Bob,Anderson,19/05/1931,British,http://en.wikipedia.org/wiki/Bob_Anderson_(racing_driver) +384,botha,,,Luki,Botha,16/01/1930,South African,http://en.wikipedia.org/wiki/Luki_Botha +385,bandini,,,Lorenzo,Bandini,21/12/1935,Italian,http://en.wikipedia.org/wiki/Lorenzo_Bandini +386,ginther,,,Richie,Ginther,05/08/1930,American,http://en.wikipedia.org/wiki/Richie_Ginther +387,parkes,,,Mike,Parkes,24/09/1931,British,http://en.wikipedia.org/wiki/Mike_Parkes +388,irwin,,,Chris,Irwin,27/06/1942,British,http://en.wikipedia.org/wiki/Chris_Irwin +389,ligier,,,Guy,Ligier,12/07/1930,French,http://en.wikipedia.org/wiki/Guy_Ligier +390,rees,,,Alan,Rees,12/01/1938,British,http://en.wikipedia.org/wiki/Alan_Rees_(racing_driver) +391,hart,,,Brian,Hart,07/09/1936,British,http://en.wikipedia.org/wiki/Brian_Hart +392,fisher,,,Mike,Fisher,13/03/1943,American,http://en.wikipedia.org/wiki/Mike_Fisher_(driver) +393,tom_jones,,,Tom,Jones,26/04/1943,American,http://en.wikipedia.org/wiki/Tom_Jones_(auto_racer) +394,baghetti,,,Giancarlo,Baghetti,25/12/1934,Italian,http://en.wikipedia.org/wiki/Giancarlo_Baghetti +395,williams,,,Jonathan,Williams,26/10/1942,British,http://en.wikipedia.org/wiki/Jonathan_Williams_(racing_driver) +396,bondurant,,,Bob,Bondurant,27/04/1933,American,http://en.wikipedia.org/wiki/Bob_Bondurant +397,arundell,,,Peter,Arundell,08/11/1933,British,http://en.wikipedia.org/wiki/Peter_Arundell +398,vic_wilson,,,Vic,Wilson,14/04/1931,British,http://en.wikipedia.org/wiki/Vic_Wilson_(motor_racing_driver) +399,taylor,,,John,Taylor,23/03/1933,British,http://en.wikipedia.org/wiki/John_Taylor_(racer) +400,lawrence,,,Chris,Lawrence,27/07/1933,British,http://en.wikipedia.org/wiki/Chris_Lawrence_(racing_driver) +401,trevor_taylor,,,Trevor,Taylor,26/12/1936,British,http://en.wikipedia.org/wiki/Trevor_Taylor +402,geki,,,Giacomo,Russo,23/10/1937,Italian,http://en.wikipedia.org/wiki/Geki_(driver) +403,phil_hill,,,Phil,Hill,20/04/1927,American,http://en.wikipedia.org/wiki/Phil_Hill +404,ireland,,,Innes,Ireland,12/06/1930,British,http://en.wikipedia.org/wiki/Innes_Ireland +405,bucknum,,,Ronnie,Bucknum,05/04/1936,American,http://en.wikipedia.org/wiki/Ronnie_Bucknum +406,hawkins,,,Paul,Hawkins,12/10/1937,Australian,http://en.wikipedia.org/wiki/Paul_Hawkins_(racing_driver) +407,prophet,,,David,Prophet,09/10/1937,British,http://en.wikipedia.org/wiki/David_Prophet +408,maggs,,,Tony,Maggs,09/02/1937,South African,http://en.wikipedia.org/wiki/Tony_Maggs +409,blokdyk,,,Trevor,Blokdyk,30/11/1935,South African,http://en.wikipedia.org/wiki/Trevor_Blokdyk +410,lederle,,,Neville,Lederle,25/09/1938,South African,http://en.wikipedia.org/wiki/Neville_Lederle +411,serrurier,,,Doug,Serrurier,09/12/1920,South African,http://en.wikipedia.org/wiki/Doug_Serrurier +412,niemann,,,Brausch,Niemann,07/01/1939,South African,http://en.wikipedia.org/wiki/Brausch_Niemann +413,pieterse,,,Ernie,Pieterse,04/07/1938,South African,http://en.wikipedia.org/wiki/Ernie_Pieterse +414,puzey,,,Clive,Puzey,11/07/1941,Rhodesian,http://en.wikipedia.org/wiki/Clive_Puzey +415,reed,,,Ray,Reed,,South African,http://en.wikipedia.org/wiki/Ray_Reed +416,clapham,,,David,Clapham,18/05/1931,South African,http://en.wikipedia.org/wiki/David_Clapham +417,blignaut,,,Alex,Blignaut,30/11/1932,South African,http://en.wikipedia.org/wiki/Alex_Blignaut +418,gregory,,,Masten,Gregory,29/02/1932,American,http://en.wikipedia.org/wiki/Masten_Gregory +419,rhodes,,,John,Rhodes,18/08/1927,British,http://en.wikipedia.org/wiki/John_Rhodes_(driver) +420,raby,,,Ian,Raby,22/09/1921,British,http://en.wikipedia.org/wiki/Ian_Raby +421,rollinson,,,Alan,Rollinson,15/05/1943,British,http://en.wikipedia.org/wiki/Alan_Rollinson +422,gubby,,,Brian,Gubby,17/04/1934,British,http://en.wikipedia.org/wiki/Brian_Gubby +423,mitter,,,Gerhard,Mitter,30/08/1935,German,http://en.wikipedia.org/wiki/Gerhard_Mitter +424,bussinello,,,Roberto,Bussinello,04/10/1927,Italian,http://en.wikipedia.org/wiki/Roberto_Bussinello +425,vaccarella,,,Nino,Vaccarella,04/03/1933,Italian,http://en.wikipedia.org/wiki/Nino_Vaccarella +426,bassi,,,Giorgio,Bassi,20/01/1934,Italian,http://en.wikipedia.org/wiki/Giorgio_Bassi +427,trintignant,,,Maurice,Trintignant,30/10/1917,French,http://en.wikipedia.org/wiki/Maurice_Trintignant +428,collomb,,,Bernard,Collomb,07/10/1930,French,http://en.wikipedia.org/wiki/Bernard_Collomb +429,andre_pilette,,,Andr̩,Pilette,06/10/1918,Belgian,http://en.wikipedia.org/wiki/Andr%C3%A9_Pilette +430,beaufort,,,Carel Godin,de Beaufort,10/04/1934,Dutch,http://en.wikipedia.org/wiki/Carel_Godin_de_Beaufort +431,barth,,,Edgar,Barth,26/01/1917,German,http://en.wikipedia.org/wiki/Edgar_Barth +432,cabral,,,Mrio de Ara̼jo,Cabral,15/01/1934,Portuguese,http://en.wikipedia.org/wiki/Mario_de_Araujo_Cabral +433,hansgen,,,Walt,Hansgen,28/10/1919,American,http://en.wikipedia.org/wiki/Walt_Hansgen +434,sharp,,,Hap,Sharp,01/01/1928,American,http://en.wikipedia.org/wiki/Hap_Sharp +435,mairesse,,,Willy,Mairesse,01/10/1928,Belgian,http://en.wikipedia.org/wiki/Willy_Mairesse +436,campbell-jones,,,John,Campbell-Jones,21/01/1930,British,http://en.wikipedia.org/wiki/John_Campbell-Jones +437,burgess,,,Ian,Burgess,06/07/1930,British,http://en.wikipedia.org/wiki/Ian_Burgess +438,settember,,,Tony,Settember,10/07/1926,American,http://en.wikipedia.org/wiki/Tony_Settember +439,estefano,,,Nasif,Est̩fano,18/11/1932,Argentine,http://en.wikipedia.org/wiki/Nasif_Est%C3%A9fano +440,hall,,,Jim,Hall,23/07/1935,American,http://en.wikipedia.org/wiki/Jim_Hall_(race_car_driver) +441,parnell,,,Tim,Parnell,25/06/1932,British,http://en.wikipedia.org/wiki/Tim_Parnell +442,kuhnke,,,Kurt,Kuhnke,30/04/1910,German,http://en.wikipedia.org/wiki/Kurt_Kuhnke +443,ernesto_brambilla,,,Ernesto,Brambilla,31/01/1934,Italian,http://en.wikipedia.org/wiki/Ernesto_Brambilla +444,lippi,,,Roberto,Lippi,17/10/1926,Italian,http://en.wikipedia.org/wiki/Roberto_Lippi +445,seiffert,,,G_nther,Seiffert,18/10/1937,German,http://en.wikipedia.org/wiki/G%C3%BCnther_Seiffert +446,abate,,,Carlo,Abate,10/07/1932,Italian,http://en.wikipedia.org/wiki/Carlo_Mario_Abate +447,starrabba,,,Gaetano,Starrabba,03/12/1932,Italian,http://en.wikipedia.org/wiki/Gaetano_Starrabba +448,broeker,,,Peter,Broeker,15/05/1926,Canadian,http://en.wikipedia.org/wiki/Peter_Broeker +449,ward,,,Rodger,Ward,10/01/1921,American,http://en.wikipedia.org/wiki/Rodger_Ward +450,vos,,,Ernie,de Vos,01/07/1941,Dutch,http://en.wikipedia.org/wiki/Ernie_de_Vos +451,dochnal,,,Frank,Dochnal,08/10/1920,American,http://en.wikipedia.org/wiki/Frank_Dochnal +452,monarch,,,Thomas,Monarch,03/09/1945,American, +842,gasly,10,GAS,Pierre,Gasly,07/02/1996,French,http://en.wikipedia.org/wiki/Pierre_Gasly +453,lewis,,,Jackie,Lewis,01/11/1936,British,http://en.wikipedia.org/wiki/Jackie_Lewis +454,ricardo_rodriguez,,,Ricardo,Rodr_guez,14/02/1942,Mexican,http://en.wikipedia.org/wiki/Ricardo_Rodr%C3%ADguez_(Formula_One) +455,seidel,,,Wolfgang,Seidel,04/07/1926,German,http://en.wikipedia.org/wiki/Wolfgang_Seidel +456,salvadori,,,Roy,Salvadori,12/05/1922,British,http://en.wikipedia.org/wiki/Roy_Salvadori +457,pon,,,Ben,Pon,09/12/1936,Dutch,http://en.wikipedia.org/wiki/Ben_Pon +458,slotemaker,,,Rob,Slotemaker,13/06/1929,Dutch,http://en.wikipedia.org/wiki/Rob_Slotemaker +459,marsh,,,Tony,Marsh,20/07/1931,British,http://en.wikipedia.org/wiki/Tony_Marsh_(racing_driver) +460,ashmore,,,Gerry,Ashmore,25/07/1936,British,http://en.wikipedia.org/wiki/Gerry_Ashmore +461,schiller,,,Heinz,Schiller,25/01/1930,Swiss,http://en.wikipedia.org/wiki/Heinz_Schiller +462,davis,,,Colin,Davis,29/07/1933,British,http://en.wikipedia.org/wiki/Colin_Davis_(driver) +463,chamberlain,,,Jay,Chamberlain,29/12/1925,American,http://en.wikipedia.org/wiki/Jay_Chamberlain +464,shelly,,,Tony,Shelly,02/02/1937,New Zealander,http://en.wikipedia.org/wiki/Tony_Shelly +465,greene,,,Keith,Greene,05/01/1938,British,http://en.wikipedia.org/wiki/Keith_Greene +466,walter,,,Heini,Walter,28/07/1927,Swiss,http://en.wikipedia.org/wiki/Heini_Walter +467,prinoth,,,Ernesto,Prinoth,15/04/1923,Italian,http://en.wikipedia.org/wiki/Ernesto_Prinoth +468,penske,,,Roger,Penske,20/02/1937,American,http://en.wikipedia.org/wiki/Roger_Penske +469,schroeder,,,Rob,Schroeder,11/05/1926,British,http://en.wikipedia.org/wiki/Rob_Schroeder +470,mayer,,,Timmy,Mayer,22/02/1938,American,http://en.wikipedia.org/wiki/Timmy_Mayer +471,johnstone,,,Bruce,Johnstone,30/01/1937,South African,http://en.wikipedia.org/wiki/Bruce_Johnstone_(racing_driver) +472,harris,,,Mike,Harris,25/05/1939,South African,http://en.wikipedia.org/wiki/Mike_Harris_(race_car_driver) +473,hocking,,,Gary,Hocking,30/09/1937,Rhodesian,http://en.wikipedia.org/wiki/Gary_Hocking +474,vyver,,,Syd,van der Vyver,01/06/1920,South African,http://en.wikipedia.org/wiki/Syd_van_der_Vyver +475,moss,,,Stirling,Moss,17/09/1929,British,http://en.wikipedia.org/wiki/Stirling_Moss +476,trips,,,Wolfgang,von Trips,04/05/1928,German,http://en.wikipedia.org/wiki/Wolfgang_Graf_Berghe_von_Trips +477,allison,,,Cliff,Allison,08/02/1932,British,http://en.wikipedia.org/wiki/Cliff_Allison +478,herrmann,,,Hans,Herrmann,23/02/1928,German,http://en.wikipedia.org/wiki/Hans_Herrmann +479,brooks,,,Tony,Brooks,25/02/1932,British,http://en.wikipedia.org/wiki/Tony_Brooks +480,may,,,Michael,May,18/08/1934,Swiss,http://en.wikipedia.org/wiki/Michael_May_(racing_driver) +481,henry_taylor,,,Henry,Taylor,16/12/1932,British,http://en.wikipedia.org/wiki/Henry_Taylor_(racing_driver) +482,gendebien,,,Olivier,Gendebien,12/01/1924,Belgian,http://en.wikipedia.org/wiki/Olivier_Gendebien +483,scarlatti,,,Giorgio,Scarlatti,02/10/1921,Italian,http://en.wikipedia.org/wiki/Giorgio_Scarlatti +484,naylor,,,Brian,Naylor,24/03/1923,British,http://en.wikipedia.org/wiki/Brian_Naylor +485,bordeu,,,Juan Manuel,Bordeu,28/01/1934,Argentine,http://en.wikipedia.org/wiki/Juan_Manuel_Bordeu +486,fairman,,,Jack,Fairman,15/03/1913,British,http://en.wikipedia.org/wiki/Jack_Fairman +487,natili,,,Massimo,Natili,28/07/1935,Italian,http://en.wikipedia.org/wiki/Massimo_Natili +488,monteverdi,,,Peter,Monteverdi,07/06/1934,Swiss,http://en.wikipedia.org/wiki/Peter_Monteverdi +489,pirocchi,,,Renato,Pirocchi,26/03/1933,Italian,http://en.wikipedia.org/wiki/Renato_Pirocchi +490,duke,,,Geoff,Duke,29/03/1923,British,http://en.wikipedia.org/wiki/Geoff_Duke +491,thiele,,,Alfonso,Thiele,05/04/1920,American-Italian,http://en.wikipedia.org/wiki/Alfonso_Thiele +492,boffa,,,Menato,Boffa,04/01/1930,Italian,http://en.wikipedia.org/wiki/Menato_Boffa +493,ryan,,,Peter,Ryan,10/06/1940,Canadian,http://en.wikipedia.org/wiki/Peter_Ryan_(driver) +494,ruby,,,Lloyd,Ruby,12/01/1928,American,http://en.wikipedia.org/wiki/Lloyd_Ruby +495,ken_miles,,,Ken,Miles,01/11/1918,British,http://en.wikipedia.org/wiki/Ken_Miles +496,menditeguy,,,Carlos,Menditeguy,10/08/1914,Argentine,http://en.wikipedia.org/wiki/Carlos_Menditeguy +497,larreta,,,Alberto Rodriguez,Larreta,14/01/1934,Argentine,http://en.wikipedia.org/wiki/Alberto_Rodriguez_Larreta +498,gonzalez,,,Jos̩ Froiln,Gonzlez,05/10/1922,Argentine,http://en.wikipedia.org/wiki/Jos%C3%A9_Froil%C3%A1n_Gonz%C3%A1lez +499,bonomi,,,Roberto,Bonomi,30/09/1919,Argentine,http://en.wikipedia.org/wiki/Roberto_Bonomi +500,munaron,,,Gino,Munaron,02/04/1928,Italian,http://en.wikipedia.org/wiki/Gino_Munaron +501,schell,,,Harry,Schell,29/06/1921,American,http://en.wikipedia.org/wiki/Harry_Schell +502,stacey,,,Alan,Stacey,29/08/1933,British,http://en.wikipedia.org/wiki/Alan_Stacey +503,chimeri,,,Ettore,Chimeri,04/06/1921,Venezuelan,http://en.wikipedia.org/wiki/Ettore_Chimeri +504,creus,,,Antonio,Creus,28/10/1924,Spanish,http://en.wikipedia.org/wiki/Antonio_Creus +505,bristow,,,Chris,Bristow,02/12/1937,British,http://en.wikipedia.org/wiki/Chris_Bristow +506,halford,,,Bruce,Halford,18/05/1931,British,http://en.wikipedia.org/wiki/Bruce_Halford +507,daigh,,,Chuck,Daigh,29/11/1923,American,http://en.wikipedia.org/wiki/Chuck_Daigh +508,reventlow,,,Lance,Reventlow,24/02/1936,American,http://en.wikipedia.org/wiki/Lance_Reventlow +509,rathmann,,,Jim,Rathmann,16/07/1928,American,http://en.wikipedia.org/wiki/Jim_Rathmann +510,goldsmith,,,Paul,Goldsmith,02/10/1925,American,http://en.wikipedia.org/wiki/Paul_Goldsmith +511,branson,,,Don,Branson,02/06/1920,American,http://en.wikipedia.org/wiki/Don_Branson +512,thomson,,,Johnny,Thomson,09/04/1922,American,http://en.wikipedia.org/wiki/Johnny_Thomson +513,johnson,,,Eddie,Johnson,10/02/1919,American,http://en.wikipedia.org/wiki/Eddie_Johnson_(auto_racer) +514,veith,,,Bob,Veith,01/11/1926,American,http://en.wikipedia.org/wiki/Bob_Veith +515,tingelstad,,,Bud,Tingelstad,04/04/1928,American,http://en.wikipedia.org/wiki/Bud_Tingelstad +516,christie,,,Bob,Christie,04/04/1924,American,http://en.wikipedia.org/wiki/Bob_Christie_(racing_driver) +517,amick,,,Red,Amick,19/01/1929,American,http://en.wikipedia.org/wiki/Red_Amick +518,darter,,,Duane,Carter,05/05/1913,American,http://en.wikipedia.org/wiki/Duane_Carter +519,homeier,,,Bill,Homeier,31/08/1918,American,http://en.wikipedia.org/wiki/Bill_Homeier +520,hartley,,,Gene,Hartley,28/01/1926,American,http://en.wikipedia.org/wiki/Gene_Hartley +521,stevenson,,,Chuck,Stevenson,15/10/1919,American,http://en.wikipedia.org/wiki/Chuck_Stevenson +522,grim,,,Bobby,Grim,04/09/1924,American,http://en.wikipedia.org/wiki/Bobby_Grim +523,templeman,,,Shorty,Templeman,12/08/1919,American,http://en.wikipedia.org/wiki/Shorty_Templeman +524,hurtubise,,,Jim,Hurtubise,05/12/1932,American,http://en.wikipedia.org/wiki/Jim_Hurtubise +525,bryan,,,Jimmy,Bryan,28/01/1926,American,http://en.wikipedia.org/wiki/Jimmy_Bryan +526,ruttman,,,Troy,Ruttman,11/03/1930,American,http://en.wikipedia.org/wiki/Troy_Ruttman +527,sachs,,,Eddie,Sachs,28/05/1927,American,http://en.wikipedia.org/wiki/Eddie_Sachs +528,freeland,,,Don,Freeland,25/03/1925,American,http://en.wikipedia.org/wiki/Don_Freeland +529,bettenhausen,,,Tony,Bettenhausen,12/09/1916,American,http://en.wikipedia.org/wiki/Tony_Bettenhausen +530,weiler,,,Wayne,Weiler,09/12/1934,American,http://en.wikipedia.org/wiki/Wayne_Weiler +531,foyt,,,Anthony,Foyt,16/01/1935,American,http://en.wikipedia.org/wiki/A.J._Foyt +532,russo,,,Eddie,Russo,19/11/1925,American,http://en.wikipedia.org/wiki/Eddie_Russo +533,boyd,,,Johnny,Boyd,19/08/1926,American,http://en.wikipedia.org/wiki/Johnny_Boyd +534,force,,,Gene,Force,15/06/1916,American,http://en.wikipedia.org/wiki/Gene_Force +535,mcwithey,,,Jim,McWithey,04/07/1927,American,http://en.wikipedia.org/wiki/Jim_McWithey +536,sutton,,,Len,Sutton,09/08/1925,American,http://en.wikipedia.org/wiki/Len_Sutton +537,dick_rathmann,,,Dick,Rathmann,06/01/1924,American,http://en.wikipedia.org/wiki/Dick_Rathmann +538,herman,,,Al,Herman,15/03/1927,American,http://en.wikipedia.org/wiki/Al_Herman +539,dempsey_wilson,,,Dempsey,Wilson,11/03/1927,American,http://en.wikipedia.org/wiki/Dempsey_Wilson +540,mike_taylor,,,Mike,Taylor,24/04/1934,British,http://en.wikipedia.org/wiki/Mike_Taylor_(driver) +541,flockhart,,,Ron,Flockhart,16/06/1923,British,http://en.wikipedia.org/wiki/Ron_Flockhart_(auto_racing) +542,piper,,,David,Piper,02/12/1930,British,http://en.wikipedia.org/wiki/David_Piper +543,cabianca,,,Giulio,Cabianca,19/02/1923,Italian,http://en.wikipedia.org/wiki/Giulio_Cabianca +544,drogo,,,Piero,Drogo,08/08/1926,Italian,http://en.wikipedia.org/wiki/Piero_Drogo +545,gamble,,,Fred,Gamble,17/03/1932,American,http://en.wikipedia.org/wiki/Fred_Gamble_(racing_driver) +546,owen,,,Arthur,Owen,23/03/1915,British,http://en.wikipedia.org/wiki/Arthur_Owen +547,gould,,,Horace,Gould,20/09/1918,British,http://en.wikipedia.org/wiki/Horace_Gould +548,drake,,,Bob,Drake,14/12/1919,American,http://en.wikipedia.org/wiki/Bob_Drake_(Formula_One) +549,bueb,,,Ivor,Bueb,06/06/1923,British,http://en.wikipedia.org/wiki/Ivor_Bueb +550,Changy,,,Alain,de Changy,05/02/1922,Belgian,http://en.wikipedia.org/wiki/Alain_de_Changy +551,filippis,,,Maria,de Filippis,11/11/1926,Italian,http://en.wikipedia.org/wiki/Maria_Teresa_de_Filippis +552,lucienbonnet,,,Jean,Lucienbonnet,07/01/1923,French,http://en.wikipedia.org/wiki/Jean_Lucienbonnet +553,testut,,,Andr̩,Testut,13/04/1926,Monegasque,http://en.wikipedia.org/wiki/Andr%C3%A9_Testut +554,behra,,,Jean,Behra,16/02/1921,French,http://en.wikipedia.org/wiki/Jean_Behra +555,paul_russo,,,Paul,Russo,10/04/1914,American,http://en.wikipedia.org/wiki/Paul_Russo +556,daywalt,,,Jimmy,Daywalt,28/08/1924,American,http://en.wikipedia.org/wiki/Jimmy_Daywalt +557,arnold,,,Chuck,Arnold,30/05/1926,American,http://en.wikipedia.org/wiki/Chuck_Arnold +558,keller,,,Al,Keller,11/04/1920,American,http://en.wikipedia.org/wiki/Al_Keller +559,flaherty,,,Pat,Flaherty,06/01/1926,American,http://en.wikipedia.org/wiki/Pat_Flaherty_(racing_driver) +560,cheesbourg,,,Bill,Cheesbourg,12/06/1927,American,http://en.wikipedia.org/wiki/Bill_Cheesbourg +561,ray_crawford,,,Ray,Crawford,26/10/1915,American,http://en.wikipedia.org/wiki/Ray_Crawford +562,turner,,,Jack,Turner,12/02/1920,American,http://en.wikipedia.org/wiki/Jack_Turner_(driver) +563,weyant,,,Chuck,Weyant,03/04/1923,American,http://en.wikipedia.org/wiki/Chuck_Weyant +564,larson,,,Jud,Larson,21/01/1923,American,http://en.wikipedia.org/wiki/Jud_Larson +565,magill,,,Mike,Magill,08/02/1920,American,http://en.wikipedia.org/wiki/Mike_Magill +566,shelby,,,Carroll,Shelby,11/01/1923,American,http://en.wikipedia.org/wiki/Carroll_Shelby +567,orey,,,Fritz,d'Orey,25/03/1938,Brazilian,http://en.wikipedia.org/wiki/Fritz_d%27Orey +568,fontes,,,Azdrubal,Fontes,26/12/1922,Uruguayan,http://en.wikipedia.org/wiki/Azdrubal_Fontes +569,ashdown,,,Peter,Ashdown,16/10/1934,British,http://en.wikipedia.org/wiki/Peter_Ashdown +570,bill_moss,,,Bill,Moss,04/09/1933,British,http://en.wikipedia.org/wiki/Bill_Moss_(racing_driver) +571,dennis_taylor,,,Dennis,Taylor,12/06/1921,British,http://en.wikipedia.org/wiki/Dennis_Taylor_(racing_driver) +572,blanchard,,,Harry,Blanchard,13/06/1929,American,http://en.wikipedia.org/wiki/Harry_Blanchard +573,tomaso,,,Alessandro,de Tomaso,10/07/1928,Argentine-Italian,http://en.wikipedia.org/wiki/Alessandro_de_Tomaso +574,constantine,,,George,Constantine,22/02/1918,American,http://en.wikipedia.org/wiki/George_Constantine +575,said,,,Bob,Said,05/05/1932,American,http://en.wikipedia.org/wiki/Bob_Said +576,cade,,,Phil,Cade,12/06/1916,American,http://en.wikipedia.org/wiki/Phil_Cade +577,musso,,,Luigi,Musso,28/07/1924,Italian,http://en.wikipedia.org/wiki/Luigi_Musso +578,hawthorn,,,Mike,Hawthorn,10/04/1929,British,http://en.wikipedia.org/wiki/Mike_Hawthorn +579,fangio,,,Juan,Fangio,24/06/1911,Argentine,http://en.wikipedia.org/wiki/Juan_Manuel_Fangio +580,godia,,,Paco,Godia,21/03/1921,Spanish,http://en.wikipedia.org/wiki/Paco_Godia +581,collins,,,Peter,Collins,06/11/1931,British,http://en.wikipedia.org/wiki/Peter_Collins_(racing_driver) +582,kavanagh,,,Ken,Kavanagh,12/12/1923,Australian,http://en.wikipedia.org/wiki/Ken_Kavanagh +583,gerini,,,Gerino,Gerini,10/08/1928,Italian,http://en.wikipedia.org/wiki/Gerino_Gerini_(racing_driver) +584,kessler,,,Bruce,Kessler,23/03/1936,American,http://en.wikipedia.org/wiki/Bruce_Kessler +585,emery,,,Paul,Emery,12/11/1916,British,http://en.wikipedia.org/wiki/Paul_Emery +586,piotti,,,Luigi,Piotti,27/10/1913,Italian,http://en.wikipedia.org/wiki/Luigi_Piotti +587,ecclestone,,,Bernie,Ecclestone,28/10/1930,British,http://en.wikipedia.org/wiki/Bernie_Ecclestone +588,taramazzo,,,Luigi,Taramazzo,05/05/1932,Italian,http://en.wikipedia.org/wiki/Luigi_Taramazzo +589,chiron,,,Louis,Chiron,1899-08-03,Monegasque,http://en.wikipedia.org/wiki/Louis_Chiron +590,lewis-evans,,,Stuart,Lewis-Evans,20/04/1930,British,http://en.wikipedia.org/wiki/Stuart_Lewis-Evans +591,george_amick,,,George,Amick,24/10/1924,American,http://en.wikipedia.org/wiki/George_Amick +592,reece,,,Jimmy,Reece,17/11/1929,American,http://en.wikipedia.org/wiki/Jimmy_Reece +593,parsons,,,Johnnie,Parsons,04/07/1918,American,http://en.wikipedia.org/wiki/Johnnie_Parsons +594,tolan,,,Johnnie,Tolan,22/10/1917,American,http://en.wikipedia.org/wiki/Johnnie_Tolan +595,garrett,,,Billy,Garrett,24/04/1933,American,http://en.wikipedia.org/wiki/Billy_Garrett +596,elisian,,,Ed,Elisian,09/12/1926,American,http://en.wikipedia.org/wiki/Ed_Elisian +597,connor,,,Pat,O'Connor,09/10/1928,American,http://en.wikipedia.org/wiki/Pat_O%27Connor_(auto_racer) +598,jerry_unser,,,Jerry,Unser,15/11/1932,American,http://en.wikipedia.org/wiki/Jerry_Unser +599,bisch,,,Art,Bisch,10/11/1926,American,http://en.wikipedia.org/wiki/Art_Bisch +600,goethals,,,Christian,Goethals,04/08/1928,Belgian,http://en.wikipedia.org/wiki/Christian_Goethals +601,gibson,,,Dick,Gibson,16/04/1918,British,http://en.wikipedia.org/wiki/Dick_Gibson +602,la_caze,,,Robert,La Caze,26/02/1917,French,http://en.wikipedia.org/wiki/Robert_La_Caze +603,guelfi,,,Andr̩,Guelfi,06/05/1919,French,http://en.wikipedia.org/wiki/Andr%C3%A9_Guelfi +604,picard,,,Fran̤ois,Picard,26/04/1921,French,http://en.wikipedia.org/wiki/Fran%C3%A7ois_Picard +605,bridger,,,Tom,Bridger,24/06/1934,British,http://en.wikipedia.org/wiki/Tom_Bridger +606,portago,,,Alfonso,de Portago,11/10/1928,Spanish,http://en.wikipedia.org/wiki/Alfonso_de_Portago +607,perdisa,,,Cesare,Perdisa,21/10/1932,Italian,http://en.wikipedia.org/wiki/Cesare_Perdisa +608,castellotti,,,Eugenio,Castellotti,10/10/1930,Italian,http://en.wikipedia.org/wiki/Eugenio_Castellotti +609,simon,,,Andr̩,Simon,05/01/1920,French,http://en.wikipedia.org/wiki/Andr%C3%A9_Simon_(racing_driver) +610,leston,,,Les,Leston,16/12/1920,British,http://en.wikipedia.org/wiki/Les_Leston +611,hanks,,,Sam,Hanks,13/07/1914,American,http://en.wikipedia.org/wiki/Sam_Hanks +612,linden,,,Andy,Linden,05/04/1922,American,http://en.wikipedia.org/wiki/Andy_Linden_(racing_driver) +613,teague,,,Marshall,Teague,22/02/1921,American,http://en.wikipedia.org/wiki/Marshall_Teague +614,edmunds,,,Don,Edmunds,23/09/1930,American,http://en.wikipedia.org/wiki/Don_Edmunds +615,agabashian,,,Fred,Agabashian,21/08/1913,American,http://en.wikipedia.org/wiki/Fred_Agabashian +616,george,,,Elmer,George,15/07/1928,American,http://en.wikipedia.org/wiki/Elmer_George +617,macdowel,,,Mike,MacDowel,13/09/1932,British,http://en.wikipedia.org/wiki/Mike_MacDowel +618,mackay-fraser,,,Herbert,MacKay-Fraser,23/06/1927,American,http://en.wikipedia.org/wiki/Herbert_MacKay-Fraser +619,gerard,,,Bob,Gerard,19/01/1914,British,http://en.wikipedia.org/wiki/Bob_Gerard +620,maglioli,,,Umberto,Maglioli,05/06/1928,Italian,http://en.wikipedia.org/wiki/Umberto_Maglioli +621,england,,,Paul,England,28/03/1929,Australian,http://en.wikipedia.org/wiki/Paul_England +622,landi,,,Chico,Landi,14/07/1907,Brazilian,http://en.wikipedia.org/wiki/Chico_Landi +623,uria,,,Alberto,Uria,11/07/1924,Uruguayan,http://en.wikipedia.org/wiki/Alberto_Uria +624,ramos,,,Hernando,da Silva Ramos,07/12/1925,Brazilian,http://en.wikipedia.org/wiki/Hernando_da_Silva_Ramos +625,bayol,,,lie,Bayol,28/02/1914,French,http://en.wikipedia.org/wiki/%C3%89lie_Bayol +626,manzon,,,Robert,Manzon,12/04/1917,French,http://en.wikipedia.org/wiki/Robert_Manzon +627,rosier,,,Louis,Rosier,05/11/1905,French,http://en.wikipedia.org/wiki/Louis_Rosier +628,sweikert,,,Bob,Sweikert,20/05/1926,American,http://en.wikipedia.org/wiki/Bob_Sweikert +629,griffith,,,Cliff,Griffith,06/02/1916,American,http://en.wikipedia.org/wiki/Cliff_Griffith +630,dinsmore,,,Duke,Dinsmore,10/04/1913,American,http://en.wikipedia.org/wiki/Duke_Dinsmore +631,andrews,,,Keith,Andrews,15/06/1920,American,http://en.wikipedia.org/wiki/Keith_Andrews_(driver) +632,frere,,,Paul,Fr̬re,30/01/1917,Belgian,http://en.wikipedia.org/wiki/Paul_Fr%C3%A8re +633,villoresi,,,Luigi,Villoresi,16/05/1909,Italian,http://en.wikipedia.org/wiki/Luigi_Villoresi +634,scotti,,,Piero,Scotti,11/11/1909,Italian,http://en.wikipedia.org/wiki/Piero_Scotti +635,chapman,,,Colin,Chapman,19/05/1928,British,http://en.wikipedia.org/wiki/Colin_Chapman +636,titterington,,,Desmond,Titterington,01/05/1928,British,http://en.wikipedia.org/wiki/Desmond_Titterington +637,scott_Brown,,,Archie,Scott Brown,13/05/1927,British,http://en.wikipedia.org/wiki/Archie_Scott_Brown +638,volonterio,,,Ottorino,Volonterio,07/12/1917,Swiss,http://en.wikipedia.org/wiki/Ottorino_Volonterio +639,milhoux,,,Andr̩,Milhoux,09/12/1928,Belgian,http://en.wikipedia.org/wiki/Andr%C3%A9_Milhoux +640,graffenried,,,Toulo,de Graffenried,18/05/1914,Swiss,http://en.wikipedia.org/wiki/Toulo_de_Graffenried +641,taruffi,,,Piero,Taruffi,12/10/1906,Italian,http://en.wikipedia.org/wiki/Piero_Taruffi +642,farina,,,Nino,Farina,30/10/1906,Italian,http://en.wikipedia.org/wiki/Nino_Farina +643,mieres,,,Roberto,Mieres,03/12/1924,Argentine,http://en.wikipedia.org/wiki/Roberto_Mieres +644,mantovani,,,Sergio,Mantovani,22/05/1929,Italian,http://en.wikipedia.org/wiki/Sergio_Mantovani +645,bucci,,,Clemar,Bucci,04/09/1920,Argentine,http://en.wikipedia.org/wiki/Clemar_Bucci +646,iglesias,,,Jes̼s,Iglesias,22/02/1922,Argentine,http://en.wikipedia.org/wiki/Jes%C3%BAs_Iglesias +647,ascari,,,Alberto,Ascari,13/07/1918,Italian,http://en.wikipedia.org/wiki/Alberto_Ascari +648,kling,,,Karl,Kling,16/09/1910,German,http://en.wikipedia.org/wiki/Karl_Kling +649,birger,,,Pablo,Birger,07/01/1924,Argentine,http://en.wikipedia.org/wiki/Pablo_Birger +650,pollet,,,Jacques,Pollet,02/07/1922,French,http://en.wikipedia.org/wiki/Jacques_Pollet +651,macklin,,,Lance,Macklin,02/09/1919,British,http://en.wikipedia.org/wiki/Lance_Macklin +652,whiteaway,,,Ted,Whiteaway,01/11/1928,British,http://en.wikipedia.org/wiki/Ted_Whiteaway +653,davies,,,Jimmy,Davies,08/08/1929,American,http://en.wikipedia.org/wiki/Jimmy_Davies +654,faulkner,,,Walt,Faulkner,16/02/1920,American,http://en.wikipedia.org/wiki/Walt_Faulkner +655,niday,,,Cal,Niday,29/04/1914,American,http://en.wikipedia.org/wiki/Cal_Niday +656,cross,,,Art,Cross,24/01/1918,American,http://en.wikipedia.org/wiki/Art_Cross +657,vukovich,,,Bill,Vukovich,13/12/1918,American,http://en.wikipedia.org/wiki/Bill_Vukovich +658,mcgrath,,,Jack,McGrath,08/10/1919,American,http://en.wikipedia.org/wiki/Jack_McGrath_(racing_driver) +659,hoyt,,,Jerry,Hoyt,29/01/1929,American,http://en.wikipedia.org/wiki/Jerry_Hoyt +660,claes,,,Johnny,Claes,11/08/1916,Belgian,http://en.wikipedia.org/wiki/Johnny_Claes +661,peter_walker,,,Peter,Walker,07/10/1912,British,http://en.wikipedia.org/wiki/Peter_Walker_(driver) +662,sparken,,,Mike,Sparken,16/06/1930,French,http://en.wikipedia.org/wiki/Mike_Sparken +663,wharton,,,Ken,Wharton,21/03/1916,British,http://en.wikipedia.org/wiki/Ken_Wharton +664,mcalpine,,,Kenneth,McAlpine,21/09/1920,British,http://en.wikipedia.org/wiki/Kenneth_McAlpine +665,marr,,,Leslie,Marr,14/08/1922,British,http://en.wikipedia.org/wiki/Leslie_Marr +666,rolt,,,Tony,Rolt,16/10/1918,British,http://en.wikipedia.org/wiki/Tony_Rolt +667,fitch,,,John,Fitch,04/08/1917,American,http://en.wikipedia.org/wiki/John_Fitch_(driver) +668,lucas,,,Jean,Lucas,25/04/1917,French,http://en.wikipedia.org/wiki/Jean_Lucas +669,bira,,,Prince,Bira,15/07/1914,Thai,http://en.wikipedia.org/wiki/Prince_Bira +670,marimon,,,Onofre,Marim_n,19/12/1923,Argentine,http://en.wikipedia.org/wiki/Onofre_Marim%C3%B3n +671,loyer,,,Roger,Loyer,05/08/1907,French,http://en.wikipedia.org/wiki/Roger_Loyer +672,daponte,,,Jorge,Daponte,05/06/1923,Argentine,http://en.wikipedia.org/wiki/Jorge_Daponte +673,nazaruk,,,Mike,Nazaruk,02/10/1921,American,http://en.wikipedia.org/wiki/Mike_Nazaruk +674,crockett,,,Larry,Crockett,23/10/1926,American,http://en.wikipedia.org/wiki/Larry_Crockett +675,ayulo,,,Manny,Ayulo,20/10/1921,American,http://en.wikipedia.org/wiki/Manny_Ayulo +676,armi,,,Frank,Armi,12/10/1918,American,http://en.wikipedia.org/wiki/Frank_Armi +677,webb,,,Travis,Webb,08/10/1910,American,http://en.wikipedia.org/wiki/Travis_Webb +678,duncan,,,Len,Duncan,25/07/1911,American,http://en.wikipedia.org/wiki/Len_Duncan +679,mccoy,,,Ernie,McCoy,19/02/1921,American,http://en.wikipedia.org/wiki/Ernie_McCoy +680,swaters,,,Jacques,Swaters,30/10/1926,American,http://en.wikipedia.org/wiki/Jacques_Swaters +681,georges_berger,,,Georges,Berger,14/09/1918,Belgian,http://en.wikipedia.org/wiki/Georges_Berger +682,beauman,,,Don,Beauman,26/07/1928,British,http://en.wikipedia.org/wiki/Don_Beauman +683,thorne,,,Leslie,Thorne,23/06/1916,British,http://en.wikipedia.org/wiki/Leslie_Thorne +684,whitehouse,,,Bill,Whitehouse,01/04/1909,British,http://en.wikipedia.org/wiki/Bill_Whitehouse +685,riseley_prichard,,,John,Riseley-Prichard,17/01/1924,British,http://en.wikipedia.org/wiki/John_Riseley-Prichard +686,reg_parnell,,,Reg,Parnell,02/07/1911,British,http://en.wikipedia.org/wiki/Reg_Parnell +687,whitehead,,,Peter,Whitehead,12/11/1914,British,http://en.wikipedia.org/wiki/Peter_Whitehead_(racing_driver) +688,brandon,,,Eric,Brandon,18/07/1920,British,http://en.wikipedia.org/wiki/Eric_Brandon +689,alan_brown,,,Alan,Brown,20/11/1919,British,http://en.wikipedia.org/wiki/Alan_Brown_(racing_driver) +690,nuckey,,,Rodney,Nuckey,26/06/1929,British,http://en.wikipedia.org/wiki/Rodney_Nuckey +691,lang,,,Hermann,Lang,06/04/1909,German,http://en.wikipedia.org/wiki/Hermann_Lang +692,helfrich,,,Theo,Helfrich,13/05/1913,German,http://en.wikipedia.org/wiki/Theo_Helfrich +693,wacker,,,Fred,Wacker,10/07/1918,American,http://en.wikipedia.org/wiki/Fred_Wacker +694,riu,,,Giovanni,de Riu,10/03/1925,Italian,http://en.wikipedia.org/wiki/Giovanni_de_Riu +695,galvez,,,Oscar,Glvez,17/08/1913,Argentine,http://en.wikipedia.org/wiki/%C3%93scar_Alfredo_G%C3%A1lvez +696,john_barber,,,John,Barber,22/07/1929,British,http://en.wikipedia.org/wiki/John_Barber_(racing_driver) +697,bonetto,,,Felice,Bonetto,09/06/1903,Italian,http://en.wikipedia.org/wiki/Felice_Bonetto +698,cruz,,,Adolfo,Cruz,28/06/1923,Argentine,http://en.wikipedia.org/wiki/Adolfo_Schewelm_Cruz +699,nalon,,,Duke,Nalon,02/03/1913,American,http://en.wikipedia.org/wiki/Duke_Nalon +700,scarborough,,,Carl,Scarborough,03/07/1914,American,http://en.wikipedia.org/wiki/Carl_Scarborough +701,holland,,,Bill,Holland,18/12/1907,American,http://en.wikipedia.org/wiki/Bill_Holland +702,bob_scott,,,Bob,Scott,04/10/1928,American,http://en.wikipedia.org/wiki/Bob_Scott_(auto_racer) +703,legat,,,Arthur,Legat,1898-11-01,Belgian,http://en.wikipedia.org/wiki/Arthur_Legat +704,cabantous,,,Yves,Cabantous,08/10/1904,French,http://en.wikipedia.org/wiki/Yves_Giraud_Cabantous +705,crook,,,Tony,Crook,16/02/1920,British,http://en.wikipedia.org/wiki/Tony_Crook +706,jimmy_stewart,,,Jimmy,Stewart,06/03/1931,British,http://en.wikipedia.org/wiki/Jimmy_Stewart_(racing_driver) +707,ian_stewart,,,Ian,Stewart,15/07/1929,British,http://en.wikipedia.org/wiki/Ian_Stewart_(racing_driver) +708,duncan_hamilton,,,Duncan,Hamilton,30/04/1920,British,http://en.wikipedia.org/wiki/Duncan_Hamilton_(racing_driver) +709,klodwig,,,Ernst,Klodwig,23/05/1903,East German,http://en.wikipedia.org/wiki/Ernst_Klodwig +710,krause,,,Rudolf,Krause,30/03/1907,East German,http://en.wikipedia.org/wiki/Rudolf_Krause +711,karch,,,Oswald,Karch,06/03/1917,German,http://en.wikipedia.org/wiki/Oswald_Karch +712,heeks,,,Willi,Heeks,13/02/1922,German,http://en.wikipedia.org/wiki/Willi_Heeks +713,fitzau,,,Theo,Fitzau,10/02/1923,East German,http://en.wikipedia.org/wiki/Theo_Fitzau +714,adolff,,,Kurt,Adolff,05/11/1921,German,http://en.wikipedia.org/wiki/Kurt_Adolff +715,bechem,,,G_nther,Bechem,21/12/1921,German,http://en.wikipedia.org/wiki/G%C3%BCnther_Bechem +716,bauer,,,Erwin,Bauer,17/07/1912,German,http://en.wikipedia.org/wiki/Erwin_Bauer +717,hans_stuck,,,Hans,von Stuck,27/12/1900,German,http://en.wikipedia.org/wiki/Hans_Von_Stuck +718,loof,,,Ernst,Loof,04/07/1907,German,http://en.wikipedia.org/wiki/Ernst_Loof +719,scherrer,,,Albert,Scherrer,28/02/1908,Swiss,http://en.wikipedia.org/wiki/Albert_Scherrer +720,terra,,,Max,de Terra,06/10/1918,Swiss,http://en.wikipedia.org/wiki/Max_de_Terra +721,hirt,,,Peter,Hirt,30/03/1910,Swiss,http://en.wikipedia.org/wiki/Peter_Hirt +722,carini,,,Piero,Carini,06/03/1921,Italian,http://en.wikipedia.org/wiki/Piero_Carini +723,fischer,,,Rudi,Fischer,19/04/1912,Swiss,http://en.wikipedia.org/wiki/Rudi_Fischer +724,ulmen,,,Toni,Ulmen,25/01/1906,German,http://en.wikipedia.org/wiki/Toni_Ulmen +725,abecassis,,,George,Abecassis,21/03/1913,British,http://en.wikipedia.org/wiki/George_Abecassis +726,george_connor,,,George,Connor,16/08/1906,American,http://en.wikipedia.org/wiki/George_Connor_(driver) +727,rigsby,,,Jim,Rigsby,06/06/1923,American,http://en.wikipedia.org/wiki/Jim_Rigsby +728,james,,,Joe,James,23/05/1925,American,http://en.wikipedia.org/wiki/Joe_James_(racing_driver) +729,schindler,,,Bill,Schindler,06/03/1909,American,http://en.wikipedia.org/wiki/Bill_Schindler +730,fonder,,,George,Fonder,22/06/1917,American,http://en.wikipedia.org/wiki/George_Fonder +731,banks,,,Henry,Banks,14/06/1913,American,http://en.wikipedia.org/wiki/Henry_Banks +732,mcdowell,,,Johnny,McDowell,29/01/1915,American,http://en.wikipedia.org/wiki/Johnny_McDowell +733,miller,,,Chet,Miller,19/07/1902,American,http://en.wikipedia.org/wiki/Chet_Miller +734,ball,,,Bobby,Ball,26/08/1925,American,http://en.wikipedia.org/wiki/Bobby_Ball_(auto_racer) +735,tornaco,,,Charles,de Tornaco,07/06/1927,Belgian,http://en.wikipedia.org/wiki/Charles_de_Tornaco +736,laurent,,,Roger,Laurent,21/02/1913,Belgian,http://en.wikipedia.org/wiki/Roger_Laurent +737,obrien,,,Robert,O'Brien,11/04/1908,American,http://en.wikipedia.org/wiki/Robert_O%27Brien_(auto_racer) +738,gaze,,,Tony,Gaze,03/02/1920,Australian,http://en.wikipedia.org/wiki/Tony_Gaze +739,charrington,,,Robin,Montgomerie-Charrington,23/06/1915,British,http://en.wikipedia.org/wiki/Robin_Montgomerie-Charrington +740,comotti,,,Franco,Comotti,24/07/1906,Italian,http://en.wikipedia.org/wiki/Franco_Comotti +741,etancelin,,,Philippe,tancelin,1896-12-28,French,http://en.wikipedia.org/wiki/Philippe_%C3%89tancelin +742,poore,,,Dennis,Poore,19/08/1916,British,http://en.wikipedia.org/wiki/Dennis_Poore +743,thompson,,,Eric,Thompson,04/11/1919,British,http://en.wikipedia.org/wiki/Eric_Thompson_(racing_driver) +744,downing,,,Ken,Downing,05/12/1917,British,http://en.wikipedia.org/wiki/Ken_Downing +745,graham_whitehead,,,Graham,Whitehead,15/04/1922,British,http://en.wikipedia.org/wiki/Graham_Whitehead +746,bianco,,,Gino,Bianco,22/07/1916,Brazilian,http://en.wikipedia.org/wiki/Gino_Bianco +747,murray,,,David,Murray,28/12/1909,British,http://en.wikipedia.org/wiki/David_Murray_(driver) +748,cantoni,,,Eitel,Cantoni,04/10/1906,Uruguayan,http://en.wikipedia.org/wiki/Eitel_Cantoni +749,aston,,,Bill,Aston,29/03/1900,British,http://en.wikipedia.org/wiki/Bill_Aston +750,brudes,,,Adolf,Brudes,1899-10-15,German,http://en.wikipedia.org/wiki/Adolf_Brudes +751,riess,,,Fritz,Riess,11/07/1922,German,http://en.wikipedia.org/wiki/Fritz_Riess +752,niedermayr,,,Helmut,Niedermayr,29/11/1915,German,http://en.wikipedia.org/wiki/Helmut_Niedermayr +753,klenk,,,Hans,Klenk,28/10/1919,German,http://en.wikipedia.org/wiki/Hans_Klenk +754,balsa,,,Marcel,Balsa,01/01/1909,French,http://en.wikipedia.org/wiki/Marcel_Balsa +755,schoeller,,,Rudolf,Schoeller,27/04/1902,Swiss,http://en.wikipedia.org/wiki/Rudolf_Schoeller +756,pietsch,,,Paul,Pietsch,20/06/1911,German,http://en.wikipedia.org/wiki/Paul_Pietsch +757,peters,,,Josef,Peters,16/09/1914,German,http://en.wikipedia.org/wiki/Josef_Peters_(driver) +758,lof,,,Dries,van der Lof,23/08/1919,Dutch,http://en.wikipedia.org/wiki/Dries_van_der_Lof +759,flinterman,,,Jan,Flinterman,02/10/1919,Dutch,http://en.wikipedia.org/wiki/Jan_Flinterman +760,dusio,,,Piero,Dusio,1899-10-13,Italian,http://en.wikipedia.org/wiki/Piero_Dusio +761,crespo,,,Alberto,Crespo,16/01/1920,Argentine,http://en.wikipedia.org/wiki/Alberto_Crespo +762,rol,,,Franco,Rol,05/06/1908,Italian,http://en.wikipedia.org/wiki/Franco_Rol +763,sanesi,,,Consalvo,Sanesi,28/03/1911,Italian,http://en.wikipedia.org/wiki/Consalvo_Sanesi +764,guy_mairesse,,,Guy,Mairesse,10/08/1910,French,http://en.wikipedia.org/wiki/Guy_Mairesse +765,louveau,,,Henri,Louveau,25/01/1910,French,http://en.wikipedia.org/wiki/Henri_Louveau +766,wallard,,,Lee,Wallard,07/09/1910,American,http://en.wikipedia.org/wiki/Lee_Wallard +767,forberg,,,Carl,Forberg,04/03/1911,American,http://en.wikipedia.org/wiki/Carl_Forberg +768,rose,,,Mauri,Rose,26/05/1906,American,http://en.wikipedia.org/wiki/Mauri_Rose +769,mackey,,,Bill,Mackey,15/12/1927,American,http://en.wikipedia.org/wiki/Bill_Mackey +770,green,,,Cecil,Green,30/09/1919,American,http://en.wikipedia.org/wiki/Cecil_Green +771,walt_brown,,,Walt,Brown,30/12/1911,American,http://en.wikipedia.org/wiki/Walt_Brown_(auto_racer) +772,hellings,,,Mack,Hellings,14/09/1915,American,http://en.wikipedia.org/wiki/Mack_Hellings +773,levegh,,,Pierre,Levegh,22/12/1905,French,http://en.wikipedia.org/wiki/Pierre_Levegh +774,chaboud,,,Eug̬ne,Chaboud,12/04/1907,French,http://en.wikipedia.org/wiki/Eug%C3%A8ne_Chaboud +775,gordini,,,Aldo,Gordini,20/05/1921,French,http://en.wikipedia.org/wiki/Aldo_Gordini +776,kelly,,,Joe,Kelly,13/03/1913,Irish,http://en.wikipedia.org/wiki/Joe_Kelly_(Formula_One) +777,parker,,,Philip,Fotheringham-Parker,22/09/1907,British,http://en.wikipedia.org/wiki/Philip_Fotheringham-Parker +778,shawe_taylor,,,Brian,Shawe Taylor,28/01/1915,British,http://en.wikipedia.org/wiki/Brian_Shawe_Taylor +779,john_james,,,John,James,10/05/1914,British,http://en.wikipedia.org/wiki/John_James_(auto_racer) +780,branca,,,Toni,Branca,15/09/1916,Swiss,http://en.wikipedia.org/wiki/Toni_Branca +781,richardson,,,Ken,Richardson,21/08/1911,British,http://en.wikipedia.org/wiki/Ken_Richardson_(race_car_driver) +782,jover,,,Juan,Jover,23/11/1903,Spanish,http://en.wikipedia.org/wiki/Juan_Jover +783,grignard,,,Georges,Grignard,25/07/1905,French,http://en.wikipedia.org/wiki/Georges_Grignard +784,hampshire,,,David,Hampshire,29/12/1917,British,http://en.wikipedia.org/wiki/David_Hampshire +785,crossley,,,Geoff,Crossley,11/05/1921,British,http://en.wikipedia.org/wiki/Geoff_Crossley +786,fagioli,,,Luigi,Fagioli,1898-06-09,Italian,http://en.wikipedia.org/wiki/Luigi_Fagioli +787,harrison,,,Cuth,Harrison,06/07/1906,British,http://en.wikipedia.org/wiki/Cuth_Harrison +788,fry,,,Joe,Fry,26/10/1915,British,http://en.wikipedia.org/wiki/Joe_Fry +789,martin,,,Eug̬ne,Martin,24/03/1915,French,http://en.wikipedia.org/wiki/Eug%C3%A8ne_Martin +790,leslie_johnson,,,Leslie,Johnson,22/03/1912,British,http://en.wikipedia.org/wiki/Leslie_Johnson_(racing_driver) +791,biondetti,,,Clemente,Biondetti,1898-08-18,Italian,http://en.wikipedia.org/wiki/Clemente_Biondetti +792,pian,,,Alfredo,Pin,21/10/1912,Argentine,http://en.wikipedia.org/wiki/Alfredo_Pi%C3%A0n +793,sommer,,,Raymond,Sommer,31/08/1906,French,http://en.wikipedia.org/wiki/Raymond_Sommer +794,chitwood,,,Joie,Chitwood,14/04/1912,American,http://en.wikipedia.org/wiki/Joie_Chitwood +795,fohr,,,Myron,Fohr,17/06/1912,American,http://en.wikipedia.org/wiki/Myron_Fohr +796,ader,,,Walt,Ader,15/12/1913,American,http://en.wikipedia.org/wiki/Walt_Ader +797,holmes,,,Jackie,Holmes,04/09/1920,American,http://en.wikipedia.org/wiki/Jackie_Holmes +798,levrett,,,Bayliss,Levrett,14/02/1914,American,http://en.wikipedia.org/wiki/Bayliss_Levrett +799,jackson,,,Jimmy,Jackson,25/07/1910,American,http://en.wikipedia.org/wiki/Jimmy_Jackson_(driver) +800,pagani,,,Nello,Pagani,11/10/1911,Italian,http://en.wikipedia.org/wiki/Nello_Pagani +801,pozzi,,,Charles,Pozzi,27/08/1909,French,http://en.wikipedia.org/wiki/Charles_Pozzi +802,serafini,,,Dorino,Serafini,22/07/1909,Italian,http://en.wikipedia.org/wiki/Dorino_Serafini +803,cantrell,,,Bill,Cantrell,31/01/1908,American,http://en.wikipedia.org/wiki/William_Cantrell +804,mantz,,,Johnny,Mantz,18/09/1918,American,http://en.wikipedia.org/wiki/Johnny_Mantz +805,kladis,,,Danny,Kladis,10/02/1917,American,http://en.wikipedia.org/wiki/Danny_Kladis +806,oscar_gonzalez,,,scar,Gonzlez,10/11/1923,Uruguayan,http://en.wikipedia.org/wiki/Oscar_Gonz%C3%A1lez_(racing_driver) +807,hulkenberg,27,HUL,Nico,H_lkenberg,19/08/1987,German,http://en.wikipedia.org/wiki/Nico_H%C3%BClkenberg +808,petrov,,PET,Vitaly,Petrov,08/09/1984,Russian,http://en.wikipedia.org/wiki/Vitaly_Petrov +810,grassi,,DIG,Lucas,di Grassi,11/08/1984,Brazilian,http://en.wikipedia.org/wiki/Lucas_di_Grassi +811,bruno_senna,,SEN,Bruno,Senna,15/10/1983,Brazilian,http://en.wikipedia.org/wiki/Bruno_Senna +812,chandhok,,CHA,Karun,Chandhok,19/01/1984,Indian,http://en.wikipedia.org/wiki/Karun_Chandhok +813,maldonado,13,MAL,Pastor,Maldonado,09/03/1985,Venezuelan,http://en.wikipedia.org/wiki/Pastor_Maldonado +814,resta,,DIR,Paul,di Resta,16/04/1986,British,http://en.wikipedia.org/wiki/Paul_di_Resta +815,perez,11,PER,Sergio,P̩rez,26/01/1990,Mexican,http://en.wikipedia.org/wiki/Sergio_P%C3%A9rez +816,ambrosio,,DAM,J̩r̫me,d'Ambrosio,27/12/1985,Belgian,http://en.wikipedia.org/wiki/J%C3%A9r%C3%B4me_d%27Ambrosio +817,ricciardo,3,RIC,Daniel,Ricciardo,01/07/1989,Australian,http://en.wikipedia.org/wiki/Daniel_Ricciardo +818,vergne,25,VER,Jean-ric,Vergne,25/04/1990,French,http://en.wikipedia.org/wiki/Jean-%C3%89ric_Vergne +819,pic,,PIC,Charles,Pic,15/02/1990,French,http://en.wikipedia.org/wiki/Charles_Pic +820,chilton,4,CHI,Max,Chilton,21/04/1991,British,http://en.wikipedia.org/wiki/Max_Chilton +821,gutierrez,21,GUT,Esteban,Guti̩rrez,05/08/1991,Mexican,http://en.wikipedia.org/wiki/Esteban_Guti%C3%A9rrez +822,bottas,77,BOT,Valtteri,Bottas,28/08/1989,Finnish,http://en.wikipedia.org/wiki/Valtteri_Bottas +823,garde,,VDG,Giedo,van der Garde,25/04/1985,Dutch,http://en.wikipedia.org/wiki/Giedo_van_der_Garde +824,jules_bianchi,17,BIA,Jules,Bianchi,03/08/1989,French,http://en.wikipedia.org/wiki/Jules_Bianchi +825,kevin_magnussen,20,MAG,Kevin,Magnussen,05/10/1992,Danish,http://en.wikipedia.org/wiki/Kevin_Magnussen +826,kvyat,26,KVY,Daniil,Kvyat,26/04/1994,Russian,http://en.wikipedia.org/wiki/Daniil_Kvyat +827,lotterer,45,LOT,Andr̩,Lotterer,19/11/1981,German,http://en.wikipedia.org/wiki/Andr%C3%A9_Lotterer +828,ericsson,9,ERI,Marcus,Ericsson,02/09/1990,Swedish,http://en.wikipedia.org/wiki/Marcus_Ericsson +829,stevens,28,STE,Will,Stevens,28/06/1991,British,http://en.wikipedia.org/wiki/Will_Stevens +830,max_verstappen,33,VER,Max,Verstappen,30/09/1997,Dutch,http://en.wikipedia.org/wiki/Max_Verstappen +831,nasr,12,NAS,Felipe,Nasr,21/08/1992,Brazilian,http://en.wikipedia.org/wiki/Felipe_Nasr +832,sainz,55,SAI,Carlos,Sainz,01/09/1994,Spanish,http://en.wikipedia.org/wiki/Carlos_Sainz_Jr. +833,merhi,98,MER,Roberto,Merhi,22/03/1991,Spanish,http://en.wikipedia.org/wiki/Roberto_Merhi +834,rossi,53,RSS,Alexander,Rossi,25/09/1991,American,http://en.wikipedia.org/wiki/Alexander_Rossi_%28racing_driver%29 +835,jolyon_palmer,30,PAL,Jolyon,Palmer,20/01/1991,British,http://en.wikipedia.org/wiki/Jolyon_Palmer +836,wehrlein,94,WEH,Pascal,Wehrlein,18/10/1994,German,http://en.wikipedia.org/wiki/Pascal_Wehrlein +837,haryanto,88,HAR,Rio,Haryanto,22/01/1993,Indonesian,http://en.wikipedia.org/wiki/Rio_Haryanto +838,vandoorne,2,VAN,Stoffel,Vandoorne,26/03/1992,Belgian,http://en.wikipedia.org/wiki/Stoffel_Vandoorne +839,ocon,31,OCO,Esteban,Ocon,17/09/1996,French,http://en.wikipedia.org/wiki/Esteban_Ocon +840,stroll,18,STR,Lance,Stroll,29/10/1998,Canadian,http://en.wikipedia.org/wiki/Lance_Stroll +841,giovinazzi,36,GIO,Antonio,Giovinazzi,14/12/1993,Italian,http://en.wikipedia.org/wiki/Antonio_Giovinazzi +843,brendon_hartley,39,HAR,Brendon,Hartley,10/11/1989,New Zealander,http://en.wikipedia.org/wiki/Brendon_Hartley \ No newline at end of file diff --git a/database/formula_1/data_csv/lapTimes.csv b/database/formula_1/data_csv/lapTimes.csv new file mode 100644 index 0000000000000000000000000000000000000000..b46fca14ce577751ad4ae3bcd318fa14b04d83bc --- /dev/null +++ b/database/formula_1/data_csv/lapTimes.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:caac89452bba84091fd727c1ed3c7fd0ab798860f68f4ffdccb7eaa3b163ddb5 +size 12118621 diff --git a/database/formula_1/data_csv/pitStops.csv b/database/formula_1/data_csv/pitStops.csv new file mode 100644 index 0000000000000000000000000000000000000000..907f61691de0fa4fa5cfb4608a1c18517a722920 --- /dev/null +++ b/database/formula_1/data_csv/pitStops.csv @@ -0,0 +1,6252 @@ +raceId,driverId,stop,lap,time,duration,milliseconds +841,153,1,1,17:05:23,26.898,26898 +841,30,1,1,17:05:52,25.021,25021 +841,17,1,11,17:20:48,23.426,23426 +841,4,1,12,17:22:34,23.251,23251 +841,13,1,13,17:24:10,23.842,23842 +841,22,1,13,17:24:29,23.643,23643 +841,20,1,14,17:25:17,22.603,22603 +841,814,1,14,17:26:03,24.863,24863 +841,816,1,14,17:26:50,25.259,25259 +841,67,1,15,17:27:34,25.342,25342 +841,2,1,15,17:27:41,22.994,22994 +841,1,1,16,17:28:24,23.227,23227 +841,808,1,16,17:28:39,24.535,24535 +841,3,1,16,17:29:00,23.716,23716 +841,155,1,16,17:29:06,24.064,24064 +841,16,1,16,17:29:08,25.978,25978 +841,15,1,16,17:29:49,24.899,24899 +841,18,1,17,17:30:24,16.867,16867 +841,153,2,17,17:31:06,24.463,24463 +841,5,1,17,17:31:11,24.865,24865 +841,30,2,17,17:32:08,23.988,23988 +841,10,1,18,17:33:02,23.792,23792 +841,18,2,19,17:33:53,23.303,23303 +841,815,1,23,17:40:27,23.438,23438 +841,22,2,23,17:40:45,37.856,37856 +841,17,2,26,17:44:29,22.520,22520 +841,4,2,27,17:46:04,24.733,24733 +841,22,3,28,17:49:07,16.892,16892 +841,67,2,29,17:49:47,23.100,23100 +841,2,2,30,17:51:32,25.098,25098 +841,13,2,31,17:52:28,24.500,24500 +841,155,2,32,17:54:21,24.192,24192 +841,20,2,36,17:59:17,24.036,24036 +841,1,2,36,17:59:29,23.199,23199 +841,153,3,35,17:59:45,26.348,26348 +841,808,2,36,17:59:47,25.683,25683 +841,814,2,36,18:00:48,24.332,24332 +841,18,3,37,18:01:49,22.681,22681 +841,16,2,37,18:02:15,23.871,23871 +841,15,2,37,18:03:55,24.848,24848 +841,816,2,38,18:06:53,26.446,26446 +841,17,3,41,18:07:37,26.230,26230 +841,22,4,40,18:08:03,26.309,26309 +841,4,3,42,18:09:08,24.181,24181 +841,13,3,48,18:18:54,24.095,24095 +842,16,1,3,16:09:07,31.694,31694 +842,22,1,3,16:10:04,32.978,32978 +842,17,1,10,16:21:21,22.572,22572 +842,814,1,11,16:23:16,22.773,22773 +842,1,1,12,16:24:40,22.552,22552 +842,20,1,13,16:26:17,23.019,23019 +842,2,1,13,16:26:28,23.900,23900 +842,18,1,13,16:26:29,22.400,22400 +842,13,1,13,16:26:30,29.224,29224 +842,15,1,13,16:27:03,25.516,25516 +842,4,1,14,16:28:15,23.152,23152 +842,30,1,14,16:28:34,22.576,22576 +842,808,1,15,16:30:10,23.182,23182 +842,67,1,15,16:30:23,23.280,23280 +842,3,1,15,16:30:37,24.967,24967 +842,5,1,15,16:30:37,29.084,29084 +842,153,1,16,16:32:25,23.584,23584 +842,16,2,16,16:32:31,22.046,22046 +842,155,1,17,16:33:53,23.280,23280 +842,815,1,17,16:34:14,23.597,23597 +842,10,1,17,16:34:28,24.617,24617 +842,816,1,17,16:34:39,26.252,26252 +842,24,1,17,16:34:56,27.815,27815 +842,22,2,17,16:35:41,24.502,24502 +842,67,2,20,16:39:30,29.843,29843 +842,17,2,22,16:42:37,21.991,21991 +842,18,2,23,16:44:11,22.471,22471 +842,1,2,24,16:45:48,22.611,22611 +842,814,2,24,16:46:20,22.419,22419 +842,20,2,25,16:47:27,21.893,21893 +842,4,2,26,16:49:19,23.894,23894 +842,2,2,26,16:49:31,23.221,23221 +842,13,2,27,16:51:17,22.541,22541 +842,808,2,27,16:51:25,22.680,22680 +842,30,2,28,16:53:26,22.261,22261 +842,3,2,29,16:55:28,22.577,22577 +842,17,3,32,17:00:01,22.069,22069 +842,153,2,32,17:00:55,22.888,22888 +842,16,3,32,17:00:56,22.550,22550 +842,67,3,32,17:01:03,27.439,27439 +842,5,2,34,17:04:41,23.336,23336 +842,10,2,34,17:05:19,24.429,24429 +842,816,2,35,17:07:20,24.416,24416 +842,155,2,36,17:07:26,23.442,23442 +842,1,3,37,17:08:28,25.382,25382 +842,814,3,37,17:09:21,23.977,23977 +842,18,3,38,17:10:13,22.483,22483 +842,13,3,38,17:10:28,22.893,22893 +842,2,3,39,17:12:09,22.602,22602 +842,24,2,38,17:13:32,26.554,26554 +842,3,3,40,17:15:05,22.526,22526 +842,20,3,41,17:15:08,22.313,22313 +842,4,3,41,17:15:25,23.812,23812 +842,30,3,42,17:18:08,22.227,22227 +842,17,4,43,17:19:10,22.161,22161 +842,808,3,44,17:21:08,28.694,28694 +842,4,4,46,17:24:24,27.182,27182 +842,24,3,44,17:25:07,38.823,38823 +842,1,4,52,17:34:48,22.466,22466 +843,153,1,9,15:19:36,22.419,22419 +843,24,1,9,15:20:00,14.160,14160 +843,30,1,10,15:21:12,20.522,20522 +843,17,1,10,15:21:27,23.442,23442 +843,813,1,10,15:21:35,23.160,23160 +843,814,1,11,15:22:57,21.989,21989 +843,3,1,12,15:24:32,20.771,20771 +843,67,1,12,15:24:56,22.010,22010 +843,18,1,14,15:27:59,23.779,23779 +843,20,1,14,15:28:00,21.995,21995 +843,155,1,14,15:28:17,21.855,21855 +843,13,1,15,15:29:47,21.624,21624 +843,1,1,15,15:29:49,20.878,20878 +843,16,1,15,15:30:01,20.989,20989 +843,4,1,16,15:31:34,22.524,22524 +843,815,1,16,15:31:55,21.473,21473 +843,22,1,16,15:32:01,21.709,21709 +843,67,2,16,15:32:19,24.722,24722 +843,10,1,16,15:32:33,22.683,22683 +843,808,1,17,15:33:36,21.981,21981 +843,2,1,18,15:35:28,22.216,22216 +843,5,1,19,15:37:31,22.485,22485 +843,15,1,20,15:39:24,23.029,23029 +843,816,1,20,15:39:50,22.901,22901 +843,24,2,21,15:42:05,24.467,24467 +843,39,1,23,15:45:28,26.049,26049 +843,18,2,24,15:45:35,20.758,20758 +843,3,2,25,15:47:13,22.005,22005 +843,1,2,25,15:47:20,20.533,20533 +843,17,2,25,15:47:44,21.132,21132 +843,813,2,25,15:48:09,22.062,22062 +843,30,2,26,15:49:15,21.964,21964 +843,10,2,28,15:54:22,21.908,21908 +843,16,2,30,15:56:26,21.058,21058 +843,155,2,30,15:56:28,21.936,21936 +843,2,2,30,15:56:29,21.821,21821 +843,20,2,31,15:57:37,21.533,21533 +843,4,2,32,15:59:39,21.251,21251 +843,814,2,32,15:59:51,21.218,21218 +843,13,2,33,16:01:04,21.168,21168 +843,67,3,33,16:02:13,21.928,21928 +843,816,2,34,16:05:10,22.802,22802 +843,22,2,35,16:05:24,21.481,21481 +843,815,2,36,16:06:55,23.397,23397 +843,18,3,37,16:08:00,21.237,21237 +843,808,2,37,16:08:34,22.005,22005 +843,1,3,38,16:09:38,20.567,20567 +843,3,3,39,16:11:19,20.720,20720 +843,30,3,39,16:11:49,21.400,21400 +843,17,3,40,16:13:29,21.091,21091 +843,10,3,39,16:14:17,33.827,33827 +843,5,2,40,16:14:27,21.890,21890 +843,813,3,40,16:14:36,27.620,27620 +843,15,2,42,16:18:14,22.260,22260 +843,24,3,45,16:25:39,23.499,23499 +843,16,3,47,16:26:24,28.708,28708 +843,815,3,48,16:28:01,13.900,13900 +843,815,4,50,16:31:39,28.845,28845 +844,815,1,1,15:05:18,29.270,29270 +844,30,1,2,15:06:35,30.182,30182 +844,808,1,8,15:16:06,21.422,21422 +844,13,1,9,15:17:37,22.022,22022 +844,1,1,9,15:17:38,20.833,20833 +844,67,1,9,15:17:47,21.769,21769 +844,17,1,10,15:19:04,21.050,21050 +844,4,1,10,15:19:05,21.308,21308 +844,3,1,10,15:19:09,22.573,22573 +844,2,1,10,15:19:16,22.300,22300 +844,22,1,10,15:19:20,22.717,22717 +844,16,1,10,15:19:22,21.649,21649 +844,20,1,11,15:20:32,20.623,20623 +844,814,1,11,15:21:00,20.775,20775 +844,813,1,11,15:21:09,23.881,23881 +844,18,1,13,15:23:57,21.368,21368 +844,155,1,13,15:24:09,21.820,21820 +844,153,1,13,15:24:25,22.713,22713 +844,15,1,13,15:24:28,23.066,23066 +844,30,2,14,15:26:02,20.907,20907 +844,39,1,14,15:26:26,27.353,27353 +844,5,1,15,15:27:42,22.854,22854 +844,24,1,15,15:28:03,24.634,24634 +844,815,2,16,15:29:30,22.895,22895 +844,816,1,16,15:29:37,22.779,22779 +844,24,2,16,15:30:57,56.611,56611 +844,808,2,19,15:33:42,21.323,21323 +844,1,2,20,15:35:09,21.075,21075 +844,17,2,21,15:36:27,20.421,20421 +844,3,2,22,15:38:24,20.927,20927 +844,2,2,22,15:38:25,21.919,21919 +844,4,2,23,15:39:35,21.732,21732 +844,13,2,23,15:39:58,21.322,21322 +844,67,2,23,15:40:07,22.128,22128 +844,155,2,23,15:40:15,23.455,23455 +844,22,2,24,15:41:43,22.868,22868 +844,814,2,24,15:41:50,20.930,20930 +844,20,2,25,15:42:31,20.112,20112 +844,16,2,25,15:43:21,21.084,21084 +844,813,2,25,15:43:41,22.555,22555 +844,15,2,25,15:43:47,22.862,22862 +844,18,2,26,15:44:37,22.639,22639 +844,39,2,27,15:47:59,24.962,24962 +844,153,2,29,15:49:46,21.826,21826 +844,30,3,30,15:51:13,20.379,20379 +844,5,2,31,15:53:27,21.633,21633 +844,814,3,32,15:54:38,20.887,20887 +844,815,3,32,15:54:42,22.365,22365 +844,3,3,33,15:55:49,20.949,20949 +844,1,3,34,15:57:04,35.688,35688 +844,816,2,33,15:57:20,24.837,24837 +844,808,3,34,15:57:21,21.838,21838 +844,13,3,34,15:57:22,23.471,23471 +844,17,3,35,15:58:20,20.843,20843 +844,4,3,36,15:59:49,21.702,21702 +844,2,3,36,16:00:31,20.872,20872 +844,24,3,35,16:02:57,25.125,25125 +844,155,3,38,16:03:58,22.456,22456 +844,18,3,39,16:05:05,21.417,21417 +844,153,3,39,16:05:31,21.986,21986 +844,20,3,40,16:05:46,20.385,20385 +844,15,3,39,16:06:10,22.219,22219 +844,67,3,40,16:06:48,22.032,22032 +844,22,3,40,16:07:01,21.687,21687 +844,16,3,40,16:07:05,21.006,21006 +844,24,4,37,16:07:22,43.603,43603 +844,813,3,41,16:09:04,21.827,21827 +844,815,4,42,16:10:21,21.715,21715 +844,3,4,44,16:12:55,20.308,20308 +844,814,4,44,16:13:28,21.403,21403 +844,17,4,45,16:13:49,22.087,22087 +844,808,4,45,16:14:37,21.662,21662 +844,30,4,45,16:14:46,20.597,20597 +844,4,4,46,16:15:17,21.379,21379 +844,813,4,45,16:15:30,13.925,13925 +844,1,4,46,16:15:51,22.041,22041 +844,2,4,46,16:16:10,21.884,21884 +844,13,4,46,16:16:13,26.685,26685 +844,20,4,47,16:16:40,20.489,20489 +844,39,3,45,16:17:26,24.474,24474 +844,5,3,53,16:28:36,23.114,23114 +844,153,4,55,16:30:31,21.931,21931 +845,155,1,1,14:05:11,24.871,24871 +845,815,1,7,14:14:14,23.592,23592 +845,813,1,8,14:15:48,22.689,22689 +845,20,1,9,14:16:54,20.253,20253 +845,67,1,9,14:17:17,20.818,20818 +845,4,1,10,14:18:23,20.567,20567 +845,17,1,10,14:18:27,20.881,20881 +845,30,1,10,14:18:43,20.084,20084 +845,1,1,11,14:19:57,19.761,19761 +845,808,1,11,14:20:14,21.856,21856 +845,3,1,11,14:20:17,20.647,20647 +845,13,1,11,14:20:19,20.800,20800 +845,153,1,11,14:20:28,20.741,20741 +845,22,1,11,14:20:48,29.936,29936 +845,16,1,13,14:23:57,20.773,20773 +845,18,1,14,14:24:51,20.015,20015 +845,39,1,14,14:25:56,24.843,24843 +845,814,1,15,14:26:40,20.070,20070 +845,15,1,15,14:26:50,22.364,22364 +845,5,1,16,14:28:30,21.019,21019 +845,24,1,16,14:28:55,23.157,23157 +845,10,1,16,14:29:00,22.744,22744 +845,816,1,17,14:30:41,23.176,23176 +845,20,2,18,14:30:44,19.887,19887 +845,4,2,19,14:32:13,20.238,20238 +845,17,2,19,14:32:16,20.079,20079 +845,813,2,20,14:34:36,24.821,24821 +845,13,2,21,14:35:51,21.635,21635 +845,2,1,21,14:36:21,21.322,21322 +845,1,2,23,14:38:08,20.235,20235 +845,22,2,23,14:39:40,21.226,21226 +845,153,2,24,14:40:47,20.872,20872 +845,67,2,25,14:42:10,24.745,24745 +845,155,2,25,14:42:46,21.128,21128 +845,30,2,26,14:43:25,20.487,20487 +845,808,2,26,14:43:33,24.232,24232 +845,3,2,27,14:45:01,19.534,19534 +845,4,3,29,14:47:26,20.738,20738 +845,17,3,29,14:47:27,20.279,20279 +845,5,2,28,14:47:28,20.807,20807 +845,815,2,29,14:48:40,21.143,21143 +845,15,2,29,14:48:41,21.723,21723 +845,39,2,28,14:48:52,24.448,24448 +845,18,2,30,14:49:06,20.763,20763 +845,16,2,30,14:50:19,20.267,20267 +845,814,2,32,14:53:02,20.126,20126 +845,20,3,34,14:54:42,20.426,20426 +845,1,3,35,14:56:14,20.473,20473 +845,816,2,34,14:58:05,22.982,22982 +845,22,3,35,14:58:09,20.650,20650 +845,13,3,36,14:58:48,22.419,22419 +845,813,3,36,14:59:14,21.574,21574 +845,2,2,36,14:59:22,21.953,21953 +845,153,3,36,14:59:25,21.019,21019 +845,4,4,39,15:02:54,20.380,20380 +845,10,2,38,15:03:54,21.632,21632 +845,30,3,41,15:06:21,20.451,20451 +845,808,3,41,15:06:36,21.739,21739 +845,5,3,41,15:07:42,23.068,23068 +845,3,3,42,15:07:53,20.395,20395 +845,67,3,42,15:08:31,20.819,20819 +845,15,3,43,15:10:27,23.001,23001 +845,155,3,44,15:11:40,20.500,20500 +845,17,4,47,15:14:50,19.984,19984 +845,20,4,48,15:15:41,20.292,20292 +845,815,3,47,15:16:00,21.829,21829 +845,18,3,48,15:16:10,20.107,20107 +845,1,4,49,15:17:11,20.988,20988 +845,16,3,48,15:17:54,23.230,23230 +845,39,3,47,15:19:38,24.298,24298 +845,2,3,50,15:20:32,20.796,20796 +845,153,4,50,15:21:09,23.143,23143 +845,816,3,49,15:21:44,21.708,21708 +845,814,3,51,15:22:03,20.573,20573 +845,813,4,53,15:25:26,22.077,22077 +845,10,3,53,15:27:29,21.170,21170 +845,22,4,54,15:27:32,20.637,20637 +846,30,1,12,14:19:30,35.084,35084 +846,18,1,15,14:22:57,25.280,25280 +846,3,1,15,14:23:33,25.189,25189 +846,20,1,16,14:24:15,28.536,28536 +846,17,1,16,14:24:32,37.735,37735 +846,4,1,17,14:25:41,25.352,25352 +846,5,1,19,14:29:21,26.477,26477 +846,814,1,20,14:30:24,24.970,24970 +846,1,1,22,14:33:00,31.445,31445 +846,10,1,22,14:33:33,26.827,26827 +846,15,1,24,14:36:13,25.595,25595 +846,813,1,25,14:37:09,26.468,26468 +846,13,1,26,14:38:20,26.615,26615 +846,39,1,25,14:38:46,28.325,28325 +846,814,2,27,14:40:23,19.360,19360 +846,808,1,28,14:41:17,28.856,28856 +846,153,1,29,14:43:07,25.907,25907 +846,22,1,32,14:46:47,25.921,25921 +846,18,2,33,14:46:57,26.421,26421 +846,814,3,32,14:47:35,47.226,47226 +846,2,1,33,14:48:15,25.851,25851 +846,67,1,33,14:48:16,26.073,26073 +846,4,2,34,14:48:45,31.382,31382 +846,3,2,33,14:48:50,25.310,25310 +846,24,1,32,14:49:02,28.298,28298 +846,816,1,33,14:49:39,27.577,27577 +846,155,1,34,14:49:49,28.642,28642 +846,16,1,34,14:49:51,25.037,25037 +846,39,2,33,14:51:08,39.917,39917 +846,1,2,43,15:03:45,19.347,19347 +846,15,2,46,15:09:08,26.065,26065 +846,18,3,48,15:09:55,24.670,24670 +846,1,3,49,15:12:04,26.977,26977 +846,5,2,52,15:17:38,25.878,25878 +846,3,3,53,15:18:33,25.116,25116 +846,813,2,54,15:18:38,25.687,25687 +846,17,2,55,15:19:56,26.269,26269 +846,153,2,56,15:22:30,27.550,27550 +846,67,2,62,15:30:24,25.045,25045 +846,816,2,63,15:33:21,26.464,26464 +846,16,2,68,15:37:52,27.879,27879 +846,22,2,68,15:38:54,25.675,25675 +846,2,2,69,15:40:13,26.281,26281 +847,18,1,8,13:15:11,23.650,23650 +847,24,1,9,13:17:25,27.202,27202 +847,18,2,13,13:25:10,14.501,14501 +847,22,1,15,13:28:31,23.305,23305 +847,16,1,16,13:30:09,24.052,24052 +847,4,1,17,13:31:21,23.893,23893 +847,3,1,17,13:31:28,23.105,23105 +847,813,1,17,13:31:45,23.571,23571 +847,67,1,17,13:31:50,23.949,23949 +847,816,1,17,13:32:07,24.143,24143 +847,30,1,18,13:33:04,24.472,24472 +847,4,2,19,13:34:54,26.348,26348 +847,18,3,19,13:35:02,23.868,23868 +847,3,2,19,13:35:10,22.986,22986 +847,153,1,19,13:35:14,26.045,26045 +847,22,2,19,13:35:21,25.066,25066 +847,5,1,19,13:35:26,44.037,44037 +847,15,1,19,13:35:28,51.684,51684 +847,813,2,19,13:35:30,24.943,24943 +847,20,1,20,13:36:13,23.872,23872 +847,17,1,20,13:36:40,29.546,29546 +847,67,2,20,13:37:27,24.649,24649 +847,13,1,21,13:38:09,24.886,24886 +847,30,2,21,13:38:51,24.196,24196 +847,816,2,23,13:43:32,30.497,30497 +847,816,3,33,16:07:00,24.655,24655 +847,30,3,34,16:08:48,22.832,22832 +847,16,2,34,16:08:49,22.923,22923 +847,10,1,34,16:08:50,24.425,24425 +847,22,3,34,16:08:51,24.684,24684 +847,67,3,34,16:08:53,23.970,23970 +847,2,1,35,16:10:18,23.113,23113 +847,814,1,35,16:10:20,22.479,22479 +847,18,4,35,16:10:22,23.589,23589 +847,37,1,35,16:10:23,30.288,30288 +847,153,2,35,16:10:26,24.863,24863 +847,813,3,35,16:10:29,23.593,23593 +847,24,2,35,16:10:48,34.897,34897 +847,155,1,36,16:11:49,23.687,23687 +847,13,2,36,16:11:50,22.742,22742 +847,808,1,36,16:11:52,23.816,23816 +847,17,2,36,16:11:53,22.402,22402 +847,4,3,36,16:11:54,26.129,26129 +847,3,3,36,16:11:57,22.735,22735 +847,15,2,36,16:12:14,23.332,23332 +847,816,4,36,16:12:15,14.538,14538 +847,20,2,37,16:13:21,22.958,22958 +847,39,1,37,16:14:01,29.115,29115 +847,18,5,37,16:14:55,31.718,31718 +847,814,2,43,16:24:38,28.630,28630 +847,16,3,45,16:27:43,14.565,14565 +847,16,4,49,16:33:51,32.449,32449 +847,17,3,50,16:35:03,22.770,22770 +847,22,4,50,16:35:12,23.059,23059 +847,67,4,50,16:35:23,26.561,26561 +847,814,3,50,16:35:33,14.538,14538 +847,18,6,51,16:36:41,23.741,23741 +847,153,3,51,16:36:45,23.338,23338 +847,813,4,51,16:36:46,23.700,23700 +847,10,2,51,16:37:16,25.079,25079 +847,39,2,51,16:37:38,29.540,29540 +847,30,4,52,16:37:50,22.869,22869 +847,13,3,52,16:37:52,22.560,22560 +847,2,2,52,16:37:57,23.364,23364 +847,37,2,52,16:38:22,24.039,24039 +847,15,3,52,16:38:45,25.140,25140 +847,816,5,52,16:38:56,30.714,30714 +847,20,3,53,16:39:07,22.526,22526 +847,24,3,52,16:39:20,33.278,33278 +847,155,2,53,16:39:22,24.618,24618 +847,808,2,53,16:39:31,24.145,24145 +847,3,4,53,16:39:36,22.702,22702 +847,13,4,53,16:39:50,28.346,28346 +847,814,4,53,16:40:04,23.129,23129 +847,813,5,61,16:53:19,31.701,31701 +848,813,1,10,14:22:02,21.301,21301 +848,2,1,11,14:23:23,22.114,22114 +848,22,1,11,14:23:27,21.163,21163 +848,155,1,11,14:23:29,23.492,23492 +848,1,1,12,14:24:49,20.340,20340 +848,3,1,12,14:25:02,21.054,21054 +848,16,1,12,14:25:09,20.676,20676 +848,17,1,13,14:26:28,20.465,20465 +848,20,1,14,14:28:11,21.006,21006 +848,4,1,14,14:28:15,21.477,21477 +848,18,1,14,14:28:31,20.997,20997 +848,30,1,14,14:28:40,21.201,21201 +848,814,1,14,14:28:51,20.567,20567 +848,67,1,14,14:28:54,21.321,21321 +848,5,1,14,14:29:11,23.241,23241 +848,39,1,14,14:29:43,28.030,28030 +848,13,1,15,14:30:07,20.718,20718 +848,808,1,15,14:30:49,22.104,22104 +848,30,2,15,14:30:59,30.665,30665 +848,24,1,15,14:31:23,24.459,24459 +848,10,1,17,14:34:56,21.900,21900 +848,15,1,18,14:36:30,23.327,23327 +848,816,1,18,14:36:56,21.943,21943 +848,153,1,19,14:37:50,21.391,21391 +848,1,2,24,14:46:06,21.035,21035 +848,815,1,25,14:48:56,21.939,21939 +848,67,2,26,14:50:28,20.460,20460 +848,5,2,26,14:51:06,21.126,21126 +848,2,2,27,14:52:04,22.285,22285 +848,814,2,27,14:52:08,20.818,20818 +848,808,2,27,14:52:26,21.168,21168 +848,17,2,28,14:52:53,20.319,20319 +848,16,2,28,14:53:47,20.286,20286 +848,22,2,28,14:53:53,21.262,21262 +848,813,2,28,14:54:30,21.805,21805 +848,4,2,29,14:54:36,20.551,20551 +848,24,2,28,14:55:33,22.766,22766 +848,20,2,30,14:56:16,20.441,20441 +848,18,2,30,14:56:46,20.325,20325 +848,3,2,30,14:57:07,23.547,23547 +848,39,2,29,14:58:17,24.675,24675 +848,13,2,31,14:58:23,25.537,25537 +848,30,3,31,14:59:40,21.168,21168 +848,155,2,33,15:03:14,20.545,20545 +848,15,2,34,15:05:36,22.131,22131 +848,816,2,37,15:11:48,22.250,22250 +848,808,3,39,15:13:41,21.105,21105 +848,2,3,40,15:15:10,21.472,21472 +848,22,3,40,15:15:16,21.286,21286 +848,17,3,42,15:17:11,20.367,20367 +848,1,3,42,15:17:41,20.212,20212 +848,153,2,42,15:18:33,21.103,21103 +848,5,3,42,15:19:57,22.632,22632 +848,16,3,43,15:20:21,21.036,21036 +848,10,2,42,15:20:26,22.030,22030 +848,814,3,44,15:22:18,21.069,21069 +848,4,3,45,15:22:21,20.136,20136 +848,24,3,43,15:23:02,22.235,22235 +848,813,3,44,15:23:06,21.490,21490 +848,3,3,45,15:23:36,20.896,20896 +848,67,3,45,15:24:07,20.995,20995 +848,20,3,47,15:25:39,20.331,20331 +848,39,3,44,15:26:13,26.059,26059 +848,13,3,48,15:28:09,20.404,20404 +848,18,3,48,15:28:21,20.479,20479 +849,30,1,9,13:20:38,30.242,30242 +849,2,1,10,13:22:37,24.716,24716 +849,18,1,11,13:24:05,25.070,25070 +849,16,1,11,13:24:13,25.737,25737 +849,155,1,11,13:24:19,28.448,28448 +849,813,1,11,13:24:27,26.238,26238 +849,67,1,11,13:24:30,26.279,26279 +849,808,1,11,13:24:37,24.880,24880 +849,22,1,11,13:24:38,25.860,25860 +849,10,1,11,13:24:52,25.416,25416 +849,24,1,11,13:25:12,26.643,26643 +849,816,1,11,13:25:14,28.742,28742 +849,17,1,12,13:25:41,23.973,23973 +849,4,1,12,13:25:42,26.566,26566 +849,1,1,12,13:25:49,25.100,25100 +849,814,1,12,13:26:02,26.612,26612 +849,3,1,12,13:26:12,24.722,24722 +849,815,1,12,13:26:13,25.386,25386 +849,153,1,12,13:26:20,24.719,24719 +849,817,1,12,13:27:17,25.872,25872 +849,20,1,13,13:27:22,24.818,24818 +849,13,1,13,13:27:39,24.159,24159 +849,30,2,16,13:33:23,31.751,31751 +849,155,2,20,13:40:27,31.551,31551 +849,1,2,24,13:46:21,24.065,24065 +849,814,2,24,13:46:50,45.291,45291 +849,813,2,24,13:47:12,24.272,24272 +849,16,2,25,13:48:32,24.077,24077 +849,67,2,25,13:48:50,24.620,24620 +849,17,2,26,13:49:36,25.490,25490 +849,18,2,26,13:49:45,24.287,24287 +849,13,2,26,13:49:48,23.929,23929 +849,814,3,26,13:50:52,31.471,31471 +849,20,2,27,13:51:10,31.558,31558 +849,4,2,27,13:51:15,23.974,23974 +849,816,2,28,13:55:39,25.428,25428 +849,817,2,28,13:56:23,26.942,26942 +849,3,2,30,13:56:50,24.399,24399 +849,2,2,30,13:57:06,24.434,24434 +849,10,2,30,13:58:43,24.959,24959 +849,153,2,31,13:58:46,24.095,24095 +849,30,3,31,13:58:47,24.651,24651 +849,22,2,31,13:59:02,23.955,23955 +849,815,2,32,14:00:08,25.619,25619 +849,24,2,31,14:00:49,25.505,25505 +849,813,3,35,14:05:42,23.869,23869 +849,20,3,36,14:06:13,23.137,23137 +849,1,3,37,14:07:50,23.340,23340 +849,17,3,38,14:09:30,23.785,23785 +849,808,2,38,14:10:21,24.172,24172 +849,4,3,39,14:10:50,23.474,23474 +849,18,3,39,14:11:08,23.292,23292 +849,16,3,40,14:13:32,27.240,27240 +849,13,3,41,14:14:35,23.238,23238 +850,815,1,8,14:17:05,27.247,27247 +850,67,1,10,14:20:28,27.301,27301 +850,812,1,10,14:21:22,31.879,31879 +850,17,1,14,14:26:23,20.440,20440 +850,3,1,14,14:26:39,20.348,20348 +850,30,1,15,14:28:22,20.768,20768 +850,813,1,15,14:28:35,21.601,21601 +850,1,1,16,14:29:38,20.982,20982 +850,4,1,16,14:29:39,20.430,20430 +850,20,1,16,14:29:57,20.394,20394 +850,13,1,17,14:31:36,20.344,20344 +850,155,1,20,14:36:51,20.882,20882 +850,24,1,20,14:37:44,22.048,22048 +850,817,1,21,14:39:29,22.319,22319 +850,16,1,22,14:39:56,20.839,20839 +850,10,1,22,14:41:05,22.252,22252 +850,808,1,23,14:41:53,21.449,21449 +850,153,1,23,14:42:02,21.062,21062 +850,814,1,23,14:42:05,23.676,23676 +850,18,1,24,14:43:15,20.952,20952 +850,816,1,24,14:44:42,20.762,20762 +850,5,1,26,14:47:26,22.088,22088 +850,17,2,30,14:52:32,21.299,21299 +850,812,2,28,14:53:09,22.331,22331 +850,1,2,31,14:54:10,20.496,20496 +850,4,2,32,14:55:46,20.035,20035 +850,813,2,35,15:01:53,21.057,21057 +850,3,2,36,15:03:03,20.975,20975 +850,67,2,36,15:04:03,20.954,20954 +850,30,2,37,15:04:59,20.299,20299 +850,20,2,40,15:09:11,20.274,20274 +850,13,2,41,15:10:46,20.185,20185 +850,815,2,41,15:11:48,21.645,21645 +850,153,2,43,15:15:07,21.689,21689 +850,808,2,46,15:19:54,20.572,20572 +850,16,2,48,15:22:30,20.879,20879 +850,155,2,48,15:23:03,21.267,21267 +850,10,2,48,15:25:25,21.252,21252 +850,1,3,51,15:26:17,20.403,20403 +850,816,2,49,15:27:24,23.588,23588 +850,817,2,49,15:27:43,24.053,24053 +850,5,2,50,15:27:48,21.175,21175 +850,814,2,51,15:28:11,22.535,22535 +850,4,3,53,15:29:30,19.975,19975 +850,3,3,53,15:30:50,20.047,20047 +850,812,3,51,15:32:52,22.458,22458 +850,17,3,56,15:34:20,20.324,20324 +850,30,3,56,15:35:53,19.930,19930 +850,13,3,59,15:39:43,21.903,21903 +850,20,3,59,15:39:44,20.110,20110 +851,17,1,10,14:20:59,20.854,20854 +851,13,1,10,14:21:09,22.293,22293 +851,808,1,10,14:21:18,25.532,25532 +851,22,1,10,14:21:19,22.640,22640 +851,18,1,11,14:22:29,21.786,21786 +851,814,1,11,14:22:46,22.262,22262 +851,813,1,11,14:23:04,23.397,23397 +851,2,1,11,14:23:12,21.371,21371 +851,10,1,11,14:23:27,22.222,22222 +851,816,1,11,14:23:32,25.337,25337 +851,1,1,12,14:23:59,21.880,21880 +851,20,1,12,14:24:05,20.690,20690 +851,4,1,12,14:24:10,22.886,22886 +851,3,1,12,14:24:17,20.767,20767 +851,155,1,12,14:24:35,23.725,23725 +851,67,1,12,14:24:42,22.349,22349 +851,5,1,12,14:24:53,22.772,22772 +851,16,1,12,14:24:55,21.902,21902 +851,815,1,12,14:24:56,22.215,22215 +851,24,1,12,14:25:35,23.633,23633 +851,30,1,13,14:26:02,21.948,21948 +851,153,1,13,14:26:24,23.734,23734 +851,15,1,13,14:26:49,23.118,23118 +851,817,1,13,14:27:04,22.844,22844 +851,813,2,16,14:31:22,13.186,13186 +851,2,2,23,14:42:16,25.434,25434 +851,22,2,24,14:43:19,22.217,22217 +851,153,2,24,14:43:20,22.552,22552 +851,5,2,24,14:43:45,22.147,22147 +851,815,2,24,14:43:49,20.570,20570 +851,17,2,25,14:44:03,20.000,20000 +851,4,2,25,14:44:04,23.208,23208 +851,13,2,25,14:44:34,21.138,21138 +851,808,2,25,14:44:47,24.194,24194 +851,67,2,25,14:44:55,21.460,21460 +851,1,2,26,14:45:16,20.803,20803 +851,30,2,26,14:46:04,20.071,20071 +851,24,2,25,14:46:40,22.501,22501 +851,16,2,26,14:46:48,20.589,20589 +851,18,2,27,14:46:49,21.065,21065 +851,3,2,27,14:47:28,19.939,19939 +851,814,2,27,14:47:32,20.801,20801 +851,20,2,28,14:48:22,20.611,20611 +851,813,3,28,14:49:55,21.426,21426 +851,10,2,28,14:50:32,20.613,20613 +851,817,2,28,14:51:12,23.563,23563 +851,816,2,29,14:52:27,20.916,20916 +851,815,3,32,14:56:05,13.201,13201 +851,155,2,34,14:58:08,22.852,22852 +851,4,3,36,15:00:23,19.936,19936 +851,22,3,37,15:02:51,20.580,20580 +851,17,3,39,15:04:48,20.673,20673 +851,24,3,37,15:05:37,27.839,27839 +851,1,3,40,15:05:54,20.861,20861 +851,13,3,40,15:06:53,22.453,22453 +851,20,3,41,15:07:32,19.664,19664 +851,18,3,42,15:08:53,20.046,20046 +851,814,3,42,15:10:06,20.935,20935 +851,67,3,43,15:11:41,20.360,20360 +851,5,3,43,15:12:56,20.990,20990 +851,815,4,44,15:14:07,20.917,20917 +851,817,3,43,15:14:54,21.651,21651 +851,4,4,47,15:16:33,20.126,20126 +851,153,3,47,15:17:40,21.345,21345 +851,816,3,47,15:20:46,49.849,49849 +851,3,3,50,15:22:04,20.563,20563 +851,17,4,51,15:22:51,21.122,21122 +851,808,3,50,15:22:54,21.353,21353 +851,22,4,50,15:22:55,31.539,31539 +851,5,4,49,15:22:56,22.364,22364 +851,16,3,50,15:23:22,21.796,21796 +851,24,4,48,15:23:32,23.010,23010 +851,813,4,50,15:23:34,23.016,23016 +851,1,4,52,15:24:11,20.855,20855 +851,17,5,53,15:26:20,20.715,20715 +851,22,5,52,15:26:36,25.596,25596 +851,1,5,54,15:27:35,21.628,21628 +851,808,4,53,15:28:00,21.609,21609 +851,5,5,52,15:28:12,21.715,21715 +851,16,4,53,15:28:27,21.503,21503 +851,816,4,51,15:28:37,22.470,22470 +851,3,4,54,15:28:47,23.244,23244 +851,813,5,53,15:28:55,22.825,22825 +851,24,5,51,15:28:58,22.458,22458 +851,10,3,53,15:30:17,20.929,20929 +851,1,6,56,15:30:48,13.173,13173 +851,13,4,58,15:33:53,21.157,21157 +851,155,3,62,15:40:56,21.258,21258 +852,10,1,1,14:05:58,35.092,35092 +852,811,1,1,14:06:10,30.795,30795 +852,5,1,1,14:06:14,28.539,28539 +852,17,1,3,14:09:42,21.015,21015 +852,18,1,3,14:09:46,26.046,26046 +852,30,1,4,14:11:45,20.153,20153 +852,20,1,5,14:13:27,20.898,20898 +852,815,1,5,14:13:49,26.092,26092 +852,10,2,6,14:16:35,13.914,13914 +852,4,1,8,14:19:18,20.994,20994 +852,811,2,8,14:20:14,13.968,13968 +852,13,1,9,14:21:21,22.267,22267 +852,1,1,10,14:23:14,21.895,21895 +852,3,1,11,14:25:16,23.090,23090 +852,24,1,11,14:26:05,21.766,21766 +852,808,1,12,14:27:22,21.395,21395 +852,813,1,12,14:27:31,21.421,21421 +852,20,2,13,14:29:09,21.411,21411 +852,16,1,13,14:29:31,22.773,22773 +852,22,1,13,14:29:38,21.818,21818 +852,30,2,13,14:29:39,20.226,20226 +852,18,2,13,14:29:40,21.756,21756 +852,817,1,13,14:30:19,23.780,23780 +852,15,1,13,14:30:20,22.159,22159 +852,816,1,13,14:30:22,22.939,22939 +852,5,2,13,14:30:46,22.009,22009 +852,155,1,14,14:32:10,24.161,24161 +852,814,1,14,14:32:11,21.334,21334 +852,10,3,14,14:33:40,24.204,24204 +852,811,3,21,14:47:48,20.756,20756 +852,815,2,22,14:49:35,14.089,14089 +852,815,3,23,14:51:40,23.883,23883 +852,24,2,27,14:59:56,30.959,30959 +852,4,2,29,15:02:28,21.243,21243 +852,813,2,29,15:03:01,22.303,22303 +852,155,2,29,15:03:08,21.269,21269 +852,20,3,30,15:04:14,20.786,20786 +852,3,2,30,15:04:42,21.171,21171 +852,13,2,30,15:04:43,21.856,21856 +852,808,2,30,15:04:45,21.979,21979 +852,814,2,30,15:05:01,21.350,21350 +852,17,2,31,15:06:19,20.947,20947 +852,16,2,31,15:06:38,20.983,20983 +852,30,3,31,15:06:39,21.319,21319 +852,22,2,31,15:06:56,21.478,21478 +852,15,2,31,15:07:16,21.484,21484 +852,18,3,32,15:08:15,21.640,21640 +852,13,3,32,15:08:49,21.485,21485 +852,5,3,33,15:11:16,22.306,22306 +852,10,4,35,15:15:37,21.721,21721 +852,816,2,36,15:17:29,22.114,22114 +852,22,3,40,15:24:23,47.753,47753 +853,155,1,1,14:05:42,27.550,27550 +853,22,1,1,14:06:43,29.157,29157 +853,811,1,2,14:08:02,22.534,22534 +853,817,1,1,14:08:50,16:44.718,1004718 +853,15,1,5,14:13:34,30.391,30391 +853,814,1,13,14:25:33,21.870,21870 +853,30,1,16,14:29:42,22.709,22709 +853,67,1,16,14:30:10,24.234,24234 +853,18,1,17,14:31:10,21.660,21660 +853,1,1,18,14:32:41,22.083,22083 +853,155,2,18,14:33:12,22.939,22939 +853,4,1,19,14:34:04,22.539,22539 +853,813,1,19,14:34:39,23.063,23063 +853,811,2,19,14:34:43,23.145,23145 +853,20,1,20,14:35:21,22.124,22124 +853,153,1,20,14:36:08,21.988,21988 +853,10,1,20,14:36:42,25.147,25147 +853,13,1,21,14:37:20,21.821,21821 +853,5,1,21,14:38:01,23.298,23298 +853,15,2,24,14:43:14,23.420,23420 +853,814,2,31,14:52:56,23.069,23069 +853,22,2,32,14:54:59,23.414,23414 +853,18,2,33,14:55:00,22.095,22095 +853,817,2,20,14:55:30,30.777,30777 +853,4,2,34,14:56:26,21.989,21989 +853,1,2,34,14:56:36,21.876,21876 +853,20,2,35,14:57:38,21.378,21378 +853,5,2,35,14:59:46,22.611,22611 +853,30,2,37,15:01:01,22.014,22014 +853,813,2,37,15:02:04,22.614,22614 +853,10,2,38,15:04:43,22.784,22784 +853,67,2,40,15:06:23,24.086,24086 +853,811,3,40,15:06:27,22.273,22273 +853,13,2,41,15:07:06,22.148,22148 +853,153,2,41,15:07:43,22.279,22279 +854,817,1,1,20:06:48,44.170,44170 +854,3,1,9,20:21:25,29.549,29549 +854,4,1,10,20:23:15,30.621,30621 +854,30,1,10,20:23:27,29.610,29610 +854,811,1,10,20:23:47,35.398,35398 +854,13,1,11,20:25:14,30.290,30290 +854,1,1,11,20:25:15,30.142,30142 +854,16,1,11,20:25:25,30.718,30718 +854,813,1,11,20:25:39,30.888,30888 +854,67,1,11,20:25:50,32.827,32827 +854,5,1,11,20:25:56,32.202,32202 +854,811,2,11,20:26:39,36.856,36856 +854,17,1,12,20:27:10,30.462,30462 +854,22,1,12,20:27:40,30.456,30456 +854,13,2,12,20:28:04,32.351,32351 +854,1,2,13,20:29:39,33.456,33456 +854,24,1,13,20:30:31,34.329,34329 +854,20,1,14,20:30:38,30.023,30023 +854,18,1,14,20:30:49,30.169,30169 +854,815,1,15,20:33:28,30.810,30810 +854,1,3,15,20:34:04,24.342,24342 +854,155,1,16,20:35:49,30.464,30464 +854,15,1,16,20:36:05,31.048,31048 +854,808,1,16,20:36:09,30.807,30807 +854,817,2,15,20:36:19,34.782,34782 +854,816,1,16,20:36:22,31.763,31763 +854,153,1,17,20:38:05,30.948,30948 +854,814,1,19,20:41:08,30.704,30704 +854,15,2,19,20:43:14,33.317,33317 +854,3,2,22,20:47:06,29.417,29417 +854,30,2,24,20:51:04,29.473,29473 +854,13,3,24,20:51:44,30.478,30478 +854,153,2,24,20:52:14,24.299,24299 +854,4,2,25,20:52:35,30.387,30387 +854,813,2,25,20:53:37,30.187,30187 +854,5,2,26,20:56:11,31.621,31621 +854,24,2,26,20:57:30,32.122,32122 +854,17,2,29,21:00:16,31.204,31204 +854,816,2,28,21:00:59,31.592,31592 +854,814,2,29,21:01:05,29.764,29764 +854,16,2,29,21:01:11,33.418,33418 +854,3,3,29,21:01:12,30.261,30261 +854,815,2,29,21:01:17,33.344,33344 +854,817,3,27,21:01:25,33.058,33058 +854,811,3,28,21:01:27,30.832,30832 +854,1,4,29,21:01:31,30.706,30706 +854,20,2,30,21:01:48,30.809,30809 +854,155,2,29,21:01:59,31.602,31602 +854,18,2,30,21:02:11,29.921,29921 +854,808,2,29,21:02:43,30.625,30625 +854,22,2,30,21:04:10,30.544,30544 +854,67,2,31,21:06:25,31.394,31394 +854,153,3,35,21:16:28,31.836,31836 +854,155,3,40,21:25:43,24.715,24715 +854,13,4,41,21:26:06,30.983,30983 +854,813,3,45,21:33:51,30.477,30477 +854,15,3,44,21:36:23,31.168,31168 +854,17,3,47,21:36:42,30.413,30413 +854,24,3,45,21:38:30,31.687,31687 +854,18,3,48,21:38:31,30.305,30305 +854,1,5,48,21:39:06,29.876,29876 +854,5,3,47,21:40:09,31.207,31207 +854,20,3,49,21:40:10,30.796,30796 +854,808,3,47,21:40:13,30.485,30485 +854,4,3,49,21:40:46,29.972,29972 +854,67,3,49,21:41:40,32.739,32739 +854,24,4,46,21:41:47,42.920,42920 +854,811,4,48,21:42:01,30.987,30987 +854,155,4,53,21:51:26,30.869,30869 +855,1,1,8,15:17:14,21.091,21091 +855,16,1,8,15:17:26,21.511,21511 +855,24,1,8,15:18:13,28.244,28244 +855,20,1,9,15:18:49,22.374,22374 +855,30,1,9,15:19:04,20.667,20667 +855,18,1,10,15:20:34,21.094,21094 +855,4,1,10,15:20:34,21.147,21147 +855,17,1,10,15:20:39,21.820,21820 +855,814,1,10,15:20:50,21.964,21964 +855,155,1,10,15:20:59,24.263,24263 +855,5,1,10,15:21:10,21.412,21412 +855,13,1,11,15:22:19,21.313,21313 +855,67,1,11,15:22:41,21.849,21849 +855,15,1,11,15:22:59,21.636,21636 +855,817,1,11,15:23:13,23.723,23723 +855,22,1,12,15:24:26,22.130,22130 +855,3,1,12,15:24:36,20.575,20575 +855,10,1,12,15:24:57,25.563,25563 +855,816,1,13,15:26:41,23.013,23013 +855,811,1,15,15:29:45,25.927,25927 +855,813,1,16,15:31:31,21.339,21339 +855,153,1,17,15:33:17,21.792,21792 +855,808,1,18,15:34:39,21.304,21304 +855,20,2,19,15:35:48,21.596,21596 +855,17,2,19,15:35:57,21.369,21369 +855,18,2,20,15:37:28,20.713,20713 +855,10,2,19,15:37:30,21.726,21726 +855,815,1,20,15:38:10,21.655,21655 +855,4,2,21,15:39:11,21.319,21319 +855,1,2,21,15:39:19,22.821,22821 +855,13,2,22,15:41:00,21.214,21214 +855,5,2,22,15:42:00,21.519,21519 +855,817,2,22,15:42:48,23.172,23172 +855,16,2,23,15:43:10,21.337,21337 +855,816,2,23,15:44:26,22.258,22258 +855,30,2,24,15:44:52,22.570,22570 +855,814,2,24,15:45:11,21.964,21964 +855,155,2,24,15:45:21,22.299,22299 +855,22,2,24,15:45:22,22.736,22736 +855,3,2,24,15:45:23,20.665,20665 +855,24,2,23,15:45:48,24.716,24716 +855,15,2,24,15:46:04,22.233,22233 +855,813,2,25,15:47:52,21.075,21075 +855,20,3,33,16:01:45,21.705,21705 +855,17,3,34,16:03:28,21.455,21455 +855,1,3,35,16:05:09,21.292,21292 +855,814,3,35,16:05:21,21.553,21553 +855,811,2,35,16:05:42,22.466,22466 +855,18,3,36,16:06:38,20.998,20998 +855,13,3,36,16:06:46,21.100,21100 +855,153,2,36,16:07:16,22.584,22584 +855,24,3,35,16:07:51,22.631,22631 +855,4,3,37,16:08:19,20.731,20731 +855,815,2,37,16:08:38,24.461,24461 +855,16,3,37,16:08:44,21.839,21839 +855,22,3,37,16:08:54,21.890,21890 +855,5,3,37,16:09:04,22.532,22532 +855,10,3,36,16:09:24,22.877,22877 +855,15,3,38,16:10:48,22.156,22156 +855,816,3,37,16:11:06,24.269,24269 +855,808,2,39,16:12:09,20.832,20832 +855,817,3,38,16:12:53,22.910,22910 +855,30,3,41,16:15:04,20.879,20879 +855,3,3,41,16:15:25,20.809,20809 +855,813,3,41,16:15:38,21.012,21012 +856,24,1,1,15:05:51,26.379,26379 +856,155,1,10,15:21:45,21.623,21623 +856,22,1,10,15:21:47,21.722,21722 +856,814,1,11,15:23:25,22.075,22075 +856,15,1,12,15:25:30,22.441,22441 +856,18,1,13,15:26:42,20.766,20766 +856,3,1,13,15:26:43,20.091,20091 +856,811,1,13,15:27:10,21.163,21163 +856,5,1,13,15:27:13,21.951,21951 +856,17,1,14,15:28:23,20.828,20828 +856,13,1,14,15:28:28,23.642,23642 +856,808,1,14,15:28:33,21.478,21478 +856,30,1,14,15:28:35,20.238,20238 +856,67,1,14,15:28:48,22.098,22098 +856,1,1,15,15:30:01,20.846,20846 +856,4,1,15,15:30:19,20.978,20978 +856,20,1,16,15:31:42,19.985,19985 +856,16,1,16,15:32:24,24.820,24820 +856,813,1,16,15:32:31,21.569,21569 +856,815,1,16,15:32:32,21.225,21225 +856,10,1,16,15:33:19,22.533,22533 +856,817,1,16,15:33:22,23.196,23196 +856,816,1,16,15:33:28,26.905,26905 +856,153,1,17,15:34:24,22.301,22301 +856,24,2,16,15:34:32,23.544,23544 +856,813,2,22,15:45:44,13.984,13984 +856,155,2,24,15:49:22,25.578,25578 +856,3,2,27,15:54:18,20.772,20772 +856,813,3,28,15:56:30,22.035,22035 +856,811,2,30,15:59:48,21.893,21893 +856,814,2,31,16:01:23,21.060,21060 +856,22,2,31,16:01:32,22.347,22347 +856,1,2,33,16:04:21,20.584,20584 +856,17,2,33,16:04:22,20.800,20800 +856,20,2,34,16:05:58,20.170,20170 +856,18,2,34,16:06:08,20.758,20758 +856,13,2,34,16:06:13,21.080,21080 +856,16,2,35,16:08:18,21.916,21916 +856,67,2,36,16:10:01,21.992,21992 +856,815,2,36,16:10:09,21.385,21385 +856,15,2,36,16:10:35,22.851,22851 +856,4,2,37,16:11:21,20.639,20639 +856,153,2,37,16:11:31,22.325,22325 +856,5,2,38,16:13:56,22.669,22669 +856,816,2,38,16:14:40,22.412,22412 +856,24,3,38,16:16:35,22.092,22092 +856,10,2,41,16:19:51,22.481,22481 +856,817,2,41,16:19:54,22.115,22115 +856,155,3,42,16:21:02,21.472,21472 +856,815,3,53,16:39:58,21.971,21971 +857,815,1,1,15:05:16,22.676,22676 +857,10,1,1,15:05:23,27.378,27378 +857,22,1,1,15:05:36,33.650,33650 +857,15,1,1,15:06:37,40.734,40734 +857,814,1,2,15:06:50,21.525,21525 +857,808,1,3,15:08:27,27.137,27137 +857,16,1,15,15:27:09,21.424,21424 +857,17,1,16,15:28:08,21.392,21392 +857,4,1,16,15:28:09,21.873,21873 +857,1,1,16,15:28:14,22.530,22530 +857,153,1,16,15:28:37,22.856,22856 +857,13,1,17,15:29:43,21.848,21848 +857,3,1,17,15:29:56,21.149,21149 +857,18,1,18,15:31:05,21.092,21092 +857,30,1,18,15:31:35,20.893,20893 +857,67,1,18,15:31:43,22.579,22579 +857,20,1,19,15:32:31,21.415,21415 +857,814,2,19,15:33:45,24.150,24150 +857,5,1,21,15:36:36,22.226,22226 +857,811,1,22,15:38:07,22.144,22144 +857,39,1,22,15:38:47,24.046,24046 +857,816,1,22,15:38:52,22.687,22687 +857,1,2,24,15:40:48,27.193,27193 +857,817,1,25,15:43:17,25.074,25074 +857,15,2,27,15:49:31,22.894,22894 +857,13,2,30,15:49:55,14.919,14919 +857,13,3,31,15:51:40,27.619,27619 +857,817,2,32,15:54:51,42.529,42529 +857,808,2,33,15:55:13,22.519,22519 +857,815,2,34,15:56:37,24.789,24789 +857,16,2,35,15:58:06,21.977,21977 +857,22,2,35,15:59:21,22.339,22339 +857,17,2,37,16:00:03,21.240,21240 +857,4,2,39,16:03:03,21.755,21755 +857,814,3,39,16:04:47,20.984,20984 +857,5,2,41,16:07:49,22.001,22001 +857,3,2,45,16:12:29,22.978,22978 +857,1,3,45,16:12:44,22.172,22172 +857,18,2,46,16:13:11,21.838,21838 +857,153,2,46,16:14:27,23.084,23084 +857,20,2,47,16:14:36,21.449,21449 +857,30,2,50,16:19:55,21.482,21482 +857,39,2,50,16:23:00,23.605,23605 +857,811,2,56,16:30:01,21.723,21723 +857,816,2,55,16:30:49,22.472,22472 +857,15,3,54,16:32:20,24.150,24150 +857,817,3,56,16:32:48,28.474,28474 +858,811,1,1,17:05:36,20.882,20882 +858,815,1,2,17:07:22,24.654,24654 +858,155,1,5,17:13:02,19.833,19833 +858,13,1,15,17:30:30,20.471,20471 +858,153,1,15,17:31:05,43.574,43574 +858,1,1,16,17:32:01,19.439,19439 +858,4,1,16,17:32:03,20.211,20211 +858,18,1,16,17:32:14,20.908,20908 +858,16,1,16,17:32:35,20.356,20356 +858,30,1,16,17:32:36,19.660,19660 +858,5,1,16,17:33:01,21.146,21146 +858,17,1,17,17:34:01,25.182,25182 +858,3,1,17,17:34:12,19.785,19785 +858,15,1,17,17:35:11,20.824,20824 +858,808,1,18,17:36:34,20.738,20738 +858,22,1,18,17:36:43,24.219,24219 +858,817,1,18,17:37:20,21.693,21693 +858,811,2,20,17:40:33,20.330,20330 +858,24,1,24,17:48:28,21.247,21247 +858,813,1,25,17:49:31,20.201,20201 +858,10,1,25,17:50:06,21.792,21792 +858,814,1,27,17:52:50,20.216,20216 +858,815,2,27,17:53:09,19.979,19979 +858,813,2,30,17:58:49,12.897,12897 +858,155,2,33,18:03:42,23.108,23108 +858,22,2,34,18:05:35,20.534,20534 +858,17,2,35,18:06:07,20.000,20000 +858,153,2,34,18:06:16,21.363,21363 +858,18,2,36,18:07:45,20.301,20301 +858,16,2,36,18:08:17,20.614,20614 +858,811,3,36,18:09:34,12.959,12959 +858,808,2,38,18:12:53,19.968,19968 +858,1,2,40,18:14:22,19.350,19350 +858,5,2,39,18:14:52,20.652,20652 +858,13,2,40,18:14:54,20.035,20035 +858,30,2,42,18:18:51,20.638,20638 +858,817,2,41,18:19:37,23.192,23192 +858,4,2,43,18:19:38,21.314,21314 +858,15,2,42,18:20:55,20.791,20791 +858,10,2,44,18:24:59,20.561,20561 +858,3,2,48,18:29:04,19.907,19907 +858,17,3,54,18:39:14,19.525,19525 +859,30,1,10,14:17:19,25.481,25481 +859,811,1,12,14:19:18,21.900,21900 +859,808,1,13,14:20:39,21.169,21169 +859,16,1,14,14:21:51,21.097,21097 +859,18,1,15,14:22:58,22.005,22005 +859,4,1,16,14:24:15,20.773,20773 +859,1,1,16,14:24:18,21.099,21099 +859,3,1,16,14:24:30,20.773,20773 +859,22,1,16,14:24:50,21.537,21537 +859,20,1,17,14:25:24,20.927,20927 +859,814,1,17,14:25:58,20.745,20745 +859,813,1,17,14:26:13,21.561,21561 +859,5,1,17,14:26:16,22.854,22854 +859,17,1,18,14:26:46,20.755,20755 +859,811,2,18,14:27:37,14.029,14029 +859,67,1,19,14:28:43,22.417,22417 +859,815,1,20,14:30:05,22.221,22221 +859,816,1,20,14:30:42,21.859,21859 +859,817,1,20,14:30:47,23.473,23473 +859,13,1,21,14:30:57,21.696,21696 +859,155,1,21,14:31:18,25.117,25117 +859,153,1,21,14:31:26,22.773,22773 +859,24,1,21,14:32:06,22.666,22666 +859,10,1,21,14:32:08,22.452,22452 +859,15,1,22,14:33:08,22.616,22616 +859,811,3,28,14:41:14,23.289,23289 +859,808,2,30,14:43:17,23.102,23102 +859,18,2,31,14:44:05,21.038,21038 +859,16,2,31,14:44:24,20.900,20900 +859,5,2,31,14:45:14,22.013,22013 +859,1,2,33,14:46:43,20.396,20396 +859,30,2,32,14:46:47,20.782,20782 +859,22,2,34,14:48:56,22.590,22590 +859,4,2,35,14:49:11,20.664,20664 +859,17,2,38,14:52:52,20.990,20990 +859,20,2,39,14:54:13,20.652,20652 +859,814,2,40,14:56:27,21.767,21767 +859,3,2,42,14:58:56,20.658,20658 +859,67,2,42,14:59:19,22.461,22461 +859,816,2,41,14:59:31,23.542,23542 +859,817,2,41,14:59:46,22.904,22904 +859,15,2,42,15:00:23,21.555,21555 +859,155,2,43,15:00:26,21.231,21231 +859,1,3,44,15:01:16,20.681,20681 +859,815,2,44,15:02:10,21.337,21337 +859,13,2,45,15:02:33,21.053,21053 +859,16,3,45,15:02:49,21.138,21138 +859,808,3,45,15:03:14,21.781,21781 +859,24,2,45,15:05:02,22.996,22996 +859,153,2,48,15:07:11,21.855,21855 +859,811,4,48,15:08:23,22.128,22128 +859,5,3,49,15:09:19,21.478,21478 +859,18,3,52,15:11:27,21.583,21583 +859,30,3,51,15:11:49,21.373,21373 +859,4,3,54,15:13:55,20.752,20752 +859,22,3,53,15:14:17,21.638,21638 +859,17,3,58,15:18:40,20.781,20781 +859,20,3,59,15:20:05,22.094,22094 +860,811,1,1,17:05:23,24.599,24599 +860,817,1,1,17:05:35,32.319,32319 +860,13,1,11,17:21:08,22.313,22313 +860,3,1,12,17:22:31,23.203,23203 +860,4,1,13,17:24:04,22.035,22035 +860,155,1,13,17:24:20,25.346,25346 +860,814,1,13,17:24:21,24.933,24933 +860,17,1,14,17:25:41,23.302,23302 +860,5,1,14,17:26:12,24.397,24397 +860,18,1,16,17:28:30,23.275,23275 +860,20,1,16,17:28:41,24.256,24256 +860,813,1,16,17:28:53,23.427,23427 +860,1,1,17,17:30:12,22.862,22862 +860,808,1,18,17:32:32,24.579,24579 +860,8,1,19,17:33:43,24.881,24881 +860,818,1,19,17:33:54,23.203,23203 +860,10,1,20,17:36:09,26.322,26322 +860,819,1,21,17:37:59,25.303,25303 +860,817,2,22,17:39:23,23.257,23257 +860,815,1,24,17:41:45,23.882,23882 +860,13,2,28,17:48:15,22.528,22528 +860,811,2,30,17:51:46,23.777,23777 +860,3,2,31,17:52:34,23.017,23017 +860,814,2,33,17:55:58,24.579,24579 +860,4,2,34,17:57:06,21.910,21910 +860,5,2,34,17:58:11,24.580,24580 +860,18,2,36,17:59:44,22.837,22837 +860,1,2,36,17:59:54,23.464,23464 +860,155,2,36,18:00:33,24.162,24162 +860,819,2,35,18:01:35,48.984,48984 +860,20,2,37,18:01:36,24.131,24131 +860,17,2,37,18:01:58,22.915,22915 +860,813,2,37,18:02:03,23.166,23166 +860,8,2,37,18:02:13,23.310,23310 +860,818,2,37,18:02:41,23.569,23569 +860,10,2,36,18:02:46,25.046,25046 +860,13,3,37,18:03:05,22.103,22103 +860,5,3,37,18:04:32,28.888,28888 +860,817,3,38,18:05:15,24.348,24348 +860,811,3,47,18:22:20,30.888,30888 +860,819,3,51,18:30:07,17.088,17088 +861,815,1,1,16:05:39,25.671,25671 +861,811,1,1,16:06:01,31.006,31006 +861,814,1,2,16:07:52,23.988,23988 +861,13,1,3,16:10:03,24.034,24034 +861,10,1,3,16:10:14,25.096,25096 +861,819,1,3,16:10:20,29.317,29317 +861,18,1,4,16:12:01,24.305,24305 +861,4,1,4,16:12:09,24.653,24653 +861,807,1,4,16:12:17,23.856,23856 +861,817,1,4,16:12:26,25.470,25470 +861,808,1,4,16:12:28,24.718,24718 +861,5,1,4,16:12:30,32.670,32670 +861,1,1,5,16:14:12,24.271,24271 +861,17,1,5,16:14:20,24.569,24569 +861,20,1,5,16:14:27,25.658,25658 +861,3,1,5,16:14:31,25.600,25600 +861,813,1,5,16:14:32,25.535,25535 +861,8,1,5,16:14:36,27.602,27602 +861,155,1,5,16:14:39,28.122,28122 +861,30,1,5,16:14:40,24.831,24831 +861,811,2,7,16:20:17,26.269,26269 +861,18,2,13,17:26:27,25.922,25922 +861,3,2,13,17:26:30,25.199,25199 +861,8,2,13,17:26:32,24.927,24927 +861,155,2,13,17:26:34,26.255,26255 +861,37,1,13,17:26:36,15.684,15684 +861,808,2,13,17:26:37,29.359,29359 +861,10,2,13,17:26:37,25.660,25660 +861,811,3,13,17:26:38,24.980,24980 +861,1,2,14,17:28:30,27.961,27961 +861,4,2,14,17:28:34,22.864,22864 +861,17,2,14,17:28:36,26.337,26337 +861,13,2,14,17:28:39,24.420,24420 +861,814,2,14,17:28:42,22.856,22856 +861,813,2,14,17:28:42,21.621,21621 +861,30,2,14,17:28:43,24.094,24094 +861,817,2,14,17:28:45,24.539,24539 +861,5,2,14,17:28:46,25.130,25130 +861,815,2,15,17:30:37,24.520,24520 +861,20,2,15,17:30:43,24.057,24057 +861,818,1,15,17:30:48,24.216,24216 +861,807,2,15,17:30:50,23.549,23549 +861,819,2,15,17:31:03,36.542,36542 +861,39,1,15,17:31:07,36.876,36876 +861,18,3,15,17:31:07,36.517,36517 +861,813,3,15,17:31:11,23.974,23974 +861,37,2,16,17:33:35,38.887,38887 +861,5,3,23,17:48:07,34.109,34109 +861,18,4,24,17:50:04,23.509,23509 +861,817,3,25,17:51:55,22.610,22610 +861,3,3,26,17:53:46,23.050,23050 +861,13,3,27,17:55:53,23.130,23130 +861,817,4,37,18:16:06,23.648,23648 +861,39,2,37,18:18:02,27.700,27700 +861,13,4,38,18:18:08,26.934,26934 +861,5,4,38,18:18:52,23.782,23782 +861,17,3,39,18:19:05,23.195,23195 +861,814,3,39,18:19:15,22.175,22175 +861,811,4,39,18:19:18,23.824,23824 +861,30,3,39,18:19:33,22.163,22163 +861,813,4,39,18:19:34,23.409,23409 +861,3,4,39,18:19:47,23.231,23231 +861,18,5,39,18:19:49,23.477,23477 +861,808,3,39,18:20:00,30.335,30335 +861,10,3,39,18:20:20,25.390,25390 +861,4,3,40,18:20:25,22.534,22534 +861,819,3,39,18:20:48,32.224,32224 +861,20,3,40,18:20:50,22.998,22998 +861,8,3,40,18:20:58,25.041,25041 +861,818,2,40,18:21:12,23.343,23343 +861,807,3,40,18:21:13,23.358,23358 +861,155,3,40,18:21:24,23.662,23662 +861,37,3,39,18:22:06,28.483,28483 +861,815,3,41,18:22:19,24.543,24543 +861,1,3,41,18:22:31,26.338,26338 +861,20,4,47,18:33:40,25.884,25884 +862,4,2,27,15:50:50,20.136,20136 +862,8,2,28,15:52:32,21.494,21494 +862,818,2,28,15:53:07,23.623,23623 +862,5,2,28,15:53:24,22.606,22606 +862,811,2,29,15:54:32,21.323,21323 +862,808,2,29,15:55:09,22.007,22007 +862,807,2,30,15:56:37,21.027,21027 +862,5,3,29,15:57:39,37.748,37748 +862,20,2,31,15:57:50,21.146,21146 +862,154,2,32,15:59:28,25.835,25835 +862,37,2,31,15:59:35,23.488,23488 +862,814,2,32,15:59:44,21.006,21006 +862,813,2,33,16:01:26,21.229,21229 +862,817,2,33,16:01:52,22.318,22318 +862,39,2,32,16:01:55,23.151,23151 +862,3,2,34,16:02:40,20.645,20645 +862,17,3,34,16:03:03,20.471,20471 +862,815,2,35,16:04:47,22.565,22565 +862,10,2,36,16:07:41,21.515,21515 +862,819,2,37,16:09:27,23.579,23579 +862,1,3,38,16:09:51,20.177,20177 +862,4,3,38,16:09:52,20.024,20024 +862,155,3,38,16:10:03,21.795,21795 +862,18,3,39,16:11:21,26.618,26618 +862,13,2,41,16:15:10,20.051,20051 +862,818,3,41,16:15:32,22.531,22531 +862,819,3,48,16:28:45,13.981,13981 +862,17,1,6,15:14:20,20.474,20474 +862,155,1,9,15:19:30,21.551,21551 +862,20,1,9,15:19:39,21.449,21449 +862,807,1,9,15:19:47,32.407,32407 +862,8,1,10,15:21:12,21.433,21433 +862,1,1,10,15:21:13,20.903,20903 +862,808,1,10,15:21:40,21.851,21851 +862,18,1,11,15:22:56,20.563,20563 +862,154,1,11,15:23:04,21.184,21184 +862,814,1,11,15:23:08,20.387,20387 +862,813,1,11,15:23:09,21.569,21569 +862,818,1,11,15:23:22,22.835,22835 +862,30,1,12,15:24:39,21.746,21746 +862,4,1,12,15:24:44,20.296,20296 +862,811,1,12,15:24:49,21.184,21184 +862,5,1,12,15:25:06,22.713,22713 +862,3,1,13,15:26:17,21.113,21113 +862,815,1,16,15:31:38,23.009,23009 +862,39,1,16,15:32:47,24.937,24937 +862,817,1,17,15:33:56,21.884,21884 +862,37,1,17,15:34:24,23.634,23634 +862,13,1,18,15:35:14,20.250,20250 +862,10,1,18,15:35:58,21.327,21327 +862,819,1,19,15:37:45,22.306,22306 +862,17,2,21,15:40:30,20.377,20377 +862,1,2,22,15:42:10,20.691,20691 +862,18,2,24,15:45:32,20.474,20474 +862,155,2,25,15:47:30,21.012,21012 +863,5,1,1,15:05:40,25.047,25047 +863,817,1,7,15:15:42,25.829,25829 +863,18,1,8,15:17:12,23.016,23016 +863,13,1,8,15:17:14,23.557,23557 +863,3,1,8,15:17:15,22.228,22228 +863,1,1,9,15:18:49,28.341,28341 +863,17,1,9,15:18:50,22.236,22236 +863,4,1,9,15:18:53,22.094,22094 +863,815,1,9,15:19:00,23.408,23408 +863,811,1,9,15:19:03,23.405,23405 +863,30,1,9,15:19:05,21.979,21979 +863,807,1,9,15:19:08,22.413,22413 +863,37,1,9,15:19:27,24.241,24241 +863,154,1,10,15:20:26,23.246,23246 +863,818,1,10,15:20:50,22.763,22763 +863,808,1,10,15:20:55,23.411,23411 +863,10,1,10,15:21:10,23.423,23423 +863,39,1,10,15:21:21,25.896,25896 +863,20,1,11,15:22:02,22.017,22017 +863,8,1,11,15:22:13,22.412,22412 +863,813,1,11,15:22:27,22.868,22868 +863,819,1,12,15:24:32,24.020,24020 +863,5,2,13,15:26:27,23.323,23323 +863,814,1,14,15:27:28,22.069,22069 +863,155,1,14,15:27:35,22.758,22758 +863,807,2,19,15:36:18,22.446,22446 +863,815,2,21,15:39:34,23.428,23428 +863,39,2,21,15:40:50,25.204,25204 +863,18,2,22,15:41:03,22.270,22270 +863,3,2,22,15:41:09,22.903,22903 +863,13,2,22,15:41:13,21.963,21963 +863,37,2,22,15:42:24,23.420,23420 +863,17,2,23,15:42:40,22.649,22649 +863,1,2,23,15:42:46,30.622,30622 +863,4,2,23,15:42:48,23.449,23449 +863,813,2,23,15:42:55,22.330,22330 +863,30,2,23,15:43:00,22.105,22105 +863,808,2,23,15:43:18,23.421,23421 +863,817,2,23,15:43:21,22.295,22295 +863,10,2,23,15:43:55,29.648,29648 +863,8,2,24,15:44:08,22.362,22362 +863,811,2,24,15:44:50,22.310,22310 +863,20,2,25,15:45:43,22.717,22717 +863,154,2,25,15:45:51,22.896,22896 +863,818,2,25,15:46:40,23.353,23353 +863,5,3,25,15:47:05,23.639,23639 +863,155,2,31,15:56:31,25.590,25590 +863,814,2,33,15:59:46,22.483,22483 +863,39,3,32,16:00:15,26.417,26417 +863,3,3,36,16:04:47,21.888,21888 +863,1,3,36,16:04:54,23.696,23696 +863,807,3,36,16:05:05,22.560,22560 +863,18,3,37,16:06:26,22.616,22616 +863,4,3,37,16:06:29,23.207,23207 +863,815,3,37,16:06:37,22.924,22924 +863,30,3,37,16:06:38,22.192,22192 +863,13,3,38,16:08:13,21.938,21938 +863,811,3,38,16:08:29,22.796,22796 +863,817,3,38,16:08:50,22.495,22495 +863,5,4,38,16:09:08,23.173,23173 +863,20,3,39,16:09:10,21.800,21800 +863,8,3,39,16:09:12,22.597,22597 +863,17,3,39,16:09:31,21.705,21705 +863,10,3,38,16:10:20,22.933,22933 +863,808,3,39,16:10:35,23.167,23167 +863,37,3,38,16:10:38,24.520,24520 +863,154,3,40,16:10:56,22.763,22763 +863,818,3,40,16:12:03,22.241,22241 +863,39,4,45,16:22:48,24.317,24317 +863,155,3,50,16:28:31,24.674,24674 +863,18,4,53,16:33:05,23.943,23943 +864,815,1,1,14:05:24,21.864,21864 +864,17,1,6,14:12:45,20.119,20119 +864,20,1,7,14:14:11,19.745,19745 +864,155,1,8,14:15:44,22.260,22260 +864,3,1,9,14:17:10,20.502,20502 +864,18,1,9,14:17:14,20.333,20333 +864,814,1,9,14:17:22,19.987,19987 +864,4,1,10,14:18:30,19.456,19456 +864,154,1,10,14:18:42,20.223,20223 +864,30,1,10,14:18:44,20.113,20113 +864,818,1,10,14:18:52,20.388,20388 +864,13,1,10,14:18:53,20.130,20130 +864,807,1,10,14:18:56,20.521,20521 +864,808,1,10,14:19:03,24.856,24856 +864,37,1,10,14:19:19,22.275,22275 +864,813,1,11,14:20:01,20.620,20620 +864,8,1,11,14:20:05,19.777,19777 +864,817,1,11,14:20:29,21.101,21101 +864,39,1,11,14:20:59,21.518,21518 +864,5,1,13,14:23:37,21.290,21290 +864,1,1,14,14:24:59,21.963,21963 +864,10,1,14,14:25:27,21.082,21082 +864,819,1,15,14:27:06,20.936,20936 +864,17,2,17,14:29:54,24.864,24864 +864,815,2,17,14:30:09,21.055,21055 +864,807,2,19,14:32:55,20.558,20558 +864,37,2,19,14:33:43,22.135,22135 +864,3,2,22,14:37:13,20.059,20059 +864,39,2,22,14:38:37,22.515,22515 +864,814,2,23,14:38:57,21.680,21680 +864,818,2,23,14:38:58,22.645,22645 +864,813,2,24,14:39:46,20.218,20218 +864,18,2,25,14:41:49,21.061,21061 +864,817,2,25,14:42:02,20.114,20114 +864,4,2,26,14:42:46,20.028,20028 +864,154,2,26,14:43:10,21.215,21215 +864,155,2,26,14:43:23,20.381,20381 +864,10,2,26,14:44:13,20.902,20902 +864,8,2,27,14:44:27,21.301,21301 +864,20,2,27,14:44:46,19.624,19624 +864,5,2,27,14:45:19,22.566,22566 +864,819,2,27,14:45:53,21.338,21338 +864,13,2,28,14:46:33,13.259,13259 +864,808,2,28,14:47:06,23.072,23072 +864,13,3,29,14:48:17,19.699,19699 +864,20,3,30,14:49:35,13.335,13335 +864,1,2,35,14:57:08,19.980,19980 +864,37,3,35,14:59:17,21.543,21543 +864,815,3,37,15:00:35,28.531,28531 +864,18,3,38,15:01:44,19.888,19888 +864,807,3,39,15:03:27,20.515,20515 +864,817,3,39,15:03:31,20.059,20059 +864,3,3,40,15:04:39,20.197,20197 +864,17,3,40,15:05:00,20.129,20129 +864,818,3,40,15:05:04,20.460,20460 +864,813,3,41,15:05:16,22.829,22829 +864,155,3,41,15:06:09,21.311,21311 +864,20,4,42,15:07:43,26.143,26143 +864,814,3,42,15:08:07,19.867,19867 +864,4,3,44,15:09:47,20.105,20105 +864,5,3,43,15:10:04,21.275,21275 +864,808,3,44,15:11:45,21.817,21817 +864,13,4,45,15:12:32,22.645,22645 +864,8,3,48,15:16:02,20.073,20073 +864,10,3,47,15:16:42,20.669,20669 +864,154,3,51,15:20:41,21.035,21035 +864,37,4,51,15:24:24,21.471,21471 +865,155,1,1,14:04:47,28.390,28390 +865,808,1,3,14:08:18,39.391,39391 +865,818,1,17,14:27:24,26.063,26063 +865,3,1,27,14:40:15,24.874,24874 +865,17,1,29,14:42:54,25.566,25566 +865,1,1,29,14:43:03,25.748,25748 +865,8,1,29,14:43:28,26.380,26380 +865,807,1,29,14:43:29,26.447,26447 +865,811,1,29,14:43:29,26.410,26410 +865,39,1,29,14:44:09,27.306,27306 +865,4,1,30,14:44:22,25.220,25220 +865,5,1,30,14:44:53,26.066,26066 +865,10,1,30,14:45:01,25.567,25567 +865,13,1,31,14:45:47,24.993,24993 +865,819,1,33,14:49:17,27.186,27186 +865,30,1,34,14:50:07,25.117,25117 +865,815,1,34,14:50:36,25.666,25666 +865,814,1,35,14:51:32,25.642,25642 +865,18,1,38,14:55:43,25.219,25219 +865,815,2,39,14:57:38,19.677,19677 +865,817,1,40,14:58:28,25.335,25335 +865,20,1,46,15:05:40,25.079,25079 +865,10,2,54,15:17:48,36.503,36503 +865,818,2,70,15:38:55,26.157,26157 +865,5,2,73,15:43:52,31.293,31293 +865,39,2,74,15:46:48,26.973,26973 +866,13,1,12,14:19:28,21.128,21128 +866,814,1,13,14:20:45,21.489,21489 +866,30,1,13,14:20:47,21.807,21807 +866,18,1,15,14:23:32,21.748,21748 +866,20,1,16,14:24:31,21.639,21639 +866,818,1,16,14:24:55,22.278,22278 +866,1,1,17,14:25:51,21.375,21375 +866,17,1,17,14:25:59,21.199,21199 +866,817,1,17,14:26:17,21.689,21689 +866,5,1,17,14:26:32,21.733,21733 +866,808,1,18,14:27:54,21.888,21888 +866,4,1,19,14:28:31,21.133,21133 +866,3,1,19,14:28:43,21.222,21222 +866,154,1,21,14:31:23,21.830,21830 +866,807,1,21,14:31:32,24.583,24583 +866,811,1,23,14:34:41,22.781,22781 +866,155,1,24,14:35:30,21.453,21453 +866,10,1,24,14:36:31,25.520,25520 +866,819,1,28,14:41:55,23.291,23291 +866,813,1,29,14:42:22,22.704,22704 +866,18,2,33,14:47:50,21.845,21845 +866,3,2,38,14:53:57,21.179,21179 +866,8,1,40,14:56:32,21.534,21534 +866,815,1,41,14:57:52,21.407,21407 +866,807,2,42,14:59:35,23.660,23660 +866,5,2,42,15:00:15,21.704,21704 +866,30,2,43,15:00:53,22.524,22524 +866,818,2,43,15:01:05,23.163,23163 +866,808,2,43,15:01:38,21.403,21403 +866,814,2,44,15:02:08,21.734,21734 +866,818,3,47,15:06:41,14.641,14641 +866,1,2,50,15:09:20,22.530,22530 +866,17,2,52,15:12:15,21.254,21254 +866,18,3,52,15:13:15,21.363,21363 +866,13,2,58,15:20:18,21.115,21115 +866,817,2,58,15:20:40,21.558,21558 +866,20,2,63,15:26:26,22.428,22428 +867,18,1,10,14:21:23,20.246,20246 +867,815,1,10,14:21:27,21.032,21032 +867,13,1,11,14:23:08,20.498,20498 +867,819,1,11,14:23:43,31.636,31636 +867,5,1,12,14:25:12,21.040,21040 +867,1,1,13,14:26:30,19.355,19355 +867,808,1,13,14:26:58,20.726,20726 +867,155,1,14,14:28:20,23.071,23071 +867,8,1,14,14:28:21,21.879,21879 +867,813,1,14,14:28:23,21.342,21342 +867,807,1,14,14:28:26,21.198,21198 +867,817,1,14,14:28:38,21.209,21209 +867,37,1,14,14:29:09,23.127,23127 +867,4,1,15,14:30:09,19.789,19789 +867,39,1,15,14:31:07,22.930,22930 +867,20,1,16,14:31:32,20.357,20357 +867,154,1,16,14:31:48,20.479,20479 +867,818,1,17,14:34:17,21.303,21303 +867,30,1,19,14:37:38,20.477,20477 +867,17,1,19,14:37:40,20.246,20246 +867,3,1,20,14:39:17,20.625,20625 +867,155,2,20,14:39:29,25.719,25719 +867,811,1,20,14:40:14,28.440,28440 +867,814,1,23,14:44:48,20.295,20295 +867,811,2,24,14:47:48,14.659,14659 +867,815,2,25,14:48:26,20.904,20904 +867,808,2,25,14:48:42,21.224,21224 +867,18,2,26,14:50:09,19.640,19640 +867,13,2,27,14:51:54,20.126,20126 +867,5,2,27,14:53:03,24.445,24445 +867,154,2,28,14:53:16,23.183,23183 +867,1,2,28,14:53:30,31.081,31081 +867,4,2,28,14:53:33,20.718,20718 +867,8,2,28,14:53:38,21.103,21103 +867,813,2,28,14:53:44,21.525,21525 +867,807,2,28,14:53:50,20.332,20332 +867,808,3,28,14:54:43,21.407,21407 +867,20,2,29,14:55:02,20.023,20023 +867,37,2,28,14:55:13,23.125,23125 +867,819,2,28,14:55:13,22.838,22838 +867,39,2,29,14:57:51,26.370,26370 +867,13,3,34,15:07:46,39.041,39041 +867,817,2,37,15:12:44,22.597,22597 +867,17,2,38,15:14:32,20.222,20222 +867,39,3,39,15:16:58,14.780,14780 +867,30,2,41,15:19:40,20.041,20041 +867,3,2,46,15:28:36,20.115,20115 +867,808,4,47,15:30:40,30.800,30800 +867,13,4,53,15:41:54,20.476,20476 +868,819,2,32,13:58:04,26.164,26164 +868,17,2,33,13:57:42,25.179,25179 +868,813,2,12,13:24:16,33.068,33068 +868,13,1,13,13:24:56,25.325,25325 +868,8,1,13,13:24:58,25.581,25581 +868,819,1,13,13:25:46,26.313,26313 +868,17,1,14,13:26:30,25.854,25854 +868,811,1,14,13:26:49,25.983,25983 +868,818,1,14,13:26:57,26.489,26489 +868,4,1,15,13:28:03,25.372,25372 +868,3,1,15,13:28:30,25.189,25189 +868,155,1,16,13:30:03,26.845,26845 +868,807,1,16,13:30:05,26.060,26060 +868,18,1,16,13:30:09,25.138,25138 +868,817,1,16,13:30:14,25.626,25626 +868,39,1,16,13:30:53,29.908,29908 +868,10,1,18,13:34:02,26.165,26165 +868,1,1,21,13:38:11,24.498,24498 +868,154,2,26,13:46:39,25.388,25388 +868,37,1,27,13:49:37,27.715,27715 +868,1,2,28,13:49:52,25.003,25003 +868,817,2,29,13:51:50,25.613,25613 +868,5,2,29,13:52:21,26.434,26434 +868,811,2,30,13:53:19,26.573,26573 +868,20,2,31,13:54:33,25.319,25319 +868,18,2,31,13:55:02,24.762,24762 +868,818,2,32,13:56:46,26.200,26200 +868,814,1,1,13:05:45,32.790,32790 +868,154,1,2,13:06:42,34.201,34201 +868,20,1,10,13:19:58,25.829,25829 +868,813,1,11,13:21:39,25.630,25630 +868,815,1,11,13:21:41,25.192,25192 +868,30,1,12,13:23:17,25.938,25938 +868,5,1,12,13:23:46,26.196,26196 +868,8,2,34,13:59:31,25.871,25871 +868,30,2,34,13:59:45,25.552,25552 +868,13,2,35,14:01:05,25.110,25110 +868,807,2,35,14:01:25,25.444,25444 +868,39,2,35,14:03:37,27.944,27944 +868,4,2,37,14:04:03,24.998,24998 +868,155,2,37,14:04:36,39.208,39208 +868,3,2,37,14:04:48,33.529,33529 +868,10,2,38,14:07:52,25.241,25241 +869,13,1,1,14:04:39,23.049,23049 +869,811,1,1,14:04:53,47.942,47942 +869,154,1,1,14:04:56,32.766,32766 +869,1,1,3,14:07:52,21.012,21012 +869,818,1,6,14:11:33,18.901,18901 +869,814,1,10,14:17:02,17.899,17899 +869,8,1,11,14:18:20,18.002,18002 +869,807,1,12,14:19:41,18.442,18442 +869,17,1,12,14:19:43,18.253,18253 +869,3,1,12,14:19:51,18.395,18395 +869,813,1,13,14:21:05,19.646,19646 +869,5,1,13,14:21:24,19.385,19385 +869,30,1,14,14:22:25,18.497,18497 +869,808,1,14,14:22:47,19.802,19802 +869,815,1,17,14:26:37,18.143,18143 +869,4,1,18,14:27:43,17.570,17570 +869,18,1,19,14:29:13,17.867,17867 +869,817,1,19,14:29:34,18.374,18374 +869,10,1,19,14:30:15,21.399,21399 +869,20,1,20,14:30:30,17.512,17512 +869,37,1,20,14:31:43,19.850,19850 +869,819,1,21,14:32:56,17.821,17821 +869,155,1,22,14:33:31,18.904,18904 +869,39,1,22,14:34:43,19.535,19535 +869,13,2,24,14:36:49,19.137,19137 +869,154,2,24,14:37:20,20.388,20388 +869,811,2,25,14:38:46,18.822,18822 +869,818,2,27,14:40:49,18.425,18425 +869,807,2,31,14:46:05,18.286,18286 +869,5,2,31,14:46:32,18.801,18801 +869,1,2,31,14:46:44,17.598,17598 +869,3,2,32,14:47:31,17.894,17894 +869,808,2,32,14:47:59,18.323,18323 +869,30,2,36,14:52:44,17.928,17928 +869,8,2,38,14:55:22,17.735,17735 +869,813,2,38,14:55:56,19.210,19210 +869,817,2,38,14:55:57,17.990,17990 +869,814,2,39,14:57:08,17.968,17968 +869,18,2,40,14:57:48,16.831,16831 +869,815,2,40,14:58:14,18.199,18199 +869,17,2,40,14:58:22,17.290,17290 +869,4,2,41,14:59:05,17.942,17942 +869,20,2,41,14:59:07,17.859,17859 +869,10,2,40,15:00:18,18.952,18952 +869,154,3,42,15:02:09,22.743,22743 +869,155,2,43,15:02:13,19.177,19177 +869,819,2,43,15:03:49,19.391,19391 +869,5,3,44,15:04:41,19.233,19233 +869,818,3,45,15:05:35,19.949,19949 +869,807,3,46,15:06:33,18.365,18365 +869,37,2,45,15:07:26,20.664,20664 +869,13,3,47,15:08:15,19.680,19680 +869,1,3,47,15:08:33,18.877,18877 +869,39,2,46,15:08:59,19.382,19382 +869,811,3,47,15:09:01,18.313,18313 +869,3,3,50,15:11:59,18.741,18741 +869,808,3,50,15:12:58,18.354,18354 +869,30,3,52,15:14:25,18.163,18163 +869,5,4,53,15:17:23,28.988,28988 +869,813,3,57,15:22:00,18.085,18085 +870,30,1,1,14:08:08,21.336,21336 +870,30,2,4,14:12:58,13.199,13199 +870,155,1,8,14:18:40,20.234,20234 +870,818,1,12,14:24:37,20.363,20363 +870,817,1,14,14:27:32,20.510,20510 +870,18,1,15,14:28:38,19.408,19408 +870,807,1,15,14:28:52,20.736,20736 +870,813,1,15,14:28:54,20.304,20304 +870,811,1,16,14:30:15,20.213,20213 +870,3,1,16,14:30:21,20.352,20352 +870,814,1,16,14:30:26,20.460,20460 +870,20,1,17,14:31:35,19.380,19380 +870,4,1,17,14:31:38,19.669,19669 +870,5,1,17,14:32:09,20.780,20780 +870,1,1,18,14:32:53,20.436,20436 +870,13,1,18,14:33:17,19.981,19981 +870,808,1,18,14:33:47,21.070,21070 +870,39,1,18,14:34:22,21.259,21259 +870,154,1,19,14:34:22,22.151,22151 +870,10,1,18,14:34:25,21.337,21337 +870,8,1,20,14:36:01,20.087,20087 +870,17,1,20,14:36:05,19.611,19611 +870,819,1,20,14:36:59,20.915,20915 +870,815,1,21,14:37:57,20.320,20320 +870,37,1,22,14:40:27,22.332,22332 +870,818,2,30,14:51:44,19.858,19858 +870,30,3,32,14:54:51,20.503,20503 +870,18,2,34,14:56:39,19.083,19083 +870,817,2,34,14:57:29,19.630,19630 +870,808,2,35,14:59:27,20.592,20592 +870,5,2,36,15:00:48,21.855,21855 +870,20,2,38,15:02:27,19.331,19331 +870,814,2,38,15:03:06,20.352,20352 +870,154,2,39,15:03:52,20.231,20231 +870,17,2,39,15:04:09,19.175,19175 +870,807,2,39,15:04:31,20.607,20607 +870,1,2,40,15:05:18,19.059,19059 +870,819,2,39,15:05:50,21.378,21378 +870,3,2,40,15:05:53,20.632,20632 +870,155,2,40,15:06:36,20.065,20065 +870,39,2,39,15:07:06,22.031,22031 +870,813,2,41,15:07:28,19.755,19755 +870,10,2,40,15:08:28,20.383,20383 +870,811,2,42,15:08:36,20.604,20604 +870,37,2,41,15:10:00,21.877,21877 +870,4,2,43,15:10:01,19.365,19365 +870,13,2,43,15:10:12,19.917,19917 +870,8,2,45,15:12:35,19.772,19772 +870,18,3,45,15:12:56,20.355,20355 +870,818,3,46,15:15:27,19.644,19644 +870,815,2,47,15:16:34,20.216,20216 +870,817,3,47,15:16:46,20.027,20027 +870,808,3,51,15:23:46,20.515,20515 +870,813,3,52,15:23:48,13.206,13206 +870,17,3,55,15:27:30,19.386,19386 +870,5,3,56,15:30:55,20.567,20567 +870,20,3,58,15:31:43,18.964,18964 +870,818,4,64,15:42:01,19.600,19600 +871,37,1,1,14:06:31,29.107,29107 +871,155,1,1,14:06:35,27.248,27248 +871,813,1,1,14:06:36,21.842,21842 +871,155,2,7,14:21:42,21.669,21669 +871,814,1,10,14:27:27,21.402,21402 +871,8,1,11,14:29:22,20.383,20383 +871,17,1,11,14:29:28,20.908,20908 +871,10,1,11,14:29:54,22.463,22463 +871,817,1,12,14:31:21,20.287,20287 +871,13,1,12,14:31:26,20.306,20306 +871,808,1,12,14:31:42,25.972,25972 +871,807,1,13,14:33:14,22.152,22152 +871,5,1,14,14:35:49,52.206,52206 +871,39,1,14,14:35:55,23.953,23953 +871,818,1,15,14:37:19,20.660,20660 +871,37,2,15,14:38:00,25.027,25027 +871,811,1,16,14:39:19,21.690,21690 +871,819,1,18,14:44:03,21.611,21611 +871,30,1,19,14:45:02,21.664,21664 +871,18,1,20,14:46:43,19.668,19668 +871,3,1,20,14:47:24,21.062,21062 +871,20,1,21,14:48:56,20.811,20811 +871,155,3,24,14:55:27,22.106,22106 +871,10,2,25,14:58:05,20.660,20660 +871,814,2,26,14:59:07,21.115,21115 +871,808,2,26,14:59:52,21.180,21180 +871,807,2,27,15:00:38,20.696,20696 +871,17,2,27,15:00:39,20.385,20385 +871,13,2,27,15:00:45,21.049,21049 +871,37,3,27,15:02:18,22.064,22064 +871,5,2,27,15:02:21,21.931,21931 +871,8,2,28,15:02:30,20.289,20289 +871,817,2,28,15:02:51,21.060,21060 +871,39,2,28,15:04:17,22.523,22523 +871,818,2,29,15:04:49,21.077,21077 +871,30,2,35,15:16:18,20.835,20835 +871,3,2,36,15:18:36,20.534,20534 +871,811,2,39,15:24:25,22.030,22030 +872,10,1,7,14:14:33,28.747,28747 +872,813,1,13,14:23:38,22.970,22970 +872,3,1,14,14:25:03,22.346,22346 +872,30,1,15,14:26:24,22.247,22247 +872,8,1,17,14:29:28,21.730,21730 +872,5,1,17,14:29:51,22.737,22737 +872,819,1,18,14:31:32,24.039,24039 +872,13,1,19,14:32:19,22.161,22161 +872,808,1,19,14:32:59,22.182,22182 +872,20,1,20,14:33:51,22.303,22303 +872,4,1,20,14:33:52,21.515,21515 +872,155,1,20,14:34:08,22.874,22874 +872,17,1,21,14:35:36,21.556,21556 +872,814,1,21,14:35:39,22.190,22190 +872,18,1,22,14:36:49,23.375,23375 +872,37,1,22,14:38:04,23.488,23488 +872,1,1,23,14:38:13,20.736,20736 +872,39,1,23,14:39:30,31.745,31745 +872,817,1,24,14:40:19,21.720,21720 +872,811,1,24,14:40:20,22.985,22985 +872,807,1,27,14:44:55,22.746,22746 +872,816,1,27,14:45:12,21.962,21962 +872,815,1,29,14:47:32,22.472,22472 +872,10,2,32,14:53:27,22.581,22581 +872,20,2,34,14:55:13,15.008,15008 +872,813,2,35,14:57:05,21.814,21814 +872,819,2,35,14:57:49,22.046,22046 +872,30,2,37,14:59:46,22.310,22310 +872,3,2,38,15:01:21,21.854,21854 +872,5,2,39,15:03:38,21.910,21910 +872,808,2,40,15:05:10,22.811,22811 +873,10,2,25,20:54:19,32.015,32015 +873,5,2,26,20:55:51,30.099,30099 +873,17,2,28,20:58:56,29.304,29304 +873,813,2,29,21:00:34,30.540,30540 +873,4,2,29,21:00:36,29.190,29190 +873,155,2,30,21:03:49,30.842,30842 +873,808,3,30,21:04:39,30.405,30405 +873,37,2,30,21:05:01,32.625,32625 +873,817,2,31,21:05:16,29.789,29789 +873,8,2,32,21:07:02,29.370,29370 +873,20,2,33,21:08:19,31.137,31137 +873,18,2,33,21:08:25,29.662,29662 +873,819,2,32,21:08:32,30.834,30834 +873,814,2,33,21:08:49,30.029,30029 +873,3,2,33,21:09:07,29.687,29687 +873,154,2,33,21:09:08,31.753,31753 +873,813,3,33,21:09:10,30.981,30981 +873,30,2,33,21:09:20,30.338,30338 +873,811,3,33,21:09:41,30.684,30684 +873,13,3,33,21:10:02,29.455,29455 +873,17,3,40,21:26:54,29.348,29348 +873,807,2,40,21:26:54,30.613,30613 +873,815,2,40,21:26:57,30.217,30217 +873,808,4,40,21:27:04,41.154,41154 +873,37,3,40,21:27:06,44.101,44101 +873,5,3,45,21:38:17,30.232,30232 +873,155,3,50,21:48:02,36.146,36146 +873,807,3,50,21:48:19,34.601,34601 +873,808,1,1,20:06:04,36.148,36148 +873,13,1,1,20:06:31,31.958,31958 +873,17,1,8,20:19:35,29.333,29333 +873,20,1,10,20:23:17,29.117,29117 +873,811,1,10,20:23:50,30.317,30317 +873,4,1,11,20:25:22,29.557,29557 +873,30,1,11,20:25:39,30.879,30879 +873,817,1,11,20:25:50,30.992,30992 +873,1,1,12,20:27:09,29.124,29124 +873,814,1,12,20:27:23,31.026,31026 +873,3,1,12,20:27:30,29.546,29546 +873,818,1,12,20:27:44,30.499,30499 +873,5,1,12,20:27:55,30.440,30440 +873,813,1,13,20:29:11,30.234,30234 +873,8,1,13,20:29:37,29.669,29669 +873,10,1,13,20:30:01,30.977,30977 +873,18,1,14,20:31:06,30.019,30019 +873,154,1,14,20:31:24,32.080,32080 +873,155,1,14,20:31:56,30.693,30693 +873,819,1,16,20:36:09,30.647,30647 +873,807,1,18,20:39:33,30.363,30363 +873,815,1,18,20:39:37,30.043,30043 +873,37,1,18,20:40:26,33.042,33042 +873,808,2,18,20:40:30,30.341,30341 +873,13,2,19,20:42:14,29.403,29403 +873,39,1,19,20:42:28,32.436,32436 +873,818,2,24,20:51:30,29.898,29898 +873,811,2,25,20:53:24,30.828,30828 +874,154,1,1,15:05:37,32.329,32329 +874,811,1,1,15:05:49,27.098,27098 +874,17,1,1,15:06:19,32.462,32462 +874,154,2,7,15:16:52,29.793,29793 +874,18,1,13,15:26:28,20.233,20233 +874,8,1,13,15:26:35,20.901,20901 +874,807,1,13,15:26:38,21.007,21007 +874,814,1,13,15:26:54,21.063,21063 +874,155,1,14,15:28:06,20.783,20783 +874,819,1,14,15:29:02,21.343,21343 +874,815,1,15,15:29:58,21.273,21273 +874,39,1,15,15:30:44,23.227,23227 +874,1,1,16,15:31:39,21.148,21148 +874,813,1,16,15:31:44,21.361,21361 +874,811,2,16,15:32:04,21.538,21538 +874,20,1,17,15:32:58,20.508,20508 +874,13,1,17,15:33:08,20.936,20936 +874,817,1,17,15:33:31,21.944,21944 +874,30,1,17,15:33:45,20.643,20643 +874,37,1,17,15:34:08,26.287,26287 +874,5,1,18,15:35:26,22.816,22816 +874,818,1,18,15:35:28,22.528,22528 +874,808,1,19,15:37:33,21.368,21368 +874,10,1,20,15:39:00,20.662,20662 +874,811,3,21,15:40:44,14.608,14608 +874,154,3,22,15:42:35,21.143,21143 +874,17,2,26,15:48:48,20.691,20691 +874,8,2,30,15:55:12,21.222,21222 +874,155,2,31,15:56:42,20.762,20762 +874,1,2,31,15:56:51,19.794,19794 +874,807,2,31,15:56:55,21.688,21688 +874,819,2,31,15:58:08,42.505,42505 +874,814,2,32,15:59:02,21.344,21344 +874,813,2,33,16:00:13,21.118,21118 +874,817,2,34,16:02:03,21.516,21516 +874,811,4,34,16:02:29,21.520,21520 +874,18,2,35,16:03:20,21.099,21099 +874,818,2,35,16:04:02,21.431,21431 +874,13,2,36,16:04:50,20.778,20778 +874,30,2,36,16:05:33,20.379,20379 +874,20,2,37,16:06:11,20.346,20346 +874,37,2,36,16:06:51,22.487,22487 +874,10,2,40,16:12:57,21.520,21520 +874,5,2,41,16:14:28,22.678,22678 +874,808,2,42,16:16:46,21.367,21367 +874,808,3,48,16:27:04,14.250,14250 +875,155,1,1,15:06:00,33.003,33003 +875,155,2,7,15:17:22,13.986,13986 +875,1,1,13,15:26:44,19.638,19638 +875,807,1,13,15:26:59,22.125,22125 +875,154,1,13,15:27:00,21.681,21681 +875,30,1,13,15:27:06,20.087,20087 +875,818,1,13,15:27:09,20.865,20865 +875,5,1,13,15:27:25,21.896,21896 +875,17,1,14,15:28:25,19.811,19811 +875,13,1,14,15:28:32,20.607,20607 +875,8,1,14,15:28:33,20.211,20211 +875,817,1,14,15:28:56,20.151,20151 +875,811,1,14,15:28:57,21.886,21886 +875,808,1,14,15:29:17,22.278,22278 +875,10,1,14,15:29:19,22.334,22334 +875,20,1,15,15:30:06,19.830,19830 +875,4,1,15,15:30:13,19.930,19930 +875,814,1,15,15:30:41,20.805,20805 +875,819,1,17,15:35:01,21.302,21302 +875,815,1,18,15:35:58,24.408,24408 +875,39,1,18,15:37:11,22.749,22749 +875,813,1,21,15:41:35,21.137,21137 +875,1,2,26,15:50:01,20.777,20777 +875,814,2,28,15:54:05,20.218,20218 +875,154,2,31,15:59:00,20.935,20935 +875,10,2,31,16:00:08,20.494,20494 +875,17,2,32,16:00:11,19.616,19616 +875,807,2,32,16:00:43,20.982,20982 +875,30,2,32,16:01:04,20.276,20276 +875,811,2,32,16:01:12,22.813,22813 +875,808,2,32,16:01:49,21.581,21581 +875,815,2,33,16:02:54,20.767,20767 +875,5,2,33,16:03:37,21.489,21489 +875,4,2,34,16:03:41,20.090,20090 +875,817,2,34,16:04:24,20.804,20804 +875,20,2,35,16:05:18,19.801,19801 +875,13,2,35,16:05:28,20.855,20855 +875,8,2,35,16:05:40,21.012,21012 +875,819,2,34,16:06:00,22.019,22019 +875,818,2,38,16:11:27,21.188,21188 +875,1,3,42,16:18:28,19.447,19447 +876,818,1,1,15:05:15,25.097,25097 +876,30,1,1,15:05:50,25.036,25036 +876,815,1,14,15:25:19,21.336,21336 +876,815,2,19,15:33:50,24.508,24508 +876,18,1,25,15:42:00,21.509,21509 +876,811,1,26,15:43:56,22.047,22047 +876,39,1,26,15:45:08,24.544,24544 +876,8,1,27,15:45:09,21.404,21404 +876,3,1,27,15:45:26,21.490,21490 +876,813,1,27,15:45:28,22.003,22003 +876,817,1,27,15:45:46,22.637,22637 +876,13,1,28,15:46:40,21.100,21100 +876,807,1,28,15:46:47,21.654,21654 +876,814,1,28,15:47:07,23.948,23948 +876,819,1,28,15:47:38,22.692,22692 +876,4,1,29,15:47:52,20.800,20800 +876,17,1,30,15:49:21,20.808,20808 +876,813,2,30,15:50:59,28.053,28053 +876,808,1,31,15:52:12,22.445,22445 +876,10,1,31,15:52:31,27.303,27303 +876,1,1,32,15:52:33,20.852,20852 +876,5,1,32,15:53:40,22.967,22967 +876,20,1,33,15:53:43,20.707,20707 +876,37,1,32,15:54:30,23.830,23830 +876,818,2,33,15:55:26,21.658,21658 +876,30,2,33,15:56:04,21.322,21322 +876,154,1,36,15:59:04,20.976,20976 +876,155,1,36,15:59:41,22.726,22726 +877,3,1,1,17:05:24,29.277,29277 +877,154,1,1,17:05:48,26.057,26057 +877,814,1,1,17:06:13,26.670,26670 +877,818,1,9,17:20:35,20.319,20319 +877,154,2,9,17:21:21,21.017,21017 +877,814,2,9,17:21:58,19.829,19829 +877,20,1,13,17:31:03,24.962,24962 +877,155,1,25,17:53:36,19.529,19529 +877,13,1,26,17:55:31,19.585,19585 +877,817,1,26,17:55:32,20.122,20122 +877,819,1,26,17:55:56,21.941,21941 +877,30,1,27,17:57:17,19.701,19701 +877,10,1,27,17:57:44,19.884,19884 +877,808,1,27,17:57:47,20.769,20769 +877,4,1,28,17:58:45,19.368,19368 +877,5,1,28,17:59:21,23.032,23032 +877,37,1,28,17:59:46,22.272,22272 +877,18,1,29,18:00:35,19.455,19455 +877,813,1,29,18:00:45,20.723,20723 +877,815,1,30,18:02:32,19.486,19486 +877,17,1,30,18:02:33,19.066,19066 +877,8,1,31,18:03:59,20.278,20278 +877,811,1,32,18:06:19,22.587,22587 +877,818,2,33,18:08:11,19.885,19885 +877,20,2,37,18:15:02,19.918,19918 +877,815,2,38,18:17:35,33.431,33431 +877,817,2,38,18:17:36,21.231,21231 +877,814,3,39,18:19:26,20.265,20265 +877,30,2,41,18:24:11,21.270,21270 +877,815,3,44,18:30:24,26.858,26858 +878,154,1,9,13:19:50,21.190,21190 +878,155,1,13,13:26:55,24.079,24079 +878,30,1,14,13:28:39,22.263,22263 +878,807,1,17,13:33:38,22.099,22099 +878,1,1,20,13:38:21,20.814,20814 +878,4,1,20,13:38:33,24.439,24439 +878,811,1,20,13:38:57,22.143,22143 +878,20,1,21,13:40:02,20.904,20904 +878,814,1,21,13:40:40,22.498,22498 +878,813,1,21,13:40:43,22.342,22342 +878,5,1,21,13:41:14,22.713,22713 +878,10,1,21,13:41:15,23.092,23092 +878,815,1,22,13:42:28,22.079,22079 +878,808,1,23,13:44:41,22.762,22762 +878,8,1,24,13:45:33,24.840,24840 +878,37,1,24,13:47:04,24.798,24798 +878,39,1,25,13:48:53,24.497,24497 +878,13,1,26,13:49:03,21.520,21520 +878,819,1,26,13:50:13,22.379,22379 +878,817,1,30,13:56:20,22.651,22651 +878,814,2,30,13:56:45,22.444,22444 +878,3,1,34,14:03:17,21.346,21346 +878,18,1,35,14:04:36,21.445,21445 +878,30,2,39,14:12:20,21.297,21297 +879,8,1,5,14:10:08,21.541,21541 +879,30,1,5,14:10:23,25.980,25980 +879,155,1,8,14:14:32,27.266,27266 +879,30,2,8,14:15:29,22.486,22486 +879,3,1,9,14:16:06,23.018,23018 +879,817,1,9,14:16:07,22.838,22838 +879,17,1,9,14:16:09,23.127,23127 +879,1,1,10,14:17:17,24.410,24410 +879,4,1,10,14:17:29,22.472,22472 +879,20,1,10,14:17:36,20.997,20997 +879,814,1,10,14:17:37,28.336,28336 +879,39,1,13,14:22:30,27.113,27113 +879,819,1,13,14:22:37,24.427,24427 +879,10,1,14,14:23:56,23.251,23251 +879,808,1,14,14:23:58,23.031,23031 +879,37,1,14,14:24:13,25.787,25787 +879,13,1,15,14:25:26,22.596,22596 +879,818,1,15,14:25:27,22.362,22362 +879,5,1,15,14:25:33,23.429,23429 +879,30,3,17,14:29:13,22.243,22243 +879,1,2,18,14:29:24,21.606,21606 +879,4,2,18,14:29:41,23.000,23000 +879,155,2,18,14:29:44,24.254,24254 +879,3,2,18,14:29:54,21.806,21806 +879,814,2,18,14:29:55,21.364,21364 +879,20,2,19,14:31:08,22.016,22016 +879,17,2,19,14:31:16,21.232,21232 +879,817,2,19,14:31:25,21.182,21182 +879,8,2,19,14:31:26,22.731,22731 +879,13,2,19,14:31:32,21.680,21680 +879,10,2,19,14:31:36,21.442,21442 +879,808,2,19,14:31:43,27.452,27452 +879,5,2,19,14:31:46,38.291,38291 +879,37,2,19,14:32:05,26.573,26573 +879,818,2,20,14:33:06,21.302,21302 +879,819,2,20,14:33:27,22.746,22746 +879,39,2,20,14:33:37,26.739,26739 +879,3,3,20,14:33:42,24.262,24262 +879,807,1,23,14:35:55,21.347,21347 +879,18,1,23,14:35:56,21.550,21550 +879,818,3,29,14:48:26,25.976,25976 +879,10,3,31,14:51:14,23.544,23544 +879,5,3,37,14:59:15,22.721,22721 +879,3,4,50,15:17:16,31.768,31768 +879,37,3,50,15:17:24,25.375,25375 +879,817,3,51,15:18:04,21.444,21444 +879,39,3,51,15:19:00,23.625,23625 +879,20,3,52,15:19:17,21.256,21256 +879,8,3,53,15:21:39,32.309,32309 +879,155,3,54,15:22:32,32.823,32823 +879,30,4,54,15:22:33,21.827,21827 +879,20,4,54,15:22:38,28.932,28932 +879,808,3,54,15:23:17,22.702,22702 +879,13,3,55,15:23:33,22.427,22427 +879,17,3,55,15:23:53,21.006,21006 +879,819,3,55,15:24:35,23.082,23082 +879,4,3,56,15:25:03,21.862,21862 +879,818,4,56,15:25:47,22.061,22061 +879,37,4,55,15:25:57,24.510,24510 +879,817,4,56,15:26:13,22.923,22923 +879,18,2,57,15:26:15,21.456,21456 +879,39,4,55,15:26:24,27.480,27480 +879,807,2,57,15:26:30,22.250,22250 +879,5,4,56,15:26:34,23.002,23002 +879,10,4,56,15:26:40,24.816,24816 +879,814,3,57,15:27:15,22.389,22389 +879,807,3,58,15:28:20,14.128,14128 +879,5,5,59,15:31:24,21.849,21849 +879,817,5,61,15:33:59,21.973,21973 +880,18,1,4,17:09:54,22.282,22282 +880,17,1,5,17:11:28,24.240,24240 +880,154,1,5,17:11:33,22.239,22239 +880,821,1,5,17:11:35,22.316,22316 +880,822,1,6,17:13:14,23.528,23528 +880,820,1,6,17:13:26,36.564,36564 +880,20,1,7,17:14:25,21.807,21807 +880,823,1,7,17:15:07,24.104,24104 +880,13,1,8,17:16:00,21.754,21754 +880,814,1,8,17:16:13,23.010,23010 +880,819,1,8,17:16:47,23.394,23394 +880,4,1,9,17:17:35,21.792,21792 +880,8,1,9,17:17:36,22.709,22709 +880,818,1,9,17:17:54,23.074,23074 +880,824,1,9,17:18:08,23.371,23371 +880,813,1,10,17:19:36,23.099,23099 +880,1,1,13,17:23:56,22.155,22155 +880,3,1,14,17:25:35,22.274,22274 +880,817,1,15,17:27:32,23.435,23435 +880,815,1,16,17:29:00,23.677,23677 +880,823,2,16,17:29:58,23.834,23834 +880,17,2,18,17:32:17,21.717,21717 +880,154,2,19,17:33:53,22.133,22133 +880,820,2,19,17:34:48,30.838,30838 +880,4,2,20,17:35:01,21.606,21606 +880,18,2,20,17:35:24,23.571,23571 +880,16,1,21,17:36:31,22.693,22693 +880,20,2,21,17:36:32,22.704,22704 +880,13,2,23,17:39:40,21.511,21511 +880,815,2,23,17:40:25,22.004,22004 +880,818,2,24,17:41:44,24.688,24688 +880,822,2,24,17:42:08,23.215,23215 +880,821,2,27,17:46:47,22.315,22315 +880,824,2,27,17:47:07,23.387,23387 +880,817,2,30,17:51:27,24.177,24177 +880,1,2,31,17:52:21,22.015,22015 +880,814,2,33,17:55:48,23.051,23051 +880,8,2,34,17:56:41,22.181,22181 +880,819,2,33,17:57:12,23.509,23509 +880,823,3,34,17:59:22,23.917,23917 +880,820,3,34,17:59:26,22.948,22948 +880,13,3,36,18:00:04,21.509,21509 +880,20,3,37,18:01:32,21.596,21596 +880,18,3,37,18:02:18,21.538,21538 +880,154,3,37,18:02:19,22.534,22534 +880,17,3,38,18:03:34,21.515,21515 +880,4,3,39,18:04:29,21.704,21704 +880,822,3,40,18:07:27,24.060,24060 +880,815,3,41,18:08:37,21.705,21705 +880,1,3,42,18:09:35,21.778,21778 +880,818,3,44,18:13:03,23.160,23160 +880,16,2,46,18:15:28,22.749,22749 +880,824,3,50,18:23:42,22.669,22669 +881,20,1,5,16:13:32,21.135,21135 +881,13,1,5,16:13:49,22.403,22403 +881,16,1,6,16:15:54,37.833,37833 +881,817,1,6,16:15:56,22.416,22416 +881,8,1,6,16:15:57,25.905,25905 +881,814,1,6,16:15:57,43.713,43713 +881,813,1,6,16:16:01,24.737,24737 +881,823,1,6,16:16:05,23.252,23252 +881,824,1,6,16:16:07,26.546,26546 +881,822,1,6,16:16:09,24.960,24960 +881,820,1,6,16:16:12,30.365,30365 +881,17,1,7,16:17:26,21.010,21010 +881,1,1,7,16:17:30,24.933,24933 +881,18,1,7,16:17:43,22.448,22448 +881,807,1,7,16:17:44,22.996,22996 +881,815,1,7,16:17:51,21.583,21583 +881,154,1,7,16:17:52,22.105,22105 +881,821,1,7,16:17:55,24.397,24397 +881,818,1,7,16:17:57,49.216,49216 +881,819,1,7,16:18:03,44.428,44428 +881,3,1,8,16:19:28,22.028,22028 +881,813,2,13,16:29:27,32.561,32561 +881,824,2,17,16:36:29,23.755,23755 +881,823,2,18,16:38:15,22.706,22706 +881,17,2,19,16:38:48,20.736,20736 +881,817,2,19,16:39:32,22.388,22388 +881,820,2,19,16:40:11,22.668,22668 +881,13,2,20,16:40:56,21.635,21635 +881,154,2,20,16:40:57,21.812,21812 +881,819,2,20,16:41:58,25.015,25015 +881,1,2,21,16:42:22,21.465,21465 +881,18,2,21,16:42:32,21.028,21028 +881,807,2,21,16:42:39,21.699,21699 +881,8,2,21,16:42:42,22.677,22677 +881,20,2,22,16:44:00,21.339,21339 +881,3,2,22,16:44:07,21.079,21079 +881,815,2,22,16:44:32,20.894,20894 +881,821,2,22,16:44:52,22.575,22575 +881,822,2,22,16:44:54,28.045,28045 +881,818,2,26,16:52:14,21.638,21638 +881,823,3,28,16:56:15,25.118,25118 +881,824,3,29,16:57:51,22.017,22017 +881,1,3,30,16:58:00,21.549,21549 +881,17,3,31,16:59:38,20.883,20883 +881,3,3,31,16:59:42,22.114,22114 +881,20,3,32,17:01:24,21.482,21482 +881,820,3,31,17:01:52,22.115,22115 +881,813,3,32,17:03:12,22.703,22703 +881,819,3,32,17:03:34,23.373,23373 +881,13,3,33,17:03:34,21.561,21561 +881,815,3,33,17:03:40,21.338,21338 +881,817,3,33,17:04:13,22.008,22008 +881,807,3,34,17:05:21,22.629,22629 +881,8,3,34,17:05:22,21.903,21903 +881,154,3,35,17:07:03,22.385,22385 +881,821,3,36,17:09:30,22.394,22394 +881,822,3,40,17:16:24,22.937,22937 +881,1,4,41,17:17:00,21.271,21271 +881,20,4,42,17:18:37,20.757,20757 +881,3,4,42,17:18:44,21.202,21202 +881,820,4,41,17:19:43,22.271,22271 +881,17,4,43,17:20:16,20.767,20767 +881,823,4,42,17:21:22,22.744,22744 +881,818,3,43,17:21:38,21.702,21702 +881,824,4,43,17:22:37,22.335,22335 +881,807,4,44,17:22:50,23.198,23198 +881,819,4,43,17:23:04,23.844,23844 +881,13,4,47,17:27:39,20.970,20970 +881,821,4,51,17:35:38,22.542,22542 +881,815,4,54,17:40:12,21.366,21366 +882,17,1,1,15:05:52,21.287,21287 +882,817,1,4,15:11:03,24.946,24946 +882,1,1,5,15:12:45,20.379,20379 +882,3,1,5,15:12:50,22.299,22299 +882,819,1,5,15:12:59,21.265,21265 +882,4,1,6,15:14:28,19.719,19719 +882,8,1,6,15:14:31,20.753,20753 +882,824,1,6,15:14:46,21.097,21097 +882,823,1,6,15:14:51,20.905,20905 +882,13,1,7,15:16:16,20.753,20753 +882,154,1,7,15:16:21,20.083,20083 +882,813,1,7,15:16:30,20.794,20794 +882,820,1,7,15:16:42,21.063,21063 +882,807,1,14,15:28:27,22.838,22838 +882,20,1,14,15:28:27,19.323,19323 +882,814,1,14,15:28:38,20.598,20598 +882,17,2,15,15:30:32,26.956,26956 +882,818,1,15,15:30:41,20.977,20977 +882,822,1,16,15:32:22,21.614,21614 +882,824,2,16,15:32:43,24.834,24834 +882,819,2,17,15:34:28,22.183,22183 +882,13,2,19,15:37:26,20.027,20027 +882,3,2,19,15:37:32,19.894,19894 +882,3,3,20,15:39:47,22.727,22727 +882,823,2,20,15:40:06,20.743,20743 +882,1,2,21,15:40:48,20.584,20584 +882,8,2,21,15:40:49,20.759,20759 +882,820,2,21,15:41:43,25.091,25091 +882,4,2,23,15:44:07,20.521,20521 +882,18,1,23,15:44:11,19.898,19898 +882,154,2,23,15:44:31,20.286,20286 +882,817,2,23,15:44:33,20.303,20303 +882,813,2,23,15:44:50,21.517,21517 +882,815,1,24,15:46:14,19.969,19969 +882,807,2,29,15:54:43,20.327,20327 +882,20,2,31,15:58:05,20.084,20084 +882,815,2,31,15:58:33,20.253,20253 +882,814,2,32,16:00:08,20.320,20320 +882,824,3,32,16:00:54,20.625,20625 +882,819,3,33,16:02:38,21.294,21294 +882,820,3,33,16:02:57,25.151,25151 +882,8,3,34,16:03:20,20.464,20464 +882,822,2,34,16:04:01,22.217,22217 +882,807,3,36,16:07:00,19.957,19957 +882,13,3,36,16:07:01,19.449,19449 +882,1,3,37,16:08:26,19.600,19600 +882,154,3,37,16:08:50,20.109,20109 +882,818,2,37,16:09:02,20.235,20235 +882,823,3,37,16:10:13,21.067,21067 +882,817,3,38,16:10:28,20.362,20362 +882,813,3,39,16:12:48,20.982,20982 +882,4,3,41,16:14:58,21.012,21012 +882,818,3,43,16:19:28,20.716,20716 +882,18,2,49,16:28:59,19.862,19862 +882,20,3,51,16:32:06,20.191,20191 +882,822,3,51,16:33:18,21.490,21490 +882,814,3,53,16:35:54,19.831,19831 +883,821,1,1,15:06:04,28.102,28102 +883,16,1,1,15:06:49,26.495,26495 +883,823,1,2,15:08:11,28.344,28344 +883,818,1,2,15:09:07,41.485,41485 +883,4,1,7,15:16:09,23.055,23055 +883,17,1,8,15:17:54,21.798,21798 +883,154,1,8,15:17:57,24.605,24605 +883,4,2,8,15:18:11,21.436,21436 +883,3,1,9,15:19:37,22.237,22237 +883,18,1,9,15:19:38,23.093,23093 +883,817,1,9,15:19:48,22.529,22529 +883,824,1,9,15:19:57,24.325,24325 +883,20,1,10,15:21:11,21.660,21660 +883,13,1,10,15:21:20,21.665,21665 +883,815,1,10,15:21:21,21.471,21471 +883,1,1,10,15:21:24,22.072,22072 +883,813,1,10,15:21:26,23.173,23173 +883,820,1,10,15:21:45,22.745,22745 +883,819,1,11,15:23:21,22.912,22912 +883,807,1,12,15:24:51,21.656,21656 +883,822,1,13,15:26:40,22.729,22729 +883,814,1,14,15:28:08,22.009,22009 +883,823,2,14,15:29:30,22.950,22950 +883,8,1,16,15:31:35,22.715,22715 +883,821,2,16,15:32:19,21.997,21997 +883,13,2,17,15:33:34,21.722,21722 +883,16,2,18,15:36:08,22.199,22199 +883,3,2,20,15:38:32,21.331,21331 +883,815,2,20,15:38:33,21.161,21161 +883,17,2,21,15:40:08,21.221,21221 +883,18,2,21,15:40:13,21.894,21894 +883,1,2,22,15:42:02,21.444,21444 +883,824,2,22,15:42:41,23.455,23455 +883,813,2,23,15:43:49,22.220,22220 +883,819,2,23,15:44:11,22.576,22576 +883,820,2,23,15:44:27,24.141,24141 +883,4,3,24,15:45:32,21.123,21123 +883,20,2,25,15:46:35,21.290,21290 +883,823,3,24,15:47:12,22.252,22252 +883,817,2,25,15:47:31,22.028,22028 +883,807,2,26,15:48:57,22.400,22400 +883,154,2,27,15:50:20,21.608,21608 +883,13,3,28,15:52:18,21.569,21569 +883,822,2,29,15:54:07,28.408,28408 +883,3,3,33,16:00:40,21.183,21183 +883,821,3,33,16:01:35,22.438,22438 +883,8,2,34,16:02:06,21.723,21723 +883,18,3,34,16:02:20,21.696,21696 +883,819,3,35,16:04:48,23.263,23263 +883,814,2,36,16:05:30,22.475,22475 +883,13,4,36,16:06:01,27.757,27757 +883,824,3,36,16:06:51,22.817,22817 +883,17,3,37,16:07:17,21.031,21031 +883,820,3,37,16:08:38,26.004,26004 +883,1,3,38,16:09:03,21.600,21600 +883,815,3,39,16:10:45,21.319,21319 +883,4,4,39,16:10:48,21.189,21189 +883,813,3,39,16:11:04,22.066,22066 +883,823,4,39,16:13:18,22.380,22380 +883,807,3,41,16:14:30,22.814,22814 +883,817,3,41,16:14:49,22.623,22623 +883,20,3,42,16:15:09,21.906,21906 +883,154,3,42,16:15:35,21.556,21556 +883,16,3,42,16:16:30,22.346,22346 +883,821,4,43,16:18:34,22.246,22246 +883,3,4,44,16:19:15,21.267,21267 +883,18,4,46,16:22:36,21.230,21230 +883,820,4,46,16:24:10,22.552,22552 +883,822,3,47,16:24:37,23.837,23837 +883,823,5,47,16:27:16,23.375,23375 +883,824,4,48,16:27:23,23.803,23803 +884,824,1,2,14:06:58,29.994,29994 +884,17,1,7,14:14:27,19.668,19668 +884,13,1,8,14:15:53,19.490,19490 +884,807,1,8,14:15:59,19.993,19993 +884,813,1,8,14:16:03,20.205,20205 +884,819,1,8,14:16:15,20.734,20734 +884,4,1,9,14:17:21,18.909,18909 +884,1,1,9,14:17:26,22.018,22018 +884,814,1,9,14:17:29,20.615,20615 +884,818,1,9,14:17:33,19.772,19772 +884,823,1,9,14:17:41,21.686,21686 +884,822,1,9,14:17:42,21.171,21171 +884,3,1,10,14:18:50,19.414,19414 +884,20,1,10,14:18:51,18.606,18606 +884,8,1,10,14:18:53,19.978,19978 +884,815,1,10,14:18:59,19.250,19250 +884,817,1,10,14:19:03,19.795,19795 +884,18,1,11,14:20:44,18.810,18810 +884,821,1,13,14:23:38,22.144,22144 +884,813,2,13,14:23:55,13.266,13266 +884,820,1,15,14:27:24,25.294,25294 +884,824,2,16,14:28:59,20.656,20656 +884,814,2,19,14:32:58,19.792,19792 +884,13,2,20,14:34:12,19.373,19373 +884,17,2,20,14:34:27,19.151,19151 +884,818,2,20,14:34:37,20.671,20671 +884,813,3,20,14:34:52,23.139,23139 +884,823,2,20,14:34:59,22.029,22029 +884,4,2,21,14:35:36,19.952,19952 +884,807,2,21,14:36:06,19.402,19402 +884,16,2,22,14:38:15,20.306,20306 +884,815,2,23,14:39:06,20.578,20578 +884,819,2,23,14:39:41,20.870,20870 +884,20,2,24,14:40:14,18.708,18708 +884,817,2,24,14:40:39,20.100,20100 +884,1,2,25,14:42:21,20.132,20132 +884,822,2,25,14:42:37,20.533,20533 +884,8,2,26,14:43:15,19.743,19743 +884,3,2,27,14:45:06,20.032,20032 +884,821,2,28,14:46:47,19.988,19988 +884,18,2,28,14:46:53,19.196,19196 +884,824,3,29,14:49:08,19.904,19904 +884,820,2,30,14:50:58,21.582,21582 +884,807,3,34,14:56:00,22.324,22324 +884,818,3,34,14:56:06,25.362,25362 +884,807,4,35,14:57:53,24.001,24001 +884,813,4,35,14:57:57,20.800,20800 +884,4,3,36,14:58:10,19.519,19519 +884,13,3,36,14:58:25,19.326,19326 +884,17,3,36,14:58:48,19.170,19170 +884,1,3,36,14:59:15,19.700,19700 +884,16,3,36,14:59:34,19.591,19591 +884,818,4,37,15:01:38,29.740,29740 +884,814,3,38,15:01:59,19.822,19822 +884,815,3,38,15:02:10,19.866,19866 +884,807,5,38,15:02:43,28.971,28971 +884,20,3,39,15:03:01,19.551,19551 +884,817,3,39,15:03:42,19.498,19498 +884,819,3,41,15:07:38,21.202,21202 +884,821,3,42,15:08:17,20.082,20082 +884,822,3,43,15:10:28,19.908,19908 +884,8,3,45,15:11:53,20.184,20184 +884,18,3,46,15:14:18,19.290,19290 +884,824,4,46,15:15:24,19.830,19830 +884,3,3,47,15:15:40,19.352,19352 +884,820,3,47,15:17:21,21.340,21340 +884,4,4,49,15:17:37,18.471,18471 +884,16,4,49,15:19:07,22.931,22931 +884,17,4,50,15:19:53,18.931,18931 +884,815,4,50,15:20:19,19.993,19993 +884,1,4,50,15:20:35,19.457,19457 +884,13,4,51,15:20:57,19.001,19001 +884,20,4,51,15:21:09,18.694,18694 +884,817,4,51,15:21:47,19.857,19857 +884,814,4,53,15:24:38,19.481,19481 +884,813,5,53,15:25:17,19.723,19723 +884,807,6,53,15:25:37,20.314,20314 +884,821,4,54,15:26:28,19.324,19324 +885,813,1,1,14:04:48,40.507,40507 +885,823,1,1,14:04:55,35.100,35100 +885,814,1,9,14:15:54,25.643,25643 +885,817,1,22,14:33:49,25.225,25225 +885,824,1,22,14:34:05,25.098,25098 +885,820,1,23,14:35:17,25.337,25337 +885,823,2,24,14:37:13,25.676,25676 +885,17,1,25,14:37:28,24.316,24316 +885,8,1,26,14:38:49,24.420,24420 +885,18,1,26,14:38:54,24.585,24585 +885,13,1,26,14:39:26,25.331,25331 +885,807,1,27,14:40:28,24.974,24974 +885,4,1,28,14:41:32,24.489,24489 +885,821,1,28,14:42:09,25.364,25364 +885,815,1,29,14:42:57,24.672,24672 +885,818,1,29,14:43:05,24.827,24827 +885,20,1,30,14:44:08,24.375,24375 +885,16,1,30,14:44:28,25.274,25274 +885,822,1,30,14:44:53,29.063,29063 +885,154,1,30,14:44:55,24.565,24565 +885,813,2,30,14:45:08,26.146,26146 +885,3,1,31,14:45:40,25.200,25200 +885,1,1,31,14:45:51,24.801,24801 +885,824,2,35,14:54:16,25.215,25215 +885,823,3,35,14:55:21,25.862,25862 +885,820,2,48,15:38:30,19.553,19553 +885,154,2,62,15:58:00,39.980,39980 +885,821,2,63,15:59:23,25.926,25926 +885,820,3,63,15:59:31,26.198,26198 +885,8,2,70,16:10:41,25.125,25125 +881,814,2,20,16:41:12,2:03.124,123124 +881,16,2,22,16:44:43,1:29.401,89401 +881,18,3,35,17:06:47,1:44.833,104833 +884,16,1,8,14:15:56,1:14.026,74026 +886,823,1,8,14:14:22,22.323,22323 +886,16,1,9,14:15:30,22.789,22789 +886,819,1,11,14:18:33,22.184,22184 +886,817,1,12,14:19:39,21.223,21223 +886,807,1,12,14:19:40,21.623,21623 +886,813,1,12,14:19:42,24.557,24557 +886,17,1,13,14:20:32,20.716,20716 +886,818,1,13,14:20:45,21.900,21900 +886,815,1,13,14:21:03,20.427,20427 +886,3,1,14,14:21:51,21.125,21125 +886,822,1,14,14:22:18,22.242,22242 +886,20,1,16,14:24:20,20.835,20835 +886,4,1,16,14:24:36,20.512,20512 +886,13,1,17,14:26:26,20.473,20473 +886,813,2,17,14:26:50,14.446,14446 +886,1,1,19,14:28:27,20.879,20879 +886,821,1,21,14:32:08,22.017,22017 +886,8,1,22,14:33:09,25.182,25182 +886,18,1,27,14:40:12,20.212,20212 +886,3,2,31,14:44:51,20.832,20832 +886,823,2,32,14:48:17,22.039,22039 +886,819,2,36,14:53:10,22.033,22033 +886,16,2,37,14:53:24,21.000,21000 +886,807,2,38,14:55:03,21.014,21014 +886,820,1,38,14:55:52,21.374,21374 +886,817,2,39,14:56:29,21.315,21315 +886,823,3,38,14:56:58,29.056,29056 +886,822,2,40,14:57:42,24.418,24418 +886,13,2,41,14:58:51,20.372,20372 +886,824,1,41,14:59:38,21.378,21378 +886,823,4,40,15:00:06,24.510,24510 +886,154,1,42,15:00:07,20.859,20859 +886,815,2,43,15:01:30,20.805,20805 +886,17,2,46,15:04:23,22.709,22709 +886,4,2,47,15:05:39,20.636,20636 +886,1,2,48,15:06:50,20.656,20656 +886,20,2,49,15:07:50,20.898,20898 +886,813,3,49,15:10:14,21.637,21637 +886,154,2,53,15:14:53,21.574,21574 +886,814,1,56,15:18:16,21.066,21066 +886,3,3,57,15:19:14,21.459,21459 +886,818,2,57,15:19:32,20.739,20739 +886,16,3,61,15:25:13,14.489,14489 +886,821,2,63,15:28:44,21.524,21524 +887,1,1,8,13:17:20,29.026,29026 +887,154,1,9,13:18:36,24.725,24725 +887,814,1,9,13:18:47,25.004,25004 +887,4,1,10,13:20:16,24.572,24572 +887,17,1,10,13:20:19,31.448,31448 +887,821,1,10,13:20:28,25.330,25330 +887,823,1,10,13:20:57,26.515,26515 +887,13,1,10,13:21:18,35.210,35210 +887,8,1,11,13:21:52,24.992,24992 +887,817,1,11,13:21:54,29.446,29446 +887,18,1,11,13:22:03,24.745,24745 +887,824,1,11,13:22:28,25.729,25729 +887,3,1,12,13:23:20,24.990,24990 +887,16,1,12,13:23:29,24.807,24807 +887,807,1,12,13:23:43,29.684,29684 +887,820,1,12,13:24:20,26.031,26031 +887,20,1,13,13:24:55,24.159,24159 +887,815,1,13,13:25:16,24.596,24596 +887,818,1,14,13:27:16,29.418,29418 +887,813,1,15,13:29:05,25.244,25244 +887,822,1,15,13:29:14,30.231,30231 +887,819,1,15,13:29:18,26.191,26191 +887,13,2,16,13:32:21,24.680,24680 +887,807,2,25,13:50:08,26.256,26256 +887,818,2,25,13:50:17,26.317,26317 +887,821,2,27,13:53:31,26.040,26040 +887,823,2,28,13:55:33,25.814,25814 +887,8,2,29,13:56:33,24.428,24428 +887,821,3,29,13:57:08,31.937,31937 +887,4,2,30,13:58:10,24.789,24789 +887,154,2,30,13:58:16,24.751,24751 +887,17,2,31,13:59:51,24.781,24781 +887,817,2,32,14:01:28,26.229,26229 +887,18,2,32,14:01:33,24.357,24357 +887,820,2,32,14:02:17,25.701,25701 +887,16,2,33,14:03:04,25.158,25158 +887,815,2,33,14:03:08,25.028,25028 +887,814,2,33,14:03:14,25.099,25099 +887,824,2,33,14:03:42,25.927,25927 +887,3,2,34,14:04:28,24.893,24893 +887,819,2,34,14:05:14,26.371,26371 +887,20,2,35,14:06:01,24.092,24092 +887,1,2,36,14:08:08,24.635,24635 +887,13,3,36,14:08:18,24.400,24400 +887,813,2,37,14:10:02,25.275,25275 +887,807,3,37,14:10:02,24.863,24863 +887,822,2,38,14:11:48,31.851,31851 +887,821,4,40,14:15:23,25.087,25087 +887,823,3,40,14:16:02,26.391,26391 +887,4,3,41,14:16:06,25.018,25018 +887,3,3,42,14:17:48,25.436,25436 +887,17,3,42,14:18:03,24.473,24473 +887,154,3,42,14:18:29,25.911,25911 +887,814,3,42,14:18:34,33.401,33401 +887,13,4,42,14:18:38,24.872,24872 +888,814,1,4,14:10:30,20.547,20547 +888,818,1,4,14:10:37,23.147,23147 +888,819,1,4,14:10:40,22.699,22699 +888,817,1,5,14:12:03,19.846,19846 +888,16,1,5,14:12:09,19.910,19910 +888,823,1,5,14:12:16,21.900,21900 +888,824,1,5,14:12:18,20.840,20840 +888,1,1,6,14:13:34,19.487,19487 +888,821,1,6,14:13:52,19.816,19816 +888,20,1,7,14:15:09,18.979,18979 +888,815,1,7,14:15:22,20.432,20432 +888,17,1,8,14:16:48,2:42.042,162042 +888,8,1,8,14:16:51,19.378,19378 +888,820,1,8,14:17:26,21.021,21021 +888,4,1,12,14:23:32,20.199,20199 +888,154,1,13,14:25:00,20.273,20273 +888,3,1,16,14:30:21,19.690,19690 +888,807,1,17,14:31:56,21.226,21226 +888,817,2,18,14:33:49,19.952,19952 +888,824,2,18,14:34:30,20.371,20371 +888,823,2,19,14:36:10,20.974,20974 +888,820,2,20,14:37:56,19.953,19953 +888,18,1,21,14:38:27,20.812,20812 +888,813,1,21,14:38:44,20.331,20331 +888,1,2,22,14:40:10,19.321,19321 +888,822,1,22,14:40:31,33.796,33796 +888,821,2,22,14:40:34,19.869,19869 +888,20,2,24,14:43:10,20.039,20039 +888,154,2,24,14:43:13,20.007,20007 +888,8,2,24,14:43:25,20.528,20528 +888,4,2,24,14:43:36,19.539,19539 +888,815,2,24,14:43:57,20.433,20433 +888,16,2,24,14:44:00,20.204,20204 +888,814,2,24,14:44:07,21.483,21483 +888,3,2,24,14:44:07,22.207,22207 +888,17,2,23,14:44:15,19.991,19991 +888,819,2,24,14:44:58,21.388,21388 +888,820,3,26,14:48:52,20.272,20272 +888,819,3,34,15:03:58,22.986,22986 +888,807,2,37,15:08:26,20.364,20364 +888,820,4,37,15:08:55,21.433,21433 +888,17,3,38,15:10:15,19.921,19921 +888,823,3,38,15:10:34,20.545,20545 +888,154,3,40,15:13:03,19.591,19591 +888,817,3,40,15:13:28,20.196,20196 +888,20,3,41,15:14:38,19.118,19118 +888,821,3,41,15:15:07,21.160,21160 +888,16,3,43,15:18:18,21.799,21799 +888,1,3,45,15:21:19,19.316,19316 +888,18,2,47,15:24:27,19.692,19692 +888,3,3,48,15:26:26,19.684,19684 +888,8,3,49,15:27:24,19.390,19390 +888,4,3,49,15:27:29,19.476,19476 +888,807,3,49,15:28:02,20.557,20557 +888,813,2,50,15:29:39,36.196,36196 +888,822,2,54,15:36:20,45.695,45695 +890,818,1,8,14:15:51,22.745,22745 +890,823,1,8,14:15:55,23.200,23200 +890,1,1,9,14:16:48,21.840,21840 +890,813,1,9,14:17:14,22.103,22103 +890,814,1,9,14:17:18,22.754,22754 +890,817,1,10,14:18:44,24.033,24033 +890,3,1,10,14:18:45,22.015,22015 +890,822,1,10,14:18:55,22.023,22023 +890,20,1,11,14:19:47,21.343,21343 +890,13,1,11,14:19:57,23.012,23012 +890,807,1,11,14:20:17,22.303,22303 +890,4,1,12,14:21:21,21.599,21599 +890,154,1,13,14:22:46,22.054,22054 +890,8,1,13,14:22:56,22.161,22161 +890,819,1,13,14:23:32,22.465,22465 +890,824,1,20,14:34:40,22.159,22159 +890,820,1,21,14:36:25,22.323,22323 +890,17,1,23,14:37:39,21.762,21762 +890,815,1,23,14:38:10,22.323,22323 +890,821,1,23,14:38:18,22.425,22425 +890,18,1,24,14:39:26,22.107,22107 +890,154,2,25,14:40:51,22.267,22267 +890,814,2,26,14:43:05,22.723,22723 +890,823,2,27,14:44:59,22.831,22831 +890,813,2,28,14:45:48,21.880,21880 +890,3,2,29,14:47:10,22.628,22628 +890,818,2,30,14:49:06,22.282,22282 +890,1,2,31,14:49:23,21.454,21454 +890,13,2,31,14:50:01,21.753,21753 +890,822,2,33,14:53:46,22.612,22612 +890,20,2,34,14:53:58,21.863,21863 +890,4,2,34,14:54:07,22.249,22249 +890,824,2,33,14:54:39,22.221,22221 +890,807,2,35,14:56:17,22.606,22606 +890,820,2,34,14:56:34,22.301,22301 +890,154,3,37,14:58:34,16.453,16453 +890,18,2,37,14:58:44,22.496,22496 +890,815,2,38,15:00:37,22.722,22722 +890,817,2,38,15:01:00,21.996,21996 +890,819,2,38,15:01:50,22.450,22450 +890,807,3,40,15:04:00,16.512,16512 +890,8,2,42,15:05:48,21.643,21643 +890,17,2,43,15:07:06,22.349,22349 +890,823,3,44,15:10:43,22.384,22384 +890,154,4,47,15:13:17,22.451,22451 +890,824,3,46,15:14:34,23.030,23030 +890,4,3,48,15:14:42,21.753,21753 +890,13,3,48,15:15:06,21.612,21612 +890,3,3,48,15:15:07,21.854,21854 +890,814,3,48,15:15:49,23.027,23027 +890,1,3,50,15:17:08,22.136,22136 +890,818,3,50,15:18:45,23.756,23756 +890,813,3,51,15:19:53,24.796,24796 +890,820,3,50,15:21:06,23.257,23257 +890,20,3,55,15:24:30,21.666,21666 +890,17,3,59,15:30:24,22.022,22022 +891,807,1,9,14:21:40,24.219,24219 +891,13,1,9,14:21:42,22.872,22872 +891,814,1,10,14:23:35,23.475,23475 +891,818,1,10,14:23:44,24.070,24070 +891,1,1,11,14:25:16,23.397,23397 +891,16,1,11,14:25:37,23.327,23327 +891,813,1,11,14:25:40,27.059,27059 +891,3,1,12,14:27:19,22.893,22893 +891,4,1,13,14:29:10,22.631,22631 +891,17,1,13,14:29:16,23.004,23004 +891,815,1,13,14:29:25,17.378,17378 +891,20,1,14,14:30:58,22.685,22685 +891,8,1,14,14:31:18,23.744,23744 +891,822,1,14,14:31:44,23.411,23411 +891,824,1,14,14:32:07,24.083,24083 +891,823,1,15,14:33:51,24.968,24968 +891,820,1,15,14:34:15,24.013,24013 +891,817,1,16,14:35:26,23.144,23144 +891,18,1,17,14:37:03,22.465,22465 +891,815,2,18,14:39:24,22.597,22597 +891,821,1,19,14:41:20,22.761,22761 +891,154,1,22,14:46:53,23.445,23445 +891,807,2,24,14:50:59,23.334,23334 +891,818,2,24,14:51:01,24.539,24539 +891,3,2,25,14:52:20,23.723,23723 +891,814,2,25,14:52:51,23.540,23540 +891,1,2,26,14:54:11,22.682,22682 +891,13,2,26,14:54:35,22.634,22634 +891,16,2,26,14:54:42,23.655,23655 +891,813,2,27,14:57:12,35.228,35228 +891,4,2,28,14:57:52,22.444,22444 +891,821,2,28,14:58:53,22.712,22712 +891,822,2,28,14:59:02,23.540,23540 +891,824,2,28,14:59:47,23.961,23961 +891,17,2,29,15:00:00,23.477,23477 +891,823,2,29,15:01:18,23.998,23998 +891,20,2,30,15:01:29,22.884,22884 +891,820,2,29,15:02:06,23.916,23916 +891,817,2,33,15:08:12,22.871,22871 +891,820,3,32,15:08:14,17.427,17427 +891,18,2,34,15:09:32,23.317,23317 +891,813,3,38,15:18:29,30.894,30894 +891,821,3,41,15:23:35,17.433,17433 +892,8,1,1,14:05:19,30.975,30975 +892,1,1,13,14:23:23,24.460,24460 +892,819,1,17,14:29:42,25.569,25569 +892,823,1,18,14:31:18,26.302,26302 +892,154,1,20,14:33:49,27.040,27040 +892,18,1,21,14:35:17,24.450,24450 +892,817,1,22,14:36:44,24.319,24319 +892,815,1,22,14:36:45,25.933,25933 +892,824,1,22,14:37:35,25.541,25541 +892,20,1,23,14:37:56,24.305,24305 +892,17,1,23,14:38:07,24.205,24205 +892,820,1,23,14:39:08,26.146,26146 +892,13,1,24,14:39:35,24.692,24692 +892,807,1,24,14:39:37,25.633,25633 +892,16,1,24,14:39:52,26.873,26873 +892,813,1,24,14:39:58,25.397,25397 +892,822,1,25,14:41:33,24.665,24665 +892,3,1,26,14:42:35,24.079,24079 +892,4,1,27,14:43:56,24.208,24208 +892,821,1,27,14:44:20,24.668,24668 +892,8,2,30,14:48:51,24.764,24764 +892,1,2,38,15:00:35,24.315,24315 +892,819,2,38,15:01:38,26.363,26363 +892,823,2,39,15:03:12,33.200,33200 +893,4,2,25,20:52:09,29.176,29176 +893,154,2,25,20:52:13,30.293,30293 +893,13,2,25,20:52:21,29.136,29136 +893,18,2,25,20:52:22,30.085,30085 +893,8,2,25,20:52:24,33.013,33013 +893,815,2,25,20:52:31,29.396,29396 +893,807,2,25,20:52:32,30.253,30253 +893,821,2,25,20:52:42,31.706,31706 +893,16,2,25,20:52:54,30.166,30166 +893,813,2,25,20:53:06,30.444,30444 +893,819,2,25,20:53:55,32.008,32008 +893,823,2,26,20:55:33,37.700,37700 +893,154,3,33,21:11:23,1:13.009,73009 +893,818,3,39,21:22:44,29.999,29999 +893,17,2,40,21:24:28,28.909,28909 +893,16,3,40,21:24:36,31.230,31230 +893,824,4,40,21:25:13,29.421,29421 +893,3,2,41,21:26:16,29.616,29616 +893,813,3,41,21:26:35,30.175,30175 +893,820,3,41,21:27:04,29.687,29687 +893,814,2,42,21:28:14,29.777,29777 +893,13,3,42,21:28:15,29.573,29573 +893,822,3,42,21:28:43,33.836,33836 +893,823,3,42,21:28:50,30.141,30141 +893,1,2,43,21:30:03,30.085,30085 +893,20,2,44,21:31:26,28.934,28934 +893,819,3,54,21:52:04,31.546,31546 +893,8,1,10,20:23:19,29.469,29469 +893,824,1,10,20:23:58,29.573,29573 +893,821,1,11,20:25:19,29.364,29364 +893,818,1,11,20:25:28,29.736,29736 +893,819,1,11,20:25:52,31.841,31841 +893,820,1,11,20:25:57,30.497,30497 +893,824,2,11,20:26:28,32.243,32243 +893,13,1,12,20:26:59,29.040,29040 +893,16,1,12,20:27:25,29.678,29678 +893,17,1,13,20:28:48,29.031,29031 +893,18,1,13,20:28:57,29.284,29284 +893,807,1,13,20:29:01,29.910,29910 +893,823,1,13,20:29:27,30.161,30161 +893,822,1,13,20:29:30,31.792,31792 +893,4,1,14,20:30:36,29.436,29436 +893,815,1,14,20:30:57,28.709,28709 +893,3,1,15,20:32:27,29.212,29212 +893,154,1,15,20:32:38,29.702,29702 +893,1,1,15,20:32:41,29.032,29032 +893,817,1,15,20:33:06,32.097,32097 +893,813,1,16,20:35:13,29.966,29966 +893,20,1,17,20:36:08,28.787,28787 +893,814,1,20,20:42:28,29.667,29667 +893,824,3,23,20:50:22,29.823,29823 +893,818,2,24,20:50:34,30.714,30714 +893,822,2,24,20:50:54,30.790,30790 +893,820,2,24,20:51:40,31.173,31173 +894,16,1,3,15:09:31,29.829,29829 +894,18,1,4,15:11:11,26.948,26948 +894,13,1,6,15:14:57,22.474,22474 +894,813,1,7,15:16:37,23.470,23470 +894,814,1,7,15:16:40,23.814,23814 +894,821,1,7,15:16:43,23.096,23096 +894,822,1,8,15:18:36,23.912,23912 +894,1,1,9,15:19:55,22.270,22270 +894,4,1,9,15:20:07,22.208,22208 +894,819,1,9,15:20:36,24.320,24320 +894,154,1,10,15:21:39,22.519,22519 +894,3,1,10,15:21:47,23.412,23412 +894,807,1,10,15:21:50,23.654,23654 +894,815,1,10,15:22:03,22.901,22901 +894,823,1,10,15:22:24,17.513,17513 +894,824,1,10,15:22:31,23.097,23097 +894,20,1,11,15:23:22,22.662,22662 +894,8,1,11,15:23:39,22.924,22924 +894,823,2,11,15:24:34,23.987,23987 +894,17,1,12,15:25:27,22.587,22587 +894,818,1,12,15:25:54,24.477,24477 +894,820,1,12,15:26:16,23.761,23761 +894,817,1,18,15:36:21,23.892,23892 +894,18,2,22,15:43:41,25.946,25946 +894,813,2,23,15:45:35,23.642,23642 +894,814,2,23,15:45:42,23.854,23854 +894,818,2,24,15:47:44,23.845,23845 +894,8,2,25,15:48:47,23.236,23236 +894,807,2,26,15:50:32,24.112,24112 +894,3,2,28,15:53:56,42.432,42432 +894,4,2,28,15:54:07,22.807,22807 +894,16,2,28,15:54:36,23.155,23155 +894,822,2,28,15:54:54,24.240,24240 +894,1,2,29,15:55:45,22.251,22251 +894,13,2,29,15:56:20,22.401,22401 +894,17,2,30,15:57:29,22.718,22718 +894,20,2,31,15:58:48,22.935,22935 +894,819,2,30,15:58:50,24.366,24366 +894,154,2,31,15:58:56,22.767,22767 +894,824,2,30,15:59:15,23.814,23814 +894,820,2,30,15:59:21,26.299,26299 +894,823,3,30,15:59:22,24.548,24548 +894,817,2,31,16:00:11,23.194,23194 +894,17,3,31,16:00:12,23.490,23490 +894,821,2,31,16:00:19,23.408,23408 +894,815,2,31,16:00:22,38.893,38893 +894,818,3,38,16:16:31,24.016,24016 +894,16,3,38,16:16:46,1:11.445,71445 +894,16,4,41,16:23:32,18.979,18979 +895,819,1,1,15:05:34,17.935,17935 +895,1,1,1,15:06:11,25.297,25297 +895,818,1,7,15:15:39,25.816,25816 +895,18,1,8,15:17:14,23.462,23462 +895,822,1,8,15:17:18,23.421,23421 +895,16,1,8,15:17:19,23.803,23803 +895,821,1,9,15:18:50,23.887,23887 +895,813,1,9,15:18:58,23.524,23524 +895,807,1,10,15:20:27,23.383,23383 +895,814,1,10,15:20:37,23.476,23476 +895,17,1,11,15:21:54,23.617,23617 +895,13,1,11,15:22:06,22.946,22946 +895,8,1,11,15:22:11,23.313,23313 +895,820,1,11,15:22:39,23.648,23648 +895,154,1,12,15:23:30,23.282,23282 +895,3,1,12,15:23:43,22.812,22812 +895,815,1,12,15:23:48,26.423,26423 +895,4,1,13,15:25:26,22.645,22645 +895,20,1,14,15:26:53,22.916,22916 +895,3,2,16,15:30:40,17.806,17806 +895,819,2,17,15:33:03,24.380,24380 +895,817,1,21,15:39:04,24.608,24608 +895,818,2,21,15:39:24,24.087,24087 +895,18,2,23,15:42:30,26.263,26263 +895,3,3,24,15:44:05,22.771,22771 +895,17,2,25,15:45:06,22.774,22774 +895,814,2,26,15:47:38,23.858,23858 +895,822,2,27,15:49:16,23.483,23483 +895,16,2,27,15:49:23,23.484,23484 +895,13,2,28,15:50:36,22.871,22871 +895,813,2,28,15:51:02,24.202,24202 +895,154,2,29,15:51:38,23.086,23086 +895,807,2,29,15:52:08,23.831,23831 +895,820,2,29,15:53:22,24.373,24373 +895,4,2,30,15:53:46,22.839,22839 +895,821,2,30,15:54:04,23.184,23184 +895,815,2,30,15:54:05,27.707,27707 +895,8,2,31,15:55:30,23.290,23290 +895,817,2,32,15:57:31,17.801,17801 +895,13,3,34,16:00:41,17.822,17822 +895,819,3,35,16:03:32,24.381,24381 +895,20,2,37,16:04:36,22.873,22873 +895,818,3,38,16:07:30,24.876,24876 +895,3,4,39,16:08:49,22.551,22551 +895,18,3,40,16:10:36,23.105,23105 +895,17,3,42,16:12:42,23.094,23094 +895,815,3,42,16:14:05,25.585,25585 +895,817,3,44,16:17:21,24.178,24178 +896,814,1,1,15:05:12,23.662,23662 +896,818,1,1,15:05:14,24.232,24232 +896,819,1,1,15:05:39,29.082,29082 +896,20,1,2,15:06:36,24.000,24000 +896,4,1,2,15:06:48,29.800,29800 +896,807,1,5,15:11:22,24.096,24096 +896,824,1,5,15:11:40,33.937,33937 +896,18,1,6,15:13:04,23.517,23517 +896,3,1,7,15:14:25,23.685,23685 +896,8,1,7,15:14:33,26.989,26989 +896,13,1,8,15:15:56,23.579,23579 +896,1,1,8,15:16:00,23.546,23546 +896,813,1,8,15:16:14,25.530,25530 +896,18,2,12,15:22:48,23.774,23774 +896,154,1,13,15:23:59,23.648,23648 +896,821,1,16,15:28:39,18.423,18423 +896,819,2,16,15:29:58,26.970,26970 +896,821,2,26,15:44:22,25.660,25660 +896,818,2,26,15:44:28,24.128,24128 +896,3,2,27,15:45:31,23.895,23895 +896,17,1,28,15:46:25,23.487,23487 +896,815,1,28,15:46:43,23.541,23541 +896,820,1,29,15:49:37,24.757,24757 +896,13,2,30,15:50:06,23.332,23332 +896,1,2,30,15:50:07,23.574,23574 +896,814,2,30,15:50:21,24.024,24024 +896,4,2,30,15:50:22,23.595,23595 +896,20,2,31,15:51:05,23.568,23568 +896,822,1,31,15:51:52,27.619,27619 +896,17,2,32,15:52:46,23.459,23459 +896,18,3,32,15:53:44,24.754,24754 +896,817,1,33,15:54:38,25.608,25608 +896,815,2,33,15:54:42,24.910,24910 +896,807,2,33,15:54:45,24.834,24834 +896,824,2,33,15:56:05,25.383,25383 +896,4,3,36,15:59:44,24.066,24066 +896,817,2,38,16:02:35,24.471,24471 +896,813,2,38,16:02:44,26.312,26312 +896,16,1,41,16:07:01,23.891,23891 +896,821,3,47,16:16:34,24.415,24415 +896,822,2,49,16:19:37,25.909,25909 +896,807,3,53,16:25:07,29.057,29057 +896,820,2,52,16:25:27,24.445,24445 +896,8,2,58,16:32:33,24.141,24141 +897,18,1,2,17:07:35,27.176,27176 +897,813,1,5,17:12:55,22.886,22886 +897,824,1,5,17:13:09,24.064,24064 +897,815,1,6,17:14:42,21.503,21503 +897,820,1,6,17:15:04,23.490,23490 +897,1,1,7,17:16:23,21.372,21372 +897,817,1,7,17:16:41,22.194,22194 +897,823,1,7,17:16:50,22.834,22834 +897,17,1,8,17:18:09,21.175,21175 +897,154,1,8,17:18:10,21.627,21627 +897,819,1,8,17:18:39,22.498,22498 +897,807,1,9,17:20:04,22.363,22363 +897,3,1,10,17:21:41,21.653,21653 +897,18,2,11,17:24:21,21.516,21516 +897,20,1,14,17:28:39,22.275,22275 +897,4,1,16,17:32:49,21.530,21530 +897,818,1,17,17:34:46,21.930,21930 +897,13,1,18,17:36:23,21.485,21485 +897,821,1,18,17:36:43,22.685,22685 +897,814,1,20,17:40:06,22.270,22270 +897,822,1,24,17:47:40,23.361,23361 +897,813,2,25,17:49:29,23.410,23410 +897,807,2,27,17:53:04,22.863,22863 +897,815,2,27,17:53:06,21.370,21370 +897,16,1,28,17:54:54,22.048,22048 +897,817,2,28,17:55:05,22.946,22946 +897,1,2,29,17:56:37,21.609,21609 +897,821,2,30,17:58:38,22.070,22070 +897,824,2,31,18:01:41,23.576,23576 +897,819,2,32,18:03:05,24.005,24005 +897,17,2,33,18:03:15,21.911,21911 +897,3,2,33,18:03:19,21.633,21633 +897,820,2,32,18:03:37,22.802,22802 +897,823,2,33,18:04:45,22.286,22286 +897,807,3,34,18:05:56,16.147,16147 +897,20,2,37,18:09:50,21.298,21298 +897,154,2,37,18:10:31,22.286,22286 +897,13,2,38,18:12:40,22.315,22315 +897,4,2,44,18:23:20,21.453,21453 +897,822,2,45,18:25:31,26.680,26680 +897,818,2,51,18:36:34,23.608,23608 +898,821,1,1,13:05:59,24.859,24859 +898,820,1,5,13:15:49,18.737,18737 +898,813,1,8,13:21:04,32.794,32794 +898,5,1,17,13:36:46,25.323,25323 +898,18,1,20,13:42:04,24.589,24589 +898,819,1,20,13:42:30,27.568,27568 +898,13,1,21,13:43:48,23.936,23936 +898,824,1,21,13:44:14,26.205,26205 +898,823,1,21,13:44:15,25.268,25268 +898,815,1,22,13:45:19,23.808,23808 +898,814,1,22,13:45:29,24.444,24444 +898,3,1,22,13:45:30,23.806,23806 +898,817,1,22,13:45:31,24.226,24226 +898,822,1,23,13:47:05,25.014,25014 +898,1,1,25,13:50:25,23.904,23904 +898,4,1,26,13:52:15,23.817,23817 +898,20,1,27,13:53:30,24.086,24086 +898,820,2,26,13:53:36,24.293,24293 +898,807,1,27,13:53:54,24.030,24030 +898,818,1,27,13:54:22,24.381,24381 +898,17,1,28,13:55:26,23.537,23537 +898,154,1,29,13:57:05,23.876,23876 +898,5,2,31,14:01:31,36.333,36333 +898,821,2,36,14:10:01,25.027,25027 +898,13,2,38,14:13:40,24.116,24116 +898,814,2,49,14:32:33,24.914,24914 +898,819,2,50,14:35:29,18.692,18692 +899,818,1,10,14:16:58,23.455,23455 +899,817,1,14,14:22:11,22.721,22721 +899,5,1,15,14:23:39,23.019,23019 +899,822,1,17,14:26:13,24.166,24166 +899,16,1,17,14:26:14,23.161,23161 +899,13,1,19,14:28:38,22.342,22342 +899,815,1,19,14:28:47,22.591,22591 +899,18,1,20,14:30:03,22.746,22746 +899,807,1,20,14:30:06,23.887,23887 +899,814,1,20,14:30:15,23.237,23237 +899,4,1,21,14:31:09,22.755,22755 +899,1,1,21,14:31:13,22.655,22655 +899,824,1,21,14:32:02,24.657,24657 +899,3,1,22,14:32:39,23.328,23328 +899,821,1,22,14:33:00,23.857,23857 +899,17,1,23,14:33:42,25.012,25012 +899,813,1,23,14:34:24,23.600,23600 +899,20,1,24,14:34:51,22.510,22510 +899,823,1,24,14:36:01,23.732,23732 +899,819,1,25,14:37:24,24.099,24099 +899,820,1,26,14:38:59,25.060,25060 +899,818,2,28,14:41:19,24.183,24183 +899,13,2,34,14:48:24,17.367,17367 +899,5,2,34,14:49:00,22.646,22646 +899,16,2,37,14:52:49,24.001,24001 +899,822,2,41,14:58:30,23.695,23695 +899,817,2,42,14:59:24,23.340,23340 +899,18,2,43,15:00:19,23.788,23788 +899,13,3,43,15:00:27,22.655,22655 +899,813,2,43,15:00:59,26.734,26734 +899,3,2,44,15:01:40,22.753,22753 +899,815,2,44,15:01:41,22.397,22397 +899,807,2,46,15:04:31,23.237,23237 +899,20,2,47,15:04:55,32.899,32899 +899,17,2,47,15:05:08,26.718,26718 +899,818,3,46,15:05:09,23.451,23451 +899,4,2,47,15:05:13,22.732,22732 +899,1,2,47,15:05:43,24.423,24423 +899,814,2,47,15:06:01,23.330,23330 +899,821,2,47,15:06:09,23.138,23138 +899,823,2,47,15:06:59,27.107,27107 +899,824,2,47,15:07:06,23.403,23403 +899,820,2,48,15:08:47,23.449,23449 +899,1,3,52,15:12:31,17.385,17385 +899,823,3,52,15:13:57,17.339,17339 +899,16,3,54,15:15:17,22.981,22981 +899,820,3,66,15:32:58,23.222,23222 +900,154,1,1,17:09:56,17.255,17255 +900,821,1,1,17:10:12,32.657,32657 +900,815,1,1,17:10:14,25.541,25541 +900,18,1,11,17:26:02,22.411,22411 +900,815,2,11,17:27:03,22.497,22497 +900,3,1,12,17:27:27,24.331,24331 +900,817,1,12,17:27:37,22.994,22994 +900,825,1,12,17:27:45,23.150,23150 +900,807,1,12,17:27:51,22.615,22615 +900,4,1,12,17:27:55,22.887,22887 +900,8,1,12,17:28:02,25.543,25543 +900,818,1,12,17:28:02,23.124,23124 +900,826,1,12,17:28:03,30.514,30514 +900,828,1,23,17:48:18,23.238,23238 +900,820,1,24,17:49:56,24.209,24209 +900,824,1,20,17:54:48,23.821,23821 +900,154,2,28,17:56:08,22.264,22264 +900,813,1,29,17:57:57,22.847,22847 +900,821,2,30,17:59:29,23.797,23797 +900,18,2,32,18:02:01,22.399,22399 +900,815,3,32,18:02:29,22.526,22526 +900,807,2,33,18:03:36,22.933,22933 +900,818,2,33,18:03:39,22.978,22978 +900,4,2,35,18:06:45,21.978,21978 +900,817,2,36,18:08:06,22.427,22427 +900,8,2,36,18:08:30,21.825,21825 +900,826,2,36,18:08:31,23.920,23920 +900,825,2,37,18:09:47,22.273,22273 +900,3,2,38,18:10:59,23.673,23673 +900,820,2,41,18:18:13,23.493,23493 +900,824,2,35,18:19:32,22.656,22656 +900,822,1,10,17:24:46,34.921,34921 +900,16,1,35,18:07:21,24.305,24305 +900,822,2,36,18:08:28,23.117,23117 +901,824,1,1,16:07:01,52.836,52836 +901,818,1,2,16:07:55,45.629,45629 +901,8,1,2,16:08:22,26.399,26399 +901,825,1,9,16:20:38,37.116,37116 +901,826,1,10,16:22:31,25.109,25109 +901,821,1,10,16:22:33,29.420,29420 +901,820,1,10,16:22:44,25.639,25639 +901,4,1,11,16:24:00,24.466,24466 +901,16,1,11,16:24:25,25.998,25998 +901,828,1,11,16:24:33,30.040,30040 +901,817,1,12,16:25:46,24.709,24709 +901,13,1,12,16:26:05,24.637,24637 +901,154,1,12,16:26:14,25.046,25046 +901,20,1,13,16:27:33,24.432,24432 +901,18,1,13,16:27:49,24.841,24841 +901,3,1,14,16:29:15,24.723,24723 +901,822,1,14,16:29:48,25.020,25020 +901,1,1,15,16:30:55,24.604,24604 +901,155,1,15,16:31:53,27.124,27124 +901,807,1,16,16:33:07,25.336,25336 +901,818,2,17,16:36:11,26.598,26598 +901,8,2,18,16:37:53,24.417,24417 +901,826,2,22,16:44:37,27.473,27473 +901,821,2,23,16:46:42,26.325,26325 +901,825,2,24,16:48:18,30.661,30661 +901,16,2,24,16:48:28,25.493,25493 +901,18,2,25,16:49:48,24.524,24524 +901,154,2,25,16:50:09,25.596,25596 +901,828,2,26,16:52:40,26.515,26515 +901,4,2,27,16:53:03,24.222,24222 +901,13,2,27,16:53:28,24.577,24577 +901,820,2,27,16:54:31,29.210,29210 +901,817,2,28,16:54:45,24.775,24775 +901,822,2,29,16:57:09,24.964,24964 +901,20,2,31,17:00:00,24.728,24728 +901,155,2,31,17:01:26,26.505,26505 +901,3,2,32,17:01:43,25.287,25287 +901,1,2,33,17:03:18,25.296,25296 +901,807,2,34,17:05:38,24.887,24887 +901,826,3,34,17:06:44,25.289,25289 +901,8,3,34,17:07:07,24.246,24246 +901,828,3,38,17:15:01,26.030,26030 +901,18,3,39,17:15:13,25.028,25028 +901,825,3,39,17:15:37,24.415,24415 +901,817,3,40,17:16:28,1:49.329,109329 +901,154,3,40,17:17:34,25.735,25735 +901,4,3,42,17:20:04,24.641,24641 +901,820,3,41,17:20:31,27.828,27828 +901,13,3,42,17:20:35,24.526,24526 +901,817,4,42,17:22:17,34.697,34697 +901,822,3,44,17:24:12,24.498,24498 +901,817,5,44,17:26:23,34.480,34480 +901,20,3,49,17:32:08,25.186,25186 +901,3,3,50,17:33:47,24.654,24654 +901,1,3,51,17:35:18,24.484,24484 +902,818,1,1,18:06:44,33.895,33895 +902,16,1,7,18:16:37,25.293,25293 +902,822,1,10,18:21:24,25.040,25040 +902,826,1,10,18:21:32,26.064,26064 +902,824,1,10,18:21:44,25.756,25756 +902,828,1,11,18:23:34,25.367,25367 +902,820,1,11,18:23:35,25.858,25858 +902,4,1,12,18:24:52,25.770,25770 +902,821,1,12,18:25:08,25.543,25543 +902,13,1,13,18:26:30,24.528,24528 +902,8,1,13,18:26:37,25.009,25009 +902,154,1,13,18:26:50,25.192,25192 +902,824,2,13,18:27:52,29.729,29729 +902,825,1,14,18:28:29,24.611,24611 +902,16,2,13,18:29:29,40.747,40747 +902,818,2,14,18:29:48,25.897,25897 +902,807,1,15,18:29:59,24.757,24757 +902,155,1,15,18:30:29,27.124,27124 +902,815,1,16,18:31:38,24.697,24697 +902,20,1,16,18:31:48,24.964,24964 +902,18,1,17,18:33:25,24.476,24476 +902,817,1,18,18:35:12,24.706,24706 +902,1,1,19,18:36:24,24.687,24687 +902,813,1,19,18:37:12,25.395,25395 +902,824,3,18,18:37:15,18.989,18989 +902,3,1,21,18:39:48,24.851,24851 +902,826,2,24,18:45:46,25.340,25340 +902,822,2,25,18:47:07,25.068,25068 +902,825,2,25,18:47:29,24.559,24559 +902,828,2,26,18:49:57,25.819,25819 +902,821,2,27,18:51:10,25.633,25633 +902,13,2,28,18:52:16,25.896,25896 +902,4,2,28,18:52:21,24.576,24576 +902,154,2,28,18:52:44,25.032,25032 +902,820,2,28,18:53:21,27.233,27233 +902,824,4,31,19:00:23,25.866,25866 +902,8,2,33,19:01:01,25.415,25415 +902,815,2,34,19:02:23,24.737,24737 +902,20,2,34,19:02:35,26.186,26186 +902,807,2,35,19:04:06,24.440,24440 +902,18,2,35,19:04:08,25.245,25245 +902,817,2,35,19:04:23,24.816,24816 +902,155,2,35,19:05:19,26.628,26628 +902,154,3,37,19:08:17,25.693,25693 +902,13,3,38,19:09:23,24.575,24575 +902,825,3,38,19:09:48,25.572,25572 +902,813,2,39,19:11:30,26.440,26440 +902,826,3,39,19:11:36,25.345,25345 +902,822,3,40,19:12:44,25.980,25980 +902,1,2,41,19:13:29,25.146,25146 +902,3,2,41,19:13:42,24.907,24907 +902,813,3,40,19:13:51,34.249,34249 +902,820,3,40,19:14:34,25.981,25981 +902,4,3,41,19:14:50,24.493,24493 +902,8,3,41,19:15:09,24.453,24453 +902,824,5,40,19:16:59,25.383,25383 +902,813,4,47,19:27:48,32.874,32874 +903,18,1,7,15:16:33,22.408,22408 +903,154,1,9,15:19:58,23.213,23213 +903,13,1,10,15:21:37,1:18.277,78277 +903,8,1,10,15:21:45,22.994,22994 +903,815,1,10,15:21:51,22.914,22914 +903,828,1,10,15:22:18,23.677,23677 +903,4,1,11,15:23:16,22.776,22776 +903,807,1,11,15:23:24,23.438,23438 +903,155,1,11,15:23:49,24.883,24883 +903,813,1,11,15:23:51,24.010,24010 +903,824,1,11,15:23:56,24.784,24784 +903,20,1,12,15:25:00,22.570,22570 +903,822,1,12,15:25:09,24.780,24780 +903,820,1,12,15:25:48,23.781,23781 +903,3,1,13,15:26:51,23.277,23277 +903,826,1,14,15:28:56,23.521,23521 +903,821,1,14,15:29:04,22.988,22988 +903,817,1,15,15:30:17,23.186,23186 +903,818,1,15,15:30:46,24.119,24119 +903,1,1,17,15:33:31,22.968,22968 +903,825,1,17,15:34:28,23.670,23670 +903,821,2,27,15:52:18,23.252,23252 +903,828,2,27,15:53:08,23.730,23730 +903,18,2,28,15:53:59,22.548,22548 +903,824,2,28,15:54:28,24.320,24320 +903,815,2,30,15:57:11,23.636,23636 +903,155,2,30,15:57:59,25.402,25402 +903,807,2,31,15:58:34,22.764,22764 +903,822,2,31,15:58:35,23.639,23639 +903,8,2,31,15:58:50,23.291,23291 +903,826,2,31,15:59:08,23.628,23628 +903,825,2,31,15:59:19,22.579,22579 +903,13,2,31,15:59:50,23.830,23830 +903,818,2,32,16:00:58,24.417,24417 +903,813,2,32,16:01:12,23.022,23022 +903,4,2,33,16:01:40,22.947,22947 +903,820,2,32,16:01:49,23.878,23878 +903,20,2,34,16:03:40,22.246,22246 +903,3,2,37,16:08:37,23.089,23089 +903,817,2,37,16:08:42,22.498,22498 +903,1,2,38,16:09:59,23.999,23999 +903,821,3,40,16:15:29,22.734,22734 +903,155,3,40,16:15:53,24.722,24722 +903,828,3,42,16:20:02,23.969,23969 +903,820,3,48,16:30:26,23.886,23886 +904,20,1,12,14:22:29,21.974,21974 +904,817,1,14,14:25:18,21.969,21969 +904,154,1,15,14:26:57,22.126,22126 +904,13,1,15,14:27:02,22.890,22890 +904,813,1,15,14:27:21,27.851,27851 +904,4,1,16,14:28:34,21.970,21970 +904,818,1,16,14:28:57,22.976,22976 +904,8,1,17,14:30:07,22.056,22056 +904,807,1,17,14:30:13,22.355,22355 +904,18,1,17,14:30:19,21.810,21810 +904,16,1,17,14:30:29,28.013,28013 +904,820,1,17,14:30:46,24.337,24337 +904,1,1,18,14:31:07,22.951,22951 +904,815,1,18,14:31:48,22.367,22367 +904,826,1,18,14:31:51,22.703,22703 +904,821,1,18,14:32:02,23.063,23063 +904,828,1,18,14:32:30,23.091,23091 +904,825,1,19,14:33:31,21.894,21894 +904,822,1,20,14:34:39,22.824,22824 +904,3,1,21,14:35:43,22.254,22254 +904,824,1,21,14:37:01,22.928,22928 +904,155,1,23,14:40:18,22.789,22789 +904,13,2,28,14:47:33,22.381,22381 +904,820,2,31,14:53:03,23.232,23232 +904,20,2,33,14:55:18,21.599,21599 +904,154,2,34,14:56:49,22.078,22078 +904,4,2,35,14:58:14,22.014,22014 +904,16,2,35,14:58:53,23.378,23378 +904,807,2,36,14:59:56,22.724,22724 +904,18,2,36,15:00:01,24.408,24408 +904,826,2,36,15:00:07,22.841,22841 +904,821,2,36,15:00:25,24.780,24780 +904,815,2,37,15:01:31,22.282,22282 +904,813,2,37,15:01:54,22.024,22024 +904,828,2,40,15:07:44,26.671,26671 +904,825,2,41,15:07:56,21.768,21768 +904,824,2,41,15:08:45,22.568,22568 +904,1,2,43,15:09:35,23.590,23590 +904,8,2,43,15:10:34,22.727,22727 +904,820,3,42,15:10:46,23.586,23586 +904,3,2,45,15:12:42,22.309,22309 +904,817,2,45,15:13:16,21.830,21830 +904,822,2,45,15:13:31,22.701,22701 +904,13,3,46,15:15:37,22.304,22304 +904,20,3,52,15:24:24,21.608,21608 +904,821,3,52,15:25:31,23.025,23025 +904,4,3,53,15:25:53,21.664,21664 +904,826,3,53,15:26:38,22.984,22984 +905,154,1,1,14:04:54,26.312,26312 +905,16,1,1,14:04:55,33.207,33207 +905,20,1,4,14:10:25,1:06.065,66065 +905,154,2,23,14:37:00,25.029,25029 +905,820,1,24,14:38:19,33.074,33074 +905,18,1,25,14:38:59,25.992,25992 +905,821,1,25,14:39:10,25.906,25906 +905,155,1,25,14:39:30,25.421,25421 +905,824,1,25,14:39:30,32.658,32658 +905,3,1,26,14:39:54,24.672,24672 +905,1,1,26,14:40:01,27.509,27509 +905,828,1,25,14:40:02,28.091,28091 +905,8,1,26,14:40:06,25.282,25282 +905,817,1,26,14:40:07,26.584,26584 +905,4,1,26,14:40:12,26.499,26499 +905,825,1,26,14:40:29,28.943,28943 +905,818,1,26,14:40:32,25.444,25444 +905,807,1,26,14:40:36,25.714,25714 +905,822,1,26,14:40:41,25.595,25595 +905,8,2,28,14:44:21,25.684,25684 +905,820,2,27,14:44:22,37.352,37352 +905,818,2,37,14:57:54,19.385,19385 +905,13,1,45,15:08:42,24.264,24264 +905,828,2,51,15:17:37,25.585,25585 +905,155,2,62,15:34:01,25.116,25116 +905,820,3,66,15:40:58,26.137,26137 +905,8,3,73,15:47:37,31.896,31896 +906,821,1,1,14:05:32,24.370,24370 +906,821,2,2,14:07:36,24.768,24768 +906,154,1,11,14:23:03,23.943,23943 +906,817,1,13,14:25:36,23.606,23606 +906,822,1,14,14:26:56,23.448,23448 +906,18,1,14,14:27:05,23.493,23493 +906,20,1,15,14:28:14,23.904,23904 +906,13,1,15,14:28:20,27.949,27949 +906,818,1,15,14:28:22,24.433,24433 +906,825,1,15,14:28:30,23.479,23479 +906,16,1,15,14:28:33,23.703,23703 +906,4,1,16,14:29:44,23.932,23932 +906,8,1,17,14:31:08,23.925,23925 +906,3,1,18,14:32:06,23.882,23882 +906,1,1,19,14:33:29,24.417,24417 +906,826,1,29,14:47:47,25.235,25235 +906,821,3,32,14:52:08,24.403,24403 +906,815,1,34,14:54:04,23.907,23907 +906,822,2,35,14:55:26,24.491,24491 +906,20,2,36,14:56:46,23.340,23340 +906,817,2,37,14:58:06,23.274,23274 +906,18,2,38,14:59:46,25.050,25050 +906,818,2,39,15:01:02,23.975,23975 +906,8,2,39,15:01:06,24.221,24221 +906,16,2,40,15:02:56,24.068,24068 +906,807,1,41,15:03:27,23.902,23902 +906,3,2,44,15:07:09,25.102,25102 +906,4,2,44,15:07:33,23.790,23790 +906,1,2,45,15:08:31,23.554,23554 +906,825,2,45,15:09:13,23.907,23907 +906,154,2,46,15:10:53,23.856,23856 +906,826,2,46,15:10:54,25.698,25698 +906,13,2,48,15:12:49,24.012,24012 +907,154,1,3,14:07:00,21.884,21884 +907,818,1,8,14:13:14,22.232,22232 +907,807,1,9,14:14:26,21.920,21920 +907,825,1,10,14:15:40,21.670,21670 +907,826,1,10,14:15:42,21.906,21906 +907,817,1,10,14:15:42,21.467,21467 +907,3,1,11,14:16:41,21.474,21474 +907,16,1,11,14:17:03,22.960,22960 +907,821,1,12,14:18:21,55.222,55222 +907,1,1,13,14:19:10,22.226,22226 +907,13,1,14,14:20:24,21.896,21896 +907,4,1,14,14:20:35,21.234,21234 +907,155,1,14,14:21:00,22.480,22480 +907,822,1,15,14:21:40,21.133,21133 +907,8,1,15,14:22:00,21.914,21914 +907,20,1,20,14:29:37,21.381,21381 +907,821,2,21,14:30:35,29.067,29067 +907,813,1,26,14:36:02,23.343,23343 +907,18,1,27,14:37:01,21.505,21505 +907,154,2,27,14:37:37,24.212,24212 +907,828,1,28,14:39:03,23.177,23177 +907,815,1,29,14:39:23,23.770,23770 +907,20,2,28,14:39:56,29.844,29844 +907,820,1,37,14:50:48,22.977,22977 +907,1,2,39,14:51:40,22.555,22555 +907,807,2,39,14:52:03,22.246,22246 +907,818,2,39,14:52:32,22.374,22374 +907,3,2,40,14:52:50,21.664,21664 +907,825,2,40,14:53:16,21.882,21882 +907,822,2,41,14:54:08,22.208,22208 +907,824,1,40,14:54:11,24.452,24452 +907,13,2,43,14:56:41,22.096,22096 +907,817,2,43,14:57:02,21.398,21398 +907,16,2,43,14:57:38,22.449,22449 +907,828,2,43,14:58:18,25.178,25178 +907,8,2,44,14:58:20,21.618,21618 +907,821,3,45,15:01:17,22.530,22530 +907,4,2,47,15:01:38,21.276,21276 +907,815,2,55,15:11:39,21.960,21960 +907,813,2,56,15:13:32,22.612,22612 +907,18,2,58,15:15:32,21.242,21242 +908,820,2,2,14:09:26,23.154,23154 +908,20,1,10,14:20:59,28.558,28558 +908,826,1,14,14:27:58,28.700,28700 +908,817,1,15,14:29:30,28.483,28483 +908,3,1,18,14:33:49,28.329,28329 +908,155,1,18,14:35:28,29.507,29507 +908,16,1,23,14:43:21,29.956,29956 +908,1,1,24,14:43:45,29.679,29679 +908,4,1,25,14:46:13,34.410,34410 +908,815,1,26,14:48:38,29.599,29599 +908,813,1,26,14:48:44,28.831,28831 +908,825,1,27,14:49:39,28.745,28745 +908,818,1,27,14:50:07,30.218,30218 +908,18,1,28,14:51:14,28.645,28645 +908,807,1,29,14:53:24,29.579,29579 +908,824,1,29,14:54:00,30.353,30353 +908,155,2,29,14:54:55,29.540,29540 +908,154,1,30,14:55:23,29.710,29710 +908,822,1,31,14:55:58,29.104,29104 +908,820,3,29,14:56:02,29.737,29737 +908,20,2,33,14:59:34,28.787,28787 +908,826,2,35,15:03:28,28.575,28575 +908,1,2,41,15:12:01,29.291,29291 +909,825,1,1,14:05:24,25.859,25859 +909,828,1,3,14:08:42,27.495,27495 +909,826,1,9,14:17:06,20.313,20313 +909,4,1,12,14:20:59,19.174,19174 +909,18,1,13,14:22:30,22.604,22604 +909,817,1,13,14:22:38,19.050,19050 +909,818,1,13,14:22:39,20.274,20274 +909,20,1,14,14:23:46,19.607,19607 +909,807,1,14,14:23:52,19.564,19564 +909,815,1,14,14:24:04,21.802,21802 +909,821,1,14,14:24:08,21.002,21002 +909,3,1,15,14:24:57,20.055,20055 +909,822,1,15,14:25:07,20.115,20115 +909,155,1,15,14:25:55,20.121,20121 +909,16,1,16,14:26:55,20.031,20031 +909,820,1,16,14:27:18,23.883,23883 +909,813,1,18,14:29:48,19.099,19099 +909,828,2,18,14:30:40,19.890,19890 +909,8,1,20,14:32:31,19.737,19737 +909,824,1,20,14:32:49,20.031,20031 +909,154,1,24,14:38:27,18.928,18928 +909,1,1,26,14:40:40,19.710,19710 +909,825,2,29,14:45:25,19.135,19135 +909,18,2,31,14:47:51,18.916,18916 +909,821,2,31,14:48:20,23.305,23305 +909,16,2,32,14:49:41,19.638,19638 +909,826,2,32,14:49:52,20.251,20251 +909,155,2,32,14:50:24,20.092,20092 +909,820,2,32,14:50:27,20.920,20920 +909,4,2,33,14:50:28,19.032,19032 +909,20,2,34,14:51:49,19.061,19061 +909,8,2,34,14:52:22,19.867,19867 +909,815,2,34,14:52:29,19.843,19843 +909,817,2,35,14:53:27,19.358,19358 +909,818,2,37,14:56:42,26.711,26711 +909,813,2,38,14:58:08,19.126,19126 +909,807,2,39,14:59:03,19.514,19514 +909,822,2,40,14:59:58,20.206,20206 +909,3,2,41,15:01:08,20.257,20257 +909,1,2,42,15:02:54,19.918,19918 +909,828,3,41,15:03:48,20.423,20423 +909,20,3,45,15:07:09,18.879,18879 +909,824,2,45,15:08:29,20.575,20575 +909,817,3,46,15:08:49,18.868,18868 +909,16,3,47,15:10:49,20.424,20424 +909,820,3,47,15:11:56,20.632,20632 +909,155,3,48,15:13:19,20.358,20358 +909,818,3,49,15:13:46,20.431,20431 +909,1,3,50,15:13:58,19.868,19868 +909,821,3,50,15:15:08,19.779,19779 +909,815,3,52,15:17:42,19.932,19932 +909,825,3,53,15:18:59,19.427,19427 +909,8,3,53,15:19:04,19.740,19740 +909,4,3,55,15:21:01,19.308,19308 +909,18,3,61,15:29:41,19.221,19221 +910,18,1,8,14:17:29,26.737,26737 +910,817,1,8,14:17:30,22.205,22205 +910,807,1,8,14:17:33,24.040,24040 +910,13,1,8,14:17:38,22.851,22851 +910,818,1,8,14:17:39,23.809,23809 +910,815,1,8,14:17:44,25.535,25535 +910,821,1,8,14:17:46,24.050,24050 +910,16,1,8,14:17:48,31.956,31956 +910,1,1,8,14:17:49,23.800,23800 +910,8,1,8,14:17:51,23.214,23214 +910,154,1,8,14:17:53,23.979,23979 +910,826,1,8,14:17:58,23.423,23423 +910,155,1,8,14:18:04,34.086,34086 +910,820,1,8,14:18:13,24.625,24625 +910,813,1,8,14:18:14,22.376,22376 +910,3,1,9,14:19:36,22.827,22827 +910,822,1,9,14:19:37,25.497,25497 +910,20,1,9,14:19:37,22.170,22170 +910,4,1,9,14:19:38,22.253,22253 +910,824,1,9,14:19:52,22.892,22892 +910,18,2,15,14:32:05,22.807,22807 +910,825,1,15,14:32:11,23.546,23546 +910,813,2,17,14:35:49,32.608,32608 +910,824,2,17,14:35:56,25.504,25504 +910,817,2,23,14:44:24,23.741,23741 +910,13,2,23,14:44:30,22.111,22111 +910,822,2,23,14:44:48,22.518,22518 +910,826,2,30,14:57:13,22.202,22202 +910,3,2,32,15:00:00,23.864,23864 +910,20,2,33,15:01:35,21.608,21608 +910,818,2,34,15:03:00,23.123,23123 +910,18,3,37,15:07:38,22.211,22211 +910,4,2,38,15:08:47,21.634,21634 +910,1,2,39,15:10:18,23.364,23364 +910,16,2,39,15:10:43,22.500,22500 +910,825,2,39,15:10:44,21.812,21812 +910,8,2,41,15:13:31,22.154,22154 +910,824,3,42,15:15:42,24.226,24226 +910,813,3,43,15:16:53,21.818,21818 +910,13,3,45,15:19:26,22.278,22278 +910,820,2,45,15:20:20,23.232,23232 +910,817,3,54,15:32:30,22.273,22273 +910,3,3,56,15:35:44,22.001,22001 +910,822,3,59,15:40:29,22.589,22589 +911,154,1,1,14:06:17,29.256,29256 +911,824,1,1,14:06:49,25.362,25362 +911,1,1,2,14:08:41,25.580,25580 +911,3,1,8,14:19:40,29.997,29997 +911,8,1,8,14:19:44,22.858,22858 +911,815,1,9,14:21:49,24.104,24104 +911,13,1,9,14:21:55,23.945,23945 +911,20,1,10,14:23:35,22.800,22800 +911,826,1,10,14:23:49,24.082,24082 +911,807,1,10,14:23:52,23.823,23823 +911,817,1,11,14:25:27,22.913,22913 +911,825,1,11,14:25:37,23.115,23115 +911,16,1,11,14:25:53,23.755,23755 +911,828,1,11,14:26:12,24.083,24083 +911,820,1,11,14:26:13,23.734,23734 +911,822,1,12,14:27:28,22.769,22769 +911,4,1,12,14:27:29,28.920,28920 +911,18,1,13,14:29:34,22.800,22800 +911,154,2,13,14:30:15,22.838,22838 +911,821,1,14,14:31:51,23.259,23259 +911,818,1,15,14:33:42,23.571,23571 +911,1,2,17,14:38:06,23.066,23066 +911,3,2,19,14:41:14,22.936,22936 +911,8,2,21,14:44:58,22.819,22819 +911,13,2,21,14:45:39,24.083,24083 +911,16,2,21,14:45:40,23.779,23779 +911,20,2,22,14:46:57,22.731,22731 +911,815,2,22,14:47:17,22.977,22977 +911,825,2,23,14:49:03,22.414,22414 +911,824,2,23,14:50:34,23.918,23918 +911,826,2,24,14:51:10,24.436,24436 +911,828,2,24,14:52:11,24.213,24213 +911,4,2,25,14:52:56,22.974,22974 +911,817,2,27,14:56:18,22.675,22675 +911,154,3,27,14:57:40,24.569,24569 +911,822,2,28,14:58:29,23.176,23176 +911,18,2,29,15:00:43,22.588,22588 +911,818,2,29,15:01:07,23.202,23202 +911,820,2,29,15:02:05,24.873,24873 +911,807,2,30,15:02:51,23.841,23841 +911,821,2,30,15:03:10,22.898,22898 +911,1,3,31,15:05:18,24.757,24757 +911,3,3,34,15:09:54,23.392,23392 +911,20,3,34,15:10:16,23.190,23190 +911,16,3,34,15:10:53,23.732,23732 +911,13,3,35,15:12:42,23.224,23224 +912,821,1,9,14:17:44,26.376,26376 +912,20,1,18,14:31:00,25.176,25176 +912,815,1,19,14:32:34,24.938,24938 +912,807,1,19,14:32:44,25.547,25547 +912,8,1,20,14:34:06,24.547,24547 +912,154,1,20,14:34:42,25.098,25098 +912,825,1,21,14:35:33,24.214,24214 +912,4,1,21,14:35:34,24.913,24913 +912,813,1,21,14:35:52,24.223,24223 +912,18,1,22,14:37:04,24.669,24669 +912,155,1,22,14:37:42,25.277,25277 +912,13,1,23,14:38:19,24.323,24323 +912,3,1,24,14:39:36,24.583,24583 +912,822,1,24,14:40:01,24.991,24991 +912,818,1,24,14:40:20,25.046,25046 +912,16,1,24,14:40:40,26.864,26864 +912,1,1,25,14:41:07,24.453,24453 +912,817,1,26,14:43:11,24.388,24388 +912,824,1,27,14:45:35,26.641,26641 +912,826,1,30,14:49:25,24.651,24651 +912,828,1,30,14:50:45,28.685,28685 +912,821,2,36,14:59:03,25.693,25693 +912,821,3,49,15:19:29,26.849,26849 +913,818,2,24,20:50:42,35.309,35309 +913,16,2,24,20:51:16,29.748,29748 +913,20,2,25,20:52:01,28.733,28733 +913,8,2,25,20:52:18,29.164,29164 +913,807,2,25,20:52:46,29.362,29362 +913,1,2,26,20:53:42,31.040,31040 +913,825,2,26,20:54:35,28.841,28841 +913,817,2,27,20:55:55,29.113,29113 +913,815,2,29,21:00:56,29.502,29502 +913,154,3,30,21:02:56,29.761,29761 +913,813,3,30,21:03:14,29.363,29363 +913,815,3,30,21:03:37,35.289,35289 +913,824,2,30,21:03:38,29.885,29885 +913,4,3,31,21:04:03,28.991,28991 +913,828,2,30,21:04:09,30.364,30364 +913,18,2,31,21:04:39,28.627,28627 +913,8,3,31,21:04:42,30.194,30194 +913,807,3,31,21:05:18,30.415,30415 +913,16,3,31,21:06:15,30.672,30672 +913,813,4,31,21:06:18,29.655,29655 +913,820,3,41,21:28:56,29.877,29877 +913,826,3,43,21:32:14,31.092,31092 +913,818,3,44,21:34:02,30.111,30111 +913,815,4,44,21:34:11,29.339,29339 +913,824,3,45,21:36:16,29.752,29752 +913,825,3,46,21:37:54,28.706,28706 +913,1,3,52,21:48:32,29.284,29284 +913,16,1,8,20:19:52,29.887,29887 +913,807,1,9,20:21:39,29.987,29987 +913,13,1,10,20:23:21,29.578,29578 +913,826,1,10,20:23:35,30.089,30089 +913,154,1,10,20:23:40,29.322,29322 +913,8,1,11,20:25:15,29.702,29702 +913,822,1,11,20:25:21,30.340,30340 +913,818,1,11,20:25:26,29.806,29806 +913,813,1,11,20:25:40,29.960,29960 +913,20,1,12,20:26:56,30.147,30147 +913,4,1,12,20:27:01,28.912,28912 +913,817,1,12,20:27:04,29.761,29761 +913,828,1,12,20:28:03,30.144,30144 +913,1,1,13,20:28:41,29.422,29422 +913,825,1,13,20:29:15,28.684,28684 +913,18,1,14,20:31:07,28.641,28641 +913,815,1,15,20:33:27,29.979,29979 +913,821,1,15,20:33:38,33.679,33679 +913,824,1,15,20:33:44,30.413,30413 +913,820,1,16,20:36:06,30.751,30751 +913,820,2,18,20:40:34,37.975,37975 +913,13,2,22,20:46:35,29.006,29006 +913,154,2,22,20:47:09,29.040,29040 +913,822,2,23,20:48:37,28.880,28880 +913,826,2,23,20:49:04,30.188,30188 +913,813,2,23,20:49:20,29.036,29036 +913,4,2,24,20:50:06,28.810,28810 +914,3,1,2,15:06:10,18:56.516,1136516 +914,1,1,2,15:06:11,18:57.295,1137295 +914,822,1,2,15:06:13,18:56.994,1136994 +914,13,1,2,15:06:15,18:56.594,1136594 +914,4,1,2,15:06:17,18:57.051,1137051 +914,817,1,2,15:06:20,18:55.520,1135520 +914,825,1,2,15:06:21,18:55.891,1135891 +914,18,1,2,15:06:23,18:56.054,1136054 +914,20,1,2,15:06:26,18:54.978,1134978 +914,8,1,2,15:06:28,18:55.276,1135276 +914,815,1,2,15:06:30,18:55.712,1135712 +914,826,1,2,15:06:33,18:54.529,1134529 +914,807,1,2,15:06:35,18:56.562,1136562 +914,16,1,2,15:06:37,18:55.797,1135797 +914,821,1,2,15:06:39,18:54.553,1134553 +914,154,1,2,15:06:42,18:53.680,1133680 +914,824,1,2,15:06:44,18:53.708,1133708 +914,155,1,2,15:06:47,18:53.381,1133381 +914,818,1,2,15:06:50,18:56.557,1136557 +914,820,1,2,15:06:52,18:55.937,1135937 +914,813,1,2,15:07:03,18:47.145,1127145 +914,828,1,2,15:07:18,18:33.851,1113851 +914,18,2,9,15:44:19,24.532,24532 +914,813,2,9,15:44:28,25.460,25460 +914,822,2,11,15:48:14,24.465,24465 +914,817,2,11,15:48:16,24.184,24184 +914,825,2,11,15:48:17,24.550,24550 +914,8,2,11,15:48:20,25.191,25191 +914,815,2,11,15:48:20,24.971,24971 +914,826,2,11,15:48:22,24.567,24567 +914,821,2,11,15:48:25,24.873,24873 +914,154,2,11,15:48:26,24.011,24011 +914,155,2,11,15:48:28,28.656,28656 +914,818,2,11,15:48:29,25.451,25451 +914,828,2,11,15:48:34,31.187,31187 +914,820,2,11,15:48:36,25.879,25879 +914,13,2,12,15:50:12,24.374,24374 +914,20,2,12,15:50:13,23.764,23764 +914,807,2,12,15:50:17,24.696,24696 +914,16,2,12,15:50:21,25.136,25136 +914,3,2,13,15:51:49,23.696,23696 +914,824,2,13,15:52:24,25.116,25116 +914,1,2,14,15:53:43,23.891,23891 +914,825,3,15,15:56:34,33.215,33215 +914,818,3,19,16:04:37,24.353,24353 +914,154,3,21,16:08:25,23.656,23656 +914,16,3,22,16:10:19,24.407,24407 +914,813,3,22,16:10:28,24.184,24184 +914,8,3,23,16:12:06,32.466,32466 +914,826,3,23,16:12:08,24.222,24222 +914,820,3,23,16:12:57,25.278,25278 +914,824,3,24,16:14:29,24.910,24910 +914,815,3,25,16:16:02,24.622,24622 +914,828,3,25,16:16:32,25.977,25977 +914,807,3,26,16:17:49,23.873,23873 +914,155,3,26,16:18:42,25.635,25635 +914,20,3,29,16:22:58,23.443,23443 +914,18,3,31,16:26:40,28.547,28547 +914,16,4,32,16:30:14,24.314,24314 +914,3,3,33,16:30:17,24.862,24862 +914,825,4,33,16:32:03,23.701,23701 +914,821,3,34,16:33:51,26.943,26943 +914,8,4,34,16:33:52,24.173,24173 +914,154,4,34,16:33:58,23.745,23745 +914,1,3,35,16:34:00,23.677,23677 +914,817,3,36,16:36:14,25.607,25607 +914,13,3,37,16:39:03,24.930,24930 +914,822,3,38,16:40:55,25.052,25052 +914,155,4,38,16:42:35,25.576,25576 +914,826,4,39,16:43:18,26.554,26554 +914,828,4,39,16:44:06,25.655,25655 +914,155,5,39,16:45:03,24.907,24907 +914,813,4,40,16:45:34,25.981,25981 +914,825,5,40,16:45:43,24.361,24361 +914,18,4,42,16:48:03,24.757,24757 +914,807,4,43,16:51:01,24.792,24792 +914,815,4,43,16:51:21,25.313,25313 +914,8,5,43,16:51:48,24.768,24768 +914,154,5,43,16:52:21,23.785,23785 +915,3,1,1,15:05:38,33.820,33820 +915,13,1,1,15:05:45,29.912,29912 +915,820,1,4,15:11:25,31.374,31374 +915,817,1,11,15:23:27,30.006,30006 +915,16,1,12,15:25:38,30.733,30733 +915,826,1,20,15:39:18,31.584,31584 +915,154,1,20,15:39:40,30.037,30037 +915,813,1,21,15:41:54,30.180,30180 +915,18,1,22,15:42:24,29.994,29994 +915,818,1,23,15:44:29,30.272,30272 +915,807,1,24,15:46:32,30.096,30096 +915,4,1,25,15:47:40,35.112,35112 +915,815,1,25,15:48:06,29.876,29876 +915,822,1,26,15:49:13,30.363,30363 +915,825,1,26,15:49:27,29.736,29736 +915,8,1,26,15:49:44,30.097,30097 +915,1,1,27,15:50:40,30.503,30503 +915,13,2,27,15:51:39,30.278,30278 +915,828,1,27,15:52:14,31.020,31020 +915,20,1,30,15:56:37,30.355,30355 +915,826,2,37,16:09:35,30.321,30321 +915,821,1,39,16:12:57,30.303,30303 +915,828,2,43,16:21:18,30.760,30760 +916,825,1,1,14:05:26,26.881,26881 +916,807,1,1,14:05:32,33.427,33427 +916,18,1,1,14:05:32,26.806,26806 +916,821,1,1,14:05:34,25.007,25007 +916,20,1,1,14:05:37,24.226,24226 +916,20,2,2,14:08:25,23.909,23909 +916,13,1,14,14:30:44,24.488,24488 +916,817,1,14,14:30:46,24.040,24040 +916,3,1,15,14:32:19,24.433,24433 +916,822,1,15,14:32:30,24.151,24151 +916,813,1,15,14:32:45,29.734,29734 +916,818,1,15,14:32:46,30.158,30158 +916,1,1,16,14:34:07,24.368,24368 +916,4,1,16,14:34:26,24.601,24601 +916,154,1,16,14:34:33,24.688,24688 +916,8,1,17,14:36:16,24.131,24131 +916,821,2,20,14:42:01,31.198,31198 +916,826,1,21,14:43:32,24.995,24995 +916,20,3,26,14:52:33,23.799,23799 +916,825,2,27,14:54:14,24.497,24497 +916,18,2,28,14:56:05,23.546,23546 +916,154,2,29,14:57:45,23.802,23802 +916,818,2,29,14:57:50,24.553,24553 +916,822,2,30,14:58:59,24.283,24283 +916,817,2,31,15:00:38,24.356,24356 +916,13,2,32,15:02:21,25.456,25456 +916,1,2,33,15:03:57,24.244,24244 +916,3,2,34,15:05:43,24.513,24513 +916,813,2,35,15:08:22,24.468,24468 +916,821,3,40,15:17:42,24.726,24726 +916,826,2,41,15:18:59,24.189,24189 +916,8,2,42,15:20:41,23.872,23872 +916,4,2,43,15:22:10,24.133,24133 +916,20,4,48,15:31:17,23.948,23948 +916,826,3,51,15:36:52,26.541,26541 +916,8,3,52,15:38:29,24.226,24226 +917,813,1,4,14:08:39,23.753,23753 +917,13,1,5,14:09:42,23.220,23220 +917,815,1,5,14:09:55,23.467,23467 +917,822,1,6,14:11:00,23.294,23294 +917,18,1,6,14:11:00,23.018,23018 +917,20,1,6,14:11:07,23.808,23808 +917,3,1,7,14:12:10,23.730,23730 +917,825,1,7,14:12:21,23.061,23061 +917,4,1,7,14:12:23,23.278,23278 +917,817,1,7,14:12:24,23.141,23141 +917,1,1,8,14:13:27,23.351,23351 +917,821,1,8,14:13:43,23.661,23661 +917,8,1,8,14:13:44,23.427,23427 +917,818,1,9,14:15:04,23.782,23782 +917,807,1,16,14:24:01,23.554,23554 +917,826,1,18,14:26:39,25.001,25001 +917,16,1,18,14:26:52,29.465,29465 +917,20,2,24,14:34:28,23.195,23195 +917,154,1,24,14:34:30,25.591,25591 +917,13,2,25,14:35:32,30.084,30084 +917,815,2,25,14:35:57,22.997,22997 +917,3,2,26,14:36:33,23.346,23346 +917,822,2,26,14:36:50,35.284,35284 +917,825,2,26,14:36:58,24.190,24190 +917,18,2,27,14:38:10,22.620,22620 +917,817,2,27,14:38:18,22.871,22871 +917,821,2,27,14:38:26,24.267,24267 +917,818,2,27,14:38:30,24.408,24408 +917,813,2,27,14:38:36,22.865,22865 +917,1,2,28,14:39:09,24.224,24224 +917,4,2,28,14:39:32,23.134,23134 +917,8,2,35,14:48:30,27.934,27934 +917,807,2,36,14:49:47,23.323,23323 +917,826,2,38,14:52:30,24.385,24385 +917,16,2,39,14:54:06,24.302,24302 +917,154,2,40,14:55:19,23.023,23023 +917,822,3,42,14:57:48,26.463,26463 +917,813,3,45,15:01:47,23.090,23090 +917,818,3,46,15:03:02,24.002,24002 +917,825,3,47,15:03:59,24.131,24131 +917,815,3,47,15:04:19,30.067,30067 +917,20,3,48,15:05:05,22.746,22746 +917,821,3,48,15:05:32,23.418,23418 +917,3,3,50,15:06:59,23.240,23240 +917,16,3,49,15:07:08,24.853,24853 +917,13,3,50,15:07:25,26.918,26918 +917,18,3,50,15:07:33,23.383,23383 +917,1,3,51,15:08:16,22.874,22874 +917,4,3,52,15:10:12,23.077,23077 +917,826,3,59,15:19:23,24.726,24726 +917,154,3,59,15:19:41,23.197,23197 +917,807,3,60,15:20:21,23.411,23411 +918,154,1,1,17:05:39,16.120,16120 +918,4,1,5,17:12:48,21.619,21619 +918,16,1,5,17:13:03,22.491,22491 +918,18,1,6,17:14:36,22.627,22627 +918,826,1,6,17:14:38,24.169,24169 +918,8,1,6,17:14:41,21.546,21546 +918,821,1,7,17:16:39,23.128,23128 +918,813,1,7,17:16:42,21.998,21998 +918,154,2,8,17:18:40,21.699,21699 +918,1,1,10,17:21:35,21.885,21885 +918,822,1,10,17:21:52,21.661,21661 +918,3,1,11,17:23:26,21.741,21741 +918,13,1,13,17:27:05,22.054,22054 +918,818,1,13,17:27:37,22.919,22919 +918,815,1,14,17:29:24,22.031,22031 +918,829,1,14,17:30:04,24.144,24144 +918,807,1,15,17:31:09,27.445,27445 +918,155,1,15,17:31:40,24.421,24421 +918,825,1,21,17:42:16,22.087,22087 +918,20,1,21,17:42:18,23.094,23094 +918,154,3,21,17:42:47,21.574,21574 +918,16,2,22,17:44:35,22.277,22277 +918,8,2,26,17:51:27,22.206,22206 +918,817,1,27,17:52:58,21.747,21747 +918,4,2,27,17:53:14,22.068,22068 +918,18,2,28,17:55:03,22.042,22042 +918,821,2,28,17:55:32,23.270,23270 +918,825,2,29,17:57:15,21.623,21623 +918,818,2,30,17:58:48,22.761,22761 +918,1,2,31,17:59:40,21.887,21887 +918,3,2,34,18:05:35,24.083,24083 +918,822,2,35,18:07:17,22.015,22015 +918,155,2,36,18:10:43,22.426,22426 +918,807,2,37,18:11:24,21.642,21642 +918,16,3,37,18:12:07,22.227,22227 +918,829,2,37,18:13:03,23.545,23545 +918,815,2,41,18:18:37,22.325,22325 +918,13,2,43,18:21:15,22.040,22040 +918,818,3,44,18:24:19,22.348,22348 +918,20,2,46,18:27:33,21.611,21611 +918,817,2,47,18:28:55,21.582,21582 +926,828,1,1,16:05:59,22.681,22681 +926,8,1,16,16:31:07,27.465,27465 +926,13,1,21,16:38:38,22.062,22062 +926,807,1,21,16:39:11,22.137,22137 +926,817,1,23,16:42:09,22.535,22535 +926,20,1,24,16:43:16,22.694,22694 +926,832,1,24,16:43:48,55.789,55789 +926,1,1,25,16:44:32,22.295,22295 +926,831,1,25,16:45:12,22.933,22933 +926,3,1,26,16:46:11,22.105,22105 +926,828,2,26,16:47:15,23.254,23254 +926,18,1,27,16:49:15,23.353,23353 +926,830,1,32,16:56:30,23.532,23532 +926,815,1,38,17:06:52,26.009,26009 +926,8,2,40,17:08:30,22.405,22405 +926,828,3,43,17:14:28,22.353,22353 +926,807,2,44,17:15:43,21.612,21612 +927,813,1,1,15:06:15,37.289,37289 +927,831,1,2,15:07:27,33.918,33918 +927,8,1,2,15:08:04,27.285,27285 +927,1,1,4,15:11:07,26.094,26094 +927,3,1,4,15:11:11,33.689,33689 +927,817,1,4,15:11:13,26.714,26714 +927,13,1,4,15:11:16,25.831,25831 +927,826,1,4,15:11:17,30.463,30463 +927,830,1,4,15:11:22,29.516,29516 +927,822,1,4,15:11:24,30.154,30154 +927,4,1,4,15:11:32,25.222,25222 +927,18,1,4,15:11:38,33.027,33027 +927,833,1,5,15:14:03,27.540,27540 +927,832,1,14,15:30:50,25.126,25126 +927,8,2,14,15:30:53,24.744,24744 +927,807,1,15,15:32:38,25.826,25826 +927,154,1,15,15:32:40,24.377,24377 +927,20,1,17,15:35:47,23.996,23996 +927,815,1,17,15:36:31,25.268,25268 +927,817,2,18,15:38:11,25.604,25604 +927,813,2,18,15:38:27,37.394,37394 +927,830,2,20,15:41:45,25.655,25655 +927,831,2,20,15:42:00,25.741,25741 +927,826,2,21,15:43:36,24.781,24781 +927,18,2,21,15:43:48,25.581,25581 +927,833,2,22,15:46:29,27.004,27004 +927,1,2,24,15:48:25,24.595,24595 +927,13,2,24,15:48:49,24.788,24788 +927,822,2,25,15:50:42,24.432,24432 +927,3,2,26,15:52:07,24.574,24574 +927,154,2,26,15:52:37,24.621,24621 +927,831,3,30,16:00:16,25.331,25331 +927,807,2,31,16:02:02,25.047,25047 +927,832,2,32,16:03:31,25.165,25165 +927,813,3,33,16:05:48,24.276,24276 +927,8,3,34,16:06:41,24.653,24653 +927,817,3,34,16:07:16,25.393,25393 +927,154,3,34,16:07:29,26.014,26014 +927,815,2,35,16:09:15,35.776,35776 +927,18,3,35,16:09:16,25.846,25846 +927,20,2,37,16:11:15,25.092,25092 +927,1,3,38,16:13:14,24.179,24179 +927,13,3,38,16:13:54,26.971,26971 +927,826,3,39,16:16:13,26.149,26149 +927,822,3,40,16:17:30,25.002,25002 +927,830,3,40,16:17:48,24.768,24768 +927,3,3,41,16:18:40,24.336,24336 +927,831,4,43,16:23:49,25.204,25204 +927,833,3,42,16:24:30,29.202,29202 +927,807,3,44,16:25:34,35.351,35351 +928,831,1,10,14:21:26,23.409,23409 +928,813,1,11,14:23:09,22.470,22470 +928,815,1,11,14:23:19,22.829,22829 +928,154,1,12,14:24:52,23.421,23421 +928,830,1,12,14:24:59,24.256,24256 +928,4,1,12,14:25:14,23.238,23238 +928,20,1,13,14:26:23,22.488,22488 +928,13,1,13,14:26:33,23.145,23145 +928,1,1,14,14:28:00,22.645,22645 +928,822,1,14,14:28:20,23.084,23084 +928,828,1,14,14:28:36,23.846,23846 +928,817,1,14,14:28:38,22.635,22635 +928,18,1,14,14:28:51,23.936,23936 +928,3,1,15,14:29:48,22.483,22483 +928,8,1,15,14:29:55,22.818,22818 +928,829,1,16,14:32:55,24.132,24132 +928,833,1,17,14:34:51,25.938,25938 +928,832,1,19,14:37:55,23.795,23795 +928,815,2,26,14:50:03,23.338,23338 +928,20,2,30,14:56:09,22.444,22444 +928,828,2,30,14:57:12,24.589,24589 +928,3,2,31,14:57:50,22.829,22829 +928,831,2,31,14:58:53,23.732,23732 +928,154,2,32,15:00:30,23.605,23605 +928,830,2,32,15:00:35,23.258,23258 +928,18,2,32,15:00:57,23.273,23273 +928,1,2,33,15:01:11,22.235,22235 +928,813,2,33,15:02:42,22.899,22899 +928,8,2,34,15:03:09,22.453,22453 +928,13,2,34,15:03:37,23.317,23317 +928,822,2,35,15:05:28,23.582,23582 +928,4,2,35,15:06:28,23.345,23345 +928,817,2,36,15:07:45,22.897,22897 +928,829,2,38,15:13:29,24.054,24054 +928,832,2,39,15:14:00,23.424,23424 +928,815,3,41,15:16:42,23.144,23144 +928,833,2,40,15:17:19,24.088,24088 +928,813,3,48,15:29:49,17.912,17912 +929,830,1,6,18:14:10,39.338,39338 +929,807,1,10,18:20:48,26.652,26652 +929,831,1,10,18:20:56,25.459,25459 +929,13,1,10,18:20:57,24.894,24894 +929,813,1,10,18:20:58,30.426,30426 +929,828,1,11,18:22:33,26.045,26045 +929,832,1,11,18:22:40,32.647,32647 +929,154,1,12,18:24:12,24.735,24735 +929,20,1,13,18:25:38,24.509,24509 +929,4,1,13,18:26:08,25.370,25370 +929,3,1,14,18:27:16,25.311,25311 +929,822,1,14,18:27:28,25.293,25293 +929,817,1,14,18:27:29,25.723,25723 +929,1,1,15,18:28:52,25.791,25791 +929,826,1,15,18:29:32,25.421,25421 +929,8,1,17,18:32:23,24.773,24773 +929,815,1,17,18:32:51,25.573,25573 +929,833,1,18,18:35:44,25.834,25834 +929,829,1,19,18:37:18,26.103,26103 +929,831,2,24,18:44:52,25.898,25898 +929,13,2,24,18:44:53,25.017,25017 +929,813,2,24,18:44:54,24.310,24310 +929,828,2,25,18:46:26,49.162,49162 +929,807,2,25,18:46:33,24.679,24679 +929,832,2,29,18:53:43,26.593,26593 +929,830,2,30,18:55:37,27.225,27225 +929,154,2,31,18:56:32,25.259,25259 +929,20,2,32,18:57:31,24.449,24449 +929,1,2,33,18:59:01,24.528,24528 +929,822,2,33,18:59:33,24.623,24623 +929,3,2,34,19:00:48,25.418,25418 +929,829,2,33,19:01:49,26.479,26479 +929,826,2,34,19:01:53,24.692,24692 +929,817,2,35,19:03:02,24.943,24943 +929,4,2,35,19:03:51,24.878,24878 +929,833,2,34,19:04:04,27.573,27573 +929,20,3,36,19:04:29,33.921,33921 +929,815,2,37,19:06:50,25.288,25288 +929,828,3,37,19:07:13,26.042,26042 +929,807,3,38,19:08:50,24.979,24979 +929,8,2,40,19:10:55,24.547,24547 +929,813,3,41,19:13:31,1:47.394,107394 +929,831,3,41,19:13:54,26.210,26210 +930,807,1,10,14:19:46,22.659,22659 +930,826,1,11,14:21:18,22.667,22667 +930,18,1,11,14:21:23,22.589,22589 +930,831,1,12,14:22:55,22.677,22677 +930,1,1,13,14:23:49,24.586,24586 +930,817,1,13,14:24:18,22.440,22440 +930,830,1,13,14:24:19,24.396,24396 +930,20,1,14,14:25:21,21.762,21762 +930,13,1,14,14:25:37,22.139,22139 +930,813,1,14,14:25:48,24.976,24976 +930,832,1,14,14:25:58,22.859,22859 +930,3,1,15,14:26:45,21.870,21870 +930,822,1,15,14:27:01,22.082,22082 +930,154,1,15,14:27:28,23.309,23309 +930,813,2,15,14:27:46,32.459,32459 +930,829,1,16,14:29:49,24.687,24687 +930,8,1,17,14:30:09,22.623,22623 +930,833,1,17,14:31:33,24.631,24631 +930,828,1,18,14:32:23,25.272,25272 +930,815,1,19,14:33:59,22.468,22468 +930,4,1,21,14:37:01,23.728,23728 +930,807,2,26,14:45:13,22.534,22534 +930,18,2,27,14:47:05,23.327,23327 +930,833,2,30,14:53:03,23.070,23070 +930,1,2,32,14:53:17,22.727,22727 +930,13,2,32,14:53:41,22.629,22629 +930,829,2,32,14:56:02,23.043,23043 +930,815,2,36,15:01:03,22.426,22426 +930,830,2,37,15:02:19,22.607,22607 +930,826,2,38,15:03:48,22.273,22273 +930,831,2,39,15:05:35,23.186,23186 +930,20,2,40,15:05:38,21.836,21836 +930,154,2,40,15:06:43,33.256,33256 +930,8,2,41,15:07:35,21.789,21789 +930,822,2,42,15:08:57,21.800,21800 +930,817,2,42,15:09:42,24.884,24884 +930,832,2,42,15:10:08,22.178,22178 +930,813,3,43,15:12:01,22.575,22575 +930,3,2,45,15:13:00,22.452,22452 +930,18,3,44,15:13:49,24.066,24066 +930,828,2,45,15:15:00,22.872,22872 +930,13,3,47,15:17:04,22.257,22257 +930,829,3,47,15:20:31,22.796,22796 +930,807,3,49,15:21:24,22.545,22545 +930,1,3,51,15:22:23,21.965,21965 +930,833,3,49,15:24:15,24.200,24200 +931,807,1,1,14:04:47,34.773,34773 +931,13,1,1,14:05:03,42.934,42934 +931,832,1,12,14:19:42,25.306,25306 +931,822,1,14,14:22:23,24.641,24641 +931,828,1,14,14:22:25,25.618,25618 +931,154,1,17,14:26:21,25.077,25077 +931,831,1,18,14:27:40,25.732,25732 +931,826,1,28,14:40:43,25.119,25119 +931,830,1,29,14:42:14,52.821,52821 +931,807,2,31,14:46:02,24.758,24758 +931,4,1,32,14:46:31,30.345,30345 +931,829,1,33,14:50:20,28.606,28606 +931,18,1,35,14:50:28,25.062,25062 +931,20,1,36,14:51:19,24.851,24851 +931,817,1,36,14:51:34,24.501,24501 +931,815,1,36,14:51:43,24.733,24733 +931,3,1,37,14:52:37,24.789,24789 +931,833,1,35,14:52:53,27.554,27554 +931,8,1,37,14:52:54,24.177,24177 +931,1,1,38,14:53:49,24.181,24181 +931,828,2,38,14:55:31,25.398,25398 +931,13,2,39,14:58:08,24.970,24970 +931,830,2,46,15:06:05,25.736,25736 +931,822,2,56,15:19:50,24.412,24412 +931,13,3,62,15:29:53,24.395,24395 +931,815,2,64,15:29:57,25.119,25119 +931,18,2,64,15:30:17,24.661,24661 +931,1,2,65,15:30:51,25.495,25495 +931,831,2,64,15:30:55,26.420,26420 +931,817,2,65,15:31:26,24.244,24244 +931,828,3,69,15:40:15,25.234,25234 +932,18,1,1,14:04:39,18.057,18057 +932,20,1,7,14:12:45,27.241,27241 +932,813,1,17,14:25:56,23.660,23660 +932,817,1,23,14:34:08,23.997,23997 +932,815,1,24,14:35:26,23.453,23453 +932,8,1,26,14:37:27,23.630,23630 +932,831,1,26,14:38:33,24.795,24795 +932,154,1,27,14:39:08,24.292,24292 +932,826,1,27,14:39:23,23.681,23681 +932,832,1,27,14:39:37,24.277,24277 +932,822,1,28,14:40:10,25.541,25541 +932,807,1,28,14:40:35,23.507,23507 +932,828,1,28,14:40:57,24.149,24149 +932,1,1,29,14:41:11,23.708,23708 +932,3,1,30,14:42:33,23.321,23321 +932,4,1,31,14:45:06,23.553,23553 +932,20,2,35,14:50:00,23.945,23945 +932,829,1,34,14:50:14,30.807,30807 +932,833,1,35,14:51:40,26.986,26986 +932,13,1,37,14:52:40,23.912,23912 +932,830,1,39,14:55:43,36.105,36105 +932,8,2,40,14:56:15,24.578,24578 +932,18,2,44,15:03:06,25.374,25374 +933,826,1,1,14:04:37,28.632,28632 +933,828,1,2,14:06:56,30.232,30232 +933,18,1,3,14:09:03,24.104,24104 +933,18,2,6,14:14:39,28.727,28727 +933,828,2,12,14:22:17,16.211,16211 +933,154,1,23,14:35:38,22.016,22016 +933,831,1,24,14:36:49,22.803,22803 +933,807,1,25,14:37:53,21.685,21685 +933,832,1,25,14:38:02,27.638,27638 +933,822,1,26,14:39:05,22.777,22777 +933,830,1,26,14:39:12,21.984,21984 +933,3,1,33,14:47:13,21.768,21768 +933,13,1,34,14:48:45,22.447,22447 +933,1,1,35,14:49:40,21.869,21869 +933,833,1,34,14:50:23,23.926,23926 +933,20,1,36,14:51:04,31.882,31882 +933,813,1,37,14:52:53,21.847,21847 +933,815,1,38,14:54:06,26.689,26689 +933,826,2,45,15:03:07,22.111,22111 +933,828,3,45,15:04:13,22.449,22449 +933,817,1,50,15:09:02,27.710,27710 +934,4,1,1,13:05:14,1:11.178,71178 +934,817,1,11,13:23:42,28.464,28464 +934,832,1,12,13:25:22,29.393,29393 +934,8,1,13,13:26:56,28.974,28974 +934,20,1,14,13:28:38,28.946,28946 +934,4,2,17,13:34:06,28.703,28703 +934,826,1,18,13:35:17,28.347,28347 +934,1,1,19,13:36:43,28.417,28417 +934,807,1,19,13:36:56,28.558,28558 +934,13,1,20,13:38:21,29.369,29369 +934,3,1,20,13:38:22,28.393,28393 +934,815,1,20,13:38:41,28.860,28860 +934,817,2,20,13:39:28,43.240,43240 +934,822,1,21,13:39:59,28.781,28781 +934,828,1,23,13:43:56,29.598,29598 +934,829,1,36,14:07:55,48.861,48861 +934,833,1,36,14:08:22,34.672,34672 +934,828,2,37,14:08:39,30.867,30867 +934,4,3,37,14:08:45,32.593,32593 +934,8,2,38,14:09:28,30.397,30397 +934,828,3,41,14:16:26,29.828,29828 +934,1,2,43,14:17:40,28.979,28979 +934,20,2,43,14:18:01,29.676,29676 +934,828,4,42,14:18:36,30.197,30197 +934,3,2,44,14:19:37,30.393,30393 +934,13,2,44,14:19:54,31.948,31948 +934,822,2,44,14:20:02,31.937,31937 +934,826,2,44,14:20:27,33.979,33979 +934,807,2,44,14:20:36,33.891,33891 +934,815,2,44,14:21:16,31.998,31998 +934,833,2,44,14:24:44,30.686,30686 +934,8,3,47,14:26:56,30.178,30178 +934,829,2,45,14:27:17,43.964,43964 +936,833,1,6,14:15:43,26.392,26392 +936,822,1,13,14:25:47,22.974,22974 +936,826,1,13,14:25:51,22.072,22072 +936,13,1,14,14:27:28,27.936,27936 +936,830,1,14,14:27:30,22.536,22536 +936,18,1,14,14:27:33,22.231,22231 +936,154,1,14,14:27:34,22.805,22805 +936,831,1,14,14:27:41,22.729,22729 +936,807,1,15,14:28:49,22.573,22573 +936,832,1,15,14:28:58,25.096,25096 +936,4,1,15,14:29:00,21.567,21567 +936,815,1,16,14:30:25,22.068,22068 +936,828,1,16,14:30:36,23.005,23005 +936,1,1,19,14:34:42,23.146,23146 +936,3,1,20,14:35:52,21.780,21780 +936,20,1,21,14:37:10,21.900,21900 +936,817,1,21,14:37:37,21.824,21824 +936,8,1,22,14:38:42,22.566,22566 +936,813,1,24,14:42:53,16.444,16444 +936,813,2,25,14:44:40,22.812,22812 +936,829,1,26,14:46:47,23.051,23051 +936,13,2,29,14:50:32,21.915,21915 +936,815,2,30,14:51:57,22.409,22409 +936,833,2,30,14:53:11,23.125,23125 +936,831,2,32,14:55:00,22.907,22907 +936,826,2,33,14:56:04,21.574,21574 +936,828,2,33,14:56:29,22.199,22199 +936,154,2,34,14:57:48,28.707,28707 +936,18,2,35,14:59:17,21.753,21753 +936,807,2,36,15:00:25,22.222,22222 +936,4,2,36,15:00:39,22.300,22300 +936,832,2,36,15:00:44,22.930,22930 +936,830,2,37,15:02:04,23.431,23431 +936,822,2,38,15:03:21,21.867,21867 +936,3,2,42,15:08:45,22.013,22013 +936,815,3,41,15:08:53,22.574,22574 +936,1,2,42,15:08:57,24.272,24272 +936,813,3,41,15:08:57,24.972,24972 +936,828,3,41,15:09:02,22.747,22747 +936,817,2,42,15:09:07,22.008,22008 +936,20,2,43,15:10:02,22.028,22028 +936,8,2,43,15:10:21,22.270,22270 +936,154,3,42,15:10:37,23.972,23972 +936,829,2,41,15:10:40,23.664,23664 +936,831,3,42,15:10:56,23.097,23097 +936,833,3,41,15:11:07,23.207,23207 +936,826,3,43,15:11:48,21.663,21663 +936,4,3,43,15:12:11,23.162,23162 +936,20,3,45,15:14:38,16.639,16639 +936,832,3,44,15:14:39,16.660,16660 +936,18,3,44,15:14:41,16.488,16488 +936,4,4,44,15:14:42,16.796,16796 +936,8,3,45,15:14:43,16.979,16979 +936,13,3,44,15:14:44,16.823,16823 +936,154,4,44,15:14:46,17.064,17064 +936,3,3,45,15:14:48,16.623,16623 +936,829,3,43,15:14:50,17.116,17116 +936,815,4,44,15:14:51,16.958,16958 +936,1,3,45,15:14:53,18.249,18249 +936,813,4,44,15:14:53,18.782,18782 +936,828,4,44,15:14:55,18.577,18577 +936,831,4,44,15:14:57,18.246,18246 +936,817,3,45,15:14:58,18.270,18270 +936,833,4,43,15:14:59,18.085,18085 +936,822,3,45,15:15:16,16.427,16427 +936,830,3,45,15:15:29,16.485,16485 +936,826,4,45,15:15:35,16.453,16453 +936,20,4,46,15:17:03,17.121,17121 +936,832,4,45,15:17:04,16.786,16786 +936,18,4,45,15:17:06,16.639,16639 +936,4,5,45,15:17:07,16.879,16879 +936,8,4,46,15:17:08,16.734,16734 +936,13,4,45,15:17:10,16.818,16818 +936,154,5,45,15:17:11,17.114,17114 +936,3,4,46,15:17:13,17.780,17780 +936,829,4,44,15:17:14,17.402,17402 +936,815,5,45,15:17:15,32.181,32181 +936,1,4,46,15:17:16,17.726,17726 +936,813,5,45,15:17:17,18.186,18186 +936,828,5,45,15:17:19,17.472,17472 +936,831,5,45,15:17:21,17.235,17235 +936,817,4,46,15:17:22,18.758,18758 +936,833,5,44,15:17:23,18.149,18149 +936,822,4,46,15:17:25,17.557,17557 +936,830,4,46,15:17:25,23.043,23043 +936,826,5,46,15:17:27,17.849,17849 +936,822,5,49,15:23:48,30.031,30031 +936,1,5,51,15:26:23,27.715,27715 +936,8,5,52,15:27:47,59.555,59555 +936,13,5,54,15:31:14,21.502,21502 +936,1,6,54,15:31:15,16.579,16579 +936,829,5,54,15:33:20,22.716,22716 +936,830,5,56,15:33:45,16.415,16415 +936,813,6,58,15:37:12,16.446,16446 +936,817,5,64,15:45:08,31.037,31037 +936,3,5,64,15:45:42,24.575,24575 +937,817,1,7,14:20:39,22.637,22637 +937,832,1,5,14:20:58,23.732,23732 +937,815,1,8,14:22:36,23.562,23562 +937,822,1,8,14:22:46,23.319,23319 +937,4,1,8,14:23:03,22.973,22973 +937,154,1,9,14:24:43,23.717,23717 +937,826,1,9,14:24:46,22.796,22796 +937,13,1,9,14:24:47,23.282,23282 +937,830,1,9,14:24:48,24.564,24564 +937,828,1,9,14:24:54,24.183,24183 +937,831,1,10,14:27:06,23.439,23439 +937,8,1,11,14:28:44,22.578,22578 +937,18,1,11,14:29:15,24.083,24083 +937,3,1,12,14:30:22,22.997,22997 +937,1,1,13,14:32:13,22.403,22403 +937,20,1,14,14:34:26,22.681,22681 +937,822,2,15,14:36:40,17.343,17343 +937,833,1,15,14:37:29,23.643,23643 +937,829,1,16,14:39:34,23.826,23826 +937,815,2,20,14:46:18,22.918,22918 +937,4,2,20,14:47:07,26.103,26103 +937,18,2,20,14:47:33,24.151,24151 +937,154,2,21,14:48:35,23.493,23493 +937,13,2,21,14:48:52,23.655,23655 +937,8,2,21,14:48:53,23.143,23143 +937,830,2,21,14:48:54,23.041,23041 +937,822,3,21,14:49:04,23.489,23489 +937,832,2,23,14:57:07,23.348,23348 +937,826,2,27,15:00:37,22.563,22563 +937,831,2,27,15:01:15,23.288,23288 +937,828,2,28,15:03:02,23.684,23684 +937,1,2,30,15:05:42,22.955,22955 +937,833,2,29,15:06:14,23.282,23282 +937,3,2,31,15:07:43,22.765,22765 +937,829,2,30,15:08:20,24.450,24450 +937,830,3,32,15:10:22,22.942,22942 +937,4,3,32,15:11:10,23.191,23191 +937,18,3,35,15:17:42,23.761,23761 +938,831,1,1,14:05:00,25.761,25761 +938,830,1,1,14:05:02,18.818,18818 +938,832,1,10,14:18:38,30.358,30358 +938,3,1,18,14:30:11,24.657,24657 +938,807,1,18,14:30:23,24.286,24286 +938,13,1,19,14:31:39,25.207,25207 +938,830,2,19,14:32:19,25.318,25318 +938,828,1,20,14:33:26,24.842,24842 +938,822,1,22,14:36:10,25.536,25536 +938,815,1,23,14:37:46,24.281,24281 +938,831,2,24,14:40:02,25.282,25282 +938,20,1,25,14:40:24,24.340,24340 +938,18,1,25,14:41:32,24.310,24310 +938,1,1,26,14:41:34,24.368,24368 +938,829,1,26,14:43:37,29.382,29382 +938,826,1,27,14:44:11,23.884,23884 +938,8,1,28,14:45:20,24.442,24442 +938,833,1,27,14:45:21,26.435,26435 +938,4,1,28,14:46:15,24.330,24330 +938,817,1,30,14:48:35,24.259,24259 +938,832,2,30,14:48:54,24.736,24736 +938,830,3,33,14:53:32,24.938,24938 +938,4,2,46,15:13:37,19.374,19374 +939,154,1,9,20:20:55,30.640,30640 +939,4,1,10,20:22:46,34.237,34237 +939,832,1,10,20:22:46,34.970,34970 +939,828,1,10,20:22:52,29.589,29589 +939,813,1,10,20:22:55,29.762,29762 +939,807,1,11,20:24:36,30.868,30868 +939,826,1,12,20:26:14,29.159,29159 +939,13,1,12,20:26:28,31.380,31380 +939,20,1,13,20:28:04,29.172,29172 +939,817,1,13,20:28:10,31.307,31307 +939,8,1,13,20:28:15,30.031,30031 +939,1,1,13,20:28:21,28.917,28917 +939,3,1,13,20:28:30,30.562,30562 +939,822,1,13,20:28:34,29.260,29260 +939,815,1,13,20:28:45,29.732,29732 +939,831,1,13,20:28:53,29.679,29679 +939,18,1,13,20:28:57,1:05.317,65317 +939,830,1,12,20:29:01,31.207,31207 +939,834,1,13,20:29:50,31.180,31180 +939,13,2,14,20:31:49,29.907,29907 +939,829,1,14,20:32:23,30.398,30398 +939,154,2,26,20:57:10,29.826,29826 +939,813,2,27,20:59:08,29.223,29223 +939,828,2,28,21:01:10,29.857,29857 +939,832,2,28,21:01:11,29.742,29742 +939,13,3,29,21:03:13,24.415,24415 +939,826,2,33,21:10:11,32.924,32924 +939,815,2,34,21:12:15,29.676,29676 +939,831,2,34,21:12:23,29.917,29917 +939,830,2,36,21:16:29,30.844,30844 +939,828,3,36,21:16:40,29.398,29398 +939,20,2,37,21:17:26,29.273,29273 +939,817,2,37,21:17:32,29.419,29419 +939,834,2,36,21:17:38,32.036,32036 +939,8,2,37,21:17:42,30.689,30689 +939,3,2,37,21:17:55,29.887,29887 +939,822,2,37,21:18:06,29.239,29239 +939,18,2,37,21:18:41,30.106,30106 +939,832,3,37,21:19:08,29.885,29885 +939,829,2,37,21:20:15,37.847,37847 +939,18,3,41,21:28:16,37.822,37822 +939,813,3,54,21:53:08,29.996,29996 +940,815,1,1,14:05:29,25.041,25041 +940,817,1,1,14:06:11,26.087,26087 +940,13,1,1,14:06:55,34.166,34166 +940,826,1,8,14:17:26,23.316,23316 +940,4,1,9,14:19:04,23.640,23640 +940,830,1,9,14:19:07,27.793,27793 +940,807,1,10,14:20:34,23.750,23750 +940,831,1,10,14:20:51,24.763,24763 +940,18,1,10,14:20:51,23.343,23343 +940,822,1,11,14:22:04,23.542,23542 +940,154,1,11,14:22:12,23.793,23793 +940,813,1,12,14:23:55,24.842,24842 +940,20,1,13,14:25:21,23.074,23074 +940,828,1,13,14:26:01,23.418,23418 +940,8,1,14,14:27:09,23.714,23714 +940,832,1,14,14:27:23,23.701,23701 +940,3,1,15,14:28:45,23.078,23078 +940,1,1,16,14:30:13,22.750,22750 +940,13,2,16,14:32:49,26.735,26735 +940,815,2,18,14:34:39,24.303,24303 +940,826,2,20,14:38:04,23.183,23183 +940,834,1,22,14:42:18,25.146,25146 +940,817,2,24,14:45:19,23.225,23225 +940,828,2,26,14:48:19,23.441,23441 +940,832,2,27,14:49:26,39.345,39345 +940,18,2,27,14:49:59,23.801,23801 +940,8,2,28,14:50:45,22.584,22584 +940,4,2,28,14:51:35,23.767,23767 +940,3,2,29,14:52:12,23.241,23241 +940,822,2,29,14:52:23,23.588,23588 +940,20,2,30,14:53:49,23.130,23130 +940,830,2,30,14:54:54,23.977,23977 +940,831,2,30,14:55:14,24.116,24116 +940,1,2,31,14:55:15,23.165,23165 +940,807,2,31,14:56:02,23.491,23491 +940,154,2,33,14:59:32,24.554,24554 +940,834,2,33,15:01:34,25.088,25088 +940,826,3,34,15:01:48,23.381,23381 +940,13,3,34,15:03:24,24.670,24670 +940,813,2,36,15:04:35,23.249,23249 +940,815,3,36,15:05:03,24.267,24267 +940,807,3,42,15:17:36,35.760,35760 +940,829,1,21,14:40:29,25.875,25875 +940,829,2,32,14:59:51,23.647,23647 +940,829,3,42,15:17:36,35.760,35760 +941,154,1,1,14:05:55,54.445,54445 +941,830,1,1,14:06:46,37.334,37334 +941,815,1,12,14:27:00,30.545,30545 +941,817,1,12,14:27:08,29.732,29732 +941,832,1,12,14:27:19,30.288,30288 +941,18,1,12,14:27:21,29.719,29719 +941,4,1,13,14:29:42,29.539,29539 +941,833,1,13,14:30:08,35.072,35072 +941,829,1,14,14:32:34,32.400,32400 +941,829,2,17,14:39:33,30.421,30421 +941,830,2,24,14:51:41,30.241,30241 +941,822,1,26,14:54:41,30.316,30316 +941,20,1,30,15:01:31,29.367,29367 +941,13,1,30,15:01:51,30.741,30741 +941,813,1,30,15:01:56,29.952,29952 +941,8,1,31,15:03:16,29.386,29386 +941,1,1,32,15:04:38,30.216,30216 +941,826,1,33,15:06:55,30.418,30418 +941,831,1,34,15:08:41,30.362,30362 +942,822,1,1,14:05:59,40.488,40488 +942,154,1,1,14:06:27,27.621,27621 +942,834,1,1,14:06:39,37.748,37748 +942,4,1,1,14:06:40,31.987,31987 +942,831,1,2,14:08:09,31.137,31137 +942,831,2,3,14:11:11,25.931,25931 +942,822,2,4,14:14:23,26.384,26384 +942,154,2,9,14:23:43,27.730,27730 +942,828,1,16,14:36:37,29.728,29728 +942,18,1,17,14:38:36,27.286,27286 +942,1,1,18,14:40:00,24.354,24354 +942,20,1,18,14:40:12,25.019,25019 +942,830,1,18,14:40:12,25.527,25527 +942,13,1,18,14:40:23,24.646,24646 +942,831,3,17,14:40:29,25.714,25714 +942,834,2,17,14:40:33,26.520,26520 +942,813,1,18,14:40:42,27.851,27851 +942,4,2,18,14:41:28,24.631,24631 +942,817,1,19,14:41:45,24.449,24449 +942,3,1,19,14:41:53,24.640,24640 +942,826,1,19,14:41:54,24.638,24638 +942,815,1,19,14:42:04,26.458,26458 +942,8,1,19,14:42:09,24.733,24733 +942,832,1,19,14:42:10,25.259,25259 +942,807,1,19,14:42:11,27.344,27344 +942,828,2,19,14:42:56,30.932,30932 +942,8,2,20,14:45:11,34.548,34548 +942,4,3,26,14:56:18,25.405,25405 +942,20,2,27,14:56:46,25.576,25576 +942,807,2,27,14:56:58,27.360,27360 +942,832,2,27,14:57:05,44.582,44582 +942,815,2,27,14:57:13,24.730,24730 +942,18,2,27,14:57:21,24.689,24689 +942,813,2,27,14:58:06,25.446,25446 +942,831,4,26,14:58:12,24.975,24975 +942,830,2,28,14:59:09,24.904,24904 +942,834,3,27,15:00:26,25.812,25812 +942,3,2,38,15:20:21,25.242,25242 +942,826,2,38,15:20:45,25.205,25205 +942,817,2,38,15:20:48,27.802,27802 +942,831,5,42,15:29:13,35.546,35546 +942,1,2,43,15:29:55,24.088,24088 +942,20,3,43,15:30:04,24.158,24158 +942,832,3,43,15:30:32,26.840,26840 +942,813,3,43,15:30:33,25.054,25054 +942,18,3,44,15:32:44,24.862,24862 +942,817,3,50,15:44:54,24.495,24495 +943,20,1,1,13:04:58,28.070,28070 +943,822,1,8,13:14:42,22.957,22957 +943,13,1,9,13:16:11,22.849,22849 +943,807,1,9,13:16:16,23.277,23277 +943,813,1,10,13:17:46,26.647,26647 +943,828,1,10,13:17:54,22.956,22956 +943,154,1,11,13:19:15,22.735,22735 +943,831,1,12,13:20:51,23.026,23026 +943,832,1,13,13:21:59,23.128,23128 +943,815,1,18,13:29:04,23.547,23547 +943,826,1,21,13:32:58,22.559,22559 +943,817,1,24,13:37:18,22.422,22422 +943,830,1,25,13:38:51,22.985,22985 +943,3,1,26,13:39:37,22.391,22391 +943,829,1,26,13:41:44,25.087,25087 +943,1,1,28,13:42:28,22.304,22304 +943,834,1,27,13:43:29,25.367,25367 +943,18,1,30,13:46:38,23.356,23356 +943,20,2,35,13:53:28,22.156,22156 +943,828,2,39,13:59:15,23.461,23461 +943,832,2,43,14:04:29,23.776,23776 +943,831,2,44,14:06:33,23.417,23417 +943,3,2,46,14:07:31,22.303,22303 +943,1,2,48,14:10:19,22.328,22328 +943,18,2,47,14:11:04,23.018,23018 +943,832,3,51,14:15:57,23.068,23068 +943,828,3,51,14:16:29,23.292,23292 +943,826,2,52,14:16:33,22.518,22518 +943,817,2,52,14:16:49,22.488,22488 +943,13,2,52,14:16:52,23.086,23086 +943,807,2,52,14:16:54,24.136,24136 +943,831,3,51,14:17:02,23.813,23813 +943,830,2,52,14:17:19,22.589,22589 +943,154,2,52,14:17:28,23.101,23101 +943,813,2,52,14:17:35,23.937,23937 +943,829,2,50,14:17:37,24.224,24224 +943,834,2,50,14:17:41,30.442,30442 +943,822,2,53,14:18:31,23.160,23160 +944,817,1,3,14:07:06,23.937,23937 +944,807,1,9,14:14:48,24.009,24009 +944,826,1,10,14:16:04,24.155,24155 +944,13,1,10,14:16:08,23.887,23887 +944,815,1,10,14:16:10,23.854,23854 +944,154,1,10,14:16:12,24.475,24475 +944,822,1,11,14:17:18,23.736,23736 +944,830,1,11,14:17:28,24.166,24166 +944,8,1,12,14:18:31,23.293,23293 +944,18,1,12,14:18:53,23.242,23242 +944,828,1,12,14:18:58,24.699,24699 +944,3,1,13,14:19:39,25.039,25039 +944,20,1,13,14:19:44,23.801,23801 +944,4,1,13,14:20:14,22.981,22981 +944,1,1,14,14:20:57,24.328,24328 +944,831,1,14,14:21:27,25.529,25529 +944,834,1,14,14:22:03,25.492,25492 +944,829,1,15,14:23:24,25.547,25547 +944,813,1,25,14:36:04,24.115,24115 +944,817,2,28,14:40:10,23.979,23979 +944,18,2,31,14:44:10,24.265,24265 +944,20,2,32,14:44:26,23.474,23474 +944,3,2,33,14:45:33,23.321,23321 +944,4,2,32,14:45:34,23.218,23218 +944,828,2,32,14:45:52,29.148,29148 +944,815,2,33,14:46:36,23.609,23609 +944,1,2,34,14:46:52,23.148,23148 +944,830,2,34,14:47:52,24.153,24153 +944,807,2,35,14:48:59,24.199,24199 +944,154,2,35,14:49:12,23.787,23787 +944,13,2,38,14:53:00,23.927,23927 +944,826,2,39,14:54:15,23.630,23630 +944,831,2,39,14:54:38,24.491,24491 +944,822,2,41,14:56:37,24.913,24913 +944,829,2,40,14:57:45,27.095,27095 +944,834,2,41,14:59:12,26.706,26706 +944,813,2,44,15:01:06,30.082,30082 +944,8,2,46,15:02:43,25.308,25308 +944,20,3,47,15:03:48,23.861,23861 +944,3,3,48,15:04:53,23.046,23046 +944,1,3,49,15:06:11,22.936,22936 +944,815,3,51,15:10:22,23.732,23732 +944,18,3,51,15:10:27,23.402,23402 +944,817,3,52,15:11:38,24.775,24775 +944,4,3,52,15:11:48,23.810,23810 +944,830,3,53,15:12:51,24.078,24078 +944,828,3,53,15:13:28,25.102,25102 +944,154,3,54,15:14:07,23.958,23958 +944,13,3,55,15:15:12,23.401,23401 +945,4,1,1,17:05:39,44.990,44990 +945,831,1,4,17:11:05,28.407,28407 +945,826,1,5,17:12:45,21.868,21868 +945,815,1,6,17:14:27,21.922,21922 +945,817,1,6,17:14:29,21.949,21949 +945,13,1,6,17:14:32,22.851,22851 +945,807,1,7,17:16:20,22.045,22045 +945,832,1,7,17:16:24,25.307,25307 +945,822,1,8,17:18:12,24.485,24485 +945,830,1,8,17:18:16,22.309,22309 +945,18,1,8,17:18:18,23.722,23722 +945,4,2,8,17:19:12,16.128,16128 +945,822,2,9,17:20:31,28.622,28622 +945,3,1,10,17:21:26,21.637,21637 +945,8,1,10,17:21:36,22.162,22162 +945,1,1,11,17:23:20,21.346,21346 +945,828,1,15,17:31:20,22.838,22838 +945,4,3,17,17:36:02,22.246,22246 +945,830,2,20,17:40:25,22.457,22457 +945,20,1,23,17:45:22,21.795,21795 +945,154,1,23,17:45:39,22.203,22203 +945,829,1,23,17:47:03,22.913,22913 +945,807,2,24,17:47:36,22.174,22174 +945,833,1,24,17:49:26,24.314,24314 +945,826,2,25,17:49:27,21.634,21634 +945,817,2,26,17:51:05,22.118,22118 +945,13,2,26,17:51:15,22.710,22710 +945,831,2,26,17:51:35,22.806,22806 +945,815,2,27,17:52:50,22.116,22116 +945,18,2,27,17:53:21,22.310,22310 +945,832,2,28,17:54:59,22.063,22063 +945,822,3,29,17:57:10,29.592,29592 +945,3,2,31,17:59:21,21.580,21580 +945,8,2,32,18:01:20,25.613,25613 +945,829,2,33,18:06:05,22.854,22854 +945,830,3,38,18:13:19,22.355,22355 +945,20,2,39,18:14:14,21.628,21628 +945,1,2,41,18:17:11,21.392,21392 +945,828,2,41,18:18:57,22.200,22200 +945,154,2,43,18:22:01,22.234,22234 +945,831,3,44,18:24:25,22.086,22086 +945,4,4,47,18:30:52,22.377,22377 +948,825,1,1,16:09:48,27.831,27831 +948,832,1,8,16:19:48,22.414,22414 +948,831,1,10,16:23:19,22.701,22701 +948,13,1,11,16:24:32,21.550,21550 +948,836,1,11,16:24:47,26.206,26206 +948,828,1,11,16:24:51,22.357,22357 +948,3,1,12,16:25:48,21.531,21531 +948,817,1,12,16:25:59,22.245,22245 +948,4,1,12,16:26:14,21.796,21796 +948,835,1,12,16:26:22,23.286,23286 +948,837,1,12,16:26:36,23.224,23224 +948,20,1,13,16:27:17,21.339,21339 +948,830,1,13,16:27:32,22.303,22303 +948,18,1,15,16:31:07,22.616,22616 +948,8,1,16,16:32:03,22.508,22508 +948,1,1,16,16:32:16,21.940,21940 +948,807,1,16,16:32:30,22.167,22167 +948,815,1,16,16:32:37,24.719,24719 +948,822,1,17,16:34:32,21.376,21376 +948,825,2,16,16:34:50,22.079,22079 +948,20,2,18,16:36:56,18:09.312,1089312 +948,3,2,18,16:36:58,18:09.303,1089303 +948,8,2,18,16:37:00,18:09.365,1089365 +948,817,2,18,16:37:02,18:09.822,1089822 +948,830,2,18,16:37:03,18:09.372,1089372 +948,832,2,18,16:37:05,18:09.971,1089971 +948,1,2,18,16:37:09,18:10.087,1090087 +948,13,2,18,16:37:10,18:09.805,1089805 +948,154,1,18,16:37:12,18:09.417,1089417 +948,807,2,18,16:37:14,18:09.155,1089155 +948,822,2,18,16:37:16,18:08.989,1088989 +948,835,2,18,16:37:19,18:08.294,1088294 +948,815,2,18,16:37:21,18:07.311,1087311 +948,828,2,18,16:37:25,18:06.875,1086875 +948,18,2,18,16:37:31,18:04.466,1084466 +948,831,2,18,16:37:34,18:02.337,1082337 +948,836,2,18,16:37:36,18:02.140,1082140 +948,825,3,17,16:37:38,15:46.318,946318 +948,828,3,27,17:10:16,16.936,16936 +948,18,3,30,17:14:55,21.837,21837 +948,832,3,31,17:16:00,22.392,22392 +948,830,3,32,17:17:30,29.066,29066 +948,836,3,32,17:18:12,23.895,23895 +948,20,3,35,17:21:50,24.548,24548 +948,817,3,42,17:32:47,21.981,21981 +949,807,1,1,18:05:30,31.931,31931 +949,815,1,2,18:07:15,30.326,30326 +949,832,1,2,18:07:43,28.401,28401 +949,817,1,6,18:13:44,24.541,24541 +949,13,1,7,18:15:20,24.093,24093 +949,822,1,8,18:17:05,24.944,24944 +949,821,1,8,18:17:13,32.793,32793 +949,838,1,9,18:18:55,24.604,24604 +949,822,2,9,18:19:07,19.369,19369 +949,830,1,10,18:20:31,25.810,25810 +949,831,1,10,18:20:44,26.246,26246 +949,154,1,11,18:22:08,25.739,25739 +949,836,1,11,18:22:24,26.236,26236 +949,8,1,12,18:23:37,24.720,24720 +949,825,1,12,18:24:08,26.876,26876 +949,837,1,12,18:24:14,26.382,26382 +949,3,1,13,18:25:02,24.934,24934 +949,1,1,13,18:25:20,24.512,24512 +949,828,1,13,18:25:47,24.775,24775 +949,815,2,14,18:27:44,25.068,25068 +949,826,1,16,18:30:45,24.419,24419 +949,807,2,16,18:31:10,24.930,24930 +949,832,2,20,18:38:33,34.978,34978 +949,817,2,24,18:44:00,26.631,26631 +949,825,2,24,18:44:29,24.383,24383 +949,838,2,25,18:45:55,24.682,24682 +949,830,2,26,18:47:23,25.594,25594 +949,154,2,27,18:48:59,26.151,26151 +949,1,2,28,18:50:13,25.030,25030 +949,8,2,29,18:51:43,25.222,25222 +949,13,2,29,18:52:33,24.236,24236 +949,828,2,29,18:52:47,25.363,25363 +949,836,2,29,18:52:58,25.547,25547 +949,3,2,30,18:53:06,27.226,27226 +949,831,2,30,18:54:37,25.491,25491 +949,837,2,31,18:56:29,28.120,28120 +949,826,2,34,19:00:57,24.661,24661 +949,822,3,34,19:01:08,26.110,26110 +949,807,3,35,19:03:05,24.734,24734 +949,8,3,37,19:04:55,25.257,25257 +949,815,3,37,19:06:37,24.517,24517 +949,825,3,38,19:07:57,24.341,24341 +949,3,3,39,19:07:59,25.761,25761 +949,154,3,40,19:10:37,30.063,30063 +949,1,3,41,19:11:34,24.524,24524 +949,838,3,41,19:12:46,25.316,25316 +949,836,3,41,19:13:02,25.419,25419 +949,817,3,42,19:13:48,24.879,24879 +949,826,3,44,19:17:31,24.224,24224 +949,837,3,44,19:18:30,25.517,25517 +949,830,3,46,19:20:38,25.129,25129 +949,831,3,47,19:23:12,25.660,25660 +949,807,4,51,19:29:43,26.595,26595 +950,154,1,1,14:05:35,58.563,58563 +950,8,1,1,14:05:39,31.134,31134 +950,1,1,1,14:05:46,29.322,29322 +950,831,1,1,14:06:25,36.854,36854 +950,817,1,3,14:08:57,24.392,24392 +950,826,1,4,14:10:42,24.084,24084 +950,815,1,4,14:10:46,23.215,23215 +950,20,1,4,14:10:50,30.115,30115 +950,807,1,4,14:10:50,27.683,27683 +950,832,1,4,14:10:51,25.754,25754 +950,18,1,4,14:10:51,24.072,24072 +950,822,1,4,14:10:52,22.682,22682 +950,830,1,4,14:10:54,30.034,30034 +950,828,1,4,14:10:56,23.955,23955 +950,825,1,4,14:10:58,23.158,23158 +950,1,2,5,14:13:57,25.179,25179 +950,1,3,6,14:16:03,22.301,22301 +950,8,2,14,14:31:08,23.296,23296 +950,836,1,15,14:32:55,26.969,26969 +950,835,1,15,14:33:07,22.799,22799 +950,4,1,16,14:34:30,22.874,22874 +950,20,2,17,14:36:07,22.276,22276 +950,807,2,17,14:36:22,23.867,23867 +950,815,2,18,14:37:55,22.485,22485 +950,837,1,18,14:38:25,23.183,23183 +950,826,2,19,14:39:28,22.607,22607 +950,13,1,19,14:39:36,22.124,22124 +950,832,2,19,14:39:44,22.832,22832 +950,817,2,19,14:39:45,22.461,22461 +950,821,1,19,14:39:57,23.878,23878 +950,3,1,20,14:40:58,22.831,22831 +950,830,2,20,14:41:36,23.744,23744 +950,825,2,20,14:41:50,23.257,23257 +950,154,2,20,14:41:52,24.615,24615 +950,831,2,20,14:42:01,23.735,23735 +950,822,2,21,14:43:09,22.630,22630 +950,1,4,21,14:43:15,22.626,22626 +950,835,2,24,14:49:09,23.280,23280 +950,807,3,26,14:52:18,29.570,29570 +950,18,2,27,14:53:52,23.029,23029 +950,836,2,27,14:54:13,24.104,24104 +950,815,3,28,14:55:33,22.351,22351 +950,828,2,28,14:55:48,23.563,23563 +950,837,2,28,14:56:08,24.635,24635 +950,822,3,30,14:58:55,22.747,22747 +950,1,5,30,14:59:03,22.698,22698 +950,13,2,31,15:00:34,23.349,23349 +950,4,2,32,15:02:40,22.927,22927 +950,832,3,33,15:04:13,24.269,24269 +950,154,3,33,15:04:55,23.342,23342 +950,821,2,34,15:06:14,22.963,22963 +950,826,3,35,15:07:13,22.684,22684 +950,20,3,35,15:07:15,22.350,22350 +950,825,3,35,15:08:20,22.677,22677 +950,3,2,36,15:08:27,23.559,23559 +950,817,3,37,15:10:56,22.426,22426 +950,8,3,37,15:11:04,22.832,22832 +950,835,3,38,15:13:56,24.099,24099 +950,830,3,39,15:14:39,23.130,23130 +950,831,3,40,15:17:07,25.357,25357 +950,837,3,40,15:17:16,24.369,24369 +950,821,3,43,15:21:59,23.070,23070 +950,836,3,43,15:22:12,24.274,24274 +950,18,3,44,15:23:28,22.510,22510 +950,154,4,44,15:24:06,23.284,23284 +950,807,4,46,15:27:09,22.790,22790 +951,826,1,1,15:05:38,41.282,41282 +951,817,1,1,15:05:43,47.763,47763 +951,828,1,1,15:05:50,30.529,30529 +951,815,1,1,15:06:03,32.800,32800 +951,821,1,1,15:06:09,40.169,40169 +951,826,2,8,15:20:21,38.906,38906 +951,821,2,9,15:22:11,25.037,25037 +951,832,1,11,15:25:31,30.805,30805 +951,831,1,12,15:27:22,30.259,30259 +951,836,1,13,15:29:06,31.433,31433 +951,835,1,14,15:30:40,30.805,30805 +951,822,1,16,15:33:39,29.841,29841 +951,825,1,16,15:34:05,30.585,30585 +951,1,1,17,15:35:21,30.001,30001 +951,154,1,17,15:35:49,31.420,31420 +951,13,1,18,15:37:14,29.551,29551 +951,8,1,20,15:40:29,30.498,30498 +951,18,1,20,15:41:08,30.580,30580 +951,3,1,21,15:41:55,29.709,29709 +951,4,1,21,15:42:40,29.751,29751 +951,830,1,22,15:44:13,30.553,30553 +951,815,2,27,15:53:11,30.400,30400 +951,828,2,28,15:55:13,30.433,30433 +951,817,2,29,15:57:02,31.205,31205 +951,836,2,39,16:14:54,57.151,57151 +951,13,2,46,16:25:17,30.065,30065 +952,13,1,8,14:17:31,21.384,21384 +952,815,1,9,14:18:56,22.679,22679 +952,826,1,9,14:19:03,23.277,23277 +952,828,1,9,14:19:07,22.840,22840 +952,832,1,10,14:20:24,22.874,22874 +952,18,1,10,14:20:28,22.280,22280 +952,807,1,10,14:20:31,22.176,22176 +952,825,1,10,14:20:34,22.843,22843 +952,817,1,11,14:21:44,21.738,21738 +952,4,1,11,14:22:02,21.795,21795 +952,835,1,11,14:22:09,23.283,23283 +952,836,1,11,14:22:14,24.554,24554 +952,830,1,12,14:23:18,22.369,22369 +952,8,1,12,14:23:25,22.107,22107 +952,822,1,12,14:23:27,21.856,21856 +952,831,1,12,14:23:45,22.976,22976 +952,20,1,15,14:27:51,21.643,21643 +952,154,1,15,14:28:12,23.187,23187 +952,821,1,16,14:29:51,23.206,23206 +952,837,1,22,14:39:41,28.753,28753 +952,828,2,24,14:42:39,23.122,23122 +952,13,2,25,14:43:57,22.568,22568 +952,826,2,25,14:44:06,22.234,22234 +952,817,2,28,14:47:45,22.104,22104 +952,20,2,29,14:49:18,22.617,22617 +952,154,2,29,14:50:06,22.844,22844 +952,821,2,30,14:51:38,22.430,22430 +952,825,2,30,14:51:49,23.165,23165 +952,835,2,33,14:56:34,22.397,22397 +952,836,2,33,14:56:46,24.387,24387 +952,830,2,34,14:56:52,22.348,22348 +952,8,2,35,14:58:25,22.169,22169 +952,815,2,35,14:59:10,21.918,21918 +952,18,2,36,15:00:49,22.590,22590 +952,831,2,36,15:01:17,23.090,23090 +952,20,3,37,15:01:30,21.603,21603 +952,154,3,37,15:02:52,34.832,34832 +952,832,2,38,15:03:35,22.937,22937 +952,822,2,39,15:04:59,22.443,22443 +952,4,2,39,15:05:28,22.987,22987 +952,828,3,40,15:07:25,22.897,22897 +952,13,3,41,15:08:28,21.831,21831 +952,817,3,43,15:10:31,21.683,21683 +952,837,2,48,15:20:28,26.186,26186 +952,826,3,51,15:23:51,22.769,22769 +952,825,3,55,15:30:33,22.122,22122 +952,817,4,65,15:43:55,23.133,23133 +953,826,1,1,14:03:20,1:32.609,92609 +953,826,2,2,14:07:55,19.918,19918 +953,825,1,7,14:15:27,25.583,25583 +953,18,1,8,14:17:20,25.766,25766 +953,831,1,8,14:17:30,28.242,28242 +953,826,3,7,14:17:32,27.698,27698 +953,828,1,11,14:22:52,27.176,27176 +953,837,1,11,14:22:57,29.117,29117 +953,830,1,12,14:24:33,25.604,25604 +953,20,1,13,14:25:55,25.114,25114 +953,4,1,14,14:27:38,25.512,25512 +953,807,1,15,14:29:11,25.215,25215 +953,822,1,15,14:29:22,27.364,27364 +953,154,1,15,14:29:44,33.490,33490 +953,821,1,16,14:31:01,26.044,26044 +953,3,1,20,14:37:17,26.698,26698 +953,13,1,20,14:37:38,24.934,24934 +953,832,1,21,14:38:53,27.738,27738 +953,815,1,21,14:38:55,25.714,25714 +953,825,2,21,14:40:27,38.811,38811 +953,817,1,23,14:41:40,25.054,25054 +953,828,2,29,14:52:28,26.435,26435 +953,815,2,30,14:53:05,25.608,25608 +953,18,2,30,14:53:13,25.450,25450 +953,825,3,29,14:53:21,25.879,25879 +953,822,2,30,14:54:01,25.478,25478 +953,154,2,30,14:54:03,25.111,25111 +953,1,1,31,14:54:06,26.315,26315 +953,3,2,31,14:54:34,27.680,27680 +953,20,2,31,14:54:36,25.561,25561 +953,807,2,31,14:54:39,27.064,27064 +953,832,2,31,14:54:40,28.112,28112 +953,830,2,31,14:54:44,25.459,25459 +953,836,1,31,14:55:34,26.517,26517 +953,817,2,32,14:55:37,35.327,35327 +953,4,2,32,14:56:10,26.836,26836 +953,821,2,32,14:56:16,27.407,27407 +953,13,2,32,14:56:25,25.182,25182 +953,831,2,32,14:57:11,27.166,27166 +953,825,4,32,14:58:47,31.241,31241 +953,837,2,34,15:00:18,27.380,27380 +953,837,3,47,15:21:24,26.292,26292 +953,831,3,48,15:21:45,45.700,45700 +953,822,3,49,15:22:23,24.673,24673 +953,828,3,49,15:23:18,33.342,33342 +954,831,1,9,14:15:49,23.987,23987 +954,20,1,11,14:17:58,22.597,22597 +954,8,1,11,14:18:14,22.820,22820 +954,836,1,11,14:18:36,24.784,24784 +954,832,1,13,14:21:10,23.517,23517 +954,821,1,13,14:21:13,23.412,23412 +954,828,1,14,14:22:44,22.957,22957 +954,837,1,15,14:24:03,29.732,29732 +954,4,1,17,14:26:24,27.952,27952 +954,154,1,17,14:26:26,23.680,23680 +954,826,1,17,14:26:28,23.000,23000 +954,830,1,20,14:29:59,23.586,23586 +954,817,1,21,14:31:21,22.872,22872 +954,3,1,21,14:31:29,22.466,22466 +954,807,1,21,14:31:34,22.876,22876 +954,13,1,22,14:32:47,22.925,22925 +954,822,1,23,14:33:59,22.184,22184 +954,1,1,24,14:35:00,22.243,22243 +954,815,1,30,14:43:33,22.556,22556 +954,8,2,33,14:47:15,23.263,23263 +954,831,2,35,14:51:16,23.608,23608 +954,20,2,37,14:51:55,22.361,22361 +954,817,2,38,14:53:47,24.018,24018 +954,836,2,38,14:54:55,24.516,24516 +954,154,2,39,14:55:43,23.055,23055 +954,828,2,39,14:56:10,23.299,23299 +954,825,1,39,14:56:12,23.162,23162 +954,821,2,41,14:58:41,23.928,23928 +954,826,2,44,15:02:16,22.627,22627 +954,837,2,44,15:03:24,25.069,25069 +954,830,2,46,15:04:02,22.909,22909 +954,815,2,46,15:04:50,24.757,24757 +954,154,3,46,15:05:13,32.114,32114 +954,832,2,48,15:07:17,24.445,24445 +954,3,2,51,15:10:35,22.728,22728 +954,807,2,51,15:11:06,23.111,23111 +955,837,1,1,17:05:57,33.405,33405 +955,832,1,4,17:11:34,22.028,22028 +955,830,1,5,17:13:24,20.069,20069 +955,4,1,5,17:13:24,20.282,20282 +955,826,1,5,17:13:37,24.802,24802 +955,817,1,6,17:15:04,19.840,19840 +955,18,1,6,17:15:21,20.185,20185 +955,825,1,6,17:15:24,20.772,20772 +955,13,1,7,17:17:02,19.445,19445 +955,831,1,7,17:17:13,20.670,20670 +955,8,1,8,17:18:49,20.593,20593 +955,821,1,8,17:19:20,29.227,29227 +955,154,1,10,17:22:51,21.132,21132 +955,835,1,11,17:24:54,20.965,20965 +955,1,1,15,17:31:52,20.108,20108 +955,815,1,16,17:33:39,20.614,20614 +955,828,1,16,17:34:12,21.083,21083 +955,822,1,19,17:39:20,19.732,19732 +955,20,1,20,17:40:51,20.422,20422 +955,807,1,20,17:41:18,20.347,20347 +955,830,2,20,17:41:33,22.497,22497 +955,3,1,21,17:42:18,20.058,20058 +955,817,2,22,17:45:00,20.155,20155 +955,4,2,24,17:48:59,20.654,20654 +955,831,2,24,17:49:03,20.713,20713 +955,18,2,25,17:50:53,20.640,20640 +955,828,2,25,17:51:13,20.559,20559 +955,154,2,26,17:52:45,23.588,23588 +955,832,2,27,17:54:32,21.030,21030 +955,13,2,28,17:56:01,19.858,19858 +955,836,1,29,17:58:28,26.187,26187 +955,821,2,29,17:58:37,21.533,21533 +955,835,2,31,18:02:14,20.561,20561 +956,807,1,8,14:12:55,22.601,22601 +956,4,1,8,14:13:00,21.924,21924 +956,18,1,9,14:14:05,22.859,22859 +956,822,1,9,14:14:09,21.047,21047 +956,832,1,9,14:14:11,22.605,22605 +956,815,1,9,14:14:12,21.883,21883 +956,3,1,10,14:15:15,21.890,21890 +956,825,1,11,14:16:43,22.033,22033 +956,835,1,12,14:17:57,21.745,21745 +956,13,1,12,14:18:00,21.097,21097 +956,828,1,12,14:18:03,22.980,22980 +956,836,1,13,14:19:05,22.613,22613 +956,817,1,14,14:20:04,21.183,21183 +956,830,1,15,14:21:12,21.945,21945 +956,1,1,21,14:28:15,22.918,22918 +956,821,1,21,14:29:00,22.053,22053 +956,8,1,22,14:29:32,21.916,21916 +956,836,2,23,14:31:36,23.738,23738 +956,807,2,24,14:32:37,21.580,21580 +956,18,2,26,14:35:01,22.035,22035 +956,154,1,26,14:35:02,22.662,22662 +956,4,2,26,14:35:08,22.879,22879 +956,815,2,26,14:35:10,21.412,21412 +956,837,1,27,14:36:58,23.326,23326 +956,3,2,28,14:38:13,17.959,17959 +956,836,3,27,14:38:14,18.064,18064 +956,1,2,28,14:38:16,16.983,16983 +956,830,2,28,14:38:17,17.165,17165 +956,817,2,28,14:38:18,19.408,19408 +956,8,2,28,14:38:20,21.206,21206 +956,822,2,28,14:38:22,20.876,20876 +956,831,1,28,14:38:23,20.929,20929 +956,832,2,28,14:38:24,33.462,33462 +956,18,3,28,14:38:27,18.307,18307 +956,154,2,28,14:38:29,18.860,18860 +956,825,2,28,14:38:32,17.721,17721 +956,13,2,28,14:38:33,17.388,17388 +956,835,2,28,14:38:35,16.851,16851 +956,4,3,28,14:38:36,16.764,16764 +956,815,3,28,14:38:37,16.544,16544 +956,828,2,28,14:38:39,16.419,16419 +956,807,3,28,14:38:40,16.227,16227 +956,821,2,28,14:38:43,16.475,16475 +956,837,2,28,14:38:45,16.218,16218 +956,3,3,29,14:40:18,18.220,18220 +956,836,4,28,14:40:19,18.342,18342 +956,1,3,29,14:40:21,18.716,18716 +956,830,3,29,14:40:22,18.455,18455 +956,817,3,29,14:40:23,18.347,18347 +956,8,3,29,14:40:26,18.455,18455 +956,822,3,29,14:40:27,17.800,17800 +956,831,2,29,14:40:29,17.739,17739 +956,18,4,29,14:40:31,18.964,18964 +956,154,3,29,14:40:32,19.554,19554 +956,825,3,29,14:40:34,19.611,19611 +956,13,3,29,14:40:35,19.015,19015 +956,835,3,29,14:40:37,18.382,18382 +956,4,4,29,14:40:38,18.194,18194 +956,815,4,29,14:40:39,17.970,17970 +956,828,3,29,14:40:41,19.041,19041 +956,807,4,29,14:40:42,19.028,19028 +956,832,3,29,14:40:43,18.636,18636 +956,821,3,29,14:40:44,18.308,18308 +956,837,3,29,14:40:46,17.828,17828 +956,821,4,41,14:56:13,21.921,21921 +956,831,3,43,14:58:35,22.707,22707 +956,825,4,49,15:05:46,27.119,27119 +956,807,5,50,15:06:56,27.834,27834 +956,835,4,50,15:06:59,22.728,22728 +956,828,4,50,15:07:01,24.326,24326 +956,837,4,50,15:07:11,25.234,25234 +956,822,4,51,15:07:54,21.639,21639 +956,1,4,54,15:10:44,22.109,22109 +956,3,4,55,15:11:53,21.035,21035 +956,13,4,56,15:13:53,21.231,21231 +956,817,4,60,15:18:09,22.284,22284 +957,8,1,5,13:14:16,29.578,29578 +957,822,1,5,13:14:17,29.808,29808 +957,832,1,5,13:14:18,30.786,30786 +957,807,1,5,13:14:18,30.747,30747 +957,4,1,5,13:14:19,32.374,32374 +957,20,1,5,13:14:20,31.381,31381 +957,154,1,5,13:14:21,31.632,31632 +957,821,1,5,13:14:22,41.508,41508 +957,825,1,5,13:14:23,30.804,30804 +957,836,1,5,13:14:25,31.812,31812 +957,817,1,6,13:16:16,30.198,30198 +957,13,1,6,13:16:20,29.243,29243 +957,826,1,6,13:16:22,30.315,30315 +957,18,1,6,13:16:23,30.093,30093 +957,835,1,6,13:16:27,29.784,29784 +957,837,1,6,13:16:29,29.998,29998 +957,1,1,7,13:18:15,30.343,30343 +957,3,1,7,13:18:22,29.395,29395 +957,830,1,7,13:18:23,31.995,31995 +957,815,1,7,13:18:27,29.475,29475 +957,831,1,7,13:18:46,30.981,30981 +957,828,1,7,13:18:48,35.393,35393 +957,828,2,10,13:25:31,1:44.980,104980 +957,20,2,15,13:34:24,29.163,29163 +957,8,2,16,13:36:00,30.462,30462 +957,13,2,16,13:36:16,29.403,29403 +957,826,2,16,13:36:19,30.327,30327 +957,822,2,16,13:36:28,29.282,29282 +957,831,2,16,13:36:33,30.143,30143 +957,154,2,16,13:36:36,30.882,30882 +957,835,2,16,13:36:38,55.697,55697 +957,1,2,17,13:37:20,28.728,28728 +957,3,2,17,13:37:29,29.715,29715 +957,815,2,17,13:37:40,28.915,28915 +957,817,2,17,13:37:41,29.813,29813 +957,832,2,17,13:37:56,29.895,29895 +957,807,2,17,13:38:06,29.867,29867 +957,4,2,17,13:38:11,28.799,28799 +957,18,2,17,13:38:19,29.588,29588 +957,825,2,17,13:38:33,29.201,29201 +957,821,2,17,13:38:37,29.884,29884 +957,837,2,17,13:38:55,30.135,30135 +957,830,2,18,13:39:11,29.429,29429 +957,835,3,19,13:42:54,41.486,41486 +957,13,3,38,14:13:29,29.346,29346 +957,4,3,39,14:15:22,28.936,28936 +957,825,3,40,14:17:42,28.450,28450 +958,18,1,7,14:14:06,22.229,22229 +958,836,1,9,14:16:53,23.486,23486 +958,18,2,10,14:18:47,16.486,16486 +958,831,1,11,14:19:45,22.778,22778 +958,20,1,14,14:23:42,21.640,21640 +958,807,1,14,14:24:03,22.014,22014 +958,154,1,14,14:24:03,22.427,22427 +958,817,1,15,14:25:05,22.241,22241 +958,4,1,15,14:25:20,22.099,22099 +958,821,1,15,14:25:32,22.828,22828 +958,1,1,16,14:26:24,21.441,21441 +958,830,1,16,14:26:36,22.389,22389 +958,832,1,16,14:26:49,22.960,22960 +958,822,1,16,14:26:54,21.704,21704 +958,3,1,17,14:27:51,21.233,21233 +958,828,1,17,14:28:54,23.873,23873 +958,825,1,24,14:38:48,21.990,21990 +958,826,1,24,14:39:02,22.105,22105 +958,13,1,25,14:40:31,21.793,21793 +958,835,1,26,14:41:39,21.892,21892 +958,815,1,27,14:43:00,22.689,22689 +958,18,3,28,14:45:17,22.718,22718 +958,8,1,29,14:45:43,21.951,21951 +958,837,1,29,14:46:44,24.254,24254 +958,817,2,33,14:51:15,22.006,22006 +958,836,2,35,14:55:42,22.765,22765 +958,154,2,36,14:56:35,22.303,22303 +958,825,2,36,14:56:36,22.051,22051 +958,821,2,37,14:58:00,22.520,22520 +958,830,2,38,14:58:38,21.687,21687 +958,807,2,39,15:00:48,23.350,23350 +958,835,2,39,15:00:49,21.665,21665 +958,831,2,39,15:01:04,22.965,22965 +958,815,2,40,15:02:11,29.941,29941 +958,1,2,41,15:02:31,21.773,21773 +958,20,2,41,15:02:46,21.535,21535 +958,3,2,42,15:03:58,22.351,22351 +958,832,2,42,15:04:57,22.417,22417 +958,822,2,43,15:06:27,21.405,21405 +958,4,2,44,15:07:43,21.897,21897 +958,828,2,45,15:10:26,23.198,23198 +958,826,2,46,15:11:10,27.951,27951 +958,8,2,50,15:15:47,21.857,21857 +958,828,3,62,15:35:34,23.308,23308 +958,13,2,65,15:39:36,22.366,22366 +959,835,1,2,14:06:10,19.298,19298 +959,826,1,7,14:13:06,23.243,23243 +959,831,1,7,14:13:07,29.865,29865 +959,815,1,8,14:14:25,19.233,19233 +959,832,1,9,14:15:46,22.751,22751 +959,13,1,9,14:15:48,18.590,18590 +959,830,1,11,14:18:08,19.017,19017 +959,3,1,11,14:18:12,19.693,19693 +959,825,1,11,14:18:33,19.034,19034 +959,817,1,12,14:19:31,18.964,18964 +959,822,1,12,14:19:43,18.796,18796 +959,807,1,12,14:19:45,19.608,19608 +959,836,1,12,14:20:05,19.813,19813 +959,20,1,13,14:20:57,19.230,19230 +959,18,1,13,14:21:12,19.427,19427 +959,837,1,13,14:21:38,31.317,31317 +959,1,1,14,14:22:05,18.650,18650 +959,8,1,14,14:22:21,22.393,22393 +959,4,1,14,14:22:38,19.258,19258 +959,828,1,16,14:25:46,20.148,20148 +959,154,1,17,14:26:51,20.301,20301 +959,831,2,19,14:30:11,19.944,19944 +959,821,1,25,14:38:07,20.099,20099 +959,835,2,25,14:38:38,26.688,26688 +959,13,2,26,14:39:36,36.395,36395 +959,836,2,26,14:39:43,19.626,19626 +959,3,2,27,14:40:04,18.936,18936 +959,815,2,27,14:40:47,19.223,19223 +959,830,2,28,14:41:22,19.137,19137 +959,4,2,28,14:42:04,19.440,19440 +959,826,2,28,14:42:23,20.227,20227 +959,832,2,29,14:43:41,19.747,19747 +959,20,2,31,14:45:38,19.472,19472 +959,18,2,31,14:46:05,19.124,19124 +959,8,2,32,14:47:02,19.142,19142 +959,807,2,32,14:47:20,19.144,19144 +959,825,2,32,14:47:45,19.159,19159 +959,817,2,33,14:48:12,18.738,18738 +959,837,2,32,14:48:35,20.919,20919 +959,822,2,33,14:48:41,19.183,19183 +959,1,2,34,14:49:19,18.504,18504 +959,828,2,33,14:49:34,19.318,19318 +959,831,3,42,15:02:30,19.755,19755 +959,815,3,43,15:02:46,19.379,19379 +959,154,2,43,15:03:00,19.863,19863 +959,3,3,44,15:03:08,28.364,28364 +959,807,3,44,15:03:45,19.907,19907 +959,830,3,45,15:04:32,18.967,18967 +959,817,3,46,15:05:49,18.979,18979 +959,20,3,46,15:06:01,19.000,19000 +959,835,3,45,15:06:33,19.725,19725 +959,18,3,46,15:06:40,19.268,19268 +959,1,3,47,15:06:57,18.475,18475 +959,8,3,47,15:07:26,19.525,19525 +959,836,3,46,15:07:36,19.658,19658 +959,4,3,47,15:08:04,19.127,19127 +959,821,2,47,15:08:16,19.326,19326 +959,826,3,49,15:11:20,19.264,19264 +959,837,3,49,15:12:22,21.186,21186 +959,832,3,51,15:13:57,19.547,19547 +960,830,1,1,14:05:46,31.235,31235 +960,831,1,1,14:05:52,26.390,26390 +960,20,1,1,14:05:53,22.403,22403 +960,8,1,1,14:06:21,1:27.084,87084 +960,13,1,2,14:07:44,22.484,22484 +960,807,1,6,14:15:53,23.564,23564 +960,8,2,5,14:15:56,23.061,23061 +960,815,1,6,14:16:04,23.783,23783 +960,154,1,6,14:16:08,23.705,23705 +960,835,1,6,14:16:08,22.698,22698 +960,839,1,6,14:16:18,28.718,28718 +960,822,1,7,14:18:36,22.190,22190 +960,821,1,7,14:18:38,23.486,23486 +960,3,1,9,14:24:29,16:36.150,996150 +960,817,1,9,14:24:30,16:38.401,998401 +960,807,2,9,14:24:31,16:38.468,998468 +960,4,1,9,14:24:32,16:38.234,998234 +960,1,1,9,14:24:34,16:40.478,1000478 +960,13,2,9,14:24:35,16:40.664,1000664 +960,815,2,9,14:24:36,16:40.284,1000284 +960,826,1,9,14:24:38,16:40.466,1000466 +960,835,2,9,14:24:40,16:40.234,1000234 +960,154,2,9,14:24:42,16:39.366,999366 +960,20,2,9,14:24:44,16:38.511,998511 +960,822,2,9,14:24:46,16:38.328,998328 +960,821,2,9,14:24:48,16:38.622,998622 +960,830,2,9,14:24:49,16:38.546,998546 +960,839,2,9,14:24:51,16:40.980,1000980 +960,831,2,9,14:24:52,16:41.198,1001198 +960,8,3,9,14:25:53,15:43.158,943158 +960,830,3,16,14:55:40,23.231,23231 +960,1,2,21,15:05:00,24.343,24343 +960,826,2,21,15:05:19,23.359,23359 +960,13,3,22,15:07:04,22.515,22515 +960,821,3,22,15:07:18,23.561,23561 +960,835,3,22,15:07:20,23.333,23333 +960,807,3,23,15:08:55,24.015,24015 +960,4,2,23,15:08:57,22.451,22451 +960,20,3,23,15:09:03,22.762,22762 +960,822,3,23,15:09:06,22.318,22318 +960,154,3,23,15:09:21,23.107,23107 +960,831,3,23,15:09:23,30.238,30238 +960,815,3,24,15:10:56,22.652,22652 +960,8,4,24,15:11:06,23.056,23056 +960,839,3,24,15:11:25,24.208,24208 +960,817,2,25,15:12:33,22.531,22531 +960,3,2,26,15:14:15,22.596,22596 +960,830,4,27,15:17:02,22.727,22727 +960,1,3,32,15:26:06,22.432,22432 +960,835,4,34,15:30:48,22.578,22578 +960,826,3,35,15:32:37,23.363,23363 +961,835,1,2,14:06:49,33.275,33275 +961,831,1,2,14:07:30,27.786,27786 +961,831,2,4,14:11:17,13:30.454,810454 +961,822,1,13,14:22:38,24.161,24161 +961,830,1,13,14:22:46,24.610,24610 +961,4,1,13,14:22:49,26.843,26843 +961,826,1,13,14:23:07,25.183,25183 +961,807,1,14,14:24:20,24.043,24043 +961,825,1,14,14:24:42,24.505,24505 +961,8,1,15,14:25:27,24.116,24116 +961,815,1,15,14:25:39,24.537,24537 +961,18,1,15,14:26:00,26.427,26427 +961,831,3,5,14:26:32,36.594,36594 +961,20,1,16,14:26:54,25.472,25472 +961,817,1,16,14:27:03,23.745,23745 +961,13,1,16,14:27:13,23.940,23940 +961,836,1,16,14:27:29,25.962,25962 +961,821,1,16,14:27:38,25.150,25150 +961,832,1,23,14:38:06,25.301,25301 +961,828,1,23,14:38:08,25.145,25145 +961,3,1,24,14:38:25,25.550,25550 +961,1,1,25,14:40:05,23.633,23633 +961,815,2,28,14:45:06,24.033,24033 +961,154,1,28,14:45:26,25.340,25340 +961,822,2,30,14:47:55,23.899,23899 +961,825,2,30,14:49:06,23.757,23757 +961,20,2,33,14:52:00,25.033,25033 +961,839,1,32,14:52:20,25.539,25539 +961,807,2,33,14:52:41,24.553,24553 +961,4,2,33,14:52:50,23.694,23694 +961,826,2,33,14:53:29,24.363,24363 +961,8,2,34,14:53:31,24.279,24279 +961,821,2,34,14:54:36,25.515,25515 +961,830,2,35,14:55:22,23.827,23827 +961,13,2,36,14:56:59,23.822,23822 +961,817,2,37,14:58:08,23.633,23633 +961,18,2,38,15:00:16,24.418,24418 +961,832,2,39,15:02:07,24.341,24341 +961,4,3,49,15:16:39,24.082,24082 +962,3,1,1,20:06:14,26.350,26350 +962,817,1,1,20:06:15,25.925,25925 +962,1,1,1,20:06:19,24.453,24453 +962,8,1,1,20:06:21,24.874,24874 +962,4,1,1,20:06:22,24.649,24649 +962,826,1,1,20:06:24,24.584,24584 +962,832,1,1,20:06:25,25.973,25973 +962,830,1,1,20:06:26,25.740,25740 +962,13,1,1,20:06:27,25.929,25929 +962,825,1,1,20:06:28,25.816,25816 +962,828,1,1,20:06:30,26.135,26135 +962,815,1,1,20:06:31,32.821,32821 +962,821,1,1,20:06:32,26.519,26519 +962,18,1,1,20:06:33,42.815,42815 +962,822,1,1,20:06:40,32.709,32709 +962,836,1,1,20:06:42,24.308,24308 +962,839,1,1,20:06:43,24.343,24343 +962,831,1,1,20:06:44,25.057,25057 +962,835,1,1,20:06:45,25.211,25211 +962,20,1,1,20:06:48,24.342,24342 +962,832,2,7,20:18:50,29.846,29846 +962,828,2,8,20:20:49,29.706,29706 +962,835,2,11,20:26:49,28.847,28847 +962,830,2,13,20:30:12,28.815,28815 +962,4,2,14,20:31:59,29.401,29401 +962,817,2,15,20:33:33,28.890,28890 +962,1,2,15,20:33:37,29.150,29150 +962,826,2,15,20:33:53,30.301,30301 +962,822,2,15,20:34:33,28.780,28780 +962,18,2,15,20:34:34,28.998,28998 +962,3,2,16,20:35:17,30.546,30546 +962,13,2,16,20:35:53,28.682,28682 +962,8,2,17,20:37:28,29.041,29041 +962,825,2,17,20:37:54,28.759,28759 +962,831,2,17,20:38:03,30.297,30297 +962,821,2,18,20:39:52,30.307,30307 +962,836,2,18,20:40:10,30.532,30532 +962,839,2,19,20:42:20,1:44.383,104383 +962,20,2,24,20:51:16,28.924,28924 +962,815,2,25,20:53:08,28.742,28742 +962,828,3,25,20:53:46,29.468,29468 +962,830,3,27,20:56:59,28.948,28948 +962,832,3,27,20:57:18,29.320,29320 +962,18,3,27,20:57:36,29.025,29025 +962,13,3,28,20:58:52,29.578,29578 +962,822,3,30,21:03:12,28.545,28545 +962,817,3,32,21:05:33,28.921,28921 +962,3,3,33,21:07:19,28.970,28970 +962,822,4,32,21:07:22,1:03.680,63680 +962,8,3,33,21:07:36,29.135,29135 +962,1,3,34,21:09:30,28.421,28421 +962,4,3,34,21:10:00,30.381,30381 +962,835,3,34,21:11:01,28.804,28804 +962,831,3,35,21:12:35,29.537,29537 +962,839,3,34,21:12:43,30.614,30614 +962,821,3,36,21:14:20,30.160,30160 +962,836,3,36,21:14:53,30.471,30471 +962,828,4,36,21:15:00,29.680,29680 +962,826,3,37,21:15:47,29.205,29205 +962,825,3,38,21:17:53,29.754,29754 +962,20,3,42,21:24:58,29.391,29391 +962,13,4,43,21:27:23,29.903,29903 +962,830,4,44,21:28:59,28.854,28854 +962,1,4,45,21:30:08,28.315,28315 +962,8,4,46,21:31:56,28.954,28954 +962,817,4,47,21:33:41,28.662,28662 +962,839,4,45,21:34:04,42.368,42368 +962,832,4,48,21:37:18,29.377,29377 +963,826,1,1,15:06:13,32.413,32413 +963,13,1,1,15:06:15,23.528,23528 +963,825,1,1,15:06:24,30.679,30679 +963,821,1,1,15:06:25,30.782,30782 +963,13,2,6,15:15:25,24.425,24425 +963,830,1,9,15:20:26,23.935,23935 +963,815,1,9,15:20:38,27.024,27024 +963,18,1,9,15:20:44,24.738,24738 +963,807,1,9,15:20:45,26.609,26609 +963,4,1,9,15:20:50,25.195,25195 +963,3,1,9,15:20:50,23.750,23750 +963,836,1,9,15:20:59,25.820,25820 +963,839,1,12,15:26:26,25.368,25368 +963,1,1,20,15:39:17,23.689,23689 +963,8,1,20,15:39:31,24.584,24584 +963,832,1,20,15:40:01,24.400,24400 +963,817,1,21,15:41:04,24.197,24197 +963,828,1,21,15:41:45,25.272,25272 +963,821,2,22,15:44:09,24.814,24814 +963,830,2,27,15:51:10,23.856,23856 +963,4,2,27,15:52:01,24.061,24061 +963,807,2,28,15:53:41,24.012,24012 +963,822,1,29,15:55:11,23.828,23828 +963,826,2,29,15:55:54,24.338,24338 +963,836,2,30,15:57:42,26.156,26156 +963,3,2,31,15:58:19,24.661,24661 +963,835,1,31,15:59:04,23.928,23928 +963,839,2,31,15:59:29,33.338,33338 +963,13,3,31,15:59:30,23.778,23778 +963,8,2,32,15:59:55,24.412,24412 +963,815,2,32,16:00:19,23.947,23947 +963,831,1,32,16:00:57,24.697,24697 +963,18,2,37,16:08:59,24.645,24645 +963,832,2,37,16:09:13,24.473,24473 +963,828,2,37,16:09:14,24.706,24706 +963,821,3,39,16:13:44,25.006,25006 +963,8,3,40,16:13:46,24.809,24809 +963,4,3,40,16:14:25,23.920,23920 +963,807,3,40,16:14:32,25.192,25192 +963,817,2,41,16:15:24,24.408,24408 +963,830,3,41,16:15:26,28.274,28274 +963,826,3,40,16:15:33,24.718,24718 +963,3,3,41,16:15:58,23.476,23476 +963,836,3,41,16:18:14,25.201,25201 +964,4,1,9,14:19:03,22.786,22786 +964,830,1,10,14:20:15,22.855,22855 +964,817,1,10,14:20:26,22.996,22996 +964,154,1,10,14:20:36,23.741,23741 +964,826,1,10,14:20:38,22.990,22990 +964,807,1,11,14:22:12,22.832,22832 +964,821,1,11,14:22:18,24.110,24110 +964,3,1,12,14:23:28,22.673,22673 +964,20,1,12,14:23:35,23.226,23226 +964,815,1,12,14:23:45,23.605,23605 +964,8,1,12,14:23:45,23.244,23244 +964,839,1,12,14:24:19,24.973,24973 +964,1,1,13,14:25:25,22.989,22989 +964,832,1,13,14:25:40,22.986,22986 +964,836,1,13,14:26:05,24.630,24630 +964,18,1,19,14:36:02,24.375,24375 +964,826,2,23,14:42:46,22.943,22943 +964,13,1,24,14:44:11,22.463,22463 +964,835,1,25,14:45:55,23.452,23452 +964,825,1,25,14:46:04,23.072,23072 +964,831,1,25,14:46:10,25.131,25131 +964,8,2,26,14:47:00,22.762,22762 +964,822,1,26,14:47:27,25.007,25007 +964,828,1,26,14:47:42,24.011,24011 +964,4,2,27,14:49:28,23.032,23032 +964,830,2,28,14:49:53,22.788,22788 +964,807,2,28,14:50:32,22.952,22952 +964,821,2,28,14:51:13,23.792,23792 +964,3,2,29,14:51:24,23.150,23150 +964,815,2,29,14:52:07,22.721,22721 +964,154,2,30,14:54:06,25.429,25429 +964,839,2,31,14:56:24,24.256,24256 +964,817,2,32,14:56:52,25.861,25861 +964,1,2,33,14:58:11,22.732,22732 +964,836,2,32,14:58:22,25.461,25461 +964,20,2,34,14:59:47,22.887,22887 +964,18,2,36,15:04:30,23.342,23342 +964,832,2,37,15:06:04,22.938,22938 +965,822,1,1,14:06:03,27.098,27098 +965,817,1,8,14:17:32,23.956,23956 +965,8,1,8,14:17:35,23.989,23989 +965,830,1,9,14:19:21,23.489,23489 +965,3,1,10,14:21:02,23.526,23526 +965,18,1,10,14:21:28,23.613,23613 +965,154,1,10,14:21:30,24.523,24523 +965,815,1,10,14:21:31,23.350,23350 +965,1,1,11,14:22:40,23.601,23601 +965,13,1,11,14:23:03,24.093,24093 +965,832,1,11,14:23:06,24.778,24778 +965,4,1,11,14:23:10,23.683,23683 +965,821,1,13,14:27:00,24.470,24470 +965,825,1,13,14:27:04,24.310,24310 +965,836,1,13,14:27:10,26.059,26059 +965,20,1,14,14:28:08,24.433,24433 +965,835,1,15,14:30:43,24.071,24071 +965,828,1,17,14:34:12,25.229,25229 +965,839,1,17,14:34:34,25.216,25216 +965,822,2,20,14:40:06,25.222,25222 +965,826,1,21,14:41:16,37.837,37837 +965,8,2,24,14:45:43,23.845,23845 +965,817,2,25,14:47:19,23.534,23534 +965,830,2,26,14:49:08,36.112,36112 +965,835,2,26,14:50:20,24.766,24766 +965,839,2,26,14:50:59,27.532,27532 +965,815,2,27,14:51:47,24.467,24467 +965,154,2,27,14:51:52,26.056,26056 +965,825,2,27,14:52:06,24.103,24103 +965,18,2,28,14:53:32,25.635,25635 +965,20,2,29,14:54:23,23.812,23812 +965,13,2,29,14:54:55,23.903,23903 +965,831,1,29,14:55:54,24.244,24244 +965,832,2,30,14:56:49,24.281,24281 +965,4,2,30,14:56:57,25.300,25300 +965,1,2,31,14:57:50,23.575,23575 +965,836,2,30,14:58:04,25.182,25182 +965,3,2,31,14:58:05,24.149,24149 +965,8,3,38,15:11:09,25.384,25384 +965,825,3,43,15:21:37,23.898,23898 +965,839,3,44,15:24:27,24.665,24665 +965,20,3,53,15:37:10,24.156,24156 +965,13,3,54,15:39:55,23.464,23464 +966,817,1,1,13:04:51,22.087,22087 +966,835,1,1,13:05:06,23.897,23897 +966,828,1,1,13:05:11,32.608,32608 +966,154,1,11,13:20:31,22.957,22957 +966,830,1,12,13:21:26,21.775,21775 +966,832,1,12,13:21:43,22.747,22747 +966,825,1,12,13:21:47,22.271,22271 +966,821,1,12,13:21:51,25.198,25198 +966,826,1,13,13:23:20,22.665,22665 +966,807,1,14,13:24:17,22.134,22134 +966,13,1,14,13:24:24,21.863,21863 +966,839,1,15,13:26:15,23.866,23866 +966,4,1,16,13:27:27,22.461,22461 +966,1,1,17,13:28:16,21.709,21709 +966,18,1,17,13:28:57,22.438,22438 +966,822,1,19,13:31:31,22.396,22396 +966,3,1,20,13:32:32,21.997,21997 +966,8,1,20,13:32:40,22.398,22398 +966,815,1,20,13:32:56,22.213,22213 +966,20,1,32,13:49:30,22.035,22035 +966,8,2,45,14:07:53,22.974,22974 +966,4,2,45,14:09:00,25.171,25171 +966,826,2,47,14:11:56,22.865,22865 +966,821,2,48,14:13:40,23.110,23110 +966,831,1,49,14:14:38,23.540,23540 +966,817,2,50,14:14:47,22.443,22443 +966,154,2,50,14:16:38,23.678,23678 +966,825,2,51,14:17:54,22.384,22384 +967,825,1,7,14:24:31,24.986,24986 +967,18,1,8,14:26:08,24.192,24192 +967,4,1,9,14:27:30,24.821,24821 +967,822,1,9,14:27:31,24.724,24724 +967,13,1,9,14:27:33,29.421,29421 +967,826,1,9,14:27:36,25.758,25758 +967,835,1,9,14:27:40,24.745,24745 +967,828,1,9,14:27:41,25.395,25395 +967,20,1,10,14:29:08,29.981,29981 +967,821,1,12,14:32:18,25.147,25147 +967,830,1,13,14:33:11,24.186,24186 +967,817,1,13,14:33:32,24.623,24623 +967,826,2,17,14:41:54,25.355,25355 +967,835,2,17,14:41:59,24.656,24656 +967,1,1,20,14:47:37,33:30.361,2010361 +967,3,1,20,14:47:40,33:29.747,2009747 +967,830,2,20,14:47:41,33:29.643,2009643 +967,807,1,20,14:47:44,33:28.504,2008504 +967,815,1,20,14:47:46,33:28.398,2008398 +967,832,1,20,14:47:48,33:28.828,2008828 +967,831,1,20,14:47:50,33:28.206,2008206 +967,817,2,20,14:47:52,33:28.600,2008600 +967,839,1,20,14:47:53,33:29.052,2009052 +967,836,1,20,14:47:56,33:28.464,2008464 +967,4,2,20,14:47:57,33:28.789,2008789 +967,822,2,20,14:47:59,33:28.595,2008595 +967,825,2,20,14:48:00,33:28.979,2008979 +967,18,2,20,14:48:04,33:30.062,2010062 +967,20,2,20,14:48:05,33:30.637,2010637 +967,13,2,20,14:48:08,33:29.630,2009630 +967,821,2,20,14:48:09,33:31.147,2011147 +967,826,3,20,14:48:11,33:31.266,2011266 +967,807,2,22,15:25:12,24.282,24282 +967,1,2,28,15:37:24,24:42.048,1482048 +967,3,2,28,15:37:26,24:41.624,1481624 +967,830,3,28,15:37:27,24:41.433,1481433 +967,815,2,28,15:37:29,24:42.290,1482290 +967,832,2,28,15:37:31,24:43.053,1483053 +967,831,2,28,15:37:32,24:43.214,1483214 +967,817,3,28,15:37:33,24:44.725,1484725 +967,839,2,28,15:37:35,24:45.092,1485092 +967,836,2,28,15:37:36,24:44.979,1484979 +967,4,3,28,15:37:39,24:43.818,1483818 +967,822,3,28,15:37:41,24:43.957,1483957 +967,825,3,28,15:37:43,24:44.474,1484474 +967,18,3,28,15:37:46,24:44.987,1484987 +967,20,3,28,15:37:49,24:43.923,1483923 +967,807,3,28,15:37:50,24:45.304,1485304 +967,13,3,28,15:37:51,24:45.969,1485969 +967,821,3,28,15:37:54,24:44.444,1484444 +967,826,4,28,15:37:56,24:44.388,1484388 +967,13,4,31,16:08:25,29.754,29754 +967,18,4,34,16:13:01,25.006,25006 +967,822,4,38,16:18:52,24.994,24994 +967,817,4,40,16:21:27,29.621,29621 +967,825,4,41,16:23:25,24.265,24265 +967,830,4,43,16:25:37,24.435,24435 +967,18,5,44,16:28:14,24.754,24754 +967,821,4,47,16:32:38,17.835,17835 +967,817,5,52,16:41:54,24.521,24521 +967,836,3,52,16:42:00,25.509,25509 +967,830,5,54,16:45:53,24.041,24041 +968,825,1,1,17:05:37,27.068,27068 +968,832,1,6,17:14:43,21.761,21761 +968,836,1,6,17:14:44,33.395,33395 +968,1,1,7,17:16:01,22.600,22600 +968,8,1,7,17:16:05,21.959,21959 +968,4,1,7,17:16:19,22.428,22428 +968,835,1,7,17:16:27,24.781,24781 +968,831,1,7,17:16:34,23.272,23272 +968,3,1,8,17:17:48,23.753,23753 +968,20,1,8,17:17:54,21.711,21711 +968,807,1,8,17:17:59,21.834,21834 +968,13,1,8,17:18:07,21.775,21775 +968,826,1,8,17:18:19,21.896,21896 +968,821,1,8,17:18:19,22.032,22032 +968,817,1,9,17:19:37,22.084,22084 +968,815,1,9,17:19:50,21.308,21308 +968,154,1,20,17:40:10,22.838,22838 +968,830,1,21,17:41:22,21.221,21221 +968,835,2,21,17:42:16,22.145,22145 +968,839,1,22,17:43:59,24.035,24035 +968,817,2,24,17:46:46,21.768,21768 +968,836,2,24,17:47:52,22.949,22949 +968,8,2,25,17:48:31,22.087,22087 +968,807,2,26,17:50:33,21.482,21482 +968,815,2,27,17:52:26,22.012,22012 +968,1,2,28,17:53:38,21.355,21355 +968,821,2,28,17:54:49,22.102,22102 +968,832,2,28,17:55:00,21.935,21935 +968,3,2,29,17:55:27,21.218,21218 +968,13,2,30,17:57:55,21.539,21539 +968,839,2,36,18:09:38,23.026,23026 +968,831,2,36,18:09:42,29.933,29933 +968,20,2,37,18:09:47,21.872,21872 +968,4,2,38,18:12:17,22.248,22248 +968,154,2,38,18:12:35,22.527,22527 +968,828,1,38,18:13:21,22.991,22991 +968,835,3,41,18:18:52,22.588,22588 +969,825,1,1,16:08:47,31.336,31336 +969,840,1,5,16:14:22,22.293,22293 +969,838,1,9,16:20:40,39.562,39562 +969,839,1,15,16:29:32,22.154,22154 +969,841,1,15,16:29:57,28.591,28591 +969,4,1,16,16:31:00,22.484,22484 +969,807,1,16,16:31:01,23.130,23130 +969,1,1,17,16:31:40,21.709,21709 +969,815,1,17,16:32:20,22.045,22045 +969,832,1,18,16:33:49,21.762,21762 +969,13,1,20,16:36:44,21.568,21568 +969,20,1,23,16:40:32,21.988,21988 +969,822,1,25,16:43:42,21.440,21440 +969,830,1,25,16:43:56,22.208,22208 +969,8,1,26,16:45:16,22.033,22033 +969,840,2,29,16:51:13,22.380,22380 +969,807,2,30,16:52:40,23.159,23159 +969,826,1,34,16:57:51,25.559,25559 +969,825,2,44,17:15:10,22.189,22189 +969,826,2,49,17:20:30,24.026,24026 +970,807,1,1,14:05:25,23.550,23550 +970,20,1,2,14:07:35,22.906,22906 +970,826,1,2,14:07:46,24.016,24016 +970,4,1,2,14:07:48,24.250,24250 +970,13,1,2,14:07:51,23.123,23123 +970,815,1,2,14:07:52,24.030,24030 +970,825,1,2,14:07:53,23.809,23809 +970,828,1,2,14:07:54,27.934,27934 +970,839,1,2,14:07:57,17.673,17673 +970,154,1,2,14:08:00,30.654,30654 +970,841,1,2,14:08:01,29.443,29443 +970,838,1,2,14:08:01,25.146,25146 +970,1,1,4,14:12:08,22.999,22999 +970,822,1,4,14:12:17,32.287,32287 +970,817,1,4,14:12:20,17.340,17340 +970,8,1,4,14:12:21,23.847,23847 +970,830,1,4,14:12:23,23.071,23071 +970,20,2,4,14:12:35,17.354,17354 +970,832,1,4,14:12:47,17.337,17337 +970,839,2,4,14:12:49,33.491,33491 +970,4,2,4,14:12:55,17.304,17304 +970,826,2,4,14:13:00,17.320,17320 +970,13,2,4,14:13:01,17.324,17324 +970,815,2,4,14:13:01,17.416,17416 +970,825,2,4,14:13:03,17.296,17296 +970,835,1,4,14:13:06,17.291,17291 +970,838,2,4,14:13:08,17.325,17325 +970,807,2,4,14:13:11,17.336,17336 +970,828,2,4,14:13:14,17.341,17341 +970,154,2,4,14:13:23,17.303,17303 +970,1,2,5,14:15:08,17.616,17616 +970,817,2,5,14:15:09,23.613,23613 +970,8,2,5,14:15:18,17.877,17877 +970,830,2,5,14:15:19,17.651,17651 +970,822,2,5,14:15:20,17.343,17343 +970,20,3,5,14:15:24,17.362,17362 +970,832,2,5,14:15:33,17.340,17340 +970,4,3,5,14:15:40,17.302,17302 +970,826,3,5,14:15:46,17.324,17324 +970,13,3,5,14:15:48,17.321,17321 +970,815,3,5,14:15:49,17.312,17312 +970,825,3,5,14:15:49,17.298,17298 +970,839,3,5,14:15:52,17.356,17356 +970,835,2,5,14:15:55,17.291,17291 +970,838,3,5,14:15:57,17.295,17295 +970,807,3,5,14:15:58,17.362,17362 +970,828,3,5,14:16:02,17.344,17344 +970,154,3,5,14:16:10,24.114,24114 +970,1,3,6,14:17:55,17.737,17737 +970,817,3,6,14:18:00,17.480,17480 +970,8,3,6,14:18:03,17.435,17435 +970,830,3,6,14:18:05,17.421,17421 +970,822,3,6,14:18:06,17.323,17323 +970,20,4,6,14:18:10,17.370,17370 +970,4,4,6,14:18:16,17.302,17302 +970,832,3,6,14:18:18,17.374,17374 +970,826,4,6,14:18:28,17.322,17322 +970,13,4,6,14:18:29,17.377,17377 +970,815,4,6,14:18:30,18.225,18225 +970,825,4,6,14:18:34,17.299,17299 +970,839,4,6,14:18:36,17.366,17366 +970,835,3,6,14:18:39,17.301,17301 +970,838,4,6,14:18:41,17.292,17292 +970,807,4,6,14:18:43,17.359,17359 +970,828,4,6,14:18:46,17.344,17344 +970,154,4,6,14:18:48,17.314,17314 +970,815,5,20,14:43:03,23.057,23057 +970,13,5,24,14:50:13,23.451,23451 +970,832,4,28,14:56:06,22.840,22840 +970,830,4,29,14:57:33,22.505,22505 +970,835,4,30,15:00:32,23.993,23993 +970,825,5,32,15:03:12,23.463,23463 +970,817,4,33,15:04:09,22.505,22505 +970,807,5,33,15:05:10,40.144,40144 +970,20,5,34,15:05:37,22.443,22443 +970,822,4,35,15:07:45,24.317,24317 +970,1,4,36,15:08:39,22.668,22668 +970,154,5,35,15:08:45,23.211,23211 +970,8,4,39,15:14:04,23.119,23119 +970,839,5,42,15:20:06,22.926,22926 +970,13,6,48,15:30:29,22.517,22517 +970,815,6,49,15:31:25,22.979,22979 +971,840,1,8,18:16:59,24.915,24915 +971,20,1,10,18:19:52,24.702,24702 +971,830,1,11,18:21:30,25.174,25174 +971,839,1,11,18:21:47,24.664,24664 +971,836,1,11,18:21:59,26.542,26542 +971,8,1,12,18:23:10,26.430,26430 +971,154,1,12,18:23:23,25.075,25075 +971,832,1,12,18:23:26,25.001,25001 +971,822,1,13,18:24:52,28.368,28368 +971,1,1,13,18:24:59,30.687,30687 +971,817,1,13,18:24:59,25.312,25312 +971,13,1,13,18:25:06,25.704,25704 +971,807,1,13,18:25:13,26.634,26634 +971,815,1,13,18:25:24,24.332,24332 +971,835,1,13,18:25:31,27.466,27466 +971,4,1,13,18:25:31,24.922,24922 +971,826,1,13,18:25:35,25.204,25204 +971,822,2,30,18:54:49,24.540,24540 +971,154,2,31,18:56:52,24.965,24965 +971,20,2,33,18:59:27,24.314,24314 +971,828,1,33,19:00:33,25.576,25576 +971,815,2,36,19:04:49,24.630,24630 +971,807,2,36,19:04:58,25.135,25135 +971,4,2,36,19:05:15,24.723,24723 +971,8,2,37,19:06:10,25.856,25856 +971,13,2,37,19:06:22,24.240,24240 +971,839,2,37,19:06:38,24.505,24505 +971,835,2,37,19:06:55,26.420,26420 +971,817,2,39,19:09:27,25.200,25200 +971,1,2,41,19:12:14,30.682,30682 +971,826,2,41,19:13:18,25.246,25246 +972,838,1,1,15:08:55,30.006,30006 +972,828,1,1,15:08:58,32.235,32235 +972,836,1,2,15:11:28,31.266,31266 +972,836,2,20,15:43:16,30.799,30799 +972,13,1,21,15:44:10,29.923,29923 +972,825,1,21,15:44:30,36.559,36559 +972,826,1,21,15:44:36,29.991,29991 +972,828,2,21,15:44:59,30.655,30655 +972,832,1,24,15:49:33,29.973,29973 +972,838,2,24,15:49:57,35.998,35998 +972,839,1,26,15:52:42,30.253,30253 +972,840,1,26,15:52:58,29.791,29791 +972,822,1,27,15:53:23,29.356,29356 +972,815,1,27,15:54:17,29.868,29868 +972,8,1,29,15:56:49,30.152,30152 +972,830,1,29,15:57:19,29.567,29567 +972,1,1,30,15:58:36,29.739,29739 +972,20,1,34,16:04:56,30.097,30097 +972,807,1,40,16:16:07,30.280,30280 +972,13,2,41,16:17:53,29.920,29920 +973,826,1,1,14:04:51,22.235,22235 +973,13,1,1,14:05:02,40.612,40612 +973,835,1,2,14:06:27,23.159,23159 +973,4,1,12,14:21:10,22.690,22690 +973,840,1,12,14:21:16,22.100,22100 +973,838,1,12,14:21:24,22.547,22547 +973,825,1,13,14:22:35,22.703,22703 +973,832,1,13,14:22:36,22.432,22432 +973,13,2,13,14:23:17,22.292,22292 +973,20,1,14,14:23:19,22.499,22499 +973,807,1,15,14:25:28,22.490,22490 +973,839,1,16,14:26:51,22.616,22616 +973,815,1,18,14:29:42,25.082,25082 +973,828,1,18,14:30:11,22.995,22995 +973,154,1,19,14:31:26,22.866,22866 +973,1,1,21,14:33:26,21.544,21544 +973,817,1,21,14:33:54,21.811,21811 +973,835,2,21,14:35:11,22.762,22762 +973,822,1,26,14:41:01,21.689,21689 +973,4,2,31,14:49:39,23.354,23354 +973,828,2,32,14:51:03,22.775,22775 +973,836,1,33,14:52:14,23.445,23445 +973,807,2,33,14:52:15,22.362,22362 +973,825,2,33,14:52:15,23.814,23814 +973,826,2,33,14:52:37,22.117,22117 +973,840,2,33,14:52:52,22.071,22071 +973,13,3,33,14:53:10,23.066,23066 +973,815,2,34,14:53:46,23.107,23107 +973,839,2,34,14:53:58,22.643,22643 +973,832,2,34,14:54:20,21.934,21934 +973,154,2,34,14:54:22,22.641,22641 +973,1,2,36,14:56:30,21.722,21722 +973,20,2,37,14:57:53,22.307,22307 +973,817,2,38,15:00:10,21.918,21918 +973,835,3,42,15:07:31,24.750,24750 +973,4,3,51,15:20:24,22.923,22923 +973,825,3,63,15:37:43,25.052,25052 +974,836,1,1,14:04:27,25.813,25813 +974,18,1,1,14:04:29,24.465,24465 +974,815,1,16,14:23:49,31.313,31313 +974,830,1,32,14:44:07,25.343,25343 +974,822,1,33,14:45:24,24.308,24308 +974,8,1,34,14:46:35,24.833,24833 +974,828,1,35,14:49:08,24.949,24949 +974,826,1,36,14:49:48,24.406,24406 +974,839,1,36,14:50:06,24.299,24299 +974,832,1,37,14:50:54,24.427,24427 +974,825,1,37,14:51:04,24.979,24979 +974,817,1,38,14:51:46,24.183,24183 +974,13,1,38,14:52:42,24.353,24353 +974,20,1,39,14:52:55,24.306,24306 +974,839,2,39,14:54:19,24.496,24496 +974,18,2,39,14:54:53,26.057,26057 +974,154,1,40,14:54:55,24.660,24660 +974,840,1,41,14:56:46,26.690,26690 +974,825,2,42,14:57:54,26.040,26040 +974,835,1,42,14:58:05,25.472,25472 +974,838,1,43,14:58:56,24.768,24768 +974,1,1,46,15:02:38,24.155,24155 +974,830,2,60,15:20:48,25.678,25678 +974,839,3,60,15:22:40,24.642,24642 +974,13,2,62,15:24:59,25.123,25123 +974,815,2,63,15:26:16,25.026,25026 +974,840,2,67,15:33:42,25.248,25248 +974,815,3,72,15:40:06,35.485,35485 +975,154,1,1,14:04:59,31.256,31256 +975,836,1,1,14:05:02,51.757,51757 +975,20,1,5,14:11:32,31.596,31596 +975,807,1,11,14:19:40,26.764,26764 +975,835,1,11,14:19:55,24.423,24423 +975,828,1,11,14:19:57,24.047,24047 +975,826,1,15,14:25:55,18.088,18088 +975,8,1,17,14:28:23,23.500,23500 +975,817,1,18,14:29:37,23.309,23309 +975,815,1,19,14:30:56,23.229,23229 +975,822,1,23,14:35:53,22.946,22946 +975,840,1,25,14:39:14,22.790,22790 +975,1,1,32,14:47:15,23.061,23061 +975,839,1,32,14:47:42,23.409,23409 +975,836,2,40,14:59:18,24.202,24202 +975,8,2,41,14:59:29,23.760,23760 +975,4,1,42,15:01:08,23.526,23526 +975,838,1,45,15:05:22,23.267,23267 +975,825,1,46,15:06:28,28.869,28869 +975,20,2,49,15:09:44,23.345,23345 +975,826,2,53,15:15:19,1:46.374,106374 +976,822,1,1,17:07:00,36.262,36262 +976,154,1,3,17:09:40,20.776,20776 +976,817,1,5,17:13:04,23.361,23361 +976,838,1,5,17:13:19,21.423,21423 +976,1,1,12,17:25:22,20.418,20418 +976,20,1,12,17:25:26,20.059,20059 +976,815,1,12,17:25:35,20.598,20598 +976,8,1,12,17:25:39,23.237,23237 +976,13,1,12,17:25:43,21.453,21453 +976,839,1,12,17:25:45,20.493,20493 +976,822,2,11,17:25:58,20.407,20407 +976,825,1,12,17:26:11,20.391,20391 +976,4,1,12,17:26:36,21.217,21217 +976,832,1,12,17:26:37,21.040,21040 +976,828,1,12,17:26:45,23.906,23906 +976,836,1,12,17:26:49,31.122,31122 +976,840,1,13,17:28:26,22.625,22625 +976,807,1,13,17:28:32,21.263,21263 +976,817,2,13,17:29:01,20.198,20198 +976,836,2,13,17:29:45,22.356,22356 +976,154,2,14,17:31:36,21.069,21069 +976,1,2,17,17:39:17,15.234,15234 +976,20,2,17,17:39:18,15.174,15174 +976,815,2,17,17:39:19,15.278,15278 +976,13,2,17,17:39:20,15.033,15033 +976,839,2,17,17:39:21,15.061,15061 +976,8,2,17,17:39:22,15.049,15049 +976,840,2,17,17:39:23,15.327,15327 +976,807,2,17,17:39:24,15.638,15638 +976,817,3,17,17:39:26,15.135,15135 +976,825,2,17,17:39:27,15.128,15128 +976,4,2,17,17:39:29,15.104,15104 +976,832,2,17,17:39:31,14.966,14966 +976,838,2,17,17:39:32,15.097,15097 +976,154,3,17,17:39:33,15.073,15073 +976,828,2,17,17:39:34,26.051,26051 +976,836,3,17,17:39:36,34.847,34847 +976,822,3,17,17:39:52,14.978,14978 +976,815,3,20,17:47:36,26:34.609,1594609 +976,839,3,20,17:47:51,31.657,31657 +976,8,3,20,17:48:02,26:23.848,1583848 +976,836,4,21,17:50:37,22.390,22390 +976,1,3,22,17:53:26,21:50.768,1310768 +976,20,3,22,17:53:28,21:50.808,1310808 +976,13,3,22,17:53:30,21:50.671,1310671 +976,840,3,22,17:53:32,21:52.728,1312728 +976,817,4,22,17:53:34,21:53.343,1313343 +976,807,3,22,17:53:35,21:53.641,1313641 +976,825,3,22,17:53:37,21:52.704,1312704 +976,4,3,22,17:53:38,21:53.187,1313187 +976,832,3,22,17:53:40,21:53.693,1313693 +976,154,4,22,17:53:42,21:53.665,1313665 +976,828,3,22,17:53:45,21:54.950,1314950 +976,838,3,22,17:53:48,21:54.189,1314189 +976,822,4,22,17:53:50,21:53.511,1313511 +976,839,4,22,17:53:52,21:53.873,1313873 +976,836,5,22,17:53:54,21:55.645,1315645 +976,1,4,31,18:32:21,27.025,27025 +976,20,4,33,18:35:52,29.317,29317 +976,838,4,33,18:36:35,20.446,20446 +976,815,4,33,18:38:09,14.951,14951 +976,8,4,33,18:38:11,14.943,14943 +976,154,5,36,18:42:11,24.486,24486 +977,826,1,1,14:04:23,33.607,33607 +977,826,2,9,14:14:29,16.139,16139 +977,807,1,14,14:19:44,21.977,21977 +977,1,1,31,14:38:58,20.761,20761 +977,838,1,31,14:39:43,21.714,21714 +977,817,1,33,14:41:11,21.713,21713 +977,20,1,34,14:42:15,21.750,21750 +977,835,1,34,14:43:13,22.233,22233 +977,828,1,34,14:43:40,22.339,22339 +977,815,1,35,14:44:03,22.030,22030 +977,840,1,35,14:44:21,21.332,21332 +977,836,1,35,14:44:41,22.414,22414 +977,154,1,36,14:45:10,22.026,22026 +977,822,1,41,14:50:11,22.387,22387 +977,832,1,40,14:50:18,21.659,21659 +977,839,1,42,14:52:17,22.176,22176 +977,8,1,44,14:53:59,21.662,21662 +977,838,2,44,14:55:17,16.206,16206 +977,13,1,47,14:58:07,20.977,20977 +977,826,3,55,15:09:24,22.274,22274 +978,826,1,1,13:08:08,45.538,45538 +978,836,1,2,13:10:06,29.861,29861 +978,836,2,3,13:12:33,29.941,29941 +978,826,2,9,13:23:00,22.895,22895 +978,20,1,18,13:36:44,28.363,28363 +978,830,1,19,13:38:17,29.147,29147 +978,839,1,20,13:40:15,29.194,29194 +978,4,1,20,13:40:30,28.269,28269 +978,840,1,22,13:43:38,29.849,29849 +978,815,1,23,13:45:01,28.942,28942 +978,154,1,23,13:45:11,28.361,28361 +978,8,1,24,13:45:53,28.476,28476 +978,807,1,24,13:46:27,30.841,30841 +978,1,1,25,13:47:14,27.733,27733 +978,13,1,25,13:48:18,27.583,27583 +978,838,1,26,13:49:50,29.337,29337 +978,826,3,27,13:52:00,28.630,28630 +978,828,1,28,13:53:19,28.825,28825 +978,836,3,31,13:58:18,31.250,31250 +978,822,1,32,13:58:23,27.858,27858 +978,817,1,32,13:59:09,27.910,27910 +978,825,1,37,14:07:18,28.099,28099 +978,840,2,42,14:15:32,28.335,28335 +978,154,2,43,14:16:53,28.998,28998 +978,8,2,49,14:24:46,29.057,29057 +978,830,2,49,14:25:07,28.056,28056 +978,20,2,50,14:27:09,35.204,35204 +979,828,1,1,14:05:01,25.179,25179 +979,836,1,3,14:09:26,24.213,24213 +979,154,1,20,14:35:03,22.638,22638 +979,836,2,28,14:46:37,22.998,22998 +979,840,1,29,14:47:41,21.804,21804 +979,822,1,30,14:48:04,22.681,22681 +979,1,1,31,14:49:30,21.338,21338 +979,825,1,31,14:50:24,22.684,22684 +979,20,1,32,14:50:43,22.317,22317 +979,8,1,33,14:52:06,21.919,21919 +979,815,1,34,14:54:12,24.017,24017 +979,814,1,34,14:55:06,22.399,22399 +979,832,1,35,14:55:33,22.745,22745 +979,4,1,35,14:55:33,22.399,22399 +979,839,1,35,14:55:44,22.441,22441 +979,826,1,40,15:02:57,22.273,22273 +979,830,1,42,15:04:37,33.605,33605 +979,838,1,42,15:05:22,28.616,28616 +979,807,1,45,15:09:34,31.860,31860 +979,835,1,46,15:11:22,22.684,22684 +979,828,2,63,15:36:20,24.097,24097 +980,835,1,8,14:19:01,26.202,26202 +980,828,1,8,14:19:07,23.999,23999 +980,825,1,9,14:20:51,22.828,22828 +980,840,1,9,14:20:55,24.697,24697 +980,839,1,10,14:22:35,23.364,23364 +980,154,1,10,14:22:38,22.925,22925 +980,4,1,10,14:22:43,24.158,24158 +980,807,1,11,14:24:21,23.507,23507 +980,13,1,11,14:24:38,22.667,22667 +980,1,1,12,14:25:45,22.037,22037 +980,815,1,12,14:26:21,23.289,23289 +980,822,1,13,14:27:44,22.963,22963 +980,20,1,14,14:29:26,22.443,22443 +980,817,1,14,14:29:45,22.900,22900 +980,8,1,15,14:31:33,22.533,22533 +980,8,2,17,14:35:29,30.373,30373 +980,826,1,18,14:37:55,22.444,22444 +980,838,1,18,14:38:00,26.894,26894 +980,832,1,19,14:39:43,24.095,24095 +980,828,2,23,14:47:51,23.221,23221 +980,815,2,25,14:50:45,28.594,28594 +980,839,2,27,14:54:26,23.200,23200 +980,8,3,29,14:57:52,22.963,22963 +980,807,2,29,14:58:06,23.539,23539 +980,154,2,29,14:58:27,22.756,22756 +980,13,2,29,14:58:40,23.092,23092 +980,839,3,29,14:58:44,29.646,29646 +980,832,2,29,14:58:50,24.370,24370 +980,840,2,29,14:59:01,23.109,23109 +980,815,3,29,14:59:10,26.574,26574 +980,1,2,30,14:59:18,22.357,22357 +980,20,2,30,14:59:18,25.650,25650 +980,822,2,30,14:59:31,22.919,22919 +980,817,2,30,14:59:47,23.180,23180 +980,828,3,29,14:59:55,23.792,23792 +980,825,2,30,15:01:09,22.908,22908 +980,826,2,30,15:01:33,23.341,23341 +980,835,2,30,15:01:36,24.674,24674 +980,838,2,30,15:01:43,26.187,26187 +980,825,3,34,15:10:50,23.737,23737 +981,154,1,3,14:08:10,33.433,33433 +981,830,1,3,14:08:20,39.888,39888 +981,807,1,9,14:16:50,24.418,24418 +981,825,1,11,14:19:43,24.384,24384 +981,832,1,13,14:22:44,24.865,24865 +981,8,1,15,14:25:17,25.367,25367 +981,839,1,16,14:26:42,24.432,24432 +981,840,1,17,14:28:09,26.131,26131 +981,828,1,18,14:30:19,25.310,25310 +981,826,1,19,14:31:23,25.826,25826 +981,836,1,20,14:33:19,25.212,25212 +981,13,1,21,14:33:59,25.078,25078 +981,835,1,25,14:40:16,31.008,31008 +981,830,2,27,14:43:27,24.173,24173 +981,4,1,30,14:47:38,24.442,24442 +981,20,1,31,14:48:03,24.307,24307 +981,1,1,32,14:49:05,23.725,23725 +981,815,1,32,14:49:55,25.377,25377 +981,822,1,33,14:50:35,23.728,23728 +981,154,2,34,14:53:53,24.307,24307 +981,817,1,37,14:56:51,23.951,23951 +982,1,1,1,20:06:27,30.442,30442 +982,817,1,1,20:06:29,30.737,30737 +982,807,1,1,20:06:30,31.032,31032 +982,815,1,1,20:06:31,30.709,30709 +982,822,1,1,20:06:33,30.444,30444 +982,835,1,1,20:06:33,30.785,30785 +982,838,1,1,20:06:35,31.550,31550 +982,839,1,1,20:06:36,31.793,31793 +982,832,1,1,20:06:37,32.689,32689 +982,825,1,1,20:06:39,32.701,32701 +982,826,1,1,20:06:40,33.077,33077 +982,4,1,1,20:06:42,36.900,36900 +982,840,1,1,20:06:43,37.403,37403 +982,13,1,1,20:06:44,38.464,38464 +982,154,1,1,20:06:45,39.455,39455 +982,828,1,1,20:06:48,40.125,40125 +982,836,1,1,20:06:49,40.506,40506 +982,1,2,2,20:09:49,24.368,24368 +982,817,2,2,20:09:51,24.402,24402 +982,807,2,2,20:09:52,25.093,25093 +982,815,2,2,20:09:53,25.315,25315 +982,822,2,2,20:09:55,25.367,25367 +982,835,2,2,20:09:56,26.206,26206 +982,838,2,2,20:09:58,26.553,26553 +982,839,2,2,20:09:59,26.532,26532 +982,832,2,2,20:10:00,27.452,27452 +982,825,2,2,20:10:02,26.903,26903 +982,826,2,2,20:10:04,27.015,27015 +982,4,2,2,20:10:05,29.306,29306 +982,840,2,2,20:10:07,29.294,29294 +982,13,2,2,20:10:08,30.790,30790 +982,154,2,2,20:10:10,31.320,31320 +982,828,2,2,20:10:12,38.886,38886 +982,836,2,2,20:10:14,45.875,45875 +982,1,3,3,20:13:00,24.337,24337 +982,817,3,3,20:13:01,24.362,24362 +982,807,3,3,20:13:03,24.964,24964 +982,815,3,3,20:13:04,25.288,25288 +982,822,3,3,20:13:05,25.432,25432 +982,835,3,3,20:13:07,25.113,25113 +982,838,3,3,20:13:08,24.543,24543 +982,839,3,3,20:13:09,24.664,24664 +982,832,3,3,20:13:10,25.356,25356 +982,825,3,3,20:13:11,25.509,25509 +982,826,3,3,20:13:13,25.003,25003 +982,4,3,3,20:13:15,25.626,25626 +982,840,3,3,20:13:16,25.584,25584 +982,13,3,3,20:13:17,25.731,25731 +982,154,3,3,20:13:19,26.228,26228 +982,828,3,3,20:13:21,27.591,27591 +982,836,3,3,20:13:22,27.865,27865 +982,817,4,11,20:30:55,29.658,29658 +982,815,4,11,20:31:20,30.128,30128 +982,839,4,11,20:31:38,31.336,31336 +982,825,4,11,20:31:52,30.132,30132 +982,807,4,12,20:33:56,30.725,30725 +982,835,4,12,20:34:10,30.015,30015 +982,838,4,12,20:34:19,30.390,30390 +982,828,4,13,20:37:20,31.714,31714 +982,13,4,17,20:46:40,29.685,29685 +982,836,4,21,20:55:34,32.249,32249 +982,825,5,24,21:01:10,30.504,30504 +982,13,5,24,21:01:38,30.048,30048 +982,840,4,26,21:05:07,29.412,29412 +982,832,4,27,21:06:44,30.093,30093 +982,838,5,27,21:06:56,36.138,36138 +982,154,4,27,21:07:18,29.049,29049 +982,839,5,27,21:07:19,29.173,29173 +982,828,5,27,21:07:36,50.617,50617 +982,817,5,28,21:08:22,29.118,29118 +982,822,4,28,21:08:39,29.089,29089 +982,807,5,28,21:08:46,30.005,30005 +982,815,5,28,21:08:49,29.186,29186 +982,1,4,29,21:10:11,28.466,28466 +982,836,5,28,21:10:50,31.094,31094 +982,835,5,29,21:10:52,30.038,30038 +982,828,6,31,21:17:01,30.067,30067 +982,13,6,37,21:27:05,29.671,29671 +982,807,6,38,21:28:16,1:08.357,68357 +982,839,6,38,21:29:07,29.134,29134 +982,825,6,38,21:29:17,29.379,29379 +982,836,6,37,21:30:39,32.183,32183 +983,839,1,2,15:06:57,24.456,24456 +983,807,1,9,15:18:36,24.872,24872 +983,825,1,10,15:20:13,23.766,23766 +983,13,1,11,15:21:49,23.791,23791 +983,154,1,11,15:22:00,24.912,24912 +983,840,1,12,15:23:27,24.109,24109 +983,842,1,12,15:23:37,25.044,25044 +983,838,1,13,15:25:04,24.580,24580 +983,835,1,13,15:25:12,25.558,25558 +983,1,1,26,15:45:40,23.489,23489 +983,4,1,26,15:46:31,25.798,25798 +983,830,1,27,15:47:09,23.652,23652 +983,20,1,27,15:47:42,23.695,23695 +983,822,1,28,15:49:19,23.676,23676 +983,817,1,29,15:50:36,24.199,24199 +983,815,1,30,15:52:42,24.314,24314 +983,154,2,33,15:58:35,24.419,24419 +983,836,1,37,16:05:08,25.060,25060 +983,828,1,38,16:07:14,24.719,24719 +983,807,2,50,16:26:10,25.714,25714 +984,836,1,2,14:07:36,24.424,24424 +984,836,2,3,14:09:55,24.918,24918 +984,840,1,4,14:11:34,23.475,23475 +984,838,1,9,14:20:17,23.430,23430 +984,13,1,17,14:33:15,22.956,22956 +984,825,1,19,14:36:33,23.065,23065 +984,839,1,20,14:37:56,24.078,24078 +984,830,1,21,14:39:13,22.620,22620 +984,815,1,21,14:39:37,23.634,23634 +984,1,1,22,14:40:43,22.724,22724 +984,842,1,22,14:41:29,23.344,23344 +984,154,1,23,14:43:03,22.781,22781 +984,817,1,25,14:45:43,23.796,23796 +984,4,1,25,14:46:28,24.636,24636 +984,836,3,25,14:47:08,24.952,24952 +984,8,1,28,14:50:46,23.699,23699 +984,822,1,30,14:53:46,22.876,22876 +984,838,2,34,15:01:19,23.399,23399 +984,840,2,35,15:02:52,22.736,22736 +984,807,1,38,15:07:08,23.199,23199 +984,835,1,39,15:09:02,25.618,25618 +984,842,2,39,15:09:07,24.413,24413 +985,825,1,1,14:05:31,25.112,25112 +985,836,1,3,14:09:08,31.334,31334 +985,843,1,8,14:17:38,24.400,24400 +985,840,1,10,14:21:03,24.949,24949 +985,817,1,12,14:23:58,23.604,23604 +985,815,1,12,14:24:19,24.326,24326 +985,839,1,14,14:27:34,24.502,24502 +985,4,1,14,14:27:37,23.796,23796 +985,8,1,16,14:30:37,24.300,24300 +985,154,1,16,14:31:15,24.897,24897 +985,826,1,17,14:32:52,24.883,24883 +985,822,1,18,14:34:03,23.459,23459 +985,1,1,19,14:35:36,23.402,23402 +985,832,1,19,14:36:13,24.525,24525 +985,20,1,20,14:37:29,23.575,23575 +985,828,1,21,14:40:02,25.841,25841 +985,830,1,24,14:44:17,24.325,24325 +985,838,1,25,14:46:48,23.578,23578 +985,13,1,29,14:53:26,23.772,23772 +985,843,2,35,15:04:07,24.229,24229 +985,840,2,36,15:05:47,24.497,24497 +985,830,2,37,15:06:06,23.423,23423 +985,8,2,38,15:07:41,23.620,23620 +985,825,2,49,15:28:07,25.268,25268 +985,822,2,52,15:31:05,23.254,23254 +986,20,1,1,13:04:31,32.037,32037 +986,1,1,1,13:04:57,29.283,29283 +986,832,1,2,13:06:13,22.852,22852 +986,13,1,3,13:07:22,22.055,22055 +986,836,1,4,13:08:55,23.358,23358 +986,815,1,18,13:27:58,22.903,22903 +986,807,1,19,13:29:17,22.587,22587 +986,839,1,20,13:30:35,22.665,22665 +986,828,1,28,13:42:13,22.736,22736 +986,825,1,31,13:46:09,22.507,22507 +986,838,1,31,13:46:25,28.044,28044 +986,830,1,32,13:46:33,22.570,22570 +986,842,1,31,13:46:43,22.709,22709 +986,154,1,31,13:46:45,28.761,28761 +986,822,1,32,13:46:46,21.758,21758 +986,1,2,31,13:46:57,23.315,23315 +986,832,2,31,13:47:07,23.035,23035 +986,8,1,32,13:47:13,22.540,22540 +986,840,1,32,13:47:37,21.825,21825 +986,20,2,32,13:48:10,22.379,22379 +986,4,1,32,13:48:13,22.655,22655 +986,815,2,50,14:12:39,22.528,22528 +986,154,2,62,14:30:09,23.035,23035 +987,20,1,1,14:04:42,19.097,19097 +987,822,1,1,14:04:43,18.717,18717 +987,8,1,1,14:04:45,19.433,19433 +987,830,1,1,14:04:47,18.827,18827 +987,4,1,1,14:04:49,18.487,18487 +987,13,1,1,14:04:50,18.238,18238 +987,815,1,1,14:04:51,18.417,18417 +987,807,1,1,14:04:52,18.927,18927 +987,832,1,1,14:04:54,19.208,19208 +987,842,1,1,14:04:55,19.430,19430 +987,828,1,1,14:04:58,19.603,19603 +987,843,1,1,14:04:59,19.936,19936 +987,840,1,1,14:05:00,20.146,20146 +987,836,1,1,14:05:01,26.439,26439 +987,154,1,1,14:05:02,25.845,25845 +987,1,1,1,14:05:05,19.377,19377 +987,817,1,1,14:05:06,25.946,25946 +987,20,2,2,14:07:01,17.817,17817 +987,822,2,2,14:07:03,17.827,17827 +987,8,2,2,14:07:05,18.027,18027 +987,830,2,2,14:07:06,17.913,17913 +987,4,2,2,14:07:08,17.770,17770 +987,13,2,2,14:07:09,17.736,17736 +987,815,2,2,14:07:10,17.959,17959 +987,807,2,2,14:07:11,18.549,18549 +987,832,2,2,14:07:13,18.604,18604 +987,842,2,2,14:07:14,18.855,18855 +987,828,2,2,14:07:16,19.250,19250 +987,843,2,2,14:07:17,19.439,19439 +987,840,2,2,14:07:18,19.270,19270 +987,1,2,2,14:07:19,19.237,19237 +987,836,2,2,14:07:20,19.160,19160 +987,154,2,2,14:07:22,18.860,18860 +987,817,2,2,14:07:23,17.929,17929 +987,20,3,3,14:09:13,17.842,17842 +987,822,3,3,14:09:15,17.784,17784 +987,8,3,3,14:09:16,18.290,18290 +987,830,3,3,14:09:17,18.017,18017 +987,4,3,3,14:09:19,17.716,17716 +987,13,3,3,14:09:20,17.745,17745 +987,815,3,3,14:09:21,17.822,17822 +987,807,3,3,14:09:23,18.052,18052 +987,832,3,3,14:09:25,18.347,18347 +987,842,3,3,14:09:26,18.207,18207 +987,828,3,3,14:09:28,17.802,17802 +987,843,3,3,14:09:29,17.738,17738 +987,840,3,3,14:09:31,17.925,17925 +987,1,3,3,14:09:32,18.725,18725 +987,836,3,3,14:09:33,18.764,18764 +987,154,3,3,14:09:34,18.456,18456 +987,817,3,3,14:09:35,18.129,18129 +987,822,4,27,14:40:23,23.064,23064 +987,13,4,27,14:40:48,23.275,23275 +987,843,4,27,14:41:13,23.830,23830 +987,20,4,28,14:41:36,22.736,22736 +987,830,4,28,14:41:48,23.180,23180 +987,4,4,28,14:42:03,23.342,23342 +987,840,4,28,14:42:27,22.486,22486 +987,8,4,29,14:42:56,23.170,23170 +987,807,4,30,14:44:43,24.054,24054 +987,832,4,31,14:46:03,23.550,23550 +987,815,4,35,14:50:51,23.275,23275 +987,1,4,43,15:00:16,23.121,23121 +987,817,4,43,15:00:36,23.484,23484 +987,842,4,44,15:02:35,23.748,23748 +987,828,4,44,15:02:43,24.164,24164 +987,154,4,48,15:08:02,34.438,34438 +987,830,5,62,15:23:42,22.644,22644 +987,840,5,67,15:32:18,24.756,24756 +988,840,1,11,17:23:10,21.613,21613 +988,838,1,12,17:24:58,22.125,22125 +988,830,1,14,17:27:48,21.269,21269 +988,8,1,15,17:29:30,21.609,21609 +988,815,1,16,17:31:34,21.869,21869 +988,807,1,17,17:33:10,29.724,29724 +988,817,1,19,17:36:18,23.477,23477 +988,20,1,20,17:37:57,21.221,21221 +988,822,1,21,17:39:31,21.478,21478 +988,4,1,21,17:40:31,22.541,22541 +988,13,1,22,17:42:15,21.449,21449 +988,825,1,22,17:42:42,21.875,21875 +988,1,1,24,17:44:41,21.274,21274 +988,843,1,26,17:49:52,21.598,21598 +988,836,1,28,17:53:13,22.959,22959 +988,840,2,29,17:55:13,21.543,21543 +988,842,1,30,17:56:53,21.519,21519 +988,828,1,30,17:56:57,22.176,22176 +988,839,1,31,17:57:47,21.865,21865 +988,832,1,31,17:57:49,21.956,21956 +988,154,1,32,17:59:52,21.850,21850 +988,840,3,35,18:06:11,21.908,21908 diff --git a/database/formula_1/data_csv/qualifying.csv b/database/formula_1/data_csv/qualifying.csv new file mode 100644 index 0000000000000000000000000000000000000000..15c8f4cbc1ee7831e3d0e0148ebcd68048b5db15 Binary files /dev/null and b/database/formula_1/data_csv/qualifying.csv differ diff --git a/database/formula_1/data_csv/races.csv b/database/formula_1/data_csv/races.csv new file mode 100644 index 0000000000000000000000000000000000000000..d880d87bc736292da9d7aedbd7b68700ac620fbe --- /dev/null +++ b/database/formula_1/data_csv/races.csv @@ -0,0 +1,998 @@ +raceId,year,round,circuitId,name,date,time,url +1,2009,1,1,Australian Grand Prix,2009-03-29,06:00:00,http://en.wikipedia.org/wiki/2009_Australian_Grand_Prix +2,2009,2,2,Malaysian Grand Prix,2009-04-05,09:00:00,http://en.wikipedia.org/wiki/2009_Malaysian_Grand_Prix +3,2009,3,17,Chinese Grand Prix,2009-04-19,07:00:00,http://en.wikipedia.org/wiki/2009_Chinese_Grand_Prix +4,2009,4,3,Bahrain Grand Prix,2009-04-26,12:00:00,http://en.wikipedia.org/wiki/2009_Bahrain_Grand_Prix +5,2009,5,4,Spanish Grand Prix,2009-05-10,12:00:00,http://en.wikipedia.org/wiki/2009_Spanish_Grand_Prix +6,2009,6,6,Monaco Grand Prix,2009-05-24,12:00:00,http://en.wikipedia.org/wiki/2009_Monaco_Grand_Prix +7,2009,7,5,Turkish Grand Prix,2009-06-07,12:00:00,http://en.wikipedia.org/wiki/2009_Turkish_Grand_Prix +8,2009,8,9,British Grand Prix,2009-06-21,12:00:00,http://en.wikipedia.org/wiki/2009_British_Grand_Prix +9,2009,9,20,German Grand Prix,2009-07-12,12:00:00,http://en.wikipedia.org/wiki/2009_German_Grand_Prix +10,2009,10,11,Hungarian Grand Prix,2009-07-26,12:00:00,http://en.wikipedia.org/wiki/2009_Hungarian_Grand_Prix +11,2009,11,12,European Grand Prix,2009-08-23,12:00:00,http://en.wikipedia.org/wiki/2009_European_Grand_Prix +12,2009,12,13,Belgian Grand Prix,2009-08-30,12:00:00,http://en.wikipedia.org/wiki/2009_Belgian_Grand_Prix +13,2009,13,14,Italian Grand Prix,2009-09-13,12:00:00,http://en.wikipedia.org/wiki/2009_Italian_Grand_Prix +14,2009,14,15,Singapore Grand Prix,2009-09-27,12:00:00,http://en.wikipedia.org/wiki/2009_Singapore_Grand_Prix +15,2009,15,22,Japanese Grand Prix,2009-10-04,05:00:00,http://en.wikipedia.org/wiki/2009_Japanese_Grand_Prix +16,2009,16,18,Brazilian Grand Prix,2009-10-18,16:00:00,http://en.wikipedia.org/wiki/2009_Brazilian_Grand_Prix +17,2009,17,24,Abu Dhabi Grand Prix,2009-11-01,11:00:00,http://en.wikipedia.org/wiki/2009_Abu_Dhabi_Grand_Prix +18,2008,1,1,Australian Grand Prix,2008-03-16,04:30:00,http://en.wikipedia.org/wiki/2008_Australian_Grand_Prix +19,2008,2,2,Malaysian Grand Prix,2008-03-23,07:00:00,http://en.wikipedia.org/wiki/2008_Malaysian_Grand_Prix +20,2008,3,3,Bahrain Grand Prix,2008-04-06,11:30:00,http://en.wikipedia.org/wiki/2008_Bahrain_Grand_Prix +21,2008,4,4,Spanish Grand Prix,2008-04-27,12:00:00,http://en.wikipedia.org/wiki/2008_Spanish_Grand_Prix +22,2008,5,5,Turkish Grand Prix,2008-05-11,12:00:00,http://en.wikipedia.org/wiki/2008_Turkish_Grand_Prix +23,2008,6,6,Monaco Grand Prix,2008-05-25,12:00:00,http://en.wikipedia.org/wiki/2008_Monaco_Grand_Prix +24,2008,7,7,Canadian Grand Prix,2008-06-08,17:00:00,http://en.wikipedia.org/wiki/2008_Canadian_Grand_Prix +25,2008,8,8,French Grand Prix,2008-06-22,12:00:00,http://en.wikipedia.org/wiki/2008_French_Grand_Prix +26,2008,9,9,British Grand Prix,2008-07-06,12:00:00,http://en.wikipedia.org/wiki/2008_British_Grand_Prix +27,2008,10,10,German Grand Prix,2008-07-20,12:00:00,http://en.wikipedia.org/wiki/2008_German_Grand_Prix +28,2008,11,11,Hungarian Grand Prix,2008-08-03,12:00:00,http://en.wikipedia.org/wiki/2008_Hungarian_Grand_Prix +29,2008,12,12,European Grand Prix,2008-08-24,12:00:00,http://en.wikipedia.org/wiki/2008_European_Grand_Prix +30,2008,13,13,Belgian Grand Prix,2008-09-07,12:00:00,http://en.wikipedia.org/wiki/2008_Belgian_Grand_Prix +31,2008,14,14,Italian Grand Prix,2008-09-14,12:00:00,http://en.wikipedia.org/wiki/2008_Italian_Grand_Prix +32,2008,15,15,Singapore Grand Prix,2008-09-28,12:00:00,http://en.wikipedia.org/wiki/2008_Singapore_Grand_Prix +33,2008,16,16,Japanese Grand Prix,2008-10-12,04:30:00,http://en.wikipedia.org/wiki/2008_Japanese_Grand_Prix +34,2008,17,17,Chinese Grand Prix,2008-10-19,07:00:00,http://en.wikipedia.org/wiki/2008_Chinese_Grand_Prix +35,2008,18,18,Brazilian Grand Prix,2008-11-02,17:00:00,http://en.wikipedia.org/wiki/2008_Brazilian_Grand_Prix +36,2007,1,1,Australian Grand Prix,2007-03-18,03:00:00,http://en.wikipedia.org/wiki/2007_Australian_Grand_Prix +37,2007,2,2,Malaysian Grand Prix,2007-04-08,07:00:00,http://en.wikipedia.org/wiki/2007_Malaysian_Grand_Prix +38,2007,3,3,Bahrain Grand Prix,2007-04-15,11:30:00,http://en.wikipedia.org/wiki/2007_Bahrain_Grand_Prix +39,2007,4,4,Spanish Grand Prix,2007-05-13,12:00:00,http://en.wikipedia.org/wiki/2007_Spanish_Grand_Prix +40,2007,5,6,Monaco Grand Prix,2007-05-27,12:00:00,http://en.wikipedia.org/wiki/2007_Monaco_Grand_Prix +41,2007,6,7,Canadian Grand Prix,2007-06-10,17:00:00,http://en.wikipedia.org/wiki/2007_Canadian_Grand_Prix +42,2007,7,19,United States Grand Prix,2007-06-17,17:00:00,http://en.wikipedia.org/wiki/2007_United_States_Grand_Prix +43,2007,8,8,French Grand Prix,2007-07-01,12:00:00,http://en.wikipedia.org/wiki/2007_French_Grand_Prix +44,2007,9,9,British Grand Prix,2007-07-08,12:00:00,http://en.wikipedia.org/wiki/2007_British_Grand_Prix +45,2007,10,20,European Grand Prix,2007-07-22,12:00:00,http://en.wikipedia.org/wiki/2007_European_Grand_Prix +46,2007,11,11,Hungarian Grand Prix,2007-08-05,12:00:00,http://en.wikipedia.org/wiki/2007_Hungarian_Grand_Prix +47,2007,12,5,Turkish Grand Prix,2007-08-26,12:00:00,http://en.wikipedia.org/wiki/2007_Turkish_Grand_Prix +48,2007,13,14,Italian Grand Prix,2007-09-09,12:00:00,http://en.wikipedia.org/wiki/2007_Italian_Grand_Prix +49,2007,14,13,Belgian Grand Prix,2007-09-16,12:00:00,http://en.wikipedia.org/wiki/2007_Belgian_Grand_Prix +50,2007,15,16,Japanese Grand Prix,2007-09-30,04:30:00,http://en.wikipedia.org/wiki/2007_Japanese_Grand_Prix +51,2007,16,17,Chinese Grand Prix,2007-10-07,06:00:00,http://en.wikipedia.org/wiki/2007_Chinese_Grand_Prix +52,2007,17,18,Brazilian Grand Prix,2007-10-21,16:00:00,http://en.wikipedia.org/wiki/2007_Brazilian_Grand_Prix +53,2006,1,3,Bahrain Grand Prix,2006-03-12,14:30:00,http://en.wikipedia.org/wiki/2006_Bahrain_Grand_Prix +54,2006,2,2,Malaysian Grand Prix,2006-03-19,15:00:00,http://en.wikipedia.org/wiki/2006_Malaysian_Grand_Prix +55,2006,3,1,Australian Grand Prix,2006-04-02,14:00:00,http://en.wikipedia.org/wiki/2006_Australian_Grand_Prix +56,2006,4,21,San Marino Grand Prix,2006-04-23,14:00:00,http://en.wikipedia.org/wiki/2006_San_Marino_Grand_Prix +57,2006,5,20,European Grand Prix,2006-05-07,14:00:00,http://en.wikipedia.org/wiki/2006_European_Grand_Prix +58,2006,6,4,Spanish Grand Prix,2006-05-14,14:00:00,http://en.wikipedia.org/wiki/2006_Spanish_Grand_Prix +59,2006,7,6,Monaco Grand Prix,2006-05-28,14:00:00,http://en.wikipedia.org/wiki/2006_Monaco_Grand_Prix +60,2006,8,9,British Grand Prix,2006-06-11,12:00:00,http://en.wikipedia.org/wiki/2006_British_Grand_Prix +61,2006,9,7,Canadian Grand Prix,2006-06-25,13:00:00,http://en.wikipedia.org/wiki/2006_Canadian_Grand_Prix +62,2006,10,19,United States Grand Prix,2006-07-02,14:00:00,http://en.wikipedia.org/wiki/2006_United_States_Grand_Prix +63,2006,11,8,French Grand Prix,2006-07-16,14:00:00,http://en.wikipedia.org/wiki/2006_French_Grand_Prix +64,2006,12,10,German Grand Prix,2006-07-30,14:00:00,http://en.wikipedia.org/wiki/2006_German_Grand_Prix +65,2006,13,11,Hungarian Grand Prix,2006-08-06,14:00:00,http://en.wikipedia.org/wiki/2006_Hungarian_Grand_Prix +66,2006,14,5,Turkish Grand Prix,2006-08-27,15:00:00,http://en.wikipedia.org/wiki/2006_Turkish_Grand_Prix +67,2006,15,14,Italian Grand Prix,2006-09-10,14:00:00,http://en.wikipedia.org/wiki/2006_Italian_Grand_Prix +68,2006,16,17,Chinese Grand Prix,2006-10-01,14:00:00,http://en.wikipedia.org/wiki/2006_Chinese_Grand_Prix +69,2006,17,22,Japanese Grand Prix,2006-10-08,14:00:00,http://en.wikipedia.org/wiki/2006_Japanese_Grand_Prix +70,2006,18,18,Brazilian Grand Prix,2006-10-22,14:00:00,http://en.wikipedia.org/wiki/2006_Brazilian_Grand_Prix +71,2005,1,1,Australian Grand Prix,2005-03-06,14:00:00,http://en.wikipedia.org/wiki/2005_Australian_Grand_Prix +72,2005,2,2,Malaysian Grand Prix,2005-03-20,15:00:00,http://en.wikipedia.org/wiki/2005_Malaysian_Grand_Prix +73,2005,3,3,Bahrain Grand Prix,2005-04-03,14:30:00,http://en.wikipedia.org/wiki/2005_Bahrain_Grand_Prix +74,2005,4,21,San Marino Grand Prix,2005-04-24,14:00:00,http://en.wikipedia.org/wiki/2005_San_Marino_Grand_Prix +75,2005,5,4,Spanish Grand Prix,2005-05-08,14:00:00,http://en.wikipedia.org/wiki/2005_Spanish_Grand_Prix +76,2005,6,6,Monaco Grand Prix,2005-05-22,14:00:00,http://en.wikipedia.org/wiki/2005_Monaco_Grand_Prix +77,2005,7,20,European Grand Prix,2005-05-29,14:00:00,http://en.wikipedia.org/wiki/2005_European_Grand_Prix +78,2005,8,7,Canadian Grand Prix,2005-06-12,13:00:00,http://en.wikipedia.org/wiki/2005_Canadian_Grand_Prix +79,2005,9,19,United States Grand Prix,2005-06-19,14:00:00,http://en.wikipedia.org/wiki/2005_United_States_Grand_Prix +80,2005,10,8,French Grand Prix,2005-07-03,14:00:00,http://en.wikipedia.org/wiki/2005_French_Grand_Prix +81,2005,11,9,British Grand Prix,2005-07-10,14:00:00,http://en.wikipedia.org/wiki/2005_British_Grand_Prix +82,2005,12,10,German Grand Prix,2005-07-24,14:00:00,http://en.wikipedia.org/wiki/2005_German_Grand_Prix +83,2005,13,11,Hungarian Grand Prix,2005-07-31,14:00:00,http://en.wikipedia.org/wiki/2005_Hungarian_Grand_Prix +84,2005,14,5,Turkish Grand Prix,2005-08-21,15:00:00,http://en.wikipedia.org/wiki/2005_Turkish_Grand_Prix +85,2005,15,14,Italian Grand Prix,2005-09-04,14:00:00,http://en.wikipedia.org/wiki/2005_Italian_Grand_Prix +86,2005,16,13,Belgian Grand Prix,2005-09-11,14:00:00,http://en.wikipedia.org/wiki/2005_Belgian_Grand_Prix +87,2005,17,18,Brazilian Grand Prix,2005-09-25,14:00:00,http://en.wikipedia.org/wiki/2005_Brazilian_Grand_Prix +88,2005,18,22,Japanese Grand Prix,2005-10-09,14:00:00,http://en.wikipedia.org/wiki/2005_Japanese_Grand_Prix +89,2005,19,17,Chinese Grand Prix,2005-10-16,14:00:00,http://en.wikipedia.org/wiki/2005_Chinese_Grand_Prix +90,2004,1,1,Australian Grand Prix,2004-03-07,"",http://en.wikipedia.org/wiki/2004_Australian_Grand_Prix +91,2004,2,2,Malaysian Grand Prix,2004-03-21,"",http://en.wikipedia.org/wiki/2004_Malaysian_Grand_Prix +92,2004,3,3,Bahrain Grand Prix,2004-04-04,"",http://en.wikipedia.org/wiki/2004_Bahrain_Grand_Prix +93,2004,4,21,San Marino Grand Prix,2004-04-25,"",http://en.wikipedia.org/wiki/2004_San_Marino_Grand_Prix +94,2004,5,4,Spanish Grand Prix,2004-05-09,"",http://en.wikipedia.org/wiki/2004_Spanish_Grand_Prix +95,2004,6,6,Monaco Grand Prix,2004-05-23,"",http://en.wikipedia.org/wiki/2004_Monaco_Grand_Prix +96,2004,7,20,European Grand Prix,2004-05-30,"",http://en.wikipedia.org/wiki/2004_European_Grand_Prix +97,2004,8,7,Canadian Grand Prix,2004-06-13,"",http://en.wikipedia.org/wiki/2004_Canadian_Grand_Prix +98,2004,9,19,United States Grand Prix,2004-06-20,"",http://en.wikipedia.org/wiki/2004_United_States_Grand_Prix +99,2004,10,8,French Grand Prix,2004-07-04,"",http://en.wikipedia.org/wiki/2004_French_Grand_Prix +100,2004,11,9,British Grand Prix,2004-07-11,"",http://en.wikipedia.org/wiki/2004_British_Grand_Prix +101,2004,12,10,German Grand Prix,2004-07-25,"",http://en.wikipedia.org/wiki/2004_German_Grand_Prix +102,2004,13,11,Hungarian Grand Prix,2004-08-15,"",http://en.wikipedia.org/wiki/2004_Hungarian_Grand_Prix +103,2004,14,13,Belgian Grand Prix,2004-08-29,"",http://en.wikipedia.org/wiki/2004_Belgian_Grand_Prix +104,2004,15,14,Italian Grand Prix,2004-09-12,"",http://en.wikipedia.org/wiki/2004_Italian_Grand_Prix +105,2004,16,17,Chinese Grand Prix,2004-09-26,"",http://en.wikipedia.org/wiki/2004_Chinese_Grand_Prix +106,2004,17,22,Japanese Grand Prix,2004-10-10,"",http://en.wikipedia.org/wiki/2004_Japanese_Grand_Prix +107,2004,18,18,Brazilian Grand Prix,2004-10-24,"",http://en.wikipedia.org/wiki/2004_Brazilian_Grand_Prix +108,2003,1,1,Australian Grand Prix,2003-03-09,"",http://en.wikipedia.org/wiki/2003_Australian_Grand_Prix +109,2003,2,2,Malaysian Grand Prix,2003-03-23,"",http://en.wikipedia.org/wiki/2003_Malaysian_Grand_Prix +110,2003,3,18,Brazilian Grand Prix,2003-04-06,"",http://en.wikipedia.org/wiki/2003_Brazilian_Grand_Prix +111,2003,4,21,San Marino Grand Prix,2003-04-20,"",http://en.wikipedia.org/wiki/2003_San_Marino_Grand_Prix +112,2003,5,4,Spanish Grand Prix,2003-05-04,"",http://en.wikipedia.org/wiki/2003_Spanish_Grand_Prix +113,2003,6,23,Austrian Grand Prix,2003-05-18,"",http://en.wikipedia.org/wiki/2003_Austrian_Grand_Prix +114,2003,7,6,Monaco Grand Prix,2003-06-01,"",http://en.wikipedia.org/wiki/2003_Monaco_Grand_Prix +115,2003,8,7,Canadian Grand Prix,2003-06-15,"",http://en.wikipedia.org/wiki/2003_Canadian_Grand_Prix +116,2003,9,20,European Grand Prix,2003-06-29,"",http://en.wikipedia.org/wiki/2003_European_Grand_Prix +117,2003,10,8,French Grand Prix,2003-07-06,"",http://en.wikipedia.org/wiki/2003_French_Grand_Prix +118,2003,11,9,British Grand Prix,2003-07-20,"",http://en.wikipedia.org/wiki/2003_British_Grand_Prix +119,2003,12,10,German Grand Prix,2003-08-03,"",http://en.wikipedia.org/wiki/2003_German_Grand_Prix +120,2003,13,11,Hungarian Grand Prix,2003-08-24,"",http://en.wikipedia.org/wiki/2003_Hungarian_Grand_Prix +121,2003,14,14,Italian Grand Prix,2003-09-14,"",http://en.wikipedia.org/wiki/2003_Italian_Grand_Prix +122,2003,15,19,United States Grand Prix,2003-09-28,"",http://en.wikipedia.org/wiki/2003_United_States_Grand_Prix +123,2003,16,22,Japanese Grand Prix,2003-10-12,"",http://en.wikipedia.org/wiki/2003_Japanese_Grand_Prix +124,2002,1,1,Australian Grand Prix,2002-03-03,"",http://en.wikipedia.org/wiki/2002_Australian_Grand_Prix +125,2002,2,2,Malaysian Grand Prix,2002-03-17,"",http://en.wikipedia.org/wiki/2002_Malaysian_Grand_Prix +126,2002,3,18,Brazilian Grand Prix,2002-03-31,"",http://en.wikipedia.org/wiki/2002_Brazilian_Grand_Prix +127,2002,4,21,San Marino Grand Prix,2002-04-14,"",http://en.wikipedia.org/wiki/2002_San_Marino_Grand_Prix +128,2002,5,4,Spanish Grand Prix,2002-04-28,"",http://en.wikipedia.org/wiki/2002_Spanish_Grand_Prix +129,2002,6,23,Austrian Grand Prix,2002-05-12,"",http://en.wikipedia.org/wiki/2002_Austrian_Grand_Prix +130,2002,7,6,Monaco Grand Prix,2002-05-26,"",http://en.wikipedia.org/wiki/2002_Monaco_Grand_Prix +131,2002,8,7,Canadian Grand Prix,2002-06-09,"",http://en.wikipedia.org/wiki/2002_Canadian_Grand_Prix +132,2002,9,20,European Grand Prix,2002-06-23,"",http://en.wikipedia.org/wiki/2002_European_Grand_Prix +133,2002,10,9,British Grand Prix,2002-07-07,"",http://en.wikipedia.org/wiki/2002_British_Grand_Prix +134,2002,11,8,French Grand Prix,2002-07-21,"",http://en.wikipedia.org/wiki/2002_French_Grand_Prix +135,2002,12,10,German Grand Prix,2002-07-28,"",http://en.wikipedia.org/wiki/2002_German_Grand_Prix +136,2002,13,11,Hungarian Grand Prix,2002-08-18,"",http://en.wikipedia.org/wiki/2002_Hungarian_Grand_Prix +137,2002,14,13,Belgian Grand Prix,2002-09-01,"",http://en.wikipedia.org/wiki/2002_Belgian_Grand_Prix +138,2002,15,14,Italian Grand Prix,2002-09-15,"",http://en.wikipedia.org/wiki/2002_Italian_Grand_Prix +139,2002,16,19,United States Grand Prix,2002-09-29,"",http://en.wikipedia.org/wiki/2002_United_States_Grand_Prix +140,2002,17,22,Japanese Grand Prix,2002-10-13,"",http://en.wikipedia.org/wiki/2002_Japanese_Grand_Prix +141,2001,1,1,Australian Grand Prix,2001-03-04,"",http://en.wikipedia.org/wiki/2001_Australian_Grand_Prix +142,2001,2,2,Malaysian Grand Prix,2001-03-18,"",http://en.wikipedia.org/wiki/2001_Malaysian_Grand_Prix +143,2001,3,18,Brazilian Grand Prix,2001-04-01,"",http://en.wikipedia.org/wiki/2001_Brazilian_Grand_Prix +144,2001,4,21,San Marino Grand Prix,2001-04-15,"",http://en.wikipedia.org/wiki/2001_San_Marino_Grand_Prix +145,2001,5,4,Spanish Grand Prix,2001-04-29,"",http://en.wikipedia.org/wiki/2001_Spanish_Grand_Prix +146,2001,6,23,Austrian Grand Prix,2001-05-13,"",http://en.wikipedia.org/wiki/2001_Austrian_Grand_Prix +147,2001,7,6,Monaco Grand Prix,2001-05-27,"",http://en.wikipedia.org/wiki/2001_Monaco_Grand_Prix +148,2001,8,7,Canadian Grand Prix,2001-06-10,"",http://en.wikipedia.org/wiki/2001_Canadian_Grand_Prix +149,2001,9,20,European Grand Prix,2001-06-24,"",http://en.wikipedia.org/wiki/2001_European_Grand_Prix +150,2001,10,8,French Grand Prix,2001-07-01,"",http://en.wikipedia.org/wiki/2001_French_Grand_Prix +151,2001,11,9,British Grand Prix,2001-07-15,"",http://en.wikipedia.org/wiki/2001_British_Grand_Prix +152,2001,12,10,German Grand Prix,2001-07-29,"",http://en.wikipedia.org/wiki/2001_German_Grand_Prix +153,2001,13,11,Hungarian Grand Prix,2001-08-19,"",http://en.wikipedia.org/wiki/2001_Hungarian_Grand_Prix +154,2001,14,13,Belgian Grand Prix,2001-09-02,"",http://en.wikipedia.org/wiki/2001_Belgian_Grand_Prix +155,2001,15,14,Italian Grand Prix,2001-09-16,"",http://en.wikipedia.org/wiki/2001_Italian_Grand_Prix +156,2001,16,19,United States Grand Prix,2001-09-30,"",http://en.wikipedia.org/wiki/2001_United_States_Grand_Prix +157,2001,17,22,Japanese Grand Prix,2001-10-14,"",http://en.wikipedia.org/wiki/2001_Japanese_Grand_Prix +158,2000,1,1,Australian Grand Prix,2000-03-12,"",http://en.wikipedia.org/wiki/2000_Australian_Grand_Prix +159,2000,2,18,Brazilian Grand Prix,2000-03-26,"",http://en.wikipedia.org/wiki/2000_Brazilian_Grand_Prix +160,2000,3,21,San Marino Grand Prix,2000-04-09,"",http://en.wikipedia.org/wiki/2000_San_Marino_Grand_Prix +161,2000,4,9,British Grand Prix,2000-04-23,"",http://en.wikipedia.org/wiki/2000_British_Grand_Prix +162,2000,5,4,Spanish Grand Prix,2000-05-07,"",http://en.wikipedia.org/wiki/2000_Spanish_Grand_Prix +163,2000,6,20,European Grand Prix,2000-05-21,"",http://en.wikipedia.org/wiki/2000_European_Grand_Prix +164,2000,7,6,Monaco Grand Prix,2000-06-04,"",http://en.wikipedia.org/wiki/2000_Monaco_Grand_Prix +165,2000,8,7,Canadian Grand Prix,2000-06-18,"",http://en.wikipedia.org/wiki/2000_Canadian_Grand_Prix +166,2000,9,8,French Grand Prix,2000-07-02,"",http://en.wikipedia.org/wiki/2000_French_Grand_Prix +167,2000,10,23,Austrian Grand Prix,2000-07-16,"",http://en.wikipedia.org/wiki/2000_Austrian_Grand_Prix +168,2000,11,10,German Grand Prix,2000-07-30,"",http://en.wikipedia.org/wiki/2000_German_Grand_Prix +169,2000,12,11,Hungarian Grand Prix,2000-08-13,"",http://en.wikipedia.org/wiki/2000_Hungarian_Grand_Prix +170,2000,13,13,Belgian Grand Prix,2000-08-27,"",http://en.wikipedia.org/wiki/2000_Belgian_Grand_Prix +171,2000,14,14,Italian Grand Prix,2000-09-10,"",http://en.wikipedia.org/wiki/2000_Italian_Grand_Prix +172,2000,15,19,United States Grand Prix,2000-09-24,"",http://en.wikipedia.org/wiki/2000_United_States_Grand_Prix +173,2000,16,22,Japanese Grand Prix,2000-10-08,"",http://en.wikipedia.org/wiki/2000_Japanese_Grand_Prix +174,2000,17,2,Malaysian Grand Prix,2000-10-22,"",http://en.wikipedia.org/wiki/2000_Malaysian_Grand_Prix +175,1999,1,1,Australian Grand Prix,1999-03-07,"",http://en.wikipedia.org/wiki/1999_Australian_Grand_Prix +176,1999,2,18,Brazilian Grand Prix,1999-04-11,"",http://en.wikipedia.org/wiki/1999_Brazilian_Grand_Prix +177,1999,3,21,San Marino Grand Prix,1999-05-02,"",http://en.wikipedia.org/wiki/1999_San_Marino_Grand_Prix +178,1999,4,6,Monaco Grand Prix,1999-05-16,"",http://en.wikipedia.org/wiki/1999_Monaco_Grand_Prix +179,1999,5,4,Spanish Grand Prix,1999-05-30,"",http://en.wikipedia.org/wiki/1999_Spanish_Grand_Prix +180,1999,6,7,Canadian Grand Prix,1999-06-13,"",http://en.wikipedia.org/wiki/1999_Canadian_Grand_Prix +181,1999,7,8,French Grand Prix,1999-06-27,"",http://en.wikipedia.org/wiki/1999_French_Grand_Prix +182,1999,8,9,British Grand Prix,1999-07-11,"",http://en.wikipedia.org/wiki/1999_British_Grand_Prix +183,1999,9,23,Austrian Grand Prix,1999-07-25,"",http://en.wikipedia.org/wiki/1999_Austrian_Grand_Prix +184,1999,10,10,German Grand Prix,1999-08-01,"",http://en.wikipedia.org/wiki/1999_German_Grand_Prix +185,1999,11,11,Hungarian Grand Prix,1999-08-15,"",http://en.wikipedia.org/wiki/1999_Hungarian_Grand_Prix +186,1999,12,13,Belgian Grand Prix,1999-08-29,"",http://en.wikipedia.org/wiki/1999_Belgian_Grand_Prix +187,1999,13,14,Italian Grand Prix,1999-09-12,"",http://en.wikipedia.org/wiki/1999_Italian_Grand_Prix +188,1999,14,20,European Grand Prix,1999-09-26,"",http://en.wikipedia.org/wiki/1999_European_Grand_Prix +189,1999,15,2,Malaysian Grand Prix,1999-10-17,"",http://en.wikipedia.org/wiki/1999_Malaysian_Grand_Prix +190,1999,16,22,Japanese Grand Prix,1999-10-31,"",http://en.wikipedia.org/wiki/1999_Japanese_Grand_Prix +191,1998,1,1,Australian Grand Prix,1998-03-08,"",http://en.wikipedia.org/wiki/1998_Australian_Grand_Prix +192,1998,2,18,Brazilian Grand Prix,1998-03-29,"",http://en.wikipedia.org/wiki/1998_Brazilian_Grand_Prix +193,1998,3,25,Argentine Grand Prix,1998-04-12,"",http://en.wikipedia.org/wiki/1998_Argentine_Grand_Prix +194,1998,4,21,San Marino Grand Prix,1998-04-26,"",http://en.wikipedia.org/wiki/1998_San_Marino_Grand_Prix +195,1998,5,4,Spanish Grand Prix,1998-05-10,"",http://en.wikipedia.org/wiki/1998_Spanish_Grand_Prix +196,1998,6,6,Monaco Grand Prix,1998-05-24,"",http://en.wikipedia.org/wiki/1998_Monaco_Grand_Prix +197,1998,7,7,Canadian Grand Prix,1998-06-07,"",http://en.wikipedia.org/wiki/1998_Canadian_Grand_Prix +198,1998,8,8,French Grand Prix,1998-06-28,"",http://en.wikipedia.org/wiki/1998_French_Grand_Prix +199,1998,9,9,British Grand Prix,1998-07-12,"",http://en.wikipedia.org/wiki/1998_British_Grand_Prix +200,1998,10,23,Austrian Grand Prix,1998-07-26,"",http://en.wikipedia.org/wiki/1998_Austrian_Grand_Prix +201,1998,11,10,German Grand Prix,1998-08-02,"",http://en.wikipedia.org/wiki/1998_German_Grand_Prix +202,1998,12,11,Hungarian Grand Prix,1998-08-16,"",http://en.wikipedia.org/wiki/1998_Hungarian_Grand_Prix +203,1998,13,13,Belgian Grand Prix,1998-08-30,"",http://en.wikipedia.org/wiki/1998_Belgian_Grand_Prix +204,1998,14,14,Italian Grand Prix,1998-09-13,"",http://en.wikipedia.org/wiki/1998_Italian_Grand_Prix +205,1998,15,20,Luxembourg Grand Prix,1998-09-27,"",http://en.wikipedia.org/wiki/1998_Luxembourg_Grand_Prix +206,1998,16,22,Japanese Grand Prix,1998-11-01,"",http://en.wikipedia.org/wiki/1998_Japanese_Grand_Prix +207,1997,1,1,Australian Grand Prix,1997-03-09,"",http://en.wikipedia.org/wiki/1997_Australian_Grand_Prix +208,1997,2,18,Brazilian Grand Prix,1997-03-30,"",http://en.wikipedia.org/wiki/1997_Brazilian_Grand_Prix +209,1997,3,25,Argentine Grand Prix,1997-04-13,"",http://en.wikipedia.org/wiki/1997_Argentine_Grand_Prix +210,1997,4,21,San Marino Grand Prix,1997-04-27,"",http://en.wikipedia.org/wiki/1997_San_Marino_Grand_Prix +211,1997,5,6,Monaco Grand Prix,1997-05-11,"",http://en.wikipedia.org/wiki/1997_Monaco_Grand_Prix +212,1997,6,4,Spanish Grand Prix,1997-05-25,"",http://en.wikipedia.org/wiki/1997_Spanish_Grand_Prix +213,1997,7,7,Canadian Grand Prix,1997-06-15,"",http://en.wikipedia.org/wiki/1997_Canadian_Grand_Prix +214,1997,8,8,French Grand Prix,1997-06-29,"",http://en.wikipedia.org/wiki/1997_French_Grand_Prix +215,1997,9,9,British Grand Prix,1997-07-13,"",http://en.wikipedia.org/wiki/1997_British_Grand_Prix +216,1997,10,10,German Grand Prix,1997-07-27,"",http://en.wikipedia.org/wiki/1997_German_Grand_Prix +217,1997,11,11,Hungarian Grand Prix,1997-08-10,"",http://en.wikipedia.org/wiki/1997_Hungarian_Grand_Prix +218,1997,12,13,Belgian Grand Prix,1997-08-24,"",http://en.wikipedia.org/wiki/1997_Belgian_Grand_Prix +219,1997,13,14,Italian Grand Prix,1997-09-07,"",http://en.wikipedia.org/wiki/1997_Italian_Grand_Prix +220,1997,14,23,Austrian Grand Prix,1997-09-21,"",http://en.wikipedia.org/wiki/1997_Austrian_Grand_Prix +221,1997,15,20,Luxembourg Grand Prix,1997-09-28,"",http://en.wikipedia.org/wiki/1997_Luxembourg_Grand_Prix +222,1997,16,22,Japanese Grand Prix,1997-10-12,"",http://en.wikipedia.org/wiki/1997_Japanese_Grand_Prix +223,1997,17,26,European Grand Prix,1997-10-26,"",http://en.wikipedia.org/wiki/1997_European_Grand_Prix +224,1996,1,1,Australian Grand Prix,1996-03-10,"",http://en.wikipedia.org/wiki/1996_Australian_Grand_Prix +225,1996,2,18,Brazilian Grand Prix,1996-03-31,"",http://en.wikipedia.org/wiki/1996_Brazilian_Grand_Prix +226,1996,3,25,Argentine Grand Prix,1996-04-07,"",http://en.wikipedia.org/wiki/1996_Argentine_Grand_Prix +227,1996,4,20,European Grand Prix,1996-04-28,"",http://en.wikipedia.org/wiki/1996_European_Grand_Prix +228,1996,5,21,San Marino Grand Prix,1996-05-05,"",http://en.wikipedia.org/wiki/1996_San_Marino_Grand_Prix +229,1996,6,6,Monaco Grand Prix,1996-05-19,"",http://en.wikipedia.org/wiki/1996_Monaco_Grand_Prix +230,1996,7,4,Spanish Grand Prix,1996-06-02,"",http://en.wikipedia.org/wiki/1996_Spanish_Grand_Prix +231,1996,8,7,Canadian Grand Prix,1996-06-16,"",http://en.wikipedia.org/wiki/1996_Canadian_Grand_Prix +232,1996,9,8,French Grand Prix,1996-06-30,"",http://en.wikipedia.org/wiki/1996_French_Grand_Prix +233,1996,10,9,British Grand Prix,1996-07-14,"",http://en.wikipedia.org/wiki/1996_British_Grand_Prix +234,1996,11,10,German Grand Prix,1996-07-28,"",http://en.wikipedia.org/wiki/1996_German_Grand_Prix +235,1996,12,11,Hungarian Grand Prix,1996-08-11,"",http://en.wikipedia.org/wiki/1996_Hungarian_Grand_Prix +236,1996,13,13,Belgian Grand Prix,1996-08-25,"",http://en.wikipedia.org/wiki/1996_Belgian_Grand_Prix +237,1996,14,14,Italian Grand Prix,1996-09-08,"",http://en.wikipedia.org/wiki/1996_Italian_Grand_Prix +238,1996,15,27,Portuguese Grand Prix,1996-09-22,"",http://en.wikipedia.org/wiki/1996_Portuguese_Grand_Prix +239,1996,16,22,Japanese Grand Prix,1996-10-13,"",http://en.wikipedia.org/wiki/1996_Japanese_Grand_Prix +240,1995,1,18,Brazilian Grand Prix,1995-03-26,"",http://en.wikipedia.org/wiki/1995_Brazilian_Grand_Prix +241,1995,2,25,Argentine Grand Prix,1995-04-09,"",http://en.wikipedia.org/wiki/1995_Argentine_Grand_Prix +242,1995,3,21,San Marino Grand Prix,1995-04-30,"",http://en.wikipedia.org/wiki/1995_San_Marino_Grand_Prix +243,1995,4,4,Spanish Grand Prix,1995-05-14,"",http://en.wikipedia.org/wiki/1995_Spanish_Grand_Prix +244,1995,5,6,Monaco Grand Prix,1995-05-28,"",http://en.wikipedia.org/wiki/1995_Monaco_Grand_Prix +245,1995,6,7,Canadian Grand Prix,1995-06-11,"",http://en.wikipedia.org/wiki/1995_Canadian_Grand_Prix +246,1995,7,8,French Grand Prix,1995-07-02,"",http://en.wikipedia.org/wiki/1995_French_Grand_Prix +247,1995,8,9,British Grand Prix,1995-07-16,"",http://en.wikipedia.org/wiki/1995_British_Grand_Prix +248,1995,9,10,German Grand Prix,1995-07-30,"",http://en.wikipedia.org/wiki/1995_German_Grand_Prix +249,1995,10,11,Hungarian Grand Prix,1995-08-13,"",http://en.wikipedia.org/wiki/1995_Hungarian_Grand_Prix +250,1995,11,13,Belgian Grand Prix,1995-08-27,"",http://en.wikipedia.org/wiki/1995_Belgian_Grand_Prix +251,1995,12,14,Italian Grand Prix,1995-09-10,"",http://en.wikipedia.org/wiki/1995_Italian_Grand_Prix +252,1995,13,27,Portuguese Grand Prix,1995-09-24,"",http://en.wikipedia.org/wiki/1995_Portuguese_Grand_Prix +253,1995,14,20,European Grand Prix,1995-10-01,"",http://en.wikipedia.org/wiki/1995_European_Grand_Prix +254,1995,15,28,Pacific Grand Prix,1995-10-22,"",http://en.wikipedia.org/wiki/1995_Pacific_Grand_Prix +255,1995,16,22,Japanese Grand Prix,1995-10-29,"",http://en.wikipedia.org/wiki/1995_Japanese_Grand_Prix +256,1995,17,29,Australian Grand Prix,1995-11-12,"",http://en.wikipedia.org/wiki/1995_Australian_Grand_Prix +257,1994,1,18,Brazilian Grand Prix,1994-03-27,"",http://en.wikipedia.org/wiki/1994_Brazilian_Grand_Prix +258,1994,2,28,Pacific Grand Prix,1994-04-17,"",http://en.wikipedia.org/wiki/1994_Pacific_Grand_Prix +259,1994,3,21,San Marino Grand Prix,1994-05-01,"",http://en.wikipedia.org/wiki/1994_San_Marino_Grand_Prix +260,1994,4,6,Monaco Grand Prix,1994-05-15,"",http://en.wikipedia.org/wiki/1994_Monaco_Grand_Prix +261,1994,5,4,Spanish Grand Prix,1994-05-29,"",http://en.wikipedia.org/wiki/1994_Spanish_Grand_Prix +262,1994,6,7,Canadian Grand Prix,1994-06-12,"",http://en.wikipedia.org/wiki/1994_Canadian_Grand_Prix +263,1994,7,8,French Grand Prix,1994-07-03,"",http://en.wikipedia.org/wiki/1994_French_Grand_Prix +264,1994,8,9,British Grand Prix,1994-07-10,"",http://en.wikipedia.org/wiki/1994_British_Grand_Prix +265,1994,9,10,German Grand Prix,1994-07-31,"",http://en.wikipedia.org/wiki/1994_German_Grand_Prix +266,1994,10,11,Hungarian Grand Prix,1994-08-14,"",http://en.wikipedia.org/wiki/1994_Hungarian_Grand_Prix +267,1994,11,13,Belgian Grand Prix,1994-08-28,"",http://en.wikipedia.org/wiki/1994_Belgian_Grand_Prix +268,1994,12,14,Italian Grand Prix,1994-09-11,"",http://en.wikipedia.org/wiki/1994_Italian_Grand_Prix +269,1994,13,27,Portuguese Grand Prix,1994-09-25,"",http://en.wikipedia.org/wiki/1994_Portuguese_Grand_Prix +270,1994,14,26,European Grand Prix,1994-10-16,"",http://en.wikipedia.org/wiki/1994_European_Grand_Prix +271,1994,15,22,Japanese Grand Prix,1994-11-06,"",http://en.wikipedia.org/wiki/1994_Japanese_Grand_Prix +272,1994,16,29,Australian Grand Prix,1994-11-13,"",http://en.wikipedia.org/wiki/1994_Australian_Grand_Prix +273,1993,1,30,South African Grand Prix,1993-03-14,"",http://en.wikipedia.org/wiki/1993_South_African_Grand_Prix +274,1993,2,18,Brazilian Grand Prix,1993-03-28,"",http://en.wikipedia.org/wiki/1993_Brazilian_Grand_Prix +275,1993,3,31,European Grand Prix,1993-04-11,"",http://en.wikipedia.org/wiki/1993_European_Grand_Prix +276,1993,4,21,San Marino Grand Prix,1993-04-25,"",http://en.wikipedia.org/wiki/1993_San_Marino_Grand_Prix +277,1993,5,4,Spanish Grand Prix,1993-05-09,"",http://en.wikipedia.org/wiki/1993_Spanish_Grand_Prix +278,1993,6,6,Monaco Grand Prix,1993-05-23,"",http://en.wikipedia.org/wiki/1993_Monaco_Grand_Prix +279,1993,7,7,Canadian Grand Prix,1993-06-13,"",http://en.wikipedia.org/wiki/1993_Canadian_Grand_Prix +280,1993,8,8,French Grand Prix,1993-07-04,"",http://en.wikipedia.org/wiki/1993_French_Grand_Prix +281,1993,9,9,British Grand Prix,1993-07-11,"",http://en.wikipedia.org/wiki/1993_British_Grand_Prix +282,1993,10,10,German Grand Prix,1993-07-25,"",http://en.wikipedia.org/wiki/1993_German_Grand_Prix +283,1993,11,11,Hungarian Grand Prix,1993-08-15,"",http://en.wikipedia.org/wiki/1993_Hungarian_Grand_Prix +284,1993,12,13,Belgian Grand Prix,1993-08-29,"",http://en.wikipedia.org/wiki/1993_Belgian_Grand_Prix +285,1993,13,14,Italian Grand Prix,1993-09-12,"",http://en.wikipedia.org/wiki/1993_Italian_Grand_Prix +286,1993,14,27,Portuguese Grand Prix,1993-09-26,"",http://en.wikipedia.org/wiki/1993_Portuguese_Grand_Prix +287,1993,15,22,Japanese Grand Prix,1993-10-24,"",http://en.wikipedia.org/wiki/1993_Japanese_Grand_Prix +288,1993,16,29,Australian Grand Prix,1993-11-07,"",http://en.wikipedia.org/wiki/1993_Australian_Grand_Prix +289,1992,1,30,South African Grand Prix,1992-03-01,"",http://en.wikipedia.org/wiki/1992_South_African_Grand_Prix +290,1992,2,32,Mexican Grand Prix,1992-03-22,"",http://en.wikipedia.org/wiki/1992_Mexican_Grand_Prix +291,1992,3,18,Brazilian Grand Prix,1992-04-05,"",http://en.wikipedia.org/wiki/1992_Brazilian_Grand_Prix +292,1992,4,4,Spanish Grand Prix,1992-05-03,"",http://en.wikipedia.org/wiki/1992_Spanish_Grand_Prix +293,1992,5,21,San Marino Grand Prix,1992-05-17,"",http://en.wikipedia.org/wiki/1992_San_Marino_Grand_Prix +294,1992,6,6,Monaco Grand Prix,1992-05-31,"",http://en.wikipedia.org/wiki/1992_Monaco_Grand_Prix +295,1992,7,7,Canadian Grand Prix,1992-06-14,"",http://en.wikipedia.org/wiki/1992_Canadian_Grand_Prix +296,1992,8,8,French Grand Prix,1992-07-05,"",http://en.wikipedia.org/wiki/1992_French_Grand_Prix +297,1992,9,9,British Grand Prix,1992-07-12,"",http://en.wikipedia.org/wiki/1992_British_Grand_Prix +298,1992,10,10,German Grand Prix,1992-07-26,"",http://en.wikipedia.org/wiki/1992_German_Grand_Prix +299,1992,11,11,Hungarian Grand Prix,1992-08-16,"",http://en.wikipedia.org/wiki/1992_Hungarian_Grand_Prix +300,1992,12,13,Belgian Grand Prix,1992-08-30,"",http://en.wikipedia.org/wiki/1992_Belgian_Grand_Prix +301,1992,13,14,Italian Grand Prix,1992-09-13,"",http://en.wikipedia.org/wiki/1992_Italian_Grand_Prix +302,1992,14,27,Portuguese Grand Prix,1992-09-27,"",http://en.wikipedia.org/wiki/1992_Portuguese_Grand_Prix +303,1992,15,22,Japanese Grand Prix,1992-10-25,"",http://en.wikipedia.org/wiki/1992_Japanese_Grand_Prix +304,1992,16,29,Australian Grand Prix,1992-11-08,"",http://en.wikipedia.org/wiki/1992_Australian_Grand_Prix +305,1991,1,33,United States Grand Prix,1991-03-10,"",http://en.wikipedia.org/wiki/1991_United_States_Grand_Prix +306,1991,2,18,Brazilian Grand Prix,1991-03-24,"",http://en.wikipedia.org/wiki/1991_Brazilian_Grand_Prix +307,1991,3,21,San Marino Grand Prix,1991-04-28,"",http://en.wikipedia.org/wiki/1991_San_Marino_Grand_Prix +308,1991,4,6,Monaco Grand Prix,1991-05-12,"",http://en.wikipedia.org/wiki/1991_Monaco_Grand_Prix +309,1991,5,7,Canadian Grand Prix,1991-06-02,"",http://en.wikipedia.org/wiki/1991_Canadian_Grand_Prix +310,1991,6,32,Mexican Grand Prix,1991-06-16,"",http://en.wikipedia.org/wiki/1991_Mexican_Grand_Prix +311,1991,7,8,French Grand Prix,1991-07-07,"",http://en.wikipedia.org/wiki/1991_French_Grand_Prix +312,1991,8,9,British Grand Prix,1991-07-14,"",http://en.wikipedia.org/wiki/1991_British_Grand_Prix +313,1991,9,10,German Grand Prix,1991-07-28,"",http://en.wikipedia.org/wiki/1991_German_Grand_Prix +314,1991,10,11,Hungarian Grand Prix,1991-08-11,"",http://en.wikipedia.org/wiki/1991_Hungarian_Grand_Prix +315,1991,11,13,Belgian Grand Prix,1991-08-25,"",http://en.wikipedia.org/wiki/1991_Belgian_Grand_Prix +316,1991,12,14,Italian Grand Prix,1991-09-08,"",http://en.wikipedia.org/wiki/1991_Italian_Grand_Prix +317,1991,13,27,Portuguese Grand Prix,1991-09-22,"",http://en.wikipedia.org/wiki/1991_Portuguese_Grand_Prix +318,1991,14,4,Spanish Grand Prix,1991-09-29,"",http://en.wikipedia.org/wiki/1991_Spanish_Grand_Prix +319,1991,15,22,Japanese Grand Prix,1991-10-20,"",http://en.wikipedia.org/wiki/1991_Japanese_Grand_Prix +320,1991,16,29,Australian Grand Prix,1991-11-03,"",http://en.wikipedia.org/wiki/1991_Australian_Grand_Prix +321,1990,1,33,United States Grand Prix,1990-03-11,"",http://en.wikipedia.org/wiki/1990_United_States_Grand_Prix +322,1990,2,18,Brazilian Grand Prix,1990-03-25,"",http://en.wikipedia.org/wiki/1990_Brazilian_Grand_Prix +323,1990,3,21,San Marino Grand Prix,1990-05-13,"",http://en.wikipedia.org/wiki/1990_San_Marino_Grand_Prix +324,1990,4,6,Monaco Grand Prix,1990-05-27,"",http://en.wikipedia.org/wiki/1990_Monaco_Grand_Prix +325,1990,5,7,Canadian Grand Prix,1990-06-10,"",http://en.wikipedia.org/wiki/1990_Canadian_Grand_Prix +326,1990,6,32,Mexican Grand Prix,1990-06-24,"",http://en.wikipedia.org/wiki/1990_Mexican_Grand_Prix +327,1990,7,34,French Grand Prix,1990-07-08,"",http://en.wikipedia.org/wiki/1990_French_Grand_Prix +328,1990,8,9,British Grand Prix,1990-07-15,"",http://en.wikipedia.org/wiki/1990_British_Grand_Prix +329,1990,9,10,German Grand Prix,1990-07-29,"",http://en.wikipedia.org/wiki/1990_German_Grand_Prix +330,1990,10,11,Hungarian Grand Prix,1990-08-12,"",http://en.wikipedia.org/wiki/1990_Hungarian_Grand_Prix +331,1990,11,13,Belgian Grand Prix,1990-08-26,"",http://en.wikipedia.org/wiki/1990_Belgian_Grand_Prix +332,1990,12,14,Italian Grand Prix,1990-09-09,"",http://en.wikipedia.org/wiki/1990_Italian_Grand_Prix +333,1990,13,27,Portuguese Grand Prix,1990-09-23,"",http://en.wikipedia.org/wiki/1990_Portuguese_Grand_Prix +334,1990,14,26,Spanish Grand Prix,1990-09-30,"",http://en.wikipedia.org/wiki/1990_Spanish_Grand_Prix +335,1990,15,22,Japanese Grand Prix,1990-10-21,"",http://en.wikipedia.org/wiki/1990_Japanese_Grand_Prix +336,1990,16,29,Australian Grand Prix,1990-11-04,"",http://en.wikipedia.org/wiki/1990_Australian_Grand_Prix +337,2010,1,3,Bahrain Grand Prix,2010-03-14,12:00:00,http://en.wikipedia.org/wiki/2010_Bahrain_Grand_Prix +338,2010,2,1,Australian Grand Prix,2010-03-28,06:00:00,http://en.wikipedia.org/wiki/2010_Australian_Grand_Prix +339,2010,3,2,Malaysian Grand Prix,2010-04-04,08:00:00,http://en.wikipedia.org/wiki/2010_Malaysian_Grand_Prix +340,2010,4,17,Chinese Grand Prix,2010-04-18,06:00:00,http://en.wikipedia.org/wiki/2010_Chinese_Grand_Prix +341,2010,5,4,Spanish Grand Prix,2010-05-09,12:00:00,http://en.wikipedia.org/wiki/2010_Spanish_Grand_Prix +342,2010,6,6,Monaco Grand Prix,2010-05-16,12:00:00,http://en.wikipedia.org/wiki/2010_Monaco_Grand_Prix +343,2010,7,5,Turkish Grand Prix,2010-05-30,11:00:00,http://en.wikipedia.org/wiki/2010_Turkish_Grand_Prix +344,2010,8,7,Canadian Grand Prix,2010-06-13,16:00:00,http://en.wikipedia.org/wiki/2010_Canadian_Grand_Prix +345,2010,9,12,European Grand Prix,2010-06-27,12:00:00,http://en.wikipedia.org/wiki/2010_European_Grand_Prix +346,2010,10,9,British Grand Prix,2010-07-11,12:00:00,http://en.wikipedia.org/wiki/2010_British_Grand_Prix +347,2010,11,10,German Grand Prix,2010-07-25,12:00:00,http://en.wikipedia.org/wiki/2010_German_Grand_Prix +348,2010,12,11,Hungarian Grand Prix,2010-08-01,12:00:00,http://en.wikipedia.org/wiki/2010_Hungarian_Grand_Prix +349,2010,13,13,Belgian Grand Prix,2010-08-29,12:00:00,http://en.wikipedia.org/wiki/2010_Belgian_Grand_Prix +350,2010,14,14,Italian Grand Prix,2010-09-12,12:00:00,http://en.wikipedia.org/wiki/2010_Italian_Grand_Prix +351,2010,15,15,Singapore Grand Prix,2010-09-26,12:00:00,http://en.wikipedia.org/wiki/2010_Singapore_Grand_Prix +352,2010,16,22,Japanese Grand Prix,2010-10-10,06:00:00,http://en.wikipedia.org/wiki/2010_Japanese_Grand_Prix +353,2010,17,35,Korean Grand Prix,2010-10-24,05:00:00,http://en.wikipedia.org/wiki/2010_Korean_Grand_Prix +354,2010,18,18,Brazilian Grand Prix,2010-11-07,16:00:00,http://en.wikipedia.org/wiki/2010_Brazilian_Grand_Prix +355,2010,19,24,Abu Dhabi Grand Prix,2010-11-14,13:00:00,http://en.wikipedia.org/wiki/2010_Abu_Dhabi_Grand_Prix +356,1989,1,36,Brazilian Grand Prix,1989-03-26,"",http://en.wikipedia.org/wiki/1989_Brazilian_Grand_Prix +357,1989,2,21,San Marino Grand Prix,1989-04-23,"",http://en.wikipedia.org/wiki/1989_San_Marino_Grand_Prix +358,1989,3,6,Monaco Grand Prix,1989-05-07,"",http://en.wikipedia.org/wiki/1989_Monaco_Grand_Prix +359,1989,4,32,Mexican Grand Prix,1989-05-28,"",http://en.wikipedia.org/wiki/1989_Mexican_Grand_Prix +360,1989,5,33,United States Grand Prix,1989-06-04,"",http://en.wikipedia.org/wiki/1989_United_States_Grand_Prix +361,1989,6,7,Canadian Grand Prix,1989-06-18,"",http://en.wikipedia.org/wiki/1989_Canadian_Grand_Prix +362,1989,7,34,French Grand Prix,1989-07-09,"",http://en.wikipedia.org/wiki/1989_French_Grand_Prix +363,1989,8,9,British Grand Prix,1989-07-16,"",http://en.wikipedia.org/wiki/1989_British_Grand_Prix +364,1989,9,10,German Grand Prix,1989-07-30,"",http://en.wikipedia.org/wiki/1989_German_Grand_Prix +365,1989,10,11,Hungarian Grand Prix,1989-08-13,"",http://en.wikipedia.org/wiki/1989_Hungarian_Grand_Prix +366,1989,11,13,Belgian Grand Prix,1989-08-27,"",http://en.wikipedia.org/wiki/1989_Belgian_Grand_Prix +367,1989,12,14,Italian Grand Prix,1989-09-10,"",http://en.wikipedia.org/wiki/1989_Italian_Grand_Prix +368,1989,13,27,Portuguese Grand Prix,1989-09-24,"",http://en.wikipedia.org/wiki/1989_Portuguese_Grand_Prix +369,1989,14,26,Spanish Grand Prix,1989-10-01,"",http://en.wikipedia.org/wiki/1989_Spanish_Grand_Prix +370,1989,15,22,Japanese Grand Prix,1989-10-22,"",http://en.wikipedia.org/wiki/1989_Japanese_Grand_Prix +371,1989,16,29,Australian Grand Prix,1989-11-05,"",http://en.wikipedia.org/wiki/1989_Australian_Grand_Prix +372,1988,1,36,Brazilian Grand Prix,1988-04-03,"",http://en.wikipedia.org/wiki/1988_Brazilian_Grand_Prix +373,1988,2,21,San Marino Grand Prix,1988-05-01,"",http://en.wikipedia.org/wiki/1988_San_Marino_Grand_Prix +374,1988,3,6,Monaco Grand Prix,1988-05-15,"",http://en.wikipedia.org/wiki/1988_Monaco_Grand_Prix +375,1988,4,32,Mexican Grand Prix,1988-05-29,"",http://en.wikipedia.org/wiki/1988_Mexican_Grand_Prix +376,1988,5,7,Canadian Grand Prix,1988-06-12,"",http://en.wikipedia.org/wiki/1988_Canadian_Grand_Prix +377,1988,6,37,Detroit Grand Prix,1988-06-19,"",http://en.wikipedia.org/wiki/1988_Detroit_Grand_Prix +378,1988,7,34,French Grand Prix,1988-07-03,"",http://en.wikipedia.org/wiki/1988_French_Grand_Prix +379,1988,8,9,British Grand Prix,1988-07-10,"",http://en.wikipedia.org/wiki/1988_British_Grand_Prix +380,1988,9,10,German Grand Prix,1988-07-24,"",http://en.wikipedia.org/wiki/1988_German_Grand_Prix +381,1988,10,11,Hungarian Grand Prix,1988-08-07,"",http://en.wikipedia.org/wiki/1988_Hungarian_Grand_Prix +382,1988,11,13,Belgian Grand Prix,1988-08-28,"",http://en.wikipedia.org/wiki/1988_Belgian_Grand_Prix +383,1988,12,14,Italian Grand Prix,1988-09-11,"",http://en.wikipedia.org/wiki/1988_Italian_Grand_Prix +384,1988,13,27,Portuguese Grand Prix,1988-09-25,"",http://en.wikipedia.org/wiki/1988_Portuguese_Grand_Prix +385,1988,14,26,Spanish Grand Prix,1988-10-02,"",http://en.wikipedia.org/wiki/1988_Spanish_Grand_Prix +386,1988,15,22,Japanese Grand Prix,1988-10-30,"",http://en.wikipedia.org/wiki/1988_Japanese_Grand_Prix +387,1988,16,29,Australian Grand Prix,1988-11-13,"",http://en.wikipedia.org/wiki/1988_Australian_Grand_Prix +388,1987,1,36,Brazilian Grand Prix,1987-04-12,"",http://en.wikipedia.org/wiki/1987_Brazilian_Grand_Prix +389,1987,2,21,San Marino Grand Prix,1987-05-03,"",http://en.wikipedia.org/wiki/1987_San_Marino_Grand_Prix +390,1987,3,13,Belgian Grand Prix,1987-05-17,"",http://en.wikipedia.org/wiki/1987_Belgian_Grand_Prix +391,1987,4,6,Monaco Grand Prix,1987-05-31,"",http://en.wikipedia.org/wiki/1987_Monaco_Grand_Prix +392,1987,5,37,Detroit Grand Prix,1987-06-21,"",http://en.wikipedia.org/wiki/1987_Detroit_Grand_Prix +393,1987,6,34,French Grand Prix,1987-07-05,"",http://en.wikipedia.org/wiki/1987_French_Grand_Prix +394,1987,7,9,British Grand Prix,1987-07-12,"",http://en.wikipedia.org/wiki/1987_British_Grand_Prix +395,1987,8,10,German Grand Prix,1987-07-26,"",http://en.wikipedia.org/wiki/1987_German_Grand_Prix +396,1987,9,11,Hungarian Grand Prix,1987-08-09,"",http://en.wikipedia.org/wiki/1987_Hungarian_Grand_Prix +397,1987,10,23,Austrian Grand Prix,1987-08-16,"",http://en.wikipedia.org/wiki/1987_Austrian_Grand_Prix +398,1987,11,14,Italian Grand Prix,1987-09-06,"",http://en.wikipedia.org/wiki/1987_Italian_Grand_Prix +399,1987,12,27,Portuguese Grand Prix,1987-09-20,"",http://en.wikipedia.org/wiki/1987_Portuguese_Grand_Prix +400,1987,13,26,Spanish Grand Prix,1987-09-27,"",http://en.wikipedia.org/wiki/1987_Spanish_Grand_Prix +401,1987,14,32,Mexican Grand Prix,1987-10-18,"",http://en.wikipedia.org/wiki/1987_Mexican_Grand_Prix +402,1987,15,22,Japanese Grand Prix,1987-11-01,"",http://en.wikipedia.org/wiki/1987_Japanese_Grand_Prix +403,1987,16,29,Australian Grand Prix,1987-11-15,"",http://en.wikipedia.org/wiki/1987_Australian_Grand_Prix +404,1986,1,36,Brazilian Grand Prix,1986-03-23,"",http://en.wikipedia.org/wiki/1986_Brazilian_Grand_Prix +405,1986,2,26,Spanish Grand Prix,1986-04-13,"",http://en.wikipedia.org/wiki/1986_Spanish_Grand_Prix +406,1986,3,21,San Marino Grand Prix,1986-04-27,"",http://en.wikipedia.org/wiki/1986_San_Marino_Grand_Prix +407,1986,4,6,Monaco Grand Prix,1986-05-11,"",http://en.wikipedia.org/wiki/1986_Monaco_Grand_Prix +408,1986,5,13,Belgian Grand Prix,1986-05-25,"",http://en.wikipedia.org/wiki/1986_Belgian_Grand_Prix +409,1986,6,7,Canadian Grand Prix,1986-06-15,"",http://en.wikipedia.org/wiki/1986_Canadian_Grand_Prix +410,1986,7,37,Detroit Grand Prix,1986-06-22,"",http://en.wikipedia.org/wiki/1986_Detroit_Grand_Prix +411,1986,8,34,French Grand Prix,1986-07-06,"",http://en.wikipedia.org/wiki/1986_French_Grand_Prix +412,1986,9,38,British Grand Prix,1986-07-13,"",http://en.wikipedia.org/wiki/1986_British_Grand_Prix +413,1986,10,10,German Grand Prix,1986-07-27,"",http://en.wikipedia.org/wiki/1986_German_Grand_Prix +414,1986,11,11,Hungarian Grand Prix,1986-08-10,"",http://en.wikipedia.org/wiki/1986_Hungarian_Grand_Prix +415,1986,12,23,Austrian Grand Prix,1986-08-17,"",http://en.wikipedia.org/wiki/1986_Austrian_Grand_Prix +416,1986,13,14,Italian Grand Prix,1986-09-07,"",http://en.wikipedia.org/wiki/1986_Italian_Grand_Prix +417,1986,14,27,Portuguese Grand Prix,1986-09-21,"",http://en.wikipedia.org/wiki/1986_Portuguese_Grand_Prix +418,1986,15,32,Mexican Grand Prix,1986-10-12,"",http://en.wikipedia.org/wiki/1986_Mexican_Grand_Prix +419,1986,16,29,Australian Grand Prix,1986-10-26,"",http://en.wikipedia.org/wiki/1986_Australian_Grand_Prix +420,1985,1,36,Brazilian Grand Prix,1985-04-07,"",http://en.wikipedia.org/wiki/1985_Brazilian_Grand_Prix +421,1985,2,27,Portuguese Grand Prix,1985-04-21,"",http://en.wikipedia.org/wiki/1985_Portuguese_Grand_Prix +422,1985,3,21,San Marino Grand Prix,1985-05-05,"",http://en.wikipedia.org/wiki/1985_San_Marino_Grand_Prix +423,1985,4,6,Monaco Grand Prix,1985-05-19,"",http://en.wikipedia.org/wiki/1985_Monaco_Grand_Prix +424,1985,5,7,Canadian Grand Prix,1985-06-16,"",http://en.wikipedia.org/wiki/1985_Canadian_Grand_Prix +425,1985,6,37,Detroit Grand Prix,1985-06-23,"",http://en.wikipedia.org/wiki/1985_Detroit_Grand_Prix +426,1985,7,34,French Grand Prix,1985-07-07,"",http://en.wikipedia.org/wiki/1985_French_Grand_Prix +427,1985,8,9,British Grand Prix,1985-07-21,"",http://en.wikipedia.org/wiki/1985_British_Grand_Prix +428,1985,9,20,German Grand Prix,1985-08-04,"",http://en.wikipedia.org/wiki/1985_German_Grand_Prix +429,1985,10,23,Austrian Grand Prix,1985-08-18,"",http://en.wikipedia.org/wiki/1985_Austrian_Grand_Prix +430,1985,11,39,Dutch Grand Prix,1985-08-25,"",http://en.wikipedia.org/wiki/1985_Dutch_Grand_Prix +431,1985,12,14,Italian Grand Prix,1985-09-08,"",http://en.wikipedia.org/wiki/1985_Italian_Grand_Prix +432,1985,13,13,Belgian Grand Prix,1985-09-15,"",http://en.wikipedia.org/wiki/1985_Belgian_Grand_Prix +433,1985,14,38,European Grand Prix,1985-10-06,"",http://en.wikipedia.org/wiki/1985_European_Grand_Prix +434,1985,15,30,South African Grand Prix,1985-10-19,"",http://en.wikipedia.org/wiki/1985_South_African_Grand_Prix +435,1985,16,29,Australian Grand Prix,1985-11-03,"",http://en.wikipedia.org/wiki/1985_Australian_Grand_Prix +436,1984,1,36,Brazilian Grand Prix,1984-03-25,"",http://en.wikipedia.org/wiki/1984_Brazilian_Grand_Prix +437,1984,2,30,South African Grand Prix,1984-04-07,"",http://en.wikipedia.org/wiki/1984_South_African_Grand_Prix +438,1984,3,40,Belgian Grand Prix,1984-04-29,"",http://en.wikipedia.org/wiki/1984_Belgian_Grand_Prix +439,1984,4,21,San Marino Grand Prix,1984-05-06,"",http://en.wikipedia.org/wiki/1984_San_Marino_Grand_Prix +440,1984,5,41,French Grand Prix,1984-05-20,"",http://en.wikipedia.org/wiki/1984_French_Grand_Prix +441,1984,6,6,Monaco Grand Prix,1984-06-03,"",http://en.wikipedia.org/wiki/1984_Monaco_Grand_Prix +442,1984,7,7,Canadian Grand Prix,1984-06-17,"",http://en.wikipedia.org/wiki/1984_Canadian_Grand_Prix +443,1984,8,37,Detroit Grand Prix,1984-06-24,"",http://en.wikipedia.org/wiki/1984_Detroit_Grand_Prix +444,1984,9,42,Dallas Grand Prix,1984-07-08,"",http://en.wikipedia.org/wiki/1984_Dallas_Grand_Prix +445,1984,10,38,British Grand Prix,1984-07-22,"",http://en.wikipedia.org/wiki/1984_British_Grand_Prix +446,1984,11,10,German Grand Prix,1984-08-05,"",http://en.wikipedia.org/wiki/1984_German_Grand_Prix +447,1984,12,23,Austrian Grand Prix,1984-08-19,"",http://en.wikipedia.org/wiki/1984_Austrian_Grand_Prix +448,1984,13,39,Dutch Grand Prix,1984-08-26,"",http://en.wikipedia.org/wiki/1984_Dutch_Grand_Prix +449,1984,14,14,Italian Grand Prix,1984-09-09,"",http://en.wikipedia.org/wiki/1984_Italian_Grand_Prix +450,1984,15,20,European Grand Prix,1984-10-07,"",http://en.wikipedia.org/wiki/1984_European_Grand_Prix +451,1984,16,27,Portuguese Grand Prix,1984-10-21,"",http://en.wikipedia.org/wiki/1984_Portuguese_Grand_Prix +452,1983,1,36,Brazilian Grand Prix,1983-03-13,"",http://en.wikipedia.org/wiki/1983_Brazilian_Grand_Prix +453,1983,2,43,United States Grand Prix West,1983-03-27,"",http://en.wikipedia.org/wiki/1983_United_States_Grand_Prix_West +454,1983,3,34,French Grand Prix,1983-04-17,"",http://en.wikipedia.org/wiki/1983_French_Grand_Prix +455,1983,4,21,San Marino Grand Prix,1983-05-01,"",http://en.wikipedia.org/wiki/1983_San_Marino_Grand_Prix +456,1983,5,6,Monaco Grand Prix,1983-05-15,"",http://en.wikipedia.org/wiki/1983_Monaco_Grand_Prix +457,1983,6,13,Belgian Grand Prix,1983-05-22,"",http://en.wikipedia.org/wiki/1983_Belgian_Grand_Prix +458,1983,7,37,Detroit Grand Prix,1983-06-05,"",http://en.wikipedia.org/wiki/1983_Detroit_Grand_Prix +459,1983,8,7,Canadian Grand Prix,1983-06-12,"",http://en.wikipedia.org/wiki/1983_Canadian_Grand_Prix +460,1983,9,9,British Grand Prix,1983-07-16,"",http://en.wikipedia.org/wiki/1983_British_Grand_Prix +461,1983,10,10,German Grand Prix,1983-08-07,"",http://en.wikipedia.org/wiki/1983_German_Grand_Prix +462,1983,11,23,Austrian Grand Prix,1983-08-14,"",http://en.wikipedia.org/wiki/1983_Austrian_Grand_Prix +463,1983,12,39,Dutch Grand Prix,1983-08-28,"",http://en.wikipedia.org/wiki/1983_Dutch_Grand_Prix +464,1983,13,14,Italian Grand Prix,1983-09-11,"",http://en.wikipedia.org/wiki/1983_Italian_Grand_Prix +465,1983,14,38,European Grand Prix,1983-09-25,"",http://en.wikipedia.org/wiki/1983_European_Grand_Prix +466,1983,15,30,South African Grand Prix,1983-10-15,"",http://en.wikipedia.org/wiki/1983_South_African_Grand_Prix +467,1982,1,30,South African Grand Prix,1982-01-23,"",http://en.wikipedia.org/wiki/1982_South_African_Grand_Prix +468,1982,2,36,Brazilian Grand Prix,1982-03-21,"",http://en.wikipedia.org/wiki/1982_Brazilian_Grand_Prix +469,1982,3,43,United States Grand Prix West,1982-04-04,"",http://en.wikipedia.org/wiki/1982_United_States_Grand_Prix_West +470,1982,4,21,San Marino Grand Prix,1982-04-25,"",http://en.wikipedia.org/wiki/1982_San_Marino_Grand_Prix +471,1982,5,40,Belgian Grand Prix,1982-05-09,"",http://en.wikipedia.org/wiki/1982_Belgian_Grand_Prix +472,1982,6,6,Monaco Grand Prix,1982-05-23,"",http://en.wikipedia.org/wiki/1982_Monaco_Grand_Prix +473,1982,7,37,Detroit Grand Prix,1982-06-06,"",http://en.wikipedia.org/wiki/1982_Detroit_Grand_Prix +474,1982,8,7,Canadian Grand Prix,1982-06-13,"",http://en.wikipedia.org/wiki/1982_Canadian_Grand_Prix +475,1982,9,39,Dutch Grand Prix,1982-07-03,"",http://en.wikipedia.org/wiki/1982_Dutch_Grand_Prix +476,1982,10,38,British Grand Prix,1982-07-18,"",http://en.wikipedia.org/wiki/1982_British_Grand_Prix +477,1982,11,34,French Grand Prix,1982-07-25,"",http://en.wikipedia.org/wiki/1982_French_Grand_Prix +478,1982,12,10,German Grand Prix,1982-08-08,"",http://en.wikipedia.org/wiki/1982_German_Grand_Prix +479,1982,13,23,Austrian Grand Prix,1982-08-15,"",http://en.wikipedia.org/wiki/1982_Austrian_Grand_Prix +480,1982,14,41,Swiss Grand Prix,1982-08-29,"",http://en.wikipedia.org/wiki/1982_Swiss_Grand_Prix +481,1982,15,14,Italian Grand Prix,1982-09-12,"",http://en.wikipedia.org/wiki/1982_Italian_Grand_Prix +482,1982,16,44,Caesars Palace Grand Prix,1982-09-25,"",http://en.wikipedia.org/wiki/1982_Caesars_Palace_Grand_Prix +483,1981,1,43,United States Grand Prix West,1981-03-15,"",http://en.wikipedia.org/wiki/1981_United_States_Grand_Prix_West +484,1981,2,36,Brazilian Grand Prix,1981-03-29,"",http://en.wikipedia.org/wiki/1981_Brazilian_Grand_Prix +485,1981,3,25,Argentine Grand Prix,1981-04-12,"",http://en.wikipedia.org/wiki/1981_Argentine_Grand_Prix +486,1981,4,21,San Marino Grand Prix,1981-05-03,"",http://en.wikipedia.org/wiki/1981_San_Marino_Grand_Prix +487,1981,5,40,Belgian Grand Prix,1981-05-17,"",http://en.wikipedia.org/wiki/1981_Belgian_Grand_Prix +488,1981,6,6,Monaco Grand Prix,1981-05-31,"",http://en.wikipedia.org/wiki/1981_Monaco_Grand_Prix +489,1981,7,45,Spanish Grand Prix,1981-06-21,"",http://en.wikipedia.org/wiki/1981_Spanish_Grand_Prix +490,1981,8,41,French Grand Prix,1981-07-05,"",http://en.wikipedia.org/wiki/1981_French_Grand_Prix +491,1981,9,9,British Grand Prix,1981-07-18,"",http://en.wikipedia.org/wiki/1981_British_Grand_Prix +492,1981,10,10,German Grand Prix,1981-08-02,"",http://en.wikipedia.org/wiki/1981_German_Grand_Prix +493,1981,11,23,Austrian Grand Prix,1981-08-16,"",http://en.wikipedia.org/wiki/1981_Austrian_Grand_Prix +494,1981,12,39,Dutch Grand Prix,1981-08-30,"",http://en.wikipedia.org/wiki/1981_Dutch_Grand_Prix +495,1981,13,14,Italian Grand Prix,1981-09-13,"",http://en.wikipedia.org/wiki/1981_Italian_Grand_Prix +496,1981,14,7,Canadian Grand Prix,1981-09-27,"",http://en.wikipedia.org/wiki/1981_Canadian_Grand_Prix +497,1981,15,44,Caesars Palace Grand Prix,1981-10-17,"",http://en.wikipedia.org/wiki/1981_Caesars_Palace_Grand_Prix +498,1980,1,25,Argentine Grand Prix,1980-01-13,"",http://en.wikipedia.org/wiki/1980_Argentine_Grand_Prix +499,1980,2,18,Brazilian Grand Prix,1980-01-27,"",http://en.wikipedia.org/wiki/1980_Brazilian_Grand_Prix +500,1980,3,30,South African Grand Prix,1980-03-01,"",http://en.wikipedia.org/wiki/1980_South_African_Grand_Prix +501,1980,4,43,United States Grand Prix West,1980-03-30,"",http://en.wikipedia.org/wiki/1980_United_States_Grand_Prix_West +502,1980,5,40,Belgian Grand Prix,1980-05-04,"",http://en.wikipedia.org/wiki/1980_Belgian_Grand_Prix +503,1980,6,6,Monaco Grand Prix,1980-05-18,"",http://en.wikipedia.org/wiki/1980_Monaco_Grand_Prix +504,1980,7,34,French Grand Prix,1980-06-29,"",http://en.wikipedia.org/wiki/1980_French_Grand_Prix +505,1980,8,38,British Grand Prix,1980-07-13,"",http://en.wikipedia.org/wiki/1980_British_Grand_Prix +506,1980,9,10,German Grand Prix,1980-08-10,"",http://en.wikipedia.org/wiki/1980_German_Grand_Prix +507,1980,10,23,Austrian Grand Prix,1980-08-17,"",http://en.wikipedia.org/wiki/1980_Austrian_Grand_Prix +508,1980,11,39,Dutch Grand Prix,1980-08-31,"",http://en.wikipedia.org/wiki/1980_Dutch_Grand_Prix +509,1980,12,21,Italian Grand Prix,1980-09-14,"",http://en.wikipedia.org/wiki/1980_Italian_Grand_Prix +510,1980,13,7,Canadian Grand Prix,1980-09-28,"",http://en.wikipedia.org/wiki/1980_Canadian_Grand_Prix +511,1980,14,46,United States Grand Prix,1980-10-05,"",http://en.wikipedia.org/wiki/1980_United_States_Grand_Prix +512,1979,1,25,Argentine Grand Prix,1979-01-21,"",http://en.wikipedia.org/wiki/1979_Argentine_Grand_Prix +513,1979,2,18,Brazilian Grand Prix,1979-02-04,"",http://en.wikipedia.org/wiki/1979_Brazilian_Grand_Prix +514,1979,3,30,South African Grand Prix,1979-03-03,"",http://en.wikipedia.org/wiki/1979_South_African_Grand_Prix +515,1979,4,43,United States Grand Prix West,1979-04-08,"",http://en.wikipedia.org/wiki/1979_United_States_Grand_Prix_West +516,1979,5,45,Spanish Grand Prix,1979-04-29,"",http://en.wikipedia.org/wiki/1979_Spanish_Grand_Prix +517,1979,6,40,Belgian Grand Prix,1979-05-13,"",http://en.wikipedia.org/wiki/1979_Belgian_Grand_Prix +518,1979,7,6,Monaco Grand Prix,1979-05-27,"",http://en.wikipedia.org/wiki/1979_Monaco_Grand_Prix +519,1979,8,41,French Grand Prix,1979-07-01,"",http://en.wikipedia.org/wiki/1979_French_Grand_Prix +520,1979,9,9,British Grand Prix,1979-07-14,"",http://en.wikipedia.org/wiki/1979_British_Grand_Prix +521,1979,10,10,German Grand Prix,1979-07-29,"",http://en.wikipedia.org/wiki/1979_German_Grand_Prix +522,1979,11,23,Austrian Grand Prix,1979-08-12,"",http://en.wikipedia.org/wiki/1979_Austrian_Grand_Prix +523,1979,12,39,Dutch Grand Prix,1979-08-26,"",http://en.wikipedia.org/wiki/1979_Dutch_Grand_Prix +524,1979,13,14,Italian Grand Prix,1979-09-09,"",http://en.wikipedia.org/wiki/1979_Italian_Grand_Prix +525,1979,14,7,Canadian Grand Prix,1979-09-30,"",http://en.wikipedia.org/wiki/1979_Canadian_Grand_Prix +526,1979,15,46,United States Grand Prix,1979-10-07,"",http://en.wikipedia.org/wiki/1979_United_States_Grand_Prix +527,1978,1,25,Argentine Grand Prix,1978-01-15,"",http://en.wikipedia.org/wiki/1978_Argentine_Grand_Prix +528,1978,2,36,Brazilian Grand Prix,1978-01-29,"",http://en.wikipedia.org/wiki/1978_Brazilian_Grand_Prix +529,1978,3,30,South African Grand Prix,1978-03-04,"",http://en.wikipedia.org/wiki/1978_South_African_Grand_Prix +530,1978,4,43,United States Grand Prix West,1978-04-02,"",http://en.wikipedia.org/wiki/1978_United_States_Grand_Prix_West +531,1978,5,6,Monaco Grand Prix,1978-05-07,"",http://en.wikipedia.org/wiki/1978_Monaco_Grand_Prix +532,1978,6,40,Belgian Grand Prix,1978-05-21,"",http://en.wikipedia.org/wiki/1978_Belgian_Grand_Prix +533,1978,7,45,Spanish Grand Prix,1978-06-04,"",http://en.wikipedia.org/wiki/1978_Spanish_Grand_Prix +534,1978,8,47,Swedish Grand Prix,1978-06-17,"",http://en.wikipedia.org/wiki/1978_Swedish_Grand_Prix +535,1978,9,34,French Grand Prix,1978-07-02,"",http://en.wikipedia.org/wiki/1978_French_Grand_Prix +536,1978,10,38,British Grand Prix,1978-07-16,"",http://en.wikipedia.org/wiki/1978_British_Grand_Prix +537,1978,11,10,German Grand Prix,1978-07-30,"",http://en.wikipedia.org/wiki/1978_German_Grand_Prix +538,1978,12,23,Austrian Grand Prix,1978-08-13,"",http://en.wikipedia.org/wiki/1978_Austrian_Grand_Prix +539,1978,13,39,Dutch Grand Prix,1978-08-27,"",http://en.wikipedia.org/wiki/1978_Dutch_Grand_Prix +540,1978,14,14,Italian Grand Prix,1978-09-10,"",http://en.wikipedia.org/wiki/1978_Italian_Grand_Prix +541,1978,15,46,United States Grand Prix,1978-10-01,"",http://en.wikipedia.org/wiki/1978_United_States_Grand_Prix +542,1978,16,7,Canadian Grand Prix,1978-10-08,"",http://en.wikipedia.org/wiki/1978_Canadian_Grand_Prix +543,1977,1,25,Argentine Grand Prix,1977-01-09,"",http://en.wikipedia.org/wiki/1977_Argentine_Grand_Prix +544,1977,2,18,Brazilian Grand Prix,1977-01-23,"",http://en.wikipedia.org/wiki/1977_Brazilian_Grand_Prix +545,1977,3,30,South African Grand Prix,1977-03-05,"",http://en.wikipedia.org/wiki/1977_South_African_Grand_Prix +546,1977,4,43,United States Grand Prix West,1977-04-03,"",http://en.wikipedia.org/wiki/1977_United_States_Grand_Prix_West +547,1977,5,45,Spanish Grand Prix,1977-05-08,"",http://en.wikipedia.org/wiki/1977_Spanish_Grand_Prix +548,1977,6,6,Monaco Grand Prix,1977-05-22,"",http://en.wikipedia.org/wiki/1977_Monaco_Grand_Prix +549,1977,7,40,Belgian Grand Prix,1977-06-05,"",http://en.wikipedia.org/wiki/1977_Belgian_Grand_Prix +550,1977,8,47,Swedish Grand Prix,1977-06-19,"",http://en.wikipedia.org/wiki/1977_Swedish_Grand_Prix +551,1977,9,41,French Grand Prix,1977-07-03,"",http://en.wikipedia.org/wiki/1977_French_Grand_Prix +552,1977,10,9,British Grand Prix,1977-07-16,"",http://en.wikipedia.org/wiki/1977_British_Grand_Prix +553,1977,11,10,German Grand Prix,1977-07-31,"",http://en.wikipedia.org/wiki/1977_German_Grand_Prix +554,1977,12,23,Austrian Grand Prix,1977-08-14,"",http://en.wikipedia.org/wiki/1977_Austrian_Grand_Prix +555,1977,13,39,Dutch Grand Prix,1977-08-28,"",http://en.wikipedia.org/wiki/1977_Dutch_Grand_Prix +556,1977,14,14,Italian Grand Prix,1977-09-11,"",http://en.wikipedia.org/wiki/1977_Italian_Grand_Prix +557,1977,15,46,United States Grand Prix,1977-10-02,"",http://en.wikipedia.org/wiki/1977_United_States_Grand_Prix +558,1977,16,48,Canadian Grand Prix,1977-10-09,"",http://en.wikipedia.org/wiki/1977_Canadian_Grand_Prix +559,1977,17,16,Japanese Grand Prix,1977-10-23,"",http://en.wikipedia.org/wiki/1977_Japanese_Grand_Prix +560,1976,1,18,Brazilian Grand Prix,1976-01-25,"",http://en.wikipedia.org/wiki/1976_Brazilian_Grand_Prix +561,1976,2,30,South African Grand Prix,1976-03-06,"",http://en.wikipedia.org/wiki/1976_South_African_Grand_Prix +562,1976,3,43,United States Grand Prix West,1976-03-28,"",http://en.wikipedia.org/wiki/1976_United_States_Grand_Prix_West +563,1976,4,45,Spanish Grand Prix,1976-05-02,"",http://en.wikipedia.org/wiki/1976_Spanish_Grand_Prix +564,1976,5,40,Belgian Grand Prix,1976-05-16,"",http://en.wikipedia.org/wiki/1976_Belgian_Grand_Prix +565,1976,6,6,Monaco Grand Prix,1976-05-30,"",http://en.wikipedia.org/wiki/1976_Monaco_Grand_Prix +566,1976,7,47,Swedish Grand Prix,1976-06-13,"",http://en.wikipedia.org/wiki/1976_Swedish_Grand_Prix +567,1976,8,34,French Grand Prix,1976-07-04,"",http://en.wikipedia.org/wiki/1976_French_Grand_Prix +568,1976,9,38,British Grand Prix,1976-07-18,"",http://en.wikipedia.org/wiki/1976_British_Grand_Prix +569,1976,10,20,German Grand Prix,1976-08-01,"",http://en.wikipedia.org/wiki/1976_German_Grand_Prix +570,1976,11,23,Austrian Grand Prix,1976-08-15,"",http://en.wikipedia.org/wiki/1976_Austrian_Grand_Prix +571,1976,12,39,Dutch Grand Prix,1976-08-29,"",http://en.wikipedia.org/wiki/1976_Dutch_Grand_Prix +572,1976,13,14,Italian Grand Prix,1976-09-12,"",http://en.wikipedia.org/wiki/1976_Italian_Grand_Prix +573,1976,14,48,Canadian Grand Prix,1976-10-03,"",http://en.wikipedia.org/wiki/1976_Canadian_Grand_Prix +574,1976,15,46,United States Grand Prix,1976-10-10,"",http://en.wikipedia.org/wiki/1976_United_States_Grand_Prix +575,1976,16,16,Japanese Grand Prix,1976-10-24,"",http://en.wikipedia.org/wiki/1976_Japanese_Grand_Prix +576,1975,1,25,Argentine Grand Prix,1975-01-12,"",http://en.wikipedia.org/wiki/1975_Argentine_Grand_Prix +577,1975,2,18,Brazilian Grand Prix,1975-01-26,"",http://en.wikipedia.org/wiki/1975_Brazilian_Grand_Prix +578,1975,3,30,South African Grand Prix,1975-03-01,"",http://en.wikipedia.org/wiki/1975_South_African_Grand_Prix +579,1975,4,49,Spanish Grand Prix,1975-04-27,"",http://en.wikipedia.org/wiki/1975_Spanish_Grand_Prix +580,1975,5,6,Monaco Grand Prix,1975-05-11,"",http://en.wikipedia.org/wiki/1975_Monaco_Grand_Prix +581,1975,6,40,Belgian Grand Prix,1975-05-25,"",http://en.wikipedia.org/wiki/1975_Belgian_Grand_Prix +582,1975,7,47,Swedish Grand Prix,1975-06-08,"",http://en.wikipedia.org/wiki/1975_Swedish_Grand_Prix +583,1975,8,39,Dutch Grand Prix,1975-06-22,"",http://en.wikipedia.org/wiki/1975_Dutch_Grand_Prix +584,1975,9,34,French Grand Prix,1975-07-06,"",http://en.wikipedia.org/wiki/1975_French_Grand_Prix +585,1975,10,9,British Grand Prix,1975-07-19,"",http://en.wikipedia.org/wiki/1975_British_Grand_Prix +586,1975,11,20,German Grand Prix,1975-08-03,"",http://en.wikipedia.org/wiki/1975_German_Grand_Prix +587,1975,12,23,Austrian Grand Prix,1975-08-17,"",http://en.wikipedia.org/wiki/1975_Austrian_Grand_Prix +588,1975,13,14,Italian Grand Prix,1975-09-07,"",http://en.wikipedia.org/wiki/1975_Italian_Grand_Prix +589,1975,14,46,United States Grand Prix,1975-10-05,"",http://en.wikipedia.org/wiki/1975_United_States_Grand_Prix +590,1974,1,25,Argentine Grand Prix,1974-01-13,"",http://en.wikipedia.org/wiki/1974_Argentine_Grand_Prix +591,1974,2,18,Brazilian Grand Prix,1974-01-27,"",http://en.wikipedia.org/wiki/1974_Brazilian_Grand_Prix +592,1974,3,30,South African Grand Prix,1974-03-30,"",http://en.wikipedia.org/wiki/1974_South_African_Grand_Prix +593,1974,4,45,Spanish Grand Prix,1974-04-28,"",http://en.wikipedia.org/wiki/1974_Spanish_Grand_Prix +594,1974,5,50,Belgian Grand Prix,1974-05-12,"",http://en.wikipedia.org/wiki/1974_Belgian_Grand_Prix +595,1974,6,6,Monaco Grand Prix,1974-05-26,"",http://en.wikipedia.org/wiki/1974_Monaco_Grand_Prix +596,1974,7,47,Swedish Grand Prix,1974-06-09,"",http://en.wikipedia.org/wiki/1974_Swedish_Grand_Prix +597,1974,8,39,Dutch Grand Prix,1974-06-23,"",http://en.wikipedia.org/wiki/1974_Dutch_Grand_Prix +598,1974,9,41,French Grand Prix,1974-07-07,"",http://en.wikipedia.org/wiki/1974_French_Grand_Prix +599,1974,10,38,British Grand Prix,1974-07-20,"",http://en.wikipedia.org/wiki/1974_British_Grand_Prix +600,1974,11,20,German Grand Prix,1974-08-04,"",http://en.wikipedia.org/wiki/1974_German_Grand_Prix +601,1974,12,23,Austrian Grand Prix,1974-08-18,"",http://en.wikipedia.org/wiki/1974_Austrian_Grand_Prix +602,1974,13,14,Italian Grand Prix,1974-09-08,"",http://en.wikipedia.org/wiki/1974_Italian_Grand_Prix +603,1974,14,48,Canadian Grand Prix,1974-09-22,"",http://en.wikipedia.org/wiki/1974_Canadian_Grand_Prix +604,1974,15,46,United States Grand Prix,1974-10-06,"",http://en.wikipedia.org/wiki/1974_United_States_Grand_Prix +605,1973,1,25,Argentine Grand Prix,1973-01-28,"",http://en.wikipedia.org/wiki/1973_Argentine_Grand_Prix +606,1973,2,18,Brazilian Grand Prix,1973-02-11,"",http://en.wikipedia.org/wiki/1973_Brazilian_Grand_Prix +607,1973,3,30,South African Grand Prix,1973-03-03,"",http://en.wikipedia.org/wiki/1973_South_African_Grand_Prix +608,1973,4,49,Spanish Grand Prix,1973-04-29,"",http://en.wikipedia.org/wiki/1973_Spanish_Grand_Prix +609,1973,5,40,Belgian Grand Prix,1973-05-20,"",http://en.wikipedia.org/wiki/1973_Belgian_Grand_Prix +610,1973,6,6,Monaco Grand Prix,1973-06-03,"",http://en.wikipedia.org/wiki/1973_Monaco_Grand_Prix +611,1973,7,47,Swedish Grand Prix,1973-06-17,"",http://en.wikipedia.org/wiki/1973_Swedish_Grand_Prix +612,1973,8,34,French Grand Prix,1973-07-01,"",http://en.wikipedia.org/wiki/1973_French_Grand_Prix +613,1973,9,9,British Grand Prix,1973-07-14,"",http://en.wikipedia.org/wiki/1973_British_Grand_Prix +614,1973,10,39,Dutch Grand Prix,1973-07-29,"",http://en.wikipedia.org/wiki/1973_Dutch_Grand_Prix +615,1973,11,20,German Grand Prix,1973-08-05,"",http://en.wikipedia.org/wiki/1973_German_Grand_Prix +616,1973,12,23,Austrian Grand Prix,1973-08-19,"",http://en.wikipedia.org/wiki/1973_Austrian_Grand_Prix +617,1973,13,14,Italian Grand Prix,1973-09-09,"",http://en.wikipedia.org/wiki/1973_Italian_Grand_Prix +618,1973,14,48,Canadian Grand Prix,1973-09-23,"",http://en.wikipedia.org/wiki/1973_Canadian_Grand_Prix +619,1973,15,46,United States Grand Prix,1973-10-07,"",http://en.wikipedia.org/wiki/1973_United_States_Grand_Prix +620,1972,1,25,Argentine Grand Prix,1972-01-23,"",http://en.wikipedia.org/wiki/1972_Argentine_Grand_Prix +621,1972,2,30,South African Grand Prix,1972-03-04,"",http://en.wikipedia.org/wiki/1972_South_African_Grand_Prix +622,1972,3,45,Spanish Grand Prix,1972-05-01,"",http://en.wikipedia.org/wiki/1972_Spanish_Grand_Prix +623,1972,4,6,Monaco Grand Prix,1972-05-14,"",http://en.wikipedia.org/wiki/1972_Monaco_Grand_Prix +624,1972,5,50,Belgian Grand Prix,1972-06-04,"",http://en.wikipedia.org/wiki/1972_Belgian_Grand_Prix +625,1972,6,51,French Grand Prix,1972-07-02,"",http://en.wikipedia.org/wiki/1972_French_Grand_Prix +626,1972,7,38,British Grand Prix,1972-07-15,"",http://en.wikipedia.org/wiki/1972_British_Grand_Prix +627,1972,8,20,German Grand Prix,1972-07-30,"",http://en.wikipedia.org/wiki/1972_German_Grand_Prix +628,1972,9,23,Austrian Grand Prix,1972-08-13,"",http://en.wikipedia.org/wiki/1972_Austrian_Grand_Prix +629,1972,10,14,Italian Grand Prix,1972-09-10,"",http://en.wikipedia.org/wiki/1972_Italian_Grand_Prix +630,1972,11,48,Canadian Grand Prix,1972-09-24,"",http://en.wikipedia.org/wiki/1972_Canadian_Grand_Prix +631,1972,12,46,United States Grand Prix,1972-10-08,"",http://en.wikipedia.org/wiki/1972_United_States_Grand_Prix +632,1971,1,30,South African Grand Prix,1971-03-06,"",http://en.wikipedia.org/wiki/1971_South_African_Grand_Prix +633,1971,2,49,Spanish Grand Prix,1971-04-18,"",http://en.wikipedia.org/wiki/1971_Spanish_Grand_Prix +634,1971,3,6,Monaco Grand Prix,1971-05-23,"",http://en.wikipedia.org/wiki/1971_Monaco_Grand_Prix +635,1971,4,39,Dutch Grand Prix,1971-06-20,"",http://en.wikipedia.org/wiki/1971_Dutch_Grand_Prix +636,1971,5,34,French Grand Prix,1971-07-04,"",http://en.wikipedia.org/wiki/1971_French_Grand_Prix +637,1971,6,9,British Grand Prix,1971-07-17,"",http://en.wikipedia.org/wiki/1971_British_Grand_Prix +638,1971,7,20,German Grand Prix,1971-08-01,"",http://en.wikipedia.org/wiki/1971_German_Grand_Prix +639,1971,8,23,Austrian Grand Prix,1971-08-15,"",http://en.wikipedia.org/wiki/1971_Austrian_Grand_Prix +640,1971,9,14,Italian Grand Prix,1971-09-05,"",http://en.wikipedia.org/wiki/1971_Italian_Grand_Prix +641,1971,10,48,Canadian Grand Prix,1971-09-19,"",http://en.wikipedia.org/wiki/1971_Canadian_Grand_Prix +642,1971,11,46,United States Grand Prix,1971-10-03,"",http://en.wikipedia.org/wiki/1971_United_States_Grand_Prix +643,1970,1,30,South African Grand Prix,1970-03-07,"",http://en.wikipedia.org/wiki/1970_South_African_Grand_Prix +644,1970,2,45,Spanish Grand Prix,1970-04-19,"",http://en.wikipedia.org/wiki/1970_Spanish_Grand_Prix +645,1970,3,6,Monaco Grand Prix,1970-05-10,"",http://en.wikipedia.org/wiki/1970_Monaco_Grand_Prix +646,1970,4,13,Belgian Grand Prix,1970-06-07,"",http://en.wikipedia.org/wiki/1970_Belgian_Grand_Prix +647,1970,5,39,Dutch Grand Prix,1970-06-21,"",http://en.wikipedia.org/wiki/1970_Dutch_Grand_Prix +648,1970,6,51,French Grand Prix,1970-07-05,"",http://en.wikipedia.org/wiki/1970_French_Grand_Prix +649,1970,7,38,British Grand Prix,1970-07-18,"",http://en.wikipedia.org/wiki/1970_British_Grand_Prix +650,1970,8,10,German Grand Prix,1970-08-02,"",http://en.wikipedia.org/wiki/1970_German_Grand_Prix +651,1970,9,23,Austrian Grand Prix,1970-08-16,"",http://en.wikipedia.org/wiki/1970_Austrian_Grand_Prix +652,1970,10,14,Italian Grand Prix,1970-09-06,"",http://en.wikipedia.org/wiki/1970_Italian_Grand_Prix +653,1970,11,52,Canadian Grand Prix,1970-09-20,"",http://en.wikipedia.org/wiki/1970_Canadian_Grand_Prix +654,1970,12,46,United States Grand Prix,1970-10-04,"",http://en.wikipedia.org/wiki/1970_United_States_Grand_Prix +655,1970,13,32,Mexican Grand Prix,1970-10-25,"",http://en.wikipedia.org/wiki/1970_Mexican_Grand_Prix +656,1969,1,30,South African Grand Prix,1969-03-01,"",http://en.wikipedia.org/wiki/1969_South_African_Grand_Prix +657,1969,2,49,Spanish Grand Prix,1969-05-04,"",http://en.wikipedia.org/wiki/1969_Spanish_Grand_Prix +658,1969,3,6,Monaco Grand Prix,1969-05-18,"",http://en.wikipedia.org/wiki/1969_Monaco_Grand_Prix +659,1969,4,39,Dutch Grand Prix,1969-06-21,"",http://en.wikipedia.org/wiki/1969_Dutch_Grand_Prix +660,1969,5,51,French Grand Prix,1969-07-06,"",http://en.wikipedia.org/wiki/1969_French_Grand_Prix +661,1969,6,9,British Grand Prix,1969-07-19,"",http://en.wikipedia.org/wiki/1969_British_Grand_Prix +662,1969,7,20,German Grand Prix,1969-08-03,"",http://en.wikipedia.org/wiki/1969_German_Grand_Prix +663,1969,8,14,Italian Grand Prix,1969-09-07,"",http://en.wikipedia.org/wiki/1969_Italian_Grand_Prix +664,1969,9,48,Canadian Grand Prix,1969-09-20,"",http://en.wikipedia.org/wiki/1969_Canadian_Grand_Prix +665,1969,10,46,United States Grand Prix,1969-10-05,"",http://en.wikipedia.org/wiki/1969_United_States_Grand_Prix +666,1969,11,32,Mexican Grand Prix,1969-10-19,"",http://en.wikipedia.org/wiki/1969_Mexican_Grand_Prix +667,1968,1,30,South African Grand Prix,1968-01-01,"",http://en.wikipedia.org/wiki/1968_South_African_Grand_Prix +668,1968,2,45,Spanish Grand Prix,1968-05-12,"",http://en.wikipedia.org/wiki/1968_Spanish_Grand_Prix +669,1968,3,6,Monaco Grand Prix,1968-05-26,"",http://en.wikipedia.org/wiki/1968_Monaco_Grand_Prix +670,1968,4,13,Belgian Grand Prix,1968-06-09,"",http://en.wikipedia.org/wiki/1968_Belgian_Grand_Prix +671,1968,5,39,Dutch Grand Prix,1968-06-23,"",http://en.wikipedia.org/wiki/1968_Dutch_Grand_Prix +672,1968,6,53,French Grand Prix,1968-07-07,"",http://en.wikipedia.org/wiki/1968_French_Grand_Prix +673,1968,7,38,British Grand Prix,1968-07-20,"",http://en.wikipedia.org/wiki/1968_British_Grand_Prix +674,1968,8,20,German Grand Prix,1968-08-04,"",http://en.wikipedia.org/wiki/1968_German_Grand_Prix +675,1968,9,14,Italian Grand Prix,1968-09-08,"",http://en.wikipedia.org/wiki/1968_Italian_Grand_Prix +676,1968,10,52,Canadian Grand Prix,1968-09-22,"",http://en.wikipedia.org/wiki/1968_Canadian_Grand_Prix +677,1968,11,46,United States Grand Prix,1968-10-06,"",http://en.wikipedia.org/wiki/1968_United_States_Grand_Prix +678,1968,12,32,Mexican Grand Prix,1968-11-03,"",http://en.wikipedia.org/wiki/1968_Mexican_Grand_Prix +679,1967,1,30,South African Grand Prix,1967-01-02,"",http://en.wikipedia.org/wiki/1967_South_African_Grand_Prix +680,1967,2,6,Monaco Grand Prix,1967-05-07,"",http://en.wikipedia.org/wiki/1967_Monaco_Grand_Prix +681,1967,3,39,Dutch Grand Prix,1967-06-04,"",http://en.wikipedia.org/wiki/1967_Dutch_Grand_Prix +682,1967,4,13,Belgian Grand Prix,1967-06-18,"",http://en.wikipedia.org/wiki/1967_Belgian_Grand_Prix +683,1967,5,54,French Grand Prix,1967-07-02,"",http://en.wikipedia.org/wiki/1967_French_Grand_Prix +684,1967,6,9,British Grand Prix,1967-07-15,"",http://en.wikipedia.org/wiki/1967_British_Grand_Prix +685,1967,7,20,German Grand Prix,1967-08-06,"",http://en.wikipedia.org/wiki/1967_German_Grand_Prix +686,1967,8,48,Canadian Grand Prix,1967-08-27,"",http://en.wikipedia.org/wiki/1967_Canadian_Grand_Prix +687,1967,9,14,Italian Grand Prix,1967-09-10,"",http://en.wikipedia.org/wiki/1967_Italian_Grand_Prix +688,1967,10,46,United States Grand Prix,1967-10-01,"",http://en.wikipedia.org/wiki/1967_United_States_Grand_Prix +689,1967,11,32,Mexican Grand Prix,1967-10-22,"",http://en.wikipedia.org/wiki/1967_Mexican_Grand_Prix +690,1966,1,6,Monaco Grand Prix,1966-05-22,"",http://en.wikipedia.org/wiki/1966_Monaco_Grand_Prix +691,1966,2,13,Belgian Grand Prix,1966-06-12,"",http://en.wikipedia.org/wiki/1966_Belgian_Grand_Prix +692,1966,3,55,French Grand Prix,1966-07-03,"",http://en.wikipedia.org/wiki/1966_French_Grand_Prix +693,1966,4,38,British Grand Prix,1966-07-16,"",http://en.wikipedia.org/wiki/1966_British_Grand_Prix +694,1966,5,39,Dutch Grand Prix,1966-07-24,"",http://en.wikipedia.org/wiki/1966_Dutch_Grand_Prix +695,1966,6,20,German Grand Prix,1966-08-07,"",http://en.wikipedia.org/wiki/1966_German_Grand_Prix +696,1966,7,14,Italian Grand Prix,1966-09-04,"",http://en.wikipedia.org/wiki/1966_Italian_Grand_Prix +697,1966,8,46,United States Grand Prix,1966-10-02,"",http://en.wikipedia.org/wiki/1966_United_States_Grand_Prix +698,1966,9,32,Mexican Grand Prix,1966-10-23,"",http://en.wikipedia.org/wiki/1966_Mexican_Grand_Prix +699,1965,1,56,South African Grand Prix,1965-01-01,"",http://en.wikipedia.org/wiki/1965_South_African_Grand_Prix +700,1965,2,6,Monaco Grand Prix,1965-05-30,"",http://en.wikipedia.org/wiki/1965_Monaco_Grand_Prix +701,1965,3,13,Belgian Grand Prix,1965-06-13,"",http://en.wikipedia.org/wiki/1965_Belgian_Grand_Prix +702,1965,4,51,French Grand Prix,1965-06-27,"",http://en.wikipedia.org/wiki/1965_French_Grand_Prix +703,1965,5,9,British Grand Prix,1965-07-10,"",http://en.wikipedia.org/wiki/1965_British_Grand_Prix +704,1965,6,39,Dutch Grand Prix,1965-07-18,"",http://en.wikipedia.org/wiki/1965_Dutch_Grand_Prix +705,1965,7,20,German Grand Prix,1965-08-01,"",http://en.wikipedia.org/wiki/1965_German_Grand_Prix +706,1965,8,14,Italian Grand Prix,1965-09-12,"",http://en.wikipedia.org/wiki/1965_Italian_Grand_Prix +707,1965,9,46,United States Grand Prix,1965-10-03,"",http://en.wikipedia.org/wiki/1965_United_States_Grand_Prix +708,1965,10,32,Mexican Grand Prix,1965-10-24,"",http://en.wikipedia.org/wiki/1965_Mexican_Grand_Prix +709,1964,1,6,Monaco Grand Prix,1964-05-10,"",http://en.wikipedia.org/wiki/1964_Monaco_Grand_Prix +710,1964,2,39,Dutch Grand Prix,1964-05-24,"",http://en.wikipedia.org/wiki/1964_Dutch_Grand_Prix +711,1964,3,13,Belgian Grand Prix,1964-06-14,"",http://en.wikipedia.org/wiki/1964_Belgian_Grand_Prix +712,1964,4,53,French Grand Prix,1964-06-28,"",http://en.wikipedia.org/wiki/1964_French_Grand_Prix +713,1964,5,38,British Grand Prix,1964-07-11,"",http://en.wikipedia.org/wiki/1964_British_Grand_Prix +714,1964,6,20,German Grand Prix,1964-08-02,"",http://en.wikipedia.org/wiki/1964_German_Grand_Prix +715,1964,7,57,Austrian Grand Prix,1964-08-23,"",http://en.wikipedia.org/wiki/1964_Austrian_Grand_Prix +716,1964,8,14,Italian Grand Prix,1964-09-06,"",http://en.wikipedia.org/wiki/1964_Italian_Grand_Prix +717,1964,9,46,United States Grand Prix,1964-10-04,"",http://en.wikipedia.org/wiki/1964_United_States_Grand_Prix +718,1964,10,32,Mexican Grand Prix,1964-10-25,"",http://en.wikipedia.org/wiki/1964_Mexican_Grand_Prix +719,1963,1,6,Monaco Grand Prix,1963-05-26,"",http://en.wikipedia.org/wiki/1963_Monaco_Grand_Prix +720,1963,2,13,Belgian Grand Prix,1963-06-09,"",http://en.wikipedia.org/wiki/1963_Belgian_Grand_Prix +721,1963,3,39,Dutch Grand Prix,1963-06-23,"",http://en.wikipedia.org/wiki/1963_Dutch_Grand_Prix +722,1963,4,55,French Grand Prix,1963-06-30,"",http://en.wikipedia.org/wiki/1963_French_Grand_Prix +723,1963,5,9,British Grand Prix,1963-07-20,"",http://en.wikipedia.org/wiki/1963_British_Grand_Prix +724,1963,6,20,German Grand Prix,1963-08-04,"",http://en.wikipedia.org/wiki/1963_German_Grand_Prix +725,1963,7,14,Italian Grand Prix,1963-09-08,"",http://en.wikipedia.org/wiki/1963_Italian_Grand_Prix +726,1963,8,46,United States Grand Prix,1963-10-06,"",http://en.wikipedia.org/wiki/1963_United_States_Grand_Prix +727,1963,9,32,Mexican Grand Prix,1963-10-27,"",http://en.wikipedia.org/wiki/1963_Mexican_Grand_Prix +728,1963,10,56,South African Grand Prix,1963-12-28,"",http://en.wikipedia.org/wiki/1963_South_African_Grand_Prix +729,1962,1,39,Dutch Grand Prix,1962-05-20,"",http://en.wikipedia.org/wiki/1962_Dutch_Grand_Prix +730,1962,2,6,Monaco Grand Prix,1962-06-03,"",http://en.wikipedia.org/wiki/1962_Monaco_Grand_Prix +731,1962,3,13,Belgian Grand Prix,1962-06-17,"",http://en.wikipedia.org/wiki/1962_Belgian_Grand_Prix +732,1962,4,53,French Grand Prix,1962-07-08,"",http://en.wikipedia.org/wiki/1962_French_Grand_Prix +733,1962,5,58,British Grand Prix,1962-07-21,"",http://en.wikipedia.org/wiki/1962_British_Grand_Prix +734,1962,6,20,German Grand Prix,1962-08-05,"",http://en.wikipedia.org/wiki/1962_German_Grand_Prix +735,1962,7,14,Italian Grand Prix,1962-09-16,"",http://en.wikipedia.org/wiki/1962_Italian_Grand_Prix +736,1962,8,46,United States Grand Prix,1962-10-07,"",http://en.wikipedia.org/wiki/1962_United_States_Grand_Prix +737,1962,9,56,South African Grand Prix,1962-12-29,"",http://en.wikipedia.org/wiki/1962_South_African_Grand_Prix +738,1961,1,6,Monaco Grand Prix,1961-05-14,"",http://en.wikipedia.org/wiki/1961_Monaco_Grand_Prix +739,1961,2,39,Dutch Grand Prix,1961-05-22,"",http://en.wikipedia.org/wiki/1961_Dutch_Grand_Prix +740,1961,3,13,Belgian Grand Prix,1961-06-18,"",http://en.wikipedia.org/wiki/1961_Belgian_Grand_Prix +741,1961,4,55,French Grand Prix,1961-07-02,"",http://en.wikipedia.org/wiki/1961_French_Grand_Prix +742,1961,5,58,British Grand Prix,1961-07-15,"",http://en.wikipedia.org/wiki/1961_British_Grand_Prix +743,1961,6,20,German Grand Prix,1961-08-06,"",http://en.wikipedia.org/wiki/1961_German_Grand_Prix +744,1961,7,14,Italian Grand Prix,1961-09-10,"",http://en.wikipedia.org/wiki/1961_Italian_Grand_Prix +745,1961,8,46,United States Grand Prix,1961-10-08,"",http://en.wikipedia.org/wiki/1961_United_States_Grand_Prix +746,1960,1,25,Argentine Grand Prix,1960-02-07,"",http://en.wikipedia.org/wiki/1960_Argentine_Grand_Prix +747,1960,2,6,Monaco Grand Prix,1960-05-29,"",http://en.wikipedia.org/wiki/1960_Monaco_Grand_Prix +748,1960,3,19,Indianapolis 500,1960-05-30,"",http://en.wikipedia.org/wiki/1960_Indianapolis_500 +749,1960,4,39,Dutch Grand Prix,1960-06-06,"",http://en.wikipedia.org/wiki/1960_Dutch_Grand_Prix +750,1960,5,13,Belgian Grand Prix,1960-06-19,"",http://en.wikipedia.org/wiki/1960_Belgian_Grand_Prix +751,1960,6,55,French Grand Prix,1960-07-03,"",http://en.wikipedia.org/wiki/1960_French_Grand_Prix +752,1960,7,9,British Grand Prix,1960-07-16,"",http://en.wikipedia.org/wiki/1960_British_Grand_Prix +753,1960,8,59,Portuguese Grand Prix,1960-08-14,"",http://en.wikipedia.org/wiki/1960_Portuguese_Grand_Prix +754,1960,9,14,Italian Grand Prix,1960-09-04,"",http://en.wikipedia.org/wiki/1960_Italian_Grand_Prix +755,1960,10,60,United States Grand Prix,1960-11-20,"",http://en.wikipedia.org/wiki/1960_United_States_Grand_Prix +756,1959,1,6,Monaco Grand Prix,1959-05-10,"",http://en.wikipedia.org/wiki/1959_Monaco_Grand_Prix +757,1959,2,19,Indianapolis 500,1959-05-30,"",http://en.wikipedia.org/wiki/1959_Indianapolis_500 +758,1959,3,39,Dutch Grand Prix,1959-05-31,"",http://en.wikipedia.org/wiki/1959_Dutch_Grand_Prix +759,1959,4,55,French Grand Prix,1959-07-05,"",http://en.wikipedia.org/wiki/1959_French_Grand_Prix +760,1959,5,58,British Grand Prix,1959-07-18,"",http://en.wikipedia.org/wiki/1959_British_Grand_Prix +761,1959,6,61,German Grand Prix,1959-08-02,"",http://en.wikipedia.org/wiki/1959_German_Grand_Prix +762,1959,7,62,Portuguese Grand Prix,1959-08-23,"",http://en.wikipedia.org/wiki/1959_Portuguese_Grand_Prix +763,1959,8,14,Italian Grand Prix,1959-09-13,"",http://en.wikipedia.org/wiki/1959_Italian_Grand_Prix +764,1959,9,63,United States Grand Prix,1959-12-12,"",http://en.wikipedia.org/wiki/1959_United_States_Grand_Prix +765,1958,1,25,Argentine Grand Prix,1958-01-19,"",http://en.wikipedia.org/wiki/1958_Argentine_Grand_Prix +766,1958,2,6,Monaco Grand Prix,1958-05-18,"",http://en.wikipedia.org/wiki/1958_Monaco_Grand_Prix +767,1958,3,39,Dutch Grand Prix,1958-05-26,"",http://en.wikipedia.org/wiki/1958_Dutch_Grand_Prix +768,1958,4,19,Indianapolis 500,1958-05-30,"",http://en.wikipedia.org/wiki/1958_Indianapolis_500 +769,1958,5,13,Belgian Grand Prix,1958-06-15,"",http://en.wikipedia.org/wiki/1958_Belgian_Grand_Prix +770,1958,6,55,French Grand Prix,1958-07-06,"",http://en.wikipedia.org/wiki/1958_French_Grand_Prix +771,1958,7,9,British Grand Prix,1958-07-19,"",http://en.wikipedia.org/wiki/1958_British_Grand_Prix +772,1958,8,20,German Grand Prix,1958-08-03,"",http://en.wikipedia.org/wiki/1958_German_Grand_Prix +773,1958,9,59,Portuguese Grand Prix,1958-08-24,"",http://en.wikipedia.org/wiki/1958_Portuguese_Grand_Prix +774,1958,10,14,Italian Grand Prix,1958-09-07,"",http://en.wikipedia.org/wiki/1958_Italian_Grand_Prix +775,1958,11,64,Moroccan Grand Prix,1958-10-19,"",http://en.wikipedia.org/wiki/1958_Moroccan_Grand_Prix +776,1957,1,25,Argentine Grand Prix,1957-01-13,"",http://en.wikipedia.org/wiki/1957_Argentine_Grand_Prix +777,1957,2,6,Monaco Grand Prix,1957-05-19,"",http://en.wikipedia.org/wiki/1957_Monaco_Grand_Prix +778,1957,3,19,Indianapolis 500,1957-05-30,"",http://en.wikipedia.org/wiki/1957_Indianapolis_500 +779,1957,4,53,French Grand Prix,1957-07-07,"",http://en.wikipedia.org/wiki/1957_French_Grand_Prix +780,1957,5,58,British Grand Prix,1957-07-20,"",http://en.wikipedia.org/wiki/1957_British_Grand_Prix +781,1957,6,20,German Grand Prix,1957-08-04,"",http://en.wikipedia.org/wiki/1957_German_Grand_Prix +782,1957,7,65,Pescara Grand Prix,1957-08-18,"",http://en.wikipedia.org/wiki/1957_Pescara_Grand_Prix +783,1957,8,14,Italian Grand Prix,1957-09-08,"",http://en.wikipedia.org/wiki/1957_Italian_Grand_Prix +784,1956,1,25,Argentine Grand Prix,1956-01-22,"",http://en.wikipedia.org/wiki/1956_Argentine_Grand_Prix +785,1956,2,6,Monaco Grand Prix,1956-05-13,"",http://en.wikipedia.org/wiki/1956_Monaco_Grand_Prix +786,1956,3,19,Indianapolis 500,1956-05-30,"",http://en.wikipedia.org/wiki/1956_Indianapolis_500 +787,1956,4,13,Belgian Grand Prix,1956-06-03,"",http://en.wikipedia.org/wiki/1956_Belgian_Grand_Prix +788,1956,5,55,French Grand Prix,1956-07-01,"",http://en.wikipedia.org/wiki/1956_French_Grand_Prix +789,1956,6,9,British Grand Prix,1956-07-14,"",http://en.wikipedia.org/wiki/1956_British_Grand_Prix +790,1956,7,20,German Grand Prix,1956-08-05,"",http://en.wikipedia.org/wiki/1956_German_Grand_Prix +791,1956,8,14,Italian Grand Prix,1956-09-02,"",http://en.wikipedia.org/wiki/1956_Italian_Grand_Prix +792,1955,1,25,Argentine Grand Prix,1955-01-16,"",http://en.wikipedia.org/wiki/1955_Argentine_Grand_Prix +793,1955,2,6,Monaco Grand Prix,1955-05-22,"",http://en.wikipedia.org/wiki/1955_Monaco_Grand_Prix +794,1955,3,19,Indianapolis 500,1955-05-30,"",http://en.wikipedia.org/wiki/1955_Indianapolis_500 +795,1955,4,13,Belgian Grand Prix,1955-06-05,"",http://en.wikipedia.org/wiki/1955_Belgian_Grand_Prix +796,1955,5,39,Dutch Grand Prix,1955-06-19,"",http://en.wikipedia.org/wiki/1955_Dutch_Grand_Prix +797,1955,6,58,British Grand Prix,1955-07-16,"",http://en.wikipedia.org/wiki/1955_British_Grand_Prix +798,1955,7,14,Italian Grand Prix,1955-09-11,"",http://en.wikipedia.org/wiki/1955_Italian_Grand_Prix +799,1954,1,25,Argentine Grand Prix,1954-01-17,"",http://en.wikipedia.org/wiki/1954_Argentine_Grand_Prix +800,1954,2,19,Indianapolis 500,1954-05-31,"",http://en.wikipedia.org/wiki/1954_Indianapolis_500 +801,1954,3,13,Belgian Grand Prix,1954-06-20,"",http://en.wikipedia.org/wiki/1954_Belgian_Grand_Prix +802,1954,4,55,French Grand Prix,1954-07-04,"",http://en.wikipedia.org/wiki/1954_French_Grand_Prix +803,1954,5,9,British Grand Prix,1954-07-17,"",http://en.wikipedia.org/wiki/1954_British_Grand_Prix +804,1954,6,20,German Grand Prix,1954-08-01,"",http://en.wikipedia.org/wiki/1954_German_Grand_Prix +805,1954,7,66,Swiss Grand Prix,1954-08-22,"",http://en.wikipedia.org/wiki/1954_Swiss_Grand_Prix +806,1954,8,14,Italian Grand Prix,1954-09-05,"",http://en.wikipedia.org/wiki/1954_Italian_Grand_Prix +807,1954,9,67,Spanish Grand Prix,1954-10-24,"",http://en.wikipedia.org/wiki/1954_Spanish_Grand_Prix +808,1953,1,25,Argentine Grand Prix,1953-01-18,"",http://en.wikipedia.org/wiki/1953_Argentine_Grand_Prix +809,1953,2,19,Indianapolis 500,1953-05-30,"",http://en.wikipedia.org/wiki/1953_Indianapolis_500 +810,1953,3,39,Dutch Grand Prix,1953-06-07,"",http://en.wikipedia.org/wiki/1953_Dutch_Grand_Prix +811,1953,4,13,Belgian Grand Prix,1953-06-21,"",http://en.wikipedia.org/wiki/1953_Belgian_Grand_Prix +812,1953,5,55,French Grand Prix,1953-07-05,"",http://en.wikipedia.org/wiki/1953_French_Grand_Prix +813,1953,6,9,British Grand Prix,1953-07-18,"",http://en.wikipedia.org/wiki/1953_British_Grand_Prix +814,1953,7,20,German Grand Prix,1953-08-02,"",http://en.wikipedia.org/wiki/1953_German_Grand_Prix +815,1953,8,66,Swiss Grand Prix,1953-08-23,"",http://en.wikipedia.org/wiki/1953_Swiss_Grand_Prix +816,1953,9,14,Italian Grand Prix,1953-09-13,"",http://en.wikipedia.org/wiki/1953_Italian_Grand_Prix +817,1952,1,66,Swiss Grand Prix,1952-05-18,"",http://en.wikipedia.org/wiki/1952_Swiss_Grand_Prix +818,1952,2,19,Indianapolis 500,1952-05-30,"",http://en.wikipedia.org/wiki/1952_Indianapolis_500 +819,1952,3,13,Belgian Grand Prix,1952-06-22,"",http://en.wikipedia.org/wiki/1952_Belgian_Grand_Prix +820,1952,4,53,French Grand Prix,1952-07-06,"",http://en.wikipedia.org/wiki/1952_French_Grand_Prix +821,1952,5,9,British Grand Prix,1952-07-19,"",http://en.wikipedia.org/wiki/1952_British_Grand_Prix +822,1952,6,20,German Grand Prix,1952-08-03,"",http://en.wikipedia.org/wiki/1952_German_Grand_Prix +823,1952,7,39,Dutch Grand Prix,1952-08-17,"",http://en.wikipedia.org/wiki/1952_Dutch_Grand_Prix +824,1952,8,14,Italian Grand Prix,1952-09-07,"",http://en.wikipedia.org/wiki/1952_Italian_Grand_Prix +825,1951,1,66,Swiss Grand Prix,1951-05-27,"",http://en.wikipedia.org/wiki/1951_Swiss_Grand_Prix +826,1951,2,19,Indianapolis 500,1951-05-30,"",http://en.wikipedia.org/wiki/1951_Indianapolis_500 +827,1951,3,13,Belgian Grand Prix,1951-06-17,"",http://en.wikipedia.org/wiki/1951_Belgian_Grand_Prix +828,1951,4,55,French Grand Prix,1951-07-01,"",http://en.wikipedia.org/wiki/1951_French_Grand_Prix +829,1951,5,9,British Grand Prix,1951-07-14,"",http://en.wikipedia.org/wiki/1951_British_Grand_Prix +830,1951,6,20,German Grand Prix,1951-07-29,"",http://en.wikipedia.org/wiki/1951_German_Grand_Prix +831,1951,7,14,Italian Grand Prix,1951-09-16,"",http://en.wikipedia.org/wiki/1951_Italian_Grand_Prix +832,1951,8,67,Spanish Grand Prix,1951-10-28,"",http://en.wikipedia.org/wiki/1951_Spanish_Grand_Prix +833,1950,1,9,British Grand Prix,1950-05-13,"",http://en.wikipedia.org/wiki/1950_British_Grand_Prix +834,1950,2,6,Monaco Grand Prix,1950-05-21,"",http://en.wikipedia.org/wiki/1950_Monaco_Grand_Prix +835,1950,3,19,Indianapolis 500,1950-05-30,"",http://en.wikipedia.org/wiki/1950_Indianapolis_500 +836,1950,4,66,Swiss Grand Prix,1950-06-04,"",http://en.wikipedia.org/wiki/1950_Swiss_Grand_Prix +837,1950,5,13,Belgian Grand Prix,1950-06-18,"",http://en.wikipedia.org/wiki/1950_Belgian_Grand_Prix +838,1950,6,55,French Grand Prix,1950-07-02,"",http://en.wikipedia.org/wiki/1950_French_Grand_Prix +839,1950,7,14,Italian Grand Prix,1950-09-03,"",http://en.wikipedia.org/wiki/1950_Italian_Grand_Prix +841,2011,1,1,Australian Grand Prix,2011-03-27,06:00:00,http://en.wikipedia.org/wiki/2011_Australian_Grand_Prix +842,2011,2,2,Malaysian Grand Prix,2011-04-10,08:00:00,http://en.wikipedia.org/wiki/2011_Malaysian_Grand_Prix +843,2011,3,17,Chinese Grand Prix,2011-04-17,07:00:00,http://en.wikipedia.org/wiki/2011_Chinese_Grand_Prix +844,2011,4,5,Turkish Grand Prix,2011-05-08,12:00:00,http://en.wikipedia.org/wiki/2011_Turkish_Grand_Prix +845,2011,5,4,Spanish Grand Prix,2011-05-22,12:00:00,http://en.wikipedia.org/wiki/2011_Spanish_Grand_Prix +846,2011,6,6,Monaco Grand Prix,2011-05-29,12:00:00,http://en.wikipedia.org/wiki/2011_Monaco_Grand_Prix +847,2011,7,7,Canadian Grand Prix,2011-06-12,17:00:00,http://en.wikipedia.org/wiki/2011_Canadian_Grand_Prix +848,2011,8,12,European Grand Prix,2011-06-26,12:00:00,http://en.wikipedia.org/wiki/2011_European_Grand_Prix +849,2011,9,9,British Grand Prix,2011-07-10,12:00:00,http://en.wikipedia.org/wiki/2011_British_Grand_Prix +850,2011,10,20,German Grand Prix,2011-07-24,12:00:00,http://en.wikipedia.org/wiki/2011_German_Grand_Prix +851,2011,11,11,Hungarian Grand Prix,2011-07-31,12:00:00,http://en.wikipedia.org/wiki/2011_Hungarian_Grand_Prix +852,2011,12,13,Belgian Grand Prix,2011-08-28,12:00:00,http://en.wikipedia.org/wiki/2011_Belgian_Grand_Prix +853,2011,13,14,Italian Grand Prix,2011-09-11,12:00:00,http://en.wikipedia.org/wiki/2011_Italian_Grand_Prix +854,2011,14,15,Singapore Grand Prix,2011-09-25,12:00:00,http://en.wikipedia.org/wiki/2011_Singapore_Grand_Prix +855,2011,15,22,Japanese Grand Prix,2011-10-09,06:00:00,http://en.wikipedia.org/wiki/2011_Japanese_Grand_Prix +856,2011,16,35,Korean Grand Prix,2011-10-16,06:00:00,http://en.wikipedia.org/wiki/2011_Korean_Grand_Prix +857,2011,17,68,Indian Grand Prix,2011-10-30,09:30:00,http://en.wikipedia.org/wiki/2011_Indian_Grand_Prix +858,2011,18,24,Abu Dhabi Grand Prix,2011-11-13,13:00:00,http://en.wikipedia.org/wiki/2011_Abu_Dhabi_Grand_Prix +859,2011,19,18,Brazilian Grand Prix,2011-11-27,16:00:00,http://en.wikipedia.org/wiki/2011_Brazilian_Grand_Prix +860,2012,1,1,Australian Grand Prix,2012-03-18,06:00:00,http://en.wikipedia.org/wiki/2012_Australian_Grand_Prix +861,2012,2,2,Malaysian Grand Prix,2012-03-25,08:00:00,http://en.wikipedia.org/wiki/2012_Malaysian_Grand_Prix +862,2012,3,17,Chinese Grand Prix,2012-04-15,07:00:00,http://en.wikipedia.org/wiki/2012_Chinese_Grand_Prix +863,2012,4,3,Bahrain Grand Prix,2012-04-22,12:00:00,http://en.wikipedia.org/wiki/2012_Bahrain_Grand_Prix +864,2012,5,4,Spanish Grand Prix,2012-05-13,12:00:00,http://en.wikipedia.org/wiki/2012_Spanish_Grand_Prix +865,2012,6,6,Monaco Grand Prix,2012-05-27,12:00:00,http://en.wikipedia.org/wiki/2012_Monaco_Grand_Prix +866,2012,7,7,Canadian Grand Prix,2012-06-10,18:00:00,http://en.wikipedia.org/wiki/2012_Canadian_Grand_Prix +867,2012,8,12,European Grand Prix,2012-06-24,12:00:00,http://en.wikipedia.org/wiki/2012_European_Grand_Prix +868,2012,9,9,British Grand Prix,2012-07-08,12:00:00,http://en.wikipedia.org/wiki/2012_British_Grand_Prix +869,2012,10,10,German Grand Prix,2012-07-22,12:00:00,http://en.wikipedia.org/wiki/2012_German_Grand_Prix +870,2012,11,11,Hungarian Grand Prix,2012-07-29,12:00:00,http://en.wikipedia.org/wiki/2012_Hungarian_Grand_Prix +871,2012,12,13,Belgian Grand Prix,2012-09-02,12:00:00,http://en.wikipedia.org/wiki/2012_Belgian_Grand_Prix +872,2012,13,14,Italian Grand Prix,2012-09-09,12:00:00,http://en.wikipedia.org/wiki/2012_Italian_Grand_Prix +873,2012,14,15,Singapore Grand Prix,2012-09-23,12:00:00,http://en.wikipedia.org/wiki/2012_Singapore_Grand_Prix +874,2012,15,22,Japanese Grand Prix,2012-10-07,06:00:00,http://en.wikipedia.org/wiki/2012_Japanese_Grand_Prix +875,2012,16,35,Korean Grand Prix,2012-10-14,06:00:00,http://en.wikipedia.org/wiki/2012_Korean_Grand_Prix +876,2012,17,68,Indian Grand Prix,2012-10-28,09:30:00,http://en.wikipedia.org/wiki/2012_Indian_Grand_Prix +877,2012,18,24,Abu Dhabi Grand Prix,2012-11-04,13:00:00,http://en.wikipedia.org/wiki/2012_Abu_Dhabi_Grand_Prix +878,2012,19,69,United States Grand Prix,2012-11-18,19:00:00,http://en.wikipedia.org/wiki/2012_United_States_Grand_Prix +879,2012,20,18,Brazilian Grand Prix,2012-11-25,16:00:00,http://en.wikipedia.org/wiki/2012_Brazilian_Grand_Prix +880,2013,1,1,Australian Grand Prix,2013-03-17,06:00:00,http://en.wikipedia.org/wiki/2013_Australian_Grand_Prix +881,2013,2,2,Malaysian Grand Prix,2013-03-24,08:00:00,http://en.wikipedia.org/wiki/2013_Malaysian_Grand_Prix +882,2013,3,17,Chinese Grand Prix,2013-04-14,07:00:00,http://en.wikipedia.org/wiki/2013_Chinese_Grand_Prix +883,2013,4,3,Bahrain Grand Prix,2013-04-21,12:00:00,http://en.wikipedia.org/wiki/2013_Bahrain_Grand_Prix +884,2013,5,4,Spanish Grand Prix,2013-05-12,12:00:00,http://en.wikipedia.org/wiki/2013_Spanish_Grand_Prix +885,2013,6,6,Monaco Grand Prix,2013-05-26,12:00:00,http://en.wikipedia.org/wiki/2013_Monaco_Grand_Prix +886,2013,7,7,Canadian Grand Prix,2013-06-09,18:00:00,http://en.wikipedia.org/wiki/2013_Canadian_Grand_Prix +887,2013,8,9,British Grand Prix,2013-06-30,12:00:00,http://en.wikipedia.org/wiki/2013_British_Grand_Prix +888,2013,9,20,German Grand Prix,2013-07-07,12:00:00,http://en.wikipedia.org/wiki/2013_German_Grand_Prix +890,2013,10,11,Hungarian Grand Prix,2013-07-28,12:00:00,http://en.wikipedia.org/wiki/2013_Hungarian_Grand_Prix +891,2013,11,13,Belgian Grand Prix,2013-08-25,12:00:00,http://en.wikipedia.org/wiki/2013_Belgian_Grand_Prix +892,2013,12,14,Italian Grand Prix,2013-09-08,12:00:00,http://en.wikipedia.org/wiki/2013_Italian_Grand_Prix +893,2013,13,15,Singapore Grand Prix,2013-09-22,12:00:00,http://en.wikipedia.org/wiki/2013_Singapore_Grand_Prix +894,2013,14,35,Korean Grand Prix,2013-10-06,06:00:00,http://en.wikipedia.org/wiki/2013_Korean_Grand_Prix +895,2013,15,22,Japanese Grand Prix,2013-10-13,06:00:00,http://en.wikipedia.org/wiki/2013_Japanese_Grand_Prix +896,2013,16,68,Indian Grand Prix,2013-10-27,09:30:00,http://en.wikipedia.org/wiki/2013_Indian_Grand_Prix +897,2013,17,24,Abu Dhabi Grand Prix,2013-11-03,13:00:00,http://en.wikipedia.org/wiki/2013_Abu_Dhabi_Grand_Prix +898,2013,18,69,United States Grand Prix,2013-11-17,19:00:00,http://en.wikipedia.org/wiki/2013_United_States_Grand_Prix +899,2013,19,18,Brazilian Grand Prix,2013-11-24,16:00:00,http://en.wikipedia.org/wiki/2013_Brazilian_Grand_Prix +900,2014,1,1,Australian Grand Prix,2014-03-16,06:00:00,https://en.wikipedia.org/wiki/2014_Australian_Grand_Prix +901,2014,2,2,Malaysian Grand Prix,2014-03-30,08:00:00,https://en.wikipedia.org/wiki/2014_Malaysian_Grand_Prix +902,2014,3,3,Bahrain Grand Prix,2014-04-06,15:00:00,http://en.wikipedia.org/wiki/2014_Bahrain_Grand_Prix +903,2014,4,17,Chinese Grand Prix,2014-04-20,07:00:00,http://en.wikipedia.org/wiki/2014_Chinese_Grand_Prix +904,2014,5,4,Spanish Grand Prix,2014-05-11,12:00:00,http://en.wikipedia.org/wiki/2014_Spanish_Grand_Prix +905,2014,6,6,Monaco Grand Prix,2014-05-25,12:00:00,http://en.wikipedia.org/wiki/2014_Monaco_Grand_Prix +906,2014,7,7,Canadian Grand Prix,2014-06-08,18:00:00,http://en.wikipedia.org/wiki/2014_Canadian_Grand_Prix +907,2014,8,70,Austrian Grand Prix,2014-06-22,12:00:00,http://en.wikipedia.org/wiki/2014_Austrian_Grand_Prix +908,2014,9,9,British Grand Prix,2014-07-06,12:00:00,http://en.wikipedia.org/wiki/2014_British_Grand_Prix +909,2014,10,10,German Grand Prix,2014-07-20,12:00:00,http://en.wikipedia.org/wiki/2014_German_Grand_Prixs +910,2014,11,11,Hungarian Grand Prix,2014-07-27,12:00:00,http://en.wikipedia.org/wiki/2014_Hungarian_Grand_Prix +911,2014,12,13,Belgian Grand Prix,2014-08-24,12:00:00,http://en.wikipedia.org/wiki/2014_Belgian_Grand_Prix +912,2014,13,14,Italian Grand Prix,2014-09-07,12:00:00,http://en.wikipedia.org/wiki/2014_Italian_Grand_Prix +913,2014,14,15,Singapore Grand Prix,2014-09-21,12:00:00,http://en.wikipedia.org/wiki/2014_Singapore_Grand_Prix +914,2014,15,22,Japanese Grand Prix,2014-10-05,06:00:00,http://en.wikipedia.org/wiki/2014_Japanese_Grand_Prix +915,2014,16,71,Russian Grand Prix,2014-10-12,11:00:00,http://en.wikipedia.org/wiki/2014_Russian_Grand_Prix +916,2014,17,69,United States Grand Prix,2014-11-02,20:00:00,http://en.wikipedia.org/wiki/2014_United_States_Grand_Prix +917,2014,18,18,Brazilian Grand Prix,2014-11-09,16:00:00,http://en.wikipedia.org/wiki/2014_Brazilian_Grand_Prix +918,2014,19,24,Abu Dhabi Grand Prix,2014-11-23,13:00:00,http://en.wikipedia.org/wiki/2014_Abu_Dhabi_Grand_Prix +931,2015,6,6,Monaco Grand Prix,2015-05-24,12:00:00,http://en.wikipedia.org/wiki/2015_Monaco_Grand_Prix +932,2015,7,7,Canadian Grand Prix,2015-06-07,18:00:00,http://en.wikipedia.org/wiki/2015_Canadian_Grand_Prix +929,2015,4,3,Bahrain Grand Prix,2015-04-19,15:00:00,http://en.wikipedia.org/wiki/2015_Bahrain_Grand_Prix +930,2015,5,4,Spanish Grand Prix,2015-05-10,12:00:00,http://en.wikipedia.org/wiki/2015_Spanish_Grand_Prix +928,2015,3,17,Chinese Grand Prix,2015-04-12,06:00:00,http://en.wikipedia.org/wiki/2015_Chinese_Grand_Prix +926,2015,1,1,Australian Grand Prix,2015-03-15,05:00:00,http://en.wikipedia.org/wiki/2015_Australian_Grand_Prix +927,2015,2,2,Malaysian Grand Prix,2015-03-29,07:00:00,http://en.wikipedia.org/wiki/2015_Malaysian_Grand_Prix +933,2015,8,70,Austrian Grand Prix,2015-06-21,12:00:00,http://en.wikipedia.org/wiki/2015_Austrian_Grand_Prix +934,2015,9,9,British Grand Prix,2015-07-05,12:00:00,http://en.wikipedia.org/wiki/2015_British_Grand_Prix +936,2015,10,11,Hungarian Grand Prix,2015-07-26,12:00:00,http://en.wikipedia.org/wiki/2015_Hungarian_Grand_Prix +937,2015,11,13,Belgian Grand Prix,2015-08-23,12:00:00,http://en.wikipedia.org/wiki/2015_Belgian_Grand_Prix +938,2015,12,14,Italian Grand Prix,2015-09-06,12:00:00,http://en.wikipedia.org/wiki/2015_Italian_Grand_Prix +939,2015,13,15,Singapore Grand Prix,2015-09-20,12:00:00,https://en.wikipedia.org/wiki/2015_Singapore_Grand_Prix +940,2015,14,22,Japanese Grand Prix,2015-09-27,05:00:00,https://en.wikipedia.org/wiki/2015_Japanese_Grand_Prix +941,2015,15,71,Russian Grand Prix,2015-10-11,11:00:00,https://en.wikipedia.org/wiki/2015_Russian_Grand_Prix +942,2015,16,69,United States Grand Prix,2015-10-25,19:00:00,https://en.wikipedia.org/wiki/2015_United_States_Grand_Prix +943,2015,17,32,Mexican Grand Prix,2015-11-01,19:00:00,https://en.wikipedia.org/wiki/2015_Mexican_Grand_Prix +944,2015,18,18,Brazilian Grand Prix,2015-11-15,16:00:00,https://en.wikipedia.org/wiki/2015_Brazilian_Grand_Prix +945,2015,19,24,Abu Dhabi Grand Prix,2015-11-29,13:00:00,https://en.wikipedia.org/wiki/2015_Abu_Dhabi_Grand_Prix +948,2016,1,1,Australian Grand Prix,2016-03-20,05:00:00,https://en.wikipedia.org/wiki/2016_Australian_Grand_Prix +949,2016,2,3,Bahrain Grand Prix,2016-04-03,15:00:00,https://en.wikipedia.org/wiki/2016_Bahrain_Grand_Prix +950,2016,3,17,Chinese Grand Prix,2016-04-17,06:00:00,https://en.wikipedia.org/wiki/2016_Chinese_Grand_Prix +951,2016,4,71,Russian Grand Prix,2016-05-01,12:00:00,https://en.wikipedia.org/wiki/2016_Russian_Grand_Prix +952,2016,5,4,Spanish Grand Prix,2016-05-15,12:00:00,https://en.wikipedia.org/wiki/2016_Spanish_Grand_Prix +953,2016,6,6,Monaco Grand Prix,2016-05-29,12:00:00,https://en.wikipedia.org/wiki/2016_Monaco_Grand_Prix +954,2016,7,7,Canadian Grand Prix,2016-06-12,18:00:00,https://en.wikipedia.org/wiki/2016_Canadian_Grand_Prix +955,2016,8,73,European Grand Prix,2016-06-19,13:00:00,https://en.wikipedia.org/wiki/2016_European_Grand_Prix +956,2016,9,70,Austrian Grand Prix,2016-07-03,12:00:00,https://en.wikipedia.org/wiki/2016_Austrian_Grand_Prix +957,2016,10,9,British Grand Prix,2016-07-10,12:00:00,https://en.wikipedia.org/wiki/2016_British_Grand_Prix +958,2016,11,11,Hungarian Grand Prix,2016-07-24,12:00:00,https://en.wikipedia.org/wiki/2016_Hungarian_Grand_Prix +959,2016,12,10,German Grand Prix,2016-07-31,12:00:00,https://en.wikipedia.org/wiki/2016_German_Grand_Prix +960,2016,13,13,Belgian Grand Prix,2016-08-28,12:00:00,https://en.wikipedia.org/wiki/2016_Belgian_Grand_Prix +961,2016,14,14,Italian Grand Prix,2016-09-04,12:00:00,https://en.wikipedia.org/wiki/2016_Italian_Grand_Prix +962,2016,15,15,Singapore Grand Prix,2016-09-18,12:00:00,https://en.wikipedia.org/wiki/2016_Singapore_Grand_Prix +963,2016,16,2,Malaysian Grand Prix,2016-10-02,07:00:00,https://en.wikipedia.org/wiki/2016_Malaysian_Grand_Prix +964,2016,17,22,Japanese Grand Prix,2016-10-09,05:00:00,https://en.wikipedia.org/wiki/2016_Japanese_Grand_Prix +965,2016,18,69,United States Grand Prix,2016-10-23,19:00:00,https://en.wikipedia.org/wiki/2016_United_States_Grand_Prix +966,2016,19,32,Mexican Grand Prix,2016-10-30,19:00:00,https://en.wikipedia.org/wiki/2016_Mexican_Grand_Prix +967,2016,20,18,Brazilian Grand Prix,2016-11-13,16:00:00,https://en.wikipedia.org/wiki/2016_Brazilian_Grand_Prix +968,2016,21,24,Abu Dhabi Grand Prix,2016-11-27,13:00:00,https://en.wikipedia.org/wiki/2016_Abu_Dhabi_Grand_Prix +969,2017,1,1,Australian Grand Prix,2017-03-26,05:00:00,https://en.wikipedia.org/wiki/2017_Australian_Grand_Prix +970,2017,2,17,Chinese Grand Prix,2017-04-09,06:00:00,https://en.wikipedia.org/wiki/2017_Chinese_Grand_Prix +971,2017,3,3,Bahrain Grand Prix,2017-04-16,15:00:00,https://en.wikipedia.org/wiki/2017_Bahrain_Grand_Prix +972,2017,4,71,Russian Grand Prix,2017-04-30,12:00:00,https://en.wikipedia.org/wiki/2017_Russian_Grand_Prix +973,2017,5,4,Spanish Grand Prix,2017-05-14,12:00:00,https://en.wikipedia.org/wiki/2017_Spanish_Grand_Prix +974,2017,6,6,Monaco Grand Prix,2017-05-28,12:00:00,https://en.wikipedia.org/wiki/2017_Monaco_Grand_Prix +975,2017,7,7,Canadian Grand Prix,2017-06-11,18:00:00,https://en.wikipedia.org/wiki/2017_Canadian_Grand_Prix +976,2017,8,73,Azerbaijan Grand Prix,2017-06-25,13:00:00,https://en.wikipedia.org/wiki/2017_Azerbaijan_Grand_Prix +977,2017,9,70,Austrian Grand Prix,2017-07-09,12:00:00,https://en.wikipedia.org/wiki/2017_Austrian_Grand_Prix +978,2017,10,9,British Grand Prix,2017-07-16,12:00:00,https://en.wikipedia.org/wiki/2017_British_Grand_Prix +979,2017,11,11,Hungarian Grand Prix,2017-07-30,12:00:00,https://en.wikipedia.org/wiki/2017_Hungarian_Grand_Prix +980,2017,12,13,Belgian Grand Prix,2017-08-27,12:00:00,https://en.wikipedia.org/wiki/2017_Belgian_Grand_Prix +981,2017,13,14,Italian Grand Prix,2017-09-03,12:00:00,https://en.wikipedia.org/wiki/2017_Italian_Grand_Prix +982,2017,14,15,Singapore Grand Prix,2017-09-17,12:00:00,https://en.wikipedia.org/wiki/2017_Singapore_Grand_Prix +983,2017,15,2,Malaysian Grand Prix,2017-10-01,07:00:00,https://en.wikipedia.org/wiki/2017_Malaysian_Grand_Prix +984,2017,16,22,Japanese Grand Prix,2017-10-08,05:00:00,https://en.wikipedia.org/wiki/2017_Japanese_Grand_Prix +985,2017,17,69,United States Grand Prix,2017-10-22,19:00:00,https://en.wikipedia.org/wiki/2017_United_States_Grand_Prix +986,2017,18,32,Mexican Grand Prix,2017-10-29,19:00:00,https://en.wikipedia.org/wiki/2017_Mexican_Grand_Prix +987,2017,19,18,Brazilian Grand Prix,2017-11-12,16:00:00,https://en.wikipedia.org/wiki/2017_Brazilian_Grand_Prix +988,2017,20,24,Abu Dhabi Grand Prix,2017-11-26,13:00:00,https://en.wikipedia.org/wiki/2017_Abu_Dhabi_Grand_Prix +989,2018,1,1,Australian Grand Prix,2018-03-25,05:00:00,http://en.wikipedia.org/wiki/2018_Australian_Grand_Prix +990,2018,2,3,Bahrain Grand Prix,2018-04-08,15:00:00,http://en.wikipedia.org/wiki/2018_Bahrain_Grand_Prix +991,2018,3,17,Chinese Grand Prix,2018-05-15,06:00:00,http://en.wikipedia.org/wiki/2018_Chinese_Grand_Prix +992,2018,4,73,Azerbaijan Grand Prix,2018-04-29,13:00:00,http://en.wikipedia.org/wiki/2018_Azerbaijan_Grand_Prix +993,2018,5,4,Spanish Grand Prix,2018-05-13,12:00:00,http://en.wikipedia.org/wiki/2018_Spanish_Grand_Prix +994,2018,6,6,Monaco Grand Prix,2018-05-27,12:00:00,http://en.wikipedia.org/wiki/2018_Monaco_Grand_Prix +995,2018,7,7,Canadian Grand Prix,2018-06-10,18:00:00,http://en.wikipedia.org/wiki/2018_Canadian_Grand_Prix +996,2018,8,34,French Grand Prix,2018-06-24,12:00:00,http://en.wikipedia.org/wiki/2018_French_Grand_Prix +997,2018,9,70,Austrian Grand Prix,2018-07-01,12:00:00,http://en.wikipedia.org/wiki/2018_Austrian_Grand_Prix +998,2018,10,9,British Grand Prix,2018-07-08,12:00:00,http://en.wikipedia.org/wiki/2018_British_Grand_Prix +999,2018,11,10,German Grand Prix,2018-07-22,12:00:00,http://en.wikipedia.org/wiki/2018_German_Grand_Prix +1000,2018,12,11,Hungarian Grand Prix,2018-07-29,12:00:00,http://en.wikipedia.org/wiki/2018_Hungarian_Grand_Prix +1001,2018,13,13,Belgian Grand Prix,2018-08-26,12:00:00,http://en.wikipedia.org/wiki/2018_Belgian_Grand_Prix +1002,2018,14,14,Italian Grand Prix,2018-09-02,12:00:00,http://en.wikipedia.org/wiki/2018_Italian_Grand_Prix +1003,2018,15,15,Singapore Grand Prix,2018-09-16,12:00:00,http://en.wikipedia.org/wiki/2018_Singapore_Grand_Prix +1004,2018,16,71,Russian Grand Prix,2018-09-30,12:00:00,http://en.wikipedia.org/wiki/2018_Russian_Grand_Prix +1005,2018,17,22,Japanese Grand Prix,2018-10-07,05:00:00,http://en.wikipedia.org/wiki/2018_Japanese_Grand_Prix +1006,2018,18,69,United States Grand Prix,2018-10-21,19:00:00,http://en.wikipedia.org/wiki/2018_United_States_Grand_Prix +1007,2018,19,32,Mexican Grand Prix,2018-10-28,19:00:00,http://en.wikipedia.org/wiki/2018_Mexican_Grand_Prix +1008,2018,20,18,Brazilian Grand Prix,2018-11-11,16:00:00,http://en.wikipedia.org/wiki/2018_Brazilian_Grand_Prix +1009,2018,21,24,Abu Dhabi Grand Prix,2018-11-25,13:00:00,http://en.wikipedia.org/wiki/2018_Abu_Dhabi_Grand_Prix diff --git a/database/formula_1/data_csv/results.csv b/database/formula_1/data_csv/results.csv new file mode 100644 index 0000000000000000000000000000000000000000..bbdbcfbb3d0c0897a43e024a7f28f82cc8afcb85 --- /dev/null +++ b/database/formula_1/data_csv/results.csv @@ -0,0 +1,23778 @@ +resultId,raceId,driverId,constructorId,number,grid,position,positionText,positionOrder,points,laps,time,milliseconds,fastestLap,rank,fastestLapTime,fastestLapSpeed,statusId +1,18,1,1,22,1,1,1,1,10,58,34:50.6,5690616,39,2,01:27.5,218.3,1 +2,18,2,2,3,5,2,2,2,8,58,5.478,5696094,41,3,01:27.7,217.586,1 +3,18,3,3,7,7,3,3,3,6,58,8.163,5698779,41,5,01:28.1,216.719,1 +4,18,4,4,5,11,4,4,4,5,58,17.181,5707797,58,7,01:28.6,215.464,1 +5,18,5,1,23,3,5,5,5,4,58,18.014,5708630,43,1,01:27.4,218.385,1 +6,18,6,3,8,13,6,6,6,3,57,,,50,14,01:29.6,212.974,11 +7,18,7,5,14,17,7,7,7,2,55,,,22,12,01:29.5,213.224,5 +8,18,8,6,1,15,8,8,8,1,53,,,20,4,01:27.9,217.18,5 +9,18,9,2,4,2,,R,9,0,47,,,15,9,01:28.8,215.1,4 +10,18,10,7,12,18,,R,10,0,43,,,23,13,01:29.6,213.166,3 +11,18,11,8,18,19,,R,11,0,32,,,24,15,01:30.9,210.038,7 +12,18,12,4,6,20,,R,12,0,30,,,20,16,01:31.4,208.907,8 +13,18,13,6,2,4,,R,13,0,29,,,23,6,01:28.2,216.51,5 +14,18,14,9,9,8,,R,14,0,25,,,21,11,01:29.5,213.3,4 +15,18,15,7,11,6,,R,15,0,19,,,18,10,01:29.3,213.758,10 +16,18,16,10,20,22,,R,16,0,8,,,8,17,01:32.0,207.461,9 +17,18,17,9,10,14,,R,17,0,0,,,,,,,4 +18,18,18,11,16,12,,R,18,0,0,,,,,,,4 +19,18,19,8,19,21,,R,19,0,0,,,,,,,4 +20,18,20,5,15,9,,R,20,0,0,,,,,,,4 +21,18,21,10,21,16,,R,21,0,0,,,,,,,4 +22,18,22,11,17,10,,D,22,0,58,,,44,8,01:28.7,215.141,2 +23,19,8,6,1,2,1,1,1,10,56,31:18.6,5478555,37,2,01:35.4,209.158,1 +24,19,9,2,4,4,2,2,2,8,56,19.57,5498125,39,6,01:35.9,208.033,1 +25,19,5,1,23,8,3,3,3,6,56,38.45,5517005,19,7,01:35.9,208.031,1 +26,19,15,7,11,3,4,4,4,5,56,45.832,5524387,53,8,01:36.1,207.715,1 +27,19,1,1,22,9,5,5,5,4,56,46.548,5525103,53,3,01:35.5,209.033,1 +28,19,2,2,3,5,6,6,6,3,56,49.833,5528388,55,1,01:35.4,209.244,1 +29,19,17,9,10,6,7,7,7,2,56,+1:08.130,5546685,53,12,01:36.7,206.366,1 +30,19,4,4,5,7,8,8,8,1,56,+1:10.041,5548596,40,10,01:36.3,207.24,1 +31,19,14,9,9,12,9,9,9,0,56,+1:16.220,5554775,55,9,01:36.2,207.417,1 +32,19,18,11,16,11,10,10,10,0,56,+1:26.214,5564769,56,4,01:35.7,208.481,1 +33,19,12,4,6,13,11,11,11,0,56,+1:32.202,5570757,52,15,01:37.0,205.812,1 +34,19,21,10,21,17,12,12,12,0,55,,,52,16,01:37.0,205.8,11 +35,19,22,11,17,14,13,13,13,0,55,,,55,11,01:36.7,206.372,11 +36,19,3,3,7,16,14,14,14,0,55,,,55,13,01:36.8,206.182,11 +37,19,19,8,19,21,15,15,15,0,55,,,55,18,01:38.2,203.265,11 +38,19,11,8,18,19,16,16,16,0,54,,,53,19,01:38.5,202.578,12 +39,19,6,3,8,22,17,17,17,0,54,,,19,17,01:37.7,204.222,12 +40,19,20,5,15,15,,R,18,0,39,,,37,14,01:36.9,205.995,5 +41,19,13,6,2,1,,R,19,0,30,,,15,5,01:35.9,208.048,20 +42,19,16,10,20,20,,R,20,0,5,,,3,20,01:40.3,198.891,9 +43,19,10,7,12,10,,R,21,0,1,,,,,,,4 +44,19,7,5,14,18,,R,22,0,0,,,,,,,20 +45,20,13,6,2,2,1,1,1,10,57,31:07.0,5466970,38,3,01:33.6,208.153,1 +46,20,8,6,1,4,2,2,2,8,57,3.339,5470309,35,4,01:33.7,207.911,1 +47,20,9,2,4,1,3,3,3,6,57,4.998,5471968,55,5,01:33.8,207.765,1 +48,20,2,2,3,6,4,4,4,5,57,8.409,5475379,48,2,01:33.6,208.231,1 +49,20,5,1,23,5,5,5,5,4,57,26.789,5493759,49,1,01:33.2,209.062,1 +50,20,15,7,11,7,6,6,6,3,57,41.314,5508284,45,7,01:34.2,206.819,1 +51,20,17,9,10,11,7,7,7,2,57,45.473,5512443,51,8,01:34.3,206.597,1 +52,20,3,3,7,8,8,8,8,1,57,55.889,5522859,57,6,01:34.1,207.109,1 +53,20,10,7,12,13,9,9,9,0,57,+1:09.500,5536470,56,9,01:34.8,205.503,1 +54,20,4,4,5,10,10,10,10,0,57,+1:17.181,5544151,35,13,01:35.2,204.668,1 +55,20,22,11,17,12,11,11,11,0,57,+1:17.862,5544832,40,10,01:34.9,205.399,1 +56,20,21,10,21,18,12,12,12,0,56,,,56,11,01:35.1,204.963,11 +57,20,1,1,22,3,13,13,13,0,56,,,25,19,01:35.5,203.969,11 +58,20,6,3,8,16,14,14,14,0,56,,,30,17,01:35.4,204.155,11 +59,20,7,5,14,15,15,15,15,0,56,,,33,15,01:35.3,204.369,11 +60,20,19,8,19,21,16,16,16,0,56,,,45,14,01:35.3,204.389,11 +61,20,11,8,18,22,17,17,17,0,56,,,56,20,01:35.9,203.18,11 +62,20,14,9,9,17,18,18,18,0,56,,,43,16,01:35.4,204.331,11 +63,20,16,10,20,20,19,19,19,0,56,,,55,18,01:35.4,204.136,12 +64,20,12,4,6,14,,R,20,0,40,,,31,12,01:35.1,204.808,6 +65,20,18,11,16,9,,R,21,0,19,,,11,21,01:36.1,202.686,4 +66,20,20,5,15,19,,R,22,0,0,,,,,,,5 +67,21,8,6,1,1,1,1,1,10,66,38:19.1,5899051,46,1,01:21.7,205.191,1 +68,21,13,6,2,3,2,2,2,8,66,3.228,5902279,45,2,01:21.8,204.863,1 +69,21,1,1,22,5,3,3,3,6,66,4.187,5903238,20,3,01:22.0,204.323,1 +70,21,9,2,4,4,4,4,4,5,66,5.694,5904745,20,4,01:22.1,204.102,1 +71,21,17,9,10,7,5,5,5,4,66,35.938,5934989,19,8,01:22.6,202.969,1 +72,21,18,11,16,13,6,6,6,3,66,53.01,5952061,66,5,01:22.4,203.489,1 +73,21,6,3,8,12,7,7,7,2,66,58.244,5957295,48,15,01:23.5,200.576,1 +74,21,15,7,11,8,8,8,8,1,66,59.435,5958486,45,10,01:22.8,202.494,1 +75,21,2,2,3,9,9,9,9,0,66,+1:03.073,5962124,21,7,01:22.5,203.08,1 +76,21,21,10,21,19,10,10,10,0,65,,,40,14,01:23.4,200.841,11 +77,21,10,7,12,14,11,11,11,0,65,,,57,12,01:23.0,201.886,11 +78,21,14,9,9,17,12,12,12,0,65,,,57,11,01:22.8,202.288,11 +79,21,11,8,18,22,13,13,13,0,65,,,34,17,01:24.6,198.045,11 +80,21,3,3,7,15,,R,14,0,41,,,20,13,01:23.3,201.13,5 +81,21,4,4,5,2,,R,15,0,34,,,15,9,01:22.7,202.677,5 +82,21,22,11,17,11,,R,16,0,34,,,21,16,01:23.9,199.837,4 +83,21,5,1,23,6,,R,17,0,21,,,19,6,01:22.5,203.243,3 +84,21,19,8,19,21,,R,18,0,8,,,6,20,01:26.9,192.922,21 +85,21,7,5,14,16,,R,19,0,7,,,6,19,01:26.0,194.862,4 +86,21,12,4,6,10,,R,20,0,6,,,6,18,01:25.4,196.128,4 +87,21,16,10,20,20,,R,21,0,0,,,,,,,4 +88,21,20,5,15,18,,R,22,0,0,,,,,,,4 +89,22,13,6,2,1,1,1,1,10,58,26:49.5,5209451,16,3,01:26.7,221.734,1 +90,22,1,1,22,3,2,2,2,8,58,3.779,5213230,31,2,01:26.5,222.085,1 +91,22,8,6,1,4,3,3,3,6,58,4.271,5213722,20,1,01:26.5,222.144,1 +92,22,9,2,4,5,4,4,4,5,58,21.945,5231396,17,4,01:26.8,221.442,1 +93,22,2,2,3,9,5,5,5,4,58,38.741,5248192,20,5,01:27.2,220.328,1 +94,22,4,4,5,7,6,6,6,3,58,53.724,5263175,57,6,01:27.3,220.174,1 +95,22,17,9,10,6,7,7,7,2,58,+1:04.229,5273680,14,7,01:27.6,219.294,1 +96,22,3,3,7,11,8,8,8,1,58,+1:11.406,5280857,55,9,01:27.8,218.882,1 +97,22,14,9,9,10,9,9,9,0,58,+1:15.270,5284721,41,12,01:28.0,218.457,1 +98,22,15,7,11,8,10,10,10,0,58,+1:16.344,5285795,52,11,01:27.9,218.556,1 +99,22,18,11,16,13,11,11,11,0,57,,,57,13,01:28.0,218.377,11 +100,22,5,1,23,2,12,12,12,0,57,,,55,8,01:27.6,219.269,11 +101,22,10,7,12,15,13,13,13,0,57,,,28,16,01:28.3,217.623,11 +102,22,22,11,17,12,14,14,14,0,57,,,56,14,01:28.0,218.33,11 +103,22,12,4,6,17,15,15,15,0,57,,,40,10,01:27.9,218.703,11 +104,22,16,10,20,19,16,16,16,0,57,,,35,18,01:28.8,216.454,11 +105,22,20,5,15,14,17,17,17,0,57,,,38,15,01:28.2,217.926,11 +106,22,7,5,14,18,,R,18,0,24,,,19,17,01:28.7,216.539,22 +107,22,6,3,8,16,,R,19,0,1,,,,,,,4 +108,22,21,10,21,20,,R,20,0,0,,,,,,,4 +109,23,1,1,22,3,1,1,1,10,76,00:42.7,7242742,71,6,01:18.5,153.152,1 +110,23,9,2,4,5,2,2,2,8,76,3.064,7245806,75,5,01:17.9,154.286,1 +111,23,13,6,2,1,3,3,3,6,76,4.811,7247553,76,4,01:17.9,154.379,1 +112,23,17,9,10,9,4,4,4,5,76,19.295,7262037,74,8,01:19.0,152.133,1 +113,23,20,5,15,19,5,5,5,4,76,24.657,7267399,74,7,01:18.8,152.614,1 +114,23,22,11,17,14,6,6,6,3,76,28.408,7271150,75,9,01:19.6,151.104,1 +115,23,6,3,8,13,7,7,7,2,76,30.18,7272922,75,13,01:19.9,150.469,1 +116,23,5,1,23,4,8,8,8,1,76,33.191,7275933,74,2,01:17.3,155.586,1 +117,23,8,6,1,2,9,9,9,0,76,33.792,7276534,74,1,01:16.7,156.789,1 +118,23,4,4,5,7,10,10,10,0,75,,,73,3,01:17.9,154.413,11 +119,23,18,11,16,11,11,11,11,0,75,,,74,10,01:19.6,151.089,11 +120,23,10,7,12,10,12,12,12,0,75,,,75,11,01:19.6,151.021,11 +121,23,15,7,11,8,13,13,13,0,75,,,75,12,01:19.8,150.62,11 +122,23,2,2,3,12,14,14,14,0,72,,,72,14,01:20.3,149.829,14 +123,23,16,10,20,18,,R,15,0,67,,,60,16,01:22.0,146.564,4 +124,23,3,3,7,6,,R,16,0,59,,,58,15,01:21.3,147.951,3 +125,23,12,4,6,17,,R,17,0,47,,,40,17,01:31.2,131.86,3 +126,23,21,10,21,20,,R,18,0,36,,,33,18,01:32.8,129.5,6 +127,23,14,9,9,15,,R,19,0,7,,,7,20,01:42.1,117.753,3 +128,23,7,5,14,16,,R,20,0,7,,,7,19,01:41.2,118.872,4 +129,24,9,2,4,2,1,1,1,10,70,36:24.2,5784227,47,4,01:17.5,202.473,1 +130,24,2,2,3,8,2,2,2,8,70,16.495,5800722,25,2,01:17.4,202.758,1 +131,24,14,9,9,13,3,3,3,6,70,23.352,5807579,36,7,01:18.1,201.057,1 +132,24,10,7,12,11,4,4,4,5,70,42.627,5826854,31,17,01:19.1,198.51,1 +133,24,13,6,2,6,5,5,5,4,70,43.934,5828161,11,6,01:18.0,201.261,1 +134,24,15,7,11,14,6,6,6,3,70,47.775,5832002,38,15,01:18.9,199.056,1 +135,24,22,11,17,9,7,7,7,2,70,53.597,5837824,35,10,01:18.3,200.503,1 +136,24,20,5,15,19,8,8,8,1,70,54.12,5838347,33,12,01:18.5,199.913,1 +137,24,5,1,23,7,9,9,9,0,70,54.433,5838660,62,11,01:18.5,200.091,1 +138,24,3,3,7,5,10,10,10,0,70,54.749,5838976,14,5,01:18.0,201.336,1 +139,24,18,11,16,20,11,11,11,0,70,+1:07.540,5851767,58,19,01:19.4,197.847,1 +140,24,17,9,10,10,12,12,12,0,70,+1:11.299,5855526,51,8,01:18.2,200.759,1 +141,24,7,5,14,18,13,13,13,0,69,,,34,13,01:18.6,199.689,11 +142,24,21,10,21,17,,R,14,0,51,,,41,16,01:19.1,198.563,20 +143,24,6,3,8,12,,R,15,0,46,,,30,14,01:18.8,199.273,3 +144,24,4,4,5,4,,R,16,0,44,,,16,9,01:18.2,200.697,20 +145,24,12,4,6,15,,R,17,0,43,,,16,18,01:19.2,198.129,23 +146,24,8,6,1,3,,R,18,0,19,,,14,1,01:17.4,202.871,4 +147,24,1,1,22,1,,R,19,0,19,,,4,3,01:17.5,202.559,4 +148,24,16,10,20,16,,R,20,0,13,,,7,20,01:20.7,194.624,6 +149,25,13,6,2,2,1,1,1,10,70,31:50.2,5510245,20,2,01:16.7,206.956,1 +150,25,8,6,1,1,2,2,2,8,70,17.984,5528229,16,1,01:16.6,207.224,1 +151,25,15,7,11,4,3,3,3,6,70,28.25,5538495,12,7,01:17.6,204.721,1 +152,25,5,1,23,10,4,4,4,5,70,28.929,5539174,46,3,01:17.1,205.87,1 +153,25,9,2,4,5,5,5,5,4,70,30.512,5540757,16,4,01:17.2,205.768,1 +154,25,17,9,10,6,6,6,6,3,70,40.304,5550549,22,6,01:17.5,204.879,1 +155,25,12,4,6,9,7,7,7,2,70,41.033,5551278,24,10,01:17.8,204.218,1 +156,25,4,4,5,3,8,8,8,1,70,43.372,5553617,39,8,01:17.6,204.525,1 +157,25,14,9,9,7,9,9,9,0,70,51.021,5561266,23,12,01:17.8,204.06,1 +158,25,1,1,22,13,10,10,10,0,70,54.538,5564783,40,5,01:17.5,205.022,1 +159,25,10,7,12,8,11,11,11,0,70,57.7,5567945,45,13,01:17.8,204.013,1 +160,25,20,5,15,12,12,12,12,0,70,58.065,5568310,36,11,01:17.8,204.212,1 +161,25,2,2,3,11,13,13,13,0,70,+1:02.079,5572324,46,9,01:17.7,204.328,1 +162,25,22,11,17,20,14,14,14,0,69,,,54,14,01:18.0,203.665,11 +163,25,6,3,8,15,15,15,15,0,69,,,60,15,01:18.1,203.443,11 +164,25,3,3,7,19,16,16,16,0,69,,,38,17,01:18.3,202.776,11 +165,25,7,5,14,14,17,17,17,0,69,,,28,16,01:18.2,203.022,11 +166,25,21,10,21,17,18,18,18,0,69,,,53,19,01:18.6,202.141,11 +167,25,16,10,20,18,19,19,19,0,69,,,41,18,01:18.5,202.385,11 +168,25,18,11,16,16,,R,20,0,16,,,15,20,01:20.9,196.345,4 +169,26,1,1,22,4,1,1,1,10,60,39:09.4,5949440,16,3,01:32.8,199.398,1 +170,26,2,2,3,5,2,2,2,8,60,+1:08.577,6018017,21,2,01:32.7,199.609,1 +171,26,22,11,17,16,3,3,3,6,60,+1:22.273,6031713,21,11,01:33.4,198.183,1 +172,26,8,6,1,3,4,4,4,5,59,,,18,1,01:32.1,200.842,11 +173,26,5,1,23,1,5,5,5,4,59,,,17,5,01:33.1,198.728,11 +174,26,4,4,5,6,6,6,6,3,59,,,17,6,01:33.1,198.722,11 +175,26,15,7,11,14,7,7,7,2,59,,,22,13,01:33.8,197.292,11 +176,26,6,3,8,15,8,8,8,1,59,,,21,14,01:34.3,196.31,11 +177,26,3,3,7,20,9,9,9,0,59,,,21,16,01:34.8,195.234,11 +178,26,17,9,10,2,10,10,10,0,59,,,17,4,01:33.0,199.109,11 +179,26,7,5,14,13,11,11,11,0,59,,,21,9,01:33.4,198.224,11 +180,26,10,7,12,12,12,12,12,0,59,,,19,15,01:34.6,195.619,11 +181,26,13,6,2,9,13,13,13,0,58,,,19,8,01:33.3,198.458,12 +182,26,9,2,4,10,,R,14,0,39,,,22,12,01:33.5,197.859,20 +183,26,18,11,16,17,,R,15,0,38,,,21,10,01:33.4,198.205,20 +184,26,12,4,6,7,,R,16,0,35,,,21,7,01:33.2,198.573,20 +185,26,21,10,21,19,,R,17,0,16,,,21,17,01:34.9,194.96,20 +186,26,16,10,20,18,,R,18,0,10,,,5,18,01:38.2,188.545,20 +187,26,20,5,15,8,,R,19,0,0,,,,,,,4 +188,26,14,9,9,11,,R,20,0,0,,,,,,,4 +189,27,1,1,22,1,1,1,1,10,67,31:20.9,5480874,17,2,01:16.0,216.552,1 +190,27,12,4,6,17,2,2,2,8,67,5.586,5486460,66,9,01:16.9,214.099,1 +191,27,13,6,2,2,3,3,3,6,67,9.339,5490213,19,5,01:16.5,215.241,1 +192,27,2,2,3,12,4,4,4,5,67,9.825,5490699,52,1,01:16.0,216.7,1 +193,27,5,1,23,3,5,5,5,4,67,12.411,5493285,63,4,01:16.5,215.261,1 +194,27,8,6,1,6,6,6,6,3,67,14.403,5495277,66,3,01:16.3,215.692,1 +195,27,9,2,4,7,7,7,7,2,67,22.682,5503556,17,6,01:16.6,214.937,1 +196,27,20,5,15,9,8,8,8,1,67,33.299,5514173,20,8,01:16.8,214.484,1 +197,27,15,7,11,4,9,9,9,0,67,37.158,5518032,17,12,01:17.0,213.785,1 +198,27,3,3,7,13,10,10,10,0,67,37.625,5518499,34,15,01:17.4,212.799,1 +199,27,4,4,5,5,11,11,11,0,67,38.6,5519474,17,13,01:17.1,213.53,1 +200,27,7,5,14,15,12,12,12,0,67,39.111,5519985,63,10,01:17.0,213.935,1 +201,27,14,9,9,10,13,13,13,0,67,54.971,5535845,18,11,01:17.0,213.866,1 +202,27,6,3,8,16,14,14,14,0,67,+1:00.003,5540877,23,17,01:17.7,211.947,1 +203,27,16,10,20,19,15,15,15,0,67,+1:09.488,5550362,66,18,01:17.9,211.408,1 +204,27,21,10,21,20,16,16,16,0,67,+1:24.093,5564967,67,20,01:18.2,210.546,1 +205,27,18,11,16,14,17,17,17,0,66,,,56,16,01:17.6,212.097,11 +206,27,22,11,17,18,,R,18,0,50,,,30,19,01:18.0,211.145,4 +207,27,17,9,10,8,,R,19,0,40,,,20,14,01:17.2,213.278,5 +208,27,10,7,12,11,,R,20,0,35,,,24,7,01:16.7,214.652,22 +209,28,5,1,23,2,1,1,1,10,70,37:27.1,5847067,19,7,01:21.8,192.917,1 +210,28,10,7,12,5,2,2,2,8,70,11.061,5858128,42,6,01:21.7,193.111,1 +211,28,8,6,1,6,3,3,3,6,70,16.856,5863923,61,1,01:21.2,194.243,1 +212,28,4,4,5,7,4,4,4,5,70,21.614,5868681,47,8,01:21.8,192.823,1 +213,28,1,1,22,1,5,5,5,4,70,23.048,5870115,15,3,01:21.5,193.533,1 +214,28,12,4,6,10,6,6,6,3,70,32.298,5879365,64,4,01:21.5,193.428,1 +215,28,15,7,11,9,7,7,7,2,70,36.449,5883516,65,5,01:21.6,193.189,1 +216,28,9,2,4,4,8,8,8,1,70,48.321,5895388,70,9,01:21.9,192.475,1 +217,28,17,9,10,8,9,9,9,0,70,58.834,5905901,67,10,01:22.1,192.043,1 +218,28,2,2,3,15,10,10,10,0,70,+1:07.709,5914776,67,11,01:22.2,191.908,1 +219,28,14,9,9,13,11,11,11,0,70,+1:10.407,5917474,67,16,01:22.7,190.634,1 +220,28,18,11,16,12,12,12,12,0,69,,,63,13,01:22.4,191.409,11 +221,28,6,3,8,16,13,13,13,0,69,,,67,18,01:23.3,189.319,11 +222,28,3,3,7,14,14,14,14,0,69,,,57,12,01:22.4,191.409,11 +223,28,21,10,21,18,15,15,15,0,69,,,68,15,01:22.6,190.844,11 +224,28,22,11,17,17,16,16,16,0,68,,,65,14,01:22.4,191.319,12 +225,28,13,6,2,3,17,17,17,0,67,,,16,2,01:21.4,193.861,5 +226,28,7,5,14,19,18,18,18,0,67,,,29,17,01:23.2,189.516,13 +227,28,16,10,20,20,,R,19,0,62,,,29,19,01:23.7,188.542,23 +228,28,20,5,15,11,,R,20,0,22,,,17,20,01:24.2,187.262,25 +229,29,13,6,2,1,1,1,1,10,57,35:32.3,5732339,36,1,01:38.7,197.637,1 +230,29,1,1,22,2,2,2,2,8,57,5.611,5737950,16,2,01:38.9,197.285,1 +231,29,9,2,4,3,3,3,3,6,57,37.353,5769692,38,4,01:39.3,196.399,1 +232,29,5,1,23,5,4,4,4,5,57,39.703,5772042,19,3,01:39.1,196.831,1 +233,29,15,7,11,7,5,5,5,4,57,50.684,5783023,37,12,01:39.7,195.755,1 +234,29,20,5,15,6,6,6,6,3,57,52.625,5784964,36,6,01:39.5,196.093,1 +235,29,10,7,12,13,7,7,7,2,57,+1:07.990,5800329,54,8,01:39.5,195.995,1 +236,29,3,3,7,9,8,8,8,1,57,+1:11.457,5803796,35,10,01:39.6,195.912,1 +237,29,2,2,3,8,9,9,9,0,57,+1:22.177,5814516,57,7,01:39.5,196.013,1 +238,29,7,5,14,10,10,10,10,0,57,+1:29.794,5822133,35,11,01:39.6,195.79,1 +239,29,12,4,6,15,11,11,11,0,57,+1:32.717,5825056,29,9,01:39.5,195.977,1 +240,29,17,9,10,14,12,12,12,0,56,,,27,14,01:40.3,194.57,11 +241,29,18,11,16,16,13,13,13,0,56,,,21,18,01:40.8,193.606,11 +242,29,21,10,21,18,14,14,14,0,56,,,54,15,01:40.4,194.397,11 +243,29,6,3,8,11,15,15,15,0,56,,,56,13,01:39.8,195.469,11 +244,29,22,11,17,19,16,16,16,0,56,,,56,16,01:40.6,193.933,11 +245,29,14,9,9,17,17,17,17,0,56,,,13,19,01:41.0,193.194,11 +246,29,8,6,1,4,,R,18,0,45,,,34,5,01:39.4,196.214,5 +247,29,16,10,20,20,,R,19,0,41,,,28,17,01:40.7,193.802,3 +248,29,4,4,5,12,,R,20,0,0,,,,,,,4 +249,30,13,6,2,2,1,1,1,10,44,22:59.4,4979394,26,3,01:48.2,232.987,1 +250,30,2,2,3,5,2,2,2,8,44,9.383,4988777,36,7,01:49.1,231.182,1 +251,30,1,1,22,1,3,3,3,6,44,10.539,4989933,20,2,01:48.1,233.175,1 +252,30,4,4,5,6,4,4,4,5,44,14.478,4993872,25,9,01:49.2,230.82,1 +253,30,20,5,15,10,5,5,5,4,44,14.576,4993970,16,8,01:49.1,231.142,1 +254,30,9,2,4,8,6,6,6,3,44,15.037,4994431,36,5,01:49.0,231.399,1 +255,30,7,5,14,9,7,7,7,2,44,16.735,4996129,31,6,01:49.0,231.32,1 +256,30,17,9,10,7,8,8,8,1,44,42.776,5022170,34,10,01:49.5,230.236,1 +257,30,10,7,12,13,9,9,9,0,44,+1:07.045,5046439,37,12,01:50.3,228.691,1 +258,30,5,1,23,3,10,10,10,0,43,,,35,4,01:48.2,232.985,6 +259,30,14,9,9,14,11,11,11,0,43,,,19,11,01:50.2,228.853,11 +260,30,3,3,7,15,12,12,12,0,43,,,32,15,01:50.7,227.862,11 +261,30,16,10,20,18,13,13,13,0,43,,,27,13,01:50.5,228.211,11 +262,30,6,3,8,19,14,14,14,0,43,,,35,17,01:51.0,227.218,11 +263,30,18,11,16,17,15,15,15,0,43,,,19,16,01:50.7,227.832,11 +264,30,15,7,11,11,16,16,16,0,43,,,32,14,01:50.5,228.095,11 +265,30,21,10,21,20,17,17,17,0,43,,,17,19,01:51.7,225.731,11 +266,30,8,6,1,4,18,18,18,0,42,,,24,1,01:47.9,233.618,20 +267,30,22,11,17,16,,R,19,0,19,,,10,20,01:52.1,224.983,6 +268,30,12,4,6,12,,R,20,0,13,,,12,18,01:51.1,226.915,20 +269,31,20,5,15,1,1,1,1,10,53,26:47.5,5207494,53,14,01:30.5,230.414,1 +270,31,5,1,23,2,2,2,2,8,53,12.512,5220006,53,13,01:30.3,230.95,1 +271,31,9,2,4,11,3,3,3,6,53,20.471,5227965,52,12,01:30.3,230.955,1 +272,31,4,4,5,8,4,4,4,5,53,23.903,5231397,51,9,01:30.0,231.82,1 +273,31,2,2,3,10,5,5,5,4,53,27.748,5235242,53,6,01:29.8,232.217,1 +274,31,13,6,2,6,6,6,6,3,53,28.816,5236310,52,4,01:29.7,232.505,1 +275,31,1,1,22,15,7,7,7,2,53,29.912,5237406,52,5,01:29.7,232.44,1 +276,31,17,9,10,3,8,8,8,1,53,32.048,5239542,52,3,01:29.7,232.544,1 +277,31,8,6,1,14,9,9,9,0,53,39.468,5246962,53,1,01:28.0,236.859,1 +278,31,12,4,6,17,10,10,10,0,53,54.445,5261939,53,16,01:30.9,229.38,1 +279,31,10,7,12,9,11,11,11,0,53,58.888,5266382,53,8,01:29.9,231.853,1 +280,31,6,3,8,18,12,12,12,0,53,+1:02.015,5269509,53,11,01:30.2,231.167,1 +281,31,15,7,11,7,13,13,13,0,53,+1:05.954,5273448,52,15,01:30.9,229.544,1 +282,31,3,3,7,5,14,14,14,0,53,+1:08.635,5276129,53,10,01:30.0,231.671,1 +283,31,18,11,16,19,15,15,15,0,53,+1:13.370,5280864,52,7,01:29.8,232.166,1 +284,31,14,9,9,13,16,16,16,0,52,,,49,17,01:32.5,225.557,11 +285,31,22,11,17,16,17,17,17,0,52,,,42,19,01:33.9,222.053,11 +286,31,7,5,14,4,18,18,18,0,52,,,52,2,01:29.3,233.646,11 +287,31,16,10,20,20,19,19,19,0,51,,,51,18,01:33.5,223.146,12 +288,31,21,10,21,12,,R,20,0,11,,,6,20,01:37.3,214.326,3 +289,32,4,4,5,15,1,1,1,10,61,57:16.3,7036304,55,3,01:45.8,172.464,1 +290,32,3,3,7,8,2,2,2,8,61,2.957,7039261,39,5,01:46.5,171.352,1 +291,32,1,1,22,2,3,3,3,6,61,5.917,7042221,14,4,01:46.1,171.969,1 +292,32,10,7,12,7,4,4,4,5,61,8.155,7044459,50,8,01:47.0,170.408,1 +293,32,20,5,15,6,5,5,5,4,61,10.268,7046572,13,9,01:47.3,170.047,1 +294,32,2,2,3,9,6,6,6,3,61,11.101,7047405,14,11,01:47.3,169.992,1 +295,32,14,9,9,14,7,7,7,2,61,16.387,7052691,41,13,01:47.6,169.587,1 +296,32,6,3,8,10,8,8,8,1,61,18.489,7054793,13,10,01:47.3,170.022,1 +297,32,18,11,16,12,9,9,9,0,61,19.885,7056189,61,15,01:48.1,168.7,1 +298,32,5,1,23,5,10,10,10,0,61,26.902,7063206,14,12,01:47.3,169.943,1 +299,32,9,2,4,4,11,11,11,0,61,27.975,7064279,14,6,01:46.9,170.639,1 +300,32,7,5,14,17,12,12,12,0,61,29.432,7065736,29,14,01:47.8,169.181,1 +301,32,13,6,2,1,13,13,13,0,61,35.17,7071474,13,2,01:45.8,172.482,1 +302,32,21,10,21,20,14,14,14,0,61,43.571,7079875,28,16,01:49.1,167.195,1 +303,32,8,6,1,3,15,15,15,0,57,,,14,1,01:45.6,172.74,3 +304,32,15,7,11,11,,R,16,0,50,,,32,7,01:47.0,170.523,9 +305,32,16,10,20,19,,R,17,0,49,,,38,18,01:49.3,166.936,3 +306,32,17,9,10,13,,R,18,0,29,,,13,17,01:49.2,167.069,7 +307,32,22,11,17,18,,R,19,0,14,,,13,19,01:50.3,165.348,26 +308,32,12,4,6,16,,R,20,0,13,,,13,20,01:50.4,165.154,3 +309,33,4,4,5,4,1,1,1,10,67,30:21.9,5421892,41,3,01:19.1,207.668,1 +310,33,9,2,4,6,2,2,2,8,67,5.283,5427175,16,7,01:19.3,207.168,1 +311,33,8,6,1,2,3,3,3,6,67,6.4,5428292,66,2,01:19.0,207.947,1 +312,33,12,4,6,12,4,4,4,5,67,20.57,5442462,54,4,01:19.2,207.411,1 +313,33,15,7,11,7,5,5,5,4,67,23.767,5445659,18,9,01:19.5,206.564,1 +314,33,20,5,15,9,6,6,6,3,67,39.207,5461099,21,12,01:19.6,206.322,1 +315,33,13,6,2,5,7,7,7,2,67,46.158,5468050,55,1,01:18.4,209.456,1 +316,33,17,9,10,13,8,8,8,1,67,50.811,5472703,30,13,01:19.8,205.798,1 +317,33,2,2,3,16,9,9,9,0,67,54.12,5476012,67,8,01:19.5,206.727,1 +318,33,7,5,14,10,10,10,10,0,67,59.085,5480977,49,6,01:19.3,207.246,1 +319,33,3,3,7,15,11,11,11,0,67,+1:02.096,5483988,66,10,01:19.5,206.545,1 +320,33,1,1,22,1,12,12,12,0,67,+1:18.900,5500792,65,11,01:19.6,206.47,1 +321,33,22,11,17,17,13,13,13,0,66,,,66,16,01:20.6,203.869,11 +322,33,18,11,16,18,14,14,14,0,66,,,66,17,01:20.8,203.178,11 +323,33,6,3,8,14,15,15,15,0,66,,,32,15,01:20.4,204.404,11 +324,33,21,10,21,20,,R,16,0,21,,,20,19,01:21.6,201.365,6 +325,33,5,1,23,3,,R,17,0,16,,,12,5,01:19.3,207.257,5 +326,33,16,10,20,19,,R,18,0,8,,,6,18,01:21.2,202.327,27 +327,33,10,7,12,8,,R,19,0,6,,,4,14,01:20.3,204.685,28 +328,33,14,9,9,11,,R,20,0,0,,,,,,,4 +329,34,1,1,22,1,1,1,1,10,56,31:57.4,5517403,13,1,01:36.3,203.722,1 +330,34,13,6,2,3,2,2,2,8,56,14.925,5532328,36,4,01:36.6,203.161,1 +331,34,8,6,1,2,3,3,3,6,56,16.445,5533848,14,2,01:36.5,203.389,1 +332,34,4,4,5,4,4,4,4,5,56,18.37,5535773,56,5,01:36.7,203.018,1 +333,34,2,2,3,9,5,5,5,4,56,28.923,5546326,56,3,01:36.5,203.357,1 +334,34,9,2,4,11,6,6,6,3,56,33.219,5550622,56,7,01:36.9,202.61,1 +335,34,10,7,12,12,7,7,7,2,56,41.722,5559125,56,6,01:36.7,202.876,1 +336,34,12,4,6,10,8,8,8,1,56,56.645,5574048,56,8,01:37.0,202.313,1 +337,34,20,5,15,6,9,9,9,0,56,+1:04.339,5581742,55,9,01:37.2,201.863,1 +338,34,14,9,9,15,10,10,10,0,56,+1:14.842,5592245,27,14,01:37.8,200.746,1 +339,34,22,11,17,13,11,11,11,0,56,+1:25.061,5602464,56,16,01:37.8,200.558,1 +340,34,6,3,8,17,12,12,12,0,56,+1:30.847,5608250,54,17,01:38.0,200.202,1 +341,34,7,5,14,8,13,13,13,0,56,+1:31.457,5608860,36,12,01:37.5,201.366,1 +342,34,17,9,10,16,14,14,14,0,56,+1:32.422,5609825,10,13,01:37.7,200.896,1 +343,34,3,3,7,14,15,15,15,0,55,,,38,10,01:37.2,201.793,11 +344,34,18,11,16,18,16,16,16,0,55,,,54,15,01:37.8,200.705,11 +345,34,21,10,21,20,17,17,17,0,55,,,54,18,01:38.4,199.483,11 +346,34,5,1,23,5,,R,18,0,49,,,32,11,01:37.3,201.677,9 +347,34,16,10,20,19,,R,19,0,13,,,13,19,01:39.7,196.86,5 +348,34,15,7,11,7,,R,20,0,2,,,2,20,02:39.6,122.945,4 +349,35,13,6,2,1,1,1,1,10,71,34:11.4,5651435,36,1,01:13.7,210.377,1 +350,35,4,4,5,6,2,2,2,8,71,13.298,5664733,39,8,01:14.2,208.98,1 +351,35,8,6,1,3,3,3,3,6,71,16.235,5667670,59,3,01:14.1,209.296,1 +352,35,20,5,15,7,4,4,4,5,71,38.011,5689446,25,7,01:14.2,209.022,1 +353,35,1,1,22,4,5,5,5,4,71,38.907,5690342,31,4,01:14.2,209.177,1 +354,35,10,7,12,10,6,6,6,3,71,44.368,5695803,32,2,01:14.1,209.465,1 +355,35,5,1,23,5,7,7,7,2,71,55.074,5706509,36,6,01:14.2,209.042,1 +356,35,15,7,11,2,8,8,8,1,71,+1:08.433,5719868,40,5,01:14.2,209.155,1 +357,35,17,9,10,12,9,9,9,0,71,+1:19.666,5731101,40,14,01:15.0,206.741,1 +358,35,2,2,3,8,10,10,10,0,70,,,41,10,01:14.7,207.796,11 +359,35,9,2,4,13,11,11,11,0,70,,,61,9,01:14.4,208.57,11 +360,35,3,3,7,18,12,12,12,0,70,,,35,12,01:14.9,207.014,11 +361,35,18,11,16,17,13,13,13,0,70,,,59,11,01:14.8,207.498,11 +362,35,7,5,14,9,14,14,14,0,70,,,57,13,01:15.0,206.967,11 +363,35,22,11,17,15,15,15,15,0,70,,,35,16,01:15.4,205.696,11 +364,35,16,10,20,20,16,16,16,0,69,,,60,17,01:15.8,204.721,12 +365,35,6,3,8,16,17,17,17,0,69,,,50,18,01:15.9,204.473,12 +366,35,21,10,21,19,18,18,18,0,69,,,36,15,01:15.2,206.249,12 +367,35,12,4,6,11,,R,19,0,0,,,,,,,3 +368,35,14,9,9,14,,R,20,0,0,,,,,,,4 +369,36,8,6,6,1,1,1,1,10,58,25:28.8,5128770,41,1,01:25.2,223.978,1 +370,36,4,1,1,2,2,2,2,8,58,7.242,5136012,20,2,01:26.3,221.178,1 +371,36,1,1,2,4,3,3,3,6,58,18.595,5147365,20,3,01:26.4,221.083,1 +372,36,2,2,9,3,4,4,4,5,58,38.763,5167533,37,6,01:26.7,220.137,1 +373,36,21,4,3,6,5,5,5,4,58,+1:06.469,5195239,18,7,01:26.9,219.707,1 +374,36,13,6,5,22,6,6,6,3,58,+1:06.805,5195575,28,8,01:27.0,219.323,1 +375,36,3,3,16,12,7,7,7,2,57,,,40,5,01:26.7,220.14,11 +376,36,23,7,11,9,8,8,8,1,57,,,42,12,01:27.8,217.444,11 +377,36,15,7,12,8,9,9,9,0,57,,,45,13,01:28.0,216.857,11 +378,36,5,4,4,13,10,10,10,0,57,,,44,10,01:27.6,217.951,11 +379,36,22,11,8,16,11,11,11,0,57,,,17,14,01:28.1,216.699,11 +380,36,11,8,22,10,12,12,12,0,57,,,20,18,01:28.5,215.746,11 +381,36,17,9,15,7,13,13,13,0,57,,,21,9,01:27.5,218.178,11 +382,36,24,5,18,19,14,14,14,0,57,,,44,15,01:28.3,216.247,11 +383,36,18,11,7,14,15,15,15,0,57,,,42,17,01:28.4,215.991,11 +384,36,19,8,23,11,16,16,16,0,56,,,41,19,01:28.5,215.742,12 +385,36,16,12,20,20,17,17,17,0,56,,,40,20,01:28.7,215.26,12 +386,36,25,3,17,15,,R,18,0,48,,,24,16,01:28.3,216.196,4 +387,36,14,9,14,18,,R,19,0,48,,,44,11,01:27.7,217.668,4 +388,36,9,2,10,5,,R,20,0,36,,,19,4,01:26.6,220.341,6 +389,36,26,5,19,17,,R,21,0,28,,,22,21,01:29.0,214.616,29 +390,36,27,12,21,21,,R,22,0,10,,,9,22,01:30.9,210.022,3 +391,37,4,1,1,2,1,1,1,10,56,32:14.9,5534930,42,2,01:36.9,206.014,1 +392,37,1,1,2,4,2,2,2,8,56,17.557,5552487,22,1,01:36.7,206.355,1 +393,37,8,6,6,3,3,3,3,6,56,18.339,5553269,40,4,01:37.2,205.237,1 +394,37,2,2,9,5,4,4,4,5,56,33.777,5568707,55,5,01:37.4,204.838,1 +395,37,13,6,5,1,5,5,5,4,56,36.705,5571635,42,3,01:37.2,205.298,1 +396,37,21,4,3,12,6,6,6,3,56,+1:05.638,5600568,44,9,01:37.9,203.872,1 +397,37,15,7,12,8,7,7,7,2,56,+1:10.132,5605062,40,10,01:38.0,203.587,1 +398,37,5,4,4,11,8,8,8,1,56,+1:12.015,5606945,41,7,01:37.8,204.015,1 +399,37,25,3,17,19,9,9,9,0,56,+1:29.924,5624854,19,8,01:37.9,203.903,1 +400,37,17,9,15,10,10,10,10,0,56,+1:33.556,5628486,55,14,01:38.5,202.504,1 +401,37,22,11,8,22,11,11,11,0,55,,,32,15,01:38.6,202.451,11 +402,37,18,11,7,15,12,12,12,0,55,,,54,16,01:38.7,202.262,11 +403,37,11,8,22,14,13,13,13,0,55,,,37,13,01:38.5,202.595,11 +404,37,26,5,19,17,14,14,14,0,55,,,54,18,01:39.1,201.364,11 +405,37,23,7,11,9,15,15,15,0,55,,,52,19,01:39.2,201.07,11 +406,37,19,8,23,18,16,16,16,0,55,,,32,20,01:39.6,200.417,11 +407,37,24,5,18,16,17,17,17,0,55,,,21,12,01:38.4,202.695,11 +408,37,9,2,10,7,18,18,18,0,55,,,53,17,01:38.9,201.82,11 +409,37,3,3,16,6,,R,19,0,42,,,18,6,01:37.7,204.237,9 +410,37,14,9,14,13,,R,20,0,36,,,28,11,01:38.1,203.416,23 +411,37,27,12,21,20,,R,21,0,7,,,5,21,01:41.5,196.608,5 +412,37,16,12,20,21,,R,22,0,0,,,,,,,4 +413,38,13,6,5,1,1,1,1,10,57,33:27.5,5607515,42,1,01:34.1,207.12,1 +414,38,1,1,2,2,2,2,2,8,57,2.36,5609875,18,2,01:34.3,206.674,1 +415,38,8,6,6,3,3,3,3,6,57,10.839,5618354,39,3,01:34.4,206.483,1 +416,38,2,2,9,5,4,4,4,5,57,13.831,5621346,38,5,01:34.5,206.236,1 +417,38,4,1,1,4,5,5,5,4,57,14.426,5621941,46,4,01:34.4,206.346,1 +418,38,9,2,10,6,6,6,6,3,57,45.529,5653044,46,6,01:34.8,205.477,1 +419,38,15,7,12,9,7,7,7,2,57,+1:21.371,5688886,40,7,01:35.2,204.756,1 +420,38,21,4,3,7,8,8,8,1,57,+1:21.701,5689216,51,8,01:35.2,204.655,1 +421,38,5,4,4,12,9,9,9,0,57,+1:29.411,5696926,27,10,01:35.5,204.065,1 +422,38,3,3,16,10,10,10,10,0,57,+1:29.916,5697431,51,11,01:35.6,203.893,1 +423,38,25,3,17,11,11,11,11,0,56,,,27,16,01:36.0,202.966,11 +424,38,23,7,11,14,12,12,12,0,56,,,37,15,01:35.8,203.278,11 +425,38,22,11,8,15,13,13,13,0,56,,,50,14,01:35.8,203.284,11 +426,38,27,12,21,22,14,14,14,0,55,,,40,20,01:37.2,200.477,12 +427,38,16,12,20,20,15,15,15,0,53,,,45,19,01:36.8,201.33,14 +428,38,19,8,23,13,16,16,16,0,51,,,27,17,01:36.1,202.715,5 +429,38,17,9,15,8,,R,17,0,41,,,37,12,01:35.7,203.575,6 +430,38,14,9,14,21,,R,18,0,36,,,34,9,01:35.4,204.26,30 +431,38,11,8,22,17,,R,19,0,34,,,23,18,01:36.4,202.193,5 +432,38,24,5,18,18,,R,20,0,26,,,23,13,01:35.7,203.537,9 +433,38,18,11,7,16,,R,21,0,0,,,,,,,4 +434,38,26,5,19,19,,R,22,0,0,,,,,,,4 +435,39,13,6,5,1,1,1,1,10,65,31:36.2,5496230,14,1,01:22.7,202.685,1 +436,39,1,1,2,4,2,2,2,8,65,6.79,5503020,20,2,01:22.9,202.205,1 +437,39,4,1,1,2,3,3,3,6,65,17.456,5513686,17,3,01:23.0,201.986,1 +438,39,9,2,10,5,4,4,4,5,65,31.615,5527845,20,5,01:23.1,201.59,1 +439,39,14,9,14,9,5,5,5,4,65,58.331,5554561,18,8,01:23.5,200.636,1 +440,39,3,3,16,11,6,6,6,3,65,59.538,5555768,60,10,01:23.7,200.231,1 +441,39,5,4,4,8,7,7,7,2,65,+1:02.128,5558358,32,4,01:23.0,201.952,1 +442,39,11,8,22,13,8,8,8,1,64,,,23,12,01:24.1,199.239,11 +443,39,21,4,3,10,9,9,9,0,64,,,57,9,01:23.6,200.55,11 +444,39,22,11,8,12,10,10,10,0,64,,,16,14,01:24.3,198.82,11 +445,39,19,8,23,15,11,11,11,0,64,,,59,15,01:24.3,198.811,11 +446,39,18,11,7,14,12,12,12,0,64,,,64,13,01:24.2,199.059,11 +447,39,16,12,20,20,13,13,13,0,63,,,57,16,01:25.2,196.71,12 +448,39,27,12,21,21,14,14,14,0,63,,,61,18,01:25.3,196.551,12 +449,39,2,2,9,7,,R,15,0,46,,,22,7,01:23.5,200.735,6 +450,39,23,7,11,17,,R,16,0,44,,,37,11,01:24.0,199.492,22 +451,39,24,5,18,16,,R,17,0,19,,,18,17,01:25.2,196.673,31 +452,39,26,5,19,22,,R,18,0,9,,,6,20,01:26.2,194.322,27 +453,39,8,6,6,3,,R,19,0,9,,,7,6,01:23.5,200.754,22 +454,39,15,7,12,6,,R,20,0,8,,,6,19,01:26.1,194.647,32 +455,39,17,9,15,19,,R,21,0,7,,,4,21,01:26.3,194.131,9 +456,39,25,3,17,18,,R,22,0,1,,,,,,,4 +457,40,4,1,1,1,1,1,1,10,78,40:29.3,6029329,44,1,01:15.3,159.715,1 +458,40,1,1,2,2,2,2,2,8,78,4.095,6033424,28,2,01:15.4,159.528,1 +459,40,13,6,5,3,3,3,3,6,78,+1:09.114,6098443,47,4,01:16.2,157.83,1 +460,40,21,4,3,4,4,4,4,5,77,,,54,5,01:16.3,157.683,11 +461,40,9,2,10,8,5,5,5,4,77,,,39,3,01:16.0,158.198,11 +462,40,2,2,9,7,6,6,6,3,77,,,30,12,01:17.0,156.072,11 +463,40,25,3,17,11,7,7,7,2,77,,,40,7,01:16.7,156.852,11 +464,40,8,6,6,16,8,8,8,1,77,,,62,6,01:16.6,156.987,11 +465,40,26,5,19,18,9,9,9,0,77,,,73,10,01:16.9,156.426,11 +466,40,22,11,8,9,10,10,10,0,77,,,69,13,01:17.1,155.993,11 +467,40,18,11,7,10,11,11,11,0,77,,,40,9,01:16.8,156.558,11 +468,40,3,3,16,5,12,12,12,0,77,,,70,11,01:17.0,156.174,11 +469,40,5,4,4,15,13,13,13,0,76,,,72,14,01:17.1,155.953,5 +470,40,14,9,14,13,14,14,14,0,76,,,75,8,01:16.8,156.591,12 +471,40,15,7,12,14,15,15,15,0,76,,,53,18,01:17.5,155.158,12 +472,40,23,7,11,20,16,16,16,0,76,,,47,17,01:17.2,155.688,12 +473,40,11,8,22,21,17,17,17,0,76,,,74,15,01:17.2,155.785,12 +474,40,19,8,23,17,18,18,18,0,76,,,63,16,01:17.2,155.704,12 +475,40,27,12,21,22,19,19,19,0,70,,,70,20,01:17.7,154.77,30 +476,40,16,12,20,19,,R,20,0,53,,,34,19,01:17.7,154.792,3 +477,40,17,9,15,6,,R,21,0,17,,,17,21,01:19.0,152.206,6 +478,40,24,5,18,12,,R,22,0,2,,,,,,,3 +479,41,1,1,2,1,1,1,1,10,70,44:11.3,6251292,37,2,01:16.5,205.239,1 +480,41,2,2,9,3,2,2,2,8,70,4.343,6255635,19,3,01:16.7,204.699,1 +481,41,25,3,17,19,3,3,3,6,70,5.325,6256617,67,11,01:17.9,201.413,1 +482,41,5,4,4,22,4,4,4,5,70,6.729,6258021,67,13,01:18.4,200.331,1 +483,41,8,6,6,4,5,5,5,4,70,13.007,6264299,21,5,01:16.9,204.259,1 +484,41,11,8,22,11,6,6,6,3,70,16.698,6267990,47,12,01:18.0,201.186,1 +485,41,4,1,1,2,7,7,7,2,70,21.936,6273228,46,1,01:16.4,205.58,1 +486,41,23,7,11,18,8,8,8,1,70,22.888,6274180,38,10,01:17.9,201.509,1 +487,41,17,9,15,6,9,9,9,0,70,22.96,6274252,47,9,01:17.6,202.267,1 +488,41,3,3,16,7,10,10,10,0,70,23.984,6275276,42,6,01:17.2,203.478,1 +489,41,19,8,23,17,11,11,11,0,70,24.318,6275610,36,15,01:18.8,199.284,1 +490,41,22,11,8,13,12,12,12,0,70,30.439,6281731,62,14,01:18.5,199.885,1 +491,41,15,7,12,10,,R,13,0,58,,,12,17,01:19.1,198.497,3 +492,41,24,5,18,12,,R,14,0,54,,,9,19,01:19.4,197.79,3 +493,41,27,12,21,21,,R,15,0,47,,,21,18,01:19.3,198.092,33 +494,41,14,9,14,14,,R,16,0,36,,,19,16,01:19.0,198.776,6 +495,41,9,2,10,8,,R,17,0,26,,,19,8,01:17.5,202.499,3 +496,41,16,12,20,20,,R,18,0,21,,,20,20,01:19.5,197.598,3 +497,41,26,5,19,16,,R,19,0,8,,,6,21,01:20.1,196.019,3 +498,41,18,11,7,15,,R,20,0,0,,,,,,,6 +499,41,13,6,5,5,,D,21,0,51,,,22,4,01:16.8,204.291,2 +500,41,21,4,3,9,,D,22,0,51,,,22,7,01:17.4,202.808,2 +501,42,1,1,2,1,1,1,1,10,73,31:10.0,5469965,20,2,01:13.2,206.101,1 +502,42,4,1,1,2,2,2,2,8,73,1.5,5471465,21,3,01:13.3,206.003,1 +503,42,13,6,5,3,3,3,3,6,73,12.8,5482765,50,4,01:13.4,205.658,1 +504,42,8,6,6,4,4,4,4,5,73,15.4,5485365,49,1,01:13.1,206.397,1 +505,42,5,4,4,6,5,5,5,4,73,41.4,5511365,67,7,01:14.0,203.94,1 +506,42,15,7,12,8,6,6,6,3,73,66.7,5536665,30,10,01:14.0,203.891,1 +507,42,17,9,15,9,7,7,7,2,73,67.3,5537265,57,8,01:14.0,203.924,1 +508,42,20,2,10,7,8,8,8,1,73,67.7,5537665,53,6,01:13.9,204.316,1 +509,42,21,4,3,10,9,9,9,0,72,,,67,9,01:14.0,203.91,11 +510,42,25,3,17,17,10,10,10,0,72,,,41,13,01:14.5,202.604,11 +511,42,19,8,23,16,11,11,11,0,72,,,55,12,01:14.1,203.753,11 +512,42,18,11,7,13,12,12,12,0,72,,,42,14,01:14.7,202.015,11 +513,42,26,5,19,20,13,13,13,0,71,,,66,16,01:15.1,200.969,12 +514,42,16,12,20,21,14,14,14,0,71,,,49,15,01:14.9,201.597,12 +515,42,27,12,21,22,15,15,15,0,70,,,65,18,01:15.9,198.824,13 +516,42,3,3,16,14,16,16,16,0,68,,,34,11,01:14.1,203.753,5 +517,42,24,5,18,19,17,17,17,0,68,,,64,17,01:15.4,200.079,34 +518,42,2,2,9,5,,R,18,0,56,,,20,5,01:13.4,205.562,7 +519,42,11,8,22,18,,R,19,0,13,,,8,19,01:16.7,196.807,20 +520,42,14,9,14,11,,R,20,0,0,,,,,,,4 +521,42,22,11,8,15,,R,21,0,0,,,,,,,4 +522,42,23,7,11,12,,R,22,0,0,,,,,,,4 +523,43,8,6,6,3,1,1,1,10,70,30:54.2,5454200,20,2,01:16.2,208.374,1 +524,43,13,6,5,1,2,2,2,8,70,2.414,5456614,42,1,01:16.1,208.67,1 +525,43,1,1,2,2,3,3,3,6,70,32.153,5486353,39,4,01:16.6,207.34,1 +526,43,9,2,10,4,4,4,4,5,70,41.727,5495927,44,10,01:17.2,205.819,1 +527,43,2,2,9,7,5,5,5,4,70,48.801,5503001,70,7,01:16.9,206.563,1 +528,43,21,4,3,5,6,6,6,3,70,51.94,5506140,70,5,01:16.7,207.027,1 +529,43,4,1,1,10,7,7,7,2,70,56.516,5510716,36,3,01:16.5,207.59,1 +530,43,18,11,7,12,8,8,8,1,70,58.885,5513085,70,6,01:16.8,206.846,1 +531,43,3,3,16,9,9,9,9,0,70,+1:08.505,5522705,69,9,01:17.0,206.199,1 +532,43,23,7,11,11,10,10,10,0,69,,,68,8,01:17.0,206.319,11 +533,43,22,11,8,13,11,11,11,0,69,,,68,12,01:17.2,205.641,11 +534,43,17,9,15,14,12,12,12,0,69,,,69,14,01:17.2,205.563,11 +535,43,14,9,14,16,13,13,13,0,69,,,68,15,01:17.4,205.038,11 +536,43,25,3,17,18,14,14,14,0,69,,,69,13,01:17.2,205.587,11 +537,43,5,4,4,6,15,15,15,0,69,,,69,11,01:17.2,205.678,11 +538,43,11,8,22,22,16,16,16,0,68,,,39,16,01:17.8,204.118,12 +539,43,16,12,20,21,17,17,17,0,68,,,27,18,01:18.1,203.347,12 +540,43,26,5,19,15,,R,18,0,55,,,51,17,01:17.9,203.757,6 +541,43,27,12,21,20,,R,19,0,28,,,27,19,01:19.0,201.122,35 +542,43,19,8,23,19,,R,20,0,1,,,,,,,4 +543,43,15,7,12,8,,R,21,0,1,,,,,,,4 +544,43,24,5,18,17,,R,22,0,0,,,,,,,4 +545,44,8,6,6,2,1,1,1,10,59,21:43.1,4903074,17,1,01:20.6,229.514,1 +546,44,4,1,1,3,2,2,2,8,59,2.459,4905533,35,3,01:21.1,228.159,1 +547,44,1,1,2,1,3,3,3,6,59,39.373,4942447,11,4,01:21.7,226.6,1 +548,44,9,2,10,5,4,4,4,5,59,53.319,4956393,14,6,01:22.1,225.413,1 +549,44,13,6,5,4,5,5,5,4,59,54.063,4957137,17,2,01:20.9,228.89,1 +550,44,2,2,9,9,6,6,6,3,59,56.336,4959410,17,5,01:22.0,225.727,1 +551,44,5,4,4,7,7,7,7,2,58,,,11,9,01:22.6,224.193,11 +552,44,21,4,3,8,8,8,8,1,58,,,13,7,01:22.1,225.328,11 +553,44,22,11,8,14,9,9,9,0,58,,,28,13,01:23.4,221.948,11 +554,44,18,11,7,18,10,10,10,0,58,,,29,16,01:23.6,221.433,11 +555,44,14,9,14,12,11,11,11,0,58,,,40,12,01:23.1,222.666,11 +556,44,3,3,16,17,12,12,12,0,58,,,49,11,01:22.9,223.262,11 +557,44,25,3,17,13,13,13,13,0,58,,,57,10,01:22.7,223.81,11 +558,44,11,8,22,21,14,14,14,0,57,,,42,14,01:23.4,221.879,12 +559,44,27,12,21,22,15,15,15,0,57,,,56,21,01:24.4,219.31,12 +560,44,24,5,18,16,16,16,16,0,53,,,46,17,01:23.6,221.308,6 +561,44,15,7,12,10,,R,17,0,43,,,17,18,01:23.7,221.097,31 +562,44,19,8,23,19,,R,18,0,35,,,26,20,01:24.1,219.951,26 +563,44,26,5,19,15,,R,19,0,29,,,19,15,01:23.6,221.462,3 +564,44,23,7,11,6,,R,20,0,22,,,12,8,01:22.5,224.307,36 +565,44,16,12,20,20,,R,21,0,16,,,16,22,01:25.0,217.698,5 +566,44,17,9,15,11,,R,22,0,8,,,6,19,01:23.8,220.941,9 +567,45,4,1,1,2,1,1,1,10,60,06:26.4,7586358,35,2,01:33.2,198.783,1 +568,45,13,6,5,3,2,2,2,8,60,8.155,7594513,34,1,01:32.9,199.592,1 +569,45,17,9,15,6,3,3,3,6,60,+1:05.674,7652032,29,8,01:34.4,196.22,1 +570,45,25,3,17,12,4,4,4,5,60,+1:05.937,7652295,33,5,01:34.2,196.665,1 +571,45,14,9,14,20,5,5,5,4,60,+1:13.656,7660014,48,6,01:34.3,196.496,1 +572,45,2,2,9,4,6,6,6,3,60,+1:20.298,7666656,49,7,01:34.4,196.417,1 +573,45,9,2,10,5,7,7,7,2,60,+1:22.415,7668773,49,9,01:34.5,196.216,1 +574,45,5,4,4,7,8,8,8,1,59,,,48,11,01:34.6,195.9,11 +575,45,1,1,2,10,9,9,9,0,59,,,29,3,01:33.4,198.421,11 +576,45,21,4,3,13,10,10,10,0,59,,,48,12,01:34.9,195.302,11 +577,45,22,11,8,14,11,11,11,0,59,,,37,14,01:35.6,193.792,11 +578,45,19,8,23,15,12,12,12,0,59,,,46,13,01:35.3,194.504,11 +579,45,15,7,12,8,13,13,13,0,59,,,29,10,01:34.5,196.122,11 +580,45,8,6,6,1,,R,14,0,34,,,32,4,01:33.9,197.359,9 +581,45,11,8,22,16,,R,15,0,19,,,18,16,01:37.4,190.273,31 +582,45,23,7,11,9,,R,16,0,18,,,18,15,01:36.2,192.658,4 +583,45,28,12,21,22,,R,17,0,13,,,13,17,01:42.8,180.309,9 +584,45,18,11,7,17,,R,18,0,2,,,2,18,02:20.0,132.338,20 +585,45,16,12,20,21,,R,19,0,2,,,2,19,02:25.8,127.112,20 +586,45,3,3,16,11,,R,20,0,2,,,2,20,02:50.9,108.41,20 +587,45,26,5,19,18,,R,21,0,2,,,2,21,03:01.9,101.884,20 +588,45,24,5,18,19,,R,22,0,2,,,2,22,03:22.3,91.61,20 +589,46,1,1,2,1,1,1,1,10,70,35:53.0,5752991,13,2,01:20.2,196.724,1 +590,46,8,6,6,3,2,2,2,8,70,0.715,5753706,70,1,01:20.0,197.029,1 +591,46,2,2,9,2,3,3,3,6,70,43.129,5796120,16,5,01:20.6,195.721,1 +592,46,4,1,1,6,4,4,4,5,70,44.858,5797849,49,3,01:20.3,196.349,1 +593,46,9,2,10,7,5,5,5,4,70,47.616,5800607,40,4,01:20.4,196.117,1 +594,46,23,7,11,5,6,6,6,3,70,50.669,5803660,69,9,01:21.0,194.804,1 +595,46,3,3,16,4,7,7,7,2,70,59.139,5812130,68,6,01:20.7,195.502,1 +596,46,5,4,4,11,8,8,8,1,70,+1:08.104,5821095,69,8,01:20.9,194.867,1 +597,46,17,9,15,9,9,9,9,0,70,+1:16.331,5829322,63,7,01:20.9,194.915,1 +598,46,15,7,12,8,10,10,10,0,69,,,48,12,01:21.3,194.104,11 +599,46,14,9,14,10,11,11,11,0,69,,,67,14,01:21.6,193.39,11 +600,46,21,4,3,13,12,12,12,0,69,,,66,15,01:21.7,193.054,11 +601,46,13,6,5,14,13,13,13,0,69,,,37,11,01:21.0,194.756,11 +602,46,25,3,17,12,14,14,14,0,69,,,49,13,01:21.3,194.078,11 +603,46,11,8,22,19,15,15,15,0,69,,,66,10,01:21.0,194.759,11 +604,46,20,5,19,20,16,16,16,0,69,,,65,16,01:21.9,192.536,11 +605,46,16,12,20,21,17,17,17,0,68,,,67,19,01:22.3,191.721,12 +606,46,22,11,8,18,18,18,18,0,68,,,34,17,01:22.0,192.327,12 +607,46,24,5,18,16,,R,19,0,42,,,35,20,01:22.4,191.379,10 +608,46,19,8,23,15,,R,20,0,41,,,39,18,01:22.2,191.948,3 +609,46,18,11,7,17,,R,21,0,35,,,25,21,01:22.9,190.234,37 +610,46,29,12,21,22,,R,22,0,4,,,4,22,01:26.7,181.824,3 +611,47,13,6,5,1,1,1,1,10,58,26:42.2,5202161,18,2,01:27.9,218.566,1 +612,47,8,6,6,3,2,2,2,8,58,2.275,5204436,57,1,01:27.3,220.136,1 +613,47,4,1,1,4,3,3,3,6,58,26.181,5228342,39,4,01:28.1,218.199,1 +614,47,2,2,9,6,4,4,4,5,58,39.674,5241835,39,5,01:28.3,217.583,1 +615,47,1,1,2,2,5,5,5,4,58,45.085,5247246,17,3,01:28.0,218.464,1 +616,47,5,4,4,7,6,6,6,3,58,46.169,5248330,20,7,01:28.6,216.886,1 +617,47,3,3,16,8,7,7,7,2,58,55.778,5257939,37,6,01:28.5,217.05,1 +618,47,9,2,10,5,8,8,8,1,58,56.707,5258868,11,11,01:28.9,216.118,1 +619,47,21,4,3,10,9,9,9,0,58,59.491,5261652,56,9,01:28.8,216.422,1 +620,47,14,9,14,13,10,10,10,0,58,+1:11.009,5273170,54,13,01:29.1,215.754,1 +621,47,25,3,17,14,11,11,11,0,58,+1:19.628,5281789,55,8,01:28.7,216.559,1 +622,47,23,7,11,16,12,12,12,0,57,,,55,12,01:28.9,216.103,11 +623,47,18,11,7,21,13,13,13,0,57,,,34,10,01:28.9,216.227,11 +624,47,19,8,23,11,14,14,14,0,57,,,38,17,01:29.7,214.334,11 +625,47,24,5,18,15,15,15,15,0,57,,,56,16,01:29.6,214.561,11 +626,47,15,7,12,9,16,16,16,0,57,,,39,14,01:29.5,214.811,11 +627,47,22,11,8,22,17,17,17,0,57,,,35,15,01:29.5,214.681,11 +628,47,11,8,22,17,18,18,18,0,57,,,56,18,01:29.9,213.719,11 +629,47,20,5,19,18,19,19,19,0,57,,,39,19,01:30.0,213.56,11 +630,47,29,12,21,20,20,20,20,0,56,,,21,22,01:31.0,211.287,12 +631,47,16,12,20,19,21,21,21,0,53,,,52,20,01:30.6,212.066,32 +632,47,17,9,15,12,,R,22,0,9,,,4,21,01:30.8,211.62,9 +633,48,4,1,1,1,1,1,1,10,53,18:37.8,4717806,15,1,01:22.9,251.653,1 +634,48,1,1,2,2,2,2,2,8,53,6.062,4723868,17,2,01:22.9,251.456,1 +635,48,8,6,6,5,3,3,3,6,53,27.325,4745131,21,3,01:23.4,250.147,1 +636,48,2,2,9,4,4,4,4,5,53,56.562,4774368,19,4,01:23.7,249.217,1 +637,48,9,2,10,6,5,5,5,4,53,+1:00.558,4778364,22,5,01:23.9,248.543,1 +638,48,3,3,16,8,6,6,6,3,53,+1:05.810,4783616,52,8,01:24.5,246.884,1 +639,48,5,4,4,7,7,7,7,2,53,+1:06.751,4784557,53,7,01:24.2,247.605,1 +640,48,18,11,7,10,8,8,8,1,53,+1:02.168,4779974,32,9,01:24.5,246.708,1 +641,48,17,9,15,11,9,9,9,0,53,+1:05.879,4783685,46,13,01:24.8,245.859,1 +642,48,22,11,8,12,10,10,10,0,53,+1:06.958,4784764,52,12,01:24.8,246.024,1 +643,48,15,7,12,9,11,11,11,0,53,+1:07.736,4785542,49,10,01:24.6,246.446,1 +644,48,21,4,3,15,12,12,12,0,52,,,32,14,01:24.8,245.787,11 +645,48,25,3,17,13,13,13,13,0,52,,,42,16,01:25.0,245.35,11 +646,48,19,8,23,14,14,14,14,0,52,,,46,17,01:25.1,245.016,11 +647,48,23,7,11,18,15,15,15,0,52,,,49,15,01:25.0,245.492,11 +648,48,11,8,22,17,16,16,16,0,52,,,49,11,01:24.7,246.309,11 +649,48,24,5,18,19,17,17,17,0,52,,,45,19,01:25.4,244.278,11 +650,48,20,5,19,16,18,18,18,0,52,,,47,18,01:25.3,244.45,11 +651,48,16,12,20,21,19,19,19,0,52,,,30,20,01:25.4,244.267,11 +652,48,29,12,21,22,20,20,20,0,52,,,34,21,01:25.5,243.978,11 +653,48,13,6,5,3,,R,21,0,10,,,8,6,01:24.0,248.357,22 +654,48,14,9,14,20,,R,22,0,1,,,,,,,3 +655,49,8,6,6,1,1,1,1,10,44,20:39.1,4839066,12,2,01:48.1,233.261,1 +656,49,13,6,5,2,2,2,2,8,44,4.695,4843761,34,1,01:48.0,233.388,1 +657,49,4,1,1,3,3,3,3,6,44,14.343,4853409,44,3,01:48.2,233.073,1 +658,49,1,1,2,4,4,4,4,5,44,23.615,4862681,41,4,01:48.2,233.002,1 +659,49,2,2,9,6,5,5,5,4,44,51.879,4890945,33,5,01:48.7,232.042,1 +660,49,3,3,16,5,6,6,6,3,44,+1:16.876,4915942,29,9,01:49.8,229.704,1 +661,49,17,9,15,7,7,7,7,2,44,+1:20.639,4919705,12,11,01:50.0,229.119,1 +662,49,5,4,4,9,8,8,8,1,44,+1:25.106,4924172,21,8,01:49.6,230.058,1 +663,49,9,2,10,14,9,9,9,0,44,+1:25.661,4924727,32,6,01:48.9,231.549,1 +664,49,23,7,11,10,10,10,10,0,44,+1:28.574,4927640,43,10,01:50.0,229.175,1 +665,49,15,7,12,8,11,11,11,0,44,+1:43.653,4942719,43,7,01:49.0,231.345,1 +666,49,24,5,18,13,12,12,12,0,43,,,40,13,01:50.7,227.71,11 +667,49,22,11,8,17,13,13,13,0,43,,,43,12,01:50.7,227.817,11 +668,49,16,12,20,19,14,14,14,0,43,,,29,15,01:50.9,227.357,11 +669,49,11,8,22,18,15,15,15,0,43,,,32,14,01:50.9,227.39,11 +670,49,19,8,23,20,16,16,16,0,43,,,43,19,01:51.4,226.359,11 +671,49,29,12,21,21,17,17,17,0,43,,,30,20,01:51.6,225.838,11 +672,49,18,11,7,12,,R,18,0,36,,,22,16,01:51.1,226.868,9 +673,49,25,3,17,15,,R,19,0,34,,,18,18,01:51.3,226.605,32 +674,49,14,9,14,11,,R,20,0,29,,,24,17,01:51.2,226.837,9 +675,49,20,5,19,16,,R,21,0,8,,,4,21,01:52.7,223.682,38 +676,49,21,4,3,22,,R,22,0,1,,,,,,,22 +677,50,1,1,2,1,1,1,1,10,67,00:34.6,7234579,27,1,01:28.2,186.259,1 +678,50,5,4,4,11,2,2,2,8,67,8.377,7242956,34,9,01:29.7,183.222,1 +679,50,8,6,6,3,3,3,3,6,67,9.478,7244057,29,8,01:29.6,183.295,1 +680,50,14,9,14,12,4,4,4,5,67,20.297,7254876,56,11,01:30.1,182.345,1 +681,50,21,4,3,10,5,5,5,4,67,38.864,7273443,33,12,01:30.4,181.738,1 +682,50,13,6,5,4,6,6,6,3,67,49.042,7283621,32,7,01:29.6,183.359,1 +683,50,9,2,10,9,7,7,7,2,67,49.285,7283864,32,4,01:29.0,184.527,1 +684,50,16,12,20,20,8,8,8,1,67,+1:00.129,7294708,54,18,01:31.9,178.763,1 +685,50,24,5,18,14,9,9,9,0,67,+1:20.622,7315201,35,13,01:30.7,181.205,1 +686,50,22,11,8,17,10,10,10,0,67,+1:28.342,7322921,57,15,01:31.1,180.395,1 +687,50,18,11,7,6,11,11,11,0,66,,,58,19,01:32.0,178.647,22 +688,50,29,12,21,22,12,12,12,0,66,,,33,20,01:32.1,178.3,11 +689,50,15,7,12,13,13,13,13,0,66,,,55,21,01:32.4,177.752,11 +690,50,2,2,9,5,14,14,14,0,65,,,28,6,01:29.1,184.396,39 +691,50,11,8,22,21,15,15,15,0,65,,,54,16,01:31.5,179.514,4 +692,50,23,7,11,15,,R,16,0,55,,,33,14,01:30.9,180.782,29 +693,50,19,8,23,19,,R,17,0,54,,,27,17,01:31.8,178.935,37 +694,50,3,3,16,16,,R,18,0,49,,,27,10,01:29.9,182.67,40 +695,50,20,5,19,8,,R,19,0,46,,,31,5,01:29.1,184.452,4 +696,50,17,9,15,7,,R,20,0,45,,,30,3,01:28.9,184.695,4 +697,50,4,1,1,2,,R,21,0,41,,,25,2,01:28.5,185.59,3 +698,50,25,3,17,18,,R,22,0,19,,,19,22,02:05.6,130.749,4 +699,51,8,6,6,2,1,1,1,10,56,37:58.4,5878395,52,3,01:38.3,199.66,1 +700,51,4,1,1,4,2,2,2,8,56,9.806,5888201,54,2,01:38.0,200.259,1 +701,51,13,6,5,3,3,3,3,6,56,12.891,5891286,56,1,01:37.5,201.362,1 +702,51,20,5,19,17,4,4,4,5,56,53.509,5931904,52,13,01:39.9,196.452,1 +703,51,18,11,7,10,5,5,5,4,56,+1:08.666,5947061,39,5,01:38.9,198.392,1 +704,51,24,5,18,11,6,6,6,3,56,+1:13.673,5952068,53,11,01:39.7,196.917,1 +705,51,2,2,9,8,7,7,7,2,56,+1:14.224,5952619,55,7,01:39.3,197.569,1 +706,51,14,9,14,5,8,8,8,1,56,+1:20.750,5959145,55,10,01:39.6,196.945,1 +707,51,5,4,4,13,9,9,9,0,56,+1:21.186,5959581,52,8,01:39.3,197.557,1 +708,51,17,9,15,7,10,10,10,0,56,+1:24.685,5963080,55,9,01:39.4,197.478,1 +709,51,21,4,3,18,11,11,11,0,56,+1:26.683,5965078,39,4,01:38.9,198.418,1 +710,51,25,3,17,19,12,12,12,0,55,,,54,12,01:39.7,196.741,11 +711,51,15,7,12,12,13,13,13,0,55,,,55,14,01:39.9,196.41,11 +712,51,11,8,22,20,14,14,14,0,55,,,54,15,01:40.1,195.989,11 +713,51,22,11,8,16,15,15,15,0,55,,,55,16,01:40.5,195.228,11 +714,51,3,3,16,15,16,16,16,0,54,,,54,6,01:39.2,197.752,12 +715,51,29,12,21,22,17,17,17,0,53,,,52,17,01:40.8,194.748,13 +716,51,9,2,10,9,,R,18,0,33,,,32,18,01:40.9,194.435,9 +717,51,1,1,2,1,,R,19,0,30,,,22,19,01:43.1,190.278,20 +718,51,23,7,11,6,,R,20,0,25,,,25,20,01:44.1,188.576,20 +719,51,16,12,20,21,,R,21,0,24,,,22,21,01:47.6,182.37,3 +720,51,19,8,23,14,,R,22,0,11,,,9,22,01:51.8,175.579,23 +721,52,8,6,6,3,1,1,1,10,71,28:15.3,5295270,66,1,01:12.4,214.126,1 +722,52,13,6,5,1,2,2,2,8,71,1.493,5296763,71,3,01:12.6,213.716,1 +723,52,4,1,1,4,3,3,3,6,71,57.019,5352289,59,6,01:13.2,212.062,1 +724,52,3,3,16,10,4,4,4,5,71,+1:02.848,5358118,56,7,01:13.2,212.036,1 +725,52,9,2,10,7,5,5,5,4,71,+1:10.957,5366227,61,4,01:12.7,213.416,1 +726,52,2,2,9,6,6,6,6,3,71,+1:11.317,5366587,53,10,01:13.5,211.19,1 +727,52,1,1,2,2,7,7,7,2,70,,,58,2,01:12.5,213.946,11 +728,52,15,7,12,8,8,8,8,1,70,,,68,8,01:13.4,211.452,11 +729,52,14,9,14,9,9,9,9,0,70,,,22,13,01:14.2,209.076,11 +730,52,6,3,17,19,10,10,10,0,70,,,69,5,01:13.1,212.161,11 +731,52,23,7,11,15,11,11,11,0,70,,,65,9,01:13.4,211.432,11 +732,52,11,8,22,18,12,12,12,0,69,,,39,19,01:14.9,207.069,12 +733,52,24,5,18,14,13,13,13,0,69,,,56,11,01:13.6,210.643,12 +734,52,19,8,23,20,14,14,14,0,68,,,64,14,01:14.3,208.699,13 +735,52,16,12,20,21,,R,15,0,43,,,13,20,01:15.2,206.276,23 +736,52,22,11,8,11,,R,16,0,40,,,32,17,01:14.7,207.545,5 +737,52,5,4,4,17,,R,17,0,35,,,31,18,01:14.9,207.133,3 +738,52,20,5,19,13,,R,18,0,34,,,18,16,01:14.4,208.435,9 +739,52,18,11,7,16,,R,19,0,20,,,20,12,01:14.0,209.516,5 +740,52,17,9,15,5,,R,20,0,14,,,13,15,01:14.4,208.505,6 +741,52,29,12,21,22,,R,21,0,2,,,2,21,01:50.4,140.505,4 +742,52,21,4,3,12,,R,22,0,2,,,2,22,02:02.7,126.446,4 +743,53,4,4,1,4,1,1,1,10,57,29:46.2,5386205,21,3,01:32.5,210.551,1 +744,53,30,6,5,1,2,2,2,8,57,1.246,5387451,38,2,01:32.5,210.576,1 +745,53,8,1,3,22,3,3,3,6,57,19.36,5405565,29,8,01:32.9,209.803,1 +746,53,18,11,12,3,4,4,4,5,57,19.992,5406197,39,5,01:32.7,210.109,1 +747,53,31,1,4,5,5,5,5,4,57,37.048,5423253,21,7,01:32.8,210.013,1 +748,53,17,3,9,7,6,6,6,3,57,41.932,5428137,25,4,01:32.7,210.265,1 +749,53,3,3,10,12,7,7,7,2,57,+1:03.043,5449248,42,1,01:32.4,210.838,1 +750,53,32,9,15,8,8,8,8,1,57,+1:06.771,5452976,40,10,01:33.2,209.02,1 +751,53,13,6,6,2,9,9,9,0,57,+1:09.907,5456112,28,6,01:32.7,210.086,1 +752,53,14,9,14,13,10,10,10,0,57,+1:15.541,5461746,26,11,01:33.4,208.653,1 +753,53,24,5,20,15,11,11,11,0,57,+1:25.997,5472202,26,12,01:33.5,208.421,1 +754,53,2,2,16,10,12,12,12,0,56,,,26,14,01:33.8,207.772,11 +755,53,26,5,21,16,13,13,13,0,56,,,45,9,01:33.1,209.253,11 +756,53,23,7,7,17,14,14,14,0,56,,,25,16,01:34.1,207.021,11 +757,53,22,11,11,6,15,15,15,0,56,,,14,15,01:33.8,207.621,11 +758,53,15,7,8,14,16,16,16,0,56,,,24,18,01:34.9,205.406,11 +759,53,33,13,18,19,17,17,17,0,55,,,41,19,01:35.9,203.076,12 +760,53,11,8,22,20,18,18,18,0,53,,,17,20,01:37.1,200.642,14 +761,53,34,8,23,21,,R,19,0,35,,,11,21,01:38.3,198.197,26 +762,53,35,2,17,11,,R,20,0,29,,,20,13,01:33.7,207.945,5 +763,53,21,4,2,9,,R,21,0,21,,,15,17,01:34.3,206.564,9 +764,53,27,13,19,18,,R,22,0,0,,,,,,,30 +765,54,21,4,2,1,1,1,1,10,56,30:40.5,5440529,16,2,01:35.3,209.402,1 +766,54,4,4,1,7,2,2,2,8,56,4.585,5445114,45,1,01:34.8,210.487,1 +767,54,18,11,12,2,3,3,3,6,56,9.631,5450160,35,4,01:35.6,208.723,1 +768,54,31,1,4,5,4,4,4,5,56,39.351,5479880,39,3,01:35.6,208.806,1 +769,54,13,6,6,21,5,5,5,4,56,43.254,5483783,51,8,01:36.0,207.962,1 +770,54,30,6,5,14,6,6,6,3,56,43.854,5484383,44,5,01:35.6,208.629,1 +771,54,35,2,17,10,7,7,7,2,56,+1:20.461,5520990,43,9,01:36.0,207.858,1 +772,54,23,7,7,22,8,8,8,1,56,+1:21.288,5521817,34,6,01:35.7,208.544,1 +773,54,15,7,8,9,9,9,9,0,55,,,52,11,01:36.4,207.042,11 +774,54,22,11,11,20,10,10,10,0,55,,,54,10,01:36.2,207.456,11 +775,54,24,5,20,13,11,11,11,0,54,,,40,16,01:37.4,204.902,12 +776,54,27,13,19,15,12,12,12,0,54,,,34,18,01:38.2,203.209,12 +777,54,33,13,18,16,13,13,13,0,54,,,39,19,01:39.5,200.53,12 +778,54,11,8,22,17,14,14,14,0,53,,,14,20,01:40.2,199.151,13 +779,54,2,2,16,11,,R,15,0,48,,,41,7,01:35.8,208.403,5 +780,54,26,5,21,12,,R,16,0,41,,,25,14,01:37.3,205.057,8 +781,54,34,8,23,18,,R,17,0,33,,,18,21,01:42.8,194.05,26 +782,54,32,9,15,8,,R,18,0,26,,,14,13,01:36.9,206.002,9 +783,54,17,3,9,4,,R,19,0,15,,,12,12,01:36.8,206.206,9 +784,54,14,9,14,19,,R,20,0,10,,,4,17,01:38.1,203.458,9 +785,54,3,3,10,3,,R,21,0,6,,,6,15,01:37.4,204.946,5 +786,54,8,1,3,6,,R,22,0,0,,,,,,,3 +787,55,4,4,1,3,1,1,1,10,57,34:27.9,5667870,49,2,01:26.2,221.499,1 +788,55,8,1,3,4,2,2,2,8,57,1.8,5669670,57,1,01:26.0,221.869,1 +789,55,23,7,7,6,3,3,3,6,57,24.8,5692670,45,10,01:27.8,217.41,1 +790,55,2,2,16,8,4,4,4,5,57,31,5698870,49,7,01:27.7,217.683,1 +791,55,21,4,2,2,5,5,5,4,57,38.1,5705970,53,5,01:27.6,218.028,1 +792,55,35,2,17,19,6,6,6,3,57,49.5,5717370,56,13,01:28.3,216.152,1 +793,55,22,11,11,16,7,7,7,2,57,51.9,5719770,32,6,01:27.7,217.707,1 +794,55,14,9,14,11,8,8,8,1,57,53.9,5721770,32,12,01:28.3,216.326,1 +795,55,26,5,21,18,9,9,9,0,57,78.8,5746670,26,14,01:28.4,216.039,1 +796,55,18,11,12,1,10,10,10,0,56,,,17,8,01:27.8,217.437,11 +797,55,27,13,19,17,11,11,11,0,56,,,53,15,01:29.2,213.931,11 +798,55,11,8,22,21,12,12,12,0,55,,,54,17,01:30.6,210.775,12 +799,55,34,8,23,22,13,13,13,0,54,,,49,18,01:33.7,203.663,13 +800,55,31,1,4,5,,R,14,0,46,,,45,4,01:27.5,218.27,10 +801,55,33,13,18,20,,R,15,0,39,,,31,16,01:29.7,212.86,26 +802,55,24,5,20,12,,R,16,0,37,,,25,11,01:28.0,216.97,3 +803,55,30,6,5,10,,R,17,0,32,,,27,3,01:27.2,218.981,3 +804,55,17,3,9,7,,R,18,0,22,,,19,9,01:27.8,217.435,7 +805,55,32,9,15,13,,R,19,0,4,,,4,19,01:41.4,188.363,3 +806,55,15,7,8,9,,R,20,0,0,,,,,,,3 +807,55,3,3,10,14,,R,21,0,0,,,,,,,3 +808,55,13,6,6,15,,R,22,0,0,,,,,,,3 +809,56,30,6,5,1,1,1,1,10,62,31:06.5,5466486,19,2,01:24.6,210.961,1 +810,56,4,4,1,5,2,2,2,8,62,2.096,5468582,23,1,01:24.6,211.098,1 +811,56,31,1,4,7,3,3,3,6,62,15.868,5482354,22,4,01:25.1,209.791,1 +812,56,13,6,6,4,4,4,4,5,62,17.096,5483582,12,10,01:25.5,208.731,1 +813,56,8,1,3,8,5,5,5,4,62,17.524,5484010,49,3,01:25.0,209.961,1 +814,56,17,3,9,10,6,6,6,3,62,37.739,5504225,39,9,01:25.5,208.829,1 +815,56,18,11,12,2,7,7,7,2,62,39.635,5506121,29,6,01:25.3,209.174,1 +816,56,21,4,2,11,8,8,8,1,62,40.2,5506686,43,7,01:25.4,209.159,1 +817,56,23,7,7,6,9,9,9,0,62,45.511,5511997,45,5,01:25.3,209.25,1 +818,56,22,11,11,3,10,10,10,0,62,+1:17.851,5544337,12,13,01:26.1,207.275,1 +819,56,3,3,10,13,11,11,11,0,62,+1:19.675,5546161,30,15,01:26.4,206.581,1 +820,56,35,2,17,12,12,12,12,0,62,+1:22.370,5548856,53,8,01:25.4,208.951,1 +821,56,2,2,16,15,13,13,13,0,61,,,53,12,01:26.0,207.595,11 +822,56,24,5,20,16,14,14,14,0,61,,,43,11,01:25.7,208.363,11 +823,56,26,5,21,18,15,15,15,0,61,,,57,14,01:26.2,206.989,11 +824,56,33,13,18,19,16,16,16,0,60,,,53,18,01:27.2,204.823,12 +825,56,14,9,14,14,,R,17,0,47,,,41,17,01:26.9,205.542,30 +826,56,11,8,22,21,,R,18,0,44,,,40,20,01:29.1,200.363,20 +827,56,32,9,15,17,,R,19,0,40,,,30,16,01:26.8,205.77,9 +828,56,34,8,23,22,,R,20,0,23,,,15,21,01:31.0,196.111,22 +829,56,15,7,8,9,,R,21,0,5,,,4,19,01:28.0,202.778,38 +830,56,27,13,19,20,,R,22,0,0,,,,,,,3 +831,57,30,6,5,2,1,1,1,10,60,35:58.8,5758765,39,1,01:32.1,201.226,1 +832,57,4,4,1,1,2,2,2,8,60,3.751,5762516,37,3,01:32.5,200.285,1 +833,57,13,6,6,3,3,3,3,6,60,4.447,5763212,19,5,01:33.1,199.065,1 +834,57,8,1,3,5,4,4,4,5,60,4.879,5763644,43,2,01:32.5,200.415,1 +835,57,22,11,11,4,5,5,5,4,60,+1:12.586,5831351,59,9,01:34.0,197.258,1 +836,57,21,4,2,11,6,6,6,3,60,+1:14.116,5832881,46,4,01:33.0,199.354,1 +837,57,3,3,10,22,7,7,7,2,60,+1:14.565,5833330,48,7,01:33.6,198.044,1 +838,57,35,2,17,9,8,8,8,1,60,+1:29.364,5848129,38,12,01:34.0,197.079,1 +839,57,15,7,8,7,9,9,9,0,59,,,58,10,01:34.0,197.256,11 +840,57,2,2,16,13,10,10,10,0,59,,,47,11,01:34.0,197.084,11 +841,57,26,5,21,17,11,11,11,0,59,,,57,14,01:34.1,196.966,11 +842,57,33,13,18,18,12,12,12,0,59,,,41,18,01:35.5,194.052,11 +843,57,27,13,19,16,13,13,13,0,59,,,35,17,01:35.4,194.207,11 +844,57,23,7,7,10,,R,14,0,52,,,27,8,01:33.6,197.985,5 +845,57,31,1,4,8,,R,15,0,52,,,47,6,01:33.6,198.061,5 +846,57,11,8,22,20,,R,16,0,45,,,26,19,01:36.7,191.64,9 +847,57,36,8,23,21,,R,17,0,29,,,21,20,01:37.2,190.639,9 +848,57,18,11,12,6,,R,18,0,28,,,9,13,01:34.0,197.069,5 +849,57,32,9,15,15,,R,19,0,28,,,16,15,01:34.6,196.004,6 +850,57,17,3,9,19,,R,20,0,12,,,11,16,01:35.4,194.233,9 +851,57,14,9,14,12,,R,21,0,2,,,2,21,02:24.5,128.254,3 +852,57,24,5,20,14,,R,22,0,0,,,,,,,3 +853,58,4,4,1,1,1,1,1,10,66,26:21.8,5181759,39,2,01:16.7,217.108,1 +854,58,30,6,5,3,2,2,2,8,66,18.502,5200261,43,3,01:16.9,216.546,1 +855,58,21,4,2,2,3,3,3,6,66,23.951,5205710,38,4,01:17.1,216.094,1 +856,58,13,6,6,4,4,4,4,5,66,29.853,5211612,42,1,01:16.6,217.32,1 +857,58,8,1,3,9,5,5,5,4,66,56.875,5238634,40,5,01:17.4,215.328,1 +858,58,18,11,12,8,6,6,6,3,66,58.347,5240106,40,6,01:17.4,215.301,1 +859,58,22,11,11,5,7,7,7,2,65,,,40,7,01:17.4,215.212,11 +860,58,2,2,16,10,8,8,8,1,65,,,49,10,01:17.9,213.913,11 +861,58,17,3,9,11,9,9,9,0,65,,,61,11,01:17.9,213.827,11 +862,58,15,7,8,7,10,10,10,0,65,,,42,13,01:18.5,212.288,11 +863,58,3,3,10,13,11,11,11,0,65,,,51,8,01:17.9,213.935,11 +864,58,35,2,17,22,12,12,12,0,65,,,62,12,01:18.0,213.417,11 +865,58,32,9,15,14,13,13,13,0,65,,,59,15,01:18.5,212.15,11 +866,58,14,9,14,21,14,14,14,0,65,,,55,9,01:17.9,213.932,11 +867,58,24,5,20,15,15,15,15,0,63,,,52,14,01:18.5,212.226,9 +868,58,33,13,18,17,16,16,16,0,63,,,28,18,01:19.3,210.145,13 +869,58,11,8,22,19,17,17,17,0,62,,,42,21,01:20.4,207.15,14 +870,58,27,13,19,18,,R,18,0,48,,,28,20,01:19.5,209.44,41 +871,58,26,5,21,16,,R,19,0,47,,,41,16,01:18.5,212.082,5 +872,58,23,7,7,6,,R,20,0,31,,,24,17,01:18.6,211.867,40 +873,58,31,1,4,12,,R,21,0,17,,,17,19,01:19.5,209.571,20 +874,58,36,8,23,20,,R,22,0,10,,,9,22,01:22.4,202.177,30 +875,59,4,4,1,1,1,1,1,10,78,43:43.1,6223116,11,3,01:15.7,158.898,1 +876,59,31,1,4,4,2,2,2,8,78,14.567,6237683,20,6,01:16.0,158.193,1 +877,59,14,9,14,7,3,3,3,6,78,52.298,6275414,45,19,01:17.8,154.452,1 +878,59,22,11,11,5,4,4,4,5,78,53.337,6276453,67,12,01:17.3,155.509,1 +879,59,30,6,5,22,5,5,5,4,78,53.83,6276946,74,1,01:15.1,160.014,1 +880,59,21,4,2,9,6,6,6,3,78,+1:02.072,6285188,58,5,01:15.9,158.379,1 +881,59,2,2,16,15,7,7,7,2,77,,,72,11,01:17.3,155.511,11 +882,59,23,7,7,10,8,8,8,1,77,,,72,15,01:17.5,155.068,11 +883,59,13,6,6,21,9,9,9,0,77,,,40,7,01:16.6,156.946,11 +884,59,24,5,20,12,10,10,10,0,77,,,75,17,01:17.7,154.828,11 +885,59,18,11,12,13,11,11,11,0,77,,,59,10,01:17.3,155.549,11 +886,59,27,13,19,16,12,12,12,0,77,,,77,16,01:17.6,154.942,11 +887,59,26,5,21,18,13,13,13,0,77,,,77,14,01:17.5,155.186,11 +888,59,35,2,17,14,14,14,14,0,77,,,74,18,01:17.8,154.615,11 +889,59,33,13,18,17,15,15,15,0,76,,,71,13,01:17.3,155.491,12 +890,59,36,8,23,20,16,16,16,0,75,,,72,22,01:19.1,152.002,13 +891,59,15,7,8,6,17,17,17,0,72,,,30,8,01:17.2,155.791,9 +892,59,32,9,15,11,,R,18,0,56,,,19,20,01:17.9,154.292,7 +893,59,3,3,10,8,,R,19,0,51,,,43,9,01:17.2,155.696,3 +894,59,8,1,3,3,,R,20,0,50,,,19,2,01:15.3,159.628,42 +895,59,17,3,9,2,,R,21,0,48,,,23,4,01:15.7,158.879,43 +896,59,11,8,22,19,,R,22,0,46,,,39,21,01:18.8,152.602,10 +897,60,4,4,1,1,1,1,1,10,60,25:51.9,5151927,21,1,01:21.6,226.811,1 +898,60,30,6,5,3,2,2,2,8,60,13.951,5165878,53,2,01:21.9,225.884,1 +899,60,8,1,3,2,3,3,3,6,60,18.672,5170599,15,5,01:22.5,224.44,1 +900,60,21,4,2,5,4,4,4,5,60,19.976,5171903,42,3,01:22.2,225.049,1 +901,60,13,6,6,4,5,5,5,4,60,31.559,5183486,43,4,01:22.4,224.685,1 +902,60,31,1,4,8,6,6,6,3,60,+1:04.769,5216696,38,8,01:22.8,223.575,1 +903,60,2,2,16,9,7,7,7,2,60,+1:14.594,5226521,43,6,01:22.7,223.775,1 +904,60,35,2,17,10,8,8,8,1,60,+1:18.299,5230226,46,10,01:22.9,223.195,1 +905,60,3,3,10,12,9,9,9,0,60,+1:19.008,5230935,47,9,01:22.9,223.209,1 +906,60,22,11,11,6,10,10,10,0,59,,,38,11,01:23.2,222.382,11 +907,60,15,7,8,22,11,11,11,0,59,,,19,7,01:22.7,223.673,11 +908,60,14,9,14,11,12,12,12,0,59,,,42,14,01:24.0,220.341,11 +909,60,24,5,20,13,13,13,13,0,59,,,25,15,01:24.2,219.75,11 +910,60,32,9,15,14,14,14,14,0,59,,,30,12,01:23.7,221.086,11 +911,60,27,13,19,18,15,15,15,0,59,,,27,13,01:24.0,220.388,11 +912,60,33,13,18,16,16,16,16,0,58,,,25,16,01:24.6,218.672,12 +913,60,11,8,22,20,17,17,17,0,57,,,23,18,01:26.5,213.911,13 +914,60,36,8,23,21,18,18,18,0,57,,,26,19,01:27.2,212.323,13 +915,60,18,11,12,19,,R,19,0,8,,,8,17,01:25.2,217.207,44 +916,60,26,5,21,15,,R,20,0,1,,,,,,,3 +917,60,23,7,7,7,,R,21,0,0,,,,,,,3 +918,60,17,3,9,17,,R,22,0,0,,,,,,,3 +919,61,4,4,1,1,1,1,1,10,70,34:37.3,5677308,22,2,01:15.9,206.815,1 +920,61,30,6,5,5,2,2,2,8,70,2.1,5679408,68,3,01:16.0,206.592,1 +921,61,8,1,3,3,3,3,3,6,70,8.8,5686108,22,1,01:15.8,207.006,1 +922,61,21,4,2,2,4,4,4,5,70,15.6,5692908,49,4,01:16.7,204.771,1 +923,61,13,6,6,10,5,5,5,4,70,25.1,5702408,31,5,01:17.3,203.078,1 +924,61,15,7,8,4,6,6,6,3,69,,,15,8,01:17.5,202.567,11 +925,61,2,2,16,13,7,7,7,2,69,,,52,7,01:17.5,202.695,11 +926,61,14,9,14,22,8,8,8,1,69,,,39,10,01:17.6,202.264,11 +927,61,18,11,12,8,9,9,9,0,69,,,21,13,01:18.0,201.274,11 +928,61,26,5,21,17,10,10,10,0,69,,,52,12,01:17.7,202.002,11 +929,61,32,9,15,12,11,11,11,0,69,,,55,9,01:17.6,202.377,11 +930,61,17,3,9,16,12,12,12,0,69,,,17,11,01:17.7,202.041,11 +931,61,24,5,20,15,13,13,13,0,68,,,50,14,01:18.1,201.075,12 +932,61,33,13,18,18,14,14,14,0,66,,,5,18,01:19.3,197.999,14 +933,61,11,8,22,20,15,15,15,0,64,,,40,19,01:20.5,195.05,3 +934,61,35,2,17,11,,R,16,0,58,,,29,6,01:17.4,202.852,3 +935,61,23,7,7,14,,R,17,0,58,,,19,16,01:18.8,199.251,31 +936,61,31,1,4,7,,R,18,0,13,,,5,15,01:18.5,200.012,3 +937,61,22,11,11,9,,R,19,0,11,,,10,17,01:19.3,198.012,26 +938,61,36,8,23,21,,R,20,0,2,,,2,20,02:07.7,122.932,5 +939,61,3,3,10,6,,R,21,0,1,,,,,,,3 +940,61,27,13,19,19,,R,22,0,0,,,,,,,3 +941,62,30,6,5,1,1,1,1,10,73,34:35.2,5675199,56,1,01:12.7,207.527,1 +942,62,13,6,6,2,2,2,2,8,73,7.984,5683183,29,2,01:13.0,206.859,1 +943,62,21,4,2,3,3,3,3,6,73,16.595,5691794,28,3,01:13.1,206.358,1 +944,62,15,7,8,22,4,4,4,5,73,23.604,5698803,37,5,01:13.3,205.969,1 +945,62,4,4,1,5,5,5,5,4,73,28.41,5703609,72,6,01:13.3,205.837,1 +946,62,22,11,11,4,6,6,6,3,73,36.513,5711712,47,7,01:13.6,205.012,1 +947,62,14,9,14,17,7,7,7,2,72,,,33,11,01:14.7,201.942,11 +948,62,24,5,20,20,8,8,8,1,72,,,41,9,01:14.3,203.149,11 +949,62,3,3,10,21,9,9,9,0,72,,,42,10,01:14.7,202.005,11 +950,62,23,7,7,8,,R,10,0,62,,,29,4,01:13.2,206.093,45 +951,62,27,13,19,14,,R,11,0,37,,,34,12,01:14.7,201.94,7 +952,62,35,2,17,6,,R,12,0,23,,,19,8,01:13.9,204.117,5 +953,62,33,13,18,15,,R,13,0,9,,,9,13,01:22.0,183.958,3 +954,62,11,8,22,18,,R,14,0,6,,,6,14,01:43.8,145.384,3 +955,62,18,11,12,7,,R,15,0,3,,,2,15,02:04.7,121.027,3 +956,62,8,1,3,9,,R,16,0,0,,,,,,,3 +957,62,2,2,16,10,,R,17,0,0,,,,,,,3 +958,62,31,1,4,11,,R,18,0,0,,,,,,,3 +959,62,17,3,9,12,,R,19,0,0,,,,,,,3 +960,62,26,5,21,13,,R,20,0,0,,,,,,,3 +961,62,32,9,15,16,,R,21,0,0,,,,,,,3 +962,62,36,8,23,19,,R,22,0,0,,,,,,,3 +963,63,30,6,5,1,1,1,1,10,70,32:07.8,5527803,46,1,01:17.1,205.931,1 +964,63,4,4,1,3,2,2,2,8,70,10.1,5537903,23,5,01:17.8,204.186,1 +965,63,13,6,6,2,3,3,3,6,70,22.5,5550303,18,2,01:17.1,205.851,1 +966,63,23,7,7,5,4,4,4,5,70,27.2,5555003,19,6,01:17.8,204.084,1 +967,63,8,1,3,6,5,5,5,4,70,33,5560803,30,4,01:17.7,204.325,1 +968,63,21,4,2,7,6,6,6,3,70,45.2,5573003,20,9,01:18.1,203.435,1 +969,63,37,1,4,8,7,7,7,2,70,49.4,5577203,34,3,01:17.6,204.568,1 +970,63,2,2,16,11,8,8,8,1,69,,,48,14,01:18.8,201.494,11 +971,63,14,9,14,9,9,9,9,0,69,,,56,17,01:19.0,201.063,11 +972,63,26,5,21,14,10,10,10,0,69,,,66,12,01:18.7,201.84,11 +973,63,35,2,17,16,11,11,11,0,69,,,56,7,01:17.9,203.83,11 +974,63,32,9,15,12,12,12,12,0,69,,,56,16,01:19.0,201.089,11 +975,63,24,5,20,22,13,13,13,0,69,,,54,10,01:18.2,202.957,11 +976,63,3,3,10,18,14,14,14,0,68,,,62,13,01:18.8,201.527,12 +977,63,27,13,19,15,15,15,15,0,68,,,67,18,01:19.4,200.105,12 +978,63,36,8,23,20,16,16,16,0,67,,,53,20,01:20.1,198.215,13 +979,63,18,11,12,17,,R,17,0,61,,,47,11,01:18.5,202.262,39 +980,63,17,3,9,10,,R,18,0,55,,,34,15,01:18.9,201.366,46 +981,63,15,7,8,4,,R,19,0,39,,,16,8,01:18.0,203.49,23 +982,63,22,11,11,13,,R,20,0,28,,,16,19,01:20.1,198.262,5 +983,63,33,13,18,19,,R,21,0,11,,,8,21,01:21.7,194.452,26 +984,63,11,8,22,21,,R,22,0,0,,,,,,,7 +985,64,30,6,5,2,1,1,1,10,67,27:51.7,5271693,17,1,01:16.4,215.65,1 +986,64,13,6,6,3,2,2,2,8,67,0.7,5272393,18,2,01:16.4,215.551,1 +987,64,8,1,3,1,3,3,3,6,67,13.2,5284893,4,3,01:16.5,215.317,1 +988,64,18,11,12,4,4,4,4,5,67,18.8,5290493,14,7,01:16.8,214.356,1 +989,64,4,4,1,7,5,5,5,4,67,23.7,5295393,66,9,01:17.3,213.14,1 +990,64,21,4,2,5,6,6,6,3,67,24.8,5296493,18,8,01:17.0,213.902,1 +991,64,15,7,8,20,7,7,7,2,67,26.5,5298193,48,5,01:16.8,214.386,1 +992,64,32,9,15,12,8,8,8,1,67,48.1,5319793,49,12,01:17.7,211.87,1 +993,64,23,7,7,8,9,9,9,0,67,60.3,5331993,64,4,01:16.8,214.509,1 +994,64,24,5,20,16,10,10,10,0,66,,,51,10,01:17.4,212.724,11 +995,64,14,9,14,10,11,11,11,0,66,,,24,13,01:17.8,211.62,11 +996,64,26,5,21,19,12,12,12,0,66,,,50,11,01:17.5,212.606,11 +997,64,17,3,9,11,,R,13,0,59,,,43,6,01:16.8,214.372,47 +998,64,11,8,22,17,,R,14,0,38,,,26,19,01:19.4,207.351,6 +999,64,35,2,17,13,,R,15,0,30,,,29,17,01:18.9,208.689,3 +1000,64,22,11,11,6,,R,16,0,18,,,16,14,01:18.0,211.029,5 +1001,64,2,2,16,15,,R,17,0,9,,,3,18,01:19.3,207.741,23 +1002,64,37,1,4,9,,R,18,0,2,,,2,20,01:19.6,206.737,48 +1003,64,29,8,23,22,,R,19,0,1,,,,,,,30 +1004,64,3,3,10,14,,R,20,0,0,,,,,,,3 +1005,64,27,13,19,21,,D,21,0,66,,,35,15,01:18.2,210.441,2 +1006,64,33,13,18,18,,D,22,0,66,,,46,16,01:18.7,209.182,2 +1007,65,18,11,12,14,1,1,1,10,70,52:20.9,6740941,57,4,01:25.1,185.236,1 +1008,65,37,1,4,4,2,2,2,8,70,30.837,6771778,67,2,01:24.3,187.055,1 +1009,65,2,2,16,10,3,3,3,6,70,43.822,6784763,65,7,01:25.8,183.816,1 +1010,65,22,11,11,3,4,4,4,5,70,45.205,6786146,69,3,01:24.7,186.253,1 +1011,65,14,9,14,12,5,5,5,4,69,,,65,10,01:27.6,180.098,11 +1012,65,23,7,7,6,6,6,6,3,69,,,65,5,01:25.2,185.01,11 +1013,65,13,6,6,2,7,7,7,2,69,,,65,1,01:23.5,188.845,11 +1014,65,30,6,5,11,8,8,8,1,67,,,57,11,01:27.8,179.561,49 +1015,65,33,13,18,16,9,9,9,0,67,,,66,13,01:28.2,178.86,13 +1016,65,27,13,19,22,10,10,10,0,67,,,67,8,01:26.1,183.141,13 +1017,65,26,5,21,20,11,11,11,0,66,,,66,9,01:26.2,182.861,14 +1018,65,15,7,8,8,12,12,12,0,65,,,58,6,01:25.8,183.863,5 +1019,65,11,8,22,19,13,13,13,0,65,,,53,15,01:31.0,173.396,15 +1020,65,4,4,1,15,,R,14,0,51,,,50,14,01:29.4,176.4,30 +1021,65,8,1,3,1,,R,15,0,25,,,7,16,01:33.7,168.338,4 +1022,65,24,5,20,17,,R,16,0,25,,,8,19,01:38.9,159.537,4 +1023,65,3,3,10,18,,R,17,0,19,,,9,20,01:39.0,159.367,10 +1024,65,21,4,2,7,,R,18,0,18,,,9,17,01:35.5,165.061,20 +1025,65,32,9,15,13,,R,19,0,6,,,6,18,01:38.7,159.79,20 +1026,65,17,3,9,5,,R,20,0,1,,,,,,,3 +1027,65,29,8,23,21,,R,21,0,0,,,,,,,5 +1028,65,9,2,17,9,,D,22,0,69,,,55,12,01:28.2,178.909,2 +1029,66,13,6,6,1,1,1,1,10,58,28:51.1,5331082,38,2,01:28.1,218.067,1 +1030,66,4,4,1,3,2,2,2,8,58,5.575,5336657,38,3,01:28.2,217.766,1 +1031,66,30,6,5,2,3,3,3,6,58,5.656,5336738,55,1,01:28.0,218.36,1 +1032,66,18,11,12,6,4,4,4,5,58,12.334,5343416,58,4,01:28.5,217.202,1 +1033,66,37,1,4,11,5,5,5,4,58,45.908,5376990,54,7,01:29.0,216.018,1 +1034,66,21,4,2,4,6,6,6,3,58,46.594,5377676,29,5,01:28.5,217.026,1 +1035,66,23,7,7,15,7,7,7,2,58,59.337,5390419,58,8,01:29.1,215.715,1 +1036,66,22,11,11,13,8,8,8,1,58,60.034,5391116,26,6,01:28.7,216.568,1 +1037,66,15,7,8,12,9,9,9,0,57,,,24,13,01:30.0,213.406,11 +1038,66,17,3,9,9,10,10,10,0,57,,,50,15,01:30.1,213.311,11 +1039,66,32,9,15,10,11,11,11,0,57,,,26,11,01:30.0,213.46,11 +1040,66,9,2,17,8,12,12,12,0,57,,,34,9,01:29.7,214.179,11 +1041,66,26,5,21,17,13,13,13,0,57,,,43,10,01:29.9,213.679,11 +1042,66,2,2,16,5,14,14,14,0,56,,,56,16,01:30.3,212.728,12 +1043,66,14,9,14,16,15,15,15,0,55,,,24,12,01:30.0,213.458,6 +1044,66,27,13,19,22,,R,16,0,46,,,35,17,01:30.4,212.568,20 +1045,66,11,8,22,21,,N,17,0,41,,,33,18,01:31.8,209.301,50 +1046,66,3,3,10,14,,R,18,0,25,,,21,14,01:30.1,213.351,47 +1047,66,29,8,23,20,,R,19,0,23,,,12,20,01:32.3,208.115,20 +1048,66,24,5,20,18,,R,20,0,12,,,12,19,01:32.1,208.542,20 +1049,66,8,1,3,7,,R,21,0,1,,,,,,,4 +1050,66,33,13,18,19,,R,22,0,0,,,,,,,4 +1051,67,30,6,5,2,1,1,1,10,53,14:52.0,4491975,14,2,01:22.6,252.555,1 +1052,67,8,1,3,1,2,2,2,8,53,8.046,4500021,13,1,01:22.6,252.604,1 +1053,67,9,2,17,6,3,3,3,6,53,26.414,4518389,21,4,01:23.1,250.927,1 +1054,67,21,4,2,9,4,4,4,5,53,32.045,4524020,25,8,01:23.6,249.408,1 +1055,67,18,11,12,5,5,5,5,4,53,32.685,4524660,51,7,01:23.5,249.704,1 +1056,67,22,11,11,8,6,6,6,3,53,42.409,4534384,27,10,01:23.8,248.881,1 +1057,67,15,7,8,11,7,7,7,2,53,44.662,4536637,25,11,01:23.9,248.659,1 +1058,67,2,2,16,3,8,8,8,1,53,45.309,4537284,20,6,01:23.3,250.375,1 +1059,67,13,6,6,4,9,9,9,0,53,45.995,4537970,41,3,01:23.0,251.253,1 +1060,67,17,3,9,19,10,10,10,0,53,72.602,4564577,27,12,01:24.2,247.69,1 +1061,67,32,9,15,16,11,11,11,0,52,,,37,13,01:24.6,246.595,11 +1062,67,14,9,14,14,12,12,12,0,52,,,51,17,01:25.0,245.396,11 +1063,67,26,5,21,15,13,13,13,0,52,,,50,18,01:25.1,245.079,11 +1064,67,24,5,20,17,14,14,14,0,52,,,52,14,01:24.8,246.033,11 +1065,67,23,7,7,13,15,15,15,0,52,,,41,16,01:24.8,245.821,11 +1066,67,11,8,22,21,16,16,16,0,51,,,15,21,01:25.7,243.414,12 +1067,67,27,14,19,18,17,17,17,0,51,,,17,20,01:25.5,243.932,12 +1068,67,33,14,18,20,,R,18,0,44,,,27,15,01:24.8,245.865,23 +1069,67,4,4,1,10,,R,19,0,43,,,38,5,01:23.1,250.896,5 +1070,67,37,1,4,7,,R,20,0,20,,,8,9,01:23.7,249.155,5 +1071,67,29,8,23,22,,R,21,0,18,,,15,22,01:26.5,240.962,9 +1072,67,3,3,10,12,,R,22,0,9,,,8,19,01:25.4,244.31,30 +1073,68,30,6,5,6,1,1,1,10,56,37:32.7,5852747,50,2,01:38.6,199.117,1 +1074,68,4,4,1,1,2,2,2,8,56,3.121,5855868,49,1,01:37.6,201.09,1 +1075,68,21,4,2,2,3,3,3,6,56,44.197,5896944,53,6,01:39.3,197.555,1 +1076,68,18,11,12,4,4,4,4,5,56,72.056,5924803,51,5,01:39.2,197.806,1 +1077,68,37,1,4,7,5,5,5,4,56,77.137,5929884,45,3,01:39.1,197.92,1 +1078,68,22,11,11,3,6,6,6,3,56,79.131,5931878,52,9,01:39.7,196.729,1 +1079,68,2,2,16,8,7,7,7,2,56,91.979,5944726,53,4,01:39.2,197.89,1 +1080,68,17,3,9,14,8,8,8,1,56,103.588,5956335,44,12,01:39.9,196.418,1 +1081,68,14,9,14,12,9,9,9,0,56,103.796,5956543,52,15,01:40.5,195.164,1 +1082,68,24,5,20,13,10,10,10,0,55,,,53,18,01:41.7,192.936,11 +1083,68,3,3,10,15,11,11,11,0,55,,,52,14,01:40.5,195.316,11 +1084,68,38,9,15,10,12,12,12,0,55,,,52,10,01:39.8,196.627,11 +1085,68,9,2,17,9,13,13,13,0,55,,,51,13,01:40.2,195.857,11 +1086,68,26,5,21,11,14,14,14,0,55,,,49,8,01:39.7,196.863,11 +1087,68,27,14,19,22,15,15,15,0,53,,,50,17,01:41.5,193.368,13 +1088,68,29,8,23,19,16,16,16,0,52,,,42,19,01:41.8,192.677,14 +1089,68,23,7,7,16,,R,17,0,49,,,47,11,01:39.8,196.583,51 +1090,68,13,6,6,20,,R,18,0,44,,,42,7,01:39.4,197.426,4 +1091,68,15,7,8,17,,R,19,0,38,,,24,21,01:44.8,187.271,63 +1092,68,33,14,18,18,,R,20,0,37,,,35,22,01:45.4,186.259,20 +1093,68,8,1,3,5,,R,21,0,18,,,14,20,01:44.1,188.518,37 +1094,68,11,8,22,21,,D,22,0,55,,,48,16,01:40.9,194.57,2 +1095,69,4,4,1,5,1,1,1,10,53,23:52.4,5032413,14,1,01:32.7,225.572,1 +1096,69,13,6,6,1,2,2,2,8,53,16.151,5048564,37,3,01:33.3,224.073,1 +1097,69,21,4,2,6,3,3,3,6,53,23.953,5056366,13,7,01:33.6,223.432,1 +1098,69,18,11,12,7,4,4,4,5,53,34.101,5066514,35,5,01:33.5,223.702,1 +1099,69,8,1,3,11,5,5,5,4,53,43.596,5076009,24,4,01:33.3,223.958,1 +1100,69,15,7,8,4,6,6,6,3,53,46.717,5079130,2,9,01:33.9,222.713,1 +1101,69,23,7,7,3,7,7,7,2,53,48.869,5081282,2,8,01:33.6,223.329,1 +1102,69,2,2,16,9,8,8,8,1,53,+1:16.095,5108508,31,13,01:34.5,221.16,1 +1103,69,9,2,17,12,9,9,9,0,53,+1:16.932,5109345,39,6,01:33.5,223.563,1 +1104,69,3,3,10,10,10,10,10,0,52,,,33,15,01:34.8,220.514,11 +1105,69,37,1,4,13,11,11,11,0,52,,,22,11,01:34.1,222.112,11 +1106,69,22,11,11,8,12,12,12,0,52,,,40,10,01:34.1,222.227,11 +1107,69,38,9,15,18,13,13,13,0,52,,,37,19,01:35.1,219.825,11 +1108,69,24,5,20,15,14,14,14,0,52,,,22,12,01:34.1,222.086,11 +1109,69,11,8,22,20,15,15,15,0,52,,,26,17,01:35.1,219.864,11 +1110,69,33,14,18,21,16,16,16,0,51,,,27,20,01:35.3,219.454,12 +1111,69,29,8,23,22,17,17,17,0,50,,,22,21,01:35.6,218.687,13 +1112,69,26,5,21,19,18,18,18,0,48,,,37,14,01:34.6,221.078,38 +1113,69,17,3,9,14,,R,19,0,39,,,19,18,01:35.1,219.841,3 +1114,69,30,6,5,2,,R,20,0,36,,,32,2,01:32.8,225.29,5 +1115,69,14,9,14,17,,R,21,0,35,,,20,16,01:35.1,219.934,6 +1116,69,27,14,19,16,,R,22,0,20,,,19,22,01:36.0,217.68,30 +1117,70,13,6,6,1,1,1,1,10,71,31:53.8,5513751,23,2,01:12.9,212.857,1 +1118,70,4,4,1,4,2,2,2,8,71,18.658,5532409,70,3,01:13.0,212.612,1 +1119,70,18,11,12,14,3,3,3,6,71,19.394,5533145,71,4,01:13.1,212.344,1 +1120,70,30,6,5,10,4,4,4,5,71,24.094,5537845,70,1,01:12.2,214.966,1 +1121,70,8,1,3,2,5,5,5,4,71,28.503,5542254,58,6,01:13.3,211.683,1 +1122,70,21,4,2,6,6,6,6,3,71,30.287,5544038,70,5,01:13.1,212.146,1 +1123,70,22,11,11,5,7,7,7,2,71,40.294,5554045,48,8,01:13.4,211.366,1 +1124,70,37,1,4,12,8,8,8,1,71,52.068,5565819,63,12,01:13.8,210.146,1 +1125,70,9,2,17,9,9,9,9,0,71,+1:07.642,5581393,25,14,01:14.1,209.296,1 +1126,70,11,8,22,19,10,10,10,0,70,,,47,9,01:13.4,211.337,11 +1127,70,26,5,21,16,11,11,11,0,70,,,69,13,01:13.9,210.018,11 +1128,70,38,9,15,22,12,12,12,0,70,,,62,11,01:13.7,210.48,11 +1129,70,24,5,20,15,13,13,13,0,70,,,69,10,01:13.7,210.517,11 +1130,70,27,14,19,17,14,14,14,0,70,,,61,17,01:14.6,207.966,11 +1131,70,33,14,18,21,15,15,15,0,69,,,38,16,01:14.4,208.471,12 +1132,70,29,8,23,20,16,16,16,0,69,,,67,7,01:13.4,211.401,12 +1133,70,2,2,16,8,17,17,17,0,63,,,18,15,01:14.2,209.166,3 +1134,70,14,9,14,18,,R,18,0,14,,,12,19,01:16.0,203.989,6 +1135,70,15,7,8,3,,R,19,0,10,,,9,18,01:14.9,207.157,22 +1136,70,23,7,7,7,,R,20,0,9,,,8,20,01:16.8,201.892,22 +1137,70,17,3,9,11,,R,21,0,1,,,,,,,4 +1138,70,3,3,10,13,,R,22,0,0,,,,,,,4 +1139,71,21,4,6,1,1,1,1,10,57,24:17.3,5057336,55,2,01:26.0,222.001,1 +1140,71,22,6,2,11,2,2,2,8,57,5.553,5062889,54,3,01:26.2,221.386,1 +1141,71,4,4,5,13,3,3,3,6,57,6.712,5064048,24,1,01:25.7,222.807,1 +1142,71,14,9,14,5,4,4,4,5,57,16.131,5073467,40,11,01:26.7,220.219,1 +1143,71,17,3,7,3,5,5,5,4,57,16.908,5074244,37,8,01:26.5,220.72,1 +1144,71,31,1,10,9,6,6,6,3,57,35.033,5092369,41,7,01:26.4,220.976,1 +1145,71,32,9,15,6,7,7,7,2,57,38.997,5096333,39,10,01:26.6,220.379,1 +1146,71,8,1,9,10,8,8,8,1,57,39.633,5096969,55,4,01:26.3,221.329,1 +1147,71,15,7,16,2,9,9,9,0,57,+1:03.108,5120444,56,14,01:27.1,219.142,1 +1148,71,13,15,12,18,10,10,10,0,57,+1:04.393,5121729,55,13,01:26.9,219.704,1 +1149,71,18,16,3,8,,11,11,0,56,,,55,5,01:26.3,221.316,11 +1150,71,23,7,17,15,12,12,12,0,56,,,56,9,01:26.5,220.611,11 +1151,71,35,15,11,4,13,13,13,0,56,,,54,15,01:27.7,217.571,11 +1152,71,11,16,4,20,,14,14,0,55,,,36,16,01:27.9,217.244,12 +1153,71,39,17,19,12,15,15,15,0,55,,,36,17,01:28.0,217.014,12 +1154,71,33,17,18,14,16,16,16,0,55,,,16,18,01:29.0,214.505,12 +1155,71,40,18,20,16,17,17,17,0,55,,,22,19,01:32.9,205.604,14 +1156,71,30,6,1,19,,R,18,0,42,,,38,6,01:26.3,221.314,3 +1157,71,2,3,8,7,,R,19,0,42,,,38,12,01:26.9,219.803,3 +1158,71,27,18,21,17,,R,20,0,16,,,11,20,01:33.1,204.96,6 +1159,72,4,4,5,1,1,1,1,10,56,31:33.7,5493736,18,4,01:35.9,208.081,1 +1160,72,15,7,16,2,2,2,2,8,56,24.327,5518063,18,3,01:35.8,208.261,1 +1161,72,2,3,8,10,3,3,3,6,56,32.188,5525924,40,2,01:35.7,208.487,1 +1162,72,31,1,10,11,4,4,4,5,56,41.631,5535367,42,8,01:36.6,206.603,1 +1163,72,23,7,17,5,5,5,5,4,56,51.854,5545590,15,7,01:36.3,207.169,1 +1164,72,14,9,14,8,6,6,6,3,56,+1:12.543,5566279,18,9,01:36.8,206.165,1 +1165,72,30,6,1,13,7,7,7,2,56,+1:19.988,5573724,41,12,01:37.0,205.757,1 +1166,72,32,9,15,7,8,8,8,1,56,+1:20.835,5574571,17,11,01:36.9,205.927,1 +1167,72,8,1,9,6,9,9,9,0,56,+1:21.580,5575316,23,1,01:35.5,208.987,1 +1168,72,13,15,12,14,10,10,10,0,55,,,18,13,01:37.2,205.27,11 +1169,72,39,17,19,17,11,11,11,0,54,,,18,16,01:39.8,199.881,12 +1170,72,33,17,18,18,12,12,12,0,53,,,36,17,01:40.4,198.689,13 +1171,72,27,18,21,19,13,13,13,0,52,,,12,19,01:42.5,194.747,14 +1172,72,22,6,2,12,,R,14,0,49,,,22,10,01:36.9,205.978,27 +1173,72,21,4,6,3,,R,15,0,36,,,21,6,01:36.2,207.469,4 +1174,72,17,3,7,4,,R,16,0,36,,,20,5,01:36.0,207.806,4 +1175,72,35,15,11,16,,R,17,0,26,,,18,15,01:38.1,203.499,20 +1176,72,18,16,3,9,,R,18,0,2,,,2,14,01:37.9,203.803,5 +1177,72,19,16,4,15,,R,19,0,2,,,2,18,01:41.5,196.657,5 +1178,72,40,18,20,20,,R,20,0,2,,,2,20,01:43.6,192.692,20 +1179,73,4,4,5,1,1,1,1,10,57,29:18.5,5358531,39,2,01:31.7,212.436,1 +1180,73,15,7,16,3,2,2,2,8,57,13.409,5371940,41,4,01:32.3,211.03,1 +1181,73,8,1,9,9,3,3,3,6,57,32.063,5390594,41,3,01:31.8,212.184,1 +1182,73,23,7,17,6,4,4,4,5,57,53.272,5411803,36,6,01:32.7,210.213,1 +1183,73,37,1,10,8,5,5,5,4,57,+1:04.988,5423519,43,1,01:31.4,213.054,1 +1184,73,17,3,7,5,6,6,6,3,57,+1:14.701,5433232,20,10,01:33.1,209.3,1 +1185,73,13,15,12,12,7,7,7,2,56,,,40,12,01:33.3,208.764,11 +1186,73,14,9,14,14,8,8,8,1,56,,,42,13,01:33.4,208.561,11 +1187,73,22,6,2,20,9,9,9,0,56,,,23,8,01:33.0,209.55,11 +1188,73,33,17,18,16,10,10,10,0,55,,,18,15,01:35.7,203.492,12 +1189,73,35,15,11,15,11,11,11,0,54,,,24,14,01:33.5,208.47,22 +1190,73,40,18,20,19,12,12,12,0,54,,,16,16,01:36.4,202.04,13 +1191,73,27,18,21,18,13,13,13,0,53,,,3,17,01:36.9,201.038,14 +1192,73,18,16,3,11,,R,14,0,46,,,45,5,01:32.4,210.832,8 +1193,73,11,16,4,13,,R,15,0,27,,,23,11,01:33.1,209.217,23 +1194,73,2,3,8,4,,R,16,0,25,,,19,9,01:33.1,209.372,5 +1195,73,30,6,1,2,,R,17,0,12,,,7,7,01:32.9,209.753,9 +1196,73,21,4,6,10,,R,18,0,4,,,2,18,01:37.0,200.783,5 +1197,73,39,17,19,17,,R,19,0,2,,,2,19,01:37.5,199.76,10 +1198,73,32,9,15,7,,W,20,0,0,,,,,,,10 +1199,74,4,4,5,2,1,1,1,10,62,27:41.9,5261921,22,4,01:23.1,213.619,1 +1200,74,30,6,1,13,2,2,2,8,62,0.215,5262136,48,1,01:21.9,216.946,1 +1201,74,25,1,10,7,3,3,3,6,62,27.554,5289475,24,3,01:23.0,213.902,1 +1202,74,35,15,11,11,4,4,4,5,62,+1:04.442,5326363,45,10,01:24.0,211.371,1 +1203,74,15,7,16,5,5,5,5,4,62,+1:10.258,5332179,44,11,01:24.0,211.358,1 +1204,74,2,3,8,8,6,6,6,3,62,+1:11.282,5333203,54,9,01:23.9,211.623,1 +1205,74,17,3,7,4,7,7,7,2,62,+1:23.297,5345218,17,14,01:24.4,210.364,1 +1206,74,24,9,15,15,8,8,8,1,62,+1:23.764,5345685,46,7,01:23.5,212.71,1 +1207,74,23,7,17,10,9,9,9,0,62,+1:35.841,5357762,19,13,01:24.2,210.836,1 +1208,74,13,15,12,18,10,10,10,0,61,,,37,8,01:23.6,212.42,11 +1209,74,14,9,14,14,11,11,11,0,61,,,22,16,01:24.6,209.813,11 +1210,74,39,17,19,16,12,12,12,0,61,,,20,12,01:24.1,211.177,11 +1211,74,33,17,18,17,13,13,13,0,60,,,19,17,01:24.7,209.62,12 +1212,74,27,18,21,20,,R,14,0,20,,,18,19,01:27.4,203.143,9 +1213,74,22,6,2,9,,R,15,0,18,,,13,15,01:24.4,210.325,10 +1214,74,8,1,9,1,,R,16,0,9,,,8,5,01:23.3,213.201,30 +1215,74,40,18,20,19,,R,17,0,8,,,5,20,01:28.3,201.041,8 +1216,74,21,4,6,12,,R,18,0,5,,,4,18,01:25.7,207.305,3 +1217,74,18,16,3,3,,D,19,0,62,10.4,5272321,22,2,01:22.6,214.987,2 +1218,74,11,16,4,6,,D,20,0,62,34.7,5296621,23,6,01:23.4,213.016,2 +1219,75,8,1,9,1,1,1,1,10,66,27:16.8,5236830,41,4,01:16.0,219.24,1 +1220,75,4,4,5,3,2,2,2,8,66,27.652,5264482,59,5,01:16.1,218.891,1 +1221,75,15,7,16,5,3,3,3,6,66,45.947,5282777,63,8,01:16.6,217.417,1 +1222,75,23,7,17,4,4,4,4,5,66,46.719,5283549,63,6,01:16.5,217.829,1 +1223,75,21,4,6,6,5,5,5,4,66,57.936,5294766,66,1,01:15.6,220.213,1 +1224,75,17,3,7,2,6,6,6,3,66,+1:08.542,5305372,62,9,01:16.8,217,1 +1225,75,31,1,10,7,7,7,7,2,65,,,55,3,01:15.8,219.836,11 +1226,75,14,9,14,9,8,8,8,1,65,,,65,11,01:16.9,216.476,11 +1227,75,22,6,2,16,9,9,9,0,65,,,64,12,01:17.2,215.889,11 +1228,75,2,3,8,17,10,10,10,0,65,,,60,7,01:16.5,217.687,11 +1229,75,13,15,12,10,11,11,11,0,63,,,51,10,01:16.8,216.884,46 +1230,75,33,17,18,18,12,12,12,0,63,,,22,14,01:19.0,210.855,13 +1231,75,39,17,19,13,13,13,13,0,63,,,16,16,01:19.7,208.909,13 +1232,75,35,15,11,12,,R,14,0,51,,,43,13,01:17.6,214.696,5 +1233,75,30,6,1,8,,R,15,0,46,,,31,2,01:15.6,220.193,29 +1234,75,27,18,21,14,,R,16,0,19,,,15,17,01:20.1,207.892,6 +1235,75,40,18,20,15,,R,17,0,11,,,10,18,01:20.9,205.987,20 +1236,75,24,9,15,11,,R,18,0,9,,,9,15,01:19.4,209.695,20 +1237,76,8,1,9,1,1,1,1,10,78,45:15.6,6315556,41,2,01:15.9,158.375,1 +1238,76,2,3,8,6,2,2,2,8,78,13.877,6329433,15,9,01:17.2,155.834,1 +1239,76,17,3,7,3,3,3,3,6,78,18.484,6334040,77,7,01:17.0,156.214,1 +1240,76,4,4,5,2,4,4,4,5,78,36.487,6352043,19,3,01:16.6,156.971,1 +1241,76,31,1,10,16,5,5,5,4,78,36.647,6352203,50,10,01:17.4,155.342,1 +1242,76,23,7,17,18,6,6,6,3,78,37.117,6352673,11,8,01:17.1,156.014,1 +1243,76,30,6,1,8,7,7,7,2,78,37.223,6352779,40,1,01:15.8,158.54,1 +1244,76,22,6,2,10,8,8,8,1,78,37.57,6353126,51,6,01:16.9,156.326,1 +1245,76,13,15,12,11,9,9,9,0,77,,,16,13,01:17.8,154.552,11 +1246,76,15,7,16,5,10,10,10,0,77,,,38,5,01:16.8,156.538,11 +1247,76,35,15,11,9,11,11,11,0,77,,,17,11,01:17.5,155.184,11 +1248,76,21,4,6,4,12,12,12,0,77,,,20,4,01:16.8,156.611,11 +1249,76,33,17,18,15,13,13,13,0,75,,,12,17,01:20.7,148.909,13 +1250,76,27,18,21,14,14,14,14,0,73,,,22,16,01:20.2,149.856,15 +1251,76,24,9,15,12,,R,15,0,59,,,43,14,01:18.0,154.094,3 +1252,76,40,18,20,13,,R,16,0,29,,,19,15,01:19.0,152.131,3 +1253,76,14,9,14,7,,R,17,0,23,,,15,12,01:17.7,154.762,3 +1254,76,39,17,19,17,,R,18,0,18,,,14,18,01:22.0,146.6,9 +1255,77,4,4,5,6,1,1,1,10,59,31:46.6,5506648,44,1,01:30.7,204.305,1 +1256,77,2,3,8,1,2,2,2,8,59,16.567,5523215,9,4,01:31.1,203.38,1 +1257,77,22,6,2,7,3,3,3,6,59,18.549,5525197,44,3,01:31.0,203.594,1 +1258,77,14,9,14,12,4,4,4,5,59,31.588,5538236,19,5,01:31.3,202.974,1 +1259,77,30,6,1,10,5,5,5,4,59,50.445,5557093,19,6,01:31.5,202.537,1 +1260,77,21,4,6,9,6,6,6,3,59,51.932,5558580,47,7,01:31.7,202.084,1 +1261,77,31,1,10,5,7,7,7,2,59,58.173,5564821,42,10,01:31.8,201.866,1 +1262,77,15,7,16,4,8,8,8,1,59,+1:11.091,5577739,43,9,01:31.8,201.928,1 +1263,77,24,9,15,14,9,9,9,0,59,+1:11.529,5578177,43,13,01:32.0,201.506,1 +1264,77,18,16,3,13,10,10,10,0,59,+1:35.786,5602434,20,12,01:32.0,201.542,1 +1265,77,8,1,9,2,11,11,11,0,58,,,9,2,01:30.9,203.791,3 +1266,77,11,16,4,16,12,12,12,0,58,,,26,11,01:31.9,201.686,11 +1267,77,35,15,11,15,13,13,13,0,58,,,41,15,01:32.6,200.174,11 +1268,77,13,15,12,11,14,14,14,0,58,,,18,14,01:32.3,200.725,11 +1269,77,33,17,18,17,15,15,15,0,58,,,39,17,01:33.4,198.37,11 +1270,77,39,17,19,19,16,16,16,0,58,,,21,16,01:33.3,198.653,11 +1271,77,27,18,21,20,17,17,17,0,57,,,18,18,01:35.0,194.985,12 +1272,77,40,18,20,18,18,18,18,0,56,,,18,19,01:35.5,193.987,13 +1273,77,23,7,17,8,,R,19,0,33,,,25,8,01:31.7,202.049,20 +1274,77,17,3,7,3,,R,20,0,0,,,,,,,3 +1275,78,8,1,9,7,1,1,1,10,70,32:09.3,5529290,23,1,01:14.4,211.061,1 +1276,78,30,6,1,2,2,2,2,8,70,1.1,5530390,32,4,01:14.9,209.697,1 +1277,78,22,6,2,20,3,3,3,6,70,40.4,5569690,46,8,01:15.5,207.996,1 +1278,78,13,15,12,11,4,4,4,5,70,55.1,5584390,18,13,01:16.0,206.551,1 +1279,78,17,3,7,14,5,5,5,4,70,55.7,5584990,23,7,01:15.4,208.214,1 +1280,78,23,7,17,10,6,6,6,3,69,,,44,10,01:15.8,207.044,11 +1281,78,14,9,14,12,7,7,7,2,69,,,17,16,01:16.4,205.454,11 +1282,78,32,9,15,16,8,8,8,1,69,,,46,15,01:16.3,205.764,11 +1283,78,35,15,11,8,9,9,9,0,69,,,26,12,01:15.9,206.723,11 +1284,78,33,17,18,18,10,10,10,0,67,,,19,18,01:17.3,202.984,13 +1285,78,27,18,21,15,11,11,11,0,67,,,15,19,01:18.5,200.091,13 +1286,78,15,7,16,9,,R,12,0,62,,,43,11,01:15.9,206.922,23 +1287,78,18,16,3,1,,R,13,0,46,,,30,6,01:15.2,208.801,3 +1288,78,2,3,8,13,,R,14,0,43,,,20,9,01:15.8,207.249,5 +1289,78,11,16,4,6,,R,15,0,40,,,14,14,01:16.0,206.454,23 +1290,78,40,18,20,19,,R,16,0,39,,,33,20,01:18.7,199.463,9 +1291,78,4,4,5,3,,R,17,0,38,,,38,3,01:14.7,210.092,22 +1292,78,21,4,6,4,,R,18,0,32,,,24,5,01:14.9,209.635,9 +1293,78,39,17,19,17,,R,19,0,24,,,20,17,01:17.0,203.851,22 +1294,78,31,1,10,5,,D,20,0,52,,,24,2,01:14.6,210.518,2 +1295,79,30,6,1,5,1,1,1,10,73,29:43.2,5383181,48,1,01:11.5,211.074,1 +1296,79,22,6,2,7,2,2,2,8,73,1.5,5384681,48,2,01:11.6,210.626,1 +1297,79,33,17,18,17,3,3,3,6,72,,,44,3,01:13.2,206.059,11 +1298,79,39,17,19,19,4,4,4,5,72,,,65,4,01:13.4,205.686,11 +1299,79,27,18,21,18,5,5,5,4,71,,,2,5,01:13.9,204.191,12 +1300,79,40,18,20,20,6,6,6,3,71,,,43,6,01:14.5,202.593,12 +1301,79,15,7,16,1,,W,7,0,0,,,,,,,54 +1302,79,8,1,9,2,,W,8,0,0,,,,,,,54 +1303,79,18,16,3,3,,W,9,0,0,,,,,,,54 +1304,79,21,4,6,4,,W,10,0,0,,,,,,,54 +1305,79,4,4,5,6,,W,11,0,0,,,,,,,54 +1306,79,11,16,4,8,,W,12,0,0,,,,,,,54 +1307,79,17,3,7,9,,W,13,0,0,,,,,,,54 +1308,79,13,15,12,10,,W,14,0,0,,,,,,,54 +1309,79,31,1,10,11,,W,15,0,0,,,,,,,54 +1310,79,35,15,11,12,,W,16,0,0,,,,,,,54 +1311,79,41,7,17,13,,W,17,0,0,,,,,,,54 +1312,79,32,9,15,14,,W,18,0,0,,,,,,,54 +1313,79,2,3,8,15,,W,19,0,0,,,,,,,54 +1314,79,14,9,14,16,,W,20,0,0,,,,,,,54 +1315,80,4,4,5,1,1,1,1,10,70,31:22.2,5482232,5,2,01:16.5,207.571,1 +1316,80,8,1,9,13,2,2,2,8,70,11.8,5494032,25,1,01:16.4,207.785,1 +1317,80,30,6,1,3,3,3,3,6,70,+1:21.9,5564132,22,7,01:17.7,204.333,1 +1318,80,18,16,3,7,4,4,4,5,69,,,18,4,01:17.4,205.141,11 +1319,80,15,7,16,2,5,5,5,4,69,,,67,8,01:17.8,204.128,11 +1320,80,21,4,6,6,6,6,6,3,69,,,18,5,01:17.5,204.868,11 +1321,80,23,7,17,11,7,7,7,2,69,,,36,14,01:18.1,203.316,11 +1322,80,35,15,11,10,8,8,8,1,69,,,17,10,01:17.8,204,11 +1323,80,22,6,2,5,9,9,9,0,69,,,4,12,01:18.0,203.689,11 +1324,80,14,9,14,15,10,10,10,0,69,,,39,6,01:17.6,204.605,11 +1325,80,11,16,4,4,11,11,11,0,69,,,8,11,01:17.9,203.77,11 +1326,80,17,3,7,12,12,12,12,0,68,,,17,15,01:18.4,202.558,12 +1327,80,33,17,18,19,13,13,13,0,67,,,32,16,01:20.0,198.485,13 +1328,80,2,3,8,14,14,14,14,0,66,,,36,13,01:18.1,203.318,14 +1329,80,39,17,19,17,15,15,15,0,66,,,9,17,01:20.2,198.108,14 +1330,80,31,1,10,8,,R,16,0,46,,,24,3,01:16.7,207.154,5 +1331,80,27,18,21,20,,R,17,0,37,,,8,18,01:21.1,195.858,29 +1332,80,40,18,20,18,,R,18,0,33,,,4,19,01:21.5,194.958,29 +1333,80,13,15,12,9,,R,19,0,30,,,11,9,01:17.8,204.094,9 +1334,80,32,9,15,16,,R,20,0,1,,,,,,,32 +1335,81,31,1,10,3,1,1,1,10,60,24:29.6,5069588,41,2,01:20.7,229.338,1 +1336,81,4,4,5,1,2,2,2,8,60,2.7,5072288,40,4,01:21.2,227.847,1 +1337,81,8,1,9,12,3,3,3,6,60,14.4,5083988,60,1,01:20.5,229.902,1 +1338,81,21,4,6,6,4,4,4,5,60,17.9,5087488,43,3,01:21.2,228.041,1 +1339,81,18,16,3,2,5,5,5,4,60,40.3,5109888,42,7,01:22.0,225.721,1 +1340,81,30,6,1,9,6,6,6,3,60,+1:15.3,5144888,23,5,01:21.7,226.6,1 +1341,81,22,6,2,5,7,7,7,2,60,+1:16.6,5146188,41,9,01:22.3,224.874,1 +1342,81,23,7,17,8,8,8,8,1,60,+1:19.2,5148788,46,6,01:22.0,225.812,1 +1343,81,15,7,16,4,9,9,9,0,60,+1:20.9,5150488,56,8,01:22.1,225.394,1 +1344,81,13,15,12,16,10,10,10,0,59,,,45,10,01:22.5,224.427,11 +1345,81,17,3,7,11,11,11,11,0,59,,,16,15,01:23.3,222.204,11 +1346,81,2,3,8,14,12,12,12,0,59,,,58,16,01:23.4,222.02,11 +1347,81,14,9,14,13,13,13,13,0,59,,,44,12,01:23.1,222.744,11 +1348,81,35,15,11,10,14,14,14,0,59,,,16,14,01:23.2,222.42,11 +1349,81,32,9,15,15,15,15,15,0,59,,,58,13,01:23.1,222.588,11 +1350,81,11,16,4,7,16,16,16,0,58,,,54,11,01:22.6,224.195,12 +1351,81,33,17,18,20,17,17,17,0,58,,,38,17,01:24.2,219.682,12 +1352,81,27,18,21,18,18,18,18,0,57,,,53,19,01:26.2,214.75,13 +1353,81,40,18,20,19,19,19,19,0,56,,,37,20,01:26.5,213.987,14 +1354,81,39,17,19,17,,R,20,0,10,,,8,18,01:25.3,217.08,10 +1355,82,4,4,5,3,1,1,1,10,67,26:28.6,5188599,21,2,01:15.2,218.866,1 +1356,82,31,1,10,20,2,2,2,8,67,22.569,5211168,54,4,01:15.9,217.011,1 +1357,82,18,16,3,2,3,3,3,6,67,24.422,5213021,19,3,01:15.8,217.111,1 +1358,82,21,4,6,4,4,4,4,5,67,50.587,5239186,21,5,01:15.9,216.977,1 +1359,82,30,6,1,5,5,5,5,4,67,51.69,5240289,18,7,01:16.1,216.381,1 +1360,82,23,7,17,12,6,6,6,3,67,52.242,5240841,23,6,01:16.1,216.455,1 +1361,82,14,9,14,11,7,7,7,2,67,52.7,5241299,18,8,01:16.2,216,1 +1362,82,13,15,12,13,8,8,8,1,67,56.57,5245169,45,10,01:16.3,215.845,1 +1363,82,32,9,15,10,9,9,9,0,67,+1:09.818,5258417,45,9,01:16.2,215.992,1 +1364,82,22,6,2,15,10,10,10,0,66,,,47,12,01:16.5,215.168,11 +1365,82,2,3,8,7,11,11,11,0,66,,,10,13,01:16.6,214.946,11 +1366,82,11,16,4,8,12,12,12,0,66,,,27,14,01:16.7,214.615,11 +1367,82,27,18,21,16,13,13,13,0,65,,,11,19,01:18.4,209.963,12 +1368,82,15,7,16,9,14,14,14,0,64,,,45,11,01:16.5,215.32,13 +1369,82,35,15,11,14,15,15,15,0,64,,,26,16,01:17.1,213.511,13 +1370,82,39,17,19,19,16,16,16,0,64,,,7,18,01:18.2,210.535,13 +1371,82,33,17,18,18,17,17,17,0,64,,,12,17,01:18.1,210.821,13 +1372,82,38,18,20,17,18,18,18,0,63,,,44,20,01:19.0,208.369,14 +1373,82,17,3,7,6,,N,19,0,55,,,46,15,01:16.8,214.397,55 +1374,82,8,1,9,1,,R,20,0,32,,,24,1,01:14.9,219.924,9 +1375,83,8,1,9,4,1,1,1,10,70,37:25.6,5845552,40,1,01:21.2,194.186,1 +1376,83,30,6,1,1,2,2,2,8,70,35.581,5881133,13,3,01:21.5,193.573,1 +1377,83,23,7,17,5,3,3,3,6,70,36.129,5881681,13,5,01:21.9,192.634,1 +1378,83,15,7,16,3,4,4,4,5,70,54.221,5899773,32,4,01:21.8,192.707,1 +1379,83,18,16,3,8,5,5,5,4,70,58.832,5904384,70,8,01:22.4,191.388,1 +1380,83,2,3,8,12,6,6,6,3,70,+1:08.375,5913927,53,6,01:22.1,192.212,1 +1381,83,17,3,7,16,7,7,7,2,69,,,47,9,01:22.5,191.279,11 +1382,83,11,16,4,10,8,8,8,1,69,,,45,7,01:22.4,191.405,11 +1383,83,21,4,6,9,9,9,9,0,69,,,19,10,01:22.5,191.157,11 +1384,83,22,6,2,7,10,10,10,0,69,,,20,11,01:22.8,190.551,11 +1385,83,4,4,5,6,11,11,11,0,69,,,51,12,01:22.9,190.285,11 +1386,83,39,17,19,18,12,12,12,0,67,,,17,15,01:24.4,186.765,13 +1387,83,33,17,18,20,13,13,13,0,66,,,15,16,01:24.8,186.042,14 +1388,83,13,15,12,14,14,14,14,0,63,,,22,13,01:23.0,189.909,17 +1389,83,27,18,21,17,,N,15,0,59,,,8,18,01:26.0,183.484,45 +1390,83,35,15,11,15,,R,16,0,56,,,23,14,01:23.1,189.749,56 +1391,83,31,1,10,2,,R,17,0,41,,,20,2,01:21.2,194.143,30 +1392,83,38,18,20,19,,R,18,0,26,,,16,17,01:25.6,184.148,9 +1393,83,14,9,14,13,,R,19,0,0,,,,,,,3 +1394,83,32,9,15,11,,R,20,0,0,,,,,,,3 +1395,84,8,1,9,1,1,1,1,10,58,24:34.5,5074454,40,2,01:25.0,226,1 +1396,84,4,4,5,3,2,2,2,8,58,18.609,5093063,58,3,01:25.5,224.694,1 +1397,84,31,1,10,4,3,3,3,6,58,19.635,5094089,39,1,01:24.8,226.693,1 +1398,84,21,4,6,2,4,4,4,5,58,37.973,5112427,34,4,01:25.6,224.484,1 +1399,84,18,16,3,13,5,5,5,4,58,39.304,5113758,58,5,01:25.8,223.998,1 +1400,84,15,7,16,5,6,6,6,3,58,55.42,5129874,52,7,01:26.2,222.989,1 +1401,84,14,9,14,12,7,7,7,2,58,+1:09.292,5143746,58,9,01:26.4,222.372,1 +1402,84,32,9,15,10,8,8,8,1,58,+1:11.622,5146076,58,8,01:26.4,222.483,1 +1403,84,11,16,4,20,9,9,9,0,58,+1:19.987,5154441,54,6,01:25.9,223.82,1 +1404,84,22,6,2,11,10,10,10,0,57,,,45,11,01:26.6,221.813,11 +1405,84,35,15,11,16,11,11,11,0,57,,,44,13,01:27.0,220.966,11 +1406,84,23,7,17,9,12,12,12,0,57,,,38,15,01:27.0,220.819,11 +1407,84,38,18,20,17,13,13,13,0,55,,,53,18,01:29.2,215.364,13 +1408,84,39,17,19,18,14,14,14,0,55,,,42,19,01:29.3,215.227,13 +1409,84,33,17,18,14,15,15,15,0,55,,,50,17,01:29.0,215.834,13 +1410,84,27,18,21,15,,R,16,0,48,,,13,20,01:29.4,214.972,31 +1411,84,30,6,1,19,,R,17,0,32,,,21,14,01:27.0,220.905,31 +1412,84,2,3,8,6,,R,18,0,29,,,25,16,01:27.4,219.99,27 +1413,84,13,15,12,8,,R,19,0,28,,,27,10,01:26.5,222.123,5 +1414,84,17,3,7,7,,R,20,0,20,,,12,12,01:26.8,221.414,27 +1415,85,31,1,10,1,1,1,1,10,53,14:28.7,4468659,15,2,01:21.8,254.861,1 +1416,85,4,4,5,2,2,2,2,8,53,2.479,4471138,16,3,01:22.1,253.874,1 +1417,85,21,4,6,8,3,3,3,6,53,17.975,4486634,16,4,01:22.6,252.519,1 +1418,85,8,1,9,11,4,4,4,5,53,22.775,4491434,51,1,01:21.5,255.874,1 +1419,85,15,7,16,5,5,5,5,4,53,33.786,4502445,19,5,01:22.8,251.775,1 +1420,85,23,7,17,9,6,6,6,3,53,43.925,4512584,19,8,01:23.1,251.032,1 +1421,85,42,3,8,16,7,7,7,2,53,44.643,4513302,21,6,01:22.9,251.656,1 +1422,85,18,16,3,3,8,8,8,1,53,+1:03.635,4532294,16,9,01:23.2,250.776,1 +1423,85,13,15,12,15,9,9,9,0,53,+1:15.413,4544072,18,11,01:23.4,250.162,1 +1424,85,30,6,1,6,10,10,10,0,53,+1:36.070,4564729,5,13,01:23.6,249.507,1 +1425,85,35,15,11,12,11,11,11,0,52,,,13,16,01:23.9,248.591,11 +1426,85,22,6,2,7,12,12,12,0,52,,,13,12,01:23.5,249.859,11 +1427,85,32,9,15,13,13,13,13,0,52,,,17,14,01:23.6,249.36,11 +1428,85,17,3,7,14,14,14,14,0,52,,,40,7,01:22.9,251.459,11 +1429,85,14,9,14,10,15,15,15,0,52,,,18,15,01:23.9,248.665,11 +1430,85,11,16,4,4,16,16,16,0,52,,,14,10,01:23.3,250.234,11 +1431,85,33,17,18,17,17,17,17,0,51,,,9,17,01:24.8,245.9,12 +1432,85,38,18,20,18,18,18,18,0,51,,,31,20,01:25.2,244.794,12 +1433,85,27,18,21,20,19,19,19,0,51,,,33,18,01:25.0,245.448,12 +1434,85,39,17,19,19,20,20,20,0,50,,,17,19,01:25.1,244.929,13 +1435,86,8,1,9,2,1,1,1,10,44,30:01.3,5401295,34,6,01:53.8,220.662,1 +1436,86,4,4,5,4,2,2,2,8,44,28.3,5429595,31,10,01:56.1,216.252,1 +1437,86,18,16,3,8,3,3,3,6,44,32,5433295,44,5,01:53.3,221.61,1 +1438,86,17,3,7,9,4,4,4,5,44,+1:09.1,5470395,44,2,01:52.3,223.655,1 +1439,86,22,6,2,12,5,5,5,4,44,+1:18.1,5479395,44,4,01:52.6,223.053,1 +1440,86,35,15,11,14,6,6,6,3,44,+1:27.4,5488695,44,7,01:54.3,219.81,1 +1441,86,23,7,17,5,7,7,7,2,44,+1:27.5,5488795,43,1,01:51.5,225.329,1 +1442,86,33,17,18,19,8,8,8,1,43,,,41,17,01:57.9,213.032,11 +1443,86,32,9,15,16,9,9,9,0,43,,,43,3,01:52.6,223.069,11 +1444,86,13,15,12,7,10,10,10,0,43,,,28,16,01:57.7,213.282,11 +1445,86,39,17,19,20,11,11,11,0,43,,,43,8,01:55.9,216.711,11 +1446,86,27,18,21,18,12,12,12,0,42,,,6,20,02:01.6,206.48,12 +1447,86,38,18,20,17,13,13,13,0,41,,,38,19,02:01.1,207.296,13 +1448,86,31,1,10,1,14,14,14,0,40,,,14,9,01:56.0,216.518,4 +1449,86,42,3,8,15,15,15,15,0,39,,,32,15,01:57.5,213.658,4 +1450,86,15,7,16,3,,R,16,0,34,,,3,11,01:57.0,214.732,3 +1451,86,14,9,14,11,,R,17,0,18,,,8,18,01:58.5,212.016,5 +1452,86,30,6,1,6,,R,18,0,13,,,10,13,01:57.4,213.834,3 +1453,86,11,16,4,10,,R,19,0,13,,,10,14,01:57.5,213.67,3 +1454,86,21,4,6,13,,R,20,0,10,,,9,12,01:57.1,214.431,3 +1455,87,31,1,10,2,1,1,1,10,71,29:20.6,5360574,27,2,01:12.6,213.522,1 +1456,87,8,1,9,5,2,2,2,8,71,2.527,5363101,29,1,01:12.3,214.651,1 +1457,87,4,4,5,1,3,3,3,6,71,24.84,5385414,21,3,01:12.7,213.513,1 +1458,87,30,6,1,7,4,4,4,5,71,35.668,5396242,25,4,01:12.8,213.082,1 +1459,87,21,4,6,3,5,5,5,4,71,40.218,5400792,11,5,01:13.2,211.946,1 +1460,87,22,6,2,9,6,6,6,3,71,+1:09.173,5429747,49,6,01:13.2,211.941,1 +1461,87,18,16,3,4,7,7,7,2,70,,,24,10,01:13.7,210.349,11 +1462,87,23,7,17,10,8,8,8,1,70,,,25,9,01:13.7,210.411,11 +1463,87,32,9,15,6,9,9,9,0,70,,,50,11,01:13.8,210.195,11 +1464,87,11,16,4,19,10,10,10,0,70,,,32,14,01:14.4,208.516,11 +1465,87,13,15,12,8,11,11,11,0,70,,,70,13,01:14.3,208.659,11 +1466,87,35,15,11,20,12,12,12,0,70,,,25,12,01:14.1,209.474,11 +1467,87,15,7,16,17,13,13,13,0,69,,,69,7,01:13.6,210.852,12 +1468,87,27,18,21,16,14,14,14,0,69,,,19,17,01:15.5,205.388,12 +1469,87,39,17,19,15,15,15,15,0,68,,,41,15,01:14.9,207.091,13 +1470,87,33,17,18,11,,R,16,0,55,,,41,16,01:15.1,206.52,26 +1471,87,17,3,7,12,,N,17,0,45,,,45,8,01:13.6,210.794,58 +1472,87,38,18,20,18,,R,18,0,34,,,16,18,01:15.8,204.67,5 +1473,87,42,3,8,13,,R,19,0,0,,,,,,,3 +1474,87,14,9,14,14,,R,20,0,0,,,,,,,3 +1475,88,8,1,9,17,1,1,1,10,53,29:02.2,5342212,44,1,01:31.5,228.372,1 +1476,88,21,4,6,3,2,2,2,8,53,1.633,5343845,19,3,01:32.5,225.948,1 +1477,88,4,4,5,16,3,3,3,6,53,17.456,5359668,21,2,01:31.6,228.225,1 +1478,88,17,3,7,7,4,4,4,5,53,22.274,5364486,21,7,01:33.0,224.733,1 +1479,88,18,16,3,2,5,5,5,4,53,29.507,5371719,19,4,01:32.8,225.383,1 +1480,88,14,9,14,6,6,6,6,3,53,31.601,5373813,18,8,01:33.0,224.731,1 +1481,88,30,6,1,14,7,7,7,2,53,33.879,5376091,25,5,01:32.8,225.361,1 +1482,88,23,7,17,1,8,8,8,1,53,49.548,5391760,9,6,01:32.8,225.283,1 +1483,88,32,9,15,4,9,9,9,0,53,51.925,5394137,49,12,01:33.5,223.587,1 +1484,88,13,15,12,10,10,10,10,0,53,57.509,5399721,43,10,01:33.2,224.227,1 +1485,88,22,6,2,9,11,11,11,0,53,+1:00.633,5402845,52,9,01:33.1,224.466,1 +1486,88,35,15,11,8,12,12,12,0,53,+1:23.221,5425433,50,11,01:33.3,224.093,1 +1487,88,33,17,18,20,13,13,13,0,52,,,17,14,01:35.5,218.998,11 +1488,88,38,18,20,15,14,14,14,0,51,,,50,17,01:36.6,216.468,12 +1489,88,39,17,19,11,15,15,15,0,51,,,11,15,01:35.9,218.019,12 +1490,88,27,18,21,13,16,16,16,0,49,,,33,16,01:36.0,217.674,14 +1491,88,42,3,8,12,,R,17,0,9,,,9,18,01:36.7,216.161,3 +1492,88,15,7,16,19,,R,18,0,9,,,9,19,01:37.4,214.57,3 +1493,88,31,1,10,18,,R,19,0,0,,,,,,,3 +1494,88,11,16,4,5,,D,20,0,52,,,28,13,01:34.2,221.956,2 +1495,89,4,4,5,1,1,1,1,10,56,39:53.6,5993618,45,2,01:33.5,209.797,1 +1496,89,8,1,9,3,2,2,2,8,56,4,5997618,56,1,01:33.2,210.458,1 +1497,89,23,7,17,9,3,3,3,6,56,25.3,6018918,44,5,01:34.0,208.684,1 +1498,89,21,4,6,2,4,4,4,5,56,26.1,6019718,54,3,01:33.6,209.736,1 +1499,89,32,9,15,14,5,5,5,4,56,31.8,6025418,43,4,01:33.7,209.369,1 +1500,89,13,15,12,11,6,6,6,3,56,36.4,6030018,43,6,01:34.1,208.553,1 +1501,89,17,3,7,10,7,7,7,2,56,36.8,6030418,53,7,01:34.3,208.161,1 +1502,89,18,16,3,4,8,8,8,1,56,41.2,6034818,53,12,01:34.8,207.074,1 +1503,89,14,9,14,7,9,9,9,0,56,44.2,6037818,54,10,01:34.6,207.47,1 +1504,89,35,15,11,16,10,10,10,0,56,59.9,6053518,53,11,01:34.7,207.19,1 +1505,89,33,17,18,19,11,11,11,0,56,+1:24.6,6078218,13,17,01:36.6,203.22,1 +1506,89,22,6,2,8,12,12,12,0,56,+1:32.8,6086418,18,13,01:35.0,206.54,1 +1507,89,42,3,8,13,13,13,13,0,55,,,52,9,01:34.6,207.525,59 +1508,89,38,18,20,20,14,14,14,0,55,,,54,18,01:36.9,202.526,60 +1509,89,15,7,16,12,15,15,15,0,55,,,16,14,01:35.3,205.812,11 +1510,89,27,18,21,18,16,16,16,0,50,,,48,19,01:37.2,201.857,61 +1511,89,11,16,4,17,,R,17,0,34,,,17,15,01:35.6,205.295,6 +1512,89,39,17,19,15,,R,18,0,28,,,17,20,01:37.4,201.478,3 +1513,89,31,1,10,5,,R,19,0,24,,,15,8,01:34.5,207.654,5 +1514,89,30,6,1,6,,R,20,0,20,,,16,16,01:35.9,204.674,20 +1515,90,30,6,1,1,1,1,1,10,58,24:15.8,5055757,29,1,01:24.1,226.933,1 +1516,90,22,6,2,2,2,2,2,8,58,13.605,5069362,8,2,01:24.2,226.788,1 +1517,90,4,4,8,5,3,3,3,6,58,34.673,5090430,10,3,01:25.1,224.365,1 +1518,90,23,3,4,8,4,4,4,5,58,+1:00.423,5116180,11,5,01:25.8,222.441,1 +1519,90,31,3,3,3,5,5,5,4,58,+1:08.536,5124293,42,4,01:25.3,223.844,1 +1520,90,18,16,9,4,6,6,6,3,58,+1:10.598,5126355,24,7,01:26.0,222.032,1 +1521,90,15,4,7,9,7,7,7,2,57,,,9,9,01:26.3,221.278,11 +1522,90,14,1,5,12,8,8,8,1,57,,,13,11,01:26.3,221.142,11 +1523,90,11,16,10,7,9,9,9,0,57,,,43,8,01:26.1,221.787,11 +1524,90,21,15,11,14,10,10,10,0,57,,,39,10,01:26.3,221.26,11 +1525,90,32,19,15,19,11,11,11,0,56,,,6,16,01:27.8,217.336,12 +1526,90,43,7,16,13,12,12,12,0,56,,,41,15,01:27.8,217.385,12 +1527,90,44,7,17,18,13,13,13,0,56,,,35,14,01:27.8,217.417,12 +1528,90,45,17,19,16,14,14,14,0,55,,,15,18,01:28.5,215.659,13 +1529,90,13,15,12,11,,R,15,0,44,,,11,12,01:26.8,219.823,5 +1530,90,2,17,18,15,,R,16,0,43,,,27,13,01:27.5,218.173,7 +1531,90,46,18,20,20,,N,17,0,43,,,10,19,01:30.2,211.741,62 +1532,90,17,19,14,6,,R,18,0,29,,,15,6,01:26.0,222.11,7 +1533,90,47,18,21,17,,R,19,0,13,,,8,20,01:30.6,210.666,10 +1534,90,8,1,6,10,,R,20,0,9,,,7,17,01:27.9,217.098,5 +1535,91,30,6,1,1,1,1,1,10,56,31:07.5,5467490,6,2,01:34.8,210.451,1 +1536,91,31,3,3,4,2,2,2,8,56,5.022,5472512,28,1,01:34.2,211.782,1 +1537,91,18,16,9,6,3,3,3,6,56,11.568,5479058,28,3,01:35.0,210.123,1 +1538,91,22,6,2,3,4,4,4,5,56,13.615,5481105,7,6,01:35.4,209.279,1 +1539,91,15,4,7,8,5,5,5,4,56,37.36,5504850,12,4,01:35.0,209.964,1 +1540,91,14,1,5,9,6,6,6,3,56,53.098,5520588,26,9,01:35.9,208.183,1 +1541,91,4,4,8,19,7,7,7,2,56,+1:07.877,5535367,7,10,01:35.9,208.105,1 +1542,91,13,15,12,11,8,8,8,1,55,,,7,13,01:36.6,206.635,11 +1543,91,43,7,16,10,9,9,9,0,55,,,22,12,01:36.5,206.691,11 +1544,91,32,19,15,13,10,10,10,0,55,,,12,16,01:37.0,205.653,11 +1545,91,21,15,11,12,11,11,11,0,55,,,54,14,01:36.7,206.411,11 +1546,91,44,7,17,14,12,12,12,0,55,,,23,11,01:36.0,207.968,11 +1547,91,45,17,19,18,13,13,13,0,54,,,41,18,01:39.5,200.496,12 +1548,91,46,18,20,16,14,14,14,0,53,,,11,19,01:39.9,199.725,13 +1549,91,11,16,10,20,15,15,15,0,52,,,13,8,01:35.7,208.559,14 +1550,91,47,18,21,17,16,16,16,0,52,,,12,20,01:40.1,199.302,14 +1551,91,8,1,6,5,,R,17,0,40,,,12,5,01:35.2,209.706,7 +1552,91,2,17,18,15,,R,18,0,34,,,15,17,01:37.4,204.805,7 +1553,91,23,3,4,7,,R,19,0,27,,,10,7,01:35.6,208.716,5 +1554,91,17,19,14,2,,R,20,0,23,,,9,15,01:36.9,205.885,20 +1555,92,30,6,1,1,1,1,1,10,57,28:34.9,5314875,7,1,01:30.3,216.074,1 +1556,92,22,6,2,2,2,2,2,8,57,1.367,5316242,29,4,01:30.9,214.591,1 +1557,92,18,16,9,6,3,3,3,6,57,26.687,5341562,24,5,01:31.0,214.393,1 +1558,92,15,4,7,7,4,4,4,5,57,32.214,5347089,24,8,01:31.4,213.312,1 +1559,92,11,16,10,5,5,5,5,4,57,52.46,5367335,55,7,01:31.1,214.061,1 +1560,92,4,4,8,16,6,6,6,3,57,53.156,5368031,39,2,01:30.7,215.116,1 +1561,92,23,3,4,4,7,7,7,2,57,58.155,5373030,56,3,01:30.8,214.815,1 +1562,92,17,19,14,14,8,8,8,1,56,,,19,10,01:32.3,211.333,11 +1563,92,44,7,17,8,9,9,9,0,56,,,22,13,01:32.4,211.049,11 +1564,92,43,7,16,9,10,10,10,0,56,,,23,11,01:32.3,211.237,11 +1565,92,21,15,11,11,11,11,11,0,56,,,40,12,01:32.3,211.214,11 +1566,92,13,15,12,13,12,12,12,0,56,,,44,15,01:32.7,210.391,11 +1567,92,31,3,3,3,13,13,13,0,56,,,28,6,01:31.0,214.353,11 +1568,92,32,19,15,12,14,14,14,0,56,,,38,14,01:32.5,210.748,11 +1569,92,2,17,18,18,15,15,15,0,56,,,56,16,01:33.3,209.051,11 +1570,92,45,17,19,15,16,16,16,0,55,,,9,18,01:34.0,207.388,12 +1571,92,46,18,20,17,17,17,17,0,52,,,40,20,01:35.1,204.995,15 +1572,92,14,1,5,10,,R,18,0,50,,,19,9,01:31.9,212.29,63 +1573,92,47,18,21,20,,R,19,0,44,,,24,19,01:34.6,206.241,5 +1574,92,8,1,6,19,,R,20,0,7,,,7,17,01:33.5,208.508,5 +1575,93,30,6,1,2,1,1,1,10,62,26:19.7,5179670,10,1,01:20.4,220.85,1 +1576,93,18,16,9,1,2,2,2,8,62,9.702,5189372,28,2,01:21.2,218.701,1 +1577,93,31,3,3,3,3,3,3,6,62,21.617,5201287,27,6,01:21.9,216.914,1 +1578,93,4,4,8,6,4,4,4,5,62,23.654,5203324,59,3,01:21.6,217.499,1 +1579,93,15,4,7,9,5,5,5,4,62,36.216,5215886,11,4,01:21.7,217.456,1 +1580,93,22,6,2,4,6,6,6,3,62,36.683,5216353,31,7,01:21.9,216.906,1 +1581,93,23,3,4,5,7,7,7,2,62,55.73,5235400,30,5,01:21.7,217.395,1 +1582,93,8,1,6,20,8,8,8,1,61,,,39,9,01:22.5,215.258,11 +1583,93,21,15,11,18,9,9,9,0,61,,,60,10,01:22.7,214.857,11 +1584,93,13,15,12,12,10,10,10,0,61,,,36,12,01:22.9,214.232,11 +1585,93,44,7,17,13,11,11,11,0,61,,,59,11,01:22.9,214.32,11 +1586,93,14,1,5,11,12,12,12,0,61,,,42,14,01:23.0,214.087,11 +1587,93,17,19,14,8,13,13,13,0,61,,,55,13,01:22.9,214.139,11 +1588,93,32,19,15,14,14,14,14,0,60,,,27,17,01:23.6,212.306,12 +1589,93,47,18,21,19,15,15,15,0,58,,,58,19,01:26.1,206.317,14 +1590,93,11,16,10,7,16,16,16,0,56,,,44,8,01:21.9,216.758,5 +1591,93,2,17,18,16,,R,17,0,48,,,44,16,01:23.4,212.983,30 +1592,93,43,7,16,10,,R,18,0,32,,,25,15,01:23.1,213.683,3 +1593,93,46,18,20,17,,R,19,0,22,,,11,20,01:26.9,204.46,23 +1594,93,45,17,19,15,,R,20,0,6,,,6,18,01:25.5,207.809,9 +1595,94,30,6,1,1,1,1,1,10,66,27:32.8,5252841,12,1,01:17.5,215.07,1 +1596,94,22,6,2,5,2,2,2,8,66,13.29,5266131,16,5,01:17.9,213.863,1 +1597,94,15,4,7,4,3,3,3,6,66,32.294,5285135,12,6,01:18.2,213.067,1 +1598,94,4,4,8,8,4,4,4,5,66,32.952,5285793,27,3,01:17.6,214.776,1 +1599,94,11,16,10,3,5,5,5,4,66,42.327,5295168,47,4,01:17.7,214.439,1 +1600,94,23,3,4,6,6,6,6,3,66,+1:13.804,5326645,27,8,01:18.5,212.063,1 +1601,94,21,15,11,12,7,7,7,2,66,+1:17.108,5329949,37,13,01:19.1,210.685,1 +1602,94,18,16,9,14,8,8,8,1,65,,,46,2,01:17.5,214.945,11 +1603,94,13,15,12,17,9,9,9,0,65,,,43,10,01:18.8,211.334,11 +1604,94,14,1,5,10,10,10,10,0,65,,,38,16,01:19.2,210.384,11 +1605,94,8,1,6,13,11,11,11,0,65,,,48,11,01:18.8,211.273,11 +1606,94,17,19,14,9,12,12,12,0,65,,,11,9,01:18.6,211.877,11 +1607,94,43,7,16,11,13,13,13,0,65,,,29,14,01:19.1,210.552,11 +1608,94,45,17,19,19,,R,14,0,51,,,27,18,01:19.9,208.486,38 +1609,94,31,3,3,2,,R,15,0,46,,,28,7,01:18.3,212.838,23 +1610,94,32,19,15,16,,R,16,0,43,,,18,15,01:19.1,210.472,37 +1611,94,44,7,17,7,,R,17,0,33,,,10,17,01:19.2,210.32,9 +1612,94,2,17,18,15,,R,18,0,33,,,25,12,01:19.0,210.928,9 +1613,94,46,18,20,18,,R,19,0,31,,,3,19,01:22.3,202.339,20 +1614,94,47,18,21,20,,R,20,0,17,,,8,20,01:23.4,199.75,20 +1615,95,15,4,7,1,1,1,1,10,77,45:46.6,6346601,22,2,01:14.9,160.598,1 +1616,95,18,16,9,2,2,2,2,8,77,0.497,6347098,40,3,01:15.2,159.851,1 +1617,95,22,6,2,6,3,3,3,6,77,+1:15.766,6422367,16,6,01:15.8,158.705,1 +1618,95,31,3,3,9,4,4,4,5,76,,,41,5,01:15.4,159.48,11 +1619,95,13,15,12,16,5,5,5,4,76,,,23,10,01:17.2,155.85,11 +1620,95,43,7,16,15,6,6,6,3,76,,,22,8,01:16.2,157.729,11 +1621,95,2,17,18,17,7,7,7,2,75,,,35,13,01:18.3,153.637,12 +1622,95,44,7,17,13,8,8,8,1,74,,,57,9,01:16.5,157.188,13 +1623,95,47,18,21,19,9,9,9,0,71,,,2,19,01:21.9,146.838,16 +1624,95,23,3,4,12,10,10,10,0,69,,,18,12,01:17.6,154.972,6 +1625,95,30,6,1,4,,R,11,0,45,,,23,1,01:14.4,161.528,4 +1626,95,4,4,8,3,,R,12,0,41,,,23,4,01:15.2,159.838,3 +1627,95,8,1,6,5,,R,13,0,27,,,15,7,01:16.2,157.789,63 +1628,95,46,18,20,20,,R,14,0,15,,,10,18,01:21.6,147.367,6 +1629,95,45,17,19,18,,R,15,0,12,,,10,14,01:19.4,151.407,7 +1630,95,17,19,14,11,,R,16,0,11,,,11,11,01:17.5,155.216,6 +1631,95,11,16,10,7,,R,17,0,2,,,2,17,01:21.4,147.773,5 +1632,95,14,1,5,8,,R,18,0,2,,,2,15,01:20.6,149.255,4 +1633,95,21,15,11,10,,R,19,0,2,,,2,16,01:20.8,148.804,4 +1634,95,32,19,15,14,,R,20,0,0,,,,,,,3 +1635,96,30,6,1,1,1,1,1,10,60,32:35.1,5555101,7,1,01:29.5,207.144,1 +1636,96,22,6,2,7,2,2,2,8,60,17.989,5573090,14,3,01:30.1,205.689,1 +1637,96,18,16,9,5,3,3,3,6,60,22.533,5577634,13,4,01:30.5,204.879,1 +1638,96,15,4,7,3,4,4,4,5,60,53.673,5608774,30,6,01:31.1,203.364,1 +1639,96,4,4,8,6,5,5,5,4,60,+1:00.987,5616088,29,5,01:31.1,203.511,1 +1640,96,21,15,11,19,6,6,6,3,60,+1:13.448,5628549,23,7,01:31.4,202.737,1 +1641,96,17,19,14,14,7,7,7,2,60,+1:16.206,5631307,37,10,01:31.9,201.678,1 +1642,96,31,3,3,8,8,8,8,1,59,,,43,8,01:31.4,202.712,11 +1643,96,13,15,12,16,9,9,9,0,59,,,37,14,01:32.7,199.859,11 +1644,96,2,17,18,13,10,10,10,0,59,,,55,11,01:32.1,201.178,11 +1645,96,44,7,17,10,11,11,11,0,59,,,12,13,01:32.5,200.341,11 +1646,96,32,19,15,12,12,12,12,0,59,,,14,16,01:32.8,199.698,11 +1647,96,45,17,19,15,13,13,13,0,58,,,27,15,01:32.8,199.767,12 +1648,96,46,18,20,20,14,14,14,0,57,,,7,18,01:35.6,193.949,13 +1649,96,47,18,21,17,15,15,15,0,57,,,46,17,01:34.7,195.77,13 +1650,96,11,16,10,2,,R,16,0,47,,,11,2,01:30.0,205.91,5 +1651,96,14,1,5,18,,R,17,0,25,,,14,12,01:32.3,200.708,5 +1652,96,8,1,6,4,,R,18,0,9,,,2,9,01:31.7,202.168,5 +1653,96,23,3,4,9,,R,19,0,0,,,,,,,4 +1654,96,43,7,16,11,,R,20,0,0,,,,,,,4 +1655,97,30,6,1,6,1,1,1,10,70,28:24.8,5304803,18,2,01:13.6,213.222,1 +1656,97,22,6,2,7,2,2,2,8,70,5.108,5309911,68,1,01:13.6,213.246,1 +1657,97,18,16,9,2,3,3,3,6,70,20.409,5325212,68,5,01:14.2,211.453,1 +1658,97,21,15,11,11,4,4,4,5,69,,,47,9,01:15.1,209.11,11 +1659,97,8,1,6,8,5,5,5,4,69,,,44,7,01:14.8,210.022,11 +1660,97,14,1,5,9,6,6,6,3,69,,,55,10,01:15.5,208.002,11 +1661,97,10,17,19,16,7,7,7,2,68,,,42,16,01:16.3,205.761,12 +1662,97,2,17,18,15,8,8,8,1,68,,,18,14,01:15.9,206.873,12 +1663,97,32,19,15,10,9,9,9,0,67,,,45,13,01:15.7,207.307,13 +1664,97,47,18,21,18,10,10,10,0,66,,,64,18,01:17.5,202.533,14 +1665,97,13,15,12,17,,R,11,0,62,,,25,11,01:15.6,207.776,3 +1666,97,11,16,10,20,,R,12,0,48,,,25,8,01:15.1,209.116,5 +1667,97,4,4,8,5,,R,13,0,44,,,41,4,01:14.2,211.644,30 +1668,97,46,18,20,19,,R,14,0,30,,,25,19,01:18.0,201.212,6 +1669,97,17,19,14,14,,R,15,0,6,,,6,17,01:16.7,204.584,22 +1670,97,15,4,7,3,,R,16,0,0,,,,,,,7 +1671,97,23,3,4,1,,D,17,0,70,,,70,3,01:14.0,212.042,2 +1672,97,31,3,3,4,,D,18,0,70,,,69,6,01:14.3,211.314,2 +1673,97,43,7,16,12,,D,19,0,69,,,39,12,01:15.7,207.523,2 +1674,97,44,7,17,13,,D,20,0,69,,,23,15,01:16.0,206.451,2 +1675,98,30,6,1,2,1,1,1,10,73,40:29.9,6029914,8,2,01:10.4,214.327,1 +1676,98,22,6,2,1,2,2,2,8,73,2.95,6032864,7,1,01:10.4,214.366,1 +1677,98,11,16,10,3,3,3,3,6,73,22.036,6051950,47,3,01:10.7,213.372,1 +1678,98,15,4,7,20,4,4,4,5,73,34.544,6064458,45,6,01:11.2,211.993,1 +1679,98,44,7,17,8,5,5,5,4,73,37.534,6067448,46,4,01:10.9,212.752,1 +1680,98,8,1,6,7,6,6,6,3,72,,,59,8,01:11.2,211.812,11 +1681,98,14,1,5,12,7,7,7,2,72,,,44,13,01:12.2,209.149,11 +1682,98,47,18,21,19,8,8,8,1,70,,,39,16,01:14.1,203.668,13 +1683,98,21,15,11,14,9,9,9,0,65,,,44,11,01:12.1,209.225,18 +1684,98,17,19,14,10,,R,10,0,60,,,46,12,01:12.1,209.193,5 +1685,98,31,3,3,5,,D,11,0,57,,,37,9,01:11.3,211.791,2 +1686,98,2,17,18,16,,R,12,0,40,,,37,15,01:13.1,206.46,5 +1687,98,18,16,9,4,,R,13,0,26,,,22,5,01:11.0,212.477,6 +1688,98,43,7,16,11,,R,14,0,17,,,8,14,01:12.9,207.091,6 +1689,98,23,3,4,6,,R,15,0,9,,,8,10,01:12.0,209.652,27 +1690,98,4,4,8,9,,R,16,0,8,,,8,7,01:11.2,211.847,27 +1691,98,32,19,15,13,,R,17,0,0,,,,,,,4 +1692,98,13,15,12,15,,R,18,0,0,,,,,,,4 +1693,98,45,17,19,17,,R,19,0,0,,,,,,,4 +1694,98,46,18,20,18,,R,20,0,0,,,,,,,4 +1695,99,30,6,1,2,1,1,1,10,70,30:18.1,5418133,32,1,01:15.4,210.669,1 +1696,99,4,4,8,1,2,2,2,8,70,8.329,5426462,34,2,01:15.6,210.183,1 +1697,99,22,6,2,10,3,3,3,6,70,31.622,5449755,50,6,01:16.0,208.845,1 +1698,99,15,4,7,5,4,4,4,5,70,32.082,5450215,15,9,01:16.2,208.262,1 +1699,99,18,16,9,4,5,5,5,4,70,32.482,5450615,50,5,01:16.0,209.021,1 +1700,99,14,1,5,3,6,6,6,3,70,35.52,5453653,11,10,01:16.3,208.112,1 +1701,99,8,1,6,9,7,7,7,2,70,36.23,5454363,30,3,01:15.8,209.518,1 +1702,99,31,3,3,6,8,8,8,1,70,43.419,5461552,48,8,01:16.1,208.557,1 +1703,99,17,19,14,12,9,9,9,0,70,52.394,5470527,53,4,01:16.0,209.063,1 +1704,99,48,3,4,8,10,10,10,0,70,58.166,5476299,56,7,01:16.1,208.749,1 +1705,99,32,19,15,13,11,11,11,0,69,,,37,13,01:16.9,206.625,11 +1706,99,21,15,11,15,12,12,12,0,69,,,22,11,01:16.7,207.037,11 +1707,99,13,15,12,16,13,13,13,0,69,,,23,16,01:17.4,205.194,11 +1708,99,43,7,16,11,14,14,14,0,69,,,49,14,01:16.9,206.397,11 +1709,99,44,7,17,14,15,15,15,0,68,,,53,15,01:17.1,206.043,12 +1710,99,2,17,18,17,16,16,16,0,68,,,26,18,01:18.6,201.961,12 +1711,99,45,17,19,18,17,17,17,0,67,,,15,17,01:17.6,204.525,13 +1712,99,46,18,20,19,18,18,18,0,66,,,52,19,01:18.9,201.18,14 +1713,99,47,18,21,20,,R,19,0,31,,,13,20,01:19.7,199.344,20 +1714,99,11,16,10,7,,R,20,0,15,,,14,12,01:16.8,206.741,5 +1715,100,30,6,1,4,1,1,1,10,60,24:42.7,5082700,14,1,01:18.7,235.049,1 +1716,100,8,1,6,1,2,2,2,8,60,2.13,5084830,10,4,01:19.6,232.641,1 +1717,100,22,6,2,2,3,3,3,6,60,3.114,5085814,8,2,01:19.3,233.398,1 +1718,100,18,16,9,3,4,4,4,5,60,10.683,5093383,10,3,01:19.5,232.835,1 +1719,100,31,3,3,7,5,5,5,4,60,12.173,5094873,26,6,01:20.0,231.437,1 +1720,100,21,15,11,20,6,6,6,3,60,12.888,5095588,22,5,01:19.8,231.887,1 +1721,100,14,1,5,6,7,7,7,2,60,19.668,5102368,25,10,01:20.5,229.773,1 +1722,100,17,19,14,9,8,8,8,1,60,23.701,5106401,11,12,01:20.8,229.145,1 +1723,100,13,15,12,10,9,9,9,0,60,24.023,5106723,58,9,01:20.5,229.953,1 +1724,100,4,4,8,16,10,10,10,0,60,24.835,5107535,39,8,01:20.4,230.073,1 +1725,100,11,16,10,8,11,11,11,0,60,33.736,5116436,12,14,01:20.8,229.082,1 +1726,100,48,3,4,11,12,12,12,0,60,34.303,5117003,58,7,01:20.4,230.096,1 +1727,100,43,7,16,12,13,13,13,0,59,,,35,13,01:20.8,229.145,11 +1728,100,32,19,15,13,14,14,14,0,59,,,10,15,01:21.0,228.613,11 +1729,100,2,17,18,15,15,15,15,0,59,,,17,16,01:21.7,226.475,11 +1730,100,46,18,20,18,16,16,16,0,56,,,33,19,01:24.3,219.554,14 +1731,100,45,17,19,14,,R,17,0,47,,,13,17,01:22.1,225.301,20 +1732,100,15,4,7,5,,R,18,0,39,,,34,11,01:20.7,229.466,3 +1733,100,47,18,21,19,,R,19,0,29,,,12,20,01:24.3,219.5,5 +1734,100,44,7,17,17,,R,20,0,16,,,4,18,01:23.1,222.631,3 +1735,101,30,6,1,1,1,1,1,10,66,23:54.8,5034848,5,2,01:13.8,223.173,1 +1736,101,18,16,9,13,2,2,2,8,66,8.388,5043236,11,3,01:14.1,222.167,1 +1737,101,4,4,8,5,3,3,3,6,66,16.351,5051199,8,5,01:14.3,221.724,1 +1738,101,14,1,5,4,4,4,4,5,66,19.231,5054079,8,8,01:14.6,220.853,1 +1739,101,31,3,3,2,5,5,5,4,66,23.055,5057903,10,7,01:14.4,221.185,1 +1740,101,17,19,14,11,6,6,6,3,66,41.108,5075956,65,11,01:14.9,219.895,1 +1741,101,42,3,4,10,7,7,7,2,66,41.956,5076804,65,10,01:14.6,220.77,1 +1742,101,11,16,10,8,8,8,8,1,66,46.842,5081690,29,9,01:14.6,220.773,1 +1743,101,21,15,11,14,9,9,9,0,66,+1:07.102,5101950,39,15,01:15.6,217.708,1 +1744,101,32,19,15,12,10,10,10,0,66,+1:08.578,5103426,33,13,01:15.0,219.42,1 +1745,101,15,4,7,6,11,11,11,0,66,+1:10.258,5105106,9,6,01:14.4,221.364,1 +1746,101,22,6,2,7,12,12,12,0,66,+1:13.252,5108100,59,12,01:15.0,219.66,1 +1747,101,13,15,12,16,13,13,13,0,65,,,61,17,01:16.2,215.958,11 +1748,101,44,7,17,9,14,14,14,0,65,,,59,4,01:14.2,221.778,11 +1749,101,45,17,19,17,15,15,15,0,63,,,63,16,01:16.1,216.497,13 +1750,101,47,18,21,20,16,16,16,0,62,,,18,20,01:18.8,209.07,14 +1751,101,46,18,20,19,17,17,17,0,62,,,52,19,01:18.4,210.105,14 +1752,101,2,17,18,18,,R,18,0,42,,,20,18,01:16.9,214.119,64 +1753,101,43,7,16,15,,R,19,0,38,,,20,14,01:15.1,219.128,29 +1754,101,8,1,6,3,,R,20,0,13,,,10,1,01:13.8,223.182,65 +1755,102,30,6,1,1,1,1,1,10,70,35:26.1,5726131,29,1,01:19.1,199.461,1 +1756,102,22,6,2,2,2,2,2,8,70,4.696,5730827,29,2,01:19.2,199.103,1 +1757,102,4,4,8,5,3,3,3,6,70,44.599,5770730,49,3,01:20.3,196.469,1 +1758,102,31,3,3,7,4,4,4,5,70,+1:02.613,5788744,49,7,01:20.7,195.398,1 +1759,102,18,16,9,4,5,5,5,4,70,+1:07.439,5793570,47,4,01:20.4,196.103,1 +1760,102,11,16,10,3,6,6,6,3,69,,,10,10,01:21.0,194.639,11 +1761,102,42,3,4,6,7,7,7,2,69,,,48,5,01:20.5,195.918,11 +1762,102,21,15,11,8,8,8,8,1,69,,,53,9,01:21.0,194.658,11 +1763,102,14,1,5,12,9,9,9,0,69,,,67,11,01:21.1,194.389,11 +1764,102,17,19,14,11,10,10,10,0,69,,,45,8,01:20.8,195.132,11 +1765,102,44,7,17,13,11,11,11,0,69,,,50,12,01:21.3,193.968,11 +1766,102,2,17,18,16,12,12,12,0,68,,,68,13,01:21.5,193.473,12 +1767,102,32,19,15,14,13,13,13,0,68,,,45,17,01:22.5,191.101,12 +1768,102,46,18,20,19,14,14,14,0,66,,,65,19,01:24.6,186.423,14 +1769,102,47,18,21,18,15,15,15,0,65,,,63,20,01:24.9,185.865,15 +1770,102,45,17,19,17,,R,16,0,48,,,43,18,01:22.9,190.186,6 +1771,102,15,4,7,9,,R,17,0,41,,,10,6,01:20.7,195.422,5 +1772,102,41,7,16,15,,R,18,0,31,,,13,16,01:22.5,191.112,40 +1773,102,13,15,12,20,,R,19,0,21,,,14,15,01:21.9,192.674,23 +1774,102,8,1,6,10,,R,20,0,13,,,6,14,01:21.7,193.094,10 +1775,103,8,1,6,10,1,1,1,10,44,32:35.3,5555274,42,1,01:45.1,238.931,1 +1776,103,30,6,1,2,2,2,2,8,44,3.132,5558406,28,2,01:45.5,238.036,1 +1777,103,22,6,2,6,3,3,3,6,44,4.371,5559645,43,3,01:45.7,237.669,1 +1778,103,13,15,12,8,4,4,4,5,44,12.504,5567778,29,13,01:47.6,233.345,1 +1779,103,21,15,11,5,5,5,5,4,44,14.104,5569378,11,9,01:46.8,235.238,1 +1780,103,32,19,15,13,6,6,6,3,44,14.614,5569888,11,11,01:47.5,233.595,1 +1781,103,14,1,5,4,7,7,7,2,44,17.97,5573244,11,7,01:46.6,235.633,1 +1782,103,44,7,17,9,8,8,8,1,44,18.693,5573967,29,14,01:47.8,233.04,1 +1783,103,15,4,7,1,9,9,9,0,44,22.115,5577389,9,5,01:45.9,237.148,1 +1784,103,41,7,16,20,10,10,10,0,41,,,26,12,01:47.6,233.449,5 +1785,103,2,17,18,16,11,11,11,0,40,,,40,15,01:50.5,227.332,14 +1786,103,31,3,3,11,,R,12,0,37,,,36,6,01:46.5,235.704,27 +1787,103,42,3,4,14,,R,13,0,31,,,26,8,01:46.7,235.278,6 +1788,103,18,16,9,12,,R,14,0,29,,,26,10,01:47.2,234.375,4 +1789,103,47,18,21,18,,R,15,0,28,,,25,16,01:51.0,226.185,4 +1790,103,4,4,8,3,,R,16,0,11,,,9,4,01:45.9,237.211,5 +1791,103,17,19,14,7,,R,17,0,0,,,,,,,4 +1792,103,11,16,10,15,,R,18,0,0,,,,,,,4 +1793,103,46,18,20,17,,R,19,0,0,,,,,,,4 +1794,103,45,17,19,19,,R,20,0,0,,,,,,,4 +1795,104,22,6,2,1,1,1,1,10,53,15:18.4,4518448,41,1,01:21.0,257.32,1 +1796,104,30,6,1,3,2,2,2,8,53,1.347,4519795,35,2,01:21.4,256.324,1 +1797,104,18,16,9,6,3,3,3,6,53,10.197,4528645,13,6,01:22.7,252.262,1 +1798,104,11,16,10,5,4,4,4,5,53,15.37,4533818,32,5,01:22.7,252.296,1 +1799,104,31,3,3,2,5,5,5,4,53,32.352,4550800,32,10,01:22.9,251.477,1 +1800,104,14,1,5,10,6,6,6,3,53,33.439,4551887,24,9,01:22.9,251.599,1 +1801,104,42,3,4,8,7,7,7,2,53,33.752,4552200,32,3,01:22.2,253.566,1 +1802,104,21,15,11,15,8,8,8,1,53,35.431,4553879,51,4,01:22.6,252.433,1 +1803,104,17,19,14,12,9,9,9,0,53,56.761,4575209,53,12,01:23.1,250.99,1 +1804,104,15,4,7,9,10,10,10,0,53,+1:06.316,4584764,52,7,01:22.9,251.702,1 +1805,104,41,7,16,11,11,11,11,0,53,+1:22.531,4600979,52,14,01:23.4,250.027,1 +1806,104,13,15,12,16,12,12,12,0,52,,,50,11,01:22.9,251.441,11 +1807,104,32,19,15,14,13,13,13,0,52,,,29,15,01:23.4,249.961,11 +1808,104,2,17,18,20,14,14,14,0,52,,,23,17,01:24.2,247.781,11 +1809,104,47,18,21,19,15,15,15,0,50,,,31,18,01:26.4,241.497,13 +1810,104,4,4,8,4,,R,16,0,40,,,31,8,01:22.9,251.623,20 +1811,104,45,17,19,17,,R,17,0,33,,,13,16,01:24.1,248.091,3 +1812,104,46,18,20,18,,R,18,0,29,,,24,19,01:26.4,241.456,66 +1813,104,8,1,6,7,,R,19,0,13,,,11,13,01:23.4,250.162,5 +1814,104,44,7,17,13,,R,20,0,0,,,,,,,4 +1815,105,22,6,2,1,1,1,1,10,56,29:12.4,5352420,28,2,01:32.5,212.25,1 +1816,105,18,16,9,3,2,2,2,8,56,1.035,5353455,33,4,01:32.9,211.154,1 +1817,105,8,1,6,2,3,3,3,6,56,1.469,5353889,53,3,01:32.9,211.288,1 +1818,105,4,4,8,6,4,4,4,5,56,32.51,5384930,55,10,01:33.6,209.597,1 +1819,105,31,3,3,10,5,5,5,4,56,45.193,5397613,34,5,01:33.1,210.761,1 +1820,105,11,16,10,18,6,6,6,3,56,54.791,5407211,36,8,01:33.5,209.804,1 +1821,105,21,15,11,7,7,7,7,2,56,+1:05.454,5417874,25,7,01:33.5,209.833,1 +1822,105,13,15,12,4,8,8,8,1,56,+1:20.080,5432500,43,6,01:33.5,209.916,1 +1823,105,14,1,5,9,9,9,9,0,56,+1:20.619,5433039,26,11,01:33.7,209.369,1 +1824,105,17,19,14,11,10,10,10,0,55,,,32,15,01:34.9,206.797,11 +1825,105,35,4,7,12,11,11,11,0,55,,,55,17,01:35.0,206.672,11 +1826,105,30,6,1,20,12,12,12,0,55,,,55,1,01:32.2,212.749,11 +1827,105,2,17,18,14,13,13,13,0,55,,,55,14,01:34.7,207.181,11 +1828,105,44,7,17,8,14,14,14,0,55,,,51,13,01:34.6,207.431,11 +1829,105,10,17,19,16,15,15,15,0,55,,,54,16,01:34.9,206.714,11 +1830,105,47,18,21,19,16,16,16,0,53,,,51,20,01:37.6,201.106,13 +1831,105,46,18,20,17,,R,17,0,38,,,23,19,01:37.4,201.521,36 +1832,105,23,3,4,5,,R,18,0,37,,,31,9,01:33.5,209.774,4 +1833,105,41,7,16,13,,R,19,0,35,,,24,12,01:34.3,208.165,7 +1834,105,32,19,15,15,,R,20,0,11,,,10,18,01:36.9,202.539,4 +1835,106,30,6,1,1,1,1,1,10,53,24:27.0,5066985,41,2,01:32.8,225.281,1 +1836,106,23,3,4,2,2,2,2,8,53,14.098,5081083,23,3,01:33.5,223.663,1 +1837,106,18,16,9,5,3,3,3,6,53,19.662,5086647,33,7,01:33.8,222.824,1 +1838,106,11,16,10,4,4,4,4,5,53,31.781,5098766,28,5,01:33.7,223.007,1 +1839,106,4,4,8,11,5,5,5,4,53,37.767,5104752,29,12,01:34.3,221.737,1 +1840,106,8,1,6,12,6,6,6,3,53,39.362,5106347,35,10,01:33.9,222.585,1 +1841,106,31,3,3,13,7,7,7,2,53,55.347,5122332,30,6,01:33.8,222.919,1 +1842,106,21,15,11,7,8,8,8,1,53,56.276,5123261,44,8,01:33.9,222.751,1 +1843,106,13,15,12,19,9,9,9,0,53,+1:29.656,5156641,40,4,01:33.6,223.312,1 +1844,106,35,4,7,9,10,10,10,0,52,,,28,16,01:35.3,219.385,11 +1845,106,15,7,16,6,11,11,11,0,52,,,52,14,01:34.6,220.924,11 +1846,106,32,19,15,14,12,12,12,0,52,,,32,15,01:35.3,219.451,11 +1847,106,2,17,18,16,13,13,13,0,52,,,25,17,01:35.5,218.847,11 +1848,106,44,7,17,10,14,14,14,0,51,,,11,13,01:34.4,221.364,12 +1849,106,10,17,19,17,15,15,15,0,51,,,14,18,01:36.7,216.259,12 +1850,106,46,18,20,18,16,16,16,0,50,,,27,19,01:39.4,210.415,13 +1851,106,47,18,21,20,,R,17,0,41,,,26,20,01:39.4,210.241,20 +1852,106,14,1,5,8,,R,18,0,38,,,14,9,01:33.9,222.592,4 +1853,106,22,6,2,15,,R,19,0,38,,,30,1,01:32.7,225.441,4 +1854,106,17,19,14,3,,R,20,0,20,,,13,11,01:34.2,221.855,25 +1855,107,31,3,3,2,1,1,1,10,71,28:01.5,5281451,49,1,01:11.5,217.038,1 +1856,107,8,1,6,3,2,2,2,8,71,1.022,5282473,52,2,01:11.6,216.768,1 +1857,107,22,6,2,1,3,3,3,6,71,24.099,5305550,22,3,01:11.7,216.435,1 +1858,107,4,4,8,8,4,4,4,5,71,48.508,5329959,42,9,01:12.1,215.097,1 +1859,107,23,3,4,7,5,5,5,4,71,49.74,5331191,23,5,01:11.8,216.158,1 +1860,107,11,16,10,6,6,6,6,3,71,50.248,5331699,51,7,01:11.9,215.626,1 +1861,107,30,6,1,18,7,7,7,2,71,50.626,5332077,49,4,01:11.8,216.161,1 +1862,107,13,15,12,4,8,8,8,1,71,+1:02.310,5343761,68,8,01:12.1,215.252,1 +1863,107,21,15,11,10,9,9,9,0,71,+1:03.842,5345293,69,6,01:11.9,215.818,1 +1864,107,35,4,7,13,10,10,10,0,70,,,68,10,01:12.2,214.823,11 +1865,107,14,1,5,12,11,11,11,0,70,,,40,12,01:12.5,213.899,11 +1866,107,15,7,16,9,12,12,12,0,70,,,65,11,01:12.4,214.156,11 +1867,107,41,7,17,14,13,13,13,0,70,,,69,14,01:13.0,212.612,11 +1868,107,32,19,15,15,14,14,14,0,69,,,49,13,01:12.9,212.816,12 +1869,107,10,17,19,17,15,15,15,0,69,,,68,16,01:13.9,209.896,12 +1870,107,47,18,21,19,16,16,16,0,67,,,45,17,01:14.7,207.543,14 +1871,107,46,18,20,20,17,17,17,0,67,,,50,18,01:14.8,207.507,14 +1872,107,17,19,14,11,,R,18,0,23,,,20,15,01:13.2,211.926,4 +1873,107,2,17,18,16,,R,19,0,15,,,11,19,01:15.9,204.5,8 +1874,107,18,16,9,5,,R,20,0,3,,,2,20,01:24.4,183.709,5 +1875,108,14,1,5,11,1,1,1,10,58,34:42.1,5682100,,,,,1 +1876,108,31,3,3,3,2,2,2,8,58,8.675,5690775,,,,,1 +1877,108,8,1,6,15,3,3,3,6,58,9.192,5691292,,,,,1 +1878,108,30,6,1,1,4,4,4,5,58,9.482,5691582,,,,,1 +1879,108,15,4,7,12,5,5,5,4,58,38.801,5720901,,,,,1 +1880,108,49,15,10,4,6,6,6,3,58,43.928,5726028,,,,,1 +1881,108,4,4,8,10,7,7,7,2,58,45.074,5727174,,,,,1 +1882,108,23,3,4,9,8,8,8,1,58,45.745,5727845,,,,,1 +1883,108,35,16,16,6,9,9,9,0,58,+1:05.536,5747636,,,,,1 +1884,108,18,16,17,8,10,10,10,0,58,+1:05.974,5748074,,,,,1 +1885,108,50,18,19,20,11,11,11,0,57,,,,,,,11 +1886,108,21,17,11,13,,R,12,0,52,,,,,,,6 +1887,108,42,19,15,18,,R,13,0,52,,,,,,,22 +1888,108,44,7,20,5,,R,14,0,31,,,,,,,32 +1889,108,2,15,9,7,,R,15,0,20,,,,,,,22 +1890,108,51,18,18,19,,R,16,0,16,,,,,,,21 +1891,108,17,19,14,14,,R,17,0,15,,,,,,,22 +1892,108,43,7,21,16,,R,18,0,7,,,,,,,20 +1893,108,52,17,12,17,,R,19,0,6,,,,,,,3 +1894,108,22,6,2,2,,R,20,0,5,,,,,,,3 +1895,109,8,1,6,7,1,1,1,10,56,32:22.2,5542195,,,,,1 +1896,109,22,6,2,5,2,2,2,8,56,39.286,5581481,,,,,1 +1897,109,4,4,8,1,3,3,3,6,56,+1:04.007,5606202,,,,,1 +1898,109,23,3,4,17,4,4,4,5,56,+1:28.026,5630221,,,,,1 +1899,109,15,4,7,2,5,5,5,4,55,,,,,,,11 +1900,109,30,6,1,3,6,6,6,3,55,,,,,,,11 +1901,109,18,16,17,9,7,7,7,2,55,,,,,,,11 +1902,109,2,15,9,6,8,8,8,1,55,,,,,,,11 +1903,109,49,15,10,13,9,9,9,0,55,,,,,,,11 +1904,109,52,17,12,20,10,10,10,0,55,,,,,,,11 +1905,109,43,7,21,11,11,11,11,0,55,,,,,,,11 +1906,109,31,3,3,8,12,12,12,0,53,,,,,,,13 +1907,109,50,18,19,18,13,13,13,0,52,,,,,,,14 +1908,109,42,19,15,15,,R,14,0,42,,,,,,,20 +1909,109,51,18,18,19,,R,15,0,41,,,,,,,26 +1910,109,17,19,14,16,,R,16,0,35,,,,,,,5 +1911,109,44,7,20,10,,R,17,0,12,,,,,,,32 +1912,109,14,1,5,4,,R,18,0,2,,,,,,,10 +1913,109,21,17,11,14,,R,19,0,0,,,,,,,10 +1914,109,35,16,16,12,,R,20,0,0,,,,,,,10 +1915,110,21,17,11,8,1,1,1,10,54,31:18.2,5478200,,,,,1 +1916,110,8,1,6,4,2,2,2,8,54,0.945,5479145,,,,,1 +1917,110,4,4,8,10,3,3,3,6,54,6.348,5484548,,,,,1 +1918,110,14,1,5,2,4,4,4,5,54,8.096,5486296,,,,,1 +1919,110,49,15,10,14,5,5,5,4,54,8.642,5486842,,,,,1 +1920,110,35,16,16,13,6,6,6,3,54,16.054,5494254,,,,,1 +1921,110,23,3,4,6,7,7,7,2,54,38.526,5516726,,,,,1 +1922,110,15,4,7,5,8,8,8,1,54,45.927,5524127,,,,,1 +1923,110,17,19,14,3,9,9,9,0,53,,,,,,,3 +1924,110,43,7,21,18,10,10,10,0,53,,,,,,,11 +1925,110,22,6,2,1,,R,11,0,47,,,,,,,69 +1926,110,18,16,17,11,,R,12,0,33,,,,,,,3 +1927,110,50,18,19,19,,R,13,0,31,,,,,,,20 +1928,110,30,6,1,7,,R,14,0,27,,,,,,,3 +1929,110,31,3,3,9,,R,15,0,25,,,,,,,3 +1930,110,42,19,15,17,,R,16,0,25,,,,,,,3 +1931,110,44,7,20,15,,R,17,0,18,,,,,,,4 +1932,110,52,17,12,16,,R,18,0,18,,,,,,,22 +1933,110,51,18,18,20,,R,19,0,16,,,,,,,20 +1934,110,2,15,9,12,,R,20,0,8,,,,,,,5 +1935,111,30,6,1,1,1,1,1,10,62,28:12.1,5292058,,,,,1 +1936,111,8,1,6,6,2,2,2,8,62,1.882,5293940,,,,,1 +1937,111,22,6,2,3,3,3,3,6,62,2.291,5294349,,,,,1 +1938,111,23,3,4,2,4,4,4,5,62,8.803,5300861,,,,,1 +1939,111,14,1,5,12,5,5,5,4,62,9.411,5301469,,,,,1 +1940,111,4,4,8,8,6,6,6,3,62,43.689,5335747,,,,,1 +1941,111,31,3,3,4,7,7,7,2,62,45.271,5337329,,,,,1 +1942,111,18,16,17,9,8,8,8,1,61,,,,,,,11 +1943,111,44,7,20,10,9,9,9,0,61,,,,,,,11 +1944,111,2,15,9,11,10,10,10,0,61,,,,,,,11 +1945,111,49,15,10,14,11,11,11,0,61,,,,,,,11 +1946,111,43,7,21,13,12,12,12,0,61,,,,,,,11 +1947,111,15,4,7,16,13,13,13,0,61,,,,,,,11 +1948,111,42,19,15,15,14,14,14,0,60,,,,,,,12 +1949,111,21,17,11,17,15,15,15,0,57,,,,,,,15 +1950,111,17,19,14,5,,R,16,0,54,,,,,,,30 +1951,111,52,17,12,19,,R,17,0,51,,,,,,,70 +1952,111,50,18,19,20,,R,18,0,38,,,,,,,10 +1953,111,51,18,18,18,,R,19,0,23,,,,,,,71 +1954,111,35,16,16,7,,R,20,0,19,,,,,,,5 +1955,112,30,6,1,1,1,1,1,10,65,33:46.9,5626933,,,,,1 +1956,112,4,4,8,3,2,2,2,8,65,5.7,5632633,,,,,1 +1957,112,22,6,2,2,3,3,3,6,65,18,5644933,,,,,1 +1958,112,31,3,3,9,4,4,4,5,65,+1:02.0,5688933,,,,,1 +1959,112,23,3,4,7,5,5,5,4,64,,,,,,,11 +1960,112,43,7,21,13,6,6,6,3,64,,,,,,,11 +1961,112,17,19,14,12,7,7,7,2,64,,,,,,,11 +1962,112,52,17,12,15,8,8,8,1,63,,,,,,,12 +1963,112,18,16,17,5,9,9,9,0,63,,,,,,,12 +1964,112,2,15,9,14,10,10,10,0,63,,,,,,,12 +1965,112,51,18,18,18,11,11,11,0,63,,,,,,,12 +1966,112,50,18,19,19,12,12,12,0,62,,,,,,,13 +1967,112,21,17,11,17,,R,13,0,43,,,,,,,5 +1968,112,44,7,20,6,,R,14,0,41,,,,,,,6 +1969,112,49,15,10,10,,R,15,0,38,,,,,,,22 +1970,112,14,1,5,8,,R,16,0,17,,,,,,,4 +1971,112,35,16,16,11,,R,17,0,12,,,,,,,10 +1972,112,15,4,7,4,,R,18,0,0,,,,,,,4 +1973,112,42,19,15,16,,R,19,0,0,,,,,,,72 +1974,112,8,1,6,20,,R,20,0,0,,,,,,,4 +1975,113,30,6,1,1,1,1,1,10,69,24:04.9,5044888,,,,,1 +1976,113,8,1,6,2,2,2,2,8,69,3.362,5048250,,,,,1 +1977,113,22,6,2,5,3,3,3,6,69,3.951,5048839,,,,,1 +1978,113,18,16,17,7,4,4,4,5,69,42.243,5087131,,,,,1 +1979,113,14,1,5,14,5,5,5,4,69,59.74,5104628,,,,,1 +1980,113,23,3,4,10,6,6,6,3,68,,,,,,,11 +1981,113,17,19,14,17,7,7,7,2,68,,,,,,,11 +1982,113,15,4,7,6,8,8,8,1,68,,,,,,,11 +1983,113,42,19,15,8,9,9,9,0,68,,,,,,,11 +1984,113,43,7,21,13,10,10,10,0,68,,,,,,,11 +1985,113,52,17,12,16,11,11,11,0,68,,,,,,,11 +1986,113,35,16,16,12,12,12,12,0,68,,,,,,,11 +1987,113,51,18,18,18,13,13,13,0,67,,,,,,,12 +1988,113,21,17,11,9,,R,14,0,60,,,,,,,69 +1989,113,2,15,9,4,,R,15,0,46,,,,,,,5 +1990,113,4,4,8,19,,R,16,0,44,,,,,,,5 +1991,113,31,3,3,3,,R,17,0,32,,,,,,,5 +1992,113,44,7,20,11,,R,18,0,6,,,,,,,22 +1993,113,50,18,19,20,,R,19,0,0,,,,,,,8 +1994,113,49,15,10,15,,W,20,0,0,,,,,,,8 +1995,114,31,3,3,3,1,1,1,10,78,42:19.0,6139010,,,,,1 +1996,114,8,1,6,2,2,2,2,8,78,0.602,6139612,,,,,1 +1997,114,30,6,1,5,3,3,3,6,78,1.72,6140730,,,,,1 +1998,114,23,3,4,1,4,4,4,5,78,28.518,6167528,,,,,1 +1999,114,4,4,8,8,5,5,5,4,78,36.251,6175261,,,,,1 +2000,114,15,4,7,4,6,6,6,3,78,40.972,6179982,,,,,1 +2001,114,14,1,5,6,7,7,7,2,78,41.227,6180237,,,,,1 +2002,114,22,6,2,7,8,8,8,1,78,53.266,6192276,,,,,1 +2003,114,43,7,21,10,9,9,9,0,77,,,,,,,11 +2004,114,21,17,11,12,10,10,10,0,77,,,,,,,11 +2005,114,2,15,9,14,11,11,11,0,76,,,,,,,12 +2006,114,52,17,12,16,12,12,12,0,76,,,,,,,12 +2007,114,44,7,20,17,13,13,13,0,74,,,,,,,14 +2008,114,35,16,16,11,,R,14,0,63,,,,,,,5 +2009,114,51,18,18,19,,R,15,0,29,,,,,,,69 +2010,114,50,18,19,18,,R,16,0,28,,,,,,,69 +2011,114,17,19,14,9,,R,17,0,16,,,,,,,9 +2012,114,42,19,15,13,,R,18,0,10,,,,,,,10 +2013,114,49,15,10,15,,R,19,0,0,,,,,,,3 +2014,114,18,16,17,20,,W,20,0,0,,,,,,,73 +2015,115,30,6,1,3,1,1,1,10,70,31:13.6,5473591,,,,,1 +2016,115,23,3,4,1,2,2,2,8,70,0.784,5474375,,,,,1 +2017,115,31,3,3,2,3,3,3,6,70,1.355,5474946,,,,,1 +2018,115,4,4,8,4,4,4,4,5,70,4.481,5478072,,,,,1 +2019,115,22,6,2,5,5,5,5,4,70,+1:04.261,5537852,,,,,1 +2020,115,8,1,6,20,6,6,6,3,70,+1:10.502,5544093,,,,,1 +2021,115,17,19,14,6,7,7,7,2,69,,,,,,,11 +2022,115,44,7,20,7,8,8,8,1,69,,,,,,,11 +2023,115,50,18,19,15,9,9,9,0,68,,,,,,,12 +2024,115,42,19,15,13,10,10,10,0,64,,,,,,,14 +2025,115,43,7,21,9,11,11,11,0,64,,,,,,,16 +2026,115,51,18,18,18,,R,12,0,60,,,,,,,6 +2027,115,18,16,17,17,,R,13,0,51,,,,,,,6 +2028,115,14,1,5,11,,R,14,0,47,,,,,,,6 +2029,115,2,15,9,12,,R,15,0,47,,,,,,,5 +2030,115,15,4,7,8,,R,16,0,22,,,,,,,3 +2031,115,21,17,11,16,,R,17,0,20,,,,,,,6 +2032,115,52,17,12,19,,R,18,0,20,,,,,,,5 +2033,115,35,16,16,14,,R,19,0,14,,,,,,,23 +2034,115,49,15,10,10,,R,20,0,6,,,,,,,40 +2035,116,23,3,4,3,1,1,1,10,60,34:43.6,5683622,,,,,1 +2036,116,31,3,3,4,2,2,2,8,60,16.821,5700443,,,,,1 +2037,116,22,6,2,5,3,3,3,6,60,39.673,5723295,,,,,1 +2038,116,4,4,8,8,4,4,4,5,60,+1:05.731,5749353,,,,,1 +2039,116,30,6,1,2,5,5,5,4,60,+1:06.162,5749784,,,,,1 +2040,116,17,19,14,11,6,6,6,3,59,,,,,,,11 +2041,116,18,16,17,12,7,7,7,2,59,,,,,,,11 +2042,116,2,15,9,20,8,8,8,1,59,,,,,,,11 +2043,116,49,15,10,15,9,9,9,0,59,,,,,,,11 +2044,116,42,19,15,16,10,10,10,0,59,,,,,,,11 +2045,116,52,17,12,14,11,11,11,0,58,,,,,,,12 +2046,116,21,17,11,13,12,12,12,0,58,,,,,,,12 +2047,116,51,18,18,19,13,13,13,0,58,,,,,,,12 +2048,116,50,18,19,18,14,14,14,0,57,,,,,,,13 +2049,116,14,1,5,9,15,15,15,0,56,,,,,,,14 +2050,116,43,7,21,10,,R,16,0,53,,,,,,,5 +2051,116,35,16,16,17,,R,17,0,51,,,,,,,6 +2052,116,15,4,7,6,,R,18,0,37,,,,,,,32 +2053,116,44,7,20,7,,R,19,0,37,,,,,,,20 +2054,116,8,1,6,1,,R,20,0,25,,,,,,,5 +2055,117,23,3,4,1,1,1,1,10,70,30:49.2,5449213,,,,,1 +2056,117,31,3,3,2,2,2,2,8,70,13.813,5463026,,,,,1 +2057,117,30,6,1,3,3,3,3,6,70,19.568,5468781,,,,,1 +2058,117,8,1,6,4,4,4,4,5,70,38.047,5487260,,,,,1 +2059,117,14,1,5,5,5,5,5,4,70,40.289,5489502,,,,,1 +2060,117,17,19,14,9,6,6,6,3,70,+1:06.380,5515593,,,,,1 +2061,117,22,6,2,8,7,7,7,2,69,,,,,,,11 +2062,117,44,7,20,10,8,8,8,1,69,,,,,,,11 +2063,117,35,16,16,12,9,9,9,0,69,,,,,,,11 +2064,117,42,19,15,11,10,10,10,0,69,,,,,,,11 +2065,117,43,7,21,13,11,11,11,0,69,,,,,,,11 +2066,117,49,15,10,16,12,12,12,0,68,,,,,,,12 +2067,117,2,15,9,15,13,13,13,0,68,,,,,,,12 +2068,117,51,18,18,20,14,14,14,0,67,,,,,,,13 +2069,117,52,17,12,18,15,15,15,0,67,,,,,,,13 +2070,117,50,18,19,19,16,16,16,0,66,,,,,,,14 +2071,117,15,4,7,6,,R,17,0,45,,,,,,,5 +2072,117,4,4,8,7,,R,18,0,43,,,,,,,5 +2073,117,21,17,11,17,,R,19,0,42,,,,,,,5 +2074,117,18,16,17,14,,R,20,0,23,,,,,,,74 +2075,118,22,6,2,1,1,1,1,10,60,28:37.6,5317554,,,,,1 +2076,118,31,3,3,7,2,2,2,8,60,5.462,5323016,,,,,1 +2077,118,8,1,6,3,3,3,3,6,60,10.656,5328210,,,,,1 +2078,118,30,6,1,5,4,4,4,5,60,25.648,5343202,,,,,1 +2079,118,14,1,5,12,5,5,5,4,60,36.827,5354381,,,,,1 +2080,118,15,4,7,2,6,6,6,3,60,43.067,5360621,,,,,1 +2081,118,43,7,21,6,7,7,7,2,60,45.085,5362639,,,,,1 +2082,118,18,16,17,20,8,8,8,1,60,45.478,5363032,,,,,1 +2083,118,23,3,4,4,9,9,9,0,60,58.032,5375586,,,,,1 +2084,118,35,16,16,9,10,10,10,0,60,+1:03.569,5381123,,,,,1 +2085,118,44,7,20,13,11,11,11,0,60,+1:05.207,5382761,,,,,1 +2086,118,49,15,10,14,12,12,12,0,60,+1:05.564,5383118,,,,,1 +2087,118,52,17,12,17,13,13,13,0,59,,,,,,,11 +2088,118,17,19,14,11,14,14,14,0,59,,,,,,,11 +2089,118,50,18,19,19,15,15,15,0,58,,,,,,,12 +2090,118,51,18,18,18,16,16,16,0,58,,,,,,,12 +2091,118,2,15,9,16,17,17,17,0,58,,,,,,,12 +2092,118,4,4,8,8,,R,18,0,52,,,,,,,6 +2093,118,21,17,11,15,,R,19,0,44,,,,,,,22 +2094,118,42,19,15,10,,R,20,0,32,,,,,,,5 +2095,119,31,3,3,1,1,1,1,10,67,28:48.8,5328769,,,,,1 +2096,119,14,1,5,10,2,2,2,8,67,+1:05.459,5394228,,,,,1 +2097,119,15,4,7,4,3,3,3,6,67,+1:09.060,5397829,,,,,1 +2098,119,4,4,8,8,4,4,4,5,67,+1:09.344,5398113,,,,,1 +2099,119,44,7,20,7,5,5,5,4,66,,,,,,,11 +2100,119,43,7,21,9,6,6,6,3,66,,,,,,,11 +2101,119,30,6,1,6,7,7,7,2,66,,,,,,,11 +2102,119,18,16,17,17,8,8,8,1,66,,,,,,,11 +2103,119,35,16,16,13,9,9,9,0,65,,,,,,,12 +2104,119,2,15,9,15,10,10,10,0,65,,,,,,,12 +2105,119,17,19,14,11,11,11,11,0,64,,,,,,,3 +2106,119,53,18,18,20,12,12,12,0,62,,,,,,,15 +2107,119,21,17,11,13,13,13,13,0,60,,,,,,,5 +2108,119,50,18,19,19,,R,14,0,23,,,,,,,9 +2109,119,51,19,15,16,,R,15,0,6,,,,,,,6 +2110,119,23,3,4,2,,R,16,0,1,,,,,,,3 +2111,119,49,15,10,14,,R,17,0,1,,,,,,,3 +2112,119,22,6,2,3,,R,18,0,0,,,,,,,3 +2113,119,8,1,6,5,,R,19,0,0,,,,,,,3 +2114,119,52,17,12,18,,R,20,0,0,,,,,,,3 +2115,120,4,4,8,1,1,1,1,10,70,39:01.5,5941460,,,,,1 +2116,120,8,1,6,7,2,2,2,8,70,16.768,5958228,,,,,1 +2117,120,31,3,3,4,3,3,3,6,70,34.537,5975997,,,,,1 +2118,120,23,3,4,2,4,4,4,5,70,35.62,5977080,,,,,1 +2119,120,14,1,5,9,5,5,5,4,70,56.535,5997995,,,,,1 +2120,120,17,19,14,3,6,6,6,3,70,+1:12.643,6014103,,,,,1 +2121,120,15,4,7,6,7,7,7,2,69,,,,,,,11 +2122,120,30,6,1,8,8,8,8,1,69,,,,,,,11 +2123,120,2,15,9,11,9,9,9,0,69,,,,,,,11 +2124,120,18,16,17,14,10,10,10,0,69,,,,,,,11 +2125,120,43,7,21,15,11,11,11,0,68,,,,,,,12 +2126,120,50,18,19,18,12,12,12,0,67,,,,,,,13 +2127,120,53,18,18,20,13,13,13,0,66,,,,,,,14 +2128,120,49,15,10,17,,R,14,0,47,,,,,,,60 +2129,120,51,19,15,12,,R,15,0,42,,,,,,,5 +2130,120,47,17,12,19,,R,16,0,34,,,,,,,5 +2131,120,44,7,20,10,,R,17,0,33,,,,,,,6 +2132,120,21,17,11,13,,R,18,0,28,,,,,,,5 +2133,120,22,6,2,5,,R,19,0,19,,,,,,,22 +2134,120,35,16,16,16,,R,20,0,14,,,,,,,9 +2135,121,30,6,1,1,1,1,1,10,53,14:19.8,4459838,,,,,1 +2136,121,31,3,3,2,2,2,2,8,53,5.294,4465132,,,,,1 +2137,121,22,6,2,3,3,3,3,6,53,11.835,4471673,,,,,1 +2138,121,8,1,6,4,4,4,4,5,53,12.834,4472672,,,,,1 +2139,121,48,3,4,5,5,5,5,4,53,27.891,4487729,,,,,1 +2140,121,35,16,16,10,6,6,6,3,52,,,,,,,11 +2141,121,17,19,14,11,7,7,7,2,52,,,,,,,11 +2142,121,4,4,8,20,8,8,8,1,52,,,,,,,11 +2143,121,2,15,9,16,9,9,9,0,52,,,,,,,11 +2144,121,21,17,11,13,10,10,10,0,52,,,,,,,11 +2145,121,47,17,12,18,11,11,11,0,51,,,,,,,12 +2146,121,53,18,18,19,12,12,12,0,51,,,,,,,12 +2147,121,49,15,10,14,13,13,13,0,50,,,,,,,13 +2148,121,14,1,5,8,,R,14,0,45,,,,,,,32 +2149,121,44,7,20,9,,R,15,0,35,,,,,,,23 +2150,121,50,18,19,17,,R,16,0,27,,,,,,,44 +2151,121,18,16,17,7,,R,17,0,24,,,,,,,6 +2152,121,43,7,21,12,,R,18,0,3,,,,,,,27 +2153,121,51,19,15,15,,R,19,0,2,,,,,,,6 +2154,121,15,4,7,6,,R,20,0,0,,,,,,,9 +2155,122,30,6,1,7,1,1,1,10,73,33:36.0,5615997,,,,,1 +2156,122,8,1,6,1,2,2,2,8,73,18.258,5634255,,,,,1 +2157,122,49,15,10,15,3,3,3,6,73,37.964,5653961,,,,,1 +2158,122,15,4,7,10,4,4,4,5,73,48.329,5664326,,,,,1 +2159,122,2,15,9,13,5,5,5,4,73,56.403,5672400,,,,,1 +2160,122,31,3,3,4,6,6,6,3,72,,,,,,,11 +2161,122,21,17,11,17,7,7,7,2,72,,,,,,,11 +2162,122,51,19,15,16,8,8,8,1,71,,,,,,,12 +2163,122,43,7,21,9,9,9,9,0,71,,,,,,,12 +2164,122,50,18,19,19,10,10,10,0,69,,,,,,,14 +2165,122,53,18,18,20,11,11,11,0,69,,,,,,,14 +2166,122,35,16,16,12,,R,12,0,63,,,,,,,5 +2167,122,52,17,12,18,,R,13,0,48,,,,,,,20 +2168,122,14,1,5,8,,R,14,0,45,,,,,,,6 +2169,122,4,4,8,6,,R,15,0,44,,,,,,,5 +2170,122,18,16,17,11,,R,16,0,41,,,,,,,5 +2171,122,44,7,20,3,,R,17,0,27,,,,,,,3 +2172,122,17,19,14,14,,R,18,0,21,,,,,,,3 +2173,122,23,3,4,5,,R,19,0,21,,,,,,,3 +2174,122,22,6,2,2,,R,20,0,2,,,,,,,4 +2175,123,22,6,2,1,1,1,1,10,53,25:11.7,5111743,,,,,1 +2176,123,8,1,6,8,2,2,2,8,53,11.085,5122828,,,,,1 +2177,123,14,1,5,7,3,3,3,6,53,11.614,5123357,,,,,1 +2178,123,18,16,17,9,4,4,4,5,53,33.106,5144849,,,,,1 +2179,123,15,4,7,20,5,5,5,4,53,34.269,5146012,,,,,1 +2180,123,11,16,16,13,6,6,6,3,53,51.692,5163435,,,,,1 +2181,123,43,7,21,3,7,7,7,2,53,56.794,5168537,,,,,1 +2182,123,30,6,1,14,8,8,8,1,53,59.487,5171230,,,,,1 +2183,123,2,15,9,11,9,9,9,0,53,+1:00.159,5171902,,,,,1 +2184,123,44,7,20,4,10,10,10,0,53,+1:01.844,5173587,,,,,1 +2185,123,17,19,14,6,11,11,11,0,53,+1:11.005,5182748,,,,,1 +2186,123,23,3,4,19,12,12,12,0,52,,,,,,,11 +2187,123,51,19,15,10,13,13,13,0,52,,,,,,,11 +2188,123,52,17,12,15,14,14,14,0,51,,,,,,,12 +2189,123,50,18,19,17,15,15,15,0,51,,,,,,,12 +2190,123,53,18,18,18,16,16,16,0,50,,,,,,,13 +2191,123,21,17,11,16,,R,17,0,33,,,,,,,60 +2192,123,4,4,8,5,,R,18,0,17,,,,,,,5 +2193,123,49,15,10,12,,R,19,0,9,,,,,,,5 +2194,123,31,3,3,2,,R,20,0,9,,,,,,,9 +2195,124,30,6,1,2,1,1,1,10,58,35:36.8,5736792,,,,,1 +2196,124,31,3,6,6,2,2,2,6,58,18.628,5755420,,,,,1 +2197,124,8,1,4,5,3,3,3,4,58,25.067,5761859,,,,,1 +2198,124,56,19,16,19,4,4,4,3,57,,,,,,,11 +2199,124,17,18,23,18,5,5,5,2,56,,,,,,,12 +2200,124,63,7,24,14,6,6,6,1,56,,,,,,,12 +2201,124,62,18,22,21,7,7,7,0,55,,,,,,,13 +2202,124,37,19,17,20,8,8,8,0,53,,,,,,,15 +2203,124,14,1,3,4,,R,9,0,33,,,,,,,6 +2204,124,35,16,11,13,,R,10,0,27,,,,,,,41 +2205,124,49,21,20,15,,D,11,0,16,,,,,,,2 +2206,124,59,21,21,17,,D,12,0,15,,,,,,,2 +2207,124,11,17,10,22,,R,13,0,12,,,,,,,10 +2208,124,15,4,14,7,,R,14,0,8,,,,,,,20 +2209,124,22,6,2,1,,R,15,0,0,,,,,,,4 +2210,124,23,3,5,3,,R,16,0,0,,,,,,,4 +2211,124,21,17,9,8,,R,17,0,0,,,,,,,4 +2212,124,13,15,8,9,,R,18,0,0,,,,,,,4 +2213,124,2,15,7,10,,R,19,0,0,,,,,,,4 +2214,124,18,4,15,11,,R,20,0,0,,,,,,,4 +2215,124,44,16,12,12,,R,21,0,0,,,,,,,4 +2216,124,66,7,25,16,,R,22,0,0,,,,,,,4 +2217,125,23,3,5,4,1,1,1,10,56,34:12.9,5652912,,,,,1 +2218,125,31,3,6,2,2,2,2,6,56,39.7,5692612,,,,,1 +2219,125,30,6,1,1,3,3,3,4,56,+1:01.795,5714707,,,,,1 +2220,125,18,4,15,8,4,4,4,3,56,+1:09.767,5722679,,,,,1 +2221,125,2,15,7,7,5,5,5,2,55,,,,,,,11 +2222,125,13,15,8,14,6,6,6,1,55,,,,,,,11 +2223,125,66,7,25,19,7,7,7,0,55,,,,,,,11 +2224,125,35,16,11,13,8,8,8,0,55,,,,,,,11 +2225,125,11,17,10,15,9,9,9,0,54,,,,,,,12 +2226,125,37,19,17,17,10,10,10,0,54,,,,,,,12 +2227,125,49,21,20,11,11,11,11,0,54,,,,,,,12 +2228,125,63,7,24,10,12,12,12,0,53,,,,,,,13 +2229,125,21,17,9,9,13,13,13,0,53,,,,,,,13 +2230,125,22,6,2,3,,R,14,0,39,,,,,,,5 +2231,125,17,18,23,21,,R,15,0,34,,,,,,,10 +2232,125,56,19,16,20,,R,16,0,30,,,,,,,9 +2233,125,62,18,22,22,,R,17,0,29,,,,,,,6 +2234,125,8,1,4,5,,R,18,0,24,,,,,,,5 +2235,125,59,21,21,16,,R,19,0,20,,,,,,,74 +2236,125,14,1,3,6,,R,20,0,15,,,,,,,5 +2237,125,44,16,12,18,,R,21,0,9,,,,,,,8 +2238,125,15,4,14,12,,R,22,0,9,,,,,,,25 +2239,126,30,6,1,2,1,1,1,10,71,31:43.7,5503662,,,,,1 +2240,126,23,3,5,3,2,2,2,6,71,0.588,5504250,,,,,1 +2241,126,14,1,3,4,3,3,3,4,71,59.109,5562771,,,,,1 +2242,126,18,4,15,7,4,4,4,3,71,+1:06.883,5570545,,,,,1 +2243,126,31,3,6,1,5,5,5,2,71,+1:07.563,5571225,,,,,1 +2244,126,63,7,24,10,6,6,6,1,70,,,,,,,11 +2245,126,56,19,16,13,7,7,7,0,70,,,,,,,11 +2246,126,37,19,17,11,8,8,8,0,70,,,,,,,11 +2247,126,11,17,10,19,9,9,9,0,69,,,,,,,12 +2248,126,35,16,11,15,10,10,10,0,68,,,,,,,5 +2249,126,17,18,23,20,11,11,11,0,68,,,,,,,13 +2250,126,8,1,4,5,12,12,12,0,67,,,,,,,46 +2251,126,62,18,22,22,13,13,13,0,67,,,,,,,14 +2252,126,2,15,7,9,,R,14,0,61,,,,,,,23 +2253,126,15,4,14,6,,R,15,0,60,,,,,,,5 +2254,126,13,15,8,12,,R,16,0,41,,,,,,,4 +2255,126,66,7,25,16,,R,17,0,40,,,,,,,20 +2256,126,44,16,12,17,,R,18,0,25,,,,,,,6 +2257,126,49,21,20,18,,R,19,0,25,,,,,,,22 +2258,126,59,21,21,21,,R,20,0,19,,,,,,,22 +2259,126,22,6,2,8,,R,21,0,16,,,,,,,9 +2260,126,21,17,9,14,,R,22,0,6,,,,,,,5 +2261,127,30,6,1,1,1,1,1,10,62,29:10.8,5350789,,,,,1 +2262,127,22,6,2,2,2,2,2,6,62,17.907,5368696,,,,,1 +2263,127,23,3,5,3,3,3,3,4,62,19.755,5370544,,,,,1 +2264,127,31,3,6,4,4,4,4,3,62,44.725,5395514,,,,,1 +2265,127,18,4,15,9,5,5,5,2,62,+1:23.395,5434184,,,,,1 +2266,127,14,1,3,6,6,6,6,1,61,,,,,,,11 +2267,127,35,16,11,10,7,7,7,0,61,,,,,,,11 +2268,127,13,15,8,11,8,8,8,0,61,,,,,,,11 +2269,127,15,4,14,8,9,9,9,0,61,,,,,,,11 +2270,127,2,15,7,7,10,10,10,0,61,,,,,,,11 +2271,127,17,18,23,19,11,11,11,0,60,,,,,,,12 +2272,127,59,21,21,20,,R,12,0,50,,,,,,,75 +2273,127,56,19,16,18,,R,13,0,45,,,,,,,30 +2274,127,8,1,4,5,,R,14,0,44,,,,,,,43 +2275,127,44,16,12,12,,R,15,0,44,,,,,,,37 +2276,127,37,19,17,22,,R,16,0,30,,,,,,,30 +2277,127,63,7,24,16,,R,17,0,26,,,,,,,6 +2278,127,49,21,20,13,,R,18,0,25,,,,,,,75 +2279,127,21,17,9,15,,R,19,0,19,,,,,,,9 +2280,127,11,17,10,14,,R,20,0,5,,,,,,,6 +2281,127,66,7,25,17,,R,21,0,0,,,,,,,10 +2282,127,62,18,22,0,,F,22,0,0,,,,,,,77 +2283,128,30,6,1,1,1,1,1,10,65,30:30.0,5429981,,,,,1 +2284,128,31,3,6,4,2,2,2,6,65,35.63,5465611,,,,,1 +2285,128,14,1,3,7,3,3,3,4,65,42.623,5472604,,,,,1 +2286,128,2,15,7,8,4,4,4,3,65,+1:06.697,5496678,,,,,1 +2287,128,13,15,8,11,5,5,5,2,65,+1:18.973,5508954,,,,,1 +2288,128,49,21,20,10,6,6,6,1,65,+1:20.430,5510411,,,,,1 +2289,128,35,16,11,15,7,7,7,0,64,,,,,,,11 +2290,128,66,7,25,19,8,8,8,0,64,,,,,,,11 +2291,128,63,7,24,17,9,9,9,0,64,,,,,,,11 +2292,128,15,4,14,9,10,10,10,0,63,,,,,,,5 +2293,128,23,3,5,3,11,11,11,0,63,,,,,,,5 +2294,128,18,4,15,6,12,12,12,0,60,,,,,,,9 +2295,128,44,16,12,13,,R,13,0,43,,,,,,,43 +2296,128,56,19,16,22,,R,14,0,41,,,,,,,9 +2297,128,59,21,21,14,,R,15,0,40,,,,,,,9 +2298,128,11,17,10,18,,R,16,0,10,,,,,,,20 +2299,128,21,17,9,12,,R,17,0,5,,,,,,,9 +2300,128,8,1,4,5,,R,18,0,4,,,,,,,65 +2301,128,37,19,17,16,,R,19,0,2,,,,,,,20 +2302,128,22,6,2,2,,W,20,0,0,,,,,,,6 +2303,128,17,18,22,20,,W,21,0,0,,,,,,,78 +2304,128,62,18,23,21,,W,22,0,0,,,,,,,78 +2305,129,30,6,1,3,1,1,1,10,71,33:51.6,5631562,,,,,1 +2306,129,22,6,2,1,2,2,2,6,71,0.182,5631744,,,,,1 +2307,129,31,3,6,4,3,3,3,4,71,17.73,5649292,,,,,1 +2308,129,23,3,5,2,4,4,4,3,71,18.448,5650010,,,,,1 +2309,129,21,17,9,15,5,5,5,2,71,49.965,5681527,,,,,1 +2310,129,14,1,3,8,6,6,6,1,71,50.672,5682234,,,,,1 +2311,129,18,4,15,13,7,7,7,0,71,51.229,5682791,,,,,1 +2312,129,63,7,24,10,8,8,8,0,71,+1:09.425,5700987,,,,,1 +2313,129,66,7,25,14,9,9,9,0,71,+1:09.718,5701280,,,,,1 +2314,129,35,16,11,17,10,10,10,0,70,,,,,,,11 +2315,129,49,21,20,11,11,11,11,0,69,,,,,,,12 +2316,129,17,18,23,21,12,12,12,0,69,,,,,,,12 +2317,129,15,4,14,16,,R,13,0,44,,,,,,,32 +2318,129,62,18,22,22,,R,14,0,42,,,,,,,5 +2319,129,56,19,16,20,,R,15,0,38,,,,,,,9 +2320,129,2,15,7,5,,R,16,0,27,,,,,,,4 +2321,129,11,17,10,18,,R,17,0,26,,,,,,,4 +2322,129,44,16,12,9,,R,18,0,22,,,,,,,5 +2323,129,13,15,8,7,,R,19,0,7,,,,,,,22 +2324,129,8,1,4,6,,R,20,0,5,,,,,,,5 +2325,129,59,21,21,12,,R,21,0,2,,,,,,,4 +2326,129,37,19,17,19,,R,22,0,0,,,,,,,37 +2327,130,14,1,3,2,1,1,1,10,78,45:39.1,6339055,,,,,1 +2328,130,30,6,1,3,2,2,2,6,78,1.05,6340105,,,,,1 +2329,130,23,3,5,4,3,3,3,4,78,+1:07.450,6406505,,,,,1 +2330,130,15,4,14,7,4,4,4,3,77,,,,,,,11 +2331,130,21,17,9,11,5,5,5,2,77,,,,,,,11 +2332,130,49,21,20,12,6,6,6,1,77,,,,,,,11 +2333,130,22,6,2,5,7,7,7,0,77,,,,,,,11 +2334,130,2,15,7,15,8,8,8,0,76,,,,,,,12 +2335,130,56,19,16,19,9,9,9,0,76,,,,,,,12 +2336,130,37,19,17,17,10,10,10,0,76,,,,,,,12 +2337,130,17,18,23,20,11,11,11,0,76,,,,,,,12 +2338,130,59,21,21,21,12,12,12,0,76,,,,,,,12 +2339,130,63,7,24,9,,R,13,0,69,,,,,,,23 +2340,130,13,15,8,13,,R,14,0,63,,,,,,,3 +2341,130,44,16,12,18,,R,15,0,51,,,,,,,4 +2342,130,18,4,15,8,,R,16,0,51,,,,,,,4 +2343,130,31,3,6,1,,R,17,0,46,,,,,,,5 +2344,130,35,16,11,14,,R,18,0,44,,,,,,,26 +2345,130,8,1,4,6,,R,19,0,41,,,,,,,4 +2346,130,62,18,22,22,,R,20,0,29,,,,,,,3 +2347,130,11,17,10,16,,R,21,0,22,,,,,,,20 +2348,130,66,7,25,10,,R,22,0,15,,,,,,,3 +2349,131,30,6,1,2,1,1,1,10,70,33:36.1,5616111,,,,,1 +2350,131,14,1,3,8,2,2,2,6,70,1.132,5617243,,,,,1 +2351,131,22,6,2,3,3,3,3,4,70,7.082,5623193,,,,,1 +2352,131,8,1,4,5,4,4,4,3,70,37.563,5653674,,,,,1 +2353,131,21,17,9,6,5,5,5,2,70,42.812,5658923,,,,,1 +2354,131,15,4,14,10,6,6,6,1,70,48.947,5665058,,,,,1 +2355,131,23,3,5,4,7,7,7,0,70,,,,,,,5 +2356,131,44,16,12,11,8,8,8,0,69,,,,,,,11 +2357,131,13,15,8,12,9,9,9,0,69,,,,,,,11 +2358,131,11,17,10,15,10,10,10,0,69,,,,,,,11 +2359,131,17,18,23,21,11,11,11,0,69,,,,,,,11 +2360,131,2,15,7,7,12,12,12,0,69,,,,,,,11 +2361,131,49,21,20,19,13,13,13,0,69,,,,,,,11 +2362,131,62,18,22,22,14,14,14,0,68,,,,,,,12 +2363,131,18,4,15,13,15,15,15,0,65,,,,,,,6 +2364,131,31,3,6,1,,R,16,0,56,,,,,,,5 +2365,131,66,7,25,20,,R,17,0,45,,,,,,,20 +2366,131,56,19,16,14,,R,18,0,41,,,,,,,25 +2367,131,63,7,24,18,,R,19,0,41,,,,,,,23 +2368,131,37,19,17,16,,R,20,0,29,,,,,,,6 +2369,131,59,21,21,17,,R,21,0,16,,,,,,,22 +2370,131,35,16,11,9,,R,22,0,8,,,,,,,51 +2371,132,22,6,2,4,1,1,1,10,60,35:07.4,5707426,,,,,1 +2372,132,30,6,1,3,2,2,2,6,60,0.294,5707720,,,,,1 +2373,132,8,1,4,6,3,3,3,4,60,46.435,5753861,,,,,1 +2374,132,23,3,5,2,4,4,4,3,60,+1:06.963,5774389,,,,,1 +2375,132,18,4,15,8,5,5,5,2,60,+1:16.944,5784370,,,,,1 +2376,132,13,15,8,11,6,6,6,1,59,,,,,,,11 +2377,132,2,15,7,9,7,7,7,0,59,,,,,,,11 +2378,132,15,4,14,7,8,8,8,0,59,,,,,,,11 +2379,132,44,16,12,12,9,9,9,0,59,,,,,,,11 +2380,132,37,19,17,16,10,10,10,0,59,,,,,,,11 +2381,132,59,21,21,21,11,11,11,0,59,,,,,,,11 +2382,132,35,16,11,19,12,12,12,0,59,,,,,,,11 +2383,132,49,21,20,15,13,13,13,0,59,,,,,,,11 +2384,132,66,7,25,13,14,14,14,0,59,,,,,,,11 +2385,132,17,18,23,20,15,15,15,0,58,,,,,,,12 +2386,132,11,17,10,14,16,16,16,0,58,,,,,,,12 +2387,132,63,7,24,10,,R,17,0,51,,,,,,,6 +2388,132,62,18,22,22,,R,18,0,48,,,,,,,9 +2389,132,56,19,16,17,,R,19,0,41,,,,,,,9 +2390,132,31,3,6,1,,R,20,0,27,,,,,,,4 +2391,132,14,1,3,5,,R,21,0,27,,,,,,,4 +2392,132,21,17,9,18,,R,22,0,26,,,,,,,3 +2393,133,30,6,1,3,1,1,1,10,60,31:45.0,5505015,,,,,1 +2394,133,22,6,2,2,2,2,2,6,60,14.578,5519593,,,,,1 +2395,133,31,3,6,1,3,3,3,4,60,31.661,5536676,,,,,1 +2396,133,35,16,11,9,4,4,4,3,59,,,,,,,11 +2397,133,44,16,12,13,5,5,5,2,59,,,,,,,11 +2398,133,2,15,7,10,6,6,6,1,59,,,,,,,11 +2399,133,21,17,9,17,7,7,7,0,59,,,,,,,11 +2400,133,23,3,5,4,8,8,8,0,59,,,,,,,11 +2401,133,13,15,8,11,9,9,9,0,59,,,,,,,11 +2402,133,14,1,3,6,10,10,10,0,58,,,,,,,12 +2403,133,37,19,17,21,11,11,11,0,58,,,,,,,12 +2404,133,18,4,15,12,12,12,12,0,54,,,,,,,36 +2405,133,11,17,10,14,,R,13,0,50,,,,,,,5 +2406,133,8,1,4,5,,R,14,0,44,,,,,,,5 +2407,133,15,4,14,7,,R,15,0,29,,,,,,,40 +2408,133,59,21,21,18,,R,16,0,28,,,,,,,30 +2409,133,56,19,16,19,,R,17,0,23,,,,,,,20 +2410,133,49,21,20,16,,R,18,0,20,,,,,,,5 +2411,133,63,7,24,8,,R,19,0,15,,,,,,,79 +2412,133,17,18,23,20,,R,20,0,9,,,,,,,8 +2413,133,66,7,25,15,,R,21,0,0,,,,,,,8 +2414,134,30,6,1,2,1,1,1,10,72,32:09.8,5529837,,,,,1 +2415,134,8,1,4,4,2,2,2,6,72,1.104,5530941,,,,,1 +2416,134,14,1,3,6,3,3,3,4,72,31.975,5561812,,,,,1 +2417,134,31,3,6,1,4,4,4,3,72,40.675,5570512,,,,,1 +2418,134,23,3,5,5,5,5,5,2,72,41.772,5571609,,,,,1 +2419,134,18,4,15,7,6,6,6,1,71,,,,,,,11 +2420,134,2,15,7,10,7,7,7,0,71,,,,,,,11 +2421,134,17,18,23,18,8,8,8,0,71,,,,,,,11 +2422,134,37,19,17,15,9,9,9,0,70,,,,,,,12 +2423,134,62,18,22,19,10,10,10,0,68,,,,,,,14 +2424,134,66,7,25,17,11,11,11,0,65,,,,,,,5 +2425,134,56,19,16,9,,R,12,0,52,,,,,,,65 +2426,134,15,4,14,8,,R,13,0,49,,,,,,,5 +2427,134,13,15,8,12,,R,14,0,48,,,,,,,26 +2428,134,63,7,24,16,,R,15,0,48,,,,,,,5 +2429,134,35,16,11,13,,R,16,0,35,,,,,,,5 +2430,134,44,16,12,11,,R,17,0,29,,,,,,,3 +2431,134,11,17,10,14,,R,18,0,23,,,,,,,20 +2432,134,22,6,2,3,,R,19,0,0,,,,,,,80 +2433,134,49,21,20,0,,F,20,0,0,,,,,,,81 +2434,134,59,21,21,0,,F,21,0,0,,,,,,,81 +2435,134,21,17,9,0,,F,22,0,0,,,,,,,82 +2436,135,30,6,1,1,1,1,1,10,67,27:52.1,5272078,,,,,1 +2437,135,31,3,6,4,2,2,2,6,67,10.503,5282581,,,,,1 +2438,135,23,3,5,2,3,3,3,4,67,14.466,5286544,,,,,1 +2439,135,22,6,2,3,4,4,4,3,67,23.195,5295273,,,,,1 +2440,135,14,1,3,9,5,5,5,2,66,,,,,,,11 +2441,135,2,15,7,10,6,6,6,1,66,,,,,,,11 +2442,135,13,15,8,14,7,7,7,0,66,,,,,,,11 +2443,135,11,17,10,12,8,8,8,0,66,,,,,,,11 +2444,135,63,7,24,19,9,9,9,0,66,,,,,,,11 +2445,135,21,17,9,6,,R,10,0,59,,,,,,,5 +2446,135,8,1,4,5,,R,11,0,59,,,,,,,20 +2447,135,56,19,16,16,,R,12,0,57,,,,,,,23 +2448,135,59,21,21,18,,R,13,0,48,,,,,,,5 +2449,135,44,16,12,7,,R,14,0,39,,,,,,,5 +2450,135,15,4,14,8,,R,15,0,36,,,,,,,20 +2451,135,35,16,11,11,,R,16,0,27,,,,,,,6 +2452,135,18,4,15,13,,R,17,0,24,,,,,,,5 +2453,135,66,7,25,17,,R,18,0,23,,,,,,,5 +2454,135,17,18,23,21,,R,19,0,23,,,,,,,9 +2455,135,49,21,20,15,,R,20,0,18,,,,,,,9 +2456,135,37,19,17,20,,R,21,0,0,,,,,,,7 +2457,136,22,6,2,1,1,1,1,10,77,41:49.0,6109001,,,,,1 +2458,136,30,6,1,2,2,2,2,6,77,0.434,6109435,,,,,1 +2459,136,23,3,5,3,3,3,3,4,77,13.356,6122357,,,,,1 +2460,136,8,1,4,11,4,4,4,3,77,29.479,6138480,,,,,1 +2461,136,14,1,3,10,5,5,5,2,77,37.8,6146801,,,,,1 +2462,136,21,17,9,5,6,6,6,1,77,+1:08.804,6177805,,,,,1 +2463,136,13,15,8,7,7,7,7,0,77,+1:13.612,6182613,,,,,1 +2464,136,15,4,14,6,8,8,8,0,76,,,,,,,11 +2465,136,2,15,7,8,9,9,9,0,76,,,,,,,11 +2466,136,11,17,10,14,10,10,10,0,76,,,,,,,11 +2467,136,31,3,6,4,11,11,11,0,76,,,,,,,11 +2468,136,44,16,12,12,12,12,12,0,76,,,,,,,11 +2469,136,37,19,17,15,13,13,13,0,75,,,,,,,12 +2470,136,66,7,25,18,14,14,14,0,75,,,,,,,12 +2471,136,63,7,24,17,15,15,15,0,75,,,,,,,12 +2472,136,17,18,23,19,16,16,16,0,75,,,,,,,12 +2473,136,19,18,22,20,,R,17,0,58,,,,,,,20 +2474,136,18,4,15,9,,R,18,0,30,,,,,,,20 +2475,136,56,19,16,16,,R,19,0,23,,,,,,,5 +2476,136,35,16,11,13,,R,20,0,20,,,,,,,7 +2477,137,30,6,1,1,1,1,1,10,44,21:20.6,4880634,,,,,1 +2478,137,22,6,2,3,2,2,2,6,44,1.977,4882611,,,,,1 +2479,137,31,3,6,5,3,3,3,4,44,18.445,4899079,,,,,1 +2480,137,14,1,3,6,4,4,4,3,44,19.357,4899991,,,,,1 +2481,137,23,3,5,4,5,5,5,2,44,56.44,4937074,,,,,1 +2482,137,56,19,16,8,6,6,6,1,44,+1:17.370,4958004,,,,,1 +2483,137,63,7,24,9,7,7,7,0,44,+1:17.809,4958443,,,,,1 +2484,137,35,16,11,12,8,8,8,0,44,+1:19.855,4960489,,,,,1 +2485,137,66,7,25,13,9,9,9,0,43,,,,,,,11 +2486,137,2,15,7,18,10,10,10,0,43,,,,,,,11 +2487,137,11,17,10,16,11,11,11,0,43,,,,,,,11 +2488,137,44,16,12,15,12,12,12,0,39,,,,,,,5 +2489,137,21,17,9,14,,R,13,0,38,,,,,,,5 +2490,137,37,19,17,11,,R,14,0,37,,,,,,,22 +2491,137,13,15,8,17,,R,15,0,37,,,,,,,5 +2492,137,8,1,4,2,,R,16,0,35,,,,,,,5 +2493,137,15,4,14,7,,R,17,0,35,,,,,,,5 +2494,137,19,18,22,20,,R,18,0,17,,,,,,,20 +2495,137,18,4,15,10,,R,19,0,10,,,,,,,5 +2496,137,17,18,23,19,,R,20,0,4,,,,,,,6 +2497,138,22,6,2,4,1,1,1,10,53,16:20.0,4579982,,,,,1 +2498,138,30,6,1,2,2,2,2,6,53,0.255,4580237,,,,,1 +2499,138,56,19,16,5,3,3,3,4,53,52.579,4632561,,,,,1 +2500,138,15,4,14,11,4,4,4,3,53,58.219,4638201,,,,,1 +2501,138,18,4,15,17,5,5,5,2,53,+1:07.770,4647752,,,,,1 +2502,138,44,16,12,16,6,6,6,1,53,+1:08.491,4648473,,,,,1 +2503,138,14,1,3,7,7,7,7,0,53,+1:09.047,4649029,,,,,1 +2504,138,21,17,9,12,8,8,8,0,53,+1:10.891,4650873,,,,,1 +2505,138,35,16,11,9,9,9,9,0,53,+1:21.068,4661050,,,,,1 +2506,138,2,15,7,15,10,10,10,0,53,+1:22.046,4662028,,,,,1 +2507,138,63,7,24,10,11,11,11,0,52,,,,,,,11 +2508,138,11,17,10,18,12,12,12,0,52,,,,,,,11 +2509,138,62,18,22,20,13,13,13,0,47,,,,,,,16 +2510,138,31,3,6,1,,R,14,0,33,,,,,,,83 +2511,138,8,1,4,6,,R,15,0,29,,,,,,,5 +2512,138,17,18,23,19,,R,16,0,20,,,,,,,5 +2513,138,13,15,8,14,,R,17,0,16,,,,,,,4 +2514,138,37,19,17,8,,R,18,0,15,,,,,,,4 +2515,138,66,7,25,13,,R,19,0,12,,,,,,,22 +2516,138,23,3,5,3,,R,20,0,4,,,,,,,5 +2517,139,22,6,2,2,1,1,1,10,73,31:08.0,5468000,,,,,1 +2518,139,30,6,1,1,2,2,2,6,73,0.011,5468011,,,,,1 +2519,139,14,1,3,3,3,3,3,4,73,7.799,5475799,,,,,1 +2520,139,31,3,6,4,4,4,4,3,73,9.911,5477911,,,,,1 +2521,139,15,4,14,8,5,5,5,2,73,56.847,5524847,,,,,1 +2522,139,35,16,11,7,6,6,6,1,73,58.211,5526211,,,,,1 +2523,139,21,17,9,9,7,7,7,0,72,,,,,,,11 +2524,139,18,4,15,14,8,8,8,0,72,,,,,,,11 +2525,139,2,15,7,10,9,9,9,0,72,,,,,,,11 +2526,139,56,19,16,13,10,10,10,0,72,,,,,,,11 +2527,139,11,17,10,15,11,11,11,0,72,,,,,,,11 +2528,139,44,16,12,12,12,12,12,0,72,,,,,,,11 +2529,139,49,15,8,11,13,13,13,0,71,,,,,,,12 +2530,139,63,7,24,19,14,14,14,0,71,,,,,,,12 +2531,139,66,7,25,16,15,15,15,0,71,,,,,,,12 +2532,139,23,3,5,5,16,16,16,0,71,,,,,,,12 +2533,139,8,1,4,6,,R,17,0,50,,,,,,,5 +2534,139,62,18,22,20,,R,18,0,46,,,,,,,5 +2535,139,17,18,23,18,,R,19,0,38,,,,,,,38 +2536,139,37,19,17,17,,R,20,0,27,,,,,,,7 +2537,140,30,6,1,1,1,1,1,10,53,26:59.7,5219698,,,,,1 +2538,140,22,6,2,2,2,2,2,6,53,0.506,5220204,,,,,1 +2539,140,8,1,4,4,3,3,3,4,53,23.292,5242990,,,,,1 +2540,140,31,3,6,6,4,4,4,3,53,36.275,5255973,,,,,1 +2541,140,11,17,10,7,5,5,5,2,53,+1:22.694,5302392,,,,,1 +2542,140,18,4,15,10,6,6,6,1,52,,,,,,,11 +2543,140,2,15,7,12,7,7,7,0,52,,,,,,,11 +2544,140,63,7,24,13,8,8,8,0,52,,,,,,,11 +2545,140,56,19,16,14,9,9,9,0,52,,,,,,,11 +2546,140,17,18,23,19,10,10,10,0,51,,,,,,,12 +2547,140,23,3,5,5,11,11,11,0,48,,,,,,,5 +2548,140,37,19,17,17,,R,12,0,39,,,,,,,7 +2549,140,21,17,9,8,,R,13,0,37,,,,,,,5 +2550,140,15,4,14,11,,R,14,0,32,,,,,,,26 +2551,140,35,16,11,9,,R,15,0,27,,,,,,,5 +2552,140,62,18,22,20,,R,16,0,14,,,,,,,20 +2553,140,44,16,12,16,,R,17,0,8,,,,,,,26 +2554,140,14,1,3,3,,R,18,0,7,,,,,,,37 +2555,140,13,15,8,15,,R,19,0,3,,,,,,,3 +2556,140,66,7,25,18,,W,20,0,0,,,,,,,73 +2557,141,30,6,1,1,1,1,1,10,58,38:26.5,5906533,,,,,1 +2558,141,14,1,4,6,2,2,2,6,58,1.717,5908250,,,,,1 +2559,141,22,6,2,2,3,3,3,4,58,33.491,5940024,,,,,1 +2560,141,2,15,16,10,4,4,4,3,58,+1:11.479,5978012,,,,,1 +2561,141,49,17,11,4,5,5,5,2,58,+1:12.807,5979340,,,,,1 +2562,141,8,15,17,13,6,6,6,1,58,+1:24.143,5990676,,,,,1 +2563,141,44,16,9,9,7,7,7,0,58,+1:27.050,5993583,,,,,1 +2564,141,54,19,19,21,8,8,8,0,57,,,,,,,11 +2565,141,55,20,22,14,9,9,9,0,57,,,,,,,11 +2566,141,50,21,14,15,10,10,10,0,57,,,,,,,11 +2567,141,56,19,18,12,11,11,11,0,57,,,,,,,11 +2568,141,4,18,21,19,12,12,12,0,56,,,,,,,12 +2569,141,21,22,7,17,13,13,13,0,55,,,,,,,13 +2570,141,18,22,8,16,,R,14,0,52,,,,,,,10 +2571,141,31,3,6,11,,R,15,0,40,,,,,,,5 +2572,141,15,17,12,7,,R,16,0,38,,,,,,,5 +2573,141,57,1,3,3,,R,17,0,25,,,,,,,22 +2574,141,23,3,5,5,,R,18,0,4,,,,,,,4 +2575,141,35,16,10,8,,R,19,0,4,,,,,,,4 +2576,141,58,18,20,22,,R,20,0,3,,,,,,,84 +2577,141,59,21,15,18,,R,21,0,2,,,,,,,20 +2578,141,60,20,23,20,,R,22,0,0,,,,,,,23 +2579,142,30,6,1,1,1,1,1,10,55,47:34.8,6454801,,,,,1 +2580,142,22,6,2,2,2,2,2,6,55,23.66,6478461,,,,,1 +2581,142,14,1,4,8,3,3,3,4,55,28.555,6483356,,,,,1 +2582,142,49,17,11,9,4,4,4,3,55,46.543,6501344,,,,,1 +2583,142,23,3,5,3,5,5,5,2,55,48.233,6503034,,,,,1 +2584,142,57,1,3,4,6,6,6,1,55,48.606,6503407,,,,,1 +2585,142,50,21,14,18,7,7,7,0,55,+1:21.560,6536361,,,,,1 +2586,142,15,17,12,5,8,8,8,0,54,,,,,,,11 +2587,142,55,20,22,13,9,9,9,0,54,,,,,,,11 +2588,142,54,19,19,15,10,10,10,0,54,,,,,,,11 +2589,142,18,22,8,17,11,11,11,0,53,,,,,,,12 +2590,142,60,20,23,19,12,12,12,0,53,,,,,,,12 +2591,142,4,18,21,21,13,13,13,0,52,,,,,,,13 +2592,142,58,18,20,20,14,14,14,0,51,,,,,,,14 +2593,142,21,22,7,16,,R,15,0,31,,,,,,,32 +2594,142,35,16,10,7,,R,16,0,3,,,,,,,20 +2595,142,2,15,16,11,,R,17,0,3,,,,,,,20 +2596,142,59,21,15,22,,R,18,0,3,,,,,,,20 +2597,142,31,3,6,6,,R,19,0,3,,,,,,,20 +2598,142,56,19,18,12,,R,20,0,3,,,,,,,47 +2599,142,44,16,9,10,,R,21,0,1,,,,,,,44 +2600,142,8,15,17,14,,R,22,0,0,,,,,,,30 +2601,143,14,1,4,5,1,1,1,10,71,39:00.8,5940834,,,,,1 +2602,143,30,6,1,1,2,2,2,6,71,16.164,5956998,,,,,1 +2603,143,2,15,16,9,3,3,3,4,70,,,,,,,11 +2604,143,44,16,9,11,4,4,4,3,70,,,,,,,11 +2605,143,15,17,12,7,5,5,5,2,70,,,,,,,11 +2606,143,21,22,7,18,6,6,6,1,70,,,,,,,11 +2607,143,35,16,10,12,7,7,7,0,70,,,,,,,11 +2608,143,55,20,22,15,8,8,8,0,70,,,,,,,11 +2609,143,58,18,20,22,9,9,9,0,68,,,,,,,13 +2610,143,18,22,8,20,10,10,10,0,64,,,,,,,17 +2611,143,49,17,11,8,11,11,11,0,63,,,,,,,10 +2612,143,8,15,17,10,,R,12,0,55,,,,,,,20 +2613,143,23,3,5,2,,R,13,0,54,,,,,,,20 +2614,143,60,20,23,21,,R,14,0,54,,,,,,,8 +2615,143,56,19,18,13,,R,15,0,52,,,,,,,20 +2616,143,31,3,6,4,,R,16,0,38,,,,,,,4 +2617,143,50,21,14,17,,R,17,0,37,,,,,,,4 +2618,143,54,19,19,14,,R,18,0,30,,,,,,,5 +2619,143,4,18,21,19,,R,19,0,25,,,,,,,10 +2620,143,59,21,15,16,,R,20,0,15,,,,,,,9 +2621,143,22,6,2,6,,R,21,0,2,,,,,,,4 +2622,143,57,1,3,3,,R,22,0,0,,,,,,,85 +2623,144,23,3,5,3,1,1,1,10,62,30:44.8,5444817,,,,,1 +2624,144,14,1,4,1,2,2,2,6,62,4.352,5449169,,,,,1 +2625,144,22,6,2,6,3,3,3,4,62,34.766,5479583,,,,,1 +2626,144,57,1,3,2,4,4,4,3,62,36.315,5481132,,,,,1 +2627,144,15,17,12,5,5,5,5,2,62,+1:25.558,5530375,,,,,1 +2628,144,49,17,11,9,6,6,6,1,61,,,,,,,11 +2629,144,2,15,16,12,7,7,7,0,61,,,,,,,11 +2630,144,44,16,9,8,8,8,8,0,61,,,,,,,11 +2631,144,55,20,22,14,9,9,9,0,61,,,,,,,11 +2632,144,59,21,15,16,10,10,10,0,60,,,,,,,12 +2633,144,54,19,19,15,11,11,11,0,60,,,,,,,12 +2634,144,18,22,8,21,12,12,12,0,60,,,,,,,12 +2635,144,58,18,20,22,,R,13,0,50,,,,,,,5 +2636,144,31,3,6,7,,R,14,0,48,,,,,,,8 +2637,144,56,19,18,13,,R,15,0,42,,,,,,,5 +2638,144,21,22,7,19,,R,16,0,31,,,,,,,5 +2639,144,35,16,10,11,,R,17,0,30,,,,,,,5 +2640,144,60,20,23,20,,R,18,0,28,,,,,,,5 +2641,144,30,6,1,4,,R,19,0,24,,,,,,,22 +2642,144,8,15,17,10,,R,20,0,17,,,,,,,38 +2643,144,50,21,14,17,,R,21,0,6,,,,,,,43 +2644,144,4,18,21,18,,R,22,0,5,,,,,,,23 +2645,145,30,6,1,1,1,1,1,10,65,31:03.3,5463305,,,,,1 +2646,145,31,3,6,12,2,2,2,6,65,40.738,5504043,,,,,1 +2647,145,35,16,10,7,3,3,3,4,65,49.626,5512931,,,,,1 +2648,145,15,17,12,6,4,4,4,3,65,51.253,5514558,,,,,1 +2649,145,14,1,4,3,5,5,5,2,65,51.616,5514921,,,,,1 +2650,145,2,15,16,10,6,6,6,1,65,+1:01.893,5525198,,,,,1 +2651,145,44,16,9,11,7,7,7,0,65,+1:04.977,5528282,,,,,1 +2652,145,8,15,17,9,8,8,8,0,65,+1:19.808,5543113,,,,,1 +2653,145,57,1,3,2,9,9,9,0,64,,,,,,,8 +2654,145,55,20,22,15,10,10,10,0,64,,,,,,,11 +2655,145,54,20,23,14,11,11,11,0,64,,,,,,,11 +2656,145,50,21,14,17,12,12,12,0,63,,,,,,,12 +2657,145,4,18,21,18,13,13,13,0,63,,,,,,,12 +2658,145,21,22,7,19,14,14,14,0,63,,,,,,,12 +2659,145,18,22,8,21,15,15,15,0,62,,,,,,,13 +2660,145,58,18,20,22,16,16,16,0,62,,,,,,,13 +2661,145,22,6,2,4,,R,17,0,49,,,,,,,22 +2662,145,56,19,18,13,,R,18,0,48,,,,,,,5 +2663,145,23,3,5,5,,R,19,0,20,,,,,,,23 +2664,145,59,21,15,16,,R,20,0,8,,,,,,,32 +2665,145,37,19,19,20,,R,21,0,5,,,,,,,4 +2666,145,49,17,11,8,,R,22,0,5,,,,,,,4 +2667,146,14,1,4,7,1,1,1,10,71,27:45.9,5265927,,,,,1 +2668,146,30,6,1,1,2,2,2,6,71,2.19,5268117,,,,,1 +2669,146,22,6,2,4,3,3,3,4,71,2.527,5268454,,,,,1 +2670,146,8,15,17,9,4,4,4,3,71,41.593,5307520,,,,,1 +2671,146,44,16,9,10,5,5,5,2,71,53.775,5319702,,,,,1 +2672,146,50,21,14,16,6,6,6,1,70,,,,,,,11 +2673,146,56,19,18,13,7,7,7,0,70,,,,,,,11 +2674,146,35,16,10,12,8,8,8,0,70,,,,,,,11 +2675,146,2,15,16,6,9,9,9,0,69,,,,,,,12 +2676,146,55,20,22,20,10,10,10,0,69,,,,,,,12 +2677,146,54,20,23,17,11,11,11,0,69,,,,,,,12 +2678,146,18,22,8,21,,R,12,0,60,,,,,,,5 +2679,146,37,19,19,14,,R,13,0,48,,,,,,,7 +2680,146,31,3,6,2,,R,14,0,41,,,,,,,9 +2681,146,4,18,21,18,,R,15,0,38,,,,,,,6 +2682,146,58,18,20,22,,R,16,0,25,,,,,,,6 +2683,146,59,21,15,15,,R,17,0,17,,,,,,,9 +2684,146,15,17,12,5,,D,18,0,14,,,,,,,2 +2685,146,23,3,5,3,,R,19,0,10,,,,,,,23 +2686,146,21,22,7,19,,R,20,0,3,,,,,,,5 +2687,146,57,1,3,8,,R,21,0,1,,,,,,,7 +2688,146,49,17,11,11,,R,22,0,0,,,,,,,6 +2689,147,30,6,1,2,1,1,1,10,78,47:22.6,6442561,,,,,1 +2690,147,22,6,2,4,2,2,2,6,78,0.431,6442992,,,,,1 +2691,147,56,19,18,6,3,3,3,4,78,30.698,6473259,,,,,1 +2692,147,35,16,10,9,4,4,4,3,78,32.454,6475015,,,,,1 +2693,147,14,1,4,1,5,5,5,2,77,,,,,,,11 +2694,147,55,20,22,11,6,6,6,1,77,,,,,,,11 +2695,147,18,22,8,17,7,7,7,0,77,,,,,,,11 +2696,147,50,21,14,19,8,8,8,0,77,,,,,,,11 +2697,147,59,21,15,20,9,9,9,0,76,,,,,,,12 +2698,147,8,15,17,15,10,10,10,0,73,,,,,,,15 +2699,147,23,3,5,5,,R,11,0,57,,,,,,,10 +2700,147,58,18,20,22,,R,12,0,56,,,,,,,7 +2701,147,4,18,21,18,,R,13,0,54,,,,,,,6 +2702,147,49,17,11,13,,R,14,0,49,,,,,,,3 +2703,147,21,22,7,10,,R,15,0,43,,,,,,,6 +2704,147,15,17,12,8,,R,16,0,30,,,,,,,9 +2705,147,54,20,23,21,,R,17,0,24,,,,,,,6 +2706,147,37,19,19,14,,R,18,0,18,,,,,,,9 +2707,147,57,1,3,3,,R,19,0,15,,,,,,,38 +2708,147,44,16,9,12,,R,20,0,13,,,,,,,38 +2709,147,31,3,6,7,,R,21,0,2,,,,,,,20 +2710,147,2,15,16,16,,R,22,0,0,,,,,,,4 +2711,148,23,3,5,2,1,1,1,10,69,34:31.5,5671522,,,,,1 +2712,148,30,6,1,1,2,2,2,6,69,20.235,5691757,,,,,1 +2713,148,57,1,3,8,3,3,3,4,69,40.672,5712194,,,,,1 +2714,148,8,15,17,7,4,4,4,3,69,+1:08.116,5739638,,,,,1 +2715,148,55,20,22,16,5,5,5,2,69,+1:10.435,5741957,,,,,1 +2716,148,37,19,19,14,6,6,6,1,68,,,,,,,11 +2717,148,41,17,11,12,7,7,7,0,68,,,,,,,11 +2718,148,54,20,23,19,8,8,8,0,68,,,,,,,11 +2719,148,58,18,20,21,9,9,9,0,66,,,,,,,13 +2720,148,50,21,14,13,10,10,10,0,65,,,,,,,23 +2721,148,15,17,12,4,11,11,11,0,63,,,,,,,23 +2722,148,14,1,4,3,,R,12,0,54,,,,,,,5 +2723,148,44,16,9,6,,R,13,0,38,,,,,,,23 +2724,148,35,16,10,9,,R,14,0,34,,,,,,,86 +2725,148,59,21,15,17,,R,15,0,24,,,,,,,5 +2726,148,31,3,6,10,,R,16,0,19,,,,,,,3 +2727,148,22,6,2,5,,R,17,0,19,,,,,,,20 +2728,148,18,22,8,20,,R,18,0,17,,,,,,,44 +2729,148,4,18,21,22,,R,19,0,7,,,,,,,7 +2730,148,2,15,16,11,,R,20,0,1,,,,,,,4 +2731,148,56,19,18,15,,R,21,0,1,,,,,,,4 +2732,148,21,22,7,18,,R,22,0,0,,,,,,,4 +2733,149,30,6,1,1,1,1,1,10,67,29:42.7,5382724,,,,,1 +2734,149,31,3,6,3,2,2,2,6,67,4.127,5386851,,,,,1 +2735,149,14,1,4,5,3,3,3,4,67,24.993,5407717,,,,,1 +2736,149,23,3,5,2,4,4,4,3,67,33.345,5416069,,,,,1 +2737,149,22,6,2,4,5,5,5,2,67,45.495,5428219,,,,,1 +2738,149,57,1,3,6,6,6,6,1,67,+1:04.868,5447592,,,,,1 +2739,149,56,19,18,12,7,7,7,0,67,+1:06.198,5448922,,,,,1 +2740,149,37,19,19,16,8,8,8,0,66,,,,,,,11 +2741,149,35,16,10,11,9,9,9,0,66,,,,,,,11 +2742,149,8,15,17,9,10,10,10,0,66,,,,,,,11 +2743,149,21,22,7,15,11,11,11,0,66,,,,,,,11 +2744,149,54,20,23,17,12,12,12,0,65,,,,,,,12 +2745,149,18,22,8,20,13,13,13,0,65,,,,,,,12 +2746,149,4,18,21,21,14,14,14,0,65,,,,,,,12 +2747,149,55,20,22,14,15,15,15,0,64,,,,,,,20 +2748,149,50,21,14,19,,R,16,0,58,,,,,,,5 +2749,149,2,15,16,10,,R,17,0,54,,,,,,,30 +2750,149,49,17,11,8,,R,18,0,48,,,,,,,20 +2751,149,15,17,12,7,,R,19,0,44,,,,,,,7 +2752,149,59,21,15,18,,R,20,0,29,,,,,,,6 +2753,149,44,16,9,13,,R,21,0,23,,,,,,,10 +2754,149,58,18,20,22,,R,22,0,7,,,,,,,10 +2755,150,30,6,1,2,1,1,1,10,72,33:35.6,5615636,,,,,1 +2756,150,23,3,5,1,2,2,2,6,72,10.399,5626035,,,,,1 +2757,150,22,6,2,8,3,3,3,4,72,16.381,5632017,,,,,1 +2758,150,14,1,4,3,4,4,4,3,72,17.106,5632742,,,,,1 +2759,150,15,17,12,5,5,5,5,2,72,+1:08.285,5683921,,,,,1 +2760,150,2,15,16,9,6,6,6,1,71,,,,,,,11 +2761,150,8,15,17,13,7,7,7,0,71,,,,,,,11 +2762,150,49,17,11,7,8,8,8,0,71,,,,,,,11 +2763,150,44,16,9,11,9,9,9,0,71,,,,,,,11 +2764,150,54,20,23,15,10,10,10,0,71,,,,,,,11 +2765,150,21,22,7,16,11,11,11,0,71,,,,,,,11 +2766,150,55,20,22,19,12,12,12,0,70,,,,,,,12 +2767,150,50,21,14,18,13,13,13,0,70,,,,,,,12 +2768,150,37,19,19,14,14,14,14,0,70,,,,,,,12 +2769,150,58,18,20,22,15,15,15,0,69,,,,,,,13 +2770,150,18,22,8,17,16,16,16,0,68,,,,,,,32 +2771,150,4,18,21,21,17,17,17,0,65,,,,,,,5 +2772,150,56,19,18,12,,R,18,0,54,,,,,,,5 +2773,150,31,3,6,6,,R,19,0,52,,,,,,,5 +2774,150,59,21,15,20,,R,20,0,17,,,,,,,5 +2775,150,35,16,10,10,,R,21,0,5,,,,,,,5 +2776,150,57,1,3,4,,W,22,0,0,,,,,,,6 +2777,151,57,1,3,2,1,1,1,10,60,25:33.8,5133770,,,,,1 +2778,151,30,6,1,1,2,2,2,6,60,33.646,5167416,,,,,1 +2779,151,22,6,2,6,3,3,3,4,60,59.281,5193051,,,,,1 +2780,151,31,3,6,8,4,4,4,3,60,+1:08.772,5202542,,,,,1 +2781,151,8,15,17,7,5,5,5,2,59,,,,,,,11 +2782,151,2,15,16,9,6,6,6,1,59,,,,,,,11 +2783,151,49,17,11,5,7,7,7,0,59,,,,,,,11 +2784,151,35,16,10,12,8,8,8,0,59,,,,,,,11 +2785,151,56,19,18,15,9,9,9,0,59,,,,,,,11 +2786,151,50,21,14,17,10,10,10,0,58,,,,,,,12 +2787,151,55,20,22,14,11,11,11,0,58,,,,,,,12 +2788,151,37,19,19,13,12,12,12,0,58,,,,,,,12 +2789,151,21,22,7,19,13,13,13,0,58,,,,,,,12 +2790,151,59,21,15,20,14,14,14,0,58,,,,,,,12 +2791,151,18,22,8,18,15,15,15,0,58,,,,,,,12 +2792,151,4,18,21,21,16,16,16,0,57,,,,,,,13 +2793,151,23,3,5,10,,R,17,0,36,,,,,,,5 +2794,151,54,20,23,16,,R,18,0,6,,,,,,,5 +2795,151,14,1,4,3,,R,19,0,2,,,,,,,22 +2796,151,15,17,12,4,,R,20,0,0,,,,,,,4 +2797,151,44,16,9,11,,R,21,0,0,,,,,,,4 +2798,151,58,18,20,0,,F,22,0,0,,,,,,,77 +2799,152,23,3,5,2,1,1,1,10,45,18:17.9,4697873,,,,,1 +2800,152,22,6,2,6,2,2,2,6,45,46.117,4743990,,,,,1 +2801,152,35,16,10,12,3,3,3,4,45,+1:02.806,4760679,,,,,1 +2802,152,21,22,7,17,4,4,4,3,45,+1:03.477,4761350,,,,,1 +2803,152,18,22,8,18,5,5,5,2,45,+1:05.454,4763327,,,,,1 +2804,152,55,20,22,14,6,6,6,1,45,+1:05.950,4763823,,,,,1 +2805,152,44,16,9,13,7,7,7,0,45,+1:17.527,4775400,,,,,1 +2806,152,59,21,15,19,8,8,8,0,44,,,,,,,11 +2807,152,50,21,14,20,9,9,9,0,44,,,,,,,11 +2808,152,4,18,21,21,10,10,10,0,44,,,,,,,11 +2809,152,15,17,12,10,,R,11,0,34,,,,,,,9 +2810,152,14,1,4,5,,R,12,0,27,,,,,,,5 +2811,152,58,18,20,22,,R,13,0,26,,,,,,,6 +2812,152,31,3,6,1,,R,14,0,24,,,,,,,5 +2813,152,30,6,1,4,,R,15,0,23,,,,,,,32 +2814,152,54,20,23,16,,R,16,0,23,,,,,,,20 +2815,152,8,15,17,8,,R,17,0,16,,,,,,,86 +2816,152,56,19,18,11,,R,18,0,16,,,,,,,32 +2817,152,57,1,3,3,,R,19,0,13,,,,,,,5 +2818,152,41,17,11,15,,R,20,0,7,,,,,,,4 +2819,152,2,15,16,7,,R,21,0,0,,,,,,,4 +2820,152,37,19,19,9,,R,22,0,0,,,,,,,4 +2821,153,30,6,1,1,1,1,1,10,77,41:49.7,6109675,,,,,1 +2822,153,22,6,2,3,2,2,2,6,77,3.363,6113038,,,,,1 +2823,153,14,1,4,2,3,3,3,4,77,3.94,6113615,,,,,1 +2824,153,23,3,5,4,4,4,4,3,77,49.687,6159362,,,,,1 +2825,153,57,1,3,6,5,5,5,2,77,+1:10.293,6179968,,,,,1 +2826,153,2,15,16,7,6,6,6,1,76,,,,,,,11 +2827,153,8,15,17,9,7,7,7,0,76,,,,,,,11 +2828,153,31,3,6,8,8,8,8,0,76,,,,,,,11 +2829,153,35,16,10,10,9,9,9,0,75,,,,,,,12 +2830,153,55,17,12,12,10,10,10,0,75,,,,,,,12 +2831,153,37,19,19,13,11,11,11,0,75,,,,,,,12 +2832,153,50,21,14,21,12,12,12,0,74,,,,,,,13 +2833,153,21,22,7,15,,R,13,0,67,,,,,,,5 +2834,153,49,20,22,16,,R,14,0,63,,,,,,,20 +2835,153,58,18,20,22,,R,15,0,63,,,,,,,51 +2836,153,44,16,9,11,,R,16,0,58,,,,,,,10 +2837,153,15,17,11,5,,R,17,0,53,,,,,,,9 +2838,153,4,18,21,18,,R,18,0,37,,,,,,,23 +2839,153,18,22,8,17,,R,19,0,34,,,,,,,20 +2840,153,59,21,15,20,,R,20,0,11,,,,,,,20 +2841,153,54,20,23,19,,R,21,0,8,,,,,,,20 +2842,153,56,19,18,14,,R,22,0,0,,,,,,,20 +2843,154,30,6,1,3,1,1,1,10,36,08:05.0,4085002,,,,,1 +2844,154,14,1,4,9,2,2,2,6,36,10.098,4095100,,,,,1 +2845,154,21,22,7,8,3,3,3,4,36,27.742,4112744,,,,,1 +2846,154,57,1,3,7,4,4,4,3,36,36.087,4121089,,,,,1 +2847,154,22,6,2,5,5,5,5,2,36,54.521,4139523,,,,,1 +2848,154,55,17,12,13,6,6,6,1,36,59.684,4144686,,,,,1 +2849,154,23,3,5,2,7,7,7,0,36,59.986,4144988,,,,,1 +2850,154,35,16,10,6,8,8,8,0,36,+1:04.970,4149972,,,,,1 +2851,154,49,20,22,4,9,9,9,0,35,,,,,,,11 +2852,154,50,21,14,19,10,10,10,0,35,,,,,,,11 +2853,154,44,16,9,11,11,11,11,0,35,,,,,,,11 +2854,154,59,21,15,21,12,12,12,0,35,,,,,,,11 +2855,154,58,18,20,22,13,13,13,0,31,,,,,,,15 +2856,154,15,17,11,16,,R,14,0,31,,,,,,,5 +2857,154,18,22,8,15,,R,15,0,17,,,,,,,20 +2858,154,31,3,6,1,,R,16,0,1,,,,,,,5 +2859,154,37,19,19,10,,R,17,0,1,,,,,,,4 +2860,154,2,15,16,14,,R,18,0,0,,,,,,,4 +2861,154,8,15,17,12,,R,19,0,0,,,,,,,7 +2862,154,56,19,18,17,,R,20,0,0,,,,,,,4 +2863,154,54,20,23,18,,R,21,0,0,,,,,,,4 +2864,154,4,18,21,20,,R,22,0,0,,,,,,,6 +2865,155,31,3,6,1,1,1,1,10,53,16:58.5,4618493,,,,,1 +2866,155,22,6,2,2,2,2,2,6,53,5.175,4623668,,,,,1 +2867,155,23,3,5,4,3,3,3,4,53,17.335,4635828,,,,,1 +2868,155,30,6,1,3,4,4,4,3,53,24.991,4643484,,,,,1 +2869,155,37,19,19,10,5,5,5,2,53,+1:14.984,4693477,,,,,1 +2870,155,35,16,10,15,6,6,6,1,53,+1:22.469,4700962,,,,,1 +2871,155,8,15,17,9,7,7,7,0,53,+1:23.107,4701600,,,,,1 +2872,155,55,17,12,16,8,8,8,0,52,,,,,,,11 +2873,155,44,16,9,17,9,9,9,0,52,,,,,,,11 +2874,155,21,22,7,14,10,10,10,0,52,,,,,,,11 +2875,155,2,15,16,8,11,11,11,0,52,,,,,,,11 +2876,155,61,20,23,20,12,12,12,0,52,,,,,,,11 +2877,155,4,18,21,21,13,13,13,0,51,,,,,,,12 +2878,155,59,21,15,18,,R,14,0,46,,,,,,,87 +2879,155,62,18,20,22,,R,15,0,44,,,,,,,20 +2880,155,49,20,22,12,,R,16,0,28,,,,,,,6 +2881,155,50,21,14,19,,R,17,0,25,,,,,,,32 +2882,155,57,1,3,7,,R,18,0,19,,,,,,,6 +2883,155,56,19,18,13,,R,19,0,14,,,,,,,5 +2884,155,14,1,4,6,,R,20,0,6,,,,,,,5 +2885,155,18,22,8,11,,R,21,0,4,,,,,,,5 +2886,155,15,17,11,5,,R,22,0,0,,,,,,,4 +2887,156,57,1,3,4,1,1,1,10,73,32:42.8,5562840,,,,,1 +2888,156,30,6,1,1,2,2,2,6,73,11.046,5573886,,,,,1 +2889,156,14,1,4,7,3,3,3,4,73,12.043,5574883,,,,,1 +2890,156,15,17,11,8,4,4,4,3,73,57.423,5620263,,,,,1 +2891,156,56,19,18,14,5,5,5,2,73,+1:12.434,5635274,,,,,1 +2892,156,2,15,16,6,6,6,6,1,73,+1:12.996,5635836,,,,,1 +2893,156,55,17,12,9,7,7,7,0,72,,,,,,,11 +2894,156,21,22,7,12,8,8,8,0,72,,,,,,,11 +2895,156,18,22,8,10,9,9,9,0,72,,,,,,,11 +2896,156,49,20,22,15,10,10,10,0,72,,,,,,,11 +2897,156,44,16,9,13,11,11,11,0,72,,,,,,,11 +2898,156,37,19,19,16,12,12,12,0,72,,,,,,,11 +2899,156,59,21,15,19,13,13,13,0,72,,,,,,,11 +2900,156,61,20,23,21,14,14,14,0,72,,,,,,,11 +2901,156,22,6,2,5,15,15,15,0,71,,,,,,,5 +2902,156,35,16,10,18,,R,16,0,45,,,,,,,22 +2903,156,50,21,14,20,,R,17,0,44,,,,,,,5 +2904,156,31,3,6,3,,R,18,0,38,,,,,,,9 +2905,156,62,18,20,22,,R,19,0,38,,,,,,,6 +2906,156,23,3,5,2,,R,20,0,36,,,,,,,20 +2907,156,4,18,21,17,,R,21,0,36,,,,,,,30 +2908,156,8,15,17,11,,R,22,0,2,,,,,,,30 +2909,157,30,6,1,1,1,1,1,10,53,27:33.3,5253298,,,,,1 +2910,157,31,3,6,2,2,2,2,6,53,3.154,5256452,,,,,1 +2911,157,14,1,4,7,3,3,3,4,53,23.262,5276560,,,,,1 +2912,157,57,1,3,5,4,4,4,3,53,35.539,5288837,,,,,1 +2913,157,22,6,2,4,5,5,5,2,53,36.544,5289842,,,,,1 +2914,157,23,3,5,3,6,6,6,1,53,37.122,5290420,,,,,1 +2915,157,18,22,8,9,7,7,7,0,53,+1:37.102,5350400,,,,,1 +2916,157,15,17,11,8,8,8,8,0,52,,,,,,,11 +2917,157,2,15,16,10,9,9,9,0,52,,,,,,,11 +2918,157,35,16,10,14,10,10,10,0,52,,,,,,,11 +2919,157,4,18,21,18,11,11,11,0,52,,,,,,,11 +2920,157,49,20,22,15,12,12,12,0,52,,,,,,,11 +2921,157,44,16,9,17,13,13,13,0,51,,,,,,,12 +2922,157,59,21,15,20,14,14,14,0,51,,,,,,,12 +2923,157,50,21,14,21,15,15,15,0,51,,,,,,,12 +2924,157,62,18,20,22,16,16,16,0,50,,,,,,,13 +2925,157,21,22,7,6,17,17,17,0,47,,,,,,,6 +2926,157,37,19,19,16,,R,18,0,45,,,,,,,44 +2927,157,61,20,23,19,,R,19,0,42,,,,,,,23 +2928,157,56,19,18,13,,R,20,0,24,,,,,,,71 +2929,157,8,15,17,12,,R,21,0,5,,,,,,,4 +2930,157,55,17,12,11,,R,22,0,5,,,,,,,4 +2931,158,30,6,3,3,1,1,1,10,58,34:02.0,5641987,,,,,1 +2932,158,22,6,4,4,2,2,2,6,58,11.415,5653402,,,,,1 +2933,158,23,3,9,11,3,3,3,4,58,20.009,5661996,,,,,1 +2934,158,35,16,22,8,4,4,4,3,58,44.447,5686434,,,,,1 +2935,158,21,22,11,9,5,5,5,2,58,45.165,5687152,,,,,1 +2936,158,41,16,23,16,6,6,6,1,58,46.468,5688455,,,,,1 +2937,158,25,22,12,14,7,7,7,0,58,46.915,5688902,,,,,1 +2938,158,48,18,20,18,8,8,8,0,57,,,,,,,11 +2939,158,2,20,15,15,9,9,9,0,56,,,,,,,12 +2940,158,63,15,17,10,,D,10,0,58,,,,,,,2 +2941,158,18,3,10,21,,R,11,0,46,,,,,,,5 +2942,158,64,15,16,19,,R,12,0,41,,,,,,,7 +2943,158,60,18,21,22,,R,13,0,40,,,,,,,6 +2944,158,49,17,5,5,,R,14,0,39,,,,,,,9 +2945,158,15,17,6,6,,R,15,0,35,,,,,,,5 +2946,158,55,20,14,17,,R,16,0,27,,,,,,,9 +2947,158,57,1,1,1,,R,17,0,18,,,,,,,5 +2948,158,50,21,19,13,,R,18,0,16,,,,,,,22 +2949,158,14,1,2,2,,R,19,0,11,,,,,,,5 +2950,158,37,21,18,12,,R,20,0,6,,,,,,,22 +2951,158,56,19,7,7,,R,21,0,6,,,,,,,20 +2952,158,65,19,8,20,,R,22,0,1,,,,,,,8 +2953,159,30,6,3,3,1,1,1,10,71,31:35.3,5495271,,,,,1 +2954,159,21,22,11,5,2,2,2,6,71,39.898,5535169,,,,,1 +2955,159,49,17,5,7,3,3,3,4,71,42.268,5537539,,,,,1 +2956,159,15,17,6,12,4,4,4,3,71,+1:12.780,5568051,,,,,1 +2957,159,23,3,9,11,5,5,5,2,70,,,,,,,11 +2958,159,18,3,10,9,6,6,6,1,70,,,,,,,11 +2959,159,50,21,19,14,7,7,7,0,70,,,,,,,11 +2960,159,37,21,18,16,8,8,8,0,70,,,,,,,11 +2961,159,41,16,23,8,9,9,9,0,69,,,,,,,12 +2962,159,60,18,21,20,10,10,10,0,69,,,,,,,12 +2963,159,14,1,2,2,,D,11,0,71,,,,,,,2 +2964,159,65,19,8,17,,R,12,0,51,,,,,,,6 +2965,159,48,18,20,18,,R,13,0,31,,,,,,,5 +2966,159,57,1,1,1,,R,14,0,30,,,,,,,51 +2967,159,22,6,4,4,,R,15,0,27,,,,,,,9 +2968,159,56,19,7,6,,R,16,0,20,,,,,,,20 +2969,159,35,16,22,10,,R,17,0,16,,,,,,,6 +2970,159,55,20,14,15,,R,18,0,11,,,,,,,10 +2971,159,2,20,15,19,,R,19,0,9,,,,,,,5 +2972,159,25,22,12,13,,R,20,0,6,,,,,,,5 +2973,159,64,15,16,0,,W,21,0,0,,,,,,,89 +2974,159,63,15,17,0,,W,22,0,0,,,,,,,89 +2975,160,30,6,3,2,1,1,1,10,62,31:39.8,5499776,,,,,1 +2976,160,57,1,1,1,2,2,2,6,62,1.168,5500944,,,,,1 +2977,160,14,1,2,3,3,3,3,4,62,51.008,5550784,,,,,1 +2978,160,22,6,4,4,4,4,4,3,62,+1:29.276,5589052,,,,,1 +2979,160,35,16,22,9,5,5,5,2,61,,,,,,,11 +2980,160,63,15,17,12,6,6,6,1,61,,,,,,,11 +2981,160,56,19,7,7,7,7,7,0,61,,,,,,,11 +2982,160,64,15,16,10,8,8,8,0,61,,,,,,,11 +2983,160,25,22,12,11,9,9,9,0,61,,,,,,,11 +2984,160,65,19,8,17,10,10,10,0,61,,,,,,,11 +2985,160,21,22,11,19,11,11,11,0,61,,,,,,,11 +2986,160,41,16,23,14,12,12,12,0,61,,,,,,,11 +2987,160,60,18,21,20,13,13,13,0,60,,,,,,,12 +2988,160,50,21,19,16,14,14,14,0,59,,,,,,,13 +2989,160,15,17,6,8,15,15,15,0,58,,,,,,,6 +2990,160,37,21,18,13,,R,16,0,49,,,,,,,20 +2991,160,23,3,9,5,,R,17,0,45,,,,,,,69 +2992,160,55,20,14,15,,R,18,0,25,,,,,,,9 +2993,160,2,20,15,22,,R,19,0,22,,,,,,,9 +2994,160,18,3,10,18,,R,20,0,5,,,,,,,5 +2995,160,48,18,20,21,,R,21,0,5,,,,,,,20 +2996,160,49,17,5,6,,R,22,0,4,,,,,,,6 +2997,161,14,1,2,4,1,1,1,10,60,28:50.1,5330108,,,,,1 +2998,161,57,1,1,3,2,2,2,6,60,1.477,5331585,,,,,1 +2999,161,30,6,3,5,3,3,3,4,60,19.917,5350025,,,,,1 +3000,161,23,3,9,7,4,4,4,3,60,41.312,5371420,,,,,1 +3001,161,18,3,10,6,5,5,5,2,60,57.759,5387867,,,,,1 +3002,161,15,17,6,11,6,6,6,1,60,+1:19.273,5409381,,,,,1 +3003,161,21,22,11,12,7,7,7,0,59,,,,,,,11 +3004,161,63,15,17,18,8,8,8,0,59,,,,,,,11 +3005,161,25,22,12,20,9,9,9,0,59,,,,,,,11 +3006,161,55,20,14,15,10,10,10,0,59,,,,,,,11 +3007,161,64,15,16,13,11,11,11,0,59,,,,,,,11 +3008,161,65,19,8,14,12,12,12,0,59,,,,,,,11 +3009,161,56,19,7,9,13,13,13,0,59,,,,,,,11 +3010,161,48,18,20,21,14,14,14,0,59,,,,,,,11 +3011,161,60,18,21,22,15,15,15,0,59,,,,,,,11 +3012,161,35,16,22,10,16,16,16,0,56,,,,,,,14 +3013,161,49,17,5,2,17,17,17,0,54,,,,,,,16 +3014,161,2,20,15,17,,R,18,0,51,,,,,,,5 +3015,161,41,16,23,16,,R,19,0,36,,,,,,,20 +3016,161,22,6,4,1,,R,20,0,35,,,,,,,9 +3017,161,37,21,18,19,,R,21,0,26,,,,,,,10 +3018,161,50,21,19,8,,R,22,0,20,,,,,,,10 +3019,162,57,1,1,2,1,1,1,10,65,33:55.4,5635390,,,,,1 +3020,162,14,1,2,4,2,2,2,6,65,16.066,5651456,,,,,1 +3021,162,22,6,4,3,3,3,3,4,65,29.112,5664502,,,,,1 +3022,162,23,3,9,5,4,4,4,3,65,37.311,5672701,,,,,1 +3023,162,30,6,3,1,5,5,5,2,65,47.983,5683373,,,,,1 +3024,162,49,17,5,8,6,6,6,1,65,+1:21.925,5717315,,,,,1 +3025,162,63,15,17,12,7,7,7,0,64,,,,,,,11 +3026,162,41,16,23,16,8,8,8,0,64,,,,,,,11 +3027,162,21,22,11,13,9,9,9,0,64,,,,,,,11 +3028,162,25,22,12,18,10,10,10,0,64,,,,,,,11 +3029,162,56,19,7,9,11,11,11,0,64,,,,,,,11 +3030,162,15,17,6,7,12,12,12,0,64,,,,,,,11 +3031,162,65,19,8,14,13,13,13,0,64,,,,,,,11 +3032,162,48,18,20,20,14,14,14,0,63,,,,,,,12 +3033,162,60,18,21,21,15,15,15,0,63,,,,,,,12 +3034,162,2,20,15,19,16,16,16,0,62,,,,,,,13 +3035,162,18,3,10,10,17,17,17,0,61,,,,,,,5 +3036,162,50,21,19,11,,R,18,0,25,,,,,,,6 +3037,162,35,16,22,6,,R,19,0,21,,,,,,,9 +3038,162,55,20,14,17,,R,20,0,1,,,,,,,4 +3039,162,37,21,18,22,,R,21,0,1,,,,,,,4 +3040,162,64,15,16,15,,R,22,0,0,,,,,,,20 +3041,163,30,6,3,2,1,1,1,10,67,42:00.3,6120307,,,,,1 +3042,163,57,1,1,3,2,2,2,6,67,13.822,6134129,,,,,1 +3043,163,14,1,2,1,3,3,3,4,66,,,,,,,11 +3044,163,22,6,4,4,4,4,4,3,66,,,,,,,11 +3045,163,21,22,11,7,5,5,5,2,66,,,,,,,11 +3046,163,37,21,18,12,6,6,6,1,66,,,,,,,11 +3047,163,64,15,16,15,7,7,7,0,65,,,,,,,12 +3048,163,60,18,21,21,8,8,8,0,65,,,,,,,12 +3049,163,55,20,14,17,9,9,9,0,65,,,,,,,12 +3050,163,18,3,10,11,10,10,10,0,62,,,,,,,10 +3051,163,65,19,8,16,11,11,11,0,61,,,,,,,4 +3052,163,25,22,12,14,12,12,12,0,61,,,,,,,4 +3053,163,41,16,23,18,,R,13,0,51,,,,,,,20 +3054,163,48,18,20,20,,R,14,0,47,,,,,,,37 +3055,163,35,16,22,9,,R,15,0,46,,,,,,,5 +3056,163,56,19,7,8,,R,16,0,29,,,,,,,4 +3057,163,50,21,19,13,,R,17,0,29,,,,,,,20 +3058,163,23,3,9,5,,R,18,0,29,,,,,,,4 +3059,163,63,15,17,19,,R,19,0,27,,,,,,,86 +3060,163,49,17,5,10,,R,20,0,2,,,,,,,5 +3061,163,15,17,6,6,,R,21,0,0,,,,,,,4 +3062,164,14,1,2,3,1,1,1,10,78,49:28.2,6568213,,,,,1 +3063,164,22,6,4,6,2,2,2,6,78,15.889,6584102,,,,,1 +3064,164,21,22,11,8,3,3,3,4,78,18.522,6586735,,,,,1 +3065,164,56,19,7,10,4,4,4,3,78,+1:05.924,6634137,,,,,1 +3066,164,63,15,17,13,5,5,5,2,78,+1:20.775,6648988,,,,,1 +3067,164,57,1,1,5,6,6,6,1,77,,,,,,,11 +3068,164,35,16,22,17,7,7,7,0,77,,,,,,,11 +3069,164,2,20,15,18,8,8,8,0,77,,,,,,,11 +3070,164,65,19,8,11,9,9,9,0,76,,,,,,,12 +3071,164,49,17,5,4,10,10,10,0,70,,,,,,,20 +3072,164,50,21,19,15,,R,11,0,60,,,,,,,20 +3073,164,30,6,3,1,,R,12,0,55,,,,,,,22 +3074,164,41,16,23,20,,R,13,0,48,,,,,,,20 +3075,164,23,3,9,9,,R,14,0,37,,,,,,,20 +3076,164,15,17,6,2,,R,15,0,36,,,,,,,6 +3077,164,64,15,16,19,,R,16,0,30,,,,,,,20 +3078,164,55,20,14,7,,R,17,0,29,,,,,,,7 +3079,164,60,18,21,22,,R,18,0,22,,,,,,,20 +3080,164,48,18,20,21,,R,19,0,21,,,,,,,6 +3081,164,25,22,12,12,,R,20,0,18,,,,,,,20 +3082,164,18,3,10,14,,R,21,0,16,,,,,,,5 +3083,164,37,21,18,16,,R,22,0,0,,,,,,,90 +3084,165,30,6,3,1,1,1,1,10,69,41:12.3,6072313,,,,,1 +3085,165,22,6,4,3,2,2,2,6,69,0.174,6072487,,,,,1 +3086,165,21,22,11,10,3,3,3,4,69,15.365,6087678,,,,,1 +3087,165,57,1,1,4,4,4,4,3,69,18.561,6090874,,,,,1 +3088,165,50,21,19,13,5,5,5,2,69,52.208,6124521,,,,,1 +3089,165,15,17,6,7,6,6,6,1,69,+1:01.687,6134000,,,,,1 +3090,165,14,1,2,2,7,7,7,0,69,+1:02.216,6134529,,,,,1 +3091,165,41,16,23,8,8,8,8,0,69,+1:10.455,6142768,,,,,1 +3092,165,25,22,12,14,9,9,9,0,69,+1:19.899,6152212,,,,,1 +3093,165,64,15,16,19,10,10,10,0,69,+1:54.544,6186857,,,,,1 +3094,165,18,3,10,18,11,11,11,0,68,,,,,,,11 +3095,165,60,18,21,22,12,12,12,0,68,,,,,,,11 +3096,165,56,19,7,16,13,13,13,0,66,,,,,,,13 +3097,165,23,3,9,12,14,14,14,0,64,,,,,,,4 +3098,165,35,16,22,6,15,15,15,0,64,,,,,,,4 +3099,165,48,18,20,20,16,16,16,0,64,,,,,,,20 +3100,165,37,21,18,9,,R,17,0,48,,,,,,,4 +3101,165,63,15,17,15,,R,18,0,42,,,,,,,10 +3102,165,55,20,14,17,,R,19,0,38,,,,,,,10 +3103,165,2,20,15,21,,R,20,0,34,,,,,,,5 +3104,165,49,17,5,5,,R,21,0,32,,,,,,,23 +3105,165,65,19,8,11,,R,22,0,14,,,,,,,6 +3106,166,14,1,2,2,1,1,1,10,72,38:05.5,5885538,,,,,1 +3107,166,57,1,1,4,2,2,2,6,72,14.748,5900286,,,,,1 +3108,166,22,6,4,3,3,3,3,4,72,32.409,5917947,,,,,1 +3109,166,35,16,22,7,4,4,4,3,72,+1:01.322,5946860,,,,,1 +3110,166,23,3,9,5,5,5,5,2,72,+1:03.981,5949519,,,,,1 +3111,166,15,17,6,9,6,6,6,1,72,+1:15.605,5961143,,,,,1 +3112,166,49,17,5,8,7,7,7,0,71,,,,,,,11 +3113,166,18,3,10,10,8,8,8,0,71,,,,,,,11 +3114,166,21,22,11,14,9,9,9,0,71,,,,,,,11 +3115,166,63,15,17,12,10,10,10,0,71,,,,,,,11 +3116,166,64,15,16,15,11,11,11,0,71,,,,,,,11 +3117,166,2,20,15,16,12,12,12,0,71,,,,,,,11 +3118,166,56,19,7,6,13,13,13,0,70,,,,,,,12 +3119,166,55,20,14,18,14,14,14,0,70,,,,,,,12 +3120,166,48,18,20,21,15,15,15,0,70,,,,,,,12 +3121,166,30,6,3,1,,R,16,0,58,,,,,,,5 +3122,166,37,21,18,13,,R,17,0,45,,,,,,,7 +3123,166,25,22,12,17,,R,18,0,34,,,,,,,20 +3124,166,60,18,21,22,,R,19,0,31,,,,,,,20 +3125,166,50,21,19,20,,R,20,0,25,,,,,,,7 +3126,166,65,19,8,11,,R,21,0,20,,,,,,,6 +3127,166,41,16,23,19,,R,22,0,16,,,,,,,20 +3128,167,57,1,1,1,1,1,1,10,71,28:15.8,5295818,,,,,1 +3129,167,14,1,2,2,2,2,2,6,71,12.535,5308353,,,,,1 +3130,167,22,6,4,3,3,3,3,4,71,30.795,5326613,,,,,1 +3131,167,35,16,22,7,4,4,4,3,70,,,,,,,11 +3132,167,18,3,10,18,5,5,5,2,70,,,,,,,11 +3133,167,63,15,17,9,6,6,6,1,70,,,,,,,11 +3134,167,65,19,8,16,7,7,7,0,70,,,,,,,11 +3135,167,48,18,20,20,8,8,8,0,70,,,,,,,11 +3136,167,64,15,16,11,9,9,9,0,70,,,,,,,11 +3137,167,25,22,12,14,10,10,10,0,70,,,,,,,11 +3138,167,54,19,7,21,11,11,11,0,69,,,,,,,12 +3139,167,60,18,21,22,12,12,12,0,68,,,,,,,13 +3140,167,41,16,23,6,,R,13,0,58,,,,,,,5 +3141,167,23,3,9,19,,R,14,0,52,,,,,,,23 +3142,167,2,20,15,13,,R,15,0,41,,,,,,,4 +3143,167,55,20,14,17,,R,16,0,41,,,,,,,4 +3144,167,37,21,18,12,,R,17,0,32,,,,,,,6 +3145,167,50,21,19,10,,R,18,0,14,,,,,,,5 +3146,167,49,17,5,15,,R,19,0,4,,,,,,,44 +3147,167,30,6,3,4,,R,20,0,0,,,,,,,4 +3148,167,15,17,6,5,,R,21,0,0,,,,,,,4 +3149,167,21,22,11,8,,R,22,0,0,,,,,,,4 +3150,168,22,6,4,18,1,1,1,10,45,25:34.4,5134418,,,,,1 +3151,168,57,1,1,4,2,2,2,6,45,7.452,5141870,,,,,1 +3152,168,14,1,2,1,3,3,3,4,45,21.168,5155586,,,,,1 +3153,168,18,3,10,16,4,4,4,3,45,22.685,5157103,,,,,1 +3154,168,63,15,17,15,5,5,5,2,45,27.112,5161530,,,,,1 +3155,168,37,21,18,5,6,6,6,1,45,29.08,5163498,,,,,1 +3156,168,23,3,9,14,7,7,7,0,45,30.898,5165316,,,,,1 +3157,168,35,16,22,9,8,8,8,0,45,47.537,5181955,,,,,1 +3158,168,15,17,6,6,9,9,9,0,45,50.901,5185319,,,,,1 +3159,168,56,19,7,10,10,10,10,0,45,+1:19.664,5214082,,,,,1 +3160,168,60,18,21,21,11,11,11,0,45,+1:29.504,5223922,,,,,1 +3161,168,2,20,15,13,12,12,12,0,40,,,,,,,91 +3162,168,49,17,5,17,,R,13,0,39,,,,,,,6 +3163,168,50,21,19,11,,R,14,0,39,,,,,,,20 +3164,168,41,16,23,12,,R,15,0,37,,,,,,,20 +3165,168,48,18,20,22,,R,16,0,33,,,,,,,5 +3166,168,25,22,12,7,,R,17,0,31,,,,,,,10 +3167,168,64,15,16,19,,R,18,0,29,,,,,,,4 +3168,168,55,20,14,20,,R,19,0,29,,,,,,,4 +3169,168,65,19,8,8,,R,20,0,12,,,,,,,6 +3170,168,30,6,3,2,,R,21,0,0,,,,,,,4 +3171,168,21,22,11,3,,R,22,0,0,,,,,,,4 +3172,169,57,1,1,3,1,1,1,10,77,45:33.9,6333869,,,,,1 +3173,169,30,6,3,1,2,2,2,6,77,7.917,6341786,,,,,1 +3174,169,14,1,2,2,3,3,3,4,77,8.455,6342324,,,,,1 +3175,169,22,6,4,5,4,4,4,3,77,44.157,6378026,,,,,1 +3176,169,23,3,9,4,5,5,5,2,77,50.437,6384306,,,,,1 +3177,169,49,17,5,6,6,6,6,1,77,+1:08.099,6401968,,,,,1 +3178,169,15,17,6,12,7,7,7,0,76,,,,,,,11 +3179,169,56,19,7,10,8,8,8,0,76,,,,,,,11 +3180,169,18,3,10,8,9,9,9,0,76,,,,,,,11 +3181,169,63,15,17,9,10,10,10,0,76,,,,,,,11 +3182,169,25,22,12,11,11,11,11,0,76,,,,,,,11 +3183,169,35,16,22,16,12,12,12,0,75,,,,,,,12 +3184,169,50,21,19,20,13,13,13,0,75,,,,,,,12 +3185,169,41,16,23,18,14,14,14,0,75,,,,,,,12 +3186,169,48,18,20,21,15,15,15,0,74,,,,,,,13 +3187,169,37,21,18,15,16,16,16,0,73,,,,,,,14 +3188,169,60,18,21,22,,R,17,0,68,,,,,,,5 +3189,169,65,19,8,17,,R,18,0,67,,,,,,,6 +3190,169,64,15,16,13,,R,19,0,62,,,,,,,7 +3191,169,21,22,11,7,,R,20,0,31,,,,,,,23 +3192,169,2,20,15,19,,R,21,0,22,,,,,,,10 +3193,169,55,20,14,14,,R,22,0,11,,,,,,,22 +3194,170,57,1,1,1,1,1,1,10,44,28:14.5,5294494,,,,,1 +3195,170,30,6,3,4,2,2,2,6,44,1.104,5295598,,,,,1 +3196,170,23,3,9,6,3,3,3,4,44,38.096,5332590,,,,,1 +3197,170,14,1,2,5,4,4,4,3,44,43.281,5337775,,,,,1 +3198,170,18,3,10,3,5,5,5,2,44,49.914,5344408,,,,,1 +3199,170,49,17,5,8,6,6,6,1,44,55.984,5350478,,,,,1 +3200,170,35,16,22,7,7,7,7,0,44,+1:12.380,5366874,,,,,1 +3201,170,65,19,8,9,8,8,8,0,44,+1:27.808,5382302,,,,,1 +3202,170,63,15,17,18,9,9,9,0,44,+1:28.670,5383164,,,,,1 +3203,170,56,19,7,12,10,10,10,0,44,+1:31.555,5386049,,,,,1 +3204,170,64,15,16,15,11,11,11,0,44,+1:34.123,5388617,,,,,1 +3205,170,41,16,23,13,12,12,12,0,43,,,,,,,11 +3206,170,25,22,12,19,13,13,13,0,43,,,,,,,11 +3207,170,48,18,20,21,14,14,14,0,43,,,,,,,11 +3208,170,50,21,19,20,15,15,15,0,43,,,,,,,11 +3209,170,37,21,18,16,16,16,16,0,42,,,,,,,12 +3210,170,60,18,21,22,17,17,17,0,42,,,,,,,12 +3211,170,22,6,4,10,,R,18,0,32,,,,,,,32 +3212,170,55,20,14,17,,R,19,0,32,,,,,,,32 +3213,170,2,20,15,14,,R,20,0,12,,,,,,,5 +3214,170,21,22,11,11,,R,21,0,8,,,,,,,10 +3215,170,15,17,6,2,,R,22,0,4,,,,,,,4 +3216,171,30,6,3,1,1,1,1,10,53,27:31.6,5251638,,,,,1 +3217,171,57,1,1,3,2,2,2,6,53,3.81,5255448,,,,,1 +3218,171,23,3,9,7,3,3,3,4,53,52.432,5304070,,,,,1 +3219,171,50,21,19,11,4,4,4,3,53,59.938,5311576,,,,,1 +3220,171,25,22,12,13,5,5,5,2,53,+1:07.426,5319064,,,,,1 +3221,171,41,16,23,17,6,6,6,1,53,+1:09.293,5320931,,,,,1 +3222,171,63,15,17,15,7,7,7,0,52,,,,,,,11 +3223,171,64,15,16,16,8,8,8,0,52,,,,,,,11 +3224,171,48,18,20,21,9,9,9,0,52,,,,,,,11 +3225,171,60,18,21,22,10,10,10,0,52,,,,,,,11 +3226,171,21,22,11,9,11,11,11,0,52,,,,,,,11 +3227,171,55,20,14,19,12,12,12,0,51,,,,,,,12 +3228,171,2,20,15,20,,R,13,0,15,,,,,,,20 +3229,171,35,16,22,4,,R,14,0,14,,,,,,,10 +3230,171,18,3,10,12,,R,15,0,10,,,,,,,20 +3231,171,65,19,8,18,,R,16,0,1,,,,,,,4 +3232,171,22,6,4,2,,R,17,0,0,,,,,,,4 +3233,171,14,1,2,5,,R,18,0,0,,,,,,,4 +3234,171,15,17,6,6,,R,19,0,0,,,,,,,4 +3235,171,49,17,5,8,,R,20,0,0,,,,,,,4 +3236,171,37,21,18,10,,R,21,0,0,,,,,,,4 +3237,171,56,19,7,14,,R,22,0,0,,,,,,,20 +3238,172,30,6,3,1,1,1,1,10,73,36:30.9,5790883,,,,,1 +3239,172,22,6,4,4,2,2,2,6,73,12.118,5803001,,,,,1 +3240,172,49,17,5,7,3,3,3,4,73,17.368,5808251,,,,,1 +3241,172,35,16,22,8,4,4,4,3,73,17.936,5808819,,,,,1 +3242,172,14,1,2,2,5,5,5,2,73,28.813,5819696,,,,,1 +3243,172,41,16,23,12,6,6,6,1,73,51.694,5842577,,,,,1 +3244,172,56,19,7,17,7,7,7,0,73,+1:11.115,5861998,,,,,1 +3245,172,64,15,16,9,8,8,8,0,72,,,,,,,11 +3246,172,2,20,15,16,9,9,9,0,72,,,,,,,11 +3247,172,25,22,12,11,10,10,10,0,72,,,,,,,11 +3248,172,65,19,8,19,11,11,11,0,72,,,,,,,11 +3249,172,48,18,20,22,12,12,12,0,72,,,,,,,11 +3250,172,55,20,14,20,,R,13,0,64,,,,,,,5 +3251,172,60,18,21,21,,R,14,0,59,,,,,,,5 +3252,172,23,3,9,10,,R,15,0,58,,,,,,,5 +3253,172,37,21,18,18,,R,16,0,45,,,,,,,6 +3254,172,21,22,11,15,,R,17,0,44,,,,,,,5 +3255,172,50,21,19,13,,R,18,0,34,,,,,,,23 +3256,172,57,1,1,3,,R,19,0,25,,,,,,,5 +3257,172,63,15,17,14,,R,20,0,18,,,,,,,20 +3258,172,18,3,10,6,,R,21,0,14,,,,,,,5 +3259,172,15,17,6,5,,R,22,0,12,,,,,,,4 +3260,173,30,6,3,1,1,1,1,10,53,29:53.4,5393435,,,,,1 +3261,173,57,1,1,2,2,2,2,6,53,1.837,5395272,,,,,1 +3262,173,14,1,2,3,3,3,3,4,53,+1:09.914,5463349,,,,,1 +3263,173,22,6,4,4,4,4,4,3,53,+1:19.191,5472626,,,,,1 +3264,173,18,3,10,5,5,5,5,2,53,+1:25.694,5479129,,,,,1 +3265,173,35,16,22,9,6,6,6,1,52,,,,,,,11 +3266,173,65,19,8,10,7,7,7,0,52,,,,,,,11 +3267,173,56,19,7,7,8,8,8,0,52,,,,,,,11 +3268,173,41,16,23,18,9,9,9,0,52,,,,,,,11 +3269,173,63,15,17,19,10,10,10,0,52,,,,,,,11 +3270,173,64,15,16,20,11,11,11,0,52,,,,,,,11 +3271,173,37,21,18,13,12,12,12,0,52,,,,,,,11 +3272,173,15,17,6,15,13,13,13,0,52,,,,,,,11 +3273,173,21,22,11,12,14,14,14,0,52,,,,,,,11 +3274,173,60,18,21,22,15,15,15,0,51,,,,,,,12 +3275,173,48,18,20,21,,R,16,0,46,,,,,,,5 +3276,173,23,3,9,6,,R,17,0,41,,,,,,,20 +3277,173,2,20,15,16,,R,18,0,41,,,,,,,22 +3278,173,25,22,12,11,,R,19,0,37,,,,,,,20 +3279,173,49,17,5,8,,R,20,0,29,,,,,,,9 +3280,173,55,20,14,17,,R,21,0,19,,,,,,,5 +3281,173,50,21,19,14,,R,22,0,9,,,,,,,10 +3282,174,30,6,3,1,1,1,1,10,56,35:54.2,5754235,,,,,1 +3283,174,14,1,2,3,2,2,2,6,56,0.732,5754967,,,,,1 +3284,174,22,6,4,4,3,3,3,4,56,18.444,5772679,,,,,1 +3285,174,57,1,1,2,4,4,4,3,56,35.269,5789504,,,,,1 +3286,174,35,16,22,6,5,5,5,2,56,+1:10.692,5824927,,,,,1 +3287,174,56,19,7,7,6,6,6,1,56,+1:12.568,5826803,,,,,1 +3288,174,25,22,12,5,7,7,7,0,56,+1:29.314,5843549,,,,,1 +3289,174,63,15,17,17,8,8,8,0,55,,,,,,,11 +3290,174,21,22,11,13,9,9,9,0,55,,,,,,,11 +3291,174,50,21,19,15,10,10,10,0,55,,,,,,,11 +3292,174,55,20,14,18,11,11,11,0,55,,,,,,,11 +3293,174,15,17,6,9,12,12,12,0,55,,,,,,,11 +3294,174,60,18,21,22,13,13,13,0,50,,,,,,,5 +3295,174,65,19,8,12,,R,14,0,48,,,,,,,22 +3296,174,41,16,23,11,,R,15,0,46,,,,,,,5 +3297,174,23,3,9,8,,R,16,0,43,,,,,,,5 +3298,174,48,18,20,21,,R,17,0,36,,,,,,,36 +3299,174,18,3,10,16,,R,18,0,18,,,,,,,5 +3300,174,49,17,5,10,,R,19,0,7,,,,,,,10 +3301,174,37,21,18,14,,R,20,0,0,,,,,,,4 +3302,174,2,20,15,19,,R,21,0,0,,,,,,,4 +3303,174,64,15,16,20,,R,22,0,0,,,,,,,4 +3304,175,56,6,4,6,1,1,1,10,57,35:01.7,5701659,,,,,1 +3305,175,49,17,8,5,2,2,2,6,57,1.027,5702686,,,,,1 +3306,175,23,3,6,8,3,3,3,4,57,7.012,5708671,,,,,1 +3307,175,21,22,9,7,4,4,4,3,57,33.418,5735077,,,,,1 +3308,175,22,24,16,4,5,5,5,2,57,54.698,5756357,,,,,1 +3309,175,37,21,14,18,6,6,6,1,57,+1:24.317,5785976,,,,,1 +3310,175,68,21,15,17,7,7,7,0,57,+1:26.288,5787947,,,,,1 +3311,175,30,6,3,3,8,8,8,0,56,,,,,,,11 +3312,175,41,16,23,19,,R,9,0,48,,,,,,,6 +3313,175,69,18,20,21,,R,10,0,42,,,,,,,6 +3314,175,25,22,10,10,,R,11,0,28,,,,,,,22 +3315,175,64,15,12,14,,R,12,0,27,,,,,,,7 +3316,175,48,18,21,22,,R,13,0,25,,,,,,,4 +3317,175,15,20,19,12,,R,14,0,25,,,,,,,4 +3318,175,44,20,18,20,,R,15,0,23,,,,,,,36 +3319,175,57,1,1,1,,R,16,0,21,,,,,,,37 +3320,175,70,3,5,15,,R,17,0,20,,,,,,,20 +3321,175,14,1,2,2,,R,18,0,13,,,,,,,9 +3322,175,35,16,22,11,,R,19,0,13,,,,,,,65 +3323,175,71,17,7,9,,R,20,0,0,,,,,,,4 +3324,175,55,15,11,16,,R,21,0,0,,,,,,,6 +3325,175,65,24,17,13,,W,22,0,0,,,,,,,66 +3326,176,57,1,1,1,1,1,1,10,72,36:03.8,5763785,,,,,1 +3327,176,30,6,3,4,2,2,2,6,72,4.925,5768710,,,,,1 +3328,176,49,17,8,8,3,3,3,4,71,,,,,,,60 +3329,176,23,3,6,11,4,4,4,3,71,,,,,,,11 +3330,176,56,6,4,6,5,5,5,2,71,,,,,,,11 +3331,176,44,20,18,12,6,6,6,1,71,,,,,,,11 +3332,176,25,22,10,9,7,7,7,0,70,,,,,,,12 +3333,176,68,21,15,19,8,8,8,0,69,,,,,,,13 +3334,176,48,18,21,20,9,9,9,0,69,,,,,,,13 +3335,176,37,21,14,17,,R,10,0,52,,,,,,,9 +3336,176,35,16,22,21,,R,11,0,49,,,,,,,9 +3337,176,70,3,5,16,,R,12,0,43,,,,,,,6 +3338,176,22,24,16,3,,R,13,0,42,,,,,,,5 +3339,176,64,15,12,15,,R,14,0,42,,,,,,,4 +3340,176,21,22,9,5,,R,15,0,38,,,,,,,8 +3341,176,72,18,20,18,,R,16,0,31,,,,,,,20 +3342,176,55,15,11,14,,R,17,0,27,,,,,,,6 +3343,176,14,1,2,2,,R,18,0,22,,,,,,,6 +3344,176,15,20,19,13,,R,19,0,21,,,,,,,6 +3345,176,65,24,17,10,,R,20,0,15,,,,,,,9 +3346,176,71,17,7,7,,R,21,0,10,,,,,,,4 +3347,176,41,16,23,0,,F,22,0,0,,,,,,,81 +3348,177,30,6,3,3,1,1,1,10,62,33:44.8,5624792,,,,,1 +3349,177,14,1,2,2,2,2,2,6,62,4.265,5629057,,,,,1 +3350,177,22,24,16,6,3,3,3,4,61,,,,,,,11 +3351,177,71,17,7,8,4,4,4,3,61,,,,,,,11 +3352,177,21,22,9,16,5,5,5,2,61,,,,,,,11 +3353,177,55,15,11,13,6,6,6,1,61,,,,,,,11 +3354,177,63,16,23,19,7,7,7,0,59,,,,,,,13 +3355,177,69,18,20,22,8,8,8,0,59,,,,,,,13 +3356,177,48,18,21,21,9,9,9,0,59,,,,,,,13 +3357,177,65,24,17,12,10,10,10,0,58,,,,,,,5 +3358,177,70,3,5,10,11,11,11,0,58,,,,,,,20 +3359,177,64,15,12,15,,R,12,0,49,,,,,,,20 +3360,177,44,20,18,11,,R,13,0,48,,,,,,,37 +3361,177,56,6,4,4,,R,14,0,46,,,,,,,5 +3362,177,49,17,8,7,,R,15,0,46,,,,,,,20 +3363,177,68,21,15,20,,R,16,0,29,,,,,,,32 +3364,177,23,3,6,9,,R,17,0,28,,,,,,,37 +3365,177,57,1,1,1,,R,18,0,17,,,,,,,20 +3366,177,37,21,14,18,,R,19,0,5,,,,,,,20 +3367,177,25,22,10,17,,R,20,0,5,,,,,,,20 +3368,177,35,16,22,14,,R,21,0,0,,,,,,,6 +3369,177,15,20,19,5,,R,22,0,0,,,,,,,20 +3370,178,30,6,3,2,1,1,1,10,78,49:31.8,6571812,,,,,1 +3371,178,56,6,4,4,2,2,2,6,78,30.476,6602288,,,,,1 +3372,178,57,1,1,1,3,3,3,4,78,37.483,6609295,,,,,1 +3373,178,49,17,8,6,4,4,4,3,78,54.009,6625821,,,,,1 +3374,178,21,22,9,9,5,5,5,2,77,,,,,,,11 +3375,178,25,22,10,10,6,6,6,1,77,,,,,,,11 +3376,178,15,20,19,7,7,7,7,0,77,,,,,,,11 +3377,178,70,3,5,11,8,8,8,0,76,,,,,,,12 +3378,178,22,24,16,5,9,9,9,0,71,,,,,,,20 +3379,178,23,3,6,16,,R,10,0,54,,,,,,,20 +3380,178,55,15,11,14,,R,11,0,50,,,,,,,22 +3381,178,64,15,12,15,,R,12,0,49,,,,,,,22 +3382,178,44,20,18,18,,R,13,0,40,,,,,,,5 +3383,178,14,1,2,3,,R,14,0,36,,,,,,,6 +3384,178,63,16,23,12,,R,15,0,36,,,,,,,23 +3385,178,68,21,15,19,,R,16,0,36,,,,,,,5 +3386,178,35,16,22,8,,R,17,0,32,,,,,,,44 +3387,178,65,24,17,13,,R,18,0,32,,,,,,,22 +3388,178,37,21,14,21,,R,19,0,30,,,,,,,6 +3389,178,48,18,21,22,,R,20,0,24,,,,,,,20 +3390,178,69,18,20,20,,R,21,0,10,,,,,,,6 +3391,178,71,17,7,17,,R,22,0,3,,,,,,,4 +3392,179,57,1,1,1,1,1,1,10,65,34:13.7,5653665,,,,,1 +3393,179,14,1,2,3,2,2,2,6,65,6.238,5659903,,,,,1 +3394,179,30,6,3,4,3,3,3,4,65,10.845,5664510,,,,,1 +3395,179,56,6,4,2,4,4,4,3,65,30.182,5683847,,,,,1 +3396,179,23,3,6,10,5,5,5,2,65,+1:27.208,5740873,,,,,1 +3397,179,15,20,19,9,6,6,6,1,64,,,,,,,11 +3398,179,71,17,7,11,7,7,7,0,64,,,,,,,11 +3399,179,63,16,23,16,8,8,8,0,64,,,,,,,11 +3400,179,21,22,9,13,9,9,9,0,64,,,,,,,11 +3401,179,25,22,10,18,10,10,10,0,64,,,,,,,11 +3402,179,37,21,14,19,11,11,11,0,63,,,,,,,12 +3403,179,68,21,15,20,12,12,12,0,62,,,,,,,13 +3404,179,69,18,20,22,,R,13,0,50,,,,,,,20 +3405,179,35,16,22,6,,R,14,0,40,,,,,,,6 +3406,179,64,15,12,12,,R,15,0,40,,,,,,,7 +3407,179,65,24,17,14,,R,16,0,40,,,,,,,7 +3408,179,49,17,8,8,,R,17,0,35,,,,,,,86 +3409,179,55,15,11,5,,R,18,0,27,,,,,,,7 +3410,179,70,3,5,17,,R,19,0,24,,,,,,,6 +3411,179,44,20,18,15,,R,20,0,24,,,,,,,6 +3412,179,48,18,21,21,,R,21,0,0,,,,,,,6 +3413,179,22,24,16,7,,D,22,0,64,,,,,,,2 +3414,180,57,1,1,2,1,1,1,10,69,41:35.7,6095727,,,,,1 +3415,180,21,22,9,7,2,2,2,6,69,0.782,6096509,,,,,1 +3416,180,56,6,4,3,3,3,3,4,69,1.797,6097524,,,,,1 +3417,180,23,3,6,13,4,4,4,3,69,2.392,6098119,,,,,1 +3418,180,65,24,17,10,5,5,5,2,69,2.805,6098532,,,,,1 +3419,180,64,15,12,18,6,6,6,1,69,3.711,6099438,,,,,1 +3420,180,14,1,2,4,7,7,7,0,69,5.004,6100731,,,,,1 +3421,180,48,18,21,22,8,8,8,0,68,,,,,,,11 +3422,180,44,20,18,15,9,9,9,0,68,,,,,,,11 +3423,180,69,18,20,21,10,10,10,0,67,,,,,,,12 +3424,180,49,17,8,6,11,11,11,0,65,,,,,,,23 +3425,180,70,3,5,12,,R,12,0,50,,,,,,,23 +3426,180,68,21,15,19,,R,13,0,41,,,,,,,7 +3427,180,35,16,22,16,,R,14,0,34,,,,,,,20 +3428,180,30,6,3,1,,R,15,0,29,,,,,,,20 +3429,180,37,21,14,20,,R,16,0,22,,,,,,,7 +3430,180,71,17,7,14,,R,17,0,14,,,,,,,20 +3431,180,22,24,16,5,,R,18,0,14,,,,,,,38 +3432,180,41,16,23,17,,R,19,0,2,,,,,,,20 +3433,180,55,15,11,8,,R,20,0,0,,,,,,,4 +3434,180,15,20,19,9,,R,21,0,0,,,,,,,4 +3435,180,25,22,10,11,,R,22,0,0,,,,,,,7 +3436,181,49,17,8,5,1,1,1,10,72,58:24.3,7104343,,,,,1 +3437,181,57,1,1,14,2,2,2,6,72,11.092,7115435,,,,,1 +3438,181,22,24,16,1,3,3,3,4,72,43.432,7147775,,,,,1 +3439,181,23,3,6,16,4,4,4,3,72,45.475,7149818,,,,,1 +3440,181,30,6,3,6,5,5,5,2,72,47.881,7152224,,,,,1 +3441,181,56,6,4,17,6,6,6,1,72,48.901,7153244,,,,,1 +3442,181,15,20,19,8,7,7,7,0,72,57.771,7162114,,,,,1 +3443,181,44,20,18,3,8,8,8,0,72,58.531,7162874,,,,,1 +3444,181,41,16,23,10,9,9,9,0,72,+1:28.764,7193107,,,,,1 +3445,181,69,18,20,20,10,10,10,0,71,,,,,,,11 +3446,181,37,21,14,21,11,11,11,0,71,,,,,,,11 +3447,181,21,22,9,7,,R,12,0,42,,,,,,,20 +3448,181,71,17,7,18,,R,13,0,31,,,,,,,10 +3449,181,70,3,5,15,,R,14,0,26,,,,,,,5 +3450,181,35,16,22,12,,R,15,0,25,,,,,,,20 +3451,181,25,22,10,13,,R,16,0,25,,,,,,,20 +3452,181,48,18,21,19,,R,17,0,25,,,,,,,20 +3453,181,55,15,11,2,,R,18,0,24,,,,,,,20 +3454,181,14,1,2,4,,R,19,0,9,,,,,,,10 +3455,181,64,15,12,11,,R,20,0,6,,,,,,,7 +3456,181,65,24,17,9,,R,21,0,4,,,,,,,6 +3457,181,68,21,15,22,,D,22,0,71,,,,,,,2 +3458,182,14,1,2,3,1,1,1,10,60,32:30.1,5550144,,,,,1 +3459,182,56,6,4,4,2,2,2,6,60,1.829,5551973,,,,,1 +3460,182,23,3,6,8,3,3,3,4,60,27.411,5577555,,,,,1 +3461,182,49,17,8,5,4,4,4,3,60,27.789,5577933,,,,,1 +3462,182,71,17,7,6,5,5,5,2,60,38.606,5588750,,,,,1 +3463,182,64,15,12,12,6,6,6,1,60,53.643,5603787,,,,,1 +3464,182,21,22,9,17,7,7,7,0,60,54.614,5604758,,,,,1 +3465,182,22,24,16,7,8,8,8,0,60,+1:08.590,5618734,,,,,1 +3466,182,15,20,19,14,9,9,9,0,60,+1:12.045,5622189,,,,,1 +3467,182,25,22,10,18,10,10,10,0,60,+1:12.123,5622267,,,,,1 +3468,182,70,3,5,13,11,11,11,0,60,+1:17.124,5627268,,,,,1 +3469,182,65,24,17,11,12,12,12,0,60,+1:17.709,5627853,,,,,1 +3470,182,44,20,18,15,13,13,13,0,60,+1:20.492,5630636,,,,,1 +3471,182,55,15,11,10,14,14,14,0,59,,,,,,,11 +3472,182,48,18,21,22,15,15,15,0,58,,,,,,,12 +3473,182,68,21,15,19,16,16,16,0,58,,,,,,,12 +3474,182,41,16,23,16,,R,17,0,41,,,,,,,22 +3475,182,57,1,1,1,,R,18,0,35,,,,,,,36 +3476,182,35,16,22,9,,R,19,0,29,,,,,,,86 +3477,182,69,18,20,21,,R,20,0,6,,,,,,,6 +3478,182,37,21,14,20,,R,21,0,0,,,,,,,6 +3479,182,30,6,3,2,,R,22,0,0,,,,,,,23 +3480,183,56,6,4,3,1,1,1,10,71,28:12.4,5292438,,,,,1 +3481,183,14,1,2,2,2,2,2,6,71,0.313,5292751,,,,,1 +3482,183,57,1,1,1,3,3,3,4,71,22.282,5314720,,,,,1 +3483,183,49,17,8,4,4,4,4,3,71,52.803,5345241,,,,,1 +3484,183,25,22,10,10,5,5,5,2,71,+1:06.358,5358796,,,,,1 +3485,183,64,15,12,16,6,6,6,1,71,+1:10.933,5363371,,,,,1 +3486,183,15,20,19,13,7,7,7,0,70,,,,,,,11 +3487,183,71,17,7,11,8,8,8,0,70,,,,,,,11 +3488,183,63,6,3,7,9,9,9,0,70,,,,,,,11 +3489,183,44,20,18,18,10,10,10,0,70,,,,,,,11 +3490,183,48,18,21,22,11,11,11,0,70,,,,,,,11 +3491,183,21,22,9,12,12,12,12,0,68,,,,,,,5 +3492,183,69,18,20,19,13,13,13,0,68,,,,,,,13 +3493,183,65,24,17,6,14,14,14,0,67,,,,,,,14 +3494,183,41,16,23,15,15,15,15,0,63,,,,,,,8 +3495,183,22,24,16,5,,R,16,0,55,,,,,,,5 +3496,183,55,15,11,17,,R,17,0,49,,,,,,,60 +3497,183,37,21,14,21,,R,18,0,38,,,,,,,20 +3498,183,70,3,5,14,,R,19,0,35,,,,,,,60 +3499,183,35,16,22,9,,R,20,0,34,,,,,,,86 +3500,183,68,21,15,20,,R,21,0,25,,,,,,,5 +3501,183,23,3,6,8,,R,22,0,8,,,,,,,20 +3502,184,56,6,4,5,1,1,1,10,45,21:58.6,4918594,,,,,1 +3503,184,63,6,3,4,2,2,2,6,45,1.007,4919601,,,,,1 +3504,184,49,17,8,2,3,3,3,4,45,5.195,4923789,,,,,1 +3505,184,23,3,6,11,4,4,4,3,45,12.809,4931403,,,,,1 +3506,184,14,1,2,3,5,5,5,2,45,16.823,4935417,,,,,1 +3507,184,44,20,18,7,6,6,6,1,45,29.879,4948473,,,,,1 +3508,184,25,22,10,13,7,7,7,0,45,33.333,4951927,,,,,1 +3509,184,55,15,11,21,8,8,8,0,45,+1:11.291,4989885,,,,,1 +3510,184,48,18,21,15,9,9,9,0,45,+1:48.318,5026912,,,,,1 +3511,184,69,18,20,19,10,10,10,0,44,,,,,,,11 +3512,184,65,24,17,17,11,11,11,0,40,,,,,,,6 +3513,184,37,21,14,20,,R,12,0,37,,,,,,,20 +3514,184,57,1,1,1,,R,13,0,25,,,,,,,27 +3515,184,70,3,5,14,,R,14,0,21,,,,,,,24 +3516,184,41,16,23,18,,R,15,0,20,,,,,,,5 +3517,184,68,21,15,22,,R,16,0,15,,,,,,,5 +3518,184,71,17,7,8,,R,17,0,13,,,,,,,23 +3519,184,15,20,19,9,,R,18,0,10,,,,,,,5 +3520,184,21,22,9,10,,R,19,0,7,,,,,,,22 +3521,184,22,24,16,6,,R,20,0,6,,,,,,,9 +3522,184,35,16,22,12,,R,21,0,0,,,,,,,4 +3523,184,64,15,12,16,,R,22,0,0,,,,,,,4 +3524,185,57,1,1,1,1,1,1,10,77,46:23.5,6383536,,,,,1 +3525,185,14,1,2,3,2,2,2,6,77,9.706,6393242,,,,,1 +3526,185,56,6,4,2,3,3,3,4,77,27.228,6410764,,,,,1 +3527,185,49,17,8,5,4,4,4,3,77,31.815,6415351,,,,,1 +3528,185,22,24,16,8,5,5,5,2,77,43.808,6427344,,,,,1 +3529,185,71,17,7,6,6,6,6,1,77,55.726,6439262,,,,,1 +3530,185,25,22,10,7,7,7,7,0,77,+1:01.012,6444548,,,,,1 +3531,185,15,20,19,13,8,8,8,0,76,,,,,,,11 +3532,185,23,3,6,16,9,9,9,0,76,,,,,,,11 +3533,185,44,20,18,14,10,10,10,0,76,,,,,,,11 +3534,185,65,24,17,10,11,11,11,0,76,,,,,,,11 +3535,185,63,6,3,18,12,12,12,0,75,,,,,,,12 +3536,185,41,16,23,17,13,13,13,0,75,,,,,,,12 +3537,185,69,18,20,19,14,14,14,0,75,,,,,,,12 +3538,185,37,21,14,20,15,15,15,0,75,,,,,,,12 +3539,185,55,15,11,11,16,16,16,0,74,,,,,,,32 +3540,185,48,18,21,22,17,17,17,0,74,,,,,,,13 +3541,185,35,16,22,9,,R,18,0,60,,,,,,,8 +3542,185,21,22,9,4,,R,19,0,52,,,,,,,5 +3543,185,68,21,15,21,,R,20,0,26,,,,,,,7 +3544,185,64,15,12,12,,R,21,0,19,,,,,,,20 +3545,185,70,3,5,15,,R,22,0,10,,,,,,,24 +3546,186,14,1,2,2,1,1,1,10,44,25:43.1,5143057,,,,,1 +3547,186,57,1,1,1,2,2,2,6,44,10.469,5153526,,,,,1 +3548,186,49,17,8,3,3,3,3,4,44,33.433,5176490,,,,,1 +3549,186,56,6,4,6,4,4,4,3,44,44.948,5188005,,,,,1 +3550,186,23,3,6,5,5,5,5,2,44,48.067,5191124,,,,,1 +3551,186,71,17,7,4,6,6,6,1,44,54.916,5197973,,,,,1 +3552,186,63,6,3,9,7,7,7,0,44,56.249,5199306,,,,,1 +3553,186,70,3,5,8,8,8,8,0,44,+1:07.022,5210079,,,,,1 +3554,186,55,15,11,16,9,9,9,0,44,+1:13.848,5216905,,,,,1 +3555,186,22,24,16,7,10,10,10,0,44,+1:20.742,5223799,,,,,1 +3556,186,21,22,9,13,11,11,11,0,44,+1:32.195,5235252,,,,,1 +3557,186,15,20,19,12,12,12,12,0,44,+1:36.154,5239211,,,,,1 +3558,186,44,20,18,17,13,13,13,0,44,+1:41.543,5244600,,,,,1 +3559,186,25,22,10,15,14,14,14,0,44,+1:57.745,5260802,,,,,1 +3560,186,35,16,22,11,15,15,15,0,43,,,,,,,11 +3561,186,48,18,21,21,16,16,16,0,43,,,,,,,11 +3562,186,37,21,14,22,,R,17,0,35,,,,,,,7 +3563,186,69,18,20,20,,R,18,0,33,,,,,,,22 +3564,186,41,16,23,14,,R,19,0,33,,,,,,,6 +3565,186,65,24,17,10,,R,20,0,27,,,,,,,23 +3566,186,64,15,12,18,,R,21,0,19,,,,,,,20 +3567,186,68,21,15,19,,R,22,0,0,,,,,,,8 +3568,187,49,17,8,2,1,1,1,10,53,17:02.9,4622923,,,,,1 +3569,187,23,3,6,5,2,2,2,6,53,3.272,4626195,,,,,1 +3570,187,63,6,3,6,3,3,3,4,53,11.932,4634855,,,,,1 +3571,187,22,24,16,7,4,4,4,3,53,17.63,4640553,,,,,1 +3572,187,14,1,2,3,5,5,5,2,53,18.142,4641065,,,,,1 +3573,187,56,6,4,8,6,6,6,1,53,27.402,4650325,,,,,1 +3574,187,70,3,5,4,7,7,7,0,53,28.047,4650970,,,,,1 +3575,187,35,16,22,11,8,8,8,0,53,41.797,4664720,,,,,1 +3576,187,55,15,11,13,9,9,9,0,53,42.198,4665121,,,,,1 +3577,187,71,17,7,9,10,10,10,0,53,56.259,4679182,,,,,1 +3578,187,44,20,18,10,11,11,11,0,52,,,,,,,5 +3579,187,65,24,17,15,,R,12,0,40,,,,,,,8 +3580,187,68,21,15,22,,R,13,0,35,,,,,,,20 +3581,187,37,21,14,21,,R,14,0,35,,,,,,,54 +3582,187,57,1,1,1,,R,15,0,29,,,,,,,20 +3583,187,15,20,19,12,,R,16,0,29,,,,,,,25 +3584,187,41,16,23,18,,R,17,0,25,,,,,,,67 +3585,187,69,18,20,19,,R,18,0,23,,,,,,,4 +3586,187,25,22,10,14,,R,19,0,11,,,,,,,10 +3587,187,64,15,12,16,,R,20,0,1,,,,,,,20 +3588,187,21,22,9,17,,R,21,0,1,,,,,,,20 +3589,187,48,18,21,20,,R,22,0,0,,,,,,,4 +3590,188,65,24,17,14,1,1,1,10,66,41:54.3,6114314,,,,,1 +3591,188,15,20,19,10,2,2,2,6,66,22.619,6136933,,,,,1 +3592,188,22,24,16,15,3,3,3,4,66,22.866,6137180,,,,,1 +3593,188,23,3,6,4,4,4,4,3,66,39.508,6153822,,,,,1 +3594,188,57,1,1,3,5,5,5,2,66,+1:02.950,6177264,,,,,1 +3595,188,48,18,21,20,6,6,6,1,66,+1:05.154,6179468,,,,,1 +3596,188,56,6,4,9,7,7,7,0,66,+1:06.683,6180997,,,,,1 +3597,188,41,16,23,17,8,8,8,0,65,,,,,,,11 +3598,188,44,20,18,5,9,9,9,0,65,,,,,,,11 +3599,188,35,16,22,8,10,10,10,0,61,,,,,,,8 +3600,188,69,18,20,19,,R,11,0,53,,,,,,,6 +3601,188,37,21,14,22,,R,12,0,52,,,,,,,6 +3602,188,21,22,9,6,,R,13,0,48,,,,,,,20 +3603,188,63,6,3,12,,R,14,0,44,,,,,,,23 +3604,188,68,21,15,21,,R,15,0,42,,,,,,,20 +3605,188,14,1,2,2,,R,16,0,37,,,,,,,20 +3606,188,55,15,11,16,,R,17,0,35,,,,,,,86 +3607,188,49,17,8,1,,R,18,0,32,,,,,,,10 +3608,188,70,3,5,18,,R,19,0,10,,,,,,,4 +3609,188,71,17,7,7,,R,20,0,0,,,,,,,10 +3610,188,25,22,10,11,,R,21,0,0,,,,,,,4 +3611,188,64,15,12,13,,R,22,0,0,,,,,,,4 +3612,189,56,6,4,2,1,1,1,10,56,36:38.5,5798494,,,,,1 +3613,189,30,6,3,1,2,2,2,6,56,1.04,5799534,,,,,1 +3614,189,57,1,1,4,3,3,3,4,56,9.743,5808237,,,,,1 +3615,189,65,24,17,5,4,4,4,3,56,17.538,5816032,,,,,1 +3616,189,22,24,16,6,5,5,5,2,56,32.296,5830790,,,,,1 +3617,189,49,17,8,14,6,6,6,1,56,34.884,5833378,,,,,1 +3618,189,55,15,11,15,7,7,7,0,56,54.408,5852902,,,,,1 +3619,189,25,22,10,7,8,8,8,0,56,+1:00.934,5859428,,,,,1 +3620,189,48,18,21,19,9,9,9,0,55,,,,,,,11 +3621,189,70,3,5,16,10,10,10,0,55,,,,,,,11 +3622,189,21,22,9,11,11,11,11,0,52,,,,,,,14 +3623,189,35,16,22,10,,R,12,0,48,,,,,,,9 +3624,189,64,15,12,17,,R,13,0,44,,,,,,,20 +3625,189,37,21,14,20,,R,14,0,30,,,,,,,5 +3626,189,69,18,20,21,,R,15,0,15,,,,,,,20 +3627,189,14,1,2,3,,R,16,0,14,,,,,,,32 +3628,189,23,3,6,8,,R,17,0,7,,,,,,,20 +3629,189,68,21,15,22,,R,18,0,7,,,,,,,7 +3630,189,41,16,23,13,,R,19,0,6,,,,,,,5 +3631,189,44,20,18,12,,R,20,0,5,,,,,,,5 +3632,189,71,17,7,9,,R,21,0,0,,,,,,,4 +3633,189,15,20,19,18,,W,22,0,0,,,,,,,5 +3634,190,57,1,1,2,1,1,1,10,53,31:18.8,5478785,,,,,1 +3635,190,30,6,3,1,2,2,2,6,53,5.015,5483800,,,,,1 +3636,190,56,6,4,5,3,3,3,4,53,+1:35.688,5574473,,,,,1 +3637,190,49,17,8,4,4,4,4,3,53,+1:38.635,5577420,,,,,1 +3638,190,23,3,6,9,5,5,5,2,53,+1:39.494,5578279,,,,,1 +3639,190,55,15,11,10,6,6,6,1,52,,,,,,,11 +3640,190,65,24,17,8,7,7,7,0,52,,,,,,,11 +3641,190,22,24,16,13,8,8,8,0,52,,,,,,,11 +3642,190,35,16,22,11,9,9,9,0,52,,,,,,,11 +3643,190,25,22,10,15,10,10,10,0,52,,,,,,,11 +3644,190,64,15,12,17,11,11,11,0,52,,,,,,,11 +3645,190,41,16,23,18,12,12,12,0,52,,,,,,,11 +3646,190,37,21,14,21,13,13,13,0,51,,,,,,,12 +3647,190,21,22,9,14,14,14,14,0,47,,,,,,,5 +3648,190,68,21,15,19,,R,15,0,43,,,,,,,6 +3649,190,69,18,20,22,,R,16,0,43,,,,,,,5 +3650,190,14,1,2,3,,R,17,0,39,,,,,,,9 +3651,190,48,18,21,20,,R,18,0,31,,,,,,,6 +3652,190,71,17,7,12,,R,19,0,21,,,,,,,68 +3653,190,44,20,18,6,,R,20,0,19,,,,,,,91 +3654,190,15,20,19,7,,R,21,0,3,,,,,,,5 +3655,190,70,3,5,8,,R,22,0,0,,,,,,,10 +3656,191,57,1,8,1,1,1,1,10,58,31:46.0,5506000,,,,,1 +3657,191,14,1,7,2,2,2,2,6,58,0.702,5506702,,,,,1 +3658,191,49,3,2,6,3,3,3,4,57,,,,,,,11 +3659,191,56,6,4,8,4,4,4,3,57,,,,,,,11 +3660,191,35,3,1,4,5,5,5,2,57,,,,,,,11 +3661,191,65,15,15,5,6,6,6,1,57,,,,,,,11 +3662,191,25,22,6,11,7,7,7,0,57,,,,,,,11 +3663,191,71,17,9,10,8,8,8,0,57,,,,,,,11 +3664,191,44,20,11,21,9,9,9,0,57,,,,,,,11 +3665,191,21,22,5,7,,R,10,0,43,,,,,,,41 +3666,191,55,15,14,12,,R,11,0,41,,,,,,,5 +3667,191,15,20,12,15,,R,12,0,26,,,,,,,6 +3668,191,73,25,20,19,,R,13,0,25,,,,,,,6 +3669,191,63,21,17,16,,R,14,0,23,,,,,,,6 +3670,191,74,18,23,17,,R,15,0,22,,,,,,,5 +3671,191,75,18,22,22,,R,16,0,8,,,,,,,86 +3672,191,30,6,3,3,,R,17,0,5,,,,,,,5 +3673,191,64,21,16,20,,R,18,0,2,,,,,,,6 +3674,191,23,17,10,9,,R,19,0,1,,,,,,,4 +3675,191,76,24,19,18,,R,20,0,1,,,,,,,4 +3676,191,68,25,21,13,,R,21,0,1,,,,,,,20 +3677,191,22,24,18,14,,R,22,0,0,,,,,,,6 +3678,192,57,1,8,1,1,1,1,10,72,37:12.2,5832200,,,,,1 +3679,192,14,1,7,2,2,2,2,6,72,1.102,5833302,,,,,1 +3680,192,30,6,3,4,3,3,3,4,72,+1:00.550,5892750,,,,,1 +3681,192,25,22,6,5,4,4,4,3,72,+1:07.453,5899653,,,,,1 +3682,192,49,3,2,3,5,5,5,2,71,,,,,,,11 +3683,192,21,22,5,7,6,6,6,1,71,,,,,,,11 +3684,192,35,3,1,10,7,7,7,0,71,,,,,,,11 +3685,192,56,6,4,6,8,8,8,0,71,,,,,,,11 +3686,192,55,15,14,15,9,9,9,0,71,,,,,,,11 +3687,192,76,24,19,16,10,10,10,0,70,,,,,,,12 +3688,192,65,15,15,14,11,11,11,0,67,,,,,,,82 +3689,192,71,17,9,11,,D,12,0,70,,,,,,,2 +3690,192,44,20,11,9,,R,13,0,63,,,,,,,5 +3691,192,22,24,18,13,,R,14,0,56,,,,,,,6 +3692,192,73,25,20,21,,R,15,0,52,,,,,,,6 +3693,192,74,18,23,19,,R,16,0,44,,,,,,,37 +3694,192,64,21,16,22,,R,17,0,26,,,,,,,6 +3695,192,68,25,21,17,,R,18,0,19,,,,,,,5 +3696,192,63,21,17,20,,R,19,0,18,,,,,,,5 +3697,192,15,20,12,12,,R,20,0,17,,,,,,,48 +3698,192,75,18,22,18,,R,21,0,3,,,,,,,20 +3699,192,23,17,10,8,,R,22,0,0,,,,,,,20 +3700,193,30,6,3,2,1,1,1,10,72,48:36.1,6516100,,,,,1 +3701,193,57,1,8,3,2,2,2,6,72,22.898,6538998,,,,,1 +3702,193,56,6,4,4,3,3,3,4,72,57.745,6573845,,,,,1 +3703,193,25,22,6,8,4,4,4,3,72,+1:08.134,6584234,,,,,1 +3704,193,55,15,14,11,5,5,5,2,72,+1:18.286,6594386,,,,,1 +3705,193,14,1,7,1,6,6,6,1,72,+1:19.751,6595851,,,,,1 +3706,193,21,22,5,10,7,7,7,0,72,+1:28.437,6604537,,,,,1 +3707,193,71,17,9,9,8,8,8,0,71,,,,,,,11 +3708,193,49,3,2,6,9,9,9,0,71,,,,,,,11 +3709,193,22,24,18,14,10,10,10,0,70,,,,,,,12 +3710,193,15,20,12,16,11,11,11,0,70,,,,,,,12 +3711,193,68,25,21,13,12,12,12,0,70,,,,,,,12 +3712,193,75,18,22,19,13,13,13,0,69,,,,,,,13 +3713,193,73,25,20,21,14,14,14,0,68,,,,,,,14 +3714,193,44,20,11,15,15,15,15,0,65,,,,,,,5 +3715,193,74,18,23,20,,R,16,0,63,,,,,,,20 +3716,193,35,3,1,7,,R,17,0,52,,,,,,,4 +3717,193,65,15,15,12,,R,18,0,46,,,,,,,4 +3718,193,23,17,10,5,,R,19,0,22,,,,,,,22 +3719,193,63,21,17,17,,R,20,0,18,,,,,,,6 +3720,193,76,24,19,22,,R,21,0,17,,,,,,,7 +3721,193,64,21,16,18,,R,22,0,13,,,,,,,6 +3722,194,14,1,7,1,1,1,1,10,62,34:25.4,5665400,,,,,1 +3723,194,30,6,3,3,2,2,2,6,62,4.554,5669954,,,,,1 +3724,194,56,6,4,4,3,3,3,4,62,51.775,5717175,,,,,1 +3725,194,35,3,1,6,4,4,4,3,62,54.59,5719990,,,,,1 +3726,194,49,3,2,8,5,5,5,2,62,+1:17.476,5742876,,,,,1 +3727,194,55,15,14,12,6,6,6,1,61,,,,,,,11 +3728,194,23,17,10,9,7,7,7,0,60,,,,,,,12 +3729,194,74,18,23,19,8,8,8,0,60,,,,,,,12 +3730,194,63,21,17,14,9,9,9,0,60,,,,,,,12 +3731,194,71,17,9,7,10,10,10,0,57,,,,,,,9 +3732,194,44,20,11,13,11,11,11,0,56,,,,,,,16 +3733,194,73,25,20,22,,R,12,0,48,,,,,,,5 +3734,194,68,25,21,15,,R,13,0,40,,,,,,,5 +3735,194,15,20,12,16,,R,14,0,34,,,,,,,37 +3736,194,75,18,22,21,,R,15,0,27,,,,,,,5 +3737,194,64,21,16,18,,R,16,0,18,,,,,,,5 +3738,194,57,1,8,2,,R,17,0,17,,,,,,,6 +3739,194,21,22,5,10,,R,18,0,17,,,,,,,20 +3740,194,25,22,6,5,,R,19,0,17,,,,,,,5 +3741,194,65,15,15,11,,R,20,0,12,,,,,,,29 +3742,194,76,24,19,20,,R,21,0,8,,,,,,,7 +3743,194,22,24,18,17,,R,22,0,0,,,,,,,20 +3744,195,57,1,8,1,1,1,1,10,65,33:38.3,5618300,,,,,1 +3745,195,14,1,7,2,2,2,2,6,65,9.439,5627739,,,,,1 +3746,195,30,6,3,3,3,3,3,4,65,47.095,5665395,,,,,1 +3747,195,25,22,6,5,4,4,4,3,65,+1:02.538,5680838,,,,,1 +3748,195,22,24,18,9,5,5,5,2,64,,,,,,,11 +3749,195,35,3,1,10,6,6,6,1,64,,,,,,,11 +3750,195,65,15,15,7,7,7,7,0,64,,,,,,,11 +3751,195,49,3,2,13,8,8,8,0,63,,,,,,,12 +3752,195,15,20,12,16,9,9,9,0,63,,,,,,,12 +3753,195,55,15,14,14,10,10,10,0,63,,,,,,,12 +3754,195,23,17,10,11,11,11,11,0,63,,,,,,,12 +3755,195,76,24,19,18,12,12,12,0,63,,,,,,,12 +3756,195,68,25,21,21,13,13,13,0,63,,,,,,,12 +3757,195,75,18,22,20,14,14,14,0,63,,,,,,,12 +3758,195,74,18,23,19,15,15,15,0,63,,,,,,,12 +3759,195,44,20,11,12,16,16,16,0,60,,,,,,,15 +3760,195,71,17,9,8,,R,17,0,46,,,,,,,5 +3761,195,56,6,4,6,,R,18,0,28,,,,,,,4 +3762,195,21,22,5,4,,R,19,0,28,,,,,,,4 +3763,195,63,21,17,17,,R,20,0,21,,,,,,,5 +3764,195,64,21,16,15,,R,21,0,20,,,,,,,5 +3765,196,57,1,8,1,1,1,1,10,78,51:24.4,6684400,,,,,1 +3766,196,21,22,5,3,2,2,2,6,78,11.475,6695875,,,,,1 +3767,196,56,6,4,7,3,3,3,4,78,41.378,6725778,,,,,1 +3768,196,63,21,17,8,4,4,4,3,78,+1:00.363,6744763,,,,,1 +3769,196,35,3,1,13,5,5,5,2,77,,,,,,,11 +3770,196,64,21,16,12,6,6,6,1,77,,,,,,,11 +3771,196,65,15,15,9,7,7,7,0,77,,,,,,,11 +3772,196,71,17,9,15,8,8,8,0,76,,,,,,,12 +3773,196,75,18,22,19,9,9,9,0,76,,,,,,,12 +3774,196,30,6,3,4,10,10,10,0,76,,,,,,,12 +3775,196,68,25,21,20,11,11,11,0,76,,,,,,,12 +3776,196,55,15,14,11,12,12,12,0,72,,,,,,,6 +3777,196,15,20,12,10,,R,13,0,56,,,,,,,6 +3778,196,44,20,11,18,,R,14,0,49,,,,,,,36 +3779,196,23,17,10,16,,R,15,0,44,,,,,,,22 +3780,196,25,22,6,6,,R,16,0,42,,,,,,,20 +3781,196,76,24,19,17,,R,17,0,30,,,,,,,22 +3782,196,14,1,7,2,,R,18,0,17,,,,,,,5 +3783,196,22,24,18,14,,R,19,0,11,,,,,,,22 +3784,196,49,3,2,5,,R,20,0,5,,,,,,,4 +3785,196,74,18,23,21,,R,21,0,0,,,,,,,20 +3786,196,73,25,20,0,,F,22,0,0,,,,,,,81 +3787,197,30,6,3,3,1,1,1,10,69,40:57.3,6057300,,,,,1 +3788,197,21,22,5,4,2,2,2,6,69,16.662,6073962,,,,,1 +3789,197,56,6,4,8,3,3,3,4,69,+1:00.059,6117359,,,,,1 +3790,197,25,22,6,11,4,4,4,3,69,+1:03.232,6120532,,,,,1 +3791,197,22,24,18,13,5,5,5,2,69,+1:21.513,6138813,,,,,1 +3792,197,76,24,19,20,6,6,6,1,68,,,,,,,11 +3793,197,75,18,22,18,7,7,7,0,68,,,,,,,11 +3794,197,73,25,20,22,8,8,8,0,68,,,,,,,11 +3795,197,64,21,16,19,9,9,9,0,68,,,,,,,11 +3796,197,35,3,1,6,10,10,10,0,63,,,,,,,16 +3797,197,74,18,23,21,,R,11,0,53,,,,,,,10 +3798,197,71,17,9,10,,R,12,0,42,,,,,,,10 +3799,197,44,20,11,15,,R,13,0,39,,,,,,,20 +3800,197,49,3,2,7,,R,14,0,20,,,,,,,20 +3801,197,14,1,7,1,,R,15,0,18,,,,,,,37 +3802,197,65,15,15,12,,R,16,0,18,,,,,,,20 +3803,197,63,21,17,17,,R,17,0,18,,,,,,,3 +3804,197,57,1,8,2,,R,18,0,0,,,,,,,6 +3805,197,23,17,10,5,,R,19,0,0,,,,,,,6 +3806,197,55,15,14,9,,R,20,0,0,,,,,,,4 +3807,197,15,20,12,14,,R,21,0,0,,,,,,,4 +3808,197,68,25,21,16,,R,22,0,0,,,,,,,7 +3809,198,30,6,3,2,1,1,1,10,71,34:45.0,5685000,,,,,1 +3810,198,56,6,4,4,2,2,2,6,71,19.575,5704575,,,,,1 +3811,198,57,1,8,1,3,3,3,4,71,19.747,5704747,,,,,1 +3812,198,35,3,1,5,4,4,4,3,71,+1:06.965,5751965,,,,,1 +3813,198,25,22,6,10,5,5,5,2,70,,,,,,,11 +3814,198,14,1,7,3,6,6,6,1,70,,,,,,,11 +3815,198,55,15,14,11,7,7,7,0,70,,,,,,,11 +3816,198,65,15,15,13,8,8,8,0,70,,,,,,,11 +3817,198,21,22,5,9,9,9,9,0,70,,,,,,,11 +3818,198,22,24,18,14,10,10,10,0,69,,,,,,,12 +3819,198,44,20,11,16,11,11,11,0,69,,,,,,,12 +3820,198,50,24,19,15,12,12,12,0,69,,,,,,,12 +3821,198,63,21,17,19,13,13,13,0,69,,,,,,,12 +3822,198,64,21,16,17,14,14,14,0,69,,,,,,,12 +3823,198,49,3,2,8,15,15,15,0,68,,,,,,,22 +3824,198,23,17,10,6,16,16,16,0,68,,,,,,,13 +3825,198,75,18,22,21,17,17,17,0,65,,,,,,,5 +3826,198,68,25,21,20,,R,18,0,60,,,,,,,5 +3827,198,15,20,12,12,,R,19,0,55,,,,,,,20 +3828,198,74,18,23,22,,R,20,0,41,,,,,,,6 +3829,198,71,17,9,7,,R,21,0,19,,,,,,,9 +3830,198,73,25,20,18,,R,22,0,16,,,,,,,9 +3831,199,30,6,3,2,1,1,1,10,60,47:02.4,6422400,,,,,1 +3832,199,57,1,8,1,2,2,2,6,60,22.465,6444865,,,,,1 +3833,199,56,6,4,5,3,3,3,4,60,29.199,6451599,,,,,1 +3834,199,25,22,6,11,4,4,4,3,59,,,,,,,11 +3835,199,21,22,5,10,5,5,5,2,59,,,,,,,11 +3836,199,23,17,10,21,6,6,6,1,59,,,,,,,11 +3837,199,35,3,1,3,7,7,7,0,59,,,,,,,11 +3838,199,75,18,22,19,8,8,8,0,58,,,,,,,12 +3839,199,68,25,21,17,9,9,9,0,56,,,,,,,14 +3840,199,55,15,14,8,,R,10,0,53,,,,,,,10 +3841,199,64,21,16,12,,R,11,0,45,,,,,,,20 +3842,199,44,20,11,22,,R,12,0,40,,,,,,,20 +3843,199,22,24,18,16,,R,13,0,39,,,,,,,20 +3844,199,50,24,19,15,,R,14,0,38,,,,,,,5 +3845,199,14,1,7,4,,R,15,0,37,,,,,,,20 +3846,199,15,20,12,14,,R,16,0,37,,,,,,,20 +3847,199,73,25,20,20,,R,17,0,29,,,,,,,20 +3848,199,74,18,23,18,,R,18,0,29,,,,,,,20 +3849,199,65,15,15,9,,R,19,0,27,,,,,,,20 +3850,199,63,21,17,13,,R,20,0,27,,,,,,,37 +3851,199,49,3,2,6,,R,21,0,15,,,,,,,20 +3852,199,71,17,9,7,,R,22,0,13,,,,,,,20 +3853,200,57,1,8,3,1,1,1,10,71,30:44.0,5444000,,,,,1 +3854,200,14,1,7,14,2,2,2,6,71,5.289,5449289,,,,,1 +3855,200,30,6,3,4,3,3,3,4,71,39.092,5483092,,,,,1 +3856,200,56,6,4,8,4,4,4,3,71,43.976,5487976,,,,,1 +3857,200,23,17,10,9,5,5,5,2,71,50.654,5494654,,,,,1 +3858,200,35,3,1,11,6,6,6,1,71,53.202,5497202,,,,,1 +3859,200,71,17,9,15,7,7,7,0,71,+1:13.624,5517624,,,,,1 +3860,200,65,15,15,18,8,8,8,0,70,,,,,,,11 +3861,200,25,22,6,17,9,9,9,0,70,,,,,,,11 +3862,200,15,20,12,16,10,10,10,0,70,,,,,,,11 +3863,200,75,18,22,21,11,11,11,0,70,,,,,,,11 +3864,200,73,25,20,22,12,12,12,0,69,,,,,,,12 +3865,200,50,24,19,12,,R,13,0,51,,,,,,,5 +3866,200,74,18,23,19,,R,14,0,30,,,,,,,20 +3867,200,21,22,5,1,,R,15,0,21,,,,,,,4 +3868,200,55,15,14,2,,R,16,0,21,,,,,,,4 +3869,200,49,3,2,7,,R,17,0,16,,,,,,,5 +3870,200,22,24,18,5,,R,18,0,8,,,,,,,23 +3871,200,64,21,16,13,,R,19,0,3,,,,,,,4 +3872,200,63,21,17,6,,R,20,0,1,,,,,,,4 +3873,200,44,20,11,10,,R,21,0,0,,,,,,,8 +3874,200,68,25,21,20,,R,22,0,0,,,,,,,4 +3875,201,57,1,8,1,1,1,1,10,45,20:48.0,4848000,,,,,1 +3876,201,14,1,7,2,2,2,2,6,45,0.426,4848426,,,,,1 +3877,201,35,3,1,3,3,3,3,4,45,2.577,4850577,,,,,1 +3878,201,71,17,9,5,4,4,4,3,45,7.185,4855185,,,,,1 +3879,201,30,6,3,9,5,5,5,2,45,12.613,4860613,,,,,1 +3880,201,23,17,10,4,6,6,6,1,45,29.738,4877738,,,,,1 +3881,201,21,22,5,8,7,7,7,0,45,31.026,4879026,,,,,1 +3882,201,56,6,4,6,8,8,8,0,45,31.649,4879649,,,,,1 +3883,201,49,3,2,10,9,9,9,0,45,32.784,4880784,,,,,1 +3884,201,55,15,14,11,10,10,10,0,45,48.371,4896371,,,,,1 +3885,201,25,22,6,7,11,11,11,0,45,57.994,4905994,,,,,1 +3886,201,15,20,12,14,12,12,12,0,44,,,,,,,11 +3887,201,68,25,21,15,13,13,13,0,44,,,,,,,11 +3888,201,63,21,17,17,14,14,14,0,44,,,,,,,11 +3889,201,44,20,11,16,15,15,15,0,44,,,,,,,11 +3890,201,74,18,23,21,16,16,16,0,43,,,,,,,12 +3891,201,65,15,15,12,,R,17,0,37,,,,,,,6 +3892,201,75,18,22,20,,R,18,0,36,,,,,,,6 +3893,201,22,24,18,13,,R,19,0,27,,,,,,,6 +3894,201,50,24,19,19,,R,20,0,24,,,,,,,6 +3895,201,64,21,16,18,,R,21,0,2,,,,,,,37 +3896,202,30,6,3,3,1,1,1,10,77,45:26.4,6326400,,,,,1 +3897,202,14,1,7,2,2,2,2,6,77,9.433,6335833,,,,,1 +3898,202,35,3,1,6,3,3,3,4,77,44.444,6370844,,,,,1 +3899,202,71,17,9,4,4,4,4,3,77,55.076,6381476,,,,,1 +3900,202,49,3,2,7,5,5,5,2,77,56.51,6382910,,,,,1 +3901,202,57,1,8,1,6,6,6,1,76,,,,,,,11 +3902,202,55,15,14,11,7,7,7,0,76,,,,,,,11 +3903,202,21,22,5,8,8,8,8,0,76,,,,,,,11 +3904,202,23,17,10,10,9,9,9,0,76,,,,,,,11 +3905,202,65,15,15,15,10,10,10,0,76,,,,,,,11 +3906,202,64,21,16,12,11,11,11,0,74,,,,,,,13 +3907,202,44,20,11,20,12,12,12,0,74,,,,,,,13 +3908,202,50,24,19,17,13,13,13,0,74,,,,,,,13 +3909,202,68,25,21,18,14,14,14,0,74,,,,,,,13 +3910,202,75,18,22,19,15,15,15,0,74,,,,,,,13 +3911,202,25,22,6,9,,R,16,0,69,,,,,,,6 +3912,202,22,24,18,14,,R,17,0,54,,,,,,,6 +3913,202,15,20,12,16,,R,18,0,28,,,,,,,5 +3914,202,63,21,17,13,,R,19,0,18,,,,,,,6 +3915,202,56,6,4,5,,R,20,0,13,,,,,,,6 +3916,202,74,18,23,21,,R,21,0,13,,,,,,,5 +3917,203,71,17,9,3,1,1,1,10,44,43:47.4,6227407,,,,,1 +3918,203,23,17,10,8,2,2,2,6,44,0.932,6228339,,,,,1 +3919,203,55,15,14,10,3,3,3,4,44,7.24,6234647,,,,,1 +3920,203,49,3,2,9,4,4,4,3,44,32.243,6259650,,,,,1 +3921,203,64,21,16,16,5,5,5,2,44,51.682,6279089,,,,,1 +3922,203,15,20,12,13,6,6,6,1,42,,,,,,,12 +3923,203,14,1,7,2,7,7,7,0,39,,,,,,,15 +3924,203,75,18,22,21,8,8,8,0,39,,,,,,,15 +3925,203,21,22,5,7,,R,9,0,26,,,,,,,4 +3926,203,30,6,3,4,,R,10,0,25,,,,,,,4 +3927,203,56,6,4,5,,R,11,0,25,,,,,,,20 +3928,203,74,18,23,22,,R,12,0,17,,,,,,,6 +3929,203,35,3,1,6,,R,13,0,16,,,,,,,20 +3930,203,68,25,21,19,,R,14,0,10,,,,,,,20 +3931,203,50,24,19,17,,R,15,0,8,,,,,,,5 +3932,203,57,1,8,1,,R,16,0,0,,,,,,,4 +3933,203,25,22,6,11,,R,17,0,0,,,,,,,4 +3934,203,65,15,15,12,,R,18,0,0,,,,,,,4 +3935,203,22,24,18,15,,W,19,0,0,,,,,,,4 +3936,203,44,20,11,14,,W,20,0,0,,,,,,,4 +3937,203,63,21,17,18,,W,21,0,0,,,,,,,4 +3938,203,73,25,20,20,,W,22,0,0,,,,,,,4 +3939,204,30,6,3,1,1,1,1,10,53,17:10.3,4630300,,,,,1 +3940,204,56,6,4,5,2,2,2,6,53,37.977,4668277,,,,,1 +3941,204,23,17,10,6,3,3,3,4,53,41.152,4671452,,,,,1 +3942,204,57,1,8,3,4,4,4,3,53,55.671,4685971,,,,,1 +3943,204,55,15,14,8,5,5,5,2,53,+1:01.872,4692172,,,,,1 +3944,204,71,17,9,14,6,6,6,1,53,+1:06.688,4696988,,,,,1 +3945,204,49,3,2,12,7,7,7,0,52,,,,,,,11 +3946,204,21,22,5,11,8,8,8,0,52,,,,,,,11 +3947,204,68,25,21,19,9,9,9,0,52,,,,,,,11 +3948,204,22,24,18,13,10,10,10,0,52,,,,,,,11 +3949,204,74,18,23,22,11,11,11,0,51,,,,,,,12 +3950,204,73,25,20,18,12,12,12,0,51,,,,,,,12 +3951,204,15,20,12,10,13,13,13,0,50,,,,,,,13 +3952,204,50,24,19,17,,R,14,0,39,,,,,,,6 +3953,204,35,3,1,2,,R,15,0,37,,,,,,,20 +3954,204,63,21,17,16,,R,16,0,32,,,,,,,37 +3955,204,25,22,6,7,,R,17,0,24,,,,,,,6 +3956,204,14,1,7,4,,R,18,0,16,,,,,,,5 +3957,204,44,20,11,9,,R,19,0,15,,,,,,,76 +3958,204,75,18,22,21,,R,20,0,13,,,,,,,5 +3959,204,65,15,15,15,,R,21,0,12,,,,,,,20 +3960,204,64,21,16,20,,R,22,0,10,,,,,,,20 +3961,205,57,1,8,3,1,1,1,10,67,32:14.8,5534789,,,,,1 +3962,205,30,6,3,1,2,2,2,6,67,2.211,5537000,,,,,1 +3963,205,14,1,7,5,3,3,3,4,67,34.163,5568952,,,,,1 +3964,205,56,6,4,2,4,4,4,3,67,58.182,5592971,,,,,1 +3965,205,49,3,2,7,5,5,5,2,67,+1:00.247,5595036,,,,,1 +3966,205,21,22,5,4,6,6,6,1,67,+1:01.359,5596148,,,,,1 +3967,205,25,22,6,8,7,7,7,0,67,+1:04.789,5599578,,,,,1 +3968,205,35,3,1,9,8,8,8,0,66,,,,,,,11 +3969,205,71,17,9,10,9,9,9,0,66,,,,,,,11 +3970,205,55,15,14,11,10,10,10,0,66,,,,,,,11 +3971,205,22,24,18,12,11,11,11,0,65,,,,,,,12 +3972,205,44,20,11,15,12,12,12,0,65,,,,,,,12 +3973,205,50,24,19,18,13,13,13,0,65,,,,,,,12 +3974,205,63,21,17,16,14,14,14,0,65,,,,,,,12 +3975,205,75,18,22,20,15,15,15,0,65,,,,,,,12 +3976,205,68,25,21,19,16,16,16,0,65,,,,,,,12 +3977,205,74,18,23,21,,R,17,0,56,,,,,,,5 +3978,205,23,17,10,6,,R,18,0,53,,,,,,,23 +3979,205,65,15,15,13,,R,19,0,37,,,,,,,5 +3980,205,73,25,20,22,,R,20,0,36,,,,,,,5 +3981,205,15,20,12,14,,R,21,0,6,,,,,,,7 +3982,205,64,21,16,17,,R,22,0,6,,,,,,,9 +3983,206,57,1,8,2,1,1,1,10,51,27:23.4,5243400,,,,,1 +3984,206,56,6,4,4,2,2,2,6,51,6.491,5249891,,,,,1 +3985,206,14,1,7,3,3,3,3,4,51,27.662,5271062,,,,,1 +3986,206,71,17,9,8,4,4,4,3,51,+1:13.491,5316891,,,,,1 +3987,206,49,3,2,5,5,5,5,2,51,+1:13.857,5317257,,,,,1 +3988,206,35,3,1,6,6,6,6,1,51,+1:15.867,5319267,,,,,1 +3989,206,55,15,14,12,7,7,7,0,51,+1:36.053,5339453,,,,,1 +3990,206,21,22,5,10,8,8,8,0,51,+1:41.302,5344702,,,,,1 +3991,206,25,22,6,9,9,9,9,0,50,,,,,,,11 +3992,206,65,15,15,11,10,10,10,0,50,,,,,,,11 +3993,206,44,20,11,13,11,11,11,0,50,,,,,,,11 +3994,206,15,20,12,14,12,12,12,0,48,,,,,,,13 +3995,206,75,18,22,20,,R,13,0,40,,,,,,,37 +3996,206,30,6,3,1,,R,14,0,31,,,,,,,27 +3997,206,68,25,21,17,,R,15,0,28,,,,,,,4 +3998,206,74,18,23,21,,R,16,0,28,,,,,,,4 +3999,206,22,24,18,16,,R,17,0,25,,,,,,,9 +4000,206,50,24,19,19,,R,18,0,21,,,,,,,6 +4001,206,63,21,17,15,,R,19,0,14,,,,,,,9 +4002,206,23,17,10,7,,R,20,0,13,,,,,,,5 +4003,206,64,21,16,18,,R,21,0,2,,,,,,,20 +4004,206,73,25,20,0,,F,22,0,0,,,,,,,81 +4005,207,14,1,10,4,1,1,1,10,58,30:28.7,5428718,,,,,1 +4006,207,30,6,5,3,2,2,2,6,58,20.046,5448764,,,,,1 +4007,207,57,1,9,6,3,3,3,4,58,22.177,5450895,,,,,1 +4008,207,77,22,8,10,4,4,4,3,58,22.841,5451559,,,,,1 +4009,207,44,20,14,9,5,5,5,2,58,+1:00.308,5489026,,,,,1 +4010,207,78,15,17,13,6,6,6,1,58,+1:36.040,5524758,,,,,1 +4011,207,75,20,15,16,7,7,7,0,56,,,,,,,12 +4012,207,49,3,4,2,8,8,8,0,55,,,,,,,23 +4013,207,15,18,21,17,9,9,9,0,55,,,,,,,13 +4014,207,64,21,2,22,10,10,10,0,54,,,,,,,14 +4015,207,22,24,22,11,,R,11,0,49,,,,,,,5 +4016,207,63,25,19,18,,R,12,0,42,,,,,,,5 +4017,207,76,24,23,19,,R,13,0,36,,,,,,,22 +4018,207,55,22,7,8,,R,14,0,34,,,,,,,74 +4019,207,79,18,20,15,,R,15,0,32,,,,,,,10 +4020,207,21,17,12,14,,R,16,0,14,,,,,,,20 +4021,207,50,25,18,21,,R,17,0,2,,,,,,,20 +4022,207,23,17,11,12,,R,18,0,1,,,,,,,6 +4023,207,35,3,3,1,,R,19,0,0,,,,,,,4 +4024,207,56,6,6,5,,R,20,0,0,,,,,,,4 +4025,207,65,15,16,7,,R,21,0,0,,,,,,,4 +4026,207,71,21,1,20,,W,22,0,0,,,,,,,37 +4027,207,80,26,24,23,,F,23,0,0,,,,,,,81 +4028,207,73,26,25,24,,F,24,0,0,,,,,,,81 +4029,208,35,3,3,1,1,1,1,10,72,36:07.0,5766990,,,,,1 +4030,208,77,22,8,3,2,2,2,6,72,4.19,5771180,,,,,1 +4031,208,44,20,14,5,3,3,3,4,72,15.87,5782860,,,,,1 +4032,208,57,1,9,4,4,4,4,3,72,33.033,5800023,,,,,1 +4033,208,30,6,5,2,5,5,5,2,72,33.731,5800721,,,,,1 +4034,208,55,22,7,6,6,6,6,1,72,34.02,5801010,,,,,1 +4035,208,65,15,16,13,7,7,7,0,72,50.912,5817902,,,,,1 +4036,208,21,17,12,7,8,8,8,0,72,+1:00.639,5827629,,,,,1 +4037,208,49,3,4,8,9,9,9,0,72,+1:15.402,5842392,,,,,1 +4038,208,14,1,10,12,10,10,10,0,71,,,,,,,11 +4039,208,78,15,17,19,11,11,11,0,71,,,,,,,11 +4040,208,15,18,21,17,12,12,12,0,71,,,,,,,11 +4041,208,63,25,19,22,13,13,13,0,71,,,,,,,11 +4042,208,75,20,15,15,14,14,14,0,71,,,,,,,11 +4043,208,50,25,18,21,15,15,15,0,70,,,,,,,12 +4044,208,56,6,6,14,16,16,16,0,70,,,,,,,12 +4045,208,71,21,1,9,17,17,17,0,68,,,,,,,5 +4046,208,79,18,20,18,18,18,18,0,67,,,,,,,15 +4047,208,23,17,11,10,,R,19,0,52,,,,,,,10 +4048,208,22,24,22,11,,R,20,0,16,,,,,,,22 +4049,208,64,21,2,16,,R,21,0,15,,,,,,,22 +4050,208,76,24,23,20,,R,22,0,0,,,,,,,3 +4051,209,35,3,3,1,1,1,1,10,72,52:01.7,6721715,,,,,1 +4052,209,56,6,6,7,2,2,2,6,72,0.979,6722694,,,,,1 +4053,209,23,17,11,6,3,3,3,4,72,12.089,6733804,,,,,1 +4054,209,65,15,16,8,4,4,4,3,72,29.919,6751634,,,,,1 +4055,209,57,1,9,17,5,5,5,2,72,30.351,6752066,,,,,1 +4056,209,77,22,8,12,6,6,6,1,72,31.393,6753108,,,,,1 +4057,209,55,22,7,11,7,7,7,0,72,46.359,6768074,,,,,1 +4058,209,63,25,19,19,8,8,8,0,71,,,,,,,11 +4059,209,15,18,21,18,9,9,9,0,71,,,,,,,11 +4060,209,76,24,23,15,10,10,10,0,66,,,,,,,5 +4061,209,78,15,17,14,,R,11,0,63,,,,,,,20 +4062,209,64,21,2,22,,R,12,0,50,,,,,,,5 +4063,209,75,20,15,20,,R,13,0,49,,,,,,,5 +4064,209,50,25,18,16,,R,14,0,43,,,,,,,5 +4065,209,79,18,20,21,,R,15,0,37,,,,,,,20 +4066,209,71,21,1,13,,R,16,0,33,,,,,,,5 +4067,209,21,17,12,9,,R,17,0,24,,,,,,,4 +4068,209,22,24,22,5,,R,18,0,24,,,,,,,9 +4069,209,44,20,14,3,,R,19,0,18,,,,,,,10 +4070,209,49,3,4,2,,R,20,0,5,,,,,,,8 +4071,209,30,6,5,4,,R,21,0,0,,,,,,,4 +4072,209,14,1,10,10,,R,22,0,0,,,,,,,4 +4073,210,49,3,4,2,1,1,1,10,62,31:00.7,5460673,,,,,1 +4074,210,30,6,5,3,2,2,2,6,62,1.237,5461910,,,,,1 +4075,210,56,6,6,9,3,3,3,4,62,+1:18.343,5539016,,,,,1 +4076,210,21,17,12,6,4,4,4,3,62,+1:23.388,5544061,,,,,1 +4077,210,55,22,7,14,5,5,5,2,61,,,,,,,11 +4078,210,57,1,9,8,6,6,6,1,61,,,,,,,11 +4079,210,78,15,17,12,7,7,7,0,61,,,,,,,11 +4080,210,44,20,14,4,8,8,8,0,61,,,,,,,11 +4081,210,63,25,19,19,9,9,9,0,60,,,,,,,12 +4082,210,50,25,18,21,10,10,10,0,60,,,,,,,12 +4083,210,79,18,20,22,11,11,11,0,59,,,,,,,13 +4084,210,64,21,2,17,,R,12,0,53,,,,,,,6 +4085,210,35,3,3,1,,R,13,0,40,,,,,,,6 +4086,210,14,1,10,10,,R,14,0,38,,,,,,,5 +4087,210,22,24,22,13,,R,15,0,32,,,,,,,5 +4088,210,65,15,16,7,,R,16,0,18,,,,,,,10 +4089,210,23,17,11,5,,R,17,0,17,,,,,,,7 +4090,210,75,20,15,18,,R,18,0,11,,,,,,,4 +4091,210,71,21,1,15,,R,19,0,11,,,,,,,4 +4092,210,77,22,8,11,,R,20,0,4,,,,,,,20 +4093,210,76,24,23,16,,R,21,0,2,,,,,,,20 +4094,210,15,18,21,20,,W,22,0,0,,,,,,,6 +4095,211,30,6,5,2,1,1,1,10,62,00:05.7,7205654,,,,,1 +4096,211,22,24,22,10,2,2,2,6,62,53.306,7258960,,,,,1 +4097,211,56,6,6,15,3,3,3,4,62,+1:22.108,7287762,,,,,1 +4098,211,44,20,14,12,4,4,4,3,62,+1:44.402,7310056,,,,,1 +4099,211,63,25,19,14,5,5,5,2,61,,,,,,,11 +4100,211,21,17,12,4,6,6,6,1,61,,,,,,,11 +4101,211,76,24,23,19,7,7,7,0,61,,,,,,,11 +4102,211,50,25,18,22,8,8,8,0,60,,,,,,,12 +4103,211,77,22,8,17,9,9,9,0,60,,,,,,,12 +4104,211,79,18,20,20,10,10,10,0,60,,,,,,,12 +4105,211,49,3,4,1,,R,11,0,39,,,,,,,20 +4106,211,75,20,15,21,,R,12,0,36,,,,,,,20 +4107,211,78,15,17,11,,R,13,0,24,,,,,,,20 +4108,211,55,22,7,9,,R,14,0,16,,,,,,,20 +4109,211,35,3,3,3,,R,15,0,16,,,,,,,20 +4110,211,23,17,11,6,,R,16,0,10,,,,,,,20 +4111,211,65,15,16,7,,R,17,0,9,,,,,,,20 +4112,211,15,18,21,18,,R,18,0,7,,,,,,,20 +4113,211,14,1,10,5,,R,19,0,1,,,,,,,20 +4114,211,57,1,9,8,,R,20,0,1,,,,,,,4 +4115,211,71,21,1,13,,R,21,0,1,,,,,,,4 +4116,211,64,21,2,16,,R,22,0,0,,,,,,,20 +4117,212,35,3,3,1,1,1,1,10,64,30:35.9,5435896,,,,,1 +4118,212,44,20,14,12,2,2,2,6,64,5.804,5441700,,,,,1 +4119,212,55,22,7,4,3,3,3,4,64,12.534,5448430,,,,,1 +4120,212,30,6,5,7,4,4,4,3,64,17.979,5453875,,,,,1 +4121,212,65,15,16,10,5,5,5,2,64,27.986,5463882,,,,,1 +4122,212,14,1,10,3,6,6,6,1,64,29.744,5465640,,,,,1 +4123,212,57,1,9,5,7,7,7,0,64,48.785,5484681,,,,,1 +4124,212,49,3,4,2,8,8,8,0,64,+1:04.139,5500035,,,,,1 +4125,212,21,17,12,8,9,9,9,0,64,+1:04.767,5500663,,,,,1 +4126,212,77,22,8,6,10,10,10,0,64,+1:05.670,5501566,,,,,1 +4127,212,50,25,18,19,11,11,11,0,63,,,,,,,11 +4128,212,56,6,6,11,12,12,12,0,63,,,,,,,11 +4129,212,76,24,23,22,13,13,13,0,63,,,,,,,11 +4130,212,81,15,17,13,14,14,14,0,62,,,,,,,12 +4131,212,15,18,21,18,15,15,15,0,62,,,,,,,12 +4132,212,64,21,2,21,,R,16,0,53,,,,,,,5 +4133,212,23,17,11,9,,R,17,0,50,,,,,,,5 +4134,212,22,24,22,17,,R,18,0,37,,,,,,,5 +4135,212,63,25,19,14,,R,19,0,35,,,,,,,29 +4136,212,75,20,15,16,,R,20,0,34,,,,,,,6 +4137,212,71,21,1,15,,R,21,0,17,,,,,,,5 +4138,212,79,18,20,20,,R,22,0,11,,,,,,,6 +4139,213,30,6,5,1,1,1,1,10,54,17:40.6,4660646,,,,,1 +4140,213,55,22,7,8,2,2,2,6,54,2.565,4663211,,,,,1 +4141,213,21,17,12,6,3,3,3,4,54,3.219,4663865,,,,,1 +4142,213,49,3,4,4,4,4,4,3,54,3.768,4664414,,,,,1 +4143,213,65,15,16,13,5,5,5,2,54,4.716,4665362,,,,,1 +4144,213,75,20,15,19,6,6,6,1,54,36.701,4697347,,,,,1 +4145,213,14,1,10,5,7,7,7,0,54,37.753,4698399,,,,,1 +4146,213,64,21,2,16,8,8,8,0,53,,,,,,,11 +4147,213,71,21,1,15,9,9,9,0,53,,,,,,,11 +4148,213,81,15,17,18,10,10,10,0,53,,,,,,,11 +4149,213,44,20,14,10,11,11,11,0,51,,,,,,,20 +4150,213,63,25,19,17,,R,12,0,46,,,,,,,5 +4151,213,50,25,18,14,,R,13,0,42,,,,,,,6 +4152,213,25,22,8,11,,R,14,0,35,,,,,,,7 +4153,213,22,24,22,3,,R,15,0,33,,,,,,,6 +4154,213,15,18,21,20,,R,16,0,32,,,,,,,5 +4155,213,23,17,11,7,,R,17,0,14,,,,,,,3 +4156,213,79,18,20,22,,R,18,0,5,,,,,,,20 +4157,213,35,3,3,2,,R,19,0,1,,,,,,,3 +4158,213,57,1,9,9,,R,20,0,0,,,,,,,5 +4159,213,56,6,6,12,,R,21,0,0,,,,,,,3 +4160,213,76,24,23,21,,R,22,0,0,,,,,,,20 +4161,214,30,6,5,1,1,1,1,10,72,38:50.5,5930492,,,,,1 +4162,214,49,3,4,2,2,2,2,6,72,23.537,5954029,,,,,1 +4163,214,56,6,6,5,3,3,3,4,72,+1:14.801,6005293,,,,,1 +4164,214,35,3,3,4,4,4,4,3,72,+1:21.784,6012276,,,,,1 +4165,214,55,22,7,8,5,5,5,2,72,+1:22.735,6013227,,,,,1 +4166,214,23,17,11,3,6,6,6,1,72,+1:29.871,6020363,,,,,1 +4167,214,14,1,10,9,7,7,7,0,71,,,,,,,4 +4168,214,65,15,16,14,8,8,8,0,71,,,,,,,11 +4169,214,21,17,12,11,9,9,9,0,71,,,,,,,11 +4170,214,15,20,14,6,10,10,10,0,70,,,,,,,12 +4171,214,79,18,20,21,11,11,11,0,70,,,,,,,12 +4172,214,71,21,1,17,12,12,12,0,69,,,,,,,13 +4173,214,63,25,19,19,,R,13,0,61,,,,,,,10 +4174,214,25,22,8,7,,R,14,0,60,,,,,,,20 +4175,214,64,21,2,16,,R,15,0,58,,,,,,,20 +4176,214,82,15,17,20,,R,16,0,40,,,,,,,20 +4177,214,22,24,22,13,,R,17,0,36,,,,,,,5 +4178,214,76,24,23,15,,R,18,0,33,,,,,,,23 +4179,214,57,1,9,10,,R,19,0,18,,,,,,,5 +4180,214,50,25,18,18,,R,20,0,15,,,,,,,20 +4181,214,75,20,15,12,,R,21,0,7,,,,,,,20 +4182,214,58,18,21,22,,R,22,0,5,,,,,,,5 +4183,215,35,3,3,1,1,1,1,10,59,28:01.7,5281665,,,,,1 +4184,215,55,22,7,11,2,2,2,6,59,10.205,5291870,,,,,1 +4185,215,25,22,8,8,3,3,3,4,59,11.296,5292961,,,,,1 +4186,215,14,1,10,6,4,4,4,3,59,31.229,5312894,,,,,1 +4187,215,23,17,11,5,5,5,5,2,59,31.88,5313545,,,,,1 +4188,215,71,21,1,12,6,6,6,1,59,+1:13.552,5355217,,,,,1 +4189,215,21,17,12,10,7,7,7,0,58,,,,,,,11 +4190,215,15,20,14,13,8,8,8,0,58,,,,,,,11 +4191,215,82,15,17,14,9,9,9,0,58,,,,,,,11 +4192,215,58,18,21,21,10,10,10,0,58,,,,,,,11 +4193,215,75,20,15,15,11,11,11,0,57,,,,,,,5 +4194,215,57,1,9,3,,R,12,0,52,,,,,,,5 +4195,215,76,24,23,16,,R,13,0,50,,,,,,,5 +4196,215,50,25,18,20,,R,14,0,45,,,,,,,5 +4197,215,56,6,6,7,,R,15,0,44,,,,,,,86 +4198,215,63,25,19,18,,R,16,0,44,,,,,,,5 +4199,215,65,15,16,9,,R,17,0,42,,,,,,,10 +4200,215,30,6,5,4,,R,18,0,38,,,,,,,36 +4201,215,22,24,22,22,,R,19,0,37,,,,,,,5 +4202,215,64,21,2,17,,R,20,0,29,,,,,,,5 +4203,215,49,3,4,2,,R,21,0,0,,,,,,,4 +4204,215,79,18,20,19,,R,22,0,0,,,,,,,20 +4205,216,77,22,8,1,1,1,1,10,45,20:59.0,4859046,,,,,1 +4206,216,30,6,5,4,2,2,2,6,45,17.527,4876573,,,,,1 +4207,216,57,1,9,3,3,3,3,4,45,24.77,4883816,,,,,1 +4208,216,15,20,14,11,4,4,4,3,45,27.165,4886211,,,,,1 +4209,216,23,17,11,7,5,5,5,2,45,29.995,4889041,,,,,1 +4210,216,55,22,7,6,6,6,6,1,45,34.717,4893763,,,,,1 +4211,216,75,20,15,17,7,7,7,0,45,+1:19.722,4938768,,,,,1 +4212,216,71,21,1,13,8,8,8,0,44,,,,,,,11 +4213,216,82,15,17,18,9,9,9,0,44,,,,,,,11 +4214,216,50,25,18,20,10,10,10,0,44,,,,,,,11 +4215,216,21,17,12,2,11,11,11,0,40,,,,,,,15 +4216,216,22,24,22,12,,R,12,0,33,,,,,,,5 +4217,216,63,25,19,19,,R,13,0,33,,,,,,,8 +4218,216,35,3,3,9,,R,14,0,33,,,,,,,20 +4219,216,76,24,23,15,,R,15,0,27,,,,,,,5 +4220,216,79,18,20,22,,R,16,0,23,,,,,,,60 +4221,216,65,15,16,14,,R,17,0,8,,,,,,,3 +4222,216,64,21,2,16,,R,18,0,8,,,,,,,3 +4223,216,14,1,10,8,,R,19,0,1,,,,,,,7 +4224,216,49,3,4,5,,R,20,0,1,,,,,,,4 +4225,216,56,6,6,10,,R,21,0,1,,,,,,,4 +4226,216,58,18,21,21,,R,22,0,0,,,,,,,6 +4227,217,35,3,3,2,1,1,1,10,77,45:47.1,6347149,,,,,1 +4228,217,71,21,1,3,2,2,2,6,77,9.079,6356228,,,,,1 +4229,217,65,15,16,10,3,3,3,4,77,20.445,6367594,,,,,1 +4230,217,30,6,5,1,4,4,4,3,77,30.501,6377650,,,,,1 +4231,217,23,17,11,14,5,5,5,2,77,30.715,6377864,,,,,1 +4232,217,75,20,15,16,6,6,6,1,77,41.512,6388661,,,,,1 +4233,217,15,20,14,12,7,7,7,0,77,+1:15.552,6422701,,,,,1 +4234,217,77,22,8,7,8,8,8,0,77,+1:16.409,6423558,,,,,1 +4235,217,56,6,6,5,9,9,9,0,76,,,,,,,20 +4236,217,79,18,20,20,10,10,10,0,76,,,,,,,11 +4237,217,55,22,7,9,11,11,11,0,76,,,,,,,11 +4238,217,58,18,21,22,12,12,12,0,75,,,,,,,12 +4239,217,63,25,19,21,13,13,13,0,75,,,,,,,12 +4240,217,14,1,10,8,,R,14,0,65,,,,,,,10 +4241,217,50,25,18,18,,R,15,0,61,,,,,,,6 +4242,217,64,21,2,19,,R,16,0,53,,,,,,,10 +4243,217,21,17,12,13,,R,17,0,42,,,,,,,20 +4244,217,49,3,4,6,,R,18,0,29,,,,,,,74 +4245,217,22,24,22,11,,R,19,0,29,,,,,,,5 +4246,217,57,1,9,4,,R,20,0,12,,,,,,,9 +4247,217,81,15,17,15,,R,21,0,7,,,,,,,5 +4248,217,76,24,23,17,,R,22,0,5,,,,,,,3 +4249,218,30,6,5,3,1,1,1,10,44,33:46.7,5626717,,,,,1 +4250,218,21,17,12,4,2,2,2,6,44,26.753,5653470,,,,,1 +4251,218,49,3,4,7,3,3,3,4,44,32.147,5658864,,,,,1 +4252,218,65,15,16,11,4,4,4,3,44,39.025,5665742,,,,,1 +4253,218,35,3,3,1,5,5,5,2,44,42.103,5668820,,,,,1 +4254,218,77,22,8,15,6,6,6,1,44,+1:03.741,5690458,,,,,1 +4255,218,64,21,2,8,7,7,7,0,44,+1:25.931,5712648,,,,,1 +4256,218,55,22,7,2,8,8,8,0,44,+1:42.008,5728725,,,,,1 +4257,218,81,15,17,13,9,9,9,0,44,+1:42.582,5729299,,,,,1 +4258,218,56,6,6,17,10,10,10,0,43,,,,,,,11 +4259,218,63,25,19,19,11,11,11,0,43,,,,,,,11 +4260,218,76,24,23,18,12,12,12,0,43,,,,,,,11 +4261,218,71,21,1,9,13,13,13,0,42,,,,,,,12 +4262,218,79,18,20,20,14,14,14,0,42,,,,,,,12 +4263,218,15,20,14,14,15,15,15,0,42,,,,,,,12 +4264,218,57,1,9,5,,D,16,0,44,,,,,,,2 +4265,218,50,25,18,21,,R,17,0,25,,,,,,,20 +4266,218,23,17,11,6,,R,18,0,21,,,,,,,20 +4267,218,14,1,10,10,,R,19,0,19,,,,,,,20 +4268,218,58,18,21,22,,R,20,0,18,,,,,,,20 +4269,218,22,24,22,12,,R,21,0,8,,,,,,,38 +4270,218,75,20,15,16,,R,22,0,5,,,,,,,10 +4271,219,14,1,10,6,1,1,1,10,53,17:04.6,4624609,,,,,1 +4272,219,55,22,7,1,2,2,2,6,53,1.937,4626546,,,,,1 +4273,219,49,3,4,2,3,3,3,4,53,4.343,4628952,,,,,1 +4274,219,21,17,12,3,4,4,4,3,53,5.871,4630480,,,,,1 +4275,219,35,3,3,4,5,5,5,2,53,6.416,4631025,,,,,1 +4276,219,30,6,5,9,6,6,6,1,53,11.481,4636090,,,,,1 +4277,219,77,22,8,7,7,7,7,0,53,12.471,4637080,,,,,1 +4278,219,56,6,6,10,8,8,8,0,53,17.639,4642248,,,,,1 +4279,219,57,1,9,5,9,9,9,0,53,49.373,4673982,,,,,1 +4280,219,15,20,14,16,10,10,10,0,53,+1:02.706,4687315,,,,,1 +4281,219,75,20,15,15,11,11,11,0,53,+1:03.327,4687936,,,,,1 +4282,219,81,15,17,18,12,12,12,0,52,,,,,,,11 +4283,219,22,24,22,11,13,13,13,0,52,,,,,,,11 +4284,219,58,18,21,22,14,14,14,0,50,,,,,,,13 +4285,219,71,21,1,14,,R,15,0,46,,,,,,,5 +4286,219,23,17,11,8,,R,16,0,39,,,,,,,4 +4287,219,65,15,16,12,,R,17,0,38,,,,,,,4 +4288,219,63,25,19,19,,R,18,0,33,,,,,,,5 +4289,219,76,24,23,13,,R,19,0,31,,,,,,,7 +4290,219,50,25,18,20,,R,20,0,12,,,,,,,6 +4291,219,79,18,20,21,,R,21,0,8,,,,,,,20 +4292,219,64,21,2,17,,R,22,0,4,,,,,,,22 +4293,220,35,3,3,1,1,1,1,10,71,27:36.0,5255999,,,,,1 +4294,220,14,1,10,10,2,2,2,6,71,2.909,5258908,,,,,1 +4295,220,49,3,4,4,3,3,3,4,71,3.962,5259961,,,,,1 +4296,220,21,17,12,14,4,4,4,3,71,12.127,5268126,,,,,1 +4297,220,23,17,11,11,5,5,5,2,71,31.859,5287858,,,,,1 +4298,220,30,6,5,9,6,6,6,1,71,33.41,5289409,,,,,1 +4299,220,71,21,1,7,7,7,7,0,71,37.207,5293206,,,,,1 +4300,220,65,15,16,12,8,8,8,0,71,49.057,5305056,,,,,1 +4301,220,81,15,17,13,9,9,9,0,71,+1:06.455,5322454,,,,,1 +4302,220,77,22,8,18,10,10,10,0,70,,,,,,,11 +4303,220,79,18,20,19,11,11,11,0,69,,,,,,,12 +4304,220,50,25,18,20,12,12,12,0,69,,,,,,,12 +4305,220,64,21,2,17,13,13,13,0,67,,,,,,,14 +4306,220,22,24,22,5,14,14,14,0,64,,,,,,,20 +4307,220,15,20,14,3,,R,15,0,58,,,,,,,5 +4308,220,76,24,23,6,,R,16,0,58,,,,,,,5 +4309,220,75,20,15,16,,R,17,0,57,,,,,,,5 +4310,220,63,25,19,21,,R,18,0,48,,,,,,,6 +4311,220,56,6,6,8,,R,19,0,38,,,,,,,4 +4312,220,55,22,7,15,,R,20,0,37,,,,,,,4 +4313,220,57,1,9,2,,R,21,0,1,,,,,,,5 +4314,220,58,18,21,0,,E,22,0,0,,,,,,,92 +4315,221,35,3,3,2,1,1,1,10,67,31:27.8,5487843,,,,,1 +4316,221,55,22,7,10,2,2,2,6,67,11.77,5499613,,,,,1 +4317,221,49,3,4,3,3,3,3,4,67,13.48,5501323,,,,,1 +4318,221,77,22,8,7,4,4,4,3,67,16.416,5504259,,,,,1 +4319,221,64,21,2,15,5,5,5,2,67,43.147,5530990,,,,,1 +4320,221,44,20,14,11,6,6,6,1,67,43.75,5531593,,,,,1 +4321,221,65,15,16,16,7,7,7,0,67,44.354,5532197,,,,,1 +4322,221,71,21,1,13,8,8,8,0,67,44.777,5532620,,,,,1 +4323,221,81,15,17,19,9,9,9,0,66,,,,,,,11 +4324,221,63,25,19,20,10,10,10,0,66,,,,,,,11 +4325,221,50,25,18,21,,R,11,0,50,,,,,,,20 +4326,221,57,1,9,1,,R,12,0,43,,,,,,,5 +4327,221,22,24,22,9,,R,13,0,43,,,,,,,6 +4328,221,14,1,10,6,,R,14,0,42,,,,,,,5 +4329,221,76,24,23,12,,R,15,0,40,,,,,,,86 +4330,221,56,6,6,14,,R,16,0,22,,,,,,,5 +4331,221,75,20,15,17,,R,17,0,16,,,,,,,5 +4332,221,30,6,5,5,,R,18,0,2,,,,,,,22 +4333,221,58,18,21,18,,R,19,0,1,,,,,,,5 +4334,221,79,18,20,22,,R,20,0,1,,,,,,,4 +4335,221,21,17,12,4,,R,21,0,0,,,,,,,4 +4336,221,23,17,11,8,,R,22,0,0,,,,,,,4 +4337,222,30,6,5,2,1,1,1,10,53,29:48.4,5388446,,,,,1 +4338,222,49,3,4,6,2,2,2,6,53,1.378,5389824,,,,,1 +4339,222,56,6,6,3,3,3,3,4,53,26.384,5414830,,,,,1 +4340,222,57,1,9,4,4,4,4,3,53,27.129,5415575,,,,,1 +4341,222,55,22,7,7,5,5,5,2,53,40.403,5428849,,,,,1 +4342,222,65,15,16,8,6,6,6,1,53,41.63,5430076,,,,,1 +4343,222,21,17,12,9,7,7,7,0,53,56.825,5445271,,,,,1 +4344,222,77,22,8,5,8,8,8,0,53,+1:00.429,5448875,,,,,1 +4345,222,23,17,11,13,9,9,9,0,53,+1:22.036,5470482,,,,,1 +4346,222,14,1,10,11,10,10,10,0,52,,,,,,,5 +4347,222,71,21,1,17,11,11,11,0,52,,,,,,,11 +4348,222,64,21,2,16,12,12,12,0,52,,,,,,,11 +4349,222,50,25,18,21,13,13,13,0,52,,,,,,,11 +4350,222,35,3,3,1,,D,14,0,53,,,,,,,2 +4351,222,58,18,21,20,,R,15,0,46,,,,,,,6 +4352,222,63,25,19,22,,R,16,0,46,,,,,,,5 +4353,222,44,20,14,10,,R,17,0,36,,,,,,,5 +4354,222,75,20,15,15,,R,18,0,22,,,,,,,67 +4355,222,79,18,20,19,,R,19,0,8,,,,,,,5 +4356,222,22,24,22,12,,R,20,0,6,,,,,,,20 +4357,222,76,24,23,14,,R,21,0,3,,,,,,,20 +4358,222,81,15,17,0,,W,22,0,0,,,,,,,82 +4359,223,57,1,9,5,1,1,1,10,69,38:57.8,5937771,,,,,1 +4360,223,14,1,10,6,2,2,2,6,69,1.654,5939425,,,,,1 +4361,223,35,3,3,1,3,3,3,4,69,1.803,5939574,,,,,1 +4362,223,77,22,8,8,4,4,4,3,69,1.919,5939690,,,,,1 +4363,223,56,6,6,7,5,5,5,2,69,3.789,5941560,,,,,1 +4364,223,49,3,4,3,6,6,6,1,69,4.537,5942308,,,,,1 +4365,223,44,20,14,9,7,7,7,0,69,+1:07.145,6004916,,,,,1 +4366,223,65,15,16,14,8,8,8,0,69,+1:12.961,6010732,,,,,1 +4367,223,76,24,23,11,9,9,9,0,69,+1:17.487,6015258,,,,,1 +4368,223,75,20,15,15,10,10,10,0,69,+1:18.215,6015986,,,,,1 +4369,223,21,17,12,17,11,11,11,0,68,,,,,,,11 +4370,223,63,25,19,21,12,12,12,0,68,,,,,,,11 +4371,223,55,22,7,10,13,13,13,0,68,,,,,,,11 +4372,223,82,15,17,18,14,14,14,0,68,,,,,,,11 +4373,223,58,18,21,20,15,15,15,0,68,,,,,,,11 +4374,223,50,25,18,22,16,16,16,0,68,,,,,,,11 +4375,223,79,18,20,19,17,17,17,0,68,,,,,,,11 +4376,223,30,6,5,2,,R,18,0,47,,,,,,,4 +4377,223,71,21,1,4,,R,19,0,47,,,,,,,6 +4378,223,23,17,11,16,,R,20,0,44,,,,,,,47 +4379,223,22,24,22,12,,R,21,0,30,,,,,,,6 +4380,223,64,21,2,13,,R,22,0,11,,,,,,,20 +4381,224,71,3,5,2,1,1,1,10,58,32:50.4,5570400,,,,,1 +4382,224,35,3,6,1,2,2,2,6,58,38.02,5608420,,,,,1 +4383,224,56,6,2,3,3,3,3,4,58,+1:02.571,5632971,,,,,1 +4384,224,77,22,4,7,4,4,4,3,58,+1:17.037,5647437,,,,,1 +4385,224,57,1,7,5,5,5,5,2,58,+1:35.071,5665471,,,,,1 +4386,224,63,25,19,10,6,6,6,1,57,,,,,,,11 +4387,224,44,27,9,11,7,7,7,0,57,,,,,,,11 +4388,224,49,15,15,9,8,8,8,0,57,,,,,,,11 +4389,224,73,29,16,18,9,9,9,0,56,,,,,,,12 +4390,224,64,27,10,20,10,10,10,0,56,,,,,,,12 +4391,224,79,25,18,15,11,11,11,0,55,,,,,,,13 +4392,224,83,18,20,17,,R,12,0,42,,,,,,,93 +4393,224,30,6,1,4,,R,13,0,32,,,,,,,23 +4394,224,21,18,21,16,,R,14,0,32,,,,,,,8 +4395,224,22,17,11,8,,R,15,0,29,,,,,,,5 +4396,224,14,1,8,13,,R,16,0,24,,,,,,,37 +4397,224,50,29,17,12,,R,17,0,15,,,,,,,5 +4398,224,55,22,3,6,,R,18,0,9,,,,,,,4 +4399,224,84,17,12,19,,R,19,0,1,,,,,,,4 +4400,224,65,15,14,14,,R,20,0,0,,,,,,,4 +4401,224,69,28,22,21,,F,21,0,0,,,,,,,77 +4402,224,85,28,23,22,,F,22,0,0,,,,,,,77 +4403,225,71,3,5,1,1,1,1,10,71,49:53.0,6592976,,,,,1 +4404,225,55,22,3,5,2,2,2,6,71,17.982,6610958,,,,,1 +4405,225,30,6,1,4,3,3,3,4,70,,,,,,,11 +4406,225,57,1,7,7,4,4,4,3,70,,,,,,,11 +4407,225,63,25,19,11,5,5,5,2,70,,,,,,,11 +4408,225,44,27,9,15,6,6,6,1,70,,,,,,,11 +4409,225,56,6,2,10,7,7,7,0,70,,,,,,,11 +4410,225,64,27,10,22,8,8,8,0,69,,,,,,,12 +4411,225,79,25,18,16,9,9,9,0,69,,,,,,,12 +4412,225,83,18,20,18,10,10,10,0,68,,,,,,,13 +4413,225,69,28,22,19,11,11,11,0,67,,,,,,,14 +4414,225,84,17,12,6,12,12,12,0,64,,,,,,,20 +4415,225,22,17,11,2,,R,13,0,59,,,,,,,20 +4416,225,49,15,15,9,,R,14,0,36,,,,,,,5 +4417,225,14,1,8,14,,R,15,0,29,,,,,,,20 +4418,225,65,15,14,12,,R,16,0,28,,,,,,,5 +4419,225,35,3,6,3,,R,17,0,26,,,,,,,20 +4420,225,77,22,4,8,,R,18,0,26,,,,,,,9 +4421,225,85,28,23,20,,R,19,0,26,,,,,,,20 +4422,225,73,29,16,17,,R,20,0,24,,,,,,,20 +4423,225,50,29,17,13,,R,21,0,19,,,,,,,5 +4424,225,58,18,21,21,,R,22,0,0,,,,,,,20 +4425,226,71,3,5,1,1,1,1,10,72,54:55.3,6895322,,,,,1 +4426,226,35,3,6,3,2,2,2,6,72,12.167,6907489,,,,,1 +4427,226,55,22,3,4,3,3,3,4,72,14.754,6910076,,,,,1 +4428,226,22,17,11,6,4,4,4,3,72,55.131,6950453,,,,,1 +4429,226,56,6,2,10,5,5,5,2,72,+1:04.991,6960313,,,,,1 +4430,226,50,29,17,7,6,6,6,1,72,+1:08.913,6964235,,,,,1 +4431,226,14,1,8,9,7,7,7,0,72,+1:13.400,6968722,,,,,1 +4432,226,44,27,9,12,8,8,8,0,72,+1:14.295,6969617,,,,,1 +4433,226,65,15,14,17,9,9,9,0,71,,,,,,,11 +4434,226,85,28,23,22,10,10,10,0,69,,,,,,,13 +4435,226,77,22,4,5,,R,11,0,56,,,,,,,22 +4436,226,30,6,1,2,,R,12,0,46,,,,,,,41 +4437,226,83,18,20,19,,R,13,0,39,,,,,,,7 +4438,226,63,25,19,16,,R,14,0,36,,,,,,,37 +4439,226,84,17,12,15,,R,15,0,34,,,,,,,4 +4440,226,58,18,21,14,,R,16,0,33,,,,,,,4 +4441,226,49,15,15,11,,R,17,0,32,,,,,,,20 +4442,226,64,27,10,18,,R,18,0,29,,,,,,,42 +4443,226,79,25,18,13,,R,19,0,28,,,,,,,7 +4444,226,73,29,16,20,,R,20,0,24,,,,,,,94 +4445,226,69,28,22,21,,R,21,0,24,,,,,,,4 +4446,226,57,1,7,8,,R,22,0,19,,,,,,,37 +4447,227,35,3,6,2,1,1,1,10,67,33:26.5,5606473,,,,,1 +4448,227,30,6,1,3,2,2,2,6,67,0.762,5607235,,,,,1 +4449,227,14,1,8,6,3,3,3,4,67,32.834,5639307,,,,,1 +4450,227,71,3,5,1,4,4,4,3,67,33.511,5639984,,,,,1 +4451,227,22,17,11,5,5,5,5,2,67,33.713,5640186,,,,,1 +4452,227,84,17,12,11,6,6,6,1,67,55.567,5662040,,,,,1 +4453,227,65,15,14,12,7,7,7,0,67,+1:18.027,5684500,,,,,1 +4454,227,57,1,7,9,8,8,8,0,67,+1:18.438,5684911,,,,,1 +4455,227,77,22,4,8,9,9,9,0,67,+1:21.061,5687534,,,,,1 +4456,227,64,27,10,17,10,10,10,0,66,,,,,,,11 +4457,227,73,29,16,20,11,11,11,0,65,,,,,,,12 +4458,227,83,18,20,19,12,12,12,0,65,,,,,,,12 +4459,227,21,18,21,18,13,13,13,0,65,,,,,,,12 +4460,227,63,25,19,14,,D,14,0,66,,,,,,,2 +4461,227,79,25,18,16,,D,15,0,65,,,,,,,2 +4462,227,49,15,15,10,,R,16,0,59,,,,,,,23 +4463,227,50,29,17,13,,R,17,0,38,,,,,,,5 +4464,227,44,27,9,15,,R,18,0,6,,,,,,,4 +4465,227,56,6,2,7,,R,19,0,6,,,,,,,10 +4466,227,55,22,3,4,,R,20,0,1,,,,,,,4 +4467,227,85,28,23,21,,F,21,0,0,,,,,,,77 +4468,227,69,28,22,22,,F,22,0,0,,,,,,,77 +4469,228,71,3,5,2,1,1,1,10,63,35:26.2,5726156,,,,,1 +4470,228,30,6,1,1,2,2,2,6,63,16.46,5742616,,,,,1 +4471,228,77,22,4,7,3,3,3,4,63,46.891,5773047,,,,,1 +4472,228,56,6,2,6,4,4,4,3,63,+1:01.583,5787739,,,,,1 +4473,228,22,17,11,9,5,5,5,2,63,+1:18.490,5804646,,,,,1 +4474,228,55,22,3,5,6,6,6,1,62,,,,,,,11 +4475,228,64,27,10,17,7,7,7,0,62,,,,,,,11 +4476,228,57,1,7,11,8,8,8,0,61,,,,,,,5 +4477,228,83,18,20,18,9,9,9,0,61,,,,,,,12 +4478,228,69,28,22,21,10,10,10,0,59,,,,,,,14 +4479,228,35,3,6,3,11,11,11,0,57,,,,,,,22 +4480,228,44,27,9,13,,R,12,0,54,,,,,,,5 +4481,228,79,25,18,16,,R,13,0,45,,,,,,,20 +4482,228,14,1,8,4,,R,14,0,44,,,,,,,9 +4483,228,73,29,16,20,,R,15,0,40,,,,,,,5 +4484,228,50,29,17,14,,R,16,0,38,,,,,,,9 +4485,228,84,17,12,12,,R,17,0,36,,,,,,,20 +4486,228,49,15,15,10,,R,18,0,32,,,,,,,23 +4487,228,21,18,21,19,,R,19,0,30,,,,,,,5 +4488,228,65,15,14,15,,R,20,0,25,,,,,,,10 +4489,228,63,25,19,8,,R,21,0,23,,,,,,,5 +4490,228,85,28,23,22,,F,22,0,0,,,,,,,77 +4491,229,44,27,9,14,1,1,1,10,75,00:45.6,7245629,,,,,1 +4492,229,14,1,8,5,2,2,2,6,75,4.828,7250457,,,,,1 +4493,229,65,15,14,13,3,3,3,4,75,37.503,7283132,,,,,1 +4494,229,49,15,15,9,4,4,4,3,74,,,,,,,54 +4495,229,63,25,19,11,5,5,5,2,70,,,,,,,4 +4496,229,57,1,7,8,6,6,6,1,70,,,,,,,4 +4497,229,56,6,2,7,7,7,7,0,68,,,,,,,4 +4498,229,35,3,6,10,,R,8,0,66,,,,,,,4 +4499,229,55,22,3,3,,R,9,0,60,,,,,,,22 +4500,229,69,28,22,21,,R,10,0,60,,,,,,,4 +4501,229,71,3,5,2,,R,11,0,40,,,,,,,5 +4502,229,84,17,12,16,,R,12,0,30,,,,,,,20 +4503,229,77,22,4,4,,R,13,0,9,,,,,,,6 +4504,229,64,27,10,17,,R,14,0,5,,,,,,,7 +4505,229,73,29,16,20,,R,15,0,3,,,,,,,20 +4506,229,79,25,18,15,,R,16,0,2,,,,,,,20 +4507,229,30,6,1,1,,R,17,0,0,,,,,,,20 +4508,229,22,17,11,6,,R,18,0,0,,,,,,,20 +4509,229,83,18,20,19,,R,19,0,0,,,,,,,4 +4510,229,21,18,21,18,,R,20,0,0,,,,,,,4 +4511,229,50,29,17,12,,R,21,0,0,,,,,,,20 +4512,229,85,28,23,22,,F,22,0,0,,,,,,,82 +4513,230,30,6,1,3,1,1,1,10,65,59:49.3,7189307,,,,,1 +4514,230,55,22,3,4,2,2,2,6,65,45.302,7234609,,,,,1 +4515,230,35,3,6,2,3,3,3,4,65,48.388,7237695,,,,,1 +4516,230,49,15,15,11,4,4,4,3,64,,,,,,,11 +4517,230,57,1,7,10,5,5,5,2,64,,,,,,,11 +4518,230,64,27,10,17,6,6,6,1,63,,,,,,,12 +4519,230,50,29,17,13,,R,7,0,47,,,,,,,20 +4520,230,22,17,11,7,,R,8,0,45,,,,,,,24 +4521,230,77,22,4,5,,R,9,0,44,,,,,,,20 +4522,230,65,15,14,9,,R,10,0,20,,,,,,,20 +4523,230,84,17,12,15,,R,11,0,17,,,,,,,24 +4524,230,63,25,19,12,,D,12,0,16,,,,,,,2 +4525,230,71,3,5,1,,R,13,0,10,,,,,,,20 +4526,230,79,25,18,16,,R,14,0,8,,,,,,,10 +4527,230,56,6,2,6,,R,15,0,1,,,,,,,20 +4528,230,44,27,9,8,,R,16,0,1,,,,,,,4 +4529,230,21,18,21,19,,R,17,0,1,,,,,,,4 +4530,230,14,1,8,14,,R,18,0,0,,,,,,,4 +4531,230,73,29,16,20,,R,19,0,0,,,,,,,4 +4532,230,83,18,20,18,,R,20,0,0,,,,,,,4 +4533,230,69,28,22,21,,F,21,0,0,,,,,,,77 +4534,230,85,28,23,22,,F,22,0,0,,,,,,,77 +4535,231,71,3,5,1,1,1,1,10,69,36:03.4,5763400,,,,,1 +4536,231,35,3,6,2,2,2,2,6,69,4.183,5767583,,,,,1 +4537,231,55,22,3,4,3,3,3,4,69,54.656,5818056,,,,,1 +4538,231,14,1,8,10,4,4,4,3,69,63.673,5827073,,,,,1 +4539,231,57,1,7,6,5,5,5,2,68,,,,,,,11 +4540,231,84,17,12,9,6,6,6,1,68,,,,,,,11 +4541,231,65,15,14,15,7,7,7,0,68,,,,,,,11 +4542,231,21,18,21,16,8,8,8,0,67,,,,,,,12 +4543,231,83,18,20,19,,R,9,0,44,,,,,,,4 +4544,231,69,28,22,20,,R,10,0,44,,,,,,,6 +4545,231,77,22,4,7,,R,11,0,42,,,,,,,20 +4546,231,30,6,1,3,,R,12,0,41,,,,,,,86 +4547,231,44,27,9,11,,R,13,0,39,,,,,,,5 +4548,231,63,25,19,14,,R,14,0,39,,,,,,,5 +4549,231,64,27,10,18,,R,15,0,38,,,,,,,5 +4550,231,22,17,11,8,,R,16,0,22,,,,,,,8 +4551,231,85,28,23,22,,R,17,0,22,,,,,,,10 +4552,231,49,15,15,12,,R,18,0,19,,,,,,,6 +4553,231,50,29,17,13,,R,19,0,10,,,,,,,5 +4554,231,73,29,16,21,,R,20,0,6,,,,,,,4 +4555,231,79,25,18,17,,R,21,0,6,,,,,,,4 +4556,231,56,6,2,5,,R,22,0,1,,,,,,,22 +4557,232,71,3,5,2,1,1,1,10,72,36:29.2,5789200,,,,,1 +4558,232,35,3,6,6,2,2,2,6,72,8.127,5797327,,,,,1 +4559,232,55,22,3,3,3,3,3,4,72,46.442,5835642,,,,,1 +4560,232,77,22,4,4,4,4,4,3,72,46.859,5836059,,,,,1 +4561,232,57,1,7,5,5,5,5,2,72,62.774,5851974,,,,,1 +4562,232,14,1,8,7,6,6,6,1,71,,,,,,,11 +4563,232,44,27,9,9,7,7,7,0,71,,,,,,,11 +4564,232,84,17,12,8,8,8,8,0,71,,,,,,,11 +4565,232,22,17,11,10,9,9,9,0,71,,,,,,,11 +4566,232,63,25,19,13,10,10,10,0,70,,,,,,,12 +4567,232,73,29,16,19,11,11,11,0,69,,,,,,,13 +4568,232,83,18,20,18,12,12,12,0,69,,,,,,,13 +4569,232,65,15,14,16,,D,13,0,70,,,,,,,2 +4570,232,49,15,15,12,,R,14,0,56,,,,,,,37 +4571,232,79,25,18,14,,R,15,0,33,,,,,,,5 +4572,232,69,28,22,20,,R,16,0,29,,,,,,,69 +4573,232,64,27,10,11,,R,17,0,28,,,,,,,5 +4574,232,50,29,17,15,,R,18,0,10,,,,,,,38 +4575,232,56,6,2,22,,R,19,0,5,,,,,,,6 +4576,232,21,18,21,17,,R,20,0,2,,,,,,,48 +4577,232,85,28,23,21,,R,21,0,2,,,,,,,10 +4578,232,30,6,1,1,,W,22,0,0,,,,,,,5 +4579,233,35,3,6,2,1,1,1,10,61,33:00.9,5580874,,,,,1 +4580,233,77,22,4,7,2,2,2,6,61,19.026,5599900,,,,,1 +4581,233,57,1,7,4,3,3,3,4,61,50.83,5631704,,,,,1 +4582,233,22,17,11,6,4,4,4,3,61,66.716,5647590,,,,,1 +4583,233,14,1,8,9,5,5,5,2,61,82.507,5663381,,,,,1 +4584,233,84,17,12,8,6,6,6,1,60,,,,,,,11 +4585,233,63,25,19,14,7,7,7,0,60,,,,,,,11 +4586,233,49,15,15,11,8,8,8,0,60,,,,,,,11 +4587,233,65,15,14,13,9,9,9,0,60,,,,,,,11 +4588,233,50,29,17,15,10,10,10,0,60,,,,,,,11 +4589,233,21,18,21,18,11,11,11,0,59,,,,,,,12 +4590,233,55,22,3,5,,R,12,0,44,,,,,,,23 +4591,233,44,27,9,16,,R,13,0,40,,,,,,,64 +4592,233,64,27,10,17,,R,14,0,38,,,,,,,5 +4593,233,71,3,5,1,,R,15,0,26,,,,,,,36 +4594,233,83,18,20,19,,R,16,0,21,,,,,,,6 +4595,233,73,29,16,20,,R,17,0,13,,,,,,,10 +4596,233,79,25,18,12,,R,18,0,12,,,,,,,5 +4597,233,56,6,2,10,,R,19,0,5,,,,,,,24 +4598,233,30,6,1,3,,R,20,0,3,,,,,,,9 +4599,233,85,28,23,21,,F,21,0,0,,,,,,,81 +4600,233,69,28,22,22,,F,22,0,0,,,,,,,81 +4601,234,71,3,5,1,1,1,1,10,45,21:43.4,4903417,,,,,1 +4602,234,55,22,3,5,2,2,2,6,45,11.452,4914869,,,,,1 +4603,234,35,3,6,6,3,3,3,4,45,33.926,4937343,,,,,1 +4604,234,30,6,1,3,4,4,4,3,45,41.517,4944934,,,,,1 +4605,234,14,1,8,7,5,5,5,2,45,42.196,4945613,,,,,1 +4606,234,22,17,11,9,6,6,6,1,45,102.099,5005516,,,,,1 +4607,234,44,27,9,12,7,7,7,0,45,103.912,5007329,,,,,1 +4608,234,49,15,15,13,8,8,8,0,44,,,,,,,11 +4609,234,63,25,19,15,9,9,9,0,44,,,,,,,11 +4610,234,84,17,12,10,10,10,10,0,44,,,,,,,11 +4611,234,73,29,16,19,11,11,11,0,44,,,,,,,11 +4612,234,83,18,20,18,12,12,12,0,43,,,,,,,12 +4613,234,77,22,4,2,13,13,13,0,42,,,,,,,5 +4614,234,56,6,2,8,,R,14,0,34,,,,,,,5 +4615,234,65,15,14,14,,R,15,0,25,,,,,,,76 +4616,234,64,27,10,11,,R,16,0,19,,,,,,,5 +4617,234,79,25,18,16,,R,17,0,19,,,,,,,20 +4618,234,57,1,7,4,,R,18,0,13,,,,,,,6 +4619,234,50,29,17,17,,R,19,0,0,,,,,,,4 +4620,234,86,18,21,0,,F,20,0,0,,,,,,,81 +4621,235,35,3,6,3,1,1,1,10,77,46:21.1,6381134,,,,,1 +4622,235,71,3,5,2,2,2,2,6,77,0.771,6381905,,,,,1 +4623,235,55,22,3,5,3,3,3,4,77,84.212,6465346,,,,,1 +4624,235,57,1,7,7,4,4,4,3,76,,,,,,,11 +4625,235,44,27,9,11,5,5,5,2,76,,,,,,,11 +4626,235,22,17,11,13,6,6,6,1,75,,,,,,,12 +4627,235,79,25,18,14,7,7,7,0,74,,,,,,,13 +4628,235,73,29,16,18,8,8,8,0,74,,,,,,,13 +4629,235,30,6,1,1,9,9,9,0,70,,,,,,,37 +4630,235,86,18,21,20,10,10,10,0,69,,,,,,,20 +4631,235,77,22,4,6,,R,11,0,64,,,,,,,5 +4632,235,49,15,15,10,,R,12,0,50,,,,,,,10 +4633,235,65,15,14,8,,R,13,0,35,,,,,,,5 +4634,235,56,6,2,4,,R,14,0,31,,,,,,,6 +4635,235,83,18,20,19,,R,15,0,24,,,,,,,22 +4636,235,14,1,8,9,,R,16,0,23,,,,,,,5 +4637,235,50,29,17,17,,R,17,0,10,,,,,,,20 +4638,235,84,17,12,12,,R,18,0,5,,,,,,,20 +4639,235,64,27,10,15,,R,19,0,1,,,,,,,4 +4640,235,63,25,19,16,,R,20,0,0,,,,,,,4 +4641,236,30,6,1,3,1,1,1,10,44,28:15.1,5295125,,,,,1 +4642,236,35,3,6,1,2,2,2,6,44,5.602,5300727,,,,,1 +4643,236,57,1,7,6,3,3,3,4,44,15.71,5310835,,,,,1 +4644,236,55,22,3,7,4,4,4,3,44,19.125,5314250,,,,,1 +4645,236,71,3,5,2,5,5,5,2,44,29.179,5324304,,,,,1 +4646,236,77,22,4,5,6,6,6,1,44,29.896,5325021,,,,,1 +4647,236,63,25,19,13,7,7,7,0,44,60.754,5355879,,,,,1 +4648,236,79,25,18,17,8,8,8,0,44,100.227,5395352,,,,,1 +4649,236,73,29,16,18,9,9,9,0,43,,,,,,,11 +4650,236,83,18,20,19,10,10,10,0,43,,,,,,,11 +4651,236,14,1,8,4,,R,11,0,37,,,,,,,20 +4652,236,84,17,12,8,,R,12,0,34,,,,,,,5 +4653,236,56,6,2,9,,R,13,0,29,,,,,,,6 +4654,236,22,17,11,10,,R,14,0,29,,,,,,,22 +4655,236,64,27,10,15,,R,15,0,22,,,,,,,10 +4656,236,50,29,17,16,,R,16,0,11,,,,,,,3 +4657,236,49,15,15,11,,R,17,0,0,,,,,,,4 +4658,236,65,15,14,12,,R,18,0,0,,,,,,,4 +4659,236,44,27,9,14,,R,19,0,0,,,,,,,4 +4660,236,86,18,21,0,,F,20,0,0,,,,,,,81 +4661,237,30,6,1,3,1,1,1,10,53,17:43.6,4663632,,,,,1 +4662,237,55,22,3,6,2,2,2,6,53,18.265,4681897,,,,,1 +4663,237,57,1,7,4,3,3,3,4,53,66.635,4730267,,,,,1 +4664,237,84,17,12,9,4,4,4,3,53,85.217,4748849,,,,,1 +4665,237,22,17,11,10,5,5,5,2,53,85.475,4749107,,,,,1 +4666,237,64,27,10,14,6,6,6,1,52,,,,,,,11 +4667,237,35,3,6,2,7,7,7,0,52,,,,,,,11 +4668,237,50,29,17,15,8,8,8,0,52,,,,,,,11 +4669,237,65,15,14,12,9,9,9,0,51,,,,,,,5 +4670,237,79,25,18,16,10,10,10,0,51,,,,,,,12 +4671,237,73,29,16,19,,R,11,0,36,,,,,,,20 +4672,237,56,6,2,7,,R,12,0,23,,,,,,,20 +4673,237,83,18,20,18,,R,13,0,12,,,,,,,5 +4674,237,63,25,19,17,,R,14,0,9,,,,,,,5 +4675,237,49,15,15,13,,R,15,0,7,,,,,,,20 +4676,237,71,3,5,1,,R,16,0,5,,,,,,,20 +4677,237,86,18,21,20,,R,17,0,5,,,,,,,5 +4678,237,77,22,4,8,,R,18,0,4,,,,,,,9 +4679,237,44,27,9,11,,R,19,0,2,,,,,,,20 +4680,237,14,1,8,5,,R,20,0,1,,,,,,,20 +4681,238,35,3,6,2,1,1,1,10,70,40:22.9,6022915,,,,,1 +4682,238,71,3,5,1,2,2,2,6,70,19.966,6042881,,,,,1 +4683,238,30,6,1,4,3,3,3,4,70,53.765,6076680,,,,,1 +4684,238,55,22,3,3,4,4,4,3,70,55.109,6078024,,,,,1 +4685,238,56,6,2,6,5,5,5,2,70,87.389,6110304,,,,,1 +4686,238,77,22,4,5,6,6,6,1,70,93.141,6116056,,,,,1 +4687,238,49,15,15,11,7,7,7,0,69,,,,,,,11 +4688,238,65,15,14,12,8,8,8,0,69,,,,,,,11 +4689,238,84,17,12,10,9,9,9,0,69,,,,,,,11 +4690,238,44,27,9,15,10,10,10,0,69,,,,,,,11 +4691,238,63,25,19,13,11,11,11,0,69,,,,,,,11 +4692,238,79,25,18,14,12,12,12,0,68,,,,,,,12 +4693,238,14,1,8,8,13,13,13,0,68,,,,,,,12 +4694,238,73,29,16,17,14,14,14,0,67,,,,,,,13 +4695,238,86,18,21,20,15,15,15,0,65,,,,,,,15 +4696,238,83,18,20,19,16,16,16,0,65,,,,,,,15 +4697,238,57,1,7,7,,R,17,0,52,,,,,,,4 +4698,238,50,29,17,16,,R,18,0,47,,,,,,,5 +4699,238,64,27,10,18,,R,19,0,46,,,,,,,4 +4700,238,22,17,11,9,,R,20,0,41,,,,,,,20 +4701,239,71,3,5,2,1,1,1,10,52,32:33.8,5553791,,,,,1 +4702,239,30,6,1,3,2,2,2,6,52,1.883,5555674,,,,,1 +4703,239,57,1,7,5,3,3,3,4,52,3.212,5557003,,,,,1 +4704,239,77,22,4,4,4,4,4,3,52,26.526,5580317,,,,,1 +4705,239,84,17,12,10,5,5,5,2,52,67.12,5620911,,,,,1 +4706,239,49,15,15,7,6,6,6,1,52,81.186,5634977,,,,,1 +4707,239,44,27,9,12,7,7,7,0,52,84.51,5638301,,,,,1 +4708,239,14,1,8,8,8,8,8,0,52,85.233,5639024,,,,,1 +4709,239,22,17,11,11,9,9,9,0,52,101.065,5654856,,,,,1 +4710,239,65,15,14,13,10,10,10,0,52,101.799,5655590,,,,,1 +4711,239,50,29,17,17,11,11,11,0,51,,,,,,,11 +4712,239,83,18,20,18,12,12,12,0,50,,,,,,,12 +4713,239,73,29,16,19,13,13,13,0,50,,,,,,,12 +4714,239,56,6,2,6,,R,14,0,39,,,,,,,4 +4715,239,79,25,18,14,,R,15,0,37,,,,,,,5 +4716,239,35,3,6,1,,R,16,0,36,,,,,,,36 +4717,239,63,25,19,15,,R,17,0,20,,,,,,,5 +4718,239,64,27,10,16,,R,18,0,13,,,,,,,20 +4719,239,55,22,3,9,,R,19,0,0,,,,,,,20 +4720,239,86,18,21,20,,F,20,0,0,,,,,,,81 +4721,240,30,22,1,2,1,1,1,10,71,38:34.2,5914154,,,,,1 +4722,240,14,3,6,3,2,2,2,6,71,11.06,5925214,,,,,1 +4723,240,77,6,28,5,3,3,3,4,70,,,,,,,11 +4724,240,57,1,8,7,4,4,4,3,70,,,,,,,11 +4725,240,55,6,27,6,5,5,5,2,70,,,,,,,11 +4726,240,87,1,7,9,6,6,6,1,70,,,,,,,11 +4727,240,63,25,4,12,7,7,7,0,69,,,,,,,12 +4728,240,88,27,25,15,8,8,8,0,69,,,,,,,12 +4729,240,85,30,17,22,9,9,9,0,65,,,,,,,16 +4730,240,64,28,21,25,10,10,10,0,64,,,,,,,17 +4731,240,81,29,9,13,,R,11,0,62,,,,,,,5 +4732,240,89,29,10,21,,R,12,0,48,,,,,,,5 +4733,240,69,18,24,18,,R,13,0,47,,,,,,,5 +4734,240,90,28,22,23,,R,14,0,47,,,,,,,20 +4735,240,91,15,29,19,,R,15,0,41,,,,,,,10 +4736,240,71,3,5,1,,R,16,0,30,,,,,,,6 +4737,240,65,22,2,4,,R,17,0,30,,,,,,,4 +4738,240,92,30,16,20,,R,18,0,23,,,,,,,6 +4739,240,22,17,14,16,,R,19,0,16,,,,,,,6 +4740,240,50,31,12,24,,R,20,0,16,,,,,,,6 +4741,240,79,25,3,11,,R,21,0,15,,,,,,,20 +4742,240,56,17,15,8,,R,22,0,15,,,,,,,8 +4743,240,93,31,11,26,,R,23,0,12,,,,,,,38 +4744,240,49,15,30,14,,R,24,0,10,,,,,,,10 +4745,240,44,27,26,10,,R,25,0,0,,,,,,,4 +4746,240,94,18,23,17,,R,26,0,0,,,,,,,6 +4747,241,71,3,5,2,1,1,1,10,72,53:14.5,6794532,,,,,1 +4748,241,55,6,27,6,2,2,2,6,72,6.407,6800939,,,,,1 +4749,241,30,22,1,3,3,3,3,4,72,33.376,6827908,,,,,1 +4750,241,65,22,2,11,4,4,4,3,71,,,,,,,11 +4751,241,49,15,30,9,5,5,5,2,70,,,,,,,12 +4752,241,77,6,28,8,6,6,6,1,70,,,,,,,12 +4753,241,44,27,26,18,7,7,7,0,70,,,,,,,12 +4754,241,79,25,3,15,8,8,8,0,69,,,,,,,13 +4755,241,93,31,11,20,9,9,9,0,68,,,,,,,14 +4756,241,64,28,21,25,,N,10,0,63,,,,,,,62 +4757,241,90,28,22,24,,N,11,0,63,,,,,,,62 +4758,241,63,25,4,7,,R,12,0,48,,,,,,,4 +4759,241,88,27,25,19,,R,13,0,47,,,,,,,4 +4760,241,94,18,23,16,,R,14,0,44,,,,,,,20 +4761,241,81,29,9,12,,R,15,0,43,,,,,,,10 +4762,241,89,29,10,26,,R,16,0,40,,,,,,,20 +4763,241,22,17,14,10,,R,17,0,33,,,,,,,51 +4764,241,50,31,12,14,,R,18,0,23,,,,,,,6 +4765,241,14,3,6,1,,R,19,0,16,,,,,,,10 +4766,241,87,1,7,17,,R,20,0,9,,,,,,,44 +4767,241,56,17,15,4,,R,21,0,6,,,,,,,5 +4768,241,85,30,17,22,,R,22,0,1,,,,,,,4 +4769,241,57,1,8,5,,R,23,0,0,,,,,,,4 +4770,241,92,30,16,23,,R,24,0,0,,,,,,,4 +4771,241,91,15,29,21,,R,25,0,0,,,,,,,4 +4772,241,69,18,24,13,,R,26,0,0,,,,,,,4 +4773,242,71,3,5,4,1,1,1,10,63,41:42.5,6102522,,,,,1 +4774,242,55,6,27,5,2,2,2,6,63,18.51,6121032,,,,,1 +4775,242,77,6,28,2,3,3,3,4,63,43.116,6145638,,,,,1 +4776,242,14,3,6,3,4,4,4,3,63,51.89,6154412,,,,,1 +4777,242,57,1,8,6,5,5,5,2,62,,,,,,,11 +4778,242,49,15,30,14,6,6,6,1,62,,,,,,,11 +4779,242,65,22,2,8,7,7,7,0,61,,,,,,,12 +4780,242,56,17,15,7,8,8,8,0,61,,,,,,,12 +4781,242,44,27,26,12,9,9,9,0,61,,,,,,,12 +4782,242,95,1,7,9,10,10,10,0,61,,,,,,,12 +4783,242,88,27,25,16,11,11,11,0,60,,,,,,,13 +4784,242,94,18,23,18,12,12,12,0,59,,,,,,,14 +4785,242,81,29,9,11,13,13,13,0,59,,,,,,,14 +4786,242,69,18,24,20,14,14,14,0,59,,,,,,,14 +4787,242,64,28,21,26,,N,15,0,56,,,,,,,62 +4788,242,90,28,22,25,,N,16,0,56,,,,,,,62 +4789,242,91,15,29,21,,R,17,0,43,,,,,,,36 +4790,242,92,30,16,22,,R,18,0,36,,,,,,,6 +4791,242,93,31,11,23,,R,19,0,35,,,,,,,22 +4792,242,22,17,14,10,,R,20,0,31,,,,,,,7 +4793,242,79,25,3,15,,R,21,0,23,,,,,,,20 +4794,242,63,25,4,13,,R,22,0,19,,,,,,,5 +4795,242,85,30,17,24,,R,23,0,15,,,,,,,6 +4796,242,50,31,12,17,,R,24,0,14,,,,,,,6 +4797,242,89,29,10,19,,R,25,0,12,,,,,,,20 +4798,242,30,22,1,1,,R,26,0,10,,,,,,,20 +4799,243,30,22,1,1,1,1,1,10,65,34:20.5,5660507,,,,,1 +4800,243,65,22,2,7,2,2,2,6,65,51.988,5712495,,,,,1 +4801,243,77,6,28,3,3,3,3,4,65,+1:05.237,5725744,,,,,1 +4802,243,71,3,5,5,4,4,4,3,65,+2:01.749,5782256,,,,,1 +4803,243,56,17,15,6,5,5,5,2,64,,,,,,,11 +4804,243,44,27,26,15,6,6,6,1,64,,,,,,,11 +4805,243,22,17,14,8,7,7,7,0,64,,,,,,,11 +4806,243,49,15,30,12,8,8,8,0,64,,,,,,,11 +4807,243,84,27,25,11,9,9,9,0,64,,,,,,,11 +4808,243,63,25,4,13,10,10,10,0,64,,,,,,,11 +4809,243,81,29,9,14,11,11,11,0,63,,,,,,,12 +4810,243,50,31,12,16,12,12,12,0,63,,,,,,,12 +4811,243,91,15,29,20,13,13,13,0,63,,,,,,,12 +4812,243,94,18,23,19,14,14,14,0,62,,,,,,,13 +4813,243,93,31,11,22,15,15,15,0,61,,,,,,,14 +4814,243,79,25,3,17,,R,16,0,56,,,,,,,5 +4815,243,14,3,6,4,,R,17,0,54,,,,,,,6 +4816,243,57,1,8,9,,R,18,0,53,,,,,,,69 +4817,243,89,29,10,18,,R,19,0,43,,,,,,,7 +4818,243,92,30,16,24,,R,20,0,43,,,,,,,42 +4819,243,90,28,22,25,,R,21,0,39,,,,,,,25 +4820,243,55,6,27,2,,R,22,0,25,,,,,,,5 +4821,243,69,18,24,21,,R,23,0,21,,,,,,,6 +4822,243,95,1,7,10,,R,24,0,18,,,,,,,64 +4823,243,64,28,21,26,,R,25,0,17,,,,,,,6 +4824,243,85,30,17,23,,W,26,0,0,,,,,,,54 +4825,244,30,22,1,2,1,1,1,10,78,53:11.3,6791258,,,,,1 +4826,244,71,3,5,1,2,2,2,6,78,34.817,6826075,,,,,1 +4827,244,77,6,28,4,3,3,3,4,78,+1:11.447,6862705,,,,,1 +4828,244,65,22,2,7,4,4,4,3,77,,,,,,,11 +4829,244,87,1,7,10,5,5,5,2,77,,,,,,,11 +4830,244,49,15,30,14,6,6,6,1,76,,,,,,,12 +4831,244,94,18,23,18,7,7,7,0,76,,,,,,,12 +4832,244,96,15,29,19,8,8,8,0,74,,,,,,,14 +4833,244,81,29,9,13,9,9,9,0,74,,,,,,,14 +4834,244,64,28,21,22,10,10,10,0,72,,,,,,,16 +4835,244,69,18,24,16,,R,11,0,68,,,,,,,22 +4836,244,44,27,26,12,,R,12,0,65,,,,,,,20 +4837,244,63,25,4,17,,R,13,0,63,,,,,,,6 +4838,244,22,17,14,11,,R,14,0,60,,,,,,,37 +4839,244,92,30,16,21,,R,15,0,42,,,,,,,6 +4840,244,55,6,27,5,,R,16,0,41,,,,,,,20 +4841,244,84,27,25,8,,R,17,0,40,,,,,,,20 +4842,244,89,29,10,26,,R,18,0,27,,,,,,,6 +4843,244,79,25,3,15,,R,19,0,26,,,,,,,20 +4844,244,85,30,17,25,,D,20,0,23,,,,,,,2 +4845,244,56,17,15,9,,R,21,0,22,,,,,,,20 +4846,244,14,3,6,3,,R,22,0,16,,,,,,,6 +4847,244,90,28,22,24,,R,23,0,9,,,,,,,23 +4848,244,57,1,8,6,,R,24,0,8,,,,,,,5 +4849,244,50,31,12,23,,W,25,0,0,,,,,,,6 +4850,244,93,31,11,20,,W,26,0,0,,,,,,,54 +4851,245,55,6,27,5,1,1,1,10,68,44:54.2,6294171,,,,,1 +4852,245,22,17,14,9,2,2,2,6,68,31.687,6325858,,,,,1 +4853,245,56,17,15,8,3,3,3,4,68,33.27,6327441,,,,,1 +4854,245,44,27,26,11,4,4,4,3,68,36.506,6330677,,,,,1 +4855,245,30,22,1,1,5,5,5,2,68,37.06,6331231,,,,,1 +4856,245,81,29,9,13,6,6,6,1,67,,,,,,,11 +4857,245,63,25,4,15,7,7,7,0,67,,,,,,,11 +4858,245,69,18,24,19,8,8,8,0,67,,,,,,,11 +4859,245,89,29,10,22,9,9,9,0,66,,,,,,,12 +4860,245,84,27,25,14,10,10,10,0,61,,,,,,,4 +4861,245,77,6,28,4,11,11,11,0,61,,,,,,,4 +4862,245,94,18,23,17,,R,12,0,60,,,,,,,37 +4863,245,90,28,22,23,,R,13,0,54,,,,,,,69 +4864,245,71,3,5,2,,R,14,0,50,,,,,,,6 +4865,245,87,1,7,10,,R,15,0,47,,,,,,,5 +4866,245,79,25,3,16,,R,16,0,42,,,,,,,5 +4867,245,92,30,16,20,,R,17,0,36,,,,,,,84 +4868,245,49,15,30,12,,R,18,0,26,,,,,,,5 +4869,245,64,28,21,24,,R,19,0,26,,,,,,,6 +4870,245,96,15,29,18,,R,20,0,19,,,,,,,20 +4871,245,85,30,17,21,,R,21,0,5,,,,,,,6 +4872,245,14,3,6,3,,R,22,0,1,,,,,,,20 +4873,245,65,22,2,6,,R,23,0,0,,,,,,,4 +4874,245,57,1,8,7,,R,24,0,0,,,,,,,4 +4875,246,30,22,1,2,1,1,1,10,72,38:28.4,5908429,,,,,1 +4876,246,71,3,5,1,2,2,2,6,72,31.309,5939738,,,,,1 +4877,246,14,3,6,3,3,3,3,4,72,+1:02.826,5971255,,,,,1 +4878,246,84,27,25,9,4,4,4,3,72,+1:03.293,5971722,,,,,1 +4879,246,55,6,27,4,5,5,5,2,72,+1:17.869,5986298,,,,,1 +4880,246,22,17,14,5,6,6,6,1,71,,,,,,,11 +4881,246,57,1,8,8,7,7,7,0,71,,,,,,,11 +4882,246,44,27,26,6,8,8,8,0,71,,,,,,,11 +4883,246,56,17,15,11,9,9,9,0,71,,,,,,,11 +4884,246,49,15,30,12,10,10,10,0,71,,,,,,,11 +4885,246,87,1,7,13,11,11,11,0,70,,,,,,,12 +4886,246,77,6,28,7,12,12,12,0,70,,,,,,,12 +4887,246,69,18,24,17,13,13,13,0,69,,,,,,,13 +4888,246,81,29,9,16,14,14,14,0,69,,,,,,,13 +4889,246,63,25,4,14,15,15,15,0,69,,,,,,,13 +4890,246,90,28,22,24,16,16,16,0,66,,,,,,,16 +4891,246,85,30,17,21,,N,17,0,62,,,,,,,62 +4892,246,96,15,29,15,,R,18,0,48,,,,,,,6 +4893,246,92,30,16,22,,R,19,0,24,,,,,,,6 +4894,246,94,18,23,20,,R,20,0,23,,,,,,,6 +4895,246,65,22,2,10,,R,21,0,2,,,,,,,20 +4896,246,89,29,10,18,,R,22,0,0,,,,,,,4 +4897,246,79,25,3,19,,R,23,0,0,,,,,,,4 +4898,246,64,28,21,23,,R,24,0,0,,,,,,,20 +4899,247,65,22,2,5,1,1,1,10,61,34:35.1,5675093,,,,,1 +4900,247,55,6,27,6,2,2,2,6,61,16.479,5691572,,,,,1 +4901,247,14,3,6,3,3,3,3,4,61,23.888,5698981,,,,,1 +4902,247,44,27,26,13,4,4,4,3,61,+1:33.168,5768261,,,,,1 +4903,247,87,1,7,10,5,5,5,2,61,+1:48.172,5783265,,,,,1 +4904,247,49,15,30,12,6,6,6,1,60,,,,,,,11 +4905,247,94,18,23,15,7,7,7,0,60,,,,,,,11 +4906,247,63,25,4,23,8,8,8,0,60,,,,,,,11 +4907,247,96,15,29,16,9,9,9,0,60,,,,,,,11 +4908,247,69,18,24,18,10,10,10,0,60,,,,,,,11 +4909,247,22,17,14,9,11,11,11,0,59,,,,,,,4 +4910,247,92,30,16,21,12,12,12,0,58,,,,,,,13 +4911,247,90,28,22,22,,R,13,0,48,,,,,,,5 +4912,247,30,22,1,2,,R,14,0,45,,,,,,,4 +4913,247,71,3,5,1,,R,15,0,45,,,,,,,4 +4914,247,97,29,9,17,,R,16,0,28,,,,,,,20 +4915,247,79,25,3,14,,R,17,0,22,,,,,,,60 +4916,247,85,30,17,24,,R,18,0,21,,,,,,,20 +4917,247,57,1,8,8,,R,19,0,20,,,,,,,10 +4918,247,77,6,28,4,,R,20,0,20,,,,,,,36 +4919,247,84,27,25,11,,R,21,0,16,,,,,,,20 +4920,247,89,29,10,19,,R,22,0,16,,,,,,,20 +4921,247,64,28,21,20,,R,23,0,13,,,,,,,6 +4922,247,56,17,15,7,,R,24,0,2,,,,,,,10 +4923,248,30,22,1,2,1,1,1,10,45,22:56.0,4976043,,,,,1 +4924,248,14,3,6,3,2,2,2,6,45,5.988,4982031,,,,,1 +4925,248,77,6,28,4,3,3,3,4,45,+1:08.097,5044140,,,,,1 +4926,248,65,22,2,9,4,4,4,3,45,+1:23.436,5059479,,,,,1 +4927,248,96,15,29,14,5,5,5,2,44,,,,,,,11 +4928,248,88,27,25,18,6,6,6,1,44,,,,,,,11 +4929,248,79,25,3,17,7,7,7,0,44,,,,,,,11 +4930,248,85,30,17,23,8,8,8,0,42,,,,,,,13 +4931,248,56,17,15,6,9,9,9,0,41,,,,,,,14 +4932,248,57,1,8,7,,R,10,0,33,,,,,,,5 +4933,248,49,15,30,11,,R,11,0,32,,,,,,,5 +4934,248,69,18,24,16,,R,12,0,28,,,,,,,44 +4935,248,86,30,16,24,,R,13,0,27,,,,,,,6 +4936,248,90,28,22,22,,R,14,0,27,,,,,,,86 +4937,248,22,17,14,5,,R,15,0,20,,,,,,,5 +4938,248,87,1,7,8,,R,16,0,17,,,,,,,5 +4939,248,44,27,26,12,,R,17,0,13,,,,,,,47 +4940,248,55,6,27,10,,R,18,0,12,,,,,,,5 +4941,248,94,18,23,20,,R,19,0,11,,,,,,,5 +4942,248,89,29,10,19,,R,20,0,9,,,,,,,6 +4943,248,64,28,21,21,,R,21,0,8,,,,,,,23 +4944,248,71,3,5,1,,R,22,0,1,,,,,,,20 +4945,248,63,25,4,13,,R,23,0,0,,,,,,,8 +4946,248,97,29,9,15,,R,24,0,0,,,,,,,6 +4947,249,71,3,5,1,1,1,1,10,77,46:25.7,6385721,,,,,1 +4948,249,14,3,6,2,2,2,2,6,77,33.398,6419119,,,,,1 +4949,249,77,6,28,4,3,3,3,4,76,,,,,,,11 +4950,249,65,22,2,9,4,4,4,3,76,,,,,,,11 +4951,249,49,15,30,11,5,5,5,2,76,,,,,,,11 +4952,249,44,27,26,10,6,6,6,1,76,,,,,,,11 +4953,249,22,17,14,14,7,7,7,0,76,,,,,,,11 +4954,249,69,18,24,12,8,8,8,0,75,,,,,,,12 +4955,249,83,18,23,15,9,9,9,0,74,,,,,,,13 +4956,249,96,15,29,19,10,10,10,0,74,,,,,,,13 +4957,249,30,22,1,3,11,11,11,0,73,,,,,,,5 +4958,249,85,30,17,22,12,12,12,0,73,,,,,,,14 +4959,249,56,17,15,7,,R,13,0,70,,,,,,,8 +4960,249,84,27,25,8,,R,14,0,67,,,,,,,5 +4961,249,63,25,4,16,,R,15,0,58,,,,,,,37 +4962,249,87,1,7,13,,R,16,0,54,,,,,,,95 +4963,249,79,25,3,17,,R,17,0,46,,,,,,,20 +4964,249,97,29,9,20,,R,18,0,45,,,,,,,23 +4965,249,55,6,27,6,,R,19,0,42,,,,,,,23 +4966,249,64,28,21,23,,R,20,0,32,,,,,,,5 +4967,249,89,29,10,18,,R,21,0,13,,,,,,,5 +4968,249,90,28,22,21,,R,22,0,8,,,,,,,6 +4969,249,86,30,16,24,,R,23,0,5,,,,,,,20 +4970,249,57,1,8,5,,R,24,0,3,,,,,,,5 +4971,250,30,22,1,16,1,1,1,10,44,36:47.9,5807875,,,,,1 +4972,250,71,3,5,8,2,2,2,6,44,19.493,5827368,,,,,1 +4973,250,84,27,25,13,3,3,3,4,44,24.998,5832873,,,,,1 +4974,250,49,15,30,10,4,4,4,3,44,26.972,5834847,,,,,1 +4975,250,87,1,7,6,5,5,5,2,44,33.772,5841647,,,,,1 +4976,250,22,17,14,12,6,6,6,1,44,39.674,5847549,,,,,1 +4977,250,65,22,2,4,7,7,7,0,44,54.043,5861918,,,,,1 +4978,250,63,25,4,11,8,8,8,0,44,54.548,5862423,,,,,1 +4979,250,44,27,26,9,9,9,9,0,44,+1:06.170,5874045,,,,,1 +4980,250,83,18,23,17,10,10,10,0,44,+1:19.789,5887664,,,,,1 +4981,250,96,15,29,14,11,11,11,0,43,,,,,,,11 +4982,250,89,29,10,18,12,12,12,0,43,,,,,,,11 +4983,250,64,28,21,24,13,13,13,0,42,,,,,,,12 +4984,250,90,28,22,22,14,14,14,0,42,,,,,,,12 +4985,250,79,25,3,15,,R,15,0,28,,,,,,,20 +4986,250,86,30,16,23,,R,16,0,27,,,,,,,6 +4987,250,69,18,24,19,,R,17,0,23,,,,,,,20 +4988,250,77,6,28,1,,R,18,0,22,,,,,,,10 +4989,250,56,17,15,7,,R,19,0,21,,,,,,,42 +4990,250,97,29,9,20,,R,20,0,20,,,,,,,20 +4991,250,85,30,17,21,,R,21,0,18,,,,,,,60 +4992,250,14,3,6,5,,R,22,0,13,,,,,,,6 +4993,250,55,6,27,2,,R,23,0,4,,,,,,,22 +4994,250,57,1,8,3,,R,24,0,1,,,,,,,20 +4995,251,65,22,2,8,1,1,1,10,53,18:27.9,4707916,,,,,1 +4996,251,57,1,8,7,2,2,2,6,53,17.779,4725695,,,,,1 +4997,251,49,15,30,10,3,3,3,4,53,24.321,4732237,,,,,1 +4998,251,87,1,7,9,4,4,4,3,53,28.223,4736139,,,,,1 +4999,251,63,25,4,16,5,5,5,2,52,,,,,,,11 +5000,251,96,15,29,14,6,6,6,1,52,,,,,,,11 +5001,251,97,29,9,15,7,7,7,0,52,,,,,,,11 +5002,251,89,29,10,20,8,8,8,0,52,,,,,,,11 +5003,251,64,28,21,23,9,9,9,0,50,,,,,,,13 +5004,251,79,25,3,17,10,10,10,0,47,,,,,,,16 +5005,251,55,6,27,5,,R,11,0,45,,,,,,,67 +5006,251,22,17,14,6,,R,12,0,43,,,,,,,8 +5007,251,56,17,15,12,,R,13,0,40,,,,,,,5 +5008,251,77,6,28,3,,R,14,0,32,,,,,,,22 +5009,251,69,18,24,18,,R,15,0,26,,,,,,,20 +5010,251,30,22,1,2,,R,16,0,23,,,,,,,4 +5011,251,71,3,5,4,,R,17,0,23,,,,,,,4 +5012,251,44,27,26,13,,R,18,0,20,,,,,,,20 +5013,251,14,3,6,1,,R,19,0,13,,,,,,,20 +5014,251,84,27,25,11,,R,20,0,10,,,,,,,29 +5015,251,86,30,16,24,,R,21,0,6,,,,,,,20 +5016,251,83,18,23,19,,R,22,0,0,,,,,,,7 +5017,251,85,30,17,21,,R,23,0,0,,,,,,,3 +5018,251,90,28,22,22,,R,24,0,0,,,,,,,3 +5019,252,14,3,6,1,1,1,1,10,71,41:52.1,6112145,,,,,1 +5020,252,30,22,1,3,2,2,2,6,71,7.248,6119393,,,,,1 +5021,252,71,3,5,2,3,3,3,4,71,22.121,6134266,,,,,1 +5022,252,77,6,28,4,4,4,4,3,71,+1:24.879,6197024,,,,,1 +5023,252,55,6,27,7,5,5,5,2,71,+1:25.429,6197574,,,,,1 +5024,252,49,15,30,5,6,6,6,1,70,,,,,,,11 +5025,252,65,22,2,6,7,7,7,0,70,,,,,,,11 +5026,252,84,27,25,9,8,8,8,0,70,,,,,,,11 +5027,252,87,1,7,12,9,9,9,0,70,,,,,,,11 +5028,252,56,17,15,10,10,10,10,0,70,,,,,,,11 +5029,252,22,17,14,8,11,11,11,0,70,,,,,,,11 +5030,252,96,15,29,14,12,12,12,0,70,,,,,,,11 +5031,252,63,25,4,15,13,13,13,0,69,,,,,,,12 +5032,252,69,18,24,18,14,14,14,0,68,,,,,,,13 +5033,252,89,29,10,19,15,15,15,0,68,,,,,,,13 +5034,252,64,28,21,22,16,16,16,0,66,,,,,,,15 +5035,252,90,28,22,23,17,17,17,0,64,,,,,,,17 +5036,252,85,30,17,21,,R,18,0,53,,,,,,,6 +5037,252,57,1,8,13,,R,19,0,44,,,,,,,5 +5038,252,98,30,16,24,,R,20,0,14,,,,,,,68 +5039,252,44,27,26,11,,R,21,0,10,,,,,,,20 +5040,252,83,18,23,17,,R,22,0,7,,,,,,,6 +5041,252,79,25,3,16,,R,23,0,0,,,,,,,4 +5042,252,97,29,9,20,,R,24,0,0,,,,,,,6 +5043,253,30,22,1,3,1,1,1,10,67,39:59.0,5999044,,,,,1 +5044,253,55,6,27,6,2,2,2,6,67,2.684,6001728,,,,,1 +5045,253,14,3,6,1,3,3,3,4,67,35.382,6034426,,,,,1 +5046,253,22,17,14,11,4,4,4,3,66,,,,,,,11 +5047,253,65,22,2,7,5,5,5,2,66,,,,,,,11 +5048,253,56,17,15,5,6,6,6,1,66,,,,,,,11 +5049,253,84,27,25,12,7,7,7,0,66,,,,,,,11 +5050,253,57,1,8,9,8,8,8,0,65,,,,,,,12 +5051,253,83,18,23,16,9,9,9,0,64,,,,,,,13 +5052,253,63,25,4,15,10,10,10,0,64,,,,,,,13 +5053,253,69,18,24,18,11,11,11,0,64,,,,,,,13 +5054,253,97,29,9,17,12,12,12,0,64,,,,,,,13 +5055,253,64,28,21,22,13,13,13,0,62,,,,,,,15 +5056,253,99,25,3,19,14,14,14,0,61,,,,,,,16 +5057,253,98,30,16,24,15,15,15,0,60,,,,,,,17 +5058,253,71,3,5,2,,R,16,0,58,,,,,,,20 +5059,253,85,30,17,20,,R,17,0,45,,,,,,,60 +5060,253,96,15,29,13,,R,18,0,44,,,,,,,4 +5061,253,77,6,28,4,,R,19,0,40,,,,,,,10 +5062,253,90,28,22,23,,R,20,0,22,,,,,,,86 +5063,253,49,15,30,8,,R,21,0,17,,,,,,,20 +5064,253,44,27,26,14,,R,22,0,14,,,,,,,20 +5065,253,87,1,7,10,,R,23,0,14,,,,,,,3 +5066,253,89,29,10,21,,R,24,0,0,,,,,,,10 +5067,254,30,22,1,3,1,1,1,10,83,48:50.0,6529972,,,,,1 +5068,254,14,3,6,1,2,2,2,6,83,14.92,6544892,,,,,1 +5069,254,71,3,5,2,3,3,3,4,83,48.333,6578305,,,,,1 +5070,254,77,6,28,5,4,4,4,3,82,,,,,,,11 +5071,254,55,6,27,4,5,5,5,2,82,,,,,,,11 +5072,254,65,22,2,7,6,6,6,1,82,,,,,,,11 +5073,254,49,15,30,8,7,7,7,0,82,,,,,,,11 +5074,254,44,27,26,9,8,8,8,0,81,,,,,,,12 +5075,254,87,1,7,10,9,9,9,0,81,,,,,,,12 +5076,254,76,1,8,12,10,10,10,0,81,,,,,,,12 +5077,254,56,17,15,6,11,11,11,0,81,,,,,,,12 +5078,254,63,25,4,18,12,12,12,0,80,,,,,,,13 +5079,254,83,18,23,14,13,13,13,0,80,,,,,,,13 +5080,254,79,25,3,17,14,14,14,0,80,,,,,,,13 +5081,254,69,18,24,16,15,15,15,0,80,,,,,,,13 +5082,254,90,28,22,22,16,16,16,0,78,,,,,,,15 +5083,254,64,28,21,21,17,17,17,0,77,,,,,,,16 +5084,254,22,17,14,11,,R,18,0,67,,,,,,,10 +5085,254,81,29,9,19,,R,19,0,63,,,,,,,5 +5086,254,89,29,10,20,,R,20,0,38,,,,,,,10 +5087,254,85,30,17,23,,R,21,0,14,,,,,,,6 +5088,254,88,27,25,13,,R,22,0,10,,,,,,,20 +5089,254,96,15,29,15,,R,23,0,7,,,,,,,20 +5090,254,92,30,16,24,,R,24,0,2,,,,,,,6 +5091,255,30,22,1,1,1,1,1,10,53,36:52.9,5812930,,,,,1 +5092,255,57,1,8,3,2,2,2,6,53,19.337,5832267,,,,,1 +5093,255,65,22,2,9,3,3,3,4,53,+1:23.804,5896734,,,,,1 +5094,255,56,17,15,7,4,4,4,3,53,+1:42.136,5915066,,,,,1 +5095,255,44,27,26,11,5,5,5,2,52,,,,,,,11 +5096,255,63,25,4,12,6,6,6,1,52,,,,,,,11 +5097,255,87,1,7,23,7,7,7,0,52,,,,,,,11 +5098,255,49,15,30,8,8,8,8,0,52,,,,,,,11 +5099,255,69,18,24,17,9,9,9,0,51,,,,,,,12 +5100,255,91,15,29,15,10,10,10,0,51,,,,,,,12 +5101,255,83,18,23,16,11,11,11,0,51,,,,,,,12 +5102,255,89,29,10,18,12,12,12,0,51,,,,,,,12 +5103,255,71,3,5,4,,R,13,0,40,,,,,,,20 +5104,255,14,3,6,6,,R,14,0,39,,,,,,,20 +5105,255,64,28,21,20,,R,15,0,32,,,,,,,20 +5106,255,55,6,27,2,,R,16,0,24,,,,,,,5 +5107,255,85,30,17,19,,R,17,0,23,,,,,,,20 +5108,255,77,6,28,5,,R,18,0,16,,,,,,,10 +5109,255,22,17,14,10,,R,19,0,15,,,,,,,20 +5110,255,79,25,3,13,,R,20,0,12,,,,,,,20 +5111,255,92,30,16,22,,R,21,0,6,,,,,,,86 +5112,255,90,28,22,21,,R,22,0,1,,,,,,,6 +5113,255,81,29,9,14,,R,23,0,0,,,,,,,20 +5114,255,88,27,25,0,,W,24,0,0,,,,,,,3 +5115,256,71,3,5,1,1,1,1,10,81,49:15.9,6555946,,,,,1 +5116,256,44,27,26,12,2,2,2,6,79,,,,,,,12 +5117,256,81,29,9,13,3,3,3,4,79,,,,,,,12 +5118,256,87,1,7,10,4,4,4,3,79,,,,,,,12 +5119,256,63,25,4,14,5,5,5,2,78,,,,,,,13 +5120,256,83,18,23,17,6,6,6,1,78,,,,,,,13 +5121,256,64,28,21,21,7,7,7,0,77,,,,,,,14 +5122,256,92,30,16,23,8,8,8,0,76,,,,,,,15 +5123,256,79,25,3,16,,R,9,0,70,,,,,,,5 +5124,256,65,22,2,8,,R,10,0,69,,,,,,,7 +5125,256,56,17,15,9,,R,11,0,62,,,,,,,5 +5126,256,49,15,30,6,,R,12,0,39,,,,,,,6 +5127,256,77,6,28,4,,R,13,0,34,,,,,,,5 +5128,256,84,27,25,11,,R,14,0,29,,,,,,,20 +5129,256,30,22,1,3,,R,15,0,25,,,,,,,4 +5130,256,55,6,27,5,,R,16,0,23,,,,,,,4 +5131,256,90,28,22,20,,R,17,0,21,,,,,,,20 +5132,256,22,17,14,7,,R,18,0,20,,,,,,,20 +5133,256,14,3,6,2,,R,19,0,19,,,,,,,3 +5134,256,89,29,10,19,,R,20,0,15,,,,,,,20 +5135,256,91,15,29,18,,R,21,0,8,,,,,,,68 +5136,256,85,30,17,22,,R,22,0,2,,,,,,,6 +5137,256,69,18,24,15,,W,23,0,0,,,,,,,10 +5138,256,57,1,8,24,,W,24,0,0,,,,,,,73 +5139,257,30,22,5,2,1,1,1,10,71,35:39.2,5739200,,,,,1 +5140,257,71,3,0,4,2,2,2,6,70,,,,,,,11 +5141,257,55,6,27,3,3,3,3,4,70,,,,,,,11 +5142,257,22,17,14,14,4,4,4,3,70,,,,,,,11 +5143,257,79,25,3,10,5,5,5,2,69,,,,,,,12 +5144,257,91,15,29,7,6,6,6,1,69,,,,,,,12 +5145,257,65,32,12,21,7,7,7,0,69,,,,,,,12 +5146,257,94,18,23,15,8,8,8,0,69,,,,,,,12 +5147,257,100,33,20,13,9,9,9,0,68,,,,,,,13 +5148,257,83,32,11,24,10,10,10,0,68,,,,,,,13 +5149,257,44,27,26,19,11,11,11,0,68,,,,,,,13 +5150,257,101,31,31,26,12,12,12,0,67,,,,,,,14 +5151,257,102,3,2,1,,R,13,0,55,,,,,,,20 +5152,257,84,1,8,18,,R,14,0,34,,,,,,,4 +5153,257,56,17,15,16,,R,15,0,34,,,,,,,4 +5154,257,50,22,6,9,,R,16,0,34,,,,,,,4 +5155,257,103,27,25,20,,R,17,0,33,,,,,,,4 +5156,257,87,25,4,12,,R,18,0,21,,,,,,,20 +5157,257,104,29,9,11,,R,19,0,21,,,,,,,6 +5158,257,49,15,30,5,,R,20,0,15,,,,,,,20 +5159,257,57,1,7,8,,R,21,0,13,,,,,,,5 +5160,257,105,18,24,22,,R,22,0,7,,,,,,,5 +5161,257,81,29,10,6,,R,23,0,5,,,,,,,6 +5162,257,77,6,28,17,,R,24,0,5,,,,,,,5 +5163,257,106,33,19,23,,R,25,0,2,,,,,,,3 +5164,257,92,30,34,25,,R,26,0,1,,,,,,,3 +5165,257,107,31,32,27,,F,27,0,0,,,,,,,81 +5166,257,108,30,33,28,,F,28,0,0,,,,,,,81 +5167,258,30,22,5,2,1,1,1,10,83,46:01.7,6361693,,,,,1 +5168,258,77,6,28,5,2,2,2,6,83,+1:15.300,6436993,,,,,1 +5169,258,22,17,14,8,3,3,3,4,82,,,,,,,11 +5170,258,104,29,9,9,4,4,4,3,82,,,,,,,11 +5171,258,49,15,30,11,5,5,5,2,82,,,,,,,11 +5172,258,100,33,20,16,6,6,6,1,80,,,,,,,13 +5173,258,65,32,12,23,7,7,7,0,80,,,,,,,13 +5174,258,83,32,11,24,8,8,8,0,79,,,,,,,14 +5175,258,44,27,26,22,9,9,9,0,78,,,,,,,15 +5176,258,103,27,25,18,10,10,10,0,78,,,,,,,15 +5177,258,107,31,32,26,11,11,11,0,78,,,,,,,15 +5178,258,81,29,10,13,,R,12,0,69,,,,,,,5 +5179,258,91,15,29,19,,R,13,0,69,,,,,,,4 +5180,258,105,18,24,15,,R,14,0,69,,,,,,,4 +5181,258,84,1,8,6,,R,15,0,67,,,,,,,25 +5182,258,94,18,23,17,,R,16,0,63,,,,,,,20 +5183,258,50,22,6,10,,R,17,0,54,,,,,,,20 +5184,258,71,3,0,3,,R,18,0,49,,,,,,,7 +5185,258,88,17,15,20,,R,19,0,44,,,,,,,38 +5186,258,79,25,3,14,,R,20,0,42,,,,,,,5 +5187,258,57,1,7,4,,R,21,0,19,,,,,,,6 +5188,258,106,33,19,21,,R,22,0,14,,,,,,,10 +5189,258,101,31,31,25,,R,23,0,2,,,,,,,10 +5190,258,102,3,2,1,,R,24,0,0,,,,,,,4 +5191,258,78,6,27,7,,R,25,0,0,,,,,,,4 +5192,258,87,25,4,12,,R,26,0,0,,,,,,,4 +5193,258,92,30,34,0,,F,27,0,0,,,,,,,81 +5194,258,108,30,33,0,,F,28,0,0,,,,,,,81 +5195,259,30,22,5,2,1,1,1,10,58,28:28.6,5308642,,,,,1 +5196,259,78,6,27,6,2,2,2,6,58,54.942,5363584,,,,,1 +5197,259,57,1,7,8,3,3,3,4,58,70.679,5379321,,,,,1 +5198,259,91,15,29,10,4,4,4,3,58,73.658,5382300,,,,,1 +5199,259,79,25,3,9,5,5,5,2,57,,,,,,,11 +5200,259,71,3,0,4,6,6,6,1,57,,,,,,,11 +5201,259,49,15,30,7,7,7,7,0,57,,,,,,,11 +5202,259,84,1,8,13,8,8,8,0,57,,,,,,,11 +5203,259,87,25,4,12,9,9,9,0,56,,,,,,,12 +5204,259,65,32,12,20,10,10,10,0,56,,,,,,,12 +5205,259,44,27,26,19,11,11,11,0,56,,,,,,,12 +5206,259,103,27,25,17,12,12,12,0,55,,,,,,,13 +5207,259,104,29,9,16,13,13,13,0,54,,,,,,,20 +5208,259,110,17,15,21,,R,14,0,49,,,,,,,20 +5209,259,105,18,24,15,,R,15,0,44,,,,,,,36 +5210,259,81,29,10,11,,R,16,0,40,,,,,,,5 +5211,259,94,18,23,14,,R,17,0,37,,,,,,,20 +5212,259,101,31,31,24,,R,18,0,27,,,,,,,20 +5213,259,92,30,34,25,,R,19,0,23,,,,,,,5 +5214,259,106,33,19,23,,R,20,0,17,,,,,,,5 +5215,259,77,6,28,3,,R,21,0,16,,,,,,,22 +5216,259,102,3,2,1,,R,22,0,5,,,,,,,3 +5217,259,100,33,20,18,,R,23,0,5,,,,,,,54 +5218,259,109,22,6,5,,R,24,0,0,,,,,,,4 +5219,259,83,32,11,22,,R,25,0,0,,,,,,,4 +5220,259,107,31,32,0,,W,26,0,0,,,,,,,3 +5221,259,22,17,14,0,,F,27,0,0,,,,,,,82 +5222,259,108,30,33,0,,F,28,0,0,,,,,,,81 +5223,260,30,22,5,1,1,1,1,10,78,49:55.3,6595300,,,,,1 +5224,260,84,1,8,8,2,2,2,6,78,37.278,6632578,,,,,1 +5225,260,77,6,28,3,3,3,3,4,78,+1:16.824,6672124,,,,,1 +5226,260,110,17,15,14,4,4,4,3,77,,,,,,,11 +5227,260,55,6,27,5,5,5,5,2,77,,,,,,,11 +5228,260,105,18,24,12,6,6,6,1,77,,,,,,,11 +5229,260,109,22,6,17,7,7,7,0,77,,,,,,,11 +5230,260,106,33,19,18,8,8,8,0,76,,,,,,,12 +5231,260,44,27,26,20,9,9,9,0,76,,,,,,,12 +5232,260,100,33,20,13,10,10,10,0,75,,,,,,,13 +5233,260,83,32,11,19,11,11,11,0,73,,,,,,,15 +5234,260,65,32,12,16,,R,12,0,68,,,,,,,6 +5235,260,108,30,33,24,,R,13,0,53,,,,,,,68 +5236,260,92,30,34,23,,R,14,0,49,,,,,,,6 +5237,260,104,29,9,6,,R,15,0,47,,,,,,,6 +5238,260,101,31,31,22,,R,16,0,45,,,,,,,5 +5239,260,87,25,4,10,,R,17,0,40,,,,,,,5 +5240,260,79,25,3,11,,R,18,0,38,,,,,,,6 +5241,260,103,27,25,21,,R,19,0,34,,,,,,,20 +5242,260,22,17,14,15,,R,20,0,27,,,,,,,10 +5243,260,57,1,7,2,,R,21,0,0,,,,,,,4 +5244,260,71,3,0,4,,R,22,0,0,,,,,,,4 +5245,260,81,29,10,7,,R,23,0,0,,,,,,,4 +5246,260,94,18,23,9,,R,24,0,0,,,,,,,4 +5247,260,49,15,30,0,,W,25,0,0,,,,,,,54 +5248,260,91,15,29,0,,W,26,0,0,,,,,,,82 +5249,261,71,3,0,2,1,1,1,10,65,36:14.3,5774300,,,,,1 +5250,261,30,22,5,1,2,2,2,6,65,24.166,5798466,,,,,1 +5251,261,87,25,4,11,3,3,3,4,65,+1:26.969,5861269,,,,,1 +5252,261,55,6,27,6,4,4,4,3,64,,,,,,,11 +5253,261,94,18,23,18,5,5,5,2,64,,,,,,,11 +5254,261,56,17,15,13,6,6,6,1,64,,,,,,,11 +5255,261,44,27,26,19,7,7,7,0,63,,,,,,,12 +5256,261,103,27,25,20,8,8,8,0,62,,,,,,,13 +5257,261,70,32,11,23,9,9,9,0,62,,,,,,,13 +5258,261,101,31,31,24,10,10,10,0,61,,,,,,,14 +5259,261,84,1,8,8,11,11,11,0,59,,,,,,,7 +5260,261,109,22,6,4,,R,12,0,53,,,,,,,5 +5261,261,57,1,7,3,,R,13,0,48,,,,,,,5 +5262,261,65,32,12,22,,R,14,0,41,,,,,,,20 +5263,261,22,17,14,5,,R,15,0,39,,,,,,,20 +5264,261,104,29,9,21,,R,16,0,35,,,,,,,5 +5265,261,14,3,2,9,,R,17,0,32,,,,,,,10 +5266,261,92,30,34,25,,R,18,0,32,,,,,,,41 +5267,261,77,6,28,7,,R,19,0,27,,,,,,,6 +5268,261,81,29,10,15,,R,20,0,24,,,,,,,69 +5269,261,49,15,30,12,,R,21,0,21,,,,,,,6 +5270,261,100,33,20,16,,R,22,0,19,,,,,,,21 +5271,261,79,25,3,10,,R,23,0,16,,,,,,,5 +5272,261,105,18,24,14,,R,24,0,4,,,,,,,5 +5273,261,108,30,33,26,,R,25,0,2,,,,,,,20 +5274,261,106,33,19,17,,R,26,0,0,,,,,,,5 +5275,261,85,31,32,0,,W,27,0,0,,,,,,,82 +5276,262,30,22,5,1,1,1,1,10,69,44:32.1,6272100,,,,,1 +5277,262,71,3,0,4,2,2,2,6,69,39.66,6311760,,,,,1 +5278,262,55,6,27,2,3,3,3,4,69,+1:13.338,6345438,,,,,1 +5279,262,77,6,28,3,4,4,4,3,69,+1:15.609,6347709,,,,,1 +5280,262,14,3,2,5,5,5,5,2,68,,,,,,,11 +5281,262,109,22,6,20,6,6,6,1,68,,,,,,,11 +5282,262,22,17,14,6,7,7,7,0,68,,,,,,,11 +5283,262,65,32,12,17,8,8,8,0,68,,,,,,,11 +5284,262,94,18,23,15,9,9,9,0,68,,,,,,,11 +5285,262,87,25,4,13,10,10,10,0,67,,,,,,,20 +5286,262,105,18,24,18,11,11,11,0,67,,,,,,,12 +5287,262,44,27,26,19,12,12,12,0,67,,,,,,,12 +5288,262,103,27,25,24,13,13,13,0,66,,,,,,,13 +5289,262,101,31,31,25,14,14,14,0,65,,,,,,,14 +5290,262,70,32,11,23,15,15,15,0,62,,,,,,,17 +5291,262,104,29,9,16,,D,16,0,68,,,,,,,2 +5292,262,57,1,7,7,,R,17,0,61,,,,,,,5 +5293,262,106,33,19,22,,R,18,0,57,,,,,,,5 +5294,262,81,29,10,11,,R,19,0,50,,,,,,,7 +5295,262,92,30,34,26,,R,20,0,47,,,,,,,51 +5296,262,100,33,20,21,,R,21,0,45,,,,,,,8 +5297,262,79,25,3,9,,R,22,0,44,,,,,,,3 +5298,262,56,17,15,8,,R,23,0,40,,,,,,,20 +5299,262,110,15,29,14,,R,24,0,24,,,,,,,51 +5300,262,49,15,30,10,,R,25,0,5,,,,,,,20 +5301,262,84,1,8,12,,R,26,0,3,,,,,,,10 +5302,262,108,30,33,0,,F,27,0,0,,,,,,,81 +5303,263,30,22,5,3,1,1,1,10,72,38:36.2,5916200,,,,,1 +5304,263,71,3,0,1,2,2,2,6,72,12.642,5928842,,,,,1 +5305,263,77,6,28,5,3,3,3,4,72,52.765,5968965,,,,,1 +5306,263,49,15,30,10,4,4,4,3,71,,,,,,,11 +5307,263,94,18,23,16,5,5,5,2,70,,,,,,,12 +5308,263,110,15,29,11,6,6,6,1,70,,,,,,,12 +5309,263,65,32,12,19,7,7,7,0,70,,,,,,,12 +5310,263,104,29,9,18,8,8,8,0,70,,,,,,,12 +5311,263,111,31,32,26,9,9,9,0,68,,,,,,,14 +5312,263,87,25,4,17,10,10,10,0,67,,,,,,,15 +5313,263,100,33,20,20,11,11,11,0,66,,,,,,,5 +5314,263,79,25,3,14,,R,12,0,53,,,,,,,20 +5315,263,57,1,7,9,,R,13,0,48,,,,,,,5 +5316,263,95,3,2,2,,R,14,0,45,,,,,,,6 +5317,263,55,6,27,4,,R,15,0,41,,,,,,,4 +5318,263,22,17,14,7,,R,16,0,41,,,,,,,4 +5319,263,103,27,25,15,,R,17,0,40,,,,,,,6 +5320,263,106,33,19,25,,R,18,0,36,,,,,,,5 +5321,263,84,1,8,12,,R,19,0,29,,,,,,,5 +5322,263,81,29,10,22,,R,20,0,28,,,,,,,4 +5323,263,44,27,26,13,,R,21,0,28,,,,,,,4 +5324,263,101,31,31,24,,R,22,0,28,,,,,,,7 +5325,263,50,22,6,8,,R,23,0,25,,,,,,,20 +5326,263,56,17,15,6,,R,24,0,24,,,,,,,6 +5327,263,105,18,24,21,,R,25,0,21,,,,,,,5 +5328,263,70,32,11,23,,R,26,0,20,,,,,,,5 +5329,263,108,30,33,0,,F,27,0,0,,,,,,,81 +5330,263,92,30,34,0,,F,28,0,0,,,,,,,81 +5331,264,71,3,0,1,1,1,1,10,60,30:03.6,5403640,,,,,1 +5332,264,55,6,27,4,2,2,2,6,60,+1:08.128,5471768,,,,,1 +5333,264,57,1,7,5,3,3,3,4,60,+1:40.659,5504299,,,,,1 +5334,264,22,17,14,6,4,4,4,3,60,+1:41.751,5505391,,,,,1 +5335,264,14,3,2,7,5,5,5,2,59,,,,,,,11 +5336,264,79,25,3,8,6,6,6,1,59,,,,,,,11 +5337,264,49,15,30,13,7,7,7,0,59,,,,,,,11 +5338,264,50,22,6,10,8,8,8,0,59,,,,,,,11 +5339,264,104,29,9,20,9,9,9,0,58,,,,,,,12 +5340,264,94,18,23,14,10,10,10,0,58,,,,,,,12 +5341,264,65,32,12,21,11,11,11,0,58,,,,,,,12 +5342,264,44,27,26,15,12,12,12,0,58,,,,,,,12 +5343,264,103,27,25,23,13,13,13,0,58,,,,,,,12 +5344,264,106,33,19,24,14,14,14,0,58,,,,,,,12 +5345,264,101,31,31,25,15,15,15,0,57,,,,,,,13 +5346,264,111,31,32,26,16,16,16,0,57,,,,,,,13 +5347,264,30,22,5,2,,D,17,0,60,,,,,,,2 +5348,264,105,18,24,17,,R,18,0,48,,,,,,,5 +5349,264,77,6,28,3,,R,19,0,32,,,,,,,5 +5350,264,87,25,4,11,,R,20,0,20,,,,,,,6 +5351,264,100,33,20,22,,R,21,0,12,,,,,,,5 +5352,264,110,15,29,18,,R,22,0,11,,,,,,,5 +5353,264,81,29,10,16,,R,23,0,5,,,,,,,5 +5354,264,70,32,11,19,,R,24,0,4,,,,,,,5 +5355,264,84,1,8,9,,R,25,0,0,,,,,,,5 +5356,264,56,17,15,12,,R,26,0,0,,,,,,,5 +5357,264,92,30,34,0,,F,27,0,0,,,,,,,81 +5358,264,108,30,33,0,,F,28,0,0,,,,,,,81 +5359,265,77,6,28,1,1,1,1,10,45,22:37.2,4957200,,,,,1 +5360,265,44,27,26,12,2,2,2,6,45,54.779,5011979,,,,,1 +5361,265,103,27,25,14,3,3,3,4,45,+1:05.0421,5022621,,,,,1 +5362,265,104,29,9,17,4,4,4,3,45,+1:21.609,5038809,,,,,1 +5363,265,81,29,10,16,5,5,5,2,45,+1:30.544,5047744,,,,,1 +5364,265,100,33,20,22,6,6,6,1,45,+1:45.445,5062645,,,,,1 +5365,265,106,33,19,24,7,7,7,0,44,,,,,,,11 +5366,265,71,3,0,3,8,8,8,0,44,,,,,,,11 +5367,265,111,31,32,26,,R,9,0,39,,,,,,,5 +5368,265,101,31,31,25,,R,10,0,37,,,,,,,8 +5369,265,30,22,5,4,,R,11,0,20,,,,,,,5 +5370,265,84,1,8,13,,R,12,0,19,,,,,,,5 +5371,265,14,3,2,6,,R,13,0,17,,,,,,,10 +5372,265,50,22,6,19,,R,14,0,15,,,,,,,42 +5373,265,79,25,3,5,,R,15,0,6,,,,,,,37 +5374,265,55,6,27,2,,R,16,0,1,,,,,,,10 +5375,265,87,25,4,7,,R,17,0,0,,,,,,,4 +5376,265,57,1,7,8,,R,18,0,0,,,,,,,4 +5377,265,49,15,30,9,,R,19,0,0,,,,,,,4 +5378,265,56,17,15,10,,R,20,0,0,,,,,,,4 +5379,265,22,17,14,11,,R,21,0,0,,,,,,,4 +5380,265,65,32,12,15,,R,22,0,0,,,,,,,4 +5381,265,110,15,29,18,,R,23,0,0,,,,,,,4 +5382,265,94,18,23,20,,R,24,0,0,,,,,,,4 +5383,265,70,32,11,21,,R,25,0,0,,,,,,,4 +5384,265,105,18,24,23,,R,26,0,0,,,,,,,4 +5385,265,92,30,34,0,,F,27,0,0,,,,,,,81 +5386,265,108,30,33,0,,F,28,0,0,,,,,,,81 +5387,266,30,22,5,1,1,1,1,10,77,48:00.2,6480185,,,,,1 +5388,266,71,3,0,2,2,2,2,6,77,20.827,6501012,,,,,1 +5389,266,50,22,6,12,3,3,3,4,77,+1:10.329,6550514,,,,,1 +5390,266,84,1,8,6,4,4,4,3,76,,,,,,,10 +5391,266,87,25,4,11,5,5,5,2,76,,,,,,,11 +5392,266,44,27,26,9,6,6,6,1,76,,,,,,,11 +5393,266,105,18,24,20,7,7,7,0,75,,,,,,,12 +5394,266,100,33,20,21,8,8,8,0,75,,,,,,,12 +5395,266,106,33,19,25,9,9,9,0,75,,,,,,,12 +5396,266,103,27,25,18,10,10,10,0,75,,,,,,,12 +5397,266,101,31,31,23,11,11,11,0,74,,,,,,,13 +5398,266,77,6,28,4,12,12,12,0,72,,,,,,,5 +5399,266,70,32,11,22,13,13,13,0,72,,,,,,,15 +5400,266,104,29,9,16,14,14,14,0,69,,,,,,,7 +5401,266,14,3,2,3,,R,15,0,59,,,,,,,20 +5402,266,55,6,27,13,,R,16,0,58,,,,,,,6 +5403,266,94,18,23,15,,R,17,0,58,,,,,,,20 +5404,266,49,15,30,8,,R,18,0,39,,,,,,,6 +5405,266,65,32,12,24,,R,19,0,34,,,,,,,10 +5406,266,110,15,29,17,,R,20,0,30,,,,,,,4 +5407,266,81,29,10,19,,R,21,0,30,,,,,,,4 +5408,266,112,1,7,14,,R,22,0,21,,,,,,,47 +5409,266,111,31,32,26,,R,23,0,9,,,,,,,64 +5410,266,79,25,3,5,,R,24,0,0,,,,,,,4 +5411,266,56,17,15,7,,R,25,0,0,,,,,,,4 +5412,266,22,17,14,10,,R,26,0,0,,,,,,,4 +5413,266,92,30,34,0,,F,27,0,0,,,,,,,81 +5414,266,108,30,33,0,,F,28,0,0,,,,,,,81 +5415,267,71,3,0,3,1,1,1,10,44,28:47.1,5327100,,,,,1 +5416,267,57,1,7,8,2,2,2,6,44,51.381,5378481,,,,,1 +5417,267,50,22,6,6,3,3,3,4,44,+1:10.453,5397553,,,,,1 +5418,267,14,3,2,7,4,4,4,3,44,+1:45.787,5432887,,,,,1 +5419,267,87,25,4,12,5,5,5,2,43,,,,,,,11 +5420,267,81,29,10,14,6,6,6,1,43,,,,,,,11 +5421,267,44,27,26,17,7,7,7,0,43,,,,,,,11 +5422,267,94,18,23,10,8,8,8,0,43,,,,,,,11 +5423,267,105,18,24,18,9,9,9,0,43,,,,,,,11 +5424,267,103,27,25,16,10,10,10,0,42,,,,,,,12 +5425,267,111,31,32,25,11,11,11,0,42,,,,,,,12 +5426,267,65,32,12,20,12,12,12,0,41,,,,,,,13 +5427,267,56,17,15,4,13,13,13,0,40,,,,,,,91 +5428,267,30,22,5,2,,D,14,0,44,,,,,,,2 +5429,267,104,29,9,24,,R,15,0,33,,,,,,,5 +5430,267,101,31,31,21,,R,16,0,29,,,,,,,36 +5431,267,110,15,29,15,,R,17,0,27,,,,,,,37 +5432,267,84,1,8,13,,R,18,0,24,,,,,,,20 +5433,267,22,17,14,1,,R,19,0,19,,,,,,,20 +5434,267,79,25,3,23,,R,20,0,18,,,,,,,5 +5435,267,113,32,11,26,,R,21,0,15,,,,,,,20 +5436,267,77,6,28,11,,R,22,0,11,,,,,,,5 +5437,267,112,33,19,19,,R,23,0,11,,,,,,,5 +5438,267,49,15,30,9,,R,24,0,10,,,,,,,86 +5439,267,100,33,20,22,,R,25,0,3,,,,,,,5 +5440,267,55,6,27,5,,R,26,0,2,,,,,,,5 +5441,267,92,30,34,0,,F,27,0,0,,,,,,,81 +5442,267,108,30,33,0,,F,28,0,0,,,,,,,81 +5443,268,71,3,0,3,1,1,1,10,53,18:03.2,4683200,,,,,1 +5444,268,77,6,28,2,2,2,2,6,53,4.93,4688130,,,,,1 +5445,268,57,1,7,7,3,3,3,4,53,25.64,4708840,,,,,1 +5446,268,22,17,14,16,4,4,4,3,53,50.634,4733834,,,,,1 +5447,268,84,1,8,15,5,5,5,2,53,+1:25.575,4768775,,,,,1 +5448,268,14,3,2,5,6,6,6,1,52,,,,,,,60 +5449,268,103,27,25,12,7,7,7,0,52,,,,,,,11 +5450,268,100,33,20,24,8,8,8,0,52,,,,,,,11 +5451,268,109,22,5,20,9,9,9,0,52,,,,,,,11 +5452,268,44,27,26,6,10,10,10,0,51,,,,,,,12 +5453,268,101,31,31,26,,R,11,0,46,,,,,,,29 +5454,268,79,25,3,14,,R,12,0,45,,,,,,,20 +5455,268,104,29,9,19,,R,13,0,43,,,,,,,5 +5456,268,56,17,15,9,,R,14,0,41,,,,,,,5 +5457,268,87,25,4,21,,R,15,0,39,,,,,,,20 +5458,268,94,18,23,18,,R,16,0,30,,,,,,,20 +5459,268,105,18,24,22,,R,17,0,28,,,,,,,6 +5460,268,49,15,30,11,,R,18,0,22,,,,,,,5 +5461,268,110,15,29,8,,R,19,0,20,,,,,,,5 +5462,268,111,31,32,25,,R,20,0,20,,,,,,,6 +5463,268,114,33,19,23,,R,21,0,18,,,,,,,20 +5464,268,55,6,27,1,,R,22,0,14,,,,,,,6 +5465,268,65,32,12,4,,R,23,0,13,,,,,,,91 +5466,268,50,22,6,10,,R,24,0,0,,,,,,,4 +5467,268,70,32,11,13,,R,25,0,0,,,,,,,4 +5468,268,81,29,10,17,,R,26,0,0,,,,,,,4 +5469,268,92,30,34,0,,F,27,0,0,,,,,,,81 +5470,268,108,30,33,0,,F,28,0,0,,,,,,,81 +5471,269,71,3,0,2,1,1,1,10,71,45:10.1,6310100,,,,,1 +5472,269,14,3,2,3,2,2,2,6,71,0.603,6310703,,,,,1 +5473,269,57,1,7,4,3,3,3,4,71,20.193,6330293,,,,,1 +5474,269,22,17,14,8,4,4,4,3,71,28.003,6338103,,,,,1 +5475,269,50,22,6,10,5,5,5,2,71,29.385,6339485,,,,,1 +5476,269,84,1,8,7,6,6,6,1,71,52.702,6362802,,,,,1 +5477,269,56,17,15,13,7,7,7,0,70,,,,,,,11 +5478,269,104,29,9,11,8,8,8,0,70,,,,,,,11 +5479,269,81,29,10,16,9,9,9,0,70,,,,,,,11 +5480,269,103,27,25,21,10,10,10,0,70,,,,,,,11 +5481,269,65,32,12,20,11,11,11,0,70,,,,,,,11 +5482,269,94,18,23,18,12,12,12,0,69,,,,,,,12 +5483,269,105,18,24,19,13,13,13,0,69,,,,,,,12 +5484,269,114,33,19,23,14,14,14,0,69,,,,,,,12 +5485,269,111,31,32,26,15,15,15,0,67,,,,,,,14 +5486,269,113,32,11,25,16,16,16,0,67,,,,,,,14 +5487,269,44,27,26,15,,D,17,0,70,,,,,,,2 +5488,269,87,25,4,12,,R,18,0,61,,,,,,,5 +5489,269,109,22,5,14,,R,19,0,60,,,,,,,20 +5490,269,110,15,29,17,,R,20,0,54,,,,,,,20 +5491,269,55,6,27,5,,R,21,0,38,,,,,,,4 +5492,269,101,31,31,24,,R,22,0,36,,,,,,,4 +5493,269,49,15,30,9,,R,23,0,31,,,,,,,24 +5494,269,100,33,20,22,,R,24,0,27,,,,,,,22 +5495,269,79,25,3,6,,R,25,0,26,,,,,,,6 +5496,269,77,6,28,1,,R,26,0,7,,,,,,,6 +5497,269,92,30,34,0,,F,27,0,0,,,,,,,81 +5498,269,108,30,33,0,,F,28,0,0,,,,,,,81 +5499,270,30,22,5,1,1,1,1,10,69,40:27.3,6027300,,,,,1 +5500,270,71,3,0,2,2,2,2,6,69,24.689,6051989,,,,,1 +5501,270,57,1,7,9,3,3,3,4,69,+1:09.648,6096948,,,,,1 +5502,270,56,17,15,10,4,4,4,3,69,+1:18.446,6105746,,,,,1 +5503,270,77,6,28,6,5,5,5,2,68,,,,,,,11 +5504,270,49,15,30,4,6,6,6,1,68,,,,,,,11 +5505,270,79,25,3,13,7,7,7,0,68,,,,,,,11 +5506,270,65,27,25,7,8,8,8,0,68,,,,,,,11 +5507,270,44,27,26,11,9,9,9,0,68,,,,,,,11 +5508,270,55,6,27,16,10,10,10,0,68,,,,,,,11 +5509,270,81,29,10,8,11,11,11,0,68,,,,,,,11 +5510,270,22,17,14,5,12,12,12,0,68,,,,,,,11 +5511,270,87,25,4,14,13,13,13,0,68,,,,,,,11 +5512,270,105,18,24,20,14,14,14,0,67,,,,,,,12 +5513,270,94,18,23,17,15,15,15,0,67,,,,,,,12 +5514,270,70,32,12,21,16,16,16,0,67,,,,,,,12 +5515,270,104,29,9,19,17,17,17,0,66,,,,,,,13 +5516,270,103,32,11,22,18,18,18,0,66,,,,,,,13 +5517,270,93,31,32,26,19,19,19,0,64,,,,,,,15 +5518,270,95,3,2,3,,R,20,0,47,,,,,,,20 +5519,270,101,31,31,25,,R,21,0,42,,,,,,,5 +5520,270,110,15,29,18,,R,22,0,37,,,,,,,37 +5521,270,100,33,20,23,,R,23,0,37,,,,,,,91 +5522,270,50,22,6,12,,R,24,0,15,,,,,,,20 +5523,270,115,33,19,24,,R,25,0,10,,,,,,,6 +5524,270,84,1,8,15,,R,26,0,8,,,,,,,5 +5525,270,92,30,34,0,,F,27,0,0,,,,,,,81 +5526,270,108,30,33,0,,F,28,0,0,,,,,,,81 +5527,271,71,3,0,2,1,1,1,10,50,55:53.5,6953532,,,,,1 +5528,271,30,22,5,1,2,2,2,6,50,3.365,6956897,,,,,1 +5529,271,55,6,27,7,3,3,3,4,50,52.045,7005577,,,,,1 +5530,271,95,3,2,4,4,4,4,3,50,56.074,7009606,,,,,1 +5531,271,56,17,15,6,5,5,5,2,50,+1:42.107,7055639,,,,,1 +5532,271,49,15,30,3,6,6,6,1,50,+1:59.863,7073395,,,,,1 +5533,271,57,1,7,8,7,7,7,0,50,+2:02.985,7076517,,,,,1 +5534,271,104,29,9,18,8,8,8,0,49,,,,,,,11 +5535,271,100,33,20,22,9,9,9,0,49,,,,,,,11 +5536,271,63,32,11,25,10,10,10,0,49,,,,,,,11 +5537,271,44,27,26,19,11,11,11,0,49,,,,,,,11 +5538,271,101,31,31,24,12,12,12,0,48,,,,,,,12 +5539,271,70,32,12,17,13,13,13,0,48,,,,,,,12 +5540,271,87,25,4,13,,R,14,0,26,,,,,,,5 +5541,271,22,17,14,10,,R,15,0,16,,,,,,,6 +5542,271,84,1,8,9,,R,16,0,13,,,,,,,20 +5543,271,81,29,10,12,,R,17,0,13,,,,,,,20 +5544,271,77,6,28,11,,R,18,0,10,,,,,,,80 +5545,271,116,27,25,20,,R,19,0,10,,,,,,,4 +5546,271,94,18,23,16,,R,20,0,10,,,,,,,4 +5547,271,105,18,24,21,,R,21,0,10,,,,,,,20 +5548,271,65,22,6,5,,R,22,0,3,,,,,,,20 +5549,271,79,25,3,14,,R,23,0,3,,,,,,,20 +5550,271,89,31,32,26,,R,24,0,3,,,,,,,20 +5551,271,109,15,29,15,,R,25,0,0,,,,,,,5 +5552,271,115,33,19,23,,R,26,0,0,,,,,,,20 +5553,271,92,30,34,0,,F,27,0,0,,,,,,,81 +5554,271,108,30,33,0,,F,28,0,0,,,,,,,81 +5555,272,95,3,2,1,1,1,1,10,81,47:51.4,6471400,,,,,1 +5556,272,77,6,28,11,2,2,2,6,81,2.511,6473911,,,,,1 +5557,272,84,1,8,9,3,3,3,4,81,52.487,6523887,,,,,1 +5558,272,22,17,14,5,4,4,4,3,81,+1:10.530,6541930,,,,,1 +5559,272,44,27,26,12,5,5,5,2,80,,,,,,,11 +5560,272,55,6,27,8,6,6,6,1,80,,,,,,,11 +5561,272,49,15,30,10,7,7,7,0,80,,,,,,,11 +5562,272,104,29,9,19,8,8,8,0,80,,,,,,,11 +5563,272,94,18,23,18,9,9,9,0,79,,,,,,,12 +5564,272,109,15,29,17,10,10,10,0,79,,,,,,,12 +5565,272,116,27,25,20,11,11,11,0,79,,,,,,,12 +5566,272,57,1,7,4,12,12,12,0,76,,,,,,,23 +5567,272,105,18,24,16,,R,13,0,69,,,,,,,22 +5568,272,87,25,4,13,,R,14,0,66,,,,,,,3 +5569,272,98,33,20,25,,R,15,0,56,,,,,,,6 +5570,272,63,32,11,22,,R,16,0,49,,,,,,,10 +5571,272,101,31,31,24,,R,17,0,49,,,,,,,5 +5572,272,70,32,12,14,,R,18,0,40,,,,,,,37 +5573,272,71,3,0,3,,R,19,0,35,,,,,,,4 +5574,272,30,22,5,2,,R,20,0,35,,,,,,,4 +5575,272,93,31,32,26,,R,21,0,21,,,,,,,6 +5576,272,79,25,3,15,,R,22,0,19,,,,,,,20 +5577,272,115,33,19,23,,R,23,0,18,,,,,,,44 +5578,272,81,29,10,21,,R,24,0,17,,,,,,,44 +5579,272,56,17,15,6,,R,25,0,15,,,,,,,20 +5580,272,65,22,6,7,,R,26,0,13,,,,,,,6 +5581,272,92,30,34,0,,F,27,0,0,,,,,,,81 +5582,272,108,30,33,0,,F,28,0,0,,,,,,,81 +5583,273,117,3,2,1,1,1,1,10,72,38:45.1,5925082,,,,,1 +5584,273,102,1,8,2,2,2,2,6,72,+1:19.824,6004906,,,,,1 +5585,273,87,27,26,8,3,3,3,4,71,,,,,,,11 +5586,273,104,18,23,13,4,4,4,3,71,,,,,,,11 +5587,273,109,15,30,6,5,5,5,2,70,,,,,,,12 +5588,273,77,6,28,15,6,6,6,1,69,,,,,,,5 +5589,273,118,29,9,22,7,7,7,0,69,,,,,,,20 +5590,273,84,27,25,12,,R,8,0,57,,,,,,,20 +5591,273,105,26,21,21,,R,9,0,55,,,,,,,25 +5592,273,100,33,20,19,,R,10,0,51,,,,,,,5 +5593,273,119,22,6,7,,R,11,0,46,,,,,,,20 +5594,273,30,22,5,3,,R,12,0,39,,,,,,,20 +5595,273,65,32,12,17,,R,13,0,38,,,,,,,69 +5596,273,91,15,29,10,,R,14,0,33,,,,,,,5 +5597,273,22,17,14,14,,R,15,0,31,,,,,,,6 +5598,273,55,6,27,5,,R,16,0,30,,,,,,,22 +5599,273,112,33,19,11,,R,17,0,27,,,,,,,20 +5600,273,120,18,24,24,,R,18,0,21,,,,,,,4 +5601,273,88,29,10,20,,R,19,0,21,,,,,,,4 +5602,273,69,26,22,26,,R,20,0,20,,,,,,,6 +5603,273,71,3,0,4,,R,21,0,16,,,,,,,4 +5604,273,70,32,11,16,,R,22,0,16,,,,,,,4 +5605,273,121,1,7,9,,R,23,0,4,,,,,,,4 +5606,273,122,17,15,18,,R,24,0,2,,,,,,,20 +5607,273,79,25,3,21,,R,25,0,1,,,,,,,7 +5608,273,110,25,4,23,,R,26,0,0,,,,,,,7 +5609,274,102,1,8,3,1,1,1,10,71,51:15.5,6675485,,,,,1 +5610,274,71,3,0,2,2,2,2,6,71,16.625,6692110,,,,,1 +5611,274,30,22,5,4,3,3,3,4,71,45.436,6720921,,,,,1 +5612,274,65,32,12,12,4,4,4,3,71,46.557,6722042,,,,,1 +5613,274,87,27,26,10,5,5,5,2,71,52.127,6727612,,,,,1 +5614,274,70,32,11,15,6,6,6,1,70,,,,,,,11 +5615,274,112,33,19,11,7,7,7,0,70,,,,,,,11 +5616,274,55,6,27,9,8,8,8,0,70,,,,,,,11 +5617,274,118,29,9,18,9,9,9,0,69,,,,,,,12 +5618,274,100,33,20,17,10,10,10,0,69,,,,,,,12 +5619,274,105,26,21,25,11,11,11,0,68,,,,,,,13 +5620,274,69,26,22,21,12,12,12,0,68,,,,,,,13 +5621,274,91,15,29,8,,R,13,0,61,,,,,,,5 +5622,274,109,15,30,7,,R,14,0,52,,,,,,,10 +5623,274,110,25,4,23,,R,15,0,48,,,,,,,69 +5624,274,117,3,2,1,,R,16,0,29,,,,,,,4 +5625,274,104,18,23,20,,R,17,0,28,,,,,,,4 +5626,274,88,29,10,19,,R,18,0,27,,,,,,,20 +5627,274,79,25,3,22,,R,19,0,26,,,,,,,20 +5628,274,22,17,14,14,,R,20,0,13,,,,,,,6 +5629,274,119,22,6,6,,R,21,0,3,,,,,,,22 +5630,274,121,1,7,5,,R,22,0,0,,,,,,,4 +5631,274,77,6,28,13,,R,23,0,0,,,,,,,4 +5632,274,84,27,25,16,,R,24,0,0,,,,,,,4 +5633,274,120,18,24,24,,R,25,0,0,,,,,,,4 +5634,274,122,17,15,26,,F,26,0,0,,,,,,,81 +5635,275,102,1,8,4,1,1,1,10,76,50:46.6,6646570,,,,,1 +5636,275,71,3,0,2,2,2,2,6,76,+1:23.199,6729769,,,,,1 +5637,275,117,3,2,1,3,3,3,4,75,,,,,,,11 +5638,275,65,32,12,11,4,4,4,3,75,,,,,,,11 +5639,275,119,22,6,10,5,5,5,2,74,,,,,,,12 +5640,275,120,18,24,20,6,6,6,1,74,,,,,,,12 +5641,275,104,18,23,16,7,7,7,0,73,,,,,,,13 +5642,275,70,32,11,13,8,8,8,0,72,,,,,,,14 +5643,275,100,33,20,17,9,9,9,0,72,,,,,,,14 +5644,275,22,17,14,12,10,10,10,0,70,,,,,,,69 +5645,275,105,26,21,24,11,11,11,0,70,,,,,,,16 +5646,275,118,29,9,14,,R,12,0,66,,,,,,,6 +5647,275,123,17,15,19,,R,13,0,61,,,,,,,37 +5648,275,110,25,4,25,,R,14,0,55,,,,,,,6 +5649,275,55,6,27,9,,R,15,0,36,,,,,,,6 +5650,275,88,29,10,23,,R,16,0,29,,,,,,,6 +5651,275,112,33,19,15,,R,17,0,27,,,,,,,4 +5652,275,30,22,5,3,,R,18,0,22,,,,,,,20 +5653,275,87,27,26,21,,R,19,0,20,,,,,,,20 +5654,275,77,6,28,8,,R,20,0,19,,,,,,,22 +5655,275,109,15,30,7,,R,21,0,13,,,,,,,64 +5656,275,79,25,3,18,,R,22,0,11,,,,,,,8 +5657,275,84,27,25,22,,R,23,0,7,,,,,,,20 +5658,275,91,15,29,5,,R,24,0,0,,,,,,,4 +5659,275,121,1,7,6,,R,25,0,0,,,,,,,4 +5660,275,69,26,22,0,,F,26,0,0,,,,,,,81 +5661,276,117,3,2,1,1,1,1,10,61,33:20.4,5600413,,,,,1 +5662,276,30,22,5,3,2,2,2,6,61,32.41,5632823,,,,,1 +5663,276,84,27,25,10,3,3,3,4,60,,,,,,,11 +5664,276,109,15,30,16,4,4,4,3,59,,,,,,,5 +5665,276,112,33,19,14,5,5,5,2,59,,,,,,,12 +5666,276,120,18,24,25,6,6,6,1,59,,,,,,,12 +5667,276,69,26,22,24,7,7,7,0,58,,,,,,,13 +5668,276,65,32,12,12,8,8,8,0,57,,,,,,,5 +5669,276,88,29,10,21,9,9,9,0,54,,,,,,,17 +5670,276,70,32,11,20,,R,10,0,53,,,,,,,20 +5671,276,91,15,29,5,,R,11,0,48,,,,,,,5 +5672,276,102,1,8,4,,R,12,0,42,,,,,,,9 +5673,276,55,6,27,9,,R,13,0,40,,,,,,,8 +5674,276,104,18,23,23,,R,14,0,36,,,,,,,38 +5675,276,121,1,7,6,,R,15,0,32,,,,,,,20 +5676,276,118,29,9,15,,R,16,0,29,,,,,,,20 +5677,276,79,25,3,22,,R,17,0,22,,,,,,,5 +5678,276,71,3,0,2,,R,18,0,20,,,,,,,23 +5679,276,100,33,20,17,,R,19,0,18,,,,,,,5 +5680,276,110,25,4,18,,R,20,0,18,,,,,,,6 +5681,276,22,17,14,13,,R,21,0,17,,,,,,,20 +5682,276,77,6,28,8,,R,22,0,8,,,,,,,6 +5683,276,123,17,15,19,,R,23,0,1,,,,,,,6 +5684,276,87,27,26,7,,R,24,0,0,,,,,,,20 +5685,276,119,22,6,11,,R,25,0,0,,,,,,,20 +5686,276,105,26,21,0,,F,26,0,0,,,,,,,81 +5687,277,117,3,2,1,1,1,1,10,65,32:27.7,5547685,,,,,1 +5688,277,102,1,8,3,2,2,2,6,65,16.873,5564558,,,,,1 +5689,277,30,22,5,4,3,3,3,4,65,27.125,5574810,,,,,1 +5690,277,119,22,6,5,4,4,4,3,64,,,,,,,11 +5691,277,121,1,7,7,5,5,5,2,64,,,,,,,11 +5692,277,77,6,28,11,6,6,6,1,63,,,,,,,12 +5693,277,87,27,26,12,7,7,7,0,63,,,,,,,12 +5694,277,104,18,23,20,8,8,8,0,63,,,,,,,12 +5695,277,100,33,20,14,9,9,9,0,63,,,,,,,12 +5696,277,88,29,10,19,10,10,10,0,63,,,,,,,12 +5697,277,123,17,15,21,11,11,11,0,62,,,,,,,13 +5698,277,22,17,14,17,12,12,12,0,62,,,,,,,13 +5699,277,118,29,9,16,13,13,13,0,62,,,,,,,13 +5700,277,70,32,11,15,14,14,14,0,60,,,,,,,5 +5701,277,109,15,30,9,,R,15,0,53,,,,,,,5 +5702,277,69,26,22,22,,R,16,0,43,,,,,,,25 +5703,277,91,15,29,6,,R,17,0,42,,,,,,,69 +5704,277,110,25,4,24,,D,18,0,42,,,,,,,2 +5705,277,71,3,0,2,,R,19,0,41,,,,,,,5 +5706,277,55,6,27,8,,R,20,0,40,,,,,,,5 +5707,277,120,18,24,25,,R,21,0,37,,,,,,,20 +5708,277,112,33,19,13,,R,22,0,26,,,,,,,7 +5709,277,84,27,25,18,,R,23,0,11,,,,,,,27 +5710,277,79,25,3,23,,R,24,0,11,,,,,,,20 +5711,277,65,32,12,10,,R,25,0,2,,,,,,,22 +5712,277,105,26,21,0,,F,26,0,0,,,,,,,81 +5713,278,102,1,8,3,1,1,1,10,78,52:10.9,6730947,,,,,1 +5714,278,71,3,0,4,2,2,2,6,78,52.118,6783065,,,,,1 +5715,278,55,6,27,5,3,3,3,4,78,+1:03.362,6794309,,,,,1 +5716,278,117,3,2,1,4,4,4,3,77,,,,,,,11 +5717,278,104,18,23,17,5,5,5,2,76,,,,,,,12 +5718,278,84,27,25,13,6,6,6,1,76,,,,,,,12 +5719,278,70,32,11,20,7,7,7,0,76,,,,,,,12 +5720,278,121,1,7,9,8,8,8,0,76,,,,,,,12 +5721,278,22,17,14,16,9,9,9,0,76,,,,,,,12 +5722,278,110,25,4,19,10,10,10,0,76,,,,,,,12 +5723,278,120,18,24,25,11,11,11,0,75,,,,,,,13 +5724,278,112,33,19,15,12,12,12,0,75,,,,,,,13 +5725,278,91,15,29,8,13,13,13,0,74,,,,,,,14 +5726,278,77,6,28,7,14,14,14,0,70,,,,,,,4 +5727,278,65,32,12,14,,R,15,0,61,,,,,,,6 +5728,278,119,22,6,6,,R,16,0,53,,,,,,,5 +5729,278,100,33,20,10,,R,17,0,51,,,,,,,5 +5730,278,88,29,10,18,,R,18,0,46,,,,,,,20 +5731,278,118,29,9,12,,R,19,0,43,,,,,,,37 +5732,278,30,22,5,2,,R,20,0,32,,,,,,,9 +5733,278,79,25,3,22,,R,21,0,31,,,,,,,5 +5734,278,105,26,21,24,,R,22,0,28,,,,,,,6 +5735,278,109,15,30,11,,R,23,0,23,,,,,,,3 +5736,278,123,17,15,23,,R,24,0,12,,,,,,,22 +5737,278,87,27,26,21,,R,25,0,3,,,,,,,20 +5738,278,69,26,22,0,,F,26,0,0,,,,,,,81 +5739,279,117,3,2,1,1,1,1,10,69,36:41.8,5801822,,,,,1 +5740,279,30,22,5,3,2,2,2,6,69,14.527,5816349,,,,,1 +5741,279,71,3,0,2,3,3,3,4,69,52.685,5854507,,,,,1 +5742,279,77,6,28,5,4,4,4,3,68,,,,,,,11 +5743,279,84,27,25,7,5,5,5,2,68,,,,,,,11 +5744,279,91,15,29,9,6,6,6,1,68,,,,,,,11 +5745,279,109,15,30,11,7,7,7,0,68,,,,,,,11 +5746,279,100,33,20,13,8,8,8,0,68,,,,,,,11 +5747,279,104,18,23,17,9,9,9,0,67,,,,,,,12 +5748,279,65,32,12,20,10,10,10,0,67,,,,,,,12 +5749,279,70,32,11,21,11,11,11,0,67,,,,,,,12 +5750,279,123,17,15,24,12,12,12,0,67,,,,,,,12 +5751,279,88,29,10,16,13,13,13,0,66,,,,,,,13 +5752,279,121,1,7,12,14,14,14,0,66,,,,,,,13 +5753,279,69,26,22,25,15,15,15,0,65,,,,,,,14 +5754,279,118,29,9,18,16,16,16,0,65,,,,,,,14 +5755,279,79,25,3,22,17,17,17,0,64,,,,,,,15 +5756,279,102,1,8,8,18,18,18,0,62,,,,,,,10 +5757,279,119,22,6,4,,R,19,0,52,,,,,,,68 +5758,279,110,25,4,19,,R,20,0,45,,,,,,,20 +5759,279,120,18,24,23,,R,21,0,33,,,,,,,6 +5760,279,55,6,27,6,,R,22,0,33,,,,,,,5 +5761,279,87,27,26,10,,R,23,0,13,,,,,,,20 +5762,279,22,17,14,14,,R,24,0,10,,,,,,,10 +5763,279,112,33,19,15,,R,25,0,8,,,,,,,5 +5764,279,105,26,21,0,,F,26,0,0,,,,,,,81 +5765,280,117,3,2,2,1,1,1,10,72,38:35.2,5915241,,,,,1 +5766,280,71,3,0,1,2,2,2,6,72,0.342,5915583,,,,,1 +5767,280,30,22,5,7,3,3,3,4,72,21.209,5936450,,,,,1 +5768,280,102,1,8,5,4,4,4,3,72,32.405,5947646,,,,,1 +5769,280,84,27,25,3,5,5,5,2,72,33.795,5949036,,,,,1 +5770,280,121,1,7,16,6,6,6,1,71,,,,,,,11 +5771,280,22,17,14,8,7,7,7,0,71,,,,,,,11 +5772,280,104,18,23,23,8,8,8,0,71,,,,,,,11 +5773,280,112,33,19,10,9,9,9,0,70,,,,,,,12 +5774,280,119,22,6,12,10,10,10,0,70,,,,,,,12 +5775,280,123,17,15,20,11,11,11,0,70,,,,,,,12 +5776,280,88,29,10,13,12,12,12,0,70,,,,,,,12 +5777,280,118,29,9,15,13,13,13,0,70,,,,,,,12 +5778,280,77,6,28,14,14,14,14,0,70,,,,,,,12 +5779,280,110,25,4,25,15,15,15,0,68,,,,,,,14 +5780,280,100,33,20,9,16,16,16,0,66,,,,,,,6 +5781,280,55,6,27,6,,R,17,0,47,,,,,,,5 +5782,280,69,26,22,22,,R,18,0,28,,,,,,,22 +5783,280,91,15,29,11,,R,19,0,25,,,,,,,6 +5784,280,109,15,30,18,,R,20,0,22,,,,,,,6 +5785,280,87,27,26,4,,R,21,0,20,,,,,,,20 +5786,280,65,32,12,19,,R,22,0,16,,,,,,,20 +5787,280,120,18,24,24,,R,23,0,16,,,,,,,6 +5788,280,79,25,3,24,,R,24,0,16,,,,,,,6 +5789,280,70,32,11,17,,R,25,0,9,,,,,,,22 +5790,280,105,26,21,0,,F,26,0,0,,,,,,,81 +5791,281,117,3,2,1,1,1,1,10,59,25:38.2,5138189,,,,,1 +5792,281,30,22,5,3,2,2,2,6,59,7.66,5145849,,,,,1 +5793,281,119,22,6,5,3,3,3,4,59,+1:17.482,5215671,,,,,1 +5794,281,65,32,12,7,4,4,4,3,59,+1:18.407,5216596,,,,,1 +5795,281,102,1,8,4,5,5,5,2,58,,,,,,,60 +5796,281,118,29,9,8,6,6,6,1,58,,,,,,,11 +5797,281,87,27,26,9,7,7,7,0,58,,,,,,,11 +5798,281,109,15,30,16,8,8,8,0,58,,,,,,,11 +5799,281,55,6,27,12,9,9,9,0,58,,,,,,,11 +5800,281,22,17,14,15,10,10,10,0,58,,,,,,,11 +5801,281,112,33,19,24,11,11,11,0,57,,,,,,,12 +5802,281,104,18,23,19,12,12,12,0,56,,,,,,,6 +5803,281,79,25,3,22,13,13,13,0,55,,,,,,,14 +5804,281,84,27,25,6,14,14,14,0,53,,,,,,,6 +5805,281,110,25,4,21,,N,15,0,43,,,,,,,62 +5806,281,71,3,0,2,,R,16,0,41,,,,,,,5 +5807,281,70,32,11,14,,R,17,0,41,,,,,,,22 +5808,281,123,17,15,23,,R,18,0,41,,,,,,,67 +5809,281,69,26,22,25,,R,19,0,32,,,,,,,10 +5810,281,94,18,24,20,,R,20,0,31,,,,,,,68 +5811,281,91,15,29,18,,R,21,0,24,,,,,,,20 +5812,281,77,6,28,13,,R,22,0,10,,,,,,,22 +5813,281,88,29,10,10,,R,23,0,8,,,,,,,20 +5814,281,121,1,7,11,,R,24,0,0,,,,,,,20 +5815,281,100,33,20,17,,R,25,0,0,,,,,,,86 +5816,281,105,26,21,0,,F,26,0,0,,,,,,,81 +5817,282,117,3,2,1,1,1,1,10,45,18:40.9,4720885,,,,,1 +5818,282,30,22,5,3,2,2,2,6,45,16.664,4737549,,,,,1 +5819,282,87,27,26,5,3,3,3,4,45,59.349,4780234,,,,,1 +5820,282,102,1,8,4,4,4,4,3,45,+1:08.229,4789114,,,,,1 +5821,282,119,22,6,7,5,5,5,2,45,+1:31.516,4812401,,,,,1 +5822,282,77,6,28,9,6,6,6,1,45,+1:34.754,4815639,,,,,1 +5823,282,55,6,27,10,7,7,7,0,45,+1:35.841,4816726,,,,,1 +5824,282,84,27,25,6,8,8,8,0,44,,,,,,,11 +5825,282,91,15,29,14,9,9,9,0,44,,,,,,,11 +5826,282,65,32,12,13,10,10,10,0,44,,,,,,,11 +5827,282,104,18,23,20,11,11,11,0,44,,,,,,,11 +5828,282,112,33,19,23,12,12,12,0,44,,,,,,,11 +5829,282,123,17,15,24,13,13,13,0,44,,,,,,,11 +5830,282,94,18,24,22,14,14,14,0,44,,,,,,,11 +5831,282,71,3,0,2,15,15,15,0,43,,,,,,,27 +5832,282,105,26,21,26,16,16,16,0,43,,,,,,,12 +5833,282,118,29,9,11,17,17,17,0,42,,,,,,,13 +5834,282,22,17,14,17,,R,18,0,34,,,,,,,67 +5835,282,79,25,3,21,,R,19,0,28,,,,,,,86 +5836,282,109,15,30,18,,R,20,0,22,,,,,,,20 +5837,282,70,32,11,15,,R,21,0,19,,,,,,,20 +5838,282,88,29,10,8,,R,22,0,9,,,,,,,4 +5839,282,121,1,7,12,,R,23,0,4,,,,,,,4 +5840,282,69,26,22,25,,R,24,0,4,,,,,,,22 +5841,282,110,25,4,19,,R,25,0,1,,,,,,,6 +5842,282,100,33,20,16,,R,26,0,0,,,,,,,6 +5843,283,71,3,0,2,1,1,1,10,77,47:39.1,6459098,,,,,1 +5844,283,119,22,6,5,2,2,2,6,77,+1:11.915,6531013,,,,,1 +5845,283,77,6,28,6,3,3,3,4,77,+1:18.042,6537140,,,,,1 +5846,283,118,29,9,9,4,4,4,3,76,,,,,,,11 +5847,283,84,27,25,13,5,5,5,2,76,,,,,,,11 +5848,283,91,15,29,17,6,6,6,1,76,,,,,,,11 +5849,283,87,27,26,12,7,7,7,0,76,,,,,,,11 +5850,283,112,33,19,19,8,8,8,0,75,,,,,,,12 +5851,283,123,17,15,24,9,9,9,0,75,,,,,,,12 +5852,283,79,25,3,23,10,10,10,0,73,,,,,,,14 +5853,283,110,25,4,22,11,11,11,0,72,,,,,,,15 +5854,283,117,3,2,1,12,12,12,0,70,,,,,,,17 +5855,283,94,18,24,7,,R,13,0,59,,,,,,,3 +5856,283,100,33,20,18,,R,14,0,54,,,,,,,5 +5857,283,70,32,11,21,,R,15,0,45,,,,,,,6 +5858,283,88,29,10,10,,R,16,0,41,,,,,,,20 +5859,283,105,26,21,25,,R,17,0,39,,,,,,,25 +5860,283,65,32,12,20,,R,18,0,38,,,,,,,20 +5861,283,69,26,22,26,,R,19,0,37,,,,,,,20 +5862,283,30,22,5,3,,R,20,0,26,,,,,,,48 +5863,283,104,18,23,14,,R,21,0,22,,,,,,,22 +5864,283,55,6,27,8,,R,22,0,22,,,,,,,20 +5865,283,109,15,30,15,,R,23,0,18,,,,,,,5 +5866,283,102,1,8,4,,R,24,0,17,,,,,,,37 +5867,283,121,1,7,11,,R,25,0,15,,,,,,,37 +5868,283,22,17,14,16,,R,26,0,0,,,,,,,3 +5869,284,71,3,0,2,1,1,1,10,44,24:32.1,5072124,,,,,1 +5870,284,30,22,5,3,2,2,2,6,44,3.668,5075792,,,,,1 +5871,284,117,3,2,1,3,3,3,4,44,14.988,5087112,,,,,1 +5872,284,102,1,8,5,4,4,4,3,44,+1:39.763,5171887,,,,,1 +5873,284,65,32,12,10,5,5,5,2,43,,,,,,,11 +5874,284,119,22,6,8,6,6,6,1,43,,,,,,,11 +5875,284,84,27,25,11,7,7,7,0,43,,,,,,,11 +5876,284,121,1,7,14,8,8,8,0,43,,,,,,,11 +5877,284,109,15,30,9,9,9,9,0,43,,,,,,,11 +5878,284,77,6,28,16,10,10,10,0,42,,,,,,,4 +5879,284,87,27,26,15,11,11,11,0,42,,,,,,,4 +5880,284,112,33,19,18,12,12,12,0,42,,,,,,,12 +5881,284,69,26,22,24,13,13,13,0,42,,,,,,,12 +5882,284,105,26,21,25,14,14,14,0,41,,,,,,,13 +5883,284,79,25,3,23,15,15,15,0,40,,,,,,,14 +5884,284,100,33,20,19,,R,16,0,37,,,,,,,48 +5885,284,118,29,9,7,,R,17,0,28,,,,,,,5 +5886,284,91,15,29,12,,R,18,0,27,,,,,,,5 +5887,284,110,25,4,17,,R,19,0,24,,,,,,,5 +5888,284,104,18,23,22,,R,20,0,15,,,,,,,20 +5889,284,94,18,24,21,,R,21,0,15,,,,,,,20 +5890,284,88,29,10,6,,R,22,0,14,,,,,,,6 +5891,284,22,17,14,12,,R,23,0,11,,,,,,,67 +5892,284,55,6,27,4,,R,24,0,4,,,,,,,22 +5893,284,123,17,15,20,,R,25,0,0,,,,,,,6 +5894,284,70,32,11,26,,W,26,0,0,,,,,,,82 +5895,285,71,3,0,2,1,1,1,10,53,17:07.5,4627509,,,,,1 +5896,285,55,6,27,3,2,2,2,6,53,40.012,4667521,,,,,1 +5897,285,121,1,7,9,3,3,3,4,52,,,,,,,11 +5898,285,91,15,29,15,4,4,4,3,52,,,,,,,11 +5899,285,119,22,6,10,5,5,5,2,52,,,,,,,11 +5900,285,100,33,20,20,6,6,6,1,52,,,,,,,11 +5901,285,94,18,24,22,7,7,7,0,51,,,,,,,12 +5902,285,104,18,23,24,8,8,8,0,51,,,,,,,12 +5903,285,112,33,19,16,9,9,9,0,51,,,,,,,12 +5904,285,69,26,22,25,10,10,10,0,51,,,,,,,12 +5905,285,83,32,11,26,11,11,11,0,49,,,,,,,10 +5906,285,117,3,2,1,12,12,12,0,48,,,,,,,5 +5907,285,110,25,4,18,13,13,13,0,47,,,,,,,51 +5908,285,79,25,3,17,14,14,14,0,47,,,,,,,16 +5909,285,105,26,21,21,,R,15,0,23,,,,,,,22 +5910,285,30,22,5,5,,R,16,0,21,,,,,,,5 +5911,285,87,27,26,14,,R,17,0,20,,,,,,,20 +5912,285,77,6,28,6,,R,18,0,15,,,,,,,22 +5913,285,65,32,12,7,,R,19,0,14,,,,,,,20 +5914,285,84,27,25,12,,R,20,0,8,,,,,,,4 +5915,285,102,1,8,4,,R,21,0,8,,,,,,,4 +5916,285,88,29,10,8,,R,22,0,0,,,,,,,4 +5917,285,118,29,9,11,,R,23,0,0,,,,,,,4 +5918,285,109,15,30,13,,R,24,0,0,,,,,,,4 +5919,285,22,17,14,19,,R,25,0,0,,,,,,,4 +5920,285,124,17,15,23,,R,26,0,0,,,,,,,4 +5921,286,30,22,5,6,1,1,1,10,71,32:46.3,5566309,,,,,1 +5922,286,117,3,2,2,2,2,2,6,71,0.982,5567291,,,,,1 +5923,286,71,3,0,1,3,3,3,4,71,8.206,5574515,,,,,1 +5924,286,55,6,27,5,4,4,4,3,71,+1:07.605,5633914,,,,,1 +5925,286,91,15,29,13,5,5,5,2,70,,,,,,,11 +5926,286,84,27,25,11,6,6,6,1,70,,,,,,,11 +5927,286,109,15,30,12,7,7,7,0,69,,,,,,,12 +5928,286,94,18,24,19,8,8,8,0,69,,,,,,,12 +5929,286,104,18,23,24,9,9,9,0,69,,,,,,,12 +5930,286,112,33,19,20,10,10,10,0,69,,,,,,,12 +5931,286,100,33,20,22,11,11,11,0,68,,,,,,,13 +5932,286,110,25,4,17,12,12,12,0,68,,,,,,,13 +5933,286,22,17,14,15,13,13,13,0,68,,,,,,,13 +5934,286,69,26,22,26,14,14,14,0,68,,,,,,,13 +5935,286,118,29,9,9,15,15,15,0,63,,,,,,,3 +5936,286,119,22,6,7,16,16,16,0,63,,,,,,,3 +5937,286,83,32,11,18,,R,17,0,61,,,,,,,20 +5938,286,65,32,12,14,,R,18,0,60,,,,,,,20 +5939,286,87,27,26,10,,R,19,0,51,,,,,,,3 +5940,286,105,26,21,25,,R,20,0,38,,,,,,,6 +5941,286,77,6,28,8,,R,21,0,35,,,,,,,3 +5942,286,57,1,7,3,,R,22,0,32,,,,,,,20 +5943,286,88,29,10,16,,R,23,0,27,,,,,,,6 +5944,286,102,1,8,4,,R,24,0,19,,,,,,,5 +5945,286,79,25,3,21,,R,25,0,12,,,,,,,20 +5946,286,125,17,15,23,,R,26,0,8,,,,,,,5 +5947,287,102,1,8,2,1,1,1,10,53,40:27.9,6027912,,,,,1 +5948,287,117,3,2,1,2,2,2,6,53,11.435,6039347,,,,,1 +5949,287,57,1,7,3,3,3,3,4,53,26.129,6054041,,,,,1 +5950,287,71,3,0,6,4,4,4,3,53,+1:23.538,6111450,,,,,1 +5951,287,22,17,14,12,5,5,5,2,53,+1:35.101,6123013,,,,,1 +5952,287,56,17,15,8,6,6,6,1,53,+1:46.421,6134333,,,,,1 +5953,287,87,27,26,17,7,7,7,0,52,,,,,,,11 +5954,287,109,15,30,11,8,8,8,0,52,,,,,,,11 +5955,287,84,27,25,15,9,9,9,0,51,,,,,,,4 +5956,287,94,18,24,22,10,10,10,0,51,,,,,,,12 +5957,287,65,32,12,19,11,11,11,0,51,,,,,,,12 +5958,287,126,33,19,23,12,12,12,0,51,,,,,,,12 +5959,287,83,32,11,20,13,13,13,0,49,,,,,,,20 +5960,287,118,29,9,7,14,14,14,0,48,,,,,,,4 +5961,287,119,22,6,10,,R,15,0,45,,,,,,,20 +5962,287,77,6,28,5,,R,16,0,40,,,,,,,5 +5963,287,88,29,10,9,,R,17,0,28,,,,,,,20 +5964,287,111,18,23,13,,R,18,0,26,,,,,,,54 +5965,287,79,25,3,24,,R,19,0,26,,,,,,,5 +5966,287,91,15,29,16,,R,20,0,25,,,,,,,5 +5967,287,100,33,20,21,,R,21,0,17,,,,,,,5 +5968,287,30,22,5,4,,R,22,0,10,,,,,,,4 +5969,287,55,6,27,14,,R,23,0,7,,,,,,,5 +5970,287,110,25,4,18,,R,24,0,0,,,,,,,4 +5971,288,102,1,8,1,1,1,1,10,79,43:27.5,6207476,,,,,1 +5972,288,117,3,2,2,2,2,2,6,79,9.259,6216735,,,,,1 +5973,288,71,3,0,3,3,3,3,4,79,33.902,6241378,,,,,1 +5974,288,55,6,27,7,4,4,4,3,78,,,,,,,11 +5975,288,77,6,28,6,5,5,5,2,78,,,,,,,11 +5976,288,84,27,25,8,6,6,6,1,78,,,,,,,11 +5977,288,88,29,10,10,7,7,7,0,78,,,,,,,11 +5978,288,119,22,6,9,8,8,8,0,77,,,,,,,69 +5979,288,87,27,26,14,9,9,9,0,77,,,,,,,12 +5980,288,118,29,9,17,10,10,10,0,77,,,,,,,12 +5981,288,22,17,14,13,11,11,11,0,76,,,,,,,13 +5982,288,100,33,20,21,12,12,12,0,76,,,,,,,13 +5983,288,110,25,4,15,13,13,13,0,75,,,,,,,14 +5984,288,126,33,19,24,14,14,14,0,74,,,,,,,15 +5985,288,91,15,29,11,15,15,15,0,73,,,,,,,23 +5986,288,109,15,30,12,,R,16,0,56,,,,,,,3 +5987,288,111,18,23,22,,R,17,0,34,,,,,,,20 +5988,288,57,1,7,5,,R,18,0,28,,,,,,,23 +5989,288,30,22,5,4,,R,19,0,19,,,,,,,5 +5990,288,79,25,3,18,,R,20,0,11,,,,,,,20 +5991,288,56,17,15,19,,R,21,0,10,,,,,,,3 +5992,288,65,32,12,20,,R,22,0,9,,,,,,,22 +5993,288,94,18,24,16,,R,23,0,5,,,,,,,6 +5994,288,83,32,11,23,,R,24,0,0,,,,,,,3 +5995,289,95,3,5,1,1,1,1,10,72,36:45.3,5805320,,,,,1 +5996,289,119,3,6,4,2,2,2,6,72,24.36,5829680,,,,,1 +5997,289,102,1,1,2,3,3,3,4,72,34.675,5839995,,,,,1 +5998,289,30,22,19,6,4,4,4,3,72,47.863,5853183,,,,,1 +5999,289,77,1,2,3,5,5,5,2,72,+1:13.634,5878954,,,,,1 +6000,289,65,32,12,11,6,6,6,1,71,,,,,,,11 +6001,289,100,27,26,13,7,7,7,0,71,,,,,,,11 +6002,289,88,29,10,16,8,8,8,0,70,,,,,,,12 +6003,289,57,32,11,21,9,9,9,0,70,,,,,,,12 +6004,289,105,29,9,17,10,10,10,0,70,,,,,,,12 +6005,289,127,17,33,23,11,11,11,0,70,,,,,,,12 +6006,289,79,33,30,18,12,12,12,0,68,,,,,,,14 +6007,289,128,34,7,26,13,13,13,0,68,,,,,,,14 +6008,289,129,25,3,12,,R,14,0,62,,,,,,,5 +6009,289,123,27,25,14,,R,15,0,60,,,,,,,69 +6010,289,94,35,22,25,,R,16,0,56,,,,,,,8 +6011,289,81,18,24,19,,R,17,0,55,,,,,,,5 +6012,289,109,35,21,24,,R,18,0,44,,,,,,,6 +6013,289,104,18,23,20,,R,19,0,43,,,,,,,91 +6014,289,110,25,4,10,,R,20,0,41,,,,,,,5 +6015,289,55,6,27,5,,R,21,0,40,,,,,,,5 +6016,289,122,6,28,9,,R,22,0,28,,,,,,,5 +6017,289,99,36,15,15,,R,23,0,23,,,,,,,5 +6018,289,91,37,16,7,,R,24,0,13,,,,,,,25 +6019,289,92,33,29,22,,R,25,0,8,,,,,,,38 +6020,289,84,22,20,8,,R,26,0,1,,,,,,,8 +6021,289,108,37,17,0,,F,27,0,0,,,,,,,81 +6022,289,130,36,14,0,,F,28,0,0,,,,,,,81 +6023,289,131,17,32,0,,F,29,0,0,,,,,,,81 +6024,289,132,34,8,0,,F,30,0,0,,,,,,,81 +6025,290,95,3,5,1,1,1,1,10,69,31:53.6,5513587,,,,,1 +6026,290,119,3,6,2,2,2,2,6,69,12.971,5526558,,,,,1 +6027,290,30,22,19,3,3,3,3,4,69,21.429,5535016,,,,,1 +6028,290,77,1,2,5,4,4,4,3,69,33.347,5546934,,,,,1 +6029,290,110,25,4,11,5,5,5,2,68,,,,,,,11 +6030,290,57,32,11,18,6,6,6,1,68,,,,,,,11 +6031,290,65,32,12,12,7,7,7,0,68,,,,,,,11 +6032,290,109,35,21,7,8,8,8,0,68,,,,,,,11 +6033,290,100,27,26,26,9,9,9,0,67,,,,,,,12 +6034,290,123,27,25,22,10,10,10,0,67,,,,,,,12 +6035,290,92,33,29,13,11,11,11,0,66,,,,,,,13 +6036,290,79,33,30,24,12,12,12,0,66,,,,,,,13 +6037,290,105,29,9,25,13,13,13,0,65,,,,,,,14 +6038,290,84,22,20,4,,R,14,0,47,,,,,,,5 +6039,290,99,36,15,14,,R,15,0,45,,,,,,,8 +6040,290,130,36,14,23,,R,16,0,37,,,,,,,20 +6041,290,94,35,22,9,,R,17,0,36,,,,,,,64 +6042,290,55,6,27,10,,R,18,0,31,,,,,,,5 +6043,290,81,18,24,21,,R,19,0,29,,,,,,,20 +6044,290,131,17,32,15,,R,20,0,17,,,,,,,6 +6045,290,129,25,3,16,,R,21,0,12,,,,,,,5 +6046,290,102,1,1,6,,R,22,0,11,,,,,,,7 +6047,290,104,18,23,17,,R,23,0,2,,,,,,,20 +6048,290,127,17,33,8,,R,24,0,0,,,,,,,5 +6049,290,91,37,16,19,,R,25,0,0,,,,,,,4 +6050,290,122,6,28,20,,R,26,0,0,,,,,,,4 +6051,290,88,29,10,0,,F,27,0,0,,,,,,,81 +6052,290,108,37,17,0,,F,28,0,0,,,,,,,81 +6053,290,128,34,7,0,,F,29,0,0,,,,,,,81 +6054,290,132,34,8,0,,F,30,0,0,,,,,,,81 +6055,291,95,3,5,1,1,1,1,10,71,36:51.9,5811856,,,,,1 +6056,291,119,3,6,2,2,2,2,6,71,29.33,5841186,,,,,1 +6057,291,30,22,19,5,3,3,3,4,70,,,,,,,11 +6058,291,55,6,27,6,4,4,4,3,70,,,,,,,11 +6059,291,122,6,28,11,5,5,5,2,70,,,,,,,11 +6060,291,105,29,9,14,6,6,6,1,70,,,,,,,11 +6061,291,81,18,24,23,7,7,7,0,69,,,,,,,12 +6062,291,109,35,21,16,8,8,8,0,69,,,,,,,12 +6063,291,79,33,30,25,9,9,9,0,68,,,,,,,13 +6064,291,57,32,11,24,10,10,10,0,67,,,,,,,14 +6065,291,99,36,15,19,,R,11,0,62,,,,,,,5 +6066,291,91,37,16,9,,R,12,0,55,,,,,,,8 +6067,291,104,18,23,20,,R,13,0,54,,,,,,,6 +6068,291,129,25,3,17,,R,14,0,52,,,,,,,5 +6069,291,100,27,26,15,,R,15,0,42,,,,,,,6 +6070,291,65,32,12,26,,R,16,0,36,,,,,,,20 +6071,291,123,27,25,10,,R,17,0,36,,,,,,,4 +6072,291,127,17,33,21,,R,18,0,36,,,,,,,6 +6073,291,84,22,20,7,,R,19,0,30,,,,,,,4 +6074,291,94,35,22,8,,R,20,0,24,,,,,,,8 +6075,291,92,33,29,18,,R,21,0,23,,,,,,,22 +6076,291,110,25,4,13,,R,22,0,21,,,,,,,5 +6077,291,102,1,1,3,,R,23,0,17,,,,,,,5 +6078,291,77,1,2,4,,R,24,0,4,,,,,,,10 +6079,291,88,29,10,22,,R,25,0,2,,,,,,,5 +6080,291,131,17,32,12,,R,26,0,1,,,,,,,6 +6081,291,130,36,14,0,,F,27,0,0,,,,,,,81 +6082,291,108,37,17,0,,F,28,0,0,,,,,,,81 +6083,291,128,34,7,0,,F,29,0,0,,,,,,,81 +6084,291,132,34,8,0,,F,30,0,0,,,,,,,81 +6085,292,95,3,5,1,1,1,1,10,65,56:10.7,6970674,,,,,1 +6086,292,30,22,19,2,2,2,2,6,65,23.914,6994588,,,,,1 +6087,292,55,6,27,8,3,3,3,4,65,26.462,6997136,,,,,1 +6088,292,77,1,2,7,4,4,4,3,65,+1:20.647,7051321,,,,,1 +6089,292,105,29,9,16,5,5,5,2,64,,,,,,,11 +6090,292,94,35,22,13,6,6,6,1,63,,,,,,,12 +6091,292,88,29,10,19,7,7,7,0,63,,,,,,,12 +6092,292,91,37,16,9,8,8,8,0,63,,,,,,,12 +6093,292,102,1,1,3,9,9,9,0,62,,,,,,,20 +6094,292,122,6,28,5,10,10,10,0,62,,,,,,,20 +6095,292,104,18,23,22,11,11,11,0,61,,,,,,,14 +6096,292,108,37,17,23,12,12,12,0,61,,,,,,,14 +6097,292,109,35,21,12,,R,13,0,56,,,,,,,20 +6098,292,99,36,15,18,,R,14,0,56,,,,,,,20 +6099,292,57,32,11,21,,R,15,0,56,,,,,,,20 +6100,292,100,27,26,10,,R,16,0,55,,,,,,,20 +6101,292,92,33,29,24,,R,17,0,35,,,,,,,5 +6102,292,129,25,3,15,,R,18,0,30,,,,,,,20 +6103,292,81,18,24,25,,R,19,0,26,,,,,,,64 +6104,292,127,17,33,17,,R,20,0,24,,,,,,,20 +6105,292,130,36,14,20,,R,21,0,22,,,,,,,20 +6106,292,119,3,6,4,,R,22,0,19,,,,,,,20 +6107,292,65,32,12,26,,R,23,0,13,,,,,,,20 +6108,292,123,27,25,14,,R,24,0,11,,,,,,,5 +6109,292,84,22,20,6,,R,25,0,4,,,,,,,20 +6110,292,110,25,4,11,,R,26,0,2,,,,,,,5 +6111,292,79,33,30,0,,F,27,0,0,,,,,,,81 +6112,292,128,34,7,0,,F,28,0,0,,,,,,,81 +6113,292,131,17,32,0,,F,29,0,0,,,,,,,81 +6114,292,71,34,8,0,,F,30,0,0,,,,,,,81 +6115,292,90,38,34,0,,F,31,0,0,,,,,,,97 +6116,292,135,38,35,0,,F,32,0,0,,,,,,,97 +6117,293,95,3,5,1,1,1,1,10,60,28:40.9,5320927,,,,,1 +6118,293,119,3,6,2,2,2,2,6,60,9.451,5330378,,,,,1 +6119,293,102,1,1,3,3,3,3,4,60,48.984,5369911,,,,,1 +6120,293,84,22,20,6,4,4,4,3,60,53.007,5373934,,,,,1 +6121,293,105,29,9,9,5,5,5,2,59,,,,,,,11 +6122,293,94,35,22,15,6,6,6,1,59,,,,,,,11 +6123,293,127,17,33,16,7,7,7,0,58,,,,,,,12 +6124,293,129,25,3,20,8,8,8,0,58,,,,,,,12 +6125,293,100,27,26,13,9,9,9,0,58,,,,,,,12 +6126,293,88,29,10,11,10,10,10,0,58,,,,,,,12 +6127,293,109,35,21,16,11,11,11,0,57,,,,,,,5 +6128,293,91,37,16,12,12,12,12,0,57,,,,,,,13 +6129,293,108,37,17,24,13,13,13,0,57,,,,,,,13 +6130,293,110,25,4,14,14,14,14,0,55,,,,,,,69 +6131,293,79,33,30,17,,R,15,0,40,,,,,,,20 +6132,293,55,6,27,7,,R,16,0,39,,,,,,,4 +6133,293,77,1,2,4,,R,17,0,39,,,,,,,4 +6134,293,92,33,29,19,,R,18,0,32,,,,,,,20 +6135,293,123,27,25,10,,R,19,0,29,,,,,,,5 +6136,293,131,17,32,23,,R,20,0,25,,,,,,,6 +6137,293,81,18,24,21,,R,21,0,24,,,,,,,5 +6138,293,99,36,15,22,,R,22,0,24,,,,,,,5 +6139,293,30,22,19,5,,R,23,0,20,,,,,,,20 +6140,293,122,6,28,8,,R,24,0,11,,,,,,,20 +6141,293,104,18,23,25,,R,25,0,8,,,,,,,6 +6142,293,65,32,12,26,,R,26,0,8,,,,,,,6 +6143,293,57,32,11,0,,F,27,0,0,,,,,,,81 +6144,293,130,36,14,0,,F,28,0,0,,,,,,,81 +6145,293,71,34,8,0,,F,29,0,0,,,,,,,81 +6146,293,128,34,7,0,,F,30,0,0,,,,,,,81 +6147,293,90,38,34,0,,F,31,0,0,,,,,,,97 +6148,293,135,38,35,0,,F,32,0,0,,,,,,,97 +6149,294,102,1,1,3,1,1,1,10,78,50:59.4,6659372,,,,,1 +6150,294,95,3,5,1,2,2,2,6,78,0.215,6659587,,,,,1 +6151,294,119,3,6,2,3,3,3,4,78,31.843,6691215,,,,,1 +6152,294,30,22,19,6,4,4,4,3,78,39.294,6698666,,,,,1 +6153,294,84,22,20,7,5,5,5,2,78,+1:21.347,6740719,,,,,1 +6154,294,92,33,29,15,6,6,6,1,77,,,,,,,11 +6155,294,105,29,9,11,7,7,7,0,77,,,,,,,11 +6156,294,104,18,23,17,8,8,8,0,77,,,,,,,11 +6157,294,109,35,21,20,9,9,9,0,76,,,,,,,12 +6158,294,100,27,26,23,10,10,10,0,76,,,,,,,12 +6159,294,88,29,10,19,11,11,11,0,76,,,,,,,12 +6160,294,123,27,25,22,12,12,12,0,75,,,,,,,13 +6161,294,122,6,28,8,,R,13,0,60,,,,,,,20 +6162,294,77,1,2,5,,R,14,0,32,,,,,,,6 +6163,294,57,32,11,14,,R,15,0,30,,,,,,,6 +6164,294,55,6,27,4,,R,16,0,28,,,,,,,6 +6165,294,127,17,33,13,,R,17,0,18,,,,,,,6 +6166,294,65,32,12,9,,R,18,0,17,,,,,,,20 +6167,294,90,38,34,26,,R,19,0,11,,,,,,,5 +6168,294,110,25,4,10,,R,20,0,9,,,,,,,6 +6169,294,99,36,15,25,,R,21,0,9,,,,,,,5 +6170,294,131,17,32,21,,R,22,0,6,,,,,,,20 +6171,294,129,25,3,24,,R,23,0,4,,,,,,,7 +6172,294,91,37,16,16,,R,24,0,1,,,,,,,6 +6173,294,81,18,24,12,,R,25,0,1,,,,,,,6 +6174,294,94,35,22,18,,R,26,0,0,,,,,,,20 +6175,294,128,34,7,0,,F,27,0,0,,,,,,,81 +6176,294,71,34,8,0,,F,28,0,0,,,,,,,81 +6177,294,130,36,14,0,,F,29,0,0,,,,,,,81 +6178,294,108,37,17,0,,F,30,0,0,,,,,,,81 +6179,294,79,33,30,0,,F,31,0,0,,,,,,,97 +6180,294,135,38,35,0,,F,32,0,0,,,,,,,97 +6181,295,77,1,2,4,1,1,1,10,69,37:08.3,5828299,,,,,1 +6182,295,30,22,19,5,2,2,2,6,69,12.401,5840700,,,,,1 +6183,295,55,6,27,8,3,3,3,4,69,+1:07.327,5895626,,,,,1 +6184,295,91,37,16,12,4,4,4,3,68,,,,,,,11 +6185,295,110,25,4,14,5,5,5,2,68,,,,,,,11 +6186,295,100,27,26,22,6,6,6,1,68,,,,,,,11 +6187,295,105,29,9,16,7,7,7,0,68,,,,,,,11 +6188,295,94,35,22,15,8,8,8,0,68,,,,,,,11 +6189,295,109,35,21,23,9,9,9,0,68,,,,,,,11 +6190,295,123,27,25,21,10,10,10,0,67,,,,,,,12 +6191,295,81,18,24,13,11,11,11,0,67,,,,,,,12 +6192,295,129,25,3,26,12,12,12,0,67,,,,,,,12 +6193,295,104,18,23,25,13,13,13,0,65,,,,,,,14 +6194,295,108,37,17,20,14,14,14,0,64,,,,,,,15 +6195,295,79,33,30,11,,R,15,0,61,,,,,,,5 +6196,295,84,22,20,7,,R,16,0,45,,,,,,,7 +6197,295,119,3,6,2,,R,17,0,43,,,,,,,6 +6198,295,102,1,1,1,,R,18,0,37,,,,,,,10 +6199,295,131,17,32,17,,R,19,0,36,,,,,,,7 +6200,295,57,32,11,10,,R,20,0,35,,,,,,,6 +6201,295,65,32,12,6,,R,21,0,34,,,,,,,8 +6202,295,122,6,28,9,,R,22,0,18,,,,,,,20 +6203,295,95,3,5,3,,R,23,0,14,,,,,,,20 +6204,295,127,17,33,24,,R,24,0,14,,,,,,,7 +6205,295,92,33,29,19,,D,25,0,14,,,,,,,2 +6206,295,99,36,15,18,,R,26,0,0,,,,,,,7 +6207,295,88,29,10,0,,F,27,0,0,,,,,,,81 +6208,295,128,34,7,0,,F,28,0,0,,,,,,,81 +6209,295,130,36,14,0,,F,29,0,0,,,,,,,81 +6210,295,71,34,8,0,,F,30,0,0,,,,,,,81 +6211,295,90,38,34,0,,F,31,0,0,,,,,,,97 +6212,296,95,3,5,1,1,1,1,10,69,38:08.5,5888459,,,,,1 +6213,296,119,3,6,2,2,2,2,6,69,46.447,5934906,,,,,1 +6214,296,84,22,20,7,3,3,3,4,69,+1:12.579,5961038,,,,,1 +6215,296,57,32,11,11,4,4,4,3,68,,,,,,,11 +6216,296,100,27,26,10,5,5,5,2,68,,,,,,,11 +6217,296,65,32,12,12,6,6,6,1,68,,,,,,,11 +6218,296,105,29,9,14,7,7,7,0,68,,,,,,,11 +6219,296,81,18,24,16,8,8,8,0,68,,,,,,,11 +6220,296,109,35,21,17,9,9,9,0,67,,,,,,,12 +6221,296,94,35,22,25,10,10,10,0,67,,,,,,,12 +6222,296,129,25,3,22,11,11,11,0,66,,,,,,,13 +6223,296,55,6,27,6,,R,12,0,61,,,,,,,5 +6224,296,110,25,4,19,,R,13,0,51,,,,,,,20 +6225,296,79,33,30,18,,R,14,0,41,,,,,,,5 +6226,296,123,27,25,9,,R,15,0,46,,,,,,,20 +6227,296,122,6,28,8,,R,16,0,38,,,,,,,5 +6228,296,91,37,16,21,,R,17,0,33,,,,,,,6 +6229,296,131,17,32,20,,R,18,0,25,,,,,,,5 +6230,296,88,29,10,15,,R,19,0,20,,,,,,,20 +6231,296,30,22,19,5,,R,20,0,17,,,,,,,3 +6232,296,77,1,2,4,,R,21,0,10,,,,,,,5 +6233,296,99,36,15,23,,R,22,0,6,,,,,,,37 +6234,296,102,1,1,3,,R,23,0,0,,,,,,,3 +6235,296,92,33,29,13,,R,24,0,0,,,,,,,3 +6236,296,127,17,33,24,,R,25,0,0,,,,,,,3 +6237,296,130,36,14,26,,R,26,0,0,,,,,,,3 +6238,296,108,37,17,0,,F,27,0,0,,,,,,,81 +6239,296,104,18,23,0,,F,28,0,0,,,,,,,81 +6240,296,128,34,7,0,,F,29,0,0,,,,,,,81 +6241,296,71,34,8,0,,F,30,0,0,,,,,,,81 +6242,297,95,3,5,1,1,1,1,10,59,25:43.0,5142991,,,,,1 +6243,297,119,3,6,2,2,2,2,6,59,39.094,5182085,,,,,1 +6244,297,84,22,20,6,3,3,3,4,59,48.395,5191386,,,,,1 +6245,297,30,22,19,4,4,4,4,3,59,53.267,5196258,,,,,1 +6246,297,77,1,2,5,5,5,5,2,59,55.795,5198786,,,,,1 +6247,297,57,32,11,9,6,6,6,1,59,+1:20.138,5223129,,,,,1 +6248,297,105,29,9,12,7,7,7,0,58,,,,,,,11 +6249,297,100,27,26,10,8,8,8,0,58,,,,,,,11 +6250,297,122,6,28,14,9,9,9,0,58,,,,,,,11 +6251,297,123,27,25,13,10,10,10,0,57,,,,,,,12 +6252,297,129,25,3,20,11,11,11,0,57,,,,,,,12 +6253,297,88,29,10,17,12,12,12,0,57,,,,,,,12 +6254,297,109,35,21,19,13,13,13,0,57,,,,,,,12 +6255,297,99,36,15,15,14,14,14,0,57,,,,,,,12 +6256,297,94,35,22,22,15,15,15,0,56,,,,,,,13 +6257,297,71,34,8,26,16,16,16,0,55,,,,,,,14 +6258,297,81,18,24,25,17,17,17,0,53,,,,,,,5 +6259,297,102,1,1,3,,R,18,0,52,,,,,,,7 +6260,297,110,25,4,18,,R,19,0,46,,,,,,,20 +6261,297,55,6,27,8,,R,20,0,43,,,,,,,26 +6262,297,131,17,32,23,,R,21,0,43,,,,,,,5 +6263,297,127,17,33,24,,R,22,0,37,,,,,,,5 +6264,297,92,33,29,11,,R,23,0,32,,,,,,,36 +6265,297,65,32,12,7,,R,24,0,31,,,,,,,7 +6266,297,91,37,16,21,,R,25,0,27,,,,,,,6 +6267,297,79,33,30,16,,R,26,0,27,,,,,,,7 +6268,297,70,18,23,0,,F,27,0,0,,,,,,,81 +6269,297,108,37,17,0,,F,28,0,0,,,,,,,81 +6270,297,130,36,14,0,,F,29,0,0,,,,,,,81 +6271,297,128,34,7,0,,W,30,0,0,,,,,,,54 +6272,297,90,38,34,0,,F,31,0,0,,,,,,,97 +6273,297,135,38,35,0,,F,32,0,0,,,,,,,97 +6274,298,95,3,5,1,1,1,1,10,45,18:22.0,4702032,,,,,1 +6275,298,102,1,1,3,2,2,2,6,45,4.5,4706532,,,,,1 +6276,298,30,22,19,6,3,3,3,4,45,34.462,4736494,,,,,1 +6277,298,84,22,20,9,4,4,4,3,45,36.959,4738991,,,,,1 +6278,298,55,6,27,5,5,5,5,2,45,+1:12.607,4774639,,,,,1 +6279,298,100,27,26,7,6,6,6,1,45,+1:36.498,4798530,,,,,1 +6280,298,123,27,25,8,7,7,7,0,45,+1:37.180,4799212,,,,,1 +6281,298,119,3,6,2,8,8,8,0,44,,,,,,,20 +6282,298,105,29,9,17,9,9,9,0,44,,,,,,,11 +6283,298,109,35,21,21,10,10,10,0,44,,,,,,,11 +6284,298,94,35,22,18,11,11,11,0,44,,,,,,,11 +6285,298,81,18,24,26,12,12,12,0,44,,,,,,,11 +6286,298,108,37,17,22,13,13,13,0,44,,,,,,,11 +6287,298,92,33,29,25,14,14,14,0,44,,,,,,,11 +6288,298,127,17,33,23,15,15,15,0,43,,,,,,,12 +6289,298,91,37,16,10,16,16,16,0,42,,,,,,,13 +6290,298,99,36,15,19,,R,17,0,33,,,,,,,5 +6291,298,110,25,4,20,,R,18,0,25,,,,,,,5 +6292,298,65,32,12,11,,R,19,0,23,,,,,,,5 +6293,298,122,6,28,12,,R,20,0,21,,,,,,,5 +6294,298,57,32,11,13,,R,21,0,21,,,,,,,5 +6295,298,77,1,2,4,,R,22,0,16,,,,,,,10 +6296,298,129,25,3,14,,R,23,0,8,,,,,,,5 +6297,298,79,33,30,16,,R,24,0,8,,,,,,,20 +6298,298,88,29,10,15,,R,25,0,1,,,,,,,20 +6299,298,70,18,23,24,,R,26,0,1,,,,,,,6 +6300,298,131,17,32,0,,F,27,0,0,,,,,,,81 +6301,298,128,34,7,0,,F,28,0,0,,,,,,,81 +6302,298,130,36,14,0,,F,29,0,0,,,,,,,81 +6303,298,71,34,8,0,,F,30,0,0,,,,,,,81 +6304,298,90,38,34,0,,F,31,0,0,,,,,,,97 +6305,298,135,38,35,0,,E,32,0,0,,,,,,,96 +6306,299,102,1,1,3,1,1,1,10,77,46:19.2,6379216,,,,,1 +6307,299,95,3,5,2,2,2,2,6,77,40.139,6419355,,,,,1 +6308,299,77,1,2,5,3,3,3,4,77,50.782,6429998,,,,,1 +6309,299,57,32,11,16,4,4,4,3,77,54.313,6433529,,,,,1 +6310,299,84,22,20,6,5,5,5,2,77,57.498,6436714,,,,,1 +6311,299,122,6,28,10,6,6,6,1,76,,,,,,,11 +6312,299,105,29,9,7,7,7,7,0,75,,,,,,,12 +6313,299,110,25,4,19,8,8,8,0,75,,,,,,,12 +6314,299,108,37,17,17,9,9,9,0,74,,,,,,,13 +6315,299,127,17,33,21,10,10,10,0,73,,,,,,,14 +6316,299,71,34,8,25,11,11,11,0,73,,,,,,,14 +6317,299,30,22,19,4,,R,12,0,63,,,,,,,41 +6318,299,119,3,6,1,,R,13,0,55,,,,,,,5 +6319,299,94,35,22,26,,R,14,0,40,,,,,,,6 +6320,299,79,33,30,20,,R,15,0,35,,,,,,,5 +6321,299,55,6,27,9,,R,16,0,14,,,,,,,20 +6322,299,92,33,29,15,,R,17,0,13,,,,,,,4 +6323,299,88,29,10,14,,R,18,0,13,,,,,,,4 +6324,299,129,25,3,22,,R,19,0,13,,,,,,,4 +6325,299,91,37,16,23,,R,20,0,13,,,,,,,4 +6326,299,131,17,32,24,,R,21,0,13,,,,,,,4 +6327,299,128,36,14,18,,R,22,0,2,,,,,,,20 +6328,299,123,27,25,8,,R,23,0,0,,,,,,,4 +6329,299,100,27,26,11,,R,24,0,0,,,,,,,4 +6330,299,99,36,15,12,,R,25,0,0,,,,,,,4 +6331,299,65,32,12,13,,R,26,0,0,,,,,,,4 +6332,299,81,18,24,0,,F,27,0,0,,,,,,,81 +6333,299,109,35,21,0,,F,28,0,0,,,,,,,81 +6334,299,70,18,23,0,,F,29,0,0,,,,,,,81 +6335,299,90,38,34,0,,F,30,0,0,,,,,,,81 +6336,299,135,38,35,0,,F,31,0,0,,,,,,,97 +6337,300,30,22,19,3,1,1,1,10,44,36:10.7,5770721,,,,,1 +6338,300,95,3,5,1,2,2,2,6,44,36.595,5807316,,,,,1 +6339,300,119,3,6,4,3,3,3,4,44,43.897,5814618,,,,,1 +6340,300,84,22,20,9,4,4,4,3,44,46.059,5816780,,,,,1 +6341,300,102,1,1,2,5,5,5,2,44,+1:08.369,5839090,,,,,1 +6342,300,57,32,11,8,6,6,6,1,44,+1:10.030,5840751,,,,,1 +6343,300,109,35,21,16,7,7,7,0,44,+1:38.237,5868958,,,,,1 +6344,300,110,25,4,13,8,8,8,0,43,,,,,,,11 +6345,300,88,29,10,25,9,9,9,0,43,,,,,,,11 +6346,300,128,36,14,15,10,10,10,0,43,,,,,,,11 +6347,300,91,37,16,18,11,11,11,0,43,,,,,,,11 +6348,300,125,37,17,21,12,12,12,0,43,,,,,,,11 +6349,300,65,32,12,10,13,13,13,0,43,,,,,,,5 +6350,300,127,17,33,24,14,14,14,0,42,,,,,,,12 +6351,300,131,17,32,17,15,15,15,0,42,,,,,,,12 +6352,300,81,18,24,23,16,16,16,0,42,,,,,,,12 +6353,300,79,33,30,26,17,17,17,0,42,,,,,,,12 +6354,300,92,33,29,20,18,18,18,0,40,,,,,,,20 +6355,300,123,27,25,7,,R,19,0,27,,,,,,,20 +6356,300,122,6,28,12,,R,20,0,25,,,,,,,5 +6357,300,99,36,15,11,,R,21,0,25,,,,,,,5 +6358,300,105,29,9,14,,R,22,0,20,,,,,,,6 +6359,300,55,6,27,5,,R,23,0,7,,,,,,,29 +6360,300,129,25,3,22,,R,24,0,1,,,,,,,3 +6361,300,77,1,2,6,,R,25,0,0,,,,,,,7 +6362,300,94,35,22,19,,R,26,0,0,,,,,,,20 +6363,300,104,18,23,0,,F,27,0,0,,,,,,,81 +6364,300,90,38,34,0,,F,28,0,0,,,,,,,81 +6365,300,135,38,35,0,,F,29,0,0,,,,,,,81 +6366,300,100,27,26,0,,W,30,0,0,,,,,,,54 +6367,301,102,1,1,2,1,1,1,10,53,18:15.3,4695349,,,,,1 +6368,301,84,22,20,9,2,2,2,6,53,17.05,4712399,,,,,1 +6369,301,30,22,19,6,3,3,3,4,53,24.373,4719722,,,,,1 +6370,301,77,1,2,5,4,4,4,3,53,+1:25.490,4780839,,,,,1 +6371,301,119,3,6,4,5,5,5,2,53,+1:33.158,4788507,,,,,1 +6372,301,110,25,4,21,6,6,6,1,52,,,,,,,11 +6373,301,105,29,9,16,7,7,7,0,52,,,,,,,11 +6374,301,94,35,22,22,8,8,8,0,52,,,,,,,11 +6375,301,79,33,30,23,9,9,9,0,50,,,,,,,7 +6376,301,91,37,16,17,10,10,10,0,50,,,,,,,13 +6377,301,109,35,21,14,11,11,11,0,47,,,,,,,5 +6378,301,127,17,33,26,,R,12,0,46,,,,,,,7 +6379,301,95,3,5,1,,R,13,0,41,,,,,,,10 +6380,301,123,27,25,8,,R,14,0,41,,,,,,,37 +6381,301,100,27,26,15,,R,15,0,35,,,,,,,20 +6382,301,99,36,15,20,,R,16,0,30,,,,,,,6 +6383,301,129,25,3,18,,R,17,0,26,,,,,,,5 +6384,301,65,32,12,13,,R,18,0,18,,,,,,,5 +6385,301,125,37,17,24,,R,19,0,17,,,,,,,5 +6386,301,55,6,27,3,,R,20,0,12,,,,,,,69 +6387,301,122,6,28,7,,R,21,0,12,,,,,,,10 +6388,301,81,18,24,12,,R,22,0,12,,,,,,,5 +6389,301,92,33,29,10,,R,23,0,11,,,,,,,5 +6390,301,57,32,11,11,,R,24,0,5,,,,,,,5 +6391,301,88,29,10,19,,R,25,0,2,,,,,,,22 +6392,301,128,36,14,25,,R,26,0,0,,,,,,,8 +6393,301,104,18,23,0,,F,27,0,0,,,,,,,81 +6394,301,131,17,32,0,,F,28,0,0,,,,,,,81 +6395,302,95,3,5,1,1,1,1,10,71,34:46.7,5686659,,,,,1 +6396,302,77,1,2,4,2,2,2,6,71,37.533,5724192,,,,,1 +6397,302,102,1,1,3,3,3,3,4,70,,,,,,,11 +6398,302,84,22,20,6,4,4,4,3,70,,,,,,,11 +6399,302,57,32,11,7,5,5,5,2,70,,,,,,,11 +6400,302,105,29,9,8,6,6,6,1,70,,,,,,,11 +6401,302,30,22,19,5,7,7,7,0,69,,,,,,,12 +6402,302,123,27,25,11,8,8,8,0,69,,,,,,,12 +6403,302,110,25,4,12,9,9,9,0,69,,,,,,,12 +6404,302,88,29,10,17,10,10,10,0,68,,,,,,,13 +6405,302,125,37,17,23,11,11,11,0,68,,,,,,,13 +6406,302,104,18,23,26,12,12,12,0,68,,,,,,,13 +6407,302,131,17,32,24,13,13,13,0,68,,,,,,,13 +6408,302,81,18,24,18,14,14,14,0,68,,,,,,,13 +6409,302,109,35,21,19,,R,15,0,51,,,,,,,68 +6410,302,91,37,16,22,,R,16,0,48,,,,,,,6 +6411,302,100,27,26,14,,R,17,0,47,,,,,,,5 +6412,302,79,33,30,25,,R,18,0,46,,,,,,,20 +6413,302,119,3,6,2,,R,19,0,43,,,,,,,4 +6414,302,94,35,22,21,,R,20,0,43,,,,,,,29 +6415,302,122,6,28,16,,R,21,0,34,,,,,,,5 +6416,302,129,25,3,15,,R,22,0,27,,,,,,,6 +6417,302,92,33,29,13,,R,23,0,25,,,,,,,5 +6418,302,127,17,33,20,,R,24,0,19,,,,,,,10 +6419,302,55,6,27,10,,R,25,0,12,,,,,,,20 +6420,302,65,32,12,9,,R,26,0,2,,,,,,,3 +6421,303,119,3,6,2,1,1,1,10,53,33:09.5,5589533,,,,,1 +6422,303,77,1,2,4,2,2,2,6,53,13.729,5603262,,,,,1 +6423,303,84,22,20,13,3,3,3,4,53,+1:15.503,5665036,,,,,1 +6424,303,110,25,4,9,4,4,4,3,52,,,,,,,11 +6425,303,55,6,27,15,5,5,5,2,52,,,,,,,11 +6426,303,104,18,23,12,6,6,6,1,52,,,,,,,11 +6427,303,131,17,32,17,7,7,7,0,52,,,,,,,11 +6428,303,88,29,10,16,8,8,8,0,52,,,,,,,11 +6429,303,109,35,21,22,9,9,9,0,52,,,,,,,11 +6430,303,94,35,22,19,10,10,10,0,52,,,,,,,11 +6431,303,79,33,30,20,11,11,11,0,52,,,,,,,11 +6432,303,78,6,28,11,12,12,12,0,52,,,,,,,11 +6433,303,125,37,17,26,13,13,13,0,51,,,,,,,12 +6434,303,81,18,24,14,14,14,14,0,51,,,,,,,12 +6435,303,105,29,9,24,15,15,15,0,51,,,,,,,12 +6436,303,95,3,5,1,,R,16,0,44,,,,,,,5 +6437,303,57,32,11,7,,R,17,0,44,,,,,,,5 +6438,303,92,33,29,18,,R,18,0,39,,,,,,,4 +6439,303,100,27,26,8,,R,19,0,36,,,,,,,5 +6440,303,136,37,16,23,,R,20,0,27,,,,,,,8 +6441,303,127,17,33,25,,R,21,0,22,,,,,,,20 +6442,303,65,32,12,6,,R,22,0,15,,,,,,,6 +6443,303,30,22,19,5,,R,23,0,13,,,,,,,6 +6444,303,129,25,3,21,,R,24,0,6,,,,,,,20 +6445,303,123,27,25,10,,R,25,0,3,,,,,,,6 +6446,303,102,1,1,3,,R,26,0,2,,,,,,,5 +6447,304,77,1,2,4,1,1,1,10,81,46:54.8,6414786,,,,,1 +6448,304,30,22,19,5,2,2,2,6,81,0.741,6415527,,,,,1 +6449,304,84,22,20,8,3,3,3,4,81,54.156,6468942,,,,,1 +6450,304,55,6,27,6,4,4,4,3,80,,,,,,,11 +6451,304,123,27,25,22,5,5,5,2,80,,,,,,,11 +6452,304,131,17,32,15,6,6,6,1,80,,,,,,,11 +6453,304,57,32,11,10,7,7,7,0,80,,,,,,,11 +6454,304,88,29,10,18,8,8,8,0,79,,,,,,,12 +6455,304,104,18,23,17,9,9,9,0,79,,,,,,,12 +6456,304,81,18,24,16,10,10,10,0,79,,,,,,,12 +6457,304,78,6,28,19,11,11,11,0,79,,,,,,,12 +6458,304,136,37,16,25,12,12,12,0,78,,,,,,,13 +6459,304,65,32,12,12,13,13,13,0,77,,,,,,,14 +6460,304,109,35,21,24,,R,14,0,70,,,,,,,6 +6461,304,125,37,17,23,,R,15,0,55,,,,,,,6 +6462,304,92,33,29,21,,R,16,0,51,,,,,,,69 +6463,304,119,3,6,3,,R,17,0,50,,,,,,,5 +6464,304,79,33,30,26,,R,18,0,35,,,,,,,24 +6465,304,110,25,4,7,,R,19,0,29,,,,,,,5 +6466,304,95,3,5,1,,R,20,0,18,,,,,,,4 +6467,304,102,1,1,2,,R,21,0,18,,,,,,,4 +6468,304,127,17,33,20,,R,22,0,7,,,,,,,20 +6469,304,100,27,26,9,,R,23,0,4,,,,,,,5 +6470,304,105,29,9,11,,R,24,0,0,,,,,,,5 +6471,304,94,35,22,14,,R,25,0,0,,,,,,,3 +6472,304,129,25,3,13,,R,26,0,0,,,,,,,3 +6473,305,102,1,1,1,1,1,1,10,81,00:47.8,7247828,,,,,1 +6474,305,117,6,27,2,2,2,2,6,81,16.322,7264150,,,,,1 +6475,305,137,22,20,5,3,3,3,4,81,+1:17.376,7325204,,,,,1 +6476,305,131,25,4,11,4,4,4,3,81,+1:25.409,7333237,,,,,1 +6477,305,138,25,3,16,5,5,5,2,80,,,,,,,11 +6478,305,88,33,30,21,6,6,6,1,79,,,,,,,12 +6479,305,78,40,34,17,7,7,7,0,78,,,,,,,13 +6480,305,99,39,17,22,8,8,8,0,77,,,,,,,14 +6481,305,94,18,23,15,9,9,9,0,75,,,,,,,5 +6482,305,92,17,32,14,10,10,10,0,75,,,,,,,5 +6483,305,84,34,7,12,11,11,11,0,73,,,,,,,18 +6484,305,55,6,28,6,12,12,12,0,72,,,,,,,6 +6485,305,57,32,11,13,13,13,13,0,59,,,,,,,5 +6486,305,119,3,6,3,,R,14,0,49,,,,,,,6 +6487,305,90,22,19,8,,R,15,0,49,,,,,,,4 +6488,305,105,29,9,25,,R,16,0,41,,,,,,,5 +6489,305,122,41,16,18,,R,17,0,40,,,,,,,6 +6490,305,123,27,25,20,,R,18,0,40,,,,,,,5 +6491,305,77,1,2,7,,R,19,0,36,,,,,,,48 +6492,305,95,3,5,4,,R,20,0,35,,,,,,,6 +6493,305,127,41,15,23,,R,21,0,34,,,,,,,6 +6494,305,87,34,8,24,,R,22,0,32,,,,,,,20 +6495,305,139,35,21,9,,R,23,0,16,,,,,,,6 +6496,305,81,18,24,26,,R,24,0,15,,,,,,,6 +6497,305,109,35,22,10,,R,25,0,12,,,,,,,6 +6498,305,103,33,29,19,,R,26,0,4,,,,,,,5 +6499,305,133,29,10,0,,F,27,0,0,,,,,,,81 +6500,305,140,39,18,0,,F,28,0,0,,,,,,,81 +6501,305,100,27,26,0,,F,29,0,0,,,,,,,81 +6502,305,141,32,12,0,,F,30,0,0,,,,,,,81 +6503,305,110,17,33,0,,F,31,0,0,,,,,,,97 +6504,305,142,42,31,0,,F,32,0,0,,,,,,,97 +6505,305,129,36,14,0,,F,33,0,0,,,,,,,97 +6506,305,128,40,35,0,,F,34,0,0,,,,,,,97 +6507,306,102,1,1,1,1,1,1,10,71,38:28.1,5908128,,,,,1 +6508,306,119,3,6,2,2,2,2,6,71,2.991,5911119,,,,,1 +6509,306,77,1,2,4,3,3,3,4,71,5.416,5913544,,,,,1 +6510,306,117,6,27,6,4,4,4,3,71,18.369,5926497,,,,,1 +6511,306,137,22,20,7,5,5,5,2,71,21.96,5930088,,,,,1 +6512,306,55,6,28,5,6,6,6,1,71,23.641,5931769,,,,,1 +6513,306,90,22,19,14,7,7,7,0,70,,,,,,,11 +6514,306,81,18,24,21,8,8,8,0,69,,,,,,,12 +6515,306,57,32,11,22,9,9,9,0,68,,,,,,,13 +6516,306,123,27,25,18,10,10,10,0,68,,,,,,,13 +6517,306,139,35,21,12,11,11,11,0,68,,,,,,,13 +6518,306,84,34,7,26,12,12,12,0,67,,,,,,,14 +6519,306,92,17,32,10,13,13,13,0,63,,,,,,,69 +6520,306,95,3,5,3,,R,14,0,59,,,,,,,6 +6521,306,100,27,26,23,,R,15,0,50,,,,,,,5 +6522,306,94,18,23,20,,R,16,0,47,,,,,,,20 +6523,306,87,34,8,25,,R,17,0,34,,,,,,,5 +6524,306,103,33,29,11,,R,18,0,33,,,,,,,21 +6525,306,109,35,22,19,,R,19,0,22,,,,,,,10 +6526,306,110,17,33,13,,R,20,0,20,,,,,,,5 +6527,306,131,25,4,9,,R,21,0,19,,,,,,,6 +6528,306,122,41,16,15,,R,22,0,16,,,,,,,7 +6529,306,138,25,3,16,,R,23,0,12,,,,,,,20 +6530,306,127,41,15,8,,R,24,0,9,,,,,,,68 +6531,306,99,39,17,24,,R,25,0,0,,,,,,,22 +6532,306,88,33,30,17,,R,26,0,0,,,,,,,48 +6533,306,133,29,10,0,,F,27,0,0,,,,,,,81 +6534,306,140,39,18,0,,F,28,0,0,,,,,,,81 +6535,306,105,29,9,0,,F,29,0,0,,,,,,,81 +6536,306,141,32,12,0,,F,30,0,0,,,,,,,81 +6537,306,129,36,14,0,,F,31,0,0,,,,,,,97 +6538,306,128,40,35,0,,F,32,0,0,,,,,,,97 +6539,306,78,40,34,0,,F,33,0,0,,,,,,,97 +6540,306,142,42,31,0,,F,34,0,0,,,,,,,97 +6541,307,102,1,1,1,1,1,1,10,61,35:14.8,5714750,,,,,1 +6542,307,77,1,2,5,2,2,2,6,61,1.675,5716425,,,,,1 +6543,307,109,35,22,16,3,3,3,4,60,,,,,,,11 +6544,307,94,18,23,9,4,4,4,3,59,,,,,,,12 +6545,307,57,32,11,25,5,5,5,2,58,,,,,,,13 +6546,307,141,32,12,26,6,6,6,1,58,,,,,,,13 +6547,307,123,27,25,24,7,7,7,0,58,,,,,,,13 +6548,307,87,34,8,23,8,8,8,0,58,,,,,,,13 +6549,307,128,40,35,21,9,9,9,0,57,,,,,,,60 +6550,307,100,27,26,19,10,10,10,0,57,,,,,,,14 +6551,307,84,34,7,18,11,11,11,0,57,,,,,,,14 +6552,307,127,41,15,15,12,12,12,0,55,,,,,,,5 +6553,307,90,22,19,13,13,13,13,0,54,,,,,,,5 +6554,307,131,25,4,6,,R,14,0,41,,,,,,,7 +6555,307,110,17,33,11,,R,15,0,37,,,,,,,6 +6556,307,92,17,32,13,,R,16,0,37,,,,,,,22 +6557,307,122,41,16,22,,R,17,0,24,,,,,,,20 +6558,307,103,26,29,17,,R,18,0,17,,,,,,,5 +6559,307,119,3,6,2,,R,19,0,17,,,,,,,10 +6560,307,138,25,3,10,,R,20,0,15,,,,,,,7 +6561,307,81,18,24,8,,R,21,0,10,,,,,,,6 +6562,307,55,6,28,7,,R,22,0,2,,,,,,,20 +6563,307,88,26,30,20,,R,23,0,2,,,,,,,20 +6564,307,137,22,20,14,,R,24,0,1,,,,,,,20 +6565,307,95,3,5,4,,R,25,0,0,,,,,,,4 +6566,307,117,6,27,3,,W,26,0,0,,,,,,,20 +6567,307,99,39,17,0,,F,27,0,0,,,,,,,81 +6568,307,120,39,18,0,,F,28,0,0,,,,,,,81 +6569,307,133,29,10,0,,F,29,0,0,,,,,,,81 +6570,307,105,29,9,0,,F,30,0,0,,,,,,,81 +6571,307,139,35,21,0,,F,31,0,0,,,,,,,97 +6572,307,129,36,14,0,,F,32,0,0,,,,,,,97 +6573,307,78,40,34,0,,F,33,0,0,,,,,,,97 +6574,307,142,42,31,0,,F,34,0,0,,,,,,,97 +6575,308,102,1,1,1,1,1,1,10,78,53:02.3,6782334,,,,,1 +6576,308,95,3,5,5,2,2,2,6,78,18.348,6800682,,,,,1 +6577,308,55,6,28,9,3,3,3,4,78,47.455,6829789,,,,,1 +6578,308,90,22,19,8,4,4,4,3,77,,,,,,,11 +6579,308,117,6,27,7,5,5,5,2,77,,,,,,,11 +6580,308,139,35,21,12,6,6,6,1,77,,,,,,,11 +6581,308,123,27,25,16,7,7,7,0,76,,,,,,,12 +6582,308,92,17,32,23,8,8,8,0,76,,,,,,,12 +6583,308,103,26,29,13,9,9,9,0,76,,,,,,,12 +6584,308,100,27,26,26,10,10,10,0,76,,,,,,,12 +6585,308,109,35,22,21,11,11,11,0,75,,,,,,,13 +6586,308,94,18,23,14,12,12,12,0,72,,,,,,,16 +6587,308,57,32,11,25,,R,13,0,64,,,,,,,44 +6588,308,81,18,24,17,,R,14,0,49,,,,,,,6 +6589,308,127,41,15,15,,R,15,0,43,,,,,,,37 +6590,308,131,25,4,2,,R,16,0,42,,,,,,,5 +6591,308,119,3,6,3,,R,17,0,42,,,,,,,20 +6592,308,87,34,8,19,,R,18,0,41,,,,,,,20 +6593,308,105,29,9,22,,R,19,0,39,,,,,,,5 +6594,308,138,25,3,11,,R,20,0,35,,,,,,,20 +6595,308,88,26,30,20,,R,21,0,24,,,,,,,5 +6596,308,110,17,33,10,,R,22,0,21,,,,,,,37 +6597,308,122,41,16,18,,R,23,0,12,,,,,,,23 +6598,308,99,39,17,24,,R,24,0,9,,,,,,,6 +6599,308,77,1,2,6,,R,25,0,9,,,,,,,20 +6600,308,137,22,20,4,,R,26,0,0,,,,,,,22 +6601,308,141,32,12,0,,F,27,0,0,,,,,,,81 +6602,308,120,39,18,0,,F,28,0,0,,,,,,,81 +6603,308,133,29,10,0,,F,29,0,0,,,,,,,81 +6604,308,84,34,7,0,,F,30,0,0,,,,,,,81 +6605,308,78,40,34,0,,F,31,0,0,,,,,,,97 +6606,308,128,40,35,0,,F,32,0,0,,,,,,,97 +6607,308,142,42,31,0,,F,33,0,0,,,,,,,97 +6608,308,129,36,14,0,,F,34,0,0,,,,,,,97 +6609,309,137,22,20,8,1,1,1,10,69,38:51.5,5931490,,,,,1 +6610,309,131,25,4,9,2,2,2,6,69,31.832,5963322,,,,,1 +6611,309,119,3,6,1,3,3,3,4,69,42.217,5973707,,,,,1 +6612,309,110,17,33,11,4,4,4,3,69,+1:20.210,6011700,,,,,1 +6613,309,92,17,32,14,5,5,5,2,69,+1:22.351,6013841,,,,,1 +6614,309,95,3,5,2,6,6,6,1,68,,,,,,,10 +6615,309,94,18,23,18,7,7,7,0,68,,,,,,,11 +6616,309,100,27,26,26,8,8,8,0,68,,,,,,,11 +6617,309,139,35,21,10,9,9,9,0,68,,,,,,,11 +6618,309,138,25,3,12,10,10,10,0,67,,,,,,,12 +6619,309,127,41,15,23,,R,11,0,61,,,,,,,5 +6620,309,109,35,22,17,,R,12,0,50,,,,,,,5 +6621,309,140,29,10,25,,R,13,0,48,,,,,,,37 +6622,309,122,41,16,13,,R,14,0,42,,,,,,,5 +6623,309,55,6,28,7,,R,15,0,34,,,,,,,5 +6624,309,103,26,29,19,,R,16,0,29,,,,,,,6 +6625,309,117,6,27,4,,R,17,0,27,,,,,,,6 +6626,309,123,27,25,16,,R,18,0,27,,,,,,,5 +6627,309,102,1,1,3,,R,19,0,25,,,,,,,91 +6628,309,57,32,11,24,,R,20,0,21,,,,,,,20 +6629,309,84,34,7,20,,R,21,0,21,,,,,,,5 +6630,309,81,18,24,15,,R,22,0,20,,,,,,,20 +6631,309,90,22,19,5,,R,23,0,10,,,,,,,22 +6632,309,77,1,2,6,,R,24,0,4,,,,,,,98 +6633,309,88,26,30,22,,R,25,0,3,,,,,,,95 +6634,309,105,29,9,21,,R,26,0,2,,,,,,,37 +6635,309,120,39,18,0,,F,27,0,0,,,,,,,81 +6636,309,99,39,17,0,,F,28,0,0,,,,,,,81 +6637,309,87,34,8,0,,F,29,0,0,,,,,,,81 +6638,309,65,32,12,0,,F,30,0,0,,,,,,,81 +6639,309,129,36,14,0,,F,31,0,0,,,,,,,97 +6640,309,78,40,34,0,,F,32,0,0,,,,,,,97 +6641,309,128,40,35,0,,F,33,0,0,,,,,,,97 +6642,309,142,42,31,0,,F,34,0,0,,,,,,,97 +6643,310,119,3,6,1,1,1,1,10,67,29:52.2,5392205,,,,,1 +6644,310,95,3,5,2,2,2,2,6,67,1.336,5393541,,,,,1 +6645,310,102,1,1,3,3,3,3,4,67,57.356,5449561,,,,,1 +6646,310,110,17,33,11,4,4,4,3,66,,,,,,,11 +6647,310,90,22,19,9,5,5,5,2,66,,,,,,,11 +6648,310,103,26,29,23,6,6,6,1,66,,,,,,,11 +6649,310,81,18,24,14,7,7,7,0,66,,,,,,,11 +6650,310,123,27,25,10,8,8,8,0,65,,,,,,,12 +6651,310,57,32,11,24,9,9,9,0,65,,,,,,,12 +6652,310,65,32,12,25,10,10,10,0,65,,,,,,,12 +6653,310,131,25,4,8,11,11,11,0,65,,,,,,,12 +6654,310,138,25,3,13,12,12,12,0,64,,,,,,,13 +6655,310,87,34,8,12,,R,13,0,54,,,,,,,5 +6656,310,92,17,32,20,,R,14,0,51,,,,,,,20 +6657,310,88,26,30,19,,R,15,0,48,,,,,,,6 +6658,310,137,22,20,6,,R,16,0,44,,,,,,,67 +6659,310,55,6,28,4,,R,17,0,42,,,,,,,8 +6660,310,109,35,22,16,,R,18,0,30,,,,,,,5 +6661,310,105,29,9,26,,R,19,0,24,,,,,,,5 +6662,310,84,34,7,17,,R,20,0,20,,,,,,,36 +6663,310,122,41,16,22,,R,21,0,19,,,,,,,5 +6664,310,117,6,27,7,,R,22,0,16,,,,,,,91 +6665,310,127,41,15,18,,R,23,0,15,,,,,,,5 +6666,310,129,36,14,21,,R,24,0,13,,,,,,,5 +6667,310,77,1,2,5,,R,25,0,5,,,,,,,5 +6668,310,94,18,23,15,,R,26,0,4,,,,,,,20 +6669,310,100,27,26,0,,F,27,0,0,,,,,,,81 +6670,310,99,39,17,0,,F,28,0,0,,,,,,,81 +6671,310,140,29,10,0,,F,29,0,0,,,,,,,81 +6672,310,120,39,18,0,,F,30,0,0,,,,,,,81 +6673,310,78,40,34,0,,F,31,0,0,,,,,,,97 +6674,310,128,40,35,0,,F,32,0,0,,,,,,,97 +6675,310,142,42,31,0,,F,33,0,0,,,,,,,97 +6676,310,139,35,21,0,,F,34,0,0,,,,,,,97 +6677,311,95,3,5,4,1,1,1,10,72,38:00.1,5880056,,,,,1 +6678,311,117,6,27,2,2,2,2,6,72,5.003,5885059,,,,,1 +6679,311,102,1,1,3,3,3,3,4,72,34.934,5914990,,,,,1 +6680,311,55,6,28,6,4,4,4,3,72,35.92,5915976,,,,,1 +6681,311,119,3,6,1,5,5,5,2,71,,,,,,,11 +6682,311,110,17,33,13,6,6,6,1,71,,,,,,,11 +6683,311,127,41,15,9,7,7,7,0,70,,,,,,,12 +6684,311,137,22,20,7,8,8,8,0,70,,,,,,,12 +6685,311,94,18,23,12,9,9,9,0,70,,,,,,,12 +6686,311,65,32,12,20,10,10,10,0,70,,,,,,,12 +6687,311,100,27,26,14,11,11,11,0,70,,,,,,,12 +6688,311,123,27,25,16,12,12,12,0,69,,,,,,,13 +6689,311,90,22,19,8,,R,13,0,63,,,,,,,68 +6690,311,131,25,4,11,,R,14,0,57,,,,,,,6 +6691,311,129,36,14,21,,R,15,0,47,,,,,,,44 +6692,311,103,26,29,23,,R,16,0,43,,,,,,,7 +6693,311,109,35,22,26,,R,17,0,39,,,,,,,27 +6694,311,87,34,8,17,,R,18,0,36,,,,,,,20 +6695,311,88,26,30,22,,R,19,0,32,,,,,,,7 +6696,311,105,29,9,25,,R,20,0,31,,,,,,,6 +6697,311,84,34,7,24,,R,21,0,21,,,,,,,6 +6698,311,138,25,3,18,,R,22,0,12,,,,,,,20 +6699,311,81,18,24,10,,R,23,0,8,,,,,,,4 +6700,311,122,41,16,15,,R,24,0,7,,,,,,,20 +6701,311,77,1,2,5,,R,25,0,6,,,,,,,5 +6702,311,92,17,32,19,,R,26,0,0,,,,,,,20 +6703,311,57,32,11,0,,F,27,0,0,,,,,,,81 +6704,311,120,39,18,0,,F,28,0,0,,,,,,,81 +6705,311,99,39,17,0,,F,29,0,0,,,,,,,81 +6706,311,140,29,10,0,,F,30,0,0,,,,,,,81 +6707,311,139,35,21,0,,F,31,0,0,,,,,,,97 +6708,311,78,40,34,0,,F,32,0,0,,,,,,,97 +6709,311,128,40,35,0,,F,33,0,0,,,,,,,97 +6710,311,142,42,31,0,,F,34,0,0,,,,,,,97 +6711,312,95,3,5,1,1,1,1,10,59,27:35.5,5255479,,,,,1 +6712,312,77,1,2,4,2,2,2,6,59,42.293,5297772,,,,,1 +6713,312,117,6,27,5,3,3,3,4,59,+1:00.150,5315629,,,,,1 +6714,312,102,1,1,2,4,4,4,3,58,,,,,,,60 +6715,312,137,22,20,8,5,5,5,2,58,,,,,,,11 +6716,312,92,17,32,17,6,6,6,1,58,,,,,,,11 +6717,312,131,25,4,10,7,7,7,0,58,,,,,,,11 +6718,312,138,25,3,15,8,8,8,0,58,,,,,,,11 +6719,312,94,18,23,23,9,9,9,0,58,,,,,,,11 +6720,312,139,35,21,18,10,10,10,0,57,,,,,,,12 +6721,312,81,18,24,20,11,11,11,0,57,,,,,,,12 +6722,312,57,32,11,25,12,12,12,0,57,,,,,,,12 +6723,312,109,35,22,11,13,13,13,0,56,,,,,,,13 +6724,312,65,32,12,24,14,14,14,0,55,,,,,,,51 +6725,312,87,34,8,12,,R,15,0,52,,,,,,,5 +6726,312,110,17,33,13,,R,16,0,41,,,,,,,20 +6727,312,55,6,28,6,,R,17,0,31,,,,,,,4 +6728,312,88,26,30,22,,R,18,0,29,,,,,,,4 +6729,312,123,27,25,19,,R,19,0,29,,,,,,,5 +6730,312,84,34,7,14,,R,20,0,28,,,,,,,37 +6731,312,105,29,9,26,,R,21,0,25,,,,,,,7 +6732,312,127,41,15,9,,R,22,0,24,,,,,,,83 +6733,312,90,22,19,7,,R,23,0,21,,,,,,,6 +6734,312,103,26,29,21,,R,24,0,21,,,,,,,7 +6735,312,122,41,16,16,,R,25,0,16,,,,,,,20 +6736,312,119,3,6,3,,R,26,0,1,,,,,,,4 +6737,312,100,27,26,0,,F,27,0,0,,,,,,,81 +6738,312,140,29,10,0,,F,28,0,0,,,,,,,81 +6739,312,120,39,18,0,,F,29,0,0,,,,,,,81 +6740,312,99,39,17,0,,F,30,0,0,,,,,,,81 +6741,312,129,36,14,0,,F,31,0,0,,,,,,,97 +6742,312,78,40,34,0,,F,32,0,0,,,,,,,97 +6743,312,128,40,35,0,,F,33,0,0,,,,,,,97 +6744,312,142,42,31,0,,F,34,0,0,,,,,,,97 +6745,313,95,3,5,1,1,1,1,10,45,19:29.7,4769661,,,,,1 +6746,313,119,3,6,4,2,2,2,6,45,13.779,4783440,,,,,1 +6747,313,55,6,28,6,3,3,3,4,45,17.618,4787279,,,,,1 +6748,313,77,1,2,3,4,4,4,3,45,32.651,4802312,,,,,1 +6749,313,110,17,33,7,5,5,5,2,45,+1:17.537,4847198,,,,,1 +6750,313,92,17,32,11,6,6,6,1,45,+1:40.605,4870266,,,,,1 +6751,313,102,1,1,2,7,7,7,0,44,,,,,,,60 +6752,313,90,22,19,9,8,8,8,0,44,,,,,,,11 +6753,313,123,27,25,17,9,9,9,0,44,,,,,,,11 +6754,313,139,35,21,18,10,10,10,0,44,,,,,,,11 +6755,313,84,34,7,15,11,11,11,0,43,,,,,,,12 +6756,313,87,34,8,21,12,12,12,0,43,,,,,,,12 +6757,313,131,25,4,14,13,13,13,0,41,,,,,,,14 +6758,313,117,6,27,5,,R,14,0,37,,,,,,,20 +6759,313,122,41,16,12,,R,15,0,36,,,,,,,5 +6760,313,109,35,22,20,,R,16,0,35,,,,,,,5 +6761,313,137,22,20,8,,R,17,0,27,,,,,,,5 +6762,313,138,25,3,13,,R,18,0,26,,,,,,,6 +6763,313,100,27,26,26,,R,19,0,22,,,,,,,5 +6764,313,127,41,15,16,,R,20,0,21,,,,,,,6 +6765,313,57,32,11,23,,R,21,0,19,,,,,,,5 +6766,313,88,26,30,22,,R,22,0,15,,,,,,,5 +6767,313,81,18,24,19,,R,23,0,14,,,,,,,24 +6768,313,94,18,23,10,,R,24,0,11,,,,,,,24 +6769,313,103,26,29,25,,R,25,0,9,,,,,,,7 +6770,313,78,40,34,24,,R,26,0,0,,,,,,,20 +6771,313,105,29,9,0,,F,27,0,0,,,,,,,81 +6772,313,143,32,12,0,,F,28,0,0,,,,,,,81 +6773,313,99,39,17,0,,F,29,0,0,,,,,,,81 +6774,313,128,40,35,0,,F,30,0,0,,,,,,,81 +6775,313,129,36,14,0,,F,31,0,0,,,,,,,97 +6776,313,133,29,10,0,,F,32,0,0,,,,,,,97 +6777,313,120,39,18,0,,F,33,0,0,,,,,,,97 +6778,313,142,42,31,0,,F,34,0,0,,,,,,,97 +6779,314,102,1,1,1,1,1,1,10,77,49:12.8,6552796,,,,,1 +6780,314,95,3,5,3,2,2,2,6,77,4.599,6557395,,,,,1 +6781,314,119,3,6,2,3,3,3,4,77,15.594,6568390,,,,,1 +6782,314,77,1,2,5,4,4,4,3,77,21.856,6574652,,,,,1 +6783,314,55,6,28,6,5,5,5,2,77,31.389,6584185,,,,,1 +6784,314,122,41,16,9,6,6,6,1,76,,,,,,,11 +6785,314,110,17,33,17,7,7,7,0,76,,,,,,,11 +6786,314,90,22,19,15,8,8,8,0,76,,,,,,,11 +6787,314,92,17,32,16,9,9,9,0,76,,,,,,,11 +6788,314,100,27,26,25,10,10,10,0,75,,,,,,,12 +6789,314,127,41,15,13,11,11,11,0,75,,,,,,,12 +6790,314,131,25,4,8,12,12,12,0,75,,,,,,,12 +6791,314,81,18,24,23,13,13,13,0,75,,,,,,,12 +6792,314,57,32,11,26,14,14,14,0,74,,,,,,,13 +6793,314,138,25,3,14,15,15,15,0,74,,,,,,,13 +6794,314,78,40,34,24,16,16,16,0,74,,,,,,,13 +6795,314,123,27,25,19,17,17,17,0,71,,,,,,,5 +6796,314,94,18,23,18,,R,18,0,65,,,,,,,5 +6797,314,87,34,8,20,,R,19,0,62,,,,,,,27 +6798,314,84,34,7,10,,R,20,0,59,,,,,,,68 +6799,314,109,35,22,12,,R,21,0,49,,,,,,,5 +6800,314,137,22,20,11,,R,22,0,38,,,,,,,6 +6801,314,103,26,29,21,,R,23,0,38,,,,,,,5 +6802,314,88,26,30,22,,R,24,0,38,,,,,,,5 +6803,314,139,35,21,7,,R,25,0,37,,,,,,,5 +6804,314,117,6,27,4,,R,26,0,28,,,,,,,5 +6805,314,129,36,14,0,,F,27,0,0,,,,,,,81 +6806,314,105,29,9,0,,F,28,0,0,,,,,,,81 +6807,314,128,40,35,0,,F,29,0,0,,,,,,,81 +6808,314,143,32,12,0,,F,30,0,0,,,,,,,81 +6809,314,99,39,17,0,,F,31,0,0,,,,,,,97 +6810,314,133,29,10,0,,F,32,0,0,,,,,,,97 +6811,314,120,39,18,0,,F,33,0,0,,,,,,,97 +6812,314,142,42,31,0,,F,34,0,0,,,,,,,97 +6813,315,102,1,1,1,1,1,1,10,44,27:17.7,5237669,,,,,1 +6814,315,77,1,2,4,2,2,2,6,44,1.901,5239570,,,,,1 +6815,315,137,22,20,6,3,3,3,4,44,32.176,5269845,,,,,1 +6816,315,90,22,19,8,4,4,4,3,44,37.31,5274979,,,,,1 +6817,315,119,3,6,17,5,5,5,2,44,57.187,5294856,,,,,1 +6818,315,87,34,8,13,6,6,6,1,44,+1:40.035,5337704,,,,,1 +6819,315,65,32,12,21,7,7,7,0,44,+1:44.599,5342268,,,,,1 +6820,315,139,35,21,25,8,8,8,0,43,,,,,,,11 +6821,315,84,34,7,16,9,9,9,0,43,,,,,,,11 +6822,315,129,36,14,23,10,10,10,0,43,,,,,,,11 +6823,315,123,27,25,18,11,11,11,0,43,,,,,,,11 +6824,315,94,18,23,9,12,12,12,0,42,,,,,,,6 +6825,315,110,17,33,11,13,13,13,0,41,,,,,,,5 +6826,315,131,25,4,10,,R,14,0,33,,,,,,,44 +6827,315,109,35,22,14,,R,15,0,33,,,,,,,51 +6828,315,55,6,28,5,,R,16,0,30,,,,,,,5 +6829,315,81,18,24,19,,R,17,0,29,,,,,,,6 +6830,315,57,32,11,24,,R,18,0,25,,,,,,,5 +6831,315,100,27,26,26,,R,19,0,25,,,,,,,5 +6832,315,95,3,5,3,,R,20,0,22,,,,,,,10 +6833,315,103,26,29,20,,R,21,0,21,,,,,,,6 +6834,315,122,41,16,12,,R,22,0,13,,,,,,,5 +6835,315,138,25,3,22,,R,23,0,7,,,,,,,20 +6836,315,117,6,27,2,,R,24,0,2,,,,,,,95 +6837,315,127,41,15,15,,R,25,0,1,,,,,,,5 +6838,315,30,17,32,7,,R,26,0,0,,,,,,,8 +6839,315,88,26,30,0,,F,27,0,0,,,,,,,81 +6840,315,78,40,34,0,,F,28,0,0,,,,,,,81 +6841,315,133,29,10,0,,F,29,0,0,,,,,,,81 +6842,315,128,40,35,0,,F,30,0,0,,,,,,,81 +6843,315,105,29,9,0,,F,31,0,0,,,,,,,97 +6844,315,99,39,17,0,,F,32,0,0,,,,,,,97 +6845,315,142,42,31,0,,F,33,0,0,,,,,,,97 +6846,315,120,39,18,0,,F,34,0,0,,,,,,,97 +6847,316,95,3,5,2,1,1,1,10,53,17:54.3,4674319,,,,,1 +6848,316,102,1,1,1,2,2,2,6,53,16.262,4690581,,,,,1 +6849,316,117,6,27,5,3,3,3,4,53,16.829,4691148,,,,,1 +6850,316,77,1,2,3,4,4,4,3,53,27.719,4702038,,,,,1 +6851,316,30,22,19,7,5,5,5,2,53,34.463,4708782,,,,,1 +6852,316,137,22,20,8,6,6,6,1,53,45.6,4719919,,,,,1 +6853,316,110,17,33,14,7,7,7,0,53,51.136,4725455,,,,,1 +6854,316,122,41,16,12,8,8,8,0,53,+1:15.019,4749338,,,,,1 +6855,316,81,18,24,17,9,9,9,0,52,,,,,,,11 +6856,316,139,35,21,16,10,10,10,0,52,,,,,,,11 +6857,316,100,27,26,22,11,11,11,0,52,,,,,,,11 +6858,316,87,34,8,11,12,12,12,0,52,,,,,,,11 +6859,316,84,34,7,19,13,13,13,0,52,,,,,,,11 +6860,316,57,32,11,25,14,14,14,0,49,,,,,,,14 +6861,316,127,41,15,18,15,15,15,0,49,,,,,,,14 +6862,316,78,40,34,23,16,16,16,0,48,,,,,,,15 +6863,316,129,36,14,26,,R,17,0,46,,,,,,,5 +6864,316,109,35,22,20,,R,18,0,35,,,,,,,25 +6865,316,131,25,4,13,,R,19,0,32,,,,,,,5 +6866,316,55,6,28,6,,R,20,0,29,,,,,,,5 +6867,316,119,3,6,4,,R,21,0,27,,,,,,,6 +6868,316,138,25,3,15,,R,22,0,24,,,,,,,37 +6869,316,103,26,29,24,,R,23,0,21,,,,,,,5 +6870,316,94,18,23,10,,R,24,0,8,,,,,,,20 +6871,316,90,17,32,9,,R,25,0,2,,,,,,,20 +6872,316,123,27,25,21,,R,26,0,1,,,,,,,20 +6873,316,105,29,9,0,,F,27,0,0,,,,,,,81 +6874,316,143,32,12,0,,F,28,0,0,,,,,,,81 +6875,316,128,40,35,0,,F,29,0,0,,,,,,,81 +6876,316,88,26,30,0,,F,30,0,0,,,,,,,81 +6877,316,120,39,18,0,,F,31,0,0,,,,,,,97 +6878,316,99,39,17,0,,F,32,0,0,,,,,,,97 +6879,316,133,29,10,0,,F,33,0,0,,,,,,,97 +6880,316,142,42,31,0,,F,34,0,0,,,,,,,97 +6881,317,119,3,6,1,1,1,1,10,71,35:42.3,5742304,,,,,1 +6882,317,102,1,1,3,2,2,2,6,71,20.941,5763245,,,,,1 +6883,317,55,6,28,6,3,3,3,4,71,53.554,5795858,,,,,1 +6884,317,94,18,23,8,4,4,4,3,71,+1:03.498,5805802,,,,,1 +6885,317,137,22,20,11,5,5,5,2,71,+1:10.033,5812337,,,,,1 +6886,317,30,22,19,10,6,6,6,1,71,+1:16.582,5818886,,,,,1 +6887,317,127,41,15,7,7,7,7,0,70,,,,,,,11 +6888,317,110,17,33,14,8,8,8,0,70,,,,,,,11 +6889,317,81,18,24,13,9,9,9,0,70,,,,,,,11 +6890,317,90,17,32,21,10,10,10,0,70,,,,,,,11 +6891,317,100,27,26,23,11,11,11,0,70,,,,,,,11 +6892,317,84,34,7,19,12,12,12,0,69,,,,,,,12 +6893,317,138,25,3,17,13,13,13,0,68,,,,,,,13 +6894,317,57,32,11,24,14,14,14,0,68,,,,,,,13 +6895,317,105,29,9,22,15,15,15,0,68,,,,,,,13 +6896,317,123,27,25,20,16,16,16,0,68,,,,,,,13 +6897,317,122,41,16,9,17,17,17,0,64,,,,,,,20 +6898,317,131,25,4,12,,R,18,0,56,,,,,,,5 +6899,317,95,3,5,4,,D,19,0,51,,,,,,,2 +6900,317,88,26,30,25,,R,20,0,40,,,,,,,7 +6901,317,117,6,27,5,,R,21,0,39,,,,,,,5 +6902,317,77,1,2,2,,R,22,0,37,,,,,,,5 +6903,317,139,35,21,16,,R,23,0,18,,,,,,,5 +6904,317,109,35,22,18,,R,24,0,21,,,,,,,6 +6905,317,87,34,8,15,,R,25,0,12,,,,,,,22 +6906,317,65,32,12,26,,R,26,0,1,,,,,,,5 +6907,317,103,26,29,0,,F,27,0,0,,,,,,,81 +6908,317,99,39,17,0,,F,28,0,0,,,,,,,81 +6909,317,78,40,34,0,,F,29,0,0,,,,,,,81 +6910,317,128,40,35,0,,F,30,0,0,,,,,,,81 +6911,317,120,39,18,0,,F,31,0,0,,,,,,,97 +6912,317,129,36,14,0,,F,32,0,0,,,,,,,97 +6913,317,133,29,10,0,,F,33,0,0,,,,,,,97 +6914,317,142,42,31,0,,F,34,0,0,,,,,,,97 +6915,318,95,3,5,2,1,1,1,10,65,38:41.5,5921541,,,,,1 +6916,318,117,6,27,6,2,2,2,6,65,11.331,5932872,,,,,1 +6917,318,119,3,6,4,3,3,3,4,65,15.909,5937450,,,,,1 +6918,318,55,6,28,7,4,4,4,3,65,22.772,5944313,,,,,1 +6919,318,102,1,1,3,5,5,5,2,65,+1:02.402,5983943,,,,,1 +6920,318,30,22,19,5,6,6,6,1,65,+1:19.468,6001009,,,,,1 +6921,318,127,41,15,13,7,7,7,0,64,,,,,,,11 +6922,318,109,35,22,15,8,8,8,0,64,,,,,,,11 +6923,318,70,17,32,20,9,9,9,0,64,,,,,,,11 +6924,318,84,34,7,11,10,10,10,0,63,,,,,,,12 +6925,318,137,22,20,10,11,11,11,0,63,,,,,,,12 +6926,318,99,36,14,22,12,12,12,0,63,,,,,,,12 +6927,318,94,18,23,19,13,13,13,0,63,,,,,,,12 +6928,318,81,18,24,16,14,14,14,0,62,,,,,,,4 +6929,318,139,35,21,9,15,15,15,0,62,,,,,,,13 +6930,318,131,25,4,14,16,16,16,0,62,,,,,,,13 +6931,318,138,25,3,18,17,17,17,0,62,,,,,,,13 +6932,318,87,34,8,12,,R,18,0,49,,,,,,,5 +6933,318,100,27,26,25,,R,19,0,36,,,,,,,10 +6934,318,77,1,2,1,,R,20,0,33,,,,,,,10 +6935,318,105,29,9,24,,R,21,0,23,,,,,,,5 +6936,318,110,17,33,17,,R,22,0,22,,,,,,,10 +6937,318,57,32,11,21,,R,23,0,5,,,,,,,20 +6938,318,122,41,16,8,,R,24,0,1,,,,,,,4 +6939,318,103,26,29,23,,R,25,0,0,,,,,,,4 +6940,318,123,27,25,26,,R,26,0,0,,,,,,,4 +6941,318,88,26,30,0,,F,27,0,0,,,,,,,81 +6942,318,78,40,34,0,,F,28,0,0,,,,,,,81 +6943,318,143,32,12,0,,F,29,0,0,,,,,,,81 +6944,318,128,40,35,0,,F,30,0,0,,,,,,,81 +6945,318,133,29,10,0,,F,31,0,0,,,,,,,97 +6946,318,120,39,18,0,,F,32,0,0,,,,,,,97 +6947,318,129,39,17,0,,F,33,0,0,,,,,,,97 +6948,319,77,1,2,1,1,1,1,10,53,32:10.7,5530695,,,,,1 +6949,319,102,1,1,2,2,2,2,6,53,0.344,5531039,,,,,1 +6950,319,119,3,6,5,3,3,3,4,53,56.731,5587426,,,,,1 +6951,319,117,6,27,4,4,4,4,3,53,+1:20.761,5611456,,,,,1 +6952,319,84,34,7,19,5,5,5,2,52,,,,,,,11 +6953,319,131,25,4,14,6,6,6,1,52,,,,,,,11 +6954,319,137,22,20,10,7,7,7,0,52,,,,,,,11 +6955,319,127,41,15,18,8,8,8,0,52,,,,,,,11 +6956,319,123,27,25,17,9,9,9,0,52,,,,,,,11 +6957,319,133,29,10,26,10,10,10,0,51,,,,,,,12 +6958,319,99,36,14,24,11,11,11,0,50,,,,,,,13 +6959,319,100,27,26,20,,R,12,0,41,,,,,,,91 +6960,319,94,18,23,7,,R,13,0,39,,,,,,,10 +6961,319,30,22,19,9,,R,14,0,34,,,,,,,5 +6962,319,65,32,12,23,,R,15,0,31,,,,,,,5 +6963,319,138,25,3,15,,R,16,0,30,,,,,,,20 +6964,319,88,26,30,25,,R,17,0,26,,,,,,,5 +6965,319,81,18,24,8,,R,18,0,15,,,,,,,36 +6966,319,95,3,5,3,,R,19,0,9,,,,,,,20 +6967,319,70,17,32,13,,R,20,0,7,,,,,,,6 +6968,319,57,32,11,21,,R,21,0,4,,,,,,,5 +6969,319,110,17,33,11,,R,22,0,1,,,,,,,3 +6970,319,109,35,22,12,,R,23,0,1,,,,,,,3 +6971,319,139,35,21,16,,R,24,0,1,,,,,,,3 +6972,319,91,41,16,22,,R,25,0,1,,,,,,,3 +6973,319,55,6,28,6,,R,26,0,0,,,,,,,5 +6974,319,105,29,9,0,,F,27,0,0,,,,,,,81 +6975,319,78,40,34,0,,F,28,0,0,,,,,,,81 +6976,319,128,40,35,0,,F,29,0,0,,,,,,,81 +6977,319,103,26,29,0,,F,30,0,0,,,,,,,81 +6978,319,87,34,8,0,,F,31,0,0,,,,,,,97 +6979,319,144,42,31,0,,F,32,0,0,,,,,,,97 +6980,320,102,1,1,1,1,1,1,5,14,24:34.9,1474899,,,,,1 +6981,320,95,3,5,3,2,2,2,3,14,1.259,1476158,,,,,1 +6982,320,77,1,2,2,3,3,3,2,14,5.12,1480019,,,,,1 +6983,320,137,22,20,5,4,4,4,1.5,14,30.103,1505002,,,,,1 +6984,320,119,3,6,4,5,5,5,1,14,50.537,1525436,,,,,1 +6985,320,81,6,27,8,6,6,6,0.5,14,51.069,1525968,,,,,1 +6986,320,139,35,21,13,7,7,7,0,14,52.361,1527260,,,,,1 +6987,320,110,17,33,12,8,8,8,0,14,+1:00.431,1535330,,,,,1 +6988,320,70,17,32,16,9,9,9,0,14,+1:15.567,1550466,,,,,1 +6989,320,131,25,4,9,10,10,10,0,14,+1:20.370,1555269,,,,,1 +6990,320,65,32,12,21,11,11,11,0,14,+1:22.073,1556972,,,,,1 +6991,320,109,35,22,11,12,12,12,0,14,+1:38.519,1573418,,,,,1 +6992,320,105,29,9,15,13,13,13,0,14,+1:39.303,1574202,,,,,1 +6993,320,127,41,15,14,14,14,14,0,13,,,,,,,11 +6994,320,133,29,10,23,15,15,15,0,13,,,,,,,11 +6995,320,90,18,24,18,16,16,16,0,13,,,,,,,11 +6996,320,87,34,8,17,17,17,17,0,13,,,,,,,11 +6997,320,100,27,26,22,18,18,18,0,13,,,,,,,11 +6998,320,57,32,11,25,19,19,19,0,13,,,,,,,12 +6999,320,91,41,16,26,20,20,20,0,12,,,,,,,12 +7000,320,94,18,23,10,,R,21,0,8,,,,,,,20 +7001,320,30,22,19,6,,R,22,0,5,,,,,,,20 +7002,320,55,6,28,7,,R,23,0,5,,,,,,,3 +7003,320,78,40,34,19,,R,24,0,5,,,,,,,20 +7004,320,123,27,25,20,,R,25,0,5,,,,,,,3 +7005,320,138,25,3,24,,R,26,0,4,,,,,,,20 +7006,320,88,33,30,0,,F,27,0,0,,,,,,,81 +7007,320,84,34,7,0,,F,28,0,0,,,,,,,81 +7008,320,128,40,35,0,,F,29,0,0,,,,,,,81 +7009,320,92,33,29,0,,F,30,0,0,,,,,,,81 +7010,320,99,36,14,0,,F,31,0,0,,,,,,,97 +7011,320,144,42,31,0,,F,32,0,0,,,,,,,97 +7012,321,102,1,27,5,1,1,1,9,72,52:32.8,6752829,,,,,1 +7013,321,55,25,4,4,2,2,2,6,72,8.685,6761514,,,,,1 +7014,321,123,3,5,9,3,3,3,4,72,54.08,6806909,,,,,1 +7015,321,137,22,20,6,4,4,4,3,72,+1:08.358,6821187,,,,,1 +7016,321,131,34,8,10,5,5,5,2,72,+1:09.503,6822332,,,,,1 +7017,321,138,25,3,11,6,6,6,1,71,,,,,,,11 +7018,321,94,18,23,2,7,7,7,0,71,,,,,,,11 +7019,321,103,33,29,15,8,8,8,0,71,,,,,,,11 +7020,321,119,3,6,12,9,9,9,0,71,,,,,,,11 +7021,321,105,21,9,21,10,10,10,0,70,,,,,,,12 +7022,321,145,22,19,22,11,11,11,0,70,,,,,,,12 +7023,321,146,21,10,20,12,12,12,0,70,,,,,,,12 +7024,321,90,44,33,16,13,13,13,0,67,,,,,,,15 +7025,321,127,41,15,25,14,14,14,0,66,,,,,,,16 +7026,321,147,18,24,14,,R,15,0,54,,,,,,,68 +7027,321,88,33,30,18,,R,16,0,53,,,,,,,23 +7028,321,95,6,2,17,,R,17,0,49,,,,,,,8 +7029,321,77,1,28,1,,R,18,0,44,,,,,,,8 +7030,321,148,34,7,23,,R,19,0,39,,,,,,,3 +7031,321,129,45,14,8,,R,20,0,39,,,,,,,4 +7032,321,110,35,22,3,,R,21,0,25,,,,,,,5 +7033,321,117,6,1,7,,R,22,0,21,,,,,,,44 +7034,321,122,41,16,26,,R,23,0,20,,,,,,,10 +7035,321,118,32,11,24,,R,24,0,6,,,,,,,6 +7036,321,78,27,25,13,,R,25,0,4,,,,,,,37 +7037,321,151,32,12,19,,R,26,0,0,,,,,,,6 +7038,321,112,27,26,0,,D,27,0,0,,,,,,,2 +7039,321,140,46,35,0,,F,28,0,0,,,,,,,81 +7040,321,81,35,21,0,,F,29,0,0,,,,,,,81 +7041,321,109,46,36,0,,F,30,0,0,,,,,,,81 +7042,321,99,39,17,0,,F,31,0,0,,,,,,,97 +7043,321,114,39,18,0,,F,32,0,0,,,,,,,97 +7044,321,149,44,34,0,,F,33,0,0,,,,,,,97 +7045,321,150,47,39,0,,F,34,0,0,,,,,,,97 +7046,321,92,42,31,0,,F,35,0,0,,,,,,,97 +7047,322,117,6,1,6,1,1,1,9,71,37:21.3,5841258,,,,,1 +7048,322,77,1,28,2,2,2,2,6,71,13.564,5854822,,,,,1 +7049,322,102,1,27,1,3,3,3,4,71,37.722,5878980,,,,,1 +7050,322,95,6,2,5,4,4,4,3,71,47.266,5888524,,,,,1 +7051,322,123,3,5,3,5,5,5,2,70,,,,,,,11 +7052,322,137,22,20,13,6,6,6,1,70,,,,,,,11 +7053,322,55,25,4,7,7,7,7,0,70,,,,,,,11 +7054,322,138,25,3,19,8,8,8,0,70,,,,,,,11 +7055,322,94,18,23,8,9,9,9,0,69,,,,,,,12 +7056,322,145,22,19,15,10,10,10,0,68,,,,,,,29 +7057,322,78,27,25,20,11,11,11,0,68,,,,,,,13 +7058,322,112,27,26,10,12,12,12,0,68,,,,,,,13 +7059,322,119,3,6,4,13,13,13,0,65,,,,,,,51 +7060,322,81,35,21,16,14,14,14,0,64,,,,,,,17 +7061,322,133,21,10,25,,R,15,0,49,,,,,,,8 +7062,322,151,32,12,14,,R,16,0,43,,,,,,,20 +7063,322,131,34,8,12,,R,17,0,39,,,,,,,20 +7064,322,147,18,24,17,,R,18,0,38,,,,,,,5 +7065,322,114,39,18,26,,R,19,0,28,,,,,,,22 +7066,322,118,32,11,24,,R,20,0,25,,,,,,,10 +7067,322,88,33,30,18,,R,21,0,24,,,,,,,22 +7068,322,105,21,9,23,,R,22,0,24,,,,,,,22 +7069,322,148,34,7,22,,R,23,0,14,,,,,,,7 +7070,322,103,33,29,11,,R,24,0,13,,,,,,,6 +7071,322,129,45,14,21,,R,25,0,8,,,,,,,4 +7072,322,110,35,22,9,,R,26,0,0,,,,,,,4 +7073,322,140,46,35,0,,F,27,0,0,,,,,,,81 +7074,322,109,46,36,0,,F,28,0,0,,,,,,,81 +7075,322,122,41,16,0,,F,29,0,0,,,,,,,81 +7076,322,127,41,15,0,,F,30,0,0,,,,,,,81 +7077,322,99,39,17,0,,F,31,0,0,,,,,,,97 +7078,322,90,44,33,0,,F,32,0,0,,,,,,,97 +7079,322,92,42,31,0,,F,33,0,0,,,,,,,97 +7080,322,149,44,34,0,,F,34,0,0,,,,,,,97 +7081,322,150,47,39,0,,F,35,0,0,,,,,,,97 +7082,323,119,3,6,3,1,1,1,9,61,30:55.5,5455478,,,,,1 +7083,323,77,1,28,2,2,2,2,6,61,5.117,5460595,,,,,1 +7084,323,145,22,19,9,3,3,3,4,61,6.24,5461718,,,,,1 +7085,323,117,6,1,6,4,4,4,3,61,6.843,5462321,,,,,1 +7086,323,137,22,20,8,5,5,5,2,61,53.112,5508590,,,,,1 +7087,323,55,25,4,7,6,6,6,1,60,,,,,,,11 +7088,323,118,32,11,10,7,7,7,0,60,,,,,,,11 +7089,323,151,32,12,11,8,8,8,0,60,,,,,,,11 +7090,323,112,27,26,16,9,9,9,0,60,,,,,,,11 +7091,323,78,27,25,20,10,10,10,0,59,,,,,,,12 +7092,323,147,18,24,26,11,11,11,0,59,,,,,,,12 +7093,323,109,46,36,25,12,12,12,0,59,,,,,,,12 +7094,323,103,33,29,13,13,13,13,0,56,,,,,,,8 +7095,323,129,45,14,22,,R,14,0,52,,,,,,,36 +7096,323,95,6,2,5,,R,15,0,38,,,,,,,5 +7097,323,148,46,35,23,,R,16,0,35,,,,,,,5 +7098,323,131,34,8,14,,R,17,0,31,,,,,,,23 +7099,323,110,35,22,17,,R,18,0,29,,,,,,,36 +7100,323,127,41,15,12,,R,19,0,24,,,,,,,10 +7101,323,123,3,5,4,,R,20,0,17,,,,,,,5 +7102,323,88,33,30,15,,R,21,0,17,,,,,,,8 +7103,323,102,1,27,1,,R,22,0,3,,,,,,,36 +7104,323,139,35,21,21,,R,23,0,2,,,,,,,20 +7105,323,122,41,16,18,,R,24,0,0,,,,,,,4 +7106,323,138,25,3,19,,R,25,0,0,,,,,,,4 +7107,323,90,44,33,24,,R,26,0,0,,,,,,,37 +7108,323,94,18,23,0,,W,27,0,0,,,,,,,3 +7109,323,133,21,10,0,,F,28,0,0,,,,,,,81 +7110,323,105,21,9,0,,F,29,0,0,,,,,,,81 +7111,323,101,34,7,0,,F,30,0,0,,,,,,,81 +7112,323,92,42,31,0,,F,31,0,0,,,,,,,97 +7113,323,149,44,34,0,,F,32,0,0,,,,,,,97 +7114,323,152,47,39,0,,F,33,0,0,,,,,,,97 +7115,323,99,39,17,0,,F,34,0,0,,,,,,,97 +7116,323,114,39,18,0,,F,35,0,0,,,,,,,97 +7117,324,102,1,27,1,1,1,1,9,78,52:47.0,6766982,,,,,1 +7118,324,55,25,4,3,2,2,2,6,78,1.087,6768069,,,,,1 +7119,324,77,1,28,5,3,3,3,4,78,2.073,6769055,,,,,1 +7120,324,123,3,5,6,4,4,4,3,77,,,,,,,11 +7121,324,133,21,10,22,5,5,5,2,76,,,,,,,12 +7122,324,103,33,29,24,6,6,6,1,76,,,,,,,12 +7123,324,148,46,35,20,7,7,7,0,72,,,,,,,4 +7124,324,118,32,11,13,,R,8,0,66,,,,,,,20 +7125,324,95,6,2,7,,R,9,0,63,,,,,,,84 +7126,324,147,18,24,19,,R,10,0,52,,,,,,,6 +7127,324,109,46,36,26,,R,11,0,52,,,,,,,6 +7128,324,112,27,26,18,,R,12,0,47,,,,,,,6 +7129,324,119,3,6,4,,R,13,0,41,,,,,,,99 +7130,324,110,35,22,12,,R,14,0,38,,,,,,,5 +7131,324,138,25,3,21,,R,15,0,36,,,,,,,20 +7132,324,117,6,1,2,,R,16,0,30,,,,,,,84 +7133,324,145,22,19,16,,R,17,0,20,,,,,,,6 +7134,324,101,34,7,25,,R,18,0,16,,,,,,,7 +7135,324,122,41,16,23,,R,19,0,13,,,,,,,23 +7136,324,78,27,25,17,,R,20,0,12,,,,,,,24 +7137,324,88,33,30,15,,R,21,0,11,,,,,,,38 +7138,324,94,18,23,8,,R,22,0,7,,,,,,,10 +7139,324,151,32,12,11,,R,23,0,6,,,,,,,6 +7140,324,131,34,8,14,,R,24,0,3,,,,,,,7 +7141,324,139,35,21,9,,R,25,0,0,,,,,,,5 +7142,324,137,22,20,10,,D,26,0,34,,,,,,,2 +7143,324,105,21,9,0,,F,27,0,0,,,,,,,81 +7144,324,129,45,14,0,,F,28,0,0,,,,,,,81 +7145,324,127,41,15,0,,F,29,0,0,,,,,,,81 +7146,324,90,44,33,0,,F,30,0,0,,,,,,,81 +7147,324,99,39,17,0,,F,31,0,0,,,,,,,97 +7148,324,114,39,18,0,,F,32,0,0,,,,,,,97 +7149,324,149,44,34,0,,F,33,0,0,,,,,,,97 +7150,324,92,42,31,0,,F,34,0,0,,,,,,,97 +7151,324,152,47,39,0,,F,35,0,0,,,,,,,97 +7152,325,102,1,27,1,1,1,1,9,70,42:56.4,6176400,,,,,1 +7153,325,137,22,20,5,2,2,2,6,70,10.497,6186897,,,,,1 +7154,325,95,6,2,7,3,3,3,4,70,13.385,6189785,,,,,1 +7155,325,77,1,28,2,4,4,4,3,70,14.854,6191254,,,,,1 +7156,325,117,6,1,3,5,5,5,2,70,15.82,6192220,,,,,1 +7157,325,118,32,11,11,6,6,6,1,68,,,,,,,12 +7158,325,131,34,8,10,7,7,7,0,68,,,,,,,12 +7159,325,133,21,10,26,8,8,8,0,68,,,,,,,12 +7160,325,103,33,29,23,9,9,9,0,67,,,,,,,13 +7161,325,122,41,16,24,10,10,10,0,67,,,,,,,13 +7162,325,138,25,3,13,11,11,11,0,67,,,,,,,13 +7163,325,88,33,30,18,12,12,12,0,66,,,,,,,14 +7164,325,129,45,14,15,13,13,13,0,65,,,,,,,15 +7165,325,151,32,12,12,,R,14,0,57,,,,,,,5 +7166,325,148,46,35,21,,R,15,0,53,,,,,,,5 +7167,325,110,35,22,25,,R,16,0,50,,,,,,,6 +7168,325,109,46,36,22,,R,17,0,46,,,,,,,5 +7169,325,119,3,6,9,,R,18,0,44,,,,,,,23 +7170,325,112,27,26,17,,R,19,0,34,,,,,,,5 +7171,325,55,25,4,8,,R,20,0,26,,,,,,,20 +7172,325,145,22,19,4,,R,21,0,21,,,,,,,20 +7173,325,123,3,5,6,,R,22,0,19,,,,,,,4 +7174,325,78,27,25,20,,R,23,0,18,,,,,,,4 +7175,325,139,35,21,19,,R,24,0,11,,,,,,,4 +7176,325,105,21,9,14,,R,25,0,11,,,,,,,4 +7177,325,94,18,23,16,,R,26,0,0,,,,,,,20 +7178,325,90,44,33,0,,F,27,0,0,,,,,,,81 +7179,325,127,41,15,0,,F,28,0,0,,,,,,,81 +7180,325,147,18,24,0,,F,29,0,0,,,,,,,81 +7181,325,101,34,7,0,,F,30,0,0,,,,,,,81 +7182,325,99,39,17,0,,F,31,0,0,,,,,,,97 +7183,325,114,39,18,0,,F,32,0,0,,,,,,,97 +7184,325,92,42,31,0,,F,33,0,0,,,,,,,97 +7185,325,149,44,34,0,,F,34,0,0,,,,,,,97 +7186,325,152,47,39,0,,F,35,0,0,,,,,,,97 +7187,326,117,6,1,13,1,1,1,9,69,32:35.8,5555783,,,,,1 +7188,326,95,6,2,4,2,2,2,6,69,25.351,5581134,,,,,1 +7189,326,77,1,28,1,3,3,3,4,69,25.53,5581313,,,,,1 +7190,326,145,22,19,14,4,4,4,3,69,41.099,5596882,,,,,1 +7191,326,123,3,5,5,5,5,5,2,69,46.669,5602452,,,,,1 +7192,326,137,22,20,8,6,6,6,1,69,46.943,5602726,,,,,1 +7193,326,55,25,4,6,7,7,7,0,69,49.077,5604860,,,,,1 +7194,326,151,32,12,12,8,8,8,0,69,+1:06.142,5621925,,,,,1 +7195,326,119,3,6,2,9,9,9,0,69,+1:09.918,5625701,,,,,1 +7196,326,118,32,11,11,10,10,10,0,68,,,,,,,11 +7197,326,131,34,8,10,11,11,11,0,68,,,,,,,11 +7198,326,94,18,23,7,12,12,12,0,68,,,,,,,11 +7199,326,110,35,22,15,13,13,13,0,68,,,,,,,11 +7200,326,147,18,24,16,14,14,14,0,67,,,,,,,12 +7201,326,148,46,35,23,15,15,15,0,67,,,,,,,12 +7202,326,78,27,25,24,16,16,16,0,67,,,,,,,12 +7203,326,105,21,9,17,17,17,17,0,66,,,,,,,13 +7204,326,112,27,26,22,18,18,18,0,66,,,,,,,13 +7205,326,129,45,14,20,19,19,19,0,65,,,,,,,14 +7206,326,102,1,27,3,20,20,20,0,63,,,,,,,27 +7207,326,109,46,36,26,,R,21,0,26,,,,,,,5 +7208,326,103,33,29,25,,R,22,0,12,,,,,,,23 +7209,326,88,33,30,19,,R,23,0,11,,,,,,,4 +7210,326,138,25,3,9,,R,24,0,11,,,,,,,4 +7211,326,101,34,7,21,,R,25,0,11,,,,,,,10 +7212,326,139,35,21,18,,R,26,0,10,,,,,,,5 +7213,326,90,44,33,0,,D,27,0,0,,,,,,,2 +7214,326,122,41,16,0,,F,28,0,0,,,,,,,81 +7215,326,127,41,15,0,,F,29,0,0,,,,,,,81 +7216,326,133,21,10,0,,F,30,0,0,,,,,,,81 +7217,326,114,39,18,0,,F,31,0,0,,,,,,,97 +7218,326,99,39,17,0,,F,32,0,0,,,,,,,97 +7219,326,92,42,31,0,,F,33,0,0,,,,,,,97 +7220,326,149,44,34,0,,F,34,0,0,,,,,,,97 +7221,326,152,47,39,0,,F,35,0,0,,,,,,,97 +7222,327,117,6,1,4,1,1,1,9,80,33:29.6,5609606,,,,,1 +7223,327,122,41,16,7,2,2,2,6,80,8.626,5618232,,,,,1 +7224,327,102,1,27,3,3,3,3,4,80,11.606,5621212,,,,,1 +7225,327,137,22,20,9,4,4,4,3,80,41.207,5650813,,,,,1 +7226,327,77,1,28,2,5,5,5,2,80,42.219,5651825,,,,,1 +7227,327,119,3,6,6,6,6,6,1,80,+1:09.351,5678957,,,,,1 +7228,327,88,33,30,14,7,7,7,0,79,,,,,,,11 +7229,327,103,33,29,11,8,8,8,0,79,,,,,,,11 +7230,327,112,27,26,12,9,9,9,0,79,,,,,,,11 +7231,327,105,21,9,18,10,10,10,0,79,,,,,,,11 +7232,327,118,32,11,16,11,11,11,0,79,,,,,,,11 +7233,327,151,32,12,17,12,12,12,0,79,,,,,,,11 +7234,327,131,34,8,20,13,13,13,0,78,,,,,,,12 +7235,327,78,27,25,19,14,14,14,0,78,,,,,,,12 +7236,327,101,34,7,25,15,15,15,0,77,,,,,,,13 +7237,327,145,22,19,5,16,16,16,0,75,,,,,,,10 +7238,327,114,39,18,26,17,17,17,0,75,,,,,,,15 +7239,327,95,6,2,1,18,18,18,0,72,,,,,,,5 +7240,327,110,35,22,21,,D,19,0,78,,,,,,,2 +7241,327,138,25,3,15,,R,20,0,63,,,,,,,6 +7242,327,127,41,15,10,,R,21,0,58,,,,,,,5 +7243,327,94,18,23,23,,R,22,0,40,,,,,,,10 +7244,327,55,25,4,13,,R,23,0,23,,,,,,,24 +7245,327,133,21,10,22,,R,24,0,22,,,,,,,22 +7246,327,123,3,5,8,,R,25,0,7,,,,,,,5 +7247,327,139,35,21,24,,R,26,0,7,,,,,,,23 +7248,327,147,18,24,0,,F,27,0,0,,,,,,,81 +7249,327,99,39,17,0,,F,28,0,0,,,,,,,81 +7250,327,148,46,35,0,,F,29,0,0,,,,,,,81 +7251,327,109,46,36,0,,F,30,0,0,,,,,,,81 +7252,327,129,45,14,0,,F,31,0,0,,,,,,,97 +7253,327,90,44,33,0,,F,32,0,0,,,,,,,97 +7254,327,149,44,34,0,,F,33,0,0,,,,,,,97 +7255,327,92,42,31,0,,F,34,0,0,,,,,,,97 +7256,327,152,47,39,0,,F,35,0,0,,,,,,,97 +7257,328,117,6,1,5,1,1,1,9,64,18:31.0,4710999,,,,,1 +7258,328,123,3,5,4,2,2,2,6,64,39.092,4750091,,,,,1 +7259,328,102,1,27,2,3,3,3,4,64,43.088,4754087,,,,,1 +7260,328,103,33,29,8,4,4,4,3,64,+1:15.302,4786301,,,,,1 +7261,328,137,22,20,11,5,5,5,2,64,+1:24.003,4795002,,,,,1 +7262,328,88,33,30,9,6,6,6,1,63,,,,,,,11 +7263,328,133,21,10,17,7,7,7,0,63,,,,,,,11 +7264,328,55,25,4,6,8,8,8,0,63,,,,,,,11 +7265,328,131,34,8,20,9,9,9,0,62,,,,,,,12 +7266,328,78,27,25,21,10,10,10,0,62,,,,,,,12 +7267,328,139,35,21,19,11,11,11,0,62,,,,,,,12 +7268,328,147,18,24,24,12,12,12,0,62,,,,,,,12 +7269,328,112,27,26,22,13,13,13,0,61,,,,,,,13 +7270,328,77,1,28,3,14,14,14,0,60,,,,,,,37 +7271,328,95,6,2,1,,R,15,0,55,,,,,,,6 +7272,328,122,41,16,10,,R,16,0,48,,,,,,,95 +7273,328,151,32,12,14,,R,17,0,48,,,,,,,5 +7274,328,118,32,11,16,,R,18,0,46,,,,,,,5 +7275,328,99,39,17,26,,R,19,0,41,,,,,,,5 +7276,328,105,21,9,25,,R,20,0,37,,,,,,,5 +7277,328,119,3,6,7,,R,21,0,26,,,,,,,83 +7278,328,138,25,3,12,,R,22,0,20,,,,,,,10 +7279,328,145,22,19,13,,R,23,0,15,,,,,,,4 +7280,328,110,35,22,23,,R,24,0,12,,,,,,,69 +7281,328,94,18,23,18,,R,25,0,3,,,,,,,91 +7282,328,127,41,15,15,,W,26,0,0,,,,,,,48 +7283,328,129,45,14,0,,F,27,0,0,,,,,,,81 +7284,328,101,34,7,0,,F,28,0,0,,,,,,,81 +7285,328,109,46,36,0,,F,29,0,0,,,,,,,81 +7286,328,148,46,35,0,,F,30,0,0,,,,,,,81 +7287,328,90,44,33,0,,F,31,0,0,,,,,,,97 +7288,328,114,39,18,0,,F,32,0,0,,,,,,,97 +7289,328,149,44,34,0,,F,33,0,0,,,,,,,97 +7290,328,92,42,31,0,,F,34,0,0,,,,,,,97 +7291,328,152,47,39,0,,F,35,0,0,,,,,,,97 +7292,329,102,1,27,1,1,1,1,9,45,20:47.2,4847164,,,,,1 +7293,329,145,22,19,9,2,2,2,6,45,6.52,4853684,,,,,1 +7294,329,77,1,28,2,3,3,3,4,45,8.553,4855717,,,,,1 +7295,329,117,6,1,3,4,4,4,3,45,45.27,4892434,,,,,1 +7296,329,119,3,6,5,5,5,5,2,45,48.028,4895192,,,,,1 +7297,329,123,3,5,6,6,6,6,1,45,+1:21.491,4928655,,,,,1 +7298,329,122,41,16,10,7,7,7,0,44,,,,,,,11 +7299,329,118,32,11,16,8,8,8,0,44,,,,,,,11 +7300,329,133,21,10,18,9,9,9,0,44,,,,,,,11 +7301,329,78,27,25,22,10,10,10,0,43,,,,,,,12 +7302,329,55,25,4,8,11,11,11,0,40,,,,,,,7 +7303,329,109,46,36,25,,N,12,0,39,,,,,,,62 +7304,329,103,33,29,12,,R,13,0,35,,,,,,,48 +7305,329,88,33,30,11,,R,14,0,33,,,,,,,8 +7306,329,138,25,3,13,,R,15,0,24,,,,,,,5 +7307,329,137,22,20,7,,R,16,0,23,,,,,,,5 +7308,329,94,18,23,15,,R,17,0,20,,,,,,,5 +7309,329,148,46,35,26,,R,18,0,19,,,,,,,20 +7310,329,95,6,2,4,,R,19,0,15,,,,,,,41 +7311,329,127,41,15,14,,R,20,0,12,,,,,,,5 +7312,329,101,34,7,21,,R,21,0,12,,,,,,,5 +7313,329,105,21,9,19,,R,22,0,10,,,,,,,5 +7314,329,151,32,12,20,,R,23,0,1,,,,,,,8 +7315,329,131,34,8,17,,R,24,0,0,,,,,,,8 +7316,329,139,35,21,23,,R,25,0,0,,,,,,,4 +7317,329,112,27,26,24,,D,26,0,0,,,,,,,2 +7318,329,129,45,14,0,,F,27,0,0,,,,,,,81 +7319,329,147,18,24,0,,F,28,0,0,,,,,,,81 +7320,329,114,39,18,0,,F,29,0,0,,,,,,,81 +7321,329,110,35,22,0,,F,30,0,0,,,,,,,81 +7322,329,99,39,17,0,,F,31,0,0,,,,,,,97 +7323,329,90,44,33,0,,F,32,0,0,,,,,,,97 +7324,329,92,42,31,0,,F,33,0,0,,,,,,,97 +7325,329,149,44,34,0,,F,34,0,0,,,,,,,97 +7326,329,152,47,39,0,,F,35,0,0,,,,,,,97 +7327,330,123,3,5,1,1,1,1,9,77,49:30.6,6570597,,,,,1 +7328,330,102,1,27,4,2,2,2,6,77,0.288,6570885,,,,,1 +7329,330,137,22,20,9,3,3,3,4,77,27.893,6598490,,,,,1 +7330,330,119,3,6,2,4,4,4,3,77,31.833,6602430,,,,,1 +7331,330,118,32,11,11,5,5,5,2,77,+1:14.244,6644841,,,,,1 +7332,330,103,33,29,12,6,6,6,1,77,+1:24.308,6654905,,,,,1 +7333,330,151,32,12,18,7,7,7,0,76,,,,,,,11 +7334,330,127,41,15,17,8,8,8,0,76,,,,,,,11 +7335,330,133,21,10,26,9,9,9,0,76,,,,,,,11 +7336,330,139,35,21,13,10,10,10,0,76,,,,,,,11 +7337,330,78,27,25,25,11,11,11,0,76,,,,,,,11 +7338,330,105,21,9,22,12,12,12,0,75,,,,,,,12 +7339,330,99,39,17,24,13,13,13,0,74,,,,,,,13 +7340,330,112,27,26,21,14,14,14,0,74,,,,,,,13 +7341,330,147,18,24,23,15,15,15,0,74,,,,,,,13 +7342,330,77,1,28,3,16,16,16,0,72,,,,,,,4 +7343,330,95,6,2,5,17,17,17,0,71,,,,,,,4 +7344,330,145,22,19,7,,R,18,0,64,,,,,,,4 +7345,330,122,41,16,16,,R,19,0,56,,,,,,,6 +7346,330,88,33,30,19,,R,20,0,37,,,,,,,5 +7347,330,117,6,1,8,,R,21,0,36,,,,,,,6 +7348,330,55,25,4,6,,R,22,0,36,,,,,,,4 +7349,330,131,34,8,20,,R,23,0,35,,,,,,,5 +7350,330,94,18,23,14,,R,24,0,35,,,,,,,4 +7351,330,110,35,22,10,,R,25,0,22,,,,,,,5 +7352,330,138,25,3,15,,R,26,0,9,,,,,,,23 +7353,330,114,39,18,0,,F,27,0,0,,,,,,,81 +7354,330,101,34,7,0,,F,28,0,0,,,,,,,81 +7355,330,109,46,36,0,,F,29,0,0,,,,,,,81 +7356,330,148,46,35,0,,F,30,0,0,,,,,,,81 +7357,330,129,45,14,0,,F,31,0,0,,,,,,,97 +7358,330,92,42,31,0,,F,32,0,0,,,,,,,97 +7359,330,90,44,33,0,,F,33,0,0,,,,,,,97 +7360,330,149,44,34,0,,F,34,0,0,,,,,,,97 +7361,330,152,47,39,0,,F,35,0,0,,,,,,,97 +7362,331,102,1,27,1,1,1,1,9,44,26:32.0,5191997,,,,,1 +7363,331,117,6,1,3,2,2,2,6,44,3.55,5195547,,,,,1 +7364,331,77,1,28,2,3,3,3,4,44,28.462,5220459,,,,,1 +7365,331,145,22,19,6,4,4,4,3,44,49.337,5241334,,,,,1 +7366,331,137,22,20,8,5,5,5,2,44,+1:29.650,5281647,,,,,1 +7367,331,127,41,15,14,6,6,6,1,44,+1:48.851,5300848,,,,,1 +7368,331,122,41,16,12,7,7,7,0,43,,,,,,,11 +7369,331,55,25,4,9,8,8,8,0,43,,,,,,,11 +7370,331,103,33,29,15,9,9,9,0,43,,,,,,,11 +7371,331,133,21,10,19,10,10,10,0,43,,,,,,,11 +7372,331,118,32,11,18,11,11,11,0,43,,,,,,,11 +7373,331,151,32,12,22,12,12,12,0,43,,,,,,,11 +7374,331,105,21,9,26,13,13,13,0,43,,,,,,,11 +7375,331,78,27,25,21,14,14,14,0,42,,,,,,,12 +7376,331,94,18,23,16,15,15,15,0,42,,,,,,,12 +7377,331,129,45,14,23,16,16,16,0,42,,,,,,,12 +7378,331,131,34,8,13,17,17,17,0,39,,,,,,,5 +7379,331,101,34,7,24,,R,18,0,36,,,,,,,10 +7380,331,110,35,22,20,,R,19,0,27,,,,,,,5 +7381,331,123,3,5,4,,R,20,0,21,,,,,,,7 +7382,331,95,6,2,5,,R,21,0,19,,,,,,,64 +7383,331,119,3,6,7,,R,22,0,18,,,,,,,6 +7384,331,139,35,21,17,,R,23,0,5,,,,,,,47 +7385,331,138,25,3,10,,R,24,0,4,,,,,,,5 +7386,331,88,33,30,11,,R,25,0,0,,,,,,,3 +7387,331,147,18,24,25,,R,26,0,0,,,,,,,3 +7388,331,112,27,26,0,,F,27,0,0,,,,,,,81 +7389,331,99,39,17,0,,F,28,0,0,,,,,,,81 +7390,331,114,39,18,0,,F,29,0,0,,,,,,,81 +7391,331,92,42,31,0,,F,30,0,0,,,,,,,81 +7392,331,90,44,33,0,,F,31,0,0,,,,,,,97 +7393,331,149,44,34,0,,F,32,0,0,,,,,,,97 +7394,331,152,47,39,0,,F,33,0,0,,,,,,,97 +7395,332,102,1,27,1,1,1,1,9,53,17:57.9,4677878,,,,,1 +7396,332,117,6,1,2,2,2,2,6,53,6.054,4683932,,,,,1 +7397,332,77,1,28,3,3,3,3,4,53,7.404,4685282,,,,,1 +7398,332,95,6,2,4,4,4,4,3,53,56.219,4734097,,,,,1 +7399,332,119,3,6,7,5,5,5,2,52,+1:25.274,4763152,,,,,1 +7400,332,138,25,3,14,6,6,6,1,52,,,,,,,11 +7401,332,137,22,20,9,7,7,7,0,52,,,,,,,11 +7402,332,145,22,19,8,8,8,8,0,52,,,,,,,11 +7403,332,133,21,10,21,9,9,9,0,51,,,,,,,12 +7404,332,110,35,22,25,10,10,10,0,51,,,,,,,12 +7405,332,78,27,25,26,11,11,11,0,51,,,,,,,12 +7406,332,105,21,9,22,12,12,12,0,50,,,,,,,20 +7407,332,112,27,26,20,13,13,13,0,50,,,,,,,13 +7408,332,114,39,18,24,,N,14,0,45,,,,,,,62 +7409,332,122,41,16,16,,R,15,0,36,,,,,,,5 +7410,332,88,33,30,18,,R,16,0,36,,,,,,,10 +7411,332,129,45,14,23,,R,17,0,27,,,,,,,67 +7412,332,127,41,15,10,,R,18,0,24,,,,,,,5 +7413,332,131,34,8,17,,R,19,0,21,,,,,,,5 +7414,332,123,3,5,6,,R,20,0,18,,,,,,,22 +7415,332,118,32,11,12,,R,21,0,15,,,,,,,8 +7416,332,139,35,21,19,,R,22,0,14,,,,,,,20 +7417,332,151,32,12,11,,R,23,0,13,,,,,,,5 +7418,332,103,33,29,13,,R,24,0,10,,,,,,,8 +7419,332,94,18,23,15,,R,25,0,7,,,,,,,22 +7420,332,55,25,4,5,,R,26,0,4,,,,,,,20 +7421,332,99,39,17,0,,F,27,0,0,,,,,,,81 +7422,332,147,18,24,0,,F,28,0,0,,,,,,,81 +7423,332,101,34,7,0,,F,29,0,0,,,,,,,81 +7424,332,92,42,31,0,,F,30,0,0,,,,,,,81 +7425,332,90,44,33,0,,F,31,0,0,,,,,,,97 +7426,332,149,44,34,0,,F,32,0,0,,,,,,,97 +7427,332,152,47,39,0,,F,33,0,0,,,,,,,97 +7428,333,95,6,2,1,1,1,1,9,61,22:11.0,4931014,,,,,1 +7429,333,102,1,27,3,2,2,2,6,61,2.808,4933822,,,,,1 +7430,333,117,6,1,2,3,3,3,4,61,4.189,4935203,,,,,1 +7431,333,77,1,28,4,4,4,4,3,61,5.896,4936910,,,,,1 +7432,333,137,22,20,6,5,5,5,2,61,57.418,4988432,,,,,1 +7433,333,145,22,19,9,6,6,6,1,61,58.249,4989263,,,,,1 +7434,333,119,3,6,5,7,7,7,0,60,,,,,,,11 +7435,333,55,25,4,8,8,8,8,0,60,,,,,,,11 +7436,333,105,21,9,19,9,9,9,0,60,,,,,,,11 +7437,333,78,27,25,22,10,10,10,0,59,,,,,,,12 +7438,333,94,18,23,16,11,11,11,0,59,,,,,,,12 +7439,333,127,41,15,14,12,12,12,0,59,,,,,,,12 +7440,333,133,21,10,17,13,13,13,0,58,,,,,,,3 +7441,333,88,33,30,11,14,14,14,0,58,,,,,,,3 +7442,333,139,35,21,13,15,15,15,0,58,,,,,,,13 +7443,333,112,27,26,20,,R,16,0,52,,,,,,,3 +7444,333,101,34,7,25,,R,17,0,52,,,,,,,6 +7445,333,122,41,16,12,,R,18,0,51,,,,,,,5 +7446,333,123,3,5,7,,R,19,0,30,,,,,,,5 +7447,333,103,33,29,10,,R,20,0,24,,,,,,,6 +7448,333,131,34,8,23,,R,21,0,21,,,,,,,6 +7449,333,151,32,12,15,,R,22,0,14,,,,,,,91 +7450,333,118,32,11,21,,R,23,0,5,,,,,,,37 +7451,333,114,39,18,24,,R,24,0,3,,,,,,,86 +7452,333,110,35,22,18,,R,25,0,0,,,,,,,20 +7453,333,138,25,3,0,,W,26,0,0,,,,,,,54 +7454,333,129,45,14,0,,F,27,0,0,,,,,,,81 +7455,333,147,18,24,0,,F,28,0,0,,,,,,,81 +7456,333,99,39,17,0,,F,29,0,0,,,,,,,81 +7457,333,92,42,31,0,,F,30,0,0,,,,,,,81 +7458,333,90,44,33,0,,F,31,0,0,,,,,,,97 +7459,333,149,44,34,0,,F,32,0,0,,,,,,,97 +7460,333,152,47,39,0,,F,33,0,0,,,,,,,97 +7461,334,117,6,1,2,1,1,1,9,73,48:01.5,6481461,,,,,1 +7462,334,95,6,2,3,2,2,2,6,73,22.064,6503525,,,,,1 +7463,334,145,22,19,9,3,3,3,4,73,34.874,6516335,,,,,1 +7464,334,123,3,5,7,4,4,4,3,73,43.296,6524757,,,,,1 +7465,334,119,3,6,6,5,5,5,2,73,57.53,6538991,,,,,1 +7466,334,88,33,30,15,6,6,6,1,73,+1:03.728,6545189,,,,,1 +7467,334,78,27,25,20,7,7,7,0,72,,,,,,,11 +7468,334,127,41,15,12,8,8,8,0,72,,,,,,,11 +7469,334,114,39,18,23,9,9,9,0,72,,,,,,,11 +7470,334,105,21,9,25,10,10,10,0,71,,,,,,,12 +7471,334,118,32,11,10,,R,11,0,63,,,,,,,6 +7472,334,122,41,16,19,,R,12,0,59,,,,,,,68 +7473,334,77,1,28,5,,R,13,0,56,,,,,,,4 +7474,334,102,1,27,1,,R,14,0,53,,,,,,,21 +7475,334,137,22,20,8,,R,15,0,47,,,,,,,84 +7476,334,110,35,22,17,,R,16,0,47,,,,,,,5 +7477,334,129,45,14,21,,R,17,0,45,,,,,,,67 +7478,334,94,18,23,11,,R,18,0,41,,,,,,,20 +7479,334,112,27,26,13,,R,19,0,22,,,,,,,20 +7480,334,103,33,29,18,,R,20,0,20,,,,,,,6 +7481,334,138,25,3,14,,R,21,0,13,,,,,,,20 +7482,334,99,39,17,22,,R,22,0,5,,,,,,,5 +7483,334,131,34,8,24,,R,23,0,5,,,,,,,4 +7484,334,55,25,4,4,,R,24,0,0,,,,,,,20 +7485,334,139,35,21,16,,R,25,0,0,,,,,,,37 +7486,334,151,32,12,0,,W,26,0,0,,,,,,,73 +7487,334,101,34,7,0,,F,27,0,0,,,,,,,81 +7488,334,147,18,24,0,,F,28,0,0,,,,,,,81 +7489,334,146,21,10,0,,F,29,0,0,,,,,,,81 +7490,334,92,42,31,0,,F,30,0,0,,,,,,,81 +7491,334,90,44,33,0,,F,31,0,0,,,,,,,97 +7492,334,149,44,34,0,,F,32,0,0,,,,,,,97 +7493,334,152,47,39,0,,F,33,0,0,,,,,,,97 +7494,335,137,22,20,6,1,1,1,9,53,34:36.8,5676824,,,,,1 +7495,335,90,22,19,8,2,2,2,6,53,7.223,5684047,,,,,1 +7496,335,88,33,30,9,3,3,3,4,53,22.469,5699293,,,,,1 +7497,335,119,3,6,7,4,4,4,3,53,36.258,5713082,,,,,1 +7498,335,123,3,5,5,5,5,5,2,53,46.884,5723708,,,,,1 +7499,335,138,25,3,14,6,6,6,1,53,+1:12.350,5749174,,,,,1 +7500,335,78,27,25,17,7,7,7,0,52,,,,,,,11 +7501,335,94,18,23,10,8,8,8,0,52,,,,,,,11 +7502,335,133,21,10,23,9,9,9,0,52,,,,,,,11 +7503,335,112,27,26,25,10,10,10,0,52,,,,,,,11 +7504,335,118,32,11,11,,R,11,0,38,,,,,,,6 +7505,335,65,32,12,12,,R,12,0,31,,,,,,,5 +7506,335,105,21,9,24,,R,13,0,28,,,,,,,5 +7507,335,95,6,2,3,,R,14,0,26,,,,,,,7 +7508,335,139,35,21,19,,R,15,0,24,,,,,,,91 +7509,335,103,33,29,18,,R,16,0,24,,,,,,,5 +7510,335,81,18,24,20,,R,17,0,18,,,,,,,20 +7511,335,122,41,16,13,,R,18,0,16,,,,,,,80 +7512,335,110,35,22,26,,R,19,0,13,,,,,,,20 +7513,335,127,41,15,16,,R,20,0,5,,,,,,,5 +7514,335,101,34,7,21,,R,21,0,5,,,,,,,8 +7515,335,77,1,28,4,,R,22,0,1,,,,,,,20 +7516,335,102,1,27,1,,R,23,0,0,,,,,,,4 +7517,335,117,6,1,2,,R,24,0,0,,,,,,,4 +7518,335,131,34,8,22,,R,25,0,0,,,,,,,4 +7519,335,55,25,4,7,,W,26,0,0,,,,,,,54 +7520,335,129,45,14,0,,F,27,0,0,,,,,,,81 +7521,335,99,39,17,0,,F,28,0,0,,,,,,,81 +7522,335,114,39,18,0,,F,29,0,0,,,,,,,81 +7523,335,92,42,31,0,,F,30,0,0,,,,,,,81 +7524,336,137,22,20,7,1,1,1,9,81,49:44.6,6584570,,,,,1 +7525,336,95,6,2,3,2,2,2,6,81,3.129,6587699,,,,,1 +7526,336,117,6,1,4,3,3,3,4,81,37.259,6621829,,,,,1 +7527,336,77,1,28,2,4,4,4,3,81,46.862,6631432,,,,,1 +7528,336,123,3,5,9,5,5,5,2,81,+1:51.160,6695730,,,,,1 +7529,336,119,3,6,6,6,6,6,1,80,,,,,,,11 +7530,336,90,22,19,8,7,7,7,0,80,,,,,,,11 +7531,336,55,25,4,5,8,8,8,0,80,,,,,,,11 +7532,336,94,18,23,10,9,9,9,0,79,,,,,,,12 +7533,336,78,27,25,12,10,10,10,0,79,,,,,,,12 +7534,336,112,27,26,19,11,11,11,0,78,,,,,,,13 +7535,336,131,34,8,17,12,12,12,0,77,,,,,,,14 +7536,336,129,45,14,22,13,13,13,0,74,,,,,,,17 +7537,336,139,35,21,21,,R,14,0,68,,,,,,,5 +7538,336,102,1,27,1,,R,15,0,61,,,,,,,20 +7539,336,99,39,17,26,,R,16,0,58,,,,,,,5 +7540,336,65,32,12,18,,R,17,0,57,,,,,,,8 +7541,336,138,25,3,13,,R,18,0,53,,,,,,,20 +7542,336,122,41,16,14,,R,19,0,46,,,,,,,37 +7543,336,118,32,11,11,,R,20,0,43,,,,,,,6 +7544,336,127,41,15,16,,R,21,0,27,,,,,,,23 +7545,336,110,35,22,15,,R,22,0,23,,,,,,,10 +7546,336,103,33,29,23,,R,23,0,21,,,,,,,6 +7547,336,81,18,24,20,,R,24,0,20,,,,,,,6 +7548,336,101,34,7,25,,R,25,0,18,,,,,,,20 +7549,336,88,33,30,24,,R,26,0,6,,,,,,,7 +7550,336,105,21,9,0,,F,27,0,0,,,,,,,81 +7551,336,114,39,18,0,,F,28,0,0,,,,,,,81 +7552,336,133,21,10,0,,F,29,0,0,,,,,,,81 +7553,336,92,42,31,0,,F,30,0,0,,,,,,,81 +7554,1,18,23,22,1,1,1,1,10,58,34:15.8,5655784,17,3,01:28.0,216.891,1 +7555,1,22,23,23,2,2,2,2,8,58,0.807,5656591,43,14,01:29.1,214.344,1 +7556,1,15,7,9,20,3,3,3,6,58,1.604,5657388,50,10,01:28.9,214.706,1 +7557,1,10,7,10,19,4,4,4,5,58,4.435,5660219,53,6,01:28.4,215.92,1 +7558,1,4,4,7,10,5,5,5,4,58,4.879,5660663,53,9,01:28.7,215.199,1 +7559,1,3,3,16,5,6,6,6,3,58,5.722,5661506,48,1,01:27.7,217.668,1 +7560,1,67,5,12,13,7,7,7,2,58,6.004,5661788,34,16,01:29.2,213.95,1 +7561,1,7,5,11,17,8,8,8,1,58,6.298,5662082,50,17,01:29.8,212.537,1 +7562,1,16,10,20,16,9,9,9,0,58,6.335,5662119,43,11,01:28.9,214.64,1 +7563,1,2,2,6,9,10,10,10,0,58,7.085,5662869,48,5,01:28.3,216.245,1 +7564,1,21,10,21,15,11,11,11,0,58,7.374,5663158,51,12,01:29.0,214.491,1 +7565,1,17,9,14,8,12,12,12,0,57,,,38,8,01:28.5,215.695,11 +7566,1,20,9,15,3,13,13,13,0,56,,,8,4,01:28.1,216.596,4 +7567,1,9,2,5,4,14,14,14,0,55,,,36,2,01:28.0,216.97,4 +7568,1,8,6,4,7,15,15,15,0,55,,,35,7,01:28.5,215.744,24 +7569,1,13,6,3,6,,R,16,0,45,,,30,15,01:29.1,214.164,22 +7570,1,12,4,8,14,,R,17,0,24,,,17,19,01:30.5,210.943,20 +7571,1,6,3,17,11,,R,18,0,17,,,6,18,01:29.9,212.301,3 +7572,1,5,1,2,12,,R,19,0,0,,,,,,,4 +7573,1,1,1,1,18,,D,20,0,58,,,39,13,01:29.0,214.455,2 +7574,2,18,23,22,1,1,1,1,5,31,10:52.1,4252092,18,1,01:36.6,206.483,1 +7575,2,2,2,6,10,2,2,2,4,31,22.722,4274814,17,10,01:39.1,201.392,1 +7576,2,10,7,10,3,3,3,3,3,31,23.513,4275605,18,16,01:39.4,200.74,1 +7577,2,15,7,9,2,4,4,4,2.5,31,46.173,4298265,12,3,01:37.6,204.473,1 +7578,2,22,23,23,8,5,5,5,2,31,47.36,4299452,17,2,01:37.5,204.698,1 +7579,2,17,9,14,5,6,6,6,1.5,31,52.333,4304425,14,5,01:37.7,204.304,1 +7580,2,1,1,1,12,7,7,7,1,31,+1:00.733,4312825,17,11,01:39.1,201.276,1 +7581,2,3,3,16,4,8,8,8,0.5,31,+1:11.576,4323668,13,4,01:37.6,204.459,1 +7582,2,13,6,3,16,9,9,9,0,31,+1:16.932,4329024,17,13,01:39.3,201.055,1 +7583,2,7,5,11,15,10,10,10,0,31,+1:42.164,4354256,17,12,01:39.2,201.072,1 +7584,2,4,4,7,9,11,11,11,0,31,,,17,9,01:39.0,201.551,11 +7585,2,6,3,17,11,12,12,12,0,31,,,17,15,01:39.4,200.778,11 +7586,2,12,4,8,17,13,13,13,0,31,,,18,14,01:39.3,201.019,11 +7587,2,8,6,4,7,14,14,14,0,31,,,17,7,01:38.5,202.683,11 +7588,2,20,9,15,13,15,15,15,0,30,,,10,6,01:38.4,202.737,20 +7589,2,67,5,12,20,16,16,16,0,30,,,16,8,01:38.9,201.689,20 +7590,2,16,10,20,19,17,17,17,0,30,,,17,18,01:39.5,200.623,11 +7591,2,21,10,21,18,18,18,18,0,29,,,16,17,01:39.4,200.738,20 +7592,2,9,2,5,6,,R,19,0,1,,,,,,,5 +7593,2,5,1,2,14,,R,20,0,0,,,,,,,20 +7594,3,20,9,15,1,1,1,1,10,56,57:43.5,7063485,42,2,01:52.6,174.235,1 +7595,3,17,9,14,3,2,2,2,8,56,10.97,7074455,42,4,01:53.0,173.69,1 +7596,3,18,23,22,5,3,3,3,6,56,44.975,7108460,44,6,01:53.5,172.825,1 +7597,3,22,23,23,4,4,4,4,5,56,+1:03.704,7127189,42,1,01:52.6,174.289,1 +7598,3,5,1,2,12,5,5,5,4,56,+1:05.102,7128587,41,10,01:54.5,171.361,1 +7599,3,1,1,1,9,6,6,6,3,56,+1:11.866,7135351,39,12,01:54.7,171.138,1 +7600,3,10,7,10,19,7,7,7,2,56,+1:14.476,7137961,42,3,01:52.7,174.117,1 +7601,3,67,5,12,10,8,8,8,1,56,+1:16.439,7139924,42,11,01:54.6,171.25,1 +7602,3,4,4,7,2,9,9,9,0,56,+1:24.309,7147794,38,9,01:54.5,171.413,1 +7603,3,8,6,4,8,10,10,10,0,56,+1:31.750,7155235,38,15,01:55.4,170.054,1 +7604,3,7,5,11,15,11,11,11,0,56,+1:34.156,7157641,43,5,01:53.5,172.934,1 +7605,3,2,2,6,11,12,12,12,0,56,+1:35.834,7159319,40,7,01:54.2,171.898,1 +7606,3,9,2,5,17,13,13,13,0,56,+1:46.853,7170338,44,14,01:55.3,170.122,1 +7607,3,21,10,21,20,14,14,14,0,55,,,37,18,01:56.2,168.821,11 +7608,3,3,3,16,7,15,15,15,0,55,,,55,8,01:54.2,171.77,11 +7609,3,12,4,8,16,16,16,16,0,54,,,42,16,01:55.5,169.849,12 +7610,3,16,10,20,18,17,17,17,0,50,,,41,13,01:54.8,170.971,20 +7611,3,6,3,17,14,,R,18,0,43,,,38,17,01:56.2,168.925,31 +7612,3,13,6,3,13,,R,19,0,20,,,16,19,01:56.5,168.466,40 +7613,3,15,7,9,6,,R,20,0,18,,,14,20,02:00.3,163.081,4 +7614,4,18,23,22,4,1,1,1,10,57,31:48.2,5508182,11,3,01:34.6,205.979,1 +7615,4,20,9,15,3,2,2,2,8,57,7.187,5515369,16,4,01:34.8,205.614,1 +7616,4,15,7,9,1,3,3,3,6,57,9.17,5517352,10,1,01:34.6,206.049,1 +7617,4,1,1,1,5,4,4,4,5,57,22.096,5530278,13,6,01:34.9,205.269,1 +7618,4,22,23,23,6,5,5,5,4,57,37.779,5545961,25,5,01:34.9,205.3,1 +7619,4,8,6,4,10,6,6,6,3,57,42.057,5550239,42,11,01:35.5,204.016,1 +7620,4,10,7,10,2,7,7,7,2,57,42.88,5551062,6,2,01:34.6,206.01,1 +7621,4,4,4,7,7,8,8,8,1,57,52.775,5560957,29,14,01:35.7,203.539,1 +7622,4,3,3,16,9,9,9,9,0,57,58.198,5566380,37,15,01:35.8,203.339,1 +7623,4,12,4,8,15,10,10,10,0,57,+1:05.149,5573331,37,10,01:35.4,204.138,1 +7624,4,17,9,14,18,11,11,11,0,57,+1:07.641,5575823,50,8,01:35.2,204.73,1 +7625,4,5,1,2,11,12,12,12,0,57,+1:17.824,5586006,54,12,01:35.5,203.969,1 +7626,4,7,5,11,20,13,13,13,0,57,+1:18.805,5586987,30,9,01:35.4,204.205,1 +7627,4,13,6,3,8,14,14,14,0,56,,,41,7,01:35.1,204.946,11 +7628,4,21,10,21,17,15,15,15,0,56,,,9,19,01:36.4,202.158,11 +7629,4,16,10,20,19,16,16,16,0,56,,,28,18,01:36.2,202.488,11 +7630,4,67,5,12,16,17,17,17,0,56,,,38,20,01:36.5,201.954,11 +7631,4,9,2,5,13,18,18,18,0,56,,,50,13,01:35.7,203.573,11 +7632,4,2,2,6,14,19,19,19,0,56,,,52,16,01:35.9,203.11,11 +7633,4,6,3,17,12,,R,20,0,48,,,39,17,01:36.2,202.627,51 +7634,5,18,23,22,1,1,1,1,10,66,37:19.2,5839202,17,2,01:22.9,202.149,1 +7635,5,22,23,23,3,2,2,2,8,66,13.056,5852258,28,1,01:22.8,202.484,1 +7636,5,17,9,14,5,3,3,3,6,66,13.924,5853126,18,5,01:23.1,201.631,1 +7637,5,20,9,15,2,4,4,4,5,66,18.941,5858143,41,4,01:23.1,201.684,1 +7638,5,4,4,7,8,5,5,5,4,66,43.166,5882368,14,6,01:23.4,200.887,1 +7639,5,13,6,3,4,6,6,6,3,66,50.827,5890029,14,3,01:23.1,201.687,1 +7640,5,2,2,6,13,7,7,7,2,66,52.312,5891514,29,10,01:23.9,199.79,1 +7641,5,3,3,16,9,8,8,8,1,66,+1:05.211,5904413,24,7,01:23.6,200.404,1 +7642,5,1,1,1,14,9,9,9,0,65,,,29,9,01:23.8,199.883,11 +7643,5,10,7,10,6,10,10,10,0,65,,,44,12,01:24.1,199.182,11 +7644,5,9,2,5,10,11,11,11,0,65,,,26,11,01:24.1,199.314,11 +7645,5,12,4,8,12,12,12,12,0,65,,,41,14,01:24.3,198.823,11 +7646,5,6,3,17,11,13,13,13,0,65,,,38,13,01:24.2,199.132,11 +7647,5,21,10,21,20,14,14,14,0,65,,,63,8,01:23.8,199.985,11 +7648,5,8,6,4,16,,R,15,0,17,,,16,15,01:24.5,198.342,9 +7649,5,5,1,2,18,,R,16,0,7,,,6,16,01:28.7,188.888,6 +7650,5,15,7,9,7,,R,17,0,0,,,,,,,4 +7651,5,67,5,12,15,,R,18,0,0,,,,,,,4 +7652,5,7,5,11,17,,R,19,0,0,,,,,,,4 +7653,5,16,10,20,19,,R,20,0,0,,,,,,,4 +7654,6,18,23,22,1,1,1,1,10,78,40:44.3,6044282,49,2,01:15.2,159.914,1 +7655,6,22,23,23,3,2,2,2,8,78,7.666,6051948,46,7,01:15.7,158.868,1 +7656,6,8,6,4,2,3,3,3,6,78,13.442,6057724,47,5,01:15.4,159.507,1 +7657,6,13,6,3,5,4,4,4,5,78,15.11,6059392,50,1,01:15.2,159.991,1 +7658,6,17,9,14,8,5,5,5,4,78,15.73,6060012,45,3,01:15.3,159.636,1 +7659,6,3,3,16,6,6,6,6,3,78,33.586,6077868,48,9,01:15.8,158.686,1 +7660,6,4,4,7,9,7,7,7,2,78,37.839,6082121,64,4,01:15.4,159.53,1 +7661,6,7,5,11,14,8,8,8,1,78,+1:03.142,6107424,47,13,01:16.2,157.84,1 +7662,6,21,10,21,13,9,9,9,0,78,+1:05.040,6109322,74,16,01:16.4,157.343,1 +7663,6,10,7,10,20,10,10,10,0,77,,,72,12,01:16.1,158.073,11 +7664,6,2,2,6,16,11,11,11,0,77,,,49,15,01:16.3,157.654,11 +7665,6,1,1,1,19,12,12,12,0,77,,,65,8,01:15.7,158.824,11 +7666,6,15,7,9,18,13,13,13,0,77,,,57,11,01:16.0,158.187,11 +7667,6,16,10,20,15,14,14,14,0,77,,,66,14,01:16.2,157.702,11 +7668,6,6,3,17,10,15,15,15,0,76,,,73,10,01:15.8,158.644,3 +7669,6,5,1,2,7,,R,16,0,51,,,48,6,01:15.7,158.896,3 +7670,6,9,2,5,17,,R,17,0,28,,,25,17,01:17.6,155.032,23 +7671,6,20,9,15,4,,R,18,0,15,,,15,18,01:17.6,154.88,3 +7672,6,12,4,8,12,,R,19,0,10,,,7,19,01:18.5,153.144,4 +7673,6,67,5,12,11,,R,20,0,10,,,7,20,01:18.6,153.012,4 +7674,7,18,23,22,2,1,1,1,10,58,26:24.8,5184848,40,1,01:27.6,219.422,1 +7675,7,17,9,14,4,2,2,2,8,58,6.714,5191562,42,3,01:27.8,218.847,1 +7676,7,20,9,15,1,3,3,3,6,58,7.461,5192309,51,2,01:27.6,219.314,1 +7677,7,15,7,9,5,4,4,4,5,58,27.843,5212691,40,4,01:27.9,218.7,1 +7678,7,3,3,16,9,5,5,5,4,58,31.539,5216387,36,11,01:28.2,217.823,1 +7679,7,13,6,3,7,6,6,6,3,58,39.996,5224844,41,9,01:28.2,217.936,1 +7680,7,9,2,5,10,7,7,7,2,58,46.247,5231095,58,7,01:28.0,218.352,1 +7681,7,10,7,10,13,8,8,8,1,58,46.959,5231807,56,5,01:27.9,218.663,1 +7682,7,8,6,4,6,9,9,9,0,58,50.246,5235094,58,8,01:28.1,218.221,1 +7683,7,4,4,7,8,10,10,10,0,58,+1:02.420,5247268,57,13,01:28.4,217.411,1 +7684,7,2,2,6,11,11,11,11,0,58,+1:04.327,5249175,43,10,01:28.2,217.842,1 +7685,7,6,3,17,12,12,12,12,0,58,+1:06.376,5251224,58,6,01:28.0,218.402,1 +7686,7,1,1,1,16,13,13,13,0,58,+1:20.454,5265302,53,15,01:28.6,216.986,1 +7687,7,5,1,2,14,14,14,14,0,57,,,41,18,01:29.2,215.497,11 +7688,7,67,5,12,18,15,15,15,0,57,,,57,16,01:28.6,216.835,11 +7689,7,12,4,8,17,16,16,16,0,57,,,45,12,01:28.3,217.532,11 +7690,7,16,10,20,15,17,17,17,0,57,,,55,19,01:29.2,215.454,11 +7691,7,7,5,11,20,18,18,18,0,57,,,53,17,01:29.0,215.865,11 +7692,7,22,23,23,3,,R,19,0,47,,,37,14,01:28.5,217.075,6 +7693,7,21,10,21,19,,R,20,0,4,,,3,20,01:34.1,204.281,23 +7694,8,20,9,15,1,1,1,1,10,60,22:49.3,4969328,16,1,01:20.7,229.238,1 +7695,8,17,9,14,3,2,2,2,8,60,15.188,4984516,57,2,01:20.9,228.728,1 +7696,8,22,23,23,2,3,3,3,6,60,41.175,5010503,18,5,01:21.4,227.285,1 +7697,8,13,6,3,11,4,4,4,5,60,45.043,5014371,22,6,01:21.5,227.062,1 +7698,8,3,3,16,7,5,5,5,4,60,45.915,5015243,17,3,01:21.1,228.336,1 +7699,8,18,23,22,6,6,6,6,3,60,46.285,5015613,54,4,01:21.2,227.956,1 +7700,8,15,7,9,4,7,7,7,2,60,+1:08.307,5037635,17,9,01:21.8,226.237,1 +7701,8,8,6,4,9,8,8,8,1,60,+1:09.622,5038950,14,7,01:21.7,226.653,1 +7702,8,10,7,10,8,9,9,9,0,60,+1:09.823,5039151,51,8,01:21.7,226.611,1 +7703,8,21,10,21,16,10,10,10,0,60,+1:11.522,5040850,20,10,01:21.8,226.226,1 +7704,8,6,3,17,5,11,11,11,0,60,+1:14.023,5043351,14,11,01:21.8,226.129,1 +7705,8,12,4,8,14,12,12,12,0,59,,,25,17,01:22.5,224.32,11 +7706,8,9,2,5,12,13,13,13,0,59,,,41,14,01:22.2,225.202,11 +7707,8,4,4,7,10,14,14,14,0,59,,,36,12,01:21.9,226.11,11 +7708,8,2,2,6,15,15,15,15,0,59,,,59,13,01:22.0,225.823,11 +7709,8,1,1,1,18,16,16,16,0,59,,,24,18,01:22.6,224.128,11 +7710,8,16,10,20,20,17,17,17,0,59,,,50,20,01:23.5,221.714,11 +7711,8,67,5,12,19,18,18,18,0,59,,,24,19,01:22.7,223.762,11 +7712,8,7,5,11,17,,R,19,0,37,,,26,16,01:22.5,224.427,4 +7713,8,5,1,2,13,,R,20,0,36,,,32,15,01:22.4,224.557,4 +7714,9,17,9,14,1,1,1,1,10,60,36:43.3,5803310,37,3,01:34.0,197.151,1 +7715,9,20,9,15,4,2,2,2,8,60,9.252,5812562,42,4,01:34.1,196.97,1 +7716,9,13,6,3,8,3,3,3,6,60,15.906,5819216,53,8,01:34.5,196.201,1 +7717,9,3,3,16,15,4,4,4,5,60,21.099,5824409,50,7,01:34.4,196.315,1 +7718,9,18,23,22,3,5,5,5,4,60,23.609,5826919,53,6,01:34.3,196.63,1 +7719,9,22,23,23,2,6,6,6,3,60,24.468,5827778,54,11,01:34.7,195.749,1 +7720,9,4,4,7,12,7,7,7,2,60,24.888,5828198,49,1,01:33.4,198.498,1 +7721,9,5,1,2,6,8,8,8,1,60,58.692,5862002,59,17,01:35.5,194.011,1 +7722,9,10,7,10,20,9,9,9,0,60,+1:01.457,5864767,40,16,01:35.4,194.327,1 +7723,9,2,2,6,11,10,10,10,0,60,+1:01.925,5865235,42,10,01:34.6,195.991,1 +7724,9,21,10,21,18,11,11,11,0,60,+1:02.327,5865637,54,13,01:35.3,194.465,1 +7725,9,6,3,17,13,12,12,12,0,60,+1:02.876,5866186,49,5,01:34.2,196.659,1 +7726,9,12,4,8,10,13,13,13,0,60,+1:08.328,5871638,46,12,01:34.9,195.337,1 +7727,9,9,2,5,16,14,14,14,0,60,+1:09.555,5872865,47,9,01:34.5,196.037,1 +7728,9,16,10,20,7,15,15,15,0,60,+1:11.941,5875251,43,14,01:35.4,194.333,1 +7729,9,67,5,12,17,16,16,16,0,60,+1:30.225,5893535,24,19,01:36.3,192.49,1 +7730,9,15,7,9,14,17,17,17,0,60,+1:30.970,5894280,52,2,01:33.7,197.885,1 +7731,9,1,1,1,5,18,18,18,0,59,,,46,15,01:35.4,194.331,11 +7732,9,8,6,4,9,,R,19,0,34,,,4,18,01:36.1,192.889,5 +7733,9,7,5,11,19,,R,20,0,18,,,10,20,01:37.5,190.083,9 +7734,10,1,1,1,4,1,1,1,10,70,38:23.9,5903876,16,4,01:22.5,191.219,1 +7735,10,8,6,4,7,2,2,2,8,70,11.529,5915405,70,2,01:22.4,191.323,1 +7736,10,17,9,14,3,3,3,3,6,70,16.886,5920762,65,1,01:21.9,192.498,1 +7737,10,3,3,16,5,4,4,4,5,70,26.967,5930843,65,3,01:22.5,191.245,1 +7738,10,5,1,2,6,5,5,5,4,70,34.392,5938268,63,8,01:23.0,190.115,1 +7739,10,10,7,10,13,6,6,6,3,70,35.237,5939113,63,5,01:22.5,191.157,1 +7740,10,18,23,22,8,7,7,7,2,70,55.088,5958964,57,6,01:22.7,190.694,1 +7741,10,15,7,9,11,8,8,8,1,70,+1:08.172,5972048,65,13,01:23.3,189.423,1 +7742,10,6,3,17,9,9,9,9,0,70,+1:08.774,5972650,55,11,01:23.2,189.608,1 +7743,10,22,23,23,12,10,10,10,0,70,+1:09.256,5973132,55,9,01:23.0,189.964,1 +7744,10,2,2,6,15,11,11,11,0,70,+1:10.612,5974488,65,14,01:23.3,189.375,1 +7745,10,12,4,8,14,12,12,12,0,70,+1:11.512,5975388,65,15,01:23.4,189.067,1 +7746,10,9,2,5,18,13,13,13,0,70,+1:14.046,5977922,65,12,01:23.2,189.507,1 +7747,10,21,10,21,16,14,14,14,0,69,,,40,10,01:23.2,189.621,11 +7748,10,153,5,11,19,15,15,15,0,69,,,69,16,01:23.4,189.008,11 +7749,10,67,5,12,10,16,16,16,0,69,,,69,7,01:23.0,190.122,11 +7750,10,20,9,15,2,,R,17,0,29,,,18,17,01:23.5,188.978,22 +7751,10,4,4,7,1,,R,18,0,15,,,4,18,01:23.5,188.815,36 +7752,10,16,10,20,17,,R,19,0,1,,,,,,,25 +7753,10,13,6,3,0,,W,20,0,0,,,,,,,54 +7754,11,22,23,23,3,1,1,1,10,57,35:51.3,5751289,39,3,01:39.0,197.074,1 +7755,11,1,1,1,1,2,2,2,8,57,2.358,5753647,57,4,01:39.1,196.943,1 +7756,11,8,6,4,6,3,3,3,6,57,15.994,5767283,39,5,01:39.2,196.643,1 +7757,11,5,1,2,2,4,4,4,5,57,20.032,5771321,56,7,01:39.3,196.378,1 +7758,11,3,3,16,7,5,5,5,4,57,20.87,5772159,52,6,01:39.3,196.401,1 +7759,11,4,4,7,8,6,6,6,3,57,27.744,5779033,46,10,01:39.5,196.076,1 +7760,11,18,23,22,5,7,7,7,2,57,34.913,5786202,46,2,01:38.9,197.305,1 +7761,11,9,2,5,10,8,8,8,1,57,36.667,5787956,55,8,01:39.4,196.312,1 +7762,11,17,9,14,9,9,9,9,0,57,44.91,5796199,50,11,01:39.5,196.009,1 +7763,11,16,10,20,12,10,10,10,0,57,47.935,5799224,36,12,01:39.6,195.824,1 +7764,11,2,2,6,11,11,11,11,0,57,48.822,5800111,53,13,01:39.7,195.663,1 +7765,11,21,10,21,16,12,12,12,0,57,+1:03.614,5814903,53,17,01:40.1,194.867,1 +7766,11,15,7,9,18,13,13,13,0,57,+1:04.527,5815816,52,15,01:39.9,195.199,1 +7767,11,10,7,10,13,14,14,14,0,57,+1:26.519,5837808,55,1,01:38.7,197.687,1 +7768,11,154,4,8,14,15,15,15,0,57,+1:31.774,5843063,41,9,01:39.4,196.206,1 +7769,11,153,5,11,19,16,16,16,0,56,,,29,19,01:40.9,193.276,11 +7770,11,69,6,3,20,17,17,17,0,56,,,52,18,01:40.6,193.939,11 +7771,11,6,3,17,17,18,18,18,0,54,,,53,14,01:39.7,195.578,13 +7772,11,67,5,12,15,,R,19,0,41,,,37,20,01:41.0,193.072,23 +7773,11,20,9,15,4,,R,20,0,23,,,13,16,01:40.0,195.099,5 +7774,12,8,6,4,6,1,1,1,10,44,23:51.0,5030995,42,4,01:47.7,234.173,1 +7775,12,21,10,21,1,2,2,2,8,44,0.939,5031934,43,6,01:47.7,234.036,1 +7776,12,20,9,15,8,3,3,3,6,44,3.875,5034870,38,1,01:47.3,235.07,1 +7777,12,9,2,5,5,4,4,4,5,44,9.966,5040961,41,3,01:47.7,234.195,1 +7778,12,2,2,6,3,5,5,5,4,44,11.276,5042271,35,2,01:47.4,234.834,1 +7779,12,5,1,2,15,6,6,6,3,44,32.763,5063758,24,13,01:48.3,232.716,1 +7780,12,22,23,23,4,7,7,7,2,44,35.461,5066456,37,12,01:48.3,232.912,1 +7781,12,3,3,16,10,8,8,8,1,44,36.208,5067203,41,8,01:47.8,233.973,1 +7782,12,17,9,14,9,9,9,9,0,44,36.959,5067954,39,9,01:47.8,233.936,1 +7783,12,10,7,10,7,10,10,10,0,44,41.49,5072485,40,5,01:47.7,234.038,1 +7784,12,16,10,20,11,11,11,11,0,44,42.636,5073631,42,10,01:47.9,233.771,1 +7785,12,67,5,12,16,12,12,12,0,44,46.106,5077101,42,7,01:47.8,233.98,1 +7786,12,6,3,17,18,13,13,13,0,44,54.241,5085236,42,11,01:48.2,233.024,1 +7787,12,69,6,3,20,14,14,14,0,44,+1:42.177,5133172,41,15,01:49.8,229.633,1 +7788,12,4,4,7,13,,R,15,0,26,,,23,14,01:48.6,232.104,31 +7789,12,15,7,9,2,,R,16,0,21,,,16,16,01:50.0,229.161,23 +7790,12,18,23,22,14,,R,17,0,0,,,,,,,4 +7791,12,154,4,8,19,,R,18,0,0,,,,,,,4 +7792,12,1,1,1,12,,R,19,0,0,,,,,,,4 +7793,12,153,5,11,17,,R,20,0,0,,,,,,,4 +7794,13,22,23,23,5,1,1,1,10,53,16:21.7,4581706,48,5,01:25.0,245.445,1 +7795,13,18,23,22,6,2,2,2,8,53,2.866,4584572,46,4,01:24.9,245.538,1 +7796,13,8,6,4,3,3,3,3,6,53,30.664,4612370,36,2,01:24.8,246.042,1 +7797,13,16,10,20,2,4,4,4,5,53,31.131,4612837,36,1,01:24.7,246.106,1 +7798,13,4,4,7,8,5,5,5,4,53,59.182,4640888,50,8,01:25.2,244.777,1 +7799,13,5,1,2,4,6,6,6,3,53,+1:00.693,4642399,51,6,01:25.1,245.036,1 +7800,13,2,2,6,15,7,7,7,2,53,+1:22.412,4664118,30,9,01:25.5,243.95,1 +7801,13,20,9,15,9,8,8,8,1,53,+1:25.407,4667113,50,7,01:25.2,244.791,1 +7802,13,21,6,3,14,9,9,9,0,53,+1:26.856,4668562,28,10,01:25.5,243.921,1 +7803,13,6,3,17,17,10,10,10,0,53,+2:42.163,4743869,51,16,01:26.0,242.565,1 +7804,13,10,7,10,16,11,11,11,0,53,+2:43.925,4745631,50,14,01:25.8,243.201,1 +7805,13,1,1,1,1,12,12,12,0,52,,,52,3,01:24.8,245.923,3 +7806,13,67,5,12,19,13,13,13,0,52,,,50,11,01:25.6,243.733,11 +7807,13,15,7,9,11,14,14,14,0,52,,,49,13,01:25.7,243.346,11 +7808,13,154,4,8,12,15,15,15,0,52,,,51,12,01:25.6,243.605,11 +7809,13,3,3,16,18,16,16,16,0,51,,,50,15,01:25.9,242.777,12 +7810,13,24,10,21,7,,R,17,0,22,,,22,17,01:26.0,242.382,7 +7811,13,153,5,11,20,,R,18,0,19,,,17,19,01:27.8,237.401,31 +7812,13,9,2,5,13,,R,19,0,15,,,12,18,01:27.8,237.474,44 +7813,13,17,9,14,10,,R,20,0,0,,,,,,,4 +7814,14,1,1,1,1,1,1,1,10,61,56:06.3,6966337,36,2,01:48.3,168.561,1 +7815,14,10,7,10,6,2,2,2,8,61,9.634,6975971,34,6,01:48.4,168.482,1 +7816,14,4,4,7,5,3,3,3,6,61,16.624,6982961,53,1,01:48.2,168.725,1 +7817,14,20,9,15,2,4,4,4,5,61,20.621,6986958,10,7,01:48.4,168.479,1 +7818,14,18,23,22,11,5,5,5,4,61,30.015,6996352,54,4,01:48.4,168.524,1 +7819,14,22,23,23,9,6,6,6,3,61,31.858,6998195,50,8,01:48.6,168.168,1 +7820,14,5,1,2,8,7,7,7,2,61,36.157,7002494,36,11,01:49.3,167.114,1 +7821,14,9,2,5,7,8,8,8,1,61,55.054,7021391,44,10,01:48.8,167.784,1 +7822,14,6,3,17,10,9,9,9,0,61,56.054,7022391,45,13,01:49.4,166.98,1 +7823,14,8,6,4,12,10,10,10,0,61,58.892,7025229,54,5,01:48.4,168.49,1 +7824,14,3,3,16,3,11,11,11,0,61,59.777,7026114,9,3,01:48.4,168.55,1 +7825,14,15,7,9,14,12,12,12,0,61,+1:13.009,7039346,54,9,01:48.8,167.831,1 +7826,14,21,6,3,17,13,13,13,0,61,+1:19.890,7046227,49,14,01:49.4,166.91,1 +7827,14,24,10,21,19,14,14,14,0,61,+1:33.502,7059839,48,15,01:49.9,166.249,1 +7828,14,153,5,11,16,,R,15,0,47,,,32,18,01:52.5,162.36,23 +7829,14,67,5,12,13,,R,16,0,47,,,17,16,01:50.6,165.071,6 +7830,14,17,9,14,4,,R,17,0,45,,,35,12,01:49.3,167.059,23 +7831,14,16,10,20,15,,R,18,0,23,,,15,19,01:52.6,162.158,4 +7832,14,2,2,6,20,,R,19,0,19,,,18,17,01:51.3,164.018,4 +7833,14,154,4,8,18,,R,20,0,3,,,2,20,01:57.2,155.836,23 +7834,15,20,9,15,1,1,1,1,10,53,28:20.4,5300443,43,2,01:32.6,225.826,1 +7835,15,15,7,9,2,2,2,2,8,53,4.877,5305320,38,4,01:33.2,224.42,1 +7836,15,1,1,1,3,3,3,3,6,53,6.472,5306915,13,6,01:33.3,224.162,1 +7837,15,8,6,4,5,4,4,4,5,53,7.94,5308383,33,3,01:33.0,224.789,1 +7838,15,3,3,16,7,5,5,5,4,53,8.793,5309236,43,9,01:33.6,223.358,1 +7839,15,2,2,6,4,6,6,6,3,53,9.509,5309952,13,10,01:33.6,223.346,1 +7840,15,22,23,23,6,7,7,7,2,53,10.641,5311084,17,13,01:33.9,222.608,1 +7841,15,18,23,22,10,8,8,8,1,53,11.474,5311917,42,5,01:33.3,224.182,1 +7842,15,9,2,5,9,9,9,9,0,53,11.777,5312220,44,7,01:33.3,223.982,1 +7843,15,4,4,7,16,10,10,10,0,53,13.065,5313508,28,14,01:33.9,222.523,1 +7844,15,5,1,2,11,11,11,11,0,53,13.735,5314178,35,12,01:33.8,222.867,1 +7845,15,21,6,3,14,12,12,12,0,53,14.596,5315039,33,8,01:33.5,223.635,1 +7846,15,16,10,20,8,13,13,13,0,53,14.959,5315402,36,11,01:33.7,223.184,1 +7847,15,24,10,21,18,14,14,14,0,53,15.734,5316177,36,16,01:34.3,221.702,1 +7848,15,6,3,17,15,15,15,15,0,53,17.973,5318416,26,18,01:34.8,220.558,1 +7849,15,154,4,8,17,16,16,16,0,52,,,39,17,01:34.6,220.884,11 +7850,15,17,9,14,19,17,17,17,0,51,,,50,1,01:32.6,225.833,12 +7851,15,153,5,11,12,,R,18,0,43,,,34,15,01:34.0,222.279,3 +7852,15,67,5,12,13,,R,19,0,11,,,5,19,01:35.4,219.15,8 +7853,15,10,7,10,20,,W,20,0,0,,,,,,,73 +7854,16,17,9,14,2,1,1,1,10,71,32:23.1,5543081,25,1,01:13.7,210.386,1 +7855,16,9,2,5,8,2,2,2,8,71,7.626,5550707,38,4,01:14.2,209.188,1 +7856,16,1,1,1,17,3,3,3,6,71,18.944,5562025,59,6,01:14.3,208.654,1 +7857,16,20,9,15,15,4,4,4,5,71,19.652,5562733,59,2,01:13.9,209.939,1 +7858,16,18,23,22,14,5,5,5,4,71,29.005,5572086,46,7,01:14.4,208.631,1 +7859,16,8,6,4,5,6,6,6,3,71,33.34,5576421,47,9,01:14.6,208.058,1 +7860,16,67,5,12,6,7,7,7,2,71,35.991,5579072,58,10,01:14.6,208.044,1 +7861,16,22,23,23,1,8,8,8,1,71,45.454,5588535,20,3,01:14.0,209.768,1 +7862,16,5,1,2,16,9,9,9,0,71,48.499,5591580,68,5,01:14.3,208.772,1 +7863,16,155,7,10,11,10,10,10,0,71,+1:03.324,5606405,71,11,01:14.7,207.729,1 +7864,16,21,6,3,19,11,11,11,0,71,+1:10.665,5613746,55,14,01:14.9,207.022,1 +7865,16,24,10,21,20,12,12,12,0,71,+1:11.388,5614469,43,16,01:15.0,206.859,1 +7866,16,154,4,8,13,13,13,13,0,70,,,54,12,01:14.8,207.415,11 +7867,16,153,5,11,12,14,14,14,0,70,,,59,13,01:14.9,207.216,11 +7868,16,6,3,17,9,,R,15,0,30,,,21,17,01:15.1,206.63,3 +7869,16,3,3,16,7,,R,16,0,27,,,16,8,01:14.4,208.584,6 +7870,16,2,2,6,18,,R,17,0,21,,,19,15,01:15.0,206.865,60 +7871,16,16,10,20,3,,R,18,0,0,,,,,,,3 +7872,16,15,7,9,4,,R,19,0,0,,,,,,,3 +7873,16,4,4,7,10,,R,20,0,0,,,,,,,3 +7874,356,95,6,27,6,1,1,1,9,61,38:58.7,5938744,,,,,1 +7875,356,117,1,2,5,2,2,2,6,61,7.809,5946553,,,,,1 +7876,356,127,37,15,12,3,3,3,4,61,9.37,5948114,,,,,1 +7877,356,65,22,20,10,4,4,4,3,61,10.493,5949237,,,,,1 +7878,356,118,21,9,8,5,5,5,2,61,17.866,5956610,,,,,1 +7879,356,145,22,19,11,6,6,6,1,61,18.241,5956985,,,,,1 +7880,356,156,25,3,18,7,7,7,0,60,,,,,,,11 +7881,356,138,32,12,21,8,8,8,0,60,,,,,,,11 +7882,356,129,27,26,22,9,9,9,0,60,,,,,,,11 +7883,356,105,25,4,20,10,10,10,0,59,,,,,,,12 +7884,356,102,1,1,1,11,11,11,0,59,,,,,,,12 +7885,356,112,33,30,26,12,12,12,0,58,,,,,,,13 +7886,356,110,35,22,15,13,13,13,0,57,,,,,,,14 +7887,356,157,48,38,17,14,14,14,0,56,,,,,,,15 +7888,356,119,3,6,2,15,15,15,0,51,,,,,,,91 +7889,356,158,21,10,24,,R,16,0,37,,,,,,,4 +7890,356,146,49,34,25,,R,17,0,36,,,,,,,4 +7891,356,84,34,7,13,,R,18,0,27,,,,,,,86 +7892,356,122,37,16,7,,R,19,0,22,,,,,,,22 +7893,356,137,32,11,9,,R,20,0,10,,,,,,,69 +7894,356,78,45,17,19,,D,21,0,10,,,,,,,2 +7895,356,131,34,8,14,,R,22,0,9,,,,,,,86 +7896,356,123,3,5,4,,R,23,0,3,,,,,,,5 +7897,356,94,18,23,16,,R,24,0,2,,,,,,,83 +7898,356,77,6,28,3,,R,25,0,0,,,,,,,4 +7899,356,159,18,24,23,,R,26,0,0,,,,,,,4 +7900,356,114,33,29,0,,F,27,0,0,,,,,,,81 +7901,356,163,27,25,0,,F,28,0,0,,,,,,,81 +7902,356,148,44,33,0,,F,29,0,0,,,,,,,81 +7903,356,90,42,31,0,,F,30,0,0,,,,,,,81 +7904,356,133,35,21,0,,F,31,0,0,,,,,,,97 +7905,356,160,45,18,0,,F,32,0,0,,,,,,,97 +7906,356,161,48,39,0,,F,33,0,0,,,,,,,97 +7907,356,162,42,32,0,,F,34,0,0,,,,,,,97 +7908,356,164,39,41,0,,F,35,0,0,,,,,,,97 +7909,356,88,49,35,0,,F,36,0,0,,,,,,,97 +7910,356,140,46,36,0,,F,37,0,0,,,,,,,97 +7911,356,92,46,37,0,,F,38,0,0,,,,,,,97 +7912,357,102,1,1,1,1,1,1,9,58,26:51.2,5211245,,,,,1 +7913,357,117,1,2,2,2,2,2,6,58,40.225,5251470,,,,,1 +7914,357,145,22,19,7,3,3,3,4,57,,,,,,,11 +7915,357,123,3,5,6,4,4,4,3,57,,,,,,,11 +7916,357,118,21,9,12,5,5,5,2,57,,,,,,,11 +7917,357,156,25,3,25,6,6,6,1,57,,,,,,,11 +7918,357,133,35,21,9,7,7,7,0,57,,,,,,,11 +7919,357,99,39,40,18,8,8,8,0,57,,,,,,,11 +7920,357,158,21,10,21,9,9,9,0,56,,,,,,,12 +7921,357,110,35,22,16,10,10,10,0,56,,,,,,,12 +7922,357,65,22,20,23,11,11,11,0,56,,,,,,,12 +7923,357,78,45,17,14,12,12,12,0,52,,,,,,,20 +7924,357,84,34,7,22,,R,13,0,51,,,,,,,69 +7925,357,138,32,12,24,,N,14,0,46,,,,,,,62 +7926,357,159,18,24,15,,R,15,0,43,,,,,,,20 +7927,357,127,37,15,19,,R,16,0,39,,,,,,,7 +7928,357,137,32,11,8,,R,17,0,29,,,,,,,5 +7929,357,95,6,27,3,,R,18,0,23,,,,,,,6 +7930,357,119,3,6,4,,R,19,0,21,,,,,,,5 +7931,357,131,34,8,17,,R,20,0,19,,,,,,,20 +7932,357,94,18,23,11,,R,21,0,6,,,,,,,6 +7933,357,129,27,26,10,,D,22,0,4,,,,,,,2 +7934,357,77,6,28,5,,R,23,0,3,,,,,,,3 +7935,357,122,37,16,13,,R,24,0,1,,,,,,,20 +7936,357,112,33,30,20,,R,25,0,0,,,,,,,10 +7937,357,114,33,29,26,,R,26,0,0,,,,,,,10 +7938,357,105,25,4,0,,F,27,0,0,,,,,,,81 +7939,357,163,27,25,0,,F,28,0,0,,,,,,,81 +7940,357,157,48,38,0,,F,29,0,0,,,,,,,81 +7941,357,90,42,31,0,,F,30,0,0,,,,,,,81 +7942,357,92,46,37,0,,F,31,0,0,,,,,,,97 +7943,357,148,44,33,0,,F,32,0,0,,,,,,,97 +7944,357,160,45,18,0,,F,33,0,0,,,,,,,97 +7945,357,140,46,36,0,,F,34,0,0,,,,,,,97 +7946,357,164,39,41,0,,F,35,0,0,,,,,,,97 +7947,357,162,42,32,0,,F,36,0,0,,,,,,,97 +7948,357,88,49,35,0,,F,37,0,0,,,,,,,97 +7949,357,146,49,34,0,,F,38,0,0,,,,,,,97 +7950,357,161,48,39,0,,F,39,0,0,,,,,,,97 +7951,358,102,1,1,1,1,1,1,9,77,53:33.3,6813251,,,,,1 +7952,358,117,1,2,2,2,2,2,6,77,52.529,6865780,,,,,1 +7953,358,131,34,8,8,3,3,3,4,76,,,,,,,11 +7954,358,133,35,21,9,4,4,4,3,75,,,,,,,12 +7955,358,105,25,4,12,5,5,5,2,75,,,,,,,12 +7956,358,84,34,7,4,6,6,6,1,75,,,,,,,12 +7957,358,158,21,10,20,7,7,7,0,75,,,,,,,12 +7958,358,145,22,19,15,8,8,8,0,74,,,,,,,13 +7959,358,156,25,3,23,9,9,9,0,74,,,,,,,13 +7960,358,123,3,5,3,10,10,10,0,74,,,,,,,13 +7961,358,122,37,16,22,11,11,11,0,73,,,,,,,14 +7962,358,163,27,25,21,12,12,12,0,73,,,,,,,14 +7963,358,110,35,22,10,13,13,13,0,73,,,,,,,14 +7964,358,65,22,20,24,14,14,14,0,73,,,,,,,14 +7965,358,119,3,6,7,15,15,15,0,73,,,,,,,14 +7966,358,159,18,24,26,,R,16,0,48,,,,,,,25 +7967,358,99,39,40,13,,R,17,0,46,,,,,,,10 +7968,358,90,42,31,25,,R,18,0,44,,,,,,,6 +7969,358,112,33,30,17,,R,19,0,38,,,,,,,5 +7970,358,127,37,15,14,,R,20,0,36,,,,,,,5 +7971,358,137,32,11,19,,R,21,0,32,,,,,,,4 +7972,358,95,6,27,5,,R,22,0,30,,,,,,,6 +7973,358,162,42,32,18,,R,23,0,19,,,,,,,6 +7974,358,129,27,26,16,,R,24,0,4,,,,,,,6 +7975,358,94,18,23,11,,R,25,0,3,,,,,,,8 +7976,358,118,21,9,6,,R,26,0,2,,,,,,,10 +7977,358,157,48,38,0,,F,27,0,0,,,,,,,81 +7978,358,114,33,29,0,,F,28,0,0,,,,,,,81 +7979,358,138,32,12,0,,F,29,0,0,,,,,,,81 +7980,358,160,45,18,0,,F,30,0,0,,,,,,,97 +7981,358,140,46,36,0,,F,31,0,0,,,,,,,97 +7982,358,78,45,17,0,,F,32,0,0,,,,,,,97 +7983,358,146,49,34,0,,F,33,0,0,,,,,,,97 +7984,358,92,46,37,0,,F,34,0,0,,,,,,,97 +7985,358,148,44,33,0,,F,35,0,0,,,,,,,97 +7986,358,161,48,39,0,,F,36,0,0,,,,,,,97 +7987,358,88,49,35,0,,F,37,0,0,,,,,,,97 +7988,358,164,39,41,0,,F,38,0,0,,,,,,,97 +7989,359,102,1,1,1,1,1,1,9,69,35:21.4,5721431,,,,,1 +7990,359,119,3,6,5,2,2,2,6,69,15.56,5736991,,,,,1 +7991,359,105,25,4,7,3,3,3,4,69,31.254,5752685,,,,,1 +7992,359,145,22,19,13,4,4,4,3,69,45.495,5766926,,,,,1 +7993,359,117,1,2,2,5,5,5,2,69,56.113,5777544,,,,,1 +7994,359,99,39,40,17,6,6,6,1,68,,,,,,,11 +7995,359,158,21,10,24,7,7,7,0,68,,,,,,,11 +7996,359,129,27,26,11,8,8,8,0,68,,,,,,,11 +7997,359,84,34,7,20,9,9,9,0,68,,,,,,,11 +7998,359,131,34,8,9,10,10,10,0,68,,,,,,,11 +7999,359,137,32,11,26,11,11,11,0,68,,,,,,,11 +8000,359,157,48,38,23,12,12,12,0,67,,,,,,,12 +8001,359,133,35,21,19,13,13,13,0,67,,,,,,,12 +8002,359,163,27,25,25,14,14,14,0,66,,,,,,,13 +8003,359,65,22,20,18,15,15,15,0,66,,,,,,,13 +8004,359,94,18,23,22,,R,16,0,53,,,,,,,5 +8005,359,95,6,27,3,,R,17,0,43,,,,,,,6 +8006,359,118,21,9,10,,R,18,0,35,,,,,,,10 +8007,359,138,32,12,15,,R,19,0,35,,,,,,,20 +8008,359,112,33,30,16,,N,20,0,28,,,,,,,62 +8009,359,110,35,22,12,,R,21,0,20,,,,,,,22 +8010,359,77,6,28,6,,R,22,0,16,,,,,,,6 +8011,359,140,46,36,21,,R,23,0,16,,,,,,,7 +8012,359,123,3,5,8,,R,24,0,15,,,,,,,10 +8013,359,156,25,3,14,,R,25,0,9,,,,,,,37 +8014,359,122,37,16,4,,R,26,0,1,,,,,,,7 +8015,359,159,18,24,0,,F,27,0,0,,,,,,,81 +8016,359,127,37,15,0,,F,28,0,0,,,,,,,81 +8017,359,114,33,29,0,,F,29,0,0,,,,,,,81 +8018,359,90,42,31,0,,F,30,0,0,,,,,,,81 +8019,359,92,46,37,0,,F,31,0,0,,,,,,,97 +8020,359,148,44,33,0,,F,32,0,0,,,,,,,97 +8021,359,78,45,17,0,,F,33,0,0,,,,,,,97 +8022,359,161,48,39,0,,F,34,0,0,,,,,,,97 +8023,359,146,49,34,0,,F,35,0,0,,,,,,,97 +8024,359,88,49,35,0,,F,36,0,0,,,,,,,97 +8025,359,160,45,18,0,,F,37,0,0,,,,,,,97 +8026,359,164,39,41,0,,F,38,0,0,,,,,,,97 +8027,359,162,42,32,0,,F,39,0,0,,,,,,,97 +8028,360,117,1,2,2,1,1,1,9,75,01:33.1,7293133,,,,,1 +8029,360,119,3,6,14,2,2,2,6,75,39.696,7332829,,,,,1 +8030,360,158,21,10,17,3,3,3,4,75,43.21,7336343,,,,,1 +8031,360,157,48,38,26,4,4,4,3,74,,,,,,,11 +8032,360,65,22,20,25,5,5,5,2,74,,,,,,,11 +8033,360,123,3,5,16,6,6,6,1,74,,,,,,,11 +8034,360,99,39,40,24,7,7,7,0,73,,,,,,,5 +8035,360,110,35,22,13,8,8,8,0,70,,,,,,,15 +8036,360,156,25,3,21,9,9,9,0,69,,,,,,,69 +8037,360,77,6,28,8,,R,10,0,61,,,,,,,91 +8038,360,133,35,21,6,,R,11,0,52,,,,,,,4 +8039,360,137,32,11,22,,R,12,0,52,,,,,,,20 +8040,360,140,46,36,19,,R,13,0,50,,,,,,,22 +8041,360,159,18,24,20,,R,14,0,46,,,,,,,5 +8042,360,102,1,1,1,,R,15,0,44,,,,,,,10 +8043,360,84,34,7,5,,R,16,0,43,,,,,,,23 +8044,360,131,34,8,7,,R,17,0,37,,,,,,,23 +8045,360,95,6,27,4,,R,18,0,31,,,,,,,91 +8046,360,94,18,23,15,,R,19,0,26,,,,,,,5 +8047,360,138,32,12,23,,R,20,0,24,,,,,,,37 +8048,360,122,37,16,11,,R,21,0,22,,,,,,,7 +8049,360,127,37,15,18,,R,22,0,20,,,,,,,23 +8050,360,105,25,4,9,,R,23,0,17,,,,,,,6 +8051,360,145,22,19,3,,R,24,0,10,,,,,,,68 +8052,360,118,21,9,10,,R,25,0,7,,,,,,,4 +8053,360,112,33,30,12,,R,26,0,3,,,,,,,20 +8054,360,129,27,26,0,,F,27,0,0,,,,,,,81 +8055,360,90,42,31,0,,F,28,0,0,,,,,,,81 +8056,360,163,27,25,0,,F,29,0,0,,,,,,,81 +8057,360,114,33,29,0,,F,30,0,0,,,,,,,81 +8058,360,160,45,18,0,,F,31,0,0,,,,,,,97 +8059,360,162,42,32,0,,F,32,0,0,,,,,,,97 +8060,360,148,44,33,0,,F,33,0,0,,,,,,,97 +8061,360,78,45,17,0,,F,34,0,0,,,,,,,97 +8062,360,164,39,41,0,,F,35,0,0,,,,,,,97 +8063,360,161,48,39,0,,F,36,0,0,,,,,,,97 +8064,360,88,49,35,0,,F,37,0,0,,,,,,,97 +8065,360,146,49,34,0,,F,38,0,0,,,,,,,97 +8066,360,92,46,37,0,,F,39,0,0,,,,,,,97 +8067,361,123,3,5,6,1,1,1,9,69,01:24.1,7284073,,,,,1 +8068,361,119,3,6,3,2,2,2,6,69,30.007,7314080,,,,,1 +8069,361,110,35,22,9,3,3,3,4,69,+1:36.649,7380722,,,,,1 +8070,361,137,32,11,19,4,4,4,3,69,+1:41.484,7385557,,,,,1 +8071,361,163,27,25,22,5,5,5,2,68,,,,,,,11 +8072,361,133,35,21,8,6,6,6,1,67,,,,,,,12 +8073,361,102,1,1,2,7,7,7,0,66,,,,,,,5 +8074,361,157,48,38,23,8,8,8,0,66,,,,,,,13 +8075,361,90,42,31,26,,R,9,0,57,,,,,,,24 +8076,361,118,21,9,12,,R,10,0,40,,,,,,,5 +8077,361,156,25,3,14,,R,11,0,35,,,,,,,20 +8078,361,78,45,17,15,,R,12,0,33,,,,,,,10 +8079,361,122,37,16,21,,R,13,0,28,,,,,,,20 +8080,361,112,33,30,10,,R,14,0,26,,,,,,,20 +8081,361,140,46,36,18,,D,15,0,13,,,,,,,2 +8082,361,159,18,24,24,,R,16,0,11,,,,,,,20 +8083,361,127,37,15,17,,R,17,0,11,,,,,,,10 +8084,361,77,6,28,4,,R,18,0,6,,,,,,,6 +8085,361,99,39,40,25,,R,19,0,6,,,,,,,20 +8086,361,158,21,10,16,,R,20,0,3,,,,,,,20 +8087,361,117,1,2,1,,R,21,0,2,,,,,,,22 +8088,361,95,6,27,5,,D,22,0,0,,,,,,,2 +8089,361,131,34,8,7,,R,23,0,0,,,,,,,3 +8090,361,94,18,23,11,,R,24,0,0,,,,,,,3 +8091,361,145,22,19,13,,D,25,0,0,,,,,,,2 +8092,361,105,25,4,20,,R,26,0,0,,,,,,,10 +8093,361,138,32,12,0,,F,27,0,0,,,,,,,81 +8094,361,114,33,29,0,,F,28,0,0,,,,,,,81 +8095,361,65,22,20,0,,F,29,0,0,,,,,,,81 +8096,361,129,27,26,0,,F,30,0,0,,,,,,,81 +8097,361,84,34,7,0,,F,31,0,0,,,,,,,97 +8098,361,92,46,37,0,,F,32,0,0,,,,,,,97 +8099,361,148,44,33,0,,F,33,0,0,,,,,,,97 +8100,361,160,45,18,0,,F,34,0,0,,,,,,,97 +8101,361,146,49,34,0,,F,35,0,0,,,,,,,97 +8102,361,164,39,41,0,,F,36,0,0,,,,,,,97 +8103,361,161,48,39,0,,F,37,0,0,,,,,,,97 +8104,361,88,49,35,0,,F,38,0,0,,,,,,,97 +8105,361,162,42,32,0,,F,39,0,0,,,,,,,97 +8106,362,117,1,2,1,1,1,1,9,80,38:29.4,5909411,,,,,1 +8107,362,95,6,27,3,2,2,2,6,80,44.017,5953428,,,,,1 +8108,362,119,3,6,8,3,3,3,4,80,+1:06.921,5976332,,,,,1 +8109,362,55,25,4,16,4,4,4,3,80,+1:13.232,5982643,,,,,1 +8110,362,140,46,36,13,5,5,5,2,79,,,,,,,11 +8111,362,129,27,26,17,6,6,6,1,79,,,,,,,11 +8112,362,158,21,10,25,7,7,7,0,79,,,,,,,11 +8113,362,137,32,11,20,8,8,8,0,78,,,,,,,12 +8114,362,139,22,20,24,9,9,9,0,78,,,,,,,12 +8115,362,156,25,3,9,10,10,10,0,78,,,,,,,12 +8116,362,103,33,29,15,11,11,11,0,77,,,,,,,13 +8117,362,151,21,9,14,12,12,12,0,77,,,,,,,13 +8118,362,92,46,37,11,13,13,13,0,76,,,,,,,5 +8119,362,127,37,15,10,,N,14,0,71,,,,,,,62 +8120,362,131,34,8,22,,R,15,0,67,,,,,,,5 +8121,362,123,3,5,5,,R,16,0,50,,,,,,,6 +8122,362,138,32,12,19,,R,17,0,49,,,,,,,5 +8123,362,122,37,16,12,,R,18,0,43,,,,,,,5 +8124,362,145,22,19,4,,R,19,0,40,,,,,,,22 +8125,362,94,18,23,23,,R,20,0,31,,,,,,,5 +8126,362,112,33,30,7,,R,21,0,30,,,,,,,5 +8127,362,99,39,40,21,,R,22,0,30,,,,,,,5 +8128,362,77,6,28,6,,R,23,0,29,,,,,,,8 +8129,362,133,35,21,26,,R,24,0,27,,,,,,,8 +8130,362,163,27,25,18,,R,25,0,14,,,,,,,6 +8131,362,102,1,1,2,,R,26,0,0,,,,,,,24 +8132,362,110,35,22,0,,F,27,0,0,,,,,,,81 +8133,362,159,18,24,0,,F,28,0,0,,,,,,,81 +8134,362,157,48,38,0,,F,29,0,0,,,,,,,81 +8135,362,90,42,31,0,,F,30,0,0,,,,,,,81 +8136,362,78,45,17,0,,F,31,0,0,,,,,,,97 +8137,362,84,34,7,0,,F,32,0,0,,,,,,,97 +8138,362,161,48,39,0,,F,33,0,0,,,,,,,97 +8139,362,146,49,34,0,,F,34,0,0,,,,,,,97 +8140,362,160,45,18,0,,F,35,0,0,,,,,,,97 +8141,362,162,42,32,0,,F,36,0,0,,,,,,,97 +8142,362,88,49,35,0,,F,37,0,0,,,,,,,97 +8143,362,148,44,33,0,,F,38,0,0,,,,,,,97 +8144,362,164,39,41,0,,F,39,0,0,,,,,,,97 +8145,363,117,1,2,2,1,1,1,9,64,19:22.1,4762131,,,,,1 +8146,363,95,6,27,3,2,2,2,6,64,19.369,4781500,,,,,1 +8147,363,145,22,19,9,3,3,3,4,64,48.019,4810150,,,,,1 +8148,363,137,32,11,10,4,4,4,3,64,+1:06.735,4828866,,,,,1 +8149,363,94,18,23,11,5,5,5,2,63,,,,,,,11 +8150,363,159,18,24,15,6,6,6,1,63,,,,,,,11 +8151,363,129,27,26,24,7,7,7,0,63,,,,,,,11 +8152,363,138,32,12,16,8,8,8,0,63,,,,,,,11 +8153,363,118,21,9,19,9,9,9,0,62,,,,,,,12 +8154,363,123,3,5,7,10,10,10,0,62,,,,,,,12 +8155,363,139,22,20,26,11,11,11,0,62,,,,,,,12 +8156,363,92,46,37,21,12,12,12,0,62,,,,,,,12 +8157,363,127,37,15,6,,R,13,0,54,,,,,,,6 +8158,363,84,34,7,20,,R,14,0,49,,,,,,,5 +8159,363,77,6,28,4,,R,15,0,49,,,,,,,66 +8160,363,103,33,29,13,,R,16,0,46,,,,,,,5 +8161,363,112,33,30,12,,R,17,0,39,,,,,,,5 +8162,363,156,25,3,18,,R,18,0,32,,,,,,,20 +8163,363,131,34,8,14,,R,19,0,31,,,,,,,5 +8164,363,55,25,4,22,,R,20,0,28,,,,,,,20 +8165,363,78,45,17,17,,R,21,0,23,,,,,,,64 +8166,363,119,3,6,5,,R,22,0,19,,,,,,,21 +8167,363,122,37,16,8,,R,23,0,15,,,,,,,7 +8168,363,110,35,22,25,,R,24,0,16,,,,,,,5 +8169,363,102,1,1,1,,R,25,0,11,,,,,,,20 +8170,363,90,42,31,23,,R,26,0,2,,,,,,,6 +8171,363,163,27,25,0,,F,27,0,0,,,,,,,81 +8172,363,158,21,10,0,,F,28,0,0,,,,,,,81 +8173,363,99,39,40,0,,F,29,0,0,,,,,,,81 +8174,363,157,48,38,0,,F,30,0,0,,,,,,,81 +8175,363,140,46,36,0,,F,31,0,0,,,,,,,97 +8176,363,133,35,21,0,,F,32,0,0,,,,,,,97 +8177,363,148,44,33,0,,F,33,0,0,,,,,,,97 +8178,363,160,45,18,0,,F,34,0,0,,,,,,,97 +8179,363,114,39,41,0,,F,35,0,0,,,,,,,97 +8180,363,146,49,34,0,,F,36,0,0,,,,,,,97 +8181,363,162,42,32,0,,F,37,0,0,,,,,,,97 +8182,363,88,49,35,0,,F,38,0,0,,,,,,,97 +8183,363,161,48,39,0,,F,39,0,0,,,,,,,97 +8184,364,102,1,1,1,1,1,1,9,45,21:43.3,4903302,,,,,1 +8185,364,117,1,2,2,2,2,2,6,45,18.151,4921453,,,,,1 +8186,364,95,6,27,3,3,3,3,4,45,+1:23.254,4986556,,,,,1 +8187,364,119,3,6,5,4,4,4,3,44,,,,,,,11 +8188,364,137,32,11,8,5,5,5,2,44,,,,,,,11 +8189,364,118,21,9,17,6,6,6,1,44,,,,,,,11 +8190,364,110,35,22,21,7,7,7,0,44,,,,,,,11 +8191,364,84,34,7,12,8,8,8,0,44,,,,,,,11 +8192,364,94,18,23,13,9,9,9,0,44,,,,,,,11 +8193,364,55,25,4,10,10,10,10,0,43,,,,,,,12 +8194,364,163,27,25,23,11,11,11,0,42,,,,,,,13 +8195,364,158,21,10,25,12,12,12,0,40,,,,,,,69 +8196,364,131,34,8,16,,R,13,0,37,,,,,,,5 +8197,364,138,32,12,18,,R,14,0,36,,,,,,,20 +8198,364,122,37,16,22,,R,15,0,32,,,,,,,10 +8199,364,127,37,15,14,,R,16,0,28,,,,,,,6 +8200,364,139,22,20,9,,R,17,0,26,,,,,,,20 +8201,364,112,33,30,15,,R,18,0,20,,,,,,,44 +8202,364,156,25,3,19,,R,19,0,16,,,,,,,5 +8203,364,77,6,28,4,,R,20,0,13,,,,,,,20 +8204,364,140,46,36,24,,R,21,0,8,,,,,,,25 +8205,364,145,22,19,7,,R,22,0,6,,,,,,,10 +8206,364,123,3,5,6,,R,23,0,4,,,,,,,4 +8207,364,133,35,21,20,,R,24,0,2,,,,,,,5 +8208,364,105,33,29,26,,R,25,0,1,,,,,,,10 +8209,364,129,27,26,11,,R,26,0,0,,,,,,,6 +8210,364,159,18,24,0,,F,27,0,0,,,,,,,81 +8211,364,92,46,37,0,,F,28,0,0,,,,,,,81 +8212,364,157,48,38,0,,F,29,0,0,,,,,,,81 +8213,364,161,48,39,0,,D,30,0,0,,,,,,,2 +8214,364,114,39,41,0,,F,31,0,0,,,,,,,97 +8215,364,78,45,17,0,,F,32,0,0,,,,,,,97 +8216,364,99,39,40,0,,F,33,0,0,,,,,,,97 +8217,364,160,45,18,0,,F,34,0,0,,,,,,,97 +8218,364,90,42,31,0,,F,35,0,0,,,,,,,97 +8219,364,162,42,32,0,,F,36,0,0,,,,,,,97 +8220,364,148,44,33,0,,F,37,0,0,,,,,,,97 +8221,364,88,49,35,0,,F,38,0,0,,,,,,,97 +8222,365,95,6,27,12,1,1,1,9,77,49:38.7,6578650,,,,,1 +8223,365,102,1,1,2,2,2,2,6,77,25.967,6604617,,,,,1 +8224,365,123,3,5,4,3,3,3,4,77,38.354,6617004,,,,,1 +8225,365,117,1,2,5,4,4,4,3,77,44.177,6622827,,,,,1 +8226,365,158,21,10,16,5,5,5,2,77,45.106,6623756,,,,,1 +8227,365,137,32,11,17,6,6,6,1,77,+1:12.039,6650689,,,,,1 +8228,365,133,35,21,3,7,7,7,0,77,+1:24.225,6662875,,,,,1 +8229,365,139,22,20,25,8,8,8,0,76,,,,,,,11 +8230,365,55,25,4,11,9,9,9,0,76,,,,,,,11 +8231,365,118,21,9,9,10,10,10,0,76,,,,,,,11 +8232,365,131,34,8,8,11,11,11,0,76,,,,,,,11 +8233,365,84,34,7,15,12,12,12,0,75,,,,,,,12 +8234,365,156,25,3,19,13,13,13,0,73,,,,,,,14 +8235,365,159,18,24,23,,R,14,0,57,,,,,,,4 +8236,365,77,6,28,6,,R,15,0,56,,,,,,,6 +8237,365,119,3,6,1,,R,16,0,54,,,,,,,21 +8238,365,140,46,36,24,,R,17,0,48,,,,,,,6 +8239,365,145,22,19,7,,R,18,0,46,,,,,,,6 +8240,365,92,46,37,21,,R,19,0,38,,,,,,,6 +8241,365,138,32,12,20,,R,20,0,33,,,,,,,3 +8242,365,127,37,15,13,,R,21,0,27,,,,,,,10 +8243,365,122,37,16,14,,R,22,0,26,,,,,,,36 +8244,365,105,33,29,26,,R,23,0,26,,,,,,,5 +8245,365,160,45,18,22,,R,24,0,20,,,,,,,10 +8246,365,94,18,23,10,,R,25,0,9,,,,,,,36 +8247,365,110,35,22,18,,R,26,0,0,,,,,,,8 +8248,365,163,27,25,0,,F,27,0,0,,,,,,,81 +8249,365,129,27,26,0,,F,28,0,0,,,,,,,81 +8250,365,157,48,38,0,,F,29,0,0,,,,,,,81 +8251,365,161,48,39,0,,F,30,0,0,,,,,,,81 +8252,365,78,45,17,0,,F,31,0,0,,,,,,,97 +8253,365,112,33,30,0,,F,32,0,0,,,,,,,97 +8254,365,114,39,41,0,,F,33,0,0,,,,,,,97 +8255,365,146,49,34,0,,F,34,0,0,,,,,,,97 +8256,365,99,39,40,0,,F,35,0,0,,,,,,,97 +8257,365,90,42,31,0,,F,36,0,0,,,,,,,97 +8258,365,148,44,33,0,,F,37,0,0,,,,,,,97 +8259,365,88,49,35,0,,F,38,0,0,,,,,,,97 +8260,365,162,42,32,0,,F,39,0,0,,,,,,,97 +8261,366,102,1,1,1,1,1,1,9,44,40:54.2,6054196,,,,,1 +8262,366,117,1,2,2,2,2,2,6,44,1.304,6055500,,,,,1 +8263,366,95,6,27,6,3,3,3,4,44,1.824,6056020,,,,,1 +8264,366,123,3,5,4,4,4,4,3,44,54.408,6108604,,,,,1 +8265,366,145,22,19,7,5,5,5,2,44,+1:08.805,6123001,,,,,1 +8266,366,118,21,9,10,6,6,6,1,44,+1:18.316,6132512,,,,,1 +8267,366,127,37,15,9,7,7,7,0,43,,,,,,,11 +8268,366,140,46,36,15,8,8,8,0,43,,,,,,,11 +8269,366,94,18,23,14,9,9,9,0,43,,,,,,,11 +8270,366,139,22,20,13,10,10,10,0,43,,,,,,,11 +8271,366,110,35,22,18,11,11,11,0,43,,,,,,,11 +8272,366,122,37,16,19,12,12,12,0,43,,,,,,,11 +8273,366,129,27,26,26,13,13,13,0,43,,,,,,,11 +8274,366,156,25,3,21,14,14,14,0,42,,,,,,,12 +8275,366,159,18,24,25,15,15,15,0,41,,,,,,,13 +8276,366,112,33,30,11,16,16,16,0,39,,,,,,,5 +8277,366,158,21,10,24,,R,17,0,38,,,,,,,36 +8278,366,92,46,37,23,,R,18,0,21,,,,,,,20 +8279,366,119,3,6,5,,R,19,0,20,,,,,,,4 +8280,366,105,33,29,22,,R,20,0,19,,,,,,,4 +8281,366,133,35,21,12,,R,21,0,13,,,,,,,20 +8282,366,84,34,7,20,,R,22,0,12,,,,,,,23 +8283,366,77,6,28,3,,R,23,0,9,,,,,,,20 +8284,366,131,34,8,8,,R,24,0,9,,,,,,,64 +8285,366,163,27,25,17,,R,25,0,4,,,,,,,4 +8286,366,65,25,4,16,,R,26,0,3,,,,,,,20 +8287,366,138,32,12,0,,F,27,0,0,,,,,,,81 +8288,366,137,32,11,0,,F,28,0,0,,,,,,,81 +8289,366,157,48,38,0,,F,29,0,0,,,,,,,81 +8290,366,162,48,39,0,,F,30,0,0,,,,,,,81 +8291,366,78,45,17,0,,F,31,0,0,,,,,,,97 +8292,366,160,45,18,0,,F,32,0,0,,,,,,,97 +8293,366,90,42,31,0,,F,33,0,0,,,,,,,97 +8294,366,99,39,40,0,,F,34,0,0,,,,,,,97 +8295,366,146,49,34,0,,F,35,0,0,,,,,,,97 +8296,366,88,49,35,0,,F,36,0,0,,,,,,,97 +8297,366,114,39,41,0,,F,37,0,0,,,,,,,97 +8298,366,148,44,33,0,,F,38,0,0,,,,,,,97 +8299,366,134,42,32,0,,F,39,0,0,,,,,,,97 +8300,367,117,1,2,4,1,1,1,9,53,19:27.5,4767550,,,,,1 +8301,367,77,6,28,2,2,2,2,6,53,7.326,4774876,,,,,1 +8302,367,123,3,5,6,3,3,3,4,53,14.975,4782525,,,,,1 +8303,367,119,3,6,5,4,4,4,3,53,38.722,4806272,,,,,1 +8304,367,55,25,4,10,5,5,5,2,52,,,,,,,11 +8305,367,84,34,7,12,6,6,6,1,52,,,,,,,11 +8306,367,94,18,23,15,7,7,7,0,52,,,,,,,11 +8307,367,159,18,24,26,8,8,8,0,51,,,,,,,12 +8308,367,163,27,25,23,9,9,9,0,51,,,,,,,12 +8309,367,138,32,12,19,10,10,10,0,51,,,,,,,22 +8310,367,133,35,21,20,11,11,11,0,47,,,,,,,5 +8311,367,110,35,22,17,,R,12,0,45,,,,,,,5 +8312,367,102,1,1,1,,R,13,0,44,,,,,,,5 +8313,367,95,6,27,3,,R,14,0,41,,,,,,,6 +8314,367,92,46,37,22,,R,15,0,38,,,,,,,21 +8315,367,145,22,19,8,,R,16,0,33,,,,,,,23 +8316,367,122,37,16,18,,R,17,0,30,,,,,,,5 +8317,367,129,27,26,21,,R,18,0,30,,,,,,,43 +8318,367,137,32,11,11,,R,19,0,23,,,,,,,20 +8319,367,156,25,3,14,,R,20,0,18,,,,,,,5 +8320,367,118,21,9,16,,R,21,0,18,,,,,,,69 +8321,367,78,45,17,24,,R,22,0,16,,,,,,,6 +8322,367,105,33,29,13,,R,23,0,14,,,,,,,10 +8323,367,127,37,15,25,,R,24,0,14,,,,,,,37 +8324,367,112,33,30,7,,R,25,0,1,,,,,,,20 +8325,367,139,22,20,9,,R,26,0,0,,,,,,,7 +8326,367,131,34,8,0,,D,27,0,0,,,,,,,2 +8327,367,158,21,10,0,,F,28,0,0,,,,,,,81 +8328,367,157,48,38,0,,F,29,0,0,,,,,,,81 +8329,367,162,48,39,0,,F,30,0,0,,,,,,,81 +8330,367,140,46,36,0,,F,31,0,0,,,,,,,97 +8331,367,99,39,40,0,,F,32,0,0,,,,,,,97 +8332,367,90,42,31,0,,F,33,0,0,,,,,,,97 +8333,367,160,45,18,0,,F,34,0,0,,,,,,,97 +8334,367,146,49,34,0,,F,35,0,0,,,,,,,97 +8335,367,88,49,35,0,,F,36,0,0,,,,,,,97 +8336,367,165,44,33,0,,F,37,0,0,,,,,,,97 +8337,367,114,39,41,0,,F,38,0,0,,,,,,,97 +8338,367,134,42,32,0,,F,39,0,0,,,,,,,97 +8339,368,77,6,28,2,1,1,1,9,71,36:48.5,5808546,,,,,1 +8340,368,117,1,2,4,2,2,2,6,71,32.637,5841183,,,,,1 +8341,368,140,46,36,12,3,3,3,4,71,55.325,5863871,,,,,1 +8342,368,145,22,19,13,4,4,4,3,71,+1:22.369,5890915,,,,,1 +8343,368,94,18,23,5,5,5,5,2,70,,,,,,,11 +8344,368,156,25,3,18,6,6,6,1,70,,,,,,,11 +8345,368,138,32,12,25,7,7,7,0,70,,,,,,,11 +8346,368,84,34,7,10,8,8,8,0,70,,,,,,,11 +8347,368,112,33,30,17,9,9,9,0,70,,,,,,,11 +8348,368,127,37,15,14,10,10,10,0,69,,,,,,,12 +8349,368,105,33,29,21,11,11,11,0,69,,,,,,,12 +8350,368,159,18,24,9,12,12,12,0,69,,,,,,,12 +8351,368,163,27,25,23,13,13,13,0,69,,,,,,,12 +8352,368,131,34,8,11,14,14,14,0,69,,,,,,,12 +8353,368,119,3,6,6,,R,15,0,60,,,,,,,25 +8354,368,123,3,5,8,,R,16,0,60,,,,,,,25 +8355,368,102,1,1,1,,R,17,0,48,,,,,,,4 +8356,368,95,6,27,3,,D,18,0,48,,,,,,,2 +8357,368,118,21,9,22,,R,19,0,37,,,,,,,3 +8358,368,137,32,11,20,,R,20,0,33,,,,,,,4 +8359,368,133,35,21,7,,R,21,0,33,,,,,,,4 +8360,368,139,22,20,16,,R,22,0,29,,,,,,,22 +8361,368,122,37,16,24,,R,23,0,25,,,,,,,5 +8362,368,158,21,10,26,,R,24,0,24,,,,,,,20 +8363,368,110,35,22,19,,R,25,0,17,,,,,,,10 +8364,368,90,42,31,15,,R,26,0,11,,,,,,,10 +8365,368,65,25,4,0,,F,27,0,0,,,,,,,81 +8366,368,129,27,26,0,,F,28,0,0,,,,,,,81 +8367,368,162,48,39,0,,F,29,0,0,,,,,,,81 +8368,368,157,48,38,0,,F,30,0,0,,,,,,,81 +8369,368,114,39,41,0,,F,31,0,0,,,,,,,97 +8370,368,109,46,37,0,,F,32,0,0,,,,,,,97 +8371,368,160,45,18,0,,F,33,0,0,,,,,,,97 +8372,368,165,44,33,0,,F,34,0,0,,,,,,,97 +8373,368,99,39,40,0,,F,35,0,0,,,,,,,97 +8374,368,78,45,17,0,,F,36,0,0,,,,,,,97 +8375,368,88,49,35,0,,F,37,0,0,,,,,,,97 +8376,368,146,49,34,0,,F,38,0,0,,,,,,,97 +8377,368,134,42,32,0,,F,39,0,0,,,,,,,97 +8378,369,102,1,1,1,1,1,1,9,73,47:48.3,6468264,,,,,1 +8379,369,77,6,28,2,2,2,2,6,73,27.051,6495315,,,,,1 +8380,369,117,1,2,3,3,3,3,4,73,53.788,6522052,,,,,1 +8381,369,55,25,4,9,4,4,4,3,72,,,,,,,11 +8382,369,119,3,6,6,5,5,5,2,72,,,,,,,11 +8383,369,112,33,30,5,6,6,6,1,72,,,,,,,11 +8384,369,110,35,22,15,7,7,7,0,72,,,,,,,11 +8385,369,137,32,11,7,8,8,8,0,71,,,,,,,12 +8386,369,118,21,9,16,9,9,9,0,71,,,,,,,12 +8387,369,156,25,3,13,10,10,10,0,71,,,,,,,12 +8388,369,158,21,10,22,,R,11,0,61,,,,,,,5 +8389,369,139,22,20,10,,R,12,0,59,,,,,,,20 +8390,369,133,35,21,23,,R,13,0,55,,,,,,,5 +8391,369,84,34,7,8,,R,14,0,51,,,,,,,20 +8392,369,127,37,15,26,,R,15,0,47,,,,,,,4 +8393,369,159,18,24,20,,R,16,0,47,,,,,,,20 +8394,369,123,3,5,21,,R,17,0,40,,,,,,,48 +8395,369,129,27,26,24,,R,18,0,34,,,,,,,5 +8396,369,94,18,23,4,,R,19,0,27,,,,,,,20 +8397,369,122,37,16,19,,R,20,0,23,,,,,,,7 +8398,369,109,46,37,17,,R,21,0,20,,,,,,,6 +8399,369,160,45,18,25,,R,22,0,17,,,,,,,6 +8400,369,145,22,19,14,,R,23,0,14,,,,,,,20 +8401,369,131,34,8,12,,R,24,0,11,,,,,,,10 +8402,369,78,45,17,11,,R,25,0,6,,,,,,,22 +8403,369,138,32,12,18,,R,26,0,0,,,,,,,4 +8404,369,163,27,25,0,,F,27,0,0,,,,,,,81 +8405,369,162,48,39,0,,F,28,0,0,,,,,,,81 +8406,369,148,48,38,0,,F,29,0,0,,,,,,,81 +8407,369,99,39,40,0,,F,30,0,0,,,,,,,97 +8408,369,140,46,36,0,,F,31,0,0,,,,,,,97 +8409,369,90,42,31,0,,F,32,0,0,,,,,,,97 +8410,369,105,33,29,0,,F,33,0,0,,,,,,,97 +8411,369,88,49,35,0,,F,34,0,0,,,,,,,97 +8412,369,114,39,41,0,,F,35,0,0,,,,,,,97 +8413,369,146,49,34,0,,F,36,0,0,,,,,,,97 +8414,369,165,44,33,0,,F,37,0,0,,,,,,,97 +8415,369,134,42,32,0,,F,38,0,0,,,,,,,97 +8416,370,145,22,19,6,1,1,1,9,53,35:06.3,5706277,,,,,1 +8417,370,119,3,6,5,2,2,2,6,53,11.904,5718181,,,,,1 +8418,370,123,3,5,7,3,3,3,4,53,13.446,5719723,,,,,1 +8419,370,137,32,11,11,4,4,4,3,53,+1:44.225,5810502,,,,,1 +8420,370,84,34,7,13,5,5,5,2,52,,,,,,,11 +8421,370,118,21,9,25,6,6,6,1,52,,,,,,,11 +8422,370,127,37,15,20,7,7,7,0,52,,,,,,,11 +8423,370,158,21,10,24,8,8,8,0,52,,,,,,,11 +8424,370,133,35,21,15,9,9,9,0,52,,,,,,,11 +8425,370,110,35,22,16,10,10,10,0,51,,,,,,,12 +8426,370,102,1,1,1,,D,11,0,53,,,,,,,2 +8427,370,117,1,2,2,,R,12,0,46,,,,,,,4 +8428,370,131,34,8,9,,R,13,0,46,,,,,,,5 +8429,370,95,6,27,4,,R,14,0,43,,,,,,,5 +8430,370,138,32,12,12,,R,15,0,41,,,,,,,5 +8431,370,55,25,4,18,,R,16,0,37,,,,,,,6 +8432,370,112,33,30,8,,R,17,0,36,,,,,,,5 +8433,370,77,6,28,3,,R,18,0,34,,,,,,,6 +8434,370,139,22,20,22,,R,19,0,33,,,,,,,4 +8435,370,129,27,26,23,,R,20,0,31,,,,,,,5 +8436,370,122,37,16,17,,R,21,0,27,,,,,,,22 +8437,370,78,45,17,10,,R,22,0,21,,,,,,,23 +8438,370,156,25,3,26,,R,23,0,20,,,,,,,95 +8439,370,146,49,34,21,,R,24,0,1,,,,,,,6 +8440,370,159,18,24,14,,R,25,0,0,,,,,,,4 +8441,370,147,18,23,19,,R,26,0,0,,,,,,,8 +8442,370,163,27,25,0,,F,27,0,0,,,,,,,81 +8443,370,105,33,29,0,,F,28,0,0,,,,,,,81 +8444,370,162,48,38,0,,F,29,0,0,,,,,,,81 +8445,370,92,48,39,0,,F,30,0,0,,,,,,,81 +8446,370,160,45,18,0,,F,31,0,0,,,,,,,97 +8447,370,90,42,31,0,,F,32,0,0,,,,,,,97 +8448,370,140,46,36,0,,F,33,0,0,,,,,,,97 +8449,370,88,49,35,0,,F,34,0,0,,,,,,,97 +8450,370,165,44,33,0,,F,35,0,0,,,,,,,97 +8451,370,109,46,37,0,,F,36,0,0,,,,,,,97 +8452,370,99,39,40,0,,F,37,0,0,,,,,,,97 +8453,370,114,39,41,0,,F,38,0,0,,,,,,,97 +8454,370,134,42,32,0,,F,39,0,0,,,,,,,97 +8455,371,123,3,5,5,1,1,1,9,70,00:17.4,7217421,,,,,1 +8456,371,145,22,19,4,2,2,2,6,70,28.658,7246079,,,,,1 +8457,371,119,3,6,6,3,3,3,4,70,37.683,7255104,,,,,1 +8458,371,138,32,12,23,4,4,4,3,70,42.331,7259752,,,,,1 +8459,371,139,22,20,13,5,5,5,2,68,,,,,,,12 +8460,371,94,18,23,3,6,6,6,1,67,,,,,,,13 +8461,371,127,37,15,25,7,7,7,0,66,,,,,,,14 +8462,371,131,34,8,8,8,8,8,0,64,,,,,,,16 +8463,371,158,21,10,22,,R,9,0,42,,,,,,,20 +8464,371,109,46,37,17,,R,10,0,27,,,,,,,10 +8465,371,129,27,26,24,,R,11,0,22,,,,,,,20 +8466,371,137,32,11,18,,R,12,0,19,,,,,,,4 +8467,371,160,45,18,21,,R,13,0,18,,,,,,,4 +8468,371,95,6,27,7,,R,14,0,17,,,,,,,20 +8469,371,102,1,1,1,,R,15,0,13,,,,,,,4 +8470,371,133,35,21,10,,R,16,0,13,,,,,,,20 +8471,371,122,37,16,16,,R,17,0,13,,,,,,,21 +8472,371,110,35,22,9,,R,18,0,12,,,,,,,20 +8473,371,84,34,7,12,,R,19,0,12,,,,,,,4 +8474,371,118,21,9,20,,R,20,0,7,,,,,,,20 +8475,371,112,33,30,19,,R,21,0,6,,,,,,,4 +8476,371,77,6,28,14,,R,22,0,6,,,,,,,4 +8477,371,55,25,4,15,,R,23,0,5,,,,,,,10 +8478,371,163,27,25,26,,R,24,0,4,,,,,,,4 +8479,371,117,1,2,2,,R,25,0,0,,,,,,,54 +8480,371,78,45,17,11,,R,26,0,0,,,,,,,10 +8481,371,156,25,3,0,,F,27,0,0,,,,,,,81 +8482,371,159,18,24,0,,F,28,0,0,,,,,,,81 +8483,371,92,48,39,0,,F,29,0,0,,,,,,,81 +8484,371,162,48,38,0,,F,30,0,0,,,,,,,81 +8485,371,140,46,36,0,,F,31,0,0,,,,,,,97 +8486,371,105,33,29,0,,F,32,0,0,,,,,,,97 +8487,371,146,49,34,0,,F,33,0,0,,,,,,,97 +8488,371,90,42,31,0,,F,34,0,0,,,,,,,97 +8489,371,165,44,33,0,,F,35,0,0,,,,,,,97 +8490,371,88,49,35,0,,F,36,0,0,,,,,,,97 +8491,371,114,39,41,0,,F,37,0,0,,,,,,,97 +8492,371,99,39,40,0,,F,38,0,0,,,,,,,97 +8493,371,134,42,32,0,,F,39,0,0,,,,,,,97 +8494,372,117,1,11,3,1,1,1,9,60,36:06.9,5766857,,,,,1 +8495,372,77,6,28,4,2,2,2,6,60,9.873,5776730,,,,,1 +8496,372,137,32,1,5,3,3,3,4,60,+1:08.591,5835448,,,,,1 +8497,372,118,21,17,11,4,4,4,3,60,+1:13.348,5840205,,,,,1 +8498,372,105,6,27,6,5,5,5,2,60,+1:14.556,5841413,,,,,1 +8499,372,138,32,2,10,6,6,6,1,59,,,,,,,11 +8500,372,123,22,20,7,7,7,7,0,59,,,,,,,11 +8501,372,158,21,18,15,8,8,8,0,59,,,,,,,11 +8502,372,140,27,26,21,9,9,9,0,57,,,,,,,13 +8503,372,110,48,22,14,,R,10,0,53,,,,,,,5 +8504,372,156,25,3,22,,R,11,0,47,,,,,,,7 +8505,372,159,18,24,20,,R,12,0,46,,,,,,,83 +8506,372,112,33,30,16,,R,13,0,40,,,,,,,22 +8507,372,99,42,31,25,,R,14,0,35,,,,,,,22 +8508,372,166,39,14,19,,R,15,0,35,,,,,,,23 +8509,372,114,33,29,17,,R,16,0,32,,,,,,,5 +8510,372,102,1,12,1,,D,17,0,31,,,,,,,2 +8511,372,163,27,25,18,,R,18,0,23,,,,,,,8 +8512,372,131,44,33,24,,R,19,0,20,,,,,,,5 +8513,372,95,3,5,2,,R,20,0,18,,,,,,,5 +8514,372,145,22,19,12,,R,21,0,7,,,,,,,5 +8515,372,119,3,6,8,,R,22,0,6,,,,,,,5 +8516,372,122,37,16,9,,R,23,0,6,,,,,,,5 +8517,372,167,18,23,23,,R,24,0,5,,,,,,,83 +8518,372,127,37,15,13,,R,25,0,0,,,,,,,6 +8519,372,165,44,32,26,,R,26,0,0,,,,,,,10 +8520,372,141,25,4,0,,F,27,0,0,,,,,,,81 +8521,372,160,49,9,0,,F,28,0,0,,,,,,,81 +8522,372,78,45,21,0,,F,29,0,0,,,,,,,81 +8523,372,146,49,10,0,,F,30,0,0,,,,,,,81 +8524,372,133,35,36,0,,F,31,0,0,,,,,,,97 +8525,373,102,1,12,1,1,1,1,9,60,32:41.3,5561264,,,,,1 +8526,373,117,1,11,2,2,2,2,6,60,2.334,5563598,,,,,1 +8527,373,137,32,1,3,3,3,3,4,59,,,,,,,11 +8528,373,123,22,20,8,4,4,4,3,59,,,,,,,11 +8529,373,77,6,28,5,5,5,5,2,59,,,,,,,11 +8530,373,145,22,19,4,6,6,6,1,59,,,,,,,11 +8531,373,158,21,18,7,7,7,7,0,59,,,,,,,11 +8532,373,138,32,2,12,8,8,8,0,59,,,,,,,11 +8533,373,118,21,17,14,9,9,9,0,58,,,,,,,12 +8534,373,166,39,14,13,10,10,10,0,58,,,,,,,12 +8535,373,159,18,24,18,11,11,11,0,58,,,,,,,12 +8536,373,114,33,29,19,12,12,12,0,58,,,,,,,12 +8537,373,119,3,6,6,13,13,13,0,58,,,,,,,12 +8538,373,156,25,3,23,14,14,14,0,58,,,,,,,12 +8539,373,127,37,15,20,15,15,15,0,58,,,,,,,12 +8540,373,167,18,23,22,16,16,16,0,57,,,,,,,13 +8541,373,112,33,30,15,17,17,17,0,57,,,,,,,13 +8542,373,105,6,27,10,18,18,18,0,54,,,,,,,5 +8543,373,131,44,33,26,,N,19,0,52,,,,,,,62 +8544,373,141,25,4,21,,R,20,0,48,,,,,,,6 +8545,373,95,3,5,11,,R,21,0,42,,,,,,,5 +8546,373,99,42,31,17,,R,22,0,40,,,,,,,69 +8547,373,133,35,36,24,,R,23,0,38,,,,,,,6 +8548,373,160,49,9,25,,R,24,0,36,,,,,,,6 +8549,373,122,37,16,9,,R,25,0,2,,,,,,,6 +8550,373,110,48,22,16,,R,26,0,1,,,,,,,22 +8551,373,78,45,21,0,,E,27,0,0,,,,,,,96 +8552,373,165,44,32,0,,F,28,0,0,,,,,,,81 +8553,373,140,27,26,0,,F,29,0,0,,,,,,,81 +8554,373,163,27,25,0,,F,30,0,0,,,,,,,81 +8555,374,117,1,11,2,1,1,1,9,78,57:17.1,7037077,,,,,1 +8556,374,77,6,28,3,2,2,2,6,78,20.453,7057530,,,,,1 +8557,374,105,6,27,4,3,3,3,4,78,41.229,7078306,,,,,1 +8558,374,118,21,17,7,4,4,4,3,77,,,,,,,11 +8559,374,156,25,3,10,5,5,5,2,77,,,,,,,11 +8560,374,119,3,6,8,6,6,6,1,77,,,,,,,11 +8561,374,114,33,29,21,7,7,7,0,77,,,,,,,11 +8562,374,123,22,20,16,8,8,8,0,76,,,,,,,12 +8563,374,78,45,21,25,9,9,9,0,75,,,,,,,13 +8564,374,122,37,16,22,10,10,10,0,72,,,,,,,16 +8565,374,102,1,12,1,,R,11,0,66,,,,,,,20 +8566,374,112,33,30,13,,R,12,0,50,,,,,,,4 +8567,374,127,37,15,14,,R,13,0,45,,,,,,,69 +8568,374,160,49,9,23,,R,14,0,43,,,,,,,6 +8569,374,145,22,19,6,,R,15,0,38,,,,,,,6 +8570,374,159,18,24,15,,R,16,0,36,,,,,,,86 +8571,374,95,3,5,5,,R,17,0,32,,,,,,,4 +8572,374,110,48,22,19,,R,18,0,28,,,,,,,5 +8573,374,163,27,25,20,,R,19,0,17,,,,,,,5 +8574,374,165,44,32,18,,R,20,0,14,,,,,,,23 +8575,374,158,21,18,9,,R,21,0,8,,,,,,,5 +8576,374,140,27,26,26,,R,22,0,6,,,,,,,5 +8577,374,99,42,31,24,,R,23,0,5,,,,,,,22 +8578,374,137,32,1,11,,R,24,0,1,,,,,,,4 +8579,374,133,35,36,17,,R,25,0,0,,,,,,,20 +8580,374,166,39,14,12,,R,26,0,0,,,,,,,37 +8581,374,138,32,2,0,,F,27,0,0,,,,,,,81 +8582,374,146,49,10,0,,F,28,0,0,,,,,,,81 +8583,374,167,18,23,0,,F,29,0,0,,,,,,,81 +8584,374,141,25,4,0,,F,30,0,0,,,,,,,81 +8585,374,131,44,33,0,,E,31,0,0,,,,,,,96 +8586,375,117,1,11,2,1,1,1,9,67,30:15.7,5415737,,,,,1 +8587,375,102,1,12,1,2,2,2,6,67,7.104,5422841,,,,,1 +8588,375,77,6,28,3,3,3,3,4,67,57.314,5473051,,,,,1 +8589,375,105,6,27,5,4,4,4,3,66,,,,,,,11 +8590,375,118,21,17,9,5,5,5,2,66,,,,,,,11 +8591,375,158,21,18,7,6,6,6,1,66,,,,,,,11 +8592,375,145,22,19,8,7,7,7,0,65,,,,,,,12 +8593,375,123,22,20,11,8,8,8,0,64,,,,,,,13 +8594,375,114,33,29,22,9,9,9,0,64,,,,,,,13 +8595,375,140,27,26,24,10,10,10,0,63,,,,,,,14 +8596,375,159,18,24,25,11,11,11,0,63,,,,,,,14 +8597,375,166,39,14,19,12,12,12,0,63,,,,,,,14 +8598,375,165,44,32,26,13,13,13,0,63,,,,,,,14 +8599,375,99,42,31,21,14,14,14,0,62,,,,,,,15 +8600,375,160,49,9,18,15,15,15,0,61,,,,,,,16 +8601,375,122,37,16,10,16,16,16,0,61,,,,,,,16 +8602,375,137,32,1,4,,R,17,0,58,,,,,,,5 +8603,375,110,48,22,12,,R,18,0,52,,,,,,,6 +8604,375,138,32,2,6,,R,19,0,27,,,,,,,5 +8605,375,95,3,5,14,,R,20,0,20,,,,,,,5 +8606,375,146,49,10,15,,R,21,0,16,,,,,,,5 +8607,375,119,3,6,17,,R,22,0,16,,,,,,,5 +8608,375,163,27,25,20,,R,23,0,13,,,,,,,3 +8609,375,133,35,36,23,,R,24,0,13,,,,,,,23 +8610,375,127,37,15,16,,R,25,0,10,,,,,,,10 +8611,375,112,33,30,13,,R,26,0,0,,,,,,,22 +8612,375,167,18,23,0,,F,27,0,0,,,,,,,81 +8613,375,156,25,3,0,,F,28,0,0,,,,,,,81 +8614,375,78,45,21,0,,F,29,0,0,,,,,,,81 +8615,375,141,25,4,0,,F,30,0,0,,,,,,,81 +8616,375,131,44,33,0,,E,31,0,0,,,,,,,96 +8617,376,102,1,12,1,1,1,1,9,69,39:46.6,5986618,,,,,1 +8618,376,117,1,11,2,2,2,2,6,69,5.934,5992552,,,,,1 +8619,376,123,22,20,7,3,3,3,4,69,51.409,6038027,,,,,1 +8620,376,137,32,1,6,4,4,4,3,68,,,,,,,11 +8621,376,122,37,16,14,5,5,5,2,68,,,,,,,11 +8622,376,156,25,3,19,6,6,6,1,67,,,,,,,12 +8623,376,118,21,17,16,7,7,7,0,67,,,,,,,12 +8624,376,99,42,31,26,8,8,8,0,67,,,,,,,12 +8625,376,110,48,22,12,9,9,9,0,66,,,,,,,60 +8626,376,112,33,30,17,10,10,10,0,66,,,,,,,10 +8627,376,138,32,2,13,11,11,11,0,66,,,,,,,13 +8628,376,131,44,33,15,12,12,12,0,66,,,,,,,13 +8629,376,159,18,24,21,13,13,13,0,64,,,,,,,15 +8630,376,160,49,9,22,14,14,14,0,63,,,,,,,5 +8631,376,127,37,15,18,,R,15,0,54,,,,,,,6 +8632,376,166,39,14,10,,R,16,0,41,,,,,,,22 +8633,376,163,27,25,20,,R,17,0,36,,,,,,,7 +8634,376,105,6,27,4,,R,18,0,33,,,,,,,5 +8635,376,119,3,6,11,,R,19,0,32,,,,,,,5 +8636,376,158,21,18,8,,R,20,0,31,,,,,,,37 +8637,376,95,3,5,9,,R,21,0,28,,,,,,,5 +8638,376,140,27,26,25,,R,22,0,24,,,,,,,5 +8639,376,77,6,28,3,,R,23,0,22,,,,,,,10 +8640,376,145,22,19,5,,R,24,0,15,,,,,,,80 +8641,376,165,44,32,24,,R,25,0,8,,,,,,,83 +8642,376,141,25,4,23,,R,26,0,0,,,,,,,4 +8643,376,167,18,23,0,,F,27,0,0,,,,,,,81 +8644,376,78,45,21,0,,F,28,0,0,,,,,,,81 +8645,376,114,33,29,0,,F,29,0,0,,,,,,,81 +8646,376,146,49,10,0,,F,30,0,0,,,,,,,81 +8647,376,133,35,36,0,,F,31,0,0,,,,,,,97 +8648,377,102,1,12,1,1,1,1,9,63,54:56.0,6896035,,,,,1 +8649,377,117,1,11,4,2,2,2,6,63,38.713,6934748,,,,,1 +8650,377,123,22,20,5,3,3,3,4,62,,,,,,,11 +8651,377,110,48,22,12,4,4,4,3,62,,,,,,,11 +8652,377,156,25,3,17,5,5,5,2,62,,,,,,,11 +8653,377,94,18,23,16,6,6,6,1,62,,,,,,,11 +8654,377,114,33,29,24,7,7,7,0,61,,,,,,,12 +8655,377,133,35,36,21,8,8,8,0,61,,,,,,,12 +8656,377,141,25,4,22,9,9,9,0,59,,,,,,,20 +8657,377,159,18,24,25,,R,10,0,54,,,,,,,6 +8658,377,112,33,30,14,,R,11,0,46,,,,,,,86 +8659,377,131,44,33,19,,R,12,0,46,,,,,,,20 +8660,377,105,6,27,3,,R,13,0,45,,,,,,,4 +8661,377,163,27,25,20,,R,14,0,45,,,,,,,25 +8662,377,127,37,15,13,,R,15,0,34,,,,,,,5 +8663,377,119,3,6,10,,R,16,0,26,,,,,,,10 +8664,377,137,32,1,8,,R,17,0,26,,,,,,,20 +8665,377,165,44,32,23,,R,18,0,26,,,,,,,6 +8666,377,118,21,17,9,,R,19,0,24,,,,,,,20 +8667,377,95,3,5,6,,R,20,0,18,,,,,,,5 +8668,377,166,39,14,11,,R,21,0,15,,,,,,,22 +8669,377,145,22,19,7,,R,22,0,14,,,,,,,22 +8670,377,158,21,18,15,,R,23,0,14,,,,,,,10 +8671,377,78,45,21,26,,R,24,0,7,,,,,,,5 +8672,377,77,6,28,2,,R,25,0,6,,,,,,,29 +8673,377,140,27,26,18,,R,26,0,2,,,,,,,25 +8674,377,122,37,16,0,,W,27,0,0,,,,,,,73 +8675,377,138,32,2,0,,F,28,0,0,,,,,,,81 +8676,377,146,49,10,0,,F,29,0,0,,,,,,,81 +8677,377,160,49,9,0,,F,30,0,0,,,,,,,81 +8678,377,99,42,31,0,,F,31,0,0,,,,,,,81 +8679,378,117,1,11,1,1,1,1,9,80,37:37.3,5857328,,,,,1 +8680,378,102,1,12,2,2,2,2,6,80,31.752,5889080,,,,,1 +8681,378,105,6,27,4,3,3,3,4,80,+1:06.505,5923833,,,,,1 +8682,378,77,6,28,3,4,4,4,3,79,,,,,,,11 +8683,378,137,32,1,7,5,5,5,2,79,,,,,,,11 +8684,378,145,22,19,6,6,6,6,1,79,,,,,,,11 +8685,378,138,32,2,8,7,7,7,0,79,,,,,,,11 +8686,378,127,37,15,16,8,8,8,0,79,,,,,,,11 +8687,378,122,37,16,10,9,9,9,0,79,,,,,,,11 +8688,378,110,48,22,12,10,10,10,0,78,,,,,,,12 +8689,378,158,21,18,13,11,11,11,0,78,,,,,,,12 +8690,378,133,35,36,14,12,12,12,0,78,,,,,,,12 +8691,378,114,33,29,19,13,13,13,0,78,,,,,,,12 +8692,378,131,44,33,20,14,14,14,0,77,,,,,,,13 +8693,378,94,18,23,22,15,15,15,0,77,,,,,,,13 +8694,378,159,18,24,25,,N,16,0,70,,,,,,,62 +8695,378,165,44,32,26,,R,17,0,64,,,,,,,8 +8696,378,78,45,21,24,,R,18,0,56,,,,,,,86 +8697,378,146,49,10,21,,R,19,0,55,,,,,,,6 +8698,378,95,3,5,9,,R,20,0,48,,,,,,,22 +8699,378,112,33,30,18,,R,21,0,46,,,,,,,10 +8700,378,156,25,3,23,,R,22,0,40,,,,,,,5 +8701,378,119,3,6,15,,R,23,0,35,,,,,,,23 +8702,378,123,22,20,5,,R,24,0,28,,,,,,,5 +8703,378,166,39,14,17,,R,25,0,20,,,,,,,95 +8704,378,118,21,17,11,,R,26,0,11,,,,,,,20 +8705,378,163,27,25,0,,F,27,0,0,,,,,,,81 +8706,378,141,25,4,0,,F,28,0,0,,,,,,,81 +8707,378,140,27,26,0,,F,29,0,0,,,,,,,81 +8708,378,99,42,31,0,,F,30,0,0,,,,,,,97 +8709,378,160,49,9,0,,E,31,0,0,,,,,,,96 +8710,379,102,1,12,3,1,1,1,9,65,33:16.4,5596367,,,,,1 +8711,379,95,3,5,11,2,2,2,6,65,23.344,5619711,,,,,1 +8712,379,145,22,19,8,3,3,3,4,65,51.214,5647581,,,,,1 +8713,379,127,37,15,5,4,4,4,3,65,+1:11.378,5667745,,,,,1 +8714,379,137,32,1,7,5,5,5,2,65,+1:20.835,5677202,,,,,1 +8715,379,118,21,17,9,6,6,6,1,64,,,,,,,11 +8716,379,158,21,18,13,7,7,7,0,64,,,,,,,11 +8717,379,119,3,6,15,8,8,8,0,64,,,,,,,11 +8718,379,77,6,28,1,9,9,9,0,64,,,,,,,11 +8719,379,138,32,2,10,10,10,10,0,64,,,,,,,11 +8720,379,133,35,36,21,11,11,11,0,64,,,,,,,11 +8721,379,131,44,33,20,12,12,12,0,64,,,,,,,11 +8722,379,114,33,29,23,13,13,13,0,63,,,,,,,12 +8723,379,112,33,30,22,14,14,14,0,63,,,,,,,12 +8724,379,94,18,23,19,15,15,15,0,63,,,,,,,12 +8725,379,141,25,4,24,16,16,16,0,63,,,,,,,12 +8726,379,105,6,27,2,17,17,17,0,62,,,,,,,60 +8727,379,163,27,25,25,18,18,18,0,62,,,,,,,13 +8728,379,78,45,21,26,19,19,19,0,60,,,,,,,60 +8729,379,123,22,20,12,,R,20,0,38,,,,,,,7 +8730,379,122,37,16,6,,R,21,0,34,,,,,,,91 +8731,379,117,1,11,4,,R,22,0,24,,,,,,,64 +8732,379,156,25,3,17,,R,23,0,14,,,,,,,5 +8733,379,110,48,22,14,,R,24,0,9,,,,,,,8 +8734,379,166,39,14,16,,R,25,0,8,,,,,,,41 +8735,379,159,18,24,18,,R,26,0,0,,,,,,,22 +8736,379,165,44,32,0,,F,27,0,0,,,,,,,81 +8737,379,160,49,9,0,,F,28,0,0,,,,,,,81 +8738,379,140,27,26,0,,F,29,0,0,,,,,,,81 +8739,379,146,49,10,0,,F,30,0,0,,,,,,,81 +8740,379,99,42,31,0,,F,31,0,0,,,,,,,97 +8741,380,102,1,12,1,1,1,1,9,44,32:54.2,5574188,,,,,1 +8742,380,117,1,11,2,2,2,2,6,44,13.609,5587797,,,,,1 +8743,380,77,6,28,3,3,3,3,4,44,52.095,5626283,,,,,1 +8744,380,105,6,27,4,4,4,4,3,44,+1:40.912,5675100,,,,,1 +8745,380,122,37,16,7,5,5,5,2,44,+1:49.606,5683794,,,,,1 +8746,380,123,22,20,9,6,6,6,1,43,,,,,,,11 +8747,380,118,21,17,12,7,7,7,0,43,,,,,,,11 +8748,380,127,37,15,10,8,8,8,0,43,,,,,,,11 +8749,380,138,32,2,8,9,9,9,0,43,,,,,,,11 +8750,380,158,21,18,15,10,10,10,0,43,,,,,,,11 +8751,380,156,25,3,24,11,11,11,0,43,,,,,,,11 +8752,380,146,49,10,22,12,12,12,0,43,,,,,,,11 +8753,380,110,48,22,14,13,13,13,0,42,,,,,,,12 +8754,380,160,49,9,23,14,14,14,0,42,,,,,,,12 +8755,380,133,35,36,19,15,15,15,0,42,,,,,,,12 +8756,380,165,44,32,26,16,16,16,0,42,,,,,,,12 +8757,380,163,27,25,17,17,17,17,0,41,,,,,,,13 +8758,380,145,22,19,6,18,18,18,0,40,,,,,,,14 +8759,380,114,33,29,21,19,19,19,0,39,,,,,,,8 +8760,380,166,39,14,16,,R,20,0,38,,,,,,,37 +8761,380,119,3,6,13,,R,21,0,34,,,,,,,20 +8762,380,78,45,21,18,,R,22,0,27,,,,,,,5 +8763,380,95,3,5,11,,R,23,0,16,,,,,,,20 +8764,380,131,44,33,25,,R,24,0,15,,,,,,,5 +8765,380,112,33,30,20,,R,25,0,8,,,,,,,20 +8766,380,137,32,1,5,,R,26,0,1,,,,,,,20 +8767,380,159,18,24,0,,F,27,0,0,,,,,,,81 +8768,380,140,27,26,0,,F,28,0,0,,,,,,,81 +8769,380,141,25,4,0,,F,29,0,0,,,,,,,81 +8770,380,94,18,23,0,,F,30,0,0,,,,,,,81 +8771,380,99,42,31,0,,F,31,0,0,,,,,,,97 +8772,381,102,1,12,1,1,1,1,9,76,57:47.1,7067081,,,,,1 +8773,381,117,1,11,7,2,2,2,6,76,0.529,7067610,,,,,1 +8774,381,123,22,20,3,3,3,3,4,76,31.41,7098491,,,,,1 +8775,381,77,6,28,9,4,4,4,3,76,+1:28.670,7155751,,,,,1 +8776,381,127,37,15,8,5,5,5,2,75,,,,,,,11 +8777,381,119,3,6,6,6,6,6,1,75,,,,,,,11 +8778,381,138,32,2,19,7,7,7,0,73,,,,,,,13 +8779,381,137,32,1,13,8,8,8,0,73,,,,,,,13 +8780,381,114,33,29,17,9,9,9,0,73,,,,,,,13 +8781,381,159,18,24,11,10,10,10,0,72,,,,,,,14 +8782,381,131,44,33,26,11,11,11,0,72,,,,,,,14 +8783,381,112,33,30,20,12,12,12,0,72,,,,,,,14 +8784,381,99,42,31,22,13,13,13,0,71,,,,,,,15 +8785,381,118,21,17,12,,R,14,0,65,,,,,,,23 +8786,381,95,3,5,2,,R,15,0,60,,,,,,,100 +8787,381,158,21,18,14,,R,16,0,55,,,,,,,23 +8788,381,105,6,27,15,,R,17,0,40,,,,,,,10 +8789,381,163,27,25,25,,R,18,0,32,,,,,,,5 +8790,381,110,48,22,18,,R,19,0,28,,,,,,,86 +8791,381,145,22,19,5,,R,20,0,24,,,,,,,25 +8792,381,133,35,36,10,,R,21,0,22,,,,,,,5 +8793,381,140,27,26,24,,R,22,0,19,,,,,,,37 +8794,381,94,18,23,16,,R,23,0,8,,,,,,,4 +8795,381,166,39,14,23,,R,24,0,8,,,,,,,4 +8796,381,122,37,16,4,,R,25,0,5,,,,,,,5 +8797,381,156,25,3,21,,R,26,0,3,,,,,,,5 +8798,381,165,44,32,0,,F,27,0,0,,,,,,,81 +8799,381,146,49,10,0,,F,28,0,0,,,,,,,81 +8800,381,141,25,4,0,,F,29,0,0,,,,,,,81 +8801,381,160,49,9,0,,F,30,0,0,,,,,,,81 +8802,381,78,45,21,0,,F,31,0,0,,,,,,,97 +8803,382,102,1,12,1,1,1,1,9,43,28:00.5,5280549,,,,,1 +8804,382,117,1,11,2,2,2,2,6,43,30.47,5311019,,,,,1 +8805,382,122,37,16,14,3,3,3,4,43,+1:15.768,5356317,,,,,1 +8806,382,137,32,1,9,4,4,4,3,43,+1:23.628,5364177,,,,,1 +8807,382,118,21,17,10,5,5,5,2,43,+1:25.355,5365904,,,,,1 +8808,382,158,21,18,11,6,6,6,1,42,,,,,,,11 +8809,382,84,3,5,12,7,7,7,0,42,,,,,,,11 +8810,382,133,35,36,15,8,8,8,0,42,,,,,,,11 +8811,382,112,33,30,16,9,9,9,0,42,,,,,,,11 +8812,382,166,39,14,18,10,10,10,0,42,,,,,,,11 +8813,382,140,27,26,20,11,11,11,0,39,,,,,,,5 +8814,382,156,25,3,21,12,12,12,0,39,,,,,,,37 +8815,382,146,49,10,25,13,13,13,0,38,,,,,,,6 +8816,382,123,22,20,6,,D,14,0,43,,,,,,,2 +8817,382,145,22,19,7,,D,15,0,43,,,,,,,2 +8818,382,99,42,31,22,,R,16,0,36,,,,,,,38 +8819,382,105,6,27,4,,R,17,0,35,,,,,,,5 +8820,382,119,3,6,5,,R,18,0,30,,,,,,,5 +8821,382,127,37,15,13,,R,19,0,29,,,,,,,20 +8822,382,160,49,9,24,,R,20,0,25,,,,,,,44 +8823,382,138,32,2,8,,R,21,0,22,,,,,,,5 +8824,382,78,45,21,26,,R,22,0,14,,,,,,,69 +8825,382,77,6,28,3,,R,23,0,11,,,,,,,98 +8826,382,114,33,29,23,,R,24,0,9,,,,,,,5 +8827,382,110,48,22,19,,R,25,0,2,,,,,,,3 +8828,382,163,27,25,17,,R,26,0,2,,,,,,,3 +8829,382,159,18,24,0,,F,27,0,0,,,,,,,81 +8830,382,94,18,23,0,,F,28,0,0,,,,,,,81 +8831,382,131,44,33,0,,F,29,0,0,,,,,,,81 +8832,382,141,25,4,0,,F,30,0,0,,,,,,,81 +8833,382,165,44,32,0,,F,31,0,0,,,,,,,97 +8834,383,77,6,28,3,1,1,1,9,51,17:39.7,4659744,,,,,1 +8835,383,105,6,27,4,2,2,2,6,51,0.502,4660246,,,,,1 +8836,383,158,21,18,5,3,3,3,4,51,35.532,4695276,,,,,1 +8837,383,118,21,17,6,4,4,4,3,51,36.114,4695858,,,,,1 +8838,383,122,37,16,11,5,5,5,2,51,52.522,4712266,,,,,1 +8839,383,123,22,20,8,6,6,6,1,51,59.878,4719622,,,,,1 +8840,383,119,3,6,10,7,7,7,0,51,+1:14.743,4734487,,,,,1 +8841,383,127,37,15,13,8,8,8,0,51,+1:32.566,4752310,,,,,1 +8842,383,145,22,19,9,9,9,9,0,50,,,,,,,11 +8843,383,102,1,12,1,10,10,10,0,49,,,,,,,4 +8844,383,168,3,5,22,11,11,11,0,49,,,,,,,12 +8845,383,141,25,4,26,12,12,12,0,49,,,,,,,12 +8846,383,163,27,25,24,13,13,13,0,49,,,,,,,12 +8847,383,117,1,11,2,,R,14,0,34,,,,,,,5 +8848,383,112,33,30,20,,R,15,0,33,,,,,,,5 +8849,383,166,39,14,23,,R,16,0,31,,,,,,,8 +8850,383,146,49,10,15,,R,17,0,28,,,,,,,5 +8851,383,110,48,22,18,,R,18,0,27,,,,,,,83 +8852,383,160,49,9,16,,R,19,0,25,,,,,,,5 +8853,383,133,35,36,21,,R,20,0,24,,,,,,,5 +8854,383,114,33,29,25,,R,21,0,17,,,,,,,21 +8855,383,94,18,23,14,,R,22,0,15,,,,,,,5 +8856,383,138,32,2,12,,R,23,0,14,,,,,,,5 +8857,383,159,18,24,19,,R,24,0,12,,,,,,,6 +8858,383,137,32,1,7,,R,25,0,11,,,,,,,8 +8859,383,78,45,21,17,,R,26,0,2,,,,,,,5 +8860,383,156,25,3,0,,F,27,0,0,,,,,,,81 +8861,383,140,27,26,0,,F,28,0,0,,,,,,,81 +8862,383,99,42,31,0,,F,29,0,0,,,,,,,81 +8863,383,131,44,33,0,,F,30,0,0,,,,,,,81 +8864,383,165,44,32,0,,F,31,0,0,,,,,,,97 +8865,384,117,1,11,1,1,1,1,9,70,37:41.0,5860958,,,,,1 +8866,384,122,37,16,3,2,2,2,6,70,9.553,5870511,,,,,1 +8867,384,123,22,20,13,3,3,3,4,70,44.619,5905577,,,,,1 +8868,384,118,21,17,10,4,4,4,3,70,+1:07.419,5928377,,,,,1 +8869,384,105,6,27,7,5,5,5,2,70,+1:11.884,5932842,,,,,1 +8870,384,102,1,12,2,6,6,6,1,70,+1:18.269,5939227,,,,,1 +8871,384,133,35,36,17,7,7,7,0,69,,,,,,,11 +8872,384,159,18,24,19,8,8,8,0,68,,,,,,,12 +8873,384,166,39,14,21,9,9,9,0,68,,,,,,,12 +8874,384,163,27,25,23,10,10,10,0,68,,,,,,,12 +8875,384,99,42,31,26,11,11,11,0,65,,,,,,,15 +8876,384,78,45,21,25,12,12,12,0,63,,,,,,,17 +8877,384,127,37,15,5,,R,13,0,59,,,,,,,5 +8878,384,95,3,5,6,,R,14,0,54,,,,,,,20 +8879,384,156,25,3,22,,R,15,0,53,,,,,,,25 +8880,384,145,22,19,9,,R,16,0,52,,,,,,,64 +8881,384,77,6,28,4,,R,17,0,35,,,,,,,20 +8882,384,137,32,1,8,,R,18,0,34,,,,,,,8 +8883,384,119,3,6,11,,R,19,0,29,,,,,,,21 +8884,384,94,18,23,14,,R,20,0,27,,,,,,,5 +8885,384,114,33,29,15,,R,21,0,20,,,,,,,91 +8886,384,138,32,2,16,,R,22,0,16,,,,,,,20 +8887,384,110,48,22,12,,R,23,0,11,,,,,,,86 +8888,384,158,21,18,18,,R,24,0,10,,,,,,,101 +8889,384,112,33,30,20,,R,25,0,7,,,,,,,5 +8890,384,140,27,26,24,,R,26,0,4,,,,,,,5 +8891,384,141,25,4,0,,F,27,0,0,,,,,,,81 +8892,384,160,49,9,0,,F,28,0,0,,,,,,,81 +8893,384,131,44,33,0,,F,29,0,0,,,,,,,81 +8894,384,146,49,10,0,,F,30,0,0,,,,,,,81 +8895,384,165,44,32,0,,F,31,0,0,,,,,,,97 +8896,385,117,1,11,2,1,1,1,9,72,48:43.9,6523851,,,,,1 +8897,385,95,3,5,3,2,2,2,6,72,26.232,6550083,,,,,1 +8898,385,145,22,19,5,3,3,3,4,72,35.446,6559297,,,,,1 +8899,385,102,1,12,1,4,4,4,3,72,46.71,6570561,,,,,1 +8900,385,119,3,6,7,5,5,5,2,72,47.43,6571281,,,,,1 +8901,385,77,6,28,8,6,6,6,1,72,51.813,6575664,,,,,1 +8902,385,127,37,15,11,7,7,7,0,72,+1:15.964,6599815,,,,,1 +8903,385,137,32,1,9,8,8,8,0,72,+1:17.309,6601160,,,,,1 +8904,385,123,22,20,4,9,9,9,0,72,+1:17.655,6601506,,,,,1 +8905,385,133,35,36,18,10,10,10,0,71,,,,,,,11 +8906,385,114,33,29,16,11,11,11,0,71,,,,,,,11 +8907,385,159,18,24,24,12,12,12,0,70,,,,,,,12 +8908,385,131,44,33,26,13,13,13,0,70,,,,,,,12 +8909,385,112,33,30,12,14,14,14,0,69,,,,,,,13 +8910,385,140,27,26,21,,R,15,0,62,,,,,,,36 +8911,385,158,21,18,25,,R,16,0,60,,,,,,,83 +8912,385,122,37,16,6,,R,17,0,45,,,,,,,5 +8913,385,118,21,17,17,,R,18,0,41,,,,,,,83 +8914,385,110,48,22,23,,R,19,0,37,,,,,,,5 +8915,385,166,39,14,13,,R,20,0,16,,,,,,,5 +8916,385,105,6,27,10,,R,21,0,15,,,,,,,5 +8917,385,94,18,23,20,,R,22,0,15,,,,,,,6 +8918,385,138,32,2,15,,R,23,0,14,,,,,,,20 +8919,385,78,45,21,14,,R,24,0,9,,,,,,,22 +8920,385,156,25,3,22,,R,25,0,4,,,,,,,83 +8921,385,163,27,25,19,,R,26,0,0,,,,,,,37 +8922,385,146,49,10,0,,F,27,0,0,,,,,,,81 +8923,385,165,44,32,0,,F,28,0,0,,,,,,,81 +8924,385,141,25,4,0,,F,29,0,0,,,,,,,81 +8925,385,160,49,9,0,,F,30,0,0,,,,,,,81 +8926,385,99,42,31,0,,F,31,0,0,,,,,,,97 +8927,386,102,1,12,1,1,1,1,9,51,33:26.2,5606173,,,,,1 +8928,386,117,1,11,2,2,2,2,6,51,13.363,5619536,,,,,1 +8929,386,123,22,20,10,3,3,3,4,51,36.109,5642282,,,,,1 +8930,386,77,6,28,3,4,4,4,3,51,+1:26.714,5692887,,,,,1 +8931,386,145,22,19,12,5,5,5,2,51,+1:30.603,5696776,,,,,1 +8932,386,119,3,6,11,6,6,6,1,51,+1:37.615,5703788,,,,,1 +8933,386,138,32,2,6,7,7,7,0,50,,,,,,,11 +8934,386,166,39,14,18,8,8,8,0,50,,,,,,,11 +8935,386,112,33,30,19,9,9,9,0,50,,,,,,,11 +8936,386,127,37,15,13,10,10,10,0,50,,,,,,,11 +8937,386,105,6,27,9,11,11,11,0,50,,,,,,,11 +8938,386,156,25,3,16,12,12,12,0,50,,,,,,,11 +8939,386,94,18,23,17,13,13,13,0,49,,,,,,,12 +8940,386,141,25,4,26,14,14,14,0,49,,,,,,,12 +8941,386,159,18,24,22,15,15,15,0,49,,,,,,,12 +8942,386,88,33,29,20,16,16,16,0,48,,,,,,,13 +8943,386,163,27,25,23,17,17,17,0,48,,,,,,,13 +8944,386,110,48,22,14,,R,18,0,36,,,,,,,25 +8945,386,158,21,18,15,,R,19,0,35,,,,,,,80 +8946,386,78,45,21,24,,R,20,0,34,,,,,,,23 +8947,386,137,32,1,5,,R,21,0,34,,,,,,,100 +8948,386,95,3,5,8,,R,22,0,24,,,,,,,4 +8949,386,133,35,36,21,,R,23,0,22,,,,,,,20 +8950,386,122,37,16,4,,R,24,0,19,,,,,,,10 +8951,386,118,21,17,7,,R,25,0,16,,,,,,,20 +8952,386,146,49,10,25,,R,26,0,14,,,,,,,100 +8953,386,140,27,26,0,,F,27,0,0,,,,,,,81 +8954,386,165,44,32,0,,F,28,0,0,,,,,,,81 +8955,386,160,49,9,0,,F,29,0,0,,,,,,,81 +8956,386,131,44,33,0,,F,30,0,0,,,,,,,81 +8957,386,99,42,31,0,,F,31,0,0,,,,,,,97 +8958,387,117,1,11,2,1,1,1,9,82,53:14.7,6794676,,,,,1 +8959,387,102,1,12,1,2,2,2,6,82,36.387,6831063,,,,,1 +8960,387,137,32,1,5,3,3,3,4,82,47.546,6842222,,,,,1 +8961,387,119,3,6,6,4,4,4,3,82,+1:20.088,6874764,,,,,1 +8962,387,123,22,20,10,5,5,5,2,81,,,,,,,11 +8963,387,122,37,16,9,6,6,6,1,81,,,,,,,11 +8964,387,94,18,23,14,7,7,7,0,80,,,,,,,12 +8965,387,110,48,22,15,8,8,8,0,77,,,,,,,60 +8966,387,140,27,26,22,9,9,9,0,76,,,,,,,60 +8967,387,112,33,30,24,10,10,10,0,75,,,,,,,60 +8968,387,166,39,14,16,11,11,11,0,73,,,,,,,10 +8969,387,160,49,9,26,,R,12,0,69,,,,,,,69 +8970,387,95,3,5,3,,R,13,0,65,,,,,,,20 +8971,387,145,22,19,8,,R,14,0,63,,,,,,,20 +8972,387,131,44,33,20,,R,15,0,63,,,,,,,86 +8973,387,118,21,17,7,,R,16,0,52,,,,,,,5 +8974,387,158,21,18,18,,R,17,0,51,,,,,,,5 +8975,387,127,37,15,19,,R,18,0,46,,,,,,,4 +8976,387,138,32,2,13,,R,19,0,45,,,,,,,4 +8977,387,159,18,24,21,,R,20,0,41,,,,,,,5 +8978,387,133,35,36,11,,R,21,0,32,,,,,,,8 +8979,387,77,6,28,4,,R,22,0,25,,,,,,,4 +8980,387,163,27,25,23,,R,23,0,24,,,,,,,4 +8981,387,156,25,3,17,,R,24,0,16,,,,,,,7 +8982,387,165,44,32,25,,R,25,0,12,,,,,,,86 +8983,387,105,6,27,12,,R,26,0,0,,,,,,,4 +8984,387,99,42,31,0,,F,27,0,0,,,,,,,81 +8985,387,141,25,4,0,,F,28,0,0,,,,,,,81 +8986,387,162,33,29,0,,F,29,0,0,,,,,,,81 +8987,387,146,49,10,0,,F,30,0,0,,,,,,,81 +8988,387,78,45,21,0,,F,31,0,0,,,,,,,97 +8989,388,117,1,1,5,1,1,1,9,61,39:45.1,5985141,,,,,1 +8990,388,137,3,6,2,2,2,2,6,61,40.547,6025688,,,,,1 +8991,388,140,1,2,10,3,3,3,4,61,56.758,6041899,,,,,1 +8992,388,77,6,28,7,4,4,4,3,61,+1:39.235,6084376,,,,,1 +8993,388,123,22,20,6,5,5,5,2,60,,,,,,,11 +8994,388,95,3,5,1,6,6,6,1,60,,,,,,,11 +8995,388,138,32,11,12,7,7,7,0,59,,,,,,,12 +8996,388,105,6,27,9,8,8,8,0,58,,,,,,,20 +8997,388,157,49,10,17,9,9,9,0,58,,,,,,,13 +8998,388,156,25,3,18,10,10,10,0,58,,,,,,,13 +8999,388,166,25,4,20,11,11,11,0,57,,,,,,,14 +9000,388,169,39,14,22,12,12,12,0,55,,,,,,,16 +9001,388,158,21,18,14,,R,13,0,52,,,,,,,25 +9002,388,102,32,12,3,,R,14,0,50,,,,,,,5 +9003,388,119,34,7,11,,R,15,0,48,,,,,,,10 +9004,388,110,34,8,13,,R,16,0,21,,,,,,,24 +9005,388,118,21,17,8,,R,17,0,20,,,,,,,5 +9006,388,133,45,21,21,,R,18,0,20,,,,,,,54 +9007,388,145,18,24,15,,R,19,0,17,,,,,,,22 +9008,388,84,49,9,19,,R,20,0,15,,,,,,,101 +9009,388,170,22,19,4,,R,21,0,9,,,,,,,101 +9010,388,167,18,23,16,,D,22,0,3,,,,,,,2 +9011,388,122,37,16,23,,W,23,0,0,,,,,,,54 +9012,389,95,3,5,2,1,1,1,9,59,31:24.1,5484076,,,,,1 +9013,389,102,32,12,1,2,2,2,6,59,27.545,5511621,,,,,1 +9014,389,105,6,27,6,3,3,3,4,59,39.144,5523220,,,,,1 +9015,389,140,1,2,8,4,4,4,3,59,+1:00.588,5544664,,,,,1 +9016,389,84,49,9,14,5,5,5,2,57,,,,,,,12 +9017,389,138,32,11,12,6,6,6,1,57,,,,,,,60 +9018,389,157,49,10,17,7,7,7,0,57,,,,,,,12 +9019,389,166,25,4,20,8,8,8,0,57,,,,,,,12 +9020,389,119,34,7,7,9,9,9,0,57,,,,,,,12 +9021,389,112,33,30,21,10,10,10,0,56,,,,,,,13 +9022,389,118,21,17,10,11,11,11,0,55,,,,,,,60 +9023,389,133,45,21,19,12,12,12,0,54,,,,,,,60 +9024,389,169,39,14,24,13,13,13,0,53,,,,,,,16 +9025,389,170,22,19,4,,R,14,0,51,,,,,,,101 +9026,389,123,22,20,11,,R,15,0,48,,,,,,,5 +9027,389,158,21,18,9,,R,16,0,48,,,,,,,8 +9028,389,156,25,3,23,,R,17,0,48,,,,,,,8 +9029,389,110,34,8,13,,R,18,0,39,,,,,,,20 +9030,389,167,18,23,16,,R,19,0,30,,,,,,,6 +9031,389,99,45,22,25,,R,20,0,26,,,,,,,6 +9032,389,145,18,24,15,,R,21,0,25,,,,,,,101 +9033,389,122,37,16,22,,R,22,0,18,,,,,,,5 +9034,389,77,6,28,5,,R,23,0,16,,,,,,,10 +9035,389,117,1,1,3,,R,24,0,14,,,,,,,10 +9036,389,160,27,26,18,,R,25,0,7,,,,,,,64 +9037,389,137,3,6,0,,W,26,0,0,,,,,,,82 +9038,389,163,27,25,0,,W,27,0,0,,,,,,,22 +9039,390,117,1,1,6,1,1,1,9,43,27:03.2,5223217,,,,,1 +9040,390,140,1,2,10,2,2,2,6,43,24.764,5247981,,,,,1 +9041,390,110,34,8,13,3,3,3,4,42,,,,,,,11 +9042,390,158,21,18,11,4,4,4,3,42,,,,,,,11 +9043,390,138,32,11,15,5,5,5,2,42,,,,,,,11 +9044,390,163,27,25,16,6,6,6,1,41,,,,,,,12 +9045,390,160,27,26,17,7,7,7,0,40,,,,,,,13 +9046,390,112,33,30,22,8,8,8,0,40,,,,,,,13 +9047,390,166,25,4,23,9,9,9,0,39,,,,,,,14 +9048,390,169,39,14,25,10,10,10,0,38,,,,,,,15 +9049,390,170,22,19,9,,R,11,0,34,,,,,,,5 +9050,390,84,49,9,18,,R,12,0,19,,,,,,,25 +9051,390,123,22,20,7,,R,13,0,18,,,,,,,67 +9052,390,95,3,5,1,,R,14,0,17,,,,,,,3 +9053,390,102,32,12,3,,R,15,0,17,,,,,,,3 +9054,390,122,37,16,21,,R,16,0,14,,,,,,,5 +9055,390,137,3,6,2,,R,17,0,11,,,,,,,43 +9056,390,133,45,21,26,,R,18,0,11,,,,,,,95 +9057,390,105,6,27,5,,R,19,0,9,,,,,,,7 +9058,390,157,49,10,20,,R,20,0,9,,,,,,,23 +9059,390,118,21,17,12,,R,21,0,8,,,,,,,21 +9060,390,119,34,7,8,,R,22,0,5,,,,,,,8 +9061,390,77,6,28,4,,R,23,0,2,,,,,,,5 +9062,390,145,18,24,14,,R,24,0,1,,,,,,,101 +9063,390,167,18,23,19,,R,25,0,0,,,,,,,6 +9064,390,156,25,3,24,,R,26,0,0,,,,,,,3 +9065,391,102,32,12,2,1,1,1,9,78,57:54.1,7074085,,,,,1 +9066,391,137,3,6,3,2,2,2,6,78,33.212,7107297,,,,,1 +9067,391,105,6,27,5,3,3,3,4,78,+1:12.839,7146924,,,,,1 +9068,391,77,6,28,8,4,4,4,3,77,,,,,,,11 +9069,391,156,25,3,15,5,5,5,2,76,,,,,,,12 +9070,391,122,37,16,19,6,6,6,1,76,,,,,,,12 +9071,391,84,49,9,14,7,7,7,0,76,,,,,,,12 +9072,391,170,22,19,12,8,8,8,0,76,,,,,,,12 +9073,391,117,1,1,4,9,9,9,0,75,,,,,,,5 +9074,391,138,32,11,17,10,10,10,0,75,,,,,,,13 +9075,391,163,27,25,22,11,11,11,0,74,,,,,,,14 +9076,391,160,27,26,20,12,12,12,0,74,,,,,,,14 +9077,391,169,39,14,24,13,13,13,0,71,,,,,,,17 +9078,391,158,21,18,6,,R,14,0,59,,,,,,,25 +9079,391,118,21,17,11,,R,15,0,58,,,,,,,6 +9080,391,140,1,2,7,,R,16,0,57,,,,,,,5 +9081,391,112,33,30,18,,R,17,0,42,,,,,,,5 +9082,391,119,34,7,10,,R,18,0,41,,,,,,,10 +9083,391,133,45,21,16,,R,19,0,39,,,,,,,10 +9084,391,110,34,8,21,,R,20,0,38,,,,,,,22 +9085,391,95,3,5,1,,R,21,0,29,,,,,,,101 +9086,391,145,18,24,13,,R,22,0,21,,,,,,,10 +9087,391,166,25,4,23,,R,23,0,9,,,,,,,3 +9088,391,123,22,20,9,,R,24,0,5,,,,,,,7 +9089,391,167,18,23,0,,W,25,0,0,,,,,,,54 +9090,391,157,49,10,0,,E,26,0,0,,,,,,,96 +9091,392,102,32,12,2,1,1,1,9,63,50:16.4,6616358,,,,,1 +9092,392,137,3,6,3,2,2,2,6,63,33.819,6650177,,,,,1 +9093,392,117,1,1,5,3,3,3,4,63,45.327,6661685,,,,,1 +9094,392,77,6,28,12,4,4,4,3,63,+1:02.601,6678959,,,,,1 +9095,392,95,3,5,1,5,5,5,2,62,,,,,,,11 +9096,392,158,21,18,6,6,6,6,1,60,,,,,,,13 +9097,392,140,1,2,11,7,7,7,0,60,,,,,,,13 +9098,392,157,49,10,16,8,8,8,0,60,,,,,,,13 +9099,392,119,34,7,9,9,9,9,0,60,,,,,,,13 +9100,392,163,27,25,21,10,10,10,0,60,,,,,,,13 +9101,392,156,25,3,13,11,11,11,0,60,,,,,,,13 +9102,392,169,39,14,26,12,12,12,0,58,,,,,,,15 +9103,392,123,22,20,4,,R,13,0,52,,,,,,,23 +9104,392,160,27,26,23,,R,14,0,51,,,,,,,8 +9105,392,166,25,4,14,,R,15,0,44,,,,,,,36 +9106,392,112,33,30,20,,R,16,0,38,,,,,,,3 +9107,392,105,6,27,7,,R,17,0,25,,,,,,,6 +9108,392,145,18,24,18,,R,18,0,22,,,,,,,6 +9109,392,84,49,9,15,,R,19,0,16,,,,,,,101 +9110,392,118,21,17,10,,R,20,0,12,,,,,,,3 +9111,392,122,37,16,22,,R,21,0,9,,,,,,,10 +9112,392,170,22,19,8,,R,22,0,6,,,,,,,3 +9113,392,133,45,21,19,,R,23,0,3,,,,,,,7 +9114,392,110,34,8,17,,R,24,0,2,,,,,,,6 +9115,392,167,18,23,25,,R,25,0,1,,,,,,,3 +9116,392,138,32,11,24,,R,26,0,0,,,,,,,3 +9117,393,95,3,5,1,1,1,1,9,80,37:03.8,5823839,,,,,1 +9118,393,137,3,6,4,2,2,2,6,80,7.711,5831550,,,,,1 +9119,393,117,1,1,2,3,3,3,4,80,55.255,5879094,,,,,1 +9120,393,102,32,12,3,4,4,4,3,79,,,,,,,11 +9121,393,170,22,19,7,5,5,5,2,77,,,,,,,13 +9122,393,166,25,4,25,6,6,6,1,76,,,,,,,14 +9123,393,156,25,3,24,7,7,7,0,76,,,,,,,14 +9124,393,140,1,2,9,8,8,8,0,74,,,,,,,16 +9125,393,169,39,14,26,9,9,9,0,74,,,,,,,16 +9126,393,77,6,28,6,,R,10,0,71,,,,,,,22 +9127,393,138,32,11,16,,N,11,0,71,,,,,,,62 +9128,393,105,6,27,8,,R,12,0,64,,,,,,,5 +9129,393,118,21,17,10,,R,13,0,62,,,,,,,101 +9130,393,112,33,30,23,,R,14,0,57,,,,,,,6 +9131,393,122,37,16,22,,R,15,0,52,,,,,,,5 +9132,393,167,18,23,21,,R,16,0,52,,,,,,,101 +9133,393,163,27,25,13,,R,17,0,33,,,,,,,43 +9134,393,123,22,20,5,,R,18,0,31,,,,,,,5 +9135,393,157,49,10,19,,R,19,0,26,,,,,,,25 +9136,393,160,27,26,17,,R,20,0,24,,,,,,,5 +9137,393,145,18,24,15,,R,21,0,23,,,,,,,101 +9138,393,119,34,7,12,,R,22,0,19,,,,,,,24 +9139,393,84,49,9,18,,R,23,0,18,,,,,,,36 +9140,393,133,45,21,20,,R,24,0,11,,,,,,,5 +9141,393,110,34,8,11,,R,25,0,2,,,,,,,101 +9142,393,158,21,18,14,,R,26,0,0,,,,,,,10 +9143,394,95,3,5,2,1,1,1,9,65,19:11.8,4751780,,,,,1 +9144,394,137,3,6,1,2,2,2,6,65,1.918,4753698,,,,,1 +9145,394,102,32,12,3,3,3,3,4,64,,,,,,,11 +9146,394,138,32,11,12,4,4,4,3,63,,,,,,,12 +9147,394,118,21,17,13,5,5,5,2,63,,,,,,,12 +9148,394,170,22,19,6,6,6,6,1,63,,,,,,,12 +9149,394,123,22,20,5,7,7,7,0,62,,,,,,,13 +9150,394,156,25,3,23,8,8,8,0,60,,,,,,,15 +9151,394,169,39,14,25,9,9,9,0,59,,,,,,,16 +9152,394,166,25,4,22,,R,10,0,57,,,,,,,5 +9153,394,84,49,9,17,,N,11,0,54,,,,,,,62 +9154,394,117,1,1,4,,R,12,0,53,,,,,,,5 +9155,394,105,6,27,7,,R,13,0,52,,,,,,,22 +9156,394,158,21,18,14,,R,14,0,45,,,,,,,5 +9157,394,167,18,23,19,,R,15,0,34,,,,,,,69 +9158,394,133,45,21,20,,R,16,0,32,,,,,,,5 +9159,394,157,49,10,18,,R,17,0,32,,,,,,,6 +9160,394,119,34,7,11,,R,18,0,28,,,,,,,101 +9161,394,140,1,2,10,,R,19,0,18,,,,,,,5 +9162,394,145,18,24,15,,R,20,0,10,,,,,,,5 +9163,394,110,34,8,9,,R,21,0,8,,,,,,,101 +9164,394,77,6,28,8,,R,22,0,7,,,,,,,3 +9165,394,112,33,30,21,,R,23,0,7,,,,,,,6 +9166,394,163,27,25,16,,R,24,0,3,,,,,,,10 +9167,394,122,37,16,24,,R,25,0,3,,,,,,,3 +9168,394,160,27,26,19,,E,26,0,0,,,,,,,96 +9169,395,137,3,6,4,1,1,1,9,44,21:25.1,4885091,,,,,1 +9170,395,140,1,2,8,2,2,2,6,44,+1:39.591,4984682,,,,,1 +9171,395,102,32,12,2,3,3,3,4,43,,,,,,,11 +9172,395,166,25,4,22,4,4,4,3,43,,,,,,,11 +9173,395,156,25,3,23,5,5,5,2,43,,,,,,,11 +9174,395,112,33,30,21,6,6,6,1,42,,,,,,,12 +9175,395,117,1,1,3,7,7,7,0,39,,,,,,,10 +9176,395,84,49,9,19,,N,8,0,34,,,,,,,62 +9177,395,160,27,26,17,,R,9,0,32,,,,,,,5 +9178,395,167,18,23,18,,R,10,0,28,,,,,,,5 +9179,395,123,22,20,6,,R,11,0,26,,,,,,,5 +9180,395,95,3,5,1,,R,12,0,25,,,,,,,5 +9181,395,145,18,24,16,,R,13,0,25,,,,,,,5 +9182,395,118,21,17,13,,R,14,0,23,,,,,,,101 +9183,395,157,49,10,20,,R,15,0,21,,,,,,,86 +9184,395,77,6,28,10,,R,16,0,19,,,,,,,101 +9185,395,170,22,19,9,,R,17,0,18,,,,,,,5 +9186,395,133,45,21,26,,R,18,0,17,,,,,,,5 +9187,395,110,34,8,7,,R,19,0,12,,,,,,,5 +9188,395,105,6,27,5,,R,20,0,10,,,,,,,101 +9189,395,169,39,14,25,,R,21,0,10,,,,,,,5 +9190,395,158,21,18,15,,R,22,0,9,,,,,,,37 +9191,395,138,32,11,14,,R,23,0,9,,,,,,,101 +9192,395,122,37,16,24,,R,24,0,7,,,,,,,5 +9193,395,163,27,25,12,,R,25,0,6,,,,,,,80 +9194,395,119,34,7,11,,R,26,0,5,,,,,,,80 +9195,396,137,3,6,3,1,1,1,9,76,59:26.8,7166793,,,,,1 +9196,396,102,32,12,6,2,2,2,6,76,37.727,7204520,,,,,1 +9197,396,117,1,1,4,3,3,3,4,76,+1:27.456,7254249,,,,,1 +9198,396,123,22,20,7,4,4,4,3,75,,,,,,,11 +9199,396,119,34,7,10,5,5,5,2,75,,,,,,,11 +9200,396,118,21,17,9,6,6,6,1,74,,,,,,,12 +9201,396,156,25,3,16,7,7,7,0,74,,,,,,,12 +9202,396,158,21,18,11,8,8,8,0,74,,,,,,,12 +9203,396,166,25,4,14,9,9,9,0,74,,,,,,,12 +9204,396,122,37,16,18,10,10,10,0,74,,,,,,,12 +9205,396,145,18,24,20,11,11,11,0,73,,,,,,,13 +9206,396,160,27,26,25,12,12,12,0,73,,,,,,,13 +9207,396,169,39,14,26,13,13,13,0,71,,,,,,,15 +9208,396,95,3,5,1,14,14,14,0,70,,,,,,,36 +9209,396,133,45,21,21,,R,15,0,64,,,,,,,69 +9210,396,163,27,25,19,,R,16,0,57,,,,,,,10 +9211,396,112,33,30,15,,R,17,0,48,,,,,,,3 +9212,396,84,49,9,22,,R,18,0,45,,,,,,,101 +9213,396,105,6,27,5,,R,19,0,43,,,,,,,5 +9214,396,110,34,8,13,,R,20,0,43,,,,,,,6 +9215,396,140,1,2,8,,R,21,0,14,,,,,,,6 +9216,396,170,22,19,12,,R,22,0,14,,,,,,,6 +9217,396,167,18,23,24,,R,23,0,14,,,,,,,20 +9218,396,77,6,28,2,,R,24,0,13,,,,,,,24 +9219,396,157,49,10,23,,R,25,0,3,,,,,,,5 +9220,396,138,32,11,17,,R,26,0,1,,,,,,,30 +9221,397,95,3,5,2,1,1,1,9,52,18:44.9,4724898,,,,,1 +9222,397,137,3,6,1,2,2,2,6,52,55.704,4780602,,,,,1 +9223,397,170,22,19,5,3,3,3,4,51,,,,,,,11 +9224,397,123,22,20,4,4,4,4,3,51,,,,,,,11 +9225,397,102,32,12,7,5,5,5,2,50,,,,,,,12 +9226,397,117,1,1,9,6,6,6,1,50,,,,,,,12 +9227,397,140,1,2,14,7,7,7,0,50,,,,,,,12 +9228,397,160,27,26,18,8,8,8,0,50,,,,,,,12 +9229,397,157,49,10,20,9,9,9,0,49,,,,,,,13 +9230,397,163,27,25,16,10,10,10,0,49,,,,,,,13 +9231,397,122,37,16,23,11,11,11,0,49,,,,,,,13 +9232,397,112,33,30,22,12,12,12,0,49,,,,,,,13 +9233,397,138,32,11,13,13,13,13,0,49,,,,,,,13 +9234,397,156,25,3,24,14,14,14,0,47,,,,,,,15 +9235,397,84,49,9,17,,D,15,0,48,,,,,,,2 +9236,397,169,39,14,26,,N,16,0,45,,,,,,,62 +9237,397,119,34,7,8,,R,17,0,43,,,,,,,5 +9238,397,105,6,27,6,,R,18,0,42,,,,,,,101 +9239,397,110,34,8,10,,R,19,0,35,,,,,,,5 +9240,397,118,21,17,11,,R,20,0,35,,,,,,,5 +9241,397,158,21,18,12,,R,21,0,31,,,,,,,27 +9242,397,77,6,28,3,,R,22,0,5,,,,,,,101 +9243,397,167,18,23,19,,R,23,0,3,,,,,,,10 +9244,397,145,18,24,15,,R,24,0,1,,,,,,,5 +9245,397,133,45,21,21,,R,25,0,0,,,,,,,10 +9246,397,166,25,4,25,,R,26,0,0,,,,,,,3 +9247,398,137,3,6,1,1,1,1,9,50,14:47.7,4487707,,,,,1 +9248,398,102,32,12,4,2,2,2,6,50,1.806,4489513,,,,,1 +9249,398,95,3,5,2,3,3,3,4,50,49.036,4536743,,,,,1 +9250,398,77,6,28,3,4,4,4,3,50,57.979,4545686,,,,,1 +9251,398,123,22,20,6,5,5,5,2,50,+1:21.319,4569026,,,,,1 +9252,398,140,1,2,11,6,6,6,1,50,+1:28.787,4576494,,,,,1 +9253,398,170,22,19,7,7,7,7,0,49,,,,,,,11 +9254,398,160,27,26,19,8,8,8,0,48,,,,,,,12 +9255,398,157,49,10,16,9,9,9,0,48,,,,,,,12 +9256,398,163,27,25,15,10,10,10,0,48,,,,,,,12 +9257,398,138,32,11,14,11,11,11,0,47,,,,,,,13 +9258,398,166,25,4,24,12,12,12,0,47,,,,,,,13 +9259,398,122,37,16,25,13,13,13,0,47,,,,,,,13 +9260,398,156,25,3,22,14,14,14,0,47,,,,,,,13 +9261,398,117,1,1,5,15,15,15,0,46,,,,,,,14 +9262,398,145,18,24,18,16,16,16,0,45,,,,,,,15 +9263,398,84,49,9,17,,R,17,0,43,,,,,,,6 +9264,398,112,33,30,23,,R,18,0,37,,,,,,,20 +9265,398,167,18,23,20,,R,19,0,34,,,,,,,5 +9266,398,158,21,18,13,,R,20,0,27,,,,,,,86 +9267,398,171,45,22,26,,R,21,0,27,,,,,,,101 +9268,398,133,45,21,21,,R,22,0,16,,,,,,,22 +9269,398,105,6,27,8,,R,23,0,13,,,,,,,101 +9270,398,118,21,17,12,,R,24,0,9,,,,,,,10 +9271,398,110,34,8,10,,R,25,0,7,,,,,,,22 +9272,398,119,34,7,9,,R,26,0,5,,,,,,,5 +9273,398,78,42,32,0,,F,27,0,0,,,,,,,81 +9274,398,169,39,14,0,,F,28,0,0,,,,,,,81 +9275,399,117,1,1,3,1,1,1,9,70,37:03.9,5823906,,,,,1 +9276,399,77,6,28,1,2,2,2,6,70,20.493,5844399,,,,,1 +9277,399,137,3,6,4,3,3,3,4,70,+1:03.295,5887201,,,,,1 +9278,399,170,22,19,10,4,4,4,3,69,,,,,,,60 +9279,399,140,1,2,8,5,5,5,2,69,,,,,,,11 +9280,399,158,21,18,11,6,6,6,1,68,,,,,,,12 +9281,399,102,32,12,5,7,7,7,0,68,,,,,,,12 +9282,399,138,32,11,15,8,8,8,0,68,,,,,,,12 +9283,399,122,37,16,22,9,9,9,0,67,,,,,,,13 +9284,399,156,25,3,24,10,10,10,0,67,,,,,,,13 +9285,399,145,18,24,14,11,11,11,0,66,,,,,,,60 +9286,399,166,25,4,21,12,12,12,0,66,,,,,,,14 +9287,399,118,21,17,12,13,13,13,0,66,,,,,,,14 +9288,399,123,22,20,9,14,14,14,0,64,,,,,,,16 +9289,399,110,34,8,13,,R,15,0,54,,,,,,,98 +9290,399,105,6,27,6,,R,16,0,38,,,,,,,6 +9291,399,84,49,9,17,,R,17,0,35,,,,,,,6 +9292,399,171,45,22,26,,R,18,0,32,,,,,,,22 +9293,399,112,33,30,19,,R,19,0,31,,,,,,,5 +9294,399,163,27,25,18,,R,20,0,29,,,,,,,21 +9295,399,133,45,21,25,,R,21,0,27,,,,,,,101 +9296,399,160,27,26,23,,R,22,0,24,,,,,,,80 +9297,399,167,18,23,20,,R,23,0,24,,,,,,,3 +9298,399,95,3,5,2,,R,24,0,13,,,,,,,10 +9299,399,119,34,7,7,,R,25,0,13,,,,,,,5 +9300,399,157,49,10,16,,R,26,0,0,,,,,,,3 +9301,400,95,3,5,2,1,1,1,9,72,49:12.7,6552692,,,,,1 +9302,400,117,1,1,7,2,2,2,6,72,22.225,6574917,,,,,1 +9303,400,140,1,2,11,3,3,3,4,72,30.818,6583510,,,,,1 +9304,400,137,3,6,1,4,4,4,3,72,31.45,6584142,,,,,1 +9305,400,102,32,12,5,5,5,5,2,72,+1:13.507,6626199,,,,,1 +9306,400,112,33,30,17,6,6,6,1,71,,,,,,,11 +9307,400,166,25,4,15,7,7,7,0,71,,,,,,,11 +9308,400,158,21,18,13,8,8,8,0,70,,,,,,,60 +9309,400,138,32,11,18,9,9,9,0,70,,,,,,,12 +9310,400,118,21,17,12,10,10,10,0,70,,,,,,,12 +9311,400,84,49,9,20,11,11,11,0,70,,,,,,,12 +9312,400,122,37,16,19,12,12,12,0,70,,,,,,,12 +9313,400,119,34,7,9,13,13,13,0,68,,,,,,,14 +9314,400,167,18,23,24,14,14,14,0,68,,,,,,,14 +9315,400,105,6,27,4,15,15,15,0,67,,,,,,,5 +9316,400,123,22,20,8,16,16,16,0,66,,,,,,,3 +9317,400,77,6,28,3,,R,17,0,62,,,,,,,5 +9318,400,156,25,3,16,,R,18,0,55,,,,,,,4 +9319,400,163,27,25,14,,R,19,0,55,,,,,,,4 +9320,400,157,49,10,22,,R,20,0,50,,,,,,,7 +9321,400,145,18,24,21,,R,21,0,45,,,,,,,101 +9322,400,170,22,19,6,,R,22,0,40,,,,,,,23 +9323,400,110,34,8,10,,R,23,0,26,,,,,,,6 +9324,400,160,27,26,23,,R,24,0,24,,,,,,,80 +9325,400,169,39,14,25,,R,25,0,10,,,,,,,8 +9326,400,78,42,32,26,,R,26,0,8,,,,,,,22 +9327,400,133,45,21,0,,F,27,0,0,,,,,,,81 +9328,401,95,3,5,1,1,1,1,9,63,26:24.2,5184207,,,,,1 +9329,401,137,3,6,3,2,2,2,6,63,26.176,5210383,,,,,1 +9330,401,119,34,7,8,3,3,3,4,63,+1:26.879,5271086,,,,,1 +9331,401,158,21,18,13,4,4,4,3,63,+1:41.352,5285559,,,,,1 +9332,401,170,22,19,6,5,5,5,2,61,,,,,,,12 +9333,401,112,33,30,24,6,6,6,1,60,,,,,,,13 +9334,401,156,25,3,22,7,7,7,0,60,,,,,,,13 +9335,401,166,25,4,25,8,8,8,0,60,,,,,,,13 +9336,401,114,33,29,23,9,9,9,0,59,,,,,,,14 +9337,401,102,32,12,7,,R,10,0,54,,,,,,,20 +9338,401,122,37,16,20,,R,11,0,51,,,,,,,47 +9339,401,133,45,21,26,,R,12,0,50,,,,,,,5 +9340,401,160,27,26,21,,R,13,0,43,,,,,,,47 +9341,401,167,18,23,19,,R,14,0,32,,,,,,,7 +9342,401,163,27,25,18,,R,15,0,29,,,,,,,25 +9343,401,118,21,17,11,,R,16,0,26,,,,,,,3 +9344,401,110,34,8,10,,R,17,0,22,,,,,,,3 +9345,401,77,6,28,2,,R,18,0,20,,,,,,,101 +9346,401,123,22,20,4,,R,19,0,15,,,,,,,10 +9347,401,145,18,24,14,,R,20,0,13,,,,,,,101 +9348,401,105,6,27,9,,R,21,0,12,,,,,,,5 +9349,401,84,49,9,13,,R,22,0,3,,,,,,,101 +9350,401,140,1,2,15,,R,23,0,1,,,,,,,3 +9351,401,138,32,11,16,,R,24,0,1,,,,,,,3 +9352,401,157,49,10,17,,R,25,0,1,,,,,,,3 +9353,401,117,1,1,5,,R,26,0,0,,,,,,,4 +9354,402,77,6,28,1,1,1,1,9,51,32:58.1,5578072,,,,,1 +9355,402,102,32,12,7,2,2,2,6,51,17.384,5595456,,,,,1 +9356,402,140,1,2,9,3,3,3,4,51,17.694,5595766,,,,,1 +9357,402,105,6,27,4,4,4,4,3,51,+1:20.441,5658513,,,,,1 +9358,402,123,22,20,3,5,5,5,2,51,+1:25.576,5663648,,,,,1 +9359,402,138,32,11,11,6,6,6,1,51,+1:36.479,5674551,,,,,1 +9360,402,117,1,1,2,7,7,7,0,50,,,,,,,11 +9361,402,156,25,3,19,8,8,8,0,50,,,,,,,11 +9362,402,158,21,18,12,9,9,9,0,50,,,,,,,60 +9363,402,118,21,17,13,10,10,10,0,50,,,,,,,11 +9364,402,119,34,7,8,11,11,11,0,49,,,,,,,12 +9365,402,166,25,4,25,12,12,12,0,49,,,,,,,12 +9366,402,160,27,26,24,13,13,13,0,48,,,,,,,13 +9367,402,114,33,29,22,14,14,14,0,47,,,,,,,14 +9368,402,137,3,6,5,15,15,15,0,46,,,,,,,5 +9369,402,163,27,25,17,,R,16,0,44,,,,,,,60 +9370,402,133,45,21,23,,R,17,0,43,,,,,,,60 +9371,402,90,39,14,26,,R,18,0,38,,,,,,,10 +9372,402,145,18,24,14,,R,19,0,35,,,,,,,5 +9373,402,84,49,9,15,,R,20,0,32,,,,,,,5 +9374,402,110,34,8,10,,R,21,0,26,,,,,,,5 +9375,402,170,22,19,6,,R,22,0,16,,,,,,,5 +9376,402,157,49,10,16,,R,23,0,13,,,,,,,5 +9377,402,122,37,16,20,,R,24,0,13,,,,,,,3 +9378,402,167,18,23,21,,R,25,0,2,,,,,,,5 +9379,402,112,33,30,18,,R,26,0,0,,,,,,,3 +9380,402,95,3,5,0,,W,27,0,0,,,,,,,3 +9381,403,77,6,28,1,1,1,1,9,82,52:56.1,6776144,,,,,1 +9382,403,105,6,27,6,2,2,2,6,82,+1:07.884,6844028,,,,,1 +9383,403,123,22,20,5,3,3,3,4,81,,,,,,,11 +9384,403,156,25,3,19,4,4,4,3,80,,,,,,,12 +9385,403,114,33,29,21,5,5,5,0,79,,,,,,,13 +9386,403,90,39,14,25,6,6,6,1,79,,,,,,,13 +9387,403,157,49,10,24,7,7,7,0,79,,,,,,,13 +9388,403,110,34,8,10,8,8,8,0,78,,,,,,,20 +9389,403,119,3,5,7,9,9,9,0,76,,,,,,,44 +9390,403,102,32,12,4,,D,10,0,82,,,,,,,2 +9391,403,137,3,6,3,,R,11,0,58,,,,,,,23 +9392,403,122,37,16,23,,R,12,0,58,,,,,,,20 +9393,403,117,1,1,2,,R,13,0,53,,,,,,,23 +9394,403,158,21,18,11,,R,14,0,53,,,,,,,25 +9395,403,140,1,2,8,,R,15,0,48,,,,,,,23 +9396,403,170,22,19,9,,R,16,0,46,,,,,,,23 +9397,403,167,18,23,26,,R,17,0,46,,,,,,,7 +9398,403,112,33,30,17,,R,18,0,45,,,,,,,10 +9399,403,163,27,25,20,,R,19,0,41,,,,,,,80 +9400,403,131,34,7,15,,R,20,0,31,,,,,,,68 +9401,403,160,27,26,22,,R,21,0,26,,,,,,,80 +9402,403,138,32,11,14,,R,22,0,22,,,,,,,9 +9403,403,118,21,17,12,,R,23,0,19,,,,,,,7 +9404,403,84,49,9,16,,R,24,0,18,,,,,,,5 +9405,403,166,25,4,18,,R,25,0,6,,,,,,,20 +9406,403,145,18,24,13,,R,26,0,0,,,,,,,3 +9407,403,133,45,21,27,,F,27,0,0,,,,,,,81 +9408,404,137,3,6,2,1,1,1,9,61,39:32.6,5972583,,,,,1 +9409,404,102,32,12,1,2,2,2,6,61,34.827,6007410,,,,,1 +9410,404,172,27,26,5,3,3,3,4,61,59.759,6032342,,,,,1 +9411,404,163,27,25,4,4,4,4,3,61,+1:28.429,6061012,,,,,1 +9412,404,84,25,3,17,5,5,5,2,60,,,,,,,11 +9413,404,77,22,20,16,6,6,6,1,59,,,,,,,12 +9414,404,166,25,4,18,7,7,7,0,59,,,,,,,12 +9415,404,173,34,8,14,8,8,8,0,58,,,,,,,13 +9416,404,174,32,11,11,9,9,9,0,58,,,,,,,13 +9417,404,170,22,19,12,10,10,10,0,56,,,,,,,15 +9418,404,123,21,18,15,,R,11,0,37,,,,,,,43 +9419,404,105,6,27,6,,R,12,0,35,,,,,,,69 +9420,404,117,1,1,9,,R,13,0,30,,,,,,,5 +9421,404,157,45,22,24,,R,14,0,29,,,,,,,5 +9422,404,140,6,28,8,,R,15,0,26,,,,,,,23 +9423,404,175,26,16,13,,R,16,0,24,,,,,,,84 +9424,404,119,34,7,10,,R,17,0,21,,,,,,,47 +9425,404,156,49,14,21,,R,18,0,20,,,,,,,5 +9426,404,176,21,17,20,,R,19,0,19,,,,,,,5 +9427,404,145,18,24,25,,R,20,0,18,,,,,,,8 +9428,404,110,18,23,22,,R,21,0,16,,,,,,,101 +9429,404,160,45,21,23,,R,22,0,16,,,,,,,5 +9430,404,177,1,2,7,,R,23,0,6,,,,,,,5 +9431,404,178,26,15,19,,R,24,0,5,,,,,,,98 +9432,404,95,3,5,3,,R,25,0,0,,,,,,,20 +9433,405,102,32,12,1,1,1,1,9,72,48:47.7,6527735,,,,,1 +9434,405,95,3,5,3,2,2,2,6,72,0.014,6527749,,,,,1 +9435,405,117,1,1,4,3,3,3,4,72,21.552,6549287,,,,,1 +9436,405,177,1,2,5,4,4,4,3,71,,,,,,,11 +9437,405,170,22,19,9,5,5,5,2,71,,,,,,,11 +9438,405,77,22,20,7,6,6,6,1,71,,,,,,,11 +9439,405,123,21,18,19,7,7,7,0,68,,,,,,,14 +9440,405,175,26,16,18,8,8,8,0,66,,,,,,,16 +9441,405,174,32,11,10,,R,9,0,52,,,,,,,6 +9442,405,84,25,3,12,,R,10,0,41,,,,,,,5 +9443,405,172,27,26,8,,R,11,0,40,,,,,,,86 +9444,405,176,21,17,22,,R,12,0,39,,,,,,,69 +9445,405,137,3,6,2,,R,13,0,39,,,,,,,5 +9446,405,173,34,8,15,,R,14,0,29,,,,,,,6 +9447,405,163,27,25,6,,R,15,0,29,,,,,,,86 +9448,405,105,6,27,13,,R,16,0,22,,,,,,,67 +9449,405,166,25,4,20,,R,17,0,22,,,,,,,5 +9450,405,157,45,22,23,,R,18,0,14,,,,,,,5 +9451,405,140,6,28,11,,R,19,0,11,,,,,,,23 +9452,405,160,45,21,21,,R,20,0,10,,,,,,,5 +9453,405,119,34,7,14,,R,21,0,8,,,,,,,6 +9454,405,110,18,23,24,,R,22,0,1,,,,,,,24 +9455,405,156,49,14,16,,R,23,0,0,,,,,,,4 +9456,405,178,26,15,17,,R,24,0,0,,,,,,,4 +9457,405,145,18,24,25,,R,25,0,0,,,,,,,24 +9458,406,117,1,1,4,1,1,1,9,60,32:28.4,5548408,,,,,1 +9459,406,137,3,6,2,2,2,2,6,60,7.645,5556053,,,,,1 +9460,406,77,22,20,9,3,3,3,4,59,,,,,,,11 +9461,406,140,6,28,7,4,4,4,3,59,,,,,,,11 +9462,406,177,1,2,6,5,5,5,2,58,,,,,,,60 +9463,406,119,34,7,16,6,6,6,1,58,,,,,,,60 +9464,406,123,21,18,12,7,7,7,0,58,,,,,,,12 +9465,406,84,25,3,13,8,8,8,0,58,,,,,,,12 +9466,406,176,21,17,15,9,9,9,0,57,,,,,,,13 +9467,406,105,6,27,5,10,10,10,0,56,,,,,,,101 +9468,406,160,45,21,26,,R,11,0,52,,,,,,,60 +9469,406,163,27,25,8,,R,12,0,46,,,,,,,36 +9470,406,166,25,4,22,,R,13,0,41,,,,,,,7 +9471,406,170,22,19,10,,R,14,0,39,,,,,,,5 +9472,406,156,49,14,20,,R,15,0,38,,,,,,,23 +9473,406,157,45,22,25,,R,16,0,31,,,,,,,10 +9474,406,178,26,15,21,,R,17,0,28,,,,,,,25 +9475,406,110,18,23,23,,R,18,0,20,,,,,,,5 +9476,406,173,34,8,19,,R,19,0,19,,,,,,,5 +9477,406,172,27,26,14,,R,20,0,14,,,,,,,7 +9478,406,102,32,12,1,,R,21,0,11,,,,,,,67 +9479,406,95,3,5,3,,R,22,0,8,,,,,,,5 +9480,406,174,32,11,17,,R,23,0,8,,,,,,,67 +9481,406,179,49,29,24,,R,24,0,7,,,,,,,101 +9482,406,175,26,16,11,,R,25,0,5,,,,,,,5 +9483,406,145,18,24,18,,R,26,0,0,,,,,,,3 +9484,407,117,1,1,1,1,1,1,9,78,55:41.1,6941060,,,,,1 +9485,407,177,1,2,9,2,2,2,6,78,25.022,6966082,,,,,1 +9486,407,102,32,12,3,3,3,3,4,78,53.646,6994706,,,,,1 +9487,407,95,3,5,2,4,4,4,3,78,+1:11.402,7012462,,,,,1 +9488,407,163,27,25,12,5,5,5,2,77,,,,,,,11 +9489,407,172,27,26,7,6,6,6,1,77,,,,,,,11 +9490,407,137,3,6,11,7,7,7,0,77,,,,,,,11 +9491,407,123,21,18,14,8,8,8,0,75,,,,,,,13 +9492,407,176,21,17,17,9,9,9,0,75,,,,,,,13 +9493,407,140,6,28,15,10,10,10,0,75,,,,,,,13 +9494,407,166,25,4,13,11,11,11,0,74,,,,,,,14 +9495,407,156,49,14,19,12,12,12,0,74,,,,,,,14 +9496,407,84,25,3,10,,R,13,0,67,,,,,,,3 +9497,407,175,26,16,8,,R,14,0,67,,,,,,,3 +9498,407,77,22,20,5,,R,15,0,42,,,,,,,38 +9499,407,119,34,7,6,,R,16,0,38,,,,,,,48 +9500,407,105,6,27,4,,R,17,0,38,,,,,,,101 +9501,407,173,34,8,20,,R,18,0,31,,,,,,,5 +9502,407,170,22,19,16,,R,19,0,17,,,,,,,23 +9503,407,178,26,15,18,,R,20,0,2,,,,,,,3 +9504,407,160,45,21,0,,F,21,0,0,,,,,,,81 +9505,407,174,32,11,0,,F,22,0,0,,,,,,,81 +9506,407,179,49,29,0,,F,23,0,0,,,,,,,81 +9507,407,157,45,22,0,,F,24,0,0,,,,,,,81 +9508,407,110,18,23,0,,F,25,0,0,,,,,,,81 +9509,408,95,3,5,5,1,1,1,9,43,27:57.9,5277925,,,,,1 +9510,408,102,32,12,4,2,2,2,6,43,19.827,5297752,,,,,1 +9511,408,140,6,28,11,3,3,3,4,43,23.592,5301517,,,,,1 +9512,408,105,6,27,9,4,4,4,3,43,29.634,5307559,,,,,1 +9513,408,172,27,26,17,5,5,5,2,43,+1:10.690,5348615,,,,,1 +9514,408,117,1,1,3,6,6,6,1,43,+2:17.772,5415697,,,,,1 +9515,408,170,22,19,6,7,7,7,0,42,,,,,,,11 +9516,408,119,34,7,15,8,8,8,0,42,,,,,,,11 +9517,408,176,21,17,21,9,9,9,0,41,,,,,,,12 +9518,408,77,22,20,2,10,10,10,0,41,,,,,,,12 +9519,408,178,26,15,16,11,11,11,0,40,,,,,,,60 +9520,408,166,25,4,18,12,12,12,0,40,,,,,,,13 +9521,408,156,49,14,20,13,13,13,0,37,,,,,,,16 +9522,408,110,18,23,19,,R,14,0,35,,,,,,,60 +9523,408,179,49,29,23,,R,15,0,25,,,,,,,10 +9524,408,84,25,3,12,,R,16,0,25,,,,,,,6 +9525,408,145,18,24,22,,R,17,0,24,,,,,,,6 +9526,408,163,27,25,7,,R,18,0,23,,,,,,,5 +9527,408,137,3,6,1,,R,19,0,16,,,,,,,101 +9528,408,123,21,18,14,,R,20,0,7,,,,,,,10 +9529,408,174,32,11,13,,R,21,0,7,,,,,,,20 +9530,408,177,1,2,8,,R,22,0,6,,,,,,,5 +9531,408,160,45,21,24,,R,23,0,3,,,,,,,5 +9532,408,157,45,22,25,,R,24,0,2,,,,,,,5 +9533,408,175,26,16,10,,R,25,0,0,,,,,,,3 +9534,409,95,3,5,1,1,1,1,9,69,42:26.4,6146415,,,,,1 +9535,409,117,1,1,4,2,2,2,6,69,20.659,6167074,,,,,1 +9536,409,137,3,6,3,3,3,3,4,69,36.262,6182677,,,,,1 +9537,409,177,1,2,6,4,4,4,3,69,+1:35.673,6242088,,,,,1 +9538,409,102,32,12,2,5,5,5,2,68,,,,,,,11 +9539,409,163,27,25,5,6,6,6,1,68,,,,,,,11 +9540,409,172,27,26,8,7,7,7,0,68,,,,,,,11 +9541,409,105,6,27,11,8,8,8,0,68,,,,,,,11 +9542,409,84,25,3,19,9,9,9,0,67,,,,,,,12 +9543,409,178,26,15,13,10,10,10,0,66,,,,,,,13 +9544,409,166,25,4,17,11,11,11,0,65,,,,,,,14 +9545,409,179,49,29,24,12,12,12,0,63,,,,,,,16 +9546,409,119,34,7,9,,R,13,0,44,,,,,,,101 +9547,409,160,45,21,23,,R,14,0,43,,,,,,,6 +9548,409,110,18,23,21,,R,15,0,40,,,,,,,6 +9549,409,123,21,18,12,,R,16,0,38,,,,,,,10 +9550,409,77,22,20,7,,R,17,0,34,,,,,,,101 +9551,409,140,6,28,18,,R,18,0,29,,,,,,,3 +9552,409,174,32,11,16,,R,19,0,28,,,,,,,3 +9553,409,156,49,14,22,,R,20,0,24,,,,,,,5 +9554,409,118,34,8,10,,R,21,0,20,,,,,,,5 +9555,409,145,18,24,20,,R,22,0,17,,,,,,,101 +9556,409,170,22,19,15,,R,23,0,13,,,,,,,84 +9557,409,157,45,22,25,,R,24,0,6,,,,,,,101 +9558,409,175,26,16,14,,R,25,0,0,,,,,,,3 +9559,410,102,32,12,1,1,1,1,9,63,51:12.8,6672847,,,,,1 +9560,410,172,27,26,6,2,2,2,6,63,31.017,6703864,,,,,1 +9561,410,117,1,1,7,3,3,3,4,63,31.824,6704671,,,,,1 +9562,410,105,6,27,11,4,4,4,3,63,+1:30.936,6763783,,,,,1 +9563,410,95,3,5,2,5,5,5,2,62,,,,,,,11 +9564,410,119,34,7,8,6,6,6,1,62,,,,,,,11 +9565,410,174,32,11,14,7,7,7,0,61,,,,,,,12 +9566,410,156,49,14,20,8,8,8,0,61,,,,,,,12 +9567,410,166,25,4,18,9,9,9,0,61,,,,,,,12 +9568,410,118,34,8,15,10,10,10,0,60,,,,,,,13 +9569,410,157,21,17,19,,R,11,0,51,,,,,,,10 +9570,410,163,27,25,4,,R,12,0,46,,,,,,,3 +9571,410,123,21,18,13,,R,13,0,44,,,,,,,3 +9572,410,110,18,23,23,,R,14,0,43,,,,,,,6 +9573,410,137,3,6,3,,R,15,0,41,,,,,,,3 +9574,410,140,6,28,5,,R,16,0,40,,,,,,,10 +9575,410,170,22,19,17,,R,17,0,38,,,,,,,6 +9576,410,158,26,16,10,,R,18,0,37,,,,,,,38 +9577,410,178,26,15,21,,R,19,0,33,,,,,,,38 +9578,410,180,45,22,25,,R,20,0,28,,,,,,,10 +9579,410,84,25,3,16,,R,21,0,15,,,,,,,10 +9580,410,160,45,21,22,,R,22,0,14,,,,,,,101 +9581,410,177,1,2,9,,R,23,0,12,,,,,,,7 +9582,410,77,22,20,12,,R,24,0,8,,,,,,,5 +9583,410,145,18,24,24,,R,25,0,3,,,,,,,101 +9584,410,179,49,29,26,,R,26,0,0,,,,,,,10 +9585,411,95,3,5,2,1,1,1,9,80,37:19.3,5839272,,,,,1 +9586,411,117,1,1,5,2,2,2,6,80,17.128,5856400,,,,,1 +9587,411,137,3,6,3,3,3,3,4,80,37.545,5876817,,,,,1 +9588,411,177,1,2,7,4,4,4,3,80,48.703,5887975,,,,,1 +9589,411,163,27,25,4,5,5,5,2,79,,,,,,,11 +9590,411,172,27,26,11,6,6,6,1,79,,,,,,,11 +9591,411,119,34,7,16,7,7,7,0,78,,,,,,,12 +9592,411,105,6,27,9,8,8,8,0,78,,,,,,,12 +9593,411,118,34,8,14,9,9,9,0,77,,,,,,,13 +9594,411,84,25,3,15,10,10,10,0,77,,,,,,,13 +9595,411,157,21,17,18,11,11,11,0,76,,,,,,,14 +9596,411,123,21,18,21,,N,12,0,67,,,,,,,62 +9597,411,175,26,16,13,,R,13,0,64,,,,,,,23 +9598,411,174,32,11,12,,R,14,0,56,,,,,,,5 +9599,411,156,49,14,22,,R,15,0,46,,,,,,,5 +9600,411,166,25,4,17,,R,16,0,43,,,,,,,42 +9601,411,179,49,29,24,,R,17,0,32,,,,,,,3 +9602,411,180,45,22,26,,R,18,0,25,,,,,,,101 +9603,411,77,22,20,8,,R,19,0,22,,,,,,,6 +9604,411,170,22,19,6,,R,20,0,7,,,,,,,5 +9605,411,140,6,28,10,,R,21,0,5,,,,,,,101 +9606,411,102,32,12,1,,R,22,0,3,,,,,,,3 +9607,411,160,45,21,25,,R,23,0,3,,,,,,,3 +9608,411,145,18,24,19,,R,24,0,3,,,,,,,3 +9609,411,110,18,23,23,,R,25,0,3,,,,,,,101 +9610,411,178,26,15,20,,R,26,0,2,,,,,,,3 +9611,412,95,3,5,2,1,1,1,9,75,30:38.5,5438471,,,,,1 +9612,412,137,3,6,1,2,2,2,6,75,5.574,5444045,,,,,1 +9613,412,117,1,1,6,3,3,3,4,74,,,,,,,11 +9614,412,163,27,25,8,4,4,4,3,73,,,,,,,12 +9615,412,84,25,3,11,5,5,5,2,72,,,,,,,13 +9616,412,166,25,4,16,6,6,6,1,72,,,,,,,13 +9617,412,174,32,11,10,7,7,7,0,72,,,,,,,13 +9618,412,118,34,8,9,8,8,8,0,72,,,,,,,13 +9619,412,156,49,14,22,9,9,9,0,69,,,,,,,16 +9620,412,123,21,18,13,,N,10,0,62,,,,,,,62 +9621,412,175,26,16,17,,R,11,0,60,,,,,,,6 +9622,412,105,6,27,12,,R,12,0,51,,,,,,,101 +9623,412,145,18,24,20,,R,13,0,50,,,,,,,38 +9624,412,170,22,19,7,,R,14,0,45,,,,,,,69 +9625,412,119,34,7,15,,R,15,0,39,,,,,,,5 +9626,412,102,32,12,3,,R,16,0,27,,,,,,,6 +9627,412,179,49,29,25,,R,17,0,24,,,,,,,5 +9628,412,110,18,23,21,,R,18,0,23,,,,,,,10 +9629,412,77,22,20,4,,R,19,0,22,,,,,,,10 +9630,412,178,26,15,14,,R,20,0,22,,,,,,,37 +9631,412,140,6,28,18,,R,21,0,20,,,,,,,5 +9632,412,177,1,2,5,,R,22,0,7,,,,,,,6 +9633,412,172,27,26,19,,R,23,0,0,,,,,,,4 +9634,412,157,21,17,23,,R,24,0,0,,,,,,,4 +9635,412,160,45,21,24,,R,25,0,0,,,,,,,4 +9636,412,180,45,22,26,,R,26,0,0,,,,,,,4 +9637,413,137,3,6,5,1,1,1,9,44,22:08.3,4928263,,,,,1 +9638,413,102,32,12,3,2,2,2,6,44,15.437,4943700,,,,,1 +9639,413,95,3,5,6,3,3,3,4,44,44.58,4972843,,,,,1 +9640,413,163,27,25,8,4,4,4,3,44,+1:15.176,5003439,,,,,1 +9641,413,177,1,2,1,5,5,5,2,43,,,,,,,60 +9642,413,117,1,1,2,6,6,6,1,43,,,,,,,60 +9643,413,118,34,8,20,7,7,7,0,43,,,,,,,11 +9644,413,175,26,16,13,8,8,8,0,43,,,,,,,11 +9645,413,178,26,15,19,9,9,9,0,42,,,,,,,12 +9646,413,77,22,20,4,10,10,10,0,42,,,,,,,12 +9647,413,140,6,28,11,11,11,11,0,41,,,,,,,41 +9648,413,180,45,22,26,12,12,12,0,40,,,,,,,14 +9649,413,157,21,17,17,,R,13,0,38,,,,,,,101 +9650,413,179,49,29,24,,R,14,0,38,,,,,,,6 +9651,413,156,49,14,16,,R,15,0,37,,,,,,,5 +9652,413,84,25,3,15,,R,16,0,34,,,,,,,10 +9653,413,119,34,7,7,,R,17,0,22,,,,,,,101 +9654,413,110,18,23,23,,R,18,0,20,,,,,,,6 +9655,413,145,18,24,22,,R,19,0,19,,,,,,,25 +9656,413,174,32,11,12,,R,20,0,17,,,,,,,21 +9657,413,123,21,18,21,,R,21,0,13,,,,,,,101 +9658,413,112,27,26,14,,R,22,0,11,,,,,,,5 +9659,413,160,45,21,25,,R,23,0,10,,,,,,,8 +9660,413,166,25,4,18,,R,24,0,7,,,,,,,5 +9661,413,105,6,27,10,,R,25,0,6,,,,,,,7 +9662,413,170,22,19,9,,R,26,0,0,,,,,,,3 +9663,414,137,3,6,2,1,1,1,9,76,00:34.5,7234508,,,,,1 +9664,414,102,32,12,1,2,2,2,6,76,17.673,7252181,,,,,1 +9665,414,95,3,5,4,3,3,3,4,75,,,,,,,11 +9666,414,140,6,28,7,4,4,4,3,75,,,,,,,11 +9667,414,174,32,11,8,5,5,5,2,74,,,,,,,12 +9668,414,84,25,3,16,6,6,6,1,74,,,,,,,12 +9669,414,175,26,16,6,7,7,7,0,74,,,,,,,12 +9670,414,166,25,4,18,8,8,8,0,74,,,,,,,12 +9671,414,112,27,26,12,9,9,9,0,73,,,,,,,13 +9672,414,156,49,14,24,10,10,10,0,70,,,,,,,16 +9673,414,163,27,25,9,,R,11,0,48,,,,,,,5 +9674,414,178,26,15,10,,R,12,0,46,,,,,,,24 +9675,414,77,22,20,11,,R,13,0,44,,,,,,,7 +9676,414,123,21,18,22,,R,14,0,40,,,,,,,10 +9677,414,177,1,2,5,,R,15,0,34,,,,,,,22 +9678,414,170,22,19,13,,R,16,0,32,,,,,,,7 +9679,414,145,18,24,17,,R,17,0,30,,,,,,,5 +9680,414,105,6,27,15,,R,18,0,29,,,,,,,3 +9681,414,118,34,8,19,,R,19,0,28,,,,,,,3 +9682,414,117,1,1,3,,R,20,0,23,,,,,,,3 +9683,414,160,45,21,23,,R,21,0,15,,,,,,,22 +9684,414,157,21,17,21,,R,22,0,7,,,,,,,22 +9685,414,119,34,7,14,,R,23,0,5,,,,,,,6 +9686,414,110,18,23,20,,R,24,0,5,,,,,,,5 +9687,414,179,49,29,25,,R,25,0,2,,,,,,,21 +9688,414,180,45,22,26,,R,26,0,1,,,,,,,101 +9689,415,117,1,1,5,1,1,1,9,52,21:22.5,4882531,,,,,1 +9690,415,105,6,27,9,2,2,2,6,51,,,,,,,11 +9691,415,140,6,28,14,3,3,3,4,50,,,,,,,12 +9692,415,178,26,15,16,4,4,4,3,50,,,,,,,12 +9693,415,175,26,16,13,5,5,5,2,50,,,,,,,12 +9694,415,157,21,17,22,6,6,6,1,49,,,,,,,13 +9695,415,77,22,20,2,7,7,7,0,49,,,,,,,13 +9696,415,179,49,29,24,8,8,8,0,48,,,,,,,14 +9697,415,177,1,2,3,9,9,9,0,47,,,,,,,10 +9698,415,163,27,25,12,10,10,10,0,47,,,,,,,15 +9699,415,160,45,21,25,11,11,11,0,46,,,,,,,16 +9700,415,95,3,5,6,,R,12,0,32,,,,,,,86 +9701,415,137,3,6,7,,R,13,0,29,,,,,,,5 +9702,415,123,21,18,18,,R,14,0,25,,,,,,,101 +9703,415,170,22,19,1,,R,15,0,17,,,,,,,5 +9704,415,112,27,26,11,,R,16,0,16,,,,,,,5 +9705,415,145,18,24,19,,R,17,0,13,,,,,,,22 +9706,415,110,18,23,23,,R,18,0,13,,,,,,,8 +9707,415,102,32,12,8,,R,19,0,13,,,,,,,5 +9708,415,84,25,3,17,,R,20,0,12,,,,,,,101 +9709,415,166,25,4,20,,R,21,0,10,,,,,,,5 +9710,415,174,32,11,15,,R,22,0,9,,,,,,,5 +9711,415,156,49,14,21,,R,23,0,8,,,,,,,5 +9712,415,180,45,22,26,,R,24,0,6,,,,,,,10 +9713,415,119,34,7,4,,R,25,0,2,,,,,,,5 +9714,415,118,34,8,10,,W,26,0,0,,,,,,,54 +9715,416,137,3,6,6,1,1,1,9,51,17:42.9,4662889,,,,,1 +9716,416,95,3,5,3,2,2,2,6,51,9.828,4672717,,,,,1 +9717,416,140,6,28,12,3,3,3,4,51,22.915,4685804,,,,,1 +9718,416,177,1,2,8,4,4,4,3,51,53.809,4716698,,,,,1 +9719,416,77,22,20,4,5,5,5,2,50,,,,,,,11 +9720,416,178,26,15,18,6,6,6,1,49,,,,,,,12 +9721,416,123,21,18,13,7,7,7,0,49,,,,,,,12 +9722,416,157,21,17,16,8,8,8,0,49,,,,,,,12 +9723,416,166,25,4,23,9,9,9,0,49,,,,,,,12 +9724,416,84,25,3,20,10,10,10,0,49,,,,,,,12 +9725,416,133,45,22,27,,N,11,0,45,,,,,,,62 +9726,416,170,22,19,1,,R,12,0,44,,,,,,,29 +9727,416,105,6,27,9,,R,13,0,33,,,,,,,5 +9728,416,110,18,23,21,,R,14,0,33,,,,,,,5 +9729,416,122,39,31,25,,R,15,0,31,,,,,,,29 +9730,416,163,27,25,11,,R,16,0,30,,,,,,,6 +9731,416,156,49,14,22,,R,17,0,27,,,,,,,5 +9732,416,117,1,1,2,,D,18,0,27,,,,,,,2 +9733,416,112,27,26,14,,R,19,0,22,,,,,,,5 +9734,416,174,32,11,17,,R,20,0,18,,,,,,,6 +9735,416,118,34,8,7,,R,21,0,16,,,,,,,20 +9736,416,145,18,24,19,,R,22,0,15,,,,,,,10 +9737,416,160,45,21,26,,R,23,0,12,,,,,,,22 +9738,416,175,26,16,15,,R,24,0,2,,,,,,,3 +9739,416,119,34,7,10,,R,25,0,2,,,,,,,3 +9740,416,179,49,29,24,,R,26,0,1,,,,,,,5 +9741,416,102,32,12,5,,R,27,0,0,,,,,,,7 +9742,417,95,3,5,2,1,1,1,9,70,37:21.9,5841900,,,,,1 +9743,417,117,1,1,3,2,2,2,6,70,18.772,5860672,,,,,1 +9744,417,137,3,6,6,3,3,3,4,70,49.274,5891174,,,,,1 +9745,417,102,32,12,1,4,4,4,3,69,,,,,,,60 +9746,417,105,6,27,13,5,5,5,2,69,,,,,,,11 +9747,417,140,6,28,8,6,6,6,1,69,,,,,,,11 +9748,417,163,27,25,10,7,7,7,0,69,,,,,,,11 +9749,417,170,22,19,5,8,8,8,0,68,,,,,,,12 +9750,417,174,32,11,15,9,9,9,0,68,,,,,,,12 +9751,417,123,21,18,21,10,10,10,0,67,,,,,,,13 +9752,417,157,21,17,22,11,11,11,0,67,,,,,,,13 +9753,417,156,49,14,20,12,12,12,0,67,,,,,,,13 +9754,417,180,45,22,27,13,13,13,0,63,,,,,,,17 +9755,417,119,34,7,9,,R,14,0,62,,,,,,,5 +9756,417,175,26,16,14,,N,15,0,62,,,,,,,62 +9757,417,145,18,24,18,,N,16,0,60,,,,,,,62 +9758,417,77,22,20,4,,R,17,0,44,,,,,,,20 +9759,417,110,18,23,16,,R,18,0,43,,,,,,,20 +9760,417,177,1,2,7,,R,19,0,41,,,,,,,10 +9761,417,118,34,8,12,,R,20,0,41,,,,,,,10 +9762,417,112,27,26,11,,R,21,0,39,,,,,,,5 +9763,417,166,25,4,23,,R,22,0,28,,,,,,,5 +9764,417,84,25,3,19,,R,23,0,18,,,,,,,5 +9765,417,178,26,15,17,,R,24,0,10,,,,,,,23 +9766,417,179,49,29,26,,R,25,0,9,,,,,,,7 +9767,417,160,45,21,24,,R,26,0,8,,,,,,,5 +9768,417,122,39,31,25,,R,27,0,6,,,,,,,7 +9769,418,77,22,20,4,1,1,1,9,68,33:18.7,5598700,,,,,1 +9770,418,117,1,1,6,2,2,2,6,68,25.438,5624138,,,,,1 +9771,418,102,32,12,1,3,3,3,4,68,52.513,5651213,,,,,1 +9772,418,137,3,6,2,4,4,4,3,67,,,,,,,11 +9773,418,95,3,5,3,5,5,5,2,67,,,,,,,11 +9774,418,112,27,26,10,6,6,6,1,67,,,,,,,11 +9775,418,123,21,18,21,7,7,7,0,66,,,,,,,12 +9776,418,110,18,23,22,8,8,8,0,66,,,,,,,12 +9777,418,157,21,17,20,9,9,9,0,66,,,,,,,12 +9778,418,156,49,14,18,10,10,10,0,65,,,,,,,60 +9779,418,84,25,3,16,11,11,11,0,65,,,,,,,13 +9780,418,140,6,28,14,12,12,12,0,64,,,,,,,101 +9781,418,119,34,7,5,13,13,13,0,64,,,,,,,20 +9782,418,145,18,24,24,14,14,14,0,64,,,,,,,14 +9783,418,163,27,25,13,15,15,15,0,63,,,,,,,5 +9784,418,180,45,22,26,16,16,16,0,61,,,,,,,17 +9785,418,174,32,11,17,,R,17,0,53,,,,,,,10 +9786,418,118,34,8,7,,R,18,0,37,,,,,,,5 +9787,418,178,26,15,15,,R,19,0,35,,,,,,,27 +9788,418,177,1,2,11,,R,20,0,32,,,,,,,29 +9789,418,105,6,27,12,,R,21,0,10,,,,,,,101 +9790,418,160,45,21,25,,R,22,0,8,,,,,,,101 +9791,418,166,25,4,19,,R,23,0,8,,,,,,,101 +9792,418,170,22,19,9,,R,24,0,4,,,,,,,5 +9793,418,175,26,16,8,,R,25,0,0,,,,,,,3 +9794,419,117,1,1,4,1,1,1,9,82,54:20.4,6860388,,,,,1 +9795,419,137,3,6,2,2,2,2,6,82,4.205,6864593,,,,,1 +9796,419,140,6,28,12,3,3,3,4,81,,,,,,,11 +9797,419,84,25,3,16,4,4,4,3,81,,,,,,,11 +9798,419,166,25,4,10,5,5,5,2,80,,,,,,,60 +9799,419,174,32,11,14,6,6,6,1,80,,,,,,,12 +9800,419,163,27,25,5,7,7,7,0,79,,,,,,,13 +9801,419,112,27,26,8,8,8,8,0,79,,,,,,,13 +9802,419,156,49,14,21,9,9,9,0,77,,,,,,,15 +9803,419,170,22,19,13,10,10,10,0,77,,,,,,,15 +9804,419,175,26,16,17,,N,11,0,70,,,,,,,62 +9805,419,95,3,5,1,,R,12,0,63,,,,,,,27 +9806,419,119,34,7,19,,R,13,0,63,,,,,,,10 +9807,419,177,1,2,7,,R,14,0,62,,,,,,,27 +9808,419,180,45,22,26,,N,15,0,61,,,,,,,62 +9809,419,118,34,8,20,,R,16,0,57,,,,,,,23 +9810,419,157,21,17,24,,R,17,0,52,,,,,,,5 +9811,419,123,21,18,22,,R,18,0,50,,,,,,,5 +9812,419,102,32,12,3,,R,19,0,43,,,,,,,5 +9813,419,110,18,23,11,,R,20,0,40,,,,,,,26 +9814,419,77,22,20,6,,R,21,0,40,,,,,,,5 +9815,419,179,49,29,23,,R,22,0,29,,,,,,,22 +9816,419,178,26,15,15,,R,23,0,16,,,,,,,5 +9817,419,145,18,24,18,,R,24,0,10,,,,,,,3 +9818,419,160,45,21,25,,R,25,0,2,,,,,,,7 +9819,419,105,6,27,9,,R,26,0,0,,,,,,,3 +9820,420,117,1,2,6,1,1,1,9,61,41:26.1,6086115,,,,,1 +9821,420,105,6,27,1,2,2,2,6,61,3.259,6089374,,,,,1 +9822,420,173,32,11,3,3,3,3,4,60,,,,,,,11 +9823,420,163,6,28,7,4,4,4,3,59,,,,,,,12 +9824,420,175,4,15,11,5,5,5,2,59,,,,,,,12 +9825,420,172,27,26,15,6,6,6,1,59,,,,,,,12 +9826,420,140,25,4,23,7,7,7,0,58,,,,,,,13 +9827,420,84,25,3,21,8,8,8,0,58,,,,,,,13 +9828,420,112,50,10,20,9,9,9,0,58,,,,,,,13 +9829,420,118,4,16,10,10,10,10,0,57,,,,,,,14 +9830,420,123,21,18,12,11,11,11,0,57,,,,,,,14 +9831,420,160,45,24,22,12,12,12,0,57,,,,,,,14 +9832,420,181,50,9,16,13,13,13,0,57,,,,,,,14 +9833,420,77,21,17,19,,R,14,0,51,,,,,,,22 +9834,420,102,32,12,4,,R,15,0,48,,,,,,,10 +9835,420,158,51,23,18,,R,16,0,42,,,,,,,5 +9836,420,94,18,29,25,,R,17,0,41,,,,,,,5 +9837,420,182,1,1,9,,R,18,0,27,,,,,,,69 +9838,420,110,27,25,13,,R,19,0,26,,,,,,,3 +9839,420,119,51,22,14,,R,20,0,20,,,,,,,29 +9840,420,177,3,6,2,,R,21,0,10,,,,,,,101 +9841,420,183,34,8,17,,R,22,0,9,,,,,,,3 +9842,420,95,3,5,5,,R,23,0,8,,,,,,,43 +9843,420,184,52,21,24,,R,24,0,7,,,,,,,101 +9844,420,137,34,7,8,,R,25,0,2,,,,,,,7 +9845,421,102,32,12,1,1,1,1,9,67,00:28.0,7228006,,,,,1 +9846,421,105,6,27,5,2,2,2,6,67,+1:02.978,7290984,,,,,1 +9847,421,175,4,15,12,3,3,3,4,66,,,,,,,11 +9848,421,173,32,11,4,4,4,4,3,66,,,,,,,11 +9849,421,95,3,5,9,5,5,5,2,65,,,,,,,12 +9850,421,185,25,4,21,6,6,6,1,65,,,,,,,12 +9851,421,118,4,16,6,7,7,7,0,65,,,,,,,12 +9852,421,140,6,28,11,8,8,8,0,62,,,,,,,15 +9853,421,160,45,24,26,9,9,9,0,61,,,,,,,16 +9854,421,181,50,9,15,,N,10,0,50,,,,,,,62 +9855,421,182,1,1,7,,R,11,0,49,,,,,,,5 +9856,421,158,51,23,14,,R,12,0,36,,,,,,,5 +9857,421,117,1,2,2,,R,13,0,30,,,,,,,20 +9858,421,110,27,25,8,,R,14,0,29,,,,,,,27 +9859,421,137,34,7,16,,R,15,0,28,,,,,,,27 +9860,421,123,21,18,10,,R,16,0,28,,,,,,,10 +9861,421,84,25,3,22,,R,17,0,20,,,,,,,7 +9862,421,184,52,21,29,,R,18,0,19,,,,,,,20 +9863,421,177,3,6,3,,R,19,0,16,,,,,,,20 +9864,421,172,27,26,18,,R,20,0,15,,,,,,,27 +9865,421,77,21,17,17,,R,21,0,12,,,,,,,20 +9866,421,94,18,29,25,,R,22,0,12,,,,,,,20 +9867,421,119,51,22,13,,R,23,0,4,,,,,,,20 +9868,421,112,50,10,20,,R,24,0,3,,,,,,,20 +9869,421,183,34,8,19,,R,25,0,3,,,,,,,10 +9870,421,156,49,30,23,,R,26,0,2,,,,,,,22 +9871,422,173,32,11,3,1,1,1,9,60,34:36.0,5675955,,,,,1 +9872,422,123,21,18,5,2,2,2,6,59,,,,,,,11 +9873,422,175,4,15,11,3,3,3,4,59,,,,,,,11 +9874,422,182,1,1,8,4,4,4,3,59,,,,,,,11 +9875,422,95,3,5,7,5,5,5,2,58,,,,,,,12 +9876,422,140,6,28,15,6,6,6,1,57,,,,,,,60 +9877,422,102,32,12,1,7,7,7,0,57,,,,,,,60 +9878,422,137,34,7,9,8,8,8,0,57,,,,,,,60 +9879,422,84,25,3,25,9,9,9,0,56,,,,,,,60 +9880,422,118,4,16,14,10,10,10,0,56,,,,,,,60 +9881,422,117,1,2,6,,D,11,0,60,,,,,,,2 +9882,422,158,51,23,12,,R,12,0,50,,,,,,,5 +9883,422,160,45,24,22,,N,13,0,46,,,,,,,62 +9884,422,105,6,27,4,,R,14,0,29,,,,,,,10 +9885,422,181,50,9,23,,R,15,0,27,,,,,,,5 +9886,422,112,50,10,21,,R,16,0,24,,,,,,,5 +9887,422,177,3,6,2,,R,17,0,23,,,,,,,23 +9888,422,172,27,26,16,,R,18,0,22,,,,,,,101 +9889,422,94,18,29,19,,R,19,0,14,,,,,,,101 +9890,422,110,27,25,13,,R,20,0,11,,,,,,,20 +9891,422,184,52,21,26,,R,21,0,9,,,,,,,10 +9892,422,183,34,8,20,,R,22,0,5,,,,,,,5 +9893,422,185,25,4,24,,R,23,0,5,,,,,,,5 +9894,422,77,21,17,18,,R,24,0,4,,,,,,,5 +9895,422,119,51,22,18,,R,25,0,4,,,,,,,5 +9896,422,156,49,30,17,,R,26,0,0,,,,,,,31 +9897,423,117,1,2,5,1,1,1,9,78,51:58.0,6718034,,,,,1 +9898,423,105,6,27,3,2,2,2,6,78,7.541,6725575,,,,,1 +9899,423,173,32,11,9,3,3,3,4,78,+1:27.171,6805205,,,,,1 +9900,423,110,27,25,8,4,4,4,3,77,,,,,,,11 +9901,423,118,4,16,10,5,5,5,2,77,,,,,,,11 +9902,423,172,27,26,16,6,6,6,1,77,,,,,,,11 +9903,423,95,3,5,2,7,7,7,0,77,,,,,,,11 +9904,423,177,3,6,7,8,8,8,0,76,,,,,,,12 +9905,423,123,21,18,6,9,9,9,0,76,,,,,,,12 +9906,423,84,25,3,18,10,10,10,0,74,,,,,,,14 +9907,423,156,49,30,19,11,11,11,0,74,,,,,,,14 +9908,423,182,1,1,14,,R,12,0,17,,,,,,,20 +9909,423,119,51,22,12,,R,13,0,16,,,,,,,3 +9910,423,137,34,7,13,,R,14,0,16,,,,,,,3 +9911,423,170,53,19,20,,R,15,0,16,,,,,,,101 +9912,423,102,32,12,1,,R,16,0,13,,,,,,,5 +9913,423,158,51,23,4,,R,17,0,10,,,,,,,91 +9914,423,140,6,28,15,,R,18,0,1,,,,,,,3 +9915,423,77,21,17,11,,R,19,0,0,,,,,,,3 +9916,423,175,4,15,17,,R,20,0,0,,,,,,,3 +9917,423,160,45,24,0,,F,21,0,0,,,,,,,81 +9918,423,185,25,4,0,,F,22,0,0,,,,,,,81 +9919,423,112,50,10,0,,F,23,0,0,,,,,,,81 +9920,423,181,50,9,0,,F,24,0,0,,,,,,,81 +9921,423,183,34,8,0,,F,25,0,0,,,,,,,81 +9922,424,105,6,27,3,1,1,1,9,70,46:01.8,6361813,,,,,1 +9923,424,140,6,28,4,2,2,2,6,70,1.957,6363770,,,,,1 +9924,424,117,1,2,5,3,3,3,4,70,4.341,6366154,,,,,1 +9925,424,177,3,6,8,4,4,4,3,70,27.821,6389634,,,,,1 +9926,424,173,32,11,1,5,5,5,2,70,43.349,6405162,,,,,1 +9927,424,95,3,5,16,6,6,6,1,70,+1:17.878,6439691,,,,,1 +9928,424,175,4,15,10,7,7,7,0,69,,,,,,,11 +9929,424,172,27,26,19,8,8,8,0,69,,,,,,,11 +9930,424,123,21,18,7,9,9,9,0,68,,,,,,,12 +9931,424,119,51,22,13,10,10,10,0,68,,,,,,,12 +9932,424,185,25,4,23,11,11,11,0,68,,,,,,,12 +9933,424,84,25,3,24,12,12,12,0,68,,,,,,,12 +9934,424,77,21,17,12,13,13,13,0,67,,,,,,,13 +9935,424,110,27,25,15,14,14,14,0,67,,,,,,,13 +9936,424,176,34,8,20,15,15,15,0,67,,,,,,,13 +9937,424,102,32,12,2,16,16,16,0,65,,,,,,,15 +9938,424,158,51,23,11,17,17,17,0,64,,,,,,,16 +9939,424,94,18,29,25,,R,18,0,57,,,,,,,3 +9940,424,182,1,1,17,,R,19,0,37,,,,,,,5 +9941,424,160,45,24,22,,R,20,0,35,,,,,,,5 +9942,424,112,50,10,21,,R,21,0,28,,,,,,,3 +9943,424,118,4,16,6,,R,22,0,25,,,,,,,3 +9944,424,181,50,9,14,,R,23,0,5,,,,,,,3 +9945,424,170,53,19,18,,R,24,0,3,,,,,,,101 +9946,424,137,34,7,9,,R,25,0,0,,,,,,,7 +9947,425,177,3,6,5,1,1,1,9,63,55:39.9,6939851,,,,,1 +9948,425,140,6,28,9,2,2,2,6,63,57.549,6997400,,,,,1 +9949,425,105,6,27,3,3,3,3,4,63,+1:03.170,7003021,,,,,1 +9950,425,185,25,4,19,4,4,4,3,63,+1:06.225,7006076,,,,,1 +9951,425,173,32,11,8,5,5,5,2,63,+1:26.966,7026817,,,,,1 +9952,425,137,34,7,10,6,6,6,1,62,,,,,,,11 +9953,425,123,21,18,21,7,7,7,0,62,,,,,,,11 +9954,425,176,34,8,11,8,8,8,0,62,,,,,,,11 +9955,425,158,51,23,7,9,9,9,0,61,,,,,,,12 +9956,425,110,27,25,17,10,10,10,0,61,,,,,,,12 +9957,425,77,21,17,24,11,11,11,0,60,,,,,,,13 +9958,425,172,27,26,16,12,12,12,0,58,,,,,,,15 +9959,425,102,32,12,1,,R,13,0,51,,,,,,,3 +9960,425,84,25,3,18,,R,14,0,30,,,,,,,3 +9961,425,112,50,10,23,,R,15,0,27,,,,,,,3 +9962,425,95,3,5,2,,R,16,0,26,,,,,,,3 +9963,425,117,1,2,4,,R,17,0,19,,,,,,,23 +9964,425,119,51,22,14,,R,18,0,19,,,,,,,10 +9965,425,118,4,16,6,,R,19,0,18,,,,,,,7 +9966,425,175,4,15,15,,R,20,0,15,,,,,,,3 +9967,425,94,18,29,25,,R,21,0,11,,,,,,,5 +9968,425,182,1,1,12,,R,22,0,10,,,,,,,23 +9969,425,170,53,19,13,,R,23,0,4,,,,,,,8 +9970,425,181,50,9,20,,R,24,0,3,,,,,,,101 +9971,425,160,45,24,22,,R,25,0,0,,,,,,,3 +9972,426,137,34,7,5,1,1,1,9,53,31:46.3,5506266,,,,,1 +9973,426,177,3,6,1,2,2,2,6,53,6.66,5512926,,,,,1 +9974,426,117,1,2,4,3,3,3,4,53,9.285,5515551,,,,,1 +9975,426,140,6,28,16,4,4,4,3,53,53.491,5559757,,,,,1 +9976,426,173,32,11,7,5,5,5,2,53,53.69,5559956,,,,,1 +9977,426,175,4,15,10,6,6,6,1,53,+1:15.167,5581433,,,,,1 +9978,426,118,4,16,11,7,7,7,0,53,+1:44.212,5610478,,,,,1 +9979,426,176,34,8,14,8,8,8,0,52,,,,,,,11 +9980,426,123,21,18,12,9,9,9,0,52,,,,,,,11 +9981,426,158,51,23,18,10,10,10,0,52,,,,,,,11 +9982,426,119,51,22,17,11,11,11,0,52,,,,,,,11 +9983,426,181,50,9,20,12,12,12,0,50,,,,,,,13 +9984,426,185,25,4,26,13,13,13,0,50,,,,,,,13 +9985,426,170,53,19,19,14,14,14,0,49,,,,,,,69 +9986,426,160,45,24,24,15,15,15,0,49,,,,,,,14 +9987,426,84,25,3,21,,R,16,0,32,,,,,,,6 +9988,426,182,1,1,6,,R,17,0,30,,,,,,,6 +9989,426,102,32,12,2,,R,18,0,26,,,,,,,3 +9990,426,77,21,17,9,,R,19,0,20,,,,,,,3 +9991,426,94,18,29,25,,R,20,0,19,,,,,,,3 +9992,426,112,50,10,23,,R,21,0,8,,,,,,,69 +9993,426,156,49,30,22,,R,22,0,6,,,,,,,5 +9994,426,105,6,27,3,,R,23,0,5,,,,,,,101 +9995,426,110,27,25,13,,R,24,0,4,,,,,,,38 +9996,426,172,27,26,15,,R,25,0,2,,,,,,,101 +9997,426,95,3,5,8,,W,26,0,0,,,,,,,82 +9998,427,117,1,2,3,1,1,1,9,65,18:10.4,4690436,,,,,1 +9999,427,105,6,27,6,2,2,2,6,64,,,,,,,11 +10000,427,172,27,26,16,3,3,3,4,64,,,,,,,11 +10001,427,137,34,7,2,4,4,4,3,64,,,,,,,11 +10002,427,118,4,16,12,5,5,5,2,64,,,,,,,11 +10003,427,176,34,8,15,6,6,6,1,63,,,,,,,12 +10004,427,84,25,3,20,7,7,7,0,63,,,,,,,12 +10005,427,77,21,17,17,8,8,8,0,63,,,,,,,12 +10006,427,119,51,22,14,9,9,9,0,62,,,,,,,13 +10007,427,102,32,12,4,10,10,10,0,60,,,,,,,69 +10008,427,185,25,4,26,11,11,11,0,59,,,,,,,16 +10009,427,182,1,1,10,,R,12,0,57,,,,,,,10 +10010,427,123,21,18,19,,R,13,0,57,,,,,,,20 +10011,427,110,27,25,7,,R,14,0,41,,,,,,,8 +10012,427,94,18,29,23,,R,15,0,38,,,,,,,7 +10013,427,173,32,11,8,,N,16,0,37,,,,,,,62 +10014,427,181,50,9,18,,R,17,0,28,,,,,,,101 +10015,427,177,3,6,1,,R,18,0,21,,,,,,,43 +10016,427,95,3,5,5,,R,19,0,17,,,,,,,8 +10017,427,158,51,23,22,,R,20,0,17,,,,,,,101 +10018,427,156,49,30,24,,R,21,0,6,,,,,,,5 +10019,427,170,53,19,9,,R,22,0,4,,,,,,,7 +10020,427,140,6,28,11,,R,23,0,1,,,,,,,3 +10021,427,175,4,15,13,,R,24,0,0,,,,,,,20 +10022,427,112,50,10,21,,R,25,0,0,,,,,,,3 +10023,427,160,45,24,25,,R,26,0,0,,,,,,,3 +10024,428,105,6,27,8,1,1,1,9,67,35:31.3,5731337,,,,,1 +10025,428,117,1,2,3,2,2,2,6,67,11.661,5742998,,,,,1 +10026,428,172,27,26,13,3,3,3,4,67,51.154,5782491,,,,,1 +10027,428,123,21,18,15,4,4,4,3,67,55.279,5786616,,,,,1 +10028,428,182,1,1,12,5,5,5,2,67,+1:13.972,5805309,,,,,1 +10029,428,95,3,5,10,6,6,6,1,67,+1:16.820,5808157,,,,,1 +10030,428,77,21,17,17,7,7,7,0,66,,,,,,,11 +10031,428,185,25,3,19,8,8,8,0,66,,,,,,,11 +10032,428,140,6,28,2,9,9,9,0,66,,,,,,,11 +10033,428,84,25,4,26,10,10,10,0,63,,,,,,,14 +10034,428,94,18,29,27,11,11,11,0,62,,,,,,,5 +10035,428,177,3,6,4,12,12,12,0,61,,,,,,,23 +10036,428,158,51,23,18,,R,13,0,45,,,,,,,101 +10037,428,173,32,11,7,,R,14,0,40,,,,,,,5 +10038,428,179,45,24,25,,R,15,0,32,,,,,,,6 +10039,428,170,53,19,1,,R,16,0,29,,,,,,,8 +10040,428,102,32,12,5,,R,17,0,27,,,,,,,102 +10041,428,118,4,16,20,,R,18,0,25,,,,,,,80 +10042,428,137,34,7,6,,R,19,0,23,,,,,,,101 +10043,428,175,4,15,16,,R,20,0,19,,,,,,,20 +10044,428,176,34,8,11,,R,21,0,15,,,,,,,5 +10045,428,181,50,9,22,,R,22,0,8,,,,,,,5 +10046,428,119,51,22,9,,R,23,0,8,,,,,,,6 +10047,428,183,4,14,23,,R,24,0,8,,,,,,,8 +10048,428,112,50,10,21,,R,25,0,8,,,,,,,51 +10049,428,156,49,30,24,,R,26,0,7,,,,,,,91 +10050,428,110,27,25,14,,R,27,0,0,,,,,,,4 +10051,429,117,1,2,1,1,1,1,9,52,20:12.6,4812583,,,,,1 +10052,429,102,32,12,14,2,2,2,6,52,30.002,4842585,,,,,1 +10053,429,105,6,27,9,3,3,3,4,52,34.356,4846939,,,,,1 +10054,429,140,6,28,12,4,4,4,3,52,39.073,4851656,,,,,1 +10055,429,173,32,11,7,5,5,5,2,52,+1:22.092,4894675,,,,,1 +10056,429,176,34,8,11,6,6,6,1,51,,,,,,,11 +10057,429,185,25,3,22,7,7,7,0,49,,,,,,,60 +10058,429,123,21,18,16,8,8,8,0,49,,,,,,,13 +10059,429,179,45,24,24,9,9,9,0,48,,,,,,,14 +10060,429,175,4,15,8,10,10,10,0,46,,,,,,,5 +10061,429,172,27,26,15,,R,11,0,43,,,,,,,3 +10062,429,94,18,29,23,,R,12,0,40,,,,,,,22 +10063,429,182,1,1,3,,R,13,0,39,,,,,,,5 +10064,429,77,21,17,17,,R,14,0,33,,,,,,,101 +10065,429,170,53,19,6,,R,15,0,31,,,,,,,10 +10066,429,118,4,16,13,,R,16,0,29,,,,,,,5 +10067,429,186,50,10,23,,R,17,0,28,,,,,,,5 +10068,429,137,34,7,5,,R,18,0,26,,,,,,,43 +10069,429,95,3,5,2,,R,19,0,25,,,,,,,5 +10070,429,119,51,22,10,,R,20,0,25,,,,,,,5 +10071,429,156,49,30,25,,R,21,0,17,,,,,,,5 +10072,429,112,50,9,21,,R,22,0,16,,,,,,,101 +10073,429,110,27,25,18,,R,23,0,13,,,,,,,3 +10074,429,158,51,23,20,,R,24,0,6,,,,,,,101 +10075,429,177,3,6,4,,R,25,0,4,,,,,,,51 +10076,429,160,53,20,19,,W,26,0,0,,,,,,,54 +10077,429,84,25,4,0,,F,27,0,0,,,,,,,81 +10078,430,182,1,1,10,1,1,1,9,70,32:29.3,5549263,,,,,1 +10079,430,117,1,2,3,2,2,2,6,70,0.232,5549495,,,,,1 +10080,430,102,32,12,4,3,3,3,4,70,48.491,5597754,,,,,1 +10081,430,105,6,27,16,4,4,4,3,70,48.837,5598100,,,,,1 +10082,430,173,32,11,11,5,5,5,2,69,,,,,,,11 +10083,430,95,3,5,7,6,6,6,1,69,,,,,,,11 +10084,430,84,25,3,21,7,7,7,0,69,,,,,,,11 +10085,430,137,34,7,1,8,8,8,0,69,,,,,,,11 +10086,430,77,21,17,14,9,9,9,0,68,,,,,,,12 +10087,430,176,34,8,9,10,10,10,0,65,,,,,,,43 +10088,430,179,45,24,26,,N,11,0,56,,,,,,,62 +10089,430,123,21,18,8,,R,12,0,54,,,,,,,22 +10090,430,112,50,9,25,,R,13,0,52,,,,,,,5 +10091,430,185,25,4,22,,R,14,0,39,,,,,,,5 +10092,430,118,4,16,12,,R,15,0,27,,,,,,,6 +10093,430,110,27,25,18,,R,16,0,25,,,,,,,101 +10094,430,175,4,15,6,,R,17,0,22,,,,,,,7 +10095,430,177,3,6,2,,R,18,0,20,,,,,,,5 +10096,430,170,53,19,5,,R,19,0,18,,,,,,,67 +10097,430,172,27,26,13,,R,20,0,17,,,,,,,10 +10098,430,156,49,30,23,,R,21,0,13,,,,,,,51 +10099,430,160,53,20,15,,R,22,0,12,,,,,,,5 +10100,430,140,6,28,17,,R,23,0,9,,,,,,,5 +10101,430,94,18,29,24,,R,24,0,1,,,,,,,3 +10102,430,158,51,23,20,,R,25,0,1,,,,,,,101 +10103,430,119,51,22,19,,R,26,0,1,,,,,,,101 +10104,431,117,1,2,5,1,1,1,9,51,17:59.5,4679451,,,,,1 +10105,431,137,34,7,4,2,2,2,6,51,51.635,4731086,,,,,1 +10106,431,102,32,12,1,3,3,3,4,51,+1:00.390,4739841,,,,,1 +10107,431,176,34,8,9,4,4,4,3,51,+1:00.609,4740060,,,,,1 +10108,431,140,6,28,10,5,5,5,2,50,,,,,,,11 +10109,431,173,32,11,6,6,6,6,1,50,,,,,,,11 +10110,431,175,4,15,8,7,7,7,0,50,,,,,,,11 +10111,431,84,25,3,18,8,8,8,0,50,,,,,,,11 +10112,431,123,21,18,14,9,9,9,0,50,,,,,,,11 +10113,431,166,27,25,19,10,10,10,0,49,,,,,,,12 +10114,431,95,3,5,3,11,11,11,0,47,,,,,,,5 +10115,431,170,53,19,15,12,12,12,0,47,,,,,,,14 +10116,431,105,6,27,7,13,13,13,0,45,,,,,,,5 +10117,431,177,3,6,2,,R,14,0,44,,,,,,,5 +10118,431,172,27,26,20,,R,15,0,40,,,,,,,5 +10119,431,182,1,1,16,,R,16,0,33,,,,,,,7 +10120,431,119,51,22,13,,R,17,0,31,,,,,,,43 +10121,431,179,45,24,22,,R,18,0,26,,,,,,,5 +10122,431,112,50,9,26,,R,19,0,19,,,,,,,101 +10123,431,77,21,17,11,,R,20,0,13,,,,,,,5 +10124,431,118,4,16,6,,R,21,0,9,,,,,,,7 +10125,431,178,26,33,25,,R,22,0,6,,,,,,,5 +10126,431,158,51,23,17,,R,23,0,3,,,,,,,5 +10127,431,186,50,10,24,,R,24,0,2,,,,,,,8 +10128,431,94,18,29,23,,R,25,0,0,,,,,,,48 +10129,431,160,53,20,0,,W,26,0,0,,,,,,,54 +10130,432,102,32,12,2,1,1,1,9,43,34:19.9,5659893,,,,,1 +10131,432,95,3,5,7,2,2,2,6,43,28.422,5688315,,,,,1 +10132,432,117,1,2,1,3,3,3,4,43,55.109,5715002,,,,,1 +10133,432,177,3,6,10,4,4,4,3,43,+1:15.290,5735183,,,,,1 +10134,432,137,34,7,3,5,5,5,2,42,,,,,,,11 +10135,432,118,4,16,14,6,6,6,1,42,,,,,,,11 +10136,432,77,21,17,8,7,7,7,0,42,,,,,,,11 +10137,432,176,34,8,12,8,8,8,0,42,,,,,,,11 +10138,432,166,27,25,18,9,9,9,0,42,,,,,,,11 +10139,432,123,21,18,9,10,10,10,0,40,,,,,,,13 +10140,432,172,27,26,17,11,11,11,0,38,,,,,,,3 +10141,432,94,18,29,24,12,12,12,0,38,,,,,,,15 +10142,432,84,25,3,21,13,13,13,0,38,,,,,,,15 +10143,432,179,45,24,23,,N,14,0,37,,,,,,,62 +10144,432,119,51,22,15,,R,15,0,31,,,,,,,5 +10145,432,158,51,23,19,,R,16,0,26,,,,,,,6 +10146,432,175,4,15,13,,R,17,0,24,,,,,,,6 +10147,432,170,53,19,11,,R,18,0,23,,,,,,,37 +10148,432,173,32,11,9,,R,19,0,17,,,,,,,101 +10149,432,157,49,30,22,,R,20,0,16,,,,,,,6 +10150,432,112,50,9,20,,R,21,0,10,,,,,,,3 +10151,432,140,6,28,5,,R,22,0,7,,,,,,,20 +10152,432,160,53,20,16,,R,23,0,7,,,,,,,3 +10153,432,105,6,27,4,,R,24,0,3,,,,,,,8 +10154,433,95,3,5,3,1,1,1,9,75,32:58.1,5578109,,,,,1 +10155,433,102,32,12,1,2,2,2,6,75,21.396,5599505,,,,,1 +10156,433,177,3,6,4,3,3,3,4,75,58.533,5636642,,,,,1 +10157,433,117,1,2,6,4,4,4,3,75,+1:06.121,5644230,,,,,1 +10158,433,173,32,11,9,5,5,5,2,74,,,,,,,11 +10159,433,123,21,18,12,6,6,6,1,73,,,,,,,12 +10160,433,187,1,1,21,7,7,7,0,73,,,,,,,12 +10161,433,166,27,25,5,8,8,8,0,73,,,,,,,12 +10162,433,119,51,22,11,9,9,9,0,73,,,,,,,12 +10163,433,77,21,17,19,10,10,10,0,73,,,,,,,12 +10164,433,158,51,23,18,11,11,11,0,73,,,,,,,12 +10165,433,175,4,15,17,12,12,12,0,72,,,,,,,13 +10166,433,176,34,8,7,13,13,13,0,62,,,,,,,101 +10167,433,140,6,28,13,,R,14,0,59,,,,,,,10 +10168,433,172,27,26,18,,R,15,0,58,,,,,,,5 +10169,433,157,49,30,25,,R,16,0,55,,,,,,,5 +10170,433,122,25,4,24,,R,17,0,44,,,,,,,3 +10171,433,84,25,3,16,,R,18,0,40,,,,,,,47 +10172,433,170,53,19,20,,R,19,0,33,,,,,,,5 +10173,433,112,50,9,23,,R,20,0,31,,,,,,,5 +10174,433,160,53,20,14,,R,21,0,16,,,,,,,5 +10175,433,178,26,33,22,,R,22,0,13,,,,,,,21 +10176,433,105,6,27,15,,R,23,0,13,,,,,,,101 +10177,433,137,34,7,2,,R,24,0,6,,,,,,,3 +10178,433,118,4,16,8,,R,25,0,4,,,,,,,98 +10179,433,94,18,29,26,,R,26,0,3,,,,,,,3 +10180,434,95,3,5,1,1,1,1,9,75,28:22.9,5302866,,,,,1 +10181,434,177,3,6,3,2,2,2,6,75,7.572,5310438,,,,,1 +10182,434,117,1,2,9,3,3,3,4,74,,,,,,,11 +10183,434,140,6,28,16,4,4,4,3,74,,,,,,,11 +10184,434,77,21,17,11,5,5,5,2,74,,,,,,,11 +10185,434,123,21,18,10,6,6,6,1,74,,,,,,,11 +10186,434,84,25,3,17,7,7,7,0,73,,,,,,,12 +10187,434,173,32,11,6,,R,8,0,52,,,,,,,5 +10188,434,94,18,29,20,,R,9,0,45,,,,,,,21 +10189,434,182,1,1,8,,R,10,0,37,,,,,,,101 +10190,434,166,25,4,19,,R,11,0,16,,,,,,,3 +10191,434,102,32,12,4,,R,12,0,8,,,,,,,5 +10192,434,105,6,27,15,,R,13,0,8,,,,,,,101 +10193,434,137,34,7,2,,R,14,0,6,,,,,,,5 +10194,434,160,53,20,13,,R,15,0,4,,,,,,,5 +10195,434,170,53,19,7,,R,16,0,3,,,,,,,5 +10196,434,176,34,8,5,,R,17,0,3,,,,,,,5 +10197,434,179,45,24,21,,R,18,0,1,,,,,,,10 +10198,434,119,51,22,12,,R,19,0,0,,,,,,,3 +10199,434,158,51,23,14,,R,20,0,0,,,,,,,3 +10200,434,178,26,33,18,,W,21,0,0,,,,,,,100 +10201,435,177,3,6,3,1,1,1,9,82,00:40.5,7240473,,,,,1 +10202,435,172,27,26,20,2,2,2,6,82,43.13,7283603,,,,,1 +10203,435,166,27,25,18,3,3,3,4,82,+1:28.536,7329009,,,,,1 +10204,435,122,25,4,22,4,4,4,3,81,,,,,,,11 +10205,435,140,6,28,15,5,5,5,2,81,,,,,,,11 +10206,435,77,21,17,7,6,6,6,1,81,,,,,,,11 +10207,435,179,45,24,25,7,7,7,0,78,,,,,,,14 +10208,435,94,18,29,23,8,8,8,0,78,,,,,,,14 +10209,435,102,32,12,1,,R,9,0,62,,,,,,,5 +10210,435,105,6,27,5,,R,10,0,61,,,,,,,7 +10211,435,182,1,1,16,,R,11,0,57,,,,,,,3 +10212,435,118,4,16,12,,R,12,0,57,,,,,,,7 +10213,435,84,25,3,17,,N,13,0,49,,,,,,,62 +10214,435,176,34,8,6,,R,14,0,42,,,,,,,5 +10215,435,119,51,22,14,,R,15,0,42,,,,,,,43 +10216,435,170,53,19,24,,R,16,0,40,,,,,,,5 +10217,435,123,21,18,11,,R,17,0,37,,,,,,,44 +10218,435,160,53,20,21,,R,18,0,28,,,,,,,8 +10219,435,117,1,2,4,,R,19,0,26,,,,,,,5 +10220,435,175,4,15,8,,R,20,0,20,,,,,,,7 +10221,435,178,26,33,19,,R,21,0,20,,,,,,,10 +10222,435,173,32,11,10,,D,22,0,18,,,,,,,2 +10223,435,137,34,7,9,,R,23,0,14,,,,,,,42 +10224,435,158,51,23,13,,R,24,0,5,,,,,,,5 +10225,435,95,3,5,2,,R,25,0,1,,,,,,,7 +10226,436,117,1,7,4,1,1,1,9,61,42:34.5,6154492,,,,,1 +10227,436,177,3,6,9,2,2,2,6,61,40.514,6195006,,,,,1 +10228,436,173,32,11,1,3,3,3,4,61,59.128,6213620,,,,,1 +10229,436,158,51,23,12,4,4,4,3,60,,,,,,,11 +10230,436,175,4,15,8,5,5,5,2,59,,,,,,,60 +10231,436,123,21,18,20,6,6,6,1,59,,,,,,,12 +10232,436,176,21,17,24,7,7,7,0,59,,,,,,,12 +10233,436,156,50,10,26,8,8,8,0,58,,,,,,,13 +10234,436,84,25,3,18,,D,9,0,60,,,,,,,2 +10235,436,118,4,16,3,,R,10,0,51,,,,,,,22 +10236,436,110,27,26,14,,R,11,0,42,,,,,,,6 +10237,436,119,51,22,11,,R,12,0,41,,,,,,,6 +10238,436,182,1,8,6,,R,13,0,38,,,,,,,10 +10239,436,95,32,12,5,,R,14,0,35,,,,,,,3 +10240,436,137,34,1,7,,R,15,0,32,,,,,,,5 +10241,436,170,34,2,15,,R,16,0,32,,,,,,,101 +10242,436,163,6,28,10,,R,17,0,30,,,,,,,84 +10243,436,160,45,24,21,,R,18,0,28,,,,,,,6 +10244,436,183,27,25,19,,R,19,0,25,,,,,,,25 +10245,436,112,50,9,25,,R,20,0,24,,,,,,,84 +10246,436,188,53,20,17,,R,21,0,18,,,,,,,101 +10247,436,172,3,5,13,,R,22,0,15,,,,,,,10 +10248,436,105,6,27,2,,R,23,0,14,,,,,,,23 +10249,436,184,52,21,23,,R,24,0,12,,,,,,,99 +10250,436,185,25,4,22,,D,25,0,11,,,,,,,2 +10251,436,102,53,19,16,,R,26,0,8,,,,,,,101 +10252,436,181,54,14,0,,D,27,0,0,,,,,,,2 +10253,437,182,1,8,8,1,1,1,9,75,29:23.4,5363430,,,,,1 +10254,437,117,1,7,5,2,2,2,6,75,+1:05.950,5429380,,,,,1 +10255,437,118,4,16,9,3,3,3,4,74,,,,,,,11 +10256,437,119,51,22,18,4,4,4,3,73,,,,,,,12 +10257,437,110,27,26,14,5,5,5,2,73,,,,,,,12 +10258,437,102,53,19,13,6,6,6,1,72,,,,,,,13 +10259,437,173,32,11,7,7,7,7,0,71,,,,,,,14 +10260,437,184,52,21,20,8,8,8,0,71,,,,,,,14 +10261,437,176,21,17,23,9,9,9,0,71,,,,,,,14 +10262,437,183,27,25,17,10,10,10,0,71,,,,,,,14 +10263,437,105,6,27,10,11,11,11,0,70,,,,,,,80 +10264,437,123,21,18,26,12,12,12,0,70,,,,,,,15 +10265,437,84,25,3,25,,D,13,0,71,,,,,,,2 +10266,437,175,4,15,4,,R,14,0,66,,,,,,,60 +10267,437,185,25,4,24,,D,15,0,60,,,,,,,2 +10268,437,172,3,5,11,,R,16,0,60,,,,,,,7 +10269,437,181,54,14,12,,R,17,0,53,,,,,,,5 +10270,437,177,3,6,2,,R,18,0,51,,,,,,,36 +10271,437,95,32,12,3,,R,19,0,51,,,,,,,101 +10272,437,163,6,28,15,,R,20,0,40,,,,,,,98 +10273,437,137,34,1,1,,R,21,0,29,,,,,,,101 +10274,437,188,53,20,19,,R,22,0,26,,,,,,,27 +10275,437,112,50,9,22,,R,23,0,24,,,,,,,5 +10276,437,156,50,10,21,,R,24,0,22,,,,,,,6 +10277,437,170,34,2,6,,R,25,0,18,,,,,,,101 +10278,437,158,51,23,16,,R,26,0,4,,,,,,,21 +10279,437,160,45,24,0,,W,27,0,0,,,,,,,54 +10280,438,105,6,27,1,1,1,1,9,70,36:32.0,5792048,,,,,1 +10281,438,118,4,16,4,2,2,2,6,70,42.386,5834434,,,,,1 +10282,438,163,6,28,2,3,3,3,4,70,+1:09.803,5861851,,,,,1 +10283,438,177,3,6,3,4,4,4,3,69,,,,,,,60 +10284,438,173,32,11,5,5,5,5,2,69,,,,,,,11 +10285,438,102,53,19,19,6,6,6,1,68,,,,,,,12 +10286,438,175,4,15,12,7,7,7,0,68,,,,,,,12 +10287,438,176,21,17,24,8,8,8,0,68,,,,,,,12 +10288,438,137,34,1,9,9,9,9,0,66,,,,,,,5 +10289,438,156,50,10,26,10,10,10,0,64,,,,,,,12 +10290,438,185,25,4,21,,D,11,0,69,,,,,,,2 +10291,438,184,52,21,25,,R,12,0,53,,,,,,,22 +10292,438,84,25,3,22,,D,13,0,51,,,,,,,2 +10293,438,110,27,26,13,,R,14,0,42,,,,,,,3 +10294,438,170,34,2,18,,R,15,0,42,,,,,,,20 +10295,438,181,54,14,6,,R,16,0,39,,,,,,,43 +10296,438,182,1,8,14,,R,17,0,35,,,,,,,103 +10297,438,158,51,23,11,,R,18,0,28,,,,,,,5 +10298,438,172,3,5,15,,R,19,0,15,,,,,,,10 +10299,438,183,27,25,23,,R,20,0,15,,,,,,,21 +10300,438,123,21,18,17,,R,21,0,15,,,,,,,5 +10301,438,160,45,24,20,,R,22,0,14,,,,,,,7 +10302,438,95,32,12,10,,R,23,0,14,,,,,,,8 +10303,438,117,1,7,8,,R,24,0,5,,,,,,,99 +10304,438,119,51,22,7,,R,25,0,2,,,,,,,80 +10305,438,188,53,20,16,,R,26,0,1,,,,,,,8 +10306,438,112,50,9,0,,F,27,0,0,,,,,,,81 +10307,439,117,1,7,2,1,1,1,9,60,36:53.7,5813679,,,,,1 +10308,439,163,6,28,6,2,2,2,6,60,13.416,5827095,,,,,1 +10309,439,173,32,11,11,3,3,3,4,59,,,,,,,60 +10310,439,118,4,16,4,4,4,4,3,59,,,,,,,11 +10311,439,123,21,18,20,5,5,5,2,59,,,,,,,11 +10312,439,110,27,26,12,6,6,6,1,58,,,,,,,60 +10313,439,158,51,23,8,7,7,7,0,58,,,,,,,60 +10314,439,184,52,21,24,8,8,8,0,58,,,,,,,12 +10315,439,156,50,10,25,9,9,9,0,57,,,,,,,13 +10316,439,185,25,4,21,,D,10,0,59,,,,,,,2 +10317,439,84,25,3,22,,D,11,0,55,,,,,,,2 +10318,439,112,50,9,23,,R,12,0,53,,,,,,,101 +10319,439,188,53,20,19,,N,13,0,52,,,,,,,62 +10320,439,137,34,1,1,,R,14,0,48,,,,,,,101 +10321,439,170,34,2,9,,R,15,0,48,,,,,,,101 +10322,439,189,45,30,26,,R,16,0,46,,,,,,,5 +10323,439,176,21,17,16,,R,17,0,40,,,,,,,101 +10324,439,181,54,14,7,,R,18,0,31,,,,,,,101 +10325,439,105,6,27,13,,R,19,0,23,,,,,,,43 +10326,439,182,1,8,5,,R,20,0,15,,,,,,,5 +10327,439,172,3,5,15,,R,21,0,11,,,,,,,5 +10328,439,119,51,22,10,,R,22,0,6,,,,,,,10 +10329,439,95,32,12,18,,R,23,0,2,,,,,,,20 +10330,439,177,3,6,3,,R,24,0,2,,,,,,,10 +10331,439,175,4,15,14,,R,25,0,0,,,,,,,4 +10332,439,183,27,25,17,,R,26,0,0,,,,,,,4 +10333,439,160,45,24,0,,F,27,0,0,,,,,,,81 +10334,439,102,53,19,0,,F,28,0,0,,,,,,,81 +10335,440,182,1,8,9,1,1,1,9,79,31:12.0,5471951,,,,,1 +10336,440,175,4,15,1,2,2,2,6,79,7.154,5479105,,,,,1 +10337,440,95,32,12,6,3,3,3,4,79,23.969,5495920,,,,,1 +10338,440,163,6,28,11,4,4,4,3,79,43.706,5515657,,,,,1 +10339,440,173,32,11,2,5,5,5,2,79,+1:06.125,5538076,,,,,1 +10340,440,177,3,6,4,6,6,6,1,78,,,,,,,11 +10341,440,117,1,7,5,7,7,7,0,78,,,,,,,11 +10342,440,172,3,5,12,8,8,8,0,78,,,,,,,11 +10343,440,170,34,2,17,9,9,9,0,78,,,,,,,11 +10344,440,110,27,26,26,10,10,10,0,77,,,,,,,12 +10345,440,123,21,18,14,11,11,11,0,77,,,,,,,12 +10346,440,160,45,24,25,12,12,12,0,74,,,,,,,15 +10347,440,156,50,10,21,13,13,13,0,72,,,,,,,17 +10348,440,84,25,3,23,,D,14,0,76,,,,,,,2 +10349,440,184,52,21,24,,R,15,0,61,,,,,,,5 +10350,440,118,4,16,7,,R,16,0,53,,,,,,,3 +10351,440,176,21,17,19,,R,17,0,51,,,,,,,3 +10352,440,158,51,23,16,,R,18,0,51,,,,,,,5 +10353,440,102,53,19,13,,R,19,0,35,,,,,,,101 +10354,440,105,6,27,10,,R,20,0,33,,,,,,,5 +10355,440,188,53,20,18,,R,21,0,22,,,,,,,101 +10356,440,119,51,22,15,,R,22,0,15,,,,,,,5 +10357,440,137,34,1,3,,R,23,0,11,,,,,,,101 +10358,440,185,25,4,20,,D,24,0,11,,,,,,,2 +10359,440,181,54,14,8,,R,25,0,5,,,,,,,8 +10360,440,112,50,9,22,,R,26,0,4,,,,,,,10 +10361,441,117,1,7,1,1,1,1,4.5,31,01:07.7,3667740,,,,,1 +10362,441,102,53,19,13,2,2,2,3,31,7.446,3675186,,,,,1 +10363,441,163,6,28,3,3,3,3,2,31,29.077,3696817,,,,,1 +10364,441,177,3,6,10,4,4,4,1.5,31,35.246,3702986,,,,,1 +10365,441,173,32,11,11,5,5,5,1,31,44.439,3712179,,,,,1 +10366,441,105,6,27,4,6,6,6,0.5,30,,,,,,,11 +10367,441,160,45,24,19,7,7,7,0,30,,,,,,,11 +10368,441,172,3,5,16,8,8,8,0,30,,,,,,,11 +10369,441,185,25,4,20,,D,9,0,31,,,,,,,2 +10370,441,119,51,22,14,,R,10,0,24,,,,,,,38 +10371,441,182,1,8,8,,R,11,0,23,,,,,,,20 +10372,441,181,54,14,12,,R,12,0,22,,,,,,,20 +10373,441,95,32,12,2,,R,13,0,15,,,,,,,20 +10374,441,137,34,1,9,,R,14,0,14,,,,,,,10 +10375,441,183,27,25,17,,R,15,0,12,,,,,,,10 +10376,441,190,34,2,15,,R,16,0,9,,,,,,,10 +10377,441,188,53,20,18,,R,17,0,1,,,,,,,20 +10378,441,118,4,16,5,,R,18,0,0,,,,,,,4 +10379,441,175,4,15,6,,R,19,0,0,,,,,,,4 +10380,441,110,27,26,7,,R,20,0,0,,,,,,,3 +10381,441,176,21,17,0,,F,21,0,0,,,,,,,81 +10382,441,84,25,3,0,,F,22,0,0,,,,,,,81 +10383,441,158,51,23,0,,F,23,0,0,,,,,,,81 +10384,441,123,21,18,0,,F,24,0,0,,,,,,,81 +10385,441,156,50,10,0,,F,25,0,0,,,,,,,81 +10386,441,184,52,21,0,,F,26,0,0,,,,,,,81 +10387,441,112,50,9,0,,F,27,0,0,,,,,,,81 +10388,442,137,34,1,1,1,1,1,9,70,46:23.7,6383748,,,,,1 +10389,442,182,1,8,8,2,2,2,6,70,2.612,6386360,,,,,1 +10390,442,117,1,7,2,3,3,3,4,70,+1:28.032,6471780,,,,,1 +10391,442,173,32,11,3,4,4,4,3,69,,,,,,,11 +10392,442,163,6,28,5,5,5,5,2,68,,,,,,,12 +10393,442,95,32,12,7,6,6,6,1,68,,,,,,,12 +10394,442,102,53,19,9,7,7,7,0,68,,,,,,,12 +10395,442,181,54,14,12,8,8,8,0,68,,,,,,,12 +10396,442,188,53,20,20,9,9,9,0,68,,,,,,,12 +10397,442,112,50,9,26,10,10,10,0,65,,,,,,,15 +10398,442,158,51,23,11,11,11,11,0,63,,,,,,,60 +10399,442,84,25,3,21,,D,12,0,68,,,,,,,2 +10400,442,176,21,17,23,,R,13,0,59,,,,,,,5 +10401,442,118,4,16,4,,R,14,0,57,,,,,,,83 +10402,442,179,52,21,24,,N,15,0,56,,,,,,,62 +10403,442,185,25,4,22,,D,16,0,52,,,,,,,2 +10404,442,110,27,26,10,,R,17,0,40,,,,,,,23 +10405,442,190,34,2,16,,R,18,0,39,,,,,,,101 +10406,442,123,21,18,18,,R,19,0,38,,,,,,,5 +10407,442,119,51,22,14,,R,20,0,37,,,,,,,3 +10408,442,177,3,6,15,,R,21,0,32,,,,,,,69 +10409,442,172,3,5,17,,R,22,0,31,,,,,,,101 +10410,442,191,50,10,25,,R,23,0,29,,,,,,,101 +10411,442,160,45,24,19,,R,24,0,11,,,,,,,6 +10412,442,105,6,27,6,,R,25,0,10,,,,,,,5 +10413,442,183,27,25,13,,R,26,0,7,,,,,,,101 +10414,443,137,34,1,1,1,1,1,9,63,55:41.8,6941842,,,,,1 +10415,443,173,32,11,5,2,2,2,6,63,32.638,6974480,,,,,1 +10416,443,170,34,2,23,3,3,3,4,63,+1:26.528,7028370,,,,,1 +10417,443,117,1,7,2,4,4,4,3,63,+1:55.258,7057100,,,,,1 +10418,443,172,3,5,19,5,5,5,2,62,,,,,,,11 +10419,443,84,25,3,11,,D,6,0,63,,,,,,,2 +10420,443,105,6,27,4,,R,7,0,49,,,,,,,5 +10421,443,177,3,6,21,,R,8,0,47,,,,,,,101 +10422,443,118,4,16,6,,R,9,0,40,,,,,,,6 +10423,443,185,25,4,16,,D,10,0,33,,,,,,,3 +10424,443,175,4,15,9,,R,11,0,33,,,,,,,7 +10425,443,112,50,9,20,,R,12,0,33,,,,,,,23 +10426,443,182,1,8,10,,R,13,0,33,,,,,,,10 +10427,443,95,32,12,3,,R,14,0,27,,,,,,,6 +10428,443,123,21,18,13,,R,15,0,27,,,,,,,5 +10429,443,110,27,26,12,,R,16,0,24,,,,,,,25 +10430,443,188,53,20,17,,R,17,0,23,,,,,,,8 +10431,443,158,51,23,8,,R,18,0,21,,,,,,,5 +10432,443,102,53,19,7,,R,19,0,21,,,,,,,3 +10433,443,119,51,22,25,,R,20,0,20,,,,,,,20 +10434,443,183,27,25,18,,R,21,0,3,,,,,,,3 +10435,443,160,45,24,26,,R,22,0,3,,,,,,,3 +10436,443,163,6,28,15,,R,23,0,2,,,,,,,3 +10437,443,156,50,10,24,,R,24,0,2,,,,,,,27 +10438,443,181,54,14,14,,R,25,0,0,,,,,,,5 +10439,443,176,21,17,22,,R,26,0,0,,,,,,,3 +10440,443,179,52,21,0,,F,27,0,0,,,,,,,81 +10441,444,177,3,6,8,1,1,1,9,67,01:22.6,7282617,,,,,1 +10442,444,163,6,28,4,2,2,2,6,67,22.464,7305081,,,,,1 +10443,444,173,32,11,2,3,3,3,4,66,,,,,,,11 +10444,444,172,3,5,24,4,4,4,3,65,,,,,,,12 +10445,444,160,45,24,18,5,5,5,2,65,,,,,,,12 +10446,444,95,32,12,1,6,6,6,1,64,,,,,,,6 +10447,444,190,34,2,11,7,7,7,0,64,,,,,,,13 +10448,444,181,54,14,13,8,8,8,0,64,,,,,,,13 +10449,444,182,1,8,5,,R,9,0,60,,,,,,,20 +10450,444,117,1,7,7,,R,10,0,56,,,,,,,20 +10451,444,123,21,18,20,,R,11,0,55,,,,,,,20 +10452,444,105,6,27,9,,R,12,0,54,,,,,,,20 +10453,444,176,21,17,22,,R,13,0,54,,,,,,,20 +10454,444,102,53,19,6,,R,14,0,47,,,,,,,8 +10455,444,156,50,10,25,,R,15,0,46,,,,,,,10 +10456,444,137,34,1,12,,R,16,0,45,,,,,,,20 +10457,444,175,4,15,10,,R,17,0,25,,,,,,,20 +10458,444,188,53,20,15,,R,18,0,25,,,,,,,20 +10459,444,110,27,26,16,,R,19,0,15,,,,,,,20 +10460,444,179,52,21,23,,R,20,0,15,,,,,,,95 +10461,444,119,51,22,21,,R,21,0,12,,,,,,,20 +10462,444,118,4,16,3,,R,22,0,10,,,,,,,20 +10463,444,185,25,4,17,,D,23,0,9,,,,,,,2 +10464,444,158,51,23,14,,R,24,0,8,,,,,,,20 +10465,444,183,27,25,19,,R,25,0,0,,,,,,,3 +10466,444,84,25,3,0,,F,26,0,0,,,,,,,81 +10467,445,182,1,8,3,1,1,1,9,71,29:28.5,5368532,,,,,1 +10468,445,118,4,16,6,2,2,2,6,71,42.123,5410655,,,,,1 +10469,445,102,53,19,7,3,3,3,4,71,+1:03.328,5431860,,,,,1 +10470,445,173,32,11,4,4,4,4,3,70,,,,,,,11 +10471,445,105,6,27,9,5,5,5,2,70,,,,,,,11 +10472,445,163,6,28,13,6,6,6,1,70,,,,,,,11 +10473,445,137,34,1,1,7,7,7,0,70,,,,,,,11 +10474,445,175,4,15,10,8,8,8,0,69,,,,,,,101 +10475,445,160,45,24,21,9,9,9,0,68,,,,,,,13 +10476,445,110,27,26,19,10,10,10,0,68,,,,,,,13 +10477,445,176,21,17,15,11,11,11,0,67,,,,,,,14 +10478,445,119,51,22,17,12,12,12,0,66,,,,,,,15 +10479,445,185,25,4,26,,D,13,0,68,,,,,,,2 +10480,445,179,52,21,22,,N,14,0,62,,,,,,,62 +10481,445,183,27,25,20,,R,15,0,43,,,,,,,10 +10482,445,117,1,7,2,,R,16,0,37,,,,,,,6 +10483,445,95,32,12,8,,R,17,0,24,,,,,,,6 +10484,445,123,21,18,12,,R,18,0,24,,,,,,,10 +10485,445,172,3,5,16,,R,19,0,14,,,,,,,103 +10486,445,156,50,10,23,,R,20,0,10,,,,,,,3 +10487,445,190,34,2,14,,R,21,0,9,,,,,,,10 +10488,445,181,54,14,11,,R,22,0,8,,,,,,,20 +10489,445,177,3,6,5,,R,23,0,5,,,,,,,5 +10490,445,140,25,3,25,,D,24,0,1,,,,,,,2 +10491,445,158,51,23,18,,R,25,0,0,,,,,,,3 +10492,445,112,50,9,24,,R,26,0,0,,,,,,,3 +10493,445,189,45,30,27,,R,27,0,0,,,,,,,3 +10494,445,188,53,20,0,,F,28,0,0,,,,,,,81 +10495,446,117,1,7,1,1,1,1,9,44,24:43.2,5083210,,,,,1 +10496,446,182,1,8,7,2,2,2,6,44,3.149,5086359,,,,,1 +10497,446,118,4,16,3,3,3,3,4,44,36.423,5119633,,,,,1 +10498,446,95,32,12,16,4,4,4,3,44,51.663,5134873,,,,,1 +10499,446,175,4,15,4,5,5,5,2,44,+1:11.949,5155159,,,,,1 +10500,446,163,6,28,10,6,6,6,1,43,,,,,,,11 +10501,446,110,27,26,11,7,7,7,0,43,,,,,,,11 +10502,446,183,27,25,17,8,8,8,0,43,,,,,,,11 +10503,446,179,52,21,24,9,9,9,0,40,,,,,,,14 +10504,446,140,25,3,26,,D,10,0,42,,,,,,,2 +10505,446,181,54,14,13,,R,11,0,31,,,,,,,6 +10506,446,158,51,23,18,,R,12,0,29,,,,,,,5 +10507,446,170,34,2,8,,R,13,0,28,,,,,,,101 +10508,446,137,34,1,5,,R,14,0,23,,,,,,,6 +10509,446,119,51,22,20,,R,15,0,16,,,,,,,69 +10510,446,160,45,24,21,,R,16,0,14,,,,,,,10 +10511,446,189,45,30,23,,R,17,0,13,,,,,,,101 +10512,446,105,6,27,6,,R,18,0,13,,,,,,,5 +10513,446,156,50,10,25,,R,19,0,11,,,,,,,101 +10514,446,177,3,6,19,,R,20,0,10,,,,,,,10 +10515,446,172,3,5,12,,R,21,0,10,,,,,,,5 +10516,446,123,21,18,15,,R,22,0,8,,,,,,,5 +10517,446,173,32,11,2,,R,23,0,8,,,,,,,101 +10518,446,112,50,9,22,,R,24,0,7,,,,,,,25 +10519,446,102,53,19,9,,R,25,0,4,,,,,,,3 +10520,446,176,21,17,14,,R,26,0,1,,,,,,,101 +10521,446,191,25,4,0,,F,27,0,0,,,,,,,81 +10522,447,182,1,8,4,1,1,1,9,51,21:12.9,4872851,,,,,1 +10523,447,137,34,1,1,2,2,2,6,51,23.525,4896376,,,,,1 +10524,447,105,6,27,12,3,3,3,4,51,48.998,4921849,,,,,1 +10525,447,170,34,2,7,4,4,4,3,51,56.312,4929163,,,,,1 +10526,447,123,21,18,17,5,5,5,2,50,,,,,,,11 +10527,447,176,21,17,19,6,6,6,1,50,,,,,,,11 +10528,447,163,6,28,15,7,7,7,0,50,,,,,,,11 +10529,447,183,27,25,21,8,8,8,0,49,,,,,,,12 +10530,447,156,50,10,24,9,9,9,0,49,,,,,,,12 +10531,447,119,51,22,13,10,10,10,0,48,,,,,,,60 +10532,447,112,50,9,25,11,11,11,0,48,,,,,,,13 +10533,447,77,54,31,20,12,12,12,0,48,,,,,,,6 +10534,447,175,4,15,5,,R,13,0,42,,,,,,,5 +10535,447,102,53,19,10,,R,14,0,35,,,,,,,51 +10536,447,95,32,12,8,,R,15,0,32,,,,,,,5 +10537,447,117,1,7,2,,R,16,0,28,,,,,,,20 +10538,447,173,32,11,3,,R,17,0,28,,,,,,,5 +10539,447,179,52,21,26,,N,18,0,23,,,,,,,62 +10540,447,158,51,23,16,,R,19,0,18,,,,,,,5 +10541,447,118,4,16,6,,R,20,0,17,,,,,,,5 +10542,447,110,27,26,18,,R,21,0,15,,,,,,,98 +10543,447,177,3,6,9,,R,22,0,15,,,,,,,64 +10544,447,172,3,5,11,,R,23,0,12,,,,,,,5 +10545,447,189,45,30,22,,R,24,0,6,,,,,,,5 +10546,447,160,45,24,23,,R,25,0,4,,,,,,,6 +10547,447,185,25,4,0,,D,26,0,0,,,,,,,2 +10548,447,140,25,3,0,,F,27,0,0,,,,,,,81 +10549,448,117,1,7,1,1,1,1,9,71,37:21.5,5841468,,,,,1 +10550,448,182,1,8,6,2,2,2,6,71,10.283,5851751,,,,,1 +10551,448,95,32,12,12,3,3,3,4,71,+1:19.544,5921012,,,,,1 +10552,448,173,32,11,3,4,4,4,3,70,,,,,,,11 +10553,448,170,34,2,10,5,5,5,2,70,,,,,,,11 +10554,448,175,4,15,5,6,6,6,1,70,,,,,,,11 +10555,448,183,27,25,20,7,7,7,0,69,,,,,,,12 +10556,448,177,3,6,7,8,8,8,0,68,,,,,,,60 +10557,448,156,50,10,22,9,9,9,0,67,,,,,,,14 +10558,448,112,50,9,26,10,10,10,0,67,,,,,,,14 +10559,448,163,6,28,15,11,11,11,0,66,,,,,,,10 +10560,448,189,45,30,23,12,12,12,0,66,,,,,,,15 +10561,448,158,51,23,17,13,13,13,0,65,,,,,,,60 +10562,448,185,25,4,26,,D,14,0,69,,,,,,,2 +10563,448,140,25,3,25,,D,15,0,69,,,,,,,2 +10564,448,123,21,18,11,,R,16,0,59,,,,,,,3 +10565,448,179,52,21,27,,R,17,0,53,,,,,,,37 +10566,448,119,51,22,11,,R,18,0,51,,,,,,,5 +10567,448,110,27,26,14,,R,19,0,31,,,,,,,5 +10568,448,172,3,5,8,,R,20,0,23,,,,,,,5 +10569,448,118,4,16,4,,R,21,0,23,,,,,,,20 +10570,448,181,54,14,16,,R,22,0,22,,,,,,,20 +10571,448,102,53,19,13,,R,23,0,19,,,,,,,5 +10572,448,176,21,17,19,,R,24,0,17,,,,,,,36 +10573,448,137,34,1,2,,R,25,0,10,,,,,,,51 +10574,448,160,45,24,21,,R,26,0,8,,,,,,,48 +10575,448,105,6,27,9,,R,27,0,7,,,,,,,5 +10576,449,182,1,8,4,1,1,1,9,51,20:29.1,4829065,,,,,1 +10577,449,105,6,27,11,2,2,2,6,51,24.249,4853314,,,,,1 +10578,449,119,51,22,9,3,3,3,4,50,,,,,,,11 +10579,449,140,53,19,17,4,4,4,3,49,,,,,,,12 +10580,449,189,45,30,24,5,5,5,0,49,,,,,,,12 +10581,449,77,54,31,20,6,6,6,0,49,,,,,,,12 +10582,449,160,45,24,22,7,7,7,0,48,,,,,,,60 +10583,449,179,52,21,25,8,8,8,0,48,,,,,,,13 +10584,449,158,51,23,10,9,9,9,0,45,,,,,,,60 +10585,449,123,21,18,19,10,10,10,0,45,,,,,,,16 +10586,449,175,4,15,8,,R,11,0,43,,,,,,,37 +10587,449,170,34,2,5,,R,12,0,43,,,,,,,5 +10588,449,176,21,17,15,,R,13,0,43,,,,,,,5 +10589,449,118,4,16,12,,R,14,0,31,,,,,,,51 +10590,449,156,50,10,26,,R,15,0,20,,,,,,,51 +10591,449,137,34,1,1,,R,16,0,15,,,,,,,5 +10592,449,173,32,11,3,,R,17,0,14,,,,,,,6 +10593,449,95,32,12,7,,R,18,0,13,,,,,,,20 +10594,449,172,3,5,13,,R,19,0,10,,,,,,,101 +10595,449,177,3,6,6,,R,20,0,8,,,,,,,101 +10596,449,110,27,26,16,,R,21,0,7,,,,,,,5 +10597,449,183,27,25,18,,R,22,0,7,,,,,,,20 +10598,449,112,50,9,23,,R,23,0,6,,,,,,,10 +10599,449,163,6,28,14,,R,24,0,5,,,,,,,6 +10600,449,117,1,7,2,,R,25,0,3,,,,,,,5 +10601,449,181,54,14,21,,W,26,0,0,,,,,,,54 +10602,449,94,53,20,0,,F,27,0,0,,,,,,,81 +10603,450,117,1,7,2,1,1,1,9,67,35:13.3,5713284,,,,,1 +10604,450,105,6,27,5,2,2,2,6,67,23.911,5737195,,,,,1 +10605,450,137,34,1,1,3,3,3,4,67,24.922,5738206,,,,,1 +10606,450,182,1,8,15,4,4,4,3,67,43.086,5756370,,,,,1 +10607,450,163,6,28,6,5,5,5,2,67,+1:01.430,5774714,,,,,1 +10608,450,119,51,22,9,6,6,6,1,66,,,,,,,11 +10609,450,110,27,26,17,7,7,7,0,65,,,,,,,12 +10610,450,184,52,21,24,8,8,8,0,65,,,,,,,12 +10611,450,123,21,18,11,9,9,9,0,64,,,,,,,80 +10612,450,183,27,25,19,10,10,10,0,64,,,,,,,13 +10613,450,118,4,16,7,11,11,11,0,61,,,,,,,25 +10614,450,189,45,30,22,,R,12,0,60,,,,,,,69 +10615,450,170,34,2,10,,R,13,0,57,,,,,,,6 +10616,450,95,32,12,8,,R,14,0,51,,,,,,,5 +10617,450,175,4,15,3,,R,15,0,47,,,,,,,69 +10618,450,158,51,23,13,,R,16,0,37,,,,,,,69 +10619,450,112,50,9,25,,R,17,0,37,,,,,,,101 +10620,450,156,50,10,21,,R,18,0,35,,,,,,,101 +10621,450,172,3,5,14,,R,19,0,27,,,,,,,5 +10622,450,173,32,11,23,,R,20,0,25,,,,,,,101 +10623,450,140,53,20,26,,R,21,0,17,,,,,,,25 +10624,450,177,3,6,4,,R,22,0,0,,,,,,,3 +10625,450,102,53,19,12,,R,23,0,0,,,,,,,3 +10626,450,176,21,17,16,,R,24,0,0,,,,,,,3 +10627,450,77,54,31,18,,R,25,0,0,,,,,,,3 +10628,450,160,45,24,20,,R,26,0,0,,,,,,,3 +10629,451,117,1,7,2,1,1,1,9,70,41:11.8,6071753,,,,,1 +10630,451,182,1,8,11,2,2,2,6,70,13.425,6085178,,,,,1 +10631,451,102,53,19,3,3,3,3,4,70,20.042,6091795,,,,,1 +10632,451,105,6,27,8,4,4,4,3,70,20.317,6092070,,,,,1 +10633,451,173,32,11,5,5,5,5,2,70,+1:32.169,6163922,,,,,1 +10634,451,137,34,1,1,6,6,6,1,69,,,,,,,11 +10635,451,175,4,15,7,7,7,7,0,69,,,,,,,11 +10636,451,119,51,22,12,8,8,8,0,69,,,,,,,11 +10637,451,163,6,28,17,9,9,9,0,69,,,,,,,11 +10638,451,181,34,2,19,10,10,10,0,69,,,,,,,11 +10639,451,140,53,20,10,11,11,11,0,69,,,,,,,11 +10640,451,110,27,26,20,12,12,12,0,69,,,,,,,11 +10641,451,77,54,14,23,13,13,13,0,68,,,,,,,12 +10642,451,172,3,5,15,14,14,14,0,67,,,,,,,13 +10643,451,184,52,21,25,15,15,15,0,66,,,,,,,14 +10644,451,189,45,30,24,16,16,16,0,65,,,,,,,60 +10645,451,158,51,23,14,17,17,17,0,64,,,,,,,16 +10646,451,160,45,24,22,,R,18,0,60,,,,,,,5 +10647,451,95,32,12,6,,R,19,0,52,,,,,,,20 +10648,451,118,4,16,9,,R,20,0,51,,,,,,,6 +10649,451,166,4,33,13,,R,21,0,48,,,,,,,7 +10650,451,177,3,6,4,,R,22,0,39,,,,,,,5 +10651,451,183,27,25,21,,R,23,0,31,,,,,,,10 +10652,451,123,21,18,18,,R,24,0,24,,,,,,,7 +10653,451,156,50,10,26,,R,25,0,19,,,,,,,6 +10654,451,176,21,17,16,,R,26,0,8,,,,,,,10 +10655,451,112,50,9,27,,R,27,0,2,,,,,,,5 +10656,452,137,34,5,4,1,1,1,9,63,48:27.7,6507731,,,,,1 +10657,452,182,1,8,9,3,3,2,4,63,51.883,6559614,,,,,1 +10658,452,172,3,2,18,4,4,3,3,63,+1:13.951,6581682,,,,,1 +10659,452,175,6,27,3,5,5,4,2,63,+1:18.117,6585848,,,,,1 +10660,452,176,21,29,20,6,6,5,1,63,+1:18.207,6585938,,,,,1 +10661,452,117,4,15,2,7,7,6,0,62,,,,,,,11 +10662,452,118,53,35,5,8,8,7,0,62,,,,,,,11 +10663,452,192,21,30,23,9,9,8,0,62,,,,,,,11 +10664,452,163,6,28,6,10,10,9,0,62,,,,,,,11 +10665,452,193,25,4,21,11,11,10,0,62,,,,,,,11 +10666,452,95,32,12,22,12,12,11,0,61,,,,,,,12 +10667,452,188,55,34,19,13,13,12,0,60,,,,,,,13 +10668,452,194,50,17,26,14,14,13,0,59,,,,,,,14 +10669,452,181,54,9,25,15,15,14,0,59,,,,,,,14 +10670,452,177,3,1,1,,D,15,0,63,,,,,,,2 +10671,452,173,32,11,13,,D,16,0,60,,,,,,,2 +10672,452,195,55,33,14,,N,17,0,53,,,,,,,62 +10673,452,158,4,16,8,,R,18,0,41,,,,,,,23 +10674,452,187,1,7,16,,R,19,0,34,,,,,,,5 +10675,452,196,27,26,17,,R,20,0,25,,,,,,,5 +10676,452,184,51,23,10,,R,21,0,23,,,,,,,4 +10677,452,197,27,25,12,,R,22,0,22,,,,,,,22 +10678,452,119,34,6,7,,R,23,0,19,,,,,,,43 +10679,452,190,45,31,24,,R,24,0,17,,,,,,,5 +10680,452,152,53,36,15,,R,25,0,16,,,,,,,20 +10681,452,105,25,3,11,,R,26,0,7,,,,,,,5 +10682,452,110,51,22,0,,F,27,0,0,,,,,,,81 +10683,452,160,45,32,0,,F,28,0,0,,,,,,,81 +10684,453,187,1,7,22,1,1,1,9,75,53:34.9,6814889,,,,,1 +10685,453,182,1,8,23,2,2,2,6,75,27.993,6842882,,,,,1 +10686,453,163,6,28,2,3,3,3,4,75,+1:13.638,6888527,,,,,1 +10687,453,172,3,2,4,4,4,4,3,74,,,,,,,11 +10688,453,176,21,29,16,5,5,5,2,74,,,,,,,11 +10689,453,188,55,34,17,6,6,6,1,74,,,,,,,11 +10690,453,196,27,26,26,7,7,7,0,73,,,,,,,12 +10691,453,193,25,4,9,8,8,8,0,73,,,,,,,12 +10692,453,105,25,3,7,9,9,9,0,73,,,,,,,12 +10693,453,119,34,6,11,10,10,10,0,72,,,,,,,99 +10694,453,117,4,15,8,11,11,11,0,72,,,,,,,13 +10695,453,95,32,12,13,12,12,12,0,72,,,,,,,13 +10696,453,158,4,16,15,13,13,13,0,67,,,,,,,6 +10697,453,178,21,30,12,,R,14,0,58,,,,,,,100 +10698,453,137,34,5,20,,R,15,0,51,,,,,,,37 +10699,453,110,51,22,19,,R,16,0,48,,,,,,,6 +10700,453,173,32,11,5,,R,17,0,29,,,,,,,64 +10701,453,195,55,33,18,,R,18,0,27,,,,,,,6 +10702,453,197,27,25,10,,R,19,0,26,,,,,,,4 +10703,453,152,53,36,14,,R,20,0,26,,,,,,,84 +10704,453,184,51,23,21,,R,21,0,26,,,,,,,20 +10705,453,175,6,27,1,,R,22,0,25,,,,,,,4 +10706,453,177,3,1,3,,R,23,0,25,,,,,,,4 +10707,453,194,50,17,25,,R,24,0,25,,,,,,,6 +10708,453,118,53,35,6,,R,25,0,11,,,,,,,20 +10709,453,181,54,9,24,,R,26,0,3,,,,,,,20 +10710,453,190,45,31,0,,F,27,0,0,,,,,,,81 +10711,453,160,45,32,0,,F,28,0,0,,,,,,,81 +10712,454,117,4,15,1,1,1,1,9,54,34:13.9,5653913,,,,,1 +10713,454,137,34,5,6,2,2,2,6,54,29.72,5683633,,,,,1 +10714,454,158,4,16,2,3,3,3,4,54,40.232,5694145,,,,,1 +10715,454,175,6,27,11,4,4,4,3,54,+1:06.880,5720793,,,,,1 +10716,454,177,3,1,16,5,5,5,2,53,,,,,,,11 +10717,454,172,3,2,19,6,6,6,1,53,,,,,,,11 +10718,454,163,6,28,4,7,7,7,0,53,,,,,,,11 +10719,454,105,25,3,15,8,8,8,0,53,,,,,,,11 +10720,454,197,27,25,20,9,9,9,0,53,,,,,,,11 +10721,454,176,21,29,21,10,10,10,0,53,,,,,,,11 +10722,454,188,55,34,17,11,11,11,0,52,,,,,,,12 +10723,454,110,51,22,7,12,12,12,0,50,,,,,,,14 +10724,454,152,53,36,13,13,13,13,0,49,,,,,,,6 +10725,454,196,27,26,25,,R,14,0,47,,,,,,,5 +10726,454,190,45,31,23,,R,15,0,36,,,,,,,5 +10727,454,181,54,9,10,,R,16,0,36,,,,,,,101 +10728,454,182,1,8,12,,R,17,0,29,,,,,,,67 +10729,454,184,51,23,8,,R,18,0,28,,,,,,,20 +10730,454,192,21,30,26,,R,19,0,26,,,,,,,6 +10731,454,195,55,33,22,,R,20,0,23,,,,,,,5 +10732,454,193,25,4,24,,R,21,0,21,,,,,,,8 +10733,454,173,32,11,5,,R,22,0,20,,,,,,,10 +10734,454,119,34,6,3,,R,23,0,19,,,,,,,47 +10735,454,118,53,35,9,,R,24,0,14,,,,,,,5 +10736,454,95,32,12,18,,R,25,0,6,,,,,,,68 +10737,454,187,1,7,14,,R,26,0,3,,,,,,,5 +10738,454,194,50,17,0,,F,27,0,0,,,,,,,81 +10739,454,160,45,32,0,,F,28,0,0,,,,,,,81 +10740,454,168,50,18,0,,F,29,0,0,,,,,,,81 +10741,455,175,6,27,3,1,1,1,9,60,37:52.5,5872460,,,,,1 +10742,455,117,4,15,4,2,2,2,6,60,48.781,5921241,,,,,1 +10743,455,163,6,28,1,3,3,3,4,59,,,,,,,11 +10744,455,177,3,1,11,4,4,4,3,59,,,,,,,11 +10745,455,187,1,7,24,5,5,5,2,59,,,,,,,11 +10746,455,176,21,29,12,6,6,6,1,59,,,,,,,11 +10747,455,172,3,2,16,7,7,7,0,59,,,,,,,11 +10748,455,192,21,30,20,8,8,8,0,58,,,,,,,12 +10749,455,196,27,26,25,9,9,9,0,58,,,,,,,12 +10750,455,184,51,23,10,10,10,10,0,57,,,,,,,5 +10751,455,181,54,9,7,11,11,11,0,57,,,,,,,13 +10752,455,95,32,12,15,12,12,12,0,56,,,,,,,20 +10753,455,119,34,6,5,,R,13,0,54,,,,,,,20 +10754,455,110,51,22,8,,R,14,0,45,,,,,,,80 +10755,455,173,32,11,9,,R,15,0,43,,,,,,,64 +10756,455,137,34,5,2,,R,16,0,41,,,,,,,5 +10757,455,197,27,25,19,,R,17,0,39,,,,,,,21 +10758,455,193,25,4,22,,R,18,0,37,,,,,,,4 +10759,455,118,53,35,14,,R,19,0,27,,,,,,,20 +10760,455,190,45,31,26,,R,20,0,20,,,,,,,20 +10761,455,152,53,36,17,,R,21,0,20,,,,,,,22 +10762,455,182,1,8,18,,R,22,0,11,,,,,,,20 +10763,455,188,55,34,23,,R,23,0,11,,,,,,,20 +10764,455,105,25,3,13,,R,24,0,10,,,,,,,4 +10765,455,195,55,33,21,,R,25,0,3,,,,,,,20 +10766,455,158,4,16,6,,R,26,0,1,,,,,,,101 +10767,455,194,50,17,0,,F,27,0,0,,,,,,,81 +10768,455,160,45,32,0,,F,28,0,0,,,,,,,81 +10769,456,177,3,1,5,1,1,1,9,76,56:38.1,6998121,,,,,1 +10770,456,137,34,5,6,2,2,2,6,76,18.475,7016596,,,,,1 +10771,456,117,4,15,1,3,3,3,4,76,31.366,7029487,,,,,1 +10772,456,175,6,27,4,4,4,4,3,76,+1:04.297,7062418,,,,,1 +10773,456,193,25,4,20,5,5,5,2,74,,,,,,,12 +10774,456,184,51,23,13,6,6,6,1,74,,,,,,,12 +10775,456,192,21,30,15,7,7,7,0,74,,,,,,,12 +10776,456,119,34,6,17,,R,8,0,64,,,,,,,10 +10777,456,172,3,2,8,,R,9,0,53,,,,,,,6 +10778,456,176,21,29,12,,R,10,0,49,,,,,,,4 +10779,456,118,53,35,10,,R,11,0,49,,,,,,,4 +10780,456,173,32,11,19,,R,12,0,49,,,,,,,86 +10781,456,197,27,25,9,,R,13,0,32,,,,,,,22 +10782,456,158,4,16,3,,R,14,0,30,,,,,,,5 +10783,456,110,51,22,7,,R,15,0,13,,,,,,,6 +10784,456,163,6,28,2,,R,16,0,6,,,,,,,22 +10785,456,196,27,26,18,,R,17,0,3,,,,,,,4 +10786,456,181,54,9,16,,R,18,0,3,,,,,,,4 +10787,456,105,25,3,11,,R,19,0,0,,,,,,,4 +10788,456,95,32,12,14,,R,20,0,0,,,,,,,4 +10789,456,152,53,36,0,,F,21,0,0,,,,,,,81 +10790,456,182,1,8,0,,F,22,0,0,,,,,,,81 +10791,456,187,1,7,0,,F,23,0,0,,,,,,,81 +10792,456,190,45,31,0,,F,24,0,0,,,,,,,81 +10793,456,194,50,17,0,,F,25,0,0,,,,,,,81 +10794,456,160,45,32,0,,F,26,0,0,,,,,,,81 +10795,456,188,55,34,0,,F,27,0,0,,,,,,,97 +10796,456,195,55,33,0,,F,28,0,0,,,,,,,97 +10797,457,117,4,15,1,1,1,1,9,40,27:11.5,5231502,,,,,1 +10798,457,175,6,27,2,2,2,2,6,40,23.182,5254684,,,,,1 +10799,457,158,4,16,8,3,3,3,4,40,39.869,5271371,,,,,1 +10800,457,137,34,5,4,4,4,4,3,40,42.295,5273797,,,,,1 +10801,457,177,3,1,9,5,5,5,2,40,50.48,5281982,,,,,1 +10802,457,172,3,2,11,6,6,6,1,40,+1:33.107,5324609,,,,,1 +10803,457,118,53,35,22,7,7,7,0,40,+1:58.539,5350041,,,,,1 +10804,457,152,53,36,16,8,8,8,0,40,+2:38.273,5389775,,,,,1 +10805,457,173,32,11,13,9,9,9,0,39,,,,,,,11 +10806,457,188,55,34,25,10,10,10,0,39,,,,,,,11 +10807,457,176,21,29,10,11,11,11,0,39,,,,,,,11 +10808,457,193,25,4,23,12,12,12,0,39,,,,,,,11 +10809,457,196,27,26,26,13,13,13,0,39,,,,,,,11 +10810,457,105,25,3,17,14,14,14,0,38,,,,,,,12 +10811,457,182,1,8,15,,R,15,0,33,,,,,,,6 +10812,457,95,32,12,19,,R,16,0,30,,,,,,,6 +10813,457,110,51,22,3,,R,17,0,25,,,,,,,98 +10814,457,195,55,33,14,,R,18,0,23,,,,,,,5 +10815,457,163,6,28,5,,R,19,0,22,,,,,,,5 +10816,457,190,45,31,24,,R,20,0,19,,,,,,,36 +10817,457,181,54,9,7,,R,21,0,18,,,,,,,36 +10818,457,187,1,7,20,,R,22,0,8,,,,,,,4 +10819,457,197,27,25,21,,R,23,0,8,,,,,,,4 +10820,457,123,21,30,18,,R,24,0,4,,,,,,,22 +10821,457,184,51,23,12,,R,25,0,3,,,,,,,37 +10822,457,119,34,6,6,,R,26,0,0,,,,,,,5 +10823,457,160,45,32,0,,F,27,0,0,,,,,,,81 +10824,457,194,50,17,0,,F,28,0,0,,,,,,,81 +10825,458,105,25,3,6,1,1,1,9,60,50:53.7,6653669,,,,,1 +10826,458,177,3,1,12,2,2,2,6,60,7.702,6661371,,,,,1 +10827,458,187,1,7,21,3,3,3,4,60,9.283,6662952,,,,,1 +10828,458,137,34,5,2,4,4,4,3,60,+1:12.185,6725854,,,,,1 +10829,458,172,3,2,20,5,5,5,2,60,+1:32.603,6746272,,,,,1 +10830,458,95,32,12,14,6,6,6,1,59,,,,,,,11 +10831,458,123,21,30,10,7,7,7,0,59,,,,,,,11 +10832,458,117,4,15,13,8,8,8,0,59,,,,,,,11 +10833,458,152,53,36,17,9,9,9,0,59,,,,,,,11 +10834,458,196,27,26,23,10,10,10,0,58,,,,,,,12 +10835,458,176,21,29,5,11,11,11,0,58,,,,,,,12 +10836,458,184,51,23,25,12,12,12,0,56,,,,,,,14 +10837,458,182,1,8,18,13,13,13,0,49,,,,,,,22 +10838,458,195,55,33,11,,N,14,0,38,,,,,,,62 +10839,458,188,55,34,26,,R,15,0,34,,,,,,,6 +10840,458,110,51,22,8,,R,16,0,33,,,,,,,101 +10841,458,163,6,28,1,,R,17,0,31,,,,,,,10 +10842,458,193,25,4,16,,R,18,0,30,,,,,,,10 +10843,458,197,27,25,19,,R,19,0,29,,,,,,,36 +10844,458,181,54,9,22,,R,20,0,26,,,,,,,4 +10845,458,118,53,35,9,,R,21,0,25,,,,,,,5 +10846,458,119,34,6,15,,R,22,0,24,,,,,,,23 +10847,458,173,32,11,4,,R,23,0,5,,,,,,,6 +10848,458,158,4,16,7,,R,24,0,4,,,,,,,99 +10849,458,160,45,32,24,,R,25,0,4,,,,,,,25 +10850,458,175,6,27,3,,R,26,0,0,,,,,,,5 +10851,458,190,45,31,0,,W,27,0,0,,,,,,,54 +10852,459,163,6,28,1,1,1,1,9,70,48:31.8,6511838,,,,,1 +10853,459,158,4,16,6,2,2,2,6,70,42.029,6553867,,,,,1 +10854,459,175,6,27,4,3,3,3,4,70,52.61,6564448,,,,,1 +10855,459,177,3,1,9,4,4,4,3,70,+1:17.048,6588886,,,,,1 +10856,459,117,4,15,2,5,5,5,2,69,,,,,,,11 +10857,459,187,1,7,20,6,6,6,1,69,,,,,,,11 +10858,459,123,21,30,15,7,7,7,0,69,,,,,,,11 +10859,459,105,25,3,17,8,8,8,0,68,,,,,,,12 +10860,459,181,54,9,7,9,9,9,0,67,,,,,,,13 +10861,459,184,51,23,26,10,10,10,0,67,,,,,,,13 +10862,459,193,25,4,22,,D,11,0,68,,,,,,,2 +10863,459,119,34,6,5,,R,12,0,56,,,,,,,6 +10864,459,118,53,35,12,,R,13,0,47,,,,,,,101 +10865,459,152,53,36,10,,R,14,0,43,,,,,,,5 +10866,459,95,32,12,18,,R,15,0,43,,,,,,,64 +10867,459,110,51,22,8,,R,16,0,42,,,,,,,5 +10868,459,172,3,2,13,,R,17,0,37,,,,,,,6 +10869,459,196,27,26,24,,R,18,0,32,,,,,,,86 +10870,459,195,55,33,21,,R,19,0,27,,,,,,,5 +10871,459,190,45,31,25,,R,20,0,26,,,,,,,5 +10872,459,188,55,34,23,,R,21,0,17,,,,,,,24 +10873,459,137,34,5,3,,R,22,0,15,,,,,,,37 +10874,459,182,1,8,19,,R,23,0,11,,,,,,,20 +10875,459,173,32,11,11,,R,24,0,1,,,,,,,37 +10876,459,176,21,29,14,,R,25,0,14,,,,,,,7 +10877,459,197,27,25,16,,R,26,0,0,,,,,,,6 +10878,459,198,50,17,0,,F,27,0,0,,,,,,,81 +10879,459,160,45,32,0,,F,28,0,0,,,,,,,81 +10880,460,117,4,15,3,1,1,1,9,67,24:39.8,5079780,,,,,1 +10881,460,137,34,5,6,2,2,2,6,67,19.161,5098941,,,,,1 +10882,460,175,6,27,2,3,3,3,4,67,26.246,5106026,,,,,1 +10883,460,95,32,12,18,4,4,4,3,67,38.952,5118732,,,,,1 +10884,460,163,6,28,1,5,5,5,2,67,58.874,5138654,,,,,1 +10885,460,182,1,8,15,6,6,6,1,66,,,,,,,11 +10886,460,184,51,23,11,7,7,7,0,66,,,,,,,11 +10887,460,110,51,22,9,8,8,8,0,66,,,,,,,11 +10888,460,187,1,7,24,9,9,9,0,66,,,,,,,11 +10889,460,197,27,25,25,10,10,10,0,65,,,,,,,12 +10890,460,177,3,1,13,11,11,11,0,65,,,,,,,12 +10891,460,172,3,2,20,12,12,12,0,65,,,,,,,12 +10892,460,105,25,3,16,13,13,13,0,65,,,,,,,12 +10893,460,193,25,4,23,14,14,14,0,65,,,,,,,12 +10894,460,123,21,30,17,15,15,15,0,65,,,,,,,12 +10895,460,195,55,33,21,16,16,16,0,64,,,,,,,13 +10896,460,176,21,29,19,17,17,17,0,64,,,,,,,13 +10897,460,181,54,9,8,,R,18,0,49,,,,,,,5 +10898,460,196,27,26,22,,R,19,0,48,,,,,,,22 +10899,460,160,45,32,26,,R,20,0,46,,,,,,,69 +10900,460,118,53,35,10,,R,21,0,27,,,,,,,6 +10901,460,119,34,6,5,,R,22,0,9,,,,,,,101 +10902,460,140,52,40,15,,R,23,0,5,,,,,,,69 +10903,460,158,4,16,7,,R,24,0,3,,,,,,,5 +10904,460,152,53,36,12,,R,25,0,3,,,,,,,101 +10905,460,173,32,11,4,,R,26,0,1,,,,,,,101 +10906,460,188,55,34,0,,F,27,0,0,,,,,,,81 +10907,460,190,45,31,0,,F,28,0,0,,,,,,,81 +10908,460,186,50,17,0,,F,29,0,0,,,,,,,81 +10909,461,163,6,28,2,1,1,1,9,45,27:10.3,5230319,,,,,1 +10910,461,110,51,22,3,2,2,2,6,45,+1:10.652,5300971,,,,,1 +10911,461,119,34,6,8,3,3,3,4,45,+1:44.093,5334412,,,,,1 +10912,461,117,4,15,5,4,4,4,3,45,+2:00.750,5351069,,,,,1 +10913,461,187,1,7,23,5,5,5,2,44,,,,,,,11 +10914,461,172,3,2,15,6,6,6,1,44,,,,,,,11 +10915,461,176,21,29,20,7,7,7,0,44,,,,,,,11 +10916,461,197,27,25,19,8,8,8,0,44,,,,,,,11 +10917,461,123,21,30,14,9,9,9,0,44,,,,,,,11 +10918,461,177,3,1,12,10,10,10,0,44,,,,,,,11 +10919,461,188,55,34,22,11,11,11,0,44,,,,,,,11 +10920,461,193,25,4,21,12,12,12,0,43,,,,,,,12 +10921,461,137,34,5,4,13,13,13,0,42,,,,,,,42 +10922,461,182,1,8,18,,D,14,0,44,,,,,,,2 +10923,461,158,4,16,6,,R,15,0,38,,,,,,,69 +10924,461,160,45,32,26,,R,16,0,34,,,,,,,44 +10925,461,196,27,26,25,,R,17,0,27,,,,,,,5 +10926,461,184,51,23,7,,R,18,0,24,,,,,,,101 +10927,461,152,53,36,10,,R,19,0,19,,,,,,,101 +10928,461,118,53,35,9,,R,20,0,17,,,,,,,5 +10929,461,140,52,40,13,,R,21,0,11,,,,,,,5 +10930,461,175,6,27,1,,R,22,0,11,,,,,,,5 +10931,461,173,32,11,11,,R,23,0,10,,,,,,,5 +10932,461,105,25,3,16,,R,24,0,4,,,,,,,48 +10933,461,95,32,12,17,,R,25,0,1,,,,,,,5 +10934,461,195,55,33,24,,R,26,0,0,,,,,,,5 +10935,461,186,50,17,0,,F,27,0,0,,,,,,,81 +10936,461,190,45,31,0,,F,28,0,0,,,,,,,81 +10937,461,181,54,9,0,,F,29,0,0,,,,,,,81 +10938,462,117,4,15,5,1,1,1,9,53,24:32.7,5072745,,,,,1 +10939,462,163,6,28,2,2,2,2,6,53,6.835,5079580,,,,,1 +10940,462,137,34,5,4,3,3,3,4,53,27.659,5100404,,,,,1 +10941,462,158,4,16,8,4,4,4,3,53,28.395,5101140,,,,,1 +10942,462,95,32,12,3,5,5,5,2,52,,,,,,,11 +10943,462,182,1,8,14,6,6,6,1,51,,,,,,,12 +10944,462,197,27,25,20,7,7,7,0,51,,,,,,,12 +10945,462,177,3,1,15,8,8,8,0,51,,,,,,,12 +10946,462,187,1,7,17,9,9,9,0,51,,,,,,,12 +10947,462,190,45,31,26,10,10,10,0,50,,,,,,,13 +10948,462,160,45,32,25,11,11,11,0,49,,,,,,,14 +10949,462,140,52,40,16,12,12,12,0,48,,,,,,,15 +10950,462,123,21,30,19,13,13,13,0,48,,,,,,,15 +10951,462,181,54,9,13,,R,14,0,33,,,,,,,47 +10952,462,110,51,22,11,,R,15,0,31,,,,,,,60 +10953,462,175,6,27,1,,R,16,0,30,,,,,,,80 +10954,462,119,34,6,6,,R,17,0,29,,,,,,,5 +10955,462,195,55,33,21,,R,18,0,25,,,,,,,6 +10956,462,172,3,2,24,,R,19,0,21,,,,,,,76 +10957,462,184,51,23,9,,R,20,0,13,,,,,,,44 +10958,462,105,25,3,18,,R,21,0,8,,,,,,,4 +10959,462,118,53,35,10,,R,22,0,2,,,,,,,101 +10960,462,152,53,36,7,,R,23,0,1,,,,,,,21 +10961,462,173,32,11,12,,R,24,0,0,,,,,,,4 +10962,462,176,21,29,22,,R,25,0,0,,,,,,,4 +10963,462,193,25,4,23,,R,26,0,0,,,,,,,4 +10964,462,196,27,26,0,,F,27,0,0,,,,,,,81 +10965,462,188,55,34,0,,F,28,0,0,,,,,,,81 +10966,462,186,50,17,0,,F,29,0,0,,,,,,,81 +10967,463,163,6,28,10,1,1,1,9,72,38:42.0,5921950,,,,,1 +10968,463,175,6,27,2,2,2,2,6,72,20.839,5942789,,,,,1 +10969,463,187,1,7,15,3,3,3,4,72,43.741,5965691,,,,,1 +10970,463,118,53,35,7,4,4,4,3,72,+1:16.839,5998789,,,,,1 +10971,463,184,51,23,12,5,5,5,2,72,+1:24.292,6006242,,,,,1 +10972,463,105,25,3,18,6,6,6,1,71,,,,,,,11 +10973,463,140,52,40,16,7,7,7,0,70,,,,,,,12 +10974,463,176,21,29,14,8,8,8,0,70,,,,,,,12 +10975,463,119,34,6,6,9,9,9,0,70,,,,,,,12 +10976,463,196,27,26,24,10,10,10,0,70,,,,,,,12 +10977,463,190,45,31,25,11,11,11,0,68,,,,,,,5 +10978,463,195,55,33,20,12,12,12,0,68,,,,,,,14 +10979,463,152,53,36,13,13,13,13,0,68,,,,,,,20 +10980,463,123,21,30,21,14,14,14,0,65,,,,,,,5 +10981,463,177,3,1,23,,R,15,0,53,,,,,,,80 +10982,463,181,54,9,9,,D,16,0,50,,,,,,,2 +10983,463,137,34,5,1,,R,17,0,41,,,,,,,4 +10984,463,117,4,15,4,,R,18,0,41,,,,,,,20 +10985,463,158,4,16,11,,R,19,0,39,,,,,,,10 +10986,463,172,3,2,17,,R,20,0,37,,,,,,,64 +10987,463,95,32,12,5,,R,21,0,26,,,,,,,20 +10988,463,182,1,8,19,,R,22,0,25,,,,,,,23 +10989,463,193,25,4,26,,R,23,0,20,,,,,,,5 +10990,463,173,32,11,3,,R,24,0,12,,,,,,,10 +10991,463,110,51,22,8,,R,25,0,5,,,,,,,5 +10992,463,197,27,25,22,,R,26,0,3,,,,,,,22 +10993,463,160,45,32,0,,F,27,0,0,,,,,,,81 +10994,463,188,55,34,0,,F,28,0,0,,,,,,,81 +10995,463,186,50,17,0,,F,29,0,0,,,,,,,81 +10996,464,137,34,5,4,1,1,1,9,52,23:10.9,4990880,,,,,1 +10997,464,163,6,28,3,2,2,2,6,52,10.212,5001092,,,,,1 +10998,464,158,4,16,7,3,3,3,4,52,18.612,5009492,,,,,1 +10999,464,175,6,27,2,4,4,4,3,52,29.023,5019903,,,,,1 +11000,464,173,32,11,8,5,5,5,2,52,53.68,5044560,,,,,1 +11001,464,118,53,35,12,6,6,6,1,52,+1:13.348,5064228,,,,,1 +11002,464,152,53,36,14,7,7,7,0,52,+1:33.922,5084802,,,,,1 +11003,464,95,32,12,11,8,8,8,0,52,+1:36.035,5086915,,,,,1 +11004,464,197,27,25,19,9,9,9,0,51,,,,,,,11 +11005,464,176,21,29,20,10,10,10,0,51,,,,,,,11 +11006,464,177,3,1,16,11,11,11,0,51,,,,,,,11 +11007,464,188,55,34,26,12,12,12,0,50,,,,,,,12 +11008,464,195,55,33,21,13,13,13,0,50,,,,,,,12 +11009,464,190,45,31,25,,R,14,0,45,,,,,,,5 +11010,464,193,25,4,22,,R,15,0,44,,,,,,,69 +11011,464,123,21,30,18,,R,16,0,41,,,,,,,5 +11012,464,181,54,9,9,,R,17,0,35,,,,,,,43 +11013,464,105,25,3,24,,R,18,0,28,,,,,,,8 +11014,464,117,4,15,5,,R,19,0,26,,,,,,,101 +11015,464,182,1,8,13,,R,20,0,24,,,,,,,10 +11016,464,187,1,7,15,,R,21,0,13,,,,,,,10 +11017,464,160,45,32,23,,R,22,0,10,,,,,,,6 +11018,464,184,51,23,10,,R,23,0,4,,,,,,,101 +11019,464,140,52,40,17,,R,24,0,4,,,,,,,99 +11020,464,119,34,6,1,,R,25,0,2,,,,,,,5 +11021,464,110,51,22,6,,R,26,0,2,,,,,,,4 +11022,464,196,27,26,0,,F,27,0,0,,,,,,,81 +11023,464,172,3,2,0,,F,28,0,0,,,,,,,81 +11024,464,186,50,17,0,,F,29,0,0,,,,,,,81 +11025,465,137,34,5,4,1,1,1,9,76,36:45.9,5805865,,,,,1 +11026,465,117,4,15,8,2,2,2,6,76,6.571,5812436,,,,,1 +11027,465,95,32,12,3,3,3,3,4,76,30.315,5836180,,,,,1 +11028,465,110,51,22,14,4,4,4,3,76,34.396,5840261,,,,,1 +11029,465,118,53,35,11,5,5,5,2,76,44.915,5850780,,,,,1 +11030,465,152,53,36,12,6,6,6,1,76,52.19,5858055,,,,,1 +11031,465,119,34,6,2,7,7,7,0,76,+1:12.684,5878549,,,,,1 +11032,465,181,54,9,9,8,8,8,0,75,,,,,,,11 +11033,465,163,6,28,5,9,9,9,0,75,,,,,,,11 +11034,465,158,4,16,7,10,10,10,0,75,,,,,,,11 +11035,465,123,21,30,18,11,11,11,0,75,,,,,,,11 +11036,465,195,55,33,21,12,12,12,0,75,,,,,,,11 +11037,465,156,3,42,25,13,13,13,0,74,,,,,,,12 +11038,465,140,52,40,19,14,14,14,0,74,,,,,,,12 +11039,465,196,27,26,23,15,15,15,0,73,,,,,,,13 +11040,465,175,6,27,6,,R,16,0,67,,,,,,,20 +11041,465,105,25,3,26,,R,17,0,64,,,,,,,5 +11042,465,160,45,32,24,,R,18,0,63,,,,,,,37 +11043,465,176,21,29,17,,R,19,0,50,,,,,,,5 +11044,465,177,3,1,16,,R,20,0,43,,,,,,,5 +11045,465,184,51,23,15,,R,21,0,39,,,,,,,8 +11046,465,187,1,7,10,,R,22,0,36,,,,,,,20 +11047,465,193,25,4,20,,R,23,0,27,,,,,,,44 +11048,465,182,1,8,13,,R,24,0,25,,,,,,,5 +11049,465,173,32,11,1,,R,25,0,12,,,,,,,94 +11050,465,197,27,25,22,,R,26,0,0,,,,,,,8 +11051,465,186,50,17,0,,F,27,0,0,,,,,,,81 +11052,465,190,45,31,0,,F,28,0,0,,,,,,,81 +11053,465,172,3,2,0,,F,29,0,0,,,,,,,81 +11054,466,119,34,6,3,1,1,1,9,77,33:25.7,5605708,,,,,1 +11055,466,110,51,22,9,2,2,2,6,77,9.319,5615027,,,,,1 +11056,466,137,34,5,2,3,3,3,4,77,21.969,5627677,,,,,1 +11057,466,118,53,35,13,4,4,4,3,76,,,,,,,11 +11058,466,177,3,1,6,5,5,5,2,76,,,,,,,11 +11059,466,158,4,16,14,6,6,6,1,76,,,,,,,11 +11060,466,193,25,4,19,7,7,7,0,75,,,,,,,12 +11061,466,176,21,29,22,8,8,8,0,75,,,,,,,12 +11062,466,123,21,30,20,9,9,9,0,74,,,,,,,13 +11063,466,197,27,25,21,10,10,10,0,73,,,,,,,14 +11064,466,182,1,8,12,11,11,11,0,71,,,,,,,10 +11065,466,186,50,17,24,12,12,12,0,71,,,,,,,16 +11066,466,95,32,12,7,,N,13,0,68,,,,,,,62 +11067,466,196,27,26,23,,N,14,0,66,,,,,,,62 +11068,466,105,25,3,18,,R,15,0,60,,,,,,,5 +11069,466,175,6,27,1,,R,16,0,56,,,,,,,101 +11070,466,152,53,36,16,,R,17,0,56,,,,,,,101 +11071,466,117,4,15,5,,R,18,0,35,,,,,,,101 +11072,466,190,45,31,25,,R,19,0,28,,,,,,,5 +11073,466,173,32,11,11,,R,20,0,20,,,,,,,5 +11074,466,187,1,7,15,,D,21,0,18,,,,,,,2 +11075,466,163,6,28,4,,R,22,0,9,,,,,,,5 +11076,466,184,51,23,17,,R,23,0,5,,,,,,,5 +11077,466,181,54,9,8,,R,24,0,1,,,,,,,5 +11078,466,172,3,2,10,,R,25,0,1,,,,,,,20 +11079,466,160,45,32,26,,R,26,0,1,,,,,,,5 +11080,467,117,4,15,5,1,1,1,9,77,32:08.4,5528401,,,,,1 +11081,467,199,3,5,8,2,2,2,6,77,14.946,5543347,,,,,1 +11082,467,163,4,16,1,3,3,3,4,77,27.9,5556301,,,,,1 +11083,467,182,1,8,13,4,4,4,3,77,32.113,5560514,,,,,1 +11084,467,177,3,6,7,5,5,5,2,77,43.139,5571540,,,,,1 +11085,467,187,1,7,9,6,6,6,1,77,50.993,5579394,,,,,1 +11086,467,105,25,3,10,7,7,7,0,76,,,,,,,11 +11087,467,173,32,11,15,8,8,8,0,76,,,,,,,11 +11088,467,194,54,10,12,9,9,9,0,75,,,,,,,12 +11089,467,181,54,9,20,10,10,10,0,75,,,,,,,12 +11090,467,152,51,23,19,11,11,11,0,74,,,,,,,13 +11091,467,200,37,17,22,12,12,12,0,74,,,,,,,13 +11092,467,110,51,22,16,13,13,13,0,73,,,,,,,14 +11093,467,206,55,33,24,14,14,14,0,73,,,,,,,14 +11094,467,196,37,18,21,15,15,15,0,72,,,,,,,15 +11095,467,201,25,4,23,16,16,16,0,72,,,,,,,15 +11096,467,192,56,20,25,17,17,17,0,72,,,,,,,15 +11097,467,202,6,28,6,18,18,18,0,71,,,,,,,16 +11098,467,172,27,26,11,,R,19,0,54,,,,,,,69 +11099,467,118,53,35,14,,R,20,0,43,,,,,,,3 +11100,467,119,34,2,4,,R,21,0,18,,,,,,,101 +11101,467,158,27,25,17,,R,22,0,11,,,,,,,69 +11102,467,203,6,27,3,,R,23,0,6,,,,,,,101 +11103,467,137,34,1,2,,R,24,0,3,,,,,,,20 +11104,467,95,32,12,18,,R,25,0,0,,,,,,,10 +11105,467,197,45,31,26,,R,26,0,0,,,,,,,4 +11106,467,184,21,30,0,,F,27,0,0,,,,,,,81 +11107,467,204,45,32,0,,F,28,0,0,,,,,,,81 +11108,467,205,21,29,0,,F,29,0,0,,,,,,,81 +11109,467,195,57,14,0,,F,30,0,0,,,,,,,81 +11110,467,170,53,36,0,,F,31,0,0,,,,,,,81 +11111,468,117,4,15,1,1,1,1,9,63,44:33.1,6273134,,,,,1 +11112,468,187,1,7,12,2,2,2,6,63,2.99,6276124,,,,,1 +11113,468,95,32,12,14,3,3,3,4,63,36.859,6309993,,,,,1 +11114,468,105,25,3,13,4,4,4,3,63,50.761,6323895,,,,,1 +11115,468,181,54,9,15,5,5,5,2,62,,,,,,,11 +11116,468,202,6,28,8,6,6,6,1,62,,,,,,,11 +11117,468,201,25,4,21,7,7,7,0,61,,,,,,,12 +11118,468,200,37,17,22,8,8,8,0,61,,,,,,,12 +11119,468,197,45,31,23,9,9,9,0,60,,,,,,,13 +11120,468,184,21,30,19,10,10,10,0,57,,,,,,,16 +11121,468,137,34,1,7,,D,11,0,63,,,,,,,2 +11122,468,177,3,6,3,,D,12,0,63,,,,,,,2 +11123,468,194,54,10,18,,R,13,0,38,,,,,,,5 +11124,468,192,56,20,25,,R,14,0,36,,,,,,,22 +11125,468,119,34,2,9,,R,15,0,34,,,,,,,68 +11126,468,203,6,27,2,,R,16,0,29,,,,,,,20 +11127,468,182,1,8,5,,R,17,0,22,,,,,,,4 +11128,468,163,4,16,4,,R,18,0,21,,,,,,,4 +11129,468,199,3,5,6,,R,19,0,21,,,,,,,4 +11130,468,173,32,11,11,,R,20,0,21,,,,,,,4 +11131,468,158,27,25,26,,R,21,0,19,,,,,,,47 +11132,468,152,51,23,16,,R,22,0,16,,,,,,,8 +11133,468,172,27,26,24,,R,23,0,15,,,,,,,83 +11134,468,110,51,22,10,,R,24,0,14,,,,,,,83 +11135,468,206,55,33,20,,R,25,0,12,,,,,,,20 +11136,468,196,37,18,17,,R,26,0,11,,,,,,,20 +11137,468,170,53,36,0,,F,27,0,0,,,,,,,81 +11138,468,205,21,29,0,,F,28,0,0,,,,,,,81 +11139,468,118,53,35,0,,F,29,0,0,,,,,,,81 +11140,468,195,57,14,0,,F,30,0,0,,,,,,,81 +11141,468,204,45,32,0,,F,31,0,0,,,,,,,81 +11142,469,182,1,8,2,1,1,1,9,75,58:25.3,7105318,,,,,1 +11143,469,177,3,6,8,2,2,2,6,75,14.66,7119978,,,,,1 +11144,469,119,34,2,18,3,3,3,4,75,+1:19.143,7184461,,,,,1 +11145,469,105,25,3,12,4,4,4,3,75,+1:20.947,7186265,,,,,1 +11146,469,173,32,11,16,5,5,5,2,74,,,,,,,11 +11147,469,187,1,7,11,6,6,6,1,74,,,,,,,11 +11148,469,95,32,12,17,7,7,7,0,73,,,,,,,12 +11149,469,200,37,17,21,8,8,8,0,73,,,,,,,12 +11150,469,196,37,18,23,9,9,9,0,70,,,,,,,15 +11151,469,201,25,4,24,10,10,10,0,68,,,,,,,17 +11152,469,203,6,27,7,,D,11,0,75,,,,,,,2 +11153,469,158,27,25,13,,R,12,0,59,,,,,,,6 +11154,469,110,51,22,1,,R,13,0,33,,,,,,,20 +11155,469,205,21,29,20,,R,14,0,32,,,,,,,20 +11156,469,195,57,14,19,,R,15,0,27,,,,,,,20 +11157,469,172,27,26,15,,R,16,0,26,,,,,,,20 +11158,469,197,45,31,10,,R,17,0,26,,,,,,,7 +11159,469,137,34,1,6,,R,18,0,25,,,,,,,20 +11160,469,206,55,33,22,,R,19,0,23,,,,,,,20 +11161,469,207,3,5,14,,R,20,0,19,,,,,,,4 +11162,469,117,4,15,4,,R,21,0,10,,,,,,,20 +11163,469,202,6,28,9,,R,22,0,6,,,,,,,20 +11164,469,163,4,16,3,,R,23,0,5,,,,,,,4 +11165,469,152,51,23,5,,R,24,0,5,,,,,,,4 +11166,469,194,54,10,26,,R,25,0,3,,,,,,,4 +11167,469,181,54,9,25,,R,26,0,1,,,,,,,4 +11168,469,170,53,36,0,,F,27,0,0,,,,,,,81 +11169,469,204,45,32,0,,F,28,0,0,,,,,,,81 +11170,469,192,56,20,0,,F,29,0,0,,,,,,,81 +11171,469,184,21,30,0,,F,30,0,0,,,,,,,81 +11172,469,118,53,35,0,,F,31,0,0,,,,,,,81 +11173,470,202,6,28,4,1,1,1,9,60,36:38.9,5798887,,,,,1 +11174,470,203,6,27,3,2,2,2,6,60,0.366,5799253,,,,,1 +11175,470,105,25,3,5,3,3,3,4,60,+1:07.684,5866571,,,,,1 +11176,470,197,45,31,9,4,4,4,3,59,,,,,,,11 +11177,470,194,54,10,14,5,5,5,2,57,,,,,,,13 +11178,470,181,54,9,12,,D,6,0,54,,,,,,,2 +11179,470,170,53,36,10,,N,7,0,52,,,,,,,62 +11180,470,163,4,16,1,,R,8,0,44,,,,,,,101 +11181,470,152,51,23,6,,R,9,0,24,,,,,,,5 +11182,470,204,45,32,13,,R,10,0,7,,,,,,,22 +11183,470,117,4,15,2,,R,11,0,6,,,,,,,5 +11184,470,110,51,22,7,,R,12,0,4,,,,,,,10 +11185,470,205,25,4,11,,R,13,0,0,,,,,,,7 +11186,470,118,53,35,8,,R,14,0,0,,,,,,,10 +11187,471,187,1,7,10,1,1,1,9,70,35:42.0,5741995,,,,,1 +11188,471,177,3,6,3,2,2,2,6,70,7.268,5749263,,,,,1 +11189,471,158,27,25,14,3,3,3,4,69,,,,,,,11 +11190,471,173,32,11,11,4,4,4,3,68,,,,,,,12 +11191,471,137,34,1,8,5,5,5,2,67,,,,,,,13 +11192,471,192,56,20,23,6,6,6,1,67,,,,,,,13 +11193,471,176,21,29,22,7,7,7,0,66,,,,,,,14 +11194,471,196,37,18,24,8,8,8,0,66,,,,,,,14 +11195,471,172,27,26,17,9,9,9,0,66,,,,,,,14 +11196,471,182,1,8,4,,D,10,0,70,,,,,,,2 +11197,471,206,3,5,13,,R,11,0,60,,,,,,,20 +11198,471,200,37,17,25,,R,12,0,60,,,,,,,5 +11199,471,117,4,15,1,,R,13,0,59,,,,,,,20 +11200,471,119,34,2,9,,R,14,0,52,,,,,,,20 +11201,471,184,21,30,26,,R,15,0,51,,,,,,,37 +11202,471,197,45,31,14,,R,16,0,37,,,,,,,41 +11203,471,110,51,22,6,,R,17,0,34,,,,,,,6 +11204,471,205,25,4,20,,R,18,0,33,,,,,,,5 +11205,471,105,25,3,5,,R,19,0,29,,,,,,,5 +11206,471,118,53,35,19,,R,20,0,29,,,,,,,7 +11207,471,170,53,36,21,,R,21,0,13,,,,,,,23 +11208,471,95,32,12,7,,R,22,0,9,,,,,,,8 +11209,471,163,4,16,2,,R,23,0,7,,,,,,,101 +11210,471,181,54,9,12,,R,24,0,0,,,,,,,8 +11211,471,152,51,23,15,,R,25,0,0,,,,,,,4 +11212,471,194,54,10,18,,R,26,0,0,,,,,,,4 +11213,471,202,6,28,0,,W,27,0,0,,,,,,,54 +11214,471,203,6,27,0,,W,28,0,0,,,,,,,3 +11215,471,195,57,14,0,,F,29,0,0,,,,,,,81 +11216,471,136,55,33,0,,F,30,0,0,,,,,,,81 +11217,471,204,45,32,0,,F,31,0,0,,,,,,,97 +11218,471,208,37,19,0,,F,32,0,0,,,,,,,97 +11219,472,119,34,2,2,1,1,1,9,76,54:11.3,6851259,,,,,1 +11220,472,202,6,28,5,2,2,2,6,75,,,,,,,60 +11221,472,110,51,22,7,3,3,3,4,75,,,,,,,60 +11222,472,95,32,12,11,4,4,4,3,75,,,,,,,11 +11223,472,173,32,11,15,5,5,5,2,75,,,,,,,11 +11224,472,206,3,5,8,6,6,6,1,74,,,,,,,6 +11225,472,117,4,15,4,7,7,7,0,73,,,,,,,20 +11226,472,205,25,4,17,8,8,8,0,72,,,,,,,14 +11227,472,176,21,29,19,9,9,9,0,70,,,,,,,16 +11228,472,105,25,3,9,10,10,10,0,69,,,,,,,22 +11229,472,177,3,6,6,,R,11,0,64,,,,,,,4 +11230,472,182,1,8,12,,R,12,0,56,,,,,,,5 +11231,472,137,34,1,13,,R,13,0,49,,,,,,,101 +11232,472,187,1,7,10,,R,14,0,35,,,,,,,10 +11233,472,181,54,9,14,,R,15,0,31,,,,,,,24 +11234,472,172,27,26,18,,R,16,0,29,,,,,,,64 +11235,472,158,27,25,16,,R,17,0,27,,,,,,,44 +11236,472,194,54,10,20,,R,18,0,22,,,,,,,26 +11237,472,163,4,16,1,,R,19,0,14,,,,,,,20 +11238,472,152,51,23,3,,R,20,0,4,,,,,,,86 +11239,472,184,21,30,0,,F,21,0,0,,,,,,,81 +11240,472,136,55,33,0,,F,22,0,0,,,,,,,81 +11241,472,200,37,17,0,,F,23,0,0,,,,,,,81 +11242,472,118,53,35,0,,F,24,0,0,,,,,,,81 +11243,472,197,45,31,0,,F,25,0,0,,,,,,,81 +11244,472,195,57,14,0,,F,26,0,0,,,,,,,81 +11245,472,170,53,36,0,,F,27,0,0,,,,,,,97 +11246,472,204,45,32,0,,F,28,0,0,,,,,,,97 +11247,472,196,37,18,0,,F,29,0,0,,,,,,,97 +11248,472,192,56,20,0,,F,30,0,0,,,,,,,97 +11249,472,208,37,19,0,,F,31,0,0,,,,,,,97 +11250,473,187,1,7,17,1,1,1,9,62,58:41.0,7121043,,,,,1 +11251,473,158,27,25,9,2,2,2,6,62,15.726,7136769,,,,,1 +11252,473,202,6,28,4,3,3,3,4,62,28.077,7149120,,,,,1 +11253,473,177,3,6,3,4,4,4,3,62,+1:11.976,7193019,,,,,1 +11254,473,206,3,5,12,5,5,5,2,62,+1:23.757,7204800,,,,,1 +11255,473,172,27,26,13,6,6,6,1,61,,,,,,,11 +11256,473,200,37,17,18,7,7,7,0,61,,,,,,,11 +11257,473,176,21,29,19,8,8,8,0,61,,,,,,,11 +11258,473,205,25,4,20,9,9,9,0,60,,,,,,,12 +11259,473,163,4,16,15,10,10,10,0,59,,,,,,,13 +11260,473,192,56,20,26,11,11,11,0,59,,,,,,,13 +11261,473,117,4,15,1,,N,12,0,54,,,,,,,62 +11262,473,95,32,12,7,,R,13,0,44,,,,,,,5 +11263,473,182,1,8,10,,R,14,0,40,,,,,,,4 +11264,473,105,25,3,16,,R,15,0,40,,,,,,,20 +11265,473,152,51,23,6,,R,16,0,30,,,,,,,4 +11266,473,173,32,11,8,,R,17,0,17,,,,,,,6 +11267,473,194,54,10,25,,R,18,0,13,,,,,,,20 +11268,473,195,57,14,11,,R,19,0,6,,,,,,,4 +11269,473,119,34,2,14,,R,20,0,6,,,,,,,4 +11270,473,110,51,22,2,,R,21,0,2,,,,,,,7 +11271,473,197,45,31,22,,R,22,0,2,,,,,,,80 +11272,473,181,54,9,5,,R,23,0,1,,,,,,,20 +11273,473,196,37,18,21,,R,24,0,0,,,,,,,4 +11274,473,184,21,30,24,,R,25,0,0,,,,,,,4 +11275,473,204,45,32,23,,R,26,0,0,,,,,,,31 +11276,473,208,37,19,0,,F,27,0,0,,,,,,,81 +11277,473,137,34,1,0,,F,28,0,0,,,,,,,81 +11278,473,136,55,33,0,,F,29,0,0,,,,,,,81 +11279,474,137,34,1,4,1,1,1,9,70,46:39.6,6399577,,,,,1 +11280,474,119,34,2,8,2,2,2,6,70,13.799,6413376,,,,,1 +11281,474,187,1,7,6,3,3,3,4,70,+1:01.836,6461413,,,,,1 +11282,474,173,32,11,10,4,4,4,3,69,,,,,,,11 +11283,474,176,21,29,16,5,5,5,2,69,,,,,,,11 +11284,474,110,51,22,9,6,6,6,1,68,,,,,,,60 +11285,474,206,3,5,13,7,7,7,0,68,,,,,,,60 +11286,474,184,21,30,17,8,8,8,0,68,,,,,,,12 +11287,474,202,6,28,1,9,9,9,0,67,,,,,,,13 +11288,474,158,27,25,12,10,10,10,0,66,,,,,,,60 +11289,474,200,37,17,22,11,11,11,0,66,,,,,,,14 +11290,474,205,25,4,26,,N,12,0,59,,,,,,,62 +11291,474,177,3,6,7,,R,13,0,52,,,,,,,6 +11292,474,196,37,18,21,,R,14,0,47,,,,,,,5 +11293,474,105,25,3,15,,R,15,0,41,,,,,,,5 +11294,474,117,4,15,3,,R,16,0,30,,,,,,,5 +11295,474,163,4,16,2,,R,17,0,28,,,,,,,20 +11296,474,194,54,10,24,,R,18,0,20,,,,,,,5 +11297,474,182,1,8,11,,R,19,0,17,,,,,,,8 +11298,474,172,27,26,19,,R,20,0,8,,,,,,,69 +11299,474,195,57,14,20,,R,21,0,7,,,,,,,8 +11300,474,152,51,23,5,,R,22,0,2,,,,,,,4 +11301,474,95,32,12,14,,R,23,0,2,,,,,,,4 +11302,474,197,45,31,18,,R,24,0,0,,,,,,,54 +11303,474,204,45,32,23,,R,25,0,0,,,,,,,104 +11304,474,209,55,33,25,,R,26,0,0,,,,,,,4 +11305,474,181,54,9,0,,F,27,0,0,,,,,,,81 +11306,474,208,37,19,0,,F,28,0,0,,,,,,,81 +11307,474,192,56,20,0,,F,29,0,0,,,,,,,81 +11308,475,202,6,28,4,1,1,1,9,72,38:03.3,5883254,,,,,1 +11309,475,137,34,1,3,2,2,2,6,72,21.649,5904903,,,,,1 +11310,475,177,3,6,7,3,3,3,4,72,22.365,5905619,,,,,1 +11311,475,182,1,8,5,4,4,4,3,72,+1:23.729,5966983,,,,,1 +11312,475,206,3,5,12,5,5,5,2,71,,,,,,,11 +11313,475,184,21,30,16,6,6,6,1,71,,,,,,,11 +11314,475,105,25,3,14,7,7,7,0,71,,,,,,,11 +11315,475,175,6,27,6,8,8,8,0,71,,,,,,,11 +11316,475,187,1,7,11,9,9,9,0,71,,,,,,,11 +11317,475,176,21,29,17,10,10,10,0,71,,,,,,,11 +11318,475,152,51,23,8,11,11,11,0,70,,,,,,,12 +11319,475,181,54,9,18,12,12,12,0,70,,,,,,,12 +11320,475,194,54,10,25,13,13,13,0,70,,,,,,,12 +11321,475,197,45,31,23,14,14,14,0,69,,,,,,,13 +11322,475,119,34,2,10,15,15,15,0,69,,,,,,,13 +11323,475,200,37,17,24,,R,16,0,60,,,,,,,5 +11324,475,136,55,33,26,,R,17,0,41,,,,,,,5 +11325,475,173,32,11,15,,R,18,0,40,,,,,,,64 +11326,475,110,51,22,9,,R,19,0,35,,,,,,,10 +11327,475,117,4,15,2,,R,20,0,33,,,,,,,5 +11328,475,163,4,16,1,,R,21,0,21,,,,,,,20 +11329,475,205,25,4,20,,R,22,0,21,,,,,,,37 +11330,475,196,37,18,22,,R,23,0,21,,,,,,,5 +11331,475,192,56,20,19,,R,24,0,18,,,,,,,69 +11332,475,118,53,35,13,,R,25,0,15,,,,,,,44 +11333,475,172,27,26,21,,R,26,0,4,,,,,,,64 +11334,475,195,57,14,0,,F,27,0,0,,,,,,,81 +11335,475,170,53,36,0,,F,28,0,0,,,,,,,81 +11336,475,158,27,25,0,,F,29,0,0,,,,,,,81 +11337,475,90,32,12,0,,F,30,0,0,,,,,,,81 +11338,475,208,37,19,0,,F,31,0,0,,,,,,,97 +11339,476,182,1,8,5,1,1,1,9,76,35:33.8,5733812,,,,,1 +11340,476,202,6,28,4,2,2,2,6,76,25.726,5759538,,,,,1 +11341,476,175,6,27,13,3,3,3,4,76,38.436,5772248,,,,,1 +11342,476,173,32,11,7,4,4,4,3,76,41.242,5775054,,,,,1 +11343,476,206,3,5,10,5,5,5,2,76,41.43,5775242,,,,,1 +11344,476,117,4,15,8,6,6,6,1,76,41.636,5775448,,,,,1 +11345,476,152,51,23,14,7,7,7,0,75,,,,,,,11 +11346,476,205,25,4,17,8,8,8,0,75,,,,,,,11 +11347,476,184,21,30,26,9,9,9,0,74,,,,,,,12 +11348,476,200,37,17,25,10,10,10,0,73,,,,,,,13 +11349,476,110,51,22,11,,R,11,0,66,,,,,,,10 +11350,476,158,27,25,24,,R,12,0,60,,,,,,,5 +11351,476,176,21,29,22,,R,13,0,59,,,,,,,5 +11352,476,177,3,6,1,,R,14,0,50,,,,,,,69 +11353,476,105,25,3,9,,R,15,0,44,,,,,,,5 +11354,476,172,27,26,20,,R,16,0,41,,,,,,,6 +11355,476,118,53,35,16,,R,17,0,40,,,,,,,86 +11356,476,95,32,12,23,,R,18,0,29,,,,,,,100 +11357,476,137,34,1,3,,R,19,0,9,,,,,,,69 +11358,476,195,57,14,19,,R,20,0,3,,,,,,,5 +11359,476,197,45,31,18,,R,21,0,2,,,,,,,4 +11360,476,192,56,20,21,,R,22,0,2,,,,,,,4 +11361,476,187,1,7,12,,R,23,0,2,,,,,,,20 +11362,476,119,34,2,2,,R,24,0,0,,,,,,,4 +11363,476,163,4,16,6,,R,25,0,0,,,,,,,4 +11364,476,170,53,36,15,,R,26,0,0,,,,,,,4 +11365,476,181,54,9,0,,F,27,0,0,,,,,,,81 +11366,476,136,55,33,0,,F,28,0,0,,,,,,,81 +11367,476,194,54,10,0,,F,29,0,0,,,,,,,81 +11368,476,196,37,18,0,,F,30,0,0,,,,,,,81 +11369,477,163,4,16,1,1,1,1,9,54,33:33.2,5613217,,,,,1 +11370,477,117,4,15,2,2,2,2,6,54,17.308,5630525,,,,,1 +11371,477,202,6,28,3,3,3,3,4,54,42.128,5655345,,,,,1 +11372,477,175,6,27,5,4,4,4,3,54,+1:16.241,5689458,,,,,1 +11373,477,177,3,6,10,5,5,5,2,54,+1:30.994,5704211,,,,,1 +11374,477,105,25,3,15,6,6,6,1,54,+1:32.339,5705556,,,,,1 +11375,477,206,3,5,11,7,7,7,0,53,,,,,,,11 +11376,477,182,1,8,9,8,8,8,0,53,,,,,,,11 +11377,477,152,51,23,8,9,9,9,0,53,,,,,,,11 +11378,477,205,25,4,23,10,10,10,0,53,,,,,,,11 +11379,477,181,54,9,18,11,11,11,0,52,,,,,,,12 +11380,477,209,32,12,24,12,12,12,0,52,,,,,,,12 +11381,477,176,21,29,20,13,13,13,0,52,,,,,,,12 +11382,477,172,27,26,16,14,14,14,0,51,,,,,,,13 +11383,477,118,53,35,14,15,15,15,0,50,,,,,,,14 +11384,477,158,27,25,19,16,16,16,0,49,,,,,,,15 +11385,477,110,51,22,7,,R,17,0,25,,,,,,,20 +11386,477,137,34,1,6,,R,18,0,23,,,,,,,5 +11387,477,173,32,11,13,,R,19,0,17,,,,,,,69 +11388,477,187,1,7,12,,R,20,0,13,,,,,,,10 +11389,477,200,37,17,26,,R,21,0,10,,,,,,,20 +11390,477,184,21,30,25,,R,22,0,10,,,,,,,4 +11391,477,119,34,2,4,,R,23,0,8,,,,,,,5 +11392,477,194,54,10,22,,R,24,0,2,,,,,,,20 +11393,477,197,45,31,17,,R,25,0,0,,,,,,,86 +11394,477,170,53,36,21,,R,26,0,0,,,,,,,10 +11395,477,136,55,33,0,,F,27,0,0,,,,,,,81 +11396,477,195,57,14,0,,F,28,0,0,,,,,,,81 +11397,477,196,37,18,0,,F,29,0,0,,,,,,,81 +11398,478,175,6,27,5,1,1,1,9,45,27:25.2,5245178,,,,,1 +11399,478,163,4,16,3,2,2,2,6,45,16.379,5261557,,,,,1 +11400,478,177,3,6,9,3,3,3,4,44,,,,,,,11 +11401,478,105,25,3,7,4,4,4,3,44,,,,,,,11 +11402,478,152,51,23,11,5,5,5,2,44,,,,,,,11 +11403,478,176,21,29,26,6,6,6,1,44,,,,,,,11 +11404,478,205,25,4,17,7,7,7,0,44,,,,,,,11 +11405,478,195,57,14,21,8,8,8,0,44,,,,,,,11 +11406,478,95,32,12,18,9,9,9,0,43,,,,,,,12 +11407,478,118,53,35,14,10,10,10,0,43,,,,,,,12 +11408,478,192,56,20,25,11,11,11,0,43,,,,,,,12 +11409,478,187,1,7,10,,R,12,0,36,,,,,,,22 +11410,478,172,27,26,15,,R,13,0,36,,,,,,,64 +11411,478,206,3,5,19,,R,14,0,25,,,,,,,5 +11412,478,196,37,18,24,,R,15,0,22,,,,,,,27 +11413,478,173,32,11,13,,R,16,0,21,,,,,,,64 +11414,478,137,34,1,4,,R,17,0,18,,,,,,,4 +11415,478,194,54,10,22,,R,18,0,17,,,,,,,4 +11416,478,117,4,15,2,,R,19,0,14,,,,,,,98 +11417,478,119,34,2,6,,R,20,0,13,,,,,,,5 +11418,478,110,51,22,8,,R,21,0,9,,,,,,,6 +11419,478,158,27,25,12,,R,22,0,8,,,,,,,69 +11420,478,184,21,30,23,,R,23,0,6,,,,,,,69 +11421,478,197,45,31,20,,R,24,0,3,,,,,,,38 +11422,478,181,54,9,16,,R,25,0,3,,,,,,,8 +11423,478,202,6,28,1,,W,26,0,0,,,,,,,3 +11424,478,210,55,33,0,,F,27,0,0,,,,,,,81 +11425,478,211,37,17,0,,F,28,0,0,,,,,,,81 +11426,478,170,53,36,0,,F,29,0,0,,,,,,,81 +11427,479,173,32,11,7,1,1,1,9,53,25:02.2,5102212,,,,,1 +11428,479,177,3,6,6,2,2,2,6,53,0.05,5102262,,,,,1 +11429,479,172,27,26,14,3,3,3,4,52,,,,,,,11 +11430,479,175,6,27,4,4,4,4,3,52,,,,,,,11 +11431,479,182,1,8,10,5,5,5,2,52,,,,,,,11 +11432,479,184,21,30,23,6,6,6,1,52,,,,,,,11 +11433,479,192,56,20,20,7,7,7,0,51,,,,,,,12 +11434,479,117,4,15,3,8,8,8,0,48,,,,,,,98 +11435,479,187,1,7,18,9,9,9,0,44,,,,,,,5 +11436,479,205,25,4,19,,R,10,0,32,,,,,,,5 +11437,479,137,34,1,1,,R,11,0,31,,,,,,,10 +11438,479,210,55,33,26,,R,12,0,28,,,,,,,20 +11439,479,176,21,29,21,,R,13,0,28,,,,,,,5 +11440,479,119,34,2,2,,R,14,0,27,,,,,,,5 +11441,479,158,27,25,22,,R,15,0,22,,,,,,,5 +11442,479,95,32,12,12,,R,16,0,17,,,,,,,5 +11443,479,163,4,16,5,,R,17,0,16,,,,,,,98 +11444,479,181,54,9,25,,R,18,0,15,,,,,,,20 +11445,479,118,53,35,15,,R,19,0,7,,,,,,,22 +11446,479,170,53,36,17,,R,20,0,7,,,,,,,7 +11447,479,195,57,14,16,,R,21,0,6,,,,,,,20 +11448,479,105,25,3,8,,R,22,0,1,,,,,,,20 +11449,479,211,37,17,24,,R,23,0,1,,,,,,,38 +11450,479,206,3,5,9,,R,24,0,0,,,,,,,4 +11451,479,110,51,22,11,,R,25,0,0,,,,,,,4 +11452,479,152,51,23,13,,R,26,0,0,,,,,,,4 +11453,479,196,37,18,0,,F,27,0,0,,,,,,,81 +11454,479,197,45,31,0,,F,28,0,0,,,,,,,81 +11455,479,194,54,10,0,,F,29,0,0,,,,,,,81 +11456,480,177,3,6,8,1,1,1,9,80,32:41.1,5561087,,,,,1 +11457,480,117,4,15,1,2,2,2,6,80,4.442,5565529,,,,,1 +11458,480,182,1,8,4,3,3,3,4,80,+1:00.343,5621430,,,,,1 +11459,480,137,34,1,6,4,4,4,3,79,,,,,,,11 +11460,480,119,34,2,3,5,5,5,2,79,,,,,,,11 +11461,480,173,32,11,15,6,6,6,1,79,,,,,,,11 +11462,480,105,25,3,12,7,7,7,0,79,,,,,,,11 +11463,480,95,32,12,26,8,8,8,0,79,,,,,,,11 +11464,480,206,3,5,7,9,9,9,0,79,,,,,,,11 +11465,480,110,51,22,5,10,10,10,0,78,,,,,,,12 +11466,480,205,25,4,18,11,11,11,0,78,,,,,,,12 +11467,480,152,51,23,9,12,12,12,0,78,,,,,,,12 +11468,480,187,1,7,11,13,13,13,0,77,,,,,,,13 +11469,480,194,54,10,25,14,14,14,0,76,,,,,,,14 +11470,480,176,21,29,14,15,15,15,0,76,,,,,,,14 +11471,480,163,4,16,2,16,16,16,0,75,,,,,,,98 +11472,480,158,27,25,16,,R,17,0,70,,,,,,,64 +11473,480,181,54,9,20,,R,18,0,55,,,,,,,83 +11474,480,197,45,31,17,,R,19,0,44,,,,,,,5 +11475,480,172,27,26,13,,R,20,0,33,,,,,,,64 +11476,480,170,53,36,23,,R,21,0,31,,,,,,,5 +11477,480,196,37,18,24,,R,22,0,31,,,,,,,47 +11478,480,211,37,17,22,,R,23,0,25,,,,,,,20 +11479,480,118,53,35,21,,R,24,0,24,,,,,,,5 +11480,480,195,57,14,19,,R,25,0,4,,,,,,,5 +11481,480,175,6,27,10,,R,26,0,0,,,,,,,82 +11482,480,192,56,20,0,,F,27,0,0,,,,,,,81 +11483,480,210,55,33,0,,F,28,0,0,,,,,,,81 +11484,480,184,21,30,0,,F,29,0,0,,,,,,,81 +11485,481,163,4,16,6,1,1,1,9,52,22:25.7,4945734,,,,,1 +11486,481,175,6,27,3,2,2,2,6,52,14.064,4959798,,,,,1 +11487,481,207,6,28,1,3,3,3,4,52,48.452,4994186,,,,,1 +11488,481,187,1,7,12,4,4,4,3,52,+1:27.845,5033579,,,,,1 +11489,481,105,25,3,11,5,5,5,2,51,,,,,,,11 +11490,481,158,27,25,14,6,6,6,1,51,,,,,,,11 +11491,481,95,32,12,23,7,7,7,0,51,,,,,,,11 +11492,481,177,3,6,7,8,8,8,0,50,,,,,,,12 +11493,481,194,54,10,25,9,9,9,0,50,,,,,,,12 +11494,481,110,51,22,9,10,10,10,0,50,,,,,,,12 +11495,481,192,56,20,26,11,11,11,0,49,,,,,,,13 +11496,481,184,21,30,24,12,12,12,0,49,,,,,,,13 +11497,481,195,57,14,18,,N,13,0,40,,,,,,,62 +11498,481,173,32,11,17,,R,14,0,33,,,,,,,37 +11499,481,152,51,23,8,,R,15,0,32,,,,,,,64 +11500,481,176,21,29,19,,R,16,0,28,,,,,,,80 +11501,481,117,4,15,5,,R,17,0,27,,,,,,,98 +11502,481,182,1,8,10,,R,18,0,21,,,,,,,23 +11503,481,197,45,31,15,,R,19,0,10,,,,,,,36 +11504,481,137,34,1,2,,R,20,0,7,,,,,,,5 +11505,481,119,34,2,4,,R,21,0,6,,,,,,,8 +11506,481,172,27,26,21,,R,22,0,5,,,,,,,6 +11507,481,170,53,36,22,,R,23,0,2,,,,,,,5 +11508,481,206,3,5,13,,R,24,0,0,,,,,,,4 +11509,481,118,53,35,16,,R,25,0,0,,,,,,,4 +11510,481,205,25,4,20,,R,26,0,0,,,,,,,4 +11511,481,211,37,17,0,,F,27,0,0,,,,,,,81 +11512,481,181,54,9,0,,F,28,0,0,,,,,,,81 +11513,481,196,37,18,0,,F,29,0,0,,,,,,,81 +11514,481,210,55,33,0,,F,30,0,0,,,,,,,81 +11515,482,105,25,3,3,1,1,1,9,75,41:56.9,6116888,,,,,1 +11516,482,187,1,7,9,2,2,2,6,75,27.292,6144180,,,,,1 +11517,482,158,27,25,4,3,3,3,4,75,56.45,6173338,,,,,1 +11518,482,117,4,15,1,4,4,4,3,75,+1:08.648,6185536,,,,,1 +11519,482,177,3,6,6,5,5,5,2,75,+1:11.375,6188263,,,,,1 +11520,482,206,3,5,14,6,6,6,1,74,,,,,,,11 +11521,482,176,21,29,17,7,7,7,0,74,,,,,,,11 +11522,482,205,25,4,19,8,8,8,0,74,,,,,,,11 +11523,482,110,51,22,18,9,9,9,0,73,,,,,,,12 +11524,482,152,51,23,16,10,10,10,0,73,,,,,,,12 +11525,482,184,21,30,23,11,11,11,0,73,,,,,,,12 +11526,482,211,37,17,25,12,12,12,0,73,,,,,,,12 +11527,482,196,37,18,24,13,13,13,0,69,,,,,,,16 +11528,482,181,54,9,22,,N,14,0,62,,,,,,,62 +11529,482,182,1,8,13,,R,15,0,53,,,,,,,5 +11530,482,210,55,33,26,,R,16,0,39,,,,,,,20 +11531,482,118,53,35,10,,R,17,0,32,,,,,,,105 +11532,482,173,32,11,20,,R,18,0,28,,,,,,,5 +11533,482,207,6,28,7,,R,19,0,26,,,,,,,22 +11534,482,137,34,1,12,,R,20,0,26,,,,,,,105 +11535,482,163,4,16,2,,R,21,0,20,,,,,,,5 +11536,482,119,34,2,5,,R,22,0,17,,,,,,,8 +11537,482,95,32,12,21,,R,23,0,8,,,,,,,4 +11538,482,172,27,26,11,,R,24,0,5,,,,,,,80 +11539,482,175,6,27,8,,W,25,0,0,,,,,,,54 +11540,482,195,57,14,15,,W,26,0,0,,,,,,,5 +11541,482,197,45,31,27,,W,27,0,0,,,,,,,3 +11542,482,170,53,36,0,,F,28,0,0,,,,,,,81 +11543,482,194,54,10,0,,F,29,0,0,,,,,,,81 +11544,482,192,56,20,0,,F,30,0,0,,,,,,,81 +11545,483,178,3,1,2,1,1,1,9,80,50:41.3,6641330,,,,,1 +11546,483,199,3,2,3,2,2,2,6,80,9.19,6650520,,,,,1 +11547,483,137,34,5,4,3,3,3,4,80,34.92,6676250,,,,,1 +11548,483,207,51,22,6,4,4,4,3,80,49.31,6690640,,,,,1 +11549,483,158,25,3,8,5,5,5,2,80,+1:06.70,6708030,,,,,1 +11550,483,175,55,33,17,6,6,6,1,79,,,,,,,11 +11551,483,192,56,21,18,7,7,7,0,78,,,,,,,12 +11552,483,163,4,16,20,8,8,8,0,77,,,,,,,13 +11553,483,176,57,14,19,,R,9,0,70,,,,,,,69 +11554,483,202,6,28,11,,R,10,0,67,,,,,,,69 +11555,483,197,27,25,10,,R,11,0,64,,,,,,,48 +11556,483,212,34,6,15,,R,12,0,49,,,,,,,3 +11557,483,152,51,23,9,,R,13,0,41,,,,,,,4 +11558,483,172,27,26,12,,R,14,0,41,,,,,,,4 +11559,483,177,56,20,16,,R,15,0,41,,,,,,,5 +11560,483,136,54,9,21,,R,16,0,41,,,,,,,4 +11561,483,119,21,29,1,,R,17,0,33,,,,,,,69 +11562,483,213,45,32,24,,R,18,0,26,,,,,,,3 +11563,483,95,32,12,7,,R,19,0,25,,,,,,,3 +11564,483,203,6,27,5,,R,20,0,17,,,,,,,86 +11565,483,187,1,7,23,,R,21,0,16,,,,,,,23 +11566,483,173,32,11,13,,R,22,0,13,,,,,,,3 +11567,483,117,4,15,14,,R,23,0,0,,,,,,,4 +11568,483,110,1,8,22,,R,24,0,0,,,,,,,4 +11569,483,214,25,4,0,,F,25,0,0,,,,,,,81 +11570,483,206,37,17,0,,F,26,0,0,,,,,,,81 +11571,483,215,45,31,0,,F,27,0,0,,,,,,,81 +11572,483,216,21,30,0,,F,28,0,0,,,,,,,81 +11573,483,194,37,18,0,,F,29,0,0,,,,,,,81 +11574,484,199,3,2,2,1,1,1,9,62,00:23.7,7223660,,,,,1 +11575,484,178,3,1,3,2,2,2,6,62,4.44,7228100,,,,,1 +11576,484,119,21,29,4,3,3,3,4,62,+1:03.08,7286740,,,,,1 +11577,484,176,57,14,18,4,4,4,3,62,+1:17.03,7300690,,,,,1 +11578,484,173,32,11,10,5,5,5,2,62,+1:26.42,7310080,,,,,1 +11579,484,172,27,26,16,6,6,6,1,62,+1:26.83,7310490,,,,,1 +11580,484,197,27,25,23,7,7,7,0,62,+1:30.25,7313910,,,,,1 +11581,484,187,1,7,15,8,8,8,0,61,,,,,,,11 +11582,484,177,56,20,12,9,9,9,0,61,,,,,,,11 +11583,484,175,55,33,19,10,10,10,0,61,,,,,,,11 +11584,484,95,32,12,13,11,11,11,0,61,,,,,,,11 +11585,484,137,34,5,1,12,12,12,0,60,,,,,,,12 +11586,484,217,25,4,24,13,13,13,0,57,,,,,,,15 +11587,484,158,25,3,14,,N,14,0,49,,,,,,,62 +11588,484,152,51,23,6,,N,15,0,40,,,,,,,62 +11589,484,203,6,27,7,,R,16,0,25,,,,,,,101 +11590,484,212,34,6,11,,R,17,0,22,,,,,,,20 +11591,484,117,4,15,5,,R,18,0,20,,,,,,,4 +11592,484,216,21,30,21,,R,19,0,20,,,,,,,3 +11593,484,202,6,28,17,,R,20,0,19,,,,,,,4 +11594,484,110,1,8,20,,R,21,0,9,,,,,,,5 +11595,484,163,4,16,8,,R,22,0,0,,,,,,,4 +11596,484,207,51,22,9,,R,23,0,0,,,,,,,4 +11597,484,192,56,21,22,,R,24,0,0,,,,,,,4 +11598,484,136,54,9,0,,F,25,0,0,,,,,,,81 +11599,484,213,45,32,0,,F,26,0,0,,,,,,,81 +11600,484,215,45,31,0,,F,27,0,0,,,,,,,81 +11601,484,194,45,18,0,,F,28,0,0,,,,,,,81 +11602,484,206,37,17,0,,F,29,0,0,,,,,,,81 +11603,484,218,57,14,0,,W,30,0,0,,,,,,,54 +11604,485,137,34,5,1,1,1,1,9,53,34:32.7,5672740,,,,,1 +11605,485,199,3,2,4,2,2,2,6,53,26.61,5699350,,,,,1 +11606,485,117,4,15,2,3,3,3,4,53,49.98,5722720,,,,,1 +11607,485,178,3,1,3,4,4,4,3,53,+1:07.88,5740620,,,,,1 +11608,485,163,4,16,5,5,5,5,2,53,+1:31.85,5764590,,,,,1 +11609,485,173,32,11,10,6,6,6,1,52,,,,,,,11 +11610,485,119,21,29,9,7,7,7,0,52,,,,,,,11 +11611,485,207,51,22,17,8,8,8,0,52,,,,,,,11 +11612,485,216,21,30,19,9,9,9,0,52,,,,,,,11 +11613,485,152,51,23,22,10,10,10,0,51,,,,,,,60 +11614,485,110,1,8,18,11,11,11,0,51,,,,,,,12 +11615,485,136,54,9,23,12,12,12,0,51,,,,,,,12 +11616,485,217,25,4,24,13,13,13,0,51,,,,,,,12 +11617,485,203,6,27,7,,R,14,0,40,,,,,,,7 +11618,485,175,55,33,14,,R,15,0,36,,,,,,,44 +11619,485,187,1,7,11,,R,16,0,36,,,,,,,7 +11620,485,212,34,6,6,,R,17,0,32,,,,,,,10 +11621,485,192,56,21,20,,R,18,0,28,,,,,,,6 +11622,485,172,27,26,21,,R,19,0,19,,,,,,,64 +11623,485,176,57,14,16,,R,20,0,14,,,,,,,5 +11624,485,177,56,20,8,,R,21,0,4,,,,,,,69 +11625,485,95,32,12,15,,R,22,0,3,,,,,,,5 +11626,485,202,6,28,12,,R,23,0,3,,,,,,,5 +11627,485,158,25,3,13,,R,24,0,1,,,,,,,8 +11628,485,215,45,31,0,,F,25,0,0,,,,,,,81 +11629,485,213,45,32,0,,F,26,0,0,,,,,,,81 +11630,485,206,37,17,0,,F,27,0,0,,,,,,,81 +11631,485,219,27,25,0,,F,28,0,0,,,,,,,81 +11632,485,194,37,18,0,,F,29,0,0,,,,,,,81 +11633,486,137,34,5,5,1,1,1,9,60,51:24.0,6683970,,,,,1 +11634,486,119,21,29,9,2,2,2,6,60,4.58,6688550,,,,,1 +11635,486,199,3,2,2,3,3,3,4,60,6.34,6690310,,,,,1 +11636,486,212,34,6,13,4,4,4,3,60,22.89,6706860,,,,,1 +11637,486,202,6,28,6,5,5,5,2,60,25.87,6709840,,,,,1 +11638,486,110,1,8,14,6,6,6,1,60,+1:06.61,6750580,,,,,1 +11639,486,203,6,27,1,7,7,7,0,60,+1:41.97,6785940,,,,,1 +11640,486,163,4,16,3,8,8,8,0,59,,,,,,,11 +11641,486,176,57,14,21,9,9,9,0,59,,,,,,,11 +11642,486,187,1,7,7,10,10,10,0,58,,,,,,,12 +11643,486,175,55,33,16,11,11,11,0,58,,,,,,,12 +11644,486,178,3,1,8,12,12,12,0,58,,,,,,,12 +11645,486,201,54,10,24,13,13,13,0,57,,,,,,,13 +11646,486,219,27,25,18,,N,14,0,45,,,,,,,62 +11647,486,194,37,17,23,,R,15,0,38,,,,,,,20 +11648,486,105,25,4,17,,R,16,0,31,,,,,,,4 +11649,486,213,45,32,20,,R,17,0,31,,,,,,,4 +11650,486,152,51,23,11,,R,18,0,28,,,,,,,4 +11651,486,158,25,3,19,,R,19,0,28,,,,,,,4 +11652,486,207,51,22,12,,R,20,0,26,,,,,,,6 +11653,486,177,56,20,15,,R,21,0,14,,,,,,,5 +11654,486,172,27,26,10,,R,22,0,7,,,,,,,22 +11655,486,117,4,15,4,,R,23,0,3,,,,,,,6 +11656,486,215,45,31,22,,R,24,0,0,,,,,,,3 +11657,486,216,21,30,0,,F,25,0,0,,,,,,,81 +11658,486,206,37,18,0,,F,26,0,0,,,,,,,81 +11659,486,136,54,9,0,,R,27,0,0,,,,,,,31 +11660,486,192,56,21,0,,F,28,0,0,,,,,,,81 +11661,486,118,53,36,0,,F,29,0,0,,,,,,,81 +11662,486,205,53,35,0,,F,30,0,0,,,,,,,81 +11663,486,173,32,11,0,,W,31,0,0,,,,,,,54 +11664,486,95,32,12,0,,W,32,0,0,,,,,,,54 +11665,487,199,3,2,1,1,1,1,9,54,16:31.6,4591610,,,,,1 +11666,487,172,27,26,9,2,2,2,6,54,36.06,4627670,,,,,1 +11667,487,95,32,12,10,3,3,3,4,54,43.69,4635300,,,,,1 +11668,487,203,6,27,7,4,4,4,3,54,47.64,4639250,,,,,1 +11669,487,173,32,11,14,5,5,5,2,54,49.2,4640810,,,,,1 +11670,487,158,25,3,8,6,6,6,1,54,52.51,4644120,,,,,1 +11671,487,187,1,7,5,7,7,7,0,54,+1:01.66,4653270,,,,,1 +11672,487,202,6,28,3,8,8,8,0,54,+1:32.04,4683650,,,,,1 +11673,487,152,51,23,17,9,9,9,0,54,+1:35.58,4687190,,,,,1 +11674,487,207,51,22,18,10,10,10,0,53,,,,,,,11 +11675,487,176,57,14,15,11,11,11,0,52,,,,,,,12 +11676,487,105,25,4,19,12,12,12,0,52,,,,,,,12 +11677,487,160,45,31,24,13,13,13,0,50,,,,,,,14 +11678,487,212,34,6,21,,R,14,0,39,,,,,,,3 +11679,487,219,27,25,16,,R,15,0,35,,,,,,,7 +11680,487,192,56,21,20,,R,16,0,29,,,,,,,5 +11681,487,213,45,32,22,,R,17,0,22,,,,,,,5 +11682,487,178,3,1,6,,R,18,0,19,,,,,,,3 +11683,487,110,1,8,23,,R,19,0,11,,,,,,,6 +11684,487,137,34,5,2,,R,20,0,10,,,,,,,3 +11685,487,177,56,20,11,,R,21,0,10,,,,,,,6 +11686,487,117,4,15,12,,R,22,0,2,,,,,,,8 +11687,487,119,21,29,4,,R,23,0,0,,,,,,,4 +11688,487,216,21,30,13,,R,24,0,0,,,,,,,4 +11689,487,206,37,18,0,,F,25,0,0,,,,,,,81 +11690,487,163,4,16,0,,F,26,0,0,,,,,,,81 +11691,487,194,37,17,0,,F,27,0,0,,,,,,,81 +11692,487,201,54,9,0,,F,28,0,0,,,,,,,81 +11693,487,175,55,33,0,,F,29,0,0,,,,,,,81 +11694,487,118,53,36,0,,F,30,0,0,,,,,,,81 +11695,487,205,53,35,0,,F,31,0,0,,,,,,,81 +11696,488,203,6,27,2,1,1,1,9,76,54:23.4,6863380,,,,,1 +11697,488,178,3,1,7,2,2,2,6,76,39.91,6903290,,,,,1 +11698,488,172,27,26,8,3,3,3,4,76,+1:29.24,6952620,,,,,1 +11699,488,202,6,28,17,4,4,4,3,75,,,,,,,11 +11700,488,158,25,3,15,5,5,5,2,74,,,,,,,12 +11701,488,176,57,14,19,6,6,6,1,74,,,,,,,12 +11702,488,175,55,33,16,7,7,7,0,72,,,,,,,14 +11703,488,137,34,5,1,,R,8,0,53,,,,,,,20 +11704,488,187,1,7,10,,R,9,0,52,,,,,,,5 +11705,488,105,25,4,20,,R,10,0,50,,,,,,,4 +11706,488,152,51,23,18,,R,11,0,50,,,,,,,4 +11707,488,117,4,15,9,,R,12,0,45,,,,,,,5 +11708,488,199,3,2,4,,R,13,0,33,,,,,,,6 +11709,488,173,32,11,6,,R,14,0,32,,,,,,,5 +11710,488,163,4,16,13,,R,15,0,32,,,,,,,20 +11711,488,119,21,29,5,,R,16,0,29,,,,,,,6 +11712,488,95,32,12,3,,R,17,0,15,,,,,,,22 +11713,488,216,21,30,14,,R,18,0,14,,,,,,,69 +11714,488,110,1,8,11,,R,19,0,0,,,,,,,4 +11715,488,207,51,22,12,,R,20,0,0,,,,,,,4 +11716,488,177,56,20,0,,F,21,0,0,,,,,,,81 +11717,488,219,27,25,0,,F,22,0,0,,,,,,,81 +11718,488,212,34,6,0,,F,23,0,0,,,,,,,81 +11719,488,192,56,21,0,,F,24,0,0,,,,,,,81 +11720,488,160,45,32,0,,F,25,0,0,,,,,,,81 +11721,488,213,45,31,0,,F,26,0,0,,,,,,,81 +11722,488,201,54,10,0,,F,27,0,0,,,,,,,81 +11723,488,206,37,18,0,,F,28,0,0,,,,,,,81 +11724,488,194,37,17,0,,F,29,0,0,,,,,,,81 +11725,488,205,53,35,0,,F,30,0,0,,,,,,,81 +11726,488,118,53,36,0,,F,31,0,0,,,,,,,81 +11727,489,203,6,27,7,1,1,1,9,80,46:35.0,6395010,,,,,1 +11728,489,172,27,26,1,2,2,2,6,80,0.22,6395230,,,,,1 +11729,489,187,1,7,4,3,3,3,4,80,0.58,6395590,,,,,1 +11730,489,199,3,2,3,4,4,4,3,80,1.01,6396020,,,,,1 +11731,489,173,32,11,10,5,5,5,2,80,1.24,6396250,,,,,1 +11732,489,95,32,12,11,6,6,6,1,80,28.58,6423590,,,,,1 +11733,489,178,3,1,2,7,7,7,0,80,56.58,6451590,,,,,1 +11734,489,207,51,22,8,8,8,8,0,80,+1:00.80,6455810,,,,,1 +11735,489,163,4,16,17,9,9,9,0,80,+1:07.08,6462090,,,,,1 +11736,489,152,51,23,6,10,10,10,0,80,+1:13.65,6468660,,,,,1 +11737,489,192,56,21,21,11,11,11,0,79,,,,,,,11 +11738,489,177,56,20,15,12,12,12,0,78,,,,,,,12 +11739,489,175,55,33,16,13,13,13,0,78,,,,,,,12 +11740,489,194,57,14,24,14,14,14,0,77,,,,,,,13 +11741,489,202,6,28,13,15,15,15,0,76,,,,,,,14 +11742,489,206,37,17,22,16,16,16,0,75,,,,,,,15 +11743,489,158,25,3,20,,N,17,0,62,,,,,,,62 +11744,489,219,27,25,19,,R,18,0,51,,,,,,,23 +11745,489,212,34,6,18,,R,19,0,46,,,,,,,6 +11746,489,216,21,30,23,,R,20,0,43,,,,,,,80 +11747,489,137,34,5,9,,R,21,0,43,,,,,,,3 +11748,489,117,4,15,5,,R,22,0,28,,,,,,,20 +11749,489,119,21,29,12,,R,23,0,21,,,,,,,23 +11750,489,110,1,8,14,,R,24,0,9,,,,,,,3 +11751,489,105,25,4,0,,F,25,0,0,,,,,,,81 +11752,489,213,45,31,0,,F,26,0,0,,,,,,,81 +11753,489,201,54,9,0,,F,27,0,0,,,,,,,81 +11754,489,205,53,35,0,,F,28,0,0,,,,,,,81 +11755,489,118,53,36,0,,F,29,0,0,,,,,,,81 +11756,489,220,45,32,0,,F,30,0,0,,,,,,,81 +11757,490,117,4,15,3,1,1,1,9,80,35:48.1,5748130,,,,,1 +11758,490,187,1,7,2,2,2,2,6,80,2.29,5750420,,,,,1 +11759,490,137,34,5,4,3,3,3,4,80,24.22,5772350,,,,,1 +11760,490,163,4,16,1,4,4,4,3,80,42.3,5790430,,,,,1 +11761,490,202,6,28,14,5,5,5,2,79,,,,,,,11 +11762,490,173,32,11,8,6,6,6,1,79,,,,,,,11 +11763,490,95,32,12,13,7,7,7,0,79,,,,,,,11 +11764,490,207,51,22,10,8,8,8,0,79,,,,,,,11 +11765,490,212,34,6,15,9,9,9,0,78,,,,,,,12 +11766,490,199,3,2,7,10,10,10,0,78,,,,,,,12 +11767,490,110,1,8,5,11,11,11,0,78,,,,,,,12 +11768,490,176,55,33,21,12,12,12,0,78,,,,,,,12 +11769,490,158,25,3,19,13,13,13,0,77,,,,,,,13 +11770,490,119,21,29,18,14,14,14,0,77,,,,,,,13 +11771,490,152,51,23,12,15,15,15,0,77,,,,,,,13 +11772,490,105,25,4,23,16,16,16,0,77,,,,,,,13 +11773,490,178,3,1,9,17,17,17,0,76,,,,,,,4 +11774,490,172,27,26,6,,R,18,0,57,,,,,,,22 +11775,490,206,37,17,20,,R,19,0,55,,,,,,,5 +11776,490,203,6,27,11,,R,20,0,41,,,,,,,10 +11777,490,175,27,25,16,,R,21,0,30,,,,,,,67 +11778,490,177,56,20,17,,R,22,0,11,,,,,,,22 +11779,490,194,57,14,22,,R,23,0,6,,,,,,,22 +11780,490,192,56,21,24,,W,24,0,0,,,,,,,54 +11781,490,216,21,30,0,,F,25,0,0,,,,,,,81 +11782,490,205,53,35,0,,F,26,0,0,,,,,,,81 +11783,490,201,54,9,0,,F,27,0,0,,,,,,,81 +11784,490,213,45,31,0,,F,28,0,0,,,,,,,81 +11785,490,118,53,36,0,,F,29,0,0,,,,,,,81 +11786,491,187,1,7,5,1,1,1,9,68,26:54.8,5214800,,,,,1 +11787,491,199,3,2,9,2,2,2,6,68,40.65,5255450,,,,,1 +11788,491,172,27,26,14,3,3,3,4,67,,,,,,,11 +11789,491,158,25,3,23,4,4,4,3,67,,,,,,,11 +11790,491,212,34,6,13,5,5,5,2,67,,,,,,,11 +11791,491,201,54,9,21,6,6,6,1,67,,,,,,,11 +11792,491,206,37,17,17,7,7,7,0,66,,,,,,,12 +11793,491,197,45,32,20,8,8,8,0,65,,,,,,,13 +11794,491,163,4,16,1,9,9,9,0,64,,,,,,,99 +11795,491,119,21,29,10,10,10,10,0,64,,,,,,,5 +11796,491,176,55,33,24,11,11,11,0,61,,,,,,,60 +11797,491,207,51,22,11,,R,12,0,59,,,,,,,37 +11798,491,177,56,20,14,,R,13,0,56,,,,,,,22 +11799,491,173,32,11,22,,D,14,0,25,,,,,,,2 +11800,491,117,4,15,2,,R,15,0,17,,,,,,,99 +11801,491,175,27,25,15,,R,16,0,15,,,,,,,8 +11802,491,202,6,28,4,,R,17,0,13,,,,,,,101 +11803,491,137,34,5,3,,R,18,0,11,,,,,,,27 +11804,491,152,51,23,12,,R,19,0,5,,,,,,,7 +11805,491,203,6,27,8,,R,20,0,4,,,,,,,20 +11806,491,178,3,1,7,,R,21,0,3,,,,,,,4 +11807,491,110,1,8,6,,R,22,0,3,,,,,,,20 +11808,491,105,25,4,19,,R,23,0,1,,,,,,,8 +11809,491,216,21,30,18,,R,24,0,8,,,,,,,20 +11810,491,192,56,21,0,,F,25,0,0,,,,,,,81 +11811,491,205,53,35,0,,F,26,0,0,,,,,,,81 +11812,491,95,32,12,0,,F,27,0,0,,,,,,,81 +11813,491,194,57,14,0,,F,28,0,0,,,,,,,81 +11814,491,118,53,36,0,,F,29,0,0,,,,,,,81 +11815,491,213,45,31,0,,F,30,0,0,,,,,,,81 +11816,492,137,34,5,6,1,1,1,9,45,25:55.6,5155600,,,,,1 +11817,492,117,4,15,1,2,2,2,6,45,11.52,5167120,,,,,1 +11818,492,172,27,26,7,3,3,3,4,45,+1:04.60,5220200,,,,,1 +11819,492,212,34,6,16,4,4,4,3,45,+1:39.69,5255290,,,,,1 +11820,492,158,25,3,18,5,5,5,2,45,+1:50.52,5266120,,,,,1 +11821,492,187,1,7,9,6,6,6,1,44,,,,,,,11 +11822,492,173,32,11,14,7,7,7,0,44,,,,,,,11 +11823,492,197,45,32,17,8,8,8,0,44,,,,,,,11 +11824,492,207,51,22,12,9,9,9,0,44,,,,,,,11 +11825,492,203,6,27,8,10,10,10,0,44,,,,,,,11 +11826,492,178,3,1,4,11,11,11,0,44,,,,,,,11 +11827,492,216,21,30,26,12,12,12,0,44,,,,,,,11 +11828,492,163,4,16,2,13,13,13,0,44,,,,,,,11 +11829,492,176,55,33,22,14,14,14,0,43,,,,,,,22 +11830,492,152,51,23,17,15,15,15,0,43,,,,,,,12 +11831,492,194,57,14,23,,N,16,0,39,,,,,,,62 +11832,492,201,54,9,28,,R,17,0,35,,,,,,,5 +11833,492,199,3,2,3,,R,18,0,27,,,,,,,5 +11834,492,119,21,29,13,,R,19,0,27,,,,,,,5 +11835,492,175,27,25,11,,R,20,0,27,,,,,,,7 +11836,492,206,37,17,21,,R,21,0,15,,,,,,,22 +11837,492,95,32,12,15,,R,22,0,12,,,,,,,95 +11838,492,110,1,8,10,,R,23,0,4,,,,,,,4 +11839,492,202,6,28,5,,R,24,0,1,,,,,,,10 +11840,492,177,56,20,0,,F,25,0,0,,,,,,,81 +11841,492,205,53,35,0,,F,26,0,0,,,,,,,81 +11842,492,213,45,31,0,,F,27,0,0,,,,,,,81 +11843,492,118,53,36,0,,F,28,0,0,,,,,,,81 +11844,492,105,25,4,0,,F,29,0,0,,,,,,,81 +11845,492,192,56,21,0,,F,30,0,0,,,,,,,81 +11846,493,172,27,26,4,1,1,1,9,53,27:36.5,5256470,,,,,1 +11847,493,163,4,16,1,2,2,2,6,53,5.17,5261640,,,,,1 +11848,493,137,34,5,7,3,3,3,4,53,7.34,5263810,,,,,1 +11849,493,178,3,1,6,4,4,4,3,53,12.04,5268510,,,,,1 +11850,493,199,3,2,5,5,5,5,2,53,31.85,5288320,,,,,1 +11851,493,187,1,7,12,6,6,6,1,53,+1:31.14,5347610,,,,,1 +11852,493,173,32,11,9,7,7,7,0,52,,,,,,,11 +11853,493,110,1,8,18,8,8,8,0,52,,,,,,,11 +11854,493,202,6,28,8,9,9,9,0,52,,,,,,,11 +11855,493,197,45,32,14,10,10,10,0,51,,,,,,,12 +11856,493,206,37,17,19,11,11,11,0,47,,,,,,,16 +11857,493,207,51,22,13,,R,12,0,46,,,,,,,5 +11858,493,201,54,9,21,,R,13,0,44,,,,,,,23 +11859,493,119,21,29,10,,R,14,0,43,,,,,,,5 +11860,493,194,57,14,20,,R,15,0,43,,,,,,,51 +11861,493,105,25,4,22,,R,16,0,40,,,,,,,6 +11862,493,152,51,23,16,,R,17,0,35,,,,,,,42 +11863,493,212,34,6,15,,R,18,0,32,,,,,,,8 +11864,493,216,21,30,24,,R,19,0,27,,,,,,,25 +11865,493,117,4,15,2,,R,20,0,26,,,,,,,22 +11866,493,175,27,25,17,,R,21,0,26,,,,,,,5 +11867,493,95,32,12,11,,R,22,0,23,,,,,,,5 +11868,493,203,6,27,3,,R,23,0,11,,,,,,,3 +11869,493,176,55,33,23,,R,24,0,0,,,,,,,99 +11870,493,158,25,3,0,,F,25,0,0,,,,,,,81 +11871,493,118,53,36,0,,F,26,0,0,,,,,,,81 +11872,493,205,53,35,0,,F,27,0,0,,,,,,,81 +11873,493,213,45,31,0,,F,28,0,0,,,,,,,81 +11874,494,117,4,15,1,1,1,1,9,72,40:22.4,6022430,,,,,1 +11875,494,137,34,5,3,2,2,2,6,72,8.24,6030670,,,,,1 +11876,494,178,3,1,4,3,3,3,4,72,35.5,6057930,,,,,1 +11877,494,212,34,6,15,4,4,4,3,71,,,,,,,11 +11878,494,173,32,11,9,5,5,5,2,71,,,,,,,11 +11879,494,194,57,14,24,6,6,6,1,70,,,,,,,12 +11880,494,216,21,30,21,7,7,7,0,69,,,,,,,13 +11881,494,176,55,33,20,8,8,8,0,69,,,,,,,13 +11882,494,105,25,4,25,9,9,9,0,68,,,,,,,5 +11883,494,201,54,9,23,10,10,10,0,68,,,,,,,14 +11884,494,207,51,22,7,,R,11,0,62,,,,,,,3 +11885,494,187,1,7,8,,R,12,0,50,,,,,,,80 +11886,494,158,25,3,22,,R,13,0,46,,,,,,,22 +11887,494,197,45,32,18,,R,14,0,29,,,,,,,7 +11888,494,163,4,16,2,,R,15,0,21,,,,,,,5 +11889,494,152,51,23,14,,R,16,0,19,,,,,,,27 +11890,494,172,27,26,6,,R,17,0,18,,,,,,,4 +11891,494,199,3,2,5,,R,18,0,18,,,,,,,4 +11892,494,119,21,29,10,,R,19,0,16,,,,,,,22 +11893,494,206,37,17,19,,R,20,0,5,,,,,,,22 +11894,494,202,6,28,12,,R,21,0,4,,,,,,,4 +11895,494,95,32,12,17,,R,22,0,1,,,,,,,5 +11896,494,175,27,25,11,,R,23,0,1,,,,,,,4 +11897,494,203,6,27,16,,R,24,0,0,,,,,,,4 +11898,494,110,1,8,0,,W,25,0,0,,,,,,,54 +11899,494,205,53,35,0,,F,26,0,0,,,,,,,81 +11900,494,177,56,20,0,,F,27,0,0,,,,,,,81 +11901,494,192,56,21,0,,F,28,0,0,,,,,,,81 +11902,494,213,45,31,0,,F,29,0,0,,,,,,,81 +11903,494,118,53,36,0,,F,30,0,0,,,,,,,81 +11904,495,117,4,15,3,1,1,1,9,52,26:36.9,5196897,,,,,1 +11905,495,178,3,1,5,2,2,2,6,52,22.175,5219072,,,,,1 +11906,495,199,3,2,2,3,3,3,4,52,50.587,5247484,,,,,1 +11907,495,173,32,11,11,4,4,4,3,52,+1:32.902,5289799,,,,,1 +11908,495,202,6,28,8,5,5,5,2,52,+1:34.522,5291419,,,,,1 +11909,495,137,34,5,6,6,6,6,1,51,,,,,,,5 +11910,495,110,1,8,16,7,7,7,0,51,,,,,,,29 +11911,495,152,51,23,10,8,8,8,0,50,,,,,,,12 +11912,495,197,45,32,18,9,9,9,0,50,,,,,,,12 +11913,495,205,53,35,23,10,10,10,0,49,,,,,,,13 +11914,495,207,51,22,13,,R,11,0,40,,,,,,,5 +11915,495,206,37,17,19,,R,12,0,36,,,,,,,6 +11916,495,175,27,25,15,,R,13,0,22,,,,,,,29 +11917,495,95,32,12,12,,R,14,0,21,,,,,,,22 +11918,495,187,1,7,7,,R,15,0,19,,,,,,,3 +11919,495,119,21,29,20,,R,16,0,18,,,,,,,6 +11920,495,105,25,4,22,,R,17,0,17,,,,,,,3 +11921,495,194,57,14,24,,R,18,0,13,,,,,,,20 +11922,495,163,4,16,1,,R,19,0,12,,,,,,,20 +11923,495,172,27,26,4,,R,20,0,11,,,,,,,29 +11924,495,158,25,3,17,,R,21,0,11,,,,,,,20 +11925,495,201,54,9,21,,R,22,0,10,,,,,,,20 +11926,495,203,6,27,9,,R,23,0,5,,,,,,,5 +11927,495,212,34,6,14,,R,24,0,1,,,,,,,10 +11928,495,176,55,33,0,,F,25,0,0,,,,,,,81 +11929,495,213,45,31,0,,F,26,0,0,,,,,,,81 +11930,495,118,53,36,0,,F,27,0,0,,,,,,,81 +11931,495,216,21,30,0,,F,28,0,0,,,,,,,81 +11932,495,177,56,20,0,,F,29,0,0,,,,,,,81 +11933,495,192,56,21,0,,F,30,0,0,,,,,,,81 +11934,496,172,27,26,10,1,1,1,9,63,01:25.2,7285200,,,,,1 +11935,496,187,1,7,9,2,2,2,6,63,6.23,7291430,,,,,1 +11936,496,203,6,27,11,3,3,3,4,63,+1:50.27,7395470,,,,,1 +11937,496,152,51,23,15,4,4,4,3,62,,,,,,,11 +11938,496,137,34,5,1,5,5,5,2,62,,,,,,,11 +11939,496,173,32,11,7,6,6,6,1,62,,,,,,,11 +11940,496,207,51,22,16,7,7,7,0,62,,,,,,,11 +11941,496,206,37,17,20,8,8,8,0,61,,,,,,,12 +11942,496,176,55,33,19,9,9,9,0,61,,,,,,,12 +11943,496,199,3,2,2,10,10,10,0,60,,,,,,,13 +11944,496,105,25,4,22,11,11,11,0,59,,,,,,,14 +11945,496,158,25,3,14,12,12,12,0,56,,,,,,,5 +11946,496,110,1,8,13,,R,13,0,51,,,,,,,20 +11947,496,117,4,15,4,,R,14,0,48,,,,,,,4 +11948,496,95,32,12,5,,R,15,0,45,,,,,,,4 +11949,496,201,54,9,21,,R,16,0,40,,,,,,,20 +11950,496,212,34,6,6,,R,17,0,35,,,,,,,20 +11951,496,197,45,32,23,,R,18,0,26,,,,,,,4 +11952,496,178,3,1,3,,R,19,0,24,,,,,,,64 +11953,496,202,6,28,12,,R,20,0,24,,,,,,,80 +11954,496,194,57,14,24,,R,21,0,8,,,,,,,20 +11955,496,175,27,25,17,,R,22,0,6,,,,,,,20 +11956,496,119,21,29,18,,R,23,0,6,,,,,,,20 +11957,496,163,4,16,8,,R,24,0,0,,,,,,,4 +11958,496,177,56,20,0,,F,25,0,0,,,,,,,81 +11959,496,192,56,21,0,,F,26,0,0,,,,,,,81 +11960,496,205,53,35,0,,F,27,0,0,,,,,,,81 +11961,496,198,21,30,0,,F,28,0,0,,,,,,,81 +11962,496,118,53,36,0,,F,29,0,0,,,,,,,81 +11963,496,213,45,31,0,,F,30,0,0,,,,,,,81 +11964,497,178,3,1,2,1,1,1,9,75,44:09.1,6249077,,,,,1 +11965,497,117,4,15,5,2,2,2,6,75,20.048,6269125,,,,,1 +11966,497,152,51,23,8,3,3,3,4,75,20.428,6269505,,,,,1 +11967,497,95,32,12,9,4,4,4,3,75,47.473,6296550,,,,,1 +11968,497,137,34,5,4,5,5,5,2,75,+1:16.438,6325515,,,,,1 +11969,497,172,27,26,12,6,6,6,1,75,+1:18.175,6327252,,,,,1 +11970,497,187,1,7,6,7,7,7,0,75,+1:18.497,6327574,,,,,1 +11971,497,199,3,2,1,8,8,8,0,74,,,,,,,11 +11972,497,202,6,28,18,9,9,9,0,73,,,,,,,12 +11973,497,177,56,20,20,10,10,10,0,73,,,,,,,12 +11974,497,119,21,29,11,11,11,11,0,71,,,,,,,14 +11975,497,110,1,8,14,12,12,12,0,69,,,,,,,16 +11976,497,105,25,4,17,13,13,13,0,67,,,,,,,5 +11977,497,194,57,14,24,,N,14,0,61,,,,,,,62 +11978,497,118,53,36,22,,R,15,0,43,,,,,,,6 +11979,497,207,51,22,10,,R,16,0,29,,,,,,,22 +11980,497,203,6,27,3,,D,17,0,22,,,,,,,2 +11981,497,212,34,6,16,,R,18,0,20,,,,,,,37 +11982,497,176,55,33,23,,R,19,0,19,,,,,,,22 +11983,497,158,25,3,19,,R,20,0,10,,,,,,,5 +11984,497,163,4,16,13,,R,21,0,10,,,,,,,10 +11985,497,175,27,25,7,,R,22,0,2,,,,,,,3 +11986,497,173,32,11,15,,R,23,0,2,,,,,,,47 +11987,497,197,45,32,21,,R,24,0,0,,,,,,,7 +11988,497,201,54,9,0,,F,25,0,0,,,,,,,81 +11989,497,192,56,21,0,,F,26,0,0,,,,,,,81 +11990,497,206,37,17,0,,F,27,0,0,,,,,,,81 +11991,497,198,21,30,0,,F,28,0,0,,,,,,,81 +11992,497,205,53,35,0,,F,29,0,0,,,,,,,81 +11993,497,213,45,31,0,,F,30,0,0,,,,,,,81 +11994,498,178,3,27,1,1,1,1,9,53,43:24.4,6204380,,,,,1 +11995,498,137,34,5,4,2,2,2,6,53,24.59,6228970,,,,,1 +11996,498,177,56,21,13,3,3,3,4,53,+1:18.64,6283020,,,,,1 +11997,498,206,25,4,22,4,4,4,3,53,+1:23.48,6287860,,,,,1 +11998,498,152,51,23,20,5,5,5,2,52,,,,,,,11 +11999,498,117,1,8,12,6,6,6,1,52,,,,,,,11 +12000,498,217,34,6,16,7,7,7,0,51,,,,,,,12 +12001,498,221,51,22,23,,R,8,0,46,,,,,,,5 +12002,498,222,6,1,11,,R,9,0,45,,,,,,,5 +12003,498,223,57,14,15,,N,10,0,44,,,,,,,62 +12004,498,224,56,20,24,,N,11,0,37,,,,,,,62 +12005,498,203,6,2,8,,R,12,0,36,,,,,,,3 +12006,498,172,27,26,2,,R,13,0,30,,,,,,,5 +12007,498,119,21,29,7,,R,14,0,27,,,,,,,5 +12008,498,176,54,9,21,,R,15,0,27,,,,,,,42 +12009,498,207,32,11,6,,R,16,0,20,,,,,,,69 +12010,498,200,21,30,14,,R,17,0,20,,,,,,,6 +12011,498,199,3,28,10,,R,18,0,12,,,,,,,5 +12012,498,173,32,12,5,,R,19,0,7,,,,,,,22 +12013,498,187,1,7,17,,R,20,0,5,,,,,,,6 +12014,498,219,4,15,9,,R,21,0,3,,,,,,,6 +12015,498,163,4,16,19,,R,22,0,2,,,,,,,22 +12016,498,202,27,25,3,,R,23,0,1,,,,,,,5 +12017,498,197,25,3,18,,R,24,0,1,,,,,,,4 +12018,498,225,58,18,0,,F,25,0,0,,,,,,,81 +12019,498,140,58,17,0,,F,26,0,0,,,,,,,81 +12020,498,136,54,10,0,,F,27,0,0,,,,,,,81 +12021,498,158,45,31,0,,F,28,0,0,,,,,,,81 +12022,499,163,4,16,6,1,1,1,9,40,40:01.3,6001330,,,,,1 +12023,499,173,32,12,7,2,2,2,6,40,21.86,6023190,,,,,1 +12024,499,178,3,27,10,3,3,3,4,40,+1:06.11,6067440,,,,,1 +12025,499,202,27,25,2,4,4,4,3,40,+1:40.13,6101460,,,,,1 +12026,499,117,1,8,13,5,5,5,2,40,+1:45.41,6106740,,,,,1 +12027,499,119,21,29,14,6,6,6,1,39,,,,,,,11 +12028,499,176,54,9,20,7,7,7,0,39,,,,,,,11 +12029,499,217,34,6,18,8,8,8,0,39,,,,,,,11 +12030,499,177,56,21,15,9,9,9,0,39,,,,,,,11 +12031,499,200,21,30,16,10,10,10,0,39,,,,,,,11 +12032,499,187,1,7,23,11,11,11,0,39,,,,,,,11 +12033,499,197,25,3,22,12,12,12,0,39,,,,,,,11 +12034,499,152,51,23,17,13,13,13,0,39,,,,,,,11 +12035,499,206,25,4,24,14,14,14,0,38,,,,,,,12 +12036,499,224,56,20,19,15,15,15,0,38,,,,,,,12 +12037,499,203,6,2,3,16,16,16,0,36,,,,,,,37 +12038,499,221,51,22,21,,R,17,0,33,,,,,,,10 +12039,499,219,4,15,1,,R,18,0,25,,,,,,,101 +12040,499,137,34,5,9,,R,19,0,14,,,,,,,22 +12041,499,172,27,26,5,,R,20,0,13,,,,,,,10 +12042,499,223,57,14,12,,R,21,0,13,,,,,,,5 +12043,499,222,6,1,8,,R,22,0,10,,,,,,,5 +12044,499,207,32,11,11,,R,23,0,1,,,,,,,20 +12045,499,199,3,28,4,,R,24,0,1,,,,,,,86 +12046,499,136,54,10,0,,F,25,0,0,,,,,,,81 +12047,499,225,58,18,0,,F,26,0,0,,,,,,,81 +12048,499,140,58,17,0,,F,27,0,0,,,,,,,81 +12049,499,158,45,31,0,,F,28,0,0,,,,,,,81 +12050,500,163,4,16,2,1,1,1,9,78,36:52.5,5812540,,,,,1 +12051,500,172,27,26,4,2,2,2,6,78,34.07,5846610,,,,,1 +12052,500,202,27,25,5,3,3,3,4,78,52.49,5865030,,,,,1 +12053,500,137,34,5,3,4,4,4,3,78,+1:01.02,5873560,,,,,1 +12054,500,199,3,28,6,5,5,5,2,77,,,,,,,11 +12055,500,200,21,30,19,6,6,6,1,77,,,,,,,11 +12056,500,197,25,3,13,7,7,7,0,77,,,,,,,11 +12057,500,224,56,20,18,8,8,8,0,77,,,,,,,11 +12058,500,223,57,14,20,9,9,9,0,77,,,,,,,11 +12059,500,217,34,6,17,10,10,10,0,77,,,,,,,11 +12060,500,187,1,7,21,11,11,11,0,76,,,,,,,12 +12061,500,207,32,11,15,12,12,12,0,76,,,,,,,12 +12062,500,209,58,17,24,13,13,13,0,70,,,,,,,22 +12063,500,152,51,23,12,,R,14,0,69,,,,,,,5 +12064,500,219,4,15,1,,R,15,0,61,,,,,,,29 +12065,500,206,25,4,16,,R,16,0,61,,,,,,,29 +12066,500,177,56,21,23,,R,17,0,58,,,,,,,3 +12067,500,221,51,22,7,,N,18,0,53,,,,,,,62 +12068,500,178,3,27,8,,R,19,0,34,,,,,,,6 +12069,500,203,6,2,10,,R,20,0,31,,,,,,,7 +12070,500,222,6,1,9,,R,21,0,14,,,,,,,5 +12071,500,119,21,29,11,,R,22,0,10,,,,,,,20 +12072,500,158,45,31,22,,R,23,0,8,,,,,,,20 +12073,500,173,32,12,14,,R,24,0,1,,,,,,,20 +12074,500,117,1,8,0,,W,25,0,0,,,,,,,3 +12075,500,176,54,9,0,,W,26,0,0,,,,,,,3 +12076,500,225,58,18,0,,F,27,0,0,,,,,,,81 +12077,500,136,54,10,0,,F,28,0,0,,,,,,,81 +12078,501,137,34,5,1,1,1,1,9,80,50:19.4,6619400,,,,,1 +12079,501,119,21,29,8,2,2,2,6,80,49.212,6668612,,,,,1 +12080,501,224,56,20,24,3,3,3,4,80,+1:18.563,6697963,,,,,1 +12081,501,187,1,7,21,4,4,4,3,79,,,,,,,11 +12082,501,222,6,1,16,5,5,5,2,79,,,,,,,11 +12083,501,202,27,25,9,6,6,6,1,79,,,,,,,11 +12084,501,200,21,30,17,7,7,7,0,79,,,,,,,11 +12085,501,206,25,4,14,8,8,8,0,79,,,,,,,11 +12086,501,163,4,16,2,9,9,9,0,78,,,,,,,12 +12087,501,219,4,15,11,10,10,10,0,71,,,,,,,19 +12088,501,177,56,21,22,,R,11,0,58,,,,,,,25 +12089,501,223,57,14,23,,R,12,0,50,,,,,,,3 +12090,501,152,51,23,6,,R,13,0,49,,,,,,,3 +12091,501,178,3,27,5,,R,14,0,47,,,,,,,3 +12092,501,203,6,2,10,,R,15,0,46,,,,,,,7 +12093,501,221,51,22,3,,R,16,0,40,,,,,,,22 +12094,501,172,27,26,13,,R,17,0,36,,,,,,,29 +12095,501,158,45,31,19,,R,18,0,11,,,,,,,7 +12096,501,199,3,28,7,,R,19,0,3,,,,,,,7 +12097,501,197,25,3,12,,R,20,0,3,,,,,,,3 +12098,501,173,32,12,20,,R,21,0,3,,,,,,,3 +12099,501,136,54,9,4,,R,22,0,0,,,,,,,7 +12100,501,207,32,11,15,,R,23,0,0,,,,,,,3 +12101,501,217,34,6,18,,R,24,0,0,,,,,,,3 +12102,501,225,58,18,0,,F,25,0,0,,,,,,,81 +12103,501,209,58,17,0,,F,26,0,0,,,,,,,81 +12104,501,226,1,8,0,,F,27,0,0,,,,,,,81 +12105,502,202,27,25,2,1,1,1,9,72,38:47.4,5927400,,,,,1 +12106,502,178,3,27,1,2,2,2,6,72,47.37,5974770,,,,,1 +12107,502,199,3,28,4,3,3,3,4,72,84.12,6011520,,,,,1 +12108,502,163,4,16,6,4,4,4,3,71,,,,,,,11 +12109,502,197,25,3,9,5,5,5,2,71,,,,,,,11 +12110,502,203,6,2,12,6,6,6,1,71,,,,,,,11 +12111,502,177,56,21,21,7,7,7,0,71,,,,,,,11 +12112,502,222,6,1,14,8,8,8,0,70,,,,,,,12 +12113,502,206,25,4,11,9,9,9,0,70,,,,,,,12 +12114,502,173,32,12,8,10,10,10,0,69,,,,,,,20 +12115,502,172,27,26,3,11,11,11,0,68,,,,,,,14 +12116,502,136,54,9,15,12,12,12,0,64,,,,,,,5 +12117,502,187,1,7,20,,N,13,0,61,,,,,,,62 +12118,502,119,21,29,16,,R,14,0,58,,,,,,,20 +12119,502,207,32,11,17,,R,15,0,41,,,,,,,6 +12120,502,221,51,22,10,,R,16,0,38,,,,,,,43 +12121,502,137,34,5,7,,R,17,0,32,,,,,,,20 +12122,502,117,1,8,19,,R,18,0,29,,,,,,,7 +12123,502,224,56,20,24,,R,19,0,16,,,,,,,10 +12124,502,227,57,14,23,,R,20,0,12,,,,,,,5 +12125,502,152,51,23,18,,R,21,0,11,,,,,,,22 +12126,502,217,34,6,22,,R,22,0,5,,,,,,,6 +12127,502,200,21,30,13,,R,23,0,1,,,,,,,20 +12128,502,219,4,15,5,,R,24,0,1,,,,,,,8 +12129,502,209,58,17,0,,F,25,0,0,,,,,,,81 +12130,502,225,58,18,0,,F,26,0,0,,,,,,,81 +12131,502,158,45,31,0,,F,27,0,0,,,,,,,81 +12132,503,199,3,28,2,1,1,1,9,76,55:34.4,6934365,,,,,1 +12133,503,172,27,26,5,2,2,2,6,76,+1:13.629,7007994,,,,,1 +12134,503,137,34,5,4,3,3,3,4,76,+1:17.726,7012091,,,,,1 +12135,503,200,21,30,15,4,4,4,3,75,,,,,,,11 +12136,503,203,6,2,6,5,5,5,2,75,,,,,,,11 +12137,503,224,56,20,18,6,6,6,1,74,,,,,,,12 +12138,503,207,32,11,19,7,7,7,0,73,,,,,,,13 +12139,503,119,21,29,11,8,8,8,0,73,,,,,,,13 +12140,503,173,32,12,14,9,9,9,0,68,,,,,,,3 +12141,503,136,54,9,13,,N,10,0,64,,,,,,,62 +12142,503,202,27,25,1,,R,11,0,54,,,,,,,3 +12143,503,163,4,16,20,,R,12,0,53,,,,,,,3 +12144,503,221,51,22,7,,R,13,0,50,,,,,,,5 +12145,503,222,6,1,17,,R,14,0,27,,,,,,,64 +12146,503,219,4,15,16,,R,15,0,25,,,,,,,6 +12147,503,178,3,27,3,,R,16,0,24,,,,,,,24 +12148,503,152,51,23,8,,R,17,0,0,,,,,,,3 +12149,503,197,25,3,9,,R,18,0,0,,,,,,,3 +12150,503,117,1,8,10,,R,19,0,0,,,,,,,3 +12151,503,206,25,4,12,,R,20,0,0,,,,,,,3 +12152,503,187,1,7,0,,F,21,0,0,,,,,,,81 +12153,503,158,45,31,0,,F,22,0,0,,,,,,,81 +12154,503,209,58,17,0,,F,23,0,0,,,,,,,81 +12155,503,177,56,21,0,,F,24,0,0,,,,,,,81 +12156,503,217,34,6,0,,F,25,0,0,,,,,,,81 +12157,503,227,57,14,0,,F,26,0,0,,,,,,,81 +12158,503,225,58,18,0,,F,27,0,0,,,,,,,81 +12159,504,178,3,27,4,1,1,1,9,54,32:43.4,5563400,,,,,1 +12160,504,202,27,25,3,2,2,2,6,54,4.52,5567920,,,,,1 +12161,504,172,27,26,1,3,3,3,4,54,30.26,5593660,,,,,1 +12162,504,137,34,5,8,4,4,4,3,54,+1:14.88,5638280,,,,,1 +12163,504,163,4,16,2,5,5,5,2,54,+1:16.15,5639550,,,,,1 +12164,504,199,3,28,5,6,6,6,1,54,+1:16.74,5640140,,,,,1 +12165,504,187,1,7,13,7,7,7,0,53,,,,,,,11 +12166,504,203,6,2,17,8,8,8,0,53,,,,,,,11 +12167,504,119,21,29,18,9,9,9,0,53,,,,,,,11 +12168,504,200,21,30,15,10,10,10,0,53,,,,,,,11 +12169,504,206,25,4,20,11,11,11,0,52,,,,,,,12 +12170,504,222,6,1,19,12,12,12,0,52,,,,,,,12 +12171,504,224,56,20,24,,R,13,0,50,,,,,,,5 +12172,504,197,25,3,16,,R,14,0,50,,,,,,,14 +12173,504,158,45,31,21,,R,15,0,43,,,,,,,5 +12174,504,176,54,9,11,,R,16,0,26,,,,,,,6 +12175,504,221,51,22,10,,R,17,0,25,,,,,,,64 +12176,504,207,32,11,12,,R,18,0,18,,,,,,,6 +12177,504,177,56,21,23,,R,19,0,8,,,,,,,20 +12178,504,152,51,23,9,,R,20,0,8,,,,,,,64 +12179,504,117,1,8,7,,R,21,0,6,,,,,,,7 +12180,504,173,32,12,14,,R,22,0,3,,,,,,,8 +12181,504,219,4,15,6,,R,23,0,0,,,,,,,7 +12182,504,217,34,6,22,,R,24,0,0,,,,,,,8 +12183,504,209,58,17,0,,F,25,0,0,,,,,,,81 +12184,504,136,57,14,0,,F,26,0,0,,,,,,,81 +12185,504,225,58,18,0,,F,27,0,0,,,,,,,81 +12186,505,178,3,27,3,1,1,1,9,76,34:49.2,5689228,,,,,1 +12187,505,137,34,5,5,2,2,2,6,76,11.007,5700235,,,,,1 +12188,505,199,3,28,4,3,3,3,4,76,13.285,5702513,,,,,1 +12189,505,206,25,4,10,4,4,4,3,75,,,,,,,11 +12190,505,197,25,3,11,5,5,5,2,75,,,,,,,11 +12191,505,117,1,8,7,6,6,6,1,75,,,,,,,11 +12192,505,212,34,6,17,7,7,7,0,74,,,,,,,12 +12193,505,187,1,7,12,8,8,8,0,74,,,,,,,5 +12194,505,119,21,29,21,9,9,9,0,73,,,,,,,13 +12195,505,222,6,1,23,10,10,10,0,73,,,,,,,13 +12196,505,211,3,50,18,11,11,11,0,73,,,,,,,13 +12197,505,224,56,20,22,12,12,12,0,72,,,,,,,14 +12198,505,200,21,30,24,13,13,13,0,69,,,,,,,17 +12199,505,163,4,16,16,,N,14,0,67,,,,,,,62 +12200,505,202,27,25,1,,R,15,0,63,,,,,,,27 +12201,505,176,54,9,15,,R,16,0,59,,,,,,,5 +12202,505,207,32,11,9,,R,17,0,57,,,,,,,6 +12203,505,152,51,23,6,,R,18,0,42,,,,,,,20 +12204,505,203,6,2,19,,R,19,0,35,,,,,,,5 +12205,505,172,27,26,2,,R,20,0,30,,,,,,,27 +12206,505,221,51,22,8,,R,21,0,27,,,,,,,5 +12207,505,158,45,31,20,,R,22,0,17,,,,,,,22 +12208,505,173,32,12,14,,R,23,0,16,,,,,,,22 +12209,505,219,4,15,13,,R,24,0,4,,,,,,,5 +12210,505,136,57,14,0,,F,25,0,0,,,,,,,81 +12211,505,177,56,21,0,,F,26,0,0,,,,,,,81 +12212,505,228,3,43,0,,F,27,0,0,,,,,,,81 +12213,506,172,27,26,5,1,1,1,9,45,23:59.7,5039730,,,,,1 +12214,506,199,3,28,4,2,2,2,6,45,3.19,5042920,,,,,1 +12215,506,178,3,27,1,3,3,3,4,45,43.53,5083260,,,,,1 +12216,506,137,34,5,6,4,4,4,3,45,44.48,5084210,,,,,1 +12217,506,152,51,23,19,5,5,5,2,45,+1:16.49,5116220,,,,,1 +12218,506,203,6,2,16,6,6,6,1,45,+1:28.72,5128450,,,,,1 +12219,506,207,32,11,9,7,7,7,0,45,+1:33.01,5132740,,,,,1 +12220,506,200,21,30,17,8,8,8,0,45,+1:47.75,5147480,,,,,1 +12221,506,119,21,29,10,9,9,9,0,44,,,,,,,11 +12222,506,206,25,4,22,10,10,10,0,44,,,,,,,11 +12223,506,117,1,8,14,11,11,11,0,44,,,,,,,11 +12224,506,176,54,9,13,12,12,12,0,44,,,,,,,11 +12225,506,222,6,1,21,13,13,13,0,44,,,,,,,11 +12226,506,136,57,14,24,14,14,14,0,44,,,,,,,11 +12227,506,197,25,3,23,15,15,15,0,44,,,,,,,11 +12228,506,173,32,12,11,16,16,16,0,43,,,,,,,67 +12229,506,187,1,7,20,,R,17,0,39,,,,,,,5 +12230,506,219,4,15,2,,R,18,0,27,,,,,,,5 +12231,506,163,4,16,3,,R,19,0,26,,,,,,,5 +12232,506,158,45,31,18,,R,20,0,23,,,,,,,6 +12233,506,202,27,25,7,,R,21,0,18,,,,,,,7 +12234,506,224,56,20,12,,R,22,0,18,,,,,,,23 +12235,506,177,56,21,8,,R,23,0,8,,,,,,,67 +12236,506,212,34,6,15,,R,24,0,4,,,,,,,6 +12237,506,211,3,50,0,,F,25,0,0,,,,,,,81 +12238,506,229,54,10,0,,F,26,0,0,,,,,,,81 +12239,507,219,4,15,2,1,1,1,9,54,26:15.7,5175730,,,,,1 +12240,507,178,3,27,3,2,2,2,6,54,0.82,5176550,,,,,1 +12241,507,199,3,28,4,3,3,3,4,54,19.36,5195090,,,,,1 +12242,507,172,27,26,5,4,4,4,3,54,42.02,5217750,,,,,1 +12243,507,137,34,5,7,5,5,5,2,54,+1:02.81,5238540,,,,,1 +12244,507,173,32,12,9,6,6,6,1,54,+1:02.81,5238540,,,,,1 +12245,507,117,1,8,12,7,7,7,0,54,+1:33.41,5269140,,,,,1 +12246,507,203,6,2,15,8,8,8,0,53,,,,,,,11 +12247,507,163,4,16,1,9,9,9,0,53,,,,,,,11 +12248,507,212,34,6,14,10,10,10,0,53,,,,,,,11 +12249,507,224,56,20,23,11,11,11,0,53,,,,,,,11 +12250,507,176,54,9,16,12,12,12,0,53,,,,,,,11 +12251,507,222,6,1,22,13,13,13,0,53,,,,,,,11 +12252,507,119,21,29,18,14,14,14,0,53,,,,,,,11 +12253,507,211,3,50,20,15,15,15,0,52,,,,,,,12 +12254,507,177,56,21,11,16,16,16,0,52,,,,,,,12 +12255,507,95,32,43,24,,R,17,0,40,,,,,,,5 +12256,507,187,1,7,21,,R,18,0,34,,,,,,,5 +12257,507,152,51,23,8,,R,19,0,28,,,,,,,36 +12258,507,202,27,25,13,,R,20,0,25,,,,,,,64 +12259,507,197,25,3,6,,R,21,0,25,,,,,,,10 +12260,507,158,45,31,19,,R,22,0,23,,,,,,,67 +12261,507,206,25,4,10,,R,23,0,12,,,,,,,23 +12262,507,207,32,11,17,,R,24,0,6,,,,,,,5 +12263,507,136,57,14,0,,F,25,0,0,,,,,,,81 +12264,507,200,21,30,0,,F,26,0,0,,,,,,,81 +12265,508,137,34,5,5,1,1,1,9,72,38:13.8,5893830,,,,,1 +12266,508,163,4,16,1,2,2,2,6,72,12.93,5906760,,,,,1 +12267,508,172,27,26,6,3,3,3,4,72,13.43,5907260,,,,,1 +12268,508,199,3,28,3,4,4,4,3,72,15.29,5909120,,,,,1 +12269,508,197,25,3,17,5,5,5,2,72,+1:00.02,5953850,,,,,1 +12270,508,117,1,8,18,6,6,6,1,72,+1:22.62,5976450,,,,,1 +12271,508,203,6,2,7,7,7,7,0,71,,,,,,,11 +12272,508,207,32,11,10,8,8,8,0,70,,,,,,,60 +12273,508,222,6,1,12,9,9,9,0,70,,,,,,,12 +12274,508,176,54,9,20,10,10,10,0,69,,,,,,,13 +12275,508,178,3,27,4,11,11,11,0,69,,,,,,,13 +12276,508,206,25,4,23,,R,12,0,60,,,,,,,23 +12277,508,152,51,23,8,,R,13,0,58,,,,,,,3 +12278,508,158,45,31,19,,R,14,0,38,,,,,,,5 +12279,508,119,21,29,14,,R,15,0,29,,,,,,,5 +12280,508,219,4,15,2,,R,16,0,23,,,,,,,64 +12281,508,230,51,22,22,,R,17,0,21,,,,,,,3 +12282,508,209,57,41,24,,R,18,0,21,,,,,,,3 +12283,508,187,1,7,9,,R,19,0,18,,,,,,,5 +12284,508,224,56,20,21,,R,20,0,16,,,,,,,23 +12285,508,95,32,43,16,,R,21,0,15,,,,,,,23 +12286,508,173,32,12,11,,R,22,0,2,,,,,,,3 +12287,508,202,27,25,15,,R,23,0,2,,,,,,,3 +12288,508,212,34,6,13,,R,24,0,1,,,,,,,6 +12289,508,211,3,50,0,,F,25,0,0,,,,,,,81 +12290,508,136,57,14,0,,F,26,0,0,,,,,,,81 +12291,508,191,21,30,0,,F,27,0,0,,,,,,,81 +12292,508,177,56,21,0,,F,28,0,0,,,,,,,81 +12293,508,200,21,30,0,,W,29,0,0,,,,,,,54 +12294,509,137,34,5,5,1,1,1,9,60,38:07.5,5887520,,,,,1 +12295,509,178,3,27,6,2,2,2,6,60,28.93,5916450,,,,,1 +12296,509,199,3,28,3,3,3,3,4,60,+1:13.67,5961190,,,,,1 +12297,509,173,32,12,18,4,4,4,3,59,,,,,,,11 +12298,509,177,56,21,11,5,5,5,2,59,,,,,,,11 +12299,509,202,27,25,13,6,6,6,1,59,,,,,,,11 +12300,509,117,1,8,24,7,7,7,0,59,,,,,,,11 +12301,509,222,6,1,16,8,8,8,0,59,,,,,,,11 +12302,509,172,27,26,20,9,9,9,0,59,,,,,,,11 +12303,509,163,4,16,1,10,10,10,0,58,,,,,,,12 +12304,509,211,3,50,21,11,11,11,0,58,,,,,,,12 +12305,509,158,45,31,17,12,12,12,0,57,,,,,,,13 +12306,509,197,25,3,12,13,13,13,0,54,,,,,,,23 +12307,509,219,4,15,2,,R,14,0,53,,,,,,,6 +12308,509,176,54,9,23,,R,15,0,45,,,,,,,5 +12309,509,207,32,11,10,,R,16,0,40,,,,,,,5 +12310,509,119,21,29,7,,R,17,0,38,,,,,,,5 +12311,509,206,25,4,22,,R,18,0,33,,,,,,,3 +12312,509,187,1,7,14,,R,19,0,20,,,,,,,67 +12313,509,212,34,6,9,,R,20,0,18,,,,,,,22 +12314,509,224,56,20,15,,R,21,0,17,,,,,,,3 +12315,509,203,6,2,8,,R,22,0,5,,,,,,,29 +12316,509,152,51,23,4,,R,23,0,5,,,,,,,29 +12317,509,230,51,22,19,,R,24,0,4,,,,,,,20 +12318,509,95,32,43,0,,F,25,0,0,,,,,,,81 +12319,509,181,21,30,0,,F,26,0,0,,,,,,,81 +12320,509,136,57,14,0,,F,27,0,0,,,,,,,81 +12321,509,209,57,41,0,,F,28,0,0,,,,,,,81 +12322,510,178,3,27,2,1,1,1,9,70,46:45.5,6405530,,,,,1 +12323,510,199,3,28,5,2,2,2,6,70,15.54,6421070,,,,,1 +12324,510,202,27,25,3,3,3,3,4,70,19.07,6424600,,,,,1 +12325,510,187,1,7,7,4,4,4,3,70,30.98,6436510,,,,,1 +12326,510,203,6,2,22,5,5,5,2,70,55.23,6460760,,,,,1 +12327,510,212,34,6,10,6,6,6,1,69,,,,,,,11 +12328,510,197,25,3,15,7,7,7,0,69,,,,,,,11 +12329,510,172,27,26,9,8,8,8,0,68,,,,,,,60 +12330,510,177,56,21,6,9,9,9,0,68,,,,,,,12 +12331,510,173,32,12,17,10,10,10,0,68,,,,,,,12 +12332,510,200,21,30,21,11,11,11,0,67,,,,,,,13 +12333,510,136,57,14,19,12,12,12,0,66,,,,,,,14 +12334,510,117,1,8,12,,R,13,0,41,,,,,,,22 +12335,510,163,4,16,23,,R,14,0,39,,,,,,,23 +12336,510,219,4,15,13,,R,15,0,25,,,,,,,22 +12337,510,137,34,5,1,,R,16,0,23,,,,,,,5 +12338,510,207,32,11,18,,R,17,0,11,,,,,,,5 +12339,510,110,51,22,8,,R,18,0,8,,,,,,,5 +12340,510,158,45,31,14,,R,19,0,8,,,,,,,69 +12341,510,224,56,20,16,,R,20,0,8,,,,,,,6 +12342,510,152,51,23,4,,R,21,0,7,,,,,,,83 +12343,510,119,21,29,11,,R,22,0,6,,,,,,,3 +12344,510,206,25,4,20,,R,23,0,0,,,,,,,3 +12345,510,191,25,43,24,,R,24,0,0,,,,,,,3 +12346,510,176,54,9,0,,F,25,0,0,,,,,,,81 +12347,510,222,6,1,0,,F,26,0,0,,,,,,,81 +12348,510,211,3,50,0,,F,27,0,0,,,,,,,81 +12349,510,214,3,51,0,,F,28,0,0,,,,,,,81 +12350,511,178,3,27,5,1,1,1,9,59,34:36.0,5676050,,,,,1 +12351,511,199,3,28,3,2,2,2,6,59,4.21,5680260,,,,,1 +12352,511,202,27,25,7,3,3,3,4,59,12.57,5688620,,,,,1 +12353,511,173,32,12,4,4,4,4,3,59,29.69,5705740,,,,,1 +12354,511,172,27,26,12,5,5,5,2,58,,,,,,,11 +12355,511,207,32,11,11,6,6,6,1,58,,,,,,,11 +12356,511,163,4,16,6,7,7,7,0,58,,,,,,,11 +12357,511,176,54,9,17,8,8,8,0,57,,,,,,,12 +12358,511,211,3,50,15,9,9,9,0,57,,,,,,,12 +12359,511,177,56,21,14,10,10,10,0,57,,,,,,,12 +12360,511,222,6,1,23,11,11,11,0,56,,,,,,,13 +12361,511,187,1,7,9,,N,12,0,50,,,,,,,19 +12362,511,203,6,2,18,,R,13,0,49,,,,,,,3 +12363,511,197,25,3,22,,N,14,0,40,,,,,,,62 +12364,511,200,21,30,24,,R,15,0,36,,,,,,,7 +12365,511,152,51,23,1,,R,16,0,31,,,,,,,10 +12366,511,137,34,5,2,,R,17,0,25,,,,,,,20 +12367,511,212,34,6,8,,R,18,0,20,,,,,,,5 +12368,511,158,45,31,16,,R,19,0,20,,,,,,,22 +12369,511,119,21,29,20,,R,20,0,16,,,,,,,20 +12370,511,136,57,14,25,,R,21,0,16,,,,,,,38 +12371,511,224,56,20,19,,R,22,0,15,,,,,,,22 +12372,511,206,25,4,21,,R,23,0,3,,,,,,,20 +12373,511,110,51,22,10,,R,24,0,2,,,,,,,3 +12374,511,117,1,8,13,,W,25,0,0,,,,,,,54 +12375,511,191,25,43,0,,F,26,0,0,,,,,,,81 +12376,511,209,3,51,0,,F,27,0,0,,,,,,,81 +12377,512,172,27,26,1,1,1,1,9,53,36:03.2,5763210,,,,,1 +12378,512,199,32,2,3,2,2,2,6,53,14.94,5778150,,,,,1 +12379,512,187,1,7,6,3,3,3,4,53,+1:28.81,5852020,,,,,1 +12380,512,221,27,25,2,4,4,4,3,53,+1:41.72,5864930,,,,,1 +12381,512,207,32,1,7,5,5,5,2,52,,,,,,,11 +12382,512,224,56,14,11,6,6,6,1,52,,,,,,,11 +12383,512,173,58,18,16,7,7,7,0,52,,,,,,,11 +12384,512,200,21,30,14,8,8,8,0,51,,,,,,,12 +12385,512,178,3,27,15,9,9,9,0,51,,,,,,,12 +12386,512,223,3,28,17,10,10,10,0,51,,,,,,,12 +12387,512,206,57,22,24,11,11,11,0,51,,,,,,,12 +12388,512,203,6,12,10,,R,12,0,48,,,,,,,5 +12389,512,212,32,31,19,,R,13,0,46,,,,,,,22 +12390,512,136,58,17,21,,R,14,0,42,,,,,,,7 +12391,512,231,59,20,18,,R,15,0,41,,,,,,,10 +12392,512,197,25,4,4,,R,16,0,15,,,,,,,5 +12393,512,219,4,15,12,,R,17,0,15,,,,,,,5 +12394,512,182,204,5,23,,R,18,0,8,,,,,,,69 +12395,512,163,4,16,25,,R,19,0,6,,,,,,,5 +12396,512,222,6,11,5,,R,20,0,0,,,,,,,4 +12397,512,202,25,3,8,,R,21,0,0,,,,,,,4 +12398,512,175,1,8,9,,R,22,0,0,,,,,,,4 +12399,512,137,204,6,20,,R,23,0,0,,,,,,,4 +12400,512,232,60,24,22,,R,24,0,0,,,,,,,4 +12401,512,119,21,29,13,,W,25,0,0,,,,,,,3 +12402,512,233,54,9,0,,W,26,0,0,,,,,,,54 +12403,513,172,27,26,1,1,1,1,9,40,40:09.6,6009640,,,,,1 +12404,513,221,27,25,2,2,2,2,6,40,5.28,6014920,,,,,1 +12405,513,199,32,2,3,3,3,3,4,40,44.14,6053780,,,,,1 +12406,513,202,25,3,8,4,4,4,3,40,+1:25.88,6095520,,,,,1 +12407,513,203,6,12,5,5,5,5,2,39,,,,,,,11 +12408,513,222,6,11,6,6,6,6,1,39,,,,,,,11 +12409,513,200,21,30,19,7,7,7,0,39,,,,,,,11 +12410,513,187,1,7,14,8,8,8,0,39,,,,,,,11 +12411,513,119,21,29,16,9,9,9,0,39,,,,,,,11 +12412,513,219,4,15,7,10,10,10,0,39,,,,,,,11 +12413,513,224,56,14,9,11,11,11,0,39,,,,,,,11 +12414,513,173,58,18,20,12,12,12,0,39,,,,,,,11 +12415,513,206,57,22,23,13,13,13,0,39,,,,,,,11 +12416,513,136,58,17,21,14,14,14,0,39,,,,,,,11 +12417,513,223,3,28,17,15,15,15,0,38,,,,,,,12 +12418,513,178,3,27,13,,R,16,0,33,,,,,,,69 +12419,513,233,54,9,24,,R,17,0,31,,,,,,,38 +12420,513,163,4,16,11,,R,18,0,28,,,,,,,20 +12421,513,231,59,20,10,,R,19,0,7,,,,,,,38 +12422,513,175,1,8,18,,R,20,0,7,,,,,,,4 +12423,513,182,204,5,12,,R,21,0,5,,,,,,,6 +12424,513,137,204,6,22,,R,22,0,5,,,,,,,3 +12425,513,207,32,1,4,,R,23,0,2,,,,,,,95 +12426,513,197,25,4,15,,R,24,0,0,,,,,,,10 +12427,513,212,32,31,0,,F,25,0,0,,,,,,,81 +12428,513,232,60,24,0,,F,26,0,0,,,,,,,81 +12429,514,203,6,12,3,1,1,1,9,78,41:50.0,6109960,,,,,1 +12430,514,222,6,11,2,2,2,2,6,78,3.42,6113380,,,,,1 +12431,514,197,25,4,9,3,3,3,4,78,22.11,6132070,,,,,1 +12432,514,207,32,1,8,4,4,4,3,78,27.88,6137840,,,,,1 +12433,514,199,32,2,11,5,5,5,2,78,+1:06.97,6176930,,,,,1 +12434,514,182,204,5,4,6,6,6,1,77,,,,,,,11 +12435,514,137,204,6,12,7,7,7,0,77,,,,,,,11 +12436,514,231,59,20,13,8,8,8,0,77,,,,,,,11 +12437,514,223,3,28,22,9,9,9,0,76,,,,,,,12 +12438,514,175,1,8,17,10,10,10,0,75,,,,,,,13 +12439,514,119,21,29,16,11,11,11,0,75,,,,,,,13 +12440,514,200,21,30,20,12,12,12,0,74,,,,,,,14 +12441,514,224,56,14,18,13,13,13,0,74,,,,,,,14 +12442,514,212,32,31,23,,R,14,0,71,,,,,,,5 +12443,514,163,4,16,10,,R,15,0,67,,,,,,,27 +12444,514,178,3,27,19,,R,16,0,63,,,,,,,22 +12445,514,187,1,7,14,,R,17,0,61,,,,,,,80 +12446,514,233,54,9,24,,R,18,0,57,,,,,,,3 +12447,514,219,4,15,1,,R,19,0,47,,,,,,,5 +12448,514,172,27,26,6,,R,20,0,45,,,,,,,3 +12449,514,202,25,3,7,,R,21,0,25,,,,,,,37 +12450,514,173,58,18,15,,R,22,0,16,,,,,,,3 +12451,514,221,27,25,5,,R,23,0,4,,,,,,,3 +12452,514,136,58,17,21,,R,24,0,2,,,,,,,3 +12453,514,206,57,22,0,,F,25,0,0,,,,,,,81 +12454,514,232,60,24,0,,F,26,0,0,,,,,,,81 +12455,515,203,6,12,1,1,1,1,9,80,50:25.4,6625400,,,,,1 +12456,515,222,6,11,3,2,2,2,6,80,29.38,6654780,,,,,1 +12457,515,178,3,27,10,3,3,3,4,80,59.69,6685090,,,,,1 +12458,515,207,32,1,6,4,4,4,3,80,+1:04.33,6689730,,,,,1 +12459,515,221,27,25,4,5,5,5,2,80,+1:23.52,6708920,,,,,1 +12460,515,197,25,4,7,6,6,6,1,79,,,,,,,11 +12461,515,173,58,18,20,7,7,7,0,78,,,,,,,12 +12462,515,137,204,6,12,8,8,8,0,78,,,,,,,12 +12463,515,200,21,30,13,9,9,9,0,78,,,,,,,12 +12464,515,202,25,3,17,,D,10,0,72,,,,,,,2 +12465,515,212,32,31,23,,R,11,0,71,,,,,,,3 +12466,515,206,57,22,24,,R,12,0,69,,,,,,,3 +12467,515,187,1,7,18,,R,13,0,62,,,,,,,98 +12468,515,233,54,9,21,,D,14,0,49,,,,,,,2 +12469,515,223,3,28,15,,R,15,0,48,,,,,,,5 +12470,515,136,58,17,14,,R,16,0,47,,,,,,,22 +12471,515,119,21,29,9,,R,17,0,40,,,,,,,23 +12472,515,199,32,2,2,,R,18,0,21,,,,,,,7 +12473,515,224,56,14,16,,R,19,0,19,,,,,,,7 +12474,515,232,60,24,22,,R,20,0,13,,,,,,,5 +12475,515,172,27,26,5,,R,21,0,8,,,,,,,23 +12476,515,231,59,20,8,,R,22,0,0,,,,,,,7 +12477,515,182,204,5,11,,R,23,0,0,,,,,,,3 +12478,515,175,1,8,19,,R,24,0,0,,,,,,,4 +12479,515,163,4,16,0,,W,25,0,0,,,,,,,54 +12480,515,219,4,15,0,,W,26,0,0,,,,,,,54 +12481,516,221,27,25,2,1,1,1,9,75,39:11.8,5951840,,,,,1 +12482,516,199,32,2,8,2,2,2,6,75,20.94,5972780,,,,,1 +12483,516,207,32,1,4,3,3,3,4,75,27.31,5979150,,,,,1 +12484,516,222,6,11,5,4,4,4,3,75,28.68,5980520,,,,,1 +12485,516,197,25,4,12,5,5,5,2,75,30.39,5982230,,,,,1 +12486,516,202,25,3,10,6,6,6,1,75,48.43,6000270,,,,,1 +12487,516,203,6,12,3,7,7,7,0,75,52.31,6004150,,,,,1 +12488,516,200,21,30,17,8,8,8,0,75,+1:14.84,6026680,,,,,1 +12489,516,163,4,16,11,9,9,9,0,74,,,,,,,11 +12490,516,119,21,29,16,10,10,10,0,74,,,,,,,11 +12491,516,224,56,14,19,11,11,11,0,74,,,,,,,11 +12492,516,136,58,17,24,12,12,12,0,73,,,,,,,12 +12493,516,175,1,8,20,13,13,13,0,72,,,,,,,13 +12494,516,233,54,9,21,14,14,14,0,69,,,,,,,16 +12495,516,182,204,5,6,,R,15,0,63,,,,,,,47 +12496,516,212,32,31,23,,R,16,0,58,,,,,,,5 +12497,516,178,3,27,13,,R,17,0,54,,,,,,,6 +12498,516,173,58,18,22,,R,18,0,52,,,,,,,5 +12499,516,223,3,28,14,,R,19,0,32,,,,,,,5 +12500,516,231,59,20,15,,R,20,0,26,,,,,,,23 +12501,516,219,4,15,9,,R,21,0,21,,,,,,,101 +12502,516,187,1,7,18,,R,22,0,21,,,,,,,5 +12503,516,172,27,26,1,,R,23,0,15,,,,,,,5 +12504,516,137,204,6,7,,R,24,0,15,,,,,,,98 +12505,516,206,57,22,0,,F,25,0,0,,,,,,,81 +12506,516,232,60,24,0,,F,26,0,0,,,,,,,81 +12507,516,234,61,36,0,,F,27,0,0,,,,,,,81 +12508,517,222,6,11,7,1,1,1,9,70,39:59.5,5999530,,,,,1 +12509,517,172,27,26,1,2,2,2,6,70,15.36,6014890,,,,,1 +12510,517,202,25,3,12,3,3,3,4,70,35.17,6034700,,,,,1 +12511,517,199,32,2,10,4,4,4,3,70,46.49,6046020,,,,,1 +12512,517,119,21,29,16,5,5,5,2,70,+1:04.31,6063840,,,,,1 +12513,517,187,1,7,19,6,6,6,1,70,+1:05.85,6065380,,,,,1 +12514,517,203,6,12,6,7,7,7,0,69,,,,,,,11 +12515,517,233,54,9,20,8,8,8,0,69,,,,,,,11 +12516,517,224,56,14,23,9,9,9,0,68,,,,,,,12 +12517,517,136,58,17,21,10,10,10,0,68,,,,,,,12 +12518,517,197,25,4,11,11,11,11,0,67,,,,,,,13 +12519,517,221,27,25,2,,R,12,0,46,,,,,,,3 +12520,517,231,59,20,9,,R,13,0,40,,,,,,,3 +12521,517,178,3,27,4,,R,14,0,39,,,,,,,10 +12522,517,207,32,1,5,,R,15,0,27,,,,,,,23 +12523,517,137,204,6,3,,R,16,0,23,,,,,,,5 +12524,517,182,204,5,13,,R,17,0,23,,,,,,,5 +12525,517,163,4,16,18,,R,18,0,22,,,,,,,101 +12526,517,152,51,35,14,,R,19,0,21,,,,,,,3 +12527,517,173,58,18,24,,R,20,0,21,,,,,,,3 +12528,517,200,21,30,22,,R,21,0,17,,,,,,,20 +12529,517,212,32,31,15,,R,22,0,13,,,,,,,7 +12530,517,219,4,15,17,,R,23,0,13,,,,,,,101 +12531,517,223,3,28,8,,R,24,0,1,,,,,,,3 +12532,517,175,1,8,0,,F,25,0,0,,,,,,,81 +12533,517,232,60,24,0,,F,26,0,0,,,,,,,81 +12534,517,206,57,22,0,,F,27,0,0,,,,,,,81 +12535,517,234,61,36,0,,F,28,0,0,,,,,,,81 +12536,518,222,6,11,1,1,1,1,9,76,55:22.5,6922480,,,,,1 +12537,518,223,3,28,16,2,2,2,6,76,0.44,6922920,,,,,1 +12538,518,199,32,2,11,3,3,3,4,76,8.57,6931050,,,,,1 +12539,518,187,1,7,14,4,4,4,3,76,41.31,6963790,,,,,1 +12540,518,221,27,25,3,5,5,5,2,75,,,,,,,5 +12541,518,200,21,30,8,6,6,6,1,69,,,,,,,17 +12542,518,137,204,6,18,,R,7,0,68,,,,,,,7 +12543,518,219,4,15,20,,N,8,0,68,,,,,,,18 +12544,518,172,27,26,5,,R,9,0,55,,,,,,,6 +12545,518,203,6,12,2,,R,10,0,54,,,,,,,7 +12546,518,178,3,27,9,,R,11,0,43,,,,,,,38 +12547,518,197,25,4,6,,R,12,0,34,,,,,,,22 +12548,518,233,54,9,12,,R,13,0,30,,,,,,,36 +12549,518,182,204,5,4,,R,14,0,21,,,,,,,3 +12550,518,202,25,3,7,,R,15,0,21,,,,,,,3 +12551,518,207,32,1,13,,R,16,0,21,,,,,,,22 +12552,518,224,56,14,17,,R,17,0,17,,,,,,,5 +12553,518,163,4,16,19,,R,18,0,8,,,,,,,3 +12554,518,231,59,20,10,,R,19,0,4,,,,,,,7 +12555,518,119,21,29,15,,R,20,0,4,,,,,,,22 +12556,518,173,58,18,0,,F,21,0,0,,,,,,,81 +12557,518,175,1,8,0,,F,22,0,0,,,,,,,81 +12558,518,136,58,17,0,,F,23,0,0,,,,,,,81 +12559,518,206,57,22,0,,F,24,0,0,,,,,,,81 +12560,518,234,60,24,0,,F,25,0,0,,,,,,,97 +12561,519,219,4,15,1,1,1,1,9,80,35:20.4,5720420,,,,,1 +12562,519,203,6,12,3,2,2,2,6,80,14.59,5735010,,,,,1 +12563,519,163,4,16,2,3,3,3,4,80,14.83,5735250,,,,,1 +12564,519,178,3,27,7,4,4,4,3,80,36.61,5757030,,,,,1 +12565,519,197,25,4,10,5,5,5,2,80,+1:04.51,5784930,,,,,1 +12566,519,223,3,28,9,6,6,6,1,80,+1:05.51,5785930,,,,,1 +12567,519,222,6,11,5,7,7,7,0,79,,,,,,,11 +12568,519,172,27,26,8,8,8,8,0,79,,,,,,,11 +12569,519,177,59,20,16,9,9,9,0,79,,,,,,,11 +12570,519,175,1,8,20,10,10,10,0,78,,,,,,,12 +12571,519,187,1,7,15,11,11,11,0,78,,,,,,,12 +12572,519,212,32,31,23,12,12,12,0,78,,,,,,,12 +12573,519,199,32,2,13,13,13,13,0,77,,,,,,,13 +12574,519,119,21,29,19,14,14,14,0,77,,,,,,,13 +12575,519,200,21,30,22,15,15,15,0,75,,,,,,,15 +12576,519,173,58,18,24,16,16,16,0,75,,,,,,,15 +12577,519,152,51,35,17,17,17,17,0,75,,,,,,,15 +12578,519,136,58,17,21,18,18,18,0,73,,,,,,,17 +12579,519,202,25,3,11,,R,19,0,71,,,,,,,22 +12580,519,224,56,14,18,,R,20,0,53,,,,,,,5 +12581,519,137,204,6,4,,R,21,0,52,,,,,,,3 +12582,519,207,32,1,12,,R,22,0,51,,,,,,,23 +12583,519,235,27,25,14,,R,23,0,45,,,,,,,5 +12584,519,182,204,5,6,,R,24,0,23,,,,,,,20 +12585,519,233,54,9,0,,W,25,0,0,,,,,,,54 +12586,519,236,57,22,0,,F,26,0,0,,,,,,,81 +12587,519,232,60,24,0,,F,27,0,0,,,,,,,81 +12588,520,223,3,28,4,1,1,1,9,68,26:11.2,5171170,,,,,1 +12589,520,163,4,16,5,2,2,2,6,68,24.28,5195450,,,,,1 +12590,520,197,25,4,16,3,3,3,4,67,,,,,,,11 +12591,520,187,1,7,7,4,4,4,3,67,,,,,,,11 +12592,520,222,6,11,11,5,5,5,2,67,,,,,,,11 +12593,520,235,27,25,17,6,6,6,1,67,,,,,,,11 +12594,520,175,1,8,18,7,7,7,0,66,,,,,,,60 +12595,520,199,32,2,8,8,8,8,0,66,,,,,,,12 +12596,520,212,32,31,26,9,9,9,0,66,,,,,,,12 +12597,520,202,25,3,15,10,10,10,0,66,,,,,,,12 +12598,520,136,58,17,21,11,11,11,0,65,,,,,,,13 +12599,520,173,58,18,12,12,12,12,0,65,,,,,,,13 +12600,520,236,57,22,23,13,13,13,0,65,,,,,,,13 +12601,520,203,6,12,13,14,14,14,0,63,,,,,,,69 +12602,520,119,21,29,19,,R,15,0,45,,,,,,,6 +12603,520,172,27,26,10,,R,16,0,44,,,,,,,5 +12604,520,177,59,20,14,,R,17,0,44,,,,,,,69 +12605,520,178,3,27,1,,R,18,0,38,,,,,,,103 +12606,520,200,21,30,20,,R,19,0,37,,,,,,,6 +12607,520,224,56,14,22,,R,20,0,25,,,,,,,5 +12608,520,219,4,15,2,,R,21,0,21,,,,,,,101 +12609,520,182,204,5,6,,R,22,0,12,,,,,,,23 +12610,520,207,32,1,9,,R,23,0,3,,,,,,,36 +12611,520,137,204,6,3,,R,24,0,1,,,,,,,20 +12612,520,233,54,9,0,,F,25,0,0,,,,,,,81 +12613,520,232,60,24,0,,F,26,0,0,,,,,,,81 +12614,521,178,3,27,2,1,1,1,9,45,24:48.8,5088830,,,,,1 +12615,521,223,3,28,6,2,2,2,6,45,2.91,5091740,,,,,1 +12616,521,172,27,26,3,3,3,3,4,45,18.39,5107220,,,,,1 +12617,521,222,6,11,5,4,4,4,3,45,31.2,5120030,,,,,1 +12618,521,187,1,7,12,5,5,5,2,45,+1:37.80,5186630,,,,,1 +12619,521,200,21,30,18,6,6,6,1,44,,,,,,,11 +12620,521,209,25,4,16,7,7,7,0,44,,,,,,,11 +12621,521,203,6,12,9,8,8,8,0,44,,,,,,,11 +12622,521,202,25,3,8,9,9,9,0,44,,,,,,,11 +12623,521,136,58,17,20,10,10,10,0,44,,,,,,,11 +12624,521,173,58,18,21,11,11,11,0,43,,,,,,,12 +12625,521,137,204,6,4,12,12,12,0,42,,,,,,,5 +12626,521,119,21,29,19,,R,13,0,34,,,,,,,27 +12627,521,175,1,8,15,,R,14,0,30,,,,,,,22 +12628,521,177,59,20,17,,R,15,0,29,,,,,,,5 +12629,521,182,204,5,7,,R,16,0,27,,,,,,,5 +12630,521,235,27,25,14,,R,17,0,24,,,,,,,27 +12631,521,212,32,31,24,,R,18,0,22,,,,,,,64 +12632,521,207,32,1,11,,R,19,0,16,,,,,,,7 +12633,521,163,4,16,10,,R,20,0,9,,,,,,,27 +12634,521,219,4,15,1,,R,21,0,7,,,,,,,20 +12635,521,224,56,14,22,,R,22,0,4,,,,,,,10 +12636,521,199,32,2,13,,R,23,0,1,,,,,,,3 +12637,521,233,54,9,23,,R,24,0,0,,,,,,,22 +12638,521,236,57,22,0,,F,25,0,0,,,,,,,81 +12639,521,232,60,24,0,,F,26,0,0,,,,,,,81 +12640,522,178,3,27,2,1,1,1,9,54,27:38.0,5258010,,,,,1 +12641,522,203,6,12,5,2,2,2,6,54,36.05,5294060,,,,,1 +12642,522,172,27,26,8,3,3,3,4,54,46.77,5304780,,,,,1 +12643,522,222,6,11,9,4,4,4,3,54,47.21,5305220,,,,,1 +12644,522,223,3,28,6,5,5,5,2,54,48.92,5306930,,,,,1 +12645,522,163,4,16,1,6,6,6,1,53,,,,,,,11 +12646,522,202,25,3,10,7,7,7,0,53,,,,,,,11 +12647,522,206,25,4,11,8,8,8,0,53,,,,,,,11 +12648,522,187,1,7,16,9,9,9,0,53,,,,,,,11 +12649,522,175,1,8,14,10,10,10,0,53,,,,,,,11 +12650,522,182,204,5,4,,R,11,0,45,,,,,,,5 +12651,522,236,57,22,24,,R,12,0,42,,,,,,,22 +12652,522,119,21,29,13,,R,13,0,34,,,,,,,22 +12653,522,173,58,18,22,,R,14,0,34,,,,,,,5 +12654,522,137,204,6,7,,R,15,0,32,,,,,,,5 +12655,522,233,54,9,18,,R,16,0,28,,,,,,,5 +12656,522,235,27,25,21,,R,17,0,26,,,,,,,5 +12657,522,199,32,2,17,,R,18,0,22,,,,,,,64 +12658,522,219,4,15,3,,R,19,0,16,,,,,,,6 +12659,522,177,59,20,19,,R,20,0,15,,,,,,,10 +12660,522,224,56,14,12,,R,21,0,15,,,,,,,23 +12661,522,136,58,17,23,,R,22,0,3,,,,,,,3 +12662,522,200,21,30,20,,R,23,0,1,,,,,,,5 +12663,522,207,32,1,15,,R,24,0,0,,,,,,,8 +12664,522,212,32,31,0,,F,25,0,0,,,,,,,81 +12665,522,232,60,24,0,,F,26,0,0,,,,,,,81 +12666,523,178,3,27,2,1,1,1,9,75,41:19.8,6079775,,,,,1 +12667,523,222,6,11,5,2,2,2,6,75,21.783,6101558,,,,,1 +12668,523,172,27,26,7,3,3,3,4,75,+1:03.253,6143028,,,,,1 +12669,523,137,204,6,11,4,4,4,3,74,,,,,,,11 +12670,523,235,27,25,20,5,5,5,2,74,,,,,,,11 +12671,523,200,21,30,18,6,6,6,1,73,,,,,,,12 +12672,523,212,32,31,24,7,7,7,0,73,,,,,,,12 +12673,523,202,25,3,10,,R,8,0,51,,,,,,,22 +12674,523,203,6,12,6,,R,9,0,49,,,,,,,27 +12675,523,173,58,18,22,,R,10,0,40,,,,,,,7 +12676,523,177,59,20,8,,R,11,0,33,,,,,,,5 +12677,523,219,4,15,4,,R,12,0,26,,,,,,,8 +12678,523,187,1,7,12,,R,13,0,22,,,,,,,5 +12679,523,197,25,4,16,,R,14,0,20,,,,,,,20 +12680,523,233,54,9,15,,R,15,0,19,,,,,,,7 +12681,523,136,58,17,23,,R,16,0,12,,,,,,,6 +12682,523,207,32,1,17,,R,17,0,9,,,,,,,22 +12683,523,119,21,29,19,,R,18,0,7,,,,,,,23 +12684,523,175,1,8,14,,R,19,0,6,,,,,,,5 +12685,523,182,204,5,9,,W,20,0,4,,,,,,,54 +12686,523,224,56,14,21,,R,21,0,2,,,,,,,10 +12687,523,199,32,2,13,,R,22,0,1,,,,,,,22 +12688,523,163,4,16,1,,R,23,0,1,,,,,,,22 +12689,523,223,3,28,3,,R,24,0,0,,,,,,,3 +12690,523,236,57,22,0,,F,25,0,0,,,,,,,81 +12691,523,232,60,24,0,,F,26,0,0,,,,,,,81 +12692,524,222,6,11,3,1,1,1,9,50,22:00.2,4920220,,,,,1 +12693,524,203,6,12,5,2,2,2,6,50,0.46,4920680,,,,,1 +12694,524,223,3,28,6,3,3,3,4,50,4.78,4925000,,,,,1 +12695,524,182,204,5,9,4,4,4,3,50,54.4,4974620,,,,,1 +12696,524,207,32,1,10,5,5,5,2,50,59.7,4979920,,,,,1 +12697,524,197,25,4,16,6,6,6,1,50,+1:01.55,4981770,,,,,1 +12698,524,199,32,2,13,7,7,7,0,50,+1:24.14,5004360,,,,,1 +12699,524,224,56,14,20,8,8,8,0,49,,,,,,,11 +12700,524,178,3,27,4,9,9,9,0,49,,,,,,,11 +12701,524,202,25,3,12,10,10,10,0,49,,,,,,,11 +12702,524,233,54,9,15,11,11,11,0,49,,,,,,,11 +12703,524,230,51,36,22,12,12,12,0,49,,,,,,,11 +12704,524,119,21,29,17,13,13,13,0,47,,,,,,,13 +12705,524,219,4,15,1,14,14,14,0,45,,,,,,,5 +12706,524,172,27,26,7,,R,15,0,41,,,,,,,5 +12707,524,177,59,20,23,,R,16,0,41,,,,,,,5 +12708,524,235,27,25,11,,R,17,0,40,,,,,,,5 +12709,524,173,58,18,24,,R,18,0,33,,,,,,,8 +12710,524,152,51,35,18,,R,19,0,28,,,,,,,20 +12711,524,163,4,16,2,,R,20,0,13,,,,,,,5 +12712,524,187,1,7,19,,R,21,0,13,,,,,,,3 +12713,524,175,1,8,14,,R,22,0,3,,,,,,,5 +12714,524,200,21,30,21,,R,23,0,3,,,,,,,22 +12715,524,137,204,6,8,,R,24,0,1,,,,,,,3 +12716,524,136,58,17,0,,F,25,0,0,,,,,,,81 +12717,524,176,57,22,0,,F,26,0,0,,,,,,,81 +12718,524,232,60,24,0,,F,27,0,0,,,,,,,81 +12719,524,212,62,31,0,,F,28,0,0,,,,,,,81 +12720,525,178,3,27,1,1,1,1,9,72,52:06.9,6726892,,,,,1 +12721,525,203,6,12,2,2,2,2,6,72,1.08,6727972,,,,,1 +12722,525,223,3,28,3,3,3,3,4,72,+1:13.656,6800548,,,,,1 +12723,525,222,6,11,9,4,4,4,3,71,,,,,,,11 +12724,525,202,25,3,6,5,5,5,2,71,,,,,,,11 +12725,525,187,1,7,17,6,6,6,1,70,,,,,,,12 +12726,525,217,182,5,17,7,7,7,0,68,,,,,,,14 +12727,525,224,56,14,15,8,8,8,0,67,,,,,,,15 +12728,525,136,58,17,21,9,9,9,0,67,,,,,,,15 +12729,525,207,32,1,10,10,10,10,0,66,,,,,,,60 +12730,525,137,182,6,4,,R,11,0,61,,,,,,,6 +12731,525,230,51,36,18,,R,12,0,52,,,,,,,69 +12732,525,235,27,25,16,,R,13,0,47,,,,,,,6 +12733,525,197,25,4,13,,R,14,0,33,,,,,,,5 +12734,525,206,25,33,24,,R,15,0,28,,,,,,,5 +12735,525,212,62,31,22,,R,16,0,26,,,,,,,83 +12736,525,219,4,15,7,,R,17,0,24,,,,,,,23 +12737,525,173,58,18,23,,R,18,0,24,,,,,,,80 +12738,525,199,32,2,11,,R,19,0,23,,,,,,,22 +12739,525,119,21,29,14,,R,20,0,20,,,,,,,20 +12740,525,175,1,8,20,,R,21,0,19,,,,,,,5 +12741,525,163,4,16,8,,R,22,0,14,,,,,,,3 +12742,525,233,54,9,12,,R,23,0,14,,,,,,,3 +12743,525,172,27,26,5,,R,24,0,10,,,,,,,5 +12744,525,200,21,30,0,,F,25,0,0,,,,,,,81 +12745,525,176,57,22,0,,F,26,0,0,,,,,,,81 +12746,525,177,59,20,0,,F,27,0,0,,,,,,,81 +12747,525,237,56,19,0,,F,28,0,0,,,,,,,81 +12748,525,232,60,24,0,,F,29,0,0,,,,,,,81 +12749,525,182,182,5,0,,W,30,0,0,,,,,,,54 +12750,526,203,6,12,3,1,1,1,9,59,52:17.7,6737734,,,,,1 +12751,526,163,4,16,7,2,2,2,6,59,48.787,6786521,,,,,1 +12752,526,202,25,3,10,3,3,3,4,59,53.199,6790933,,,,,1 +12753,526,173,58,18,20,4,4,4,3,59,+1:30.512,6828246,,,,,1 +12754,526,233,54,9,14,5,5,5,2,59,+1:41.259,6838993,,,,,1 +12755,526,187,1,7,13,6,6,6,1,58,,,,,,,11 +12756,526,224,56,14,23,7,7,7,0,54,,,,,,,15 +12757,526,137,182,6,2,,R,8,0,53,,,,,,,7 +12758,526,206,25,33,15,,R,9,0,52,,,,,,,20 +12759,526,222,6,11,16,,R,10,0,48,,,,,,,27 +12760,526,119,21,29,19,,R,11,0,44,,,,,,,22 +12761,526,178,3,27,1,,R,12,0,36,,,,,,,36 +12762,526,176,57,22,21,,R,13,0,32,,,,,,,5 +12763,526,223,3,28,5,,R,14,0,29,,,,,,,3 +12764,526,217,182,5,9,,R,15,0,25,,,,,,,20 +12765,526,219,4,15,8,,R,16,0,24,,,,,,,5 +12766,526,177,59,20,12,,R,17,0,20,,,,,,,3 +12767,526,175,1,8,22,,R,18,0,20,,,,,,,5 +12768,526,197,25,4,11,,R,19,0,18,,,,,,,3 +12769,526,207,32,1,17,,R,20,0,16,,,,,,,6 +12770,526,199,32,2,6,,R,21,0,6,,,,,,,20 +12771,526,172,27,26,4,,R,22,0,3,,,,,,,20 +12772,526,235,27,25,24,,R,23,0,2,,,,,,,20 +12773,526,152,51,35,18,,R,24,0,0,,,,,,,20 +12774,526,230,51,36,0,,F,25,0,0,,,,,,,81 +12775,526,200,21,30,0,,F,26,0,0,,,,,,,81 +12776,526,136,58,17,0,,F,27,0,0,,,,,,,81 +12777,526,212,62,31,0,,F,28,0,0,,,,,,,81 +12778,526,237,56,19,0,,F,29,0,0,,,,,,,81 +12779,526,232,60,24,0,,F,30,0,0,,,,,,,81 +12780,527,207,32,5,1,1,1,1,9,52,37:04.5,5824470,,,,,1 +12781,527,182,34,1,5,2,2,2,6,52,13.21,5837680,,,,,1 +12782,527,221,25,4,10,3,3,3,4,52,13.64,5838110,,,,,1 +12783,527,231,1,7,6,4,4,4,3,52,16.05,5840520,,,,,1 +12784,527,238,32,6,3,5,5,5,2,52,+1:14.85,5899320,,,,,1 +12785,527,175,1,8,9,6,6,6,1,52,+1:19.90,5904370,,,,,1 +12786,527,199,6,11,2,7,7,7,0,52,+1:22.60,5907070,,,,,1 +12787,527,203,6,12,7,8,8,8,0,52,+1:38.88,5923350,,,,,1 +12788,527,224,56,14,17,9,9,9,0,52,+1:40.60,5925070,,,,,1 +12789,527,222,59,20,15,10,10,10,0,52,+1:43.50,5927970,,,,,1 +12790,527,200,54,9,13,11,11,11,0,52,+1:49.07,5933540,,,,,1 +12791,527,197,54,10,11,12,12,12,0,51,,,,,,,11 +12792,527,239,1,30,24,13,13,13,0,51,,,,,,,11 +12793,527,202,25,3,23,14,14,14,0,51,,,,,,,11 +12794,527,223,58,17,16,15,15,15,0,51,,,,,,,11 +12795,527,172,27,26,8,16,16,16,0,50,,,,,,,5 +12796,527,233,58,16,18,17,17,17,0,50,,,,,,,12 +12797,527,230,63,19,12,18,18,18,0,50,,,,,,,12 +12798,527,187,34,2,4,,R,19,0,41,,,,,,,5 +12799,527,178,3,27,14,,R,20,0,36,,,,,,,69 +12800,527,240,57,22,21,,R,21,0,35,,,,,,,99 +12801,527,241,57,23,22,,R,22,0,28,,,,,,,5 +12802,527,232,60,37,20,,R,23,0,9,,,,,,,24 +12803,527,211,63,18,19,,R,24,0,4,,,,,,,25 +12804,527,212,32,25,0,,F,25,0,0,,,,,,,81 +12805,527,158,55,32,0,,F,26,0,0,,,,,,,81 +12806,527,242,64,24,0,,F,27,0,0,,,,,,,81 +12807,528,199,6,11,4,1,1,1,9,63,49:59.9,6599860,,,,,1 +12808,528,224,56,14,7,2,2,2,6,63,49.13,6648990,,,,,1 +12809,528,182,34,1,10,3,3,3,4,63,57.02,6656880,,,,,1 +12810,528,207,32,5,3,4,4,4,3,63,+1:33.12,6692980,,,,,1 +12811,528,223,58,17,15,5,5,5,2,62,,,,,,,11 +12812,528,202,25,3,19,6,6,6,1,62,,,,,,,11 +12813,528,200,54,9,20,7,7,7,0,62,,,,,,,11 +12814,528,187,34,2,21,8,8,8,0,61,,,,,,,12 +12815,528,172,27,26,14,9,9,9,0,61,,,,,,,12 +12816,528,119,21,36,18,10,10,10,0,59,,,,,,,14 +12817,528,178,3,27,8,11,11,11,0,58,,,,,,,15 +12818,528,212,32,25,22,,R,12,0,40,,,,,,,68 +12819,528,203,6,12,6,,R,13,0,35,,,,,,,20 +12820,528,175,1,8,5,,R,14,0,34,,,,,,,20 +12821,528,231,1,7,2,,R,15,0,25,,,,,,,20 +12822,528,233,58,16,9,,R,16,0,25,,,,,,,69 +12823,528,222,59,20,12,,R,17,0,16,,,,,,,3 +12824,528,238,32,6,1,,R,18,0,15,,,,,,,4 +12825,528,240,57,22,23,,R,19,0,13,,,,,,,23 +12826,528,239,1,30,13,,R,20,0,11,,,,,,,25 +12827,528,221,25,4,11,,R,21,0,8,,,,,,,3 +12828,528,211,63,18,24,,R,22,0,5,,,,,,,3 +12829,528,241,57,23,17,,R,23,0,0,,,,,,,7 +12830,528,197,54,10,16,,W,24,0,0,,,,,,,54 +12831,528,232,60,37,0,,F,25,0,0,,,,,,,81 +12832,528,158,55,32,0,,F,26,0,0,,,,,,,81 +12833,528,230,63,19,0,,F,27,0,0,,,,,,,81 +12834,528,242,64,24,0,,F,28,0,0,,,,,,,81 +12835,529,238,32,6,12,1,1,1,9,78,42:15.8,6135767,,,,,1 +12836,529,221,25,4,11,2,2,2,6,78,0.466,6136233,,,,,1 +12837,529,187,34,2,10,3,3,3,4,78,4.442,6140209,,,,,1 +12838,529,178,3,27,18,4,4,4,3,78,30.986,6166753,,,,,1 +12839,529,172,27,26,13,5,5,5,2,78,+1:09.218,6204985,,,,,1 +12840,529,202,25,3,14,6,6,6,1,77,,,,,,,11 +12841,529,207,32,5,2,7,7,7,0,77,,,,,,,11 +12842,529,197,54,10,17,8,8,8,0,77,,,,,,,11 +12843,529,243,21,36,22,9,9,9,0,77,,,,,,,11 +12844,529,212,32,25,21,10,10,10,0,77,,,,,,,11 +12845,529,239,1,30,20,11,11,11,0,76,,,,,,,12 +12846,529,230,63,19,19,12,12,12,0,76,,,,,,,12 +12847,529,119,21,35,7,,R,13,0,63,,,,,,,5 +12848,529,222,59,20,5,,R,14,0,59,,,,,,,20 +12849,529,175,1,8,4,,R,15,0,56,,,,,,,3 +12850,529,203,6,12,8,,R,16,0,55,,,,,,,44 +12851,529,199,6,11,9,,R,17,0,55,,,,,,,20 +12852,529,182,34,1,1,,R,18,0,52,,,,,,,5 +12853,529,211,63,18,23,,R,19,0,52,,,,,,,5 +12854,529,200,54,9,15,,R,20,0,43,,,,,,,5 +12855,529,232,60,37,26,,R,21,0,39,,,,,,,22 +12856,529,219,4,15,6,,R,22,0,38,,,,,,,5 +12857,529,177,55,32,24,,R,23,0,15,,,,,,,8 +12858,529,224,56,14,16,,R,24,0,9,,,,,,,7 +12859,529,158,64,24,25,,R,25,0,8,,,,,,,44 +12860,529,231,1,7,3,,R,26,0,5,,,,,,,5 +12861,529,163,65,31,0,,F,27,0,0,,,,,,,81 +12862,529,223,58,17,0,,F,28,0,0,,,,,,,81 +12863,529,241,57,23,0,,F,29,0,0,,,,,,,81 +12864,529,233,58,16,0,,F,30,0,0,,,,,,,81 +12865,530,199,6,11,1,1,1,1,9,80,52:01.3,6721301,,,,,1 +12866,530,207,32,5,4,2,2,2,6,80,11.061,6732362,,,,,1 +12867,530,221,25,4,12,3,3,3,4,80,28.951,6750252,,,,,1 +12868,530,238,32,6,6,4,4,4,3,80,45.603,6766904,,,,,1 +12869,530,172,27,26,14,5,5,5,2,80,+1:22.884,6804185,,,,,1 +12870,530,119,21,35,9,6,6,6,1,79,,,,,,,11 +12871,530,178,3,27,8,7,7,7,0,79,,,,,,,11 +12872,530,224,56,14,15,8,8,8,0,79,,,,,,,11 +12873,530,243,21,36,18,9,9,9,0,79,,,,,,,11 +12874,530,223,58,17,20,10,10,10,0,79,,,,,,,11 +12875,530,197,54,10,19,11,11,11,0,75,,,,,,,15 +12876,530,175,1,8,11,12,12,12,0,74,,,,,,,3 +12877,530,222,59,20,10,,R,13,0,59,,,,,,,3 +12878,530,230,63,19,17,,R,14,0,50,,,,,,,7 +12879,530,219,4,15,13,,R,15,0,43,,,,,,,101 +12880,530,203,6,12,2,,R,16,0,38,,,,,,,3 +12881,530,182,34,1,3,,R,17,0,27,,,,,,,80 +12882,530,202,25,3,22,,R,18,0,25,,,,,,,6 +12883,530,232,60,37,21,,R,19,0,17,,,,,,,6 +12884,530,200,54,9,16,,R,20,0,11,,,,,,,23 +12885,530,187,34,2,5,,R,21,0,9,,,,,,,6 +12886,530,231,1,7,7,,R,22,0,5,,,,,,,3 +12887,530,211,63,18,0,,W,23,0,0,,,,,,,3 +12888,530,233,58,16,0,,W,24,0,0,,,,,,,3 +12889,530,239,1,30,0,,F,25,0,0,,,,,,,81 +12890,530,241,57,22,0,,F,26,0,0,,,,,,,81 +12891,530,177,55,32,0,,F,27,0,0,,,,,,,97 +12892,530,212,32,25,0,,F,28,0,0,,,,,,,97 +12893,530,240,58,39,0,,F,29,0,0,,,,,,,97 +12894,530,206,64,24,0,,F,30,0,0,,,,,,,97 +12895,531,221,25,4,5,1,1,1,9,75,55:14.7,6914660,,,,,1 +12896,531,182,34,1,3,2,2,2,6,75,22.45,6937110,,,,,1 +12897,531,222,59,20,9,3,3,3,4,75,32.29,6946950,,,,,1 +12898,531,187,34,2,2,4,4,4,3,75,33.53,6948190,,,,,1 +12899,531,202,25,3,13,5,5,5,2,75,+1:08.06,6982720,,,,,1 +12900,531,119,21,35,14,6,6,6,1,75,+1:08.77,6983430,,,,,1 +12901,531,175,1,8,11,7,7,7,0,74,,,,,,,11 +12902,531,199,6,11,1,8,8,8,0,74,,,,,,,11 +12903,531,224,56,14,20,9,9,9,0,74,,,,,,,11 +12904,531,219,4,15,12,10,10,10,0,71,,,,,,,14 +12905,531,207,32,5,4,11,11,11,0,69,,,,,,,16 +12906,531,203,6,12,8,,R,12,0,62,,,,,,,3 +12907,531,238,32,6,7,,R,13,0,56,,,,,,,6 +12908,531,231,1,7,6,,R,14,0,43,,,,,,,64 +12909,531,243,21,36,19,,R,15,0,38,,,,,,,100 +12910,531,178,3,27,10,,R,16,0,29,,,,,,,44 +12911,531,235,57,22,16,,R,17,0,27,,,,,,,23 +12912,531,233,58,16,17,,R,18,0,24,,,,,,,3 +12913,531,172,27,26,15,,R,19,0,13,,,,,,,6 +12914,531,211,63,18,18,,R,20,0,8,,,,,,,7 +12915,531,200,54,9,0,,F,21,0,0,,,,,,,81 +12916,531,223,58,17,0,,F,22,0,0,,,,,,,81 +12917,531,197,54,10,0,,F,23,0,0,,,,,,,81 +12918,531,230,63,19,0,,F,24,0,0,,,,,,,81 +12919,531,177,55,32,0,,F,25,0,0,,,,,,,97 +12920,531,206,64,24,0,,F,26,0,0,,,,,,,97 +12921,531,163,65,31,0,,F,27,0,0,,,,,,,97 +12922,531,212,32,25,0,,F,28,0,0,,,,,,,97 +12923,531,239,1,30,0,,F,29,0,0,,,,,,,97 +12924,531,232,60,37,0,,F,30,0,0,,,,,,,97 +12925,532,207,32,5,1,1,1,1,9,70,39:52.0,5992020,,,,,1 +12926,532,238,32,6,7,2,2,2,6,70,9.9,6001920,,,,,1 +12927,532,199,6,11,2,3,3,3,4,70,24.34,6016360,,,,,1 +12928,532,203,6,12,4,4,4,4,3,70,47.04,6039060,,,,,1 +12929,532,172,27,26,14,5,5,5,2,69,,,,,,,3 +12930,532,202,25,3,23,6,6,6,1,69,,,,,,,11 +12931,532,239,1,30,24,7,7,7,0,69,,,,,,,11 +12932,532,152,1,33,21,8,8,8,0,69,,,,,,,11 +12933,532,163,65,31,19,9,9,9,0,68,,,,,,,12 +12934,532,178,3,27,11,10,10,10,0,68,,,,,,,12 +12935,532,200,54,9,16,11,11,11,0,68,,,,,,,12 +12936,532,235,57,22,22,12,12,12,0,64,,,,,,,16 +12937,532,230,63,19,12,13,13,13,0,63,,,,,,,5 +12938,532,233,58,16,10,,R,14,0,56,,,,,,,20 +12939,532,219,4,15,20,,N,15,0,56,,,,,,,62 +12940,532,222,59,20,5,,R,16,0,53,,,,,,,20 +12941,532,221,25,4,13,,R,17,0,51,,,,,,,6 +12942,532,223,58,17,18,,R,18,0,40,,,,,,,7 +12943,532,119,21,35,8,,R,19,0,31,,,,,,,22 +12944,532,243,21,36,17,,R,20,0,26,,,,,,,20 +12945,532,187,34,2,9,,R,21,0,18,,,,,,,3 +12946,532,182,34,1,3,,R,22,0,0,,,,,,,3 +12947,532,231,1,7,6,,R,23,0,0,,,,,,,3 +12948,532,224,56,14,15,,R,24,0,0,,,,,,,3 +12949,532,211,63,18,0,,F,25,0,0,,,,,,,81 +12950,532,206,64,24,0,,F,26,0,0,,,,,,,81 +12951,532,177,55,32,0,,F,27,0,0,,,,,,,81 +12952,532,244,54,10,0,,F,28,0,0,,,,,,,81 +12953,532,212,32,25,0,,F,29,0,0,,,,,,,97 +12954,532,232,60,37,0,,F,30,0,0,,,,,,,97 +12955,533,207,32,5,1,1,1,1,9,75,41:47.1,6107060,,,,,1 +12956,533,238,32,6,2,2,2,2,6,75,19.56,6126620,,,,,1 +12957,533,172,27,26,10,3,3,3,4,75,37.24,6144300,,,,,1 +12958,533,222,59,20,9,4,4,4,3,75,+1:00.06,6167120,,,,,1 +12959,533,187,34,2,7,5,5,5,2,75,+1:05.93,6172990,,,,,1 +12960,533,231,1,7,4,6,6,6,1,74,,,,,,,11 +12961,533,230,63,19,16,7,7,7,0,74,,,,,,,11 +12962,533,178,3,27,18,8,8,8,0,74,,,,,,,11 +12963,533,200,54,9,17,9,9,9,0,74,,,,,,,11 +12964,533,203,6,12,5,10,10,10,0,74,,,,,,,11 +12965,533,211,63,18,23,11,11,11,0,73,,,,,,,12 +12966,533,202,25,3,13,12,12,12,0,71,,,,,,,14 +12967,533,219,4,15,11,13,13,13,0,71,,,,,,,14 +12968,533,243,21,36,19,14,14,14,0,71,,,,,,,14 +12969,533,223,58,17,22,15,15,15,0,67,,,,,,,106 +12970,533,235,57,22,21,,R,16,0,64,,,,,,,5 +12971,533,224,56,14,15,,R,17,0,62,,,,,,,37 +12972,533,199,6,11,3,,R,18,0,57,,,,,,,3 +12973,533,182,34,1,6,,R,19,0,56,,,,,,,5 +12974,533,221,25,4,12,,R,20,0,51,,,,,,,5 +12975,533,233,58,16,24,,R,21,0,45,,,,,,,22 +12976,533,119,21,35,8,,R,22,0,21,,,,,,,5 +12977,533,212,32,25,20,,R,23,0,21,,,,,,,43 +12978,533,175,1,8,14,,R,24,0,16,,,,,,,20 +12979,533,232,60,37,0,,F,25,0,0,,,,,,,81 +12980,533,239,1,30,0,,F,26,0,0,,,,,,,81 +12981,533,208,1,28,0,,F,27,0,0,,,,,,,81 +12982,533,244,54,10,0,,F,28,0,0,,,,,,,81 +12983,533,177,55,32,0,,F,29,0,0,,,,,,,97 +12984,534,182,34,1,3,1,1,1,9,70,41:00.6,6060606,,,,,1 +12985,534,119,21,35,5,2,2,2,6,70,34.019,6094625,,,,,1 +12986,534,238,32,6,4,3,3,3,4,70,34.105,6094711,,,,,1 +12987,534,175,1,8,15,4,4,4,3,69,,,,,,,11 +12988,534,223,58,17,16,5,5,5,2,69,,,,,,,11 +12989,534,224,56,14,13,6,6,6,1,69,,,,,,,11 +12990,534,172,27,26,11,7,7,7,0,69,,,,,,,11 +12991,534,231,1,7,14,8,8,8,0,69,,,,,,,11 +12992,534,203,6,12,7,9,9,9,0,69,,,,,,,11 +12993,534,199,6,11,8,10,10,10,0,69,,,,,,,11 +12994,534,233,58,16,20,11,11,11,0,68,,,,,,,12 +12995,534,212,32,25,21,12,12,12,0,68,,,,,,,12 +12996,534,200,54,9,19,13,13,13,0,68,,,,,,,12 +12997,534,243,21,36,24,14,14,14,0,67,,,,,,,13 +12998,534,177,54,10,23,15,15,15,0,63,,,,,,,17 +12999,534,232,60,37,22,,N,16,0,62,,,,,,,18 +13000,534,207,32,5,1,,R,17,0,46,,,,,,,5 +13001,534,178,3,27,9,,R,18,0,46,,,,,,,36 +13002,534,221,25,4,12,,R,19,0,42,,,,,,,22 +13003,534,219,4,15,10,,R,20,0,28,,,,,,,5 +13004,534,187,34,2,2,,R,21,0,19,,,,,,,20 +13005,534,222,59,20,6,,R,22,0,16,,,,,,,25 +13006,534,202,25,3,17,,R,23,0,8,,,,,,,3 +13007,534,230,63,19,18,,R,24,0,7,,,,,,,3 +13008,534,211,63,18,0,,F,25,0,0,,,,,,,81 +13009,534,239,1,30,0,,F,26,0,0,,,,,,,81 +13010,534,235,57,22,0,,F,27,0,0,,,,,,,81 +13011,535,207,32,5,2,1,1,1,9,54,38:51.9,5931920,,,,,1 +13012,535,238,32,6,5,2,2,2,6,54,2.93,5934850,,,,,1 +13013,535,231,1,7,4,3,3,3,4,54,19.8,5951720,,,,,1 +13014,535,187,34,2,1,4,4,4,3,54,36.88,5968800,,,,,1 +13015,535,178,3,27,14,5,5,5,2,54,41.81,5973730,,,,,1 +13016,535,222,59,20,7,6,6,6,1,54,54.53,5986450,,,,,1 +13017,535,172,27,26,10,7,7,7,0,54,54.74,5986660,,,,,1 +13018,535,119,21,35,12,8,8,8,0,54,+1:24.88,6016800,,,,,1 +13019,535,175,1,8,6,9,9,9,0,54,+1:27.06,6018980,,,,,1 +13020,535,202,25,3,16,10,10,10,0,54,+1:29.98,6021900,,,,,1 +13021,535,233,58,16,20,11,11,11,0,53,,,,,,,11 +13022,535,203,6,12,9,12,12,12,0,53,,,,,,,11 +13023,535,200,54,9,25,13,13,13,0,53,,,,,,,11 +13024,535,163,65,31,18,14,14,14,0,53,,,,,,,11 +13025,535,243,21,36,21,15,15,15,0,53,,,,,,,11 +13026,535,177,54,10,26,16,16,16,0,52,,,,,,,12 +13027,535,230,63,19,19,17,17,17,0,52,,,,,,,12 +13028,535,199,6,11,8,18,18,18,0,49,,,,,,,15 +13029,535,239,1,30,24,,R,19,0,45,,,,,,,5 +13030,535,224,56,14,15,,R,20,0,43,,,,,,,22 +13031,535,211,63,18,23,,R,21,0,40,,,,,,,5 +13032,535,152,1,33,22,,R,22,0,28,,,,,,,5 +13033,535,182,34,1,3,,R,23,0,10,,,,,,,5 +13034,535,221,25,4,13,,R,24,0,10,,,,,,,5 +13035,535,223,58,17,17,,R,25,0,4,,,,,,,10 +13036,535,219,4,15,11,,R,26,0,1,,,,,,,5 +13037,535,232,60,37,0,,F,27,0,0,,,,,,,81 +13038,535,206,57,22,0,,F,28,0,0,,,,,,,81 +13039,535,212,32,25,0,,F,29,0,0,,,,,,,81 +13040,536,199,6,11,8,1,1,1,9,76,42:12.4,6132390,,,,,1 +13041,536,182,34,1,4,2,2,2,6,76,1.23,6133620,,,,,1 +13042,536,187,34,2,9,3,3,3,4,76,37.25,6169640,,,,,1 +13043,536,221,25,4,10,4,4,4,3,76,+1:13.27,6205660,,,,,1 +13044,536,233,58,16,18,5,5,5,2,75,,,,,,,11 +13045,536,175,1,8,20,6,6,6,1,75,,,,,,,11 +13046,536,152,1,33,16,7,7,7,0,75,,,,,,,11 +13047,536,239,1,30,24,8,8,8,0,75,,,,,,,11 +13048,536,230,63,19,25,9,9,9,0,75,,,,,,,11 +13049,536,172,27,26,7,10,10,10,0,73,,,,,,,13 +13050,536,200,54,9,26,,N,11,0,65,,,,,,,45 +13051,536,177,54,10,22,,R,12,0,59,,,,,,,22 +13052,536,223,58,17,17,,R,13,0,49,,,,,,,6 +13053,536,219,4,15,12,,R,14,0,46,,,,,,,101 +13054,536,119,21,35,5,,R,15,0,40,,,,,,,22 +13055,536,202,25,3,19,,R,16,0,40,,,,,,,6 +13056,536,222,59,20,3,,R,17,0,36,,,,,,,6 +13057,536,224,56,14,11,,R,18,0,32,,,,,,,5 +13058,536,232,60,37,23,,R,19,0,32,,,,,,,69 +13059,536,206,57,22,15,,R,20,0,30,,,,,,,36 +13060,536,207,32,5,2,,R,21,0,28,,,,,,,5 +13061,536,178,3,27,6,,R,22,0,26,,,,,,,7 +13062,536,203,6,12,13,,R,23,0,19,,,,,,,7 +13063,536,212,32,25,21,,R,24,0,15,,,,,,,6 +13064,536,231,1,7,14,,R,25,0,7,,,,,,,3 +13065,536,238,32,6,1,,R,26,0,6,,,,,,,69 +13066,536,211,63,18,0,,F,27,0,0,,,,,,,81 +13067,536,243,21,36,0,,F,28,0,0,,,,,,,81 +13068,536,209,57,23,0,,F,29,0,0,,,,,,,81 +13069,536,245,1,40,0,,F,30,0,0,,,,,,,81 +13070,537,207,32,5,1,1,1,1,9,45,28:00.9,5280900,,,,,1 +13071,537,222,59,20,4,2,2,2,6,45,15.35,5296250,,,,,1 +13072,537,172,27,26,7,3,3,3,4,45,28.01,5308910,,,,,1 +13073,537,224,56,14,10,4,4,4,3,45,36.88,5317780,,,,,1 +13074,537,202,25,3,16,5,5,5,2,45,57.26,5338160,,,,,1 +13075,537,212,32,25,18,6,6,6,1,45,+1:37.86,5378760,,,,,1 +13076,537,187,34,2,5,7,7,7,0,45,+1:39.53,5380430,,,,,1 +13077,537,203,6,12,15,8,8,8,0,45,+1:56.87,5397770,,,,,1 +13078,537,119,21,35,14,9,9,9,0,44,,,,,,,11 +13079,537,177,59,32,19,10,10,10,0,42,,,,,,,13 +13080,537,229,57,23,17,11,11,11,0,41,,,,,,,5 +13081,537,243,21,36,23,,D,12,0,42,,,,,,,2 +13082,537,238,32,6,2,,R,13,0,36,,,,,,,6 +13083,537,231,1,7,8,,D,14,0,34,,,,,,,2 +13084,537,178,3,27,6,,R,15,0,31,,,,,,,69 +13085,537,137,57,22,21,,R,16,0,31,,,,,,,5 +13086,537,230,63,19,20,,R,17,0,24,,,,,,,69 +13087,537,175,1,8,11,,R,18,0,16,,,,,,,3 +13088,537,199,6,11,12,,R,19,0,14,,,,,,,69 +13089,537,182,34,1,3,,R,20,0,11,,,,,,,5 +13090,537,219,4,15,9,,R,21,0,5,,,,,,,5 +13091,537,200,54,9,22,,R,22,0,1,,,,,,,3 +13092,537,233,58,16,24,,R,23,0,1,,,,,,,3 +13093,537,221,25,4,13,,R,24,0,0,,,,,,,3 +13094,537,223,58,17,0,,F,25,0,0,,,,,,,81 +13095,537,197,54,10,0,,F,26,0,0,,,,,,,81 +13096,537,211,63,18,0,,F,27,0,0,,,,,,,81 +13097,537,232,60,37,0,,F,28,0,0,,,,,,,81 +13098,537,163,65,31,0,,F,29,0,0,,,,,,,97 +13099,537,239,1,30,0,,F,30,0,0,,,,,,,97 +13100,538,238,32,6,1,1,1,1,9,54,41:21.6,6081570,,,,,1 +13101,538,221,25,4,14,2,2,2,6,54,47.44,6129010,,,,,1 +13102,538,203,6,12,11,3,3,3,4,54,+1:39.76,6181330,,,,,1 +13103,538,224,56,14,6,4,4,4,3,53,,,,,,,11 +13104,538,172,27,26,5,5,5,5,2,53,,,,,,,11 +13105,538,230,63,19,21,6,6,6,1,53,,,,,,,11 +13106,538,187,34,2,10,7,7,7,0,53,,,,,,,11 +13107,538,239,1,30,17,8,8,8,0,52,,,,,,,12 +13108,538,163,65,31,26,9,9,9,0,52,,,,,,,12 +13109,538,223,58,17,22,,N,10,0,50,,,,,,,17 +13110,538,177,59,32,25,,N,11,0,49,,,,,,,17 +13111,538,206,57,22,19,,D,12,0,41,,,,,,,2 +13112,538,175,1,8,14,,R,13,0,40,,,,,,,3 +13113,538,233,58,16,23,,R,14,0,33,,,,,,,3 +13114,538,219,4,15,3,,R,15,0,31,,,,,,,6 +13115,538,199,6,11,12,,D,16,0,28,,,,,,,2 +13116,538,182,34,1,4,,R,17,0,27,,,,,,,3 +13117,538,202,25,3,9,,R,18,0,20,,,,,,,3 +13118,538,231,1,7,8,,R,19,0,7,,,,,,,3 +13119,538,178,3,27,15,,R,20,0,7,,,,,,,3 +13120,538,119,21,35,16,,R,21,0,7,,,,,,,3 +13121,538,229,57,23,24,,R,22,0,7,,,,,,,3 +13122,538,212,32,25,18,,R,23,0,4,,,,,,,3 +13123,538,137,1,29,20,,R,24,0,4,,,,,,,3 +13124,538,222,59,20,7,,R,25,0,3,,,,,,,3 +13125,538,207,32,5,2,,R,26,0,0,,,,,,,3 +13126,538,232,60,37,0,,F,27,0,0,,,,,,,81 +13127,538,200,54,9,0,,F,28,0,0,,,,,,,81 +13128,538,211,63,18,0,,F,29,0,0,,,,,,,81 +13129,538,246,54,10,0,,F,30,0,0,,,,,,,81 +13130,538,243,21,36,0,,F,31,0,0,,,,,,,97 +13131,539,207,32,5,1,1,1,1,9,75,41:04.2,6064230,,,,,1 +13132,539,238,32,6,2,2,2,2,6,75,0.32,6064550,,,,,1 +13133,539,182,34,1,3,3,3,3,4,75,12.21,6076440,,,,,1 +13134,539,187,34,2,8,4,4,4,3,75,20.92,6085150,,,,,1 +13135,539,224,56,14,10,5,5,5,2,75,21.5,6085730,,,,,1 +13136,539,203,6,12,5,6,6,6,1,75,45.95,6110180,,,,,1 +13137,539,199,6,11,4,7,7,7,0,75,+1:00.52,6124750,,,,,1 +13138,539,172,27,26,6,8,8,8,0,74,,,,,,,11 +13139,539,175,1,8,14,9,9,9,0,74,,,,,,,11 +13140,539,231,1,7,7,10,10,10,0,74,,,,,,,11 +13141,539,212,32,25,20,11,11,11,0,74,,,,,,,11 +13142,539,222,59,20,15,12,12,12,0,73,,,,,,,12 +13143,539,152,1,33,19,,R,13,0,60,,,,,,,20 +13144,539,233,58,16,18,,R,14,0,56,,,,,,,7 +13145,539,163,65,31,23,,R,15,0,40,,,,,,,83 +13146,539,232,60,37,26,,R,16,0,40,,,,,,,5 +13147,539,230,63,19,22,,D,17,0,37,,,,,,,2 +13148,539,219,4,15,9,,R,18,0,35,,,,,,,5 +13149,539,239,1,30,21,,R,19,0,35,,,,,,,5 +13150,539,177,59,32,24,,R,20,0,21,,,,,,,3 +13151,539,178,3,27,11,,R,21,0,17,,,,,,,37 +13152,539,137,1,29,25,,R,22,0,16,,,,,,,7 +13153,539,221,25,4,12,,R,23,0,13,,,,,,,5 +13154,539,206,57,22,16,,R,24,0,10,,,,,,,7 +13155,539,119,21,35,13,,R,25,0,0,,,,,,,3 +13156,539,202,25,3,17,,R,26,0,0,,,,,,,3 +13157,539,211,63,18,0,,W,27,0,0,,,,,,,54 +13158,539,223,58,17,0,,F,28,0,0,,,,,,,81 +13159,539,247,54,10,0,,F,29,0,0,,,,,,,81 +13160,539,200,54,9,0,,F,30,0,0,,,,,,,81 +13161,539,229,57,23,0,,F,31,0,0,,,,,,,97 +13162,539,240,58,39,0,,F,32,0,0,,,,,,,97 +13163,539,243,21,36,0,,F,33,0,0,,,,,,,97 +13164,540,182,34,1,4,1,1,1,9,40,07:04.5,4024540,,,,,1 +13165,540,187,34,2,7,2,2,2,6,40,1.48,4026020,,,,,1 +13166,540,199,6,11,11,3,3,3,4,40,20.47,4045010,,,,,1 +13167,540,172,27,26,8,4,4,4,3,40,37.53,4062070,,,,,1 +13168,540,175,1,8,19,5,5,5,2,40,40.39,4064930,,,,,1 +13169,540,207,32,5,1,6,6,6,1,40,46.33,4070870,,,,,1 +13170,540,203,6,12,2,7,7,7,0,40,48.48,4073020,,,,,1 +13171,540,224,56,14,13,8,8,8,0,40,55.24,4079780,,,,,1 +13172,540,137,1,29,24,9,9,9,0,40,+1:06.83,4091370,,,,,1 +13173,540,206,57,22,18,10,10,10,0,40,+1:09.11,4093650,,,,,1 +13174,540,221,25,4,16,11,11,11,0,40,+1:16.57,4101110,,,,,1 +13175,540,222,59,20,9,12,12,12,0,39,,,,,,,11 +13176,540,178,3,27,6,13,13,13,0,39,,,,,,,11 +13177,540,152,1,33,20,14,14,14,0,39,,,,,,,11 +13178,540,223,58,17,15,,N,15,0,33,,,,,,,17 +13179,540,119,21,35,12,,R,16,0,28,,,,,,,5 +13180,540,231,1,7,10,,R,17,0,19,,,,,,,99 +13181,540,232,60,37,22,,R,18,0,14,,,,,,,5 +13182,540,219,4,15,3,,R,19,0,6,,,,,,,5 +13183,540,238,32,6,5,,R,20,0,0,,,,,,,3 +13184,540,202,25,3,14,,R,21,0,0,,,,,,,3 +13185,540,233,58,16,17,,R,22,0,0,,,,,,,3 +13186,540,239,1,30,21,,R,23,0,0,,,,,,,3 +13187,540,230,63,19,23,,R,24,0,0,,,,,,,3 +13188,540,212,32,25,0,,F,25,0,0,,,,,,,81 +13189,540,229,54,10,0,,F,26,0,0,,,,,,,81 +13190,540,247,54,9,0,,F,27,0,0,,,,,,,81 +13191,540,248,63,18,0,,F,28,0,0,,,,,,,81 +13192,540,229,57,23,0,,F,29,0,0,,,,,,,97 +13193,540,177,59,32,0,,F,30,0,0,,,,,,,97 +13194,540,243,21,36,0,,F,31,0,0,,,,,,,97 +13195,540,244,60,38,0,,F,32,0,0,,,,,,,97 +13196,541,199,6,11,2,1,1,1,9,59,40:48.8,6048800,,,,,1 +13197,541,178,3,27,3,2,2,2,6,59,19.739,6068539,,,,,1 +13198,541,222,59,20,11,3,3,3,4,59,45.701,6094501,,,,,1 +13199,541,219,4,15,9,4,4,4,3,59,+1:25.007,6133807,,,,,1 +13200,541,224,56,14,13,5,5,5,2,59,+1:28.089,6136889,,,,,1 +13201,541,175,1,8,18,6,6,6,1,59,+1:50.210,6159010,,,,,1 +13202,541,231,1,7,6,7,7,7,0,58,,,,,,,11 +13203,541,206,57,22,19,8,8,8,0,58,,,,,,,11 +13204,541,163,65,31,21,9,9,9,0,58,,,,,,,11 +13205,541,202,25,3,16,10,10,10,0,58,,,,,,,11 +13206,541,172,27,26,10,11,11,11,0,58,,,,,,,11 +13207,541,249,59,21,20,12,12,12,0,58,,,,,,,11 +13208,541,239,57,23,24,13,13,13,0,58,,,,,,,11 +13209,541,223,58,17,17,14,14,14,0,56,,,,,,,13 +13210,541,197,32,55,8,15,15,15,0,55,,,,,,,60 +13211,541,243,21,36,22,16,16,16,0,54,,,,,,,15 +13212,541,232,60,37,26,,R,17,0,46,,,,,,,6 +13213,541,247,54,9,25,,R,18,0,43,,,,,,,44 +13214,541,182,34,1,5,,R,19,0,28,,,,,,,5 +13215,541,207,32,5,1,,R,20,0,27,,,,,,,5 +13216,541,187,34,2,7,,R,21,0,25,,,,,,,5 +13217,541,221,25,4,12,,R,22,0,23,,,,,,,36 +13218,541,203,6,12,4,,R,23,0,22,,,,,,,5 +13219,541,177,54,10,15,,R,24,0,21,,,,,,,7 +13220,541,233,58,16,14,,R,25,0,1,,,,,,,69 +13221,541,212,32,25,23,,R,26,0,0,,,,,,,8 +13222,541,213,63,19,0,,F,27,0,0,,,,,,,81 +13223,542,203,6,12,3,1,1,1,9,70,57:49.2,7069196,,,,,1 +13224,542,222,59,20,2,2,2,2,6,70,13.372,7082568,,,,,1 +13225,542,199,6,11,11,3,3,3,4,70,19.408,7088604,,,,,1 +13226,542,119,21,35,12,4,4,4,3,70,24.667,7093863,,,,,1 +13227,542,221,25,4,13,5,5,5,2,70,28.558,7097754,,,,,1 +13228,542,206,57,22,15,6,6,6,1,70,54.476,7123672,,,,,1 +13229,542,202,25,3,18,7,7,7,0,70,+1:21.250,7150446,,,,,1 +13230,542,175,1,8,17,8,8,8,0,70,+1:26.560,7155756,,,,,1 +13231,542,178,3,27,5,9,9,9,0,70,+1:28.942,7158138,,,,,1 +13232,542,207,32,5,9,10,10,10,0,69,,,,,,,11 +13233,542,137,34,66,14,11,11,11,0,69,,,,,,,11 +13234,542,219,4,15,22,12,12,12,0,65,,,,,,,15 +13235,542,177,54,10,21,,N,13,0,58,,,,,,,55 +13236,542,172,27,26,10,,R,14,0,52,,,,,,,7 +13237,542,231,1,7,19,,R,15,0,51,,,,,,,20 +13238,542,197,32,55,1,,R,16,0,49,,,,,,,44 +13239,542,163,63,31,16,,R,17,0,37,,,,,,,5 +13240,542,249,59,21,20,,R,18,0,16,,,,,,,69 +13241,542,187,34,2,4,,R,19,0,8,,,,,,,3 +13242,542,182,34,1,7,,R,20,0,5,,,,,,,23 +13243,542,233,58,16,8,,R,21,0,1,,,,,,,3 +13244,542,224,56,14,6,,R,22,0,0,,,,,,,3 +13245,542,223,58,17,0,,F,23,0,0,,,,,,,81 +13246,542,213,63,19,0,,F,24,0,0,,,,,,,81 +13247,542,232,60,37,0,,F,25,0,0,,,,,,,81 +13248,542,212,32,25,0,,F,26,0,0,,,,,,,81 +13249,542,243,21,36,0,,F,27,0,0,,,,,,,97 +13250,542,247,54,9,0,,F,28,0,0,,,,,,,97 +13251,543,222,59,20,11,1,1,1,9,53,40:11.2,6011190,,,,,1 +13252,543,250,34,8,6,2,2,2,6,53,43.24,6054430,,,,,1 +13253,543,199,6,12,7,3,3,3,4,53,46.02,6057210,,,,,1 +13254,543,224,56,28,16,4,4,4,3,53,55.48,6066670,,,,,1 +13255,543,207,32,5,8,5,5,5,2,51,,,,,,,67 +13256,543,223,57,22,12,6,6,6,1,51,,,,,,,12 +13257,543,230,63,19,13,7,7,7,0,48,,,,,,,60 +13258,543,251,37,10,17,,R,8,0,45,,,,,,,10 +13259,543,252,58,16,9,,N,9,0,45,,,,,,,62 +13260,543,187,34,7,2,,R,10,0,41,,,,,,,22 +13261,543,237,37,9,20,,R,11,0,39,,,,,,,7 +13262,543,172,27,26,15,,N,12,0,37,,,,,,,62 +13263,543,221,25,4,3,,R,13,0,32,,,,,,,25 +13264,543,231,1,1,1,,R,14,0,31,,,,,,,22 +13265,543,200,1,2,5,,R,15,0,28,,,,,,,20 +13266,543,238,25,3,14,,R,16,0,28,,,,,,,20 +13267,543,253,56,29,19,,R,17,0,22,,,,,,,5 +13268,543,182,6,11,4,,R,18,0,20,,,,,,,69 +13269,543,246,63,18,18,,R,19,0,18,,,,,,,3 +13270,543,254,58,17,21,,R,20,0,2,,,,,,,6 +13271,543,255,32,6,10,,W,21,0,0,,,,,,,54 +13272,544,199,6,12,2,1,1,1,9,40,45:07.7,6307720,,,,,1 +13273,544,231,1,1,1,2,2,2,6,40,10.71,6318430,,,,,1 +13274,544,182,6,11,13,3,3,3,4,40,+1:47.51,6415230,,,,,1 +13275,544,224,56,28,16,4,4,4,3,39,,,,,,,11 +13276,544,255,32,6,10,5,5,5,2,39,,,,,,,11 +13277,544,254,58,17,18,6,6,6,1,39,,,,,,,11 +13278,544,253,56,29,19,7,7,7,0,38,,,,,,,12 +13279,544,250,34,8,12,,R,8,0,33,,,,,,,3 +13280,544,252,58,16,5,,R,9,0,33,,,,,,,5 +13281,544,246,63,18,20,,R,10,0,32,,,,,,,22 +13282,544,187,34,7,7,,R,11,0,30,,,,,,,3 +13283,544,172,27,26,14,,R,12,0,26,,,,,,,3 +13284,544,221,25,4,6,,R,13,0,23,,,,,,,3 +13285,544,207,32,5,3,,R,14,0,19,,,,,,,80 +13286,544,237,37,9,21,,R,15,0,16,,,,,,,5 +13287,544,200,1,2,4,,R,16,0,12,,,,,,,3 +13288,544,238,25,3,8,,R,17,0,12,,,,,,,3 +13289,544,223,57,22,9,,R,18,0,12,,,,,,,3 +13290,544,230,63,19,11,,R,19,0,11,,,,,,,3 +13291,544,222,59,20,15,,R,20,0,11,,,,,,,5 +13292,544,251,37,10,17,,R,21,0,1,,,,,,,7 +13293,544,256,66,14,22,,R,22,0,1,,,,,,,25 +13294,545,182,6,11,3,1,1,1,9,78,42:21.6,6141600,,,,,1 +13295,545,222,59,20,5,2,2,2,6,78,5.2,6146800,,,,,1 +13296,545,221,25,4,4,3,3,3,4,78,5.7,6147300,,,,,1 +13297,545,231,1,1,1,4,4,4,3,78,9.5,6151100,,,,,1 +13298,545,200,1,2,12,5,5,5,2,78,19.9,6161500,,,,,1 +13299,545,187,34,7,11,6,6,6,1,78,20.2,6161800,,,,,1 +13300,545,230,63,19,14,7,7,7,0,78,23.6,6165200,,,,,1 +13301,545,199,6,12,8,8,8,8,0,78,26.7,6168300,,,,,1 +13302,545,223,57,22,16,9,9,9,0,78,46.2,6187800,,,,,1 +13303,545,224,56,28,9,10,10,10,0,78,+1:11.7,6213300,,,,,1 +13304,545,246,63,18,19,11,11,11,0,77,,,,,,,11 +13305,545,255,32,6,10,12,12,12,0,77,,,,,,,11 +13306,545,250,34,8,2,13,13,13,0,76,,,,,,,12 +13307,545,239,37,30,23,14,14,14,0,76,,,,,,,12 +13308,545,256,66,14,22,15,15,15,0,73,,,,,,,15 +13309,545,237,37,9,17,,R,16,0,66,,,,,,,5 +13310,545,233,37,10,18,,R,17,0,55,,,,,,,5 +13311,545,207,32,5,6,,R,18,0,43,,,,,,,3 +13312,545,257,37,33,21,,R,19,0,33,,,,,,,6 +13313,545,172,27,26,12,,R,20,0,22,,,,,,,3 +13314,545,252,58,16,15,,R,21,0,22,,,,,,,3 +13315,545,254,58,17,20,,R,22,0,21,,,,,,,95 +13316,545,238,25,3,7,,R,23,0,5,,,,,,,69 +13317,546,207,32,5,2,1,1,1,9,80,51:35.5,6695470,,,,,1 +13318,546,182,6,11,1,2,2,2,6,80,0.773,6696243,,,,,1 +13319,546,222,59,20,3,3,3,3,4,80,4.857,6700327,,,,,1 +13320,546,221,25,4,12,4,4,4,3,80,+1:14.487,6769957,,,,,1 +13321,546,224,56,28,7,5,5,5,2,80,+1:20.908,6776378,,,,,1 +13322,546,197,67,34,9,6,6,6,1,79,,,,,,,11 +13323,546,231,1,1,8,7,7,7,0,79,,,,,,,11 +13324,546,255,32,6,16,8,8,8,0,79,,,,,,,11 +13325,546,172,27,26,5,9,9,9,0,78,,,,,,,10 +13326,546,205,37,10,18,10,10,10,0,77,,,,,,,13 +13327,546,246,63,18,19,11,11,11,0,77,,,,,,,13 +13328,546,238,25,3,10,,R,12,0,62,,,,,,,69 +13329,546,223,57,22,13,,R,13,0,57,,,,,,,6 +13330,546,233,34,8,17,,R,14,0,53,,,,,,,23 +13331,546,178,58,17,14,,R,15,0,40,,,,,,,6 +13332,546,200,1,2,15,,R,16,0,39,,,,,,,64 +13333,546,187,34,7,6,,D,17,0,33,,,,,,,2 +13334,546,254,58,16,20,,R,18,0,27,,,,,,,6 +13335,546,237,37,9,22,,R,19,0,15,,,,,,,6 +13336,546,199,6,12,4,,R,20,0,5,,,,,,,3 +13337,546,239,37,30,21,,R,21,0,4,,,,,,,3 +13338,546,230,63,19,11,,R,22,0,0,,,,,,,3 +13339,547,207,32,5,1,1,1,1,9,75,42:52.2,6172220,,,,,1 +13340,547,199,6,12,4,2,2,2,6,75,15.85,6188070,,,,,1 +13341,547,222,59,20,5,3,3,3,4,75,24.51,6196730,,,,,1 +13342,547,200,1,2,9,4,4,4,3,75,24.87,6197090,,,,,1 +13343,547,255,32,6,12,5,5,5,2,75,+1:05.83,6238050,,,,,1 +13344,547,233,34,8,13,6,6,6,1,74,,,,,,,11 +13345,547,172,27,26,2,7,7,7,0,74,,,,,,,11 +13346,547,238,25,3,15,8,8,8,0,74,,,,,,,11 +13347,547,246,63,18,20,9,9,9,0,73,,,,,,,12 +13348,547,239,37,30,28,10,10,10,0,72,,,,,,,13 +13349,547,251,37,10,17,11,11,11,0,72,,,,,,,13 +13350,547,258,37,27,22,12,12,12,0,71,,,,,,,14 +13351,547,208,1,36,23,13,13,13,0,70,,,,,,,15 +13352,547,224,56,28,19,14,14,14,0,70,,,,,,,15 +13353,547,187,34,7,6,,R,15,0,64,,,,,,,69 +13354,547,178,58,17,14,,R,16,0,56,,,,,,,3 +13355,547,211,64,24,16,,R,17,0,32,,,,,,,3 +13356,547,229,64,25,10,,R,18,0,29,,,,,,,21 +13357,547,254,58,16,24,,R,19,0,25,,,,,,,5 +13358,547,232,37,37,21,,R,20,0,16,,,,,,,22 +13359,547,221,25,4,10,,R,21,0,12,,,,,,,5 +13360,547,231,1,1,7,,R,22,0,10,,,,,,,5 +13361,547,223,57,22,8,,R,23,0,9,,,,,,,3 +13362,547,230,63,19,11,,R,24,0,9,,,,,,,3 +13363,547,182,6,11,3,,R,25,0,0,,,,,,,73 +13364,547,197,67,34,0,,F,26,0,0,,,,,,,81 +13365,547,237,37,9,0,,F,27,0,0,,,,,,,81 +13366,547,257,37,33,0,,F,28,0,0,,,,,,,81 +13367,547,205,37,38,0,,F,29,0,0,,,,,,,81 +13368,547,259,68,31,0,,F,30,0,0,,,,,,,81 +13369,547,260,66,35,0,,F,31,0,0,,,,,,,81 +13370,548,222,59,20,2,1,1,1,9,76,57:52.8,7072770,,,,,1 +13371,548,182,6,11,6,2,2,2,6,76,0.889,7073659,,,,,1 +13372,548,199,6,12,3,3,3,3,4,76,32.8,7105570,,,,,1 +13373,548,200,1,2,9,4,4,4,3,76,34.6,7107370,,,,,1 +13374,548,207,32,5,10,5,5,5,2,76,35.55,7108320,,,,,1 +13375,548,178,58,17,11,6,6,6,1,76,36.61,7109380,,,,,1 +13376,548,172,27,26,16,7,7,7,0,76,+1:04.44,7137210,,,,,1 +13377,548,230,63,19,14,8,8,8,0,76,+1:08.64,7141410,,,,,1 +13378,548,119,58,16,15,9,9,9,0,75,,,,,,,11 +13379,548,235,57,22,17,10,10,10,0,75,,,,,,,11 +13380,548,197,67,34,12,11,11,11,0,74,,,,,,,12 +13381,548,211,64,24,20,12,12,12,0,73,,,,,,,13 +13382,548,255,32,6,13,,R,13,0,51,,,,,,,6 +13383,548,187,34,7,1,,R,14,0,48,,,,,,,6 +13384,548,221,25,4,8,,R,15,0,46,,,,,,,6 +13385,548,246,63,18,19,,R,16,0,41,,,,,,,69 +13386,548,224,56,28,18,,R,17,0,37,,,,,,,5 +13387,548,231,1,1,7,,R,18,0,25,,,,,,,5 +13388,548,233,34,8,5,,R,19,0,19,,,,,,,10 +13389,548,238,25,3,4,,R,20,0,10,,,,,,,23 +13390,548,232,37,37,0,,F,21,0,0,,,,,,,81 +13391,548,257,37,33,0,,F,22,0,0,,,,,,,81 +13392,548,229,64,25,0,,F,23,0,0,,,,,,,81 +13393,548,223,57,22,0,,F,24,0,0,,,,,,,81 +13394,548,237,37,9,0,,F,25,0,0,,,,,,,81 +13395,548,251,37,10,0,,F,26,0,0,,,,,,,81 +13396,549,255,32,6,3,1,1,1,9,70,55:05.7,6905710,,,,,1 +13397,549,182,6,11,11,2,2,2,6,70,14.19,6919900,,,,,1 +13398,549,238,25,3,8,3,3,3,4,70,19.95,6925660,,,,,1 +13399,549,230,63,19,12,4,4,4,3,70,24.98,6930690,,,,,1 +13400,549,178,58,17,17,5,5,5,2,70,+1:15.47,6981180,,,,,1 +13401,549,233,34,8,18,6,6,6,1,69,,,,,,,11 +13402,549,231,1,1,9,7,7,7,0,69,,,,,,,11 +13403,549,221,25,4,5,8,8,8,0,69,,,,,,,11 +13404,549,229,64,25,25,9,9,9,0,69,,,,,,,11 +13405,549,258,37,27,24,10,10,10,0,68,,,,,,,12 +13406,549,197,67,34,26,11,11,11,0,68,,,,,,,12 +13407,549,256,63,18,23,12,12,12,0,67,,,,,,,13 +13408,549,259,68,31,20,13,13,13,0,67,,,,,,,13 +13409,549,232,37,37,14,14,14,14,0,65,,,,,,,15 +13410,549,257,37,33,27,,N,15,0,63,,,,,,,62 +13411,549,222,59,20,4,,R,16,0,62,,,,,,,5 +13412,549,200,1,2,6,,R,17,0,39,,,,,,,3 +13413,549,172,27,26,10,,R,18,0,32,,,,,,,5 +13414,549,223,57,22,13,,R,19,0,29,,,,,,,5 +13415,549,199,6,12,7,,R,20,0,14,,,,,,,3 +13416,549,211,64,24,19,,R,21,0,14,,,,,,,3 +13417,549,119,58,16,15,,R,22,0,12,,,,,,,3 +13418,549,251,37,10,21,,R,23,0,8,,,,,,,3 +13419,549,224,56,28,16,,R,24,0,2,,,,,,,10 +13420,549,207,32,5,1,,R,25,0,0,,,,,,,3 +13421,549,187,34,7,2,,R,26,0,0,,,,,,,3 +13422,549,208,1,36,0,,F,27,0,0,,,,,,,81 +13423,549,237,37,9,0,,F,28,0,0,,,,,,,81 +13424,549,260,66,35,0,,F,29,0,0,,,,,,,81 +13425,549,261,37,38,0,,F,30,0,0,,,,,,,81 +13426,549,212,64,39,0,,F,31,0,0,,,,,,,81 +13427,550,172,27,26,8,1,1,1,9,72,46:56.4,6416400,,,,,1 +13428,550,200,1,2,9,2,2,2,6,72,8.449,6424849,,,,,1 +13429,550,199,6,12,12,3,3,3,4,72,14.369,6430769,,,,,1 +13430,550,221,25,4,6,4,4,4,3,72,16.308,6432708,,,,,1 +13431,550,187,34,7,2,5,5,5,2,72,18.735,6435135,,,,,1 +13432,550,207,32,5,1,6,6,6,1,72,25.277,6441677,,,,,1 +13433,550,223,57,22,14,7,7,7,0,72,31.266,6447666,,,,,1 +13434,550,197,67,34,17,8,8,8,0,72,+1:04.567,6480967,,,,,1 +13435,550,262,58,16,16,9,9,9,0,72,+1:22.479,6498879,,,,,1 +13436,550,233,34,8,5,10,10,10,0,71,,,,,,,11 +13437,550,239,1,30,22,11,11,11,0,71,,,,,,,11 +13438,550,231,1,1,3,12,12,12,0,71,,,,,,,11 +13439,550,211,64,24,24,13,13,13,0,71,,,,,,,11 +13440,550,259,68,31,19,14,14,14,0,70,,,,,,,12 +13441,550,258,37,27,20,15,15,15,0,69,,,,,,,13 +13442,550,229,64,25,23,16,16,16,0,68,,,,,,,14 +13443,550,178,58,17,11,17,17,17,0,67,,,,,,,15 +13444,550,224,56,28,18,18,18,18,0,66,,,,,,,16 +13445,550,255,32,6,7,19,19,19,0,64,,,,,,,67 +13446,550,251,37,10,21,,R,20,0,61,,,,,,,7 +13447,550,230,63,19,13,,R,21,0,52,,,,,,,32 +13448,550,182,6,11,15,,R,22,0,47,,,,,,,64 +13449,550,222,59,20,4,,R,23,0,29,,,,,,,3 +13450,550,238,25,3,10,,R,24,0,7,,,,,,,80 +13451,550,237,37,9,0,,F,25,0,0,,,,,,,81 +13452,550,208,1,36,0,,F,26,0,0,,,,,,,81 +13453,550,256,63,18,0,,F,27,0,0,,,,,,,81 +13454,550,257,37,33,0,,F,28,0,0,,,,,,,81 +13455,550,212,64,39,0,,F,29,0,0,,,,,,,81 +13456,550,260,66,35,0,,F,30,0,0,,,,,,,81 +13457,550,263,37,32,0,,F,31,0,0,,,,,,,81 +13458,551,207,32,5,1,1,1,1,9,80,39:40.1,5980130,,,,,1 +13459,551,187,34,7,4,2,2,2,6,80,1.55,5981680,,,,,1 +13460,551,231,1,1,2,3,3,3,4,80,33.87,6014000,,,,,1 +13461,551,255,32,6,3,4,4,4,3,80,+1:11.08,6051210,,,,,1 +13462,551,182,6,11,9,5,5,5,2,80,+1:14.15,6054280,,,,,1 +13463,551,199,6,12,6,6,6,6,1,79,,,,,,,11 +13464,551,223,57,22,16,7,7,7,0,79,,,,,,,11 +13465,551,172,27,26,5,8,8,8,0,78,,,,,,,12 +13466,551,200,1,2,7,9,9,9,0,78,,,,,,,12 +13467,551,211,64,24,14,10,10,10,0,78,,,,,,,12 +13468,551,224,56,28,22,11,11,11,0,77,,,,,,,13 +13469,551,238,25,3,17,12,12,12,0,77,,,,,,,13 +13470,551,230,63,19,11,13,13,13,0,77,,,,,,,13 +13471,551,251,37,10,20,,N,14,0,69,,,,,,,62 +13472,551,222,59,20,8,,R,15,0,66,,,,,,,3 +13473,551,233,34,8,13,,R,16,0,64,,,,,,,3 +13474,551,178,58,17,10,,R,17,0,60,,,,,,,7 +13475,551,232,37,37,18,,R,18,0,27,,,,,,,6 +13476,551,221,25,4,12,,R,19,0,21,,,,,,,3 +13477,551,119,58,16,15,,R,20,0,6,,,,,,,5 +13478,551,259,68,31,21,,R,21,0,5,,,,,,,3 +13479,551,197,67,34,19,,R,22,0,4,,,,,,,3 +13480,551,237,37,9,0,,F,23,0,0,,,,,,,81 +13481,551,258,37,27,0,,F,24,0,0,,,,,,,81 +13482,551,239,1,30,0,,F,25,0,0,,,,,,,81 +13483,551,229,64,25,0,,F,26,0,0,,,,,,,81 +13484,551,256,63,18,0,,F,27,0,0,,,,,,,81 +13485,551,212,64,39,0,,F,28,0,0,,,,,,,81 +13486,551,175,63,18,0,,F,29,0,0,,,,,,,81 +13487,551,260,66,35,0,,F,30,0,0,,,,,,,81 +13488,552,231,1,1,1,1,1,1,9,68,31:46.1,5506060,,,,,1 +13489,552,182,6,11,3,2,2,2,6,68,18.31,5524370,,,,,1 +13490,552,255,32,6,5,3,3,3,4,68,19.57,5525630,,,,,1 +13491,552,200,1,2,11,4,4,4,3,68,47.76,5553820,,,,,1 +13492,552,233,34,8,7,5,5,5,2,68,+1:11.73,5577790,,,,,1 +13493,552,172,27,26,15,6,6,6,1,67,,,,,,,11 +13494,552,178,58,17,12,7,7,7,0,67,,,,,,,11 +13495,552,230,63,19,8,8,8,8,0,67,,,,,,,11 +13496,552,197,67,34,20,9,9,9,0,67,,,,,,,11 +13497,552,258,37,27,26,10,10,10,0,66,,,,,,,12 +13498,552,203,1,40,9,11,11,11,0,66,,,,,,,12 +13499,552,267,63,18,23,12,12,12,0,66,,,,,,,12 +13500,552,239,1,30,19,13,13,13,0,64,,,,,,,14 +13501,552,207,32,5,6,14,14,14,0,62,,,,,,,5 +13502,552,199,6,12,14,15,15,15,0,62,,,,,,,16 +13503,552,187,34,7,2,,R,16,0,60,,,,,,,69 +13504,552,222,59,20,4,,R,17,0,59,,,,,,,5 +13505,552,224,56,28,22,,R,18,0,42,,,,,,,37 +13506,552,232,37,37,17,,R,19,0,28,,,,,,,7 +13507,552,119,58,16,25,,R,20,0,20,,,,,,,32 +13508,552,221,25,4,18,,R,21,0,16,,,,,,,23 +13509,552,219,4,15,21,,R,22,0,16,,,,,,,101 +13510,552,251,37,10,24,,R,23,0,6,,,,,,,3 +13511,552,238,25,3,16,,R,24,0,3,,,,,,,5 +13512,552,175,57,23,10,,R,25,0,3,,,,,,,10 +13513,552,211,64,24,13,,R,26,0,0,,,,,,,3 +13514,552,237,37,9,0,,F,27,0,0,,,,,,,81 +13515,552,223,57,22,0,,F,28,0,0,,,,,,,81 +13516,552,205,37,38,0,,F,29,0,0,,,,,,,81 +13517,552,208,1,36,0,,F,30,0,0,,,,,,,81 +13518,552,259,68,31,0,,F,31,0,0,,,,,,,97 +13519,552,264,37,33,0,,F,32,0,0,,,,,,,97 +13520,552,265,66,35,0,,F,33,0,0,,,,,,,97 +13521,552,245,63,44,0,,F,34,0,0,,,,,,,97 +13522,552,266,69,45,0,,F,35,0,0,,,,,,,97 +13523,552,263,37,32,0,,F,36,0,0,,,,,,,97 +13524,553,182,6,11,3,1,1,1,9,47,31:49.3,5509300,,,,,1 +13525,553,222,59,20,1,2,2,2,6,47,14.33,5523630,,,,,1 +13526,553,233,34,8,5,3,3,3,4,47,20.9,5530200,,,,,1 +13527,553,199,6,12,8,4,4,4,3,47,60.27,5569570,,,,,1 +13528,553,230,63,19,10,5,5,5,2,47,87.37,5596670,,,,,1 +13529,553,175,57,23,11,6,6,6,1,47,89.81,5599110,,,,,1 +13530,553,267,63,18,19,7,7,7,0,46,,,,,,,11 +13531,553,237,37,9,20,8,8,8,0,46,,,,,,,11 +13532,553,238,25,3,14,9,9,9,0,42,,,,,,,5 +13533,553,119,58,16,16,10,10,10,0,42,,,,,,,36 +13534,553,211,64,24,23,,R,11,0,40,,,,,,,3 +13535,553,207,32,5,7,,R,12,0,34,,,,,,,5 +13536,553,231,1,1,4,,R,13,0,32,,,,,,,48 +13537,553,255,32,6,9,,R,14,0,31,,,,,,,5 +13538,553,200,1,2,13,,R,15,0,26,,,,,,,6 +13539,553,221,25,4,15,,R,16,0,22,,,,,,,5 +13540,553,172,27,26,6,,R,17,0,21,,,,,,,5 +13541,553,212,64,25,24,,R,18,0,20,,,,,,,5 +13542,553,239,1,30,21,,R,19,0,14,,,,,,,3 +13543,553,251,37,10,19,,R,20,0,9,,,,,,,8 +13544,553,187,34,7,2,,R,21,0,8,,,,,,,5 +13545,553,197,67,34,12,,R,22,0,5,,,,,,,7 +13546,553,178,58,17,17,,R,23,0,0,,,,,,,3 +13547,553,268,67,35,25,,F,24,0,9,,,,,,,81 +13548,553,258,37,27,0,,F,25,0,0,,,,,,,81 +13549,553,208,1,36,0,,F,26,0,0,,,,,,,81 +13550,553,224,56,28,0,,F,27,0,0,,,,,,,81 +13551,553,232,37,37,0,,F,28,0,0,,,,,,,81 +13552,553,269,66,40,0,,F,29,0,0,,,,,,,81 +13553,554,178,58,17,14,1,1,1,9,54,37:16.5,5836490,,,,,1 +13554,554,182,6,11,1,2,2,2,6,54,20.13,5856620,,,,,1 +13555,554,233,34,8,4,3,3,3,4,54,34.5,5870990,,,,,1 +13556,554,199,6,12,5,4,4,4,3,54,34.75,5871240,,,,,1 +13557,554,238,25,3,15,5,5,5,2,54,72.09,5908580,,,,,1 +13558,554,200,1,2,9,6,6,6,1,53,,,,,,,11 +13559,554,211,64,24,20,7,7,7,0,53,,,,,,,11 +13560,554,187,34,7,12,8,8,8,0,53,,,,,,,11 +13561,554,258,37,27,22,9,9,9,0,53,,,,,,,11 +13562,554,239,1,30,17,10,10,10,0,53,,,,,,,11 +13563,554,224,56,28,23,11,11,11,0,53,,,,,,,11 +13564,554,246,67,33,19,12,12,12,0,53,,,,,,,11 +13565,554,221,25,4,10,13,13,13,0,53,,,,,,,11 +13566,554,197,67,34,18,14,14,14,0,52,,,,,,,12 +13567,554,230,63,19,13,15,15,15,0,52,,,,,,,12 +13568,554,267,63,18,25,16,16,16,0,52,,,,,,,12 +13569,554,208,1,36,26,17,17,17,0,50,,,,,,,3 +13570,554,222,59,20,8,,R,18,0,45,,,,,,,20 +13571,554,231,1,1,2,,R,19,0,43,,,,,,,5 +13572,554,175,57,23,7,,R,20,0,41,,,,,,,5 +13573,554,255,32,6,16,,R,21,0,38,,,,,,,5 +13574,554,232,58,16,21,,R,22,0,29,,,,,,,6 +13575,554,172,27,26,6,,R,23,0,21,,,,,,,44 +13576,554,207,32,5,3,,R,24,0,11,,,,,,,5 +13577,554,251,37,10,24,,R,25,0,2,,,,,,,3 +13578,554,223,57,22,11,,R,26,0,0,,,,,,,3 +13579,554,205,37,38,0,,F,27,0,0,,,,,,,81 +13580,554,270,64,39,0,,F,28,0,0,,,,,,,81 +13581,554,212,64,25,0,,F,29,0,0,,,,,,,81 +13582,554,237,37,9,0,,F,30,0,0,,,,,,,81 +13583,555,182,6,11,4,1,1,1,9,75,41:45.9,6105930,,,,,1 +13584,555,172,27,26,2,2,2,2,6,75,1.89,6107820,,,,,1 +13585,555,222,59,20,15,3,3,3,4,74,,,,,,,11 +13586,555,224,56,28,17,4,4,4,3,74,,,,,,,11 +13587,555,175,57,23,12,5,5,5,2,73,,,,,,,60 +13588,555,199,6,12,6,6,6,6,1,73,,,,,,,12 +13589,555,233,34,8,19,7,7,7,0,73,,,,,,,12 +13590,555,246,67,35,18,8,8,8,0,73,,,,,,,12 +13591,555,239,1,30,20,9,9,9,0,73,,,,,,,12 +13592,555,251,37,10,25,10,10,10,0,73,,,,,,,12 +13593,555,237,37,9,24,11,11,11,0,72,,,,,,,13 +13594,555,230,63,19,22,12,12,12,0,67,,,,,,,3 +13595,555,119,58,16,16,13,13,13,0,67,,,,,,,5 +13596,555,205,70,38,23,,D,14,0,52,,,,,,,2 +13597,555,219,4,15,10,,R,15,0,39,,,,,,,22 +13598,555,255,32,6,5,,R,16,0,34,,,,,,,3 +13599,555,178,58,17,13,,R,17,0,32,,,,,,,5 +13600,555,221,25,4,11,,R,18,0,31,,,,,,,5 +13601,555,238,25,3,7,,R,19,0,18,,,,,,,80 +13602,555,223,57,22,9,,R,20,0,17,,,,,,,37 +13603,555,207,32,5,1,,R,21,0,14,,,,,,,5 +13604,555,211,64,24,26,,R,22,0,8,,,,,,,3 +13605,555,231,1,1,3,,R,23,0,5,,,,,,,3 +13606,555,197,67,34,21,,R,24,0,4,,,,,,,80 +13607,555,187,34,7,8,,R,25,0,2,,,,,,,44 +13608,555,200,1,2,14,,R,26,0,0,,,,,,,3 +13609,555,258,37,27,0,,F,27,0,0,,,,,,,81 +13610,555,232,37,37,0,,F,28,0,0,,,,,,,81 +13611,555,267,63,18,0,,F,29,0,0,,,,,,,81 +13612,555,270,64,39,0,,F,30,0,0,,,,,,,81 +13613,555,257,37,33,0,,F,31,0,0,,,,,,,81 +13614,555,212,64,25,0,,F,32,0,0,,,,,,,81 +13615,555,269,66,29,0,,F,33,0,0,,,,,,,81 +13616,555,247,37,32,0,,F,34,0,0,,,,,,,81 +13617,556,207,32,5,4,1,1,1,9,52,27:50.3,5270300,,,,,1 +13618,556,182,6,11,5,2,2,2,6,52,16.96,5287260,,,,,1 +13619,556,178,58,17,16,3,3,3,4,52,23.63,5293930,,,,,1 +13620,556,200,1,2,9,4,4,4,3,52,28.48,5298780,,,,,1 +13621,556,223,57,22,7,5,5,5,2,52,30.11,5300410,,,,,1 +13622,556,238,25,3,12,6,6,6,1,52,+1:19.22,5349520,,,,,1 +13623,556,258,37,27,24,7,7,7,0,50,,,,,,,12 +13624,556,172,27,26,8,8,8,8,0,50,,,,,,,12 +13625,556,211,64,24,23,9,9,9,0,48,,,,,,,14 +13626,556,251,37,10,17,,R,10,0,41,,,,,,,7 +13627,556,199,6,12,2,,R,11,0,39,,,,,,,20 +13628,556,119,58,16,6,,R,12,0,39,,,,,,,20 +13629,556,152,1,14,15,,R,13,0,38,,,,,,,5 +13630,556,233,34,8,11,,R,14,0,31,,,,,,,5 +13631,556,231,1,1,1,,R,15,0,26,,,,,,,20 +13632,556,221,25,4,13,,R,16,0,24,,,,,,,5 +13633,556,222,59,20,3,,R,17,0,23,,,,,,,5 +13634,556,219,4,15,20,,R,18,0,23,,,,,,,5 +13635,556,197,67,34,18,,R,19,0,19,,,,,,,5 +13636,556,175,57,23,21,,R,20,0,9,,,,,,,5 +13637,556,230,63,19,10,,R,21,0,5,,,,,,,3 +13638,556,255,32,6,22,,R,22,0,4,,,,,,,22 +13639,556,239,1,30,19,,R,23,0,4,,,,,,,5 +13640,556,187,34,7,14,,R,24,0,3,,,,,,,3 +13641,556,237,37,9,0,,F,25,0,0,,,,,,,81 +13642,556,224,56,28,0,,F,26,0,0,,,,,,,81 +13643,556,241,63,18,0,,F,27,0,0,,,,,,,81 +13644,556,205,70,38,0,,F,28,0,0,,,,,,,81 +13645,556,208,1,36,0,,F,29,0,0,,,,,,,81 +13646,556,270,64,25,0,,F,30,0,0,,,,,,,81 +13647,556,269,66,29,0,,F,31,0,0,,,,,,,81 +13648,556,246,67,33,0,,F,32,0,0,,,,,,,81 +13649,556,271,71,41,0,,F,33,0,0,,,,,,,81 +13650,556,220,34,21,0,,F,34,0,0,,,,,,,81 +13651,557,231,1,1,1,1,1,1,9,59,58:23.3,7103267,,,,,1 +13652,557,207,32,5,4,2,2,2,6,59,+0:02.026,7105293,,,,,1 +13653,557,222,59,20,9,3,3,3,4,59,+1:18.879,7182146,,,,,1 +13654,557,182,6,11,7,4,4,4,3,59,+1:40.615,7203882,,,,,1 +13655,557,223,57,22,19,5,5,5,2,59,+1:48.138,7211405,,,,,1 +13656,557,199,6,12,6,6,6,6,1,58,,,,,,,11 +13657,557,172,27,26,10,7,7,7,0,58,,,,,,,11 +13658,557,211,64,24,20,8,8,8,0,58,,,,,,,11 +13659,557,197,58,16,16,9,9,9,0,58,,,,,,,11 +13660,557,239,1,30,17,10,10,10,0,57,,,,,,,12 +13661,557,246,63,18,25,11,11,11,0,57,,,,,,,12 +13662,557,187,34,7,3,12,12,12,0,57,,,,,,,12 +13663,557,224,56,28,18,13,13,13,0,57,,,,,,,12 +13664,557,221,25,4,8,14,14,14,0,56,,,,,,,13 +13665,557,237,37,9,23,15,15,15,0,56,,,,,,,13 +13666,557,238,25,3,5,16,16,16,0,56,,,,,,,13 +13667,557,270,64,25,22,17,17,17,0,55,,,,,,,14 +13668,557,258,37,27,24,18,18,18,0,55,,,,,,,14 +13669,557,230,63,19,11,19,19,19,0,54,,,,,,,15 +13670,557,219,4,15,14,,R,20,0,30,,,,,,,91 +13671,557,255,32,6,12,,R,21,0,17,,,,,,,3 +13672,557,233,34,8,2,,R,22,0,14,,,,,,,3 +13673,557,251,37,10,21,,R,23,0,10,,,,,,,3 +13674,557,200,1,2,15,,R,24,0,8,,,,,,,48 +13675,557,240,67,14,26,,R,25,0,6,,,,,,,3 +13676,557,178,58,17,13,,R,26,0,3,,,,,,,3 +13677,557,175,57,23,0,,F,27,0,0,,,,,,,81 +13678,558,222,59,20,9,1,1,1,9,80,40:00.0,6000000,,,,,1 +13679,558,221,25,4,6,2,2,2,6,80,6.77,6006770,,,,,1 +13680,558,200,1,2,5,3,3,3,4,80,15.76,6015760,,,,,1 +13681,558,178,58,17,7,4,4,4,3,80,46.69,6046690,,,,,1 +13682,558,175,57,23,16,5,5,5,2,80,+1:03.26,6063260,,,,,1 +13683,558,230,63,19,15,6,6,6,1,78,,,,,,,3 +13684,558,240,67,14,22,7,7,7,0,78,,,,,,,12 +13685,558,237,37,9,23,8,8,8,0,78,,,,,,,12 +13686,558,207,32,5,1,9,9,9,0,77,,,,,,,5 +13687,558,119,58,16,8,10,10,10,0,76,,,,,,,20 +13688,558,239,1,30,20,11,11,11,0,76,,,,,,,5 +13689,558,203,6,21,17,12,12,12,0,76,,,,,,,7 +13690,558,231,1,1,2,,R,13,0,61,,,,,,,3 +13691,558,258,37,27,21,,R,14,0,56,,,,,,,5 +13692,558,238,25,3,3,,R,15,0,34,,,,,,,95 +13693,558,211,64,24,25,,R,16,0,32,,,,,,,3 +13694,558,246,63,18,24,,R,17,0,31,,,,,,,3 +13695,558,251,37,10,18,,R,18,0,29,,,,,,,5 +13696,558,224,56,28,19,,R,19,0,29,,,,,,,5 +13697,558,199,6,12,12,,R,20,0,20,,,,,,,69 +13698,558,233,34,8,13,,R,21,0,19,,,,,,,5 +13699,558,255,32,6,4,,R,22,0,17,,,,,,,3 +13700,558,172,27,26,11,,R,23,0,12,,,,,,,7 +13701,558,187,34,7,10,,R,24,0,1,,,,,,,22 +13702,558,223,57,22,14,,R,25,0,0,,,,,,,3 +13703,558,270,64,25,0,,W,26,0,0,,,,,,,54 +13704,558,219,4,15,0,,F,27,0,0,,,,,,,81 +13705,559,231,1,1,2,1,1,1,9,73,31:51.7,5511680,,,,,1 +13706,559,199,6,12,7,2,2,2,6,73,+1:02.45,5574130,,,,,1 +13707,559,221,25,4,15,3,3,3,4,73,+1:06.39,5578070,,,,,1 +13708,559,178,58,17,12,4,4,4,3,73,+1:06.61,5578290,,,,,1 +13709,559,172,27,26,5,5,5,5,2,72,,,,,,,60 +13710,559,119,58,16,13,6,6,6,1,72,,,,,,,11 +13711,559,233,34,8,4,7,7,7,0,72,,,,,,,11 +13712,559,230,63,19,9,8,8,8,0,71,,,,,,,12 +13713,559,272,25,50,22,9,9,9,0,71,,,,,,,12 +13714,559,222,59,20,6,10,10,10,0,71,,,,,,,12 +13715,559,273,72,52,11,11,11,11,0,71,,,,,,,12 +13716,559,237,37,9,23,12,12,12,0,69,,,,,,,14 +13717,559,255,32,6,14,,R,13,0,63,,,,,,,6 +13718,559,223,57,22,10,,R,14,0,43,,,,,,,5 +13719,559,187,34,7,3,,R,15,0,29,,,,,,,6 +13720,559,200,1,2,8,,R,16,0,28,,,,,,,5 +13721,559,175,57,23,16,,R,17,0,14,,,,,,,5 +13722,559,238,25,3,18,,R,18,0,5,,,,,,,3 +13723,559,203,6,11,20,,R,19,0,5,,,,,,,3 +13724,559,197,27,27,17,,R,20,0,3,,,,,,,5 +13725,559,207,32,5,1,,R,21,0,1,,,,,,,4 +13726,559,274,72,51,19,,R,22,0,1,,,,,,,4 +13727,559,246,63,18,21,,R,23,0,1,,,,,,,4 +13728,560,182,6,1,2,1,1,1,9,40,45:16.8,6316780,,,,,1 +13729,560,221,25,4,9,2,2,2,6,40,21.47,6338250,,,,,1 +13730,560,252,58,16,12,3,3,3,4,40,23.84,6340620,,,,,1 +13731,560,233,37,34,14,4,4,4,3,40,+1:28.17,6404950,,,,,1 +13732,560,222,25,3,13,5,5,5,2,40,+1:56.46,6433240,,,,,1 +13733,560,200,1,12,6,6,6,6,1,40,+1:58.27,6435050,,,,,1 +13734,560,223,6,2,4,7,7,7,0,40,+2:15.24,6452020,,,,,1 +13735,560,235,59,20,19,8,8,8,0,39,,,,,,,11 +13736,560,254,3,21,17,9,9,9,0,39,,,,,,,11 +13737,560,250,204,8,10,10,10,10,0,39,,,,,,,11 +13738,560,253,56,31,20,11,11,11,0,39,,,,,,,11 +13739,560,199,204,7,15,12,12,12,0,37,,,,,,,60 +13740,560,224,56,30,5,13,13,13,0,37,,,,,,,13 +13741,560,275,37,10,22,14,14,14,0,36,,,,,,,14 +13742,560,197,58,17,3,,R,15,0,33,,,,,,,3 +13743,560,231,1,11,1,,R,16,0,32,,,,,,,3 +13744,560,230,37,9,7,,R,17,0,15,,,,,,,44 +13745,560,172,27,26,11,,R,18,0,14,,,,,,,7 +13746,560,238,32,5,18,,R,19,0,10,,,,,,,3 +13747,560,207,32,6,16,,R,20,0,6,,,,,,,3 +13748,560,187,67,28,8,,R,21,0,2,,,,,,,69 +13749,560,270,66,14,21,,R,22,0,2,,,,,,,94 +13750,561,182,6,1,2,1,1,1,9,78,42:18.4,6138400,,,,,1 +13751,561,231,1,11,1,2,2,2,6,78,1.3,6139700,,,,,1 +13752,561,200,1,12,4,3,3,3,4,78,45.9,6184300,,,,,1 +13753,561,222,25,3,12,4,4,4,3,78,+1:08.4,6206800,,,,,1 +13754,561,187,67,28,3,5,5,5,2,77,,,,,,,11 +13755,561,207,73,27,13,6,6,6,1,77,,,,,,,11 +13756,561,252,58,16,7,7,7,7,0,77,,,,,,,11 +13757,561,230,37,9,5,8,8,8,0,77,,,,,,,11 +13758,561,221,25,4,6,9,9,9,0,77,,,,,,,11 +13759,561,276,32,5,23,10,10,10,0,77,,,,,,,11 +13760,561,239,63,18,20,11,11,11,0,77,,,,,,,11 +13761,561,233,37,34,17,12,12,12,0,76,,,,,,,12 +13762,561,277,59,21,22,13,13,13,0,76,,,,,,,12 +13763,561,278,57,22,18,14,14,14,0,76,,,,,,,12 +13764,561,229,64,24,24,15,15,15,0,74,,,,,,,14 +13765,561,235,59,20,19,16,16,16,0,73,,,,,,,15 +13766,561,224,56,30,21,17,17,17,0,70,,,,,,,5 +13767,561,223,6,2,9,,R,18,0,52,,,,,,,5 +13768,561,172,27,26,8,,R,19,0,49,,,,,,,5 +13769,561,197,58,17,15,,R,20,0,28,,,,,,,21 +13770,561,250,204,8,14,,R,21,0,22,,,,,,,51 +13771,561,255,32,6,25,,R,22,0,18,,,,,,,8 +13772,561,199,204,7,11,,R,23,0,16,,,,,,,51 +13773,561,238,37,10,13,,R,24,0,15,,,,,,,3 +13774,561,251,25,15,16,,R,25,0,0,,,,,,,3 +13775,562,223,6,2,1,1,1,1,9,80,53:18.5,6798471,,,,,1 +13776,562,182,6,1,4,2,2,2,6,80,42.414,6840885,,,,,1 +13777,562,221,25,4,2,3,3,3,4,80,49.972,6848443,,,,,1 +13778,562,172,27,26,12,4,4,4,3,80,+1:12.828,6871299,,,,,1 +13779,562,200,1,12,14,5,5,5,2,80,+1:22.292,6880763,,,,,1 +13780,562,224,56,30,16,6,6,6,1,79,,,,,,,11 +13781,562,197,58,17,7,7,7,7,0,79,,,,,,,11 +13782,562,278,57,22,17,8,8,8,0,78,,,,,,,12 +13783,562,250,204,8,13,9,9,9,0,77,,,,,,,13 +13784,562,238,37,10,6,10,10,10,0,77,,,,,,,13 +13785,562,178,63,19,19,,N,11,0,70,,,,,,,62 +13786,562,187,67,28,9,,N,12,0,69,,,,,,,62 +13787,562,222,25,3,11,,R,13,0,34,,,,,,,22 +13788,562,252,58,16,5,,R,14,0,32,,,,,,,86 +13789,562,207,73,27,15,,R,15,0,15,,,,,,,47 +13790,562,231,1,11,3,,R,16,0,3,,,,,,,3 +13791,562,233,37,34,18,,R,17,0,2,,,,,,,3 +13792,562,230,37,9,20,,R,18,0,0,,,,,,,3 +13793,562,199,204,7,10,,R,19,0,0,,,,,,,3 +13794,562,255,32,6,8,,R,20,0,0,,,,,,,22 +13795,562,277,59,21,0,,F,21,0,0,,,,,,,81 +13796,562,253,56,31,0,,F,22,0,0,,,,,,,81 +13797,562,232,37,35,0,,F,23,0,0,,,,,,,81 +13798,562,276,32,5,0,,F,24,0,0,,,,,,,81 +13799,562,235,59,20,0,,F,25,0,0,,,,,,,81 +13800,562,229,64,24,0,,F,26,0,0,,,,,,,81 +13801,562,239,63,18,0,,F,27,0,0,,,,,,,81 +13802,563,231,1,11,1,1,1,1,9,75,42:20.4,6140430,,,,,1 +13803,563,182,6,1,2,2,2,2,6,75,30.97,6171400,,,,,1 +13804,563,255,32,6,7,3,3,3,4,75,48.02,6188450,,,,,1 +13805,563,199,204,7,12,4,4,4,3,74,,,,,,,11 +13806,563,278,57,22,10,5,5,5,2,74,,,,,,,11 +13807,563,250,204,8,11,6,6,6,1,74,,,,,,,11 +13808,563,235,59,20,21,7,7,7,0,74,,,,,,,11 +13809,563,252,58,16,22,8,8,8,0,74,,,,,,,11 +13810,563,178,63,19,20,9,9,9,0,74,,,,,,,11 +13811,563,277,59,21,23,10,10,10,0,73,,,,,,,12 +13812,563,223,6,2,5,11,11,11,0,72,,,,,,,13 +13813,563,172,27,26,8,12,12,12,0,72,,,,,,,13 +13814,563,256,70,37,24,13,13,13,0,72,,,,,,,13 +13815,563,200,1,12,4,,R,14,0,65,,,,,,,5 +13816,563,197,58,17,15,,R,15,0,61,,,,,,,10 +13817,563,222,25,3,14,,R,16,0,53,,,,,,,5 +13818,563,187,67,28,13,,R,17,0,51,,,,,,,5 +13819,563,232,37,35,18,,R,18,0,36,,,,,,,6 +13820,563,207,32,5,9,,R,19,0,34,,,,,,,6 +13821,563,221,25,4,3,,R,20,0,25,,,,,,,3 +13822,563,230,37,9,6,,R,21,0,21,,,,,,,22 +13823,563,233,37,34,17,,R,22,0,16,,,,,,,6 +13824,563,238,37,10,16,,R,23,0,11,,,,,,,7 +13825,563,224,56,30,19,,R,24,0,3,,,,,,,7 +13826,563,239,63,18,0,,F,25,0,0,,,,,,,81 +13827,563,271,182,32,0,,F,26,0,0,,,,,,,81 +13828,563,279,3,25,0,,F,27,0,0,,,,,,,81 +13829,563,208,182,33,0,,F,28,0,0,,,,,,,81 +13830,563,229,64,24,0,,F,29,0,0,,,,,,,81 +13831,563,253,56,31,0,,F,30,0,0,,,,,,,81 +13832,564,182,6,1,1,1,1,1,9,70,42:53.2,6173230,,,,,1 +13833,564,223,6,2,2,2,2,2,6,70,3.46,6176690,,,,,1 +13834,564,172,27,26,4,3,3,3,4,70,35.38,6208610,,,,,1 +13835,564,222,25,3,7,4,4,4,3,70,+1:31.00,6264230,,,,,1 +13836,564,178,63,19,16,5,5,5,2,69,,,,,,,11 +13837,564,200,1,12,18,6,6,6,1,69,,,,,,,11 +13838,564,187,67,28,17,7,7,7,0,69,,,,,,,11 +13839,564,256,70,37,20,8,8,8,0,69,,,,,,,11 +13840,564,197,58,17,14,9,9,9,0,69,,,,,,,11 +13841,564,252,58,16,13,10,10,10,0,68,,,,,,,12 +13842,564,277,59,21,25,11,11,11,0,68,,,,,,,12 +13843,564,271,182,32,23,12,12,12,0,63,,,,,,,17 +13844,564,239,63,18,26,,R,13,0,62,,,,,,,10 +13845,564,250,204,8,9,,R,14,0,58,,,,,,,10 +13846,564,278,57,22,8,,R,15,0,51,,,,,,,3 +13847,564,231,1,11,3,,R,16,0,35,,,,,,,6 +13848,564,233,37,34,15,,R,17,0,33,,,,,,,22 +13849,564,229,64,24,24,,R,18,0,31,,,,,,,5 +13850,564,221,25,4,4,,R,19,0,29,,,,,,,5 +13851,564,207,32,5,11,,R,20,0,28,,,,,,,86 +13852,564,258,182,33,19,,R,21,0,26,,,,,,,86 +13853,564,232,37,35,21,,R,22,0,21,,,,,,,5 +13854,564,199,204,7,12,,R,23,0,17,,,,,,,5 +13855,564,238,37,10,10,,R,24,0,16,,,,,,,3 +13856,564,255,32,6,22,,R,25,0,7,,,,,,,3 +13857,564,230,37,9,5,,R,26,0,6,,,,,,,86 +13858,564,224,56,30,0,,F,27,0,0,,,,,,,81 +13859,564,235,59,20,0,,F,28,0,0,,,,,,,81 +13860,564,265,64,25,0,,F,29,0,0,,,,,,,81 +13861,565,182,6,1,1,1,1,1,9,78,59:51.5,7191470,,,,,1 +13862,565,222,25,3,5,2,2,2,6,78,11.13,7202600,,,,,1 +13863,565,221,25,4,4,3,3,3,4,78,+1:04.84,7256310,,,,,1 +13864,565,233,37,34,6,4,4,4,3,77,,,,,,,11 +13865,565,200,1,12,11,5,5,5,2,77,,,,,,,11 +13866,565,224,56,30,7,6,6,6,1,77,,,,,,,11 +13867,565,252,58,16,15,7,7,7,0,77,,,,,,,11 +13868,565,197,58,17,10,8,8,8,0,76,,,,,,,12 +13869,565,250,204,8,13,9,9,9,0,76,,,,,,,12 +13870,565,187,67,28,17,10,10,10,0,76,,,,,,,12 +13871,565,277,59,21,18,11,11,11,0,76,,,,,,,12 +13872,565,172,27,26,8,12,12,12,0,75,,,,,,,3 +13873,565,278,57,22,12,13,13,13,0,74,,,,,,,14 +13874,565,223,6,2,2,14,14,14,0,73,,,,,,,3 +13875,565,255,32,6,16,,R,15,0,39,,,,,,,5 +13876,565,238,37,10,3,,R,16,0,26,,,,,,,3 +13877,565,231,1,11,14,,R,17,0,24,,,,,,,5 +13878,565,230,37,9,9,,R,18,0,9,,,,,,,22 +13879,565,178,63,19,19,,R,19,0,1,,,,,,,4 +13880,565,199,204,7,20,,R,20,0,0,,,,,,,3 +13881,565,235,59,20,0,,F,21,0,0,,,,,,,81 +13882,565,280,63,38,0,,F,22,0,0,,,,,,,81 +13883,565,256,70,37,0,,F,23,0,0,,,,,,,81 +13884,565,229,64,24,0,,F,24,0,0,,,,,,,81 +13885,565,232,37,35,0,,F,25,0,0,,,,,,,81 +13886,566,222,25,3,1,1,1,1,9,72,46:53.7,6413729,,,,,1 +13887,566,221,25,4,4,2,2,2,6,72,19.766,6433495,,,,,1 +13888,566,182,6,1,5,3,3,3,4,72,33.866,6447595,,,,,1 +13889,566,172,27,26,7,4,4,4,3,72,55.819,6469548,,,,,1 +13890,566,231,1,11,8,5,5,5,2,72,59.483,6473212,,,,,1 +13891,566,223,6,2,11,6,6,6,1,72,+1:00.366,6474095,,,,,1 +13892,566,238,37,10,9,7,7,7,0,72,+1:03.493,6477222,,,,,1 +13893,566,250,204,8,10,8,8,8,0,72,+1:11.613,6485342,,,,,1 +13894,566,252,58,16,12,9,9,9,0,71,,,,,,,11 +13895,566,230,37,9,15,10,10,10,0,71,,,,,,,11 +13896,566,200,1,12,13,11,11,11,0,71,,,,,,,11 +13897,566,197,58,17,14,12,12,12,0,71,,,,,,,11 +13898,566,178,63,19,18,13,13,13,0,71,,,,,,,11 +13899,566,232,37,35,19,14,14,14,0,70,,,,,,,5 +13900,566,239,63,18,24,15,15,15,0,70,,,,,,,12 +13901,566,229,64,24,23,,R,16,0,54,,,,,,,20 +13902,566,233,37,34,20,,R,17,0,52,,,,,,,5 +13903,566,207,32,5,2,,R,18,0,45,,,,,,,5 +13904,566,278,57,22,3,,R,19,0,38,,,,,,,3 +13905,566,277,59,21,25,,R,20,0,20,,,,,,,5 +13906,566,256,70,37,22,,R,21,0,18,,,,,,,5 +13907,566,224,56,30,21,,R,22,0,10,,,,,,,64 +13908,566,271,182,32,26,,R,23,0,5,,,,,,,3 +13909,566,255,32,6,6,,R,24,0,2,,,,,,,3 +13910,566,199,204,7,16,,R,25,0,2,,,,,,,5 +13911,566,187,67,28,17,,R,26,0,0,,,,,,,3 +13912,566,281,182,33,0,,F,27,0,0,,,,,,,81 +13913,567,231,1,11,1,1,1,1,9,54,40:58.6,6058600,,,,,1 +13914,567,221,25,4,3,2,2,2,6,54,12.7,6071300,,,,,1 +13915,567,187,67,28,8,3,3,3,4,54,23.55,6082150,,,,,1 +13916,567,250,204,8,5,4,4,4,3,54,24.82,6083420,,,,,1 +13917,567,207,32,5,7,5,5,5,2,54,43.92,6102520,,,,,1 +13918,567,222,25,3,9,6,6,6,1,54,55.07,6113670,,,,,1 +13919,567,233,37,34,17,7,7,7,0,54,+1:21.55,6140150,,,,,1 +13920,567,252,58,16,16,8,8,8,0,54,+1:30.67,6149270,,,,,1 +13921,567,232,37,35,20,9,9,9,0,54,+1:53.57,6172170,,,,,1 +13922,567,235,59,20,19,10,10,10,0,53,,,,,,,11 +13923,567,199,204,7,10,11,11,11,0,53,,,,,,,11 +13924,567,197,58,17,15,12,12,12,0,53,,,,,,,11 +13925,567,277,59,21,22,13,13,13,0,53,,,,,,,11 +13926,567,172,27,26,13,14,14,14,0,53,,,,,,,11 +13927,567,200,1,12,14,15,15,15,0,53,,,,,,,11 +13928,567,239,63,18,23,16,16,16,0,53,,,,,,,11 +13929,567,265,64,25,25,17,17,17,0,53,,,,,,,11 +13930,567,258,57,22,26,18,18,18,0,53,,,,,,,11 +13931,567,238,37,10,6,19,19,19,0,51,,,,,,,69 +13932,567,178,63,19,18,,R,20,0,44,,,,,,,22 +13933,567,230,37,9,11,,R,21,0,28,,,,,,,51 +13934,567,224,56,30,21,,R,22,0,21,,,,,,,51 +13935,567,280,63,38,24,,R,23,0,19,,,,,,,22 +13936,567,223,6,2,4,,R,24,0,17,,,,,,,5 +13937,567,182,6,1,2,,R,25,0,8,,,,,,,5 +13938,567,255,32,6,12,,R,26,0,8,,,,,,,6 +13939,567,229,64,24,29,,R,27,0,4,,,,,,,24 +13940,567,282,182,33,0,,F,28,0,0,,,,,,,81 +13941,567,253,56,31,0,,F,29,0,0,,,,,,,81 +13942,567,271,182,32,0,,F,30,0,0,,,,,,,81 +13943,568,182,6,1,1,1,1,1,9,76,44:19.7,6259660,,,,,1 +13944,568,222,25,3,8,2,2,2,6,76,16.18,6275840,,,,,1 +13945,568,187,67,28,11,3,3,3,4,75,,,,,,,11 +13946,568,252,58,16,20,4,4,4,3,75,,,,,,,11 +13947,568,178,63,19,19,5,5,5,2,75,,,,,,,11 +13948,568,224,56,30,21,6,6,6,1,74,,,,,,,12 +13949,568,229,64,24,23,7,7,7,0,73,,,,,,,13 +13950,568,250,204,8,16,8,8,8,0,73,,,,,,,13 +13951,568,197,58,17,24,9,9,9,0,70,,,,,,,16 +13952,568,231,1,11,2,,D,10,0,76,,,,,,,2 +13953,568,255,32,6,14,,R,11,0,67,,,,,,,5 +13954,568,238,37,10,7,,R,12,0,60,,,,,,,69 +13955,568,239,63,18,18,,R,13,0,55,,,,,,,6 +13956,568,221,25,4,5,,R,14,0,47,,,,,,,5 +13957,568,199,204,7,15,,R,15,0,46,,,,,,,51 +13958,568,232,37,35,9,,R,16,0,39,,,,,,,5 +13959,568,223,6,2,4,,D,17,0,36,,,,,,,51 +13960,568,172,27,26,13,,D,18,0,31,,,,,,,22 +13961,568,276,182,32,22,,R,19,0,24,,,,,,,6 +13962,568,230,37,9,10,,R,20,0,22,,,,,,,3 +13963,568,280,63,38,26,,R,21,0,16,,,,,,,69 +13964,568,278,57,22,6,,R,22,0,8,,,,,,,47 +13965,568,207,32,5,3,,R,23,0,4,,,,,,,80 +13966,568,200,1,12,12,,R,24,0,1,,,,,,,8 +13967,568,233,37,34,17,,R,25,0,0,,,,,,,3 +13968,568,265,64,25,25,,R,26,0,0,,,,,,,3 +13969,568,235,59,20,0,,F,27,0,0,,,,,,,81 +13970,568,242,63,13,0,,F,28,0,0,,,,,,,81 +13971,568,283,58,40,0,,F,29,0,0,,,,,,,81 +13972,568,275,182,33,0,,F,30,0,0,,,,,,,81 +13973,569,231,1,11,1,1,1,1,9,14,41:42.7,6102700,,,,,1 +13974,569,222,25,3,8,2,2,2,6,14,27.7,6130400,,,,,1 +13975,569,200,1,12,9,3,3,3,4,14,52.4,6155100,,,,,1 +13976,569,250,204,8,7,4,4,4,3,14,54.2,6156900,,,,,1 +13977,569,255,32,6,16,5,5,5,2,14,+1:57.3,6220000,,,,,1 +13978,569,243,204,77,15,6,6,6,1,14,+2:30.3,6253000,,,,,1 +13979,569,187,67,28,19,7,7,7,0,14,+2:33.9,6256600,,,,,1 +13980,569,252,58,16,18,8,8,8,0,14,+2:48.2,6270900,,,,,1 +13981,569,223,6,2,5,9,9,9,0,14,+3:46.0,6328700,,,,,1 +13982,569,178,63,19,14,10,10,10,0,14,+3:47.3,6330000,,,,,1 +13983,569,197,58,17,23,11,11,11,0,14,+4:51.7,6394400,,,,,1 +13984,569,207,32,5,12,12,12,12,0,14,+4:58.1,6400800,,,,,1 +13985,569,224,56,30,20,13,13,13,0,14,+5:25.2,6427900,,,,,1 +13986,569,284,25,40,26,14,14,14,0,13,,,,,,,11 +13987,569,265,64,25,25,15,15,15,0,13,,,,,,,11 +13988,569,232,59,20,21,,R,16,0,3,,,,,,,23 +13989,569,230,37,9,13,,R,17,0,1,,,,,,,3 +13990,569,221,25,4,3,,R,18,0,0,,,,,,,3 +13991,569,199,204,7,10,,R,19,0,0,,,,,,,69 +13992,569,238,37,10,11,,R,20,0,0,,,,,,,3 +13993,569,233,37,34,4,,R,21,0,0,,,,,,,8 +13994,569,172,27,26,6,,R,22,0,0,,,,,,,6 +13995,569,278,57,22,17,,R,23,0,0,,,,,,,31 +13996,569,182,6,1,2,,R,24,0,0,,,,,,,3 +13997,569,239,63,18,24,,R,25,0,0,,,,,,,3 +13998,569,229,64,24,22,,R,26,0,0,,,,,,,3 +13999,569,275,182,33,0,,F,27,0,0,,,,,,,81 +14000,569,280,63,38,0,,F,28,0,0,,,,,,,81 +14001,570,187,67,28,2,1,1,1,9,54,30:07.9,5407860,,,,,1 +14002,570,172,27,26,5,2,2,2,6,54,10.79,5418650,,,,,1 +14003,570,255,32,6,4,3,3,3,4,54,11.98,5419840,,,,,1 +14004,570,231,1,11,1,4,4,4,3,54,12.44,5420300,,,,,1 +14005,570,207,32,5,9,5,5,5,2,54,21.49,5429350,,,,,1 +14006,570,238,37,10,3,6,6,6,1,54,34.34,5442200,,,,,1 +14007,570,200,1,12,12,7,7,7,0,54,59.45,5467310,,,,,1 +14008,570,229,64,24,20,8,8,8,0,53,,,,,,,11 +14009,570,280,63,38,22,9,9,9,0,52,,,,,,,12 +14010,570,239,63,18,16,10,10,10,0,51,,,,,,,3 +14011,570,284,25,39,23,11,11,11,0,51,,,,,,,13 +14012,570,275,182,33,24,12,12,12,0,50,,,,,,,14 +14013,570,246,57,22,19,,R,13,0,47,,,,,,,37 +14014,570,271,182,32,25,,N,14,0,44,,,,,,,62 +14015,570,230,37,9,7,,R,15,0,43,,,,,,,3 +14016,570,224,56,30,17,,R,16,0,43,,,,,,,3 +14017,570,250,204,8,18,,R,17,0,40,,,,,,,3 +14018,570,197,58,17,8,,R,18,0,40,,,,,,,48 +14019,570,178,63,19,15,,R,19,0,30,,,,,,,3 +14020,570,233,37,34,11,,R,20,0,26,,,,,,,69 +14021,570,221,25,4,13,,R,21,0,24,,,,,,,22 +14022,570,232,59,20,21,,R,22,0,17,,,,,,,3 +14023,570,252,58,16,6,,R,23,0,14,,,,,,,23 +14024,570,222,25,3,10,,R,24,0,14,,,,,,,22 +14025,570,199,204,7,14,,R,25,0,0,,,,,,,8 +14026,571,231,1,11,2,1,1,1,9,75,44:52.1,6292090,,,,,1 +14027,571,223,6,2,5,2,2,2,6,75,0.92,6293010,,,,,1 +14028,571,207,32,5,6,3,3,3,4,75,2.09,6294180,,,,,1 +14029,571,252,58,16,3,4,4,4,3,75,6.94,6299030,,,,,1 +14030,571,222,25,3,8,5,5,5,2,75,22.46,6314550,,,,,1 +14031,571,230,37,9,7,6,6,6,1,75,45.03,6337120,,,,,1 +14032,571,221,25,4,14,7,7,7,0,75,56.28,6348370,,,,,1 +14033,571,178,63,19,16,8,8,8,0,74,,,,,,,11 +14034,571,200,1,12,15,9,9,9,0,74,,,,,,,11 +14035,571,197,58,17,20,10,10,10,0,74,,,,,,,11 +14036,571,280,63,38,22,11,11,11,0,74,,,,,,,11 +14037,571,243,64,25,25,12,12,12,0,72,,,,,,,13 +14038,571,235,57,22,11,,R,13,0,66,,,,,,,10 +14039,571,257,67,39,21,,R,14,0,63,,,,,,,86 +14040,571,250,204,8,9,,R,15,0,53,,,,,,,44 +14041,571,172,27,26,10,,R,16,0,53,,,,,,,44 +14042,571,238,37,10,1,,R,17,0,52,,,,,,,51 +14043,571,229,64,24,24,,R,18,0,49,,,,,,,20 +14044,571,187,67,28,4,,R,19,0,47,,,,,,,6 +14045,571,256,70,27,19,,R,20,0,44,,,,,,,3 +14046,571,224,56,30,17,,R,21,0,40,,,,,,,10 +14047,571,199,204,7,12,,R,22,0,11,,,,,,,8 +14048,571,255,32,6,13,,R,23,0,10,,,,,,,3 +14049,571,233,37,34,26,,R,24,0,9,,,,,,,5 +14050,571,260,63,18,18,,R,25,0,9,,,,,,,5 +14051,571,232,59,20,23,,R,26,0,5,,,,,,,3 +14052,571,284,25,40,0,,F,27,0,0,,,,,,,81 +14053,572,238,37,10,8,1,1,1,9,52,30:35.6,5435600,,,,,1 +14054,572,223,6,2,9,2,2,2,6,52,2.3,5437900,,,,,1 +14055,572,172,27,26,1,3,3,3,4,52,3,5438600,,,,,1 +14056,572,182,6,1,5,4,4,4,3,52,19.4,5455000,,,,,1 +14057,572,222,25,3,2,5,5,5,2,52,19.5,5455100,,,,,1 +14058,572,221,25,4,4,6,6,6,1,52,35.7,5471300,,,,,1 +14059,572,230,37,9,16,7,7,7,0,52,43.9,5479500,,,,,1 +14060,572,252,58,16,15,8,8,8,0,52,52.9,5488500,,,,,1 +14061,572,199,6,35,7,9,9,9,0,52,57.5,5493100,,,,,1 +14062,572,235,57,22,10,10,10,10,0,52,+1:12.4,5508000,,,,,1 +14063,572,187,67,28,26,11,11,11,0,52,+1:42.2,5537800,,,,,1 +14064,572,178,63,19,18,12,12,12,0,51,,,,,,,11 +14065,572,255,32,6,12,13,13,13,0,51,,,,,,,11 +14066,572,239,63,18,24,14,14,14,0,50,,,,,,,12 +14067,572,224,56,30,20,15,15,15,0,50,,,,,,,12 +14068,572,229,64,24,19,16,16,16,0,49,,,,,,,86 +14069,572,280,63,38,22,17,17,17,0,49,,,,,,,13 +14070,572,284,25,37,21,18,18,18,0,49,,,,,,,13 +14071,572,197,58,17,17,19,19,19,0,47,,,,,,,15 +14072,572,243,204,7,11,,R,20,0,41,,,,,,,69 +14073,572,233,37,34,6,,R,21,0,23,,,,,,,3 +14074,572,207,32,5,14,,R,22,0,23,,,,,,,3 +14075,572,231,1,11,24,,R,23,0,11,,,,,,,20 +14076,572,256,70,40,13,,R,24,0,8,,,,,,,5 +14077,572,250,204,8,3,,R,25,0,4,,,,,,,5 +14078,572,200,1,12,25,,R,26,0,2,,,,,,,80 +14079,572,265,64,25,0,,W,27,0,0,,,,,,,54 +14080,572,232,59,20,0,,W,28,0,0,,,,,,,54 +14081,572,285,25,39,0,,W,29,0,0,,,,,,,54 +14082,573,231,1,11,1,1,1,1,9,80,40:09.6,6009626,,,,,1 +14083,573,221,25,4,4,2,2,2,6,80,6.331,6015957,,,,,1 +14084,573,207,32,5,5,3,3,3,4,80,10.366,6019992,,,,,1 +14085,573,222,25,3,7,4,4,4,3,80,19.745,6029371,,,,,1 +14086,573,200,1,12,11,5,5,5,2,80,41.811,6051437,,,,,1 +14087,573,223,6,2,12,6,6,6,1,80,46.256,6055882,,,,,1 +14088,573,250,204,8,10,7,7,7,0,80,46.472,6056098,,,,,1 +14089,573,182,6,1,6,8,8,8,0,80,+1:12.957,6082583,,,,,1 +14090,573,238,37,10,2,9,9,9,0,79,,,,,,,11 +14091,573,187,67,28,14,10,10,10,0,79,,,,,,,11 +14092,573,252,58,16,13,11,11,11,0,79,,,,,,,11 +14093,573,255,32,6,15,12,12,12,0,79,,,,,,,11 +14094,573,235,57,22,16,13,13,13,0,79,,,,,,,11 +14095,573,230,37,9,3,14,14,14,0,79,,,,,,,11 +14096,573,239,63,18,22,15,15,15,0,78,,,,,,,12 +14097,573,178,63,19,20,16,16,16,0,78,,,,,,,12 +14098,573,256,204,7,19,17,17,17,0,78,,,,,,,12 +14099,573,197,58,17,18,18,18,18,0,77,,,,,,,13 +14100,573,280,63,38,21,19,19,19,0,77,,,,,,,13 +14101,573,265,64,25,23,20,20,20,0,75,,,,,,,15 +14102,573,172,27,26,9,,R,21,0,43,,,,,,,51 +14103,573,224,56,30,17,,R,22,0,41,,,,,,,43 +14104,573,233,37,34,8,,R,23,0,36,,,,,,,64 +14105,573,232,59,20,24,,R,24,0,11,,,,,,,3 +14106,573,229,64,24,0,,W,25,0,0,,,,,,,3 +14107,573,278,59,21,0,,W,26,0,0,,,,,,,3 +14108,573,285,25,39,0,,F,27,0,0,,,,,,,81 +14109,574,231,1,11,1,1,1,1,9,59,42:40.7,6160742,,,,,1 +14110,574,222,25,3,2,2,2,2,6,59,8.03,6168772,,,,,1 +14111,574,182,6,1,5,3,3,3,4,59,+1:02.324,6223066,,,,,1 +14112,574,200,1,12,17,4,4,4,3,59,+1:02.458,6223200,,,,,1 +14113,574,233,37,34,6,5,5,5,2,59,+1:07.978,6228720,,,,,1 +14114,574,187,67,28,8,6,6,6,1,59,+1:08.190,6228932,,,,,1 +14115,574,223,6,2,14,7,7,7,0,58,,,,,,,11 +14116,574,178,63,19,18,8,8,8,0,58,,,,,,,11 +14117,574,224,56,30,15,9,9,9,0,57,,,,,,,12 +14118,574,197,58,17,16,10,10,10,0,57,,,,,,,12 +14119,574,239,63,18,24,11,11,11,0,57,,,,,,,12 +14120,574,237,64,25,22,12,12,12,0,57,,,,,,,12 +14121,574,229,64,24,21,13,13,13,0,54,,,,,,,15 +14122,574,286,59,21,23,14,14,14,0,54,,,,,,,15 +14123,574,280,63,38,26,,N,15,0,48,,,,,,,62 +14124,574,252,58,16,9,,R,16,0,45,,,,,,,5 +14125,574,230,37,9,12,,R,17,0,34,,,,,,,27 +14126,574,172,27,26,4,,R,18,0,34,,,,,,,27 +14127,574,250,204,8,10,,R,19,0,31,,,,,,,4 +14128,574,256,204,7,13,,R,20,0,30,,,,,,,22 +14129,574,207,32,5,11,,R,21,0,23,,,,,,,22 +14130,574,235,57,22,19,,R,22,0,14,,,,,,,3 +14131,574,255,32,6,20,,R,23,0,13,,,,,,,5 +14132,574,238,37,10,3,,R,24,0,12,,,,,,,22 +14133,574,232,59,20,25,,R,25,0,9,,,,,,,3 +14134,574,221,25,4,7,,R,26,0,7,,,,,,,106 +14135,574,285,25,39,0,,F,27,0,0,,,,,,,81 +14136,575,207,32,5,1,1,1,1,9,73,43:58.9,6238860,,,,,1 +14137,575,221,25,4,13,2,2,2,6,72,,,,,,,11 +14138,575,231,1,11,2,3,3,3,4,72,,,,,,,11 +14139,575,178,63,19,20,4,4,4,3,72,,,,,,,11 +14140,575,223,6,2,7,5,5,5,2,72,,,,,,,11 +14141,575,255,32,6,16,6,6,6,1,72,,,,,,,11 +14142,575,172,27,26,11,7,7,7,0,72,,,,,,,11 +14143,575,229,64,24,22,8,8,8,0,72,,,,,,,11 +14144,575,274,63,18,24,9,9,9,0,70,,,,,,,13 +14145,575,197,58,17,15,10,10,10,0,69,,,,,,,14 +14146,575,287,72,51,10,11,11,11,0,66,,,,,,,17 +14147,575,222,25,3,5,,R,12,0,58,,,,,,,25 +14148,575,246,59,21,25,,R,13,0,49,,,,,,,36 +14149,575,252,58,16,14,,R,14,0,46,,,,,,,68 +14150,575,230,37,9,8,,R,15,0,38,,,,,,,10 +14151,575,233,37,34,18,,R,16,0,37,,,,,,,10 +14152,575,200,1,12,12,,R,17,0,35,,,,,,,3 +14153,575,187,67,28,4,,R,18,0,33,,,,,,,5 +14154,575,273,25,52,21,,R,19,0,27,,,,,,,27 +14155,575,232,59,20,19,,R,20,0,23,,,,,,,6 +14156,575,224,56,30,23,,R,21,0,9,,,,,,,54 +14157,575,250,204,8,6,,R,22,0,7,,,,,,,54 +14158,575,182,6,1,3,,R,23,0,2,,,,,,,54 +14159,575,256,204,7,17,,R,24,0,1,,,,,,,54 +14160,575,238,37,10,9,,R,25,0,0,,,,,,,5 +14161,575,245,74,54,0,,F,26,0,0,,,,,,,81 +14162,576,224,1,1,5,1,1,1,9,53,39:26.3,5966290,,,,,1 +14163,576,231,64,24,6,2,2,2,6,53,5.91,5972200,,,,,1 +14164,576,199,34,7,3,3,3,3,4,53,17.06,5983350,,,,,1 +14165,576,223,6,11,7,4,4,4,3,53,35.79,6002080,,,,,1 +14166,576,221,25,4,8,5,5,5,2,53,54.25,6020540,,,,,1 +14167,576,182,6,12,4,6,6,6,1,53,+1:19.65,6045940,,,,,1 +14168,576,288,67,28,16,7,7,7,0,52,,,,,,,11 +14169,576,235,32,6,18,8,8,8,0,52,,,,,,,11 +14170,576,230,37,9,12,9,9,9,0,52,,,,,,,11 +14171,576,289,26,22,21,10,10,10,0,52,,,,,,,11 +14172,576,222,25,3,9,11,11,11,0,52,,,,,,,11 +14173,576,252,202,16,14,12,12,12,0,51,,,,,,,7 +14174,576,243,26,23,19,13,13,13,0,51,,,,,,,12 +14175,576,200,1,2,13,14,14,14,0,50,,,,,,,13 +14176,576,250,34,8,2,,R,15,0,46,,,,,,,5 +14177,576,232,3,20,20,,N,16,0,44,,,,,,,62 +14178,576,207,73,27,10,,R,17,0,27,,,,,,,7 +14179,576,283,66,14,22,,R,18,0,24,,,,,,,5 +14180,576,238,32,5,11,,R,19,0,15,,,,,,,5 +14181,576,172,3,21,17,,R,20,0,15,,,,,,,6 +14182,576,290,56,30,23,,R,21,0,12,,,,,,,3 +14183,576,187,63,18,15,,D,22,0,6,,,,,,,2 +14184,576,197,202,17,1,,W,23,0,0,,,,,,,7 +14185,577,250,34,8,6,1,1,1,9,40,44:41.2,6281170,,,,,1 +14186,577,224,1,1,2,2,2,2,6,40,5.79,6286960,,,,,1 +14187,577,200,1,2,10,3,3,3,4,40,26.66,6307830,,,,,1 +14188,577,223,6,11,5,4,4,4,3,40,43.28,6324450,,,,,1 +14189,577,182,6,12,4,5,5,5,2,40,+1:01.88,6343050,,,,,1 +14190,577,231,64,24,7,6,6,6,1,40,+1:05.12,6346290,,,,,1 +14191,577,207,73,27,18,7,7,7,0,40,+1:06.81,6347980,,,,,1 +14192,577,199,34,7,3,8,8,8,0,40,+1:39.62,6380790,,,,,1 +14193,577,235,32,6,12,9,9,9,0,40,+1:51.84,6393010,,,,,1 +14194,577,187,63,18,13,10,10,10,0,40,+2:29.60,6430770,,,,,1 +14195,577,172,3,21,11,11,11,11,0,39,,,,,,,11 +14196,577,289,26,22,20,12,12,12,0,39,,,,,,,11 +14197,577,290,56,30,21,13,13,13,0,39,,,,,,,11 +14198,577,243,26,23,23,14,14,14,0,39,,,,,,,11 +14199,577,238,32,5,16,15,15,15,0,38,,,,,,,12 +14200,577,197,202,17,1,,R,16,0,32,,,,,,,69 +14201,577,221,25,4,9,,R,17,0,31,,,,,,,22 +14202,577,252,202,16,14,,R,18,0,31,,,,,,,3 +14203,577,232,3,20,11,,R,19,0,24,,,,,,,69 +14204,577,288,67,28,15,,R,20,0,22,,,,,,,64 +14205,577,283,66,14,22,,R,21,0,22,,,,,,,10 +14206,577,222,25,3,8,,R,22,0,18,,,,,,,44 +14207,577,230,37,9,17,,R,23,0,1,,,,,,,5 +14208,578,222,25,3,3,1,1,1,9,78,43:16.9,6196900,,,,,1 +14209,578,199,34,7,2,2,2,2,6,78,3.74,6200640,,,,,1 +14210,578,221,25,4,5,3,3,3,4,78,16.92,6213820,,,,,1 +14211,578,250,34,8,1,4,4,4,3,78,17.31,6214210,,,,,1 +14212,578,182,6,12,4,5,5,5,2,78,28.64,6225540,,,,,1 +14213,578,200,1,2,16,6,6,6,1,78,+1:03.64,6260540,,,,,1 +14214,578,243,75,23,14,7,7,7,0,78,+1:12.91,6269810,,,,,1 +14215,578,288,67,28,18,8,8,8,0,77,,,,,,,11 +14216,578,252,202,16,19,9,9,9,0,77,,,,,,,11 +14217,578,238,32,5,8,10,10,10,0,77,,,,,,,11 +14218,578,291,32,34,25,11,11,11,0,76,,,,,,,12 +14219,578,235,32,6,21,12,12,12,0,76,,,,,,,12 +14220,578,292,32,33,22,13,13,13,0,76,,,,,,,12 +14221,578,293,1,31,20,14,14,14,0,76,,,,,,,12 +14222,578,276,66,14,24,15,15,15,0,76,,,,,,,12 +14223,578,223,6,11,9,16,16,16,0,71,,,,,,,37 +14224,578,207,73,27,6,17,17,17,0,70,,,,,,,7 +14225,578,172,3,21,23,,N,18,0,69,,,,,,,62 +14226,578,224,1,1,11,,N,19,0,65,,,,,,,62 +14227,578,251,25,32,17,,R,20,0,55,,,,,,,3 +14228,578,231,64,24,12,,R,21,0,53,,,,,,,69 +14229,578,197,202,17,13,,R,22,0,37,,,,,,,25 +14230,578,275,37,10,26,,R,23,0,23,,,,,,,69 +14231,578,232,3,20,15,,R,24,0,22,,,,,,,5 +14232,578,187,63,18,10,,R,25,0,19,,,,,,,8 +14233,578,230,37,9,7,,R,26,0,16,,,,,,,21 +14234,578,290,56,30,0,,F,27,0,0,,,,,,,81 +14235,578,289,26,22,0,,F,28,0,0,,,,,,,81 +14236,579,200,1,2,11,1,1,1,4.5,29,42:53.7,2573700,,,,,1 +14237,579,235,32,6,16,2,2,2,3,29,1.1,2574800,,,,,1 +14238,579,199,34,7,15,3,3,3,2,28,,,,,,,11 +14239,579,197,202,17,10,4,4,4,1.5,28,,,,,,,11 +14240,579,230,37,9,5,5,5,5,1,28,,,,,,,11 +14241,579,275,37,10,24,6,6,6,0.5,27,,,,,,,12 +14242,579,294,3,21,18,7,7,7,0,27,,,,,,,12 +14243,579,187,63,18,6,8,8,8,0,26,,,,,,,13 +14244,579,223,6,11,2,,N,9,0,25,,,,,,,62 +14245,579,243,26,22,9,,R,10,0,25,,,,,,,3 +14246,579,250,34,8,14,,R,11,0,25,,,,,,,3 +14247,579,252,202,16,8,,R,12,0,23,,,,,,,3 +14248,579,238,32,5,12,,R,13,0,23,,,,,,,22 +14249,579,295,57,31,19,,R,14,0,20,,,,,,,7 +14250,579,296,26,23,22,,N,15,0,18,,,,,,,62 +14251,579,207,73,27,4,,R,16,0,16,,,,,,,22 +14252,579,276,66,14,23,,R,17,0,7,,,,,,,69 +14253,579,231,64,24,3,,R,18,0,6,,,,,,,3 +14254,579,222,25,3,13,,R,19,0,3,,,,,,,5 +14255,579,288,67,28,17,,R,20,0,3,,,,,,,3 +14256,579,178,64,25,20,,R,21,0,3,,,,,,,3 +14257,579,221,25,4,7,,R,22,0,1,,,,,,,3 +14258,579,290,56,30,21,,R,23,0,1,,,,,,,54 +14259,579,232,3,20,25,,R,24,0,1,,,,,,,54 +14260,579,182,6,12,1,,R,25,0,0,,,,,,,3 +14261,579,224,1,1,26,,W,26,0,0,,,,,,,54 +14262,580,182,6,12,1,1,1,1,9,75,01:21.3,7281310,,,,,1 +14263,580,224,1,1,9,2,2,2,6,75,2.78,7284090,,,,,1 +14264,580,250,34,8,8,3,3,3,4,75,17.81,7299120,,,,,1 +14265,580,238,32,5,4,4,4,4,3,75,38.45,7319760,,,,,1 +14266,580,221,25,4,12,5,5,5,2,75,40.86,7322170,,,,,1 +14267,580,200,1,2,15,6,6,6,1,75,42.07,7323380,,,,,1 +14268,580,222,25,3,7,7,7,7,0,74,,,,,,,11 +14269,580,235,32,6,14,8,8,8,0,74,,,,,,,11 +14270,580,199,34,7,10,9,9,9,0,73,,,,,,,12 +14271,580,288,67,28,16,,R,10,0,66,,,,,,,3 +14272,580,231,64,24,11,,R,11,0,63,,,,,,,3 +14273,580,178,64,26,18,,R,12,0,61,,,,,,,36 +14274,580,230,37,9,5,,R,13,0,48,,,,,,,3 +14275,580,252,202,16,2,,R,14,0,39,,,,,,,3 +14276,580,223,6,11,17,,R,15,0,36,,,,,,,3 +14277,580,187,63,18,6,,R,16,0,36,,,,,,,20 +14278,580,207,73,27,13,,R,17,0,9,,,,,,,44 +14279,580,197,202,17,3,,R,18,0,0,,,,,,,3 +14280,580,172,3,21,0,,F,19,0,0,,,,,,,81 +14281,580,232,3,20,0,,F,20,0,0,,,,,,,81 +14282,580,289,75,23,0,,F,21,0,0,,,,,,,81 +14283,580,276,66,14,0,,F,22,0,0,,,,,,,81 +14284,580,295,57,31,0,,F,23,0,0,,,,,,,81 +14285,580,297,64,25,0,,F,24,0,0,,,,,,,81 +14286,580,275,37,10,0,,F,25,0,0,,,,,,,81 +14287,580,290,56,30,0,,F,26,0,0,,,,,,,81 +14288,581,182,6,12,1,1,1,1,9,70,43:54.0,6233980,,,,,1 +14289,581,222,25,3,9,2,2,2,6,70,19.22,6253200,,,,,1 +14290,581,199,34,7,6,3,3,3,4,70,41.82,6275800,,,,,1 +14291,581,221,25,4,12,4,4,4,3,70,+1:00.08,6294060,,,,,1 +14292,581,223,6,11,4,5,5,5,2,70,+1:03.84,6297820,,,,,1 +14293,581,252,202,16,5,6,6,6,1,70,+1:28.45,6322430,,,,,1 +14294,581,224,1,1,8,7,7,7,0,69,,,,,,,11 +14295,581,250,34,8,2,8,8,8,0,69,,,,,,,11 +14296,581,276,66,14,20,9,9,9,0,68,,,,,,,12 +14297,581,187,63,18,18,10,10,10,0,68,,,,,,,12 +14298,581,288,67,28,21,11,11,11,0,67,,,,,,,13 +14299,581,290,56,30,24,12,12,12,0,67,,,,,,,13 +14300,581,296,75,22,22,,R,13,0,57,,,,,,,22 +14301,581,230,37,9,3,,R,14,0,54,,,,,,,23 +14302,581,235,32,6,16,,R,15,0,52,,,,,,,23 +14303,581,238,32,5,14,,R,16,0,36,,,,,,,23 +14304,581,172,3,21,23,,R,17,0,18,,,,,,,6 +14305,581,275,37,10,17,,R,18,0,18,,,,,,,5 +14306,581,294,75,23,7,,R,19,0,17,,,,,,,5 +14307,581,231,64,24,11,,R,20,0,15,,,,,,,7 +14308,581,197,202,17,10,,R,21,0,13,,,,,,,20 +14309,581,232,3,20,19,,R,22,0,2,,,,,,,8 +14310,581,178,64,26,13,,R,23,0,1,,,,,,,3 +14311,581,200,1,2,15,,R,24,0,0,,,,,,,3 +14312,582,182,6,12,5,1,1,1,9,80,59:18.3,7158319,,,,,1 +14313,582,199,34,7,4,2,2,2,6,80,6.288,7164607,,,,,1 +14314,582,223,6,11,12,3,3,3,4,80,29.095,7187414,,,,,1 +14315,582,207,73,27,15,4,4,4,3,80,44.38,7202699,,,,,1 +14316,582,288,67,28,16,5,5,5,2,80,+1:30.763,7249082,,,,,1 +14317,582,294,75,23,17,6,6,6,1,79,,,,,,,11 +14318,582,222,25,3,8,7,7,7,0,79,,,,,,,11 +14319,582,224,1,1,11,8,8,8,0,79,,,,,,,11 +14320,582,238,32,5,9,9,9,9,0,79,,,,,,,11 +14321,582,297,64,32,21,10,10,10,0,78,,,,,,,60 +14322,582,178,64,26,19,11,11,11,0,78,,,,,,,12 +14323,582,221,25,4,2,12,12,12,0,78,,,,,,,12 +14324,582,276,66,14,23,13,13,13,0,78,,,,,,,12 +14325,582,282,3,20,22,14,14,14,0,78,,,,,,,12 +14326,582,235,32,6,18,15,15,15,0,77,,,,,,,13 +14327,582,187,63,18,10,16,16,16,0,77,,,,,,,13 +14328,582,290,56,30,25,17,17,17,0,74,,,,,,,16 +14329,582,252,202,16,7,,R,18,0,53,,,,,,,20 +14330,582,251,3,21,20,,R,19,0,49,,,,,,,27 +14331,582,267,75,22,26,,R,20,0,47,,,,,,,7 +14332,582,250,34,8,6,,R,21,0,41,,,,,,,20 +14333,582,197,202,17,3,,R,22,0,38,,,,,,,5 +14334,582,230,37,9,1,,R,23,0,36,,,,,,,7 +14335,582,200,1,2,14,,R,24,0,34,,,,,,,25 +14336,582,231,64,24,13,,R,25,0,21,,,,,,,23 +14337,582,275,37,10,24,,R,26,0,10,,,,,,,69 +14338,583,231,64,24,3,1,1,1,9,75,46:57.4,6417400,,,,,1 +14339,583,182,6,12,1,2,2,2,6,75,1.06,6418460,,,,,1 +14340,583,223,6,11,2,3,3,3,4,75,55.06,6472460,,,,,1 +14341,583,199,34,7,5,4,4,4,3,74,,,,,,,11 +14342,583,250,34,8,9,5,5,5,2,74,,,,,,,11 +14343,583,252,202,16,12,6,6,6,1,74,,,,,,,11 +14344,583,294,75,23,7,7,7,7,0,74,,,,,,,11 +14345,583,288,67,28,18,8,8,8,0,74,,,,,,,11 +14346,583,221,25,4,13,9,9,9,0,73,,,,,,,12 +14347,583,298,57,31,22,10,10,10,0,71,,,,,,,14 +14348,583,290,56,30,24,11,11,11,0,71,,,,,,,14 +14349,583,251,3,20,19,12,12,12,0,70,,,,,,,15 +14350,583,178,75,22,17,13,13,13,0,70,,,,,,,15 +14351,583,275,37,10,23,14,14,14,0,70,,,,,,,15 +14352,583,238,32,5,16,15,15,15,0,69,,,,,,,60 +14353,583,222,25,3,4,16,16,16,0,67,,,,,,,5 +14354,583,172,3,21,15,,R,17,0,64,,,,,,,5 +14355,583,200,1,2,8,,R,18,0,61,,,,,,,3 +14356,583,197,202,17,10,,R,19,0,44,,,,,,,27 +14357,583,187,63,18,14,,R,20,0,43,,,,,,,76 +14358,583,224,1,1,6,,R,21,0,40,,,,,,,5 +14359,583,276,66,14,20,,R,22,0,23,,,,,,,24 +14360,583,235,32,6,21,,R,23,0,6,,,,,,,5 +14361,583,230,37,9,11,,R,24,0,0,,,,,,,22 +14362,583,299,74,35,0,,W,25,0,0,,,,,,,54 +14363,584,182,6,12,1,1,1,1,9,54,40:18.8,6018840,,,,,1 +14364,584,231,64,24,3,2,2,2,6,54,1.59,6020430,,,,,1 +14365,584,200,1,2,7,3,3,3,4,54,2.31,6021150,,,,,1 +14366,584,224,1,1,10,4,4,4,3,54,39.77,6058610,,,,,1 +14367,584,207,73,27,15,5,5,5,2,54,+1:02.08,6080920,,,,,1 +14368,584,221,25,4,13,6,6,6,1,54,+1:07.40,6086240,,,,,1 +14369,584,294,75,23,12,7,7,7,0,54,+1:09.61,6088450,,,,,1 +14370,584,197,202,17,4,8,8,8,0,54,+1:19.78,6098620,,,,,1 +14371,584,222,25,3,2,9,9,9,0,54,+1:31.68,6110520,,,,,1 +14372,584,238,32,5,17,10,10,10,0,54,+1:36.02,6114860,,,,,1 +14373,584,172,3,21,16,11,11,11,0,54,+1:36.77,6115610,,,,,1 +14374,584,219,25,15,21,12,12,12,0,54,+1:37.13,6115970,,,,,1 +14375,584,187,63,18,14,13,13,13,0,53,,,,,,,11 +14376,584,199,34,7,11,14,14,14,0,53,,,,,,,11 +14377,584,298,57,31,22,15,15,15,0,53,,,,,,,11 +14378,584,178,75,22,20,16,16,16,0,53,,,,,,,11 +14379,584,276,66,14,25,17,17,17,0,52,,,,,,,12 +14380,584,275,37,10,26,18,18,18,0,50,,,,,,,14 +14381,584,250,34,8,5,,R,19,0,26,,,,,,,7 +14382,584,235,32,6,19,,R,20,0,17,,,,,,,23 +14383,584,290,56,30,23,,R,21,0,14,,,,,,,5 +14384,584,230,37,9,8,,R,22,0,6,,,,,,,83 +14385,584,223,6,11,9,,R,23,0,6,,,,,,,5 +14386,584,288,67,28,18,,R,24,0,6,,,,,,,7 +14387,584,252,202,16,6,,R,25,0,2,,,,,,,7 +14388,584,296,3,20,24,,W,26,0,0,,,,,,,54 +14389,585,224,1,1,7,1,1,1,9,56,22:05.0,4925000,,,,,1 +14390,585,250,34,8,2,2,2,2,6,55,,,,,,,3 +14391,585,222,25,3,6,3,3,3,4,55,,,,,,,3 +14392,585,231,64,24,9,4,4,4,3,55,,,,,,,3 +14393,585,288,37,28,15,5,5,5,2,55,,,,,,,3 +14394,585,230,37,9,5,6,6,6,1,55,,,,,,,11 +14395,585,200,1,2,10,7,7,7,0,55,,,,,,,3 +14396,585,182,6,12,3,8,8,8,0,54,,,,,,,12 +14397,585,221,25,4,17,9,9,9,0,54,,,,,,,3 +14398,585,178,75,22,28,10,10,10,0,54,,,,,,,12 +14399,585,187,63,18,18,11,11,11,0,54,,,,,,,3 +14400,585,207,73,27,12,12,12,12,0,54,,,,,,,12 +14401,585,223,6,11,4,13,13,13,0,54,,,,,,,12 +14402,585,197,202,17,11,14,14,14,0,53,,,,,,,3 +14403,585,294,75,23,13,15,15,15,0,53,,,,,,,3 +14404,585,205,32,15,21,16,16,16,0,53,,,,,,,3 +14405,585,300,76,32,26,17,17,17,0,51,,,,,,,3 +14406,585,301,63,19,23,18,18,18,0,50,,,,,,,3 +14407,585,290,56,30,24,19,19,19,0,50,,,,,,,3 +14408,585,233,37,10,14,,R,20,0,45,,,,,,,3 +14409,585,302,32,6,25,,R,21,0,28,,,,,,,3 +14410,585,252,202,16,1,,R,22,0,20,,,,,,,3 +14411,585,275,37,29,22,,R,23,0,18,,,,,,,5 +14412,585,238,32,5,16,,R,24,0,7,,,,,,,5 +14413,585,172,3,21,19,,R,25,0,5,,,,,,,6 +14414,585,199,34,7,8,,R,26,0,4,,,,,,,5 +14415,585,295,57,31,0,,F,27,0,0,,,,,,,81 +14416,585,299,74,35,0,,F,28,0,0,,,,,,,81 +14417,586,199,34,7,10,1,1,1,9,14,41:14.1,6074100,,,,,1 +14418,586,172,3,21,15,2,2,2,6,14,+1:37.7,6171800,,,,,1 +14419,586,182,6,12,1,3,3,3,4,14,+2:23.3,6217400,,,,,1 +14420,586,252,202,16,16,4,4,4,3,14,+3:31.4,6285500,,,,,1 +14421,586,178,75,22,21,5,5,5,2,14,+3:50.3,6304400,,,,,1 +14422,586,298,57,19,24,6,6,6,1,14,+5:05.5,6379600,,,,,1 +14423,586,275,37,29,25,7,7,7,0,14,+7:30.4,6524500,,,,,1 +14424,586,229,64,25,23,8,8,8,0,14,+7:40.9,6535000,,,,,1 +14425,586,221,25,4,4,9,9,9,0,13,,,,,,,11 +14426,586,207,73,27,13,10,10,10,0,12,,,,,,,60 +14427,586,231,64,24,9,,R,11,0,10,,,,,,,36 +14428,586,223,6,11,5,,R,12,0,9,,,,,,,5 +14429,586,294,75,23,17,,R,13,0,9,,,,,,,3 +14430,586,222,25,3,3,,R,14,0,7,,,,,,,3 +14431,586,197,202,17,12,,R,15,0,7,,,,,,,27 +14432,586,250,34,8,2,,R,16,0,5,,,,,,,22 +14433,586,290,56,30,22,,R,17,0,4,,,,,,,5 +14434,586,233,37,10,7,,R,18,0,3,,,,,,,5 +14435,586,224,1,1,8,,R,19,0,3,,,,,,,22 +14436,586,230,37,9,11,,R,20,0,3,,,,,,,22 +14437,586,187,32,6,14,,R,21,0,2,,,,,,,22 +14438,586,238,32,5,18,,R,22,0,1,,,,,,,8 +14439,586,288,37,28,19,,R,23,0,1,,,,,,,27 +14440,586,200,1,2,6,,R,24,0,0,,,,,,,3 +14441,586,270,3,20,20,,R,25,0,0,,,,,,,3 +14442,586,245,74,35,0,,F,26,0,0,,,,,,,81 +14443,587,230,37,9,8,1,1,1,4.5,29,57:56.7,3476690,,,,,1 +14444,587,231,64,24,2,2,2,2,3,29,27.03,3503720,,,,,1 +14445,587,252,202,16,15,3,3,3,2,29,34.85,3511540,,,,,1 +14446,587,200,1,2,9,4,4,4,1.5,29,+1:12.66,3549350,,,,,1 +14447,587,238,32,5,13,5,5,5,1,29,+1:23.33,3560020,,,,,1 +14448,587,182,6,12,1,6,6,6,0.5,29,+1:30.28,3566970,,,,,1 +14449,587,223,6,11,5,7,7,7,0,29,+1:39.07,3575760,,,,,1 +14450,587,222,25,3,10,8,8,8,0,28,,,,,,,11 +14451,587,224,1,1,3,9,9,9,0,28,,,,,,,11 +14452,587,187,63,18,18,10,10,10,0,28,,,,,,,11 +14453,587,221,25,4,7,11,11,11,0,28,,,,,,,11 +14454,587,278,57,31,23,12,12,12,0,28,,,,,,,11 +14455,587,239,64,25,17,13,13,13,0,28,,,,,,,11 +14456,587,199,34,7,11,14,14,14,0,28,,,,,,,11 +14457,587,294,75,23,16,15,15,15,0,28,,,,,,,11 +14458,587,243,75,22,25,16,16,16,0,27,,,,,,,12 +14459,587,275,37,29,21,17,17,17,0,26,,,,,,,13 +14460,587,295,57,33,27,,N,18,0,25,,,,,,,62 +14461,587,229,64,32,26,,R,19,0,23,,,,,,,10 +14462,587,172,3,21,12,,R,20,0,21,,,,,,,64 +14463,587,250,34,8,6,,R,21,0,17,,,,,,,5 +14464,587,303,3,20,28,,R,22,0,14,,,,,,,5 +14465,587,233,37,10,4,,R,23,0,10,,,,,,,3 +14466,587,197,203,17,14,,R,24,0,10,,,,,,,98 +14467,587,276,66,14,24,,R,25,0,2,,,,,,,5 +14468,587,207,73,27,19,,R,26,0,1,,,,,,,3 +14469,587,288,37,28,20,,W,27,0,0,,,,,,,3 +14470,587,205,32,6,22,,W,28,0,0,,,,,,,3 +14471,587,245,74,35,0,,F,29,0,0,,,,,,,81 +14472,587,290,56,30,0,,F,30,0,0,,,,,,,81 +14473,588,223,6,11,2,1,1,1,9,52,22:42.6,4962600,,,,,1 +14474,588,224,1,1,3,2,2,2,6,52,16.6,4979200,,,,,1 +14475,588,182,6,12,1,3,3,3,4,52,23.2,4985800,,,,,1 +14476,588,199,34,7,7,4,4,4,3,52,55.1,5017700,,,,,1 +14477,588,231,64,24,8,5,5,5,2,52,57.1,5019700,,,,,1 +14478,588,252,202,16,14,6,6,6,1,52,+1:15.9,5038500,,,,,1 +14479,588,221,25,4,12,7,7,7,0,51,,,,,,,11 +14480,588,222,25,3,4,8,8,8,0,51,,,,,,,11 +14481,588,229,64,34,17,9,9,9,0,51,,,,,,,11 +14482,588,239,64,25,21,10,10,10,0,50,,,,,,,12 +14483,588,232,56,30,26,11,11,11,0,48,,,,,,,14 +14484,588,278,57,32,19,12,12,12,0,48,,,,,,,14 +14485,588,302,32,6,25,13,13,13,0,46,,,,,,,16 +14486,588,254,3,20,22,14,14,14,0,46,,,,,,,16 +14487,588,197,203,17,13,,R,15,0,32,,,,,,,48 +14488,588,275,37,29,24,,R,16,0,21,,,,,,,3 +14489,588,233,37,10,16,,R,17,0,15,,,,,,,3 +14490,588,172,3,21,18,,R,18,0,7,,,,,,,6 +14491,588,250,34,8,10,,R,19,0,6,,,,,,,37 +14492,588,243,75,22,23,,R,20,0,3,,,,,,,3 +14493,588,200,1,2,5,,R,21,0,2,,,,,,,3 +14494,588,238,32,5,11,,R,22,0,1,,,,,,,5 +14495,588,294,75,23,6,,R,23,0,1,,,,,,,3 +14496,588,207,73,27,15,,R,24,0,1,,,,,,,3 +14497,588,230,37,9,9,,R,25,0,1,,,,,,,8 +14498,588,276,66,14,20,,R,26,0,0,,,,,,,10 +14499,588,295,57,31,0,,F,27,0,0,,,,,,,81 +14500,588,245,74,35,0,,F,28,0,0,,,,,,,81 +14501,589,182,6,12,1,1,1,1,9,59,42:58.2,6178175,,,,,1 +14502,589,224,1,1,2,2,2,2,6,59,4.943,6183118,,,,,1 +14503,589,200,1,2,9,3,3,3,4,59,47.637,6225812,,,,,1 +14504,589,231,64,24,15,4,4,4,3,59,49.475,6227650,,,,,1 +14505,589,238,32,5,14,5,5,5,2,59,49.986,6228161,,,,,1 +14506,589,222,25,3,10,6,6,6,1,59,50.321,6228496,,,,,1 +14507,589,230,37,9,6,7,7,7,0,59,+1:44.031,6282206,,,,,1 +14508,589,233,37,10,13,8,8,8,0,58,,,,,,,11 +14509,589,187,67,28,12,9,9,9,0,57,,,,,,,12 +14510,589,290,56,30,23,10,10,10,0,55,,,,,,,14 +14511,589,252,202,16,7,,N,11,0,52,,,,,,,62 +14512,589,205,32,6,19,,N,12,0,49,,,,,,,62 +14513,589,239,64,25,18,,R,13,0,46,,,,,,,3 +14514,589,295,57,31,22,,R,14,0,41,,,,,,,6 +14515,589,223,6,11,11,,W,15,0,0,,,,,,,54 +14516,589,197,202,17,4,,R,16,0,19,,,,,,,67 +14517,589,199,34,7,3,,R,17,0,9,,,,,,,5 +14518,589,207,73,27,5,,R,18,0,9,,,,,,,22 +14519,589,294,75,23,17,,R,19,0,5,,,,,,,3 +14520,589,277,25,15,20,,R,20,0,5,,,,,,,5 +14521,589,221,25,4,8,,R,21,0,2,,,,,,,3 +14522,589,250,34,8,16,,R,22,0,2,,,,,,,3 +14523,589,172,3,21,21,,W,23,0,0,,,,,,,68 +14524,589,275,3,20,24,,W,24,0,0,,,,,,,80 +14525,590,304,1,6,10,1,1,1,9,53,41:02.0,6062010,,,,,1 +14526,590,182,6,12,8,2,2,2,6,53,9.27,6071280,,,,,1 +14527,590,223,6,11,2,3,3,3,4,53,20.41,6082420,,,,,1 +14528,590,305,1,33,9,4,4,4,3,53,31.79,6093800,,,,,1 +14529,590,306,66,14,14,5,5,5,2,53,51.84,6113850,,,,,1 +14530,590,221,25,4,15,6,6,6,1,53,+1:52.48,6174490,,,,,1 +14531,590,199,34,7,6,7,7,7,0,52,,,,,,,60 +14532,590,307,37,10,19,8,8,8,0,52,,,,,,,60 +14533,590,280,66,15,21,9,9,9,0,52,,,,,,,11 +14534,590,224,1,5,3,10,10,10,0,52,,,,,,,11 +14535,590,265,26,27,25,11,11,11,0,51,,,,,,,12 +14536,590,187,34,28,20,12,12,12,0,49,,,,,,,14 +14537,590,238,32,1,1,13,13,13,0,48,,,,,,,15 +14538,590,289,26,26,17,,R,14,0,45,,,,,,,5 +14539,590,235,32,2,7,,R,15,0,36,,,,,,,8 +14540,590,308,34,8,22,,R,16,0,36,,,,,,,6 +14541,590,233,37,9,23,,R,17,0,31,,,,,,,8 +14542,590,296,66,37,24,,R,18,0,31,,,,,,,47 +14543,590,222,25,3,12,,R,19,0,25,,,,,,,5 +14544,590,250,63,18,11,,R,20,0,21,,,,,,,22 +14545,590,232,80,20,13,,R,21,0,19,,,,,,,25 +14546,590,231,37,24,5,,R,22,0,11,,,,,,,25 +14547,590,200,63,19,18,,R,23,0,10,,,,,,,5 +14548,590,309,58,16,4,,R,24,0,1,,,,,,,3 +14549,590,197,58,17,16,,R,25,0,0,,,,,,,3 +14550,591,224,1,5,1,1,1,1,9,32,24:37.1,5077060,,,,,1 +14551,591,223,6,11,8,2,2,2,6,32,13.57,5090630,,,,,1 +14552,591,235,32,2,5,3,3,3,4,31,,,,,,,11 +14553,591,250,63,18,12,4,4,4,3,31,,,,,,,11 +14554,591,305,1,33,7,5,5,5,2,31,,,,,,,11 +14555,591,238,32,1,4,6,6,6,1,31,,,,,,,11 +14556,591,199,34,7,2,7,7,7,0,31,,,,,,,11 +14557,591,221,25,4,16,8,8,8,0,31,,,,,,,11 +14558,591,231,37,24,18,9,9,9,0,31,,,,,,,11 +14559,591,306,66,14,17,10,10,10,0,31,,,,,,,11 +14560,591,289,26,26,21,11,11,11,0,31,,,,,,,11 +14561,591,304,1,6,11,12,12,12,0,31,,,,,,,11 +14562,591,222,25,3,14,13,13,13,0,31,,,,,,,11 +14563,591,280,66,15,22,14,14,14,0,30,,,,,,,12 +14564,591,308,34,8,24,15,15,15,0,30,,,,,,,12 +14565,591,296,66,37,23,16,16,16,0,30,,,,,,,12 +14566,591,200,63,19,10,17,17,17,0,30,,,,,,,12 +14567,591,187,34,28,15,,R,18,0,27,,,,,,,8 +14568,591,233,37,9,13,,R,19,0,24,,,,,,,7 +14569,591,197,58,17,19,,R,20,0,21,,,,,,,23 +14570,591,232,80,20,9,,R,21,0,20,,,,,,,37 +14571,591,309,58,16,6,,R,22,0,10,,,,,,,25 +14572,591,307,37,10,20,,R,23,0,8,,,,,,,80 +14573,591,182,6,12,25,,R,24,0,2,,,,,,,5 +14574,591,265,26,27,3,,R,25,0,2,,,,,,,83 +14575,592,199,34,7,4,1,1,1,9,78,42:41.0,6160960,,,,,1 +14576,592,306,66,14,11,2,2,2,6,78,33.94,6194900,,,,,1 +14577,592,305,1,33,12,3,3,3,4,78,42.16,6203120,,,,,1 +14578,592,221,25,4,15,4,4,4,3,78,44.19,6205150,,,,,1 +14579,592,233,37,9,7,5,5,5,2,78,46.23,6207190,,,,,1 +14580,592,232,80,20,3,6,6,6,1,78,56.04,6217000,,,,,1 +14581,592,224,1,5,5,7,7,7,0,78,+1:08.39,6229350,,,,,1 +14582,592,222,25,3,8,8,8,8,0,78,+1:10.54,6231500,,,,,1 +14583,592,304,1,6,9,9,9,9,0,77,,,,,,,11 +14584,592,230,37,10,19,10,10,10,0,77,,,,,,,11 +14585,592,250,63,18,2,11,11,11,0,77,,,,,,,11 +14586,592,289,26,26,18,12,12,12,0,77,,,,,,,11 +14587,592,251,32,29,22,13,13,13,0,76,,,,,,,12 +14588,592,292,25,32,24,14,14,14,0,76,,,,,,,12 +14589,592,296,66,37,25,15,15,15,0,75,,,,,,,13 +14590,592,182,6,12,1,16,16,16,0,74,,,,,,,80 +14591,592,308,34,8,23,17,17,17,0,74,,,,,,,14 +14592,592,280,66,15,21,18,18,18,0,72,,,,,,,16 +14593,592,293,1,23,20,19,19,19,0,71,,,,,,,17 +14594,592,223,6,11,6,,R,20,0,65,,,,,,,51 +14595,592,187,34,28,13,,R,21,0,54,,,,,,,69 +14596,592,235,32,2,10,,R,22,0,31,,,,,,,23 +14597,592,231,64,24,14,,R,23,0,13,,,,,,,7 +14598,592,200,63,19,17,,R,24,0,11,,,,,,,22 +14599,592,310,32,30,26,,R,25,0,6,,,,,,,8 +14600,592,238,32,1,16,,R,26,0,2,,,,,,,4 +14601,592,311,80,21,27,,R,27,0,0,,,,,,,8 +14602,593,182,6,12,1,1,1,1,9,84,00:29.6,7229560,,,,,1 +14603,593,223,6,11,3,2,2,2,6,84,35.61,7265170,,,,,1 +14604,593,224,1,5,4,3,3,3,4,83,,,,,,,11 +14605,593,233,37,9,13,4,4,4,3,82,,,,,,,12 +14606,593,222,25,3,9,5,5,5,2,82,,,,,,,12 +14607,593,304,1,6,8,6,6,6,1,82,,,,,,,12 +14608,593,312,58,16,21,7,7,7,0,81,,,,,,,13 +14609,593,221,25,4,16,8,8,8,0,81,,,,,,,13 +14610,593,305,1,33,17,9,9,9,0,81,,,,,,,13 +14611,593,231,64,24,10,10,10,10,0,81,,,,,,,13 +14612,593,187,34,28,15,11,11,11,0,80,,,,,,,14 +14613,593,280,66,15,20,12,12,12,0,80,,,,,,,14 +14614,593,250,63,18,14,13,13,13,0,78,,,,,,,16 +14615,593,314,77,23,25,14,14,14,0,76,,,,,,,20 +14616,593,197,58,17,12,,N,15,0,73,,,,,,,62 +14617,593,289,26,26,19,,R,16,0,43,,,,,,,5 +14618,593,232,80,20,7,,R,17,0,37,,,,,,,3 +14619,593,200,63,19,18,,R,18,0,35,,,,,,,6 +14620,593,296,66,37,22,,R,19,0,27,,,,,,,5 +14621,593,235,32,2,5,,R,20,0,26,,,,,,,23 +14622,593,238,32,1,2,,R,21,0,23,,,,,,,5 +14623,593,278,78,30,23,,R,22,0,22,,,,,,,23 +14624,593,313,34,8,24,,R,23,0,14,,,,,,,44 +14625,593,199,34,7,6,,R,24,0,12,,,,,,,20 +14626,593,306,66,14,11,,R,25,0,2,,,,,,,5 +14627,593,265,26,27,0,,F,26,0,0,,,,,,,81 +14628,593,311,80,21,0,,F,27,0,0,,,,,,,81 +14629,594,224,1,5,4,1,1,1,9,85,44:20.6,6260570,,,,,1 +14630,594,182,6,12,3,2,2,2,6,85,0.35,6260920,,,,,1 +14631,594,222,25,3,2,3,3,3,4,85,45.61,6306180,,,,,1 +14632,594,223,6,11,1,4,4,4,3,85,52.02,6312590,,,,,1 +14633,594,306,66,14,7,5,5,5,2,85,+1:08.05,6328620,,,,,1 +14634,594,304,1,6,12,6,6,6,1,85,+1:10.54,6331110,,,,,1 +14635,594,305,1,33,13,7,7,7,0,84,,,,,,,11 +14636,594,289,26,26,29,8,8,8,0,83,,,,,,,12 +14637,594,230,37,10,31,9,9,9,0,83,,,,,,,12 +14638,594,314,77,41,23,10,10,10,0,83,,,,,,,12 +14639,594,187,34,28,19,11,11,11,0,83,,,,,,,12 +14640,594,265,26,27,21,12,12,12,0,82,,,,,,,13 +14641,594,197,58,17,17,13,13,13,0,82,,,,,,,13 +14642,594,298,80,21,30,14,14,14,0,82,,,,,,,13 +14643,594,267,57,22,14,15,15,15,0,82,,,,,,,13 +14644,594,296,66,37,25,16,16,16,0,82,,,,,,,13 +14645,594,269,34,34,27,17,17,17,0,81,,,,,,,14 +14646,594,312,58,16,18,18,18,18,0,80,,,,,,,5 +14647,594,235,32,2,16,,R,19,0,72,,,,,,,25 +14648,594,252,79,42,20,,R,20,0,66,,,,,,,4 +14649,594,199,34,7,24,,R,21,0,62,,,,,,,5 +14650,594,238,32,1,5,,R,22,0,56,,,,,,,95 +14651,594,221,25,4,28,,R,23,0,53,,,,,,,23 +14652,594,200,63,19,26,,R,24,0,53,,,,,,,22 +14653,594,315,34,43,11,,R,25,0,53,,,,,,,27 +14654,594,250,63,18,8,,R,26,0,50,,,,,,,64 +14655,594,313,34,8,22,,R,27,0,49,,,,,,,5 +14656,594,231,64,24,9,,R,28,0,45,,,,,,,3 +14657,594,232,80,20,6,,R,29,0,29,,,,,,,7 +14658,594,280,66,15,15,,R,30,0,12,,,,,,,4 +14659,594,233,37,9,10,,R,31,0,6,,,,,,,8 +14660,594,316,63,44,0,,F,32,0,0,,,,,,,81 +14661,595,238,32,1,3,1,1,1,9,78,58:03.7,7083700,,,,,1 +14662,595,222,25,3,5,2,2,2,6,78,28.8,7112500,,,,,1 +14663,595,197,58,17,6,3,3,3,4,78,48.9,7132600,,,,,1 +14664,595,223,6,11,2,4,4,4,3,78,+1:03.1,7146800,,,,,1 +14665,595,224,1,5,13,5,5,5,2,77,,,,,,,11 +14666,595,187,34,28,23,6,6,6,1,77,,,,,,,11 +14667,595,289,26,26,21,7,7,7,0,76,,,,,,,12 +14668,595,265,26,27,26,8,8,8,0,75,,,,,,,13 +14669,595,221,25,4,4,9,9,9,0,74,,,,,,,14 +14670,595,280,66,15,27,,R,10,0,62,,,,,,,6 +14671,595,235,32,2,19,,R,11,0,34,,,,,,,5 +14672,595,182,6,12,1,,R,12,0,32,,,,,,,80 +14673,595,231,64,24,7,,R,13,0,27,,,,,,,86 +14674,595,305,1,33,10,,R,14,0,11,,,,,,,3 +14675,595,199,34,7,8,,R,15,0,5,,,,,,,22 +14676,595,296,66,37,22,,R,16,0,4,,,,,,,3 +14677,595,267,57,22,25,,R,17,0,4,,,,,,,3 +14678,595,233,37,9,9,,R,18,0,3,,,,,,,4 +14679,595,306,66,14,11,,R,19,0,0,,,,,,,4 +14680,595,304,1,6,12,,R,20,0,0,,,,,,,4 +14681,595,232,80,20,14,,R,21,0,0,,,,,,,4 +14682,595,230,37,10,15,,R,22,0,0,,,,,,,4 +14683,595,312,58,16,16,,R,23,0,0,,,,,,,4 +14684,595,250,63,18,18,,R,24,0,0,,,,,,,4 +14685,595,314,77,23,24,,R,25,0,0,,,,,,,4 +14686,595,200,63,19,17,,W,26,0,0,,,,,,,54 +14687,595,278,78,30,20,,W,27,0,0,,,,,,,54 +14688,595,313,34,8,0,,F,28,0,0,,,,,,,81 +14689,596,222,25,3,2,1,1,1,9,80,58:31.4,7111391,,,,,1 +14690,596,221,25,4,1,2,2,2,6,80,0.38,7111771,,,,,1 +14691,596,231,64,24,6,3,3,3,4,80,3.325,7114716,,,,,1 +14692,596,224,1,5,9,4,4,4,3,80,53.507,7164898,,,,,1 +14693,596,197,58,17,8,5,5,5,2,80,+1:16.403,7187794,,,,,1 +14694,596,289,26,26,15,6,6,6,1,79,,,,,,,11 +14695,596,265,26,27,18,7,7,7,0,79,,,,,,,11 +14696,596,311,80,21,21,8,8,8,0,79,,,,,,,11 +14697,596,313,34,8,20,9,9,9,0,79,,,,,,,11 +14698,596,230,37,10,17,10,10,10,0,78,,,,,,,5 +14699,596,187,34,28,14,11,11,11,0,77,,,,,,,13 +14700,596,267,57,22,26,,D,12,0,77,,,,,,,2 +14701,596,182,6,12,3,,R,13,0,70,,,,,,,6 +14702,596,317,37,9,16,,R,14,0,59,,,,,,,22 +14703,596,304,1,6,12,,R,15,0,56,,,,,,,22 +14704,596,200,63,19,22,,R,16,0,53,,,,,,,22 +14705,596,199,34,7,10,,R,17,0,30,,,,,,,44 +14706,596,235,32,2,7,,R,18,0,27,,,,,,,5 +14707,596,223,6,11,4,,R,19,0,24,,,,,,,6 +14708,596,250,63,18,24,,R,20,0,15,,,,,,,64 +14709,596,238,32,1,5,,R,21,0,8,,,,,,,86 +14710,596,316,63,23,25,,R,22,0,8,,,,,,,5 +14711,596,305,1,33,11,,R,23,0,5,,,,,,,95 +14712,596,306,66,14,13,,R,24,0,3,,,,,,,5 +14713,596,318,58,16,23,,R,25,0,2,,,,,,,6 +14714,596,280,66,15,19,,R,26,0,0,,,,,,,42 +14715,596,308,80,20,0,,F,27,0,0,,,,,,,81 +14716,597,182,6,12,1,1,1,1,9,75,43:00.4,6180350,,,,,1 +14717,597,223,6,11,2,2,2,2,6,75,8.25,6188600,,,,,1 +14718,597,224,1,5,3,3,3,3,4,75,30.27,6210620,,,,,1 +14719,597,305,1,33,4,4,4,4,3,75,31.29,6211640,,,,,1 +14720,597,222,25,3,5,5,5,5,2,75,34.28,6214630,,,,,1 +14721,597,221,25,4,8,6,6,6,1,75,51.52,6231870,,,,,1 +14722,597,187,34,28,13,7,7,7,0,75,+1:13.95,6254300,,,,,1 +14723,597,238,32,1,10,8,8,8,0,73,,,,,,,12 +14724,597,313,34,8,23,9,9,9,0,73,,,,,,,12 +14725,597,230,37,10,15,10,10,10,0,72,,,,,,,13 +14726,597,235,32,2,18,11,11,11,0,71,,,,,,,14 +14727,597,199,34,7,12,12,12,12,0,71,,,,,,,14 +14728,597,267,57,22,17,,D,13,0,69,,,,,,,2 +14729,597,304,1,6,9,,R,14,0,65,,,,,,,80 +14730,597,296,66,37,25,,R,15,0,60,,,,,,,6 +14731,597,232,80,20,21,,R,16,0,54,,,,,,,6 +14732,597,265,26,27,14,,R,17,0,36,,,,,,,69 +14733,597,197,58,17,7,,R,18,0,28,,,,,,,8 +14734,597,306,66,14,16,,R,19,0,18,,,,,,,6 +14735,597,289,26,26,19,,R,20,0,16,,,,,,,6 +14736,597,280,66,15,24,,R,21,0,15,,,,,,,64 +14737,597,200,63,19,20,,R,22,0,8,,,,,,,7 +14738,597,231,64,24,6,,R,23,0,2,,,,,,,4 +14739,597,252,58,16,11,,R,24,0,0,,,,,,,4 +14740,597,233,37,9,22,,R,25,0,0,,,,,,,3 +14741,597,314,77,23,0,,F,26,0,0,,,,,,,81 +14742,597,298,80,21,0,,F,27,0,0,,,,,,,81 +14743,598,238,32,1,2,1,1,1,9,80,21:55.0,4915020,,,,,1 +14744,598,182,6,12,1,2,2,2,6,80,20.36,4935380,,,,,1 +14745,598,223,6,11,4,3,3,3,4,80,27.84,4942860,,,,,1 +14746,598,222,25,3,7,4,4,4,3,80,28.11,4943130,,,,,1 +14747,598,235,32,2,13,5,5,5,2,80,37.54,4952560,,,,,1 +14748,598,304,1,6,11,6,6,6,1,80,38.14,4953160,,,,,1 +14749,598,305,1,33,6,7,7,7,0,79,,,,,,,11 +14750,598,221,25,4,9,8,8,8,0,79,,,,,,,11 +14751,598,232,80,20,15,9,9,9,0,79,,,,,,,11 +14752,598,306,66,14,17,10,10,10,0,79,,,,,,,11 +14753,598,230,37,10,16,11,11,11,0,79,,,,,,,11 +14754,598,197,58,17,12,12,12,12,0,79,,,,,,,11 +14755,598,289,26,26,21,13,13,13,0,78,,,,,,,12 +14756,598,296,66,37,22,14,14,14,0,78,,,,,,,12 +14757,598,265,26,27,20,15,15,15,0,77,,,,,,,13 +14758,598,187,34,28,14,16,16,16,0,76,,,,,,,14 +14759,598,224,1,5,5,,R,17,0,27,,,,,,,5 +14760,598,199,34,7,8,,R,18,0,24,,,,,,,64 +14761,598,200,63,19,18,,R,19,0,4,,,,,,,8 +14762,598,252,58,16,3,,R,20,0,1,,,,,,,4 +14763,598,280,66,15,19,,R,21,0,1,,,,,,,8 +14764,598,231,64,24,10,,R,22,0,0,,,,,,,4 +14765,598,267,57,22,0,,F,23,0,0,,,,,,,81 +14766,598,313,34,8,0,,F,24,0,0,,,,,,,81 +14767,598,250,34,34,0,,F,25,0,0,,,,,,,81 +14768,598,219,80,21,0,,F,26,0,0,,,,,,,81 +14769,598,233,37,9,0,,F,27,0,0,,,,,,,81 +14770,598,319,63,18,0,,F,28,0,0,,,,,,,81 +14771,598,316,63,23,0,,F,29,0,0,,,,,,,81 +14772,598,315,34,43,0,,F,30,0,0,,,,,,,81 +14773,599,222,25,3,3,1,1,1,9,75,43:02.2,6182200,,,,,1 +14774,599,224,1,5,8,2,2,2,6,75,15.3,6197500,,,,,1 +14775,599,235,32,2,12,3,3,3,4,75,+1:01.5,6243700,,,,,1 +14776,599,223,6,11,7,4,4,4,3,75,+1:07.2,6249400,,,,,1 +14777,599,182,6,12,1,5,5,5,2,74,,,,,,,11 +14778,599,199,34,7,4,6,6,6,1,74,,,,,,,11 +14779,599,304,1,6,19,7,7,7,0,74,,,,,,,11 +14780,599,252,58,16,5,8,8,8,0,74,,,,,,,11 +14781,599,250,34,8,20,9,9,9,0,74,,,,,,,11 +14782,599,238,32,1,2,10,10,10,0,73,,,,,,,12 +14783,599,187,34,28,13,11,11,11,0,73,,,,,,,12 +14784,599,306,66,14,23,12,12,12,0,72,,,,,,,13 +14785,599,289,26,26,22,13,13,13,0,69,,,,,,,16 +14786,599,200,63,19,17,14,14,14,0,68,,,,,,,17 +14787,599,280,66,15,24,,R,15,0,64,,,,,,,5 +14788,599,296,66,37,14,,N,16,0,62,,,,,,,62 +14789,599,305,1,33,11,,R,17,0,57,,,,,,,20 +14790,599,197,58,17,16,,R,18,0,45,,,,,,,22 +14791,599,233,37,9,9,,R,19,0,36,,,,,,,3 +14792,599,221,25,4,10,,R,20,0,35,,,,,,,5 +14793,599,232,80,20,15,,R,21,0,25,,,,,,,5 +14794,599,230,37,10,16,,R,22,0,17,,,,,,,69 +14795,599,314,77,23,25,,R,23,0,6,,,,,,,22 +14796,599,231,64,24,6,,R,24,0,2,,,,,,,22 +14797,599,320,26,27,21,,R,25,0,0,,,,,,,68 +14798,599,259,79,42,0,,F,26,0,0,,,,,,,81 +14799,599,321,63,18,0,,F,27,0,0,,,,,,,81 +14800,599,311,80,21,0,,F,28,0,0,,,,,,,81 +14801,599,275,34,208,0,,F,29,0,0,,,,,,,81 +14802,599,267,57,22,0,,F,30,0,0,,,,,,,81 +14803,599,300,76,29,0,,F,31,0,0,,,,,,,81 +14804,599,307,74,25,0,,F,32,0,0,,,,,,,81 +14805,599,283,37,35,0,,F,33,0,0,,,,,,,81 +14806,599,316,63,43,0,,F,34,0,0,,,,,,,81 +14807,600,223,6,11,2,1,1,1,9,14,41:35.0,6095000,,,,,1 +14808,600,222,25,3,4,2,2,2,6,14,50.7,6145700,,,,,1 +14809,600,199,34,7,6,3,3,3,4,14,+1:23.3,6178300,,,,,1 +14810,600,238,32,1,8,4,4,4,3,14,+1:24.2,6179200,,,,,1 +14811,600,235,32,2,9,5,5,5,2,14,+1:25.0,6180000,,,,,1 +14812,600,252,58,16,11,6,6,6,1,14,+2:18.1,6233100,,,,,1 +14813,600,233,37,9,20,7,7,7,0,14,+2:58.7,6273700,,,,,1 +14814,600,197,58,17,18,8,8,8,0,14,+3:25.9,6300900,,,,,1 +14815,600,289,26,26,19,9,9,9,0,14,+3:26.4,6301400,,,,,1 +14816,600,280,66,15,24,10,10,10,0,14,+4:17.7,6352700,,,,,1 +14817,600,321,63,18,25,11,11,11,0,14,+5:17.7,6412700,,,,,1 +14818,600,250,34,8,17,12,12,12,0,14,+6:26.3,6481300,,,,,1 +14819,600,230,37,10,23,13,13,13,0,14,+8:43.1,6618100,,,,,1 +14820,600,270,79,32,20,14,14,14,0,13,,,,,,,11 +14821,600,305,1,33,12,15,15,15,0,12,,,,,,,3 +14822,600,200,63,19,13,,R,16,0,10,,,,,,,5 +14823,600,231,64,24,10,,R,17,0,10,,,,,,,6 +14824,600,221,25,4,5,,R,18,0,5,,,,,,,3 +14825,600,232,80,20,16,,R,19,0,5,,,,,,,37 +14826,600,306,66,14,15,,R,20,0,4,,,,,,,69 +14827,600,267,57,22,22,,R,21,0,4,,,,,,,6 +14828,600,224,1,5,3,,R,22,0,2,,,,,,,22 +14829,600,172,80,21,21,,R,23,0,2,,,,,,,22 +14830,600,187,34,28,14,,R,24,0,1,,,,,,,22 +14831,600,182,6,12,1,,R,25,0,0,,,,,,,3 +14832,600,304,1,6,7,,R,26,0,0,,,,,,,3 +14833,600,296,66,37,0,,F,27,0,0,,,,,,,81 +14834,600,314,77,23,0,,F,28,0,0,,,,,,,81 +14835,600,265,26,27,0,,F,29,0,0,,,,,,,81 +14836,600,256,78,30,0,,F,30,0,0,,,,,,,81 +14837,600,278,78,30,0,,F,31,0,0,,,,,,,81 +14838,600,307,74,25,0,,F,32,0,0,,,,,,,81 +14839,601,199,34,7,2,1,1,1,9,54,28:44.7,5324720,,,,,1 +14840,601,304,1,6,10,2,2,2,6,54,42.92,5367640,,,,,1 +14841,601,231,64,24,7,3,3,3,4,54,+1:01.54,5386260,,,,,1 +14842,601,187,34,28,11,4,4,4,3,54,+1:09.39,5394110,,,,,1 +14843,601,223,6,11,8,5,5,5,2,54,+1:13.08,5397800,,,,,1 +14844,601,230,37,10,20,6,6,6,1,54,+1:13.82,5398540,,,,,1 +14845,601,322,1,33,17,7,7,7,0,53,,,,,,,11 +14846,601,197,58,17,23,8,8,8,0,52,,,,,,,12 +14847,601,323,63,30,25,9,9,9,0,51,,,,,,,13 +14848,601,314,77,23,19,10,10,10,0,50,,,,,,,14 +14849,601,233,37,9,15,11,11,11,0,48,,,,,,,22 +14850,601,289,26,26,21,12,12,12,0,48,,,,,,,16 +14851,601,270,79,35,24,,N,13,0,46,,,,,,,62 +14852,601,238,32,1,6,,R,14,0,45,,,,,,,86 +14853,601,235,32,2,22,,R,15,0,43,,,,,,,4 +14854,601,221,25,4,14,,R,16,0,42,,,,,,,4 +14855,601,250,34,8,4,,R,17,0,41,,,,,,,95 +14856,601,224,1,5,3,,R,18,0,37,,,,,,,5 +14857,601,172,80,21,12,,N,19,0,37,,,,,,,62 +14858,601,232,80,20,9,,R,20,0,24,,,,,,,69 +14859,601,252,58,16,16,,R,21,0,22,,,,,,,20 +14860,601,306,66,14,18,,R,22,0,22,,,,,,,5 +14861,601,182,6,12,1,,R,23,0,17,,,,,,,5 +14862,601,243,26,27,13,,R,24,0,14,,,,,,,3 +14863,601,222,25,3,5,,R,25,0,8,,,,,,,5 +14864,601,251,64,31,0,,F,26,0,0,,,,,,,81 +14865,601,316,63,43,0,,F,27,0,0,,,,,,,81 +14866,601,321,63,18,0,,F,28,0,0,,,,,,,81 +14867,601,283,57,22,0,,F,29,0,0,,,,,,,81 +14868,601,219,63,19,0,,F,30,0,0,,,,,,,81 +14869,601,324,34,32,0,,F,31,0,0,,,,,,,81 +14870,602,238,32,1,7,1,1,1,9,52,22:56.6,4976600,,,,,1 +14871,602,224,1,5,6,2,2,2,6,52,0.8,4977400,,,,,1 +14872,602,222,25,3,12,3,3,3,4,52,24.7,5001300,,,,,1 +14873,602,232,80,20,15,4,4,4,3,52,+1:27.7,5064300,,,,,1 +14874,602,250,34,8,3,5,5,5,2,51,,,,,,,11 +14875,602,304,1,6,19,6,6,6,1,51,,,,,,,11 +14876,602,187,34,28,4,7,7,7,0,51,,,,,,,11 +14877,602,289,26,26,21,8,8,8,0,51,,,,,,,11 +14878,602,322,1,33,23,9,9,9,0,51,,,,,,,11 +14879,602,252,58,16,22,10,10,10,0,50,,,,,,,12 +14880,602,221,25,4,10,11,11,11,0,50,,,,,,,12 +14881,602,223,6,11,5,,R,12,0,40,,,,,,,5 +14882,602,182,6,12,1,,R,13,0,32,,,,,,,5 +14883,602,235,32,2,16,,R,14,0,30,,,,,,,37 +14884,602,243,26,27,14,,R,15,0,25,,,,,,,22 +14885,602,172,80,21,17,,R,16,0,22,,,,,,,5 +14886,602,197,58,17,9,,R,17,0,19,,,,,,,5 +14887,602,230,37,10,13,,R,18,0,16,,,,,,,3 +14888,602,314,77,29,20,,R,19,0,15,,,,,,,6 +14889,602,199,34,7,2,,R,20,0,12,,,,,,,6 +14890,602,233,37,9,18,,R,21,0,11,,,,,,,83 +14891,602,280,66,15,25,,R,22,0,3,,,,,,,5 +14892,602,231,64,24,8,,R,23,0,2,,,,,,,5 +14893,602,296,66,37,24,,R,24,0,1,,,,,,,6 +14894,602,306,66,14,11,,R,25,0,0,,,,,,,10 +14895,602,319,63,19,0,,F,26,0,0,,,,,,,81 +14896,602,325,34,31,0,,F,27,0,0,,,,,,,81 +14897,602,321,63,18,0,,F,28,0,0,,,,,,,81 +14898,602,283,57,25,0,,F,29,0,0,,,,,,,81 +14899,602,278,78,30,0,,F,30,0,0,,,,,,,81 +14900,602,316,63,23,0,,F,31,0,0,,,,,,,81 +14901,603,224,1,5,1,1,1,1,9,80,40:26.1,6026136,,,,,1 +14902,603,223,6,11,6,2,2,2,6,80,13.034,6039170,,,,,1 +14903,603,238,32,1,10,3,3,3,4,80,14.494,6040630,,,,,1 +14904,603,231,64,24,8,4,4,4,3,80,15.669,6041805,,,,,1 +14905,603,221,25,4,7,5,5,5,2,80,55.322,6081458,,,,,1 +14906,603,304,1,6,14,6,6,6,1,79,,,,,,,11 +14907,603,207,73,55,16,7,7,7,0,79,,,,,,,11 +14908,603,250,34,8,9,8,8,8,0,79,,,,,,,11 +14909,603,199,34,7,4,9,9,9,0,79,,,,,,,11 +14910,603,324,63,19,22,10,10,10,0,78,,,,,,,12 +14911,603,243,26,27,11,11,11,11,0,78,,,,,,,12 +14912,603,288,67,66,24,12,12,12,0,78,,,,,,,12 +14913,603,235,32,2,21,13,13,13,0,78,,,,,,,12 +14914,603,289,26,26,20,14,14,14,0,77,,,,,,,13 +14915,603,172,80,21,18,15,15,15,0,74,,,,,,,29 +14916,603,200,1,33,12,16,16,16,0,72,,,,,,,18 +14917,603,278,66,15,25,,N,17,0,70,,,,,,,62 +14918,603,182,6,12,2,,R,18,0,67,,,,,,,3 +14919,603,252,58,16,13,,R,19,0,65,,,,,,,5 +14920,603,187,34,28,15,,R,20,0,61,,,,,,,22 +14921,603,306,66,14,17,,N,21,0,60,,,,,,,62 +14922,603,222,25,3,3,,R,22,0,48,,,,,,,23 +14923,603,197,58,17,5,,R,23,0,46,,,,,,,86 +14924,603,232,80,20,19,,R,24,0,40,,,,,,,64 +14925,603,326,34,50,26,,R,25,0,33,,,,,,,5 +14926,603,233,37,9,23,,R,26,0,12,,,,,,,69 +14927,603,321,63,18,0,,F,27,0,0,,,,,,,81 +14928,603,283,57,22,0,,F,28,0,0,,,,,,,81 +14929,603,230,37,10,0,,F,29,0,0,,,,,,,81 +14930,603,270,34,42,0,,F,30,0,0,,,,,,,81 +14931,604,199,34,7,1,1,1,1,9,59,40:21.4,6021439,,,,,1 +14932,604,250,34,8,4,2,2,2,6,59,10.735,6032174,,,,,1 +14933,604,231,64,24,2,3,3,3,4,59,+1:10.384,6091823,,,,,1 +14934,604,224,1,5,8,4,4,4,3,59,+1:17.753,6099192,,,,,1 +14935,604,187,34,28,7,5,5,5,2,59,+1:25.804,6107243,,,,,1 +14936,604,221,25,4,13,6,6,6,1,59,+1:27.506,6108945,,,,,1 +14937,604,200,1,33,20,7,7,7,0,59,+1:30.012,6111451,,,,,1 +14938,604,289,26,26,24,8,8,8,0,58,,,,,,,11 +14939,604,278,66,15,12,9,9,9,0,57,,,,,,,12 +14940,604,197,58,17,10,10,10,10,0,57,,,,,,,12 +14941,604,223,6,11,9,11,11,11,0,55,,,,,,,14 +14942,604,243,26,27,21,12,12,12,0,54,,,,,,,15 +14943,604,238,32,1,19,,R,13,0,52,,,,,,,69 +14944,604,283,57,22,22,,N,14,0,50,,,,,,,62 +14945,604,252,58,16,18,,N,15,0,47,,,,,,,62 +14946,604,222,25,3,6,,R,16,0,44,,,,,,,69 +14947,604,232,80,20,15,,R,17,0,43,,,,,,,10 +14948,604,182,6,12,5,,R,18,0,38,,,,,,,22 +14949,604,172,80,21,11,,R,19,0,31,,,,,,,5 +14950,604,288,67,66,14,,R,20,0,27,,,,,,,22 +14951,604,319,63,18,26,,W,21,0,25,,,,,,,54 +14952,604,230,37,10,25,,R,22,0,21,,,,,,,69 +14953,604,324,63,19,23,,R,23,0,9,,,,,,,104 +14954,604,235,32,2,16,,R,24,0,7,,,,,,,22 +14955,604,314,32,31,27,,D,25,0,6,,,,,,,2 +14956,604,207,73,55,3,,D,26,0,4,,,,,,,2 +14957,604,304,1,6,17,,R,27,0,4,,,,,,,5 +14958,604,233,37,9,0,,F,28,0,0,,,,,,,81 +14959,604,270,34,42,0,,F,29,0,0,,,,,,,81 +14960,604,306,66,14,0,,F,30,0,0,,,,,,,81 +14961,605,224,32,2,2,1,1,1,9,96,56:18.2,6978220,,,,,1 +14962,605,327,25,8,6,2,2,2,6,96,4.69,6982910,,,,,1 +14963,605,328,25,6,4,3,3,3,4,96,33.19,7011410,,,,,1 +14964,605,235,6,18,3,4,4,4,3,96,42.57,7020790,,,,,1 +14965,605,304,1,14,8,5,5,5,2,95,,,,,,,11 +14966,605,290,34,12,13,6,6,6,1,95,,,,,,,11 +14967,605,223,66,32,1,7,7,7,0,93,,,,,,,13 +14968,605,309,1,16,11,8,8,8,0,92,,,,,,,14 +14969,605,232,6,20,14,9,9,9,0,92,,,,,,,14 +14970,605,329,37,22,18,10,10,10,0,90,,,,,,,22 +14971,605,197,37,24,17,,R,11,0,84,,,,,,,21 +14972,605,306,66,30,7,,R,12,0,79,,,,,,,5 +14973,605,307,80,38,19,,N,13,0,79,,,,,,,62 +14974,605,238,32,4,5,,R,14,0,67,,,,,,,51 +14975,605,182,66,34,13,,R,15,0,66,,,,,,,51 +14976,605,199,34,10,9,,R,16,0,16,,,,,,,6 +14977,605,305,63,26,10,,R,17,0,10,,,,,,,86 +14978,605,250,63,28,15,,R,18,0,10,,,,,,,22 +14979,605,330,80,36,16,,R,19,0,0,,,,,,,5 +14980,606,224,32,1,2,1,1,1,9,40,43:55.6,6235600,,,,,1 +14981,606,328,25,3,8,2,2,2,6,40,13.5,6249100,,,,,1 +14982,606,304,1,7,5,3,3,3,4,40,+1:46.4,6342000,,,,,1 +14983,606,232,6,10,17,4,4,4,3,39,,,,,,,11 +14984,606,235,6,9,3,5,5,5,2,39,,,,,,,11 +14985,606,223,66,14,4,6,6,6,1,39,,,,,,,11 +14986,606,307,80,19,14,7,7,7,0,39,,,,,,,11 +14987,606,182,66,16,13,8,8,8,0,38,,,,,,,12 +14988,606,330,80,20,18,9,9,9,0,38,,,,,,,12 +14989,606,327,25,4,9,10,10,10,0,38,,,,,,,12 +14990,606,199,34,17,7,11,11,11,0,38,,,,,,,12 +14991,606,331,63,23,20,12,12,12,0,36,,,,,,,14 +14992,606,306,66,15,10,,R,13,0,23,,,,,,,10 +14993,606,329,37,12,19,,R,14,0,18,,,,,,,25 +14994,606,250,63,6,6,,R,15,0,9,,,,,,,22 +14995,606,305,63,5,14,,R,16,0,6,,,,,,,6 +14996,606,197,37,11,15,,R,17,0,6,,,,,,,6 +14997,606,238,32,2,1,,R,18,0,5,,,,,,,36 +14998,606,290,34,18,11,,R,19,0,5,,,,,,,25 +14999,606,309,1,8,12,,R,20,0,3,,,,,,,6 +15000,607,328,25,3,16,1,1,1,9,79,43:11.1,6191070,,,,,1 +15001,607,309,1,6,6,2,2,2,6,79,24.55,6215620,,,,,1 +15002,607,224,32,1,2,3,3,3,4,79,25.06,6216130,,,,,1 +15003,607,232,6,9,15,4,4,4,3,78,,,,,,,11 +15004,607,304,1,5,1,5,5,5,2,77,,,,,,,12 +15005,607,332,58,23,21,6,6,6,1,77,,,,,,,12 +15006,607,199,34,18,8,7,7,7,0,77,,,,,,,12 +15007,607,333,63,12,20,8,8,8,0,77,,,,,,,12 +15008,607,222,1,7,3,9,9,9,0,75,,,,,,,5 +15009,607,307,80,21,19,10,10,10,0,73,,,,,,,16 +15010,607,238,32,2,4,11,11,11,0,73,,,,,,,16 +15011,607,250,63,11,9,,R,12,0,69,,,,,,,3 +15012,607,292,25,26,22,,N,13,0,67,,,,,,,62 +15013,607,197,37,14,18,,N,14,0,66,,,,,,,62 +15014,607,327,25,4,25,,N,15,0,66,,,,,,,62 +15015,607,329,37,24,23,,N,16,0,65,,,,,,,62 +15016,607,290,34,19,17,,R,17,0,52,,,,,,,6 +15017,607,334,80,20,24,,R,18,0,35,,,,,,,25 +15018,607,182,66,17,10,,R,19,0,26,,,,,,,5 +15019,607,262,58,22,14,,R,20,0,14,,,,,,,5 +15020,607,306,66,16,7,,R,21,0,4,,,,,,,8 +15021,607,293,32,25,13,,R,22,0,3,,,,,,,3 +15022,607,223,66,15,5,,R,23,0,2,,,,,,,3 +15023,607,235,6,8,11,,R,24,0,2,,,,,,,3 +15024,607,305,63,10,12,,R,25,0,2,,,,,,,3 +15025,608,224,32,1,7,1,1,1,9,75,48:18.7,6498700,,,,,1 +15026,608,327,25,4,3,2,2,2,6,75,42.7,6541400,,,,,1 +15027,608,332,58,20,14,3,3,3,4,75,+1:13.1,6571800,,,,,1 +15028,608,309,1,6,5,4,4,4,3,74,,,,,,,11 +15029,608,306,66,15,10,5,5,5,2,74,,,,,,,11 +15030,608,304,1,5,2,6,6,6,1,74,,,,,,,11 +15031,608,329,37,12,19,7,7,7,0,74,,,,,,,11 +15032,608,280,37,11,18,8,8,8,0,73,,,,,,,12 +15033,608,223,66,14,8,9,9,9,0,69,,,,,,,16 +15034,608,290,34,17,12,10,10,10,0,69,,,,,,,16 +15035,608,330,80,24,20,11,11,11,0,69,,,,,,,16 +15036,608,235,6,7,6,12,12,12,0,69,,,,,,,16 +15037,608,199,34,18,15,,R,13,0,66,,,,,,,86 +15038,608,307,80,23,21,,R,14,0,63,,,,,,,60 +15039,608,238,32,2,1,,R,15,0,56,,,,,,,6 +15040,608,328,25,3,4,,R,16,0,47,,,,,,,23 +15041,608,182,66,16,11,,R,17,0,28,,,,,,,27 +15042,608,289,58,25,22,,R,18,0,27,,,,,,,23 +15043,608,305,63,9,9,,R,19,0,25,,,,,,,44 +15044,608,262,58,19,13,,R,20,0,23,,,,,,,5 +15045,608,333,34,21,17,,R,21,0,17,,,,,,,36 +15046,608,250,63,10,16,,R,22,0,13,,,,,,,86 +15047,609,328,25,5,6,1,1,1,9,70,42:13.4,6133430,,,,,1 +15048,609,327,25,6,4,2,2,2,6,70,31.84,6165270,,,,,1 +15049,609,224,32,1,9,3,3,3,4,70,+2:02.79,6256220,,,,,1 +15050,609,333,34,9,18,4,4,4,3,69,,,,,,,11 +15051,609,182,66,21,14,5,5,5,2,69,,,,,,,11 +15052,609,278,81,22,15,6,6,6,1,67,,,,,,,13 +15053,609,304,1,7,2,7,7,7,0,67,,,,,,,13 +15054,609,250,63,24,8,8,8,8,0,66,,,,,,,14 +15055,609,289,58,12,23,9,9,9,0,65,,,,,,,15 +15056,609,223,66,19,12,10,10,10,0,63,,,,,,,3 +15057,609,329,37,15,20,11,11,11,0,63,,,,,,,3 +15058,609,197,37,14,16,,R,12,0,60,,,,,,,3 +15059,609,306,66,20,5,,N,13,0,56,,,,,,,62 +15060,609,290,34,11,19,,R,14,0,46,,,,,,,5 +15061,609,238,32,2,1,,R,15,0,42,,,,,,,3 +15062,609,309,1,8,10,,R,16,0,33,,,,,,,3 +15063,609,307,80,25,21,,R,17,0,16,,,,,,,3 +15064,609,199,34,10,7,,R,18,0,14,,,,,,,5 +15065,609,332,58,16,11,,R,19,0,13,,,,,,,37 +15066,609,262,58,17,22,,R,20,0,11,,,,,,,3 +15067,609,235,6,3,3,,R,21,0,6,,,,,,,94 +15068,609,330,80,26,17,,R,22,0,6,,,,,,,5 +15069,609,305,63,23,13,,R,23,0,4,,,,,,,3 +15070,610,328,25,5,1,1,1,1,9,78,57:44.3,7064300,,,,,1 +15071,610,224,32,1,5,2,2,2,6,78,1.3,7065600,,,,,1 +15072,610,238,32,2,2,3,3,3,4,77,,,,,,,11 +15073,610,327,25,6,4,4,4,4,3,77,,,,,,,11 +15074,610,309,1,8,15,5,5,5,2,76,,,,,,,12 +15075,610,304,1,7,3,6,6,6,1,76,,,,,,,12 +15076,610,333,34,9,25,7,7,7,0,75,,,,,,,13 +15077,610,305,63,23,13,8,8,8,0,75,,,,,,,13 +15078,610,231,37,27,18,9,9,9,0,73,,,,,,,5 +15079,610,262,58,17,22,10,10,10,0,72,,,,,,,16 +15080,610,290,34,11,9,11,11,11,0,71,,,,,,,69 +15081,610,197,37,14,14,,R,12,0,67,,,,,,,6 +15082,610,289,58,12,24,,R,13,0,62,,,,,,,22 +15083,610,232,6,4,16,,R,14,0,58,,,,,,,51 +15084,610,199,34,10,19,,R,15,0,46,,,,,,,6 +15085,610,235,6,3,7,,R,16,0,44,,,,,,,86 +15086,610,307,80,25,10,,R,17,0,41,,,,,,,86 +15087,610,306,66,20,11,,R,18,0,39,,,,,,,3 +15088,610,250,63,24,17,,R,19,0,31,,,,,,,86 +15089,610,259,37,18,23,,R,20,0,31,,,,,,,95 +15090,610,330,80,26,21,,R,21,0,30,,,,,,,86 +15091,610,182,66,21,6,,R,22,0,24,,,,,,,6 +15092,610,278,81,22,12,,R,23,0,22,,,,,,,25 +15093,610,223,66,19,8,,R,24,0,15,,,,,,,23 +15094,610,329,37,15,20,,R,25,0,3,,,,,,,5 +15095,611,304,1,7,6,1,1,1,9,80,56:46.0,7006049,,,,,1 +15096,611,238,32,2,1,2,2,2,6,80,4.039,7010088,,,,,1 +15097,611,327,25,6,2,3,3,3,4,80,14.667,7020716,,,,,1 +15098,611,199,34,10,5,4,4,4,3,80,18.068,7024117,,,,,1 +15099,611,328,25,5,3,5,5,5,2,80,25.998,7032047,,,,,1 +15100,611,235,6,3,8,6,6,6,1,79,,,,,,,11 +15101,611,309,1,8,7,7,7,7,0,79,,,,,,,11 +15102,611,329,37,15,21,8,8,8,0,78,,,,,,,12 +15103,611,223,66,19,12,9,9,9,0,77,,,,,,,13 +15104,611,250,63,24,16,10,10,10,0,77,,,,,,,13 +15105,611,307,80,25,11,11,11,11,0,77,,,,,,,13 +15106,611,224,32,1,4,12,12,12,0,76,,,,,,,6 +15107,611,182,66,21,15,13,13,13,0,75,,,,,,,15 +15108,611,332,58,16,19,14,14,14,0,74,,,,,,,16 +15109,611,306,66,20,9,,R,15,0,57,,,,,,,5 +15110,611,262,58,17,17,,R,16,0,50,,,,,,,22 +15111,611,305,63,23,10,,R,17,0,41,,,,,,,27 +15112,611,197,37,14,20,,R,18,0,38,,,,,,,37 +15113,611,289,58,12,18,,R,19,0,16,,,,,,,80 +15114,611,290,34,11,12,,R,20,0,0,,,,,,,3 +15115,611,317,37,27,14,,R,21,0,0,,,,,,,22 +15116,612,238,32,2,5,1,1,1,9,54,41:36.5,6096520,,,,,1 +15117,612,327,25,6,4,2,2,2,6,54,40.92,6137440,,,,,1 +15118,612,199,34,10,8,3,3,3,4,54,46.48,6143000,,,,,1 +15119,612,328,25,5,1,4,4,4,3,54,46.93,6143450,,,,,1 +15120,612,235,6,3,12,5,5,5,2,54,48.9,6145420,,,,,1 +15121,612,231,37,27,14,6,6,6,1,54,+1:22.54,6179060,,,,,1 +15122,612,232,6,4,10,7,7,7,0,54,+1:29.19,6185710,,,,,1 +15123,612,304,1,7,6,8,8,8,0,54,+1:29.53,6186050,,,,,1 +15124,612,182,66,21,17,9,9,9,0,54,+1:45.76,6202280,,,,,1 +15125,612,289,58,12,16,10,10,10,0,53,,,,,,,11 +15126,612,306,66,20,15,11,11,11,0,53,,,,,,,11 +15127,612,223,66,19,9,12,12,12,0,53,,,,,,,11 +15128,612,250,63,24,18,13,13,13,0,51,,,,,,,13 +15129,612,307,80,25,24,14,14,14,0,51,,,,,,,13 +15130,612,313,57,29,25,15,15,15,0,51,,,,,,,13 +15131,612,290,34,11,19,16,16,16,0,50,,,,,,,14 +15132,612,222,1,8,2,,R,17,0,43,,,,,,,3 +15133,612,224,32,1,3,,R,18,0,41,,,,,,,3 +15134,612,305,63,23,11,,R,19,0,29,,,,,,,44 +15135,612,333,34,9,13,,R,20,0,28,,,,,,,86 +15136,612,317,37,15,22,,R,21,0,20,,,,,,,25 +15137,612,332,58,16,20,,R,22,0,16,,,,,,,69 +15138,612,280,80,26,23,,R,23,0,16,,,,,,,25 +15139,612,197,37,14,7,,R,24,0,7,,,,,,,86 +15140,612,262,58,17,21,,R,25,0,0,,,,,,,8 +15141,613,309,1,8,3,1,1,1,9,67,29:18.5,5358500,,,,,1 +15142,613,238,32,2,1,2,2,2,6,67,2.8,5361300,,,,,1 +15143,613,304,1,7,2,3,3,3,4,67,3,5361500,,,,,1 +15144,613,231,37,27,11,4,4,4,3,67,3.4,5361900,,,,,1 +15145,613,327,25,6,7,5,5,5,2,67,36.6,5395100,,,,,1 +15146,613,199,34,10,8,6,6,6,1,67,44.7,5403200,,,,,1 +15147,613,223,66,19,10,7,7,7,0,67,+1:11.7,5430200,,,,,1 +15148,613,235,6,3,19,8,8,8,0,67,+1:17.4,5435900,,,,,1 +15149,613,307,80,25,18,9,9,9,0,66,,,,,,,11 +15150,613,328,25,5,4,10,10,10,0,66,,,,,,,11 +15151,613,329,37,15,24,11,11,11,0,65,,,,,,,12 +15152,613,182,66,21,9,12,12,12,0,63,,,,,,,14 +15153,613,313,57,28,21,13,13,13,0,61,,,,,,,16 +15154,613,290,34,11,13,,R,14,0,44,,,,,,,44 +15155,613,224,32,1,5,,R,15,0,36,,,,,,,7 +15156,613,187,34,29,23,,R,16,0,36,,,,,,,69 +15157,613,289,58,12,27,,R,17,0,24,,,,,,,83 +15158,613,278,81,22,29,,R,18,0,6,,,,,,,69 +15159,613,222,1,30,6,,R,19,0,0,,,,,,,4 +15160,613,305,63,23,12,,R,20,0,0,,,,,,,4 +15161,613,200,63,31,14,,R,21,0,0,,,,,,,4 +15162,613,250,63,24,15,,R,22,0,0,,,,,,,4 +15163,613,306,66,20,17,,R,23,0,0,,,,,,,4 +15164,613,333,34,9,20,,R,24,0,0,,,,,,,4 +15165,613,335,37,14,22,,R,25,0,0,,,,,,,4 +15166,613,332,58,16,25,,R,26,0,0,,,,,,,4 +15167,613,262,58,17,26,,R,27,0,0,,,,,,,4 +15168,613,336,80,26,28,,R,28,0,0,,,,,,,37 +15169,613,259,37,18,16,,R,29,0,0,,,,,,,20 +15170,614,328,25,5,2,1,1,1,9,72,39:12.5,5952450,,,,,1 +15171,614,327,25,6,3,2,2,2,6,72,15.83,5968280,,,,,1 +15172,614,231,37,27,7,3,3,3,4,72,+1:03.01,6015460,,,,,1 +15173,614,309,1,8,6,4,4,4,3,72,+1:09.13,6021580,,,,,1 +15174,614,306,66,20,9,5,5,5,2,72,+1:13.37,6025820,,,,,1 +15175,614,298,80,26,20,6,6,6,1,70,,,,,,,12 +15176,614,250,63,24,8,7,7,7,0,69,,,,,,,13 +15177,614,223,66,19,12,8,8,8,0,68,,,,,,,14 +15178,614,307,80,25,15,9,9,9,0,68,,,,,,,14 +15179,614,332,58,16,22,10,10,10,0,67,,,,,,,15 +15180,614,238,32,2,1,11,11,11,0,66,,,,,,,5 +15181,614,289,58,12,17,,N,12,0,56,,,,,,,62 +15182,614,182,66,21,11,,R,13,0,52,,,,,,,48 +15183,614,305,63,23,24,,R,14,0,52,,,,,,,10 +15184,614,304,1,7,4,,R,15,0,31,,,,,,,5 +15185,614,290,34,11,13,,R,16,0,27,,,,,,,3 +15186,614,278,81,22,19,,R,17,0,22,,,,,,,69 +15187,614,199,34,10,5,,R,18,0,9,,,,,,,27 +15188,614,259,37,18,21,,R,19,0,8,,,,,,,54 +15189,614,335,37,14,18,,R,20,0,7,,,,,,,3 +15190,614,224,32,1,16,,R,21,0,2,,,,,,,68 +15191,614,329,37,15,23,,R,22,0,2,,,,,,,10 +15192,614,262,58,17,10,,R,23,0,1,,,,,,,3 +15193,614,313,57,28,14,,W,24,0,0,,,,,,,54 +15194,615,328,25,5,1,1,1,1,9,14,42:03.0,6123000,,,,,1 +15195,615,327,25,6,3,2,2,2,6,14,1.6,6124600,,,,,1 +15196,615,235,1,30,4,3,3,3,4,14,41.2,6164200,,,,,1 +15197,615,250,63,24,11,4,4,4,3,14,53.8,6176800,,,,,1 +15198,615,290,34,11,13,5,5,5,2,14,+1:19.9,6202900,,,,,1 +15199,615,224,32,1,14,6,6,6,1,14,+1:24.3,6207300,,,,,1 +15200,615,200,63,31,15,7,7,7,0,14,+1:25.2,6208200,,,,,1 +15201,615,262,58,17,17,8,8,8,0,14,+1:25.7,6208700,,,,,1 +15202,615,309,1,8,7,9,9,9,0,14,+2:11.8,6254800,,,,,1 +15203,615,280,80,26,12,10,10,10,0,14,+2:22.5,6265500,,,,,1 +15204,615,243,34,9,16,11,11,11,0,14,+3:27.3,6330300,,,,,1 +15205,615,304,1,7,8,12,12,12,0,14,+3:38.7,6341700,,,,,1 +15206,615,289,58,12,20,13,13,13,0,14,+3:49.0,6352000,,,,,1 +15207,615,305,63,23,18,14,14,14,0,13,,,,,,,11 +15208,615,259,37,18,22,15,15,15,0,13,,,,,,,11 +15209,615,329,37,15,19,16,16,16,0,13,,,,,,,11 +15210,615,199,34,10,6,,R,17,0,7,,,,,,,5 +15211,615,223,66,19,10,,R,18,0,7,,,,,,,5 +15212,615,332,58,16,21,,R,19,0,5,,,,,,,3 +15213,615,306,66,20,9,,R,20,0,4,,,,,,,6 +15214,615,182,66,21,5,,R,21,0,1,,,,,,,3 +15215,615,238,32,2,2,,R,22,0,0,,,,,,,80 +15216,616,238,32,2,2,1,1,1,9,54,28:48.8,5328780,,,,,1 +15217,616,328,25,5,7,2,2,2,6,54,9.01,5337790,,,,,1 +15218,616,250,63,24,8,3,3,3,4,54,46.64,5375420,,,,,1 +15219,616,199,34,10,5,4,4,4,3,54,47.91,5376690,,,,,1 +15220,616,306,66,20,13,5,5,5,2,54,+1:21.30,5410080,,,,,1 +15221,616,223,66,19,14,6,6,6,1,54,+1:38.40,5427180,,,,,1 +15222,616,232,6,4,6,7,7,7,0,53,,,,,,,11 +15223,616,304,1,7,3,8,8,8,0,53,,,,,,,11 +15224,616,298,80,26,23,9,9,9,0,52,,,,,,,12 +15225,616,305,63,23,15,10,10,10,0,49,,,,,,,15 +15226,616,224,32,1,1,,R,11,0,48,,,,,,,69 +15227,616,307,80,25,21,,N,12,0,44,,,,,,,62 +15228,616,197,37,18,12,,R,13,0,37,,,,,,,5 +15229,616,313,57,28,19,,R,14,0,34,,,,,,,69 +15230,616,290,34,11,16,,R,15,0,31,,,,,,,69 +15231,616,289,58,12,22,,R,16,0,28,,,,,,,22 +15232,616,332,58,16,20,,R,17,0,23,,,,,,,24 +15233,616,243,34,9,17,,R,18,0,21,,,,,,,36 +15234,616,262,58,17,18,,R,19,0,9,,,,,,,69 +15235,616,327,25,6,10,,R,20,0,6,,,,,,,22 +15236,616,231,37,27,9,,R,21,0,3,,,,,,,98 +15237,616,309,1,8,4,,R,22,0,0,,,,,,,8 +15238,616,329,37,15,11,,R,23,0,0,,,,,,,4 +15239,617,238,32,2,1,1,1,1,9,55,29:17.0,5357000,,,,,1 +15240,617,224,32,1,4,2,2,2,6,55,0.8,5357800,,,,,1 +15241,617,309,1,8,2,3,3,3,4,55,28.8,5385800,,,,,1 +15242,617,328,25,5,6,4,4,4,3,55,33.2,5390200,,,,,1 +15243,617,327,25,6,11,5,5,5,2,55,46.2,5403200,,,,,1 +15244,617,199,34,10,10,6,6,6,1,55,59.8,5416800,,,,,1 +15245,617,305,63,23,8,7,7,7,0,55,+1:28.7,5445700,,,,,1 +15246,617,235,6,3,14,8,8,8,0,54,,,,,,,11 +15247,617,259,37,29,24,9,9,9,0,54,,,,,,,11 +15248,617,332,58,16,21,10,10,10,0,54,,,,,,,11 +15249,617,262,58,17,19,11,11,11,0,54,,,,,,,11 +15250,617,243,34,9,9,12,12,12,0,54,,,,,,,11 +15251,617,306,66,20,13,13,13,13,0,54,,,,,,,11 +15252,617,289,58,12,22,14,14,14,0,54,,,,,,,11 +15253,617,304,1,7,3,15,15,15,0,53,,,,,,,12 +15254,617,307,80,25,20,,N,16,0,44,,,,,,,62 +15255,617,329,37,15,12,,R,17,0,34,,,,,,,6 +15256,617,182,66,21,15,,R,18,0,33,,,,,,,3 +15257,617,223,66,19,18,,R,19,0,30,,,,,,,80 +15258,617,250,63,24,5,,R,20,0,17,,,,,,,27 +15259,617,298,80,26,23,,R,21,0,14,,,,,,,25 +15260,617,313,57,28,17,,R,22,0,10,,,,,,,25 +15261,617,290,34,11,16,,R,23,0,6,,,,,,,23 +15262,617,232,6,4,7,,R,24,0,2,,,,,,,22 +15263,617,231,37,27,0,,W,25,0,0,,,,,,,3 +15264,618,309,1,8,2,1,1,1,9,80,59:04.1,7144083,,,,,1 +15265,618,224,32,1,5,2,2,2,6,80,32.734,7176817,,,,,1 +15266,618,262,58,17,14,3,3,3,4,80,34.505,7178588,,,,,1 +15267,618,306,66,20,16,4,4,4,3,80,36.514,7180597,,,,,1 +15268,618,328,25,5,9,5,5,5,2,79,,,,,,,11 +15269,618,307,80,25,22,6,6,6,1,79,,,,,,,11 +15270,618,231,37,27,15,7,7,7,0,78,,,,,,,12 +15271,618,199,34,10,4,8,8,8,0,78,,,,,,,12 +15272,618,305,63,23,12,9,9,9,0,78,,,,,,,12 +15273,618,278,25,29,11,10,10,10,0,77,,,,,,,13 +15274,618,290,34,11,10,11,11,11,0,77,,,,,,,13 +15275,618,243,34,9,18,12,12,12,0,76,,,,,,,14 +15276,618,304,1,7,7,13,13,13,0,75,,,,,,,15 +15277,618,314,80,26,24,14,14,14,0,75,,,,,,,15 +15278,618,232,6,4,20,15,15,15,0,75,,,,,,,15 +15279,618,289,58,12,17,16,16,16,0,73,,,,,,,17 +15280,618,332,58,16,13,17,17,17,0,73,,,,,,,17 +15281,618,250,63,24,19,18,18,18,0,72,,,,,,,18 +15282,618,197,37,18,23,,N,19,0,71,,,,,,,62 +15283,618,313,57,28,26,,N,20,0,68,,,,,,,62 +15284,618,182,66,21,8,,R,21,0,62,,,,,,,7 +15285,618,222,1,0,3,,R,22,0,32,,,,,,,3 +15286,618,327,25,6,6,,R,23,0,32,,,,,,,3 +15287,618,329,37,15,21,,R,24,0,20,,,,,,,5 +15288,618,238,32,2,1,,R,25,0,16,,,,,,,22 +15289,618,320,66,19,25,,R,26,0,5,,,,,,,94 +15290,619,238,32,2,1,1,1,1,9,59,41:15.8,6075779,,,,,1 +15291,619,231,37,27,4,2,2,2,6,59,0.668,6076447,,,,,1 +15292,619,199,34,10,2,3,3,3,4,59,22.93,6098709,,,,,1 +15293,619,304,1,7,8,4,4,4,3,59,50.226,6126005,,,,,1 +15294,619,309,1,8,7,5,5,5,2,59,+1:20.367,6156146,,,,,1 +15295,619,224,32,1,3,6,6,6,1,59,+1:47.945,6183724,,,,,1 +15296,619,235,80,26,23,7,7,7,0,58,,,,,,,11 +15297,619,223,66,19,15,8,8,8,0,58,,,,,,,11 +15298,619,306,66,20,14,9,9,9,0,58,,,,,,,11 +15299,619,329,37,15,26,10,10,10,0,58,,,,,,,11 +15300,619,197,37,18,17,11,11,11,0,57,,,,,,,3 +15301,619,307,80,25,19,12,12,12,0,57,,,,,,,12 +15302,619,289,58,12,18,13,13,13,0,57,,,,,,,12 +15303,619,332,58,16,20,14,14,14,0,57,,,,,,,12 +15304,619,262,58,17,22,15,15,15,0,55,,,,,,,14 +15305,619,232,6,4,11,16,16,16,0,55,,,,,,,14 +15306,619,290,34,11,25,,N,17,0,52,,,,,,,62 +15307,619,222,1,0,10,,R,18,0,39,,,,,,,22 +15308,619,200,63,30,16,,R,19,0,35,,,,,,,5 +15309,619,182,66,21,21,,R,20,0,35,,,,,,,48 +15310,619,305,63,23,6,,R,21,0,34,,,,,,,22 +15311,619,250,63,24,9,,R,22,0,32,,,,,,,22 +15312,619,187,34,9,24,,R,23,0,7,,,,,,,5 +15313,619,312,58,31,13,,D,24,0,5,,,,,,,2 +15314,619,313,57,28,27,,R,25,0,0,,,,,,,37 +15315,619,328,25,5,5,,W,26,0,0,,,,,,,54 +15316,619,278,25,29,12,,W,27,0,0,,,,,,,54 +15317,619,327,25,6,0,,W,28,0,0,,,,,,,3 +15318,620,328,25,21,2,1,1,1,9,95,57:59.1,7079100,,,,,1 +15319,620,304,1,17,4,2,2,2,6,95,25.96,7105060,,,,,1 +15320,620,235,6,8,8,3,3,3,4,95,59.39,7138490,,,,,1 +15321,620,223,6,9,6,4,4,4,3,95,+1:06.72,7145820,,,,,1 +15322,620,314,63,19,11,5,5,5,2,95,+1:09.11,7148210,,,,,1 +15323,620,238,37,14,10,6,6,6,1,94,,,,,,,11 +15324,620,199,34,2,1,7,7,7,0,93,,,,,,,12 +15325,620,280,37,23,15,8,8,8,0,93,,,,,,,12 +15326,620,307,66,3,13,9,9,9,0,93,,,,,,,12 +15327,620,337,66,7,19,10,10,10,0,93,,,,,,,12 +15328,620,182,37,15,22,11,11,11,0,93,,,,,,,12 +15329,620,224,32,11,5,,R,12,0,61,,,,,,,22 +15330,620,327,25,22,17,,R,13,0,59,,,,,,,6 +15331,620,317,66,4,7,,R,14,0,59,,,,,,,47 +15332,620,309,1,18,3,,R,15,0,49,,,,,,,5 +15333,620,207,6,10,9,,R,16,0,20,,,,,,,5 +15334,620,333,63,20,14,,R,17,0,11,,,,,,,69 +15335,620,289,34,1,16,,R,18,0,11,,,,,,,48 +15336,620,338,32,12,20,,D,19,0,8,,,,,,,2 +15337,620,320,66,5,18,,R,20,0,1,,,,,,,44 +15338,620,339,66,6,21,,R,21,0,1,,,,,,,3 +15339,620,278,82,16,12,,W,22,0,0,,,,,,,54 +15340,621,304,1,12,5,1,1,1,9,79,45:49.1,6349100,,,,,1 +15341,621,224,32,8,3,2,2,2,6,79,14.1,6363200,,,,,1 +15342,621,309,1,14,12,3,3,3,4,79,25.8,6374900,,,,,1 +15343,621,207,6,7,6,4,4,4,3,79,38.5,6387600,,,,,1 +15344,621,238,37,3,9,5,5,5,2,79,49,6398100,,,,,1 +15345,621,289,34,19,14,6,6,6,1,78,,,,,,,11 +15346,621,182,37,4,21,7,7,7,0,78,,,,,,,11 +15347,621,235,6,5,7,8,8,8,0,78,,,,,,,11 +15348,621,327,25,2,8,9,9,9,0,78,,,,,,,11 +15349,621,338,32,9,19,10,10,10,0,78,,,,,,,11 +15350,621,280,37,21,22,11,11,11,0,78,,,,,,,11 +15351,621,223,6,6,2,12,12,12,0,77,,,,,,,12 +15352,621,243,37,25,25,13,13,13,0,77,,,,,,,12 +15353,621,337,66,24,23,14,14,14,0,76,,,,,,,13 +15354,621,278,82,15,13,15,15,15,0,76,,,,,,,13 +15355,621,340,63,27,26,16,16,16,0,73,,,,,,,20 +15356,621,250,37,22,24,17,17,17,0,73,,,,,,,16 +15357,621,307,66,23,16,,N,18,0,70,,,,,,,62 +15358,621,333,63,18,20,,N,19,0,69,,,,,,,62 +15359,621,320,66,11,18,,N,20,0,65,,,,,,,62 +15360,621,306,66,10,11,,R,21,0,61,,,,,,,5 +15361,621,328,25,1,1,,R,22,0,45,,,,,,,6 +15362,621,305,63,17,4,,R,23,0,28,,,,,,,22 +15363,621,199,34,20,15,,R,24,0,27,,,,,,,69 +15364,621,314,63,16,10,,R,25,0,9,,,,,,,5 +15365,621,293,32,26,17,,R,26,0,2,,,,,,,48 +15366,622,224,32,5,3,1,1,1,9,90,03:41.2,7421200,,,,,1 +15367,622,235,6,4,1,2,2,2,6,90,18.92,7440120,,,,,1 +15368,622,223,6,6,8,3,3,3,4,89,,,,,,,11 +15369,622,333,63,26,13,4,4,4,3,89,,,,,,,11 +15370,622,309,1,20,11,5,5,5,2,89,,,,,,,11 +15371,622,250,37,29,16,6,6,6,1,89,,,,,,,11 +15372,622,290,34,22,14,7,7,7,0,88,,,,,,,12 +15373,622,314,63,12,18,8,8,8,0,88,,,,,,,12 +15374,622,338,32,21,24,9,9,9,0,87,,,,,,,13 +15375,622,289,34,18,23,10,10,10,0,86,,,,,,,14 +15376,622,280,37,14,19,11,11,11,0,86,,,,,,,14 +15377,622,328,25,1,4,,R,12,0,69,,,,,,,3 +15378,622,278,82,9,6,,R,13,0,66,,,,,,,6 +15379,622,327,25,3,12,,R,14,0,65,,,,,,,80 +15380,622,320,66,8,21,,R,15,0,65,,,,,,,5 +15381,622,304,1,11,2,,R,16,0,48,,,,,,,6 +15382,622,307,66,25,20,,R,17,0,38,,,,,,,5 +15383,622,317,66,10,10,,R,18,0,24,,,,,,,3 +15384,622,207,6,7,5,,R,19,0,23,,,,,,,51 +15385,622,305,63,15,15,,R,20,0,20,,,,,,,10 +15386,622,238,37,2,9,,R,21,0,16,,,,,,,95 +15387,622,243,37,16,17,,R,22,0,15,,,,,,,3 +15388,622,306,66,19,7,,R,23,0,9,,,,,,,6 +15389,622,182,37,24,25,,R,24,0,7,,,,,,,24 +15390,622,339,66,28,22,,R,25,0,6,,,,,,,3 +15391,622,329,37,23,0,,F,26,0,0,,,,,,,81 +15392,623,306,66,17,4,1,1,1,9,80,26:55.3,8815300,,,,,1 +15393,623,235,6,6,2,2,2,2,6,80,38.2,8853500,,,,,1 +15394,623,224,32,8,1,3,3,3,4,79,,,,,,,11 +15395,623,328,25,1,8,4,4,4,3,78,,,,,,,12 +15396,623,312,1,15,10,5,5,5,2,77,,,,,,,13 +15397,623,278,82,16,6,6,6,6,1,77,,,,,,,13 +15398,623,333,63,12,18,7,7,7,0,77,,,,,,,13 +15399,623,337,66,26,17,8,8,8,0,77,,,,,,,13 +15400,623,290,34,21,21,9,9,9,0,77,,,,,,,13 +15401,623,243,37,27,25,10,10,10,0,77,,,,,,,13 +15402,623,238,37,3,15,11,11,11,0,76,,,,,,,14 +15403,623,289,34,20,20,12,12,12,0,76,,,,,,,14 +15404,623,329,37,5,23,13,13,13,0,76,,,,,,,14 +15405,623,338,32,9,14,14,14,14,0,75,,,,,,,15 +15406,623,304,1,14,7,15,15,15,0,74,,,,,,,16 +15407,623,182,37,4,22,16,16,16,0,74,,,,,,,16 +15408,623,250,37,23,24,17,17,17,0,72,,,,,,,18 +15409,623,327,25,2,12,,N,18,0,70,,,,,,,62 +15410,623,280,37,22,9,,R,19,0,58,,,,,,,3 +15411,623,223,6,7,3,,R,20,0,51,,,,,,,3 +15412,623,305,63,11,11,,R,21,0,48,,,,,,,3 +15413,623,307,66,19,20,,R,22,0,47,,,,,,,3 +15414,623,314,63,10,13,,R,23,0,31,,,,,,,3 +15415,623,320,66,18,5,,R,24,0,27,,,,,,,3 +15416,623,317,66,28,16,,R,25,0,16,,,,,,,5 +15417,624,224,32,32,1,1,1,1,9,85,44:07.3,6247300,,,,,1 +15418,624,327,25,8,5,2,2,2,6,85,26.6,6273900,,,,,1 +15419,624,304,1,9,3,3,3,3,4,85,58.1,6305400,,,,,1 +15420,624,305,63,34,8,4,4,4,3,85,+1:12.0,6319300,,,,,1 +15421,624,250,37,16,11,5,5,5,2,84,,,,,,,11 +15422,624,278,82,5,13,6,6,6,1,84,,,,,,,11 +15423,624,309,1,10,7,7,7,7,0,83,,,,,,,12 +15424,624,307,66,25,15,8,8,8,0,83,,,,,,,12 +15425,624,238,37,11,14,9,9,9,0,83,,,,,,,12 +15426,624,337,66,27,23,10,10,10,0,83,,,,,,,12 +15427,624,243,37,6,20,11,11,11,0,83,,,,,,,12 +15428,624,182,37,12,25,12,12,12,0,82,,,,,,,13 +15429,624,199,34,19,9,13,13,13,0,81,,,,,,,14 +15430,624,338,32,33,12,14,14,14,0,79,,,,,,,16 +15431,624,289,34,17,16,,R,15,0,73,,,,,,,22 +15432,624,280,37,15,19,,N,16,0,59,,,,,,,62 +15433,624,223,6,30,2,,R,17,0,57,,,,,,,3 +15434,624,333,63,36,10,,R,18,0,55,,,,,,,5 +15435,624,330,81,22,24,,R,19,0,54,,,,,,,3 +15436,624,235,6,29,4,,R,20,0,47,,,,,,,98 +15437,624,329,37,14,22,,R,21,0,31,,,,,,,86 +15438,624,290,34,18,18,,R,22,0,28,,,,,,,6 +15439,624,320,66,24,17,,R,23,0,27,,,,,,,48 +15440,624,306,66,23,6,,R,24,0,15,,,,,,,25 +15441,624,314,63,35,21,,R,25,0,11,,,,,,,25 +15442,625,328,25,4,3,1,1,1,9,38,52:22.5,6742500,,,,,1 +15443,625,224,32,1,8,2,2,2,6,38,27.7,6770200,,,,,1 +15444,625,278,82,9,1,3,3,3,4,38,31.9,6774400,,,,,1 +15445,625,327,25,7,7,4,4,4,3,38,49.3,6791800,,,,,1 +15446,625,238,37,12,9,5,5,5,2,38,56.8,6799300,,,,,1 +15447,625,305,63,26,10,6,6,6,1,38,+1:36.1,6838600,,,,,1 +15448,625,304,1,2,2,7,7,7,0,38,+1:48.1,6850600,,,,,1 +15449,625,290,34,19,14,8,8,8,0,38,+2:25.1,6887600,,,,,1 +15450,625,312,1,11,13,9,9,9,0,38,+2:55.5,6918000,,,,,1 +15451,625,289,34,18,20,10,10,10,0,38,+2:59.5,6922000,,,,,1 +15452,625,235,6,3,4,11,11,11,0,37,,,,,,,11 +15453,625,199,34,20,17,12,12,12,0,37,,,,,,,11 +15454,625,330,6,30,19,13,13,13,0,37,,,,,,,11 +15455,625,333,63,28,12,14,14,14,0,37,,,,,,,11 +15456,625,306,66,5,24,15,15,15,0,37,,,,,,,11 +15457,625,243,37,10,15,16,16,16,0,37,,,,,,,11 +15458,625,314,63,27,5,17,17,17,0,36,,,,,,,12 +15459,625,338,32,6,22,18,18,18,0,34,,,,,,,86 +15460,625,329,37,15,23,19,19,19,0,33,,,,,,,60 +15461,625,221,25,8,16,,N,20,0,33,,,,,,,62 +15462,625,317,66,24,18,,R,21,0,25,,,,,,,6 +15463,625,250,37,17,11,,R,22,0,18,,,,,,,5 +15464,625,337,66,25,6,,R,23,0,8,,,,,,,107 +15465,625,182,37,14,21,,R,24,0,4,,,,,,,86 +15466,625,293,32,29,0,,F,25,0,0,,,,,,,81 +15467,626,224,32,8,2,1,1,1,9,76,47:50.2,6470200,,,,,1 +15468,626,328,25,1,4,2,2,2,6,76,4.1,6474300,,,,,1 +15469,626,309,1,19,3,3,3,3,4,76,+1:12.5,6542700,,,,,1 +15470,626,278,82,17,17,4,4,4,3,75,,,,,,,11 +15471,626,304,1,18,11,5,5,5,2,75,,,,,,,11 +15472,626,232,6,6,9,6,6,6,1,75,,,,,,,11 +15473,626,238,37,3,8,7,7,7,0,74,,,,,,,20 +15474,626,199,34,27,10,8,8,8,0,73,,,,,,,13 +15475,626,182,37,4,19,9,9,9,0,73,,,,,,,13 +15476,626,243,37,33,25,10,10,10,0,71,,,,,,,15 +15477,626,306,66,11,6,11,11,11,0,70,,,,,,,16 +15478,626,290,34,28,22,12,12,12,0,69,,,,,,,22 +15479,626,329,37,31,23,13,13,13,0,69,,,,,,,17 +15480,626,314,63,22,5,,R,14,0,64,,,,,,,22 +15481,626,327,25,2,12,,R,15,0,60,,,,,,,20 +15482,626,338,32,9,15,,R,16,0,59,,,,,,,22 +15483,626,235,6,5,1,,R,17,0,49,,,,,,,51 +15484,626,289,34,26,21,,R,18,0,47,,,,,,,20 +15485,626,250,37,25,13,,R,19,0,39,,,,,,,24 +15486,626,262,66,14,14,,R,20,0,36,,,,,,,22 +15487,626,305,63,21,7,,R,21,0,31,,,,,,,6 +15488,626,293,32,29,24,,R,22,0,21,,,,,,,6 +15489,626,330,81,30,18,,R,23,0,9,,,,,,,20 +15490,626,280,83,24,26,,R,24,0,7,,,,,,,3 +15491,626,320,66,12,16,,R,25,0,5,,,,,,,5 +15492,626,333,63,23,20,,R,26,0,3,,,,,,,3 +15493,627,235,6,4,1,1,1,1,9,14,42:12.3,6132300,,,,,1 +15494,627,223,6,9,7,2,2,2,6,14,48.3,6180600,,,,,1 +15495,627,238,37,10,4,3,3,3,4,14,+1:06.7,6199000,,,,,1 +15496,627,307,66,17,18,4,4,4,3,14,+2:20.2,6272500,,,,,1 +15497,627,312,1,5,19,5,5,5,2,14,+2:35.7,6288000,,,,,1 +15498,627,289,34,11,15,6,6,6,1,14,+2:59.6,6311900,,,,,1 +15499,627,290,34,26,21,7,7,7,0,14,+3:00.1,6312400,,,,,1 +15500,627,329,37,28,27,8,8,8,0,14,+5:10.7,6443000,,,,,1 +15501,627,306,66,6,13,9,9,9,0,14,+5:20.2,6452500,,,,,1 +15502,627,327,25,7,5,10,10,10,0,14,+5:43.7,6476000,,,,,1 +15503,627,328,25,1,2,11,11,11,0,13,,,,,,,4 +15504,627,232,6,19,22,12,12,12,0,13,,,,,,,11 +15505,627,333,63,16,20,13,13,13,0,13,,,,,,,11 +15506,627,314,63,15,12,14,14,14,0,13,,,,,,,11 +15507,627,278,82,8,8,15,15,15,0,13,,,,,,,11 +15508,627,250,37,21,11,,N,16,0,11,,,,,,,62 +15509,627,224,32,2,3,,R,17,0,10,,,,,,,6 +15510,627,280,37,20,9,,R,18,0,10,,,,,,,3 +15511,627,304,1,3,10,,R,19,0,8,,,,,,,5 +15512,627,305,63,14,16,,R,20,0,8,,,,,,,22 +15513,627,199,34,12,6,,R,21,0,6,,,,,,,24 +15514,627,243,37,22,14,,R,22,0,6,,,,,,,10 +15515,627,338,32,25,23,,R,23,0,6,,,,,,,44 +15516,627,182,37,23,24,,R,24,0,4,,,,,,,44 +15517,627,321,81,27,25,,R,25,0,4,,,,,,,5 +15518,627,293,32,29,26,,R,26,0,4,,,,,,,68 +15519,627,317,66,18,17,,R,27,0,3,,,,,,,5 +15520,628,224,32,31,1,1,1,1,9,54,29:16.7,5356660,,,,,1 +15521,628,304,1,12,7,2,2,2,6,54,1.18,5357840,,,,,1 +15522,628,309,1,14,4,3,3,3,4,54,36.53,5393190,,,,,1 +15523,628,305,63,25,12,4,4,4,3,54,44.76,5401420,,,,,1 +15524,628,278,82,10,6,5,5,5,2,54,45.64,5402300,,,,,1 +15525,628,307,66,9,10,6,6,6,1,54,+1:01.19,5417850,,,,,1 +15526,628,328,25,1,3,7,7,7,0,54,+1:09.09,5425750,,,,,1 +15527,628,306,66,7,21,8,8,8,0,54,+1:21.45,5438110,,,,,1 +15528,628,327,25,2,20,9,9,9,0,53,,,,,,,11 +15529,628,182,37,4,22,10,10,10,0,53,,,,,,,11 +15530,628,314,63,24,8,11,11,11,0,52,,,,,,,12 +15531,628,238,37,5,11,12,12,12,0,52,,,,,,,12 +15532,628,320,66,6,16,13,13,13,0,51,,,,,,,13 +15533,628,333,63,11,13,14,14,14,0,51,,,,,,,13 +15534,628,243,37,27,17,,R,15,0,48,,,,,,,5 +15535,628,250,37,23,18,,N,16,0,46,,,,,,,62 +15536,628,330,81,15,23,,R,17,0,45,,,,,,,44 +15537,628,289,34,16,14,,R,18,0,36,,,,,,,98 +15538,628,290,34,28,15,,R,19,0,31,,,,,,,23 +15539,628,329,37,3,24,,R,20,0,24,,,,,,,69 +15540,628,296,84,29,25,,R,21,0,22,,,,,,,22 +15541,628,235,6,18,9,,R,22,0,20,,,,,,,69 +15542,628,199,34,17,5,,R,23,0,14,,,,,,,98 +15543,628,223,6,19,2,,R,24,0,13,,,,,,,69 +15544,628,338,32,21,19,,R,25,0,6,,,,,,,5 +15545,629,224,32,6,4,1,1,1,9,55,29:58.4,5398400,,,,,1 +15546,629,305,63,10,9,2,2,2,6,55,14.5,5412900,,,,,1 +15547,629,304,1,14,5,3,3,3,4,55,23.8,5422200,,,,,1 +15548,629,309,1,15,8,4,4,4,3,55,35.7,5434100,,,,,1 +15549,629,289,34,28,13,5,5,5,2,55,+1:05.6,5464000,,,,,1 +15550,629,320,66,23,12,6,6,6,1,55,+1:21.9,5480300,,,,,1 +15551,629,207,6,3,7,7,7,7,0,54,,,,,,,11 +15552,629,306,66,21,16,8,8,8,0,54,,,,,,,11 +15553,629,238,37,19,24,9,9,9,0,54,,,,,,,11 +15554,629,329,37,16,25,10,10,10,0,54,,,,,,,11 +15555,629,307,66,22,17,11,11,11,0,52,,,,,,,13 +15556,629,317,66,24,10,12,12,12,0,51,,,,,,,14 +15557,629,182,37,18,20,13,13,13,0,50,,,,,,,15 +15558,629,235,6,4,1,,R,14,0,46,,,,,,,10 +15559,629,278,82,20,2,,R,15,0,38,,,,,,,23 +15560,629,333,63,9,21,,R,16,0,33,,,,,,,23 +15561,629,290,34,29,19,,R,17,0,20,,,,,,,22 +15562,629,341,63,7,22,,R,18,0,20,,,,,,,69 +15563,629,314,63,8,15,,R,19,0,20,,,,,,,20 +15564,629,223,6,5,4,,R,20,0,16,,,,,,,4 +15565,629,250,37,26,18,,R,21,0,15,,,,,,,4 +15566,629,199,34,30,11,,R,22,0,14,,,,,,,22 +15567,629,327,25,2,14,,R,23,0,14,,,,,,,5 +15568,629,330,81,11,23,,R,24,0,6,,,,,,,5 +15569,629,328,25,1,3,,R,25,0,0,,,,,,,8 +15570,629,280,37,25,0,,F,26,0,0,,,,,,,81 +15571,629,321,81,12,0,,F,27,0,0,,,,,,,81 +15572,630,328,25,1,5,1,1,1,9,80,43:17.1,6197100,,,,,1 +15573,630,309,1,19,1,2,2,2,6,80,48.2,6245300,,,,,1 +15574,630,304,1,18,2,3,3,3,4,80,54.6,6251700,,,,,1 +15575,630,199,34,8,9,4,4,4,3,80,+1:00.7,6257800,,,,,1 +15576,630,223,6,11,7,5,5,5,2,80,+1:07.0,6264100,,,,,1 +15577,630,278,82,4,10,6,6,6,1,79,,,,,,,11 +15578,630,314,63,22,13,7,7,7,0,79,,,,,,,11 +15579,630,289,34,7,17,8,8,8,0,79,,,,,,,11 +15580,630,250,37,29,18,9,9,9,0,78,,,,,,,60 +15581,630,307,66,15,14,10,10,10,0,78,,,,,,,12 +15582,630,224,32,5,4,11,11,11,0,78,,,,,,,12 +15583,630,235,6,10,8,12,12,12,0,76,,,,,,,14 +15584,630,280,37,28,21,13,13,13,0,73,,,,,,,17 +15585,630,317,32,6,16,,R,14,0,65,,,,,,,5 +15586,630,182,37,26,19,,D,15,0,64,,,,,,,2 +15587,630,238,37,25,3,,D,16,0,61,,,,,,,4 +15588,630,329,37,27,24,,N,17,0,59,,,,,,,62 +15589,630,327,25,2,6,,R,18,0,51,,,,,,,6 +15590,630,320,66,16,12,,R,19,0,25,,,,,,,22 +15591,630,342,37,33,22,,N,20,0,24,,,,,,,62 +15592,630,306,66,14,20,,R,21,0,21,,,,,,,44 +15593,630,343,66,17,23,,R,22,0,20,,,,,,,20 +15594,630,290,34,9,11,,R,23,0,5,,,,,,,6 +15595,630,333,63,23,15,,R,24,0,2,,,,,,,6 +15596,631,328,25,1,1,1,1,1,9,59,41:45.4,6105354,,,,,1 +15597,631,327,25,2,4,2,2,2,6,59,32.268,6137622,,,,,1 +15598,631,304,1,19,3,3,3,3,4,59,37.528,6142882,,,,,1 +15599,631,238,37,4,26,4,4,4,3,59,+1:22.516,6187870,,,,,1 +15600,631,235,6,7,12,5,5,5,2,59,+1:23.119,6188473,,,,,1 +15601,631,207,6,9,10,6,6,6,1,58,,,,,,,11 +15602,631,221,25,3,11,7,7,7,0,58,,,,,,,11 +15603,631,223,6,8,6,8,8,8,0,58,,,,,,,11 +15604,631,222,1,21,8,9,9,9,0,58,,,,,,,11 +15605,631,317,32,12,16,10,10,10,0,57,,,,,,,12 +15606,631,289,34,28,27,11,11,11,0,57,,,,,,,12 +15607,631,344,63,34,22,12,12,12,0,57,,,,,,,12 +15608,631,329,37,6,20,13,13,13,0,57,,,,,,,12 +15609,631,280,37,26,21,14,14,14,0,57,,,,,,,12 +15610,631,278,82,18,7,15,15,15,0,57,,,,,,,12 +15611,631,342,37,33,20,16,16,16,0,57,,,,,,,12 +15612,631,305,63,23,14,17,17,17,0,56,,,,,,,4 +15613,631,309,1,20,2,18,18,18,0,54,,,,,,,10 +15614,631,182,37,5,25,19,19,19,0,49,,,,,,,62 +15615,631,250,37,27,15,,R,20,0,48,,,,,,,69 +15616,631,320,66,14,28,,R,21,0,47,,,,,,,5 +15617,631,307,66,16,17,,R,22,0,44,,,,,,,5 +15618,631,338,32,11,30,,R,23,0,44,,,,,,,5 +15619,631,290,34,30,13,,R,24,0,43,,,,,,,5 +15620,631,306,66,17,18,,R,25,0,40,,,,,,,80 +15621,631,312,66,15,24,,R,26,0,34,,,,,,,5 +15622,631,199,34,29,5,,R,27,0,31,,,,,,,5 +15623,631,333,63,25,19,,R,28,0,25,,,,,,,4 +15624,631,314,63,24,31,,R,29,0,22,,,,,,,22 +15625,631,224,32,10,9,,R,30,0,17,,,,,,,22 +15626,631,321,81,31,29,,R,31,0,8,,,,,,,5 +15627,632,207,6,6,4,1,1,1,9,79,47:35.5,6455500,,,,,1 +15628,632,328,25,9,1,2,2,2,6,79,20.9,6476400,,,,,1 +15629,632,223,6,5,3,3,3,3,4,79,31.4,6486900,,,,,1 +15630,632,317,180,3,14,4,4,4,3,79,+1:09.4,6524900,,,,,1 +15631,632,278,82,19,2,5,5,5,2,78,,,,,,,11 +15632,632,304,1,11,7,6,6,6,1,78,,,,,,,11 +15633,632,312,63,28,17,7,7,7,0,78,,,,,,,11 +15634,632,235,6,4,8,8,8,8,0,78,,,,,,,11 +15635,632,289,34,14,19,9,9,9,0,77,,,,,,,12 +15636,632,238,200,7,13,10,10,10,0,77,,,,,,,12 +15637,632,280,200,22,18,11,11,11,0,77,,,,,,,12 +15638,632,243,63,21,15,12,12,12,0,77,,,,,,,12 +15639,632,333,199,8,22,13,13,13,0,75,,,,,,,14 +15640,632,224,180,2,5,,R,14,0,58,,,,,,,5 +15641,632,341,63,20,6,,R,15,0,56,,,,,,,6 +15642,632,327,25,10,9,,R,16,0,45,,,,,,,3 +15643,632,307,66,27,24,,R,17,0,42,,,,,,,68 +15644,632,345,66,16,10,,R,18,0,33,,,,,,,25 +15645,632,293,34,15,16,,R,19,0,31,,,,,,,5 +15646,632,346,66,17,12,,R,20,0,31,,,,,,,25 +15647,632,340,200,24,21,,R,21,0,30,,,,,,,24 +15648,632,334,34,25,20,,R,22,0,22,,,,,,,5 +15649,632,320,1,12,11,,R,23,0,7,,,,,,,95 +15650,632,347,1,23,23,,R,24,0,5,,,,,,,22 +15651,632,339,200,26,25,,R,25,0,5,,,,,,,5 +15652,633,328,25,11,4,1,1,1,9,75,49:03.4,6543400,,,,,1 +15653,633,235,6,4,1,2,2,2,6,75,3.4,6546800,,,,,1 +15654,633,278,82,20,3,3,3,3,4,75,58.1,6601500,,,,,1 +15655,633,345,66,14,5,4,4,4,3,75,+1:17.9,6621300,,,,,1 +15656,633,304,1,9,9,5,5,5,2,75,+1:27.0,6630400,,,,,1 +15657,633,306,82,21,6,6,6,6,1,74,,,,,,,11 +15658,633,327,25,12,12,7,7,7,0,74,,,,,,,11 +15659,633,320,1,10,7,8,8,8,0,73,,,,,,,12 +15660,633,314,34,8,21,9,9,9,0,72,,,,,,,13 +15661,633,307,66,16,17,10,10,10,0,71,,,,,,,14 +15662,633,341,63,24,22,11,11,11,0,67,,,,,,,18 +15663,633,317,180,3,16,,N,12,0,58,,,,,,,62 +15664,633,224,180,2,14,,R,13,0,54,,,,,,,22 +15665,633,280,200,27,11,,R,14,0,53,,,,,,,5 +15666,633,207,6,6,8,,R,15,0,50,,,,,,,5 +15667,633,339,200,19,20,,R,16,0,46,,,,,,,48 +15668,633,238,200,18,13,,R,17,0,24,,,,,,,80 +15669,633,223,6,5,2,,R,18,0,13,,,,,,,5 +15670,633,243,63,25,19,,R,19,0,9,,,,,,,32 +15671,633,346,66,15,15,,R,20,0,5,,,,,,,6 +15672,633,289,34,7,10,,R,21,0,5,,,,,,,38 +15673,634,328,25,11,1,1,1,1,9,80,52:21.3,6741300,,,,,1 +15674,634,238,200,17,6,2,2,2,6,80,25.6,6766900,,,,,1 +15675,634,235,6,4,2,3,3,3,4,80,53.3,6794600,,,,,1 +15676,634,304,1,9,6,4,4,4,3,80,+ 1:06.7,6808000,,,,,1 +15677,634,224,180,1,17,5,5,5,2,79,,,,,,,11 +15678,634,243,63,24,16,6,6,6,1,79,,,,,,,11 +15679,634,341,63,22,10,7,7,7,0,79,,,,,,,11 +15680,634,280,200,27,13,8,8,8,0,77,,,,,,,13 +15681,634,345,66,15,5,9,9,9,0,76,,,,,,,14 +15682,634,314,34,8,18,10,10,10,0,76,,,,,,,14 +15683,634,346,66,14,3,,R,11,0,58,,,,,,,108 +15684,634,306,82,21,7,,R,12,0,47,,,,,,,24 +15685,634,278,82,20,4,,R,13,0,45,,,,,,,24 +15686,634,223,6,5,11,,R,14,0,24,,,,,,,3 +15687,634,320,1,10,14,,R,15,0,22,,,,,,,3 +15688,634,317,180,2,12,,R,16,0,21,,,,,,,67 +15689,634,327,25,12,15,,R,17,0,5,,,,,,,3 +15690,634,289,34,7,9,,R,18,0,1,,,,,,,3 +15691,634,307,66,16,0,,F,19,0,0,,,,,,,81 +15692,634,207,6,6,0,,F,20,0,0,,,,,,,81 +15693,634,339,200,18,0,,F,21,0,0,,,,,,,81 +15694,634,342,200,28,0,,F,22,0,0,,,,,,,81 +15695,635,235,6,2,1,1,1,1,9,70,56:20.0,6980000,,,,,1 +15696,635,345,66,8,2,2,2,2,6,70,7.99,6987990,,,,,1 +15697,635,223,6,3,4,3,3,3,4,69,,,,,,,11 +15698,635,238,200,16,13,4,4,4,3,68,,,,,,,12 +15699,635,341,63,23,7,5,5,5,2,68,,,,,,,12 +15700,635,346,66,9,8,6,6,6,1,68,,,,,,,12 +15701,635,307,66,10,9,7,7,7,0,66,,,,,,,14 +15702,635,298,63,30,21,8,8,8,0,65,,,,,,,15 +15703,635,306,82,21,11,9,9,9,0,65,,,,,,,15 +15704,635,289,34,24,16,10,10,10,0,65,,,,,,,15 +15705,635,328,25,5,3,11,11,11,0,65,,,,,,,15 +15706,635,304,1,26,14,12,12,12,0,63,,,,,,,17 +15707,635,280,200,31,15,,N,13,0,62,,,,,,,62 +15708,635,342,200,22,24,,N,14,0,60,,,,,,,62 +15709,635,320,1,28,23,,N,15,0,60,,,,,,,62 +15710,635,339,200,19,17,,R,16,0,57,,,,,,,5 +15711,635,314,34,25,19,,R,17,0,39,,,,,,,22 +15712,635,327,25,6,12,,R,18,0,29,,,,,,,3 +15713,635,243,63,29,18,,D,19,0,19,,,,,,,2 +15714,635,317,180,14,4,,D,20,0,17,,,,,,,2 +15715,635,207,6,4,16,,R,21,0,5,,,,,,,48 +15716,635,338,201,15,22,,R,22,0,5,,,,,,,3 +15717,635,278,82,20,5,,R,23,0,2,,,,,,,20 +15718,636,328,25,11,1,1,1,1,9,55,46:42.3,6402300,,,,,1 +15719,636,327,25,12,7,2,2,2,6,55,28.12,6430420,,,,,1 +15720,636,224,180,1,17,3,3,3,4,55,34.07,6436370,,,,,1 +15721,636,346,66,14,6,4,4,4,3,55,37.17,6439470,,,,,1 +15722,636,278,82,20,9,5,5,5,2,55,41.08,6443380,,,,,1 +15723,636,317,180,2,15,6,6,6,1,55,+1:16.02,6478320,,,,,1 +15724,636,306,82,21,8,7,7,7,0,55,+1:16.93,6479230,,,,,1 +15725,636,341,63,22,13,8,8,8,0,55,+1:24.91,6487210,,,,,1 +15726,636,320,1,10,19,9,9,9,0,54,,,,,,,11 +15727,636,307,66,16,16,10,10,10,0,54,,,,,,,11 +15728,636,243,63,24,10,11,11,11,0,53,,,,,,,12 +15729,636,314,34,8,14,12,12,12,0,50,,,,,,,51 +15730,636,348,200,34,23,13,13,13,0,50,,,,,,,15 +15731,636,349,200,28,22,,N,14,0,46,,,,,,,62 +15732,636,280,200,27,18,,R,15,0,45,,,,,,,6 +15733,636,289,34,7,4,,R,16,0,34,,,,,,,108 +15734,636,333,199,19,20,,R,17,0,31,,,,,,,5 +15735,636,345,66,15,5,,R,18,0,27,,,,,,,80 +15736,636,223,6,5,2,,R,19,0,20,,,,,,,3 +15737,636,238,199,17,12,,R,20,0,19,,,,,,,5 +15738,636,304,1,9,11,,R,21,0,16,,,,,,,80 +15739,636,235,6,4,3,,R,22,0,4,,,,,,,5 +15740,636,339,200,18,21,,R,23,0,4,,,,,,,48 +15741,637,328,25,12,2,1,1,1,9,68,31:31.5,5491500,,,,,1 +15742,637,238,200,18,5,2,2,2,6,68,36.1,5527600,,,,,1 +15743,637,224,180,1,4,3,3,3,4,68,50.5,5542000,,,,,1 +15744,637,280,200,26,17,4,4,4,3,67,,,,,,,11 +15745,637,243,63,24,12,5,5,5,2,67,,,,,,,11 +15746,637,341,63,23,11,6,6,6,1,67,,,,,,,11 +15747,637,306,82,22,15,7,7,7,0,66,,,,,,,12 +15748,637,307,66,17,11,8,8,8,0,66,,,,,,,12 +15749,637,346,66,16,3,9,9,9,0,66,,,,,,,12 +15750,637,327,25,14,10,10,10,10,0,65,,,,,,,13 +15751,637,330,200,20,21,11,11,11,0,65,,,,,,,13 +15752,637,314,34,8,7,12,12,12,0,63,,,,,,,6 +15753,637,317,201,3,19,,N,13,0,57,,,,,,,62 +15754,637,333,199,19,24,,N,14,0,56,,,,,,,62 +15755,637,320,1,10,14,,R,15,0,53,,,,,,,5 +15756,637,235,6,4,6,,R,16,0,51,,,,,,,5 +15757,637,223,6,5,1,,R,17,0,48,,,,,,,51 +15758,637,278,82,21,9,,R,18,0,35,,,,,,,5 +15759,637,304,1,9,8,,R,19,0,32,,,,,,,5 +15760,637,321,63,25,23,,R,20,0,23,,,,,,,22 +15761,637,329,200,6,20,,R,21,0,21,,,,,,,51 +15762,637,293,180,2,13,,R,22,0,1,,,,,,,5 +15763,637,289,34,7,22,,R,23,0,0,,,,,,,3 +15764,637,262,1,11,16,,R,24,0,0,,,,,,,3 +15765,638,328,25,2,1,1,1,1,9,12,29:16.3,5356300,,,,,1 +15766,638,327,25,3,5,2,2,2,6,12,30.1,5386400,,,,,1 +15767,638,223,6,6,4,3,3,3,4,12,37.1,5393400,,,,,1 +15768,638,207,6,5,11,4,4,4,3,12,+2:05.0,5481300,,,,,1 +15769,638,238,200,15,3,5,5,5,2,12,+2:29.1,5505400,,,,,1 +15770,638,314,34,25,9,6,6,6,1,12,+2:58.6,5534900,,,,,1 +15771,638,341,63,7,15,7,7,7,0,12,+3:19.0,5555300,,,,,1 +15772,638,317,180,9,17,8,8,8,0,12,+6:31.7,5748000,,,,,1 +15773,638,289,34,24,13,9,9,9,0,12,+6:37.0,5753300,,,,,1 +15774,638,243,63,12,12,10,10,10,0,11,,,,,,,11 +15775,638,350,66,22,18,11,11,11,0,11,,,,,,,11 +15776,638,330,199,17,21,12,12,12,0,10,,,,,,,12 +15777,638,224,180,8,8,,R,13,0,8,,,,,,,44 +15778,638,346,66,21,3,,D,14,0,6,,,,,,,2 +15779,638,278,82,10,16,,R,15,0,6,,,,,,,3 +15780,638,280,200,14,10,,R,16,0,5,,,,,,,22 +15781,638,320,1,20,19,,R,17,0,5,,,,,,,3 +15782,638,304,1,18,6,,R,18,0,3,,,,,,,95 +15783,638,329,200,28,22,,D,19,0,3,,,,,,,2 +15784,638,307,66,23,14,,R,20,0,2,,,,,,,5 +15785,638,333,199,16,20,,R,21,0,2,,,,,,,98 +15786,638,235,6,4,2,,R,22,0,1,,,,,,,3 +15787,638,347,1,27,0,,F,23,0,0,,,,,,,81 +15788,639,346,66,14,1,1,1,1,9,54,30:23.9,5423910,,,,,1 +15789,639,224,180,2,5,2,2,2,6,54,4.12,5428030,,,,,1 +15790,639,314,34,8,7,3,3,3,4,54,19.77,5443680,,,,,1 +15791,639,317,180,3,10,4,4,4,3,54,31.87,5455780,,,,,1 +15792,639,289,34,7,8,5,5,5,2,54,48.43,5472340,,,,,1 +15793,639,280,200,25,13,6,6,6,1,54,+1:24.51,5508420,,,,,1 +15794,639,243,63,24,12,7,7,7,0,54,+1:37.42,5521330,,,,,1 +15795,639,238,200,17,11,8,8,8,0,53,,,,,,,11 +15796,639,262,1,10,22,9,9,9,0,53,,,,,,,11 +15797,639,320,66,23,16,10,10,10,0,52,,,,,,,12 +15798,639,337,66,16,17,11,11,11,0,52,,,,,,,12 +15799,639,330,199,19,15,12,12,12,0,51,,,,,,,13 +15800,639,329,200,27,19,,N,13,0,47,,,,,,,62 +15801,639,327,25,12,3,,R,14,0,42,,,,,,,5 +15802,639,328,25,11,2,,R,15,0,35,,,,,,,86 +15803,639,235,6,4,6,,R,16,0,31,,,,,,,5 +15804,639,182,200,26,21,,R,17,0,20,,,,,,,64 +15805,639,341,63,22,18,,R,18,0,12,,,,,,,5 +15806,639,223,6,5,4,,R,19,0,8,,,,,,,5 +15807,639,307,66,15,14,,R,20,0,5,,,,,,,80 +15808,639,304,1,9,9,,R,21,0,4,,,,,,,5 +15809,639,347,1,28,20,,R,22,0,0,,,,,,,95 +15810,640,320,66,18,11,1,1,1,9,55,18:12.6,4692600,,,,,1 +15811,640,238,200,25,6,2,2,2,6,55,0.01,4692610,,,,,1 +15812,640,327,25,2,5,3,3,3,4,55,0.09,4692690,,,,,1 +15813,640,305,63,9,17,4,4,4,3,55,0.18,4692780,,,,,1 +15814,640,307,66,19,4,5,5,5,2,55,0.61,4693210,,,,,1 +15815,640,278,82,12,1,6,6,6,1,55,32.36,4724960,,,,,1 +15816,640,262,1,14,13,7,7,7,0,55,+1:24.83,4777430,,,,,1 +15817,640,224,201,5,18,8,8,8,0,54,,,,,,,11 +15818,640,346,66,20,3,9,9,9,0,53,,,,,,,12 +15819,640,347,1,28,21,10,10,10,0,51,,,,,,,14 +15820,640,289,34,10,14,,R,11,0,47,,,,,,,6 +15821,640,197,200,26,24,,N,12,0,47,,,,,,,62 +15822,640,329,200,24,16,,R,13,0,41,,,,,,,5 +15823,640,280,200,16,10,,R,14,0,40,,,,,,,22 +15824,640,333,199,23,20,,R,15,0,33,,,,,,,5 +15825,640,223,6,4,8,,R,16,0,17,,,,,,,5 +15826,640,235,6,3,2,,R,17,0,15,,,,,,,5 +15827,640,328,25,30,7,,R,18,0,15,,,,,,,5 +15828,640,330,200,22,19,,R,19,0,11,,,,,,,10 +15829,640,314,34,11,9,,R,20,0,5,,,,,,,22 +15830,640,351,85,27,22,,R,21,0,5,,,,,,,22 +15831,640,337,66,21,12,,R,22,0,3,,,,,,,5 +15832,640,341,63,7,15,,R,23,0,3,,,,,,,5 +15833,640,243,63,8,23,,R,24,0,0,,,,,,,3 +15834,641,328,25,11,1,1,1,1,9,64,55:13.1,6913100,,,,,1 +15835,641,238,200,17,6,2,2,2,6,64,38.3,6951400,,,,,1 +15836,641,288,1,10,8,3,3,3,4,64,+1:35.8,7008900,,,,,1 +15837,641,304,1,9,10,4,4,4,3,63,,,,,,,11 +15838,641,317,180,3,7,5,5,5,2,63,,,,,,,11 +15839,641,327,25,12,3,6,6,6,1,62,,,,,,,12 +15840,641,224,180,2,4,7,7,7,0,62,,,,,,,12 +15841,641,235,6,4,12,8,8,8,0,62,,,,,,,12 +15842,641,346,66,14,2,9,9,9,0,61,,,,,,,13 +15843,641,278,82,20,5,10,10,10,0,61,,,,,,,13 +15844,641,341,63,22,14,11,11,11,0,60,,,,,,,14 +15845,641,337,66,31,19,12,12,12,0,60,,,,,,,14 +15846,641,207,6,6,13,13,13,13,0,60,,,,,,,14 +15847,641,320,66,15,16,14,14,14,0,59,,,,,,,15 +15848,641,352,66,28,21,15,15,15,0,59,,,,,,,15 +15849,641,330,200,18,20,16,16,16,0,57,,,,,,,17 +15850,641,329,200,19,22,,N,17,0,56,,,,,,,62 +15851,641,353,180,35,25,,N,18,0,55,,,,,,,62 +15852,641,243,63,24,23,,R,19,0,26,,,,,,,25 +15853,641,306,82,21,11,,R,20,0,15,,,,,,,3 +15854,641,342,200,33,24,,R,21,0,13,,,,,,,51 +15855,641,223,6,5,18,,R,22,0,7,,,,,,,3 +15856,641,289,34,37,15,,R,23,0,2,,,,,,,3 +15857,641,314,34,8,17,,R,24,0,1,,,,,,,80 +15858,641,307,66,16,9,,R,25,0,0,,,,,,,3 +15859,641,354,34,26,0,,F,26,0,0,,,,,,,81 +15860,642,327,25,9,5,1,1,1,9,59,43:52.0,6231991,,,,,1 +15861,642,346,66,14,6,2,2,2,6,59,40.062,6272053,,,,,1 +15862,642,238,200,25,11,3,3,3,4,59,44.07,6276061,,,,,1 +15863,642,307,66,16,12,4,4,4,3,59,56.749,6288740,,,,,1 +15864,642,328,25,8,1,5,5,5,2,59,+1:00.003,6291994,,,,,1 +15865,642,223,6,5,4,6,6,6,1,59,+1:16.426,6308417,,,,,1 +15866,642,289,34,22,18,7,7,7,0,58,,,,,,,11 +15867,642,306,82,12,10,8,8,8,0,58,,,,,,,11 +15868,642,320,66,15,21,9,9,9,0,58,,,,,,,11 +15869,642,322,1,31,22,10,10,10,0,58,,,,,,,11 +15870,642,333,199,27,26,11,11,11,0,57,,,,,,,12 +15871,642,278,82,11,8,12,12,12,0,57,,,,,,,12 +15872,642,337,66,17,16,13,13,13,0,57,,,,,,,12 +15873,642,355,66,28,24,14,14,14,0,56,,,,,,,13 +15874,642,305,63,20,14,15,15,15,0,54,,,,,,,3 +15875,642,347,1,29,28,16,16,16,0,54,,,,,,,60 +15876,642,341,63,18,13,17,17,17,0,54,,,,,,,15 +15877,642,342,200,33,25,,N,18,0,52,,,,,,,62 +15878,642,235,6,32,7,,R,19,0,49,,,,,,,91 +15879,642,224,180,2,2,,N,20,0,49,,,,,,,62 +15880,642,353,180,30,29,,N,21,0,49,,,,,,,62 +15881,642,304,1,7,3,,R,22,0,47,,,,,,,3 +15882,642,314,34,23,15,,R,23,0,41,,,,,,,5 +15883,642,354,34,24,27,,R,24,0,30,,,,,,,22 +15884,642,344,63,19,17,,R,25,0,15,,,,,,,5 +15885,642,280,200,21,20,,R,26,0,23,,,,,,,5 +15886,642,330,200,26,23,,R,27,0,11,,,,,,,36 +15887,642,317,180,3,9,,R,28,0,5,,,,,,,23 +15888,642,309,25,10,19,,R,29,0,1,,,,,,,8 +15889,643,356,34,12,3,1,1,1,9,80,49:35.4,6575400,,,,,1 +15890,643,304,187,6,6,2,2,2,6,80,8.1,6583500,,,,,1 +15891,643,328,37,1,1,3,3,3,4,80,17.1,6592500,,,,,1 +15892,643,306,82,3,8,4,4,4,3,80,+1:13.1,6648500,,,,,1 +15893,643,357,32,10,14,5,5,5,2,79,,,,,,,11 +15894,643,289,32,11,19,6,6,6,1,79,,,,,,,11 +15895,643,280,82,4,18,7,7,7,0,78,,,,,,,12 +15896,643,340,32,23,22,8,8,8,0,78,,,,,,,12 +15897,643,345,66,20,16,9,9,9,0,76,,,,,,,14 +15898,643,346,37,16,9,10,10,10,0,75,,,,,,,15 +15899,643,362,34,24,21,11,11,11,0,75,,,,,,,15 +15900,643,293,32,25,13,12,12,12,0,73,,,,,,,5 +15901,643,358,32,9,4,13,13,13,0,72,,,,,,,5 +15902,643,235,6,17,5,,R,14,0,60,,,,,,,5 +15903,643,341,187,7,7,,R,15,0,60,,,,,,,5 +15904,643,352,66,21,23,,R,16,0,58,,,,,,,5 +15905,643,359,37,2,17,,R,17,0,57,,,,,,,5 +15906,643,360,187,5,10,,R,18,0,39,,,,,,,5 +15907,643,361,86,22,20,,R,19,0,39,,,,,,,3 +15908,643,207,37,8,11,,R,20,0,26,,,,,,,25 +15909,643,243,34,14,15,,R,21,0,23,,,,,,,5 +15910,643,262,66,19,12,,R,22,0,22,,,,,,,6 +15911,643,278,37,15,2,,R,23,0,14,,,,,,,25 +15912,644,328,37,1,3,1,1,1,9,90,10:58.2,7858200,,,,,1 +15913,644,360,187,11,11,2,2,2,6,89,,,,,,,11 +15914,644,207,37,18,16,3,3,3,4,89,,,,,,,11 +15915,644,289,32,6,15,4,4,4,3,89,,,,,,,11 +15916,644,359,37,16,14,5,5,5,2,88,,,,,,,12 +15917,644,341,187,8,12,,R,6,0,76,,,,,,,6 +15918,644,356,34,7,1,,R,7,0,61,,,,,,,5 +15919,644,243,34,24,17,,R,8,0,43,,,,,,,5 +15920,644,280,82,22,9,,R,9,0,33,,,,,,,5 +15921,644,306,82,4,4,,R,10,0,31,,,,,,,5 +15922,644,304,187,5,2,,R,11,0,10,,,,,,,80 +15923,644,278,37,9,6,,R,12,0,10,,,,,,,5 +15924,644,358,32,3,8,,R,13,0,9,,,,,,,80 +15925,644,345,66,10,5,,W,14,0,4,,,,,,,54 +15926,644,235,6,2,7,,R,15,0,0,,,,,,,3 +15927,644,262,66,15,10,,R,16,0,0,,,,,,,3 +15928,644,361,86,12,13,,W,17,0,0,,,,,,,54 +15929,644,333,198,20,0,,F,18,0,0,,,,,,,81 +15930,644,357,32,19,0,,F,19,0,0,,,,,,,81 +15931,644,346,37,14,0,,F,20,0,0,,,,,,,81 +15932,644,352,66,21,0,,F,21,0,0,,,,,,,81 +15933,644,339,32,23,0,,F,22,0,0,,,,,,,81 +15934,645,358,32,3,8,1,1,1,9,80,54:37.4,6877400,,,,,1 +15935,645,356,34,5,4,2,2,2,6,80,23.1,6900500,,,,,1 +15936,645,280,82,9,7,3,3,3,4,80,51.4,6928800,,,,,1 +15937,645,304,187,11,3,4,4,4,3,80,+1:28.3,6965700,,,,,1 +15938,645,289,32,1,16,5,5,5,2,79,,,,,,,11 +15939,645,345,66,17,15,6,6,6,1,78,,,,,,,12 +15940,645,238,37,23,12,7,7,7,0,78,,,,,,,12 +15941,645,346,37,19,11,8,8,8,0,76,,,,,,,60 +15942,645,278,37,28,2,,R,9,0,60,,,,,,,22 +15943,645,361,86,24,9,,N,10,0,58,,,,,,,62 +15944,645,328,37,21,1,,R,11,0,57,,,,,,,5 +15945,645,262,66,16,14,,R,12,0,42,,,,,,,5 +15946,645,306,82,8,6,,R,13,0,21,,,,,,,24 +15947,645,360,187,12,10,,R,14,0,19,,,,,,,22 +15948,645,341,187,14,13,,R,15,0,14,,,,,,,51 +15949,645,235,6,26,5,,R,16,0,11,,,,,,,86 +15950,645,333,198,10,0,,F,17,0,0,,,,,,,81 +15951,645,243,34,6,0,,F,18,0,0,,,,,,,81 +15952,645,352,66,15,0,,F,19,0,0,,,,,,,81 +15953,645,357,32,2,0,,F,20,0,0,,,,,,,81 +15954,645,359,37,20,0,,F,21,0,0,,,,,,,81 +15955,646,345,66,1,6,1,1,1,9,28,38:10.1,5890100,,,,,1 +15956,646,278,37,10,3,2,2,2,6,28,1.1,5891200,,,,,1 +15957,646,306,82,25,11,3,3,3,4,28,+1:43.7,5993800,,,,,1 +15958,646,363,6,28,8,4,4,4,3,28,+2:38.5,6048600,,,,,1 +15959,646,243,34,19,7,5,5,5,2,28,+3:31.8,6101900,,,,,1 +15960,646,280,82,26,17,6,6,6,1,27,,,,,,,10 +15961,646,346,37,9,10,7,7,7,0,26,,,,,,,32 +15962,646,235,6,27,4,8,8,8,0,26,,,,,,,12 +15963,646,238,37,14,9,,N,9,0,20,,,,,,,62 +15964,646,356,34,18,5,,R,10,0,19,,,,,,,8 +15965,646,289,32,23,16,,R,11,0,19,,,,,,,5 +15966,646,328,37,11,1,,R,12,0,14,,,,,,,5 +15967,646,357,32,21,13,,R,13,0,13,,,,,,,6 +15968,646,358,32,20,2,,R,14,0,10,,,,,,,5 +15969,646,262,66,2,14,,R,15,0,7,,,,,,,5 +15970,646,361,86,7,12,,R,16,0,4,,,,,,,51 +15971,646,321,34,8,15,,R,17,0,1,,,,,,,6 +15972,647,358,32,10,1,1,1,1,9,80,50:43.4,6643400,,,,,1 +15973,647,328,37,5,2,2,2,2,6,80,30,6673400,,,,,1 +15974,647,235,6,25,3,3,3,3,4,79,,,,,,,11 +15975,647,223,6,26,6,4,4,4,3,79,,,,,,,11 +15976,647,306,82,23,10,5,5,5,2,79,,,,,,,11 +15977,647,341,187,16,14,6,6,6,1,79,,,,,,,11 +15978,647,357,32,12,8,7,7,7,0,78,,,,,,,12 +15979,647,280,82,24,13,8,8,8,0,78,,,,,,,12 +15980,647,238,37,22,16,9,9,9,0,78,,,,,,,12 +15981,647,345,66,1,7,10,10,10,0,77,,,,,,,13 +15982,647,356,34,18,12,11,11,11,0,76,,,,,,,14 +15983,647,289,32,15,20,,N,12,0,71,,,,,,,62 +15984,647,327,37,6,15,,R,13,0,31,,,,,,,5 +15985,647,352,66,3,18,,R,14,0,26,,,,,,,44 +15986,647,262,66,2,5,,R,15,0,23,,,,,,,5 +15987,647,361,86,4,9,,R,16,0,22,,,,,,,3 +15988,647,346,37,9,17,,R,17,0,22,,,,,,,5 +15989,647,320,187,20,11,,R,18,0,18,,,,,,,3 +15990,647,364,187,32,19,,R,19,0,2,,,,,,,5 +15991,647,278,37,8,4,,R,20,0,1,,,,,,,8 +15992,647,333,198,21,0,,F,21,0,0,,,,,,,81 +15993,647,243,34,19,0,,F,22,0,0,,,,,,,81 +15994,647,353,32,31,0,,F,23,0,0,,,,,,,81 +15995,647,351,85,29,0,,F,24,0,0,,,,,,,81 +15996,648,358,32,6,6,1,1,1,9,38,55:57.0,6957000,,,,,1 +15997,648,278,37,14,3,2,2,2,6,38,7.61,6964610,,,,,1 +15998,648,356,34,23,5,3,3,3,4,38,44.83,7001830,,,,,1 +15999,648,304,187,19,7,4,4,4,3,38,45.66,7002660,,,,,1 +16000,648,280,82,20,8,5,5,5,2,38,+1:19.42,7036420,,,,,1 +16001,648,364,187,32,17,6,6,6,1,38,+1:19.65,7036650,,,,,1 +16002,648,243,34,22,14,7,7,7,0,38,+2:20.16,7097160,,,,,1 +16003,648,357,32,7,18,8,8,8,0,38,+2:47.17,7124170,,,,,1 +16004,648,328,37,1,4,9,9,9,0,38,+3:09.61,7146610,,,,,1 +16005,648,289,32,8,20,10,10,10,0,37,,,,,,,11 +16006,648,327,37,2,13,11,11,11,0,37,,,,,,,11 +16007,648,352,66,4,19,12,12,12,0,36,,,,,,,12 +16008,648,306,82,21,2,13,13,13,0,35,,,,,,,60 +16009,648,363,6,11,11,14,14,14,0,35,,,,,,,13 +16010,648,333,198,16,15,,N,15,0,29,,,,,,,62 +16011,648,346,37,12,16,,R,16,0,23,,,,,,,3 +16012,648,238,37,18,9,,R,17,0,17,,,,,,,24 +16013,648,235,6,10,1,,R,18,0,16,,,,,,,5 +16014,648,345,66,3,10,,R,19,0,6,,,,,,,6 +16015,648,262,66,5,12,,R,20,0,5,,,,,,,5 +16016,648,351,85,24,0,,F,21,0,0,,,,,,,81 +16017,648,339,32,9,0,,F,22,0,0,,,,,,,81 +16018,648,353,32,25,0,,F,23,0,0,,,,,,,81 +16019,649,358,32,5,1,1,1,1,9,80,57:02.0,7022000,,,,,1 +16020,649,356,34,17,2,2,2,2,6,80,32.9,7054900,,,,,1 +16021,649,304,187,9,5,3,3,3,4,80,54.4,7076400,,,,,1 +16022,649,223,6,4,6,4,4,4,3,80,54.8,7076800,,,,,1 +16023,649,278,37,16,17,5,5,5,2,79,,,,,,,11 +16024,649,289,32,14,22,6,6,6,1,79,,,,,,,11 +16025,649,327,37,2,14,7,7,7,0,79,,,,,,,11 +16026,649,224,32,28,21,8,8,8,0,78,,,,,,,12 +16027,649,238,37,27,13,9,9,9,0,72,,,,,,,18 +16028,649,353,32,29,23,,N,10,0,69,,,,,,,62 +16029,649,364,187,32,11,,R,11,0,60,,,,,,,51 +16030,649,345,66,22,15,,R,12,0,58,,,,,,,3 +16031,649,262,66,23,4,,R,13,0,54,,,,,,,5 +16032,649,328,37,1,8,,R,14,0,52,,,,,,,8 +16033,649,341,63,20,19,,R,15,0,51,,,,,,,51 +16034,649,280,82,8,12,,R,16,0,41,,,,,,,3 +16035,649,306,82,7,10,,R,17,0,24,,,,,,,36 +16036,649,207,37,26,9,,R,18,0,21,,,,,,,22 +16037,649,346,37,15,20,,R,19,0,19,,,,,,,22 +16038,649,357,32,6,7,,R,20,0,15,,,,,,,5 +16039,649,352,66,24,16,,R,21,0,10,,,,,,,51 +16040,649,235,6,3,3,,R,22,0,6,,,,,,,7 +16041,649,333,198,11,18,,R,23,0,0,,,,,,,95 +16042,650,358,32,2,2,1,1,1,9,50,42:00.3,6120300,,,,,1 +16043,650,235,6,10,1,2,2,2,6,50,0.7,6121000,,,,,1 +16044,650,304,187,4,16,3,3,3,4,50,+1:21.8,6202100,,,,,1 +16045,650,224,32,17,13,4,4,4,3,50,+1:55.1,6235400,,,,,1 +16046,650,243,34,21,11,5,5,5,2,49,,,,,,,11 +16047,650,280,82,14,5,6,6,6,1,49,,,,,,,11 +16048,650,327,37,23,14,7,7,7,0,49,,,,,,,11 +16049,650,346,37,12,4,8,8,8,0,47,,,,,,,80 +16050,650,341,63,7,15,9,9,9,0,46,,,,,,,5 +16051,650,289,32,9,20,,R,10,0,37,,,,,,,5 +16052,650,278,37,5,6,,R,11,0,34,,,,,,,5 +16053,650,223,6,15,3,,R,12,0,30,,,,,,,5 +16054,650,357,32,16,10,,R,13,0,24,,,,,,,5 +16055,650,328,37,1,7,,R,14,0,20,,,,,,,5 +16056,650,207,37,11,9,,R,15,0,15,,,,,,,6 +16057,650,238,37,22,19,,R,16,0,11,,,,,,,5 +16058,650,345,66,6,8,,R,17,0,7,,,,,,,80 +16059,650,262,66,18,18,,R,18,0,5,,,,,,,5 +16060,650,356,34,3,12,,R,19,0,4,,,,,,,44 +16061,650,306,82,8,21,,R,20,0,4,,,,,,,22 +16062,650,320,187,24,17,,R,21,0,3,,,,,,,37 +16063,650,312,86,25,0,,F,22,0,0,,,,,,,81 +16064,650,333,198,20,0,,F,23,0,0,,,,,,,81 +16065,650,351,85,27,0,,F,24,0,0,,,,,,,81 +16066,650,365,37,26,0,,F,25,0,0,,,,,,,81 +16067,17,20,9,15,2,1,1,1,10,55,34:03.4,5643414,54,1,01:40.3,199.387,1 +16068,17,17,9,14,3,2,2,2,8,55,17.857,5661271,14,5,01:40.6,198.808,1 +16069,17,18,23,22,5,3,3,3,6,55,18.467,5661881,49,6,01:40.6,198.668,1 +16070,17,22,23,23,4,4,4,4,5,55,22.735,5666149,54,4,01:40.4,199.05,1 +16071,17,2,2,6,8,5,5,5,4,55,26.253,5669667,54,7,01:40.7,198.609,1 +16072,17,155,7,10,12,6,6,6,3,55,28.343,5671757,55,11,01:40.8,198.398,1 +16073,17,15,7,9,6,7,7,7,2,55,34.366,5677780,49,8,01:40.7,198.508,1 +16074,17,67,5,12,10,8,8,8,1,55,41.294,5684708,55,2,01:40.3,199.294,1 +16075,17,3,3,16,9,9,9,9,0,55,45.941,5689355,49,15,01:41.0,197.97,1 +16076,17,9,2,5,7,10,10,10,0,55,48.18,5691594,54,14,01:40.9,198.113,1 +16077,17,5,1,2,18,11,11,11,0,55,52.798,5696212,53,18,01:41.3,197.346,1 +16078,17,8,6,4,11,12,12,12,0,55,54.317,5697731,54,12,01:40.8,198.272,1 +16079,17,6,3,17,13,13,13,13,0,55,59.839,5703253,54,9,01:40.8,198.447,1 +16080,17,4,4,7,15,14,14,14,0,55,+1:09.687,5713101,54,10,01:40.8,198.441,1 +16081,17,24,10,21,16,15,15,15,0,55,+1:34.450,5737864,54,17,01:41.3,197.422,1 +16082,17,21,6,3,20,16,16,16,0,54,,,54,16,01:41.1,197.705,11 +16083,17,16,10,20,17,17,17,17,0,54,,,34,13,01:40.9,198.152,11 +16084,17,154,4,8,19,18,18,18,0,54,,,47,19,01:42.3,195.498,11 +16085,17,1,1,1,1,,R,19,0,20,,,16,3,01:40.4,199.212,23 +16086,17,153,5,11,14,,R,20,0,18,,,16,20,01:43.3,193.522,6 +16087,651,235,6,12,3,1,1,1,9,60,42:17.3,6137300,,,,,1 +16088,651,223,6,27,2,2,2,2,6,60,0.61,6137910,,,,,1 +16089,651,243,34,11,17,3,3,3,4,60,+1:27.88,6225180,,,,,1 +16090,651,345,66,17,22,4,4,4,3,59,,,,,,,11 +16091,651,262,66,16,14,5,5,5,2,59,,,,,,,11 +16092,651,306,82,19,7,6,6,6,1,59,,,,,,,11 +16093,651,363,6,14,5,7,7,7,0,59,,,,,,,11 +16094,651,278,37,4,5,8,8,8,0,59,,,,,,,11 +16095,651,346,37,3,20,9,9,9,0,59,,,,,,,11 +16096,651,320,187,23,21,10,10,10,0,59,,,,,,,11 +16097,651,352,66,18,23,11,11,11,0,58,,,,,,,12 +16098,651,333,198,22,15,12,12,12,0,57,,,,,,,13 +16099,651,356,34,10,8,13,13,13,0,56,,,,,,,14 +16100,651,280,82,20,13,14,14,14,0,56,,,,,,,14 +16101,651,224,32,8,16,15,15,15,0,55,,,,,,,15 +16102,651,304,187,21,11,,R,16,0,30,,,,,,,5 +16103,651,341,63,15,12,,R,17,0,27,,,,,,,5 +16104,651,314,86,26,19,,R,18,0,25,,,,,,,5 +16105,651,358,32,6,1,,R,19,0,21,,,,,,,5 +16106,651,207,37,5,18,,R,20,0,13,,,,,,,3 +16107,651,351,85,24,24,,R,21,0,13,,,,,,,21 +16108,651,328,37,1,4,,R,22,0,7,,,,,,,106 +16109,651,357,32,7,10,,R,23,0,4,,,,,,,23 +16110,651,327,37,2,9,,R,24,0,0,,,,,,,5 +16111,652,223,6,4,3,1,1,1,9,68,39:07.1,5947100,,,,,1 +16112,652,328,37,18,4,2,2,2,6,68,5.73,5952830,,,,,1 +16113,652,306,82,40,14,3,3,3,4,68,5.8,5952900,,,,,1 +16114,652,304,187,30,9,4,4,4,3,68,6.15,5953250,,,,,1 +16115,652,243,34,46,17,5,5,5,2,68,6.41,5953510,,,,,1 +16116,652,327,37,20,11,6,6,6,1,68,+1:03.46,6010560,,,,,1 +16117,652,278,37,48,18,7,7,7,0,67,,,,,,,11 +16118,652,333,198,34,12,8,8,8,0,61,,,,,,,17 +16119,652,320,187,32,16,,N,9,0,60,,,,,,,62 +16120,652,262,66,8,6,,R,10,0,36,,,,,,,5 +16121,652,238,37,52,13,,R,11,0,35,,,,,,,5 +16122,652,356,34,44,8,,R,12,0,31,,,,,,,3 +16123,652,235,6,2,1,,R,13,0,25,,,,,,,8 +16124,652,352,66,12,20,,R,14,0,21,,,,,,,25 +16125,652,314,86,54,19,,R,15,0,17,,,,,,,5 +16126,652,363,6,6,15,,R,16,0,14,,,,,,,69 +16127,652,280,82,42,5,,R,17,0,14,,,,,,,5 +16128,652,345,66,10,2,,R,18,0,12,,,,,,,5 +16129,652,346,37,50,7,,R,19,0,3,,,,,,,5 +16130,652,341,63,14,10,,R,20,0,0,,,,,,,10 +16131,652,289,32,28,0,,W,21,0,0,,,,,,,54 +16132,652,357,32,24,0,,W,22,0,0,,,,,,,54 +16133,652,358,32,22,0,,W,23,0,0,,,,,,,104 +16134,652,347,187,38,0,,F,24,0,0,,,,,,,81 +16135,652,224,32,26,0,,W,25,0,0,,,,,,,54 +16136,652,330,198,36,0,,F,26,0,0,,,,,,,81 +16137,652,351,85,56,0,,F,27,0,0,,,,,,,81 +16138,653,235,6,18,2,1,1,1,9,90,21:18.4,4878400,,,,,1 +16139,653,223,6,19,3,2,2,2,6,90,14.8,4893200,,,,,1 +16140,653,278,37,20,6,3,3,3,4,90,57.9,4936300,,,,,1 +16141,653,345,66,14,7,4,4,4,3,89,,,,,,,11 +16142,653,341,63,4,5,5,5,5,2,89,,,,,,,11 +16143,653,320,187,6,11,6,6,6,1,88,,,,,,,12 +16144,653,280,82,24,8,7,7,7,0,87,,,,,,,13 +16145,653,306,82,23,13,8,8,8,0,85,,,,,,,8 +16146,653,327,37,2,4,9,9,9,0,85,,,,,,,15 +16147,653,352,66,16,9,10,10,10,0,85,,,,,,,15 +16148,653,314,86,10,17,,N,11,0,79,,,,,,,62 +16149,653,289,32,9,20,,N,12,0,77,,,,,,,62 +16150,653,333,198,8,12,,R,13,0,69,,,,,,,51 +16151,653,238,37,26,16,,N,14,0,65,,,,,,,62 +16152,653,304,187,5,15,,R,15,0,58,,,,,,,5 +16153,653,356,34,11,19,,R,16,0,57,,,,,,,44 +16154,653,262,66,15,10,,N,17,0,52,,,,,,,62 +16155,653,328,25,3,1,,R,18,0,31,,,,,,,109 +16156,653,243,34,12,18,,R,19,0,22,,,,,,,64 +16157,653,346,37,21,14,,R,20,0,21,,,,,,,5 +16158,654,224,32,24,3,1,1,1,9,108,57:32.8,7052790,,,,,1 +16159,654,345,66,19,4,2,2,2,6,108,36.39,7089180,,,,,1 +16160,654,317,32,23,9,3,3,3,4,108,45.17,7097960,,,,,1 +16161,654,235,6,3,1,4,4,4,3,107,,,,,,,11 +16162,654,278,37,12,5,5,5,5,2,107,,,,,,,11 +16163,654,321,63,18,13,6,6,6,1,107,,,,,,,11 +16164,654,304,187,8,11,7,7,7,0,106,,,,,,,12 +16165,654,280,82,7,12,8,8,8,0,105,,,,,,,13 +16166,654,346,37,11,23,9,9,9,0,105,,,,,,,13 +16167,654,356,34,15,16,10,10,10,0,105,,,,,,,13 +16168,654,238,37,29,15,11,11,11,0,104,,,,,,,14 +16169,654,243,34,16,19,12,12,12,0,104,,,,,,,14 +16170,654,223,6,4,6,13,13,13,0,101,,,,,,,17 +16171,654,320,187,9,21,14,14,14,0,100,,,,,,,18 +16172,654,328,25,1,2,,R,15,0,82,,,,,,,44 +16173,654,289,32,14,10,,R,16,0,72,,,,,,,8 +16174,654,327,37,2,17,,R,17,0,62,,,,,,,36 +16175,654,314,86,30,20,,R,18,0,61,,,,,,,22 +16176,654,347,187,27,24,,R,19,0,50,,,,,,,110 +16177,654,306,82,6,18,,R,20,0,27,,,,,,,64 +16178,654,366,34,31,22,,R,21,0,21,,,,,,,95 +16179,654,262,66,20,7,,R,22,0,14,,,,,,,5 +16180,654,352,66,21,14,,R,23,0,10,,,,,,,5 +16181,654,341,63,17,8,,R,24,0,6,,,,,,,5 +16182,654,367,66,32,0,,F,25,0,0,,,,,,,81 +16183,654,353,32,28,0,,F,26,0,0,,,,,,,81 +16184,654,333,198,10,0,,F,27,0,0,,,,,,,81 +16185,655,235,6,3,3,1,1,1,9,65,53:28.3,6808300,,,,,1 +16186,655,223,6,4,1,2,2,2,6,65,24.64,6832940,,,,,1 +16187,655,304,187,8,14,3,3,3,4,65,45.97,6854270,,,,,1 +16188,655,278,37,12,5,4,4,4,3,65,47.05,6855350,,,,,1 +16189,655,306,82,6,6,5,5,5,2,65,50.11,6858410,,,,,1 +16190,655,345,66,19,7,6,6,6,1,65,+1:24.76,6893060,,,,,1 +16191,655,262,66,20,13,7,7,7,0,64,,,,,,,11 +16192,655,341,63,17,15,8,8,8,0,64,,,,,,,11 +16193,655,280,82,7,11,9,9,9,0,61,,,,,,,14 +16194,655,317,32,23,12,,N,10,0,56,,,,,,,62 +16195,655,356,34,15,4,,R,11,0,52,,,,,,,5 +16196,655,328,25,1,2,,R,12,0,33,,,,,,,22 +16197,655,320,187,9,10,,R,13,0,27,,,,,,,5 +16198,655,243,34,16,17,,R,14,0,15,,,,,,,69 +16199,655,327,37,2,9,,R,15,0,8,,,,,,,5 +16200,655,289,32,14,8,,R,16,0,4,,,,,,,25 +16201,655,346,37,11,16,,R,17,0,3,,,,,,,5 +16202,655,224,32,24,18,,R,18,0,1,,,,,,,5 +16203,656,328,196,7,4,1,1,1,9,80,50:39.1,6639100,,,,,1 +16204,656,289,180,1,7,2,2,2,6,80,18.8,6657900,,,,,1 +16205,656,304,187,5,3,3,3,3,4,80,31.8,6670900,,,,,1 +16206,656,346,180,4,12,4,4,4,3,80,49.2,6688300,,,,,1 +16207,656,360,187,6,8,5,5,5,2,79,,,,,,,11 +16208,656,306,196,8,11,6,6,6,1,78,,,,,,,12 +16209,656,262,66,11,14,7,7,7,0,77,,,,,,,13 +16210,656,368,191,17,17,8,8,8,0,73,,,,,,,17 +16211,656,362,191,19,16,,N,9,0,67,,,,,,,62 +16212,656,358,180,2,2,,R,10,0,44,,,,,,,48 +16213,656,341,66,10,18,,R,11,0,40,,,,,,,5 +16214,656,345,66,12,15,,R,12,0,38,,,,,,,47 +16215,656,278,6,9,5,,R,13,0,34,,,,,,,5 +16216,656,356,182,14,1,,R,14,0,32,,,,,,,64 +16217,656,207,180,3,6,,R,15,0,31,,,,,,,6 +16218,656,340,180,16,10,,R,16,0,31,,,,,,,80 +16219,656,235,182,15,13,,R,17,0,20,,,,,,,80 +16220,656,369,187,18,9,,R,18,0,12,,,,,,,23 +16221,657,328,196,7,4,1,1,1,9,90,16:54.0,8214000,,,,,1 +16222,657,360,187,6,13,2,2,2,6,88,,,,,,,12 +16223,657,306,196,8,12,3,3,3,4,87,,,,,,,13 +16224,657,304,187,5,8,4,4,4,3,87,,,,,,,13 +16225,657,341,66,14,9,5,5,5,2,84,,,,,,,16 +16226,657,235,182,4,7,6,6,6,1,83,,,,,,,17 +16227,657,345,66,9,14,,R,7,0,73,,,,,,,5 +16228,657,278,6,15,2,,R,8,0,56,,,,,,,5 +16229,657,356,182,3,5,,R,9,0,51,,,,,,,5 +16230,657,346,180,10,6,,R,10,0,30,,,,,,,44 +16231,657,358,180,2,1,,R,11,0,19,,,,,,,3 +16232,657,361,182,11,11,,R,12,0,18,,,,,,,5 +16233,657,289,180,1,3,,R,13,0,8,,,,,,,3 +16234,657,262,66,12,10,,R,14,0,1,,,,,,,108 +16235,658,289,180,1,4,1,1,1,9,80,56:59.4,7019400,,,,,1 +16236,658,361,182,16,9,2,2,2,6,80,17.3,7036700,,,,,1 +16237,658,346,180,9,5,3,3,3,4,80,34.6,7054000,,,,,1 +16238,658,370,180,2,10,4,4,4,3,80,52.9,7072300,,,,,1 +16239,658,360,187,4,11,5,5,5,2,79,,,,,,,11 +16240,658,304,187,3,12,6,6,6,1,78,,,,,,,12 +16241,658,350,167,12,16,7,7,7,0,74,,,,,,,16 +16242,658,235,182,6,7,,R,8,0,48,,,,,,,22 +16243,658,328,196,7,1,,R,9,0,22,,,,,,,86 +16244,658,306,196,8,3,,R,10,0,20,,,,,,,86 +16245,658,278,6,11,2,,R,11,0,16,,,,,,,24 +16246,658,345,66,10,14,,R,12,0,15,,,,,,,5 +16247,658,351,182,17,15,,R,13,0,15,,,,,,,86 +16248,658,341,66,14,6,,R,14,0,9,,,,,,,6 +16249,658,356,182,5,8,,R,15,0,9,,,,,,,3 +16250,658,262,66,15,13,,R,16,0,0,,,,,,,3 +16251,659,328,196,4,2,1,1,1,9,90,06:42.1,7602080,,,,,1 +16252,659,346,180,10,10,2,2,2,6,90,24.52,7626600,,,,,1 +16253,659,278,6,8,4,3,3,3,4,90,30.51,7632590,,,,,1 +16254,659,304,187,7,7,4,4,4,3,90,37.16,7639240,,,,,1 +16255,659,235,182,12,5,5,5,5,2,90,37.67,7639750,,,,,1 +16256,659,356,182,11,8,6,6,6,1,90,+1:10.81,7672890,,,,,1 +16257,659,289,180,1,3,7,7,7,0,88,,,,,,,12 +16258,659,306,187,5,11,8,8,8,0,87,,,,,,,13 +16259,659,341,66,14,12,9,9,9,0,87,,,,,,,13 +16260,659,350,187,18,15,10,10,10,0,84,,,,,,,16 +16261,659,351,182,17,14,,R,11,0,54,,,,,,,80 +16262,659,360,187,6,6,,R,12,0,24,,,,,,,22 +16263,659,358,180,2,1,,R,13,0,16,,,,,,,86 +16264,659,361,182,16,9,,R,14,0,12,,,,,,,8 +16265,659,262,66,15,13,,R,15,0,9,,,,,,,6 +16266,660,328,196,2,1,1,1,1,9,38,56:47.4,7007400,,,,,1 +16267,660,306,196,7,5,2,2,2,6,38,57.1,7064500,,,,,1 +16268,660,235,182,11,4,3,3,3,4,38,57.3,7064700,,,,,1 +16269,660,360,187,5,7,4,4,4,3,37,,,,,,,11 +16270,660,350,187,10,10,5,5,5,2,37,,,,,,,11 +16271,660,289,180,1,8,6,6,6,1,37,,,,,,,11 +16272,660,351,182,12,13,7,7,7,0,36,,,,,,,12 +16273,660,304,187,4,2,8,8,8,0,35,,,,,,,13 +16274,660,346,180,3,9,9,9,9,0,34,,,,,,,14 +16275,660,278,6,6,6,,R,10,0,30,,,,,,,5 +16276,660,358,180,15,3,,R,11,0,22,,,,,,,68 +16277,660,361,182,9,11,,R,12,0,21,,,,,,,83 +16278,660,357,180,14,12,,R,13,0,1,,,,,,,48 +16279,661,328,196,3,2,1,1,1,9,84,55:55.6,6955600,,,,,1 +16280,661,235,182,7,4,2,2,2,6,83,,,,,,,11 +16281,661,360,187,6,7,3,3,3,4,83,,,,,,,11 +16282,661,358,180,2,1,4,4,4,3,83,,,,,,,11 +16283,661,361,182,16,10,5,5,5,2,83,,,,,,,11 +16284,661,350,187,19,11,6,6,6,1,82,,,,,,,12 +16285,661,289,180,1,12,7,7,7,0,82,,,,,,,12 +16286,661,346,180,10,9,8,8,8,0,81,,,,,,,13 +16287,661,306,196,4,17,9,9,9,0,78,,,,,,,16 +16288,661,357,180,9,14,10,10,10,0,75,,,,,,,19 +16289,661,345,6,12,8,,R,11,0,61,,,,,,,5 +16290,661,278,6,11,5,,R,12,0,45,,,,,,,6 +16291,661,304,187,5,3,,R,13,0,27,,,,,,,80 +16292,661,262,66,15,13,,R,14,0,19,,,,,,,7 +16293,661,347,180,18,16,,R,15,0,6,,,,,,,5 +16294,661,321,187,20,15,,R,16,0,5,,,,,,,22 +16295,661,341,66,14,6,,R,17,0,1,,,,,,,22 +16296,662,235,182,6,1,1,1,1,9,14,49:55.4,6595400,,,,,1 +16297,662,328,196,7,2,2,2,2,6,14,57.7,6653100,,,,,1 +16298,662,360,187,10,8,3,3,3,4,14,+3:21.6,6797000,,,,,1 +16299,662,289,180,1,9,4,4,4,3,14,+3:58.8,6834200,,,,,1 +16300,662,346,180,11,4,5,5,5,2,12,,,,,,,22 +16301,662,306,196,8,10,6,6,6,1,12,,,,,,,22 +16302,662,304,187,9,5,,R,7,0,11,,,,,,,7 +16303,662,262,197,15,16,,R,8,0,11,,,,,,,44 +16304,662,358,180,2,3,,R,9,0,10,,,,,,,80 +16305,662,347,180,16,23,,R,10,0,4,,,,,,,95 +16306,662,361,182,17,7,,R,11,0,1,,,,,,,3 +16307,662,350,187,12,6,,R,12,0,0,,,,,,,3 +16308,662,207,180,3,15,,R,13,0,0,,,,,,,3 +16309,662,341,66,14,11,,W,14,0,0,,,,,,,54 +16310,663,328,196,20,3,1,1,1,9,68,39:11.3,5951260,,,,,1 +16311,663,358,180,4,1,2,2,2,6,68,0.08,5951340,,,,,1 +16312,663,306,196,22,6,3,3,3,4,68,0.17,5951430,,,,,1 +16313,663,360,187,18,5,4,4,4,3,68,0.19,5951450,,,,,1 +16314,663,361,182,32,4,5,5,5,2,68,33.44,5984700,,,,,1 +16315,663,345,6,10,12,6,6,6,1,66,,,,,,,12 +16316,663,304,187,16,2,7,7,7,0,66,,,,,,,12 +16317,663,346,180,30,8,8,8,8,0,64,,,,,,,5 +16318,663,289,180,1,9,9,9,9,0,63,,,,,,,86 +16319,663,235,182,26,15,10,10,10,0,61,,,,,,,60 +16320,663,341,66,14,10,,N,11,0,60,,,,,,,62 +16321,663,262,66,12,11,,R,12,0,48,,,,,,,51 +16322,663,351,182,36,13,,R,13,0,9,,,,,,,95 +16323,663,356,182,28,7,,R,14,0,6,,,,,,,44 +16324,663,357,180,6,14,,R,15,0,3,,,,,,,5 +16325,664,235,182,11,1,1,1,1,9,90,59:25.7,7165700,,,,,1 +16326,664,356,182,12,6,2,2,2,6,90,46.2,7211900,,,,,1 +16327,664,358,180,2,3,3,3,3,4,90,52,7217700,,,,,1 +16328,664,306,196,18,2,4,4,4,3,89,,,,,,,11 +16329,664,360,187,4,9,5,5,5,2,87,,,,,,,13 +16330,664,359,196,19,15,6,6,6,1,84,,,,,,,16 +16331,664,353,180,25,16,7,7,7,0,81,,,,,,,19 +16332,664,343,66,16,18,,N,8,0,80,,,,,,,62 +16333,664,289,180,1,7,,R,9,0,42,,,,,,,5 +16334,664,346,180,9,8,,R,10,0,40,,,,,,,86 +16335,664,357,180,3,11,,R,11,0,40,,,,,,,6 +16336,664,345,6,6,13,,R,12,0,37,,,,,,,51 +16337,664,328,196,17,4,,R,13,0,32,,,,,,,4 +16338,664,371,189,69,17,,D,14,0,22,,,,,,,2 +16339,664,341,66,14,14,,R,15,0,15,,,,,,,5 +16340,664,361,182,21,10,,R,16,0,13,,,,,,,95 +16341,664,372,183,26,19,,R,17,0,10,,,,,,,44 +16342,664,304,187,5,5,,R,18,0,9,,,,,,,99 +16343,664,262,66,15,12,,R,19,0,2,,,,,,,5 +16344,664,351,182,20,20,,R,20,0,0,,,,,,,3 +16345,665,358,180,2,1,1,1,1,9,108,57:56.8,7076840,,,,,1 +16346,665,361,182,18,9,2,2,2,6,108,46.99,7123830,,,,,1 +16347,665,341,66,14,11,3,3,3,4,106,,,,,,,12 +16348,665,356,182,8,18,4,4,4,3,106,,,,,,,12 +16349,665,345,6,12,12,5,5,5,2,101,,,,,,,17 +16350,665,351,182,19,17,6,6,6,1,98,,,,,,,88 +16351,665,359,196,16,15,,N,7,0,92,,,,,,,62 +16352,665,289,180,1,4,,R,8,0,90,,,,,,,3 +16353,665,235,182,7,8,,R,9,0,77,,,,,,,5 +16354,665,352,66,22,9,,R,10,0,76,,,,,,,5 +16355,665,306,196,4,7,,R,11,0,72,,,,,,,5 +16356,665,304,187,5,2,,R,12,0,52,,,,,,,6 +16357,665,328,196,3,3,,R,13,0,35,,,,,,,5 +16358,665,353,180,21,16,,R,14,0,25,,,,,,,86 +16359,665,262,66,15,14,,R,15,0,23,,,,,,,5 +16360,665,346,180,10,13,,R,16,0,3,,,,,,,69 +16361,665,207,180,9,5,,R,17,0,3,,,,,,,22 +16362,665,360,187,6,6,,R,18,0,0,,,,,,,5 +16363,666,304,187,5,4,1,1,1,9,65,54:08.8,6848800,,,,,1 +16364,666,235,182,7,2,2,2,2,6,65,2.56,6851360,,,,,1 +16365,666,356,182,8,1,3,3,3,4,65,38.48,6887280,,,,,1 +16366,666,328,196,3,3,4,4,4,3,65,47.04,6895840,,,,,1 +16367,666,306,196,4,8,5,5,5,2,65,+1:38.52,6947320,,,,,1 +16368,666,262,66,15,12,6,6,6,1,63,,,,,,,12 +16369,666,345,6,12,15,7,7,7,0,63,,,,,,,12 +16370,666,359,196,16,14,8,8,8,0,63,,,,,,,12 +16371,666,353,180,21,16,9,9,9,0,62,,,,,,,13 +16372,666,361,182,18,9,10,10,10,0,61,,,,,,,14 +16373,666,351,182,19,13,11,11,11,0,60,,,,,,,95 +16374,666,341,66,14,10,,R,12,0,53,,,,,,,6 +16375,666,358,180,2,6,,R,13,0,21,,,,,,,22 +16376,666,352,66,22,17,,R,14,0,6,,,,,,,6 +16377,666,346,180,10,5,,R,15,0,4,,,,,,,3 +16378,666,357,180,9,11,,R,16,0,3,,,,,,,48 +16379,666,360,187,6,7,,W,17,0,0,,,,,,,54 +16380,667,373,180,4,1,1,1,1,9,80,53:56.6,6836600,,,,,1 +16381,667,289,180,5,2,2,2,2,6,80,25.3,6861900,,,,,1 +16382,667,358,191,3,4,3,3,3,4,80,30.4,6867000,,,,,1 +16383,667,278,6,8,8,4,4,4,3,78,,,,,,,12 +16384,667,304,194,1,9,5,5,5,2,78,,,,,,,12 +16385,667,306,196,21,18,6,6,6,1,77,,,,,,,13 +16386,667,346,167,19,16,7,7,7,0,77,,,,,,,13 +16387,667,341,11,7,6,8,8,8,0,75,,,,,,,15 +16388,667,340,191,17,17,9,9,9,0,75,,,,,,,15 +16389,667,334,183,23,23,,N,10,0,71,,,,,,,62 +16390,667,364,190,6,12,,R,11,0,58,,,,,,,44 +16391,667,235,6,9,11,,R,12,0,51,,,,,,,44 +16392,667,347,167,20,19,,R,13,0,46,,,,,,,25 +16393,667,328,196,16,3,,R,14,0,43,,,,,,,5 +16394,667,368,89,18,22,,R,15,0,35,,,,,,,25 +16395,667,369,170,25,20,,R,16,0,22,,,,,,,5 +16396,667,345,66,11,10,,R,17,0,20,,,,,,,69 +16397,667,356,191,2,5,,R,18,0,16,,,,,,,5 +16398,667,333,6,10,7,,R,19,0,13,,,,,,,3 +16399,667,374,66,12,14,,R,20,0,7,,,,,,,69 +16400,667,312,167,14,21,,R,21,0,4,,,,,,,44 +16401,667,293,191,22,14,,R,22,0,3,,,,,,,24 +16402,667,375,195,15,15,,R,23,0,2,,,,,,,110 +16403,668,289,180,10,6,1,1,1,9,90,15:02.1,8102100,,,,,1 +16404,668,304,187,1,3,2,2,2,6,90,15.9,8118000,,,,,1 +16405,668,312,195,14,13,3,3,3,4,89,,,,,,,11 +16406,668,375,195,15,12,4,4,4,3,89,,,,,,,11 +16407,668,306,196,6,5,5,5,5,2,81,,,,,,,19 +16408,668,360,187,2,4,,R,6,0,77,,,,,,,44 +16409,668,341,11,7,7,,R,7,0,74,,,,,,,6 +16410,668,346,180,16,10,,R,8,0,62,,,,,,,7 +16411,668,278,6,19,1,,R,9,0,57,,,,,,,48 +16412,668,361,66,5,11,,R,10,0,52,,,,,,,48 +16413,668,345,66,9,2,,R,11,0,27,,,,,,,3 +16414,668,235,6,21,8,,R,12,0,13,,,,,,,80 +16415,668,358,191,4,9,,R,13,0,10,,,,,,,51 +16416,668,356,191,3,0,,W,14,0,0,,,,,,,54 +16417,669,289,180,9,1,1,1,1,9,80,00:32.3,7232300,,,,,1 +16418,669,370,66,15,6,2,2,2,6,80,2.2,7234500,,,,,1 +16419,669,376,195,7,14,3,3,3,4,76,,,,,,,14 +16420,669,375,195,6,15,4,4,4,3,76,,,,,,,14 +16421,669,304,187,12,10,5,5,5,2,73,,,,,,,17 +16422,669,341,11,8,4,,R,6,0,16,,,,,,,6 +16423,669,345,66,4,9,,R,7,0,16,,,,,,,3 +16424,669,346,180,17,3,,R,8,0,17,,,,,,,24 +16425,669,306,82,1,8,,R,9,0,11,,,,,,,3 +16426,669,361,66,16,11,,R,10,0,11,,,,,,,83 +16427,669,364,190,19,16,,R,11,0,9,,,,,,,5 +16428,669,358,191,3,5,,R,12,0,8,,,,,,,3 +16429,669,356,191,2,12,,R,13,0,7,,,,,,,22 +16430,669,359,196,11,2,,R,14,0,3,,,,,,,86 +16431,669,360,187,14,7,,R,15,0,0,,,,,,,3 +16432,669,262,180,10,13,,R,16,0,0,,,,,,,3 +16433,669,347,194,18,0,,F,17,0,0,,,,,,,81 +16434,669,351,191,21,0,,F,18,0,0,,,,,,,81 +16435,670,360,187,5,6,1,1,1,9,28,40:02.1,6002100,,,,,1 +16436,670,345,66,11,8,2,2,2,6,28,12.1,6014200,,,,,1 +16437,670,235,6,23,3,3,3,3,4,28,39.6,6041700,,,,,1 +16438,670,328,196,7,2,4,4,4,3,27,,,,,,,60 +16439,670,262,180,2,15,5,5,5,2,26,,,,,,,7 +16440,670,376,195,15,12,6,6,6,1,26,,,,,,,12 +16441,670,346,180,3,9,7,7,7,0,25,,,,,,,51 +16442,670,306,82,10,13,8,8,8,0,25,,,,,,,13 +16443,670,361,66,14,7,,R,9,0,22,,,,,,,5 +16444,670,304,187,6,5,,R,10,0,18,,,,,,,86 +16445,670,341,11,20,4,,R,11,0,11,,,,,,,22 +16446,670,278,6,22,1,,R,12,0,8,,,,,,,21 +16447,670,312,195,16,11,,R,13,0,6,,,,,,,20 +16448,670,370,66,12,18,,R,14,0,6,,,,,,,108 +16449,670,356,191,18,10,,R,15,0,6,,,,,,,37 +16450,670,289,180,1,14,,R,16,0,5,,,,,,,86 +16451,670,358,191,19,17,,R,17,0,5,,,,,,,5 +16452,670,347,194,17,16,,R,18,0,1,,,,,,,36 +16453,671,328,196,8,5,1,1,1,9,90,46:11.2,9971200,,,,,1 +16454,671,306,82,17,16,2,2,2,6,90,+1:33.93,10065130,,,,,1 +16455,671,345,66,15,11,3,3,3,4,89,,,,,,,11 +16456,671,235,6,10,6,4,4,4,3,88,,,,,,,12 +16457,671,351,191,22,7,5,5,5,2,87,,,,,,,13 +16458,671,278,6,9,1,6,6,6,1,85,,,,,,,15 +16459,671,370,66,16,15,7,7,7,0,85,,,,,,,15 +16460,671,347,194,19,19,8,8,8,0,82,,,,,,,18 +16461,671,289,180,3,3,9,9,9,0,81,,,,,,,3 +16462,671,262,180,4,10,,N,10,0,80,,,,,,,62 +16463,671,364,191,18,12,,R,11,0,63,,,,,,,37 +16464,671,346,180,21,13,,R,12,0,55,,,,,,,6 +16465,671,341,11,7,9,,R,13,0,50,,,,,,,91 +16466,671,361,66,20,14,,R,14,0,50,,,,,,,20 +16467,671,358,191,6,2,,R,15,0,39,,,,,,,80 +16468,671,356,191,5,4,,R,16,0,22,,,,,,,20 +16469,671,360,187,2,8,,R,17,0,19,,,,,,,3 +16470,671,304,187,1,7,,R,18,0,10,,,,,,,80 +16471,671,376,195,14,18,,R,19,0,9,,,,,,,3 +16472,672,235,6,26,3,1,1,1,9,60,25:40.9,8740900,,,,,1 +16473,672,341,11,16,7,2,2,2,6,60,+1:58.6,8859500,,,,,1 +16474,672,328,196,28,2,3,3,3,4,59,,,,,,,11 +16475,672,350,195,30,17,4,4,4,3,58,,,,,,,12 +16476,672,304,187,8,4,5,5,5,2,58,,,,,,,12 +16477,672,361,66,36,14,6,6,6,1,57,,,,,,,13 +16478,672,370,66,22,12,7,7,7,0,57,,,,,,,13 +16479,672,360,187,10,6,8,8,8,0,56,,,,,,,14 +16480,672,306,82,6,8,9,9,9,0,56,,,,,,,14 +16481,672,278,6,24,5,10,10,10,0,55,,,,,,,15 +16482,672,346,180,34,11,11,11,11,0,54,,,,,,,16 +16483,672,345,66,20,10,,N,12,0,53,,,,,,,62 +16484,672,358,191,2,1,,R,13,0,45,,,,,,,95 +16485,672,356,191,4,13,,R,14,0,15,,,,,,,48 +16486,672,289,180,12,9,,R,15,0,14,,,,,,,86 +16487,672,359,195,32,15,,R,16,0,14,,,,,,,3 +16488,672,377,11,18,16,,R,17,0,2,,,,,,,3 +16489,673,346,180,22,4,1,1,1,9,80,01:20.3,7280300,,,,,1 +16490,673,278,6,5,3,2,2,2,6,80,4.4,7284700,,,,,1 +16491,673,235,6,6,12,3,3,3,4,79,,,,,,,11 +16492,673,304,187,1,11,4,4,4,3,79,,,,,,,11 +16493,673,341,11,7,9,5,5,5,2,78,,,,,,,12 +16494,673,328,196,14,7,6,6,6,1,78,,,,,,,12 +16495,673,360,187,2,10,7,7,7,0,77,,,,,,,13 +16496,673,361,66,20,16,8,8,8,0,72,,,,,,,18 +16497,673,358,191,4,5,,R,9,0,55,,,,,,,95 +16498,673,345,66,10,13,,R,10,0,52,,,,,,,5 +16499,673,351,191,19,19,,N,11,0,52,,,,,,,62 +16500,673,262,180,9,2,,R,12,0,43,,,,,,,7 +16501,673,378,195,16,18,,R,13,0,34,,,,,,,80 +16502,673,289,180,8,1,,R,14,0,26,,,,,,,86 +16503,673,350,195,15,7,,R,15,0,26,,,,,,,5 +16504,673,306,82,18,14,,R,16,0,11,,,,,,,5 +16505,673,370,66,11,15,,R,17,0,10,,,,,,,21 +16506,673,364,190,24,6,,R,18,0,8,,,,,,,48 +16507,673,347,194,23,20,,R,19,0,6,,,,,,,5 +16508,673,356,191,3,8,,R,20,0,0,,,,,,,5 +16509,674,328,196,6,6,1,1,1,9,14,19:03.2,8343200,,,,,1 +16510,674,289,180,3,4,2,2,2,6,14,+4:03.2,8586400,,,,,1 +16511,674,358,191,5,3,3,3,3,4,14,+4:09.4,8592600,,,,,1 +16512,674,235,6,9,1,4,4,4,3,14,+5:55.2,8698400,,,,,1 +16513,674,356,191,4,15,5,5,5,2,14,+6:21.1,8724300,,,,,1 +16514,674,345,66,10,14,6,6,6,1,14,+6:25.0,8728200,,,,,1 +16515,674,304,187,1,11,7,7,7,0,14,+6:31.0,8734200,,,,,1 +16516,674,361,66,22,8,8,8,8,0,14,+7:56.4,8819600,,,,,1 +16517,674,364,190,14,10,9,9,9,0,14,+8:13.7,8836900,,,,,1 +16518,674,365,26,18,18,10,10,10,0,14,+10:11.4,8954600,,,,,1 +16519,674,262,180,21,13,11,11,11,0,13,,,,,,,11 +16520,674,379,191,17,17,12,12,12,0,13,,,,,,,11 +16521,674,360,1,2,16,13,13,13,0,13,,,,,,,11 +16522,674,370,66,11,20,14,14,14,0,13,,,,,,,11 +16523,674,278,6,8,2,,R,15,0,11,,,,,,,3 +16524,674,306,82,12,12,,R,16,0,8,,,,,,,3 +16525,674,346,180,16,9,,R,17,0,6,,,,,,,80 +16526,674,376,195,19,19,,R,18,0,6,,,,,,,95 +16527,674,341,11,7,7,,R,19,0,3,,,,,,,80 +16528,674,350,195,20,5,,R,20,0,0,,,,,,,3 +16529,675,304,187,1,7,1,1,1,9,68,40:14.8,6014800,,,,,1 +16530,675,359,196,5,13,2,2,2,6,68,+1:28.4,6103200,,,,,1 +16531,675,235,6,8,4,3,3,3,4,68,+1:28.6,6103400,,,,,1 +16532,675,361,66,27,17,4,4,4,3,67,,,,,,,11 +16533,675,306,82,6,18,5,5,5,2,66,,,,,,,12 +16534,675,347,194,3,19,6,6,6,1,64,,,,,,,14 +16535,675,346,180,20,9,,R,7,0,58,,,,,,,22 +16536,675,356,191,10,16,,R,8,0,56,,,,,,,51 +16537,675,328,196,4,6,,R,9,0,42,,,,,,,5 +16538,675,322,11,15,14,,R,10,0,42,,,,,,,5 +16539,675,262,180,19,11,,R,11,0,38,,,,,,,7 +16540,675,360,187,2,2,,R,12,0,34,,,,,,,44 +16541,675,358,191,11,10,,R,13,0,33,,,,,,,5 +16542,675,345,66,26,15,,R,14,0,22,,,,,,,5 +16543,675,364,190,21,12,,R,15,0,19,,,,,,,5 +16544,675,289,180,16,5,,R,16,0,10,,,,,,,36 +16545,675,341,11,14,1,,R,17,0,8,,,,,,,3 +16546,675,278,6,9,3,,R,18,0,8,,,,,,,3 +16547,675,321,6,7,8,,R,19,0,4,,,,,,,69 +16548,675,350,195,23,20,,R,20,0,2,,,,,,,3 +16549,675,380,66,28,0,,F,21,0,0,,,,,,,81 +16550,675,351,191,12,0,,F,22,0,0,,,,,,,81 +16551,676,304,187,1,6,1,1,1,9,90,27:11.2,8831200,,,,,1 +16552,676,360,187,2,8,2,2,2,6,89,,,,,,,11 +16553,676,345,66,16,12,3,3,3,4,88,,,,,,,12 +16554,676,289,180,3,5,4,4,4,3,86,,,,,,,14 +16555,676,350,195,21,16,5,5,5,2,86,,,,,,,14 +16556,676,328,196,14,11,6,6,6,1,83,,,,,,,17 +16557,676,306,82,18,15,,R,7,0,77,,,,,,,6 +16558,676,278,6,9,2,,R,8,0,72,,,,,,,7 +16559,676,359,196,15,13,,R,9,0,71,,,,,,,3 +16560,676,376,195,20,18,,N,10,0,56,,,,,,,62 +16561,676,280,82,19,19,,R,11,0,54,,,,,,,51 +16562,676,358,191,6,1,,R,12,0,39,,,,,,,5 +16563,676,262,180,4,19,,R,13,0,32,,,,,,,86 +16564,676,356,191,5,10,,R,14,0,31,,,,,,,22 +16565,676,346,180,12,3,,R,15,0,29,,,,,,,44 +16566,676,364,187,11,4,,R,16,0,29,,,,,,,21 +16567,676,361,66,24,14,,R,17,0,22,,,,,,,6 +16568,676,343,180,27,20,,R,18,0,18,,,,,,,86 +16569,676,341,11,8,7,,R,19,0,10,,,,,,,6 +16570,676,347,194,22,17,,R,20,0,0,,,,,,,69 +16571,676,235,6,10,0,,W,21,0,0,,,,,,,3 +16572,677,328,196,15,2,1,1,1,9,108,59:20.3,7160290,,,,,1 +16573,677,289,180,10,3,2,2,2,6,108,24.68,7184970,,,,,1 +16574,677,341,11,5,9,3,3,3,4,107,,,,,,,11 +16575,677,364,187,14,7,4,4,4,3,107,,,,,,,11 +16576,677,346,180,16,12,5,5,5,2,105,,,,,,,13 +16577,677,360,187,2,10,6,6,6,1,103,,,,,,,15 +16578,677,361,66,22,14,,R,7,0,93,,,,,,,60 +16579,677,304,1,1,5,,R,8,0,92,,,,,,,3 +16580,677,376,195,19,20,,N,9,0,88,,,,,,,62 +16581,677,356,191,3,8,,R,10,0,77,,,,,,,5 +16582,677,358,191,4,6,,R,11,0,73,,,,,,,5 +16583,677,350,195,18,17,,R,12,0,71,,,,,,,5 +16584,677,345,66,8,11,,R,13,0,66,,,,,,,22 +16585,677,347,194,17,18,,N,14,0,62,,,,,,,62 +16586,677,278,6,6,4,,R,15,0,59,,,,,,,103 +16587,677,306,82,21,13,,R,16,0,44,,,,,,,7 +16588,677,381,66,9,19,,R,17,0,35,,,,,,,5 +16589,677,207,180,12,1,,R,18,0,32,,,,,,,8 +16590,677,321,6,7,15,,R,19,0,14,,,,,,,5 +16591,677,262,180,11,0,,W,20,0,0,,,,,,,54 +16592,678,289,180,10,3,1,1,1,9,65,56:44.0,7003950,,,,,1 +16593,678,360,187,2,9,2,2,2,6,65,+1:19.32,7083270,,,,,1 +16594,678,262,180,11,14,3,3,3,4,65,+1:40.65,7104600,,,,,1 +16595,678,345,66,8,12,4,4,4,3,65,+1:41.09,7105040,,,,,1 +16596,678,347,11,17,18,5,5,5,2,64,,,,,,,11 +16597,678,346,180,16,1,6,6,6,1,64,,,,,,,11 +16598,678,328,196,15,7,7,7,7,0,64,,,,,,,11 +16599,678,350,195,18,17,8,8,8,0,63,,,,,,,12 +16600,678,280,82,9,20,9,9,9,0,62,,,,,,,13 +16601,678,356,191,3,8,10,10,10,0,59,,,,,,,51 +16602,678,359,196,23,16,,R,11,0,57,,,,,,,80 +16603,678,364,187,14,5,,R,12,0,28,,,,,,,22 +16604,678,361,66,22,19,,R,13,0,25,,,,,,,5 +16605,678,376,195,19,21,,R,14,0,21,,,,,,,5 +16606,678,341,11,5,6,,R,15,0,17,,,,,,,25 +16607,678,278,6,6,2,,R,16,0,16,,,,,,,7 +16608,678,382,180,12,11,,R,17,0,14,,,,,,,41 +16609,678,304,187,1,4,,R,18,0,10,,,,,,,22 +16610,678,306,82,21,13,,R,19,0,10,,,,,,,22 +16611,678,235,6,7,15,,R,20,0,3,,,,,,,80 +16612,678,358,191,4,10,,R,21,0,2,,,,,,,80 +16613,679,345,167,4,4,1,1,1,9,80,05:45.9,7545900,,,,,1 +16614,679,340,170,17,5,2,2,2,6,80,26.4,7572300,,,,,1 +16615,679,341,11,11,6,3,3,3,4,79,,,,,,,11 +16616,679,304,191,2,2,4,4,4,3,78,,,,,,,12 +16617,679,383,183,14,10,5,5,5,2,78,,,,,,,12 +16618,679,356,191,1,1,6,6,6,1,76,,,,,,,14 +16619,679,293,183,19,8,,N,7,0,63,,,,,,,62 +16620,679,384,183,20,17,,N,8,0,60,,,,,,,62 +16621,679,368,184,18,14,,R,9,0,56,,,,,,,3 +16622,679,361,176,16,18,,R,10,0,51,,,,,,,69 +16623,679,364,189,9,11,,R,11,0,44,,,,,,,22 +16624,679,346,167,12,16,,R,12,0,41,,,,,,,5 +16625,679,358,167,3,7,,R,13,0,38,,,,,,,5 +16626,679,374,66,6,13,,R,14,0,31,,,,,,,44 +16627,679,347,167,15,12,,R,15,0,30,,,,,,,5 +16628,679,373,176,7,3,,R,16,0,22,,,,,,,5 +16629,679,289,176,8,15,,R,17,0,6,,,,,,,3 +16630,679,328,66,5,9,,R,18,0,2,,,,,,,5 +16631,680,304,191,9,4,1,1,1,9,100,34:34.3,9274300,,,,,1 +16632,680,289,176,14,8,2,2,2,6,99,,,,,,,11 +16633,680,278,6,20,14,3,3,3,4,98,,,,,,,12 +16634,680,360,194,16,10,4,4,4,3,98,,,,,,,13 +16635,680,345,167,11,16,5,5,5,2,96,,,,,,,14 +16636,680,374,66,5,12,6,6,6,1,96,,,,,,,14 +16637,680,385,6,18,2,,R,7,0,81,,,,,,,3 +16638,680,361,66,6,13,,R,8,0,64,,,,,,,20 +16639,680,373,172,12,5,,R,9,0,42,,,,,,,22 +16640,680,341,11,7,3,,R,10,0,32,,,,,,,5 +16641,680,346,167,17,9,,R,11,0,31,,,,,,,51 +16642,680,328,66,4,6,,R,12,0,14,,,,,,,24 +16643,680,358,167,10,15,,R,13,0,14,,,,,,,6 +16644,680,364,190,23,7,,R,14,0,4,,,,,,,48 +16645,680,359,82,2,11,,R,15,0,4,,,,,,,98 +16646,680,356,191,8,1,,R,16,0,0,,,,,,,5 +16647,680,383,183,15,0,,F,17,0,0,,,,,,,81 +16648,680,306,82,1,0,,F,18,0,0,,,,,,,81 +16649,680,386,189,22,0,,F,19,0,0,,,,,,,81 +16650,681,373,180,5,8,1,1,1,9,90,14:45.1,8085100,,,,,1 +16651,681,356,191,1,3,2,2,2,6,90,23.6,8108700,,,,,1 +16652,681,304,191,2,7,3,3,3,4,90,25.7,8110800,,,,,1 +16653,681,278,6,3,9,4,4,4,3,90,27.3,8112400,,,,,1 +16654,681,387,6,4,10,5,5,5,2,89,,,,,,,11 +16655,681,375,6,22,15,6,6,6,1,89,,,,,,,11 +16656,681,388,176,18,13,7,7,7,0,88,,,,,,,12 +16657,681,374,66,10,12,8,8,8,0,87,,,,,,,13 +16658,681,383,183,21,17,9,9,9,0,86,,,,,,,14 +16659,681,346,167,20,16,10,10,10,0,83,,,,,,,17 +16660,681,341,11,7,6,,R,11,0,73,,,,,,,37 +16661,681,328,66,9,11,,R,12,0,51,,,,,,,23 +16662,681,358,167,12,4,,R,13,0,41,,,,,,,22 +16663,681,345,167,14,5,,R,14,0,39,,,,,,,6 +16664,681,289,180,6,1,,R,15,0,11,,,,,,,5 +16665,681,364,190,15,2,,R,16,0,8,,,,,,,98 +16666,681,360,194,17,14,,R,17,0,1,,,,,,,3 +16667,682,364,190,36,2,1,1,1,9,28,40:49.4,6049400,,,,,1 +16668,682,328,66,14,6,2,2,2,6,28,+1:03.0,6112400,,,,,1 +16669,682,278,6,1,5,3,3,3,4,28,+1:40.0,6149400,,,,,1 +16670,682,358,167,29,4,4,4,4,3,28,+2:13.9,6183300,,,,,1 +16671,682,374,66,12,11,5,5,5,2,27,,,,,,,11 +16672,682,373,180,21,1,6,6,6,1,27,,,,,,,11 +16673,682,346,167,34,16,7,7,7,0,27,,,,,,,11 +16674,682,383,183,19,17,8,8,8,0,26,,,,,,,12 +16675,682,345,167,30,13,9,9,9,0,25,,,,,,,5 +16676,682,389,167,32,18,10,10,10,0,25,,,,,,,13 +16677,682,375,6,2,9,,N,11,0,24,,,,,,,62 +16678,682,356,191,25,7,,R,12,0,15,,,,,,,5 +16679,682,304,191,26,14,,R,13,0,14,,,,,,,5 +16680,682,347,167,39,12,,R,14,0,10,,,,,,,5 +16681,682,289,180,22,3,,R,15,0,3,,,,,,,8 +16682,682,341,11,7,10,,R,16,0,1,,,,,,,5 +16683,682,388,66,17,15,,R,17,0,1,,,,,,,5 +16684,682,387,6,3,8,,R,18,0,0,,,,,,,3 +16685,683,356,191,3,2,1,1,1,9,80,13:21.3,8001300,,,,,1 +16686,683,304,191,4,6,2,2,2,6,80,49.5,8050800,,,,,1 +16687,683,328,66,10,10,3,3,3,4,79,,,,,,,11 +16688,683,346,167,18,11,4,4,4,3,77,,,,,,,13 +16689,683,388,66,15,9,5,5,5,2,76,,,,,,,5 +16690,683,345,167,14,13,6,6,6,1,76,,,,,,,14 +16691,683,389,167,16,15,,N,7,0,68,,,,,,,62 +16692,683,278,6,2,7,,R,8,0,47,,,,,,,37 +16693,683,364,190,9,3,,R,9,0,40,,,,,,,95 +16694,683,358,167,12,8,,R,10,0,33,,,,,,,5 +16695,683,360,190,8,5,,R,11,0,26,,,,,,,80 +16696,683,373,180,6,4,,R,12,0,23,,,,,,,24 +16697,683,383,183,17,14,,R,13,0,16,,,,,,,80 +16698,683,289,180,7,1,,R,14,0,13,,,,,,,24 +16699,683,374,66,11,12,,R,15,0,9,,,,,,,86 +16700,684,373,180,5,1,1,1,1,9,80,59:25.6,7165600,,,,,1 +16701,684,304,191,2,4,2,2,2,6,80,12.8,7178400,,,,,1 +16702,684,278,6,8,6,3,3,3,4,80,16.6,7182200,,,,,1 +16703,684,356,191,1,3,4,4,4,3,80,21.8,7187400,,,,,1 +16704,684,345,167,12,9,5,5,5,2,79,,,,,,,11 +16705,684,341,11,7,7,6,6,6,1,78,,,,,,,12 +16706,684,388,66,15,13,7,7,7,0,77,,,,,,,13 +16707,684,322,66,20,14,8,8,8,0,77,,,,,,,13 +16708,684,390,167,14,15,9,9,9,0,76,,,,,,,14 +16709,684,389,191,18,21,10,10,10,0,76,,,,,,,14 +16710,684,383,183,19,17,,R,11,0,67,,,,,,,5 +16711,684,289,180,6,2,,R,12,0,64,,,,,,,5 +16712,684,374,66,4,11,,R,13,0,44,,,,,,,80 +16713,684,364,190,9,5,,R,14,0,34,,,,,,,8 +16714,684,351,193,22,20,,R,15,0,29,,,,,,,51 +16715,684,358,167,11,8,,R,16,0,26,,,,,,,5 +16716,684,328,66,3,12,,R,17,0,20,,,,,,,7 +16717,684,360,190,10,10,,R,18,0,14,,,,,,,5 +16718,684,346,167,17,18,,R,19,0,10,,,,,,,5 +16719,684,347,167,23,9,,R,20,0,0,,,,,,,5 +16720,684,361,66,16,0,,W,21,0,0,,,,,,,54 +16721,685,304,191,2,2,1,1,1,9,15,05:55.7,7555700,,,,,1 +16722,685,356,191,1,7,2,2,2,6,15,38.5,7594200,,,,,1 +16723,685,278,6,8,8,3,3,3,4,15,39,7594700,,,,,1 +16724,685,341,11,7,6,4,4,4,3,15,+2:25.7,7701400,,,,,1 +16725,685,262,180,24,19,5,5,5,0,15,+5:30.7,7886400,,,,,1 +16726,685,347,167,16,16,6,6,6,2,15,+8:42.1,8077800,,,,,1 +16727,685,390,182,22,20,7,7,7,0,15,+8:47.9,8083600,,,,,1 +16728,685,389,191,15,17,8,8,8,1,14,,,,,,,11 +16729,685,388,66,18,15,9,9,9,0,13,,,,,,,12 +16730,685,322,26,27,22,10,10,10,0,13,,,,,,,12 +16731,685,345,167,6,10,11,11,11,0,13,,,,,,,12 +16732,685,364,190,9,4,,R,12,0,12,,,,,,,86 +16733,685,235,82,29,18,,R,13,0,12,,,,,,,22 +16734,685,391,90,25,25,,N,14,0,12,,,,,,,13 +16735,685,346,167,14,12,,R,15,0,12,,,,,,,48 +16736,685,289,180,4,13,,R,16,0,8,,,,,,,22 +16737,685,365,26,17,14,,R,17,0,6,,,,,,,22 +16738,685,328,66,11,3,,R,18,0,5,,,,,,,24 +16739,685,373,180,3,1,,R,19,0,4,,,,,,,22 +16740,685,358,167,5,9,,R,20,0,4,,,,,,,21 +16741,685,379,90,26,23,,R,21,0,4,,,,,,,21 +16742,685,360,190,10,5,,R,22,0,3,,,,,,,44 +16743,685,374,66,12,11,,R,23,0,3,,,,,,,24 +16744,685,377,82,23,21,,R,24,0,2,,,,,,,5 +16745,686,356,191,1,7,1,1,1,9,90,40:40.0,9640000,,,,,1 +16746,686,304,191,2,3,2,2,2,6,90,+1:01.9,9701900,,,,,1 +16747,686,364,190,10,5,3,3,3,4,89,,,,,,,11 +16748,686,289,180,4,2,4,4,4,3,88,,,,,,,12 +16749,686,374,66,16,10,5,5,5,2,87,,,,,,,13 +16750,686,278,6,20,4,6,6,6,1,87,,,,,,,13 +16751,686,360,194,19,6,7,7,7,0,86,,,,,,,14 +16752,686,347,167,9,14,8,8,8,0,85,,,,,,,15 +16753,686,322,66,12,12,9,9,9,0,85,,,,,,,15 +16754,686,370,167,8,13,10,10,10,0,84,,,,,,,16 +16755,686,392,176,6,17,11,11,11,0,81,,,,,,,19 +16756,686,373,180,3,1,,R,12,0,69,,,,,,,80 +16757,686,326,180,5,16,,D,13,0,69,,,,,,,2 +16758,686,328,66,15,9,,R,14,0,65,,,,,,,37 +16759,686,371,189,11,15,,N,15,0,47,,,,,,,62 +16760,686,388,66,17,11,,R,16,0,18,,,,,,,20 +16761,686,358,167,71,8,,R,17,0,4,,,,,,,80 +16762,686,393,170,41,0,,F,18,0,0,,,,,,,81 +16763,687,341,11,14,9,1,1,1,9,68,43:45.0,6225000,,,,,1 +16764,687,356,191,16,2,2,2,2,6,68,0.2,6225200,,,,,1 +16765,687,373,180,20,1,3,3,3,4,68,23.1,6248100,,,,,1 +16766,687,358,167,30,11,4,4,4,3,68,56.6,6281600,,,,,1 +16767,687,374,66,36,12,5,5,5,2,67,,,,,,,11 +16768,687,235,167,32,15,6,6,6,1,66,,,,,,,12 +16769,687,278,6,2,4,7,7,7,0,64,,,,,,,14 +16770,687,289,180,22,8,,R,8,0,58,,,,,,,5 +16771,687,346,167,6,13,,R,9,0,50,,,,,,,3 +16772,687,394,180,24,17,,R,10,0,50,,,,,,,5 +16773,687,360,194,4,3,,R,11,0,46,,,,,,,5 +16774,687,347,167,26,14,,R,12,0,46,,,,,,,25 +16775,687,328,66,34,7,,R,13,0,45,,,,,,,5 +16776,687,304,191,18,6,,R,14,0,30,,,,,,,25 +16777,687,389,191,12,18,,R,15,0,26,,,,,,,5 +16778,687,388,66,38,16,,R,16,0,16,,,,,,,98 +16779,687,375,190,10,10,,R,17,0,5,,,,,,,5 +16780,687,364,190,8,5,,R,18,0,4,,,,,,,5 +16781,688,373,180,5,2,1,1,1,9,108,03:13.2,7393200,,,,,1 +16782,688,289,180,6,1,2,2,2,6,108,6.3,7399500,,,,,1 +16783,688,304,191,2,6,3,3,3,4,107,,,,,,,11 +16784,688,346,167,15,12,4,4,4,3,106,,,,,,,12 +16785,688,356,191,1,5,5,5,5,2,104,,,,,,,14 +16786,688,347,167,16,15,6,6,6,1,101,,,,,,,17 +16787,688,306,187,22,18,7,7,7,0,101,,,,,,,17 +16788,688,341,11,3,11,,R,8,0,96,,,,,,,91 +16789,688,278,6,9,4,,R,9,0,95,,,,,,,5 +16790,688,328,66,7,10,,R,10,0,72,,,,,,,98 +16791,688,235,167,21,16,,R,11,0,45,,,,,,,25 +16792,688,389,191,19,17,,R,12,0,43,,,,,,,5 +16793,688,388,66,17,14,,R,13,0,41,,,,,,,5 +16794,688,374,66,8,13,,R,14,0,35,,,,,,,5 +16795,688,358,167,4,8,,R,15,0,33,,,,,,,5 +16796,688,364,190,11,3,,R,16,0,24,,,,,,,22 +16797,688,360,194,14,9,,R,17,0,16,,,,,,,47 +16798,688,382,180,18,7,,R,18,0,7,,,,,,,80 +16799,689,373,180,5,1,1,1,1,9,65,59:28.7,7168700,,,,,1 +16800,689,356,191,1,5,2,2,2,6,65,+1:25.36,7254060,,,,,1 +16801,689,304,191,2,6,3,3,3,4,64,,,,,,,11 +16802,689,341,11,3,7,4,4,4,3,64,,,,,,,11 +16803,689,374,66,8,11,5,5,5,2,63,,,,,,,12 +16804,689,345,167,21,13,6,6,6,1,63,,,,,,,12 +16805,689,306,187,22,14,7,7,7,0,63,,,,,,,12 +16806,689,395,6,12,16,8,8,8,0,63,,,,,,,12 +16807,689,278,6,9,2,9,9,9,0,62,,,,,,,60 +16808,689,347,167,16,17,10,10,10,0,61,,,,,,,14 +16809,689,389,191,19,19,11,11,11,0,41,,,,,,,14 +16810,689,346,167,15,10,12,12,12,0,59,,,,,,,25 +16811,689,360,194,14,8,,R,13,0,45,,,,,,,51 +16812,689,388,66,17,15,,R,14,0,33,,,,,,,44 +16813,689,328,66,7,12,,R,15,0,24,,,,,,,5 +16814,689,289,180,6,4,,R,16,0,18,,,,,,,86 +16815,689,382,176,18,9,,R,17,0,12,,,,,,,22 +16816,689,364,189,11,3,,R,18,0,4,,,,,,,21 +16817,689,392,176,10,10,,R,19,0,0,,,,,,,69 +16818,690,328,66,12,3,1,1,1,9,100,33:10.5,9190500,,,,,1 +16819,690,385,6,16,5,2,2,2,6,100,40.2,9230700,,,,,1 +16820,690,289,66,11,4,3,3,3,4,99,,,,,,,11 +16821,690,396,66,19,16,4,4,4,3,95,,,,,,,15 +16822,690,386,167,9,9,,R,5,0,80,,,,,,,7 +16823,690,389,167,21,15,,N,6,0,75,,,,,,,62 +16824,690,347,167,18,16,,N,7,0,73,,,,,,,62 +16825,690,373,172,4,1,,R,8,0,60,,,,,,,22 +16826,690,358,167,10,7,,R,9,0,56,,,,,,,5 +16827,690,346,181,14,13,,R,10,0,35,,,,,,,8 +16828,690,374,176,6,12,,R,11,0,34,,,,,,,22 +16829,690,356,191,7,11,,R,12,0,17,,,,,,,6 +16830,690,341,6,17,2,,R,13,0,16,,,,,,,7 +16831,690,304,183,8,6,,R,14,0,15,,,,,,,7 +16832,690,360,187,2,10,,R,15,0,9,,,,,,,44 +16833,690,383,183,15,8,,R,16,0,3,,,,,,,5 +16834,691,341,6,6,1,1,1,1,9,28,09:11.3,7751300,,,,,1 +16835,691,358,167,19,2,2,2,2,6,28,42.1,7793400,,,,,1 +16836,691,385,6,7,5,3,3,3,4,27,,,,,,,11 +16837,691,356,191,3,4,4,4,4,3,26,,,,,,,12 +16838,691,386,167,18,8,5,5,5,2,25,,,,,,,13 +16839,691,389,167,22,12,,N,6,0,24,,,,,,,62 +16840,691,364,189,27,15,,N,7,0,23,,,,,,,62 +16841,691,328,66,15,3,,R,8,0,0,,,,,,,3 +16842,691,347,167,20,6,,R,9,0,0,,,,,,,3 +16843,691,374,176,16,7,,R,10,0,0,,,,,,,3 +16844,691,289,66,14,9,,R,11,0,0,,,,,,,3 +16845,691,373,172,10,10,,R,12,0,0,,,,,,,5 +16846,691,396,66,8,11,,R,13,0,0,,,,,,,3 +16847,691,304,183,4,13,,R,14,0,0,,,,,,,3 +16848,691,346,167,21,14,,R,15,0,0,,,,,,,3 +16849,691,360,188,24,0,,W,16,0,0,,,,,,,54 +16850,691,397,176,11,0,,W,17,0,0,,,,,,,5 +16851,691,398,66,8,0,,W,18,0,0,,,,,,,54 +16852,692,356,191,12,4,1,1,1,9,48,48:31.3,6511300,,,,,1 +16853,692,387,6,22,3,2,2,2,6,48,9.5,6520800,,,,,1 +16854,692,304,191,14,9,3,3,3,4,46,,,,,,,12 +16855,692,358,167,6,5,4,4,4,3,46,,,,,,,12 +16856,692,364,189,26,14,5,5,5,2,45,,,,,,,13 +16857,692,399,181,44,15,6,6,6,1,45,,,,,,,13 +16858,692,383,183,36,12,7,7,7,0,44,,,,,,,14 +16859,692,278,167,8,7,8,8,8,0,44,,,,,,,14 +16860,692,389,167,42,11,,N,9,0,42,,,,,,,62 +16861,692,345,172,2,13,,R,10,0,40,,,,,,,44 +16862,692,385,6,20,1,,N,11,0,37,,,,,,,62 +16863,692,347,183,30,17,,N,12,0,32,,,,,,,62 +16864,692,289,66,16,8,,R,13,0,13,,,,,,,5 +16865,692,346,167,38,6,,R,14,0,10,,,,,,,69 +16866,692,374,176,32,10,,R,15,0,8,,,,,,,8 +16867,692,341,167,10,2,,R,16,0,5,,,,,,,69 +16868,692,397,176,4,16,,R,17,0,3,,,,,,,6 +16869,693,356,191,5,1,1,1,1,9,80,13:13.4,7993400,,,,,1 +16870,693,304,191,6,2,2,2,2,6,80,9.6,8003000,,,,,1 +16871,693,289,66,3,4,3,3,3,4,79,,,,,,,11 +16872,693,373,172,1,5,4,4,4,3,79,,,,,,,11 +16873,693,358,167,11,7,5,5,5,2,79,,,,,,,11 +16874,693,360,188,14,13,6,6,6,1,78,,,,,,,12 +16875,693,388,183,7,12,7,7,7,0,78,,,,,,,12 +16876,693,399,181,22,16,8,8,8,0,76,,,,,,,14 +16877,693,396,66,25,14,9,9,9,0,76,,,,,,,14 +16878,693,389,167,19,17,10,10,10,0,75,,,,,,,15 +16879,693,400,192,24,19,11,11,11,0,73,,,,,,,17 +16880,693,383,183,21,10,,N,12,0,70,,,,,,,62 +16881,693,346,167,20,11,,N,13,0,70,,,,,,,62 +16882,693,341,167,12,6,,R,14,0,67,,,,,,,7 +16883,693,347,183,18,15,,R,15,0,42,,,,,,,8 +16884,693,397,176,2,20,,R,16,0,32,,,,,,,6 +16885,693,328,66,4,8,,R,17,0,17,,,,,,,5 +16886,693,374,176,17,9,,R,18,0,15,,,,,,,44 +16887,693,364,189,16,3,,R,19,0,9,,,,,,,5 +16888,693,401,91,23,18,,R,20,0,0,,,,,,,5 +16889,694,356,191,16,1,1,1,1,9,90,20:32.5,8432500,,,,,1 +16890,694,289,66,12,7,2,2,2,6,89,,,,,,,11 +16891,694,373,172,6,3,3,3,3,4,88,,,,,,,12 +16892,694,328,66,14,8,4,4,4,3,88,,,,,,,12 +16893,694,374,176,32,12,5,5,5,2,87,,,,,,,13 +16894,694,385,6,2,9,6,6,6,1,87,,,,,,,13 +16895,694,347,167,30,13,7,7,7,0,84,,,,,,,16 +16896,694,399,181,38,17,8,8,8,0,84,,,,,,,16 +16897,694,389,167,36,16,9,9,9,0,84,,,,,,,16 +16898,694,346,167,28,11,,R,10,0,79,,,,,,,5 +16899,694,383,183,34,14,,R,11,0,73,,,,,,,22 +16900,694,341,167,24,10,,R,12,0,44,,,,,,,10 +16901,694,304,191,18,2,,R,13,0,37,,,,,,,80 +16902,694,397,176,8,15,,R,14,0,28,,,,,,,80 +16903,694,364,189,10,4,,R,15,0,26,,,,,,,44 +16904,694,387,6,4,5,,R,16,0,10,,,,,,,3 +16905,694,358,167,26,6,,R,17,0,2,,,,,,,3 +16906,695,356,191,3,5,1,1,1,9,15,27:03.0,8823000,,,,,1 +16907,695,341,167,7,2,2,2,2,6,15,44.4,8867400,,,,,1 +16908,695,358,167,8,9,3,3,3,4,15,+2:32.6,8975600,,,,,1 +16909,695,289,66,5,10,4,4,4,3,15,+6:41.4,9224400,,,,,1 +16910,695,328,66,6,3,5,5,5,2,15,+8:28.9,9331900,,,,,1 +16911,695,385,6,9,6,6,6,6,1,15,+10:56.4,9479400,,,,,1 +16912,695,364,189,12,8,7,7,7,0,14,,,,,,,10 +16913,695,397,176,2,17,8,8,8,0,14,,,,,,,11 +16914,695,374,176,15,13,,R,9,0,12,,,,,,,91 +16915,695,373,172,1,1,,R,10,0,11,,,,,,,3 +16916,695,400,192,20,26,,R,11,0,10,,,,,,,22 +16917,695,375,6,11,4,,R,12,0,9,,,,,,,10 +16918,695,387,6,10,7,,R,13,0,9,,,,,,,3 +16919,695,304,191,4,15,,R,14,0,8,,,,,,,80 +16920,695,347,167,17,12,,R,15,0,3,,,,,,,8 +16921,695,396,66,14,11,,R,16,0,3,,,,,,,5 +16922,695,383,183,19,14,,R,17,0,2,,,,,,,7 +16923,695,399,181,16,25,,R,18,0,0,,,,,,,3 +16924,695,389,167,18,0,,W,19,0,0,,,,,,,82 +16925,696,375,6,6,2,1,1,1,9,68,47:14.8,6434800,,,,,1 +16926,696,387,6,4,1,2,2,2,6,68,5.8,6440600,,,,,1 +16927,696,304,191,12,10,3,3,3,4,68,6.1,6440900,,,,,1 +16928,696,358,167,16,8,4,4,4,3,67,,,,,,,11 +16929,696,374,176,42,14,5,5,5,2,67,,,,,,,11 +16930,696,383,183,40,15,6,6,6,1,66,,,,,,,12 +16931,696,396,66,48,18,7,7,7,0,65,,,,,,,13 +16932,696,397,176,24,13,8,8,8,0,63,,,,,,,5 +16933,696,402,172,20,20,9,9,9,0,63,,,,,,,15 +16934,696,394,6,44,16,,N,10,0,59,,,,,,,62 +16935,696,373,176,22,3,,R,11,0,58,,,,,,,6 +16936,696,346,167,36,17,,R,12,0,46,,,,,,,5 +16937,696,385,6,2,5,,R,13,0,33,,,,,,,80 +16938,696,341,167,14,4,,R,14,0,31,,,,,,,95 +16939,696,386,11,18,7,,R,15,0,16,,,,,,,3 +16940,696,356,191,10,6,,R,16,0,7,,,,,,,44 +16941,696,364,190,30,19,,R,17,0,7,,,,,,,5 +16942,696,328,66,28,9,,R,18,0,5,,,,,,,95 +16943,696,347,167,38,12,,R,19,0,3,,,,,,,37 +16944,696,289,66,26,11,,R,20,0,0,,,,,,,5 +16945,696,403,189,34,0,,F,21,0,0,,,,,,,81 +16946,696,278,181,32,0,,F,22,0,0,,,,,,,81 +16947,697,373,176,1,2,1,1,1,9,108,09:40.1,7780110,,,,,1 +16948,697,358,167,8,9,2,2,2,6,107,,,,,,,60 +16949,697,341,167,7,4,3,3,3,4,107,,,,,,,11 +16950,697,346,167,19,13,4,4,4,3,105,,,,,,,13 +16951,697,360,187,17,11,5,5,5,2,105,,,,,,,13 +16952,697,397,172,2,19,6,6,6,1,101,,,,,,,17 +16953,697,404,66,10,17,,R,7,0,96,,,,,,,91 +16954,697,386,11,12,8,,N,8,0,81,,,,,,,62 +16955,697,374,176,18,12,,R,9,0,74,,,,,,,80 +16956,697,405,11,14,18,,R,10,0,58,,,,,,,5 +16957,697,347,167,22,15,,N,11,0,57,,,,,,,62 +16958,697,356,191,5,1,,R,12,0,55,,,,,,,5 +16959,697,328,66,4,6,,R,13,0,53,,,,,,,5 +16960,697,289,66,3,5,,R,14,0,52,,,,,,,24 +16961,697,385,6,9,3,,R,15,0,34,,,,,,,5 +16962,697,304,191,6,7,,R,16,0,18,,,,,,,5 +16963,697,345,176,11,10,,R,17,0,13,,,,,,,31 +16964,697,364,190,15,14,,R,18,0,13,,,,,,,8 +16965,697,396,189,16,16,,D,19,0,5,,,,,,,2 +16966,698,341,167,7,1,1,1,1,9,65,06:35.3,7595340,,,,,1 +16967,698,356,191,5,4,2,2,2,6,65,7.88,7603220,,,,,1 +16968,698,304,191,6,6,3,3,3,4,64,,,,,,,11 +16969,698,386,11,12,3,4,4,4,3,64,,,,,,,11 +16970,698,364,189,15,9,5,5,5,2,64,,,,,,,11 +16971,698,347,167,22,12,6,6,6,1,63,,,,,,,12 +16972,698,397,176,2,17,7,7,7,0,61,,,,,,,14 +16973,698,405,11,14,13,8,8,8,0,60,,,,,,,15 +16974,698,345,176,11,8,,R,9,0,49,,,,,,,24 +16975,698,360,187,17,14,,R,10,0,40,,,,,,,5 +16976,698,346,167,19,11,,R,11,0,33,,,,,,,22 +16977,698,358,167,8,5,,R,12,0,32,,,,,,,22 +16978,698,404,66,10,16,,R,13,0,28,,,,,,,7 +16979,698,328,66,4,10,,R,14,0,26,,,,,,,44 +16980,698,396,190,16,18,,R,15,0,24,,,,,,,69 +16981,698,289,66,3,7,,R,16,0,18,,,,,,,5 +16982,698,373,176,1,2,,R,17,0,9,,,,,,,6 +16983,698,382,167,9,15,,R,18,0,9,,,,,,,25 +16984,699,373,172,5,1,1,1,1,9,85,06:46.0,7606000,,,,,1 +16985,699,341,6,1,2,2,2,2,6,85,29,7635000,,,,,1 +16986,699,289,66,3,5,3,3,3,4,85,31.8,7637800,,,,,1 +16987,699,374,172,6,4,4,4,4,3,85,54.4,7660400,,,,,1 +16988,699,360,170,9,8,5,5,5,2,84,,,,,,,11 +16989,699,328,66,4,11,6,6,6,1,83,,,,,,,12 +16990,699,346,181,12,14,7,7,7,0,83,,,,,,,12 +16991,699,356,183,7,3,8,8,8,0,81,,,,,,,14 +16992,699,406,182,18,16,9,9,9,0,81,,,,,,,14 +16993,699,362,51,20,17,10,10,10,0,79,,,,,,,16 +16994,699,408,176,15,13,11,11,11,0,77,,,,,,,18 +16995,699,380,181,16,15,12,12,12,0,75,,,,,,,88 +16996,699,368,185,25,20,13,13,13,0,73,,,,,,,55 +16997,699,407,182,19,19,14,14,14,0,71,,,,,,,111 +16998,699,385,6,2,6,15,15,15,0,66,,,,,,,80 +16999,699,383,183,14,12,,N,16,0,50,,,,,,,62 +17000,699,347,183,11,7,,R,17,0,42,,,,,,,8 +17001,699,358,170,10,10,,R,18,0,39,,,,,,,10 +17002,699,340,170,17,18,,R,19,0,20,,,,,,,86 +17003,699,364,183,8,9,,R,20,0,11,,,,,,,80 +17004,699,409,186,28,0,,F,21,0,0,,,,,,,81 +17005,699,410,172,23,0,,F,22,0,0,,,,,,,81 +17006,699,411,184,21,0,,F,23,0,0,,,,,,,81 +17007,699,412,180,27,0,,F,24,0,0,,,,,,,81 +17008,699,413,172,22,0,,F,25,0,0,,,,,,,81 +17009,699,414,172,24,0,,F,26,0,0,,,,,,,97 +17010,699,334,185,29,0,,F,27,0,0,,,,,,,97 +17011,699,293,180,32,0,,F,28,0,0,,,,,,,97 +17012,699,415,93,26,0,,W,29,0,0,,,,,,,54 +17013,699,416,167,31,0,,W,30,0,0,,,,,,,54 +17014,699,417,170,33,0,,W,31,0,0,,,,,,,54 +17015,700,289,66,3,1,1,1,1,9,100,37:39.6,9459600,,,,,1 +17016,700,385,6,17,4,2,2,2,6,100,+1:04.0,9523600,,,,,1 +17017,700,328,66,4,3,3,3,3,4,100,+1:41.9,9561500,,,,,1 +17018,700,341,6,18,5,4,4,4,3,99,,,,,,,60 +17019,700,360,170,7,7,5,5,5,2,98,,,,,,,12 +17020,700,346,181,14,10,6,6,6,1,98,,,,,,,12 +17021,700,347,183,12,13,7,7,7,0,97,,,,,,,13 +17022,700,304,183,2,8,8,8,8,0,92,,,,,,,18 +17023,700,383,183,9,9,9,9,9,0,85,,,,,,,112 +17024,700,406,172,10,14,10,10,10,0,79,,,,,,,3 +17025,700,356,183,1,2,,R,11,0,43,,,,,,,5 +17026,700,370,176,15,6,,R,12,0,43,,,,,,,36 +17027,700,405,11,19,15,,R,13,0,33,,,,,,,6 +17028,700,380,181,11,11,,R,14,0,29,,,,,,,5 +17029,700,305,176,16,12,,R,15,0,12,,,,,,,6 +17030,700,386,11,20,17,,R,16,0,0,,,,,,,86 +17031,700,358,170,8,0,,F,17,0,0,,,,,,,81 +17032,701,373,172,17,2,1,1,1,9,32,23:34.8,8614800,,,,,1 +17033,701,328,66,8,3,2,2,2,6,32,44.8,8659600,,,,,1 +17034,701,360,170,4,9,3,3,3,4,31,,,,,,,11 +17035,701,356,183,14,10,4,4,4,3,31,,,,,,,11 +17036,701,289,66,7,1,5,5,5,2,31,,,,,,,11 +17037,701,386,11,10,4,6,6,6,1,31,,,,,,,11 +17038,701,374,172,18,12,7,7,7,0,31,,,,,,,11 +17039,701,346,181,21,8,8,8,8,0,31,,,,,,,11 +17040,701,385,6,2,15,9,9,9,0,30,,,,,,,12 +17041,701,364,183,15,5,10,10,10,0,30,,,,,,,12 +17042,701,358,170,5,14,11,11,11,0,29,,,,,,,13 +17043,701,376,66,27,17,12,12,12,0,29,,,,,,,13 +17044,701,404,176,22,16,13,13,13,0,27,,,,,,,15 +17045,701,370,176,23,13,14,14,14,0,26,,,,,,,3 +17046,701,418,66,29,20,,R,15,0,12,,,,,,,48 +17047,701,347,183,20,7,,R,16,0,9,,,,,,,80 +17048,701,405,11,11,11,,R,17,0,9,,,,,,,6 +17049,701,341,6,1,6,,R,18,0,5,,,,,,,5 +17050,701,380,181,26,19,,R,19,0,3,,,,,,,80 +17051,702,373,172,6,1,1,1,1,9,40,41:38.4,9698400,,,,,1 +17052,702,328,66,12,2,2,2,2,6,40,26.3,9724700,,,,,1 +17053,702,341,6,2,4,3,3,3,4,40,+2:33.5,9851900,,,,,1 +17054,702,304,183,16,6,4,4,4,3,40,+2:53.1,9871500,,,,,1 +17055,702,289,66,10,13,5,5,5,2,39,,,,,,,11 +17056,702,346,181,36,14,6,6,6,1,39,,,,,,,11 +17057,702,374,172,8,10,7,7,7,0,39,,,,,,,11 +17058,702,385,6,4,3,8,8,8,0,36,,,,,,,3 +17059,702,383,183,30,15,9,9,9,0,34,,,,,,,69 +17060,702,360,170,18,9,,R,10,0,23,,,,,,,22 +17061,702,347,183,34,11,,R,11,0,21,,,,,,,91 +17062,702,278,176,24,8,,R,12,0,20,,,,,,,69 +17063,702,404,176,22,17,,R,13,0,18,,,,,,,6 +17064,702,364,183,14,5,,R,14,0,16,,,,,,,5 +17065,702,386,11,26,7,,R,15,0,9,,,,,,,80 +17066,702,405,11,28,16,,R,16,0,4,,,,,,,80 +17067,702,358,170,20,12,,R,17,0,3,,,,,,,3 +17068,703,373,172,5,1,1,1,1,9,80,05:25.4,7525400,,,,,1 +17069,703,289,66,3,2,2,2,2,6,80,3.2,7528600,,,,,1 +17070,703,341,6,1,5,3,3,3,4,80,27.6,7553000,,,,,1 +17071,703,374,172,6,6,4,4,4,3,80,39.6,7565000,,,,,1 +17072,703,328,66,4,4,5,5,5,2,80,+1:14.6,7600000,,,,,1 +17073,703,364,183,7,7,6,6,6,1,79,,,,,,,11 +17074,703,347,183,15,14,7,7,7,0,79,,,,,,,11 +17075,703,380,181,17,13,8,8,8,0,78,,,,,,,12 +17076,703,346,181,16,18,9,9,9,0,78,,,,,,,12 +17077,703,360,170,9,11,10,10,10,0,77,,,,,,,13 +17078,703,420,181,24,20,11,11,11,0,73,,,,,,,17 +17079,703,418,66,12,19,12,12,12,0,70,,,,,,,88 +17080,703,370,176,22,16,13,13,13,0,63,,,,,,,50 +17081,703,358,170,10,12,14,14,14,0,62,,,,,,,5 +17082,703,404,176,23,15,,R,15,0,41,,,,,,,5 +17083,703,419,170,20,21,,R,16,0,38,,,,,,,80 +17084,703,383,183,18,17,,R,17,0,33,,,,,,,6 +17085,703,304,183,14,10,,R,18,0,29,,,,,,,91 +17086,703,386,11,11,3,,R,19,0,26,,,,,,,98 +17087,703,385,6,2,9,,R,20,0,2,,,,,,,5 +17088,703,356,183,8,8,,W,21,0,0,,,,,,,54 +17089,703,421,186,25,0,,F,22,0,0,,,,,,,81 +17090,703,422,172,26,0,,F,23,0,0,,,,,,,81 +17091,704,373,172,6,2,1,1,1,9,80,03:59.1,7439100,,,,,1 +17092,704,328,66,12,6,2,2,2,6,80,8,7447100,,,,,1 +17093,704,364,183,16,5,3,3,3,4,80,13,7452100,,,,,1 +17094,704,289,66,10,1,4,4,4,3,80,45.1,7484200,,,,,1 +17095,704,304,183,14,7,5,5,5,2,79,,,,,,,11 +17096,704,386,11,22,3,6,6,6,1,79,,,,,,,11 +17097,704,341,6,2,4,7,7,7,0,79,,,,,,,11 +17098,704,374,172,8,8,8,8,8,0,79,,,,,,,11 +17099,704,385,6,4,12,9,9,9,0,79,,,,,,,11 +17100,704,404,176,38,13,10,10,10,0,78,,,,,,,12 +17101,704,380,181,30,11,11,11,11,0,77,,,,,,,13 +17102,704,370,176,34,17,12,12,12,0,77,,,,,,,13 +17103,704,346,181,28,10,13,13,13,0,55,,,,,,,113 +17104,704,358,170,20,14,,R,14,0,48,,,,,,,51 +17105,704,360,170,18,9,,R,15,0,36,,,,,,,24 +17106,704,347,183,26,15,,R,16,0,16,,,,,,,44 +17107,704,383,183,36,16,,R,17,0,11,,,,,,,5 +17108,705,373,172,1,1,1,1,1,9,15,07:52.4,7672400,,,,,1 +17109,705,289,66,9,3,2,2,2,6,15,15.9,7688300,,,,,1 +17110,705,364,183,5,5,3,3,3,4,15,21.4,7693800,,,,,1 +17111,705,358,170,12,8,4,4,4,3,15,+3:29.6,7882000,,,,,1 +17112,705,356,183,4,14,5,5,5,2,15,+4:41.2,7953600,,,,,1 +17113,705,385,6,8,7,6,6,6,1,15,+5:08.6,7981000,,,,,1 +17114,705,347,183,16,9,7,7,7,0,15,+5:58.5,8030900,,,,,1 +17115,705,418,66,24,19,8,8,8,0,14,,,,,,,11 +17116,705,341,6,7,4,,R,9,0,11,,,,,,,6 +17117,705,346,181,17,11,,R,10,0,9,,,,,,,5 +17118,705,374,172,2,6,,R,11,0,8,,,,,,,7 +17119,705,423,172,3,12,,R,12,0,8,,,,,,,47 +17120,705,370,176,20,17,,R,13,0,8,,,,,,,47 +17121,705,360,170,11,10,,R,14,0,7,,,,,,,6 +17122,705,304,183,6,13,,R,15,0,5,,,,,,,95 +17123,705,278,176,19,16,,R,16,0,3,,,,,,,10 +17124,705,406,172,22,20,,R,17,0,3,,,,,,,44 +17125,705,328,66,10,2,,R,18,0,2,,,,,,,22 +17126,705,380,181,21,18,,R,19,0,0,,,,,,,6 +17127,705,424,66,25,0,,F,20,0,0,,,,,,,81 +17128,705,420,183,23,0,,F,21,0,0,,,,,,,81 +17129,706,328,66,32,3,1,1,1,9,76,04:52.8,7492800,,,,,1 +17130,706,289,66,30,4,2,2,2,6,76,3.3,7496100,,,,,1 +17131,706,364,183,12,9,3,3,3,4,76,16.5,7509300,,,,,1 +17132,706,385,6,4,5,4,4,4,3,76,+1:15.9,7568700,,,,,1 +17133,706,360,170,16,11,5,5,5,2,75,,,,,,,11 +17134,706,370,176,40,13,6,6,6,1,75,,,,,,,11 +17135,706,347,183,42,14,7,7,7,0,74,,,,,,,12 +17136,706,358,170,18,7,8,8,8,0,74,,,,,,,12 +17137,706,404,176,38,18,9,9,9,0,74,,,,,,,12 +17138,706,373,172,24,1,10,10,10,0,63,,,,,,,48 +17139,706,374,172,26,8,11,11,11,0,62,,,,,,,91 +17140,706,425,6,6,15,12,12,12,0,58,,,,,,,5 +17141,706,424,66,50,21,13,13,13,0,58,,,,,,,51 +17142,706,386,11,20,17,14,14,14,0,56,,,,,,,80 +17143,706,304,183,14,12,,R,15,0,46,,,,,,,22 +17144,706,380,181,46,16,,R,16,0,45,,,,,,,5 +17145,706,346,181,44,10,,R,17,0,43,,,,,,,6 +17146,706,402,172,28,20,,R,18,0,37,,,,,,,6 +17147,706,341,6,8,2,,R,19,0,34,,,,,,,8 +17148,706,405,11,22,6,,R,20,0,27,,,,,,,80 +17149,706,418,66,48,23,,R,21,0,22,,,,,,,6 +17150,706,394,183,10,19,,R,22,0,12,,,,,,,5 +17151,706,426,66,52,22,,R,23,0,8,,,,,,,5 +17152,707,289,66,3,1,1,1,1,9,110,20:36.1,8436100,,,,,1 +17153,707,364,183,8,8,2,2,2,6,110,12.5,8448600,,,,,1 +17154,707,356,183,7,7,3,3,3,4,110,57.5,8493600,,,,,1 +17155,707,385,6,2,5,4,4,4,3,109,,,,,,,11 +17156,707,345,6,14,15,5,5,5,2,109,,,,,,,11 +17157,707,358,170,10,13,6,6,6,1,108,,,,,,,12 +17158,707,386,11,11,3,7,7,7,0,108,,,,,,,12 +17159,707,347,183,15,10,8,8,8,0,107,,,,,,,13 +17160,707,396,6,24,14,9,9,9,0,106,,,,,,,14 +17161,707,370,176,21,16,10,10,10,0,101,,,,,,,19 +17162,707,346,181,16,11,11,11,11,0,99,,,,,,,45 +17163,707,382,172,18,17,12,12,12,0,95,,,,,,,112 +17164,707,405,11,12,12,13,13,13,0,92,,,,,,,114 +17165,707,328,66,4,6,,R,14,0,12,,,,,,,22 +17166,707,373,172,5,9,,R,15,0,11,,,,,,,5 +17167,707,360,170,9,2,,R,16,0,11,,,,,,,51 +17168,707,374,172,6,4,,R,17,0,9,,,,,,,5 +17169,707,404,176,22,18,,R,18,0,9,,,,,,,100 +17170,708,386,11,11,3,1,1,1,9,65,08:32.1,7712100,,,,,1 +17171,708,364,183,8,2,2,2,2,6,65,2.89,7714990,,,,,1 +17172,708,374,172,6,6,3,3,3,4,65,+1:00.15,7772250,,,,,1 +17173,708,346,181,16,11,4,4,4,3,65,+1:54.42,7826520,,,,,1 +17174,708,405,11,12,10,5,5,5,2,64,,,,,,,11 +17175,708,370,176,21,17,6,6,6,1,64,,,,,,,11 +17176,708,345,6,14,14,7,7,7,0,62,,,,,,,13 +17177,708,385,6,2,7,8,8,8,0,62,,,,,,,13 +17178,708,289,66,3,5,,R,9,0,56,,,,,,,5 +17179,708,382,172,18,9,,R,10,0,55,,,,,,,80 +17180,708,347,183,15,12,,R,11,0,43,,,,,,,22 +17181,708,358,170,10,16,,R,12,0,39,,,,,,,80 +17182,708,356,183,7,14,,R,13,0,38,,,,,,,44 +17183,708,328,66,4,8,,R,14,0,35,,,,,,,8 +17184,708,396,176,22,18,,R,15,0,29,,,,,,,22 +17185,708,360,170,9,15,,R,16,0,25,,,,,,,6 +17186,708,373,172,5,1,,R,17,0,8,,,,,,,5 +17187,708,404,176,22,0,,W,18,0,0,,,,,,,54 +17188,708,375,6,24,0,,W,19,0,0,,,,,,,54 +17189,709,289,66,8,3,1,1,1,9,100,41:19.5,9679500,,,,,1 +17190,709,386,66,7,8,2,2,2,6,99,,,,,,,11 +17191,709,397,172,11,6,3,3,3,4,97,,,,,,,13 +17192,709,373,172,12,1,4,4,4,3,96,,,,,,,5 +17193,709,347,170,19,11,5,5,5,2,96,,,,,,,14 +17194,709,305,176,18,15,6,6,6,1,96,,,,,,,14 +17195,709,383,183,16,12,7,7,7,0,86,,,,,,,6 +17196,709,346,176,24,16,8,8,8,0,78,,,,,,,115 +17197,709,403,170,9,9,9,9,9,0,70,,,,,,,22 +17198,709,385,6,20,7,10,10,10,0,68,,,,,,,6 +17199,709,364,183,6,5,,R,11,0,62,,,,,,,6 +17200,709,427,66,4,13,,R,12,0,53,,,,,,,25 +17201,709,356,183,5,2,,R,13,0,29,,,,,,,98 +17202,709,360,170,10,10,,R,14,0,17,,,,,,,67 +17203,709,341,6,21,4,,R,15,0,15,,,,,,,6 +17204,709,401,94,15,14,,R,16,0,8,,,,,,,95 +17205,709,278,176,17,0,,F,17,0,0,,,,,,,81 +17206,709,309,176,2,0,,F,18,0,0,,,,,,,81 +17207,709,428,176,3,0,,F,19,0,0,,,,,,,81 +17208,709,404,176,14,0,,W,20,0,0,,,,,,,54 +17209,709,429,92,1,0,,W,21,0,0,,,,,,,54 +17210,709,394,66,22,0,,W,22,0,0,,,,,,,54 +17211,709,408,66,23,0,,W,23,0,0,,,,,,,54 +17212,710,373,172,18,2,1,1,1,9,80,07:35.4,7655400,,,,,1 +17213,710,341,6,2,4,2,2,2,6,80,53.6,7709000,,,,,1 +17214,710,397,172,20,6,3,3,3,4,79,,,,,,,11 +17215,710,289,66,6,3,4,4,4,3,79,,,,,,,11 +17216,710,278,176,10,13,5,5,5,2,79,,,,,,,11 +17217,710,383,183,34,11,6,6,6,1,78,,,,,,,12 +17218,710,360,170,24,5,7,7,7,0,78,,,,,,,12 +17219,710,403,170,22,9,8,8,8,0,76,,,,,,,14 +17220,710,347,181,26,12,9,9,9,0,76,,,,,,,14 +17221,710,394,66,32,16,10,10,10,0,74,,,,,,,16 +17222,710,386,66,8,8,11,11,11,0,64,,,,,,,116 +17223,710,305,176,12,14,12,12,12,0,57,,,,,,,24 +17224,710,346,181,36,18,13,13,13,0,55,,,,,,,113 +17225,710,356,183,14,7,,R,14,0,44,,,,,,,80 +17226,710,364,183,16,1,,R,15,0,23,,,,,,,38 +17227,710,385,6,4,10,,R,16,0,20,,,,,,,80 +17228,710,430,95,28,17,,R,17,0,8,,,,,,,5 +17229,710,408,66,30,0,,W,18,0,0,,,,,,,3 +17230,711,373,172,23,6,1,1,1,9,32,06:40.5,7600500,,,,,1 +17231,711,360,170,20,7,2,2,2,6,32,3.4,7603900,,,,,1 +17232,711,356,183,14,3,3,3,3,4,32,48.1,7648600,,,,,1 +17233,711,386,66,2,8,4,4,4,3,32,+1:58.6,7719100,,,,,1 +17234,711,289,66,1,2,5,5,5,2,31,,,,,,,48 +17235,711,364,183,15,1,6,6,6,1,31,,,,,,,60 +17236,711,401,94,4,12,7,7,7,0,31,,,,,,,11 +17237,711,394,66,6,17,8,8,8,0,31,,,,,,,11 +17238,711,397,172,24,4,9,9,9,0,28,,,,,,,25 +17239,711,404,94,3,16,10,10,10,0,28,,,,,,,14 +17240,711,309,172,29,10,,D,11,0,28,,,,,,,2 +17241,711,346,183,17,13,,R,12,0,14,,,,,,,5 +17242,711,403,170,21,15,,R,13,0,13,,,,,,,5 +17243,711,385,6,11,9,,R,14,0,12,,,,,,,5 +17244,711,429,92,28,20,,R,15,0,11,,,,,,,5 +17245,711,347,183,16,14,,R,16,0,8,,,,,,,100 +17246,711,341,6,10,5,,R,17,0,4,,,,,,,5 +17247,711,278,176,27,11,,R,18,0,3,,,,,,,5 +17248,712,364,183,22,2,1,1,1,9,57,07:49.1,7669100,,,,,1 +17249,712,289,66,8,6,2,2,2,6,57,24.1,7693200,,,,,1 +17250,712,356,183,20,5,3,3,3,4,57,24.9,7694000,,,,,1 +17251,712,397,172,4,4,4,4,4,3,57,+1:10.6,7739700,,,,,1 +17252,712,386,66,10,9,5,5,5,2,57,+2:12.1,7801200,,,,,1 +17253,712,360,170,12,7,6,6,6,1,56,,,,,,,11 +17254,712,403,170,14,10,7,7,7,0,56,,,,,,,11 +17255,712,305,176,36,13,8,8,8,0,56,,,,,,,11 +17256,712,385,6,26,8,9,9,9,0,55,,,,,,,12 +17257,712,278,176,34,14,10,10,10,0,53,,,,,,,14 +17258,712,427,66,28,16,11,11,11,0,52,,,,,,,15 +17259,712,383,183,32,15,12,12,12,0,50,,,,,,,17 +17260,712,404,94,16,11,,R,13,0,32,,,,,,,3 +17261,712,373,172,2,1,,R,14,0,31,,,,,,,5 +17262,712,341,6,24,3,,R,15,0,6,,,,,,,5 +17263,712,401,94,18,12,,R,16,0,6,,,,,,,3 +17264,712,346,181,30,17,,R,17,0,4,,,,,,,8 +17265,713,373,172,1,1,1,1,1,9,80,15:07.0,8107000,,,,,1 +17266,713,289,66,3,2,2,2,2,6,80,2.8,8109800,,,,,1 +17267,713,341,6,7,5,3,3,3,4,80,+1:20.6,8187600,,,,,1 +17268,713,356,183,5,4,4,4,4,3,79,,,,,,,11 +17269,713,385,6,8,8,5,5,5,2,78,,,,,,,12 +17270,713,403,170,10,15,6,6,6,1,78,,,,,,,12 +17271,713,383,183,19,7,7,7,7,0,78,,,,,,,12 +17272,713,386,66,4,14,8,8,8,0,77,,,,,,,13 +17273,713,374,172,2,13,9,9,9,0,77,,,,,,,13 +17274,713,404,94,11,10,10,10,10,0,77,,,,,,,13 +17275,713,346,181,20,16,11,11,11,0,76,,,,,,,14 +17276,713,394,66,18,21,12,12,12,0,76,,,,,,,14 +17277,713,364,183,6,3,13,13,13,0,75,,,,,,,15 +17278,713,399,170,22,20,14,14,14,0,56,,,,,,,117 +17279,713,347,181,16,9,,R,15,0,45,,,,,,,23 +17280,713,309,176,24,22,,R,16,0,43,,,,,,,24 +17281,713,408,66,17,17,,R,17,0,38,,,,,,,6 +17282,713,420,181,23,23,,R,18,0,37,,,,,,,3 +17283,713,401,176,12,18,,R,19,0,23,,,,,,,100 +17284,713,305,176,14,12,,R,20,0,17,,,,,,,108 +17285,713,278,176,15,11,,R,21,0,9,,,,,,,8 +17286,713,360,170,9,6,,R,22,0,7,,,,,,,6 +17287,713,380,182,26,19,,R,23,0,0,,,,,,,3 +17288,713,427,66,25,25,,F,24,0,0,,,,,,,81 +17289,713,370,66,21,24,,W,25,0,0,,,,,,,54 +17290,714,341,6,7,1,1,1,1,9,15,12:04.8,7924800,,,,,1 +17291,714,289,66,3,5,2,2,2,6,15,+1:15.6,8000400,,,,,1 +17292,714,385,6,8,4,3,3,3,4,15,+4:52.8,8217600,,,,,1 +17293,714,346,181,19,10,4,4,4,3,15,+5:23.1,8247900,,,,,1 +17294,714,427,66,22,14,5,5,5,2,14,,,,,,,84 +17295,714,408,66,26,16,6,6,6,1,14,,,,,,,11 +17296,714,386,66,4,11,7,7,7,0,14,,,,,,,11 +17297,714,374,172,2,17,8,8,8,0,14,,,,,,,11 +17298,714,423,172,23,19,9,9,9,0,14,,,,,,,11 +17299,714,364,183,5,3,10,10,10,0,14,,,,,,,11 +17300,714,278,176,14,9,11,11,11,0,12,,,,,,,22 +17301,714,356,183,6,6,12,12,12,0,11,,,,,,,24 +17302,714,405,11,20,22,13,13,13,0,11,,,,,,,3 +17303,714,309,176,27,18,14,14,14,0,10,,,,,,,3 +17304,714,373,172,1,2,,R,15,0,7,,,,,,,5 +17305,714,360,170,9,7,,R,16,0,4,,,,,,,5 +17306,714,383,183,16,15,,R,17,0,4,,,,,,,22 +17307,714,431,170,12,20,,R,18,0,3,,,,,,,8 +17308,714,394,66,18,21,,R,19,0,2,,,,,,,37 +17309,714,403,170,10,8,,R,20,0,1,,,,,,,5 +17310,714,347,181,11,12,,R,21,0,0,,,,,,,10 +17311,714,305,176,15,13,,R,22,0,0,,,,,,,5 +17312,714,429,92,28,0,,F,23,0,0,,,,,,,81 +17313,715,385,6,8,7,1,1,1,9,105,06:18.2,7578230,,,,,1 +17314,715,386,66,4,5,2,2,2,6,105,6.18,7584410,,,,,1 +17315,715,383,183,22,14,3,3,3,4,102,,,,,,,13 +17316,715,408,66,19,19,4,4,4,3,102,,,,,,,13 +17317,715,404,94,14,11,5,5,5,2,102,,,,,,,13 +17318,715,347,183,11,10,6,6,6,1,101,,,,,,,14 +17319,715,394,66,18,15,7,7,7,0,96,,,,,,,19 +17320,715,305,176,17,18,8,8,8,0,95,,,,,,,88 +17321,715,356,183,6,6,9,9,9,0,76,,,,,,,118 +17322,715,358,181,12,13,,R,10,0,58,,,,,,,38 +17323,715,403,170,10,20,,R,11,0,58,,,,,,,3 +17324,715,364,183,5,4,,R,12,0,47,,,,,,,22 +17325,715,360,170,9,9,,R,13,0,43,,,,,,,5 +17326,715,374,172,2,8,,R,14,0,41,,,,,,,86 +17327,715,373,172,1,3,,R,15,0,40,,,,,,,86 +17328,715,401,94,15,16,,R,16,0,21,,,,,,,22 +17329,715,346,181,20,12,,R,17,0,18,,,,,,,3 +17330,715,341,6,7,2,,R,18,0,9,,,,,,,22 +17331,715,278,172,16,17,,R,19,0,7,,,,,,,5 +17332,715,289,66,3,1,,R,20,0,5,,,,,,,99 +17333,716,341,6,2,1,1,1,1,9,78,10:51.8,7851800,,,,,1 +17334,716,360,170,26,5,2,2,2,6,78,+1:06.0,7917800,,,,,1 +17335,716,385,6,4,7,3,3,3,4,77,,,,,,,11 +17336,716,386,66,20,9,4,4,4,3,77,,,,,,,11 +17337,716,404,94,46,13,5,5,5,2,77,,,,,,,11 +17338,716,374,172,10,8,6,6,6,1,77,,,,,,,11 +17339,716,346,181,12,6,7,7,7,0,77,,,,,,,11 +17340,716,394,66,30,15,8,8,8,0,77,,,,,,,11 +17341,716,375,6,6,16,9,9,9,0,77,,,,,,,11 +17342,716,364,183,16,2,10,10,10,0,75,,,,,,,13 +17343,716,383,183,22,14,11,11,11,0,75,,,,,,,13 +17344,716,347,183,34,12,12,12,12,0,74,,,,,,,14 +17345,716,309,176,38,18,13,13,13,0,72,,,,,,,16 +17346,716,356,183,14,11,14,14,14,0,59,,,,,,,5 +17347,716,373,172,8,4,15,15,15,0,28,,,,,,,5 +17348,716,432,96,50,19,,R,16,0,25,,,,,,,80 +17349,716,427,66,48,21,,R,17,0,22,,,,,,,98 +17350,716,405,11,28,10,,R,18,0,13,,,,,,,23 +17351,716,305,176,40,17,,R,19,0,5,,,,,,,5 +17352,716,289,66,18,3,,R,20,0,0,,,,,,,8 +17353,716,401,94,44,0,,F,21,0,0,,,,,,,81 +17354,716,402,181,36,0,,F,22,0,0,,,,,,,81 +17355,716,340,170,24,0,,F,23,0,0,,,,,,,81 +17356,716,420,181,56,0,,F,24,0,0,,,,,,,81 +17357,717,289,66,3,4,1,1,1,9,110,16:38.0,8198000,,,,,1 +17358,717,341,6,7,2,2,2,2,6,110,30.5,8228500,,,,,1 +17359,717,346,181,22,12,3,3,3,4,109,,,,,,,11 +17360,717,386,66,4,13,4,4,4,3,107,,,,,,,13 +17361,717,433,172,17,17,5,5,5,2,107,,,,,,,13 +17362,717,401,94,12,15,6,6,6,1,106,,,,,,,14 +17363,717,373,172,1,1,7,7,7,0,102,,,,,,,60 +17364,717,305,176,14,15,8,8,8,0,101,,,,,,,108 +17365,717,364,183,6,3,,R,9,0,69,,,,,,,51 +17366,717,434,181,23,18,,N,10,0,65,,,,,,,62 +17367,717,385,6,8,8,,R,11,0,58,,,,,,,5 +17368,717,374,172,2,1,,R,12,0,54,,,,,,,98 +17369,717,405,11,25,14,,R,13,0,50,,,,,,,25 +17370,717,278,176,15,11,,R,14,0,47,,,,,,,5 +17371,717,347,183,16,9,,R,15,0,37,,,,,,,36 +17372,717,360,170,9,5,,R,16,0,27,,,,,,,5 +17373,717,356,183,5,7,,R,17,0,14,,,,,,,5 +17374,717,403,170,10,19,,R,18,0,4,,,,,,,80 +17375,717,404,94,11,10,,R,19,0,2,,,,,,,6 +17376,718,364,183,6,2,1,1,1,9,65,09:50.3,7790320,,,,,1 +17377,718,341,6,7,4,2,2,2,6,65,+1:08.94,7859260,,,,,1 +17378,718,385,6,8,3,3,3,3,4,65,+1:09.63,7859950,,,,,1 +17379,718,374,172,2,5,4,4,4,3,65,+1:21.86,7872180,,,,,1 +17380,718,373,172,1,1,5,5,5,2,64,,,,,,,5 +17381,718,345,6,18,9,6,6,6,1,64,,,,,,,11 +17382,718,360,170,9,10,7,7,7,0,64,,,,,,,11 +17383,718,386,66,4,11,8,8,8,0,64,,,,,,,11 +17384,718,403,170,10,15,9,9,9,0,63,,,,,,,5 +17385,718,382,172,17,14,10,10,10,0,63,,,,,,,12 +17386,718,289,66,3,6,11,11,11,0,63,,,,,,,12 +17387,718,404,94,11,16,12,12,12,0,61,,,,,,,14 +17388,718,434,181,23,19,13,13,13,0,60,,,,,,,15 +17389,718,278,176,15,12,,R,14,0,46,,,,,,,6 +17390,718,356,183,5,7,,R,15,0,44,,,,,,,10 +17391,718,305,176,14,17,,R,16,0,12,,,,,,,25 +17392,718,346,181,22,13,,R,17,0,11,,,,,,,48 +17393,718,347,183,16,8,,R,18,0,9,,,,,,,22 +17394,718,401,94,12,18,,R,19,0,6,,,,,,,25 +17395,719,289,66,6,2,1,1,1,9,100,41:49.7,9709700,,,,,1 +17396,719,386,66,5,4,2,2,2,6,100,4.6,9714300,,,,,1 +17397,719,360,170,7,8,3,3,3,4,100,12.8,9722500,,,,,1 +17398,719,341,6,21,3,4,4,4,3,100,14.1,9723800,,,,,1 +17399,719,408,170,8,10,5,5,5,2,98,,,,,,,12 +17400,719,401,172,10,9,6,6,6,1,98,,,,,,,12 +17401,719,347,170,11,11,7,7,7,0,94,,,,,,,16 +17402,719,373,172,9,1,8,8,8,0,78,,,,,,,6 +17403,719,356,172,3,16,9,9,9,0,77,,,,,,,6 +17404,719,404,176,14,5,,R,10,0,40,,,,,,,3 +17405,719,435,6,20,7,,R,11,0,37,,,,,,,6 +17406,719,427,26,17,14,,R,12,0,34,,,,,,,8 +17407,719,364,34,4,6,,R,13,0,25,,,,,,,24 +17408,719,440,176,12,13,,R,14,0,20,,,,,,,6 +17409,719,346,176,25,12,,R,15,0,3,,,,,,,5 +17410,719,278,26,15,0,,W,16,0,0,,,,,,,54 +17411,719,428,172,24,0,,F,17,0,0,,,,,,,81 +17412,719,403,54,1,0,,W,18,0,0,,,,,,,54 +17413,719,394,54,2,0,,W,19,0,0,,,,,,,54 +17414,719,436,176,16,0,,W,20,0,0,,,,,,,54 +17415,719,437,92,18,0,,W,21,0,0,,,,,,,54 +17416,719,438,92,19,0,,W,22,0,0,,,,,,,54 +17417,719,439,86,22,0,,W,23,0,0,,,,,,,54 +17418,719,385,66,23,0,,W,24,0,0,,,,,,,54 +17419,719,430,95,24,0,,W,25,0,0,,,,,,,54 +17420,720,373,172,1,8,1,1,1,9,32,27:47.6,8867600,,,,,1 +17421,720,360,170,14,5,2,2,2,6,32,+4:54.0,9161600,,,,,1 +17422,720,364,34,18,2,3,3,3,4,31,,,,,,,11 +17423,720,386,66,8,9,4,4,4,3,31,,,,,,,11 +17424,720,347,170,12,13,5,5,5,2,30,,,,,,,12 +17425,720,430,95,29,18,6,6,6,1,30,,,,,,,12 +17426,720,408,170,15,4,7,7,7,0,27,,,,,,,3 +17427,720,438,92,24,19,8,8,8,0,25,,,,,,,3 +17428,720,341,6,9,10,,R,9,0,19,,,,,,,98 +17429,720,289,66,7,1,,R,10,0,17,,,,,,,6 +17430,720,376,26,22,16,,R,11,0,17,,,,,,,3 +17431,720,440,176,5,12,,R,12,0,16,,,,,,,3 +17432,720,346,176,28,14,,R,13,0,16,,,,,,,3 +17433,720,403,54,26,17,,R,14,0,13,,,,,,,6 +17434,720,356,34,17,6,,R,15,0,12,,,,,,,98 +17435,720,278,26,21,15,,R,16,0,10,,,,,,,44 +17436,720,404,94,4,7,,R,17,0,9,,,,,,,6 +17437,720,435,6,10,3,,R,18,0,7,,,,,,,98 +17438,720,394,54,27,20,,R,19,0,7,,,,,,,6 +17439,720,401,172,2,11,,R,20,0,5,,,,,,,68 +17440,720,397,172,3,0,,W,21,0,0,,,,,,,54 +17441,720,375,6,11,0,,W,22,0,0,,,,,,,54 +17442,720,385,66,19,0,,W,23,0,0,,,,,,,54 +17443,720,437,92,25,0,,W,24,0,0,,,,,,,54 +17444,721,373,172,6,1,1,1,1,9,80,08:13.7,7693700,,,,,1 +17445,721,364,34,18,14,2,2,2,6,79,,,,,,,11 +17446,721,341,6,2,5,3,3,3,4,79,,,,,,,11 +17447,721,404,94,30,7,4,4,4,3,79,,,,,,,11 +17448,721,386,66,14,6,5,5,5,2,79,,,,,,,11 +17449,721,375,6,4,11,6,6,6,1,78,,,,,,,12 +17450,721,346,176,36,17,7,7,7,0,77,,,,,,,13 +17451,721,440,176,42,18,8,8,8,0,77,,,,,,,13 +17452,721,430,95,32,19,9,9,9,0,75,,,,,,,15 +17453,721,401,172,8,10,10,10,10,0,66,,,,,,,111 +17454,721,347,170,28,8,11,11,11,0,56,,,,,,,117 +17455,721,289,66,12,2,,R,12,0,69,,,,,,,25 +17456,721,356,34,16,4,,R,13,0,68,,,,,,,3 +17457,721,278,26,10,12,,R,14,0,29,,,,,,,103 +17458,721,394,54,26,15,,R,15,0,17,,,,,,,80 +17459,721,403,54,24,13,,R,16,0,15,,,,,,,22 +17460,721,408,170,22,9,,R,17,0,14,,,,,,,25 +17461,721,360,170,20,3,,R,18,0,7,,,,,,,6 +17462,721,423,95,34,16,,R,19,0,2,,,,,,,8 +17463,721,438,92,38,0,,W,20,0,0,,,,,,,54 +17464,721,437,92,40,0,,W,21,0,0,,,,,,,54 +17465,722,373,172,18,1,1,1,1,9,53,10:54.3,7854300,,,,,1 +17466,722,408,170,12,8,2,2,2,6,53,+1:04.9,7919200,,,,,1 +17467,722,289,66,2,2,3,3,3,0,53,+1:13.9,7928200,,,,,1 +17468,722,356,34,6,5,4,4,4,3,53,+2:15.2,7989500,,,,,1 +17469,722,364,34,8,3,5,5,5,2,53,+2:33.4,8007700,,,,,1 +17470,722,346,176,36,10,6,6,6,1,52,,,,,,,11 +17471,722,278,26,30,17,7,7,7,0,51,,,,,,,12 +17472,722,427,172,28,15,8,8,8,0,50,,,,,,,13 +17473,722,404,94,32,9,9,9,9,0,49,,,,,,,14 +17474,722,385,66,46,21,10,10,10,0,45,,,,,,,18 +17475,722,440,176,34,18,11,11,11,0,45,,,,,,,18 +17476,722,360,170,10,6,12,12,12,0,42,,,,,,,80 +17477,722,401,172,20,7,13,13,13,0,41,,,,,,,22 +17478,722,403,176,42,13,,N,14,0,34,,,,,,,62 +17479,722,347,170,44,11,,N,15,0,32,,,,,,,62 +17480,722,418,176,48,19,,R,16,0,30,,,,,,,6 +17481,722,341,6,16,4,,R,17,0,12,,,,,,,48 +17482,722,438,92,38,20,,R,18,0,5,,,,,,,67 +17483,722,386,66,4,12,,R,19,0,4,,,,,,,21 +17484,722,375,6,14,0,,W,20,0,0,,,,,,,54 +17485,722,397,172,22,0,,W,21,0,0,,,,,,,54 +17486,722,394,54,26,0,,W,22,0,0,,,,,,,54 +17487,722,437,92,40,0,,W,23,0,0,,,,,,,54 +17488,722,439,86,50,0,,W,24,0,0,,,,,,,54 +17489,723,373,172,4,1,1,1,1,9,82,14:09.6,8049600,,,,,1 +17490,723,341,6,10,5,2,2,2,6,82,25.8,8075400,,,,,1 +17491,723,289,66,1,3,3,3,3,4,82,37.6,8087200,,,,,1 +17492,723,386,66,2,9,4,4,4,3,81,,,,,,,11 +17493,723,385,66,3,8,5,5,5,2,81,,,,,,,11 +17494,723,440,176,12,13,6,6,6,1,80,,,,,,,12 +17495,723,278,26,19,14,7,7,7,0,80,,,,,,,12 +17496,723,305,172,20,17,8,8,8,0,78,,,,,,,14 +17497,723,408,170,7,7,9,9,9,0,78,,,,,,,14 +17498,723,430,95,23,21,10,10,10,0,76,,,,,,,16 +17499,723,418,176,21,22,11,11,11,0,75,,,,,,,17 +17500,723,383,26,22,16,12,12,12,0,75,,,,,,,17 +17501,723,436,26,24,23,13,13,13,0,74,,,,,,,18 +17502,723,346,176,25,15,,R,14,0,66,,,,,,,6 +17503,723,347,170,14,12,,R,15,0,65,,,,,,,51 +17504,723,364,34,9,2,,R,16,0,59,,,,,,,5 +17505,723,420,97,26,19,,R,17,0,59,,,,,,,6 +17506,723,437,92,16,20,,R,18,0,36,,,,,,,80 +17507,723,356,34,8,4,,R,19,0,27,,,,,,,5 +17508,723,404,94,11,11,,R,20,0,26,,,,,,,80 +17509,723,401,172,5,10,,R,21,0,23,,,,,,,48 +17510,723,438,92,15,18,,R,22,0,20,,,,,,,80 +17511,723,360,170,6,6,,R,23,0,6,,,,,,,5 +17512,723,439,86,27,0,,W,24,0,0,,,,,,,54 +17513,723,394,54,17,0,,W,25,0,0,,,,,,,54 +17514,723,403,54,18,0,,W,26,0,0,,,,,,,54 +17515,724,341,6,7,2,1,1,1,9,15,13:06.8,7986800,,,,,1 +17516,724,373,172,3,1,2,2,2,6,15,+1:17.5,8064300,,,,,1 +17517,724,386,66,2,6,3,3,3,4,15,+2:44.9,8151700,,,,,1 +17518,724,423,95,26,15,4,4,4,3,15,+8:11.5,8478300,,,,,1 +17519,724,440,176,20,16,5,5,5,2,14,,,,,,,11 +17520,724,347,170,16,12,6,6,6,1,14,,,,,,,11 +17521,724,356,34,9,8,7,7,7,0,14,,,,,,,11 +17522,724,401,172,4,18,8,8,8,0,14,,,,,,,11 +17523,724,346,176,18,9,9,9,9,0,10,,,,,,,24 +17524,724,428,172,28,21,10,10,10,0,10,,,,,,,15 +17525,724,430,95,17,17,,R,11,0,9,,,,,,,36 +17526,724,408,170,6,10,,R,12,0,7,,,,,,,5 +17527,724,364,34,10,13,,R,13,0,6,,,,,,,6 +17528,724,432,170,22,20,,R,14,0,6,,,,,,,6 +17529,724,437,92,24,19,,R,15,0,5,,,,,,,38 +17530,724,438,92,23,22,,R,16,0,5,,,,,,,3 +17531,724,360,170,5,5,,R,17,0,3,,,,,,,3 +17532,724,289,66,1,4,,R,18,0,2,,,,,,,6 +17533,724,278,26,21,14,,R,19,0,1,,,,,,,3 +17534,724,435,6,8,7,,R,20,0,1,,,,,,,3 +17535,724,404,176,14,11,,R,21,0,1,,,,,,,3 +17536,724,385,66,15,3,,R,22,0,0,,,,,,,3 +17537,724,429,172,29,0,,F,23,0,0,,,,,,,81 +17538,724,420,97,25,0,,F,24,0,0,,,,,,,81 +17539,724,441,172,30,0,,F,25,0,0,,,,,,,81 +17540,724,442,177,27,0,,F,26,0,0,,,,,,,81 +17541,724,403,54,11,0,,W,27,0,0,,,,,,,54 +17542,724,394,54,12,0,,W,28,0,0,,,,,,,54 +17543,724,418,176,19,0,,W,29,0,0,,,,,,,54 +17544,725,373,172,8,3,1,1,1,9,86,24:19.6,8659600,,,,,1 +17545,725,386,66,10,4,2,2,2,6,86,+1:35.0,8754600,,,,,1 +17546,725,360,170,18,8,3,3,3,4,85,,,,,,,11 +17547,725,404,94,32,10,4,4,4,3,84,,,,,,,5 +17548,725,356,34,22,7,5,5,5,2,84,,,,,,,12 +17549,725,408,170,20,13,6,6,6,1,84,,,,,,,12 +17550,725,347,170,58,11,7,7,7,0,84,,,,,,,12 +17551,725,440,176,30,17,8,8,8,0,84,,,,,,,12 +17552,725,427,66,66,20,9,9,9,0,83,,,,,,,13 +17553,725,305,26,40,18,10,10,10,0,82,,,,,,,14 +17554,725,403,54,16,14,11,11,11,0,79,,,,,,,17 +17555,725,383,26,48,19,12,12,12,0,79,,,,,,,17 +17556,725,374,172,6,9,13,13,13,0,73,,,,,,,51 +17557,725,364,34,24,5,14,14,14,0,64,,,,,,,69 +17558,725,394,54,14,25,15,15,15,0,63,,,,,,,119 +17559,725,289,66,12,2,16,16,16,0,59,,,,,,,8 +17560,725,346,176,54,16,,R,17,0,40,,,,,,,51 +17561,725,385,6,2,6,,R,18,0,37,,,,,,,6 +17562,725,418,176,42,12,,R,19,0,26,,,,,,,5 +17563,725,341,6,4,1,,R,20,0,16,,,,,,,5 +17564,725,278,26,38,0,,W,21,0,0,,,,,,,54 +17565,725,432,170,64,0,,F,22,0,0,,,,,,,81 +17566,725,420,97,50,0,,F,23,0,0,,,,,,,81 +17567,725,438,92,34,0,,F,24,0,0,,,,,,,81 +17568,725,430,95,28,0,,F,25,0,0,,,,,,,81 +17569,725,443,167,62,0,,F,26,0,0,,,,,,,81 +17570,725,429,172,46,0,,F,27,0,0,,,,,,,81 +17571,725,444,179,44,0,,F,28,0,0,,,,,,,81 +17572,725,423,95,26,0,,W,29,0,0,,,,,,,54 +17573,725,437,92,36,0,,W,30,0,0,,,,,,,54 +17574,725,445,176,52,0,,W,31,0,0,,,,,,,54 +17575,725,446,95,56,0,,W,32,0,0,,,,,,,54 +17576,725,447,173,60,0,,W,33,0,0,,,,,,,54 +17577,726,289,66,1,1,1,1,1,9,110,19:22.1,8362100,,,,,1 +17578,726,386,66,2,4,2,2,2,6,110,34.3,8396400,,,,,1 +17579,726,373,172,8,2,3,3,3,4,109,,,,,,,11 +17580,726,356,34,5,5,4,4,4,3,108,,,,,,,12 +17581,726,385,6,24,9,5,5,5,2,106,,,,,,,14 +17582,726,430,95,12,19,6,6,6,1,99,,,,,,,45 +17583,726,448,98,21,21,7,7,7,0,88,,,,,,,115 +17584,726,347,170,11,12,8,8,8,0,85,,,,,,,113 +17585,726,341,6,23,3,9,9,9,0,82,,,,,,,5 +17586,726,440,176,16,16,10,10,10,0,76,,,,,,,6 +17587,726,360,170,3,11,11,11,11,0,74,,,,,,,48 +17588,726,346,176,14,14,,R,12,0,56,,,,,,,6 +17589,726,408,170,4,10,,R,13,0,44,,,,,,,80 +17590,726,449,176,18,17,,R,14,0,44,,,,,,,6 +17591,726,364,34,6,6,,R,15,0,42,,,,,,,83 +17592,726,345,172,10,13,,R,16,0,36,,,,,,,5 +17593,726,401,172,9,7,,R,17,0,24,,,,,,,10 +17594,726,418,26,17,8,,R,18,0,14,,,,,,,5 +17595,726,434,176,22,18,,R,19,0,6,,,,,,,31 +17596,726,403,54,25,15,,R,20,0,4,,,,,,,94 +17597,726,394,54,26,20,,R,21,0,0,,,,,,,94 +17598,726,433,172,7,0,,W,22,0,0,,,,,,,54 +17599,726,404,176,15,0,,W,23,0,0,,,,,,,54 +17600,726,450,98,19,0,,W,24,0,0,,,,,,,54 +17601,727,373,172,8,1,1,1,1,9,65,09:52.1,7792100,,,,,1 +17602,727,356,34,5,10,2,2,2,6,65,+1:41.1,7893200,,,,,1 +17603,727,386,66,2,5,3,3,3,4,65,+1:54.7,7906800,,,,,1 +17604,727,289,66,1,3,4,4,4,3,64,,,,,,,11 +17605,727,347,170,11,8,5,5,5,2,62,,,,,,,13 +17606,727,364,34,6,4,6,6,6,1,62,,,,,,,13 +17607,727,434,176,22,16,7,7,7,0,61,,,,,,,14 +17608,727,440,176,16,15,8,8,8,0,61,,,,,,,14 +17609,727,346,176,14,9,9,9,9,0,59,,,,,,,16 +17610,727,430,95,12,18,10,10,10,0,58,,,,,,,17 +17611,727,382,66,13,11,11,11,11,0,57,,,,,,,5 +17612,727,403,54,25,17,,R,12,0,46,,,,,,,22 +17613,727,385,6,24,7,,R,13,0,36,,,,,,,80 +17614,727,360,170,3,6,,R,14,0,30,,,,,,,5 +17615,727,345,172,10,20,,R,15,0,26,,,,,,,22 +17616,727,418,26,17,14,,R,16,0,23,,,,,,,22 +17617,727,341,6,23,2,,D,17,0,19,,,,,,,2 +17618,727,401,172,9,12,,R,18,0,19,,,,,,,5 +17619,727,394,54,26,21,,R,19,0,12,,,,,,,5 +17620,727,278,176,18,19,,R,20,0,9,,,,,,,6 +17621,727,408,170,4,13,,R,21,0,7,,,,,,,5 +17622,727,451,170,20,0,,W,22,0,0,,,,,,,54 +17623,727,433,32,7,0,,W,23,0,0,,,,,,,54 +17624,727,404,176,15,0,,W,24,0,0,,,,,,,54 +17625,727,452,172,19,0,,W,25,0,0,,,,,,,54 +17626,729,289,66,17,2,1,1,1,9,80,11:02.1,7862100,,,,,1 +17627,729,401,172,5,10,2,2,2,6,80,27.2,7889300,,,,,1 +17628,729,403,6,1,9,3,3,3,4,80,+1:21.1,7943200,,,,,1 +17629,729,394,6,2,12,4,4,4,3,79,,,,,,,11 +17630,729,408,170,7,15,5,5,5,2,78,,,,,,,12 +17631,729,430,95,14,14,6,6,6,1,76,,,,,,,14 +17632,729,347,95,11,13,7,7,7,0,75,,,,,,,15 +17633,729,453,170,21,7,8,8,8,0,70,,,,,,,88 +17634,729,373,172,4,3,9,9,9,0,70,,,,,,,88 +17635,729,454,6,3,11,,R,10,0,73,,,,,,,3 +17636,729,386,66,18,7,,R,11,0,71,,,,,,,3 +17637,729,404,172,9,6,,R,12,0,61,,,,,,,3 +17638,729,418,172,10,16,,R,13,0,54,,,,,,,86 +17639,729,455,99,16,20,,N,14,0,52,,,,,,,62 +17640,729,364,95,12,8,,R,15,0,47,,,,,,,6 +17641,729,360,170,6,5,,R,16,0,21,,,,,,,6 +17642,729,456,26,20,17,,R,17,0,12,,,,,,,54 +17643,729,341,26,19,1,,R,18,0,8,,,,,,,3 +17644,729,356,172,8,4,,R,19,0,4,,,,,,,3 +17645,729,457,95,15,10,,R,20,0,2,,,,,,,3 +17646,729,458,95,16,0,,W,21,0,0,,,,,,,54 +17647,729,427,172,21,0,,W,22,0,0,,,,,,,54 +17648,730,360,170,14,3,1,1,1,9,100,46:29.7,9989700,,,,,1 +17649,730,403,6,36,9,2,2,2,6,100,1.3,9991000,,,,,1 +17650,730,385,6,38,10,3,3,3,4,100,+1:24.1,10073800,,,,,1 +17651,730,341,26,28,11,4,4,4,3,99,,,,,,,11 +17652,730,347,95,2,18,5,5,5,2,93,,,,,,,17 +17653,730,289,66,10,2,6,6,6,1,92,,,,,,,5 +17654,730,435,6,40,4,7,7,7,0,90,,,,,,,51 +17655,730,356,172,22,6,8,8,8,0,77,,,,,,,3 +17656,730,404,172,34,8,,R,9,0,64,,,,,,,48 +17657,730,373,172,18,1,,R,10,0,55,,,,,,,8 +17658,730,456,26,26,12,,R,11,0,44,,,,,,,22 +17659,730,408,170,16,19,,R,12,0,43,,,,,,,6 +17660,730,401,172,20,17,,R,13,0,24,,,,,,,44 +17661,730,364,95,4,5,,R,14,0,0,,,,,,,3 +17662,730,427,172,30,7,,R,15,0,0,,,,,,,3 +17663,730,386,66,8,14,,R,16,0,0,,,,,,,3 +17664,730,346,172,46,0,,F,17,0,0,,,,,,,81 +17665,730,453,66,24,0,,F,18,0,0,,,,,,,81 +17666,730,418,176,32,0,,F,19,0,0,,,,,,,81 +17667,730,430,95,44,0,,F,20,0,0,,,,,,,81 +17668,730,425,172,42,0,,F,21,0,0,,,,,,,81 +17669,730,454,6,40,0,,W,22,0,0,,,,,,,54 +17670,730,424,175,6,0,,W,23,0,0,,,,,,,54 +17671,730,459,66,12,0,,W,24,0,0,,,,,,,54 +17672,731,373,172,16,13,1,1,1,9,32,07:32.3,7652300,,,,,1 +17673,731,289,66,1,1,2,2,2,6,32,44.1,7696400,,,,,1 +17674,731,403,6,9,4,3,3,3,4,32,+2:06.5,7778800,,,,,1 +17675,731,454,6,12,7,4,4,4,3,32,+2:06.6,7778900,,,,,1 +17676,731,341,26,5,11,5,5,5,2,31,,,,,,,11 +17677,731,356,172,15,15,6,6,6,1,30,,,,,,,12 +17678,731,430,95,7,13,7,7,7,0,30,,,,,,,12 +17679,731,427,172,18,16,8,8,8,0,30,,,,,,,12 +17680,731,376,172,19,18,9,9,9,0,29,,,,,,,13 +17681,731,346,172,22,17,10,10,10,0,29,,,,,,,13 +17682,731,436,172,4,19,11,11,11,0,16,,,,,,,116 +17683,731,401,172,17,3,,R,12,0,25,,,,,,,3 +17684,731,435,6,10,6,,R,13,0,25,,,,,,,3 +17685,731,386,66,2,9,,R,14,0,22,,,,,,,6 +17686,731,408,170,26,10,,R,15,0,22,,,,,,,6 +17687,731,360,170,25,2,,R,16,0,19,,,,,,,67 +17688,731,418,176,21,8,,R,17,0,13,,,,,,,54 +17689,731,404,172,20,5,,R,18,0,8,,,,,,,22 +17690,731,394,6,11,14,,R,19,0,3,,,,,,,80 +17691,731,364,176,23,0,,W,20,0,0,,,,,,,54 +17692,731,459,66,3,0,,W,21,0,0,,,,,,,54 +17693,731,453,66,4,0,,W,22,0,0,,,,,,,54 +17694,731,460,66,4,0,,W,23,0,0,,,,,,,54 +17695,731,456,26,6,0,,W,24,0,0,,,,,,,54 +17696,731,461,95,8,0,,W,25,0,0,,,,,,,54 +17697,731,347,95,24,0,,W,26,0,0,,,,,,,54 +17698,732,364,95,30,6,1,1,1,9,54,07:05.5,7625500,,,,,1 +17699,732,408,170,24,11,2,2,2,6,53,,,,,,,11 +17700,732,386,66,10,10,3,3,3,4,52,,,,,,,12 +17701,732,360,170,22,3,4,4,4,3,51,,,,,,,13 +17702,732,341,26,18,5,5,5,5,2,51,,,,,,,13 +17703,732,430,95,38,17,6,6,6,1,51,,,,,,,13 +17704,732,427,172,28,13,7,7,7,0,50,,,,,,,14 +17705,732,401,172,14,12,8,8,8,0,48,,,,,,,16 +17706,732,289,66,8,2,9,9,9,0,44,,,,,,,88 +17707,732,347,95,32,9,,R,10,0,43,,,,,,,69 +17708,732,373,172,12,1,,R,11,0,34,,,,,,,22 +17709,732,453,87,42,16,,R,12,0,28,,,,,,,3 +17710,732,456,26,20,14,,R,13,0,21,,,,,,,51 +17711,732,418,176,34,7,,R,14,0,15,,,,,,,25 +17712,732,356,172,26,4,,R,15,0,11,,,,,,,22 +17713,732,346,176,40,15,,R,16,0,6,,,,,,,8 +17714,732,404,172,36,8,,R,17,0,1,,,,,,,29 +17715,732,397,32,16,0,,W,18,0,0,,,,,,,54 +17716,732,459,66,,0,,W,19,0,0,,,,,,,54 +17717,732,462,95,,0,,W,20,0,0,,,,,,,54 +17718,732,446,172,,0,,W,21,0,0,,,,,,,54 +17719,732,437,170,,0,,W,22,0,0,,,,,,,54 +17720,733,373,172,20,1,1,1,1,9,75,26:20.8,8780800,,,,,1 +17721,733,341,26,24,2,2,2,2,6,75,49.2,8830000,,,,,1 +17722,733,360,170,16,4,3,3,3,4,75,+1:44.8,8885600,,,,,1 +17723,733,289,66,12,5,4,4,4,3,75,+1:56.8,8897600,,,,,1 +17724,733,356,172,30,9,5,5,5,2,74,,,,,,,11 +17725,733,408,170,18,13,6,6,6,1,74,,,,,,,11 +17726,733,418,172,34,14,7,7,7,0,74,,,,,,,11 +17727,733,401,172,22,10,8,8,8,0,74,,,,,,,11 +17728,733,364,95,8,6,9,9,9,0,73,,,,,,,12 +17729,733,453,170,42,15,10,10,10,0,72,,,,,,,13 +17730,733,438,99,40,19,11,11,11,0,71,,,,,,,14 +17731,733,437,170,36,16,12,12,12,0,71,,,,,,,14 +17732,733,386,66,14,8,13,13,13,0,70,,,,,,,15 +17733,733,430,95,54,17,14,14,14,0,69,,,,,,,16 +17734,733,463,172,46,20,15,15,15,0,64,,,,,,,45 +17735,733,404,172,32,3,16,16,16,0,61,,,,,,,111 +17736,733,403,6,2,12,,R,17,0,47,,,,,,,5 +17737,733,456,26,26,11,,R,18,0,35,,,,,,,84 +17738,733,347,95,10,7,,R,19,0,27,,,,,,,24 +17739,733,455,176,44,21,,R,20,0,11,,,,,,,23 +17740,733,464,172,48,18,,R,21,0,6,,,,,,,5 +17741,733,465,172,48,0,,W,22,0,0,,,,,,,54 +17742,733,427,172,28,0,,W,23,0,0,,,,,,,54 +17743,733,436,99,38,0,,W,24,0,0,,,,,,,54 +17744,733,465,97,50,0,,W,25,0,0,,,,,,,54 +17745,733,346,176,52,0,,W,26,0,0,,,,,,,54 +17746,734,289,66,11,2,1,1,1,9,15,38:45.3,9525300,,,,,1 +17747,734,341,26,14,4,2,2,2,6,15,2.5,9527800,,,,,1 +17748,734,364,95,7,1,3,3,3,4,15,4.4,9529700,,,,,1 +17749,734,373,172,5,3,4,4,4,3,15,42.1,9567400,,,,,1 +17750,734,360,170,9,5,5,5,5,2,15,+1:19.6,9604900,,,,,1 +17751,734,454,6,3,10,6,6,6,1,15,+1:23.8,9609100,,,,,1 +17752,734,347,95,8,6,7,7,7,0,15,+4:37.3,9802600,,,,,1 +17753,734,386,66,12,7,8,8,8,0,15,+5:00.1,9825400,,,,,1 +17754,734,408,170,10,23,9,9,9,0,15,+5:07.0,9832300,,,,,1 +17755,734,394,6,2,13,10,10,10,0,15,+8:14.7,10020000,,,,,1 +17756,734,437,170,25,16,11,11,11,0,15,+8:15.3,10020600,,,,,1 +17757,734,346,172,19,17,12,12,12,0,15,+8:15.5,10020800,,,,,1 +17758,734,430,95,18,8,13,13,13,0,15,+9:11.8,10077100,,,,,1 +17759,734,466,95,32,14,14,14,14,0,14,,,,,,,11 +17760,734,425,95,26,15,15,15,15,0,14,,,,,,,11 +17761,734,376,100,21,25,16,16,16,0,14,,,,,,,11 +17762,734,453,170,20,21,,R,17,0,10,,,,,,,22 +17763,734,403,6,1,12,,R,18,0,9,,,,,,,22 +17764,734,356,34,16,24,,R,19,0,9,,,,,,,37 +17765,734,465,97,27,19,,R,20,0,7,,,,,,,22 +17766,734,456,26,15,9,,R,21,0,4,,,,,,,6 +17767,734,427,172,17,11,,R,22,0,4,,,,,,,6 +17768,734,385,6,4,18,,R,23,0,4,,,,,,,3 +17769,734,461,176,28,20,,R,24,0,4,,,,,,,51 +17770,734,428,170,31,22,,R,25,0,2,,,,,,,6 +17771,734,401,172,6,26,,R,26,0,0,,,,,,,3 +17772,734,464,172,29,0,,F,27,0,0,,,,,,,81 +17773,734,455,176,34,0,,F,28,0,0,,,,,,,81 +17774,734,463,172,30,0,,F,29,0,0,,,,,,,81 +17775,734,445,176,34,0,,F,30,0,0,,,,,,,81 +17776,734,459,66,33,0,,W,31,0,0,,,,,,,54 +17777,735,289,66,14,2,1,1,1,9,86,29:08.4,8948400,,,,,1 +17778,735,386,66,12,3,2,2,2,6,86,29.8,8978200,,,,,1 +17779,735,360,170,28,4,3,3,3,4,86,57.8,9006200,,,,,1 +17780,735,435,6,8,10,4,4,4,3,86,58.2,9006600,,,,,1 +17781,735,394,6,2,18,5,5,5,2,86,+1:31.3,9039700,,,,,1 +17782,735,347,95,18,9,6,6,6,1,85,,,,,,,11 +17783,735,408,170,30,12,7,7,7,0,85,,,,,,,11 +17784,735,385,6,6,17,8,8,8,0,84,,,,,,,12 +17785,735,425,172,24,14,9,9,9,0,84,,,,,,,12 +17786,735,430,95,32,20,10,10,10,0,81,,,,,,,15 +17787,735,403,6,10,15,11,11,11,0,81,,,,,,,15 +17788,735,418,176,38,6,12,12,12,0,77,,,,,,,19 +17789,735,364,95,16,7,13,13,13,0,66,,,,,,,24 +17790,735,454,6,4,11,14,14,14,0,63,,,,,,,80 +17791,735,404,172,40,5,,R,15,0,45,,,,,,,22 +17792,735,341,26,46,8,,R,16,0,42,,,,,,,5 +17793,735,456,26,44,13,,R,17,0,41,,,,,,,5 +17794,735,401,172,22,16,,R,18,0,25,,,,,,,6 +17795,735,438,99,48,21,,R,19,0,18,,,,,,,5 +17796,735,427,172,36,19,,R,20,0,17,,,,,,,10 +17797,735,373,172,20,1,,R,21,0,12,,,,,,,6 +17798,735,464,176,60,0,,F,22,0,0,,,,,,,81 +17799,735,465,97,56,0,,F,23,0,0,,,,,,,81 +17800,735,460,172,52,0,,F,24,0,0,,,,,,,81 +17801,735,437,170,62,0,,F,25,0,0,,,,,,,81 +17802,735,346,176,42,0,,F,26,0,0,,,,,,,81 +17803,735,467,172,54,0,,F,27,0,0,,,,,,,81 +17804,735,444,174,50,0,,F,28,0,0,,,,,,,81 +17805,735,463,172,26,0,,F,29,0,0,,,,,,,81 +17806,735,439,86,34,0,,F,30,0,0,,,,,,,81 +17807,735,442,177,58,0,,W,31,0,0,,,,,,,54 +17808,736,373,172,8,1,1,1,1,9,100,07:13.0,7633000,,,,,1 +17809,736,289,66,4,3,2,2,2,6,100,9.2,7642200,,,,,1 +17810,736,360,170,21,6,3,3,3,4,99,,,,,,,11 +17811,736,356,34,17,5,4,4,4,3,99,,,,,,,11 +17812,736,364,95,10,4,5,5,5,2,99,,,,,,,11 +17813,736,418,176,16,7,6,6,6,1,99,,,,,,,11 +17814,736,408,170,22,10,7,7,7,0,97,,,,,,,13 +17815,736,404,172,15,16,8,8,8,0,96,,,,,,,14 +17816,736,468,172,14,13,9,9,9,0,96,,,,,,,14 +17817,736,469,172,26,17,10,10,10,0,93,,,,,,,17 +17818,736,434,170,24,15,11,11,11,0,91,,,,,,,19 +17819,736,401,172,9,8,12,12,12,0,85,,,,,,,112 +17820,736,347,95,11,9,13,13,13,0,79,,,,,,,120 +17821,736,386,66,5,2,,R,14,0,35,,,,,,,5 +17822,736,427,172,6,19,,R,15,0,32,,,,,,,23 +17823,736,470,170,23,12,,R,16,0,31,,,,,,,80 +17824,736,341,26,18,20,,R,17,0,19,,,,,,,5 +17825,736,430,95,12,14,,R,18,0,9,,,,,,,3 +17826,736,456,26,19,0,,W,19,0,0,,,,,,,54 +17827,736,440,172,25,0,,W,20,0,0,,,,,,,54 +17828,737,289,66,3,2,1,1,1,9,82,08:03.3,7683300,,,,,1 +17829,737,360,170,8,8,2,2,2,6,82,49.8,7733100,,,,,1 +17830,737,408,170,9,6,3,3,3,4,82,50.3,7733600,,,,,1 +17831,737,356,34,10,3,4,4,4,3,82,53.8,7737100,,,,,1 +17832,737,404,172,11,4,5,5,5,2,81,,,,,,,11 +17833,737,410,172,20,10,6,6,6,1,78,,,,,,,14 +17834,737,386,66,4,7,7,7,7,0,78,,,,,,,14 +17835,737,340,170,18,12,8,8,8,0,78,,,,,,,14 +17836,737,471,66,5,17,9,9,9,0,76,,,,,,,16 +17837,737,413,172,14,13,10,10,10,0,71,,,,,,,45 +17838,737,430,95,15,16,11,11,11,0,70,,,,,,,69 +17839,737,373,172,1,1,,R,12,0,62,,,,,,,44 +17840,737,411,89,21,14,,R,13,0,62,,,,,,,21 +17841,737,456,26,7,11,,R,14,0,56,,,,,,,95 +17842,737,472,178,22,15,,R,15,0,31,,,,,,,67 +17843,737,341,26,6,5,,R,16,0,26,,,,,,,5 +17844,737,401,172,2,9,,R,17,0,11,,,,,,,6 +17845,737,473,172,12,0,,W,18,0,0,,,,,,,54 +17846,737,474,172,16,0,,W,19,0,0,,,,,,,54 +17847,737,438,99,17,0,,W,20,0,0,,,,,,,54 +17848,737,368,172,19,0,,W,21,0,0,,,,,,,54 +17849,738,475,172,20,1,1,1,1,9,100,45:50.1,9950100,,,,,1 +17850,738,386,6,36,2,2,2,2,6,100,3.6,9953700,,,,,1 +17851,738,403,6,38,5,3,3,3,4,100,41.3,9991400,,,,,1 +17852,738,476,6,40,6,4,4,4,3,98,,,,,,,3 +17853,738,364,95,4,11,5,5,5,2,98,,,,,,,12 +17854,738,360,170,26,7,6,6,6,1,95,,,,,,,15 +17855,738,427,167,42,16,7,7,7,0,95,,,,,,,15 +17856,738,477,172,32,15,8,8,8,0,93,,,,,,,17 +17857,738,478,95,6,13,9,9,9,0,91,,,,,,,19 +17858,738,373,172,28,3,10,10,10,0,89,,,,,,,45 +17859,738,341,170,22,12,11,11,11,0,68,,,,,,,5 +17860,738,347,95,2,9,12,12,12,0,59,,,,,,,98 +17861,738,479,66,16,8,13,13,13,0,54,,,,,,,5 +17862,738,480,172,8,14,,R,14,0,42,,,,,,,108 +17863,738,356,170,24,21,,R,15,0,38,,,,,,,80 +17864,738,289,66,18,4,,R,16,0,11,,,,,,,48 +17865,738,404,172,30,0,,W,17,0,0,,,,,,,54 +17866,738,481,172,34,0,,F,18,0,0,,,,,,,81 +17867,738,418,170,14,0,,F,19,0,0,,,,,,,81 +17868,738,376,99,10,0,,F,20,0,0,,,,,,,81 +17869,738,482,99,12,0,,F,21,0,0,,,,,,,81 +17870,739,476,6,3,2,1,1,1,9,75,01:52.1,7312100,,,,,1 +17871,739,403,6,1,1,2,2,2,6,75,0.9,7313000,,,,,1 +17872,739,373,172,15,11,3,3,3,4,75,13.1,7325200,,,,,1 +17873,739,475,172,14,4,4,4,4,3,75,22.2,7334300,,,,,1 +17874,739,386,6,2,3,5,5,5,2,75,22.3,7334400,,,,,1 +17875,739,356,170,10,7,6,6,6,1,75,+1:20.1,7392200,,,,,1 +17876,739,341,170,12,9,7,7,7,0,75,+1:26.7,7398800,,,,,1 +17877,739,289,66,4,5,8,8,8,0,75,+1:29.8,7401900,,,,,1 +17878,739,479,66,5,8,9,9,9,0,74,,,,,,,11 +17879,739,364,95,7,6,10,10,10,0,74,,,,,,,11 +17880,739,347,95,6,12,11,11,11,0,73,,,,,,,12 +17881,739,360,170,11,14,12,12,12,0,73,,,,,,,12 +17882,739,401,172,16,16,13,13,13,0,73,,,,,,,12 +17883,739,430,95,8,17,14,14,14,0,72,,,,,,,13 +17884,739,478,95,9,13,15,15,15,0,72,,,,,,,13 +17885,739,418,170,17,0,,W,16,0,0,,,,,,,54 +17886,739,437,172,18,0,,W,17,0,0,,,,,,,54 +17887,740,403,6,4,1,1,1,1,9,30,03:03.8,7383800,,,,,1 +17888,740,476,6,2,2,2,2,2,6,30,0.7,7384500,,,,,1 +17889,740,386,6,6,5,3,3,3,4,30,19.5,7403300,,,,,1 +17890,740,482,6,8,3,4,4,4,3,30,45.6,7429400,,,,,1 +17891,740,341,170,24,4,5,5,5,2,30,+1:26.8,7470600,,,,,1 +17892,740,364,95,20,10,6,6,6,1,30,+1:31.0,7474800,,,,,1 +17893,740,347,95,18,9,7,7,7,0,30,+2:47.1,7550900,,,,,1 +17894,740,475,172,14,8,8,8,8,0,30,+3:55.6,7619400,,,,,1 +17895,740,453,170,40,13,9,9,9,0,29,,,,,,,11 +17896,740,418,170,44,12,10,10,10,0,29,,,,,,,11 +17897,740,430,95,22,14,11,11,11,0,28,,,,,,,12 +17898,740,373,172,34,16,12,12,12,0,24,,,,,,,16 +17899,740,479,66,38,7,13,13,13,0,24,,,,,,,16 +17900,740,289,66,36,6,,R,14,0,24,,,,,,,80 +17901,740,427,167,26,20,,R,15,0,23,,,,,,,6 +17902,740,385,167,46,17,,R,16,0,20,,,,,,,67 +17903,740,356,170,28,11,,R,17,0,12,,,,,,,5 +17904,740,360,170,30,15,,R,18,0,9,,,,,,,80 +17905,740,404,172,32,18,,R,19,0,9,,,,,,,5 +17906,740,376,172,12,23,,R,20,0,9,,,,,,,44 +17907,740,435,172,10,19,,R,21,0,7,,,,,,,80 +17908,740,459,172,42,0,,W,22,0,0,,,,,,,54 +17909,740,455,172,48,0,,W,23,0,0,,,,,,,54 +17910,740,437,172,50,0,,W,24,0,0,,,,,,,54 +17911,740,477,172,16,0,,W,25,0,0,,,,,,,54 +17912,740,481,172,16,0,,W,26,0,0,,,,,,,54 +17913,741,394,6,50,12,1,1,1,9,52,14:17.5,8057500,,,,,1 +17914,741,364,95,12,5,2,2,2,6,52,0.1,8057600,,,,,1 +17915,741,373,172,8,9,3,3,3,4,52,+1:01.0,8118500,,,,,1 +17916,741,404,172,6,10,4,4,4,3,52,+1:10.3,8127800,,,,,1 +17917,741,360,170,4,8,5,5,5,2,52,+1:41.8,8159300,,,,,1 +17918,741,289,66,22,6,6,6,6,1,52,+1:41.9,8159400,,,,,1 +17919,741,347,95,10,13,7,7,7,0,52,+3:15.4,8252900,,,,,1 +17920,741,456,170,42,15,8,8,8,0,51,,,,,,,11 +17921,741,403,6,16,1,9,9,9,0,50,,,,,,,12 +17922,741,481,172,30,25,10,10,10,0,49,,,,,,,13 +17923,741,480,172,46,22,11,11,11,0,48,,,,,,,14 +17924,741,418,170,36,16,12,12,12,0,43,,,,,,,19 +17925,741,427,167,32,23,13,13,13,0,42,,,,,,,88 +17926,741,437,172,38,24,14,14,14,0,42,,,,,,,88 +17927,741,386,6,18,3,15,15,15,0,40,,,,,,,51 +17928,741,475,172,26,4,,R,16,0,31,,,,,,,23 +17929,741,435,172,48,20,,R,17,0,27,,,,,,,5 +17930,741,430,95,14,17,,R,18,0,23,,,,,,,25 +17931,741,376,172,28,19,,R,19,0,21,,,,,,,25 +17932,741,476,6,20,2,,R,20,0,18,,,,,,,5 +17933,741,483,174,34,26,,R,21,0,15,,,,,,,5 +17934,741,356,170,2,14,,R,22,0,14,,,,,,,51 +17935,741,428,170,52,21,,R,23,0,6,,,,,,,5 +17936,741,341,170,40,7,,R,24,0,4,,,,,,,3 +17937,741,479,66,24,11,,R,25,0,4,,,,,,,25 +17938,741,453,170,44,18,,R,26,0,4,,,,,,,25 +17939,741,455,172,46,0,,W,27,0,0,,,,,,,54 +17940,741,485,172,,0,,W,28,0,0,,,,,,,54 +17941,741,478,95,14,0,,W,29,0,0,,,,,,,54 +17942,741,482,99,46,0,,W,30,0,0,,,,,,,54 +17943,741,484,101,54,0,,W,31,0,0,,,,,,,54 +17944,742,476,6,4,4,1,1,1,9,75,40:53.6,9653600,,,,,1 +17945,742,403,6,2,1,2,2,2,6,75,46,9699600,,,,,1 +17946,742,386,6,6,2,3,3,3,4,75,46.8,9700400,,,,,1 +17947,742,356,170,12,9,4,4,4,3,75,+1:08.6,9722200,,,,,1 +17948,742,347,95,8,3,5,5,5,2,75,+1:16.2,9729800,,,,,1 +17949,742,456,170,36,13,6,6,6,1,75,+1:26.2,9739800,,,,,1 +17950,742,364,95,10,12,7,7,7,0,74,,,,,,,11 +17951,742,360,170,14,14,8,8,8,0,74,,,,,,,11 +17952,742,479,66,22,6,9,9,9,0,73,,,,,,,12 +17953,742,404,172,16,7,10,10,10,0,72,,,,,,,13 +17954,742,418,170,42,16,11,11,11,0,71,,,,,,,14 +17955,742,385,167,60,21,12,12,12,0,71,,,,,,,14 +17956,742,408,172,50,24,13,13,13,0,69,,,,,,,16 +17957,742,437,172,44,25,14,14,14,0,69,,,,,,,16 +17958,742,465,97,54,26,15,15,15,0,69,,,,,,,16 +17959,742,430,95,56,18,16,16,16,0,69,,,,,,,16 +17960,742,455,172,52,22,17,17,17,0,58,,,,,,,50 +17961,742,373,172,18,8,,R,18,0,62,,,,,,,44 +17962,742,475,102,26,20,,D,19,0,56,,,,,,,2 +17963,742,376,172,32,30,,R,20,0,45,,,,,,,6 +17964,742,475,172,28,5,,R,21,0,44,,,,,,,23 +17965,742,289,66,20,11,,R,22,0,43,,,,,,,5 +17966,742,394,6,58,19,,R,23,0,27,,,,,,,3 +17967,742,459,172,48,27,,R,24,0,25,,,,,,,80 +17968,742,341,170,34,10,,R,25,0,23,,,,,,,24 +17969,742,441,172,38,29,,R,26,0,12,,,,,,,8 +17970,742,453,170,46,15,,R,27,0,7,,,,,,,64 +17971,742,460,172,40,26,,R,28,0,7,,,,,,,80 +17972,742,481,172,30,17,,R,29,0,5,,,,,,,3 +17973,742,487,167,62,28,,R,30,0,0,,,,,,,6 +17974,742,482,99,24,0,,W,31,0,0,,,,,,,54 +17975,743,475,172,7,3,1,1,1,9,15,18:12.4,8292400,,,,,1 +17976,743,476,6,3,5,2,2,2,6,15,21.4,8313800,,,,,1 +17977,743,403,6,4,1,3,3,3,4,15,22.5,8314900,,,,,1 +17978,743,373,172,14,8,4,4,4,3,15,+1:17.1,8369500,,,,,1 +17979,743,341,170,18,10,5,5,5,2,15,+1:53.1,8405500,,,,,1 +17980,743,360,170,2,12,6,6,6,1,15,+2:41.4,8453800,,,,,1 +17981,743,364,95,9,7,7,7,7,0,15,+3:23.1,8495500,,,,,1 +17982,743,386,6,5,14,8,8,8,0,15,+5:23.1,8615500,,,,,1 +17983,743,453,170,28,18,9,9,9,0,15,+5:23.7,8616100,,,,,1 +17984,743,456,170,19,15,10,10,10,0,15,+12:11.5,9023900,,,,,1 +17985,743,408,172,33,22,11,11,11,0,14,,,,,,,11 +17986,743,437,170,30,24,12,12,12,0,14,,,,,,,11 +17987,743,478,95,11,11,13,13,13,0,14,,,,,,,11 +17988,743,430,95,31,17,14,14,14,0,14,,,,,,,11 +17989,743,459,172,37,20,15,15,15,0,13,,,,,,,12 +17990,743,460,172,27,25,16,16,16,0,13,,,,,,,12 +17991,743,435,6,6,13,,R,17,0,13,,,,,,,3 +17992,743,427,167,20,21,,R,18,0,12,,,,,,,5 +17993,743,428,170,38,26,,N,19,0,11,,,,,,,62 +17994,743,385,167,32,19,,R,20,0,10,,,,,,,5 +17995,743,479,66,16,9,,R,21,0,6,,,,,,,5 +17996,743,347,95,8,4,,R,22,0,5,,,,,,,5 +17997,743,455,172,26,23,,R,23,0,3,,,,,,,64 +17998,743,289,66,17,16,,R,24,0,1,,,,,,,3 +17999,743,404,172,15,6,,R,25,0,1,,,,,,,42 +18000,743,356,170,1,2,,R,26,0,0,,,,,,,3 +18001,743,431,95,10,0,,W,27,0,0,,,,,,,54 +18002,743,418,170,12,0,,W,28,0,0,,,,,,,54 +18003,743,480,172,25,0,,W,29,0,0,,,,,,,54 +18004,743,488,103,29,0,,W,30,0,0,,,,,,,54 +18005,743,489,170,34,0,,W,31,0,0,,,,,,,54 +18006,743,490,170,35,0,,W,32,0,0,,,,,,,54 +18007,743,436,170,39,0,,W,33,0,0,,,,,,,54 +18008,744,403,6,2,4,1,1,1,9,43,03:13.0,7393000,,,,,1 +18009,744,364,95,46,12,2,2,2,6,43,31.2,7424200,,,,,1 +18010,744,360,170,12,14,3,3,3,4,43,+2:28.4,7541400,,,,,1 +18011,744,453,170,60,16,4,4,4,3,43,+2:40.4,7553400,,,,,1 +18012,744,479,66,26,13,5,5,5,2,43,+2:40.5,7553500,,,,,1 +18013,744,456,170,40,18,6,6,6,1,42,,,,,,,11 +18014,744,430,95,74,15,7,7,7,0,41,,,,,,,12 +18015,744,385,167,62,21,8,8,8,0,41,,,,,,,12 +18016,744,427,167,48,22,9,9,9,0,41,,,,,,,12 +18017,744,441,172,16,27,10,10,10,0,40,,,,,,,13 +18018,744,481,172,20,23,11,11,11,0,39,,,,,,,14 +18019,744,489,167,58,29,12,12,12,0,38,,,,,,,15 +18020,744,475,172,28,11,,R,13,0,36,,,,,,,67 +18021,744,386,6,6,3,,R,14,0,23,,,,,,,5 +18022,744,447,173,72,30,,R,15,0,19,,,,,,,5 +18023,744,347,95,44,8,,R,16,0,14,,,,,,,22 +18024,744,454,6,8,2,,R,17,0,13,,,,,,,69 +18025,744,394,6,32,6,,R,18,0,13,,,,,,,5 +18026,744,425,175,50,20,,R,19,0,13,,,,,,,5 +18027,744,418,172,22,17,,R,20,0,11,,,,,,,22 +18028,744,289,66,24,5,,R,21,0,10,,,,,,,5 +18029,744,356,170,10,10,,R,22,0,8,,,,,,,25 +18030,744,484,101,14,31,,R,23,0,6,,,,,,,5 +18031,744,404,172,38,9,,R,24,0,5,,,,,,,83 +18032,744,486,170,30,26,,R,25,0,5,,,,,,,5 +18033,744,341,170,42,19,,R,26,0,2,,,,,,,3 +18034,744,476,6,4,1,,R,27,0,1,,,,,,,3 +18035,744,373,172,36,7,,R,28,0,1,,,,,,,3 +18036,744,424,175,54,24,,R,29,0,1,,,,,,,5 +18037,744,455,172,56,28,,R,30,0,1,,,,,,,5 +18038,744,444,174,52,32,,R,31,0,1,,,,,,,5 +18039,744,460,172,18,25,,R,32,0,0,,,,,,,3 +18040,744,429,99,68,0,,F,33,0,0,,,,,,,81 +18041,744,431,95,46,0,,W,34,0,0,,,,,,,54 +18042,744,487,167,58,0,,W,35,0,0,,,,,,,54 +18043,744,491,170,34,0,,W,36,0,0,,,,,,,54 +18044,744,467,172,64,0,,W,37,0,0,,,,,,,54 +18045,744,492,170,66,0,,W,38,0,0,,,,,,,54 +18046,744,480,172,70,0,,W,39,0,0,,,,,,,54 +18047,745,404,172,15,8,1,1,1,9,100,13:45.8,8025800,,,,,1 +18048,745,364,95,12,7,2,2,2,6,100,4.3,8030100,,,,,1 +18049,745,479,66,5,5,3,3,3,4,100,49,8074800,,,,,1 +18050,745,360,170,2,4,4,4,4,3,100,58,8083800,,,,,1 +18051,745,289,66,4,2,5,5,5,2,99,,,,,,,11 +18052,745,347,95,11,10,6,6,6,1,98,,,,,,,12 +18053,745,373,172,14,6,7,7,7,0,96,,,,,,,14 +18054,745,468,170,6,16,8,8,8,0,96,,,,,,,14 +18055,745,493,172,16,13,9,9,9,0,96,,,,,,,14 +18056,745,434,170,3,17,10,10,10,0,93,,,,,,,17 +18057,745,482,172,21,15,11,11,11,0,92,,,,,,,18 +18058,745,456,170,19,12,,R,12,0,96,,,,,,,5 +18059,745,440,172,17,18,,R,13,0,76,,,,,,,95 +18060,745,494,172,26,19,,R,14,0,76,,,,,,,121 +18061,745,475,172,7,3,,R,15,0,58,,,,,,,5 +18062,745,356,170,1,1,,R,16,0,57,,,,,,,25 +18063,745,418,172,22,11,,R,17,0,23,,,,,,,6 +18064,745,433,170,60,14,,R,18,0,14,,,,,,,3 +18065,745,341,170,18,9,,R,19,0,0,,,,,,,5 +18066,745,495,172,23,0,,W,20,0,0,,,,,,,54 +18067,746,360,170,16,13,1,1,1,8,80,17:49.5,8269500,,,,,1 +18068,746,477,6,24,7,2,2,2,6,80,26.3,8295800,,,,,1 +18069,746,427,170,38,8,3,3,3,0,80,36.9,8306400,,,,,1 +18070,746,496,167,6,12,4,4,4,3,80,53.3,8322800,,,,,1 +18071,746,476,6,30,5,5,5,5,2,79,,,,,,,11 +18072,746,404,32,20,2,6,6,6,1,79,,,,,,,11 +18073,746,347,66,40,4,7,7,7,0,79,,,,,,,11 +18074,746,403,6,26,6,8,8,8,0,77,,,,,,,13 +18075,746,497,32,46,15,9,9,9,0,77,,,,,,,13 +18076,746,498,6,32,11,10,10,10,0,77,,,,,,,13 +18077,746,499,167,4,17,11,11,11,0,76,,,,,,,14 +18078,746,418,104,2,16,12,12,12,0,76,,,,,,,14 +18079,746,500,105,14,19,13,13,13,0,72,,,,,,,18 +18080,746,439,105,10,20,14,14,14,0,70,,,,,,,88 +18081,746,501,170,34,9,,R,15,0,63,,,,,,,48 +18082,746,356,170,18,10,,R,16,0,42,,,,,,,6 +18083,746,475,170,36,1,,R,17,0,40,,,,,,,22 +18084,746,289,66,42,3,,R,18,0,37,,,,,,,25 +18085,746,502,32,22,14,,R,19,0,24,,,,,,,68 +18086,746,503,105,44,21,,R,20,0,23,,,,,,,68 +18087,746,504,105,12,22,,R,21,0,16,,,,,,,68 +18088,746,483,105,8,18,,R,22,0,11,,,,,,,25 +18089,747,475,32,28,1,1,1,1,8,100,53:45.5,10425500,,,,,1 +18090,747,360,170,10,11,2,2,2,6,100,52.1,10477600,,,,,1 +18091,747,403,6,36,10,3,3,3,4,100,+1:01.9,10487400,,,,,1 +18092,747,479,170,18,3,4,4,4,3,99,,,,,,,11 +18093,747,347,66,2,5,5,5,5,2,83,,,,,,,50 +18094,747,386,6,34,9,6,6,6,1,70,,,,,,,123 +18095,747,289,66,6,6,7,7,7,0,66,,,,,,,20 +18096,747,476,6,38,8,8,8,8,0,61,,,,,,,8 +18097,747,404,32,22,7,9,9,9,0,56,,,,,,,122 +18098,747,364,66,4,14,,R,10,0,44,,,,,,,22 +18099,747,356,170,8,2,,D,11,0,40,,,,,,,2 +18100,747,456,170,14,12,,R,12,0,29,,,,,,,25 +18101,747,502,32,24,13,,R,13,0,23,,,,,,,83 +18102,747,505,170,16,4,,R,14,0,17,,,,,,,6 +18103,747,341,32,26,15,,R,15,0,17,,,,,,,7 +18104,747,427,167,44,16,,R,16,0,4,,,,,,,6 +18105,747,506,170,12,0,,F,17,0,0,,,,,,,81 +18106,747,477,6,32,0,,F,18,0,0,,,,,,,81 +18107,747,484,101,20,0,,F,19,0,0,,,,,,,81 +18108,747,418,167,40,0,,F,20,0,0,,,,,,,81 +18109,747,507,106,46,0,,F,21,0,0,,,,,,,81 +18110,747,483,171,30,0,,F,22,0,0,,,,,,,81 +18111,747,508,106,48,0,,F,23,0,0,,,,,,,81 +18112,747,437,167,42,0,,F,24,0,0,,,,,,,81 +18113,748,509,107,4,2,1,1,1,8,200,36:11.4,12971360,,,,,1 +18114,748,449,107,1,3,2,2,2,6,200,+0:12.75,12984110,,,,,1 +18115,748,510,108,99,26,3,3,3,4,200,+3:07.30,13158660,,,,,1 +18116,748,511,109,7,8,4,4,4,3,200,+3:07.98,13159340,,,,,1 +18117,748,512,110,3,17,5,5,5,2,200,+3:11.35,13162710,,,,,1 +18118,748,513,111,22,7,6,6,6,1,200,+4:10.61,13221970,,,,,1 +18119,748,494,107,98,12,7,7,7,0,200,+4:25.59,13236950,,,,,1 +18120,748,514,112,44,25,8,8,8,0,200,+5:17.48,13288840,,,,,1 +18121,748,515,111,18,28,9,9,9,0,200,+8:19.91,13471270,,,,,1 +18122,748,516,113,38,14,10,10,10,0,200,+8:40.28,13491640,,,,,1 +18123,748,517,108,27,22,11,11,11,0,200,+11:10.58,13641940,,,,,1 +18124,748,518,114,17,27,12,12,12,0,200,+11:17.20,13648560,,,,,1 +18125,748,519,114,39,31,13,13,13,0,200,+12:10.71,13702070,,,,,1 +18126,748,520,113,48,24,14,14,14,0,196,,,,,,,14 +18127,748,521,107,65,9,15,15,15,0,196,,,,,,,14 +18128,748,522,112,14,21,16,16,16,0,194,,,,,,,16 +18129,748,523,113,26,19,17,17,17,0,191,,,,,,,8 +18130,748,524,115,56,23,18,18,18,0,185,,,,,,,5 +18131,748,525,108,10,10,19,19,19,0,152,,,,,,,69 +18132,748,526,107,28,6,20,20,20,0,134,,,,,,,109 +18133,748,527,116,6,1,21,21,21,0,132,,,,,,,121 +18134,748,528,113,73,11,22,22,22,0,129,,,,,,,121 +18135,748,529,107,2,18,23,23,23,0,125,,,,,,,5 +18136,748,530,108,32,15,24,24,24,0,103,,,,,,,3 +18137,748,531,113,5,16,25,25,25,0,90,,,,,,,8 +18138,748,532,113,46,29,26,26,26,0,90,,,,,,,3 +18139,748,533,108,8,13,27,27,27,0,77,,,,,,,5 +18140,748,534,113,37,20,28,28,28,0,74,,,,,,,23 +18141,748,535,108,16,32,29,29,29,0,60,,,,,,,23 +18142,748,536,107,9,5,30,30,30,0,47,,,,,,,5 +18143,748,537,107,97,4,31,31,31,0,42,,,,,,,23 +18144,748,538,116,76,30,32,32,32,0,34,,,,,,,8 +18145,748,539,113,23,33,33,33,33,0,11,,,,,,,121 +18146,749,356,170,11,2,1,1,1,8,75,01:47.2,7307200,,,,,1 +18147,749,404,32,4,3,2,2,2,6,75,24,7331200,,,,,1 +18148,749,289,66,16,5,3,3,3,4,75,56.6,7363800,,,,,1 +18149,749,475,32,7,1,4,4,4,3,75,57.7,7364900,,,,,1 +18150,749,476,6,2,15,5,5,5,2,74,,,,,,,11 +18151,749,386,6,3,12,6,6,6,1,74,,,,,,,11 +18152,749,481,170,10,14,7,7,7,0,78,,,,,,,15 +18153,749,430,170,20,18,8,8,8,0,69,,,,,,,16 +18154,749,502,32,5,8,,R,9,0,57,,,,,,,7 +18155,749,347,66,14,4,,R,10,0,54,,,,,,,5 +18156,749,403,6,1,13,,R,11,0,54,,,,,,,5 +18157,749,373,32,6,11,,R,12,0,42,,,,,,,7 +18158,749,427,167,18,17,,R,13,0,39,,,,,,,6 +18159,749,364,66,15,6,,R,14,0,11,,,,,,,3 +18160,749,505,170,8,7,,R,15,0,9,,,,,,,5 +18161,749,360,170,12,9,,R,16,0,8,,,,,,,7 +18162,749,479,170,9,10,,R,17,0,4,,,,,,,6 +18163,749,456,117,17,0,,W,18,0,0,,,,,,,54 +18164,749,418,167,19,0,,W,19,0,0,,,,,,,54 +18165,749,508,106,21,0,,W,20,0,0,,,,,,,54 +18166,749,507,106,22,0,,W,21,0,0,,,,,,,54 +18167,750,356,170,2,1,1,1,1,8,36,21:37.3,8497300,,,,,1 +18168,750,360,170,4,14,2,2,2,6,36,+1:03.3,8560600,,,,,1 +18169,750,482,170,34,5,3,3,3,4,35,,,,,,,11 +18170,750,403,6,24,4,4,4,4,3,35,,,,,,,11 +18171,750,373,32,18,10,5,5,5,2,34,,,,,,,12 +18172,750,376,170,32,15,6,6,6,1,28,,,,,,,18 +18173,750,289,66,10,6,,R,7,0,35,,,,,,,5 +18174,750,502,32,16,17,,R,8,0,24,,,,,,,3 +18175,750,435,6,22,13,,R,9,0,23,,,,,,,7 +18176,750,476,6,26,11,,R,10,0,22,,,,,,,7 +18177,750,505,170,36,9,,R,11,0,19,,,,,,,3 +18178,750,507,106,30,18,,R,12,0,16,,,,,,,5 +18179,750,347,66,6,7,,R,13,0,14,,,,,,,5 +18180,750,404,32,14,8,,R,14,0,13,,,,,,,3 +18181,750,364,66,8,12,,R,15,0,4,,,,,,,5 +18182,750,479,170,38,2,,R,16,0,2,,,,,,,6 +18183,750,508,106,28,16,,R,17,0,1,,,,,,,5 +18184,750,475,32,12,3,,W,18,0,0,,,,,,,3 +18185,750,540,32,20,19,,W,19,0,0,,,,,,,3 +18186,751,356,170,16,1,1,1,1,8,50,57:24.9,7044900,,,,,1 +18187,751,482,170,44,9,2,2,2,6,50,48.3,7093200,,,,,1 +18188,751,360,170,18,7,3,3,3,4,50,51.9,7096800,,,,,1 +18189,751,481,170,46,12,4,4,4,3,49,,,,,,,11 +18190,751,373,32,24,10,5,5,5,2,49,,,,,,,11 +18191,751,541,32,22,14,6,6,6,1,49,,,,,,,11 +18192,751,404,32,20,4,7,7,7,0,43,,,,,,,17 +18193,751,506,170,48,15,8,8,8,0,40,,,,,,,5 +18194,751,418,167,40,17,9,9,9,0,37,,,,,,,53 +18195,751,437,167,42,22,10,10,10,0,36,,,,,,,111 +18196,751,476,6,4,5,11,11,11,0,30,,,,,,,7 +18197,751,403,6,2,2,12,12,12,0,29,,,,,,,7 +18198,751,347,66,8,8,,R,13,0,22,,,,,,,5 +18199,751,376,170,36,15,,R,14,0,18,,,,,,,7 +18200,751,364,66,10,6,,R,15,0,17,,,,,,,5 +18201,751,500,171,30,19,,R,16,0,16,,,,,,,7 +18202,751,435,6,6,11,,R,17,0,14,,,,,,,7 +18203,751,479,118,14,13,,R,18,0,7,,,,,,,76 +18204,751,289,66,12,3,,R,19,0,0,,,,,,,3 +18205,751,427,167,38,18,,R,20,0,0,,,,,,,3 +18206,751,386,106,28,20,,W,21,0,0,,,,,,,5 +18207,751,542,32,34,21,,W,22,0,0,,,,,,,5 +18208,751,507,106,26,23,,W,23,0,0,,,,,,,5 +18209,752,356,170,1,1,1,1,1,8,77,04:24.3,7464300,,,,,1 +18210,752,341,32,9,11,2,2,2,6,77,49.6,7513900,,,,,1 +18211,752,404,32,7,5,3,3,3,4,77,+1:29.6,7553900,,,,,1 +18212,752,360,170,2,3,4,4,4,3,76,,,,,,,11 +18213,752,479,170,12,9,5,5,5,2,76,,,,,,,11 +18214,752,476,6,11,7,6,6,6,1,75,,,,,,,12 +18215,752,403,6,10,10,7,7,7,0,75,,,,,,,12 +18216,752,481,170,15,16,8,8,8,0,74,,,,,,,13 +18217,752,482,170,14,12,9,9,9,0,74,,,,,,,13 +18218,752,364,66,5,6,10,10,10,0,74,,,,,,,13 +18219,752,427,117,19,21,11,11,11,0,72,,,,,,,15 +18220,752,542,32,26,24,12,12,12,0,72,,,,,,,15 +18221,752,484,101,25,18,13,13,13,0,72,,,,,,,15 +18222,752,418,167,16,14,14,14,14,0,71,,,,,,,16 +18223,752,500,171,21,25,15,15,15,0,70,,,,,,,17 +18224,752,373,32,8,8,16,16,16,0,70,,,,,,,17 +18225,752,289,66,4,2,,R,17,0,71,,,,,,,20 +18226,752,376,170,24,17,,R,18,0,62,,,,,,,10 +18227,752,347,66,6,4,,R,19,0,59,,,,,,,22 +18228,752,507,170,3,19,,R,20,0,58,,,,,,,25 +18229,752,437,167,17,20,,R,21,0,58,,,,,,,5 +18230,752,456,117,18,13,,R,22,0,46,,,,,,,38 +18231,752,486,170,23,15,,R,23,0,46,,,,,,,48 +18232,752,465,167,22,22,,R,24,0,12,,,,,,,25 +18233,752,508,170,3,0,,W,25,0,0,,,,,,,54 +18234,753,356,170,2,3,1,1,1,8,55,19:00.0,8340030,,,,,1 +18235,753,360,170,4,6,2,2,2,6,55,57.97,8398000,,,,,1 +18236,753,373,32,14,8,3,3,3,4,55,+1:53.23,8453260,,,,,1 +18237,753,476,6,28,9,4,4,4,3,55,+1:58.81,8458840,,,,,1 +18238,753,479,170,6,12,5,5,5,2,49,,,,,,,16 +18239,753,404,32,16,7,6,6,6,1,48,,,,,,,17 +18240,753,482,170,8,14,7,7,7,0,46,,,,,,,19 +18241,753,475,32,12,4,,D,8,0,51,,,,,,,2 +18242,753,432,167,32,15,,R,9,0,38,,,,,,,3 +18243,753,341,32,18,1,,R,10,0,37,,,,,,,21 +18244,753,403,6,26,10,,R,11,0,30,,,,,,,3 +18245,753,364,66,24,2,,R,12,0,25,,,,,,,5 +18246,753,418,167,30,11,,R,13,0,21,,,,,,,6 +18247,753,289,66,22,5,,R,14,0,9,,,,,,,6 +18248,753,347,66,20,13,,R,15,0,6,,,,,,,5 +18249,754,403,6,20,1,1,1,1,8,50,21:09.2,8469200,,,,,1 +18250,754,386,6,18,2,2,2,2,6,50,+2:27.6,8616800,,,,,1 +18251,754,435,6,16,3,3,3,3,4,49,,,,,,,11 +18252,754,543,171,2,4,4,4,4,3,48,,,,,,,12 +18253,754,476,6,22,6,5,5,5,2,48,,,,,,,12 +18254,754,478,95,26,10,6,6,6,1,47,,,,,,,13 +18255,754,431,95,24,12,7,7,7,0,47,,,,,,,13 +18256,754,544,170,12,15,8,8,8,0,45,,,,,,,15 +18257,754,455,170,10,13,9,9,9,0,44,,,,,,,16 +18258,754,545,104,28,14,10,10,10,0,41,,,,,,,19 +18259,754,484,101,6,7,,R,11,0,41,,,,,,,6 +18260,754,491,167,34,9,,R,12,0,32,,,,,,,6 +18261,754,500,171,4,8,,R,13,0,27,,,,,,,5 +18262,754,483,167,36,5,,R,14,0,26,,,,,,,5 +18263,754,398,170,30,16,,R,15,0,23,,,,,,,5 +18264,754,546,170,8,11,,R,16,0,0,,,,,,,3 +18265,754,547,105,14,0,,W,17,0,0,,,,,,,69 +18266,755,475,32,5,1,1,1,1,8,75,28:52.2,8932200,,,,,1 +18267,755,404,32,10,7,2,2,2,6,75,38,8970200,,,,,1 +18268,755,360,170,3,10,3,3,3,4,75,52,8984200,,,,,1 +18269,755,356,170,2,2,4,4,4,3,74,,,,,,,11 +18270,755,347,66,15,4,5,5,5,2,74,,,,,,,11 +18271,755,403,170,9,13,6,6,6,1,74,,,,,,,11 +18272,755,440,32,24,12,7,7,7,0,73,,,,,,,11 +18273,755,456,170,14,15,8,8,8,0,73,,,,,,,12 +18274,755,476,167,26,16,9,9,9,0,72,,,,,,,13 +18275,755,507,106,23,18,10,10,10,0,70,,,,,,,15 +18276,755,353,171,25,20,11,11,11,0,69,,,,,,,16 +18277,755,482,170,7,8,12,12,12,0,69,,,,,,,16 +18278,755,548,105,20,22,13,13,13,0,68,,,,,,,17 +18279,755,481,170,8,14,14,14,14,0,68,,,,,,,17 +18280,755,427,167,18,19,15,15,15,0,66,,,,,,,19 +18281,755,373,32,12,5,16,16,16,0,61,,,,,,,111 +18282,755,289,66,17,11,,R,17,0,34,,,,,,,6 +18283,755,437,167,19,23,,R,18,0,29,,,,,,,80 +18284,755,484,167,21,17,,R,19,0,20,,,,,,,5 +18285,755,364,66,16,3,,R,20,0,18,,,,,,,5 +18286,755,541,170,4,21,,R,21,0,11,,,,,,,7 +18287,755,479,170,6,9,,R,22,0,6,,,,,,,20 +18288,755,341,32,11,6,,R,23,0,3,,,,,,,3 +18289,756,356,170,24,3,1,1,1,9,100,55:51.3,10551300,,,,,1 +18290,756,479,6,50,4,2,2,2,6,100,20.4,10571700,,,,,1 +18291,756,427,170,32,6,3,3,3,4,98,,,,,,,12 +18292,756,403,6,48,5,4,4,4,3,97,,,,,,,13 +18293,756,360,170,22,13,5,5,5,2,96,,,,,,,14 +18294,756,456,167,38,8,6,6,6,0,83,,,,,,,50 +18295,756,475,170,30,1,,R,7,0,81,,,,,,,7 +18296,756,541,66,20,10,,R,8,0,64,,,,,,,20 +18297,756,501,66,16,9,,R,9,0,48,,,,,,,3 +18298,756,347,66,18,7,,R,10,0,44,,,,,,,23 +18299,756,554,6,46,2,,R,11,0,24,,,,,,,5 +18300,756,289,32,40,14,,R,12,0,21,,,,,,,42 +18301,756,418,170,26,11,,R,13,0,6,,,,,,,6 +18302,756,476,95,6,12,,R,14,0,1,,,,,,,4 +18303,756,477,6,52,15,,R,15,0,1,,,,,,,4 +18304,756,506,32,44,16,,R,16,0,1,,,,,,,4 +18305,756,549,170,34,0,,F,17,0,0,,,,,,,81 +18306,756,483,105,54,0,,F,18,0,0,,,,,,,81 +18307,756,550,170,12,0,,F,19,0,0,,,,,,,81 +18308,756,376,170,10,0,,F,20,0,0,,,,,,,81 +18309,756,551,95,4,0,,F,21,0,0,,,,,,,81 +18310,756,353,32,42,0,,F,22,0,0,,,,,,,81 +18311,756,552,170,14,0,,F,23,0,0,,,,,,,81 +18312,756,553,105,56,0,,F,24,0,0,,,,,,,81 +18313,757,449,107,5,6,1,1,1,8,200,40:49.2,13249200,,,,,1 +18314,757,509,107,16,3,2,2,2,6,200,+0:23.28,13272480,,,,,1 +18315,757,512,110,3,1,3,3,3,5,200,+0:50.64,13299840,,,,,1 +18316,757,529,108,1,15,4,4,4,3,200,+1:47.09,13356290,,,,,1 +18317,757,510,108,99,16,5,5,5,2,200,+2:06.44,13375640,,,,,1 +18318,757,533,108,33,11,6,6,6,0,200,+3:16.98,13446180,,,,,1 +18319,757,518,113,37,12,7,7,7,0,200,+4:09.92,13499120,,,,,1 +18320,757,513,113,19,8,8,8,8,0,200,+4:10.53,13499730,,,,,1 +18321,757,555,113,45,27,9,9,9,0,200,+4:11.04,13500240,,,,,1 +18322,757,531,114,10,17,10,10,10,0,200,+4:14.48,13503680,,,,,1 +18323,757,520,114,88,9,11,11,11,0,200,+5:42.48,13591680,,,,,1 +18324,757,514,119,74,7,12,12,12,0,200,+6:09.73,13618930,,,,,1 +18325,757,538,120,89,23,13,13,13,0,200,+6:40.40,13649600,,,,,1 +18326,757,556,113,66,13,14,14,14,0,200,+6:41.54,13650740,,,,,1 +18327,757,557,113,71,21,15,15,15,0,200,+8:19.86,13749060,,,,,1 +18328,757,535,113,58,33,16,16,16,0,200,+11:41.69,13950890,,,,,1 +18329,757,527,114,44,2,,R,17,0,182,,,,,,,20 +18330,757,558,114,57,28,,R,18,0,163,,,,,,,5 +18331,757,559,107,64,18,,R,19,0,162,,,,,,,3 +18332,757,537,107,73,4,,R,20,0,150,,,,,,,42 +18333,757,560,114,53,30,,R,21,0,147,,,,,,,121 +18334,757,528,113,15,25,,R,22,0,136,,,,,,,121 +18335,757,561,121,49,32,,R,23,0,115,,,,,,,3 +18336,757,511,109,9,10,,R,24,0,112,,,,,,,22 +18337,757,516,113,65,24,,R,25,0,109,,,,,,,5 +18338,757,522,113,48,5,,R,26,0,85,,,,,,,121 +18339,757,562,115,24,14,,R,27,0,47,,,,,,,95 +18340,757,563,113,47,29,,R,28,0,45,,,,,,,3 +18341,757,564,113,7,19,,R,29,0,45,,,,,,,3 +18342,757,565,122,77,31,,R,30,0,45,,,,,,,3 +18343,757,517,113,87,26,,R,31,0,45,,,,,,,3 +18344,757,536,110,8,22,,R,32,0,34,,,,,,,3 +18345,757,525,108,6,20,,R,33,0,1,,,,,,,5 +18346,758,347,66,7,1,1,1,1,8,75,05:26.8,7526800,,,,,1 +18347,758,356,170,8,2,2,2,2,6,75,14.2,7541000,,,,,1 +18348,758,418,170,9,7,3,3,3,4,75,+1:23.0,7609800,,,,,1 +18349,758,404,32,12,9,4,4,4,3,74,,,,,,,11 +18350,758,554,6,1,4,5,5,5,2,74,,,,,,,11 +18351,758,403,6,3,12,6,6,6,0,73,,,,,,,12 +18352,758,289,32,14,5,7,7,7,0,73,,,,,,,12 +18353,758,427,170,10,11,8,8,8,0,73,,,,,,,12 +18354,758,477,6,16,15,9,9,9,0,71,,,,,,,14 +18355,758,430,95,15,14,10,10,10,0,68,,,,,,,17 +18356,758,475,170,11,3,,R,11,1,62,,,,,,,6 +18357,758,501,66,6,6,,R,12,0,46,,,,,,,6 +18358,758,479,6,2,8,,R,13,0,42,,,,,,,44 +18359,758,566,117,5,10,,R,14,0,25,,,,,,,5 +18360,758,456,117,4,13,,R,15,0,3,,,,,,,5 +18361,759,479,6,24,1,1,1,1,8,50,01:26.5,7286500,,,,,1 +18362,759,403,6,26,3,2,2,2,6,50,27.5,7314000,,,,,1 +18363,759,356,170,8,2,3,3,3,4,50,+1:37.7,7384200,,,,,1 +18364,759,482,6,22,11,4,4,4,3,50,+1:47.5,7394000,,,,,1 +18365,759,360,170,12,10,5,5,5,2,50,+1:47.7,7394200,,,,,1 +18366,759,541,66,44,13,6,6,6,0,50,+2:05.7,7412200,,,,,1 +18367,759,501,66,6,9,7,7,7,0,47,,,,,,,13 +18368,759,483,105,40,21,8,8,8,0,41,,,,,,,19 +18369,759,430,105,42,20,9,9,9,0,40,,,,,,,88 +18370,759,567,105,38,18,10,10,10,0,40,,,,,,,88 +18371,759,427,170,14,8,11,11,11,0,36,,,,,,,111 +18372,759,475,66,2,4,,D,12,1,42,,,,,,,2 +18373,759,554,6,30,5,,R,13,0,31,,,,,,,5 +18374,759,456,167,16,16,,R,14,0,20,,,,,,,5 +18375,759,364,6,28,12,,R,15,0,19,,,,,,,21 +18376,759,404,32,34,15,,R,16,0,14,,,,,,,36 +18377,759,437,167,18,19,,R,17,0,13,,,,,,,5 +18378,759,418,170,10,7,,R,18,0,8,,,,,,,68 +18379,759,289,32,32,14,,R,19,0,7,,,,,,,21 +18380,759,462,167,20,17,,R,20,0,7,,,,,,,44 +18381,759,347,66,4,6,,R,21,0,6,,,,,,,5 +18382,759,568,105,36,0,,W,22,0,0,,,,,,,54 +18383,760,356,170,12,1,1,1,1,8,75,30:11.6,9011600,,,,,1 +18384,760,475,66,6,7,2,2,2,6.5,75,22.2,9033800,,,,,1 +18385,760,360,170,16,8,3,3,3,4.5,75,22.4,9034000,,,,,1 +18386,760,501,66,8,3,4,4,4,3,74,,,,,,,11 +18387,760,427,170,18,4,5,5,5,2,74,,,,,,,11 +18388,760,456,117,2,2,6,6,6,0,74,,,,,,,11 +18389,760,418,170,14,5,7,7,7,0,73,,,,,,,12 +18390,760,502,32,30,12,8,8,8,0,71,,,,,,,14 +18391,760,289,32,28,9,9,9,9,0,70,,,,,,,15 +18392,760,505,169,48,16,10,10,10,0,70,,,,,,,15 +18393,760,481,170,58,21,11,11,11,0,69,,,,,,,16 +18394,760,569,170,52,23,12,12,12,0,69,,,,,,,16 +18395,760,549,169,46,18,13,13,13,0,69,,,,,,,16 +18396,760,566,117,4,6,,R,14,0,69,,,,,,,80 +18397,760,567,105,40,20,,R,15,0,57,,,,,,,3 +18398,760,541,66,42,11,,R,16,0,53,,,,,,,20 +18399,760,486,170,38,15,,R,17,0,39,,,,,,,6 +18400,760,347,66,10,10,,R,18,0,37,,,,,,,23 +18401,760,437,167,22,13,,R,19,0,31,,,,,,,7 +18402,760,478,167,24,19,,R,20,0,21,,,,,,,6 +18403,760,542,32,64,22,,R,21,0,19,,,,,,,25 +18404,760,484,101,36,14,,R,22,0,18,,,,,,,7 +18405,760,540,170,50,24,,R,23,0,17,,,,,,,7 +18406,760,479,118,20,17,,R,24,0,13,,,,,,,80 +18407,760,465,170,54,0,,F,25,0,0,,,,,,,81 +18408,760,570,170,56,0,,F,26,0,0,,,,,,,81 +18409,760,387,123,60,0,,F,27,0,0,,,,,,,81 +18410,760,571,32,62,0,,F,28,0,0,,,,,,,81 +18411,760,401,170,44,0,,F,29,0,0,,,,,,,81 +18412,760,441,170,66,0,,F,30,0,0,,,,,,,81 +18413,761,479,6,4,1,1,1,1,9,60,09:31.6,7771600,,,,,1 +18414,761,364,6,6,3,2,2,2,6,60,2.9,7774500,,,,,1 +18415,761,403,6,5,6,3,3,3,4,60,+1:04.8,7836400,,,,,1 +18416,761,427,170,8,12,4,4,4,3,59,,,,,,,11 +18417,761,347,66,9,7,5,5,5,2,58,,,,,,,12 +18418,761,437,167,18,15,6,6,6,0,56,,,,,,,14 +18419,761,501,66,10,8,7,7,7,0,49,,,,,,,45 +18420,761,360,170,2,9,,R,8,0,36,,,,,,,7 +18421,761,478,66,11,11,,R,9,0,36,,,,,,,3 +18422,761,418,170,3,5,,R,10,0,23,,,,,,,5 +18423,761,356,170,1,4,,R,11,0,15,,,,,,,7 +18424,761,289,32,16,10,,R,12,0,10,,,,,,,6 +18425,761,404,32,15,13,,R,13,0,7,,,,,,,24 +18426,761,477,6,17,14,,R,14,0,2,,,,,,,8 +18427,761,475,170,7,2,,R,15,0,1,,,,,,,7 +18428,762,475,170,4,1,1,1,1,9,62,11:55.4,7915410,,,,,1 +18429,762,418,170,2,3,2,2,2,6,61,,,,,,,11 +18430,762,364,6,16,6,3,3,3,4,61,,,,,,,11 +18431,762,427,170,5,4,4,4,4,3,60,,,,,,,12 +18432,762,501,66,6,9,5,5,5,2,59,,,,,,,13 +18433,762,456,117,10,12,6,6,6,0,59,,,,,,,13 +18434,762,541,66,8,11,7,7,7,0,59,,,,,,,13 +18435,762,566,117,9,13,8,8,8,0,58,,,,,,,14 +18436,762,479,6,14,10,9,9,9,0,57,,,,,,,15 +18437,762,432,167,18,14,10,10,10,0,56,,,,,,,16 +18438,762,360,170,3,8,,R,11,0,38,,,,,,,7 +18439,762,356,170,1,2,,R,12,0,23,,,,,,,7 +18440,762,347,66,7,5,,R,13,0,10,,,,,,,5 +18441,762,403,6,15,7,,R,14,0,5,,,,,,,3 +18442,762,289,32,11,15,,R,15,0,5,,,,,,,3 +18443,762,404,32,12,16,,R,16,0,3,,,,,,,6 +18444,763,475,170,14,1,1,1,1,8,72,04:05.4,7445400,,,,,1 +18445,763,403,6,32,5,2,2,2,7,72,46.7,7492100,,,,,1 +18446,763,356,170,12,3,3,3,3,4,72,+1:12.5,7517900,,,,,1 +18447,763,364,6,36,4,4,4,4,3,72,+1:19.6,7525000,,,,,1 +18448,763,477,6,34,8,5,5,5,2,71,,,,,,,11 +18449,763,482,6,38,6,6,6,6,0,71,,,,,,,11 +18450,763,501,66,2,7,7,7,7,0,70,,,,,,,12 +18451,763,347,66,6,11,8,8,8,0,70,,,,,,,12 +18452,763,427,170,16,13,9,9,9,0,70,,,,,,,12 +18453,763,566,117,26,19,10,10,10,0,70,,,,,,,12 +18454,763,462,167,40,18,11,11,11,0,68,,,,,,,14 +18455,763,483,170,10,12,12,12,12,0,68,,,,,,,14 +18456,763,541,66,4,15,13,13,13,0,67,,,,,,,15 +18457,763,437,167,42,16,14,14,14,0,67,,,,,,,15 +18458,763,543,105,28,21,15,15,15,0,64,,,,,,,18 +18459,763,456,117,24,17,,R,16,0,44,,,,,,,5 +18460,763,360,170,8,9,,R,17,0,22,,,,,,,5 +18461,763,486,167,22,12,,R,18,0,18,,,,,,,5 +18462,763,404,32,20,14,,R,19,0,14,,,,,,,23 +18463,763,289,32,18,10,,R,20,0,1,,,,,,,8 +18464,763,479,6,30,2,,R,21,0,0,,,,,,,8 +18465,764,360,170,9,10,1,1,1,8,42,12:35.7,7955700,,,,,1 +18466,764,427,170,6,5,2,2,2,7,42,0.6,7956300,,,,,1 +18467,764,479,6,2,4,3,3,3,4,42,+3:00.9,8136600,,,,,1 +18468,764,356,170,8,2,4,4,4,3,42,+4:57.3,8253000,,,,,1 +18469,764,404,32,10,9,5,5,5,2,39,,,,,,,13 +18470,764,476,6,4,6,6,6,6,0,38,,,,,,,5 +18471,764,572,95,17,16,7,7,7,0,38,,,,,,,14 +18472,764,477,6,3,11,,R,8,0,23,,,,,,,7 +18473,764,456,167,12,11,,R,9,0,23,,,,,,,7 +18474,764,449,113,1,19,,R,10,0,20,,,,,,,8 +18475,764,573,168,14,14,,R,11,0,13,,,,,,,23 +18476,764,403,6,5,8,,R,12,0,8,,,,,,,8 +18477,764,567,124,15,17,,R,13,0,6,,,,,,,44 +18478,764,475,170,7,1,,R,14,0,5,,,,,,,7 +18479,764,501,170,19,3,,R,15,0,5,,,,,,,8 +18480,764,574,169,16,15,,R,16,0,5,,,,,,,25 +18481,764,502,32,11,12,,R,17,0,2,,,,,,,8 +18482,764,575,125,18,13,,R,18,0,0,,,,,,,3 +18483,764,576,105,22,0,,W,19,0,0,,,,,,,54 +18484,765,475,87,14,7,1,1,1,8,80,19:33.7,8373700,,,,,1 +18485,765,577,6,16,5,2,2,2,6,80,2.7,8376400,,,,,1 +18486,765,578,6,20,2,3,3,3,4,80,12.6,8386300,,,,,1 +18487,765,579,105,2,1,4,4,4,4,80,53,8426700,,,,,1 +18488,765,554,105,4,4,5,5,5,2,78,,,,,,,12 +18489,765,501,105,8,8,6,6,6,0,77,,,,,,,13 +18490,765,496,105,6,6,7,7,7,0,76,,,,,,,14 +18491,765,580,105,10,9,8,8,8,0,75,,,,,,,15 +18492,765,547,105,12,10,9,9,9,0,71,,,,,,,19 +18493,765,581,6,18,3,,R,10,0,0,,,,,,,86 +18494,766,427,87,20,5,1,1,1,8,100,52:27.9,10347900,,,,,1 +18495,766,577,6,34,10,2,2,2,6,100,20.2,10368100,,,,,1 +18496,766,581,6,36,9,3,3,3,4,100,38.8,10386700,,,,,1 +18497,766,356,87,16,3,4,4,4,3,97,,,,,,,13 +18498,766,501,66,8,12,5,5,5,2,91,,,,,,,19 +18499,766,477,32,24,13,6,6,6,0,87,,,,,,,53 +18500,766,476,6,40,11,,R,7,0,91,,,,,,,5 +18501,766,347,105,58,16,,R,8,0,71,,,,,,,3 +18502,766,289,32,26,15,,R,9,0,69,,,,,,,86 +18503,766,456,87,18,4,,R,10,0,56,,,,,,,6 +18504,766,578,6,38,6,,R,11,1,47,,,,,,,48 +18505,766,475,118,28,8,,R,12,0,38,,,,,,,5 +18506,766,554,66,6,2,,R,13,0,29,,,,,,,23 +18507,766,483,105,46,14,,R,14,0,28,,,,,,,5 +18508,766,479,118,30,1,,R,15,0,22,,,,,,,5 +18509,766,590,118,32,7,,R,16,0,11,,,,,,,25 +18510,766,541,87,22,0,,F,17,0,0,,,,,,,81 +18511,766,582,105,50,0,,F,18,0,0,,,,,,,81 +18512,766,583,105,48,0,,F,19,0,0,,,,,,,81 +18513,766,584,125,12,0,,F,20,0,0,,,,,,,81 +18514,766,585,125,14,0,,F,21,0,0,,,,,,,81 +18515,766,551,105,44,0,,F,22,0,0,,,,,,,81 +18516,766,553,105,56,0,,F,23,0,0,,,,,,,81 +18517,766,543,127,52,0,,F,24,0,0,,,,,,,81 +18518,766,586,127,54,0,,F,25,0,0,,,,,,,81 +18519,766,547,105,42,0,,F,26,0,0,,,,,,,81 +18520,766,541,66,10,0,,F,27,0,0,,,,,,,81 +18521,766,587,125,12,0,,F,28,0,0,,,,,,,81 +18522,766,588,105,50,0,,F,29,0,0,,,,,,,81 +18523,766,589,105,56,0,,F,30,0,0,,,,,,,81 +18524,766,580,105,4,0,,F,31,0,0,,,,,,,81 +18525,767,475,118,1,2,1,1,1,9,75,04:49.2,7489200,,,,,1 +18526,767,501,66,15,7,2,2,2,6,75,47.9,7537100,,,,,1 +18527,767,554,66,14,4,3,3,3,4,75,+1:42.3,7591500,,,,,1 +18528,767,456,87,7,9,4,4,4,3,74,,,,,,,11 +18529,767,578,6,5,6,5,5,5,2,74,,,,,,,11 +18530,767,477,32,17,11,6,6,6,0,73,,,,,,,12 +18531,767,577,6,6,12,7,7,7,0,73,,,,,,,12 +18532,767,356,87,8,5,8,8,8,0,73,,,,,,,12 +18533,767,427,87,9,8,9,9,9,0,72,,,,,,,13 +18534,767,347,105,11,15,10,10,10,0,71,,,,,,,14 +18535,767,430,95,18,17,11,11,11,0,69,,,,,,,16 +18536,767,483,105,10,16,,R,12,0,52,,,,,,,86 +18537,767,590,118,3,1,,R,13,0,46,,,,,,,5 +18538,767,289,32,16,13,,R,14,0,40,,,,,,,25 +18539,767,581,6,4,10,,R,15,0,32,,,,,,,6 +18540,767,418,105,12,14,,R,16,0,16,,,,,,,48 +18541,767,479,118,2,3,,R,17,0,13,,,,,,,86 +18542,767,547,105,12,0,,W,18,0,0,,,,,,,54 +18543,768,525,108,1,7,1,1,1,8,200,44:13.8,13453800,,,,,1 +18544,768,591,108,99,25,2,2,2,6,200,27.63,13481430,,,,,1 +18545,768,533,113,9,8,3,3,3,4,200,+1:09.67,13523470,,,,,1 +18546,768,529,108,33,9,4,4,4,4,200,+1:34.81,13548610,,,,,1 +18547,768,509,108,2,20,5,5,5,2,200,+1:35.62,13549420,,,,,1 +18548,768,592,107,16,3,6,6,6,0,200,+2:16.95,13590750,,,,,1 +18549,768,528,109,26,13,7,7,7,0,200,+2:21.06,13594860,,,,,1 +18550,768,564,107,44,19,8,8,8,0,200,+5:34.02,13787820,,,,,1 +18551,768,513,113,61,26,9,9,9,0,200,+6:15.76,13829560,,,,,1 +18552,768,560,113,54,33,10,10,10,0,200,+8:03.59,13937390,,,,,1 +18553,768,558,113,52,21,11,11,11,0,200,+9:14.20,14008000,,,,,1 +18554,768,593,113,45,6,12,12,12,0,200,+9:40.85,14034650,,,,,1 +18555,768,594,114,19,30,13,13,13,0,200,+9:52.24,14046040,,,,,1 +18556,768,516,113,65,17,,R,14,0,189,,,,,,,20 +18557,768,539,114,59,32,,R,15,0,151,,,,,,,42 +18558,768,531,114,29,12,,R,16,0,148,,,,,,,20 +18559,768,565,113,77,31,,D,17,0,136,,,,,,,2 +18560,768,555,113,15,14,,R,18,0,122,,,,,,,37 +18561,768,523,113,83,23,,R,19,0,116,,,,,,,23 +18562,768,449,110,8,11,,R,20,0,93,,,,,,,121 +18563,768,595,113,43,15,,R,21,0,80,,,,,,,121 +18564,768,527,114,88,18,,R,22,0,68,,,,,,,7 +18565,768,512,113,7,22,,R,23,0,52,,,,,,,38 +18566,768,563,120,89,29,,R,24,0,38,,,,,,,3 +18567,768,562,110,25,10,,R,25,0,21,,,,,,,48 +18568,768,514,113,14,4,,R,26,0,1,,,,,,,3 +18569,768,537,107,97,1,,R,27,0,0,,,,,,,3 +18570,768,596,107,5,2,,R,28,0,0,,,,,,,3 +18571,768,597,113,4,5,,R,29,0,0,,,,,,,3 +18572,768,510,113,31,16,,R,30,0,0,,,,,,,3 +18573,768,598,113,92,24,,R,31,0,0,,,,,,,3 +18574,768,536,113,68,27,,R,32,0,0,,,,,,,3 +18575,768,599,114,57,28,,R,33,0,0,,,,,,,3 +18576,769,479,118,4,5,1,1,1,8,24,37:06.3,5826300,,,,,1 +18577,769,578,6,16,1,2,2,2,7,24,20.7,5847000,,,,,1 +18578,769,590,118,6,11,3,3,3,4,24,+3:00.9,6007200,,,,,1 +18579,769,477,32,40,12,4,4,4,3,24,+4:15.5,6081800,,,,,1 +18580,769,501,66,10,7,5,5,5,2,23,,,,,,,11 +18581,769,482,6,20,6,6,6,6,0,23,,,,,,,11 +18582,769,427,105,28,16,7,7,7,0,23,,,,,,,11 +18583,769,456,87,24,13,8,8,8,0,23,,,,,,,11 +18584,769,347,105,36,14,9,9,9,0,22,,,,,,,12 +18585,769,551,105,26,19,10,10,10,0,22,,,,,,,12 +18586,769,580,105,38,18,,R,11,0,22,,,,,,,5 +18587,769,356,87,22,8,,R,12,0,16,,,,,,,25 +18588,769,289,32,42,15,,R,13,0,12,,,,,,,5 +18589,769,577,6,18,2,,R,14,0,5,,,,,,,3 +18590,769,581,6,14,4,,R,15,0,5,,,,,,,25 +18591,769,554,66,8,10,,R,16,0,5,,,,,,,51 +18592,769,455,105,32,17,,R,17,0,4,,,,,,,86 +18593,769,475,118,2,9,,R,18,0,0,,,,,,,5 +18594,769,418,105,30,3,,R,19,0,0,,,,,,,5 +18595,770,578,6,4,1,1,1,1,9,50,03:21.3,7401300,,,,,1 +18596,770,475,118,8,6,2,2,2,6,50,24.6,7425900,,,,,1 +18597,770,476,6,6,21,3,3,3,4,50,59.7,7461000,,,,,1 +18598,770,579,105,34,8,4,4,4,3,50,+2:30.6,7551900,,,,,1 +18599,770,581,6,42,4,5,5,5,2,50,+5:24.9,7726200,,,,,1 +18600,770,356,87,22,12,6,6,6,0,49,,,,,,,11 +18601,770,403,105,36,13,7,7,7,0,49,,,,,,,11 +18602,770,347,105,38,16,8,8,8,0,48,,,,,,,12 +18603,770,583,105,32,15,9,9,9,0,47,,,,,,,13 +18604,770,526,105,30,18,10,10,10,0,45,,,,,,,15 +18605,770,456,87,20,14,11,11,11,0,37,,,,,,,53 +18606,770,501,66,16,3,,R,12,0,41,,,,,,,25 +18607,770,554,66,14,9,,R,13,0,41,,,,,,,48 +18608,770,590,118,12,10,,R,14,0,35,,,,,,,5 +18609,770,289,32,24,19,,R,15,0,33,,,,,,,25 +18610,770,580,105,40,11,,R,16,0,28,,,,,,,3 +18611,770,427,66,18,7,,R,17,0,23,,,,,,,48 +18612,770,479,118,10,5,,R,18,0,16,,,,,,,5 +18613,770,577,6,2,2,,R,19,0,9,,,,,,,3 +18614,770,566,105,28,17,,R,20,0,9,,,,,,,5 +18615,770,477,32,26,20,,R,21,0,6,,,,,,,5 +18616,771,581,6,1,6,1,1,1,8,75,09:04.2,7744200,,,,,1 +18617,771,578,6,2,4,2,2,2,7,75,24.2,7768400,,,,,1 +18618,771,456,87,10,3,3,3,3,4,75,50.6,7794800,,,,,1 +18619,771,590,118,9,7,4,4,4,3,75,50.8,7795000,,,,,1 +18620,771,501,66,20,2,5,5,5,2,75,+1:14.8,7819000,,,,,1 +18621,771,356,87,11,10,6,6,6,0,75,+1:23.2,7827400,,,,,1 +18622,771,479,118,8,9,7,7,7,0,74,,,,,,,11 +18623,771,427,87,4,12,8,8,8,0,73,,,,,,,12 +18624,771,566,105,5,15,9,9,9,0,72,,,,,,,13 +18625,771,476,6,3,11,,R,10,0,59,,,,,,,5 +18626,771,347,105,22,13,,R,11,0,49,,,,,,,6 +18627,771,583,105,6,18,,R,12,0,44,,,,,,,6 +18628,771,437,87,12,16,,R,13,0,40,,,,,,,8 +18629,771,475,118,7,1,,R,14,0,25,,,,,,,5 +18630,771,477,32,17,5,,R,15,0,21,,,,,,,5 +18631,771,554,66,19,8,,R,16,0,19,,,,,,,22 +18632,771,549,125,15,17,,R,17,0,19,,,,,,,6 +18633,771,502,32,18,20,,R,18,0,19,,,,,,,25 +18634,771,289,32,16,14,,R,19,0,17,,,,,,,25 +18635,771,486,125,14,19,,R,20,0,7,,,,,,,80 +18636,772,479,118,8,2,1,1,1,8,15,21:15.0,8475000,,,,,1 +18637,772,456,87,10,6,2,2,2,6,15,+3:29.7,8684700,,,,,1 +18638,772,427,87,11,7,3,3,3,4,15,+5:11.2,8786200,,,,,1 +18639,772,476,6,4,5,4,4,4,3,15,+6:16.3,8851300,,,,,1 +18640,772,360,87,20,12,5,5,5,0,15,+6:26.3,8861300,,,,,1 +18641,772,431,95,21,13,6,6,6,0,15,+6:32.4,8867400,,,,,1 +18642,772,437,87,26,11,7,7,7,0,15,+6:59.3,8894300,,,,,1 +18643,772,459,87,30,14,8,8,8,0,15,+7:09.9,8904900,,,,,1 +18644,772,403,6,23,10,9,9,9,0,15,+7:45.5,8940500,,,,,1 +18645,772,477,32,12,24,10,10,10,0,13,,,,,,,12 +18646,772,549,32,28,16,11,11,11,0,13,,,,,,,12 +18647,772,578,6,3,1,,R,12,0,11,,,,,,,8 +18648,772,581,6,2,4,,R,13,0,10,,,,,,,3 +18649,772,455,87,22,17,,R,14,0,9,,,,,,,22 +18650,772,501,66,6,8,,R,15,0,9,,,,,,,23 +18651,772,600,87,27,23,,R,16,0,4,,,,,,,48 +18652,772,289,32,25,22,,R,17,0,4,,,,,,,108 +18653,772,554,66,5,9,,R,18,0,4,,,,,,,22 +18654,772,430,95,18,15,,R,19,0,3,,,,,,,5 +18655,772,478,105,17,20,,R,20,0,3,,,,,,,5 +18656,772,475,118,7,3,,R,21,1,3,,,,,,,121 +18657,772,601,87,19,18,,R,22,0,2,,,,,,,5 +18658,772,484,87,29,25,,R,23,0,1,,,,,,,48 +18659,772,356,87,24,19,,R,24,0,1,,,,,,,4 +18660,772,347,105,16,21,,R,25,0,1,,,,,,,3 +18661,772,526,105,14,0,,W,26,0,0,,,,,,,5 +18662,773,475,118,2,1,1,1,1,8,50,11:27.8,7887800,,,,,1 +18663,773,578,6,24,2,2,2,2,7,50,+5:12.75,8200550,,,,,1 +18664,773,590,118,6,3,3,3,3,4,49,,,,,,,11 +18665,773,554,66,8,4,4,4,4,3,49,,,,,,,11 +18666,773,476,6,22,6,5,5,5,2,49,,,,,,,11 +18667,773,501,66,10,7,6,6,6,0,49,,,,,,,11 +18668,773,356,87,14,8,7,7,7,0,48,,,,,,,12 +18669,773,427,87,12,9,8,8,8,0,48,,,,,,,12 +18670,773,456,87,16,11,9,9,9,0,46,,,,,,,14 +18671,773,566,105,28,10,,R,10,0,47,,,,,,,23 +18672,773,479,118,4,5,,R,11,0,37,,,,,,,20 +18673,773,289,32,20,12,,R,12,0,25,,,,,,,20 +18674,773,477,105,18,13,,R,13,0,15,,,,,,,5 +18675,773,347,105,32,14,,R,14,0,9,,,,,,,68 +18676,773,551,105,30,15,,R,15,0,6,,,,,,,5 +18677,774,479,118,28,2,1,1,1,8,70,03:47.8,7427800,,,,,1 +18678,774,578,6,14,3,2,2,2,6,70,24.2,7452000,,,,,1 +18679,774,403,6,18,7,3,3,3,5,70,28.3,7456100,,,,,1 +18680,774,418,105,32,11,4,4,4,0,69,,,,,,,11 +18681,774,456,87,6,14,5,5,5,2,62,,,,,,,18 +18682,774,289,32,38,12,6,6,6,0,62,,,,,,,18 +18683,774,477,32,36,16,7,7,7,0,61,,,,,,,19 +18684,774,551,105,42,21,,R,8,0,57,,,,,,,5 +18685,774,543,105,22,20,,R,9,0,51,,,,,,,5 +18686,774,554,66,8,8,,R,10,0,42,,,,,,,8 +18687,774,478,105,24,18,,R,11,0,32,,,,,,,5 +18688,774,590,118,30,4,,R,12,0,30,,,,,,,25 +18689,774,427,87,2,13,,R,13,0,24,,,,,,,6 +18690,774,475,118,26,1,,R,14,0,17,,,,,,,6 +18691,774,347,66,12,10,,R,15,0,14,,,,,,,7 +18692,774,482,6,20,5,,R,16,0,4,,,,,,,22 +18693,774,583,105,40,19,,R,17,0,2,,,,,,,3 +18694,774,566,105,34,17,,R,18,0,1,,,,,,,64 +18695,774,476,6,16,6,,R,19,0,0,,,,,,,3 +18696,774,501,66,10,9,,R,20,0,0,,,,,,,3 +18697,774,356,87,4,15,,R,21,0,0,,,,,,,22 +18698,775,475,118,8,2,1,1,1,9,53,09:15.1,7755100,,,,,1 +18699,775,578,6,6,1,2,2,2,6,53,+1:24.7,7839800,,,,,1 +18700,775,403,6,4,5,3,3,3,4,53,+1:25.5,7840600,,,,,1 +18701,775,347,66,18,8,4,4,4,3,53,+1:46.7,7861800,,,,,1 +18702,775,501,66,16,10,5,5,5,2,53,+2:33.7,7908800,,,,,1 +18703,775,418,105,22,13,6,6,6,0,52,,,,,,,11 +18704,775,456,87,28,14,7,7,7,0,51,,,,,,,12 +18705,775,486,87,30,11,8,8,8,0,50,,,,,,,13 +18706,775,478,105,38,18,9,9,9,0,50,,,,,,,13 +18707,775,477,32,34,16,10,10,10,0,49,,,,,,,14 +18708,775,356,87,50,19,11,11,11,0,49,,,,,,,14 +18709,775,583,105,26,17,12,12,12,0,48,,,,,,,15 +18710,775,360,87,52,21,13,13,13,0,48,,,,,,,15 +18711,775,602,87,58,23,14,14,14,0,48,,,,,,,15 +18712,775,603,87,48,25,15,15,15,0,48,,,,,,,15 +18713,775,289,32,32,12,16,16,16,0,45,,,,,,,17 +18714,775,590,118,12,3,,R,17,0,41,,,,,,,3 +18715,775,604,87,54,24,,R,18,0,31,,,,,,,3 +18716,775,605,87,56,22,,R,19,0,30,,,,,,,3 +18717,775,479,118,10,7,,R,20,0,29,,,,,,,5 +18718,775,482,6,2,6,,R,21,0,29,,,,,,,3 +18719,775,554,66,14,4,,R,22,0,26,,,,,,,5 +18720,775,455,87,24,20,,R,23,0,15,,,,,,,3 +18721,775,541,66,20,15,,R,24,0,15,,,,,,,5 +18722,775,427,87,36,9,,R,25,0,9,,,,,,,5 +18723,776,579,105,2,2,1,1,1,8,100,00:55.9,10855900,,,,,1 +18724,776,554,105,6,3,2,2,2,6,100,18.3,10874200,,,,,1 +18725,776,496,105,8,8,3,3,3,4,99,,,,,,,11 +18726,776,501,105,22,9,4,4,4,3,98,,,,,,,12 +18727,776,606,6,20,10,5,5,5,1,98,,,,,,,12 +18728,776,607,6,18,11,6,6,6,0,98,,,,,,,12 +18729,776,347,105,24,13,7,7,7,0,95,,,,,,,15 +18730,776,475,105,4,1,8,8,8,1,93,,,,,,,17 +18731,776,573,6,26,12,9,9,9,0,91,,,,,,,19 +18732,776,586,105,28,14,10,10,10,0,90,,,,,,,88 +18733,776,608,6,14,4,,R,11,0,75,,,,,,,36 +18734,776,578,6,16,7,,R,12,0,35,,,,,,,8 +18735,776,577,6,12,6,,R,13,0,31,,,,,,,8 +18736,776,581,6,10,5,,R,14,0,26,,,,,,,8 +18737,777,579,105,32,1,1,1,1,9,105,10:12.8,11412800,,,,,1 +18738,777,479,118,20,4,2,2,2,6,105,25.2,11438000,,,,,1 +18739,777,418,105,2,10,3,3,3,4,103,,,,,,,12 +18740,777,590,125,10,13,4,4,4,3,102,,,,,,,13 +18741,777,427,6,30,6,5,5,5,2,100,,,,,,,15 +18742,777,356,87,14,15,6,6,6,0,100,,,,,,,15 +18743,777,476,6,24,9,,R,7,0,95,,,,,,,5 +18744,777,483,105,34,14,,R,8,0,64,,,,,,,44 +18745,777,541,66,6,11,,R,9,0,60,,,,,,,5 +18746,777,496,105,36,7,,R,10,0,51,,,,,,,20 +18747,777,549,125,12,16,,R,11,0,47,,,,,,,95 +18748,777,501,105,38,8,,R,12,0,23,,,,,,,22 +18749,777,547,105,22,12,,R,13,0,10,,,,,,,3 +18750,777,581,6,26,2,,R,14,0,4,,,,,,,3 +18751,777,475,118,18,3,,R,15,0,4,,,,,,,3 +18752,777,578,6,28,5,,R,16,0,4,,,,,,,3 +18753,777,456,66,8,0,,F,17,0,0,,,,,,,81 +18754,777,478,105,40,0,,F,18,0,0,,,,,,,81 +18755,777,609,105,4,0,,F,19,0,0,,,,,,,81 +18756,777,586,105,42,0,,F,20,0,0,,,,,,,81 +18757,777,610,87,16,0,,F,21,0,0,,,,,,,81 +18758,778,611,108,9,13,1,1,1,8,200,41:14.3,13274250,,,,,1 +18759,778,509,108,26,32,2,2,2,7,200,21.46,13295710,,,,,1 +18760,778,525,114,1,15,3,3,3,4,200,+2:13.97,13408220,,,,,1 +18761,778,555,113,54,10,4,4,4,3,200,+2:56.86,13451110,,,,,1 +18762,778,612,113,73,12,5,5,5,2,200,+3:14.27,13468520,,,,,1 +18763,778,533,113,6,5,6,6,6,0,200,+4:35.27,13549520,,,,,1 +18764,778,613,113,48,28,7,7,7,0,200,+4:45.58,13559830,,,,,1 +18765,778,597,113,12,1,8,8,8,0,200,+5:33.15,13607400,,,,,1 +18766,778,514,109,7,16,9,9,9,0,200,+6:17.11,13651360,,,,,1 +18767,778,520,110,22,14,10,10,10,0,200,+7:10.12,13704370,,,,,1 +18768,778,562,113,19,19,11,11,11,0,200,+7:56.07,13750320,,,,,1 +18769,778,512,114,10,11,12,12,12,0,199,,,,,,,11 +18770,778,516,113,95,33,13,13,13,0,197,,,,,,,13 +18771,778,563,114,82,25,14,14,14,0,196,,,,,,,14 +18772,778,529,113,27,22,15,15,15,0,195,,,,,,,15 +18773,778,593,113,18,17,16,16,16,0,195,,,,,,,15 +18774,778,528,113,3,21,17,17,17,0,192,,,,,,,18 +18775,778,592,113,5,6,,R,18,0,182,,,,,,,37 +18776,778,614,113,92,27,,R,19,0,170,,,,,,,20 +18777,778,594,113,28,31,,R,20,0,138,,,,,,,8 +18778,778,538,120,89,30,,R,21,0,111,,,,,,,3 +18779,778,615,113,14,4,,R,22,0,107,,,,,,,95 +18780,778,527,114,88,2,,R,23,0,105,,,,,,,95 +18781,778,565,113,77,18,,R,24,0,101,,,,,,,3 +18782,778,513,113,43,20,,R,25,0,93,,,,,,,67 +18783,778,560,113,31,23,,R,26,0,81,,,,,,,95 +18784,778,558,113,16,8,,R,27,0,75,,,,,,,3 +18785,778,556,113,57,29,,R,28,0,53,,,,,,,3 +18786,778,596,113,83,7,,R,29,0,51,,,,,,,31 +18787,778,449,110,8,24,,R,30,0,27,,,,,,,101 +18788,778,526,107,52,3,,R,31,0,13,,,,,,,5 +18789,778,532,113,55,26,,R,32,0,0,,,,,,,3 +18790,778,616,113,23,9,,R,33,0,0,,,,,,,3 +18791,779,579,105,2,1,1,1,1,8,77,07:46.4,11266400,,,,,1 +18792,779,577,6,10,3,2,2,2,7,77,50.8,11317200,,,,,1 +18793,779,581,6,12,5,3,3,3,4,77,+2:06.0,11392400,,,,,1 +18794,779,578,6,14,7,4,4,4,3,76,,,,,,,11 +18795,779,501,105,6,4,5,5,5,2,70,,,,,,,17 +18796,779,554,105,4,2,6,6,6,0,69,,,,,,,18 +18797,779,617,87,24,15,7,7,7,0,68,,,,,,,19 +18798,779,496,105,8,9,,R,8,0,30,,,,,,,5 +18799,779,590,118,18,10,,R,9,0,30,,,,,,,38 +18800,779,456,118,20,6,,R,10,0,25,,,,,,,5 +18801,779,618,66,28,12,,R,11,0,24,,,,,,,7 +18802,779,427,6,16,8,,R,12,0,23,,,,,,,10 +18803,779,356,87,22,13,,R,13,0,4,,,,,,,3 +18804,779,547,105,30,14,,R,14,0,4,,,,,,,86 +18805,779,541,66,26,11,,R,15,0,2,,,,,,,3 +18806,780,479,118,20,3,1,1,1,4,90,06:37.8,11197800,,,,,1 +18807,780,577,6,14,10,2,2,2,6,90,25.6,11223400,,,,,1 +18808,780,578,6,10,5,3,3,3,4,90,42.8,11240600,,,,,1 +18809,780,427,6,16,9,4,4,4,3,88,,,,,,,12 +18810,780,456,87,36,15,5,5,5,2,85,,,,,,,15 +18811,780,619,87,38,18,6,6,6,0,82,,,,,,,18 +18812,780,590,118,22,6,7,7,7,0,82,,,,,,,18 +18813,780,549,105,32,19,8,8,8,0,71,,,,,,,124 +18814,780,356,87,34,13,,R,9,0,74,,,,,,,8 +18815,780,554,105,4,2,,R,10,0,69,,,,,,,8 +18816,780,581,6,12,8,,R,11,0,53,,,,,,,47 +18817,780,475,118,18,1,,R,12,0,51,,,,,,,5 +18818,780,579,105,2,4,,R,13,0,49,,,,,,,5 +18819,780,486,66,24,16,,R,14,0,46,,,,,,,5 +18820,780,610,66,26,12,,R,15,0,44,,,,,,,5 +18821,780,501,105,6,7,,R,16,0,39,,,,,,,103 +18822,780,496,105,8,11,,R,17,0,35,,,,,,,7 +18823,780,347,105,28,17,,R,18,0,18,,,,,,,6 +18824,780,547,105,30,14,,W,19,0,0,,,,,,,3 +18825,781,579,105,1,1,1,1,1,9,22,30:38.3,12638300,,,,,1 +18826,781,578,6,8,2,2,2,2,6,22,3.6,12641900,,,,,1 +18827,781,581,6,7,4,3,3,3,4,22,35.6,12673900,,,,,1 +18828,781,577,6,6,8,4,4,4,3,22,+3:37.6,12855900,,,,,1 +18829,781,475,118,10,7,5,5,5,2,22,+4:37.2,12915500,,,,,1 +18830,781,554,105,2,3,6,6,6,0,22,+4:38.5,12916800,,,,,1 +18831,781,501,105,3,6,7,7,7,0,22,+6:47.5,13045800,,,,,1 +18832,781,418,105,16,10,8,8,8,0,21,,,,,,,11 +18833,781,479,118,11,5,9,9,9,0,21,,,,,,,11 +18834,781,483,105,4,13,10,10,10,0,21,,,,,,,11 +18835,781,506,105,15,16,11,11,11,0,21,,,,,,,11 +18836,781,431,95,21,12,12,12,12,0,21,,,,,,,11 +18837,781,484,87,28,17,13,13,13,0,20,,,,,,,12 +18838,781,430,95,27,20,14,14,14,0,20,,,,,,,12 +18839,781,459,87,25,22,15,15,15,0,17,,,,,,,15 +18840,781,478,105,17,11,,R,16,0,14,,,,,,,83 +18841,781,620,95,20,15,,R,17,0,13,,,,,,,5 +18842,781,456,87,23,14,,R,18,0,11,,,,,,,22 +18843,781,580,105,18,21,,R,19,0,11,,,,,,,38 +18844,781,590,118,12,9,,R,20,0,10,,,,,,,6 +18845,781,356,87,24,18,,R,21,0,6,,,,,,,7 +18846,781,621,87,26,23,,R,22,0,4,,,,,,,99 +18847,781,601,87,29,24,,R,23,0,3,,,,,,,38 +18848,781,547,105,19,19,,R,24,0,2,,,,,,,109 +18849,782,475,118,26,2,1,1,1,9,18,59:22.7,10762700,,,,,1 +18850,782,579,105,2,1,2,2,2,6,18,+3:13.9,10956600,,,,,1 +18851,782,501,105,6,5,3,3,3,4,18,+6:46.8,11169500,,,,,1 +18852,782,418,105,14,7,4,4,4,3,18,+8:16.5,11259200,,,,,1 +18853,782,590,118,30,8,5,5,5,2,17,,,,,,,11 +18854,782,483,105,8,10,6,6,6,0,17,,,,,,,11 +18855,782,356,87,24,16,7,7,7,0,15,,,,,,,13 +18856,782,577,6,34,3,,R,8,0,9,,,,,,,44 +18857,782,580,105,10,12,,R,9,0,9,,,,,,,5 +18858,782,506,105,20,14,,R,10,0,9,,,,,,,7 +18859,782,347,105,16,9,,R,11,0,7,,,,,,,25 +18860,782,554,105,4,4,,R,12,0,3,,,,,,,44 +18861,782,456,87,22,15,,R,13,0,3,,,,,,,3 +18862,782,479,118,28,6,,R,14,0,1,,,,,,,5 +18863,782,547,105,18,11,,R,15,0,0,,,,,,,3 +18864,782,586,105,12,13,,R,16,0,0,,,,,,,5 +18865,783,475,118,18,2,1,1,1,8,87,35:03.9,9303900,,,,,1 +18866,783,579,105,2,4,2,2,2,6,87,41.2,9345100,,,,,1 +18867,783,476,6,36,8,3,3,3,4,85,,,,,,,12 +18868,783,418,105,26,11,4,4,4,3,84,,,,,,,13 +18869,783,483,105,8,12,5,5,5,1,84,,,,,,,13 +18870,783,578,6,34,10,6,6,6,0,83,,,,,,,14 +18871,783,479,118,22,3,7,7,7,1,82,,,,,,,15 +18872,783,577,6,32,9,8,8,8,0,82,,,,,,,15 +18873,783,580,105,10,15,9,9,9,0,81,,,,,,,16 +18874,783,547,105,14,18,10,10,10,0,78,,,,,,,19 +18875,783,609,105,28,16,11,11,11,0,72,,,,,,,112 +18876,783,581,6,30,7,,R,12,0,62,,,,,,,5 +18877,783,590,118,20,1,,R,13,0,49,,,,,,,5 +18878,783,554,105,6,5,,R,14,0,49,,,,,,,25 +18879,783,506,105,16,14,,R,15,0,47,,,,,,,5 +18880,783,501,105,4,6,,R,16,0,34,,,,,,,44 +18881,783,347,105,24,13,,R,17,0,31,,,,,,,25 +18882,783,586,105,12,17,,R,18,0,3,,,,,,,5 +18883,784,577,6,34,3,1,1,1,5,98,00:03.7,10803700,,,,,1 +18884,784,554,105,4,4,2,2,2,6,98,24.4,10828100,,,,,1 +18885,784,578,105,14,8,3,3,3,4,96,,,,,,,12 +18886,784,622,105,10,11,4,4,4,1.5,92,,,,,,,16 +18887,784,482,6,38,10,5,5,5,2,91,,,,,,,17 +18888,784,623,105,16,13,6,6,6,0,88,,,,,,,88 +18889,784,475,105,2,7,,R,7,0,81,,,,,,,5 +18890,784,581,6,36,9,,R,8,0,58,,,,,,,3 +18891,784,586,105,8,12,,R,9,0,57,,,,,,,3 +18892,784,496,105,6,6,,R,10,0,42,,,,,,,86 +18893,784,608,6,32,2,,R,11,0,40,,,,,,,6 +18894,784,498,105,12,5,,R,12,0,24,,,,,,,5 +18895,784,579,6,30,1,,R,13,0,22,,,,,,,48 +18896,785,475,105,28,2,1,1,1,8,100,00:32.9,10832900,,,,,1 +18897,785,581,6,26,9,2,2,2,3,100,6.1,10839000,,,,,1 +18898,785,554,105,30,4,3,3,3,4,99,,,,,,,11 +18899,785,579,6,20,1,4,4,4,1.5,99,,,,,,,11 +18900,785,624,128,6,14,5,5,5,2,93,,,,,,,17 +18901,785,625,128,4,11,6,6,6,0,88,,,,,,,55 +18902,785,607,105,32,7,7,7,7,0,86,,,,,,,111 +18903,785,547,105,18,16,8,8,8,0,85,,,,,,,112 +18904,785,626,128,2,12,,R,9,0,90,,,,,,,3 +18905,785,627,105,8,15,,R,10,0,72,,,,,,,5 +18906,785,608,6,22,3,,R,11,0,14,,,,,,,8 +18907,785,427,118,14,6,,R,12,0,13,,,,,,,25 +18908,785,501,118,16,5,,R,13,0,2,,,,,,,3 +18909,785,577,6,24,8,,R,14,0,2,,,,,,,3 +18910,785,483,6,36,0,,F,15,0,0,,,,,,,81 +18911,785,578,66,10,0,,W,16,0,0,,,,,,,5 +18912,785,479,66,12,0,,W,17,0,0,,,,,,,5 +18913,785,589,105,34,0,,W,18,0,0,,,,,,,5 +18914,786,559,107,8,1,1,1,1,8,200,53:28.8,14008840,,,,,1 +18915,786,611,113,4,13,2,2,2,6,200,+0:20.45,14029290,,,,,1 +18916,786,528,109,16,26,3,3,3,4,200,+1:30.23,14099070,,,,,1 +18917,786,593,113,98,6,4,4,4,3,200,+3:25.69,14214530,,,,,1 +18918,786,537,113,73,4,5,5,5,2,200,+4:21.81,14270650,,,,,1 +18919,786,628,114,1,10,6,6,6,0,200,+5:35.05,14343890,,,,,1 +18920,786,514,113,14,23,7,7,7,0,200,+6:25.63,14394470,,,,,1 +18921,786,449,113,19,15,8,8,8,0,200,+6:32.31,14401150,,,,,1 +18922,786,592,110,26,21,9,9,9,0,200,+6:38.31,14407150,,,,,1 +18923,786,629,129,27,30,10,10,10,0,199,,,,,,,11 +18924,786,520,114,82,22,11,11,11,0,196,,,,,,,14 +18925,786,615,113,42,7,12,12,12,0,196,,,,,,,14 +18926,786,516,113,57,25,13,13,13,0,196,,,,,,,14 +18927,786,558,113,55,28,14,14,14,0,195,,,,,,,15 +18928,786,513,114,81,32,15,15,15,0,195,,,,,,,15 +18929,786,595,114,41,29,16,16,16,0,194,,,,,,,16 +18930,786,630,113,64,33,17,17,17,0,191,,,,,,,19 +18931,786,597,113,7,3,18,18,18,0,187,,,,,,,53 +18932,786,525,114,2,19,19,19,19,0,185,,,,,,,112 +18933,786,509,113,24,2,,R,20,0,175,,,,,,,5 +18934,786,594,113,34,31,,R,21,0,173,,,,,,,5 +18935,786,529,113,99,5,,R,22,0,160,,,,,,,3 +18936,786,596,113,10,14,,R,23,0,160,,,,,,,23 +18937,786,556,113,48,16,,R,24,0,134,,,,,,,3 +18938,786,562,113,54,24,,R,25,0,131,,,,,,,5 +18939,786,631,113,89,20,,R,26,0,94,,,,,,,7 +18940,786,612,113,5,9,,R,27,0,90,,,,,,,44 +18941,786,538,113,12,27,,R,28,0,74,,,,,,,3 +18942,786,561,113,49,17,,R,29,0,49,,,,,,,3 +18943,786,533,113,15,12,,R,30,0,35,,,,,,,44 +18944,786,526,113,53,11,,R,31,0,22,,,,,,,20 +18945,786,512,114,88,18,,R,32,0,22,,,,,,,20 +18946,786,555,113,29,8,,R,33,1,21,,,,,,,3 +18947,787,581,6,8,3,1,1,1,8,36,40:00.3,9600300,,,,,1 +18948,787,632,6,6,8,2,2,2,6,36,+1:51.3,9711600,,,,,1 +18949,787,607,105,34,9,3,3,3,2,36,+3:16.6,9796900,,,,,1 +18950,787,501,118,10,6,4,4,4,3,35,,,,,,,11 +18951,787,633,105,22,11,5,5,5,2,34,,,,,,,12 +18952,787,429,6,20,16,6,6,6,0,33,,,,,,,13 +18953,787,554,105,32,4,7,7,7,0,33,,,,,,,13 +18954,787,627,105,24,10,8,8,8,0,33,,,,,,,13 +18955,787,579,6,2,1,,R,9,0,23,,,,,,,7 +18956,787,427,118,12,7,,R,10,0,11,,,,,,,69 +18957,787,475,105,30,2,,R,11,0,10,,,,,,,36 +18958,787,608,6,4,5,,R,12,0,10,,,,,,,7 +18959,787,634,125,28,12,,R,13,0,10,,,,,,,5 +18960,787,547,105,26,15,,R,14,0,2,,,,,,,6 +18961,787,580,105,36,13,,R,15,0,0,,,,,,,3 +18962,788,581,6,14,3,1,1,1,8,61,34:23.4,9263400,,,,,1 +18963,788,608,6,12,2,2,2,2,6,61,0.3,9263700,,,,,1 +18964,788,554,105,4,7,3,3,3,4,61,+1:29.9,9353300,,,,,1 +18965,788,579,6,10,1,4,4,4,4,61,+1:35.1,9358500,,,,,1 +18966,788,607,105,6,13,5,5,5,1,59,,,,,,,12 +18967,788,627,105,36,12,6,6,6,0,58,,,,,,,13 +18968,788,580,105,40,17,7,7,7,0,57,,,,,,,14 +18969,788,624,128,32,14,8,8,8,0,57,,,,,,,14 +18970,788,626,128,30,15,9,9,9,0,56,,,,,,,15 +18971,788,578,118,24,6,10,10,10,0,56,,,,,,,15 +18972,788,429,128,34,19,11,11,11,0,55,,,,,,,16 +18973,788,609,105,42,20,,R,12,0,41,,,,,,,5 +18974,788,624,105,8,16,,R,13,0,40,,,,,,,5 +18975,788,482,6,44,11,,R,14,0,38,,,,,,,8 +18976,788,633,105,38,10,,R,15,0,23,,,,,,,23 +18977,788,606,6,16,9,,R,16,0,20,,,,,,,6 +18978,788,427,130,28,18,,R,17,0,18,,,,,,,37 +18979,788,475,105,2,8,,R,18,0,12,,,,,,,6 +18980,788,501,118,22,4,,R,19,0,5,,,,,,,5 +18981,788,635,118,26,5,,W,20,0,0,,,,,,,3 +18982,789,579,6,1,2,1,1,1,8,101,59:47.0,10787000,,,,,1 +18983,789,606,6,4,12,2,2,2,3,100,,,,,,,11 +18984,789,554,105,8,13,3,3,3,4,99,,,,,,,12 +18985,789,486,125,21,21,4,4,4,3,98,,,,,,,13 +18986,789,547,105,31,14,5,5,5,2,97,,,,,,,14 +18987,789,633,105,11,19,6,6,6,0,96,,,,,,,15 +18988,789,607,105,9,15,7,7,7,0,95,,,,,,,16 +18989,789,580,105,10,25,8,8,8,0,94,,,,,,,17 +18990,789,626,128,15,18,9,9,9,0,94,,,,,,,17 +18991,789,608,6,3,8,10,10,10,0,92,,,,,,,19 +18992,789,619,87,26,22,11,11,11,0,88,,,,,,,53 +18993,789,475,105,7,1,,R,12,1,94,,,,,,,109 +18994,789,501,118,16,5,,R,13,0,87,,,,,,,69 +18995,789,636,125,20,11,,R,14,0,74,,,,,,,5 +18996,789,427,118,17,16,,R,15,0,74,,,,,,,69 +18997,789,624,128,14,26,,R,16,0,71,,,,,,,109 +18998,789,581,6,2,4,,R,17,0,64,,,,,,,51 +18999,789,456,105,28,7,,R,18,0,59,,,,,,,69 +19000,789,479,66,24,9,,R,19,0,39,,,,,,,3 +19001,789,578,66,23,3,,R,20,0,24,,,,,,,7 +19002,789,627,105,27,27,,R,21,0,23,,,,,,,10 +19003,789,506,105,29,20,,R,22,0,22,,,,,,,5 +19004,789,620,105,12,24,,R,23,0,21,,,,,,,6 +19005,789,637,125,19,10,,R,24,0,16,,,,,,,7 +19006,789,585,99,32,23,,R,25,0,12,,,,,,,80 +19007,789,356,105,30,28,,R,26,0,3,,,,,,,5 +19008,789,541,66,25,17,,R,27,0,2,,,,,,,5 +19009,789,498,118,18,6,,R,28,0,0,,,,,,,7 +19010,790,579,6,1,1,1,1,1,9,22,38:43.7,13123700,,,,,1 +19011,790,475,105,7,4,2,2,2,6,22,46.4,13170100,,,,,1 +19012,790,554,105,6,8,3,3,3,4,22,+7:38.3,13582000,,,,,1 +19013,790,580,105,20,16,4,4,4,3,20,,,,,,,12 +19014,790,627,105,15,14,5,5,5,2,19,,,,,,,13 +19015,790,506,105,21,11,,D,6,0,20,,,,,,,2 +19016,790,638,105,22,19,,N,7,0,16,,,,,,,16 +19017,790,639,128,11,21,,R,8,0,15,,,,,,,5 +19018,790,606,6,5,10,,R,9,0,14,,,,,,,3 +19019,790,501,105,12,12,,R,10,0,13,,,,,,,25 +19020,790,633,105,18,20,,R,11,0,13,,,,,,,5 +19021,790,577,6,4,5,,R,12,0,11,,,,,,,3 +19022,790,581,6,2,2,,R,13,0,8,,,,,,,95 +19023,790,608,6,3,3,,R,14,0,5,,,,,,,10 +19024,790,620,105,8,7,,R,15,0,3,,,,,,,38 +19025,790,547,105,19,13,,R,16,0,3,,,,,,,51 +19026,790,456,105,16,9,,R,17,0,2,,,,,,,22 +19027,790,626,128,10,15,,R,18,0,0,,,,,,,22 +19028,790,483,6,14,17,,R,19,0,0,,,,,,,5 +19029,790,607,105,8,0,,W,20,0,0,,,,,,,54 +19030,790,429,128,11,0,,W,21,0,0,,,,,,,54 +19031,790,586,105,18,0,,W,22,0,0,,,,,,,54 +19032,791,475,105,36,6,1,1,1,9,50,23:41.3,8621300,,,,,1 +19033,791,581,6,26,7,2,2,2,3,50,5.7,8627000,,,,,1 +19034,791,541,125,4,26,3,3,3,4,49,,,,,,,11 +19035,791,580,105,38,18,4,4,4,3,49,,,,,,,11 +19036,791,486,125,6,16,5,5,5,2,47,,,,,,,13 +19037,791,586,105,40,15,6,6,6,0,47,,,,,,,13 +19038,791,640,105,14,19,7,7,7,0,46,,,,,,,14 +19039,791,579,6,22,1,8,8,8,0,46,,,,,,,14 +19040,791,609,128,12,25,9,9,9,0,45,,,,,,,15 +19041,791,583,105,42,17,10,10,10,0,42,,,,,,,18 +19042,791,456,105,44,14,11,11,11,0,41,,,,,,,19 +19043,791,577,6,28,3,,R,12,0,47,,,,,,,38 +19044,791,620,105,46,13,,R,13,0,42,,,,,,,38 +19045,791,501,118,18,10,,R,14,0,32,,,,,,,7 +19046,791,554,105,32,5,,R,15,0,23,,,,,,,121 +19047,791,506,105,48,22,,R,16,0,16,,,,,,,5 +19048,791,427,118,20,11,,R,17,0,13,,,,,,,7 +19049,791,641,118,16,4,,R,18,0,12,,,,,,,44 +19050,791,608,6,24,2,,R,19,0,9,,,,,,,27 +19051,791,633,105,34,8,,R,20,0,7,,,,,,,5 +19052,791,626,128,10,23,,R,21,0,7,,,,,,,83 +19053,791,606,6,30,9,,R,22,0,6,,,,,,,27 +19054,791,610,125,2,20,,R,23,0,6,,,,,,,22 +19055,791,624,128,8,21,,R,24,0,3,,,,,,,5 +19056,791,476,6,50,0,,W,25,0,0,,,,,,,54 +19057,792,579,131,2,3,1,1,1,9,96,00:38.6,10838600,,,,,1 +19058,792,498,6,12,1,2,2,2,2,96,+1:29.6,10928200,,,,,1 +19059,792,642,6,10,5,3,3,3,1.33,94,,,,,,,12 +19060,792,478,131,8,10,4,4,4,1,94,,,,,,,12 +19061,792,643,105,18,16,5,5,5,2,91,,,,,,,15 +19062,792,501,105,28,7,6,6,6,0,88,,,,,,,18 +19063,792,577,105,22,18,7,7,7,0,83,,,,,,,53 +19064,792,644,105,20,19,,R,8,0,54,,,,,,,5 +19065,792,645,105,26,20,,R,9,0,54,,,,,,,32 +19066,792,646,128,42,17,,R,10,0,38,,,,,,,7 +19067,792,427,6,14,14,,R,11,0,36,,,,,,,5 +19068,792,608,132,36,12,,R,12,0,35,,,,,,,3 +19069,792,475,131,6,8,,R,13,0,29,,,,,,,69 +19070,792,623,105,30,21,,R,14,0,22,,,,,,,60 +19071,792,647,132,32,2,,R,15,0,21,,,,,,,3 +19072,792,625,128,38,15,,R,16,0,7,,,,,,,7 +19073,792,554,105,16,4,,R,17,0,2,,,,,,,3 +19074,792,648,131,4,6,,R,18,0,2,,,,,,,3 +19075,792,633,132,34,11,,R,19,0,2,,,,,,,95 +19076,792,649,128,40,9,,R,20,0,1,,,,,,,3 +19077,792,496,105,24,13,,R,21,0,1,,,,,,,3 +19078,793,427,6,44,9,1,1,1,8,100,58:09.8,10689800,,,,,1 +19079,793,608,132,30,4,2,2,2,6,100,20.2,10710000,,,,,1 +19080,793,554,105,34,5,3,3,3,2,99,,,,,,,11 +19081,793,642,6,42,14,4,4,4,3,99,,,,,,,11 +19082,793,633,132,28,7,5,5,5,2,99,,,,,,,11 +19083,793,589,132,32,19,6,6,6,0,95,,,,,,,15 +19084,793,650,128,10,20,7,7,7,0,91,,,,,,,19 +19085,793,641,6,48,15,8,8,8,0,86,,,,,,,111 +19086,793,475,131,16,3,9,9,9,0,81,,,,,,,124 +19087,793,607,105,40,11,,R,10,0,86,,,,,,,20 +19088,793,647,132,26,2,,R,11,0,80,,,,,,,3 +19089,793,501,6,46,18,,R,12,0,68,,,,,,,5 +19090,793,643,105,36,6,,R,13,0,64,,,,,,,7 +19091,793,625,128,12,16,,R,14,0,63,,,,,,,7 +19092,793,579,131,2,1,,R,15,1,49,,,,,,,7 +19093,793,626,128,8,13,,R,16,0,38,,,,,,,6 +19094,793,609,131,4,10,,R,17,0,24,,,,,,,5 +19095,793,578,118,18,12,,R,18,0,22,,,,,,,37 +19096,793,627,105,14,17,,R,19,0,8,,,,,,,95 +19097,793,577,105,38,8,,R,20,0,7,,,,,,,7 +19098,793,651,105,22,0,,F,21,0,0,,,,,,,81 +19099,793,652,133,24,0,,F,22,0,0,,,,,,,81 +19100,793,478,131,4,0,,F,23,0,0,,,,,,,81 +19101,794,628,113,6,14,1,1,1,8,200,53:59.5,14039530,,,,,1 +19102,794,529,113,10,2,2,2,2,3,200,+2:43.56,14203090,,,,,1 +19103,794,653,113,15,10,3,3,3,4,200,+3:32.36,14251890,,,,,1 +19104,794,512,114,44,33,4,4,4,3,200,+3:38.91,14258440,,,,,1 +19105,794,654,113,77,7,5,5,5,1,200,+5:17.17,14356700,,,,,1 +19106,794,612,113,19,8,6,6,6,0,200,+5:57.94,14397470,,,,,1 +19107,794,538,113,71,16,7,7,7,0,200,+6:24.24,14423770,,,,,1 +19108,794,597,113,29,19,8,8,8,0,200,+6:41.60,14441130,,,,,1 +19109,794,556,113,48,17,9,9,9,0,200,+7:09.81,14469340,,,,,1 +19110,794,559,113,89,12,10,10,10,0,200,+7:46.54,14506070,,,,,1 +19111,794,518,114,98,18,11,11,11,0,197,,,,,,,13 +19112,794,563,113,41,25,12,12,12,0,196,,,,,,,14 +19113,794,513,111,83,32,13,13,13,0,196,,,,,,,14 +19114,794,509,108,33,20,14,14,14,0,191,,,,,,,19 +19115,794,528,109,12,21,,R,15,0,178,,,,,,,7 +19116,794,655,113,22,9,,R,16,0,170,,,,,,,3 +19117,794,656,113,99,24,,R,17,0,168,,,,,,,5 +19118,794,523,111,81,31,,R,18,0,142,,,,,,,7 +19119,794,611,113,8,6,,R,19,0,134,,,,,,,7 +19120,794,631,134,31,28,,R,20,0,120,,,,,,,48 +19121,794,593,113,16,27,,R,21,0,119,,,,,,,121 +19122,794,532,135,37,13,,R,22,0,112,,,,,,,80 +19123,794,561,113,49,23,,R,23,0,111,,,,,,,5 +19124,794,525,114,1,11,,R,24,0,90,,,,,,,48 +19125,794,657,113,4,5,,R,25,1,56,,,,,,,3 +19126,794,658,113,3,3,,R,26,0,54,,,,,,,121 +19127,794,558,113,42,22,,R,27,0,54,,,,,,,3 +19128,794,449,114,27,30,,R,28,0,53,,,,,,,3 +19129,794,533,113,39,26,,R,29,0,53,,,,,,,3 +19130,794,596,113,68,29,,R,30,0,53,,,,,,,31 +19131,794,659,129,23,1,,R,31,0,40,,,,,,,44 +19132,794,615,113,14,4,,R,32,0,39,,,,,,,20 +19133,794,592,136,5,15,,R,33,0,10,,,,,,,5 +19134,795,579,131,10,2,1,1,1,9,36,39:29.0,9569000,,,,,1 +19135,795,475,131,14,3,2,2,2,6,36,8.1,9577100,,,,,1 +19136,795,642,6,2,4,3,3,3,4,36,+1:40.5,9669500,,,,,1 +19137,795,632,6,6,8,4,4,4,3,36,+3:25.5,9774500,,,,,1 +19138,795,643,105,24,13,5,5,5,1,35,,,,,,,11 +19139,795,427,6,4,10,6,6,6,0,35,,,,,,,11 +19140,795,577,105,22,7,7,7,7,0,34,,,,,,,12 +19141,795,607,105,26,11,8,8,8,0,33,,,,,,,13 +19142,795,627,105,28,12,9,9,9,0,33,,,,,,,13 +19143,795,648,131,12,6,,R,10,0,21,,,,,,,44 +19144,795,608,132,30,1,,R,11,0,16,,,,,,,6 +19145,795,578,118,40,9,,R,12,0,8,,,,,,,6 +19146,795,554,105,20,5,,R,13,0,3,,,,,,,20 +19147,795,660,105,38,0,,W,14,0,0,,,,,,,54 +19148,795,641,6,48,0,,W,15,0,0,,,,,,,54 +19149,795,501,6,4,0,,W,16,0,0,,,,,,,54 +19150,796,579,131,8,1,1,1,1,8,100,54:23.8,10463800,,,,,1 +19151,796,475,131,10,2,2,2,2,6,100,0.3,10464100,,,,,1 +19152,796,577,105,18,4,3,3,3,4,100,57.1,10520900,,,,,1 +19153,796,643,105,16,7,4,4,4,4,99,,,,,,,11 +19154,796,608,6,6,9,5,5,5,2,97,,,,,,,13 +19155,796,554,105,14,6,6,6,6,0,97,,,,,,,13 +19156,796,578,6,2,5,7,7,7,0,95,,,,,,,15 +19157,796,624,128,22,14,8,8,8,0,92,,,,,,,18 +19158,796,627,105,28,13,9,9,9,0,92,,,,,,,18 +19159,796,650,128,24,12,10,10,10,0,90,,,,,,,88 +19160,796,660,6,30,16,11,11,11,0,88,,,,,,,55 +19161,796,427,6,4,8,,R,12,0,65,,,,,,,6 +19162,796,626,128,20,11,,R,13,0,44,,,,,,,7 +19163,796,547,105,32,15,,R,14,0,23,,,,,,,20 +19164,796,648,131,12,3,,R,15,0,21,,,,,,,20 +19165,796,661,105,26,10,,R,16,0,2,,,,,,,67 +19166,797,475,131,12,1,1,1,1,9,90,07:21.2,11241200,,,,,1 +19167,797,579,131,10,2,2,2,2,6,90,0.2,11241400,,,,,1 +19168,797,648,131,14,4,3,3,3,4,90,+1:11.8,11313000,,,,,1 +19169,797,641,131,50,5,4,4,4,3,89,,,,,,,11 +19170,797,577,105,4,9,5,5,5,2,89,,,,,,,11 +19171,797,578,6,16,12,6,6,6,0,87,,,,,,,13 +19172,797,662,128,26,23,7,7,7,0,81,,,,,,,19 +19173,797,651,105,46,16,8,8,8,0,79,,,,,,,45 +19174,797,663,118,28,15,9,9,9,0,72,,,,,,,114 +19175,797,427,6,18,13,,R,10,0,59,,,,,,,25 +19176,797,643,105,6,6,,R,11,0,47,,,,,,,5 +19177,797,356,87,40,25,,R,12,0,30,,,,,,,5 +19178,797,664,125,32,17,,R,13,0,30,,,,,,,51 +19179,797,581,105,42,24,,R,14,0,28,,,,,,,8 +19180,797,624,128,24,18,,R,15,0,26,,,,,,,51 +19181,797,456,105,44,20,,R,16,0,23,,,,,,,6 +19182,797,547,105,48,22,,R,17,0,22,,,,,,,23 +19183,797,501,118,30,7,,R,18,0,20,,,,,,,37 +19184,797,666,125,36,14,,R,19,0,19,,,,,,,7 +19185,797,665,125,38,19,,R,20,0,18,,,,,,,23 +19186,797,608,6,20,10,,R,21,0,16,,,,,,,7 +19187,797,609,105,8,8,,R,22,0,9,,,,,,,6 +19188,797,554,105,2,3,,R,23,0,9,,,,,,,44 +19189,797,626,128,22,11,,R,24,0,4,,,,,,,7 +19190,797,486,125,34,21,,W,25,0,0,,,,,,,5 +19191,798,579,131,18,1,1,1,1,8,50,25:04.4,8704400,,,,,1 +19192,798,641,131,14,9,2,2,2,6,50,0.7,8705100,,,,,1 +19193,798,608,6,4,4,3,3,3,4,50,46.2,8750600,,,,,1 +19194,798,554,105,36,6,4,4,4,3,50,+3:57.5,8941900,,,,,1 +19195,798,496,105,34,16,5,5,5,2,49,,,,,,,11 +19196,798,620,6,12,12,6,6,6,0,49,,,,,,,11 +19197,798,643,105,28,7,7,7,7,0,48,,,,,,,12 +19198,798,427,6,8,15,8,8,8,0,47,,,,,,,13 +19199,798,667,105,40,20,9,9,9,0,46,,,,,,,14 +19200,798,578,6,6,14,10,10,10,0,38,,,,,,,6 +19201,798,648,131,20,3,,R,11,0,32,,,,,,,6 +19202,798,577,105,30,10,,R,12,0,31,,,,,,,6 +19203,798,547,105,38,21,,R,13,0,31,,,,,,,22 +19204,798,475,131,16,2,,R,14,1,27,,,,,,,5 +19205,798,650,128,26,19,,R,15,0,26,,,,,,,5 +19206,798,624,128,22,18,,R,16,0,23,,,,,,,69 +19207,798,581,105,32,11,,R,17,0,22,,,,,,,22 +19208,798,501,118,42,13,,R,18,0,7,,,,,,,22 +19209,798,668,128,24,22,,R,19,0,7,,,,,,,5 +19210,798,663,118,44,17,,R,20,0,0,,,,,,,98 +19211,798,642,6,2,5,,W,21,0,0,,,,,,,54 +19212,798,633,6,10,8,,W,22,0,0,,,,,,,54 +19213,798,586,137,46,0,,W,23,0,0,,,,,,,54 +19214,799,579,105,2,3,1,1,1,8,87,00:55.8,10855800,,,,,1 +19215,799,642,6,10,1,2,2,2,6,87,+1:19.0,10934800,,,,,1 +19216,799,498,6,12,2,3,3,3,5,87,+2:01.0,10976800,,,,,1 +19217,799,427,6,26,5,4,4,4,3,86,,,,,,,11 +19218,799,625,128,20,15,5,5,5,2,85,,,,,,,12 +19219,799,501,105,28,11,6,6,6,0,84,,,,,,,13 +19220,799,669,105,8,10,7,7,7,0,83,,,,,,,14 +19221,799,640,105,30,13,8,8,8,0,83,,,,,,,14 +19222,799,620,6,16,12,9,9,9,0,82,,,,,,,15 +19223,799,554,128,18,17,,D,10,0,61,,,,,,,2 +19224,799,578,6,14,4,,D,11,0,52,,,,,,,2 +19225,799,670,105,4,6,,R,12,0,48,,,,,,,5 +19226,799,643,105,32,8,,R,13,0,37,,,,,,,44 +19227,799,671,128,22,16,,R,14,0,19,,,,,,,51 +19228,799,672,105,34,18,,R,15,0,19,,,,,,,6 +19229,799,627,6,24,14,,R,16,0,1,,,,,,,3 +19230,799,577,105,6,7,,W,17,0,0,,,,,,,54 +19231,799,496,105,36,9,,W,18,0,0,,,,,,,54 +19232,800,657,113,14,19,1,1,1,8,200,49:17.3,13757270,,,,,1 +19233,800,525,114,9,3,2,2,2,6,200,+1:09.95,13827220,,,,,1 +19234,800,658,113,2,1,3,3,3,5,200,+1:19.73,13837000,,,,,1 +19235,800,526,113,34,11,4,4,4,1.5,200,+2:52.68,13929950,,,,,1 +19236,800,673,113,73,14,5,5,5,2,200,+3:24.55,13961820,,,,,1 +19237,800,615,113,77,24,6,6,6,0,200,+3:47.55,13984820,,,,,1 +19238,800,528,109,7,6,7,7,7,0,200,+4:13.35,14010620,,,,,1 +19239,800,555,113,5,32,8,8,8,0,200,+5:01.17,14058440,,,,,1 +19240,800,674,113,28,25,9,9,9,0,200,+7:07.24,14184510,,,,,1 +19241,800,655,129,24,13,10,10,10,0,200,+7:07.69,14184960,,,,,1 +19242,800,656,113,45,27,11,11,11,0,200,+8:22.19,14259460,,,,,1 +19243,800,521,114,98,5,12,12,12,0,199,,,,,,,11 +19244,800,675,114,88,22,13,13,13,0,197,,,,,,,13 +19245,800,628,113,17,9,14,14,14,0,197,,,,,,,13 +19246,800,518,113,16,8,15,15,15,0,196,,,,,,,14 +19247,800,679,113,32,20,16,16,16,0,194,,,,,,,16 +19248,800,592,136,25,7,17,17,17,0,194,,,,,,,16 +19249,800,596,129,27,31,18,18,18,0,193,,,,,,,17 +19250,800,676,113,71,33,19,19,19,0,193,,,,,,,17 +19251,800,611,113,1,10,,R,20,0,191,,,,,,,20 +19252,800,597,113,35,12,,R,21,0,181,,,,,,,20 +19253,800,449,135,12,16,,R,22,0,172,,,,,,,31 +19254,800,520,113,31,17,23,23,23,0,168,,,,,,,8 +19255,800,512,138,43,4,,R,24,0,165,,,,,,,31 +19256,800,612,134,74,23,,R,25,0,165,,,,,,,22 +19257,800,659,113,99,30,,R,26,0,130,,,,,,,5 +19258,800,556,113,19,2,,R,27,0,111,,,,,,,3 +19259,800,509,113,38,28,,R,28,0,110,,,,,,,3 +19260,800,529,113,10,21,,R,29,0,105,,,,,,,67 +19261,800,677,139,65,29,,R,30,0,104,,,,,,,48 +19262,800,678,134,33,26,,R,31,0,101,,,,,,,23 +19263,800,593,113,15,15,,R,32,0,79,,,,,,,5 +19264,800,519,113,51,18,,R,33,0,74,,,,,,,3 +19265,801,579,105,26,1,1,1,1,9,36,44:42.4,9882400,,,,,1 +19266,801,427,6,8,6,2,2,2,6,36,24.2,9906600,,,,,1 +19267,801,475,105,22,9,3,3,3,4,35,,,,,,,11 +19268,801,498,6,10,5,4,4,4,1.5,35,,,,,,,11 +19269,801,429,128,18,8,5,5,5,2,35,,,,,,,11 +19270,801,669,105,20,13,6,6,6,0,35,,,,,,,11 +19271,801,644,105,30,11,7,7,7,0,34,,,,,,,12 +19272,801,642,6,4,3,,R,8,0,14,,,,,,,80 +19273,801,632,128,16,10,,R,9,0,14,,,,,,,5 +19274,801,554,128,12,7,,R,10,0,12,,,,,,,22 +19275,801,670,105,28,4,,R,11,0,3,,,,,,,5 +19276,801,498,6,6,2,,R,12,0,1,,,,,,,5 +19277,801,680,6,2,14,,R,13,0,1,,,,,,,5 +19278,801,643,105,24,12,,R,14,0,0,,,,,,,42 +19279,802,579,131,18,1,1,1,1,8,61,42:47.9,9767900,,,,,1 +19280,802,648,131,20,2,2,2,2,6,61,0.1,9768000,,,,,1 +19281,802,626,6,34,12,3,3,3,4,60,,,,,,,11 +19282,802,669,105,46,6,4,4,4,3,60,,,,,,,11 +19283,802,633,105,14,14,5,5,5,2,58,,,,,,,13 +19284,802,554,128,24,17,6,6,6,0,56,,,,,,,15 +19285,802,632,128,28,19,,R,7,0,50,,,,,,,109 +19286,802,427,6,4,9,,R,8,0,36,,,,,,,5 +19287,802,627,6,36,13,,R,9,0,27,,,,,,,5 +19288,802,670,105,12,5,,R,10,0,27,,,,,,,6 +19289,802,643,105,16,11,,R,11,0,24,,,,,,,5 +19290,802,663,105,42,16,,R,12,0,19,,,,,,,7 +19291,802,501,105,48,21,,R,13,0,19,,,,,,,48 +19292,802,478,131,22,7,,R,14,1,16,,,,,,,5 +19293,802,456,105,44,10,,R,15,0,15,,,,,,,86 +19294,802,498,6,2,4,,R,16,0,13,,,,,,,5 +19295,802,651,133,32,15,,R,17,0,10,,,,,,,5 +19296,802,681,128,30,20,,R,18,0,9,,,,,,,5 +19297,802,578,6,6,8,,R,19,0,9,,,,,,,5 +19298,802,650,128,26,18,,R,20,0,8,,,,,,,5 +19299,802,647,105,10,3,,R,21,0,1,,,,,,,7 +19300,802,644,105,40,0,,W,22,0,0,,,,,,,54 +19301,803,498,6,9,2,1,1,1,8.14,90,56:14.0,10574000,,,,,1 +19302,803,578,6,11,3,2,2,2,6.14,90,+1:10,,,,,,1 +19303,803,670,105,33,28,3,3,3,4.14,89,,,,,,,11 +19304,803,579,131,1,1,4,4,4,3.14,89,,,,,,,11 +19305,803,427,6,10,8,5,5,5,2,87,,,,,,,13 +19306,803,643,105,4,32,6,6,6,0,87,,,,,,,13 +19307,803,648,131,2,6,7,7,7,0,87,,,,,,,13 +19308,803,663,105,8,9,8,8,8,0,86,,,,,,,14 +19309,803,429,128,19,12,9,9,9,0,86,,,,,,,14 +19310,803,619,87,29,18,10,10,10,0,85,,,,,,,15 +19311,803,682,125,25,17,11,11,11,0,84,,,,,,,16 +19312,803,501,105,3,16,12,12,12,0,83,,,,,,,17 +19313,803,665,125,23,22,13,13,13,0,82,,,,,,,18 +19314,803,683,125,26,23,14,14,14,0,78,,,,,,,55 +19315,803,547,87,28,20,15,15,15,0,44,,,,,,,125 +19316,803,475,105,7,4,,R,16,0,80,,,,,,,109 +19317,803,684,125,22,19,,R,17,0,63,,,,,,,69 +19318,803,554,128,17,5,,R,18,0,54,,,,,,,22 +19319,803,456,105,5,7,,R,19,0,53,,,,,,,7 +19320,803,669,105,6,10,,R,20,0,44,,,,,,,3 +19321,803,633,105,32,27,,R,21,0,40,,,,,,,5 +19322,803,685,125,24,21,,R,22,0,40,,,,,,,3 +19323,803,686,6,12,14,,R,23,0,25,,,,,,,5 +19324,803,647,105,31,30,,R,24,0,21,,,,,,,5 +19325,803,645,128,18,13,,R,25,0,18,,,,,,,3 +19326,803,581,118,20,11,,R,26,0,16,,,,,,,5 +19327,803,626,6,14,15,,R,27,0,16,,,,,,,5 +19328,803,687,87,21,24,,R,28,0,4,,,,,,,44 +19329,803,688,87,30,25,,R,29,0,2,,,,,,,5 +19330,803,627,6,15,31,,R,30,0,2,,,,,,,5 +19331,803,689,87,27,26,,W,31,0,0,,,,,,,54 +19332,803,690,87,30,29,,W,32,0,0,,,,,,,54 +19333,804,579,131,18,1,1,1,1,8,22,45:45.8,13545800,,,,,1 +19334,804,498,6,1,5,2,2,2,3,22,+1:36.5,13642300,,,,,1 +19335,804,427,6,2,7,3,3,3,4,22,+5:08.6,13854400,,,,,1 +19336,804,648,131,19,23,4,4,4,4,22,+6:06.5,13912300,,,,,1 +19337,804,644,105,7,15,5,5,5,2,22,+8:50.5,14076300,,,,,1 +19338,804,641,6,4,13,6,6,6,0,21,,,,,,,11 +19339,804,501,105,15,14,7,7,7,0,21,,,,,,,11 +19340,804,627,6,25,11,8,8,8,0,21,,,,,,,11 +19341,804,626,6,24,12,9,9,9,0,20,,,,,,,12 +19342,804,554,128,9,9,10,10,10,0,20,,,,,,,12 +19343,804,669,105,14,19,,R,11,0,18,,,,,,,38 +19344,804,691,131,21,13,,R,12,0,10,,,,,,,20 +19345,804,645,128,11,16,,R,13,0,8,,,,,,,36 +19346,804,692,140,22,21,,R,14,0,8,,,,,,,5 +19347,804,478,131,20,4,,R,15,0,7,,,,,,,95 +19348,804,632,128,10,4,,R,16,0,4,,,,,,,36 +19349,804,578,6,3,3,,R,17,0,3,,,,,,,7 +19350,804,643,105,8,17,,R,18,0,2,,,,,,,95 +19351,804,475,105,16,3,,R,19,0,1,,,,,,,67 +19352,804,429,128,12,20,,R,20,0,0,,,,,,,22 +19353,804,670,105,6,8,,W,21,0,0,,,,,,,3 +19354,804,633,105,5,10,,W,22,0,0,,,,,,,54 +19355,804,663,105,17,22,,W,23,0,0,,,,,,,54 +19356,805,579,131,4,2,1,1,1,9,66,00:34.5,10834500,,,,,1 +19357,805,498,6,20,1,2,2,2,6,66,57.8,10892300,,,,,1 +19358,805,478,131,6,7,3,3,3,4,65,,,,,,,11 +19359,805,643,105,30,12,4,4,4,3,64,,,,,,,12 +19360,805,644,105,28,9,5,5,5,2,64,,,,,,,12 +19361,805,663,105,18,8,6,6,6,0,64,,,,,,,12 +19362,805,620,6,24,11,7,7,7,0,61,,,,,,,15 +19363,805,680,6,2,16,8,8,8,0,58,,,,,,,18 +19364,805,648,131,8,5,,R,9,0,38,,,,,,,69 +19365,805,427,6,26,4,,R,10,0,33,,,,,,,5 +19366,805,578,6,22,6,,R,11,0,30,,,,,,,44 +19367,805,501,105,34,13,,R,12,0,23,,,,,,,94 +19368,805,475,105,32,3,,R,13,0,21,,,,,,,94 +19369,805,693,128,14,15,,R,14,0,10,,,,,,,7 +19370,805,554,128,10,14,,R,15,0,8,,,,,,,8 +19371,805,645,128,12,10,,R,16,0,0,,,,,,,48 +19372,805,626,6,24,0,,W,17,0,0,,,,,,,3 +19373,806,579,131,16,1,1,1,1,8,80,47:47.9,10067900,,,,,1 +19374,806,578,6,40,7,2,2,2,6,79,,,,,,,11 +19375,806,620,6,38,13,3,3,3,2,78,,,,,,,12 +19376,806,478,131,12,8,4,4,4,3,77,,,,,,,13 +19377,806,427,6,30,11,5,5,5,2,75,,,,,,,15 +19378,806,693,128,42,18,6,6,6,0,75,,,,,,,15 +19379,806,581,118,10,16,7,7,7,0,75,,,,,,,15 +19380,806,627,105,26,20,8,8,8,0,74,,,,,,,16 +19381,806,644,105,18,9,9,9,9,0,74,,,,,,,16 +19382,806,475,105,28,3,10,10,10,0,71,,,,,,,19 +19383,806,672,105,8,19,11,11,11,0,70,,,,,,,88 +19384,806,647,6,34,2,,R,12,0,48,,,,,,,5 +19385,806,633,105,22,6,,R,13,0,42,,,,,,,8 +19386,806,648,131,14,4,,R,14,0,36,,,,,,,3 +19387,806,643,105,24,10,,R,15,0,34,,,,,,,22 +19388,806,577,105,20,14,,R,16,0,32,,,,,,,7 +19389,806,498,6,32,5,,R,17,0,16,,,,,,,6 +19390,806,626,6,6,15,,R,18,0,16,,,,,,,5 +19391,806,645,128,46,17,,R,19,0,13,,,,,,,7 +19392,806,554,128,44,12,,R,20,0,2,,,,,,,5 +19393,806,694,105,20,21,,F,21,0,0,,,,,,,81 +19394,807,578,6,38,3,1,1,1,8,80,13:52.1,11632100,,,,,1 +19395,807,577,105,14,7,2,2,2,6,80,+1:13.2,11705300,,,,,1 +19396,807,579,131,2,2,3,3,3,4,79,,,,,,,11 +19397,807,643,105,10,11,4,4,4,3,79,,,,,,,11 +19398,807,648,131,4,12,5,5,5,2,79,,,,,,,14 +19399,807,580,105,16,13,6,6,6,0,76,,,,,,,14 +19400,807,627,105,26,20,7,7,7,0,74,,,,,,,16 +19401,807,663,105,28,14,8,8,8,0,74,,,,,,,16 +19402,807,669,105,18,15,9,9,9,0,68,,,,,,,55 +19403,807,644,105,12,10,,R,10,0,58,,,,,,,23 +19404,807,640,105,22,21,,R,11,0,57,,,,,,,5 +19405,807,478,131,6,9,,R,12,0,50,,,,,,,98 +19406,807,427,6,40,8,,R,13,0,47,,,,,,,6 +19407,807,650,128,48,16,,R,14,0,37,,,,,,,5 +19408,807,501,105,24,4,,R,15,0,29,,,,,,,7 +19409,807,475,105,8,6,,R,16,0,20,,,,,,,94 +19410,807,554,128,46,18,,R,17,0,17,,,,,,,23 +19411,807,680,6,30,19,,R,18,0,16,,,,,,,5 +19412,807,647,132,34,1,,R,19,1,10,,,,,,,8 +19413,807,633,132,36,5,,R,20,0,2,,,,,,,23 +19414,807,626,6,20,17,,R,21,0,2,,,,,,,5 +19415,807,581,118,42,0,,W,22,0,0,,,,,,,3 +19416,808,647,6,10,1,1,1,1,9,97,01:04.6,10864600,,,,,1 +19417,808,633,6,14,3,2,2,2,6,96,,,,,,,11 +19418,808,498,105,4,5,3,3,3,4,96,,,,,,,11 +19419,808,578,6,16,6,4,4,4,3,96,,,,,,,11 +19420,808,695,105,8,9,5,5,5,2,96,,,,,,,11 +19421,808,554,128,30,11,6,6,6,0,94,,,,,,,13 +19422,808,427,128,28,7,7,7,7,0,91,,,,,,,16 +19423,808,696,87,22,16,8,8,8,0,90,,,,,,,17 +19424,808,689,87,20,12,9,9,9,0,87,,,,,,,88 +19425,808,626,128,26,8,,R,10,0,67,,,,,,,36 +19426,808,579,105,2,2,,R,11,0,36,,,,,,,7 +19427,808,697,105,6,15,,R,12,0,32,,,,,,,7 +19428,808,642,6,12,4,,R,13,0,31,,,,,,,3 +19429,808,496,128,32,10,,R,14,0,24,,,,,,,6 +19430,808,649,141,34,14,,R,15,0,21,,,,,,,24 +19431,808,698,87,24,13,,R,16,0,20,,,,,,,36 +19432,809,657,113,14,1,1,1,1,9,200,53:01.7,13981690,,,,,1 +19433,809,656,113,16,12,2,2,2,6,200,+3:30.87,14192560,,,,,1 +19434,809,611,113,3,9,3,3,3,2,200,+4:11.50,14233190,,,,,1 +19435,809,615,113,59,2,4,4,4,1.5,200,+4:39.24,14260930,,,,,1 +19436,809,658,113,5,3,5,5,5,2,200,+7:49.64,14451330,,,,,1 +19437,809,556,113,48,21,6,6,6,0,200,+8:10.21,14471900,,,,,1 +19438,809,509,113,2,25,7,7,7,0,200,+8:46.02,14507710,,,,,1 +19439,809,679,129,12,20,8,8,8,0,200,+10:04.55,14586240,,,,,1 +19440,809,529,114,98,6,9,9,9,0,196,,,,,,,3 +19441,809,653,113,53,32,10,10,10,0,193,,,,,,,17 +19442,809,699,113,9,26,11,11,11,0,191,,,,,,,3 +19443,809,700,113,73,19,12,12,12,0,190,,,,,,,88 +19444,809,675,114,88,4,13,13,13,0,184,,,,,,,5 +19445,809,525,134,8,31,14,14,14,0,183,,,,,,,50 +19446,809,701,113,49,28,15,15,15,0,177,,,,,,,121 +19447,809,449,113,92,10,16,16,16,0,177,,,,,,,109 +19448,809,654,113,23,14,17,17,17,0,176,,,,,,,117 +19449,809,613,113,22,22,,R,18,0,169,,,,,,,44 +19450,809,677,113,62,18,,R,19,0,166,,,,,,,44 +19451,809,628,114,51,29,,R,20,0,151,,,,,,,22 +19452,809,673,142,83,23,,R,21,0,146,,,,,,,7 +19453,809,559,114,77,24,,R,22,0,115,,,,,,,3 +19454,809,659,113,55,7,,R,23,0,107,,,,,,,25 +19455,809,518,110,4,27,,R,24,0,94,,,,,,,80 +19456,809,555,113,7,17,,R,25,0,89,,,,,,,121 +19457,809,593,113,21,8,,R,26,0,86,,,,,,,5 +19458,809,528,107,38,15,,R,27,0,76,,,,,,,3 +19459,809,520,113,41,13,,R,28,0,53,,,,,,,3 +19460,809,521,114,97,16,,R,29,0,42,,,,,,,95 +19461,809,655,113,99,30,,R,30,0,30,,,,,,,121 +19462,809,702,139,29,11,,R,31,0,14,,,,,,,44 +19463,809,512,143,56,33,,R,32,0,6,,,,,,,80 +19464,809,612,129,32,5,,R,33,0,3,,,,,,,3 +19465,810,647,6,2,1,1,1,1,8,90,53:35.8,10415800,,,,,1 +19466,810,642,6,6,3,2,2,2,6,90,10.4,10426200,,,,,1 +19467,810,697,105,16,13,3,3,3,2,89,,,,,,,11 +19468,810,578,6,8,6,4,4,4,3,89,,,,,,,11 +19469,810,640,105,18,7,5,5,5,2,88,,,,,,,12 +19470,810,427,128,24,12,6,6,6,0,87,,,,,,,13 +19471,810,627,6,10,8,7,7,7,0,86,,,,,,,14 +19472,810,581,133,36,16,8,8,8,0,84,,,,,,,16 +19473,810,475,125,34,9,9,9,9,0,83,,,,,,,17 +19474,810,633,6,4,4,,R,10,1,67,,,,,,,37 +19475,810,664,125,28,14,,R,11,0,63,,,,,,,5 +19476,810,501,128,20,10,,R,12,0,59,,,,,,,7 +19477,810,660,125,30,17,,N,13,0,52,,,,,,,62 +19478,810,579,105,12,2,,R,14,0,36,,,,,,,109 +19479,810,643,128,22,19,,R,15,0,28,,,,,,,7 +19480,810,498,105,14,5,,R,16,0,22,,,,,,,109 +19481,810,663,87,32,18,,R,17,0,19,,,,,,,68 +19482,810,456,125,26,11,,R,18,0,14,,,,,,,5 +19483,810,651,133,38,15,,R,19,0,7,,,,,,,37 +19484,811,647,6,10,2,1,1,1,8,36,48:30.3,10110300,,,,,1 +19485,811,633,6,8,5,2,2,2,6,36,+2:48.2,10278500,,,,,1 +19486,811,670,105,28,16,3,3,3,4,35,,,,,,,11 +19487,811,640,105,30,9,4,4,4,3,35,,,,,,,11 +19488,811,427,128,18,8,5,5,5,2,35,,,,,,,11 +19489,811,578,6,14,7,6,6,6,0,35,,,,,,,11 +19490,811,501,128,20,12,7,7,7,0,33,,,,,,,13 +19491,811,627,6,32,13,8,8,8,0,33,,,,,,,13 +19492,811,693,128,38,15,9,9,9,0,32,,,,,,,14 +19493,811,632,133,24,11,10,10,10,0,30,,,,,,,16 +19494,811,429,125,40,18,11,11,11,0,29,,,,,,,17 +19495,811,660,105,6,10,,R,12,0,35,,,,,,,3 +19496,811,651,133,22,17,,R,13,0,19,,,,,,,5 +19497,811,642,6,12,4,,R,14,0,16,,,,,,,5 +19498,811,579,105,4,1,,R,15,0,13,,,,,,,5 +19499,811,498,105,2,3,,R,16,1,11,,,,,,,37 +19500,811,554,128,16,14,,R,17,0,9,,,,,,,5 +19501,811,581,133,26,16,,R,18,0,4,,,,,,,8 +19502,811,681,141,34,20,,R,19,0,3,,,,,,,5 +19503,811,703,144,36,19,,R,20,0,0,,,,,,,7 +19504,812,578,6,16,7,1,1,1,8,60,44:18.6,9858600,,,,,1 +19505,812,579,105,18,4,2,2,2,7,60,1,9859600,,,,,1 +19506,812,498,105,20,5,3,3,3,4,60,1.4,9860000,,,,,1 +19507,812,647,6,10,1,4,4,4,3,60,4.6,9863200,,,,,1 +19508,812,642,6,14,6,5,5,5,2,60,+1:07.6,9926200,,,,,1 +19509,812,633,6,12,3,6,6,6,0,60,+1:15.9,9934500,,,,,1 +19510,812,640,105,46,9,7,7,7,0,58,,,,,,,12 +19511,812,627,6,44,10,8,8,8,0,56,,,,,,,14 +19512,812,670,105,22,8,9,9,9,0,55,,,,,,,15 +19513,812,554,128,2,22,10,10,10,0,55,,,,,,,15 +19514,812,619,87,38,12,11,11,11,0,55,,,,,,,15 +19515,812,660,125,48,21,12,12,12,0,53,,,,,,,17 +19516,812,581,133,28,17,13,13,13,0,52,,,,,,,18 +19517,812,704,133,30,18,14,14,14,0,50,,,,,,,88 +19518,812,589,127,32,25,15,15,15,0,43,,,,,,,50 +19519,812,697,105,24,2,,R,16,0,42,,,,,,,5 +19520,812,475,87,36,13,,R,17,0,38,,,,,,,8 +19521,812,669,125,42,11,,R,18,0,29,,,,,,,24 +19522,812,625,127,34,15,,R,19,0,18,,,,,,,5 +19523,812,663,87,40,14,,R,20,0,17,,,,,,,67 +19524,812,427,128,4,23,,R,21,0,14,,,,,,,7 +19525,812,651,133,26,16,,R,22,0,9,,,,,,,8 +19526,812,501,128,6,20,,R,23,0,4,,,,,,,5 +19527,812,643,128,8,24,,R,24,0,4,,,,,,,109 +19528,812,456,125,50,19,,R,25,0,2,,,,,,,80 +19529,813,647,6,5,1,1,1,1,8.5,90,50:00.0,10200000,,,,,1 +19530,813,579,105,23,4,2,2,2,6,90,+1:00.0,10260000,,,,,1 +19531,813,642,6,6,5,3,3,3,4,88,,,,,,,12 +19532,813,498,105,24,2,4,4,4,3.5,88,,,,,,,12 +19533,813,578,6,8,3,5,5,5,2,87,,,,,,,13 +19534,813,697,105,25,16,6,6,6,0,82,,,,,,,18 +19535,813,669,125,10,19,7,7,7,0,82,,,,,,,18 +19536,813,663,87,16,11,8,8,8,0,80,,,,,,,88 +19537,813,687,87,20,14,9,9,9,0,79,,,,,,,45 +19538,813,627,6,9,24,10,10,10,0,78,,,,,,,55 +19539,813,706,87,18,15,,R,11,0,79,,,,,,,20 +19540,813,666,125,14,10,,R,12,0,70,,,,,,,86 +19541,813,633,6,7,6,,R,13,0,65,,,,,,,109 +19542,813,670,105,26,7,,R,14,0,65,,,,,,,5 +19543,813,689,87,19,21,,R,15,0,56,,,,,,,25 +19544,813,581,133,2,23,,R,16,0,56,,,,,,,20 +19545,813,486,133,4,27,,R,17,0,54,,,,,,,8 +19546,813,456,125,12,28,,R,18,0,50,,,,,,,36 +19547,813,640,105,31,26,,R,19,0,34,,,,,,,8 +19548,813,651,133,1,12,,R,20,0,31,,,,,,,8 +19549,813,554,128,30,22,,R,21,0,30,,,,,,,48 +19550,813,707,125,15,20,,R,22,0,24,,,,,,,80 +19551,813,427,128,29,8,,R,23,0,14,,,,,,,109 +19552,813,708,133,3,17,,R,24,0,14,,,,,,,8 +19553,813,501,128,28,9,,R,25,0,5,,,,,,,10 +19554,813,664,125,11,13,,R,26,0,0,,,,,,,31 +19555,813,705,87,22,25,,R,27,0,0,,,,,,,69 +19556,814,642,6,12,3,1,1,1,8,18,02:25.0,10945000,,,,,1 +19557,814,579,105,5,2,2,2,2,6,18,+1:04.0,11009000,,,,,1 +19558,814,578,6,3,4,3,3,3,4,18,+1:43.6,11048600,,,,,1 +19559,814,697,105,7,7,4,4,4,3,18,+8:48.6,11473600,,,,,1 +19560,814,640,105,17,11,5,5,5,2,17,,,,,,,11 +19561,814,475,87,19,12,6,6,6,0,17,,,,,,,11 +19562,814,680,6,18,19,7,7,7,0,17,,,,,,,11 +19563,814,647,6,1,1,8,8,8,0,17,,,,,,,11 +19564,814,478,144,31,14,9,9,9,0,17,,,,,,,11 +19565,814,627,6,20,22,10,10,10,0,17,,,,,,,11 +19566,814,690,87,40,20,11,11,11,0,16,,,,,,,12 +19567,814,692,144,24,28,12,12,12,0,16,,,,,,,12 +19568,814,664,125,16,16,13,13,13,0,16,,,,,,,12 +19569,814,710,145,36,26,14,14,14,0,16,,,,,,,12 +19570,814,709,145,37,32,15,15,15,0,15,,,,,,,13 +19571,814,455,144,22,29,16,16,16,0,14,,,,,,,14 +19572,814,633,6,4,6,,R,17,0,15,,,,,,,5 +19573,814,689,87,38,17,,R,18,0,15,,,,,,,5 +19574,814,670,105,8,8,,R,19,0,13,,,,,,,22 +19575,814,431,146,35,24,,R,20,0,12,,,,,,,43 +19576,814,660,125,12,25,,R,21,0,12,,,,,,,31 +19577,814,711,144,26,34,,R,22,0,10,,,,,,,31 +19578,814,712,144,23,18,,R,23,0,8,,,,,,,31 +19579,814,554,128,9,9,,R,24,0,7,,,,,,,6 +19580,814,501,128,11,10,,R,25,0,6,,,,,,,5 +19581,814,669,125,14,15,,R,26,0,6,,,,,,,22 +19582,814,713,147,28,21,,R,27,0,3,,,,,,,31 +19583,814,714,6,34,27,,R,28,0,3,,,,,,,31 +19584,814,715,147,41,30,,R,29,0,2,,,,,,,31 +19585,814,427,128,10,5,,R,30,0,1,,,,,,,24 +19586,814,456,125,15,13,,R,31,0,1,,,,,,,5 +19587,814,716,144,32,33,,R,32,0,1,,,,,,,31 +19588,814,717,147,21,23,,R,33,0,0,,,,,,,31 +19589,814,718,144,30,31,,R,34,0,0,,,,,,,48 +19590,815,647,6,46,2,1,1,1,9,65,01:34.4,10894400,,,,,1 +19591,815,642,6,24,3,2,2,2,6,65,+1:12.93,10967330,,,,,1 +19592,815,578,6,26,7,3,3,3,4,65,+1:35.96,10990360,,,,,1 +19593,815,579,105,32,1,4,4,4,1.5,64,,,,,,,11 +19594,815,691,105,34,11,5,5,5,2,62,,,,,,,13 +19595,815,633,6,28,6,6,6,6,0,62,,,,,,,13 +19596,815,663,87,20,9,7,7,7,0,62,,,,,,,13 +19597,815,720,6,40,19,8,8,8,0,51,,,,,,,111 +19598,815,719,133,18,18,9,9,9,0,49,,,,,,,116 +19599,815,622,105,4,20,,R,10,0,54,,,,,,,6 +19600,815,640,105,42,8,,R,11,0,49,,,,,,,7 +19601,815,670,105,36,5,,R,12,0,46,,,,,,,5 +19602,815,427,128,8,4,,R,13,0,43,,,,,,,109 +19603,815,554,128,6,12,,R,14,0,37,,,,,,,51 +19604,815,697,105,30,10,,R,15,0,29,,,,,,,5 +19605,815,651,133,16,15,,R,16,0,29,,,,,,,5 +19606,815,721,6,38,17,,R,17,0,17,,,,,,,5 +19607,815,632,133,14,16,,R,18,0,1,,,,,,,5 +19608,815,680,6,2,13,,R,19,0,0,,,,,,,20 +19609,815,627,6,10,14,,R,20,0,0,,,,,,,20 +19610,816,579,105,50,2,1,1,1,9,80,49:45.9,10185900,,,,,1 +19611,816,642,6,6,3,2,2,2,6,80,1.4,10187300,,,,,1 +19612,816,633,6,2,5,3,3,3,4,79,,,,,,,11 +19613,816,578,6,8,6,4,4,4,3,79,,,,,,,11 +19614,816,427,128,36,8,5,5,5,2,79,,,,,,,11 +19615,816,643,128,40,16,6,6,6,0,77,,,,,,,13 +19616,816,644,105,56,12,7,7,7,0,76,,,,,,,14 +19617,816,620,6,10,11,8,8,8,0,75,,,,,,,15 +19618,816,501,128,38,15,9,9,9,0,75,,,,,,,15 +19619,816,589,127,32,25,10,10,10,0,72,,,,,,,18 +19620,816,669,105,44,23,11,11,11,0,72,,,,,,,18 +19621,816,689,87,46,24,12,12,12,0,70,,,,,,,88 +19622,816,475,87,28,10,13,13,13,0,70,,,,,,,88 +19623,816,717,147,48,29,14,14,14,0,67,,,,,,,53 +19624,816,704,133,16,28,15,15,15,0,67,,,,,,,53 +19625,816,627,6,64,17,16,16,16,0,65,,,,,,,112 +19626,816,647,6,4,1,,R,17,0,79,,,,,,,3 +19627,816,697,105,52,7,,R,18,0,77,,,,,,,60 +19628,816,670,105,54,4,,R,19,0,75,,,,,,,3 +19629,816,640,105,58,9,,R,20,0,70,,,,,,,5 +19630,816,486,125,20,22,,N,21,0,61,,,,,,,62 +19631,816,663,87,30,19,,N,22,0,57,,,,,,,62 +19632,816,664,125,24,18,,N,23,0,56,,,,,,,62 +19633,816,722,6,12,20,,R,24,0,40,,,,,,,5 +19634,816,456,125,22,14,,R,25,0,33,,,,,,,37 +19635,816,622,105,2,21,,R,26,0,18,,,,,,,5 +19636,816,625,127,34,13,,R,27,0,17,,,,,,,5 +19637,816,667,133,18,26,,R,28,0,14,,,,,,,5 +19638,816,660,125,26,30,,R,29,0,7,,,,,,,69 +19639,816,651,133,14,27,,R,30,0,6,,,,,,,5 +19640,817,641,6,30,2,1,1,1,9,62,01:46.1,10906100,,,,,1 +19641,817,723,6,42,5,2,2,2,6,62,+2:37.2,11063300,,,,,1 +19642,817,554,128,6,7,3,3,3,4,61,,,,,,,11 +19643,817,663,148,22,13,4,4,4,3,60,,,,,,,12 +19644,817,689,87,26,15,5,5,5,2,59,,,,,,,13 +19645,817,640,105,38,8,6,6,6,0,58,,,,,,,14 +19646,817,721,6,44,19,7,7,7,0,56,,,,,,,16 +19647,817,688,87,24,17,8,8,8,0,55,,,,,,,17 +19648,817,669,141,10,11,,R,9,0,52,,,,,,,5 +19649,817,609,6,32,4,,R,10,0,51,,,,,,,121 +19650,817,501,105,40,18,,R,11,0,31,,,,,,,5 +19651,817,475,133,46,9,,W,12,0,24,,,,,,,54 +19652,817,651,133,20,12,,W,13,0,24,,,,,,,54 +19653,817,626,128,8,3,,R,14,0,20,,,,,,,21 +19654,817,642,6,28,1,,R,15,0,16,,,,,,,121 +19655,817,581,133,18,6,,R,16,0,12,,,,,,,86 +19656,817,725,133,16,10,,R,17,0,12,,,,,,,86 +19657,817,717,147,2,14,,R,18,0,4,,,,,,,5 +19658,817,724,144,4,16,,R,19,0,4,,,,,,,95 +19659,817,627,6,12,20,,R,20,0,2,,,,,,,3 +19660,817,720,141,50,21,,R,21,0,1,,,,,,,121 +19661,818,526,114,98,7,1,1,1,8,200,52:41.9,13961880,,,,,1 +19662,818,509,113,59,10,2,2,2,6,200,+4:02.33,14204210,,,,,1 +19663,818,611,113,18,5,3,3,3,4,200,+6:11.61,14333490,,,,,1 +19664,818,518,110,1,6,4,4,4,3,200,+6:48.34,14370220,,,,,1 +19665,818,656,113,33,20,5,5,5,2,200,+8:40.15,14482030,,,,,1 +19666,818,525,113,77,21,6,6,6,0,200,+9:24.32,14526200,,,,,1 +19667,818,592,113,37,23,7,7,7,0,200,+10:35.24,14597120,,,,,1 +19668,818,726,113,54,14,8,8,8,0,200,+12:00.61,14682490,,,,,1 +19669,818,629,113,22,9,9,9,9,0,200,+12:23.76,14705640,,,,,1 +19670,818,593,113,5,31,10,10,10,0,200,+13:37.78,14779660,,,,,1 +19671,818,658,113,4,3,11,11,11,0,200,+14:21.72,14823600,,,,,1 +19672,818,727,107,29,26,12,12,12,0,200,+16:05.10,14926980,,,,,1 +19673,818,728,113,14,16,13,13,13,0,200,+16:55.65,14977530,,,,,1 +19674,818,729,129,7,15,14,14,14,0,200,+18:48.66,15090540,,,,,1 +19675,818,730,149,65,13,15,15,15,0,197,,,,,,,13 +19676,818,513,111,81,24,16,16,16,0,193,,,,,,,17 +19677,818,657,113,26,8,17,17,17,1,191,,,,,,,38 +19678,818,521,113,16,11,18,18,18,0,187,,,,,,,53 +19679,818,731,110,2,12,19,19,19,0,184,,,,,,,116 +19680,818,675,110,8,28,20,20,20,0,184,,,,,,,116 +19681,818,732,113,31,33,21,21,21,0,182,,,,,,,114 +19682,818,677,139,48,29,,R,22,0,162,,,,,,,44 +19683,818,449,113,34,22,,R,23,0,130,,,,,,,51 +19684,818,529,150,27,30,,R,24,0,93,,,,,,,51 +19685,818,699,113,36,4,,R,25,0,84,,,,,,,126 +19686,818,628,113,73,32,,R,26,0,77,,,,,,,24 +19687,818,615,113,28,1,,R,27,0,71,,,,,,,101 +19688,818,520,113,67,18,,R,28,0,65,,,,,,,43 +19689,818,702,113,93,25,,R,29,0,49,,,,,,,7 +19690,818,733,113,21,27,,R,30,0,41,,,,,,,126 +19691,818,647,6,12,19,,R,31,0,40,,,,,,,36 +19692,818,734,129,55,17,,R,32,0,34,,,,,,,6 +19693,818,612,113,9,2,,R,33,0,20,,,,,,,94 +19694,819,647,6,4,1,1,1,1,9,36,03:46.3,11026300,,,,,1 +19695,819,642,6,2,2,2,2,2,6,36,+1:55.2,11141500,,,,,1 +19696,819,626,128,14,4,3,3,3,4,36,+4:28.4,11294700,,,,,1 +19697,819,578,87,8,6,4,4,4,3,35,,,,,,,11 +19698,819,632,133,28,8,5,5,5,2,34,,,,,,,12 +19699,819,689,87,10,9,6,6,6,0,34,,,,,,,12 +19700,819,735,6,34,13,7,7,7,0,33,,,,,,,13 +19701,819,660,128,18,19,8,8,8,0,33,,,,,,,13 +19702,819,688,87,12,12,9,9,9,0,33,,,,,,,13 +19703,819,669,141,20,18,10,10,10,0,32,,,,,,,14 +19704,819,651,133,24,14,11,11,11,0,32,,,,,,,14 +19705,819,736,133,30,20,12,12,12,0,32,,,,,,,14 +19706,819,703,144,38,21,13,13,13,0,31,,,,,,,15 +19707,819,737,141,44,22,14,14,14,0,30,,,,,,,16 +19708,819,738,133,42,16,15,15,15,0,30,,,,,,,16 +19709,819,739,152,40,15,,R,16,0,17,,,,,,,5 +19710,819,641,6,6,3,,R,17,0,13,,,,,,,3 +19711,819,554,128,16,5,,R,18,0,13,,,,,,,3 +19712,819,663,148,36,7,,R,19,0,10,,,,,,,20 +19713,819,627,6,22,17,,R,20,0,6,,,,,,,7 +19714,819,581,133,26,11,,R,21,0,3,,,,,,,86 +19715,819,475,151,32,10,,R,22,0,0,,,,,,,5 +19716,820,647,6,8,1,1,1,1,9,77,00:00.0,10800000,,,,,1 +19717,820,642,6,10,2,2,2,2,6,76,,,,,,,11 +19718,820,641,6,12,3,3,3,3,4,75,,,,,,,12 +19719,820,626,128,2,5,4,4,4,3,74,,,,,,,13 +19720,820,427,141,44,6,5,5,5,2,72,,,,,,,15 +19721,820,581,133,22,8,6,6,6,0,70,,,,,,,17 +19722,820,554,128,4,4,7,7,7,0,70,,,,,,,17 +19723,820,741,105,28,18,8,8,8,0,70,,,,,,,17 +19724,820,651,133,20,14,9,9,9,0,70,,,,,,,17 +19725,820,704,133,24,10,10,10,10,0,68,,,,,,,19 +19726,820,723,6,34,17,11,11,11,0,66,,,,,,,45 +19727,820,740,6,38,16,12,12,12,0,63,,,,,,,111 +19728,820,669,128,6,7,,R,13,0,56,,,,,,,109 +19729,820,578,87,42,15,,R,14,0,51,,,,,,,80 +19730,820,640,105,16,12,,R,15,0,34,,,,,,,23 +19731,820,687,126,26,13,,R,16,0,17,,,,,,,8 +19732,820,627,6,14,9,,R,17,0,17,,,,,,,5 +19733,820,660,141,32,20,,R,18,0,15,,,,,,,5 +19734,820,501,105,18,11,,R,19,0,7,,,,,,,6 +19735,820,722,6,40,19,,R,20,0,2,,,,,,,5 +19736,821,647,6,15,2,1,1,1,9,85,46:11.0,9971000,,,,,1 +19737,821,641,6,17,3,2,2,2,6,84,,,,,,,11 +19738,821,578,87,9,7,3,3,3,4,83,,,,,,,12 +19739,821,742,125,6,8,4,4,4,3,83,,,,,,,12 +19740,821,743,125,5,9,5,5,5,2,82,,,,,,,13 +19741,821,642,6,16,1,6,6,6,0,82,,,,,,,13 +19742,821,686,87,8,6,7,7,7,0,82,,,,,,,13 +19743,821,456,6,14,19,8,8,8,0,82,,,,,,,13 +19744,821,744,125,4,5,9,9,9,0,82,,,,,,,13 +19745,821,687,6,21,20,10,10,10,0,81,,,,,,,14 +19746,821,669,128,26,10,11,11,11,0,81,,,,,,,14 +19747,821,745,126,1,12,12,12,12,0,80,,,,,,,15 +19748,821,723,6,19,15,13,13,13,0,80,,,,,,,15 +19749,821,660,141,27,23,14,14,14,0,79,,,,,,,16 +19750,821,651,133,31,29,15,15,15,0,79,,,,,,,16 +19751,821,664,125,3,17,16,16,16,0,79,,,,,,,16 +19752,821,501,105,33,32,17,17,17,0,78,,,,,,,17 +19753,821,746,105,34,28,18,18,18,0,77,,,,,,,18 +19754,821,640,105,32,31,19,19,19,0,76,,,,,,,19 +19755,821,688,87,10,18,20,20,20,0,76,,,,,,,19 +19756,821,705,148,23,25,21,21,21,0,75,,,,,,,88 +19757,821,689,87,11,13,22,22,22,0,69,,,,,,,116 +19758,821,581,133,29,14,,R,23,0,73,,,,,,,80 +19759,821,708,133,30,11,,R,24,0,44,,,,,,,5 +19760,821,475,151,12,16,,R,25,0,36,,,,,,,5 +19761,821,427,128,25,21,,R,26,0,21,,,,,,,6 +19762,821,738,133,28,26,,R,27,0,19,,,,,,,5 +19763,821,747,87,7,22,,R,28,0,14,,,,,,,5 +19764,821,626,128,24,4,,R,29,0,9,,,,,,,8 +19765,821,721,6,20,24,,R,30,0,3,,,,,,,23 +19766,821,748,105,35,27,,R,31,0,0,,,,,,,23 +19767,821,749,152,2,0,,W,32,0,0,,,,,,,54 +19768,822,647,6,101,1,1,1,1,9,18,06:13.3,11173300,,,,,1 +19769,822,642,6,102,2,2,2,2,6,18,14.1,11187400,,,,,1 +19770,822,723,6,117,6,3,3,3,4,18,+7:10.1,11603400,,,,,1 +19771,822,641,6,103,5,4,4,4,3,17,,,,,,,11 +19772,822,554,128,108,11,5,5,5,2,17,,,,,,,11 +19773,822,736,6,119,17,6,6,6,0,16,,,,,,,12 +19774,822,751,144,121,12,7,7,7,0,16,,,,,,,12 +19775,822,724,144,125,15,8,8,8,0,16,,,,,,,12 +19776,822,752,147,124,22,9,9,9,0,15,,,,,,,13 +19777,822,660,133,113,32,10,10,10,0,15,,,,,,,13 +19778,822,753,144,128,8,11,11,11,0,14,,,,,,,14 +19779,822,709,145,135,29,12,12,12,0,14,,,,,,,14 +19780,822,626,128,107,4,,R,13,0,8,,,,,,,3 +19781,822,712,147,123,9,,R,14,0,7,,,,,,,31 +19782,822,738,133,120,14,,R,15,0,6,,,,,,,6 +19783,822,750,144,126,19,,R,16,0,5,,,,,,,5 +19784,822,754,145,110,25,,R,17,0,5,,,,,,,31 +19785,822,715,145,130,30,,R,18,0,5,,,,,,,80 +19786,822,748,105,116,26,,R,19,0,4,,,,,,,109 +19787,822,710,145,136,23,,R,20,0,3,,,,,,,31 +19788,822,755,6,118,24,,R,21,0,3,,,,,,,22 +19789,822,749,152,114,21,,R,22,0,2,,,,,,,51 +19790,822,427,128,109,3,,R,23,0,1,,,,,,,3 +19791,822,756,144,127,7,,R,24,0,1,,,,,,,6 +19792,822,697,105,105,10,,D,25,0,1,,,,,,,2 +19793,822,632,133,112,13,,R,26,0,1,,,,,,,6 +19794,822,692,144,122,18,,R,27,0,1,,,,,,,31 +19795,822,757,144,129,20,,R,28,0,1,,,,,,,31 +19796,822,722,6,104,27,,R,29,0,1,,,,,,,23 +19797,822,746,105,115,16,,R,30,0,0,,,,,,,31 +19798,823,647,6,2,1,1,1,1,9,90,53:28.5,10408500,,,,,1 +19799,823,642,6,4,2,2,2,2,6,90,40.1,10448600,,,,,1 +19800,823,633,6,6,4,3,3,3,4,90,+1:34.4,10502900,,,,,1 +19801,823,578,87,32,3,4,4,4,3,88,,,,,,,12 +19802,823,626,128,10,6,5,5,5,2,87,,,,,,,13 +19803,823,427,128,12,5,6,6,6,0,87,,,,,,,13 +19804,823,708,133,28,10,7,7,7,0,85,,,,,,,15 +19805,823,651,133,26,9,8,8,8,0,84,,,,,,,16 +19806,823,622,105,16,16,9,9,9,0,83,,,,,,,17 +19807,823,663,148,34,7,,R,10,0,76,,,,,,,67 +19808,823,475,151,36,18,,R,11,0,73,,,,,,,5 +19809,823,758,133,30,14,,N,12,0,70,,,,,,,62 +19810,823,744,125,22,13,,R,13,0,27,,,,,,,51 +19811,823,735,6,24,17,,R,14,0,19,,,,,,,5 +19812,823,632,141,14,11,,R,15,0,15,,,,,,,8 +19813,823,554,128,8,6,,R,16,0,10,,,,,,,10 +19814,823,759,105,20,15,,R,17,0,7,,,,,,,24 +19815,823,746,105,18,12,,R,18,0,4,,,,,,,109 +19816,824,647,6,12,1,1,1,1,8.5,80,50:45.6,10245600,,,,,1 +19817,824,498,105,26,5,2,2,2,6.5,80,+1:01.8,10307400,,,,,1 +19818,824,633,6,16,2,3,3,3,4,80,+2:04.2,10369800,,,,,1 +19819,824,642,6,10,3,4,4,4,3,80,+2:11.4,10377000,,,,,1 +19820,824,697,105,22,13,5,5,5,2,79,,,,,,,11 +19821,824,609,6,8,8,6,6,6,0,79,,,,,,,11 +19822,824,641,6,14,6,7,7,7,0,77,,,,,,,13 +19823,824,622,105,48,18,8,8,8,0,76,,,,,,,14 +19824,824,663,87,40,15,9,9,9,0,76,,,,,,,14 +19825,824,627,6,62,17,10,10,10,0,75,,,,,,,15 +19826,824,748,105,50,23,11,11,11,0,75,,,,,,,15 +19827,824,742,125,30,19,12,12,12,0,74,,,,,,,16 +19828,824,688,87,36,20,13,13,13,0,73,,,,,,,17 +19829,824,626,128,2,7,14,14,14,0,71,,,,,,,19 +19830,824,689,87,38,12,15,15,15,0,68,,,,,,,55 +19831,824,475,125,32,1,,R,16,0,60,,,,,,,22 +19832,824,746,105,46,25,,R,17,0,46,,,,,,,5 +19833,824,554,128,6,11,,R,18,0,42,,,,,,,5 +19834,824,578,87,42,12,,N,19,0,38,,,,,,,62 +19835,824,762,105,24,16,,R,20,0,24,,,,,,,5 +19836,824,427,128,4,4,,R,21,0,5,,,,,,,5 +19837,824,664,125,28,2,,R,22,0,4,,,,,,,22 +19838,824,723,6,18,16,,R,23,0,3,,,,,,,5 +19839,824,625,127,34,10,,R,24,0,0,,,,,,,6 +19840,824,735,6,70,0,,F,25,0,0,,,,,,,81 +19841,824,761,105,58,0,,F,26,0,0,,,,,,,81 +19842,824,640,105,60,0,,F,27,0,0,,,,,,,81 +19843,824,581,133,54,0,,F,28,0,0,,,,,,,81 +19844,824,687,6,68,0,,F,29,0,0,,,,,,,81 +19845,824,738,133,56,0,,F,30,0,0,,,,,,,81 +19846,824,749,152,64,0,,F,31,0,0,,,,,,,81 +19847,824,651,133,52,0,,F,32,0,0,,,,,,,81 +19848,824,717,6,20,0,,F,33,0,0,,,,,,,81 +19849,824,760,153,44,0,,F,34,0,0,,,,,,,81 +19850,824,660,141,66,0,,F,35,0,0,,,,,,,81 +19851,825,579,51,24,1,1,1,1,9,42,07:53.6,7673640,,,,,1 +19852,825,641,6,44,6,2,2,2,6,42,55.24,7728880,,,,,1 +19853,825,642,51,22,2,3,3,3,4,42,+1:19.31,7752950,,,,,1 +19854,825,763,51,28,4,4,4,4,3,41,,,,,,,11 +19855,825,640,51,26,5,5,5,5,2,40,,,,,,,12 +19856,825,647,6,20,7,6,6,6,0,40,,,,,,,12 +19857,825,589,105,30,19,7,7,7,0,40,,,,,,,12 +19858,825,475,133,14,14,8,8,8,0,40,,,,,,,12 +19859,825,627,154,8,8,9,9,9,0,39,,,,,,,13 +19860,825,741,154,4,12,10,10,10,0,39,,,,,,,13 +19861,825,723,6,38,10,11,11,11,0,39,,,,,,,13 +19862,825,501,105,32,17,12,12,12,0,38,,,,,,,14 +19863,825,660,154,2,18,13,13,13,0,35,,,,,,,17 +19864,825,764,154,40,21,14,14,14,0,31,,,,,,,45 +19865,825,687,6,16,9,,R,15,0,36,,,,,,,3 +19866,825,765,154,10,11,,R,16,0,30,,,,,,,3 +19867,825,725,133,12,20,,R,17,0,23,,,,,,,121 +19868,825,704,154,6,15,,R,18,0,14,,,,,,,80 +19869,825,633,6,18,3,,R,19,0,12,,,,,,,3 +19870,825,498,154,42,13,,R,20,0,10,,,,,,,94 +19871,825,721,144,52,16,,R,21,0,0,,,,,,,69 +19872,826,766,113,99,2,1,1,1,9,200,57:38.0,14258050,,,,,1 +19873,826,673,113,83,7,2,2,2,6,200,+1:47.24,14365290,,,,,1 +19874,826,658,113,9,3,3,3,3,2,200,+2:51.39,14429440,,,,,1 +19875,826,612,149,57,31,4,4,4,3,200,+4:40.12,14538170,,,,,1 +19876,826,734,134,52,29,5,5,5,2,200,+4:52.23,14550280,,,,,1 +19877,826,731,119,1,17,6,6,6,0,200,+5:40.02,14598070,,,,,1 +19878,826,767,113,68,24,7,7,7,0,193,,,,,,,17 +19879,826,518,150,27,4,8,8,8,0,180,,,,,,,127 +19880,826,529,150,5,9,,R,9,0,178,,,,,,,20 +19881,826,699,113,18,1,,R,10,0,151,,,,,,,31 +19882,826,534,113,69,22,,R,11,0,142,,,,,,,5 +19883,826,611,113,25,12,,R,12,0,135,,,,,,,5 +19884,826,729,113,10,16,,R,13,0,129,,,,,,,5 +19885,826,768,150,16,5,,R,14,0,126,,,,,,,3 +19886,826,654,114,2,14,,R,15,0,123,,,,,,,5 +19887,826,653,135,76,27,,R,16,0,110,,,,,,,109 +19888,826,615,113,59,11,,R,17,0,109,,,,,,,8 +19889,826,700,113,73,15,,R,18,0,93,,,,,,,42 +19890,826,769,155,71,33,,R,19,0,97,,,,,,,8 +19891,826,521,156,8,19,,R,20,0,93,,,,,,,42 +19892,826,593,113,3,8,,R,21,0,87,,,,,,,121 +19893,826,770,113,4,10,,R,22,0,80,,,,,,,5 +19894,826,526,113,98,6,,R,23,0,78,,,,,,,5 +19895,826,630,134,6,32,,R,24,0,73,,,,,,,25 +19896,826,733,113,32,28,,R,25,0,56,,,,,,,80 +19897,826,771,113,44,13,,R,26,0,55,,,,,,,121 +19898,826,449,139,48,25,,R,27,0,34,,,,,,,108 +19899,826,629,113,23,18,,R,28,0,30,,,,,,,109 +19900,826,657,111,81,20,,R,29,0,29,,,,,,,44 +19901,826,726,110,22,21,,R,30,0,29,,,,,,,7 +19902,826,772,150,19,23,,R,31,0,18,,,,,,,5 +19903,826,732,105,12,26,,R,32,0,15,,,,,,,95 +19904,826,728,107,26,30,,R,33,0,8,,,,,,,7 +19905,827,642,51,4,2,1,1,1,8,36,45:46.2,9946200,,,,,1 +19906,827,647,6,8,4,2,2,2,6,36,+2:51.0,10117200,,,,,1 +19907,827,633,6,10,3,3,3,3,4,36,+4:21.9,10208100,,,,,1 +19908,827,627,154,14,7,4,4,4,3,34,,,,,,,12 +19909,827,704,154,22,8,5,5,5,2,34,,,,,,,12 +19910,827,429,154,24,12,6,6,6,0,33,,,,,,,13 +19911,827,660,154,16,11,7,7,7,0,33,,,,,,,13 +19912,827,773,154,26,13,8,8,8,0,32,,,,,,,14 +19913,827,579,51,2,1,9,9,9,1,32,,,,,,,14 +19914,827,589,154,18,9,,R,10,0,28,,,,,,,5 +19915,827,763,51,6,6,,R,11,0,11,,,,,,,21 +19916,827,641,6,12,5,,R,12,0,8,,,,,,,7 +19917,827,741,154,20,10,,R,13,0,0,,,,,,,7 +19918,828,786,51,8,7,1,1,1,4,77,22:11.0,12131000,,,,,1 +19919,828,647,6,14,6,2,2,2,3,77,58.2,12189200,,,,,1 +19920,828,633,6,10,4,3,3,3,4,74,,,,,,,13 +19921,828,686,6,26,9,4,4,4,3,73,,,,,,,14 +19922,828,642,51,2,2,5,5,5,2,73,,,,,,,14 +19923,828,589,154,42,8,6,6,6,0,71,,,,,,,16 +19924,828,704,154,46,11,7,7,7,0,71,,,,,,,16 +19925,828,774,154,44,14,8,8,8,0,69,,,,,,,18 +19926,828,764,154,48,19,9,9,9,0,66,,,,,,,45 +19927,828,763,51,6,5,10,10,10,0,58,,,,,,,124 +19928,828,579,51,24,1,11,11,11,0,55,,,,,,,115 +19929,828,660,154,28,12,,R,12,0,54,,,,,,,3 +19930,828,627,154,40,13,,R,13,0,43,,,,,,,7 +19931,828,741,154,38,10,,R,14,0,37,,,,,,,5 +19932,828,775,141,36,17,,R,15,0,27,,,,,,,5 +19933,828,501,105,20,22,,R,16,0,23,,,,,,,25 +19934,828,427,141,32,18,,R,17,0,11,,,,,,,5 +19935,828,647,6,12,3,,R,18,0,10,,,,,,,6 +19936,828,609,141,34,21,,R,19,0,7,,,,,,,5 +19937,828,626,141,30,23,,R,20,0,3,,,,,,,5 +19938,828,670,105,50,15,,R,21,0,2,,,,,,,5 +19939,828,640,105,18,16,,R,22,0,1,,,,,,,7 +19940,828,687,6,24,20,,R,23,0,1,,,,,,,5 +19941,829,498,6,12,1,1,1,1,8,90,42:18.2,9738200,,,,,1 +19942,829,579,51,2,2,2,2,2,6,90,51,9789200,,,,,1 +19943,829,633,6,10,5,3,3,3,4,88,,,,,,,12 +19944,829,697,51,4,7,4,4,4,3,87,,,,,,,13 +19945,829,686,66,6,20,5,5,5,2,85,,,,,,,15 +19946,829,763,51,3,6,6,6,6,0,84,,,,,,,16 +19947,829,661,66,7,19,7,7,7,0,84,,,,,,,16 +19948,829,778,151,9,12,8,8,8,0,84,,,,,,,16 +19949,829,687,6,14,8,9,9,9,0,83,,,,,,,17 +19950,829,627,154,22,9,10,10,10,0,83,,,,,,,17 +19951,829,619,151,8,10,11,11,11,0,82,,,,,,,18 +19952,829,708,154,18,11,12,12,12,0,81,,,,,,,19 +19953,829,660,154,25,14,13,13,13,0,80,,,,,,,88 +19954,829,642,51,1,3,,R,14,1,75,,,,,,,8 +19955,829,776,126,5,18,,N,15,0,75,,,,,,,62 +19956,829,647,6,11,4,,R,16,0,56,,,,,,,6 +19957,829,777,105,17,16,,R,17,0,46,,,,,,,44 +19958,829,747,105,15,15,,R,18,0,45,,,,,,,5 +19959,829,589,154,23,13,,R,19,0,41,,,,,,,23 +19960,829,779,105,16,17,,R,20,0,23,,,,,,,21 +19961,830,647,6,71,1,1,1,1,8,20,23:03.3,12183300,,,,,1 +19962,830,579,51,75,3,2,2,2,7,20,30.5,12213800,,,,,1 +19963,830,498,6,74,2,3,3,3,4,20,+4:39.0,12462300,,,,,1 +19964,830,633,6,72,5,4,4,4,3,20,+5:50.2,12533500,,,,,1 +19965,830,641,6,73,6,5,5,5,2,20,+7:49.1,12652400,,,,,1 +19966,830,723,6,91,8,6,6,6,0,19,,,,,,,11 +19967,830,626,141,82,9,7,7,7,0,19,,,,,,,11 +19968,830,627,154,84,15,8,8,8,0,19,,,,,,,11 +19969,830,773,154,90,19,9,9,9,0,18,,,,,,,12 +19970,830,680,154,93,22,10,10,10,0,18,,,,,,,12 +19971,830,660,154,94,18,11,11,11,0,17,,,,,,,13 +19972,830,704,154,87,11,,R,12,0,17,,,,,,,3 +19973,830,427,141,81,14,,R,13,0,13,,,,,,,5 +19974,830,697,51,77,10,,R,14,0,12,,,,,,,121 +19975,830,708,154,88,20,,R,15,0,12,,,,,,,51 +19976,830,756,51,78,7,,R,16,0,11,,,,,,,3 +19977,830,609,141,83,12,,R,17,0,11,,,,,,,5 +19978,830,642,51,76,4,,R,18,0,8,,,,,,,25 +19979,830,741,154,86,21,,R,19,0,4,,,,,,,6 +19980,830,589,154,85,13,,R,20,0,3,,,,,,,80 +19981,830,780,105,92,17,,R,21,0,3,,,,,,,5 +19982,830,640,105,79,16,,R,22,0,2,,,,,,,5 +19983,831,647,6,2,3,1,1,1,8,80,42:39.3,9759300,,,,,1 +19984,831,498,6,6,4,2,2,2,6,80,24.6,9783900,,,,,1 +19985,831,697,51,40,7,3,3,3,2,79,,,,,,,11 +19986,831,633,6,4,5,4,4,4,3,79,,,,,,,11 +19987,831,641,6,8,6,5,5,5,2,78,,,,,,,12 +19988,831,609,141,48,11,6,6,6,0,74,,,,,,,16 +19989,831,627,154,18,15,7,7,7,0,73,,,,,,,17 +19990,831,704,154,24,14,8,8,8,0,72,,,,,,,18 +19991,831,762,127,44,18,9,9,9,0,67,,,,,,,53 +19992,831,579,51,38,1,,R,10,0,39,,,,,,,5 +19993,831,427,141,50,12,,R,11,0,29,,,,,,,5 +19994,831,626,141,46,13,,R,12,0,29,,,,,,,5 +19995,831,589,154,20,17,,R,13,0,23,,,,,,,80 +19996,831,773,154,22,20,,R,14,0,9,,,,,,,5 +19997,831,680,154,28,22,,R,15,0,7,,,,,,,25 +19998,831,642,51,34,2,,R,16,0,6,,,,,,,5 +19999,831,660,154,26,21,,R,17,0,4,,,,,,,94 +20000,831,640,51,36,9,,R,18,0,1,,,,,,,126 +20001,831,687,6,16,19,,R,19,0,1,,,,,,,121 +20002,831,622,6,12,16,,R,20,0,0,,,,,,,7 +20003,831,686,66,30,8,,W,21,0,0,,,,,,,54 +20004,831,781,66,32,10,,W,22,0,0,,,,,,,54 +20005,832,579,51,22,2,1,1,1,9,70,46:54.1,10014100,,,,,1 +20006,832,498,6,6,3,2,2,2,6,70,54.28,10068380,,,,,1 +20007,832,642,51,20,4,3,3,3,4,70,+1:45.54,10119640,,,,,1 +20008,832,647,6,2,1,4,4,4,3,68,,,,,,,12 +20009,832,697,51,24,8,5,5,5,2,68,,,,,,,12 +20010,832,640,51,26,6,6,6,6,0,66,,,,,,,14 +20011,832,627,154,28,20,7,7,7,0,64,,,,,,,16 +20012,832,741,154,34,13,8,8,8,0,63,,,,,,,17 +20013,832,626,141,14,9,9,9,9,0,63,,,,,,,17 +20014,832,580,105,44,17,10,10,10,0,60,,,,,,,88 +20015,832,633,6,4,5,,R,11,0,48,,,,,,,80 +20016,832,609,141,16,10,,R,12,0,48,,,,,,,5 +20017,832,660,154,36,15,,R,13,0,37,,,,,,,3 +20018,832,641,6,8,7,,R,14,0,30,,,,,,,36 +20019,832,427,141,12,11,,R,15,0,25,,,,,,,5 +20020,832,783,154,38,16,,R,16,0,23,,,,,,,5 +20021,832,704,154,32,14,,R,17,0,7,,,,,,,3 +20022,832,589,154,30,12,,R,18,0,4,,,,,,,80 +20023,832,669,105,18,19,,R,19,0,1,,,,,,,5 +20024,832,782,105,46,18,,W,20,0,0,,,,,,,5 +20025,833,642,51,2,1,1,1,1,9,70,13:23.6,8003600,,,,,1 +20026,833,786,51,3,2,2,2,2,6,70,2.6,8006200,,,,,1 +20027,833,686,51,4,4,3,3,3,4,70,52,8055600,,,,,1 +20028,833,704,154,14,6,4,4,4,3,68,,,,,,,12 +20029,833,627,154,15,9,5,5,5,2,68,,,,,,,12 +20030,833,619,151,12,13,6,6,6,0,67,,,,,,,13 +20031,833,787,151,11,15,7,7,7,0,67,,,,,,,13 +20032,833,741,154,16,14,8,8,8,0,65,,,,,,,15 +20033,833,784,105,6,16,9,9,9,0,64,,,,,,,16 +20034,833,778,105,10,20,10,10,10,0,64,,,,,,,16 +20035,833,660,154,18,21,11,11,11,0,64,,,,,,,16 +20036,833,579,51,1,3,,R,12,0,62,,,,,,,44 +20037,833,776,126,23,19,,N,13,0,57,,,,,,,62 +20038,833,669,105,21,5,,R,14,0,49,,,,,,,60 +20039,833,747,105,5,18,,R,15,0,44,,,,,,,5 +20040,833,785,126,24,17,,R,16,0,43,,,,,,,7 +20041,833,640,105,20,8,,R,17,0,36,,,,,,,5 +20042,833,589,105,19,11,,R,18,0,26,,,,,,,8 +20043,833,789,154,17,7,,R,19,0,8,,,,,,,51 +20044,833,661,151,9,10,,R,20,0,5,,,,,,,6 +20045,833,790,151,8,12,,R,21,0,2,,,,,,,126 +20046,834,579,51,34,1,1,1,1,9,100,13:18.7,11598700,,,,,1 +20047,834,647,6,40,7,2,2,2,6,99,,,,,,,11 +20048,834,589,105,48,8,3,3,3,4,98,,,,,,,12 +20049,834,793,6,42,9,4,4,4,3,97,,,,,,,13 +20050,834,669,105,50,15,5,5,5,2,95,,,,,,,15 +20051,834,619,151,26,16,6,6,6,0,94,,,,,,,16 +20052,834,660,154,6,19,7,7,7,0,94,,,,,,,16 +20053,834,633,6,38,6,,R,8,0,63,,,,,,,109 +20054,834,741,154,14,4,,R,9,0,38,,,,,,,44 +20055,834,498,105,2,3,,R,10,0,1,,,,,,,3 +20056,834,642,51,32,2,,R,11,0,0,,,,,,,3 +20057,834,786,51,36,5,,R,12,0,0,,,,,,,3 +20058,834,627,154,16,10,,R,13,0,0,,,,,,,3 +20059,834,626,141,10,11,,R,14,0,0,,,,,,,3 +20060,834,640,105,52,12,,R,15,0,0,,,,,,,3 +20061,834,427,141,12,13,,R,16,0,0,,,,,,,3 +20062,834,787,151,24,14,,R,17,0,0,,,,,,,3 +20063,834,762,105,44,17,,R,18,0,0,,,,,,,3 +20064,834,501,87,8,20,,R,19,0,0,,,,,,,4 +20065,834,687,6,28,21,,W,20,0,0,,,,,,,5 +20066,834,792,105,4,18,,W,21,0,0,,,,,,,3 +20067,835,593,113,1,5,1,1,1,9,138,46:56.0,10015970,,,,,1 +20068,835,701,150,3,10,2,2,2,6,137,,,,,,,11 +20069,835,768,150,31,3,3,3,3,4,137,,,,,,,11 +20070,835,770,113,54,12,4,4,4,3,137,,,,,,,11 +20071,835,794,113,17,9,5,5,5,1,136,,,,,,,12 +20072,835,766,119,8,23,6,6,6,0,136,,,,,,,12 +20073,835,654,113,98,1,7,7,7,0,135,,,,,,,13 +20074,835,726,110,5,4,8,8,8,0,135,,,,,,,13 +20075,835,555,138,7,19,9,9,9,0,135,,,,,,,13 +20076,835,559,113,59,11,10,10,10,0,135,,,,,,,13 +20077,835,795,156,2,16,11,11,11,0,133,,,,,,,15 +20078,835,518,129,18,13,12,12,12,0,133,,,,,,,15 +20079,835,772,113,15,26,13,13,13,0,132,,,,,,,16 +20080,835,658,113,49,6,14,14,14,0,131,,,,,,,20 +20081,835,526,110,55,24,15,15,15,0,130,,,,,,,18 +20082,835,520,157,75,31,16,16,16,0,128,,,,,,,88 +20083,835,653,116,22,27,17,17,17,0,128,,,,,,,88 +20084,835,732,113,62,33,18,18,18,0,128,,,,,,,88 +20085,835,771,113,4,20,19,19,19,0,127,,,,,,,45 +20086,835,677,105,21,14,20,20,20,0,126,,,,,,,55 +20087,835,659,113,81,15,21,21,21,0,125,,,,,,,53 +20088,835,796,158,27,29,22,22,22,0,123,,,,,,,112 +20089,835,797,159,77,30,23,23,23,0,123,,,,,,,20 +20090,835,509,160,76,28,24,24,24,0,122,,,,,,,116 +20091,835,731,105,12,21,,R,25,0,112,,,,,,,70 +20092,835,729,162,67,22,,R,26,0,111,,,,,,,7 +20093,835,798,161,24,17,,R,27,0,108,,,,,,,51 +20094,835,615,113,28,2,,R,28,0,64,,,,,,,44 +20095,835,799,113,61,32,,R,29,0,52,,,,,,,126 +20096,835,611,113,23,25,,R,30,0,42,,,,,,,51 +20097,835,529,150,14,8,,R,31,0,30,,,,,,,67 +20098,835,537,107,45,18,,R,32,0,25,,,,,,,85 +20099,835,630,113,69,7,,R,33,0,10,,,,,,,44 +20100,836,642,51,16,2,1,1,1,9,42,02:53.7,7373700,,,,,1 +20101,836,786,51,12,3,2,2,2,6,42,0.4,7374100,,,,,1 +20102,836,627,154,10,10,3,3,3,4,41,,,,,,,11 +20103,836,669,105,30,8,4,4,4,3,40,,,,,,,12 +20104,836,697,105,34,12,5,5,5,2,40,,,,,,,12 +20105,836,640,105,32,11,6,6,6,0,40,,,,,,,12 +20106,836,800,105,2,15,7,7,7,0,39,,,,,,,13 +20107,836,501,154,44,18,8,8,8,0,39,,,,,,,13 +20108,836,589,105,26,16,9,9,9,0,39,,,,,,,13 +20109,836,660,154,4,14,10,10,10,0,38,,,,,,,14 +20110,836,780,105,40,17,11,11,11,0,35,,,,,,,17 +20111,836,579,51,14,1,,R,12,0,32,,,,,,,5 +20112,836,741,154,42,6,,R,13,0,25,,,,,,,6 +20113,836,789,154,8,9,,R,14,0,19,,,,,,,3 +20114,836,793,6,20,13,,R,15,0,19,,,,,,,22 +20115,836,633,6,22,4,,R,16,0,9,,,,,,,5 +20116,836,647,6,18,5,,R,17,0,4,,,,,,,94 +20117,836,704,154,6,7,,R,18,0,0,,,,,,,3 +20118,837,579,51,10,2,1,1,1,8,35,47:26.0,10046000,,,,,1 +20119,837,786,51,12,3,2,2,2,6,35,14,10060000,,,,,1 +20120,837,627,154,14,8,3,3,3,4,35,+2:19.0,10185000,,,,,1 +20121,837,642,51,8,1,4,4,4,4,35,+4:05.0,10291000,,,,,1 +20122,837,647,6,4,7,5,5,5,2,34,,,,,,,11 +20123,837,633,6,2,4,6,6,6,0,33,,,,,,,12 +20124,837,773,154,22,10,7,7,7,0,33,,,,,,,12 +20125,837,660,154,24,14,8,8,8,0,22,,,,,,,13 +20126,837,785,126,26,12,9,9,9,0,30,,,,,,,15 +20127,837,780,105,30,11,10,10,10,0,29,,,,,,,16 +20128,837,774,154,20,13,,R,11,0,22,,,,,,,108 +20129,837,793,154,6,5,,R,12,0,20,,,,,,,51 +20130,837,741,154,16,6,,R,13,0,15,,,,,,,25 +20131,837,704,154,18,9,,R,14,0,2,,,,,,,108 +20132,838,579,51,6,1,1,1,1,9,64,57:52.8,10672800,,,,,1 +20133,838,786,51,4,3,2,2,2,6,64,25.7,10698500,,,,,1 +20134,838,687,6,14,18,3,3,3,4,61,,,,,,,13 +20135,838,626,141,44,12,4,4,4,3,61,,,,,,,13 +20136,838,741,154,16,4,5,5,5,1,59,,,,,,,15 +20137,838,801,154,26,15,6,6,6,0,56,,,,,,,18 +20138,838,642,51,2,2,7,7,7,0,55,,,,,,,48 +20139,838,704,154,18,5,8,8,8,0,52,,,,,,,55 +20140,838,773,154,22,9,,R,9,0,36,,,,,,,5 +20141,838,697,105,40,10,,R,10,0,14,,,,,,,5 +20142,838,660,154,42,14,,R,11,0,11,,,,,,,25 +20143,838,627,154,20,6,,R,12,0,10,,,,,,,25 +20144,838,686,105,32,11,,R,13,0,9,,,,,,,5 +20145,838,762,105,28,7,,R,14,0,6,,,,,,,5 +20146,838,589,105,30,13,,R,15,0,6,,,,,,,5 +20147,838,784,105,34,17,,R,16,0,5,,,,,,,5 +20148,838,793,154,12,16,,R,17,0,4,,,,,,,25 +20149,838,498,105,36,8,,R,18,0,3,,,,,,,5 +20150,839,642,51,10,3,1,1,1,8,80,51:17.4,10277400,,,,,1 +20151,839,802,6,48,6,2,2,2,3,80,+1:18.6,10356000,,,,,1 +20152,839,786,51,36,5,3,3,3,4,80,+1:35.6,10373000,,,,,1 +20153,839,627,154,58,13,4,4,4,3,75,,,,,,,15 +20154,839,741,154,24,16,5,5,5,2,75,,,,,,,15 +20155,839,640,105,38,17,6,6,6,0,72,,,,,,,18 +20156,839,687,6,8,18,7,7,7,0,72,,,,,,,18 +20157,839,747,105,50,24,,R,8,0,56,,,,,,,6 +20158,839,787,151,32,21,,R,9,0,51,,,,,,,21 +20159,839,793,154,12,8,,R,10,0,48,,,,,,,6 +20160,839,764,154,40,11,,R,11,0,42,,,,,,,108 +20161,839,762,105,4,9,,R,12,0,39,,,,,,,31 +20162,839,641,51,60,7,,R,13,0,34,,,,,,,5 +20163,839,773,154,56,20,,R,14,0,29,,,,,,,6 +20164,839,579,51,18,1,,R,15,1,23,,,,,,,6 +20165,839,660,154,2,22,,R,16,0,22,,,,,,,25 +20166,839,647,6,16,2,,R,17,0,21,,,,,,,5 +20167,839,791,6,22,25,,R,18,0,17,,,,,,,5 +20168,839,765,154,64,16,,R,19,0,16,,,,,,,23 +20169,839,740,105,62,26,,R,20,0,15,,,,,,,31 +20170,839,427,141,42,12,,R,21,0,13,,,,,,,110 +20171,839,589,105,6,19,,R,22,0,13,,,,,,,51 +20172,839,763,51,46,4,,R,23,0,11,,,,,,,5 +20173,839,626,141,44,10,,R,24,0,7,,,,,,,7 +20174,839,669,105,30,15,,R,25,0,1,,,,,,,5 +20175,839,756,105,28,27,,R,26,0,0,,,,,,,5 +20176,839,697,163,52,23,,W,27,0,0,,,,,,,54 +20177,833,788,105,10,20,10,10,10,0,64,,,,,,,16 +20178,833,666,151,9,10,,R,20,0,5,,,,,,,6 +20179,835,529,113,17,9,5,5,5,1,136,,,,,,,12 +20180,835,803,161,24,17,,R,27,0,108,,,,,,,51 +20181,838,774,154,16,4,5,5,5,1,59,,,,,,,15 +20182,838,627,154,26,15,6,6,6,0,56,,,,,,,18 +20183,839,647,51,48,6,2,2,2,3,80,,,,,,,1 +20184,839,579,51,60,7,,R,13,0,34,,,,,,,5 +20185,826,675,113,9,3,3,3,3,2,200,+2:51.39,14429440,,,,,1 +20186,828,579,51,8,7,1,1,1,5,77,22:11.0,12131000,,,,,1 +20187,828,498,6,14,6,2,2,2,3,77,58.2,12189200,,,,,1 +20188,828,786,51,24,1,11,11,11,0,55,,,,,,,115 +20189,831,642,51,40,7,3,3,3,3,79,,,,,,,11 +20190,817,642,6,32,4,,R,10,0,51,,,,,,,121 +20191,820,721,6,34,17,11,11,11,0,66,,,,,,,45 +20192,820,501,105,16,12,,R,15,0,34,,,,,,,23 +20193,823,759,105,16,16,9,9,9,0,83,,,,,,,17 +20194,808,501,128,28,7,7,7,7,0,91,,,,,,,16 +20195,809,518,113,3,9,3,3,3,2,200,+4:11.50,14233190,,,,,1 +20196,809,555,113,59,2,4,4,4,1.5,200,+4:39.24,14260930,,,,,1 +20197,809,513,113,2,25,7,7,7,0,200,+8:46.02,14507710,,,,,1 +20198,809,521,114,98,6,9,9,9,0,196,,,,,,,3 +20199,809,520,114,98,6,9,9,9,0,196,,,,,,,3 +20200,809,702,113,73,19,12,12,12,0,190,,,,,,,88 +20201,809,509,113,49,28,15,15,15,0,177,,,,,,,121 +20202,809,612,113,92,10,16,16,16,0,177,,,,,,,109 +20203,809,630,113,92,10,16,16,16,0,177,,,,,,,109 +20204,809,804,113,23,14,17,17,17,0,176,,,,,,,117 +20205,809,512,113,62,18,,R,19,0,166,,,,,,,44 +20206,809,797,113,62,18,,R,19,0,166,,,,,,,44 +20207,809,521,113,55,7,,R,23,0,107,,,,,,,25 +20208,809,612,113,55,7,,R,23,0,107,,,,,,,25 +20209,810,498,105,16,13,3,3,3,2,89,,,,,,,11 +20210,811,579,105,6,10,,R,12,0,35,,,,,,,3 +20211,814,633,6,1,1,8,8,8,0,17,,,,,,,11 +20212,814,647,6,4,6,,R,17,1,15,,,,,,,5 +20213,815,697,105,32,1,4,4,4,1.5,64,,,,,,,11 +20214,815,579,105,30,10,,R,15,0,29,,,,,,,5 +20215,816,577,105,56,12,7,7,7,0,76,,,,,,,14 +20216,800,518,113,34,11,4,4,4,1.5,200,+2:52.68,13929950,,,,,1 +20217,800,659,113,5,32,8,8,8,0,200,+5:01.17,14058440,,,,,1 +20218,800,593,113,45,27,11,11,11,0,200,+8:22.19,14259460,,,,,1 +20219,800,611,113,45,27,11,11,11,0,200,+8:22.19,14259460,,,,,1 +20220,800,612,113,45,27,11,11,11,0,200,+8:22.19,14259460,,,,,1 +20221,800,653,113,45,27,11,11,11,0,200,+8:22.19,14259460,,,,,1 +20222,800,654,114,98,5,12,12,12,0,199,,,,,,,11 +20223,800,613,113,16,8,15,15,15,0,196,,,,,,,14 +20224,800,799,113,16,8,15,15,15,0,196,,,,,,,14 +20225,800,529,113,16,8,15,15,15,0,196,,,,,,,14 +20226,800,702,129,27,31,18,18,18,0,193,,,,,,,17 +20227,800,730,113,71,33,19,19,19,0,193,,,,,,,17 +20228,800,653,113,1,10,,R,20,0,191,,,,,,,20 +20229,800,509,113,1,10,,R,20,0,191,,,,,,,20 +20230,800,513,135,12,16,,R,22,0,172,,,,,,,31 +20231,800,613,113,31,17,,R,23,0,168,,,,,,,8 +20232,800,612,138,43,4,,R,24,0,165,,,,,,,31 +20233,800,556,138,43,4,,R,24,0,165,,,,,,,31 +20234,800,702,134,74,23,,R,25,0,165,,,,,,,22 +20235,800,559,113,38,28,,R,28,0,110,,,,,,,3 +20236,800,805,139,65,29,,R,30,0,104,,,,,,,48 +20237,800,730,134,33,26,,R,31,0,101,,,,,,,23 +20238,801,578,6,10,5,4,4,4,1.5,35,,,,,,,11 +20239,803,541,105,6,10,,R,20,0,44,,,,,,,3 +20240,803,647,105,32,27,,R,21,0,40,,,,,,,5 +20241,804,578,6,1,5,2,2,2,3,22,+1:36.5,13642300,,,,,1 +20242,806,498,6,38,13,3,3,3,3,78,,,,,,,12 +20243,807,638,105,22,21,,R,11,0,57,,,,,,,5 +20244,792,642,6,12,1,2,2,2,2,96,+1:29.6,10928200,,,,,1 +20245,792,427,6,12,1,2,2,2,2,96,+1:29.6,10928200,,,,,1 +20246,792,427,6,10,5,3,3,3,1.33,94,,,,,,,12 +20247,792,620,6,10,5,3,3,3,1.33,94,,,,,,,12 +20248,792,648,131,8,10,4,4,4,1,94,,,,,,,12 +20249,792,475,131,8,10,4,4,4,1,94,,,,,,,12 +20250,792,554,105,28,7,6,6,6,0,88,,,,,,,18 +20251,792,644,105,22,18,7,7,7,0,83,,,,,,,53 +20252,792,501,105,22,18,7,7,7,0,83,,,,,,,53 +20253,792,554,105,20,19,,R,8,0,54,,,,,,,5 +20254,792,577,105,20,19,,R,8,0,54,,,,,,,5 +20255,792,501,105,26,20,,R,9,0,54,,,,,,,32 +20256,792,496,105,26,20,,R,9,0,54,,,,,,,32 +20257,792,633,132,36,12,,R,12,0,35,,,,,,,3 +20258,793,607,105,34,5,3,3,3,2,99,,,,,,,11 +20259,793,632,6,48,15,8,8,8,0,86,,,,,,,111 +20260,793,554,105,40,11,,R,10,0,86,,,,,,,20 +20261,794,555,113,10,2,2,2,2,3,200,+2:43.56,14203090,,,,,1 +20262,794,519,113,77,7,5,5,5,1,200,+5:17.17,14356700,,,,,1 +20263,795,554,105,24,13,5,5,5,1,35,,,,,,,11 +20264,797,608,6,16,12,6,6,6,0,87,,,,,,,13 +20265,797,501,118,28,15,9,9,9,0,72,,,,,,,114 +20266,797,661,125,36,14,,R,19,0,19,,,,,,,7 +20267,784,579,6,34,3,1,1,1,5,98,00:03.7,10803700,,,,,1 +20268,784,583,105,10,11,4,4,4,1.5,92,,,,,,,16 +20269,784,806,105,16,13,6,6,6,0,88,,,,,,,88 +20270,785,579,6,26,9,2,2,2,4,100,6.1,10839000,,,,,1 +20271,785,608,6,20,1,4,4,4,1.5,99,,,,,,,11 +20272,785,429,128,4,11,6,6,6,0,88,,,,,,,55 +20273,786,532,113,10,14,,R,23,0,160,,,,,,,23 +20274,787,475,105,34,9,3,3,3,3,36,+3:16.6,9796900,,,,,1 +20275,788,475,105,6,13,5,5,5,1,59,,,,,,,12 +20276,788,501,118,24,6,10,10,10,0,56,,,,,,,15 +20277,789,581,6,4,12,2,2,2,3,100,,,,,,,11 +20278,789,606,6,3,8,10,10,10,0,92,,,,,,,19 +20281,791,579,6,26,7,2,2,2,3,50,5.7,8627000,,,,,1 +20282,791,608,6,22,1,8,8,8,0,46,,,,,,,14 +20283,791,554,105,46,13,,R,13,0,42,,,,,,,38 +20284,791,347,105,34,8,,R,20,0,7,,,,,,,5 +20285,776,498,6,20,10,5,5,5,1,98,,,,,,,12 +20286,776,581,6,18,11,6,6,6,0,98,,,,,,,12 +20287,776,476,6,18,11,6,6,6,0,98,,,,,,,12 +20288,777,578,6,24,9,,R,7,0,95,,,,,,,5 +20289,777,501,105,34,14,,R,8,0,64,,,,,,,44 +20290,779,356,87,24,15,7,7,7,0,68,,,,,,,19 +20291,780,475,118,20,3,1,1,1,5,90,06:37.8,11197800,,,,,1 +20292,780,581,6,16,9,4,4,4,0,88,,,,,,,12 +20293,780,479,118,18,1,,R,12,0,51,,,,,,,5 +20294,783,501,105,8,12,5,5,5,1,84,,,,,,,13 +20295,783,638,105,28,16,11,11,11,0,72,,,,,,,112 +20296,770,479,118,12,10,,R,14,0,35,,,,,,,5 +20297,774,566,105,32,11,4,4,4,0,69,,,,,,,11 +22372,746,475,170,38,8,3,3,3,0,80,36.9,8306400,,,,,1 +20299,742,486,102,26,20,,D,19,0,56,,,,,,,2 +20300,728,373,172,1,1,1,1,1,9,85,10:36.9,7836900,,,,,1 +20301,728,364,34,9,3,2,2,2,6,85,+1:06.8,7903700,,,,,1 +20302,728,289,66,5,6,3,3,3,4,84,,,,,,,11 +20303,728,360,170,10,9,4,4,4,3,84,,,,,,,11 +20304,728,385,6,4,5,5,5,5,2,84,,,,,,,11 +20305,728,347,170,12,11,6,6,6,1,83,,,,,,,12 +20306,728,408,170,11,10,7,7,7,0,82,,,,,,,13 +20307,728,401,172,2,8,8,8,8,0,81,,,,,,,14 +20308,728,340,170,19,13,9,9,9,0,80,,,,,,,15 +20309,728,430,95,14,20,10,10,10,0,79,,,,,,,16 +20310,728,411,89,16,18,11,11,11,0,78,,,,,,,17 +20311,728,409,167,23,19,12,12,12,0,77,,,,,,,18 +20312,728,356,34,8,2,13,13,13,0,70,,,,,,,3 +20313,728,412,180,21,15,14,14,14,0,66,,,,,,,124 +20314,728,362,51,18,16,,R,15,0,53,,,,,,,6 +20315,728,407,34,22,14,,R,16,0,49,,,,,,,51 +20316,728,341,6,3,4,,R,17,0,43,,,,,,,5 +20317,728,386,66,6,7,,R,18,0,43,,,,,,,86 +20318,728,413,172,7,12,,R,19,0,3,,,,,,,5 +20319,728,368,89,20,17,,R,20,0,2,,,,,,,86 +20320,728,310,176,15,0,,W,21,0,0,,,,,,,3 +20321,728,410,172,17,0,,W,22,0,0,,,,,,,54 +20322,728,305,26,,0,,W,23,0,0,,,,,,,54 +20323,337,4,6,8,3,1,1,1,25,49,39:20.4,5960396,45,1,01:58.3,191.706,1 +20324,337,13,6,7,2,2,2,2,18,49,16.099,5976495,38,5,01:59.7,189.392,1 +20325,337,1,1,2,4,3,3,3,15,49,23.182,5983578,42,4,01:59.6,189.665,1 +20326,337,20,9,5,1,4,4,4,12,49,38.799,5999195,32,12,02:00.2,188.627,1 +20327,337,3,131,4,5,5,5,5,10,49,40.213,6000609,45,13,02:00.2,188.599,1 +20328,337,30,131,3,7,6,6,6,8,49,44.163,6004559,45,11,02:00.2,188.649,1 +20329,337,18,1,1,8,7,7,7,6,49,45.28,6005676,45,9,02:00.0,189.017,1 +20330,337,17,9,6,6,8,8,8,4,49,46.36,6006756,45,3,01:59.5,189.781,1 +20331,337,24,10,15,12,9,9,9,2,49,53.008,6013404,39,7,01:59.9,189.118,1 +20332,337,22,3,9,11,10,10,10,1,49,+1:02.489,6022885,47,6,01:59.8,189.233,1 +20333,337,9,4,11,9,11,11,11,0,49,+1:09.093,6029489,33,14,02:00.5,188.226,1 +20334,337,16,10,14,10,12,12,12,0,49,+1:22.958,6043354,49,2,01:59.4,189.93,1 +20335,337,153,5,17,18,13,13,13,0,49,+1:32.656,6053052,28,8,02:00.0,189.026,1 +20336,337,807,3,10,13,14,14,14,0,48,,,34,15,02:01.4,186.789,11 +20337,337,5,205,19,21,15,15,15,0,47,,,47,17,02:02.7,184.81,12 +20338,337,67,5,16,15,16,16,16,0,46,,,41,10,02:00.1,188.844,10 +20339,337,15,205,18,20,17,17,17,0,46,,,34,18,02:02.9,184.465,9 +20340,337,37,15,22,14,,R,18,0,28,,,27,16,02:01.6,186.406,9 +20341,337,811,164,21,23,,R,19,0,17,,,14,22,02:09.1,175.613,25 +20342,337,10,166,24,19,,R,20,0,16,,,11,21,02:07.1,178.467,6 +20343,337,808,4,12,17,,R,21,0,13,,,7,19,02:04.3,182.422,22 +20344,337,155,15,23,16,,R,22,0,11,,,4,20,02:05.0,181.347,9 +20345,337,810,166,25,22,,R,23,0,2,,,2,23,02:09.4,175.295,9 +20346,337,812,164,20,24,,R,24,0,1,,,,,,,3 +20347,338,18,1,1,4,1,1,1,25,58,33:36.5,5616531,52,6,01:29.3,213.804,1 +20348,338,9,4,11,9,2,2,2,18,58,12.034,5628565,52,8,01:29.6,213.138,1 +20349,338,13,6,7,5,3,3,3,15,58,14.488,5631019,52,7,01:29.5,213.216,1 +20350,338,4,6,8,3,4,4,4,12,58,16.304,5632835,47,10,01:29.7,212.812,1 +20351,338,3,131,4,6,5,5,5,10,58,16.683,5633214,53,2,01:28.5,215.742,1 +20352,338,1,1,2,11,6,6,6,8,58,29.898,5646429,47,3,01:28.5,215.7,1 +20353,338,24,10,15,13,7,7,7,6,58,59.847,5676378,55,9,01:29.7,212.865,1 +20354,338,22,3,9,8,8,8,8,4,58,+1:00.536,5677067,58,5,01:29.2,213.998,1 +20355,338,17,9,6,2,9,9,9,2,58,+1:07.319,5683850,47,1,01:28.4,216.061,1 +20356,338,30,131,3,7,10,10,10,1,58,+1:09.391,5685922,58,4,01:29.2,214.058,1 +20357,338,153,5,17,17,11,11,11,0,58,+1:11.301,5687832,49,11,01:29.7,212.798,1 +20358,338,37,15,22,14,12,12,12,0,58,+1:14.084,5690615,54,12,01:30.6,210.745,1 +20359,338,5,205,19,19,13,13,13,0,56,,,52,14,01:33.6,203.878,12 +20360,338,812,164,20,22,14,14,14,0,53,,,48,16,01:35.0,200.86,15 +20361,338,10,166,24,23,,R,15,0,41,,,37,15,01:34.2,202.597,22 +20362,338,810,166,25,24,,R,16,0,26,,,17,17,01:36.6,197.613,9 +20363,338,20,9,5,1,,R,17,0,25,,,22,13,01:31.6,208.515,36 +20364,338,16,10,14,10,,R,18,0,9,,,6,19,01:43.2,184.947,5 +20365,338,808,4,12,18,,R,19,0,9,,,6,18,01:43.1,185.11,20 +20366,338,811,164,21,21,,R,20,0,4,,,4,20,02:27.3,129.626,9 +20367,338,67,5,16,12,,R,21,0,0,,,,,,,4 +20368,338,807,3,10,15,,R,22,0,0,,,,,,,4 +20369,338,155,15,23,16,,R,23,0,0,,,,,,,4 +20370,338,15,205,18,20,,W,24,0,0,,,,,,,9 +20371,339,20,9,5,3,1,1,1,25,56,33:48.4,5628412,53,6,01:37.8,204.009,1 +20372,339,17,9,6,1,2,2,2,18,56,4.849,5633261,53,1,01:37.1,205.605,1 +20373,339,3,131,4,2,3,3,3,15,56,13.504,5641916,53,8,01:38.1,203.352,1 +20374,339,9,4,11,6,4,4,4,12,56,18.589,5647001,55,7,01:38.1,203.466,1 +20375,339,16,10,14,4,5,5,5,10,56,21.059,5649471,55,9,01:38.2,203.288,1 +20376,339,1,1,2,20,6,6,6,8,56,23.471,5651883,32,4,01:37.7,204.151,1 +20377,339,13,6,7,21,7,7,7,6,56,27.068,5655480,48,5,01:37.8,204.07,1 +20378,339,18,1,1,17,8,8,8,4,56,37.918,5666330,49,10,01:38.5,202.584,1 +20379,339,153,5,17,14,9,9,9,2,56,+1:10.602,5699014,44,13,01:39.5,200.572,1 +20380,339,807,3,10,5,10,10,10,1,56,+1:13.399,5701811,51,11,01:39.1,201.311,1 +20381,339,67,5,16,13,11,11,11,0,56,+1:18.938,5707350,54,3,01:37.6,204.433,1 +20382,339,22,3,9,7,12,12,12,0,55,,,46,12,01:39.4,200.695,11 +20383,339,4,6,8,19,13,13,13,0,54,,,41,2,01:37.2,205.23,5 +20384,339,810,166,25,24,14,14,14,0,53,,,28,18,01:43.2,193.315,13 +20385,339,812,164,20,22,15,15,15,0,53,,,40,21,01:44.8,190.426,13 +20386,339,811,164,21,23,16,16,16,0,52,,,39,22,01:45.3,189.443,14 +20387,339,15,205,18,18,17,17,17,0,51,,,31,20,01:43.8,192.329,15 +20388,339,5,205,19,15,,N,18,0,46,,,44,17,01:42.7,194.299,88 +20389,339,808,4,12,11,,R,19,0,32,,,32,14,01:40.7,198.174,6 +20390,339,24,10,15,10,,R,20,0,12,,,9,16,01:42.6,194.502,37 +20391,339,30,131,3,8,,R,21,0,9,,,9,15,01:42.1,195.474,36 +20392,339,155,15,23,9,,R,22,0,8,,,6,19,01:43.3,193.098,5 +20393,339,10,166,24,16,,R,23,0,2,,,2,23,01:46.4,187.566,20 +20394,339,37,15,22,12,,W,24,0,0,,,,,,,5 +20395,340,18,1,1,5,1,1,1,25,56,46:42.2,6402163,14,4,01:42.9,190.731,1 +20396,340,1,1,2,6,2,2,2,18,56,1.53,6403693,13,1,01:42.1,192.273,1 +20397,340,3,131,4,4,3,3,3,15,56,9.484,6411647,14,5,01:43.2,190.068,1 +20398,340,4,6,8,3,4,4,4,12,56,11.869,6414032,14,9,01:44.1,188.445,1 +20399,340,9,4,11,8,5,5,5,10,56,22.213,6424376,14,6,01:43.6,189.362,1 +20400,340,20,9,5,1,6,6,6,8,56,33.31,6435473,14,2,01:42.4,191.715,1 +20401,340,808,4,12,14,7,7,7,6,56,47.6,6449763,14,8,01:43.8,189.05,1 +20402,340,17,9,6,2,8,8,8,4,56,52.172,6454335,14,3,01:42.6,191.246,1 +20403,340,13,6,7,7,9,9,9,2,56,57.796,6459959,14,13,01:44.6,187.616,1 +20404,340,30,131,3,9,10,10,10,1,56,+1:01.749,6463912,14,10,01:44.3,188.149,1 +20405,340,16,10,14,10,11,11,11,0,56,+1:02.874,6465037,14,11,01:44.4,188.03,1 +20406,340,22,3,9,11,12,12,12,0,56,+1:03.665,6465828,17,14,01:45.6,185.901,1 +20407,340,153,5,17,12,13,13,13,0,56,+1:11.416,6473579,14,7,01:43.8,189.134,1 +20408,340,5,205,19,21,14,14,14,0,55,,,14,15,01:47.1,183.156,11 +20409,340,807,3,10,16,15,15,15,0,55,,,13,12,01:44.5,187.697,11 +20410,340,811,164,21,23,16,16,16,0,54,,,16,17,01:48.2,181.337,12 +20411,340,812,164,20,24,17,17,17,0,52,,,15,18,01:48.8,180.383,14 +20412,340,15,205,18,20,,R,18,0,26,,,14,19,01:49.7,178.925,9 +20413,340,810,166,25,22,,R,19,0,8,,,7,20,01:53.2,173.376,8 +20414,340,37,15,22,17,,R,20,0,7,,,6,16,01:47.7,182.14,39 +20415,340,67,5,16,13,,R,21,0,0,,,,,,,3 +20416,340,155,15,23,15,,R,22,0,0,,,,,,,3 +20417,340,24,10,15,18,,R,23,0,0,,,,,,,3 +20418,340,10,166,24,19,,W,24,0,0,,,,,,,5 +20419,341,17,9,6,1,1,1,1,25,66,35:44.1,5744101,62,2,01:24.8,197.552,1 +20420,341,4,6,8,4,2,2,2,18,66,24.065,5768166,57,3,01:24.8,197.51,1 +20421,341,20,9,5,2,3,3,3,15,66,51.338,5795439,56,5,01:25.2,196.745,1 +20422,341,30,131,3,6,4,4,4,12,66,+1:02.195,5806296,64,10,01:25.5,195.933,1 +20423,341,18,1,1,5,5,5,5,10,66,+1:03.728,5807829,64,4,01:25.2,196.768,1 +20424,341,13,6,7,9,6,6,6,8,66,+1:05.767,5809868,64,9,01:25.5,196.006,1 +20425,341,16,10,14,11,7,7,7,6,66,+1:12.941,5817042,65,13,01:25.8,195.212,1 +20426,341,9,4,11,7,8,8,8,4,66,+1:13.677,5817778,66,7,01:25.5,196.077,1 +20427,341,22,3,9,17,9,9,9,2,65,,,59,12,01:25.7,195.478,11 +20428,341,153,5,17,15,10,10,10,1,65,,,63,11,01:25.7,195.645,11 +20429,341,808,4,12,19,11,11,11,0,65,,,63,8,01:25.5,196.068,11 +20430,341,155,15,23,10,12,12,12,0,65,,,62,15,01:26.1,194.672,11 +20431,341,3,131,4,8,13,13,13,0,65,,,50,6,01:25.5,196.103,11 +20432,341,1,1,2,3,14,14,14,0,64,,,59,1,01:24.4,198.655,29 +20433,341,24,10,15,16,15,15,15,0,64,,,63,14,01:25.9,195.032,5 +20434,341,807,3,10,13,16,16,16,0,64,,,63,17,01:26.9,192.924,12 +20435,341,15,205,18,18,17,17,17,0,63,,,56,18,01:29.6,187.106,13 +20436,341,10,166,24,22,18,18,18,0,63,,,60,19,01:29.8,186.664,13 +20437,341,810,166,25,23,19,19,19,0,62,,,47,20,01:29.9,186.398,14 +20438,341,67,5,16,14,,R,20,0,42,,,41,16,01:26.7,193.233,9 +20439,341,812,164,20,24,,R,21,0,27,,,26,22,01:32.0,182.071,22 +20440,341,37,15,22,12,,R,22,0,18,,,9,21,01:30.4,185.353,4 +20441,341,811,164,21,21,,R,23,0,0,,,,,,,3 +20442,341,5,205,19,20,,W,24,0,0,,,,,,,6 +20443,342,17,9,6,1,1,1,1,25,78,50:13.4,6613355,63,2,01:15.3,159.643,1 +20444,342,20,9,5,3,2,2,2,18,78,0.448,6613803,71,1,01:15.2,159.91,1 +20445,342,9,4,11,2,3,3,3,15,78,1.675,6615030,72,3,01:15.4,159.568,1 +20446,342,13,6,7,4,4,4,4,12,78,2.666,6616021,68,4,01:15.5,159.251,1 +20447,342,1,1,2,5,5,5,5,10,78,4.363,6617718,68,10,01:16.2,157.755,1 +20448,342,4,6,8,24,6,6,6,8,78,6.341,6619696,73,6,01:15.9,158.408,1 +20449,342,3,131,4,6,7,7,7,6,78,6.651,6620006,65,7,01:16.0,158.295,1 +20450,342,16,10,14,12,8,8,8,4,78,6.97,6620325,72,8,01:16.0,158.287,1 +20451,342,24,10,15,10,9,9,9,2,78,7.305,6620660,72,9,01:16.1,157.915,1 +20452,342,67,5,16,13,10,10,10,1,78,8.199,6621554,68,13,01:16.5,157.19,1 +20453,342,153,5,17,17,11,11,11,0,78,9.135,6622490,73,11,01:16.4,157.421,1 +20454,342,30,131,3,7,12,12,12,0,78,5.712,6619067,71,5,01:15.6,159.089,1 +20455,342,808,4,12,14,13,13,13,0,73,,,60,12,01:16.4,157.371,23 +20456,342,812,164,20,23,14,14,14,0,70,,,69,19,01:19.6,151.144,4 +20457,342,15,205,18,19,15,15,15,0,70,,,69,18,01:19.3,151.55,4 +20458,342,5,205,19,18,,R,16,0,58,,,57,14,01:18.4,153.365,38 +20459,342,811,164,21,22,,R,17,0,58,,,58,20,01:20.1,150.056,9 +20460,342,22,3,9,9,,R,18,0,30,,,22,16,01:19.1,152.06,22 +20461,342,155,15,23,16,,R,19,0,26,,,24,15,01:18.8,152.637,6 +20462,342,810,166,25,21,,R,20,0,25,,,19,22,01:22.3,146.179,36 +20463,342,10,166,24,20,,R,21,0,22,,,11,21,01:20.8,148.857,49 +20464,342,37,15,22,15,,R,22,0,21,,,21,17,01:19.3,151.684,9 +20465,342,18,1,1,8,,R,23,0,2,,,2,23,02:14.3,89.54,5 +20466,342,807,3,10,11,,R,24,0,0,,,,,,,33 +20467,343,1,1,2,2,1,1,1,25,58,28:47.6,5327620,54,12,01:30.1,213.342,1 +20468,343,18,1,1,4,2,2,2,18,58,2.645,5330265,42,7,01:29.9,213.769,1 +20469,343,17,9,6,1,3,3,3,15,58,24.285,5351905,54,2,01:29.2,215.447,1 +20470,343,30,131,3,5,4,4,4,12,58,31.11,5358730,53,6,01:29.8,213.971,1 +20471,343,3,131,4,6,5,5,5,10,58,32.266,5359886,52,9,01:30.0,213.574,1 +20472,343,9,4,11,7,6,6,6,8,58,32.824,5360444,57,4,01:29.6,214.521,1 +20473,343,13,6,7,8,7,7,7,6,58,36.635,5364255,58,10,01:30.0,213.529,1 +20474,343,4,6,8,12,8,8,8,4,58,46.544,5374164,56,11,01:30.0,213.493,1 +20475,343,16,10,14,11,9,9,9,2,58,49.029,5376649,55,8,01:30.0,213.617,1 +20476,343,155,15,23,10,10,10,10,1,58,+1:05.650,5393270,42,16,01:30.9,211.426,1 +20477,343,37,15,22,13,11,11,11,0,58,+1:05.944,5393564,50,14,01:30.4,212.525,1 +20478,343,153,5,17,16,12,12,12,0,58,+1:07.800,5395420,50,3,01:29.5,214.628,1 +20479,343,24,10,15,18,13,13,13,0,57,,,53,18,01:31.4,210.201,11 +20480,343,22,3,9,15,14,14,14,0,57,,,53,17,01:30.9,211.329,11 +20481,343,808,4,12,9,15,15,15,0,57,,,57,1,01:29.2,215.519,11 +20482,343,67,5,16,14,16,16,16,0,57,,,57,5,01:29.6,214.501,11 +20483,343,807,3,10,17,17,17,17,0,57,,,51,15,01:30.6,212.059,11 +20484,343,10,166,24,21,18,18,18,0,55,,,48,19,01:32.3,208.278,13 +20485,343,810,166,25,23,19,19,19,0,55,,,55,20,01:33.3,206.062,13 +20486,343,812,164,20,24,20,20,20,0,52,,,37,24,01:34.6,203.169,48 +20487,343,811,164,21,22,,R,21,0,46,,,35,21,01:34.2,203.898,32 +20488,343,20,9,5,3,,R,22,0,39,,,37,13,01:30.2,213.091,4 +20489,343,5,205,19,20,,R,23,0,33,,,26,22,01:34.4,203.647,9 +20490,343,15,205,18,19,,R,24,0,32,,,26,23,01:34.5,203.432,9 +20491,344,1,1,2,1,1,1,1,25,70,33:53.5,5633456,62,2,01:17.8,201.778,1 +20492,344,18,1,1,4,2,2,2,18,70,2.254,5635710,66,4,01:18.1,200.906,1 +20493,344,4,6,8,3,3,3,3,15,70,9.214,5642670,44,6,01:18.2,200.744,1 +20494,344,20,9,5,2,4,4,4,12,70,37.817,5671273,62,8,01:18.4,200.206,1 +20495,344,17,9,6,7,5,5,5,10,70,39.291,5672747,62,5,01:18.1,200.895,1 +20496,344,3,131,4,10,6,6,6,8,70,56.084,5689540,68,3,01:17.8,201.711,1 +20497,344,9,4,11,8,7,7,7,6,70,57.3,5690756,67,1,01:17.0,203.965,1 +20498,344,67,5,16,15,8,8,8,4,69,,,39,15,01:19.8,196.776,11 +20499,344,24,10,15,5,9,9,9,2,69,,,66,11,01:19.3,197.855,11 +20500,344,16,10,14,9,10,10,10,1,69,,,68,13,01:19.5,197.404,11 +20501,344,30,131,3,13,11,11,11,0,69,,,44,14,01:19.6,197.288,11 +20502,344,153,5,17,16,12,12,12,0,69,,,69,16,01:19.8,196.633,11 +20503,344,807,3,10,12,13,13,13,0,69,,,64,9,01:18.9,198.95,11 +20504,344,22,3,9,11,14,14,14,0,69,,,65,10,01:19.2,198.289,11 +20505,344,13,6,7,6,15,15,15,0,69,,,45,7,01:18.3,200.441,11 +20506,344,5,205,19,19,16,16,16,0,68,,,65,18,01:20.7,194.653,12 +20507,344,808,4,12,14,17,17,17,0,68,,,58,12,01:19.5,197.596,12 +20508,344,812,164,20,24,18,18,18,0,66,,,47,21,01:21.9,191.729,14 +20509,344,810,166,25,23,19,19,19,0,65,,,49,22,01:21.9,191.605,15 +20510,344,10,166,24,21,,R,20,0,55,,,43,20,01:21.7,192.234,26 +20511,344,15,205,18,20,,R,21,0,47,,,38,19,01:20.8,194.323,23 +20512,344,37,15,22,17,,R,22,0,31,,,21,17,01:20.6,194.846,5 +20513,344,811,164,21,22,,R,23,0,14,,,5,23,01:24.5,185.741,9 +20514,344,155,15,23,18,,R,24,0,1,,,,,,,3 +20515,345,20,9,5,1,1,1,1,25,57,40:29.6,6029571,52,3,01:39.1,196.774,1 +20516,345,1,1,2,3,2,2,2,18,57,5.042,6034613,56,4,01:39.2,196.744,1 +20517,345,18,1,1,7,3,3,3,15,57,12.658,6042229,54,1,01:38.8,197.521,1 +20518,345,22,3,9,9,4,4,4,12,57,25.627,6055198,56,5,01:39.5,196.085,1 +20519,345,9,4,11,6,5,5,5,10,57,27.122,6056693,55,7,01:39.5,195.981,1 +20520,345,16,10,14,13,6,6,6,8,57,30.168,6059739,52,8,01:39.8,195.469,1 +20521,345,155,15,23,18,7,7,7,6,57,30.965,6060536,57,6,01:39.5,196.03,1 +20522,345,4,6,8,4,8,8,8,4,57,32.809,6062380,50,10,01:39.9,195.3,1 +20523,345,67,5,16,11,9,9,9,2,57,36.299,6065870,53,11,01:40.1,194.92,1 +20524,345,3,131,4,12,10,10,10,1,57,44.382,6073953,57,9,01:39.9,195.322,1 +20525,345,13,6,7,5,11,11,11,0,57,46.621,6076192,52,13,01:40.2,194.679,1 +20526,345,37,15,22,16,12,12,12,0,57,47.414,6076985,56,16,01:40.4,194.248,1 +20527,345,153,5,17,17,13,13,13,0,57,48.239,6077810,55,15,01:40.3,194.448,1 +20528,345,808,4,12,10,14,14,14,0,57,48.287,6077858,57,12,01:40.1,194.889,1 +20529,345,30,131,3,15,15,15,15,0,57,48.826,6078397,53,2,01:39.0,197.118,1 +20530,345,24,10,15,14,16,16,16,0,57,50.89,6080461,52,14,01:40.3,194.49,1 +20531,345,810,166,25,21,17,17,17,0,56,,,45,20,01:42.4,190.485,11 +20532,345,812,164,20,23,18,18,18,0,55,,,51,22,01:43.8,187.905,12 +20533,345,10,166,24,22,19,19,19,0,55,,,48,19,01:42.3,190.662,12 +20534,345,811,164,21,24,20,20,20,0,55,,,55,21,01:42.9,189.536,12 +20535,345,15,205,18,19,21,21,21,0,53,,,53,18,01:41.8,191.691,14 +20536,345,807,3,10,8,,R,22,0,49,,,46,17,01:40.8,193.554,43 +20537,345,5,205,19,20,,R,23,0,8,,,8,24,01:46.1,183.816,4 +20538,345,17,9,6,2,,R,24,0,8,,,5,23,01:44.1,187.465,4 +20539,346,17,9,6,2,1,1,1,25,52,24:38.2,5078200,45,4,01:32.4,229.608,1 +20540,346,1,1,2,4,2,2,2,18,52,1.36,5079560,43,6,01:32.8,228.633,1 +20541,346,3,131,4,5,3,3,3,15,52,21.307,5099507,50,7,01:33.0,228.156,1 +20542,346,18,1,1,14,4,4,4,12,52,21.986,5100186,52,9,01:33.0,228.031,1 +20543,346,22,3,9,8,5,5,5,10,52,31.456,5109656,50,11,01:33.6,226.54,1 +20544,346,155,15,23,12,6,6,6,8,52,32.171,5110371,52,10,01:33.6,226.678,1 +20545,346,20,9,5,1,7,7,7,6,52,36.734,5114934,52,3,01:32.0,230.6,1 +20546,346,16,10,14,11,8,8,8,4,52,40.932,5119132,42,16,01:34.3,224.806,1 +20547,346,30,131,3,10,9,9,9,2,52,41.599,5119799,47,15,01:34.2,225.203,1 +20548,346,807,3,10,13,10,10,10,1,52,42.012,5120212,48,13,01:34.0,225.639,1 +20549,346,24,10,15,20,11,11,11,0,52,42.459,5120659,51,14,01:34.0,225.569,1 +20550,346,67,5,16,16,12,12,12,0,52,47.627,5125827,52,8,01:33.0,228.087,1 +20551,346,808,4,12,15,13,13,13,0,52,59.374,5137574,52,5,01:32.5,229.311,1 +20552,346,4,6,8,3,14,14,14,0,52,+1:02.385,5140585,52,1,01:30.9,233.373,1 +20553,346,13,6,7,7,15,15,15,0,52,+1:07.489,5145689,52,2,01:31.6,231.407,1 +20554,346,15,205,18,21,16,16,16,0,51,,,44,20,01:36.5,219.724,11 +20555,346,5,205,19,18,17,17,17,0,51,,,48,18,01:36.3,220.336,11 +20556,346,10,166,24,19,18,18,18,0,50,,,49,19,01:36.4,219.961,12 +20557,346,812,164,20,23,19,19,19,0,50,,,40,23,01:38.8,214.656,12 +20558,346,29,164,21,24,20,20,20,0,50,,,50,22,01:38.3,215.723,12 +20559,346,153,5,17,17,,R,21,0,44,,,43,12,01:33.7,226.219,23 +20560,346,37,15,22,9,,R,22,0,29,,,23,17,01:35.9,221.182,4 +20561,346,9,4,11,6,,R,23,0,19,,,12,21,01:36.8,218.982,30 +20562,346,810,166,25,22,,R,24,0,9,,,7,24,01:40.6,210.725,9 +20563,347,4,6,8,2,1,1,1,25,67,27:38.9,5258864,66,2,01:15.9,217.005,1 +20564,347,13,6,7,3,2,2,2,18,67,4.196,5263060,66,3,01:16.1,216.386,1 +20565,347,20,9,5,1,3,3,3,15,67,5.121,5263985,67,1,01:15.8,217.166,1 +20566,347,1,1,2,6,4,4,4,12,67,26.896,5285760,65,5,01:16.5,215.238,1 +20567,347,18,1,1,5,5,5,5,10,67,29.482,5288346,65,4,01:16.5,215.385,1 +20568,347,17,9,6,4,6,6,6,8,67,43.606,5302470,57,9,01:16.7,214.747,1 +20569,347,9,4,11,7,7,7,7,6,66,,,62,16,01:17.2,213.389,11 +20570,347,3,131,4,9,8,8,8,4,66,,,66,8,01:16.6,214.94,11 +20571,347,30,131,3,11,9,9,9,2,66,,,66,14,01:17.1,213.605,11 +20572,347,808,4,12,13,10,10,10,1,66,,,62,17,01:17.2,213.3,11 +20573,347,155,15,23,12,11,11,11,0,66,,,63,15,01:17.1,213.571,11 +20574,347,22,3,9,8,12,12,12,0,66,,,63,13,01:17.0,213.768,11 +20575,347,807,3,10,10,13,13,13,0,66,,,61,11,01:16.8,214.305,11 +20576,347,37,15,22,14,14,14,14,0,66,,,61,6,01:16.5,215.171,11 +20577,347,153,5,17,15,15,15,15,0,66,,,66,12,01:17.0,213.929,11 +20578,347,24,10,15,21,16,16,16,0,65,,,64,7,01:16.6,214.977,12 +20579,347,16,10,14,19,17,17,17,0,65,,,65,10,01:16.7,214.722,12 +20580,347,10,166,24,23,18,18,18,0,64,,,62,18,01:18.2,210.538,13 +20581,347,811,164,21,20,19,19,19,0,63,,,57,21,01:20.9,203.638,14 +20582,347,5,205,19,18,,R,20,0,56,,,51,19,01:20.7,204.135,4 +20583,347,810,166,25,24,,R,21,0,50,,,49,20,01:20.7,204.037,6 +20584,347,29,164,20,22,,R,22,0,19,,,16,22,01:23.5,197.105,5 +20585,347,15,205,18,17,,R,23,0,3,,,2,23,02:14.5,122.47,6 +20586,347,67,5,16,16,,R,24,0,1,,,,,,,4 +20587,348,17,9,6,2,1,1,1,25,70,41:05.6,6065571,46,2,01:22.7,190.821,1 +20588,348,4,6,8,3,2,2,2,18,70,17.821,6083392,67,4,01:23.2,189.573,1 +20589,348,20,9,5,1,3,3,3,15,70,19.252,6084823,70,1,01:22.4,191.491,1 +20590,348,13,6,7,4,4,4,4,12,70,27.474,6093045,69,5,01:23.3,189.269,1 +20591,348,808,4,12,7,5,5,5,10,70,+1:13.192,6138763,61,6,01:23.8,188.207,1 +20592,348,807,3,10,10,6,6,6,8,70,+1:16.723,6142294,66,7,01:24.2,187.302,1 +20593,348,37,15,22,9,7,7,7,6,69,,,65,10,01:24.3,186.995,11 +20594,348,18,1,1,11,8,8,8,4,69,,,61,8,01:24.2,187.3,11 +20595,348,155,15,23,23,9,9,9,2,69,,,68,9,01:24.3,187.128,11 +20596,348,22,3,9,12,10,10,10,1,69,,,68,3,01:22.8,190.452,11 +20597,348,30,131,3,14,11,11,11,0,69,,,64,12,01:25.4,184.739,11 +20598,348,67,5,16,15,12,12,12,0,69,,,58,13,01:25.4,184.573,11 +20599,348,24,10,15,16,13,13,13,0,69,,,58,11,01:25.4,184.77,11 +20600,348,5,205,19,19,14,14,14,0,67,,,64,18,01:27.5,180.335,13 +20601,348,15,205,18,20,15,15,15,0,67,,,58,17,01:27.4,180.393,13 +20602,348,10,166,24,18,16,16,16,0,67,,,59,19,01:27.7,179.889,13 +20603,348,811,164,21,22,17,17,17,0,67,,,61,21,01:28.1,179.033,13 +20604,348,810,166,25,21,18,18,18,0,66,,,62,16,01:27.3,180.686,14 +20605,348,29,164,20,24,19,19,19,0,66,,,59,23,01:29.3,176.657,14 +20606,348,1,1,2,5,,R,20,0,23,,,22,14,01:26.3,182.842,6 +20607,348,9,4,11,8,,R,21,0,23,,,21,15,01:26.8,181.648,31 +20608,348,3,131,4,6,,R,22,0,15,,,13,20,01:28.0,179.316,36 +20609,348,16,10,14,13,,R,23,0,15,,,12,22,01:28.2,178.862,4 +20610,348,153,5,17,17,,R,24,0,1,,,,,,,5 +20611,349,1,1,2,2,1,1,1,25,44,29:04.3,5344268,32,1,01:49.1,231.178,1 +20612,349,17,9,6,1,2,2,2,18,44,1.571,5345839,32,2,01:49.4,230.489,1 +20613,349,9,4,11,3,3,3,3,15,44,3.493,5347761,29,3,01:49.8,229.624,1 +20614,349,13,6,7,6,4,4,4,12,44,8.264,5352532,26,4,01:50.1,228.99,1 +20615,349,16,10,14,8,5,5,5,10,44,9.094,5353362,25,5,01:50.5,228.232,1 +20616,349,3,131,4,14,6,6,6,8,44,12.359,5356627,31,10,01:51.7,225.757,1 +20617,349,30,131,3,21,7,7,7,6,44,15.548,5359816,32,13,01:51.9,225.301,1 +20618,349,155,15,23,17,8,8,8,4,44,16.678,5360946,29,11,01:51.7,225.634,1 +20619,349,808,4,12,23,9,9,9,2,44,23.851,5368119,32,7,01:51.2,226.799,1 +20620,349,24,10,15,12,10,10,10,1,44,34.831,5379099,31,14,01:52.3,224.593,1 +20621,349,37,15,22,24,11,11,11,0,44,36.019,5380287,31,15,01:52.5,224.054,1 +20622,349,67,5,16,16,12,12,12,0,44,39.895,5384163,30,17,01:53.0,223.203,1 +20623,349,153,5,17,11,13,13,13,0,44,49.457,5393725,31,9,01:51.6,225.984,1 +20624,349,807,3,10,9,14,14,14,0,43,,,28,12,01:51.9,225.402,11 +20625,349,20,9,5,4,15,15,15,0,43,,,22,6,01:50.9,227.427,11 +20626,349,5,205,19,13,16,16,16,0,43,,,23,22,01:55.8,217.746,11 +20627,349,810,166,25,22,17,17,17,0,43,,,25,21,01:55.7,217.919,11 +20628,349,10,166,24,20,18,18,18,0,43,,,31,19,01:55.3,218.745,11 +20629,349,15,205,18,15,19,19,19,0,43,,,24,18,01:55.1,219.059,11 +20630,349,29,164,20,19,20,20,20,0,42,,,31,20,01:55.5,218.336,12 +20631,349,4,6,8,10,,R,21,0,37,,,29,8,01:51.4,226.393,3 +20632,349,18,1,1,5,,R,22,0,15,,,6,16,01:52.9,223.375,4 +20633,349,811,164,21,18,,R,23,0,5,,,5,23,02:20.2,179.844,31 +20634,349,22,3,9,7,,R,24,0,0,,,,,,,4 +20635,350,4,6,8,1,1,1,1,25,53,16:24.6,4584572,52,1,01:24.1,247.861,1 +20636,350,18,1,1,2,2,2,2,18,53,2.938,4587510,46,8,01:24.6,246.516,1 +20637,350,13,6,7,3,3,3,3,15,53,4.223,4588795,51,6,01:24.6,246.583,1 +20638,350,20,9,5,6,4,4,4,12,53,28.196,4612768,50,4,01:24.5,246.822,1 +20639,350,3,131,4,7,5,5,5,10,53,29.942,4614514,52,3,01:24.5,246.828,1 +20640,350,17,9,6,4,6,6,6,8,53,31.276,4615848,52,2,01:24.3,247.452,1 +20641,350,807,3,10,8,7,7,7,6,53,32.812,4617384,52,7,01:24.6,246.58,1 +20642,350,9,4,11,9,8,8,8,4,53,34.028,4618600,48,5,01:24.6,246.627,1 +20643,350,30,131,3,12,9,9,9,2,53,44.948,4629520,49,11,01:24.9,245.503,1 +20644,350,22,3,9,10,10,10,10,1,53,+1:04.213,4648785,48,14,01:25.2,244.662,1 +20645,350,67,5,16,14,11,11,11,0,53,+1:05.056,4649628,51,13,01:25.2,244.705,1 +20646,350,24,10,15,19,12,12,12,0,53,+1:06.106,4650678,51,12,01:25.1,245.056,1 +20647,350,808,4,12,20,13,13,13,0,53,+1:18.919,4663491,53,9,01:24.6,246.382,1 +20648,350,37,15,22,16,14,14,14,0,52,,,47,16,01:26.3,241.584,11 +20649,350,153,5,17,15,15,15,15,0,52,,,51,15,01:25.5,243.995,11 +20650,350,16,10,14,11,16,16,16,0,52,,,51,10,01:24.9,245.532,11 +20651,350,10,166,24,24,17,17,17,0,51,,,50,17,01:27.8,237.62,12 +20652,350,5,205,19,18,18,18,18,0,51,,,50,18,01:27.8,237.466,12 +20653,350,29,164,20,23,19,19,19,0,51,,,45,20,01:28.9,234.653,12 +20654,350,810,166,25,21,20,20,20,0,50,,,46,19,01:28.2,236.526,13 +20655,350,15,205,18,17,,R,21,0,46,,,30,21,01:29.0,234.278,5 +20656,350,811,164,21,22,,R,22,0,11,,,10,22,01:30.9,229.476,31 +20657,350,1,1,2,5,,R,23,0,0,,,,,,,4 +20658,350,155,15,23,13,,R,24,0,0,,,,,,,6 +20659,351,4,6,8,1,1,1,1,25,61,57:53.6,7073579,58,1,01:48.0,169.137,1 +20660,351,20,9,5,2,2,2,2,18,61,0.293,7073872,59,2,01:48.1,168.879,1 +20661,351,17,9,6,5,3,3,3,15,61,29.141,7102720,54,5,01:49.7,166.47,1 +20662,351,18,1,1,4,4,4,4,12,61,30.384,7103963,61,7,01:49.7,166.462,1 +20663,351,3,131,4,7,5,5,5,10,61,49.394,7122973,55,8,01:50.1,165.837,1 +20664,351,22,3,9,6,6,6,6,8,61,56.101,7129680,52,9,01:50.3,165.522,1 +20665,351,9,4,11,8,7,7,7,6,61,+1:26.559,7160138,56,3,01:49.3,167.157,1 +20666,351,13,6,7,24,8,8,8,4,61,+1:53.297,7186876,45,12,01:52.1,162.945,1 +20667,351,16,10,14,15,9,9,9,2,61,+2:02.416,7195995,45,15,01:52.5,162.374,1 +20668,351,807,3,10,17,10,10,10,1,61,+2:12.791,7206370,45,13,01:52.2,162.751,1 +20669,351,808,4,12,12,11,11,11,0,60,,,46,11,01:51.9,163.202,11 +20670,351,153,5,17,11,12,12,12,0,60,,,43,14,01:52.3,162.577,11 +20671,351,30,131,3,9,13,13,13,0,60,,,54,4,01:49.7,166.509,11 +20672,351,67,5,16,13,14,14,14,0,60,,,59,6,01:49.7,166.464,11 +20673,351,810,166,25,20,15,15,15,0,59,,,55,17,01:52.5,162.317,12 +20674,351,5,205,19,19,16,16,16,0,58,,,53,18,01:53.1,161.544,5 +20675,351,10,166,24,18,,R,17,0,49,,,38,19,01:53.6,160.822,9 +20676,351,2,15,22,14,,R,18,0,36,,,29,16,01:52.5,162.372,4 +20677,351,1,1,2,3,,R,19,0,35,,,31,10,01:50.7,164.901,4 +20678,351,32,164,20,22,,R,20,0,31,,,23,22,01:57.8,155.077,9 +20679,351,155,15,23,10,,R,21,0,30,,,22,20,01:54.0,160.26,3 +20680,351,811,164,21,23,,R,22,0,29,,,19,23,01:58.0,154.819,3 +20681,351,15,205,18,21,,R,23,0,27,,,20,21,01:56.4,156.915,9 +20682,351,24,10,15,16,,R,24,0,1,,,,,,,4 +20683,352,20,9,5,1,1,1,1,25,53,30:27.3,5427323,51,3,01:33.7,223.219,1 +20684,352,17,9,6,2,2,2,2,18,53,0.905,5428228,53,1,01:33.5,223.647,1 +20685,352,4,6,8,4,3,3,3,15,53,2.721,5430044,53,4,01:33.8,222.815,1 +20686,352,18,1,1,5,4,4,4,12,53,13.522,5440845,53,2,01:33.5,223.515,1 +20687,352,1,1,2,8,5,5,5,10,53,39.595,5466918,35,9,01:35.2,219.633,1 +20688,352,30,131,3,10,6,6,6,8,53,59.933,5487256,52,7,01:34.9,220.395,1 +20689,352,155,15,23,14,7,7,7,6,53,+1:04.038,5491361,50,6,01:34.5,221.251,1 +20690,352,2,15,22,11,8,8,8,4,53,+1:09.648,5496971,52,10,01:35.5,218.854,1 +20691,352,22,3,9,7,9,9,9,2,53,+1:10.846,5498169,53,11,01:35.6,218.68,1 +20692,352,67,5,16,18,10,10,10,1,53,+1:12.806,5500129,52,8,01:35.1,219.786,1 +20693,352,153,5,17,16,11,11,11,0,52,,,49,5,01:34.4,221.535,11 +20694,352,5,205,19,20,12,12,12,0,52,,,51,14,01:37.6,214.148,11 +20695,352,15,205,18,19,13,13,13,0,51,,,28,15,01:39.7,209.66,12 +20696,352,10,166,24,22,14,14,14,0,51,,,51,17,01:39.8,209.443,12 +20697,352,811,164,21,23,15,15,15,0,51,,,49,18,01:40.3,208.366,12 +20698,352,29,164,20,24,16,16,16,0,50,,,33,16,01:39.8,209.458,13 +20699,352,3,131,4,6,,R,17,0,47,,,44,12,01:36.1,217.517,22 +20700,352,16,10,14,15,,R,18,0,44,,,43,13,01:36.3,217.041,44 +20701,352,9,4,11,3,,R,19,0,2,,,2,19,02:41.4,129.541,36 +20702,352,807,3,10,9,,R,20,0,0,,,,,,,3 +20703,352,13,6,7,12,,R,21,0,0,,,,,,,3 +20704,352,808,4,12,13,,R,22,0,0,,,,,,,3 +20705,352,24,10,15,17,,R,23,0,0,,,,,,,3 +20706,352,810,166,25,21,,R,24,0,0,,,,,,,22 +20707,353,4,6,8,3,1,1,1,25,55,48:20.8,10100810,42,1,01:50.3,183.335,1 +20708,353,1,1,2,4,2,2,2,18,55,14.999,10115809,42,3,01:50.4,183.048,1 +20709,353,13,6,7,6,3,3,3,15,55,30.868,10131678,44,4,01:50.5,182.928,1 +20710,353,30,131,3,9,4,4,4,12,55,39.688,10140498,43,8,01:51.8,180.748,1 +20711,353,9,4,11,8,5,5,5,10,55,47.734,10148544,45,7,01:51.6,181.122,1 +20712,353,24,10,15,17,6,6,6,8,55,53.571,10154381,45,5,01:51.4,181.501,1 +20713,353,22,3,9,10,7,7,7,6,55,+1:09.257,10170067,45,6,01:51.6,181.187,1 +20714,353,155,15,23,12,8,8,8,4,55,+1:17.889,10178699,42,14,01:53.1,178.748,1 +20715,353,2,15,22,13,9,9,9,2,55,+1:20.107,10180917,42,15,01:53.3,178.469,1 +20716,353,807,3,10,11,10,10,10,1,55,+1:20.851,10181661,43,10,01:52.0,180.511,1 +20717,353,153,5,17,15,11,11,11,0,55,+1:24.146,10184956,43,9,01:52.0,180.543,1 +20718,353,18,1,1,7,12,12,12,0,55,+1:29.939,10190749,42,11,01:52.2,180.171,1 +20719,353,5,205,19,21,13,13,13,0,54,,,43,16,01:55.0,175.746,11 +20720,353,811,164,21,24,14,14,14,0,53,,,30,20,01:59.3,169.452,12 +20721,353,29,164,20,23,15,15,15,0,53,,,36,19,01:58.3,170.851,12 +20722,353,16,10,14,14,,R,16,0,46,,,40,12,01:52.6,179.518,4 +20723,353,20,9,5,1,,R,17,0,45,,,44,2,01:50.4,183.139,5 +20724,353,808,4,12,20,,R,18,0,39,,,39,13,01:53.0,178.835,3 +20725,353,10,166,24,19,,R,19,0,31,,,29,18,01:58.1,171.157,4 +20726,353,67,5,16,16,,R,20,0,30,,,27,17,01:56.8,173.112,4 +20727,353,810,166,25,22,,R,21,0,25,,,25,23,02:02.6,164.83,3 +20728,353,15,205,18,18,,R,22,0,25,,,20,24,02:05.2,161.503,9 +20729,353,17,9,6,2,,R,23,0,18,,,18,21,02:00.0,168.414,3 +20730,353,3,131,4,5,,R,24,0,18,,,18,22,02:00.7,167.539,4 +20731,354,20,9,5,2,1,1,1,25,71,33:11.8,5591803,70,6,01:14.3,208.828,1 +20732,354,17,9,6,3,2,2,2,18,71,4.243,5596046,69,4,01:14.0,209.493,1 +20733,354,4,6,8,5,3,3,3,15,71,6.807,5598610,67,2,01:13.9,210.038,1 +20734,354,1,1,2,4,4,4,4,12,71,14.634,5606437,66,1,01:13.9,210.049,1 +20735,354,18,1,1,11,5,5,5,10,71,15.593,5607396,71,3,01:13.9,209.819,1 +20736,354,3,131,4,13,6,6,6,8,71,35.32,5627123,65,5,01:14.2,209.107,1 +20737,354,30,131,3,8,7,7,7,6,71,43.456,5635259,71,12,01:15.2,206.229,1 +20738,354,807,3,10,1,8,8,8,4,70,,,70,8,01:15.0,206.873,11 +20739,354,9,4,11,7,9,9,9,2,70,,,61,11,01:15.2,206.388,11 +20740,354,155,15,23,12,10,10,10,1,70,,,65,7,01:14.7,207.529,11 +20741,354,153,5,17,14,11,11,11,0,70,,,68,16,01:15.7,204.932,11 +20742,354,16,10,14,22,12,12,12,0,70,,,64,9,01:15.0,206.84,11 +20743,354,67,5,16,19,13,13,13,0,70,,,69,17,01:15.9,204.285,11 +20744,354,22,3,9,6,14,14,14,0,70,,,69,13,01:15.2,206.207,11 +20745,354,13,6,7,9,15,15,15,0,70,,,69,14,01:15.3,205.925,11 +20746,354,808,4,12,10,16,16,16,0,70,,,70,15,01:15.5,205.503,11 +20747,354,2,15,22,15,17,17,17,0,70,,,68,10,01:15.1,206.644,11 +20748,354,5,205,19,20,18,18,18,0,69,,,69,20,01:17.2,201.039,12 +20749,354,15,205,18,18,19,19,19,0,69,,,69,21,01:17.3,200.636,12 +20750,354,10,166,24,17,20,20,20,0,69,,,66,23,01:17.7,199.657,12 +20751,354,811,164,21,24,21,21,21,0,69,,,66,24,01:17.7,199.565,12 +20752,354,32,164,20,23,22,22,22,0,65,,,63,22,01:17.7,199.67,16 +20753,354,810,166,25,21,,N,23,0,62,,,60,18,01:16.8,202.071,19 +20754,354,24,10,15,16,,R,24,0,49,,,37,19,01:16.9,201.616,3 +20755,355,20,9,5,1,1,1,1,25,55,39:36.8,5976837,50,4,01:41.7,196.526,1 +20756,355,1,1,2,2,2,2,2,18,55,10.162,5986999,47,1,01:41.3,197.428,1 +20757,355,18,1,1,4,3,3,3,15,55,11.047,5987884,48,2,01:41.6,196.725,1 +20758,355,3,131,4,9,4,4,4,12,55,30.747,6007584,52,3,01:41.7,196.58,1 +20759,355,9,4,11,11,5,5,5,10,55,39.026,6015863,51,5,01:41.8,196.499,1 +20760,355,808,4,12,10,6,6,6,8,55,43.52,6020357,52,8,01:42.3,195.427,1 +20761,355,4,6,8,3,7,7,7,6,55,43.797,6020634,52,7,01:42.2,195.588,1 +20762,355,17,9,6,5,8,8,8,4,55,44.243,6021080,52,6,01:42.2,195.647,1 +20763,355,153,5,17,17,9,9,9,2,55,50.201,6027038,49,15,01:42.7,194.636,1 +20764,355,13,6,7,6,10,10,10,1,55,50.868,6027705,52,14,01:42.7,194.64,1 +20765,355,2,15,22,14,11,11,11,0,55,51.551,6028388,52,12,01:42.7,194.738,1 +20766,355,22,3,9,7,12,12,12,0,55,57.686,6034523,50,11,01:42.7,194.746,1 +20767,355,16,10,14,13,13,13,13,0,55,58.325,6035162,52,13,01:42.7,194.696,1 +20768,355,155,15,23,12,14,14,14,0,55,59.558,6036395,53,16,01:42.7,194.624,1 +20769,355,67,5,16,18,15,15,15,0,55,+1:03.178,6040015,50,10,01:42.6,194.928,1 +20770,355,807,3,10,15,16,16,16,0,55,+1:04.763,6041600,51,9,01:42.4,195.263,1 +20771,355,5,205,19,20,17,17,17,0,54,,,52,17,01:45.4,189.739,11 +20772,355,810,166,25,22,18,18,18,0,53,,,50,19,01:46.1,188.402,12 +20773,355,811,164,21,23,19,19,19,0,53,,,52,20,01:46.3,188.173,12 +20774,355,32,164,20,24,20,20,20,0,53,,,44,21,01:46.6,187.483,12 +20775,355,15,205,18,19,21,21,21,0,51,,,42,18,01:46.0,188.663,65 +20776,355,10,166,24,21,,R,22,0,43,,,39,22,01:46.8,187.148,6 +20777,355,30,131,3,8,,R,23,0,0,,,,,,,4 +20778,355,24,10,15,16,,R,24,0,0,,,,,,,4 +20779,841,20,9,1,1,1,1,1,25,58,29:30.3,5370259,44,4,01:29.8,212.488,1 +20780,841,1,1,3,2,2,2,2,18,58,22.297,5392556,41,8,01:30.3,211.382,1 +20781,841,808,4,10,6,3,3,3,15,58,30.56,5400819,55,7,01:30.1,211.969,1 +20782,841,4,6,5,5,4,4,4,12,58,31.772,5402031,49,2,01:29.5,213.336,1 +20783,841,17,9,2,3,5,5,5,10,58,38.171,5408430,50,3,01:29.6,213.066,1 +20784,841,18,1,4,4,6,6,6,8,58,54.304,5424563,49,5,01:29.9,212.396,1 +20785,841,13,6,6,8,7,7,7,6,58,+1:25.186,5455445,55,1,01:28.9,214.631,1 +20786,841,67,5,18,10,8,8,8,4,57,,,44,11,01:30.8,210.167,11 +20787,841,16,10,14,16,9,9,9,2,57,,,55,13,01:31.5,208.583,11 +20788,841,814,10,15,14,10,10,10,1,57,,,40,14,01:31.9,207.641,11 +20789,841,153,5,19,12,11,11,11,0,57,,,41,10,01:30.5,211.025,11 +20790,841,2,4,9,18,12,12,12,0,57,,,43,15,01:32.4,206.661,11 +20791,841,15,205,21,20,13,13,13,0,56,,,52,16,01:32.6,206.275,12 +20792,841,816,166,25,22,14,14,14,0,54,,,44,19,01:34.5,201.969,14 +20793,841,10,166,24,21,,N,15,0,49,,,48,22,01:35.8,199.3,19 +20794,841,22,3,11,17,,R,16,0,48,,,47,12,01:31.4,208.861,7 +20795,841,3,131,8,7,,R,17,0,22,,,21,17,01:33.5,204.173,4 +20796,841,5,205,20,19,,R,18,0,19,,,19,20,01:34.9,201.129,47 +20797,841,30,131,7,11,,R,19,0,19,,,13,21,01:35.3,200.283,4 +20798,841,813,3,12,15,,R,20,0,9,,,7,18,01:34.1,202.873,7 +20799,841,155,15,16,9,,D,21,0,58,,,51,9,01:30.4,211.218,2 +20800,841,815,15,17,13,,D,22,0,58,,,39,6,01:30.0,212.209,2 +20801,842,20,9,1,1,1,1,1,25,56,37:39.8,5859832,33,6,01:41.5,196.523,1 +20802,842,18,1,4,4,2,2,2,18,56,3.261,5863093,50,4,01:41.3,197.057,1 +20803,842,2,4,9,6,3,3,3,15,56,25.075,5884907,47,7,01:41.5,196.508,1 +20804,842,17,9,2,3,4,4,4,12,56,26.384,5886216,46,1,01:40.6,198.415,1 +20805,842,13,6,6,7,5,5,5,10,56,36.958,5896790,41,9,01:42.0,195.637,1 +20806,842,4,6,5,5,6,6,6,8,56,37.248,5897080,49,2,01:40.7,198.127,1 +20807,842,155,15,16,10,7,7,7,6,56,+1:06.439,5926271,39,10,01:42.1,195.453,1 +20808,842,1,1,3,2,8,8,8,4,56,+1:09.957,5929789,54,5,01:41.5,196.575,1 +20809,842,30,131,7,11,9,9,9,2,56,+1:24.896,5944728,45,11,01:42.5,194.698,1 +20810,842,814,10,15,14,10,10,10,1,56,+1:31.563,5951395,48,13,01:42.9,193.956,1 +20811,842,16,10,14,17,11,11,11,0,55,+1:41.379,5961211,34,14,01:43.0,193.786,11 +20812,842,3,131,8,9,12,12,12,0,55,,,45,8,01:41.8,196.062,11 +20813,842,67,5,18,12,13,13,13,0,55,,,36,12,01:42.7,194.379,11 +20814,842,153,5,19,13,14,14,14,0,55,,,37,17,01:43.7,192.346,11 +20815,842,5,205,20,19,15,15,15,0,55,,,43,16,01:43.7,192.47,11 +20816,842,10,166,24,21,16,16,16,0,54,,,50,20,01:45.4,189.401,12 +20817,842,808,4,10,8,17,17,17,0,52,,,49,3,01:41.1,197.466,3 +20818,842,24,164,23,23,,R,18,0,46,,,42,23,01:46.5,187.332,88 +20819,842,816,166,25,22,,R,19,0,42,,,41,19,01:45.3,189.421,3 +20820,842,15,205,21,20,,R,20,0,31,,,23,18,01:45.3,189.54,8 +20821,842,815,15,17,16,,R,21,0,23,,,19,15,01:43.3,193.177,3 +20822,842,22,3,11,15,,R,22,0,22,,,10,21,01:45.5,189.116,6 +20823,842,39,164,22,24,,R,23,0,14,,,5,24,01:49.4,182.427,128 +20824,842,813,3,12,18,,R,24,0,8,,,5,22,01:45.7,188.806,129 +20825,843,1,1,3,3,1,1,1,25,56,36:58.2,5818226,,0,,,1 +20826,843,20,9,1,1,2,2,2,18,56,5.198,5823424,,0,,,1 +20827,843,17,9,2,18,3,3,3,15,56,7.555,5825781,,0,,,1 +20828,843,18,1,4,2,4,4,4,12,56,10,5828226,,0,,,1 +20829,843,3,131,8,4,5,5,5,10,56,13.448,5831674,,0,,,1 +20830,843,13,6,6,6,6,6,6,8,56,15.84,5834066,,0,,,1 +20831,843,4,6,5,5,7,7,7,6,56,30.622,5848848,,0,,,1 +20832,843,30,131,7,14,8,8,8,4,56,31.026,5849252,,0,,,1 +20833,843,808,4,10,10,9,9,9,2,56,57.404,5875630,,0,,,1 +20834,843,155,15,16,13,10,10,10,1,56,+1:03.273,5881499,,0,,,1 +20835,843,814,10,15,8,11,11,11,0,56,+1:08.757,5886983,,0,,,1 +20836,843,2,4,9,16,12,12,12,0,56,+1:12.739,5890965,,0,,,1 +20837,843,22,3,11,15,13,13,13,0,56,+1:30.189,5908415,,0,,,1 +20838,843,67,5,18,9,14,14,14,0,56,+1:30.671,5908897,,0,,,1 +20839,843,16,10,14,11,15,15,15,0,55,,,,0,,,11 +20840,843,5,205,20,19,16,16,16,0,55,,,,0,,,11 +20841,843,815,15,17,12,17,17,17,0,55,,,,0,,,11 +20842,843,813,3,12,17,18,18,18,0,55,,,,0,,,11 +20843,843,15,205,21,20,19,19,19,0,55,,,,0,,,11 +20844,843,816,166,25,21,20,20,20,0,54,,,,0,,,12 +20845,843,10,166,24,22,21,21,21,0,54,,,,0,,,12 +20846,843,24,164,23,23,22,22,22,0,54,,,,0,,,12 +20847,843,39,164,22,24,23,23,23,0,54,,,,0,,,12 +20848,843,153,5,19,7,,R,24,0,9,,,,0,,,36 +20849,844,20,9,1,1,1,1,1,25,58,30:17.6,5417558,50,3,01:29.9,213.669,1 +20850,844,17,9,2,2,2,2,2,18,58,8.807,5426365,48,1,01:29.7,214.226,1 +20851,844,4,6,5,5,3,3,3,15,58,10.075,5427633,48,6,01:30.3,212.86,1 +20852,844,1,1,3,4,4,4,4,12,58,40.232,5457790,48,4,01:30.1,213.264,1 +20853,844,3,131,8,3,5,5,5,10,58,47.539,5465097,47,7,01:30.6,212.169,1 +20854,844,18,1,4,6,6,6,6,8,58,59.431,5476989,47,13,01:31.2,210.786,1 +20855,844,2,4,9,9,7,7,7,6,58,+1:00.857,5478415,52,5,01:30.2,213.145,1 +20856,844,808,4,10,7,8,8,8,4,58,+1:08.168,5485726,48,8,01:30.6,212.063,1 +20857,844,67,5,18,16,9,9,9,2,58,+1:09.394,5486952,44,14,01:31.4,210.341,1 +20858,844,155,15,16,24,10,10,10,1,58,+1:18.021,5495579,45,10,01:31.0,211.085,1 +20859,844,13,6,6,10,11,11,11,0,58,+1:19.823,5497381,57,11,01:31.1,210.9,1 +20860,844,30,131,7,8,12,12,12,0,58,+1:25.444,5503002,47,12,01:31.2,210.819,1 +20861,844,16,10,14,12,13,13,13,0,57,,,43,16,01:32.1,208.719,11 +20862,844,815,15,17,15,14,14,14,0,57,,,46,9,01:30.8,211.645,11 +20863,844,22,3,11,11,15,15,15,0,57,,,46,17,01:32.1,208.699,11 +20864,844,153,5,19,17,16,16,16,0,57,,,57,2,01:29.9,213.771,11 +20865,844,813,3,12,14,17,17,17,0,57,,,44,15,01:32.0,208.778,11 +20866,844,15,205,21,19,18,18,18,0,57,,,49,20,01:32.9,206.939,11 +20867,844,5,205,20,18,19,19,19,0,56,,,55,19,01:32.7,207.312,12 +20868,844,816,166,25,23,20,20,20,0,56,,,55,23,01:35.0,202.343,12 +20869,844,39,164,22,22,21,21,21,0,55,,,51,21,01:33.9,204.547,13 +20870,844,24,164,23,20,22,22,22,0,53,,,41,22,01:34.7,202.925,15 +20871,844,814,10,15,13,,R,23,0,44,,,40,18,01:32.5,207.706,31 +20872,844,10,166,24,21,,W,24,0,0,,,,0,,,6 +20873,845,20,9,1,2,1,1,1,25,66,39:03.3,5943301,60,4,01:27.2,192.262,1 +20874,845,1,1,3,3,2,2,2,18,66,0.63,5943931,52,1,01:26.7,193.227,1 +20875,845,18,1,4,5,3,3,3,15,66,35.697,5978998,63,7,01:27.5,191.48,1 +20876,845,17,9,2,1,4,4,4,12,66,47.966,5991267,50,5,01:27.2,192.207,1 +20877,845,4,6,5,4,5,5,5,10,65,,,22,9,01:28.7,188.85,11 +20878,845,30,131,7,10,6,6,6,8,65,,,34,15,01:29.5,187.317,11 +20879,845,3,131,8,7,7,7,7,6,65,,,34,13,01:29.2,187.964,11 +20880,845,2,4,9,24,8,8,8,4,65,,,61,3,01:27.0,192.713,11 +20881,845,815,15,17,12,9,9,9,2,65,,,55,6,01:27.2,192.075,11 +20882,845,155,15,16,14,10,10,10,1,65,,,52,8,01:27.6,191.268,11 +20883,845,808,4,10,6,11,11,11,0,65,,,35,17,01:29.6,187.047,11 +20884,845,814,10,15,16,12,12,12,0,65,,,42,16,01:29.5,187.305,11 +20885,845,16,10,14,17,13,13,13,0,65,,,52,10,01:28.8,188.735,11 +20886,845,67,5,18,11,14,14,14,0,65,,,27,18,01:30.0,186.098,11 +20887,845,813,3,12,9,15,15,15,0,65,,,64,14,01:29.4,187.468,11 +20888,845,153,5,19,13,16,16,16,0,64,,,52,12,01:29.1,188.013,12 +20889,845,22,3,11,19,17,17,17,0,64,,,60,2,01:26.9,192.862,12 +20890,845,15,205,21,18,18,18,18,0,64,,,34,20,01:30.8,184.594,12 +20891,845,10,166,24,20,19,19,19,0,63,,,40,21,01:31.6,182.877,13 +20892,845,816,166,25,23,20,20,20,0,62,,,36,22,01:32.5,181.071,14 +20893,845,39,164,22,22,21,21,21,0,61,,,33,23,01:32.8,180.488,15 +20894,845,13,6,6,8,,R,22,0,58,,,24,11,01:29.1,188.12,6 +20895,845,5,205,20,15,,R,23,0,48,,,34,19,01:30.6,184.93,3 +20896,845,24,164,23,21,,R,24,0,28,,,22,24,01:33.9,178.496,6 +20897,846,20,9,1,1,1,1,1,25,78,09:38.4,7778373,78,2,01:16.3,157.656,1 +20898,846,4,6,5,4,2,2,2,18,78,1.138,7779511,77,4,01:16.5,157.236,1 +20899,846,18,1,4,2,3,3,3,15,78,2.378,7780751,78,3,01:16.5,157.252,1 +20900,846,17,9,2,3,4,4,4,12,78,23.101,7801474,78,1,01:16.2,157.724,1 +20901,846,155,15,16,12,5,5,5,10,78,26.916,7805289,76,7,01:18.3,153.547,1 +20902,846,1,1,3,9,6,6,6,8,78,27.21,7805583,54,5,01:17.8,154.456,1 +20903,846,16,10,14,14,7,7,7,6,77,,,77,13,01:18.9,152.449,11 +20904,846,2,4,9,15,8,8,8,4,77,,,77,6,01:17.9,154.436,11 +20905,846,22,3,11,11,9,9,9,2,77,,,76,8,01:18.6,153.008,11 +20906,846,67,5,18,16,10,10,10,1,77,,,77,12,01:18.8,152.526,11 +20907,846,3,131,8,7,11,11,11,0,76,,,56,10,01:18.7,152.784,12 +20908,846,814,10,15,13,12,12,12,0,76,,,75,11,01:18.7,152.736,12 +20909,846,15,205,21,18,13,13,13,0,76,,,66,19,01:21.3,147.938,12 +20910,846,5,205,20,17,14,14,14,0,76,,,54,18,01:20.7,149.036,12 +20911,846,816,166,25,21,15,15,15,0,75,,,75,20,01:21.4,147.731,13 +20912,846,24,164,23,23,16,16,16,0,75,,,74,21,01:21.6,147.414,13 +20913,846,39,164,22,22,17,17,17,0,74,,,74,23,01:22.7,145.338,14 +20914,846,813,3,12,8,18,18,18,0,73,,,62,14,01:18.9,152.387,3 +20915,846,808,4,10,10,,R,19,0,67,,,57,16,01:20.1,150.191,4 +20916,846,153,5,19,19,,R,20,0,66,,,59,9,01:18.6,152.961,4 +20917,846,13,6,6,6,,R,21,0,32,,,16,17,01:20.2,149.921,3 +20918,846,30,131,7,5,,R,22,0,32,,,30,15,01:19.8,150.674,5 +20919,846,10,166,24,20,,R,23,0,30,,,30,22,01:22.1,146.451,22 +20920,847,18,1,4,7,1,1,1,25,70,04:39.5,14679537,69,1,01:17.0,204.007,1 +20921,847,20,9,1,1,2,2,2,18,70,2.709,14682246,69,2,01:17.2,203.317,1 +20922,847,17,9,2,4,3,3,3,15,70,13.828,14693365,65,8,01:19.6,197.3,1 +20923,847,30,131,7,8,4,4,4,12,70,14.219,14693756,70,4,01:19.1,198.382,1 +20924,847,808,4,10,10,5,5,5,10,70,20.395,14699932,68,3,01:19.1,198.593,1 +20925,847,13,6,6,3,6,6,6,8,70,33.225,14712762,68,5,01:19.1,198.357,1 +20926,847,155,15,16,13,7,7,7,6,70,33.27,14712807,70,10,01:20.2,195.723,1 +20927,847,153,5,19,24,8,8,8,4,70,35.964,14715501,69,13,01:20.4,195.339,1 +20928,847,22,3,11,16,9,9,9,2,70,45.117,14724654,68,11,01:20.3,195.472,1 +20929,847,67,5,18,15,10,10,10,1,70,47.056,14726593,69,7,01:19.5,197.461,1 +20930,847,3,131,8,6,11,11,11,0,70,50.454,14729991,69,9,01:20.1,196.07,1 +20931,847,37,15,17,17,12,12,12,0,70,+1:03.607,14743144,70,12,01:20.4,195.343,1 +20932,847,24,164,23,20,13,13,13,0,69,,,63,17,01:23.4,188.201,11 +20933,847,39,164,22,22,14,14,14,0,69,,,66,16,01:23.1,188.887,11 +20934,847,816,166,25,23,15,15,15,0,69,,,68,15,01:22.5,190.309,11 +20935,847,10,166,24,21,16,16,16,0,69,,,68,19,01:24.6,185.596,11 +20936,847,15,205,21,18,17,17,17,0,69,,,67,14,01:22.2,190.916,11 +20937,847,814,10,15,11,18,18,18,0,67,,,67,6,01:19.4,197.74,3 +20938,847,813,3,12,12,,R,19,0,61,,,53,18,01:24.3,186.312,31 +20939,847,2,4,9,9,,R,20,0,55,,,55,20,01:25.1,184.408,3 +20940,847,16,10,14,14,,R,21,0,49,,,47,21,01:30.2,174.109,3 +20941,847,4,6,5,2,,R,22,0,36,,,14,22,01:34.2,166.621,4 +20942,847,5,205,20,19,,R,23,0,28,,,16,24,01:38.5,159.451,7 +20943,847,1,1,3,5,,R,24,0,7,,,7,23,01:37.8,160.591,4 +20944,848,20,9,1,1,1,1,1,25,57,39:36.2,5976169,53,1,01:41.9,191.536,1 +20945,848,4,6,5,4,2,2,2,18,57,10.891,5987060,49,2,01:42.3,190.683,1 +20946,848,17,9,2,2,3,3,3,15,57,27.255,6003424,39,4,01:42.5,190.262,1 +20947,848,1,1,3,3,4,4,4,12,57,46.19,6022359,47,6,01:42.9,189.499,1 +20948,848,13,6,6,5,5,5,5,10,57,51.705,6027874,53,5,01:42.7,189.945,1 +20949,848,18,1,4,6,6,6,6,8,57,+1:00.065,6036234,57,3,01:42.3,190.623,1 +20950,848,3,131,8,7,7,7,7,6,57,+1:38.090,6074259,53,12,01:43.6,188.215,1 +20951,848,153,5,19,18,8,8,8,4,56,,,53,11,01:43.6,188.343,11 +20952,848,16,10,14,10,9,9,9,2,56,,,53,10,01:43.5,188.439,11 +20953,848,2,4,9,9,10,10,10,1,56,,,51,14,01:43.9,187.759,11 +20954,848,815,15,17,16,11,11,11,0,56,,,41,15,01:43.9,187.672,11 +20955,848,22,3,11,13,12,12,12,0,56,,,55,17,01:44.1,187.344,11 +20956,848,67,5,18,17,13,13,13,0,56,,,47,16,01:44.1,187.395,11 +20957,848,814,10,15,12,14,14,14,0,56,,,54,13,01:43.9,187.849,11 +20958,848,808,4,10,11,15,15,15,0,56,,,41,8,01:43.2,189.124,11 +20959,848,155,15,16,14,16,16,16,0,56,,,42,9,01:43.5,188.456,11 +20960,848,30,131,7,8,17,17,17,0,56,,,50,18,01:44.6,186.544,11 +20961,848,813,3,12,15,18,18,18,0,56,,,47,7,01:43.1,189.155,11 +20962,848,5,205,20,19,19,19,19,0,55,,,44,19,01:45.1,185.697,12 +20963,848,15,205,21,20,20,20,20,0,55,,,28,20,01:46.2,183.681,12 +20964,848,10,166,24,21,21,21,21,0,55,,,49,21,01:46.6,182.957,12 +20965,848,816,166,25,23,22,22,22,0,55,,,51,22,01:47.2,182.042,12 +20966,848,24,164,23,22,23,23,23,0,54,,,37,23,01:47.4,181.612,13 +20967,848,39,164,22,24,24,24,24,0,54,,,32,24,01:47.7,181.123,13 +20968,849,4,6,5,3,1,1,1,25,52,28:41.2,5321196,41,1,01:34.9,223.454,1 +20969,849,20,9,1,2,2,2,2,18,52,16.511,5337707,38,3,01:35.6,221.918,1 +20970,849,17,9,2,1,3,3,3,15,52,16.947,5338143,49,4,01:35.7,221.686,1 +20971,849,1,1,3,10,4,4,4,12,52,28.986,5350182,39,5,01:36.2,220.499,1 +20972,849,13,6,6,4,5,5,5,10,52,29.01,5350206,49,2,01:35.5,222.129,1 +20973,849,3,131,8,9,6,6,6,8,52,+1:00.665,5381861,32,13,01:37.1,218.47,1 +20974,849,815,15,17,12,7,7,7,6,52,+1:05.590,5386786,35,7,01:36.7,219.413,1 +20975,849,2,4,9,16,8,8,8,4,52,+1:15.542,5396738,37,14,01:37.1,218.371,1 +20976,849,30,131,7,13,9,9,9,2,52,+1:17.912,5399108,34,11,01:37.0,218.558,1 +20977,849,153,5,19,18,10,10,10,1,52,+1:19.108,5400304,38,15,01:37.2,218.275,1 +20978,849,16,10,14,11,11,11,11,0,52,+1:19.712,5400908,42,9,01:36.7,219.213,1 +20979,849,808,4,10,14,12,12,12,0,52,+1:20.681,5401877,40,6,01:36.3,220.206,1 +20980,849,22,3,11,15,13,13,13,0,51,,,38,8,01:36.7,219.238,11 +20981,849,813,3,12,7,14,14,14,0,51,,,41,12,01:37.0,218.553,11 +20982,849,814,10,15,6,15,15,15,0,51,,,48,16,01:37.9,216.545,11 +20983,849,10,166,24,20,16,16,16,0,50,,,49,17,01:39.8,212.477,12 +20984,849,816,166,25,22,17,17,17,0,50,,,30,20,01:40.6,210.894,12 +20985,849,24,164,23,23,18,18,18,0,50,,,40,19,01:40.5,210.97,12 +20986,849,817,164,22,24,19,19,19,0,49,,,30,22,01:40.9,210.163,13 +20987,849,18,1,4,5,,R,20,0,39,,,31,10,01:37.0,218.675,61 +20988,849,67,5,18,19,,R,21,0,25,,,24,18,01:40.2,211.602,3 +20989,849,155,15,16,8,,R,22,0,23,,,23,21,01:40.7,210.595,5 +20990,849,15,205,21,21,,R,23,0,10,,,9,23,01:55.5,183.629,44 +20991,849,5,205,20,17,,R,24,0,2,,,2,24,02:10.4,162.629,6 +20992,850,1,1,3,2,1,1,1,25,60,37:30.3,5850334,59,1,01:34.3,196.526,1 +20993,850,4,6,5,4,2,2,2,18,60,3.98,5854314,60,5,01:34.6,195.853,1 +20994,850,17,9,2,1,3,3,3,15,60,9.788,5860122,60,2,01:34.5,196.18,1 +20995,850,20,9,1,3,4,4,4,12,60,47.921,5898255,47,3,01:34.6,195.933,1 +20996,850,13,6,6,5,5,5,5,10,60,52.252,5902586,51,4,01:34.6,195.888,1 +20997,850,16,10,14,8,6,6,6,8,60,+1:26.208,5936542,57,10,01:36.7,191.745,1 +20998,850,3,131,8,6,7,7,7,6,59,,,51,7,01:36.2,192.686,11 +20999,850,30,131,7,10,8,8,8,4,59,,,49,6,01:35.6,193.8,11 +21000,850,155,15,16,17,9,9,9,2,59,,,50,11,01:36.7,191.733,11 +21001,850,808,4,10,9,10,10,10,1,59,,,50,8,01:36.2,192.676,11 +21002,850,815,15,17,15,11,11,11,0,59,,,53,13,01:37.0,190.994,11 +21003,850,153,5,19,16,12,12,12,0,59,,,59,14,01:37.4,190.245,11 +21004,850,814,10,15,12,13,13,13,0,59,,,54,12,01:36.7,191.622,11 +21005,850,813,3,12,13,14,14,14,0,59,,,50,15,01:37.6,189.947,11 +21006,850,67,5,18,24,15,15,15,0,59,,,48,16,01:37.9,189.374,11 +21007,850,5,205,20,18,16,16,16,0,58,,,54,17,01:39.1,187.105,12 +21008,850,10,166,24,19,17,17,17,0,57,,,57,21,01:40.0,185.361,13 +21009,850,816,166,25,21,18,18,18,0,57,,,57,20,01:39.8,185.723,13 +21010,850,817,164,22,22,19,19,19,0,57,,,57,23,01:40.5,184.426,13 +21011,850,812,205,21,20,20,20,20,0,56,,,56,22,01:40.4,184.525,14 +21012,850,24,164,23,23,,R,21,0,37,,,28,24,01:40.7,184.07,10 +21013,850,18,1,4,7,,R,22,0,35,,,33,9,01:36.3,192.532,9 +21014,850,22,3,11,14,,R,23,0,16,,,8,19,01:39.7,185.924,44 +21015,850,2,4,9,11,,R,24,0,9,,,7,18,01:39.5,186.349,4 +21016,851,18,1,4,3,1,1,1,25,70,46:42.3,6402337,58,6,01:23.9,187.898,1 +21017,851,20,9,1,1,2,2,2,18,70,3.588,6405925,70,5,01:23.9,188.036,1 +21018,851,4,6,5,5,3,3,3,15,70,19.819,6422156,62,3,01:23.7,188.405,1 +21019,851,1,1,3,2,4,4,4,12,70,48.338,6450675,61,2,01:23.7,188.517,1 +21020,851,17,9,2,6,5,5,5,10,70,49.742,6452079,61,4,01:23.7,188.389,1 +21021,851,13,6,6,4,6,6,6,8,70,+1:23.176,6485513,61,1,01:23.4,189.073,1 +21022,851,814,10,15,11,7,7,7,6,69,,,65,14,01:25.9,183.529,11 +21023,851,67,5,18,23,8,8,8,4,69,,,65,15,01:26.0,183.439,11 +21024,851,3,131,8,7,9,9,9,2,69,,,64,9,01:24.9,185.86,11 +21025,851,153,5,19,16,10,10,10,1,69,,,68,16,01:26.0,183.337,11 +21026,851,155,15,16,13,11,11,11,0,69,,,65,7,01:24.7,186.284,11 +21027,851,808,4,10,12,12,12,12,0,69,,,68,8,01:24.7,186.284,11 +21028,851,22,3,11,15,13,13,13,0,68,,,65,11,01:25.0,185.508,12 +21029,851,16,10,14,8,14,14,14,0,68,,,66,12,01:25.6,184.292,12 +21030,851,815,15,17,10,15,15,15,0,68,,,67,10,01:25.0,185.55,12 +21031,851,813,3,12,17,16,16,16,0,68,,,56,13,01:25.7,183.981,12 +21032,851,10,166,24,20,17,17,17,0,66,,,59,18,01:28.0,179.177,14 +21033,851,817,164,22,22,18,18,18,0,66,,,62,19,01:28.9,177.456,14 +21034,851,816,166,25,24,19,19,19,0,65,,,58,20,01:29.1,177.073,15 +21035,851,24,164,23,21,20,20,20,0,65,,,53,21,01:29.2,176.795,15 +21036,851,5,205,20,18,,R,21,0,55,,,54,17,01:27.1,180.972,47 +21037,851,30,131,7,9,,R,22,0,26,,,19,22,01:29.8,175.667,6 +21038,851,2,4,9,14,,R,23,0,23,,,19,23,01:30.8,173.646,42 +21039,851,15,205,21,19,,R,24,0,17,,,16,24,01:35.3,165.577,44 +21040,852,20,9,1,1,1,1,1,25,44,26:44.9,5204893,36,4,01:50.5,228.285,1 +21041,852,17,9,2,3,2,2,2,18,44,3.741,5208634,33,1,01:49.9,229.465,1 +21042,852,18,1,4,13,3,3,3,15,44,9.669,5214562,39,2,01:50.1,229.092,1 +21043,852,4,6,5,8,4,4,4,12,44,13.022,5217915,41,5,01:51.1,226.937,1 +21044,852,30,131,7,24,5,5,5,10,44,47.464,5252357,34,6,01:51.1,226.876,1 +21045,852,3,131,8,5,6,6,6,8,44,48.674,5253567,39,8,01:52.3,224.601,1 +21046,852,16,10,14,15,7,7,7,6,44,59.713,5264606,33,10,01:52.6,223.946,1 +21047,852,13,6,6,4,8,8,8,4,44,+1:06.076,5270969,42,7,01:51.6,226.008,1 +21048,852,808,4,10,10,9,9,9,2,44,+1:11.917,5276810,34,9,01:52.4,224.263,1 +21049,852,813,3,12,21,10,10,10,1,44,+1:17.615,5282508,43,12,01:53.4,222.423,1 +21050,852,814,10,15,17,11,11,11,0,44,+1:23.994,5288887,32,11,01:53.2,222.696,1 +21051,852,155,15,16,12,12,12,12,0,44,+1:31.976,5296869,35,14,01:53.9,221.429,1 +21052,852,811,4,9,7,13,13,13,0,44,+1:32.985,5297878,39,13,01:53.6,221.987,1 +21053,852,15,205,21,18,14,14,14,0,43,,,38,17,01:54.6,220.076,11 +21054,852,5,205,20,16,15,15,15,0,43,,,35,15,01:54.1,221.08,11 +21055,852,22,3,11,14,16,16,16,0,43,,,42,3,01:50.4,228.341,11 +21056,852,816,166,25,20,17,17,17,0,43,,,38,19,01:56.3,216.769,11 +21057,852,10,166,24,19,18,18,18,0,43,,,37,20,01:56.5,216.358,11 +21058,852,24,164,23,22,19,19,19,0,43,,,42,22,01:58.1,213.57,11 +21059,852,815,15,17,9,,R,20,0,27,,,26,16,01:54.2,220.706,22 +21060,852,817,164,22,23,,R,21,0,13,,,10,23,01:59.8,210.416,5 +21061,852,1,1,3,2,,R,22,0,12,,,8,18,01:55.6,218.029,4 +21062,852,67,5,18,11,,R,23,0,6,,,4,21,01:56.8,215.895,65 +21063,852,153,5,19,6,,R,24,0,0,,,,0,,,4 +21064,853,20,9,1,1,1,1,1,25,53,20:46.2,4846172,49,3,01:26.6,240.937,1 +21065,853,18,1,4,3,2,2,2,18,53,9.59,4855762,52,2,01:26.2,241.915,1 +21066,853,4,6,5,4,3,3,3,15,53,16.909,4863081,50,6,01:27.2,239.185,1 +21067,853,1,1,3,2,4,4,4,12,53,17.417,4863589,52,1,01:26.2,241.971,1 +21068,853,30,131,7,8,5,5,5,10,53,32.677,4878849,46,7,01:27.4,238.607,1 +21069,853,13,6,6,6,6,6,6,8,53,42.993,4889165,53,5,01:26.9,239.919,1 +21070,853,153,5,19,18,7,7,7,6,52,,,49,10,01:28.4,236.028,11 +21071,853,814,10,15,11,8,8,8,4,52,,,52,8,01:28.1,236.841,11 +21072,853,811,4,9,10,9,9,9,2,52,,,51,4,01:26.9,240,11 +21073,853,67,5,18,16,10,10,10,1,52,,,51,9,01:28.2,236.443,11 +21074,853,813,3,12,14,11,11,11,0,52,,,51,12,01:28.9,234.497,11 +21075,853,22,3,11,13,12,12,12,0,52,,,49,11,01:28.4,235.975,11 +21076,853,5,205,20,20,13,13,13,0,51,,,50,14,01:29.6,232.653,12 +21077,853,15,205,21,19,14,14,14,0,51,,,50,15,01:29.8,232.171,12 +21078,853,10,166,24,21,15,15,15,0,51,,,51,17,01:30.8,229.721,12 +21079,853,817,164,22,23,,N,16,0,39,,,36,20,01:32.0,226.65,111 +21080,853,815,15,17,15,,R,17,0,32,,,29,13,01:29.4,233.267,6 +21081,853,155,15,16,17,,R,18,0,21,,,21,16,01:30.0,231.72,6 +21082,853,16,10,14,12,,R,19,0,9,,,8,19,01:31.5,228.033,9 +21083,853,17,9,2,5,,R,20,0,4,,,4,18,01:31.0,229.188,3 +21084,853,816,166,25,22,,R,21,0,1,,,,0,,,6 +21085,853,808,4,10,7,,R,22,0,0,,,,0,,,4 +21086,853,3,131,8,9,,R,23,0,0,,,,0,,,4 +21087,853,24,164,23,24,,R,24,0,0,,,,0,,,4 +21088,854,20,9,1,1,1,1,1,25,61,59:04.8,7146757,51,2,01:48.7,168.029,1 +21089,854,18,1,4,3,2,2,2,18,61,1.737,7148494,54,1,01:48.5,168.392,1 +21090,854,17,9,2,2,3,3,3,15,61,29.279,7176036,54,3,01:50.1,165.892,1 +21091,854,4,6,5,5,4,4,4,12,61,55.449,7202206,58,5,01:50.9,164.691,1 +21092,854,1,1,3,4,5,5,5,10,61,+1:07.766,7214523,54,4,01:50.8,164.779,1 +21093,854,814,10,15,10,6,6,6,8,61,+1:51.067,7257824,41,15,01:54.2,159.864,1 +21094,854,3,131,8,7,7,7,7,6,60,,,42,16,01:54.4,159.663,11 +21095,854,16,10,14,9,8,8,8,4,60,,,45,17,01:54.6,159.411,11 +21096,854,13,6,6,6,9,9,9,2,60,,,26,8,01:52.6,162.263,11 +21097,854,815,15,17,11,10,10,10,1,60,,,42,18,01:54.6,159.34,11 +21098,854,813,3,12,13,11,11,11,0,60,,,50,10,01:53.2,161.335,11 +21099,854,67,5,18,14,12,12,12,0,60,,,51,7,01:52.2,162.774,11 +21100,854,22,3,11,12,13,13,13,0,60,,,40,19,01:55.2,158.483,11 +21101,854,155,15,16,17,14,14,14,0,59,,,56,6,01:51.3,164.043,12 +21102,854,811,4,9,15,15,15,15,0,59,,,55,12,01:53.8,160.518,12 +21103,854,5,205,20,19,16,16,16,0,59,,,56,13,01:54.1,160.111,12 +21104,854,808,4,10,18,17,17,17,0,59,,,56,14,01:54.2,159.913,12 +21105,854,816,166,25,22,18,18,18,0,59,,,22,22,01:58.7,153.817,12 +21106,854,817,164,22,23,19,19,19,0,57,,,40,23,01:59.1,153.386,14 +21107,854,24,164,23,24,20,20,20,0,57,,,41,21,01:58.3,154.399,14 +21108,854,153,5,19,16,21,21,21,0,56,,,37,11,01:53.7,160.656,3 +21109,854,15,205,21,20,,R,22,0,47,,,25,20,01:57.1,155.924,6 +21110,854,30,131,7,8,,R,23,0,28,,,26,9,01:53.1,161.48,3 +21111,854,10,166,24,21,,R,24,0,9,,,6,24,02:00.4,151.669,3 +21112,855,18,1,4,2,1,1,1,25,53,30:53.4,5453427,52,1,01:36.6,216.481,1 +21113,855,4,6,5,5,2,2,2,18,53,1.16,5454587,50,4,01:36.7,216.226,1 +21114,855,20,9,1,1,3,3,3,15,53,2.006,5455433,52,6,01:36.9,215.704,1 +21115,855,17,9,2,6,4,4,4,12,53,8.071,5461498,47,5,01:36.8,215.9,1 +21116,855,1,1,3,3,5,5,5,10,53,24.268,5477695,49,9,01:37.6,214.093,1 +21117,855,30,131,7,8,6,6,6,8,53,27.12,5480547,53,12,01:37.9,213.501,1 +21118,855,13,6,6,4,7,7,7,6,53,28.24,5481667,50,11,01:37.8,213.754,1 +21119,855,815,15,17,17,8,8,8,4,53,39.377,5492804,39,2,01:36.6,216.479,1 +21120,855,808,4,10,10,9,9,9,2,53,42.607,5496034,47,7,01:37.1,215.399,1 +21121,855,3,131,8,23,10,10,10,1,53,44.322,5497749,50,3,01:36.6,216.378,1 +21122,855,16,10,14,11,11,11,11,0,53,54.447,5507874,43,14,01:38.1,213.029,1 +21123,855,814,10,15,12,12,12,12,0,53,+1:02.326,5515753,43,13,01:38.0,213.383,1 +21124,855,155,15,16,7,13,13,13,0,53,+1:03.705,5517132,44,19,01:39.7,209.63,1 +21125,855,813,3,12,14,14,14,14,0,53,+1:04.194,5517621,50,10,01:37.6,214.093,1 +21126,855,153,5,19,16,15,15,15,0,53,+1:06.623,5520050,41,8,01:37.4,214.608,1 +21127,855,811,4,9,9,16,16,16,0,53,+1:12.628,5526055,42,15,01:38.4,212.436,1 +21128,855,22,3,11,13,17,17,17,0,53,+1:14.191,5527618,53,16,01:39.1,210.993,1 +21129,855,5,205,20,18,18,18,18,0,53,+1:27.824,5541251,50,17,01:39.3,210.532,1 +21130,855,15,205,21,19,19,19,19,0,53,+1:36.140,5549567,49,18,01:39.6,209.973,1 +21131,855,10,166,24,21,20,20,20,0,51,,,46,21,01:41.7,205.549,12 +21132,855,816,166,25,20,21,21,21,0,51,,,45,22,01:41.8,205.367,12 +21133,855,817,164,22,22,22,22,22,0,51,,,49,20,01:41.4,206.09,12 +21134,855,24,164,23,24,23,23,23,0,50,,,37,24,01:42.4,204.134,13 +21135,855,67,5,18,15,,R,24,0,11,,,6,23,01:42.1,204.738,36 +21136,856,20,9,1,2,1,1,1,25,55,38:02.0,5881994,55,1,01:39.6,202.941,1 +21137,856,1,1,3,1,2,2,2,18,55,12.019,5894013,54,3,01:40.5,201.216,1 +21138,856,17,9,2,4,3,3,3,15,55,12.477,5894471,55,2,01:40.3,201.547,1 +21139,856,18,1,4,3,4,4,4,12,55,14.694,5896688,55,7,01:40.7,200.716,1 +21140,856,4,6,5,6,5,5,5,10,55,15.689,5897683,41,6,01:40.5,201.04,1 +21141,856,13,6,6,5,6,6,6,8,55,25.133,5907127,51,5,01:40.5,201.052,1 +21142,856,153,5,19,11,7,7,7,6,55,49.538,5931532,55,8,01:40.9,200.257,1 +21143,856,3,131,8,7,8,8,8,4,55,54.053,5936047,49,9,01:41.8,198.624,1 +21144,856,67,5,18,13,9,9,9,2,55,+1:02.762,5944756,50,4,01:40.5,201.06,1 +21145,856,814,10,15,9,10,10,10,1,55,+1:08.602,5950596,50,12,01:42.1,197.978,1 +21146,856,16,10,14,10,11,11,11,0,55,+1:11.229,5953223,49,10,01:42.0,198.149,1 +21147,856,22,3,11,18,12,12,12,0,55,+1:33.068,5975062,54,13,01:42.4,197.458,1 +21148,856,811,4,9,15,13,13,13,0,54,,,41,16,01:42.5,197.115,11 +21149,856,5,205,20,19,14,14,14,0,54,,,52,15,01:42.5,197.294,11 +21150,856,155,15,16,14,15,15,15,0,54,,,45,11,01:42.1,198.021,11 +21151,856,815,15,17,17,16,16,16,0,54,,,39,14,01:42.4,197.354,11 +21152,856,15,205,21,20,17,17,17,0,54,,,46,17,01:43.0,196.235,11 +21153,856,10,166,24,21,18,18,18,0,54,,,53,18,01:44.5,193.368,11 +21154,856,817,164,22,24,19,19,19,0,54,,,53,21,01:44.9,192.752,11 +21155,856,816,166,25,22,20,20,20,0,54,,,53,20,01:44.7,192.981,11 +21156,856,24,164,23,23,21,21,21,0,52,,,45,24,01:46.2,190.387,13 +21157,856,813,3,12,16,,R,22,0,30,,,26,19,01:44.7,193.086,8 +21158,856,808,4,10,8,,R,23,0,16,,,10,23,01:45.5,191.658,4 +21159,856,30,131,7,12,,R,24,0,15,,,13,22,01:45.3,191.916,4 +21160,857,20,9,1,1,1,1,1,25,60,30:35.0,5435002,60,1,01:27.2,211.463,1 +21161,857,18,1,4,4,2,2,2,18,60,8.433,5443435,60,4,01:28.0,209.737,1 +21162,857,4,6,5,3,3,3,3,15,60,24.301,5459303,58,3,01:28.0,209.771,1 +21163,857,17,9,2,2,4,4,4,12,60,25.529,5460531,59,2,01:27.5,210.808,1 +21164,857,30,131,7,11,5,5,5,10,60,+1:05.421,5500423,48,5,01:28.5,208.359,1 +21165,857,3,131,8,7,6,6,6,8,60,+1:06.851,5501853,59,6,01:28.6,208.239,1 +21166,857,1,1,3,5,7,7,7,6,60,+1:24.183,5519185,58,9,01:28.7,207.955,1 +21167,857,153,5,19,10,8,8,8,4,59,,,57,10,01:29.2,206.748,11 +21168,857,16,10,14,8,9,9,9,2,59,,,59,12,01:29.3,206.632,11 +21169,857,815,15,17,20,10,10,10,1,59,,,58,14,01:29.3,206.502,11 +21170,857,808,4,10,16,11,11,11,0,59,,,58,11,01:29.3,206.632,11 +21171,857,811,4,9,14,12,12,12,0,59,,,55,13,01:29.3,206.583,11 +21172,857,814,10,15,12,13,13,13,0,59,,,59,8,01:28.7,208.053,11 +21173,857,5,205,20,18,14,14,14,0,58,,,58,16,01:30.3,204.332,12 +21174,857,22,3,11,15,15,15,15,0,58,,,56,7,01:28.6,208.157,12 +21175,857,816,166,25,21,16,16,16,0,57,,,51,21,01:32.0,200.565,13 +21176,857,39,164,22,24,17,17,17,0,57,,,44,20,01:32.0,200.569,13 +21177,857,817,164,23,23,18,18,18,0,57,,,49,18,01:31.7,201.256,13 +21178,857,15,205,21,19,19,19,19,0,55,,,52,19,01:31.7,201.219,15 +21179,857,13,6,6,6,,R,20,0,32,,,19,15,01:30.2,204.447,22 +21180,857,67,5,18,9,,R,21,0,24,,,23,17,01:31.0,202.845,5 +21181,857,813,3,12,13,,R,22,0,12,,,12,22,01:33.6,197.172,6 +21182,857,10,166,24,22,,R,23,0,2,,,2,23,02:09.0,143.014,4 +21183,857,155,15,16,17,,R,24,0,0,,,,0,,,4 +21184,858,1,1,3,2,1,1,1,25,55,37:11.9,5831886,51,3,01:43.5,193.255,1 +21185,858,4,6,5,5,2,2,2,18,55,8.457,5840343,41,6,01:43.9,192.412,1 +21186,858,18,1,4,3,3,3,3,15,55,25.881,5857767,51,2,01:43.2,193.83,1 +21187,858,17,9,2,4,4,4,4,12,55,35.784,5867670,51,1,01:42.6,194.854,1 +21188,858,13,6,6,6,5,5,5,10,55,50.578,5882464,51,10,01:44.3,191.722,1 +21189,858,3,131,8,7,6,6,6,8,55,52.317,5884203,55,7,01:44.0,192.266,1 +21190,858,30,131,7,8,7,7,7,6,55,+1:15.964,5907850,48,15,01:44.9,190.575,1 +21191,858,16,10,14,9,8,8,8,4,55,+1:17.122,5909008,53,14,01:44.7,190.952,1 +21192,858,814,10,15,10,9,9,9,2,55,+1:41.087,5932973,49,9,01:44.1,192.032,1 +21193,858,155,15,16,16,10,10,10,1,54,,,47,4,01:43.5,193.143,11 +21194,858,815,15,17,11,11,11,11,0,54,,,41,12,01:44.6,191.213,11 +21195,858,22,3,11,24,12,12,12,0,54,,,50,11,01:44.4,191.447,11 +21196,858,808,4,10,12,13,13,13,0,54,,,52,5,01:43.7,192.86,11 +21197,858,813,3,12,23,14,14,14,0,54,,,52,13,01:44.6,191.099,11 +21198,858,153,5,19,15,15,15,15,0,54,,,47,8,01:44.1,192.082,11 +21199,858,811,4,9,14,16,16,16,0,54,,,32,16,01:46.2,188.359,11 +21200,858,5,205,20,17,17,17,17,0,54,,,50,17,01:46.6,187.547,11 +21201,858,15,205,21,18,18,18,18,0,53,,,36,19,01:47.4,186.091,12 +21202,858,10,166,24,19,19,19,19,0,53,,,42,20,01:48.1,184.987,12 +21203,858,24,164,23,22,20,20,20,0,53,,,52,22,01:49.2,183.028,12 +21204,858,817,164,22,20,,R,21,0,48,,,35,21,01:48.3,184.664,26 +21205,858,67,5,18,13,,R,22,0,19,,,17,18,01:47.1,186.699,9 +21206,858,816,166,25,21,,R,23,0,18,,,16,23,01:51.2,179.812,23 +21207,858,20,9,1,1,,R,24,0,1,,,,0,,,29 +21208,859,17,9,2,2,1,1,1,25,71,32:17.5,5537464,71,1,01:15.3,205.942,1 +21209,859,20,9,1,1,2,2,2,18,71,16.983,5554447,68,3,01:16.1,203.906,1 +21210,859,18,1,4,3,3,3,3,15,71,27.638,5565102,63,2,01:15.6,205.244,1 +21211,859,4,6,5,5,4,4,4,12,71,35.048,5572512,65,4,01:16.2,203.625,1 +21212,859,13,6,6,7,5,5,5,10,71,+1:06.733,5604197,64,12,01:17.3,200.753,1 +21213,859,16,10,14,8,6,6,6,8,70,,,36,8,01:17.2,201.039,11 +21214,859,3,131,8,6,7,7,7,6,70,,,45,10,01:17.2,200.919,11 +21215,859,814,10,15,11,8,8,8,4,70,,,64,14,01:17.5,200.284,11 +21216,859,155,15,16,16,9,9,9,2,70,,,55,15,01:17.6,199.788,11 +21217,859,808,4,10,15,10,10,10,1,70,,,58,7,01:17.0,201.43,11 +21218,859,153,5,19,13,11,11,11,0,70,,,55,9,01:17.2,201.036,11 +21219,859,67,5,18,14,12,12,12,0,70,,,59,13,01:17.4,200.346,11 +21220,859,815,15,17,17,13,13,13,0,70,,,63,16,01:17.8,199.439,11 +21221,859,22,3,11,12,14,14,14,0,70,,,70,6,01:16.7,202.289,11 +21222,859,30,131,7,10,15,15,15,0,70,,,62,5,01:16.7,202.297,11 +21223,859,5,205,20,19,16,16,16,0,69,,,69,17,01:18.0,198.818,12 +21224,859,811,4,9,9,17,17,17,0,69,,,62,18,01:18.3,198.18,12 +21225,859,15,205,21,20,18,18,18,0,69,,,47,19,01:18.6,197.368,12 +21226,859,816,166,25,23,19,19,19,0,68,,,60,22,01:19.9,194.142,13 +21227,859,817,164,22,22,20,20,20,0,68,,,64,20,01:19.6,194.759,13 +21228,859,24,164,23,21,,R,21,0,61,,,60,23,01:20.6,192.346,31 +21229,859,1,1,3,4,,R,22,0,46,,,35,11,01:17.2,200.914,6 +21230,859,813,3,12,18,,R,23,0,26,,,26,21,01:19.7,194.62,31 +21231,859,10,166,24,24,,R,24,0,21,,,14,24,01:21.8,189.7,31 +21232,860,18,1,3,2,1,1,1,25,58,34:09.6,5649565,56,1,01:29.2,214.053,1 +21233,860,20,9,1,6,2,2,2,18,58,2.139,5651704,57,2,01:29.4,213.503,1 +21234,860,1,1,4,1,3,3,3,15,58,4.075,5653640,57,4,01:29.5,213.214,1 +21235,860,17,9,2,5,4,4,4,12,58,4.547,5654112,57,3,01:29.4,213.452,1 +21236,860,4,6,5,12,5,5,5,10,58,21.565,5671130,52,7,01:30.3,211.469,1 +21237,860,155,15,14,13,6,6,6,8,58,36.766,5686331,55,10,01:30.6,210.668,1 +21238,860,8,208,9,17,7,7,7,6,58,38.014,5687579,50,11,01:30.8,210.346,1 +21239,860,815,15,15,22,8,8,8,4,58,39.458,5689023,46,12,01:30.8,210.151,1 +21240,860,817,5,16,10,9,9,9,2,58,39.556,5689121,53,8,01:30.6,210.733,1 +21241,860,814,10,11,15,10,10,10,1,58,39.737,5689302,57,9,01:30.6,210.703,1 +21242,860,818,5,17,11,11,11,11,0,58,39.848,5689413,52,6,01:30.3,211.476,1 +21243,860,3,131,8,7,12,12,12,0,58,57.642,5707207,53,14,01:30.9,209.948,1 +21244,860,813,3,18,8,13,13,13,0,57,,,53,5,01:30.3,211.523,3 +21245,860,10,206,24,20,14,14,14,0,57,,,43,19,01:34.3,202.548,11 +21246,860,819,206,25,21,15,15,15,0,53,,,45,20,01:35.0,200.932,15 +21247,860,811,3,19,14,16,16,16,0,52,,,49,13,01:30.9,210.123,4 +21248,860,13,6,6,16,,R,17,0,46,,,46,15,01:31.9,207.644,4 +21249,860,5,207,20,18,,R,18,0,38,,,26,17,01:33.7,203.759,22 +21250,860,808,207,21,19,,R,19,0,34,,,27,16,01:33.2,204.806,38 +21251,860,30,131,7,4,,R,20,0,10,,,4,18,01:34.0,203.048,6 +21252,860,154,208,10,3,,R,21,0,1,,,,0,,,4 +21253,860,807,10,12,9,,R,22,0,0,,,,0,,,4 +21254,860,37,164,22,0,,F,23,0,0,,,,0,,,81 +21255,860,39,164,23,0,,F,24,0,0,,,,0,,,81 +21256,861,4,6,5,8,1,1,1,25,56,44:51.8,9891812,53,7,01:41.7,196.25,1 +21257,861,815,15,15,9,2,2,2,18,56,2.263,9894075,54,3,01:41.0,197.531,1 +21258,861,1,1,4,1,3,3,3,15,56,14.591,9906403,50,6,01:41.5,196.523,1 +21259,861,17,9,2,4,4,4,4,12,56,17.688,9909500,52,2,01:41.0,197.539,1 +21260,861,8,208,9,10,5,5,5,10,56,29.456,9921268,53,1,01:40.7,198.117,1 +21261,861,811,3,19,13,6,6,6,8,56,37.667,9929479,55,5,01:41.4,196.785,1 +21262,861,814,10,11,14,7,7,7,6,56,44.412,9936224,55,10,01:41.8,195.983,1 +21263,861,818,5,17,18,8,8,8,4,56,46.985,9938797,55,12,01:41.9,195.785,1 +21264,861,807,10,12,16,9,9,9,2,56,47.892,9939704,51,15,01:42.2,195.304,1 +21265,861,30,131,7,3,10,10,10,1,56,49.996,9941808,53,9,01:41.8,196.096,1 +21266,861,20,9,1,5,11,11,11,0,56,+1:15.527,9967339,50,4,01:41.3,196.905,1 +21267,861,817,5,16,15,12,12,12,0,56,+1:16.828,9968640,54,8,01:41.8,196.104,1 +21268,861,3,131,8,7,13,13,13,0,56,+1:18.593,9970405,51,11,01:41.9,195.898,1 +21269,861,18,1,3,2,14,14,14,0,56,+1:19.719,9971531,50,14,01:42.1,195.443,1 +21270,861,13,6,6,12,15,15,15,0,56,+1:37.319,9989131,56,13,01:42.1,195.537,1 +21271,861,808,207,21,19,16,16,16,0,55,,,52,17,01:43.5,192.775,11 +21272,861,10,206,24,20,17,17,17,0,55,,,50,20,01:44.8,190.486,11 +21273,861,5,207,20,24,18,18,18,0,55,,,54,18,01:43.8,192.237,11 +21274,861,813,3,18,11,19,19,19,0,54,,,51,16,01:42.2,195.181,5 +21275,861,819,206,25,21,20,20,20,0,54,,,50,21,01:44.8,190.384,12 +21276,861,39,164,23,23,21,21,21,0,54,,,52,22,01:45.9,188.414,12 +21277,861,37,164,22,22,22,22,22,0,54,,,54,23,01:46.2,187.82,12 +21278,861,155,15,14,17,,R,23,0,46,,,44,19,01:44.2,191.501,31 +21279,861,154,208,10,6,,R,24,0,3,,,2,24,02:08.5,155.333,4 +21280,862,3,131,8,1,1,1,1,25,56,36:26.9,5786929,40,8,01:41.0,194.356,1 +21281,862,18,1,3,5,2,2,2,18,56,20.626,5807555,56,3,01:40.4,195.411,1 +21282,862,1,1,4,7,3,3,3,15,56,26.012,5812941,40,6,01:40.5,195.201,1 +21283,862,17,9,2,6,4,4,4,12,56,27.924,5814853,52,5,01:40.5,195.279,1 +21284,862,20,9,1,11,5,5,5,10,56,30.483,5817412,33,7,01:40.6,195.063,1 +21285,862,154,208,10,10,6,6,6,8,56,31.491,5818420,35,11,01:41.1,194.062,1 +21286,862,811,3,19,14,7,7,7,6,56,34.597,5821526,37,16,01:41.3,193.731,1 +21287,862,813,3,18,13,8,8,8,4,56,35.643,5822572,36,4,01:40.5,195.294,1 +21288,862,4,6,5,9,9,9,9,2,56,37.256,5824185,41,12,01:41.2,194.001,1 +21289,862,155,15,14,3,10,10,10,1,56,38.72,5825649,40,1,01:40.0,196.314,1 +21290,862,815,15,15,8,11,11,11,0,56,41.066,5827995,37,10,01:41.1,194.156,1 +21291,862,814,10,11,15,12,12,12,0,56,42.273,5829202,40,17,01:41.5,193.339,1 +21292,862,13,6,6,12,13,13,13,0,56,42.779,5829708,48,14,01:41.2,193.832,1 +21293,862,8,208,9,4,14,14,14,0,56,50.573,5837502,43,18,01:41.8,192.777,1 +21294,862,807,10,12,16,15,15,15,0,56,51.213,5838142,48,9,01:41.0,194.337,1 +21295,862,818,5,17,24,16,16,16,0,56,51.756,5838685,48,2,01:40.0,196.198,1 +21296,862,817,5,16,17,17,17,17,0,56,+1:03.156,5850085,40,15,01:41.3,193.811,1 +21297,862,808,207,21,19,18,18,18,0,55,,,38,19,01:42.4,191.664,11 +21298,862,10,206,24,20,19,19,19,0,55,,,41,21,01:42.7,190.987,11 +21299,862,819,206,25,21,20,20,20,0,55,,,39,20,01:42.6,191.224,11 +21300,862,37,164,22,22,21,21,21,0,55,,,54,22,01:43.6,189.398,11 +21301,862,39,164,23,23,22,22,22,0,54,,,40,23,01:43.9,188.806,12 +21302,862,5,207,20,18,23,23,23,0,53,,,53,13,01:41.2,193.928,13 +21303,862,30,131,7,2,,R,24,0,12,,,9,24,01:44.1,188.49,61 +21304,863,20,9,1,1,1,1,1,25,57,35:11.0,5710990,41,1,01:36.4,202.151,1 +21305,863,8,208,9,11,2,2,2,18,57,3.333,5714323,41,5,01:37.1,200.617,1 +21306,863,154,208,10,7,3,3,3,15,57,10.194,5721184,42,3,01:36.9,201.006,1 +21307,863,17,9,2,3,4,4,4,12,57,38.788,5749778,45,6,01:37.4,199.956,1 +21308,863,3,131,8,5,5,5,5,10,57,55.46,5766450,41,10,01:38.1,198.646,1 +21309,863,814,10,11,10,6,6,6,8,57,57.543,5768533,41,18,01:38.4,198.056,1 +21310,863,4,6,5,9,7,7,7,6,57,57.803,5768793,44,15,01:38.2,198.397,1 +21311,863,1,1,4,2,8,8,8,4,57,58.984,5769974,38,7,01:37.7,199.351,1 +21312,863,13,6,6,14,9,9,9,2,57,+1:04.999,5775989,42,12,01:38.1,198.558,1 +21313,863,30,131,7,22,10,10,10,1,57,+1:11.490,5782480,39,13,01:38.1,198.548,1 +21314,863,815,15,15,8,11,11,11,0,57,+1:12.702,5783692,39,14,01:38.1,198.512,1 +21315,863,807,10,12,13,12,12,12,0,57,+1:16.539,5787529,46,17,01:38.3,198.177,1 +21316,863,155,15,14,12,13,13,13,0,57,+1:30.334,5801324,54,2,01:36.7,201.48,1 +21317,863,818,5,17,17,14,14,14,0,57,+1:33.723,5804713,43,4,01:37.1,200.737,1 +21318,863,817,5,16,6,15,15,15,0,56,,,42,8,01:37.9,199.005,11 +21319,863,808,207,21,18,16,16,16,0,56,,,42,16,01:38.3,198.191,11 +21320,863,5,207,20,16,17,17,17,0,56,,,43,19,01:38.4,197.917,11 +21321,863,18,1,3,4,18,18,18,0,55,,,47,9,01:38.0,198.714,43 +21322,863,10,206,24,23,19,19,19,0,55,,,46,23,01:40.3,194.204,12 +21323,863,37,164,22,20,20,20,20,0,55,,,41,22,01:40.2,194.371,12 +21324,863,39,164,23,24,21,21,21,0,55,,,48,20,01:39.7,195.326,12 +21325,863,811,3,19,15,22,22,22,0,54,,,51,11,01:38.1,198.631,76 +21326,863,813,3,18,21,,R,23,0,25,,,14,21,01:39.9,195.073,29 +21327,863,819,206,25,19,,R,24,0,24,,,14,24,01:41.5,191.916,5 +21328,864,813,3,18,1,1,1,1,25,66,39:09.1,5949145,26,6,01:27.9,190.635,1 +21329,864,4,6,5,2,2,2,2,18,66,3.195,5952340,46,3,01:27.4,191.761,1 +21330,864,8,208,9,4,3,3,3,15,66,3.884,5953029,50,2,01:26.9,192.758,1 +21331,864,154,208,10,3,4,4,4,12,66,14.799,5963944,53,1,01:26.3,194.295,1 +21332,864,155,15,14,9,5,5,5,10,66,+1:04.641,6013786,45,8,01:28.3,189.857,1 +21333,864,20,9,1,7,6,6,6,8,66,+1:07.576,6016721,65,4,01:27.8,190.935,1 +21334,864,3,131,8,6,7,7,7,6,66,+1:17.919,6027064,45,7,01:28.1,190.107,1 +21335,864,1,1,4,24,8,8,8,4,66,+1:18.140,6027285,50,18,01:28.9,188.465,1 +21336,864,18,1,3,10,9,9,9,2,66,+1:25.246,6034391,41,14,01:28.6,189.09,1 +21337,864,807,10,12,13,10,10,10,1,65,,,48,17,01:28.9,188.478,11 +21338,864,17,9,2,11,11,11,11,0,65,,,44,5,01:27.9,190.741,11 +21339,864,818,5,17,14,12,12,12,0,65,,,54,9,01:28.3,189.767,11 +21340,864,817,5,16,15,13,13,13,0,65,,,44,12,01:28.6,189.169,11 +21341,864,814,10,11,12,14,14,14,0,65,,,44,10,01:28.3,189.756,11 +21342,864,13,6,6,16,15,15,15,0,65,,,47,11,01:28.4,189.467,11 +21343,864,5,207,20,19,16,16,16,0,65,,,50,15,01:28.7,188.897,11 +21344,864,808,207,21,18,17,17,17,0,65,,,48,16,01:28.8,188.773,11 +21345,864,10,206,24,21,18,18,18,0,64,,,49,19,01:29.6,187.033,12 +21346,864,37,164,22,22,19,19,19,0,63,,,54,20,01:30.7,184.718,13 +21347,864,815,15,15,5,,R,20,0,37,,,20,13,01:28.6,189.131,61 +21348,864,819,206,25,20,,R,21,0,35,,,29,22,01:31.1,183.879,26 +21349,864,39,164,23,23,,R,22,0,22,,,15,24,01:32.9,180.381,26 +21350,864,811,3,19,17,,R,23,0,12,,,10,23,01:31.8,182.505,4 +21351,864,30,131,7,8,,R,24,0,12,,,4,21,01:31.1,183.973,4 +21352,865,17,9,2,1,1,1,1,25,78,46:06.6,6366557,45,3,01:18.8,152.579,1 +21353,865,3,131,8,2,2,2,2,18,78,0.643,6367200,46,7,01:19.0,152.246,1 +21354,865,4,6,5,5,3,3,3,15,78,0.947,6367504,45,5,01:18.9,152.478,1 +21355,865,20,9,1,9,4,4,4,12,78,1.343,6367900,43,9,01:19.1,152.056,1 +21356,865,1,1,4,3,5,5,5,10,78,4.101,6370658,46,4,01:18.8,152.577,1 +21357,865,13,6,6,7,6,6,6,8,78,6.195,6372752,41,10,01:19.1,152.008,1 +21358,865,814,10,11,14,7,7,7,6,78,41.537,6408094,51,17,01:19.8,150.757,1 +21359,865,807,10,12,10,8,8,8,4,78,42.562,6409119,35,2,01:18.4,153.322,1 +21360,865,8,208,9,8,9,9,9,2,78,44.036,6410593,51,12,01:19.2,151.73,1 +21361,865,811,3,19,13,10,10,10,1,78,44.516,6411073,51,11,01:19.2,151.843,1 +21362,865,815,15,15,23,11,11,11,0,77,,,49,1,01:17.3,155.557,11 +21363,865,818,5,17,16,12,12,12,0,77,,,25,8,01:19.0,152.177,11 +21364,865,5,207,20,17,13,13,13,0,77,,,76,13,01:19.3,151.617,11 +21365,865,10,206,24,19,14,14,14,0,77,,,60,15,01:19.6,150.985,11 +21366,865,39,164,23,22,15,15,15,0,76,,,44,19,01:20.3,149.764,12 +21367,865,18,1,3,12,16,16,16,0,70,,,51,18,01:19.9,150.444,4 +21368,865,817,5,16,15,,R,17,0,65,,,44,16,01:19.8,150.767,31 +21369,865,819,206,25,21,,R,18,0,64,,,61,14,01:19.6,151.047,31 +21370,865,30,131,7,6,,R,19,0,63,,,52,6,01:18.9,152.387,32 +21371,865,808,207,21,18,,R,20,0,15,,,12,20,01:20.8,148.765,10 +21372,865,155,15,14,11,,R,21,0,5,,,4,21,01:25.5,140.664,3 +21373,865,37,164,22,20,,R,22,0,0,,,,0,,,3 +21374,865,813,3,18,24,,R,23,0,0,,,,0,,,3 +21375,865,154,208,10,4,,R,24,0,0,,,,0,,,3 +21376,866,1,1,4,2,1,1,1,25,70,32:29.6,5549586,59,6,01:17.0,203.837,1 +21377,866,154,208,10,7,2,2,2,18,70,2.513,5552099,57,11,01:17.3,203.194,1 +21378,866,815,15,15,15,3,3,3,15,70,5.26,5554846,67,3,01:16.4,205.454,1 +21379,866,20,9,1,1,4,4,4,12,70,7.295,5556881,70,1,01:15.8,207.249,1 +21380,866,4,6,5,3,5,5,5,10,70,13.411,5562997,42,15,01:17.8,201.742,1 +21381,866,3,131,8,5,6,6,6,8,70,13.842,5563428,67,7,01:17.1,203.732,1 +21382,866,17,9,2,4,7,7,7,6,70,15.085,5564671,62,8,01:17.1,203.544,1 +21383,866,8,208,9,12,8,8,8,4,70,15.567,5565153,70,5,01:16.8,204.517,1 +21384,866,155,15,14,11,9,9,9,2,70,24.432,5574018,61,12,01:17.5,202.669,1 +21385,866,13,6,6,6,10,10,10,1,70,25.272,5574858,69,2,01:16.2,206.08,1 +21386,866,814,10,11,8,11,11,11,0,70,37.693,5587279,63,10,01:17.2,203.312,1 +21387,866,807,10,12,13,12,12,12,0,70,46.236,5595822,62,9,01:17.2,203.357,1 +21388,866,813,3,18,22,13,13,13,0,70,47.052,5596638,67,13,01:17.5,202.604,1 +21389,866,817,5,16,14,14,14,14,0,70,+1:04.475,5614061,70,4,01:16.6,204.931,1 +21390,866,818,5,17,19,15,15,15,0,69,,,55,17,01:17.9,201.6,11 +21391,866,18,1,3,10,16,16,16,0,69,,,63,16,01:17.8,201.682,11 +21392,866,811,3,19,16,17,17,17,0,69,,,67,14,01:17.8,201.75,11 +21393,866,5,207,20,17,18,18,18,0,69,,,62,19,01:18.1,200.947,11 +21394,866,808,207,21,18,19,19,19,0,69,,,58,18,01:18.1,201.037,11 +21395,866,819,206,25,23,20,20,20,0,69,,,63,21,01:20.6,194.706,13 +21396,866,10,206,24,21,21,21,21,0,56,,,47,22,01:21.0,193.745,22 +21397,866,30,131,7,9,,R,22,0,43,,,37,20,01:18.4,200.165,65 +21398,866,37,164,22,20,,R,23,0,24,,,23,23,01:21.5,192.55,23 +21399,866,39,164,23,24,,R,24,0,22,,,12,24,01:22.0,191.355,22 +21400,867,4,6,5,11,1,1,1,25,57,44:16.6,6256649,40,5,01:43.7,188.185,1 +21401,867,8,208,9,5,2,2,2,18,57,6.421,6263070,43,7,01:43.7,188.148,1 +21402,867,30,131,7,12,3,3,3,15,57,12.639,6269288,43,3,01:43.1,189.22,1 +21403,867,17,9,2,19,4,4,4,12,57,13.628,6270277,40,2,01:42.7,189.923,1 +21404,867,807,10,12,8,5,5,5,10,57,19.993,6276642,40,13,01:44.2,187.174,1 +21405,867,3,131,8,6,6,6,6,8,57,21.176,6277825,54,1,01:42.2,190.953,1 +21406,867,814,10,11,10,7,7,7,6,57,22.866,6279515,45,11,01:44.1,187.398,1 +21407,867,18,1,3,9,8,8,8,4,57,24.653,6281302,48,17,01:44.8,186.138,1 +21408,867,815,15,15,15,9,9,9,2,57,27.777,6284426,43,4,01:43.5,188.439,1 +21409,867,811,3,19,14,10,10,10,1,57,35.961,6292610,44,12,01:44.1,187.38,1 +21410,867,817,5,16,17,11,11,11,0,57,37.041,6293690,44,6,01:43.7,188.17,1 +21411,867,813,3,18,3,12,12,12,0,57,54.63,6311279,43,10,01:44.1,187.465,1 +21412,867,808,207,21,20,13,13,13,0,57,+1:15.871,6332520,54,14,01:44.3,187.125,1 +21413,867,5,207,20,16,14,14,14,0,57,+1:34.654,6351303,40,19,01:45.3,185.275,1 +21414,867,819,206,25,23,15,15,15,0,57,+1:36.551,6353200,43,22,01:46.7,182.832,1 +21415,867,13,6,6,13,16,16,16,0,56,,,36,15,01:44.4,186.806,11 +21416,867,37,164,22,21,17,17,17,0,56,,,36,23,01:46.8,182.664,11 +21417,867,39,164,23,22,18,18,18,0,56,,,42,21,01:46.4,183.37,11 +21418,867,1,1,4,2,19,19,19,0,55,,,43,9,01:44.0,187.568,4 +21419,867,154,208,10,4,,R,20,0,40,,,38,8,01:43.8,188.007,40 +21420,867,20,9,1,1,,R,21,0,33,,,18,16,01:44.6,186.585,6 +21421,867,155,15,14,7,,R,22,0,33,,,22,18,01:45.1,185.649,4 +21422,867,818,5,17,18,,R,23,0,26,,,22,20,01:45.5,184.929,4 +21423,867,10,206,24,0,,W,24,0,0,,,,0,,,54 +21424,868,17,9,2,2,1,1,1,25,52,25:11.3,5111288,49,4,01:34.9,223.393,1 +21425,868,4,6,5,1,2,2,2,18,52,3.06,5114348,49,7,01:35.4,222.336,1 +21426,868,20,9,1,4,3,3,3,15,52,4.836,5116124,52,3,01:34.9,223.48,1 +21427,868,13,6,6,5,4,4,4,12,52,9.519,5120807,50,5,01:35.0,223.141,1 +21428,868,8,208,9,6,5,5,5,10,52,10.314,5121602,50,1,01:34.7,224.037,1 +21429,868,154,208,10,9,6,6,6,8,52,17.101,5128389,50,2,01:34.9,223.51,1 +21430,868,30,131,7,3,7,7,7,6,52,29.153,5140441,52,6,01:35.2,222.789,1 +21431,868,1,1,4,8,8,8,8,4,52,36.463,5147751,44,15,01:36.2,220.515,1 +21432,868,811,3,19,13,9,9,9,2,52,43.347,5154635,48,12,01:35.9,221.228,1 +21433,868,18,1,3,16,10,10,10,1,52,44.444,5155732,52,14,01:36.1,220.714,1 +21434,868,155,15,14,17,11,11,11,0,52,45.37,5156658,48,9,01:35.5,222.12,1 +21435,868,807,10,12,14,12,12,12,0,52,47.856,5159144,37,13,01:36.0,220.956,1 +21436,868,817,5,16,12,13,13,13,0,52,51.241,5162529,49,8,01:35.4,222.19,1 +21437,868,818,5,17,23,14,14,14,0,52,53.313,5164601,49,10,01:35.5,222.036,1 +21438,868,3,131,8,11,15,15,15,0,52,57.394,5168682,49,11,01:35.7,221.489,1 +21439,868,813,3,18,7,16,16,16,0,51,,,34,17,01:37.5,217.48,11 +21440,868,5,207,20,19,17,17,17,0,51,,,37,19,01:38.1,216.293,11 +21441,868,10,206,24,20,18,18,18,0,51,,,50,16,01:37.4,217.687,11 +21442,868,819,206,25,24,19,19,19,0,51,,,50,18,01:38.0,216.386,11 +21443,868,37,164,22,21,20,20,20,0,50,,,44,21,01:39.6,212.889,12 +21444,868,39,164,23,22,21,21,21,0,50,,,50,20,01:38.3,215.658,12 +21445,868,815,15,15,15,,R,22,0,11,,,3,22,01:39.8,212.541,4 +21446,868,814,10,11,10,,R,23,0,2,,,,0,,,4 +21447,868,808,207,21,18,,W,24,0,0,,,,0,,,5 +21448,869,4,6,5,1,1,1,1,25,67,31:05.9,5465862,66,2,01:19.0,208.319,1 +21449,869,18,1,3,6,2,2,2,18,67,6.949,5472811,67,8,01:19.5,207.205,1 +21450,869,8,208,9,10,3,3,3,15,67,16.409,5482271,62,13,01:19.7,206.555,1 +21451,869,155,15,14,12,4,4,4,12,67,21.925,5487787,56,9,01:19.5,207.163,1 +21452,869,20,9,1,2,5,5,5,10,67,23.732,5489594,61,4,01:19.2,208.011,1 +21453,869,815,15,15,17,6,6,6,8,67,27.896,5493758,62,6,01:19.3,207.725,1 +21454,869,30,131,7,3,7,7,7,6,67,28.97,5494832,57,1,01:18.7,209.163,1 +21455,869,17,9,2,8,8,8,8,4,67,46.941,5512803,59,14,01:19.8,206.361,1 +21456,869,807,10,12,4,9,9,9,2,67,48.162,5514024,56,7,01:19.4,207.458,1 +21457,869,3,131,8,21,10,10,10,1,67,48.889,5514751,59,3,01:19.1,208.158,1 +21458,869,814,10,11,9,11,11,11,0,67,59.227,5525089,67,12,01:19.7,206.56,1 +21459,869,13,6,6,13,12,12,12,0,67,71.428,5537290,67,5,01:19.2,207.843,1 +21460,869,817,5,16,11,13,13,13,0,67,76.829,5542691,44,18,01:20.1,205.66,1 +21461,869,818,5,17,15,14,14,14,0,67,76.965,5542827,59,11,01:19.6,206.747,1 +21462,869,813,3,18,5,15,15,15,0,66,,,59,10,01:19.6,206.846,11 +21463,869,808,207,21,18,16,16,16,0,66,,,62,16,01:20.0,205.837,11 +21464,869,811,3,19,14,17,17,17,0,66,,,62,15,01:19.9,206.103,11 +21465,869,154,208,10,19,18,18,18,0,66,,,60,17,01:20.0,205.796,11 +21466,869,5,207,20,16,19,19,19,0,65,,,61,20,01:20.6,204.307,12 +21467,869,819,206,25,20,20,20,20,0,65,,,45,21,01:21.8,201.416,12 +21468,869,37,164,22,23,21,21,21,0,64,,,51,23,01:22.4,199.817,13 +21469,869,10,206,24,22,22,22,22,0,64,,,54,24,01:22.8,198.922,13 +21470,869,39,164,23,24,23,23,23,0,64,,,55,22,01:21.8,201.33,13 +21471,869,1,1,4,7,,R,24,0,56,,,34,19,01:20.1,205.596,45 +21472,870,1,1,4,1,1,1,1,25,69,41:05.5,6065503,65,4,01:25.7,184.082,1 +21473,870,8,208,9,5,2,2,2,18,69,1.032,6066535,41,6,01:25.7,183.972,1 +21474,870,154,208,10,2,3,3,3,15,69,10.518,6076021,59,13,01:26.1,183.284,1 +21475,870,20,9,1,3,4,4,4,12,69,11.614,6077117,68,1,01:24.1,187.453,1 +21476,870,4,6,5,6,5,5,5,10,69,26.653,6092156,65,7,01:25.7,183.951,1 +21477,870,18,1,3,4,6,6,6,8,69,30.243,6095746,58,10,01:25.8,183.751,1 +21478,870,811,3,19,9,7,7,7,6,69,33.899,6099402,65,16,01:26.2,182.863,1 +21479,870,17,9,2,11,8,8,8,4,69,34.458,6099961,41,3,01:25.4,184.674,1 +21480,870,13,6,6,7,9,9,9,2,69,38.35,6103853,54,11,01:25.9,183.561,1 +21481,870,3,131,8,13,10,10,10,1,69,51.234,6116737,58,9,01:25.8,183.753,1 +21482,870,807,10,12,10,11,11,11,0,69,57.283,6122786,60,15,01:26.1,183.235,1 +21483,870,814,10,11,12,12,12,12,0,69,+1:02.887,6128390,57,12,01:26.0,183.441,1 +21484,870,813,3,18,8,13,13,13,0,69,+1:03.606,6129109,63,5,01:25.7,183.983,1 +21485,870,815,15,15,14,14,14,14,0,69,+1:04.494,6129997,65,2,01:25.2,185.073,1 +21486,870,817,5,16,18,15,15,15,0,68,,,59,17,01:26.5,182.313,11 +21487,870,818,5,17,16,16,16,16,0,68,,,66,14,01:26.1,183.26,11 +21488,870,5,207,20,19,17,17,17,0,68,,,62,18,01:26.6,182.13,11 +21489,870,155,15,14,15,18,18,18,0,67,,,61,8,01:25.7,183.936,12 +21490,870,808,207,21,20,19,19,19,0,67,,,59,20,01:27.6,179.981,12 +21491,870,819,206,25,21,20,20,20,0,67,,,22,22,01:28.7,177.754,12 +21492,870,10,206,24,22,21,21,21,0,66,,,55,21,01:28.4,178.316,13 +21493,870,37,164,22,23,22,22,22,0,66,,,56,23,01:28.8,177.678,13 +21494,870,39,164,23,24,,R,23,0,60,,,56,24,01:29.5,176.207,22 +21495,870,30,131,7,17,,R,24,0,58,,,56,19,01:26.8,181.746,45 +21496,871,18,1,3,1,1,1,1,25,44,29:08.5,5348530,40,10,01:54.3,220.611,1 +21497,871,20,9,1,10,2,2,2,18,44,13.624,5362154,39,9,01:54.2,220.795,1 +21498,871,8,208,9,3,3,3,3,15,44,25.334,5373864,34,5,01:53.6,221.879,1 +21499,871,807,10,12,11,4,4,4,12,44,27.843,5376373,40,6,01:53.8,221.645,1 +21500,871,13,6,6,14,5,5,5,10,44,29.845,5378375,30,3,01:53.5,222.223,1 +21501,871,17,9,2,12,6,6,6,8,44,31.244,5379774,42,7,01:53.8,221.629,1 +21502,871,30,131,7,13,7,7,7,6,44,53.374,5401904,37,4,01:53.5,222.139,1 +21503,871,818,5,17,15,8,8,8,4,44,58.865,5407395,31,8,01:54.0,221.188,1 +21504,871,817,5,16,16,9,9,9,2,44,62.982,5411512,42,12,01:54.6,220.011,1 +21505,871,814,10,11,9,10,10,10,1,44,63.783,5412313,28,11,01:54.6,220.093,1 +21506,871,3,131,8,23,11,11,11,0,44,65.111,5413641,39,2,01:53.1,222.992,1 +21507,871,811,3,19,17,12,12,12,0,44,71.529,5420059,43,1,01:52.8,223.488,1 +21508,871,155,15,14,2,13,13,13,0,44,116.119,5464649,26,13,01:55.6,218.121,1 +21509,871,808,207,21,19,14,14,14,0,43,,,28,15,01:56.7,215.985,11 +21510,871,10,206,24,20,15,15,15,0,43,,,30,16,01:57.0,215.588,11 +21511,871,819,206,25,22,16,16,16,0,43,,,27,18,01:57.9,213.791,11 +21512,871,5,207,20,18,17,17,17,0,43,,,33,14,01:56.5,216.479,11 +21513,871,37,164,22,21,18,18,18,0,43,,,30,17,01:57.3,214.929,11 +21514,871,39,164,23,24,,R,19,0,29,,,16,19,01:59.1,211.684,20 +21515,871,813,3,18,6,,R,20,0,4,,,4,20,02:56.2,143.116,4 +21516,871,815,15,15,4,,R,21,0,0,,,,0,,,4 +21517,871,4,6,5,5,,R,22,0,0,,,,0,,,4 +21518,871,1,1,4,7,,R,23,0,0,,,,0,,,4 +21519,871,154,208,10,8,,R,24,0,0,,,,0,,,4 +21520,872,1,1,4,1,1,1,1,25,53,19:41.2,4781221,52,5,01:28.4,235.841,1 +21521,872,815,15,15,12,2,2,2,18,53,4.356,4785577,53,2,01:27.6,238.171,1 +21522,872,4,6,5,10,3,3,3,15,53,20.594,4801815,44,11,01:28.8,234.758,1 +21523,872,13,6,6,3,4,4,4,12,53,29.667,4810888,33,12,01:28.9,234.55,1 +21524,872,8,208,9,7,5,5,5,10,53,30.881,4812102,52,17,01:29.1,234.036,1 +21525,872,30,131,7,4,6,6,6,8,53,31.259,4812480,51,3,01:27.7,237.748,1 +21526,872,3,131,8,6,7,7,7,6,53,33.55,4814771,53,1,01:27.2,239.053,1 +21527,872,814,10,11,9,8,8,8,4,53,41.057,4822278,51,16,01:29.1,234.144,1 +21528,872,155,15,14,8,9,9,9,2,53,43.898,4825119,39,14,01:29.0,234.239,1 +21529,872,811,3,19,13,10,10,10,1,53,48.144,4829365,52,10,01:28.7,235.004,1 +21530,872,813,3,18,22,11,11,11,0,53,48.682,4829903,51,4,01:28.1,236.843,1 +21531,872,817,5,16,14,12,12,12,0,53,50.316,4831537,46,7,01:28.6,235.325,1 +21532,872,816,208,10,15,13,13,13,0,53,+1:15.861,4857082,52,8,01:28.7,235.177,1 +21533,872,5,207,20,17,14,14,14,0,52,,,46,19,01:29.4,233.277,11 +21534,872,808,207,21,18,15,15,15,0,52,,,46,15,01:29.1,234.149,11 +21535,872,819,206,25,20,16,16,16,0,52,,,44,20,01:29.8,232.357,11 +21536,872,10,206,24,19,17,17,17,0,52,,,50,21,01:29.9,232.008,11 +21537,872,37,164,22,23,18,18,18,0,52,,,51,22,01:30.4,230.699,11 +21538,872,39,164,23,21,19,19,19,0,52,,,44,23,01:31.1,228.957,11 +21539,872,17,9,2,11,20,20,20,0,51,,,43,18,01:29.2,233.792,76 +21540,872,807,10,12,24,21,21,21,0,50,,,46,6,01:28.6,235.439,23 +21541,872,20,9,1,5,22,22,22,0,47,,,46,9,01:28.7,235.081,91 +21542,872,18,1,3,2,,R,23,0,32,,,31,13,01:28.9,234.518,32 +21543,872,818,5,17,16,,R,24,0,8,,,6,24,01:32.0,226.776,22 +21544,873,20,9,1,3,1,1,1,25,59,00:26.1,7226144,50,3,01:52.1,162.865,1 +21545,873,18,1,3,4,2,2,2,18,59,+8.959 sec,7235103,47,4,01:52.6,162.155,1 +21546,873,4,6,5,5,3,3,3,15,59,15.227,7241371,53,5,01:52.7,162.034,1 +21547,873,814,10,11,6,4,4,4,12,59,19.063,7245207,54,7,01:52.9,161.716,1 +21548,873,3,131,8,10,5,5,5,10,59,34.784,7260928,55,12,01:53.9,160.344,1 +21549,873,8,208,9,12,6,6,6,8,59,35.759,7261903,53,11,01:53.8,160.502,1 +21550,873,154,208,10,8,7,7,7,6,59,36.698,7262842,56,14,01:54.1,160.027,1 +21551,873,13,6,6,13,8,8,8,4,59,42.829,7268973,47,13,01:54.0,160.204,1 +21552,873,817,5,16,15,9,9,9,2,59,45.82,7271964,53,15,01:54.3,159.825,1 +21553,873,815,15,15,14,10,10,10,1,59,50.619,7276763,51,6,01:52.8,161.935,1 +21554,873,17,9,2,7,11,11,11,0,59,87.175,7313319,53,10,01:53.7,160.585,1 +21555,873,10,206,24,20,12,12,12,0,59,91.918,7318062,30,21,01:56.1,157.36,1 +21556,873,155,15,14,17,13,13,13,0,59,97.141,7323285,52,2,01:51.7,163.513,1 +21557,873,807,10,12,11,14,14,14,0,59,99.413,7325557,52,1,01:51.0,164.48,1 +21558,873,5,207,20,19,15,15,15,0,59,107.967,7334111,48,18,01:55.2,158.485,1 +21559,873,819,206,25,21,16,16,16,0,59,132.925,7359069,37,22,01:56.5,156.781,1 +21560,873,37,164,22,24,17,17,17,0,58,,,48,23,01:57.7,155.202,11 +21561,873,811,3,19,22,18,18,18,0,57,,,27,9,01:53.6,160.749,31 +21562,873,808,207,21,18,19,19,19,0,57,,,44,17,01:55.1,158.613,12 +21563,873,818,5,17,16,,R,20,0,38,,,28,8,01:53.5,160.891,4 +21564,873,30,131,7,9,,R,21,0,38,,,26,20,01:56.0,157.374,4 +21565,873,813,3,18,2,,R,22,0,36,,,27,16,01:55.1,158.641,9 +21566,873,39,164,23,23,,R,23,0,30,,,26,24,01:58.5,154.107,3 +21567,873,1,1,4,1,,R,24,0,22,,,14,19,01:55.5,158.063,6 +21568,874,20,9,1,1,1,1,1,25,53,28:56.2,5336242,52,1,01:35.8,218.276,1 +21569,874,13,6,6,10,2,2,2,18,53,20.639,5356881,50,5,01:36.9,215.753,1 +21570,874,155,15,14,3,3,3,3,15,53,24.538,5360780,52,3,01:36.7,216.233,1 +21571,874,18,1,3,8,4,4,4,12,53,25.098,5361340,51,2,01:36.6,216.396,1 +21572,874,1,1,4,9,5,5,5,10,53,46.49,5382732,45,11,01:37.8,213.842,1 +21573,874,8,208,9,7,6,6,6,8,53,50.424,5386666,49,13,01:37.9,213.566,1 +21574,874,807,10,12,15,7,7,7,6,53,51.159,5387401,46,14,01:37.9,213.453,1 +21575,874,813,3,18,12,8,8,8,4,53,52.364,5388606,45,12,01:37.8,213.818,1 +21576,874,17,9,2,2,9,9,9,2,53,54.675,5390917,49,7,01:37.1,215.233,1 +21577,874,817,5,16,14,10,10,10,1,53,66.919,5403161,50,8,01:37.5,214.511,1 +21578,874,30,131,7,23,11,11,11,0,53,67.769,5404011,43,6,01:36.9,215.646,1 +21579,874,814,10,11,11,12,12,12,0,53,83.46,5419702,48,10,01:37.5,214.335,1 +21580,874,818,5,17,19,13,13,13,0,53,88.645,5424887,39,9,01:37.5,214.339,1 +21581,874,811,3,19,16,14,14,14,0,53,88.709,5424951,44,4,01:36.8,215.92,1 +21582,874,5,207,20,17,15,15,15,0,52,,,52,15,01:38.0,213.224,11 +21583,874,10,206,24,18,16,16,16,0,52,,,48,18,01:38.8,211.685,11 +21584,874,808,207,21,22,17,17,17,0,52,,,47,17,01:38.3,212.572,11 +21585,874,37,164,22,20,18,18,18,0,52,,,50,20,01:39.4,210.417,11 +21586,874,154,208,10,4,19,19,19,0,51,,,32,16,01:38.3,212.717,12 +21587,874,819,206,25,21,,R,20,0,37,,,34,21,01:40.5,208.026,5 +21588,874,39,164,23,24,,R,21,0,32,,,21,22,01:41.4,206.19,76 +21589,874,815,15,15,5,,R,22,0,18,,,17,19,01:39.0,211.199,20 +21590,874,4,6,5,6,,R,23,0,0,,,,0,,,4 +21591,874,3,131,8,13,,R,24,0,0,,,,0,,,4 +21592,875,20,9,1,2,1,1,1,25,55,36:28.7,5788651,55,5,01:42.5,197.211,1 +21593,875,17,9,2,1,2,2,2,18,55,8.231,5796882,54,1,01:42.0,198.104,1 +21594,875,4,6,5,4,3,3,3,15,55,13.944,5802595,52,3,01:42.4,197.321,1 +21595,875,13,6,6,6,4,4,4,12,55,20.168,5808819,48,2,01:42.2,197.707,1 +21596,875,8,208,9,5,5,5,5,10,55,36.739,5825390,51,11,01:42.8,196.592,1 +21597,875,807,10,12,8,6,6,6,8,55,45.301,5833952,54,6,01:42.6,196.931,1 +21598,875,154,208,10,7,7,7,7,6,55,54.812,5843463,44,10,01:42.8,196.666,1 +21599,875,818,5,17,16,8,8,8,4,55,69.589,5858240,48,8,01:42.7,196.785,1 +21600,875,817,5,16,21,9,9,9,2,55,71.787,5860438,45,12,01:43.1,195.97,1 +21601,875,1,1,4,3,10,10,10,1,55,79.692,5868343,49,9,01:42.7,196.785,1 +21602,875,815,15,15,12,11,11,11,0,55,80.062,5868713,49,4,01:42.5,197.219,1 +21603,875,814,10,11,14,12,12,12,0,55,84.448,5873099,48,15,01:43.5,195.272,1 +21604,875,30,131,7,10,13,13,13,0,55,89.241,5877892,49,13,01:43.2,195.902,1 +21605,875,813,3,18,15,14,14,14,0,55,94.924,5883575,55,7,01:42.7,196.865,1 +21606,875,811,3,19,17,15,15,15,0,55,96.902,5885553,49,14,01:43.4,195.472,1 +21607,875,808,207,21,18,16,16,16,0,54,,,50,18,01:45.0,192.49,11 +21608,875,5,207,20,19,17,17,17,0,54,,,43,17,01:45.0,192.596,11 +21609,875,10,206,24,20,18,18,18,0,54,,,42,19,01:45.2,192.082,11 +21610,875,819,206,25,24,19,19,19,0,53,,,52,16,01:44.5,193.505,12 +21611,875,39,164,23,23,20,20,20,0,53,,,39,21,01:47.1,188.795,12 +21612,875,37,164,22,22,,R,21,0,16,,,9,22,01:49.9,183.996,37 +21613,875,155,15,14,13,,R,22,0,16,,,3,20,01:47.1,188.799,130 +21614,875,3,131,8,9,,R,23,0,1,,,,0,,,4 +21615,875,18,1,3,11,,R,24,0,0,,,,0,,,4 +21616,876,20,9,1,1,1,1,1,25,60,31:10.7,5470744,60,4,01:28.7,207.95,1 +21617,876,4,6,5,5,2,2,2,18,60,9.437,5480181,60,3,01:28.6,208.168,1 +21618,876,17,9,2,2,3,3,3,15,60,13.217,5483961,59,6,01:29.0,207.235,1 +21619,876,1,1,4,3,4,4,4,12,60,13.909,5484653,58,5,01:28.9,207.433,1 +21620,876,18,1,3,4,5,5,5,10,60,26.266,5497010,60,1,01:28.2,209.176,1 +21621,876,13,6,6,6,6,6,6,8,60,44.674,5515418,59,11,01:29.3,206.646,1 +21622,876,8,208,9,7,7,7,7,6,60,45.227,5515971,54,12,01:29.4,206.482,1 +21623,876,807,10,12,12,8,8,8,4,60,54.998,5525742,60,10,01:29.2,206.769,1 +21624,876,154,208,10,11,9,9,9,2,60,56.103,5526847,57,15,01:29.5,206.094,1 +21625,876,811,3,19,13,10,10,10,1,60,+1:14.975,5545719,60,2,01:28.4,208.637,1 +21626,876,3,131,8,10,11,11,11,0,60,+1:21.694,5552438,59,14,01:29.5,206.163,1 +21627,876,814,10,11,16,12,12,12,0,60,+1:22.815,5553559,59,7,01:29.1,207.103,1 +21628,876,817,5,16,15,13,13,13,0,60,+1:26.064,5556808,57,13,01:29.4,206.283,1 +21629,876,155,15,14,17,14,14,14,0,60,+1:26.495,5557239,51,8,01:29.2,206.829,1 +21630,876,818,5,17,18,15,15,15,0,59,,,59,17,01:30.1,204.792,11 +21631,876,813,3,18,9,16,16,16,0,59,,,50,16,01:30.1,204.847,11 +21632,876,808,207,21,19,17,17,17,0,59,,,58,19,01:31.2,202.384,11 +21633,876,5,207,20,20,18,18,18,0,59,,,57,18,01:30.8,203.225,11 +21634,876,819,206,25,24,19,19,19,0,59,,,55,20,01:31.4,201.935,11 +21635,876,10,206,24,21,20,20,20,0,58,,,56,21,01:31.7,201.153,12 +21636,876,39,164,23,23,21,21,21,0,58,,,53,22,01:32.2,200.193,12 +21637,876,30,131,7,14,22,22,22,0,55,,,53,9,01:29.2,206.769,31 +21638,876,37,164,22,22,,R,23,0,43,,,39,24,01:32.9,198.677,3 +21639,876,815,15,15,8,,R,24,0,21,,,17,23,01:32.2,200.091,3 +21640,877,8,208,9,4,1,1,1,25,55,45:58.7,6358667,50,3,01:44.5,191.41,1 +21641,877,4,6,5,6,2,2,2,18,55,0.852,6359519,53,2,01:44.1,192.087,1 +21642,877,20,9,1,24,3,3,3,15,55,4.163,6362830,54,1,01:44.0,192.32,1 +21643,877,18,1,3,5,4,4,4,12,55,7.787,6366454,50,4,01:44.5,191.273,1 +21644,877,813,3,18,3,5,5,5,10,55,13.007,6371674,55,5,01:44.8,190.726,1 +21645,877,155,15,14,15,6,6,6,8,55,20.076,6378743,55,8,01:45.4,189.658,1 +21646,877,13,6,6,8,7,7,7,6,55,22.896,6381563,53,11,01:45.7,189.161,1 +21647,877,811,3,19,14,8,8,8,4,55,23.542,6382209,49,10,01:45.7,189.174,1 +21648,877,814,10,11,12,9,9,9,2,55,24.16,6382827,53,9,01:45.6,189.31,1 +21649,877,817,5,16,16,10,10,10,1,55,27.463,6386130,53,12,01:45.9,188.799,1 +21650,877,30,131,7,13,11,11,11,0,55,28.075,6386742,51,6,01:45.2,190.015,1 +21651,877,818,5,17,17,12,12,12,0,55,34.906,6393573,53,13,01:46.1,188.425,1 +21652,877,5,207,20,18,13,13,13,0,55,47.764,6406431,51,15,01:47.1,186.662,1 +21653,877,10,206,24,21,14,14,14,0,55,56.473,6415140,54,18,01:47.7,185.716,1 +21654,877,815,15,15,11,15,15,15,0,55,56.768,6415435,54,7,01:45.4,189.682,1 +21655,877,808,207,21,20,16,16,16,0,55,64.595,6423262,50,19,01:48.3,184.606,1 +21656,877,37,164,22,22,17,17,17,0,55,71.778,6430445,47,20,01:48.6,184.078,1 +21657,877,819,206,25,19,,R,18,0,41,,,33,21,01:49.1,183.302,31 +21658,877,154,208,10,9,,R,19,0,37,,,36,17,01:47.5,185.958,4 +21659,877,17,9,2,2,,R,20,0,37,,,32,14,01:47.0,186.935,4 +21660,877,1,1,4,1,,R,21,0,19,,,19,16,01:47.3,186.4,10 +21661,877,39,164,23,23,,R,22,0,7,,,6,23,01:52.2,178.142,4 +21662,877,3,131,8,7,,R,23,0,7,,,4,22,01:49.3,182.864,4 +21663,877,807,10,12,10,,R,24,0,0,,,,0,,,4 +21664,878,1,1,4,2,1,1,1,25,56,35:55.3,5755269,55,5,01:39.7,199.047,1 +21665,878,20,9,1,1,2,2,2,18,56,0.675,5755944,56,1,01:39.3,199.772,1 +21666,878,4,6,5,7,3,3,3,15,56,39.229,5794498,56,4,01:39.7,199.121,1 +21667,878,13,6,6,11,4,4,4,12,56,46.013,5801282,56,2,01:39.4,199.661,1 +21668,878,18,1,3,12,5,5,5,10,56,56.432,5811701,54,6,01:40.2,198.17,1 +21669,878,8,208,9,4,6,6,6,8,56,64.425,5819694,56,3,01:39.5,199.517,1 +21670,878,154,208,10,8,7,7,7,6,56,70.313,5825582,55,10,01:40.6,197.235,1 +21671,878,807,10,12,6,8,8,8,4,56,73.792,5829061,53,16,01:41.0,196.409,1 +21672,878,813,3,18,9,9,9,9,2,56,74.525,5829794,53,12,01:40.7,197.051,1 +21673,878,811,3,19,10,10,10,10,1,56,75.133,5830402,53,13,01:40.7,197,1 +21674,878,815,15,15,15,11,11,11,0,56,84.341,5839610,53,11,01:40.7,197.086,1 +21675,878,817,5,16,18,12,12,12,0,56,84.871,5840140,53,14,01:40.8,196.947,1 +21676,878,3,131,8,17,13,13,13,0,56,85.51,5840779,51,8,01:40.4,197.622,1 +21677,878,155,15,14,16,14,14,14,0,55,,,55,7,01:40.3,197.844,11 +21678,878,814,10,11,13,15,15,15,0,55,,,55,9,01:40.6,197.296,11 +21679,878,30,131,7,5,16,16,16,0,55,,,54,15,01:40.9,196.652,11 +21680,878,808,207,21,21,17,17,17,0,55,,,55,18,01:42.8,193.017,11 +21681,878,5,207,20,22,18,18,18,0,55,,,50,19,01:43.1,192.552,11 +21682,878,10,206,24,19,19,19,19,0,55,,,40,20,01:43.3,192.083,11 +21683,878,819,206,25,20,20,20,20,0,54,,,54,17,01:42.5,193.663,12 +21684,878,37,164,22,23,21,21,21,0,54,,,43,23,01:44.7,189.623,12 +21685,878,39,164,23,24,22,22,22,0,54,,,51,22,01:44.5,189.906,12 +21686,878,17,9,2,3,,R,23,0,16,,,13,21,01:43.6,191.573,91 +21687,878,818,5,17,14,,R,24,0,14,,,12,24,01:44.8,189.423,22 +21688,879,18,1,3,2,1,1,1,25,71,45:22.7,6322656,37,2,01:18.1,198.601,1 +21689,879,4,6,5,7,2,2,2,18,71,2.754,6325410,36,4,01:18.6,197.301,1 +21690,879,13,6,6,5,3,3,3,15,71,3.615,6326271,37,5,01:18.9,196.66,1 +21691,879,17,9,2,3,4,4,4,12,71,4.936,6327592,39,6,01:18.9,196.6,1 +21692,879,807,10,12,6,5,5,5,10,71,5.708,6328364,38,3,01:18.2,198.342,1 +21693,879,20,9,1,4,6,6,6,8,71,9.453,6332109,36,9,01:19.1,196.136,1 +21694,879,30,131,7,13,7,7,7,6,71,11.907,6334563,37,15,01:20.2,193.522,1 +21695,879,818,5,17,17,8,8,8,4,71,28.653,6351309,39,8,01:19.0,196.401,1 +21696,879,155,15,14,14,9,9,9,2,71,31.25,6353906,35,7,01:19.0,196.426,1 +21697,879,8,208,9,8,10,10,10,1,70,,,34,13,01:19.4,195.262,11 +21698,879,808,207,21,19,11,11,11,0,70,,,39,18,01:20.5,192.633,11 +21699,879,819,206,25,22,12,12,12,0,70,,,36,17,01:20.3,193.156,11 +21700,879,817,5,16,15,13,13,13,0,70,,,36,11,01:19.3,195.596,11 +21701,879,5,207,20,20,14,14,14,0,70,,,39,10,01:19.3,195.725,11 +21702,879,3,131,8,9,15,15,15,0,70,,,38,16,01:20.3,193.262,11 +21703,879,10,206,24,21,16,16,16,0,70,,,34,14,01:19.7,194.669,11 +21704,879,37,164,22,24,17,17,17,0,69,,,37,19,01:21.1,191.31,12 +21705,879,39,164,23,23,18,18,18,0,69,,,40,20,01:21.5,190.233,12 +21706,879,814,10,11,10,19,19,19,0,68,,,39,12,01:19.3,195.582,3 +21707,879,1,1,4,1,,R,20,0,54,,,38,1,01:18.1,198.701,4 +21708,879,154,208,10,18,,R,21,0,5,,,2,21,01:22.2,188.752,3 +21709,879,813,3,18,16,,R,22,0,1,,,,0,,,4 +21710,879,811,3,19,11,,R,23,0,0,,,,0,,,4 +21711,879,815,15,15,12,,R,24,0,0,,,,0,,,4 +21712,880,8,208,7,7,1,1,1,25,58,30:03.2,5403225,56,1,01:29.3,213.845,1 +21713,880,4,6,3,5,2,2,2,18,58,12.451,5415676,53,3,01:29.6,213.162,1 +21714,880,20,9,1,1,3,3,3,15,58,22.346,5425571,42,10,01:30.4,211.16,1 +21715,880,13,6,4,4,4,4,4,12,58,33.577,5436802,38,8,01:30.2,211.558,1 +21716,880,1,131,10,3,5,5,5,10,58,45.561,5448786,45,5,01:29.8,212.689,1 +21717,880,17,9,2,2,6,6,6,8,58,46.8,5450025,45,4,01:29.7,212.753,1 +21718,880,16,10,15,12,7,7,7,6,58,+1:05.068,5468293,49,13,01:30.7,210.459,1 +21719,880,814,10,14,9,8,8,8,4,58,+1:08.449,5471674,56,15,01:30.9,210.033,1 +21720,880,18,1,5,10,9,9,9,2,58,+1:21.630,5484855,41,7,01:30.2,211.654,1 +21721,880,154,208,8,8,10,10,10,1,58,+1:22.759,5485984,41,9,01:30.4,211.193,1 +21722,880,815,1,6,15,11,11,11,0,58,+1:23.367,5486592,46,6,01:29.9,212.294,1 +21723,880,818,5,18,13,12,12,12,0,58,+1:23.857,5487082,50,2,01:29.5,213.309,1 +21724,880,821,15,12,18,13,13,13,0,57,,,32,16,01:31.4,208.836,11 +21725,880,822,3,17,16,14,14,14,0,57,,,42,12,01:30.7,210.594,11 +21726,880,824,206,22,19,15,15,15,0,57,,,52,11,01:30.5,211.055,11 +21727,880,819,207,20,22,16,16,16,0,56,,,55,19,01:32.3,206.921,12 +21728,880,820,206,23,20,17,17,17,0,56,,,49,17,01:32.2,207.036,12 +21729,880,823,207,21,21,18,18,18,0,56,,,39,20,01:32.6,206.084,12 +21730,880,817,5,19,14,,R,19,0,39,,,33,14,01:30.9,210.063,9 +21731,880,3,131,9,6,,R,20,0,26,,,18,18,01:32.3,206.926,10 +21732,880,813,3,16,17,,R,21,0,24,,,12,21,01:32.9,205.465,20 +21733,880,807,15,11,11,,W,22,0,0,,,,0,,,69 +21734,881,20,9,1,1,1,1,1,25,56,38:56.7,5936681,45,3,01:40.4,198.661,1 +21735,881,17,9,2,5,2,2,2,18,56,4.298,5940979,45,6,01:40.7,198.19,1 +21736,881,1,131,10,4,3,3,3,15,56,12.181,5948862,32,10,01:41.0,197.57,1 +21737,881,3,131,9,6,4,4,4,12,56,12.64,5949321,44,8,01:40.8,198.052,1 +21738,881,13,6,4,2,5,5,5,10,56,25.648,5962329,50,2,01:39.8,199.937,1 +21739,881,154,208,8,11,6,6,6,8,56,35.564,5972245,37,11,01:41.2,197.131,1 +21740,881,8,208,7,10,7,7,7,6,56,48.479,5985160,37,13,01:41.8,196.079,1 +21741,881,807,15,11,12,8,8,8,4,56,53.044,5989725,46,7,01:40.7,198.107,1 +21742,881,815,1,6,9,9,9,9,2,56,+1:12.357,6009038,56,1,01:39.2,201.159,1 +21743,881,818,5,18,17,10,10,10,1,56,+1:27.124,6023805,45,4,01:40.5,198.571,1 +21744,881,822,3,17,18,11,11,11,0,56,+1:28.610,6025291,54,12,01:41.4,196.845,1 +21745,881,821,15,12,14,12,12,12,0,55,,,54,9,01:40.9,197.711,11 +21746,881,824,206,22,19,13,13,13,0,55,,,47,14,01:42.4,194.827,11 +21747,881,819,207,20,20,14,14,14,0,55,,,51,17,01:42.9,193.845,11 +21748,881,823,207,21,22,15,15,15,0,55,,,44,20,01:43.2,193.441,11 +21749,881,820,206,23,21,16,16,16,0,54,,,44,19,01:43.2,193.454,12 +21750,881,18,1,5,7,17,17,17,0,53,,,43,5,01:40.6,198.444,54 +21751,881,817,5,19,13,18,18,18,0,51,,,35,15,01:42.6,194.527,31 +21752,881,813,3,16,16,,R,19,0,45,,,34,21,01:43.5,192.865,31 +21753,881,16,10,15,8,,R,20,0,27,,,24,16,01:42.8,194.129,61 +21754,881,814,10,14,15,,R,21,0,22,,,19,18,01:43.1,193.559,61 +21755,881,4,6,3,3,,R,22,0,1,,,,0,,,4 +21756,882,4,6,3,3,1,1,1,25,56,36:26.9,5786945,46,4,01:39.5,197.21,1 +21757,882,8,208,7,2,2,2,2,18,56,10.168,5797113,51,5,01:40.0,196.324,1 +21758,882,1,131,10,1,3,3,3,15,56,12.322,5799267,50,6,01:40.0,196.273,1 +21759,882,20,9,1,9,4,4,4,12,56,12.525,5799470,53,1,01:36.8,202.706,1 +21760,882,18,1,5,8,5,5,5,10,56,35.285,5822230,56,2,01:38.1,200.122,1 +21761,882,13,6,4,5,6,6,6,8,56,40.827,5827772,55,10,01:40.3,195.68,1 +21762,882,817,5,19,7,7,7,7,6,56,42.691,5829636,55,9,01:40.2,195.766,1 +21763,882,814,10,14,11,8,8,8,4,56,51.084,5838029,55,7,01:40.1,196.038,1 +21764,882,154,208,8,6,9,9,9,2,56,53.423,5840368,55,11,01:40.6,195.137,1 +21765,882,807,15,11,10,10,10,10,1,56,56.598,5843543,31,12,01:40.6,195.007,1 +21766,882,815,1,6,12,11,11,11,0,56,+1:03.860,5850805,55,14,01:41.3,193.754,1 +21767,882,818,5,18,15,12,12,12,0,56,+1:12.604,5859549,56,8,01:40.1,195.965,1 +21768,882,822,3,17,16,13,13,13,0,56,+1:33.861,5880806,53,3,01:38.2,199.832,1 +21769,882,813,3,16,14,14,14,14,0,56,+1:35.453,5882398,54,13,01:41.0,194.354,1 +21770,882,824,206,22,18,15,15,15,0,55,,,35,15,01:41.5,193.265,11 +21771,882,819,207,20,20,16,16,16,0,55,,,48,17,01:42.0,192.393,11 +21772,882,820,206,23,19,17,17,17,0,55,,,39,16,01:42.0,192.429,11 +21773,882,823,207,21,21,18,18,18,0,55,,,42,18,01:42.4,191.717,11 +21774,882,3,131,9,4,,R,19,0,21,,,7,19,01:43.4,189.823,22 +21775,882,17,9,2,22,,R,20,0,15,,,12,20,01:43.4,189.754,36 +21776,882,16,10,15,13,,R,21,0,5,,,3,21,01:44.3,188.223,4 +21777,882,821,15,12,17,,R,22,0,4,,,2,22,01:44.8,187.292,4 +21778,883,20,9,1,2,1,1,1,25,57,36:00.5,5760498,55,1,01:37.0,200.938,1 +21779,883,8,208,7,8,2,2,2,18,57,9.111,5769609,57,8,01:38.2,198.476,1 +21780,883,154,208,8,11,3,3,3,15,57,19.507,5780005,52,5,01:37.6,199.567,1 +21781,883,814,10,14,5,4,4,4,12,57,21.727,5782225,57,12,01:38.3,198.128,1 +21782,883,1,131,10,9,5,5,5,10,57,35.23,5795728,48,11,01:38.2,198.395,1 +21783,883,815,1,6,12,6,6,6,8,57,35.998,5796496,41,7,01:37.9,198.984,1 +21784,883,17,9,2,7,7,7,7,6,57,37.244,5797742,52,13,01:38.6,197.684,1 +21785,883,4,6,3,3,8,8,8,4,57,37.574,5798072,41,3,01:37.2,200.436,1 +21786,883,3,131,9,1,9,9,9,2,57,41.126,5801624,48,4,01:37.6,199.647,1 +21787,883,18,1,5,10,10,10,10,1,57,46.631,5807129,49,6,01:37.7,199.33,1 +21788,883,813,3,16,17,11,11,11,0,57,+1:06.450,5826948,57,17,01:39.0,196.875,1 +21789,883,807,15,11,14,12,12,12,0,57,+1:12.933,5833431,43,15,01:38.8,197.258,1 +21790,883,16,10,15,6,13,13,13,0,57,+1:16.719,5837217,44,2,01:37.1,200.712,1 +21791,883,822,3,17,15,14,14,14,0,57,+1:21.511,5842009,57,9,01:38.2,198.419,1 +21792,883,13,6,4,4,15,15,15,0,57,+1:26.364,5846862,42,16,01:38.8,197.12,1 +21793,883,817,5,19,13,16,16,16,0,56,,,51,21,01:39.6,195.655,11 +21794,883,819,207,20,18,17,17,17,0,56,,,37,20,01:39.5,195.72,11 +21795,883,821,15,12,22,18,18,18,0,56,,,45,10,01:38.2,198.399,11 +21796,883,824,206,22,19,19,19,19,0,56,,,50,14,01:38.8,197.286,11 +21797,883,820,206,23,21,20,20,20,0,56,,,50,18,01:39.3,196.246,11 +21798,883,823,207,21,20,21,21,21,0,55,,,49,19,01:39.3,196.138,12 +21799,883,818,5,18,16,,R,22,0,16,,,4,22,01:43.1,188.96,29 +21800,884,4,6,3,5,1,1,1,25,66,39:16.6,5956596,53,5,01:26.7,193.329,1 +21801,884,8,208,7,4,2,2,2,18,66,9.338,5965934,47,6,01:26.8,193.16,1 +21802,884,13,6,4,9,3,3,3,15,66,26.049,5982645,56,2,01:26.4,193.971,1 +21803,884,20,9,1,3,4,4,4,12,66,38.273,5994869,55,9,01:27.0,192.541,1 +21804,884,17,9,2,7,5,5,5,10,66,47.963,6004559,55,8,01:27.0,192.583,1 +21805,884,3,131,9,1,6,6,6,8,66,+1:08.020,6024616,56,11,01:27.6,191.321,1 +21806,884,814,10,14,10,7,7,7,6,66,+1:08.988,6025584,55,7,01:26.8,193.117,1 +21807,884,18,1,5,14,8,8,8,4,66,+1:19.506,6036102,55,14,01:28.0,190.524,1 +21808,884,815,1,6,8,9,9,9,2,66,+1:21.738,6038334,55,10,01:27.3,192.066,1 +21809,884,817,5,19,11,10,10,10,1,65,,,55,16,01:28.1,190.252,11 +21810,884,821,15,12,19,11,11,11,0,65,,,56,1,01:26.2,194.37,11 +21811,884,1,131,10,2,12,12,12,0,65,,,53,13,01:27.9,190.659,11 +21812,884,16,10,15,13,13,13,13,0,65,,,38,3,01:26.6,193.59,11 +21813,884,813,3,16,17,14,14,14,0,65,,,56,12,01:27.8,190.759,11 +21814,884,807,15,11,15,15,15,15,0,65,,,58,4,01:26.6,193.541,11 +21815,884,822,3,17,16,16,16,16,0,65,,,27,20,01:29.7,186.724,11 +21816,884,819,207,20,22,17,17,17,0,65,,,43,19,01:29.4,187.529,11 +21817,884,824,206,22,20,18,18,18,0,64,,,55,18,01:28.9,188.537,12 +21818,884,820,206,23,21,19,19,19,0,64,,,49,15,01:28.0,190.408,12 +21819,884,818,5,18,12,20,20,20,0,52,,,41,17,01:28.2,189.933,3 +21820,884,823,207,21,18,21,21,21,0,21,,,11,21,01:30.6,184.973,36 +21821,884,154,208,8,6,22,22,22,0,8,,,5,22,01:31.1,183.879,22 +21822,885,3,131,9,1,1,1,1,25,78,17:52.1,8272056,74,6,01:18.3,153.51,1 +21823,885,20,9,1,3,2,2,2,18,78,3.888,8275944,77,1,01:16.6,157.018,1 +21824,885,17,9,2,4,3,3,3,15,78,6.314,8278370,77,4,01:18.3,153.637,1 +21825,885,1,131,10,2,4,4,4,12,78,13.894,8285950,76,3,01:18.1,153.891,1 +21826,885,16,10,15,8,5,5,5,10,78,21.477,8293533,74,5,01:18.3,153.578,1 +21827,885,18,1,5,9,6,6,6,8,78,23.103,8295159,76,8,01:18.7,152.743,1 +21828,885,4,6,3,6,7,7,7,6,78,26.734,8298790,77,12,01:19.3,151.55,1 +21829,885,818,5,18,10,8,8,8,4,78,27.223,8299279,77,10,01:19.2,151.912,1 +21830,885,814,10,14,17,9,9,9,2,78,27.608,8299664,77,11,01:19.2,151.789,1 +21831,885,8,208,7,5,10,10,10,1,78,36.582,8308638,78,2,01:17.4,155.364,1 +21832,885,807,15,11,11,11,11,11,0,78,42.572,8314628,29,15,01:19.9,150.576,1 +21833,885,822,3,17,14,12,12,12,0,78,42.691,8314747,68,20,01:20.9,148.589,1 +21834,885,821,15,12,19,13,13,13,0,78,43.212,8315268,71,7,01:18.7,152.811,1 +21835,885,820,206,23,22,14,14,14,0,78,49.885,8321941,78,9,01:19.0,152.171,1 +21836,885,823,207,21,15,15,15,15,0,78,+1:02.590,8334646,50,17,01:20.5,149.377,1 +21837,885,815,1,6,7,16,16,16,0,72,,,27,14,01:19.5,151.188,22 +21838,885,154,208,8,13,,R,17,0,63,,,57,21,01:21.0,148.501,4 +21839,885,817,5,19,12,,R,18,0,61,,,26,13,01:19.4,151.386,4 +21840,885,824,206,22,20,,R,19,0,58,,,49,18,01:20.6,149.149,23 +21841,885,813,3,16,16,,R,20,0,44,,,8,19,01:20.9,148.662,4 +21842,885,13,6,4,21,,R,21,0,28,,,28,16,01:20.1,150.179,3 +21843,885,819,207,20,18,,R,22,0,7,,,4,22,01:22.8,145.266,6 +21844,886,20,9,1,1,1,1,1,25,70,32:09.1,5529143,55,5,01:16.6,205.06,1 +21845,886,4,6,3,6,2,2,2,18,70,14.408,5543551,69,2,01:16.2,206.023,1 +21846,886,1,131,10,2,3,3,3,15,70,15.942,5545085,69,3,01:16.4,205.615,1 +21847,886,17,9,2,5,4,4,4,12,70,25.731,5554874,69,1,01:16.2,206.08,1 +21848,886,3,131,9,4,5,5,5,10,70,+1:09.725,5598868,70,4,01:16.5,205.132,1 +21849,886,818,5,18,7,6,6,6,8,69,,,61,13,01:17.9,201.512,11 +21850,886,814,10,14,17,7,7,7,6,69,,,63,12,01:17.8,201.688,11 +21851,886,13,6,4,16,8,8,8,4,69,,,69,6,01:16.9,204.052,11 +21852,886,8,208,7,10,9,9,9,2,69,,,61,11,01:17.8,201.882,11 +21853,886,16,10,15,8,10,10,10,1,69,,,68,10,01:17.7,202.069,11 +21854,886,815,1,6,12,11,11,11,0,69,,,69,7,01:17.4,202.918,11 +21855,886,18,1,5,14,12,12,12,0,69,,,68,8,01:17.5,202.685,11 +21856,886,154,208,8,22,13,13,13,0,69,,,62,9,01:17.6,202.296,11 +21857,886,822,3,17,3,14,14,14,0,69,,,63,14,01:18.0,201.266,11 +21858,886,817,5,19,11,15,15,15,0,68,,,68,16,01:18.3,200.615,12 +21859,886,813,3,16,13,16,16,16,0,68,,,68,15,01:18.1,201.006,12 +21860,886,824,206,22,19,17,17,17,0,68,,,68,17,01:18.9,199.049,12 +21861,886,819,207,20,18,18,18,18,0,67,,,60,19,01:19.4,197.777,13 +21862,886,820,206,23,20,19,19,19,0,67,,,67,21,01:19.6,197.315,13 +21863,886,821,15,12,15,20,20,20,0,63,,,52,20,01:19.5,197.533,3 +21864,886,807,15,11,9,,R,21,0,45,,,40,18,01:19.1,198.588,4 +21865,886,823,207,21,21,,R,22,0,43,,,42,22,01:21.8,191.9,4 +21866,887,3,131,9,2,1,1,1,25,52,32:59.5,5579456,50,2,01:33.5,226.744,1 +21867,887,17,9,2,4,2,2,2,18,52,0.765,5580221,52,1,01:33.4,227.059,1 +21868,887,4,6,3,9,3,3,3,15,52,7.124,5586580,50,3,01:34.1,225.396,1 +21869,887,1,131,10,1,4,4,4,12,52,7.756,5587212,51,4,01:34.2,225.231,1 +21870,887,8,208,7,8,5,5,5,10,52,11.257,5590713,49,8,01:35.4,222.339,1 +21871,887,13,6,4,11,6,6,6,8,52,14.573,5594029,51,6,01:35.3,222.598,1 +21872,887,16,10,15,6,7,7,7,6,52,16.335,5595791,35,12,01:36.0,221.002,1 +21873,887,817,5,19,5,8,8,8,4,52,16.543,5595999,37,11,01:35.9,221.08,1 +21874,887,814,10,14,21,9,9,9,2,52,17.943,5597399,52,7,01:35.3,222.465,1 +21875,887,807,15,11,14,10,10,10,1,52,19.709,5599165,48,13,01:36.0,220.882,1 +21876,887,813,3,16,15,11,11,11,0,52,21.135,5600591,52,10,01:35.9,221.126,1 +21877,887,822,3,17,16,12,12,12,0,52,25.094,5604550,52,15,01:36.3,220.196,1 +21878,887,18,1,5,10,13,13,13,0,52,25.969,5605425,39,16,01:36.4,220.096,1 +21879,887,821,15,12,17,14,14,14,0,52,26.285,5605741,32,17,01:36.4,219.906,1 +21880,887,819,207,20,18,15,15,15,0,52,31.613,5611069,52,18,01:37.1,218.43,1 +21881,887,824,206,22,19,16,16,16,0,52,36.097,5615553,51,19,01:38.0,216.452,1 +21882,887,820,206,23,20,17,17,17,0,52,+1:07.660,5647116,50,22,01:39.2,213.881,1 +21883,887,823,207,21,22,18,18,18,0,52,+1:07.759,5647215,50,21,01:38.7,214.821,1 +21884,887,154,208,8,7,19,19,19,0,51,,,48,9,01:35.6,221.804,31 +21885,887,815,1,6,13,20,20,20,0,46,,,37,14,01:36.1,220.611,36 +21886,887,20,9,1,3,,R,21,0,41,,,37,5,01:35.0,223.195,6 +21887,887,818,5,18,12,,R,22,0,35,,,30,20,01:38.4,215.59,27 +21888,888,20,9,1,2,1,1,1,25,60,41:14.7,6074711,59,5,01:34.2,196.814,1 +21889,888,8,208,7,4,2,2,2,18,60,1.008,6075719,57,2,01:33.8,197.647,1 +21890,888,154,208,8,5,3,3,3,15,60,5.83,6080541,57,10,01:34.6,195.956,1 +21891,888,4,6,3,8,4,4,4,12,60,7.721,6082432,51,1,01:33.5,198.279,1 +21892,888,1,131,10,1,5,5,5,10,60,26.927,6101638,57,4,01:34.2,196.83,1 +21893,888,18,1,5,9,6,6,6,8,60,27.996,6102707,49,7,01:34.2,196.736,1 +21894,888,17,9,2,3,7,7,7,6,60,37.562,6112273,55,11,01:34.8,195.53,1 +21895,888,815,1,6,13,8,8,8,4,60,38.306,6113017,50,15,01:36.1,192.78,1 +21896,888,3,131,9,11,9,9,9,2,60,46.821,6121532,55,6,01:34.2,196.778,1 +21897,888,807,15,11,10,10,10,10,1,60,49.892,6124603,58,8,01:34.2,196.647,1 +21898,888,814,10,14,12,11,11,11,0,60,53.771,6128482,43,16,01:36.6,191.918,1 +21899,888,817,5,19,6,12,12,12,0,60,56.975,6131686,58,14,01:36.0,193.086,1 +21900,888,16,10,15,15,13,13,13,0,60,57.738,6132449,60,13,01:35.8,193.42,1 +21901,888,821,15,12,14,14,14,14,0,60,+1:00.160,6134871,56,12,01:35.8,193.469,1 +21902,888,813,3,16,18,15,15,15,0,60,+1:01.929,6136640,56,9,01:34.3,196.544,1 +21903,888,822,3,17,17,16,16,16,0,59,,,56,3,01:34.0,197.216,11 +21904,888,819,207,20,22,17,17,17,0,59,,,51,17,01:37.6,189.916,11 +21905,888,823,207,21,20,18,18,18,0,59,,,40,19,01:38.5,188.133,11 +21906,888,820,206,23,21,19,19,19,0,59,,,47,18,01:38.4,188.374,11 +21907,888,818,5,18,16,,R,20,0,22,,,12,21,01:39.3,186.67,9 +21908,888,824,206,22,19,,R,21,0,21,,,20,22,01:39.8,185.617,5 +21909,888,13,6,4,7,,R,22,0,3,,,3,20,01:38.9,187.408,20 +21910,890,1,131,10,1,1,1,1,25,70,42:29.4,6149445,69,3,01:24.6,186.322,1 +21911,890,8,208,7,6,2,2,2,18,70,10.938,6160383,61,6,01:25.3,184.982,1 +21912,890,20,9,1,2,3,3,3,15,70,12.459,6161904,57,2,01:24.6,186.529,1 +21913,890,17,9,2,10,4,4,4,12,70,18.044,6167489,61,1,01:24.1,187.603,1 +21914,890,4,6,3,5,5,5,5,10,70,31.411,6180856,56,8,01:25.4,184.692,1 +21915,890,154,208,8,3,6,6,6,8,70,52.295,6201740,54,7,01:25.3,184.834,1 +21916,890,18,1,5,13,7,7,7,6,70,53.819,6203264,56,11,01:26.2,182.975,1 +21917,890,13,6,4,7,8,8,8,4,70,56.447,6205892,59,5,01:25.2,185.164,1 +21918,890,815,1,6,9,9,9,9,2,69,,,59,10,01:26.1,183.086,11 +21919,890,813,3,16,15,10,10,10,1,69,,,69,9,01:25.6,184.254,11 +21920,890,807,15,11,12,11,11,11,0,69,,,58,14,01:26.7,181.826,11 +21921,890,818,5,18,14,12,12,12,0,69,,,53,12,01:26.5,182.349,11 +21922,890,817,5,19,8,13,13,13,0,69,,,58,15,01:26.9,181.568,11 +21923,890,823,207,21,20,14,14,14,0,68,,,47,17,01:27.5,180.302,12 +21924,890,819,207,20,19,15,15,15,0,68,,,54,18,01:27.7,179.784,12 +21925,890,824,206,22,21,16,16,16,0,67,,,57,20,01:28.3,178.715,13 +21926,890,820,206,23,22,17,17,17,0,67,,,65,19,01:28.2,178.897,13 +21927,890,814,10,14,18,18,18,18,0,66,,,55,13,01:26.6,182.103,9 +21928,890,3,131,9,4,19,19,19,0,64,,,62,4,01:25.1,185.354,5 +21929,890,822,3,17,16,,R,20,0,42,,,41,16,01:27.1,181.018,9 +21930,890,821,15,12,17,,R,21,0,28,,,16,22,01:29.1,176.94,7 +21931,890,16,10,15,11,,R,22,0,19,,,12,21,01:28.5,178.113,9 +21932,891,20,9,1,2,1,1,1,25,44,23:42.2,5022196,40,1,01:50.8,227.657,1 +21933,891,4,6,3,9,2,2,2,18,44,16.869,5039065,36,4,01:51.4,226.375,1 +21934,891,1,131,10,1,3,3,3,15,44,27.734,5049930,39,7,01:51.6,225.943,1 +21935,891,3,131,9,4,4,4,4,12,44,29.872,5052068,39,6,01:51.6,225.971,1 +21936,891,17,9,2,3,5,5,5,10,44,33.845,5056041,31,5,01:51.4,226.347,1 +21937,891,18,1,5,6,6,6,6,8,44,40.794,5062990,36,2,01:50.8,227.519,1 +21938,891,13,6,4,10,7,7,7,6,44,53.922,5076118,40,9,01:52.2,224.763,1 +21939,891,154,208,8,7,8,8,8,4,44,55.846,5078042,34,11,01:52.5,224.133,1 +21940,891,16,10,15,12,9,9,9,2,44,+1:09.547,5091743,35,10,01:52.2,224.675,1 +21941,891,817,5,19,19,10,10,10,1,44,+1:13.470,5095666,38,3,01:51.0,227.224,1 +21942,891,815,1,6,13,11,11,11,0,44,+1:21.936,5104132,34,16,01:53.5,222.208,1 +21943,891,818,5,18,18,12,12,12,0,44,+1:26.740,5108936,29,14,01:53.1,223.008,1 +21944,891,807,15,11,11,13,13,13,0,44,+1:28.258,5110454,41,15,01:53.1,222.919,1 +21945,891,821,15,12,21,14,14,14,0,44,+1:40.436,5122632,30,8,01:51.8,225.432,1 +21946,891,822,3,17,20,15,15,15,0,44,+1:47.456,5129652,31,13,01:52.7,223.754,1 +21947,891,823,207,21,14,16,16,16,0,43,,,43,18,01:54.0,221.188,11 +21948,891,813,3,16,17,17,17,17,0,43,,,35,12,01:52.6,223.97,11 +21949,891,824,206,22,15,18,18,18,0,43,,,37,20,01:54.9,219.457,11 +21950,891,820,206,23,16,19,19,19,0,42,,,31,21,01:54.9,219.4,12 +21951,891,814,10,14,5,,R,20,0,26,,,21,19,01:54.8,219.719,4 +21952,891,8,208,7,8,,R,21,0,25,,,20,17,01:53.7,221.785,23 +21953,891,819,207,20,22,,R,22,0,8,,,7,22,01:57.3,214.901,44 +21954,892,20,9,1,1,1,1,1,25,53,18:33.4,4713352,52,12,01:27.2,239.187,1 +21955,892,4,6,3,5,2,2,2,18,53,5.467,4718819,52,5,01:26.8,240.27,1 +21956,892,17,9,2,2,3,3,3,15,53,6.35,4719702,53,3,01:26.7,240.567,1 +21957,892,13,6,4,4,4,4,4,12,53,9.361,4722713,48,10,01:27.1,239.448,1 +21958,892,807,15,11,3,5,5,5,10,53,10.355,4723707,48,4,01:26.7,240.495,1 +21959,892,3,131,9,6,6,6,6,8,53,10.999,4724351,50,2,01:26.5,241.095,1 +21960,892,817,5,19,7,7,7,7,6,53,32.329,4745681,52,13,01:27.3,238.903,1 +21961,892,154,208,8,13,8,8,8,4,53,33.13,4746482,52,8,01:27.0,239.591,1 +21962,892,1,131,10,12,9,9,9,2,53,33.527,4746879,51,1,01:25.8,242.924,1 +21963,892,18,1,5,9,10,10,10,1,53,38.327,4751679,46,16,01:27.8,237.445,1 +21964,892,8,208,7,11,11,11,11,0,53,38.695,4752047,45,6,01:26.9,239.853,1 +21965,892,815,1,6,8,12,12,12,0,53,39.765,4753117,44,15,01:27.6,238.049,1 +21966,892,821,15,12,16,13,13,13,0,53,40.88,4754232,53,9,01:27.1,239.457,1 +21967,892,813,3,16,14,14,14,14,0,53,49.085,4762437,51,7,01:27.0,239.762,1 +21968,892,822,3,17,18,15,15,15,0,53,56.827,4770179,53,11,01:27.2,239.253,1 +21969,892,16,10,15,17,16,16,16,0,52,,,38,14,01:27.4,238.564,11 +21970,892,819,207,20,20,17,17,17,0,52,,,52,17,01:28.6,235.328,11 +21971,892,823,207,21,19,18,18,18,0,52,,,52,18,01:28.7,235.214,11 +21972,892,824,206,22,21,19,19,19,0,52,,,47,20,01:29.6,232.767,11 +21973,892,820,206,23,22,20,20,20,0,52,,,48,19,01:29.5,233.037,11 +21974,892,818,5,18,10,,R,21,0,14,,,14,21,01:29.7,232.469,7 +21975,892,814,10,14,15,,R,22,0,0,,,,0,,,3 +21976,893,20,9,1,1,1,1,1,25,61,59:13.1,7153132,46,1,01:48.6,167.94,1 +21977,893,4,6,3,7,2,2,2,18,61,32.627,7185759,44,11,01:51.1,164.149,1 +21978,893,8,208,7,13,3,3,3,15,61,43.92,7197052,55,13,01:51.1,164.063,1 +21979,893,3,131,9,2,4,4,4,12,61,51.155,7204287,51,6,01:50.4,165.233,1 +21980,893,1,131,10,5,5,5,5,10,61,53.159,7206291,59,4,01:49.9,165.89,1 +21981,893,13,6,4,6,6,6,6,8,61,+1:03.877,7217009,45,7,01:50.5,165,1 +21982,893,18,1,5,8,7,7,7,6,61,+1:23.354,7236486,46,15,01:51.7,163.182,1 +21983,893,815,1,6,14,8,8,8,4,61,+1:23.820,7236952,46,16,01:51.9,162.911,1 +21984,893,807,15,11,11,9,9,9,2,61,+1:24.261,7237393,47,18,01:52.2,162.533,1 +21985,893,16,10,15,15,10,10,10,1,61,+1:24.668,7237800,43,2,01:49.7,166.283,1 +21986,893,813,3,16,18,11,11,11,0,61,+1:28.479,7241611,46,8,01:50.7,164.703,1 +21987,893,821,15,12,10,12,12,12,0,61,+1:37.894,7251026,37,17,01:52.0,162.793,1 +21988,893,822,3,17,16,13,13,13,0,61,+1:45.161,7258293,53,14,01:51.7,163.232,1 +21989,893,818,5,18,12,14,14,14,0,61,+1:53.512,7266644,45,5,01:50.3,165.27,1 +21990,893,17,9,2,4,15,15,15,0,60,,,51,3,01:49.8,166.091,34 +21991,893,823,207,21,20,16,16,16,0,60,,,44,19,01:52.5,162.12,11 +21992,893,820,206,23,22,17,17,17,0,60,,,50,21,01:53.0,161.304,11 +21993,893,824,206,22,21,18,18,18,0,60,,,45,20,01:52.9,161.508,11 +21994,893,819,207,20,19,19,19,19,0,60,,,58,10,01:51.0,164.285,11 +21995,893,814,10,14,17,20,20,20,0,54,,,45,9,01:50.7,164.657,3 +21996,893,154,208,8,3,,R,21,0,37,,,35,12,01:51.1,164.126,63 +21997,893,817,5,19,9,,R,22,0,23,,,23,22,01:53.1,161.288,3 +21998,894,20,9,1,1,1,1,1,25,55,43:13.7,6193701,53,1,01:41.4,199.388,1 +21999,894,8,208,7,9,2,2,2,18,55,4.224,6197925,51,3,01:42.0,198.225,1 +22000,894,154,208,8,3,3,3,3,15,55,4.927,6198628,46,2,01:41.9,198.3,1 +22001,894,807,15,11,7,4,4,4,12,55,24.114,6217815,53,6,01:42.6,197.002,1 +22002,894,1,131,10,2,5,5,5,10,55,25.255,6218956,53,5,01:42.5,197.134,1 +22003,894,4,6,3,5,6,6,6,8,55,26.189,6219890,54,7,01:42.7,196.808,1 +22004,894,3,131,9,4,7,7,7,6,55,26.698,6220399,54,4,01:42.5,197.265,1 +22005,894,18,1,5,11,8,8,8,4,55,32.262,6225963,45,12,01:43.1,196.113,1 +22006,894,13,6,4,6,9,9,9,2,55,34.39,6228091,47,10,01:43.0,196.34,1 +22007,894,815,1,6,10,10,10,10,1,55,35.155,6228856,47,11,01:43.0,196.303,1 +22008,894,821,15,12,8,11,11,11,0,55,35.99,6229691,55,8,01:42.7,196.741,1 +22009,894,822,3,17,17,12,12,12,0,55,47.049,6240750,44,14,01:43.9,194.61,1 +22010,894,813,3,16,18,13,13,13,0,55,50.013,6243714,43,17,01:44.1,194.111,1 +22011,894,819,207,20,19,14,14,14,0,55,+1:03.578,6257279,54,19,01:44.5,193.477,1 +22012,894,823,207,21,20,15,15,15,0,55,+1:04.501,6258202,55,18,01:44.4,193.667,1 +22013,894,824,206,22,22,16,16,16,0,55,+1:07.970,6261671,54,20,01:45.0,192.53,1 +22014,894,820,206,23,21,17,17,17,0,55,+1:12.898,6266599,48,21,01:45.4,191.769,1 +22015,894,818,5,18,16,18,18,18,0,53,,,52,15,01:44.1,194.197,12 +22016,894,817,5,19,12,19,19,19,0,52,,,52,9,01:42.9,196.353,13 +22017,894,16,10,15,14,20,20,20,0,50,,,43,16,01:44.1,194.188,4 +22018,894,17,9,2,13,,R,21,0,36,,,27,13,01:43.9,194.621,4 +22019,894,814,10,14,15,,R,22,0,24,,,10,22,01:46.4,189.961,20 +22020,895,20,9,1,2,1,1,1,25,53,26:49.3,5209301,39,4,01:35.3,219.322,1 +22021,895,17,9,2,1,2,2,2,18,53,7.129,5216430,44,1,01:34.6,221.015,1 +22022,895,154,208,8,4,3,3,3,15,53,9.91,5219211,48,10,01:36.0,217.782,1 +22023,895,4,6,3,8,4,4,4,12,53,45.605,5254906,39,8,01:35.9,218.041,1 +22024,895,8,208,7,9,5,5,5,10,53,47.325,5256626,35,5,01:35.5,218.865,1 +22025,895,807,15,11,7,6,6,6,8,53,51.615,5260916,33,11,01:36.5,216.674,1 +22026,895,821,15,12,14,7,7,7,6,53,+1:11.630,5280931,50,12,01:36.5,216.636,1 +22027,895,3,131,9,6,8,8,8,4,53,+1:12.023,5281324,46,2,01:34.7,220.868,1 +22028,895,18,1,5,10,9,9,9,2,53,+1:20.821,5290122,53,6,01:35.5,218.79,1 +22029,895,13,6,4,5,10,10,10,1,53,+1:29.263,5298564,30,13,01:37.0,215.515,1 +22030,895,814,10,14,12,11,11,11,0,53,+1:38.572,5307873,41,15,01:37.4,214.617,1 +22031,895,818,5,18,17,12,12,12,0,52,,,52,9,01:35.9,218,11 +22032,895,817,5,19,16,13,13,13,0,52,,,52,3,01:35.0,220.008,11 +22033,895,16,10,15,22,14,14,14,0,52,,,29,14,01:37.4,214.705,11 +22034,895,815,1,6,11,15,15,15,0,52,,,46,7,01:35.8,218.114,11 +22035,895,813,3,16,15,16,16,16,0,52,,,30,16,01:37.4,214.581,11 +22036,895,822,3,17,13,17,17,17,0,52,,,43,18,01:37.9,213.632,11 +22037,895,819,207,20,20,18,18,18,0,52,,,51,17,01:37.5,214.436,11 +22038,895,820,206,23,18,19,19,19,0,52,,,45,19,01:38.7,211.777,11 +22039,895,1,131,10,3,,R,20,0,7,,,3,20,01:41.2,206.569,29 +22040,895,823,207,21,19,,R,21,0,0,,,,0,,,3 +22041,895,824,206,22,21,,R,22,0,0,,,,0,,,3 +22042,896,20,9,1,1,1,1,1,25,60,31:12.2,5472187,54,2,01:28.1,209.383,1 +22043,896,3,131,9,2,2,2,2,18,60,29.823,5502010,49,9,01:28.8,207.732,1 +22044,896,154,208,8,17,3,3,3,15,60,39.892,5512079,57,7,01:28.8,207.779,1 +22045,896,13,6,4,5,4,4,4,12,60,41.692,5513879,54,11,01:28.9,207.569,1 +22046,896,815,1,6,9,5,5,5,10,60,43.829,5516016,59,4,01:28.5,208.467,1 +22047,896,1,131,10,3,6,6,6,8,60,52.475,5524662,53,15,01:29.1,207.182,1 +22048,896,8,208,7,6,7,7,7,6,60,+1:07.988,5540175,60,1,01:27.7,210.426,1 +22049,896,814,10,14,12,8,8,8,4,60,+1:12.868,5545055,58,17,01:29.3,206.606,1 +22050,896,16,10,15,13,9,9,9,2,60,+1:14.734,5546921,60,3,01:28.4,208.665,1 +22051,896,817,5,19,11,10,10,10,1,60,+1:16.237,5548424,60,10,01:28.8,207.697,1 +22052,896,4,6,3,8,11,11,11,0,60,+1:18.297,5550484,58,6,01:28.7,207.983,1 +22053,896,813,3,16,18,12,12,12,0,60,+1:18.951,5551138,56,14,01:29.0,207.275,1 +22054,896,818,5,18,14,13,13,13,0,59,,,53,16,01:29.3,206.653,11 +22055,896,18,1,5,10,14,14,14,0,59,,,57,8,01:28.8,207.737,11 +22056,896,821,15,12,16,15,15,15,0,59,,,49,5,01:28.7,208.046,11 +22057,896,822,3,17,15,16,16,16,0,59,,,52,12,01:28.9,207.471,11 +22058,896,820,206,23,22,17,17,17,0,58,,,56,20,01:30.3,204.239,12 +22059,896,824,206,22,19,18,18,18,0,58,,,57,19,01:30.2,204.611,12 +22060,896,807,15,11,7,19,19,19,0,54,,,52,13,01:28.9,207.426,26 +22061,896,17,9,2,4,,R,20,0,39,,,30,18,01:29.5,206.145,91 +22062,896,819,207,20,21,,R,21,0,35,,,32,21,01:32.9,198.585,9 +22063,896,823,207,21,20,,R,22,0,1,,,,0,,,4 +22064,897,20,9,1,2,1,1,1,25,55,38:06.1,5886106,51,2,01:43.9,192.451,1 +22065,897,17,9,2,1,2,2,2,18,55,30.829,5916935,49,5,01:44.4,191.583,1 +22066,897,3,131,9,3,3,3,3,15,55,33.65,5919756,51,6,01:44.5,191.41,1 +22067,897,154,208,8,6,4,4,4,12,55,34.802,5920908,54,3,01:44.3,191.699,1 +22068,897,4,6,3,10,5,5,5,10,55,+1:07.181,5953287,55,1,01:43.4,193.305,1 +22069,897,814,10,14,11,6,6,6,8,55,+1:18.174,5964280,55,14,01:45.8,189.007,1 +22070,897,1,131,10,4,7,7,7,6,55,+1:19.267,5965373,47,10,01:45.5,189.586,1 +22071,897,13,6,4,7,8,8,8,4,55,+1:22.886,5968992,52,9,01:45.4,189.615,1 +22072,897,815,1,6,8,9,9,9,2,55,+1:31.198,5977304,51,8,01:45.4,189.637,1 +22073,897,16,10,15,17,10,10,10,1,55,+1:33.257,5979363,48,13,01:45.6,189.324,1 +22074,897,813,3,16,14,11,11,11,0,55,+1:35.989,5982095,55,11,01:45.5,189.466,1 +22075,897,18,1,5,12,12,12,12,0,55,+1:43.767,5989873,43,17,01:46.3,188.03,1 +22076,897,821,15,12,16,13,13,13,0,55,+1:44.295,5990401,43,15,01:46.0,188.672,1 +22077,897,807,15,11,5,14,14,14,0,54,,,52,12,01:45.6,189.394,11 +22078,897,822,3,17,15,15,15,15,0,54,,,54,4,01:44.4,191.607,11 +22079,897,817,5,19,9,16,16,16,0,54,,,46,16,01:46.0,188.551,11 +22080,897,818,5,18,13,17,17,17,0,54,,,53,7,01:44.5,191.302,11 +22081,897,823,207,21,18,18,18,18,0,54,,,48,19,01:46.6,187.578,11 +22082,897,819,207,20,19,19,19,19,0,54,,,50,18,01:46.4,187.86,11 +22083,897,824,206,22,21,20,20,20,0,53,,,52,20,01:47.6,185.788,12 +22084,897,820,206,23,20,21,21,21,0,53,,,52,21,01:47.7,185.636,12 +22085,897,8,208,7,22,,R,22,0,0,,,,0,,,3 +22086,898,20,9,1,1,1,1,1,25,56,39:17.1,5957148,54,1,01:39.9,198.754,1 +22087,898,154,208,8,3,2,2,2,18,56,6.284,5963432,52,2,01:40.4,197.588,1 +22088,898,17,9,2,2,3,3,3,15,56,8.396,5965544,52,4,01:40.6,197.301,1 +22089,898,1,131,10,5,4,4,4,12,56,27.358,5984506,50,5,01:40.8,196.857,1 +22090,898,4,6,3,6,5,5,5,10,56,29.592,5986740,52,10,01:41.2,196.141,1 +22091,898,807,15,11,4,6,6,6,8,56,30.4,5987548,54,6,01:41.0,196.596,1 +22092,898,815,1,6,7,7,7,7,6,56,46.692,6003840,47,15,01:41.8,194.901,1 +22093,898,822,3,17,9,8,8,8,4,56,54.509,6011657,54,3,01:40.5,197.496,1 +22094,898,3,131,9,12,9,9,9,2,56,59.141,6016289,51,8,01:41.1,196.244,1 +22095,898,18,1,5,15,10,10,10,1,56,+1:17.278,6034426,50,12,01:41.3,195.95,1 +22096,898,817,5,19,10,11,11,11,0,56,+1:21.004,6038152,45,16,01:42.1,194.349,1 +22097,898,818,5,18,14,12,12,12,0,56,+1:24.574,6041722,52,13,01:41.3,195.882,1 +22098,898,13,6,4,13,13,13,13,0,56,+1:26.914,6044062,53,11,01:41.2,196.097,1 +22099,898,821,15,12,20,14,14,14,0,56,+1:31.707,6048855,51,14,01:41.4,195.725,1 +22100,898,5,208,7,8,15,15,15,0,56,+1:35.063,6052211,52,7,01:41.0,196.448,1 +22101,898,814,10,14,11,16,16,16,0,56,+1:36.853,6054001,54,9,01:41.1,196.215,1 +22102,898,813,3,16,17,17,17,17,0,55,,,42,17,01:43.1,192.578,11 +22103,898,824,206,22,19,18,18,18,0,55,,,45,18,01:43.4,191.906,11 +22104,898,823,207,21,18,19,19,19,0,55,,,45,20,01:43.9,190.957,11 +22105,898,819,207,20,22,20,20,20,0,55,,,48,21,01:44.0,190.893,11 +22106,898,820,206,23,21,21,21,21,0,54,,,48,19,01:43.8,191.248,12 +22107,898,16,10,15,16,,R,22,0,0,,,,0,,,3 +22108,899,20,9,1,1,1,1,1,25,71,32:36.3,5556300,51,3,01:15.6,205.125,1 +22109,899,17,9,2,4,2,2,2,18,71,10.452,5566752,51,1,01:15.4,205.636,1 +22110,899,4,6,3,3,3,3,3,15,71,18.913,5575213,50,2,01:15.5,205.473,1 +22111,899,18,1,5,14,4,4,4,12,71,37.36,5593660,52,7,01:16.5,202.909,1 +22112,899,3,131,9,2,5,5,5,10,71,39.048,5595348,60,6,01:16.4,202.93,1 +22113,899,815,1,6,19,6,6,6,8,71,44.051,5600351,50,5,01:16.2,203.451,1 +22114,899,13,6,4,9,7,7,7,6,71,49.11,5605410,49,8,01:16.5,202.856,1 +22115,899,807,15,11,10,8,8,8,4,71,+1:04.252,5620552,49,12,01:16.8,201.979,1 +22116,899,1,131,10,5,9,9,9,2,71,+1:12.903,5629203,51,10,01:16.7,202.268,1 +22117,899,817,5,19,7,10,10,10,1,70,,,45,15,01:17.0,201.527,11 +22118,899,814,10,14,12,11,11,11,0,70,,,58,14,01:16.9,201.839,11 +22119,899,821,15,12,17,12,12,12,0,70,,,59,9,01:16.5,202.702,11 +22120,899,16,10,15,15,13,13,13,0,70,,,57,4,01:16.0,203.979,11 +22121,899,5,208,7,11,14,14,14,0,70,,,70,16,01:17.2,200.81,11 +22122,899,818,5,18,8,15,15,15,0,70,,,49,11,01:16.8,202.01,11 +22123,899,813,3,16,16,16,16,16,0,70,,,45,18,01:17.6,200.02,11 +22124,899,824,206,22,21,17,17,17,0,69,,,67,20,01:17.7,199.601,12 +22125,899,823,207,21,20,18,18,18,0,69,,,51,19,01:17.6,199.927,12 +22126,899,820,206,23,22,19,19,19,0,69,,,68,17,01:17.3,200.727,12 +22127,899,819,207,20,18,,R,20,0,58,,,27,21,01:18.4,197.776,26 +22128,899,822,3,17,13,,R,21,0,45,,,43,13,01:16.8,201.879,3 +22129,899,154,208,8,6,,R,22,0,2,,,2,22,01:20.9,191.752,5 +22130,900,3,131,6,3,1,1,1,25,57,32:58.7,5578710,19,1,01:32.5,206.436,1 +22131,900,825,1,20,4,2,2,2,18,57,26.777,5605487,49,6,01:33.1,205.131,1 +22132,900,18,1,22,10,3,3,3,15,57,30.027,5608737,39,5,01:32.9,205.46,1 +22133,900,4,6,14,5,4,4,4,12,57,35.284,5613994,57,7,01:33.2,204.867,1 +22134,900,822,3,77,15,5,5,5,10,57,47.639,5626349,56,3,01:32.6,206.128,1 +22135,900,807,10,27,7,6,6,6,8,57,50.718,5629428,56,2,01:32.6,206.235,1 +22136,900,8,6,7,11,7,7,7,6,57,57.675,5636385,56,8,01:33.2,204.814,1 +22137,900,818,5,25,6,8,8,8,4,57,+1:00.441,5639151,56,10,01:33.7,203.763,1 +22138,900,826,5,26,8,9,9,9,2,57,+1:03.585,5642295,35,11,01:33.9,203.387,1 +22139,900,815,10,11,16,10,10,10,1,57,+1:25.916,5664626,38,4,01:32.6,206.088,1 +22140,900,16,15,99,13,11,11,11,0,56,,,34,9,01:33.4,204.472,11 +22141,900,821,15,21,20,12,12,12,0,56,,,41,13,01:34.6,201.882,11 +22142,900,820,206,4,17,13,13,13,0,55,,,33,12,01:34.2,202.658,12 +22143,900,824,206,17,18,,N,14,0,49,,,55,16,01:35.6,199.621,18 +22144,900,154,208,8,22,,R,15,0,43,,,41,15,01:35.3,200.363,132 +22145,900,813,208,13,21,,R,16,0,29,,,30,14,01:34.8,201.451,132 +22146,900,828,207,9,19,,R,17,0,27,,,17,18,01:37.3,196.141,51 +22147,900,20,9,1,12,,R,18,0,3,,,26,17,01:37.1,196.682,5 +22148,900,1,131,44,1,,R,19,0,2,,,2,20,01:49.9,173.636,5 +22149,900,13,3,19,9,,R,20,0,0,,,2,19,01:40.3,190.361,4 +22150,900,155,207,10,14,,R,21,0,0,,,,0,,,4 +22151,900,817,9,3,2,,D,22,0,57,24.525,5603235,,0,,,2 +22152,901,1,131,44,1,1,1,1,25,56,40:26.0,6025974,53,1,01:43.1,193.611,1 +22153,901,3,131,6,3,2,2,2,18,56,17.313,6043287,55,2,01:44.0,191.946,1 +22154,901,20,9,1,2,3,3,3,15,56,24.534,6050508,51,4,01:44.3,191.341,1 +22155,901,4,6,14,4,4,4,4,12,56,35.992,6061966,47,3,01:44.2,191.569,1 +22156,901,807,10,27,7,5,5,5,10,56,47.199,6073173,38,10,01:46.0,188.284,1 +22157,901,18,1,22,10,6,6,6,8,56,+1:23.691,6109665,47,11,01:46.0,188.183,1 +22158,901,13,3,19,13,7,7,7,6,56,+1:25.076,6111050,44,6,01:44.9,190.232,1 +22159,901,822,3,77,18,8,8,8,4,56,+1:25.537,6111511,31,9,01:45.5,189.189,1 +22160,901,825,1,20,8,9,9,9,2,55,,,44,8,01:45.4,189.372,11 +22161,901,826,5,26,11,10,10,10,1,55,,,36,13,01:46.7,187.026,11 +22162,901,154,208,8,15,11,11,11,0,55,,,42,12,01:46.2,187.855,11 +22163,901,8,6,7,6,12,12,12,0,55,,,36,7,01:45.1,189.812,11 +22164,901,155,207,10,20,13,13,13,0,55,,,53,15,01:47.8,185.19,11 +22165,901,828,207,9,22,14,14,14,0,54,,,40,14,01:47.5,185.626,12 +22166,901,820,206,4,21,15,15,15,0,54,,,49,18,01:48.2,184.341,12 +22167,901,817,9,3,5,,R,16,0,49,,,48,5,01:44.7,190.635,39 +22168,901,821,15,21,12,,R,17,0,35,,,27,16,01:47.8,185.14,6 +22169,901,16,15,99,17,,R,18,0,32,,,27,17,01:48.0,184.698,10 +22170,901,818,5,25,9,,R,19,0,18,,,4,19,01:48.5,183.869,131 +22171,901,824,206,17,19,,R,20,0,8,,,4,21,01:51.5,179.01,23 +22172,901,813,208,13,16,,R,21,0,7,,,6,20,01:50.9,179.888,5 +22173,901,815,10,11,14,,W,22,0,0,,,,0,,,54 +22174,902,1,131,44,2,1,1,1,25,57,39:42.7,5982743,49,2,01:37.1,200.634,1 +22175,902,3,131,6,1,2,2,2,18,57,1.085,5983828,49,1,01:37.0,200.816,1 +22176,902,815,10,11,4,3,3,3,15,57,24.067,6006810,36,7,01:39.3,196.165,1 +22177,902,817,9,3,13,4,4,4,12,57,24.489,6007232,38,4,01:39.3,196.266,1 +22178,902,807,10,27,11,5,5,5,10,57,28.654,6011397,37,3,01:38.8,197.228,1 +22179,902,20,9,1,10,6,6,6,8,57,29.879,6012622,18,6,01:39.3,196.181,1 +22180,902,13,3,19,7,7,7,7,6,57,31.265,6014008,40,5,01:39.3,196.26,1 +22181,902,822,3,77,3,8,8,8,4,57,31.876,6014619,50,13,01:39.8,195.296,1 +22182,902,4,6,14,9,9,9,9,2,57,32.595,6015338,53,12,01:39.7,195.355,1 +22183,902,8,6,7,5,10,10,10,1,57,33.462,6016205,35,8,01:39.4,195.933,1 +22184,902,826,5,26,12,11,11,11,0,57,41.342,6024085,12,15,01:40.2,194.52,1 +22185,902,154,208,8,16,12,12,12,0,57,43.143,6025886,39,9,01:39.4,195.923,1 +22186,902,820,206,4,21,13,13,13,0,57,59.909,6042652,48,21,01:41.8,191.34,1 +22187,902,813,208,13,17,14,14,14,0,57,+1:02.803,6045546,52,11,01:39.7,195.484,1 +22188,902,155,207,10,18,15,15,15,0,57,+1:27.900,6070643,17,18,01:41.2,192.434,1 +22189,902,824,206,17,19,16,16,16,0,56,,,44,22,01:42.2,190.684,11 +22190,902,18,1,22,6,17,17,17,0,55,,,37,10,01:39.6,195.683,8 +22191,902,825,1,20,8,,R,18,0,40,,,40,14,01:40.1,194.621,8 +22192,902,821,15,21,15,,R,19,0,39,,,32,16,01:40.7,193.481,4 +22193,902,828,207,9,20,,R,20,0,33,,,28,17,01:41.1,192.647,31 +22194,902,818,5,25,14,,R,21,0,18,,,16,19,01:41.7,191.669,31 +22195,902,16,15,99,22,,R,22,0,17,,,9,20,01:41.8,191.403,4 +22196,903,1,131,44,1,1,1,1,25,54,33:28.3,5608338,42,2,01:41.2,193.916,1 +22197,903,3,131,6,4,2,2,2,18,54,18.062,5626400,39,1,01:40.4,195.45,1 +22198,903,4,6,14,5,3,3,3,15,54,23.604,5631942,48,4,01:42.1,192.235,1 +22199,903,817,9,3,2,4,4,4,12,54,27.136,5635474,39,3,01:41.5,193.387,1 +22200,903,20,9,1,3,5,5,5,10,54,47.778,5656116,37,5,01:42.2,192.07,1 +22201,903,807,10,27,8,6,6,6,8,54,54.295,5662633,33,10,01:42.6,191.218,1 +22202,903,822,3,77,7,7,7,7,6,54,55.697,5664035,52,11,01:42.7,191.151,1 +22203,903,8,6,7,11,8,8,8,4,54,+1:16.335,5684673,34,8,01:42.3,191.824,1 +22204,903,815,10,11,16,9,9,9,2,54,+1:22.647,5690985,32,6,01:42.2,191.959,1 +22205,903,826,5,26,13,10,10,10,1,53,,,33,17,01:43.3,189.899,11 +22206,903,18,1,22,12,11,11,11,0,53,,,30,18,01:43.4,189.829,11 +22207,903,818,5,25,9,12,12,12,0,53,,,34,14,01:42.9,190.712,11 +22208,903,825,1,20,15,13,13,13,0,53,,,33,12,01:42.7,191.075,11 +22209,903,813,208,13,22,14,14,14,0,53,,,34,15,01:43.1,190.396,11 +22210,903,13,3,19,6,15,15,15,0,53,,,34,9,01:42.4,191.676,11 +22211,903,821,15,21,17,16,16,16,0,53,,,42,7,01:42.3,191.904,11 +22212,903,824,206,17,19,17,17,17,0,53,,,36,21,01:44.8,187.203,11 +22213,903,155,207,10,18,18,18,18,0,53,,,48,16,01:43.3,189.924,11 +22214,903,820,206,4,21,19,19,19,0,52,,,50,13,01:42.9,190.751,12 +22215,903,828,207,9,20,20,20,20,0,52,,,30,19,01:43.6,189.38,12 +22216,903,154,208,8,10,,R,21,0,28,,,4,20,01:44.4,188.026,6 +22217,903,16,15,99,14,,R,22,0,5,,,2,22,01:58.4,165.773,5 +22218,904,1,131,44,1,1,1,1,25,66,41:05.2,6065155,54,3,01:29.5,187.275,1 +22219,904,3,131,6,2,2,2,2,18,66,0.636,6065791,51,2,01:29.2,187.794,1 +22220,904,817,9,3,3,3,3,3,15,66,49.014,6114169,65,5,01:30.0,186.175,1 +22221,904,20,9,1,15,4,4,4,12,66,+1:16.702,6141857,55,1,01:28.9,188.465,1 +22222,904,822,3,77,4,5,5,5,10,66,+1:19.293,6144448,47,8,01:30.4,185.326,1 +22223,904,4,6,14,7,6,6,6,8,66,+1:27.743,6152898,55,4,01:29.9,186.411,1 +22224,904,8,6,7,6,7,7,7,6,65,,,53,11,01:30.6,185.007,11 +22225,904,154,208,8,5,8,8,8,4,65,,,47,14,01:31.1,184.016,11 +22226,904,815,10,11,11,9,9,9,2,65,,,39,13,01:30.8,184.648,11 +22227,904,807,10,27,10,10,10,10,1,65,,,42,16,01:31.4,183.325,11 +22228,904,18,1,22,8,11,11,11,0,65,,,43,10,01:30.6,185.042,11 +22229,904,825,1,20,14,12,12,12,0,65,,,43,7,01:30.3,185.544,11 +22230,904,13,3,19,9,13,13,13,0,65,,,55,9,01:30.5,185.236,11 +22231,904,826,5,26,12,14,14,14,0,65,,,59,6,01:30.3,185.645,11 +22232,904,813,208,13,22,15,15,15,0,65,,,39,15,01:31.2,183.679,11 +22233,904,821,15,21,13,16,16,16,0,65,,,55,12,01:30.7,184.832,11 +22234,904,16,15,99,16,17,17,17,0,65,,,38,17,01:31.5,183.201,11 +22235,904,824,206,17,18,18,18,18,0,64,,,46,20,01:31.8,182.58,12 +22236,904,820,206,4,17,19,19,19,0,64,,,44,18,01:31.8,182.614,12 +22237,904,828,207,9,19,20,20,20,0,64,,,54,22,01:33.4,179.517,12 +22238,904,155,207,10,20,,R,21,0,34,,,25,21,01:33.1,180.069,23 +22239,904,818,5,25,21,,R,22,0,24,,,18,19,01:31.8,182.586,43 +22240,905,3,131,6,1,1,1,1,25,78,49:27.7,6567661,33,4,01:19.4,151.388,1 +22241,905,1,131,44,2,2,2,2,18,78,9.21,6576871,34,3,01:19.4,151.51,1 +22242,905,817,9,3,3,3,3,3,15,78,9.614,6577275,70,2,01:19.3,151.718,1 +22243,905,4,6,14,5,4,4,4,12,78,32.452,6600113,54,5,01:19.7,150.814,1 +22244,905,807,10,27,11,5,5,5,10,77,,,38,9,01:20.8,148.872,11 +22245,905,18,1,22,12,6,6,6,8,77,,,42,12,01:21.0,148.358,11 +22246,905,13,3,19,16,7,7,7,6,77,,,48,6,01:20.3,149.712,11 +22247,905,154,208,8,14,8,8,8,4,77,,,53,11,01:21.0,148.482,11 +22248,905,824,206,17,21,9,9,9,2,77,,,42,16,01:21.3,147.98,11 +22249,905,825,1,20,8,10,10,10,1,77,,,75,8,01:20.7,149.075,11 +22250,905,828,207,9,22,11,11,11,0,77,,,53,10,01:20.9,148.607,11 +22251,905,8,6,7,6,12,12,12,0,77,,,75,1,01:18.5,153.212,11 +22252,905,155,207,10,20,13,13,13,0,75,,,16,19,01:22.4,145.878,12 +22253,905,820,206,4,19,14,14,14,0,75,,,69,7,01:20.6,149.22,13 +22254,905,821,15,21,17,,R,15,0,59,,,41,15,01:21.1,148.177,3 +22255,905,822,3,77,13,,R,16,0,55,,,50,14,01:21.1,148.252,5 +22256,905,818,5,25,7,,R,17,0,50,,,35,13,01:21.1,148.292,5 +22257,905,16,15,99,18,,R,18,0,23,,,23,17,01:21.8,147.062,3 +22258,905,826,5,26,9,,R,19,0,10,,,8,18,01:22.0,146.614,26 +22259,905,20,9,1,4,,R,20,0,5,,,3,20,01:59.5,100.615,101 +22260,905,815,10,11,10,,R,21,0,0,,,,0,,,4 +22261,905,813,208,13,15,,W,22,0,0,,,,0,,,54 +22262,906,817,9,3,6,1,1,1,25,70,39:12.8,5952830,68,4,01:18.6,199.638,1 +22263,906,3,131,6,1,2,2,2,18,70,4.236,5957066,33,7,01:18.9,199.028,1 +22264,906,20,9,1,3,3,3,3,15,70,5.247,5958077,48,10,01:19.2,198.299,1 +22265,906,18,1,22,9,4,4,4,12,70,11.755,5964585,64,5,01:18.8,199.337,1 +22266,906,807,10,27,11,5,5,5,10,70,12.843,5965673,64,8,01:18.9,198.89,1 +22267,906,4,6,14,7,6,6,6,8,70,14.869,5967699,64,3,01:18.6,199.704,1 +22268,906,822,3,77,4,7,7,7,6,70,23.578,5976408,52,11,01:19.3,197.924,1 +22269,906,818,5,25,8,8,8,8,4,70,28.026,5980856,56,12,01:19.4,197.73,1 +22270,906,825,1,20,12,9,9,9,2,70,29.254,5982084,56,6,01:18.8,199.185,1 +22271,906,8,6,7,10,10,10,10,1,70,53.678,6006508,68,2,01:18.5,199.921,1 +22272,906,815,10,11,13,11,11,11,0,69,,,63,13,01:19.5,197.501,4 +22273,906,13,3,19,5,12,12,12,0,69,,,58,1,01:18.5,199.984,4 +22274,906,16,15,99,16,13,13,13,0,69,,,66,17,01:20.2,195.692,11 +22275,906,821,15,21,22,14,14,14,0,64,,,51,16,01:20.1,195.97,132 +22276,906,154,208,8,14,,R,15,0,59,,,54,14,01:19.7,197.107,65 +22277,906,826,5,26,15,,R,16,0,47,,,43,15,01:20.0,196.298,79 +22278,906,1,131,44,2,,R,17,0,46,,,24,9,01:18.9,198.875,23 +22279,906,155,207,10,21,,R,18,0,23,,,20,19,01:23.1,188.856,22 +22280,906,813,208,13,17,,R,19,0,21,,,21,18,01:21.5,192.6,131 +22281,906,828,207,9,20,,R,20,0,7,,,7,20,01:51.0,141.385,101 +22282,906,820,206,4,18,,R,21,0,0,,,,0,,,4 +22283,906,824,206,17,19,,R,22,0,0,,,,0,,,4 +22284,907,3,131,6,3,1,1,1,25,71,27:55.0,5274976,50,6,01:12.6,214.518,1 +22285,907,1,131,44,9,2,2,2,18,71,1.932,5276908,41,2,01:12.2,215.65,1 +22286,907,822,3,77,2,3,3,3,15,71,8.172,5283148,63,3,01:12.6,214.568,1 +22287,907,13,3,19,1,4,4,4,12,71,17.358,5292334,63,4,01:12.6,214.553,1 +22288,907,4,6,14,4,5,5,5,10,71,18.553,5293529,58,5,01:12.6,214.527,1 +22289,907,815,10,11,15,6,6,6,8,71,28.546,5303522,59,1,01:12.1,215.874,1 +22290,907,825,1,20,6,7,7,7,6,71,32.031,5307007,53,7,01:12.7,214.081,1 +22291,907,817,9,3,5,8,8,8,4,71,43.522,5318498,55,10,01:13.1,213.161,1 +22292,907,807,10,27,10,9,9,9,2,71,44.137,5319113,60,11,01:13.2,212.882,1 +22293,907,8,6,7,8,10,10,10,1,71,47.777,5322753,55,9,01:12.9,213.676,1 +22294,907,18,1,22,11,11,11,11,0,71,50.966,5325942,60,8,01:12.9,213.752,1 +22295,907,813,208,13,13,12,12,12,0,70,,,64,12,01:13.2,212.791,11 +22296,907,16,15,99,16,13,13,13,0,70,,,59,14,01:13.7,211.284,11 +22297,907,154,208,8,22,14,14,14,0,70,,,42,15,01:14.0,210.587,11 +22298,907,824,206,17,18,15,15,15,0,69,,,65,19,01:14.5,209.108,12 +22299,907,155,207,10,19,16,16,16,0,69,,,40,22,01:15.3,206.892,12 +22300,907,820,206,4,21,17,17,17,0,69,,,40,21,01:14.8,208.072,12 +22301,907,828,207,9,20,18,18,18,0,69,,,33,20,01:14.7,208.56,12 +22302,907,821,15,21,17,19,19,19,0,69,,,53,16,01:14.0,210.351,12 +22303,907,818,5,25,14,,R,20,0,59,,,55,13,01:13.3,212.414,23 +22304,907,20,9,1,12,,R,21,0,34,,,30,17,01:14.3,209.734,10 +22305,907,826,5,26,7,,R,22,0,24,,,23,18,01:14.3,209.514,22 +22306,908,1,131,44,6,1,1,1,25,52,26:52.1,8812094,26,1,01:37.2,218.239,1 +22307,908,822,3,77,14,2,2,2,18,52,30.135,8842229,34,4,01:38.3,215.822,1 +22308,908,817,9,3,8,3,3,3,15,52,46.495,8858589,34,7,01:38.5,215.395,1 +22309,908,18,1,22,3,4,4,4,12,52,47.39,8859484,52,5,01:38.3,215.778,1 +22310,908,20,9,1,2,5,5,5,10,52,53.864,8865958,52,2,01:37.5,217.556,1 +22311,908,4,6,14,16,6,6,6,8,52,59.946,8872040,52,8,01:38.6,215.115,1 +22312,908,825,1,20,5,7,7,7,6,52,+1:02.563,8874657,32,10,01:38.7,214.919,1 +22313,908,807,10,27,4,8,8,8,4,52,+1:28.692,8900786,52,9,01:38.6,215.032,1 +22314,908,826,5,26,9,9,9,9,2,52,+1:29.340,8901434,45,6,01:38.4,215.509,1 +22315,908,818,5,25,10,10,10,10,1,51,,,44,13,01:39.3,213.654,11 +22316,908,815,10,11,7,11,11,11,0,51,,,41,11,01:38.7,214.834,11 +22317,908,154,208,8,11,12,12,12,0,51,,,48,12,01:38.9,214.393,11 +22318,908,16,15,99,13,13,13,13,0,51,,,34,15,01:40.0,211.989,11 +22319,908,824,206,17,12,14,14,14,0,51,,,51,14,01:40.0,212.158,11 +22320,908,155,207,10,22,15,15,15,0,50,,,31,18,01:41.5,209.02,12 +22321,908,820,206,4,17,16,16,16,0,50,,,50,17,01:40.4,211.233,12 +22322,908,813,208,13,20,17,17,17,0,49,,,48,16,01:40.3,211.412,13 +22323,908,3,131,6,1,,R,18,0,28,,,26,3,01:38.1,216.203,6 +22324,908,828,207,9,21,,R,19,0,11,,,7,20,01:44.3,203.295,22 +22325,908,821,15,21,19,,R,20,0,9,,,7,19,01:42.6,206.77,4 +22326,908,13,3,19,15,,R,21,0,0,,,,0,,,4 +22327,908,8,6,7,18,,R,22,0,0,,,,0,,,4 +22328,909,3,131,6,1,1,1,1,25,67,33:42.9,5622914,67,6,01:21.3,202.543,1 +22329,909,822,3,77,2,2,2,2,18,67,20.789,5643703,45,9,01:21.5,202.056,1 +22330,909,1,131,44,20,3,3,3,15,67,22.53,5645444,53,1,01:19.9,206.066,1 +22331,909,20,9,1,6,4,4,4,12,67,44.014,5666928,39,10,01:21.5,201.93,1 +22332,909,4,6,14,7,5,5,5,10,67,52.467,5675381,57,3,01:20.5,204.429,1 +22333,909,817,9,3,5,6,6,6,8,67,52.549,5675463,53,5,01:20.8,203.676,1 +22334,909,807,10,27,9,7,7,7,6,67,+1:04.178,5687092,44,13,01:22.1,200.57,1 +22335,909,18,1,22,11,8,8,8,4,67,+1:24.711,5707625,64,8,01:21.3,202.424,1 +22336,909,825,1,20,4,9,9,9,2,66,,,56,2,01:20.2,205.255,11 +22337,909,815,10,11,10,10,10,10,1,66,,,54,4,01:20.8,203.913,11 +22338,909,8,6,7,12,11,11,11,0,66,,,55,7,01:21.3,202.444,11 +22339,909,813,208,13,18,12,12,12,0,66,,,41,15,01:22.3,200.065,11 +22340,909,818,5,25,13,13,13,13,0,66,,,58,11,01:21.9,201.113,11 +22341,909,821,15,21,16,14,14,14,0,66,,,61,12,01:22.0,200.79,11 +22342,909,824,206,17,17,15,15,15,0,66,,,57,16,01:22.5,199.539,11 +22343,909,155,207,10,19,16,16,16,0,65,,,50,18,01:22.9,198.711,12 +22344,909,820,206,4,21,17,17,17,0,65,,,50,19,01:23.0,198.306,12 +22345,909,828,207,9,22,18,18,18,0,65,,,49,20,01:23.2,197.842,12 +22346,909,16,15,99,15,,R,19,0,47,,,41,17,01:22.5,199.522,23 +22347,909,826,5,26,8,,R,20,0,44,,,34,14,01:22.2,200.372,44 +22348,909,154,208,8,14,,R,21,0,26,,,26,21,01:24.1,195.709,47 +22349,909,13,3,19,3,,R,22,0,0,,,,0,,,4 +22350,910,817,9,3,4,1,1,1,25,70,53:05.1,6785058,58,2,01:26.6,182.103,1 +22351,910,4,6,14,5,2,2,2,18,70,5.225,6790283,40,5,01:27.4,180.413,1 +22352,910,1,131,44,22,3,3,3,15,70,5.857,6790915,36,4,01:27.4,180.494,1 +22353,910,3,131,6,1,4,4,4,12,70,+6.361s,6791419,64,1,01:25.7,183.981,1 +22354,910,13,3,19,6,5,5,5,10,70,29.841,6814899,51,7,01:28.2,178.757,1 +22355,910,8,6,7,16,6,6,6,8,70,31.491,6816549,47,6,01:28.0,179.257,1 +22356,910,20,9,1,2,7,7,7,6,70,40.964,6826022,52,9,01:28.7,177.716,1 +22357,910,822,3,77,3,8,8,8,4,70,41.344,6826402,63,3,01:26.9,181.595,1 +22358,910,818,5,25,8,9,9,9,2,70,58.527,6843585,31,11,01:29.1,176.97,1 +22359,910,18,1,22,7,10,10,10,1,70,+1:07.280,6852338,50,13,01:29.2,176.898,1 +22360,910,16,15,99,11,11,11,11,0,70,+1:08.169,6853227,41,8,01:28.7,177.8,1 +22361,910,825,1,20,21,12,12,12,0,70,+1:18.465,6863523,41,10,01:28.9,177.442,1 +22362,910,813,208,13,20,13,13,13,0,70,+1:24.024,6869082,45,12,01:29.1,176.954,1 +22363,910,826,5,26,10,14,14,14,0,69,,,51,14,01:29.4,176.414,11 +22364,910,824,206,17,15,15,15,15,0,69,,,49,16,01:29.9,175.468,11 +22365,910,820,206,4,18,16,16,16,0,69,,,47,15,01:29.5,176.22,11 +22366,910,821,15,21,13,,R,17,0,33,,,29,18,01:30.5,174.3,31 +22367,910,155,207,10,17,,R,18,0,26,,,21,19,01:32.9,169.791,31 +22368,910,815,10,11,12,,R,19,0,23,,,21,17,01:30.3,174.696,3 +22369,910,807,10,27,9,,R,20,0,16,,,14,20,01:41.2,155.921,3 +22370,910,154,208,8,14,,R,21,0,11,,,7,21,01:46.3,148.352,3 +22371,910,828,207,9,19,,R,22,0,8,,,6,22,01:48.5,145.415,3 +22373,911,817,9,3,5,1,1,1,25,44,24:36.6,5076556,44,6,01:53.0,223.187,1 +22374,911,3,131,6,1,2,2,2,18,44,3.383,5079939,36,1,01:50.5,228.161,1 +22375,911,822,3,77,6,3,3,3,15,44,28.032,5104588,40,4,01:52.7,223.698,1 +22376,911,8,6,7,8,4,4,4,12,44,36.815,5113371,39,13,01:54.1,221.004,1 +22377,911,20,9,1,3,5,5,5,10,44,52.196,5128752,36,5,01:53.0,223.229,1 +22378,911,18,1,22,10,6,6,6,8,44,54.58,5131136,38,8,01:53.5,222.186,1 +22379,911,4,6,14,4,7,7,7,6,44,+1:01.162,5137718,29,11,01:53.9,221.413,1 +22380,911,815,10,11,13,8,8,8,4,44,+1:04.293,5140849,28,16,01:54.5,220.151,1 +22381,911,826,5,26,11,9,9,9,2,44,+1:05.347,5141903,26,14,01:54.2,220.87,1 +22382,911,807,10,27,18,10,10,10,1,44,+1:05.697,5142253,40,9,01:53.6,221.934,1 +22383,911,818,5,25,12,11,11,11,0,44,+1:11.920,5148476,31,7,01:53.3,222.592,1 +22384,911,825,1,20,7,12,12,12,0,44,+1:14.262,5150818,28,15,01:54.2,220.785,1 +22385,911,13,3,19,9,13,13,13,0,44,+1:15.975,5152531,37,3,01:52.5,224.104,1 +22386,911,16,15,99,14,14,14,14,0,44,+1:22.447,5159003,36,2,01:52.4,224.301,1 +22387,911,821,15,21,20,15,15,15,0,44,+1:30.825,5167381,32,12,01:54.0,221.178,1 +22388,911,820,206,4,19,16,16,16,0,43,,,31,17,01:55.2,218.785,11 +22389,911,828,207,9,22,17,17,17,0,43,,,26,19,01:55.9,217.553,11 +22390,911,824,206,17,16,18,18,18,0,39,,,32,20,01:56.3,216.717,6 +22391,911,1,131,44,2,,R,19,0,38,,,33,10,01:53.7,221.748,31 +22392,911,154,208,8,15,,R,20,0,33,,,21,18,01:55.6,218.025,31 +22393,911,813,208,13,17,,R,21,0,1,,,,0,,,26 +22394,911,827,207,45,21,,R,22,0,1,,,,0,,,131 +22395,912,1,131,44,1,1,1,1,25,53,19:10.2,4750236,29,1,01:28.0,236.975,1 +22396,912,3,131,6,2,2,2,2,18,53,3.175,4753411,51,2,01:28.2,236.432,1 +22397,912,13,3,19,4,3,3,3,15,53,25.026,4775262,46,3,01:28.3,236.068,1 +22398,912,822,3,77,3,4,4,4,12,53,40.786,4791022,50,5,01:28.6,235.49,1 +22399,912,817,9,3,9,5,5,5,10,53,50.309,4800545,53,6,01:28.6,235.413,1 +22400,912,20,9,1,8,6,6,6,8,53,59.965,4810201,34,10,01:29.1,233.952,1 +22401,912,815,10,11,10,7,7,7,6,53,+1:02.518,4812754,35,8,01:29.1,234.042,1 +22402,912,18,1,22,6,8,8,8,4,53,+1:03.063,4813299,35,11,01:29.2,233.68,1 +22403,912,8,6,7,11,9,9,9,2,53,+1:03.535,4813771,43,7,01:28.9,234.476,1 +22404,912,825,1,20,5,10,10,10,1,53,+1:06.171,4816407,34,12,01:29.3,233.58,1 +22405,912,826,5,26,21,11,11,11,0,53,+1:11.184,4821420,51,4,01:28.5,235.684,1 +22406,912,807,10,27,13,12,12,12,0,53,+1:12.606,4822842,35,13,01:29.4,233.363,1 +22407,912,818,5,25,12,13,13,13,0,53,+1:13.093,4823329,39,9,01:29.1,234.005,1 +22408,912,813,208,13,16,14,14,14,0,52,,,32,17,01:29.9,232.091,11 +22409,912,16,15,99,14,15,15,15,0,52,,,46,14,01:29.4,233.34,11 +22410,912,154,208,8,17,16,16,16,0,52,,,38,18,01:30.1,231.506,11 +22411,912,155,207,10,18,17,17,17,0,52,,,35,21,01:30.8,229.784,11 +22412,912,824,206,17,19,18,18,18,0,52,,,51,20,01:30.5,230.386,11 +22413,912,821,15,21,15,19,19,19,0,51,,,40,15,01:29.4,233.147,12 +22414,912,828,207,9,22,20,20,20,0,51,,,47,19,01:30.3,231.001,12 +22415,912,4,6,14,7,,R,21,0,28,,,23,16,01:29.7,232.546,5 +22416,912,820,206,4,20,,R,22,0,5,,,5,22,01:32.6,225.289,3 +22417,913,1,131,44,1,1,1,1,25,60,00:04.8,7204795,39,1,01:50.4,165.137,1 +22418,913,20,9,1,4,2,2,2,18,60,13.534,7218329,27,8,01:52.5,162.052,1 +22419,913,817,9,3,3,3,3,3,15,60,14.273,7219068,30,9,01:52.6,161.98,1 +22420,913,4,6,14,5,4,4,4,12,60,15.389,7220184,27,6,01:52.1,162.636,1 +22421,913,13,3,19,6,5,5,5,10,60,42.161,7246956,27,13,01:53.3,160.959,1 +22422,913,818,5,25,12,6,6,6,8,60,56.801,7261596,48,4,01:51.9,162.895,1 +22423,913,815,10,11,15,7,7,7,6,60,59.038,7263833,46,5,01:52.0,162.793,1 +22424,913,8,6,7,7,8,8,8,4,60,+1:00.641,7265436,28,11,01:52.9,161.545,1 +22425,913,807,10,27,13,9,9,9,2,60,+1:01.661,7266456,27,10,01:52.8,161.703,1 +22426,913,825,1,20,9,10,10,10,1,60,+1:02.230,7267025,48,2,01:51.6,163.33,1 +22427,913,822,3,77,8,11,11,11,0,60,+1:05.065,7269860,25,7,01:52.5,162.058,1 +22428,913,813,208,13,18,12,12,12,0,60,+1:06.915,7271710,26,12,01:53.2,161.059,1 +22429,913,154,208,8,16,13,13,13,0,60,+1:08.029,7272824,25,15,01:53.5,160.591,1 +22430,913,826,5,26,10,14,14,14,0,60,+1:12.008,7276803,45,3,01:51.8,163.151,1 +22431,913,828,207,9,22,15,15,15,0,60,+1:34.188,7298983,14,19,01:55.4,157.985,1 +22432,913,824,206,17,19,16,16,16,0,60,+1:34.543,7299338,47,14,01:53.5,160.598,1 +22433,913,820,206,4,21,17,17,17,0,59,,,43,17,01:53.8,160.218,11 +22434,913,18,1,22,11,,R,18,0,52,,,16,16,01:53.7,160.359,31 +22435,913,16,15,99,17,,R,19,0,40,,,10,18,01:53.9,160.02,34 +22436,913,821,15,21,14,,R,20,0,17,,,6,20,01:55.7,157.619,10 +22437,913,3,131,6,2,,R,21,0,13,,,5,21,01:56.8,156.154,10 +22438,913,155,207,10,20,,W,22,0,0,,,,0,,,131 +22439,914,1,131,44,2,1,1,1,25,44,51:43.0,6703021,39,1,01:51.6,187.322,1 +22440,914,3,131,6,1,2,2,2,18,44,9.18,6712201,15,6,01:52.6,185.739,1 +22441,914,20,9,1,9,3,3,3,15,44,29.122,6732143,32,3,01:51.9,186.795,1 +22442,914,817,9,3,6,4,4,4,12,44,38.818,6741839,38,4,01:52.2,186.269,1 +22443,914,18,1,22,8,5,5,5,10,44,+1:07.550,6770571,33,2,01:51.7,187.119,1 +22444,914,822,3,77,3,6,6,6,8,44,+1:53.773,6816794,41,13,01:54.1,183.213,1 +22445,914,13,3,19,4,7,7,7,6,44,+1:55.126,6818147,39,8,01:53.5,184.267,1 +22446,914,807,10,27,13,8,8,8,4,44,+1:55.948,6818969,28,7,01:52.8,185.306,1 +22447,914,818,5,25,20,9,9,9,2,44,+2:07.638,6830659,35,11,01:53.6,184.086,1 +22448,914,815,10,11,11,10,10,10,1,43,,,27,10,01:53.6,184.095,11 +22449,914,826,5,26,12,11,11,11,0,43,,,25,12,01:54.0,183.345,11 +22450,914,8,6,7,10,12,12,12,0,43,,,36,5,01:52.4,185.946,11 +22451,914,821,15,21,15,13,13,13,0,43,,,40,17,01:55.4,181.198,11 +22452,914,825,1,20,7,14,14,14,0,43,,,38,9,01:53.5,184.17,11 +22453,914,154,208,8,16,15,15,15,0,43,,,28,16,01:55.3,181.308,11 +22454,914,813,208,13,22,16,16,16,0,43,,,26,15,01:54.7,182.256,11 +22455,914,828,207,9,17,17,17,17,0,43,,,27,14,01:54.7,182.309,11 +22456,914,820,206,4,21,18,18,18,0,43,,,25,21,01:56.5,179.486,11 +22457,914,155,207,10,19,19,19,19,0,43,,,29,18,01:55.6,180.776,11 +22458,914,824,206,17,18,20,20,20,0,41,,,27,20,01:56.0,180.24,3 +22459,914,16,15,99,14,21,21,21,0,40,,,25,19,01:55.8,180.601,3 +22460,914,4,6,14,5,,R,22,0,2,,,,0,,,40 +22461,915,1,131,44,1,1,1,1,25,53,31:50.7,5510744,48,3,01:41.6,207.2,1 +22462,915,3,131,6,2,2,2,2,18,53,13.657,5524401,52,2,01:41.4,207.703,1 +22463,915,822,3,77,3,3,3,3,15,53,17.425,5528169,53,1,01:40.9,208.658,1 +22464,915,18,1,22,4,4,4,4,12,53,30.234,5540978,47,4,01:42.0,206.472,1 +22465,915,825,1,20,11,5,5,5,10,53,53.616,5564360,44,14,01:43.1,204.245,1 +22466,915,4,6,14,7,6,6,6,8,53,+1:00.016,5570760,53,6,01:42.2,206.038,1 +22467,915,817,9,3,6,7,7,7,6,53,+1:01.812,5572556,50,13,01:43.0,204.296,1 +22468,915,20,9,1,10,8,8,8,4,53,+1:06.185,5576929,53,8,01:42.6,205.133,1 +22469,915,8,6,7,8,9,9,9,2,53,+1:18.877,5589621,45,11,01:42.9,204.556,1 +22470,915,815,10,11,12,10,10,10,1,53,+1:20.067,5590811,47,12,01:42.9,204.547,1 +22471,915,13,3,19,18,11,11,11,0,53,+1:20.877,5591621,47,10,01:42.9,204.636,1 +22472,915,807,10,27,17,12,12,12,0,53,+1:21.309,5592053,50,9,01:42.7,205.023,1 +22473,915,818,5,25,9,13,13,13,0,53,+1:37.295,5608039,53,7,01:42.5,205.293,1 +22474,915,826,5,26,5,14,14,14,0,52,,,52,5,01:42.0,206.355,11 +22475,915,821,15,21,13,15,15,15,0,52,,,45,18,01:44.1,202.284,11 +22476,915,16,15,99,14,16,16,16,0,52,,,42,15,01:43.8,202.777,11 +22477,915,154,208,8,15,17,17,17,0,52,,,49,19,01:44.5,201.537,11 +22478,915,813,208,13,21,18,18,18,0,52,,,50,17,01:44.0,202.372,11 +22479,915,828,207,9,16,19,19,19,0,51,,,48,16,01:44.0,202.471,12 +22480,915,155,207,10,19,,R,20,0,21,,,17,20,01:47.4,196.009,23 +22481,915,820,206,4,20,,R,21,0,9,,,8,21,01:48.3,194.45,22 +22482,916,1,131,44,2,1,1,1,25,56,40:04.8,6004785,49,4,01:41.9,194.712,1 +22483,916,3,131,6,1,2,2,2,18,56,4.314,6009099,48,5,01:41.9,194.706,1 +22484,916,817,9,3,5,3,3,3,15,56,25.56,6030345,33,7,01:42.8,193.004,1 +22485,916,13,3,19,4,4,4,4,12,56,26.924,6031709,50,9,01:43.0,192.741,1 +22486,916,822,3,77,3,5,5,5,10,56,30.992,6035777,55,6,01:42.5,193.617,1 +22487,916,4,6,14,6,6,6,6,8,56,+1:35.231,6100016,47,2,01:41.5,195.585,1 +22488,916,20,9,1,18,7,7,7,6,56,+1:35.734,6100519,50,1,01:41.4,195.768,1 +22489,916,825,1,20,7,8,8,8,4,56,+1:40.682,6105467,29,14,01:44.3,190.309,1 +22490,916,818,5,25,14,10,10,10,1,56,+1:48.863,6113648,17,12,01:44.2,190.504,1 +22491,916,813,208,13,10,9,9,9,2,56,+1:47.870,6112655,38,11,01:43.8,191.187,1 +22492,916,154,208,8,16,11,11,11,0,55,,,51,15,01:44.4,190.03,11 +22493,916,18,1,22,12,12,12,12,0,55,,,33,13,01:44.3,190.367,11 +22494,916,8,6,7,8,13,13,13,0,55,,,54,8,01:42.9,192.897,11 +22495,916,821,15,21,15,14,14,14,0,55,,,47,10,01:43.0,192.676,11 +22496,916,826,5,26,17,15,15,15,0,55,,,53,3,01:41.7,195.171,11 +22497,916,807,10,27,13,,R,16,0,16,,,15,16,01:46.2,186.835,5 +22498,916,815,10,11,11,,R,17,0,1,,,,0,,,130 +22499,916,16,15,99,9,,R,18,0,0,,,,0,,,4 +22500,917,3,131,6,1,1,1,1,25,71,30:02.6,5402555,62,2,01:13.6,210.711,1 +22501,917,1,131,44,2,2,2,2,18,71,1.457,5404012,62,1,01:13.6,210.895,1 +22502,917,13,3,19,3,3,3,3,15,71,41.031,5443586,59,7,01:14.1,209.341,1 +22503,917,18,1,22,5,4,4,4,12,71,48.658,5451213,68,4,01:14.0,209.629,1 +22504,917,20,9,1,6,5,5,5,10,71,51.42,5453975,68,5,01:14.0,209.576,1 +22505,917,4,6,14,8,6,6,6,8,71,+1:01.906,5464461,55,10,01:14.3,208.744,1 +22506,917,8,6,7,10,7,7,7,6,71,+1:03.730,5466285,37,17,01:15.0,206.934,1 +22507,917,807,10,27,12,8,8,8,4,71,+1:03.934,5466489,70,3,01:13.7,210.4,1 +22508,917,825,1,20,7,9,9,9,2,71,+1:10.085,5472640,62,11,01:14.5,208.097,1 +22509,917,822,3,77,4,10,10,10,1,70,,,64,9,01:14.2,208.98,11 +22510,917,826,5,26,17,11,11,11,0,70,,,62,8,01:14.1,209.219,11 +22511,917,813,208,13,16,12,12,12,0,70,,,47,14,01:14.8,207.357,11 +22512,917,818,5,25,15,13,13,13,0,70,,,65,13,01:14.8,207.457,11 +22513,917,821,15,21,11,14,14,14,0,70,,,64,16,01:14.9,207.177,11 +22514,917,815,10,11,18,15,15,15,0,70,,,70,12,01:14.6,208.08,11 +22515,917,16,15,99,13,16,16,16,0,70,,,42,15,01:14.8,207.29,11 +22516,917,154,208,8,14,17,17,17,0,63,,,63,6,01:14.1,209.428,18 +22517,917,817,9,3,9,,R,18,0,39,,,30,18,01:15.4,205.77,22 +22518,918,1,131,44,2,1,1,1,50,55,39:02.6,5942619,49,4,01:45.6,189.342,1 +22519,918,13,3,19,4,2,2,2,36,55,2.576,5945195,47,2,01:44.8,190.738,1 +22520,918,822,3,77,3,3,3,3,30,55,28.88,5971499,54,6,01:45.7,189.113,1 +22521,918,817,9,3,20,4,4,4,24,55,37.237,5979856,50,1,01:44.5,191.341,1 +22522,918,18,1,22,6,5,5,5,20,55,+1:00.334,6002953,47,9,01:46.7,187.32,1 +22523,918,807,10,27,12,6,6,6,16,55,+1:02.148,6004767,47,7,01:45.8,189.024,1 +22524,918,815,10,11,11,7,7,7,12,55,+1:11.060,6013679,49,8,01:45.8,188.968,1 +22525,918,20,9,1,19,8,8,8,8,55,+1:12.045,6014664,51,3,01:45.6,189.427,1 +22526,918,4,6,14,8,9,9,9,4,55,+1:25.813,6028432,45,12,01:47.4,186.126,1 +22527,918,8,6,7,7,10,10,10,2,55,+1:27.820,6030439,46,16,01:47.7,185.586,1 +22528,918,825,1,20,9,11,11,11,0,55,+1:30.376,6032995,37,10,01:46.8,187.171,1 +22529,918,818,5,25,10,12,12,12,0,55,+1:31.947,6034566,50,5,01:45.7,189.186,1 +22530,918,154,208,8,18,13,13,13,0,54,,,35,17,01:47.9,185.31,11 +22531,918,3,131,6,1,14,14,14,0,54,,,17,11,01:46.9,187.092,11 +22532,918,821,15,21,14,15,15,15,0,54,,,43,15,01:47.7,185.652,11 +22533,918,16,15,99,13,16,16,16,0,54,,,44,14,01:47.5,185.98,11 +22534,918,829,207,46,17,17,17,17,0,54,,,47,18,01:48.4,184.453,11 +22535,918,155,207,10,16,,R,18,0,42,,,38,13,01:47.4,186.113,31 +22536,918,813,208,13,15,,R,19,0,26,,,9,20,01:48.9,183.547,131 +22537,918,826,5,26,5,,R,20,0,14,,,10,19,01:48.7,183.859,131 +22538,926,1,131,44,1,1,1,1,25,58,31:54.1,5514067,50,1,01:30.9,209.915,1 +22539,926,3,131,6,2,2,2,2,18,58,1.36,5515427,47,2,01:31.1,209.577,1 +22540,926,20,6,5,4,3,3,3,15,58,34.523,5548590,52,4,01:31.5,208.74,1 +22541,926,13,3,19,3,4,4,4,12,58,38.196,5552263,50,6,01:31.7,208.144,1 +22542,926,831,15,12,10,5,5,5,10,58,+1:35.149,5609216,46,9,01:32.6,206.137,1 +22543,926,817,9,3,6,6,6,6,8,57,,,46,10,01:32.8,205.726,11 +22544,926,807,10,27,13,7,7,7,6,57,,,48,8,01:32.0,207.576,11 +22545,926,828,15,9,15,8,8,8,4,57,,,51,5,01:31.6,208.505,11 +22546,926,832,5,55,7,9,9,9,2,57,,,49,11,01:32.9,205.56,11 +22547,926,815,10,11,14,10,10,10,1,57,,,46,7,01:32.0,207.601,11 +22548,926,18,1,22,16,11,11,11,0,56,,,56,12,01:33.3,204.534,12 +22549,926,8,6,7,5,,R,12,0,40,,,36,3,01:31.4,208.811,36 +22550,926,830,5,33,11,,R,13,0,32,,,30,13,01:34.3,202.458,5 +22551,926,154,208,8,8,,R,14,0,0,,,,0,,,75 +22552,926,813,208,13,9,,R,15,0,0,,,,0,,,3 +22553,926,826,9,26,12,,W,16,0,0,,,,0,,,54 +22554,926,825,1,20,17,,W,17,0,0,,,,0,,,54 +22555,926,822,3,77,0,,W,18,0,0,,,,0,,,54 +22556,927,20,6,5,2,1,1,1,25,56,41:05.8,6065793,46,3,01:43.6,193.501,1 +22557,927,1,131,44,1,2,2,2,18,56,8.569,6074362,45,2,01:43.1,193.501,1 +22558,927,3,131,6,3,3,3,3,15,56,12.31,6078103,43,1,01:42.1,195.516,1 +22559,927,8,6,7,11,4,4,4,12,56,53.822,6119615,40,7,01:44.1,191.644,1 +22560,927,822,3,77,8,5,5,5,10,56,+1:10.409,6136202,42,6,01:44.1,191.71,1 +22561,927,13,3,19,7,6,6,6,8,56,+1:13.586,6139379,40,5,01:44.0,191.891,1 +22562,927,830,5,33,6,7,7,7,6,56,+1:37.762,6163555,42,9,01:44.6,190.81,1 +22563,927,832,5,55,15,8,8,8,4,55,,,37,15,01:45.5,189.132,11 +22564,927,826,9,26,5,9,9,9,2,55,,,41,8,01:44.5,190.929,11 +22565,927,817,9,3,4,10,10,10,1,55,,,42,13,01:45.3,189.482,11 +22566,927,154,208,8,10,11,11,11,0,55,,,36,10,01:44.8,190.386,11 +22567,927,831,15,12,16,12,12,12,0,55,,,45,4,01:43.9,192.054,11 +22568,927,815,10,11,14,13,13,13,0,55,,,37,14,01:45.3,189.423,11 +22569,927,807,10,27,13,14,14,14,0,55,,,46,11,01:44.8,190.368,11 +22570,927,833,209,98,19,15,15,15,0,53,,,44,19,01:49.0,183.004,13 +22571,927,813,208,13,12,,R,16,0,47,,,38,12,01:45.1,189.919,31 +22572,927,18,1,22,17,,R,17,0,41,,,38,16,01:46.1,188.153,101 +22573,927,4,1,14,18,,R,18,0,21,,,17,17,01:48.5,183.983,132 +22574,927,828,15,9,9,,R,19,0,3,,,3,18,01:48.8,183.475,20 +22575,927,829,209,28,0,,W,20,0,0,,,,0,,,69 +22576,928,1,131,44,1,1,1,1,25,56,39:42.0,5982008,31,1,01:42.2,191.996,1 +22577,928,3,131,6,2,2,2,2,18,56,0.714,5982722,39,2,01:42.6,191.328,1 +22578,928,20,6,5,3,3,3,3,15,56,2.988,5984996,15,5,01:43.0,190.487,1 +22579,928,8,6,7,6,4,4,4,12,56,3.835,5985843,48,6,01:43.0,190.472,1 +22580,928,13,3,19,4,5,5,5,10,56,8.544,5990552,37,4,01:42.7,191.013,1 +22581,928,822,3,77,5,6,6,6,8,56,9.885,5991893,37,7,01:43.1,190.426,1 +22582,928,154,208,8,8,7,7,7,6,56,19.008,6001016,34,8,01:43.1,190.272,1 +22583,928,831,15,12,9,8,8,8,4,56,22.625,6004633,46,12,01:43.7,189.248,1 +22584,928,817,9,3,7,9,9,9,2,56,32.117,6014125,46,9,01:43.2,190.068,1 +22585,928,828,15,9,10,10,10,10,1,55,,,32,15,01:44.2,188.319,11 +22586,928,815,10,11,15,11,11,11,0,55,,,44,10,01:43.5,189.578,11 +22587,928,4,1,14,18,12,12,12,0,55,,,40,13,01:43.7,189.183,11 +22588,928,832,5,55,14,13,13,13,0,55,,,41,3,01:42.7,191.166,11 +22589,928,18,1,22,17,14,14,14,0,55,,,21,16,01:45.0,186.907,11 +22590,928,829,209,28,19,15,15,15,0,54,,,40,17,01:45.4,186.157,12 +22591,928,833,209,98,20,16,16,16,0,54,,,43,19,01:46.0,185.192,12 +22592,928,830,5,33,13,17,17,17,0,52,,,46,14,01:43.9,188.906,7 +22593,928,813,208,13,11,,R,18,0,49,,,37,11,01:43.7,189.259,23 +22594,928,826,9,26,12,,R,19,0,15,,,13,20,01:46.3,184.621,131 +22595,928,807,10,27,16,,R,20,0,9,,,6,18,01:45.8,185.401,6 +22596,929,1,131,44,1,1,1,1,25,57,35:05.8,5705809,38,5,01:37.9,199.098,1 +22597,929,8,6,7,4,2,2,2,18,57,3.38,5709189,42,1,01:36.3,202.294,1 +22598,929,3,131,6,3,3,3,3,15,57,6.033,5711842,36,3,01:37.3,200.184,1 +22599,929,822,3,77,5,4,4,4,12,57,42.957,5748766,16,6,01:38.1,198.615,1 +22600,929,20,6,5,2,5,5,5,10,57,43.989,5749798,38,2,01:36.6,201.639,1 +22601,929,817,9,3,7,6,6,6,8,57,+1:01.751,5767560,53,12,01:38.9,196.903,1 +22602,929,154,208,8,10,7,7,7,6,57,+1:24.763,5790572,34,15,01:39.2,196.48,1 +22603,929,815,10,11,11,8,8,8,4,56,,,39,8,01:38.3,198.124,11 +22604,929,826,9,26,17,9,9,9,2,56,,,36,11,01:38.7,197.348,11 +22605,929,13,3,19,6,10,10,10,1,56,,,12,14,01:39.1,196.613,11 +22606,929,4,1,14,14,11,11,11,0,56,,,38,13,01:39.0,196.815,11 +22607,929,831,15,12,12,12,12,12,0,56,,,43,7,01:38.2,198.37,11 +22608,929,807,10,27,8,13,13,13,0,56,,,40,10,01:38.7,197.492,11 +22609,929,828,15,9,13,14,14,14,0,56,,,27,9,01:38.4,197.955,11 +22610,929,813,208,13,16,15,15,15,0,56,,,43,4,01:37.7,199.49,11 +22611,929,829,209,28,18,16,16,16,0,55,,,36,18,01:41.8,191.464,12 +22612,929,833,209,98,19,17,17,17,0,54,,,36,19,01:42.0,190.949,13 +22613,929,830,5,33,15,,R,18,0,34,,,32,16,01:39.6,195.6,10 +22614,929,832,5,55,9,,R,19,0,29,,,13,17,01:40.7,193.571,5 +22615,929,18,1,22,20,,W,20,0,0,,,,0,,,132 +22616,930,3,131,6,1,1,1,1,25,66,41:12.6,6072555,53,2,01:29.1,188.061,1 +22617,930,1,131,44,2,2,2,2,18,66,17.551,6090106,54,1,01:28.3,189.849,1 +22618,930,20,6,5,3,3,3,3,15,66,45.342,6117897,61,6,01:30.7,184.687,1 +22619,930,822,3,77,4,4,4,4,12,66,59.217,6131772,44,5,01:30.7,184.74,1 +22620,930,8,6,7,7,5,5,5,10,66,+1:00.002,6132557,47,3,01:29.9,186.342,1 +22621,930,13,3,19,9,6,6,6,8,66,+1:21.314,6153869,51,4,01:30.4,185.429,1 +22622,930,817,9,3,10,7,7,7,6,65,,,56,8,01:31.1,183.903,11 +22623,930,154,208,8,11,8,8,8,4,65,,,46,15,01:31.9,182.261,11 +22624,930,832,5,55,5,9,9,9,2,65,,,62,9,01:31.2,183.838,11 +22625,930,826,9,26,8,10,10,10,1,65,,,40,11,01:31.9,182.376,11 +22626,930,830,5,33,6,11,11,11,0,65,,,46,12,01:31.9,182.358,11 +22627,930,831,15,12,15,12,12,12,0,65,,,41,13,01:31.9,182.294,11 +22628,930,815,10,11,18,13,13,13,0,65,,,38,14,01:31.9,182.286,11 +22629,930,828,15,9,16,14,14,14,0,65,,,52,16,01:32.2,181.713,11 +22630,930,807,10,27,17,15,15,15,0,65,,,51,7,01:30.9,184.38,11 +22631,930,18,1,22,14,16,16,16,0,65,,,46,10,01:31.2,183.826,11 +22632,930,829,209,28,19,17,17,17,0,63,,,49,19,01:33.7,178.933,13 +22633,930,833,209,98,20,18,18,18,0,62,,,51,20,01:34.2,177.877,14 +22634,930,813,208,13,12,,R,19,0,45,,,17,17,01:32.9,180.364,3 +22635,930,4,1,14,13,,R,20,0,26,,,23,18,01:33.4,179.446,23 +22636,931,3,131,6,2,1,1,1,25,78,49:18.4,6558420,76,2,01:18.6,152.841,1 +22637,931,20,6,5,3,2,2,2,18,78,4.486,6562906,75,4,01:18.9,152.347,1 +22638,931,1,131,44,1,3,3,3,15,78,6.053,6564473,42,3,01:18.7,152.692,1 +22639,931,826,9,26,5,4,4,4,12,78,11.965,6570385,75,7,01:19.1,151.815,1 +22640,931,817,9,3,4,5,5,5,10,78,13.608,6572028,74,1,01:18.1,153.891,1 +22641,931,8,6,7,6,6,6,6,8,78,14.345,6572765,74,10,01:19.7,150.822,1 +22642,931,815,10,11,7,7,7,7,6,78,15.013,6573433,74,11,01:19.7,150.811,1 +22643,931,18,1,22,10,8,8,8,4,78,16.063,6574483,76,9,01:19.5,151.128,1 +22644,931,831,15,12,14,9,9,9,2,78,23.626,6582046,76,15,01:20.0,150.133,1 +22645,931,832,5,55,0,10,10,10,1,78,25.056,6583476,48,13,01:19.8,150.511,1 +22646,931,807,10,27,11,11,11,11,0,78,26.232,6584652,46,14,01:19.9,150.313,1 +22647,931,154,208,8,15,12,12,12,0,78,28.415,6586835,40,17,01:20.5,149.263,1 +22648,931,828,15,9,17,13,13,13,0,78,31.159,6589579,75,8,01:19.3,151.519,1 +22649,931,822,3,77,16,14,14,14,0,78,45.789,6604209,74,6,01:18.9,152.173,1 +22650,931,13,3,19,12,15,15,15,0,77,,,72,12,01:19.8,150.609,11 +22651,931,833,209,98,19,16,16,16,0,76,,,47,18,01:21.7,147.013,12 +22652,931,829,209,28,18,17,17,17,0,76,,,58,20,01:22.7,145.274,12 +22653,931,830,5,33,9,,R,18,0,62,,,49,5,01:18.9,152.31,3 +22654,931,4,1,14,13,,R,19,0,41,,,36,16,01:20.5,149.308,6 +22655,931,813,208,13,8,,R,20,0,5,,,3,19,01:22.3,146.019,23 +22656,932,1,131,44,1,1,1,1,25,70,31:53.1,5513145,64,3,01:17.5,202.648,1 +22657,932,3,131,6,2,2,2,2,18,70,2.285,5515430,63,5,01:17.6,202.218,1 +22658,932,822,3,77,4,3,3,3,15,70,40.666,5553811,67,6,01:17.9,201.478,1 +22659,932,8,6,7,3,4,4,4,12,70,45.625,5558770,42,1,01:17.0,203.925,1 +22660,932,20,6,5,18,5,5,5,10,70,49.903,5563048,59,2,01:17.1,203.613,1 +22661,932,13,3,19,15,6,6,6,8,70,56.381,5569526,64,4,01:17.6,202.437,1 +22662,932,813,208,13,6,7,7,7,6,70,+1:06.664,5579809,51,10,01:18.4,200.288,1 +22663,932,807,10,27,7,8,8,8,4,69,,,66,9,01:18.2,200.664,11 +22664,932,826,9,26,8,9,9,9,2,69,,,69,8,01:18.0,201.153,11 +22665,932,154,208,8,5,10,10,10,1,69,,,51,7,01:18.0,201.356,11 +22666,932,815,10,11,10,11,11,11,0,69,,,49,14,01:18.9,199.008,11 +22667,932,832,5,55,11,12,12,12,0,69,,,61,12,01:18.8,199.205,11 +22668,932,817,9,3,9,13,13,13,0,69,,,67,16,01:19.1,198.578,11 +22669,932,828,15,9,12,14,14,14,0,69,,,58,15,01:18.9,199.006,11 +22670,932,830,5,33,19,15,15,15,0,69,,,50,11,01:18.6,199.699,11 +22671,932,831,15,12,14,16,16,16,0,68,,,47,17,01:19.1,198.507,12 +22672,932,829,209,28,17,17,17,17,0,66,,,38,19,01:20.7,194.525,14 +22673,932,833,209,98,16,,R,18,0,57,,,37,20,01:20.8,194.292,31 +22674,932,18,1,22,20,,R,19,0,54,,,49,13,01:18.9,199.092,31 +22675,932,4,1,14,13,,R,20,0,44,,,41,18,01:19.6,197.28,5 +22676,933,3,131,6,2,1,1,1,25,71,30:16.9,5416930,35,1,01:11.2,218.622,1 +22677,933,1,131,44,1,2,2,2,18,71,8.8,5425730,60,2,01:11.5,217.888,1 +22678,933,13,3,19,4,3,3,3,15,71,17.573,5434503,58,4,01:11.6,217.468,1 +22679,933,20,6,5,3,4,4,4,12,71,18.181,5435111,44,3,01:11.5,217.815,1 +22680,933,822,3,77,6,5,5,5,10,71,53.604,5470534,52,7,01:12.2,215.557,1 +22681,933,807,10,27,5,6,6,6,8,71,+1:04.075,5481005,62,12,01:12.5,214.686,1 +22682,933,813,208,13,10,7,7,7,6,70,,,58,6,01:11.8,216.947,11 +22683,933,830,5,33,7,8,8,8,4,70,,,64,9,01:12.3,215.256,11 +22684,933,815,10,11,13,9,9,9,2,70,,,58,10,01:12.4,215.173,11 +22685,933,817,9,3,18,10,10,10,1,70,,,69,5,01:11.7,217.238,11 +22686,933,831,15,12,8,11,11,11,0,70,,,57,14,01:13.0,213.19,11 +22687,933,826,9,26,15,12,12,12,0,70,,,54,8,01:12.3,215.354,11 +22688,933,828,15,9,11,13,13,13,0,69,,,56,11,01:12.5,214.76,12 +22689,933,833,209,98,16,14,14,14,0,68,,,58,16,01:14.9,207.817,13 +22690,933,154,208,8,9,,R,15,0,35,,,34,13,01:12.9,213.685,6 +22691,933,832,5,55,12,,R,16,0,35,,,28,15,01:13.2,212.655,75 +22692,933,18,1,22,20,,R,17,0,8,,,5,17,01:52.2,138.792,31 +22693,933,829,209,28,17,,R,18,0,1,,,,0,,,44 +22694,933,8,6,7,14,,R,19,0,0,,,,0,,,4 +22695,933,4,1,14,19,,R,20,0,0,,,,0,,,4 +22696,934,1,131,44,1,1,1,1,25,52,31:27.7,5487729,29,1,01:37.1,218.425,1 +22697,934,3,131,6,2,2,2,2,18,52,10.956,5498685,24,2,01:37.4,217.73,1 +22698,934,20,6,5,6,3,3,3,15,52,25.443,5513172,31,6,01:37.7,217.053,1 +22699,934,13,3,19,3,4,4,4,12,52,36.839,5524568,26,3,01:37.5,217.589,1 +22700,934,822,3,77,4,5,5,5,10,52,+1:03.194,5550923,32,5,01:37.5,217.484,1 +22701,934,826,9,26,7,6,6,6,8,52,+1:03.955,5551684,28,7,01:37.9,216.603,1 +22702,934,807,10,27,9,7,7,7,6,52,+1:18.744,5566473,32,9,01:38.3,215.752,1 +22703,934,8,6,7,5,8,8,8,4,51,,,31,4,01:37.5,217.529,11 +22704,934,815,10,11,11,9,9,9,2,51,,,25,10,01:38.5,215.379,11 +22705,934,4,1,14,17,10,10,10,1,51,,,30,12,01:38.9,214.471,11 +22706,934,828,15,9,15,11,11,11,0,51,,,31,8,01:38.1,216.115,11 +22707,934,833,209,98,20,12,12,12,0,49,,,26,15,01:42.3,207.259,13 +22708,934,829,209,28,19,13,13,13,0,49,,,28,14,01:41.9,208.082,13 +22709,934,832,5,55,8,,R,14,0,31,,,26,11,01:38.7,214.875,10 +22710,934,817,9,3,10,,R,15,0,21,,,14,13,01:39.9,212.203,10 +22711,934,830,5,33,13,,R,16,0,3,,,3,16,02:20.8,150.647,20 +22712,934,813,208,13,14,,R,18,0,0,,,,0,,,4 +22713,934,18,1,22,18,,R,19,0,0,,,,0,,,4 +22714,934,154,208,8,12,,R,17,0,0,,,,0,,,4 +22715,934,831,15,12,16,,W,20,0,0,,,,0,,,6 +22716,936,20,6,5,3,1,1,1,25,69,46:10.0,6369985,63,5,01:26.8,181.759,1 +22717,936,826,9,26,7,2,2,2,18,69,15.748,6385733,57,4,01:26.5,182.29,1 +22718,936,817,9,3,4,3,3,3,15,69,25.084,6395069,68,1,01:24.8,185.939,1 +22719,936,830,5,33,9,4,4,4,12,69,44.251,6414236,62,11,01:27.7,179.938,1 +22720,936,4,1,14,15,5,5,5,10,69,49.079,6419064,67,10,01:27.3,180.637,1 +22721,936,1,131,44,1,6,6,6,8,69,52.025,6422010,68,3,01:25.7,183.974,1 +22722,936,154,208,8,10,7,7,7,6,69,58.578,6428563,60,14,01:28.1,179.059,1 +22723,936,3,131,6,2,8,8,8,4,69,58.876,6428861,68,2,01:25.1,185.223,1 +22724,936,18,1,22,16,9,9,9,2,69,+1:07.028,6437013,65,17,01:28.5,178.139,1 +22725,936,828,15,9,17,10,10,10,1,69,+1:09.130,6439115,60,12,01:28.0,179.214,1 +22726,936,831,15,12,18,11,11,11,0,69,+1:13.458,6443443,51,15,01:28.3,178.678,1 +22727,936,13,3,19,8,12,12,12,0,69,+1:14.278,6444263,59,6,01:26.9,181.566,1 +22728,936,822,3,77,6,13,13,13,0,69,+1:20.228,6450213,51,8,01:27.1,181.161,1 +22729,936,813,208,13,14,14,14,14,0,69,+1:25.142,6455127,62,9,01:27.1,181.012,1 +22730,936,833,209,98,19,15,15,15,0,67,,,59,20,01:29.9,175.497,12 +22731,936,829,209,28,20,16,16,16,0,65,,,56,19,01:29.5,176.134,14 +22732,936,832,5,55,12,,R,17,0,60,,,38,18,01:28.6,177.986,10 +22733,936,8,6,7,5,,R,18,0,55,,,24,7,01:27.0,181.378,131 +22734,936,815,10,11,13,,R,19,0,53,,,51,16,01:28.5,178.212,22 +22735,936,807,10,27,11,,R,20,0,41,,,38,13,01:28.1,179.072,33 +22736,937,1,131,44,1,1,1,1,25,43,23:40.4,5020387,34,2,01:52.5,224.12,1 +22737,937,3,131,6,2,2,2,2,18,43,2.058,5022445,34,1,01:52.4,224.295,1 +22738,937,154,208,8,9,3,3,3,15,43,37.988,5058375,37,12,01:54.8,219.677,1 +22739,937,826,9,26,12,4,4,4,12,43,45.692,5066079,29,3,01:53.0,223.073,1 +22740,937,815,10,11,4,5,5,5,10,43,53.997,5074384,29,13,01:54.8,219.645,1 +22741,937,13,3,19,6,6,6,6,8,43,55.283,5075670,23,8,01:54.1,220.998,1 +22742,937,8,6,7,16,7,7,7,6,43,55.703,5076090,30,9,01:54.5,220.18,1 +22743,937,830,5,33,18,8,8,8,4,43,56.076,5076463,36,4,01:53.3,222.592,1 +22744,937,822,3,77,3,9,9,9,2,43,+1:01.040,5081427,23,10,01:54.6,219.932,131 +22745,937,828,15,9,13,10,10,10,1,43,+1:31.234,5111621,30,7,01:54.0,221.136,1 +22746,937,831,15,12,14,11,11,11,0,43,+1:42.311,5122698,29,6,01:54.0,221.196,1 +22747,937,20,6,5,8,12,12,12,0,42,,,29,14,01:55.3,218.654,27 +22748,937,4,1,14,20,13,13,13,0,42,,,34,5,01:53.7,221.778,11 +22749,937,18,1,22,19,14,14,14,0,42,,,38,15,01:55.5,218.244,11 +22750,937,833,209,98,17,15,15,15,0,42,,,32,18,01:58.2,213.366,11 +22751,937,829,209,28,15,16,16,16,0,42,,,33,17,01:58.1,213.41,11 +22752,937,832,5,55,10,,R,17,0,32,,,25,11,01:54.7,219.867,131 +22753,937,817,9,3,5,,R,18,0,19,,,2,16,01:56.3,216.873,131 +22754,937,813,208,13,7,,R,19,0,2,,,,0,,,5 +22755,937,807,10,27,11,,W,20,0,0,,,,0,,,75 +22756,938,1,131,44,1,1,1,1,25,53,18:00.7,4680688,48,1,01:26.7,240.617,1 +22757,938,20,6,5,3,2,2,2,18,53,25.042,4705730,52,3,01:27.4,238.678,1 +22758,938,13,3,19,5,3,3,3,15,53,47.635,4728323,31,8,01:27.9,237.326,1 +22759,938,822,3,77,6,4,4,4,12,53,47.996,4728684,49,6,01:27.5,238.272,1 +22760,938,8,6,7,2,5,5,5,10,53,+1:08.860,4749548,43,7,01:27.6,238.111,1 +22761,938,815,10,11,7,6,6,6,8,53,+1:12.783,4753471,46,10,01:28.1,236.609,1 +22762,938,807,10,27,9,7,7,7,6,52,,,36,14,01:28.9,234.552,11 +22763,938,817,9,3,19,8,8,8,4,52,,,50,9,01:28.1,236.811,11 +22764,938,828,15,9,12,9,9,9,2,52,,,22,12,01:28.5,235.604,11 +22765,938,826,9,26,18,10,10,10,1,52,,,39,11,01:28.2,236.365,11 +22766,938,832,5,55,17,11,11,11,0,52,,,38,5,01:27.5,238.313,11 +22767,938,830,5,33,20,12,12,12,0,52,,,35,4,01:27.4,238.64,11 +22768,938,831,15,12,17,13,13,13,0,52,,,51,13,01:28.7,235.24,11 +22769,938,18,1,22,15,14,14,14,0,52,,,33,16,01:29.8,232.324,11 +22770,938,829,209,28,13,15,15,15,0,51,,,51,17,01:31.1,228.927,12 +22771,938,833,209,98,14,16,16,16,0,51,,,29,18,01:31.3,228.393,12 +22772,938,3,131,6,4,17,17,17,0,50,,,43,2,01:27.1,239.525,13 +22773,938,4,1,14,16,18,18,18,0,47,,,42,15,01:29.3,233.575,16 +22774,938,154,208,8,8,,R,19,0,1,,,,0,,,130 +22775,938,813,208,13,10,,R,20,0,1,,,,0,,,130 +22776,939,20,6,5,1,1,1,1,25,61,01:22.1,7282118,53,2,01:50.1,165.659,1 +22777,939,817,9,3,2,2,2,2,18,61,1.478,7283596,52,1,01:50.0,165.701,1 +22778,939,8,6,7,3,3,3,3,15,61,17.154,7299272,48,5,01:50.3,165.251,1 +22779,939,3,131,6,6,4,4,4,12,61,24.72,7306838,50,7,01:50.9,164.368,1 +22780,939,822,3,77,7,5,5,5,10,61,34.204,7316322,49,10,01:51.3,163.765,1 +22781,939,826,9,26,4,6,6,6,8,61,35.508,7317626,36,8,01:51.1,164.109,1 +22782,939,815,10,11,13,7,7,7,6,61,50.836,7332954,44,12,01:52.0,162.847,1 +22783,939,830,5,33,8,8,8,8,4,61,51.45,7333568,43,4,01:50.3,165.315,1 +22784,939,832,5,55,14,9,9,9,2,61,52.86,7334978,43,6,01:50.4,165.161,1 +22785,939,831,15,12,16,10,10,10,1,61,+1:30.045,7372163,36,15,01:52.6,161.984,1 +22786,939,828,15,9,17,11,11,11,0,61,+1:37.507,7379625,30,11,01:51.6,163.395,1 +22787,939,813,208,13,18,12,12,12,0,61,+1:37.718,7379836,57,3,01:50.2,165.5,1 +22788,939,154,208,8,10,13,13,13,0,59,,,28,13,01:52.4,162.292,27 +22789,939,834,209,53,20,14,14,14,0,59,,,43,19,01:55.3,158.127,12 +22790,939,829,209,28,19,15,15,15,0,59,,,45,20,01:55.9,157.338,12 +22791,939,18,1,22,15,,R,16,0,52,,,43,9,01:51.2,164.023,6 +22792,939,4,1,14,12,,R,17,0,33,,,27,16,01:53.3,160.9,6 +22793,939,1,131,44,5,,R,18,0,32,,,24,14,01:52.5,162.072,37 +22794,939,13,3,19,9,,R,19,0,30,,,19,17,01:53.7,160.417,6 +22795,939,807,10,27,11,,R,20,0,12,,,6,18,01:53.9,160.132,4 +22796,940,1,131,44,2,1,1,1,25,53,,,33,1,01:36.1,217.434,1 +22797,940,3,131,6,1,2,2,2,18,53,,,31,2,01:37.1,215.191,1 +22798,940,20,6,5,4,3,3,3,15,53,,,32,3,01:37.9,213.523,1 +22799,940,8,6,7,6,4,4,4,12,53,,,32,4,01:38.0,213.242,1 +22800,940,822,3,77,3,5,5,5,10,53,,,41,8,01:38.2,212.795,1 +22801,940,807,10,27,13,6,6,6,8,53,,,43,9,01:38.3,212.6,1 +22802,940,154,208,8,8,7,7,7,6,53,,,35,6,01:38.2,212.955,1 +22803,940,813,208,13,11,8,8,8,4,53,,,39,5,01:38.1,213.022,1 +22804,940,830,5,33,17,9,9,9,2,53,,,32,7,01:38.2,212.803,1 +22805,940,832,5,55,10,10,10,10,1,52,,,16,13,01:38.7,211.835,11 +22806,940,4,1,14,12,11,11,11,0,52,,,45,16,01:39.6,209.862,11 +22807,940,815,10,11,9,12,12,12,0,52,,,50,11,01:38.6,212.039,11 +22808,940,826,9,26,20,13,13,13,0,52,,,36,10,01:38.4,212.524,11 +22809,940,828,15,9,15,14,14,14,0,52,,,28,15,01:39.3,210.434,11 +22810,940,817,9,3,7,15,15,15,0,52,,,32,14,01:38.9,211.381,11 +22811,940,18,1,22,14,16,16,16,0,52,,,31,18,01:40.1,208.799,11 +22812,940,13,3,19,5,17,17,17,0,51,,,51,12,01:38.6,212.031,12 +22813,940,834,209,53,19,18,18,18,0,51,,,35,20,01:41.5,206.029,12 +22814,940,829,209,28,18,19,19,19,0,50,,,44,19,01:41.5,206.06,13 +22815,940,831,15,12,16,,R,20,0,49,,,39,17,01:40.1,208.868,31 +22816,941,1,131,44,2,1,1,1,25,53,37:11.0,5831024,44,3,01:40.6,209.328,1 +22817,941,20,6,5,4,2,2,2,18,53,5.953,5836977,51,1,01:40.1,210.378,1 +22818,941,815,10,11,7,3,3,3,15,53,28.918,5859942,48,9,01:41.8,206.862,1 +22819,941,13,3,19,15,4,4,4,12,53,38.831,5869855,48,4,01:40.9,208.689,1 +22820,941,8,6,7,5,8,8,8,4,53,+1:12.358,5903382,48,2,01:40.3,209.91,1 +22821,941,831,15,12,12,6,6,6,8,53,56.508,5887532,52,6,01:41.4,207.678,1 +22822,941,813,208,13,14,7,7,7,6,53,+1:01.088,5892112,52,7,01:41.5,207.402,1 +22824,941,18,1,22,13,9,9,9,2,53,+1:19.467,5910491,53,13,01:43.1,204.261,1 +22825,941,830,5,33,9,10,10,10,1,53,+1:28.424,5919448,45,15,01:43.3,203.871,1 +22826,941,4,1,14,19,11,11,11,0,53,+1:31.210,5922234,29,12,01:42.6,205.115,1 +22827,941,822,3,77,3,12,12,12,0,52,,,45,5,01:41.1,208.167,4 +22828,941,833,209,98,18,13,13,13,0,52,,,50,17,01:45.0,200.409,11 +22829,941,829,209,28,17,14,14,14,0,51,,,50,16,01:44.9,200.644,12 +22830,941,817,9,3,10,15,15,15,0,47,,,43,10,01:41.9,206.626,22 +22831,941,832,5,55,20,,R,16,0,45,,,44,11,01:42.3,205.879,23 +22832,941,154,208,8,8,,R,17,0,11,,,7,18,01:45.3,199.996,3 +22833,941,3,131,6,1,,R,18,0,7,,,6,14,01:43.1,204.132,37 +22834,941,807,10,27,6,,R,19,0,0,,,,0,,,4 +22835,941,828,15,9,17,,R,20,0,0,,,,0,,,4 +22837,942,1,131,44,2,1,1,1,25,56,50:52.7,6652703,48,2,01:40.7,197.014,1 +22836,941,826,9,26,11,5,5,5,10,53,47.566,5878590,,0,,,1 +22838,942,3,131,6,1,2,2,2,18,56,2.85,6655553,49,1,01:40.7,197.154,1 +22839,942,20,6,5,13,3,3,3,15,56,3.381,6656084,52,3,01:41.3,195.863,1 +22840,942,830,5,33,8,4,4,4,12,56,22.359,6675062,51,9,01:43.2,192.366,1 +22841,942,815,10,11,5,5,5,5,10,56,24.413,6677116,54,7,01:43.0,192.668,1 +22842,942,18,1,22,11,6,6,6,8,56,28.058,6680761,50,8,01:43.0,192.638,1 +22843,942,832,5,55,20,7,7,7,6,56,30.619,6683322,51,5,01:42.7,193.325,1 +22844,942,813,208,13,12,8,8,8,4,56,32.273,6684976,51,6,01:42.8,192.97,1 +22845,942,831,15,12,15,9,9,9,2,56,40.257,6692960,54,12,01:44.4,190.09,1 +22846,942,817,9,3,3,10,10,10,1,56,53.371,6706074,53,4,01:42.0,194.614,1 +22847,942,4,1,14,9,11,11,11,0,56,54.816,6707519,55,11,01:44.3,190.243,1 +22848,942,834,209,53,17,12,12,12,0,56,+1:15.277,6727980,50,16,01:48.2,183.472,1 +22849,942,826,9,26,4,,R,13,0,41,,,41,10,01:43.7,191.335,3 +22850,942,807,10,27,6,,R,14,0,35,,,24,13,01:45.1,188.846,3 +22851,942,828,15,9,14,,R,15,0,25,,,24,15,01:47.4,184.825,31 +22852,942,8,6,7,18,,R,16,0,25,,,24,14,01:46.2,186.905,135 +22853,942,13,3,19,7,,R,17,0,23,,,22,17,01:48.2,183.374,31 +22854,942,154,208,8,10,,R,18,0,10,,,8,18,01:59.6,165.926,31 +22855,942,822,3,77,16,,R,19,0,5,,,3,19,02:31.9,130.623,31 +22856,942,829,209,28,19,,R,20,0,1,,,,0,,,31 +22857,943,3,131,6,1,1,1,1,25,71,42:35.0,6155038,67,1,01:20.5,192.426,1 +22858,943,1,131,44,2,2,2,2,18,71,1.954,6156992,67,2,01:20.7,191.945,1 +22859,943,822,3,77,6,3,3,3,15,71,14.592,6169630,68,4,01:21.6,189.917,1 +22860,943,826,9,26,4,4,4,4,12,71,16.572,6171610,69,3,01:21.5,190.001,1 +22861,943,817,9,3,5,5,5,5,10,71,19.682,6174720,70,5,01:21.6,189.824,1 +22862,943,13,3,19,7,6,6,6,8,71,21.493,6176531,71,7,01:22.0,188.935,1 +22863,943,807,10,27,10,7,7,7,6,71,25.86,6180898,69,9,01:22.4,188.059,1 +22864,943,815,10,11,9,8,8,8,4,71,34.343,6189381,51,12,01:22.8,187.227,1 +22865,943,830,5,33,8,9,9,9,2,71,35.229,6190267,70,10,01:22.6,187.576,1 +22866,943,154,208,8,12,10,10,10,1,71,37.934,6192972,69,13,01:22.9,186.92,1 +22867,943,813,208,13,13,11,11,11,0,71,38.538,6193576,70,14,01:23.0,186.762,1 +22868,943,828,15,9,14,12,12,12,0,71,40.18,6195218,62,11,01:22.7,187.32,1 +22869,943,832,5,55,11,13,13,13,0,71,48.772,6203810,46,8,01:22.2,188.56,1 +22870,943,18,1,22,20,14,14,14,0,71,49.214,6204252,49,15,01:23.0,186.666,1 +22871,943,834,209,53,16,15,15,15,0,69,,,69,18,01:25.0,182.276,12 +22872,943,829,209,28,17,16,16,16,0,69,,,67,19,01:25.5,181.136,12 +22873,943,831,15,12,15,,R,17,0,57,,,48,16,01:23.4,185.895,23 +22874,943,20,6,5,3,,R,18,0,50,,,48,6,01:21.8,189.309,3 +22875,943,8,6,7,19,,R,19,0,21,,,20,17,01:24.1,184.338,4 +22876,943,4,1,14,18,,R,20,0,1,,,,0,,,31 +22877,944,3,131,6,1,1,1,1,25,71,31:09.1,5469090,57,2,01:15.0,206.95,1 +22878,944,1,131,44,2,2,2,2,18,71,7.756,5476846,51,1,01:14.8,207.296,1 +22879,944,20,6,5,3,3,3,3,15,71,14.244,5483334,57,3,01:15.0,206.705,1 +22880,944,8,6,7,4,4,4,4,12,71,47.543,5516633,48,4,01:15.4,205.691,1 +22881,944,822,3,77,7,5,5,5,10,70,,,61,10,01:16.0,204.005,11 +22882,944,807,10,27,5,6,6,6,8,70,,,66,16,01:16.8,202.052,11 +22883,944,826,9,26,6,7,7,7,6,70,,,41,14,01:16.5,202.776,11 +22884,944,154,208,8,14,8,8,8,4,70,,,57,5,01:15.7,204.813,11 +22885,944,830,5,33,9,9,9,9,2,70,,,56,9,01:16.0,204.185,11 +22886,944,813,208,13,15,10,10,10,1,70,,,63,13,01:16.4,203.164,11 +22887,944,817,9,3,19,11,11,11,0,70,,,56,11,01:16.3,203.273,11 +22888,944,815,10,11,11,12,12,12,0,70,,,53,8,01:16.0,204.191,11 +22889,944,831,15,12,13,13,13,13,0,70,,,41,17,01:16.8,202,11 +22890,944,18,1,22,16,14,14,14,0,70,,,53,12,01:16.3,203.252,11 +22891,944,4,1,14,20,15,15,15,0,70,,,54,15,01:16.5,202.726,11 +22892,944,828,15,9,12,16,16,16,0,69,,,57,7,01:15.8,204.678,12 +22893,944,829,209,28,18,17,17,17,0,67,,,42,19,01:19.1,196.116,14 +22894,944,834,209,53,17,18,18,18,0,67,,,43,18,01:18.6,197.316,14 +22895,944,832,5,55,10,,R,19,0,0,,,,0,,,31 +22896,944,13,3,19,8,,E,20,0,70,,,57,6,01:15.7,204.803,96 +22897,945,3,131,6,1,1,1,1,25,55,38:30.2,5910175,37,5,01:45.4,189.779,1 +22898,945,1,131,44,2,2,2,2,18,55,8.271,5918446,44,1,01:44.5,191.302,1 +22899,945,8,6,7,3,3,3,3,15,55,19.43,5929605,47,4,01:44.9,190.528,1 +22900,945,20,6,5,15,4,4,4,12,55,43.735,5953910,48,2,01:44.6,191.242,1 +22901,945,815,10,11,4,5,5,5,10,55,+1:03.952,5974127,30,8,01:45.9,188.818,1 +22902,945,817,9,3,5,6,6,6,8,55,+1:05.010,5975185,46,9,01:46.3,188.085,1 +22903,945,807,10,27,7,7,7,7,6,55,+1:33.618,6003793,29,16,01:47.1,186.751,1 +22904,945,13,3,19,8,8,8,8,4,55,+1:37.751,6007926,33,14,01:47.0,186.891,1 +22905,945,154,208,8,18,9,9,9,2,55,+1:38.201,6008376,47,7,01:45.9,188.877,1 +22906,945,826,9,26,9,10,10,10,1,55,+1:42.371,6012546,27,13,01:46.9,187.069,1 +22907,945,832,5,55,10,11,11,11,0,55,+1:43.525,6013700,38,15,01:47.0,186.867,1 +22908,945,18,1,22,12,12,12,12,0,54,,,29,17,01:47.5,185.978,11 +22909,945,822,3,77,6,13,13,13,0,54,,,45,11,01:46.5,187.804,11 +22910,945,828,15,9,17,14,14,14,0,54,,,48,12,01:46.5,187.71,11 +22911,945,831,15,12,14,15,15,15,0,54,,,46,10,01:46.4,187.874,11 +22912,945,830,5,33,11,16,16,16,0,54,,,40,6,01:45.7,189.079,11 +22913,945,4,1,14,16,17,17,17,0,53,,,52,3,01:44.8,190.793,12 +22914,945,829,209,28,19,18,18,18,0,53,,,53,18,01:49.6,182.414,12 +22915,945,833,209,98,20,19,19,19,0,52,,,26,19,01:51.2,179.784,13 +22916,945,813,208,13,13,,R,20,0,0,,,,0,,,4 +22917,948,3,131,6,2,1,1,1,25,57,48:15.6,6495565,21,3,01:30.6,210.815,1 +22918,948,1,131,44,1,2,2,2,18,57,8.06,6503625,48,4,01:30.6,210.608,1 +22919,948,20,6,5,3,3,3,3,15,57,9.643,6505208,23,2,01:30.0,212.235,1 +22920,948,817,9,3,8,4,4,4,12,57,24.33,6519895,49,1,01:29.0,214.51,1 +22921,948,13,3,19,6,5,5,5,10,57,58.979,6554544,39,9,01:32.3,206.861,1 +22922,948,154,210,8,19,6,6,6,8,57,+1:12.081,6567646,48,17,01:32.9,205.582,1 +22923,948,807,10,27,10,7,7,7,6,57,+1:14.199,6569764,49,16,01:32.8,205.646,1 +22924,948,822,3,77,16,8,8,8,4,57,+1:15.153,6570718,51,14,01:32.7,205.886,1 +22925,948,832,5,55,7,9,9,9,2,57,+1:15.680,6571245,23,7,01:31.7,208.253,1 +22926,948,830,5,33,5,10,10,10,1,57,+1:16.833,6572398,44,6,01:31.5,208.606,1 +22927,948,835,4,30,13,11,11,11,0,57,+1:23.399,6578964,14,18,01:33.0,205.376,1 +22928,948,825,4,20,14,12,12,12,0,57,+1:25.606,6581171,45,10,01:32.5,206.494,1 +22929,948,815,10,11,9,13,13,13,0,57,+1:31.699,6587264,39,15,01:32.8,205.764,1 +22930,948,18,1,22,12,14,14,14,0,56,,,33,8,01:31.7,208.223,11 +22931,948,831,15,12,17,15,15,15,0,56,,,48,13,01:32.7,205.917,11 +22932,948,836,209,94,21,16,16,16,0,56,,,34,12,01:32.7,206.001,11 +22933,948,828,15,9,15,,R,17,0,38,,,15,21,01:33.9,203.327,5 +22934,948,8,6,7,4,,R,18,0,21,,,21,5,01:30.7,210.48,5 +22935,948,837,209,88,22,,R,19,0,17,,,15,20,01:33.8,203.424,26 +22936,948,821,210,21,20,,R,20,0,16,,,4,19,01:33.0,205.281,4 +22937,948,4,1,14,11,,R,21,0,16,,,14,11,01:32.6,206.268,4 +22938,948,826,9,26,18,,W,22,0,0,,,,0,,,31 +22939,949,3,131,6,2,1,1,1,25,57,33:34.7,5614696,41,1,01:34.5,206.21,1 +22940,949,8,6,7,4,2,2,2,18,57,10.282,5624978,39,3,01:35.2,204.745,1 +22941,949,1,131,44,1,3,3,3,15,57,30.148,5644844,43,2,01:34.7,205.785,1 +22942,949,817,9,3,5,4,4,4,12,57,+1:02.494,5677190,44,9,01:36.1,202.814,1 +22943,949,154,210,8,9,5,5,5,10,57,+1:18.299,5692995,42,11,01:36.1,202.749,1 +22944,949,830,5,33,10,6,6,6,8,57,+1:20.929,5695625,49,7,01:35.5,204.004,1 +22945,949,826,9,26,15,7,7,7,6,56,,,36,8,01:35.7,203.633,11 +22946,949,13,3,19,7,8,8,8,4,56,,,31,16,01:37.6,199.704,11 +22947,949,822,3,77,6,9,9,9,2,56,,,37,15,01:37.1,200.698,11 +22948,949,838,1,47,12,10,10,10,1,56,,,44,12,01:36.1,202.694,11 +22949,949,825,4,20,22,11,11,11,0,56,,,40,14,01:36.7,201.418,11 +22950,949,828,15,9,17,12,12,12,0,56,,,32,17,01:38.0,198.802,11 +22951,949,836,209,94,16,13,13,13,0,56,,,43,6,01:35.4,204.123,11 +22952,949,831,15,12,21,14,14,14,0,56,,,49,5,01:35.4,204.312,11 +22953,949,807,10,27,8,15,15,15,0,56,,,53,4,01:35.2,204.681,11 +22954,949,815,10,11,18,16,16,16,0,56,,,39,10,01:36.1,202.808,11 +22955,949,837,209,88,20,17,17,17,0,56,,,47,13,01:36.7,201.512,11 +22956,949,832,5,55,11,,R,18,0,29,,,22,18,01:38.4,197.983,31 +22957,949,821,210,21,13,,R,19,0,9,,,2,19,01:39.3,196.124,31 +22958,949,18,1,22,14,,R,20,0,6,,,3,20,01:39.4,195.954,131 +22959,949,20,6,5,3,,W,21,0,0,,,,0,,,5 +22960,949,835,4,30,19,,W,22,0,0,,,,0,,,9 +22961,950,3,131,6,1,1,1,1,25,56,38:53.9,5933891,38,6,01:40.4,195.419,1 +22962,950,20,6,5,4,2,2,2,18,56,37.776,5971667,37,9,01:40.6,195.046,1 +22963,950,826,9,26,6,3,3,3,15,56,45.936,5979827,38,14,01:41.5,193.248,1 +22964,950,817,9,3,2,4,4,4,12,56,52.688,5986579,55,11,01:41.0,194.264,1 +22965,950,8,6,7,3,5,5,5,10,56,+1:05.872,5999763,40,8,01:40.6,195.079,1 +22966,950,13,3,19,10,6,6,6,8,56,+1:15.511,6009402,34,16,01:41.8,192.737,1 +22967,950,1,131,44,22,7,7,7,6,56,+1:18.230,6012121,32,10,01:40.7,194.945,1 +22968,950,830,5,33,9,8,8,8,4,56,+1:19.268,6013159,41,5,01:40.4,195.456,1 +22969,950,832,5,55,8,9,9,9,2,56,+1:24.127,6018018,35,12,01:41.5,193.364,1 +22970,950,822,3,77,5,10,10,10,1,56,+1:26.192,6020083,23,15,01:41.6,193.225,1 +22971,950,815,10,11,7,11,11,11,0,56,+1:34.283,6028174,30,17,01:41.8,192.679,1 +22972,950,4,1,14,11,12,12,12,0,56,+1:37.253,6031144,36,19,01:42.2,191.962,1 +22973,950,18,1,22,12,13,13,13,0,56,+1:41.990,6035881,46,3,01:40.3,195.652,1 +22974,950,821,210,21,18,14,14,14,0,55,,,45,4,01:40.4,195.516,11 +22975,950,807,10,27,13,15,15,15,0,55,,,48,1,01:39.8,196.581,11 +22976,950,828,15,9,15,16,16,16,0,55,,,41,22,01:43.3,190.024,11 +22977,950,825,4,20,17,17,17,17,0,55,,,22,21,01:42.3,191.803,11 +22978,950,836,209,94,21,18,18,18,0,55,,,48,13,01:41.5,193.356,11 +22979,950,154,210,8,14,19,19,19,0,55,,,47,2,01:39.9,196.387,11 +22980,950,831,15,12,16,20,20,20,0,55,,,42,7,01:40.6,195.1,11 +22981,950,837,209,88,20,21,21,21,0,55,,,42,18,01:42.0,192.371,11 +22982,950,835,4,30,19,22,22,22,0,55,,,26,20,01:42.2,191.951,11 +22983,951,3,131,6,1,1,1,1,25,53,32:42.0,5561997,52,1,01:39.1,212.452,1 +22984,951,1,131,44,10,2,2,2,18,53,25.022,5587019,36,4,01:40.3,209.969,1 +22985,951,8,6,7,3,3,3,3,15,53,31.998,5593995,47,3,01:40.1,210.315,1 +22986,951,822,3,77,2,4,4,4,12,53,50.217,5612214,37,6,01:41.2,208.115,1 +22987,951,13,3,19,4,5,5,5,10,53,+1:14.427,5636424,52,2,01:39.7,211.07,1 +22988,951,4,1,14,14,6,6,6,8,52,,,52,5,01:40.3,209.799,11 +22989,951,825,4,20,17,7,7,7,6,52,,,50,9,01:41.8,206.74,11 +22990,951,154,210,8,15,8,8,8,4,52,,,51,12,01:42.0,206.347,11 +22991,951,815,10,11,6,9,9,9,2,52,,,47,10,01:41.9,206.608,11 +22992,951,18,1,22,12,10,10,10,1,52,,,50,8,01:41.7,206.968,11 +22993,951,817,9,3,5,11,11,11,0,52,,,46,7,01:41.2,208.074,11 +22994,951,832,5,55,11,12,12,12,0,52,,,41,15,01:42.2,205.986,11 +22995,951,835,4,30,18,13,13,13,0,52,,,37,19,01:42.7,205.073,11 +22996,951,828,15,9,22,14,14,14,0,52,,,45,14,01:42.1,206.298,11 +22997,951,826,9,26,8,15,15,15,0,52,,,44,17,01:42.3,205.706,11 +22998,951,831,15,12,19,16,16,16,0,52,,,50,16,01:42.3,205.889,11 +22999,951,821,210,21,16,17,17,17,0,52,,,52,18,01:42.4,205.637,11 +23000,951,836,209,94,20,18,18,18,0,51,,,43,11,01:41.9,206.588,12 +23001,951,830,5,33,9,,R,19,0,33,,,32,13,01:42.0,206.341,131 +23002,951,20,6,5,7,,R,20,0,0,,,,0,,,4 +23003,951,807,10,27,13,,R,21,0,0,,,,0,,,4 +23004,951,837,209,88,21,,R,22,0,0,,,,0,,,4 +23005,952,830,9,33,4,1,1,1,25,66,41:40.0,6100017,36,6,01:28.8,188.682,1 +23006,952,8,6,7,5,2,2,2,18,66,0.616,6100633,38,4,01:28.5,189.274,1 +23007,952,20,6,5,6,3,3,3,15,66,5.581,6105598,39,2,01:28.0,190.488,1 +23008,952,817,9,3,3,4,4,4,12,66,43.95,6143967,46,3,01:28.2,189.98,1 +23009,952,822,3,77,7,5,5,5,10,66,45.271,6145288,60,8,01:29.1,188.12,1 +23010,952,832,5,55,8,6,6,6,8,66,+1:01.395,6161412,42,11,01:29.7,186.899,1 +23011,952,815,10,11,9,7,7,7,6,66,+1:19.538,6179555,37,15,01:29.8,186.612,1 +23012,952,13,3,19,18,8,8,8,4,66,+1:20.707,6180724,43,9,01:29.2,187.789,1 +23013,952,18,1,22,12,9,9,9,2,65,,,39,18,01:30.3,185.663,11 +23014,952,826,5,26,13,10,10,10,1,65,,,53,1,01:26.9,192.735,11 +23015,952,821,210,21,16,11,11,11,0,65,,,34,17,01:30.1,185.912,11 +23016,952,828,15,9,19,12,12,12,0,65,,,42,12,01:29.7,186.791,11 +23017,952,835,4,30,17,13,13,13,0,65,,,35,14,01:29.8,186.658,11 +23018,952,825,4,20,15,14,14,14,0,65,,,57,5,01:28.7,188.894,11 +23019,952,831,15,12,20,15,15,15,0,65,,,38,16,01:29.9,186.396,11 +23020,952,836,209,94,21,16,16,16,0,65,,,37,19,01:31.2,183.786,11 +23021,952,837,209,88,22,17,17,17,0,65,,,52,10,01:29.4,187.445,11 +23022,952,154,210,8,14,,R,18,0,56,,,41,7,01:29.0,188.347,5 +23023,952,4,1,14,10,,R,19,0,45,,,41,13,01:29.8,186.718,5 +23024,952,807,10,27,11,,R,20,0,20,,,8,20,01:31.8,182.529,5 +23025,952,1,131,44,1,,R,21,0,0,,,,0,,,4 +23026,952,3,131,6,2,,R,22,0,0,,,,0,,,4 +23027,953,1,131,44,3,1,1,1,25,78,59:29.1,7169133,71,1,01:17.9,154.135,1 +23028,953,817,9,3,1,2,2,2,18,78,7.252,7176385,67,3,01:18.3,153.437,1 +23029,953,815,10,11,7,3,3,3,15,78,13.825,7182958,64,4,01:18.4,153.139,1 +23030,953,20,6,5,4,4,4,4,12,78,15.846,7184979,62,2,01:18.0,154.005,1 +23031,953,4,1,14,9,5,5,5,10,78,+1:25.076,7254209,72,8,01:19.2,151.739,1 +23032,953,807,10,27,5,6,6,6,8,78,+1:32.999,7262132,74,11,01:19.2,151.62,1 +23033,953,3,131,6,2,7,7,7,6,78,+1:33.290,7262423,74,6,01:18.8,152.523,1 +23034,953,832,5,55,6,8,8,8,4,77,,,70,5,01:18.5,152.997,11 +23035,953,18,1,22,13,9,9,9,2,77,,,66,12,01:19.7,150.786,11 +23036,953,13,3,19,14,10,10,10,1,77,,,69,9,01:19.2,151.656,11 +23037,953,821,210,21,12,11,11,11,0,77,,,69,7,01:19.1,151.814,11 +23038,953,822,3,77,10,12,12,12,0,77,,,66,10,01:19.2,151.637,11 +23039,953,154,210,8,15,13,13,13,0,76,,,65,14,01:20.2,149.755,12 +23040,953,836,209,94,20,14,14,14,0,76,,,60,15,01:20.4,149.469,12 +23041,953,837,209,88,19,15,15,15,0,74,,,70,13,01:19.9,150.413,14 +23042,953,828,15,9,17,,R,16,0,51,,,51,16,01:21.3,147.687,4 +23043,953,831,15,12,0,,R,17,0,48,,,46,17,01:21.9,146.701,31 +23044,953,830,9,33,0,,R,18,0,34,,,34,18,01:26.6,138.779,3 +23045,953,825,4,20,16,,R,19,0,32,,,27,19,01:29.8,133.774,31 +23046,953,826,5,26,8,,R,20,0,18,,,14,20,01:37.9,122.715,3 +23047,953,8,6,7,11,,R,21,0,10,,,10,21,01:47.1,112.116,3 +23048,953,835,4,30,18,,R,22,0,7,,,2,22,01:58.5,101.399,3 +23049,954,1,131,44,1,1,1,1,25,70,31:05.3,5465296,68,2,01:16.0,206.625,1 +23050,954,20,6,5,3,2,2,2,18,70,5.011,5470307,70,3,01:16.3,205.769,1 +23051,954,822,3,77,7,3,3,3,15,70,46.422,5511718,68,10,01:16.9,204.055,1 +23052,954,830,9,33,5,4,4,4,12,70,53.02,5518316,49,4,01:16.3,205.71,1 +23053,954,3,131,6,2,5,5,5,10,70,+1:02.093,5527389,60,1,01:15.6,207.669,1 +23054,954,8,6,7,6,6,6,6,8,70,+1:03.017,5528313,44,9,01:16.9,204.105,1 +23055,954,817,9,3,4,7,7,7,6,70,+1:03.634,5528930,51,5,01:16.5,205.207,1 +23056,954,807,10,27,9,8,8,8,4,69,,,68,8,01:16.6,204.944,11 +23057,954,832,5,55,20,9,9,9,2,69,,,54,7,01:16.6,205.014,11 +23058,954,815,10,11,11,10,10,10,1,69,,,54,6,01:16.6,205.065,11 +23059,954,4,1,14,10,11,11,11,0,69,,,67,13,01:17.3,203.081,11 +23060,954,826,5,26,15,12,12,12,0,69,,,50,11,01:16.9,204.044,11 +23061,954,821,210,21,13,13,13,13,0,68,,,48,15,01:17.7,201.981,12 +23062,954,154,210,8,14,14,14,14,0,68,,,50,12,01:17.3,203.149,12 +23063,954,828,15,9,21,15,15,15,0,68,,,63,17,01:18.1,201.019,12 +23064,954,825,4,20,22,16,16,16,0,68,,,42,18,01:18.2,200.7,12 +23065,954,836,209,94,17,17,17,17,0,68,,,48,19,01:18.3,200.551,12 +23066,954,831,15,12,18,18,18,18,0,68,,,66,16,01:17.9,201.579,12 +23067,954,837,209,88,19,19,19,19,0,68,,,57,20,01:18.7,199.593,12 +23068,954,13,3,19,8,,R,20,0,35,,,32,14,01:17.4,202.774,31 +23069,954,835,4,30,16,,R,21,0,16,,,6,22,01:19.9,196.542,31 +23070,954,18,1,22,12,,R,22,0,9,,,5,21,01:19.5,197.588,131 +23071,955,3,131,6,1,1,1,1,25,51,32:52.4,5572366,48,1,01:46.5,202.946,1 +23072,955,20,6,5,3,2,2,2,18,51,16.696,5589062,49,5,01:47.0,201.917,1 +23073,955,815,10,11,7,3,3,3,15,51,25.241,5597607,45,4,01:47.0,201.988,1 +23074,955,8,6,7,4,4,4,4,12,51,33.102,5605468,41,6,01:47.2,201.629,1 +23075,955,1,131,44,10,5,5,5,10,51,56.335,5628701,42,2,01:46.8,202.306,1 +23076,955,822,3,77,8,6,6,6,8,51,+1:00.886,5633252,50,9,01:47.6,200.836,1 +23077,955,817,9,3,2,7,7,7,6,51,+1:09.229,5641595,51,12,01:47.7,200.59,1 +23078,955,830,9,33,9,8,8,8,4,51,+1:10.696,5643062,50,3,01:47.0,202.021,1 +23079,955,807,10,27,12,9,9,9,2,51,+1:17.708,5650074,37,15,01:48.0,200.077,1 +23080,955,13,3,19,5,10,10,10,1,51,+1:25.375,5657741,35,13,01:47.8,200.543,1 +23081,955,18,1,22,19,11,11,11,0,51,+1:44.817,5677183,50,10,01:47.6,200.802,1 +23082,955,831,15,12,15,12,12,12,0,50,,,48,11,01:47.7,200.642,11 +23083,955,154,210,8,11,13,13,13,0,50,,,48,14,01:47.9,200.205,11 +23084,955,825,4,20,22,14,14,14,0,50,,,41,19,01:49.3,197.752,11 +23085,955,835,4,30,21,15,15,15,0,50,,,48,8,01:47.6,200.875,11 +23086,955,821,210,21,14,16,16,16,0,50,,,50,7,01:47.6,200.912,11 +23087,955,828,15,9,20,17,17,17,0,50,,,48,17,01:48.9,198.449,11 +23088,955,837,209,88,16,18,18,18,0,49,,,27,21,01:51.4,194.053,12 +23089,955,4,1,14,13,,R,19,0,42,,,27,18,01:49.1,198.08,6 +23090,955,836,209,94,17,,R,20,0,39,,,33,20,01:50.6,195.447,23 +23091,955,832,5,55,18,,R,21,0,31,,,31,16,01:48.8,198.621,22 +23092,955,826,5,26,6,,R,22,0,6,,,2,22,01:53.2,190.963,22 +23093,956,1,131,44,1,1,1,1,25,71,27:38.1,5258107,67,1,01:08.4,227.647,1 +23094,956,830,9,33,8,2,2,2,18,71,5.719,5263826,69,5,01:09.6,223.7,1 +23095,956,8,6,7,4,3,3,3,15,71,6.024,5264131,66,4,01:08.9,226.11,1 +23096,956,3,131,6,6,4,4,4,12,71,16.71,5274817,66,2,01:08.5,227.381,1 +23097,956,817,9,3,5,5,5,5,10,71,30.981,5289088,66,3,01:08.8,226.459,1 +23098,956,18,1,22,3,6,6,6,8,71,37.706,5295813,70,9,01:10.0,222.476,1 +23099,956,154,210,8,13,7,7,7,6,71,44.668,5302775,67,8,01:09.9,222.718,1 +23100,956,832,5,55,15,8,8,8,4,71,47.4,5305507,68,11,01:10.1,222.042,1 +23101,956,822,3,77,7,9,9,9,2,70,,,55,12,01:10.2,221.814,11 +23102,956,836,209,94,12,10,10,10,1,70,,,67,19,01:10.9,219.782,11 +23103,956,821,210,21,11,11,11,11,0,70,,,55,6,01:09.7,223.456,11 +23104,956,835,4,30,19,12,12,12,0,70,,,53,13,01:10.2,221.757,11 +23105,956,831,15,12,21,13,13,13,0,70,,,46,16,01:10.4,221.168,11 +23106,956,825,4,20,17,14,14,14,0,70,,,56,17,01:10.4,221.058,11 +23107,956,828,15,9,18,15,15,15,0,70,,,58,18,01:10.7,220.264,11 +23108,956,837,209,88,20,16,16,16,0,70,,,66,15,01:10.3,221.398,11 +23109,956,815,10,11,16,17,17,17,0,69,,,66,10,01:10.1,222.099,23 +23110,956,4,1,14,14,18,18,18,0,64,,,44,20,01:11.0,219.284,84 +23111,956,807,10,27,2,19,19,19,0,64,,,53,14,01:10.3,221.502,23 +23112,956,13,3,19,10,20,20,20,0,63,,,59,7,01:09.9,222.801,23 +23113,956,20,6,5,9,,R,21,0,26,,,10,21,01:11.4,217.992,27 +23114,956,826,5,26,22,,R,22,0,2,,,2,22,01:18.3,198.891,31 +23115,957,1,131,44,1,1,1,1,25,52,34:55.8,5695831,45,3,01:35.8,221.44,1 +23116,957,830,9,33,3,2,2,2,18,52,8.25,5704081,41,6,01:36.4,219.979,1 +23117,957,3,131,6,2,3,3,3,15,52,16.911,5712742,44,1,01:35.5,221.957,1 +23118,957,817,9,3,4,4,4,4,12,52,26.211,5722042,52,4,01:36.0,220.882,1 +23119,957,8,6,7,5,5,5,5,10,52,+1:09.743,5765574,39,8,01:37.0,218.648,1 +23120,957,815,10,11,10,6,6,6,8,52,+1:16.941,5772772,35,15,01:37.9,216.625,1 +23121,957,807,10,27,8,7,7,7,6,52,+1:17.712,5773543,51,11,01:37.6,217.25,1 +23122,957,832,5,55,7,8,8,8,4,52,+1:25.858,5781689,43,10,01:37.4,217.734,1 +23123,957,20,6,5,11,9,9,9,2,52,+1:31.654,5787485,44,7,01:36.9,218.786,1 +23124,957,826,5,26,15,10,10,10,1,52,+1:32.600,5788431,35,13,01:37.7,217.141,1 +23125,957,13,3,19,12,11,11,11,0,51,,,40,5,01:36.1,220.588,11 +23126,957,18,1,22,17,12,12,12,0,51,,,36,16,01:37.9,216.609,11 +23127,957,4,1,14,9,13,13,13,0,51,,,43,2,01:35.7,221.676,11 +23128,957,822,3,77,6,14,14,14,0,51,,,45,9,01:37.4,217.775,11 +23129,957,831,15,12,21,15,15,15,0,51,,,43,17,01:38.7,214.847,11 +23130,957,821,210,21,14,16,16,16,0,51,,,44,14,01:37.7,217.039,11 +23131,957,825,4,20,16,17,17,17,0,49,,,43,12,01:37.6,217.248,6 +23132,957,835,4,30,18,,R,18,0,37,,,36,18,01:39.8,212.596,6 +23133,957,837,209,88,19,,R,19,0,24,,,23,19,01:41.4,209.189,20 +23134,957,154,210,8,13,,R,20,0,17,,,14,20,01:55.5,183.604,31 +23135,957,828,15,9,22,,R,21,0,11,,,9,21,02:00.3,176.309,131 +23136,957,836,209,94,20,,R,22,0,6,,,4,22,02:48.8,125.634,20 +23137,958,1,131,44,2,1,1,1,25,70,40:30.1,6030115,69,3,01:23.8,188.095,1 +23138,958,3,131,6,1,2,2,2,18,70,1.977,6032092,60,2,01:23.7,188.497,1 +23139,958,817,9,3,3,3,3,3,15,70,27.539,6057654,60,5,01:24.6,186.407,1 +23140,958,20,6,5,5,4,4,4,12,70,28.213,6058328,59,4,01:24.4,186.904,1 +23141,958,830,9,33,4,5,5,5,10,70,48.659,6078774,40,7,01:24.7,186.234,1 +23142,958,8,6,7,14,6,6,6,8,70,49.044,6079159,52,1,01:23.1,189.822,1 +23143,958,4,1,14,7,7,7,7,6,69,,,62,8,01:25.0,185.639,11 +23144,958,832,5,55,6,8,8,8,4,69,,,67,10,01:25.1,185.323,11 +23145,958,822,3,77,10,9,9,9,2,69,,,59,11,01:25.3,184.954,11 +23146,958,807,10,27,9,10,10,10,1,69,,,69,13,01:25.4,184.696,11 +23147,958,815,10,11,13,11,11,11,0,69,,,65,9,01:25.0,185.502,11 +23148,958,835,4,30,17,12,12,12,0,69,,,41,16,01:25.7,183.94,11 +23149,958,821,210,21,15,13,13,13,0,69,,,39,17,01:26.0,183.486,11 +23150,958,154,210,8,11,14,14,14,0,69,,,56,18,01:26.0,183.48,11 +23151,958,825,4,20,19,15,15,15,0,69,,,39,19,01:26.2,182.901,11 +23152,958,826,5,26,12,16,16,16,0,69,,,48,6,01:24.7,186.273,11 +23153,958,831,15,12,16,17,17,17,0,69,,,66,15,01:25.7,184.084,11 +23154,958,13,3,19,18,18,18,18,0,68,,,68,12,01:25.3,184.904,12 +23155,958,836,209,94,20,19,19,19,0,68,,,47,20,01:26.5,182.28,12 +23156,958,828,15,9,22,20,20,20,0,68,,,47,14,01:25.5,184.517,12 +23157,958,837,209,88,21,21,21,21,0,68,,,64,22,01:27.8,179.649,12 +23158,958,18,1,22,8,,R,22,0,60,,,9,21,01:26.7,181.817,44 +23159,959,1,131,44,2,1,1,1,25,67,30:44.2,5444200,52,3,01:18.7,209.107,1 +23160,959,817,9,3,3,2,2,2,18,67,6.996,5451196,48,1,01:18.4,209.918,1 +23161,959,830,9,33,4,3,3,3,15,67,13.413,5457613,47,4,01:18.9,208.673,1 +23162,959,3,131,6,1,4,4,4,12,67,15.845,5460045,51,5,01:19.1,208.114,1 +23163,959,20,6,5,6,5,5,5,10,67,32.57,5476770,48,2,01:18.7,209.203,1 +23164,959,8,6,7,5,6,6,6,8,67,37.023,5481223,36,6,01:19.6,206.937,1 +23165,959,807,10,27,8,7,7,7,6,67,+1:10.049,5514249,46,12,01:20.1,205.686,1 +23166,959,18,1,22,12,8,8,8,4,66,,,48,9,01:19.8,206.395,11 +23167,959,822,3,77,7,9,9,9,2,66,,,36,15,01:20.4,204.699,11 +23168,959,815,10,11,9,10,10,10,1,66,,,46,8,01:19.6,206.848,11 +23169,959,821,210,21,11,11,11,11,0,66,,,56,10,01:19.9,206.131,11 +23170,959,4,1,14,13,12,12,12,0,66,,,50,13,01:20.1,205.49,11 +23171,959,154,210,8,20,13,13,13,0,66,,,58,14,01:20.2,205.188,11 +23172,959,832,5,55,15,14,14,14,0,66,,,54,11,01:20.0,205.94,11 +23173,959,826,5,26,18,15,15,15,0,66,,,51,7,01:19.6,206.903,11 +23174,959,825,4,20,16,16,16,16,0,66,,,42,21,01:21.6,201.673,11 +23175,959,836,209,94,17,17,17,17,0,65,,,49,16,01:20.7,204.019,12 +23176,959,828,15,9,22,18,18,18,0,65,,,35,18,01:21.2,202.758,12 +23177,959,835,4,30,14,19,19,19,0,65,,,55,17,01:21.1,202.97,12 +23178,959,837,209,88,19,20,20,20,0,65,,,56,22,01:21.8,201.19,12 +23179,959,831,15,12,21,,R,21,0,57,,,45,19,01:21.4,202.24,131 +23180,959,13,3,19,10,,R,22,0,36,,,31,20,01:21.5,202.101,22 +23181,960,3,131,6,1,1,1,1,25,44,44:51.1,6291058,11,2,01:51.7,225.64,1 +23182,960,817,9,3,5,2,2,2,18,44,14.113,6305171,11,4,01:52.5,224.205,1 +23183,960,1,131,44,21,3,3,3,15,44,27.634,6318692,40,1,01:51.6,225.969,1 +23184,960,807,10,27,7,4,4,4,12,44,35.907,6326965,41,10,01:53.5,222.094,1 +23185,960,815,10,11,6,5,5,5,10,44,40.66,6331718,34,8,01:53.4,222.321,1 +23186,960,20,6,5,4,6,6,6,8,44,45.394,6336452,35,5,01:52.7,223.674,1 +23187,960,4,1,14,22,7,7,7,6,44,59.445,6350503,43,15,01:54.5,220.243,1 +23188,960,822,3,77,8,8,8,8,4,44,+1:00.151,6351209,31,12,01:54.1,220.946,1 +23189,960,8,6,7,3,9,9,9,2,44,+1:01.109,6352167,27,9,01:53.5,222.157,1 +23190,960,13,3,19,10,10,10,10,1,44,+1:05.873,6356931,25,14,01:54.3,220.517,1 +23191,960,830,9,33,2,11,11,11,0,44,+1:11.138,6362196,32,7,01:53.3,222.582,1 +23192,960,821,210,21,18,12,12,12,0,44,+1:13.877,6364935,26,13,01:54.3,220.53,1 +23193,960,154,210,8,11,13,13,13,0,44,+1:16.474,6367532,25,11,01:53.8,221.561,1 +23194,960,826,5,26,19,14,14,14,0,44,+1:27.097,6378155,37,3,01:52.1,224.965,1 +23195,960,835,4,30,13,15,15,15,0,44,+1:33.165,6384223,41,6,01:53.3,222.641,1 +23196,960,839,209,31,17,16,16,16,0,43,,,26,16,01:55.7,217.865,11 +23197,960,831,15,12,16,17,17,17,0,43,,,31,17,01:56.2,217.081,11 +23198,960,825,4,20,12,,R,18,0,5,,,4,18,01:56.6,216.269,3 +23199,960,828,15,9,20,,R,19,0,3,,,2,19,02:15.3,186.421,6 +23200,960,832,5,55,14,,R,20,0,1,,,,0,,,29 +23201,960,18,1,22,9,,R,21,0,1,,,,0,,,130 +23202,960,836,209,94,15,,R,22,0,0,,,,0,,,130 +23203,961,3,131,6,2,1,1,1,25,53,17:28.1,4648089,26,9,01:26.6,240.82,1 +23204,961,1,131,44,1,2,2,2,18,53,15.07,4663159,27,4,01:26.3,241.646,1 +23205,961,20,6,5,3,3,3,3,15,53,20.99,4669079,48,5,01:26.3,241.626,1 +23206,961,8,6,7,4,4,4,4,12,53,27.561,4675650,50,3,01:26.0,242.452,1 +23207,961,817,9,3,6,5,5,5,10,53,45.295,4693384,52,2,01:25.9,242.726,1 +23208,961,822,3,77,5,6,6,6,8,53,51.015,4699104,46,10,01:26.7,240.517,1 +23209,961,830,9,33,7,7,7,7,6,53,54.236,4702325,50,8,01:26.4,241.361,1 +23210,961,815,10,11,8,8,8,8,4,53,+1:04.954,4713043,40,12,01:26.9,239.93,1 +23211,961,13,3,19,11,9,9,9,2,53,+1:05.617,4713706,50,7,01:26.4,241.375,1 +23212,961,807,10,27,9,10,10,10,1,53,+1:18.656,4726745,40,13,01:27.0,239.837,1 +23213,961,154,210,8,17,11,11,11,0,52,,,50,15,01:27.2,239.086,11 +23214,961,18,1,22,14,12,12,12,0,52,,,40,6,01:26.4,241.503,11 +23215,961,821,210,21,10,13,13,13,0,52,,,42,14,01:27.1,239.418,11 +23216,961,4,1,14,12,14,14,14,0,52,,,51,1,01:25.3,244.373,11 +23217,961,832,5,55,15,15,15,15,0,52,,,41,11,01:26.8,240.398,11 +23218,961,828,15,9,19,16,16,16,0,52,,,37,19,01:28.6,235.509,11 +23219,961,825,4,20,21,17,17,17,0,52,,,52,16,01:27.6,238.019,11 +23220,961,839,209,31,22,18,18,18,0,51,,,51,18,01:28.5,235.556,12 +23221,961,826,5,26,16,,R,19,0,36,,,35,17,01:28.0,236.886,84 +23222,961,836,209,94,13,,R,20,0,26,,,18,20,01:28.7,235.055,44 +23223,961,835,4,30,20,,R,21,0,7,,,4,21,01:31.4,228.268,130 +23224,961,831,15,12,18,,R,22,0,6,,,,0,,,130 +23225,962,3,131,6,1,1,1,1,25,61,55:49.0,6948950,38,6,01:50.3,165.318,1 +23226,962,817,9,3,2,2,2,2,18,61,0.488,6949438,49,1,01:47.2,170.113,1 +23227,962,1,131,44,3,3,3,3,15,61,8.038,6956988,52,3,01:47.8,169.221,1 +23228,962,8,6,7,5,4,4,4,12,61,10.219,6959169,51,4,01:48.2,168.515,1 +23229,962,20,6,5,22,5,5,5,10,61,27.694,6976644,45,2,01:47.3,169.863,1 +23230,962,830,9,33,4,6,6,6,8,61,+1:11.197,7020147,46,5,01:49.1,167.207,1 +23231,962,4,1,14,9,7,7,7,6,61,+1:29.198,7038148,49,12,01:51.2,163.902,1 +23232,962,815,10,11,17,8,8,8,4,61,+1:51.062,7060012,34,15,01:51.5,163.508,1 +23233,962,826,5,26,7,9,9,9,2,61,+1:51.557,7060507,39,9,01:50.9,164.353,1 +23234,962,825,4,20,15,10,10,10,1,61,+1:59.952,7068902,44,8,01:50.9,164.48,1 +23235,962,821,210,21,13,11,11,11,0,60,,,39,11,01:51.1,164.159,11 +23236,962,13,3,19,11,12,12,12,0,60,,,53,14,01:51.5,163.599,11 +23237,962,831,15,12,16,13,13,13,0,60,,,41,17,01:51.7,163.265,11 +23238,962,832,5,55,6,14,14,14,0,60,,,56,7,01:50.5,164.965,11 +23239,962,835,4,30,18,15,15,15,0,60,,,36,19,01:51.8,163.128,11 +23240,962,836,209,94,19,16,16,16,0,60,,,40,20,01:52.0,162.773,11 +23241,962,828,15,9,14,17,17,17,0,60,,,27,10,01:51.0,164.325,11 +23242,962,839,209,31,21,18,18,18,0,59,,,47,18,01:51.7,163.17,12 +23243,962,18,1,22,12,,R,19,0,43,,,18,16,01:51.6,163.341,23 +23244,962,822,3,77,10,,R,20,0,35,,,17,13,01:51.4,163.727,25 +23245,962,807,10,27,8,,R,21,0,0,,,,0,,,4 +23246,962,154,210,8,20,,W,22,0,0,,,,0,,,54 +23247,963,817,9,3,4,1,1,1,25,56,37:12.8,5832776,44,3,01:37.4,204.771,1 +23248,963,830,9,33,3,2,2,2,18,56,2.443,5835219,44,2,01:37.4,204.925,1 +23249,963,3,131,6,2,3,3,3,15,56,25.516,5858292,44,1,01:36.4,206.948,1 +23250,963,8,6,7,6,4,4,4,12,56,28.785,5861561,47,4,01:37.5,204.736,1 +23251,963,822,3,77,11,5,5,5,10,56,+1:01.582,5894358,53,9,01:39.2,201.159,1 +23252,963,815,10,11,7,6,6,6,8,56,+1:03.794,5896570,51,11,01:39.3,200.898,1 +23253,963,4,1,14,22,7,7,7,6,56,+1:05.205,5897981,44,6,01:38.3,203.017,1 +23254,963,807,10,27,8,8,8,8,4,56,+1:14.062,5906838,43,5,01:37.8,204.051,1 +23255,963,18,1,22,9,9,9,9,2,56,+1:21.816,5914592,51,8,01:38.7,202.094,1 +23256,963,835,4,30,19,10,10,10,1,56,+1:35.466,5928242,53,12,01:39.4,200.853,1 +23257,963,832,5,55,16,11,11,11,0,56,+1:38.878,5931654,44,10,01:39.2,201.07,1 +23258,963,828,15,9,17,12,12,12,0,55,,,55,14,01:39.8,199.985,11 +23259,963,13,3,19,10,13,13,13,0,55,,,53,16,01:39.9,199.707,11 +23260,963,826,5,26,15,14,14,14,0,55,,,43,15,01:39.8,199.951,11 +23261,963,836,209,94,21,15,15,15,0,55,,,55,13,01:39.7,200.242,11 +23262,963,839,209,31,20,16,16,16,0,55,,,45,18,01:41.5,196.662,11 +23263,963,831,15,12,18,,R,17,0,46,,,43,17,01:40.5,198.574,23 +23264,963,1,131,44,1,,R,18,0,40,,,31,7,01:38.6,202.391,5 +23265,963,821,210,21,13,,R,19,0,39,,,37,19,01:41.8,196.067,61 +23266,963,825,4,20,14,,R,20,0,17,,,3,21,01:43.4,193.025,75 +23267,963,154,210,8,12,,R,21,0,7,,,7,20,01:42.1,195.363,23 +23268,963,20,6,5,5,,R,22,0,0,,,,0,,,4 +23269,964,3,131,6,1,1,1,1,25,53,26:43.3,5203333,31,5,01:36.0,217.651,1 +23270,964,830,9,33,3,2,2,2,18,53,4.978,5208311,43,6,01:36.4,216.89,1 +23271,964,1,131,44,2,3,3,3,15,53,5.776,5209109,36,2,01:35.2,219.703,1 +23272,964,20,6,5,6,4,4,4,12,53,20.269,5223602,36,1,01:35.1,219.781,1 +23273,964,8,6,7,8,5,5,5,10,53,28.37,5231703,33,4,01:36.0,217.785,1 +23274,964,817,9,3,4,6,6,6,8,53,33.941,5237274,36,3,01:35.5,218.877,1 +23275,964,815,10,11,5,7,7,7,6,53,57.495,5260828,31,7,01:36.8,216.061,1 +23276,964,807,10,27,9,8,8,8,4,53,59.177,5262510,39,10,01:37.4,214.74,1 +23277,964,13,3,19,12,9,9,9,2,53,+1:37.763,5301096,35,14,01:37.8,213.787,1 +23278,964,822,3,77,11,10,10,10,1,53,+1:38.323,5301656,33,15,01:37.8,213.658,1 +23279,964,154,210,8,7,11,11,11,0,53,+1:39.254,5302587,32,8,01:37.0,215.473,1 +23280,964,835,4,30,16,12,12,12,0,52,,,43,16,01:38.0,213.366,11 +23281,964,826,5,26,13,13,13,13,0,52,,,25,11,01:37.6,214.199,11 +23282,964,825,4,20,17,14,14,14,0,52,,,27,18,01:38.0,213.24,11 +23283,964,828,15,9,18,15,15,15,0,52,,,28,21,01:38.5,212.244,11 +23284,964,4,1,14,15,16,16,16,0,52,,,29,19,01:38.2,212.866,11 +23285,964,832,5,55,14,17,17,17,0,52,,,41,12,01:37.7,213.923,11 +23286,964,18,1,22,22,18,18,18,0,52,,,39,9,01:37.2,215.124,11 +23287,964,831,15,12,19,19,19,19,0,52,,,28,22,01:38.5,212.14,11 +23288,964,821,210,21,10,20,20,20,0,52,,,30,13,01:37.8,213.809,11 +23289,964,839,209,31,20,21,21,21,0,52,,,33,20,01:38.4,212.494,11 +23290,964,836,209,94,21,22,22,22,0,52,,,39,17,01:38.0,213.318,11 +23291,965,1,131,44,1,1,1,1,25,56,38:12.6,5892618,45,4,01:42.4,193.842,1 +23292,965,3,131,6,2,2,2,2,18,56,4.52,5897138,34,3,01:41.9,194.773,1 +23293,965,817,9,3,3,3,3,3,15,56,19.692,5912310,51,7,01:42.6,193.523,1 +23294,965,20,6,5,6,4,4,4,12,56,43.134,5935752,55,1,01:39.9,198.712,1 +23295,965,4,1,14,12,5,5,5,10,56,+1:33.953,5986571,36,10,01:43.5,191.752,1 +23296,965,832,5,55,10,6,6,6,8,56,+1:36.124,5988742,33,8,01:42.8,193.002,1 +23297,965,13,3,19,9,7,7,7,6,55,,,33,9,01:43.4,191.915,11 +23298,965,815,10,11,11,8,8,8,4,55,,,33,12,01:43.9,190.972,11 +23299,965,18,1,22,19,9,9,9,2,55,,,37,15,01:44.5,189.979,11 +23300,965,154,210,8,17,10,10,10,1,55,,,35,14,01:44.3,190.221,11 +23301,965,826,5,26,13,11,11,11,0,55,,,45,6,01:42.5,193.674,11 +23302,965,825,4,20,18,12,12,12,0,55,,,48,17,01:44.7,189.504,11 +23303,965,835,4,30,15,13,13,13,0,55,,,18,16,01:44.7,189.515,11 +23304,965,828,15,9,16,14,14,14,0,55,,,19,19,01:45.1,188.765,11 +23305,965,831,15,12,21,15,15,15,0,55,,,55,13,01:44.1,190.62,11 +23306,965,822,3,77,8,16,16,16,0,55,,,34,18,01:45.0,189.058,11 +23307,965,836,209,94,20,17,17,17,0,55,,,36,21,01:45.5,188.208,11 +23308,965,839,209,31,22,18,18,18,0,54,,,46,11,01:43.6,191.599,12 +23309,965,8,6,7,5,,R,19,0,38,,,26,2,01:41.8,194.88,36 +23310,965,830,9,33,4,,R,20,0,28,,,28,5,01:42.4,193.77,6 +23311,965,821,210,21,14,,R,21,0,16,,,15,20,01:45.4,188.364,23 +23312,965,807,10,27,7,,R,22,0,1,,,,0,,,4 +23313,966,1,131,44,1,1,1,1,25,71,40:31.4,6031402,66,4,01:22.6,187.592,1 +23314,966,3,131,6,2,2,2,2,18,71,8.354,6039756,43,5,01:22.8,187.148,1 +23315,966,817,9,3,4,3,3,3,15,71,20.858,6052260,53,1,01:21.1,190.972,1 +23316,966,830,9,33,3,4,4,4,12,71,21.323,6052725,66,6,01:22.9,186.934,1 +23317,966,20,6,5,7,5,5,5,10,71,27.313,6058715,61,2,01:22.5,187.817,1 +23318,966,8,6,7,6,6,6,6,8,71,49.376,6080778,47,3,01:22.5,187.783,1 +23319,966,807,10,27,5,7,7,7,6,71,58.891,6090293,50,9,01:23.3,186.034,1 +23320,966,822,3,77,8,8,8,8,4,71,+1:05.612,6097014,65,11,01:23.5,185.472,1 +23321,966,13,3,19,9,9,9,9,2,71,+1:16.206,6107608,64,12,01:23.6,185.392,1 +23322,966,815,10,11,12,10,10,10,1,71,+1:16.798,6108200,62,13,01:23.6,185.324,1 +23323,966,828,15,9,15,11,11,11,0,70,,,65,18,01:24.3,183.713,11 +23324,966,18,1,22,13,12,12,12,0,70,,,70,17,01:23.8,184.948,11 +23325,966,4,1,14,11,13,13,13,0,70,,,69,16,01:23.7,185.189,11 +23326,966,835,4,30,21,14,14,14,0,70,,,64,20,01:24.6,183.205,11 +23327,966,831,15,12,19,15,15,15,0,70,,,58,15,01:23.7,185.213,11 +23328,966,832,5,55,10,16,16,16,0,70,,,52,19,01:24.5,183.437,11 +23329,966,825,4,20,14,17,17,17,0,70,,,53,7,01:23.1,186.351,11 +23330,966,826,5,26,18,18,18,18,0,70,,,59,14,01:23.6,185.299,11 +23331,966,821,210,21,17,19,19,19,0,70,,,63,10,01:23.5,185.659,11 +23332,966,154,210,8,22,20,20,20,0,70,,,53,8,01:23.3,186.056,11 +23333,966,839,209,31,20,21,21,21,0,69,,,43,21,01:25.0,182.364,12 +23334,966,836,209,94,16,,R,22,0,0,,,,0,,,4 +23335,967,1,131,44,1,1,1,1,25,71,01:01.3,10861335,44,3,01:25.6,181.137,1 +23336,967,3,131,6,2,2,2,2,18,71,11.455,10872790,47,6,01:26.2,179.912,1 +23337,967,830,9,33,4,3,3,3,15,71,21.481,10882816,67,1,01:25.3,181.846,1 +23338,967,815,10,11,9,4,4,4,12,71,25.346,10886681,41,11,01:27.1,178.113,1 +23339,967,20,6,5,5,5,5,5,10,71,26.334,10887669,70,5,01:26.2,179.968,1 +23340,967,832,5,55,15,6,6,6,8,71,29.16,10890495,38,13,01:27.2,177.99,1 +23341,967,807,10,27,8,7,7,7,6,71,29.827,10891162,69,8,01:26.7,178.862,1 +23342,967,817,9,3,6,8,8,8,4,71,30.486,10891821,42,2,01:25.5,181.363,1 +23343,967,831,15,12,21,9,9,9,2,71,42.62,10903955,70,15,01:27.5,177.189,1 +23344,967,4,1,14,10,10,10,10,1,71,44.432,10905767,70,12,01:27.1,178.09,1 +23345,967,822,3,77,11,11,11,11,0,71,45.292,10906627,70,4,01:26.1,180.246,1 +23346,967,839,209,31,22,12,12,12,0,71,45.809,10907144,47,16,01:27.8,176.686,1 +23347,967,826,5,26,14,13,13,13,0,71,51.192,10912527,42,14,01:27.5,177.333,1 +23348,967,825,4,20,18,14,14,14,0,71,51.555,10912890,69,7,01:26.5,179.284,1 +23349,967,836,209,94,19,15,15,15,0,71,+1:00.498,10921833,69,18,01:27.9,176.439,1 +23350,967,18,1,22,17,16,16,16,0,71,+1:21.994,10943329,38,10,01:27.0,178.338,1 +23351,967,821,210,21,12,,R,17,0,60,,,43,17,01:27.8,176.668,31 +23352,967,13,3,19,13,,R,18,0,46,,,39,9,01:26.8,178.782,4 +23353,967,835,4,30,16,,R,19,0,20,,,11,21,01:34.3,164.441,130 +23354,967,8,6,7,3,,R,20,0,19,,,12,19,01:28.8,174.596,4 +23355,967,828,15,9,20,,R,21,0,11,,,11,20,01:31.3,169.97,4 +23356,967,154,210,8,7,,W,22,0,0,,,,0,,,54 +23357,968,1,131,44,1,1,1,1,25,55,38:04.0,5884013,37,5,01:45.1,190.174,1 +23358,968,3,131,6,2,2,2,2,18,55,0.439,5884452,33,9,01:45.3,189.95,1 +23359,968,20,6,5,5,3,3,3,15,55,0.843,5884856,43,1,01:43.7,192.756,1 +23360,968,830,9,33,6,4,4,4,12,55,1.685,5885698,36,7,01:45.2,190.084,1 +23361,968,817,9,3,3,5,5,5,10,55,5.315,5889328,29,3,01:44.9,190.624,1 +23362,968,8,6,7,4,6,6,6,8,55,18.816,5902829,35,6,01:45.2,190.127,1 +23363,968,807,10,27,7,7,7,7,6,55,50.114,5934127,31,13,01:45.9,188.717,1 +23364,968,815,10,11,8,8,8,8,4,55,58.776,5942789,30,8,01:45.2,189.972,1 +23365,968,13,3,19,10,9,9,9,2,55,59.436,5943449,33,10,01:45.7,189.206,1 +23366,968,4,1,14,9,10,10,10,1,55,59.896,5943909,50,2,01:44.5,191.343,1 +23367,968,154,210,8,14,11,11,11,0,55,+1:16.777,5960790,45,4,01:45.0,190.477,1 +23368,968,821,210,21,13,12,12,12,0,55,+1:35.113,5979126,45,12,01:45.9,188.754,1 +23369,968,839,209,31,20,13,13,13,0,54,,,46,15,01:46.2,188.29,11 +23370,968,836,209,94,16,14,14,14,0,54,,,26,14,01:46.1,188.368,11 +23371,968,828,15,9,22,15,15,15,0,54,,,40,16,01:46.2,188.242,11 +23372,968,831,15,12,19,16,16,16,0,54,,,44,17,01:46.3,188.117,11 +23373,968,835,4,30,15,17,17,17,0,54,,,46,11,01:45.7,189.134,11 +23374,968,832,5,55,21,,R,18,0,41,,,30,18,01:46.6,187.58,130 +23375,968,826,5,26,17,,R,19,0,14,,,13,21,01:48.8,183.853,6 +23376,968,18,1,22,12,,R,20,0,12,,,4,22,01:48.8,183.851,22 +23377,968,822,3,77,11,,R,21,0,6,,,4,19,01:47.8,185.413,22 +23378,968,825,4,20,18,,R,22,0,5,,,4,20,01:48.6,184.108,22 +23379,969,20,6,5,2,1,1,1,25,57,24:11.7,5051672,53,3,01:26.6,220.351,1 +23380,969,1,131,44,1,2,2,2,18,57,9.975,5061647,44,6,01:27.0,219.351,1 +23381,969,822,131,77,3,3,3,3,15,57,11.25,5062922,56,2,01:26.6,220.465,1 +23382,969,8,6,7,4,4,4,4,12,57,22.393,5074065,56,1,01:26.5,220.605,1 +23383,969,830,9,33,5,5,5,5,10,57,28.827,5080499,43,5,01:27.0,219.525,1 +23384,969,13,3,19,7,6,6,6,8,57,+1:23.386,5135058,49,9,01:28.0,216.83,1 +23385,969,815,10,11,10,7,7,7,6,56,,,56,10,01:28.3,216.115,11 +23386,969,832,5,55,8,8,8,8,4,56,,,53,8,01:27.7,217.74,11 +23387,969,826,5,26,9,9,9,9,2,56,,,51,4,01:26.7,220.165,11 +23388,969,839,10,31,13,10,10,10,1,56,,,55,11,01:28.5,215.776,11 +23389,969,807,4,27,11,11,11,11,0,56,,,55,12,01:28.5,215.749,11 +23390,969,841,15,36,16,12,12,12,0,55,,,51,13,01:29.1,214.378,12 +23391,969,838,1,2,18,13,13,13,0,55,,,53,15,01:29.4,213.448,12 +23392,969,4,1,14,12,,R,14,0,50,,,48,17,01:30.1,211.938,76 +23393,969,825,210,20,17,,R,15,0,46,,,46,7,01:27.6,218.011,22 +23394,969,840,3,18,20,,R,16,0,40,,,38,14,01:29.4,213.569,23 +23395,969,817,9,3,0,,R,17,0,25,,,21,16,01:29.4,213.431,131 +23396,969,828,15,9,14,,R,18,0,21,,,18,19,01:32.1,207.391,9 +23397,969,835,4,30,19,,R,19,0,15,,,6,20,01:32.2,207.069,23 +23398,969,154,210,8,6,,R,20,0,13,,,12,18,01:30.2,211.689,47 +23399,970,1,131,44,1,1,1,1,25,56,37:36.2,5856158,44,1,01:35.4,205.745,1 +23400,970,20,6,5,2,2,2,2,18,56,6.25,5862408,40,2,01:35.4,205.648,1 +23401,970,830,9,33,16,3,3,3,15,56,45.192,5901350,31,7,01:36.7,202.886,1 +23402,970,817,9,3,5,4,4,4,12,56,46.035,5902193,36,8,01:36.8,202.741,1 +23403,970,8,6,7,4,5,5,5,10,56,48.076,5904234,42,4,01:36.0,204.406,1 +23404,970,822,131,77,3,6,6,6,8,56,48.808,5904966,41,3,01:35.8,204.734,1 +23405,970,832,5,55,11,7,7,7,6,56,+1:12.893,5929051,30,10,01:37.4,201.478,1 +23406,970,825,210,20,12,8,8,8,4,55,,,35,11,01:37.5,201.209,11 +23407,970,815,10,11,8,9,9,9,2,55,,,55,6,01:36.5,203.288,11 +23408,970,839,10,31,17,10,10,10,1,55,,,55,9,01:37.0,202.23,11 +23409,970,154,210,8,19,11,11,11,0,55,,,50,12,01:37.6,201.162,11 +23410,970,807,4,27,7,12,12,12,0,55,,,36,13,01:38.0,200.21,11 +23411,970,835,4,30,20,13,13,13,0,55,,,47,14,01:38.2,199.871,11 +23412,970,13,3,19,6,14,14,14,0,55,,,50,5,01:36.5,203.33,11 +23413,970,828,15,9,14,15,15,15,0,55,,,50,16,01:39.7,196.763,11 +23414,970,4,1,14,13,,R,16,0,33,,,31,15,01:39.5,197.23,30 +23415,970,826,5,26,9,,R,17,0,18,,,18,17,01:40.1,196.059,9 +23416,970,838,1,2,15,,R,18,0,17,,,15,18,01:41.5,193.412,32 +23417,970,841,15,36,18,,R,19,0,3,,,,0,,,3 +23418,970,840,3,18,10,,R,20,0,0,,,,0,,,4 +23419,971,20,6,5,3,1,1,1,25,57,33:53.4,5633374,36,4,01:33.8,207.652,1 +23420,971,1,131,44,2,2,2,2,18,57,6.66,5640034,46,1,01:32.8,209.952,1 +23421,971,822,131,77,1,3,3,3,15,57,20.397,5653771,33,5,01:34.1,207.076,1 +23422,971,8,6,7,5,4,4,4,12,57,22.475,5655849,55,3,01:33.7,207.887,1 +23423,971,817,9,3,4,5,5,5,10,57,39.346,5672720,42,2,01:33.5,208.387,1 +23424,971,13,3,19,8,6,6,6,8,57,54.326,5687700,39,6,01:34.3,206.705,1 +23425,971,815,10,11,18,7,7,7,6,57,+1:02.606,5695980,39,7,01:34.6,205.933,1 +23426,971,154,210,8,9,8,8,8,4,57,+1:14.865,5708239,33,8,01:34.9,205.198,1 +23427,971,807,4,27,7,9,9,9,2,57,+1:20.188,5713562,40,12,01:35.4,204.286,1 +23428,971,839,10,31,14,10,10,10,1,57,+1:35.711,5729085,39,11,01:35.2,204.7,1 +23429,971,836,15,94,13,11,11,11,0,56,,,43,17,01:36.8,201.301,11 +23430,971,826,5,26,11,12,12,12,0,56,,,45,9,01:35.0,205.118,11 +23431,971,835,4,30,10,13,13,13,0,56,,,43,13,01:35.6,203.901,11 +23432,971,4,1,14,15,14,14,14,0,54,,,47,14,01:35.6,203.809,131 +23433,971,828,15,9,19,,R,15,0,50,,,35,10,01:35.1,204.9,6 +23434,971,832,5,55,16,,R,16,0,12,,,8,18,01:38.0,198.755,4 +23435,971,840,3,18,12,,R,17,0,12,,,10,15,01:36.3,202.311,4 +23436,971,830,9,33,6,,R,18,0,11,,,4,16,01:36.7,201.52,23 +23437,971,825,210,20,20,,R,19,0,8,,,6,19,01:38.7,197.362,10 +23438,971,838,1,2,17,,R,20,0,0,,,,0,,,131 +23439,972,822,131,77,3,1,1,1,25,52,28:08.7,5288743,49,3,01:37.4,216.221,1 +23440,972,20,6,5,1,2,2,2,18,52,0.617,5289360,49,2,01:37.3,216.343,1 +23441,972,8,6,7,2,3,3,3,15,52,11,5299743,49,1,01:36.8,217.388,1 +23442,972,1,131,44,4,4,4,4,12,52,36.32,5325063,18,6,01:38.4,213.955,1 +23443,972,830,9,33,7,5,5,5,10,52,+1:00.416,5349159,47,8,01:38.4,213.888,1 +23444,972,815,10,11,9,6,6,6,8,52,+1:26.788,5375531,51,9,01:38.7,213.385,1 +23445,972,839,10,31,10,7,7,7,6,52,+1:35.004,5383747,50,10,01:38.7,213.203,1 +23446,972,807,4,27,8,8,8,8,4,52,+1:36.188,5384931,52,7,01:38.4,213.912,1 +23447,972,13,3,19,6,9,9,9,2,51,,,45,4,01:38.2,214.317,11 +23448,972,832,5,55,14,10,10,10,1,51,,,51,11,01:38.9,212.96,11 +23449,972,840,3,18,11,11,11,11,0,51,,,50,12,01:38.9,212.934,11 +23450,972,826,5,26,12,12,12,12,0,51,,,50,5,01:38.3,214.168,11 +23451,972,825,210,20,13,13,13,13,0,51,,,40,13,01:39.6,211.445,11 +23452,972,838,1,2,20,14,14,14,0,51,,,47,14,01:39.8,210.971,11 +23453,972,828,15,9,18,15,15,15,0,51,,,48,15,01:39.8,210.875,11 +23454,972,836,15,94,17,16,16,16,0,50,,,37,16,01:40.9,208.604,12 +23455,972,817,9,3,5,,R,17,0,5,,,4,17,01:42.3,205.824,23 +23456,972,835,4,30,16,,R,18,0,0,,,,0,,,4 +23457,972,154,210,8,19,,R,19,0,0,,,,0,,,4 +23458,972,4,1,14,15,,W,20,0,0,,,,0,,,131 +23459,973,1,131,44,1,1,1,1,25,66,35:56.5,5756497,64,1,01:23.6,200.471,1 +23460,973,20,6,5,2,2,2,2,18,66,3.49,5759987,43,2,01:23.7,200.277,1 +23461,973,817,9,3,6,3,3,3,15,66,+1:15.820,5832317,40,3,01:23.7,200.248,1 +23462,973,815,10,11,8,4,4,4,12,65,,,51,7,01:25.8,195.417,11 +23463,973,839,10,31,10,5,5,5,10,65,,,40,11,01:26.3,194.237,11 +23464,973,807,4,27,13,6,6,6,8,65,,,56,15,01:26.7,193.28,11 +23465,973,832,5,55,12,7,7,7,6,65,,,61,9,01:26.2,194.439,11 +23466,973,836,15,94,15,8,8,8,4,65,,,58,14,01:26.5,193.787,11 +23467,973,826,5,26,19,9,9,9,2,65,,,37,8,01:26.0,194.914,11 +23468,973,154,210,8,14,10,10,10,1,65,,,50,17,01:26.9,192.906,11 +23469,973,828,15,9,16,11,11,11,0,64,,,60,10,01:26.2,194.379,12 +23470,973,4,1,14,7,12,12,12,0,64,,,64,4,01:23.9,199.752,12 +23471,973,13,3,19,9,13,13,13,0,64,,,64,13,01:26.5,193.796,12 +23472,973,825,210,20,11,14,14,14,0,64,,,15,12,01:26.4,194.023,12 +23473,973,835,4,30,17,15,15,15,0,64,,,44,6,01:24.8,197.517,12 +23474,973,840,3,18,18,16,16,16,0,64,,,50,16,01:26.8,192.98,12 +23475,973,822,131,77,3,,R,17,0,38,,,28,5,01:24.7,197.86,131 +23476,973,838,1,2,20,,R,18,0,32,,,14,18,01:27.6,191.401,4 +23477,973,830,9,33,5,,R,19,0,1,,,,0,,,130 +23478,973,8,6,7,4,,R,20,0,0,,,,0,,,130 +23479,974,20,6,5,2,1,1,1,25,78,44:44.3,6284340,38,2,01:15.2,159.669,1 +23480,974,8,6,7,1,2,2,2,18,78,3.145,6287485,39,3,01:15.5,159.058,1 +23481,974,817,9,3,5,3,3,3,15,78,3.745,6288085,51,4,01:15.8,158.577,1 +23482,974,822,131,77,3,4,4,4,12,78,5.517,6289857,22,9,01:16.4,157.16,1 +23483,974,830,9,33,4,5,5,5,10,78,6.199,6290539,56,8,01:16.3,157.387,1 +23484,974,832,5,55,6,6,6,6,8,78,12.038,6296378,39,14,01:16.6,156.73,1 +23485,974,1,131,44,13,7,7,7,6,78,15.801,6300141,54,5,01:15.8,158.433,1 +23486,974,154,210,8,8,8,8,8,4,78,18.15,6302490,45,18,01:17.1,155.823,1 +23487,974,13,3,19,14,9,9,9,2,78,19.445,6303785,50,12,01:16.5,156.947,1 +23488,974,825,210,20,11,10,10,10,1,78,21.443,6305783,44,7,01:16.3,157.42,1 +23489,974,835,4,30,16,11,11,11,0,78,22.737,6307077,55,13,01:16.6,156.801,1 +23490,974,839,10,31,15,12,12,12,0,78,23.725,6308065,52,10,01:16.5,157.072,1 +23491,974,815,10,11,7,13,13,13,0,78,39.089,6323429,76,1,01:14.8,160.561,1 +23492,974,826,5,26,9,14,14,14,0,71,,,43,11,01:16.5,156.955,130 +23493,974,840,3,18,17,15,15,15,0,71,,,71,6,01:16.1,157.912,23 +23494,974,838,1,2,12,,R,16,0,66,,,45,15,01:16.7,156.697,3 +23495,974,828,15,9,19,,R,17,0,63,,,39,16,01:16.8,156.362,3 +23496,974,18,1,22,20,,R,18,0,57,,,47,17,01:16.9,156.194,130 +23497,974,836,15,94,18,,R,19,0,57,,,25,20,01:18.0,153.948,4 +23498,974,807,4,27,10,,R,20,0,15,,,13,19,01:17.9,154.242,6 +23499,975,1,131,44,1,1,1,1,25,70,33:05.2,5585154,64,1,01:14.6,210.588,1 +23500,975,822,131,77,3,2,2,2,18,70,19.783,5604937,65,5,01:15.9,206.862,1 +23501,975,817,9,3,6,3,3,3,15,70,35.297,5620451,67,8,01:16.2,206.126,1 +23502,975,20,6,5,2,4,4,4,12,70,35.907,5621061,70,2,01:14.7,210.115,1 +23503,975,815,10,11,8,5,5,5,10,70,40.476,5625630,62,11,01:16.4,205.58,1 +23504,975,839,10,31,9,6,6,6,8,70,40.716,5625870,68,9,01:16.2,205.904,1 +23505,975,8,6,7,4,7,7,7,6,70,58.632,5643786,59,3,01:15.4,208.25,1 +23506,975,807,4,27,10,8,8,8,4,70,+1:00.374,5645528,64,7,01:16.1,206.204,1 +23507,975,840,3,18,17,9,9,9,2,69,,,64,6,01:16.0,206.63,11 +23508,975,154,210,8,14,10,10,10,1,69,,,58,15,01:16.9,204.026,11 +23509,975,835,4,30,15,11,11,11,0,69,,,64,12,01:16.7,204.677,11 +23510,975,825,210,20,18,12,12,12,0,69,,,65,10,01:16.3,205.65,11 +23511,975,828,15,9,19,13,13,13,0,69,,,50,16,01:17.0,203.904,11 +23512,975,838,1,2,16,14,14,14,0,69,,,69,14,01:16.8,204.491,11 +23513,975,836,15,94,20,15,15,15,0,68,,,66,17,01:17.1,203.65,12 +23514,975,4,1,14,12,16,16,16,0,66,,,63,4,01:15.9,206.974,131 +23515,975,826,5,26,11,,R,17,0,54,,,33,13,01:16.7,204.653,131 +23516,975,830,9,33,5,,R,18,0,10,,,9,18,01:17.2,203.396,10 +23517,975,13,3,19,7,,R,19,0,0,,,,0,,,4 +23518,975,832,5,55,13,,R,20,0,0,,,,0,,,4 +23519,976,817,9,3,10,1,1,1,25,51,03:55.6,7435573,46,4,01:44.9,206.048,1 +23520,976,822,131,77,2,2,2,2,18,51,3.904,7439477,51,3,01:43.9,207.946,1 +23521,976,840,3,18,8,3,3,3,15,51,4.009,7439582,44,5,01:45.1,205.605,1 +23522,976,20,6,5,4,4,4,4,12,51,5.976,7441549,47,1,01:43.4,208.919,1 +23523,976,1,131,44,1,5,5,5,10,51,6.188,7441761,46,2,01:43.5,208.862,1 +23524,976,839,10,31,7,6,6,6,8,51,30.298,7465871,39,9,01:45.6,204.581,1 +23525,976,825,210,20,12,7,7,7,6,51,41.753,7477326,45,11,01:46.3,203.277,1 +23526,976,832,5,55,15,8,8,8,4,51,49.4,7484973,46,10,01:45.9,204.133,1 +23527,976,4,1,14,19,9,9,9,2,51,59.551,7495124,49,6,01:45.2,205.488,1 +23528,976,836,15,94,14,10,10,10,1,51,+1:29.093,7524666,46,15,01:47.1,201.743,1 +23529,976,828,15,9,17,11,11,11,0,51,+1:31.794,7527367,45,16,01:47.2,201.619,1 +23530,976,838,1,2,18,12,12,12,0,51,+1:32.160,7527733,45,13,01:46.6,202.636,1 +23531,976,154,210,8,16,13,13,13,0,50,,,45,14,01:46.8,202.289,11 +23532,976,8,6,7,3,14,14,14,0,46,,,44,7,01:45.5,204.76,34 +23533,976,815,10,11,6,,R,15,0,39,,,37,8,01:45.6,204.67,136 +23534,976,13,3,19,9,,R,16,0,25,,,10,17,01:47.3,201.33,22 +23535,976,807,4,27,13,,R,17,0,24,,,9,19,01:48.5,199.111,3 +23536,976,830,9,33,5,,R,18,0,12,,,10,12,01:46.4,203.112,51 +23537,976,826,5,26,11,,R,19,0,9,,,9,18,01:48.4,199.372,84 +23538,976,835,4,30,20,,R,20,0,7,,,5,20,01:51.7,193.518,131 +23539,841,24,164,23,0,,F,23,0,0,,,,0,,,81 +23540,841,39,164,22,0,,F,24,0,0,,,,0,,,81 +23541,846,815,15,17,0,,W,24,0,0,,,,0,,,82 +23542,977,822,131,77,1,1,1,1,25,71,21:48.5,4908523,51,5,01:07.8,229.115,1 +23543,977,20,6,5,2,2,2,2,18,71,0.658,4909181,69,4,01:07.5,230.306,1 +23544,977,817,9,3,4,3,3,3,15,71,6.012,4914535,69,2,01:07.4,230.491,1 +23545,977,1,131,44,8,4,4,4,12,71,7.43,4915953,69,1,01:07.4,230.597,1 +23546,977,8,6,7,3,5,5,5,10,71,20.37,4928893,68,3,01:07.5,230.341,1 +23547,977,154,210,8,6,6,6,6,8,71,+1:13.160,4981683,65,10,01:08.6,226.633,1 +23548,977,815,10,11,7,7,7,7,6,70,,,58,9,01:08.5,227.03,11 +23549,977,839,10,31,9,8,8,8,4,70,,,68,12,01:08.7,226.405,11 +23550,977,13,3,19,17,9,9,9,2,70,,,49,7,01:08.4,227.2,11 +23551,977,840,3,18,18,10,10,10,1,70,,,67,13,01:08.8,226.017,11 +23552,977,835,4,30,16,11,11,11,0,70,,,64,11,01:08.7,226.428,11 +23553,977,838,1,2,13,12,12,12,0,70,,,67,8,01:08.4,227.19,11 +23554,977,807,4,27,11,13,13,13,0,70,,,64,14,01:09.0,225.146,11 +23555,977,836,15,94,20,14,14,14,0,70,,,60,16,01:09.2,224.502,11 +23556,977,828,15,9,19,15,15,15,0,69,,,56,17,01:09.3,224.363,12 +23557,977,826,5,26,14,16,16,16,0,68,,,57,6,01:08.1,228.395,13 +23558,977,832,5,55,10,,R,17,0,44,,,42,15,01:09.1,224.798,5 +23559,977,825,210,20,15,,R,18,0,29,,,23,18,01:10.4,220.8,9 +23560,977,4,1,14,12,,R,19,0,1,,,,0,,,130 +23561,977,830,9,33,5,,R,20,0,0,,,,0,,,130 +23562,978,1,131,44,1,1,1,1,25,51,21:27.4,4887430,48,1,01:30.6,234.025,1 +23563,978,822,131,77,9,2,2,2,18,51,14.063,4901493,46,3,01:30.9,233.294,1 +23564,978,8,6,7,2,3,3,3,15,51,36.57,4924000,44,4,01:31.5,231.733,1 +23565,978,830,9,33,4,4,4,4,12,51,52.125,4939555,51,2,01:30.7,233.878,1 +23566,978,817,9,3,19,5,5,5,10,51,+1:05.955,4953385,47,6,01:31.9,230.833,1 +23567,978,807,4,27,5,6,6,6,8,51,+1:08.109,4955539,43,8,01:32.6,229.08,1 +23568,978,20,6,5,3,7,7,7,6,51,+1:33.989,4981419,38,5,01:31.9,230.838,1 +23569,978,839,10,31,7,8,8,8,4,50,,,39,15,01:33.5,226.768,11 +23570,978,815,10,11,6,9,9,9,2,50,,,42,14,01:33.5,226.809,11 +23571,978,13,3,19,14,10,10,10,1,50,,,39,16,01:33.6,226.668,11 +23572,978,838,1,2,8,11,11,11,0,50,,,43,13,01:33.5,226.906,11 +23573,978,825,210,20,16,12,12,12,0,50,,,41,9,01:32.7,228.818,11 +23574,978,154,210,8,10,13,13,13,0,50,,,45,7,01:32.3,229.793,11 +23575,978,828,15,9,18,14,14,14,0,50,,,30,10,01:33.1,227.747,11 +23576,978,826,5,26,12,15,15,15,0,50,,,29,17,01:33.6,226.591,11 +23577,978,840,3,18,15,16,16,16,0,50,,,44,12,01:33.4,227.062,11 +23578,978,836,15,94,17,17,17,17,0,50,,,34,11,01:33.3,227.203,11 +23579,978,4,1,14,20,,R,18,0,32,,,22,18,01:34.3,224.983,131 +23580,978,832,5,55,13,,R,19,0,0,,,,0,,,130 +23581,978,835,4,30,11,,R,20,0,0,,,,0,,,9 +23582,979,20,6,5,1,1,1,1,25,70,39:46.7,5986713,69,4,01:20.8,195.176,1 +23583,979,8,6,7,2,2,2,2,18,70,0.908,5987621,70,2,01:20.5,196.015,1 +23584,979,822,131,77,3,3,3,3,15,70,12.462,5999175,68,6,01:21.2,194.198,1 +23585,979,1,131,44,4,4,4,4,12,70,12.885,5999598,66,5,01:20.8,195.149,1 +23586,979,830,9,33,5,5,5,5,10,70,13.276,5999989,44,3,01:20.5,195.944,1 +23587,979,4,1,14,7,6,6,6,8,70,+1:11.223,6057936,69,1,01:20.2,196.697,1 +23588,979,832,5,55,9,7,7,7,6,69,,,67,11,01:21.9,192.639,11 +23589,979,815,10,11,13,8,8,8,4,69,,,68,14,01:22.1,192.09,11 +23590,979,839,10,31,11,9,9,9,2,69,,,60,15,01:22.4,191.33,11 +23591,979,838,1,2,8,10,10,10,1,69,,,44,12,01:22.0,192.43,11 +23592,979,826,5,26,16,11,11,11,0,69,,,42,9,01:21.6,193.206,11 +23593,979,835,4,30,10,12,12,12,0,69,,,68,7,01:21.6,193.305,11 +23594,979,825,210,20,15,13,13,13,0,69,,,67,13,01:22.1,192.102,11 +23595,979,840,3,18,17,14,14,14,0,69,,,53,16,01:22.8,190.409,11 +23596,979,836,15,94,18,15,15,15,0,68,,,50,18,01:23.6,188.716,12 +23597,979,828,15,9,20,16,16,16,0,68,,,66,10,01:21.8,192.92,12 +23598,979,807,4,27,12,17,17,17,0,67,,,61,8,01:21.6,193.253,23 +23599,979,814,3,40,19,,R,18,0,60,,,49,17,01:23.2,189.466,44 +23600,979,154,210,8,14,,R,19,0,20,,,19,19,01:24.7,186.201,61 +23601,979,817,9,3,6,,R,20,0,0,,,,0,,,4 +23602,980,1,131,44,1,1,1,1,25,44,24:42.8,5082820,35,2,01:46.6,236.526,1 +23603,980,20,6,5,2,2,2,2,18,44,2.358,5085178,41,1,01:46.6,236.583,1 +23604,980,817,9,3,6,3,3,3,15,44,10.791,5093611,44,3,01:47.5,234.445,1 +23605,980,8,6,7,4,4,4,4,12,44,14.471,5097291,36,5,01:47.7,234.051,1 +23606,980,822,131,77,3,5,5,5,10,44,16.456,5099276,37,4,01:47.7,234.071,1 +23607,980,807,4,27,7,6,6,6,8,44,28.087,5110907,39,7,01:48.9,231.49,1 +23608,980,154,210,8,11,7,7,7,6,44,31.553,5114373,37,8,01:49.1,231.14,1 +23609,980,13,3,19,16,8,8,8,4,44,36.649,5119469,37,11,01:49.6,229.98,1 +23610,980,839,10,31,9,9,9,9,2,44,38.154,5120974,37,14,01:49.7,229.804,1 +23611,980,832,5,55,13,10,10,10,1,44,39.447,5122267,39,13,01:49.7,229.829,1 +23612,980,840,3,18,15,11,11,11,0,44,48.999,5131819,41,16,01:50.5,228.095,1 +23613,980,826,5,26,19,12,12,12,0,44,49.94,5132760,39,12,01:49.7,229.831,1 +23614,980,835,4,30,14,13,13,13,0,44,53.239,5136059,44,10,01:49.3,230.725,1 +23615,980,838,1,2,20,14,14,14,0,44,57.078,5139898,44,15,01:49.9,229.415,1 +23616,980,825,210,20,12,15,15,15,0,44,+1:07.262,5150082,36,9,01:49.1,231.057,1 +23617,980,828,15,9,17,16,16,16,0,44,+1:09.711,5152531,25,17,01:50.8,227.618,1 +23618,980,815,10,11,8,17,17,17,0,42,,,27,6,01:48.3,232.819,6 +23619,980,4,1,14,10,,R,18,0,25,,,12,19,01:51.7,225.692,5 +23620,980,830,9,33,5,,R,19,0,7,,,5,18,01:51.0,227.111,5 +23621,980,836,15,94,18,,R,20,0,2,,,,0,,,4 +23622,981,1,131,44,1,1,1,1,25,53,15:32.3,4532312,50,2,01:23.5,249.793,1 +23623,981,822,131,77,4,2,2,2,18,53,4.471,4536783,53,3,01:23.5,249.095,1 +23624,981,20,6,5,6,3,3,3,15,53,36.317,4568629,51,4,01:23.9,248.576,1 +23625,981,817,9,3,16,4,4,4,12,53,40.335,4572647,49,1,01:23.4,250.174,1 +23626,981,8,6,7,5,5,5,5,10,53,+1:00.082,4592394,43,8,01:25.1,245.194,1 +23627,981,839,10,31,3,6,6,6,8,53,+1:11.528,4603840,53,11,01:25.1,243.482,1 +23628,981,840,3,18,2,7,7,7,6,53,+1:14.156,4606468,51,10,01:25.6,243.559,1 +23629,981,13,3,19,7,8,8,8,4,53,+1:14.834,4607146,30,9,01:25.5,243.981,1 +23630,981,815,10,11,10,9,9,9,2,53,+1:15.276,4607588,48,6,01:25.0,245.442,1 +23631,981,830,9,33,13,10,10,10,1,52,,,48,5,01:24.4,247.238,11 +23632,981,825,210,20,9,11,11,11,0,52,,,48,15,01:26.0,242.393,11 +23633,981,826,5,26,8,12,12,12,0,52,,,43,14,01:25.9,242.796,11 +23634,981,807,4,27,14,13,13,13,0,52,,,46,16,01:26.1,242.128,11 +23635,981,832,5,55,15,14,14,14,0,52,,,46,17,01:26.2,241.906,11 +23636,981,154,210,8,20,15,15,15,0,52,,,48,7,01:25.0,245.292,11 +23637,981,836,15,94,12,16,16,16,0,51,,,47,18,01:26.5,240.965,12 +23638,981,4,1,14,19,17,17,17,0,50,,,44,13,01:25.9,242.861,6 +23639,981,828,15,9,11,18,18,18,0,49,,,20,20,01:27.7,237.897,6 +23640,981,838,1,2,18,,R,19,0,33,,,30,19,01:26.9,239.953,5 +23641,981,835,4,30,17,,R,20,0,29,,,27,12,01:25.8,243.198,5 +23642,982,1,131,44,5,1,1,1,25,58,03:23.5,7403544,55,1,01:45.0,173.643,1 +23643,982,817,9,3,3,2,2,2,18,58,4.507,7408051,57,2,01:45.3,173.16,1 +23644,982,822,131,77,6,3,3,3,15,58,8.8,7412344,54,3,01:45.4,172.989,1 +23645,982,832,5,55,10,4,4,4,12,58,22.822,7426366,52,4,01:46.5,171.151,1 +23646,982,815,10,11,12,5,5,5,10,58,25.359,7428903,52,7,01:46.7,170.84,1 +23647,982,835,4,30,11,6,6,6,8,58,27.259,7430803,52,5,01:46.7,170.855,1 +23648,982,838,1,2,9,7,7,7,6,58,30.388,7433932,57,6,01:46.7,170.855,1 +23649,982,840,3,18,18,8,8,8,4,58,41.696,7445240,55,9,01:47.5,169.599,1 +23650,982,154,210,8,15,9,9,9,2,58,43.282,7446826,54,11,01:47.6,169.402,1 +23651,982,839,10,31,14,10,10,10,1,58,44.795,7448339,52,12,01:47.7,169.339,1 +23652,982,13,3,19,17,11,11,11,0,58,46.536,7450080,58,8,01:47.1,170.323,1 +23653,982,836,15,94,19,12,12,12,0,56,,,56,14,01:49.1,167.19,12 +23654,982,825,210,20,16,,R,13,0,50,,,44,10,01:47.6,169.484,5 +23655,982,807,4,27,7,,R,14,0,48,,,37,13,01:48.0,168.816,5 +23656,982,828,15,9,20,,R,15,0,35,,,35,15,01:52.5,162.085,3 +23657,982,826,5,26,13,,R,16,0,10,,,10,16,02:10.5,139.711,3 +23658,982,4,1,14,8,,R,17,0,8,,,6,17,02:13.6,136.503,130 +23659,982,20,6,5,1,,R,18,0,0,,,,0,,,3 +23660,982,830,9,33,2,,R,19,0,0,,,,0,,,3 +23661,982,8,6,7,4,,R,20,0,0,,,,0,,,3 +23662,983,830,9,33,3,1,1,1,25,56,30:01.3,5401290,50,4,01:34.5,211.235,1 +23663,983,1,131,44,1,2,2,2,18,56,12.77,5414060,48,3,01:34.5,211.269,1 +23664,983,817,9,3,4,3,3,3,15,56,22.519,5423809,55,5,01:34.8,210.56,1 +23665,983,20,6,5,20,4,4,4,12,56,37.362,5438652,41,1,01:34.1,212.104,1 +23666,983,822,131,77,5,5,5,5,10,56,56.021,5457311,44,6,01:35.3,209.424,1 +23667,983,815,10,11,9,6,6,6,8,56,+1:18.630,5479920,32,7,01:35.6,208.751,1 +23668,983,838,1,2,7,7,7,7,6,55,,,49,9,01:35.9,208.012,11 +23669,983,840,3,18,13,8,8,8,4,55,,,46,12,01:36.6,206.513,11 +23670,983,13,3,19,11,9,9,9,2,55,,,44,14,01:36.9,205.838,11 +23671,983,839,10,31,6,10,10,10,1,55,,,36,15,01:37.1,205.56,11 +23672,983,4,1,14,10,11,11,11,0,55,,,11,11,01:36.5,206.783,11 +23673,983,825,210,20,17,12,12,12,0,55,,,46,18,01:37.2,205.313,11 +23674,983,154,210,8,16,13,13,13,0,55,,,49,8,01:35.8,208.305,11 +23675,983,842,5,10,15,14,14,14,0,55,,,45,16,01:37.2,205.359,11 +23676,983,835,4,30,12,15,15,15,0,55,,,45,17,01:37.2,205.325,11 +23677,983,807,4,27,8,16,16,16,0,55,,,52,2,01:34.3,211.686,11 +23678,983,836,15,94,18,17,17,17,0,55,,,53,10,01:36.4,207.01,11 +23679,983,828,15,9,19,18,18,18,0,54,,,54,13,01:36.6,206.507,12 +23680,983,832,5,55,14,,R,19,0,29,,,27,19,01:38.1,203.365,5 +23681,983,8,6,7,0,,R,20,0,0,,,,0,,,84 +23682,984,1,131,44,1,1,1,1,25,53,27:31.2,5251194,43,6,01:33.8,222.917,1 +23683,984,830,9,33,4,2,2,2,18,53,1.211,5252405,51,5,01:33.7,223.036,1 +23684,984,817,9,3,3,3,3,3,15,53,9.679,5260873,52,3,01:33.7,223.122,1 +23685,984,822,131,77,6,4,4,4,12,53,10.58,5261774,50,1,01:33.1,224.439,1 +23686,984,8,6,7,10,5,5,5,10,53,32.622,5283816,50,2,01:33.2,224.364,1 +23687,984,839,10,31,5,6,6,6,8,53,+1:07.788,5318982,50,11,01:34.8,220.419,1 +23688,984,815,10,11,7,7,7,7,6,53,+1:11.424,5322618,23,10,01:34.7,220.649,1 +23689,984,825,210,20,12,8,8,8,4,53,+1:28.953,5340147,50,13,01:35.3,219.274,1 +23690,984,154,210,8,13,9,9,9,2,53,+1:29.883,5341077,50,14,01:35.3,219.253,1 +23691,984,13,3,19,8,10,10,10,1,52,,,50,16,01:35.9,217.891,11 +23692,984,4,1,14,20,11,11,11,0,52,,,45,12,01:35.1,219.797,11 +23693,984,835,4,30,18,12,12,12,0,52,,,50,7,01:34.1,222.171,11 +23694,984,842,5,10,14,13,13,13,0,52,,,45,8,01:34.5,221.141,11 +23695,984,838,1,2,9,14,14,14,0,52,,,49,4,01:33.7,223.05,11 +23696,984,836,15,94,17,15,15,15,0,51,,,27,17,01:36.4,216.791,12 +23697,984,840,3,18,15,,R,16,0,45,,,37,9,01:34.5,221.106,36 +23698,984,807,4,27,11,,R,17,0,40,,,28,15,01:35.9,218.028,33 +23699,984,828,15,9,16,,R,18,0,7,,,7,18,01:38.6,212.028,3 +23700,984,20,6,5,2,,R,19,0,4,,,2,19,02:06.5,165.314,105 +23701,984,832,5,55,19,,R,20,0,0,,,,0,,,3 +23702,985,1,131,44,1,1,1,1,25,56,33:51.0,5630991,48,5,01:38.8,200.927,1 +23703,985,20,6,7,2,2,2,2,18,56,10.143,5641134,42,6,01:38.8,200.86,1 +23704,985,8,6,5,5,3,3,3,15,56,15.779,5646770,51,1,01:37.8,203.003,1 +23705,985,830,9,33,16,4,4,4,12,56,16.768,5647759,39,4,01:38.1,202.394,1 +23706,985,822,131,77,3,5,5,5,10,56,34.967,5665958,54,2,01:37.8,203.001,1 +23707,985,839,10,31,6,6,6,6,8,56,+1:30.980,5721971,53,13,01:40.5,197.482,1 +23708,985,832,4,55,7,7,7,7,6,56,+1:32.944,5723935,43,12,01:40.5,197.555,1 +23709,985,815,10,11,9,8,8,8,4,55,,,14,14,01:40.9,196.793,11 +23710,985,13,3,19,10,9,9,9,2,55,,,36,10,01:40.1,198.208,11 +23711,985,826,5,26,11,10,10,10,1,55,,,19,15,01:41.0,196.559,11 +23712,985,840,3,18,15,11,11,11,0,55,,,38,7,01:39.7,199.133,11 +23713,985,838,1,2,20,12,12,12,0,55,,,27,11,01:40.3,197.777,11 +23714,985,843,5,39,19,13,13,13,0,55,,,47,8,01:40.0,198.509,11 +23715,985,154,210,8,12,14,14,14,0,55,,,36,17,01:41.3,196,11 +23716,985,828,15,9,13,15,15,15,0,55,,,42,16,01:41.0,196.423,11 +23717,985,825,210,20,17,16,16,16,0,55,,,51,3,01:37.9,202.739,11 +23718,985,4,1,14,8,,R,17,0,24,,,21,18,01:41.5,195.463,5 +23719,985,817,9,3,4,,R,18,0,14,,,14,9,01:40.1,198.265,5 +23720,985,836,15,94,14,,R,19,0,5,,,2,20,01:47.1,185.357,4 +23721,985,807,4,27,18,,R,20,0,3,,,2,19,01:44.3,190.34,5 +23722,986,830,9,33,2,1,1,1,25,71,36:26.6,5786552,65,2,01:18.9,196.4,1 +23723,986,822,131,77,4,2,2,2,18,71,19.678,5806230,70,3,01:19.4,195.207,1 +23724,986,8,6,7,5,3,3,3,15,71,54.007,5840559,59,6,01:20.1,193.549,1 +23725,986,20,6,5,1,4,4,4,12,71,+1:10.078,5856630,68,1,01:18.8,196.666,1 +23726,986,839,10,31,6,5,5,5,10,70,,,67,9,01:20.9,191.416,11 +23727,986,840,3,18,11,6,6,6,8,70,,,53,12,01:21.1,191.142,11 +23728,986,815,10,11,9,7,7,7,6,70,,,54,4,01:19.9,193.852,11 +23729,986,825,210,20,14,8,8,8,4,70,,,68,14,01:21.2,190.784,11 +23730,986,1,131,44,3,9,9,9,2,70,,,69,5,01:19.9,193.813,11 +23731,986,4,1,14,18,10,10,10,1,70,,,50,11,01:21.0,191.255,11 +23732,986,13,3,19,10,11,11,11,0,70,,,55,13,01:21.1,190.968,11 +23733,986,838,1,2,19,12,12,12,0,70,,,66,10,01:21.0,191.355,11 +23734,986,842,5,10,20,13,13,13,0,70,,,70,8,01:20.9,191.622,11 +23735,986,836,15,94,13,14,14,14,0,69,,,56,16,01:21.6,189.793,12 +23736,986,154,210,8,15,15,15,15,0,69,,,64,7,01:20.3,192.848,12 +23737,986,832,4,55,8,,R,16,0,59,,,34,15,01:21.4,190.442,5 +23738,986,828,15,9,12,,R,17,0,55,,,54,17,01:21.7,189.682,5 +23739,986,843,5,28,17,,R,18,0,30,,,28,19,01:22.6,187.647,5 +23740,986,807,4,27,7,,R,19,0,24,,,18,18,01:21.7,189.67,10 +23741,986,817,9,3,16,,R,20,0,5,,,4,20,01:22.8,187.155,5 +23742,987,20,6,5,2,1,1,1,25,71,31:26.3,5486262,63,7,01:12.5,213.849,1 +23743,987,822,131,77,1,2,2,2,18,71,2.762,5489024,58,5,01:12.5,214.064,1 +23744,987,8,6,7,3,3,3,3,15,71,4.6,5490862,61,6,01:12.5,213.987,1 +23745,987,1,131,44,20,4,4,4,12,71,5.468,5491730,63,2,01:11.8,215.914,1 +23746,987,830,9,33,4,5,5,5,10,71,32.94,5519202,64,1,01:11.0,218.349,1 +23747,987,817,9,3,14,6,6,6,8,71,48.691,5534953,71,4,01:12.0,215.363,1 +23748,987,13,3,19,9,7,7,7,6,71,+1:08.882,5555144,60,11,01:13.5,211.19,1 +23749,987,4,1,14,6,8,8,8,4,71,+1:09.363,5555625,57,10,01:13.5,211.193,1 +23750,987,815,10,11,5,9,9,9,2,71,+1:09.500,5555762,61,8,01:13.1,212.347,1 +23751,987,807,4,27,7,10,10,10,1,70,,,57,15,01:13.8,210.314,11 +23752,987,832,4,55,8,11,11,11,0,70,,,67,13,01:13.6,210.694,11 +23753,987,842,5,10,19,12,12,12,0,70,,,61,9,01:13.3,211.562,11 +23754,987,828,15,9,17,13,13,13,0,70,,,70,14,01:13.7,210.577,11 +23755,987,836,15,94,15,14,14,14,0,70,,,60,17,01:14.8,207.351,11 +23756,987,154,210,8,11,15,15,15,0,69,,,66,12,01:13.5,210.961,12 +23757,987,840,3,18,16,16,16,16,0,69,,,69,3,01:11.9,215.863,12 +23758,987,843,5,28,18,,R,17,0,40,,,29,16,01:14.7,207.779,5 +23759,987,839,10,31,10,,R,18,0,0,,,,0,,,3 +23760,987,838,1,2,12,,R,19,0,0,,,,0,,,3 +23761,987,825,210,20,13,,R,20,0,0,,,,0,,,3 +23762,988,822,131,77,1,1,1,1,25,55,34:14.1,5654062,52,1,01:40.7,198.652,1 +23763,988,1,131,44,2,2,2,2,18,55,3.899,5657961,51,3,01:41.5,197.041,1 +23764,988,20,6,5,3,3,3,3,15,55,19.33,5673392,5,2,01:40.8,198.416,1 +23765,988,8,6,7,5,4,4,4,12,55,45.386,5699448,53,7,01:42.3,195.376,1 +23766,988,830,9,33,6,5,5,5,10,55,46.269,5700331,43,5,01:42.0,195.969,1 +23767,988,807,4,27,7,6,6,6,8,55,+1:25.713,5739775,53,8,01:42.4,195.303,1 +23768,988,815,10,11,8,7,7,7,6,55,+1:32.062,5746124,52,11,01:42.7,194.708,1 +23769,988,839,10,31,9,8,8,8,4,55,+1:38.911,5752973,47,10,01:42.6,01:42.6,1 +23770,988,4,1,14,11,9,9,9,2,54,,,26,4,01:43.4,193.41,11 +23771,988,13,3,19,10,10,10,10,1,54,,,45,13,01:43.0,194.071,11 +23772,988,154,210,8,16,11,11,11,0,54,,,51,9,01:42.4,195.187,11 +23773,988,838,1,2,13,12,12,12,0,54,,,50,20,01:44.0,192.279,11 +23774,988,825,210,20,14,13,13,13,0,54,,,50,19,01:43.9,192.387,11 +23775,988,836,15,94,18,14,14,14,0,54,,,50,17,01:43.9,192.5,11 +23776,988,843,5,28,20,15,15,15,0,54,,,52,18,01:43.9,192.444,11 +23777,988,842,5,10,17,16,16,16,0,54,,,33,16,01:43.8,192.542,11 +23778,988,828,15,9,19,17,17,17,0,54,,,36,15,01:43.6,193.057,11 +23779,988,840,3,18,15,18,18,18,0,54,,,52,6,01:42.3,195.402,11 +23780,988,832,4,55,12,,R,19,0,31,,,26,14,01:43.4,193.41,36 +23781,988,817,9,3,4,,R,20,0,20,,,13,12,01:42.8,194.579,9 \ No newline at end of file diff --git a/database/formula_1/data_csv/seasons.csv b/database/formula_1/data_csv/seasons.csv new file mode 100644 index 0000000000000000000000000000000000000000..d1691a15d59c796cb325802f4ed70c871d9c25dc --- /dev/null +++ b/database/formula_1/data_csv/seasons.csv @@ -0,0 +1,70 @@ +year,url +2009,http://en.wikipedia.org/wiki/2009_Formula_One_season +2008,http://en.wikipedia.org/wiki/2008_Formula_One_season +2007,http://en.wikipedia.org/wiki/2007_Formula_One_season +2006,http://en.wikipedia.org/wiki/2006_Formula_One_season +2005,http://en.wikipedia.org/wiki/2005_Formula_One_season +2004,http://en.wikipedia.org/wiki/2004_Formula_One_season +2003,http://en.wikipedia.org/wiki/2003_Formula_One_season +2002,http://en.wikipedia.org/wiki/2002_Formula_One_season +2001,http://en.wikipedia.org/wiki/2001_Formula_One_season +2000,http://en.wikipedia.org/wiki/2000_Formula_One_season +1999,http://en.wikipedia.org/wiki/1999_Formula_One_season +1998,http://en.wikipedia.org/wiki/1998_Formula_One_season +1997,http://en.wikipedia.org/wiki/1997_Formula_One_season +1996,http://en.wikipedia.org/wiki/1996_Formula_One_season +1995,http://en.wikipedia.org/wiki/1995_Formula_One_season +1994,http://en.wikipedia.org/wiki/1994_Formula_One_season +1993,http://en.wikipedia.org/wiki/1993_Formula_One_season +1992,http://en.wikipedia.org/wiki/1992_Formula_One_season +1991,http://en.wikipedia.org/wiki/1991_Formula_One_season +1990,http://en.wikipedia.org/wiki/1990_Formula_One_season +2010,http://en.wikipedia.org/wiki/2010_Formula_One_season +1989,http://en.wikipedia.org/wiki/1989_Formula_One_season +1988,http://en.wikipedia.org/wiki/1988_Formula_One_season +1987,http://en.wikipedia.org/wiki/1987_Formula_One_season +1986,http://en.wikipedia.org/wiki/1986_Formula_One_season +1985,http://en.wikipedia.org/wiki/1985_Formula_One_season +1984,http://en.wikipedia.org/wiki/1984_Formula_One_season +1983,http://en.wikipedia.org/wiki/1983_Formula_One_season +1982,http://en.wikipedia.org/wiki/1982_Formula_One_season +1981,http://en.wikipedia.org/wiki/1981_Formula_One_season +1980,http://en.wikipedia.org/wiki/1980_Formula_One_season +1979,http://en.wikipedia.org/wiki/1979_Formula_One_season +1978,http://en.wikipedia.org/wiki/1978_Formula_One_season +1977,http://en.wikipedia.org/wiki/1977_Formula_One_season +1976,http://en.wikipedia.org/wiki/1976_Formula_One_season +1975,http://en.wikipedia.org/wiki/1975_Formula_One_season +1974,http://en.wikipedia.org/wiki/1974_Formula_One_season +1973,http://en.wikipedia.org/wiki/1973_Formula_One_season +1972,http://en.wikipedia.org/wiki/1972_Formula_One_season +1971,http://en.wikipedia.org/wiki/1971_Formula_One_season +1970,http://en.wikipedia.org/wiki/1970_Formula_One_season +1969,http://en.wikipedia.org/wiki/1969_Formula_One_season +1968,http://en.wikipedia.org/wiki/1968_Formula_One_season +1967,http://en.wikipedia.org/wiki/1967_Formula_One_season +1966,http://en.wikipedia.org/wiki/1966_Formula_One_season +1965,http://en.wikipedia.org/wiki/1965_Formula_One_season +1964,http://en.wikipedia.org/wiki/1964_Formula_One_season +1963,http://en.wikipedia.org/wiki/1963_Formula_One_season +1962,http://en.wikipedia.org/wiki/1962_Formula_One_season +1961,http://en.wikipedia.org/wiki/1961_Formula_One_season +1960,http://en.wikipedia.org/wiki/1960_Formula_One_season +1959,http://en.wikipedia.org/wiki/1959_Formula_One_season +1958,http://en.wikipedia.org/wiki/1958_Formula_One_season +1957,http://en.wikipedia.org/wiki/1957_Formula_One_season +1956,http://en.wikipedia.org/wiki/1956_Formula_One_season +1955,http://en.wikipedia.org/wiki/1955_Formula_One_season +1954,http://en.wikipedia.org/wiki/1954_Formula_One_season +1953,http://en.wikipedia.org/wiki/1953_Formula_One_season +1952,http://en.wikipedia.org/wiki/1952_Formula_One_season +1951,http://en.wikipedia.org/wiki/1951_Formula_One_season +1950,http://en.wikipedia.org/wiki/1950_Formula_One_season +2011,http://en.wikipedia.org/wiki/2011_Formula_One_season +2012,http://en.wikipedia.org/wiki/2012_Formula_One_season +2013,http://en.wikipedia.org/wiki/2013_Formula_One_season +2014,http://en.wikipedia.org/wiki/2014_Formula_One_season +2015,http://en.wikipedia.org/wiki/2015_Formula_One_season +2016,https://en.wikipedia.org/wiki/2016_Formula_One_season +2017,https://en.wikipedia.org/wiki/2017_Formula_One_season +2018,http://en.wikipedia.org/wiki/2018_FIA_Formula_One_World_Championship diff --git a/database/formula_1/data_csv/status.csv b/database/formula_1/data_csv/status.csv new file mode 100644 index 0000000000000000000000000000000000000000..e1038576be8ce419fcd9df53c644218a9c0f50a5 --- /dev/null +++ b/database/formula_1/data_csv/status.csv @@ -0,0 +1,135 @@ +statusId,status +1,Finished +2,Disqualified +3,Accident +4,Collision +5,Engine +6,Gearbox +7,Transmission +8,Clutch +9,Hydraulics +10,Electrical +11,+1 Lap +12,+2 Laps +13,+3 Laps +14,+4 Laps +15,+5 Laps +16,+6 Laps +17,+7 Laps +18,+8 Laps +19,+9 Laps +20,Spun off +21,Radiator +22,Suspension +23,Brakes +24,Differential +25,Overheating +26,Mechanical +27,Tyre +28,Driver Seat +29,Puncture +30,Driveshaft +31,Retired +32,Fuel pressure +33,Front wing +34,Water pressure +35,Refuelling +36,Wheel +37,Throttle +38,Steering +39,Technical +40,Electronics +41,Broken wing +42,Heat shield fire +43,Exhaust +44,Oil leak +45,+11 Laps +46,Wheel rim +47,Water leak +48,Fuel pump +49,Track rod +50,+17 Laps +51,Oil pressure +128,+42 Laps +53,+13 Laps +54,Withdrew +55,+12 Laps +56,Engine fire +129,Engine misfire +58,+26 Laps +59,Tyre puncture +60,Out of fuel +61,Wheel nut +62,Not classified +63,Pneumatics +64,Handling +65,Rear wing +66,Fire +67,Wheel bearing +68,Physical +69,Fuel system +70,Oil line +71,Fuel rig +72,Launch control +73,Injured +74,Fuel +75,Power loss +76,Vibrations +77,107% Rule +78,Safety +79,Drivetrain +80,Ignition +81,Did not qualify +82,Injury +83,Chassis +84,Battery +85,Stalled +86,Halfshaft +87,Crankshaft +88,+10 Laps +89,Safety concerns +90,Not restarted +91,Alternator +92,Underweight +93,Safety belt +94,Oil pump +95,Fuel leak +96,Excluded +97,Did not prequalify +98,Injection +99,Distributor +100,Driver unwell +101,Turbo +102,CV joint +103,Water pump +104,Fatal accident +105,Spark plugs +106,Fuel pipe +107,Eye injury +108,Oil pipe +109,Axle +110,Water pipe +111,+14 Laps +112,+15 Laps +113,+25 Laps +114,+18 Laps +115,+22 Laps +116,+16 Laps +117,+24 Laps +118,+29 Laps +119,+23 Laps +120,+21 Laps +121,Magneto +122,+44 Laps +123,+30 Laps +124,+19 Laps +125,+46 Laps +126,Supercharger +127,+20 Laps +130,Collision damage +131,Power Unit +132,ERS +133,+49 Laps +134,+38 Laps +135,Brake duct +136,Seat diff --git a/database/formula_1/formula_1.splite b/database/formula_1/formula_1.splite new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/database/formula_1/formula_1.sql b/database/formula_1/formula_1.sql new file mode 100644 index 0000000000000000000000000000000000000000..fbe6622e05508d33e76ea6e608836da1a6c794eb --- /dev/null +++ b/database/formula_1/formula_1.sql @@ -0,0 +1,141 @@ +BEGIN TRANSACTION; +CREATE TABLE IF NOT EXISTS "circuits" ( +"circuitId" INTEGER PRIMARY KEY, + "circuitRef" TEXT, + "name" TEXT, + "location" TEXT, + "country" TEXT, + "lat" REAL, + "lng" REAL, + "alt" INTEGER, + "url" TEXT +); +CREATE TABLE IF NOT EXISTS "races" ( +"raceId" INTEGER PRIMARY KEY, + "year" INTEGER, + "round" INTEGER, + "circuitId" INTEGER, + "name" TEXT, + "date" TEXT, + "time" TEXT, + "url" TEXT, + FOREIGN KEY ("circuitId") REFERENCES "circuits"("circuitId") +); + +CREATE TABLE IF NOT EXISTS "drivers" ( +"driverId" INTEGER PRIMARY KEY, + "driverRef" TEXT, + "number" INTEGER, + "code" TEXT, + "forename" TEXT, + "surname" TEXT, + "dob" TEXT, + "nationality" TEXT, + "url" TEXT +); +CREATE TABLE IF NOT EXISTS "status" ( +"statusId" INTEGER PRIMARY KEY, + "status" TEXT +); +CREATE TABLE IF NOT EXISTS "seasons" ( +"year" INTEGER PRIMARY KEY, + "url" TEXT +); +CREATE TABLE IF NOT EXISTS "constructors" ( + "constructorId" INTEGER PRIMARY KEY, + "constructorRef" TEXT, + "name" TEXT, + "nationality" TEXT, + "url" TEXT +); +CREATE TABLE IF NOT EXISTS "constructorStandings" ( + "constructorStandingsId" INTEGER PRIMARY KEY, + "raceId" INTEGER, + "constructorId" INTEGER, + "points" REAL, + "position" INTEGER, + "positionText" TEXT, + "wins" INTEGER, + FOREIGN KEY("constructorId") REFERENCES "constructors"("constructorId"), + FOREIGN KEY("raceId") REFERENCES "races"("raceId") +); +CREATE TABLE IF NOT EXISTS "results" ( +"resultId" INTEGER PRIMARY KEY, + "raceId" INTEGER, + "driverId" INTEGER, + "constructorId" INTEGER, + "number" INTEGER, + "grid" INTEGER, + "position" INTEGER, + "positionText" TEXT, + "positionOrder" INTEGER, + "points" REAL, + "laps" INTEGER, + "time" TEXT, + "milliseconds" INTEGER, + "fastestLap" INTEGER, + "rank" INTEGER, + "fastestLapTime" TEXT, + "fastestLapSpeed" TEXT, + "statusId" INTEGER, + FOREIGN KEY("constructorId") REFERENCES "constructors"("constructorId"), + FOREIGN KEY("raceId") REFERENCES "races"("raceId"), + FOREIGN KEY ("driverId") REFERENCES "drivers"("driverId") +); +CREATE TABLE IF NOT EXISTS "driverStandings" ( +"driverStandingsId" INTEGER PRIMARY KEY, + "raceId" INTEGER, + "driverId" INTEGER, + "points" REAL, + "position" INTEGER, + "positionText" TEXT, + "wins" INTEGER, + FOREIGN KEY("raceId") REFERENCES "races"("raceId"), + FOREIGN KEY ("driverId") REFERENCES "drivers"("driverId") +); +CREATE TABLE IF NOT EXISTS "constructorResults" ( +"constructorResultsId" INTEGER PRIMARY KEY, + "raceId" INTEGER, + "constructorId" INTEGER, + "points" REAL, + "status" REAL, + FOREIGN KEY("constructorId") REFERENCES "constructors"("constructorId"), + FOREIGN KEY("raceId") REFERENCES "races"("raceId") +); +CREATE TABLE IF NOT EXISTS "qualifying" ( +"qualifyId" INTEGER PRIMARY KEY, + "raceId" INTEGER, + "driverId" INTEGER, + "constructorId" INTEGER, + "number" INTEGER, + "position" INTEGER, + "q1" TEXT, + "q2" TEXT, + "q3" TEXT, + FOREIGN KEY("constructorId") REFERENCES "constructors"("constructorId"), + FOREIGN KEY("raceId") REFERENCES "races"("raceId"), + FOREIGN KEY ("driverId") REFERENCES "drivers"("driverId") +); +CREATE TABLE IF NOT EXISTS "pitStops" ( +"raceId" INTEGER, + "driverId" INTEGER, + "stop" INTEGER, + "lap" INTEGER, + "time" TEXT, + "duration" TEXT, + "milliseconds" INTEGER, + PRIMARY KEY ("raceId", "driverId", "stop"), + FOREIGN KEY("raceId") REFERENCES "races"("raceId"), + FOREIGN KEY ("driverId") REFERENCES "drivers"("driverId") +); +CREATE TABLE IF NOT EXISTS "lapTimes" ( +"raceId" INTEGER, + "driverId" INTEGER, + "lap" INTEGER, + "position" INTEGER, + "time" TEXT, + "milliseconds" INTEGER, + PRIMARY KEY("raceId", "driverId", "lap"), + FOREIGN KEY("raceId") REFERENCES "races"("raceId"), + FOREIGN KEY ("driverId") REFERENCES "drivers"("driverId") +);COMMIT; diff --git a/database/formula_1/formula_1.sqlite b/database/formula_1/formula_1.sqlite new file mode 100644 index 0000000000000000000000000000000000000000..4aa6f325ab3937efd98b8d56fbe1e6e36700234e --- /dev/null +++ b/database/formula_1/formula_1.sqlite @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fb6dad97c0a4da22f01bdf817a77fe8f6b6559554661ff0120b40cb81b8c3b68 +size 2940928 diff --git a/database/game_1/game_1.sqlite b/database/game_1/game_1.sqlite new file mode 100644 index 0000000000000000000000000000000000000000..b6739d991e324b1db1633fa7fba2660066a91f1f Binary files /dev/null and b/database/game_1/game_1.sqlite differ diff --git a/database/game_1/schema.sql b/database/game_1/schema.sql new file mode 100644 index 0000000000000000000000000000000000000000..1788102d6c752751a900380b2c1a436a6b55bbec --- /dev/null +++ b/database/game_1/schema.sql @@ -0,0 +1,102 @@ +create table Student ( + StuID INTEGER PRIMARY KEY, + LName VARCHAR(12), + Fname VARCHAR(12), + Age INTEGER, + Sex VARCHAR(1), + Major INTEGER, + Advisor INTEGER, + city_code VARCHAR(3) + ); + +create table Video_Games ( + GameID INTEGER PRIMARY KEY, + GName VARCHAR(40), + GType VARCHAR(40) +); + +create table Plays_Games ( + StuID INTEGER, + GameID INTEGER, + Hours_Played INTEGER, + FOREIGN KEY(GameID) REFERENCES Video_Games(GameID), + FOREIGN KEY(StuID) REFERENCES Student(StuID) +); + +create table SportsInfo ( + StuID INTEGER, + SportName VARCHAR(32), + HoursPerWeek INTEGER, + GamesPlayed INTEGER, + OnScholarship VARCHAR(1), + FOREIGN KEY(StuID) REFERENCES Student(StuID) +); + + +insert into Student values ( 1001, 'Smith', 'Linda', 18, 'F', 600, 1121,'BAL'); + insert into Student values ( 1002, 'Kim', 'Tracy', 19, 'F', 600, 7712,'HKG'); + insert into Student values ( 1003, 'Jones', 'Shiela', 21, 'F', 600, 7792,'WAS'); + insert into Student values ( 1004, 'Kumar', 'Dinesh', 20, 'M', 600, 8423,'CHI'); + insert into Student values ( 1005, 'Gompers', 'Paul', 26, 'M', 600, 1121,'YYZ'); + insert into Student values ( 1006, 'Schultz', 'Andy', 18, 'M', 600, 1148,'BAL'); + insert into Student values ( 1007, 'Apap', 'Lisa', 18, 'F', 600, 8918,'PIT'); + insert into Student values ( 1008, 'Nelson', 'Jandy', 20, 'F', 600, 9172,'BAL'); + insert into Student values ( 1009, 'Tai', 'Eric', 19, 'M', 600, 2192,'YYZ'); + insert into Student values ( 1010, 'Lee', 'Derek', 17, 'M', 600, 2192,'HOU'); + insert into Student values ( 1011, 'Adams', 'David', 22, 'M', 600, 1148,'PHL'); + insert into Student values ( 1012, 'Davis', 'Steven', 20, 'M', 600, 7723,'PIT'); + insert into Student values ( 1014, 'Norris', 'Charles', 18, 'M', 600, 8741, 'DAL'); + insert into Student values ( 1015, 'Lee', 'Susan', 16, 'F', 600, 8721,'HKG'); + insert into Student values ( 1016, 'Schwartz', 'Mark', 17, 'M', 600, 2192,'DET'); + insert into Student values ( 1017, 'Wilson', 'Bruce', 27, 'M', 600, 1148,'LON'); + insert into Student values ( 1018, 'Leighton', 'Michael', 20, 'M', 600, 1121, 'PIT'); + insert into Student values ( 1019, 'Pang', 'Arthur', 18, 'M', 600, 2192,'WAS'); + insert into Student values ( 1020, 'Thornton', 'Ian', 22, 'M', 520, 7271,'NYC'); + insert into Student values ( 1021, 'Andreou', 'George', 19, 'M', 520, 8722, 'NYC'); + insert into Student values ( 1022, 'Woods', 'Michael', 17, 'M', 540, 8722,'PHL'); + insert into Student values ( 1023, 'Shieber', 'David', 20, 'M', 520, 8722,'NYC'); + insert into Student values ( 1024, 'Prater', 'Stacy', 18, 'F', 540, 7271,'BAL'); + insert into Student values ( 1025, 'Goldman', 'Mark', 18, 'M', 520, 7134,'PIT'); + insert into Student values ( 1026, 'Pang', 'Eric', 19, 'M', 520, 7134,'HKG'); + insert into Student values ( 1027, 'Brody', 'Paul', 18, 'M', 520, 8723,'LOS'); + insert into Student values ( 1028, 'Rugh', 'Eric', 20, 'M', 550, 2311,'ROC'); + insert into Student values ( 1029, 'Han', 'Jun', 17, 'M', 100, 2311,'PEK'); + insert into Student values ( 1030, 'Cheng', 'Lisa', 21, 'F', 550, 2311,'SFO'); + insert into Student values ( 1031, 'Smith', 'Sarah', 20, 'F', 550, 8772,'PHL'); + insert into Student values ( 1032, 'Brown', 'Eric', 20, 'M', 550, 8772,'ATL'); + insert into Student values ( 1033, 'Simms', 'William', 18, 'M', 550, 8772,'NAR'); + insert into Student values ( 1034, 'Epp', 'Eric', 18, 'M', 050, 5718,'BOS'); + insert into Student values ( 1035, 'Schmidt', 'Sarah', 26, 'F', 050, 5718,'WAS'); + +insert into Video_Games values ( 1, 'RNG Stone', 'Collectible card game'); +insert into Video_Games values ( 2, 'The Vanishing of Eric Calder', 'Walking Simulator'); +insert into Video_Games values ( 3, 'Grand Term Assignment', 'Role-playing game'); +insert into Video_Games values ( 4, 'Europe is the Universe', 'Grand strategy'); +insert into Video_Games values ( 5, 'Call of Destiny', 'Frist-person shooter'); +insert into Video_Games values ( 6, 'Works of Widenius', 'Massively multiplayer online game'); + +insert into Plays_Games values ( 1001, 1, 35); +insert into Plays_Games values ( 1001, 2, 15); +insert into Plays_Games values ( 1001, 5, 1); +insert into Plays_Games values ( 1007, 4, 1000); +insert into Plays_Games values ( 1008, 5, 50); +insert into Plays_Games values ( 1008, 3, 50); +insert into Plays_Games values ( 1010, 6, 1337); +insert into Plays_Games values ( 1032, 1, 47); +insert into Plays_Games values ( 1032, 2, 10); +insert into Plays_Games values ( 1032, 3, 100); + +INSERT INTO SportsInfo VALUES (1001, "Athletics", 2, 5, "N"); +INSERT INTO SportsInfo VALUES (1002, "Football", 7, 20, "Y"); +INSERT INTO SportsInfo VALUES (1003, "Football", 45, 18, "Y"); +INSERT INTO SportsInfo VALUES (1005, "Lacrosse", 35, 16, "N"); +INSERT INTO SportsInfo VALUES (1015, "Lacrosse", 25, 41, "Y"); +INSERT INTO SportsInfo VALUES (1018, "Lacrosse", 39, 25, "N"); +INSERT INTO SportsInfo VALUES (1019, "Swimming", 8, 16, "Y"); +INSERT INTO SportsInfo VALUES (1019, "Tennis", 19, 62, "N"); +INSERT INTO SportsInfo VALUES (1022, "Baseball", 29, 31, "N"); +INSERT INTO SportsInfo VALUES (1023, "Basketball", 14, 8, "Y"); +INSERT INTO SportsInfo VALUES (1023, "Tennis", 1, 56, "Y"); +INSERT INTO SportsInfo VALUES (1026, "Cricket", 23, 37, "Y"); +INSERT INTO SportsInfo VALUES (1033, "Soccer", 45, 45, "Y"); +INSERT INTO SportsInfo VALUES (1035, "Curling", 50, 94, "N"); diff --git a/database/game_injury/game_injury.sqlite b/database/game_injury/game_injury.sqlite new file mode 100644 index 0000000000000000000000000000000000000000..6666c000343d0ed555e231d648803c0e8dcdd75c Binary files /dev/null and b/database/game_injury/game_injury.sqlite differ diff --git a/database/game_injury/schema.sql b/database/game_injury/schema.sql new file mode 100644 index 0000000000000000000000000000000000000000..5c99445ab562d29537df9168cc97e8161d0a5242 --- /dev/null +++ b/database/game_injury/schema.sql @@ -0,0 +1,91 @@ +PRAGMA foreign_keys = ON; + + +CREATE TABLE "stadium" ( +"id" int, +"name" text, +"Home_Games" int, +"Average_Attendance" real, +"Total_Attendance" real, +"Capacity_Percentage" real, +primary key ("id") +); + +CREATE TABLE "game" ( +"stadium_id" int, +"id" int, +"Season" int, +"Date" text, +"Home_team" text, +"Away_team" text, +"Score" text, +"Competition" text, +primary key ("id"), +foreign key ("stadium_id") references `stadium`("id") +); + +CREATE TABLE "injury_accident" ( +"game_id" int, +"id" int, +"Player" text, +"Injury" text, +"Number_of_matches" text, +"Source" text, +primary key ("id"), +foreign key ("game_id") references `game`("id") +); + + +INSERT INTO "stadium" VALUES (1,"Cowboys Stadium","8","87047","696377","108.8"); +INSERT INTO "stadium" VALUES (2,"FedExField","8","83172","665380","90.7"); +INSERT INTO "stadium" VALUES (3,"New Meadowlands Stadium","8","79019","632156","95.8"); +INSERT INTO "stadium" VALUES (4,"New Meadowlands Stadium","8","78596","628768","95.3"); +INSERT INTO "stadium" VALUES (5,"Invesco Field at Mile High","8","74908","599264","98.4"); +INSERT INTO "stadium" VALUES (6,"Bank of America Stadium","8","72620","580965","98.4"); +INSERT INTO "stadium" VALUES (7,"M&T Bank Stadium","8","71227","569817","100.3"); +INSERT INTO "stadium" VALUES (8,"Reliant Stadium","8","71080","568643","100.0"); +INSERT INTO "stadium" VALUES (9,"Lambeau Field","8","70795","566362","97.1"); +INSERT INTO "stadium" VALUES (10,"Louisiana Superdome","8","70038","560304","96.0"); +INSERT INTO "stadium" VALUES (11,"Lincoln Financial Field","8","69144","553152","102.3"); +INSERT INTO "stadium" VALUES (12,"LP Field","8","69143","553144","100.0"); +INSERT INTO "stadium" VALUES (13,"Gillette Stadium","8","68756","550048","100.0"); + + + +INSERT INTO "game" VALUES (1,1,"2007","18 May 2007","Quruvchi","Pakhtakor","1–1","League"); +INSERT INTO "game" VALUES (2,2,"2007","22 September 2007","Pakhtakor","Quruvchi","0–0","League"); +INSERT INTO "game" VALUES (3,3,"2007","9 December 2007","Pakhtakor","Quruvchi","0–0 (7:6)","Cup"); +INSERT INTO "game" VALUES (4,4,"2008","10 July 2008","Pakhtakor","Quruvchi","1–1","League"); +INSERT INTO "game" VALUES (5,5,"2008","16 August 2008","Bunyodkor","Pakhtakor","1–1","League"); +INSERT INTO "game" VALUES (6,6,"2008","31 October 2008","Bunyodkor","Pakhtakor","3–1","Cup"); +INSERT INTO "game" VALUES (7,7,"2009","12 July 2009","Bunyodkor","Pakhtakor","2–1","League"); +INSERT INTO "game" VALUES (8,8,"2009","14 October 2009","Pakhtakor","Bunyodkor","0–0","League"); +INSERT INTO "game" VALUES (9,9,"2009","8 August 2009","Pakhtakor","Bunyodkor","1–0","Cup"); +INSERT INTO "game" VALUES (10,10,"2010","14 March 2010","Bunyodkor","Pakhtakor","2–1","League"); +INSERT INTO "game" VALUES (10,11,"2010","31 October 2010","Pakhtakor","Bunyodkor","0–0","League"); +INSERT INTO "game" VALUES (10,12,"2011","7 July 2011","Pakhtakor","Bunyodkor","0–0","League"); +INSERT INTO "game" VALUES (1,13,"2011","21 August 2011","Bunyodkor","Pakhtakor","2–1","League"); +INSERT INTO "game" VALUES (2,14,"2012","11 March 2012","Bunyodkor","Pakhtakor","–","Supercup"); +INSERT INTO "game" VALUES (3,15,"2012","26 June 2012","Bunyodkor","Pakhtakor","2–0","League"); +INSERT INTO "game" VALUES (4,16,"2012","9 August 2012","Pakhtakor","Bunyodkor","1–1","League"); +INSERT INTO "game" VALUES (5,17,"2012","22 August 2012","Bunyodkor","Pakhtakor","1–1","Cup"); +INSERT INTO "game" VALUES (11,18,"2012","25 November 2012","Pakhtakor","Bunyodkor","1–3","Cup"); +INSERT INTO "game" VALUES (12,19,"2013","30 June 2013","Pakhtakor","Bunyodkor","0–2","League"); +INSERT INTO "game" VALUES (7,20,"2013","8 August 2013","Bunyodkor","Pakhtakor","1–2","League"); + +INSERT INTO "injury_accident" VALUES (1,1,"Davide Santon","Clean-up surgery on his right knee","12","inter.it"); +INSERT INTO "injury_accident" VALUES (2,2,"Maicon","Knee problem","2","inter.it"); +INSERT INTO "injury_accident" VALUES (3,3,"Dejan Stanković","Hamstring muscle strain in his left thigh","2","inter.it"); +INSERT INTO "injury_accident" VALUES (4,4,"Wesley Sneijder","Foot injury","1","inter.it"); +INSERT INTO "injury_accident" VALUES (5,5,"Diego Milito","Slight thigh strain in right leg","1","inter.it"); +INSERT INTO "injury_accident" VALUES (5,6,"Javier Zanetti","Post-traumatic pneumothrorax","4","inter.it"); +INSERT INTO "injury_accident" VALUES (6,7,"Walter Samuel","Right thigh muscle strain","3","inter.it"); +INSERT INTO "injury_accident" VALUES (6,8,"Thiago Motta","Surgery on his right knee","10","inter.it"); +INSERT INTO "injury_accident" VALUES (6,9,"Goran Pandev","Ankle problem","3","inter.it"); +INSERT INTO "injury_accident" VALUES (8,10,"Iván Córdoba","Sustained a biceps femoris strain in his left leg","1","inter.it"); +INSERT INTO "injury_accident" VALUES (9,11,"Esteban Cambiasso","First-degree strain left hamstring muscles","2","inter.it"); +INSERT INTO "injury_accident" VALUES (10,12,"Dejan Stanković (2)","Right calf strain","4 (6)","inter.it"); +INSERT INTO "injury_accident" VALUES (10,13,"Wesley Sneijder (2)","Fainted during half time","1 (2)","inter.it"); +INSERT INTO "injury_accident" VALUES (11,14,"Esteban Cambiasso (2)","Sustained posterior thigh strains in his left leg","4 (6)","inter.it"); +INSERT INTO "injury_accident" VALUES (12,15,"Thiago Motta (2)","Knee problem","7 (17)","inter.it"); + diff --git a/database/gas_company/gas_company.sqlite b/database/gas_company/gas_company.sqlite new file mode 100644 index 0000000000000000000000000000000000000000..2ba42b3ccde444b91251b1320b562dc202299886 Binary files /dev/null and b/database/gas_company/gas_company.sqlite differ diff --git a/database/gas_company/schema.sql b/database/gas_company/schema.sql new file mode 100644 index 0000000000000000000000000000000000000000..1c40186c4f3623afaa11c9e4c1bb7ba468b20fcb --- /dev/null +++ b/database/gas_company/schema.sql @@ -0,0 +1,67 @@ + +PRAGMA foreign_keys = ON; + + +CREATE TABLE "company" ( +"Company_ID" int, +"Rank" int, +"Company" text, +"Headquarters" text, +"Main_Industry" text, +"Sales_billion" real, +"Profits_billion" real, +"Assets_billion" real, +"Market_Value" real, +PRIMARY KEY ("Company_ID") +); + +CREATE TABLE "gas_station" ( +"Station_ID" int, +"Open_Year" int, +"Location" text, +"Manager_Name" text, +"Vice_Manager_Name" text, +"Representative_Name" text, +PRIMARY KEY ("Station_ID") +); + +INSERT INTO "company" VALUES (1,"1","ExxonMobil","USA","Oil and gas","433.5","41.1","331.1","407.4"); +INSERT INTO "company" VALUES (2,"3","General Electric","USA","Conglomerate","147.3","14.2","717.2","213.7"); +INSERT INTO "company" VALUES (3,"4","Royal Dutch Shell","Netherlands","Oil and gas","470.2","30.9","340.5","227.6"); +INSERT INTO "company" VALUES (4,"5","Industrial and Commercial Bank of China","China","Banking","82.6","25.1","2039.1","237.4"); +INSERT INTO "company" VALUES (5,"6","HSBC","UK","Banking","102","16.2","2550","164.3"); +INSERT INTO "company" VALUES (6,"7","PetroChina","China","Oil and gas","310.1","20.6","304.7","294.7"); +INSERT INTO "company" VALUES (7,"8","Berkshire Hathaway","USA","Conglomerate","143.7","10.3","392.6","202.2"); +INSERT INTO "company" VALUES (8,"9","Wells Fargo","USA","Banking","87.6","15.9","1313.9","178.7"); +INSERT INTO "company" VALUES (9,"10","Petrobras","Brazil","Oil and gas","145.9","20.1","319.4","180"); +INSERT INTO "company" VALUES (10,"11","BP","UK","Oil and gas","375.5","25.7","292.5","147.4"); + + +INSERT INTO "gas_station" VALUES (1,"1998","Herne Hill","BrianWingrave","Russell Denman","Clive Burr"); +INSERT INTO "gas_station" VALUES (2,"1999","Channel Hill","SimonMarloe","Russell Brown","Rob Jefferies "); +INSERT INTO "gas_station" VALUES (3,"2000","Reading North","Simon Cope Derek Marloe","James Colin ","Dave Edwards Roger "); +INSERT INTO "gas_station" VALUES (4,"2002","Herne St","Colin Denman","Martin Garnham","Ray Hughes"); +INSERT INTO "gas_station" VALUES (5,"2003","Reading","Colin Denman","Martin Freeman","Andrew Russell"); +INSERT INTO "gas_station" VALUES (6,"2004","Herne Ave","Tom Whit","Simon Gaywood","Tony Gibb"); +INSERT INTO "gas_station" VALUES (7,"2005","Hennry Hill","Bryan Taylor","James Holland-Leader","Simon Gaywood"); +INSERT INTO "gas_station" VALUES (8,"2006","Jane Ave","BryanDenman","James Holland-Leader","Simon Gaywood"); +INSERT INTO "gas_station" VALUES (9,"2007","Maindy Hill","Tony Bristow","JameMarloe","Courtney Rowe"); +INSERT INTO "gas_station" VALUES (10,"2008","Maindy Ave","Luke Rowe","TonyBristow","Chris Pyatt"); +INSERT INTO "gas_station" VALUES (11,"2009","Newport Rd","Jon Rowe","Steve Parsons","Tim Read"); + +CREATE TABLE "station_company" ( +"Station_ID" int, +"Company_ID" int, +"Rank_of_the_Year" int, +PRIMARY KEY ("Station_ID","Company_ID"), +FOREIGN KEY (`Station_ID`) REFERENCES `gas_station`(`Station_ID`), +FOREIGN KEY (`Company_ID`) REFERENCES `company`(`Company_ID`) +); + +INSERT INTO "station_company" VALUES (11,1,1); +INSERT INTO "station_company" VALUES (1,3,2); +INSERT INTO "station_company" VALUES (6,6,3); +INSERT INTO "station_company" VALUES (7,9,4); +INSERT INTO "station_company" VALUES (10,10,9); +INSERT INTO "station_company" VALUES (4,1,13); + diff --git a/database/geo/geo.sqlite b/database/geo/geo.sqlite new file mode 100644 index 0000000000000000000000000000000000000000..2c1be7fa417e3911fd82d08249c469df9c83662c Binary files /dev/null and b/database/geo/geo.sqlite differ diff --git a/database/geo/schema.sql b/database/geo/schema.sql new file mode 100644 index 0000000000000000000000000000000000000000..b705e2e8bc705377ef5d18d7b54ac0a3a6928d3d --- /dev/null +++ b/database/geo/schema.sql @@ -0,0 +1,58 @@ +PRAGMA foreign_keys = ON; + +CREATE TABLE `state` ( + `state_name` text +, `population` integer DEFAULT NULL +, `area` double DEFAULT NULL +, `country_name` varchar(3) NOT NULL DEFAULT '' +, `capital` text +, `density` double DEFAULT NULL +, PRIMARY KEY (`state_name`) +); + +CREATE TABLE `city` ( + `city_name` text +, `population` integer DEFAULT NULL +, `country_name` varchar(3) NOT NULL DEFAULT '' +, `state_name` text +, PRIMARY KEY (`city_name`,`state_name`) +, FOREIGN KEY(`state_name`) REFERENCES `state`(`state_name`) +); +CREATE TABLE `border_info` ( + `state_name` text +, `border` text +, PRIMARY KEY (`border`,`state_name`) +, FOREIGN KEY(`state_name`) REFERENCES `state`(`state_name`) +, FOREIGN KEY(`border`) REFERENCES `state`(`state_name`) +); +CREATE TABLE `highlow` ( + `state_name` text +, `highest_elevation` text +, `lowest_point` text +, `highest_point` text +, `lowest_elevation` text +, PRIMARY KEY (`state_name`) +, FOREIGN KEY(`state_name`) REFERENCES `state`(`state_name`) +); +CREATE TABLE `lake` ( + `lake_name` text +, `area` double DEFAULT NULL +, `country_name` varchar(3) NOT NULL DEFAULT '' +, `state_name` text +); +CREATE TABLE `mountain` ( + `mountain_name` text +, `mountain_altitude` integer DEFAULT NULL +, `country_name` varchar(3) NOT NULL DEFAULT '' +, `state_name` text +, PRIMARY KEY (`mountain_name`, `state_name`) +, FOREIGN KEY(`state_name`) REFERENCES `state`(`state_name`) +); +CREATE TABLE `river` ( + `river_name` text +, `length` integer DEFAULT NULL +, `country_name` varchar(3) NOT NULL DEFAULT '' +, `traverse` text +, PRIMARY KEY (`river_name`) +, FOREIGN KEY(`traverse`) REFERENCES `state`(`state_name`) +); \ No newline at end of file diff --git a/database/gymnast/gymnast.sqlite b/database/gymnast/gymnast.sqlite new file mode 100644 index 0000000000000000000000000000000000000000..ba8663104f0432509c510670ce2abc31d6421b38 Binary files /dev/null and b/database/gymnast/gymnast.sqlite differ diff --git a/database/gymnast/schema.sql b/database/gymnast/schema.sql new file mode 100644 index 0000000000000000000000000000000000000000..e5ba5b14f77fe88b06023f2452789bee856c00c6 --- /dev/null +++ b/database/gymnast/schema.sql @@ -0,0 +1,45 @@ +PRAGMA foreign_keys = ON; + +CREATE TABLE "gymnast" ( +"Gymnast_ID" int, +"Floor_Exercise_Points" real, +"Pommel_Horse_Points" real, +"Rings_Points" real, +"Vault_Points" real, +"Parallel_Bars_Points" real, +"Horizontal_Bar_Points" real, +"Total_Points" real, +PRIMARY KEY ("Gymnast_ID"), +FOREIGN KEY ("Gymnast_ID") REFERENCES "people"("People_ID") +); + +CREATE TABLE "people" ( +"People_ID" int, +"Name" text, +"Age" real, +"Height" real, +"Hometown" text, +PRIMARY KEY ("People_ID") +); + + +INSERT INTO "people" VALUES (1,"Paul Hamm","24","1.71","Santo Domingo"); +INSERT INTO "people" VALUES (2,"Lorraine Súarez Carmona","21","1.75","Bonao"); +INSERT INTO "people" VALUES (3,"Ashley Pérez Cabrera","19","1.70","Miami"); +INSERT INTO "people" VALUES (4,"Elizabeth Quiñónez Aroyo","20","1.71","Santo Domingo"); +INSERT INTO "people" VALUES (5,"Eve Tatiana Cruz Oviedo","19","1.72","Santo Domingo"); +INSERT INTO "people" VALUES (6,"Nadia Caba Rodríguez","22","1.79","Santo Domingo"); +INSERT INTO "people" VALUES (7,"Clary Sermina Delgado Cid","21","1.75","Santiago de los Caballeros"); +INSERT INTO "people" VALUES (8,"Marina Castro Medina","20","1.76","Santo Domingo"); +INSERT INTO "people" VALUES (9,"Rosa Clarissa Ortíz Melo","23","1.81","La Romana"); +INSERT INTO "people" VALUES (10,"Endis de los Santos Álvarez","24","1.72","Los Alcarrizos"); + + +INSERT INTO "gymnast" VALUES ("1","9.725","9.737","9.512","9.575","9.762","9.750","58.061"); +INSERT INTO "gymnast" VALUES ("2","9.700","9.625","9.625","9.650","9.587","9.737","57.924"); +INSERT INTO "gymnast" VALUES ("4","8.987","9.750","9.750","9.650","9.787","9.725","57.649"); +INSERT INTO "gymnast" VALUES ("6","9.762","9.325","9.475","9.762","9.562","9.550","57.436"); +INSERT INTO "gymnast" VALUES ("7","9.687","9.675","9.300","9.537","9.725","9.500","57.424"); +INSERT INTO "gymnast" VALUES ("8","9.650","9.712","9.487","9.637","9.500","9.412","57.398"); +INSERT INTO "gymnast" VALUES ("10","9.412","9.525","9.712","9.550","9.625","9.550","57.374"); + diff --git a/database/hospital_1/hospital_1.sqlite b/database/hospital_1/hospital_1.sqlite new file mode 100644 index 0000000000000000000000000000000000000000..cbce26efabe6ae479acf6bb5d7a702543985dfea Binary files /dev/null and b/database/hospital_1/hospital_1.sqlite differ diff --git a/database/hospital_1/schema.sql b/database/hospital_1/schema.sql new file mode 100644 index 0000000000000000000000000000000000000000..4ae8965e2f0de8c48efb5dbe0d94a132d083fab7 --- /dev/null +++ b/database/hospital_1/schema.sql @@ -0,0 +1,310 @@ +-- https://en.wikibooks.org/wiki/SQL_Exercises/The_Hospital + +DROP TABLE IF EXISTS Physician; +CREATE TABLE Physician ( + EmployeeID INTEGER NOT NULL, + Name VARCHAR(30) NOT NULL, + Position VARCHAR(30) NOT NULL, + SSN INTEGER NOT NULL, + CONSTRAINT pk_physician PRIMARY KEY(EmployeeID) +); + +DROP TABLE IF EXISTS Department; +CREATE TABLE Department ( + DepartmentID INTEGER NOT NULL, + Name VARCHAR(30) NOT NULL, + Head INTEGER NOT NULL, + CONSTRAINT pk_Department PRIMARY KEY(DepartmentID), + CONSTRAINT fk_Department_Physician_EmployeeID FOREIGN KEY(Head) REFERENCES Physician(EmployeeID) +); + + +DROP TABLE IF EXISTS Affiliated_With; +CREATE TABLE Affiliated_With ( + Physician INTEGER NOT NULL, + Department INTEGER NOT NULL, + PrimaryAffiliation BOOLEAN NOT NULL, + CONSTRAINT fk_Affiliated_With_Physician_EmployeeID FOREIGN KEY(Physician) REFERENCES Physician(EmployeeID), + CONSTRAINT fk_Affiliated_With_Department_DepartmentID FOREIGN KEY(Department) REFERENCES Department(DepartmentID), + PRIMARY KEY(Physician, Department) +); + +DROP TABLE IF EXISTS Procedures; +CREATE TABLE Procedures ( + Code INTEGER PRIMARY KEY NOT NULL, + Name VARCHAR(30) NOT NULL, + Cost REAL NOT NULL +); + +DROP TABLE IF EXISTS Trained_In; +CREATE TABLE Trained_In ( + Physician INTEGER NOT NULL, + Treatment INTEGER NOT NULL, + CertificationDate DATETIME NOT NULL, + CertificationExpires DATETIME NOT NULL, + CONSTRAINT fk_Trained_In_Physician_EmployeeID FOREIGN KEY(Physician) REFERENCES Physician(EmployeeID), + CONSTRAINT fk_Trained_In_Procedures_Code FOREIGN KEY(Treatment) REFERENCES Procedures(Code), + PRIMARY KEY(Physician, Treatment) +); + +DROP TABLE IF EXISTS Patient; +CREATE TABLE Patient ( + SSN INTEGER PRIMARY KEY NOT NULL, + Name VARCHAR(30) NOT NULL, + Address VARCHAR(30) NOT NULL, + Phone VARCHAR(30) NOT NULL, + InsuranceID INTEGER NOT NULL, + PCP INTEGER NOT NULL, + CONSTRAINT fk_Patient_Physician_EmployeeID FOREIGN KEY(PCP) REFERENCES Physician(EmployeeID) +); + +DROP TABLE IF EXISTS Nurse; +CREATE TABLE Nurse ( + EmployeeID INTEGER PRIMARY KEY NOT NULL, + Name VARCHAR(30) NOT NULL, + Position VARCHAR(30) NOT NULL, + Registered BOOLEAN NOT NULL, + SSN INTEGER NOT NULL +); + +DROP TABLE IF EXISTS Appointment; +CREATE TABLE Appointment ( + AppointmentID INTEGER PRIMARY KEY NOT NULL, + Patient INTEGER NOT NULL, + PrepNurse INTEGER, + Physician INTEGER NOT NULL, + Start DATETIME NOT NULL, + End DATETIME NOT NULL, + ExaminationRoom TEXT NOT NULL, + CONSTRAINT fk_Appointment_Patient_SSN FOREIGN KEY(Patient) REFERENCES Patient(SSN), + CONSTRAINT fk_Appointment_Nurse_EmployeeID FOREIGN KEY(PrepNurse) REFERENCES Nurse(EmployeeID), + CONSTRAINT fk_Appointment_Physician_EmployeeID FOREIGN KEY(Physician) REFERENCES Physician(EmployeeID) +); + +DROP TABLE IF EXISTS Medication; +CREATE TABLE Medication ( + Code INTEGER PRIMARY KEY NOT NULL, + Name VARCHAR(30) NOT NULL, + Brand VARCHAR(30) NOT NULL, + Description VARCHAR(30) NOT NULL +); + + +DROP TABLE IF EXISTS Prescribes; +CREATE TABLE Prescribes ( + Physician INTEGER NOT NULL, + Patient INTEGER NOT NULL, + Medication INTEGER NOT NULL, + Date DATETIME NOT NULL, + Appointment INTEGER, + Dose VARCHAR(30) NOT NULL, + PRIMARY KEY(Physician, Patient, Medication, Date), + CONSTRAINT fk_Prescribes_Physician_EmployeeID FOREIGN KEY(Physician) REFERENCES Physician(EmployeeID), + CONSTRAINT fk_Prescribes_Patient_SSN FOREIGN KEY(Patient) REFERENCES Patient(SSN), + CONSTRAINT fk_Prescribes_Medication_Code FOREIGN KEY(Medication) REFERENCES Medication(Code), + CONSTRAINT fk_Prescribes_Appointment_AppointmentID FOREIGN KEY(Appointment) REFERENCES Appointment(AppointmentID) +); + +DROP TABLE IF EXISTS Block; +CREATE TABLE Block ( + BlockFloor INTEGER NOT NULL, + BlockCode INTEGER NOT NULL, + PRIMARY KEY(BlockFloor, BlockCode) +); + +DROP TABLE IF EXISTS Room; +CREATE TABLE Room ( + RoomNumber INTEGER PRIMARY KEY NOT NULL, + RoomType VARCHAR(30) NOT NULL, + BlockFloor INTEGER NOT NULL, + BlockCode INTEGER NOT NULL, + Unavailable BOOLEAN NOT NULL, + CONSTRAINT fk_Room_Block_PK FOREIGN KEY(BlockFloor, BlockCode) REFERENCES Block(BlockFloor, BlockCode) +); + +DROP TABLE IF EXISTS On_Call; +CREATE TABLE On_Call ( + Nurse INTEGER NOT NULL, + BlockFloor INTEGER NOT NULL, + BlockCode INTEGER NOT NULL, + OnCallStart DATETIME NOT NULL, + OnCallEnd DATETIME NOT NULL, + PRIMARY KEY(Nurse, BlockFloor, BlockCode, OnCallStart, OnCallEnd), + CONSTRAINT fk_OnCall_Nurse_EmployeeID FOREIGN KEY(Nurse) REFERENCES Nurse(EmployeeID), + CONSTRAINT fk_OnCall_Block_Floor FOREIGN KEY(BlockFloor, BlockCode) REFERENCES Block(BlockFloor, BlockCode) +); + +DROP TABLE IF EXISTS Stay; +CREATE TABLE Stay ( + StayID INTEGER PRIMARY KEY NOT NULL, + Patient INTEGER NOT NULL, + Room INTEGER NOT NULL, + StayStart DATETIME NOT NULL, + StayEnd DATETIME NOT NULL, + CONSTRAINT fk_Stay_Patient_SSN FOREIGN KEY(Patient) REFERENCES Patient(SSN), + CONSTRAINT fk_Stay_Room_Number FOREIGN KEY(Room) REFERENCES Room(RoomNumber) +); + +DROP TABLE IF EXISTS Undergoes; +CREATE TABLE Undergoes ( + Patient INTEGER NOT NULL, + Procedures INTEGER NOT NULL, + Stay INTEGER NOT NULL, + DateUndergoes DATETIME NOT NULL, + Physician INTEGER NOT NULL, + AssistingNurse INTEGER, + PRIMARY KEY(Patient, Procedures, Stay, DateUndergoes), + CONSTRAINT fk_Undergoes_Patient_SSN FOREIGN KEY(Patient) REFERENCES Patient(SSN), + CONSTRAINT fk_Undergoes_Procedures_Code FOREIGN KEY(Procedures) REFERENCES Procedures(Code), + CONSTRAINT fk_Undergoes_Stay_StayID FOREIGN KEY(Stay) REFERENCES Stay(StayID), + CONSTRAINT fk_Undergoes_Physician_EmployeeID FOREIGN KEY(Physician) REFERENCES Physician(EmployeeID), + CONSTRAINT fk_Undergoes_Nurse_EmployeeID FOREIGN KEY(AssistingNurse) REFERENCES Nurse(EmployeeID) +); + + +INSERT INTO Physician VALUES(1,'John Dorian','Staff Internist',111111111); +INSERT INTO Physician VALUES(2,'Elliot Reid','Attending Physician',222222222); +INSERT INTO Physician VALUES(3,'Christopher Turk','Surgical Attending Physician',333333333); +INSERT INTO Physician VALUES(4,'Percival Cox','Senior Attending Physician',444444444); +INSERT INTO Physician VALUES(5,'Bob Kelso','Head Chief of Medicine',555555555); +INSERT INTO Physician VALUES(6,'Todd Quinlan','Surgical Attending Physician',666666666); +INSERT INTO Physician VALUES(7,'John Wen','Surgical Attending Physician',777777777); +INSERT INTO Physician VALUES(8,'Keith Dudemeister','MD Resident',888888888); +INSERT INTO Physician VALUES(9,'Molly Clock','Attending Psychiatrist',999999999); + +INSERT INTO Department VALUES(1,'General Medicine',4); +INSERT INTO Department VALUES(2,'Surgery',7); +INSERT INTO Department VALUES(3,'Psychiatry',9); + +INSERT INTO Affiliated_With VALUES(1,1,1); +INSERT INTO Affiliated_With VALUES(2,1,1); +INSERT INTO Affiliated_With VALUES(3,1,0); +INSERT INTO Affiliated_With VALUES(3,2,1); +INSERT INTO Affiliated_With VALUES(4,1,1); +INSERT INTO Affiliated_With VALUES(5,1,1); +INSERT INTO Affiliated_With VALUES(6,2,1); +INSERT INTO Affiliated_With VALUES(7,1,0); +INSERT INTO Affiliated_With VALUES(7,2,1); +INSERT INTO Affiliated_With VALUES(8,1,1); +INSERT INTO Affiliated_With VALUES(9,3,1); + +INSERT INTO Procedures VALUES(1,'Reverse Rhinopodoplasty',1500.0); +INSERT INTO Procedures VALUES(2,'Obtuse Pyloric Recombobulation',3750.0); +INSERT INTO Procedures VALUES(3,'Folded Demiophtalmectomy',4500.0); +INSERT INTO Procedures VALUES(4,'Complete Walletectomy',10000.0); +INSERT INTO Procedures VALUES(5,'Obfuscated Dermogastrotomy',4899.0); +INSERT INTO Procedures VALUES(6,'Reversible Pancreomyoplasty',5600.0); +INSERT INTO Procedures VALUES(7,'Follicular Demiectomy',25.0); + +INSERT INTO Patient VALUES(100000001,'John Smith','42 Foobar Lane','555-0256',68476213,1); +INSERT INTO Patient VALUES(100000002,'Grace Ritchie','37 Snafu Drive','555-0512',36546321,2); +INSERT INTO Patient VALUES(100000003,'Random J. Patient','101 Omgbbq Street','555-1204',65465421,2); +INSERT INTO Patient VALUES(100000004,'Dennis Doe','1100 Foobaz Avenue','555-2048',68421879,3); + +INSERT INTO Nurse VALUES(101,'Carla Espinosa','Head Nurse',1,111111110); +INSERT INTO Nurse VALUES(102,'Laverne Roberts','Nurse',1,222222220); +INSERT INTO Nurse VALUES(103,'Paul Flowers','Nurse',0,333333330); + +INSERT INTO Appointment VALUES(13216584,100000001,101,1,'2008-04-24 10:00','2008-04-24 11:00','A'); +INSERT INTO Appointment VALUES(26548913,100000002,101,2,'2008-04-24 10:00','2008-04-24 11:00','B'); +INSERT INTO Appointment VALUES(36549879,100000001,102,1,'2008-04-25 10:00','2008-04-25 11:00','A'); +INSERT INTO Appointment VALUES(46846589,100000004,103,4,'2008-04-25 10:00','2008-04-25 11:00','B'); +INSERT INTO Appointment VALUES(59871321,100000004,NULL,4,'2008-04-26 10:00','2008-04-26 11:00','C'); +INSERT INTO Appointment VALUES(69879231,100000003,103,2,'2008-04-26 11:00','2008-04-26 12:00','C'); +INSERT INTO Appointment VALUES(76983231,100000001,NULL,3,'2008-04-26 12:00','2008-04-26 13:00','C'); +INSERT INTO Appointment VALUES(86213939,100000004,102,9,'2008-04-27 10:00','2008-04-21 11:00','A'); +INSERT INTO Appointment VALUES(93216548,100000002,101,2,'2008-04-27 10:00','2008-04-27 11:00','B'); + +INSERT INTO Medication VALUES(1,'Procrastin-X','X','N/A'); +INSERT INTO Medication VALUES(2,'Thesisin','Foo Labs','N/A'); +INSERT INTO Medication VALUES(3,'Awakin','Bar Laboratories','N/A'); +INSERT INTO Medication VALUES(4,'Crescavitin','Baz Industries','N/A'); +INSERT INTO Medication VALUES(5,'Melioraurin','Snafu Pharmaceuticals','N/A'); + +INSERT INTO Prescribes VALUES(1,100000001,1,'2008-04-24 10:47',13216584,'5'); +INSERT INTO Prescribes VALUES(9,100000004,2,'2008-04-27 10:53',86213939,'10'); +INSERT INTO Prescribes VALUES(9,100000004,2,'2008-04-30 16:53',NULL,'5'); + +INSERT INTO Block VALUES(1,1); +INSERT INTO Block VALUES(1,2); +INSERT INTO Block VALUES(1,3); +INSERT INTO Block VALUES(2,1); +INSERT INTO Block VALUES(2,2); +INSERT INTO Block VALUES(2,3); +INSERT INTO Block VALUES(3,1); +INSERT INTO Block VALUES(3,2); +INSERT INTO Block VALUES(3,3); +INSERT INTO Block VALUES(4,1); +INSERT INTO Block VALUES(4,2); +INSERT INTO Block VALUES(4,3); + +INSERT INTO Room VALUES(101,'Single',1,1,0); +INSERT INTO Room VALUES(102,'Single',1,1,0); +INSERT INTO Room VALUES(103,'Single',1,1,0); +INSERT INTO Room VALUES(111,'Single',1,2,0); +INSERT INTO Room VALUES(112,'Single',1,2,1); +INSERT INTO Room VALUES(113,'Single',1,2,0); +INSERT INTO Room VALUES(121,'Single',1,3,0); +INSERT INTO Room VALUES(122,'Single',1,3,0); +INSERT INTO Room VALUES(123,'Single',1,3,0); +INSERT INTO Room VALUES(201,'Single',2,1,1); +INSERT INTO Room VALUES(202,'Single',2,1,0); +INSERT INTO Room VALUES(203,'Single',2,1,0); +INSERT INTO Room VALUES(211,'Single',2,2,0); +INSERT INTO Room VALUES(212,'Single',2,2,0); +INSERT INTO Room VALUES(213,'Single',2,2,1); +INSERT INTO Room VALUES(221,'Single',2,3,0); +INSERT INTO Room VALUES(222,'Single',2,3,0); +INSERT INTO Room VALUES(223,'Single',2,3,0); +INSERT INTO Room VALUES(301,'Single',3,1,0); +INSERT INTO Room VALUES(302,'Single',3,1,1); +INSERT INTO Room VALUES(303,'Single',3,1,0); +INSERT INTO Room VALUES(311,'Single',3,2,0); +INSERT INTO Room VALUES(312,'Single',3,2,0); +INSERT INTO Room VALUES(313,'Single',3,2,0); +INSERT INTO Room VALUES(321,'Single',3,3,1); +INSERT INTO Room VALUES(322,'Single',3,3,0); +INSERT INTO Room VALUES(323,'Single',3,3,0); +INSERT INTO Room VALUES(401,'Single',4,1,0); +INSERT INTO Room VALUES(402,'Single',4,1,1); +INSERT INTO Room VALUES(403,'Single',4,1,0); +INSERT INTO Room VALUES(411,'Single',4,2,0); +INSERT INTO Room VALUES(412,'Single',4,2,0); +INSERT INTO Room VALUES(413,'Single',4,2,0); +INSERT INTO Room VALUES(421,'Single',4,3,1); +INSERT INTO Room VALUES(422,'Single',4,3,0); +INSERT INTO Room VALUES(423,'Single',4,3,0); + +INSERT INTO On_Call VALUES(101,1,1,'2008-11-04 11:00','2008-11-04 19:00'); +INSERT INTO On_Call VALUES(101,1,2,'2008-11-04 11:00','2008-11-04 19:00'); +INSERT INTO On_Call VALUES(102,1,3,'2008-11-04 11:00','2008-11-04 19:00'); +INSERT INTO On_Call VALUES(103,1,1,'2008-11-04 19:00','2008-11-05 03:00'); +INSERT INTO On_Call VALUES(103,1,2,'2008-11-04 19:00','2008-11-05 03:00'); +INSERT INTO On_Call VALUES(103,1,3,'2008-11-04 19:00','2008-11-05 03:00'); + +INSERT INTO Stay VALUES(3215,100000001,111,'2008-05-01','2008-05-04'); +INSERT INTO Stay VALUES(3216,100000003,123,'2008-05-03','2008-05-14'); +INSERT INTO Stay VALUES(3217,100000004,112,'2008-05-02','2008-05-03'); + +INSERT INTO Undergoes VALUES(100000001,6,3215,'2008-05-02',3,101); +INSERT INTO Undergoes VALUES(100000001,2,3215,'2008-05-03',7,101); +INSERT INTO Undergoes VALUES(100000004,1,3217,'2008-05-07',3,102); +INSERT INTO Undergoes VALUES(100000004,5,3217,'2008-05-09',6,105); +INSERT INTO Undergoes VALUES(100000001,7,3217,'2008-05-10',7,101); +INSERT INTO Undergoes VALUES(100000004,4,3217,'2008-05-13',3,103); + +INSERT INTO Trained_In VALUES(3,1,'2008-01-01','2008-12-31'); +INSERT INTO Trained_In VALUES(3,2,'2008-01-01','2008-12-31'); +INSERT INTO Trained_In VALUES(3,5,'2008-01-01','2008-12-31'); +INSERT INTO Trained_In VALUES(3,6,'2008-01-01','2008-12-31'); +INSERT INTO Trained_In VALUES(3,7,'2008-01-01','2008-12-31'); +INSERT INTO Trained_In VALUES(6,2,'2008-01-01','2008-12-31'); +INSERT INTO Trained_In VALUES(6,5,'2007-01-01','2007-12-31'); +INSERT INTO Trained_In VALUES(6,6,'2008-01-01','2008-12-31'); +INSERT INTO Trained_In VALUES(7,1,'2008-01-01','2008-12-31'); +INSERT INTO Trained_In VALUES(7,2,'2008-01-01','2008-12-31'); +INSERT INTO Trained_In VALUES(7,3,'2008-01-01','2008-12-31'); +INSERT INTO Trained_In VALUES(7,4,'2008-01-01','2008-12-31'); +INSERT INTO Trained_In VALUES(7,5,'2008-01-01','2008-12-31'); +INSERT INTO Trained_In VALUES(7,6,'2008-01-01','2008-12-31'); +INSERT INTO Trained_In VALUES(7,7,'2008-01-01','2008-12-31'); diff --git a/database/hr_1/hr_1.sqlite b/database/hr_1/hr_1.sqlite new file mode 100644 index 0000000000000000000000000000000000000000..bb05596914cd114514b9d7761455c1679cc8e7c9 Binary files /dev/null and b/database/hr_1/hr_1.sqlite differ diff --git a/database/hr_1/schema.sql b/database/hr_1/schema.sql new file mode 100644 index 0000000000000000000000000000000000000000..a435efd14f1f7b3fc9974955172cd6f00b3713fc --- /dev/null +++ b/database/hr_1/schema.sql @@ -0,0 +1,392 @@ +-- phpMyAdmin SQL Dump +-- version 4.0.10.7 +-- http://www.phpmyadmin.net +-- +-- Host: localhost +-- Generation Time: Mar 20, 2015 at 01:43 AM +-- Server version: 5.5.34-cll-lve +-- PHP Version: 5.4.23 + + + +/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; +/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; +/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; +/*!40101 SET NAMES utf8 */; +CREATE TABLE IF NOT EXISTS `regions` ( + `REGION_ID` decimal(5,0) NOT NULL, + `REGION_NAME` varchar(25) DEFAULT NULL, + PRIMARY KEY (`REGION_ID`) +); + +-- +-- Dumping data for table `regions` +-- + +INSERT INTO `regions` (`REGION_ID`, `REGION_NAME`) VALUES +('1', 'Europe\r'), +('2', 'Americas\r'), +('3', 'Asia\r'), +('4', 'Middle East and Africa\r'); +-- +-- Database: `wrpracti_bookinfo` +-- + +-- -------------------------------------------------------- + +-- +-- Table structure for table `countries` +-- + +CREATE TABLE IF NOT EXISTS `countries` ( + `COUNTRY_ID` varchar(2) NOT NULL, + `COUNTRY_NAME` varchar(40) DEFAULT NULL, + `REGION_ID` decimal(10,0) DEFAULT NULL, + PRIMARY KEY (`COUNTRY_ID`), + FOREIGN KEY (`REGION_ID`) REFERENCES regions (`REGION_ID`) +); + +-- +-- Dumping data for table `countries` +-- + +INSERT INTO `countries` (`COUNTRY_ID`, `COUNTRY_NAME`, `REGION_ID`) VALUES +('AR', 'Argentina', '2'), +('AU', 'Australia', '3'), +('BE', 'Belgium', '1'), +('BR', 'Brazil', '2'), +('CA', 'Canada', '2'), +('CH', 'Switzerland', '1'), +('CN', 'China', '3'), +('DE', 'Germany', '1'), +('DK', 'Denmark', '1'), +('EG', 'Egypt', '4'), +('FR', 'France', '1'), +('HK', 'HongKong', '3'), +('IL', 'Israel', '4'), +('IN', 'India', '3'), +('IT', 'Italy', '1'), +('JP', 'Japan', '3'), +('KW', 'Kuwait', '4'), +('MX', 'Mexico', '2'), +('NG', 'Nigeria', '4'), +('NL', 'Netherlands', '1'), +('SG', 'Singapore', '3'), +('UK', 'United Kingdom', '1'), +('US', 'United States of America', '2'), +('ZM', 'Zambia', '4'), +('ZW', 'Zimbabwe', '4'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `departments` +-- + +CREATE TABLE IF NOT EXISTS `departments` ( + `DEPARTMENT_ID` decimal(4,0) NOT NULL DEFAULT '0', + `DEPARTMENT_NAME` varchar(30) NOT NULL, + `MANAGER_ID` decimal(6,0) DEFAULT NULL, + `LOCATION_ID` decimal(4,0) DEFAULT NULL, + PRIMARY KEY (`DEPARTMENT_ID`) +); + +-- +-- Dumping data for table `departments` +-- + +INSERT INTO `departments` (`DEPARTMENT_ID`, `DEPARTMENT_NAME`, `MANAGER_ID`, `LOCATION_ID`) VALUES +('10', 'Administration', '200', '1700'), +('20', 'Marketing', '201', '1800'), +('30', 'Purchasing', '114', '1700'), +('40', 'Human Resources', '203', '2400'), +('50', 'Shipping', '121', '1500'), +('60', 'IT', '103', '1400'), +('70', 'Public Relations', '204', '2700'), +('80', 'Sales', '145', '2500'), +('90', 'Executive', '100', '1700'), +('100', 'Finance', '108', '1700'), +('110', 'Accounting', '205', '1700'), +('120', 'Treasury', '0', '1700'), +('130', 'Corporate Tax', '0', '1700'), +('140', 'Control And Credit', '0', '1700'), +('150', 'Shareholder Services', '0', '1700'), +('160', 'Benefits', '0', '1700'), +('170', 'Manufacturing', '0', '1700'), +('180', 'Construction', '0', '1700'), +('190', 'Contracting', '0', '1700'), +('200', 'Operations', '0', '1700'), +('210', 'IT Support', '0', '1700'), +('220', 'NOC', '0', '1700'), +('230', 'IT Helpdesk', '0', '1700'), +('240', 'Government Sales', '0', '1700'), +('250', 'Retail Sales', '0', '1700'), +('260', 'Recruiting', '0', '1700'), +('270', 'Payroll', '0', '1700'); + + +CREATE TABLE IF NOT EXISTS `jobs` ( + `JOB_ID` varchar(10) NOT NULL DEFAULT '', + `JOB_TITLE` varchar(35) NOT NULL, + `MIN_SALARY` decimal(6,0) DEFAULT NULL, + `MAX_SALARY` decimal(6,0) DEFAULT NULL, + PRIMARY KEY (`JOB_ID`) +); + +-- +-- Dumping data for table `jobs` +-- + +INSERT INTO `jobs` (`JOB_ID`, `JOB_TITLE`, `MIN_SALARY`, `MAX_SALARY`) VALUES +('AD_PRES', 'President', '20000', '40000'), +('AD_VP', 'Administration Vice President', '15000', '30000'), +('AD_ASST', 'Administration Assistant', '3000', '6000'), +('FI_MGR', 'Finance Manager', '8200', '16000'), +('FI_ACCOUNT', 'Accountant', '4200', '9000'), +('AC_MGR', 'Accounting Manager', '8200', '16000'), +('AC_ACCOUNT', 'Public Accountant', '4200', '9000'), +('SA_MAN', 'Sales Manager', '10000', '20000'), +('SA_REP', 'Sales Representative', '6000', '12000'), +('PU_MAN', 'Purchasing Manager', '8000', '15000'), +('PU_CLERK', 'Purchasing Clerk', '2500', '5500'), +('ST_MAN', 'Stock Manager', '5500', '8500'), +('ST_CLERK', 'Stock Clerk', '2000', '5000'), +('SH_CLERK', 'Shipping Clerk', '2500', '5500'), +('IT_PROG', 'Programmer', '4000', '10000'), +('MK_MAN', 'Marketing Manager', '9000', '15000'), +('MK_REP', 'Marketing Representative', '4000', '9000'), +('HR_REP', 'Human Resources Representative', '4000', '9000'), +('PR_REP', 'Public Relations Representative', '4500', '10500'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `employees` +-- + +CREATE TABLE IF NOT EXISTS `employees` ( + `EMPLOYEE_ID` decimal(6,0) NOT NULL DEFAULT '0', + `FIRST_NAME` varchar(20) DEFAULT NULL, + `LAST_NAME` varchar(25) NOT NULL, + `EMAIL` varchar(25) NOT NULL, + `PHONE_NUMBER` varchar(20) DEFAULT NULL, + `HIRE_DATE` date NOT NULL, + `JOB_ID` varchar(10) NOT NULL, + `SALARY` decimal(8,2) DEFAULT NULL, + `COMMISSION_PCT` decimal(2,2) DEFAULT NULL, + `MANAGER_ID` decimal(6,0) DEFAULT NULL, + `DEPARTMENT_ID` decimal(4,0) DEFAULT NULL, + PRIMARY KEY (`EMPLOYEE_ID`), + FOREIGN KEY (`DEPARTMENT_ID`) REFERENCES departments(`DEPARTMENT_ID`), + FOREIGN KEY (`JOB_ID`) REFERENCES jobs(`JOB_ID`) +); + +-- +-- Dumping data for table `employees` +-- + +INSERT INTO `employees` (`EMPLOYEE_ID`, `FIRST_NAME`, `LAST_NAME`, `EMAIL`, `PHONE_NUMBER`, `HIRE_DATE`, `JOB_ID`, `SALARY`, `COMMISSION_PCT`, `MANAGER_ID`, `DEPARTMENT_ID`) VALUES +('100', 'Steven', 'King', 'SKING', '515.123.4567', '1987-06-17', 'AD_PRES', '24000.00', '0.00', '0', '90'), +('101', 'Neena', 'Kochhar', 'NKOCHHAR', '515.123.4568', '1987-06-18', 'AD_VP', '17000.00', '0.00', '100', '90'), +('102', 'Lex', 'De Haan', 'LDEHAAN', '515.123.4569', '1987-06-19', 'AD_VP', '17000.00', '0.00', '100', '90'), +('103', 'Alexander', 'Hunold', 'AHUNOLD', '590.423.4567', '1987-06-20', 'IT_PROG', '9000.00', '0.00', '102', '60'), +('104', 'Bruce', 'Ernst', 'BERNST', '590.423.4568', '1987-06-21', 'IT_PROG', '6000.00', '0.00', '103', '60'), +('105', 'David', 'Austin', 'DAUSTIN', '590.423.4569', '1987-06-22', 'IT_PROG', '4800.00', '0.00', '103', '60'), +('106', 'Valli', 'Pataballa', 'VPATABAL', '590.423.4560', '1987-06-23', 'IT_PROG', '4800.00', '0.00', '103', '60'), +('107', 'Diana', 'Lorentz', 'DLORENTZ', '590.423.5567', '1987-06-24', 'IT_PROG', '4200.00', '0.00', '103', '60'), +('108', 'Nancy', 'Greenberg', 'NGREENBE', '515.124.4569', '1987-06-25', 'FI_MGR', '12000.00', '0.00', '101', '100'), +('109', 'Daniel', 'Faviet', 'DFAVIET', '515.124.4169', '1987-06-26', 'FI_ACCOUNT', '9000.00', '0.00', '108', '100'), +('110', 'John', 'Chen', 'JCHEN', '515.124.4269', '1987-06-27', 'FI_ACCOUNT', '8200.00', '0.00', '108', '100'), +('111', 'Ismael', 'Sciarra', 'ISCIARRA', '515.124.4369', '1987-06-28', 'FI_ACCOUNT', '7700.00', '0.00', '108', '100'), +('112', 'Jose Manuel', 'Urman', 'JMURMAN', '515.124.4469', '1987-06-29', 'FI_ACCOUNT', '7800.00', '0.00', '108', '100'), +('113', 'Luis', 'Popp', 'LPOPP', '515.124.4567', '1987-06-30', 'FI_ACCOUNT', '6900.00', '0.00', '108', '100'), +('114', 'Den', 'Raphaely', 'DRAPHEAL', '515.127.4561', '1987-07-01', 'PU_MAN', '11000.00', '0.00', '100', '30'), +('115', 'Alexander', 'Khoo', 'AKHOO', '515.127.4562', '1987-07-02', 'PU_CLERK', '3100.00', '0.00', '114', '30'), +('116', 'Shelli', 'Baida', 'SBAIDA', '515.127.4563', '1987-07-03', 'PU_CLERK', '2900.00', '0.00', '114', '30'), +('117', 'Sigal', 'Tobias', 'STOBIAS', '515.127.4564', '1987-07-04', 'PU_CLERK', '2800.00', '0.00', '114', '30'), +('118', 'Guy', 'Himuro', 'GHIMURO', '515.127.4565', '1987-07-05', 'PU_CLERK', '2600.00', '0.00', '114', '30'), +('119', 'Karen', 'Colmenares', 'KCOLMENA', '515.127.4566', '1987-07-06', 'PU_CLERK', '2500.00', '0.00', '114', '30'), +('120', 'Matthew', 'Weiss', 'MWEISS', '650.123.1234', '1987-07-07', 'ST_MAN', '8000.00', '0.00', '100', '50'), +('121', 'Adam', 'Fripp', 'AFRIPP', '650.123.2234', '1987-07-08', 'ST_MAN', '8200.00', '0.00', '100', '50'), +('122', 'Payam', 'Kaufling', 'PKAUFLIN', '650.123.3234', '1987-07-09', 'ST_MAN', '7900.00', '0.00', '100', '50'), +('123', 'Shanta', 'Vollman', 'SVOLLMAN', '650.123.4234', '1987-07-10', 'ST_MAN', '6500.00', '0.00', '100', '50'), +('124', 'Kevin', 'Mourgos', 'KMOURGOS', '650.123.5234', '1987-07-11', 'ST_MAN', '5800.00', '0.00', '100', '50'), +('125', 'Julia', 'Nayer', 'JNAYER', '650.124.1214', '1987-07-12', 'ST_CLERK', '3200.00', '0.00', '120', '50'), +('126', 'Irene', 'Mikkilineni', 'IMIKKILI', '650.124.1224', '1987-07-13', 'ST_CLERK', '2700.00', '0.00', '120', '50'), +('127', 'James', 'Landry', 'JLANDRY', '650.124.1334', '1987-07-14', 'ST_CLERK', '2400.00', '0.00', '120', '50'), +('128', 'Steven', 'Markle', 'SMARKLE', '650.124.1434', '1987-07-15', 'ST_CLERK', '2200.00', '0.00', '120', '50'), +('129', 'Laura', 'Bissot', 'LBISSOT', '650.124.5234', '1987-07-16', 'ST_CLERK', '3300.00', '0.00', '121', '50'), +('130', 'Mozhe', 'Atkinson', 'MATKINSO', '650.124.6234', '1987-07-17', 'ST_CLERK', '2800.00', '0.00', '121', '50'), +('131', 'James', 'Marlow', 'JAMRLOW', '650.124.7234', '1987-07-18', 'ST_CLERK', '2500.00', '0.00', '121', '50'), +('132', 'TJ', 'Olson', 'TJOLSON', '650.124.8234', '1987-07-19', 'ST_CLERK', '2100.00', '0.00', '121', '50'), +('133', 'Jason', 'Mallin', 'JMALLIN', '650.127.1934', '1987-07-20', 'ST_CLERK', '3300.00', '0.00', '122', '50'), +('134', 'Michael', 'Rogers', 'MROGERS', '650.127.1834', '1987-07-21', 'ST_CLERK', '2900.00', '0.00', '122', '50'), +('135', 'Ki', 'Gee', 'KGEE', '650.127.1734', '1987-07-22', 'ST_CLERK', '2400.00', '0.00', '122', '50'), +('136', 'Hazel', 'Philtanker', 'HPHILTAN', '650.127.1634', '1987-07-23', 'ST_CLERK', '2200.00', '0.00', '122', '50'), +('137', 'Renske', 'Ladwig', 'RLADWIG', '650.121.1234', '1987-07-24', 'ST_CLERK', '3600.00', '0.00', '123', '50'), +('138', 'Stephen', 'Stiles', 'SSTILES', '650.121.2034', '1987-07-25', 'ST_CLERK', '3200.00', '0.00', '123', '50'), +('139', 'John', 'Seo', 'JSEO', '650.121.2019', '1987-07-26', 'ST_CLERK', '2700.00', '0.00', '123', '50'), +('140', 'Joshua', 'Patel', 'JPATEL', '650.121.1834', '1987-07-27', 'ST_CLERK', '2500.00', '0.00', '123', '50'), +('141', 'Trenna', 'Rajs', 'TRAJS', '650.121.8009', '1987-07-28', 'ST_CLERK', '3500.00', '0.00', '124', '50'), +('142', 'Curtis', 'Davies', 'CDAVIES', '650.121.2994', '1987-07-29', 'ST_CLERK', '3100.00', '0.00', '124', '50'), +('143', 'Randall', 'Matos', 'RMATOS', '650.121.2874', '1987-07-30', 'ST_CLERK', '2600.00', '0.00', '124', '50'), +('144', 'Peter', 'Vargas', 'PVARGAS', '650.121.2004', '1987-07-31', 'ST_CLERK', '2500.00', '0.00', '124', '50'), +('145', 'John', 'Russell', 'JRUSSEL', '011.44.1344.429268', '1987-08-01', 'SA_MAN', '14000.00', '0.40', '100', '80'), +('146', 'Karen', 'Partners', 'KPARTNER', '011.44.1344.467268', '1987-08-02', 'SA_MAN', '13500.00', '0.30', '100', '80'), +('147', 'Alberto', 'Errazuriz', 'AERRAZUR', '011.44.1344.429278', '1987-08-03', 'SA_MAN', '12000.00', '0.30', '100', '80'), +('148', 'Gerald', 'Cambrault', 'GCAMBRAU', '011.44.1344.619268', '1987-08-04', 'SA_MAN', '11000.00', '0.30', '100', '80'), +('149', 'Eleni', 'Zlotkey', 'EZLOTKEY', '011.44.1344.429018', '1987-08-05', 'SA_MAN', '10500.00', '0.20', '100', '80'), +('150', 'Peter', 'Tucker', 'PTUCKER', '011.44.1344.129268', '1987-08-06', 'SA_REP', '10000.00', '0.30', '145', '80'), +('151', 'David', 'Bernstein', 'DBERNSTE', '011.44.1344.345268', '1987-08-07', 'SA_REP', '9500.00', '0.25', '145', '80'), +('152', 'Peter', 'Hall', 'PHALL', '011.44.1344.478968', '1987-08-08', 'SA_REP', '9000.00', '0.25', '145', '80'), +('153', 'Christopher', 'Olsen', 'COLSEN', '011.44.1344.498718', '1987-08-09', 'SA_REP', '8000.00', '0.20', '145', '80'), +('154', 'Nanette', 'Cambrault', 'NCAMBRAU', '011.44.1344.987668', '1987-08-10', 'SA_REP', '7500.00', '0.20', '145', '80'), +('155', 'Oliver', 'Tuvault', 'OTUVAULT', '011.44.1344.486508', '1987-08-11', 'SA_REP', '7000.00', '0.15', '145', '80'), +('156', 'Janette', 'King', 'JKING', '011.44.1345.429268', '1987-08-12', 'SA_REP', '10000.00', '0.35', '146', '80'), +('157', 'Patrick', 'Sully', 'PSULLY', '011.44.1345.929268', '1987-08-13', 'SA_REP', '9500.00', '0.35', '146', '80'), +('158', 'Allan', 'McEwen', 'AMCEWEN', '011.44.1345.829268', '1987-08-14', 'SA_REP', '9000.00', '0.35', '146', '80'), +('159', 'Lindsey', 'Smith', 'LSMITH', '011.44.1345.729268', '1987-08-15', 'SA_REP', '8000.00', '0.30', '146', '80'), +('160', 'Louise', 'Doran', 'LDORAN', '011.44.1345.629268', '1987-08-16', 'SA_REP', '7500.00', '0.30', '146', '80'), +('161', 'Sarath', 'Sewall', 'SSEWALL', '011.44.1345.529268', '1987-08-17', 'SA_REP', '7000.00', '0.25', '146', '80'), +('162', 'Clara', 'Vishney', 'CVISHNEY', '011.44.1346.129268', '1987-08-18', 'SA_REP', '10500.00', '0.25', '147', '80'), +('163', 'Danielle', 'Greene', 'DGREENE', '011.44.1346.229268', '1987-08-19', 'SA_REP', '9500.00', '0.15', '147', '80'), +('164', 'Mattea', 'Marvins', 'MMARVINS', '011.44.1346.329268', '1987-08-20', 'SA_REP', '7200.00', '0.10', '147', '80'), +('165', 'David', 'Lee', 'DLEE', '011.44.1346.529268', '1987-08-21', 'SA_REP', '6800.00', '0.10', '147', '80'), +('166', 'Sundar', 'Ande', 'SANDE', '011.44.1346.629268', '1987-08-22', 'SA_REP', '6400.00', '0.10', '147', '80'), +('167', 'Amit', 'Banda', 'ABANDA', '011.44.1346.729268', '1987-08-23', 'SA_REP', '6200.00', '0.10', '147', '80'), +('168', 'Lisa', 'Ozer', 'LOZER', '011.44.1343.929268', '1987-08-24', 'SA_REP', '11500.00', '0.25', '148', '80'), +('169', 'Harrison', 'Bloom', 'HBLOOM', '011.44.1343.829268', '1987-08-25', 'SA_REP', '10000.00', '0.20', '148', '80'), +('170', 'Tayler', 'Fox', 'TFOX', '011.44.1343.729268', '1987-08-26', 'SA_REP', '9600.00', '0.20', '148', '80'), +('171', 'William', 'Smith', 'WSMITH', '011.44.1343.629268', '1987-08-27', 'SA_REP', '7400.00', '0.15', '148', '80'), +('172', 'Elizabeth', 'Bates', 'EBATES', '011.44.1343.529268', '1987-08-28', 'SA_REP', '7300.00', '0.15', '148', '80'), +('173', 'Sundita', 'Kumar', 'SKUMAR', '011.44.1343.329268', '1987-08-29', 'SA_REP', '6100.00', '0.10', '148', '80'), +('174', 'Ellen', 'Abel', 'EABEL', '011.44.1644.429267', '1987-08-30', 'SA_REP', '11000.00', '0.30', '149', '80'), +('175', 'Alyssa', 'Hutton', 'AHUTTON', '011.44.1644.429266', '1987-08-31', 'SA_REP', '8800.00', '0.25', '149', '80'), +('176', 'Jonathon', 'Taylor', 'JTAYLOR', '011.44.1644.429265', '1987-09-01', 'SA_REP', '8600.00', '0.20', '149', '80'), +('177', 'Jack', 'Livingston', 'JLIVINGS', '011.44.1644.429264', '1987-09-02', 'SA_REP', '8400.00', '0.20', '149', '80'), +('178', 'Kimberely', 'Grant', 'KGRANT', '011.44.1644.429263', '1987-09-03', 'SA_REP', '7000.00', '0.15', '149', '0'), +('179', 'Charles', 'Johnson', 'CJOHNSON', '011.44.1644.429262', '1987-09-04', 'SA_REP', '6200.00', '0.10', '149', '80'), +('180', 'Winston', 'Taylor', 'WTAYLOR', '650.507.9876', '1987-09-05', 'SH_CLERK', '3200.00', '0.00', '120', '50'), +('181', 'Jean', 'Fleaur', 'JFLEAUR', '650.507.9877', '1987-09-06', 'SH_CLERK', '3100.00', '0.00', '120', '50'), +('182', 'Martha', 'Sullivan', 'MSULLIVA', '650.507.9878', '1987-09-07', 'SH_CLERK', '2500.00', '0.00', '120', '50'), +('183', 'Girard', 'Geoni', 'GGEONI', '650.507.9879', '1987-09-08', 'SH_CLERK', '2800.00', '0.00', '120', '50'), +('184', 'Nandita', 'Sarchand', 'NSARCHAN', '650.509.1876', '1987-09-09', 'SH_CLERK', '4200.00', '0.00', '121', '50'), +('185', 'Alexis', 'Bull', 'ABULL', '650.509.2876', '1987-09-10', 'SH_CLERK', '4100.00', '0.00', '121', '50'), +('186', 'Julia', 'Dellinger', 'JDELLING', '650.509.3876', '1987-09-11', 'SH_CLERK', '3400.00', '0.00', '121', '50'), +('187', 'Anthony', 'Cabrio', 'ACABRIO', '650.509.4876', '1987-09-12', 'SH_CLERK', '3000.00', '0.00', '121', '50'), +('188', 'Kelly', 'Chung', 'KCHUNG', '650.505.1876', '1987-09-13', 'SH_CLERK', '3800.00', '0.00', '122', '50'), +('189', 'Jennifer', 'Dilly', 'JDILLY', '650.505.2876', '1987-09-14', 'SH_CLERK', '3600.00', '0.00', '122', '50'), +('190', 'Timothy', 'Gates', 'TGATES', '650.505.3876', '1987-09-15', 'SH_CLERK', '2900.00', '0.00', '122', '50'), +('191', 'Randall', 'Perkins', 'RPERKINS', '650.505.4876', '1987-09-16', 'SH_CLERK', '2500.00', '0.00', '122', '50'), +('192', 'Sarah', 'Bell', 'SBELL', '650.501.1876', '1987-09-17', 'SH_CLERK', '4000.00', '0.00', '123', '50'), +('193', 'Britney', 'Everett', 'BEVERETT', '650.501.2876', '1987-09-18', 'SH_CLERK', '3900.00', '0.00', '123', '50'), +('194', 'Samuel', 'McCain', 'SMCCAIN', '650.501.3876', '1987-09-19', 'SH_CLERK', '3200.00', '0.00', '123', '50'), +('195', 'Vance', 'Jones', 'VJONES', '650.501.4876', '1987-09-20', 'SH_CLERK', '2800.00', '0.00', '123', '50'), +('196', 'Alana', 'Walsh', 'AWALSH', '650.507.9811', '1987-09-21', 'SH_CLERK', '3100.00', '0.00', '124', '50'), +('197', 'Kevin', 'Feeney', 'KFEENEY', '650.507.9822', '1987-09-22', 'SH_CLERK', '3000.00', '0.00', '124', '50'), +('198', 'Donald', 'OConnell', 'DOCONNEL', '650.507.9833', '1987-09-23', 'SH_CLERK', '2600.00', '0.00', '124', '50'), +('199', 'Douglas', 'Grant', 'DGRANT', '650.507.9844', '1987-09-24', 'SH_CLERK', '2600.00', '0.00', '124', '50'), +('200', 'Jennifer', 'Whalen', 'JWHALEN', '515.123.4444', '1987-09-25', 'AD_ASST', '4400.00', '0.00', '101', '10'), +('201', 'Michael', 'Hartstein', 'MHARTSTE', '515.123.5555', '1987-09-26', 'MK_MAN', '13000.00', '0.00', '100', '20'), +('202', 'Pat', 'Fay', 'PFAY', '603.123.6666', '1987-09-27', 'MK_REP', '6000.00', '0.00', '201', '20'), +('203', 'Susan', 'Mavris', 'SMAVRIS', '515.123.7777', '1987-09-28', 'HR_REP', '6500.00', '0.00', '101', '40'), +('204', 'Hermann', 'Baer', 'HBAER', '515.123.8888', '1987-09-29', 'PR_REP', '10000.00', '0.00', '101', '70'), +('205', 'Shelley', 'Higgins', 'SHIGGINS', '515.123.8080', '1987-09-30', 'AC_MGR', '12000.00', '0.00', '101', '110'), +('206', 'William', 'Gietz', 'WGIETZ', '515.123.8181', '1987-10-01', 'AC_ACCOUNT', '8300.00', '0.00', '205', '110'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `job_history` +-- + +CREATE TABLE IF NOT EXISTS `job_history` ( + `EMPLOYEE_ID` decimal(6,0) NOT NULL, + `START_DATE` date NOT NULL, + `END_DATE` date NOT NULL, + `JOB_ID` varchar(10) NOT NULL, + `DEPARTMENT_ID` decimal(4,0) DEFAULT NULL, + PRIMARY KEY (`EMPLOYEE_ID`,`START_DATE`), + FOREIGN KEY (`EMPLOYEE_ID`) REFERENCES employees(`EMPLOYEE_ID`), + FOREIGN KEY (`DEPARTMENT_ID`) REFERENCES departments(`DEPARTMENT_ID`), + FOREIGN KEY (`JOB_ID`) REFERENCES jobs(`JOB_ID`) +); + +-- +-- Dumping data for table `job_history` +-- + +INSERT INTO `job_history` (`EMPLOYEE_ID`, `START_DATE`, `END_DATE`, `JOB_ID`, `DEPARTMENT_ID`) VALUES +('102', '1993-01-13', '1998-07-24', 'IT_PROG', '60'), +('101', '1989-09-21', '1993-10-27', 'AC_ACCOUNT', '110'), +('101', '1993-10-28', '1997-03-15', 'AC_MGR', '110'), +('201', '1996-02-17', '1999-12-19', 'MK_REP', '20'), +('114', '1998-03-24', '1999-12-31', 'ST_CLERK', '50'), +('122', '1999-01-01', '1999-12-31', 'ST_CLERK', '50'), +('200', '1987-09-17', '1993-06-17', 'AD_ASST', '90'), +('176', '1998-03-24', '1998-12-31', 'SA_REP', '80'), +('176', '1999-01-01', '1999-12-31', 'SA_MAN', '80'), +('200', '1994-07-01', '1998-12-31', 'AC_ACCOUNT', '90'), +('0', '0000-00-00', '0000-00-00', '', '0'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `jobs` +-- + + +-- +-- Table structure for table `locations` +-- + +CREATE TABLE IF NOT EXISTS `locations` ( + `LOCATION_ID` decimal(4,0) NOT NULL DEFAULT '0', + `STREET_ADDRESS` varchar(40) DEFAULT NULL, + `POSTAL_CODE` varchar(12) DEFAULT NULL, + `CITY` varchar(30) NOT NULL, + `STATE_PROVINCE` varchar(25) DEFAULT NULL, + `COUNTRY_ID` varchar(2) DEFAULT NULL, + PRIMARY KEY (`LOCATION_ID`), + FOREIGN KEY (`COUNTRY_ID`) REFERENCES countries(`COUNTRY_ID`) +); + +-- +-- Dumping data for table `locations` +-- + +INSERT INTO `locations` (`LOCATION_ID`, `STREET_ADDRESS`, `POSTAL_CODE`, `CITY`, `STATE_PROVINCE`, `COUNTRY_ID`) VALUES +('1000', '1297 Via Cola di Rie', '989', 'Roma', '', 'IT'), +('1100', '93091 Calle della Testa', '10934', 'Venice', '', 'IT'), +('1200', '2017 Shinjuku-ku', '1689', 'Tokyo', 'Tokyo Prefecture', 'JP'), +('1300', '9450 Kamiya-cho', '6823', 'Hiroshima', '', 'JP'), +('1400', '2014 Jabberwocky Rd', '26192', 'Southlake', 'Texas', 'US'), +('1500', '2011 Interiors Blvd', '99236', 'South San Francisco', 'California', 'US'), +('1600', '2007 Zagora St', '50090', 'South Brunswick', 'New Jersey', 'US'), +('1700', '2004 Charade Rd', '98199', 'Seattle', 'Washington', 'US'), +('1800', '147 Spadina Ave', 'M5V 2L7', 'Toronto', 'Ontario', 'CA'), +('1900', '6092 Boxwood St', 'YSW 9T2', 'Whitehorse', 'Yukon', 'CA'), +('2000', '40-5-12 Laogianggen', '190518', 'Beijing', '', 'CN'), +('2100', '1298 Vileparle (E)', '490231', 'Bombay', 'Maharashtra', 'IN'), +('2200', '12-98 Victoria Street', '2901', 'Sydney', 'New South Wales', 'AU'), +('2300', '198 Clementi North', '540198', 'Singapore', '', 'SG'), +('2400', '8204 Arthur St', '', 'London', '', 'UK'), +('2500', '"Magdalen Centre', ' The Oxford ', 'OX9 9ZB', 'Oxford', 'Ox'), +('2600', '9702 Chester Road', '9629850293', 'Stretford', 'Manchester', 'UK'), +('2700', 'Schwanthalerstr. 7031', '80925', 'Munich', 'Bavaria', 'DE'), +('2800', 'Rua Frei Caneca 1360', '01307-002', 'Sao Paulo', 'Sao Paulo', 'BR'), +('2900', '20 Rue des Corps-Saints', '1730', 'Geneva', 'Geneve', 'CH'), +('3000', 'Murtenstrasse 921', '3095', 'Bern', 'BE', 'CH'), +('3100', 'Pieter Breughelstraat 837', '3029SK', 'Utrecht', 'Utrecht', 'NL'), +('3200', 'Mariano Escobedo 9991', '11932', 'Mexico City', '"Distrito Federal', '"'); + +-- -------------------------------------------------------- + +-- +-- Table structure for table `regions` +-- + + +/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; +/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; +/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; diff --git a/database/icfp_1/icfp_1.sqlite b/database/icfp_1/icfp_1.sqlite new file mode 100644 index 0000000000000000000000000000000000000000..bf9067d3d9a4684e2c36b1b67b436da16c196500 Binary files /dev/null and b/database/icfp_1/icfp_1.sqlite differ diff --git a/database/icfp_1/link.txt b/database/icfp_1/link.txt new file mode 100644 index 0000000000000000000000000000000000000000..2afe28bd9824dcf0a4ac995f632969e0b02b3561 --- /dev/null +++ b/database/icfp_1/link.txt @@ -0,0 +1 @@ +https://www.classes.cs.uchicago.edu/archive/2015/spring/23500-1/hw3.html diff --git a/database/icfp_1/q.txt b/database/icfp_1/q.txt new file mode 100644 index 0000000000000000000000000000000000000000..f5d8d4b3ac26aa0f6534f95e3f34aec0738a1b2c --- /dev/null +++ b/database/icfp_1/q.txt @@ -0,0 +1,9 @@ +q5. Retrieve the titles of all papers with a single author. + +q6. Retrieve the titles and number of affiliated institutions of all papers with authors from more than one institution. + +q7. Retrieve the title(s) and number of authors of the paper(s) with the most authors in the database instance. For example, if there is one paper with three authors in the whole batch, and every other paper has one or two authors (that's the case in the database you are given), identify that paper. + +q8. Retrieve the authors' authID, first and last names, in alphabetical order, and the number of papers on which they have authorship. + +q9. Retrieve the authID, first and last name of the author(s) and their number of collaborators (shared authorships), in alphabetical order. diff --git a/database/imdb/imdb.sqlite b/database/imdb/imdb.sqlite new file mode 100644 index 0000000000000000000000000000000000000000..8ce207433f5f3e9a80a96d283233c9b280d04ee1 Binary files /dev/null and b/database/imdb/imdb.sqlite differ diff --git a/database/imdb/schema.sql b/database/imdb/schema.sql new file mode 100644 index 0000000000000000000000000000000000000000..94279d6889130dff1c4e70498b4a13159fbc262c --- /dev/null +++ b/database/imdb/schema.sql @@ -0,0 +1,138 @@ +PRAGMA foreign_keys = ON; +CREATE TABLE "actor" ( +"aid" int, +"gender" text, +"name" text, +"nationality" text, +"birth_city" text, +"birth_year" int, +primary key("aid") +); + + +CREATE TABLE "copyright" ( +"id" int, +"msid" int, +"cid" int, +primary key("id") +); +CREATE TABLE "cast" ( +"id" int, +"msid" int, +"aid" int, +"role" int, +primary key("id"), +foreign key("aid") references `actor`("aid"), +foreign key("msid") references `copyright`("msid") +); + +CREATE TABLE "genre" ( +"gid" int, +"genre" text, +primary key("gid") +); + +CREATE TABLE "classification" ( +"id" int, +"msid" int, +"gid" int, +primary key("id"), +foreign key("gid") references `genre`("gid"), +foreign key("msid") references `copyright`("msid") +); + +CREATE TABLE "company" ( +"id" int, +"name" text, +"country_code" text, +primary key("id") +); + + +CREATE TABLE "director" ( +"did" int, +"gender" text, +"name" text, +"nationality" text, +"birth_city" text, +"birth_year" int, +primary key("did") +); + +CREATE TABLE "producer" ( +"pid" int, +"gender" text, +"name" text, +"nationality" text, +"birth_city" text, +"birth_year" int, +primary key("pid") +); + +CREATE TABLE "directed_by" ( +"id" int, +"msid" int, +"did" int, +primary key("id"), +foreign key("msid") references `copyright`("msid"), +foreign key("did") references `director`("did") +); + +CREATE TABLE "keyword" ( +"id" int, +"keyword" text, +primary key("id") +); + +CREATE TABLE "made_by" ( +"id" int, +"msid" int, +"pid" int, +primary key("id"), +foreign key("msid") references `copyright`("msid"), +foreign key("pid") references `producer`("pid") +); + +CREATE TABLE "movie" ( +"mid" int, +"title" text, +"release_year" int, +"title_aka" text, +"budget" text, +primary key("mid") +); +CREATE TABLE "tags" ( +"id" int, +"msid" int, +"kid" int, +primary key("id"), +foreign key("msid") references `copyright`("msid"), +foreign key("kid") references `keyword`("kid") +); +CREATE TABLE "tv_series" ( +"sid" int, +"title" text, +"release_year" int, +"num_of_seasons" int, +"num_of_episodes" int, +"title_aka" text, +"budget" text, +primary key("sid") +); +CREATE TABLE "writer" ( +"wid" int, +"gender" text, +"name" int, +"nationality" int, +"num_of_episodes" int, +"birth_city" text, +"birth_year" int, +primary key("wid") +); +CREATE TABLE "written_by" ( +"id" int, +"msid" int, +"wid" int, +foreign key("msid") references `copyright`("msid"), +foreign key("wid") references `writer`("wid") +); diff --git a/database/inn_1/annotation.json b/database/inn_1/annotation.json new file mode 100644 index 0000000000000000000000000000000000000000..6bca4eaac58eeb980d8cfcb7cccee5864e369bbe --- /dev/null +++ b/database/inn_1/annotation.json @@ -0,0 +1,38 @@ +{ + "label_id": null, + "data": [ + { + "nl": "Find all modern rooms with a base price below $160 and two beds. Report room names and codes\n", + "id": 0 + }, + { + "nl": "Find all rooms occupied on February 6, 2010. Report full name of the room, the check-in and checkout dates of the reservation.\n", + "id": 1 + }, + { + "nl": "For each reservation that starts on December 31, 2010 report the room name, nightly rate, number of nights spent and the total amount of money paid.\n", + "id": 2 + }, + { + "nl": "Find the names of all people1 staying at the inn at the same time as HERBERT FRYDAY.\n", + "id": 3 + }, + { + "nl": "Find the number of August reservations (both checkin and checkout dates are in August) where two adults are staying with two children.\n", + "id": 4 + }, + { + "nl": "Find the most popular room in the hotel. The most popular room is the room that had seen the largest number of reservations\n", + "id": 5 + }, + { + "nl": "Find the room that has been occupied the largest number of days based on the reservations. Report the room name\n", + "id": 6 + }, + { + "nl": "For each room, report the most expensive reservation. Report the full room name, dates of stay\n", + "id": 7 + } + ], + "review_id": null +} \ No newline at end of file diff --git a/database/inn_1/change_date.py b/database/inn_1/change_date.py new file mode 100644 index 0000000000000000000000000000000000000000..d9e3c015ddcbb526c25932b4c981c4ded1d993b6 --- /dev/null +++ b/database/inn_1/change_date.py @@ -0,0 +1,26 @@ +import pandas as pd +month_to_name={ + 'JAN' : "01", + 'FEB' : "02", + 'MAR' : "03", + 'APR' : "04", + 'MAY' : "05", + 'JUN' : "06", + 'JUL' : "07", + 'AUG' : "08", + 'SEP' : "09", + 'OCT' : "10", + 'NOV' : "11", + 'DEC' : "12" +}; +df = pd.read_csv('./data_csv/Reservations.csv') +def change_date(x): + x = x.split("-") + x[2] = "20"+x[2][:len(x[2])-1] + x[1] = month_to_name[x[1]] + x = "-".join([x[2],x[1],x[0][1:]]) + print x + return x +df["CheckIn"] = df["CheckIn"].apply(change_date) +df["CheckOut"] = df["CheckOut"].apply(change_date) +df.to_csv('./data_csv/Reservations_t.csv', encoding='utf-8', index=False) diff --git a/database/inn_1/data_csv/README.INN.TXT b/database/inn_1/data_csv/README.INN.TXT new file mode 100644 index 0000000000000000000000000000000000000000..f68b7923672ca5dbb5e4c59d7db4fba24ad81dcc --- /dev/null +++ b/database/inn_1/data_csv/README.INN.TXT @@ -0,0 +1,87 @@ +***************************************************** +CPE 365 Alex Dekhtyar +Cal Poly Computer Science Department +San Luis Obispo College of Engineering +California dekhtyar@calpoly.edu +***************************************************** + INN DATASET + Version 1.0 + April 6, 2011 +***************************************************** +Sources: this is a synthesized dataset. + +****************************************************** + +This file describes the contents of the INN dataset +developed for the CPE 365, Introduction to Databases, +course at Cal Poly. + +The dataset contains information a one year worth of reservations +at a fictional Bed & Breakfast hotel called Seaside Grove Inn. +The hotel has 10 rooms. The dataset contains information about +the completed (i.e., guests arrived and stayed) reservations for +one year of the hotel's operation. + +General Conventions. + + 1. All files in the dataset are CSV (comma-separated values) files. + 2. First line of each file provides the names of + columns. Second line may be empty, or may contain + the first row of the data. + 3. All string values are enclosed in single quotes (') + + + The dataset consists of the following files: + + - Rooms.csv : list of Seaside Grove Inn rooms + - Reservations.csv : list of completed room reservations + + + Individual files have the following formats. + +************************************************************************** + +Rooms.csv + + RoomId : a three-letter unique Id code of a room + roomName : official name of the room (all rooms in B&B inns + typically have names) + beds : number of beds in the room + bedType : type of the bed(s) in the room. All beds in each room + are of the same type. + maxOccupancy : maximum number of people allowed to stay in the room + basePrice : base price (in US dollars) of one night of stay in the room. + decor : decoration style of the room + +************************************************************************** + +Reservations.csv + + Code : reservation code + Room : the three-letter room code (see Rooms.RoomId) + CheckIn : date of check-in/arrival + CheckOut : date of check-out/departure + Rate : actual nightly rate. Each night of stay on one reservation + always costs the same amount, although rates may vary + for the same room from one reservation to another + LastName : last name of the person who made the reservation + FirstName : first name of the person who made the reservation + Adults : number of adults (18 and above) staying in the room. Each + reservation must have at least one adult + Kids : number of kids (ages 0-17) staying in the room. + +************************************************************************** +************************************************************************** + +Permission granted to use and distribute this dataset in its current form, +provided this file is kept unchanged and is distributed together with the +data. + +Permission granted to modify and expand this dataset, provided this +file is updated accordingly with new information. + +Acknowledgements. We thank Dr. Clint Staley for the software script that +produced the names of the rooms. + +************************************************************************** +************************************************************************** diff --git a/database/inn_1/data_csv/Reservations.csv b/database/inn_1/data_csv/Reservations.csv new file mode 100644 index 0000000000000000000000000000000000000000..d6b4bfdc6f202d70a83424e5f5a856174bca7890 --- /dev/null +++ b/database/inn_1/data_csv/Reservations.csv @@ -0,0 +1,601 @@ +Code,Room,CheckIn,CheckOut,Rate,LastName,FirstName,Adults,Kids +47496,'RND','01-JAN-10','06-JAN-10',150.00,'KLEVER','ERASMO',1,0 +41112,'RND','06-JAN-10','11-JAN-10',135.00,'HOOLEY','EUGENIO',1,0 +76809,'RND','12-JAN-10','14-JAN-10',187.50,'WISWELL','JERROD',1,0 +70172,'RND','23-JAN-10','25-JAN-10',150.00,'ALMANZA','PHEBE',1,0 +44358,'RND','25-JAN-10','27-JAN-10',150.00,'BOBROW','CLINTON',2,0 +55344,'RND','30-JAN-10','31-JAN-10',135.00,'RENSCH','LIANA',1,0 +99471,'RND','31-JAN-10','01-FEB-10',135.00,'ABRAHAMS','ANNETT',1,0 +81473,'RND','01-FEB-10','02-FEB-10',127.50,'EVERITT','YUK',1,1 +49253,'RND','03-FEB-10','06-FEB-10',150.00,'NANI','GARRY',1,0 +16748,'RND','21-FEB-10','23-FEB-10',135.00,'KLIMKO','DONTE',1,0 +69316,'RND','26-FEB-10','07-MAR-10',150.00,'SULOUFF','JESSICA',1,0 +69844,'RND','07-MAR-10','11-MAR-10',172.50,'BONIOL','CLINT',1,0 +96839,'RND','11-MAR-10','12-MAR-10',150.00,'ARANAS','ROD',1,0 +43911,'RND','12-MAR-10','13-MAR-10',127.50,'NEIN','TEODORO',1,0 +48382,'RND','13-MAR-10','14-MAR-10',150.00,'SCHLADWEILER','ELEASE',1,0 +77032,'RND','14-MAR-10','17-MAR-10',172.50,'FRANC','HERBERT',1,0 +30043,'RND','17-MAR-10','18-MAR-10',150.00,'HELFRITZ','RHEA',2,0 +48539,'RND','21-MAR-10','28-MAR-10',135.00,'CHINAULT','EDWARDO',2,0 +23850,'RND','11-APR-10','17-APR-10',150.00,'PENNELLA','LAKIA',2,0 +97303,'RND','21-APR-10','30-APR-10',150.00,'WAEGNER','STANFORD',1,0 +21553,'RND','01-MAY-10','05-MAY-10',172.50,'MECHLING','KERRI',1,0 +28465,'RND','05-MAY-10','06-MAY-10',150.00,'SALLE','SANTANA',1,0 +62147,'RND','06-MAY-10','13-MAY-10',135.00,'BURCHAM','JONATHON',1,1 +38368,'RND','30-MAY-10','06-JUN-10',150.00,'FOCKE','HONEY',1,1 +48822,'RND','08-JUN-10','12-JUN-10',187.50,'HULETTE','DARIUS',1,0 +18822,'RND','12-JUN-10','14-JUN-10',150.00,'NORN','GARLAND',2,0 +34034,'RND','14-JUN-10','20-JUN-10',172.50,'GABBETT','ALLEN',1,0 +52470,'RND','20-JUN-10','21-JUN-10',127.50,'BAIRAM','BRADLY',1,1 +95709,'RND','21-JUN-10','02-JUL-10',135.00,'TRUDEN','LEWIS',1,0 +93984,'RND','02-JUL-10','03-JUL-10',187.50,'DEBARDELABEN','NELL',1,0 +76245,'RND','18-JUL-10','19-JUL-10',150.00,'TOSTI','DAN',1,1 +30300,'RND','19-JUL-10','20-JUL-10',135.00,'PRIAL','MYLES',1,0 +70440,'RND','23-JUL-10','27-JUL-10',150.00,'DEVEY','GIUSEPPE',1,0 +44933,'RND','27-JUL-10','29-JUL-10',150.00,'FURIA','ELWANDA',2,0 +63458,'RND','31-JUL-10','01-AUG-10',172.50,'LELEUX','PORTER',1,1 +78964,'RND','05-AUG-10','06-AUG-10',150.00,'SPERAZZA','WILBUR',2,0 +64503,'RND','06-AUG-10','11-AUG-10',172.50,'MAURER','TEODORO',2,0 +15534,'RND','28-AUG-10','01-SEP-10',150.00,'GAUD','REINALDO',1,0 +87560,'RND','01-SEP-10','02-SEP-10',150.00,'SABALA','MORTON',1,0 +59083,'RND','03-SEP-10','10-SEP-10',172.50,'HARTFORD','NATHANAEL',2,0 +91895,'RND','10-SEP-10','11-SEP-10',150.00,'BLADE','RUBEN',1,0 +65416,'RND','11-SEP-10','13-SEP-10',127.50,'STRICK','NICHOLLE',1,0 +94375,'RND','13-SEP-10','19-SEP-10',150.00,'WEGER','TOBY',1,0 +69494,'RND','21-SEP-10','22-SEP-10',135.00,'MINDEN','STACEY',1,0 +14845,'RND','27-SEP-10','30-SEP-10',150.00,'ROTCH','FLORIDA',1,1 +10449,'RND','30-SEP-10','01-OCT-10',150.00,'KLESS','NELSON',1,0 +28494,'RND','01-OCT-10','13-OCT-10',135.00,'DERKAS','GUS',1,0 +67343,'RND','14-OCT-10','25-OCT-10',172.50,'ALBROUGH','OLYMPIA',2,0 +63293,'RND','25-OCT-10','01-NOV-10',127.50,'KUTA','HERMAN',1,1 +55551,'RND','04-NOV-10','08-NOV-10',127.50,'COOKUS','KASHA',2,0 +57705,'RND','12-NOV-10','15-NOV-10',172.50,'ROTHMAN','GLENNIS',1,0 +48532,'RND','20-NOV-10','22-NOV-10',135.00,'VANDEBRINK','TRESSIE',1,0 +32049,'RND','22-NOV-10','04-DEC-10',135.00,'PANOS','LESTER',1,1 +54369,'RND','04-DEC-10','06-DEC-10',172.50,'MULE','DIONNA',1,0 +24667,'RND','08-DEC-10','09-DEC-10',187.50,'BAUGUESS','ERYN',1,0 +68385,'RND','10-DEC-10','12-DEC-10',172.50,'ALBERO','ABBEY',1,0 +46577,'RND','12-DEC-10','14-DEC-10',135.00,'MAURER','TEODORO',1,0 +41783,'RND','19-DEC-10','20-DEC-10',187.50,'LEDOUX','LENA',1,0 +30020,'RND','21-DEC-10','28-DEC-10',135.00,'PORTO','MARIANO',1,1 +26701,'RND','28-DEC-10','30-DEC-10',150.00,'DEJAEGER','WELDON',2,0 +69598,'RND','30-DEC-10','31-DEC-10',150.00,'RENIER','MARCELLUS',1,0 +97512,'RND','31-DEC-10','02-JAN-11',150.00,'FRAILEY','JUANITA',1,0 +74548,'IBS','13-JAN-10','16-JAN-10',172.50,'BORROMEO','EBONY',1,1 +89123,'IBS','20-JAN-10','30-JAN-10',172.50,'GISSLER','EFRAIN',1,0 +77967,'IBS','30-JAN-10','06-FEB-10',172.50,'MCNEELEY','ARTHUR',1,0 +62333,'IBS','06-FEB-10','07-FEB-10',150.00,'ABATIELL','CATHRYN',2,0 +72456,'IBS','08-FEB-10','10-FEB-10',150.00,'STARTIN','BRUNA',1,1 +15733,'IBS','11-FEB-10','13-FEB-10',172.50,'BEALLE','RASHAD',1,0 +39602,'IBS','13-FEB-10','23-FEB-10',150.00,'STUART','IVA',1,1 +75477,'IBS','23-FEB-10','24-FEB-10',172.50,'JAHR','JESSIE',2,0 +41754,'IBS','24-FEB-10','25-FEB-10',172.50,'ANA','ELLAN',1,0 +12138,'IBS','28-FEB-10','05-MAR-10',150.00,'SHARIAT','JARRED',1,0 +95260,'IBS','07-MAR-10','19-MAR-10',187.50,'PERRINO','DENNY',1,0 +63558,'IBS','20-MAR-10','22-MAR-10',150.00,'KEPKE','HAROLD',1,1 +53535,'IBS','22-MAR-10','25-MAR-10',172.50,'ALLENDE','VIRGIL',1,1 +63746,'IBS','25-MAR-10','27-MAR-10',187.50,'SCARLES','LANDON',1,1 +58881,'IBS','27-MAR-10','29-MAR-10',150.00,'RONFELDT','JERMAINE',1,0 +16933,'IBS','01-APR-10','03-APR-10',150.00,'NORSWORTHY','AUBREY',2,0 +18900,'IBS','03-APR-10','05-APR-10',172.50,'LAURY','EMILY',2,0 +58762,'IBS','05-APR-10','07-APR-10',127.50,'REDEPENNING','FAITH',1,0 +50223,'IBS','12-APR-10','14-APR-10',135.00,'CALLICUTT','HONG',1,0 +84715,'IBS','18-APR-10','19-APR-10',150.00,'BECKUM','MISSY',1,0 +55641,'IBS','23-APR-10','25-APR-10',150.00,'ISHIBASHI','CAPRICE',1,1 +99268,'IBS','30-APR-10','03-MAY-10',135.00,'LEEHY','NENA',1,0 +14001,'IBS','11-MAY-10','12-MAY-10',187.50,'COSTON','LANNY',1,0 +63652,'IBS','14-MAY-10','20-MAY-10',172.50,'COVERT','ADAM',1,1 +28227,'IBS','30-MAY-10','04-JUN-10',172.50,'STUART','IVA',2,0 +81780,'IBS','09-JUN-10','10-JUN-10',150.00,'ENTWISLE','THOMAS',1,0 +44426,'IBS','22-JUN-10','23-JUN-10',150.00,'CHEESE','TRINIDAD',1,0 +62816,'IBS','07-JUL-10','11-JUL-10',127.50,'MAEWEATHER','AUGUST',1,0 +94074,'IBS','15-JUL-10','16-JUL-10',135.00,'TRIBBY','ADELIA',1,0 +22981,'IBS','21-JUL-10','23-JUL-10',172.50,'KNERIEN','GRANT',1,0 +72503,'IBS','23-JUL-10','30-JUL-10',150.00,'VELZEBOER','HAN',2,0 +44428,'IBS','04-AUG-10','06-AUG-10',172.50,'ZAVADOSKI','CLAIR',1,0 +26135,'IBS','09-AUG-10','14-AUG-10',150.00,'STORDAHL','NATOSHA',1,0 +88795,'IBS','18-AUG-10','26-AUG-10',150.00,'EURICH','ANTONE',1,1 +78565,'IBS','28-AUG-10','31-AUG-10',187.50,'WAGERS','HOUSTON',2,0 +97220,'IBS','31-AUG-10','04-SEP-10',187.50,'WIXOM','MARCIA',1,1 +37585,'IBS','06-SEP-10','08-SEP-10',135.00,'NOAH','DOROTHEA',2,0 +67689,'IBS','08-SEP-10','11-SEP-10',172.50,'DELGUIDICE','DAN',2,0 +53723,'IBS','11-SEP-10','12-SEP-10',135.00,'KVETON','FREDRICK',2,0 +11996,'IBS','14-SEP-10','16-SEP-10',187.50,'BURBANK','ROBERT',1,0 +55363,'IBS','20-SEP-10','22-SEP-10',135.00,'VERDINE','ANTONINA',1,0 +53747,'IBS','22-SEP-10','23-SEP-10',135.00,'SPEARIN','TOMMY',1,1 +59610,'IBS','23-SEP-10','30-SEP-10',150.00,'EGELSTON','EMANUEL',2,0 +77319,'IBS','09-OCT-10','11-OCT-10',172.50,'WIDOWSKI','EUSEBIO',2,0 +58148,'IBS','11-OCT-10','13-OCT-10',172.50,'VOLANTE','EMERY',1,0 +62305,'IBS','15-OCT-10','22-OCT-10',150.00,'KAMROWSKI','EVITA',2,0 +95100,'IBS','27-OCT-10','05-NOV-10',172.50,'LABAT','JEANMARIE',1,0 +93407,'IBS','05-NOV-10','07-NOV-10',187.50,'KOLP','PAMELIA',1,0 +35870,'IBS','09-NOV-10','11-NOV-10',135.00,'DONIGAN','GLEN',1,1 +42731,'IBS','11-NOV-10','15-NOV-10',172.50,'HOTARD','ALYSIA',2,0 +22561,'IBS','15-NOV-10','21-NOV-10',127.50,'VUTURO','DEVORAH',1,0 +49482,'IBS','21-NOV-10','02-DEC-10',172.50,'ATTEBURG','ELMIRA',2,0 +66331,'IBS','02-DEC-10','06-DEC-10',135.00,'SEVILLANO','LILLI',1,1 +27490,'IBS','06-DEC-10','08-DEC-10',150.00,'PENDLEY','SCOTTIE',1,1 +40675,'IBS','13-DEC-10','14-DEC-10',150.00,'HANUS','THEOLA',1,0 +51097,'IBS','18-DEC-10','20-DEC-10',135.00,'TOODLE','NOLA',2,0 +60749,'IBS','22-DEC-10','24-DEC-10',135.00,'DONAHER','LAKIA',1,0 +58196,'IBS','24-DEC-10','30-DEC-10',150.00,'ZELINSKI','ARTHUR',1,0 +96658,'IBS','30-DEC-10','01-JAN-11',187.50,'SCHLESSELMAN','NEVILLE',1,0 +17265,'AOB','01-JAN-10','06-JAN-10',175.00,'HENLY','RUPERT',4,0 +52597,'AOB','11-JAN-10','14-JAN-10',175.00,'CASMORE','MARINE',3,0 +67200,'AOB','16-JAN-10','23-JAN-10',148.75,'CHET','CHARLEEN',1,2 +28406,'AOB','23-JAN-10','29-JAN-10',175.00,'COOKUS','KASHA',2,1 +10489,'AOB','02-FEB-10','05-FEB-10',218.75,'CARISTO','MARKITA',2,1 +31993,'AOB','08-FEB-10','10-FEB-10',201.25,'ZIEBARTH','ADELAIDE',1,3 +30937,'AOB','14-FEB-10','15-FEB-10',175.00,'FITZGERREL','DENNY',1,3 +15870,'AOB','15-FEB-10','19-FEB-10',175.00,'CORIATY','BERTA',1,3 +94545,'AOB','03-MAR-10','13-MAR-10',201.25,'SHERRANGE','AUGUST',2,0 +57527,'AOB','26-MAR-10','28-MAR-10',201.25,'ABAJA','RHEA',2,0 +93341,'AOB','02-APR-10','08-APR-10',175.00,'FROHMAN','SHAYNE',3,1 +72945,'AOB','12-APR-10','13-APR-10',201.25,'KOHS','BOB',1,1 +65417,'AOB','13-APR-10','15-APR-10',175.00,'ACHTER','GRETA',1,1 +50207,'AOB','20-APR-10','21-APR-10',175.00,'ROSENDO','TAREN',1,0 +12258,'AOB','23-APR-10','27-APR-10',175.00,'KANNEL','RODGER',1,0 +58755,'AOB','30-APR-10','01-MAY-10',175.00,'MALNAR','GROVER',1,0 +17955,'AOB','05-MAY-10','09-MAY-10',201.25,'PANARELLO','TODD',2,0 +75853,'AOB','10-MAY-10','12-MAY-10',175.00,'MELOT','JENNA',4,0 +58972,'AOB','17-MAY-10','19-MAY-10',157.50,'BERS','BRENDA',2,1 +48113,'AOB','24-MAY-10','25-MAY-10',175.00,'BABU','SARAI',2,0 +17344,'AOB','25-MAY-10','26-MAY-10',218.75,'GALOW','RICKEY',1,1 +33806,'AOB','27-MAY-10','28-MAY-10',175.00,'OXFORD','KATRICE',1,2 +28455,'AOB','29-MAY-10','31-MAY-10',175.00,'RISHA','NORBERTO',1,1 +14940,'AOB','01-JUN-10','12-JUN-10',175.00,'BISHOFF','ISREAL',2,0 +43225,'AOB','12-JUN-10','13-JUN-10',157.50,'CAPRON','CASSAUNDRA',1,1 +54831,'AOB','15-JUN-10','21-JUN-10',201.25,'BAUGUESS','ERYN',1,3 +59225,'AOB','26-JUN-10','30-JUN-10',201.25,'DURAN','BO',1,0 +18465,'AOB','30-JUN-10','07-JUL-10',175.00,'KRIEGH','AMADO',2,0 +38013,'AOB','08-JUL-10','15-JUL-10',175.00,'RURY','SENA',1,1 +47004,'AOB','15-JUL-10','28-JUL-10',175.00,'STEBNER','MAXIE',1,1 +56286,'AOB','29-JUL-10','31-JUL-10',201.25,'BRICKEL','ROCKY',3,1 +29253,'AOB','31-JUL-10','03-AUG-10',175.00,'HILDRED','MARTY',3,1 +76149,'AOB','07-AUG-10','09-AUG-10',201.25,'HONEYWELL','JULIANA',2,2 +24300,'AOB','09-AUG-10','15-AUG-10',201.25,'CANDON','PIERRE',4,0 +13058,'AOB','17-AUG-10','18-AUG-10',157.50,'ABATIELL','CATHRYN',1,2 +95605,'AOB','18-AUG-10','20-AUG-10',218.75,'FIGLIOLI','NANCI',1,2 +17270,'AOB','20-AUG-10','23-AUG-10',175.00,'RELLIHAN','COURTNEY',1,0 +67427,'AOB','02-SEP-10','14-SEP-10',175.00,'STRACK','PORTER',1,3 +33748,'AOB','14-SEP-10','16-SEP-10',175.00,'PIGNONE','JOEL',1,3 +47146,'AOB','16-SEP-10','23-SEP-10',201.25,'GATTSHALL','REGAN',1,0 +95204,'AOB','08-OCT-10','14-OCT-10',157.50,'CARRUTH','SANDY',1,2 +41619,'AOB','15-OCT-10','22-OCT-10',175.00,'MASSEY','DORIAN',4,0 +80390,'AOB','22-OCT-10','31-OCT-10',157.50,'PHILBERT','CHRISTIE',2,2 +44836,'AOB','31-OCT-10','03-NOV-10',148.75,'DEFRANG','DWAIN',1,0 +69035,'AOB','18-NOV-10','26-NOV-10',218.75,'KU','MERIDETH',1,3 +29287,'AOB','01-DEC-10','08-DEC-10',218.75,'FRYDAY','HERBERT',2,0 +18834,'AOB','08-DEC-10','10-DEC-10',148.75,'DUCHARME','MIGUELINA',2,0 +58934,'AOB','15-DEC-10','22-DEC-10',201.25,'RICHARD','ROBBY',1,1 +82502,'AOB','25-DEC-10','26-DEC-10',175.00,'KRULIK','JEFFRY',1,2 +36890,'AOB','26-DEC-10','28-DEC-10',175.00,'PHILBERT','CHRISTIE',2,1 +10984,'AOB','28-DEC-10','01-JAN-11',201.25,'ZULLO','WILLY',2,1 +80192,'MWC','01-JAN-10','03-JAN-10',112.50,'MUHLESTEIN','REINALDO',3,1 +58266,'MWC','08-JAN-10','14-JAN-10',125.00,'PICKARD','HORTENCIA',1,0 +53876,'MWC','14-JAN-10','15-JAN-10',125.00,'KEBEDE','ARON',3,0 +82409,'MWC','30-JAN-10','01-FEB-10',125.00,'QUARTO','VANDA',4,0 +39640,'MWC','01-FEB-10','05-FEB-10',143.75,'HERZING','DELPHIA',2,1 +31371,'MWC','05-FEB-10','06-FEB-10',125.00,'TARZIA','KAYLEE',2,0 +31508,'MWC','10-FEB-10','14-FEB-10',112.50,'FULK','GENE',4,0 +37985,'MWC','15-FEB-10','18-FEB-10',112.50,'PEDERSON','DOTTIE',1,1 +54966,'MWC','23-FEB-10','24-FEB-10',125.00,'MAZUREK','LEIGHANN',1,0 +64987,'MWC','28-FEB-10','05-MAR-10',125.00,'BRESSE','BURTON',1,0 +40678,'MWC','22-MAR-10','29-MAR-10',112.50,'KENNETT','QUEEN',3,0 +36356,'MWC','29-MAR-10','04-APR-10',125.00,'SPECTOR','FRITZ',2,1 +35180,'MWC','07-APR-10','08-APR-10',125.00,'POWNELL','BRIDGET',1,0 +96909,'MWC','09-APR-10','15-APR-10',125.00,'WILLIBRAND','HEATHER',3,0 +79056,'MWC','19-APR-10','25-APR-10',125.00,'GANZER','HYMAN',2,0 +90108,'MWC','30-APR-10','01-MAY-10',156.25,'FANZO','TERRY',1,0 +30479,'MWC','01-MAY-10','10-MAY-10',143.75,'QUISPE','MARGARITO',1,1 +60169,'MWC','10-MAY-10','16-MAY-10',125.00,'ROSATI','LORENA',1,3 +91415,'MWC','16-MAY-10','18-MAY-10',112.50,'LEHRFELD','CHERLY',3,0 +87943,'MWC','21-MAY-10','28-MAY-10',125.00,'LUTFY','LIZETTE',2,0 +14273,'MWC','28-MAY-10','30-MAY-10',125.00,'STARE','ELIJAH',1,0 +25134,'MWC','31-MAY-10','02-JUN-10',143.75,'HARDYMAN','CLAYTON',1,1 +34244,'MWC','04-JUN-10','06-JUN-10',112.50,'SPIKE','ROSENDA',4,0 +84244,'MWC','06-JUN-10','07-JUN-10',125.00,'TALAT','MEAGHAN',2,1 +64456,'MWC','07-JUN-10','09-JUN-10',125.00,'MCCLENNINGHAM','BRADLY',1,2 +86375,'MWC','12-JUN-10','22-JUN-10',156.25,'RANAUDO','SELINA',1,0 +84120,'MWC','29-JUN-10','05-JUL-10',143.75,'LOTTO','MYRA',3,1 +72817,'MWC','08-JUL-10','09-JUL-10',143.75,'FINEFROCK','ALEXIS',1,2 +16136,'MWC','09-JUL-10','12-JUL-10',143.75,'FERENCE','MORGAN',1,0 +44378,'MWC','12-JUL-10','13-JUL-10',125.00,'COTMAN','JOLYNN',1,3 +54323,'MWC','13-JUL-10','14-JUL-10',106.25,'LUNNEY','YVETTE',3,0 +18311,'MWC','27-JUL-10','31-JUL-10',125.00,'LUEDKE','BRYNN',1,1 +65909,'MWC','31-JUL-10','01-AUG-10',112.50,'BENDICKSON','NEWTON',2,0 +70287,'MWC','02-AUG-10','11-AUG-10',143.75,'MAEDA','DUSTY',1,0 +92348,'MWC','11-AUG-10','17-AUG-10',125.00,'BARTHELL','RICARDA',1,0 +53295,'MWC','17-AUG-10','22-AUG-10',106.25,'HANUS','THEOLA',2,1 +97375,'MWC','26-AUG-10','27-AUG-10',112.50,'DONNELLEY','GARNET',3,0 +79219,'MWC','27-AUG-10','30-AUG-10',125.00,'KLAASS','HYON',3,1 +69840,'MWC','30-AUG-10','03-SEP-10',112.50,'KNERIEN','GRANT',2,1 +95620,'MWC','07-SEP-10','10-SEP-10',112.50,'ZAHLER','GORDON',1,0 +35136,'MWC','10-SEP-10','12-SEP-10',112.50,'MALCHOW','RAMIRO',1,0 +67464,'MWC','27-SEP-10','30-SEP-10',112.50,'KVETON','FREDRICK',1,1 +38677,'MWC','05-OCT-10','11-OCT-10',156.25,'HORELICK','BYRON',2,0 +32116,'MWC','15-OCT-10','17-OCT-10',143.75,'RUSSO','MELODY',1,1 +21848,'MWC','17-OCT-10','18-OCT-10',112.50,'CLOFFI','CHAROLETTE',1,0 +73473,'MWC','18-OCT-10','27-OCT-10',125.00,'ROTCHFORD','DWIGHT',3,0 +98441,'MWC','30-OCT-10','07-NOV-10',106.25,'RAMPLEY','HERMA',4,0 +54781,'MWC','07-NOV-10','11-NOV-10',125.00,'KUTA','HERMAN',1,2 +93587,'MWC','11-NOV-10','12-NOV-10',112.50,'ZELAYA','PRINCE',3,1 +33271,'MWC','29-NOV-10','02-DEC-10',143.75,'YONKERS','RHETT',2,2 +40043,'MWC','04-DEC-10','14-DEC-10',125.00,'LANSBERRY','JESUSITA',3,1 +33155,'MWC','14-DEC-10','16-DEC-10',143.75,'FOLGER','ELOISA',1,0 +88588,'MWC','16-DEC-10','17-DEC-10',125.00,'RELFORD','MARYBELLE',2,0 +57015,'MWC','19-DEC-10','20-DEC-10',106.25,'BUSTER','TOM',1,0 +87890,'MWC','20-DEC-10','22-DEC-10',143.75,'HELKE','ISAAC',1,0 +66189,'MWC','30-DEC-10','04-JAN-11',143.75,'FROEHNER','LATRISHA',3,0 +76801,'HBB','06-JAN-10','18-JAN-10',125.00,'CRACE','HERB',1,1 +24408,'HBB','18-JAN-10','19-JAN-10',100.00,'RADIN','RUSTY',1,0 +21980,'HBB','05-FEB-10','08-FEB-10',115.00,'SIDDELL','MACY',1,1 +87260,'HBB','13-FEB-10','15-FEB-10',90.00,'REPKE','CHAE',1,1 +78241,'HBB','20-FEB-10','28-FEB-10',85.00,'CHAMBLEE','ALTHA',2,0 +64657,'HBB','01-MAR-10','06-MAR-10',115.00,'VIPPERMAN','PABLO',2,0 +25558,'HBB','17-MAR-10','19-MAR-10',125.00,'SHOULDER','FLORENTINO',1,1 +82874,'HBB','30-MAR-10','09-APR-10',125.00,'ATTEBURG','ELMIRA',1,1 +89780,'HBB','09-APR-10','11-APR-10',100.00,'WAHR','CLINT',1,0 +63523,'HBB','15-APR-10','16-APR-10',115.00,'RATTANA','WINFRED',1,0 +30723,'HBB','16-APR-10','23-APR-10',125.00,'MASSER','TROY',2,0 +88884,'HBB','27-APR-10','30-APR-10',85.00,'KIRAKOSYAN','KAREEM',1,1 +18019,'HBB','03-MAY-10','05-MAY-10',115.00,'ARNDELL','JEFFEREY',1,1 +77379,'HBB','06-MAY-10','08-MAY-10',115.00,'TORNQUIST','JESS',1,0 +45157,'HBB','11-MAY-10','18-MAY-10',115.00,'WICKLIN','WYNELL',2,0 +77574,'HBB','22-MAY-10','03-JUN-10',90.00,'CASMORE','MARINE',1,1 +69945,'HBB','07-JUN-10','09-JUN-10',115.00,'FLEURILUS','KATTIE',1,0 +73154,'HBB','14-JUN-10','19-JUN-10',115.00,'SAILORS','SANDA',1,0 +97000,'HBB','20-JUN-10','26-JUN-10',125.00,'OCHS','ANGLA',1,0 +34855,'HBB','01-JUL-10','04-JUL-10',100.00,'YURICK','SHARA',2,0 +86394,'HBB','07-JUL-10','09-JUL-10',100.00,'WESTLING','DACIA',2,0 +49467,'HBB','09-JUL-10','16-JUL-10',115.00,'SUSMILCH','RAYMUNDO',1,0 +65206,'HBB','16-JUL-10','21-JUL-10',100.00,'HIRONS','RANDAL',1,1 +12686,'HBB','22-JUL-10','25-JUL-10',85.00,'GROWNEY','MELVIN',2,0 +92608,'HBB','30-JUL-10','01-AUG-10',125.00,'PENCEK','SILVIA',1,0 +71443,'HBB','02-AUG-10','05-AUG-10',100.00,'KLIMAVICIUS','ULRIKE',1,0 +52799,'HBB','05-AUG-10','07-AUG-10',85.00,'WANDREI','ISSAC',1,0 +41880,'HBB','07-AUG-10','09-AUG-10',100.00,'PLAKE','KARMEN',1,0 +25262,'HBB','09-AUG-10','11-AUG-10',115.00,'YAPLE','CLAUDIE',1,0 +10500,'HBB','11-AUG-10','12-AUG-10',90.00,'YESSIOS','ANNIS',1,0 +97585,'HBB','15-AUG-10','16-AUG-10',85.00,'PARISER','ELIJAH',1,0 +84334,'HBB','19-AUG-10','25-AUG-10',125.00,'NEUBECKER','GARY',2,0 +28589,'HBB','25-AUG-10','26-AUG-10',115.00,'RIMAR','KEELY',2,0 +62874,'HBB','26-AUG-10','27-AUG-10',100.00,'SKIBA','MITCHELL',1,1 +46665,'HBB','31-AUG-10','09-SEP-10',100.00,'MABRA','MARGET',1,0 +40241,'HBB','13-SEP-10','15-SEP-10',85.00,'CORSARO','SHELLA',1,1 +48604,'HBB','16-SEP-10','22-SEP-10',115.00,'GARCES','CRISTIE',1,1 +48665,'HBB','26-SEP-10','28-SEP-10',90.00,'STOUDYMIRE','COLUMBUS',1,1 +20572,'HBB','28-SEP-10','29-SEP-10',115.00,'SANDLER','JENISE',2,0 +97269,'HBB','04-OCT-10','05-OCT-10',115.00,'MELVE','PHIL',1,1 +25616,'HBB','05-OCT-10','06-OCT-10',100.00,'KOSANOVIC','EWA',1,0 +87713,'HBB','08-OCT-10','10-OCT-10',90.00,'TANKER','JONE',1,0 +44040,'HBB','15-OCT-10','16-OCT-10',90.00,'ZELAYA','PRINCE',1,0 +21202,'HBB','21-OCT-10','23-OCT-10',125.00,'CASAGRANDA','BRAIN',2,0 +10105,'HBB','23-OCT-10','25-OCT-10',100.00,'SELBIG','CONRAD',1,0 +19194,'HBB','29-OCT-10','05-NOV-10',125.00,'WORKINGER','CLIFTON',1,0 +35959,'HBB','07-NOV-10','09-NOV-10',100.00,'BRAND','TROY',1,0 +74141,'HBB','14-NOV-10','16-NOV-10',100.00,'BRODOWSKI','RODERICK',1,0 +56737,'HBB','17-NOV-10','18-NOV-10',100.00,'PETTINE','NUMBERS',2,0 +80302,'HBB','22-NOV-10','24-NOV-10',115.00,'KLEIMAN','MAURICIO',1,0 +55862,'HBB','28-NOV-10','05-DEC-10',85.00,'BIERWAGEN','MARK',1,1 +63078,'HBB','05-DEC-10','06-DEC-10',90.00,'WHITTEN','MITZI',1,0 +63043,'HBB','06-DEC-10','07-DEC-10',85.00,'CIERPKE','DOT',1,1 +73785,'HBB','07-DEC-10','09-DEC-10',100.00,'ROGGE','MEREDITH',2,0 +93165,'HBB','10-DEC-10','14-DEC-10',90.00,'LEDOUX','LENA',1,0 +58668,'HBB','14-DEC-10','19-DEC-10',125.00,'COASTER','MERLE',1,1 +17672,'HBB','21-DEC-10','22-DEC-10',90.00,'DECHELLIS','AARON',1,0 +84695,'HBB','22-DEC-10','23-DEC-10',90.00,'BRAND','TROY',2,0 +38636,'HBB','29-DEC-10','31-DEC-10',115.00,'FORESTA','JORDON',1,0 +43157,'HBB','31-DEC-10','06-JAN-11',100.00,'STURN','NEVADA',2,0 +96005,'IBD','01-JAN-10','07-JAN-10',150.00,'BUTALA','YEVETTE',3,0 +67066,'IBD','07-JAN-10','11-JAN-10',135.00,'EDHOLM','ALFRED',3,1 +14226,'IBD','11-JAN-10','12-JAN-10',150.00,'SCHOENHUT','VERNICE',2,1 +62078,'IBD','12-JAN-10','25-JAN-10',172.50,'BRODOWSKI','RODERICK',1,0 +43303,'IBD','27-JAN-10','28-JAN-10',150.00,'MENINO','STEVEN',1,1 +14678,'IBD','28-JAN-10','30-JAN-10',150.00,'SATERFIELD','FRANCISCO',3,1 +30363,'IBD','30-JAN-10','09-FEB-10',172.50,'JAHALY','DELORSE',3,0 +80613,'IBD','09-FEB-10','12-FEB-10',135.00,'CREDIT','JANESSA',1,3 +98216,'IBD','18-FEB-10','25-FEB-10',150.00,'RAMSDEN','BILLIE',1,0 +43654,'IBD','27-FEB-10','28-FEB-10',172.50,'BORROMEO','EBONY',2,1 +56509,'IBD','08-MAR-10','10-MAR-10',150.00,'VONDRA','HUMBERTO',3,0 +95519,'IBD','21-MAR-10','23-MAR-10',172.50,'ZINDEL','CHUNG',2,2 +57275,'IBD','28-MAR-10','02-APR-10',150.00,'MABRA','MARGET',3,0 +66089,'IBD','06-APR-10','07-APR-10',135.00,'WINNEN','TYLER',2,1 +70741,'IBD','09-APR-10','14-APR-10',150.00,'EERKES','CODY',3,0 +20107,'IBD','14-APR-10','16-APR-10',135.00,'ARBUCKLE','LORENA',2,1 +13136,'IBD','16-APR-10','17-APR-10',187.50,'FEYLER','EMILIA',1,0 +33427,'IBD','17-APR-10','21-APR-10',135.00,'BEALLE','RASHAD',1,0 +80989,'IBD','24-APR-10','06-MAY-10',150.00,'TIPPIN','ASUNCION',1,0 +97996,'IBD','06-MAY-10','07-MAY-10',135.00,'LUCIDO','AHMAD',1,1 +55870,'IBD','08-MAY-10','13-MAY-10',135.00,'BELONGIE','BIBI',1,3 +11645,'IBD','13-MAY-10','19-MAY-10',135.00,'SWAIT','DAN',2,1 +19394,'IBD','23-MAY-10','25-MAY-10',150.00,'HARPE','GERMAN',1,2 +99845,'IBD','27-MAY-10','28-MAY-10',150.00,'SEVILLANO','LILLI',3,0 +32933,'IBD','05-JUN-10','06-JUN-10',135.00,'MURASSO','JAMIE',2,1 +83021,'IBD','06-JUN-10','07-JUN-10',172.50,'KLAVETTER','DOUGLASS',1,3 +65153,'IBD','12-JUN-10','14-JUN-10',150.00,'VEGHER','ANGELA',1,2 +96983,'IBD','18-JUN-10','23-JUN-10',127.50,'CLOWERD','ARNULFO',2,1 +86560,'IBD','23-JUN-10','24-JUN-10',187.50,'SHUTTERS','CLARINDA',3,1 +87086,'IBD','28-JUN-10','07-JUL-10',150.00,'WAGERS','HOUSTON',1,0 +98882,'IBD','07-JUL-10','14-JUL-10',127.50,'GOON','JONE',1,0 +27983,'IBD','22-JUL-10','24-JUL-10',135.00,'SWARTWOOD','JENI',3,1 +37425,'IBD','26-JUL-10','28-JUL-10',150.00,'FIERECK','ALBERTA',4,0 +17222,'IBD','28-JUL-10','07-AUG-10',150.00,'BOHMAN','LAYNE',1,3 +20269,'IBD','12-AUG-10','19-AUG-10',135.00,'BILLICK','NIEVES',1,0 +24326,'IBD','19-AUG-10','21-AUG-10',135.00,'CULMER','LLOYD',1,3 +63600,'IBD','21-AUG-10','28-AUG-10',150.00,'WEARS','LIBBIE',3,0 +37845,'IBD','29-AUG-10','30-AUG-10',127.50,'PENEZ','AMIEE',1,0 +24986,'IBD','30-AUG-10','01-SEP-10',150.00,'HEATH','PASQUALE',4,0 +12085,'IBD','04-SEP-10','08-SEP-10',135.00,'GLASGLOW','EMMANUEL',2,0 +29937,'IBD','08-SEP-10','10-SEP-10',150.00,'OBERHAUSEN','JODY',2,1 +11703,'IBD','10-SEP-10','11-SEP-10',172.50,'HAVIS','SHERILYN',2,0 +10183,'IBD','19-SEP-10','20-SEP-10',150.00,'GABLER','DOLLIE',2,0 +14149,'IBD','20-SEP-10','22-SEP-10',150.00,'HOULIHAN','LEVI',2,1 +17405,'IBD','02-OCT-10','03-OCT-10',127.50,'KESTER','KIZZY',3,1 +21625,'IBD','03-OCT-10','14-OCT-10',187.50,'BOSE','FRANCISCO',1,2 +43651,'IBD','19-OCT-10','21-OCT-10',150.00,'LAGERMAN','LEOLA',2,0 +37060,'IBD','21-OCT-10','23-OCT-10',150.00,'PASSANTINO','DALLAS',1,3 +66548,'IBD','23-OCT-10','26-OCT-10',150.00,'FEASTER','KRISTOPHER',3,0 +11857,'IBD','27-OCT-10','29-OCT-10',187.50,'HARDINA','LORITA',4,0 +33395,'IBD','31-OCT-10','02-NOV-10',150.00,'METER','ROSA',2,0 +43584,'IBD','02-NOV-10','04-NOV-10',135.00,'BRUSKI','MONTY',1,2 +93736,'IBD','07-NOV-10','10-NOV-10',135.00,'TREGRE','COLTON',2,1 +44310,'IBD','15-NOV-10','21-NOV-10',135.00,'DIEZ','NADIA',4,0 +47511,'IBD','21-NOV-10','22-NOV-10',172.50,'VELIE','NIKKI',1,2 +88892,'IBD','22-NOV-10','26-NOV-10',187.50,'MARKWORTH','DESPINA',4,0 +26798,'IBD','30-NOV-10','06-DEC-10',135.00,'BONJORNO','IGNACIO',1,1 +33195,'IBD','06-DEC-10','12-DEC-10',150.00,'DEHLINGER','VANCE',3,1 +72506,'IBD','12-DEC-10','25-DEC-10',150.00,'KNERIEN','GRANT',2,0 +70889,'IBD','25-DEC-10','26-DEC-10',172.50,'DINUNZIO','FELIPE',1,3 +72890,'IBD','26-DEC-10','27-DEC-10',172.50,'AKHTAR','BENTON',1,0 +71679,'IBD','27-DEC-10','31-DEC-10',172.50,'MIKEL','BRIGIDA',1,0 +43692,'IBD','31-DEC-10','01-JAN-11',172.50,'BEAMON','HYACINTH',1,0 +83481,'TAA','03-JAN-10','07-JAN-10',67.50,'ENGELSON','MIKKI',2,0 +38209,'TAA','08-JAN-10','13-JAN-10',86.25,'ECKERT','EDIE',1,0 +89102,'TAA','14-JAN-10','15-JAN-10',67.50,'CARBACK','ZOLA',2,0 +87915,'TAA','18-JAN-10','24-JAN-10',63.75,'ACHENBACH','HERB',1,0 +57627,'TAA','29-JAN-10','05-FEB-10',67.50,'SWEAZY','ROY',1,1 +77911,'TAA','05-FEB-10','07-FEB-10',75.00,'WIDOWSKI','EUSEBIO',2,0 +56475,'TAA','07-FEB-10','08-FEB-10',93.75,'KLIGER','TRICIA',1,0 +89519,'TAA','09-FEB-10','10-FEB-10',75.00,'STIMSON','NICOLA',1,0 +62313,'TAA','10-FEB-10','12-FEB-10',86.25,'WAEGNER','BROOKS',1,1 +68829,'TAA','12-FEB-10','15-FEB-10',67.50,'POIRRIER','SUZETTE',1,1 +84756,'TAA','19-FEB-10','22-FEB-10',75.00,'CARLYLE','BILLYE',1,1 +13972,'TAA','22-FEB-10','25-FEB-10',67.50,'DAYA','COREY',2,0 +55985,'TAA','25-FEB-10','26-FEB-10',86.25,'BASSI','DUSTY',1,0 +92508,'TAA','26-FEB-10','27-FEB-10',75.00,'MULE','DIONNA',2,0 +56344,'TAA','02-MAR-10','03-MAR-10',86.25,'INGUARDSEN','HARRISON',1,0 +24420,'TAA','03-MAR-10','12-MAR-10',75.00,'SCHLESSER','FLOYD',1,1 +74927,'TAA','24-MAR-10','26-MAR-10',67.50,'MACROSTIE','SABRINA',1,0 +69499,'TAA','27-MAR-10','29-MAR-10',75.00,'AKHTAR','BENTON',1,0 +44771,'TAA','29-MAR-10','30-MAR-10',67.50,'NOBLIN','BELKIS',2,0 +31636,'TAA','09-APR-10','11-APR-10',75.00,'FAGERSTROM','ALLAN',1,0 +36855,'TAA','13-APR-10','14-APR-10',67.50,'TRAMM','SANG',1,0 +92463,'TAA','14-APR-10','15-APR-10',75.00,'DAOUD','STEPHEN',1,0 +26423,'TAA','15-APR-10','18-APR-10',86.25,'DEININGER','RICKIE',1,1 +49886,'TAA','21-APR-10','27-APR-10',86.25,'BRINAR','WOODROW',1,1 +75081,'TAA','27-APR-10','07-MAY-10',75.00,'HANSEN','LAREE',1,0 +29496,'TAA','07-MAY-10','14-MAY-10',75.00,'HONIGSBERG','PEARLENE',1,0 +97924,'TAA','19-MAY-10','21-MAY-10',75.00,'SPECTOR','FRITZ',2,0 +61861,'TAA','30-MAY-10','12-JUN-10',86.25,'EASTLING','AUNDREA',1,0 +27125,'TAA','13-JUN-10','15-JUN-10',75.00,'BOESER','DIVINA',1,0 +26487,'TAA','15-JUN-10','19-JUN-10',63.75,'JUHL','MILLARD',1,0 +97491,'TAA','19-JUN-10','23-JUN-10',86.25,'BALCOM','JOEY',1,0 +49153,'TAA','23-JUN-10','30-JUN-10',86.25,'ZEPEDA','ELANA',1,0 +68265,'TAA','30-JUN-10','03-JUL-10',67.50,'BREGER','BOYD',2,0 +94949,'TAA','03-JUL-10','09-JUL-10',75.00,'FINEFROCK','ALEXIS',1,1 +67917,'TAA','09-JUL-10','13-JUL-10',75.00,'SALERNO','LOU',1,0 +86151,'TAA','13-JUL-10','15-JUL-10',67.50,'RIOPEL','TANA',1,1 +32112,'TAA','20-JUL-10','27-JUL-10',75.00,'SAMPLES','CLAIR',1,0 +94735,'TAA','31-JUL-10','05-AUG-10',75.00,'ALMGREN','CHANTAY',1,1 +89433,'TAA','08-AUG-10','18-AUG-10',63.75,'SHALHOUP','AMAL',1,0 +19017,'TAA','18-AUG-10','30-AUG-10',86.25,'EERKES','CODY',2,0 +38017,'TAA','05-SEP-10','07-SEP-10',75.00,'SHOULDER','FLORENTINO',2,0 +85547,'TAA','11-SEP-10','16-SEP-10',93.75,'EMIGHOLZ','ERWIN',1,1 +35546,'TAA','19-SEP-10','24-SEP-10',67.50,'YUK','TIM',1,0 +32552,'TAA','11-OCT-10','12-OCT-10',75.00,'MIDTHUN','EMMANUEL',1,0 +16693,'TAA','17-OCT-10','18-OCT-10',67.50,'ASHCROFT','RONALD',1,0 +20463,'TAA','19-OCT-10','22-OCT-10',75.00,'VANBLARICUM','CRISTIE',1,1 +69654,'TAA','23-OCT-10','29-OCT-10',75.00,'TOLLINCHI','CHRISTOPER',2,0 +67381,'TAA','02-NOV-10','04-NOV-10',75.00,'GUERETTE','CLARETTA',2,0 +58942,'TAA','04-NOV-10','08-NOV-10',75.00,'HULETTE','DARIUS',1,0 +76087,'TAA','18-NOV-10','23-NOV-10',67.50,'SELIGA','LEOPOLDO',1,1 +81825,'TAA','25-NOV-10','27-NOV-10',86.25,'DEVEY','GIUSEPPE',1,1 +90621,'TAA','28-NOV-10','30-NOV-10',86.25,'RENDLEMAN','JULI',1,0 +42000,'TAA','04-DEC-10','11-DEC-10',93.75,'STRINGFELLOW','GEARLDINE',2,0 +33013,'TAA','16-DEC-10','18-DEC-10',67.50,'STYCH','DIA',1,0 +33339,'TAA','22-DEC-10','27-DEC-10',67.50,'WISSINGER','JACQUES',1,0 +54274,'TAA','27-DEC-10','28-DEC-10',75.00,'PEYATT','SHERON',1,0 +84497,'TAA','28-DEC-10','29-DEC-10',75.00,'FRERICKS','RONNY',2,0 +46908,'TAA','29-DEC-10','30-DEC-10',86.25,'PULOS','ROBERTO',1,0 +47108,'TAA','30-DEC-10','12-JAN-11',75.00,'WILCUTT','BLAINE',1,0 +87722,'CAS','01-JAN-10','07-JAN-10',175.00,'GIERLING','TRENT',2,0 +24980,'CAS','07-JAN-10','08-JAN-10',201.25,'GRONDAHL','ELVINA',1,0 +38140,'CAS','22-JAN-10','23-JAN-10',218.75,'KUDRON','CATHERIN',3,0 +75632,'CAS','26-JAN-10','27-JAN-10',148.75,'DONIGAN','GLEN',2,1 +97542,'CAS','27-JAN-10','29-JAN-10',175.00,'GARZONE','EDISON',3,0 +89101,'CAS','29-JAN-10','30-JAN-10',201.25,'GIOVANINI','ROXANE',1,1 +57298,'CAS','30-JAN-10','03-FEB-10',148.75,'KNOP','JEFFRY',1,0 +56797,'CAS','03-FEB-10','05-FEB-10',175.00,'PFEUFFER','VALENTIN',3,0 +32138,'CAS','05-FEB-10','07-FEB-10',175.00,'KOEHNE','YUONNE',3,1 +74036,'CAS','08-FEB-10','14-FEB-10',175.00,'MANTERNACH','ALBERTA',2,0 +90483,'CAS','14-FEB-10','25-FEB-10',175.00,'HUIZINGA','GILBERT',2,1 +83347,'CAS','26-FEB-10','28-FEB-10',201.25,'MCCULLARS','ALEIDA',2,0 +99340,'CAS','04-MAR-10','05-MAR-10',175.00,'DONIGAN','GLEN',3,0 +90569,'CAS','06-MAR-10','07-MAR-10',201.25,'LIBBERTON','SAM',1,0 +36156,'CAS','07-MAR-10','12-MAR-10',175.00,'GUILFOIL','KOREY',2,0 +66494,'CAS','14-MAR-10','18-MAR-10',157.50,'KOLB','ENA',3,0 +11718,'CAS','18-MAR-10','19-MAR-10',157.50,'GLIWSKI','DAN',2,1 +20991,'CAS','19-MAR-10','01-APR-10',201.25,'PLYMEL','STEPHEN',1,0 +92372,'CAS','01-APR-10','03-APR-10',175.00,'GOODHUE','RUSSELL',1,0 +46496,'CAS','08-APR-10','12-APR-10',175.00,'ALWINE','SHAWANDA',3,0 +31695,'CAS','16-APR-10','18-APR-10',148.75,'KEPKE','HAROLD',2,0 +14644,'CAS','23-APR-10','24-APR-10',148.75,'VOLANTE','EMERY',4,0 +12631,'CAS','24-APR-10','26-APR-10',175.00,'ONEEL','PASQUALE',1,0 +83133,'CAS','26-APR-10','27-APR-10',175.00,'JEE','HERMAN',2,2 +93732,'CAS','30-APR-10','02-MAY-10',157.50,'STARE','ELIJAH',1,0 +82884,'CAS','07-MAY-10','08-MAY-10',157.50,'LEVAR','NYLA',2,1 +13192,'CAS','08-MAY-10','15-MAY-10',175.00,'MCCORVEY','JESUS',1,0 +46797,'CAS','15-MAY-10','16-MAY-10',175.00,'VANBLARICUM','CRISTIE',3,1 +93382,'CAS','16-MAY-10','22-MAY-10',175.00,'PACHERO','MAGAN',2,2 +83866,'CAS','01-JUN-10','05-JUN-10',148.75,'BARBER','CALEB',3,0 +70937,'CAS','06-JUN-10','07-JUN-10',148.75,'BERTINI','DYAN',3,0 +92150,'CAS','13-JUN-10','16-JUN-10',157.50,'BOBSEINE','HUMBERTO',1,2 +87631,'CAS','16-JUN-10','23-JUN-10',175.00,'EDEMANN','KACI',1,0 +70863,'CAS','23-JUN-10','05-JUL-10',201.25,'MUHLESTEIN','REINALDO',1,2 +29003,'CAS','05-JUL-10','07-JUL-10',175.00,'MASSER','TROY',1,1 +21050,'CAS','11-JUL-10','17-JUL-10',175.00,'CHATTERJEE','ALFRED',3,0 +59593,'CAS','17-JUL-10','18-JUL-10',218.75,'GRULKEY','JULIO',1,3 +92515,'CAS','18-JUL-10','25-JUL-10',201.25,'LIESTMAN','TOVA',2,0 +80282,'CAS','27-JUL-10','29-JUL-10',157.50,'PETERSON','SHARRI',1,1 +42424,'CAS','01-AUG-10','14-AUG-10',157.50,'SCARPINO','BERNITA',2,0 +19812,'CAS','14-AUG-10','15-AUG-10',157.50,'MCCARTER','IVAN',3,1 +85102,'CAS','15-AUG-10','16-AUG-10',201.25,'GIANOPULOS','LYLA',1,0 +90653,'CAS','16-AUG-10','17-AUG-10',175.00,'SHIYOU','SYLVIE',1,0 +32565,'CAS','21-AUG-10','26-AUG-10',157.50,'KALAFATIS','KEITH',3,0 +28447,'CAS','26-AUG-10','27-AUG-10',175.00,'GEOHAGAN','ISSAC',2,2 +75770,'CAS','27-AUG-10','29-AUG-10',175.00,'TRIGLETH','REYES',3,0 +26380,'CAS','30-AUG-10','31-AUG-10',201.25,'KABZINSKI','MILLIE',1,0 +15059,'CAS','31-AUG-10','07-SEP-10',157.50,'LERCH','NICKY',3,1 +21863,'CAS','07-SEP-10','08-SEP-10',175.00,'ARGOTE','ODELIA',1,0 +62161,'CAS','08-SEP-10','09-SEP-10',157.50,'IKEDA','FREEMAN',1,0 +32781,'CAS','09-SEP-10','15-SEP-10',175.00,'DURAN','BO',2,2 +98805,'CAS','16-SEP-10','18-SEP-10',175.00,'WITHFIELD','IVORY',1,1 +37456,'CAS','18-SEP-10','19-SEP-10',175.00,'BOWEN','NIDA',2,0 +10990,'CAS','21-SEP-10','27-SEP-10',175.00,'TRACHSEL','DAMIEN',1,3 +72813,'CAS','29-SEP-10','03-OCT-10',201.25,'WEINLAND','BEV',3,1 +21216,'CAS','03-OCT-10','04-OCT-10',201.25,'VANNAMAN','ERICH',1,0 +98711,'CAS','08-OCT-10','09-OCT-10',201.25,'ROSSEY','ALLEN',1,0 +88863,'CAS','22-OCT-10','23-OCT-10',175.00,'TOAN','YONG',1,0 +60313,'CAS','28-OCT-10','30-OCT-10',218.75,'SLONE','LARITA',1,1 +80582,'CAS','30-OCT-10','09-NOV-10',201.25,'PFEUFFER','FREDRICK',1,0 +98328,'CAS','14-NOV-10','15-NOV-10',201.25,'MORAWSKI','KRIS',1,3 +16234,'CAS','15-NOV-10','16-NOV-10',157.50,'GRABILL','JULEE',2,0 +32739,'CAS','20-NOV-10','24-NOV-10',148.75,'SHAFE','TUAN',1,2 +94073,'CAS','27-NOV-10','03-DEC-10',175.00,'MANSELL','FLORENTINO',1,0 +32015,'CAS','03-DEC-10','05-DEC-10',201.25,'EADER','JACKIE',2,0 +59986,'CAS','05-DEC-10','09-DEC-10',175.00,'WEINAND','HARRIETT',1,0 +36345,'CAS','10-DEC-10','12-DEC-10',157.50,'TURVAVILLE','TYLER',1,0 +99478,'CAS','29-DEC-10','31-DEC-10',157.50,'WENRICH','ELWOOD',3,0 +93389,'CAS','31-DEC-10','08-JAN-11',218.75,'PELLOWSKI','ELKE',1,0 +32896,'RTE','06-JAN-10','13-JAN-10',157.50,'LUTFY','LIZETTE',1,2 +24412,'RTE','23-JAN-10','30-JAN-10',175.00,'PENEZ','AMIEE',2,0 +76432,'RTE','30-JAN-10','03-FEB-10',148.75,'DIEUDONNE','KRYSTEN',2,2 +62024,'RTE','06-FEB-10','12-FEB-10',157.50,'LUTTRELL','MONTY',1,3 +25374,'RTE','15-FEB-10','17-FEB-10',157.50,'JASPERS','LIBBIE',1,0 +45483,'RTE','17-FEB-10','18-FEB-10',157.50,'JENQUIN','JAY',2,0 +77094,'RTE','23-FEB-10','27-FEB-10',218.75,'DISHAW','CODY',1,2 +93672,'RTE','28-FEB-10','04-MAR-10',148.75,'SOMO','FELICITAS',1,1 +49606,'RTE','04-MAR-10','05-MAR-10',201.25,'YOKUM','GARRY',1,3 +23740,'RTE','07-MAR-10','12-MAR-10',218.75,'NOWLEY','ROMEO',2,0 +14447,'RTE','14-MAR-10','18-MAR-10',201.25,'MAASCH','CHARISSA',2,0 +52353,'RTE','31-MAR-10','07-APR-10',201.25,'WISWELL','JERROD',1,0 +45279,'RTE','08-APR-10','12-APR-10',201.25,'HALBERSTAM','SHERRILL',4,0 +50459,'RTE','14-APR-10','15-APR-10',218.75,'LORENZANO','SON',1,2 +50458,'RTE','18-APR-10','20-APR-10',175.00,'VOLANTE','EMERY',1,2 +98557,'RTE','20-APR-10','21-APR-10',218.75,'MAIDENS','THOMASINE',1,2 +25010,'RTE','22-APR-10','01-MAY-10',201.25,'WESTRUM','TIMMY',2,2 +54061,'RTE','05-MAY-10','12-MAY-10',175.00,'BARTHELL','RICARDA',1,0 +79213,'RTE','17-MAY-10','29-MAY-10',157.50,'NEUZIL','MIREYA',1,3 +34999,'RTE','15-JUN-10','19-JUN-10',175.00,'DANIELLO','RUDOLF',1,1 +37309,'RTE','19-JUN-10','21-JUN-10',175.00,'PERRINO','DENNY',3,1 +48854,'RTE','26-JUN-10','27-JUN-10',175.00,'TROKEY','INGRID',2,0 +22954,'RTE','27-JUN-10','04-JUL-10',157.50,'ALLAIRE','RAMONA',1,1 +14896,'RTE','04-JUL-10','06-JUL-10',148.75,'KUDRON','CATHERIN',1,1 +30186,'RTE','06-JUL-10','07-JUL-10',175.00,'MAKI','ADAN',1,0 +53186,'RTE','09-JUL-10','14-JUL-10',157.50,'MANARD','ARDELIA',1,0 +43707,'RTE','14-JUL-10','16-JUL-10',175.00,'GUT','ALEJANDRA',1,1 +71343,'RTE','19-JUL-10','21-JUL-10',201.25,'TOWBER','MODESTO',1,0 +81785,'RTE','23-JUL-10','24-JUL-10',157.50,'FALT','SHAWN',1,0 +49802,'RTE','30-JUL-10','04-AUG-10',157.50,'CONRAD','ELODIA',1,1 +77535,'RTE','08-AUG-10','12-AUG-10',201.25,'KEBEDE','ARON',1,3 +12142,'RTE','13-AUG-10','23-AUG-10',175.00,'JUNOR','LENNY',3,1 +18398,'RTE','23-AUG-10','24-AUG-10',175.00,'PARAGAS','ALVIN',1,1 +79161,'RTE','24-AUG-10','25-AUG-10',175.00,'RUBERTI','DOMINIC',1,0 +82503,'RTE','27-AUG-10','29-AUG-10',175.00,'RIINA','TATIANA',2,2 +80760,'RTE','03-SEP-10','04-SEP-10',175.00,'DELISSER','COLEMAN',3,1 +42688,'RTE','04-SEP-10','08-SEP-10',148.75,'BRIERTON','MAJOR',1,2 +73364,'RTE','09-SEP-10','10-SEP-10',157.50,'MAROUN','MARTH',1,0 +49609,'RTE','12-SEP-10','17-SEP-10',175.00,'ZEPEDA','ELANA',2,2 +45022,'RTE','20-SEP-10','21-SEP-10',175.00,'PAILET','GIUSEPPE',3,1 +15192,'RTE','22-SEP-10','23-SEP-10',175.00,'JEFFRYES','DANILO',1,0 +15428,'RTE','25-SEP-10','27-SEP-10',175.00,'BROOKSHEAR','NAPOLEON',2,0 +57909,'RTE','02-OCT-10','06-OCT-10',201.25,'OULETTE','ALDO',1,0 +28353,'RTE','06-OCT-10','08-OCT-10',148.75,'PINNELL','ANITA',1,2 +71802,'RTE','23-OCT-10','29-OCT-10',201.25,'GOODHUE','RUSSELL',1,0 +87949,'RTE','02-NOV-10','03-NOV-10',201.25,'SCHWEITZ','DANNETTE',3,1 +19701,'RTE','14-NOV-10','15-NOV-10',201.25,'HOTELLING','REGENIA',1,0 +79296,'RTE','15-NOV-10','17-NOV-10',175.00,'BLACKMORE','APRYL',1,0 +85166,'RTE','17-NOV-10','19-NOV-10',201.25,'RAUGHT','DARON',3,1 +21490,'RTE','23-NOV-10','24-NOV-10',175.00,'PAVLOCK','MARCELO',2,2 +45745,'RTE','29-NOV-10','30-NOV-10',175.00,'MEGGS','CARY',1,0 +83487,'RTE','30-NOV-10','02-DEC-10',175.00,'SHARRER','SHARA',1,0 +38293,'RTE','17-DEC-10','19-DEC-10',157.50,'SCHOSSOW','BO',3,1 +17480,'RTE','22-DEC-10','28-DEC-10',157.50,'DEBARDELABEN','NELL',3,0 +64785,'RTE','28-DEC-10','04-JAN-11',148.75,'MAEWEATHER','AUGUST',3,0 +56517,'FNA','01-JAN-10','04-JAN-10',225.00,'TUPPEN','HANS',1,1 +65186,'FNA','13-JAN-10','15-JAN-10',250.00,'GOSSERAND','CURTIS',2,1 +25966,'FNA','15-JAN-10','17-JAN-10',212.50,'DUMAN','LUKE',3,1 +66899,'FNA','18-JAN-10','19-JAN-10',225.00,'TUNE','MARISSA',1,0 +58779,'FNA','19-JAN-10','21-JAN-10',250.00,'ZENTNER','ROBBIE',1,1 +93918,'FNA','26-JAN-10','31-JAN-10',250.00,'HARDACRE','NEIL',3,0 +51685,'FNA','03-FEB-10','04-FEB-10',250.00,'EIMER','LYNELLE',2,0 +28499,'FNA','04-FEB-10','05-FEB-10',212.50,'DOMINGUEZ','STACEY',1,1 +95600,'FNA','05-FEB-10','07-FEB-10',225.00,'MOUTON','CASANDRA',4,0 +14834,'FNA','07-FEB-10','13-FEB-10',225.00,'WITTROCK','DEBBIE',1,2 +71009,'FNA','18-FEB-10','20-FEB-10',250.00,'OXBORROW','CARLETTA',2,0 +63153,'FNA','20-FEB-10','22-FEB-10',312.50,'TROKEY','INGRID',4,0 +28771,'FNA','26-FEB-10','09-MAR-10',250.00,'MORRISSETTE','FAVIOLA',3,1 +13205,'FNA','14-MAR-10','18-MAR-10',250.00,'VANDOREN','MAJOR',1,0 +72656,'FNA','18-MAR-10','19-MAR-10',250.00,'PICHARD','HOLLIS',1,3 +67292,'FNA','24-MAR-10','28-MAR-10',287.50,'GUEDESSE','SOL',3,0 +22169,'FNA','06-APR-10','07-APR-10',287.50,'SCHUL','HOYT',1,0 +65283,'FNA','08-APR-10','09-APR-10',287.50,'ALLAIRE','RAMONA',2,0 +11631,'FNA','10-APR-10','12-APR-10',312.50,'ESPINO','MARCELINA',2,1 +83396,'FNA','12-APR-10','13-APR-10',250.00,'DRDA','LESTER',1,1 +99863,'FNA','17-APR-10','19-APR-10',250.00,'ARBUCKLE','LORENA',4,0 +54811,'FNA','19-APR-10','20-APR-10',225.00,'KLEVER','ERASMO',2,1 +47352,'FNA','20-APR-10','24-APR-10',225.00,'MARZETT','JOSEPH',1,1 +28691,'FNA','24-APR-10','26-APR-10',225.00,'SLUKA','AIKO',1,1 +73732,'FNA','26-APR-10','28-APR-10',250.00,'RODERICK','JOSLYN',1,0 +26561,'FNA','29-APR-10','03-MAY-10',250.00,'DYDA','DORIAN',2,2 +80964,'FNA','03-MAY-10','10-MAY-10',225.00,'RHYME','QUINN',4,0 +85215,'FNA','14-MAY-10','21-MAY-10',250.00,'TEHNEY','DARRYL',1,0 +60205,'FNA','22-MAY-10','31-MAY-10',225.00,'FRAINE','MANDA',1,1 +37773,'FNA','31-MAY-10','06-JUN-10',312.50,'BOUGIE','MONTE',1,1 +69796,'FNA','09-JUN-10','11-JUN-10',250.00,'LUANGSINGOTHA','WILHELMINA',1,3 +19494,'FNA','12-JUN-10','19-JUN-10',287.50,'VORWERK','DORINE',1,0 +41037,'FNA','19-JUN-10','02-JUL-10',225.00,'DUB','SUZANNE',1,0 +74117,'FNA','02-JUL-10','04-JUL-10',225.00,'HORTILLOSA','FREDDY',1,0 +17338,'FNA','04-JUL-10','05-JUL-10',287.50,'RUBY','QUENTIN',2,2 +71818,'FNA','05-JUL-10','06-JUL-10',250.00,'SALOWITZ','QUEEN',2,1 +99419,'FNA','11-JUL-10','12-JUL-10',250.00,'DALGLEISH','RYAN',4,0 +87412,'FNA','16-JUL-10','22-JUL-10',250.00,'HARE','ELSIE',2,2 +71902,'FNA','27-JUL-10','31-JUL-10',250.00,'ANNABLE','IRA',1,0 +94437,'FNA','31-JUL-10','02-AUG-10',250.00,'SVATEK','KELLY',2,0 +82515,'FNA','02-AUG-10','03-AUG-10',287.50,'ALWINE','SHAWANDA',1,2 +79615,'FNA','03-AUG-10','05-AUG-10',250.00,'CONRAD','ELODIA',1,2 +22615,'FNA','09-AUG-10','10-AUG-10',212.50,'QUISPE','MARGARITO',1,1 +59166,'FNA','20-AUG-10','21-AUG-10',250.00,'TANI','DOMINICK',3,0 +23302,'FNA','21-AUG-10','22-AUG-10',287.50,'CONSTABLE','RASHAD',1,2 +53668,'FNA','22-AUG-10','24-AUG-10',287.50,'FIGUROA','BEN',1,0 +30671,'FNA','29-AUG-10','01-SEP-10',225.00,'KON','DEWAYNE',1,1 +35922,'FNA','01-SEP-10','02-SEP-10',287.50,'SINGERMAN','YAN',1,0 +75457,'FNA','05-SEP-10','07-SEP-10',225.00,'SEGO','HUNG',1,0 +16061,'FNA','11-SEP-10','14-SEP-10',312.50,'ENDLER','ODIS',2,1 +25389,'FNA','19-SEP-10','21-SEP-10',212.50,'INTERRANTE','EMMITT',3,1 +60454,'FNA','06-OCT-10','08-OCT-10',225.00,'GOLSTON','CONSUELA',2,2 +28198,'FNA','08-OCT-10','18-OCT-10',225.00,'SAPORITO','ANDREAS',1,0 +39910,'FNA','19-OCT-10','21-OCT-10',250.00,'KAMINSKY','DANNY',1,0 +92303,'FNA','04-NOV-10','10-NOV-10',287.50,'BRISENDINE','JEWEL',1,0 +26345,'FNA','10-NOV-10','12-NOV-10',250.00,'QUEROS','MAHALIA',1,1 +99236,'FNA','16-NOV-10','17-NOV-10',287.50,'SCHOENING','LEROY',1,1 +85417,'FNA','21-NOV-10','26-NOV-10',225.00,'MULKEY','EMERY',2,0 +10574,'FNA','26-NOV-10','03-DEC-10',287.50,'SWEAZY','ROY',2,1 +29568,'FNA','03-DEC-10','08-DEC-10',225.00,'BOETTNER','REIKO',3,0 +28106,'FNA','11-DEC-10','17-DEC-10',312.50,'VANDERSCHAEGE','MITZIE',2,0 +56373,'FNA','18-DEC-10','20-DEC-10',225.00,'BEGEN','ASHLYN',3,0 +94004,'FNA','21-DEC-10','24-DEC-10',250.00,'JARVI','JOHNNIE',4,0 +28948,'FNA','24-DEC-10','26-DEC-10',287.50,'RUPE','QUIANA',2,0 +71987,'FNA','30-DEC-10','31-DEC-10',250.00,'HARE','ELSIE',2,0 +67409,'FNA','31-DEC-10','04-JAN-11',250.00,'MADRON','DONNIE',2,1 diff --git a/database/inn_1/data_csv/Reservations_t.csv b/database/inn_1/data_csv/Reservations_t.csv new file mode 100644 index 0000000000000000000000000000000000000000..4db9626d523df53f79675d401d124bfd3650caf5 --- /dev/null +++ b/database/inn_1/data_csv/Reservations_t.csv @@ -0,0 +1,601 @@ +Code,Room,CheckIn,CheckOut,Rate,LastName,FirstName,Adults,Kids +47496,'RND',2010-01-01,2010-01-06,150.0,'KLEVER','ERASMO',1,0 +41112,'RND',2010-01-06,2010-01-11,135.0,'HOOLEY','EUGENIO',1,0 +76809,'RND',2010-01-12,2010-01-14,187.5,'WISWELL','JERROD',1,0 +70172,'RND',2010-01-23,2010-01-25,150.0,'ALMANZA','PHEBE',1,0 +44358,'RND',2010-01-25,2010-01-27,150.0,'BOBROW','CLINTON',2,0 +55344,'RND',2010-01-30,2010-01-31,135.0,'RENSCH','LIANA',1,0 +99471,'RND',2010-01-31,2010-02-01,135.0,'ABRAHAMS','ANNETT',1,0 +81473,'RND',2010-02-01,2010-02-02,127.5,'EVERITT','YUK',1,1 +49253,'RND',2010-02-03,2010-02-06,150.0,'NANI','GARRY',1,0 +16748,'RND',2010-02-21,2010-02-23,135.0,'KLIMKO','DONTE',1,0 +69316,'RND',2010-02-26,2010-03-07,150.0,'SULOUFF','JESSICA',1,0 +69844,'RND',2010-03-07,2010-03-11,172.5,'BONIOL','CLINT',1,0 +96839,'RND',2010-03-11,2010-03-12,150.0,'ARANAS','ROD',1,0 +43911,'RND',2010-03-12,2010-03-13,127.5,'NEIN','TEODORO',1,0 +48382,'RND',2010-03-13,2010-03-14,150.0,'SCHLADWEILER','ELEASE',1,0 +77032,'RND',2010-03-14,2010-03-17,172.5,'FRANC','HERBERT',1,0 +30043,'RND',2010-03-17,2010-03-18,150.0,'HELFRITZ','RHEA',2,0 +48539,'RND',2010-03-21,2010-03-28,135.0,'CHINAULT','EDWARDO',2,0 +23850,'RND',2010-04-11,2010-04-17,150.0,'PENNELLA','LAKIA',2,0 +97303,'RND',2010-04-21,2010-04-30,150.0,'WAEGNER','STANFORD',1,0 +21553,'RND',2010-05-01,2010-05-05,172.5,'MECHLING','KERRI',1,0 +28465,'RND',2010-05-05,2010-05-06,150.0,'SALLE','SANTANA',1,0 +62147,'RND',2010-05-06,2010-05-13,135.0,'BURCHAM','JONATHON',1,1 +38368,'RND',2010-05-30,2010-06-06,150.0,'FOCKE','HONEY',1,1 +48822,'RND',2010-06-08,2010-06-12,187.5,'HULETTE','DARIUS',1,0 +18822,'RND',2010-06-12,2010-06-14,150.0,'NORN','GARLAND',2,0 +34034,'RND',2010-06-14,2010-06-20,172.5,'GABBETT','ALLEN',1,0 +52470,'RND',2010-06-20,2010-06-21,127.5,'BAIRAM','BRADLY',1,1 +95709,'RND',2010-06-21,2010-07-02,135.0,'TRUDEN','LEWIS',1,0 +93984,'RND',2010-07-02,2010-07-03,187.5,'DEBARDELABEN','NELL',1,0 +76245,'RND',2010-07-18,2010-07-19,150.0,'TOSTI','DAN',1,1 +30300,'RND',2010-07-19,2010-07-20,135.0,'PRIAL','MYLES',1,0 +70440,'RND',2010-07-23,2010-07-27,150.0,'DEVEY','GIUSEPPE',1,0 +44933,'RND',2010-07-27,2010-07-29,150.0,'FURIA','ELWANDA',2,0 +63458,'RND',2010-07-31,2010-08-01,172.5,'LELEUX','PORTER',1,1 +78964,'RND',2010-08-05,2010-08-06,150.0,'SPERAZZA','WILBUR',2,0 +64503,'RND',2010-08-06,2010-08-11,172.5,'MAURER','TEODORO',2,0 +15534,'RND',2010-08-28,2010-09-01,150.0,'GAUD','REINALDO',1,0 +87560,'RND',2010-09-01,2010-09-02,150.0,'SABALA','MORTON',1,0 +59083,'RND',2010-09-03,2010-09-10,172.5,'HARTFORD','NATHANAEL',2,0 +91895,'RND',2010-09-10,2010-09-11,150.0,'BLADE','RUBEN',1,0 +65416,'RND',2010-09-11,2010-09-13,127.5,'STRICK','NICHOLLE',1,0 +94375,'RND',2010-09-13,2010-09-19,150.0,'WEGER','TOBY',1,0 +69494,'RND',2010-09-21,2010-09-22,135.0,'MINDEN','STACEY',1,0 +14845,'RND',2010-09-27,2010-09-30,150.0,'ROTCH','FLORIDA',1,1 +10449,'RND',2010-09-30,2010-10-01,150.0,'KLESS','NELSON',1,0 +28494,'RND',2010-10-01,2010-10-13,135.0,'DERKAS','GUS',1,0 +67343,'RND',2010-10-14,2010-10-25,172.5,'ALBROUGH','OLYMPIA',2,0 +63293,'RND',2010-10-25,2010-11-01,127.5,'KUTA','HERMAN',1,1 +55551,'RND',2010-11-04,2010-11-08,127.5,'COOKUS','KASHA',2,0 +57705,'RND',2010-11-12,2010-11-15,172.5,'ROTHMAN','GLENNIS',1,0 +48532,'RND',2010-11-20,2010-11-22,135.0,'VANDEBRINK','TRESSIE',1,0 +32049,'RND',2010-11-22,2010-12-04,135.0,'PANOS','LESTER',1,1 +54369,'RND',2010-12-04,2010-12-06,172.5,'MULE','DIONNA',1,0 +24667,'RND',2010-12-08,2010-12-09,187.5,'BAUGUESS','ERYN',1,0 +68385,'RND',2010-12-10,2010-12-12,172.5,'ALBERO','ABBEY',1,0 +46577,'RND',2010-12-12,2010-12-14,135.0,'MAURER','TEODORO',1,0 +41783,'RND',2010-12-19,2010-12-20,187.5,'LEDOUX','LENA',1,0 +30020,'RND',2010-12-21,2010-12-28,135.0,'PORTO','MARIANO',1,1 +26701,'RND',2010-12-28,2010-12-30,150.0,'DEJAEGER','WELDON',2,0 +69598,'RND',2010-12-30,2010-12-31,150.0,'RENIER','MARCELLUS',1,0 +97512,'RND',2010-12-31,2011-01-02,150.0,'FRAILEY','JUANITA',1,0 +74548,'IBS',2010-01-13,2010-01-16,172.5,'BORROMEO','EBONY',1,1 +89123,'IBS',2010-01-20,2010-01-30,172.5,'GISSLER','EFRAIN',1,0 +77967,'IBS',2010-01-30,2010-02-06,172.5,'MCNEELEY','ARTHUR',1,0 +62333,'IBS',2010-02-06,2010-02-07,150.0,'ABATIELL','CATHRYN',2,0 +72456,'IBS',2010-02-08,2010-02-10,150.0,'STARTIN','BRUNA',1,1 +15733,'IBS',2010-02-11,2010-02-13,172.5,'BEALLE','RASHAD',1,0 +39602,'IBS',2010-02-13,2010-02-23,150.0,'STUART','IVA',1,1 +75477,'IBS',2010-02-23,2010-02-24,172.5,'JAHR','JESSIE',2,0 +41754,'IBS',2010-02-24,2010-02-25,172.5,'ANA','ELLAN',1,0 +12138,'IBS',2010-02-28,2010-03-05,150.0,'SHARIAT','JARRED',1,0 +95260,'IBS',2010-03-07,2010-03-19,187.5,'PERRINO','DENNY',1,0 +63558,'IBS',2010-03-20,2010-03-22,150.0,'KEPKE','HAROLD',1,1 +53535,'IBS',2010-03-22,2010-03-25,172.5,'ALLENDE','VIRGIL',1,1 +63746,'IBS',2010-03-25,2010-03-27,187.5,'SCARLES','LANDON',1,1 +58881,'IBS',2010-03-27,2010-03-29,150.0,'RONFELDT','JERMAINE',1,0 +16933,'IBS',2010-04-01,2010-04-03,150.0,'NORSWORTHY','AUBREY',2,0 +18900,'IBS',2010-04-03,2010-04-05,172.5,'LAURY','EMILY',2,0 +58762,'IBS',2010-04-05,2010-04-07,127.5,'REDEPENNING','FAITH',1,0 +50223,'IBS',2010-04-12,2010-04-14,135.0,'CALLICUTT','HONG',1,0 +84715,'IBS',2010-04-18,2010-04-19,150.0,'BECKUM','MISSY',1,0 +55641,'IBS',2010-04-23,2010-04-25,150.0,'ISHIBASHI','CAPRICE',1,1 +99268,'IBS',2010-04-30,2010-05-03,135.0,'LEEHY','NENA',1,0 +14001,'IBS',2010-05-11,2010-05-12,187.5,'COSTON','LANNY',1,0 +63652,'IBS',2010-05-14,2010-05-20,172.5,'COVERT','ADAM',1,1 +28227,'IBS',2010-05-30,2010-06-04,172.5,'STUART','IVA',2,0 +81780,'IBS',2010-06-09,2010-06-10,150.0,'ENTWISLE','THOMAS',1,0 +44426,'IBS',2010-06-22,2010-06-23,150.0,'CHEESE','TRINIDAD',1,0 +62816,'IBS',2010-07-07,2010-07-11,127.5,'MAEWEATHER','AUGUST',1,0 +94074,'IBS',2010-07-15,2010-07-16,135.0,'TRIBBY','ADELIA',1,0 +22981,'IBS',2010-07-21,2010-07-23,172.5,'KNERIEN','GRANT',1,0 +72503,'IBS',2010-07-23,2010-07-30,150.0,'VELZEBOER','HAN',2,0 +44428,'IBS',2010-08-04,2010-08-06,172.5,'ZAVADOSKI','CLAIR',1,0 +26135,'IBS',2010-08-09,2010-08-14,150.0,'STORDAHL','NATOSHA',1,0 +88795,'IBS',2010-08-18,2010-08-26,150.0,'EURICH','ANTONE',1,1 +78565,'IBS',2010-08-28,2010-08-31,187.5,'WAGERS','HOUSTON',2,0 +97220,'IBS',2010-08-31,2010-09-04,187.5,'WIXOM','MARCIA',1,1 +37585,'IBS',2010-09-06,2010-09-08,135.0,'NOAH','DOROTHEA',2,0 +67689,'IBS',2010-09-08,2010-09-11,172.5,'DELGUIDICE','DAN',2,0 +53723,'IBS',2010-09-11,2010-09-12,135.0,'KVETON','FREDRICK',2,0 +11996,'IBS',2010-09-14,2010-09-16,187.5,'BURBANK','ROBERT',1,0 +55363,'IBS',2010-09-20,2010-09-22,135.0,'VERDINE','ANTONINA',1,0 +53747,'IBS',2010-09-22,2010-09-23,135.0,'SPEARIN','TOMMY',1,1 +59610,'IBS',2010-09-23,2010-09-30,150.0,'EGELSTON','EMANUEL',2,0 +77319,'IBS',2010-10-09,2010-10-11,172.5,'WIDOWSKI','EUSEBIO',2,0 +58148,'IBS',2010-10-11,2010-10-13,172.5,'VOLANTE','EMERY',1,0 +62305,'IBS',2010-10-15,2010-10-22,150.0,'KAMROWSKI','EVITA',2,0 +95100,'IBS',2010-10-27,2010-11-05,172.5,'LABAT','JEANMARIE',1,0 +93407,'IBS',2010-11-05,2010-11-07,187.5,'KOLP','PAMELIA',1,0 +35870,'IBS',2010-11-09,2010-11-11,135.0,'DONIGAN','GLEN',1,1 +42731,'IBS',2010-11-11,2010-11-15,172.5,'HOTARD','ALYSIA',2,0 +22561,'IBS',2010-11-15,2010-11-21,127.5,'VUTURO','DEVORAH',1,0 +49482,'IBS',2010-11-21,2010-12-02,172.5,'ATTEBURG','ELMIRA',2,0 +66331,'IBS',2010-12-02,2010-12-06,135.0,'SEVILLANO','LILLI',1,1 +27490,'IBS',2010-12-06,2010-12-08,150.0,'PENDLEY','SCOTTIE',1,1 +40675,'IBS',2010-12-13,2010-12-14,150.0,'HANUS','THEOLA',1,0 +51097,'IBS',2010-12-18,2010-12-20,135.0,'TOODLE','NOLA',2,0 +60749,'IBS',2010-12-22,2010-12-24,135.0,'DONAHER','LAKIA',1,0 +58196,'IBS',2010-12-24,2010-12-30,150.0,'ZELINSKI','ARTHUR',1,0 +96658,'IBS',2010-12-30,2011-01-01,187.5,'SCHLESSELMAN','NEVILLE',1,0 +17265,'AOB',2010-01-01,2010-01-06,175.0,'HENLY','RUPERT',4,0 +52597,'AOB',2010-01-11,2010-01-14,175.0,'CASMORE','MARINE',3,0 +67200,'AOB',2010-01-16,2010-01-23,148.75,'CHET','CHARLEEN',1,2 +28406,'AOB',2010-01-23,2010-01-29,175.0,'COOKUS','KASHA',2,1 +10489,'AOB',2010-02-02,2010-02-05,218.75,'CARISTO','MARKITA',2,1 +31993,'AOB',2010-02-08,2010-02-10,201.25,'ZIEBARTH','ADELAIDE',1,3 +30937,'AOB',2010-02-14,2010-02-15,175.0,'FITZGERREL','DENNY',1,3 +15870,'AOB',2010-02-15,2010-02-19,175.0,'CORIATY','BERTA',1,3 +94545,'AOB',2010-03-03,2010-03-13,201.25,'SHERRANGE','AUGUST',2,0 +57527,'AOB',2010-03-26,2010-03-28,201.25,'ABAJA','RHEA',2,0 +93341,'AOB',2010-04-02,2010-04-08,175.0,'FROHMAN','SHAYNE',3,1 +72945,'AOB',2010-04-12,2010-04-13,201.25,'KOHS','BOB',1,1 +65417,'AOB',2010-04-13,2010-04-15,175.0,'ACHTER','GRETA',1,1 +50207,'AOB',2010-04-20,2010-04-21,175.0,'ROSENDO','TAREN',1,0 +12258,'AOB',2010-04-23,2010-04-27,175.0,'KANNEL','RODGER',1,0 +58755,'AOB',2010-04-30,2010-05-01,175.0,'MALNAR','GROVER',1,0 +17955,'AOB',2010-05-05,2010-05-09,201.25,'PANARELLO','TODD',2,0 +75853,'AOB',2010-05-10,2010-05-12,175.0,'MELOT','JENNA',4,0 +58972,'AOB',2010-05-17,2010-05-19,157.5,'BERS','BRENDA',2,1 +48113,'AOB',2010-05-24,2010-05-25,175.0,'BABU','SARAI',2,0 +17344,'AOB',2010-05-25,2010-05-26,218.75,'GALOW','RICKEY',1,1 +33806,'AOB',2010-05-27,2010-05-28,175.0,'OXFORD','KATRICE',1,2 +28455,'AOB',2010-05-29,2010-05-31,175.0,'RISHA','NORBERTO',1,1 +14940,'AOB',2010-06-01,2010-06-12,175.0,'BISHOFF','ISREAL',2,0 +43225,'AOB',2010-06-12,2010-06-13,157.5,'CAPRON','CASSAUNDRA',1,1 +54831,'AOB',2010-06-15,2010-06-21,201.25,'BAUGUESS','ERYN',1,3 +59225,'AOB',2010-06-26,2010-06-30,201.25,'DURAN','BO',1,0 +18465,'AOB',2010-06-30,2010-07-07,175.0,'KRIEGH','AMADO',2,0 +38013,'AOB',2010-07-08,2010-07-15,175.0,'RURY','SENA',1,1 +47004,'AOB',2010-07-15,2010-07-28,175.0,'STEBNER','MAXIE',1,1 +56286,'AOB',2010-07-29,2010-07-31,201.25,'BRICKEL','ROCKY',3,1 +29253,'AOB',2010-07-31,2010-08-03,175.0,'HILDRED','MARTY',3,1 +76149,'AOB',2010-08-07,2010-08-09,201.25,'HONEYWELL','JULIANA',2,2 +24300,'AOB',2010-08-09,2010-08-15,201.25,'CANDON','PIERRE',4,0 +13058,'AOB',2010-08-17,2010-08-18,157.5,'ABATIELL','CATHRYN',1,2 +95605,'AOB',2010-08-18,2010-08-20,218.75,'FIGLIOLI','NANCI',1,2 +17270,'AOB',2010-08-20,2010-08-23,175.0,'RELLIHAN','COURTNEY',1,0 +67427,'AOB',2010-09-02,2010-09-14,175.0,'STRACK','PORTER',1,3 +33748,'AOB',2010-09-14,2010-09-16,175.0,'PIGNONE','JOEL',1,3 +47146,'AOB',2010-09-16,2010-09-23,201.25,'GATTSHALL','REGAN',1,0 +95204,'AOB',2010-10-08,2010-10-14,157.5,'CARRUTH','SANDY',1,2 +41619,'AOB',2010-10-15,2010-10-22,175.0,'MASSEY','DORIAN',4,0 +80390,'AOB',2010-10-22,2010-10-31,157.5,'PHILBERT','CHRISTIE',2,2 +44836,'AOB',2010-10-31,2010-11-03,148.75,'DEFRANG','DWAIN',1,0 +69035,'AOB',2010-11-18,2010-11-26,218.75,'KU','MERIDETH',1,3 +29287,'AOB',2010-12-01,2010-12-08,218.75,'FRYDAY','HERBERT',2,0 +18834,'AOB',2010-12-08,2010-12-10,148.75,'DUCHARME','MIGUELINA',2,0 +58934,'AOB',2010-12-15,2010-12-22,201.25,'RICHARD','ROBBY',1,1 +82502,'AOB',2010-12-25,2010-12-26,175.0,'KRULIK','JEFFRY',1,2 +36890,'AOB',2010-12-26,2010-12-28,175.0,'PHILBERT','CHRISTIE',2,1 +10984,'AOB',2010-12-28,2011-01-01,201.25,'ZULLO','WILLY',2,1 +80192,'MWC',2010-01-01,2010-01-03,112.5,'MUHLESTEIN','REINALDO',3,1 +58266,'MWC',2010-01-08,2010-01-14,125.0,'PICKARD','HORTENCIA',1,0 +53876,'MWC',2010-01-14,2010-01-15,125.0,'KEBEDE','ARON',3,0 +82409,'MWC',2010-01-30,2010-02-01,125.0,'QUARTO','VANDA',4,0 +39640,'MWC',2010-02-01,2010-02-05,143.75,'HERZING','DELPHIA',2,1 +31371,'MWC',2010-02-05,2010-02-06,125.0,'TARZIA','KAYLEE',2,0 +31508,'MWC',2010-02-10,2010-02-14,112.5,'FULK','GENE',4,0 +37985,'MWC',2010-02-15,2010-02-18,112.5,'PEDERSON','DOTTIE',1,1 +54966,'MWC',2010-02-23,2010-02-24,125.0,'MAZUREK','LEIGHANN',1,0 +64987,'MWC',2010-02-28,2010-03-05,125.0,'BRESSE','BURTON',1,0 +40678,'MWC',2010-03-22,2010-03-29,112.5,'KENNETT','QUEEN',3,0 +36356,'MWC',2010-03-29,2010-04-04,125.0,'SPECTOR','FRITZ',2,1 +35180,'MWC',2010-04-07,2010-04-08,125.0,'POWNELL','BRIDGET',1,0 +96909,'MWC',2010-04-09,2010-04-15,125.0,'WILLIBRAND','HEATHER',3,0 +79056,'MWC',2010-04-19,2010-04-25,125.0,'GANZER','HYMAN',2,0 +90108,'MWC',2010-04-30,2010-05-01,156.25,'FANZO','TERRY',1,0 +30479,'MWC',2010-05-01,2010-05-10,143.75,'QUISPE','MARGARITO',1,1 +60169,'MWC',2010-05-10,2010-05-16,125.0,'ROSATI','LORENA',1,3 +91415,'MWC',2010-05-16,2010-05-18,112.5,'LEHRFELD','CHERLY',3,0 +87943,'MWC',2010-05-21,2010-05-28,125.0,'LUTFY','LIZETTE',2,0 +14273,'MWC',2010-05-28,2010-05-30,125.0,'STARE','ELIJAH',1,0 +25134,'MWC',2010-05-31,2010-06-02,143.75,'HARDYMAN','CLAYTON',1,1 +34244,'MWC',2010-06-04,2010-06-06,112.5,'SPIKE','ROSENDA',4,0 +84244,'MWC',2010-06-06,2010-06-07,125.0,'TALAT','MEAGHAN',2,1 +64456,'MWC',2010-06-07,2010-06-09,125.0,'MCCLENNINGHAM','BRADLY',1,2 +86375,'MWC',2010-06-12,2010-06-22,156.25,'RANAUDO','SELINA',1,0 +84120,'MWC',2010-06-29,2010-07-05,143.75,'LOTTO','MYRA',3,1 +72817,'MWC',2010-07-08,2010-07-09,143.75,'FINEFROCK','ALEXIS',1,2 +16136,'MWC',2010-07-09,2010-07-12,143.75,'FERENCE','MORGAN',1,0 +44378,'MWC',2010-07-12,2010-07-13,125.0,'COTMAN','JOLYNN',1,3 +54323,'MWC',2010-07-13,2010-07-14,106.25,'LUNNEY','YVETTE',3,0 +18311,'MWC',2010-07-27,2010-07-31,125.0,'LUEDKE','BRYNN',1,1 +65909,'MWC',2010-07-31,2010-08-01,112.5,'BENDICKSON','NEWTON',2,0 +70287,'MWC',2010-08-02,2010-08-11,143.75,'MAEDA','DUSTY',1,0 +92348,'MWC',2010-08-11,2010-08-17,125.0,'BARTHELL','RICARDA',1,0 +53295,'MWC',2010-08-17,2010-08-22,106.25,'HANUS','THEOLA',2,1 +97375,'MWC',2010-08-26,2010-08-27,112.5,'DONNELLEY','GARNET',3,0 +79219,'MWC',2010-08-27,2010-08-30,125.0,'KLAASS','HYON',3,1 +69840,'MWC',2010-08-30,2010-09-03,112.5,'KNERIEN','GRANT',2,1 +95620,'MWC',2010-09-07,2010-09-10,112.5,'ZAHLER','GORDON',1,0 +35136,'MWC',2010-09-10,2010-09-12,112.5,'MALCHOW','RAMIRO',1,0 +67464,'MWC',2010-09-27,2010-09-30,112.5,'KVETON','FREDRICK',1,1 +38677,'MWC',2010-10-05,2010-10-11,156.25,'HORELICK','BYRON',2,0 +32116,'MWC',2010-10-15,2010-10-17,143.75,'RUSSO','MELODY',1,1 +21848,'MWC',2010-10-17,2010-10-18,112.5,'CLOFFI','CHAROLETTE',1,0 +73473,'MWC',2010-10-18,2010-10-27,125.0,'ROTCHFORD','DWIGHT',3,0 +98441,'MWC',2010-10-30,2010-11-07,106.25,'RAMPLEY','HERMA',4,0 +54781,'MWC',2010-11-07,2010-11-11,125.0,'KUTA','HERMAN',1,2 +93587,'MWC',2010-11-11,2010-11-12,112.5,'ZELAYA','PRINCE',3,1 +33271,'MWC',2010-11-29,2010-12-02,143.75,'YONKERS','RHETT',2,2 +40043,'MWC',2010-12-04,2010-12-14,125.0,'LANSBERRY','JESUSITA',3,1 +33155,'MWC',2010-12-14,2010-12-16,143.75,'FOLGER','ELOISA',1,0 +88588,'MWC',2010-12-16,2010-12-17,125.0,'RELFORD','MARYBELLE',2,0 +57015,'MWC',2010-12-19,2010-12-20,106.25,'BUSTER','TOM',1,0 +87890,'MWC',2010-12-20,2010-12-22,143.75,'HELKE','ISAAC',1,0 +66189,'MWC',2010-12-30,2011-01-04,143.75,'FROEHNER','LATRISHA',3,0 +76801,'HBB',2010-01-06,2010-01-18,125.0,'CRACE','HERB',1,1 +24408,'HBB',2010-01-18,2010-01-19,100.0,'RADIN','RUSTY',1,0 +21980,'HBB',2010-02-05,2010-02-08,115.0,'SIDDELL','MACY',1,1 +87260,'HBB',2010-02-13,2010-02-15,90.0,'REPKE','CHAE',1,1 +78241,'HBB',2010-02-20,2010-02-28,85.0,'CHAMBLEE','ALTHA',2,0 +64657,'HBB',2010-03-01,2010-03-06,115.0,'VIPPERMAN','PABLO',2,0 +25558,'HBB',2010-03-17,2010-03-19,125.0,'SHOULDER','FLORENTINO',1,1 +82874,'HBB',2010-03-30,2010-04-09,125.0,'ATTEBURG','ELMIRA',1,1 +89780,'HBB',2010-04-09,2010-04-11,100.0,'WAHR','CLINT',1,0 +63523,'HBB',2010-04-15,2010-04-16,115.0,'RATTANA','WINFRED',1,0 +30723,'HBB',2010-04-16,2010-04-23,125.0,'MASSER','TROY',2,0 +88884,'HBB',2010-04-27,2010-04-30,85.0,'KIRAKOSYAN','KAREEM',1,1 +18019,'HBB',2010-05-03,2010-05-05,115.0,'ARNDELL','JEFFEREY',1,1 +77379,'HBB',2010-05-06,2010-05-08,115.0,'TORNQUIST','JESS',1,0 +45157,'HBB',2010-05-11,2010-05-18,115.0,'WICKLIN','WYNELL',2,0 +77574,'HBB',2010-05-22,2010-06-03,90.0,'CASMORE','MARINE',1,1 +69945,'HBB',2010-06-07,2010-06-09,115.0,'FLEURILUS','KATTIE',1,0 +73154,'HBB',2010-06-14,2010-06-19,115.0,'SAILORS','SANDA',1,0 +97000,'HBB',2010-06-20,2010-06-26,125.0,'OCHS','ANGLA',1,0 +34855,'HBB',2010-07-01,2010-07-04,100.0,'YURICK','SHARA',2,0 +86394,'HBB',2010-07-07,2010-07-09,100.0,'WESTLING','DACIA',2,0 +49467,'HBB',2010-07-09,2010-07-16,115.0,'SUSMILCH','RAYMUNDO',1,0 +65206,'HBB',2010-07-16,2010-07-21,100.0,'HIRONS','RANDAL',1,1 +12686,'HBB',2010-07-22,2010-07-25,85.0,'GROWNEY','MELVIN',2,0 +92608,'HBB',2010-07-30,2010-08-01,125.0,'PENCEK','SILVIA',1,0 +71443,'HBB',2010-08-02,2010-08-05,100.0,'KLIMAVICIUS','ULRIKE',1,0 +52799,'HBB',2010-08-05,2010-08-07,85.0,'WANDREI','ISSAC',1,0 +41880,'HBB',2010-08-07,2010-08-09,100.0,'PLAKE','KARMEN',1,0 +25262,'HBB',2010-08-09,2010-08-11,115.0,'YAPLE','CLAUDIE',1,0 +10500,'HBB',2010-08-11,2010-08-12,90.0,'YESSIOS','ANNIS',1,0 +97585,'HBB',2010-08-15,2010-08-16,85.0,'PARISER','ELIJAH',1,0 +84334,'HBB',2010-08-19,2010-08-25,125.0,'NEUBECKER','GARY',2,0 +28589,'HBB',2010-08-25,2010-08-26,115.0,'RIMAR','KEELY',2,0 +62874,'HBB',2010-08-26,2010-08-27,100.0,'SKIBA','MITCHELL',1,1 +46665,'HBB',2010-08-31,2010-09-09,100.0,'MABRA','MARGET',1,0 +40241,'HBB',2010-09-13,2010-09-15,85.0,'CORSARO','SHELLA',1,1 +48604,'HBB',2010-09-16,2010-09-22,115.0,'GARCES','CRISTIE',1,1 +48665,'HBB',2010-09-26,2010-09-28,90.0,'STOUDYMIRE','COLUMBUS',1,1 +20572,'HBB',2010-09-28,2010-09-29,115.0,'SANDLER','JENISE',2,0 +97269,'HBB',2010-10-04,2010-10-05,115.0,'MELVE','PHIL',1,1 +25616,'HBB',2010-10-05,2010-10-06,100.0,'KOSANOVIC','EWA',1,0 +87713,'HBB',2010-10-08,2010-10-10,90.0,'TANKER','JONE',1,0 +44040,'HBB',2010-10-15,2010-10-16,90.0,'ZELAYA','PRINCE',1,0 +21202,'HBB',2010-10-21,2010-10-23,125.0,'CASAGRANDA','BRAIN',2,0 +10105,'HBB',2010-10-23,2010-10-25,100.0,'SELBIG','CONRAD',1,0 +19194,'HBB',2010-10-29,2010-11-05,125.0,'WORKINGER','CLIFTON',1,0 +35959,'HBB',2010-11-07,2010-11-09,100.0,'BRAND','TROY',1,0 +74141,'HBB',2010-11-14,2010-11-16,100.0,'BRODOWSKI','RODERICK',1,0 +56737,'HBB',2010-11-17,2010-11-18,100.0,'PETTINE','NUMBERS',2,0 +80302,'HBB',2010-11-22,2010-11-24,115.0,'KLEIMAN','MAURICIO',1,0 +55862,'HBB',2010-11-28,2010-12-05,85.0,'BIERWAGEN','MARK',1,1 +63078,'HBB',2010-12-05,2010-12-06,90.0,'WHITTEN','MITZI',1,0 +63043,'HBB',2010-12-06,2010-12-07,85.0,'CIERPKE','DOT',1,1 +73785,'HBB',2010-12-07,2010-12-09,100.0,'ROGGE','MEREDITH',2,0 +93165,'HBB',2010-12-10,2010-12-14,90.0,'LEDOUX','LENA',1,0 +58668,'HBB',2010-12-14,2010-12-19,125.0,'COASTER','MERLE',1,1 +17672,'HBB',2010-12-21,2010-12-22,90.0,'DECHELLIS','AARON',1,0 +84695,'HBB',2010-12-22,2010-12-23,90.0,'BRAND','TROY',2,0 +38636,'HBB',2010-12-29,2010-12-31,115.0,'FORESTA','JORDON',1,0 +43157,'HBB',2010-12-31,2011-01-06,100.0,'STURN','NEVADA',2,0 +96005,'IBD',2010-01-01,2010-01-07,150.0,'BUTALA','YEVETTE',3,0 +67066,'IBD',2010-01-07,2010-01-11,135.0,'EDHOLM','ALFRED',3,1 +14226,'IBD',2010-01-11,2010-01-12,150.0,'SCHOENHUT','VERNICE',2,1 +62078,'IBD',2010-01-12,2010-01-25,172.5,'BRODOWSKI','RODERICK',1,0 +43303,'IBD',2010-01-27,2010-01-28,150.0,'MENINO','STEVEN',1,1 +14678,'IBD',2010-01-28,2010-01-30,150.0,'SATERFIELD','FRANCISCO',3,1 +30363,'IBD',2010-01-30,2010-02-09,172.5,'JAHALY','DELORSE',3,0 +80613,'IBD',2010-02-09,2010-02-12,135.0,'CREDIT','JANESSA',1,3 +98216,'IBD',2010-02-18,2010-02-25,150.0,'RAMSDEN','BILLIE',1,0 +43654,'IBD',2010-02-27,2010-02-28,172.5,'BORROMEO','EBONY',2,1 +56509,'IBD',2010-03-08,2010-03-10,150.0,'VONDRA','HUMBERTO',3,0 +95519,'IBD',2010-03-21,2010-03-23,172.5,'ZINDEL','CHUNG',2,2 +57275,'IBD',2010-03-28,2010-04-02,150.0,'MABRA','MARGET',3,0 +66089,'IBD',2010-04-06,2010-04-07,135.0,'WINNEN','TYLER',2,1 +70741,'IBD',2010-04-09,2010-04-14,150.0,'EERKES','CODY',3,0 +20107,'IBD',2010-04-14,2010-04-16,135.0,'ARBUCKLE','LORENA',2,1 +13136,'IBD',2010-04-16,2010-04-17,187.5,'FEYLER','EMILIA',1,0 +33427,'IBD',2010-04-17,2010-04-21,135.0,'BEALLE','RASHAD',1,0 +80989,'IBD',2010-04-24,2010-05-06,150.0,'TIPPIN','ASUNCION',1,0 +97996,'IBD',2010-05-06,2010-05-07,135.0,'LUCIDO','AHMAD',1,1 +55870,'IBD',2010-05-08,2010-05-13,135.0,'BELONGIE','BIBI',1,3 +11645,'IBD',2010-05-13,2010-05-19,135.0,'SWAIT','DAN',2,1 +19394,'IBD',2010-05-23,2010-05-25,150.0,'HARPE','GERMAN',1,2 +99845,'IBD',2010-05-27,2010-05-28,150.0,'SEVILLANO','LILLI',3,0 +32933,'IBD',2010-06-05,2010-06-06,135.0,'MURASSO','JAMIE',2,1 +83021,'IBD',2010-06-06,2010-06-07,172.5,'KLAVETTER','DOUGLASS',1,3 +65153,'IBD',2010-06-12,2010-06-14,150.0,'VEGHER','ANGELA',1,2 +96983,'IBD',2010-06-18,2010-06-23,127.5,'CLOWERD','ARNULFO',2,1 +86560,'IBD',2010-06-23,2010-06-24,187.5,'SHUTTERS','CLARINDA',3,1 +87086,'IBD',2010-06-28,2010-07-07,150.0,'WAGERS','HOUSTON',1,0 +98882,'IBD',2010-07-07,2010-07-14,127.5,'GOON','JONE',1,0 +27983,'IBD',2010-07-22,2010-07-24,135.0,'SWARTWOOD','JENI',3,1 +37425,'IBD',2010-07-26,2010-07-28,150.0,'FIERECK','ALBERTA',4,0 +17222,'IBD',2010-07-28,2010-08-07,150.0,'BOHMAN','LAYNE',1,3 +20269,'IBD',2010-08-12,2010-08-19,135.0,'BILLICK','NIEVES',1,0 +24326,'IBD',2010-08-19,2010-08-21,135.0,'CULMER','LLOYD',1,3 +63600,'IBD',2010-08-21,2010-08-28,150.0,'WEARS','LIBBIE',3,0 +37845,'IBD',2010-08-29,2010-08-30,127.5,'PENEZ','AMIEE',1,0 +24986,'IBD',2010-08-30,2010-09-01,150.0,'HEATH','PASQUALE',4,0 +12085,'IBD',2010-09-04,2010-09-08,135.0,'GLASGLOW','EMMANUEL',2,0 +29937,'IBD',2010-09-08,2010-09-10,150.0,'OBERHAUSEN','JODY',2,1 +11703,'IBD',2010-09-10,2010-09-11,172.5,'HAVIS','SHERILYN',2,0 +10183,'IBD',2010-09-19,2010-09-20,150.0,'GABLER','DOLLIE',2,0 +14149,'IBD',2010-09-20,2010-09-22,150.0,'HOULIHAN','LEVI',2,1 +17405,'IBD',2010-10-02,2010-10-03,127.5,'KESTER','KIZZY',3,1 +21625,'IBD',2010-10-03,2010-10-14,187.5,'BOSE','FRANCISCO',1,2 +43651,'IBD',2010-10-19,2010-10-21,150.0,'LAGERMAN','LEOLA',2,0 +37060,'IBD',2010-10-21,2010-10-23,150.0,'PASSANTINO','DALLAS',1,3 +66548,'IBD',2010-10-23,2010-10-26,150.0,'FEASTER','KRISTOPHER',3,0 +11857,'IBD',2010-10-27,2010-10-29,187.5,'HARDINA','LORITA',4,0 +33395,'IBD',2010-10-31,2010-11-02,150.0,'METER','ROSA',2,0 +43584,'IBD',2010-11-02,2010-11-04,135.0,'BRUSKI','MONTY',1,2 +93736,'IBD',2010-11-07,2010-11-10,135.0,'TREGRE','COLTON',2,1 +44310,'IBD',2010-11-15,2010-11-21,135.0,'DIEZ','NADIA',4,0 +47511,'IBD',2010-11-21,2010-11-22,172.5,'VELIE','NIKKI',1,2 +88892,'IBD',2010-11-22,2010-11-26,187.5,'MARKWORTH','DESPINA',4,0 +26798,'IBD',2010-11-30,2010-12-06,135.0,'BONJORNO','IGNACIO',1,1 +33195,'IBD',2010-12-06,2010-12-12,150.0,'DEHLINGER','VANCE',3,1 +72506,'IBD',2010-12-12,2010-12-25,150.0,'KNERIEN','GRANT',2,0 +70889,'IBD',2010-12-25,2010-12-26,172.5,'DINUNZIO','FELIPE',1,3 +72890,'IBD',2010-12-26,2010-12-27,172.5,'AKHTAR','BENTON',1,0 +71679,'IBD',2010-12-27,2010-12-31,172.5,'MIKEL','BRIGIDA',1,0 +43692,'IBD',2010-12-31,2011-01-01,172.5,'BEAMON','HYACINTH',1,0 +83481,'TAA',2010-01-03,2010-01-07,67.5,'ENGELSON','MIKKI',2,0 +38209,'TAA',2010-01-08,2010-01-13,86.25,'ECKERT','EDIE',1,0 +89102,'TAA',2010-01-14,2010-01-15,67.5,'CARBACK','ZOLA',2,0 +87915,'TAA',2010-01-18,2010-01-24,63.75,'ACHENBACH','HERB',1,0 +57627,'TAA',2010-01-29,2010-02-05,67.5,'SWEAZY','ROY',1,1 +77911,'TAA',2010-02-05,2010-02-07,75.0,'WIDOWSKI','EUSEBIO',2,0 +56475,'TAA',2010-02-07,2010-02-08,93.75,'KLIGER','TRICIA',1,0 +89519,'TAA',2010-02-09,2010-02-10,75.0,'STIMSON','NICOLA',1,0 +62313,'TAA',2010-02-10,2010-02-12,86.25,'WAEGNER','BROOKS',1,1 +68829,'TAA',2010-02-12,2010-02-15,67.5,'POIRRIER','SUZETTE',1,1 +84756,'TAA',2010-02-19,2010-02-22,75.0,'CARLYLE','BILLYE',1,1 +13972,'TAA',2010-02-22,2010-02-25,67.5,'DAYA','COREY',2,0 +55985,'TAA',2010-02-25,2010-02-26,86.25,'BASSI','DUSTY',1,0 +92508,'TAA',2010-02-26,2010-02-27,75.0,'MULE','DIONNA',2,0 +56344,'TAA',2010-03-02,2010-03-03,86.25,'INGUARDSEN','HARRISON',1,0 +24420,'TAA',2010-03-03,2010-03-12,75.0,'SCHLESSER','FLOYD',1,1 +74927,'TAA',2010-03-24,2010-03-26,67.5,'MACROSTIE','SABRINA',1,0 +69499,'TAA',2010-03-27,2010-03-29,75.0,'AKHTAR','BENTON',1,0 +44771,'TAA',2010-03-29,2010-03-30,67.5,'NOBLIN','BELKIS',2,0 +31636,'TAA',2010-04-09,2010-04-11,75.0,'FAGERSTROM','ALLAN',1,0 +36855,'TAA',2010-04-13,2010-04-14,67.5,'TRAMM','SANG',1,0 +92463,'TAA',2010-04-14,2010-04-15,75.0,'DAOUD','STEPHEN',1,0 +26423,'TAA',2010-04-15,2010-04-18,86.25,'DEININGER','RICKIE',1,1 +49886,'TAA',2010-04-21,2010-04-27,86.25,'BRINAR','WOODROW',1,1 +75081,'TAA',2010-04-27,2010-05-07,75.0,'HANSEN','LAREE',1,0 +29496,'TAA',2010-05-07,2010-05-14,75.0,'HONIGSBERG','PEARLENE',1,0 +97924,'TAA',2010-05-19,2010-05-21,75.0,'SPECTOR','FRITZ',2,0 +61861,'TAA',2010-05-30,2010-06-12,86.25,'EASTLING','AUNDREA',1,0 +27125,'TAA',2010-06-13,2010-06-15,75.0,'BOESER','DIVINA',1,0 +26487,'TAA',2010-06-15,2010-06-19,63.75,'JUHL','MILLARD',1,0 +97491,'TAA',2010-06-19,2010-06-23,86.25,'BALCOM','JOEY',1,0 +49153,'TAA',2010-06-23,2010-06-30,86.25,'ZEPEDA','ELANA',1,0 +68265,'TAA',2010-06-30,2010-07-03,67.5,'BREGER','BOYD',2,0 +94949,'TAA',2010-07-03,2010-07-09,75.0,'FINEFROCK','ALEXIS',1,1 +67917,'TAA',2010-07-09,2010-07-13,75.0,'SALERNO','LOU',1,0 +86151,'TAA',2010-07-13,2010-07-15,67.5,'RIOPEL','TANA',1,1 +32112,'TAA',2010-07-20,2010-07-27,75.0,'SAMPLES','CLAIR',1,0 +94735,'TAA',2010-07-31,2010-08-05,75.0,'ALMGREN','CHANTAY',1,1 +89433,'TAA',2010-08-08,2010-08-18,63.75,'SHALHOUP','AMAL',1,0 +19017,'TAA',2010-08-18,2010-08-30,86.25,'EERKES','CODY',2,0 +38017,'TAA',2010-09-05,2010-09-07,75.0,'SHOULDER','FLORENTINO',2,0 +85547,'TAA',2010-09-11,2010-09-16,93.75,'EMIGHOLZ','ERWIN',1,1 +35546,'TAA',2010-09-19,2010-09-24,67.5,'YUK','TIM',1,0 +32552,'TAA',2010-10-11,2010-10-12,75.0,'MIDTHUN','EMMANUEL',1,0 +16693,'TAA',2010-10-17,2010-10-18,67.5,'ASHCROFT','RONALD',1,0 +20463,'TAA',2010-10-19,2010-10-22,75.0,'VANBLARICUM','CRISTIE',1,1 +69654,'TAA',2010-10-23,2010-10-29,75.0,'TOLLINCHI','CHRISTOPER',2,0 +67381,'TAA',2010-11-02,2010-11-04,75.0,'GUERETTE','CLARETTA',2,0 +58942,'TAA',2010-11-04,2010-11-08,75.0,'HULETTE','DARIUS',1,0 +76087,'TAA',2010-11-18,2010-11-23,67.5,'SELIGA','LEOPOLDO',1,1 +81825,'TAA',2010-11-25,2010-11-27,86.25,'DEVEY','GIUSEPPE',1,1 +90621,'TAA',2010-11-28,2010-11-30,86.25,'RENDLEMAN','JULI',1,0 +42000,'TAA',2010-12-04,2010-12-11,93.75,'STRINGFELLOW','GEARLDINE',2,0 +33013,'TAA',2010-12-16,2010-12-18,67.5,'STYCH','DIA',1,0 +33339,'TAA',2010-12-22,2010-12-27,67.5,'WISSINGER','JACQUES',1,0 +54274,'TAA',2010-12-27,2010-12-28,75.0,'PEYATT','SHERON',1,0 +84497,'TAA',2010-12-28,2010-12-29,75.0,'FRERICKS','RONNY',2,0 +46908,'TAA',2010-12-29,2010-12-30,86.25,'PULOS','ROBERTO',1,0 +47108,'TAA',2010-12-30,2011-01-12,75.0,'WILCUTT','BLAINE',1,0 +87722,'CAS',2010-01-01,2010-01-07,175.0,'GIERLING','TRENT',2,0 +24980,'CAS',2010-01-07,2010-01-08,201.25,'GRONDAHL','ELVINA',1,0 +38140,'CAS',2010-01-22,2010-01-23,218.75,'KUDRON','CATHERIN',3,0 +75632,'CAS',2010-01-26,2010-01-27,148.75,'DONIGAN','GLEN',2,1 +97542,'CAS',2010-01-27,2010-01-29,175.0,'GARZONE','EDISON',3,0 +89101,'CAS',2010-01-29,2010-01-30,201.25,'GIOVANINI','ROXANE',1,1 +57298,'CAS',2010-01-30,2010-02-03,148.75,'KNOP','JEFFRY',1,0 +56797,'CAS',2010-02-03,2010-02-05,175.0,'PFEUFFER','VALENTIN',3,0 +32138,'CAS',2010-02-05,2010-02-07,175.0,'KOEHNE','YUONNE',3,1 +74036,'CAS',2010-02-08,2010-02-14,175.0,'MANTERNACH','ALBERTA',2,0 +90483,'CAS',2010-02-14,2010-02-25,175.0,'HUIZINGA','GILBERT',2,1 +83347,'CAS',2010-02-26,2010-02-28,201.25,'MCCULLARS','ALEIDA',2,0 +99340,'CAS',2010-03-04,2010-03-05,175.0,'DONIGAN','GLEN',3,0 +90569,'CAS',2010-03-06,2010-03-07,201.25,'LIBBERTON','SAM',1,0 +36156,'CAS',2010-03-07,2010-03-12,175.0,'GUILFOIL','KOREY',2,0 +66494,'CAS',2010-03-14,2010-03-18,157.5,'KOLB','ENA',3,0 +11718,'CAS',2010-03-18,2010-03-19,157.5,'GLIWSKI','DAN',2,1 +20991,'CAS',2010-03-19,2010-04-01,201.25,'PLYMEL','STEPHEN',1,0 +92372,'CAS',2010-04-01,2010-04-03,175.0,'GOODHUE','RUSSELL',1,0 +46496,'CAS',2010-04-08,2010-04-12,175.0,'ALWINE','SHAWANDA',3,0 +31695,'CAS',2010-04-16,2010-04-18,148.75,'KEPKE','HAROLD',2,0 +14644,'CAS',2010-04-23,2010-04-24,148.75,'VOLANTE','EMERY',4,0 +12631,'CAS',2010-04-24,2010-04-26,175.0,'ONEEL','PASQUALE',1,0 +83133,'CAS',2010-04-26,2010-04-27,175.0,'JEE','HERMAN',2,2 +93732,'CAS',2010-04-30,2010-05-02,157.5,'STARE','ELIJAH',1,0 +82884,'CAS',2010-05-07,2010-05-08,157.5,'LEVAR','NYLA',2,1 +13192,'CAS',2010-05-08,2010-05-15,175.0,'MCCORVEY','JESUS',1,0 +46797,'CAS',2010-05-15,2010-05-16,175.0,'VANBLARICUM','CRISTIE',3,1 +93382,'CAS',2010-05-16,2010-05-22,175.0,'PACHERO','MAGAN',2,2 +83866,'CAS',2010-06-01,2010-06-05,148.75,'BARBER','CALEB',3,0 +70937,'CAS',2010-06-06,2010-06-07,148.75,'BERTINI','DYAN',3,0 +92150,'CAS',2010-06-13,2010-06-16,157.5,'BOBSEINE','HUMBERTO',1,2 +87631,'CAS',2010-06-16,2010-06-23,175.0,'EDEMANN','KACI',1,0 +70863,'CAS',2010-06-23,2010-07-05,201.25,'MUHLESTEIN','REINALDO',1,2 +29003,'CAS',2010-07-05,2010-07-07,175.0,'MASSER','TROY',1,1 +21050,'CAS',2010-07-11,2010-07-17,175.0,'CHATTERJEE','ALFRED',3,0 +59593,'CAS',2010-07-17,2010-07-18,218.75,'GRULKEY','JULIO',1,3 +92515,'CAS',2010-07-18,2010-07-25,201.25,'LIESTMAN','TOVA',2,0 +80282,'CAS',2010-07-27,2010-07-29,157.5,'PETERSON','SHARRI',1,1 +42424,'CAS',2010-08-01,2010-08-14,157.5,'SCARPINO','BERNITA',2,0 +19812,'CAS',2010-08-14,2010-08-15,157.5,'MCCARTER','IVAN',3,1 +85102,'CAS',2010-08-15,2010-08-16,201.25,'GIANOPULOS','LYLA',1,0 +90653,'CAS',2010-08-16,2010-08-17,175.0,'SHIYOU','SYLVIE',1,0 +32565,'CAS',2010-08-21,2010-08-26,157.5,'KALAFATIS','KEITH',3,0 +28447,'CAS',2010-08-26,2010-08-27,175.0,'GEOHAGAN','ISSAC',2,2 +75770,'CAS',2010-08-27,2010-08-29,175.0,'TRIGLETH','REYES',3,0 +26380,'CAS',2010-08-30,2010-08-31,201.25,'KABZINSKI','MILLIE',1,0 +15059,'CAS',2010-08-31,2010-09-07,157.5,'LERCH','NICKY',3,1 +21863,'CAS',2010-09-07,2010-09-08,175.0,'ARGOTE','ODELIA',1,0 +62161,'CAS',2010-09-08,2010-09-09,157.5,'IKEDA','FREEMAN',1,0 +32781,'CAS',2010-09-09,2010-09-15,175.0,'DURAN','BO',2,2 +98805,'CAS',2010-09-16,2010-09-18,175.0,'WITHFIELD','IVORY',1,1 +37456,'CAS',2010-09-18,2010-09-19,175.0,'BOWEN','NIDA',2,0 +10990,'CAS',2010-09-21,2010-09-27,175.0,'TRACHSEL','DAMIEN',1,3 +72813,'CAS',2010-09-29,2010-10-03,201.25,'WEINLAND','BEV',3,1 +21216,'CAS',2010-10-03,2010-10-04,201.25,'VANNAMAN','ERICH',1,0 +98711,'CAS',2010-10-08,2010-10-09,201.25,'ROSSEY','ALLEN',1,0 +88863,'CAS',2010-10-22,2010-10-23,175.0,'TOAN','YONG',1,0 +60313,'CAS',2010-10-28,2010-10-30,218.75,'SLONE','LARITA',1,1 +80582,'CAS',2010-10-30,2010-11-09,201.25,'PFEUFFER','FREDRICK',1,0 +98328,'CAS',2010-11-14,2010-11-15,201.25,'MORAWSKI','KRIS',1,3 +16234,'CAS',2010-11-15,2010-11-16,157.5,'GRABILL','JULEE',2,0 +32739,'CAS',2010-11-20,2010-11-24,148.75,'SHAFE','TUAN',1,2 +94073,'CAS',2010-11-27,2010-12-03,175.0,'MANSELL','FLORENTINO',1,0 +32015,'CAS',2010-12-03,2010-12-05,201.25,'EADER','JACKIE',2,0 +59986,'CAS',2010-12-05,2010-12-09,175.0,'WEINAND','HARRIETT',1,0 +36345,'CAS',2010-12-10,2010-12-12,157.5,'TURVAVILLE','TYLER',1,0 +99478,'CAS',2010-12-29,2010-12-31,157.5,'WENRICH','ELWOOD',3,0 +93389,'CAS',2010-12-31,2011-01-08,218.75,'PELLOWSKI','ELKE',1,0 +32896,'RTE',2010-01-06,2010-01-13,157.5,'LUTFY','LIZETTE',1,2 +24412,'RTE',2010-01-23,2010-01-30,175.0,'PENEZ','AMIEE',2,0 +76432,'RTE',2010-01-30,2010-02-03,148.75,'DIEUDONNE','KRYSTEN',2,2 +62024,'RTE',2010-02-06,2010-02-12,157.5,'LUTTRELL','MONTY',1,3 +25374,'RTE',2010-02-15,2010-02-17,157.5,'JASPERS','LIBBIE',1,0 +45483,'RTE',2010-02-17,2010-02-18,157.5,'JENQUIN','JAY',2,0 +77094,'RTE',2010-02-23,2010-02-27,218.75,'DISHAW','CODY',1,2 +93672,'RTE',2010-02-28,2010-03-04,148.75,'SOMO','FELICITAS',1,1 +49606,'RTE',2010-03-04,2010-03-05,201.25,'YOKUM','GARRY',1,3 +23740,'RTE',2010-03-07,2010-03-12,218.75,'NOWLEY','ROMEO',2,0 +14447,'RTE',2010-03-14,2010-03-18,201.25,'MAASCH','CHARISSA',2,0 +52353,'RTE',2010-03-31,2010-04-07,201.25,'WISWELL','JERROD',1,0 +45279,'RTE',2010-04-08,2010-04-12,201.25,'HALBERSTAM','SHERRILL',4,0 +50459,'RTE',2010-04-14,2010-04-15,218.75,'LORENZANO','SON',1,2 +50458,'RTE',2010-04-18,2010-04-20,175.0,'VOLANTE','EMERY',1,2 +98557,'RTE',2010-04-20,2010-04-21,218.75,'MAIDENS','THOMASINE',1,2 +25010,'RTE',2010-04-22,2010-05-01,201.25,'WESTRUM','TIMMY',2,2 +54061,'RTE',2010-05-05,2010-05-12,175.0,'BARTHELL','RICARDA',1,0 +79213,'RTE',2010-05-17,2010-05-29,157.5,'NEUZIL','MIREYA',1,3 +34999,'RTE',2010-06-15,2010-06-19,175.0,'DANIELLO','RUDOLF',1,1 +37309,'RTE',2010-06-19,2010-06-21,175.0,'PERRINO','DENNY',3,1 +48854,'RTE',2010-06-26,2010-06-27,175.0,'TROKEY','INGRID',2,0 +22954,'RTE',2010-06-27,2010-07-04,157.5,'ALLAIRE','RAMONA',1,1 +14896,'RTE',2010-07-04,2010-07-06,148.75,'KUDRON','CATHERIN',1,1 +30186,'RTE',2010-07-06,2010-07-07,175.0,'MAKI','ADAN',1,0 +53186,'RTE',2010-07-09,2010-07-14,157.5,'MANARD','ARDELIA',1,0 +43707,'RTE',2010-07-14,2010-07-16,175.0,'GUT','ALEJANDRA',1,1 +71343,'RTE',2010-07-19,2010-07-21,201.25,'TOWBER','MODESTO',1,0 +81785,'RTE',2010-07-23,2010-07-24,157.5,'FALT','SHAWN',1,0 +49802,'RTE',2010-07-30,2010-08-04,157.5,'CONRAD','ELODIA',1,1 +77535,'RTE',2010-08-08,2010-08-12,201.25,'KEBEDE','ARON',1,3 +12142,'RTE',2010-08-13,2010-08-23,175.0,'JUNOR','LENNY',3,1 +18398,'RTE',2010-08-23,2010-08-24,175.0,'PARAGAS','ALVIN',1,1 +79161,'RTE',2010-08-24,2010-08-25,175.0,'RUBERTI','DOMINIC',1,0 +82503,'RTE',2010-08-27,2010-08-29,175.0,'RIINA','TATIANA',2,2 +80760,'RTE',2010-09-03,2010-09-04,175.0,'DELISSER','COLEMAN',3,1 +42688,'RTE',2010-09-04,2010-09-08,148.75,'BRIERTON','MAJOR',1,2 +73364,'RTE',2010-09-09,2010-09-10,157.5,'MAROUN','MARTH',1,0 +49609,'RTE',2010-09-12,2010-09-17,175.0,'ZEPEDA','ELANA',2,2 +45022,'RTE',2010-09-20,2010-09-21,175.0,'PAILET','GIUSEPPE',3,1 +15192,'RTE',2010-09-22,2010-09-23,175.0,'JEFFRYES','DANILO',1,0 +15428,'RTE',2010-09-25,2010-09-27,175.0,'BROOKSHEAR','NAPOLEON',2,0 +57909,'RTE',2010-10-02,2010-10-06,201.25,'OULETTE','ALDO',1,0 +28353,'RTE',2010-10-06,2010-10-08,148.75,'PINNELL','ANITA',1,2 +71802,'RTE',2010-10-23,2010-10-29,201.25,'GOODHUE','RUSSELL',1,0 +87949,'RTE',2010-11-02,2010-11-03,201.25,'SCHWEITZ','DANNETTE',3,1 +19701,'RTE',2010-11-14,2010-11-15,201.25,'HOTELLING','REGENIA',1,0 +79296,'RTE',2010-11-15,2010-11-17,175.0,'BLACKMORE','APRYL',1,0 +85166,'RTE',2010-11-17,2010-11-19,201.25,'RAUGHT','DARON',3,1 +21490,'RTE',2010-11-23,2010-11-24,175.0,'PAVLOCK','MARCELO',2,2 +45745,'RTE',2010-11-29,2010-11-30,175.0,'MEGGS','CARY',1,0 +83487,'RTE',2010-11-30,2010-12-02,175.0,'SHARRER','SHARA',1,0 +38293,'RTE',2010-12-17,2010-12-19,157.5,'SCHOSSOW','BO',3,1 +17480,'RTE',2010-12-22,2010-12-28,157.5,'DEBARDELABEN','NELL',3,0 +64785,'RTE',2010-12-28,2011-01-04,148.75,'MAEWEATHER','AUGUST',3,0 +56517,'FNA',2010-01-01,2010-01-04,225.0,'TUPPEN','HANS',1,1 +65186,'FNA',2010-01-13,2010-01-15,250.0,'GOSSERAND','CURTIS',2,1 +25966,'FNA',2010-01-15,2010-01-17,212.5,'DUMAN','LUKE',3,1 +66899,'FNA',2010-01-18,2010-01-19,225.0,'TUNE','MARISSA',1,0 +58779,'FNA',2010-01-19,2010-01-21,250.0,'ZENTNER','ROBBIE',1,1 +93918,'FNA',2010-01-26,2010-01-31,250.0,'HARDACRE','NEIL',3,0 +51685,'FNA',2010-02-03,2010-02-04,250.0,'EIMER','LYNELLE',2,0 +28499,'FNA',2010-02-04,2010-02-05,212.5,'DOMINGUEZ','STACEY',1,1 +95600,'FNA',2010-02-05,2010-02-07,225.0,'MOUTON','CASANDRA',4,0 +14834,'FNA',2010-02-07,2010-02-13,225.0,'WITTROCK','DEBBIE',1,2 +71009,'FNA',2010-02-18,2010-02-20,250.0,'OXBORROW','CARLETTA',2,0 +63153,'FNA',2010-02-20,2010-02-22,312.5,'TROKEY','INGRID',4,0 +28771,'FNA',2010-02-26,2010-03-09,250.0,'MORRISSETTE','FAVIOLA',3,1 +13205,'FNA',2010-03-14,2010-03-18,250.0,'VANDOREN','MAJOR',1,0 +72656,'FNA',2010-03-18,2010-03-19,250.0,'PICHARD','HOLLIS',1,3 +67292,'FNA',2010-03-24,2010-03-28,287.5,'GUEDESSE','SOL',3,0 +22169,'FNA',2010-04-06,2010-04-07,287.5,'SCHUL','HOYT',1,0 +65283,'FNA',2010-04-08,2010-04-09,287.5,'ALLAIRE','RAMONA',2,0 +11631,'FNA',2010-04-10,2010-04-12,312.5,'ESPINO','MARCELINA',2,1 +83396,'FNA',2010-04-12,2010-04-13,250.0,'DRDA','LESTER',1,1 +99863,'FNA',2010-04-17,2010-04-19,250.0,'ARBUCKLE','LORENA',4,0 +54811,'FNA',2010-04-19,2010-04-20,225.0,'KLEVER','ERASMO',2,1 +47352,'FNA',2010-04-20,2010-04-24,225.0,'MARZETT','JOSEPH',1,1 +28691,'FNA',2010-04-24,2010-04-26,225.0,'SLUKA','AIKO',1,1 +73732,'FNA',2010-04-26,2010-04-28,250.0,'RODERICK','JOSLYN',1,0 +26561,'FNA',2010-04-29,2010-05-03,250.0,'DYDA','DORIAN',2,2 +80964,'FNA',2010-05-03,2010-05-10,225.0,'RHYME','QUINN',4,0 +85215,'FNA',2010-05-14,2010-05-21,250.0,'TEHNEY','DARRYL',1,0 +60205,'FNA',2010-05-22,2010-05-31,225.0,'FRAINE','MANDA',1,1 +37773,'FNA',2010-05-31,2010-06-06,312.5,'BOUGIE','MONTE',1,1 +69796,'FNA',2010-06-09,2010-06-11,250.0,'LUANGSINGOTHA','WILHELMINA',1,3 +19494,'FNA',2010-06-12,2010-06-19,287.5,'VORWERK','DORINE',1,0 +41037,'FNA',2010-06-19,2010-07-02,225.0,'DUB','SUZANNE',1,0 +74117,'FNA',2010-07-02,2010-07-04,225.0,'HORTILLOSA','FREDDY',1,0 +17338,'FNA',2010-07-04,2010-07-05,287.5,'RUBY','QUENTIN',2,2 +71818,'FNA',2010-07-05,2010-07-06,250.0,'SALOWITZ','QUEEN',2,1 +99419,'FNA',2010-07-11,2010-07-12,250.0,'DALGLEISH','RYAN',4,0 +87412,'FNA',2010-07-16,2010-07-22,250.0,'HARE','ELSIE',2,2 +71902,'FNA',2010-07-27,2010-07-31,250.0,'ANNABLE','IRA',1,0 +94437,'FNA',2010-07-31,2010-08-02,250.0,'SVATEK','KELLY',2,0 +82515,'FNA',2010-08-02,2010-08-03,287.5,'ALWINE','SHAWANDA',1,2 +79615,'FNA',2010-08-03,2010-08-05,250.0,'CONRAD','ELODIA',1,2 +22615,'FNA',2010-08-09,2010-08-10,212.5,'QUISPE','MARGARITO',1,1 +59166,'FNA',2010-08-20,2010-08-21,250.0,'TANI','DOMINICK',3,0 +23302,'FNA',2010-08-21,2010-08-22,287.5,'CONSTABLE','RASHAD',1,2 +53668,'FNA',2010-08-22,2010-08-24,287.5,'FIGUROA','BEN',1,0 +30671,'FNA',2010-08-29,2010-09-01,225.0,'KON','DEWAYNE',1,1 +35922,'FNA',2010-09-01,2010-09-02,287.5,'SINGERMAN','YAN',1,0 +75457,'FNA',2010-09-05,2010-09-07,225.0,'SEGO','HUNG',1,0 +16061,'FNA',2010-09-11,2010-09-14,312.5,'ENDLER','ODIS',2,1 +25389,'FNA',2010-09-19,2010-09-21,212.5,'INTERRANTE','EMMITT',3,1 +60454,'FNA',2010-10-06,2010-10-08,225.0,'GOLSTON','CONSUELA',2,2 +28198,'FNA',2010-10-08,2010-10-18,225.0,'SAPORITO','ANDREAS',1,0 +39910,'FNA',2010-10-19,2010-10-21,250.0,'KAMINSKY','DANNY',1,0 +92303,'FNA',2010-11-04,2010-11-10,287.5,'BRISENDINE','JEWEL',1,0 +26345,'FNA',2010-11-10,2010-11-12,250.0,'QUEROS','MAHALIA',1,1 +99236,'FNA',2010-11-16,2010-11-17,287.5,'SCHOENING','LEROY',1,1 +85417,'FNA',2010-11-21,2010-11-26,225.0,'MULKEY','EMERY',2,0 +10574,'FNA',2010-11-26,2010-12-03,287.5,'SWEAZY','ROY',2,1 +29568,'FNA',2010-12-03,2010-12-08,225.0,'BOETTNER','REIKO',3,0 +28106,'FNA',2010-12-11,2010-12-17,312.5,'VANDERSCHAEGE','MITZIE',2,0 +56373,'FNA',2010-12-18,2010-12-20,225.0,'BEGEN','ASHLYN',3,0 +94004,'FNA',2010-12-21,2010-12-24,250.0,'JARVI','JOHNNIE',4,0 +28948,'FNA',2010-12-24,2010-12-26,287.5,'RUPE','QUIANA',2,0 +71987,'FNA',2010-12-30,2010-12-31,250.0,'HARE','ELSIE',2,0 +67409,'FNA',2010-12-31,2011-01-04,250.0,'MADRON','DONNIE',2,1 diff --git a/database/inn_1/data_csv/Rooms.csv b/database/inn_1/data_csv/Rooms.csv new file mode 100644 index 0000000000000000000000000000000000000000..257a83b312af8cc36fb3bf419aae7e9fa5308063 --- /dev/null +++ b/database/inn_1/data_csv/Rooms.csv @@ -0,0 +1,11 @@ +RoomId,roomName,beds,bedType,maxOccupancy,basePrice,decor +'RND','Recluse and defiance',1,'King',2,150,'modern' +'IBS','Interim but salutary',1,'King',2,150,'traditional' +'AOB','Abscond or bolster',2,'Queen',4,175,'traditional' +'MWC','Mendicant with cryptic',2,'Double',4,125,'modern' +'HBB','Harbinger but bequest',1,'Queen',2,100,'modern' +'IBD','Immutable before decorum',2,'Queen',4,150,'rustic' +'TAA','Thrift and accolade',1,'Double',2,75,'modern' +'CAS','Convoke and sanguine',2,'King',4,175,'traditional' +'RTE','Riddle to exculpate',2,'Queen',4,175,'rustic' +'FNA','Frugal not apropos',2,'King',4,250,'traditional' diff --git a/database/inn_1/inn_1.sql b/database/inn_1/inn_1.sql new file mode 100644 index 0000000000000000000000000000000000000000..bfb66e4cf9bef3ec73f93eb7f5b808864fcb6e3f --- /dev/null +++ b/database/inn_1/inn_1.sql @@ -0,0 +1,24 @@ +CREATE TABLE "Rooms" ( + "RoomId" TEXT PRIMARY KEY, + "roomName" TEXT, + "beds" INTEGER, + "bedType" TEXT, + "maxOccupancy" INTEGER, + "basePrice" INTEGER, + "decor" TEXT + +); + +CREATE TABLE "Reservations" ( + "Code" INTEGER PRIMARY KEY, + "Room" TEXT, + "CheckIn" TEXT, + "CheckOut" TEXT, + "Rate" REAL, + "LastName" TEXT, + "FirstName" TEXT, + "Adults" INTEGER, + "Kids" INTEGER, + FOREIGN KEY (Room) REFERENCES Rooms(RoomId) +); + diff --git a/database/inn_1/inn_1.sqlite b/database/inn_1/inn_1.sqlite new file mode 100644 index 0000000000000000000000000000000000000000..5e7ebacdf82c1e6b83fe9d25bb8836d4524f0088 Binary files /dev/null and b/database/inn_1/inn_1.sqlite differ diff --git a/database/inn_1/link.txt b/database/inn_1/link.txt new file mode 100644 index 0000000000000000000000000000000000000000..94c167197fe075c59a0eb4db5c0ce5bf25f766e7 --- /dev/null +++ b/database/inn_1/link.txt @@ -0,0 +1 @@ +http://users.csc.calpoly.edu/~dekhtyar/365-Spring2017/index.html \ No newline at end of file diff --git a/database/inn_1/q.txt b/database/inn_1/q.txt new file mode 100644 index 0000000000000000000000000000000000000000..b198bd1554245a14463633715aa03757a67152ef --- /dev/null +++ b/database/inn_1/q.txt @@ -0,0 +1,15 @@ +Find all modern rooms with a base price below $160 and two beds. Report room names and codes + +Find all rooms occupied on February 6, 2010. Report full name of the room, the check-in and checkout dates of the reservation. + +For each reservation that starts on December 31, 2010 report the room name, nightly rate, number of nights spent and the total amount of money paid. + +Find the names of all people1 staying at the inn at the same time as HERBERT FRYDAY. + +Find the number of August reservations (both checkin and checkout dates are in August) where two adults are staying with two children. + +Find the most popular room in the hotel. The most popular room is the room that had seen the largest number of reservations + +Find the room that has been occupied the largest number of days based on the reservations. Report the room name + +For each room, report the most expensive reservation. Report the full room name, dates of stay diff --git a/database/insurance_and_eClaims/insurance_and_eClaims.sqlite b/database/insurance_and_eClaims/insurance_and_eClaims.sqlite new file mode 100644 index 0000000000000000000000000000000000000000..cbb5d30626ee0bc4b08450d9d10787f659b8017d Binary files /dev/null and b/database/insurance_and_eClaims/insurance_and_eClaims.sqlite differ diff --git a/database/insurance_and_eClaims/schema.sql b/database/insurance_and_eClaims/schema.sql new file mode 100644 index 0000000000000000000000000000000000000000..bbb966c1efa7edddcab006dab2d9ee9b7715886f --- /dev/null +++ b/database/insurance_and_eClaims/schema.sql @@ -0,0 +1,164 @@ +PRAGMA foreign_keys = ON; +CREATE TABLE Customers ( +Customer_ID INTEGER NOT NULL, +Customer_Details VARCHAR(255) NOT NULL, +PRIMARY KEY (Customer_ID) +); +INSERT INTO `Customers` (`Customer_ID`, `Customer_Details`) VALUES (252, 'America Jaskolski'); +INSERT INTO `Customers` (`Customer_ID`, `Customer_Details`) VALUES (263, 'Ellsworth Paucek'); +INSERT INTO `Customers` (`Customer_ID`, `Customer_Details`) VALUES (334, 'Mrs. Hanna Willms'); +INSERT INTO `Customers` (`Customer_ID`, `Customer_Details`) VALUES (380, 'Dr. Diana Rath'); +INSERT INTO `Customers` (`Customer_ID`, `Customer_Details`) VALUES (430, 'Selena Gerhold'); +INSERT INTO `Customers` (`Customer_ID`, `Customer_Details`) VALUES (435, 'Lauriane Ferry PhD'); +INSERT INTO `Customers` (`Customer_ID`, `Customer_Details`) VALUES (520, 'Sydnie Friesen'); +INSERT INTO `Customers` (`Customer_ID`, `Customer_Details`) VALUES (588, 'Dayana Robel'); +INSERT INTO `Customers` (`Customer_ID`, `Customer_Details`) VALUES (593, 'Mr. Edwardo Blanda I'); +INSERT INTO `Customers` (`Customer_ID`, `Customer_Details`) VALUES (799, 'Augustine Kerluke'); +INSERT INTO `Customers` (`Customer_ID`, `Customer_Details`) VALUES (808, 'Buddy Marquardt'); +INSERT INTO `Customers` (`Customer_ID`, `Customer_Details`) VALUES (810, 'Mr. Randal Lynch III'); +INSERT INTO `Customers` (`Customer_ID`, `Customer_Details`) VALUES (857, 'Mrs. Liza Heller V'); +INSERT INTO `Customers` (`Customer_ID`, `Customer_Details`) VALUES (858, 'Mrs. Lilly Graham III'); +INSERT INTO `Customers` (`Customer_ID`, `Customer_Details`) VALUES (994, 'Miss Felicita Reichel'); + +CREATE TABLE Staff ( +Staff_ID INTEGER NOT NULL, +Staff_Details VARCHAR(255) NOT NULL, +PRIMARY KEY (Staff_ID) +); + +CREATE TABLE Policies ( +Policy_ID INTEGER NOT NULL, +Customer_ID INTEGER NOT NULL, +Policy_Type_Code CHAR(15) NOT NULL, +Start_Date DATETIME, +End_Date DATETIME, +PRIMARY KEY (Policy_ID), +FOREIGN KEY (Customer_ID) REFERENCES Customers (Customer_ID) +); + + +INSERT INTO `Policies` (`Policy_ID`, `Customer_ID`, `Policy_Type_Code`, `Start_Date`, `End_Date`) VALUES (125, 808, 'Deputy', '2018-02-10 08:56:30', '2018-03-18 09:17:26'); +INSERT INTO `Policies` (`Policy_ID`, `Customer_ID`, `Policy_Type_Code`, `Start_Date`, `End_Date`) VALUES (151, 380, 'Jurisdiction', '2017-12-20 06:02:31', '2017-09-16 22:04:13'); +INSERT INTO `Policies` (`Policy_ID`, `Customer_ID`, `Policy_Type_Code`, `Start_Date`, `End_Date`) VALUES (287, 334, 'Jurisdiction', '2017-03-16 18:16:52', '2017-11-24 06:36:51'); +INSERT INTO `Policies` (`Policy_ID`, `Customer_ID`, `Policy_Type_Code`, `Start_Date`, `End_Date`) VALUES (299, 857, 'Uniformed', '2018-03-13 12:30:19', '2018-01-22 05:24:10'); +INSERT INTO `Policies` (`Policy_ID`, `Customer_ID`, `Policy_Type_Code`, `Start_Date`, `End_Date`) VALUES (507, 858, 'Uniformed', '2017-03-19 03:11:19', '2017-11-01 00:41:27'); +INSERT INTO `Policies` (`Policy_ID`, `Customer_ID`, `Policy_Type_Code`, `Start_Date`, `End_Date`) VALUES (518, 808, 'Uniformed', '2016-05-11 14:56:17', '2018-03-15 05:02:00'); +INSERT INTO `Policies` (`Policy_ID`, `Customer_ID`, `Policy_Type_Code`, `Start_Date`, `End_Date`) VALUES (626, 435, 'Uniformed', '2016-05-14 19:09:36', '2018-01-18 06:17:36'); +INSERT INTO `Policies` (`Policy_ID`, `Customer_ID`, `Policy_Type_Code`, `Start_Date`, `End_Date`) VALUES (628, 430, 'Deputy', '2018-09-19 17:22:07', '2018-01-01 23:58:06'); +INSERT INTO `Policies` (`Policy_ID`, `Customer_ID`, `Policy_Type_Code`, `Start_Date`, `End_Date`) VALUES (703, 380, 'Deputy', '2016-06-04 00:10:01', '2018-01-19 22:45:33'); +INSERT INTO `Policies` (`Policy_ID`, `Customer_ID`, `Policy_Type_Code`, `Start_Date`, `End_Date`) VALUES (708, 252, 'Normal', '2018-07-21 10:36:53', '2018-03-07 13:52:47'); +INSERT INTO `Policies` (`Policy_ID`, `Customer_ID`, `Policy_Type_Code`, `Start_Date`, `End_Date`) VALUES (768, 588, 'Uniformed', '2017-01-01 01:48:08', '2017-09-30 03:16:49'); +INSERT INTO `Policies` (`Policy_ID`, `Customer_ID`, `Policy_Type_Code`, `Start_Date`, `End_Date`) VALUES (773, 334, 'Uniformed', '2017-02-11 01:53:11', '2018-01-15 03:23:05'); +INSERT INTO `Policies` (`Policy_ID`, `Customer_ID`, `Policy_Type_Code`, `Start_Date`, `End_Date`) VALUES (780, 435, 'Uniformed', '2016-08-02 01:46:25', '2018-03-03 18:36:22'); +INSERT INTO `Policies` (`Policy_ID`, `Customer_ID`, `Policy_Type_Code`, `Start_Date`, `End_Date`) VALUES (801, 380, 'Uniformed', '2018-09-05 22:15:23', '2018-03-17 10:16:59'); +INSERT INTO `Policies` (`Policy_ID`, `Customer_ID`, `Policy_Type_Code`, `Start_Date`, `End_Date`) VALUES (936, 994, 'Jurisdiction', '2016-07-23 04:08:35', '2017-10-07 08:29:25'); + + +INSERT INTO `Staff` (`Staff_ID`, `Staff_Details`) VALUES (406, 'Clifton'); +INSERT INTO `Staff` (`Staff_ID`, `Staff_Details`) VALUES (427, 'Cathryn'); +INSERT INTO `Staff` (`Staff_ID`, `Staff_Details`) VALUES (510, 'Kaci'); +INSERT INTO `Staff` (`Staff_ID`, `Staff_Details`) VALUES (589, 'Margaretta'); +INSERT INTO `Staff` (`Staff_ID`, `Staff_Details`) VALUES (634, 'Maryse'); +INSERT INTO `Staff` (`Staff_ID`, `Staff_Details`) VALUES (673, 'Roman'); +INSERT INTO `Staff` (`Staff_ID`, `Staff_Details`) VALUES (687, 'Eladio'); +INSERT INTO `Staff` (`Staff_ID`, `Staff_Details`) VALUES (718, 'Vernie'); +INSERT INTO `Staff` (`Staff_ID`, `Staff_Details`) VALUES (735, 'Evans'); +INSERT INTO `Staff` (`Staff_ID`, `Staff_Details`) VALUES (771, 'Bo'); +INSERT INTO `Staff` (`Staff_ID`, `Staff_Details`) VALUES (803, 'Zachery'); +INSERT INTO `Staff` (`Staff_ID`, `Staff_Details`) VALUES (822, 'Julius'); +INSERT INTO `Staff` (`Staff_ID`, `Staff_Details`) VALUES (833, 'Allen'); +INSERT INTO `Staff` (`Staff_ID`, `Staff_Details`) VALUES (986, 'Alexander'); +INSERT INTO `Staff` (`Staff_ID`, `Staff_Details`) VALUES (987, 'Gideon'); + + +CREATE TABLE Claim_Headers ( +Claim_Header_ID INTEGER NOT NULL, +Claim_Status_Code CHAR(15) NOT NULL, +Claim_Type_Code CHAR(15) NOT NULL, +Policy_ID INTEGER NOT NULL, +Date_of_Claim DATETIME, +Date_of_Settlement DATETIME, +Amount_Claimed DECIMAL(20,4), +Amount_Piad DECIMAL(20,4), +PRIMARY KEY (Claim_Header_ID), +FOREIGN KEY (Policy_ID) REFERENCES Policies (Policy_ID) +); +INSERT INTO `Claim_Headers` (`Claim_Header_ID`, `Claim_Status_Code`, `Claim_Type_Code`, `Policy_ID`, `Date_of_Claim`, `Date_of_Settlement`, `Amount_Claimed`, `Amount_Piad`) VALUES (15, 'Settled', 'Handphone Subsidy', 518, '2016-05-31 06:07:11', '2018-02-23 03:46:38', '349.1500', '582.0300'); +INSERT INTO `Claim_Headers` (`Claim_Header_ID`, `Claim_Status_Code`, `Claim_Type_Code`, `Policy_ID`, `Date_of_Claim`, `Date_of_Settlement`, `Amount_Claimed`, `Amount_Piad`) VALUES (24, 'Disputed', 'Child Birth', 518, '2016-12-30 21:43:21', '2017-10-08 21:43:14', '318.1600', '309.2000'); +INSERT INTO `Claim_Headers` (`Claim_Header_ID`, `Claim_Status_Code`, `Claim_Type_Code`, `Policy_ID`, `Date_of_Claim`, `Date_of_Settlement`, `Amount_Claimed`, `Amount_Piad`) VALUES (27, 'Disputed', 'Overtime Meal Subsidy', 518, '2017-05-01 13:34:43', '2017-11-16 04:06:05', '362.7100', '132.9700'); +INSERT INTO `Claim_Headers` (`Claim_Header_ID`, `Claim_Status_Code`, `Claim_Type_Code`, `Policy_ID`, `Date_of_Claim`, `Date_of_Settlement`, `Amount_Claimed`, `Amount_Piad`) VALUES (28, 'Disputed', 'Child Birth', 287, '2016-10-01 00:40:00', '2017-10-20 02:24:21', '789.1900', '113.8600'); +INSERT INTO `Claim_Headers` (`Claim_Header_ID`, `Claim_Status_Code`, `Claim_Type_Code`, `Policy_ID`, `Date_of_Claim`, `Date_of_Settlement`, `Amount_Claimed`, `Amount_Piad`) VALUES (34, 'Disputed', 'Handphone Subsidy', 518, '2016-04-10 01:36:18', '2017-10-17 07:02:17', '270.4900', '643.8200'); +INSERT INTO `Claim_Headers` (`Claim_Header_ID`, `Claim_Status_Code`, `Claim_Type_Code`, `Policy_ID`, `Date_of_Claim`, `Date_of_Settlement`, `Amount_Claimed`, `Amount_Piad`) VALUES (39, 'In Progress', 'Handphone Subsidy', 518, '2016-09-17 05:05:07', '2018-01-07 05:28:53', '616.1200', '773.5000'); +INSERT INTO `Claim_Headers` (`Claim_Header_ID`, `Claim_Status_Code`, `Claim_Type_Code`, `Policy_ID`, `Date_of_Claim`, `Date_of_Settlement`, `Amount_Claimed`, `Amount_Piad`) VALUES (45, 'In Progress', 'Handphone Subsidy', 507, '2016-06-12 23:04:58', '2018-01-16 06:35:15', '676.8100', '289.0900'); +INSERT INTO `Claim_Headers` (`Claim_Header_ID`, `Claim_Status_Code`, `Claim_Type_Code`, `Policy_ID`, `Date_of_Claim`, `Date_of_Settlement`, `Amount_Claimed`, `Amount_Piad`) VALUES (56, 'In Progress', 'Handphone Subsidy', 626, '2016-04-09 03:04:29', '2017-11-21 09:06:04', '818.1500', '826.0000'); +INSERT INTO `Claim_Headers` (`Claim_Header_ID`, `Claim_Status_Code`, `Claim_Type_Code`, `Policy_ID`, `Date_of_Claim`, `Date_of_Settlement`, `Amount_Claimed`, `Amount_Piad`) VALUES (62, 'Disputed', 'Child Birth', 626, '2017-07-05 02:54:30', '2018-03-08 13:00:23', '182.7900', '558.7000'); +INSERT INTO `Claim_Headers` (`Claim_Header_ID`, `Claim_Status_Code`, `Claim_Type_Code`, `Policy_ID`, `Date_of_Claim`, `Date_of_Settlement`, `Amount_Claimed`, `Amount_Piad`) VALUES (69, 'In Progress', 'Overtime Meal Subsidy', 626, '2016-12-17 08:28:16', '2017-12-20 09:58:14', '867.5700', '133.7200'); +INSERT INTO `Claim_Headers` (`Claim_Header_ID`, `Claim_Status_Code`, `Claim_Type_Code`, `Policy_ID`, `Date_of_Claim`, `Date_of_Settlement`, `Amount_Claimed`, `Amount_Piad`) VALUES (72, 'Disputed', 'Overtime Meal Subsidy', 626, '2017-07-09 17:06:09', '2017-12-06 15:01:14', '672.0600', '227.8400'); +INSERT INTO `Claim_Headers` (`Claim_Header_ID`, `Claim_Status_Code`, `Claim_Type_Code`, `Policy_ID`, `Date_of_Claim`, `Date_of_Settlement`, `Amount_Claimed`, `Amount_Piad`) VALUES (73, 'Settled', 'Overtime Meal Subsidy', 626, '2016-11-15 13:12:02', '2018-01-21 05:51:01', '228.4500', '794.6300'); +INSERT INTO `Claim_Headers` (`Claim_Header_ID`, `Claim_Status_Code`, `Claim_Type_Code`, `Policy_ID`, `Date_of_Claim`, `Date_of_Settlement`, `Amount_Claimed`, `Amount_Piad`) VALUES (81, 'In Progress', 'Overtime Meal Subsidy', 628, '2016-09-26 04:03:48', '2017-12-20 19:06:12', '783.4200', '779.5900'); +INSERT INTO `Claim_Headers` (`Claim_Header_ID`, `Claim_Status_Code`, `Claim_Type_Code`, `Policy_ID`, `Date_of_Claim`, `Date_of_Settlement`, `Amount_Claimed`, `Amount_Piad`) VALUES (82, 'Settled', 'Overtime Meal Subsidy', 125, '2016-09-29 02:42:22', '2017-12-06 17:10:03', '756.2700', '612.7400'); +INSERT INTO `Claim_Headers` (`Claim_Header_ID`, `Claim_Status_Code`, `Claim_Type_Code`, `Policy_ID`, `Date_of_Claim`, `Date_of_Settlement`, `Amount_Claimed`, `Amount_Piad`) VALUES (90, 'Settled', 'Child Birth', 125, '2016-09-28 18:53:22', '2017-10-17 22:03:17', '425.9800', '536.9900'); + + +CREATE TABLE Claims_Documents ( +Claim_ID INTEGER NOT NULL, +Document_Type_Code CHAR(15) NOT NULL, +Created_by_Staff_ID INTEGER, +Created_Date INTEGER, +PRIMARY KEY (Claim_ID, Document_Type_Code), +FOREIGN KEY (Claim_ID) REFERENCES Claim_Headers (Claim_Header_ID), +FOREIGN KEY (Created_by_Staff_ID) REFERENCES Staff (Staff_ID) +); +INSERT INTO `Claims_Documents` (`Claim_ID`, `Document_Type_Code`, `Created_by_Staff_ID`, `Created_Date`) VALUES (24, 'Document', 718, 8); +INSERT INTO `Claims_Documents` (`Claim_ID`, `Document_Type_Code`, `Created_by_Staff_ID`, `Created_Date`) VALUES (27, 'Document', 986, 6); +INSERT INTO `Claims_Documents` (`Claim_ID`, `Document_Type_Code`, `Created_by_Staff_ID`, `Created_Date`) VALUES (27, 'Medical', 427, 8); +INSERT INTO `Claims_Documents` (`Claim_ID`, `Document_Type_Code`, `Created_by_Staff_ID`, `Created_Date`) VALUES (39, 'Document', 803, 2); +INSERT INTO `Claims_Documents` (`Claim_ID`, `Document_Type_Code`, `Created_by_Staff_ID`, `Created_Date`) VALUES (45, 'Medical', 687, 9); +INSERT INTO `Claims_Documents` (`Claim_ID`, `Document_Type_Code`, `Created_by_Staff_ID`, `Created_Date`) VALUES (62, 'Document', 673, 3); +INSERT INTO `Claims_Documents` (`Claim_ID`, `Document_Type_Code`, `Created_by_Staff_ID`, `Created_Date`) VALUES (62, 'Medical', 771, 3); +INSERT INTO `Claims_Documents` (`Claim_ID`, `Document_Type_Code`, `Created_by_Staff_ID`, `Created_Date`) VALUES (62, 'Photo', 771, 6); +INSERT INTO `Claims_Documents` (`Claim_ID`, `Document_Type_Code`, `Created_by_Staff_ID`, `Created_Date`) VALUES (69, 'Document', 718, 1); +INSERT INTO `Claims_Documents` (`Claim_ID`, `Document_Type_Code`, `Created_by_Staff_ID`, `Created_Date`) VALUES (73, 'Document', 986, 2); +INSERT INTO `Claims_Documents` (`Claim_ID`, `Document_Type_Code`, `Created_by_Staff_ID`, `Created_Date`) VALUES (73, 'Medical', 771, 9); +INSERT INTO `Claims_Documents` (`Claim_ID`, `Document_Type_Code`, `Created_by_Staff_ID`, `Created_Date`) VALUES (81, 'Photo', 589, 7); +INSERT INTO `Claims_Documents` (`Claim_ID`, `Document_Type_Code`, `Created_by_Staff_ID`, `Created_Date`) VALUES (82, 'Medical', 803, 9); +INSERT INTO `Claims_Documents` (`Claim_ID`, `Document_Type_Code`, `Created_by_Staff_ID`, `Created_Date`) VALUES (90, 'Photo', 735, 1); + + +CREATE TABLE Claims_Processing_Stages ( +Claim_Stage_ID INTEGER NOT NULL, +Next_Claim_Stage_ID INTEGER, +Claim_Status_Name VARCHAR(255) NOT NULL, +Claim_Status_Description VARCHAR(255) NOT NULL, +PRIMARY KEY (Claim_Stage_ID) +); +INSERT INTO `Claims_Processing_Stages` (`Claim_Stage_ID`, `Next_Claim_Stage_ID`, `Claim_Status_Name`, `Claim_Status_Description`) VALUES (1, 1, 'Open', 'Open a new claim'); +INSERT INTO `Claims_Processing_Stages` (`Claim_Stage_ID`, `Next_Claim_Stage_ID`, `Claim_Status_Name`, `Claim_Status_Description`) VALUES (3, 1, 'Close', 'Close a claim'); + + + +CREATE TABLE Claims_Processing ( +Claim_Processing_ID INTEGER NOT NULL, +Claim_ID INTEGER NOT NULL, +Claim_Outcome_Code CHAR(15) NOT NULL, +Claim_Stage_ID INTEGER NOT NULL, +Staff_ID INTEGER, +PRIMARY KEY (Claim_Processing_ID), +FOREIGN KEY (Claim_ID) REFERENCES Claim_Headers (Claim_Header_ID), +FOREIGN KEY (Staff_ID) REFERENCES Staff (Staff_ID) +); +INSERT INTO `Claims_Processing` (`Claim_Processing_ID`, `Claim_ID`, `Claim_Outcome_Code`, `Claim_Stage_ID`, `Staff_ID`) VALUES (118, 28, 'In progress', 1, 771); +INSERT INTO `Claims_Processing` (`Claim_Processing_ID`, `Claim_ID`, `Claim_Outcome_Code`, `Claim_Stage_ID`, `Staff_ID`) VALUES (145, 62, 'In progress', 1, 589); +INSERT INTO `Claims_Processing` (`Claim_Processing_ID`, `Claim_ID`, `Claim_Outcome_Code`, `Claim_Stage_ID`, `Staff_ID`) VALUES (213, 27, 'In progress', 1, 589); +INSERT INTO `Claims_Processing` (`Claim_Processing_ID`, `Claim_ID`, `Claim_Outcome_Code`, `Claim_Stage_ID`, `Staff_ID`) VALUES (221, 45, 'Disputed', 1, 427); +INSERT INTO `Claims_Processing` (`Claim_Processing_ID`, `Claim_ID`, `Claim_Outcome_Code`, `Claim_Stage_ID`, `Staff_ID`) VALUES (242, 15, 'In progress', 3, 673); +INSERT INTO `Claims_Processing` (`Claim_Processing_ID`, `Claim_ID`, `Claim_Outcome_Code`, `Claim_Stage_ID`, `Staff_ID`) VALUES (243, 15, 'Settled', 1, 687); +INSERT INTO `Claims_Processing` (`Claim_Processing_ID`, `Claim_ID`, `Claim_Outcome_Code`, `Claim_Stage_ID`, `Staff_ID`) VALUES (309, 34, 'Disputed', 3, 771); +INSERT INTO `Claims_Processing` (`Claim_Processing_ID`, `Claim_ID`, `Claim_Outcome_Code`, `Claim_Stage_ID`, `Staff_ID`) VALUES (342, 15, 'In progress', 3, 673); +INSERT INTO `Claims_Processing` (`Claim_Processing_ID`, `Claim_ID`, `Claim_Outcome_Code`, `Claim_Stage_ID`, `Staff_ID`) VALUES (480, 45, 'In progress', 1, 822); +INSERT INTO `Claims_Processing` (`Claim_Processing_ID`, `Claim_ID`, `Claim_Outcome_Code`, `Claim_Stage_ID`, `Staff_ID`) VALUES (659, 62, 'Settled', 3, 510); +INSERT INTO `Claims_Processing` (`Claim_Processing_ID`, `Claim_ID`, `Claim_Outcome_Code`, `Claim_Stage_ID`, `Staff_ID`) VALUES (686, 27, 'Settled', 1, 718); +INSERT INTO `Claims_Processing` (`Claim_Processing_ID`, `Claim_ID`, `Claim_Outcome_Code`, `Claim_Stage_ID`, `Staff_ID`) VALUES (720, 24, 'In progress', 1, 822); +INSERT INTO `Claims_Processing` (`Claim_Processing_ID`, `Claim_ID`, `Claim_Outcome_Code`, `Claim_Stage_ID`, `Staff_ID`) VALUES (818, 90, 'Disputed', 3, 986); +INSERT INTO `Claims_Processing` (`Claim_Processing_ID`, `Claim_ID`, `Claim_Outcome_Code`, `Claim_Stage_ID`, `Staff_ID`) VALUES (833, 81, 'Disputed', 3, 822); +INSERT INTO `Claims_Processing` (`Claim_Processing_ID`, `Claim_ID`, `Claim_Outcome_Code`, `Claim_Stage_ID`, `Staff_ID`) VALUES (898, 24, 'In progress', 1, 718); diff --git a/database/insurance_fnol/insurance_fnol.sqlite b/database/insurance_fnol/insurance_fnol.sqlite new file mode 100644 index 0000000000000000000000000000000000000000..a065d64f49b2da3ec9c6245b31310166ca5e290d Binary files /dev/null and b/database/insurance_fnol/insurance_fnol.sqlite differ diff --git a/database/insurance_fnol/schema.sql b/database/insurance_fnol/schema.sql new file mode 100644 index 0000000000000000000000000000000000000000..78142e98ddb75423509226161d7fe3787b5fc075 --- /dev/null +++ b/database/insurance_fnol/schema.sql @@ -0,0 +1,141 @@ +PRAGMA foreign_keys = ON; + +CREATE TABLE Customers ( +Customer_ID INTEGER NOT NULL, +Customer_name VARCHAR(40), +PRIMARY KEY (Customer_ID) +); +INSERT INTO `Customers` (`Customer_ID`, `Customer_name`) VALUES (194, 'America Jaskolski'); +INSERT INTO `Customers` (`Customer_ID`, `Customer_name`) VALUES (214, 'Ellsworth Paucek'); +INSERT INTO `Customers` (`Customer_ID`, `Customer_name`) VALUES (256, 'Mrs. Hanna Willms'); +INSERT INTO `Customers` (`Customer_ID`, `Customer_name`) VALUES (562, 'Dr. Diana Rath'); +INSERT INTO `Customers` (`Customer_ID`, `Customer_name`) VALUES (582, 'Selena Gerhold'); +INSERT INTO `Customers` (`Customer_ID`, `Customer_name`) VALUES (641, 'Dayana Robel'); +INSERT INTO `Customers` (`Customer_ID`, `Customer_name`) VALUES (682, 'Mr. Edwardo Blanda I'); +INSERT INTO `Customers` (`Customer_ID`, `Customer_name`) VALUES (756, 'Mr. Randal Lynch III'); +INSERT INTO `Customers` (`Customer_ID`, `Customer_name`) VALUES (805, 'Mrs. Liza Heller V'); +INSERT INTO `Customers` (`Customer_ID`, `Customer_name`) VALUES (826, 'Mrs. Lilly Graham III'); +INSERT INTO `Customers` (`Customer_ID`, `Customer_name`) VALUES (882, 'Miss Felicita Reichel'); +INSERT INTO `Customers` (`Customer_ID`, `Customer_name`) VALUES (892, 'Sydnie Friesen'); +INSERT INTO `Customers` (`Customer_ID`, `Customer_name`) VALUES (923, 'David Ross'); +INSERT INTO `Customers` (`Customer_ID`, `Customer_name`) VALUES (956, 'Cai Zhang'); +INSERT INTO `Customers` (`Customer_ID`, `Customer_name`) VALUES (996, 'Jay Chou'); + +CREATE TABLE Services ( +Service_ID INTEGER NOT NULL, +Service_name VARCHAR(40), +PRIMARY KEY (Service_ID) +); + +INSERT INTO `Services` (`Service_ID`, `Service_name`) VALUES (1, 'New policy application'); +INSERT INTO `Services` (`Service_ID`, `Service_name`) VALUES (4, 'Close a policy'); +INSERT INTO `Services` (`Service_ID`, `Service_name`) VALUES (6, 'Change a policy'); +INSERT INTO `Services` (`Service_ID`, `Service_name`) VALUES (9, 'Upgrade a policy'); + +CREATE TABLE Available_Policies ( +Policy_ID INTEGER NOT NULL, +policy_type_code CHAR(15), +Customer_Phone VARCHAR(255), +PRIMARY KEY (Policy_ID), +UNIQUE (Policy_ID) +); + +INSERT INTO `Available_Policies` (`Policy_ID`, `policy_type_code`, `Customer_Phone`) VALUES (246, 'Life Insurance', '+16(2)5838999222'); +INSERT INTO `Available_Policies` (`Policy_ID`, `policy_type_code`, `Customer_Phone`) VALUES (257, 'Property Insurance', '242.763.9214'); +INSERT INTO `Available_Policies` (`Policy_ID`, `policy_type_code`, `Customer_Phone`) VALUES (300, 'Property Insurance', '1-416-503-7735x94204'); +INSERT INTO `Available_Policies` (`Policy_ID`, `policy_type_code`, `Customer_Phone`) VALUES (301, 'Property Insurance', '(777)537-7792'); +INSERT INTO `Available_Policies` (`Policy_ID`, `policy_type_code`, `Customer_Phone`) VALUES (346, 'Mortgage Insurance', '1-446-940-9907x257'); +INSERT INTO `Available_Policies` (`Policy_ID`, `policy_type_code`, `Customer_Phone`) VALUES (366, 'Mortgage Insurance', '(379)862-8274x12620'); +INSERT INTO `Available_Policies` (`Policy_ID`, `policy_type_code`, `Customer_Phone`) VALUES (472, 'Mortgage Insurance', '+85(6)1302858396'); +INSERT INTO `Available_Policies` (`Policy_ID`, `policy_type_code`, `Customer_Phone`) VALUES (583, 'Travel Insurance', '1-797-927-3585x9321'); +INSERT INTO `Available_Policies` (`Policy_ID`, `policy_type_code`, `Customer_Phone`) VALUES (586, 'Life Insurance', '991.642.6485x822'); +INSERT INTO `Available_Policies` (`Policy_ID`, `policy_type_code`, `Customer_Phone`) VALUES (630, 'Property Insurance', '813.178.8211x557'); +INSERT INTO `Available_Policies` (`Policy_ID`, `policy_type_code`, `Customer_Phone`) VALUES (636, 'Life Insurance', '889-572-0609x552'); +INSERT INTO `Available_Policies` (`Policy_ID`, `policy_type_code`, `Customer_Phone`) VALUES (751, 'Life Insurance', '1-138-841-3073'); +INSERT INTO `Available_Policies` (`Policy_ID`, `policy_type_code`, `Customer_Phone`) VALUES (879, 'Mortgage Insurance', '1-381-132-0127x3801'); +INSERT INTO `Available_Policies` (`Policy_ID`, `policy_type_code`, `Customer_Phone`) VALUES (927, 'Mortgage Insurance', '00481937923'); +INSERT INTO `Available_Policies` (`Policy_ID`, `policy_type_code`, `Customer_Phone`) VALUES (993, 'Property Insurance', '405.090.8654x021'); +CREATE TABLE Customers_Policies ( +Customer_ID INTEGER NOT NULL, +Policy_ID INTEGER NOT NULL, +Date_Opened DATE, +Date_Closed DATE, +PRIMARY KEY (Customer_ID, Policy_ID), +FOREIGN KEY (Customer_ID) REFERENCES Customers (Customer_ID), +FOREIGN KEY (Policy_ID) REFERENCES Available_Policies (Policy_ID) +); +INSERT INTO `Customers_Policies` (`Customer_ID`, `Policy_ID`, `Date_Opened`, `Date_Closed`) VALUES (214, 257, '2016-11-19', '2018-03-04'); +INSERT INTO `Customers_Policies` (`Customer_ID`, `Policy_ID`, `Date_Opened`, `Date_Closed`) VALUES (214, 301, '2016-04-12', '2018-02-07'); +INSERT INTO `Customers_Policies` (`Customer_ID`, `Policy_ID`, `Date_Opened`, `Date_Closed`) VALUES (256, 583, '2016-07-22', '2018-02-20'); +INSERT INTO `Customers_Policies` (`Customer_ID`, `Policy_ID`, `Date_Opened`, `Date_Closed`) VALUES (562, 346, '2017-01-09', '2018-03-08'); +INSERT INTO `Customers_Policies` (`Customer_ID`, `Policy_ID`, `Date_Opened`, `Date_Closed`) VALUES (562, 583, '2016-06-24', '2018-02-22'); +INSERT INTO `Customers_Policies` (`Customer_ID`, `Policy_ID`, `Date_Opened`, `Date_Closed`) VALUES (582, 586, '2016-04-11', '2018-03-17'); +INSERT INTO `Customers_Policies` (`Customer_ID`, `Policy_ID`, `Date_Opened`, `Date_Closed`) VALUES (641, 366, '2016-07-10', '2018-02-24'); +INSERT INTO `Customers_Policies` (`Customer_ID`, `Policy_ID`, `Date_Opened`, `Date_Closed`) VALUES (641, 472, '2016-07-07', '2018-03-10'); +INSERT INTO `Customers_Policies` (`Customer_ID`, `Policy_ID`, `Date_Opened`, `Date_Closed`) VALUES (682, 583, '2016-11-01', '2018-03-03'); +INSERT INTO `Customers_Policies` (`Customer_ID`, `Policy_ID`, `Date_Opened`, `Date_Closed`) VALUES (826, 630, '2016-11-18', '2018-02-13'); +INSERT INTO `Customers_Policies` (`Customer_ID`, `Policy_ID`, `Date_Opened`, `Date_Closed`) VALUES (892, 927, '2017-01-08', '2018-02-25'); +INSERT INTO `Customers_Policies` (`Customer_ID`, `Policy_ID`, `Date_Opened`, `Date_Closed`) VALUES (996, 366, '2016-10-31', '2018-03-19'); +INSERT INTO `Customers_Policies` (`Customer_ID`, `Policy_ID`, `Date_Opened`, `Date_Closed`) VALUES (996, 879, '2017-01-05', '2018-02-20'); +INSERT INTO `Customers_Policies` (`Customer_ID`, `Policy_ID`, `Date_Opened`, `Date_Closed`) VALUES (996, 993, '2016-07-03', '2018-03-20'); + +CREATE TABLE First_Notification_of_Loss ( +FNOL_ID INTEGER NOT NULL, +Customer_ID INTEGER NOT NULL, +Policy_ID INTEGER NOT NULL, +Service_ID INTEGER NOT NULL, +PRIMARY KEY (FNOL_ID), +UNIQUE (FNOL_ID), +FOREIGN KEY (Service_ID) REFERENCES Services (Service_ID), +FOREIGN KEY (Customer_ID, Policy_ID) REFERENCES Customers_Policies (Customer_ID,Policy_ID) +); +INSERT INTO `First_Notification_of_Loss` (`FNOL_ID`, `Customer_ID`, `Policy_ID`, `Service_ID`) VALUES (532, 214, 257, 6); +INSERT INTO `First_Notification_of_Loss` (`FNOL_ID`, `Customer_ID`, `Policy_ID`, `Service_ID`) VALUES (1611, 996, 993, 9); +INSERT INTO `First_Notification_of_Loss` (`FNOL_ID`, `Customer_ID`, `Policy_ID`, `Service_ID`) VALUES (1722, 996, 879, 6); +INSERT INTO `First_Notification_of_Loss` (`FNOL_ID`, `Customer_ID`, `Policy_ID`, `Service_ID`) VALUES (2543, 996, 366, 1); +INSERT INTO `First_Notification_of_Loss` (`FNOL_ID`, `Customer_ID`, `Policy_ID`, `Service_ID`) VALUES (4226, 892, 927, 1); +INSERT INTO `First_Notification_of_Loss` (`FNOL_ID`, `Customer_ID`, `Policy_ID`, `Service_ID`) VALUES (4323, 826, 630, 4); +INSERT INTO `First_Notification_of_Loss` (`FNOL_ID`, `Customer_ID`, `Policy_ID`, `Service_ID`) VALUES (4525, 582, 586, 1); + +CREATE TABLE Claims ( +Claim_ID INTEGER NOT NULL, +FNOL_ID INTEGER NOT NULL, +Effective_Date DATE, +PRIMARY KEY (Claim_ID), +UNIQUE (Claim_ID), +FOREIGN KEY (FNOL_ID) REFERENCES First_Notification_of_Loss (FNOL_ID) +); +CREATE TABLE Settlements ( +Settlement_ID INTEGER NOT NULL, +Claim_ID INTEGER, +Effective_Date DATE, +Settlement_Amount REAL, +PRIMARY KEY (Settlement_ID), +UNIQUE (Settlement_ID), +FOREIGN KEY (Claim_ID) REFERENCES Claims (Claim_ID) +); + +INSERT INTO `Claims` (`Claim_ID`, `FNOL_ID`, `Effective_Date`) VALUES (134, 1722, '1973-08-18'); +INSERT INTO `Claims` (`Claim_ID`, `FNOL_ID`, `Effective_Date`) VALUES (145, 1611, '2014-10-19'); +INSERT INTO `Claims` (`Claim_ID`, `FNOL_ID`, `Effective_Date`) VALUES (228, 532, '1975-05-07'); +INSERT INTO `Claims` (`Claim_ID`, `FNOL_ID`, `Effective_Date`) VALUES (309, 2543, '1982-05-03'); +INSERT INTO `Claims` (`Claim_ID`, `FNOL_ID`, `Effective_Date`) VALUES (311, 4226, '1992-02-09'); +INSERT INTO `Claims` (`Claim_ID`, `FNOL_ID`, `Effective_Date`) VALUES (360, 4226, '2006-06-10'); +INSERT INTO `Claims` (`Claim_ID`, `FNOL_ID`, `Effective_Date`) VALUES (428, 4226, '1992-01-05'); +INSERT INTO `Claims` (`Claim_ID`, `FNOL_ID`, `Effective_Date`) VALUES (604, 4323, '2009-02-11'); +INSERT INTO `Claims` (`Claim_ID`, `FNOL_ID`, `Effective_Date`) VALUES (641, 4525, '1985-03-24'); +INSERT INTO `Claims` (`Claim_ID`, `FNOL_ID`, `Effective_Date`) VALUES (717, 4525, '1996-11-29'); + + + + +INSERT INTO `Settlements` (`Settlement_ID`, `Claim_ID`, `Effective_Date`, `Settlement_Amount`) VALUES (161, 717, '2009-11-20', '6451.65'); +INSERT INTO `Settlements` (`Settlement_ID`, `Claim_ID`, `Effective_Date`, `Settlement_Amount`) VALUES (176, 641, '1971-06-29', '1588.45'); +INSERT INTO `Settlements` (`Settlement_ID`, `Claim_ID`, `Effective_Date`, `Settlement_Amount`) VALUES (205, 604, '1978-09-09', '9814.39'); +INSERT INTO `Settlements` (`Settlement_ID`, `Claim_ID`, `Effective_Date`, `Settlement_Amount`) VALUES (208, 428, '2003-12-28', '8827.06'); +INSERT INTO `Settlements` (`Settlement_ID`, `Claim_ID`, `Effective_Date`, `Settlement_Amount`) VALUES (393, 360, '2006-04-19', '8013.95'); +INSERT INTO `Settlements` (`Settlement_ID`, `Claim_ID`, `Effective_Date`, `Settlement_Amount`) VALUES (543, 309, '1972-03-02', '2722.67'); +INSERT INTO `Settlements` (`Settlement_ID`, `Claim_ID`, `Effective_Date`, `Settlement_Amount`) VALUES (544, 311, '1973-10-27', '9164.1'); +INSERT INTO `Settlements` (`Settlement_ID`, `Claim_ID`, `Effective_Date`, `Settlement_Amount`) VALUES (604, 228, '2014-12-09', '2138.96'); +INSERT INTO `Settlements` (`Settlement_ID`, `Claim_ID`, `Effective_Date`, `Settlement_Amount`) VALUES (616, 145, '1995-04-02', '3101.3'); +INSERT INTO `Settlements` (`Settlement_ID`, `Claim_ID`, `Effective_Date`, `Settlement_Amount`) VALUES (628, 134, '2001-07-02', '1721.17'); diff --git a/database/insurance_policies/insurance_policies.sqlite b/database/insurance_policies/insurance_policies.sqlite new file mode 100644 index 0000000000000000000000000000000000000000..9b1ffca54a7980a1e7fd8b31d1449c5ad96d29fc Binary files /dev/null and b/database/insurance_policies/insurance_policies.sqlite differ diff --git a/database/insurance_policies/schema.sql b/database/insurance_policies/schema.sql new file mode 100644 index 0000000000000000000000000000000000000000..d1f24d36196d0972c2b48c692bf62810916cdb0e --- /dev/null +++ b/database/insurance_policies/schema.sql @@ -0,0 +1,130 @@ +PRAGMA foreign_keys = ON; +CREATE TABLE Customers ( +Customer_ID INTEGER NOT NULL, +Customer_Details VARCHAR(255) NOT NULL, +PRIMARY KEY (Customer_ID) +); +INSERT INTO `Customers` (`Customer_ID`, `Customer_Details`) VALUES (1, 'America Jaskolski'); +INSERT INTO `Customers` (`Customer_ID`, `Customer_Details`) VALUES (2, 'Ellsworth Paucek'); +INSERT INTO `Customers` (`Customer_ID`, `Customer_Details`) VALUES (3, 'Mrs. Hanna Willms'); +INSERT INTO `Customers` (`Customer_ID`, `Customer_Details`) VALUES (4, 'Dr. Diana Rath'); +INSERT INTO `Customers` (`Customer_ID`, `Customer_Details`) VALUES (5, 'Selena Gerhold'); +INSERT INTO `Customers` (`Customer_ID`, `Customer_Details`) VALUES (6, 'Lauriane Ferry PhD'); +INSERT INTO `Customers` (`Customer_ID`, `Customer_Details`) VALUES (7, 'Sydnie Friesen'); +INSERT INTO `Customers` (`Customer_ID`, `Customer_Details`) VALUES (8, 'Dayana Robel'); +INSERT INTO `Customers` (`Customer_ID`, `Customer_Details`) VALUES (9, 'Mr. Edwardo Blanda I'); +INSERT INTO `Customers` (`Customer_ID`, `Customer_Details`) VALUES (10, 'Augustine Kerluke'); +INSERT INTO `Customers` (`Customer_ID`, `Customer_Details`) VALUES (11, 'Buddy Marquardt'); +INSERT INTO `Customers` (`Customer_ID`, `Customer_Details`) VALUES (12, 'Mr. Randal Lynch III'); +INSERT INTO `Customers` (`Customer_ID`, `Customer_Details`) VALUES (13, 'Mrs. Liza Heller V'); +INSERT INTO `Customers` (`Customer_ID`, `Customer_Details`) VALUES (14, 'Mrs. Lilly Graham III'); +INSERT INTO `Customers` (`Customer_ID`, `Customer_Details`) VALUES (15, 'Miss Felicita Reichel'); + +CREATE TABLE Customer_Policies ( +Policy_ID INTEGER NOT NULL, +Customer_ID INTEGER NOT NULL, +Policy_Type_Code CHAR(15) NOT NULL, +Start_Date DATE, +End_Date DATE, +PRIMARY KEY (Policy_ID), +FOREIGN KEY (Customer_ID) REFERENCES Customers (Customer_ID) +); + +INSERT INTO `Customer_Policies` (`Policy_ID`, `Customer_ID`, `Policy_Type_Code`, `Start_Date`, `End_Date`) VALUES (119, 1, 'Car', '2018-01-21', '2017-12-15'); +INSERT INTO `Customer_Policies` (`Policy_ID`, `Customer_ID`, `Policy_Type_Code`, `Start_Date`, `End_Date`) VALUES (141, 2, 'Life', '2017-08-21', '2017-09-29'); +INSERT INTO `Customer_Policies` (`Policy_ID`, `Customer_ID`, `Policy_Type_Code`, `Start_Date`, `End_Date`) VALUES (143, 3, 'Car', '2017-06-16', '2017-12-09'); +INSERT INTO `Customer_Policies` (`Policy_ID`, `Customer_ID`, `Policy_Type_Code`, `Start_Date`, `End_Date`) VALUES (218, 4, 'Car', '2017-09-18', '2017-11-23'); +INSERT INTO `Customer_Policies` (`Policy_ID`, `Customer_ID`, `Policy_Type_Code`, `Start_Date`, `End_Date`) VALUES (264, 4, 'Car', '2016-12-25', '2018-01-25'); +INSERT INTO `Customer_Policies` (`Policy_ID`, `Customer_ID`, `Policy_Type_Code`, `Start_Date`, `End_Date`) VALUES (270, 5, 'Life', '2016-07-17', '2018-01-05'); +INSERT INTO `Customer_Policies` (`Policy_ID`, `Customer_ID`, `Policy_Type_Code`, `Start_Date`, `End_Date`) VALUES (352, 6, 'Property', '2016-05-23', '2017-12-09'); +INSERT INTO `Customer_Policies` (`Policy_ID`, `Customer_ID`, `Policy_Type_Code`, `Start_Date`, `End_Date`) VALUES (396, 7, 'Travel', '2017-07-30', '2017-10-09'); +INSERT INTO `Customer_Policies` (`Policy_ID`, `Customer_ID`, `Policy_Type_Code`, `Start_Date`, `End_Date`) VALUES (473, 3, 'Travel', '2017-04-24', '2017-12-14'); +INSERT INTO `Customer_Policies` (`Policy_ID`, `Customer_ID`, `Policy_Type_Code`, `Start_Date`, `End_Date`) VALUES (552, 12, 'Travel', '2017-12-13', '2017-11-05'); +INSERT INTO `Customer_Policies` (`Policy_ID`, `Customer_ID`, `Policy_Type_Code`, `Start_Date`, `End_Date`) VALUES (587, 13, 'Travel', '2017-03-23', '2017-09-01'); +INSERT INTO `Customer_Policies` (`Policy_ID`, `Customer_ID`, `Policy_Type_Code`, `Start_Date`, `End_Date`) VALUES (738, 8, 'Travel', '2018-06-16', '2017-12-04'); +INSERT INTO `Customer_Policies` (`Policy_ID`, `Customer_ID`, `Policy_Type_Code`, `Start_Date`, `End_Date`) VALUES (744, 6, 'Property', '2017-12-01', '2018-03-07'); +INSERT INTO `Customer_Policies` (`Policy_ID`, `Customer_ID`, `Policy_Type_Code`, `Start_Date`, `End_Date`) VALUES (858, 9, 'Property', '2016-05-30', '2018-02-11'); +INSERT INTO `Customer_Policies` (`Policy_ID`, `Customer_ID`, `Policy_Type_Code`, `Start_Date`, `End_Date`) VALUES (900, 2, 'Property', '2017-01-20', '2017-12-11'); +CREATE TABLE Claims ( +Claim_ID INTEGER NOT NULL, +Policy_ID INTEGER NOT NULL, +Date_Claim_Made DATE, +Date_Claim_Settled DATE, +Amount_Claimed INTEGER, +Amount_Settled INTEGER, +PRIMARY KEY (Claim_ID), +FOREIGN KEY (Policy_ID) REFERENCES Customer_Policies (Policy_ID) +); + +INSERT INTO `Claims` (`Claim_ID`, `Policy_ID`, `Date_Claim_Made`, `Date_Claim_Settled`, `Amount_Claimed`, `Amount_Settled`) VALUES (143, 744, '2017-03-11', '2017-11-03', 43884, 1085); +INSERT INTO `Claims` (`Claim_ID`, `Policy_ID`, `Date_Claim_Made`, `Date_Claim_Settled`, `Amount_Claimed`, `Amount_Settled`) VALUES (423, 552, '2016-08-12', '2018-01-27', 79134, 1724); +INSERT INTO `Claims` (`Claim_ID`, `Policy_ID`, `Date_Claim_Made`, `Date_Claim_Settled`, `Amount_Claimed`, `Amount_Settled`) VALUES (442, 473, '2017-02-24', '2018-01-21', 70088, 1189); +INSERT INTO `Claims` (`Claim_ID`, `Policy_ID`, `Date_Claim_Made`, `Date_Claim_Settled`, `Amount_Claimed`, `Amount_Settled`) VALUES (486, 141, '2018-06-14', '2017-12-20', 69696, 1638); +INSERT INTO `Claims` (`Claim_ID`, `Policy_ID`, `Date_Claim_Made`, `Date_Claim_Settled`, `Amount_Claimed`, `Amount_Settled`) VALUES (546, 744, '2017-05-03', '2017-12-22', 46479, 1091); +INSERT INTO `Claims` (`Claim_ID`, `Policy_ID`, `Date_Claim_Made`, `Date_Claim_Settled`, `Amount_Claimed`, `Amount_Settled`) VALUES (563, 141, '2016-08-02', '2017-09-04', 41078, 1570); +INSERT INTO `Claims` (`Claim_ID`, `Policy_ID`, `Date_Claim_Made`, `Date_Claim_Settled`, `Amount_Claimed`, `Amount_Settled`) VALUES (569, 473, '2018-07-15', '2017-11-19', 49743, 930); +INSERT INTO `Claims` (`Claim_ID`, `Policy_ID`, `Date_Claim_Made`, `Date_Claim_Settled`, `Amount_Claimed`, `Amount_Settled`) VALUES (571, 858, '2017-08-03', '2018-02-18', 89632, 1528); +INSERT INTO `Claims` (`Claim_ID`, `Policy_ID`, `Date_Claim_Made`, `Date_Claim_Settled`, `Amount_Claimed`, `Amount_Settled`) VALUES (621, 744, '2016-12-18', '2018-01-11', 43708, 1652); +INSERT INTO `Claims` (`Claim_ID`, `Policy_ID`, `Date_Claim_Made`, `Date_Claim_Settled`, `Amount_Claimed`, `Amount_Settled`) VALUES (761, 473, '2016-08-26', '2017-09-04', 83703, 1372); +INSERT INTO `Claims` (`Claim_ID`, `Policy_ID`, `Date_Claim_Made`, `Date_Claim_Settled`, `Amount_Claimed`, `Amount_Settled`) VALUES (801, 738, '2017-10-21', '2018-01-05', 3326, 1353); +INSERT INTO `Claims` (`Claim_ID`, `Policy_ID`, `Date_Claim_Made`, `Date_Claim_Settled`, `Amount_Claimed`, `Amount_Settled`) VALUES (843, 143, '2017-10-14', '2018-02-20', 10209, 1639); +INSERT INTO `Claims` (`Claim_ID`, `Policy_ID`, `Date_Claim_Made`, `Date_Claim_Settled`, `Amount_Claimed`, `Amount_Settled`) VALUES (935, 143, '2018-07-13', '2017-11-22', 70674, 1637); +INSERT INTO `Claims` (`Claim_ID`, `Policy_ID`, `Date_Claim_Made`, `Date_Claim_Settled`, `Amount_Claimed`, `Amount_Settled`) VALUES (957, 352, '2018-11-08', '2017-09-15', 38280, 1050); +INSERT INTO `Claims` (`Claim_ID`, `Policy_ID`, `Date_Claim_Made`, `Date_Claim_Settled`, `Amount_Claimed`, `Amount_Settled`) VALUES (965, 119, '2017-07-17', '2018-03-09', 35824, 1636); + + + +CREATE TABLE Settlements ( +Settlement_ID INTEGER NOT NULL, +Claim_ID INTEGER NOT NULL, +Date_Claim_Made DATE, +Date_Claim_Settled DATE, +Amount_Claimed INTEGER, +Amount_Settled INTEGER, +Customer_Policy_ID INTEGER NOT NULL, +PRIMARY KEY (Settlement_ID), +FOREIGN KEY (Claim_ID) REFERENCES Claims (Claim_ID) +); +CREATE TABLE Payments ( +Payment_ID INTEGER NOT NULL, +Settlement_ID INTEGER NOT NULL, +Payment_Method_Code VARCHAR(255), +Date_Payment_Made DATE, +Amount_Payment INTEGER, +PRIMARY KEY (Payment_ID), +FOREIGN KEY (Settlement_ID) REFERENCES Settlements (Settlement_ID) +); + + + +INSERT INTO `Settlements` (`Settlement_ID`, `Claim_ID`, `Date_Claim_Made`, `Date_Claim_Settled`, `Amount_Claimed`, `Amount_Settled`, `Customer_Policy_ID`) VALUES (357, 486, '2018-08-07', '2018-01-16', 38543, 1181, 515); +INSERT INTO `Settlements` (`Settlement_ID`, `Claim_ID`, `Date_Claim_Made`, `Date_Claim_Settled`, `Amount_Claimed`, `Amount_Settled`, `Customer_Policy_ID`) VALUES (412, 621, '2017-08-27', '2018-02-04', 57669, 1427, 617); +INSERT INTO `Settlements` (`Settlement_ID`, `Claim_ID`, `Date_Claim_Made`, `Date_Claim_Settled`, `Amount_Claimed`, `Amount_Settled`, `Customer_Policy_ID`) VALUES (476, 801, '2016-09-05', '2018-03-02', 30954, 1805, 943); +INSERT INTO `Settlements` (`Settlement_ID`, `Claim_ID`, `Date_Claim_Made`, `Date_Claim_Settled`, `Amount_Claimed`, `Amount_Settled`, `Customer_Policy_ID`) VALUES (512, 801, '2016-05-18', '2018-02-11', 82506, 1737, 133); +INSERT INTO `Settlements` (`Settlement_ID`, `Claim_ID`, `Date_Claim_Made`, `Date_Claim_Settled`, `Amount_Claimed`, `Amount_Settled`, `Customer_Policy_ID`) VALUES (516, 563, '2017-05-19', '2017-10-06', 37302, 1767, 638); +INSERT INTO `Settlements` (`Settlement_ID`, `Claim_ID`, `Date_Claim_Made`, `Date_Claim_Settled`, `Amount_Claimed`, `Amount_Settled`, `Customer_Policy_ID`) VALUES (527, 801, '2018-11-10', '2018-02-15', 25078, 930, 727); +INSERT INTO `Settlements` (`Settlement_ID`, `Claim_ID`, `Date_Claim_Made`, `Date_Claim_Settled`, `Amount_Claimed`, `Amount_Settled`, `Customer_Policy_ID`) VALUES (558, 569, '2018-05-12', '2017-11-30', 16603, 1516, 536); +INSERT INTO `Settlements` (`Settlement_ID`, `Claim_ID`, `Date_Claim_Made`, `Date_Claim_Settled`, `Amount_Claimed`, `Amount_Settled`, `Customer_Policy_ID`) VALUES (564, 761, '2016-07-04', '2018-02-20', 62680, 1676, 839); +INSERT INTO `Settlements` (`Settlement_ID`, `Claim_ID`, `Date_Claim_Made`, `Date_Claim_Settled`, `Amount_Claimed`, `Amount_Settled`, `Customer_Policy_ID`) VALUES (597, 486, '2017-04-18', '2017-12-24', 4456, 1698, 359); +INSERT INTO `Settlements` (`Settlement_ID`, `Claim_ID`, `Date_Claim_Made`, `Date_Claim_Settled`, `Amount_Claimed`, `Amount_Settled`, `Customer_Policy_ID`) VALUES (616, 957, '2017-07-31', '2018-01-27', 24055, 1262, 590); +INSERT INTO `Settlements` (`Settlement_ID`, `Claim_ID`, `Date_Claim_Made`, `Date_Claim_Settled`, `Amount_Claimed`, `Amount_Settled`, `Customer_Policy_ID`) VALUES (648, 761, '2017-09-22', '2018-02-14', 32079, 1266, 805); +INSERT INTO `Settlements` (`Settlement_ID`, `Claim_ID`, `Date_Claim_Made`, `Date_Claim_Settled`, `Amount_Claimed`, `Amount_Settled`, `Customer_Policy_ID`) VALUES (682, 801, '2017-03-04', '2018-02-20', 56850, 1508, 564); +INSERT INTO `Settlements` (`Settlement_ID`, `Claim_ID`, `Date_Claim_Made`, `Date_Claim_Settled`, `Amount_Claimed`, `Amount_Settled`, `Customer_Policy_ID`) VALUES (756, 571, '2017-04-14', '2017-11-15', 8634, 1293, 448); +INSERT INTO `Settlements` (`Settlement_ID`, `Claim_ID`, `Date_Claim_Made`, `Date_Claim_Settled`, `Amount_Claimed`, `Amount_Settled`, `Customer_Policy_ID`) VALUES (897, 843, '2017-03-29', '2018-02-20', 20569, 1885, 678); +INSERT INTO `Settlements` (`Settlement_ID`, `Claim_ID`, `Date_Claim_Made`, `Date_Claim_Settled`, `Amount_Claimed`, `Amount_Settled`, `Customer_Policy_ID`) VALUES (983, 621, '2016-07-19', '2017-11-04', 3864, 1042, 419); + +INSERT INTO `Payments` (`Payment_ID`, `Settlement_ID`, `Payment_Method_Code`, `Date_Payment_Made`, `Amount_Payment`) VALUES (384, 516, 'MasterCard', '2018-02-16', 241730); +INSERT INTO `Payments` (`Payment_ID`, `Settlement_ID`, `Payment_Method_Code`, `Date_Payment_Made`, `Amount_Payment`) VALUES (435, 476, 'MasterCard', '2017-05-28', 448613); +INSERT INTO `Payments` (`Payment_ID`, `Settlement_ID`, `Payment_Method_Code`, `Date_Payment_Made`, `Amount_Payment`) VALUES (484, 516, 'MasterCard', '2017-06-24', 456098); +INSERT INTO `Payments` (`Payment_ID`, `Settlement_ID`, `Payment_Method_Code`, `Date_Payment_Made`, `Amount_Payment`) VALUES (498, 682, 'Discover Card', '2017-08-06', 38324); +INSERT INTO `Payments` (`Payment_ID`, `Settlement_ID`, `Payment_Method_Code`, `Date_Payment_Made`, `Amount_Payment`) VALUES (542, 597, 'MasterCard', '2018-01-10', 407235); +INSERT INTO `Payments` (`Payment_ID`, `Settlement_ID`, `Payment_Method_Code`, `Date_Payment_Made`, `Amount_Payment`) VALUES (559, 512, 'MasterCard', '2018-02-18', 235893); +INSERT INTO `Payments` (`Payment_ID`, `Settlement_ID`, `Payment_Method_Code`, `Date_Payment_Made`, `Amount_Payment`) VALUES (678, 516, 'Visa', '2017-12-16', 459407); +INSERT INTO `Payments` (`Payment_ID`, `Settlement_ID`, `Payment_Method_Code`, `Date_Payment_Made`, `Amount_Payment`) VALUES (739, 597, 'Discover Card', '2017-10-07', 71246); +INSERT INTO `Payments` (`Payment_ID`, `Settlement_ID`, `Payment_Method_Code`, `Date_Payment_Made`, `Amount_Payment`) VALUES (754, 516, 'Visa', '2018-02-24', 7343); +INSERT INTO `Payments` (`Payment_ID`, `Settlement_ID`, `Payment_Method_Code`, `Date_Payment_Made`, `Amount_Payment`) VALUES (774, 527, 'MasterCard', '2018-01-28', 319142); +INSERT INTO `Payments` (`Payment_ID`, `Settlement_ID`, `Payment_Method_Code`, `Date_Payment_Made`, `Amount_Payment`) VALUES (779, 564, 'Visa', '2017-05-28', 155654); +INSERT INTO `Payments` (`Payment_ID`, `Settlement_ID`, `Payment_Method_Code`, `Date_Payment_Made`, `Amount_Payment`) VALUES (791, 983, 'Visa', '2017-05-03', 172309); +INSERT INTO `Payments` (`Payment_ID`, `Settlement_ID`, `Payment_Method_Code`, `Date_Payment_Made`, `Amount_Payment`) VALUES (886, 516, 'MasterCard', '2017-07-31', 423154); +INSERT INTO `Payments` (`Payment_ID`, `Settlement_ID`, `Payment_Method_Code`, `Date_Payment_Made`, `Amount_Payment`) VALUES (912, 648, 'Discover Card', '2017-05-04', 123255); +INSERT INTO `Payments` (`Payment_ID`, `Settlement_ID`, `Payment_Method_Code`, `Date_Payment_Made`, `Amount_Payment`) VALUES (983, 682, 'American Express', '2018-01-19', 177130); diff --git a/database/journal_committee/journal_committee.sqlite b/database/journal_committee/journal_committee.sqlite new file mode 100644 index 0000000000000000000000000000000000000000..91683974bc244abab17d5b0132f287870b312e27 Binary files /dev/null and b/database/journal_committee/journal_committee.sqlite differ diff --git a/database/journal_committee/schema.sql b/database/journal_committee/schema.sql new file mode 100644 index 0000000000000000000000000000000000000000..8750fe10bd20e5e14930b246fc0de76e3567d647 --- /dev/null +++ b/database/journal_committee/schema.sql @@ -0,0 +1,54 @@ +CREATE TABLE IF NOT EXISTS "journal" ( +"Journal_ID" int, +"Date" text, +"Theme" text, +"Sales" int, +PRIMARY KEY ("Journal_ID") +); +INSERT INTO journal VALUES(1,'September 9, 2001','Miami Dolphins',798); +INSERT INTO journal VALUES(2,'September 23, 2001','at Jacksonville Jaguars',994); +INSERT INTO journal VALUES(4,'October 7, 2001','at Baltimore Ravens',7494); +INSERT INTO journal VALUES(5,'October 14, 2001','Tampa Bay Buccaneers',4798); +INSERT INTO journal VALUES(6,'October 21, 2001','at Detroit Lions',2940); +INSERT INTO journal VALUES(7,'October 29, 2001','at Pittsburgh Steelers',1763); +INSERT INTO journal VALUES(8,'November 4, 2001','Jacksonville Jaguars',1232); +INSERT INTO journal VALUES(9,'November 12, 2001','Baltimore Ravens',6532); +INSERT INTO journal VALUES(10,'November 18, 2001','at Cincinnati Bengals',3421); +INSERT INTO journal VALUES(11,'November 25, 2001','Pittsburgh Steelers',3342); +INSERT INTO journal VALUES(12,'December 2, 2001','at Cleveland Browns',3534); +INSERT INTO journal VALUES(13,'December 9, 2001','at Minnesota Vikings',4271); +INSERT INTO journal VALUES(14,'December 16, 2001','Green Bay Packers',2804); +INSERT INTO journal VALUES(15,'December 22, 2001','at Oakland Raiders',1934); +INSERT INTO journal VALUES(16,'December 30, 2001','Cleveland Browns',3798); +INSERT INTO journal VALUES(17,'January 6, 2002','Cincinnati Bengals',5342); +CREATE TABLE IF NOT EXISTS "editor" ( +"Editor_ID" int, +"Name" text, +"Age" real, +PRIMARY KEY ("Editor_ID") +); +INSERT INTO editor VALUES(1.0,'Kamila Porczyk',34.0); +INSERT INTO editor VALUES(2.0,'Anna Powierza',35.0); +INSERT INTO editor VALUES(3.0,'Marek Siudym',20.999999999999999999); +INSERT INTO editor VALUES(4.0,'Piotr Pręgowski',43.000000000000000001); +INSERT INTO editor VALUES(5.0,'Szymon Wydra',20.0); +INSERT INTO editor VALUES(6.0,'Władysław Grzywna',24.0); +INSERT INTO editor VALUES(7.0,'Mariusz Zalejski',25.0); +INSERT INTO editor VALUES(8.0,'Grażyna Wolszczak',54.0); +INSERT INTO editor VALUES(9.0,'Maria Góralczyk',37.999999999999999999); +CREATE TABLE IF NOT EXISTS "journal_committee" ( +"Editor_ID" int, +"Journal_ID" int, +"Work_Type" text, +PRIMARY KEY ("Editor_ID","Journal_ID"), +FOREIGN KEY ("Editor_ID") REFERENCES `editor`("Editor_ID"), +FOREIGN KEY ("Journal_ID") REFERENCES `journal`("Journal_ID") +); +INSERT INTO journal_committee VALUES(1,13,'Photo'); +INSERT INTO journal_committee VALUES(8,17,'Article'); +INSERT INTO journal_committee VALUES(6,11,'Photo'); +INSERT INTO journal_committee VALUES(4,2,'Article'); +INSERT INTO journal_committee VALUES(3,6,'Title'); +INSERT INTO journal_committee VALUES(9,12,'Photo'); +INSERT INTO journal_committee VALUES(8,4,'Photo'); + diff --git a/database/loan_1/loan_1.sqlite b/database/loan_1/loan_1.sqlite new file mode 100644 index 0000000000000000000000000000000000000000..8220f921865da303f3d63b29f9f753a748098f66 Binary files /dev/null and b/database/loan_1/loan_1.sqlite differ diff --git a/database/loan_1/schema.sql b/database/loan_1/schema.sql new file mode 100644 index 0000000000000000000000000000000000000000..60e2bf9008f0949ea8178cb8ac8f323b5e2b5d40 --- /dev/null +++ b/database/loan_1/schema.sql @@ -0,0 +1,41 @@ +CREATE TABLE bank ( +branch_ID int PRIMARY KEY, +bname varchar(20), +no_of_customers int, +city varchar(10), +state varchar(20)); + + +CREATE TABLE customer ( +cust_ID varchar(3) PRIMARY KEY, +cust_name varchar(20), +acc_type char(1), +acc_bal int, +no_of_loans int, +credit_score int, +branch_ID int, +state varchar(20), +FOREIGN KEY(branch_ID) REFERENCES bank(branch_ID)); + + +CREATE TABLE loan ( +loan_ID varchar(3) PRIMARY KEY, +loan_type varchar(15), +cust_ID varchar(3), +branch_ID varchar(3), +amount int, +FOREIGN KEY(branch_ID) REFERENCES bank(branch_ID), +FOREIGN KEY(Cust_ID) REFERENCES customer(Cust_ID)); + +insert into bank values (1, 'morningside', 203, 'New York City', 'New York'); +insert into bank values (2, 'downtown', 123, 'Salt Lake City', 'Utah'); +insert into bank values (3, 'broadway', 453, 'New York City', 'New York'); +insert into bank values (4, 'high', 367, 'Austin', 'Texas'); + +insert into customer values (1, 'Mary', 'saving', 2000, 2, 30, 2, 'Utah'); +insert into customer values (2, 'Jack', 'checking', 1000, 1, 20, 1, 'Texas'); +insert into customer values (3, 'Owen', 'saving', 800000, 0, 210, 3, 'New York'); + +insert into loan values (1, 'Mortgages', 1, 1, 2050); +insert into loan values (2, 'Auto', 1, 2, 3000); +insert into loan values (3, 'Business', 3, 3, 5000); diff --git a/database/local_govt_and_lot/local_govt_and_lot.sqlite b/database/local_govt_and_lot/local_govt_and_lot.sqlite new file mode 100644 index 0000000000000000000000000000000000000000..c37cc556d7ad6fc66f7748a8dbd4bbd95be01bff Binary files /dev/null and b/database/local_govt_and_lot/local_govt_and_lot.sqlite differ diff --git a/database/local_govt_and_lot/schema.sql b/database/local_govt_and_lot/schema.sql new file mode 100644 index 0000000000000000000000000000000000000000..f1fe47fe29eed9b0f5f9b91dcbd48f8642bed60a --- /dev/null +++ b/database/local_govt_and_lot/schema.sql @@ -0,0 +1,265 @@ +PRAGMA foreign_keys = ON; + +CREATE TABLE Customers ( +customer_id INTEGER NOT NULL, +customer_details VARCHAR(255), +PRIMARY KEY (customer_id) +); +INSERT INTO `Customers` (`customer_id`, `customer_details`) VALUES (4, 'Mr. Raul Prosacco'); +INSERT INTO `Customers` (`customer_id`, `customer_details`) VALUES (5, 'Esteban Senger'); +INSERT INTO `Customers` (`customer_id`, `customer_details`) VALUES (16, 'Tyrique Durgan II'); +INSERT INTO `Customers` (`customer_id`, `customer_details`) VALUES (17, 'Malcolm Farrell'); +INSERT INTO `Customers` (`customer_id`, `customer_details`) VALUES (19, 'Sabryna Moore PhD'); +INSERT INTO `Customers` (`customer_id`, `customer_details`) VALUES (21, 'Dr. Haylie Hilll III'); +INSERT INTO `Customers` (`customer_id`, `customer_details`) VALUES (31, 'Monty Sauer III'); +INSERT INTO `Customers` (`customer_id`, `customer_details`) VALUES (41, 'Jayme Marquardt'); +INSERT INTO `Customers` (`customer_id`, `customer_details`) VALUES (63, 'Vincenza Price'); +INSERT INTO `Customers` (`customer_id`, `customer_details`) VALUES (69, 'Elva Boehm'); +INSERT INTO `Customers` (`customer_id`, `customer_details`) VALUES (76, 'Kyleigh Schuster'); +INSERT INTO `Customers` (`customer_id`, `customer_details`) VALUES (79, 'Oma Smith'); +INSERT INTO `Customers` (`customer_id`, `customer_details`) VALUES (82, 'Bridgette Nitzsche PhD'); +INSERT INTO `Customers` (`customer_id`, `customer_details`) VALUES (87, 'Jeff McCullough MD'); +INSERT INTO `Customers` (`customer_id`, `customer_details`) VALUES (91, 'Mackenzie Hettinger V'); + +CREATE TABLE Properties ( +property_id INTEGER NOT NULL, +property_type_code CHAR(15) NOT NULL, +property_address VARCHAR(255), +other_details VARCHAR(255), +PRIMARY KEY (property_id) +); +INSERT INTO `Properties` (`property_id`, `property_type_code`, `property_address`, `other_details`) VALUES (24, 'apartment', '85456 Annie Lodge Suite 449', 'USA'); +INSERT INTO `Properties` (`property_id`, `property_type_code`, `property_address`, `other_details`) VALUES (107, 'house', '2580 Yundt Plains', 'USA'); +INSERT INTO `Properties` (`property_id`, `property_type_code`, `property_address`, `other_details`) VALUES (108, 'house', '5983 Fleta Throughway', 'USA'); +INSERT INTO `Properties` (`property_id`, `property_type_code`, `property_address`, `other_details`) VALUES (120, 'apartment', '322 Johnston Parkway Suite 422', 'USA'); +INSERT INTO `Properties` (`property_id`, `property_type_code`, `property_address`, `other_details`) VALUES (373, 'apartment', '5384 Sipes Land Apt. 344', 'USA'); +INSERT INTO `Properties` (`property_id`, `property_type_code`, `property_address`, `other_details`) VALUES (445, 'flat', '04164 Raul Stream', 'USA'); +INSERT INTO `Properties` (`property_id`, `property_type_code`, `property_address`, `other_details`) VALUES (586, 'apartment', '54591 Bernard Ridges Suite 864', 'USA'); +INSERT INTO `Properties` (`property_id`, `property_type_code`, `property_address`, `other_details`) VALUES (605, 'house', '7713 Bode Burgs Apt. 113', 'USA'); +INSERT INTO `Properties` (`property_id`, `property_type_code`, `property_address`, `other_details`) VALUES (629, 'house', '830 Jayne Points Suite 290', 'USA'); +INSERT INTO `Properties` (`property_id`, `property_type_code`, `property_address`, `other_details`) VALUES (669, 'house', '824 Kiehn Vista', 'USA'); +INSERT INTO `Properties` (`property_id`, `property_type_code`, `property_address`, `other_details`) VALUES (748, 'apartment', '3927 Spinka Loaf Suite 347', 'USA'); +INSERT INTO `Properties` (`property_id`, `property_type_code`, `property_address`, `other_details`) VALUES (791, 'house', '72659 Frank Locks', 'USA'); +INSERT INTO `Properties` (`property_id`, `property_type_code`, `property_address`, `other_details`) VALUES (849, 'house', '76714 Verla Radial Apt. 306', 'USA'); +INSERT INTO `Properties` (`property_id`, `property_type_code`, `property_address`, `other_details`) VALUES (879, 'flat', '129 Chasity Brook', 'USA'); +INSERT INTO `Properties` (`property_id`, `property_type_code`, `property_address`, `other_details`) VALUES (954, 'flat', '91002 Melvina Haven', 'USA'); + + +CREATE TABLE Residents ( +resident_id INTEGER NOT NULL, +property_id INTEGER NOT NULL, +date_moved_in DATETIME NOT NULL, +date_moved_out DATETIME NOT NULL, +other_details VARCHAR(255), +PRIMARY KEY (resident_id, property_id, date_moved_in), +FOREIGN KEY (property_id) REFERENCES Properties (property_id) +); + +INSERT INTO `Residents` (`resident_id`, `property_id`, `date_moved_in`, `date_moved_out`, `other_details`) VALUES (6, 954, '2017-06-17 15:43:33', '2017-12-18 03:46:04', 'Anderson Batz'); +INSERT INTO `Residents` (`resident_id`, `property_id`, `date_moved_in`, `date_moved_out`, `other_details`) VALUES (10, 605, '2015-03-27 12:00:00', '2018-03-17 07:48:09', 'Miss Naomie Osinski'); +INSERT INTO `Residents` (`resident_id`, `property_id`, `date_moved_in`, `date_moved_out`, `other_details`) VALUES (23, 879, '2015-03-27 12:00:00', '2017-11-14 06:28:48', 'Jess Wyman'); +INSERT INTO `Residents` (`resident_id`, `property_id`, `date_moved_in`, `date_moved_out`, `other_details`) VALUES (28, 629, '2015-03-27 12:00:00', '2017-10-05 02:47:31', 'Miss Alanis Lockman'); +INSERT INTO `Residents` (`resident_id`, `property_id`, `date_moved_in`, `date_moved_out`, `other_details`) VALUES (37, 669, '2015-03-27 12:00:00', '2018-01-30 10:20:59', 'Prof. Arvel Kozey'); +INSERT INTO `Residents` (`resident_id`, `property_id`, `date_moved_in`, `date_moved_out`, `other_details`) VALUES (38, 748, '2015-03-27 12:00:00', '2017-12-30 23:55:10', 'Chaim Swaniawski'); +INSERT INTO `Residents` (`resident_id`, `property_id`, `date_moved_in`, `date_moved_out`, `other_details`) VALUES (43, 108, '2015-03-27 12:00:00', '2018-02-22 06:24:15', 'Elroy Schuster'); +INSERT INTO `Residents` (`resident_id`, `property_id`, `date_moved_in`, `date_moved_out`, `other_details`) VALUES (45, 954, '2015-03-27 12:00:00', '2017-10-14 10:23:42', 'Prof. Nasir Hoppe'); +INSERT INTO `Residents` (`resident_id`, `property_id`, `date_moved_in`, `date_moved_out`, `other_details`) VALUES (47, 669, '2015-03-27 12:00:00', '2017-10-10 02:25:53', 'Tiffany Jaskolski'); +INSERT INTO `Residents` (`resident_id`, `property_id`, `date_moved_in`, `date_moved_out`, `other_details`) VALUES (58, 107, '2015-03-27 12:00:00', '2017-11-29 21:24:08', 'Tomasa Hoeger'); +INSERT INTO `Residents` (`resident_id`, `property_id`, `date_moved_in`, `date_moved_out`, `other_details`) VALUES (67, 120, '2016-09-27 12:00:00', '2017-10-23 16:40:19', 'Terrill Bernhard'); +INSERT INTO `Residents` (`resident_id`, `property_id`, `date_moved_in`, `date_moved_out`, `other_details`) VALUES (83, 445, '2016-09-27 12:00:00', '2018-01-19 01:35:51', 'Loy Walter'); +INSERT INTO `Residents` (`resident_id`, `property_id`, `date_moved_in`, `date_moved_out`, `other_details`) VALUES (87, 748, '2016-09-27 12:00:00', '2018-01-28 13:19:54', 'Mrs. Raphaelle Fisher'); +INSERT INTO `Residents` (`resident_id`, `property_id`, `date_moved_in`, `date_moved_out`, `other_details`) VALUES (88, 107, '2016-09-27 12:00:00', '2018-02-03 11:30:20', 'Jacques Glover II'); +INSERT INTO `Residents` (`resident_id`, `property_id`, `date_moved_in`, `date_moved_out`, `other_details`) VALUES (90, 373, '2016-09-27 12:00:00', '2017-11-19 03:11:44', 'Cassie Johnson'); + + +CREATE TABLE Organizations ( +organization_id INTEGER NOT NULL, +parent_organization_id INTEGER, +organization_details VARCHAR(255), +PRIMARY KEY (organization_id) +); + +INSERT INTO `Organizations` (`organization_id`, `parent_organization_id`, `organization_details`) VALUES (7, 7, 'Reinger, Hudson and Nolan Group'); +INSERT INTO `Organizations` (`organization_id`, `parent_organization_id`, `organization_details`) VALUES (8, 7, 'Denesik and Sons Party'); +INSERT INTO `Organizations` (`organization_id`, `parent_organization_id`, `organization_details`) VALUES (10, 8, 'Robel-Schulist Group'); + + +CREATE TABLE Services ( +service_id INTEGER NOT NULL, +organization_id INTEGER NOT NULL, +service_type_code CHAR(15) NOT NULL, +service_details VARCHAR(255), +PRIMARY KEY (service_id), +FOREIGN KEY (organization_id) REFERENCES Organizations (organization_id) +); +INSERT INTO `Services` (`service_id`, `organization_id`, `service_type_code`, `service_details`) VALUES (10, 10, 'Cleanning', 'Satisfied'); +INSERT INTO `Services` (`service_id`, `organization_id`, `service_type_code`, `service_details`) VALUES (11, 7, 'Check', 'Satisfied'); +INSERT INTO `Services` (`service_id`, `organization_id`, `service_type_code`, `service_details`) VALUES (13, 8, 'Moving Out', 'Satisfied'); +INSERT INTO `Services` (`service_id`, `organization_id`, `service_type_code`, `service_details`) VALUES (22, 10, 'Pay bills', 'Satisfied'); +INSERT INTO `Services` (`service_id`, `organization_id`, `service_type_code`, `service_details`) VALUES (29, 8, 'Moving Out', 'Satisfied'); +INSERT INTO `Services` (`service_id`, `organization_id`, `service_type_code`, `service_details`) VALUES (31, 7, 'Pay bills', 'Satisfied'); +INSERT INTO `Services` (`service_id`, `organization_id`, `service_type_code`, `service_details`) VALUES (36, 8, 'Check', 'Satisfied'); +INSERT INTO `Services` (`service_id`, `organization_id`, `service_type_code`, `service_details`) VALUES (41, 10, 'Check', 'Satisfied'); +INSERT INTO `Services` (`service_id`, `organization_id`, `service_type_code`, `service_details`) VALUES (47, 8, 'Pay bills', 'Unsatisfied'); +INSERT INTO `Services` (`service_id`, `organization_id`, `service_type_code`, `service_details`) VALUES (49, 8, 'Moving Out', 'Satisfied'); +INSERT INTO `Services` (`service_id`, `organization_id`, `service_type_code`, `service_details`) VALUES (52, 8, 'Pay bills', 'Unsatisfied'); +INSERT INTO `Services` (`service_id`, `organization_id`, `service_type_code`, `service_details`) VALUES (65, 8, 'Cleanning', 'Unsatisfied'); +INSERT INTO `Services` (`service_id`, `organization_id`, `service_type_code`, `service_details`) VALUES (66, 8, 'Pay bills', 'Unsatisfied'); +INSERT INTO `Services` (`service_id`, `organization_id`, `service_type_code`, `service_details`) VALUES (77, 7, 'Pay bills', 'Unsatisfied'); +INSERT INTO `Services` (`service_id`, `organization_id`, `service_type_code`, `service_details`) VALUES (87, 8, 'Pay bills', 'Unsatisfied'); + + + +CREATE TABLE Residents_Services ( +resident_id INTEGER NOT NULL, +service_id INTEGER NOT NULL, +date_moved_in DATETIME, +property_id INTEGER, +date_requested DATETIME, +date_provided DATETIME, +other_details VARCHAR(255), +PRIMARY KEY (resident_id, service_id), +FOREIGN KEY (service_id) REFERENCES Services (service_id), +FOREIGN KEY (resident_id, property_id, date_moved_in) REFERENCES Residents (resident_id,property_id,date_moved_in) +); + +INSERT INTO `Residents_Services` (`resident_id`, `service_id`, `date_moved_in`, `property_id`, `date_requested`, `date_provided`, `other_details`) VALUES (6, 49, '2017-06-17 15:43:33', 954, '2016-07-25 01:32:23', '2018-02-26 00:27:11', 'Satisfied'); +INSERT INTO `Residents_Services` (`resident_id`, `service_id`, `date_moved_in`, `property_id`, `date_requested`, `date_provided`, `other_details`) VALUES (23, 41, '2015-03-27 12:00:00', 879, '2016-10-10 21:42:21', '2017-08-21 06:23:06', 'Unsatisfied'); +INSERT INTO `Residents_Services` (`resident_id`, `service_id`, `date_moved_in`, `property_id`, `date_requested`, `date_provided`, `other_details`) VALUES (28, 11, '2015-03-27 12:00:00', 629, '2017-07-14 19:03:47', '2017-08-28 03:43:56', 'Unsatisfied'); +INSERT INTO `Residents_Services` (`resident_id`, `service_id`, `date_moved_in`, `property_id`, `date_requested`, `date_provided`, `other_details`) VALUES (43, 10, '2015-03-27 12:00:00', 108, '2016-09-20 22:50:26', '2017-10-17 03:30:08', 'Unsatisfied'); +INSERT INTO `Residents_Services` (`resident_id`, `service_id`, `date_moved_in`, `property_id`, `date_requested`, `date_provided`, `other_details`) VALUES (45, 49, '2015-03-27 12:00:00', 954, '2017-06-14 14:04:50', '2017-08-14 08:06:43', 'Unsatisfied'); +INSERT INTO `Residents_Services` (`resident_id`, `service_id`, `date_moved_in`, `property_id`, `date_requested`, `date_provided`, `other_details`) VALUES (47, 65, '2015-03-27 12:00:00', 669, '2016-12-16 06:08:10', '2018-01-30 09:58:57', 'Unsatisfied'); +INSERT INTO `Residents_Services` (`resident_id`, `service_id`, `date_moved_in`, `property_id`, `date_requested`, `date_provided`, `other_details`) VALUES (67, 87, '2016-09-27 12:00:00', 120, '2016-04-27 14:51:07', '2017-11-13 10:28:34', 'Unsatisfied'); +INSERT INTO `Residents_Services` (`resident_id`, `service_id`, `date_moved_in`, `property_id`, `date_requested`, `date_provided`, `other_details`) VALUES (83, 65, '2016-09-27 12:00:00', 445, '2016-11-27 15:37:02', '2017-09-10 00:48:58', 'Unsatisfied'); +INSERT INTO `Residents_Services` (`resident_id`, `service_id`, `date_moved_in`, `property_id`, `date_requested`, `date_provided`, `other_details`) VALUES (87, 29, '2016-09-27 12:00:00', 748, '2016-10-13 04:15:54', '2017-10-29 13:12:29', 'Unsatisfied'); +INSERT INTO `Residents_Services` (`resident_id`, `service_id`, `date_moved_in`, `property_id`, `date_requested`, `date_provided`, `other_details`) VALUES (90, 36, '2016-09-27 12:00:00', 373, '2016-04-13 05:09:24', '2017-10-28 12:36:43', 'Unsatisfied'); +INSERT INTO `Residents_Services` (`resident_id`, `service_id`, `date_moved_in`, `property_id`, `date_requested`, `date_provided`, `other_details`) VALUES (88, 11, '2016-09-27 12:00:00', 107, '2016-06-18 20:09:24', '2017-08-08 11:24:50', 'Unsatisfied'); + + +CREATE TABLE Things ( +thing_id INTEGER NOT NULL, +organization_id INTEGER NOT NULL, +Type_of_Thing_Code CHAR(15) NOT NULL, +service_type_code CHAR(10) NOT NULL, +service_details VARCHAR(255), +PRIMARY KEY (thing_id), +FOREIGN KEY (organization_id) REFERENCES Organizations (organization_id) +); +INSERT INTO `Things` (`thing_id`, `organization_id`, `Type_of_Thing_Code`, `service_type_code`, `service_details`) VALUES (1, 8, 'Electronics', 'Check', 'Unsatisfied'); +INSERT INTO `Things` (`thing_id`, `organization_id`, `Type_of_Thing_Code`, `service_type_code`, `service_details`) VALUES (2, 8, 'Electronics', 'Cleanning', 'Satisfied'); +INSERT INTO `Things` (`thing_id`, `organization_id`, `Type_of_Thing_Code`, `service_type_code`, `service_details`) VALUES (10, 8, 'Commen', 'Check', 'Satisfied'); +INSERT INTO `Things` (`thing_id`, `organization_id`, `Type_of_Thing_Code`, `service_type_code`, `service_details`) VALUES (14, 10, 'Furniture', 'Cleanning', 'Satisfied'); +INSERT INTO `Things` (`thing_id`, `organization_id`, `Type_of_Thing_Code`, `service_type_code`, `service_details`) VALUES (26, 8, 'Electronics', 'Cleanning', 'Unsatisfied'); +INSERT INTO `Things` (`thing_id`, `organization_id`, `Type_of_Thing_Code`, `service_type_code`, `service_details`) VALUES (35, 7, 'Electronics', 'Cleanning', 'Satisfied'); +INSERT INTO `Things` (`thing_id`, `organization_id`, `Type_of_Thing_Code`, `service_type_code`, `service_details`) VALUES (45, 8, 'Commen', 'Check', 'Satisfied'); +INSERT INTO `Things` (`thing_id`, `organization_id`, `Type_of_Thing_Code`, `service_type_code`, `service_details`) VALUES (46, 8, 'Commen', 'Check', 'Satisfied'); +INSERT INTO `Things` (`thing_id`, `organization_id`, `Type_of_Thing_Code`, `service_type_code`, `service_details`) VALUES (47, 10, 'Commen', 'Cleanning', 'Satisfied'); +INSERT INTO `Things` (`thing_id`, `organization_id`, `Type_of_Thing_Code`, `service_type_code`, `service_details`) VALUES (58, 8, 'Electronics', 'Check', 'Satisfied'); +INSERT INTO `Things` (`thing_id`, `organization_id`, `Type_of_Thing_Code`, `service_type_code`, `service_details`) VALUES (68, 10, 'Commen', 'Cleanning', 'Unsatisfied'); +INSERT INTO `Things` (`thing_id`, `organization_id`, `Type_of_Thing_Code`, `service_type_code`, `service_details`) VALUES (80, 8, 'Furniture', 'Check', 'Unsatisfied'); +INSERT INTO `Things` (`thing_id`, `organization_id`, `Type_of_Thing_Code`, `service_type_code`, `service_details`) VALUES (84, 8, 'Commen', 'Check', 'Unsatisfied'); +INSERT INTO `Things` (`thing_id`, `organization_id`, `Type_of_Thing_Code`, `service_type_code`, `service_details`) VALUES (85, 8, 'Commen', 'Cleanning', 'Unsatisfied'); +INSERT INTO `Things` (`thing_id`, `organization_id`, `Type_of_Thing_Code`, `service_type_code`, `service_details`) VALUES (92, 7, 'Commen', 'Check', 'Unsatisfied'); + + +CREATE TABLE Customer_Events ( +Customer_Event_ID INTEGER NOT NULL, +customer_id INTEGER, +date_moved_in DATETIME, +property_id INTEGER, +resident_id INTEGER, +thing_id INTEGER NOT NULL, +PRIMARY KEY (Customer_Event_ID), +FOREIGN KEY (thing_id) REFERENCES Things (thing_id), +FOREIGN KEY (customer_id) REFERENCES Customers (customer_id), +FOREIGN KEY (resident_id, property_id, date_moved_in) REFERENCES Residents (resident_id,property_id,date_moved_in) +); +INSERT INTO `Customer_Events` (`Customer_Event_ID`, `customer_id`, `date_moved_in`, `property_id`, `resident_id`, `thing_id`) VALUES (70, 19, '2015-03-27 12:00:00', 605, 10, 1); +INSERT INTO `Customer_Events` (`Customer_Event_ID`, `customer_id`, `date_moved_in`, `property_id`, `resident_id`, `thing_id`) VALUES (160, 5, '2015-03-27 12:00:00', 879, 23, 80); +INSERT INTO `Customer_Events` (`Customer_Event_ID`, `customer_id`, `date_moved_in`, `property_id`, `resident_id`, `thing_id`) VALUES (166, 16, '2015-03-27 12:00:00', 629, 28, 14); +INSERT INTO `Customer_Events` (`Customer_Event_ID`, `customer_id`, `date_moved_in`, `property_id`, `resident_id`, `thing_id`) VALUES (216, 79, '2015-03-27 12:00:00', 669, 37, 46); +INSERT INTO `Customer_Events` (`Customer_Event_ID`, `customer_id`, `date_moved_in`, `property_id`, `resident_id`, `thing_id`) VALUES (226, 19, '2015-03-27 12:00:00', 748, 38, 80); +INSERT INTO `Customer_Events` (`Customer_Event_ID`, `customer_id`, `date_moved_in`, `property_id`, `resident_id`, `thing_id`) VALUES (256, 79, '2015-03-27 12:00:00', 108, 43, 2); +INSERT INTO `Customer_Events` (`Customer_Event_ID`, `customer_id`, `date_moved_in`, `property_id`, `resident_id`, `thing_id`) VALUES (428, 63, '2015-03-27 12:00:00', 954, 45, 68); +INSERT INTO `Customer_Events` (`Customer_Event_ID`, `customer_id`, `date_moved_in`, `property_id`, `resident_id`, `thing_id`) VALUES (530, 4, '2015-03-27 12:00:00', 669, 47, 10); +INSERT INTO `Customer_Events` (`Customer_Event_ID`, `customer_id`, `date_moved_in`, `property_id`, `resident_id`, `thing_id`) VALUES (559, 19, '2015-03-27 12:00:00', 107, 58, 1); +INSERT INTO `Customer_Events` (`Customer_Event_ID`, `customer_id`, `date_moved_in`, `property_id`, `resident_id`, `thing_id`) VALUES (591, 91, '2016-09-27 12:00:00', 120, 67, 10); +INSERT INTO `Customer_Events` (`Customer_Event_ID`, `customer_id`, `date_moved_in`, `property_id`, `resident_id`, `thing_id`) VALUES (606, 31, '2016-09-27 12:00:00', 445, 83, 85); +INSERT INTO `Customer_Events` (`Customer_Event_ID`, `customer_id`, `date_moved_in`, `property_id`, `resident_id`, `thing_id`) VALUES (627, 91, '2016-09-27 12:00:00', 748, 87, 92); +INSERT INTO `Customer_Events` (`Customer_Event_ID`, `customer_id`, `date_moved_in`, `property_id`, `resident_id`, `thing_id`) VALUES (817, 19, '2016-09-27 12:00:00', 107, 88, 10); + + +CREATE TABLE Customer_Event_Notes ( +Customer_Event_Note_ID INTEGER NOT NULL, +Customer_Event_ID INTEGER NOT NULL, +service_type_code CHAR(15) NOT NULL, +resident_id INTEGER NOT NULL, +property_id INTEGER NOT NULL, +date_moved_in DATETIME NOT NULL, +PRIMARY KEY (Customer_Event_Note_ID), +FOREIGN KEY (Customer_Event_ID) REFERENCES Customer_Events (Customer_Event_ID) +); + +INSERT INTO `Customer_Event_Notes` (`Customer_Event_Note_ID`, `Customer_Event_ID`, `service_type_code`, `resident_id`, `property_id`, `date_moved_in`) VALUES (18, 70, 'Cleanning', 58, 107, '2016-08-04 01:06:05'); +INSERT INTO `Customer_Event_Notes` (`Customer_Event_Note_ID`, `Customer_Event_ID`, `service_type_code`, `resident_id`, `property_id`, `date_moved_in`) VALUES (21, 428, 'Check', 87, 445, '2016-12-11 01:05:14'); +INSERT INTO `Customer_Event_Notes` (`Customer_Event_Note_ID`, `Customer_Event_ID`, `service_type_code`, `resident_id`, `property_id`, `date_moved_in`) VALUES (32, 70, 'Check', 37, 669, '2016-07-10 04:09:56'); +INSERT INTO `Customer_Event_Notes` (`Customer_Event_Note_ID`, `Customer_Event_ID`, `service_type_code`, `resident_id`, `property_id`, `date_moved_in`) VALUES (46, 627, 'Cleanning', 87, 373, '2016-05-24 02:56:54'); +INSERT INTO `Customer_Event_Notes` (`Customer_Event_Note_ID`, `Customer_Event_ID`, `service_type_code`, `resident_id`, `property_id`, `date_moved_in`) VALUES (49, 559, 'Check', 45, 849, '2016-08-08 07:58:26'); +INSERT INTO `Customer_Event_Notes` (`Customer_Event_Note_ID`, `Customer_Event_ID`, `service_type_code`, `resident_id`, `property_id`, `date_moved_in`) VALUES (50, 606, 'Check', 45, 849, '2017-04-25 09:08:14'); +INSERT INTO `Customer_Event_Notes` (`Customer_Event_Note_ID`, `Customer_Event_ID`, `service_type_code`, `resident_id`, `property_id`, `date_moved_in`) VALUES (55, 817, 'Cleanning', 43, 120, '2017-06-26 13:24:36'); +INSERT INTO `Customer_Event_Notes` (`Customer_Event_Note_ID`, `Customer_Event_ID`, `service_type_code`, `resident_id`, `property_id`, `date_moved_in`) VALUES (56, 216, 'Check', 88, 748, '2016-11-04 12:46:21'); +INSERT INTO `Customer_Event_Notes` (`Customer_Event_Note_ID`, `Customer_Event_ID`, `service_type_code`, `resident_id`, `property_id`, `date_moved_in`) VALUES (59, 591, 'Cleanning', 28, 605, '2016-05-14 15:58:33'); +INSERT INTO `Customer_Event_Notes` (`Customer_Event_Note_ID`, `Customer_Event_ID`, `service_type_code`, `resident_id`, `property_id`, `date_moved_in`) VALUES (65, 591, 'Cleanning', 28, 879, '2017-04-12 19:47:08'); +INSERT INTO `Customer_Event_Notes` (`Customer_Event_Note_ID`, `Customer_Event_ID`, `service_type_code`, `resident_id`, `property_id`, `date_moved_in`) VALUES (75, 70, 'Check', 43, 120, '2016-10-28 01:43:42'); +INSERT INTO `Customer_Event_Notes` (`Customer_Event_Note_ID`, `Customer_Event_ID`, `service_type_code`, `resident_id`, `property_id`, `date_moved_in`) VALUES (88, 606, 'Cleanning', 67, 791, '2016-11-23 05:53:40'); +INSERT INTO `Customer_Event_Notes` (`Customer_Event_Note_ID`, `Customer_Event_ID`, `service_type_code`, `resident_id`, `property_id`, `date_moved_in`) VALUES (91, 817, 'Cleanning', 43, 120, '2017-04-28 10:17:13'); + + +CREATE TABLE Timed_Status_of_Things ( +thing_id INTEGER NOT NULL, +Date_and_Date DATETIME NOT NULL, +Status_of_Thing_Code CHAR(15) NOT NULL, +PRIMARY KEY (thing_id, Date_and_Date, Status_of_Thing_Code), +FOREIGN KEY (thing_id) REFERENCES Things (thing_id) +); +CREATE TABLE Timed_Locations_of_Things ( +thing_id INTEGER NOT NULL, +Date_and_Time DATETIME NOT NULL, +Location_Code CHAR(15) NOT NULL, +PRIMARY KEY (thing_id, Date_and_Time, Location_Code), +FOREIGN KEY (thing_id) REFERENCES Things (thing_id)); + + +INSERT INTO `Timed_Locations_of_Things` (`thing_id`, `Date_and_Time`, `Location_Code`) VALUES (2, '2016-10-12 12:03:07', '064 Charles Mou'); +INSERT INTO `Timed_Locations_of_Things` (`thing_id`, `Date_and_Time`, `Location_Code`) VALUES (10, '2016-12-29 00:39:19', '288 Lang Ferry'); +INSERT INTO `Timed_Locations_of_Things` (`thing_id`, `Date_and_Time`, `Location_Code`) VALUES (10, '2017-10-21 04:21:54', '854 Keeling Sho'); +INSERT INTO `Timed_Locations_of_Things` (`thing_id`, `Date_and_Time`, `Location_Code`) VALUES (14, '2017-03-19 19:28:13', '1316 Morgan Spr'); +INSERT INTO `Timed_Locations_of_Things` (`thing_id`, `Date_and_Time`, `Location_Code`) VALUES (26, '2016-04-26 16:34:09', '192 Kub Rapids'); +INSERT INTO `Timed_Locations_of_Things` (`thing_id`, `Date_and_Time`, `Location_Code`) VALUES (45, '2017-04-19 16:41:03', '4667 Kellen Fie'); +INSERT INTO `Timed_Locations_of_Things` (`thing_id`, `Date_and_Time`, `Location_Code`) VALUES (45, '2017-04-22 00:37:48', '1313 Sawayn Riv'); +INSERT INTO `Timed_Locations_of_Things` (`thing_id`, `Date_and_Time`, `Location_Code`) VALUES (58, '2016-08-04 00:25:55', '94425 Nellie Kn'); +INSERT INTO `Timed_Locations_of_Things` (`thing_id`, `Date_and_Time`, `Location_Code`) VALUES (68, '2017-03-06 01:56:27', '4223 Rae Fork S'); +INSERT INTO `Timed_Locations_of_Things` (`thing_id`, `Date_and_Time`, `Location_Code`) VALUES (68, '2017-08-31 13:54:13', '9628 Bins Islan'); +INSERT INTO `Timed_Locations_of_Things` (`thing_id`, `Date_and_Time`, `Location_Code`) VALUES (85, '2016-11-07 09:43:05', '2677 Runolfsson'); +INSERT INTO `Timed_Locations_of_Things` (`thing_id`, `Date_and_Time`, `Location_Code`) VALUES (85, '2017-01-02 23:26:47', '26281 Holden Pa'); +INSERT INTO `Timed_Locations_of_Things` (`thing_id`, `Date_and_Time`, `Location_Code`) VALUES (85, '2017-11-26 00:13:44', '1537 Schmeler G'); +INSERT INTO `Timed_Locations_of_Things` (`thing_id`, `Date_and_Time`, `Location_Code`) VALUES (92, '2017-03-19 13:57:49', '113 Geo Glens A'); +INSERT INTO `Timed_Locations_of_Things` (`thing_id`, `Date_and_Time`, `Location_Code`) VALUES (92, '2017-10-21 21:35:37', '9569 Tanner Inl'); +INSERT INTO `Timed_Status_of_Things` (`thing_id`, `Date_and_Date`, `Status_of_Thing_Code`) VALUES (2, '2016-05-27 23:33:34', 'Open'); +INSERT INTO `Timed_Status_of_Things` (`thing_id`, `Date_and_Date`, `Status_of_Thing_Code`) VALUES (2, '2016-07-17 08:35:27', 'Close'); +INSERT INTO `Timed_Status_of_Things` (`thing_id`, `Date_and_Date`, `Status_of_Thing_Code`) VALUES (2, '2017-06-19 02:59:21', 'In Progress'); +INSERT INTO `Timed_Status_of_Things` (`thing_id`, `Date_and_Date`, `Status_of_Thing_Code`) VALUES (10, '2016-09-06 16:31:13', 'Close'); +INSERT INTO `Timed_Status_of_Things` (`thing_id`, `Date_and_Date`, `Status_of_Thing_Code`) VALUES (10, '2016-11-14 17:30:51', 'Open'); +INSERT INTO `Timed_Status_of_Things` (`thing_id`, `Date_and_Date`, `Status_of_Thing_Code`) VALUES (14, '2017-07-03 02:22:12', 'In Progress'); +INSERT INTO `Timed_Status_of_Things` (`thing_id`, `Date_and_Date`, `Status_of_Thing_Code`) VALUES (26, '2016-04-10 06:32:15', 'Close'); +INSERT INTO `Timed_Status_of_Things` (`thing_id`, `Date_and_Date`, `Status_of_Thing_Code`) VALUES (26, '2017-08-05 02:10:02', 'In Progress'); +INSERT INTO `Timed_Status_of_Things` (`thing_id`, `Date_and_Date`, `Status_of_Thing_Code`) VALUES (26, '2018-02-04 02:44:39', 'Close'); +INSERT INTO `Timed_Status_of_Things` (`thing_id`, `Date_and_Date`, `Status_of_Thing_Code`) VALUES (35, '2017-11-27 06:32:46', 'In Progress'); +INSERT INTO `Timed_Status_of_Things` (`thing_id`, `Date_and_Date`, `Status_of_Thing_Code`) VALUES (47, '2016-04-02 00:57:17', 'In Progress'); +INSERT INTO `Timed_Status_of_Things` (`thing_id`, `Date_and_Date`, `Status_of_Thing_Code`) VALUES (47, '2016-12-02 11:08:16', 'Close'); +INSERT INTO `Timed_Status_of_Things` (`thing_id`, `Date_and_Date`, `Status_of_Thing_Code`) VALUES (58, '2017-05-31 00:52:33', 'In Progress'); +INSERT INTO `Timed_Status_of_Things` (`thing_id`, `Date_and_Date`, `Status_of_Thing_Code`) VALUES (80, '2016-10-08 08:02:57', 'Open'); +INSERT INTO `Timed_Status_of_Things` (`thing_id`, `Date_and_Date`, `Status_of_Thing_Code`) VALUES (84, '2017-12-28 16:05:08', 'Open'); +INSERT INTO `Timed_Status_of_Things` (`thing_id`, `Date_and_Date`, `Status_of_Thing_Code`) VALUES (85, '2017-03-24 12:12:46', 'Close'); +INSERT INTO `Timed_Status_of_Things` (`thing_id`, `Date_and_Date`, `Status_of_Thing_Code`) VALUES (92, '2016-11-24 12:44:00', 'In Progress'); +INSERT INTO `Timed_Status_of_Things` (`thing_id`, `Date_and_Date`, `Status_of_Thing_Code`) VALUES (92, '2017-09-27 01:35:51', 'Close'); diff --git a/database/local_govt_in_alabama/local_govt_in_alabama.sqlite b/database/local_govt_in_alabama/local_govt_in_alabama.sqlite new file mode 100644 index 0000000000000000000000000000000000000000..4bd32d1a57a8efa865883c2ae9139967ad86c8e3 Binary files /dev/null and b/database/local_govt_in_alabama/local_govt_in_alabama.sqlite differ diff --git a/database/local_govt_in_alabama/schema.sql b/database/local_govt_in_alabama/schema.sql new file mode 100644 index 0000000000000000000000000000000000000000..88321d134f9df1c0abcb4f3107314908cf60392d --- /dev/null +++ b/database/local_govt_in_alabama/schema.sql @@ -0,0 +1,86 @@ +PRAGMA foreign_keys = ON; + + +CREATE TABLE Services ( +Service_ID INTEGER NOT NULL, +Service_Type_Code CHAR(15) NOT NULL, +PRIMARY KEY (Service_ID) +); +INSERT INTO `Services` (`Service_ID`, `Service_Type_Code`) VALUES (2, 'Marriage'); +INSERT INTO `Services` (`Service_ID`, `Service_Type_Code`) VALUES (5, 'Death Proof'); +INSERT INTO `Services` (`Service_ID`, `Service_Type_Code`) VALUES (6, 'Birth Proof'); +INSERT INTO `Services` (`Service_ID`, `Service_Type_Code`) VALUES (8, 'Property Change'); + + +CREATE TABLE Participants ( +Participant_ID INTEGER NOT NULL, +Participant_Type_Code CHAR(15) NOT NULL, +Participant_Details VARCHAR(255), +PRIMARY KEY (Participant_ID) +); +INSERT INTO `Participants` (`Participant_ID`, `Participant_Type_Code`, `Participant_Details`) VALUES (9, 'Organizer', 'Karlee Batz'); +INSERT INTO `Participants` (`Participant_ID`, `Participant_Type_Code`, `Participant_Details`) VALUES (26, 'Organizer', 'Vilma Schinner'); +INSERT INTO `Participants` (`Participant_ID`, `Participant_Type_Code`, `Participant_Details`) VALUES (28, 'Organizer', 'Lupe Deckow'); +INSERT INTO `Participants` (`Participant_ID`, `Participant_Type_Code`, `Participant_Details`) VALUES (36, 'Organizer', 'Kenyatta Kuhn'); +INSERT INTO `Participants` (`Participant_ID`, `Participant_Type_Code`, `Participant_Details`) VALUES (37, 'Participant', 'Miss Kaci Lebsack'); +INSERT INTO `Participants` (`Participant_ID`, `Participant_Type_Code`, `Participant_Details`) VALUES (38, 'Organizer', 'Macy Mayer DDS'); +INSERT INTO `Participants` (`Participant_ID`, `Participant_Type_Code`, `Participant_Details`) VALUES (60, 'Participant', 'Dewitt Walter'); +INSERT INTO `Participants` (`Participant_ID`, `Participant_Type_Code`, `Participant_Details`) VALUES (63, 'Participant', 'Prof. Michelle Maggio Jr.'); +INSERT INTO `Participants` (`Participant_ID`, `Participant_Type_Code`, `Participant_Details`) VALUES (64, 'Participant', 'Dr. Jaydon Renner'); +INSERT INTO `Participants` (`Participant_ID`, `Participant_Type_Code`, `Participant_Details`) VALUES (66, 'Participant', 'Justyn Lebsack'); +INSERT INTO `Participants` (`Participant_ID`, `Participant_Type_Code`, `Participant_Details`) VALUES (75, 'Participant', 'Berniece Weimann'); +INSERT INTO `Participants` (`Participant_ID`, `Participant_Type_Code`, `Participant_Details`) VALUES (86, 'Organizer', 'Neil Blick'); +INSERT INTO `Participants` (`Participant_ID`, `Participant_Type_Code`, `Participant_Details`) VALUES (90, 'Participant', 'Dedrick Ebert'); +INSERT INTO `Participants` (`Participant_ID`, `Participant_Type_Code`, `Participant_Details`) VALUES (96, 'Organizer', 'Miss Joyce Cremin'); +INSERT INTO `Participants` (`Participant_ID`, `Participant_Type_Code`, `Participant_Details`) VALUES (98, 'Participant', 'Dr. Kris Deckow'); + + +CREATE TABLE Events ( +Event_ID INTEGER NOT NULL, +Service_ID INTEGER NOT NULL, +Event_Details VARCHAR(255), +PRIMARY KEY (Event_ID), +FOREIGN KEY (Service_ID) REFERENCES Services (Service_ID) +); +INSERT INTO `Events` (`Event_ID`, `Service_ID`, `Event_Details`) VALUES (3, 5, 'Success'); +INSERT INTO `Events` (`Event_ID`, `Service_ID`, `Event_Details`) VALUES (8, 8, 'Success'); +INSERT INTO `Events` (`Event_ID`, `Service_ID`, `Event_Details`) VALUES (13, 8, 'Fail'); +INSERT INTO `Events` (`Event_ID`, `Service_ID`, `Event_Details`) VALUES (16, 2, 'Fail'); +INSERT INTO `Events` (`Event_ID`, `Service_ID`, `Event_Details`) VALUES (17, 5, 'Fail'); +INSERT INTO `Events` (`Event_ID`, `Service_ID`, `Event_Details`) VALUES (38, 6, 'Fail'); +INSERT INTO `Events` (`Event_ID`, `Service_ID`, `Event_Details`) VALUES (40, 6, 'Fail'); +INSERT INTO `Events` (`Event_ID`, `Service_ID`, `Event_Details`) VALUES (43, 8, 'Fail'); +INSERT INTO `Events` (`Event_ID`, `Service_ID`, `Event_Details`) VALUES (48, 8, 'Fail'); +INSERT INTO `Events` (`Event_ID`, `Service_ID`, `Event_Details`) VALUES (57, 5, 'Success'); +INSERT INTO `Events` (`Event_ID`, `Service_ID`, `Event_Details`) VALUES (60, 2, 'Fail'); +INSERT INTO `Events` (`Event_ID`, `Service_ID`, `Event_Details`) VALUES (74, 2, 'Success'); +INSERT INTO `Events` (`Event_ID`, `Service_ID`, `Event_Details`) VALUES (80, 5, 'Success'); +INSERT INTO `Events` (`Event_ID`, `Service_ID`, `Event_Details`) VALUES (95, 2, 'Fail'); +INSERT INTO `Events` (`Event_ID`, `Service_ID`, `Event_Details`) VALUES (96, 2, 'Success'); + + +CREATE TABLE Participants_in_Events ( +Event_ID INTEGER NOT NULL, +Participant_ID INTEGER NOT NULL, +PRIMARY KEY (Event_ID, Participant_ID), +FOREIGN KEY (Participant_ID) REFERENCES Participants (Participant_ID), +FOREIGN KEY (Event_ID) REFERENCES Events (Event_ID) +); +INSERT INTO `Participants_in_Events` (`Event_ID`, `Participant_ID`) VALUES (3, 26); +INSERT INTO `Participants_in_Events` (`Event_ID`, `Participant_ID`) VALUES (3, 66); +INSERT INTO `Participants_in_Events` (`Event_ID`, `Participant_ID`) VALUES (8, 86); +INSERT INTO `Participants_in_Events` (`Event_ID`, `Participant_ID`) VALUES (13, 64); +INSERT INTO `Participants_in_Events` (`Event_ID`, `Participant_ID`) VALUES (13, 90); +INSERT INTO `Participants_in_Events` (`Event_ID`, `Participant_ID`) VALUES (16, 60); +INSERT INTO `Participants_in_Events` (`Event_ID`, `Participant_ID`) VALUES (17, 37); +INSERT INTO `Participants_in_Events` (`Event_ID`, `Participant_ID`) VALUES (17, 66); +INSERT INTO `Participants_in_Events` (`Event_ID`, `Participant_ID`) VALUES (38, 66); +INSERT INTO `Participants_in_Events` (`Event_ID`, `Participant_ID`) VALUES (40, 37); +INSERT INTO `Participants_in_Events` (`Event_ID`, `Participant_ID`) VALUES (40, 86); +INSERT INTO `Participants_in_Events` (`Event_ID`, `Participant_ID`) VALUES (57, 90); +INSERT INTO `Participants_in_Events` (`Event_ID`, `Participant_ID`) VALUES (60, 26); +INSERT INTO `Participants_in_Events` (`Event_ID`, `Participant_ID`) VALUES (80, 36); +INSERT INTO `Participants_in_Events` (`Event_ID`, `Participant_ID`) VALUES (80, 66); +INSERT INTO `Participants_in_Events` (`Event_ID`, `Participant_ID`) VALUES (80, 96); +INSERT INTO `Participants_in_Events` (`Event_ID`, `Participant_ID`) VALUES (95, 63); +INSERT INTO `Participants_in_Events` (`Event_ID`, `Participant_ID`) VALUES (96, 90); diff --git a/database/local_govt_mdm/local_govt_mdm.sqlite b/database/local_govt_mdm/local_govt_mdm.sqlite new file mode 100644 index 0000000000000000000000000000000000000000..44cbf616e49a0e3fda3e03120e570e83d8475dd2 Binary files /dev/null and b/database/local_govt_mdm/local_govt_mdm.sqlite differ diff --git a/database/local_govt_mdm/schema.sql b/database/local_govt_mdm/schema.sql new file mode 100644 index 0000000000000000000000000000000000000000..0d805ef7b1834f0abf694f41e196eca537d2150d --- /dev/null +++ b/database/local_govt_mdm/schema.sql @@ -0,0 +1,112 @@ +PRAGMA foreign_keys = ON; + +CREATE TABLE Customer_Master_Index ( +master_customer_id INTEGER NOT NULL, +cmi_details VARCHAR(255), +PRIMARY KEY (master_customer_id) +); +INSERT INTO `Customer_Master_Index` (`master_customer_id`, `cmi_details`) VALUES (1, 'Schmitt-Lang'); +INSERT INTO `Customer_Master_Index` (`master_customer_id`, `cmi_details`) VALUES (2, 'Volkman, Mills and Ferry'); +INSERT INTO `Customer_Master_Index` (`master_customer_id`, `cmi_details`) VALUES (3, 'Gusikowski PLC'); +INSERT INTO `Customer_Master_Index` (`master_customer_id`, `cmi_details`) VALUES (4, 'Schmidt, Kertzmann and Lubowitz'); +INSERT INTO `Customer_Master_Index` (`master_customer_id`, `cmi_details`) VALUES (5, 'Gottlieb, Becker and Wyman'); +INSERT INTO `Customer_Master_Index` (`master_customer_id`, `cmi_details`) VALUES (6, 'Mayer-Hagenes'); +INSERT INTO `Customer_Master_Index` (`master_customer_id`, `cmi_details`) VALUES (7, 'Streich-Morissette'); +INSERT INTO `Customer_Master_Index` (`master_customer_id`, `cmi_details`) VALUES (8, 'Quigley-Paucek'); +INSERT INTO `Customer_Master_Index` (`master_customer_id`, `cmi_details`) VALUES (9, 'Reynolds-McClure'); + +CREATE TABLE CMI_Cross_References ( +cmi_cross_ref_id INTEGER NOT NULL, +master_customer_id INTEGER NOT NULL, +source_system_code CHAR(15) NOT NULL, +PRIMARY KEY (cmi_cross_ref_id), +FOREIGN KEY (master_customer_id) REFERENCES Customer_Master_Index (master_customer_id) + +); +INSERT INTO `CMI_Cross_References` (`cmi_cross_ref_id`, `master_customer_id`, `source_system_code`) VALUES (2, 4, 'Rent'); +INSERT INTO `CMI_Cross_References` (`cmi_cross_ref_id`, `master_customer_id`, `source_system_code`) VALUES (4, 5, 'Parking'); +INSERT INTO `CMI_Cross_References` (`cmi_cross_ref_id`, `master_customer_id`, `source_system_code`) VALUES (8, 1, 'Rent'); +INSERT INTO `CMI_Cross_References` (`cmi_cross_ref_id`, `master_customer_id`, `source_system_code`) VALUES (41, 5, 'Benefits'); +INSERT INTO `CMI_Cross_References` (`cmi_cross_ref_id`, `master_customer_id`, `source_system_code`) VALUES (48, 5, 'Benefits'); +INSERT INTO `CMI_Cross_References` (`cmi_cross_ref_id`, `master_customer_id`, `source_system_code`) VALUES (49, 1, 'Business'); +INSERT INTO `CMI_Cross_References` (`cmi_cross_ref_id`, `master_customer_id`, `source_system_code`) VALUES (59, 1, 'Rent'); +INSERT INTO `CMI_Cross_References` (`cmi_cross_ref_id`, `master_customer_id`, `source_system_code`) VALUES (65, 9, 'Benefits'); +INSERT INTO `CMI_Cross_References` (`cmi_cross_ref_id`, `master_customer_id`, `source_system_code`) VALUES (75, 5, 'Electoral'); +INSERT INTO `CMI_Cross_References` (`cmi_cross_ref_id`, `master_customer_id`, `source_system_code`) VALUES (77, 4, 'Electoral'); +INSERT INTO `CMI_Cross_References` (`cmi_cross_ref_id`, `master_customer_id`, `source_system_code`) VALUES (81, 9, 'Parking'); +INSERT INTO `CMI_Cross_References` (`cmi_cross_ref_id`, `master_customer_id`, `source_system_code`) VALUES (83, 3, 'Benefits'); +INSERT INTO `CMI_Cross_References` (`cmi_cross_ref_id`, `master_customer_id`, `source_system_code`) VALUES (95, 2, 'Business'); +INSERT INTO `CMI_Cross_References` (`cmi_cross_ref_id`, `master_customer_id`, `source_system_code`) VALUES (99, 9, 'Business'); +INSERT INTO `CMI_Cross_References` (`cmi_cross_ref_id`, `master_customer_id`, `source_system_code`) VALUES (100, 4, 'Rent'); +INSERT INTO `CMI_Cross_References` (`cmi_cross_ref_id`, `master_customer_id`, `source_system_code`) VALUES (101, 2, 'Tax'); +INSERT INTO `CMI_Cross_References` (`cmi_cross_ref_id`, `master_customer_id`, `source_system_code`) VALUES (102, 4, 'Tax'); +INSERT INTO `CMI_Cross_References` (`cmi_cross_ref_id`, `master_customer_id`, `source_system_code`) VALUES (103, 9, 'Tax'); +INSERT INTO `CMI_Cross_References` (`cmi_cross_ref_id`, `master_customer_id`, `source_system_code`) VALUES (104, 2, 'Tax'); +INSERT INTO `CMI_Cross_References` (`cmi_cross_ref_id`, `master_customer_id`, `source_system_code`) VALUES (105, 2, 'Tax'); +INSERT INTO `CMI_Cross_References` (`cmi_cross_ref_id`, `master_customer_id`, `source_system_code`) VALUES (106, 1, 'Tax'); + +CREATE TABLE Council_Tax ( +council_tax_id INTEGER NOT NULL, +cmi_cross_ref_id INTEGER NOT NULL, +PRIMARY KEY (council_tax_id), +FOREIGN KEY (cmi_cross_ref_id) REFERENCES CMI_Cross_References (cmi_cross_ref_id) +); +CREATE TABLE Business_Rates ( +business_rates_id INTEGER NOT NULL, +cmi_cross_ref_id INTEGER NOT NULL, +PRIMARY KEY (business_rates_id), +FOREIGN KEY (cmi_cross_ref_id) REFERENCES CMI_Cross_References (cmi_cross_ref_id) +); +CREATE TABLE Benefits_Overpayments ( +council_tax_id INTEGER NOT NULL, +cmi_cross_ref_id INTEGER NOT NULL, +PRIMARY KEY (council_tax_id), +FOREIGN KEY (cmi_cross_ref_id) REFERENCES CMI_Cross_References (cmi_cross_ref_id) +); +CREATE TABLE Parking_Fines ( +council_tax_id INTEGER NOT NULL, +cmi_cross_ref_id INTEGER NOT NULL, +PRIMARY KEY (council_tax_id), +FOREIGN KEY (cmi_cross_ref_id) REFERENCES CMI_Cross_References (cmi_cross_ref_id) +); +CREATE TABLE Rent_Arrears ( +council_tax_id INTEGER NOT NULL, +cmi_cross_ref_id INTEGER NOT NULL, +PRIMARY KEY (council_tax_id), +FOREIGN KEY (cmi_cross_ref_id) REFERENCES CMI_Cross_References (cmi_cross_ref_id) +); +CREATE TABLE Electoral_Register ( +electoral_register_id INTEGER NOT NULL, +cmi_cross_ref_id INTEGER NOT NULL, +PRIMARY KEY (electoral_register_id), +FOREIGN KEY (cmi_cross_ref_id) REFERENCES CMI_Cross_References (cmi_cross_ref_id) +); +INSERT INTO `Benefits_Overpayments` (`council_tax_id`, `cmi_cross_ref_id`) VALUES (3, 65); +INSERT INTO `Benefits_Overpayments` (`council_tax_id`, `cmi_cross_ref_id`) VALUES (7, 83); +INSERT INTO `Benefits_Overpayments` (`council_tax_id`, `cmi_cross_ref_id`) VALUES (6, 41); +INSERT INTO `Benefits_Overpayments` (`council_tax_id`, `cmi_cross_ref_id`) VALUES (8, 48); + +INSERT INTO `Business_Rates` (`business_rates_id`, `cmi_cross_ref_id`) VALUES (5, 49); +INSERT INTO `Business_Rates` (`business_rates_id`, `cmi_cross_ref_id`) VALUES (2, 99); +INSERT INTO `Business_Rates` (`business_rates_id`, `cmi_cross_ref_id`) VALUES (8, 95); + +INSERT INTO `Council_Tax` (`council_tax_id`, `cmi_cross_ref_id`) VALUES (1, 101); +INSERT INTO `Council_Tax` (`council_tax_id`, `cmi_cross_ref_id`) VALUES (7, 102); +INSERT INTO `Council_Tax` (`council_tax_id`, `cmi_cross_ref_id`) VALUES (2, 103); +INSERT INTO `Council_Tax` (`council_tax_id`, `cmi_cross_ref_id`) VALUES (3, 104); +INSERT INTO `Council_Tax` (`council_tax_id`, `cmi_cross_ref_id`) VALUES (9, 105); +INSERT INTO `Council_Tax` (`council_tax_id`, `cmi_cross_ref_id`) VALUES (8, 106); + +INSERT INTO `Electoral_Register` (`electoral_register_id`, `cmi_cross_ref_id`) VALUES (3, 65); +INSERT INTO `Electoral_Register` (`electoral_register_id`, `cmi_cross_ref_id`) VALUES (7, 65); +INSERT INTO `Electoral_Register` (`electoral_register_id`, `cmi_cross_ref_id`) VALUES (8, 75); +INSERT INTO `Electoral_Register` (`electoral_register_id`, `cmi_cross_ref_id`) VALUES (2, 83); +INSERT INTO `Electoral_Register` (`electoral_register_id`, `cmi_cross_ref_id`) VALUES (6, 95); +INSERT INTO `Electoral_Register` (`electoral_register_id`, `cmi_cross_ref_id`) VALUES (4, 100); +INSERT INTO `Parking_Fines` (`council_tax_id`, `cmi_cross_ref_id`) VALUES (9, 4); +INSERT INTO `Parking_Fines` (`council_tax_id`, `cmi_cross_ref_id`) VALUES (10, 81); + +INSERT INTO `Rent_Arrears` (`council_tax_id`, `cmi_cross_ref_id`) VALUES (7, 2); +INSERT INTO `Rent_Arrears` (`council_tax_id`, `cmi_cross_ref_id`) VALUES (2, 8); +INSERT INTO `Rent_Arrears` (`council_tax_id`, `cmi_cross_ref_id`) VALUES (6, 59); +INSERT INTO `Rent_Arrears` (`council_tax_id`, `cmi_cross_ref_id`) VALUES (1, 100); diff --git a/database/machine_repair/machine_repair.sqlite b/database/machine_repair/machine_repair.sqlite new file mode 100644 index 0000000000000000000000000000000000000000..1b2894377d3c430b6e0948878568a0cce04a26f1 Binary files /dev/null and b/database/machine_repair/machine_repair.sqlite differ diff --git a/database/machine_repair/schema.sql b/database/machine_repair/schema.sql new file mode 100644 index 0000000000000000000000000000000000000000..68d7052156ebd2b42641be51d43297ed83446a20 --- /dev/null +++ b/database/machine_repair/schema.sql @@ -0,0 +1,86 @@ +PRAGMA foreign_keys = ON; + + +CREATE TABLE "repair" ( +"repair_ID" int, +"name" text, +"Launch_Date" text, +"Notes" text, +PRIMARY KEY ("repair_ID") +); + +INSERT INTO "repair" VALUES (1,"Discoverer","21 Jan 2009","repair Failed. Failed to achieve orbit"); +INSERT INTO "repair" VALUES (2,"Discoverer 1","28 Feb 2009","First object in polar orbit"); +INSERT INTO "repair" VALUES (3,"Discoverer 3","03 Jun 2009","repair failed. Failed to achieve orbit"); +INSERT INTO "repair" VALUES (4,"OPS 3236","13 Jun 2014","First object in polar orbit"); +INSERT INTO "repair" VALUES (5,"OPS 3467","24 Mar 2014","repair failed. Guidance system failed. No orbit."); +INSERT INTO "repair" VALUES (6,"OPS 3754","19 Jun 2014","Out-of-focus area on some film."); +INSERT INTO "repair" VALUES (7,"OPS 3491","10 Jun 2014","Cameras operated satisfactorily"); +INSERT INTO "repair" VALUES (8,"OPS 3042","05 Aug 2014","Cameras operated successfully."); +INSERT INTO "repair" VALUES (9,"OPS 3360","18 Nov 2014","Cameras operated successfully."); + +CREATE TABLE "machine" ( +"Machine_ID" int, +"Making_Year" int, +"Class" text, +"Team" text, +"Machine_series" text, +"value_points" real, +"quality_rank" int, +PRIMARY KEY ("Machine_ID") +); + +INSERT INTO "machine" VALUES (1,"1991","125cc","Hero Sports TS- Honda","RS125","105",2); +INSERT INTO "machine" VALUES (2,"1992","125cc","Marlboro Pileri - Honda","RS125","57",1); +INSERT INTO "machine" VALUES (3,"1993","125cc","Marlboro Pileri - Honda","RS125","129",4); +INSERT INTO "machine" VALUES (4,"1994","125cc","Givi Racing- Honda","RS125","194",5); +INSERT INTO "machine" VALUES (5,"1995","125cc","Givi Racing- Honda","RS125","65",3); +INSERT INTO "machine" VALUES (6,"1996","125cc","Honda","RS125","126",7); +INSERT INTO "machine" VALUES (7,"1997","125cc","Honda","RS125","238",8); +INSERT INTO "machine" VALUES (8,"1998","125cc","Team Givi- Honda LCR","RS125","62",13); +INSERT INTO "machine" VALUES (9,"1999","125cc","Team Givi- Honda LCR","RS125","171",11); + + +CREATE TABLE "technician" ( +"technician_id" real, +"Name" text, +"Team" text, +"Starting_Year" real, +"Age" int, +PRIMARY Key ("technician_id") +); + + +INSERT INTO "technician" VALUES ("1","Joe Sewell","NYY","2012",37); +INSERT INTO "technician" VALUES ("2","John Brown","NYY","2013",36); +INSERT INTO "technician" VALUES ("3","Tony Sewell","CLE","2005",43); +INSERT INTO "technician" VALUES ("4","Mark Sewell","CLE","2009",28); +INSERT INTO "technician" VALUES ("5","Charlie Hollocher","CHC","2002",35); +INSERT INTO "technician" VALUES ("6","Lou Boudreau","CLE","2016",32); +INSERT INTO "technician" VALUES ("7","Eddie Collins","CWS","2005",45); +INSERT INTO "technician" VALUES ("8","Joe Cochrane","CLE","2006",46); +INSERT INTO "technician" VALUES ("9","Eddie Collins","CWS","2003",47); +INSERT INTO "technician" VALUES ("10","Mickey Cochrane","PHA","2009",38); + + + +CREATE TABLE "repair_assignment" ( +"technician_id" int, +"repair_ID" int, +"Machine_ID" int, +PRIMARY Key ("technician_id","repair_ID","Machine_ID"), +FOREIGN KEY (`technician_id`) REFERENCES `technician`(`technician_id`), +FOREIGN KEY (`repair_ID`) REFERENCES `repair`(`repair_ID`), +FOREIGN KEY (`Machine_ID`) REFERENCES `machine`(`Machine_ID`) +); + +INSERT INTO "repair_assignment" VALUES (1,1,1); +INSERT INTO "repair_assignment" VALUES (2,2,2); +INSERT INTO "repair_assignment" VALUES (3,3,3); +INSERT INTO "repair_assignment" VALUES (1,4,7); +INSERT INTO "repair_assignment" VALUES (1,5,6); +INSERT INTO "repair_assignment" VALUES (1,2,3); +INSERT INTO "repair_assignment" VALUES (1,8,7); +INSERT INTO "repair_assignment" VALUES (5,5,2); +INSERT INTO "repair_assignment" VALUES (7,2,4); + diff --git a/database/manufactory_1/manufactory_1.sqlite b/database/manufactory_1/manufactory_1.sqlite new file mode 100644 index 0000000000000000000000000000000000000000..df92c733bacf5c9408006be0649ea25651982309 Binary files /dev/null and b/database/manufactory_1/manufactory_1.sqlite differ diff --git a/database/manufactory_1/schema.sql b/database/manufactory_1/schema.sql new file mode 100644 index 0000000000000000000000000000000000000000..5ddfbacdc02b16f43a23e34c5a0880ad5e2f5a02 --- /dev/null +++ b/database/manufactory_1/schema.sql @@ -0,0 +1,38 @@ +-- LINK: https://en.wikibooks.org/wiki/SQL_Exercises/The_computer_store + +CREATE TABLE Manufacturers ( + Code INTEGER, + Name VARCHAR(255) NOT NULL, + Headquarter VARCHAR(255) NOT NULL, + Founder VARCHAR(255) NOT NULL, + Revenue REAL, + PRIMARY KEY (Code) +); + +CREATE TABLE Products ( + Code INTEGER, + Name VARCHAR(255) NOT NULL , + Price DECIMAL NOT NULL , + Manufacturer INTEGER NOT NULL, + PRIMARY KEY (Code), + FOREIGN KEY (Manufacturer) REFERENCES Manufacturers(Code) +); + +INSERT INTO Manufacturers VALUES(1,'Sony', 'Tokyo', 'Andy', 120); +INSERT INTO Manufacturers VALUES(2,'Creative Labs', 'Austin', 'Owen', 100); +INSERT INTO Manufacturers VALUES(3,'Hewlett-Packard', 'Los Angeles', 'James', 50); +INSERT INTO Manufacturers VALUES(4,'Iomega', 'Beijing', 'Mary', 200); +INSERT INTO Manufacturers VALUES(5,'Fujitsu', 'Taiwan', 'John', 130); +INSERT INTO Manufacturers VALUES(6,'Winchester', 'Paris', 'Robert', 30); + +INSERT INTO Products(Code,Name,Price,Manufacturer) VALUES(1,'Hard drive',240,5); +INSERT INTO Products(Code,Name,Price,Manufacturer) VALUES(2,'Memory',120,6); +INSERT INTO Products(Code,Name,Price,Manufacturer) VALUES(3,'ZIP drive',150,4); +INSERT INTO Products(Code,Name,Price,Manufacturer) VALUES(4,'Floppy disk',5,6); +INSERT INTO Products(Code,Name,Price,Manufacturer) VALUES(5,'Monitor',240,1); +INSERT INTO Products(Code,Name,Price,Manufacturer) VALUES(6,'DVD drive',180,2); +INSERT INTO Products(Code,Name,Price,Manufacturer) VALUES(7,'CD drive',90,2); +INSERT INTO Products(Code,Name,Price,Manufacturer) VALUES(8,'Printer',270,3); +INSERT INTO Products(Code,Name,Price,Manufacturer) VALUES(9,'Toner cartridge',66,3); +INSERT INTO Products(Code,Name,Price,Manufacturer) VALUES(10,'DVD burner',180,2); +INSERT INTO Products(Code,Name,Price,Manufacturer) VALUES(11,'DVD drive',150,3); diff --git a/database/manufacturer/manufacturer.sqlite b/database/manufacturer/manufacturer.sqlite new file mode 100644 index 0000000000000000000000000000000000000000..4fd26cf8db80f2624e7bddc95dc878acb28c7b15 Binary files /dev/null and b/database/manufacturer/manufacturer.sqlite differ diff --git a/database/manufacturer/schema.sql b/database/manufacturer/schema.sql new file mode 100644 index 0000000000000000000000000000000000000000..899e3b320d0d979c4294a953578e4f5afecb5bf8 --- /dev/null +++ b/database/manufacturer/schema.sql @@ -0,0 +1,55 @@ + +PRAGMA foreign_keys = ON; + +CREATE TABLE "manufacturer" ( + "Manufacturer_ID" int, + "Open_Year" real, + "Name" text, + "Num_of_Factories" int, + "Num_of_Shops" int, + PRIMARY KEY ("Manufacturer_ID") +); + + + +INSERT INTO "manufacturer" VALUES (1,"1980","Chevrolet House","36","8"); +INSERT INTO "manufacturer" VALUES (2,"1990","IKEA","21","19"); +INSERT INTO "manufacturer" VALUES (3,"1991","Ford Make","12","2"); +INSERT INTO "manufacturer" VALUES (4,"1992","Jiaju","1","35"); +INSERT INTO "manufacturer" VALUES (5,"2000","Chevrolet","38","24"); +INSERT INTO "manufacturer" VALUES (6,"2001","Dodge","3","7"); +INSERT INTO "manufacturer" VALUES (7,"2008","Tomorrow","12","4"); + + +CREATE TABLE "furniture" ( + "Furniture_ID" int, + "Name" text, + "Num_of_Component" int, + "Market_Rate" real, + PRIMARY KEY ("Furniture_ID") +); + +INSERT INTO "furniture" VALUES (1,"Billiard table",14,"52.5"); +INSERT INTO "furniture" VALUES (2,"Chabudai",4,"40.0"); +INSERT INTO "furniture" VALUES (3,"Bookcase",6,"1.0"); +INSERT INTO "furniture" VALUES (4,"Hatstand",5,"0.5"); +INSERT INTO "furniture" VALUES (5,"Bench",5,"3.5"); +INSERT INTO "furniture" VALUES (6,"Four-poster bed",3,"2.0"); +INSERT INTO "furniture" VALUES (7,"Dining set",12,"0.5"); + + +CREATE TABLE "furniture_manufacte" ( + "Manufacturer_ID" int, + "Furniture_ID" int, + "Price_in_Dollar" real, + PRIMARY KEY ("Manufacturer_ID","Furniture_ID"), + FOREIGN KEY ("Manufacturer_ID") REFERENCES `manufacturer`("Manufacturer_ID"), + FOREIGN KEY ("Furniture_ID") REFERENCES `furniture`("Furniture_ID") +); + +INSERT INTO "furniture_manufacte" VALUES (1,3,239); +INSERT INTO "furniture_manufacte" VALUES (4,2,450); +INSERT INTO "furniture_manufacte" VALUES (7,7,2124); +INSERT INTO "furniture_manufacte" VALUES (5,1,443); +INSERT INTO "furniture_manufacte" VALUES (7,4,1234); + diff --git a/database/match_season/match_season.sqlite b/database/match_season/match_season.sqlite new file mode 100644 index 0000000000000000000000000000000000000000..ec1524f648493e12391c5a884b78e30fb9e3d92c Binary files /dev/null and b/database/match_season/match_season.sqlite differ diff --git a/database/match_season/schema.sql b/database/match_season/schema.sql new file mode 100644 index 0000000000000000000000000000000000000000..1b759745c1e71d3bba5e49b961ec19fd7e55d2a9 --- /dev/null +++ b/database/match_season/schema.sql @@ -0,0 +1,94 @@ +PRAGMA foreign_keys = ON; + + +CREATE TABLE "country" ( + "Country_id" int, + "Country_name" text, + "Capital" text, + "Official_native_language" text, + PRIMARY KEY ("Country_id") +); + + +CREATE TABLE `team` ( + `Team_id` int, + `Name` text, + PRIMARY KEY (`Team_id`) +) ; + +INSERT INTO `team` (`Team_id`, `Name`) VALUES (1, 'Columbus Crew'); +INSERT INTO `team` (`Team_id`, `Name`) VALUES (2, 'Evalyn Feil'); +INSERT INTO `team` (`Team_id`, `Name`) VALUES (3, 'Anais VonRueden'); +INSERT INTO `team` (`Team_id`, `Name`) VALUES (4, 'Miami Fusion'); +INSERT INTO `team` (`Team_id`, `Name`) VALUES (5, 'Enrique Osinski'); +INSERT INTO `team` (`Team_id`, `Name`) VALUES (6, 'Brown Erdman'); +INSERT INTO `team` (`Team_id`, `Name`) VALUES (7, 'Los Angeles Galaxy'); +INSERT INTO `team` (`Team_id`, `Name`) VALUES (8, 'Berneice Hand'); +INSERT INTO `team` (`Team_id`, `Name`) VALUES (9, 'Ryley Goldner'); +INSERT INTO `team` (`Team_id`, `Name`) VALUES (10, 'D.C. United'); + +CREATE TABLE "match_season" ( + "Season" real, + "Player" text, + "Position" text, + "Country" int, + "Team" int, + "Draft_Pick_Number" int, + "Draft_Class" text, + "College" text, + PRIMARY KEY ("Season"), + FOREIGN KEY (`Country`) REFERENCES `country`(`Country_id`), + FOREIGN KEY (`Team`) REFERENCES `team`(`Team_id`) +); + + +CREATE TABLE "player" ( + "Player_ID" int, + "Player" text, + "Years_Played" text, + "Total_WL" text, + "Singles_WL" text, + "Doubles_WL" text, + "Team" int, + PRIMARY KEY ("Player_ID"), + FOREIGN KEY (`Team`) REFERENCES `team`(`Team_id`) +); + + + +INSERT INTO "country" VALUES (1,"Indonesia","Jakarta","Bahasa Indonesia"); +INSERT INTO "country" VALUES (2,"Iran","Tehran","Persian ( Arabic script )"); +INSERT INTO "country" VALUES (3,"Iraq","Baghdad","Arabic ( Arabic script ) Kurdish"); +INSERT INTO "country" VALUES (4,"Ireland","Dublin","Irish English"); +INSERT INTO "country" VALUES (5,"Isle of Man","Douglas","English Manx"); +INSERT INTO "country" VALUES (6,"United States","Washington","English"); + +INSERT INTO "match_season" VALUES ("1996","Steve Ralston Category:Articles with hCards","Midfielder",6,1,18,"1996 MLS College Draft","Florida International"); +INSERT INTO "match_season" VALUES ("1997","Mike Duhaney Category:Articles with hCards","Defender",6,2,87,"1996 MLS Inaugural Player Draft","UNLV"); +INSERT INTO "match_season" VALUES ("1998","Ben Olsen Category:Articles with hCards","Midfielder",4,3,2,"Project-40","Virginia"); +INSERT INTO "match_season" VALUES ("1999","Jay Heaps Category:Articles with hCards","Defender",5,4,5,"1999 MLS College Draft","Duke"); +INSERT INTO "match_season" VALUES ("2000","Carlos Bocanegra Category:Articles with hCards","Defender",5,5,4,"2000 MLS SuperDraft","UCLA"); +INSERT INTO "match_season" VALUES ("2001","Rodrigo Faria Category:Articles with hCards","Forward",4,5,13,"2001 MLS SuperDraft","Concordia College"); +INSERT INTO "match_season" VALUES ("2002","Kyle Martino Category:Articles with hCards","Midfielder",6,3,8,"2002 MLS SuperDraft","Virginia"); +INSERT INTO "match_season" VALUES ("2003","Damani Ralph Category:Articles with hCards","Forward",1,2,18,"2003 MLS SuperDraft","Connecticut"); +INSERT INTO "match_season" VALUES ("2004","Clint Dempsey Category:Articles with hCards","Midfielder",6,3,8,"2004 MLS SuperDraft","Furman"); +INSERT INTO "match_season" VALUES ("2005","Michael Parkhurst Category:Articles with hCards","Defender",6,4,9,"2005 MLS SuperDraft","Wake Forest"); +INSERT INTO "match_season" VALUES ("2006","Jonathan Bornstein Category:Articles with hCards","Defender",6,10,37,"2006 MLS SuperDraft","UCLA"); +INSERT INTO "match_season" VALUES ("2007","Maurice Edu Category:Articles with hCards","Midfielder",4,9,1,"2007 MLS SuperDraft","Maryland"); +INSERT INTO "match_season" VALUES ("2008","Sean Franklin Category:Articles with hCards","Defender",6,5,4,"2008 MLS SuperDraft","Cal State Northridge"); +INSERT INTO "match_season" VALUES ("2009","Omar Gonzalez Category:Articles with hCards","Defender",6,5,3,"2009 MLS SuperDraft","Maryland"); +INSERT INTO "match_season" VALUES ("2010","Andy Najar Category:Articles with hCards","Midfielder",4,5,6,"D.C. United Academy","none"); +INSERT INTO "match_season" VALUES ("2011","C. J. Sapong Category:Articles with hCards","Forward",6,3,10,"2011 MLS SuperDraft","James Madison"); + + +INSERT INTO "player" VALUES (1,"Cho Soong-Jae (630)","1 (2011)","2–0","1–0","1–0",1); +INSERT INTO "player" VALUES (2,"Chung Hong (717)","1 (2011)","0–0","0–0","0–0",1); +INSERT INTO "player" VALUES (3,"Im Kyu-tae (492)","8 (2003–2005, 2007–2011)","6–9","5–7","1–2",1); +INSERT INTO "player" VALUES (4,"Jeong Suk-Young (793)","2 (2010–2011)","1–2","1–2","0–0",1); +INSERT INTO "player" VALUES (5,"Kim Hyun-Joon (908)","2 (2010–2011)","3–4","2–1","1–3",2); +INSERT INTO "player" VALUES (6,"Kim Young-Jun (474)","4 (2003–2004, 2010–2011)","6–4","6–3","0–1",4); +INSERT INTO "player" VALUES (7,"Lim Yong-Kyu (288)","3 (2009–2011)","7–6","5–6","2–0",6); +INSERT INTO "player" VALUES (8,"Seol Jae-Min (none)","2 (2010-2011)","2–2","0–0","2–2",1); +INSERT INTO "player" VALUES (9,"An Jae-Sung","3 (2005, 2007–2008)","4–3","3–2","1–1",1); +INSERT INTO "player" VALUES (10,"Bae Nam-Ju","2 (1988, 1990)","1–3","0–2","1–1",8); + diff --git a/database/medicine_enzyme_interaction/medicine_enzyme_interaction.sqlite b/database/medicine_enzyme_interaction/medicine_enzyme_interaction.sqlite new file mode 100644 index 0000000000000000000000000000000000000000..17a63c93b7f8045c49cf195bb69ce3e12a05573d Binary files /dev/null and b/database/medicine_enzyme_interaction/medicine_enzyme_interaction.sqlite differ diff --git a/database/medicine_enzyme_interaction/schema.sql b/database/medicine_enzyme_interaction/schema.sql new file mode 100644 index 0000000000000000000000000000000000000000..96f8d0acd68405a3d61d5e52c1d0b39206cf804b --- /dev/null +++ b/database/medicine_enzyme_interaction/schema.sql @@ -0,0 +1,89 @@ +PRAGMA foreign_keys = ON; +CREATE TABLE "medicine" ( +"id" int, +"name" text, +"Trade_Name" text, +"FDA_approved" text, +primary key ("id") +); + +CREATE TABLE "enzyme" ( +"id" int, +"name" text, +"Location" text, +"Product" text, +"Chromosome" text, +"OMIM" int, +"Porphyria" text, +primary key ("id") +); + + +CREATE TABLE "medicine_enzyme_interaction" ( +"enzyme_id" int, +"medicine_id" int, +"interaction_type" text, +primary key ("enzyme_id", "medicine_id"), +foreign key ("enzyme_id") references `enzyme`("id"), +foreign key ("medicine_id") references `medicine`("id") +); + + + + +INSERT INTO "medicine" VALUES (1,"Amisulpride","Solian","No"); +INSERT INTO "medicine" VALUES (2,"Aripiprazole","Abilify","Yes"); +INSERT INTO "medicine" VALUES (3,"Asenapine","Saphris","Yes"); +INSERT INTO "medicine" VALUES (4,"Blonanserin","Lonasen","No"); +INSERT INTO "medicine" VALUES (5,"Carpipramine","Prazinil","No"); +INSERT INTO "medicine" VALUES (6,"Clocapramine","Clofekton","No"); +INSERT INTO "medicine" VALUES (7,"Clozapine","Clozaril","Yes"); +INSERT INTO "medicine" VALUES (8,"Iloperidone","Fanapt","Yes"); +INSERT INTO "medicine" VALUES (9,"Lurasidone","Latuda","Yes"); +INSERT INTO "medicine" VALUES (10,"Melperone","Buronil","No"); +INSERT INTO "medicine" VALUES (11,"Mosapramine","Cremin","No"); +INSERT INTO "medicine" VALUES (12,"Olanzapine","Zyprexa","Yes"); +INSERT INTO "medicine" VALUES (13,"Paliperidone","Invega","Yes"); +INSERT INTO "medicine" VALUES (14,"Perospirone","Lullan","No"); +INSERT INTO "medicine" VALUES (15,"Quetiapine","Seroquel","Yes"); +INSERT INTO "medicine" VALUES (16,"Remoxipride","Roxiam","No"); +INSERT INTO "medicine" VALUES (17,"Risperidone","Risperdal","Yes"); +INSERT INTO "medicine" VALUES (18,"Sertindole","Serdolect","No"); +INSERT INTO "medicine" VALUES (19,"Sulpiride","Sulpirid","No"); +INSERT INTO "medicine" VALUES (20,"Ziprasidone","Geodon","Yes"); +INSERT INTO "medicine" VALUES (21,"Zotepine","Nipolept","No"); + +INSERT INTO "enzyme" VALUES (1,"ALA synthase","Mitochondrion","δ-Aminolevulinic acid","3p21.1","125290","none"); +INSERT INTO "enzyme" VALUES (2,"ALA dehydratase","Cytosol","Porphobilinogen","9q34","125270","ALA-Dehydratase deficiency"); +INSERT INTO "enzyme" VALUES (3,"PBG deaminase","Cytosol","Hydroxymethyl bilane","11q23.3","176000","acute intermittent porphyria"); +INSERT INTO "enzyme" VALUES (4,"Uroporphyrinogen III synthase","Cytosol","Uroporphyrinogen III","10q25.2-q26.3","606938","congenital erythropoietic porphyria"); +INSERT INTO "enzyme" VALUES (5,"Uroporphyrinogen III decarboxylase","Cytosol","Coproporphyrinogen III","1p34","176100","porphyria cutanea tarda"); +INSERT INTO "enzyme" VALUES (6,"Coproporphyrinogen III oxidase","Mitochondrion","Protoporphyrinogen IX","3q12","121300","coproporphyria"); +INSERT INTO "enzyme" VALUES (7,"Protoporphyrinogen oxidase","Mitochondrion","Protoporphyrin IX","1q22","600923","variegate porphyria"); +INSERT INTO "enzyme" VALUES (8,"Ferrochelatase","Mitochondrion","Heme","18q21.3","177000","erythropoietic protoporphyria"); + + + +INSERT INTO "medicine_enzyme_interaction" VALUES(1,1, "inhibitor"); +INSERT INTO "medicine_enzyme_interaction" VALUES(1,2, "inhibitor"); +INSERT INTO "medicine_enzyme_interaction" VALUES(1,3, "inhibitor"); +INSERT INTO "medicine_enzyme_interaction" VALUES(1,4, "inhibitor"); +INSERT INTO "medicine_enzyme_interaction" VALUES(2,2, "inhibitor"); +INSERT INTO "medicine_enzyme_interaction" VALUES(2,3, "inhibitor"); +INSERT INTO "medicine_enzyme_interaction" VALUES(2,5, "inhibitor"); +INSERT INTO "medicine_enzyme_interaction" VALUES(2,6, "inhibitor"); +INSERT INTO "medicine_enzyme_interaction" VALUES(2,7, "inhibitor"); +INSERT INTO "medicine_enzyme_interaction" VALUES(2,8, "inhibitor"); +INSERT INTO "medicine_enzyme_interaction" VALUES(3,2, "inhibitor"); +INSERT INTO "medicine_enzyme_interaction" VALUES(4,13, "activitor"); +INSERT INTO "medicine_enzyme_interaction" VALUES(4,3, "activitor"); +INSERT INTO "medicine_enzyme_interaction" VALUES(3,8, "activitor"); +INSERT INTO "medicine_enzyme_interaction" VALUES(3,9, "activitor"); +INSERT INTO "medicine_enzyme_interaction" VALUES(4,10, "activitor"); +INSERT INTO "medicine_enzyme_interaction" VALUES(5,20, "activitor"); +INSERT INTO "medicine_enzyme_interaction" VALUES(5,19, "activitor"); +INSERT INTO "medicine_enzyme_interaction" VALUES(6,20, "activitor"); + + + + diff --git a/database/mountain_photos/mountain_photos.sqlite b/database/mountain_photos/mountain_photos.sqlite new file mode 100644 index 0000000000000000000000000000000000000000..e32cceed05e6f517475cf938d1b25cd7c6a97b7b Binary files /dev/null and b/database/mountain_photos/mountain_photos.sqlite differ diff --git a/database/mountain_photos/schema.sql b/database/mountain_photos/schema.sql new file mode 100644 index 0000000000000000000000000000000000000000..b88bc42fa3103c4f053614ac0a1b2a11ab80f047 --- /dev/null +++ b/database/mountain_photos/schema.sql @@ -0,0 +1,75 @@ +PRAGMA foreign_keys=ON; +BEGIN TRANSACTION; +CREATE TABLE IF NOT EXISTS "mountain" ( +"id" int, +"name" text, +"Height" real, +"Prominence" real, +"Range" text, +"Country" text, +primary key("id") +); +INSERT INTO mountain VALUES(1,'Abune Yosef / Guliba Amba',4260.0000000000000002,1908.9999999999999999,'Lasta Massif','Ethiopia'); +INSERT INTO mountain VALUES(2,'Ioll / Yoll',4219.9999999999999998,350.0,'Kollo Massif','Ethiopia'); +INSERT INTO mountain VALUES(3,'Bada',4195.0000000000000001,1605.0,'Arsi Mountains','Ethiopia'); +INSERT INTO mountain VALUES(4,'Kaka / Kecha / Chiqe',4193.0000000000000001,1215.0,'Arsi Mountains','Ethiopia'); +INSERT INTO mountain VALUES(5,'Jbel Toubkal',4167.0,3755.0000000000000001,'Toubkal Atlas','Morocco'); +INSERT INTO mountain VALUES(6,'Muhavura',4127.0,1529.9999999999999999,'Virunga Mountains','Rwanda Uganda'); +INSERT INTO mountain VALUES(7,'Hey / Hay',4125.0,659.99999999999999999,'Semien Mountains','Ethiopia'); +INSERT INTO mountain VALUES(8,'Guna',4119.9999999999999998,1509.9999999999999999,'Guna Massif','Ethiopia'); +INSERT INTO mountain VALUES(9,'Choqa / Choke / Birhan',4099.9999999999999999,2224.9999999999999999,'Choqa Mountains','Ethiopia'); +INSERT INTO mountain VALUES(10,'Ouanoukrim',4088.0,419.99999999999999998,'Toubkal Atlas','Morocco'); +INSERT INTO mountain VALUES(11,'Chilalo',4071.0000000000000001,609.99999999999999999,'Arsi Mountains','Ethiopia'); +INSERT INTO mountain VALUES(12,'Mount Cameroon',4070.0000000000000001,3931.0000000000000001,'Cameroon line','Cameroon'); +INSERT INTO mountain VALUES(13,'Inatye',4070.0000000000000001,500.0,'Semien Mountains','Ethiopia'); +INSERT INTO mountain VALUES(14,'Ighil Mgoun',4068.0000000000000001,1903.9999999999999999,'Central High Atlas','Morocco'); +INSERT INTO mountain VALUES(15,'Weshema / Wasema?',4030.0000000000000001,419.99999999999999998,'Bale Mountains','Ethiopia'); +INSERT INTO mountain VALUES(16,'Oldoinyo Lesatima',4001.0,2080.9999999999999999,'Aberdare Range','Kenya'); +INSERT INTO mountain VALUES(17,'Jebel n''Tarourt / Tifnout / Iferouane',3995.9999999999999999,910.00000000000000003,'Toubkal Atlas','Morocco'); +INSERT INTO mountain VALUES(18,'Muggia',3950.0,500.0,'Lasta Massif','Ethiopia'); +INSERT INTO mountain VALUES(19,'Dubbai',3941.0,1539.9999999999999999,'Tigray Mountains','Ethiopia'); +INSERT INTO mountain VALUES(20,'Taska n’Zat',3911.9999999999999999,459.99999999999999999,'Toubkal Atlas','Morocco'); +INSERT INTO mountain VALUES(21,'Aksouâl',3902.9999999999999998,450.0,'Toubkal Atlas','Morocco'); +INSERT INTO mountain VALUES(22,'Mount Kinangop',3901.9999999999999998,530.00000000000000001,'Aberdare Range','Kenya'); +INSERT INTO mountain VALUES(23,'Cimbia',3900.0,590.0,'Kollo Massif','Ethiopia'); +CREATE TABLE IF NOT EXISTS "camera_lens" ( +"id" int, +"brand" text, +"name" text, +"focal_length_mm" real, +"max_aperture" real, +primary key("id") +); +INSERT INTO camera_lens VALUES(1,'Olympus','Olympus 15mm f/8.0 Body Cap',15.0,8.0); +INSERT INTO camera_lens VALUES(2,'Olympus','Olympus M.Zuiko Digital ED 45mm f/1.8',45.0,1.8000000000000000444); +INSERT INTO camera_lens VALUES(3,'Olympus','Olympus M.Zuiko Digital ED 75mm f/1.8',75.0,1.8000000000000000444); +INSERT INTO camera_lens VALUES(4,'Panasonic','Panasonic Leica DG Summilux 25mm f /1.4 Asph.',25.0,1.3999999999999999111); +INSERT INTO camera_lens VALUES(5,'Panasonic','Panasonic Leica DG Nocticron 42.5mm f /1.2',42.5,1.1999999999999999555); +INSERT INTO camera_lens VALUES(6,'Panasonic','Panasonic Lumix G 150mm f /2.8',150.0,2.7999999999999998223); +INSERT INTO camera_lens VALUES(7,'Schneider Kreuznach','Schneider Kreuznach Super Angulon 14mm f /2.0',13.999999999999999999,2.0); +INSERT INTO camera_lens VALUES(8,'Schneider Kreuznach','Schneider Kreuznach Xenon 30mm f /1.4',30.0,1.3999999999999999111); +INSERT INTO camera_lens VALUES(9,'Sigma','Sigma 19mm f2.8 DN',19.0,2.7999999999999998223); +INSERT INTO camera_lens VALUES(10,'Sigma','Sigma 19mm f2.8 EX DN',19.0,2.7999999999999998223); +INSERT INTO camera_lens VALUES(11,'Sigma','Sigma 30mm f2.8 DN',30.0,2.7999999999999998223); +CREATE TABLE IF NOT EXISTS "photos" ( +"id" int, +"camera_lens_id" int, +"mountain_id" int, +"color" text, +"name" text, +primary key("id"), +foreign key("camera_lens_id") references `camera_lens`("id"), +foreign key("mountain_id") references `mountain`("id") +); +INSERT INTO photos VALUES(1,1,20,'RBG','monkey'); +INSERT INTO photos VALUES(2,10,2,'RBG','rabbits'); +INSERT INTO photos VALUES(3,10,1,'Black/White','deers'); +INSERT INTO photos VALUES(4,1,10,'RBG','grass'); +INSERT INTO photos VALUES(5,5,14,'RBG','cloud'); +INSERT INTO photos VALUES(6,6,12,'RBG','sunset'); +INSERT INTO photos VALUES(7,7,12,'RBG','river'); +INSERT INTO photos VALUES(8,7,12,'Black/White','wolfs'); +INSERT INTO photos VALUES(9,10,14,'RBG','the mountain'); +INSERT INTO photos VALUES(10,10,20,'RBG','life'); +COMMIT; + diff --git a/database/movie_1/movie_1.sqlite b/database/movie_1/movie_1.sqlite new file mode 100644 index 0000000000000000000000000000000000000000..0cceca6082b0b8725402d169c848ae381ad152fb Binary files /dev/null and b/database/movie_1/movie_1.sqlite differ diff --git a/database/movie_1/schema.sql b/database/movie_1/schema.sql new file mode 100644 index 0000000000000000000000000000000000000000..c91d9b1168d6afa0c283decbb8f5807461227c70 --- /dev/null +++ b/database/movie_1/schema.sql @@ -0,0 +1,60 @@ +-- dbext:type=SQLITE:dbname=movie_rating.db + +/* Delete the tables if they already exist */ +drop table if exists Movie; +drop table if exists Reviewer; +drop table if exists Rating; + +/* Create the schema for our tables */ +create table Movie( + mID int primary key, + title text, + year int, + director text +); +create table Reviewer( + rID int primary key, + name text); + +create table Rating( + rID int, + mID int, + stars int, + ratingDate date, + FOREIGN KEY (mID) references Movie(mID), + FOREIGN KEY (rID) references Reviewer(rID) +); + +/* Populate the tables with our data */ +insert into Movie values(101, 'Gone with the Wind', 1939, 'Victor Fleming'); +insert into Movie values(102, 'Star Wars', 1977, 'George Lucas'); +insert into Movie values(103, 'The Sound of Music', 1965, 'Robert Wise'); +insert into Movie values(104, 'E.T.', 1982, 'Steven Spielberg'); +insert into Movie values(105, 'Titanic', 1997, 'James Cameron'); +insert into Movie values(106, 'Snow White', 1937, null); +insert into Movie values(107, 'Avatar', 2009, 'James Cameron'); +insert into Movie values(108, 'Raiders of the Lost Ark', 1981, 'Steven Spielberg'); + +insert into Reviewer values(201, 'Sarah Martinez'); +insert into Reviewer values(202, 'Daniel Lewis'); +insert into Reviewer values(203, 'Brittany Harris'); +insert into Reviewer values(204, 'Mike Anderson'); +insert into Reviewer values(205, 'Chris Jackson'); +insert into Reviewer values(206, 'Elizabeth Thomas'); +insert into Reviewer values(207, 'James Cameron'); +insert into Reviewer values(208, 'Ashley White'); + +insert into Rating values(201, 101, 2, '2011-01-22'); +insert into Rating values(201, 101, 4, '2011-01-27'); +insert into Rating values(202, 106, 4, null); +insert into Rating values(203, 103, 2, '2011-01-20'); +insert into Rating values(203, 108, 4, '2011-01-12'); +insert into Rating values(203, 108, 2, '2011-01-30'); +insert into Rating values(204, 101, 3, '2011-01-09'); +insert into Rating values(205, 103, 3, '2011-01-27'); +insert into Rating values(205, 104, 2, '2011-01-22'); +insert into Rating values(205, 108, 4, null); +insert into Rating values(206, 107, 3, '2011-01-15'); +insert into Rating values(206, 106, 5, '2011-01-19'); +insert into Rating values(207, 107, 5, '2011-01-20'); +insert into Rating values(208, 104, 3, '2011-01-02'); diff --git a/database/museum_visit/museum_visit.sqlite b/database/museum_visit/museum_visit.sqlite new file mode 100644 index 0000000000000000000000000000000000000000..36aa825e1c8afbce191539deb070c5bf0a076287 Binary files /dev/null and b/database/museum_visit/museum_visit.sqlite differ diff --git a/database/museum_visit/schema.sql b/database/museum_visit/schema.sql new file mode 100644 index 0000000000000000000000000000000000000000..34deb8692882e4e60700b688ee1c1632867e34e3 --- /dev/null +++ b/database/museum_visit/schema.sql @@ -0,0 +1,56 @@ + +PRAGMA foreign_keys = ON; + +CREATE TABLE "museum" ( +"Museum_ID" int, +"Name" text, +"Num_of_Staff" int, +"Open_Year" text, +PRIMARY KEY ("Museum_ID") +); + + + +INSERT INTO "museum" VALUES ("1","Plaza Museum","62","2000"); +INSERT INTO "museum" VALUES ("2","Capital Plaza Museum","25","2012"); +INSERT INTO "museum" VALUES ("3","Jefferson Development Museum","18","2010"); +INSERT INTO "museum" VALUES ("4","Willow Grande Museum","17","2011"); +INSERT INTO "museum" VALUES ("5","RiverPark Museum","16","2008"); +INSERT INTO "museum" VALUES ("6","Place Tower Museum","16","2008"); +INSERT INTO "museum" VALUES ("7","Central City District Residential Museum","15","2010"); +INSERT INTO "museum" VALUES ("8","ZirMed Gateway Museum","12","2009"); + +CREATE TABLE "visitor" ( +"ID" int, +"Name" text, +"Level_of_membership" int, +"Age" int, +PRIMARY KEY ("ID") +); + +INSERT INTO "visitor" VALUES (1,"Gonzalo Higuaín ",8,35); +INSERT INTO "visitor" VALUES (2,"Guti Midfielder",5,28); +INSERT INTO "visitor" VALUES (3,"Arjen Robben",1,27); +INSERT INTO "visitor" VALUES (4,"Raúl Brown",2,56); +INSERT INTO "visitor" VALUES (5,"Fernando Gago",6,36); +INSERT INTO "visitor" VALUES (6,"Rafael van der Vaart",1,25); + +CREATE TABLE "visit" ( +"Museum_ID" int, +"visitor_ID" text, +"Num_of_Ticket" int, +"Total_spent" real, +PRIMARY KEY ("Museum_ID","visitor_ID"), +FOREIGN KEY ("Museum_ID") REFERENCES `museum`("Museum_ID"), +FOREIGN KEY ("visitor_ID") REFERENCES `visitor`("ID") +); + +INSERT INTO "visit" VALUES (1,5,20,320.14); +INSERT INTO "visit" VALUES (2,5,4,89.98); +INSERT INTO "visit" VALUES (4,3,10,320.44); +INSERT INTO "visit" VALUES (2,3,24,209.98); +INSERT INTO "visit" VALUES (4,6,3,20.44); +INSERT INTO "visit" VALUES (8,6,2,19.98); + + + diff --git a/database/music_1/music_1.sqlite b/database/music_1/music_1.sqlite new file mode 100644 index 0000000000000000000000000000000000000000..1fcca9786e67b5d3b1abf4809c5f492cb8c27380 Binary files /dev/null and b/database/music_1/music_1.sqlite differ diff --git a/database/music_1/schema.sql b/database/music_1/schema.sql new file mode 100644 index 0000000000000000000000000000000000000000..3a6f8fa4d426e5f74cafb5151beb45a562a0ca80 --- /dev/null +++ b/database/music_1/schema.sql @@ -0,0 +1,79 @@ + +--data definition + +create table genre( + g_name varchar2(20) not null, + rating varchar2(10), + most_popular_in varchar2(50), + primary key(g_name) +); + +create table artist( + artist_name varchar2(50) not null, + country varchar2(20), + gender varchar2(20), + preferred_genre varchar2(50), + constraint a_name primary key(artist_name), + foreign key(preferred_genre) references genre(g_name) ON DELETE CASCADE +); + +create table files( + f_id number(10) not null, + artist_name varchar2(50), + file_size varchar2(20), + duration varchar2(20), + formats varchar2(20), + primary key(f_id), + foreign key(artist_name) references artist(artist_name) ON DELETE CASCADE +); + + +create table song( + song_name varchar2(50), + artist_name varchar2(50), + country varchar2(20), + f_id number(10), + genre_is varchar2(20), + rating number(10) check(rating>0 and rating<11), + languages varchar2(20), + releasedate Date, + resolution number(10) not null, + constraint s_name primary key(song_name), + foreign key(artist_name) references artist(artist_name) ON DELETE CASCADE, + foreign key(f_id) references files(f_id) ON DELETE CASCADE, + foreign key(genre_is) references genre(g_name) ON DELETE CASCADE +); + + +--insertion of attributes in the table + + +insert into genre(g_name,rating,most_popular_in) values ('tagore','8','Bangladesh'); +insert into genre values ('nazrul','7','Bangladesh'); +insert into genre values ('folk','9','Sylhet,Chittagong,Kustia'); +insert into genre values ('modern','8','Bangladesh'); +insert into genre values ('blues','7','Canada'); +insert into genre values ('pop','9','America'); + + +insert into artist(artist_name,country,gender,preferred_genre) values('Shrikanta','India','Male','tagore'); +insert into artist values('Prity','Bangladesh','Female','nazrul'); +insert into artist values('Farida','Bangladesh','Female','folk'); +insert into artist values('Topu','India','Female','modern'); +insert into artist values('Enrique','USA','Male','blues'); +insert into artist values('Michel','UK','Male','pop'); + + +insert into files(f_id,artist_name,file_size,duration,formats) values (1,'Shrikanta','3.78 MB','3:45','mp4'); +insert into files values (2,'Prity','4.12 MB','2:56','mp3'); +insert into files values (3,'Farida','3.69 MB','4:12','mp4'); +insert into files values (4,'Enrique','4.58 MB','5:23','mp4'); +insert into files values (5,'Michel','5.10 MB','4:34','mp3'); +insert into files values (6,'Topu','4.10 MB','4:30','mp4'); + +insert into song(song_name,artist_name,country,f_id,genre_is,rating,languages,releasedate,resolution) values ('Tumi robe nirobe','Shrikanta','India','1','tagore','8','bangla','28-AUG-2011',1080); +insert into song values ('Shukno patar nupur pae','Prity','Bangladesh','2','nazrul','5','bangla','21-SEP-1997',512); +insert into song values ('Ami opar hoye','Farida','Bangladesh','3','folk','7','bangla','7-APR-2001',320); +insert into song values ('My love','Enrique','USA','4','blues','6','english','24-JAN-2007',1080); +insert into song values ('Just beat it','Michel','UK','5','pop','8','english','17-MAR-2002',720); +insert into song values ('Aj ei akash','Topu','India','6','modern','10','bangla','27-MAR-2004',320); diff --git a/database/music_2/music_2.sqlite b/database/music_2/music_2.sqlite new file mode 100644 index 0000000000000000000000000000000000000000..ffa690bd9f4257c71900b9cdd9a2fec0f7d347cd Binary files /dev/null and b/database/music_2/music_2.sqlite differ diff --git a/database/music_2/schema.sql b/database/music_2/schema.sql new file mode 100644 index 0000000000000000000000000000000000000000..3d1ec72b8abc0b8e8ad4661b7c6f2e38e725cd93 --- /dev/null +++ b/database/music_2/schema.sql @@ -0,0 +1,49 @@ + + +CREATE TABLE "Songs" ( + "SongId" INTEGER PRIMARY KEY, + "Title" TEXT +); +CREATE TABLE "Albums" ( + "AId" INTEGER PRIMARY KEY, + "Title" TEXT, + "Year" INTEGER, + "Label" TEXT, + "Type" TEXT ); +CREATE TABLE "Band" ( + "Id" INTEGER PRIMARY KEY, + "Firstname" TEXT, + "Lastname" TEXT ); +CREATE TABLE "Instruments" ( + "SongId" INTEGER, + "BandmateId" INTEGER, + "Instrument" TEXT , + PRIMARY KEY(SongId, BandmateId, Instrument), + FOREIGN KEY (SongId) REFERENCES Songs(SongId), + FOREIGN KEY (BandmateId) REFERENCES Band(Id) +); +CREATE TABLE "Performance" ( + "SongId" INTEGER, + "Bandmate" INTEGER, + "StagePosition" TEXT, + PRIMARY KEY(SongId, Bandmate), + FOREIGN KEY (SongId) REFERENCES Songs(SongId), + FOREIGN KEY (Bandmate) REFERENCES Band(Id) +); +CREATE TABLE "Tracklists" ( + "AlbumId" INTEGER, + "Position" INTEGER, + "SongId" INTEGER , + PRIMARY KEY(AlbumId, Position), + FOREIGN KEY (SongId) REFERENCES Songs(SongId), + FOREIGN KEY (AlbumId) REFERENCES Albums(AId) +); +CREATE TABLE "Vocals" ( + "SongId" INTEGER, + "Bandmate" INTEGER, + "Type" TEXT, + PRIMARY KEY(SongId, Bandmate), + FOREIGN KEY (SongId) REFERENCES Songs(SongId), + FOREIGN KEY (Bandmate) REFERENCES Band(Id) +); + diff --git a/database/music_4/music_4.sqlite b/database/music_4/music_4.sqlite new file mode 100644 index 0000000000000000000000000000000000000000..87d4bf6495f97d2296d2fee674dfc82841fbdca0 Binary files /dev/null and b/database/music_4/music_4.sqlite differ diff --git a/database/music_4/schema.sql b/database/music_4/schema.sql new file mode 100644 index 0000000000000000000000000000000000000000..0617ce0879bd102f30d6b5c2387e821ff1639a03 --- /dev/null +++ b/database/music_4/schema.sql @@ -0,0 +1,69 @@ +PRAGMA foreign_keys = ON; + +CREATE TABLE "artist" ( + "Artist_ID" int, + "Artist" text, + "Age" int, + "Famous_Title" text, + "Famous_Release_date" text, + PRIMARY KEY ("Artist_ID") +); + + + +CREATE TABLE "volume" ( + "Volume_ID" int, + "Volume_Issue" text, + "Issue_Date" text, + "Weeks_on_Top" real, + "Song" text, + "Artist_ID" int, + PRIMARY KEY ("Volume_ID"), + FOREIGN KEY (`Artist_ID`) REFERENCES `artist`(`Artist_ID`) +); + + + + +INSERT INTO "artist" VALUES (1,"Gorgoroth",34,"Bergen 1996","November 2007"); +INSERT INTO "artist" VALUES (2,"Ophiolatry",35,"Transmutation","January 21, 2008"); +INSERT INTO "artist" VALUES (3,"Ophiolatry",22,"Antievangelistical Process (re-release)","2009"); +INSERT INTO "artist" VALUES (4,"Black Flame",18,"Imperivm","June 23, 2008"); +INSERT INTO "artist" VALUES (5,"Tangorodrim",35,"Unholy Metal Way (re-release)","2009"); +INSERT INTO "artist" VALUES (6,"Tangorodrim",27,"Those Who Unleashed (re-release)","2009"); +INSERT INTO "artist" VALUES (7,"Triumfall",49,"Antithesis of All Flesh","June 15, 2009"); + + +INSERT INTO "volume" VALUES (1,"45:14 §","27 December 1986 - 10 January","3"," The Way",1); +INSERT INTO "volume" VALUES (2,"45:15","17 January","1"," Everybody Have Fun Tonight ",2); +INSERT INTO "volume" VALUES (3,"45:16","24 January","1"," Walk Like an Egyptian ",1); +INSERT INTO "volume" VALUES (4,"45:21-22","28 February - 7 March","2"," Touch Me (I Want Your Body) ",2); +INSERT INTO "volume" VALUES (5,"46:5","9 May","1"," With or Without You ",1); +INSERT INTO "volume" VALUES (6,"46:6-8","16 May - 30 May","3"," (I Just) Died in Your Arms ",1); +INSERT INTO "volume" VALUES (7,"46:9","6 June","1"," La Isla Bonita ",4); +INSERT INTO "volume" VALUES (8,"46:10","13 June","1","Looking for a New Love",5); +INSERT INTO "volume" VALUES (9,"46:14-15","11 July - 18 July","2"," Always ",6); +INSERT INTO "volume" VALUES (10,"46:16","25 July","1","Head to Toe ",5); + + + +CREATE TABLE "music_festival" ( + "ID" int, + "Music_Festival" text, + "Date_of_ceremony" text, + "Category" text, + "Volume" int, + "Result" text, + PRIMARY KEY (`ID`), + FOREIGN KEY (`Volume`) REFERENCES `volume`(`Volume_ID`) +); + +INSERT INTO "music_festival" VALUES (1,"34th England Academy Prize","18 February 2011","Best Song",1,"Nominated"); +INSERT INTO "music_festival" VALUES (2,"34th Japan Academy Prize","18 February 2011","Best Lyrics",2,"Nominated"); +INSERT INTO "music_festival" VALUES (3,"34th European Academy Prize","18 February 2011","Best Song",3,"Awarded"); +INSERT INTO "music_festival" VALUES (4,"36th Japan Academy Prize","18 February 2011","Best Song",4,"Awarded"); +INSERT INTO "music_festival" VALUES (5,"34th USA Academy Prize","18 February 2011","Best Song",5,"Nominated"); +INSERT INTO "music_festival" VALUES (6,"40th Japan Academy Prize","18 February 2011","Best Song",6,"Nominated"); +INSERT INTO "music_festival" VALUES (7,"37th Sweden Academy Prize","18 February 2011","Best Lyrics",7,"Nominated"); +INSERT INTO "music_festival" VALUES (8,"37th Canadian Academy Prize","18 February 2011","Best Lyrics",8,"Nominated"); +INSERT INTO "music_festival" VALUES (9,"35th China Academy Prize","18 February 2011","Best Sound Song",9,"Awarded"); diff --git a/database/musical/musical.sqlite b/database/musical/musical.sqlite new file mode 100644 index 0000000000000000000000000000000000000000..0a90d9f4d76e71545681745f830c55d80905ac82 Binary files /dev/null and b/database/musical/musical.sqlite differ diff --git a/database/musical/schema.sql b/database/musical/schema.sql new file mode 100644 index 0000000000000000000000000000000000000000..a359de42a65db1c37cf255e94aa6bb3cc22d4fe1 --- /dev/null +++ b/database/musical/schema.sql @@ -0,0 +1,42 @@ +PRAGMA foreign_keys = ON; + +CREATE TABLE "musical" ( +"Musical_ID" int, +"Name" text, +"Year" int, +"Award" text, +"Category" text, +"Nominee" text, +"Result" text, +PRIMARY KEY ("Musical_ID") +); + +CREATE TABLE "actor" ( +"Actor_ID" int, +"Name" text, +"Musical_ID" int, +"Character" text, +"Duration" text, +"age" int, +PRIMARY KEY ("Actor_ID"), +FOREIGN KEY ("Musical_ID") REFERENCES "actor"("Actor_ID") +); + +INSERT INTO "musical" VALUES (1,"The Phantom of the Opera","1986","Tony Award","Best Book of a Musical","Bob Fosse","Nominated"); +INSERT INTO "musical" VALUES (2,"Les Misérables","1986","Tony Award","Best Performance by a Leading Actor in a Musical","Cleavant Derricks","Nominated"); +INSERT INTO "musical" VALUES (3,"Wicked","1986","Tony Award","Best Direction of a Musical","Bob Fosse","Nominated"); +INSERT INTO "musical" VALUES (4,"West Side Story","1986","Tony Award","Best Choreography","Bob Fosse","Won"); +INSERT INTO "musical" VALUES (5,"Rent","1986","Drama Desk Award","Outstanding Actor in a Musical","Cleavant Derricks","Nominated"); +INSERT INTO "musical" VALUES (6,"The Book of Mormon","1986","Drama Desk Award","Outstanding Director of a Musical","Bob Fosse","Nominated"); +INSERT INTO "musical" VALUES (7,"Chicago","1986","Drama Desk Award","Outstanding Choreography","Bob Fosse","Won"); + +INSERT INTO "actor" VALUES (1,"Ray Meagher",1,"Alf Stewart","1988—","26"); +INSERT INTO "actor" VALUES (2,"Tom Oliver",1,"Lou Carpenter","1988, 1992—","22"); +INSERT INTO "actor" VALUES (3,"Lynne McGranger",2,"Irene Roberts","1993—","21"); +INSERT INTO "actor" VALUES (4,"Kate Ritchie",2,"Sally Fletcher","1988–2008, 2013","20"); +INSERT INTO "actor" VALUES (5,"Alan Fletcher",4,"Karl Kennedy","1994—","20"); +INSERT INTO "actor" VALUES (6,"Jackie Woodburne",6,"Susan Kennedy","1994—","20"); +INSERT INTO "actor" VALUES (7,"Ryan Moloney",6,"Toadfish Rebecchi","1995, 1996—","18"); +INSERT INTO "actor" VALUES (8,"Ian Smith",6,"Harold Bishop","1987–1991, 1996–2009, 2011","17"); +INSERT INTO "actor" VALUES (9,"Stefan Dennis",6,"Paul Robinson","1985–1992, 1993, 2004—","17"); + diff --git a/database/network_1/network_1.sqlite b/database/network_1/network_1.sqlite new file mode 100644 index 0000000000000000000000000000000000000000..8eac1cc841cf49a0b596a7df232e6cb8b3fde723 Binary files /dev/null and b/database/network_1/network_1.sqlite differ diff --git a/database/network_1/schema.sql b/database/network_1/schema.sql new file mode 100644 index 0000000000000000000000000000000000000000..a838a93400b1f970d8f92921aa61b22ea5d51825 --- /dev/null +++ b/database/network_1/schema.sql @@ -0,0 +1,76 @@ +-- dbext:type=SQLITE:dbname=social.db + +/* Delete the tables if they already exist */ +drop table if exists Highschooler; +drop table if exists Friend; +drop table if exists Likes; + +/* Create the schema for our tables */ +create table Highschooler( + ID int primary key, + name text, + grade int); +create table Friend( + student_id int, + friend_id int, + primary key (student_id,friend_id), + foreign key(student_id) references Highschooler(ID), + foreign key (friend_id) references Highschooler(ID) +); +create table Likes( + student_id int, + liked_id int, + primary key (student_id, liked_id), + foreign key (liked_id) references Highschooler(ID), + foreign key (student_id) references Highschooler(ID) +); + +/* Populate the tables with our data */ +insert into Highschooler values (1510, 'Jordan', 9); +insert into Highschooler values (1689, 'Gabriel', 9); +insert into Highschooler values (1381, 'Tiffany', 9); +insert into Highschooler values (1709, 'Cassandra', 9); +insert into Highschooler values (1101, 'Haley', 10); +insert into Highschooler values (1782, 'Andrew', 10); +insert into Highschooler values (1468, 'Kris', 10); +insert into Highschooler values (1641, 'Brittany', 10); +insert into Highschooler values (1247, 'Alexis', 11); +insert into Highschooler values (1316, 'Austin', 11); +insert into Highschooler values (1911, 'Gabriel', 11); +insert into Highschooler values (1501, 'Jessica', 11); +insert into Highschooler values (1304, 'Jordan', 12); +insert into Highschooler values (1025, 'John', 12); +insert into Highschooler values (1934, 'Kyle', 12); +insert into Highschooler values (1661, 'Logan', 12); + +insert into Friend values (1510, 1381); +insert into Friend values (1510, 1689); +insert into Friend values (1689, 1709); +insert into Friend values (1381, 1247); +insert into Friend values (1709, 1247); +insert into Friend values (1689, 1782); +insert into Friend values (1782, 1468); +insert into Friend values (1782, 1316); +insert into Friend values (1782, 1304); +insert into Friend values (1468, 1101); +insert into Friend values (1468, 1641); +insert into Friend values (1101, 1641); +insert into Friend values (1247, 1911); +insert into Friend values (1247, 1501); +insert into Friend values (1911, 1501); +insert into Friend values (1501, 1934); +insert into Friend values (1316, 1934); +insert into Friend values (1934, 1304); +insert into Friend values (1304, 1661); +insert into Friend values (1661, 1025); + +insert into Likes values(1689, 1709); +insert into Likes values(1709, 1689); +insert into Likes values(1782, 1709); +insert into Likes values(1911, 1247); +insert into Likes values(1247, 1468); +insert into Likes values(1641, 1468); +insert into Likes values(1316, 1304); +insert into Likes values(1501, 1934); +insert into Likes values(1934, 1501); +insert into Likes values(1025, 1101); diff --git a/database/network_2/network_2.sqlite b/database/network_2/network_2.sqlite new file mode 100644 index 0000000000000000000000000000000000000000..115a096f3d6083b943f78ddc680ec8dd2f14a257 Binary files /dev/null and b/database/network_2/network_2.sqlite differ diff --git a/database/network_2/schema.sql b/database/network_2/schema.sql new file mode 100644 index 0000000000000000000000000000000000000000..ff66d09ca85acc9aec93a49a412e943c11eb2cdc --- /dev/null +++ b/database/network_2/schema.sql @@ -0,0 +1,25 @@ +CREATE TABLE Person ( + name varchar(20) PRIMARY KEY, + age INTEGER, + city TEXT, + gender TEXT, + job TEXT +); + +CREATE TABLE PersonFriend ( + name varchar(20), + friend varchar(20), + year INTEGER, + FOREIGN KEY (name) REFERENCES Person(name), + FOREIGN KEY (friend) REFERENCES Person(name) +); + +INSERT INTO Person VALUES ('Alice',25,'new york city','female','student'); +INSERT INTO Person VALUES ('Bob',35,'salt lake city','male','engineer'); +INSERT INTO Person VALUES ('Zach', 45,'austin','male','doctor'); + INSERT INTO Person VALUES ('Dan',26,'chicago','female','student'); + +INSERT INTO PersonFriend VALUES ('Alice','Bob',10); +INSERT INTO PersonFriend VALUES ('Zach','Dan', 12); +INSERT INTO PersonFriend VALUES ('Bob','Zach', 5); +INSERT INTO PersonFriend VALUES ('Zach','Alice', 6); diff --git a/database/new_concert_singer/new_concert_singer.sqlite b/database/new_concert_singer/new_concert_singer.sqlite new file mode 100644 index 0000000000000000000000000000000000000000..6e251e59edc0b9d22965682a005f924bf0b28208 Binary files /dev/null and b/database/new_concert_singer/new_concert_singer.sqlite differ diff --git a/database/new_concert_singer/schema.sql b/database/new_concert_singer/schema.sql new file mode 100644 index 0000000000000000000000000000000000000000..70aade3a71142d8898015540c2da6e722ee62842 --- /dev/null +++ b/database/new_concert_singer/schema.sql @@ -0,0 +1,53 @@ +PRAGMA foreign_keys = ON; + + +CREATE TABLE `stadium` (`Stadium_ID` int,`Location` text,`Name` text,`Capacity` int,`Highest` int,`Lowest` int,`Average` int,PRIMARY KEY (`Stadium_ID`)); + + +INSERT INTO "stadium" VALUES (1,"Raith Rovers","Stark's Park","10104","4812","1294","2106"); +INSERT INTO "stadium" VALUES (2,"Ayr United","Somerset Park","11998","2363","1057","1477"); +INSERT INTO "stadium" VALUES (3,"East Fife","Bayview Stadium","2000","1980","533","864"); +INSERT INTO "stadium" VALUES (4,"Queen's Park","Hampden Park","52500","1763","466","730"); +INSERT INTO "stadium" VALUES (5,"Stirling Albion","Forthbank Stadium","3808","1125","404","642"); +INSERT INTO "stadium" VALUES (6,"Arbroath","Gayfield Park","4125","921","411","638"); +INSERT INTO "stadium" VALUES (7,"Alloa Athletic","Recreation Park","3100","1057","331","637"); +INSERT INTO "stadium" VALUES (9,"Peterhead","Balmoor","4000","837","400","615"); +INSERT INTO "stadium" VALUES (10,"Brechin City","Glebe Park","3960","780","315","552"); + +CREATE TABLE "singer" ("Singer_ID" int,"Name" text,"Country" text,"Song_Name" text,"Song_release_year" text,"Birthday" TIMESTAMP,"Is_male" bool,PRIMARY KEY ("Singer_ID")); + + + +INSERT INTO "singer" VALUES (1,"Joe Sharp","Netherlands","You","1992",'1971-02-09 00:00:00',"F"); +INSERT INTO "singer" VALUES (2,"Timbaland","United States","Dangerous","2008",'1989-02-19 00:00:00',"T"); +INSERT INTO "singer" VALUES (3,"Justin Brown","France","Hey Oh","2013",'1992-12-09 00:00:00',"T"); +INSERT INTO "singer" VALUES (4,"Rose White","France","Sun","2003",'1981-03-03 00:00:00',"F"); +INSERT INTO "singer" VALUES (5,"John Nizinik","France","Gentleman","2014",'1970-05-09 00:00:00',"T"); +INSERT INTO "singer" VALUES (6,"Tribal King","France","Love","2016",'1996-12-29 00:00:00',"T"); + + +CREATE TABLE "concert" ("concert_ID" int,"concert_Name" text,"Theme" text,"Stadium_ID" text,"Year" text,PRIMARY KEY ("concert_ID"),FOREIGN KEY ("Stadium_ID") REFERENCES "stadium"("Stadium_ID")); + + + +INSERT INTO "concert" VALUES (1,"Auditions","Free choice",1,2014); +INSERT INTO "concert" VALUES (2,"Super bootcamp","Free choice 2",2,2014); +INSERT INTO "concert" VALUES (3,"Home Visits","Bleeding Love",2,2015); +INSERT INTO "concert" VALUES (4,"Week 1","Wide Awake",10,2014); +INSERT INTO "concert" VALUES (5,"Week 1","Happy Tonight",9,2015); +INSERT INTO "concert" VALUES (6,"Week 2","Party All Night",7,2015); + + +CREATE TABLE "singer_in_concert" ("concert_ID" int,"Singer_ID" text,PRIMARY KEY ("concert_ID","Singer_ID"),FOREIGN KEY ("concert_ID") REFERENCES "concert"("concert_ID"),FOREIGN KEY ("Singer_ID") REFERENCES "singer"("Singer_ID")); + +INSERT INTO "singer_in_concert" VALUES (1, 2); +INSERT INTO "singer_in_concert" VALUES (1, 3); +INSERT INTO "singer_in_concert" VALUES (1, 5); +INSERT INTO "singer_in_concert" VALUES (2, 3); +INSERT INTO "singer_in_concert" VALUES (2, 6); +INSERT INTO "singer_in_concert" VALUES (3, 5); +INSERT INTO "singer_in_concert" VALUES (4, 4); +INSERT INTO "singer_in_concert" VALUES (5, 6); +INSERT INTO "singer_in_concert" VALUES (5, 3); +INSERT INTO "singer_in_concert" VALUES (6, 2); + diff --git a/database/new_orchestra/new_orchestra.sqlite b/database/new_orchestra/new_orchestra.sqlite new file mode 100644 index 0000000000000000000000000000000000000000..54f678cd64de4247f167a8b156e8d5fde86d0f3a Binary files /dev/null and b/database/new_orchestra/new_orchestra.sqlite differ diff --git a/database/new_orchestra/schema.sql b/database/new_orchestra/schema.sql new file mode 100644 index 0000000000000000000000000000000000000000..216e770ab67b8618b9df532da351ea9a28177ef6 --- /dev/null +++ b/database/new_orchestra/schema.sql @@ -0,0 +1,63 @@ + +PRAGMA foreign_keys = ON; + + + +CREATE TABLE "conductor" ("Conductor_ID" int,"Name" text,"birthday" TIMESTAMP,"Nationality" text,"Year_of_Work" int,PRIMARY KEY ("Conductor_ID")); + + +INSERT INTO "conductor" VALUES (1,"Antal Doráti",'1981-02-09 00:00:00',"USA",10); +INSERT INTO "conductor" VALUES (2,"Igor Stravinsky",'1980-01-09 00:00:00',"UK",11); +INSERT INTO "conductor" VALUES (3,"Colin Davis",'1979-02-19 00:00:00',"USA",6); +INSERT INTO "conductor" VALUES (4,"Paul Jorgensen",'1978-04-09 00:00:00',"UK",11); +INSERT INTO "conductor" VALUES (5,"Antal Brown",'1978-10-19 00:00:00',"USA",20); +INSERT INTO "conductor" VALUES (6,"Charles Dutoit",'1978-01-09 00:00:00',"France",12); + +INSERT INTO "conductor" VALUES (7,"Gerard Schwarz",'1971-11-12 00:00:00',"USA",20); +INSERT INTO "conductor" VALUES (8,"Pierre Boulez",'1972-05-21 00:00:00',"UK",11); +INSERT INTO "conductor" VALUES (9,"Valeri Gergiev",'1976-12-09 00:00:00',"USA",16); +INSERT INTO "conductor" VALUES (10,"Robert Craft",'1958-04-09 00:00:00',"UK",21); +INSERT INTO "conductor" VALUES (11,"Seiji Ozawa",'1978-02-02 00:00:00',"USA",10); +INSERT INTO "conductor" VALUES (12,"Michael Tilson Thomas",'1981-11-09 00:00:00',"France",12); + + + + +CREATE TABLE "orchestra" ("Orchestra_ID" int,"Orchestra" text,"Conductor_ID" int,"Record_Company" text,"Year_of_Founded" real,"Major_Record_Format" text,PRIMARY KEY ("Orchestra_ID"),FOREIGN KEY (`Conductor_ID`) REFERENCES `conductor`(`Conductor_ID`)); + +CREATE TABLE "performance" ("Performance_ID" int,"Orchestra_ID" int,"Type" text,"Date" text,"Official_ratings_(millions)" real,"Weekly_rank" text,"Share" text,PRIMARY KEY ("Performance_ID"),FOREIGN KEY (`Orchestra_ID`) REFERENCES `orchestra`(`Orchestra_ID`)); + +CREATE TABLE "show" ("Show_ID" int,"Performance_ID" int,"Result" text,"If_first_show" bool,"Attendance" real,FOREIGN KEY (`Performance_ID`) REFERENCES `performance`(`Performance_ID`)); + + + +INSERT INTO "orchestra" VALUES (1,"London Symphony Orchestra",1,"Mercury Records","2003","CD"); +INSERT INTO "orchestra" VALUES (2,"Columbia Symphony Orchestra",2,"Columbia Masterworks","2009","CD / LP"); +INSERT INTO "orchestra" VALUES (3,"Royal Concertgebouw Orchestra",3,"Philips","2008","CD"); +INSERT INTO "orchestra" VALUES (4,"Royal Danish Orchestra",4,"Kultur","2002","DVD"); +INSERT INTO "orchestra" VALUES (5,"Detroit Symphony Orchestra",5,"Decca Records","2002","CD"); +INSERT INTO "orchestra" VALUES (6,"Montreal Symphony Orchestra",6,"Decca Records","2004","CD"); +INSERT INTO "orchestra" VALUES (7,"Seattle Symphony Orchestra",7,"Delos Records","2002","CD"); +INSERT INTO "orchestra" VALUES (8,"Chicago Symphony Orchestra",8,"Deutsche Grammophon","2003","CD"); +INSERT INTO "orchestra" VALUES (9,"Kirov Orchestra",9,"Philips Classics Records","2008","CD"); +INSERT INTO "orchestra" VALUES (10,"Philharmonia Orchestra",10,"Koch Records / Naxos Records","2006","CD"); +INSERT INTO "orchestra" VALUES (11,"Orchestre de Paris",11,"EMI","2007","CD"); +INSERT INTO "orchestra" VALUES (12,"San Francisco Symphony Orchestra",12,"RCA","2008","CD"); + +INSERT INTO "performance" VALUES (1,1,"Auditions 1","9 June","5.20","12","22.7%"); +INSERT INTO "performance" VALUES (2,2,"Auditions 2","10 June","6.73","8","28.0%"); +INSERT INTO "performance" VALUES (3,3,"Auditions 3","11 June","7.28","15","29.4%"); +INSERT INTO "performance" VALUES (4,4,"Auditions 4","12 June","7.39","13","29.3%"); +INSERT INTO "performance" VALUES (5,5,"Auditions 5","13 June","7.51","11","29.2%"); +INSERT INTO "performance" VALUES (11,11,"Semi-final 1","14 June","8.36","9","34.0%"); +INSERT INTO "performance" VALUES (6,6,"Semi-final 2","15 June","9.28","8","38.1%"); +INSERT INTO "performance" VALUES (7,7,"Semi-final 3","16 June","9.29","7","40.9%"); +INSERT INTO "performance" VALUES (8,8,"Live final","17 June","11.58","1","43.7%"); +INSERT INTO "performance" VALUES (9,9,"Live final results","17 June","11.45","2","44.7%"); +INSERT INTO "performance" VALUES (10,10,"Series average","2007","8.38","TBC","34%"); + +INSERT INTO "show" VALUES (1,1,"Glebe Park","T","1026"); +INSERT INTO "show" VALUES (2,2,"Fir Park","T","695"); +INSERT INTO "show" VALUES (3,3,"St. Mirren Park","F","555"); +INSERT INTO "show" VALUES (4,4,"St. Mirren Park","F","1925"); +INSERT INTO "show" VALUES (5,5,"Hampden Park","T","2431"); diff --git a/database/new_pets_1/new_pets_1.sqlite b/database/new_pets_1/new_pets_1.sqlite new file mode 100644 index 0000000000000000000000000000000000000000..c32404bf7b89e19e501b0d9d04684a4aefb8c156 Binary files /dev/null and b/database/new_pets_1/new_pets_1.sqlite differ diff --git a/database/new_pets_1/schema.sql b/database/new_pets_1/schema.sql new file mode 100644 index 0000000000000000000000000000000000000000..96cc1ce86bca4de25fbb0aef1b10bc0c4726e658 --- /dev/null +++ b/database/new_pets_1/schema.sql @@ -0,0 +1,49 @@ +create table Student ( StuID INTEGER PRIMARY KEY, LName VARCHAR(12), Fname VARCHAR(12), Age INTEGER, Sex VARCHAR(1), Major INTEGER, Advisor INTEGER, city_code VARCHAR(3)); + +create table Has_Pet ( StuID INTEGER, PetID INTEGER, FOREIGN KEY(PetID) REFERENCES Pets(PetID), FOREIGN KEY(StuID) REFERENCES Student(StuID)); + +create table Pets ( PetID INTEGER PRIMARY KEY, PetType VARCHAR(20), birthdate TIMESTAMP, weight REAL); + +insert into Student values ( 1001, 'Smith', 'Linda', 18, 'F', 600, 1121,'BAL'); +insert into Student values ( 1002, 'Kim', 'Tracy', 19, 'F', 600, 7712,'HKG'); +insert into Student values ( 1003, 'Jones', 'Shiela', 21, 'F', 600, 7792,'WAS'); +insert into Student values ( 1004, 'Kumar', 'Dinesh', 20, 'M', 600, 8423,'CHI'); +insert into Student values ( 1005, 'Gompers', 'Paul', 26, 'M', 600, 1121,'YYZ'); +insert into Student values ( 1006, 'Schultz', 'Andy', 18, 'M', 600, 1148,'BAL'); +insert into Student values ( 1007, 'Apap', 'Lisa', 18, 'F', 600, 8918,'PIT'); +insert into Student values ( 1008, 'Nelson', 'Jandy', 20, 'F', 600, 9172,'BAL'); +insert into Student values ( 1009, 'Tai', 'Eric', 19, 'M', 600, 2192,'YYZ'); +insert into Student values ( 1010, 'Lee', 'Derek', 17, 'M', 600, 2192,'HOU'); +insert into Student values ( 1011, 'Adams', 'David', 22, 'M', 600, 1148,'PHL'); +insert into Student values ( 1012, 'Davis', 'Steven', 20, 'M', 600, 7723,'PIT'); +insert into Student values ( 1014, 'Norris', 'Charles', 18, 'M', 600, 8741, 'DAL'); +insert into Student values ( 1015, 'Lee', 'Susan', 16, 'F', 600, 8721,'HKG'); +insert into Student values ( 1016, 'Schwartz', 'Mark', 17, 'M', 600, 2192,'DET'); +insert into Student values ( 1017, 'Wilson', 'Bruce', 27, 'M', 600, 1148,'LON'); +insert into Student values ( 1018, 'Leighton', 'Michael', 20, 'M', 600, 1121, 'PIT'); +insert into Student values ( 1019, 'Pang', 'Arthur', 18, 'M', 600, 2192,'WAS'); +insert into Student values ( 1020, 'Thornton', 'Ian', 22, 'M', 520, 7271,'NYC'); +insert into Student values ( 1021, 'Andreou', 'George', 19, 'M', 520, 8722, 'NYC'); +insert into Student values ( 1022, 'Woods', 'Michael', 17, 'M', 540, 8722,'PHL'); +insert into Student values ( 1023, 'Shieber', 'David', 20, 'M', 520, 8722,'NYC'); +insert into Student values ( 1024, 'Prater', 'Stacy', 18, 'F', 540, 7271,'BAL'); +insert into Student values ( 1025, 'Goldman', 'Mark', 18, 'M', 520, 7134,'PIT'); +insert into Student values ( 1026, 'Pang', 'Eric', 19, 'M', 520, 7134,'HKG'); +insert into Student values ( 1027, 'Brody', 'Paul', 18, 'M', 520, 8723,'LOS'); +insert into Student values ( 1028, 'Rugh', 'Eric', 20, 'M', 550, 2311,'ROC'); +insert into Student values ( 1029, 'Han', 'Jun', 17, 'M', 100, 2311,'PEK'); +insert into Student values ( 1030, 'Cheng', 'Lisa', 21, 'F', 550, 2311,'SFO'); +insert into Student values ( 1031, 'Smith', 'Sarah', 20, 'F', 550, 8772,'PHL'); +insert into Student values ( 1032, 'Brown', 'Eric', 20, 'M', 550, 8772,'ATL'); +insert into Student values ( 1033, 'Simms', 'William', 18, 'M', 550, 8772,'NAR'); +insert into Student values ( 1034, 'Epp', 'Eric', 18, 'M', 050, 5718,'BOS'); +insert into Student values ( 1035, 'Schmidt', 'Sarah', 26, 'F', 050, 5718,'WAS'); + +insert into Has_Pet values ( 1001, 2001 ); +insert into Has_Pet values ( 1002, 2002 ); +insert into Has_Pet values ( 1002, 2003 ); + +insert into Pets values ( 2001, 'cat', '2018-01-09 00:00:00', 12); +insert into Pets values ( 2002, 'dog', '2019-03-09 00:00:00', 13.4); +insert into Pets values ( 2003, 'dog', '2020-02-09 00:00:00', 9.3); + diff --git a/database/news_report/news_report.sqlite b/database/news_report/news_report.sqlite new file mode 100644 index 0000000000000000000000000000000000000000..0d331f4c34c1dee9b4527018c6c59f7320a452a9 Binary files /dev/null and b/database/news_report/news_report.sqlite differ diff --git a/database/news_report/schema.sql b/database/news_report/schema.sql new file mode 100644 index 0000000000000000000000000000000000000000..f8679bd0c7203aea69c04928f59fe78e17ba531a --- /dev/null +++ b/database/news_report/schema.sql @@ -0,0 +1,59 @@ +PRAGMA foreign_keys = ON; + + +CREATE TABLE "event" ( + "Event_ID" int, + "Date" text, + "Venue" text, + "Name" text, + "Event_Attendance" int, + PRIMARY KEY ("Event_ID") +); + +CREATE TABLE "journalist" ( + "journalist_ID" int, + "Name" text, + "Nationality" text, + "Age" text, + "Years_working" int, + PRIMARY KEY ("journalist_ID") +); + +INSERT INTO "event" VALUES (1,"13 October 2008","Marathon","Olympia Games Openning","6650"); +INSERT INTO "event" VALUES (2,"11 October 2007","Victoria","Government Hearing","369"); +INSERT INTO "event" VALUES (3,"7 October 2010","Motagua","Public Debating","1675"); +INSERT INTO "event" VALUES (4,"20 June 2018","Platense","Global Awarding","2356"); +INSERT INTO "event" VALUES (5,"9 April 2014","Hispano","Special Exhibition","225"); + + +INSERT INTO "journalist" VALUES (1,"Herbert Swindells","England",37,10); +INSERT INTO "journalist" VALUES (2,"Fred Keenor","Wales",27,5); +INSERT INTO "journalist" VALUES (3,"George Gilchrist","England",28,6); +INSERT INTO "journalist" VALUES (4,"Jackie Waring","England",43,21); +INSERT INTO "journalist" VALUES (5,"Fred Chandler","England",34,6); +INSERT INTO "journalist" VALUES (6,"Ray Ferris","Northern Ireland",29,3); +INSERT INTO "journalist" VALUES (7,"John Meaney","England",28,7); +INSERT INTO "journalist" VALUES (8,"Tony Waddington","England",43,12); +INSERT INTO "journalist" VALUES (9,"Jack Meaney","England",37,8); +INSERT INTO "journalist" VALUES (10,"Frank Mitcheson","England",33,9); +INSERT INTO "journalist" VALUES (11,"Tom Briggs","England",25,1); + + + +CREATE TABLE "news_report" ( + "journalist_ID" int, + "Event_ID" int, + "Work_Type" text, + PRIMARY KEY ("journalist_ID","Event_ID"), + FOREIGN KEY ("journalist_ID") REFERENCES `journalist`("journalist_ID"), + FOREIGN KEY ("Event_ID") REFERENCES `event`("Event_ID") +); + +INSERT INTO "news_report" VALUES (1,3,"Screening"); +INSERT INTO "news_report" VALUES (11,5,"Screening"); +INSERT INTO "news_report" VALUES (6,1,"Screening"); +INSERT INTO "news_report" VALUES (4,2,"Music"); +INSERT INTO "news_report" VALUES (7,5,"Music"); +INSERT INTO "news_report" VALUES (4,1,"Host"); +INSERT INTO "news_report" VALUES (8,4,"Host"); + diff --git a/database/orchestra/orchestra.sqlite b/database/orchestra/orchestra.sqlite new file mode 100644 index 0000000000000000000000000000000000000000..054d4f92e1512c7eb8699f61b5ead49c82e28594 Binary files /dev/null and b/database/orchestra/orchestra.sqlite differ diff --git a/database/orchestra/schema.sql b/database/orchestra/schema.sql new file mode 100644 index 0000000000000000000000000000000000000000..a3830dfa8918464e0bdff7d37b237991db9a90c3 --- /dev/null +++ b/database/orchestra/schema.sql @@ -0,0 +1,95 @@ + +PRAGMA foreign_keys = ON; + + + +CREATE TABLE "conductor" ( +"Conductor_ID" int, +"Name" text, +"Age" int, +"Nationality" text, +"Year_of_Work" int, +PRIMARY KEY ("Conductor_ID") +); + +INSERT INTO "conductor" VALUES (1,"Antal Doráti",40,"USA",10); +INSERT INTO "conductor" VALUES (2,"Igor Stravinsky",41,"UK",11); +INSERT INTO "conductor" VALUES (3,"Colin Davis",42,"USA",6); +INSERT INTO "conductor" VALUES (4,"Paul Jorgensen",43,"UK",11); +INSERT INTO "conductor" VALUES (5,"Antal Brown",43,"USA",20); +INSERT INTO "conductor" VALUES (6,"Charles Dutoit",43,"France",12); + +INSERT INTO "conductor" VALUES (7,"Gerard Schwarz",50,"USA",20); +INSERT INTO "conductor" VALUES (8,"Pierre Boulez",49,"UK",11); +INSERT INTO "conductor" VALUES (9,"Valeri Gergiev",47,"USA",16); +INSERT INTO "conductor" VALUES (10,"Robert Craft",63,"UK",21); +INSERT INTO "conductor" VALUES (11,"Seiji Ozawa",43,"USA",10); +INSERT INTO "conductor" VALUES (12,"Michael Tilson Thomas",42,"France",12); + + + + +CREATE TABLE "orchestra" ( +"Orchestra_ID" int, +"Orchestra" text, +"Conductor_ID" int, +"Record_Company" text, +"Year_of_Founded" real, +"Major_Record_Format" text, +PRIMARY KEY ("Orchestra_ID"), +FOREIGN KEY (`Conductor_ID`) REFERENCES `conductor`(`Conductor_ID`) +); + +CREATE TABLE "performance" ( +"Performance_ID" int, +"Orchestra_ID" int, +"Type" text, +"Date" text, +"Official_ratings_(millions)" real, +"Weekly_rank" text, +"Share" text, +PRIMARY KEY ("Performance_ID"), +FOREIGN KEY (`Orchestra_ID`) REFERENCES `orchestra`(`Orchestra_ID`) +); + +CREATE TABLE "show" ( +"Show_ID" int, +"Performance_ID" int, +"If_first_show" bool, +"Result" text, +"Attendance" real, +FOREIGN KEY (`Performance_ID`) REFERENCES `performance`(`Performance_ID`) +); + + + +INSERT INTO "orchestra" VALUES (1,"London Symphony Orchestra",1,"Mercury Records","2003","CD"); +INSERT INTO "orchestra" VALUES (2,"Columbia Symphony Orchestra",2,"Columbia Masterworks","2009","CD / LP"); +INSERT INTO "orchestra" VALUES (3,"Royal Concertgebouw Orchestra",3,"Philips","2008","CD"); +INSERT INTO "orchestra" VALUES (4,"Royal Danish Orchestra",4,"Kultur","2002","DVD"); +INSERT INTO "orchestra" VALUES (5,"Detroit Symphony Orchestra",5,"Decca Records","2002","CD"); +INSERT INTO "orchestra" VALUES (6,"Montreal Symphony Orchestra",6,"Decca Records","2004","CD"); +INSERT INTO "orchestra" VALUES (7,"Seattle Symphony Orchestra",7,"Delos Records","2002","CD"); +INSERT INTO "orchestra" VALUES (8,"Chicago Symphony Orchestra",8,"Deutsche Grammophon","2003","CD"); +INSERT INTO "orchestra" VALUES (9,"Kirov Orchestra",9,"Philips Classics Records","2008","CD"); +INSERT INTO "orchestra" VALUES (10,"Philharmonia Orchestra",10,"Koch Records / Naxos Records","2006","CD"); +INSERT INTO "orchestra" VALUES (11,"Orchestre de Paris",11,"EMI","2007","CD"); +INSERT INTO "orchestra" VALUES (12,"San Francisco Symphony Orchestra",12,"RCA","2008","CD"); + +INSERT INTO "performance" VALUES (1,1,"Auditions 1","9 June","5.20","12","22.7%"); +INSERT INTO "performance" VALUES (2,2,"Auditions 2","10 June","6.73","8","28.0%"); +INSERT INTO "performance" VALUES (3,3,"Auditions 3","11 June","7.28","15","29.4%"); +INSERT INTO "performance" VALUES (4,4,"Auditions 4","12 June","7.39","13","29.3%"); +INSERT INTO "performance" VALUES (5,5,"Auditions 5","13 June","7.51","11","29.2%"); +INSERT INTO "performance" VALUES (11,11,"Semi-final 1","14 June","8.36","9","34.0%"); +INSERT INTO "performance" VALUES (6,6,"Semi-final 2","15 June","9.28","8","38.1%"); +INSERT INTO "performance" VALUES (7,7,"Semi-final 3","16 June","9.29","7","40.9%"); +INSERT INTO "performance" VALUES (8,8,"Live final","17 June","11.58","1","43.7%"); +INSERT INTO "performance" VALUES (9,9,"Live final results","17 June","11.45","2","44.7%"); +INSERT INTO "performance" VALUES (10,10,"Series average","2007","8.38","TBC","34%"); + +INSERT INTO "show" VALUES (1,1,"Glebe Park","T","1026"); +INSERT INTO "show" VALUES (2,2,"Fir Park","T","695"); +INSERT INTO "show" VALUES (3,3,"St. Mirren Park","F","555"); +INSERT INTO "show" VALUES (4,4,"St. Mirren Park","F","1925"); +INSERT INTO "show" VALUES (5,5,"Hampden Park","T","2431"); diff --git a/database/party_host/party_host.sqlite b/database/party_host/party_host.sqlite new file mode 100644 index 0000000000000000000000000000000000000000..fb9695e21d6c8251f81a906da95dc5cfc2b9b0e8 Binary files /dev/null and b/database/party_host/party_host.sqlite differ diff --git a/database/party_host/schema.sql b/database/party_host/schema.sql new file mode 100644 index 0000000000000000000000000000000000000000..6cab0721479dfd813f3da31971fcded69db67b1e --- /dev/null +++ b/database/party_host/schema.sql @@ -0,0 +1,60 @@ + +PRAGMA foreign_keys = ON; + +CREATE TABLE "party" ( +"Party_ID" int, +"Party_Theme" text, +"Location" text, +"First_year" text, +"Last_year" text, +"Number_of_hosts" int, +PRIMARY KEY ("Party_ID") +); + +CREATE TABLE "host" ( +"Host_ID" int, +"Name" text, +"Nationality" text, +"Age" text, +PRIMARY KEY ("Host_ID") +); + +INSERT INTO "party" VALUES (1,"Spring","Hemkade 48 Zaandam","2000","2001","5"); +INSERT INTO "party" VALUES (2,"Club Q-BASE","Hemkade 48 Zaandam","2002","2002","23"); +INSERT INTO "party" VALUES (3,"Hardcore Resurrection","Various locations","2000","2003","4"); +INSERT INTO "party" VALUES (4,"Teqnology","Heineken Music Hall Amsterdam","2002","2004","6"); +INSERT INTO "party" VALUES (5,"Qlubtempo","Hemkade 48 Zaandam, Heineken Music Hall Amsterdam","2001","2007","31"); +INSERT INTO "party" VALUES (6,"QrimeTime","Heineken Music Hall Amsterdam","2004","2007","4"); +INSERT INTO "party" VALUES (7,"In Qontrol","RAI Amsterdam","2004","2010","7"); +INSERT INTO "party" VALUES (8,"Houseqlassics","Various locations","1999","2010","18"); + + +INSERT INTO "host" VALUES (1,"Austin Daye","United States",43); +INSERT INTO "host" VALUES (2,"Lloyd Daniels","United States",37); +INSERT INTO "host" VALUES (3,"Kornel David","Hungary",31); +INSERT INTO "host" VALUES (4,"Antonio Davis","United States",26); +INSERT INTO "host" VALUES (5,"Ed Davis","United States",45); +INSERT INTO "host" VALUES (6,"Hubert Davis","United States",47); +INSERT INTO "host" VALUES (7,"Carlos Delfino","Argentina",30); +INSERT INTO "host" VALUES (8,"Justin Dentmon","United States",40); +INSERT INTO "host" VALUES (9,"DeMar DeRozan","United States",31); +INSERT INTO "host" VALUES (10,"Derrick Dial","United States",60); + + + +CREATE TABLE "party_host" ( +"Party_ID" int, +"Host_ID" int, +"Is_Main_in_Charge" bool, +PRIMARY KEY ("Party_ID","Host_ID"), +FOREIGN KEY ("Host_ID") REFERENCES `host`("Host_ID"), +FOREIGN KEY ("Party_ID") REFERENCES `party`("Party_ID") +); + +INSERT INTO "party_host" VALUES (1,1,"T"); +INSERT INTO "party_host" VALUES (8,7,"T"); +INSERT INTO "party_host" VALUES (6,10,"F"); +INSERT INTO "party_host" VALUES (4,2,"T"); +INSERT INTO "party_host" VALUES (2,5,"F"); +INSERT INTO "party_host" VALUES (6,3,"T"); + diff --git a/database/party_people/party_people.sqlite b/database/party_people/party_people.sqlite new file mode 100644 index 0000000000000000000000000000000000000000..795c311c747ea8905f140eeea9c44e74b7ad0b55 Binary files /dev/null and b/database/party_people/party_people.sqlite differ diff --git a/database/party_people/schema.sql b/database/party_people/schema.sql new file mode 100644 index 0000000000000000000000000000000000000000..bd5ec9c8fc87c643f9a358b3460f73f21da2a401 --- /dev/null +++ b/database/party_people/schema.sql @@ -0,0 +1,87 @@ + +PRAGMA foreign_keys = ON; + + +CREATE TABLE "region" ( +"Region_ID" int, +"Region_name" text, +"Date" text, +"Label" text, +"Format" text, +"Catalogue" text, +PRIMARY KEY ("Region_ID") +); + + +INSERT INTO "region" VALUES (1,"United Kingdom","1 July 2002","Parlophone","CD","540 3622"); +INSERT INTO "region" VALUES (2,"United Kingdom","1 July 2002","Parlophone","2× LP","539 9821"); +INSERT INTO "region" VALUES (3,"Japan","3 July 2002","Toshiba-EMI","CD","TOCP-66045"); +INSERT INTO "region" VALUES (4,"United States","16 July 2002","Astralwerks","CD","ASW 40362"); +INSERT INTO "region" VALUES (5,"United States","16 July 2002","Astralwerks","CD digipak","ASW 40522"); + + + +CREATE TABLE "party" ( +"Party_ID" int, +"Minister" text, +"Took_office" text, +"Left_office" text, +"Region_ID" int, +"Party_name" text, +PRIMARY KEY ("Party_ID"), +FOREIGN KEY (`Region_ID`) REFERENCES `region`(`Region_ID`) +); + +CREATE TABLE "member" ( +"Member_ID" int, +"Member_Name" text, +"Party_ID" text, +"In_office" text, +PRIMARY KEY ("Member_ID"), +FOREIGN KEY (`Party_ID`) REFERENCES `party`(`Party_ID`) +); + + +INSERT INTO "party" VALUES ("1","Dr. Kwame Nkrumah (MP)","1957","1958",1,"Convention Peoples Party"); +INSERT INTO "party" VALUES ("2","Kojo Botsio (MP)","1958","1959",2,"Progress Party"); +INSERT INTO "party" VALUES ("3","Ebenezer Ako-Adjei (MP)","1959","1960",3,3); +INSERT INTO "party" VALUES ("4","Imoru Egala (MP)","1960","1961",4,"Convention Union Party"); +INSERT INTO "party" VALUES ("5","Ebenezer Ako-Adjei (MP)","1961","1962",5,"Sinefine Party"); + + +INSERT INTO "member" VALUES (1,"Hon Tony Abbott",3,"1994–present"); +INSERT INTO "member" VALUES (2,"Hon Dick Adams",2,"1993–2013"); +INSERT INTO "member" VALUES (3,"Anthony Albanese",2,"1996–present"); +INSERT INTO "member" VALUES (4,"Hon John Anderson",1,"1989–2007"); +INSERT INTO "member" VALUES (5,"Peter Andren",3,"1996–2007"); +INSERT INTO "member" VALUES (6,"Hon Kevin Andrews",3,"1991–present"); +INSERT INTO "member" VALUES (7,"Hon Fran Bailey",3,"1990–1993, 1996–2010"); +INSERT INTO "member" VALUES (8,"Hon Bruce Baird",3,"2001–2007"); +INSERT INTO "member" VALUES (9,"Mark Baker",3,"2004–2007"); +INSERT INTO "member" VALUES (10,"Hon Bob Baldwin",3,"2001–present"); +INSERT INTO "member" VALUES (11,"Phil Barresi",3,"1996–2007"); +INSERT INTO "member" VALUES (12,"Kerry Bartlett",1,"1996–2007"); +INSERT INTO "member" VALUES (13,"Hon Kim Beazley",2,"1980–2007"); +INSERT INTO "member" VALUES (14,"Hon Arch Bevis",2,"1990–2010"); +INSERT INTO "member" VALUES (15,"Hon Bruce Billson",3,"1996–present"); + + +CREATE TABLE "party_events" ( +"Event_ID" int, +"Event_Name" text, +"Party_ID" int, +"Member_in_charge_ID" int, +PRIMARY KEY ("Event_ID"), +FOREIGN KEY (`Party_ID`) REFERENCES `party`(`Party_ID`), +FOREIGN KEY (`Member_in_charge_ID`) REFERENCES `member`(`Member_ID`) +); + + +INSERT INTO "party_events" VALUES (1,"Annaual Meeting", 1,4); +INSERT INTO "party_events" VALUES (2,"Conference", 1,12); +INSERT INTO "party_events" VALUES (3,"Annaual Meeting", 2,2); +INSERT INTO "party_events" VALUES (4,"Budget Meeting", 2,3); +INSERT INTO "party_events" VALUES (5,"Annaual Meeting", 3,10); +INSERT INTO "party_events" VALUES (6,"Election Meeting", 3,11); +INSERT INTO "party_events" VALUES (7,"Budget Meeting", 3,15); +INSERT INTO "party_events" VALUES (8,"Election Meeting", 1,4); diff --git a/database/performance_attendance/performance_attendance.sqlite b/database/performance_attendance/performance_attendance.sqlite new file mode 100644 index 0000000000000000000000000000000000000000..05044e9e75ab46e8430f11d10c10e4269ebdd27e Binary files /dev/null and b/database/performance_attendance/performance_attendance.sqlite differ diff --git a/database/performance_attendance/schema.sql b/database/performance_attendance/schema.sql new file mode 100644 index 0000000000000000000000000000000000000000..cea76222b291f56e11e89862ec23e56c2fa95bb1 --- /dev/null +++ b/database/performance_attendance/schema.sql @@ -0,0 +1,60 @@ +PRAGMA foreign_keys = ON; + + +CREATE TABLE "member" ( + "Member_ID" text, + "Name" text, + "Nationality" text, + "Role" text, + PRIMARY KEY ("Member_ID") +); + + + +INSERT INTO "member" VALUES ("1","Wilfredo Ruiz","Uruguay","Prime Violin"); +INSERT INTO "member" VALUES ("2","Luis González","Argentina","Violin"); +INSERT INTO "member" VALUES ("3","Héctor Campana","Argentina","Violin"); +INSERT INTO "member" VALUES ("4","Héctor Campana","Argentina","Violin"); +INSERT INTO "member" VALUES ("5","Juan Espil","Argentina","Viola"); +INSERT INTO "member" VALUES ("6","Andrew Moten","United States","Viola"); +INSERT INTO "member" VALUES ("7","Charlie Burke","United States","Viola"); +INSERT INTO "member" VALUES ("8","Corey Allen","United States","Cello"); +INSERT INTO "member" VALUES ("9","John Eubanks","United States","Cello"); +INSERT INTO "member" VALUES ("10","Joshua Pittman","United States","Bass"); +INSERT INTO "member" VALUES ("11","Joseph Bunn","United States","Bass"); + +CREATE TABLE "performance" ( + "Performance_ID" real, + "Date" text, + "Host" text, + "Location" text, + "Attendance" int, + PRIMARY KEY ("Performance_ID") +); + +INSERT INTO "performance" VALUES (1,"February 2","Boston Bruins","TD Garden","165"); +INSERT INTO "performance" VALUES (2,"February 4","New York Rangers","Madison Square Garden","1820"); +INSERT INTO "performance" VALUES (3,"February 5","Atlanta Thrashers","Verizon Center","1878"); +INSERT INTO "performance" VALUES (4,"February 7","Pittsburgh Penguins","Verizon Center","1877"); +INSERT INTO "performance" VALUES (5,"February 10","Montreal Canadiens","Bell Centre","2173"); +INSERT INTO "performance" VALUES (6,"February 11","Ottawa Senators","Scotiabank Place","1982"); + + +CREATE TABLE "member_attendance" ( + "Member_ID" int, + "Performance_ID" int, + "Num_of_Pieces" int, + PRIMARY KEY ("Member_ID","Performance_ID"), + FOREIGN KEY ("Member_ID") REFERENCES `member`("Member_ID"), + FOREIGN KEY ("Performance_ID") REFERENCES `performance`("Performance_ID") +); + +INSERT INTO "member_attendance" VALUES (11,3,2); +INSERT INTO "member_attendance" VALUES (7,2,3); +INSERT INTO "member_attendance" VALUES (4,6,4); +INSERT INTO "member_attendance" VALUES (2,1,1); +INSERT INTO "member_attendance" VALUES (3,1,1); +INSERT INTO "member_attendance" VALUES (4,3,2); +INSERT INTO "member_attendance" VALUES (5,1,2); +INSERT INTO "member_attendance" VALUES (1,4,4); + diff --git a/database/perpetrator/perpetrator.sqlite b/database/perpetrator/perpetrator.sqlite new file mode 100644 index 0000000000000000000000000000000000000000..26ca9a501b873d8169e1c2e2d2750a6d34545adb Binary files /dev/null and b/database/perpetrator/perpetrator.sqlite differ diff --git a/database/perpetrator/schema.sql b/database/perpetrator/schema.sql new file mode 100644 index 0000000000000000000000000000000000000000..cb1e63c85b4b8d00e627e1f8205a04dcc8e0d167 --- /dev/null +++ b/database/perpetrator/schema.sql @@ -0,0 +1,45 @@ +PRAGMA foreign_keys = ON; + +CREATE TABLE "perpetrator" ( +"Perpetrator_ID" int, +"People_ID" int, +"Date" text, +"Year" real, +"Location" text, +"Country" text, +"Killed" int, +"Injured" int, +PRIMARY KEY ("Perpetrator_ID"), +FOREIGN KEY ("People_ID") REFERENCES "people"("People_ID") +); + +CREATE TABLE "people" ( +"People_ID" int, +"Name" text, +"Height" real, +"Weight" real, +"Home Town" text, +PRIMARY KEY ("People_ID") +); + + + +INSERT INTO "people" VALUES (1,"Ron Baxter","6.4","205","Los Angeles, CA"); +INSERT INTO "people" VALUES (2,"Brent Boyd","6.3","185","Baton Rouge, LA"); +INSERT INTO "people" VALUES (3,"Tyrone Brayan","6.7","220","Placentia, CA"); +INSERT INTO "people" VALUES (4,"Rob Cunningham","6.8","215","Westport, CT"); +INSERT INTO "people" VALUES (5,"John Danks","6.6","190","Beaver Dam, KY"); +INSERT INTO "people" VALUES (6,"Ovie Dotson","6.5","200","San Antonio, TX"); +INSERT INTO "people" VALUES (7,"Gary Goodner","6.7","220","Denton, TX"); +INSERT INTO "people" VALUES (8,"Henry Johnson","6.6","190","Los Angeles, CA"); +INSERT INTO "people" VALUES (9,"Jim Krivacs","6.1","160","Indianapolis, IN"); +INSERT INTO "people" VALUES (10,"John Moore","6.1","170","Altoona, PA"); +INSERT INTO "people" VALUES (11,"Mike Murphy","6.8","215","Austin, TX"); + + +INSERT INTO "perpetrator" VALUES (1,1,"04.26 April 26/27","1982","Uiryeong","South Korea","56","37"); +INSERT INTO "perpetrator" VALUES (2,3,"11.18 Nov. 18","1995","Zhaodong","China","32","16"); +INSERT INTO "perpetrator" VALUES (3,4,"05.21 May 21","1938","Kaio","Japan","30","3"); +INSERT INTO "perpetrator" VALUES (4,6,"09.20 Sep. 20","1994","Beijing","China","23","80"); +INSERT INTO "perpetrator" VALUES (5,8,"04.00 April","1950","Nainital","India","22","0"); + diff --git a/database/pets_1/pets_1.sqlite b/database/pets_1/pets_1.sqlite new file mode 100644 index 0000000000000000000000000000000000000000..0e2fac07993409a0db9ce89538a564a9588cf9cb Binary files /dev/null and b/database/pets_1/pets_1.sqlite differ diff --git a/database/pets_1/schema.sql b/database/pets_1/schema.sql new file mode 100644 index 0000000000000000000000000000000000000000..84a94675f7929b559cffe8074f772c66aef258fa --- /dev/null +++ b/database/pets_1/schema.sql @@ -0,0 +1,68 @@ +create table Student ( + StuID INTEGER PRIMARY KEY, + LName VARCHAR(12), + Fname VARCHAR(12), + Age INTEGER, + Sex VARCHAR(1), + Major INTEGER, + Advisor INTEGER, + city_code VARCHAR(3) +); + +create table Has_Pet ( + StuID INTEGER, + PetID INTEGER, + FOREIGN KEY(PetID) REFERENCES Pets(PetID), + FOREIGN KEY(StuID) REFERENCES Student(StuID) +); + +create table Pets ( + PetID INTEGER PRIMARY KEY, + PetType VARCHAR(20), + pet_age INTEGER, + weight REAL +); + +insert into Student values ( 1001, 'Smith', 'Linda', 18, 'F', 600, 1121,'BAL'); +insert into Student values ( 1002, 'Kim', 'Tracy', 19, 'F', 600, 7712,'HKG'); +insert into Student values ( 1003, 'Jones', 'Shiela', 21, 'F', 600, 7792,'WAS'); +insert into Student values ( 1004, 'Kumar', 'Dinesh', 20, 'M', 600, 8423,'CHI'); +insert into Student values ( 1005, 'Gompers', 'Paul', 26, 'M', 600, 1121,'YYZ'); +insert into Student values ( 1006, 'Schultz', 'Andy', 18, 'M', 600, 1148,'BAL'); +insert into Student values ( 1007, 'Apap', 'Lisa', 18, 'F', 600, 8918,'PIT'); +insert into Student values ( 1008, 'Nelson', 'Jandy', 20, 'F', 600, 9172,'BAL'); +insert into Student values ( 1009, 'Tai', 'Eric', 19, 'M', 600, 2192,'YYZ'); +insert into Student values ( 1010, 'Lee', 'Derek', 17, 'M', 600, 2192,'HOU'); +insert into Student values ( 1011, 'Adams', 'David', 22, 'M', 600, 1148,'PHL'); +insert into Student values ( 1012, 'Davis', 'Steven', 20, 'M', 600, 7723,'PIT'); +insert into Student values ( 1014, 'Norris', 'Charles', 18, 'M', 600, 8741, 'DAL'); +insert into Student values ( 1015, 'Lee', 'Susan', 16, 'F', 600, 8721,'HKG'); +insert into Student values ( 1016, 'Schwartz', 'Mark', 17, 'M', 600, 2192,'DET'); +insert into Student values ( 1017, 'Wilson', 'Bruce', 27, 'M', 600, 1148,'LON'); +insert into Student values ( 1018, 'Leighton', 'Michael', 20, 'M', 600, 1121, 'PIT'); +insert into Student values ( 1019, 'Pang', 'Arthur', 18, 'M', 600, 2192,'WAS'); +insert into Student values ( 1020, 'Thornton', 'Ian', 22, 'M', 520, 7271,'NYC'); +insert into Student values ( 1021, 'Andreou', 'George', 19, 'M', 520, 8722, 'NYC'); +insert into Student values ( 1022, 'Woods', 'Michael', 17, 'M', 540, 8722,'PHL'); +insert into Student values ( 1023, 'Shieber', 'David', 20, 'M', 520, 8722,'NYC'); +insert into Student values ( 1024, 'Prater', 'Stacy', 18, 'F', 540, 7271,'BAL'); +insert into Student values ( 1025, 'Goldman', 'Mark', 18, 'M', 520, 7134,'PIT'); +insert into Student values ( 1026, 'Pang', 'Eric', 19, 'M', 520, 7134,'HKG'); +insert into Student values ( 1027, 'Brody', 'Paul', 18, 'M', 520, 8723,'LOS'); +insert into Student values ( 1028, 'Rugh', 'Eric', 20, 'M', 550, 2311,'ROC'); +insert into Student values ( 1029, 'Han', 'Jun', 17, 'M', 100, 2311,'PEK'); +insert into Student values ( 1030, 'Cheng', 'Lisa', 21, 'F', 550, 2311,'SFO'); +insert into Student values ( 1031, 'Smith', 'Sarah', 20, 'F', 550, 8772,'PHL'); +insert into Student values ( 1032, 'Brown', 'Eric', 20, 'M', 550, 8772,'ATL'); +insert into Student values ( 1033, 'Simms', 'William', 18, 'M', 550, 8772,'NAR'); +insert into Student values ( 1034, 'Epp', 'Eric', 18, 'M', 050, 5718,'BOS'); +insert into Student values ( 1035, 'Schmidt', 'Sarah', 26, 'F', 050, 5718,'WAS'); + +insert into Has_Pet values ( 1001, 2001 ); +insert into Has_Pet values ( 1002, 2002 ); +insert into Has_Pet values ( 1002, 2003 ); + +insert into Pets values ( 2001, 'cat', 3, 12); +insert into Pets values ( 2002, 'dog', 2, 13.4); +insert into Pets values ( 2003, 'dog', 1, 9.3); + diff --git a/database/phone_1/phone_1.sqlite b/database/phone_1/phone_1.sqlite new file mode 100644 index 0000000000000000000000000000000000000000..85ff36e16a59f66a974e8aadce6ac635069f7f17 Binary files /dev/null and b/database/phone_1/phone_1.sqlite differ diff --git a/database/phone_1/schema.sql b/database/phone_1/schema.sql new file mode 100644 index 0000000000000000000000000000000000000000..55bbcb7e40b1a890a3cba71da6dd8fc6ea51c817 --- /dev/null +++ b/database/phone_1/schema.sql @@ -0,0 +1,65 @@ +PRAGMA foreign_keys=ON; +BEGIN TRANSACTION; +CREATE TABLE IF NOT EXISTS "chip_model" ( +"Model_name" text, +"Launch_year" real, +"RAM_MiB" real, +"ROM_MiB" real, +"Slots" text, +"WiFi" text, +"Bluetooth" text, +PRIMARY KEY ("Model_name") +); +INSERT INTO chip_model VALUES('X5',2002.0,32.0,32.0,'1CFII,1SD','No','No'); +INSERT INTO chip_model VALUES('X5 high end',2002.0,64.0,48.000000000000000001,'1CFII,1SD','No','No'); +INSERT INTO chip_model VALUES('X3 Basic',2003.0,32.0,32.0,'1SD','No','No'); +INSERT INTO chip_model VALUES('X3 Advanced',2003.0,64.0,64.0,'1SD','No','No'); +INSERT INTO chip_model VALUES('X3i',2003.0,64.0,64.0,'1SD','802.11b','No'); +INSERT INTO chip_model VALUES('X30 low-end',2004.0,32.0,32.0,'1SD','No','No'); +INSERT INTO chip_model VALUES('X30 mid-range',2004.0,64.0,64.0,'1SD','802.11b','1.1'); +INSERT INTO chip_model VALUES('X30 high-end',2004.0,64.0,64.0,'1SD','802.11b','1.1'); +INSERT INTO chip_model VALUES('X50 Standard',2004.0,64.0,64.0,'1CFII,1SD','No','Yes'); +INSERT INTO chip_model VALUES('X50 Advanced',2004.0,64.0,127.99999999999999999,'1CFII,1SD','802.11b','Yes'); +INSERT INTO chip_model VALUES('X50v',2004.0,64.0,127.99999999999999999,'1CFII,1SD','802.11b','1.2'); +INSERT INTO chip_model VALUES('X51 low-end',2005.0000000000000001,64.0,127.99999999999999999,'1CFII,1SD','No','1.2'); +INSERT INTO chip_model VALUES('X51 mid-range',2005.0000000000000001,64.0,127.99999999999999999,'1CFII,1SD','802.11b','1.2'); +INSERT INTO chip_model VALUES('X51v',2005.0000000000000001,64.0,255.99999999999999999,'1CFII,1SD','802.11b','1.2'); +CREATE TABLE IF NOT EXISTS "screen_mode" ( +"Graphics_mode" real, +"Char_cells" text, +"Pixels" text, +"Hardware_colours" real, +"used_kb" real, +"map" text, +"Type" text, +PRIMARY KEY ("Graphics_mode") +); +INSERT INTO "screen_mode" VALUES(0.0,'80 × 32','640 × 256',2.0,20.0,'3000–7FFF','Graphics'); +INSERT INTO "screen_mode" VALUES(1.0,'40 × 32','320 × 256',4.0,20.0,'3000–7FFF','Graphics'); +INSERT INTO "screen_mode" VALUES(2.0,'20 × 32','160 × 256',8.0,20.0,'3000–7FFF','Graphics'); +INSERT INTO "screen_mode" VALUES(3.0,'80 × 25','640 × 200',2.0,16.0,'4000–7FFF','Text'); +INSERT INTO "screen_mode" VALUES(4.0,'40 × 32','320 × 256',2.0,10.0,'5800–7FFF','Graphics'); +INSERT INTO "screen_mode" VALUES(5.0,'20 × 32','160 × 256',4.0,10.0,'5800–7FFF','Graphics'); +INSERT INTO "screen_mode" VALUES(6.0,'40 × 25','320 × 200',2.0,8.0,'6000–7FFF','Text'); + +CREATE TABLE IF NOT EXISTS "phone" ( +"Company_name" text, +"Hardware_Model_name" text, +"Accreditation_type" text, +"Accreditation_level" text, +"Date" text, +"chip_model" text, +"screen_mode" text, +PRIMARY KEY("Hardware_Model_name"), +FOREIGN KEY (`screen_mode`) REFERENCES `screen_mode`(`Graphics_mode`), +FOREIGN KEY (`chip_model`) REFERENCES `chip_model`(`Model_name`) +); +INSERT INTO phone VALUES('Sony Mobile Communications','XPERIA T, XPERIA J','Full','joyn Hot Fixes','Approved (awarded 15.11.12)','X5','1'); +INSERT INTO phone VALUES('LG Electronics','LG-P760','Full','joyn Hot Fixes','Approved (awarded 19.11.12)','X51v','3'); +INSERT INTO phone VALUES('Nokia Corporation','Lumia 920, Lumia 820, Lumia 620','Full','joyn Hot Fixes','Approved (awarded 05.12.12)','X5','4'); +INSERT INTO phone VALUES('Samsung Electronics Co Ltd','GT-I9300','Full','joyn','Approved (awarded 23.10.12)','X30 low-end','5'); +INSERT INTO phone VALUES('HTC Corporation','Z520e','Provisional','joyn','Approved (valid until 14.09.13)','X3i','6'); +INSERT INTO phone VALUES('Samsung Electronics Co Ltd','GT-I9100','Provisional','joyn','Approved (valid until 06.04.13)','X50 Advanced','1'); +INSERT INTO phone VALUES('Nokia Corporation','Nokia 700','Provisional','joyn','Approved (valid until 03.05.13)','X5','2'); +INSERT INTO phone VALUES('Huawei Technologies Co.Ltd.','U8815 Asura','Provisional','joyn','Approved (valid until 03.05.13)','X50 Standard','3'); +COMMIT; diff --git a/database/phone_market/phone_market.sqlite b/database/phone_market/phone_market.sqlite new file mode 100644 index 0000000000000000000000000000000000000000..23077075385ddaf3eb3bfea5a97564de61f77b40 Binary files /dev/null and b/database/phone_market/phone_market.sqlite differ diff --git a/database/phone_market/schema.sql b/database/phone_market/schema.sql new file mode 100644 index 0000000000000000000000000000000000000000..8fbc6eeb2f6d61080b077b85c9fe81db5ff68d97 --- /dev/null +++ b/database/phone_market/schema.sql @@ -0,0 +1,54 @@ + + +PRAGMA foreign_keys = ON; + + +CREATE TABLE "phone" ( +"Name" text, +"Phone_ID" int, +"Memory_in_G" int, +"Carrier" text, +"Price" real, +PRIMARY KEY ("Phone_ID") +); + +CREATE TABLE "market" ( +"Market_ID" int, +"District" text, +"Num_of_employees" int, +"Num_of_shops" real, +"Ranking" int, +PRIMARY KEY ("Market_ID") +); + +INSERT INTO "phone" VALUES ("IPhone 5s","1","32","Sprint","320"); +INSERT INTO "phone" VALUES ("IPhone 6","5","128","Sprint","480"); +INSERT INTO "phone" VALUES ("IPhone 6s","2","128","TMobile","699"); +INSERT INTO "phone" VALUES ("IPhone 7","4","16","TMobile","899"); +INSERT INTO "phone" VALUES ("IPhone X","3","64","TMobile","1000"); + +INSERT INTO "market" VALUES (1,"Alberta","1966","40","1"); +INSERT INTO "market" VALUES (2,"British Columbia","1965","49","21"); +INSERT INTO "market" VALUES (3,"New Brunswick","1978","10","4"); +INSERT INTO "market" VALUES (4,"Nova Scotia","1968","32","5"); +INSERT INTO "market" VALUES (5,"Ontario","1958","54","3"); +INSERT INTO "market" VALUES (6,"Quebec","1958","54","8"); + + +CREATE TABLE "phone_market" ( +"Market_ID" int, +"Phone_ID" text, +"Num_of_stock" int, +PRIMARY KEY ("Market_ID","Phone_ID"), +FOREIGN KEY ("Market_ID") REFERENCES `market`("Market_ID"), +FOREIGN KEY ("Phone_ID") REFERENCES `phone`("Phone_ID") +); + +INSERT INTO "phone_market" VALUES (1,1,2232); +INSERT INTO "phone_market" VALUES (2,2,4324); +INSERT INTO "phone_market" VALUES (1,4,874); +INSERT INTO "phone_market" VALUES (5,1,682); +INSERT INTO "phone_market" VALUES (2,3,908); +INSERT INTO "phone_market" VALUES (6,3,1632); + + diff --git a/database/pilot_record/pilot_record.sqlite b/database/pilot_record/pilot_record.sqlite new file mode 100644 index 0000000000000000000000000000000000000000..1c5c84e21c70451f37a5bd35bb06b34b5e402ded Binary files /dev/null and b/database/pilot_record/pilot_record.sqlite differ diff --git a/database/pilot_record/schema.sql b/database/pilot_record/schema.sql new file mode 100644 index 0000000000000000000000000000000000000000..089fce57dce930a8d9e23cb072265af28cdf2b8a --- /dev/null +++ b/database/pilot_record/schema.sql @@ -0,0 +1,59 @@ +PRAGMA foreign_keys = ON; + +CREATE TABLE "aircraft" ( +"Aircraft_ID" int, +"Order_Year" int, +"Manufacturer" text, +"Model" text, +"Fleet_Series" text, +"Powertrain" text, +"Fuel_Propulsion" text, +PRIMARY KEY ("Aircraft_ID") +); + + +CREATE TABLE "pilot" ( +"Pilot_ID" int, +"Pilot_name" text, +"Rank" int, +"Age" int, +"Nationality" text, +"Position" text, +"Join_Year" int, +"Team" text, +PRIMARY KEY ("Pilot_ID") +); + +INSERT INTO "aircraft" VALUES (1,"1992","Gillig","Phantom (High Floor)","444-464 (21)","DD S50EGR Allison WB-400R","Diesel"); +INSERT INTO "aircraft" VALUES (2,"1996","Gillig","Phantom (High Floor)","465-467 (3)","DD S50 Allison WB-400R","Diesel"); +INSERT INTO "aircraft" VALUES (3,"1998","Gillig","Phantom (High Floor)","468-473 (6)","DD S50 Allison WB-400R","Diesel"); +INSERT INTO "aircraft" VALUES (4,"2000","Gillig","Advantage (Low Floor)","474-481 (8)","Cummins ISC Allison WB-400R","Diesel"); +INSERT INTO "aircraft" VALUES (5,"2002","Gillig","Advantage (Low Floor)","482-492 (11)","Cummins ISL Allison WB-400R","Diesel"); +INSERT INTO "aircraft" VALUES (6,"2010","NFI","GE40LFR","300-309 (10)","Ford Triton V10 ISE-Thundervolt TB40-HG","Hybrid"); +INSERT INTO "aircraft" VALUES (7,"2011","NFI","C40LFR","310-329 (20)","Cummins Westport ISL-G Allison WB-400R","CNG"); + + +INSERT INTO "pilot" VALUES (1,"Patrick O'Bryant","13",33,"United States","Center Team","2009","Bradley"); +INSERT INTO "pilot" VALUES (2,"Jermaine O'Neal","6",40,"United States","Forward-Center Team","2008","Eau Claire High School"); +INSERT INTO "pilot" VALUES (3,"Dan O'Sullivan","45",37,"United States","Center Team","1999","Fordham"); +INSERT INTO "pilot" VALUES (4,"Charles Oakley","34",22,"United Kindom","Forward Team","2001","Virginia Union"); +INSERT INTO "pilot" VALUES (5,"Hakeem Olajuwon","34",32,"Nigeria","Center Team","2010","Houston"); + + +CREATE TABLE "pilot_record" ( +"Record_ID" int, +"Pilot_ID" int, +"Aircraft_ID" int, +"Date" text, +PRIMARY KEY ("Pilot_ID", "Aircraft_ID", "Date"), +FOREIGN KEY (`Pilot_ID`) REFERENCES `pilot`(`Pilot_ID`), +FOREIGN KEY (`Aircraft_ID`) REFERENCES `aircraft`(`Aircraft_ID`) +); + +INSERT INTO "pilot_record" VALUES (1,1,1,"2003/01/04"); +INSERT INTO "pilot_record" VALUES (2,2,1,"2004/01/04"); +INSERT INTO "pilot_record" VALUES (3,1,4,"2005/01/04"); +INSERT INTO "pilot_record" VALUES (4,3,6,"2006/01/04"); +INSERT INTO "pilot_record" VALUES (5,4,2,"2007/01/04"); +INSERT INTO "pilot_record" VALUES (6,1,5,"2008/01/04"); + diff --git a/database/poker_player/poker_player.sqlite b/database/poker_player/poker_player.sqlite new file mode 100644 index 0000000000000000000000000000000000000000..99fec5f0029860d39b4bb5939c6be06896a68f37 Binary files /dev/null and b/database/poker_player/poker_player.sqlite differ diff --git a/database/poker_player/schema.sql b/database/poker_player/schema.sql new file mode 100644 index 0000000000000000000000000000000000000000..53b06faf5dda1e193f0257c2356358a1729e00ff --- /dev/null +++ b/database/poker_player/schema.sql @@ -0,0 +1,35 @@ +PRAGMA foreign_keys = ON; + +CREATE TABLE "poker_player" ( +"Poker_Player_ID" int, +"People_ID" int, +"Final_Table_Made" real, +"Best_Finish" real, +"Money_Rank" real, +"Earnings" real, +PRIMARY KEY ("Poker_Player_ID"), +FOREIGN KEY ("People_ID") REFERENCES `people`("People_ID") +); + +CREATE TABLE "people" ( +"People_ID" int, +"Nationality" text, +"Name" text, +"Birth_Date" text, +"Height" real, +PRIMARY KEY ("People_ID") +); + +INSERT INTO "people" VALUES ("1","Russia","Aleksey Ostapenko","May 26, 1986","207"); +INSERT INTO "people" VALUES ("2","Bulgaria","Teodor Salparov","August 16, 1982","182"); +INSERT INTO "people" VALUES ("3","Russia","Roman Bragin","April 17, 1987","187"); +INSERT INTO "people" VALUES ("4","Russia","Sergey Grankin","January 22, 1987","193"); +INSERT INTO "people" VALUES ("5","Russia","Yevgeni Sivozhelez","August 8, 1986","196"); +INSERT INTO "people" VALUES ("6","Russia","Maksim Botin","July 14, 1983","194"); +INSERT INTO "people" VALUES ("7","Russia","Semen Poltavskiy","February 8, 1981","205"); + +INSERT INTO "poker_player" VALUES (1,1,"42","1","68","476090"); +INSERT INTO "poker_player" VALUES (2,2,"10","2","141","189233"); +INSERT INTO "poker_player" VALUES (3,5,"21","1","166","104871"); +INSERT INTO "poker_player" VALUES (4,6,"19","2","58","596462"); +INSERT INTO "poker_player" VALUES (5,7,"26","3","154","142800"); diff --git a/database/product_catalog/product_catalog.sqlite b/database/product_catalog/product_catalog.sqlite new file mode 100644 index 0000000000000000000000000000000000000000..d5e153952831325488f0af17b9456334681a1bef Binary files /dev/null and b/database/product_catalog/product_catalog.sqlite differ diff --git a/database/product_catalog/schema.sql b/database/product_catalog/schema.sql new file mode 100644 index 0000000000000000000000000000000000000000..a89d7df50b60c55c006b4e385275017d8377a3a8 --- /dev/null +++ b/database/product_catalog/schema.sql @@ -0,0 +1,99 @@ +PRAGMA foreign_keys = ON; + +CREATE TABLE `Attribute_Definitions` ( +`attribute_id` INTEGER PRIMARY KEY, +`attribute_name` VARCHAR(30), +`attribute_data_type` VARCHAR(10) +); +INSERT INTO Attribute_Definitions (`attribute_id`, `attribute_name`, `attribute_data_type`) VALUES (1, 'Green', 'Bool'); +INSERT INTO Attribute_Definitions (`attribute_id`, `attribute_name`, `attribute_data_type`) VALUES (2, 'Black', 'Bool'); +INSERT INTO Attribute_Definitions (`attribute_id`, `attribute_name`, `attribute_data_type`) VALUES (3, 'Yellow', 'Bool'); +INSERT INTO Attribute_Definitions (`attribute_id`, `attribute_name`, `attribute_data_type`) VALUES (4, 'Sweet', 'Bool'); + +CREATE TABLE `Catalogs` ( +`catalog_id` INTEGER PRIMARY KEY, +`catalog_name` VARCHAR(50), +`catalog_publisher` VARCHAR(80), +`date_of_publication` DATETIME, +`date_of_latest_revision` DATETIME +); +INSERT INTO Catalogs (`catalog_id`, `catalog_name`, `catalog_publisher`, `date_of_publication`, `date_of_latest_revision`) VALUES (1, 'Chocolate', 'Koepp-Rutherford handmade chocolate store', '2013-03-15 05:09:17', '2017-09-26 12:10:36'); +INSERT INTO Catalogs (`catalog_id`, `catalog_name`, `catalog_publisher`, `date_of_publication`, `date_of_latest_revision`) VALUES (2, 'Coffee Bean', 'Murray Coffee shop', '2012-04-13 06:37:09', '2017-10-26 01:16:51'); +INSERT INTO Catalogs (`catalog_id`, `catalog_name`, `catalog_publisher`, `date_of_publication`, `date_of_latest_revision`) VALUES (3, 'Lemonade', 'Russel-Gislason Lemon shop', '2012-11-27 19:29:22', '2017-12-04 06:48:13'); +INSERT INTO Catalogs (`catalog_id`, `catalog_name`, `catalog_publisher`, `date_of_publication`, `date_of_latest_revision`) VALUES (4, 'Breakfast Tea', 'Grady & Kautzer', '2011-07-22 04:57:19', '2017-03-30 09:15:37'); +INSERT INTO Catalogs (`catalog_id`, `catalog_name`, `catalog_publisher`, `date_of_publication`, `date_of_latest_revision`) VALUES (5, 'Coco powder', 'Lidl', '2013-03-15 05:09:17', '2017-09-26 12:10:36'); +INSERT INTO Catalogs (`catalog_id`, `catalog_name`, `catalog_publisher`, `date_of_publication`, `date_of_latest_revision`) VALUES (6, 'Latte', 'Murray Coffee shop', '2012-04-13 06:37:09', '2017-10-26 01:16:51'); +INSERT INTO Catalogs (`catalog_id`, `catalog_name`, `catalog_publisher`, `date_of_publication`, `date_of_latest_revision`) VALUES (7, 'Sparkling Water', 'Russel-Gislason Lemon shop', '2012-11-27 19:29:22', '2017-12-04 06:48:13'); +INSERT INTO Catalogs (`catalog_id`, `catalog_name`, `catalog_publisher`, `date_of_publication`, `date_of_latest_revision`) VALUES (8, 'Jam', 'Grady & Kautzer', '2011-07-22 04:57:19', '2017-03-30 09:15:37'); + + +CREATE TABLE `Catalog_Structure` ( +`catalog_level_number` INTEGER PRIMARY KEY, +`catalog_id` INTEGER NOT NULL, +`catalog_level_name` VARCHAR(50), +FOREIGN KEY (`catalog_id` ) REFERENCES `Catalogs`(`catalog_id` ) +); + +INSERT INTO Catalog_Structure (`catalog_level_number`, `catalog_id`, `catalog_level_name`) VALUES (1, 1, 'Category'); +INSERT INTO Catalog_Structure (`catalog_level_number`, `catalog_id`, `catalog_level_name`) VALUES (8, 2, 'Sub-Category'); +INSERT INTO Catalog_Structure (`catalog_level_number`, `catalog_id`, `catalog_level_name`) VALUES (9, 8, 'Product'); + + +CREATE TABLE `Catalog_Contents` ( +`catalog_entry_id` INTEGER PRIMARY KEY, +`catalog_level_number` INTEGER NOT NULL, +`parent_entry_id` INTEGER, +`previous_entry_id` INTEGER, +`next_entry_id` INTEGER, +`catalog_entry_name` VARCHAR(80), +`product_stock_number` VARCHAR(50), +`price_in_dollars` DOUBLE NULL, +`price_in_euros` DOUBLE NULL, +`price_in_pounds` DOUBLE NULL, +`capacity` VARCHAR(20), +`length` VARCHAR(20), +`height` VARCHAR(20), +`width` VARCHAR(20), +FOREIGN KEY (`catalog_level_number` ) REFERENCES `Catalog_Structure`(`catalog_level_number` ) +); +INSERT INTO Catalog_Contents (`catalog_entry_id`, `catalog_level_number`, `parent_entry_id`, `previous_entry_id`, `next_entry_id`, `catalog_entry_name`, `product_stock_number`, `price_in_dollars`, `price_in_euros`, `price_in_pounds`, `capacity`, `length`, `height`, `width`) VALUES (1, 1, 5, 9, 7, 'Cola', '89 cp', '200.78', '159.84', '172.17', '1', '3', '9', '5'); +INSERT INTO Catalog_Contents (`catalog_entry_id`, `catalog_level_number`, `parent_entry_id`, `previous_entry_id`, `next_entry_id`, `catalog_entry_name`, `product_stock_number`, `price_in_dollars`, `price_in_euros`, `price_in_pounds`, `capacity`, `length`, `height`, `width`) VALUES (2, 8, 6, 9, 8, 'Root beer', '37 hq', '687.59', '590.11', '471.78', '8', '6', '5', '6'); +INSERT INTO Catalog_Contents (`catalog_entry_id`, `catalog_level_number`, `parent_entry_id`, `previous_entry_id`, `next_entry_id`, `catalog_entry_name`, `product_stock_number`, `price_in_dollars`, `price_in_euros`, `price_in_pounds`, `capacity`, `length`, `height`, `width`) VALUES (3, 8, 6, 6, 1, 'Cream Soda', '52 ee', '360.5', '202.32', '110.32', '5', '9', '7', '8'); +INSERT INTO Catalog_Contents (`catalog_entry_id`, `catalog_level_number`, `parent_entry_id`, `previous_entry_id`, `next_entry_id`, `catalog_entry_name`, `product_stock_number`, `price_in_dollars`, `price_in_euros`, `price_in_pounds`, `capacity`, `length`, `height`, `width`) VALUES (4, 1, 7, 8, 6, 'Carbonated Water', '15 mr', '667.89', '458.45', '349.01', '8', '6', '2', '1'); +INSERT INTO Catalog_Contents (`catalog_entry_id`, `catalog_level_number`, `parent_entry_id`, `previous_entry_id`, `next_entry_id`, `catalog_entry_name`, `product_stock_number`, `price_in_dollars`, `price_in_euros`, `price_in_pounds`, `capacity`, `length`, `height`, `width`) VALUES (5, 9, 4, 7, 6, 'Ginger Beer', '42 cp', '616.22', '537.66', '405.75', '5', '5', '7', '9'); +INSERT INTO Catalog_Contents (`catalog_entry_id`, `catalog_level_number`, `parent_entry_id`, `previous_entry_id`, `next_entry_id`, `catalog_entry_name`, `product_stock_number`, `price_in_dollars`, `price_in_euros`, `price_in_pounds`, `capacity`, `length`, `height`, `width`) VALUES (6, 1, 3, 4, 8, 'Tizer', '61 py', '642.37', '434.21', '331.43', '6', '6', '7', '1'); +INSERT INTO Catalog_Contents (`catalog_entry_id`, `catalog_level_number`, `parent_entry_id`, `previous_entry_id`, `next_entry_id`, `catalog_entry_name`, `product_stock_number`, `price_in_dollars`, `price_in_euros`, `price_in_pounds`, `capacity`, `length`, `height`, `width`) VALUES (7, 9, 7, 3, 3, 'Vimto', '01 ap', '745.02', '510.32', '497.4', '6', '9', '6', '5'); +INSERT INTO Catalog_Contents (`catalog_entry_id`, `catalog_level_number`, `parent_entry_id`, `previous_entry_id`, `next_entry_id`, `catalog_entry_name`, `product_stock_number`, `price_in_dollars`, `price_in_euros`, `price_in_pounds`, `capacity`, `length`, `height`, `width`) VALUES (8, 8, 6, 5, 3, 'Ramune', '53 bg', '574.35', '441.82', '440.52', '4', '4', '7', '5'); +INSERT INTO Catalog_Contents (`catalog_entry_id`, `catalog_level_number`, `parent_entry_id`, `previous_entry_id`, `next_entry_id`, `catalog_entry_name`, `product_stock_number`, `price_in_dollars`, `price_in_euros`, `price_in_pounds`, `capacity`, `length`, `height`, `width`) VALUES (9, 1, 7, 9, 9, 'Sprite Lemo', '24 ec', '952.37', '703.17', '433.82', '8', '7', '1', '3'); +INSERT INTO Catalog_Contents (`catalog_entry_id`, `catalog_level_number`, `parent_entry_id`, `previous_entry_id`, `next_entry_id`, `catalog_entry_name`, `product_stock_number`, `price_in_dollars`, `price_in_euros`, `price_in_pounds`, `capacity`, `length`, `height`, `width`) VALUES (10, 8, 5, 6, 6, 'Dr Pepper', '26 op', '777.41', '616.54', '572.41', '1', '6', '1', '6'); +INSERT INTO Catalog_Contents (`catalog_entry_id`, `catalog_level_number`, `parent_entry_id`, `previous_entry_id`, `next_entry_id`, `catalog_entry_name`, `product_stock_number`, `price_in_dollars`, `price_in_euros`, `price_in_pounds`, `capacity`, `length`, `height`, `width`) VALUES (11, 1, 3, 6, 9, 'Diet Pepsi', '49 jg', '808.31', '643.77', '515.62', '9', '8', '3', '3'); +INSERT INTO Catalog_Contents (`catalog_entry_id`, `catalog_level_number`, `parent_entry_id`, `previous_entry_id`, `next_entry_id`, `catalog_entry_name`, `product_stock_number`, `price_in_dollars`, `price_in_euros`, `price_in_pounds`, `capacity`, `length`, `height`, `width`) VALUES (12, 8, 4, 5, 3, 'Diet Mountain Dew', '96 zx', '883.43', '752.87', '678.01', '8', '8', '1', '3'); +INSERT INTO Catalog_Contents (`catalog_entry_id`, `catalog_level_number`, `parent_entry_id`, `previous_entry_id`, `next_entry_id`, `catalog_entry_name`, `product_stock_number`, `price_in_dollars`, `price_in_euros`, `price_in_pounds`, `capacity`, `length`, `height`, `width`) VALUES (13, 1, 5, 9, 1, 'Mountain Dew', '49 cz', '475.79', '457.4', '335.63', '7', '8', '4', '5'); +INSERT INTO Catalog_Contents (`catalog_entry_id`, `catalog_level_number`, `parent_entry_id`, `previous_entry_id`, `next_entry_id`, `catalog_entry_name`, `product_stock_number`, `price_in_dollars`, `price_in_euros`, `price_in_pounds`, `capacity`, `length`, `height`, `width`) VALUES (14, 9, 3, 5, 8, 'Fenta Orange', '65 wc', '415.92', '385.85', '371.9', '7', '4', '3', '7'); +INSERT INTO Catalog_Contents (`catalog_entry_id`, `catalog_level_number`, `parent_entry_id`, `previous_entry_id`, `next_entry_id`, `catalog_entry_name`, `product_stock_number`, `price_in_dollars`, `price_in_euros`, `price_in_pounds`, `capacity`, `length`, `height`, `width`) VALUES (15, 1, 6, 8, 9, 'Wanglaoji', '51 kr', '533.6', '498.62', '422.71', '4', '5', '8', '8'); + + + +CREATE TABLE `Catalog_Contents_Additional_Attributes` ( +`catalog_entry_id` INTEGER NOT NULL, +`catalog_level_number` INTEGER NOT NULL, +`attribute_id` INTEGER NOT NULL, +`attribute_value` VARCHAR(255) NOT NULL, +FOREIGN KEY (`catalog_entry_id` ) REFERENCES `Catalog_Contents`(`catalog_entry_id` ), +FOREIGN KEY (`catalog_level_number` ) REFERENCES `Catalog_Structure`(`catalog_level_number` ) +); +INSERT INTO Catalog_Contents_Additional_Attributes (`catalog_entry_id`, `catalog_level_number`, `attribute_id`, `attribute_value`) VALUES (5, 8, 4, '1'); +INSERT INTO Catalog_Contents_Additional_Attributes (`catalog_entry_id`, `catalog_level_number`, `attribute_id`, `attribute_value`) VALUES (15, 9, 3, '0'); +INSERT INTO Catalog_Contents_Additional_Attributes (`catalog_entry_id`, `catalog_level_number`, `attribute_id`, `attribute_value`) VALUES (11, 1, 2, '0'); +INSERT INTO Catalog_Contents_Additional_Attributes (`catalog_entry_id`, `catalog_level_number`, `attribute_id`, `attribute_value`) VALUES (12, 1, 4, '0'); +INSERT INTO Catalog_Contents_Additional_Attributes (`catalog_entry_id`, `catalog_level_number`, `attribute_id`, `attribute_value`) VALUES (1, 8, 3, '1'); +INSERT INTO Catalog_Contents_Additional_Attributes (`catalog_entry_id`, `catalog_level_number`, `attribute_id`, `attribute_value`) VALUES (8, 1, 3, '1'); +INSERT INTO Catalog_Contents_Additional_Attributes (`catalog_entry_id`, `catalog_level_number`, `attribute_id`, `attribute_value`) VALUES (14, 9, 2, '0'); +INSERT INTO Catalog_Contents_Additional_Attributes (`catalog_entry_id`, `catalog_level_number`, `attribute_id`, `attribute_value`) VALUES (15, 9, 2, '0'); +INSERT INTO Catalog_Contents_Additional_Attributes (`catalog_entry_id`, `catalog_level_number`, `attribute_id`, `attribute_value`) VALUES (15, 1, 3, '1'); +INSERT INTO Catalog_Contents_Additional_Attributes (`catalog_entry_id`, `catalog_level_number`, `attribute_id`, `attribute_value`) VALUES (1, 8, 4, '0'); +INSERT INTO Catalog_Contents_Additional_Attributes (`catalog_entry_id`, `catalog_level_number`, `attribute_id`, `attribute_value`) VALUES (11, 1, 3, '1'); +INSERT INTO Catalog_Contents_Additional_Attributes (`catalog_entry_id`, `catalog_level_number`, `attribute_id`, `attribute_value`) VALUES (8, 9, 3, '0'); +INSERT INTO Catalog_Contents_Additional_Attributes (`catalog_entry_id`, `catalog_level_number`, `attribute_id`, `attribute_value`) VALUES (2, 8, 4, '1'); +INSERT INTO Catalog_Contents_Additional_Attributes (`catalog_entry_id`, `catalog_level_number`, `attribute_id`, `attribute_value`) VALUES (6, 1, 1, '1'); +INSERT INTO Catalog_Contents_Additional_Attributes (`catalog_entry_id`, `catalog_level_number`, `attribute_id`, `attribute_value`) VALUES (4, 8, 4, '0'); diff --git a/database/products_for_hire/products_for_hire.sqlite b/database/products_for_hire/products_for_hire.sqlite new file mode 100644 index 0000000000000000000000000000000000000000..0ceb6ce5e19dad4a37d33cee134754b3732c549d Binary files /dev/null and b/database/products_for_hire/products_for_hire.sqlite differ diff --git a/database/products_for_hire/schema.sql b/database/products_for_hire/schema.sql new file mode 100644 index 0000000000000000000000000000000000000000..67aafcc3a862f28fd3530fb3a9bb9815009d03a8 --- /dev/null +++ b/database/products_for_hire/schema.sql @@ -0,0 +1,165 @@ +PRAGMA foreign_keys = ON; + +CREATE TABLE `Discount_Coupons` ( +`coupon_id` INTEGER PRIMARY KEY, +`date_issued` DATETIME, +`coupon_amount` DECIMAL(19,4) +); +INSERT INTO Discount_Coupons (`coupon_id`, `date_issued`, `coupon_amount`) VALUES (1, '2017-09-06 01:33:27', '500.0000'); +INSERT INTO Discount_Coupons (`coupon_id`, `date_issued`, `coupon_amount`) VALUES (2, '2018-02-20 09:40:56', '686.2500'); +INSERT INTO Discount_Coupons (`coupon_id`, `date_issued`, `coupon_amount`) VALUES (3, '2017-09-17 23:31:36', '501.3000'); +INSERT INTO Discount_Coupons (`coupon_id`, `date_issued`, `coupon_amount`) VALUES (4, '2017-07-21 10:10:47', '370.4400'); +INSERT INTO Discount_Coupons (`coupon_id`, `date_issued`, `coupon_amount`) VALUES (5, '2017-06-21 22:47:58', '399.8900'); +INSERT INTO Discount_Coupons (`coupon_id`, `date_issued`, `coupon_amount`) VALUES (6, '2017-08-16 03:16:48', '689.2900'); +INSERT INTO Discount_Coupons (`coupon_id`, `date_issued`, `coupon_amount`) VALUES (7, '2018-02-10 21:18:23', '508.4400'); +INSERT INTO Discount_Coupons (`coupon_id`, `date_issued`, `coupon_amount`) VALUES (8, '2017-12-28 20:11:42', '666.4600'); +INSERT INTO Discount_Coupons (`coupon_id`, `date_issued`, `coupon_amount`) VALUES (9, '2017-07-03 23:02:14', '685.9600'); +INSERT INTO Discount_Coupons (`coupon_id`, `date_issued`, `coupon_amount`) VALUES (10, '2018-03-22 01:10:03', '175.9400'); +INSERT INTO Discount_Coupons (`coupon_id`, `date_issued`, `coupon_amount`) VALUES (11, '2017-10-22 06:03:39', '607.6200'); +INSERT INTO Discount_Coupons (`coupon_id`, `date_issued`, `coupon_amount`) VALUES (12, '2018-03-21 11:49:13', '523.7800'); +INSERT INTO Discount_Coupons (`coupon_id`, `date_issued`, `coupon_amount`) VALUES (13, '2017-07-13 00:37:36', '770.8200'); +INSERT INTO Discount_Coupons (`coupon_id`, `date_issued`, `coupon_amount`) VALUES (14, '2018-02-24 01:40:52', '547.3900'); +INSERT INTO Discount_Coupons (`coupon_id`, `date_issued`, `coupon_amount`) VALUES (15, '2017-07-02 06:49:42', '245.3600'); + + +CREATE TABLE `Customers` ( +`customer_id` INTEGER PRIMARY KEY, +`coupon_id` INTEGER NOT NULL, +`good_or_bad_customer` VARCHAR(4), +`first_name` VARCHAR(80), +`last_name` VARCHAR(80), +`gender_mf` VARCHAR(1), +`date_became_customer` DATETIME, +`date_last_hire` DATETIME, +FOREIGN KEY (`coupon_id` ) REFERENCES `Discount_Coupons`(`coupon_id` ) +); +INSERT INTO Customers (`customer_id`, `coupon_id`, `good_or_bad_customer`, `first_name`, `last_name`, `gender_mf`, `date_became_customer`, `date_last_hire`) VALUES (1, 12, 'good', 'Geovany', 'Homenick', '0', '2017-10-20 12:13:17', '2018-02-27 18:55:26'); +INSERT INTO Customers (`customer_id`, `coupon_id`, `good_or_bad_customer`, `first_name`, `last_name`, `gender_mf`, `date_became_customer`, `date_last_hire`) VALUES (2, 14, 'good', 'Jailyn', 'Gerlach', '0', '2015-04-06 21:18:37', '2018-01-30 04:47:13'); +INSERT INTO Customers (`customer_id`, `coupon_id`, `good_or_bad_customer`, `first_name`, `last_name`, `gender_mf`, `date_became_customer`, `date_last_hire`) VALUES (3, 7, 'good', 'Rosalee', 'Kessler', '0', '2016-02-03 16:58:11', '2018-03-04 21:30:23'); +INSERT INTO Customers (`customer_id`, `coupon_id`, `good_or_bad_customer`, `first_name`, `last_name`, `gender_mf`, `date_became_customer`, `date_last_hire`) VALUES (4, 12, 'bad', 'Reba', 'Jacobs', '1', '2016-06-17 14:11:50', '2018-02-19 06:04:01'); +INSERT INTO Customers (`customer_id`, `coupon_id`, `good_or_bad_customer`, `first_name`, `last_name`, `gender_mf`, `date_became_customer`, `date_last_hire`) VALUES (5, 10, 'good', 'Ericka', 'Greenholt', '0', '2016-08-11 01:50:37', '2018-02-25 04:40:15'); +INSERT INTO Customers (`customer_id`, `coupon_id`, `good_or_bad_customer`, `first_name`, `last_name`, `gender_mf`, `date_became_customer`, `date_last_hire`) VALUES (6, 14, 'bad', 'Bridget', 'Ankunding', '1', '2015-04-24 02:38:16', '2018-02-10 19:44:08'); +INSERT INTO Customers (`customer_id`, `coupon_id`, `good_or_bad_customer`, `first_name`, `last_name`, `gender_mf`, `date_became_customer`, `date_last_hire`) VALUES (7, 12, 'good', 'Marilou', 'Strosin', '1', '2015-12-16 08:05:53', '2018-02-01 16:48:30'); +INSERT INTO Customers (`customer_id`, `coupon_id`, `good_or_bad_customer`, `first_name`, `last_name`, `gender_mf`, `date_became_customer`, `date_last_hire`) VALUES (8, 6, 'good', 'Elinore', 'Crona', '0', '2017-07-27 08:04:22', '2018-03-04 08:59:40'); +INSERT INTO Customers (`customer_id`, `coupon_id`, `good_or_bad_customer`, `first_name`, `last_name`, `gender_mf`, `date_became_customer`, `date_last_hire`) VALUES (9, 7, 'good', 'German', 'Little', '1', '2017-02-28 14:40:25', '2018-03-13 21:20:05'); +INSERT INTO Customers (`customer_id`, `coupon_id`, `good_or_bad_customer`, `first_name`, `last_name`, `gender_mf`, `date_became_customer`, `date_last_hire`) VALUES (10, 1, 'bad', 'Layne', 'Terry', '1', '2015-05-05 20:29:01', '2018-02-04 08:56:55'); +INSERT INTO Customers (`customer_id`, `coupon_id`, `good_or_bad_customer`, `first_name`, `last_name`, `gender_mf`, `date_became_customer`, `date_last_hire`) VALUES (11, 10, 'good', 'Maximilian', 'Murphy', '0', '2015-07-21 09:24:57', '2018-03-12 09:23:41'); +INSERT INTO Customers (`customer_id`, `coupon_id`, `good_or_bad_customer`, `first_name`, `last_name`, `gender_mf`, `date_became_customer`, `date_last_hire`) VALUES (12, 11, 'good', 'Vergie', 'Nicolas', '0', '2016-02-03 10:31:18', '2018-03-03 23:37:31'); +INSERT INTO Customers (`customer_id`, `coupon_id`, `good_or_bad_customer`, `first_name`, `last_name`, `gender_mf`, `date_became_customer`, `date_last_hire`) VALUES (13, 2, 'good', 'Laury', 'Lemke', '1', '2017-03-18 04:37:59', '2018-03-18 17:35:43'); +INSERT INTO Customers (`customer_id`, `coupon_id`, `good_or_bad_customer`, `first_name`, `last_name`, `gender_mf`, `date_became_customer`, `date_last_hire`) VALUES (14, 6, 'good', 'Tyler', 'Breitenberg', '1', '2016-04-20 21:04:35', '2018-03-03 13:46:38'); +INSERT INTO Customers (`customer_id`, `coupon_id`, `good_or_bad_customer`, `first_name`, `last_name`, `gender_mf`, `date_became_customer`, `date_last_hire`) VALUES (15, 3, 'bad', 'Jamir', 'Schroeder', '1', '2016-05-25 01:12:49', '2018-02-24 11:15:29'); + + +CREATE TABLE `Bookings` ( +`booking_id` INTEGER PRIMARY KEY , +`customer_id` INTEGER NOT NULL, +`booking_status_code` VARCHAR(10) NOT NULL, +`returned_damaged_yn` VARCHAR(40), +`booking_start_date` DATETIME, +`booking_end_date` DATETIME, +`count_hired` VARCHAR(40), +`amount_payable` DECIMAL(19,4), +`amount_of_discount` DECIMAL(19,4), +`amount_outstanding` DECIMAL(19,4), +`amount_of_refund` DECIMAL(19,4), +FOREIGN KEY (`customer_id` ) REFERENCES `Customers`(`customer_id` ) +); + +INSERT INTO Bookings (`booking_id`, `customer_id`, `booking_status_code`, `returned_damaged_yn`, `booking_start_date`, `booking_end_date`, `count_hired`, `amount_payable`, `amount_of_discount`, `amount_outstanding`, `amount_of_refund`) VALUES (1, 7, 'Provisional', '1', '2016-12-07 23:39:17', '2018-02-01 16:39:13', '298', '214.3900', '71.4500', '28.2200', '179.1400'); +INSERT INTO Bookings (`booking_id`, `customer_id`, `booking_status_code`, `returned_damaged_yn`, `booking_start_date`, `booking_end_date`, `count_hired`, `amount_payable`, `amount_of_discount`, `amount_outstanding`, `amount_of_refund`) VALUES (2, 15, 'Confirmed', '1', '2017-06-16 11:42:31', '2018-02-19 21:53:31', '331', '386.9200', '83.8200', '57.6200', '183.6800'); +INSERT INTO Bookings (`booking_id`, `customer_id`, `booking_status_code`, `returned_damaged_yn`, `booking_start_date`, `booking_end_date`, `count_hired`, `amount_payable`, `amount_of_discount`, `amount_outstanding`, `amount_of_refund`) VALUES (3, 3, 'Confirmed', '1', '2017-04-04 11:02:43', '2018-02-01 09:30:50', '729', '351.3200', '49.2600', '66.0100', '135.9400'); +INSERT INTO Bookings (`booking_id`, `customer_id`, `booking_status_code`, `returned_damaged_yn`, `booking_start_date`, `booking_end_date`, `count_hired`, `amount_payable`, `amount_of_discount`, `amount_outstanding`, `amount_of_refund`) VALUES (4, 7, 'Provisional', '0', '2017-06-05 17:56:01', '2017-12-02 00:37:00', '152', '272.0800', '45.0600', '38.8700', '100.7800'); +INSERT INTO Bookings (`booking_id`, `customer_id`, `booking_status_code`, `returned_damaged_yn`, `booking_start_date`, `booking_end_date`, `count_hired`, `amount_payable`, `amount_of_discount`, `amount_outstanding`, `amount_of_refund`) VALUES (5, 7, 'Provisional', '1', '2016-11-06 20:54:26', '2017-10-11 03:00:15', '546', '338.1000', '79.3400', '32.9900', '191.3100'); +INSERT INTO Bookings (`booking_id`, `customer_id`, `booking_status_code`, `returned_damaged_yn`, `booking_start_date`, `booking_end_date`, `count_hired`, `amount_payable`, `amount_of_discount`, `amount_outstanding`, `amount_of_refund`) VALUES (6, 10, 'Confirmed', '0', '2016-06-05 05:18:17', '2018-01-14 00:29:01', '282', '209.4100', '27.7800', '52.6200', '192.0200'); +INSERT INTO Bookings (`booking_id`, `customer_id`, `booking_status_code`, `returned_damaged_yn`, `booking_start_date`, `booking_end_date`, `count_hired`, `amount_payable`, `amount_of_discount`, `amount_outstanding`, `amount_of_refund`) VALUES (7, 3, 'Provisional', '1', '2017-07-15 06:28:54', '2017-11-28 08:11:52', '236', '322.8700', '39.2700', '56.0200', '126.1000'); +INSERT INTO Bookings (`booking_id`, `customer_id`, `booking_status_code`, `returned_damaged_yn`, `booking_start_date`, `booking_end_date`, `count_hired`, `amount_payable`, `amount_of_discount`, `amount_outstanding`, `amount_of_refund`) VALUES (8, 11, 'Provisional', '0', '2016-09-26 01:09:20', '2018-03-24 21:21:32', '746', '303.3000', '61.5500', '68.0200', '145.6300'); +INSERT INTO Bookings (`booking_id`, `customer_id`, `booking_status_code`, `returned_damaged_yn`, `booking_start_date`, `booking_end_date`, `count_hired`, `amount_payable`, `amount_of_discount`, `amount_outstanding`, `amount_of_refund`) VALUES (9, 10, 'Provisional', '0', '2017-05-24 16:16:29', '2018-03-07 17:39:04', '846', '374.5900', '50.9300', '26.0400', '130.8700'); +INSERT INTO Bookings (`booking_id`, `customer_id`, `booking_status_code`, `returned_damaged_yn`, `booking_start_date`, `booking_end_date`, `count_hired`, `amount_payable`, `amount_of_discount`, `amount_outstanding`, `amount_of_refund`) VALUES (10, 3, 'Confirmed', '1', '2016-05-06 03:50:49', '2017-08-30 04:33:23', '857', '320.7300', '39.1600', '27.8100', '112.6300'); +INSERT INTO Bookings (`booking_id`, `customer_id`, `booking_status_code`, `returned_damaged_yn`, `booking_start_date`, `booking_end_date`, `count_hired`, `amount_payable`, `amount_of_discount`, `amount_outstanding`, `amount_of_refund`) VALUES (11, 9, 'Provisional', '1', '2017-04-11 00:39:03', '2017-10-02 07:28:09', '488', '273.2800', '48.7300', '73.8800', '181.1900'); +INSERT INTO Bookings (`booking_id`, `customer_id`, `booking_status_code`, `returned_damaged_yn`, `booking_start_date`, `booking_end_date`, `count_hired`, `amount_payable`, `amount_of_discount`, `amount_outstanding`, `amount_of_refund`) VALUES (12, 3, 'Provisional', '1', '2017-02-27 12:04:35', '2018-02-06 19:27:09', '914', '281.0900', '26.3700', '22.9700', '110.3900'); +INSERT INTO Bookings (`booking_id`, `customer_id`, `booking_status_code`, `returned_damaged_yn`, `booking_start_date`, `booking_end_date`, `count_hired`, `amount_payable`, `amount_of_discount`, `amount_outstanding`, `amount_of_refund`) VALUES (13, 8, 'Provisional', '0', '2016-11-27 17:19:40', '2018-03-04 21:42:45', '499', '286.4700', '89.0500', '36.7900', '143.9900'); +INSERT INTO Bookings (`booking_id`, `customer_id`, `booking_status_code`, `returned_damaged_yn`, `booking_start_date`, `booking_end_date`, `count_hired`, `amount_payable`, `amount_of_discount`, `amount_outstanding`, `amount_of_refund`) VALUES (14, 8, 'Confirmed', '1', '2016-04-25 11:04:18', '2018-01-01 10:19:20', '843', '221.5700', '24.1900', '64.0100', '161.9000'); +INSERT INTO Bookings (`booking_id`, `customer_id`, `booking_status_code`, `returned_damaged_yn`, `booking_start_date`, `booking_end_date`, `count_hired`, `amount_payable`, `amount_of_discount`, `amount_outstanding`, `amount_of_refund`) VALUES (15, 9, 'Provisional', '1', '2017-04-28 08:35:56', '2018-01-18 23:54:44', '994', '306.2600', '78.3100', '93.8800', '124.9500'); + + + +CREATE TABLE `Products_for_Hire` ( +`product_id` INTEGER PRIMARY KEY, +`product_type_code` VARCHAR(15) NOT NULL, +`daily_hire_cost` DECIMAL(19,4), +`product_name` VARCHAR(80), +`product_description` VARCHAR(255) +); + +INSERT INTO Products_for_Hire (`product_id`, `product_type_code`, `daily_hire_cost`, `product_name`, `product_description`) VALUES (1, 'Cutlery', '26.1500', 'Book collection C', 'Anna Karenina'); +INSERT INTO Products_for_Hire (`product_id`, `product_type_code`, `daily_hire_cost`, `product_name`, `product_description`) VALUES (2, 'Cutlery', '15.6200', 'Book collection B', 'War and Peace'); +INSERT INTO Products_for_Hire (`product_id`, `product_type_code`, `daily_hire_cost`, `product_name`, `product_description`) VALUES (3, 'Cutlery', '39.7300', 'Book collection A', 'The Great Gatsby'); +INSERT INTO Products_for_Hire (`product_id`, `product_type_code`, `daily_hire_cost`, `product_name`, `product_description`) VALUES (4, 'Din_Plates', '18.5000', 'DVD collection A', 'Twilight'); +INSERT INTO Products_for_Hire (`product_id`, `product_type_code`, `daily_hire_cost`, `product_name`, `product_description`) VALUES (5, 'Cutlery', '39.5800', 'DVD collection B', 'One Hundred Years of Solitude'); + + +CREATE TABLE `Payments` ( +`payment_id` INTEGER PRIMARY KEY, +`booking_id` INTEGER, +`customer_id` INTEGER NOT NULL, +`payment_type_code` VARCHAR(15) NOT NULL, +`amount_paid_in_full_yn` VARCHAR(1), +`payment_date` DATETIME, +`amount_due` DECIMAL(19,4), +`amount_paid` DECIMAL(19,4), +FOREIGN KEY (`booking_id` ) REFERENCES `Bookings`(`booking_id` ), +FOREIGN KEY (`customer_id` ) REFERENCES `Customers`(`customer_id` ) +); + +INSERT INTO Payments (`payment_id`, `booking_id`, `customer_id`, `payment_type_code`, `amount_paid_in_full_yn`, `payment_date`, `amount_due`, `amount_paid`) VALUES (1, 6, 15, 'Check', '1', '2018-03-09 16:28:00', '369.5200', '206.2700'); +INSERT INTO Payments (`payment_id`, `booking_id`, `customer_id`, `payment_type_code`, `amount_paid_in_full_yn`, `payment_date`, `amount_due`, `amount_paid`) VALUES (2, 9, 12, 'Cash', '1', '2018-03-03 13:39:44', '278.6000', '666.4500'); +INSERT INTO Payments (`payment_id`, `booking_id`, `customer_id`, `payment_type_code`, `amount_paid_in_full_yn`, `payment_date`, `amount_due`, `amount_paid`) VALUES (3, 5, 7, 'Credit Card', '0', '2018-03-22 15:00:23', '840.0600', '135.7000'); +INSERT INTO Payments (`payment_id`, `booking_id`, `customer_id`, `payment_type_code`, `amount_paid_in_full_yn`, `payment_date`, `amount_due`, `amount_paid`) VALUES (4, 6, 1, 'Check', '0', '2018-03-22 02:28:11', '678.2900', '668.4000'); +INSERT INTO Payments (`payment_id`, `booking_id`, `customer_id`, `payment_type_code`, `amount_paid_in_full_yn`, `payment_date`, `amount_due`, `amount_paid`) VALUES (5, 8, 11, 'Cash', '1', '2018-03-23 20:36:04', '830.2500', '305.6500'); +INSERT INTO Payments (`payment_id`, `booking_id`, `customer_id`, `payment_type_code`, `amount_paid_in_full_yn`, `payment_date`, `amount_due`, `amount_paid`) VALUES (6, 15, 8, 'Check', '0', '2018-03-19 12:39:31', '410.1000', '175.5400'); +INSERT INTO Payments (`payment_id`, `booking_id`, `customer_id`, `payment_type_code`, `amount_paid_in_full_yn`, `payment_date`, `amount_due`, `amount_paid`) VALUES (7, 1, 8, 'Cash', '1', '2018-03-02 06:25:45', '482.2600', '602.8000'); +INSERT INTO Payments (`payment_id`, `booking_id`, `customer_id`, `payment_type_code`, `amount_paid_in_full_yn`, `payment_date`, `amount_due`, `amount_paid`) VALUES (8, 9, 14, 'Cash', '1', '2018-03-12 23:00:55', '653.1800', '505.2300'); +INSERT INTO Payments (`payment_id`, `booking_id`, `customer_id`, `payment_type_code`, `amount_paid_in_full_yn`, `payment_date`, `amount_due`, `amount_paid`) VALUES (9, 3, 7, 'Direct Debit', '0', '2018-03-12 23:23:56', '686.8500', '321.5800'); +INSERT INTO Payments (`payment_id`, `booking_id`, `customer_id`, `payment_type_code`, `amount_paid_in_full_yn`, `payment_date`, `amount_due`, `amount_paid`) VALUES (10, 13, 10, 'Credit Card', '1', '2018-03-23 13:24:33', '486.7500', '681.2100'); +INSERT INTO Payments (`payment_id`, `booking_id`, `customer_id`, `payment_type_code`, `amount_paid_in_full_yn`, `payment_date`, `amount_due`, `amount_paid`) VALUES (11, 14, 15, 'Credit Card', '1', '2018-03-03 03:07:00', '259.1800', '464.0600'); +INSERT INTO Payments (`payment_id`, `booking_id`, `customer_id`, `payment_type_code`, `amount_paid_in_full_yn`, `payment_date`, `amount_due`, `amount_paid`) VALUES (12, 14, 9, 'Cash', '0', '2018-02-27 10:50:39', '785.7300', '685.3200'); +INSERT INTO Payments (`payment_id`, `booking_id`, `customer_id`, `payment_type_code`, `amount_paid_in_full_yn`, `payment_date`, `amount_due`, `amount_paid`) VALUES (13, 15, 14, 'Direct Debit', '0', '2018-03-03 14:22:51', '665.5800', '307.1400'); +INSERT INTO Payments (`payment_id`, `booking_id`, `customer_id`, `payment_type_code`, `amount_paid_in_full_yn`, `payment_date`, `amount_due`, `amount_paid`) VALUES (14, 5, 5, 'Direct Debit', '1', '2018-03-17 15:51:52', '407.5100', '704.4100'); +INSERT INTO Payments (`payment_id`, `booking_id`, `customer_id`, `payment_type_code`, `amount_paid_in_full_yn`, `payment_date`, `amount_due`, `amount_paid`) VALUES (15, 4, 12, 'Credit Card', '1', '2018-03-17 03:07:45', '631.9300', '334.2000'); + +CREATE TABLE `Products_Booked` ( +`booking_id` INTEGER NOT NULL, +`product_id` INTEGER NOT NULL, +`returned_yn` VARCHAR(1), +`returned_late_yn` VARCHAR(1), +`booked_count` INTEGER, +`booked_amount` FLOAT NULL, +PRIMARY KEY (`booking_id`, `product_id`) +FOREIGN KEY (`booking_id` ) REFERENCES `Bookings`(`booking_id` ), +FOREIGN KEY (`product_id` ) REFERENCES `Products_for_Hire`(`product_id` ) +); + +CREATE TABLE `View_Product_Availability` ( +`product_id` INTEGER NOT NULL, +`booking_id` INTEGER NOT NULL, +`status_date` DATETIME PRIMARY KEY, +`available_yn` VARCHAR(1), +FOREIGN KEY (`booking_id` ) REFERENCES `Bookings`(`booking_id` ), +FOREIGN KEY (`product_id` ) REFERENCES `Products_for_Hire`(`product_id` ) +); +INSERT INTO Products_Booked (`booking_id`, `product_id`, `returned_yn`, `returned_late_yn`, `booked_count`, `booked_amount`) VALUES (4, 1, '1', '1', 5, '309.73'); +INSERT INTO Products_Booked (`booking_id`, `product_id`, `returned_yn`, `returned_late_yn`, `booked_count`, `booked_amount`) VALUES (14, 1, '1', '0', 3, '102.76'); +INSERT INTO Products_Booked (`booking_id`, `product_id`, `returned_yn`, `returned_late_yn`, `booked_count`, `booked_amount`) VALUES (13, 3, '1', '0', 4, '151.68'); +INSERT INTO Products_Booked (`booking_id`, `product_id`, `returned_yn`, `returned_late_yn`, `booked_count`, `booked_amount`) VALUES (11, 1, '1', '1', 1, '344.38'); +INSERT INTO Products_Booked (`booking_id`, `product_id`, `returned_yn`, `returned_late_yn`, `booked_count`, `booked_amount`) VALUES (15, 3, '1', '0', 2, '236.13'); +INSERT INTO Products_Booked (`booking_id`, `product_id`, `returned_yn`, `returned_late_yn`, `booked_count`, `booked_amount`) VALUES (10, 4, '1', '0', 6, '123.43'); +INSERT INTO Products_Booked (`booking_id`, `product_id`, `returned_yn`, `returned_late_yn`, `booked_count`, `booked_amount`) VALUES (14, 5, '1', '1', 6, '351.38'); +INSERT INTO Products_Booked (`booking_id`, `product_id`, `returned_yn`, `returned_late_yn`, `booked_count`, `booked_amount`) VALUES (11, 5, '1', '1', 3, '146.01'); +INSERT INTO Products_Booked (`booking_id`, `product_id`, `returned_yn`, `returned_late_yn`, `booked_count`, `booked_amount`) VALUES (3, 5, '1', '1', 3, '189.16'); +INSERT INTO Products_Booked (`booking_id`, `product_id`, `returned_yn`, `returned_late_yn`, `booked_count`, `booked_amount`) VALUES (15, 1, '1', '0', 1, '398.68'); +INSERT INTO Products_Booked (`booking_id`, `product_id`, `returned_yn`, `returned_late_yn`, `booked_count`, `booked_amount`) VALUES (2, 4, '1', '1', 9, '290.72'); +INSERT INTO Products_Booked (`booking_id`, `product_id`, `returned_yn`, `returned_late_yn`, `booked_count`, `booked_amount`) VALUES (1, 2, '1', '0', 5, '110.2'); +INSERT INTO View_Product_Availability (`product_id`, `booking_id`, `status_date`, `available_yn`) VALUES (1, 5, '2018-03-18 05:25:55', '1'); +INSERT INTO View_Product_Availability (`product_id`, `booking_id`, `status_date`, `available_yn`) VALUES (2, 5, '2018-03-21 15:20:32', '0'); +INSERT INTO View_Product_Availability (`product_id`, `booking_id`, `status_date`, `available_yn`) VALUES (3, 11, '2018-03-25 10:20:15', '1'); +INSERT INTO View_Product_Availability (`product_id`, `booking_id`, `status_date`, `available_yn`) VALUES (5, 11, '2018-03-22 00:16:58', '1'); diff --git a/database/products_gen_characteristics/products_gen_characteristics.sqlite b/database/products_gen_characteristics/products_gen_characteristics.sqlite new file mode 100644 index 0000000000000000000000000000000000000000..3132b1b6062dbca8e09a4f9f73e9b1b76dd2f898 Binary files /dev/null and b/database/products_gen_characteristics/products_gen_characteristics.sqlite differ diff --git a/database/products_gen_characteristics/schema.sql b/database/products_gen_characteristics/schema.sql new file mode 100644 index 0000000000000000000000000000000000000000..1ff503925c31d78c94ceb164b31c4add42dedb7e --- /dev/null +++ b/database/products_gen_characteristics/schema.sql @@ -0,0 +1,103 @@ +PRAGMA foreign_keys = ON; +CREATE TABLE `Ref_Characteristic_Types` ( +`characteristic_type_code` VARCHAR(15) PRIMARY KEY, +`characteristic_type_description` VARCHAR(80) +); +CREATE TABLE `Ref_Colors` ( +`color_code` VARCHAR(15) PRIMARY KEY, +`color_description` VARCHAR(80) +); +CREATE TABLE `Ref_Product_Categories` ( +`product_category_code` VARCHAR(15) PRIMARY KEY, +`product_category_description` VARCHAR(80), +`unit_of_measure` VARCHAR(20) +); +INSERT INTO Ref_Characteristic_Types (`characteristic_type_code`, `characteristic_type_description`) VALUES ('Grade', 'Grade'); +INSERT INTO Ref_Characteristic_Types (`characteristic_type_code`, `characteristic_type_description`) VALUES ('Purity', 'Purity'); +INSERT INTO Ref_Colors (`color_code`, `color_description`) VALUES ('9', 'red'); +INSERT INTO Ref_Colors (`color_code`, `color_description`) VALUES ('5', 'green'); +INSERT INTO Ref_Colors (`color_code`, `color_description`) VALUES ('1', 'yellow'); +INSERT INTO Ref_Colors (`color_code`, `color_description`) VALUES ('4', 'blue'); +INSERT INTO Ref_Colors (`color_code`, `color_description`) VALUES ('7', 'black'); +INSERT INTO Ref_Colors (`color_code`, `color_description`) VALUES ('2', 'white'); +INSERT INTO Ref_Colors (`color_code`, `color_description`) VALUES ('8', 'purple'); +INSERT INTO Ref_Colors (`color_code`, `color_description`) VALUES ('3', 'gray'); +INSERT INTO Ref_Product_Categories (`product_category_code`, `product_category_description`, `unit_of_measure`) VALUES ('Herbs', 'Herbs', 'Handful '); +INSERT INTO Ref_Product_Categories (`product_category_code`, `product_category_description`, `unit_of_measure`) VALUES ('Seeds', 'Seeds', 'Weight - pound,kilo.'); +INSERT INTO Ref_Product_Categories (`product_category_code`, `product_category_description`, `unit_of_measure`) VALUES ('Spices', 'Spices', 'Weight - pound,kilo.'); + +CREATE TABLE `Characteristics` ( +`characteristic_id` INTEGER PRIMARY KEY, +`characteristic_type_code` VARCHAR(15) NOT NULL, +`characteristic_data_type` VARCHAR(10), +`characteristic_name` VARCHAR(80), +`other_characteristic_details` VARCHAR(255), +FOREIGN KEY (`characteristic_type_code` ) REFERENCES `Ref_Characteristic_Types`(`characteristic_type_code` ) +); +INSERT INTO Characteristics (`characteristic_id`, `characteristic_type_code`, `characteristic_data_type`, `characteristic_name`, `other_characteristic_details`) VALUES (1, 'Grade', 'numquam', 'slow', NULL); +INSERT INTO Characteristics (`characteristic_id`, `characteristic_type_code`, `characteristic_data_type`, `characteristic_name`, `other_characteristic_details`) VALUES (2, 'Grade', 'doloribus', 'fast', NULL); +INSERT INTO Characteristics (`characteristic_id`, `characteristic_type_code`, `characteristic_data_type`, `characteristic_name`, `other_characteristic_details`) VALUES (3, 'Purity', 'rem', 'warm', NULL); +INSERT INTO Characteristics (`characteristic_id`, `characteristic_type_code`, `characteristic_data_type`, `characteristic_name`, `other_characteristic_details`) VALUES (4, 'Grade', 'aut', 'hot', NULL); +INSERT INTO Characteristics (`characteristic_id`, `characteristic_type_code`, `characteristic_data_type`, `characteristic_name`, `other_characteristic_details`) VALUES (5, 'Purity', 'impedit', 'hot', NULL); +INSERT INTO Characteristics (`characteristic_id`, `characteristic_type_code`, `characteristic_data_type`, `characteristic_name`, `other_characteristic_details`) VALUES (6, 'Purity', 'qui', 'warm', NULL); +INSERT INTO Characteristics (`characteristic_id`, `characteristic_type_code`, `characteristic_data_type`, `characteristic_name`, `other_characteristic_details`) VALUES (7, 'Grade', 'et', 'cool', NULL); +INSERT INTO Characteristics (`characteristic_id`, `characteristic_type_code`, `characteristic_data_type`, `characteristic_name`, `other_characteristic_details`) VALUES (8, 'Grade', 'dolores', 'cool', NULL); +INSERT INTO Characteristics (`characteristic_id`, `characteristic_type_code`, `characteristic_data_type`, `characteristic_name`, `other_characteristic_details`) VALUES (9, 'Grade', 'quam', 'cool', NULL); +INSERT INTO Characteristics (`characteristic_id`, `characteristic_type_code`, `characteristic_data_type`, `characteristic_name`, `other_characteristic_details`) VALUES (10, 'Grade', 'velit', 'fast', NULL); +INSERT INTO Characteristics (`characteristic_id`, `characteristic_type_code`, `characteristic_data_type`, `characteristic_name`, `other_characteristic_details`) VALUES (11, 'Purity', 'at', 'fast', NULL); +INSERT INTO Characteristics (`characteristic_id`, `characteristic_type_code`, `characteristic_data_type`, `characteristic_name`, `other_characteristic_details`) VALUES (12, 'Grade', 'totam', 'error', NULL); +INSERT INTO Characteristics (`characteristic_id`, `characteristic_type_code`, `characteristic_data_type`, `characteristic_name`, `other_characteristic_details`) VALUES (13, 'Purity', 'mollitia', 'slow', NULL); +INSERT INTO Characteristics (`characteristic_id`, `characteristic_type_code`, `characteristic_data_type`, `characteristic_name`, `other_characteristic_details`) VALUES (14, 'Purity', 'placeat', 'slow', NULL); +INSERT INTO Characteristics (`characteristic_id`, `characteristic_type_code`, `characteristic_data_type`, `characteristic_name`, `other_characteristic_details`) VALUES (15, 'Grade', 'facere', 'slow', NULL); + + +CREATE TABLE `Products` ( +`product_id` INTEGER PRIMARY KEY, +`color_code` VARCHAR(15) NOT NULL, +`product_category_code` VARCHAR(15) NOT NULL, +`product_name` VARCHAR(80), +`typical_buying_price` VARCHAR(20), +`typical_selling_price` VARCHAR(20), +`product_description` VARCHAR(255), +`other_product_details` VARCHAR(255), +FOREIGN KEY (`product_category_code` ) REFERENCES `Ref_Product_Categories`(`product_category_code` ),FOREIGN KEY (`color_code` ) REFERENCES `Ref_Colors`(`color_code` ) +); +INSERT INTO Products (`product_id`, `color_code`, `product_category_code`, `product_name`, `typical_buying_price`, `typical_selling_price`, `product_description`, `other_product_details`) VALUES (1, '4', 'Spices', 'cumin', '', '2878.3', 'et', NULL); +INSERT INTO Products (`product_id`, `color_code`, `product_category_code`, `product_name`, `typical_buying_price`, `typical_selling_price`, `product_description`, `other_product_details`) VALUES (2, '2', 'Spices', 'peper', '352447.2874677', '1892070.2803543', 'rerum', NULL); +INSERT INTO Products (`product_id`, `color_code`, `product_category_code`, `product_name`, `typical_buying_price`, `typical_selling_price`, `product_description`, `other_product_details`) VALUES (3, '9', 'Herbs', 'basil', '503.8431967', '0.1859512', 'officia', NULL); +INSERT INTO Products (`product_id`, `color_code`, `product_category_code`, `product_name`, `typical_buying_price`, `typical_selling_price`, `product_description`, `other_product_details`) VALUES (4, '1', 'Herbs', 'borage', '', '10377614.847385', 'blanditiis', NULL); +INSERT INTO Products (`product_id`, `color_code`, `product_category_code`, `product_name`, `typical_buying_price`, `typical_selling_price`, `product_description`, `other_product_details`) VALUES (5, '4', 'Spices', 'chili', '', '39446', 'eius', NULL); +INSERT INTO Products (`product_id`, `color_code`, `product_category_code`, `product_name`, `typical_buying_price`, `typical_selling_price`, `product_description`, `other_product_details`) VALUES (6, '4', 'Seeds', 'ginger', '5.578', '52735.6101', 'doloribus', NULL); +INSERT INTO Products (`product_id`, `color_code`, `product_category_code`, `product_name`, `typical_buying_price`, `typical_selling_price`, `product_description`, `other_product_details`) VALUES (7, '9', 'Seeds', 'sesame', '1284268.0659', '68205825.7', 'et', NULL); +INSERT INTO Products (`product_id`, `color_code`, `product_category_code`, `product_name`, `typical_buying_price`, `typical_selling_price`, `product_description`, `other_product_details`) VALUES (8, '9', 'Herbs', 'caraway', '24493', '', 'nulla', NULL); +INSERT INTO Products (`product_id`, `color_code`, `product_category_code`, `product_name`, `typical_buying_price`, `typical_selling_price`, `product_description`, `other_product_details`) VALUES (9, '2', 'Herbs', 'catnip', '12008702.623', '21577.891642', 'vel', NULL); +INSERT INTO Products (`product_id`, `color_code`, `product_category_code`, `product_name`, `typical_buying_price`, `typical_selling_price`, `product_description`, `other_product_details`) VALUES (10, '5', 'Seeds', 'flax', '339404395.7', '59622629.74', 'et', NULL); +INSERT INTO Products (`product_id`, `color_code`, `product_category_code`, `product_name`, `typical_buying_price`, `typical_selling_price`, `product_description`, `other_product_details`) VALUES (11, '7', 'Herbs', 'chervil', '', '', 'minus', NULL); +INSERT INTO Products (`product_id`, `color_code`, `product_category_code`, `product_name`, `typical_buying_price`, `typical_selling_price`, `product_description`, `other_product_details`) VALUES (12, '4', 'Seeds', 'voluptatem', '162', '149', 'officia', NULL); +INSERT INTO Products (`product_id`, `color_code`, `product_category_code`, `product_name`, `typical_buying_price`, `typical_selling_price`, `product_description`, `other_product_details`) VALUES (13, '5', 'Spices', 'cinnam', '1686539.4', '17595111.4', 'nisi', NULL); +INSERT INTO Products (`product_id`, `color_code`, `product_category_code`, `product_name`, `typical_buying_price`, `typical_selling_price`, `product_description`, `other_product_details`) VALUES (14, '4', 'Seeds', 'lotus', '43221310.465574', '63589.4054376', 'exercitationem', NULL); +INSERT INTO Products (`product_id`, `color_code`, `product_category_code`, `product_name`, `typical_buying_price`, `typical_selling_price`, `product_description`, `other_product_details`) VALUES (15, '2', 'Herbs', 'laurel', '', '57857', 'ut', NULL); + + +CREATE TABLE `Product_Characteristics` ( +`product_id` INTEGER NOT NULL, +`characteristic_id` INTEGER NOT NULL, +`product_characteristic_value` VARCHAR(50), +FOREIGN KEY (`characteristic_id` ) REFERENCES `Characteristics`(`characteristic_id` ), +FOREIGN KEY (`product_id` ) REFERENCES `Products`(`product_id` ) +); +INSERT INTO Product_Characteristics (`product_id`, `characteristic_id`, `product_characteristic_value`) VALUES (13, 13, 'low'); +INSERT INTO Product_Characteristics (`product_id`, `characteristic_id`, `product_characteristic_value`) VALUES (11, 2, 'low'); +INSERT INTO Product_Characteristics (`product_id`, `characteristic_id`, `product_characteristic_value`) VALUES (5, 15, 'low'); +INSERT INTO Product_Characteristics (`product_id`, `characteristic_id`, `product_characteristic_value`) VALUES (1, 13, 'low'); +INSERT INTO Product_Characteristics (`product_id`, `characteristic_id`, `product_characteristic_value`) VALUES (7, 12, 'low'); +INSERT INTO Product_Characteristics (`product_id`, `characteristic_id`, `product_characteristic_value`) VALUES (11, 6, 'low'); +INSERT INTO Product_Characteristics (`product_id`, `characteristic_id`, `product_characteristic_value`) VALUES (7, 2, 'medium'); +INSERT INTO Product_Characteristics (`product_id`, `characteristic_id`, `product_characteristic_value`) VALUES (12, 10, 'medium'); +INSERT INTO Product_Characteristics (`product_id`, `characteristic_id`, `product_characteristic_value`) VALUES (8, 11, 'high'); +INSERT INTO Product_Characteristics (`product_id`, `characteristic_id`, `product_characteristic_value`) VALUES (14, 4, 'medium'); +INSERT INTO Product_Characteristics (`product_id`, `characteristic_id`, `product_characteristic_value`) VALUES (11, 3, 'medium'); +INSERT INTO Product_Characteristics (`product_id`, `characteristic_id`, `product_characteristic_value`) VALUES (6, 15, 'high'); +INSERT INTO Product_Characteristics (`product_id`, `characteristic_id`, `product_characteristic_value`) VALUES (11, 3, 'high'); +INSERT INTO Product_Characteristics (`product_id`, `characteristic_id`, `product_characteristic_value`) VALUES (6, 10, 'high'); +INSERT INTO Product_Characteristics (`product_id`, `characteristic_id`, `product_characteristic_value`) VALUES (12, 2, 'high'); diff --git a/database/program_share/program_share.sqlite b/database/program_share/program_share.sqlite new file mode 100644 index 0000000000000000000000000000000000000000..cc3da5871c5da3897cd52c31300e7c6f3e775ee0 Binary files /dev/null and b/database/program_share/program_share.sqlite differ diff --git a/database/program_share/schema.sql b/database/program_share/schema.sql new file mode 100644 index 0000000000000000000000000000000000000000..e2bb63e966c137cb714d37d5f12b40a2d6536300 --- /dev/null +++ b/database/program_share/schema.sql @@ -0,0 +1,87 @@ + +PRAGMA foreign_keys = ON; + + +CREATE TABLE "program" ( +"Program_ID" int, +"Name" text, +"Origin" text, +"Launch" real, +"Owner" text, +PRIMARY KEY ("Program_ID") +); + + +CREATE TABLE "channel" ( +"Channel_ID" int, +"Name" text, +"Owner" text, +"Share_in_percent" real, +"Rating_in_percent" real, +PRIMARY KEY ("Channel_ID") +); + + + +INSERT INTO "program" VALUES (1,"Aniworld","Hunan","2005","Hunan Broadcasting System (HBS)"); +INSERT INTO "program" VALUES (2,"Kaku","Beijing","2004","Beijing Television (BTV)"); +INSERT INTO "program" VALUES (3,"Toonmax","Shanghai","2005","Shanghai Media Group (SMG)"); +INSERT INTO "program" VALUES (4,"Jiajia","Guangdong","2007","Southern Media Corporation (SMC)"); +INSERT INTO "program" VALUES (5,"Youman","Jiangsu","2010","Jiangsu Broadcasting Corporation (JSBC)"); + +INSERT INTO "channel" VALUES ("1","CCTV-1","CCTV","4.9","0.54"); +INSERT INTO "channel" VALUES ("2","Hunan Satellite TV","HBS","4.81","0.53"); +INSERT INTO "channel" VALUES ("3","CCTV-8","CCTV","3.76","0.41"); +INSERT INTO "channel" VALUES ("4","CCTV-13","CCTV","2.91","0.32"); +INSERT INTO "channel" VALUES ("5","CCTV-3","CCTV","2.86","0.31"); +INSERT INTO "channel" VALUES ("6","CCTV-6","CCTV","2.73","0.3"); +INSERT INTO "channel" VALUES ("7","CCTV-14","CCTV","2.6","0.29"); +INSERT INTO "channel" VALUES ("8","CCTV-4","CCTV","2.33","0.26"); +INSERT INTO "channel" VALUES ("9","Anhui Satellite TV","Anhui Television","1.78","0.2"); +INSERT INTO "channel" VALUES ("10","Shandong Satellite TV","Shandong Television","1.74","0.19"); + + + +CREATE TABLE "broadcast" ( +"Channel_ID" int, +"Program_ID" int, +"Time_of_day" text, +PRIMARY KEY ("Channel_ID","Program_ID"), +FOREIGN KEY (`Channel_ID`) REFERENCES `channel`(`Channel_ID`), +FOREIGN KEY (`Program_ID`) REFERENCES `program`(`Program_ID`) +); + + +INSERT INTO "broadcast" VALUES (1,1,"Morning"); +INSERT INTO "broadcast" VALUES (2,1,"Night"); +INSERT INTO "broadcast" VALUES (3,2,"Morning"); +INSERT INTO "broadcast" VALUES (4,1,"Night"); +INSERT INTO "broadcast" VALUES (5,4,"Morning"); +INSERT INTO "broadcast" VALUES (6,3,"Morning"); +INSERT INTO "broadcast" VALUES (7,3,"Noon"); +INSERT INTO "broadcast" VALUES (8,2,"Night"); +INSERT INTO "broadcast" VALUES (9,3,"Noon"); +INSERT INTO "broadcast" VALUES (10,4,"Night"); +INSERT INTO "broadcast" VALUES (1,2,"Night"); + + + +CREATE TABLE "broadcast_share" ( +"Channel_ID" int, +"Program_ID" int, +"Date" text, +"Share_in_percent" real, +PRIMARY KEY ("Channel_ID","Program_ID"), +FOREIGN KEY (`Channel_ID`) REFERENCES `channel`(`Channel_ID`), +FOREIGN KEY (`Program_ID`) REFERENCES `program`(`Program_ID`) +); + +INSERT INTO "broadcast_share" VALUES (1,1,"01,May",3.1); +INSERT INTO "broadcast_share" VALUES (2,1,"02,May",1.8); +INSERT INTO "broadcast_share" VALUES (3,2,"03,May",2.8); +INSERT INTO "broadcast_share" VALUES (4,1,"04,April",3.2); +INSERT INTO "broadcast_share" VALUES (5,4,"01,May",1.1); +INSERT INTO "broadcast_share" VALUES (6,3,"03,May",2.1); +INSERT INTO "broadcast_share" VALUES (7,3,"10,Jun",1.9); +INSERT INTO "broadcast_share" VALUES (8,2,"11,May",4.2); +INSERT INTO "broadcast_share" VALUES (9,3,"13,May",3.0); diff --git a/database/protein_institute/protein_institute.sqlite b/database/protein_institute/protein_institute.sqlite new file mode 100644 index 0000000000000000000000000000000000000000..b1532ab4b2f3babd9ff2ee7f642f757a47170a03 Binary files /dev/null and b/database/protein_institute/protein_institute.sqlite differ diff --git a/database/protein_institute/schema.sql b/database/protein_institute/schema.sql new file mode 100644 index 0000000000000000000000000000000000000000..57a6fb402435089865c1f493d91b6fc9b80325d3 --- /dev/null +++ b/database/protein_institute/schema.sql @@ -0,0 +1,66 @@ +PRAGMA foreign_keys = ON; + +CREATE TABLE "building" ( +"building_id" text, +"Name" text, +"Street_address" text, +"Years_as_tallest" text, +"Height_feet" int, +"Floors" int, +PRIMARY KEY("building_id") +); + +CREATE TABLE "Institution" ( +"Institution_id" text, +"Institution" text, +"Location" text, +"Founded" real, +"Type" text, +"Enrollment" int, +"Team" text, +"Primary_Conference" text, +"building_id" text, +PRIMARY KEY("Institution_id"), +FOREIGN KEY ("building_id") REFERENCES "building"("building_id") +); + +CREATE TABLE "protein" ( +"common_name" text, +"protein_name" text, +"divergence_from_human_lineage" real, +"accession_number" text, +"sequence_length" real, +"sequence_identity_to_human_protein" text, +"Institution_id" text, +PRIMARY KEY("common_name"), +FOREIGN KEY("Institution_id") REFERENCES "Institution"("Institution_id") +); + + +INSERT INTO "building" VALUES (0,"Citizens Bank Building","701 North Franklin Street","1913–1915","145","12"); +INSERT INTO "building" VALUES (1,"Tampa City Hall","315 John F. Kennedy Boulevard","1915–1926","160","10"); +INSERT INTO "building" VALUES (2,"Floridan Hotel","905 Franklin Street","1926–1966","204","17"); +INSERT INTO "building" VALUES (3,"Franklin Exchange Building","655 North Franklin Street","1966–1972","280","22"); +INSERT INTO "building" VALUES (4,"Park Tower","400 North Tampa Street","1972–1981","458","36"); +INSERT INTO "building" VALUES (5,"One Tampa City Center","201 North Franklin Street","1981–1986","537","39"); +INSERT INTO "building" VALUES (6,"Bank of America Tower","101 East Kennedy Boulevard","1986–1992","577","42"); +INSERT INTO "building" VALUES (7,"100 North Tampa","100 North Tampa Street","1992–present","579","42"); + +INSERT INTO "Institution" VALUES (0,"Ave Maria University","Ave Maria, Florida","1998","Private","1200","Gyrenes","The Sun",1); +INSERT INTO "Institution" VALUES (1,"Dakota State University","Madison, South Dakota","1881","Public","3102","Trojans","none",1); +INSERT INTO "Institution" VALUES (2,"Edward Waters College","Jacksonville, Florida","1866","Private","800","Tigers","Gulf Coast (GCAC)",3); +INSERT INTO "Institution" VALUES (3,"Haskell Indian Nations University","Lawrence, Kansas","1884","Tribal","1000","Fighting Indians","MCAC",5); +INSERT INTO "Institution" VALUES (4,"Jamestown College","Jamestown, North Dakota","1883","Private","967","Jimmies","none",2); +INSERT INTO "Institution" VALUES (5,"Lindenwood University–Belleville","Belleville, Illinois","2003","Private","2600","Lynx","none",0); +INSERT INTO "Institution" VALUES (6,"Mayville State University","Mayville, North Dakota","1889","Public","825","Comets","none",0); +INSERT INTO "Institution" VALUES (7,"Menlo College","Atherton, California","1927","Private","650","Oaks","CalPac",4); +INSERT INTO "Institution" VALUES (8,"Point University","West Point, Georgia","1937","Private","1035","Skyhawks","AAC",7); +INSERT INTO "Institution" VALUES (9,"Valley City State University","Valley City, North Dakota","1890","Public","1340","Vikings","none",3); +INSERT INTO "Institution" VALUES (10,"Webber International University","Babson Park, Florida","1927","Private","616","Warriors","The Sun",5); + +INSERT INTO "protein" VALUES ("Tropical Clawed Frog","uncharacterized protein C20orf117-like","371.2","XP_002942331.1","1584","39%",1); +INSERT INTO "protein" VALUES ("purple sea urchin","uncharacterized protein LOC578090","742.9","XP_783370.2","1587","47%",3); +INSERT INTO "protein" VALUES ("body louse","Centromeric protein E, putative","782.7","XP_002429877.1","2086","30%",5); +INSERT INTO "protein" VALUES ("southern house mosquito","conserved hypothetical protein","782.7","XP_001843754.1","1878","32%",5); +INSERT INTO "protein" VALUES ("porkworm","surface antigen repeat family protein","937.5","XP_003380263.1","2030","36%",9); + diff --git a/database/race_track/race_track.sqlite b/database/race_track/race_track.sqlite new file mode 100644 index 0000000000000000000000000000000000000000..415459c4fa9402ce14d0ce128ab4dae157a7150c Binary files /dev/null and b/database/race_track/race_track.sqlite differ diff --git a/database/race_track/schema.sql b/database/race_track/schema.sql new file mode 100644 index 0000000000000000000000000000000000000000..0dbf6bf87699d6c0dea90241c75294f48f35c91c --- /dev/null +++ b/database/race_track/schema.sql @@ -0,0 +1,39 @@ +PRAGMA foreign_keys = ON; + +CREATE TABLE "race" ( +"Race_ID" int, +"Name" text, +"Class" text, +"Date" text, +"Track_ID" text, +PRIMARY KEY ("Race_ID"), +FOREIGN KEY ("Track_ID") REFERENCES "track"("Track_ID") +); + +CREATE TABLE "track" ( +"Track_ID" int, +"Name" text, +"Location" text, +"Seating" real, +"Year_Opened" real, +PRIMARY KEY ("Track_ID") +); + +INSERT INTO "track" VALUES (1,"Auto Club Speedway","Fontana, CA","92000","1997"); +INSERT INTO "track" VALUES (2,"Chicagoland Speedway","Joliet, IL","75000","2001"); +INSERT INTO "track" VALUES (3,"Darlington Raceway","Darlington, SC","63000","1950"); +INSERT INTO "track" VALUES (4,"Daytona International Speedway","Daytona Beach, FL","168000","1959"); +INSERT INTO "track" VALUES (5,"Homestead-Miami Speedway","Homestead, FL","65000","1995"); +INSERT INTO "track" VALUES (6,"Kansas Speedway","Kansas City, KS","81687","2001"); +INSERT INTO "track" VALUES (7,"Martinsville Speedway","Ridgeway, VA","65000","1947"); +INSERT INTO "track" VALUES (8,"Michigan International Speedway","Brooklyn, MI","137243","1968"); +INSERT INTO "track" VALUES (9,"Phoenix International Raceway","Avondale, AZ","76812","1964"); + +INSERT INTO "race" VALUES (1,"Rolex 24 At Daytona","DP/GT","January 26 January 27",1); +INSERT INTO "race" VALUES (2,"Gainsco Grand Prix of Miami","DP/GT","March 29",2); +INSERT INTO "race" VALUES (3,"Mexico City 250","DP/GT","April 19",2); +INSERT INTO "race" VALUES (4,"Bosch Engineering 250 at VIR","GT","April 27",4); +INSERT INTO "race" VALUES (5,"RumBum.com 250","DP/GT","May 17",5); +INSERT INTO "race" VALUES (6,"Lime Rock GT Classic 250","GT","May 26",6); +INSERT INTO "race" VALUES (7,"Sahlen's Six Hours of the Glen","DP/GT","June 7",7); + diff --git a/database/railway/railway.sqlite b/database/railway/railway.sqlite new file mode 100644 index 0000000000000000000000000000000000000000..531a32716ffc90a59cf78d6c9ac7086d41431369 Binary files /dev/null and b/database/railway/railway.sqlite differ diff --git a/database/railway/schema.sql b/database/railway/schema.sql new file mode 100644 index 0000000000000000000000000000000000000000..4588898742936dfb2cc891b8d0df1ed9711423cf --- /dev/null +++ b/database/railway/schema.sql @@ -0,0 +1,86 @@ + +PRAGMA foreign_keys = ON; + +CREATE TABLE "railway" ( +"Railway_ID" int, +"Railway" text, +"Builder" text, +"Built" text, +"Wheels" text, +"Location" text, +"ObjectNumber" text, +PRIMARY KEY ("Railway_ID") +); + + + +INSERT INTO "railway" VALUES (1,"SECR","SECR Ashford","1901","4-4-0","York","1975-7006"); +INSERT INTO "railway" VALUES (2,"MR","MR Derby","1902 Midland Railway 1000 was rebuilt in 1914.","4-4-0","Bo'ness","1975-7018"); +INSERT INTO "railway" VALUES (3,"GNRD","GNR Doncaster","1902","4-4-2","Barrow Hill","1975-7005"); +INSERT INTO "railway" VALUES (4,"GWRS","GWR Swindon","1903","4-4-0","Toddington","1978-7025"); +INSERT INTO "railway" VALUES (5,"GERSt","GER Stratford","1904","0-6-0T","Bressingham","1975-7003"); +INSERT INTO "railway" VALUES (6,"GERHt","GER Hartford","1905","0-6-0","Barrow Hill","1978-7026"); +INSERT INTO "railway" VALUES (7,"GWRSn","GWR Swindon","1905","2-8-0","Shildon","1976-7001"); +INSERT INTO "railway" VALUES (8,"GWRWk","Swindon Works","1907","4-6-0","Swindon","1978-7027"); +INSERT INTO "railway" VALUES (9,"LTSR","Stephenson","1909","4-4-2T","Bressingham","1978-7028"); +INSERT INTO "railway" VALUES (10,"Longmoor","Avonside","1910","0-6-0ST","Basingstoke","2008-7159"); + + + +CREATE TABLE "train" ( +"Train_ID" int, +"Train_Num" text, +"Name" text, +"From" text, +"Arrival" text, +"Railway_ID" int, +PRIMARY KEY ("Train_ID"), +FOREIGN KEY ("Railway_ID") REFERENCES `railway`("Railway_ID") +); + +INSERT INTO "train" VALUES (1,"51195","Wardha-Ballarshah Pass","Wardha","08:54",1); +INSERT INTO "train" VALUES (2,"12139","Sewagram Exp","Mumbai CST","09:08",1); +INSERT INTO "train" VALUES (3,"12140","Ballarshah-Mumbai Pass","Ballarshah","09:48",2); +INSERT INTO "train" VALUES (4,"57135","Nagpur-Kazipet Pass","Nagpur","23:44",3); +INSERT INTO "train" VALUES (5,"57136","Kazipet-Nagpur Pass","Kazipet","05:09",5); +INSERT INTO "train" VALUES (6,"16094","Lucknow-Chennai Exp","Lucknow","13:04",5); +INSERT INTO "train" VALUES (7,"16032","Andaman Exp","Jammu Tawi","13:04",7); +INSERT INTO "train" VALUES (8,"16031","Andaman Exp","Chennai","23:39",9); +INSERT INTO "train" VALUES (9,"11401","Nandigram Exp","Mumbai CST","13:28",10); + + + +CREATE TABLE "manager" ( +"Manager_ID" int, +"Name" text, +"Country" text, +"Working_year_starts" text, +"Age" int, +"Level" int, +PRIMARY KEY ("Manager_ID") +); + +INSERT INTO "manager" VALUES (1,"Ben Curtis","United States","2003","45","5"); +INSERT INTO "manager" VALUES (2,"Todd Hamilton","United States","2004","55","5"); +INSERT INTO "manager" VALUES (3,"Tiger Woods","United States","2006","46","5"); +INSERT INTO "manager" VALUES (4,"David Duval","United States","2001","47","7"); +INSERT INTO "manager" VALUES (5,"Sandy Lyle","Scotland","1985","48","8"); +INSERT INTO "manager" VALUES (6,"Nick Faldo","England","1999","51","11"); +INSERT INTO "manager" VALUES (7,"Greg Norman","Australia","1993","52","12"); + + + +CREATE TABLE "railway_manage" ( +"Railway_ID" int, +"Manager_ID" int, +"From_Year" text, +PRIMARY KEY ("Railway_ID","Manager_ID"), +FOREIGN KEY ("Manager_ID") REFERENCES "manager"("Manager_ID"), +FOREIGN KEY ("Railway_ID") REFERENCES "railway"("Railway_ID") +); + +INSERT INTO "railway_manage" VALUES (8,1,"2010"); +INSERT INTO "railway_manage" VALUES (9,2,"2011"); +INSERT INTO "railway_manage" VALUES (7,3,"2012"); +INSERT INTO "railway_manage" VALUES (2,4,"2013"); + diff --git a/database/real_estate_properties/real_estate_properties.sqlite b/database/real_estate_properties/real_estate_properties.sqlite new file mode 100644 index 0000000000000000000000000000000000000000..8432e6b3ee88edaff6caa08ba659139d33ded7c1 Binary files /dev/null and b/database/real_estate_properties/real_estate_properties.sqlite differ diff --git a/database/real_estate_properties/schema.sql b/database/real_estate_properties/schema.sql new file mode 100644 index 0000000000000000000000000000000000000000..157b44a0f4ba96af94e37d70b0c08a7ca8c8aa44 --- /dev/null +++ b/database/real_estate_properties/schema.sql @@ -0,0 +1,116 @@ +PRAGMA foreign_keys = ON; + +CREATE TABLE `Ref_Feature_Types` ( +`feature_type_code` VARCHAR(20) PRIMARY KEY, +`feature_type_name` VARCHAR(80) +); +CREATE TABLE `Ref_Property_Types` ( +`property_type_code` VARCHAR(20) PRIMARY KEY, +`property_type_description` VARCHAR(80) +); + +CREATE TABLE `Other_Available_Features` ( +`feature_id` INTEGER PRIMARY KEY, +`feature_type_code` VARCHAR(20) NOT NULL, +`feature_name` VARCHAR(80), +`feature_description` VARCHAR(80), +FOREIGN KEY (`feature_type_code` ) REFERENCES `Ref_Feature_Types`(`feature_type_code` ) +); + +CREATE TABLE `Properties` ( +`property_id` INTEGER PRIMARY KEY, +`property_type_code` VARCHAR(20) NOT NULL, +`date_on_market` DATETIME, +`date_sold` DATETIME, +`property_name` VARCHAR(80), +`property_address` VARCHAR(255), +`room_count` INTEGER, +`vendor_requested_price` DECIMAL(19,4), +`buyer_offered_price` DECIMAL(19,4), +`agreed_selling_price` DECIMAL(19,4), +`apt_feature_1` VARCHAR(255), +`apt_feature_2` VARCHAR(255), +`apt_feature_3` VARCHAR(255), +`fld_feature_1` VARCHAR(255), +`fld_feature_2` VARCHAR(255), +`fld_feature_3` VARCHAR(255), +`hse_feature_1` VARCHAR(255), +`hse_feature_2` VARCHAR(255), +`hse_feature_3` VARCHAR(255), +`oth_feature_1` VARCHAR(255), +`oth_feature_2` VARCHAR(255), +`oth_feature_3` VARCHAR(255), +`shp_feature_1` VARCHAR(255), +`shp_feature_2` VARCHAR(255), +`shp_feature_3` VARCHAR(255), +`other_property_details` VARCHAR(255), +FOREIGN KEY (`property_type_code` ) REFERENCES `Ref_Property_Types`(`property_type_code` ) +); + +CREATE TABLE `Other_Property_Features` ( +`property_id` INTEGER NOT NULL, +`feature_id` INTEGER NOT NULL, +`property_feature_description` VARCHAR(80), +FOREIGN KEY (`feature_id` ) REFERENCES `Other_Available_Features`(`feature_id` ), +FOREIGN KEY (`property_id` ) REFERENCES `Properties`(`property_id` ) +); + + +INSERT INTO Ref_Feature_Types (`feature_type_code`, `feature_type_name`) VALUES ('Amenity', 'Amenity, eg Pool.'); +INSERT INTO Ref_Feature_Types (`feature_type_code`, `feature_type_name`) VALUES ('Security', 'Securiyt, eg Burglar Alarm.'); +INSERT INTO Ref_Property_Types (`property_type_code`, `property_type_description`) VALUES ('House', 'House, Bungalow, etc.'); +INSERT INTO Ref_Property_Types (`property_type_code`, `property_type_description`) VALUES ('Apartment', 'Apartment, Flat, Condo, etc.'); +INSERT INTO Ref_Property_Types (`property_type_code`, `property_type_description`) VALUES ('Field', 'Field, Meadow.'); +INSERT INTO Ref_Property_Types (`property_type_code`, `property_type_description`) VALUES ('Other', 'Other, to be determined.'); +INSERT INTO Ref_Property_Types (`property_type_code`, `property_type_description`) VALUES ('Shop', 'Shop, Retail Outlet.'); + +INSERT INTO Other_Available_Features (`feature_id`, `feature_type_code`, `feature_name`, `feature_description`) VALUES (2, 'Amenity', 'AirCon', 'Air Conditioning.'); +INSERT INTO Other_Available_Features (`feature_id`, `feature_type_code`, `feature_name`, `feature_description`) VALUES (3, 'Amenity', 'Pool', 'Swimming Pool.'); +INSERT INTO Other_Available_Features (`feature_id`, `feature_type_code`, `feature_name`, `feature_description`) VALUES (4, 'Security', 'BurglarAlarm', 'Burglar Alarm'); + + +INSERT INTO Properties (`property_id`, `property_type_code`, `date_on_market`, `date_sold`, `property_name`, `property_address`, `room_count`, `vendor_requested_price`, `buyer_offered_price`, `agreed_selling_price`, `apt_feature_1`, `apt_feature_2`, `apt_feature_3`, `fld_feature_1`, `fld_feature_2`, `fld_feature_3`, `hse_feature_1`, `hse_feature_2`, `hse_feature_3`, `oth_feature_1`, `oth_feature_2`, `oth_feature_3`, `shp_feature_1`, `shp_feature_2`, `shp_feature_3`, `other_property_details`) VALUES (1, 'House', '1991-06-21 23:52:10', '1979-05-13 16:58:06', 'park', '4745 Emerson Stravenue Suite 829 +South Garret, IN 16772-5682', '7', '372652.2909', '1.6800', '4201.8000', 'aut', 'suscipit', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); +INSERT INTO Properties (`property_id`, `property_type_code`, `date_on_market`, `date_sold`, `property_name`, `property_address`, `room_count`, `vendor_requested_price`, `buyer_offered_price`, `agreed_selling_price`, `apt_feature_1`, `apt_feature_2`, `apt_feature_3`, `fld_feature_1`, `fld_feature_2`, `fld_feature_3`, `hse_feature_1`, `hse_feature_2`, `hse_feature_3`, `oth_feature_1`, `oth_feature_2`, `oth_feature_3`, `shp_feature_1`, `shp_feature_2`, `shp_feature_3`, `other_property_details`) VALUES (2, 'House', '1990-05-25 23:01:51', '1990-11-14 19:16:38', 'the cole', '098 Tremaine Highway Suite 569 +South Wilford, NJ 46587-3537', '1', '661536468.4429', '8.7122', '21769471.8328', 'est', 'est', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); +INSERT INTO Properties (`property_id`, `property_type_code`, `date_on_market`, `date_sold`, `property_name`, `property_address`, `room_count`, `vendor_requested_price`, `buyer_offered_price`, `agreed_selling_price`, `apt_feature_1`, `apt_feature_2`, `apt_feature_3`, `fld_feature_1`, `fld_feature_2`, `fld_feature_3`, `hse_feature_1`, `hse_feature_2`, `hse_feature_3`, `oth_feature_1`, `oth_feature_2`, `oth_feature_3`, `shp_feature_1`, `shp_feature_2`, `shp_feature_3`, `other_property_details`) VALUES (3, 'Other', '1986-11-26 04:12:18', '1981-06-26 21:28:28', 'prism', '062 Micaela Court Apt. 707 +Margretville, WV 51628-3617', '8', '1337.0000', '11375259.5020', '5.0000', 'ut', 'et', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); +INSERT INTO Properties (`property_id`, `property_type_code`, `date_on_market`, `date_sold`, `property_name`, `property_address`, `room_count`, `vendor_requested_price`, `buyer_offered_price`, `agreed_selling_price`, `apt_feature_1`, `apt_feature_2`, `apt_feature_3`, `fld_feature_1`, `fld_feature_2`, `fld_feature_3`, `hse_feature_1`, `hse_feature_2`, `hse_feature_3`, `oth_feature_1`, `oth_feature_2`, `oth_feature_3`, `shp_feature_1`, `shp_feature_2`, `shp_feature_3`, `other_property_details`) VALUES (4, 'Field', '2017-09-14 15:49:23', '2003-02-27 18:17:11', 'riverside', '49578 Ayden Mountains +New Russellhaven, UT 46626', '6', '192374065.8000', '15.1700', '4514.8070', 'nesciunt', 'adipisci', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); +INSERT INTO Properties (`property_id`, `property_type_code`, `date_on_market`, `date_sold`, `property_name`, `property_address`, `room_count`, `vendor_requested_price`, `buyer_offered_price`, `agreed_selling_price`, `apt_feature_1`, `apt_feature_2`, `apt_feature_3`, `fld_feature_1`, `fld_feature_2`, `fld_feature_3`, `hse_feature_1`, `hse_feature_2`, `hse_feature_3`, `oth_feature_1`, `oth_feature_2`, `oth_feature_3`, `shp_feature_1`, `shp_feature_2`, `shp_feature_3`, `other_property_details`) VALUES (5, 'Apartment', '2016-05-06 16:53:39', '2012-08-19 07:36:57', 'parc east', '2765 Schulist Stream +Lindmouth, UT 03391-3817', '5', '983.8596', '10.1067', '1.0012', 'quo', 'sequi', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); +INSERT INTO Properties (`property_id`, `property_type_code`, `date_on_market`, `date_sold`, `property_name`, `property_address`, `room_count`, `vendor_requested_price`, `buyer_offered_price`, `agreed_selling_price`, `apt_feature_1`, `apt_feature_2`, `apt_feature_3`, `fld_feature_1`, `fld_feature_2`, `fld_feature_3`, `hse_feature_1`, `hse_feature_2`, `hse_feature_3`, `oth_feature_1`, `oth_feature_2`, `oth_feature_3`, `shp_feature_1`, `shp_feature_2`, `shp_feature_3`, `other_property_details`) VALUES (6, 'Shop', '1994-02-14 02:27:13', '1995-01-31 11:18:42', 'high line', '6837 Darien Views Apt. 475 +South Maraview, KS 77770', '9', '2573.0000', '0.0000', '476919.3000', 'sed', 'culpa', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); +INSERT INTO Properties (`property_id`, `property_type_code`, `date_on_market`, `date_sold`, `property_name`, `property_address`, `room_count`, `vendor_requested_price`, `buyer_offered_price`, `agreed_selling_price`, `apt_feature_1`, `apt_feature_2`, `apt_feature_3`, `fld_feature_1`, `fld_feature_2`, `fld_feature_3`, `hse_feature_1`, `hse_feature_2`, `hse_feature_3`, `oth_feature_1`, `oth_feature_2`, `oth_feature_3`, `shp_feature_1`, `shp_feature_2`, `shp_feature_3`, `other_property_details`) VALUES (7, 'Shop', '1996-09-16 22:04:27', '1998-09-15 05:26:22', 'avalon', '092 Paucek Highway Apt. 772 +East Erika, IA 61358', '8', '150045.7568', '296733.0000', '2794972.2495', 'quos', 'est', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); +INSERT INTO Properties (`property_id`, `property_type_code`, `date_on_market`, `date_sold`, `property_name`, `property_address`, `room_count`, `vendor_requested_price`, `buyer_offered_price`, `agreed_selling_price`, `apt_feature_1`, `apt_feature_2`, `apt_feature_3`, `fld_feature_1`, `fld_feature_2`, `fld_feature_3`, `hse_feature_1`, `hse_feature_2`, `hse_feature_3`, `oth_feature_1`, `oth_feature_2`, `oth_feature_3`, `shp_feature_1`, `shp_feature_2`, `shp_feature_3`, `other_property_details`) VALUES (8, 'Apartment', '1976-06-10 20:25:38', '2001-11-09 04:37:33', 'vogue', '24365 Ulices Run +Homenicktown, MD 88485-6198', '9', '13.4715', '0.0000', '0.0000', 'fuga', 'odio', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); +INSERT INTO Properties (`property_id`, `property_type_code`, `date_on_market`, `date_sold`, `property_name`, `property_address`, `room_count`, `vendor_requested_price`, `buyer_offered_price`, `agreed_selling_price`, `apt_feature_1`, `apt_feature_2`, `apt_feature_3`, `fld_feature_1`, `fld_feature_2`, `fld_feature_3`, `hse_feature_1`, `hse_feature_2`, `hse_feature_3`, `oth_feature_1`, `oth_feature_2`, `oth_feature_3`, `shp_feature_1`, `shp_feature_2`, `shp_feature_3`, `other_property_details`) VALUES (9, 'Apartment', '1978-05-15 10:53:37', '1971-04-14 03:23:49', 'longacre', '107 Roob Courts +Erdmanburgh, IA 42926-0873', '5', '2219.6778', '3520911.5258', '3344706.5755', 'enim', 'sit', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); +INSERT INTO Properties (`property_id`, `property_type_code`, `date_on_market`, `date_sold`, `property_name`, `property_address`, `room_count`, `vendor_requested_price`, `buyer_offered_price`, `agreed_selling_price`, `apt_feature_1`, `apt_feature_2`, `apt_feature_3`, `fld_feature_1`, `fld_feature_2`, `fld_feature_3`, `hse_feature_1`, `hse_feature_2`, `hse_feature_3`, `oth_feature_1`, `oth_feature_2`, `oth_feature_3`, `shp_feature_1`, `shp_feature_2`, `shp_feature_3`, `other_property_details`) VALUES (10, 'Apartment', '2003-12-25 16:13:19', '1997-01-07 19:52:45', 'renoir', '084 Lakin Vista Apt. 394 +Fishertown, MA 16876', '9', '77172926.3000', '1.5509', '244353758.1824', 'consequatur', 'vero', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); +INSERT INTO Properties (`property_id`, `property_type_code`, `date_on_market`, `date_sold`, `property_name`, `property_address`, `room_count`, `vendor_requested_price`, `buyer_offered_price`, `agreed_selling_price`, `apt_feature_1`, `apt_feature_2`, `apt_feature_3`, `fld_feature_1`, `fld_feature_2`, `fld_feature_3`, `hse_feature_1`, `hse_feature_2`, `hse_feature_3`, `oth_feature_1`, `oth_feature_2`, `oth_feature_3`, `shp_feature_1`, `shp_feature_2`, `shp_feature_3`, `other_property_details`) VALUES (11, 'Other', '1981-08-23 05:40:38', '1997-11-07 20:22:05', 'murray hill', '2088 Bashirian Fork Suite 337 +Faustinoport, MT 16771-9320', '2', '6713620.9000', '13991131.4340', '170766.4720', 'et', 'est', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); +INSERT INTO Properties (`property_id`, `property_type_code`, `date_on_market`, `date_sold`, `property_name`, `property_address`, `room_count`, `vendor_requested_price`, `buyer_offered_price`, `agreed_selling_price`, `apt_feature_1`, `apt_feature_2`, `apt_feature_3`, `fld_feature_1`, `fld_feature_2`, `fld_feature_3`, `hse_feature_1`, `hse_feature_2`, `hse_feature_3`, `oth_feature_1`, `oth_feature_2`, `oth_feature_3`, `shp_feature_1`, `shp_feature_2`, `shp_feature_3`, `other_property_details`) VALUES (12, 'Apartment', '2016-05-24 09:57:45', '1980-07-08 16:13:17', 'ten tower', '743 Ephraim Greens +Anniemouth, HI 47084-3853', '5', '305.0000', '2.0000', '456840888.1600', 'qui', 'autem', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); +INSERT INTO Properties (`property_id`, `property_type_code`, `date_on_market`, `date_sold`, `property_name`, `property_address`, `room_count`, `vendor_requested_price`, `buyer_offered_price`, `agreed_selling_price`, `apt_feature_1`, `apt_feature_2`, `apt_feature_3`, `fld_feature_1`, `fld_feature_2`, `fld_feature_3`, `hse_feature_1`, `hse_feature_2`, `hse_feature_3`, `oth_feature_1`, `oth_feature_2`, `oth_feature_3`, `shp_feature_1`, `shp_feature_2`, `shp_feature_3`, `other_property_details`) VALUES (13, 'Other', '2000-08-07 06:59:14', '1973-02-24 02:56:06', 'chelsea', '60845 Else Highway Apt. 826 +South Dougfort, CO 43200-4258', '2', '2198735.0950', '0.0000', '44132.4621', 'fuga', 'aut', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); +INSERT INTO Properties (`property_id`, `property_type_code`, `date_on_market`, `date_sold`, `property_name`, `property_address`, `room_count`, `vendor_requested_price`, `buyer_offered_price`, `agreed_selling_price`, `apt_feature_1`, `apt_feature_2`, `apt_feature_3`, `fld_feature_1`, `fld_feature_2`, `fld_feature_3`, `hse_feature_1`, `hse_feature_2`, `hse_feature_3`, `oth_feature_1`, `oth_feature_2`, `oth_feature_3`, `shp_feature_1`, `shp_feature_2`, `shp_feature_3`, `other_property_details`) VALUES (14, 'Other', '1986-12-31 10:05:32', '1987-12-07 07:41:27', 'wall street', '1474 Dibbert Fields Suite 055 +South Renee, IN 58286-3097', '7', '78.7208', '2449185.2000', '0.0000', 'et', 'eos', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); +INSERT INTO Properties (`property_id`, `property_type_code`, `date_on_market`, `date_sold`, `property_name`, `property_address`, `room_count`, `vendor_requested_price`, `buyer_offered_price`, `agreed_selling_price`, `apt_feature_1`, `apt_feature_2`, `apt_feature_3`, `fld_feature_1`, `fld_feature_2`, `fld_feature_3`, `hse_feature_1`, `hse_feature_2`, `hse_feature_3`, `oth_feature_1`, `oth_feature_2`, `oth_feature_3`, `shp_feature_1`, `shp_feature_2`, `shp_feature_3`, `other_property_details`) VALUES (15, 'Apartment', '1993-08-04 10:49:04', '1984-02-01 19:54:54', 'parc coliseum', '986 Hagenes Drives +Draketon, UT 83411-3393', '3', '331.0000', '27537286.0000', '2574.0000', 'aut', 'iusto', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); +INSERT INTO Other_Property_Features (`property_id`, `feature_id`, `property_feature_description`) VALUES (15, 3, 'dolorem'); +INSERT INTO Other_Property_Features (`property_id`, `feature_id`, `property_feature_description`) VALUES (12, 4, 'earum'); +INSERT INTO Other_Property_Features (`property_id`, `feature_id`, `property_feature_description`) VALUES (6, 2, 'illo'); +INSERT INTO Other_Property_Features (`property_id`, `feature_id`, `property_feature_description`) VALUES (7, 2, 'hic'); +INSERT INTO Other_Property_Features (`property_id`, `feature_id`, `property_feature_description`) VALUES (6, 3, 'et'); +INSERT INTO Other_Property_Features (`property_id`, `feature_id`, `property_feature_description`) VALUES (14, 4, 'quo'); +INSERT INTO Other_Property_Features (`property_id`, `feature_id`, `property_feature_description`) VALUES (4, 3, 'odio'); +INSERT INTO Other_Property_Features (`property_id`, `feature_id`, `property_feature_description`) VALUES (1, 2, 'ad'); +INSERT INTO Other_Property_Features (`property_id`, `feature_id`, `property_feature_description`) VALUES (11, 4, 'vitae'); +INSERT INTO Other_Property_Features (`property_id`, `feature_id`, `property_feature_description`) VALUES (9, 3, 'quo'); +INSERT INTO Other_Property_Features (`property_id`, `feature_id`, `property_feature_description`) VALUES (6, 3, 'corrupti'); +INSERT INTO Other_Property_Features (`property_id`, `feature_id`, `property_feature_description`) VALUES (6, 3, 'doloribus'); +INSERT INTO Other_Property_Features (`property_id`, `feature_id`, `property_feature_description`) VALUES (13, 2, 'autem'); +INSERT INTO Other_Property_Features (`property_id`, `feature_id`, `property_feature_description`) VALUES (3, 2, 'cumque'); +INSERT INTO Other_Property_Features (`property_id`, `feature_id`, `property_feature_description`) VALUES (14, 4, 'modi'); diff --git a/database/restaurant_1/restaurant_1.sqlite b/database/restaurant_1/restaurant_1.sqlite new file mode 100644 index 0000000000000000000000000000000000000000..59f07378078ed90685ca77d7adc0a670e144e26c Binary files /dev/null and b/database/restaurant_1/restaurant_1.sqlite differ diff --git a/database/restaurant_1/schema.sql b/database/restaurant_1/schema.sql new file mode 100644 index 0000000000000000000000000000000000000000..c6ea338daa02cdcd680484550472e34a0e583e84 --- /dev/null +++ b/database/restaurant_1/schema.sql @@ -0,0 +1,87 @@ +create table Student ( + StuID INTEGER PRIMARY KEY, + LName VARCHAR(12), + Fname VARCHAR(12), + Age INTEGER, + Sex VARCHAR(1), + Major INTEGER, + Advisor INTEGER, + city_code VARCHAR(3) + ); + +create table Restaurant ( + ResID INTEGER PRIMARY KEY, + ResName VARCHAR(100), + Address VARCHAR(100), + Rating INTEGER +); + +create table Type_Of_Restaurant ( + ResID INTEGER, + ResTypeID INTEGER, + FOREIGN KEY(ResID) REFERENCES Restaurant(ResID), + FOREIGN KEY(ResTypeID) REFERENCES Restaurant_Type(ResTypeID) +); + +create table Restaurant_Type ( + ResTypeID INTEGER PRIMARY KEY, + ResTypeName VARCHAR(40), + ResTypeDescription VARCHAR(100) +); + +create table Visits_Restaurant ( + StuID INTEGER, + ResID INTEGER, + Time TIMESTAMP, + Spent FLOAT, + FOREIGN KEY(StuID) REFERENCES Student(StuID), + FOREIGN KEY(ResID) REFERENCES Restaurant(ResID) +); + + + insert into Student values ( 1001, 'Smith', 'Linda', 18, 'F', 600, 1121,'BAL'); + insert into Student values ( 1002, 'Kim', 'Tracy', 19, 'F', 600, 7712,'HKG'); + insert into Student values ( 1003, 'Jones', 'Shiela', 21, 'F', 600, 7792,'WAS'); + insert into Student values ( 1004, 'Kumar', 'Dinesh', 20, 'M', 600, 8423,'CHI'); + insert into Student values ( 1005, 'Gompers', 'Paul', 26, 'M', 600, 1121,'YYZ'); + insert into Student values ( 1006, 'Schultz', 'Andy', 18, 'M', 600, 1148,'BAL'); + insert into Student values ( 1007, 'Apap', 'Lisa', 18, 'F', 600, 8918,'PIT'); + insert into Student values ( 1008, 'Nelson', 'Jandy', 20, 'F', 600, 9172,'BAL'); + insert into Student values ( 1009, 'Tai', 'Eric', 19, 'M', 600, 2192,'YYZ'); + insert into Student values ( 1010, 'Lee', 'Derek', 17, 'M', 600, 2192,'HOU'); + insert into Student values ( 1011, 'Adams', 'David', 22, 'M', 600, 1148,'PHL'); + insert into Student values ( 1012, 'Davis', 'Steven', 20, 'M', 600, 7723,'PIT'); + insert into Student values ( 1014, 'Norris', 'Charles', 18, 'M', 600, 8741, 'DAL'); + insert into Student values ( 1015, 'Lee', 'Susan', 16, 'F', 600, 8721,'HKG'); + insert into Student values ( 1016, 'Schwartz', 'Mark', 17, 'M', 600, 2192,'DET'); + insert into Student values ( 1017, 'Wilson', 'Bruce', 27, 'M', 600, 1148,'LON'); + insert into Student values ( 1018, 'Leighton', 'Michael', 20, 'M', 600, 1121, 'PIT'); + insert into Student values ( 1019, 'Pang', 'Arthur', 18, 'M', 600, 2192,'WAS'); + insert into Student values ( 1020, 'Thornton', 'Ian', 22, 'M', 520, 7271,'NYC'); + insert into Student values ( 1021, 'Andreou', 'George', 19, 'M', 520, 8722, 'NYC'); + insert into Student values ( 1022, 'Woods', 'Michael', 17, 'M', 540, 8722,'PHL'); + insert into Student values ( 1023, 'Shieber', 'David', 20, 'M', 520, 8722,'NYC'); + insert into Student values ( 1024, 'Prater', 'Stacy', 18, 'F', 540, 7271,'BAL'); + insert into Student values ( 1025, 'Goldman', 'Mark', 18, 'M', 520, 7134,'PIT'); + insert into Student values ( 1026, 'Pang', 'Eric', 19, 'M', 520, 7134,'HKG'); + insert into Student values ( 1027, 'Brody', 'Paul', 18, 'M', 520, 8723,'LOS'); + insert into Student values ( 1028, 'Rugh', 'Eric', 20, 'M', 550, 2311,'ROC'); + insert into Student values ( 1029, 'Han', 'Jun', 17, 'M', 100, 2311,'PEK'); + insert into Student values ( 1030, 'Cheng', 'Lisa', 21, 'F', 550, 2311,'SFO'); + insert into Student values ( 1031, 'Smith', 'Sarah', 20, 'F', 550, 8772,'PHL'); + insert into Student values ( 1032, 'Brown', 'Eric', 20, 'M', 550, 8772,'ATL'); + insert into Student values ( 1033, 'Simms', 'William', 18, 'M', 550, 8772,'NAR'); + insert into Student values ( 1034, 'Epp', 'Eric', 18, 'M', 050, 5718,'BOS'); + insert into Student values ( 1035, 'Schmidt', 'Sarah', 26, 'F', 050, 5718,'WAS'); + +insert into Restaurant values ( 1, 'Subway', '3233 St Paul St, Baltimore, MD 21218', 3); +insert into Restaurant values ( 2, 'Honeygrow', '3212 St Paul St, Baltimore, MD 21218', 4); + +insert into Restaurant_Type values ( 1, 'Sandwich', 'Simplest there is.'); +insert into Restaurant_Type values ( 2, 'Stir-fry', 'Classic Chinese cooking.'); + +insert into Type_Of_Restaurant values (1, 1); +insert into Type_Of_Restaurant values (2, 2); + +insert into Visits_Restaurant values (1001, 1, '2017-10-09 18:15:00', 6.53); +insert into Visits_Restaurant values (1032, 2, '2017-10-08 13:00:30', 13.2); diff --git a/database/restaurants/restaurants.sqlite b/database/restaurants/restaurants.sqlite new file mode 100644 index 0000000000000000000000000000000000000000..a18a858870567c42e57e905126c818bee885650a Binary files /dev/null and b/database/restaurants/restaurants.sqlite differ diff --git a/database/restaurants/schema.sql b/database/restaurants/schema.sql new file mode 100644 index 0000000000000000000000000000000000000000..e7208318ac10d0aa64595d604a98a411dcf42d9f --- /dev/null +++ b/database/restaurants/schema.sql @@ -0,0 +1,25 @@ +PRAGMA foreign_keys = ON; +CREATE TABLE "GEOGRAPHIC" ( +"CITY_NAME" text, +"COUNTY" text, +"REGION" text, +primary key("CITY_NAME") +); +CREATE TABLE "RESTAURANT" ( +"ID" int, +"NAME" text, +"FOOD_TYPE" text, +"CITY_NAME" text, +"RATING" real, +primary key("ID"), +foreign key ("CITY_NAME") references `GEOGRAPHIC`("CITY_NAME") +); +CREATE TABLE "LOCATION" ( +"RESTAURANT_ID" int, +"HOUSE_NUMBER" int, +"STREET_NAME" text, +"CITY_NAME" text, +primary key("RESTAURANT_ID"), +foreign key ("CITY_NAME") references `GEOGRAPHIC`("CITY_NAME") +foreign key ("RESTAURANT_ID") references `RESTAURANT`("RESTAURANT_ID") +); diff --git a/database/riding_club/riding_club.sqlite b/database/riding_club/riding_club.sqlite new file mode 100644 index 0000000000000000000000000000000000000000..7dae19f86f7931163021b4d94591e1eb5aeb0dd8 Binary files /dev/null and b/database/riding_club/riding_club.sqlite differ diff --git a/database/riding_club/schema.sql b/database/riding_club/schema.sql new file mode 100644 index 0000000000000000000000000000000000000000..5b34e4e50625e6239d5f996f2e45284e2747fed0 --- /dev/null +++ b/database/riding_club/schema.sql @@ -0,0 +1,88 @@ +PRAGMA foreign_keys=OFF; +BEGIN TRANSACTION; +CREATE TABLE IF NOT EXISTS "player" ( +"Player_ID" int, +"Sponsor_name" text, +"Player_name" text, +"Gender" text, +"Residence" text, +"Occupation" text, +"Votes" int, +"Rank" text, +PRIMARY KEY ("Player_ID") +); +INSERT INTO player VALUES(1,'Brandon—Souris','Jean Luc Bouché','M','Brandon','Locomotive Engineer',6055,'2nd'); +INSERT INTO player VALUES(2,'Charleswood—St. James—Assiniboia','Fiona Shiells','F','Winnipeg','Ministerial Assistant',7190,'3rd'); +INSERT INTO player VALUES(3,'Churchill','Niki Ashton','F','Thompson','Researcher',8734,'1st'); +INSERT INTO player VALUES(4,'Dauphin—Swan River—Marquette','Ron Strynadka','M','Birtle','Retired',4914,'2nd'); +INSERT INTO player VALUES(5,'Elmwood—Transcona','Jim Maloway','M','Winnipeg','Small Businessman',14355,'1st'); +INSERT INTO player VALUES(6,'Kildonan—St. Paul','Ross Eadie','M','Winnipeg','Self Employed / Consultant',12093,'2nd'); +INSERT INTO player VALUES(7,'Portage—Lisgar','Mohamed Alli','M','Winnipeg','Distribution Centre Associate',2353,'4th'); +INSERT INTO player VALUES(8,'Provencher','Ross C. Martin','M','Oakbank','Design Coordinator',4947,'2nd'); +INSERT INTO player VALUES(9,'Saint Boniface','Matt Schaubroeck','M','Winnipeg','Student',5502,'3rd'); +INSERT INTO player VALUES(10,'Selkirk—Interlake','Patricia Cordner','F','Selkirk','Retired',9506,'2nd'); +INSERT INTO player VALUES(11,'Winnipeg Centre','Pat Martin','M','Winnipeg','Parliamentarian',12285,'1st'); +INSERT INTO player VALUES(12,'Winnipeg North','Judy Wasylycia-Leis','F','Winnipeg','Parliamentarian',14097,'1st'); +INSERT INTO player VALUES(13,'Winnipeg South','Sean Robert','M','Winnipeg','Product Consultant - MLCC',4673,'3rd'); +INSERT INTO player VALUES(14,'Winnipeg South Centre','Rachel Heinrichs','F','Winnipeg','Student',5490,'3rd'); +CREATE TABLE IF NOT EXISTS "club" ( +"Club_ID" int, +"Club_name" text, +"Region" text, +"Start_year" int, +PRIMARY KEY ("Club_ID") +); +INSERT INTO club VALUES(1,'AIK','USA',2009); +INSERT INTO club VALUES(2,'BK Häcken','UK',1998); +INSERT INTO club VALUES(3,'Djurgårdens IF','USA',2005); +INSERT INTO club VALUES(4,'Gefle IF','Korea',2001); +INSERT INTO club VALUES(5,'Halmstads BK','Russia',2000); +INSERT INTO club VALUES(6,'Helsingborgs IF','France',2011); +CREATE TABLE IF NOT EXISTS "coach" ( +"Coach_ID" int, +"Coach_name" text, +"Gender" text, +"Club_ID" int, +"Rank" int, +PRIMARY KEY ("Coach_ID"), +FOREIGN KEY (`Club_ID`) REFERENCES `club`(`Club_ID`) +); +INSERT INTO coach VALUES(1,'Jameson Tomas','M',1,1); +INSERT INTO coach VALUES(2,'Joe Fabbri','F',1,2); +INSERT INTO coach VALUES(3,'Robert Chen','M',3,3); +INSERT INTO coach VALUES(4,'James Wong','M',3,4); +INSERT INTO coach VALUES(5,'Smith Brown','M',1,5); +CREATE TABLE IF NOT EXISTS "player_coach" ( +"Player_ID" int, +"Coach_ID" int, +"Starting_year" int, +PRIMARY KEY ("Player_ID","Coach_ID"), +FOREIGN KEY (`Player_ID`) REFERENCES `player`(`Player_ID`), +FOREIGN KEY (`Coach_ID`) REFERENCES `coach`(`Coach_ID`) +); +INSERT INTO player_coach VALUES(1,1,2010); +INSERT INTO player_coach VALUES(2,1,2011); +INSERT INTO player_coach VALUES(3,1,2012); +INSERT INTO player_coach VALUES(4,2,2013); +INSERT INTO player_coach VALUES(6,3,2012); +INSERT INTO player_coach VALUES(10,3,2011); +INSERT INTO player_coach VALUES(14,5,2010); +CREATE TABLE IF NOT EXISTS "match_result" ( +"Rank" int, +"Club_ID" int, +"Gold" int, +"Big_Silver" int, +"Small_Silver" int, +"Bronze" int, +"Points" int, +PRIMARY KEY ("Rank","Club_ID"), +FOREIGN KEY (`Club_ID`) REFERENCES `club`(`Club_ID`) +); +INSERT INTO match_result VALUES(1,1,20,14,9,8,168); +INSERT INTO match_result VALUES(2,2,13,11,16,9,139); +INSERT INTO match_result VALUES(3,3,12,9,4,7,102); +INSERT INTO match_result VALUES(4,4,5,12,10,8,89); +INSERT INTO match_result VALUES(5,5,7,7,9,10,84); +INSERT INTO match_result VALUES(6,6,6,6,6,6,66); +COMMIT; + diff --git a/database/roller_coaster/roller_coaster.sqlite b/database/roller_coaster/roller_coaster.sqlite new file mode 100644 index 0000000000000000000000000000000000000000..113536bac4a47c2ada2e6c6fcdeb96ebe9cc5034 Binary files /dev/null and b/database/roller_coaster/roller_coaster.sqlite differ diff --git a/database/roller_coaster/schema.sql b/database/roller_coaster/schema.sql new file mode 100644 index 0000000000000000000000000000000000000000..9a45ed7cf7cab1010dd7d3a81a112e991a785510 --- /dev/null +++ b/database/roller_coaster/schema.sql @@ -0,0 +1,35 @@ +PRAGMA foreign_keys = ON; + +CREATE TABLE "roller_coaster" ( +"Roller_Coaster_ID" int, +"Name" text, +"Park" text, +"Country_ID" int, +"Length" real, +"Height" real, +"Speed" text, +"Opened" text, +"Status" text, +PRIMARY KEY ("Roller_Coaster_ID"), +FOREIGN KEY ("Country_ID") REFERENCES `country`("Country_ID") +); + +CREATE TABLE "country" ( +"Country_ID" int, +"Name" text, +"Population" int, +"Area" int, +"Languages" text, +PRIMARY KEY ("Country_ID") +); + +INSERT INTO "country" VALUES (1,"Austria","8206524","83871","German"); +INSERT INTO "country" VALUES (2,"Finland","5261008","338145","Finnish Swedish"); +INSERT INTO "country" VALUES (3,"Sweden","9047752","449964","Swedish"); + +INSERT INTO "roller_coaster" VALUES (1,"Boardwalk Bullet","Kemah Boardwalk",1,"3236","96","51","August 31, 2007","Operating"); +INSERT INTO "roller_coaster" VALUES (2,"Dauling Dragon","Happy Valley",1,"3914","105","55","2012","Operating"); +INSERT INTO "roller_coaster" VALUES (3,"Hades 360","Mt. Olympus",1,"4726","136","70","May 14, 2005","Operating"); +INSERT INTO "roller_coaster" VALUES (4,"Ravine Flyer II","Waldameer",2,"2900","120","57","May 17, 2008","Operating"); +INSERT INTO "roller_coaster" VALUES (5,"Twister","Gröna Lund",2,"1574","50","37.9","2011","Operating"); +INSERT INTO "roller_coaster" VALUES (6,"The Voyage","Holiday World",3,"6442","163","67","May 6, 2006","Operating"); diff --git a/database/sakila_1/sakila_1.sqlite b/database/sakila_1/sakila_1.sqlite new file mode 100644 index 0000000000000000000000000000000000000000..8de9d60085d9df3d09c6a1c9ae5714f6ccd39330 --- /dev/null +++ b/database/sakila_1/sakila_1.sqlite @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe25744a6e2acf29295eba0fb73a98065008c0a365b92a86de6237310a72444 +size 3706880 diff --git a/database/sakila_1/schema.sql b/database/sakila_1/schema.sql new file mode 100644 index 0000000000000000000000000000000000000000..2189fa374ab141647d3b8ad63e60001d1601f4af --- /dev/null +++ b/database/sakila_1/schema.sql @@ -0,0 +1,297 @@ +-- Sakila Sample Database Schema +-- Version 0.8 + +-- Copyright (c) 2006, MySQL AB +-- All rights reserved. + +-- Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: + +-- * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. +-- * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. +-- * Neither the name of MySQL AB nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. + +-- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +-- +-- Table structure for table `actor` +-- + +CREATE TABLE actor ( + actor_id SMALLINT UNSIGNED NOT NULL, + first_name VARCHAR(45) NOT NULL, + last_name VARCHAR(45) NOT NULL, + last_update TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP, + PRIMARY KEY (actor_id) +); + +-- +-- Table structure for table `address` +-- + +CREATE TABLE address ( + address_id SMALLINT UNSIGNED NOT NULL, + address VARCHAR(50) NOT NULL, + address2 VARCHAR(50) DEFAULT NULL, + district VARCHAR(20) NOT NULL, + city_id SMALLINT UNSIGNED NOT NULL, + postal_code VARCHAR(10) DEFAULT NULL, + phone VARCHAR(20) NOT NULL, + last_update TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP, + PRIMARY KEY (address_id), + FOREIGN KEY (city_id) REFERENCES city (city_id) +); + +-- +-- Table structure for table `category` +-- + +CREATE TABLE category ( + category_id TINYINT UNSIGNED NOT NULL, + name VARCHAR(25) NOT NULL, + last_update TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP, + PRIMARY KEY (category_id) +); + +-- +-- Table structure for table `city` +-- + +CREATE TABLE city ( + city_id SMALLINT UNSIGNED NOT NULL, + city VARCHAR(50) NOT NULL, + country_id SMALLINT UNSIGNED NOT NULL, + last_update TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP, + PRIMARY KEY (city_id), + FOREIGN KEY (country_id) REFERENCES country (country_id) +); + +-- +-- Table structure for table `country` +-- + +CREATE TABLE country ( + country_id SMALLINT UNSIGNED NOT NULL, + country VARCHAR(50) NOT NULL, + last_update TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP, + PRIMARY KEY (country_id) +); + +-- +-- Table structure for table `customer` +-- + +CREATE TABLE customer ( + customer_id SMALLINT UNSIGNED NOT NULL, + store_id TINYINT UNSIGNED NOT NULL, + first_name VARCHAR(45) NOT NULL, + last_name VARCHAR(45) NOT NULL, + email VARCHAR(50) DEFAULT NULL, + address_id SMALLINT UNSIGNED NOT NULL, + active BOOLEAN NOT NULL DEFAULT TRUE, + create_date DATETIME NOT NULL, + last_update TIMESTAMP DEFAULT CURRENT_TIMESTAMP, + PRIMARY KEY (customer_id), + FOREIGN KEY (address_id) REFERENCES address (address_id), + FOREIGN KEY (store_id) REFERENCES store (store_id) +); + +-- +-- Table structure for table `film` +-- + +CREATE TABLE film ( + film_id SMALLINT UNSIGNED NOT NULL, + 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 DEFAULT 'G', + special_features DEFAULT NULL, + last_update TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP, + PRIMARY KEY (film_id), + FOREIGN KEY (language_id) REFERENCES language (language_id), + FOREIGN KEY (original_language_id) REFERENCES language (language_id) +); + +-- +-- Table structure for table `film_actor` +-- + +CREATE TABLE film_actor ( + actor_id SMALLINT UNSIGNED NOT NULL, + film_id SMALLINT UNSIGNED NOT NULL, + last_update TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP, + PRIMARY KEY (actor_id,film_id), + FOREIGN KEY (actor_id) REFERENCES actor (actor_id), + FOREIGN KEY (film_id) REFERENCES film (film_id) +); + +-- +-- Table structure for table `film_category` +-- + +CREATE TABLE film_category ( + film_id SMALLINT UNSIGNED NOT NULL, + category_id TINYINT UNSIGNED NOT NULL, + last_update TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP, + PRIMARY KEY (film_id, category_id), + FOREIGN KEY (film_id) REFERENCES film (film_id), + FOREIGN KEY (category_id) REFERENCES category (category_id) +); + +-- +-- Table structure for table `film_text` +-- + +CREATE TABLE film_text ( + film_id SMALLINT NOT NULL, + title VARCHAR(255) NOT NULL, + description TEXT, + PRIMARY KEY (film_id) +); + +-- +-- Table structure for table `inventory` +-- + +CREATE TABLE inventory ( + inventory_id MEDIUMINT UNSIGNED NOT NULL, + film_id SMALLINT UNSIGNED NOT NULL, + store_id TINYINT UNSIGNED NOT NULL, + last_update TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP, + PRIMARY KEY (inventory_id), + FOREIGN KEY (store_id) REFERENCES store (store_id), + FOREIGN KEY (film_id) REFERENCES film (film_id) +); + +-- +-- Table structure for table `language` +-- + +CREATE TABLE language ( + language_id TINYINT UNSIGNED NOT NULL, + name CHAR(20) NOT NULL, + last_update TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP, + PRIMARY KEY (language_id) +); + +-- +-- Table structure for table `payment` +-- + +CREATE TABLE payment ( + payment_id SMALLINT UNSIGNED NOT NULL, + customer_id SMALLINT UNSIGNED NOT NULL, + staff_id TINYINT UNSIGNED NOT NULL, + rental_id INT DEFAULT NULL, + amount DECIMAL(5,2) NOT NULL, + payment_date DATETIME NOT NULL, + last_update TIMESTAMP DEFAULT CURRENT_TIMESTAMP, + PRIMARY KEY (payment_id), + FOREIGN KEY (rental_id) REFERENCES rental (rental_id), + FOREIGN KEY (customer_id) REFERENCES customer (customer_id), + FOREIGN KEY (staff_id) REFERENCES staff (staff_id) +); + + +-- +-- Table structure for table `rental` +-- + +CREATE TABLE rental ( + rental_id INT NOT NULL, + rental_date DATETIME NOT NULL, + inventory_id MEDIUMINT UNSIGNED NOT NULL, + customer_id SMALLINT UNSIGNED NOT NULL, + return_date DATETIME DEFAULT NULL, + staff_id TINYINT UNSIGNED NOT NULL, + last_update TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP, + PRIMARY KEY (rental_id), + FOREIGN KEY (staff_id) REFERENCES staff (staff_id), + FOREIGN KEY (inventory_id) REFERENCES inventory (inventory_id), + FOREIGN KEY (customer_id) REFERENCES customer (customer_id) +); + +-- +-- Table structure for table `staff` +-- + +CREATE TABLE staff ( + staff_id TINYINT UNSIGNED NOT NULL, + first_name VARCHAR(45) NOT NULL, + last_name VARCHAR(45) NOT NULL, + address_id SMALLINT UNSIGNED NOT NULL, + picture BLOB DEFAULT NULL, + email VARCHAR(50) DEFAULT NULL, + store_id TINYINT UNSIGNED NOT NULL, + active BOOLEAN NOT NULL DEFAULT TRUE, + username VARCHAR(16) NOT NULL, + password VARCHAR(40) DEFAULT NULL, + last_update TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP, + PRIMARY KEY (staff_id), + --FOREIGN KEY (store_id) REFERENCES store (store_id), + FOREIGN KEY (address_id) REFERENCES address (address_id) +); + +-- +-- Table structure for table `store` +-- + +CREATE TABLE store ( + store_id TINYINT UNSIGNED NOT NULL, + manager_staff_id TINYINT UNSIGNED NOT NULL, + address_id SMALLINT UNSIGNED NOT NULL, + last_update TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP, + PRIMARY KEY (store_id), + FOREIGN KEY (manager_staff_id) REFERENCES staff (staff_id), + FOREIGN KEY (address_id) REFERENCES address (address_id) +); + + +-- Sakila Sample Database Data +-- Version 0.8 + +-- Copyright (c) 2006, MySQL AB +-- All rights reserved. + +-- Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: + +-- * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. +-- * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. +-- * Neither the name of MySQL AB nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. + +-- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + + +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 address VALUES (1,'47 MySakila Drive',NULL,'Alberta',300,'','','2006-02-15 04:45:30'),(2,'28 MySQL Boulevard',NULL,'QLD',576,'','','2006-02-15 04:45:30'),(3,'23 Workhaven Lane',NULL,'Alberta',300,'','14033335568','2006-02-15 04:45:30'),(4,'1411 Lillydale Drive',NULL,'QLD',576,'','6172235589','2006-02-15 04:45:30'),(5,'1913 Hanoi Way','','Nagasaki',463,'35200','28303384290','2006-02-15 04:45:30'),(6,'1121 Loja Avenue','','California',449,'17886','838635286649','2006-02-15 04:45:30'),(7,'692 Joliet Street','','Attika',38,'83579','448477190408','2006-02-15 04:45:30'),(8,'1566 Inegl Manor','','Mandalay',349,'53561','705814003527','2006-02-15 04:45:30'),(9,'53 Idfu Parkway','','Nantou',361,'42399','10655648674','2006-02-15 04:45:30'),(10,'1795 Santiago de Compostela Way','','Texas',295,'18743','860452626434','2006-02-15 04:45:30'),(11,'900 Santiago de Compostela Parkway','','Central Serbia',280,'93896','716571220373','2006-02-15 04:45:30'),(12,'478 Joliet Way','','Hamilton',200,'77948','657282285970','2006-02-15 04:45:30'),(13,'613 Korolev Drive','','Masqat',329,'45844','380657522649','2006-02-15 04:45:30'),(14,'1531 Sal Drive','','Esfahan',162,'53628','648856936185','2006-02-15 04:45:30'),(15,'1542 Tarlac Parkway','','Kanagawa',440,'1027','635297277345','2006-02-15 04:45:30'),(16,'808 Bhopal Manor','','Haryana',582,'10672','465887807014','2006-02-15 04:45:30'),(17,'270 Amroha Parkway','','Osmaniye',384,'29610','695479687538','2006-02-15 04:45:30'),(18,'770 Bydgoszcz Avenue','','California',120,'16266','517338314235','2006-02-15 04:45:30'),(19,'419 Iligan Lane','','Madhya Pradesh',76,'72878','990911107354','2006-02-15 04:45:30'),(20,'360 Toulouse Parkway','','England',495,'54308','949312333307','2006-02-15 04:45:30'),(21,'270 Toulon Boulevard','','Kalmykia',156,'81766','407752414682','2006-02-15 04:45:30'),(22,'320 Brest Avenue','','Kaduna',252,'43331','747791594069','2006-02-15 04:45:30'),(23,'1417 Lancaster Avenue','','Northern Cape',267,'72192','272572357893','2006-02-15 04:45:30'),(24,'1688 Okara Way','','Nothwest Border Prov',327,'21954','144453869132','2006-02-15 04:45:30'),(25,'262 A Corua (La Corua) Parkway','','Dhaka',525,'34418','892775750063','2006-02-15 04:45:30'),(26,'28 Charlotte Amalie Street','','Rabat-Sal-Zammour-Z',443,'37551','161968374323','2006-02-15 04:45:30'),(27,'1780 Hino Boulevard','','Liepaja',303,'7716','902731229323','2006-02-15 04:45:30'),(28,'96 Tafuna Way','','Crdoba',128,'99865','934730187245','2006-02-15 04:45:30'),(29,'934 San Felipe de Puerto Plata Street','','Sind',472,'99780','196495945706','2006-02-15 04:45:30'),(30,'18 Duisburg Boulevard','','',121,'58327','998009777982','2006-02-15 04:45:30'),(31,'217 Botshabelo Place','','Southern Mindanao',138,'49521','665356572025','2006-02-15 04:45:30'),(32,'1425 Shikarpur Manor','','Bihar',346,'65599','678220867005','2006-02-15 04:45:30'),(33,'786 Aurora Avenue','','Yamaguchi',474,'65750','18461860151','2006-02-15 04:45:30'),(34,'1668 Anpolis Street','','Taipei',316,'50199','525255540978','2006-02-15 04:45:30'),(35,'33 Gorontalo Way','','West Bengali',257,'30348','745994947458','2006-02-15 04:45:30'),(36,'176 Mandaluyong Place','','Uttar Pradesh',239,'65213','627705991774','2006-02-15 04:45:30'),(37,'127 Purnea (Purnia) Manor','','Piemonte',17,'79388','911872220378','2006-02-15 04:45:30'),(38,'61 Tama Street','','Okayama',284,'94065','708403338270','2006-02-15 04:45:30'),(39,'391 Callao Drive','','Midi-Pyrnes',544,'34021','440512153169','2006-02-15 04:45:30'),(40,'334 Munger (Monghyr) Lane','','Markazi',31,'38145','481183273622','2006-02-15 04:45:30'),(41,'1440 Fukuyama Loop','','Henan',362,'47929','912257250465','2006-02-15 04:45:30'),(42,'269 Cam Ranh Parkway','','Chisinau',115,'34689','489783829737','2006-02-15 04:45:30'),(43,'306 Antofagasta Place','','Esprito Santo',569,'3989','378318851631','2006-02-15 04:45:30'),(44,'671 Graz Street','','Oriental',353,'94399','680768868518','2006-02-15 04:45:30'),(45,'42 Brindisi Place','','Yerevan',586,'16744','42384721397','2006-02-15 04:45:30'),(46,'1632 Bislig Avenue','','Nonthaburi',394,'61117','471675840679','2006-02-15 04:45:30'),(47,'1447 Imus Way','','Tahiti',167,'48942','539758313890','2006-02-15 04:45:30'),(48,'1998 Halifax Drive','','Lipetsk',308,'76022','177727722820','2006-02-15 04:45:30'),(49,'1718 Valencia Street','','Antofagasta',27,'37359','675292816413','2006-02-15 04:45:30'),(50,'46 Pjatigorsk Lane','','Moscow (City)',343,'23616','262076994845','2006-02-15 04:45:30'),(51,'686 Garland Manor','','Cear',247,'52535','69493378813','2006-02-15 04:45:30'),(52,'909 Garland Manor','','Tatarstan',367,'69367','705800322606','2006-02-15 04:45:30'),(53,'725 Isesaki Place','','Mekka',237,'74428','876295323994','2006-02-15 04:45:30'),(54,'115 Hidalgo Parkway','','Khartum',379,'80168','307703950263','2006-02-15 04:45:30'),(55,'1135 Izumisano Parkway','','California',171,'48150','171822533480','2006-02-15 04:45:30'),(56,'939 Probolinggo Loop','','Galicia',1,'4166','680428310138','2006-02-15 04:45:30'),(57,'17 Kabul Boulevard','','Chiba',355,'38594','697760867968','2006-02-15 04:45:30'),(58,'1964 Allappuzha (Alleppey) Street','','Yamaguchi',227,'48980','920811325222','2006-02-15 04:45:30'),(59,'1697 Kowloon and New Kowloon Loop','','Moskova',49,'57807','499352017190','2006-02-15 04:45:30'),(60,'1668 Saint Louis Place','','Tahiti',397,'39072','347487831378','2006-02-15 04:45:30'),(61,'943 Tokat Street','','Vaduz',560,'45428','889318963672','2006-02-15 04:45:30'),(62,'1114 Liepaja Street','','Sarawak',282,'69226','212869228936','2006-02-15 04:45:30'),(63,'1213 Ranchi Parkway','','Karnataka',350,'94352','800024380485','2006-02-15 04:45:30'),(64,'81 Hodeida Way','','Rajasthan',231,'55561','250767749542','2006-02-15 04:45:30'),(65,'915 Ponce Place','','Basel-Stadt',56,'83980','1395251317','2006-02-15 04:45:30'),(66,'1717 Guadalajara Lane','','Missouri',441,'85505','914090181665','2006-02-15 04:45:30'),(67,'1214 Hanoi Way','','Nebraska',306,'67055','491001136577','2006-02-15 04:45:30'),(68,'1966 Amroha Avenue','','Sichuan',139,'70385','333489324603','2006-02-15 04:45:30'),(69,'698 Otsu Street','','Cayenne',105,'71110','409983924481','2006-02-15 04:45:30'),(70,'1150 Kimchon Manor','','Skne ln',321,'96109','663449333709','2006-02-15 04:45:30'),(71,'1586 Guaruj Place','','Hunan',579,'5135','947233365992','2006-02-15 04:45:30'),(72,'57 Arlington Manor','','Madhya Pradesh',475,'48960','990214419142','2006-02-15 04:45:30'),(73,'1031 Daugavpils Parkway','','Bchar',63,'59025','107137400143','2006-02-15 04:45:30'),(74,'1124 Buenaventura Drive','','Mekka',13,'6856','407733804223','2006-02-15 04:45:30'),(75,'492 Cam Ranh Street','','Eastern Visayas',61,'50805','565018274456','2006-02-15 04:45:30'),(76,'89 Allappuzha (Alleppey) Manor','','National Capital Reg',517,'75444','255800440636','2006-02-15 04:45:30'),(77,'1947 Poos de Caldas Boulevard','','Chiayi',114,'60951','427454485876','2006-02-15 04:45:30'),(78,'1206 Dos Quebradas Place','','So Paulo',431,'20207','241832790687','2006-02-15 04:45:30'),(79,'1551 Rampur Lane','','Changhwa',108,'72394','251164340471','2006-02-15 04:45:30'),(80,'602 Paarl Street','','Pavlodar',402,'98889','896314772871','2006-02-15 04:45:30'),(81,'1692 Ede Loop','','So Paulo',30,'9223','918711376618','2006-02-15 04:45:30'),(82,'936 Salzburg Lane','','Uttar Pradesh',425,'96709','875756771675','2006-02-15 04:45:30'),(83,'586 Tete Way','','Kanagawa',256,'1079','18581624103','2006-02-15 04:45:30'),(84,'1888 Kabul Drive','','Oyo & Osun',217,'20936','701457319790','2006-02-15 04:45:30'),(85,'320 Baiyin Parkway','','Mahajanga',319,'37307','223664661973','2006-02-15 04:45:30'),(86,'927 Baha Blanca Parkway','','Krim',479,'9495','821972242086','2006-02-15 04:45:30'),(87,'929 Tallahassee Loop','','Gauteng',497,'74671','800716535041','2006-02-15 04:45:30'),(88,'125 Citt del Vaticano Boulevard','','Puebla',40,'67912','48417642933','2006-02-15 04:45:30'),(89,'1557 Ktahya Boulevard','','England',88,'88002','720998247660','2006-02-15 04:45:30'),(90,'870 Ashqelon Loop','','Songkhla',489,'84931','135117278909','2006-02-15 04:45:30'),(91,'1740 Portoviejo Avenue','','Sucre',480,'29932','198123170793','2006-02-15 04:45:30'),(92,'1942 Ciparay Parkway','','Cheju',113,'82624','978987363654','2006-02-15 04:45:30'),(93,'1926 El Alto Avenue','','Buenos Aires',289,'75543','846225459260','2006-02-15 04:45:30'),(94,'1952 Chatsworth Drive','','Guangdong',332,'25958','991562402283','2006-02-15 04:45:30'),(95,'1370 Le Mans Avenue','','Brunei and Muara',53,'52163','345679835036','2006-02-15 04:45:30'),(96,'984 Effon-Alaiye Avenue','','Gois',183,'17119','132986892228','2006-02-15 04:45:30'),(97,'832 Nakhon Sawan Manor','','Inner Mongolia',592,'49021','275595571388','2006-02-15 04:45:30'),(98,'152 Kitwe Parkway','','Caraga',82,'53182','835433605312','2006-02-15 04:45:30'),(99,'1697 Tanauan Lane','','Punjab',399,'22870','4764773857','2006-02-15 04:45:30'),(100,'1308 Arecibo Way','','Georgia',41,'30695','6171054059','2006-02-15 04:45:30'),(101,'1599 Plock Drive','','Tete',534,'71986','817248913162','2006-02-15 04:45:30'),(102,'669 Firozabad Loop','','Abu Dhabi',12,'92265','412903167998','2006-02-15 04:45:30'),(103,'588 Vila Velha Manor','','Kyongsangbuk',268,'51540','333339908719','2006-02-15 04:45:30'),(104,'1913 Kamakura Place','','Lipetsk',238,'97287','942570536750','2006-02-15 04:45:30'),(105,'733 Mandaluyong Place','','Asir',2,'77459','196568435814','2006-02-15 04:45:30'),(106,'659 Vaduz Drive','','Ha Darom',34,'49708','709935135487','2006-02-15 04:45:30'),(107,'1177 Jelets Way','','Kwara & Kogi',220,'3305','484292626944','2006-02-15 04:45:30'),(108,'1386 Yangor Avenue','','Provence-Alpes-Cte',543,'80720','449216226468','2006-02-15 04:45:30'),(109,'454 Nakhon Sawan Boulevard','','Funafuti',173,'76383','963887147572','2006-02-15 04:45:30'),(110,'1867 San Juan Bautista Tuxtepec Avenue','','Ivanovo',225,'78311','547003310357','2006-02-15 04:45:30'),(111,'1532 Dzerzinsk Way','','Buenos Aires',334,'9599','330838016880','2006-02-15 04:45:30'),(112,'1002 Ahmadnagar Manor','','Mxico',213,'93026','371490777743','2006-02-15 04:45:30'),(113,'682 Junan Way','','North West',273,'30418','622255216127','2006-02-15 04:45:30'),(114,'804 Elista Drive','','Hubei',159,'61069','379804592943','2006-02-15 04:45:30'),(115,'1378 Alvorada Avenue','','Distrito Federal',102,'75834','272234298332','2006-02-15 04:45:30'),(116,'793 Cam Ranh Avenue','','California',292,'87057','824370924746','2006-02-15 04:45:30'),(117,'1079 Tel Aviv-Jaffa Boulevard','','Sucre',132,'10885','358178933857','2006-02-15 04:45:30'),(118,'442 Rae Bareli Place','','Nordrhein-Westfalen',148,'24321','886636413768','2006-02-15 04:45:30'),(119,'1107 Nakhon Sawan Avenue','','Mxico',365,'75149','867546627903','2006-02-15 04:45:30'),(120,'544 Malm Parkway','','Central Java',403,'63502','386759646229','2006-02-15 04:45:30'),(121,'1967 Sincelejo Place','','Gujarat',176,'73644','577812616052','2006-02-15 04:45:30'),(122,'333 Goinia Way','','Texas',185,'78625','909029256431','2006-02-15 04:45:30'),(123,'1987 Coacalco de Berriozbal Loop','','al-Qalyubiya',476,'96065','787654415858','2006-02-15 04:45:30'),(124,'241 Mosul Lane','','Risaralda',147,'76157','765345144779','2006-02-15 04:45:30'),(125,'211 Chiayi Drive','','Uttar Pradesh',164,'58186','665993880048','2006-02-15 04:45:30'),(126,'1175 Tanauan Way','','Lima',305,'64615','937222955822','2006-02-15 04:45:30'),(127,'117 Boa Vista Way','','Uttar Pradesh',566,'6804','677976133614','2006-02-15 04:45:30'),(128,'848 Tafuna Manor','','Ktahya',281,'45142','614935229095','2006-02-15 04:45:30'),(129,'569 Baicheng Lane','','Gauteng',85,'60304','490211944645','2006-02-15 04:45:30'),(130,'1666 Qomsheh Drive','','So Paulo',410,'66255','582835362905','2006-02-15 04:45:30'),(131,'801 Hagonoy Drive','','Smolensk',484,'8439','237426099212','2006-02-15 04:45:30'),(132,'1050 Garden Grove Avenue','','Slaskie',236,'4999','973047364353','2006-02-15 04:45:30'),(133,'1854 Tieli Street','','Shandong',302,'15819','509492324775','2006-02-15 04:45:30'),(134,'758 Junan Lane','','Gois',190,'82639','935448624185','2006-02-15 04:45:30'),(135,'1752 So Leopoldo Parkway','','Taka-Karpatia',345,'14014','252265130067','2006-02-15 04:45:30'),(136,'898 Belm Manor','','Free State',87,'49757','707169393853','2006-02-15 04:45:30'),(137,'261 Saint Louis Way','','Coahuila de Zaragoza',541,'83401','321944036800','2006-02-15 04:45:30'),(138,'765 Southampton Drive','','al-Qalyubiya',421,'4285','23712411567','2006-02-15 04:45:30'),(139,'943 Johannesburg Avenue','','Maharashtra',417,'5892','90921003005','2006-02-15 04:45:30'),(140,'788 Atinsk Street','','Karnataka',211,'81691','146497509724','2006-02-15 04:45:30'),(141,'1749 Daxian Place','','Gelderland',29,'11044','963369996279','2006-02-15 04:45:30'),(142,'1587 Sullana Lane','','Inner Mongolia',207,'85769','468060467018','2006-02-15 04:45:30'),(143,'1029 Dzerzinsk Manor','','Ynlin',542,'57519','33173584456','2006-02-15 04:45:30'),(144,'1666 Beni-Mellal Place','','Tennessee',123,'13377','9099941466','2006-02-15 04:45:30'),(145,'928 Jaffna Loop','','Hiroshima',172,'93762','581852137991','2006-02-15 04:45:30'),(146,'483 Ljubertsy Parkway','','Scotland',149,'60562','581174211853','2006-02-15 04:45:30'),(147,'374 Bat Yam Boulevard','','Kilis',266,'97700','923261616249','2006-02-15 04:45:30'),(148,'1027 Songkhla Manor','','Minsk',340,'30861','563660187896','2006-02-15 04:45:30'),(149,'999 Sanaa Loop','','Gauteng',491,'3439','918032330119','2006-02-15 04:45:30'),(150,'879 Newcastle Way','','Michigan',499,'90732','206841104594','2006-02-15 04:45:30'),(151,'1337 Lincoln Parkway','','Saitama',555,'99457','597815221267','2006-02-15 04:45:30'),(152,'1952 Pune Lane','','Saint-Denis',442,'92150','354615066969','2006-02-15 04:45:30'),(153,'782 Mosul Street','','Massachusetts',94,'25545','885899703621','2006-02-15 04:45:30'),(154,'781 Shimonoseki Drive','','Michoacn de Ocampo',202,'95444','632316273199','2006-02-15 04:45:30'),(155,'1560 Jelets Boulevard','','Shandong',291,'77777','189446090264','2006-02-15 04:45:30'),(156,'1963 Moscow Place','','Assam',354,'64863','761379480249','2006-02-15 04:45:30'),(157,'456 Escobar Way','','Jakarta Raya',232,'36061','719202533520','2006-02-15 04:45:30'),(158,'798 Cianjur Avenue','','Shanxi',590,'76990','499408708580','2006-02-15 04:45:30'),(159,'185 Novi Sad Place','','Bern',72,'41778','904253967161','2006-02-15 04:45:30'),(160,'1367 Yantai Manor','','Ondo & Ekiti',381,'21294','889538496300','2006-02-15 04:45:30'),(161,'1386 Nakhon Sawan Boulevard','','Pyongyang-si',420,'53502','368899174225','2006-02-15 04:45:30'),(162,'369 Papeete Way','','North Carolina',187,'66639','170117068815','2006-02-15 04:45:30'),(163,'1440 Compton Place','','North Austria',307,'81037','931059836497','2006-02-15 04:45:30'),(164,'1623 Baha Blanca Manor','','Moskova',310,'81511','149981248346','2006-02-15 04:45:30'),(165,'97 Shimoga Avenue','','Tel Aviv',533,'44660','177167004331','2006-02-15 04:45:30'),(166,'1740 Le Mans Loop','','Pays de la Loire',297,'22853','168476538960','2006-02-15 04:45:30'),(167,'1287 Xiangfan Boulevard','','Gifu',253,'57844','819416131190','2006-02-15 04:45:30'),(168,'842 Salzburg Lane','','Adana',529,'3313','697151428760','2006-02-15 04:45:30'),(169,'154 Tallahassee Loop','','Xinxiang',199,'62250','935508855935','2006-02-15 04:45:30'),(170,'710 San Felipe del Progreso Avenue','','Lilongwe',304,'76901','843801144113','2006-02-15 04:45:30'),(171,'1540 Wroclaw Drive','','Maharashtra',107,'62686','182363341674','2006-02-15 04:45:30'),(172,'475 Atinsk Way','','Gansu',240,'59571','201705577290','2006-02-15 04:45:30'),(173,'1294 Firozabad Drive','','Jiangxi',407,'70618','161801569569','2006-02-15 04:45:30'),(174,'1877 Ezhou Lane','','Rajasthan',550,'63337','264541743403','2006-02-15 04:45:30'),(175,'316 Uruapan Street','','Perak',223,'58194','275788967899','2006-02-15 04:45:30'),(176,'29 Pyongyang Loop','','Batman',58,'47753','734780743462','2006-02-15 04:45:30'),(177,'1010 Klerksdorp Way','','Steiermark',186,'6802','493008546874','2006-02-15 04:45:30'),(178,'1848 Salala Boulevard','','Miranda',373,'25220','48265851133','2006-02-15 04:45:30'),(179,'431 Xiangtan Avenue','','Kerala',18,'4854','230250973122','2006-02-15 04:45:30'),(180,'757 Rustenburg Avenue','','Skikda',483,'89668','506134035434','2006-02-15 04:45:30'),(181,'146 Johannesburg Way','','Tamaulipas',330,'54132','953689007081','2006-02-15 04:45:30'),(182,'1891 Rizhao Boulevard','','So Paulo',456,'47288','391065549876','2006-02-15 04:45:30'),(183,'1089 Iwatsuki Avenue','','Kirov',270,'35109','866092335135','2006-02-15 04:45:30'),(184,'1410 Benin City Parkway','','Risaralda',405,'29747','104150372603','2006-02-15 04:45:30'),(185,'682 Garden Grove Place','','Tennessee',333,'67497','72136330362','2006-02-15 04:45:30'),(186,'533 al-Ayn Boulevard','','California',126,'8862','662227486184','2006-02-15 04:45:30'),(187,'1839 Szkesfehrvr Parkway','','Gois',317,'55709','947468818183','2006-02-15 04:45:30'),(188,'741 Ambattur Manor','','Noord-Brabant',438,'43310','302590383819','2006-02-15 04:45:30'),(189,'927 Barcelona Street','','Chaharmahal va Bakht',467,'65121','951486492670','2006-02-15 04:45:30'),(190,'435 0 Way','','West Bengali',195,'74750','760171523969','2006-02-15 04:45:30'),(191,'140 Chiayi Parkway','','Sumy',506,'38982','855863906434','2006-02-15 04:45:30'),(192,'1166 Changhwa Street','','Caraga',62,'58852','650752094490','2006-02-15 04:45:30'),(193,'891 Novi Sad Manor','','Ontario',383,'5379','247646995453','2006-02-15 04:45:30'),(194,'605 Rio Claro Parkway','','Tabora',513,'49348','352469351088','2006-02-15 04:45:30'),(195,'1077 San Felipe de Puerto Plata Place','','Rostov-na-Donu',369,'65387','812824036424','2006-02-15 04:45:30'),(196,'9 San Miguel de Tucumn Manor','','Uttar Pradesh',169,'90845','956188728558','2006-02-15 04:45:30'),(197,'447 Surakarta Loop','','Nyanza',271,'10428','940830176580','2006-02-15 04:45:30'),(198,'345 Oshawa Boulevard','','Tokyo-to',204,'32114','104491201771','2006-02-15 04:45:30'),(199,'1792 Valle de la Pascua Place','','Nordrhein-Westfalen',477,'15540','419419591240','2006-02-15 04:45:30'),(200,'1074 Binzhou Manor','','Baden-Wrttemberg',325,'36490','331132568928','2006-02-15 04:45:30'),(201,'817 Bradford Loop','','Jiangsu',109,'89459','264286442804','2006-02-15 04:45:30'),(202,'955 Bamenda Way','','Ondo & Ekiti',218,'1545','768481779568','2006-02-15 04:45:30'),(203,'1149 A Corua (La Corua) Boulevard','','Haiphong',194,'95824','470884141195','2006-02-15 04:45:30'),(204,'387 Mwene-Ditu Drive','','Ahal',35,'8073','764477681869','2006-02-15 04:45:30'),(205,'68 Molodetno Manor','','Nordrhein-Westfalen',575,'4662','146640639760','2006-02-15 04:45:30'),(206,'642 Nador Drive','','Maharashtra',77,'3924','369050085652','2006-02-15 04:45:30'),(207,'1688 Nador Lane','','Sulawesi Utara',184,'61613','652218196731','2006-02-15 04:45:30'),(208,'1215 Pyongyang Parkway','','Usak',557,'25238','646237101779','2006-02-15 04:45:30'),(209,'1679 Antofagasta Street','','Alto Paran',122,'86599','905903574913','2006-02-15 04:45:30'),(210,'1304 s-Hertogenbosch Way','','Santa Catarina',83,'10925','90336226227','2006-02-15 04:45:30'),(211,'850 Salala Loop','','Kitaa',371,'10800','403404780639','2006-02-15 04:45:30'),(212,'624 Oshawa Boulevard','','West Bengali',51,'89959','49677664184','2006-02-15 04:45:30'),(213,'43 Dadu Avenue','','Rajasthan',74,'4855','95666951770','2006-02-15 04:45:30'),(214,'751 Lima Loop','','Aden',7,'99405','756460337785','2006-02-15 04:45:30'),(215,'1333 Haldia Street','','Jilin',174,'82161','408304391718','2006-02-15 04:45:30'),(216,'660 Jedda Boulevard','','Washington',65,'25053','168758068397','2006-02-15 04:45:30'),(217,'1001 Miyakonojo Lane','','Taizz',518,'67924','584316724815','2006-02-15 04:45:30'),(218,'226 Brest Manor','','California',508,'2299','785881412500','2006-02-15 04:45:30'),(219,'1229 Valencia Parkway','','Haskovo',498,'99124','352679173732','2006-02-15 04:45:30'),(220,'1201 Qomsheh Manor','','Gois',28,'21464','873492228462','2006-02-15 04:45:30'),(221,'866 Shivapuri Manor','','Uttar Pradesh',448,'22474','778502731092','2006-02-15 04:45:30'),(222,'1168 Najafabad Parkway','','Kabol',251,'40301','886649065861','2006-02-15 04:45:30'),(223,'1244 Allappuzha (Alleppey) Place','','Buenos Aires',567,'20657','991802825778','2006-02-15 04:45:30'),(224,'1842 Luzinia Boulevard','','Zanzibar West',593,'94420','706878974831','2006-02-15 04:45:30'),(225,'1926 Gingoog Street','','Sisilia',511,'22824','469738825391','2006-02-15 04:45:30'),(226,'810 Palghat (Palakkad) Boulevard','','Jaroslavl',235,'73431','516331171356','2006-02-15 04:45:30'),(227,'1820 Maring Parkway','','Punjab',324,'88307','99760893676','2006-02-15 04:45:30'),(228,'60 Poos de Caldas Street','','Rajasthan',243,'82338','963063788669','2006-02-15 04:45:30'),(229,'1014 Loja Manor','','Tamil Nadu',22,'66851','460795526514','2006-02-15 04:45:30'),(230,'201 Effon-Alaiye Way','','Asuncin',37,'64344','684192903087','2006-02-15 04:45:30'),(231,'430 Alessandria Loop','','Saarland',439,'47446','669828224459','2006-02-15 04:45:30'),(232,'754 Valencia Place','','Phnom Penh',406,'87911','594319417514','2006-02-15 04:45:30'),(233,'356 Olomouc Manor','','Gois',26,'93323','22326410776','2006-02-15 04:45:30'),(234,'1256 Bislig Boulevard','','Botosani',86,'50598','479007229460','2006-02-15 04:45:30'),(235,'954 Kimchon Place','','West Bengali',559,'42420','541327526474','2006-02-15 04:45:30'),(236,'885 Yingkou Manor','','Kaduna',596,'31390','588964509072','2006-02-15 04:45:30'),(237,'1736 Cavite Place','','Qina',216,'98775','431770603551','2006-02-15 04:45:30'),(238,'346 Skikda Parkway','','Hawalli',233,'90628','630424482919','2006-02-15 04:45:30'),(239,'98 Stara Zagora Boulevard','','Valle',96,'76448','610173756082','2006-02-15 04:45:30'),(240,'1479 Rustenburg Boulevard','','Southern Tagalog',527,'18727','727785483194','2006-02-15 04:45:30'),(241,'647 A Corua (La Corua) Street','','Chollanam',357,'36971','792557457753','2006-02-15 04:45:30'),(242,'1964 Gijn Manor','','Karnataka',473,'14408','918119601885','2006-02-15 04:45:30'),(243,'47 Syktyvkar Lane','','West Java',118,'22236','63937119031','2006-02-15 04:45:30'),(244,'1148 Saarbrcken Parkway','','Fukushima',226,'1921','137773001988','2006-02-15 04:45:30'),(245,'1103 Bilbays Parkway','','Hubei',578,'87660','279979529227','2006-02-15 04:45:30'),(246,'1246 Boksburg Parkway','','Hebei',422,'28349','890283544295','2006-02-15 04:45:30'),(247,'1483 Pathankot Street','','Tucumn',454,'37288','686015532180','2006-02-15 04:45:30'),(248,'582 Papeete Loop','','Central Visayas',294,'27722','569868543137','2006-02-15 04:45:30'),(249,'300 Junan Street','','Kyonggi',553,'81314','890289150158','2006-02-15 04:45:30'),(250,'829 Grand Prairie Way','','Paran',328,'6461','741070712873','2006-02-15 04:45:30'),(251,'1473 Changhwa Parkway','','Mxico',124,'75933','266798132374','2006-02-15 04:45:30'),(252,'1309 Weifang Street','','Florida',520,'57338','435785045362','2006-02-15 04:45:30'),(253,'1760 Oshawa Manor','','Tianjin',535,'38140','56257502250','2006-02-15 04:45:30'),(254,'786 Stara Zagora Way','','Oyo & Osun',390,'98332','716256596301','2006-02-15 04:45:30'),(255,'1966 Tonghae Street','','Anhalt Sachsen',198,'36481','567359279425','2006-02-15 04:45:30'),(256,'1497 Yuzhou Drive','','England',312,'3433','246810237916','2006-02-15 04:45:30'),(258,'752 Ondo Loop','','Miyazaki',338,'32474','134673576619','2006-02-15 04:45:30'),(259,'1338 Zalantun Lane','','Minas Gerais',413,'45403','840522972766','2006-02-15 04:45:30'),(260,'127 Iwakuni Boulevard','','Central Luzon',192,'20777','987442542471','2006-02-15 04:45:30'),(261,'51 Laredo Avenue','','Sagaing',342,'68146','884536620568','2006-02-15 04:45:30'),(262,'771 Yaound Manor','','Sofala',64,'86768','245477603573','2006-02-15 04:45:30'),(263,'532 Toulon Street','','Santiago',460,'69517','46871694740','2006-02-15 04:45:30'),(264,'1027 Banjul Place','','West Bengali',197,'50390','538241037443','2006-02-15 04:45:30'),(265,'1158 Mandi Bahauddin Parkway','','Shanxi',136,'98484','276555730211','2006-02-15 04:45:30'),(266,'862 Xintai Lane','','Cagayan Valley',548,'30065','265153400632','2006-02-15 04:45:30'),(267,'816 Cayenne Parkway','','Manab',414,'93629','282874611748','2006-02-15 04:45:30'),(268,'1831 Nam Dinh Loop','','National Capital Reg',323,'51990','322888976727','2006-02-15 04:45:30'),(269,'446 Kirovo-Tepetsk Lane','','Osaka',203,'19428','303967439816','2006-02-15 04:45:30'),(270,'682 Halisahar Place','','Severn Morava',378,'20536','475553436330','2006-02-15 04:45:30'),(271,'1587 Loja Manor','','Salzburg',447,'5410','621625204422','2006-02-15 04:45:30'),(272,'1762 Paarl Parkway','','Hunan',298,'53928','192459639410','2006-02-15 04:45:30'),(273,'1519 Ilorin Place','','Kerala',395,'49298','357445645426','2006-02-15 04:45:30'),(274,'920 Kumbakonam Loop','','California',446,'75090','685010736240','2006-02-15 04:45:30'),(275,'906 Goinia Way','','Wielkopolskie',255,'83565','701767622697','2006-02-15 04:45:30'),(276,'1675 Xiangfan Manor','','Tamil Nadu',283,'11763','271149517630','2006-02-15 04:45:30'),(277,'85 San Felipe de Puerto Plata Drive','','Shandong',584,'46063','170739645687','2006-02-15 04:45:30'),(278,'144 South Hill Loop','','Guanajuato',445,'2012','45387294817','2006-02-15 04:45:30'),(279,'1884 Shikarpur Avenue','','Haryana',263,'85548','959949395183','2006-02-15 04:45:30'),(280,'1980 Kamjanets-Podilskyi Street','','Illinois',404,'89502','874337098891','2006-02-15 04:45:30'),(281,'1944 Bamenda Way','','Michigan',573,'24645','75975221996','2006-02-15 04:45:30'),(282,'556 Baybay Manor','','Oyo & Osun',374,'55802','363982224739','2006-02-15 04:45:30'),(283,'457 Tongliao Loop','','Bursa',222,'56254','880756161823','2006-02-15 04:45:30'),(284,'600 Bradford Street','','East Azerbaidzan',514,'96204','117592274996','2006-02-15 04:45:30'),(285,'1006 Santa Brbara dOeste Manor','','Ondo & Ekiti',389,'36229','85059738746','2006-02-15 04:45:30'),(286,'1308 Sumy Loop','','Fujian',175,'30657','583021225407','2006-02-15 04:45:30'),(287,'1405 Chisinau Place','','Ponce',411,'8160','62781725285','2006-02-15 04:45:30'),(288,'226 Halifax Street','','Xinxiang',277,'58492','790651020929','2006-02-15 04:45:30'),(289,'1279 Udine Parkway','','Edo & Delta',69,'75860','195003555232','2006-02-15 04:45:30'),(290,'1336 Benin City Drive','','Shiga',386,'46044','341242939532','2006-02-15 04:45:30'),(291,'1155 Liaocheng Place','','Oyo & Osun',152,'22650','558236142492','2006-02-15 04:45:30'),(292,'1993 Tabuk Lane','','Tamil Nadu',522,'64221','648482415405','2006-02-15 04:45:30'),(293,'86 Higashiosaka Lane','','Guanajuato',563,'33768','957128697225','2006-02-15 04:45:30'),(294,'1912 Allende Manor','','Kowloon and New Kowl',279,'58124','172262454487','2006-02-15 04:45:30'),(295,'544 Tarsus Boulevard','','Gurico',562,'53145','892523334','2006-02-15 04:45:30'),(296,'1936 Cuman Avenue','','Virginia',433,'61195','976798660411','2006-02-15 04:45:30'),(297,'1192 Tongliao Street','','Sharja',470,'19065','350970907017','2006-02-15 04:45:30'),(298,'44 Najafabad Way','','Baskimaa',146,'61391','96604821070','2006-02-15 04:45:30'),(299,'32 Pudukkottai Lane','','Ohio',140,'38834','967274728547','2006-02-15 04:45:30'),(300,'661 Chisinau Lane','','Pietari',274,'8856','816436065431','2006-02-15 04:45:30'),(301,'951 Stara Zagora Manor','','Punjab',400,'98573','429925609431','2006-02-15 04:45:30'),(302,'922 Vila Velha Loop','','Maharashtra',9,'4085','510737228015','2006-02-15 04:45:30'),(303,'898 Jining Lane','','Pohjois-Pohjanmaa',387,'40070','161643343536','2006-02-15 04:45:30'),(304,'1635 Kuwana Boulevard','','Hiroshima',205,'52137','710603868323','2006-02-15 04:45:30'),(305,'41 El Alto Parkway','','Maharashtra',398,'56883','51917807050','2006-02-15 04:45:30'),(306,'1883 Maikop Lane','','Kaliningrad',254,'68469','96110042435','2006-02-15 04:45:30'),(307,'1908 Gaziantep Place','','Liaoning',536,'58979','108053751300','2006-02-15 04:45:30'),(308,'687 Alessandria Parkway','','Sanaa',455,'57587','407218522294','2006-02-15 04:45:30'),(309,'827 Yuncheng Drive','','Callao',99,'79047','504434452842','2006-02-15 04:45:30'),(310,'913 Coacalco de Berriozbal Loop','','Texas',33,'42141','262088367001','2006-02-15 04:45:30'),(311,'715 So Bernardo do Campo Lane','','Kedah',507,'84804','181179321332','2006-02-15 04:45:30'),(312,'1354 Siegen Street','','Rio de Janeiro',25,'80184','573441801529','2006-02-15 04:45:30'),(313,'1191 Sungai Petani Boulevard','','Missouri',262,'9668','983259819766','2006-02-15 04:45:30'),(314,'1224 Huejutla de Reyes Boulevard','','Lombardia',91,'70923','806016930576','2006-02-15 04:45:30'),(315,'543 Bergamo Avenue','','Minas Gerais',215,'59686','103602195112','2006-02-15 04:45:30'),(316,'746 Joliet Lane','','Kursk',286,'94878','688485191923','2006-02-15 04:45:30'),(317,'780 Kimberley Way','','Tabuk',515,'17032','824396883951','2006-02-15 04:45:30'),(318,'1774 Yaound Place','','Hubei',166,'91400','613124286867','2006-02-15 04:45:30'),(319,'1957 Yantai Lane','','So Paulo',490,'59255','704948322302','2006-02-15 04:45:30'),(320,'1542 Lubumbashi Boulevard','','Tel Aviv',57,'62472','508800331065','2006-02-15 04:45:30'),(321,'651 Pathankot Loop','','Maharashtra',336,'59811','139378397418','2006-02-15 04:45:30'),(322,'1359 Zhoushan Parkway','','Streymoyar',545,'29763','46568045367','2006-02-15 04:45:30'),(323,'1769 Iwaki Lane','','Kujawsko-Pomorskie',97,'25787','556100547674','2006-02-15 04:45:30'),(324,'1145 Vilnius Manor','','Mxico',451,'73170','674805712553','2006-02-15 04:45:30'),(325,'1892 Nabereznyje Telny Lane','','Tutuila',516,'28396','478229987054','2006-02-15 04:45:30'),(326,'470 Boksburg Street','','Central',81,'97960','908029859266','2006-02-15 04:45:30'),(327,'1427 A Corua (La Corua) Place','','Buenos Aires',45,'85799','972574862516','2006-02-15 04:45:30'),(328,'479 San Felipe del Progreso Avenue','','Morelos',130,'54949','869051782691','2006-02-15 04:45:30'),(329,'867 Benin City Avenue','','Henan',591,'78543','168884817145','2006-02-15 04:45:30'),(330,'981 Kumbakonam Place','','Distrito Federal',89,'87611','829116184079','2006-02-15 04:45:30'),(331,'1016 Iwakuni Street','','St George',269,'49833','961370847344','2006-02-15 04:45:30'),(332,'663 Baha Blanca Parkway','','Adana',5,'33463','834418779292','2006-02-15 04:45:30'),(333,'1860 Taguig Loop','','West Java',119,'59550','38158430589','2006-02-15 04:45:30'),(334,'1816 Bydgoszcz Loop','','Dhaka',234,'64308','965273813662','2006-02-15 04:45:30'),(335,'587 Benguela Manor','','Illinois',42,'91590','165450987037','2006-02-15 04:45:30'),(336,'430 Kumbakonam Drive','','Santa F',457,'28814','105470691550','2006-02-15 04:45:30'),(337,'1838 Tabriz Lane','','Dhaka',143,'1195','38988715447','2006-02-15 04:45:30'),(338,'431 Szkesfehrvr Avenue','','Baki',48,'57828','119501405123','2006-02-15 04:45:30'),(339,'503 Sogamoso Loop','','Sumqayit',505,'49812','834626715837','2006-02-15 04:45:30'),(340,'507 Smolensk Loop','','Sousse',492,'22971','80303246192','2006-02-15 04:45:30'),(341,'1920 Weifang Avenue','','Uttar Pradesh',427,'15643','869507847714','2006-02-15 04:45:30'),(342,'124 al-Manama Way','','Hiroshima',382,'52368','647899404952','2006-02-15 04:45:30'),(343,'1443 Mardan Street','','Western Cape',392,'31483','231383037471','2006-02-15 04:45:30'),(344,'1909 Benguela Lane','','Henan',581,'19913','624138001031','2006-02-15 04:45:30'),(345,'68 Ponce Parkway','','Hanoi',201,'85926','870635127812','2006-02-15 04:45:30'),(346,'1217 Konotop Avenue','','Gelderland',151,'504','718917251754','2006-02-15 04:45:30'),(347,'1293 Nam Dinh Way','','Roraima',84,'71583','697656479977','2006-02-15 04:45:30'),(348,'785 Vaduz Street','','Baja California',335,'36170','895616862749','2006-02-15 04:45:30'),(349,'1516 Escobar Drive','','Tongatapu',370,'46069','64536069371','2006-02-15 04:45:30'),(350,'1628 Nagareyama Lane','','Central',453,'60079','20064292617','2006-02-15 04:45:30'),(351,'1157 Nyeri Loop','','Adygea',320,'56380','262744791493','2006-02-15 04:45:30'),(352,'1673 Tangail Drive','','Daugavpils',137,'26857','627924259271','2006-02-15 04:45:30'),(353,'381 Kabul Way','','Taipei',209,'87272','55477302294','2006-02-15 04:45:30'),(354,'953 Hodeida Street','','Southern Tagalog',221,'18841','53912826864','2006-02-15 04:45:30'),(355,'469 Nakhon Sawan Street','','Tuvassia',531,'58866','689199636560','2006-02-15 04:45:30'),(356,'1378 Beira Loop','','Krasnojarsk',597,'40792','840957664136','2006-02-15 04:45:30'),(357,'1641 Changhwa Place','','Nord-Ouest',52,'37636','256546485220','2006-02-15 04:45:30'),(358,'1698 Southport Loop','','Hidalgo',393,'49009','754358349853','2006-02-15 04:45:30'),(359,'519 Nyeri Manor','','So Paulo',461,'37650','764680915323','2006-02-15 04:45:30'),(360,'619 Hunuco Avenue','','Shimane',331,'81508','142596392389','2006-02-15 04:45:30'),(361,'45 Aparecida de Goinia Place','','Madhya Pradesh',464,'7431','650496654258','2006-02-15 04:45:30'),(362,'482 Kowloon and New Kowloon Manor','','Bratislava',90,'97056','738968474939','2006-02-15 04:45:30'),(363,'604 Bern Place','','Jharkhand',429,'5373','620719383725','2006-02-15 04:45:30'),(364,'1623 Kingstown Drive','','Buenos Aires',20,'91299','296394569728','2006-02-15 04:45:30'),(365,'1009 Zanzibar Lane','','Arecibo',32,'64875','102396298916','2006-02-15 04:45:30'),(366,'114 Jalib al-Shuyukh Manor','','Centre',585,'60440','845378657301','2006-02-15 04:45:30'),(367,'1163 London Parkway','','Par',66,'6066','675120358494','2006-02-15 04:45:30'),(368,'1658 Jastrzebie-Zdrj Loop','','Central',372,'96584','568367775448','2006-02-15 04:45:30'),(369,'817 Laredo Avenue','','Jalisco',188,'77449','151249681135','2006-02-15 04:45:30'),(370,'1565 Tangail Manor','','Okinawa',377,'45750','634445428822','2006-02-15 04:45:30'),(371,'1912 Emeishan Drive','','Balikesir',50,'33050','99883471275','2006-02-15 04:45:30'),(372,'230 Urawa Drive','','Andhra Pradesh',8,'2738','166898395731','2006-02-15 04:45:30'),(373,'1922 Miraj Way','','Esfahan',356,'13203','320471479776','2006-02-15 04:45:30'),(374,'433 Florencia Street','','Chihuahua',250,'91330','561729882725','2006-02-15 04:45:30'),(375,'1049 Matamoros Parkway','','Karnataka',191,'69640','960505250340','2006-02-15 04:45:30'),(376,'1061 Ede Avenue','','Southern Tagalog',98,'57810','333390595558','2006-02-15 04:45:30'),(377,'154 Oshawa Manor','','East Java',415,'72771','440365973660','2006-02-15 04:45:30'),(378,'1191 Tandil Drive','','Southern Tagalog',523,'6362','45554316010','2006-02-15 04:45:30'),(379,'1133 Rizhao Avenue','','Pernambuco',572,'2800','600264533987','2006-02-15 04:45:30'),(380,'1519 Santiago de los Caballeros Loop','','East Kasai',348,'22025','409315295763','2006-02-15 04:45:30'),(381,'1618 Olomouc Manor','','Kurgan',285,'26385','96846695220','2006-02-15 04:45:30'),(382,'220 Hidalgo Drive','','Kermanshah',265,'45298','342720754566','2006-02-15 04:45:30'),(383,'686 Donostia-San Sebastin Lane','','Guangdong',471,'97390','71857599858','2006-02-15 04:45:30'),(384,'97 Mogiljov Lane','','Gujarat',73,'89294','924815207181','2006-02-15 04:45:30'),(385,'1642 Charlotte Amalie Drive','','Slaskie',549,'75442','821476736117','2006-02-15 04:45:30'),(386,'1368 Maracabo Boulevard','','',493,'32716','934352415130','2006-02-15 04:45:30'),(387,'401 Sucre Boulevard','','New Hampshire',322,'25007','486395999608','2006-02-15 04:45:30'),(388,'368 Hunuco Boulevard','','Namibe',360,'17165','106439158941','2006-02-15 04:45:30'),(389,'500 Lincoln Parkway','','Jiangsu',210,'95509','550306965159','2006-02-15 04:45:30'),(390,'102 Chapra Drive','','Ibaragi',521,'14073','776031833752','2006-02-15 04:45:30'),(391,'1793 Meixian Place','','Hmelnytskyi',258,'33535','619966287415','2006-02-15 04:45:30'),(392,'514 Ife Way','','Shaba',315,'69973','900235712074','2006-02-15 04:45:30'),(393,'717 Changzhou Lane','','Southern Tagalog',104,'21615','426255288071','2006-02-15 04:45:30'),(394,'753 Ilorin Avenue','','Sichuan',157,'3656','464511145118','2006-02-15 04:45:30'),(395,'1337 Mit Ghamr Avenue','','Nakhon Sawan',358,'29810','175283210378','2006-02-15 04:45:30'),(396,'767 Pyongyang Drive','','Osaka',229,'83536','667736124769','2006-02-15 04:45:30'),(397,'614 Pak Kret Street','','Addis Abeba',6,'27796','47808359842','2006-02-15 04:45:30'),(398,'954 Lapu-Lapu Way','','Moskova',278,'8816','737229003916','2006-02-15 04:45:30'),(399,'331 Bydgoszcz Parkway','','Asturia',181,'966','537374465982','2006-02-15 04:45:30'),(400,'1152 Citrus Heights Manor','','al-Qadarif',15,'5239','765957414528','2006-02-15 04:45:30'),(401,'168 Cianjur Manor','','Saitama',228,'73824','679095087143','2006-02-15 04:45:30'),(402,'616 Hagonoy Avenue','','Krasnojarsk',39,'46043','604177838256','2006-02-15 04:45:30'),(403,'1190 0 Place','','Rio Grande do Sul',44,'10417','841876514789','2006-02-15 04:45:30'),(404,'734 Bchar Place','','Punjab',375,'30586','280578750435','2006-02-15 04:45:30'),(405,'530 Lausanne Lane','','Texas',135,'11067','775235029633','2006-02-15 04:45:30'),(406,'454 Patiala Lane','','Fukushima',276,'13496','794553031307','2006-02-15 04:45:30'),(407,'1346 Mysore Drive','','Bretagne',92,'61507','516647474029','2006-02-15 04:45:30'),(408,'990 Etawah Loop','','Tamil Nadu',564,'79940','206169448769','2006-02-15 04:45:30'),(409,'1266 Laredo Parkway','','Saitama',380,'7664','1483365694','2006-02-15 04:45:30'),(410,'88 Nagaon Manor','','Buenos Aires',524,'86868','779461480495','2006-02-15 04:45:30'),(411,'264 Bhimavaram Manor','','St Thomas',111,'54749','302526949177','2006-02-15 04:45:30'),(412,'1639 Saarbrcken Drive','','North West',437,'9827','328494873422','2006-02-15 04:45:30'),(413,'692 Amroha Drive','','Northern',230,'35575','359478883004','2006-02-15 04:45:30'),(414,'1936 Lapu-Lapu Parkway','','Bauchi & Gombe',141,'7122','653436985797','2006-02-15 04:45:30'),(415,'432 Garden Grove Street','','Ontario',430,'65630','615964523510','2006-02-15 04:45:30'),(416,'1445 Carmen Parkway','','West Java',117,'70809','598912394463','2006-02-15 04:45:30'),(417,'791 Salinas Street','','Punjab',208,'40509','129953030512','2006-02-15 04:45:30'),(418,'126 Acua Parkway','','West Bengali',71,'58888','480039662421','2006-02-15 04:45:30'),(419,'397 Sunnyvale Avenue','','Guanajuato',19,'55566','680851640676','2006-02-15 04:45:30'),(420,'992 Klerksdorp Loop','','Utrecht',23,'33711','855290087237','2006-02-15 04:45:30'),(421,'966 Arecibo Loop','','Sind',134,'94018','15273765306','2006-02-15 04:45:30'),(422,'289 Santo Andr Manor','','al-Sharqiya',16,'72410','214976066017','2006-02-15 04:45:30'),(423,'437 Chungho Drive','','Puerto Plata',450,'59489','491271355190','2006-02-15 04:45:30'),(424,'1948 Bayugan Parkway','','Bihar',264,'60622','987306329957','2006-02-15 04:45:30'),(425,'1866 al-Qatif Avenue','','California',155,'89420','546793516940','2006-02-15 04:45:30'),(426,'1661 Abha Drive','','Tamil Nadu',416,'14400','270456873752','2006-02-15 04:45:30'),(427,'1557 Cape Coral Parkway','','Hubei',293,'46875','368284120423','2006-02-15 04:45:30'),(428,'1727 Matamoros Place','','Sawhaj',465,'78813','129673677866','2006-02-15 04:45:30'),(429,'1269 Botosani Manor','','Guangdong',468,'47394','736517327853','2006-02-15 04:45:30'),(430,'355 Vitria de Santo Anto Way','','Oaxaca',452,'81758','548003849552','2006-02-15 04:45:30'),(431,'1596 Acua Parkway','','Jharkhand',418,'70425','157133457169','2006-02-15 04:45:30'),(432,'259 Ipoh Drive','','So Paulo',189,'64964','419009857119','2006-02-15 04:45:30'),(433,'1823 Hoshiarpur Lane','','Komi',510,'33191','307133768620','2006-02-15 04:45:30'),(434,'1404 Taguig Drive','','Okayama',547,'87212','572068624538','2006-02-15 04:45:30'),(435,'740 Udaipur Lane','','Nizni Novgorod',150,'33505','497288595103','2006-02-15 04:45:30'),(436,'287 Cuautla Boulevard','','Chuquisaca',501,'72736','82619513349','2006-02-15 04:45:30'),(437,'1766 Almirante Brown Street','','KwaZulu-Natal',364,'63104','617567598243','2006-02-15 04:45:30'),(438,'596 Huixquilucan Place','','Nampula',351,'65892','342709348083','2006-02-15 04:45:30'),(439,'1351 Aparecida de Goinia Parkway','','Northern Mindanao',391,'41775','959834530529','2006-02-15 04:45:30'),(440,'722 Bradford Lane','','Shandong',249,'90920','746251338300','2006-02-15 04:45:30'),(441,'983 Santa F Way','','British Colombia',565,'47472','145720452260','2006-02-15 04:45:30'),(442,'1245 Ibirit Way','','La Romana',290,'40926','331888642162','2006-02-15 04:45:30'),(443,'1836 Korla Parkway','','Copperbelt',272,'55405','689681677428','2006-02-15 04:45:30'),(444,'231 Kaliningrad Place','','Lombardia',70,'57833','575081026569','2006-02-15 04:45:30'),(445,'495 Bhimavaram Lane','','Maharashtra',144,'3','82088937724','2006-02-15 04:45:30'),(446,'1924 Shimonoseki Drive','','Batna',59,'52625','406784385440','2006-02-15 04:45:30'),(447,'105 Dzerzinsk Manor','','Inner Mongolia',540,'48570','240776414296','2006-02-15 04:45:30'),(448,'614 Denizli Parkway','','Rio Grande do Sul',486,'29444','876491807547','2006-02-15 04:45:30'),(449,'1289 Belm Boulevard','','Tartumaa',530,'88306','237368926031','2006-02-15 04:45:30'),(450,'203 Tambaram Street','','Buenos Aires',161,'73942','411549550611','2006-02-15 04:45:30'),(451,'1704 Tambaram Manor','','West Bengali',554,'2834','39463554936','2006-02-15 04:45:30'),(452,'207 Cuernavaca Loop','','Tatarstan',352,'52671','782900030287','2006-02-15 04:45:30'),(453,'319 Springs Loop','','Baijeri',160,'99552','72524459905','2006-02-15 04:45:30'),(454,'956 Nam Dinh Manor','','Kerman',481,'21872','474047727727','2006-02-15 04:45:30'),(455,'1947 Paarl Way','','Central Java',509,'23636','834061016202','2006-02-15 04:45:30'),(456,'814 Simferopol Loop','','Sinaloa',154,'48745','524567129902','2006-02-15 04:45:30'),(457,'535 Ahmadnagar Manor','','Abu Dhabi',3,'41136','985109775584','2006-02-15 04:45:30'),(458,'138 Caracas Boulevard','','Zulia',326,'16790','974433019532','2006-02-15 04:45:30'),(459,'251 Florencia Drive','','Michoacn de Ocampo',556,'16119','118011831565','2006-02-15 04:45:30'),(460,'659 Gatineau Boulevard','','La Paz',153,'28587','205524798287','2006-02-15 04:45:30'),(461,'1889 Valparai Way','','Ziguinchor',600,'75559','670370974122','2006-02-15 04:45:30'),(462,'1485 Bratislava Place','','Illinois',435,'83183','924663855568','2006-02-15 04:45:30'),(463,'935 Aden Boulevard','','Central Java',532,'64709','335052544020','2006-02-15 04:45:30'),(464,'76 Kermanshah Manor','','Esfahan',423,'23343','762361821578','2006-02-15 04:45:30'),(465,'734 Tanshui Avenue','','Caquet',170,'70664','366776723320','2006-02-15 04:45:30'),(466,'118 Jaffna Loop','','Northern Mindanao',182,'10447','325526730021','2006-02-15 04:45:30'),(467,'1621 Tongliao Avenue','','Irkutsk',558,'22173','209342540247','2006-02-15 04:45:30'),(468,'1844 Usak Avenue','','Nova Scotia',196,'84461','164414772677','2006-02-15 04:45:30'),(469,'1872 Toulon Loop','','OHiggins',428,'7939','928809465153','2006-02-15 04:45:30'),(470,'1088 Ibirit Place','','Jalisco',595,'88502','49084281333','2006-02-15 04:45:30'),(471,'1322 Mosul Parkway','','Shandong',145,'95400','268053970382','2006-02-15 04:45:30'),(472,'1447 Chatsworth Place','','Chihuahua',129,'41545','769370126331','2006-02-15 04:45:30'),(473,'1257 Guadalajara Street','','Karnataka',78,'33599','195337700615','2006-02-15 04:45:30'),(474,'1469 Plock Lane','','Galicia',388,'95835','622884741180','2006-02-15 04:45:30'),(475,'434 Ourense (Orense) Manor','','Hodeida',206,'14122','562370137426','2006-02-15 04:45:30'),(476,'270 Tambaram Parkway','','Gauteng',244,'9668','248446668735','2006-02-15 04:45:30'),(477,'1786 Salinas Place','','Nam Ha',359,'66546','206060652238','2006-02-15 04:45:30'),(478,'1078 Stara Zagora Drive','','Aceh',301,'69221','932992626595','2006-02-15 04:45:30'),(479,'1854 Okara Boulevard','','Drenthe',158,'42123','131912793873','2006-02-15 04:45:30'),(480,'421 Yaound Street','','Sumy',385,'11363','726875628268','2006-02-15 04:45:30'),(481,'1153 Allende Way','','Qubec',179,'20336','856872225376','2006-02-15 04:45:30'),(482,'808 Naala-Porto Parkway','','England',500,'41060','553452430707','2006-02-15 04:45:30'),(483,'632 Usolje-Sibirskoje Parkway','','Ha Darom',36,'73085','667648979883','2006-02-15 04:45:30'),(484,'98 Pyongyang Boulevard','','Ohio',11,'88749','191958435142','2006-02-15 04:45:30'),(485,'984 Novoterkassk Loop','','Gaziantep',180,'28165','435118527255','2006-02-15 04:45:30'),(486,'64 Korla Street','','Mwanza',347,'25145','510383179153','2006-02-15 04:45:30'),(487,'1785 So Bernardo do Campo Street','','Veracruz',125,'71182','684529463244','2006-02-15 04:45:30'),(488,'698 Jelets Boulevard','','Denizli',142,'2596','975185523021','2006-02-15 04:45:30'),(489,'1297 Alvorada Parkway','','Ningxia',587,'11839','508348602835','2006-02-15 04:45:30'),(490,'1909 Dayton Avenue','','Guangdong',469,'88513','702955450528','2006-02-15 04:45:30'),(491,'1789 Saint-Denis Parkway','','Coahuila de Zaragoza',4,'8268','936806643983','2006-02-15 04:45:30'),(492,'185 Mannheim Lane','','Stavropol',408,'23661','589377568313','2006-02-15 04:45:30'),(493,'184 Mandaluyong Street','','Baja California Sur',288,'94239','488425406814','2006-02-15 04:45:30'),(494,'591 Sungai Petani Drive','','Okayama',376,'46400','37247325001','2006-02-15 04:45:30'),(495,'656 Matamoros Drive','','Boyac',487,'19489','17305839123','2006-02-15 04:45:30'),(496,'775 ostka Drive','','al-Daqahliya',337,'22358','171973024401','2006-02-15 04:45:30'),(497,'1013 Tabuk Boulevard','','West Bengali',261,'96203','158399646978','2006-02-15 04:45:30'),(498,'319 Plock Parkway','','Istanbul',504,'26101','854259976812','2006-02-15 04:45:30'),(499,'1954 Kowloon and New Kowloon Way','','Chimborazo',434,'63667','898559280434','2006-02-15 04:45:30'),(500,'362 Rajkot Lane','','Gansu',47,'98030','962020153680','2006-02-15 04:45:30'),(501,'1060 Tandil Lane','','Shandong',432,'72349','211256301880','2006-02-15 04:45:30'),(502,'1515 Korla Way','','England',589,'57197','959467760895','2006-02-15 04:45:30'),(503,'1416 San Juan Bautista Tuxtepec Avenue','','Zufar',444,'50592','144206758053','2006-02-15 04:45:30'),(504,'1 Valle de Santiago Avenue','','Apulia',93,'86208','465897838272','2006-02-15 04:45:30'),(505,'519 Brescia Parkway','','East Java',318,'69504','793996678771','2006-02-15 04:45:30'),(506,'414 Mandaluyong Street','','Lubelskie',314,'16370','52709222667','2006-02-15 04:45:30'),(507,'1197 Sokoto Boulevard','','West Bengali',478,'87687','868602816371','2006-02-15 04:45:30'),(508,'496 Celaya Drive','','Nagano',552,'90797','759586584889','2006-02-15 04:45:30'),(509,'786 Matsue Way','','Illinois',245,'37469','111177206479','2006-02-15 04:45:30'),(510,'48 Maracabo Place','','Central Luzon',519,'1570','82671830126','2006-02-15 04:45:30'),(511,'1152 al-Qatif Lane','','Kalimantan Barat',412,'44816','131370665218','2006-02-15 04:45:30'),(512,'1269 Ipoh Avenue','','Eskisehir',163,'54674','402630109080','2006-02-15 04:45:30'),(513,'758 Korolev Parkway','','Andhra Pradesh',568,'75474','441628280920','2006-02-15 04:45:30'),(514,'1747 Rustenburg Place','','Bihar',110,'51369','442673923363','2006-02-15 04:45:30'),(515,'886 Tonghae Place','','Volgograd',259,'19450','711928348157','2006-02-15 04:45:30'),(516,'1574 Goinia Boulevard','','Heilongjiang',502,'39529','59634255214','2006-02-15 04:45:30'),(517,'548 Uruapan Street','','Ontario',312,'35653','879347453467','2006-02-15 04:45:30'),(519,'962 Tama Loop','','',583,'65952','282667506728','2006-02-15 04:45:30'),(520,'1778 Gijn Manor','','Hubei',594,'35156','288910576761','2006-02-15 04:45:30'),(521,'568 Dhule (Dhulia) Loop','','Coquimbo',127,'92568','602101369463','2006-02-15 04:45:30'),(522,'1768 Udine Loop','','Battambang',60,'32347','448876499197','2006-02-15 04:45:30'),(523,'608 Birgunj Parkway','','Taipei',116,'400','627425618482','2006-02-15 04:45:30'),(524,'680 A Corua (La Corua) Manor','','Sivas',482,'49806','158326114853','2006-02-15 04:45:30'),(525,'1949 Sanya Street','','Gumma',224,'61244','132100972047','2006-02-15 04:45:30'),(526,'617 Klerksdorp Place','','Khanh Hoa',366,'94707','574973479129','2006-02-15 04:45:30'),(527,'1993 0 Loop','','Liaoning',588,'41214','25865528181','2006-02-15 04:45:30'),(528,'1176 Southend-on-Sea Manor','','Southern Tagalog',458,'81651','236679267178','2006-02-15 04:45:30'),(529,'600 Purnea (Purnia) Avenue','','Nghe An',571,'18043','638409958875','2006-02-15 04:45:30'),(530,'1003 Qinhuangdao Street','','West Java',419,'25972','35533115997','2006-02-15 04:45:30'),(531,'1986 Sivas Place','','Friuli-Venezia Giuli',551,'95775','182059202712','2006-02-15 04:45:30'),(532,'1427 Tabuk Place','','Florida',101,'31342','214756839122','2006-02-15 04:45:30'),(533,'556 Asuncin Way','','Mogiljov',339,'35364','338244023543','2006-02-15 04:45:30'),(534,'486 Ondo Parkway','','Benguela',67,'35202','105882218332','2006-02-15 04:45:30'),(535,'635 Brest Manor','','Andhra Pradesh',75,'40899','80593242951','2006-02-15 04:45:30'),(536,'166 Jinchang Street','','Buenos Aires',165,'86760','717566026669','2006-02-15 04:45:30'),(537,'958 Sagamihara Lane','','Mie',287,'88408','427274926505','2006-02-15 04:45:30'),(538,'1817 Livorno Way','','Khanh Hoa',100,'79401','478380208348','2006-02-15 04:45:30'),(539,'1332 Gaziantep Lane','','Shandong',80,'22813','383353187467','2006-02-15 04:45:30'),(540,'949 Allende Lane','','Uttar Pradesh',24,'67521','122981120653','2006-02-15 04:45:30'),(541,'195 Ilorin Street','','Chari-Baguirmi',363,'49250','8912935608','2006-02-15 04:45:30'),(542,'193 Bhusawal Place','','Kang-won',539,'9750','745267607502','2006-02-15 04:45:30'),(543,'43 Vilnius Manor','','Colorado',42,'79814','484500282381','2006-02-15 04:45:30'),(544,'183 Haiphong Street','','Jilin',46,'69953','488600270038','2006-02-15 04:45:30'),(545,'163 Augusta-Richmond County Loop','','Carabobo',561,'33030','754579047924','2006-02-15 04:45:30'),(546,'191 Jos Azueta Parkway','','Ruse',436,'13629','932156667696','2006-02-15 04:45:30'),(547,'379 Lublin Parkway','','Toscana',309,'74568','921960450089','2006-02-15 04:45:30'),(548,'1658 Cuman Loop','','Sumatera Selatan',396,'51309','784907335610','2006-02-15 04:45:30'),(549,'454 Qinhuangdao Drive','','Tadla-Azilal',68,'25866','786270036240','2006-02-15 04:45:30'),(550,'1715 Okayama Street','','So Paulo',485,'55676','169352919175','2006-02-15 04:45:30'),(551,'182 Nukualofa Drive','','Sumy',275,'15414','426346224043','2006-02-15 04:45:30'),(552,'390 Wroclaw Way','','Hainan',462,'5753','357593328658','2006-02-15 04:45:30'),(553,'1421 Quilmes Lane','','Ishikawa',260,'19151','135407755975','2006-02-15 04:45:30'),(554,'947 Trshavn Place','','Central Luzon',528,'841','50898428626','2006-02-15 04:45:30'),(555,'1764 Jalib al-Shuyukh Parkway','','Galicia',459,'77642','84794532510','2006-02-15 04:45:30'),(556,'346 Cam Ranh Avenue','','Zhejiang',599,'39976','978430786151','2006-02-15 04:45:30'),(557,'1407 Pachuca de Soto Place','','Rio Grande do Sul',21,'26284','380077794770','2006-02-15 04:45:30'),(558,'904 Clarksville Drive','','Zhejiang',193,'52234','955349440539','2006-02-15 04:45:30'),(559,'1917 Kumbakonam Parkway','','Vojvodina',368,'11892','698182547686','2006-02-15 04:45:30'),(560,'1447 Imus Place','','Gujarat',426,'12905','62127829280','2006-02-15 04:45:30'),(561,'1497 Fengshan Drive','','KwaZulu-Natal',112,'63022','368738360376','2006-02-15 04:45:30'),(562,'869 Shikarpur Way','','England',496,'57380','590764256785','2006-02-15 04:45:30'),(563,'1059 Yuncheng Avenue','','Vilna',570,'47498','107092893983','2006-02-15 04:45:30'),(564,'505 Madiun Boulevard','','Dolnoslaskie',577,'97271','970638808606','2006-02-15 04:45:30'),(565,'1741 Hoshiarpur Boulevard','','al-Sharqiya',79,'22372','855066328617','2006-02-15 04:45:30'),(566,'1229 Varanasi (Benares) Manor','','Buenos Aires',43,'40195','817740355461','2006-02-15 04:45:30'),(567,'1894 Boa Vista Way','','Texas',178,'77464','239357986667','2006-02-15 04:45:30'),(568,'1342 Sharja Way','','Sokoto & Kebbi & Zam',488,'93655','946114054231','2006-02-15 04:45:30'),(569,'1342 Abha Boulevard','','Bukarest',95,'10714','997453607116','2006-02-15 04:45:30'),(570,'415 Pune Avenue','','Shandong',580,'44274','203202500108','2006-02-15 04:45:30'),(571,'1746 Faaa Way','','Huanuco',214,'32515','863080561151','2006-02-15 04:45:30'),(572,'539 Hami Way','','Tokat',538,'52196','525518075499','2006-02-15 04:45:30'),(573,'1407 Surakarta Manor','','Moskova',466,'33224','324346485054','2006-02-15 04:45:30'),(574,'502 Mandi Bahauddin Parkway','','Anzotegui',55,'15992','618156722572','2006-02-15 04:45:30'),(575,'1052 Pathankot Avenue','','Sichuan',299,'77397','128499386727','2006-02-15 04:45:30'),(576,'1351 Sousse Lane','','Coahuila de Zaragoza',341,'37815','203804046132','2006-02-15 04:45:30'),(577,'1501 Pangkal Pinang Avenue','','Mazowieckie',409,'943','770864062795','2006-02-15 04:45:30'),(578,'1405 Hagonoy Avenue','','Slaskie',133,'86587','867287719310','2006-02-15 04:45:30'),(579,'521 San Juan Bautista Tuxtepec Place','','Qaraghandy',598,'95093','844018348565','2006-02-15 04:45:30'),(580,'923 Tangail Boulevard','','Tokyo-to',10,'33384','315528269898','2006-02-15 04:45:30'),(581,'186 Skikda Lane','','Morelos',131,'89422','14465669789','2006-02-15 04:45:30'),(582,'1568 Celaya Parkway','','Kaohsiung',168,'34750','278669994384','2006-02-15 04:45:30'),(583,'1489 Kakamigahara Lane','','Taipei',526,'98883','29341849811','2006-02-15 04:45:30'),(584,'1819 Alessandria Loop','','Campeche',103,'53829','377633994405','2006-02-15 04:45:30'),(585,'1208 Tama Loop','','Ninawa',344,'73605','954786054144','2006-02-15 04:45:30'),(586,'951 Springs Lane','','Central Mindanao',219,'96115','165164761435','2006-02-15 04:45:30'),(587,'760 Miyakonojo Drive','','Guerrero',246,'64682','294449058179','2006-02-15 04:45:30'),(588,'966 Asuncin Way','','Hidalgo',212,'62703','995527378381','2006-02-15 04:45:30'),(589,'1584 Ljubertsy Lane','','England',494,'22954','285710089439','2006-02-15 04:45:30'),(590,'247 Jining Parkway','','Banjul',54,'53446','170115379190','2006-02-15 04:45:30'),(591,'773 Dallas Manor','','Buenos Aires',424,'12664','914466027044','2006-02-15 04:45:30'),(592,'1923 Stara Zagora Lane','','Nantou',546,'95179','182178609211','2006-02-15 04:45:30'),(593,'1402 Zanzibar Boulevard','','Guanajuato',106,'71102','387448063440','2006-02-15 04:45:30'),(594,'1464 Kursk Parkway','','Shandong',574,'17381','338758048786','2006-02-15 04:45:30'),(595,'1074 Sanaa Parkway','','Loja',311,'22474','154124128457','2006-02-15 04:45:30'),(596,'1759 Niznekamsk Avenue','','al-Manama',14,'39414','864392582257','2006-02-15 04:45:30'),(597,'32 Liaocheng Way','','Minas Gerais',248,'1944','410877354933','2006-02-15 04:45:30'),(598,'42 Fontana Avenue','','Fejr',512,'14684','437829801725','2006-02-15 04:45:30'),(599,'1895 Zhezqazghan Drive','','California',177,'36693','137809746111','2006-02-15 04:45:30'),(600,'1837 Kaduna Parkway','','Inner Mongolia',241,'82580','640843562301','2006-02-15 04:45:30'),(601,'844 Bucuresti Place','','Liaoning',242,'36603','935952366111','2006-02-15 04:45:30'),(602,'1101 Bucuresti Boulevard','','West Greece',401,'97661','199514580428','2006-02-15 04:45:30'),(603,'1103 Quilmes Boulevard','','Piura',503,'52137','644021380889','2006-02-15 04:45:30'),(604,'1331 Usak Boulevard','','Vaud',296,'61960','145308717464','2006-02-15 04:45:30'),(605,'1325 Fukuyama Street','','Heilongjiang',537,'27107','288241215394','2006-02-15 04:45:30'); + +INSERT INTO category VALUES (1,'Action','2006-02-15 04:46:27'),(2,'Animation','2006-02-15 04:46:27'),(3,'Children','2006-02-15 04:46:27'),(4,'Classics','2006-02-15 04:46:27'),(5,'Comedy','2006-02-15 04:46:27'),(6,'Documentary','2006-02-15 04:46:27'),(7,'Drama','2006-02-15 04:46:27'),(8,'Family','2006-02-15 04:46:27'),(9,'Foreign','2006-02-15 04:46:27'),(10,'Games','2006-02-15 04:46:27'),(11,'Horror','2006-02-15 04:46:27'),(12,'Music','2006-02-15 04:46:27'),(13,'New','2006-02-15 04:46:27'),(14,'Sci-Fi','2006-02-15 04:46:27'),(15,'Sports','2006-02-15 04:46:27'),(16,'Travel','2006-02-15 04:46:27'); + +INSERT INTO city VALUES (1,'A Corua (La Corua)',87,'2006-02-15 04:45:25'),(2,'Abha',82,'2006-02-15 04:45:25'),(3,'Abu Dhabi',101,'2006-02-15 04:45:25'),(4,'Acua',60,'2006-02-15 04:45:25'),(5,'Adana',97,'2006-02-15 04:45:25'),(6,'Addis Abeba',31,'2006-02-15 04:45:25'),(7,'Aden',107,'2006-02-15 04:45:25'),(8,'Adoni',44,'2006-02-15 04:45:25'),(9,'Ahmadnagar',44,'2006-02-15 04:45:25'),(10,'Akishima',50,'2006-02-15 04:45:25'),(11,'Akron',103,'2006-02-15 04:45:25'),(12,'al-Ayn',101,'2006-02-15 04:45:25'),(13,'al-Hawiya',82,'2006-02-15 04:45:25'),(14,'al-Manama',11,'2006-02-15 04:45:25'),(15,'al-Qadarif',89,'2006-02-15 04:45:25'),(16,'al-Qatif',82,'2006-02-15 04:45:25'),(17,'Alessandria',49,'2006-02-15 04:45:25'),(18,'Allappuzha (Alleppey)',44,'2006-02-15 04:45:25'),(19,'Allende',60,'2006-02-15 04:45:25'),(20,'Almirante Brown',6,'2006-02-15 04:45:25'),(21,'Alvorada',15,'2006-02-15 04:45:25'),(22,'Ambattur',44,'2006-02-15 04:45:25'),(23,'Amersfoort',67,'2006-02-15 04:45:25'),(24,'Amroha',44,'2006-02-15 04:45:25'),(25,'Angra dos Reis',15,'2006-02-15 04:45:25'),(26,'Anpolis',15,'2006-02-15 04:45:25'),(27,'Antofagasta',22,'2006-02-15 04:45:25'),(28,'Aparecida de Goinia',15,'2006-02-15 04:45:25'),(29,'Apeldoorn',67,'2006-02-15 04:45:25'),(30,'Araatuba',15,'2006-02-15 04:45:25'),(31,'Arak',46,'2006-02-15 04:45:25'),(32,'Arecibo',77,'2006-02-15 04:45:25'),(33,'Arlington',103,'2006-02-15 04:45:25'),(34,'Ashdod',48,'2006-02-15 04:45:25'),(35,'Ashgabat',98,'2006-02-15 04:45:25'),(36,'Ashqelon',48,'2006-02-15 04:45:25'),(37,'Asuncin',73,'2006-02-15 04:45:25'),(38,'Athenai',39,'2006-02-15 04:45:25'),(39,'Atinsk',80,'2006-02-15 04:45:25'),(40,'Atlixco',60,'2006-02-15 04:45:25'),(41,'Augusta-Richmond County',103,'2006-02-15 04:45:25'),(42,'Aurora',103,'2006-02-15 04:45:25'),(43,'Avellaneda',6,'2006-02-15 04:45:25'),(44,'Bag',15,'2006-02-15 04:45:25'),(45,'Baha Blanca',6,'2006-02-15 04:45:25'),(46,'Baicheng',23,'2006-02-15 04:45:25'),(47,'Baiyin',23,'2006-02-15 04:45:25'),(48,'Baku',10,'2006-02-15 04:45:25'),(49,'Balaiha',80,'2006-02-15 04:45:25'),(50,'Balikesir',97,'2006-02-15 04:45:25'),(51,'Balurghat',44,'2006-02-15 04:45:25'),(52,'Bamenda',19,'2006-02-15 04:45:25'),(53,'Bandar Seri Begawan',16,'2006-02-15 04:45:25'),(54,'Banjul',37,'2006-02-15 04:45:25'),(55,'Barcelona',104,'2006-02-15 04:45:25'),(56,'Basel',91,'2006-02-15 04:45:25'),(57,'Bat Yam',48,'2006-02-15 04:45:25'),(58,'Batman',97,'2006-02-15 04:45:25'),(59,'Batna',2,'2006-02-15 04:45:25'),(60,'Battambang',18,'2006-02-15 04:45:25'),(61,'Baybay',75,'2006-02-15 04:45:25'),(62,'Bayugan',75,'2006-02-15 04:45:25'),(63,'Bchar',2,'2006-02-15 04:45:25'),(64,'Beira',63,'2006-02-15 04:45:25'),(65,'Bellevue',103,'2006-02-15 04:45:25'),(66,'Belm',15,'2006-02-15 04:45:25'),(67,'Benguela',4,'2006-02-15 04:45:25'),(68,'Beni-Mellal',62,'2006-02-15 04:45:25'),(69,'Benin City',69,'2006-02-15 04:45:25'),(70,'Bergamo',49,'2006-02-15 04:45:25'),(71,'Berhampore (Baharampur)',44,'2006-02-15 04:45:25'),(72,'Bern',91,'2006-02-15 04:45:25'),(73,'Bhavnagar',44,'2006-02-15 04:45:25'),(74,'Bhilwara',44,'2006-02-15 04:45:25'),(75,'Bhimavaram',44,'2006-02-15 04:45:25'),(76,'Bhopal',44,'2006-02-15 04:45:25'),(77,'Bhusawal',44,'2006-02-15 04:45:25'),(78,'Bijapur',44,'2006-02-15 04:45:25'),(79,'Bilbays',29,'2006-02-15 04:45:25'),(80,'Binzhou',23,'2006-02-15 04:45:25'),(81,'Birgunj',66,'2006-02-15 04:45:25'),(82,'Bislig',75,'2006-02-15 04:45:25'),(83,'Blumenau',15,'2006-02-15 04:45:25'),(84,'Boa Vista',15,'2006-02-15 04:45:25'),(85,'Boksburg',85,'2006-02-15 04:45:25'),(86,'Botosani',78,'2006-02-15 04:45:25'),(87,'Botshabelo',85,'2006-02-15 04:45:25'),(88,'Bradford',102,'2006-02-15 04:45:25'),(89,'Braslia',15,'2006-02-15 04:45:25'),(90,'Bratislava',84,'2006-02-15 04:45:25'),(91,'Brescia',49,'2006-02-15 04:45:25'),(92,'Brest',34,'2006-02-15 04:45:25'),(93,'Brindisi',49,'2006-02-15 04:45:25'),(94,'Brockton',103,'2006-02-15 04:45:25'),(95,'Bucuresti',78,'2006-02-15 04:45:25'),(96,'Buenaventura',24,'2006-02-15 04:45:25'),(97,'Bydgoszcz',76,'2006-02-15 04:45:25'),(98,'Cabuyao',75,'2006-02-15 04:45:25'),(99,'Callao',74,'2006-02-15 04:45:25'),(100,'Cam Ranh',105,'2006-02-15 04:45:25'),(101,'Cape Coral',103,'2006-02-15 04:45:25'),(102,'Caracas',104,'2006-02-15 04:45:25'),(103,'Carmen',60,'2006-02-15 04:45:25'),(104,'Cavite',75,'2006-02-15 04:45:25'),(105,'Cayenne',35,'2006-02-15 04:45:25'),(106,'Celaya',60,'2006-02-15 04:45:25'),(107,'Chandrapur',44,'2006-02-15 04:45:25'),(108,'Changhwa',92,'2006-02-15 04:45:25'),(109,'Changzhou',23,'2006-02-15 04:45:25'),(110,'Chapra',44,'2006-02-15 04:45:25'),(111,'Charlotte Amalie',106,'2006-02-15 04:45:25'),(112,'Chatsworth',85,'2006-02-15 04:45:25'),(113,'Cheju',86,'2006-02-15 04:45:25'),(114,'Chiayi',92,'2006-02-15 04:45:25'),(115,'Chisinau',61,'2006-02-15 04:45:25'),(116,'Chungho',92,'2006-02-15 04:45:25'),(117,'Cianjur',45,'2006-02-15 04:45:25'),(118,'Ciomas',45,'2006-02-15 04:45:25'),(119,'Ciparay',45,'2006-02-15 04:45:25'),(120,'Citrus Heights',103,'2006-02-15 04:45:25'),(121,'Citt del Vaticano',41,'2006-02-15 04:45:25'),(122,'Ciudad del Este',73,'2006-02-15 04:45:25'),(123,'Clarksville',103,'2006-02-15 04:45:25'),(124,'Coacalco de Berriozbal',60,'2006-02-15 04:45:25'),(125,'Coatzacoalcos',60,'2006-02-15 04:45:25'),(126,'Compton',103,'2006-02-15 04:45:25'),(127,'Coquimbo',22,'2006-02-15 04:45:25'),(128,'Crdoba',6,'2006-02-15 04:45:25'),(129,'Cuauhtmoc',60,'2006-02-15 04:45:25'),(130,'Cuautla',60,'2006-02-15 04:45:25'),(131,'Cuernavaca',60,'2006-02-15 04:45:25'),(132,'Cuman',104,'2006-02-15 04:45:25'),(133,'Czestochowa',76,'2006-02-15 04:45:25'),(134,'Dadu',72,'2006-02-15 04:45:25'),(135,'Dallas',103,'2006-02-15 04:45:25'),(136,'Datong',23,'2006-02-15 04:45:25'),(137,'Daugavpils',54,'2006-02-15 04:45:25'),(138,'Davao',75,'2006-02-15 04:45:25'),(139,'Daxian',23,'2006-02-15 04:45:25'),(140,'Dayton',103,'2006-02-15 04:45:25'),(141,'Deba Habe',69,'2006-02-15 04:45:25'),(142,'Denizli',97,'2006-02-15 04:45:25'),(143,'Dhaka',12,'2006-02-15 04:45:25'),(144,'Dhule (Dhulia)',44,'2006-02-15 04:45:25'),(145,'Dongying',23,'2006-02-15 04:45:25'),(146,'Donostia-San Sebastin',87,'2006-02-15 04:45:25'),(147,'Dos Quebradas',24,'2006-02-15 04:45:25'),(148,'Duisburg',38,'2006-02-15 04:45:25'),(149,'Dundee',102,'2006-02-15 04:45:25'),(150,'Dzerzinsk',80,'2006-02-15 04:45:25'),(151,'Ede',67,'2006-02-15 04:45:25'),(152,'Effon-Alaiye',69,'2006-02-15 04:45:25'),(153,'El Alto',14,'2006-02-15 04:45:25'),(154,'El Fuerte',60,'2006-02-15 04:45:25'),(155,'El Monte',103,'2006-02-15 04:45:25'),(156,'Elista',80,'2006-02-15 04:45:25'),(157,'Emeishan',23,'2006-02-15 04:45:25'),(158,'Emmen',67,'2006-02-15 04:45:25'),(159,'Enshi',23,'2006-02-15 04:45:25'),(160,'Erlangen',38,'2006-02-15 04:45:25'),(161,'Escobar',6,'2006-02-15 04:45:25'),(162,'Esfahan',46,'2006-02-15 04:45:25'),(163,'Eskisehir',97,'2006-02-15 04:45:25'),(164,'Etawah',44,'2006-02-15 04:45:25'),(165,'Ezeiza',6,'2006-02-15 04:45:25'),(166,'Ezhou',23,'2006-02-15 04:45:25'),(167,'Faaa',36,'2006-02-15 04:45:25'),(168,'Fengshan',92,'2006-02-15 04:45:25'),(169,'Firozabad',44,'2006-02-15 04:45:25'),(170,'Florencia',24,'2006-02-15 04:45:25'),(171,'Fontana',103,'2006-02-15 04:45:25'),(172,'Fukuyama',50,'2006-02-15 04:45:25'),(173,'Funafuti',99,'2006-02-15 04:45:25'),(174,'Fuyu',23,'2006-02-15 04:45:25'),(175,'Fuzhou',23,'2006-02-15 04:45:25'),(176,'Gandhinagar',44,'2006-02-15 04:45:25'),(177,'Garden Grove',103,'2006-02-15 04:45:25'),(178,'Garland',103,'2006-02-15 04:45:25'),(179,'Gatineau',20,'2006-02-15 04:45:25'),(180,'Gaziantep',97,'2006-02-15 04:45:25'),(181,'Gijn',87,'2006-02-15 04:45:25'),(182,'Gingoog',75,'2006-02-15 04:45:25'),(183,'Goinia',15,'2006-02-15 04:45:25'),(184,'Gorontalo',45,'2006-02-15 04:45:25'),(185,'Grand Prairie',103,'2006-02-15 04:45:25'),(186,'Graz',9,'2006-02-15 04:45:25'),(187,'Greensboro',103,'2006-02-15 04:45:25'),(188,'Guadalajara',60,'2006-02-15 04:45:25'),(189,'Guaruj',15,'2006-02-15 04:45:25'),(190,'guas Lindas de Gois',15,'2006-02-15 04:45:25'),(191,'Gulbarga',44,'2006-02-15 04:45:25'),(192,'Hagonoy',75,'2006-02-15 04:45:25'),(193,'Haining',23,'2006-02-15 04:45:25'),(194,'Haiphong',105,'2006-02-15 04:45:25'),(195,'Haldia',44,'2006-02-15 04:45:25'),(196,'Halifax',20,'2006-02-15 04:45:25'),(197,'Halisahar',44,'2006-02-15 04:45:25'),(198,'Halle/Saale',38,'2006-02-15 04:45:25'),(199,'Hami',23,'2006-02-15 04:45:25'),(200,'Hamilton',68,'2006-02-15 04:45:25'),(201,'Hanoi',105,'2006-02-15 04:45:25'),(202,'Hidalgo',60,'2006-02-15 04:45:25'),(203,'Higashiosaka',50,'2006-02-15 04:45:25'),(204,'Hino',50,'2006-02-15 04:45:25'),(205,'Hiroshima',50,'2006-02-15 04:45:25'),(206,'Hodeida',107,'2006-02-15 04:45:25'),(207,'Hohhot',23,'2006-02-15 04:45:25'),(208,'Hoshiarpur',44,'2006-02-15 04:45:25'),(209,'Hsichuh',92,'2006-02-15 04:45:25'),(210,'Huaian',23,'2006-02-15 04:45:25'),(211,'Hubli-Dharwad',44,'2006-02-15 04:45:25'),(212,'Huejutla de Reyes',60,'2006-02-15 04:45:25'),(213,'Huixquilucan',60,'2006-02-15 04:45:25'),(214,'Hunuco',74,'2006-02-15 04:45:25'),(215,'Ibirit',15,'2006-02-15 04:45:25'),(216,'Idfu',29,'2006-02-15 04:45:25'),(217,'Ife',69,'2006-02-15 04:45:25'),(218,'Ikerre',69,'2006-02-15 04:45:25'),(219,'Iligan',75,'2006-02-15 04:45:25'),(220,'Ilorin',69,'2006-02-15 04:45:25'),(221,'Imus',75,'2006-02-15 04:45:25'),(222,'Inegl',97,'2006-02-15 04:45:25'),(223,'Ipoh',59,'2006-02-15 04:45:25'),(224,'Isesaki',50,'2006-02-15 04:45:25'),(225,'Ivanovo',80,'2006-02-15 04:45:25'),(226,'Iwaki',50,'2006-02-15 04:45:25'),(227,'Iwakuni',50,'2006-02-15 04:45:25'),(228,'Iwatsuki',50,'2006-02-15 04:45:25'),(229,'Izumisano',50,'2006-02-15 04:45:25'),(230,'Jaffna',88,'2006-02-15 04:45:25'),(231,'Jaipur',44,'2006-02-15 04:45:25'),(232,'Jakarta',45,'2006-02-15 04:45:25'),(233,'Jalib al-Shuyukh',53,'2006-02-15 04:45:25'),(234,'Jamalpur',12,'2006-02-15 04:45:25'),(235,'Jaroslavl',80,'2006-02-15 04:45:25'),(236,'Jastrzebie-Zdrj',76,'2006-02-15 04:45:25'),(237,'Jedda',82,'2006-02-15 04:45:25'),(238,'Jelets',80,'2006-02-15 04:45:25'),(239,'Jhansi',44,'2006-02-15 04:45:25'),(240,'Jinchang',23,'2006-02-15 04:45:25'),(241,'Jining',23,'2006-02-15 04:45:25'),(242,'Jinzhou',23,'2006-02-15 04:45:25'),(243,'Jodhpur',44,'2006-02-15 04:45:25'),(244,'Johannesburg',85,'2006-02-15 04:45:25'),(245,'Joliet',103,'2006-02-15 04:45:25'),(246,'Jos Azueta',60,'2006-02-15 04:45:25'),(247,'Juazeiro do Norte',15,'2006-02-15 04:45:25'),(248,'Juiz de Fora',15,'2006-02-15 04:45:25'),(249,'Junan',23,'2006-02-15 04:45:25'),(250,'Jurez',60,'2006-02-15 04:45:25'),(251,'Kabul',1,'2006-02-15 04:45:25'),(252,'Kaduna',69,'2006-02-15 04:45:25'),(253,'Kakamigahara',50,'2006-02-15 04:45:25'),(254,'Kaliningrad',80,'2006-02-15 04:45:25'),(255,'Kalisz',76,'2006-02-15 04:45:25'),(256,'Kamakura',50,'2006-02-15 04:45:25'),(257,'Kamarhati',44,'2006-02-15 04:45:25'),(258,'Kamjanets-Podilskyi',100,'2006-02-15 04:45:25'),(259,'Kamyin',80,'2006-02-15 04:45:25'),(260,'Kanazawa',50,'2006-02-15 04:45:25'),(261,'Kanchrapara',44,'2006-02-15 04:45:25'),(262,'Kansas City',103,'2006-02-15 04:45:25'),(263,'Karnal',44,'2006-02-15 04:45:25'),(264,'Katihar',44,'2006-02-15 04:45:25'),(265,'Kermanshah',46,'2006-02-15 04:45:25'),(266,'Kilis',97,'2006-02-15 04:45:25'),(267,'Kimberley',85,'2006-02-15 04:45:25'),(268,'Kimchon',86,'2006-02-15 04:45:25'),(269,'Kingstown',81,'2006-02-15 04:45:25'),(270,'Kirovo-Tepetsk',80,'2006-02-15 04:45:25'),(271,'Kisumu',52,'2006-02-15 04:45:25'),(272,'Kitwe',109,'2006-02-15 04:45:25'),(273,'Klerksdorp',85,'2006-02-15 04:45:25'),(274,'Kolpino',80,'2006-02-15 04:45:25'),(275,'Konotop',100,'2006-02-15 04:45:25'),(276,'Koriyama',50,'2006-02-15 04:45:25'),(277,'Korla',23,'2006-02-15 04:45:25'),(278,'Korolev',80,'2006-02-15 04:45:25'),(279,'Kowloon and New Kowloon',42,'2006-02-15 04:45:25'),(280,'Kragujevac',108,'2006-02-15 04:45:25'),(281,'Ktahya',97,'2006-02-15 04:45:25'),(282,'Kuching',59,'2006-02-15 04:45:25'),(283,'Kumbakonam',44,'2006-02-15 04:45:25'),(284,'Kurashiki',50,'2006-02-15 04:45:25'),(285,'Kurgan',80,'2006-02-15 04:45:25'),(286,'Kursk',80,'2006-02-15 04:45:25'),(287,'Kuwana',50,'2006-02-15 04:45:25'),(288,'La Paz',60,'2006-02-15 04:45:25'),(289,'La Plata',6,'2006-02-15 04:45:25'),(290,'La Romana',27,'2006-02-15 04:45:25'),(291,'Laiwu',23,'2006-02-15 04:45:25'),(292,'Lancaster',103,'2006-02-15 04:45:25'),(293,'Laohekou',23,'2006-02-15 04:45:25'),(294,'Lapu-Lapu',75,'2006-02-15 04:45:25'),(295,'Laredo',103,'2006-02-15 04:45:25'),(296,'Lausanne',91,'2006-02-15 04:45:25'),(297,'Le Mans',34,'2006-02-15 04:45:25'),(298,'Lengshuijiang',23,'2006-02-15 04:45:25'),(299,'Leshan',23,'2006-02-15 04:45:25'),(300,'Lethbridge',20,'2006-02-15 04:45:25'),(301,'Lhokseumawe',45,'2006-02-15 04:45:25'),(302,'Liaocheng',23,'2006-02-15 04:45:25'),(303,'Liepaja',54,'2006-02-15 04:45:25'),(304,'Lilongwe',58,'2006-02-15 04:45:25'),(305,'Lima',74,'2006-02-15 04:45:25'),(306,'Lincoln',103,'2006-02-15 04:45:25'),(307,'Linz',9,'2006-02-15 04:45:25'),(308,'Lipetsk',80,'2006-02-15 04:45:25'),(309,'Livorno',49,'2006-02-15 04:45:25'),(310,'Ljubertsy',80,'2006-02-15 04:45:25'),(311,'Loja',28,'2006-02-15 04:45:25'),(312,'London',102,'2006-02-15 04:45:25'),(313,'London',20,'2006-02-15 04:45:25'),(314,'Lublin',76,'2006-02-15 04:45:25'),(315,'Lubumbashi',25,'2006-02-15 04:45:25'),(316,'Lungtan',92,'2006-02-15 04:45:25'),(317,'Luzinia',15,'2006-02-15 04:45:25'),(318,'Madiun',45,'2006-02-15 04:45:25'),(319,'Mahajanga',57,'2006-02-15 04:45:25'),(320,'Maikop',80,'2006-02-15 04:45:25'),(321,'Malm',90,'2006-02-15 04:45:25'),(322,'Manchester',103,'2006-02-15 04:45:25'),(323,'Mandaluyong',75,'2006-02-15 04:45:25'),(324,'Mandi Bahauddin',72,'2006-02-15 04:45:25'),(325,'Mannheim',38,'2006-02-15 04:45:25'),(326,'Maracabo',104,'2006-02-15 04:45:25'),(327,'Mardan',72,'2006-02-15 04:45:25'),(328,'Maring',15,'2006-02-15 04:45:25'),(329,'Masqat',71,'2006-02-15 04:45:25'),(330,'Matamoros',60,'2006-02-15 04:45:25'),(331,'Matsue',50,'2006-02-15 04:45:25'),(332,'Meixian',23,'2006-02-15 04:45:25'),(333,'Memphis',103,'2006-02-15 04:45:25'),(334,'Merlo',6,'2006-02-15 04:45:25'),(335,'Mexicali',60,'2006-02-15 04:45:25'),(336,'Miraj',44,'2006-02-15 04:45:25'),(337,'Mit Ghamr',29,'2006-02-15 04:45:25'),(338,'Miyakonojo',50,'2006-02-15 04:45:25'),(339,'Mogiljov',13,'2006-02-15 04:45:25'),(340,'Molodetno',13,'2006-02-15 04:45:25'),(341,'Monclova',60,'2006-02-15 04:45:25'),(342,'Monywa',64,'2006-02-15 04:45:25'),(343,'Moscow',80,'2006-02-15 04:45:25'),(344,'Mosul',47,'2006-02-15 04:45:25'),(345,'Mukateve',100,'2006-02-15 04:45:25'),(346,'Munger (Monghyr)',44,'2006-02-15 04:45:25'),(347,'Mwanza',93,'2006-02-15 04:45:25'),(348,'Mwene-Ditu',25,'2006-02-15 04:45:25'),(349,'Myingyan',64,'2006-02-15 04:45:25'),(350,'Mysore',44,'2006-02-15 04:45:25'),(351,'Naala-Porto',63,'2006-02-15 04:45:25'),(352,'Nabereznyje Telny',80,'2006-02-15 04:45:25'),(353,'Nador',62,'2006-02-15 04:45:25'),(354,'Nagaon',44,'2006-02-15 04:45:25'),(355,'Nagareyama',50,'2006-02-15 04:45:25'),(356,'Najafabad',46,'2006-02-15 04:45:25'),(357,'Naju',86,'2006-02-15 04:45:25'),(358,'Nakhon Sawan',94,'2006-02-15 04:45:25'),(359,'Nam Dinh',105,'2006-02-15 04:45:25'),(360,'Namibe',4,'2006-02-15 04:45:25'),(361,'Nantou',92,'2006-02-15 04:45:25'),(362,'Nanyang',23,'2006-02-15 04:45:25'),(363,'NDjamna',21,'2006-02-15 04:45:25'),(364,'Newcastle',85,'2006-02-15 04:45:25'),(365,'Nezahualcyotl',60,'2006-02-15 04:45:25'),(366,'Nha Trang',105,'2006-02-15 04:45:25'),(367,'Niznekamsk',80,'2006-02-15 04:45:25'),(368,'Novi Sad',108,'2006-02-15 04:45:25'),(369,'Novoterkassk',80,'2006-02-15 04:45:25'),(370,'Nukualofa',95,'2006-02-15 04:45:25'),(371,'Nuuk',40,'2006-02-15 04:45:25'),(372,'Nyeri',52,'2006-02-15 04:45:25'),(373,'Ocumare del Tuy',104,'2006-02-15 04:45:25'),(374,'Ogbomosho',69,'2006-02-15 04:45:25'),(375,'Okara',72,'2006-02-15 04:45:25'),(376,'Okayama',50,'2006-02-15 04:45:25'),(377,'Okinawa',50,'2006-02-15 04:45:25'),(378,'Olomouc',26,'2006-02-15 04:45:25'),(379,'Omdurman',89,'2006-02-15 04:45:25'),(380,'Omiya',50,'2006-02-15 04:45:25'),(381,'Ondo',69,'2006-02-15 04:45:25'),(382,'Onomichi',50,'2006-02-15 04:45:25'),(383,'Oshawa',20,'2006-02-15 04:45:25'),(384,'Osmaniye',97,'2006-02-15 04:45:25'),(385,'ostka',100,'2006-02-15 04:45:25'),(386,'Otsu',50,'2006-02-15 04:45:25'),(387,'Oulu',33,'2006-02-15 04:45:25'),(388,'Ourense (Orense)',87,'2006-02-15 04:45:25'),(389,'Owo',69,'2006-02-15 04:45:25'),(390,'Oyo',69,'2006-02-15 04:45:25'),(391,'Ozamis',75,'2006-02-15 04:45:25'),(392,'Paarl',85,'2006-02-15 04:45:25'),(393,'Pachuca de Soto',60,'2006-02-15 04:45:25'),(394,'Pak Kret',94,'2006-02-15 04:45:25'),(395,'Palghat (Palakkad)',44,'2006-02-15 04:45:25'),(396,'Pangkal Pinang',45,'2006-02-15 04:45:25'),(397,'Papeete',36,'2006-02-15 04:45:25'),(398,'Parbhani',44,'2006-02-15 04:45:25'),(399,'Pathankot',44,'2006-02-15 04:45:25'),(400,'Patiala',44,'2006-02-15 04:45:25'),(401,'Patras',39,'2006-02-15 04:45:25'),(402,'Pavlodar',51,'2006-02-15 04:45:25'),(403,'Pemalang',45,'2006-02-15 04:45:25'),(404,'Peoria',103,'2006-02-15 04:45:25'),(405,'Pereira',24,'2006-02-15 04:45:25'),(406,'Phnom Penh',18,'2006-02-15 04:45:25'),(407,'Pingxiang',23,'2006-02-15 04:45:25'),(408,'Pjatigorsk',80,'2006-02-15 04:45:25'),(409,'Plock',76,'2006-02-15 04:45:25'),(410,'Po',15,'2006-02-15 04:45:25'),(411,'Ponce',77,'2006-02-15 04:45:25'),(412,'Pontianak',45,'2006-02-15 04:45:25'),(413,'Poos de Caldas',15,'2006-02-15 04:45:25'),(414,'Portoviejo',28,'2006-02-15 04:45:25'),(415,'Probolinggo',45,'2006-02-15 04:45:25'),(416,'Pudukkottai',44,'2006-02-15 04:45:25'),(417,'Pune',44,'2006-02-15 04:45:25'),(418,'Purnea (Purnia)',44,'2006-02-15 04:45:25'),(419,'Purwakarta',45,'2006-02-15 04:45:25'),(420,'Pyongyang',70,'2006-02-15 04:45:25'),(421,'Qalyub',29,'2006-02-15 04:45:25'),(422,'Qinhuangdao',23,'2006-02-15 04:45:25'),(423,'Qomsheh',46,'2006-02-15 04:45:25'),(424,'Quilmes',6,'2006-02-15 04:45:25'),(425,'Rae Bareli',44,'2006-02-15 04:45:25'),(426,'Rajkot',44,'2006-02-15 04:45:25'),(427,'Rampur',44,'2006-02-15 04:45:25'),(428,'Rancagua',22,'2006-02-15 04:45:25'),(429,'Ranchi',44,'2006-02-15 04:45:25'),(430,'Richmond Hill',20,'2006-02-15 04:45:25'),(431,'Rio Claro',15,'2006-02-15 04:45:25'),(432,'Rizhao',23,'2006-02-15 04:45:25'),(433,'Roanoke',103,'2006-02-15 04:45:25'),(434,'Robamba',28,'2006-02-15 04:45:25'),(435,'Rockford',103,'2006-02-15 04:45:25'),(436,'Ruse',17,'2006-02-15 04:45:25'),(437,'Rustenburg',85,'2006-02-15 04:45:25'),(438,'s-Hertogenbosch',67,'2006-02-15 04:45:25'),(439,'Saarbrcken',38,'2006-02-15 04:45:25'),(440,'Sagamihara',50,'2006-02-15 04:45:25'),(441,'Saint Louis',103,'2006-02-15 04:45:25'),(442,'Saint-Denis',79,'2006-02-15 04:45:25'),(443,'Sal',62,'2006-02-15 04:45:25'),(444,'Salala',71,'2006-02-15 04:45:25'),(445,'Salamanca',60,'2006-02-15 04:45:25'),(446,'Salinas',103,'2006-02-15 04:45:25'),(447,'Salzburg',9,'2006-02-15 04:45:25'),(448,'Sambhal',44,'2006-02-15 04:45:25'),(449,'San Bernardino',103,'2006-02-15 04:45:25'),(450,'San Felipe de Puerto Plata',27,'2006-02-15 04:45:25'),(451,'San Felipe del Progreso',60,'2006-02-15 04:45:25'),(452,'San Juan Bautista Tuxtepec',60,'2006-02-15 04:45:25'),(453,'San Lorenzo',73,'2006-02-15 04:45:25'),(454,'San Miguel de Tucumn',6,'2006-02-15 04:45:25'),(455,'Sanaa',107,'2006-02-15 04:45:25'),(456,'Santa Brbara dOeste',15,'2006-02-15 04:45:25'),(457,'Santa F',6,'2006-02-15 04:45:25'),(458,'Santa Rosa',75,'2006-02-15 04:45:25'),(459,'Santiago de Compostela',87,'2006-02-15 04:45:25'),(460,'Santiago de los Caballeros',27,'2006-02-15 04:45:25'),(461,'Santo Andr',15,'2006-02-15 04:45:25'),(462,'Sanya',23,'2006-02-15 04:45:25'),(463,'Sasebo',50,'2006-02-15 04:45:25'),(464,'Satna',44,'2006-02-15 04:45:25'),(465,'Sawhaj',29,'2006-02-15 04:45:25'),(466,'Serpuhov',80,'2006-02-15 04:45:25'),(467,'Shahr-e Kord',46,'2006-02-15 04:45:25'),(468,'Shanwei',23,'2006-02-15 04:45:25'),(469,'Shaoguan',23,'2006-02-15 04:45:25'),(470,'Sharja',101,'2006-02-15 04:45:25'),(471,'Shenzhen',23,'2006-02-15 04:45:25'),(472,'Shikarpur',72,'2006-02-15 04:45:25'),(473,'Shimoga',44,'2006-02-15 04:45:25'),(474,'Shimonoseki',50,'2006-02-15 04:45:25'),(475,'Shivapuri',44,'2006-02-15 04:45:25'),(476,'Shubra al-Khayma',29,'2006-02-15 04:45:25'),(477,'Siegen',38,'2006-02-15 04:45:25'),(478,'Siliguri (Shiliguri)',44,'2006-02-15 04:45:25'),(479,'Simferopol',100,'2006-02-15 04:45:25'),(480,'Sincelejo',24,'2006-02-15 04:45:25'),(481,'Sirjan',46,'2006-02-15 04:45:25'),(482,'Sivas',97,'2006-02-15 04:45:25'),(483,'Skikda',2,'2006-02-15 04:45:25'),(484,'Smolensk',80,'2006-02-15 04:45:25'),(485,'So Bernardo do Campo',15,'2006-02-15 04:45:25'),(486,'So Leopoldo',15,'2006-02-15 04:45:25'),(487,'Sogamoso',24,'2006-02-15 04:45:25'),(488,'Sokoto',69,'2006-02-15 04:45:25'),(489,'Songkhla',94,'2006-02-15 04:45:25'),(490,'Sorocaba',15,'2006-02-15 04:45:25'),(491,'Soshanguve',85,'2006-02-15 04:45:25'),(492,'Sousse',96,'2006-02-15 04:45:25'),(493,'South Hill',5,'2006-02-15 04:45:25'),(494,'Southampton',102,'2006-02-15 04:45:25'),(495,'Southend-on-Sea',102,'2006-02-15 04:45:25'),(496,'Southport',102,'2006-02-15 04:45:25'),(497,'Springs',85,'2006-02-15 04:45:25'),(498,'Stara Zagora',17,'2006-02-15 04:45:25'),(499,'Sterling Heights',103,'2006-02-15 04:45:25'),(500,'Stockport',102,'2006-02-15 04:45:25'),(501,'Sucre',14,'2006-02-15 04:45:25'),(502,'Suihua',23,'2006-02-15 04:45:25'),(503,'Sullana',74,'2006-02-15 04:45:25'),(504,'Sultanbeyli',97,'2006-02-15 04:45:25'),(505,'Sumqayit',10,'2006-02-15 04:45:25'),(506,'Sumy',100,'2006-02-15 04:45:25'),(507,'Sungai Petani',59,'2006-02-15 04:45:25'),(508,'Sunnyvale',103,'2006-02-15 04:45:25'),(509,'Surakarta',45,'2006-02-15 04:45:25'),(510,'Syktyvkar',80,'2006-02-15 04:45:25'),(511,'Syrakusa',49,'2006-02-15 04:45:25'),(512,'Szkesfehrvr',43,'2006-02-15 04:45:25'),(513,'Tabora',93,'2006-02-15 04:45:25'),(514,'Tabriz',46,'2006-02-15 04:45:25'),(515,'Tabuk',82,'2006-02-15 04:45:25'),(516,'Tafuna',3,'2006-02-15 04:45:25'),(517,'Taguig',75,'2006-02-15 04:45:25'),(518,'Taizz',107,'2006-02-15 04:45:25'),(519,'Talavera',75,'2006-02-15 04:45:25'),(520,'Tallahassee',103,'2006-02-15 04:45:25'),(521,'Tama',50,'2006-02-15 04:45:25'),(522,'Tambaram',44,'2006-02-15 04:45:25'),(523,'Tanauan',75,'2006-02-15 04:45:25'),(524,'Tandil',6,'2006-02-15 04:45:25'),(525,'Tangail',12,'2006-02-15 04:45:25'),(526,'Tanshui',92,'2006-02-15 04:45:25'),(527,'Tanza',75,'2006-02-15 04:45:25'),(528,'Tarlac',75,'2006-02-15 04:45:25'),(529,'Tarsus',97,'2006-02-15 04:45:25'),(530,'Tartu',30,'2006-02-15 04:45:25'),(531,'Teboksary',80,'2006-02-15 04:45:25'),(532,'Tegal',45,'2006-02-15 04:45:25'),(533,'Tel Aviv-Jaffa',48,'2006-02-15 04:45:25'),(534,'Tete',63,'2006-02-15 04:45:25'),(535,'Tianjin',23,'2006-02-15 04:45:25'),(536,'Tiefa',23,'2006-02-15 04:45:25'),(537,'Tieli',23,'2006-02-15 04:45:25'),(538,'Tokat',97,'2006-02-15 04:45:25'),(539,'Tonghae',86,'2006-02-15 04:45:25'),(540,'Tongliao',23,'2006-02-15 04:45:25'),(541,'Torren',60,'2006-02-15 04:45:25'),(542,'Touliu',92,'2006-02-15 04:45:25'),(543,'Toulon',34,'2006-02-15 04:45:25'),(544,'Toulouse',34,'2006-02-15 04:45:25'),(545,'Trshavn',32,'2006-02-15 04:45:25'),(546,'Tsaotun',92,'2006-02-15 04:45:25'),(547,'Tsuyama',50,'2006-02-15 04:45:25'),(548,'Tuguegarao',75,'2006-02-15 04:45:25'),(549,'Tychy',76,'2006-02-15 04:45:25'),(550,'Udaipur',44,'2006-02-15 04:45:25'),(551,'Udine',49,'2006-02-15 04:45:25'),(552,'Ueda',50,'2006-02-15 04:45:25'),(553,'Uijongbu',86,'2006-02-15 04:45:25'),(554,'Uluberia',44,'2006-02-15 04:45:25'),(555,'Urawa',50,'2006-02-15 04:45:25'),(556,'Uruapan',60,'2006-02-15 04:45:25'),(557,'Usak',97,'2006-02-15 04:45:25'),(558,'Usolje-Sibirskoje',80,'2006-02-15 04:45:25'),(559,'Uttarpara-Kotrung',44,'2006-02-15 04:45:25'),(560,'Vaduz',55,'2006-02-15 04:45:25'),(561,'Valencia',104,'2006-02-15 04:45:25'),(562,'Valle de la Pascua',104,'2006-02-15 04:45:25'),(563,'Valle de Santiago',60,'2006-02-15 04:45:25'),(564,'Valparai',44,'2006-02-15 04:45:25'),(565,'Vancouver',20,'2006-02-15 04:45:25'),(566,'Varanasi (Benares)',44,'2006-02-15 04:45:25'),(567,'Vicente Lpez',6,'2006-02-15 04:45:25'),(568,'Vijayawada',44,'2006-02-15 04:45:25'),(569,'Vila Velha',15,'2006-02-15 04:45:25'),(570,'Vilnius',56,'2006-02-15 04:45:25'),(571,'Vinh',105,'2006-02-15 04:45:25'),(572,'Vitria de Santo Anto',15,'2006-02-15 04:45:25'),(573,'Warren',103,'2006-02-15 04:45:25'),(574,'Weifang',23,'2006-02-15 04:45:25'),(575,'Witten',38,'2006-02-15 04:45:25'),(576,'Woodridge',8,'2006-02-15 04:45:25'),(577,'Wroclaw',76,'2006-02-15 04:45:25'),(578,'Xiangfan',23,'2006-02-15 04:45:25'),(579,'Xiangtan',23,'2006-02-15 04:45:25'),(580,'Xintai',23,'2006-02-15 04:45:25'),(581,'Xinxiang',23,'2006-02-15 04:45:25'),(582,'Yamuna Nagar',44,'2006-02-15 04:45:25'),(583,'Yangor',65,'2006-02-15 04:45:25'),(584,'Yantai',23,'2006-02-15 04:45:25'),(585,'Yaound',19,'2006-02-15 04:45:25'),(586,'Yerevan',7,'2006-02-15 04:45:25'),(587,'Yinchuan',23,'2006-02-15 04:45:25'),(588,'Yingkou',23,'2006-02-15 04:45:25'),(589,'York',102,'2006-02-15 04:45:25'),(590,'Yuncheng',23,'2006-02-15 04:45:25'),(591,'Yuzhou',23,'2006-02-15 04:45:25'),(592,'Zalantun',23,'2006-02-15 04:45:25'),(593,'Zanzibar',93,'2006-02-15 04:45:25'),(594,'Zaoyang',23,'2006-02-15 04:45:25'),(595,'Zapopan',60,'2006-02-15 04:45:25'),(596,'Zaria',69,'2006-02-15 04:45:25'),(597,'Zeleznogorsk',80,'2006-02-15 04:45:25'),(598,'Zhezqazghan',51,'2006-02-15 04:45:25'),(599,'Zhoushan',23,'2006-02-15 04:45:25'),(600,'Ziguinchor',83,'2006-02-15 04:45:25'); + +INSERT INTO country VALUES (1,'Afghanistan','2006-02-15 04:44:00'),(2,'Algeria','2006-02-15 04:44:00'),(3,'American Samoa','2006-02-15 04:44:00'),(4,'Angola','2006-02-15 04:44:00'),(5,'Anguilla','2006-02-15 04:44:00'),(6,'Argentina','2006-02-15 04:44:00'),(7,'Armenia','2006-02-15 04:44:00'),(8,'Australia','2006-02-15 04:44:00'),(9,'Austria','2006-02-15 04:44:00'),(10,'Azerbaijan','2006-02-15 04:44:00'),(11,'Bahrain','2006-02-15 04:44:00'),(12,'Bangladesh','2006-02-15 04:44:00'),(13,'Belarus','2006-02-15 04:44:00'),(14,'Bolivia','2006-02-15 04:44:00'),(15,'Brazil','2006-02-15 04:44:00'),(16,'Brunei','2006-02-15 04:44:00'),(17,'Bulgaria','2006-02-15 04:44:00'),(18,'Cambodia','2006-02-15 04:44:00'),(19,'Cameroon','2006-02-15 04:44:00'),(20,'Canada','2006-02-15 04:44:00'),(21,'Chad','2006-02-15 04:44:00'),(22,'Chile','2006-02-15 04:44:00'),(23,'China','2006-02-15 04:44:00'),(24,'Colombia','2006-02-15 04:44:00'),(25,'Congo, The Democratic Republic of the','2006-02-15 04:44:00'),(26,'Czech Republic','2006-02-15 04:44:00'),(27,'Dominican Republic','2006-02-15 04:44:00'),(28,'Ecuador','2006-02-15 04:44:00'),(29,'Egypt','2006-02-15 04:44:00'),(30,'Estonia','2006-02-15 04:44:00'),(31,'Ethiopia','2006-02-15 04:44:00'),(32,'Faroe Islands','2006-02-15 04:44:00'),(33,'Finland','2006-02-15 04:44:00'),(34,'France','2006-02-15 04:44:00'),(35,'French Guiana','2006-02-15 04:44:00'),(36,'French Polynesia','2006-02-15 04:44:00'),(37,'Gambia','2006-02-15 04:44:00'),(38,'Germany','2006-02-15 04:44:00'),(39,'Greece','2006-02-15 04:44:00'),(40,'Greenland','2006-02-15 04:44:00'),(41,'Holy See (Vatican City State)','2006-02-15 04:44:00'),(42,'Hong Kong','2006-02-15 04:44:00'),(43,'Hungary','2006-02-15 04:44:00'),(44,'India','2006-02-15 04:44:00'),(45,'Indonesia','2006-02-15 04:44:00'),(46,'Iran','2006-02-15 04:44:00'),(47,'Iraq','2006-02-15 04:44:00'),(48,'Israel','2006-02-15 04:44:00'),(49,'Italy','2006-02-15 04:44:00'),(50,'Japan','2006-02-15 04:44:00'),(51,'Kazakstan','2006-02-15 04:44:00'),(52,'Kenya','2006-02-15 04:44:00'),(53,'Kuwait','2006-02-15 04:44:00'),(54,'Latvia','2006-02-15 04:44:00'),(55,'Liechtenstein','2006-02-15 04:44:00'),(56,'Lithuania','2006-02-15 04:44:00'),(57,'Madagascar','2006-02-15 04:44:00'),(58,'Malawi','2006-02-15 04:44:00'),(59,'Malaysia','2006-02-15 04:44:00'),(60,'Mexico','2006-02-15 04:44:00'),(61,'Moldova','2006-02-15 04:44:00'),(62,'Morocco','2006-02-15 04:44:00'),(63,'Mozambique','2006-02-15 04:44:00'),(64,'Myanmar','2006-02-15 04:44:00'),(65,'Nauru','2006-02-15 04:44:00'),(66,'Nepal','2006-02-15 04:44:00'),(67,'Netherlands','2006-02-15 04:44:00'),(68,'New Zealand','2006-02-15 04:44:00'),(69,'Nigeria','2006-02-15 04:44:00'),(70,'North Korea','2006-02-15 04:44:00'),(71,'Oman','2006-02-15 04:44:00'),(72,'Pakistan','2006-02-15 04:44:00'),(73,'Paraguay','2006-02-15 04:44:00'),(74,'Peru','2006-02-15 04:44:00'),(75,'Philippines','2006-02-15 04:44:00'),(76,'Poland','2006-02-15 04:44:00'),(77,'Puerto Rico','2006-02-15 04:44:00'),(78,'Romania','2006-02-15 04:44:00'),(79,'Runion','2006-02-15 04:44:00'),(80,'Russian Federation','2006-02-15 04:44:00'),(81,'Saint Vincent and the Grenadines','2006-02-15 04:44:00'),(82,'Saudi Arabia','2006-02-15 04:44:00'),(83,'Senegal','2006-02-15 04:44:00'),(84,'Slovakia','2006-02-15 04:44:00'),(85,'South Africa','2006-02-15 04:44:00'),(86,'South Korea','2006-02-15 04:44:00'),(87,'Spain','2006-02-15 04:44:00'),(88,'Sri Lanka','2006-02-15 04:44:00'),(89,'Sudan','2006-02-15 04:44:00'),(90,'Sweden','2006-02-15 04:44:00'),(91,'Switzerland','2006-02-15 04:44:00'),(92,'Taiwan','2006-02-15 04:44:00'),(93,'Tanzania','2006-02-15 04:44:00'),(94,'Thailand','2006-02-15 04:44:00'),(95,'Tonga','2006-02-15 04:44:00'),(96,'Tunisia','2006-02-15 04:44:00'),(97,'Turkey','2006-02-15 04:44:00'),(98,'Turkmenistan','2006-02-15 04:44:00'),(99,'Tuvalu','2006-02-15 04:44:00'),(100,'Ukraine','2006-02-15 04:44:00'),(101,'United Arab Emirates','2006-02-15 04:44:00'),(102,'United Kingdom','2006-02-15 04:44:00'),(103,'United States','2006-02-15 04:44:00'),(104,'Venezuela','2006-02-15 04:44:00'),(105,'Vietnam','2006-02-15 04:44:00'),(106,'Virgin Islands, U.S.','2006-02-15 04:44:00'),(107,'Yemen','2006-02-15 04:44:00'),(108,'Yugoslavia','2006-02-15 04:44:00'),(109,'Zambia','2006-02-15 04:44:00'); + +INSERT INTO customer VALUES (1,1,'MARY','SMITH','MARY.SMITH@sakilacustomer.org',5,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(2,1,'PATRICIA','JOHNSON','PATRICIA.JOHNSON@sakilacustomer.org',6,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(3,1,'LINDA','WILLIAMS','LINDA.WILLIAMS@sakilacustomer.org',7,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(4,2,'BARBARA','JONES','BARBARA.JONES@sakilacustomer.org',8,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(5,1,'ELIZABETH','BROWN','ELIZABETH.BROWN@sakilacustomer.org',9,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(6,2,'JENNIFER','DAVIS','JENNIFER.DAVIS@sakilacustomer.org',10,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(7,1,'MARIA','MILLER','MARIA.MILLER@sakilacustomer.org',11,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(8,2,'SUSAN','WILSON','SUSAN.WILSON@sakilacustomer.org',12,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(9,2,'MARGARET','MOORE','MARGARET.MOORE@sakilacustomer.org',13,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(10,1,'DOROTHY','TAYLOR','DOROTHY.TAYLOR@sakilacustomer.org',14,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(11,2,'LISA','ANDERSON','LISA.ANDERSON@sakilacustomer.org',15,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(12,1,'NANCY','THOMAS','NANCY.THOMAS@sakilacustomer.org',16,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(13,2,'KAREN','JACKSON','KAREN.JACKSON@sakilacustomer.org',17,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(14,2,'BETTY','WHITE','BETTY.WHITE@sakilacustomer.org',18,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(15,1,'HELEN','HARRIS','HELEN.HARRIS@sakilacustomer.org',19,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(16,2,'SANDRA','MARTIN','SANDRA.MARTIN@sakilacustomer.org',20,0,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(17,1,'DONNA','THOMPSON','DONNA.THOMPSON@sakilacustomer.org',21,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(18,2,'CAROL','GARCIA','CAROL.GARCIA@sakilacustomer.org',22,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(19,1,'RUTH','MARTINEZ','RUTH.MARTINEZ@sakilacustomer.org',23,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(20,2,'SHARON','ROBINSON','SHARON.ROBINSON@sakilacustomer.org',24,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(21,1,'MICHELLE','CLARK','MICHELLE.CLARK@sakilacustomer.org',25,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(22,1,'LAURA','RODRIGUEZ','LAURA.RODRIGUEZ@sakilacustomer.org',26,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(23,2,'SARAH','LEWIS','SARAH.LEWIS@sakilacustomer.org',27,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(24,2,'KIMBERLY','LEE','KIMBERLY.LEE@sakilacustomer.org',28,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(25,1,'DEBORAH','WALKER','DEBORAH.WALKER@sakilacustomer.org',29,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(26,2,'JESSICA','HALL','JESSICA.HALL@sakilacustomer.org',30,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(27,2,'SHIRLEY','ALLEN','SHIRLEY.ALLEN@sakilacustomer.org',31,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(28,1,'CYNTHIA','YOUNG','CYNTHIA.YOUNG@sakilacustomer.org',32,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(29,2,'ANGELA','HERNANDEZ','ANGELA.HERNANDEZ@sakilacustomer.org',33,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(30,1,'MELISSA','KING','MELISSA.KING@sakilacustomer.org',34,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(31,2,'BRENDA','WRIGHT','BRENDA.WRIGHT@sakilacustomer.org',35,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(32,1,'AMY','LOPEZ','AMY.LOPEZ@sakilacustomer.org',36,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(33,2,'ANNA','HILL','ANNA.HILL@sakilacustomer.org',37,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(34,2,'REBECCA','SCOTT','REBECCA.SCOTT@sakilacustomer.org',38,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(35,2,'VIRGINIA','GREEN','VIRGINIA.GREEN@sakilacustomer.org',39,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(36,2,'KATHLEEN','ADAMS','KATHLEEN.ADAMS@sakilacustomer.org',40,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(37,1,'PAMELA','BAKER','PAMELA.BAKER@sakilacustomer.org',41,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(38,1,'MARTHA','GONZALEZ','MARTHA.GONZALEZ@sakilacustomer.org',42,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(39,1,'DEBRA','NELSON','DEBRA.NELSON@sakilacustomer.org',43,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(40,2,'AMANDA','CARTER','AMANDA.CARTER@sakilacustomer.org',44,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(41,1,'STEPHANIE','MITCHELL','STEPHANIE.MITCHELL@sakilacustomer.org',45,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(42,2,'CAROLYN','PEREZ','CAROLYN.PEREZ@sakilacustomer.org',46,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(43,2,'CHRISTINE','ROBERTS','CHRISTINE.ROBERTS@sakilacustomer.org',47,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(44,1,'MARIE','TURNER','MARIE.TURNER@sakilacustomer.org',48,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(45,1,'JANET','PHILLIPS','JANET.PHILLIPS@sakilacustomer.org',49,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(46,2,'CATHERINE','CAMPBELL','CATHERINE.CAMPBELL@sakilacustomer.org',50,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(47,1,'FRANCES','PARKER','FRANCES.PARKER@sakilacustomer.org',51,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(48,1,'ANN','EVANS','ANN.EVANS@sakilacustomer.org',52,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(49,2,'JOYCE','EDWARDS','JOYCE.EDWARDS@sakilacustomer.org',53,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(50,1,'DIANE','COLLINS','DIANE.COLLINS@sakilacustomer.org',54,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(51,1,'ALICE','STEWART','ALICE.STEWART@sakilacustomer.org',55,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(52,1,'JULIE','SANCHEZ','JULIE.SANCHEZ@sakilacustomer.org',56,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(53,1,'HEATHER','MORRIS','HEATHER.MORRIS@sakilacustomer.org',57,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(54,1,'TERESA','ROGERS','TERESA.ROGERS@sakilacustomer.org',58,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(55,2,'DORIS','REED','DORIS.REED@sakilacustomer.org',59,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(56,1,'GLORIA','COOK','GLORIA.COOK@sakilacustomer.org',60,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(57,2,'EVELYN','MORGAN','EVELYN.MORGAN@sakilacustomer.org',61,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(58,1,'JEAN','BELL','JEAN.BELL@sakilacustomer.org',62,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(59,1,'CHERYL','MURPHY','CHERYL.MURPHY@sakilacustomer.org',63,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(60,1,'MILDRED','BAILEY','MILDRED.BAILEY@sakilacustomer.org',64,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(61,2,'KATHERINE','RIVERA','KATHERINE.RIVERA@sakilacustomer.org',65,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(62,1,'JOAN','COOPER','JOAN.COOPER@sakilacustomer.org',66,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(63,1,'ASHLEY','RICHARDSON','ASHLEY.RICHARDSON@sakilacustomer.org',67,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(64,2,'JUDITH','COX','JUDITH.COX@sakilacustomer.org',68,0,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(65,2,'ROSE','HOWARD','ROSE.HOWARD@sakilacustomer.org',69,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(66,2,'JANICE','WARD','JANICE.WARD@sakilacustomer.org',70,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(67,1,'KELLY','TORRES','KELLY.TORRES@sakilacustomer.org',71,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(68,1,'NICOLE','PETERSON','NICOLE.PETERSON@sakilacustomer.org',72,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(69,2,'JUDY','GRAY','JUDY.GRAY@sakilacustomer.org',73,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(70,2,'CHRISTINA','RAMIREZ','CHRISTINA.RAMIREZ@sakilacustomer.org',74,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(71,1,'KATHY','JAMES','KATHY.JAMES@sakilacustomer.org',75,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(72,2,'THERESA','WATSON','THERESA.WATSON@sakilacustomer.org',76,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(73,2,'BEVERLY','BROOKS','BEVERLY.BROOKS@sakilacustomer.org',77,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(74,1,'DENISE','KELLY','DENISE.KELLY@sakilacustomer.org',78,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(75,2,'TAMMY','SANDERS','TAMMY.SANDERS@sakilacustomer.org',79,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(76,2,'IRENE','PRICE','IRENE.PRICE@sakilacustomer.org',80,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(77,2,'JANE','BENNETT','JANE.BENNETT@sakilacustomer.org',81,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(78,1,'LORI','WOOD','LORI.WOOD@sakilacustomer.org',82,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(79,1,'RACHEL','BARNES','RACHEL.BARNES@sakilacustomer.org',83,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(80,1,'MARILYN','ROSS','MARILYN.ROSS@sakilacustomer.org',84,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(81,1,'ANDREA','HENDERSON','ANDREA.HENDERSON@sakilacustomer.org',85,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(82,1,'KATHRYN','COLEMAN','KATHRYN.COLEMAN@sakilacustomer.org',86,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(83,1,'LOUISE','JENKINS','LOUISE.JENKINS@sakilacustomer.org',87,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(84,2,'SARA','PERRY','SARA.PERRY@sakilacustomer.org',88,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(85,2,'ANNE','POWELL','ANNE.POWELL@sakilacustomer.org',89,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(86,2,'JACQUELINE','LONG','JACQUELINE.LONG@sakilacustomer.org',90,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(87,1,'WANDA','PATTERSON','WANDA.PATTERSON@sakilacustomer.org',91,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(88,2,'BONNIE','HUGHES','BONNIE.HUGHES@sakilacustomer.org',92,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(89,1,'JULIA','FLORES','JULIA.FLORES@sakilacustomer.org',93,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(90,2,'RUBY','WASHINGTON','RUBY.WASHINGTON@sakilacustomer.org',94,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(91,2,'LOIS','BUTLER','LOIS.BUTLER@sakilacustomer.org',95,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(92,2,'TINA','SIMMONS','TINA.SIMMONS@sakilacustomer.org',96,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(93,1,'PHYLLIS','FOSTER','PHYLLIS.FOSTER@sakilacustomer.org',97,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(94,1,'NORMA','GONZALES','NORMA.GONZALES@sakilacustomer.org',98,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(95,2,'PAULA','BRYANT','PAULA.BRYANT@sakilacustomer.org',99,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(96,1,'DIANA','ALEXANDER','DIANA.ALEXANDER@sakilacustomer.org',100,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(97,2,'ANNIE','RUSSELL','ANNIE.RUSSELL@sakilacustomer.org',101,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(98,1,'LILLIAN','GRIFFIN','LILLIAN.GRIFFIN@sakilacustomer.org',102,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(99,2,'EMILY','DIAZ','EMILY.DIAZ@sakilacustomer.org',103,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(100,1,'ROBIN','HAYES','ROBIN.HAYES@sakilacustomer.org',104,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(101,1,'PEGGY','MYERS','PEGGY.MYERS@sakilacustomer.org',105,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(102,1,'CRYSTAL','FORD','CRYSTAL.FORD@sakilacustomer.org',106,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(103,1,'GLADYS','HAMILTON','GLADYS.HAMILTON@sakilacustomer.org',107,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(104,1,'RITA','GRAHAM','RITA.GRAHAM@sakilacustomer.org',108,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(105,1,'DAWN','SULLIVAN','DAWN.SULLIVAN@sakilacustomer.org',109,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(106,1,'CONNIE','WALLACE','CONNIE.WALLACE@sakilacustomer.org',110,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(107,1,'FLORENCE','WOODS','FLORENCE.WOODS@sakilacustomer.org',111,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(108,1,'TRACY','COLE','TRACY.COLE@sakilacustomer.org',112,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(109,2,'EDNA','WEST','EDNA.WEST@sakilacustomer.org',113,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(110,2,'TIFFANY','JORDAN','TIFFANY.JORDAN@sakilacustomer.org',114,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(111,1,'CARMEN','OWENS','CARMEN.OWENS@sakilacustomer.org',115,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(112,2,'ROSA','REYNOLDS','ROSA.REYNOLDS@sakilacustomer.org',116,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(113,2,'CINDY','FISHER','CINDY.FISHER@sakilacustomer.org',117,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(114,2,'GRACE','ELLIS','GRACE.ELLIS@sakilacustomer.org',118,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(115,1,'WENDY','HARRISON','WENDY.HARRISON@sakilacustomer.org',119,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(116,1,'VICTORIA','GIBSON','VICTORIA.GIBSON@sakilacustomer.org',120,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(117,1,'EDITH','MCDONALD','EDITH.MCDONALD@sakilacustomer.org',121,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(118,1,'KIM','CRUZ','KIM.CRUZ@sakilacustomer.org',122,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(119,1,'SHERRY','MARSHALL','SHERRY.MARSHALL@sakilacustomer.org',123,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(120,2,'SYLVIA','ORTIZ','SYLVIA.ORTIZ@sakilacustomer.org',124,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(121,1,'JOSEPHINE','GOMEZ','JOSEPHINE.GOMEZ@sakilacustomer.org',125,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(122,1,'THELMA','MURRAY','THELMA.MURRAY@sakilacustomer.org',126,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(123,2,'SHANNON','FREEMAN','SHANNON.FREEMAN@sakilacustomer.org',127,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(124,1,'SHEILA','WELLS','SHEILA.WELLS@sakilacustomer.org',128,0,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(125,1,'ETHEL','WEBB','ETHEL.WEBB@sakilacustomer.org',129,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(126,1,'ELLEN','SIMPSON','ELLEN.SIMPSON@sakilacustomer.org',130,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(127,2,'ELAINE','STEVENS','ELAINE.STEVENS@sakilacustomer.org',131,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(128,1,'MARJORIE','TUCKER','MARJORIE.TUCKER@sakilacustomer.org',132,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(129,1,'CARRIE','PORTER','CARRIE.PORTER@sakilacustomer.org',133,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(130,1,'CHARLOTTE','HUNTER','CHARLOTTE.HUNTER@sakilacustomer.org',134,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(131,2,'MONICA','HICKS','MONICA.HICKS@sakilacustomer.org',135,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(132,2,'ESTHER','CRAWFORD','ESTHER.CRAWFORD@sakilacustomer.org',136,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(133,1,'PAULINE','HENRY','PAULINE.HENRY@sakilacustomer.org',137,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(134,1,'EMMA','BOYD','EMMA.BOYD@sakilacustomer.org',138,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(135,2,'JUANITA','MASON','JUANITA.MASON@sakilacustomer.org',139,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(136,2,'ANITA','MORALES','ANITA.MORALES@sakilacustomer.org',140,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(137,2,'RHONDA','KENNEDY','RHONDA.KENNEDY@sakilacustomer.org',141,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(138,1,'HAZEL','WARREN','HAZEL.WARREN@sakilacustomer.org',142,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(139,1,'AMBER','DIXON','AMBER.DIXON@sakilacustomer.org',143,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(140,1,'EVA','RAMOS','EVA.RAMOS@sakilacustomer.org',144,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(141,1,'DEBBIE','REYES','DEBBIE.REYES@sakilacustomer.org',145,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(142,1,'APRIL','BURNS','APRIL.BURNS@sakilacustomer.org',146,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(143,1,'LESLIE','GORDON','LESLIE.GORDON@sakilacustomer.org',147,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(144,1,'CLARA','SHAW','CLARA.SHAW@sakilacustomer.org',148,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(145,1,'LUCILLE','HOLMES','LUCILLE.HOLMES@sakilacustomer.org',149,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(146,1,'JAMIE','RICE','JAMIE.RICE@sakilacustomer.org',150,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(147,2,'JOANNE','ROBERTSON','JOANNE.ROBERTSON@sakilacustomer.org',151,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(148,1,'ELEANOR','HUNT','ELEANOR.HUNT@sakilacustomer.org',152,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(149,1,'VALERIE','BLACK','VALERIE.BLACK@sakilacustomer.org',153,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(150,2,'DANIELLE','DANIELS','DANIELLE.DANIELS@sakilacustomer.org',154,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(151,2,'MEGAN','PALMER','MEGAN.PALMER@sakilacustomer.org',155,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(152,1,'ALICIA','MILLS','ALICIA.MILLS@sakilacustomer.org',156,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(153,2,'SUZANNE','NICHOLS','SUZANNE.NICHOLS@sakilacustomer.org',157,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(154,2,'MICHELE','GRANT','MICHELE.GRANT@sakilacustomer.org',158,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(155,1,'GAIL','KNIGHT','GAIL.KNIGHT@sakilacustomer.org',159,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(156,1,'BERTHA','FERGUSON','BERTHA.FERGUSON@sakilacustomer.org',160,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(157,2,'DARLENE','ROSE','DARLENE.ROSE@sakilacustomer.org',161,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(158,1,'VERONICA','STONE','VERONICA.STONE@sakilacustomer.org',162,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(159,1,'JILL','HAWKINS','JILL.HAWKINS@sakilacustomer.org',163,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(160,2,'ERIN','DUNN','ERIN.DUNN@sakilacustomer.org',164,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(161,1,'GERALDINE','PERKINS','GERALDINE.PERKINS@sakilacustomer.org',165,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(162,2,'LAUREN','HUDSON','LAUREN.HUDSON@sakilacustomer.org',166,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(163,1,'CATHY','SPENCER','CATHY.SPENCER@sakilacustomer.org',167,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(164,2,'JOANN','GARDNER','JOANN.GARDNER@sakilacustomer.org',168,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(165,2,'LORRAINE','STEPHENS','LORRAINE.STEPHENS@sakilacustomer.org',169,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(166,1,'LYNN','PAYNE','LYNN.PAYNE@sakilacustomer.org',170,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(167,2,'SALLY','PIERCE','SALLY.PIERCE@sakilacustomer.org',171,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(168,1,'REGINA','BERRY','REGINA.BERRY@sakilacustomer.org',172,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(169,2,'ERICA','MATTHEWS','ERICA.MATTHEWS@sakilacustomer.org',173,0,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(170,1,'BEATRICE','ARNOLD','BEATRICE.ARNOLD@sakilacustomer.org',174,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(171,2,'DOLORES','WAGNER','DOLORES.WAGNER@sakilacustomer.org',175,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(172,1,'BERNICE','WILLIS','BERNICE.WILLIS@sakilacustomer.org',176,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(173,1,'AUDREY','RAY','AUDREY.RAY@sakilacustomer.org',177,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(174,2,'YVONNE','WATKINS','YVONNE.WATKINS@sakilacustomer.org',178,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(175,1,'ANNETTE','OLSON','ANNETTE.OLSON@sakilacustomer.org',179,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(176,1,'JUNE','CARROLL','JUNE.CARROLL@sakilacustomer.org',180,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(177,2,'SAMANTHA','DUNCAN','SAMANTHA.DUNCAN@sakilacustomer.org',181,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(178,2,'MARION','SNYDER','MARION.SNYDER@sakilacustomer.org',182,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(179,1,'DANA','HART','DANA.HART@sakilacustomer.org',183,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(180,2,'STACY','CUNNINGHAM','STACY.CUNNINGHAM@sakilacustomer.org',184,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(181,2,'ANA','BRADLEY','ANA.BRADLEY@sakilacustomer.org',185,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(182,1,'RENEE','LANE','RENEE.LANE@sakilacustomer.org',186,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(183,2,'IDA','ANDREWS','IDA.ANDREWS@sakilacustomer.org',187,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(184,1,'VIVIAN','RUIZ','VIVIAN.RUIZ@sakilacustomer.org',188,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(185,1,'ROBERTA','HARPER','ROBERTA.HARPER@sakilacustomer.org',189,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(186,2,'HOLLY','FOX','HOLLY.FOX@sakilacustomer.org',190,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(187,2,'BRITTANY','RILEY','BRITTANY.RILEY@sakilacustomer.org',191,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(188,1,'MELANIE','ARMSTRONG','MELANIE.ARMSTRONG@sakilacustomer.org',192,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(189,1,'LORETTA','CARPENTER','LORETTA.CARPENTER@sakilacustomer.org',193,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(190,2,'YOLANDA','WEAVER','YOLANDA.WEAVER@sakilacustomer.org',194,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(191,1,'JEANETTE','GREENE','JEANETTE.GREENE@sakilacustomer.org',195,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(192,1,'LAURIE','LAWRENCE','LAURIE.LAWRENCE@sakilacustomer.org',196,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(193,2,'KATIE','ELLIOTT','KATIE.ELLIOTT@sakilacustomer.org',197,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(194,2,'KRISTEN','CHAVEZ','KRISTEN.CHAVEZ@sakilacustomer.org',198,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(195,1,'VANESSA','SIMS','VANESSA.SIMS@sakilacustomer.org',199,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(196,1,'ALMA','AUSTIN','ALMA.AUSTIN@sakilacustomer.org',200,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(197,2,'SUE','PETERS','SUE.PETERS@sakilacustomer.org',201,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(198,2,'ELSIE','KELLEY','ELSIE.KELLEY@sakilacustomer.org',202,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(199,2,'BETH','FRANKLIN','BETH.FRANKLIN@sakilacustomer.org',203,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(200,2,'JEANNE','LAWSON','JEANNE.LAWSON@sakilacustomer.org',204,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(201,1,'VICKI','FIELDS','VICKI.FIELDS@sakilacustomer.org',205,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(202,2,'CARLA','GUTIERREZ','CARLA.GUTIERREZ@sakilacustomer.org',206,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(203,1,'TARA','RYAN','TARA.RYAN@sakilacustomer.org',207,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(204,1,'ROSEMARY','SCHMIDT','ROSEMARY.SCHMIDT@sakilacustomer.org',208,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(205,2,'EILEEN','CARR','EILEEN.CARR@sakilacustomer.org',209,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(206,1,'TERRI','VASQUEZ','TERRI.VASQUEZ@sakilacustomer.org',210,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(207,1,'GERTRUDE','CASTILLO','GERTRUDE.CASTILLO@sakilacustomer.org',211,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(208,1,'LUCY','WHEELER','LUCY.WHEELER@sakilacustomer.org',212,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(209,2,'TONYA','CHAPMAN','TONYA.CHAPMAN@sakilacustomer.org',213,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(210,2,'ELLA','OLIVER','ELLA.OLIVER@sakilacustomer.org',214,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(211,1,'STACEY','MONTGOMERY','STACEY.MONTGOMERY@sakilacustomer.org',215,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(212,2,'WILMA','RICHARDS','WILMA.RICHARDS@sakilacustomer.org',216,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(213,1,'GINA','WILLIAMSON','GINA.WILLIAMSON@sakilacustomer.org',217,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(214,1,'KRISTIN','JOHNSTON','KRISTIN.JOHNSTON@sakilacustomer.org',218,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(215,2,'JESSIE','BANKS','JESSIE.BANKS@sakilacustomer.org',219,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(216,1,'NATALIE','MEYER','NATALIE.MEYER@sakilacustomer.org',220,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(217,2,'AGNES','BISHOP','AGNES.BISHOP@sakilacustomer.org',221,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(218,1,'VERA','MCCOY','VERA.MCCOY@sakilacustomer.org',222,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(219,2,'WILLIE','HOWELL','WILLIE.HOWELL@sakilacustomer.org',223,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(220,2,'CHARLENE','ALVAREZ','CHARLENE.ALVAREZ@sakilacustomer.org',224,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(221,1,'BESSIE','MORRISON','BESSIE.MORRISON@sakilacustomer.org',225,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(222,2,'DELORES','HANSEN','DELORES.HANSEN@sakilacustomer.org',226,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(223,1,'MELINDA','FERNANDEZ','MELINDA.FERNANDEZ@sakilacustomer.org',227,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(224,2,'PEARL','GARZA','PEARL.GARZA@sakilacustomer.org',228,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(225,1,'ARLENE','HARVEY','ARLENE.HARVEY@sakilacustomer.org',229,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(226,2,'MAUREEN','LITTLE','MAUREEN.LITTLE@sakilacustomer.org',230,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(227,1,'COLLEEN','BURTON','COLLEEN.BURTON@sakilacustomer.org',231,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(228,2,'ALLISON','STANLEY','ALLISON.STANLEY@sakilacustomer.org',232,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(229,1,'TAMARA','NGUYEN','TAMARA.NGUYEN@sakilacustomer.org',233,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(230,2,'JOY','GEORGE','JOY.GEORGE@sakilacustomer.org',234,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(231,1,'GEORGIA','JACOBS','GEORGIA.JACOBS@sakilacustomer.org',235,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(232,2,'CONSTANCE','REID','CONSTANCE.REID@sakilacustomer.org',236,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(233,2,'LILLIE','KIM','LILLIE.KIM@sakilacustomer.org',237,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(234,1,'CLAUDIA','FULLER','CLAUDIA.FULLER@sakilacustomer.org',238,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(235,1,'JACKIE','LYNCH','JACKIE.LYNCH@sakilacustomer.org',239,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(236,1,'MARCIA','DEAN','MARCIA.DEAN@sakilacustomer.org',240,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(237,1,'TANYA','GILBERT','TANYA.GILBERT@sakilacustomer.org',241,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(238,1,'NELLIE','GARRETT','NELLIE.GARRETT@sakilacustomer.org',242,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(239,2,'MINNIE','ROMERO','MINNIE.ROMERO@sakilacustomer.org',243,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(240,1,'MARLENE','WELCH','MARLENE.WELCH@sakilacustomer.org',244,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(241,2,'HEIDI','LARSON','HEIDI.LARSON@sakilacustomer.org',245,0,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(242,1,'GLENDA','FRAZIER','GLENDA.FRAZIER@sakilacustomer.org',246,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(243,1,'LYDIA','BURKE','LYDIA.BURKE@sakilacustomer.org',247,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(244,2,'VIOLA','HANSON','VIOLA.HANSON@sakilacustomer.org',248,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(245,1,'COURTNEY','DAY','COURTNEY.DAY@sakilacustomer.org',249,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(246,1,'MARIAN','MENDOZA','MARIAN.MENDOZA@sakilacustomer.org',250,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(247,1,'STELLA','MORENO','STELLA.MORENO@sakilacustomer.org',251,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(248,1,'CAROLINE','BOWMAN','CAROLINE.BOWMAN@sakilacustomer.org',252,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(249,2,'DORA','MEDINA','DORA.MEDINA@sakilacustomer.org',253,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(250,2,'JO','FOWLER','JO.FOWLER@sakilacustomer.org',254,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(251,2,'VICKIE','BREWER','VICKIE.BREWER@sakilacustomer.org',255,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(252,2,'MATTIE','HOFFMAN','MATTIE.HOFFMAN@sakilacustomer.org',256,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(253,1,'TERRY','CARLSON','TERRY.CARLSON@sakilacustomer.org',258,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(254,2,'MAXINE','SILVA','MAXINE.SILVA@sakilacustomer.org',259,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(255,2,'IRMA','PEARSON','IRMA.PEARSON@sakilacustomer.org',260,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(256,2,'MABEL','HOLLAND','MABEL.HOLLAND@sakilacustomer.org',261,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(257,2,'MARSHA','DOUGLAS','MARSHA.DOUGLAS@sakilacustomer.org',262,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(258,1,'MYRTLE','FLEMING','MYRTLE.FLEMING@sakilacustomer.org',263,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(259,2,'LENA','JENSEN','LENA.JENSEN@sakilacustomer.org',264,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(260,1,'CHRISTY','VARGAS','CHRISTY.VARGAS@sakilacustomer.org',265,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(261,1,'DEANNA','BYRD','DEANNA.BYRD@sakilacustomer.org',266,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(262,2,'PATSY','DAVIDSON','PATSY.DAVIDSON@sakilacustomer.org',267,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(263,1,'HILDA','HOPKINS','HILDA.HOPKINS@sakilacustomer.org',268,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(264,1,'GWENDOLYN','MAY','GWENDOLYN.MAY@sakilacustomer.org',269,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(265,2,'JENNIE','TERRY','JENNIE.TERRY@sakilacustomer.org',270,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(266,2,'NORA','HERRERA','NORA.HERRERA@sakilacustomer.org',271,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(267,1,'MARGIE','WADE','MARGIE.WADE@sakilacustomer.org',272,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(268,1,'NINA','SOTO','NINA.SOTO@sakilacustomer.org',273,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(269,1,'CASSANDRA','WALTERS','CASSANDRA.WALTERS@sakilacustomer.org',274,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(270,1,'LEAH','CURTIS','LEAH.CURTIS@sakilacustomer.org',275,1,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(271,1,'PENNY','NEAL','PENNY.NEAL@sakilacustomer.org',276,0,'2006-02-14 22:04:36','2006-02-15 04:57:20'),(272,1,'KAY','CALDWELL','KAY.CALDWELL@sakilacustomer.org',277,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(273,2,'PRISCILLA','LOWE','PRISCILLA.LOWE@sakilacustomer.org',278,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(274,1,'NAOMI','JENNINGS','NAOMI.JENNINGS@sakilacustomer.org',279,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(275,2,'CAROLE','BARNETT','CAROLE.BARNETT@sakilacustomer.org',280,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(276,1,'BRANDY','GRAVES','BRANDY.GRAVES@sakilacustomer.org',281,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(277,2,'OLGA','JIMENEZ','OLGA.JIMENEZ@sakilacustomer.org',282,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(278,2,'BILLIE','HORTON','BILLIE.HORTON@sakilacustomer.org',283,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(279,2,'DIANNE','SHELTON','DIANNE.SHELTON@sakilacustomer.org',284,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(280,2,'TRACEY','BARRETT','TRACEY.BARRETT@sakilacustomer.org',285,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(281,2,'LEONA','OBRIEN','LEONA.OBRIEN@sakilacustomer.org',286,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(282,2,'JENNY','CASTRO','JENNY.CASTRO@sakilacustomer.org',287,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(283,1,'FELICIA','SUTTON','FELICIA.SUTTON@sakilacustomer.org',288,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(284,1,'SONIA','GREGORY','SONIA.GREGORY@sakilacustomer.org',289,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(285,1,'MIRIAM','MCKINNEY','MIRIAM.MCKINNEY@sakilacustomer.org',290,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(286,1,'VELMA','LUCAS','VELMA.LUCAS@sakilacustomer.org',291,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(287,2,'BECKY','MILES','BECKY.MILES@sakilacustomer.org',292,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(288,1,'BOBBIE','CRAIG','BOBBIE.CRAIG@sakilacustomer.org',293,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(289,1,'VIOLET','RODRIQUEZ','VIOLET.RODRIQUEZ@sakilacustomer.org',294,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(290,1,'KRISTINA','CHAMBERS','KRISTINA.CHAMBERS@sakilacustomer.org',295,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(291,1,'TONI','HOLT','TONI.HOLT@sakilacustomer.org',296,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(292,2,'MISTY','LAMBERT','MISTY.LAMBERT@sakilacustomer.org',297,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(293,2,'MAE','FLETCHER','MAE.FLETCHER@sakilacustomer.org',298,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(294,2,'SHELLY','WATTS','SHELLY.WATTS@sakilacustomer.org',299,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(295,1,'DAISY','BATES','DAISY.BATES@sakilacustomer.org',300,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(296,2,'RAMONA','HALE','RAMONA.HALE@sakilacustomer.org',301,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(297,1,'SHERRI','RHODES','SHERRI.RHODES@sakilacustomer.org',302,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(298,1,'ERIKA','PENA','ERIKA.PENA@sakilacustomer.org',303,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(299,2,'JAMES','GANNON','JAMES.GANNON@sakilacustomer.org',304,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(300,1,'JOHN','FARNSWORTH','JOHN.FARNSWORTH@sakilacustomer.org',305,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(301,2,'ROBERT','BAUGHMAN','ROBERT.BAUGHMAN@sakilacustomer.org',306,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(302,1,'MICHAEL','SILVERMAN','MICHAEL.SILVERMAN@sakilacustomer.org',307,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(303,2,'WILLIAM','SATTERFIELD','WILLIAM.SATTERFIELD@sakilacustomer.org',308,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(304,2,'DAVID','ROYAL','DAVID.ROYAL@sakilacustomer.org',309,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(305,1,'RICHARD','MCCRARY','RICHARD.MCCRARY@sakilacustomer.org',310,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(306,1,'CHARLES','KOWALSKI','CHARLES.KOWALSKI@sakilacustomer.org',311,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(307,2,'JOSEPH','JOY','JOSEPH.JOY@sakilacustomer.org',312,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(308,1,'THOMAS','GRIGSBY','THOMAS.GRIGSBY@sakilacustomer.org',313,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(309,1,'CHRISTOPHER','GRECO','CHRISTOPHER.GRECO@sakilacustomer.org',314,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(310,2,'DANIEL','CABRAL','DANIEL.CABRAL@sakilacustomer.org',315,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(311,2,'PAUL','TROUT','PAUL.TROUT@sakilacustomer.org',316,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(312,2,'MARK','RINEHART','MARK.RINEHART@sakilacustomer.org',317,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(313,2,'DONALD','MAHON','DONALD.MAHON@sakilacustomer.org',318,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(314,1,'GEORGE','LINTON','GEORGE.LINTON@sakilacustomer.org',319,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(315,2,'KENNETH','GOODEN','KENNETH.GOODEN@sakilacustomer.org',320,0,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(316,1,'STEVEN','CURLEY','STEVEN.CURLEY@sakilacustomer.org',321,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(317,2,'EDWARD','BAUGH','EDWARD.BAUGH@sakilacustomer.org',322,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(318,1,'BRIAN','WYMAN','BRIAN.WYMAN@sakilacustomer.org',323,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(319,2,'RONALD','WEINER','RONALD.WEINER@sakilacustomer.org',324,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(320,2,'ANTHONY','SCHWAB','ANTHONY.SCHWAB@sakilacustomer.org',325,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(321,1,'KEVIN','SCHULER','KEVIN.SCHULER@sakilacustomer.org',326,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(322,1,'JASON','MORRISSEY','JASON.MORRISSEY@sakilacustomer.org',327,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(323,2,'MATTHEW','MAHAN','MATTHEW.MAHAN@sakilacustomer.org',328,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(324,2,'GARY','COY','GARY.COY@sakilacustomer.org',329,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(325,1,'TIMOTHY','BUNN','TIMOTHY.BUNN@sakilacustomer.org',330,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(326,1,'JOSE','ANDREW','JOSE.ANDREW@sakilacustomer.org',331,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(327,2,'LARRY','THRASHER','LARRY.THRASHER@sakilacustomer.org',332,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(328,2,'JEFFREY','SPEAR','JEFFREY.SPEAR@sakilacustomer.org',333,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(329,2,'FRANK','WAGGONER','FRANK.WAGGONER@sakilacustomer.org',334,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(330,1,'SCOTT','SHELLEY','SCOTT.SHELLEY@sakilacustomer.org',335,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(331,1,'ERIC','ROBERT','ERIC.ROBERT@sakilacustomer.org',336,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(332,1,'STEPHEN','QUALLS','STEPHEN.QUALLS@sakilacustomer.org',337,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(333,2,'ANDREW','PURDY','ANDREW.PURDY@sakilacustomer.org',338,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(334,2,'RAYMOND','MCWHORTER','RAYMOND.MCWHORTER@sakilacustomer.org',339,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(335,1,'GREGORY','MAULDIN','GREGORY.MAULDIN@sakilacustomer.org',340,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(336,1,'JOSHUA','MARK','JOSHUA.MARK@sakilacustomer.org',341,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(337,1,'JERRY','JORDON','JERRY.JORDON@sakilacustomer.org',342,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(338,1,'DENNIS','GILMAN','DENNIS.GILMAN@sakilacustomer.org',343,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(339,2,'WALTER','PERRYMAN','WALTER.PERRYMAN@sakilacustomer.org',344,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(340,1,'PATRICK','NEWSOM','PATRICK.NEWSOM@sakilacustomer.org',345,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(341,1,'PETER','MENARD','PETER.MENARD@sakilacustomer.org',346,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(342,1,'HAROLD','MARTINO','HAROLD.MARTINO@sakilacustomer.org',347,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(343,1,'DOUGLAS','GRAF','DOUGLAS.GRAF@sakilacustomer.org',348,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(344,1,'HENRY','BILLINGSLEY','HENRY.BILLINGSLEY@sakilacustomer.org',349,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(345,1,'CARL','ARTIS','CARL.ARTIS@sakilacustomer.org',350,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(346,1,'ARTHUR','SIMPKINS','ARTHUR.SIMPKINS@sakilacustomer.org',351,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(347,2,'RYAN','SALISBURY','RYAN.SALISBURY@sakilacustomer.org',352,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(348,2,'ROGER','QUINTANILLA','ROGER.QUINTANILLA@sakilacustomer.org',353,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(349,2,'JOE','GILLILAND','JOE.GILLILAND@sakilacustomer.org',354,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(350,1,'JUAN','FRALEY','JUAN.FRALEY@sakilacustomer.org',355,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(351,1,'JACK','FOUST','JACK.FOUST@sakilacustomer.org',356,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(352,1,'ALBERT','CROUSE','ALBERT.CROUSE@sakilacustomer.org',357,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(353,1,'JONATHAN','SCARBOROUGH','JONATHAN.SCARBOROUGH@sakilacustomer.org',358,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(354,2,'JUSTIN','NGO','JUSTIN.NGO@sakilacustomer.org',359,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(355,2,'TERRY','GRISSOM','TERRY.GRISSOM@sakilacustomer.org',360,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(356,2,'GERALD','FULTZ','GERALD.FULTZ@sakilacustomer.org',361,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(357,1,'KEITH','RICO','KEITH.RICO@sakilacustomer.org',362,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(358,2,'SAMUEL','MARLOW','SAMUEL.MARLOW@sakilacustomer.org',363,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(359,2,'WILLIE','MARKHAM','WILLIE.MARKHAM@sakilacustomer.org',364,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(360,2,'RALPH','MADRIGAL','RALPH.MADRIGAL@sakilacustomer.org',365,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(361,2,'LAWRENCE','LAWTON','LAWRENCE.LAWTON@sakilacustomer.org',366,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(362,1,'NICHOLAS','BARFIELD','NICHOLAS.BARFIELD@sakilacustomer.org',367,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(363,2,'ROY','WHITING','ROY.WHITING@sakilacustomer.org',368,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(364,1,'BENJAMIN','VARNEY','BENJAMIN.VARNEY@sakilacustomer.org',369,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(365,2,'BRUCE','SCHWARZ','BRUCE.SCHWARZ@sakilacustomer.org',370,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(366,1,'BRANDON','HUEY','BRANDON.HUEY@sakilacustomer.org',371,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(367,1,'ADAM','GOOCH','ADAM.GOOCH@sakilacustomer.org',372,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(368,1,'HARRY','ARCE','HARRY.ARCE@sakilacustomer.org',373,0,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(369,2,'FRED','WHEAT','FRED.WHEAT@sakilacustomer.org',374,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(370,2,'WAYNE','TRUONG','WAYNE.TRUONG@sakilacustomer.org',375,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(371,1,'BILLY','POULIN','BILLY.POULIN@sakilacustomer.org',376,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(372,2,'STEVE','MACKENZIE','STEVE.MACKENZIE@sakilacustomer.org',377,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(373,1,'LOUIS','LEONE','LOUIS.LEONE@sakilacustomer.org',378,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(374,2,'JEREMY','HURTADO','JEREMY.HURTADO@sakilacustomer.org',379,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(375,2,'AARON','SELBY','AARON.SELBY@sakilacustomer.org',380,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(376,1,'RANDY','GAITHER','RANDY.GAITHER@sakilacustomer.org',381,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(377,1,'HOWARD','FORTNER','HOWARD.FORTNER@sakilacustomer.org',382,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(378,1,'EUGENE','CULPEPPER','EUGENE.CULPEPPER@sakilacustomer.org',383,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(379,1,'CARLOS','COUGHLIN','CARLOS.COUGHLIN@sakilacustomer.org',384,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(380,1,'RUSSELL','BRINSON','RUSSELL.BRINSON@sakilacustomer.org',385,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(381,2,'BOBBY','BOUDREAU','BOBBY.BOUDREAU@sakilacustomer.org',386,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(382,2,'VICTOR','BARKLEY','VICTOR.BARKLEY@sakilacustomer.org',387,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(383,1,'MARTIN','BALES','MARTIN.BALES@sakilacustomer.org',388,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(384,2,'ERNEST','STEPP','ERNEST.STEPP@sakilacustomer.org',389,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(385,1,'PHILLIP','HOLM','PHILLIP.HOLM@sakilacustomer.org',390,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(386,1,'TODD','TAN','TODD.TAN@sakilacustomer.org',391,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(387,2,'JESSE','SCHILLING','JESSE.SCHILLING@sakilacustomer.org',392,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(388,2,'CRAIG','MORRELL','CRAIG.MORRELL@sakilacustomer.org',393,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(389,1,'ALAN','KAHN','ALAN.KAHN@sakilacustomer.org',394,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(390,1,'SHAWN','HEATON','SHAWN.HEATON@sakilacustomer.org',395,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(391,1,'CLARENCE','GAMEZ','CLARENCE.GAMEZ@sakilacustomer.org',396,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(392,2,'SEAN','DOUGLASS','SEAN.DOUGLASS@sakilacustomer.org',397,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(393,1,'PHILIP','CAUSEY','PHILIP.CAUSEY@sakilacustomer.org',398,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(394,2,'CHRIS','BROTHERS','CHRIS.BROTHERS@sakilacustomer.org',399,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(395,2,'JOHNNY','TURPIN','JOHNNY.TURPIN@sakilacustomer.org',400,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(396,1,'EARL','SHANKS','EARL.SHANKS@sakilacustomer.org',401,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(397,1,'JIMMY','SCHRADER','JIMMY.SCHRADER@sakilacustomer.org',402,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(398,1,'ANTONIO','MEEK','ANTONIO.MEEK@sakilacustomer.org',403,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(399,1,'DANNY','ISOM','DANNY.ISOM@sakilacustomer.org',404,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(400,2,'BRYAN','HARDISON','BRYAN.HARDISON@sakilacustomer.org',405,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(401,2,'TONY','CARRANZA','TONY.CARRANZA@sakilacustomer.org',406,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(402,1,'LUIS','YANEZ','LUIS.YANEZ@sakilacustomer.org',407,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(403,1,'MIKE','WAY','MIKE.WAY@sakilacustomer.org',408,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(404,2,'STANLEY','SCROGGINS','STANLEY.SCROGGINS@sakilacustomer.org',409,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(405,1,'LEONARD','SCHOFIELD','LEONARD.SCHOFIELD@sakilacustomer.org',410,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(406,1,'NATHAN','RUNYON','NATHAN.RUNYON@sakilacustomer.org',411,0,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(407,1,'DALE','RATCLIFF','DALE.RATCLIFF@sakilacustomer.org',412,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(408,1,'MANUEL','MURRELL','MANUEL.MURRELL@sakilacustomer.org',413,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(409,2,'RODNEY','MOELLER','RODNEY.MOELLER@sakilacustomer.org',414,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(410,2,'CURTIS','IRBY','CURTIS.IRBY@sakilacustomer.org',415,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(411,1,'NORMAN','CURRIER','NORMAN.CURRIER@sakilacustomer.org',416,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(412,2,'ALLEN','BUTTERFIELD','ALLEN.BUTTERFIELD@sakilacustomer.org',417,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(413,2,'MARVIN','YEE','MARVIN.YEE@sakilacustomer.org',418,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(414,1,'VINCENT','RALSTON','VINCENT.RALSTON@sakilacustomer.org',419,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(415,1,'GLENN','PULLEN','GLENN.PULLEN@sakilacustomer.org',420,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(416,2,'JEFFERY','PINSON','JEFFERY.PINSON@sakilacustomer.org',421,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(417,1,'TRAVIS','ESTEP','TRAVIS.ESTEP@sakilacustomer.org',422,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(418,2,'JEFF','EAST','JEFF.EAST@sakilacustomer.org',423,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(419,1,'CHAD','CARBONE','CHAD.CARBONE@sakilacustomer.org',424,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(420,1,'JACOB','LANCE','JACOB.LANCE@sakilacustomer.org',425,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(421,1,'LEE','HAWKS','LEE.HAWKS@sakilacustomer.org',426,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(422,1,'MELVIN','ELLINGTON','MELVIN.ELLINGTON@sakilacustomer.org',427,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(423,2,'ALFRED','CASILLAS','ALFRED.CASILLAS@sakilacustomer.org',428,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(424,2,'KYLE','SPURLOCK','KYLE.SPURLOCK@sakilacustomer.org',429,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(425,2,'FRANCIS','SIKES','FRANCIS.SIKES@sakilacustomer.org',430,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(426,1,'BRADLEY','MOTLEY','BRADLEY.MOTLEY@sakilacustomer.org',431,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(427,2,'JESUS','MCCARTNEY','JESUS.MCCARTNEY@sakilacustomer.org',432,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(428,2,'HERBERT','KRUGER','HERBERT.KRUGER@sakilacustomer.org',433,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(429,2,'FREDERICK','ISBELL','FREDERICK.ISBELL@sakilacustomer.org',434,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(430,1,'RAY','HOULE','RAY.HOULE@sakilacustomer.org',435,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(431,2,'JOEL','FRANCISCO','JOEL.FRANCISCO@sakilacustomer.org',436,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(432,1,'EDWIN','BURK','EDWIN.BURK@sakilacustomer.org',437,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(433,1,'DON','BONE','DON.BONE@sakilacustomer.org',438,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(434,1,'EDDIE','TOMLIN','EDDIE.TOMLIN@sakilacustomer.org',439,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(435,2,'RICKY','SHELBY','RICKY.SHELBY@sakilacustomer.org',440,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(436,1,'TROY','QUIGLEY','TROY.QUIGLEY@sakilacustomer.org',441,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(437,2,'RANDALL','NEUMANN','RANDALL.NEUMANN@sakilacustomer.org',442,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(438,1,'BARRY','LOVELACE','BARRY.LOVELACE@sakilacustomer.org',443,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(439,2,'ALEXANDER','FENNELL','ALEXANDER.FENNELL@sakilacustomer.org',444,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(440,1,'BERNARD','COLBY','BERNARD.COLBY@sakilacustomer.org',445,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(441,1,'MARIO','CHEATHAM','MARIO.CHEATHAM@sakilacustomer.org',446,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(442,1,'LEROY','BUSTAMANTE','LEROY.BUSTAMANTE@sakilacustomer.org',447,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(443,2,'FRANCISCO','SKIDMORE','FRANCISCO.SKIDMORE@sakilacustomer.org',448,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(444,2,'MARCUS','HIDALGO','MARCUS.HIDALGO@sakilacustomer.org',449,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(445,1,'MICHEAL','FORMAN','MICHEAL.FORMAN@sakilacustomer.org',450,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(446,2,'THEODORE','CULP','THEODORE.CULP@sakilacustomer.org',451,0,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(447,1,'CLIFFORD','BOWENS','CLIFFORD.BOWENS@sakilacustomer.org',452,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(448,1,'MIGUEL','BETANCOURT','MIGUEL.BETANCOURT@sakilacustomer.org',453,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(449,2,'OSCAR','AQUINO','OSCAR.AQUINO@sakilacustomer.org',454,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(450,1,'JAY','ROBB','JAY.ROBB@sakilacustomer.org',455,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(451,1,'JIM','REA','JIM.REA@sakilacustomer.org',456,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(452,1,'TOM','MILNER','TOM.MILNER@sakilacustomer.org',457,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(453,1,'CALVIN','MARTEL','CALVIN.MARTEL@sakilacustomer.org',458,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(454,2,'ALEX','GRESHAM','ALEX.GRESHAM@sakilacustomer.org',459,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(455,2,'JON','WILES','JON.WILES@sakilacustomer.org',460,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(456,2,'RONNIE','RICKETTS','RONNIE.RICKETTS@sakilacustomer.org',461,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(457,2,'BILL','GAVIN','BILL.GAVIN@sakilacustomer.org',462,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(458,1,'LLOYD','DOWD','LLOYD.DOWD@sakilacustomer.org',463,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(459,1,'TOMMY','COLLAZO','TOMMY.COLLAZO@sakilacustomer.org',464,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(460,1,'LEON','BOSTIC','LEON.BOSTIC@sakilacustomer.org',465,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(461,1,'DEREK','BLAKELY','DEREK.BLAKELY@sakilacustomer.org',466,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(462,2,'WARREN','SHERROD','WARREN.SHERROD@sakilacustomer.org',467,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(463,2,'DARRELL','POWER','DARRELL.POWER@sakilacustomer.org',468,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(464,1,'JEROME','KENYON','JEROME.KENYON@sakilacustomer.org',469,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(465,1,'FLOYD','GANDY','FLOYD.GANDY@sakilacustomer.org',470,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(466,1,'LEO','EBERT','LEO.EBERT@sakilacustomer.org',471,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(467,2,'ALVIN','DELOACH','ALVIN.DELOACH@sakilacustomer.org',472,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(468,1,'TIM','CARY','TIM.CARY@sakilacustomer.org',473,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(469,2,'WESLEY','BULL','WESLEY.BULL@sakilacustomer.org',474,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(470,1,'GORDON','ALLARD','GORDON.ALLARD@sakilacustomer.org',475,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(471,1,'DEAN','SAUER','DEAN.SAUER@sakilacustomer.org',476,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(472,1,'GREG','ROBINS','GREG.ROBINS@sakilacustomer.org',477,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(473,2,'JORGE','OLIVARES','JORGE.OLIVARES@sakilacustomer.org',478,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(474,2,'DUSTIN','GILLETTE','DUSTIN.GILLETTE@sakilacustomer.org',479,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(475,2,'PEDRO','CHESTNUT','PEDRO.CHESTNUT@sakilacustomer.org',480,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(476,1,'DERRICK','BOURQUE','DERRICK.BOURQUE@sakilacustomer.org',481,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(477,1,'DAN','PAINE','DAN.PAINE@sakilacustomer.org',482,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(478,1,'LEWIS','LYMAN','LEWIS.LYMAN@sakilacustomer.org',483,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(479,1,'ZACHARY','HITE','ZACHARY.HITE@sakilacustomer.org',484,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(480,1,'COREY','HAUSER','COREY.HAUSER@sakilacustomer.org',485,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(481,1,'HERMAN','DEVORE','HERMAN.DEVORE@sakilacustomer.org',486,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(482,1,'MAURICE','CRAWLEY','MAURICE.CRAWLEY@sakilacustomer.org',487,0,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(483,2,'VERNON','CHAPA','VERNON.CHAPA@sakilacustomer.org',488,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(484,1,'ROBERTO','VU','ROBERTO.VU@sakilacustomer.org',489,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(485,1,'CLYDE','TOBIAS','CLYDE.TOBIAS@sakilacustomer.org',490,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(486,1,'GLEN','TALBERT','GLEN.TALBERT@sakilacustomer.org',491,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(487,2,'HECTOR','POINDEXTER','HECTOR.POINDEXTER@sakilacustomer.org',492,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(488,2,'SHANE','MILLARD','SHANE.MILLARD@sakilacustomer.org',493,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(489,1,'RICARDO','MEADOR','RICARDO.MEADOR@sakilacustomer.org',494,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(490,1,'SAM','MCDUFFIE','SAM.MCDUFFIE@sakilacustomer.org',495,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(491,2,'RICK','MATTOX','RICK.MATTOX@sakilacustomer.org',496,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(492,2,'LESTER','KRAUS','LESTER.KRAUS@sakilacustomer.org',497,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(493,1,'BRENT','HARKINS','BRENT.HARKINS@sakilacustomer.org',498,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(494,2,'RAMON','CHOATE','RAMON.CHOATE@sakilacustomer.org',499,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(495,2,'CHARLIE','BESS','CHARLIE.BESS@sakilacustomer.org',500,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(496,2,'TYLER','WREN','TYLER.WREN@sakilacustomer.org',501,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(497,2,'GILBERT','SLEDGE','GILBERT.SLEDGE@sakilacustomer.org',502,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(498,1,'GENE','SANBORN','GENE.SANBORN@sakilacustomer.org',503,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(499,2,'MARC','OUTLAW','MARC.OUTLAW@sakilacustomer.org',504,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(500,1,'REGINALD','KINDER','REGINALD.KINDER@sakilacustomer.org',505,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(501,1,'RUBEN','GEARY','RUBEN.GEARY@sakilacustomer.org',506,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(502,1,'BRETT','CORNWELL','BRETT.CORNWELL@sakilacustomer.org',507,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(503,1,'ANGEL','BARCLAY','ANGEL.BARCLAY@sakilacustomer.org',508,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(504,1,'NATHANIEL','ADAM','NATHANIEL.ADAM@sakilacustomer.org',509,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(505,1,'RAFAEL','ABNEY','RAFAEL.ABNEY@sakilacustomer.org',510,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(506,2,'LESLIE','SEWARD','LESLIE.SEWARD@sakilacustomer.org',511,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(507,2,'EDGAR','RHOADS','EDGAR.RHOADS@sakilacustomer.org',512,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(508,2,'MILTON','HOWLAND','MILTON.HOWLAND@sakilacustomer.org',513,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(509,1,'RAUL','FORTIER','RAUL.FORTIER@sakilacustomer.org',514,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(510,2,'BEN','EASTER','BEN.EASTER@sakilacustomer.org',515,0,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(511,1,'CHESTER','BENNER','CHESTER.BENNER@sakilacustomer.org',516,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(512,1,'CECIL','VINES','CECIL.VINES@sakilacustomer.org',517,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(513,2,'DUANE','TUBBS','DUANE.TUBBS@sakilacustomer.org',519,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(514,2,'FRANKLIN','TROUTMAN','FRANKLIN.TROUTMAN@sakilacustomer.org',520,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(515,1,'ANDRE','RAPP','ANDRE.RAPP@sakilacustomer.org',521,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(516,2,'ELMER','NOE','ELMER.NOE@sakilacustomer.org',522,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(517,2,'BRAD','MCCURDY','BRAD.MCCURDY@sakilacustomer.org',523,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(518,1,'GABRIEL','HARDER','GABRIEL.HARDER@sakilacustomer.org',524,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(519,2,'RON','DELUCA','RON.DELUCA@sakilacustomer.org',525,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(520,2,'MITCHELL','WESTMORELAND','MITCHELL.WESTMORELAND@sakilacustomer.org',526,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(521,2,'ROLAND','SOUTH','ROLAND.SOUTH@sakilacustomer.org',527,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(522,2,'ARNOLD','HAVENS','ARNOLD.HAVENS@sakilacustomer.org',528,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(523,1,'HARVEY','GUAJARDO','HARVEY.GUAJARDO@sakilacustomer.org',529,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(524,1,'JARED','ELY','JARED.ELY@sakilacustomer.org',530,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(525,2,'ADRIAN','CLARY','ADRIAN.CLARY@sakilacustomer.org',531,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(526,2,'KARL','SEAL','KARL.SEAL@sakilacustomer.org',532,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(527,1,'CORY','MEEHAN','CORY.MEEHAN@sakilacustomer.org',533,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(528,1,'CLAUDE','HERZOG','CLAUDE.HERZOG@sakilacustomer.org',534,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(529,2,'ERIK','GUILLEN','ERIK.GUILLEN@sakilacustomer.org',535,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(530,2,'DARRYL','ASHCRAFT','DARRYL.ASHCRAFT@sakilacustomer.org',536,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(531,2,'JAMIE','WAUGH','JAMIE.WAUGH@sakilacustomer.org',537,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(532,2,'NEIL','RENNER','NEIL.RENNER@sakilacustomer.org',538,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(533,1,'JESSIE','MILAM','JESSIE.MILAM@sakilacustomer.org',539,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(534,1,'CHRISTIAN','JUNG','CHRISTIAN.JUNG@sakilacustomer.org',540,0,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(535,1,'JAVIER','ELROD','JAVIER.ELROD@sakilacustomer.org',541,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(536,2,'FERNANDO','CHURCHILL','FERNANDO.CHURCHILL@sakilacustomer.org',542,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(537,2,'CLINTON','BUFORD','CLINTON.BUFORD@sakilacustomer.org',543,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(538,2,'TED','BREAUX','TED.BREAUX@sakilacustomer.org',544,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(539,1,'MATHEW','BOLIN','MATHEW.BOLIN@sakilacustomer.org',545,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(540,1,'TYRONE','ASHER','TYRONE.ASHER@sakilacustomer.org',546,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(541,2,'DARREN','WINDHAM','DARREN.WINDHAM@sakilacustomer.org',547,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(542,2,'LONNIE','TIRADO','LONNIE.TIRADO@sakilacustomer.org',548,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(543,1,'LANCE','PEMBERTON','LANCE.PEMBERTON@sakilacustomer.org',549,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(544,2,'CODY','NOLEN','CODY.NOLEN@sakilacustomer.org',550,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(545,2,'JULIO','NOLAND','JULIO.NOLAND@sakilacustomer.org',551,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(546,1,'KELLY','KNOTT','KELLY.KNOTT@sakilacustomer.org',552,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(547,1,'KURT','EMMONS','KURT.EMMONS@sakilacustomer.org',553,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(548,1,'ALLAN','CORNISH','ALLAN.CORNISH@sakilacustomer.org',554,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(549,1,'NELSON','CHRISTENSON','NELSON.CHRISTENSON@sakilacustomer.org',555,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(550,2,'GUY','BROWNLEE','GUY.BROWNLEE@sakilacustomer.org',556,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(551,2,'CLAYTON','BARBEE','CLAYTON.BARBEE@sakilacustomer.org',557,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(552,2,'HUGH','WALDROP','HUGH.WALDROP@sakilacustomer.org',558,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(553,1,'MAX','PITT','MAX.PITT@sakilacustomer.org',559,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(554,1,'DWAYNE','OLVERA','DWAYNE.OLVERA@sakilacustomer.org',560,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(555,1,'DWIGHT','LOMBARDI','DWIGHT.LOMBARDI@sakilacustomer.org',561,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(556,2,'ARMANDO','GRUBER','ARMANDO.GRUBER@sakilacustomer.org',562,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(557,1,'FELIX','GAFFNEY','FELIX.GAFFNEY@sakilacustomer.org',563,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(558,1,'JIMMIE','EGGLESTON','JIMMIE.EGGLESTON@sakilacustomer.org',564,0,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(559,2,'EVERETT','BANDA','EVERETT.BANDA@sakilacustomer.org',565,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(560,1,'JORDAN','ARCHULETA','JORDAN.ARCHULETA@sakilacustomer.org',566,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(561,2,'IAN','STILL','IAN.STILL@sakilacustomer.org',567,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(562,1,'WALLACE','SLONE','WALLACE.SLONE@sakilacustomer.org',568,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(563,2,'KEN','PREWITT','KEN.PREWITT@sakilacustomer.org',569,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(564,2,'BOB','PFEIFFER','BOB.PFEIFFER@sakilacustomer.org',570,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(565,2,'JAIME','NETTLES','JAIME.NETTLES@sakilacustomer.org',571,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(566,1,'CASEY','MENA','CASEY.MENA@sakilacustomer.org',572,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(567,2,'ALFREDO','MCADAMS','ALFREDO.MCADAMS@sakilacustomer.org',573,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(568,2,'ALBERTO','HENNING','ALBERTO.HENNING@sakilacustomer.org',574,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(569,2,'DAVE','GARDINER','DAVE.GARDINER@sakilacustomer.org',575,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(570,2,'IVAN','CROMWELL','IVAN.CROMWELL@sakilacustomer.org',576,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(571,2,'JOHNNIE','CHISHOLM','JOHNNIE.CHISHOLM@sakilacustomer.org',577,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(572,1,'SIDNEY','BURLESON','SIDNEY.BURLESON@sakilacustomer.org',578,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(573,1,'BYRON','BOX','BYRON.BOX@sakilacustomer.org',579,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(574,2,'JULIAN','VEST','JULIAN.VEST@sakilacustomer.org',580,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(575,2,'ISAAC','OGLESBY','ISAAC.OGLESBY@sakilacustomer.org',581,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(576,2,'MORRIS','MCCARTER','MORRIS.MCCARTER@sakilacustomer.org',582,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(577,2,'CLIFTON','MALCOLM','CLIFTON.MALCOLM@sakilacustomer.org',583,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(578,2,'WILLARD','LUMPKIN','WILLARD.LUMPKIN@sakilacustomer.org',584,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(579,2,'DARYL','LARUE','DARYL.LARUE@sakilacustomer.org',585,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(580,1,'ROSS','GREY','ROSS.GREY@sakilacustomer.org',586,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(581,1,'VIRGIL','WOFFORD','VIRGIL.WOFFORD@sakilacustomer.org',587,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(582,2,'ANDY','VANHORN','ANDY.VANHORN@sakilacustomer.org',588,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(583,1,'MARSHALL','THORN','MARSHALL.THORN@sakilacustomer.org',589,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(584,2,'SALVADOR','TEEL','SALVADOR.TEEL@sakilacustomer.org',590,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(585,1,'PERRY','SWAFFORD','PERRY.SWAFFORD@sakilacustomer.org',591,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(586,1,'KIRK','STCLAIR','KIRK.STCLAIR@sakilacustomer.org',592,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(587,1,'SERGIO','STANFIELD','SERGIO.STANFIELD@sakilacustomer.org',593,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(588,1,'MARION','OCAMPO','MARION.OCAMPO@sakilacustomer.org',594,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(589,1,'TRACY','HERRMANN','TRACY.HERRMANN@sakilacustomer.org',595,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(590,2,'SETH','HANNON','SETH.HANNON@sakilacustomer.org',596,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(591,1,'KENT','ARSENAULT','KENT.ARSENAULT@sakilacustomer.org',597,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(592,1,'TERRANCE','ROUSH','TERRANCE.ROUSH@sakilacustomer.org',598,0,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(593,2,'RENE','MCALISTER','RENE.MCALISTER@sakilacustomer.org',599,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(594,1,'EDUARDO','HIATT','EDUARDO.HIATT@sakilacustomer.org',600,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(595,1,'TERRENCE','GUNDERSON','TERRENCE.GUNDERSON@sakilacustomer.org',601,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(596,1,'ENRIQUE','FORSYTHE','ENRIQUE.FORSYTHE@sakilacustomer.org',602,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(597,1,'FREDDIE','DUGGAN','FREDDIE.DUGGAN@sakilacustomer.org',603,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(598,1,'WADE','DELVALLE','WADE.DELVALLE@sakilacustomer.org',604,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'),(599,2,'AUSTIN','CINTRON','AUSTIN.CINTRON@sakilacustomer.org',605,1,'2006-02-14 22:04:37','2006-02-15 04:57:20'); + +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'); + +INSERT INTO film_category VALUES (1,6,'2006-02-15 05:07:09'),(2,11,'2006-02-15 05:07:09'),(3,6,'2006-02-15 05:07:09'),(4,11,'2006-02-15 05:07:09'),(5,8,'2006-02-15 05:07:09'),(6,9,'2006-02-15 05:07:09'),(7,5,'2006-02-15 05:07:09'),(8,11,'2006-02-15 05:07:09'),(9,11,'2006-02-15 05:07:09'),(10,15,'2006-02-15 05:07:09'),(11,9,'2006-02-15 05:07:09'),(12,12,'2006-02-15 05:07:09'),(13,11,'2006-02-15 05:07:09'),(14,4,'2006-02-15 05:07:09'),(15,9,'2006-02-15 05:07:09'),(16,9,'2006-02-15 05:07:09'),(17,12,'2006-02-15 05:07:09'),(18,2,'2006-02-15 05:07:09'),(19,1,'2006-02-15 05:07:09'),(20,12,'2006-02-15 05:07:09'),(21,1,'2006-02-15 05:07:09'),(22,13,'2006-02-15 05:07:09'),(23,2,'2006-02-15 05:07:09'),(24,11,'2006-02-15 05:07:09'),(25,13,'2006-02-15 05:07:09'),(26,14,'2006-02-15 05:07:09'),(27,15,'2006-02-15 05:07:09'),(28,5,'2006-02-15 05:07:09'),(29,1,'2006-02-15 05:07:09'),(30,11,'2006-02-15 05:07:09'),(31,8,'2006-02-15 05:07:09'),(32,13,'2006-02-15 05:07:09'),(33,7,'2006-02-15 05:07:09'),(34,11,'2006-02-15 05:07:09'),(35,11,'2006-02-15 05:07:09'),(36,2,'2006-02-15 05:07:09'),(37,4,'2006-02-15 05:07:09'),(38,1,'2006-02-15 05:07:09'),(39,14,'2006-02-15 05:07:09'),(40,6,'2006-02-15 05:07:09'),(41,16,'2006-02-15 05:07:09'),(42,15,'2006-02-15 05:07:09'),(43,8,'2006-02-15 05:07:09'),(44,14,'2006-02-15 05:07:09'),(45,13,'2006-02-15 05:07:09'),(46,10,'2006-02-15 05:07:09'),(47,9,'2006-02-15 05:07:09'),(48,3,'2006-02-15 05:07:09'),(49,14,'2006-02-15 05:07:09'),(50,8,'2006-02-15 05:07:09'),(51,12,'2006-02-15 05:07:09'),(52,9,'2006-02-15 05:07:09'),(53,8,'2006-02-15 05:07:09'),(54,12,'2006-02-15 05:07:09'),(55,14,'2006-02-15 05:07:09'),(56,1,'2006-02-15 05:07:09'),(57,16,'2006-02-15 05:07:09'),(58,6,'2006-02-15 05:07:09'),(59,3,'2006-02-15 05:07:09'),(60,4,'2006-02-15 05:07:09'),(61,7,'2006-02-15 05:07:09'),(62,6,'2006-02-15 05:07:09'),(63,8,'2006-02-15 05:07:09'),(64,7,'2006-02-15 05:07:09'),(65,11,'2006-02-15 05:07:09'),(66,3,'2006-02-15 05:07:09'),(67,1,'2006-02-15 05:07:09'),(68,3,'2006-02-15 05:07:09'),(69,14,'2006-02-15 05:07:09'),(70,2,'2006-02-15 05:07:09'),(71,8,'2006-02-15 05:07:09'),(72,6,'2006-02-15 05:07:09'),(73,14,'2006-02-15 05:07:09'),(74,12,'2006-02-15 05:07:09'),(75,16,'2006-02-15 05:07:09'),(76,12,'2006-02-15 05:07:09'),(77,13,'2006-02-15 05:07:09'),(78,2,'2006-02-15 05:07:09'),(79,7,'2006-02-15 05:07:09'),(80,8,'2006-02-15 05:07:09'),(81,14,'2006-02-15 05:07:09'),(82,8,'2006-02-15 05:07:09'),(83,8,'2006-02-15 05:07:09'),(84,16,'2006-02-15 05:07:09'),(85,6,'2006-02-15 05:07:09'),(86,12,'2006-02-15 05:07:09'),(87,16,'2006-02-15 05:07:09'),(88,16,'2006-02-15 05:07:09'),(89,2,'2006-02-15 05:07:09'),(90,13,'2006-02-15 05:07:09'),(91,4,'2006-02-15 05:07:09'),(92,11,'2006-02-15 05:07:09'),(93,13,'2006-02-15 05:07:09'),(94,8,'2006-02-15 05:07:09'),(95,13,'2006-02-15 05:07:09'),(96,13,'2006-02-15 05:07:09'),(97,1,'2006-02-15 05:07:09'),(98,7,'2006-02-15 05:07:09'),(99,5,'2006-02-15 05:07:09'),(100,9,'2006-02-15 05:07:09'),(101,6,'2006-02-15 05:07:09'),(102,15,'2006-02-15 05:07:09'),(103,16,'2006-02-15 05:07:09'),(104,9,'2006-02-15 05:07:09'),(105,1,'2006-02-15 05:07:09'),(106,10,'2006-02-15 05:07:09'),(107,7,'2006-02-15 05:07:09'),(108,13,'2006-02-15 05:07:09'),(109,13,'2006-02-15 05:07:09'),(110,3,'2006-02-15 05:07:09'),(111,1,'2006-02-15 05:07:09'),(112,9,'2006-02-15 05:07:09'),(113,15,'2006-02-15 05:07:09'),(114,14,'2006-02-15 05:07:09'),(115,1,'2006-02-15 05:07:09'),(116,4,'2006-02-15 05:07:09'),(117,10,'2006-02-15 05:07:09'),(118,2,'2006-02-15 05:07:09'),(119,5,'2006-02-15 05:07:09'),(120,15,'2006-02-15 05:07:09'),(121,2,'2006-02-15 05:07:09'),(122,11,'2006-02-15 05:07:09'),(123,16,'2006-02-15 05:07:09'),(124,3,'2006-02-15 05:07:09'),(125,16,'2006-02-15 05:07:09'),(126,1,'2006-02-15 05:07:09'),(127,5,'2006-02-15 05:07:09'),(128,9,'2006-02-15 05:07:09'),(129,6,'2006-02-15 05:07:09'),(130,1,'2006-02-15 05:07:09'),(131,4,'2006-02-15 05:07:09'),(132,14,'2006-02-15 05:07:09'),(133,12,'2006-02-15 05:07:09'),(134,2,'2006-02-15 05:07:09'),(135,15,'2006-02-15 05:07:09'),(136,13,'2006-02-15 05:07:09'),(137,14,'2006-02-15 05:07:09'),(138,14,'2006-02-15 05:07:09'),(139,8,'2006-02-15 05:07:09'),(140,14,'2006-02-15 05:07:09'),(141,10,'2006-02-15 05:07:09'),(142,6,'2006-02-15 05:07:09'),(143,7,'2006-02-15 05:07:09'),(144,13,'2006-02-15 05:07:09'),(145,8,'2006-02-15 05:07:09'),(146,7,'2006-02-15 05:07:09'),(147,8,'2006-02-15 05:07:09'),(148,9,'2006-02-15 05:07:09'),(149,3,'2006-02-15 05:07:09'),(150,6,'2006-02-15 05:07:09'),(151,14,'2006-02-15 05:07:09'),(152,3,'2006-02-15 05:07:09'),(153,14,'2006-02-15 05:07:09'),(154,2,'2006-02-15 05:07:09'),(155,13,'2006-02-15 05:07:09'),(156,6,'2006-02-15 05:07:09'),(157,3,'2006-02-15 05:07:09'),(158,12,'2006-02-15 05:07:09'),(159,5,'2006-02-15 05:07:09'),(160,2,'2006-02-15 05:07:09'),(161,12,'2006-02-15 05:07:09'),(162,1,'2006-02-15 05:07:09'),(163,13,'2006-02-15 05:07:09'),(164,6,'2006-02-15 05:07:09'),(165,14,'2006-02-15 05:07:09'),(166,4,'2006-02-15 05:07:09'),(167,16,'2006-02-15 05:07:09'),(168,3,'2006-02-15 05:07:09'),(169,16,'2006-02-15 05:07:09'),(170,9,'2006-02-15 05:07:09'),(171,11,'2006-02-15 05:07:09'),(172,7,'2006-02-15 05:07:09'),(173,7,'2006-02-15 05:07:09'),(174,12,'2006-02-15 05:07:09'),(175,8,'2006-02-15 05:07:09'),(176,15,'2006-02-15 05:07:09'),(177,14,'2006-02-15 05:07:09'),(178,5,'2006-02-15 05:07:09'),(179,7,'2006-02-15 05:07:09'),(180,4,'2006-02-15 05:07:09'),(181,16,'2006-02-15 05:07:09'),(182,5,'2006-02-15 05:07:09'),(183,8,'2006-02-15 05:07:09'),(184,4,'2006-02-15 05:07:09'),(185,9,'2006-02-15 05:07:09'),(186,7,'2006-02-15 05:07:09'),(187,15,'2006-02-15 05:07:09'),(188,5,'2006-02-15 05:07:09'),(189,10,'2006-02-15 05:07:09'),(190,4,'2006-02-15 05:07:09'),(191,3,'2006-02-15 05:07:09'),(192,9,'2006-02-15 05:07:09'),(193,2,'2006-02-15 05:07:09'),(194,1,'2006-02-15 05:07:09'),(195,14,'2006-02-15 05:07:09'),(196,4,'2006-02-15 05:07:09'),(197,15,'2006-02-15 05:07:09'),(198,9,'2006-02-15 05:07:09'),(199,6,'2006-02-15 05:07:09'),(200,10,'2006-02-15 05:07:09'),(201,9,'2006-02-15 05:07:09'),(202,5,'2006-02-15 05:07:09'),(203,14,'2006-02-15 05:07:09'),(204,7,'2006-02-15 05:07:09'),(205,1,'2006-02-15 05:07:09'),(206,6,'2006-02-15 05:07:09'),(207,9,'2006-02-15 05:07:09'),(208,2,'2006-02-15 05:07:09'),(209,7,'2006-02-15 05:07:09'),(210,1,'2006-02-15 05:07:09'),(211,10,'2006-02-15 05:07:09'),(212,1,'2006-02-15 05:07:09'),(213,8,'2006-02-15 05:07:09'),(214,3,'2006-02-15 05:07:09'),(215,10,'2006-02-15 05:07:09'),(216,13,'2006-02-15 05:07:09'),(217,10,'2006-02-15 05:07:09'),(218,7,'2006-02-15 05:07:09'),(219,6,'2006-02-15 05:07:09'),(220,12,'2006-02-15 05:07:09'),(221,6,'2006-02-15 05:07:09'),(222,11,'2006-02-15 05:07:09'),(223,2,'2006-02-15 05:07:09'),(224,16,'2006-02-15 05:07:09'),(225,7,'2006-02-15 05:07:09'),(226,13,'2006-02-15 05:07:09'),(227,10,'2006-02-15 05:07:09'),(228,4,'2006-02-15 05:07:09'),(229,1,'2006-02-15 05:07:09'),(230,7,'2006-02-15 05:07:09'),(231,8,'2006-02-15 05:07:09'),(232,10,'2006-02-15 05:07:09'),(233,16,'2006-02-15 05:07:09'),(234,14,'2006-02-15 05:07:09'),(235,14,'2006-02-15 05:07:09'),(236,10,'2006-02-15 05:07:09'),(237,15,'2006-02-15 05:07:09'),(238,3,'2006-02-15 05:07:09'),(239,2,'2006-02-15 05:07:09'),(240,14,'2006-02-15 05:07:09'),(241,2,'2006-02-15 05:07:09'),(242,5,'2006-02-15 05:07:09'),(243,2,'2006-02-15 05:07:09'),(244,12,'2006-02-15 05:07:09'),(245,2,'2006-02-15 05:07:09'),(246,9,'2006-02-15 05:07:09'),(247,5,'2006-02-15 05:07:09'),(248,6,'2006-02-15 05:07:09'),(249,4,'2006-02-15 05:07:09'),(250,1,'2006-02-15 05:07:09'),(251,13,'2006-02-15 05:07:09'),(252,1,'2006-02-15 05:07:09'),(253,1,'2006-02-15 05:07:09'),(254,15,'2006-02-15 05:07:09'),(255,12,'2006-02-15 05:07:09'),(256,15,'2006-02-15 05:07:09'),(257,16,'2006-02-15 05:07:09'),(258,11,'2006-02-15 05:07:09'),(259,2,'2006-02-15 05:07:09'),(260,15,'2006-02-15 05:07:09'),(261,6,'2006-02-15 05:07:09'),(262,8,'2006-02-15 05:07:09'),(263,15,'2006-02-15 05:07:09'),(264,10,'2006-02-15 05:07:09'),(265,5,'2006-02-15 05:07:09'),(266,4,'2006-02-15 05:07:09'),(267,13,'2006-02-15 05:07:09'),(268,2,'2006-02-15 05:07:09'),(269,8,'2006-02-15 05:07:09'),(270,13,'2006-02-15 05:07:09'),(271,1,'2006-02-15 05:07:09'),(272,7,'2006-02-15 05:07:09'),(273,8,'2006-02-15 05:07:09'),(274,6,'2006-02-15 05:07:09'),(275,11,'2006-02-15 05:07:09'),(276,5,'2006-02-15 05:07:09'),(277,11,'2006-02-15 05:07:09'),(278,12,'2006-02-15 05:07:09'),(279,15,'2006-02-15 05:07:09'),(280,3,'2006-02-15 05:07:09'),(281,10,'2006-02-15 05:07:09'),(282,7,'2006-02-15 05:07:09'),(283,13,'2006-02-15 05:07:09'),(284,12,'2006-02-15 05:07:09'),(285,14,'2006-02-15 05:07:09'),(286,16,'2006-02-15 05:07:09'),(287,1,'2006-02-15 05:07:09'),(288,16,'2006-02-15 05:07:09'),(289,13,'2006-02-15 05:07:09'),(290,9,'2006-02-15 05:07:09'),(291,15,'2006-02-15 05:07:09'),(292,1,'2006-02-15 05:07:09'),(293,15,'2006-02-15 05:07:09'),(294,16,'2006-02-15 05:07:09'),(295,6,'2006-02-15 05:07:09'),(296,14,'2006-02-15 05:07:09'),(297,4,'2006-02-15 05:07:09'),(298,14,'2006-02-15 05:07:09'),(299,16,'2006-02-15 05:07:09'),(300,2,'2006-02-15 05:07:09'),(301,11,'2006-02-15 05:07:09'),(302,10,'2006-02-15 05:07:09'),(303,1,'2006-02-15 05:07:09'),(304,3,'2006-02-15 05:07:09'),(305,13,'2006-02-15 05:07:09'),(306,10,'2006-02-15 05:07:09'),(307,16,'2006-02-15 05:07:09'),(308,5,'2006-02-15 05:07:09'),(309,8,'2006-02-15 05:07:09'),(310,10,'2006-02-15 05:07:09'),(311,9,'2006-02-15 05:07:09'),(312,14,'2006-02-15 05:07:09'),(313,11,'2006-02-15 05:07:09'),(314,2,'2006-02-15 05:07:09'),(315,8,'2006-02-15 05:07:09'),(316,10,'2006-02-15 05:07:09'),(317,5,'2006-02-15 05:07:09'),(318,1,'2006-02-15 05:07:09'),(319,14,'2006-02-15 05:07:09'),(320,13,'2006-02-15 05:07:09'),(321,13,'2006-02-15 05:07:09'),(322,15,'2006-02-15 05:07:09'),(323,15,'2006-02-15 05:07:09'),(324,5,'2006-02-15 05:07:09'),(325,2,'2006-02-15 05:07:09'),(326,2,'2006-02-15 05:07:09'),(327,1,'2006-02-15 05:07:09'),(328,3,'2006-02-15 05:07:09'),(329,1,'2006-02-15 05:07:09'),(330,2,'2006-02-15 05:07:09'),(331,10,'2006-02-15 05:07:09'),(332,5,'2006-02-15 05:07:09'),(333,12,'2006-02-15 05:07:09'),(334,11,'2006-02-15 05:07:09'),(335,5,'2006-02-15 05:07:09'),(336,6,'2006-02-15 05:07:09'),(337,9,'2006-02-15 05:07:09'),(338,14,'2006-02-15 05:07:09'),(339,16,'2006-02-15 05:07:09'),(340,13,'2006-02-15 05:07:09'),(341,4,'2006-02-15 05:07:09'),(342,16,'2006-02-15 05:07:09'),(343,3,'2006-02-15 05:07:09'),(344,3,'2006-02-15 05:07:09'),(345,8,'2006-02-15 05:07:09'),(346,4,'2006-02-15 05:07:09'),(347,16,'2006-02-15 05:07:09'),(348,8,'2006-02-15 05:07:09'),(349,2,'2006-02-15 05:07:09'),(350,14,'2006-02-15 05:07:09'),(351,11,'2006-02-15 05:07:09'),(352,10,'2006-02-15 05:07:09'),(353,9,'2006-02-15 05:07:09'),(354,3,'2006-02-15 05:07:09'),(355,2,'2006-02-15 05:07:09'),(356,3,'2006-02-15 05:07:09'),(357,4,'2006-02-15 05:07:09'),(358,4,'2006-02-15 05:07:09'),(359,8,'2006-02-15 05:07:09'),(360,1,'2006-02-15 05:07:09'),(361,15,'2006-02-15 05:07:09'),(362,10,'2006-02-15 05:07:09'),(363,12,'2006-02-15 05:07:09'),(364,13,'2006-02-15 05:07:09'),(365,5,'2006-02-15 05:07:09'),(366,7,'2006-02-15 05:07:09'),(367,14,'2006-02-15 05:07:09'),(368,7,'2006-02-15 05:07:09'),(369,14,'2006-02-15 05:07:09'),(370,3,'2006-02-15 05:07:09'),(371,1,'2006-02-15 05:07:09'),(372,15,'2006-02-15 05:07:09'),(373,3,'2006-02-15 05:07:09'),(374,14,'2006-02-15 05:07:09'),(375,1,'2006-02-15 05:07:09'),(376,9,'2006-02-15 05:07:09'),(377,8,'2006-02-15 05:07:09'),(378,12,'2006-02-15 05:07:09'),(379,7,'2006-02-15 05:07:09'),(380,9,'2006-02-15 05:07:09'),(381,10,'2006-02-15 05:07:09'),(382,10,'2006-02-15 05:07:09'),(383,15,'2006-02-15 05:07:09'),(384,12,'2006-02-15 05:07:09'),(385,5,'2006-02-15 05:07:09'),(386,16,'2006-02-15 05:07:09'),(387,10,'2006-02-15 05:07:09'),(388,5,'2006-02-15 05:07:09'),(389,15,'2006-02-15 05:07:09'),(390,14,'2006-02-15 05:07:09'),(391,8,'2006-02-15 05:07:09'),(392,3,'2006-02-15 05:07:09'),(393,6,'2006-02-15 05:07:09'),(394,14,'2006-02-15 05:07:09'),(395,1,'2006-02-15 05:07:09'),(396,7,'2006-02-15 05:07:09'),(397,14,'2006-02-15 05:07:09'),(398,12,'2006-02-15 05:07:09'),(399,9,'2006-02-15 05:07:09'),(400,6,'2006-02-15 05:07:09'),(401,7,'2006-02-15 05:07:09'),(402,2,'2006-02-15 05:07:09'),(403,7,'2006-02-15 05:07:09'),(404,5,'2006-02-15 05:07:09'),(405,16,'2006-02-15 05:07:09'),(406,10,'2006-02-15 05:07:09'),(407,6,'2006-02-15 05:07:09'),(408,10,'2006-02-15 05:07:09'),(409,3,'2006-02-15 05:07:09'),(410,5,'2006-02-15 05:07:09'),(411,12,'2006-02-15 05:07:09'),(412,6,'2006-02-15 05:07:09'),(413,5,'2006-02-15 05:07:09'),(414,9,'2006-02-15 05:07:09'),(415,11,'2006-02-15 05:07:09'),(416,9,'2006-02-15 05:07:09'),(417,1,'2006-02-15 05:07:09'),(418,7,'2006-02-15 05:07:09'),(419,8,'2006-02-15 05:07:09'),(420,15,'2006-02-15 05:07:09'),(421,9,'2006-02-15 05:07:09'),(422,14,'2006-02-15 05:07:09'),(423,3,'2006-02-15 05:07:09'),(424,3,'2006-02-15 05:07:09'),(425,4,'2006-02-15 05:07:09'),(426,12,'2006-02-15 05:07:09'),(427,6,'2006-02-15 05:07:09'),(428,8,'2006-02-15 05:07:09'),(429,15,'2006-02-15 05:07:09'),(430,2,'2006-02-15 05:07:09'),(431,9,'2006-02-15 05:07:09'),(432,4,'2006-02-15 05:07:09'),(433,2,'2006-02-15 05:07:09'),(434,16,'2006-02-15 05:07:09'),(435,9,'2006-02-15 05:07:09'),(436,13,'2006-02-15 05:07:09'),(437,8,'2006-02-15 05:07:09'),(438,10,'2006-02-15 05:07:09'),(439,7,'2006-02-15 05:07:09'),(440,9,'2006-02-15 05:07:09'),(441,6,'2006-02-15 05:07:09'),(442,8,'2006-02-15 05:07:09'),(443,5,'2006-02-15 05:07:09'),(444,5,'2006-02-15 05:07:09'),(445,4,'2006-02-15 05:07:09'),(446,15,'2006-02-15 05:07:09'),(447,10,'2006-02-15 05:07:09'),(448,13,'2006-02-15 05:07:09'),(449,14,'2006-02-15 05:07:09'),(450,3,'2006-02-15 05:07:09'),(451,16,'2006-02-15 05:07:09'),(452,9,'2006-02-15 05:07:09'),(453,15,'2006-02-15 05:07:09'),(454,12,'2006-02-15 05:07:09'),(455,9,'2006-02-15 05:07:09'),(456,2,'2006-02-15 05:07:09'),(457,6,'2006-02-15 05:07:09'),(458,8,'2006-02-15 05:07:09'),(459,9,'2006-02-15 05:07:09'),(460,9,'2006-02-15 05:07:09'),(461,2,'2006-02-15 05:07:09'),(462,12,'2006-02-15 05:07:09'),(463,15,'2006-02-15 05:07:09'),(464,2,'2006-02-15 05:07:09'),(465,13,'2006-02-15 05:07:09'),(466,6,'2006-02-15 05:07:09'),(467,9,'2006-02-15 05:07:09'),(468,3,'2006-02-15 05:07:09'),(469,4,'2006-02-15 05:07:09'),(470,2,'2006-02-15 05:07:09'),(471,4,'2006-02-15 05:07:09'),(472,16,'2006-02-15 05:07:09'),(473,7,'2006-02-15 05:07:09'),(474,15,'2006-02-15 05:07:09'),(475,11,'2006-02-15 05:07:09'),(476,8,'2006-02-15 05:07:09'),(477,12,'2006-02-15 05:07:09'),(478,5,'2006-02-15 05:07:09'),(479,8,'2006-02-15 05:07:09'),(480,4,'2006-02-15 05:07:09'),(481,13,'2006-02-15 05:07:09'),(482,4,'2006-02-15 05:07:09'),(483,10,'2006-02-15 05:07:09'),(484,4,'2006-02-15 05:07:09'),(485,3,'2006-02-15 05:07:09'),(486,9,'2006-02-15 05:07:09'),(487,4,'2006-02-15 05:07:09'),(488,15,'2006-02-15 05:07:09'),(489,2,'2006-02-15 05:07:09'),(490,13,'2006-02-15 05:07:09'),(491,3,'2006-02-15 05:07:09'),(492,13,'2006-02-15 05:07:09'),(493,9,'2006-02-15 05:07:09'),(494,11,'2006-02-15 05:07:09'),(495,11,'2006-02-15 05:07:09'),(496,16,'2006-02-15 05:07:09'),(497,6,'2006-02-15 05:07:09'),(498,8,'2006-02-15 05:07:09'),(499,8,'2006-02-15 05:07:09'),(500,9,'2006-02-15 05:07:09'),(501,1,'2006-02-15 05:07:09'),(502,5,'2006-02-15 05:07:09'),(503,15,'2006-02-15 05:07:09'),(504,7,'2006-02-15 05:07:09'),(505,3,'2006-02-15 05:07:09'),(506,11,'2006-02-15 05:07:09'),(507,10,'2006-02-15 05:07:09'),(508,10,'2006-02-15 05:07:09'),(509,3,'2006-02-15 05:07:09'),(510,2,'2006-02-15 05:07:09'),(511,1,'2006-02-15 05:07:09'),(512,4,'2006-02-15 05:07:09'),(513,16,'2006-02-15 05:07:09'),(514,7,'2006-02-15 05:07:09'),(515,3,'2006-02-15 05:07:09'),(516,12,'2006-02-15 05:07:09'),(517,15,'2006-02-15 05:07:09'),(518,16,'2006-02-15 05:07:09'),(519,15,'2006-02-15 05:07:09'),(520,14,'2006-02-15 05:07:09'),(521,7,'2006-02-15 05:07:09'),(522,5,'2006-02-15 05:07:09'),(523,4,'2006-02-15 05:07:09'),(524,5,'2006-02-15 05:07:09'),(525,4,'2006-02-15 05:07:09'),(526,16,'2006-02-15 05:07:09'),(527,11,'2006-02-15 05:07:09'),(528,8,'2006-02-15 05:07:09'),(529,5,'2006-02-15 05:07:09'),(530,1,'2006-02-15 05:07:09'),(531,9,'2006-02-15 05:07:09'),(532,15,'2006-02-15 05:07:09'),(533,9,'2006-02-15 05:07:09'),(534,8,'2006-02-15 05:07:09'),(535,11,'2006-02-15 05:07:09'),(536,4,'2006-02-15 05:07:09'),(537,4,'2006-02-15 05:07:09'),(538,13,'2006-02-15 05:07:09'),(539,7,'2006-02-15 05:07:09'),(540,12,'2006-02-15 05:07:09'),(541,2,'2006-02-15 05:07:09'),(542,1,'2006-02-15 05:07:09'),(543,16,'2006-02-15 05:07:09'),(544,6,'2006-02-15 05:07:09'),(545,9,'2006-02-15 05:07:09'),(546,10,'2006-02-15 05:07:09'),(547,3,'2006-02-15 05:07:09'),(548,4,'2006-02-15 05:07:09'),(549,1,'2006-02-15 05:07:09'),(550,8,'2006-02-15 05:07:09'),(551,13,'2006-02-15 05:07:09'),(552,6,'2006-02-15 05:07:09'),(553,3,'2006-02-15 05:07:09'),(554,4,'2006-02-15 05:07:09'),(555,5,'2006-02-15 05:07:09'),(556,10,'2006-02-15 05:07:09'),(557,8,'2006-02-15 05:07:09'),(558,13,'2006-02-15 05:07:09'),(559,14,'2006-02-15 05:07:09'),(560,10,'2006-02-15 05:07:09'),(561,13,'2006-02-15 05:07:09'),(562,12,'2006-02-15 05:07:09'),(563,10,'2006-02-15 05:07:09'),(564,2,'2006-02-15 05:07:09'),(565,9,'2006-02-15 05:07:09'),(566,9,'2006-02-15 05:07:09'),(567,9,'2006-02-15 05:07:09'),(568,5,'2006-02-15 05:07:09'),(569,2,'2006-02-15 05:07:09'),(570,15,'2006-02-15 05:07:09'),(571,6,'2006-02-15 05:07:09'),(572,14,'2006-02-15 05:07:09'),(573,3,'2006-02-15 05:07:09'),(574,1,'2006-02-15 05:07:09'),(575,6,'2006-02-15 05:07:09'),(576,6,'2006-02-15 05:07:09'),(577,15,'2006-02-15 05:07:09'),(578,4,'2006-02-15 05:07:09'),(579,1,'2006-02-15 05:07:09'),(580,13,'2006-02-15 05:07:09'),(581,12,'2006-02-15 05:07:09'),(582,2,'2006-02-15 05:07:09'),(583,2,'2006-02-15 05:07:09'),(584,9,'2006-02-15 05:07:09'),(585,7,'2006-02-15 05:07:09'),(586,1,'2006-02-15 05:07:09'),(587,6,'2006-02-15 05:07:09'),(588,3,'2006-02-15 05:07:09'),(589,6,'2006-02-15 05:07:09'),(590,13,'2006-02-15 05:07:09'),(591,10,'2006-02-15 05:07:09'),(592,12,'2006-02-15 05:07:09'),(593,11,'2006-02-15 05:07:09'),(594,1,'2006-02-15 05:07:09'),(595,9,'2006-02-15 05:07:09'),(596,10,'2006-02-15 05:07:09'),(597,10,'2006-02-15 05:07:09'),(598,15,'2006-02-15 05:07:09'),(599,15,'2006-02-15 05:07:09'),(600,11,'2006-02-15 05:07:09'),(601,16,'2006-02-15 05:07:09'),(602,14,'2006-02-15 05:07:09'),(603,8,'2006-02-15 05:07:09'),(604,5,'2006-02-15 05:07:09'),(605,9,'2006-02-15 05:07:09'),(606,15,'2006-02-15 05:07:09'),(607,9,'2006-02-15 05:07:09'),(608,3,'2006-02-15 05:07:09'),(609,16,'2006-02-15 05:07:09'),(610,8,'2006-02-15 05:07:09'),(611,4,'2006-02-15 05:07:09'),(612,15,'2006-02-15 05:07:09'),(613,5,'2006-02-15 05:07:09'),(614,10,'2006-02-15 05:07:09'),(615,2,'2006-02-15 05:07:09'),(616,6,'2006-02-15 05:07:09'),(617,8,'2006-02-15 05:07:09'),(618,7,'2006-02-15 05:07:09'),(619,15,'2006-02-15 05:07:09'),(620,14,'2006-02-15 05:07:09'),(621,8,'2006-02-15 05:07:09'),(622,6,'2006-02-15 05:07:09'),(623,9,'2006-02-15 05:07:09'),(624,10,'2006-02-15 05:07:09'),(625,14,'2006-02-15 05:07:09'),(626,3,'2006-02-15 05:07:09'),(627,6,'2006-02-15 05:07:09'),(628,15,'2006-02-15 05:07:09'),(629,6,'2006-02-15 05:07:09'),(630,7,'2006-02-15 05:07:09'),(631,15,'2006-02-15 05:07:09'),(632,13,'2006-02-15 05:07:09'),(633,4,'2006-02-15 05:07:09'),(634,8,'2006-02-15 05:07:09'),(635,13,'2006-02-15 05:07:09'),(636,12,'2006-02-15 05:07:09'),(637,14,'2006-02-15 05:07:09'),(638,5,'2006-02-15 05:07:09'),(639,8,'2006-02-15 05:07:09'),(640,9,'2006-02-15 05:07:09'),(641,9,'2006-02-15 05:07:09'),(642,16,'2006-02-15 05:07:09'),(643,7,'2006-02-15 05:07:09'),(644,2,'2006-02-15 05:07:09'),(645,16,'2006-02-15 05:07:09'),(646,10,'2006-02-15 05:07:09'),(647,12,'2006-02-15 05:07:09'),(648,16,'2006-02-15 05:07:09'),(649,2,'2006-02-15 05:07:09'),(650,6,'2006-02-15 05:07:09'),(651,2,'2006-02-15 05:07:09'),(652,4,'2006-02-15 05:07:09'),(653,11,'2006-02-15 05:07:09'),(654,10,'2006-02-15 05:07:09'),(655,14,'2006-02-15 05:07:09'),(656,16,'2006-02-15 05:07:09'),(657,5,'2006-02-15 05:07:09'),(658,11,'2006-02-15 05:07:09'),(659,1,'2006-02-15 05:07:09'),(660,5,'2006-02-15 05:07:09'),(661,9,'2006-02-15 05:07:09'),(662,7,'2006-02-15 05:07:09'),(663,4,'2006-02-15 05:07:09'),(664,1,'2006-02-15 05:07:09'),(665,11,'2006-02-15 05:07:09'),(666,7,'2006-02-15 05:07:09'),(667,15,'2006-02-15 05:07:09'),(668,15,'2006-02-15 05:07:09'),(669,9,'2006-02-15 05:07:09'),(670,6,'2006-02-15 05:07:09'),(671,15,'2006-02-15 05:07:09'),(672,5,'2006-02-15 05:07:09'),(673,12,'2006-02-15 05:07:09'),(674,9,'2006-02-15 05:07:09'),(675,13,'2006-02-15 05:07:09'),(676,15,'2006-02-15 05:07:09'),(677,13,'2006-02-15 05:07:09'),(678,15,'2006-02-15 05:07:09'),(679,8,'2006-02-15 05:07:09'),(680,5,'2006-02-15 05:07:09'),(681,15,'2006-02-15 05:07:09'),(682,8,'2006-02-15 05:07:09'),(683,7,'2006-02-15 05:07:09'),(684,10,'2006-02-15 05:07:09'),(685,13,'2006-02-15 05:07:09'),(686,13,'2006-02-15 05:07:09'),(687,6,'2006-02-15 05:07:09'),(688,3,'2006-02-15 05:07:09'),(689,9,'2006-02-15 05:07:09'),(690,2,'2006-02-15 05:07:09'),(691,15,'2006-02-15 05:07:09'),(692,2,'2006-02-15 05:07:09'),(693,2,'2006-02-15 05:07:09'),(694,4,'2006-02-15 05:07:09'),(695,8,'2006-02-15 05:07:09'),(696,2,'2006-02-15 05:07:09'),(697,1,'2006-02-15 05:07:09'),(698,6,'2006-02-15 05:07:09'),(699,10,'2006-02-15 05:07:09'),(700,8,'2006-02-15 05:07:09'),(701,10,'2006-02-15 05:07:09'),(702,11,'2006-02-15 05:07:09'),(703,2,'2006-02-15 05:07:09'),(704,5,'2006-02-15 05:07:09'),(705,9,'2006-02-15 05:07:09'),(706,7,'2006-02-15 05:07:09'),(707,1,'2006-02-15 05:07:09'),(708,6,'2006-02-15 05:07:09'),(709,7,'2006-02-15 05:07:09'),(710,8,'2006-02-15 05:07:09'),(711,14,'2006-02-15 05:07:09'),(712,6,'2006-02-15 05:07:09'),(713,6,'2006-02-15 05:07:09'),(714,14,'2006-02-15 05:07:09'),(715,8,'2006-02-15 05:07:09'),(716,11,'2006-02-15 05:07:09'),(717,1,'2006-02-15 05:07:09'),(718,12,'2006-02-15 05:07:09'),(719,15,'2006-02-15 05:07:09'),(720,13,'2006-02-15 05:07:09'),(721,12,'2006-02-15 05:07:09'),(722,11,'2006-02-15 05:07:09'),(723,14,'2006-02-15 05:07:09'),(724,8,'2006-02-15 05:07:09'),(725,4,'2006-02-15 05:07:09'),(726,9,'2006-02-15 05:07:09'),(727,8,'2006-02-15 05:07:09'),(728,7,'2006-02-15 05:07:09'),(729,15,'2006-02-15 05:07:09'),(730,13,'2006-02-15 05:07:09'),(731,4,'2006-02-15 05:07:09'),(732,1,'2006-02-15 05:07:09'),(733,15,'2006-02-15 05:07:09'),(734,6,'2006-02-15 05:07:09'),(735,3,'2006-02-15 05:07:09'),(736,8,'2006-02-15 05:07:09'),(737,11,'2006-02-15 05:07:09'),(738,9,'2006-02-15 05:07:09'),(739,7,'2006-02-15 05:07:09'),(740,11,'2006-02-15 05:07:09'),(741,12,'2006-02-15 05:07:09'),(742,10,'2006-02-15 05:07:09'),(743,2,'2006-02-15 05:07:09'),(744,4,'2006-02-15 05:07:09'),(745,15,'2006-02-15 05:07:09'),(746,10,'2006-02-15 05:07:09'),(747,10,'2006-02-15 05:07:09'),(748,1,'2006-02-15 05:07:09'),(749,11,'2006-02-15 05:07:09'),(750,13,'2006-02-15 05:07:09'),(751,13,'2006-02-15 05:07:09'),(752,12,'2006-02-15 05:07:09'),(753,8,'2006-02-15 05:07:09'),(754,5,'2006-02-15 05:07:09'),(755,3,'2006-02-15 05:07:09'),(756,5,'2006-02-15 05:07:09'),(757,6,'2006-02-15 05:07:09'),(758,7,'2006-02-15 05:07:09'),(759,13,'2006-02-15 05:07:09'),(760,13,'2006-02-15 05:07:09'),(761,3,'2006-02-15 05:07:09'),(762,10,'2006-02-15 05:07:09'),(763,15,'2006-02-15 05:07:09'),(764,15,'2006-02-15 05:07:09'),(765,5,'2006-02-15 05:07:09'),(766,7,'2006-02-15 05:07:09'),(767,12,'2006-02-15 05:07:09'),(768,3,'2006-02-15 05:07:09'),(769,9,'2006-02-15 05:07:09'),(770,9,'2006-02-15 05:07:09'),(771,7,'2006-02-15 05:07:09'),(772,7,'2006-02-15 05:07:09'),(773,15,'2006-02-15 05:07:09'),(774,5,'2006-02-15 05:07:09'),(775,7,'2006-02-15 05:07:09'),(776,6,'2006-02-15 05:07:09'),(777,15,'2006-02-15 05:07:09'),(778,8,'2006-02-15 05:07:09'),(779,15,'2006-02-15 05:07:09'),(780,8,'2006-02-15 05:07:09'),(781,10,'2006-02-15 05:07:09'),(782,15,'2006-02-15 05:07:09'),(783,16,'2006-02-15 05:07:09'),(784,16,'2006-02-15 05:07:09'),(785,16,'2006-02-15 05:07:09'),(786,3,'2006-02-15 05:07:09'),(787,16,'2006-02-15 05:07:09'),(788,6,'2006-02-15 05:07:09'),(789,9,'2006-02-15 05:07:09'),(790,7,'2006-02-15 05:07:09'),(791,6,'2006-02-15 05:07:09'),(792,9,'2006-02-15 05:07:09'),(793,1,'2006-02-15 05:07:09'),(794,1,'2006-02-15 05:07:09'),(795,8,'2006-02-15 05:07:09'),(796,15,'2006-02-15 05:07:09'),(797,12,'2006-02-15 05:07:09'),(798,14,'2006-02-15 05:07:09'),(799,11,'2006-02-15 05:07:09'),(800,11,'2006-02-15 05:07:09'),(801,3,'2006-02-15 05:07:09'),(802,1,'2006-02-15 05:07:09'),(803,7,'2006-02-15 05:07:09'),(804,11,'2006-02-15 05:07:09'),(805,2,'2006-02-15 05:07:09'),(806,13,'2006-02-15 05:07:09'),(807,10,'2006-02-15 05:07:09'),(808,4,'2006-02-15 05:07:09'),(809,15,'2006-02-15 05:07:09'),(810,8,'2006-02-15 05:07:09'),(811,16,'2006-02-15 05:07:09'),(812,6,'2006-02-15 05:07:09'),(813,15,'2006-02-15 05:07:09'),(814,5,'2006-02-15 05:07:09'),(815,4,'2006-02-15 05:07:09'),(816,2,'2006-02-15 05:07:09'),(817,14,'2006-02-15 05:07:09'),(818,7,'2006-02-15 05:07:09'),(819,12,'2006-02-15 05:07:09'),(820,2,'2006-02-15 05:07:09'),(821,9,'2006-02-15 05:07:09'),(822,8,'2006-02-15 05:07:09'),(823,1,'2006-02-15 05:07:09'),(824,8,'2006-02-15 05:07:09'),(825,1,'2006-02-15 05:07:09'),(826,16,'2006-02-15 05:07:09'),(827,7,'2006-02-15 05:07:09'),(828,4,'2006-02-15 05:07:09'),(829,8,'2006-02-15 05:07:09'),(830,11,'2006-02-15 05:07:09'),(831,14,'2006-02-15 05:07:09'),(832,8,'2006-02-15 05:07:09'),(833,3,'2006-02-15 05:07:09'),(834,6,'2006-02-15 05:07:09'),(835,10,'2006-02-15 05:07:09'),(836,15,'2006-02-15 05:07:09'),(837,5,'2006-02-15 05:07:09'),(838,1,'2006-02-15 05:07:09'),(839,14,'2006-02-15 05:07:09'),(840,10,'2006-02-15 05:07:09'),(841,15,'2006-02-15 05:07:09'),(842,10,'2006-02-15 05:07:09'),(843,4,'2006-02-15 05:07:09'),(844,15,'2006-02-15 05:07:09'),(845,9,'2006-02-15 05:07:09'),(846,13,'2006-02-15 05:07:09'),(847,13,'2006-02-15 05:07:09'),(848,16,'2006-02-15 05:07:09'),(849,2,'2006-02-15 05:07:09'),(850,1,'2006-02-15 05:07:09'),(851,15,'2006-02-15 05:07:09'),(852,3,'2006-02-15 05:07:09'),(853,3,'2006-02-15 05:07:09'),(854,11,'2006-02-15 05:07:09'),(855,6,'2006-02-15 05:07:09'),(856,11,'2006-02-15 05:07:09'),(857,5,'2006-02-15 05:07:09'),(858,5,'2006-02-15 05:07:09'),(859,2,'2006-02-15 05:07:09'),(860,14,'2006-02-15 05:07:09'),(861,10,'2006-02-15 05:07:09'),(862,4,'2006-02-15 05:07:09'),(863,14,'2006-02-15 05:07:09'),(864,3,'2006-02-15 05:07:09'),(865,2,'2006-02-15 05:07:09'),(866,8,'2006-02-15 05:07:09'),(867,8,'2006-02-15 05:07:09'),(868,16,'2006-02-15 05:07:09'),(869,1,'2006-02-15 05:07:09'),(870,11,'2006-02-15 05:07:09'),(871,5,'2006-02-15 05:07:09'),(872,16,'2006-02-15 05:07:09'),(873,3,'2006-02-15 05:07:09'),(874,4,'2006-02-15 05:07:09'),(875,15,'2006-02-15 05:07:09'),(876,11,'2006-02-15 05:07:09'),(877,12,'2006-02-15 05:07:09'),(878,16,'2006-02-15 05:07:09'),(879,12,'2006-02-15 05:07:09'),(880,2,'2006-02-15 05:07:09'),(881,11,'2006-02-15 05:07:09'),(882,7,'2006-02-15 05:07:09'),(883,3,'2006-02-15 05:07:09'),(884,12,'2006-02-15 05:07:09'),(885,11,'2006-02-15 05:07:09'),(886,2,'2006-02-15 05:07:09'),(887,2,'2006-02-15 05:07:09'),(888,6,'2006-02-15 05:07:09'),(889,3,'2006-02-15 05:07:09'),(890,15,'2006-02-15 05:07:09'),(891,4,'2006-02-15 05:07:09'),(892,2,'2006-02-15 05:07:09'),(893,14,'2006-02-15 05:07:09'),(894,16,'2006-02-15 05:07:09'),(895,4,'2006-02-15 05:07:09'),(896,3,'2006-02-15 05:07:09'),(897,7,'2006-02-15 05:07:09'),(898,15,'2006-02-15 05:07:09'),(899,4,'2006-02-15 05:07:09'),(900,9,'2006-02-15 05:07:09'),(901,2,'2006-02-15 05:07:09'),(902,15,'2006-02-15 05:07:09'),(903,16,'2006-02-15 05:07:09'),(904,11,'2006-02-15 05:07:09'),(905,5,'2006-02-15 05:07:09'),(906,5,'2006-02-15 05:07:09'),(907,7,'2006-02-15 05:07:09'),(908,9,'2006-02-15 05:07:09'),(909,11,'2006-02-15 05:07:09'),(910,7,'2006-02-15 05:07:09'),(911,1,'2006-02-15 05:07:09'),(912,14,'2006-02-15 05:07:09'),(913,13,'2006-02-15 05:07:09'),(914,16,'2006-02-15 05:07:09'),(915,1,'2006-02-15 05:07:09'),(916,2,'2006-02-15 05:07:09'),(917,15,'2006-02-15 05:07:09'),(918,3,'2006-02-15 05:07:09'),(919,10,'2006-02-15 05:07:09'),(920,13,'2006-02-15 05:07:09'),(921,12,'2006-02-15 05:07:09'),(922,11,'2006-02-15 05:07:09'),(923,7,'2006-02-15 05:07:09'),(924,14,'2006-02-15 05:07:09'),(925,6,'2006-02-15 05:07:09'),(926,6,'2006-02-15 05:07:09'),(927,1,'2006-02-15 05:07:09'),(928,3,'2006-02-15 05:07:09'),(929,9,'2006-02-15 05:07:09'),(930,14,'2006-02-15 05:07:09'),(931,16,'2006-02-15 05:07:09'),(932,5,'2006-02-15 05:07:09'),(933,13,'2006-02-15 05:07:09'),(934,10,'2006-02-15 05:07:09'),(935,13,'2006-02-15 05:07:09'),(936,12,'2006-02-15 05:07:09'),(937,13,'2006-02-15 05:07:09'),(938,5,'2006-02-15 05:07:09'),(939,5,'2006-02-15 05:07:09'),(940,15,'2006-02-15 05:07:09'),(941,10,'2006-02-15 05:07:09'),(942,7,'2006-02-15 05:07:09'),(943,6,'2006-02-15 05:07:09'),(944,7,'2006-02-15 05:07:09'),(945,6,'2006-02-15 05:07:09'),(946,8,'2006-02-15 05:07:09'),(947,9,'2006-02-15 05:07:09'),(948,13,'2006-02-15 05:07:09'),(949,10,'2006-02-15 05:07:09'),(950,4,'2006-02-15 05:07:09'),(951,4,'2006-02-15 05:07:09'),(952,6,'2006-02-15 05:07:09'),(953,2,'2006-02-15 05:07:09'),(954,13,'2006-02-15 05:07:09'),(955,3,'2006-02-15 05:07:09'),(956,10,'2006-02-15 05:07:09'),(957,9,'2006-02-15 05:07:09'),(958,7,'2006-02-15 05:07:09'),(959,3,'2006-02-15 05:07:09'),(960,6,'2006-02-15 05:07:09'),(961,9,'2006-02-15 05:07:09'),(962,4,'2006-02-15 05:07:09'),(963,2,'2006-02-15 05:07:09'),(964,1,'2006-02-15 05:07:09'),(965,11,'2006-02-15 05:07:09'),(966,6,'2006-02-15 05:07:09'),(967,14,'2006-02-15 05:07:09'),(968,1,'2006-02-15 05:07:09'),(969,7,'2006-02-15 05:07:09'),(970,4,'2006-02-15 05:07:09'),(971,9,'2006-02-15 05:07:09'),(972,14,'2006-02-15 05:07:09'),(973,6,'2006-02-15 05:07:09'),(974,13,'2006-02-15 05:07:09'),(975,8,'2006-02-15 05:07:09'),(976,10,'2006-02-15 05:07:09'),(977,16,'2006-02-15 05:07:09'),(978,5,'2006-02-15 05:07:09'),(979,7,'2006-02-15 05:07:09'),(980,12,'2006-02-15 05:07:09'),(981,16,'2006-02-15 05:07:09'),(982,1,'2006-02-15 05:07:09'),(983,12,'2006-02-15 05:07:09'),(984,9,'2006-02-15 05:07:09'),(985,14,'2006-02-15 05:07:09'),(986,2,'2006-02-15 05:07:09'),(987,12,'2006-02-15 05:07:09'),(988,16,'2006-02-15 05:07:09'),(989,16,'2006-02-15 05:07:09'),(990,11,'2006-02-15 05:07:09'),(991,1,'2006-02-15 05:07:09'),(992,6,'2006-02-15 05:07:09'),(993,3,'2006-02-15 05:07:09'),(994,13,'2006-02-15 05:07:09'),(995,11,'2006-02-15 05:07:09'),(996,6,'2006-02-15 05:07:09'),(997,12,'2006-02-15 05:07:09'),(998,11,'2006-02-15 05:07:09'),(999,3,'2006-02-15 05:07:09'),(1000,5,'2006-02-15 05:07:09'); + +INSERT INTO inventory VALUES (1,1,1,'2006-02-15 05:09:17'),(2,1,1,'2006-02-15 05:09:17'),(3,1,1,'2006-02-15 05:09:17'),(4,1,1,'2006-02-15 05:09:17'),(5,1,2,'2006-02-15 05:09:17'),(6,1,2,'2006-02-15 05:09:17'),(7,1,2,'2006-02-15 05:09:17'),(8,1,2,'2006-02-15 05:09:17'),(9,2,2,'2006-02-15 05:09:17'),(10,2,2,'2006-02-15 05:09:17'),(11,2,2,'2006-02-15 05:09:17'),(12,3,2,'2006-02-15 05:09:17'),(13,3,2,'2006-02-15 05:09:17'),(14,3,2,'2006-02-15 05:09:17'),(15,3,2,'2006-02-15 05:09:17'),(16,4,1,'2006-02-15 05:09:17'),(17,4,1,'2006-02-15 05:09:17'),(18,4,1,'2006-02-15 05:09:17'),(19,4,1,'2006-02-15 05:09:17'),(20,4,2,'2006-02-15 05:09:17'),(21,4,2,'2006-02-15 05:09:17'),(22,4,2,'2006-02-15 05:09:17'),(23,5,2,'2006-02-15 05:09:17'),(24,5,2,'2006-02-15 05:09:17'),(25,5,2,'2006-02-15 05:09:17'),(26,6,1,'2006-02-15 05:09:17'),(27,6,1,'2006-02-15 05:09:17'),(28,6,1,'2006-02-15 05:09:17'),(29,6,2,'2006-02-15 05:09:17'),(30,6,2,'2006-02-15 05:09:17'),(31,6,2,'2006-02-15 05:09:17'),(32,7,1,'2006-02-15 05:09:17'),(33,7,1,'2006-02-15 05:09:17'),(34,7,2,'2006-02-15 05:09:17'),(35,7,2,'2006-02-15 05:09:17'),(36,7,2,'2006-02-15 05:09:17'),(37,8,2,'2006-02-15 05:09:17'),(38,8,2,'2006-02-15 05:09:17'),(39,8,2,'2006-02-15 05:09:17'),(40,8,2,'2006-02-15 05:09:17'),(41,9,1,'2006-02-15 05:09:17'),(42,9,1,'2006-02-15 05:09:17'),(43,9,1,'2006-02-15 05:09:17'),(44,9,2,'2006-02-15 05:09:17'),(45,9,2,'2006-02-15 05:09:17'),(46,10,1,'2006-02-15 05:09:17'),(47,10,1,'2006-02-15 05:09:17'),(48,10,1,'2006-02-15 05:09:17'),(49,10,1,'2006-02-15 05:09:17'),(50,10,2,'2006-02-15 05:09:17'),(51,10,2,'2006-02-15 05:09:17'),(52,10,2,'2006-02-15 05:09:17'),(53,11,1,'2006-02-15 05:09:17'),(54,11,1,'2006-02-15 05:09:17'),(55,11,1,'2006-02-15 05:09:17'),(56,11,1,'2006-02-15 05:09:17'),(57,11,2,'2006-02-15 05:09:17'),(58,11,2,'2006-02-15 05:09:17'),(59,11,2,'2006-02-15 05:09:17'),(60,12,1,'2006-02-15 05:09:17'),(61,12,1,'2006-02-15 05:09:17'),(62,12,1,'2006-02-15 05:09:17'),(63,12,2,'2006-02-15 05:09:17'),(64,12,2,'2006-02-15 05:09:17'),(65,12,2,'2006-02-15 05:09:17'),(66,12,2,'2006-02-15 05:09:17'),(67,13,2,'2006-02-15 05:09:17'),(68,13,2,'2006-02-15 05:09:17'),(69,13,2,'2006-02-15 05:09:17'),(70,13,2,'2006-02-15 05:09:17'),(71,15,1,'2006-02-15 05:09:17'),(72,15,1,'2006-02-15 05:09:17'),(73,15,2,'2006-02-15 05:09:17'),(74,15,2,'2006-02-15 05:09:17'),(75,15,2,'2006-02-15 05:09:17'),(76,15,2,'2006-02-15 05:09:17'),(77,16,1,'2006-02-15 05:09:17'),(78,16,1,'2006-02-15 05:09:17'),(79,16,2,'2006-02-15 05:09:17'),(80,16,2,'2006-02-15 05:09:17'),(81,17,1,'2006-02-15 05:09:17'),(82,17,1,'2006-02-15 05:09:17'),(83,17,1,'2006-02-15 05:09:17'),(84,17,2,'2006-02-15 05:09:17'),(85,17,2,'2006-02-15 05:09:17'),(86,17,2,'2006-02-15 05:09:17'),(87,18,1,'2006-02-15 05:09:17'),(88,18,1,'2006-02-15 05:09:17'),(89,18,1,'2006-02-15 05:09:17'),(90,18,2,'2006-02-15 05:09:17'),(91,18,2,'2006-02-15 05:09:17'),(92,18,2,'2006-02-15 05:09:17'),(93,19,1,'2006-02-15 05:09:17'),(94,19,1,'2006-02-15 05:09:17'),(95,19,1,'2006-02-15 05:09:17'),(96,19,1,'2006-02-15 05:09:17'),(97,19,2,'2006-02-15 05:09:17'),(98,19,2,'2006-02-15 05:09:17'),(99,20,1,'2006-02-15 05:09:17'),(100,20,1,'2006-02-15 05:09:17'),(101,20,1,'2006-02-15 05:09:17'),(102,21,1,'2006-02-15 05:09:17'),(103,21,1,'2006-02-15 05:09:17'),(104,21,2,'2006-02-15 05:09:17'),(105,21,2,'2006-02-15 05:09:17'),(106,21,2,'2006-02-15 05:09:17'),(107,21,2,'2006-02-15 05:09:17'),(108,22,1,'2006-02-15 05:09:17'),(109,22,1,'2006-02-15 05:09:17'),(110,22,1,'2006-02-15 05:09:17'),(111,22,1,'2006-02-15 05:09:17'),(112,22,2,'2006-02-15 05:09:17'),(113,22,2,'2006-02-15 05:09:17'),(114,22,2,'2006-02-15 05:09:17'),(115,23,1,'2006-02-15 05:09:17'),(116,23,1,'2006-02-15 05:09:17'),(117,23,1,'2006-02-15 05:09:17'),(118,23,2,'2006-02-15 05:09:17'),(119,23,2,'2006-02-15 05:09:17'),(120,24,1,'2006-02-15 05:09:17'),(121,24,1,'2006-02-15 05:09:17'),(122,24,1,'2006-02-15 05:09:17'),(123,24,1,'2006-02-15 05:09:17'),(124,25,1,'2006-02-15 05:09:17'),(125,25,1,'2006-02-15 05:09:17'),(126,25,1,'2006-02-15 05:09:17'),(127,25,1,'2006-02-15 05:09:17'),(128,25,2,'2006-02-15 05:09:17'),(129,25,2,'2006-02-15 05:09:17'),(130,26,1,'2006-02-15 05:09:17'),(131,26,1,'2006-02-15 05:09:17'),(132,26,2,'2006-02-15 05:09:17'),(133,26,2,'2006-02-15 05:09:17'),(134,26,2,'2006-02-15 05:09:17'),(135,27,1,'2006-02-15 05:09:17'),(136,27,1,'2006-02-15 05:09:17'),(137,27,1,'2006-02-15 05:09:17'),(138,27,1,'2006-02-15 05:09:17'),(139,28,1,'2006-02-15 05:09:17'),(140,28,1,'2006-02-15 05:09:17'),(141,28,1,'2006-02-15 05:09:17'),(142,29,1,'2006-02-15 05:09:17'),(143,29,1,'2006-02-15 05:09:17'),(144,30,1,'2006-02-15 05:09:17'),(145,30,1,'2006-02-15 05:09:17'),(146,31,1,'2006-02-15 05:09:17'),(147,31,1,'2006-02-15 05:09:17'),(148,31,1,'2006-02-15 05:09:17'),(149,31,1,'2006-02-15 05:09:17'),(150,31,2,'2006-02-15 05:09:17'),(151,31,2,'2006-02-15 05:09:17'),(152,31,2,'2006-02-15 05:09:17'),(153,31,2,'2006-02-15 05:09:17'),(154,32,2,'2006-02-15 05:09:17'),(155,32,2,'2006-02-15 05:09:17'),(156,34,2,'2006-02-15 05:09:17'),(157,34,2,'2006-02-15 05:09:17'),(158,34,2,'2006-02-15 05:09:17'),(159,34,2,'2006-02-15 05:09:17'),(160,35,1,'2006-02-15 05:09:17'),(161,35,1,'2006-02-15 05:09:17'),(162,35,1,'2006-02-15 05:09:17'),(163,35,1,'2006-02-15 05:09:17'),(164,35,2,'2006-02-15 05:09:17'),(165,35,2,'2006-02-15 05:09:17'),(166,35,2,'2006-02-15 05:09:17'),(167,37,1,'2006-02-15 05:09:17'),(168,37,1,'2006-02-15 05:09:17'),(169,37,1,'2006-02-15 05:09:17'),(170,37,1,'2006-02-15 05:09:17'),(171,37,2,'2006-02-15 05:09:17'),(172,37,2,'2006-02-15 05:09:17'),(173,37,2,'2006-02-15 05:09:17'),(174,39,1,'2006-02-15 05:09:17'),(175,39,1,'2006-02-15 05:09:17'),(176,39,1,'2006-02-15 05:09:17'),(177,39,2,'2006-02-15 05:09:17'),(178,39,2,'2006-02-15 05:09:17'),(179,39,2,'2006-02-15 05:09:17'),(180,39,2,'2006-02-15 05:09:17'),(181,40,2,'2006-02-15 05:09:17'),(182,40,2,'2006-02-15 05:09:17'),(183,40,2,'2006-02-15 05:09:17'),(184,40,2,'2006-02-15 05:09:17'),(185,42,2,'2006-02-15 05:09:17'),(186,42,2,'2006-02-15 05:09:17'),(187,42,2,'2006-02-15 05:09:17'),(188,42,2,'2006-02-15 05:09:17'),(189,43,1,'2006-02-15 05:09:17'),(190,43,1,'2006-02-15 05:09:17'),(191,43,1,'2006-02-15 05:09:17'),(192,43,2,'2006-02-15 05:09:17'),(193,43,2,'2006-02-15 05:09:17'),(194,43,2,'2006-02-15 05:09:17'),(195,43,2,'2006-02-15 05:09:17'),(196,44,1,'2006-02-15 05:09:17'),(197,44,1,'2006-02-15 05:09:17'),(198,44,2,'2006-02-15 05:09:17'),(199,44,2,'2006-02-15 05:09:17'),(200,44,2,'2006-02-15 05:09:17'),(201,45,1,'2006-02-15 05:09:17'),(202,45,1,'2006-02-15 05:09:17'),(203,45,1,'2006-02-15 05:09:17'),(204,45,1,'2006-02-15 05:09:17'),(205,45,2,'2006-02-15 05:09:17'),(206,45,2,'2006-02-15 05:09:17'),(207,46,2,'2006-02-15 05:09:17'),(208,46,2,'2006-02-15 05:09:17'),(209,46,2,'2006-02-15 05:09:17'),(210,47,2,'2006-02-15 05:09:17'),(211,47,2,'2006-02-15 05:09:17'),(212,48,1,'2006-02-15 05:09:17'),(213,48,1,'2006-02-15 05:09:17'),(214,48,2,'2006-02-15 05:09:17'),(215,48,2,'2006-02-15 05:09:17'),(216,49,1,'2006-02-15 05:09:17'),(217,49,1,'2006-02-15 05:09:17'),(218,49,1,'2006-02-15 05:09:17'),(219,49,2,'2006-02-15 05:09:17'),(220,49,2,'2006-02-15 05:09:17'),(221,49,2,'2006-02-15 05:09:17'),(222,50,1,'2006-02-15 05:09:17'),(223,50,1,'2006-02-15 05:09:17'),(224,50,1,'2006-02-15 05:09:17'),(225,50,2,'2006-02-15 05:09:17'),(226,50,2,'2006-02-15 05:09:17'),(227,51,1,'2006-02-15 05:09:17'),(228,51,1,'2006-02-15 05:09:17'),(229,51,2,'2006-02-15 05:09:17'),(230,51,2,'2006-02-15 05:09:17'),(231,51,2,'2006-02-15 05:09:17'),(232,51,2,'2006-02-15 05:09:17'),(233,52,2,'2006-02-15 05:09:17'),(234,52,2,'2006-02-15 05:09:17'),(235,53,1,'2006-02-15 05:09:17'),(236,53,1,'2006-02-15 05:09:17'),(237,54,1,'2006-02-15 05:09:17'),(238,54,1,'2006-02-15 05:09:17'),(239,54,1,'2006-02-15 05:09:17'),(240,54,2,'2006-02-15 05:09:17'),(241,54,2,'2006-02-15 05:09:17'),(242,55,1,'2006-02-15 05:09:17'),(243,55,1,'2006-02-15 05:09:17'),(244,55,1,'2006-02-15 05:09:17'),(245,55,1,'2006-02-15 05:09:17'),(246,55,2,'2006-02-15 05:09:17'),(247,55,2,'2006-02-15 05:09:17'),(248,56,1,'2006-02-15 05:09:17'),(249,56,1,'2006-02-15 05:09:17'),(250,56,1,'2006-02-15 05:09:17'),(251,56,2,'2006-02-15 05:09:17'),(252,56,2,'2006-02-15 05:09:17'),(253,57,1,'2006-02-15 05:09:17'),(254,57,1,'2006-02-15 05:09:17'),(255,57,1,'2006-02-15 05:09:17'),(256,57,1,'2006-02-15 05:09:17'),(257,57,2,'2006-02-15 05:09:17'),(258,57,2,'2006-02-15 05:09:17'),(259,57,2,'2006-02-15 05:09:17'),(260,58,2,'2006-02-15 05:09:17'),(261,58,2,'2006-02-15 05:09:17'),(262,58,2,'2006-02-15 05:09:17'),(263,58,2,'2006-02-15 05:09:17'),(264,59,1,'2006-02-15 05:09:17'),(265,59,1,'2006-02-15 05:09:17'),(266,59,1,'2006-02-15 05:09:17'),(267,59,2,'2006-02-15 05:09:17'),(268,59,2,'2006-02-15 05:09:17'),(269,60,1,'2006-02-15 05:09:17'),(270,60,1,'2006-02-15 05:09:17'),(271,60,1,'2006-02-15 05:09:17'),(272,61,1,'2006-02-15 05:09:17'),(273,61,1,'2006-02-15 05:09:17'),(274,61,1,'2006-02-15 05:09:17'),(275,61,1,'2006-02-15 05:09:17'),(276,61,2,'2006-02-15 05:09:17'),(277,61,2,'2006-02-15 05:09:17'),(278,62,2,'2006-02-15 05:09:17'),(279,62,2,'2006-02-15 05:09:17'),(280,63,1,'2006-02-15 05:09:17'),(281,63,1,'2006-02-15 05:09:17'),(282,63,2,'2006-02-15 05:09:17'),(283,63,2,'2006-02-15 05:09:17'),(284,64,2,'2006-02-15 05:09:17'),(285,64,2,'2006-02-15 05:09:17'),(286,64,2,'2006-02-15 05:09:17'),(287,65,2,'2006-02-15 05:09:17'),(288,65,2,'2006-02-15 05:09:17'),(289,65,2,'2006-02-15 05:09:17'),(290,65,2,'2006-02-15 05:09:17'),(291,66,1,'2006-02-15 05:09:17'),(292,66,1,'2006-02-15 05:09:17'),(293,66,1,'2006-02-15 05:09:17'),(294,67,1,'2006-02-15 05:09:17'),(295,67,1,'2006-02-15 05:09:17'),(296,67,2,'2006-02-15 05:09:17'),(297,67,2,'2006-02-15 05:09:17'),(298,67,2,'2006-02-15 05:09:17'),(299,67,2,'2006-02-15 05:09:17'),(300,68,1,'2006-02-15 05:09:17'),(301,68,1,'2006-02-15 05:09:17'),(302,68,2,'2006-02-15 05:09:17'),(303,68,2,'2006-02-15 05:09:17'),(304,69,1,'2006-02-15 05:09:17'),(305,69,1,'2006-02-15 05:09:17'),(306,69,1,'2006-02-15 05:09:17'),(307,69,1,'2006-02-15 05:09:17'),(308,69,2,'2006-02-15 05:09:17'),(309,69,2,'2006-02-15 05:09:17'),(310,69,2,'2006-02-15 05:09:17'),(311,69,2,'2006-02-15 05:09:17'),(312,70,1,'2006-02-15 05:09:17'),(313,70,1,'2006-02-15 05:09:17'),(314,70,2,'2006-02-15 05:09:17'),(315,70,2,'2006-02-15 05:09:17'),(316,71,2,'2006-02-15 05:09:17'),(317,71,2,'2006-02-15 05:09:17'),(318,71,2,'2006-02-15 05:09:17'),(319,71,2,'2006-02-15 05:09:17'),(320,72,1,'2006-02-15 05:09:17'),(321,72,1,'2006-02-15 05:09:17'),(322,72,1,'2006-02-15 05:09:17'),(323,72,1,'2006-02-15 05:09:17'),(324,72,2,'2006-02-15 05:09:17'),(325,72,2,'2006-02-15 05:09:17'),(326,73,1,'2006-02-15 05:09:17'),(327,73,1,'2006-02-15 05:09:17'),(328,73,1,'2006-02-15 05:09:17'),(329,73,1,'2006-02-15 05:09:17'),(330,73,2,'2006-02-15 05:09:17'),(331,73,2,'2006-02-15 05:09:17'),(332,73,2,'2006-02-15 05:09:17'),(333,73,2,'2006-02-15 05:09:17'),(334,74,1,'2006-02-15 05:09:17'),(335,74,1,'2006-02-15 05:09:17'),(336,74,1,'2006-02-15 05:09:17'),(337,74,2,'2006-02-15 05:09:17'),(338,74,2,'2006-02-15 05:09:17'),(339,75,2,'2006-02-15 05:09:17'),(340,75,2,'2006-02-15 05:09:17'),(341,75,2,'2006-02-15 05:09:17'),(342,76,1,'2006-02-15 05:09:17'),(343,76,1,'2006-02-15 05:09:17'),(344,76,1,'2006-02-15 05:09:17'),(345,77,1,'2006-02-15 05:09:17'),(346,77,1,'2006-02-15 05:09:17'),(347,77,1,'2006-02-15 05:09:17'),(348,77,1,'2006-02-15 05:09:17'),(349,77,2,'2006-02-15 05:09:17'),(350,77,2,'2006-02-15 05:09:17'),(351,78,1,'2006-02-15 05:09:17'),(352,78,1,'2006-02-15 05:09:17'),(353,78,1,'2006-02-15 05:09:17'),(354,78,2,'2006-02-15 05:09:17'),(355,78,2,'2006-02-15 05:09:17'),(356,78,2,'2006-02-15 05:09:17'),(357,78,2,'2006-02-15 05:09:17'),(358,79,1,'2006-02-15 05:09:17'),(359,79,1,'2006-02-15 05:09:17'),(360,79,1,'2006-02-15 05:09:17'),(361,79,2,'2006-02-15 05:09:17'),(362,79,2,'2006-02-15 05:09:17'),(363,79,2,'2006-02-15 05:09:17'),(364,80,1,'2006-02-15 05:09:17'),(365,80,1,'2006-02-15 05:09:17'),(366,80,1,'2006-02-15 05:09:17'),(367,80,1,'2006-02-15 05:09:17'),(368,81,1,'2006-02-15 05:09:17'),(369,81,1,'2006-02-15 05:09:17'),(370,81,1,'2006-02-15 05:09:17'),(371,81,1,'2006-02-15 05:09:17'),(372,82,1,'2006-02-15 05:09:17'),(373,82,1,'2006-02-15 05:09:17'),(374,83,1,'2006-02-15 05:09:17'),(375,83,1,'2006-02-15 05:09:17'),(376,83,1,'2006-02-15 05:09:17'),(377,83,2,'2006-02-15 05:09:17'),(378,83,2,'2006-02-15 05:09:17'),(379,84,1,'2006-02-15 05:09:17'),(380,84,1,'2006-02-15 05:09:17'),(381,84,1,'2006-02-15 05:09:17'),(382,84,1,'2006-02-15 05:09:17'),(383,85,2,'2006-02-15 05:09:17'),(384,85,2,'2006-02-15 05:09:17'),(385,85,2,'2006-02-15 05:09:17'),(386,85,2,'2006-02-15 05:09:17'),(387,86,1,'2006-02-15 05:09:17'),(388,86,1,'2006-02-15 05:09:17'),(389,86,1,'2006-02-15 05:09:17'),(390,86,1,'2006-02-15 05:09:17'),(391,86,2,'2006-02-15 05:09:17'),(392,86,2,'2006-02-15 05:09:17'),(393,86,2,'2006-02-15 05:09:17'),(394,86,2,'2006-02-15 05:09:17'),(395,88,2,'2006-02-15 05:09:17'),(396,88,2,'2006-02-15 05:09:17'),(397,88,2,'2006-02-15 05:09:17'),(398,88,2,'2006-02-15 05:09:17'),(399,89,1,'2006-02-15 05:09:17'),(400,89,1,'2006-02-15 05:09:17'),(401,89,1,'2006-02-15 05:09:17'),(402,89,2,'2006-02-15 05:09:17'),(403,89,2,'2006-02-15 05:09:17'),(404,89,2,'2006-02-15 05:09:17'),(405,90,1,'2006-02-15 05:09:17'),(406,90,1,'2006-02-15 05:09:17'),(407,90,1,'2006-02-15 05:09:17'),(408,90,2,'2006-02-15 05:09:17'),(409,90,2,'2006-02-15 05:09:17'),(410,90,2,'2006-02-15 05:09:17'),(411,91,1,'2006-02-15 05:09:17'),(412,91,1,'2006-02-15 05:09:17'),(413,91,1,'2006-02-15 05:09:17'),(414,91,1,'2006-02-15 05:09:17'),(415,91,2,'2006-02-15 05:09:17'),(416,91,2,'2006-02-15 05:09:17'),(417,91,2,'2006-02-15 05:09:17'),(418,91,2,'2006-02-15 05:09:17'),(419,92,1,'2006-02-15 05:09:17'),(420,92,1,'2006-02-15 05:09:17'),(421,92,2,'2006-02-15 05:09:17'),(422,92,2,'2006-02-15 05:09:17'),(423,93,2,'2006-02-15 05:09:17'),(424,93,2,'2006-02-15 05:09:17'),(425,93,2,'2006-02-15 05:09:17'),(426,94,1,'2006-02-15 05:09:17'),(427,94,1,'2006-02-15 05:09:17'),(428,95,1,'2006-02-15 05:09:17'),(429,95,1,'2006-02-15 05:09:17'),(430,95,2,'2006-02-15 05:09:17'),(431,95,2,'2006-02-15 05:09:17'),(432,95,2,'2006-02-15 05:09:17'),(433,96,1,'2006-02-15 05:09:17'),(434,96,1,'2006-02-15 05:09:17'),(435,96,1,'2006-02-15 05:09:17'),(436,97,1,'2006-02-15 05:09:17'),(437,97,1,'2006-02-15 05:09:17'),(438,97,1,'2006-02-15 05:09:17'),(439,97,1,'2006-02-15 05:09:17'),(440,97,2,'2006-02-15 05:09:17'),(441,97,2,'2006-02-15 05:09:17'),(442,98,1,'2006-02-15 05:09:17'),(443,98,1,'2006-02-15 05:09:17'),(444,98,1,'2006-02-15 05:09:17'),(445,99,1,'2006-02-15 05:09:17'),(446,99,1,'2006-02-15 05:09:17'),(447,99,1,'2006-02-15 05:09:17'),(448,99,2,'2006-02-15 05:09:17'),(449,99,2,'2006-02-15 05:09:17'),(450,99,2,'2006-02-15 05:09:17'),(451,100,1,'2006-02-15 05:09:17'),(452,100,1,'2006-02-15 05:09:17'),(453,100,1,'2006-02-15 05:09:17'),(454,100,1,'2006-02-15 05:09:17'),(455,100,2,'2006-02-15 05:09:17'),(456,100,2,'2006-02-15 05:09:17'),(457,101,1,'2006-02-15 05:09:17'),(458,101,1,'2006-02-15 05:09:17'),(459,101,1,'2006-02-15 05:09:17'),(460,101,1,'2006-02-15 05:09:17'),(461,101,2,'2006-02-15 05:09:17'),(462,101,2,'2006-02-15 05:09:17'),(463,102,2,'2006-02-15 05:09:17'),(464,102,2,'2006-02-15 05:09:17'),(465,103,1,'2006-02-15 05:09:17'),(466,103,1,'2006-02-15 05:09:17'),(467,103,1,'2006-02-15 05:09:17'),(468,103,1,'2006-02-15 05:09:17'),(469,103,2,'2006-02-15 05:09:17'),(470,103,2,'2006-02-15 05:09:17'),(471,103,2,'2006-02-15 05:09:17'),(472,103,2,'2006-02-15 05:09:17'),(473,104,2,'2006-02-15 05:09:17'),(474,104,2,'2006-02-15 05:09:17'),(475,104,2,'2006-02-15 05:09:17'),(476,105,1,'2006-02-15 05:09:17'),(477,105,1,'2006-02-15 05:09:17'),(478,105,2,'2006-02-15 05:09:17'),(479,105,2,'2006-02-15 05:09:17'),(480,105,2,'2006-02-15 05:09:17'),(481,106,1,'2006-02-15 05:09:17'),(482,106,1,'2006-02-15 05:09:17'),(483,107,2,'2006-02-15 05:09:17'),(484,107,2,'2006-02-15 05:09:17'),(485,109,1,'2006-02-15 05:09:17'),(486,109,1,'2006-02-15 05:09:17'),(487,109,1,'2006-02-15 05:09:17'),(488,109,1,'2006-02-15 05:09:17'),(489,109,2,'2006-02-15 05:09:17'),(490,109,2,'2006-02-15 05:09:17'),(491,109,2,'2006-02-15 05:09:17'),(492,109,2,'2006-02-15 05:09:17'),(493,110,1,'2006-02-15 05:09:17'),(494,110,1,'2006-02-15 05:09:17'),(495,110,1,'2006-02-15 05:09:17'),(496,110,1,'2006-02-15 05:09:17'),(497,111,2,'2006-02-15 05:09:17'),(498,111,2,'2006-02-15 05:09:17'),(499,111,2,'2006-02-15 05:09:17'),(500,111,2,'2006-02-15 05:09:17'),(501,112,1,'2006-02-15 05:09:17'),(502,112,1,'2006-02-15 05:09:17'),(503,112,1,'2006-02-15 05:09:17'),(504,112,1,'2006-02-15 05:09:17'),(505,112,2,'2006-02-15 05:09:17'),(506,112,2,'2006-02-15 05:09:17'),(507,112,2,'2006-02-15 05:09:17'),(508,113,2,'2006-02-15 05:09:17'),(509,113,2,'2006-02-15 05:09:17'),(510,113,2,'2006-02-15 05:09:17'),(511,113,2,'2006-02-15 05:09:17'),(512,114,1,'2006-02-15 05:09:17'),(513,114,1,'2006-02-15 05:09:17'),(514,114,1,'2006-02-15 05:09:17'),(515,114,1,'2006-02-15 05:09:17'),(516,114,2,'2006-02-15 05:09:17'),(517,114,2,'2006-02-15 05:09:17'),(518,114,2,'2006-02-15 05:09:17'),(519,115,1,'2006-02-15 05:09:17'),(520,115,1,'2006-02-15 05:09:17'),(521,115,1,'2006-02-15 05:09:17'),(522,115,2,'2006-02-15 05:09:17'),(523,115,2,'2006-02-15 05:09:17'),(524,115,2,'2006-02-15 05:09:17'),(525,115,2,'2006-02-15 05:09:17'),(526,116,1,'2006-02-15 05:09:17'),(527,116,1,'2006-02-15 05:09:17'),(528,116,2,'2006-02-15 05:09:17'),(529,116,2,'2006-02-15 05:09:17'),(530,116,2,'2006-02-15 05:09:17'),(531,116,2,'2006-02-15 05:09:17'),(532,117,1,'2006-02-15 05:09:17'),(533,117,1,'2006-02-15 05:09:17'),(534,117,1,'2006-02-15 05:09:17'),(535,117,1,'2006-02-15 05:09:17'),(536,117,2,'2006-02-15 05:09:17'),(537,117,2,'2006-02-15 05:09:17'),(538,118,1,'2006-02-15 05:09:17'),(539,118,1,'2006-02-15 05:09:17'),(540,118,1,'2006-02-15 05:09:17'),(541,118,1,'2006-02-15 05:09:17'),(542,118,2,'2006-02-15 05:09:17'),(543,118,2,'2006-02-15 05:09:17'),(544,119,1,'2006-02-15 05:09:17'),(545,119,1,'2006-02-15 05:09:17'),(546,119,1,'2006-02-15 05:09:17'),(547,119,2,'2006-02-15 05:09:17'),(548,119,2,'2006-02-15 05:09:17'),(549,119,2,'2006-02-15 05:09:17'),(550,119,2,'2006-02-15 05:09:17'),(551,120,1,'2006-02-15 05:09:17'),(552,120,1,'2006-02-15 05:09:17'),(553,120,1,'2006-02-15 05:09:17'),(554,121,1,'2006-02-15 05:09:17'),(555,121,1,'2006-02-15 05:09:17'),(556,121,1,'2006-02-15 05:09:17'),(557,121,2,'2006-02-15 05:09:17'),(558,121,2,'2006-02-15 05:09:17'),(559,121,2,'2006-02-15 05:09:17'),(560,122,1,'2006-02-15 05:09:17'),(561,122,1,'2006-02-15 05:09:17'),(562,122,1,'2006-02-15 05:09:17'),(563,122,1,'2006-02-15 05:09:17'),(564,122,2,'2006-02-15 05:09:17'),(565,122,2,'2006-02-15 05:09:17'),(566,122,2,'2006-02-15 05:09:17'),(567,123,1,'2006-02-15 05:09:17'),(568,123,1,'2006-02-15 05:09:17'),(569,123,2,'2006-02-15 05:09:17'),(570,123,2,'2006-02-15 05:09:17'),(571,123,2,'2006-02-15 05:09:17'),(572,124,2,'2006-02-15 05:09:17'),(573,124,2,'2006-02-15 05:09:17'),(574,124,2,'2006-02-15 05:09:17'),(575,125,2,'2006-02-15 05:09:17'),(576,125,2,'2006-02-15 05:09:17'),(577,126,2,'2006-02-15 05:09:17'),(578,126,2,'2006-02-15 05:09:17'),(579,126,2,'2006-02-15 05:09:17'),(580,127,1,'2006-02-15 05:09:17'),(581,127,1,'2006-02-15 05:09:17'),(582,127,1,'2006-02-15 05:09:17'),(583,127,1,'2006-02-15 05:09:17'),(584,127,2,'2006-02-15 05:09:17'),(585,127,2,'2006-02-15 05:09:17'),(586,127,2,'2006-02-15 05:09:17'),(587,127,2,'2006-02-15 05:09:17'),(588,129,1,'2006-02-15 05:09:17'),(589,129,1,'2006-02-15 05:09:17'),(590,129,1,'2006-02-15 05:09:17'),(591,129,2,'2006-02-15 05:09:17'),(592,129,2,'2006-02-15 05:09:17'),(593,129,2,'2006-02-15 05:09:17'),(594,130,1,'2006-02-15 05:09:17'),(595,130,1,'2006-02-15 05:09:17'),(596,130,2,'2006-02-15 05:09:17'),(597,130,2,'2006-02-15 05:09:17'),(598,130,2,'2006-02-15 05:09:17'),(599,130,2,'2006-02-15 05:09:17'),(600,131,1,'2006-02-15 05:09:17'),(601,131,1,'2006-02-15 05:09:17'),(602,131,1,'2006-02-15 05:09:17'),(603,131,1,'2006-02-15 05:09:17'),(604,131,2,'2006-02-15 05:09:17'),(605,131,2,'2006-02-15 05:09:17'),(606,132,1,'2006-02-15 05:09:17'),(607,132,1,'2006-02-15 05:09:17'),(608,132,1,'2006-02-15 05:09:17'),(609,132,1,'2006-02-15 05:09:17'),(610,132,2,'2006-02-15 05:09:17'),(611,132,2,'2006-02-15 05:09:17'),(612,133,1,'2006-02-15 05:09:17'),(613,133,1,'2006-02-15 05:09:17'),(614,133,2,'2006-02-15 05:09:17'),(615,133,2,'2006-02-15 05:09:17'),(616,134,2,'2006-02-15 05:09:17'),(617,134,2,'2006-02-15 05:09:17'),(618,134,2,'2006-02-15 05:09:17'),(619,135,1,'2006-02-15 05:09:17'),(620,135,1,'2006-02-15 05:09:17'),(621,135,1,'2006-02-15 05:09:17'),(622,135,2,'2006-02-15 05:09:17'),(623,135,2,'2006-02-15 05:09:17'),(624,135,2,'2006-02-15 05:09:17'),(625,135,2,'2006-02-15 05:09:17'),(626,136,1,'2006-02-15 05:09:17'),(627,136,1,'2006-02-15 05:09:17'),(628,136,1,'2006-02-15 05:09:17'),(629,137,2,'2006-02-15 05:09:17'),(630,137,2,'2006-02-15 05:09:17'),(631,137,2,'2006-02-15 05:09:17'),(632,137,2,'2006-02-15 05:09:17'),(633,138,1,'2006-02-15 05:09:17'),(634,138,1,'2006-02-15 05:09:17'),(635,138,2,'2006-02-15 05:09:17'),(636,138,2,'2006-02-15 05:09:17'),(637,138,2,'2006-02-15 05:09:17'),(638,139,1,'2006-02-15 05:09:17'),(639,139,1,'2006-02-15 05:09:17'),(640,139,1,'2006-02-15 05:09:17'),(641,139,1,'2006-02-15 05:09:17'),(642,139,2,'2006-02-15 05:09:17'),(643,139,2,'2006-02-15 05:09:17'),(644,140,1,'2006-02-15 05:09:17'),(645,140,1,'2006-02-15 05:09:17'),(646,140,2,'2006-02-15 05:09:17'),(647,140,2,'2006-02-15 05:09:17'),(648,140,2,'2006-02-15 05:09:17'),(649,141,1,'2006-02-15 05:09:17'),(650,141,1,'2006-02-15 05:09:17'),(651,141,1,'2006-02-15 05:09:17'),(652,141,2,'2006-02-15 05:09:17'),(653,141,2,'2006-02-15 05:09:17'),(654,142,1,'2006-02-15 05:09:17'),(655,142,1,'2006-02-15 05:09:17'),(656,142,1,'2006-02-15 05:09:17'),(657,142,2,'2006-02-15 05:09:17'),(658,142,2,'2006-02-15 05:09:17'),(659,143,1,'2006-02-15 05:09:17'),(660,143,1,'2006-02-15 05:09:17'),(661,143,1,'2006-02-15 05:09:17'),(662,143,1,'2006-02-15 05:09:17'),(663,143,2,'2006-02-15 05:09:17'),(664,143,2,'2006-02-15 05:09:17'),(665,143,2,'2006-02-15 05:09:17'),(666,145,2,'2006-02-15 05:09:17'),(667,145,2,'2006-02-15 05:09:17'),(668,145,2,'2006-02-15 05:09:17'),(669,146,1,'2006-02-15 05:09:17'),(670,146,1,'2006-02-15 05:09:17'),(671,146,1,'2006-02-15 05:09:17'),(672,147,1,'2006-02-15 05:09:17'),(673,147,1,'2006-02-15 05:09:17'),(674,147,1,'2006-02-15 05:09:17'),(675,147,2,'2006-02-15 05:09:17'),(676,147,2,'2006-02-15 05:09:17'),(677,147,2,'2006-02-15 05:09:17'),(678,149,1,'2006-02-15 05:09:17'),(679,149,1,'2006-02-15 05:09:17'),(680,149,1,'2006-02-15 05:09:17'),(681,149,2,'2006-02-15 05:09:17'),(682,149,2,'2006-02-15 05:09:17'),(683,149,2,'2006-02-15 05:09:17'),(684,150,1,'2006-02-15 05:09:17'),(685,150,1,'2006-02-15 05:09:17'),(686,150,2,'2006-02-15 05:09:17'),(687,150,2,'2006-02-15 05:09:17'),(688,150,2,'2006-02-15 05:09:17'),(689,150,2,'2006-02-15 05:09:17'),(690,151,1,'2006-02-15 05:09:17'),(691,151,1,'2006-02-15 05:09:17'),(692,151,2,'2006-02-15 05:09:17'),(693,151,2,'2006-02-15 05:09:17'),(694,152,1,'2006-02-15 05:09:17'),(695,152,1,'2006-02-15 05:09:17'),(696,152,1,'2006-02-15 05:09:17'),(697,152,1,'2006-02-15 05:09:17'),(698,153,1,'2006-02-15 05:09:17'),(699,153,1,'2006-02-15 05:09:17'),(700,153,1,'2006-02-15 05:09:17'),(701,153,1,'2006-02-15 05:09:17'),(702,154,1,'2006-02-15 05:09:17'),(703,154,1,'2006-02-15 05:09:17'),(704,154,1,'2006-02-15 05:09:17'),(705,154,2,'2006-02-15 05:09:17'),(706,154,2,'2006-02-15 05:09:17'),(707,154,2,'2006-02-15 05:09:17'),(708,154,2,'2006-02-15 05:09:17'),(709,155,1,'2006-02-15 05:09:17'),(710,155,1,'2006-02-15 05:09:17'),(711,155,2,'2006-02-15 05:09:17'),(712,155,2,'2006-02-15 05:09:17'),(713,155,2,'2006-02-15 05:09:17'),(714,156,2,'2006-02-15 05:09:17'),(715,156,2,'2006-02-15 05:09:17'),(716,157,2,'2006-02-15 05:09:17'),(717,157,2,'2006-02-15 05:09:17'),(718,157,2,'2006-02-15 05:09:17'),(719,158,1,'2006-02-15 05:09:17'),(720,158,1,'2006-02-15 05:09:17'),(721,158,2,'2006-02-15 05:09:17'),(722,158,2,'2006-02-15 05:09:17'),(723,158,2,'2006-02-15 05:09:17'),(724,159,1,'2006-02-15 05:09:17'),(725,159,1,'2006-02-15 05:09:17'),(726,159,1,'2006-02-15 05:09:17'),(727,159,1,'2006-02-15 05:09:17'),(728,159,2,'2006-02-15 05:09:17'),(729,159,2,'2006-02-15 05:09:17'),(730,159,2,'2006-02-15 05:09:17'),(731,160,1,'2006-02-15 05:09:17'),(732,160,1,'2006-02-15 05:09:17'),(733,160,2,'2006-02-15 05:09:17'),(734,160,2,'2006-02-15 05:09:17'),(735,160,2,'2006-02-15 05:09:17'),(736,161,1,'2006-02-15 05:09:17'),(737,161,1,'2006-02-15 05:09:17'),(738,162,1,'2006-02-15 05:09:17'),(739,162,1,'2006-02-15 05:09:17'),(740,162,1,'2006-02-15 05:09:17'),(741,162,2,'2006-02-15 05:09:17'),(742,162,2,'2006-02-15 05:09:17'),(743,162,2,'2006-02-15 05:09:17'),(744,162,2,'2006-02-15 05:09:17'),(745,163,2,'2006-02-15 05:09:17'),(746,163,2,'2006-02-15 05:09:17'),(747,163,2,'2006-02-15 05:09:17'),(748,164,1,'2006-02-15 05:09:17'),(749,164,1,'2006-02-15 05:09:17'),(750,164,2,'2006-02-15 05:09:17'),(751,164,2,'2006-02-15 05:09:17'),(752,164,2,'2006-02-15 05:09:17'),(753,165,1,'2006-02-15 05:09:17'),(754,165,1,'2006-02-15 05:09:17'),(755,165,1,'2006-02-15 05:09:17'),(756,165,2,'2006-02-15 05:09:17'),(757,165,2,'2006-02-15 05:09:17'),(758,166,1,'2006-02-15 05:09:17'),(759,166,1,'2006-02-15 05:09:17'),(760,166,1,'2006-02-15 05:09:17'),(761,166,1,'2006-02-15 05:09:17'),(762,166,2,'2006-02-15 05:09:17'),(763,166,2,'2006-02-15 05:09:17'),(764,167,1,'2006-02-15 05:09:17'),(765,167,1,'2006-02-15 05:09:17'),(766,167,1,'2006-02-15 05:09:17'),(767,167,1,'2006-02-15 05:09:17'),(768,167,2,'2006-02-15 05:09:17'),(769,167,2,'2006-02-15 05:09:17'),(770,167,2,'2006-02-15 05:09:17'),(771,168,1,'2006-02-15 05:09:17'),(772,168,1,'2006-02-15 05:09:17'),(773,169,1,'2006-02-15 05:09:17'),(774,169,1,'2006-02-15 05:09:17'),(775,169,2,'2006-02-15 05:09:17'),(776,169,2,'2006-02-15 05:09:17'),(777,170,1,'2006-02-15 05:09:17'),(778,170,1,'2006-02-15 05:09:17'),(779,170,2,'2006-02-15 05:09:17'),(780,170,2,'2006-02-15 05:09:17'),(781,170,2,'2006-02-15 05:09:17'),(782,170,2,'2006-02-15 05:09:17'),(783,172,1,'2006-02-15 05:09:17'),(784,172,1,'2006-02-15 05:09:17'),(785,172,1,'2006-02-15 05:09:17'),(786,172,1,'2006-02-15 05:09:17'),(787,172,2,'2006-02-15 05:09:17'),(788,172,2,'2006-02-15 05:09:17'),(789,172,2,'2006-02-15 05:09:17'),(790,173,1,'2006-02-15 05:09:17'),(791,173,1,'2006-02-15 05:09:17'),(792,173,1,'2006-02-15 05:09:17'),(793,173,2,'2006-02-15 05:09:17'),(794,173,2,'2006-02-15 05:09:17'),(795,174,1,'2006-02-15 05:09:17'),(796,174,1,'2006-02-15 05:09:17'),(797,174,1,'2006-02-15 05:09:17'),(798,174,1,'2006-02-15 05:09:17'),(799,174,2,'2006-02-15 05:09:17'),(800,174,2,'2006-02-15 05:09:17'),(801,174,2,'2006-02-15 05:09:17'),(802,174,2,'2006-02-15 05:09:17'),(803,175,1,'2006-02-15 05:09:17'),(804,175,1,'2006-02-15 05:09:17'),(805,175,2,'2006-02-15 05:09:17'),(806,175,2,'2006-02-15 05:09:17'),(807,175,2,'2006-02-15 05:09:17'),(808,176,1,'2006-02-15 05:09:17'),(809,176,1,'2006-02-15 05:09:17'),(810,176,2,'2006-02-15 05:09:17'),(811,176,2,'2006-02-15 05:09:17'),(812,176,2,'2006-02-15 05:09:17'),(813,176,2,'2006-02-15 05:09:17'),(814,177,2,'2006-02-15 05:09:17'),(815,177,2,'2006-02-15 05:09:17'),(816,177,2,'2006-02-15 05:09:17'),(817,178,1,'2006-02-15 05:09:17'),(818,178,1,'2006-02-15 05:09:17'),(819,179,1,'2006-02-15 05:09:17'),(820,179,1,'2006-02-15 05:09:17'),(821,179,1,'2006-02-15 05:09:17'),(822,179,1,'2006-02-15 05:09:17'),(823,180,2,'2006-02-15 05:09:17'),(824,180,2,'2006-02-15 05:09:17'),(825,181,1,'2006-02-15 05:09:17'),(826,181,1,'2006-02-15 05:09:17'),(827,181,1,'2006-02-15 05:09:17'),(828,181,2,'2006-02-15 05:09:17'),(829,181,2,'2006-02-15 05:09:17'),(830,181,2,'2006-02-15 05:09:17'),(831,181,2,'2006-02-15 05:09:17'),(832,182,1,'2006-02-15 05:09:17'),(833,182,1,'2006-02-15 05:09:17'),(834,183,1,'2006-02-15 05:09:17'),(835,183,1,'2006-02-15 05:09:17'),(836,183,1,'2006-02-15 05:09:17'),(837,183,2,'2006-02-15 05:09:17'),(838,183,2,'2006-02-15 05:09:17'),(839,183,2,'2006-02-15 05:09:17'),(840,184,1,'2006-02-15 05:09:17'),(841,184,1,'2006-02-15 05:09:17'),(842,184,2,'2006-02-15 05:09:17'),(843,184,2,'2006-02-15 05:09:17'),(844,184,2,'2006-02-15 05:09:17'),(845,185,1,'2006-02-15 05:09:17'),(846,185,1,'2006-02-15 05:09:17'),(847,186,1,'2006-02-15 05:09:17'),(848,186,1,'2006-02-15 05:09:17'),(849,186,2,'2006-02-15 05:09:17'),(850,186,2,'2006-02-15 05:09:17'),(851,187,2,'2006-02-15 05:09:17'),(852,187,2,'2006-02-15 05:09:17'),(853,187,2,'2006-02-15 05:09:17'),(854,188,1,'2006-02-15 05:09:17'),(855,188,1,'2006-02-15 05:09:17'),(856,188,1,'2006-02-15 05:09:17'),(857,189,1,'2006-02-15 05:09:17'),(858,189,1,'2006-02-15 05:09:17'),(859,189,2,'2006-02-15 05:09:17'),(860,189,2,'2006-02-15 05:09:17'),(861,189,2,'2006-02-15 05:09:17'),(862,189,2,'2006-02-15 05:09:17'),(863,190,2,'2006-02-15 05:09:17'),(864,190,2,'2006-02-15 05:09:17'),(865,190,2,'2006-02-15 05:09:17'),(866,190,2,'2006-02-15 05:09:17'),(867,191,1,'2006-02-15 05:09:17'),(868,191,1,'2006-02-15 05:09:17'),(869,191,1,'2006-02-15 05:09:17'),(870,191,2,'2006-02-15 05:09:17'),(871,191,2,'2006-02-15 05:09:17'),(872,191,2,'2006-02-15 05:09:17'),(873,193,1,'2006-02-15 05:09:17'),(874,193,1,'2006-02-15 05:09:17'),(875,193,1,'2006-02-15 05:09:17'),(876,193,1,'2006-02-15 05:09:17'),(877,193,2,'2006-02-15 05:09:17'),(878,193,2,'2006-02-15 05:09:17'),(879,193,2,'2006-02-15 05:09:17'),(880,193,2,'2006-02-15 05:09:17'),(881,194,1,'2006-02-15 05:09:17'),(882,194,1,'2006-02-15 05:09:17'),(883,194,2,'2006-02-15 05:09:17'),(884,194,2,'2006-02-15 05:09:17'),(885,196,1,'2006-02-15 05:09:17'),(886,196,1,'2006-02-15 05:09:17'),(887,197,1,'2006-02-15 05:09:17'),(888,197,1,'2006-02-15 05:09:17'),(889,199,1,'2006-02-15 05:09:17'),(890,199,1,'2006-02-15 05:09:17'),(891,199,1,'2006-02-15 05:09:17'),(892,199,1,'2006-02-15 05:09:17'),(893,199,2,'2006-02-15 05:09:17'),(894,199,2,'2006-02-15 05:09:17'),(895,199,2,'2006-02-15 05:09:17'),(896,199,2,'2006-02-15 05:09:17'),(897,200,1,'2006-02-15 05:09:17'),(898,200,1,'2006-02-15 05:09:17'),(899,200,1,'2006-02-15 05:09:17'),(900,200,1,'2006-02-15 05:09:17'),(901,200,2,'2006-02-15 05:09:17'),(902,200,2,'2006-02-15 05:09:17'),(903,200,2,'2006-02-15 05:09:17'),(904,200,2,'2006-02-15 05:09:17'),(905,201,1,'2006-02-15 05:09:17'),(906,201,1,'2006-02-15 05:09:17'),(907,201,1,'2006-02-15 05:09:17'),(908,201,1,'2006-02-15 05:09:17'),(909,202,1,'2006-02-15 05:09:17'),(910,202,1,'2006-02-15 05:09:17'),(911,202,1,'2006-02-15 05:09:17'),(912,203,2,'2006-02-15 05:09:17'),(913,203,2,'2006-02-15 05:09:17'),(914,203,2,'2006-02-15 05:09:17'),(915,203,2,'2006-02-15 05:09:17'),(916,204,1,'2006-02-15 05:09:17'),(917,204,1,'2006-02-15 05:09:17'),(918,204,1,'2006-02-15 05:09:17'),(919,204,1,'2006-02-15 05:09:17'),(920,204,2,'2006-02-15 05:09:17'),(921,204,2,'2006-02-15 05:09:17'),(922,205,1,'2006-02-15 05:09:17'),(923,205,1,'2006-02-15 05:09:17'),(924,205,1,'2006-02-15 05:09:17'),(925,205,1,'2006-02-15 05:09:17'),(926,206,1,'2006-02-15 05:09:17'),(927,206,1,'2006-02-15 05:09:17'),(928,206,1,'2006-02-15 05:09:17'),(929,206,1,'2006-02-15 05:09:17'),(930,206,2,'2006-02-15 05:09:17'),(931,206,2,'2006-02-15 05:09:17'),(932,206,2,'2006-02-15 05:09:17'),(933,206,2,'2006-02-15 05:09:17'),(934,207,1,'2006-02-15 05:09:17'),(935,207,1,'2006-02-15 05:09:17'),(936,207,1,'2006-02-15 05:09:17'),(937,207,1,'2006-02-15 05:09:17'),(938,208,1,'2006-02-15 05:09:17'),(939,208,1,'2006-02-15 05:09:17'),(940,208,1,'2006-02-15 05:09:17'),(941,209,1,'2006-02-15 05:09:17'),(942,209,1,'2006-02-15 05:09:17'),(943,209,1,'2006-02-15 05:09:17'),(944,209,1,'2006-02-15 05:09:17'),(945,210,2,'2006-02-15 05:09:17'),(946,210,2,'2006-02-15 05:09:17'),(947,210,2,'2006-02-15 05:09:17'),(948,211,1,'2006-02-15 05:09:17'),(949,211,1,'2006-02-15 05:09:17'),(950,212,1,'2006-02-15 05:09:17'),(951,212,1,'2006-02-15 05:09:17'),(952,212,1,'2006-02-15 05:09:17'),(953,212,2,'2006-02-15 05:09:17'),(954,212,2,'2006-02-15 05:09:17'),(955,213,1,'2006-02-15 05:09:17'),(956,213,1,'2006-02-15 05:09:17'),(957,213,1,'2006-02-15 05:09:17'),(958,213,1,'2006-02-15 05:09:17'),(959,214,2,'2006-02-15 05:09:17'),(960,214,2,'2006-02-15 05:09:17'),(961,214,2,'2006-02-15 05:09:17'),(962,214,2,'2006-02-15 05:09:17'),(963,215,1,'2006-02-15 05:09:17'),(964,215,1,'2006-02-15 05:09:17'),(965,215,1,'2006-02-15 05:09:17'),(966,215,2,'2006-02-15 05:09:17'),(967,215,2,'2006-02-15 05:09:17'),(968,215,2,'2006-02-15 05:09:17'),(969,216,1,'2006-02-15 05:09:17'),(970,216,1,'2006-02-15 05:09:17'),(971,216,2,'2006-02-15 05:09:17'),(972,216,2,'2006-02-15 05:09:17'),(973,216,2,'2006-02-15 05:09:17'),(974,218,1,'2006-02-15 05:09:17'),(975,218,1,'2006-02-15 05:09:17'),(976,218,1,'2006-02-15 05:09:17'),(977,218,1,'2006-02-15 05:09:17'),(978,218,2,'2006-02-15 05:09:17'),(979,218,2,'2006-02-15 05:09:17'),(980,218,2,'2006-02-15 05:09:17'),(981,219,1,'2006-02-15 05:09:17'),(982,219,1,'2006-02-15 05:09:17'),(983,219,1,'2006-02-15 05:09:17'),(984,219,1,'2006-02-15 05:09:17'),(985,220,1,'2006-02-15 05:09:17'),(986,220,1,'2006-02-15 05:09:17'),(987,220,1,'2006-02-15 05:09:17'),(988,220,1,'2006-02-15 05:09:17'),(989,220,2,'2006-02-15 05:09:17'),(990,220,2,'2006-02-15 05:09:17'),(991,220,2,'2006-02-15 05:09:17'),(992,220,2,'2006-02-15 05:09:17'),(993,222,1,'2006-02-15 05:09:17'),(994,222,1,'2006-02-15 05:09:17'),(995,222,2,'2006-02-15 05:09:17'),(996,222,2,'2006-02-15 05:09:17'),(997,222,2,'2006-02-15 05:09:17'),(998,222,2,'2006-02-15 05:09:17'),(999,223,2,'2006-02-15 05:09:17'),(1000,223,2,'2006-02-15 05:09:17'),(1001,224,1,'2006-02-15 05:09:17'),(1002,224,1,'2006-02-15 05:09:17'),(1003,225,1,'2006-02-15 05:09:17'),(1004,225,1,'2006-02-15 05:09:17'),(1005,225,1,'2006-02-15 05:09:17'),(1006,226,1,'2006-02-15 05:09:17'),(1007,226,1,'2006-02-15 05:09:17'),(1008,226,2,'2006-02-15 05:09:17'),(1009,226,2,'2006-02-15 05:09:17'),(1010,226,2,'2006-02-15 05:09:17'),(1011,227,1,'2006-02-15 05:09:17'),(1012,227,1,'2006-02-15 05:09:17'),(1013,227,1,'2006-02-15 05:09:17'),(1014,227,2,'2006-02-15 05:09:17'),(1015,227,2,'2006-02-15 05:09:17'),(1016,228,1,'2006-02-15 05:09:17'),(1017,228,1,'2006-02-15 05:09:17'),(1018,228,1,'2006-02-15 05:09:17'),(1019,228,2,'2006-02-15 05:09:17'),(1020,228,2,'2006-02-15 05:09:17'),(1021,228,2,'2006-02-15 05:09:17'),(1022,228,2,'2006-02-15 05:09:17'),(1023,229,1,'2006-02-15 05:09:17'),(1024,229,1,'2006-02-15 05:09:17'),(1025,229,2,'2006-02-15 05:09:17'),(1026,229,2,'2006-02-15 05:09:17'),(1027,230,1,'2006-02-15 05:09:17'),(1028,230,1,'2006-02-15 05:09:17'),(1029,231,1,'2006-02-15 05:09:17'),(1030,231,1,'2006-02-15 05:09:17'),(1031,231,1,'2006-02-15 05:09:17'),(1032,231,1,'2006-02-15 05:09:17'),(1033,231,2,'2006-02-15 05:09:17'),(1034,231,2,'2006-02-15 05:09:17'),(1035,231,2,'2006-02-15 05:09:17'),(1036,231,2,'2006-02-15 05:09:17'),(1037,232,1,'2006-02-15 05:09:17'),(1038,232,1,'2006-02-15 05:09:17'),(1039,232,1,'2006-02-15 05:09:17'),(1040,232,2,'2006-02-15 05:09:17'),(1041,232,2,'2006-02-15 05:09:17'),(1042,233,1,'2006-02-15 05:09:17'),(1043,233,1,'2006-02-15 05:09:17'),(1044,233,1,'2006-02-15 05:09:17'),(1045,233,1,'2006-02-15 05:09:17'),(1046,233,2,'2006-02-15 05:09:17'),(1047,233,2,'2006-02-15 05:09:17'),(1048,234,1,'2006-02-15 05:09:17'),(1049,234,1,'2006-02-15 05:09:17'),(1050,234,1,'2006-02-15 05:09:17'),(1051,234,1,'2006-02-15 05:09:17'),(1052,234,2,'2006-02-15 05:09:17'),(1053,234,2,'2006-02-15 05:09:17'),(1054,234,2,'2006-02-15 05:09:17'),(1055,235,1,'2006-02-15 05:09:17'),(1056,235,1,'2006-02-15 05:09:17'),(1057,235,2,'2006-02-15 05:09:17'),(1058,235,2,'2006-02-15 05:09:17'),(1059,235,2,'2006-02-15 05:09:17'),(1060,235,2,'2006-02-15 05:09:17'),(1061,236,2,'2006-02-15 05:09:17'),(1062,236,2,'2006-02-15 05:09:17'),(1063,236,2,'2006-02-15 05:09:17'),(1064,236,2,'2006-02-15 05:09:17'),(1065,237,1,'2006-02-15 05:09:17'),(1066,237,1,'2006-02-15 05:09:17'),(1067,238,1,'2006-02-15 05:09:17'),(1068,238,1,'2006-02-15 05:09:17'),(1069,239,1,'2006-02-15 05:09:17'),(1070,239,1,'2006-02-15 05:09:17'),(1071,239,1,'2006-02-15 05:09:17'),(1072,239,1,'2006-02-15 05:09:17'),(1073,239,2,'2006-02-15 05:09:17'),(1074,239,2,'2006-02-15 05:09:17'),(1075,239,2,'2006-02-15 05:09:17'),(1076,239,2,'2006-02-15 05:09:17'),(1077,240,2,'2006-02-15 05:09:17'),(1078,240,2,'2006-02-15 05:09:17'),(1079,240,2,'2006-02-15 05:09:17'),(1080,241,1,'2006-02-15 05:09:17'),(1081,241,1,'2006-02-15 05:09:17'),(1082,241,1,'2006-02-15 05:09:17'),(1083,241,1,'2006-02-15 05:09:17'),(1084,242,1,'2006-02-15 05:09:17'),(1085,242,1,'2006-02-15 05:09:17'),(1086,242,2,'2006-02-15 05:09:17'),(1087,242,2,'2006-02-15 05:09:17'),(1088,242,2,'2006-02-15 05:09:17'),(1089,243,1,'2006-02-15 05:09:17'),(1090,243,1,'2006-02-15 05:09:17'),(1091,243,2,'2006-02-15 05:09:17'),(1092,243,2,'2006-02-15 05:09:17'),(1093,243,2,'2006-02-15 05:09:17'),(1094,243,2,'2006-02-15 05:09:17'),(1095,244,1,'2006-02-15 05:09:17'),(1096,244,1,'2006-02-15 05:09:17'),(1097,244,1,'2006-02-15 05:09:17'),(1098,244,1,'2006-02-15 05:09:17'),(1099,244,2,'2006-02-15 05:09:17'),(1100,244,2,'2006-02-15 05:09:17'),(1101,244,2,'2006-02-15 05:09:17'),(1102,245,1,'2006-02-15 05:09:17'),(1103,245,1,'2006-02-15 05:09:17'),(1104,245,1,'2006-02-15 05:09:17'),(1105,245,2,'2006-02-15 05:09:17'),(1106,245,2,'2006-02-15 05:09:17'),(1107,245,2,'2006-02-15 05:09:17'),(1108,245,2,'2006-02-15 05:09:17'),(1109,246,2,'2006-02-15 05:09:17'),(1110,246,2,'2006-02-15 05:09:17'),(1111,246,2,'2006-02-15 05:09:17'),(1112,247,1,'2006-02-15 05:09:17'),(1113,247,1,'2006-02-15 05:09:17'),(1114,247,1,'2006-02-15 05:09:17'),(1115,247,2,'2006-02-15 05:09:17'),(1116,247,2,'2006-02-15 05:09:17'),(1117,247,2,'2006-02-15 05:09:17'),(1118,247,2,'2006-02-15 05:09:17'),(1119,248,2,'2006-02-15 05:09:17'),(1120,248,2,'2006-02-15 05:09:17'),(1121,249,1,'2006-02-15 05:09:17'),(1122,249,1,'2006-02-15 05:09:17'),(1123,249,2,'2006-02-15 05:09:17'),(1124,249,2,'2006-02-15 05:09:17'),(1125,249,2,'2006-02-15 05:09:17'),(1126,249,2,'2006-02-15 05:09:17'),(1127,250,2,'2006-02-15 05:09:17'),(1128,250,2,'2006-02-15 05:09:17'),(1129,250,2,'2006-02-15 05:09:17'),(1130,250,2,'2006-02-15 05:09:17'),(1131,251,1,'2006-02-15 05:09:17'),(1132,251,1,'2006-02-15 05:09:17'),(1133,251,2,'2006-02-15 05:09:17'),(1134,251,2,'2006-02-15 05:09:17'),(1135,251,2,'2006-02-15 05:09:17'),(1136,252,1,'2006-02-15 05:09:17'),(1137,252,1,'2006-02-15 05:09:17'),(1138,252,1,'2006-02-15 05:09:17'),(1139,252,2,'2006-02-15 05:09:17'),(1140,252,2,'2006-02-15 05:09:17'),(1141,252,2,'2006-02-15 05:09:17'),(1142,253,1,'2006-02-15 05:09:17'),(1143,253,1,'2006-02-15 05:09:17'),(1144,253,1,'2006-02-15 05:09:17'),(1145,253,1,'2006-02-15 05:09:17'),(1146,253,2,'2006-02-15 05:09:17'),(1147,253,2,'2006-02-15 05:09:17'),(1148,254,1,'2006-02-15 05:09:17'),(1149,254,1,'2006-02-15 05:09:17'),(1150,254,2,'2006-02-15 05:09:17'),(1151,254,2,'2006-02-15 05:09:17'),(1152,254,2,'2006-02-15 05:09:17'),(1153,255,1,'2006-02-15 05:09:17'),(1154,255,1,'2006-02-15 05:09:17'),(1155,255,1,'2006-02-15 05:09:17'),(1156,255,1,'2006-02-15 05:09:17'),(1157,255,2,'2006-02-15 05:09:17'),(1158,255,2,'2006-02-15 05:09:17'),(1159,256,2,'2006-02-15 05:09:17'),(1160,256,2,'2006-02-15 05:09:17'),(1161,256,2,'2006-02-15 05:09:17'),(1162,257,2,'2006-02-15 05:09:17'),(1163,257,2,'2006-02-15 05:09:17'),(1164,257,2,'2006-02-15 05:09:17'),(1165,258,2,'2006-02-15 05:09:17'),(1166,258,2,'2006-02-15 05:09:17'),(1167,258,2,'2006-02-15 05:09:17'),(1168,258,2,'2006-02-15 05:09:17'),(1169,259,1,'2006-02-15 05:09:17'),(1170,259,1,'2006-02-15 05:09:17'),(1171,260,2,'2006-02-15 05:09:17'),(1172,260,2,'2006-02-15 05:09:17'),(1173,260,2,'2006-02-15 05:09:17'),(1174,260,2,'2006-02-15 05:09:17'),(1175,261,1,'2006-02-15 05:09:17'),(1176,261,1,'2006-02-15 05:09:17'),(1177,262,2,'2006-02-15 05:09:17'),(1178,262,2,'2006-02-15 05:09:17'),(1179,263,1,'2006-02-15 05:09:17'),(1180,263,1,'2006-02-15 05:09:17'),(1181,263,1,'2006-02-15 05:09:17'),(1182,263,1,'2006-02-15 05:09:17'),(1183,263,2,'2006-02-15 05:09:17'),(1184,263,2,'2006-02-15 05:09:17'),(1185,263,2,'2006-02-15 05:09:17'),(1186,264,2,'2006-02-15 05:09:17'),(1187,264,2,'2006-02-15 05:09:17'),(1188,265,1,'2006-02-15 05:09:17'),(1189,265,1,'2006-02-15 05:09:17'),(1190,265,1,'2006-02-15 05:09:17'),(1191,265,1,'2006-02-15 05:09:17'),(1192,266,1,'2006-02-15 05:09:17'),(1193,266,1,'2006-02-15 05:09:17'),(1194,266,1,'2006-02-15 05:09:17'),(1195,266,1,'2006-02-15 05:09:17'),(1196,266,2,'2006-02-15 05:09:17'),(1197,266,2,'2006-02-15 05:09:17'),(1198,266,2,'2006-02-15 05:09:17'),(1199,266,2,'2006-02-15 05:09:17'),(1200,267,1,'2006-02-15 05:09:17'),(1201,267,1,'2006-02-15 05:09:17'),(1202,267,1,'2006-02-15 05:09:17'),(1203,267,1,'2006-02-15 05:09:17'),(1204,267,2,'2006-02-15 05:09:17'),(1205,267,2,'2006-02-15 05:09:17'),(1206,268,2,'2006-02-15 05:09:17'),(1207,268,2,'2006-02-15 05:09:17'),(1208,269,1,'2006-02-15 05:09:17'),(1209,269,1,'2006-02-15 05:09:17'),(1210,269,2,'2006-02-15 05:09:17'),(1211,269,2,'2006-02-15 05:09:17'),(1212,269,2,'2006-02-15 05:09:17'),(1213,269,2,'2006-02-15 05:09:17'),(1214,270,1,'2006-02-15 05:09:17'),(1215,270,1,'2006-02-15 05:09:17'),(1216,270,1,'2006-02-15 05:09:17'),(1217,270,2,'2006-02-15 05:09:17'),(1218,270,2,'2006-02-15 05:09:17'),(1219,270,2,'2006-02-15 05:09:17'),(1220,270,2,'2006-02-15 05:09:17'),(1221,271,1,'2006-02-15 05:09:17'),(1222,271,1,'2006-02-15 05:09:17'),(1223,271,1,'2006-02-15 05:09:17'),(1224,271,2,'2006-02-15 05:09:17'),(1225,271,2,'2006-02-15 05:09:17'),(1226,272,1,'2006-02-15 05:09:17'),(1227,272,1,'2006-02-15 05:09:17'),(1228,272,1,'2006-02-15 05:09:17'),(1229,272,1,'2006-02-15 05:09:17'),(1230,273,1,'2006-02-15 05:09:17'),(1231,273,1,'2006-02-15 05:09:17'),(1232,273,1,'2006-02-15 05:09:17'),(1233,273,1,'2006-02-15 05:09:17'),(1234,273,2,'2006-02-15 05:09:17'),(1235,273,2,'2006-02-15 05:09:17'),(1236,273,2,'2006-02-15 05:09:17'),(1237,274,1,'2006-02-15 05:09:17'),(1238,274,1,'2006-02-15 05:09:17'),(1239,274,1,'2006-02-15 05:09:17'),(1240,274,2,'2006-02-15 05:09:17'),(1241,274,2,'2006-02-15 05:09:17'),(1242,274,2,'2006-02-15 05:09:17'),(1243,274,2,'2006-02-15 05:09:17'),(1244,275,1,'2006-02-15 05:09:17'),(1245,275,1,'2006-02-15 05:09:17'),(1246,275,1,'2006-02-15 05:09:17'),(1247,275,2,'2006-02-15 05:09:17'),(1248,275,2,'2006-02-15 05:09:17'),(1249,276,1,'2006-02-15 05:09:17'),(1250,276,1,'2006-02-15 05:09:17'),(1251,276,1,'2006-02-15 05:09:17'),(1252,276,1,'2006-02-15 05:09:17'),(1253,277,1,'2006-02-15 05:09:17'),(1254,277,1,'2006-02-15 05:09:17'),(1255,277,1,'2006-02-15 05:09:17'),(1256,278,1,'2006-02-15 05:09:17'),(1257,278,1,'2006-02-15 05:09:17'),(1258,279,1,'2006-02-15 05:09:17'),(1259,279,1,'2006-02-15 05:09:17'),(1260,280,1,'2006-02-15 05:09:17'),(1261,280,1,'2006-02-15 05:09:17'),(1262,280,1,'2006-02-15 05:09:17'),(1263,280,1,'2006-02-15 05:09:17'),(1264,280,2,'2006-02-15 05:09:17'),(1265,280,2,'2006-02-15 05:09:17'),(1266,281,1,'2006-02-15 05:09:17'),(1267,281,1,'2006-02-15 05:09:17'),(1268,281,2,'2006-02-15 05:09:17'),(1269,281,2,'2006-02-15 05:09:17'),(1270,281,2,'2006-02-15 05:09:17'),(1271,281,2,'2006-02-15 05:09:17'),(1272,282,1,'2006-02-15 05:09:17'),(1273,282,1,'2006-02-15 05:09:17'),(1274,282,1,'2006-02-15 05:09:17'),(1275,282,2,'2006-02-15 05:09:17'),(1276,282,2,'2006-02-15 05:09:17'),(1277,282,2,'2006-02-15 05:09:17'),(1278,283,1,'2006-02-15 05:09:17'),(1279,283,1,'2006-02-15 05:09:17'),(1280,283,1,'2006-02-15 05:09:17'),(1281,284,1,'2006-02-15 05:09:17'),(1282,284,1,'2006-02-15 05:09:17'),(1283,284,1,'2006-02-15 05:09:17'),(1284,284,2,'2006-02-15 05:09:17'),(1285,284,2,'2006-02-15 05:09:17'),(1286,284,2,'2006-02-15 05:09:17'),(1287,284,2,'2006-02-15 05:09:17'),(1288,285,1,'2006-02-15 05:09:17'),(1289,285,1,'2006-02-15 05:09:17'),(1290,285,1,'2006-02-15 05:09:17'),(1291,285,2,'2006-02-15 05:09:17'),(1292,285,2,'2006-02-15 05:09:17'),(1293,285,2,'2006-02-15 05:09:17'),(1294,285,2,'2006-02-15 05:09:17'),(1295,286,1,'2006-02-15 05:09:17'),(1296,286,1,'2006-02-15 05:09:17'),(1297,286,2,'2006-02-15 05:09:17'),(1298,286,2,'2006-02-15 05:09:17'),(1299,286,2,'2006-02-15 05:09:17'),(1300,287,1,'2006-02-15 05:09:17'),(1301,287,1,'2006-02-15 05:09:17'),(1302,287,2,'2006-02-15 05:09:17'),(1303,287,2,'2006-02-15 05:09:17'),(1304,288,1,'2006-02-15 05:09:17'),(1305,288,1,'2006-02-15 05:09:17'),(1306,288,2,'2006-02-15 05:09:17'),(1307,288,2,'2006-02-15 05:09:17'),(1308,288,2,'2006-02-15 05:09:17'),(1309,288,2,'2006-02-15 05:09:17'),(1310,289,1,'2006-02-15 05:09:17'),(1311,289,1,'2006-02-15 05:09:17'),(1312,290,1,'2006-02-15 05:09:17'),(1313,290,1,'2006-02-15 05:09:17'),(1314,290,1,'2006-02-15 05:09:17'),(1315,291,1,'2006-02-15 05:09:17'),(1316,291,1,'2006-02-15 05:09:17'),(1317,291,1,'2006-02-15 05:09:17'),(1318,291,1,'2006-02-15 05:09:17'),(1319,292,1,'2006-02-15 05:09:17'),(1320,292,1,'2006-02-15 05:09:17'),(1321,292,1,'2006-02-15 05:09:17'),(1322,292,2,'2006-02-15 05:09:17'),(1323,292,2,'2006-02-15 05:09:17'),(1324,292,2,'2006-02-15 05:09:17'),(1325,293,1,'2006-02-15 05:09:17'),(1326,293,1,'2006-02-15 05:09:17'),(1327,293,2,'2006-02-15 05:09:17'),(1328,293,2,'2006-02-15 05:09:17'),(1329,293,2,'2006-02-15 05:09:17'),(1330,294,1,'2006-02-15 05:09:17'),(1331,294,1,'2006-02-15 05:09:17'),(1332,294,2,'2006-02-15 05:09:17'),(1333,294,2,'2006-02-15 05:09:17'),(1334,294,2,'2006-02-15 05:09:17'),(1335,295,1,'2006-02-15 05:09:17'),(1336,295,1,'2006-02-15 05:09:17'),(1337,295,1,'2006-02-15 05:09:17'),(1338,295,1,'2006-02-15 05:09:17'),(1339,295,2,'2006-02-15 05:09:17'),(1340,295,2,'2006-02-15 05:09:17'),(1341,295,2,'2006-02-15 05:09:17'),(1342,295,2,'2006-02-15 05:09:17'),(1343,296,1,'2006-02-15 05:09:17'),(1344,296,1,'2006-02-15 05:09:17'),(1345,296,1,'2006-02-15 05:09:17'),(1346,296,1,'2006-02-15 05:09:17'),(1347,297,2,'2006-02-15 05:09:17'),(1348,297,2,'2006-02-15 05:09:17'),(1349,298,1,'2006-02-15 05:09:17'),(1350,298,1,'2006-02-15 05:09:17'),(1351,298,2,'2006-02-15 05:09:17'),(1352,298,2,'2006-02-15 05:09:17'),(1353,298,2,'2006-02-15 05:09:17'),(1354,299,1,'2006-02-15 05:09:17'),(1355,299,1,'2006-02-15 05:09:17'),(1356,299,1,'2006-02-15 05:09:17'),(1357,299,1,'2006-02-15 05:09:17'),(1358,300,1,'2006-02-15 05:09:17'),(1359,300,1,'2006-02-15 05:09:17'),(1360,300,2,'2006-02-15 05:09:17'),(1361,300,2,'2006-02-15 05:09:17'),(1362,300,2,'2006-02-15 05:09:17'),(1363,300,2,'2006-02-15 05:09:17'),(1364,301,1,'2006-02-15 05:09:17'),(1365,301,1,'2006-02-15 05:09:17'),(1366,301,1,'2006-02-15 05:09:17'),(1367,301,1,'2006-02-15 05:09:17'),(1368,301,2,'2006-02-15 05:09:17'),(1369,301,2,'2006-02-15 05:09:17'),(1370,301,2,'2006-02-15 05:09:17'),(1371,301,2,'2006-02-15 05:09:17'),(1372,302,1,'2006-02-15 05:09:17'),(1373,302,1,'2006-02-15 05:09:17'),(1374,302,2,'2006-02-15 05:09:17'),(1375,302,2,'2006-02-15 05:09:17'),(1376,302,2,'2006-02-15 05:09:17'),(1377,302,2,'2006-02-15 05:09:17'),(1378,303,1,'2006-02-15 05:09:17'),(1379,303,1,'2006-02-15 05:09:17'),(1380,303,1,'2006-02-15 05:09:17'),(1381,303,1,'2006-02-15 05:09:17'),(1382,303,2,'2006-02-15 05:09:17'),(1383,303,2,'2006-02-15 05:09:17'),(1384,304,1,'2006-02-15 05:09:17'),(1385,304,1,'2006-02-15 05:09:17'),(1386,304,1,'2006-02-15 05:09:17'),(1387,304,1,'2006-02-15 05:09:17'),(1388,304,2,'2006-02-15 05:09:17'),(1389,304,2,'2006-02-15 05:09:17'),(1390,305,1,'2006-02-15 05:09:17'),(1391,305,1,'2006-02-15 05:09:17'),(1392,305,1,'2006-02-15 05:09:17'),(1393,305,1,'2006-02-15 05:09:17'),(1394,305,2,'2006-02-15 05:09:17'),(1395,305,2,'2006-02-15 05:09:17'),(1396,305,2,'2006-02-15 05:09:17'),(1397,306,1,'2006-02-15 05:09:17'),(1398,306,1,'2006-02-15 05:09:17'),(1399,306,1,'2006-02-15 05:09:17'),(1400,307,1,'2006-02-15 05:09:17'),(1401,307,1,'2006-02-15 05:09:17'),(1402,307,1,'2006-02-15 05:09:17'),(1403,307,2,'2006-02-15 05:09:17'),(1404,307,2,'2006-02-15 05:09:17'),(1405,307,2,'2006-02-15 05:09:17'),(1406,308,1,'2006-02-15 05:09:17'),(1407,308,1,'2006-02-15 05:09:17'),(1408,308,2,'2006-02-15 05:09:17'),(1409,308,2,'2006-02-15 05:09:17'),(1410,309,1,'2006-02-15 05:09:17'),(1411,309,1,'2006-02-15 05:09:17'),(1412,309,2,'2006-02-15 05:09:17'),(1413,309,2,'2006-02-15 05:09:17'),(1414,309,2,'2006-02-15 05:09:17'),(1415,309,2,'2006-02-15 05:09:17'),(1416,310,1,'2006-02-15 05:09:17'),(1417,310,1,'2006-02-15 05:09:17'),(1418,311,1,'2006-02-15 05:09:17'),(1419,311,1,'2006-02-15 05:09:17'),(1420,311,1,'2006-02-15 05:09:17'),(1421,311,2,'2006-02-15 05:09:17'),(1422,311,2,'2006-02-15 05:09:17'),(1423,311,2,'2006-02-15 05:09:17'),(1424,311,2,'2006-02-15 05:09:17'),(1425,312,2,'2006-02-15 05:09:17'),(1426,312,2,'2006-02-15 05:09:17'),(1427,312,2,'2006-02-15 05:09:17'),(1428,313,1,'2006-02-15 05:09:17'),(1429,313,1,'2006-02-15 05:09:17'),(1430,313,1,'2006-02-15 05:09:17'),(1431,313,1,'2006-02-15 05:09:17'),(1432,313,2,'2006-02-15 05:09:17'),(1433,313,2,'2006-02-15 05:09:17'),(1434,314,1,'2006-02-15 05:09:17'),(1435,314,1,'2006-02-15 05:09:17'),(1436,314,2,'2006-02-15 05:09:17'),(1437,314,2,'2006-02-15 05:09:17'),(1438,314,2,'2006-02-15 05:09:17'),(1439,314,2,'2006-02-15 05:09:17'),(1440,315,2,'2006-02-15 05:09:17'),(1441,315,2,'2006-02-15 05:09:17'),(1442,315,2,'2006-02-15 05:09:17'),(1443,316,2,'2006-02-15 05:09:17'),(1444,316,2,'2006-02-15 05:09:17'),(1445,317,1,'2006-02-15 05:09:17'),(1446,317,1,'2006-02-15 05:09:17'),(1447,317,1,'2006-02-15 05:09:17'),(1448,317,1,'2006-02-15 05:09:17'),(1449,317,2,'2006-02-15 05:09:17'),(1450,317,2,'2006-02-15 05:09:17'),(1451,317,2,'2006-02-15 05:09:17'),(1452,319,1,'2006-02-15 05:09:17'),(1453,319,1,'2006-02-15 05:09:17'),(1454,319,1,'2006-02-15 05:09:17'),(1455,319,2,'2006-02-15 05:09:17'),(1456,319,2,'2006-02-15 05:09:17'),(1457,319,2,'2006-02-15 05:09:17'),(1458,319,2,'2006-02-15 05:09:17'),(1459,320,1,'2006-02-15 05:09:17'),(1460,320,1,'2006-02-15 05:09:17'),(1461,320,1,'2006-02-15 05:09:17'),(1462,320,2,'2006-02-15 05:09:17'),(1463,320,2,'2006-02-15 05:09:17'),(1464,320,2,'2006-02-15 05:09:17'),(1465,320,2,'2006-02-15 05:09:17'),(1466,321,1,'2006-02-15 05:09:17'),(1467,321,1,'2006-02-15 05:09:17'),(1468,321,1,'2006-02-15 05:09:17'),(1469,321,1,'2006-02-15 05:09:17'),(1470,322,1,'2006-02-15 05:09:17'),(1471,322,1,'2006-02-15 05:09:17'),(1472,322,1,'2006-02-15 05:09:17'),(1473,322,1,'2006-02-15 05:09:17'),(1474,322,2,'2006-02-15 05:09:17'),(1475,322,2,'2006-02-15 05:09:17'),(1476,323,2,'2006-02-15 05:09:17'),(1477,323,2,'2006-02-15 05:09:17'),(1478,323,2,'2006-02-15 05:09:17'),(1479,323,2,'2006-02-15 05:09:17'),(1480,324,1,'2006-02-15 05:09:17'),(1481,324,1,'2006-02-15 05:09:17'),(1482,324,1,'2006-02-15 05:09:17'),(1483,324,2,'2006-02-15 05:09:17'),(1484,324,2,'2006-02-15 05:09:17'),(1485,326,1,'2006-02-15 05:09:17'),(1486,326,1,'2006-02-15 05:09:17'),(1487,326,2,'2006-02-15 05:09:17'),(1488,326,2,'2006-02-15 05:09:17'),(1489,326,2,'2006-02-15 05:09:17'),(1490,326,2,'2006-02-15 05:09:17'),(1491,327,1,'2006-02-15 05:09:17'),(1492,327,1,'2006-02-15 05:09:17'),(1493,327,1,'2006-02-15 05:09:17'),(1494,327,1,'2006-02-15 05:09:17'),(1495,327,2,'2006-02-15 05:09:17'),(1496,327,2,'2006-02-15 05:09:17'),(1497,328,2,'2006-02-15 05:09:17'),(1498,328,2,'2006-02-15 05:09:17'),(1499,328,2,'2006-02-15 05:09:17'),(1500,328,2,'2006-02-15 05:09:17'),(1501,329,1,'2006-02-15 05:09:17'),(1502,329,1,'2006-02-15 05:09:17'),(1503,329,1,'2006-02-15 05:09:17'),(1504,329,2,'2006-02-15 05:09:17'),(1505,329,2,'2006-02-15 05:09:17'),(1506,329,2,'2006-02-15 05:09:17'),(1507,330,1,'2006-02-15 05:09:17'),(1508,330,1,'2006-02-15 05:09:17'),(1509,330,1,'2006-02-15 05:09:17'),(1510,330,1,'2006-02-15 05:09:17'),(1511,330,2,'2006-02-15 05:09:17'),(1512,330,2,'2006-02-15 05:09:17'),(1513,330,2,'2006-02-15 05:09:17'),(1514,331,1,'2006-02-15 05:09:17'),(1515,331,1,'2006-02-15 05:09:17'),(1516,331,1,'2006-02-15 05:09:17'),(1517,331,1,'2006-02-15 05:09:17'),(1518,331,2,'2006-02-15 05:09:17'),(1519,331,2,'2006-02-15 05:09:17'),(1520,331,2,'2006-02-15 05:09:17'),(1521,331,2,'2006-02-15 05:09:17'),(1522,333,1,'2006-02-15 05:09:17'),(1523,333,1,'2006-02-15 05:09:17'),(1524,333,2,'2006-02-15 05:09:17'),(1525,333,2,'2006-02-15 05:09:17'),(1526,334,1,'2006-02-15 05:09:17'),(1527,334,1,'2006-02-15 05:09:17'),(1528,334,2,'2006-02-15 05:09:17'),(1529,334,2,'2006-02-15 05:09:17'),(1530,334,2,'2006-02-15 05:09:17'),(1531,334,2,'2006-02-15 05:09:17'),(1532,335,1,'2006-02-15 05:09:17'),(1533,335,1,'2006-02-15 05:09:17'),(1534,336,1,'2006-02-15 05:09:17'),(1535,336,1,'2006-02-15 05:09:17'),(1536,336,1,'2006-02-15 05:09:17'),(1537,336,2,'2006-02-15 05:09:17'),(1538,336,2,'2006-02-15 05:09:17'),(1539,337,1,'2006-02-15 05:09:17'),(1540,337,1,'2006-02-15 05:09:17'),(1541,337,2,'2006-02-15 05:09:17'),(1542,337,2,'2006-02-15 05:09:17'),(1543,338,2,'2006-02-15 05:09:17'),(1544,338,2,'2006-02-15 05:09:17'),(1545,338,2,'2006-02-15 05:09:17'),(1546,339,2,'2006-02-15 05:09:17'),(1547,339,2,'2006-02-15 05:09:17'),(1548,339,2,'2006-02-15 05:09:17'),(1549,340,1,'2006-02-15 05:09:17'),(1550,340,1,'2006-02-15 05:09:17'),(1551,341,1,'2006-02-15 05:09:17'),(1552,341,1,'2006-02-15 05:09:17'),(1553,341,1,'2006-02-15 05:09:17'),(1554,341,1,'2006-02-15 05:09:17'),(1555,341,2,'2006-02-15 05:09:17'),(1556,341,2,'2006-02-15 05:09:17'),(1557,341,2,'2006-02-15 05:09:17'),(1558,341,2,'2006-02-15 05:09:17'),(1559,342,1,'2006-02-15 05:09:17'),(1560,342,1,'2006-02-15 05:09:17'),(1561,342,1,'2006-02-15 05:09:17'),(1562,342,1,'2006-02-15 05:09:17'),(1563,343,1,'2006-02-15 05:09:17'),(1564,343,1,'2006-02-15 05:09:17'),(1565,344,1,'2006-02-15 05:09:17'),(1566,344,1,'2006-02-15 05:09:17'),(1567,344,1,'2006-02-15 05:09:17'),(1568,344,2,'2006-02-15 05:09:17'),(1569,344,2,'2006-02-15 05:09:17'),(1570,345,1,'2006-02-15 05:09:17'),(1571,345,1,'2006-02-15 05:09:17'),(1572,345,1,'2006-02-15 05:09:17'),(1573,345,2,'2006-02-15 05:09:17'),(1574,345,2,'2006-02-15 05:09:17'),(1575,346,1,'2006-02-15 05:09:17'),(1576,346,1,'2006-02-15 05:09:17'),(1577,346,2,'2006-02-15 05:09:17'),(1578,346,2,'2006-02-15 05:09:17'),(1579,346,2,'2006-02-15 05:09:17'),(1580,346,2,'2006-02-15 05:09:17'),(1581,347,1,'2006-02-15 05:09:17'),(1582,347,1,'2006-02-15 05:09:17'),(1583,347,1,'2006-02-15 05:09:17'),(1584,347,1,'2006-02-15 05:09:17'),(1585,348,2,'2006-02-15 05:09:17'),(1586,348,2,'2006-02-15 05:09:17'),(1587,348,2,'2006-02-15 05:09:17'),(1588,348,2,'2006-02-15 05:09:17'),(1589,349,1,'2006-02-15 05:09:17'),(1590,349,1,'2006-02-15 05:09:17'),(1591,349,1,'2006-02-15 05:09:17'),(1592,349,1,'2006-02-15 05:09:17'),(1593,349,2,'2006-02-15 05:09:17'),(1594,349,2,'2006-02-15 05:09:17'),(1595,349,2,'2006-02-15 05:09:17'),(1596,350,1,'2006-02-15 05:09:17'),(1597,350,1,'2006-02-15 05:09:17'),(1598,350,1,'2006-02-15 05:09:17'),(1599,350,1,'2006-02-15 05:09:17'),(1600,350,2,'2006-02-15 05:09:17'),(1601,350,2,'2006-02-15 05:09:17'),(1602,350,2,'2006-02-15 05:09:17'),(1603,350,2,'2006-02-15 05:09:17'),(1604,351,1,'2006-02-15 05:09:17'),(1605,351,1,'2006-02-15 05:09:17'),(1606,351,1,'2006-02-15 05:09:17'),(1607,351,2,'2006-02-15 05:09:17'),(1608,351,2,'2006-02-15 05:09:17'),(1609,351,2,'2006-02-15 05:09:17'),(1610,352,2,'2006-02-15 05:09:17'),(1611,352,2,'2006-02-15 05:09:17'),(1612,352,2,'2006-02-15 05:09:17'),(1613,352,2,'2006-02-15 05:09:17'),(1614,353,1,'2006-02-15 05:09:17'),(1615,353,1,'2006-02-15 05:09:17'),(1616,353,2,'2006-02-15 05:09:17'),(1617,353,2,'2006-02-15 05:09:17'),(1618,353,2,'2006-02-15 05:09:17'),(1619,353,2,'2006-02-15 05:09:17'),(1620,354,1,'2006-02-15 05:09:17'),(1621,354,1,'2006-02-15 05:09:17'),(1622,354,1,'2006-02-15 05:09:17'),(1623,354,2,'2006-02-15 05:09:17'),(1624,354,2,'2006-02-15 05:09:17'),(1625,355,2,'2006-02-15 05:09:17'),(1626,355,2,'2006-02-15 05:09:17'),(1627,356,1,'2006-02-15 05:09:17'),(1628,356,1,'2006-02-15 05:09:17'),(1629,356,1,'2006-02-15 05:09:17'),(1630,356,1,'2006-02-15 05:09:17'),(1631,356,2,'2006-02-15 05:09:17'),(1632,356,2,'2006-02-15 05:09:17'),(1633,356,2,'2006-02-15 05:09:17'),(1634,356,2,'2006-02-15 05:09:17'),(1635,357,2,'2006-02-15 05:09:17'),(1636,357,2,'2006-02-15 05:09:17'),(1637,357,2,'2006-02-15 05:09:17'),(1638,357,2,'2006-02-15 05:09:17'),(1639,358,1,'2006-02-15 05:09:17'),(1640,358,1,'2006-02-15 05:09:17'),(1641,358,1,'2006-02-15 05:09:17'),(1642,358,1,'2006-02-15 05:09:17'),(1643,358,2,'2006-02-15 05:09:17'),(1644,358,2,'2006-02-15 05:09:17'),(1645,358,2,'2006-02-15 05:09:17'),(1646,358,2,'2006-02-15 05:09:17'),(1647,360,1,'2006-02-15 05:09:17'),(1648,360,1,'2006-02-15 05:09:17'),(1649,360,1,'2006-02-15 05:09:17'),(1650,360,1,'2006-02-15 05:09:17'),(1651,361,1,'2006-02-15 05:09:17'),(1652,361,1,'2006-02-15 05:09:17'),(1653,361,1,'2006-02-15 05:09:17'),(1654,361,1,'2006-02-15 05:09:17'),(1655,361,2,'2006-02-15 05:09:17'),(1656,361,2,'2006-02-15 05:09:17'),(1657,361,2,'2006-02-15 05:09:17'),(1658,361,2,'2006-02-15 05:09:17'),(1659,362,1,'2006-02-15 05:09:17'),(1660,362,1,'2006-02-15 05:09:17'),(1661,363,1,'2006-02-15 05:09:17'),(1662,363,1,'2006-02-15 05:09:17'),(1663,363,1,'2006-02-15 05:09:17'),(1664,363,2,'2006-02-15 05:09:17'),(1665,363,2,'2006-02-15 05:09:17'),(1666,363,2,'2006-02-15 05:09:17'),(1667,364,1,'2006-02-15 05:09:17'),(1668,364,1,'2006-02-15 05:09:17'),(1669,364,1,'2006-02-15 05:09:17'),(1670,365,1,'2006-02-15 05:09:17'),(1671,365,1,'2006-02-15 05:09:17'),(1672,365,2,'2006-02-15 05:09:17'),(1673,365,2,'2006-02-15 05:09:17'),(1674,366,1,'2006-02-15 05:09:17'),(1675,366,1,'2006-02-15 05:09:17'),(1676,366,1,'2006-02-15 05:09:17'),(1677,366,1,'2006-02-15 05:09:17'),(1678,366,2,'2006-02-15 05:09:17'),(1679,366,2,'2006-02-15 05:09:17'),(1680,366,2,'2006-02-15 05:09:17'),(1681,367,1,'2006-02-15 05:09:17'),(1682,367,1,'2006-02-15 05:09:17'),(1683,367,1,'2006-02-15 05:09:17'),(1684,367,1,'2006-02-15 05:09:17'),(1685,367,2,'2006-02-15 05:09:17'),(1686,367,2,'2006-02-15 05:09:17'),(1687,367,2,'2006-02-15 05:09:17'),(1688,368,1,'2006-02-15 05:09:17'),(1689,368,1,'2006-02-15 05:09:17'),(1690,369,1,'2006-02-15 05:09:17'),(1691,369,1,'2006-02-15 05:09:17'),(1692,369,1,'2006-02-15 05:09:17'),(1693,369,1,'2006-02-15 05:09:17'),(1694,369,2,'2006-02-15 05:09:17'),(1695,369,2,'2006-02-15 05:09:17'),(1696,369,2,'2006-02-15 05:09:17'),(1697,369,2,'2006-02-15 05:09:17'),(1698,370,1,'2006-02-15 05:09:17'),(1699,370,1,'2006-02-15 05:09:17'),(1700,370,1,'2006-02-15 05:09:17'),(1701,370,2,'2006-02-15 05:09:17'),(1702,370,2,'2006-02-15 05:09:17'),(1703,371,1,'2006-02-15 05:09:17'),(1704,371,1,'2006-02-15 05:09:17'),(1705,371,1,'2006-02-15 05:09:17'),(1706,372,1,'2006-02-15 05:09:17'),(1707,372,1,'2006-02-15 05:09:17'),(1708,373,1,'2006-02-15 05:09:17'),(1709,373,1,'2006-02-15 05:09:17'),(1710,373,1,'2006-02-15 05:09:17'),(1711,373,2,'2006-02-15 05:09:17'),(1712,373,2,'2006-02-15 05:09:17'),(1713,374,1,'2006-02-15 05:09:17'),(1714,374,1,'2006-02-15 05:09:17'),(1715,374,1,'2006-02-15 05:09:17'),(1716,374,2,'2006-02-15 05:09:17'),(1717,374,2,'2006-02-15 05:09:17'),(1718,374,2,'2006-02-15 05:09:17'),(1719,374,2,'2006-02-15 05:09:17'),(1720,375,1,'2006-02-15 05:09:17'),(1721,375,1,'2006-02-15 05:09:17'),(1722,376,1,'2006-02-15 05:09:17'),(1723,376,1,'2006-02-15 05:09:17'),(1724,376,1,'2006-02-15 05:09:17'),(1725,376,1,'2006-02-15 05:09:17'),(1726,376,2,'2006-02-15 05:09:17'),(1727,376,2,'2006-02-15 05:09:17'),(1728,376,2,'2006-02-15 05:09:17'),(1729,377,1,'2006-02-15 05:09:17'),(1730,377,1,'2006-02-15 05:09:17'),(1731,377,1,'2006-02-15 05:09:17'),(1732,377,2,'2006-02-15 05:09:17'),(1733,377,2,'2006-02-15 05:09:17'),(1734,377,2,'2006-02-15 05:09:17'),(1735,378,1,'2006-02-15 05:09:17'),(1736,378,1,'2006-02-15 05:09:17'),(1737,378,1,'2006-02-15 05:09:17'),(1738,378,1,'2006-02-15 05:09:17'),(1739,378,2,'2006-02-15 05:09:17'),(1740,378,2,'2006-02-15 05:09:17'),(1741,378,2,'2006-02-15 05:09:17'),(1742,378,2,'2006-02-15 05:09:17'),(1743,379,2,'2006-02-15 05:09:17'),(1744,379,2,'2006-02-15 05:09:17'),(1745,379,2,'2006-02-15 05:09:17'),(1746,379,2,'2006-02-15 05:09:17'),(1747,380,1,'2006-02-15 05:09:17'),(1748,380,1,'2006-02-15 05:09:17'),(1749,380,2,'2006-02-15 05:09:17'),(1750,380,2,'2006-02-15 05:09:17'),(1751,380,2,'2006-02-15 05:09:17'),(1752,381,1,'2006-02-15 05:09:17'),(1753,381,1,'2006-02-15 05:09:17'),(1754,381,2,'2006-02-15 05:09:17'),(1755,381,2,'2006-02-15 05:09:17'),(1756,381,2,'2006-02-15 05:09:17'),(1757,382,1,'2006-02-15 05:09:17'),(1758,382,1,'2006-02-15 05:09:17'),(1759,382,1,'2006-02-15 05:09:17'),(1760,382,1,'2006-02-15 05:09:17'),(1761,382,2,'2006-02-15 05:09:17'),(1762,382,2,'2006-02-15 05:09:17'),(1763,382,2,'2006-02-15 05:09:17'),(1764,382,2,'2006-02-15 05:09:17'),(1765,383,1,'2006-02-15 05:09:17'),(1766,383,1,'2006-02-15 05:09:17'),(1767,383,1,'2006-02-15 05:09:17'),(1768,383,2,'2006-02-15 05:09:17'),(1769,383,2,'2006-02-15 05:09:17'),(1770,384,2,'2006-02-15 05:09:17'),(1771,384,2,'2006-02-15 05:09:17'),(1772,384,2,'2006-02-15 05:09:17'),(1773,385,1,'2006-02-15 05:09:17'),(1774,385,1,'2006-02-15 05:09:17'),(1775,385,2,'2006-02-15 05:09:17'),(1776,385,2,'2006-02-15 05:09:17'),(1777,385,2,'2006-02-15 05:09:17'),(1778,387,1,'2006-02-15 05:09:17'),(1779,387,1,'2006-02-15 05:09:17'),(1780,387,1,'2006-02-15 05:09:17'),(1781,387,2,'2006-02-15 05:09:17'),(1782,387,2,'2006-02-15 05:09:17'),(1783,387,2,'2006-02-15 05:09:17'),(1784,388,1,'2006-02-15 05:09:17'),(1785,388,1,'2006-02-15 05:09:17'),(1786,388,1,'2006-02-15 05:09:17'),(1787,388,2,'2006-02-15 05:09:17'),(1788,388,2,'2006-02-15 05:09:17'),(1789,388,2,'2006-02-15 05:09:17'),(1790,389,1,'2006-02-15 05:09:17'),(1791,389,1,'2006-02-15 05:09:17'),(1792,389,2,'2006-02-15 05:09:17'),(1793,389,2,'2006-02-15 05:09:17'),(1794,390,1,'2006-02-15 05:09:17'),(1795,390,1,'2006-02-15 05:09:17'),(1796,390,1,'2006-02-15 05:09:17'),(1797,391,1,'2006-02-15 05:09:17'),(1798,391,1,'2006-02-15 05:09:17'),(1799,391,1,'2006-02-15 05:09:17'),(1800,391,1,'2006-02-15 05:09:17'),(1801,391,2,'2006-02-15 05:09:17'),(1802,391,2,'2006-02-15 05:09:17'),(1803,391,2,'2006-02-15 05:09:17'),(1804,392,1,'2006-02-15 05:09:17'),(1805,392,1,'2006-02-15 05:09:17'),(1806,392,1,'2006-02-15 05:09:17'),(1807,392,1,'2006-02-15 05:09:17'),(1808,392,2,'2006-02-15 05:09:17'),(1809,392,2,'2006-02-15 05:09:17'),(1810,393,1,'2006-02-15 05:09:17'),(1811,393,1,'2006-02-15 05:09:17'),(1812,394,1,'2006-02-15 05:09:17'),(1813,394,1,'2006-02-15 05:09:17'),(1814,394,1,'2006-02-15 05:09:17'),(1815,394,1,'2006-02-15 05:09:17'),(1816,395,1,'2006-02-15 05:09:17'),(1817,395,1,'2006-02-15 05:09:17'),(1818,395,1,'2006-02-15 05:09:17'),(1819,395,2,'2006-02-15 05:09:17'),(1820,395,2,'2006-02-15 05:09:17'),(1821,395,2,'2006-02-15 05:09:17'),(1822,396,2,'2006-02-15 05:09:17'),(1823,396,2,'2006-02-15 05:09:17'),(1824,396,2,'2006-02-15 05:09:17'),(1825,396,2,'2006-02-15 05:09:17'),(1826,397,1,'2006-02-15 05:09:17'),(1827,397,1,'2006-02-15 05:09:17'),(1828,397,1,'2006-02-15 05:09:17'),(1829,397,2,'2006-02-15 05:09:17'),(1830,397,2,'2006-02-15 05:09:17'),(1831,397,2,'2006-02-15 05:09:17'),(1832,397,2,'2006-02-15 05:09:17'),(1833,398,2,'2006-02-15 05:09:17'),(1834,398,2,'2006-02-15 05:09:17'),(1835,398,2,'2006-02-15 05:09:17'),(1836,398,2,'2006-02-15 05:09:17'),(1837,399,2,'2006-02-15 05:09:17'),(1838,399,2,'2006-02-15 05:09:17'),(1839,400,1,'2006-02-15 05:09:17'),(1840,400,1,'2006-02-15 05:09:17'),(1841,401,1,'2006-02-15 05:09:17'),(1842,401,1,'2006-02-15 05:09:17'),(1843,402,1,'2006-02-15 05:09:17'),(1844,402,1,'2006-02-15 05:09:17'),(1845,402,1,'2006-02-15 05:09:17'),(1846,402,2,'2006-02-15 05:09:17'),(1847,402,2,'2006-02-15 05:09:17'),(1848,402,2,'2006-02-15 05:09:17'),(1849,403,1,'2006-02-15 05:09:17'),(1850,403,1,'2006-02-15 05:09:17'),(1851,403,1,'2006-02-15 05:09:17'),(1852,403,1,'2006-02-15 05:09:17'),(1853,403,2,'2006-02-15 05:09:17'),(1854,403,2,'2006-02-15 05:09:17'),(1855,403,2,'2006-02-15 05:09:17'),(1856,403,2,'2006-02-15 05:09:17'),(1857,405,2,'2006-02-15 05:09:17'),(1858,405,2,'2006-02-15 05:09:17'),(1859,406,1,'2006-02-15 05:09:17'),(1860,406,1,'2006-02-15 05:09:17'),(1861,406,2,'2006-02-15 05:09:17'),(1862,406,2,'2006-02-15 05:09:17'),(1863,406,2,'2006-02-15 05:09:17'),(1864,406,2,'2006-02-15 05:09:17'),(1865,407,1,'2006-02-15 05:09:17'),(1866,407,1,'2006-02-15 05:09:17'),(1867,408,1,'2006-02-15 05:09:17'),(1868,408,1,'2006-02-15 05:09:17'),(1869,408,1,'2006-02-15 05:09:17'),(1870,408,1,'2006-02-15 05:09:17'),(1871,408,2,'2006-02-15 05:09:17'),(1872,408,2,'2006-02-15 05:09:17'),(1873,408,2,'2006-02-15 05:09:17'),(1874,409,1,'2006-02-15 05:09:17'),(1875,409,1,'2006-02-15 05:09:17'),(1876,409,1,'2006-02-15 05:09:17'),(1877,409,1,'2006-02-15 05:09:17'),(1878,409,2,'2006-02-15 05:09:17'),(1879,409,2,'2006-02-15 05:09:17'),(1880,409,2,'2006-02-15 05:09:17'),(1881,410,1,'2006-02-15 05:09:17'),(1882,410,1,'2006-02-15 05:09:17'),(1883,410,1,'2006-02-15 05:09:17'),(1884,410,2,'2006-02-15 05:09:17'),(1885,410,2,'2006-02-15 05:09:17'),(1886,411,1,'2006-02-15 05:09:17'),(1887,411,1,'2006-02-15 05:09:17'),(1888,412,1,'2006-02-15 05:09:17'),(1889,412,1,'2006-02-15 05:09:17'),(1890,412,1,'2006-02-15 05:09:17'),(1891,412,1,'2006-02-15 05:09:17'),(1892,412,2,'2006-02-15 05:09:17'),(1893,412,2,'2006-02-15 05:09:17'),(1894,412,2,'2006-02-15 05:09:17'),(1895,412,2,'2006-02-15 05:09:17'),(1896,413,1,'2006-02-15 05:09:17'),(1897,413,1,'2006-02-15 05:09:17'),(1898,413,1,'2006-02-15 05:09:17'),(1899,414,1,'2006-02-15 05:09:17'),(1900,414,1,'2006-02-15 05:09:17'),(1901,414,1,'2006-02-15 05:09:17'),(1902,414,2,'2006-02-15 05:09:17'),(1903,414,2,'2006-02-15 05:09:17'),(1904,414,2,'2006-02-15 05:09:17'),(1905,415,1,'2006-02-15 05:09:17'),(1906,415,1,'2006-02-15 05:09:17'),(1907,415,1,'2006-02-15 05:09:17'),(1908,415,2,'2006-02-15 05:09:17'),(1909,415,2,'2006-02-15 05:09:17'),(1910,415,2,'2006-02-15 05:09:17'),(1911,416,1,'2006-02-15 05:09:17'),(1912,416,1,'2006-02-15 05:09:17'),(1913,416,2,'2006-02-15 05:09:17'),(1914,416,2,'2006-02-15 05:09:17'),(1915,416,2,'2006-02-15 05:09:17'),(1916,416,2,'2006-02-15 05:09:17'),(1917,417,1,'2006-02-15 05:09:17'),(1918,417,1,'2006-02-15 05:09:17'),(1919,417,1,'2006-02-15 05:09:17'),(1920,417,1,'2006-02-15 05:09:17'),(1921,417,2,'2006-02-15 05:09:17'),(1922,417,2,'2006-02-15 05:09:17'),(1923,418,1,'2006-02-15 05:09:17'),(1924,418,1,'2006-02-15 05:09:17'),(1925,418,1,'2006-02-15 05:09:17'),(1926,418,1,'2006-02-15 05:09:17'),(1927,418,2,'2006-02-15 05:09:17'),(1928,418,2,'2006-02-15 05:09:17'),(1929,418,2,'2006-02-15 05:09:17'),(1930,418,2,'2006-02-15 05:09:17'),(1931,420,1,'2006-02-15 05:09:17'),(1932,420,1,'2006-02-15 05:09:17'),(1933,420,2,'2006-02-15 05:09:17'),(1934,420,2,'2006-02-15 05:09:17'),(1935,420,2,'2006-02-15 05:09:17'),(1936,421,2,'2006-02-15 05:09:17'),(1937,421,2,'2006-02-15 05:09:17'),(1938,421,2,'2006-02-15 05:09:17'),(1939,421,2,'2006-02-15 05:09:17'),(1940,422,2,'2006-02-15 05:09:17'),(1941,422,2,'2006-02-15 05:09:17'),(1942,423,1,'2006-02-15 05:09:17'),(1943,423,1,'2006-02-15 05:09:17'),(1944,423,2,'2006-02-15 05:09:17'),(1945,423,2,'2006-02-15 05:09:17'),(1946,424,1,'2006-02-15 05:09:17'),(1947,424,1,'2006-02-15 05:09:17'),(1948,424,1,'2006-02-15 05:09:17'),(1949,424,2,'2006-02-15 05:09:17'),(1950,424,2,'2006-02-15 05:09:17'),(1951,425,2,'2006-02-15 05:09:17'),(1952,425,2,'2006-02-15 05:09:17'),(1953,426,2,'2006-02-15 05:09:17'),(1954,426,2,'2006-02-15 05:09:17'),(1955,426,2,'2006-02-15 05:09:17'),(1956,427,1,'2006-02-15 05:09:17'),(1957,427,1,'2006-02-15 05:09:17'),(1958,427,1,'2006-02-15 05:09:17'),(1959,427,1,'2006-02-15 05:09:17'),(1960,428,1,'2006-02-15 05:09:17'),(1961,428,1,'2006-02-15 05:09:17'),(1962,428,1,'2006-02-15 05:09:17'),(1963,428,1,'2006-02-15 05:09:17'),(1964,428,2,'2006-02-15 05:09:17'),(1965,428,2,'2006-02-15 05:09:17'),(1966,429,1,'2006-02-15 05:09:17'),(1967,429,1,'2006-02-15 05:09:17'),(1968,429,2,'2006-02-15 05:09:17'),(1969,429,2,'2006-02-15 05:09:17'),(1970,429,2,'2006-02-15 05:09:17'),(1971,429,2,'2006-02-15 05:09:17'),(1972,430,2,'2006-02-15 05:09:17'),(1973,430,2,'2006-02-15 05:09:17'),(1974,430,2,'2006-02-15 05:09:17'),(1975,430,2,'2006-02-15 05:09:17'),(1976,431,2,'2006-02-15 05:09:17'),(1977,431,2,'2006-02-15 05:09:17'),(1978,431,2,'2006-02-15 05:09:17'),(1979,432,1,'2006-02-15 05:09:17'),(1980,432,1,'2006-02-15 05:09:17'),(1981,432,1,'2006-02-15 05:09:17'),(1982,432,2,'2006-02-15 05:09:17'),(1983,432,2,'2006-02-15 05:09:17'),(1984,433,1,'2006-02-15 05:09:17'),(1985,433,1,'2006-02-15 05:09:17'),(1986,433,1,'2006-02-15 05:09:17'),(1987,433,1,'2006-02-15 05:09:17'),(1988,433,2,'2006-02-15 05:09:17'),(1989,433,2,'2006-02-15 05:09:17'),(1990,434,1,'2006-02-15 05:09:17'),(1991,434,1,'2006-02-15 05:09:17'),(1992,434,1,'2006-02-15 05:09:17'),(1993,434,1,'2006-02-15 05:09:17'),(1994,434,2,'2006-02-15 05:09:17'),(1995,434,2,'2006-02-15 05:09:17'),(1996,434,2,'2006-02-15 05:09:17'),(1997,434,2,'2006-02-15 05:09:17'),(1998,435,1,'2006-02-15 05:09:17'),(1999,435,1,'2006-02-15 05:09:17'),(2000,436,1,'2006-02-15 05:09:17'),(2001,436,1,'2006-02-15 05:09:17'),(2002,436,1,'2006-02-15 05:09:17'),(2003,436,2,'2006-02-15 05:09:17'),(2004,436,2,'2006-02-15 05:09:17'),(2005,436,2,'2006-02-15 05:09:17'),(2006,437,1,'2006-02-15 05:09:17'),(2007,437,1,'2006-02-15 05:09:17'),(2008,437,2,'2006-02-15 05:09:17'),(2009,437,2,'2006-02-15 05:09:17'),(2010,437,2,'2006-02-15 05:09:17'),(2011,437,2,'2006-02-15 05:09:17'),(2012,438,1,'2006-02-15 05:09:17'),(2013,438,1,'2006-02-15 05:09:17'),(2014,438,2,'2006-02-15 05:09:17'),(2015,438,2,'2006-02-15 05:09:17'),(2016,438,2,'2006-02-15 05:09:17'),(2017,439,1,'2006-02-15 05:09:17'),(2018,439,1,'2006-02-15 05:09:17'),(2019,439,1,'2006-02-15 05:09:17'),(2020,439,1,'2006-02-15 05:09:17'),(2021,439,2,'2006-02-15 05:09:17'),(2022,439,2,'2006-02-15 05:09:17'),(2023,440,1,'2006-02-15 05:09:17'),(2024,440,1,'2006-02-15 05:09:17'),(2025,440,2,'2006-02-15 05:09:17'),(2026,440,2,'2006-02-15 05:09:17'),(2027,441,1,'2006-02-15 05:09:17'),(2028,441,1,'2006-02-15 05:09:17'),(2029,442,1,'2006-02-15 05:09:17'),(2030,442,1,'2006-02-15 05:09:17'),(2031,442,1,'2006-02-15 05:09:17'),(2032,443,1,'2006-02-15 05:09:17'),(2033,443,1,'2006-02-15 05:09:17'),(2034,443,1,'2006-02-15 05:09:17'),(2035,443,2,'2006-02-15 05:09:17'),(2036,443,2,'2006-02-15 05:09:17'),(2037,443,2,'2006-02-15 05:09:17'),(2038,443,2,'2006-02-15 05:09:17'),(2039,444,1,'2006-02-15 05:09:17'),(2040,444,1,'2006-02-15 05:09:17'),(2041,444,1,'2006-02-15 05:09:17'),(2042,444,1,'2006-02-15 05:09:17'),(2043,444,2,'2006-02-15 05:09:17'),(2044,444,2,'2006-02-15 05:09:17'),(2045,444,2,'2006-02-15 05:09:17'),(2046,444,2,'2006-02-15 05:09:17'),(2047,445,1,'2006-02-15 05:09:17'),(2048,445,1,'2006-02-15 05:09:17'),(2049,445,1,'2006-02-15 05:09:17'),(2050,445,2,'2006-02-15 05:09:17'),(2051,445,2,'2006-02-15 05:09:17'),(2052,445,2,'2006-02-15 05:09:17'),(2053,446,1,'2006-02-15 05:09:17'),(2054,446,1,'2006-02-15 05:09:17'),(2055,446,2,'2006-02-15 05:09:17'),(2056,446,2,'2006-02-15 05:09:17'),(2057,447,1,'2006-02-15 05:09:17'),(2058,447,1,'2006-02-15 05:09:17'),(2059,447,1,'2006-02-15 05:09:17'),(2060,447,1,'2006-02-15 05:09:17'),(2061,447,2,'2006-02-15 05:09:17'),(2062,447,2,'2006-02-15 05:09:17'),(2063,447,2,'2006-02-15 05:09:17'),(2064,448,1,'2006-02-15 05:09:17'),(2065,448,1,'2006-02-15 05:09:17'),(2066,448,2,'2006-02-15 05:09:17'),(2067,448,2,'2006-02-15 05:09:17'),(2068,448,2,'2006-02-15 05:09:17'),(2069,449,2,'2006-02-15 05:09:17'),(2070,449,2,'2006-02-15 05:09:17'),(2071,449,2,'2006-02-15 05:09:17'),(2072,449,2,'2006-02-15 05:09:17'),(2073,450,1,'2006-02-15 05:09:17'),(2074,450,1,'2006-02-15 05:09:17'),(2075,450,1,'2006-02-15 05:09:17'),(2076,450,2,'2006-02-15 05:09:17'),(2077,450,2,'2006-02-15 05:09:17'),(2078,450,2,'2006-02-15 05:09:17'),(2079,450,2,'2006-02-15 05:09:17'),(2080,451,1,'2006-02-15 05:09:17'),(2081,451,1,'2006-02-15 05:09:17'),(2082,451,2,'2006-02-15 05:09:17'),(2083,451,2,'2006-02-15 05:09:17'),(2084,451,2,'2006-02-15 05:09:17'),(2085,452,2,'2006-02-15 05:09:17'),(2086,452,2,'2006-02-15 05:09:17'),(2087,452,2,'2006-02-15 05:09:17'),(2088,452,2,'2006-02-15 05:09:17'),(2089,453,1,'2006-02-15 05:09:17'),(2090,453,1,'2006-02-15 05:09:17'),(2091,453,1,'2006-02-15 05:09:17'),(2092,453,2,'2006-02-15 05:09:17'),(2093,453,2,'2006-02-15 05:09:17'),(2094,454,1,'2006-02-15 05:09:17'),(2095,454,1,'2006-02-15 05:09:17'),(2096,455,1,'2006-02-15 05:09:17'),(2097,455,1,'2006-02-15 05:09:17'),(2098,455,1,'2006-02-15 05:09:17'),(2099,455,1,'2006-02-15 05:09:17'),(2100,456,1,'2006-02-15 05:09:17'),(2101,456,1,'2006-02-15 05:09:17'),(2102,456,2,'2006-02-15 05:09:17'),(2103,456,2,'2006-02-15 05:09:17'),(2104,456,2,'2006-02-15 05:09:17'),(2105,456,2,'2006-02-15 05:09:17'),(2106,457,1,'2006-02-15 05:09:17'),(2107,457,1,'2006-02-15 05:09:17'),(2108,457,2,'2006-02-15 05:09:17'),(2109,457,2,'2006-02-15 05:09:17'),(2110,457,2,'2006-02-15 05:09:17'),(2111,457,2,'2006-02-15 05:09:17'),(2112,458,1,'2006-02-15 05:09:17'),(2113,458,1,'2006-02-15 05:09:17'),(2114,458,2,'2006-02-15 05:09:17'),(2115,458,2,'2006-02-15 05:09:17'),(2116,458,2,'2006-02-15 05:09:17'),(2117,458,2,'2006-02-15 05:09:17'),(2118,459,2,'2006-02-15 05:09:17'),(2119,459,2,'2006-02-15 05:09:17'),(2120,460,1,'2006-02-15 05:09:17'),(2121,460,1,'2006-02-15 05:09:17'),(2122,460,1,'2006-02-15 05:09:17'),(2123,460,1,'2006-02-15 05:09:17'),(2124,460,2,'2006-02-15 05:09:17'),(2125,460,2,'2006-02-15 05:09:17'),(2126,460,2,'2006-02-15 05:09:17'),(2127,460,2,'2006-02-15 05:09:17'),(2128,461,1,'2006-02-15 05:09:17'),(2129,461,1,'2006-02-15 05:09:17'),(2130,461,2,'2006-02-15 05:09:17'),(2131,461,2,'2006-02-15 05:09:17'),(2132,461,2,'2006-02-15 05:09:17'),(2133,461,2,'2006-02-15 05:09:17'),(2134,462,1,'2006-02-15 05:09:17'),(2135,462,1,'2006-02-15 05:09:17'),(2136,462,2,'2006-02-15 05:09:17'),(2137,462,2,'2006-02-15 05:09:17'),(2138,462,2,'2006-02-15 05:09:17'),(2139,463,1,'2006-02-15 05:09:17'),(2140,463,1,'2006-02-15 05:09:17'),(2141,463,1,'2006-02-15 05:09:17'),(2142,463,2,'2006-02-15 05:09:17'),(2143,463,2,'2006-02-15 05:09:17'),(2144,464,1,'2006-02-15 05:09:17'),(2145,464,1,'2006-02-15 05:09:17'),(2146,464,1,'2006-02-15 05:09:17'),(2147,464,1,'2006-02-15 05:09:17'),(2148,464,2,'2006-02-15 05:09:17'),(2149,464,2,'2006-02-15 05:09:17'),(2150,464,2,'2006-02-15 05:09:17'),(2151,465,1,'2006-02-15 05:09:17'),(2152,465,1,'2006-02-15 05:09:17'),(2153,465,2,'2006-02-15 05:09:17'),(2154,465,2,'2006-02-15 05:09:17'),(2155,465,2,'2006-02-15 05:09:17'),(2156,466,1,'2006-02-15 05:09:17'),(2157,466,1,'2006-02-15 05:09:17'),(2158,467,1,'2006-02-15 05:09:17'),(2159,467,1,'2006-02-15 05:09:17'),(2160,467,1,'2006-02-15 05:09:17'),(2161,467,1,'2006-02-15 05:09:17'),(2162,467,2,'2006-02-15 05:09:17'),(2163,467,2,'2006-02-15 05:09:17'),(2164,467,2,'2006-02-15 05:09:17'),(2165,468,1,'2006-02-15 05:09:17'),(2166,468,1,'2006-02-15 05:09:17'),(2167,468,1,'2006-02-15 05:09:17'),(2168,468,1,'2006-02-15 05:09:17'),(2169,468,2,'2006-02-15 05:09:17'),(2170,468,2,'2006-02-15 05:09:17'),(2171,468,2,'2006-02-15 05:09:17'),(2172,468,2,'2006-02-15 05:09:17'),(2173,469,2,'2006-02-15 05:09:17'),(2174,469,2,'2006-02-15 05:09:17'),(2175,469,2,'2006-02-15 05:09:17'),(2176,470,1,'2006-02-15 05:09:17'),(2177,470,1,'2006-02-15 05:09:17'),(2178,471,1,'2006-02-15 05:09:17'),(2179,471,1,'2006-02-15 05:09:17'),(2180,471,1,'2006-02-15 05:09:17'),(2181,471,2,'2006-02-15 05:09:17'),(2182,471,2,'2006-02-15 05:09:17'),(2183,471,2,'2006-02-15 05:09:17'),(2184,471,2,'2006-02-15 05:09:17'),(2185,472,2,'2006-02-15 05:09:17'),(2186,472,2,'2006-02-15 05:09:17'),(2187,473,1,'2006-02-15 05:09:17'),(2188,473,1,'2006-02-15 05:09:17'),(2189,473,2,'2006-02-15 05:09:17'),(2190,473,2,'2006-02-15 05:09:17'),(2191,473,2,'2006-02-15 05:09:17'),(2192,474,2,'2006-02-15 05:09:17'),(2193,474,2,'2006-02-15 05:09:17'),(2194,474,2,'2006-02-15 05:09:17'),(2195,474,2,'2006-02-15 05:09:17'),(2196,475,2,'2006-02-15 05:09:17'),(2197,475,2,'2006-02-15 05:09:17'),(2198,476,1,'2006-02-15 05:09:17'),(2199,476,1,'2006-02-15 05:09:17'),(2200,476,1,'2006-02-15 05:09:17'),(2201,476,2,'2006-02-15 05:09:17'),(2202,476,2,'2006-02-15 05:09:17'),(2203,476,2,'2006-02-15 05:09:17'),(2204,476,2,'2006-02-15 05:09:17'),(2205,477,2,'2006-02-15 05:09:17'),(2206,477,2,'2006-02-15 05:09:17'),(2207,477,2,'2006-02-15 05:09:17'),(2208,478,1,'2006-02-15 05:09:17'),(2209,478,1,'2006-02-15 05:09:17'),(2210,478,2,'2006-02-15 05:09:17'),(2211,478,2,'2006-02-15 05:09:17'),(2212,478,2,'2006-02-15 05:09:17'),(2213,479,1,'2006-02-15 05:09:17'),(2214,479,1,'2006-02-15 05:09:17'),(2215,479,2,'2006-02-15 05:09:17'),(2216,479,2,'2006-02-15 05:09:17'),(2217,479,2,'2006-02-15 05:09:17'),(2218,480,1,'2006-02-15 05:09:17'),(2219,480,1,'2006-02-15 05:09:17'),(2220,480,2,'2006-02-15 05:09:17'),(2221,480,2,'2006-02-15 05:09:17'),(2222,481,1,'2006-02-15 05:09:17'),(2223,481,1,'2006-02-15 05:09:17'),(2224,481,1,'2006-02-15 05:09:17'),(2225,481,2,'2006-02-15 05:09:17'),(2226,481,2,'2006-02-15 05:09:17'),(2227,481,2,'2006-02-15 05:09:17'),(2228,482,1,'2006-02-15 05:09:17'),(2229,482,1,'2006-02-15 05:09:17'),(2230,482,1,'2006-02-15 05:09:17'),(2231,483,1,'2006-02-15 05:09:17'),(2232,483,1,'2006-02-15 05:09:17'),(2233,483,1,'2006-02-15 05:09:17'),(2234,483,2,'2006-02-15 05:09:17'),(2235,483,2,'2006-02-15 05:09:17'),(2236,484,1,'2006-02-15 05:09:17'),(2237,484,1,'2006-02-15 05:09:17'),(2238,484,1,'2006-02-15 05:09:17'),(2239,484,1,'2006-02-15 05:09:17'),(2240,484,2,'2006-02-15 05:09:17'),(2241,484,2,'2006-02-15 05:09:17'),(2242,484,2,'2006-02-15 05:09:17'),(2243,485,2,'2006-02-15 05:09:17'),(2244,485,2,'2006-02-15 05:09:17'),(2245,485,2,'2006-02-15 05:09:17'),(2246,486,1,'2006-02-15 05:09:17'),(2247,486,1,'2006-02-15 05:09:17'),(2248,486,1,'2006-02-15 05:09:17'),(2249,486,1,'2006-02-15 05:09:17'),(2250,486,2,'2006-02-15 05:09:17'),(2251,486,2,'2006-02-15 05:09:17'),(2252,487,2,'2006-02-15 05:09:17'),(2253,487,2,'2006-02-15 05:09:17'),(2254,487,2,'2006-02-15 05:09:17'),(2255,488,1,'2006-02-15 05:09:17'),(2256,488,1,'2006-02-15 05:09:17'),(2257,488,2,'2006-02-15 05:09:17'),(2258,488,2,'2006-02-15 05:09:17'),(2259,488,2,'2006-02-15 05:09:17'),(2260,489,1,'2006-02-15 05:09:17'),(2261,489,1,'2006-02-15 05:09:17'),(2262,489,1,'2006-02-15 05:09:17'),(2263,489,1,'2006-02-15 05:09:17'),(2264,489,2,'2006-02-15 05:09:17'),(2265,489,2,'2006-02-15 05:09:17'),(2266,489,2,'2006-02-15 05:09:17'),(2267,489,2,'2006-02-15 05:09:17'),(2268,490,1,'2006-02-15 05:09:17'),(2269,490,1,'2006-02-15 05:09:17'),(2270,491,1,'2006-02-15 05:09:17'),(2271,491,1,'2006-02-15 05:09:17'),(2272,491,2,'2006-02-15 05:09:17'),(2273,491,2,'2006-02-15 05:09:17'),(2274,491,2,'2006-02-15 05:09:17'),(2275,491,2,'2006-02-15 05:09:17'),(2276,492,1,'2006-02-15 05:09:17'),(2277,492,1,'2006-02-15 05:09:17'),(2278,493,2,'2006-02-15 05:09:17'),(2279,493,2,'2006-02-15 05:09:17'),(2280,493,2,'2006-02-15 05:09:17'),(2281,494,1,'2006-02-15 05:09:17'),(2282,494,1,'2006-02-15 05:09:17'),(2283,494,1,'2006-02-15 05:09:17'),(2284,494,1,'2006-02-15 05:09:17'),(2285,494,2,'2006-02-15 05:09:17'),(2286,494,2,'2006-02-15 05:09:17'),(2287,496,1,'2006-02-15 05:09:17'),(2288,496,1,'2006-02-15 05:09:17'),(2289,496,2,'2006-02-15 05:09:17'),(2290,496,2,'2006-02-15 05:09:17'),(2291,496,2,'2006-02-15 05:09:17'),(2292,498,1,'2006-02-15 05:09:17'),(2293,498,1,'2006-02-15 05:09:17'),(2294,499,1,'2006-02-15 05:09:17'),(2295,499,1,'2006-02-15 05:09:17'),(2296,500,1,'2006-02-15 05:09:17'),(2297,500,1,'2006-02-15 05:09:17'),(2298,500,1,'2006-02-15 05:09:17'),(2299,500,1,'2006-02-15 05:09:17'),(2300,500,2,'2006-02-15 05:09:17'),(2301,500,2,'2006-02-15 05:09:17'),(2302,500,2,'2006-02-15 05:09:17'),(2303,500,2,'2006-02-15 05:09:17'),(2304,501,1,'2006-02-15 05:09:17'),(2305,501,1,'2006-02-15 05:09:17'),(2306,501,1,'2006-02-15 05:09:17'),(2307,501,2,'2006-02-15 05:09:17'),(2308,501,2,'2006-02-15 05:09:17'),(2309,502,1,'2006-02-15 05:09:17'),(2310,502,1,'2006-02-15 05:09:17'),(2311,502,1,'2006-02-15 05:09:17'),(2312,502,1,'2006-02-15 05:09:17'),(2313,502,2,'2006-02-15 05:09:17'),(2314,502,2,'2006-02-15 05:09:17'),(2315,502,2,'2006-02-15 05:09:17'),(2316,503,1,'2006-02-15 05:09:17'),(2317,503,1,'2006-02-15 05:09:17'),(2318,503,1,'2006-02-15 05:09:17'),(2319,504,1,'2006-02-15 05:09:17'),(2320,504,1,'2006-02-15 05:09:17'),(2321,504,1,'2006-02-15 05:09:17'),(2322,504,1,'2006-02-15 05:09:17'),(2323,504,2,'2006-02-15 05:09:17'),(2324,504,2,'2006-02-15 05:09:17'),(2325,505,2,'2006-02-15 05:09:17'),(2326,505,2,'2006-02-15 05:09:17'),(2327,505,2,'2006-02-15 05:09:17'),(2328,505,2,'2006-02-15 05:09:17'),(2329,506,1,'2006-02-15 05:09:17'),(2330,506,1,'2006-02-15 05:09:17'),(2331,506,1,'2006-02-15 05:09:17'),(2332,506,1,'2006-02-15 05:09:17'),(2333,506,2,'2006-02-15 05:09:17'),(2334,506,2,'2006-02-15 05:09:17'),(2335,507,2,'2006-02-15 05:09:17'),(2336,507,2,'2006-02-15 05:09:17'),(2337,508,2,'2006-02-15 05:09:17'),(2338,508,2,'2006-02-15 05:09:17'),(2339,508,2,'2006-02-15 05:09:17'),(2340,509,2,'2006-02-15 05:09:17'),(2341,509,2,'2006-02-15 05:09:17'),(2342,509,2,'2006-02-15 05:09:17'),(2343,510,1,'2006-02-15 05:09:17'),(2344,510,1,'2006-02-15 05:09:17'),(2345,510,1,'2006-02-15 05:09:17'),(2346,510,1,'2006-02-15 05:09:17'),(2347,511,1,'2006-02-15 05:09:17'),(2348,511,1,'2006-02-15 05:09:17'),(2349,511,2,'2006-02-15 05:09:17'),(2350,511,2,'2006-02-15 05:09:17'),(2351,511,2,'2006-02-15 05:09:17'),(2352,512,1,'2006-02-15 05:09:17'),(2353,512,1,'2006-02-15 05:09:17'),(2354,512,2,'2006-02-15 05:09:17'),(2355,512,2,'2006-02-15 05:09:17'),(2356,512,2,'2006-02-15 05:09:17'),(2357,512,2,'2006-02-15 05:09:17'),(2358,513,2,'2006-02-15 05:09:17'),(2359,513,2,'2006-02-15 05:09:17'),(2360,514,1,'2006-02-15 05:09:17'),(2361,514,1,'2006-02-15 05:09:17'),(2362,514,2,'2006-02-15 05:09:17'),(2363,514,2,'2006-02-15 05:09:17'),(2364,514,2,'2006-02-15 05:09:17'),(2365,514,2,'2006-02-15 05:09:17'),(2366,515,2,'2006-02-15 05:09:17'),(2367,515,2,'2006-02-15 05:09:17'),(2368,516,2,'2006-02-15 05:09:17'),(2369,516,2,'2006-02-15 05:09:17'),(2370,516,2,'2006-02-15 05:09:17'),(2371,517,2,'2006-02-15 05:09:17'),(2372,517,2,'2006-02-15 05:09:17'),(2373,518,1,'2006-02-15 05:09:17'),(2374,518,1,'2006-02-15 05:09:17'),(2375,518,2,'2006-02-15 05:09:17'),(2376,518,2,'2006-02-15 05:09:17'),(2377,518,2,'2006-02-15 05:09:17'),(2378,518,2,'2006-02-15 05:09:17'),(2379,519,2,'2006-02-15 05:09:17'),(2380,519,2,'2006-02-15 05:09:17'),(2381,519,2,'2006-02-15 05:09:17'),(2382,519,2,'2006-02-15 05:09:17'),(2383,520,1,'2006-02-15 05:09:17'),(2384,520,1,'2006-02-15 05:09:17'),(2385,521,1,'2006-02-15 05:09:17'),(2386,521,1,'2006-02-15 05:09:17'),(2387,521,1,'2006-02-15 05:09:17'),(2388,521,1,'2006-02-15 05:09:17'),(2389,521,2,'2006-02-15 05:09:17'),(2390,521,2,'2006-02-15 05:09:17'),(2391,521,2,'2006-02-15 05:09:17'),(2392,522,2,'2006-02-15 05:09:17'),(2393,522,2,'2006-02-15 05:09:17'),(2394,523,1,'2006-02-15 05:09:17'),(2395,523,1,'2006-02-15 05:09:17'),(2396,524,1,'2006-02-15 05:09:17'),(2397,524,1,'2006-02-15 05:09:17'),(2398,524,2,'2006-02-15 05:09:17'),(2399,524,2,'2006-02-15 05:09:17'),(2400,524,2,'2006-02-15 05:09:17'),(2401,524,2,'2006-02-15 05:09:17'),(2402,525,1,'2006-02-15 05:09:17'),(2403,525,1,'2006-02-15 05:09:17'),(2404,525,1,'2006-02-15 05:09:17'),(2405,525,1,'2006-02-15 05:09:17'),(2406,525,2,'2006-02-15 05:09:17'),(2407,525,2,'2006-02-15 05:09:17'),(2408,525,2,'2006-02-15 05:09:17'),(2409,525,2,'2006-02-15 05:09:17'),(2410,526,2,'2006-02-15 05:09:17'),(2411,526,2,'2006-02-15 05:09:17'),(2412,526,2,'2006-02-15 05:09:17'),(2413,526,2,'2006-02-15 05:09:17'),(2414,527,1,'2006-02-15 05:09:17'),(2415,527,1,'2006-02-15 05:09:17'),(2416,527,2,'2006-02-15 05:09:17'),(2417,527,2,'2006-02-15 05:09:17'),(2418,527,2,'2006-02-15 05:09:17'),(2419,527,2,'2006-02-15 05:09:17'),(2420,528,1,'2006-02-15 05:09:17'),(2421,528,1,'2006-02-15 05:09:17'),(2422,528,1,'2006-02-15 05:09:17'),(2423,529,1,'2006-02-15 05:09:17'),(2424,529,1,'2006-02-15 05:09:17'),(2425,529,1,'2006-02-15 05:09:17'),(2426,529,1,'2006-02-15 05:09:17'),(2427,530,1,'2006-02-15 05:09:17'),(2428,530,1,'2006-02-15 05:09:17'),(2429,530,1,'2006-02-15 05:09:17'),(2430,531,1,'2006-02-15 05:09:17'),(2431,531,1,'2006-02-15 05:09:17'),(2432,531,1,'2006-02-15 05:09:17'),(2433,531,1,'2006-02-15 05:09:17'),(2434,531,2,'2006-02-15 05:09:17'),(2435,531,2,'2006-02-15 05:09:17'),(2436,531,2,'2006-02-15 05:09:17'),(2437,531,2,'2006-02-15 05:09:17'),(2438,532,2,'2006-02-15 05:09:17'),(2439,532,2,'2006-02-15 05:09:17'),(2440,532,2,'2006-02-15 05:09:17'),(2441,532,2,'2006-02-15 05:09:17'),(2442,533,1,'2006-02-15 05:09:17'),(2443,533,1,'2006-02-15 05:09:17'),(2444,533,1,'2006-02-15 05:09:17'),(2445,534,1,'2006-02-15 05:09:17'),(2446,534,1,'2006-02-15 05:09:17'),(2447,534,2,'2006-02-15 05:09:17'),(2448,534,2,'2006-02-15 05:09:17'),(2449,534,2,'2006-02-15 05:09:17'),(2450,535,1,'2006-02-15 05:09:17'),(2451,535,1,'2006-02-15 05:09:17'),(2452,535,1,'2006-02-15 05:09:17'),(2453,535,1,'2006-02-15 05:09:17'),(2454,536,1,'2006-02-15 05:09:17'),(2455,536,1,'2006-02-15 05:09:17'),(2456,536,1,'2006-02-15 05:09:17'),(2457,536,2,'2006-02-15 05:09:17'),(2458,536,2,'2006-02-15 05:09:17'),(2459,537,2,'2006-02-15 05:09:17'),(2460,537,2,'2006-02-15 05:09:17'),(2461,537,2,'2006-02-15 05:09:17'),(2462,538,2,'2006-02-15 05:09:17'),(2463,538,2,'2006-02-15 05:09:17'),(2464,538,2,'2006-02-15 05:09:17'),(2465,539,1,'2006-02-15 05:09:17'),(2466,539,1,'2006-02-15 05:09:17'),(2467,540,1,'2006-02-15 05:09:17'),(2468,540,1,'2006-02-15 05:09:17'),(2469,540,1,'2006-02-15 05:09:17'),(2470,541,2,'2006-02-15 05:09:17'),(2471,541,2,'2006-02-15 05:09:17'),(2472,542,1,'2006-02-15 05:09:17'),(2473,542,1,'2006-02-15 05:09:17'),(2474,542,1,'2006-02-15 05:09:17'),(2475,542,1,'2006-02-15 05:09:17'),(2476,542,2,'2006-02-15 05:09:17'),(2477,542,2,'2006-02-15 05:09:17'),(2478,543,1,'2006-02-15 05:09:17'),(2479,543,1,'2006-02-15 05:09:17'),(2480,544,1,'2006-02-15 05:09:17'),(2481,544,1,'2006-02-15 05:09:17'),(2482,544,2,'2006-02-15 05:09:17'),(2483,544,2,'2006-02-15 05:09:17'),(2484,545,1,'2006-02-15 05:09:17'),(2485,545,1,'2006-02-15 05:09:17'),(2486,545,1,'2006-02-15 05:09:17'),(2487,545,1,'2006-02-15 05:09:17'),(2488,545,2,'2006-02-15 05:09:17'),(2489,545,2,'2006-02-15 05:09:17'),(2490,546,2,'2006-02-15 05:09:17'),(2491,546,2,'2006-02-15 05:09:17'),(2492,546,2,'2006-02-15 05:09:17'),(2493,546,2,'2006-02-15 05:09:17'),(2494,547,2,'2006-02-15 05:09:17'),(2495,547,2,'2006-02-15 05:09:17'),(2496,548,1,'2006-02-15 05:09:17'),(2497,548,1,'2006-02-15 05:09:17'),(2498,549,1,'2006-02-15 05:09:17'),(2499,549,1,'2006-02-15 05:09:17'),(2500,549,2,'2006-02-15 05:09:17'),(2501,549,2,'2006-02-15 05:09:17'),(2502,550,1,'2006-02-15 05:09:17'),(2503,550,1,'2006-02-15 05:09:17'),(2504,550,1,'2006-02-15 05:09:17'),(2505,551,1,'2006-02-15 05:09:17'),(2506,551,1,'2006-02-15 05:09:17'),(2507,551,1,'2006-02-15 05:09:17'),(2508,551,2,'2006-02-15 05:09:17'),(2509,551,2,'2006-02-15 05:09:17'),(2510,551,2,'2006-02-15 05:09:17'),(2511,552,2,'2006-02-15 05:09:17'),(2512,552,2,'2006-02-15 05:09:17'),(2513,552,2,'2006-02-15 05:09:17'),(2514,552,2,'2006-02-15 05:09:17'),(2515,553,2,'2006-02-15 05:09:17'),(2516,553,2,'2006-02-15 05:09:17'),(2517,553,2,'2006-02-15 05:09:17'),(2518,554,1,'2006-02-15 05:09:17'),(2519,554,1,'2006-02-15 05:09:17'),(2520,554,1,'2006-02-15 05:09:17'),(2521,554,1,'2006-02-15 05:09:17'),(2522,554,2,'2006-02-15 05:09:17'),(2523,554,2,'2006-02-15 05:09:17'),(2524,554,2,'2006-02-15 05:09:17'),(2525,555,1,'2006-02-15 05:09:17'),(2526,555,1,'2006-02-15 05:09:17'),(2527,555,1,'2006-02-15 05:09:17'),(2528,555,2,'2006-02-15 05:09:17'),(2529,555,2,'2006-02-15 05:09:17'),(2530,555,2,'2006-02-15 05:09:17'),(2531,555,2,'2006-02-15 05:09:17'),(2532,556,1,'2006-02-15 05:09:17'),(2533,556,1,'2006-02-15 05:09:17'),(2534,556,1,'2006-02-15 05:09:17'),(2535,556,2,'2006-02-15 05:09:17'),(2536,556,2,'2006-02-15 05:09:17'),(2537,556,2,'2006-02-15 05:09:17'),(2538,556,2,'2006-02-15 05:09:17'),(2539,557,1,'2006-02-15 05:09:17'),(2540,557,1,'2006-02-15 05:09:17'),(2541,557,2,'2006-02-15 05:09:17'),(2542,557,2,'2006-02-15 05:09:17'),(2543,557,2,'2006-02-15 05:09:17'),(2544,558,2,'2006-02-15 05:09:17'),(2545,558,2,'2006-02-15 05:09:17'),(2546,559,1,'2006-02-15 05:09:17'),(2547,559,1,'2006-02-15 05:09:17'),(2548,559,1,'2006-02-15 05:09:17'),(2549,559,1,'2006-02-15 05:09:17'),(2550,559,2,'2006-02-15 05:09:17'),(2551,559,2,'2006-02-15 05:09:17'),(2552,559,2,'2006-02-15 05:09:17'),(2553,559,2,'2006-02-15 05:09:17'),(2554,560,1,'2006-02-15 05:09:17'),(2555,560,1,'2006-02-15 05:09:17'),(2556,560,1,'2006-02-15 05:09:17'),(2557,560,2,'2006-02-15 05:09:17'),(2558,560,2,'2006-02-15 05:09:17'),(2559,561,1,'2006-02-15 05:09:17'),(2560,561,1,'2006-02-15 05:09:17'),(2561,561,1,'2006-02-15 05:09:17'),(2562,561,1,'2006-02-15 05:09:17'),(2563,562,1,'2006-02-15 05:09:17'),(2564,562,1,'2006-02-15 05:09:17'),(2565,562,1,'2006-02-15 05:09:17'),(2566,562,1,'2006-02-15 05:09:17'),(2567,562,2,'2006-02-15 05:09:17'),(2568,562,2,'2006-02-15 05:09:17'),(2569,563,1,'2006-02-15 05:09:17'),(2570,563,1,'2006-02-15 05:09:17'),(2571,563,1,'2006-02-15 05:09:17'),(2572,563,1,'2006-02-15 05:09:17'),(2573,563,2,'2006-02-15 05:09:17'),(2574,563,2,'2006-02-15 05:09:17'),(2575,563,2,'2006-02-15 05:09:17'),(2576,564,2,'2006-02-15 05:09:17'),(2577,564,2,'2006-02-15 05:09:17'),(2578,564,2,'2006-02-15 05:09:17'),(2579,565,1,'2006-02-15 05:09:17'),(2580,565,1,'2006-02-15 05:09:17'),(2581,566,1,'2006-02-15 05:09:17'),(2582,566,1,'2006-02-15 05:09:17'),(2583,567,1,'2006-02-15 05:09:17'),(2584,567,1,'2006-02-15 05:09:17'),(2585,567,2,'2006-02-15 05:09:17'),(2586,567,2,'2006-02-15 05:09:17'),(2587,568,1,'2006-02-15 05:09:17'),(2588,568,1,'2006-02-15 05:09:17'),(2589,568,2,'2006-02-15 05:09:17'),(2590,568,2,'2006-02-15 05:09:17'),(2591,569,1,'2006-02-15 05:09:17'),(2592,569,1,'2006-02-15 05:09:17'),(2593,570,1,'2006-02-15 05:09:17'),(2594,570,1,'2006-02-15 05:09:17'),(2595,570,2,'2006-02-15 05:09:17'),(2596,570,2,'2006-02-15 05:09:17'),(2597,570,2,'2006-02-15 05:09:17'),(2598,571,1,'2006-02-15 05:09:17'),(2599,571,1,'2006-02-15 05:09:17'),(2600,571,2,'2006-02-15 05:09:17'),(2601,571,2,'2006-02-15 05:09:17'),(2602,571,2,'2006-02-15 05:09:17'),(2603,571,2,'2006-02-15 05:09:17'),(2604,572,1,'2006-02-15 05:09:17'),(2605,572,1,'2006-02-15 05:09:17'),(2606,572,1,'2006-02-15 05:09:17'),(2607,572,1,'2006-02-15 05:09:17'),(2608,572,2,'2006-02-15 05:09:17'),(2609,572,2,'2006-02-15 05:09:17'),(2610,572,2,'2006-02-15 05:09:17'),(2611,572,2,'2006-02-15 05:09:17'),(2612,573,1,'2006-02-15 05:09:17'),(2613,573,1,'2006-02-15 05:09:17'),(2614,573,1,'2006-02-15 05:09:17'),(2615,573,1,'2006-02-15 05:09:17'),(2616,574,1,'2006-02-15 05:09:17'),(2617,574,1,'2006-02-15 05:09:17'),(2618,574,2,'2006-02-15 05:09:17'),(2619,574,2,'2006-02-15 05:09:17'),(2620,574,2,'2006-02-15 05:09:17'),(2621,575,1,'2006-02-15 05:09:17'),(2622,575,1,'2006-02-15 05:09:17'),(2623,575,2,'2006-02-15 05:09:17'),(2624,575,2,'2006-02-15 05:09:17'),(2625,575,2,'2006-02-15 05:09:17'),(2626,575,2,'2006-02-15 05:09:17'),(2627,576,2,'2006-02-15 05:09:17'),(2628,576,2,'2006-02-15 05:09:17'),(2629,576,2,'2006-02-15 05:09:17'),(2630,577,1,'2006-02-15 05:09:17'),(2631,577,1,'2006-02-15 05:09:17'),(2632,577,1,'2006-02-15 05:09:17'),(2633,578,1,'2006-02-15 05:09:17'),(2634,578,1,'2006-02-15 05:09:17'),(2635,578,2,'2006-02-15 05:09:17'),(2636,578,2,'2006-02-15 05:09:17'),(2637,578,2,'2006-02-15 05:09:17'),(2638,579,1,'2006-02-15 05:09:17'),(2639,579,1,'2006-02-15 05:09:17'),(2640,579,1,'2006-02-15 05:09:17'),(2641,579,1,'2006-02-15 05:09:17'),(2642,579,2,'2006-02-15 05:09:17'),(2643,579,2,'2006-02-15 05:09:17'),(2644,579,2,'2006-02-15 05:09:17'),(2645,580,1,'2006-02-15 05:09:17'),(2646,580,1,'2006-02-15 05:09:17'),(2647,580,1,'2006-02-15 05:09:17'),(2648,580,1,'2006-02-15 05:09:17'),(2649,580,2,'2006-02-15 05:09:17'),(2650,580,2,'2006-02-15 05:09:17'),(2651,581,1,'2006-02-15 05:09:17'),(2652,581,1,'2006-02-15 05:09:17'),(2653,581,1,'2006-02-15 05:09:17'),(2654,582,2,'2006-02-15 05:09:17'),(2655,582,2,'2006-02-15 05:09:17'),(2656,583,1,'2006-02-15 05:09:17'),(2657,583,1,'2006-02-15 05:09:17'),(2658,583,1,'2006-02-15 05:09:17'),(2659,583,2,'2006-02-15 05:09:17'),(2660,583,2,'2006-02-15 05:09:17'),(2661,584,1,'2006-02-15 05:09:17'),(2662,584,1,'2006-02-15 05:09:17'),(2663,585,2,'2006-02-15 05:09:17'),(2664,585,2,'2006-02-15 05:09:17'),(2665,585,2,'2006-02-15 05:09:17'),(2666,585,2,'2006-02-15 05:09:17'),(2667,586,1,'2006-02-15 05:09:17'),(2668,586,1,'2006-02-15 05:09:17'),(2669,586,1,'2006-02-15 05:09:17'),(2670,586,1,'2006-02-15 05:09:17'),(2671,586,2,'2006-02-15 05:09:17'),(2672,586,2,'2006-02-15 05:09:17'),(2673,586,2,'2006-02-15 05:09:17'),(2674,586,2,'2006-02-15 05:09:17'),(2675,587,1,'2006-02-15 05:09:17'),(2676,587,1,'2006-02-15 05:09:17'),(2677,587,1,'2006-02-15 05:09:17'),(2678,588,2,'2006-02-15 05:09:17'),(2679,588,2,'2006-02-15 05:09:17'),(2680,588,2,'2006-02-15 05:09:17'),(2681,588,2,'2006-02-15 05:09:17'),(2682,589,2,'2006-02-15 05:09:17'),(2683,589,2,'2006-02-15 05:09:17'),(2684,589,2,'2006-02-15 05:09:17'),(2685,589,2,'2006-02-15 05:09:17'),(2686,590,1,'2006-02-15 05:09:17'),(2687,590,1,'2006-02-15 05:09:17'),(2688,590,1,'2006-02-15 05:09:17'),(2689,590,2,'2006-02-15 05:09:17'),(2690,590,2,'2006-02-15 05:09:17'),(2691,590,2,'2006-02-15 05:09:17'),(2692,590,2,'2006-02-15 05:09:17'),(2693,591,2,'2006-02-15 05:09:17'),(2694,591,2,'2006-02-15 05:09:17'),(2695,591,2,'2006-02-15 05:09:17'),(2696,592,1,'2006-02-15 05:09:17'),(2697,592,1,'2006-02-15 05:09:17'),(2698,592,2,'2006-02-15 05:09:17'),(2699,592,2,'2006-02-15 05:09:17'),(2700,593,2,'2006-02-15 05:09:17'),(2701,593,2,'2006-02-15 05:09:17'),(2702,593,2,'2006-02-15 05:09:17'),(2703,593,2,'2006-02-15 05:09:17'),(2704,594,1,'2006-02-15 05:09:17'),(2705,594,1,'2006-02-15 05:09:17'),(2706,594,1,'2006-02-15 05:09:17'),(2707,595,1,'2006-02-15 05:09:17'),(2708,595,1,'2006-02-15 05:09:17'),(2709,595,1,'2006-02-15 05:09:17'),(2710,595,1,'2006-02-15 05:09:17'),(2711,595,2,'2006-02-15 05:09:17'),(2712,595,2,'2006-02-15 05:09:17'),(2713,595,2,'2006-02-15 05:09:17'),(2714,595,2,'2006-02-15 05:09:17'),(2715,596,1,'2006-02-15 05:09:17'),(2716,596,1,'2006-02-15 05:09:17'),(2717,596,2,'2006-02-15 05:09:17'),(2718,596,2,'2006-02-15 05:09:17'),(2719,596,2,'2006-02-15 05:09:17'),(2720,596,2,'2006-02-15 05:09:17'),(2721,597,2,'2006-02-15 05:09:17'),(2722,597,2,'2006-02-15 05:09:17'),(2723,597,2,'2006-02-15 05:09:17'),(2724,597,2,'2006-02-15 05:09:17'),(2725,598,1,'2006-02-15 05:09:17'),(2726,598,1,'2006-02-15 05:09:17'),(2727,598,1,'2006-02-15 05:09:17'),(2728,598,1,'2006-02-15 05:09:17'),(2729,599,1,'2006-02-15 05:09:17'),(2730,599,1,'2006-02-15 05:09:17'),(2731,599,1,'2006-02-15 05:09:17'),(2732,599,2,'2006-02-15 05:09:17'),(2733,599,2,'2006-02-15 05:09:17'),(2734,600,1,'2006-02-15 05:09:17'),(2735,600,1,'2006-02-15 05:09:17'),(2736,600,2,'2006-02-15 05:09:17'),(2737,600,2,'2006-02-15 05:09:17'),(2738,601,1,'2006-02-15 05:09:17'),(2739,601,1,'2006-02-15 05:09:17'),(2740,601,1,'2006-02-15 05:09:17'),(2741,601,2,'2006-02-15 05:09:17'),(2742,601,2,'2006-02-15 05:09:17'),(2743,602,1,'2006-02-15 05:09:17'),(2744,602,1,'2006-02-15 05:09:17'),(2745,602,2,'2006-02-15 05:09:17'),(2746,602,2,'2006-02-15 05:09:17'),(2747,602,2,'2006-02-15 05:09:17'),(2748,603,1,'2006-02-15 05:09:17'),(2749,603,1,'2006-02-15 05:09:17'),(2750,603,1,'2006-02-15 05:09:17'),(2751,603,1,'2006-02-15 05:09:17'),(2752,603,2,'2006-02-15 05:09:17'),(2753,603,2,'2006-02-15 05:09:17'),(2754,604,2,'2006-02-15 05:09:17'),(2755,604,2,'2006-02-15 05:09:17'),(2756,604,2,'2006-02-15 05:09:17'),(2757,605,2,'2006-02-15 05:09:17'),(2758,605,2,'2006-02-15 05:09:17'),(2759,606,1,'2006-02-15 05:09:17'),(2760,606,1,'2006-02-15 05:09:17'),(2761,606,2,'2006-02-15 05:09:17'),(2762,606,2,'2006-02-15 05:09:17'),(2763,606,2,'2006-02-15 05:09:17'),(2764,606,2,'2006-02-15 05:09:17'),(2765,608,1,'2006-02-15 05:09:17'),(2766,608,1,'2006-02-15 05:09:17'),(2767,608,2,'2006-02-15 05:09:17'),(2768,608,2,'2006-02-15 05:09:17'),(2769,608,2,'2006-02-15 05:09:17'),(2770,608,2,'2006-02-15 05:09:17'),(2771,609,1,'2006-02-15 05:09:17'),(2772,609,1,'2006-02-15 05:09:17'),(2773,609,1,'2006-02-15 05:09:17'),(2774,609,1,'2006-02-15 05:09:17'),(2775,609,2,'2006-02-15 05:09:17'),(2776,609,2,'2006-02-15 05:09:17'),(2777,609,2,'2006-02-15 05:09:17'),(2778,609,2,'2006-02-15 05:09:17'),(2779,610,1,'2006-02-15 05:09:17'),(2780,610,1,'2006-02-15 05:09:17'),(2781,610,2,'2006-02-15 05:09:17'),(2782,610,2,'2006-02-15 05:09:17'),(2783,610,2,'2006-02-15 05:09:17'),(2784,611,1,'2006-02-15 05:09:17'),(2785,611,1,'2006-02-15 05:09:17'),(2786,611,1,'2006-02-15 05:09:17'),(2787,611,1,'2006-02-15 05:09:17'),(2788,611,2,'2006-02-15 05:09:17'),(2789,611,2,'2006-02-15 05:09:17'),(2790,612,2,'2006-02-15 05:09:17'),(2791,612,2,'2006-02-15 05:09:17'),(2792,613,1,'2006-02-15 05:09:17'),(2793,613,1,'2006-02-15 05:09:17'),(2794,614,1,'2006-02-15 05:09:17'),(2795,614,1,'2006-02-15 05:09:17'),(2796,614,1,'2006-02-15 05:09:17'),(2797,614,2,'2006-02-15 05:09:17'),(2798,614,2,'2006-02-15 05:09:17'),(2799,614,2,'2006-02-15 05:09:17'),(2800,615,2,'2006-02-15 05:09:17'),(2801,615,2,'2006-02-15 05:09:17'),(2802,615,2,'2006-02-15 05:09:17'),(2803,615,2,'2006-02-15 05:09:17'),(2804,616,1,'2006-02-15 05:09:17'),(2805,616,1,'2006-02-15 05:09:17'),(2806,616,2,'2006-02-15 05:09:17'),(2807,616,2,'2006-02-15 05:09:17'),(2808,616,2,'2006-02-15 05:09:17'),(2809,616,2,'2006-02-15 05:09:17'),(2810,617,1,'2006-02-15 05:09:17'),(2811,617,1,'2006-02-15 05:09:17'),(2812,617,1,'2006-02-15 05:09:17'),(2813,618,2,'2006-02-15 05:09:17'),(2814,618,2,'2006-02-15 05:09:17'),(2815,618,2,'2006-02-15 05:09:17'),(2816,618,2,'2006-02-15 05:09:17'),(2817,619,1,'2006-02-15 05:09:17'),(2818,619,1,'2006-02-15 05:09:17'),(2819,619,2,'2006-02-15 05:09:17'),(2820,619,2,'2006-02-15 05:09:17'),(2821,619,2,'2006-02-15 05:09:17'),(2822,619,2,'2006-02-15 05:09:17'),(2823,620,1,'2006-02-15 05:09:17'),(2824,620,1,'2006-02-15 05:09:17'),(2825,620,2,'2006-02-15 05:09:17'),(2826,620,2,'2006-02-15 05:09:17'),(2827,620,2,'2006-02-15 05:09:17'),(2828,621,1,'2006-02-15 05:09:17'),(2829,621,1,'2006-02-15 05:09:17'),(2830,621,1,'2006-02-15 05:09:17'),(2831,621,1,'2006-02-15 05:09:17'),(2832,621,2,'2006-02-15 05:09:17'),(2833,621,2,'2006-02-15 05:09:17'),(2834,621,2,'2006-02-15 05:09:17'),(2835,621,2,'2006-02-15 05:09:17'),(2836,622,2,'2006-02-15 05:09:17'),(2837,622,2,'2006-02-15 05:09:17'),(2838,623,1,'2006-02-15 05:09:17'),(2839,623,1,'2006-02-15 05:09:17'),(2840,623,2,'2006-02-15 05:09:17'),(2841,623,2,'2006-02-15 05:09:17'),(2842,623,2,'2006-02-15 05:09:17'),(2843,624,1,'2006-02-15 05:09:17'),(2844,624,1,'2006-02-15 05:09:17'),(2845,624,1,'2006-02-15 05:09:17'),(2846,624,2,'2006-02-15 05:09:17'),(2847,624,2,'2006-02-15 05:09:17'),(2848,624,2,'2006-02-15 05:09:17'),(2849,624,2,'2006-02-15 05:09:17'),(2850,625,1,'2006-02-15 05:09:17'),(2851,625,1,'2006-02-15 05:09:17'),(2852,625,1,'2006-02-15 05:09:17'),(2853,625,2,'2006-02-15 05:09:17'),(2854,625,2,'2006-02-15 05:09:17'),(2855,625,2,'2006-02-15 05:09:17'),(2856,625,2,'2006-02-15 05:09:17'),(2857,626,2,'2006-02-15 05:09:17'),(2858,626,2,'2006-02-15 05:09:17'),(2859,626,2,'2006-02-15 05:09:17'),(2860,626,2,'2006-02-15 05:09:17'),(2861,627,2,'2006-02-15 05:09:17'),(2862,627,2,'2006-02-15 05:09:17'),(2863,627,2,'2006-02-15 05:09:17'),(2864,628,1,'2006-02-15 05:09:17'),(2865,628,1,'2006-02-15 05:09:17'),(2866,628,1,'2006-02-15 05:09:17'),(2867,628,2,'2006-02-15 05:09:17'),(2868,628,2,'2006-02-15 05:09:17'),(2869,629,2,'2006-02-15 05:09:17'),(2870,629,2,'2006-02-15 05:09:17'),(2871,629,2,'2006-02-15 05:09:17'),(2872,629,2,'2006-02-15 05:09:17'),(2873,630,2,'2006-02-15 05:09:17'),(2874,630,2,'2006-02-15 05:09:17'),(2875,630,2,'2006-02-15 05:09:17'),(2876,631,1,'2006-02-15 05:09:17'),(2877,631,1,'2006-02-15 05:09:17'),(2878,631,1,'2006-02-15 05:09:17'),(2879,631,2,'2006-02-15 05:09:17'),(2880,631,2,'2006-02-15 05:09:17'),(2881,632,1,'2006-02-15 05:09:17'),(2882,632,1,'2006-02-15 05:09:17'),(2883,632,1,'2006-02-15 05:09:17'),(2884,633,2,'2006-02-15 05:09:17'),(2885,633,2,'2006-02-15 05:09:17'),(2886,633,2,'2006-02-15 05:09:17'),(2887,634,2,'2006-02-15 05:09:17'),(2888,634,2,'2006-02-15 05:09:17'),(2889,634,2,'2006-02-15 05:09:17'),(2890,634,2,'2006-02-15 05:09:17'),(2891,635,2,'2006-02-15 05:09:17'),(2892,635,2,'2006-02-15 05:09:17'),(2893,636,1,'2006-02-15 05:09:17'),(2894,636,1,'2006-02-15 05:09:17'),(2895,636,1,'2006-02-15 05:09:17'),(2896,637,1,'2006-02-15 05:09:17'),(2897,637,1,'2006-02-15 05:09:17'),(2898,637,2,'2006-02-15 05:09:17'),(2899,637,2,'2006-02-15 05:09:17'),(2900,637,2,'2006-02-15 05:09:17'),(2901,638,1,'2006-02-15 05:09:17'),(2902,638,1,'2006-02-15 05:09:17'),(2903,638,1,'2006-02-15 05:09:17'),(2904,638,1,'2006-02-15 05:09:17'),(2905,638,2,'2006-02-15 05:09:17'),(2906,638,2,'2006-02-15 05:09:17'),(2907,638,2,'2006-02-15 05:09:17'),(2908,638,2,'2006-02-15 05:09:17'),(2909,639,2,'2006-02-15 05:09:17'),(2910,639,2,'2006-02-15 05:09:17'),(2911,639,2,'2006-02-15 05:09:17'),(2912,640,2,'2006-02-15 05:09:17'),(2913,640,2,'2006-02-15 05:09:17'),(2914,640,2,'2006-02-15 05:09:17'),(2915,641,1,'2006-02-15 05:09:17'),(2916,641,1,'2006-02-15 05:09:17'),(2917,641,1,'2006-02-15 05:09:17'),(2918,641,2,'2006-02-15 05:09:17'),(2919,641,2,'2006-02-15 05:09:17'),(2920,641,2,'2006-02-15 05:09:17'),(2921,641,2,'2006-02-15 05:09:17'),(2922,643,1,'2006-02-15 05:09:17'),(2923,643,1,'2006-02-15 05:09:17'),(2924,643,1,'2006-02-15 05:09:17'),(2925,643,2,'2006-02-15 05:09:17'),(2926,643,2,'2006-02-15 05:09:17'),(2927,643,2,'2006-02-15 05:09:17'),(2928,644,1,'2006-02-15 05:09:17'),(2929,644,1,'2006-02-15 05:09:17'),(2930,644,1,'2006-02-15 05:09:17'),(2931,644,2,'2006-02-15 05:09:17'),(2932,644,2,'2006-02-15 05:09:17'),(2933,644,2,'2006-02-15 05:09:17'),(2934,644,2,'2006-02-15 05:09:17'),(2935,645,1,'2006-02-15 05:09:17'),(2936,645,1,'2006-02-15 05:09:17'),(2937,645,1,'2006-02-15 05:09:17'),(2938,645,2,'2006-02-15 05:09:17'),(2939,645,2,'2006-02-15 05:09:17'),(2940,645,2,'2006-02-15 05:09:17'),(2941,646,1,'2006-02-15 05:09:17'),(2942,646,1,'2006-02-15 05:09:17'),(2943,646,1,'2006-02-15 05:09:17'),(2944,646,2,'2006-02-15 05:09:17'),(2945,646,2,'2006-02-15 05:09:17'),(2946,647,1,'2006-02-15 05:09:17'),(2947,647,1,'2006-02-15 05:09:17'),(2948,647,1,'2006-02-15 05:09:17'),(2949,647,2,'2006-02-15 05:09:17'),(2950,647,2,'2006-02-15 05:09:17'),(2951,647,2,'2006-02-15 05:09:17'),(2952,648,1,'2006-02-15 05:09:17'),(2953,648,1,'2006-02-15 05:09:17'),(2954,648,1,'2006-02-15 05:09:17'),(2955,648,1,'2006-02-15 05:09:17'),(2956,648,2,'2006-02-15 05:09:17'),(2957,648,2,'2006-02-15 05:09:17'),(2958,649,1,'2006-02-15 05:09:17'),(2959,649,1,'2006-02-15 05:09:17'),(2960,649,2,'2006-02-15 05:09:17'),(2961,649,2,'2006-02-15 05:09:17'),(2962,649,2,'2006-02-15 05:09:17'),(2963,649,2,'2006-02-15 05:09:17'),(2964,650,1,'2006-02-15 05:09:17'),(2965,650,1,'2006-02-15 05:09:17'),(2966,650,2,'2006-02-15 05:09:17'),(2967,650,2,'2006-02-15 05:09:17'),(2968,650,2,'2006-02-15 05:09:17'),(2969,650,2,'2006-02-15 05:09:17'),(2970,651,1,'2006-02-15 05:09:17'),(2971,651,1,'2006-02-15 05:09:17'),(2972,651,2,'2006-02-15 05:09:17'),(2973,651,2,'2006-02-15 05:09:17'),(2974,651,2,'2006-02-15 05:09:17'),(2975,651,2,'2006-02-15 05:09:17'),(2976,652,1,'2006-02-15 05:09:17'),(2977,652,1,'2006-02-15 05:09:17'),(2978,652,1,'2006-02-15 05:09:17'),(2979,652,1,'2006-02-15 05:09:17'),(2980,653,1,'2006-02-15 05:09:17'),(2981,653,1,'2006-02-15 05:09:17'),(2982,654,1,'2006-02-15 05:09:17'),(2983,654,1,'2006-02-15 05:09:17'),(2984,654,2,'2006-02-15 05:09:17'),(2985,654,2,'2006-02-15 05:09:17'),(2986,655,1,'2006-02-15 05:09:17'),(2987,655,1,'2006-02-15 05:09:17'),(2988,655,1,'2006-02-15 05:09:17'),(2989,655,2,'2006-02-15 05:09:17'),(2990,655,2,'2006-02-15 05:09:17'),(2991,655,2,'2006-02-15 05:09:17'),(2992,656,2,'2006-02-15 05:09:17'),(2993,656,2,'2006-02-15 05:09:17'),(2994,657,1,'2006-02-15 05:09:17'),(2995,657,1,'2006-02-15 05:09:17'),(2996,657,1,'2006-02-15 05:09:17'),(2997,657,1,'2006-02-15 05:09:17'),(2998,657,2,'2006-02-15 05:09:17'),(2999,657,2,'2006-02-15 05:09:17'),(3000,658,2,'2006-02-15 05:09:17'),(3001,658,2,'2006-02-15 05:09:17'),(3002,658,2,'2006-02-15 05:09:17'),(3003,658,2,'2006-02-15 05:09:17'),(3004,659,2,'2006-02-15 05:09:17'),(3005,659,2,'2006-02-15 05:09:17'),(3006,660,1,'2006-02-15 05:09:17'),(3007,660,1,'2006-02-15 05:09:17'),(3008,660,2,'2006-02-15 05:09:17'),(3009,660,2,'2006-02-15 05:09:17'),(3010,661,1,'2006-02-15 05:09:17'),(3011,661,1,'2006-02-15 05:09:17'),(3012,661,1,'2006-02-15 05:09:17'),(3013,661,1,'2006-02-15 05:09:17'),(3014,662,1,'2006-02-15 05:09:17'),(3015,662,1,'2006-02-15 05:09:17'),(3016,662,2,'2006-02-15 05:09:17'),(3017,662,2,'2006-02-15 05:09:17'),(3018,663,1,'2006-02-15 05:09:17'),(3019,663,1,'2006-02-15 05:09:17'),(3020,663,1,'2006-02-15 05:09:17'),(3021,663,2,'2006-02-15 05:09:17'),(3022,663,2,'2006-02-15 05:09:17'),(3023,664,1,'2006-02-15 05:09:17'),(3024,664,1,'2006-02-15 05:09:17'),(3025,664,2,'2006-02-15 05:09:17'),(3026,664,2,'2006-02-15 05:09:17'),(3027,664,2,'2006-02-15 05:09:17'),(3028,665,1,'2006-02-15 05:09:17'),(3029,665,1,'2006-02-15 05:09:17'),(3030,665,1,'2006-02-15 05:09:17'),(3031,665,1,'2006-02-15 05:09:17'),(3032,665,2,'2006-02-15 05:09:17'),(3033,665,2,'2006-02-15 05:09:17'),(3034,665,2,'2006-02-15 05:09:17'),(3035,666,1,'2006-02-15 05:09:17'),(3036,666,1,'2006-02-15 05:09:17'),(3037,666,1,'2006-02-15 05:09:17'),(3038,666,2,'2006-02-15 05:09:17'),(3039,666,2,'2006-02-15 05:09:17'),(3040,667,1,'2006-02-15 05:09:17'),(3041,667,1,'2006-02-15 05:09:17'),(3042,667,2,'2006-02-15 05:09:17'),(3043,667,2,'2006-02-15 05:09:17'),(3044,668,1,'2006-02-15 05:09:17'),(3045,668,1,'2006-02-15 05:09:17'),(3046,668,2,'2006-02-15 05:09:17'),(3047,668,2,'2006-02-15 05:09:17'),(3048,668,2,'2006-02-15 05:09:17'),(3049,670,1,'2006-02-15 05:09:17'),(3050,670,1,'2006-02-15 05:09:17'),(3051,670,1,'2006-02-15 05:09:17'),(3052,670,1,'2006-02-15 05:09:17'),(3053,670,2,'2006-02-15 05:09:17'),(3054,670,2,'2006-02-15 05:09:17'),(3055,670,2,'2006-02-15 05:09:17'),(3056,672,1,'2006-02-15 05:09:17'),(3057,672,1,'2006-02-15 05:09:17'),(3058,672,2,'2006-02-15 05:09:17'),(3059,672,2,'2006-02-15 05:09:17'),(3060,672,2,'2006-02-15 05:09:17'),(3061,672,2,'2006-02-15 05:09:17'),(3062,673,1,'2006-02-15 05:09:17'),(3063,673,1,'2006-02-15 05:09:17'),(3064,673,2,'2006-02-15 05:09:17'),(3065,673,2,'2006-02-15 05:09:17'),(3066,674,1,'2006-02-15 05:09:17'),(3067,674,1,'2006-02-15 05:09:17'),(3068,674,1,'2006-02-15 05:09:17'),(3069,675,1,'2006-02-15 05:09:17'),(3070,675,1,'2006-02-15 05:09:17'),(3071,676,1,'2006-02-15 05:09:17'),(3072,676,1,'2006-02-15 05:09:17'),(3073,676,2,'2006-02-15 05:09:17'),(3074,676,2,'2006-02-15 05:09:17'),(3075,676,2,'2006-02-15 05:09:17'),(3076,676,2,'2006-02-15 05:09:17'),(3077,677,1,'2006-02-15 05:09:17'),(3078,677,1,'2006-02-15 05:09:17'),(3079,677,1,'2006-02-15 05:09:17'),(3080,677,2,'2006-02-15 05:09:17'),(3081,677,2,'2006-02-15 05:09:17'),(3082,677,2,'2006-02-15 05:09:17'),(3083,677,2,'2006-02-15 05:09:17'),(3084,678,1,'2006-02-15 05:09:17'),(3085,678,1,'2006-02-15 05:09:17'),(3086,678,1,'2006-02-15 05:09:17'),(3087,678,1,'2006-02-15 05:09:17'),(3088,679,1,'2006-02-15 05:09:17'),(3089,679,1,'2006-02-15 05:09:17'),(3090,679,2,'2006-02-15 05:09:17'),(3091,679,2,'2006-02-15 05:09:17'),(3092,680,1,'2006-02-15 05:09:17'),(3093,680,1,'2006-02-15 05:09:17'),(3094,680,2,'2006-02-15 05:09:17'),(3095,680,2,'2006-02-15 05:09:17'),(3096,680,2,'2006-02-15 05:09:17'),(3097,680,2,'2006-02-15 05:09:17'),(3098,681,1,'2006-02-15 05:09:17'),(3099,681,1,'2006-02-15 05:09:17'),(3100,681,1,'2006-02-15 05:09:17'),(3101,681,2,'2006-02-15 05:09:17'),(3102,681,2,'2006-02-15 05:09:17'),(3103,681,2,'2006-02-15 05:09:17'),(3104,682,1,'2006-02-15 05:09:17'),(3105,682,1,'2006-02-15 05:09:17'),(3106,682,1,'2006-02-15 05:09:17'),(3107,683,1,'2006-02-15 05:09:17'),(3108,683,1,'2006-02-15 05:09:17'),(3109,683,1,'2006-02-15 05:09:17'),(3110,683,1,'2006-02-15 05:09:17'),(3111,683,2,'2006-02-15 05:09:17'),(3112,683,2,'2006-02-15 05:09:17'),(3113,683,2,'2006-02-15 05:09:17'),(3114,683,2,'2006-02-15 05:09:17'),(3115,684,2,'2006-02-15 05:09:17'),(3116,684,2,'2006-02-15 05:09:17'),(3117,685,2,'2006-02-15 05:09:17'),(3118,685,2,'2006-02-15 05:09:17'),(3119,686,1,'2006-02-15 05:09:17'),(3120,686,1,'2006-02-15 05:09:17'),(3121,686,1,'2006-02-15 05:09:17'),(3122,686,1,'2006-02-15 05:09:17'),(3123,687,1,'2006-02-15 05:09:17'),(3124,687,1,'2006-02-15 05:09:17'),(3125,687,1,'2006-02-15 05:09:17'),(3126,687,2,'2006-02-15 05:09:17'),(3127,687,2,'2006-02-15 05:09:17'),(3128,687,2,'2006-02-15 05:09:17'),(3129,687,2,'2006-02-15 05:09:17'),(3130,688,2,'2006-02-15 05:09:17'),(3131,688,2,'2006-02-15 05:09:17'),(3132,688,2,'2006-02-15 05:09:17'),(3133,688,2,'2006-02-15 05:09:17'),(3134,689,1,'2006-02-15 05:09:17'),(3135,689,1,'2006-02-15 05:09:17'),(3136,689,1,'2006-02-15 05:09:17'),(3137,689,1,'2006-02-15 05:09:17'),(3138,689,2,'2006-02-15 05:09:17'),(3139,689,2,'2006-02-15 05:09:17'),(3140,690,1,'2006-02-15 05:09:17'),(3141,690,1,'2006-02-15 05:09:17'),(3142,690,1,'2006-02-15 05:09:17'),(3143,690,1,'2006-02-15 05:09:17'),(3144,690,2,'2006-02-15 05:09:17'),(3145,690,2,'2006-02-15 05:09:17'),(3146,691,1,'2006-02-15 05:09:17'),(3147,691,1,'2006-02-15 05:09:17'),(3148,691,1,'2006-02-15 05:09:17'),(3149,691,2,'2006-02-15 05:09:17'),(3150,691,2,'2006-02-15 05:09:17'),(3151,692,2,'2006-02-15 05:09:17'),(3152,692,2,'2006-02-15 05:09:17'),(3153,692,2,'2006-02-15 05:09:17'),(3154,693,1,'2006-02-15 05:09:17'),(3155,693,1,'2006-02-15 05:09:17'),(3156,693,2,'2006-02-15 05:09:17'),(3157,693,2,'2006-02-15 05:09:17'),(3158,693,2,'2006-02-15 05:09:17'),(3159,694,1,'2006-02-15 05:09:17'),(3160,694,1,'2006-02-15 05:09:17'),(3161,694,1,'2006-02-15 05:09:17'),(3162,694,1,'2006-02-15 05:09:17'),(3163,694,2,'2006-02-15 05:09:17'),(3164,694,2,'2006-02-15 05:09:17'),(3165,695,1,'2006-02-15 05:09:17'),(3166,695,1,'2006-02-15 05:09:17'),(3167,696,1,'2006-02-15 05:09:17'),(3168,696,1,'2006-02-15 05:09:17'),(3169,696,2,'2006-02-15 05:09:17'),(3170,696,2,'2006-02-15 05:09:17'),(3171,696,2,'2006-02-15 05:09:17'),(3172,697,1,'2006-02-15 05:09:17'),(3173,697,1,'2006-02-15 05:09:17'),(3174,697,1,'2006-02-15 05:09:17'),(3175,697,1,'2006-02-15 05:09:17'),(3176,697,2,'2006-02-15 05:09:17'),(3177,697,2,'2006-02-15 05:09:17'),(3178,697,2,'2006-02-15 05:09:17'),(3179,697,2,'2006-02-15 05:09:17'),(3180,698,1,'2006-02-15 05:09:17'),(3181,698,1,'2006-02-15 05:09:17'),(3182,698,1,'2006-02-15 05:09:17'),(3183,698,1,'2006-02-15 05:09:17'),(3184,698,2,'2006-02-15 05:09:17'),(3185,698,2,'2006-02-15 05:09:17'),(3186,698,2,'2006-02-15 05:09:17'),(3187,699,1,'2006-02-15 05:09:17'),(3188,699,1,'2006-02-15 05:09:17'),(3189,700,2,'2006-02-15 05:09:17'),(3190,700,2,'2006-02-15 05:09:17'),(3191,700,2,'2006-02-15 05:09:17'),(3192,702,1,'2006-02-15 05:09:17'),(3193,702,1,'2006-02-15 05:09:17'),(3194,702,1,'2006-02-15 05:09:17'),(3195,702,1,'2006-02-15 05:09:17'),(3196,702,2,'2006-02-15 05:09:17'),(3197,702,2,'2006-02-15 05:09:17'),(3198,702,2,'2006-02-15 05:09:17'),(3199,702,2,'2006-02-15 05:09:17'),(3200,703,2,'2006-02-15 05:09:17'),(3201,703,2,'2006-02-15 05:09:17'),(3202,704,1,'2006-02-15 05:09:17'),(3203,704,1,'2006-02-15 05:09:17'),(3204,704,2,'2006-02-15 05:09:17'),(3205,704,2,'2006-02-15 05:09:17'),(3206,704,2,'2006-02-15 05:09:17'),(3207,705,1,'2006-02-15 05:09:17'),(3208,705,1,'2006-02-15 05:09:17'),(3209,705,1,'2006-02-15 05:09:17'),(3210,705,1,'2006-02-15 05:09:17'),(3211,706,1,'2006-02-15 05:09:17'),(3212,706,1,'2006-02-15 05:09:17'),(3213,706,2,'2006-02-15 05:09:17'),(3214,706,2,'2006-02-15 05:09:17'),(3215,706,2,'2006-02-15 05:09:17'),(3216,706,2,'2006-02-15 05:09:17'),(3217,707,1,'2006-02-15 05:09:17'),(3218,707,1,'2006-02-15 05:09:17'),(3219,707,2,'2006-02-15 05:09:17'),(3220,707,2,'2006-02-15 05:09:17'),(3221,707,2,'2006-02-15 05:09:17'),(3222,707,2,'2006-02-15 05:09:17'),(3223,708,1,'2006-02-15 05:09:17'),(3224,708,1,'2006-02-15 05:09:17'),(3225,708,2,'2006-02-15 05:09:17'),(3226,708,2,'2006-02-15 05:09:17'),(3227,709,1,'2006-02-15 05:09:17'),(3228,709,1,'2006-02-15 05:09:17'),(3229,709,2,'2006-02-15 05:09:17'),(3230,709,2,'2006-02-15 05:09:17'),(3231,709,2,'2006-02-15 05:09:17'),(3232,709,2,'2006-02-15 05:09:17'),(3233,710,1,'2006-02-15 05:09:17'),(3234,710,1,'2006-02-15 05:09:17'),(3235,710,1,'2006-02-15 05:09:17'),(3236,710,1,'2006-02-15 05:09:17'),(3237,710,2,'2006-02-15 05:09:17'),(3238,710,2,'2006-02-15 05:09:17'),(3239,711,2,'2006-02-15 05:09:17'),(3240,711,2,'2006-02-15 05:09:17'),(3241,711,2,'2006-02-15 05:09:17'),(3242,711,2,'2006-02-15 05:09:17'),(3243,714,2,'2006-02-15 05:09:17'),(3244,714,2,'2006-02-15 05:09:17'),(3245,714,2,'2006-02-15 05:09:17'),(3246,715,1,'2006-02-15 05:09:17'),(3247,715,1,'2006-02-15 05:09:17'),(3248,715,1,'2006-02-15 05:09:17'),(3249,715,1,'2006-02-15 05:09:17'),(3250,715,2,'2006-02-15 05:09:17'),(3251,715,2,'2006-02-15 05:09:17'),(3252,715,2,'2006-02-15 05:09:17'),(3253,716,1,'2006-02-15 05:09:17'),(3254,716,1,'2006-02-15 05:09:17'),(3255,716,2,'2006-02-15 05:09:17'),(3256,716,2,'2006-02-15 05:09:17'),(3257,716,2,'2006-02-15 05:09:17'),(3258,717,1,'2006-02-15 05:09:17'),(3259,717,1,'2006-02-15 05:09:17'),(3260,717,2,'2006-02-15 05:09:17'),(3261,717,2,'2006-02-15 05:09:17'),(3262,718,2,'2006-02-15 05:09:17'),(3263,718,2,'2006-02-15 05:09:17'),(3264,719,1,'2006-02-15 05:09:17'),(3265,719,1,'2006-02-15 05:09:17'),(3266,720,1,'2006-02-15 05:09:17'),(3267,720,1,'2006-02-15 05:09:17'),(3268,720,1,'2006-02-15 05:09:17'),(3269,720,2,'2006-02-15 05:09:17'),(3270,720,2,'2006-02-15 05:09:17'),(3271,720,2,'2006-02-15 05:09:17'),(3272,720,2,'2006-02-15 05:09:17'),(3273,721,1,'2006-02-15 05:09:17'),(3274,721,1,'2006-02-15 05:09:17'),(3275,722,1,'2006-02-15 05:09:17'),(3276,722,1,'2006-02-15 05:09:17'),(3277,722,2,'2006-02-15 05:09:17'),(3278,722,2,'2006-02-15 05:09:17'),(3279,723,1,'2006-02-15 05:09:17'),(3280,723,1,'2006-02-15 05:09:17'),(3281,723,1,'2006-02-15 05:09:17'),(3282,723,1,'2006-02-15 05:09:17'),(3283,723,2,'2006-02-15 05:09:17'),(3284,723,2,'2006-02-15 05:09:17'),(3285,723,2,'2006-02-15 05:09:17'),(3286,724,1,'2006-02-15 05:09:17'),(3287,724,1,'2006-02-15 05:09:17'),(3288,724,2,'2006-02-15 05:09:17'),(3289,724,2,'2006-02-15 05:09:17'),(3290,724,2,'2006-02-15 05:09:17'),(3291,724,2,'2006-02-15 05:09:17'),(3292,725,1,'2006-02-15 05:09:17'),(3293,725,1,'2006-02-15 05:09:17'),(3294,725,1,'2006-02-15 05:09:17'),(3295,725,2,'2006-02-15 05:09:17'),(3296,725,2,'2006-02-15 05:09:17'),(3297,725,2,'2006-02-15 05:09:17'),(3298,726,2,'2006-02-15 05:09:17'),(3299,726,2,'2006-02-15 05:09:17'),(3300,726,2,'2006-02-15 05:09:17'),(3301,727,1,'2006-02-15 05:09:17'),(3302,727,1,'2006-02-15 05:09:17'),(3303,727,2,'2006-02-15 05:09:17'),(3304,727,2,'2006-02-15 05:09:17'),(3305,727,2,'2006-02-15 05:09:17'),(3306,728,1,'2006-02-15 05:09:17'),(3307,728,1,'2006-02-15 05:09:17'),(3308,728,1,'2006-02-15 05:09:17'),(3309,728,2,'2006-02-15 05:09:17'),(3310,728,2,'2006-02-15 05:09:17'),(3311,729,2,'2006-02-15 05:09:17'),(3312,729,2,'2006-02-15 05:09:17'),(3313,729,2,'2006-02-15 05:09:17'),(3314,729,2,'2006-02-15 05:09:17'),(3315,730,1,'2006-02-15 05:09:17'),(3316,730,1,'2006-02-15 05:09:17'),(3317,730,1,'2006-02-15 05:09:17'),(3318,730,1,'2006-02-15 05:09:17'),(3319,730,2,'2006-02-15 05:09:17'),(3320,730,2,'2006-02-15 05:09:17'),(3321,730,2,'2006-02-15 05:09:17'),(3322,730,2,'2006-02-15 05:09:17'),(3323,731,2,'2006-02-15 05:09:17'),(3324,731,2,'2006-02-15 05:09:17'),(3325,731,2,'2006-02-15 05:09:17'),(3326,732,1,'2006-02-15 05:09:17'),(3327,732,1,'2006-02-15 05:09:17'),(3328,732,1,'2006-02-15 05:09:17'),(3329,732,1,'2006-02-15 05:09:17'),(3330,733,1,'2006-02-15 05:09:17'),(3331,733,1,'2006-02-15 05:09:17'),(3332,733,1,'2006-02-15 05:09:17'),(3333,733,1,'2006-02-15 05:09:17'),(3334,733,2,'2006-02-15 05:09:17'),(3335,733,2,'2006-02-15 05:09:17'),(3336,733,2,'2006-02-15 05:09:17'),(3337,734,1,'2006-02-15 05:09:17'),(3338,734,1,'2006-02-15 05:09:17'),(3339,734,2,'2006-02-15 05:09:17'),(3340,734,2,'2006-02-15 05:09:17'),(3341,734,2,'2006-02-15 05:09:17'),(3342,734,2,'2006-02-15 05:09:17'),(3343,735,1,'2006-02-15 05:09:17'),(3344,735,1,'2006-02-15 05:09:17'),(3345,735,1,'2006-02-15 05:09:17'),(3346,735,2,'2006-02-15 05:09:17'),(3347,735,2,'2006-02-15 05:09:17'),(3348,735,2,'2006-02-15 05:09:17'),(3349,735,2,'2006-02-15 05:09:17'),(3350,736,1,'2006-02-15 05:09:17'),(3351,736,1,'2006-02-15 05:09:17'),(3352,736,1,'2006-02-15 05:09:17'),(3353,736,1,'2006-02-15 05:09:17'),(3354,737,1,'2006-02-15 05:09:17'),(3355,737,1,'2006-02-15 05:09:17'),(3356,737,2,'2006-02-15 05:09:17'),(3357,737,2,'2006-02-15 05:09:17'),(3358,737,2,'2006-02-15 05:09:17'),(3359,737,2,'2006-02-15 05:09:17'),(3360,738,1,'2006-02-15 05:09:17'),(3361,738,1,'2006-02-15 05:09:17'),(3362,738,1,'2006-02-15 05:09:17'),(3363,738,1,'2006-02-15 05:09:17'),(3364,738,2,'2006-02-15 05:09:17'),(3365,738,2,'2006-02-15 05:09:17'),(3366,738,2,'2006-02-15 05:09:17'),(3367,738,2,'2006-02-15 05:09:17'),(3368,739,1,'2006-02-15 05:09:17'),(3369,739,1,'2006-02-15 05:09:17'),(3370,739,2,'2006-02-15 05:09:17'),(3371,739,2,'2006-02-15 05:09:17'),(3372,739,2,'2006-02-15 05:09:17'),(3373,740,2,'2006-02-15 05:09:17'),(3374,740,2,'2006-02-15 05:09:17'),(3375,740,2,'2006-02-15 05:09:17'),(3376,741,1,'2006-02-15 05:09:17'),(3377,741,1,'2006-02-15 05:09:17'),(3378,741,1,'2006-02-15 05:09:17'),(3379,741,1,'2006-02-15 05:09:17'),(3380,741,2,'2006-02-15 05:09:17'),(3381,741,2,'2006-02-15 05:09:17'),(3382,743,1,'2006-02-15 05:09:17'),(3383,743,1,'2006-02-15 05:09:17'),(3384,743,2,'2006-02-15 05:09:17'),(3385,743,2,'2006-02-15 05:09:17'),(3386,743,2,'2006-02-15 05:09:17'),(3387,743,2,'2006-02-15 05:09:17'),(3388,744,1,'2006-02-15 05:09:17'),(3389,744,1,'2006-02-15 05:09:17'),(3390,744,2,'2006-02-15 05:09:17'),(3391,744,2,'2006-02-15 05:09:17'),(3392,744,2,'2006-02-15 05:09:17'),(3393,745,1,'2006-02-15 05:09:17'),(3394,745,1,'2006-02-15 05:09:17'),(3395,745,1,'2006-02-15 05:09:17'),(3396,745,1,'2006-02-15 05:09:17'),(3397,745,2,'2006-02-15 05:09:17'),(3398,745,2,'2006-02-15 05:09:17'),(3399,745,2,'2006-02-15 05:09:17'),(3400,745,2,'2006-02-15 05:09:17'),(3401,746,1,'2006-02-15 05:09:17'),(3402,746,1,'2006-02-15 05:09:17'),(3403,746,2,'2006-02-15 05:09:17'),(3404,746,2,'2006-02-15 05:09:17'),(3405,746,2,'2006-02-15 05:09:17'),(3406,747,1,'2006-02-15 05:09:17'),(3407,747,1,'2006-02-15 05:09:17'),(3408,747,2,'2006-02-15 05:09:17'),(3409,747,2,'2006-02-15 05:09:17'),(3410,747,2,'2006-02-15 05:09:17'),(3411,748,1,'2006-02-15 05:09:17'),(3412,748,1,'2006-02-15 05:09:17'),(3413,748,1,'2006-02-15 05:09:17'),(3414,748,1,'2006-02-15 05:09:17'),(3415,748,2,'2006-02-15 05:09:17'),(3416,748,2,'2006-02-15 05:09:17'),(3417,748,2,'2006-02-15 05:09:17'),(3418,748,2,'2006-02-15 05:09:17'),(3419,749,1,'2006-02-15 05:09:17'),(3420,749,1,'2006-02-15 05:09:17'),(3421,749,2,'2006-02-15 05:09:17'),(3422,749,2,'2006-02-15 05:09:17'),(3423,750,1,'2006-02-15 05:09:17'),(3424,750,1,'2006-02-15 05:09:17'),(3425,750,1,'2006-02-15 05:09:17'),(3426,751,2,'2006-02-15 05:09:17'),(3427,751,2,'2006-02-15 05:09:17'),(3428,752,2,'2006-02-15 05:09:17'),(3429,752,2,'2006-02-15 05:09:17'),(3430,752,2,'2006-02-15 05:09:17'),(3431,753,1,'2006-02-15 05:09:17'),(3432,753,1,'2006-02-15 05:09:17'),(3433,753,1,'2006-02-15 05:09:17'),(3434,753,1,'2006-02-15 05:09:17'),(3435,753,2,'2006-02-15 05:09:17'),(3436,753,2,'2006-02-15 05:09:17'),(3437,753,2,'2006-02-15 05:09:17'),(3438,753,2,'2006-02-15 05:09:17'),(3439,754,2,'2006-02-15 05:09:17'),(3440,754,2,'2006-02-15 05:09:17'),(3441,755,1,'2006-02-15 05:09:17'),(3442,755,1,'2006-02-15 05:09:17'),(3443,755,1,'2006-02-15 05:09:17'),(3444,755,1,'2006-02-15 05:09:17'),(3445,755,2,'2006-02-15 05:09:17'),(3446,755,2,'2006-02-15 05:09:17'),(3447,755,2,'2006-02-15 05:09:17'),(3448,756,2,'2006-02-15 05:09:17'),(3449,756,2,'2006-02-15 05:09:17'),(3450,756,2,'2006-02-15 05:09:17'),(3451,757,1,'2006-02-15 05:09:17'),(3452,757,1,'2006-02-15 05:09:17'),(3453,757,1,'2006-02-15 05:09:17'),(3454,757,2,'2006-02-15 05:09:17'),(3455,757,2,'2006-02-15 05:09:17'),(3456,758,2,'2006-02-15 05:09:17'),(3457,758,2,'2006-02-15 05:09:17'),(3458,758,2,'2006-02-15 05:09:17'),(3459,759,1,'2006-02-15 05:09:17'),(3460,759,1,'2006-02-15 05:09:17'),(3461,759,2,'2006-02-15 05:09:17'),(3462,759,2,'2006-02-15 05:09:17'),(3463,759,2,'2006-02-15 05:09:17'),(3464,759,2,'2006-02-15 05:09:17'),(3465,760,1,'2006-02-15 05:09:17'),(3466,760,1,'2006-02-15 05:09:17'),(3467,760,1,'2006-02-15 05:09:17'),(3468,760,2,'2006-02-15 05:09:17'),(3469,760,2,'2006-02-15 05:09:17'),(3470,760,2,'2006-02-15 05:09:17'),(3471,760,2,'2006-02-15 05:09:17'),(3472,761,2,'2006-02-15 05:09:17'),(3473,761,2,'2006-02-15 05:09:17'),(3474,761,2,'2006-02-15 05:09:17'),(3475,762,2,'2006-02-15 05:09:17'),(3476,762,2,'2006-02-15 05:09:17'),(3477,762,2,'2006-02-15 05:09:17'),(3478,762,2,'2006-02-15 05:09:17'),(3479,763,1,'2006-02-15 05:09:17'),(3480,763,1,'2006-02-15 05:09:17'),(3481,763,1,'2006-02-15 05:09:17'),(3482,763,2,'2006-02-15 05:09:17'),(3483,763,2,'2006-02-15 05:09:17'),(3484,764,1,'2006-02-15 05:09:17'),(3485,764,1,'2006-02-15 05:09:17'),(3486,764,1,'2006-02-15 05:09:17'),(3487,764,1,'2006-02-15 05:09:17'),(3488,764,2,'2006-02-15 05:09:17'),(3489,764,2,'2006-02-15 05:09:17'),(3490,764,2,'2006-02-15 05:09:17'),(3491,764,2,'2006-02-15 05:09:17'),(3492,765,1,'2006-02-15 05:09:17'),(3493,765,1,'2006-02-15 05:09:17'),(3494,765,1,'2006-02-15 05:09:17'),(3495,765,1,'2006-02-15 05:09:17'),(3496,766,1,'2006-02-15 05:09:17'),(3497,766,1,'2006-02-15 05:09:17'),(3498,766,1,'2006-02-15 05:09:17'),(3499,767,1,'2006-02-15 05:09:17'),(3500,767,1,'2006-02-15 05:09:17'),(3501,767,1,'2006-02-15 05:09:17'),(3502,767,1,'2006-02-15 05:09:17'),(3503,767,2,'2006-02-15 05:09:17'),(3504,767,2,'2006-02-15 05:09:17'),(3505,767,2,'2006-02-15 05:09:17'),(3506,767,2,'2006-02-15 05:09:17'),(3507,768,1,'2006-02-15 05:09:17'),(3508,768,1,'2006-02-15 05:09:17'),(3509,768,1,'2006-02-15 05:09:17'),(3510,768,2,'2006-02-15 05:09:17'),(3511,768,2,'2006-02-15 05:09:17'),(3512,768,2,'2006-02-15 05:09:17'),(3513,769,2,'2006-02-15 05:09:17'),(3514,769,2,'2006-02-15 05:09:17'),(3515,770,2,'2006-02-15 05:09:17'),(3516,770,2,'2006-02-15 05:09:17'),(3517,770,2,'2006-02-15 05:09:17'),(3518,771,1,'2006-02-15 05:09:17'),(3519,771,1,'2006-02-15 05:09:17'),(3520,771,1,'2006-02-15 05:09:17'),(3521,771,2,'2006-02-15 05:09:17'),(3522,771,2,'2006-02-15 05:09:17'),(3523,771,2,'2006-02-15 05:09:17'),(3524,771,2,'2006-02-15 05:09:17'),(3525,772,1,'2006-02-15 05:09:17'),(3526,772,1,'2006-02-15 05:09:17'),(3527,772,1,'2006-02-15 05:09:17'),(3528,772,1,'2006-02-15 05:09:17'),(3529,772,2,'2006-02-15 05:09:17'),(3530,772,2,'2006-02-15 05:09:17'),(3531,773,1,'2006-02-15 05:09:17'),(3532,773,1,'2006-02-15 05:09:17'),(3533,773,1,'2006-02-15 05:09:17'),(3534,773,1,'2006-02-15 05:09:17'),(3535,773,2,'2006-02-15 05:09:17'),(3536,773,2,'2006-02-15 05:09:17'),(3537,773,2,'2006-02-15 05:09:17'),(3538,773,2,'2006-02-15 05:09:17'),(3539,774,1,'2006-02-15 05:09:17'),(3540,774,1,'2006-02-15 05:09:17'),(3541,774,1,'2006-02-15 05:09:17'),(3542,774,1,'2006-02-15 05:09:17'),(3543,775,1,'2006-02-15 05:09:17'),(3544,775,1,'2006-02-15 05:09:17'),(3545,775,1,'2006-02-15 05:09:17'),(3546,775,2,'2006-02-15 05:09:17'),(3547,775,2,'2006-02-15 05:09:17'),(3548,776,1,'2006-02-15 05:09:17'),(3549,776,1,'2006-02-15 05:09:17'),(3550,776,2,'2006-02-15 05:09:17'),(3551,776,2,'2006-02-15 05:09:17'),(3552,776,2,'2006-02-15 05:09:17'),(3553,777,1,'2006-02-15 05:09:17'),(3554,777,1,'2006-02-15 05:09:17'),(3555,777,1,'2006-02-15 05:09:17'),(3556,777,2,'2006-02-15 05:09:17'),(3557,777,2,'2006-02-15 05:09:17'),(3558,777,2,'2006-02-15 05:09:17'),(3559,778,1,'2006-02-15 05:09:17'),(3560,778,1,'2006-02-15 05:09:17'),(3561,778,1,'2006-02-15 05:09:17'),(3562,778,1,'2006-02-15 05:09:17'),(3563,778,2,'2006-02-15 05:09:17'),(3564,778,2,'2006-02-15 05:09:17'),(3565,779,2,'2006-02-15 05:09:17'),(3566,779,2,'2006-02-15 05:09:17'),(3567,780,2,'2006-02-15 05:09:17'),(3568,780,2,'2006-02-15 05:09:17'),(3569,780,2,'2006-02-15 05:09:17'),(3570,781,2,'2006-02-15 05:09:17'),(3571,781,2,'2006-02-15 05:09:17'),(3572,782,1,'2006-02-15 05:09:17'),(3573,782,1,'2006-02-15 05:09:17'),(3574,782,1,'2006-02-15 05:09:17'),(3575,782,2,'2006-02-15 05:09:17'),(3576,782,2,'2006-02-15 05:09:17'),(3577,782,2,'2006-02-15 05:09:17'),(3578,783,1,'2006-02-15 05:09:17'),(3579,783,1,'2006-02-15 05:09:17'),(3580,783,1,'2006-02-15 05:09:17'),(3581,783,1,'2006-02-15 05:09:17'),(3582,784,1,'2006-02-15 05:09:17'),(3583,784,1,'2006-02-15 05:09:17'),(3584,784,1,'2006-02-15 05:09:17'),(3585,784,2,'2006-02-15 05:09:17'),(3586,784,2,'2006-02-15 05:09:17'),(3587,784,2,'2006-02-15 05:09:17'),(3588,785,1,'2006-02-15 05:09:17'),(3589,785,1,'2006-02-15 05:09:17'),(3590,785,1,'2006-02-15 05:09:17'),(3591,785,1,'2006-02-15 05:09:17'),(3592,785,2,'2006-02-15 05:09:17'),(3593,785,2,'2006-02-15 05:09:17'),(3594,786,1,'2006-02-15 05:09:17'),(3595,786,1,'2006-02-15 05:09:17'),(3596,786,1,'2006-02-15 05:09:17'),(3597,786,2,'2006-02-15 05:09:17'),(3598,786,2,'2006-02-15 05:09:17'),(3599,786,2,'2006-02-15 05:09:17'),(3600,786,2,'2006-02-15 05:09:17'),(3601,787,1,'2006-02-15 05:09:17'),(3602,787,1,'2006-02-15 05:09:17'),(3603,787,1,'2006-02-15 05:09:17'),(3604,788,1,'2006-02-15 05:09:17'),(3605,788,1,'2006-02-15 05:09:17'),(3606,788,2,'2006-02-15 05:09:17'),(3607,788,2,'2006-02-15 05:09:17'),(3608,789,1,'2006-02-15 05:09:17'),(3609,789,1,'2006-02-15 05:09:17'),(3610,789,1,'2006-02-15 05:09:17'),(3611,789,1,'2006-02-15 05:09:17'),(3612,789,2,'2006-02-15 05:09:17'),(3613,789,2,'2006-02-15 05:09:17'),(3614,789,2,'2006-02-15 05:09:17'),(3615,789,2,'2006-02-15 05:09:17'),(3616,790,1,'2006-02-15 05:09:17'),(3617,790,1,'2006-02-15 05:09:17'),(3618,790,1,'2006-02-15 05:09:17'),(3619,790,1,'2006-02-15 05:09:17'),(3620,790,2,'2006-02-15 05:09:17'),(3621,790,2,'2006-02-15 05:09:17'),(3622,790,2,'2006-02-15 05:09:17'),(3623,791,1,'2006-02-15 05:09:17'),(3624,791,1,'2006-02-15 05:09:17'),(3625,791,2,'2006-02-15 05:09:17'),(3626,791,2,'2006-02-15 05:09:17'),(3627,791,2,'2006-02-15 05:09:17'),(3628,791,2,'2006-02-15 05:09:17'),(3629,792,2,'2006-02-15 05:09:17'),(3630,792,2,'2006-02-15 05:09:17'),(3631,792,2,'2006-02-15 05:09:17'),(3632,793,1,'2006-02-15 05:09:17'),(3633,793,1,'2006-02-15 05:09:17'),(3634,793,1,'2006-02-15 05:09:17'),(3635,793,1,'2006-02-15 05:09:17'),(3636,794,1,'2006-02-15 05:09:17'),(3637,794,1,'2006-02-15 05:09:17'),(3638,794,2,'2006-02-15 05:09:17'),(3639,794,2,'2006-02-15 05:09:17'),(3640,795,1,'2006-02-15 05:09:17'),(3641,795,1,'2006-02-15 05:09:17'),(3642,795,1,'2006-02-15 05:09:17'),(3643,795,1,'2006-02-15 05:09:17'),(3644,796,1,'2006-02-15 05:09:17'),(3645,796,1,'2006-02-15 05:09:17'),(3646,796,2,'2006-02-15 05:09:17'),(3647,796,2,'2006-02-15 05:09:17'),(3648,796,2,'2006-02-15 05:09:17'),(3649,797,1,'2006-02-15 05:09:17'),(3650,797,1,'2006-02-15 05:09:17'),(3651,797,2,'2006-02-15 05:09:17'),(3652,797,2,'2006-02-15 05:09:17'),(3653,797,2,'2006-02-15 05:09:17'),(3654,798,1,'2006-02-15 05:09:17'),(3655,798,1,'2006-02-15 05:09:17'),(3656,798,2,'2006-02-15 05:09:17'),(3657,798,2,'2006-02-15 05:09:17'),(3658,799,1,'2006-02-15 05:09:17'),(3659,799,1,'2006-02-15 05:09:17'),(3660,800,1,'2006-02-15 05:09:17'),(3661,800,1,'2006-02-15 05:09:17'),(3662,800,2,'2006-02-15 05:09:17'),(3663,800,2,'2006-02-15 05:09:17'),(3664,800,2,'2006-02-15 05:09:17'),(3665,800,2,'2006-02-15 05:09:17'),(3666,803,1,'2006-02-15 05:09:17'),(3667,803,1,'2006-02-15 05:09:17'),(3668,803,1,'2006-02-15 05:09:17'),(3669,803,1,'2006-02-15 05:09:17'),(3670,803,2,'2006-02-15 05:09:17'),(3671,803,2,'2006-02-15 05:09:17'),(3672,804,1,'2006-02-15 05:09:17'),(3673,804,1,'2006-02-15 05:09:17'),(3674,804,1,'2006-02-15 05:09:17'),(3675,804,1,'2006-02-15 05:09:17'),(3676,804,2,'2006-02-15 05:09:17'),(3677,804,2,'2006-02-15 05:09:17'),(3678,804,2,'2006-02-15 05:09:17'),(3679,805,1,'2006-02-15 05:09:17'),(3680,805,1,'2006-02-15 05:09:17'),(3681,805,2,'2006-02-15 05:09:17'),(3682,805,2,'2006-02-15 05:09:17'),(3683,805,2,'2006-02-15 05:09:17'),(3684,806,1,'2006-02-15 05:09:17'),(3685,806,1,'2006-02-15 05:09:17'),(3686,806,1,'2006-02-15 05:09:17'),(3687,806,2,'2006-02-15 05:09:17'),(3688,806,2,'2006-02-15 05:09:17'),(3689,807,1,'2006-02-15 05:09:17'),(3690,807,1,'2006-02-15 05:09:17'),(3691,807,1,'2006-02-15 05:09:17'),(3692,807,2,'2006-02-15 05:09:17'),(3693,807,2,'2006-02-15 05:09:17'),(3694,808,2,'2006-02-15 05:09:17'),(3695,808,2,'2006-02-15 05:09:17'),(3696,809,2,'2006-02-15 05:09:17'),(3697,809,2,'2006-02-15 05:09:17'),(3698,809,2,'2006-02-15 05:09:17'),(3699,809,2,'2006-02-15 05:09:17'),(3700,810,1,'2006-02-15 05:09:17'),(3701,810,1,'2006-02-15 05:09:17'),(3702,810,1,'2006-02-15 05:09:17'),(3703,810,1,'2006-02-15 05:09:17'),(3704,810,2,'2006-02-15 05:09:17'),(3705,810,2,'2006-02-15 05:09:17'),(3706,810,2,'2006-02-15 05:09:17'),(3707,811,1,'2006-02-15 05:09:17'),(3708,811,1,'2006-02-15 05:09:17'),(3709,811,1,'2006-02-15 05:09:17'),(3710,812,1,'2006-02-15 05:09:17'),(3711,812,1,'2006-02-15 05:09:17'),(3712,812,1,'2006-02-15 05:09:17'),(3713,812,2,'2006-02-15 05:09:17'),(3714,812,2,'2006-02-15 05:09:17'),(3715,812,2,'2006-02-15 05:09:17'),(3716,813,2,'2006-02-15 05:09:17'),(3717,813,2,'2006-02-15 05:09:17'),(3718,813,2,'2006-02-15 05:09:17'),(3719,813,2,'2006-02-15 05:09:17'),(3720,814,1,'2006-02-15 05:09:17'),(3721,814,1,'2006-02-15 05:09:17'),(3722,814,1,'2006-02-15 05:09:17'),(3723,814,2,'2006-02-15 05:09:17'),(3724,814,2,'2006-02-15 05:09:17'),(3725,814,2,'2006-02-15 05:09:17'),(3726,814,2,'2006-02-15 05:09:17'),(3727,815,1,'2006-02-15 05:09:17'),(3728,815,1,'2006-02-15 05:09:17'),(3729,815,1,'2006-02-15 05:09:17'),(3730,816,1,'2006-02-15 05:09:17'),(3731,816,1,'2006-02-15 05:09:17'),(3732,816,1,'2006-02-15 05:09:17'),(3733,816,1,'2006-02-15 05:09:17'),(3734,816,2,'2006-02-15 05:09:17'),(3735,816,2,'2006-02-15 05:09:17'),(3736,816,2,'2006-02-15 05:09:17'),(3737,817,1,'2006-02-15 05:09:17'),(3738,817,1,'2006-02-15 05:09:17'),(3739,818,1,'2006-02-15 05:09:17'),(3740,818,1,'2006-02-15 05:09:17'),(3741,818,1,'2006-02-15 05:09:17'),(3742,818,2,'2006-02-15 05:09:17'),(3743,818,2,'2006-02-15 05:09:17'),(3744,819,1,'2006-02-15 05:09:17'),(3745,819,1,'2006-02-15 05:09:17'),(3746,819,1,'2006-02-15 05:09:17'),(3747,820,1,'2006-02-15 05:09:17'),(3748,820,1,'2006-02-15 05:09:17'),(3749,820,1,'2006-02-15 05:09:17'),(3750,820,1,'2006-02-15 05:09:17'),(3751,820,2,'2006-02-15 05:09:17'),(3752,820,2,'2006-02-15 05:09:17'),(3753,821,2,'2006-02-15 05:09:17'),(3754,821,2,'2006-02-15 05:09:17'),(3755,821,2,'2006-02-15 05:09:17'),(3756,821,2,'2006-02-15 05:09:17'),(3757,822,2,'2006-02-15 05:09:17'),(3758,822,2,'2006-02-15 05:09:17'),(3759,823,1,'2006-02-15 05:09:17'),(3760,823,1,'2006-02-15 05:09:17'),(3761,823,1,'2006-02-15 05:09:17'),(3762,823,2,'2006-02-15 05:09:17'),(3763,823,2,'2006-02-15 05:09:17'),(3764,823,2,'2006-02-15 05:09:17'),(3765,823,2,'2006-02-15 05:09:17'),(3766,824,2,'2006-02-15 05:09:17'),(3767,824,2,'2006-02-15 05:09:17'),(3768,824,2,'2006-02-15 05:09:17'),(3769,824,2,'2006-02-15 05:09:17'),(3770,825,1,'2006-02-15 05:09:17'),(3771,825,1,'2006-02-15 05:09:17'),(3772,825,1,'2006-02-15 05:09:17'),(3773,826,2,'2006-02-15 05:09:17'),(3774,826,2,'2006-02-15 05:09:17'),(3775,827,1,'2006-02-15 05:09:17'),(3776,827,1,'2006-02-15 05:09:17'),(3777,827,2,'2006-02-15 05:09:17'),(3778,827,2,'2006-02-15 05:09:17'),(3779,827,2,'2006-02-15 05:09:17'),(3780,827,2,'2006-02-15 05:09:17'),(3781,828,2,'2006-02-15 05:09:17'),(3782,828,2,'2006-02-15 05:09:17'),(3783,828,2,'2006-02-15 05:09:17'),(3784,828,2,'2006-02-15 05:09:17'),(3785,829,1,'2006-02-15 05:09:17'),(3786,829,1,'2006-02-15 05:09:17'),(3787,829,2,'2006-02-15 05:09:17'),(3788,829,2,'2006-02-15 05:09:17'),(3789,829,2,'2006-02-15 05:09:17'),(3790,830,2,'2006-02-15 05:09:17'),(3791,830,2,'2006-02-15 05:09:17'),(3792,830,2,'2006-02-15 05:09:17'),(3793,830,2,'2006-02-15 05:09:17'),(3794,831,1,'2006-02-15 05:09:17'),(3795,831,1,'2006-02-15 05:09:17'),(3796,831,1,'2006-02-15 05:09:17'),(3797,832,1,'2006-02-15 05:09:17'),(3798,832,1,'2006-02-15 05:09:17'),(3799,832,1,'2006-02-15 05:09:17'),(3800,832,1,'2006-02-15 05:09:17'),(3801,833,1,'2006-02-15 05:09:17'),(3802,833,1,'2006-02-15 05:09:17'),(3803,833,1,'2006-02-15 05:09:17'),(3804,833,2,'2006-02-15 05:09:17'),(3805,833,2,'2006-02-15 05:09:17'),(3806,833,2,'2006-02-15 05:09:17'),(3807,833,2,'2006-02-15 05:09:17'),(3808,834,2,'2006-02-15 05:09:17'),(3809,834,2,'2006-02-15 05:09:17'),(3810,834,2,'2006-02-15 05:09:17'),(3811,835,1,'2006-02-15 05:09:17'),(3812,835,1,'2006-02-15 05:09:17'),(3813,835,1,'2006-02-15 05:09:17'),(3814,835,1,'2006-02-15 05:09:17'),(3815,835,2,'2006-02-15 05:09:17'),(3816,835,2,'2006-02-15 05:09:17'),(3817,835,2,'2006-02-15 05:09:17'),(3818,835,2,'2006-02-15 05:09:17'),(3819,836,1,'2006-02-15 05:09:17'),(3820,836,1,'2006-02-15 05:09:17'),(3821,836,1,'2006-02-15 05:09:17'),(3822,837,2,'2006-02-15 05:09:17'),(3823,837,2,'2006-02-15 05:09:17'),(3824,837,2,'2006-02-15 05:09:17'),(3825,838,1,'2006-02-15 05:09:17'),(3826,838,1,'2006-02-15 05:09:17'),(3827,838,2,'2006-02-15 05:09:17'),(3828,838,2,'2006-02-15 05:09:17'),(3829,838,2,'2006-02-15 05:09:17'),(3830,838,2,'2006-02-15 05:09:17'),(3831,839,2,'2006-02-15 05:09:17'),(3832,839,2,'2006-02-15 05:09:17'),(3833,840,1,'2006-02-15 05:09:17'),(3834,840,1,'2006-02-15 05:09:17'),(3835,840,1,'2006-02-15 05:09:17'),(3836,840,1,'2006-02-15 05:09:17'),(3837,841,1,'2006-02-15 05:09:17'),(3838,841,1,'2006-02-15 05:09:17'),(3839,841,1,'2006-02-15 05:09:17'),(3840,841,2,'2006-02-15 05:09:17'),(3841,841,2,'2006-02-15 05:09:17'),(3842,841,2,'2006-02-15 05:09:17'),(3843,841,2,'2006-02-15 05:09:17'),(3844,842,1,'2006-02-15 05:09:17'),(3845,842,1,'2006-02-15 05:09:17'),(3846,842,2,'2006-02-15 05:09:17'),(3847,842,2,'2006-02-15 05:09:17'),(3848,843,1,'2006-02-15 05:09:17'),(3849,843,1,'2006-02-15 05:09:17'),(3850,843,1,'2006-02-15 05:09:17'),(3851,843,1,'2006-02-15 05:09:17'),(3852,843,2,'2006-02-15 05:09:17'),(3853,843,2,'2006-02-15 05:09:17'),(3854,843,2,'2006-02-15 05:09:17'),(3855,844,1,'2006-02-15 05:09:17'),(3856,844,1,'2006-02-15 05:09:17'),(3857,844,2,'2006-02-15 05:09:17'),(3858,844,2,'2006-02-15 05:09:17'),(3859,845,1,'2006-02-15 05:09:17'),(3860,845,1,'2006-02-15 05:09:17'),(3861,845,1,'2006-02-15 05:09:17'),(3862,845,1,'2006-02-15 05:09:17'),(3863,845,2,'2006-02-15 05:09:17'),(3864,845,2,'2006-02-15 05:09:17'),(3865,845,2,'2006-02-15 05:09:17'),(3866,846,1,'2006-02-15 05:09:17'),(3867,846,1,'2006-02-15 05:09:17'),(3868,846,1,'2006-02-15 05:09:17'),(3869,846,1,'2006-02-15 05:09:17'),(3870,846,2,'2006-02-15 05:09:17'),(3871,846,2,'2006-02-15 05:09:17'),(3872,846,2,'2006-02-15 05:09:17'),(3873,846,2,'2006-02-15 05:09:17'),(3874,847,2,'2006-02-15 05:09:17'),(3875,847,2,'2006-02-15 05:09:17'),(3876,847,2,'2006-02-15 05:09:17'),(3877,847,2,'2006-02-15 05:09:17'),(3878,848,1,'2006-02-15 05:09:17'),(3879,848,1,'2006-02-15 05:09:17'),(3880,848,1,'2006-02-15 05:09:17'),(3881,849,1,'2006-02-15 05:09:17'),(3882,849,1,'2006-02-15 05:09:17'),(3883,849,1,'2006-02-15 05:09:17'),(3884,849,1,'2006-02-15 05:09:17'),(3885,849,2,'2006-02-15 05:09:17'),(3886,849,2,'2006-02-15 05:09:17'),(3887,849,2,'2006-02-15 05:09:17'),(3888,849,2,'2006-02-15 05:09:17'),(3889,850,1,'2006-02-15 05:09:17'),(3890,850,1,'2006-02-15 05:09:17'),(3891,850,1,'2006-02-15 05:09:17'),(3892,850,2,'2006-02-15 05:09:17'),(3893,850,2,'2006-02-15 05:09:17'),(3894,850,2,'2006-02-15 05:09:17'),(3895,850,2,'2006-02-15 05:09:17'),(3896,851,1,'2006-02-15 05:09:17'),(3897,851,1,'2006-02-15 05:09:17'),(3898,851,1,'2006-02-15 05:09:17'),(3899,851,2,'2006-02-15 05:09:17'),(3900,851,2,'2006-02-15 05:09:17'),(3901,851,2,'2006-02-15 05:09:17'),(3902,852,1,'2006-02-15 05:09:17'),(3903,852,1,'2006-02-15 05:09:17'),(3904,852,1,'2006-02-15 05:09:17'),(3905,852,1,'2006-02-15 05:09:17'),(3906,852,2,'2006-02-15 05:09:17'),(3907,852,2,'2006-02-15 05:09:17'),(3908,852,2,'2006-02-15 05:09:17'),(3909,853,1,'2006-02-15 05:09:17'),(3910,853,1,'2006-02-15 05:09:17'),(3911,853,1,'2006-02-15 05:09:17'),(3912,854,2,'2006-02-15 05:09:17'),(3913,854,2,'2006-02-15 05:09:17'),(3914,854,2,'2006-02-15 05:09:17'),(3915,854,2,'2006-02-15 05:09:17'),(3916,855,1,'2006-02-15 05:09:17'),(3917,855,1,'2006-02-15 05:09:17'),(3918,855,2,'2006-02-15 05:09:17'),(3919,855,2,'2006-02-15 05:09:17'),(3920,856,1,'2006-02-15 05:09:17'),(3921,856,1,'2006-02-15 05:09:17'),(3922,856,1,'2006-02-15 05:09:17'),(3923,856,1,'2006-02-15 05:09:17'),(3924,856,2,'2006-02-15 05:09:17'),(3925,856,2,'2006-02-15 05:09:17'),(3926,856,2,'2006-02-15 05:09:17'),(3927,856,2,'2006-02-15 05:09:17'),(3928,857,1,'2006-02-15 05:09:17'),(3929,857,1,'2006-02-15 05:09:17'),(3930,857,1,'2006-02-15 05:09:17'),(3931,857,2,'2006-02-15 05:09:17'),(3932,857,2,'2006-02-15 05:09:17'),(3933,857,2,'2006-02-15 05:09:17'),(3934,857,2,'2006-02-15 05:09:17'),(3935,858,2,'2006-02-15 05:09:17'),(3936,858,2,'2006-02-15 05:09:17'),(3937,858,2,'2006-02-15 05:09:17'),(3938,858,2,'2006-02-15 05:09:17'),(3939,859,1,'2006-02-15 05:09:17'),(3940,859,1,'2006-02-15 05:09:17'),(3941,859,1,'2006-02-15 05:09:17'),(3942,859,2,'2006-02-15 05:09:17'),(3943,859,2,'2006-02-15 05:09:17'),(3944,859,2,'2006-02-15 05:09:17'),(3945,861,1,'2006-02-15 05:09:17'),(3946,861,1,'2006-02-15 05:09:17'),(3947,861,1,'2006-02-15 05:09:17'),(3948,861,2,'2006-02-15 05:09:17'),(3949,861,2,'2006-02-15 05:09:17'),(3950,861,2,'2006-02-15 05:09:17'),(3951,862,1,'2006-02-15 05:09:17'),(3952,862,1,'2006-02-15 05:09:17'),(3953,862,1,'2006-02-15 05:09:17'),(3954,862,2,'2006-02-15 05:09:17'),(3955,862,2,'2006-02-15 05:09:17'),(3956,863,1,'2006-02-15 05:09:17'),(3957,863,1,'2006-02-15 05:09:17'),(3958,863,1,'2006-02-15 05:09:17'),(3959,863,1,'2006-02-15 05:09:17'),(3960,863,2,'2006-02-15 05:09:17'),(3961,863,2,'2006-02-15 05:09:17'),(3962,863,2,'2006-02-15 05:09:17'),(3963,864,1,'2006-02-15 05:09:17'),(3964,864,1,'2006-02-15 05:09:17'),(3965,864,1,'2006-02-15 05:09:17'),(3966,864,1,'2006-02-15 05:09:17'),(3967,864,2,'2006-02-15 05:09:17'),(3968,864,2,'2006-02-15 05:09:17'),(3969,865,1,'2006-02-15 05:09:17'),(3970,865,1,'2006-02-15 05:09:17'),(3971,865,1,'2006-02-15 05:09:17'),(3972,865,1,'2006-02-15 05:09:17'),(3973,865,2,'2006-02-15 05:09:17'),(3974,865,2,'2006-02-15 05:09:17'),(3975,866,2,'2006-02-15 05:09:17'),(3976,866,2,'2006-02-15 05:09:17'),(3977,867,1,'2006-02-15 05:09:17'),(3978,867,1,'2006-02-15 05:09:17'),(3979,867,1,'2006-02-15 05:09:17'),(3980,867,1,'2006-02-15 05:09:17'),(3981,868,1,'2006-02-15 05:09:17'),(3982,868,1,'2006-02-15 05:09:17'),(3983,868,1,'2006-02-15 05:09:17'),(3984,869,1,'2006-02-15 05:09:17'),(3985,869,1,'2006-02-15 05:09:17'),(3986,869,1,'2006-02-15 05:09:17'),(3987,869,1,'2006-02-15 05:09:17'),(3988,869,2,'2006-02-15 05:09:17'),(3989,869,2,'2006-02-15 05:09:17'),(3990,869,2,'2006-02-15 05:09:17'),(3991,870,1,'2006-02-15 05:09:17'),(3992,870,1,'2006-02-15 05:09:17'),(3993,870,1,'2006-02-15 05:09:17'),(3994,870,1,'2006-02-15 05:09:17'),(3995,870,2,'2006-02-15 05:09:17'),(3996,870,2,'2006-02-15 05:09:17'),(3997,870,2,'2006-02-15 05:09:17'),(3998,870,2,'2006-02-15 05:09:17'),(3999,871,1,'2006-02-15 05:09:17'),(4000,871,1,'2006-02-15 05:09:17'),(4001,871,2,'2006-02-15 05:09:17'),(4002,871,2,'2006-02-15 05:09:17'),(4003,871,2,'2006-02-15 05:09:17'),(4004,872,2,'2006-02-15 05:09:17'),(4005,872,2,'2006-02-15 05:09:17'),(4006,872,2,'2006-02-15 05:09:17'),(4007,873,1,'2006-02-15 05:09:17'),(4008,873,1,'2006-02-15 05:09:17'),(4009,873,1,'2006-02-15 05:09:17'),(4010,873,1,'2006-02-15 05:09:17'),(4011,873,2,'2006-02-15 05:09:17'),(4012,873,2,'2006-02-15 05:09:17'),(4013,873,2,'2006-02-15 05:09:17'),(4014,873,2,'2006-02-15 05:09:17'),(4015,875,1,'2006-02-15 05:09:17'),(4016,875,1,'2006-02-15 05:09:17'),(4017,875,1,'2006-02-15 05:09:17'),(4018,875,2,'2006-02-15 05:09:17'),(4019,875,2,'2006-02-15 05:09:17'),(4020,875,2,'2006-02-15 05:09:17'),(4021,875,2,'2006-02-15 05:09:17'),(4022,876,1,'2006-02-15 05:09:17'),(4023,876,1,'2006-02-15 05:09:17'),(4024,877,1,'2006-02-15 05:09:17'),(4025,877,1,'2006-02-15 05:09:17'),(4026,877,1,'2006-02-15 05:09:17'),(4027,877,2,'2006-02-15 05:09:17'),(4028,877,2,'2006-02-15 05:09:17'),(4029,878,2,'2006-02-15 05:09:17'),(4030,878,2,'2006-02-15 05:09:17'),(4031,878,2,'2006-02-15 05:09:17'),(4032,878,2,'2006-02-15 05:09:17'),(4033,879,1,'2006-02-15 05:09:17'),(4034,879,1,'2006-02-15 05:09:17'),(4035,879,1,'2006-02-15 05:09:17'),(4036,879,1,'2006-02-15 05:09:17'),(4037,879,2,'2006-02-15 05:09:17'),(4038,879,2,'2006-02-15 05:09:17'),(4039,879,2,'2006-02-15 05:09:17'),(4040,880,1,'2006-02-15 05:09:17'),(4041,880,1,'2006-02-15 05:09:17'),(4042,880,1,'2006-02-15 05:09:17'),(4043,880,1,'2006-02-15 05:09:17'),(4044,880,2,'2006-02-15 05:09:17'),(4045,880,2,'2006-02-15 05:09:17'),(4046,880,2,'2006-02-15 05:09:17'),(4047,880,2,'2006-02-15 05:09:17'),(4048,881,2,'2006-02-15 05:09:17'),(4049,881,2,'2006-02-15 05:09:17'),(4050,881,2,'2006-02-15 05:09:17'),(4051,881,2,'2006-02-15 05:09:17'),(4052,882,1,'2006-02-15 05:09:17'),(4053,882,1,'2006-02-15 05:09:17'),(4054,882,1,'2006-02-15 05:09:17'),(4055,882,1,'2006-02-15 05:09:17'),(4056,883,2,'2006-02-15 05:09:17'),(4057,883,2,'2006-02-15 05:09:17'),(4058,884,2,'2006-02-15 05:09:17'),(4059,884,2,'2006-02-15 05:09:17'),(4060,884,2,'2006-02-15 05:09:17'),(4061,885,1,'2006-02-15 05:09:17'),(4062,885,1,'2006-02-15 05:09:17'),(4063,886,1,'2006-02-15 05:09:17'),(4064,886,1,'2006-02-15 05:09:17'),(4065,886,1,'2006-02-15 05:09:17'),(4066,886,1,'2006-02-15 05:09:17'),(4067,887,1,'2006-02-15 05:09:17'),(4068,887,1,'2006-02-15 05:09:17'),(4069,887,1,'2006-02-15 05:09:17'),(4070,887,1,'2006-02-15 05:09:17'),(4071,887,2,'2006-02-15 05:09:17'),(4072,887,2,'2006-02-15 05:09:17'),(4073,888,1,'2006-02-15 05:09:17'),(4074,888,1,'2006-02-15 05:09:17'),(4075,888,1,'2006-02-15 05:09:17'),(4076,888,1,'2006-02-15 05:09:17'),(4077,889,1,'2006-02-15 05:09:17'),(4078,889,1,'2006-02-15 05:09:17'),(4079,889,1,'2006-02-15 05:09:17'),(4080,890,1,'2006-02-15 05:09:17'),(4081,890,1,'2006-02-15 05:09:17'),(4082,890,1,'2006-02-15 05:09:17'),(4083,890,2,'2006-02-15 05:09:17'),(4084,890,2,'2006-02-15 05:09:17'),(4085,890,2,'2006-02-15 05:09:17'),(4086,890,2,'2006-02-15 05:09:17'),(4087,891,1,'2006-02-15 05:09:17'),(4088,891,1,'2006-02-15 05:09:17'),(4089,891,1,'2006-02-15 05:09:17'),(4090,891,2,'2006-02-15 05:09:17'),(4091,891,2,'2006-02-15 05:09:17'),(4092,891,2,'2006-02-15 05:09:17'),(4093,891,2,'2006-02-15 05:09:17'),(4094,892,1,'2006-02-15 05:09:17'),(4095,892,1,'2006-02-15 05:09:17'),(4096,892,1,'2006-02-15 05:09:17'),(4097,892,2,'2006-02-15 05:09:17'),(4098,892,2,'2006-02-15 05:09:17'),(4099,892,2,'2006-02-15 05:09:17'),(4100,892,2,'2006-02-15 05:09:17'),(4101,893,1,'2006-02-15 05:09:17'),(4102,893,1,'2006-02-15 05:09:17'),(4103,893,1,'2006-02-15 05:09:17'),(4104,893,1,'2006-02-15 05:09:17'),(4105,893,2,'2006-02-15 05:09:17'),(4106,893,2,'2006-02-15 05:09:17'),(4107,893,2,'2006-02-15 05:09:17'),(4108,893,2,'2006-02-15 05:09:17'),(4109,894,1,'2006-02-15 05:09:17'),(4110,894,1,'2006-02-15 05:09:17'),(4111,894,1,'2006-02-15 05:09:17'),(4112,894,2,'2006-02-15 05:09:17'),(4113,894,2,'2006-02-15 05:09:17'),(4114,895,1,'2006-02-15 05:09:17'),(4115,895,1,'2006-02-15 05:09:17'),(4116,895,1,'2006-02-15 05:09:17'),(4117,895,1,'2006-02-15 05:09:17'),(4118,895,2,'2006-02-15 05:09:17'),(4119,895,2,'2006-02-15 05:09:17'),(4120,895,2,'2006-02-15 05:09:17'),(4121,896,1,'2006-02-15 05:09:17'),(4122,896,1,'2006-02-15 05:09:17'),(4123,896,2,'2006-02-15 05:09:17'),(4124,896,2,'2006-02-15 05:09:17'),(4125,897,1,'2006-02-15 05:09:17'),(4126,897,1,'2006-02-15 05:09:17'),(4127,897,1,'2006-02-15 05:09:17'),(4128,897,1,'2006-02-15 05:09:17'),(4129,897,2,'2006-02-15 05:09:17'),(4130,897,2,'2006-02-15 05:09:17'),(4131,897,2,'2006-02-15 05:09:17'),(4132,897,2,'2006-02-15 05:09:17'),(4133,898,1,'2006-02-15 05:09:17'),(4134,898,1,'2006-02-15 05:09:17'),(4135,898,1,'2006-02-15 05:09:17'),(4136,898,2,'2006-02-15 05:09:17'),(4137,898,2,'2006-02-15 05:09:17'),(4138,899,1,'2006-02-15 05:09:17'),(4139,899,1,'2006-02-15 05:09:17'),(4140,899,1,'2006-02-15 05:09:17'),(4141,900,1,'2006-02-15 05:09:17'),(4142,900,1,'2006-02-15 05:09:17'),(4143,900,2,'2006-02-15 05:09:17'),(4144,900,2,'2006-02-15 05:09:17'),(4145,901,1,'2006-02-15 05:09:17'),(4146,901,1,'2006-02-15 05:09:17'),(4147,901,1,'2006-02-15 05:09:17'),(4148,901,1,'2006-02-15 05:09:17'),(4149,901,2,'2006-02-15 05:09:17'),(4150,901,2,'2006-02-15 05:09:17'),(4151,901,2,'2006-02-15 05:09:17'),(4152,902,1,'2006-02-15 05:09:17'),(4153,902,1,'2006-02-15 05:09:17'),(4154,902,1,'2006-02-15 05:09:17'),(4155,902,1,'2006-02-15 05:09:17'),(4156,902,2,'2006-02-15 05:09:17'),(4157,902,2,'2006-02-15 05:09:17'),(4158,902,2,'2006-02-15 05:09:17'),(4159,903,2,'2006-02-15 05:09:17'),(4160,903,2,'2006-02-15 05:09:17'),(4161,904,1,'2006-02-15 05:09:17'),(4162,904,1,'2006-02-15 05:09:17'),(4163,905,1,'2006-02-15 05:09:17'),(4164,905,1,'2006-02-15 05:09:17'),(4165,905,1,'2006-02-15 05:09:17'),(4166,906,1,'2006-02-15 05:09:17'),(4167,906,1,'2006-02-15 05:09:17'),(4168,906,2,'2006-02-15 05:09:17'),(4169,906,2,'2006-02-15 05:09:17'),(4170,906,2,'2006-02-15 05:09:17'),(4171,907,1,'2006-02-15 05:09:17'),(4172,907,1,'2006-02-15 05:09:17'),(4173,907,1,'2006-02-15 05:09:17'),(4174,907,1,'2006-02-15 05:09:17'),(4175,908,1,'2006-02-15 05:09:17'),(4176,908,1,'2006-02-15 05:09:17'),(4177,908,2,'2006-02-15 05:09:17'),(4178,908,2,'2006-02-15 05:09:17'),(4179,910,2,'2006-02-15 05:09:17'),(4180,910,2,'2006-02-15 05:09:17'),(4181,911,1,'2006-02-15 05:09:17'),(4182,911,1,'2006-02-15 05:09:17'),(4183,911,1,'2006-02-15 05:09:17'),(4184,911,1,'2006-02-15 05:09:17'),(4185,911,2,'2006-02-15 05:09:17'),(4186,911,2,'2006-02-15 05:09:17'),(4187,911,2,'2006-02-15 05:09:17'),(4188,911,2,'2006-02-15 05:09:17'),(4189,912,1,'2006-02-15 05:09:17'),(4190,912,1,'2006-02-15 05:09:17'),(4191,912,1,'2006-02-15 05:09:17'),(4192,912,2,'2006-02-15 05:09:17'),(4193,912,2,'2006-02-15 05:09:17'),(4194,912,2,'2006-02-15 05:09:17'),(4195,913,1,'2006-02-15 05:09:17'),(4196,913,1,'2006-02-15 05:09:17'),(4197,913,1,'2006-02-15 05:09:17'),(4198,913,1,'2006-02-15 05:09:17'),(4199,913,2,'2006-02-15 05:09:17'),(4200,913,2,'2006-02-15 05:09:17'),(4201,914,1,'2006-02-15 05:09:17'),(4202,914,1,'2006-02-15 05:09:17'),(4203,914,2,'2006-02-15 05:09:17'),(4204,914,2,'2006-02-15 05:09:17'),(4205,914,2,'2006-02-15 05:09:17'),(4206,914,2,'2006-02-15 05:09:17'),(4207,915,1,'2006-02-15 05:09:17'),(4208,915,1,'2006-02-15 05:09:17'),(4209,915,1,'2006-02-15 05:09:17'),(4210,915,1,'2006-02-15 05:09:17'),(4211,915,2,'2006-02-15 05:09:17'),(4212,915,2,'2006-02-15 05:09:17'),(4213,916,1,'2006-02-15 05:09:17'),(4214,916,1,'2006-02-15 05:09:17'),(4215,916,2,'2006-02-15 05:09:17'),(4216,916,2,'2006-02-15 05:09:17'),(4217,917,1,'2006-02-15 05:09:17'),(4218,917,1,'2006-02-15 05:09:17'),(4219,917,1,'2006-02-15 05:09:17'),(4220,917,2,'2006-02-15 05:09:17'),(4221,917,2,'2006-02-15 05:09:17'),(4222,918,2,'2006-02-15 05:09:17'),(4223,918,2,'2006-02-15 05:09:17'),(4224,918,2,'2006-02-15 05:09:17'),(4225,918,2,'2006-02-15 05:09:17'),(4226,919,1,'2006-02-15 05:09:17'),(4227,919,1,'2006-02-15 05:09:17'),(4228,919,1,'2006-02-15 05:09:17'),(4229,919,1,'2006-02-15 05:09:17'),(4230,920,1,'2006-02-15 05:09:17'),(4231,920,1,'2006-02-15 05:09:17'),(4232,920,1,'2006-02-15 05:09:17'),(4233,920,2,'2006-02-15 05:09:17'),(4234,920,2,'2006-02-15 05:09:17'),(4235,921,1,'2006-02-15 05:09:17'),(4236,921,1,'2006-02-15 05:09:17'),(4237,921,2,'2006-02-15 05:09:17'),(4238,921,2,'2006-02-15 05:09:17'),(4239,922,1,'2006-02-15 05:09:17'),(4240,922,1,'2006-02-15 05:09:17'),(4241,922,1,'2006-02-15 05:09:17'),(4242,922,2,'2006-02-15 05:09:17'),(4243,922,2,'2006-02-15 05:09:17'),(4244,922,2,'2006-02-15 05:09:17'),(4245,922,2,'2006-02-15 05:09:17'),(4246,923,2,'2006-02-15 05:09:17'),(4247,923,2,'2006-02-15 05:09:17'),(4248,923,2,'2006-02-15 05:09:17'),(4249,924,1,'2006-02-15 05:09:17'),(4250,924,1,'2006-02-15 05:09:17'),(4251,924,2,'2006-02-15 05:09:17'),(4252,924,2,'2006-02-15 05:09:17'),(4253,924,2,'2006-02-15 05:09:17'),(4254,925,1,'2006-02-15 05:09:17'),(4255,925,1,'2006-02-15 05:09:17'),(4256,925,1,'2006-02-15 05:09:17'),(4257,925,2,'2006-02-15 05:09:17'),(4258,925,2,'2006-02-15 05:09:17'),(4259,926,2,'2006-02-15 05:09:17'),(4260,926,2,'2006-02-15 05:09:17'),(4261,927,1,'2006-02-15 05:09:17'),(4262,927,1,'2006-02-15 05:09:17'),(4263,927,1,'2006-02-15 05:09:17'),(4264,927,1,'2006-02-15 05:09:17'),(4265,928,1,'2006-02-15 05:09:17'),(4266,928,1,'2006-02-15 05:09:17'),(4267,928,1,'2006-02-15 05:09:17'),(4268,929,1,'2006-02-15 05:09:17'),(4269,929,1,'2006-02-15 05:09:17'),(4270,929,1,'2006-02-15 05:09:17'),(4271,929,1,'2006-02-15 05:09:17'),(4272,930,1,'2006-02-15 05:09:17'),(4273,930,1,'2006-02-15 05:09:17'),(4274,930,1,'2006-02-15 05:09:17'),(4275,930,2,'2006-02-15 05:09:17'),(4276,930,2,'2006-02-15 05:09:17'),(4277,930,2,'2006-02-15 05:09:17'),(4278,931,2,'2006-02-15 05:09:17'),(4279,931,2,'2006-02-15 05:09:17'),(4280,931,2,'2006-02-15 05:09:17'),(4281,932,1,'2006-02-15 05:09:17'),(4282,932,1,'2006-02-15 05:09:17'),(4283,932,2,'2006-02-15 05:09:17'),(4284,932,2,'2006-02-15 05:09:17'),(4285,933,1,'2006-02-15 05:09:17'),(4286,933,1,'2006-02-15 05:09:17'),(4287,933,1,'2006-02-15 05:09:17'),(4288,934,2,'2006-02-15 05:09:17'),(4289,934,2,'2006-02-15 05:09:17'),(4290,934,2,'2006-02-15 05:09:17'),(4291,935,2,'2006-02-15 05:09:17'),(4292,935,2,'2006-02-15 05:09:17'),(4293,936,1,'2006-02-15 05:09:17'),(4294,936,1,'2006-02-15 05:09:17'),(4295,936,2,'2006-02-15 05:09:17'),(4296,936,2,'2006-02-15 05:09:17'),(4297,936,2,'2006-02-15 05:09:17'),(4298,936,2,'2006-02-15 05:09:17'),(4299,937,1,'2006-02-15 05:09:17'),(4300,937,1,'2006-02-15 05:09:17'),(4301,937,2,'2006-02-15 05:09:17'),(4302,937,2,'2006-02-15 05:09:17'),(4303,937,2,'2006-02-15 05:09:17'),(4304,938,1,'2006-02-15 05:09:17'),(4305,938,1,'2006-02-15 05:09:17'),(4306,938,1,'2006-02-15 05:09:17'),(4307,938,1,'2006-02-15 05:09:17'),(4308,938,2,'2006-02-15 05:09:17'),(4309,938,2,'2006-02-15 05:09:17'),(4310,939,2,'2006-02-15 05:09:17'),(4311,939,2,'2006-02-15 05:09:17'),(4312,939,2,'2006-02-15 05:09:17'),(4313,939,2,'2006-02-15 05:09:17'),(4314,940,1,'2006-02-15 05:09:17'),(4315,940,1,'2006-02-15 05:09:17'),(4316,940,1,'2006-02-15 05:09:17'),(4317,941,1,'2006-02-15 05:09:17'),(4318,941,1,'2006-02-15 05:09:17'),(4319,941,1,'2006-02-15 05:09:17'),(4320,941,1,'2006-02-15 05:09:17'),(4321,941,2,'2006-02-15 05:09:17'),(4322,941,2,'2006-02-15 05:09:17'),(4323,941,2,'2006-02-15 05:09:17'),(4324,942,1,'2006-02-15 05:09:17'),(4325,942,1,'2006-02-15 05:09:17'),(4326,942,2,'2006-02-15 05:09:17'),(4327,942,2,'2006-02-15 05:09:17'),(4328,944,1,'2006-02-15 05:09:17'),(4329,944,1,'2006-02-15 05:09:17'),(4330,944,2,'2006-02-15 05:09:17'),(4331,944,2,'2006-02-15 05:09:17'),(4332,944,2,'2006-02-15 05:09:17'),(4333,945,1,'2006-02-15 05:09:17'),(4334,945,1,'2006-02-15 05:09:17'),(4335,945,1,'2006-02-15 05:09:17'),(4336,945,1,'2006-02-15 05:09:17'),(4337,945,2,'2006-02-15 05:09:17'),(4338,945,2,'2006-02-15 05:09:17'),(4339,945,2,'2006-02-15 05:09:17'),(4340,945,2,'2006-02-15 05:09:17'),(4341,946,2,'2006-02-15 05:09:17'),(4342,946,2,'2006-02-15 05:09:17'),(4343,946,2,'2006-02-15 05:09:17'),(4344,946,2,'2006-02-15 05:09:17'),(4345,947,1,'2006-02-15 05:09:17'),(4346,947,1,'2006-02-15 05:09:17'),(4347,948,1,'2006-02-15 05:09:17'),(4348,948,1,'2006-02-15 05:09:17'),(4349,948,2,'2006-02-15 05:09:17'),(4350,948,2,'2006-02-15 05:09:17'),(4351,948,2,'2006-02-15 05:09:17'),(4352,948,2,'2006-02-15 05:09:17'),(4353,949,1,'2006-02-15 05:09:17'),(4354,949,1,'2006-02-15 05:09:17'),(4355,949,1,'2006-02-15 05:09:17'),(4356,949,1,'2006-02-15 05:09:17'),(4357,949,2,'2006-02-15 05:09:17'),(4358,949,2,'2006-02-15 05:09:17'),(4359,951,1,'2006-02-15 05:09:17'),(4360,951,1,'2006-02-15 05:09:17'),(4361,951,1,'2006-02-15 05:09:17'),(4362,951,2,'2006-02-15 05:09:17'),(4363,951,2,'2006-02-15 05:09:17'),(4364,951,2,'2006-02-15 05:09:17'),(4365,951,2,'2006-02-15 05:09:17'),(4366,952,1,'2006-02-15 05:09:17'),(4367,952,1,'2006-02-15 05:09:17'),(4368,952,1,'2006-02-15 05:09:17'),(4369,953,1,'2006-02-15 05:09:17'),(4370,953,1,'2006-02-15 05:09:17'),(4371,953,1,'2006-02-15 05:09:17'),(4372,953,1,'2006-02-15 05:09:17'),(4373,953,2,'2006-02-15 05:09:17'),(4374,953,2,'2006-02-15 05:09:17'),(4375,956,1,'2006-02-15 05:09:17'),(4376,956,1,'2006-02-15 05:09:17'),(4377,956,1,'2006-02-15 05:09:17'),(4378,956,1,'2006-02-15 05:09:17'),(4379,957,1,'2006-02-15 05:09:17'),(4380,957,1,'2006-02-15 05:09:17'),(4381,957,1,'2006-02-15 05:09:17'),(4382,957,2,'2006-02-15 05:09:17'),(4383,957,2,'2006-02-15 05:09:17'),(4384,958,1,'2006-02-15 05:09:17'),(4385,958,1,'2006-02-15 05:09:17'),(4386,958,1,'2006-02-15 05:09:17'),(4387,958,2,'2006-02-15 05:09:17'),(4388,958,2,'2006-02-15 05:09:17'),(4389,958,2,'2006-02-15 05:09:17'),(4390,959,1,'2006-02-15 05:09:17'),(4391,959,1,'2006-02-15 05:09:17'),(4392,960,2,'2006-02-15 05:09:17'),(4393,960,2,'2006-02-15 05:09:17'),(4394,960,2,'2006-02-15 05:09:17'),(4395,961,1,'2006-02-15 05:09:17'),(4396,961,1,'2006-02-15 05:09:17'),(4397,961,1,'2006-02-15 05:09:17'),(4398,961,2,'2006-02-15 05:09:17'),(4399,961,2,'2006-02-15 05:09:17'),(4400,962,1,'2006-02-15 05:09:17'),(4401,962,1,'2006-02-15 05:09:17'),(4402,962,1,'2006-02-15 05:09:17'),(4403,962,1,'2006-02-15 05:09:17'),(4404,963,1,'2006-02-15 05:09:17'),(4405,963,1,'2006-02-15 05:09:17'),(4406,963,2,'2006-02-15 05:09:17'),(4407,963,2,'2006-02-15 05:09:17'),(4408,963,2,'2006-02-15 05:09:17'),(4409,964,1,'2006-02-15 05:09:17'),(4410,964,1,'2006-02-15 05:09:17'),(4411,964,1,'2006-02-15 05:09:17'),(4412,964,2,'2006-02-15 05:09:17'),(4413,964,2,'2006-02-15 05:09:17'),(4414,965,1,'2006-02-15 05:09:17'),(4415,965,1,'2006-02-15 05:09:17'),(4416,966,1,'2006-02-15 05:09:17'),(4417,966,1,'2006-02-15 05:09:17'),(4418,966,2,'2006-02-15 05:09:17'),(4419,966,2,'2006-02-15 05:09:17'),(4420,966,2,'2006-02-15 05:09:17'),(4421,966,2,'2006-02-15 05:09:17'),(4422,967,1,'2006-02-15 05:09:17'),(4423,967,1,'2006-02-15 05:09:17'),(4424,967,1,'2006-02-15 05:09:17'),(4425,967,2,'2006-02-15 05:09:17'),(4426,967,2,'2006-02-15 05:09:17'),(4427,968,1,'2006-02-15 05:09:17'),(4428,968,1,'2006-02-15 05:09:17'),(4429,968,1,'2006-02-15 05:09:17'),(4430,969,1,'2006-02-15 05:09:17'),(4431,969,1,'2006-02-15 05:09:17'),(4432,969,1,'2006-02-15 05:09:17'),(4433,969,1,'2006-02-15 05:09:17'),(4434,970,1,'2006-02-15 05:09:17'),(4435,970,1,'2006-02-15 05:09:17'),(4436,970,1,'2006-02-15 05:09:17'),(4437,970,2,'2006-02-15 05:09:17'),(4438,970,2,'2006-02-15 05:09:17'),(4439,970,2,'2006-02-15 05:09:17'),(4440,970,2,'2006-02-15 05:09:17'),(4441,971,1,'2006-02-15 05:09:17'),(4442,971,1,'2006-02-15 05:09:17'),(4443,971,1,'2006-02-15 05:09:17'),(4444,971,1,'2006-02-15 05:09:17'),(4445,972,1,'2006-02-15 05:09:17'),(4446,972,1,'2006-02-15 05:09:17'),(4447,972,1,'2006-02-15 05:09:17'),(4448,972,2,'2006-02-15 05:09:17'),(4449,972,2,'2006-02-15 05:09:17'),(4450,972,2,'2006-02-15 05:09:17'),(4451,973,1,'2006-02-15 05:09:17'),(4452,973,1,'2006-02-15 05:09:17'),(4453,973,1,'2006-02-15 05:09:17'),(4454,973,1,'2006-02-15 05:09:17'),(4455,973,2,'2006-02-15 05:09:17'),(4456,973,2,'2006-02-15 05:09:17'),(4457,973,2,'2006-02-15 05:09:17'),(4458,973,2,'2006-02-15 05:09:17'),(4459,974,1,'2006-02-15 05:09:17'),(4460,974,1,'2006-02-15 05:09:17'),(4461,975,1,'2006-02-15 05:09:17'),(4462,975,1,'2006-02-15 05:09:17'),(4463,975,2,'2006-02-15 05:09:17'),(4464,975,2,'2006-02-15 05:09:17'),(4465,975,2,'2006-02-15 05:09:17'),(4466,976,1,'2006-02-15 05:09:17'),(4467,976,1,'2006-02-15 05:09:17'),(4468,976,2,'2006-02-15 05:09:17'),(4469,976,2,'2006-02-15 05:09:17'),(4470,976,2,'2006-02-15 05:09:17'),(4471,976,2,'2006-02-15 05:09:17'),(4472,977,2,'2006-02-15 05:09:17'),(4473,977,2,'2006-02-15 05:09:17'),(4474,977,2,'2006-02-15 05:09:17'),(4475,978,1,'2006-02-15 05:09:17'),(4476,978,1,'2006-02-15 05:09:17'),(4477,978,1,'2006-02-15 05:09:17'),(4478,979,1,'2006-02-15 05:09:17'),(4479,979,1,'2006-02-15 05:09:17'),(4480,979,1,'2006-02-15 05:09:17'),(4481,979,1,'2006-02-15 05:09:17'),(4482,979,2,'2006-02-15 05:09:17'),(4483,979,2,'2006-02-15 05:09:17'),(4484,979,2,'2006-02-15 05:09:17'),(4485,980,1,'2006-02-15 05:09:17'),(4486,980,1,'2006-02-15 05:09:17'),(4487,980,1,'2006-02-15 05:09:17'),(4488,980,2,'2006-02-15 05:09:17'),(4489,980,2,'2006-02-15 05:09:17'),(4490,981,1,'2006-02-15 05:09:17'),(4491,981,1,'2006-02-15 05:09:17'),(4492,981,1,'2006-02-15 05:09:17'),(4493,981,2,'2006-02-15 05:09:17'),(4494,981,2,'2006-02-15 05:09:17'),(4495,981,2,'2006-02-15 05:09:17'),(4496,982,1,'2006-02-15 05:09:17'),(4497,982,1,'2006-02-15 05:09:17'),(4498,982,1,'2006-02-15 05:09:17'),(4499,982,2,'2006-02-15 05:09:17'),(4500,982,2,'2006-02-15 05:09:17'),(4501,982,2,'2006-02-15 05:09:17'),(4502,982,2,'2006-02-15 05:09:17'),(4503,983,1,'2006-02-15 05:09:17'),(4504,983,1,'2006-02-15 05:09:17'),(4505,983,1,'2006-02-15 05:09:17'),(4506,984,1,'2006-02-15 05:09:17'),(4507,984,1,'2006-02-15 05:09:17'),(4508,985,1,'2006-02-15 05:09:17'),(4509,985,1,'2006-02-15 05:09:17'),(4510,985,1,'2006-02-15 05:09:17'),(4511,985,1,'2006-02-15 05:09:17'),(4512,985,2,'2006-02-15 05:09:17'),(4513,985,2,'2006-02-15 05:09:17'),(4514,985,2,'2006-02-15 05:09:17'),(4515,986,1,'2006-02-15 05:09:17'),(4516,986,1,'2006-02-15 05:09:17'),(4517,986,1,'2006-02-15 05:09:17'),(4518,986,1,'2006-02-15 05:09:17'),(4519,986,2,'2006-02-15 05:09:17'),(4520,986,2,'2006-02-15 05:09:17'),(4521,987,1,'2006-02-15 05:09:17'),(4522,987,1,'2006-02-15 05:09:17'),(4523,987,2,'2006-02-15 05:09:17'),(4524,987,2,'2006-02-15 05:09:17'),(4525,988,1,'2006-02-15 05:09:17'),(4526,988,1,'2006-02-15 05:09:17'),(4527,988,1,'2006-02-15 05:09:17'),(4528,988,2,'2006-02-15 05:09:17'),(4529,988,2,'2006-02-15 05:09:17'),(4530,989,1,'2006-02-15 05:09:17'),(4531,989,1,'2006-02-15 05:09:17'),(4532,989,1,'2006-02-15 05:09:17'),(4533,989,1,'2006-02-15 05:09:17'),(4534,989,2,'2006-02-15 05:09:17'),(4535,989,2,'2006-02-15 05:09:17'),(4536,990,2,'2006-02-15 05:09:17'),(4537,990,2,'2006-02-15 05:09:17'),(4538,991,1,'2006-02-15 05:09:17'),(4539,991,1,'2006-02-15 05:09:17'),(4540,991,2,'2006-02-15 05:09:17'),(4541,991,2,'2006-02-15 05:09:17'),(4542,991,2,'2006-02-15 05:09:17'),(4543,992,2,'2006-02-15 05:09:17'),(4544,992,2,'2006-02-15 05:09:17'),(4545,992,2,'2006-02-15 05:09:17'),(4546,992,2,'2006-02-15 05:09:17'),(4547,993,1,'2006-02-15 05:09:17'),(4548,993,1,'2006-02-15 05:09:17'),(4549,993,1,'2006-02-15 05:09:17'),(4550,993,1,'2006-02-15 05:09:17'),(4551,993,2,'2006-02-15 05:09:17'),(4552,993,2,'2006-02-15 05:09:17'),(4553,993,2,'2006-02-15 05:09:17'),(4554,994,1,'2006-02-15 05:09:17'),(4555,994,1,'2006-02-15 05:09:17'),(4556,994,1,'2006-02-15 05:09:17'),(4557,995,1,'2006-02-15 05:09:17'),(4558,995,1,'2006-02-15 05:09:17'),(4559,995,1,'2006-02-15 05:09:17'),(4560,995,1,'2006-02-15 05:09:17'),(4561,995,2,'2006-02-15 05:09:17'),(4562,995,2,'2006-02-15 05:09:17'),(4563,996,1,'2006-02-15 05:09:17'),(4564,996,1,'2006-02-15 05:09:17'),(4565,997,1,'2006-02-15 05:09:17'),(4566,997,1,'2006-02-15 05:09:17'),(4567,998,2,'2006-02-15 05:09:17'),(4568,998,2,'2006-02-15 05:09:17'),(4569,999,1,'2006-02-15 05:09:17'),(4570,999,1,'2006-02-15 05:09:17'),(4571,999,2,'2006-02-15 05:09:17'),(4572,999,2,'2006-02-15 05:09:17'),(4573,999,2,'2006-02-15 05:09:17'),(4574,1000,1,'2006-02-15 05:09:17'),(4575,1000,1,'2006-02-15 05:09:17'),(4576,1000,1,'2006-02-15 05:09:17'),(4577,1000,1,'2006-02-15 05:09:17'),(4578,1000,2,'2006-02-15 05:09:17'),(4579,1000,2,'2006-02-15 05:09:17'),(4580,1000,2,'2006-02-15 05:09:17'),(4581,1000,2,'2006-02-15 05:09:17'); + +INSERT INTO payment VALUES (1,1,1,76,'2.99','2005-05-25 11:30:37','2006-02-15 22:12:30'),(2,1,1,573,'0.99','2005-05-28 10:35:23','2006-02-15 22:12:30'),(3,1,1,1185,'5.99','2005-06-15 00:54:12','2006-02-15 22:12:30'),(4,1,2,1422,'0.99','2005-06-15 18:02:53','2006-02-15 22:12:30'),(5,1,2,1476,'9.99','2005-06-15 21:08:46','2006-02-15 22:12:30'),(6,1,1,1725,'4.99','2005-06-16 15:18:57','2006-02-15 22:12:30'),(7,1,1,2308,'4.99','2005-06-18 08:41:48','2006-02-15 22:12:30'),(8,1,2,2363,'0.99','2005-06-18 13:33:59','2006-02-15 22:12:30'),(9,1,1,3284,'3.99','2005-06-21 06:24:45','2006-02-15 22:12:30'),(10,1,2,4526,'5.99','2005-07-08 03:17:05','2006-02-15 22:12:30'),(11,1,1,4611,'5.99','2005-07-08 07:33:56','2006-02-15 22:12:30'),(12,1,1,5244,'4.99','2005-07-09 13:24:07','2006-02-15 22:12:30'),(13,1,1,5326,'4.99','2005-07-09 16:38:01','2006-02-15 22:12:30'),(14,1,1,6163,'7.99','2005-07-11 10:13:46','2006-02-15 22:12:30'),(15,1,2,7273,'2.99','2005-07-27 11:31:22','2006-02-15 22:12:30'),(16,1,1,7841,'4.99','2005-07-28 09:04:45','2006-02-15 22:12:30'),(17,1,2,8033,'4.99','2005-07-28 16:18:23','2006-02-15 22:12:30'),(18,1,1,8074,'0.99','2005-07-28 17:33:39','2006-02-15 22:12:30'),(19,1,2,8116,'0.99','2005-07-28 19:20:07','2006-02-15 22:12:30'),(20,1,2,8326,'2.99','2005-07-29 03:58:49','2006-02-15 22:12:30'),(21,1,2,9571,'2.99','2005-07-31 02:42:18','2006-02-15 22:12:30'),(22,1,2,10437,'4.99','2005-08-01 08:51:04','2006-02-15 22:12:30'),(23,1,2,11299,'3.99','2005-08-02 15:36:52','2006-02-15 22:12:30'),(24,1,1,11367,'0.99','2005-08-02 18:01:38','2006-02-15 22:12:30'),(25,1,2,11824,'4.99','2005-08-17 12:37:54','2006-02-15 22:12:30'),(26,1,1,12250,'0.99','2005-08-18 03:57:29','2006-02-15 22:12:30'),(27,1,2,13068,'0.99','2005-08-19 09:55:16','2006-02-15 22:12:30'),(28,1,2,13176,'2.99','2005-08-19 13:56:54','2006-02-15 22:12:30'),(29,1,1,14762,'0.99','2005-08-21 23:33:57','2006-02-15 22:12:30'),(30,1,1,14825,'1.99','2005-08-22 01:27:57','2006-02-15 22:12:30'),(31,1,2,15298,'2.99','2005-08-22 19:41:37','2006-02-15 22:12:30'),(32,1,1,15315,'5.99','2005-08-22 20:03:46','2006-02-15 22:12:30'),(33,2,1,320,'4.99','2005-05-27 00:09:24','2006-02-15 22:12:30'),(34,2,1,2128,'2.99','2005-06-17 20:54:58','2006-02-15 22:12:30'),(35,2,1,5636,'2.99','2005-07-10 06:31:24','2006-02-15 22:12:30'),(36,2,1,5755,'6.99','2005-07-10 12:38:56','2006-02-15 22:12:30'),(37,2,2,7346,'4.99','2005-07-27 14:30:42','2006-02-15 22:12:30'),(38,2,1,7376,'5.99','2005-07-27 15:23:02','2006-02-15 22:12:30'),(39,2,2,7459,'5.99','2005-07-27 18:40:20','2006-02-15 22:12:30'),(40,2,2,8230,'5.99','2005-07-29 00:12:59','2006-02-15 22:12:30'),(41,2,1,8598,'2.99','2005-07-29 12:56:59','2006-02-15 22:12:30'),(42,2,2,8705,'5.99','2005-07-29 17:14:29','2006-02-15 22:12:30'),(43,2,1,9031,'4.99','2005-07-30 06:06:10','2006-02-15 22:12:30'),(44,2,2,9236,'10.99','2005-07-30 13:47:43','2006-02-15 22:12:30'),(45,2,2,9248,'0.99','2005-07-30 14:14:11','2006-02-15 22:12:30'),(46,2,2,9296,'6.99','2005-07-30 16:21:13','2006-02-15 22:12:30'),(47,2,2,9465,'6.99','2005-07-30 22:39:53','2006-02-15 22:12:30'),(48,2,1,10136,'2.99','2005-07-31 21:58:56','2006-02-15 22:12:30'),(49,2,1,10466,'0.99','2005-08-01 09:45:26','2006-02-15 22:12:30'),(50,2,1,10918,'0.99','2005-08-02 02:10:56','2006-02-15 22:12:30'),(51,2,1,11087,'5.99','2005-08-02 07:41:41','2006-02-15 22:12:30'),(52,2,1,11177,'6.99','2005-08-02 10:43:48','2006-02-15 22:12:30'),(53,2,2,11256,'2.99','2005-08-02 13:44:53','2006-02-15 22:12:30'),(54,2,1,11614,'2.99','2005-08-17 03:52:18','2006-02-15 22:12:30'),(55,2,1,12963,'2.99','2005-08-19 06:26:04','2006-02-15 22:12:30'),(56,2,1,14475,'4.99','2005-08-21 13:24:32','2006-02-15 22:12:30'),(57,2,2,14743,'5.99','2005-08-21 22:41:56','2006-02-15 22:12:30'),(58,2,2,15145,'4.99','2005-08-22 13:53:04','2006-02-15 22:12:30'),(59,2,2,15907,'4.99','2005-08-23 17:39:35','2006-02-15 22:12:30'),(60,3,1,435,'1.99','2005-05-27 17:17:09','2006-02-15 22:12:30'),(61,3,1,830,'2.99','2005-05-29 22:43:55','2006-02-15 22:12:30'),(62,3,1,1546,'8.99','2005-06-16 01:34:05','2006-02-15 22:12:30'),(63,3,1,1726,'6.99','2005-06-16 15:19:10','2006-02-15 22:12:30'),(64,3,2,1911,'6.99','2005-06-17 05:15:15','2006-02-15 22:12:30'),(65,3,1,2628,'2.99','2005-06-19 08:34:53','2006-02-15 22:12:30'),(66,3,1,4180,'4.99','2005-07-07 10:23:25','2006-02-15 22:12:30'),(67,3,1,4725,'4.99','2005-07-08 12:47:11','2006-02-15 22:12:30'),(68,3,1,7096,'5.99','2005-07-27 04:54:42','2006-02-15 22:12:30'),(69,3,2,7503,'10.99','2005-07-27 20:23:12','2006-02-15 22:12:30'),(70,3,2,7703,'7.99','2005-07-28 03:59:21','2006-02-15 22:12:30'),(71,3,2,7724,'6.99','2005-07-28 04:46:30','2006-02-15 22:12:30'),(72,3,1,7911,'4.99','2005-07-28 11:46:45','2006-02-15 22:12:30'),(73,3,2,8086,'4.99','2005-07-28 18:17:14','2006-02-15 22:12:30'),(74,3,1,8545,'2.99','2005-07-29 11:07:04','2006-02-15 22:12:30'),(75,3,1,9226,'1.99','2005-07-30 13:31:20','2006-02-15 22:12:30'),(76,3,2,9443,'3.99','2005-07-30 21:45:46','2006-02-15 22:12:30'),(77,3,1,9595,'2.99','2005-07-31 03:27:58','2006-02-15 22:12:30'),(78,3,2,9816,'4.99','2005-07-31 11:32:58','2006-02-15 22:12:30'),(79,3,2,10597,'5.99','2005-08-01 14:19:48','2006-02-15 22:12:30'),(80,3,2,12556,'4.99','2005-08-18 14:49:55','2006-02-15 22:12:30'),(81,3,1,13403,'8.99','2005-08-19 22:18:07','2006-02-15 22:12:30'),(82,3,2,13610,'2.99','2005-08-20 06:14:12','2006-02-15 22:12:30'),(83,3,2,14699,'8.99','2005-08-21 20:50:48','2006-02-15 22:12:30'),(84,3,2,15038,'0.99','2005-08-22 09:37:27','2006-02-15 22:12:30'),(85,3,1,15619,'2.99','2005-08-23 07:10:14','2006-02-15 22:12:30'),(86,4,1,1297,'4.99','2005-06-15 09:31:28','2006-02-15 22:12:30'),(87,4,1,1633,'0.99','2005-06-16 08:08:40','2006-02-15 22:12:30'),(88,4,2,1707,'2.99','2005-06-16 14:01:27','2006-02-15 22:12:30'),(89,4,2,1735,'0.99','2005-06-16 15:51:52','2006-02-15 22:12:30'),(90,4,2,2043,'0.99','2005-06-17 14:31:12','2006-02-15 22:12:30'),(91,4,1,2642,'5.99','2005-06-19 09:39:01','2006-02-15 22:12:30'),(92,4,1,7660,'2.99','2005-07-28 02:10:10','2006-02-15 22:12:30'),(93,4,2,7718,'2.99','2005-07-28 04:37:59','2006-02-15 22:12:30'),(94,4,1,8741,'3.99','2005-07-29 18:44:57','2006-02-15 22:12:30'),(95,4,1,9100,'5.99','2005-07-30 08:46:09','2006-02-15 22:12:30'),(96,4,1,9371,'5.99','2005-07-30 18:58:00','2006-02-15 22:12:30'),(97,4,2,11069,'0.99','2005-08-02 07:09:34','2006-02-15 22:12:30'),(98,4,1,11110,'2.99','2005-08-02 08:20:31','2006-02-15 22:12:30'),(99,4,2,11529,'4.99','2005-08-17 00:28:01','2006-02-15 22:12:30'),(100,4,1,12151,'2.99','2005-08-18 00:14:03','2006-02-15 22:12:30'),(101,4,2,12294,'8.99','2005-08-18 05:14:44','2006-02-15 22:12:30'),(102,4,2,12856,'1.99','2005-08-19 02:19:13','2006-02-15 22:12:30'),(103,4,1,13704,'2.99','2005-08-20 09:32:04','2006-02-15 22:12:30'),(104,4,1,13807,'6.99','2005-08-20 12:55:40','2006-02-15 22:12:30'),(105,4,2,14225,'4.99','2005-08-21 04:53:37','2006-02-15 22:12:30'),(106,4,1,15147,'2.99','2005-08-22 13:58:23','2006-02-15 22:12:30'),(107,4,2,15635,'1.99','2005-08-23 07:43:00','2006-02-15 22:12:30'),(108,5,1,731,'0.99','2005-05-29 07:25:16','2006-02-15 22:12:30'),(109,5,1,1085,'6.99','2005-05-31 11:15:43','2006-02-15 22:12:30'),(110,5,1,1142,'1.99','2005-05-31 19:46:38','2006-02-15 22:12:30'),(111,5,1,1502,'3.99','2005-06-15 22:03:14','2006-02-15 22:12:30'),(112,5,2,1631,'2.99','2005-06-16 08:01:02','2006-02-15 22:12:30'),(113,5,2,2063,'4.99','2005-06-17 15:56:53','2006-02-15 22:12:30'),(114,5,2,2570,'2.99','2005-06-19 04:20:13','2006-02-15 22:12:30'),(115,5,2,3126,'4.99','2005-06-20 18:38:22','2006-02-15 22:12:30'),(116,5,2,3677,'4.99','2005-07-06 09:11:58','2006-02-15 22:12:30'),(117,5,2,4889,'2.99','2005-07-08 20:04:43','2006-02-15 22:12:30'),(118,5,1,5016,'4.99','2005-07-09 01:57:57','2006-02-15 22:12:30'),(119,5,2,5118,'5.99','2005-07-09 07:13:52','2006-02-15 22:12:30'),(120,5,2,5156,'1.99','2005-07-09 08:51:42','2006-02-15 22:12:30'),(121,5,2,5721,'0.99','2005-07-10 11:09:35','2006-02-15 22:12:30'),(122,5,1,6042,'8.99','2005-07-11 03:17:04','2006-02-15 22:12:30'),(123,5,1,6663,'3.99','2005-07-12 11:27:35','2006-02-15 22:12:30'),(124,5,2,6685,'4.99','2005-07-12 12:16:28','2006-02-15 22:12:30'),(125,5,2,7293,'0.99','2005-07-27 12:37:28','2006-02-15 22:12:30'),(126,5,2,7652,'0.99','2005-07-28 01:50:29','2006-02-15 22:12:30'),(127,5,2,7829,'3.99','2005-07-28 08:43:39','2006-02-15 22:12:30'),(128,5,1,8263,'2.99','2005-07-29 01:11:23','2006-02-15 22:12:30'),(129,5,1,8978,'1.99','2005-07-30 04:14:28','2006-02-15 22:12:30'),(130,5,1,9493,'4.99','2005-07-30 23:52:30','2006-02-15 22:12:30'),(131,5,1,9888,'3.99','2005-07-31 14:00:53','2006-02-15 22:12:30'),(132,5,2,10609,'4.99','2005-08-01 14:48:45','2006-02-15 22:12:30'),(133,5,1,10625,'0.99','2005-08-01 15:27:10','2006-02-15 22:12:30'),(134,5,2,11001,'4.99','2005-08-02 04:56:45','2006-02-15 22:12:30'),(135,5,1,11179,'4.99','2005-08-02 10:50:06','2006-02-15 22:12:30'),(136,5,2,11930,'3.99','2005-08-17 16:28:53','2006-02-15 22:12:30'),(137,5,1,12145,'9.99','2005-08-18 00:10:04','2006-02-15 22:12:30'),(138,5,1,12797,'2.99','2005-08-19 00:24:08','2006-02-15 22:12:30'),(139,5,1,13063,'1.99','2005-08-19 09:45:41','2006-02-15 22:12:30'),(140,5,2,13877,'0.99','2005-08-20 15:16:18','2006-02-15 22:12:30'),(141,5,2,14053,'6.99','2005-08-20 22:13:59','2006-02-15 22:12:30'),(142,5,1,14430,'6.99','2005-08-21 11:31:11','2006-02-15 22:12:30'),(143,5,2,14494,'2.99','2005-08-21 14:02:50','2006-02-15 22:12:30'),(144,5,2,15232,'0.99','2005-08-22 17:37:02','2006-02-15 22:12:30'),(145,5,2,13209,'0.99','2006-02-14 15:16:03','2006-02-15 22:12:30'),(146,6,2,57,'4.99','2005-05-25 08:43:32','2006-02-15 22:12:30'),(147,6,1,577,'2.99','2005-05-28 11:09:14','2006-02-15 22:12:30'),(148,6,2,916,'0.99','2005-05-30 11:25:01','2006-02-15 22:12:30'),(149,6,1,1575,'3.99','2005-06-16 03:41:38','2006-02-15 22:12:30'),(150,6,2,1841,'2.99','2005-06-16 23:44:13','2006-02-15 22:12:30'),(151,6,1,1966,'0.99','2005-06-17 09:19:45','2006-02-15 22:12:30'),(152,6,1,2345,'0.99','2005-06-18 12:03:23','2006-02-15 22:12:30'),(153,6,2,3983,'0.99','2005-07-06 23:14:21','2006-02-15 22:12:30'),(154,6,2,4278,'2.99','2005-07-07 14:53:24','2006-02-15 22:12:30'),(155,6,1,5553,'0.99','2005-07-10 03:03:35','2006-02-15 22:12:30'),(156,6,2,6211,'5.99','2005-07-11 12:39:01','2006-02-15 22:12:30'),(157,6,1,6248,'7.99','2005-07-11 15:01:54','2006-02-15 22:12:30'),(158,6,2,6686,'0.99','2005-07-12 12:18:38','2006-02-15 22:12:30'),(159,6,2,7099,'2.99','2005-07-27 05:03:44','2006-02-15 22:12:30'),(160,6,2,7136,'2.99','2005-07-27 06:38:25','2006-02-15 22:12:30'),(161,6,1,8101,'0.99','2005-07-28 18:47:23','2006-02-15 22:12:30'),(162,6,1,10271,'2.99','2005-08-01 03:13:39','2006-02-15 22:12:30'),(163,6,1,11023,'2.99','2005-08-02 05:36:38','2006-02-15 22:12:30'),(164,6,1,11398,'3.99','2005-08-02 18:55:15','2006-02-15 22:12:30'),(165,6,1,11591,'6.99','2005-08-17 02:29:41','2006-02-15 22:12:30'),(166,6,1,11727,'0.99','2005-08-17 08:12:20','2006-02-15 22:12:30'),(167,6,1,11853,'0.99','2005-08-17 13:39:32','2006-02-15 22:12:30'),(168,6,2,12254,'2.99','2005-08-18 04:05:29','2006-02-15 22:12:30'),(169,6,2,13451,'6.99','2005-08-20 00:18:25','2006-02-15 22:12:30'),(170,6,1,14329,'7.99','2005-08-21 08:22:56','2006-02-15 22:12:30'),(171,6,1,14377,'4.99','2005-08-21 09:49:28','2006-02-15 22:12:30'),(172,6,1,15509,'5.99','2005-08-23 02:51:24','2006-02-15 22:12:30'),(173,6,2,15603,'0.99','2005-08-23 06:41:32','2006-02-15 22:12:30'),(174,7,2,46,'5.99','2005-05-25 06:04:08','2006-02-15 22:12:30'),(175,7,2,117,'0.99','2005-05-25 19:30:46','2006-02-15 22:12:30'),(176,7,2,748,'2.99','2005-05-29 09:27:00','2006-02-15 22:12:30'),(177,7,1,975,'4.99','2005-05-30 21:07:15','2006-02-15 22:12:30'),(178,7,1,1063,'5.99','2005-05-31 08:44:29','2006-02-15 22:12:30'),(179,7,2,1810,'0.99','2005-06-16 21:06:00','2006-02-15 22:12:30'),(180,7,1,2250,'2.99','2005-06-18 05:03:36','2006-02-15 22:12:31'),(181,7,1,2709,'0.99','2005-06-19 14:00:26','2006-02-15 22:12:31'),(182,7,1,2888,'4.99','2005-06-20 01:50:56','2006-02-15 22:12:31'),(183,7,1,3007,'0.99','2005-06-20 10:11:53','2006-02-15 22:12:31'),(184,7,2,3639,'5.99','2005-07-06 07:09:17','2006-02-15 22:12:31'),(185,7,2,4238,'2.99','2005-07-07 13:22:20','2006-02-15 22:12:31'),(186,7,2,4787,'5.99','2005-07-08 16:16:04','2006-02-15 22:12:31'),(187,7,1,4856,'4.99','2005-07-08 18:47:38','2006-02-15 22:12:31'),(188,7,1,5441,'8.99','2005-07-09 21:52:05','2006-02-15 22:12:31'),(189,7,1,5921,'7.99','2005-07-10 21:35:12','2006-02-15 22:12:31'),(190,7,1,6174,'1.99','2005-07-11 10:36:28','2006-02-15 22:12:31'),(191,7,1,6295,'2.99','2005-07-11 17:30:58','2006-02-15 22:12:31'),(192,7,2,6761,'3.99','2005-07-12 15:17:42','2006-02-15 22:12:31'),(193,7,2,8422,'5.99','2005-07-29 07:02:55','2006-02-15 22:12:31'),(194,7,2,9624,'7.99','2005-07-31 04:30:03','2006-02-15 22:12:31'),(195,7,2,10330,'6.99','2005-08-01 04:57:04','2006-02-15 22:12:31'),(196,7,1,10423,'5.99','2005-08-01 08:19:53','2006-02-15 22:12:31'),(197,7,1,10514,'4.99','2005-08-01 11:39:26','2006-02-15 22:12:31'),(198,7,2,10644,'4.99','2005-08-01 15:52:00','2006-02-15 22:12:31'),(199,7,2,10989,'3.99','2005-08-02 04:40:54','2006-02-15 22:12:31'),(200,7,2,11542,'7.99','2005-08-17 00:51:32','2006-02-15 22:12:31'),(201,7,1,12367,'8.99','2005-08-18 07:57:14','2006-02-15 22:12:31'),(202,7,1,12730,'2.99','2005-08-18 21:55:01','2006-02-15 22:12:31'),(203,7,2,13373,'2.99','2005-08-19 21:23:31','2006-02-15 22:12:31'),(204,7,1,13476,'2.99','2005-08-20 01:06:04','2006-02-15 22:12:31'),(205,7,1,13594,'0.99','2005-08-20 05:53:31','2006-02-15 22:12:31'),(206,7,1,14222,'5.99','2005-08-21 04:49:48','2006-02-15 22:12:31'),(207,8,2,866,'6.99','2005-05-30 03:43:54','2006-02-15 22:12:31'),(208,8,2,1305,'2.99','2005-06-15 09:59:16','2006-02-15 22:12:31'),(209,8,1,2095,'5.99','2005-06-17 18:21:35','2006-02-15 22:12:31'),(210,8,2,3114,'4.99','2005-06-20 17:57:47','2006-02-15 22:12:31'),(211,8,1,3475,'5.99','2005-07-05 23:01:21','2006-02-15 22:12:31'),(212,8,1,4003,'0.99','2005-07-07 00:09:02','2006-02-15 22:12:31'),(213,8,2,4175,'2.99','2005-07-07 10:02:03','2006-02-15 22:12:31'),(214,8,2,4409,'3.99','2005-07-07 21:47:29','2006-02-15 22:12:31'),(215,8,1,4503,'3.99','2005-07-08 02:17:12','2006-02-15 22:12:31'),(216,8,1,5300,'2.99','2005-07-09 15:40:46','2006-02-15 22:12:31'),(217,8,2,5341,'2.99','2005-07-09 17:13:23','2006-02-15 22:12:31'),(218,8,1,6375,'4.99','2005-07-11 21:39:46','2006-02-15 22:12:31'),(219,8,1,6647,'0.99','2005-07-12 10:43:53','2006-02-15 22:12:31'),(220,8,1,8809,'1.99','2005-07-29 21:42:49','2006-02-15 22:12:31'),(221,8,2,9629,'2.99','2005-07-31 04:54:43','2006-02-15 22:12:31'),(222,8,2,10141,'0.99','2005-07-31 22:08:29','2006-02-15 22:12:31'),(223,8,2,10561,'2.99','2005-08-01 13:05:35','2006-02-15 22:12:31'),(224,8,1,11232,'9.99','2005-08-02 13:04:12','2006-02-15 22:12:31'),(225,8,2,11284,'2.99','2005-08-02 14:42:45','2006-02-15 22:12:31'),(226,8,1,12613,'2.99','2005-08-18 17:16:01','2006-02-15 22:12:31'),(227,8,1,14114,'0.99','2005-08-21 01:07:11','2006-02-15 22:12:31'),(228,8,1,15374,'7.99','2005-08-22 22:09:09','2006-02-15 22:12:31'),(229,8,1,15764,'2.99','2005-08-23 13:05:10','2006-02-15 22:12:31'),(230,8,1,15805,'4.99','2005-08-23 14:31:19','2006-02-15 22:12:31'),(231,9,2,350,'4.99','2005-05-27 05:01:28','2006-02-15 22:12:31'),(232,9,2,877,'0.99','2005-05-30 05:48:59','2006-02-15 22:12:31'),(233,9,2,1075,'4.99','2005-05-31 10:13:34','2006-02-15 22:12:31'),(234,9,2,3142,'7.99','2005-06-20 19:59:28','2006-02-15 22:12:31'),(235,9,2,3262,'4.99','2005-06-21 04:08:43','2006-02-15 22:12:31'),(236,9,1,4454,'2.99','2005-07-07 23:37:00','2006-02-15 22:12:31'),(237,9,2,4748,'0.99','2005-07-08 13:59:38','2006-02-15 22:12:31'),(238,9,1,4796,'1.99','2005-07-08 16:35:44','2006-02-15 22:12:31'),(239,9,1,5659,'2.99','2005-07-10 07:45:40','2006-02-15 22:12:31'),(240,9,2,6019,'4.99','2005-07-11 02:08:29','2006-02-15 22:12:31'),(241,9,1,6165,'5.99','2005-07-11 10:17:29','2006-02-15 22:12:31'),(242,9,2,7616,'0.99','2005-07-28 00:15:26','2006-02-15 22:12:31'),(243,9,1,7801,'2.99','2005-07-28 07:51:56','2006-02-15 22:12:31'),(244,9,1,9043,'4.99','2005-07-30 06:34:07','2006-02-15 22:12:31'),(245,9,1,10451,'0.99','2005-08-01 09:11:25','2006-02-15 22:12:31'),(246,9,1,10454,'4.99','2005-08-01 09:14:00','2006-02-15 22:12:31'),(247,9,2,11400,'5.99','2005-08-02 19:00:52','2006-02-15 22:12:31'),(248,9,1,11556,'0.99','2005-08-17 01:11:53','2006-02-15 22:12:31'),(249,9,1,12228,'2.99','2005-08-18 03:08:10','2006-02-15 22:12:31'),(250,9,1,12309,'2.99','2005-08-18 05:58:40','2006-02-15 22:12:31'),(251,9,2,12652,'4.99','2005-08-18 18:48:58','2006-02-15 22:12:31'),(252,9,2,14489,'7.99','2005-08-21 13:53:59','2006-02-15 22:12:31'),(253,9,1,15813,'4.99','2006-02-14 15:16:03','2006-02-15 22:12:31'),(254,10,2,1140,'4.99','2005-05-31 19:36:30','2006-02-15 22:12:31'),(255,10,1,1801,'4.99','2005-06-16 20:21:53','2006-02-15 22:12:31'),(256,10,1,1995,'4.99','2005-06-17 11:11:14','2006-02-15 22:12:31'),(257,10,2,2222,'3.99','2005-06-18 03:26:23','2006-02-15 22:12:31'),(258,10,1,2814,'0.99','2005-06-19 20:01:59','2006-02-15 22:12:31'),(259,10,1,2865,'0.99','2005-06-20 00:00:55','2006-02-15 22:12:31'),(260,10,2,3790,'3.99','2005-07-06 14:13:45','2006-02-15 22:12:31'),(261,10,2,4042,'4.99','2005-07-07 03:06:40','2006-02-15 22:12:31'),(262,10,1,4255,'1.99','2005-07-07 14:14:13','2006-02-15 22:12:31'),(263,10,1,5038,'7.99','2005-07-09 03:12:52','2006-02-15 22:12:31'),(264,10,2,5068,'2.99','2005-07-09 04:53:18','2006-02-15 22:12:31'),(265,10,1,5444,'0.99','2005-07-09 21:58:57','2006-02-15 22:12:31'),(266,10,1,5905,'2.99','2005-07-10 20:41:09','2006-02-15 22:12:31'),(267,10,1,7738,'2.99','2005-07-28 05:21:42','2006-02-15 22:12:31'),(268,10,2,8001,'6.99','2005-07-28 15:10:55','2006-02-15 22:12:31'),(269,10,2,8188,'4.99','2005-07-28 22:34:12','2006-02-15 22:12:31'),(270,10,1,9935,'4.99','2005-07-31 15:27:07','2006-02-15 22:12:31'),(271,10,2,10671,'8.99','2005-08-01 17:09:59','2006-02-15 22:12:31'),(272,10,2,11289,'2.99','2005-08-02 14:55:00','2006-02-15 22:12:31'),(273,10,1,11405,'0.99','2005-08-02 19:13:39','2006-02-15 22:12:31'),(274,10,2,12031,'2.99','2005-08-17 20:11:35','2006-02-15 22:12:31'),(275,10,2,12400,'2.99','2005-08-18 09:19:12','2006-02-15 22:12:31'),(276,10,2,13316,'4.99','2005-08-19 19:23:30','2006-02-15 22:12:31'),(277,10,2,13917,'2.99','2005-08-20 16:43:28','2006-02-15 22:12:31'),(278,10,1,15370,'5.99','2005-08-22 21:59:29','2006-02-15 22:12:31'),(279,11,1,987,'6.99','2005-05-30 22:59:12','2006-02-15 22:12:31'),(280,11,1,1470,'6.99','2005-06-15 20:53:07','2006-02-15 22:12:31'),(281,11,1,1939,'7.99','2005-06-17 07:26:45','2006-02-15 22:12:31'),(282,11,1,3192,'0.99','2005-06-20 23:49:12','2006-02-15 22:12:31'),(283,11,2,4608,'2.99','2005-07-08 07:19:11','2006-02-15 22:12:31'),(284,11,1,4943,'4.99','2005-07-08 22:43:05','2006-02-15 22:12:31'),(285,11,2,5835,'5.99','2005-07-10 16:44:58','2006-02-15 22:12:31'),(286,11,2,6146,'6.99','2005-07-11 09:09:59','2006-02-15 22:12:31'),(287,11,1,7314,'4.99','2005-07-27 13:13:32','2006-02-15 22:12:31'),(288,11,1,8014,'4.99','2005-07-28 15:32:07','2006-02-15 22:12:31'),(289,11,2,8100,'2.99','2005-07-28 18:43:11','2006-02-15 22:12:31'),(290,11,2,8447,'1.99','2005-07-29 07:38:14','2006-02-15 22:12:31'),(291,11,1,8715,'0.99','2005-07-29 17:33:45','2006-02-15 22:12:31'),(292,11,1,8950,'9.99','2005-07-30 03:17:13','2006-02-15 22:12:31'),(293,11,2,9292,'6.99','2005-07-30 16:08:21','2006-02-15 22:12:31'),(294,11,1,10812,'4.99','2005-08-01 22:41:16','2006-02-15 22:12:31'),(295,11,2,11166,'6.99','2005-08-02 10:14:58','2006-02-15 22:12:31'),(296,11,2,11502,'0.99','2005-08-16 23:06:30','2006-02-15 22:12:31'),(297,11,2,12015,'5.99','2005-08-17 19:32:44','2006-02-15 22:12:31'),(298,11,2,13572,'0.99','2005-08-20 05:07:27','2006-02-15 22:12:31'),(299,11,1,13790,'4.99','2005-08-20 12:17:27','2006-02-15 22:12:31'),(300,11,1,15120,'0.99','2005-08-22 12:42:47','2006-02-15 22:12:31'),(301,11,2,15240,'2.99','2005-08-22 17:46:41','2006-02-15 22:12:31'),(302,11,1,11646,'0.99','2006-02-14 15:16:03','2006-02-15 22:12:31'),(303,12,1,988,'4.99','2005-05-30 23:08:03','2006-02-15 22:12:31'),(304,12,1,1084,'4.99','2005-05-31 11:10:17','2006-02-15 22:12:31'),(305,12,2,1752,'5.99','2005-06-16 17:02:55','2006-02-15 22:12:31'),(306,12,2,2434,'5.99','2005-06-18 18:11:51','2006-02-15 22:12:31'),(307,12,2,2500,'5.99','2005-06-18 23:07:12','2006-02-15 22:12:31'),(308,12,2,2623,'4.99','2005-06-19 08:11:51','2006-02-15 22:12:31'),(309,12,2,3135,'2.99','2005-06-20 19:33:52','2006-02-15 22:12:31'),(310,12,1,3411,'0.99','2005-06-21 16:31:27','2006-02-15 22:12:31'),(311,12,1,3870,'3.99','2005-07-06 17:57:54','2006-02-15 22:12:31'),(312,12,1,5071,'0.99','2005-07-09 05:00:39','2006-02-15 22:12:31'),(313,12,1,5074,'0.99','2005-07-09 05:06:24','2006-02-15 22:12:31'),(314,12,2,5111,'0.99','2005-07-09 07:02:19','2006-02-15 22:12:31'),(315,12,2,5242,'3.99','2005-07-09 13:20:25','2006-02-15 22:12:31'),(316,12,1,6773,'2.99','2005-07-12 15:55:39','2006-02-15 22:12:31'),(317,12,2,7008,'0.99','2005-07-27 01:44:03','2006-02-15 22:12:31'),(318,12,2,7279,'0.99','2005-07-27 11:50:47','2006-02-15 22:12:31'),(319,12,2,8985,'0.99','2005-07-30 04:34:51','2006-02-15 22:12:31'),(320,12,2,9166,'4.99','2005-07-30 11:26:28','2006-02-15 22:12:31'),(321,12,2,9238,'5.99','2005-07-30 13:49:43','2006-02-15 22:12:31'),(322,12,1,9627,'5.99','2005-07-31 04:42:46','2006-02-15 22:12:31'),(323,12,2,9708,'5.99','2005-07-31 07:45:33','2006-02-15 22:12:31'),(324,12,2,10392,'10.99','2005-08-01 06:50:26','2006-02-15 22:12:31'),(325,12,2,11497,'0.99','2005-08-16 22:52:30','2006-02-15 22:12:31'),(326,12,1,12604,'4.99','2005-08-18 16:58:48','2006-02-15 22:12:31'),(327,12,2,13519,'0.99','2005-08-20 02:37:07','2006-02-15 22:12:31'),(328,12,2,13895,'2.99','2005-08-20 15:58:28','2006-02-15 22:12:31'),(329,12,2,14240,'4.99','2005-08-21 05:19:39','2006-02-15 22:12:31'),(330,12,1,15993,'0.99','2005-08-23 20:28:44','2006-02-15 22:12:31'),(331,13,1,1933,'2.99','2005-06-17 06:54:42','2006-02-15 22:12:31'),(332,13,1,2209,'4.99','2005-06-18 02:24:01','2006-02-15 22:12:31'),(333,13,1,2952,'2.99','2005-06-20 06:26:57','2006-02-15 22:12:31'),(334,13,1,3047,'8.99','2005-06-20 12:45:33','2006-02-15 22:12:31'),(335,13,2,3946,'2.99','2005-07-06 21:39:24','2006-02-15 22:12:31'),(336,13,1,6118,'8.99','2005-07-11 07:43:08','2006-02-15 22:12:31'),(337,13,1,6568,'2.99','2005-07-12 05:45:47','2006-02-15 22:12:31'),(338,13,1,6870,'0.99','2005-07-12 20:13:45','2006-02-15 22:12:31'),(339,13,1,6897,'2.99','2005-07-12 21:30:41','2006-02-15 22:12:31'),(340,13,1,7916,'2.99','2005-07-28 11:49:53','2006-02-15 22:12:31'),(341,13,1,8277,'2.99','2005-07-29 01:38:53','2006-02-15 22:12:31'),(342,13,2,8831,'11.99','2005-07-29 22:37:41','2006-02-15 22:12:31'),(343,13,2,9260,'9.99','2005-07-30 14:38:22','2006-02-15 22:12:31'),(344,13,2,9434,'0.99','2005-07-30 21:29:41','2006-02-15 22:12:32'),(345,13,1,9664,'0.99','2005-07-31 06:12:08','2006-02-15 22:12:32'),(346,13,1,9736,'7.99','2005-07-31 08:58:40','2006-02-15 22:12:32'),(347,13,1,10003,'4.99','2005-07-31 17:48:51','2006-02-15 22:12:32'),(348,13,1,11292,'4.99','2005-08-02 14:58:41','2006-02-15 22:12:32'),(349,13,2,11315,'0.99','2005-08-02 16:05:17','2006-02-15 22:12:32'),(350,13,2,11761,'5.99','2005-08-17 09:44:59','2006-02-15 22:12:32'),(351,13,2,12918,'7.99','2005-08-19 04:31:36','2006-02-15 22:12:32'),(352,13,2,13096,'4.99','2005-08-19 10:49:03','2006-02-15 22:12:32'),(353,13,2,13213,'0.99','2005-08-19 15:25:48','2006-02-15 22:12:32'),(354,13,1,13456,'0.99','2005-08-20 00:33:19','2006-02-15 22:12:32'),(355,13,1,14252,'9.99','2005-08-21 05:44:07','2006-02-15 22:12:32'),(356,13,2,14545,'7.99','2005-08-21 15:44:23','2006-02-15 22:12:32'),(357,13,1,15338,'4.99','2005-08-22 20:51:24','2006-02-15 22:12:32'),(358,14,1,151,'0.99','2005-05-26 00:37:28','2006-02-15 22:12:32'),(359,14,1,346,'9.99','2005-05-27 04:34:41','2006-02-15 22:12:32'),(360,14,1,525,'5.99','2005-05-28 04:25:33','2006-02-15 22:12:32'),(361,14,1,671,'2.99','2005-05-28 22:04:30','2006-02-15 22:12:32'),(362,14,2,815,'0.99','2005-05-29 20:24:28','2006-02-15 22:12:32'),(363,14,2,1360,'4.99','2005-06-15 13:32:15','2006-02-15 22:12:32'),(364,14,1,3707,'2.99','2005-07-06 10:21:49','2006-02-15 22:12:32'),(365,14,1,4952,'0.99','2005-07-08 23:00:07','2006-02-15 22:12:32'),(366,14,1,5104,'0.99','2005-07-09 06:37:07','2006-02-15 22:12:32'),(367,14,2,5317,'7.99','2005-07-09 16:10:25','2006-02-15 22:12:32'),(368,14,1,5383,'4.99','2005-07-09 19:14:32','2006-02-15 22:12:32'),(369,14,1,5565,'7.99','2005-07-10 03:29:48','2006-02-15 22:12:32'),(370,14,1,8035,'6.99','2005-07-28 16:23:01','2006-02-15 22:12:32'),(371,14,1,8042,'0.99','2005-07-28 16:45:11','2006-02-15 22:12:32'),(372,14,1,8548,'3.99','2005-07-29 11:11:33','2006-02-15 22:12:32'),(373,14,2,8836,'4.99','2005-07-29 22:46:08','2006-02-15 22:12:32'),(374,14,2,9438,'4.99','2005-07-30 21:36:15','2006-02-15 22:12:32'),(375,14,1,9592,'2.99','2005-07-31 03:21:16','2006-02-15 22:12:32'),(376,14,1,10348,'2.99','2005-08-01 05:23:00','2006-02-15 22:12:32'),(377,14,2,10526,'6.99','2005-08-01 11:55:33','2006-02-15 22:12:32'),(378,14,1,11480,'4.99','2005-08-02 22:18:24','2006-02-15 22:12:32'),(379,14,2,11528,'3.99','2005-08-17 00:27:23','2006-02-15 22:12:32'),(380,14,1,12668,'2.99','2005-08-18 19:16:47','2006-02-15 22:12:32'),(381,14,1,13757,'4.99','2005-08-20 11:20:12','2006-02-15 22:12:32'),(382,14,2,15015,'6.99','2005-08-22 08:43:50','2006-02-15 22:12:32'),(383,14,1,15373,'0.99','2005-08-22 22:08:11','2006-02-15 22:12:32'),(384,14,1,16045,'0.99','2005-08-23 22:25:26','2006-02-15 22:12:32'),(385,14,1,13780,'4.99','2006-02-14 15:16:03','2006-02-15 22:12:32'),(386,15,1,2486,'2.99','2005-06-18 21:26:56','2006-02-15 22:12:32'),(387,15,1,2937,'5.99','2005-06-20 05:15:37','2006-02-15 22:12:32'),(388,15,2,3182,'0.99','2005-06-20 22:52:18','2006-02-15 22:12:32'),(389,15,1,3550,'7.99','2005-07-06 02:29:21','2006-02-15 22:12:32'),(390,15,1,4127,'5.99','2005-07-07 07:26:19','2006-02-15 22:12:32'),(391,15,1,5717,'2.99','2005-07-10 11:02:03','2006-02-15 22:12:32'),(392,15,2,5975,'2.99','2005-07-11 00:14:19','2006-02-15 22:12:32'),(393,15,1,7105,'4.99','2005-07-27 05:15:37','2006-02-15 22:12:32'),(394,15,1,8193,'0.99','2005-07-28 22:50:50','2006-02-15 22:12:32'),(395,15,2,8615,'6.99','2005-07-29 13:36:01','2006-02-15 22:12:32'),(396,15,2,8927,'4.99','2005-07-30 02:13:31','2006-02-15 22:12:32'),(397,15,1,9987,'2.99','2005-07-31 17:22:35','2006-02-15 22:12:32'),(398,15,1,11118,'2.99','2005-08-02 08:44:18','2006-02-15 22:12:32'),(399,15,1,11141,'2.99','2005-08-02 09:29:11','2006-02-15 22:12:32'),(400,15,2,11307,'2.99','2005-08-02 15:48:08','2006-02-15 22:12:32'),(401,15,2,11341,'2.99','2005-08-02 17:09:24','2006-02-15 22:12:32'),(402,15,1,11922,'7.99','2005-08-17 16:20:37','2006-02-15 22:12:32'),(403,15,2,12272,'2.99','2005-08-18 04:39:10','2006-02-15 22:12:32'),(404,15,2,12551,'2.99','2005-08-18 14:46:26','2006-02-15 22:12:32'),(405,15,1,12635,'2.99','2005-08-18 18:00:23','2006-02-15 22:12:32'),(406,15,2,13339,'8.99','2005-08-19 20:18:36','2006-02-15 22:12:32'),(407,15,1,13393,'5.99','2005-08-19 22:03:46','2006-02-15 22:12:32'),(408,15,2,13503,'5.99','2005-08-20 02:00:33','2006-02-15 22:12:32'),(409,15,1,13541,'4.99','2005-08-20 03:41:41','2006-02-15 22:12:32'),(410,15,2,13677,'3.99','2005-08-20 08:34:41','2006-02-15 22:12:32'),(411,15,2,14569,'0.99','2005-08-21 16:31:22','2006-02-15 22:12:32'),(412,15,2,14776,'4.99','2005-08-21 23:53:35','2006-02-15 22:12:32'),(413,15,2,14872,'8.99','2005-08-22 03:23:41','2006-02-15 22:12:32'),(414,15,1,15178,'0.99','2005-08-22 15:36:04','2006-02-15 22:12:32'),(415,15,1,15897,'4.99','2005-08-23 17:12:31','2006-02-15 22:12:32'),(416,15,1,13798,'3.98','2006-02-14 15:16:03','2006-02-15 22:12:32'),(417,15,2,13968,'0.00','2006-02-14 15:16:03','2006-02-15 22:12:32'),(418,16,1,335,'3.99','2005-05-27 03:07:10','2006-02-15 22:12:32'),(419,16,1,593,'2.99','2005-05-28 13:33:23','2006-02-15 22:12:32'),(420,16,2,887,'0.99','2005-05-30 07:10:00','2006-02-15 22:12:32'),(421,16,1,1017,'2.99','2005-05-31 02:53:36','2006-02-15 22:12:32'),(422,16,2,1934,'6.99','2005-06-17 07:04:57','2006-02-15 22:12:32'),(423,16,1,1944,'7.99','2005-06-17 07:50:53','2006-02-15 22:12:32'),(424,16,1,NULL,'1.99','2005-06-18 04:56:12','2006-02-15 22:12:32'),(425,16,1,2960,'7.99','2005-06-20 07:10:09','2006-02-15 22:12:32'),(426,16,2,3348,'0.99','2005-06-21 11:16:42','2006-02-15 22:12:32'),(427,16,1,3548,'0.99','2005-07-06 02:23:39','2006-02-15 22:12:32'),(428,16,2,4219,'2.99','2005-07-07 12:11:22','2006-02-15 22:12:32'),(429,16,2,4263,'3.99','2005-07-07 14:24:44','2006-02-15 22:12:32'),(430,16,2,4517,'4.99','2005-07-08 02:45:19','2006-02-15 22:12:32'),(431,16,1,6100,'4.99','2005-07-11 06:40:31','2006-02-15 22:12:32'),(432,16,2,7489,'0.99','2005-07-27 19:39:38','2006-02-15 22:12:32'),(433,16,2,7552,'2.99','2005-07-27 22:03:41','2006-02-15 22:12:32'),(434,16,2,8452,'5.99','2005-07-29 07:45:00','2006-02-15 22:12:32'),(435,16,2,9158,'0.99','2005-07-30 11:12:03','2006-02-15 22:12:32'),(436,16,2,9610,'5.99','2005-07-31 03:54:05','2006-02-15 22:12:32'),(437,16,2,10687,'2.99','2005-08-01 17:53:02','2006-02-15 22:12:32'),(438,16,2,10727,'2.99','2005-08-01 19:15:08','2006-02-15 22:12:32'),(439,16,2,11308,'0.99','2005-08-02 15:50:44','2006-02-15 22:12:32'),(440,16,2,12104,'2.99','2005-08-17 22:53:00','2006-02-15 22:12:32'),(441,16,1,12358,'4.99','2005-08-18 07:41:43','2006-02-15 22:12:32'),(442,16,1,12577,'7.99','2005-08-18 15:39:46','2006-02-15 22:12:32'),(443,16,2,13151,'4.99','2005-08-19 13:08:23','2006-02-15 22:12:32'),(444,16,1,13391,'4.99','2005-08-19 22:01:42','2006-02-15 22:12:32'),(445,16,1,13480,'6.99','2005-08-20 01:10:27','2006-02-15 22:12:32'),(446,16,1,14511,'8.99','2005-08-21 14:45:34','2006-02-15 22:12:32'),(447,17,2,287,'2.99','2005-05-26 19:44:54','2006-02-15 22:12:32'),(448,17,1,580,'2.99','2005-05-28 11:19:53','2006-02-15 22:12:32'),(449,17,2,884,'4.99','2005-05-30 06:41:32','2006-02-15 22:12:32'),(450,17,2,2175,'5.99','2005-06-18 00:17:58','2006-02-15 22:12:32'),(451,17,1,2684,'8.99','2005-06-19 12:29:08','2006-02-15 22:12:32'),(452,17,2,3269,'5.99','2005-06-21 05:06:30','2006-02-15 22:12:32'),(453,17,1,5714,'3.99','2005-07-10 10:46:57','2006-02-15 22:12:32'),(454,17,1,5883,'3.99','2005-07-10 19:25:21','2006-02-15 22:12:32'),(455,17,2,6884,'1.99','2005-07-12 20:52:41','2006-02-15 22:12:32'),(456,17,2,8076,'8.99','2005-07-28 17:45:58','2006-02-15 22:12:32'),(457,17,1,8213,'2.99','2005-07-28 23:37:33','2006-02-15 22:12:32'),(458,17,2,9092,'8.99','2005-07-30 08:30:56','2006-02-15 22:12:32'),(459,17,1,9138,'2.99','2005-07-30 10:11:52','2006-02-15 22:12:32'),(460,17,2,9382,'8.99','2005-07-30 19:23:44','2006-02-15 22:12:32'),(461,17,1,9489,'0.99','2005-07-30 23:43:32','2006-02-15 22:12:32'),(462,17,2,11990,'4.99','2005-08-17 18:26:22','2006-02-15 22:12:32'),(463,17,1,13732,'2.99','2005-08-20 10:24:41','2006-02-15 22:12:32'),(464,17,1,14040,'2.99','2005-08-20 21:43:44','2006-02-15 22:12:32'),(465,17,2,14326,'2.99','2005-08-21 08:15:41','2006-02-15 22:12:32'),(466,17,1,14346,'2.99','2005-08-21 08:42:26','2006-02-15 22:12:32'),(467,17,2,15752,'5.99','2005-08-23 12:41:38','2006-02-15 22:12:32'),(468,18,1,50,'2.99','2005-05-25 06:44:53','2006-02-15 22:12:32'),(469,18,1,116,'4.99','2005-05-25 19:27:51','2006-02-15 22:12:32'),(470,18,1,692,'4.99','2005-05-29 01:32:10','2006-02-15 22:12:32'),(471,18,2,1451,'5.99','2005-06-15 19:30:18','2006-02-15 22:12:32'),(472,18,2,1783,'4.99','2005-06-16 19:23:23','2006-02-15 22:12:32'),(473,18,2,2112,'5.99','2005-06-17 19:52:42','2006-02-15 22:12:32'),(474,18,1,2990,'8.99','2005-06-20 09:02:51','2006-02-15 22:12:32'),(475,18,2,4672,'3.99','2005-07-08 10:15:38','2006-02-15 22:12:32'),(476,18,2,4724,'3.99','2005-07-08 12:46:30','2006-02-15 22:12:32'),(477,18,2,4923,'3.99','2005-07-08 21:44:39','2006-02-15 22:12:32'),(478,18,2,6128,'2.99','2005-07-11 08:15:08','2006-02-15 22:12:32'),(479,18,1,6846,'0.99','2005-07-12 19:20:45','2006-02-15 22:12:32'),(480,18,2,8122,'2.99','2005-07-28 19:27:37','2006-02-15 22:12:32'),(481,18,1,8555,'4.99','2005-07-29 11:18:01','2006-02-15 22:12:32'),(482,18,1,9036,'4.99','2005-07-30 06:18:38','2006-02-15 22:12:32'),(483,18,2,9114,'4.99','2005-07-30 09:13:21','2006-02-15 22:12:32'),(484,18,1,10682,'4.99','2005-08-01 17:32:53','2006-02-15 22:12:32'),(485,18,2,10721,'1.99','2005-08-01 19:05:18','2006-02-15 22:12:32'),(486,18,2,11094,'4.99','2005-08-02 08:03:02','2006-02-15 22:12:33'),(487,18,2,11439,'4.99','2005-08-02 20:22:45','2006-02-15 22:12:33'),(488,18,2,12333,'0.99','2005-08-18 06:51:39','2006-02-15 22:12:33'),(489,18,2,13490,'0.99','2005-08-20 01:29:29','2006-02-15 22:12:33'),(490,19,2,18,'0.99','2005-05-25 01:10:47','2006-02-15 22:12:33'),(491,19,2,110,'9.99','2005-05-25 18:43:49','2006-02-15 22:12:33'),(492,19,1,179,'6.99','2005-05-26 04:26:06','2006-02-15 22:12:33'),(493,19,1,337,'2.99','2005-05-27 03:22:30','2006-02-15 22:12:33'),(494,19,2,591,'2.99','2005-05-28 13:11:04','2006-02-15 22:12:33'),(495,19,2,696,'2.99','2005-05-29 01:59:10','2006-02-15 22:12:33'),(496,19,1,2657,'2.99','2005-06-19 10:42:59','2006-02-15 22:12:33'),(497,19,1,2848,'2.99','2005-06-19 22:55:37','2006-02-15 22:12:33'),(498,19,2,3423,'2.99','2005-06-21 17:38:02','2006-02-15 22:12:33'),(499,19,2,3549,'4.99','2005-07-06 02:24:55','2006-02-15 22:12:33'),(500,19,2,6495,'4.99','2005-07-12 02:57:02','2006-02-15 22:12:33'),(501,19,1,9157,'5.99','2005-07-30 11:06:23','2006-02-15 22:12:33'),(502,19,1,9256,'0.99','2005-07-30 14:29:29','2006-02-15 22:12:33'),(503,19,2,10077,'9.99','2005-07-31 20:01:06','2006-02-15 22:12:33'),(504,19,1,10176,'7.99','2005-07-31 23:40:35','2006-02-15 22:12:33'),(505,19,2,11508,'8.99','2005-08-16 23:27:36','2006-02-15 22:12:33'),(506,19,1,11869,'5.99','2005-08-17 14:10:22','2006-02-15 22:12:33'),(507,19,1,12211,'9.99','2005-08-18 02:31:18','2006-02-15 22:12:33'),(508,19,2,12357,'2.99','2005-08-18 07:40:52','2006-02-15 22:12:33'),(509,19,1,13718,'8.99','2005-08-20 09:53:44','2006-02-15 22:12:33'),(510,19,2,13804,'8.99','2005-08-20 12:46:32','2006-02-15 22:12:33'),(511,19,1,14101,'4.99','2005-08-21 00:33:03','2006-02-15 22:12:33'),(512,19,1,15047,'2.99','2005-08-22 09:57:16','2006-02-15 22:12:33'),(513,19,2,15529,'0.99','2005-08-23 03:46:47','2006-02-15 22:12:33'),(514,20,2,202,'2.99','2005-05-26 07:27:36','2006-02-15 22:12:33'),(515,20,2,497,'6.99','2005-05-28 00:54:39','2006-02-15 22:12:33'),(516,20,2,546,'1.99','2005-05-28 07:16:25','2006-02-15 22:12:33'),(517,20,2,1558,'0.99','2005-06-16 02:33:53','2006-02-15 22:12:33'),(518,20,2,2136,'3.99','2005-06-17 21:16:41','2006-02-15 22:12:33'),(519,20,2,2343,'4.99','2005-06-18 11:46:26','2006-02-15 22:12:33'),(520,20,1,3350,'4.99','2005-06-21 11:21:38','2006-02-15 22:12:33'),(521,20,2,4011,'3.99','2005-07-07 00:48:25','2006-02-15 22:12:33'),(522,20,1,4407,'2.99','2005-07-07 21:39:45','2006-02-15 22:12:33'),(523,20,1,5718,'2.99','2005-07-10 11:03:20','2006-02-15 22:12:33'),(524,20,1,6254,'2.99','2005-07-11 15:10:18','2006-02-15 22:12:33'),(525,20,2,6267,'6.99','2005-07-11 15:53:00','2006-02-15 22:12:33'),(526,20,2,7217,'4.99','2005-07-27 09:31:44','2006-02-15 22:12:33'),(527,20,2,7864,'5.99','2005-07-28 10:06:10','2006-02-15 22:12:33'),(528,20,2,8127,'2.99','2005-07-28 19:45:19','2006-02-15 22:12:33'),(529,20,2,9075,'4.99','2005-07-30 07:55:14','2006-02-15 22:12:33'),(530,20,2,9468,'3.99','2005-07-30 22:53:52','2006-02-15 22:12:33'),(531,20,2,10284,'4.99','2005-08-01 03:33:19','2006-02-15 22:12:33'),(532,20,1,10616,'7.99','2005-08-01 14:59:50','2006-02-15 22:12:33'),(533,20,1,10954,'1.99','2005-08-02 03:30:24','2006-02-15 22:12:33'),(534,20,1,11821,'0.99','2005-08-17 12:27:55','2006-02-15 22:12:33'),(535,20,1,12180,'0.99','2005-08-18 01:28:15','2006-02-15 22:12:33'),(536,20,2,13036,'4.99','2005-08-19 08:48:37','2006-02-15 22:12:33'),(537,20,1,13137,'4.99','2005-08-19 12:26:32','2006-02-15 22:12:33'),(538,20,2,13317,'2.99','2005-08-19 19:25:42','2006-02-15 22:12:33'),(539,20,2,14613,'2.99','2005-08-21 18:03:20','2006-02-15 22:12:33'),(540,20,2,15057,'6.99','2005-08-22 10:19:58','2006-02-15 22:12:33'),(541,20,1,15161,'1.99','2005-08-22 14:37:22','2006-02-15 22:12:33'),(542,20,2,15248,'0.99','2005-08-22 17:53:06','2006-02-15 22:12:33'),(543,20,1,15460,'2.99','2005-08-23 01:10:42','2006-02-15 22:12:33'),(544,21,1,260,'3.99','2005-05-26 15:42:20','2006-02-15 22:12:33'),(545,21,2,463,'3.99','2005-05-27 20:11:47','2006-02-15 22:12:33'),(546,21,1,570,'0.99','2005-05-28 10:15:04','2006-02-15 22:12:33'),(547,21,2,2235,'7.99','2005-06-18 04:08:50','2006-02-15 22:12:33'),(548,21,1,2268,'4.99','2005-06-18 06:13:41','2006-02-15 22:12:33'),(549,21,1,2393,'2.99','2005-06-18 15:37:55','2006-02-15 22:12:33'),(550,21,2,2830,'4.99','2005-06-19 21:14:33','2006-02-15 22:12:33'),(551,21,1,3212,'10.99','2005-06-21 01:04:35','2006-02-15 22:12:33'),(552,21,2,5107,'4.99','2005-07-09 06:42:32','2006-02-15 22:12:33'),(553,21,1,5772,'3.99','2005-07-10 13:27:40','2006-02-15 22:12:33'),(554,21,1,5961,'2.99','2005-07-10 23:43:23','2006-02-15 22:12:33'),(555,21,2,6943,'1.99','2005-07-26 23:28:13','2006-02-15 22:12:33'),(556,21,1,7994,'0.99','2005-07-28 14:56:54','2006-02-15 22:12:33'),(557,21,2,8196,'6.99','2005-07-28 22:56:11','2006-02-15 22:12:33'),(558,21,2,8862,'2.99','2005-07-29 23:49:23','2006-02-15 22:12:33'),(559,21,2,9149,'0.99','2005-07-30 10:45:12','2006-02-15 22:12:33'),(560,21,1,9699,'5.99','2005-07-31 07:29:25','2006-02-15 22:12:33'),(561,21,2,10570,'4.99','2005-08-01 13:23:06','2006-02-15 22:12:33'),(562,21,1,10734,'0.99','2005-08-01 19:28:47','2006-02-15 22:12:33'),(563,21,2,11072,'0.99','2005-08-02 07:10:57','2006-02-15 22:12:33'),(564,21,2,11970,'0.99','2005-08-17 17:53:09','2006-02-15 22:12:33'),(565,21,2,12131,'2.99','2005-08-17 23:34:16','2006-02-15 22:12:33'),(566,21,2,12660,'4.99','2005-08-18 19:07:23','2006-02-15 22:12:33'),(567,21,1,12774,'6.99','2005-08-18 23:34:22','2006-02-15 22:12:33'),(568,21,1,13381,'2.99','2005-08-19 21:37:57','2006-02-15 22:12:33'),(569,21,2,13399,'4.99','2005-08-19 22:09:28','2006-02-15 22:12:33'),(570,21,1,13411,'4.99','2005-08-19 22:43:38','2006-02-15 22:12:33'),(571,21,1,13463,'8.99','2005-08-20 00:50:54','2006-02-15 22:12:33'),(572,21,1,13699,'9.99','2005-08-20 09:26:14','2006-02-15 22:12:33'),(573,21,1,13740,'4.99','2005-08-20 10:48:43','2006-02-15 22:12:33'),(574,21,2,14077,'8.99','2005-08-20 23:24:07','2006-02-15 22:12:33'),(575,21,2,14161,'2.99','2005-08-21 02:51:59','2006-02-15 22:12:33'),(576,21,2,14446,'2.99','2005-08-21 12:10:41','2006-02-15 22:12:33'),(577,21,1,14869,'4.99','2005-08-22 03:20:26','2006-02-15 22:12:33'),(578,21,1,14933,'2.99','2006-02-14 15:16:03','2006-02-15 22:12:33'),(579,22,1,370,'4.99','2005-05-27 07:49:43','2006-02-15 22:12:33'),(580,22,1,556,'4.99','2005-05-28 08:31:36','2006-02-15 22:12:33'),(581,22,2,820,'8.99','2005-05-29 21:07:22','2006-02-15 22:12:33'),(582,22,1,3419,'2.99','2005-06-21 17:18:01','2006-02-15 22:12:33'),(583,22,2,4215,'2.99','2005-07-07 12:00:52','2006-02-15 22:12:33'),(584,22,1,5294,'6.99','2005-07-09 15:23:42','2006-02-15 22:12:33'),(585,22,1,5815,'2.99','2005-07-10 15:48:19','2006-02-15 22:12:33'),(586,22,1,7087,'4.99','2005-07-27 04:42:08','2006-02-15 22:12:33'),(587,22,1,7705,'7.99','2005-07-28 04:02:58','2006-02-15 22:12:33'),(588,22,2,9410,'0.99','2005-07-30 20:38:05','2006-02-15 22:12:33'),(589,22,1,9580,'4.99','2005-07-31 03:01:11','2006-02-15 22:12:33'),(590,22,1,12023,'5.99','2005-08-17 19:54:54','2006-02-15 22:12:33'),(591,22,1,12124,'2.99','2005-08-17 23:22:46','2006-02-15 22:12:33'),(592,22,2,12809,'0.99','2005-08-19 00:42:24','2006-02-15 22:12:33'),(593,22,2,13060,'9.99','2005-08-19 09:43:25','2006-02-15 22:12:33'),(594,22,1,14056,'2.99','2005-08-20 22:18:53','2006-02-15 22:12:33'),(595,22,1,14564,'6.99','2005-08-21 16:24:43','2006-02-15 22:12:33'),(596,22,1,15134,'7.99','2005-08-22 13:18:25','2006-02-15 22:12:33'),(597,22,1,15589,'6.99','2005-08-23 06:03:31','2006-02-15 22:12:33'),(598,22,1,15658,'4.99','2005-08-23 08:48:43','2006-02-15 22:12:33'),(599,22,1,15793,'4.99','2005-08-23 14:06:19','2006-02-15 22:12:33'),(600,22,1,12222,'4.99','2006-02-14 15:16:03','2006-02-15 22:12:33'),(601,23,1,129,'8.99','2005-05-25 21:20:03','2006-02-15 22:12:33'),(602,23,1,654,'2.99','2005-05-28 20:15:30','2006-02-15 22:12:33'),(603,23,2,1090,'0.99','2005-05-31 12:03:44','2006-02-15 22:12:33'),(604,23,1,2753,'1.99','2005-06-19 16:44:35','2006-02-15 22:12:33'),(605,23,1,2827,'0.99','2005-06-19 20:50:01','2006-02-15 22:12:33'),(606,23,1,3015,'5.99','2005-06-20 10:48:56','2006-02-15 22:12:33'),(607,23,1,3055,'4.99','2005-06-20 13:19:58','2006-02-15 22:12:33'),(608,23,1,3461,'2.99','2005-06-21 21:49:18','2006-02-15 22:12:34'),(609,23,2,3736,'3.99','2005-07-06 11:43:44','2006-02-15 22:12:34'),(610,23,2,3781,'2.99','2005-07-06 13:53:41','2006-02-15 22:12:34'),(611,23,2,4853,'2.99','2005-07-08 18:43:18','2006-02-15 22:12:34'),(612,23,1,6213,'2.99','2005-07-11 12:43:07','2006-02-15 22:12:34'),(613,23,1,6238,'2.99','2005-07-11 14:20:18','2006-02-15 22:12:34'),(614,23,2,6917,'5.99','2005-07-12 22:30:15','2006-02-15 22:12:34'),(615,23,1,7155,'7.99','2005-07-27 07:18:46','2006-02-15 22:12:34'),(616,23,1,8015,'2.99','2005-07-28 15:33:03','2006-02-15 22:12:34'),(617,23,2,8718,'0.99','2005-07-29 17:41:14','2006-02-15 22:12:34'),(618,23,2,9209,'5.99','2005-07-30 12:55:36','2006-02-15 22:12:34'),(619,23,2,9255,'9.99','2005-07-30 14:26:46','2006-02-15 22:12:34'),(620,23,2,9718,'3.99','2005-07-31 08:25:03','2006-02-15 22:12:34'),(621,23,1,10132,'6.99','2005-07-31 21:50:24','2006-02-15 22:12:34'),(622,23,1,10898,'2.99','2005-08-02 01:29:57','2006-02-15 22:12:34'),(623,23,2,11501,'2.99','2005-08-16 23:04:53','2006-02-15 22:12:34'),(624,23,2,13290,'2.99','2005-08-19 18:31:50','2006-02-15 22:12:34'),(625,23,2,13331,'4.99','2005-08-19 20:00:25','2006-02-15 22:12:34'),(626,23,2,13429,'6.99','2005-08-19 23:25:37','2006-02-15 22:12:34'),(627,23,2,13511,'0.99','2005-08-20 02:21:40','2006-02-15 22:12:34'),(628,23,2,13557,'0.99','2005-08-20 04:12:41','2006-02-15 22:12:34'),(629,23,2,14482,'2.99','2005-08-21 13:42:45','2006-02-15 22:12:34'),(630,23,2,15532,'2.99','2006-02-14 15:16:03','2006-02-15 22:12:34'),(631,24,2,1007,'6.99','2005-05-31 01:02:28','2006-02-15 22:12:34'),(632,24,2,1077,'2.99','2005-05-31 10:22:54','2006-02-15 22:12:34'),(633,24,1,1716,'2.99','2005-06-16 14:39:31','2006-02-15 22:12:34'),(634,24,1,2070,'2.99','2005-06-17 16:27:51','2006-02-15 22:12:34'),(635,24,2,2116,'4.99','2005-06-17 20:16:12','2006-02-15 22:12:34'),(636,24,1,2451,'5.99','2005-06-18 19:28:02','2006-02-15 22:12:34'),(637,24,2,2963,'7.99','2005-06-20 07:33:09','2006-02-15 22:12:34'),(638,24,2,3649,'7.99','2005-07-06 07:32:42','2006-02-15 22:12:34'),(639,24,2,4378,'2.99','2005-07-07 20:29:08','2006-02-15 22:12:34'),(640,24,1,5310,'0.99','2005-07-09 16:00:34','2006-02-15 22:12:34'),(641,24,2,5648,'0.99','2005-07-10 07:09:21','2006-02-15 22:12:34'),(642,24,1,6855,'4.99','2005-07-12 19:46:29','2006-02-15 22:12:34'),(643,24,1,7266,'1.99','2005-07-27 11:22:17','2006-02-15 22:12:34'),(644,24,1,8947,'4.99','2005-07-30 03:15:37','2006-02-15 22:12:34'),(645,24,1,9723,'0.99','2005-07-31 08:31:18','2006-02-15 22:12:34'),(646,24,2,9925,'0.99','2005-07-31 15:08:47','2006-02-15 22:12:34'),(647,24,2,10491,'2.99','2005-08-01 10:38:27','2006-02-15 22:12:34'),(648,24,1,11209,'2.99','2005-08-02 12:09:45','2006-02-15 22:12:34'),(649,24,2,11546,'2.99','2005-08-17 00:57:36','2006-02-15 22:12:34'),(650,24,2,12165,'8.99','2005-08-18 00:53:37','2006-02-15 22:12:34'),(651,24,1,12745,'2.99','2005-08-18 22:22:45','2006-02-15 22:12:34'),(652,24,1,12999,'1.99','2005-08-19 07:34:53','2006-02-15 22:12:34'),(653,24,2,13058,'4.99','2005-08-19 09:40:53','2006-02-15 22:12:34'),(654,24,1,13247,'0.99','2005-08-19 16:45:59','2006-02-15 22:12:34'),(655,24,2,15357,'4.99','2005-08-22 21:28:59','2006-02-15 22:12:34'),(656,25,1,90,'7.99','2005-05-25 14:31:25','2006-02-15 22:12:34'),(657,25,2,1033,'2.99','2005-05-31 04:50:07','2006-02-15 22:12:34'),(658,25,1,1338,'4.99','2005-06-15 12:17:34','2006-02-15 22:12:34'),(659,25,1,1365,'2.99','2005-06-15 14:09:55','2006-02-15 22:12:34'),(660,25,2,1754,'6.99','2005-06-16 17:13:23','2006-02-15 22:12:34'),(661,25,2,2625,'8.99','2005-06-19 08:23:11','2006-02-15 22:12:34'),(662,25,1,2901,'4.99','2005-06-20 02:41:28','2006-02-15 22:12:34'),(663,25,1,3447,'4.99','2005-06-21 20:53:31','2006-02-15 22:12:34'),(664,25,1,4282,'2.99','2005-07-07 15:26:31','2006-02-15 22:12:34'),(665,25,1,4319,'0.99','2005-07-07 17:50:27','2006-02-15 22:12:34'),(666,25,2,4404,'2.99','2005-07-07 21:31:53','2006-02-15 22:12:34'),(667,25,1,5881,'2.99','2005-07-10 19:19:43','2006-02-15 22:12:34'),(668,25,1,6653,'4.99','2005-07-12 11:06:17','2006-02-15 22:12:34'),(669,25,2,6905,'2.99','2005-07-12 22:02:18','2006-02-15 22:12:34'),(670,25,2,8667,'2.99','2005-07-29 15:40:57','2006-02-15 22:12:34'),(671,25,2,8878,'0.99','2005-07-30 00:15:57','2006-02-15 22:12:34'),(672,25,1,9140,'8.99','2005-07-30 10:12:01','2006-02-15 22:12:34'),(673,25,2,9334,'2.99','2005-07-30 17:56:38','2006-02-15 22:12:34'),(674,25,2,9922,'2.99','2005-07-31 14:59:37','2006-02-15 22:12:34'),(675,25,2,10103,'2.99','2005-07-31 20:49:13','2006-02-15 22:12:34'),(676,25,1,10324,'5.99','2005-08-01 04:49:06','2006-02-15 22:12:34'),(677,25,2,10860,'2.99','2005-08-02 00:12:32','2006-02-15 22:12:34'),(678,25,1,10916,'2.99','2005-08-02 02:05:59','2006-02-15 22:12:34'),(679,25,1,11642,'0.99','2005-08-17 04:48:05','2006-02-15 22:12:34'),(680,25,1,12922,'0.99','2005-08-19 04:48:48','2006-02-15 22:12:34'),(681,25,1,14193,'4.99','2005-08-21 03:38:27','2006-02-15 22:12:34'),(682,25,1,14236,'4.99','2005-08-21 05:13:16','2006-02-15 22:12:34'),(683,25,1,15512,'0.99','2005-08-23 02:57:30','2006-02-15 22:12:34'),(684,25,1,15972,'5.99','2005-08-23 20:00:30','2006-02-15 22:12:34'),(685,26,1,796,'2.99','2005-05-29 16:59:44','2006-02-15 22:12:34'),(686,26,2,1105,'2.99','2005-05-31 14:33:56','2006-02-15 22:12:34'),(687,26,1,1440,'5.99','2005-06-15 18:53:14','2006-02-15 22:12:34'),(688,26,2,1706,'4.99','2005-06-16 14:01:02','2006-02-15 22:12:34'),(689,26,1,2093,'9.99','2005-06-17 18:14:08','2006-02-15 22:12:34'),(690,26,2,2416,'3.99','2005-06-18 17:07:34','2006-02-15 22:12:34'),(691,26,2,2421,'6.99','2005-06-18 17:25:05','2006-02-15 22:12:34'),(692,26,1,2532,'4.99','2005-06-19 01:27:46','2006-02-15 22:12:34'),(693,26,1,2745,'4.99','2005-06-19 16:21:19','2006-02-15 22:12:34'),(694,26,1,4065,'2.99','2005-07-07 04:32:28','2006-02-15 22:12:34'),(695,26,1,4274,'4.99','2005-07-07 14:42:04','2006-02-15 22:12:34'),(696,26,1,4382,'4.99','2005-07-07 20:41:03','2006-02-15 22:12:34'),(697,26,2,4402,'0.99','2005-07-07 21:28:46','2006-02-15 22:12:34'),(698,26,1,4431,'6.99','2005-07-07 22:39:02','2006-02-15 22:12:34'),(699,26,1,4536,'3.99','2005-07-08 03:43:22','2006-02-15 22:12:34'),(700,26,1,4641,'6.99','2005-07-08 09:09:46','2006-02-15 22:12:34'),(701,26,1,5437,'2.99','2005-07-09 21:32:29','2006-02-15 22:12:34'),(702,26,1,6149,'1.99','2005-07-11 09:19:31','2006-02-15 22:12:34'),(703,26,2,6243,'2.99','2005-07-11 14:53:25','2006-02-15 22:12:34'),(704,26,2,7328,'0.99','2005-07-27 13:55:18','2006-02-15 22:12:34'),(705,26,1,8241,'4.99','2005-07-29 00:33:36','2006-02-15 22:12:34'),(706,26,1,9484,'0.99','2005-07-30 23:31:40','2006-02-15 22:12:34'),(707,26,1,10386,'3.99','2005-08-01 06:42:20','2006-02-15 22:12:34'),(708,26,1,10996,'3.99','2005-08-02 04:48:11','2006-02-15 22:12:34'),(709,26,2,11314,'2.99','2005-08-02 16:04:08','2006-02-15 22:12:34'),(710,26,1,11338,'0.99','2005-08-02 17:00:12','2006-02-15 22:12:34'),(711,26,1,11744,'5.99','2005-08-17 08:54:30','2006-02-15 22:12:34'),(712,26,2,13111,'4.99','2005-08-19 11:25:10','2006-02-15 22:12:34'),(713,26,2,14183,'4.99','2005-08-21 03:24:29','2006-02-15 22:12:34'),(714,26,2,14192,'8.99','2005-08-21 03:37:42','2006-02-15 22:12:34'),(715,26,2,14603,'1.99','2005-08-21 17:51:06','2006-02-15 22:12:34'),(716,26,1,14677,'7.99','2005-08-21 20:12:30','2006-02-15 22:12:34'),(717,26,1,15384,'2.99','2005-08-22 22:34:44','2006-02-15 22:12:34'),(718,26,1,15722,'7.99','2005-08-23 11:16:29','2006-02-15 22:12:34'),(719,27,2,787,'2.99','2005-05-29 16:03:03','2006-02-15 22:12:34'),(720,27,1,1310,'4.99','2005-06-15 10:11:42','2006-02-15 22:12:35'),(721,27,2,1480,'4.99','2005-06-15 21:17:17','2006-02-15 22:12:35'),(722,27,2,1699,'2.99','2005-06-16 13:05:09','2006-02-15 22:12:35'),(723,27,2,1960,'3.99','2005-06-17 08:59:57','2006-02-15 22:12:35'),(724,27,2,2512,'2.99','2005-06-18 23:48:47','2006-02-15 22:12:35'),(725,27,1,2815,'4.99','2005-06-19 20:03:29','2006-02-15 22:12:35'),(726,27,1,3038,'1.99','2005-06-20 12:28:59','2006-02-15 22:12:35'),(727,27,2,3420,'3.99','2005-06-21 17:22:36','2006-02-15 22:12:35'),(728,27,2,4038,'0.99','2005-07-07 02:52:53','2006-02-15 22:12:35'),(729,27,1,4510,'5.99','2005-07-08 02:34:51','2006-02-15 22:12:35'),(730,27,1,5552,'0.99','2005-07-10 03:01:19','2006-02-15 22:12:35'),(731,27,1,5736,'4.99','2005-07-10 11:45:48','2006-02-15 22:12:35'),(732,27,2,6115,'0.99','2005-07-11 07:36:50','2006-02-15 22:12:35'),(733,27,2,6562,'5.99','2005-07-12 05:26:26','2006-02-15 22:12:35'),(734,27,2,6658,'4.99','2005-07-12 11:13:21','2006-02-15 22:12:35'),(735,27,1,7927,'1.99','2005-07-28 12:13:42','2006-02-15 22:12:35'),(736,27,2,9244,'0.99','2005-07-30 14:06:53','2006-02-15 22:12:35'),(737,27,2,9636,'5.99','2005-07-31 05:12:59','2006-02-15 22:12:35'),(738,27,1,9673,'7.99','2005-07-31 06:34:55','2006-02-15 22:12:35'),(739,27,1,9908,'4.99','2005-07-31 14:39:52','2006-02-15 22:12:35'),(740,27,1,10794,'7.99','2005-08-01 21:51:15','2006-02-15 22:12:35'),(741,27,1,10852,'4.99','2005-08-02 00:00:33','2006-02-15 22:12:35'),(742,27,1,11234,'0.99','2005-08-02 13:12:17','2006-02-15 22:12:35'),(743,27,1,11661,'8.99','2005-08-17 05:25:57','2006-02-15 22:12:35'),(744,27,2,11740,'6.99','2005-08-17 08:48:31','2006-02-15 22:12:35'),(745,27,2,12021,'5.99','2005-08-17 19:52:43','2006-02-15 22:12:35'),(746,27,2,12461,'0.99','2005-08-18 11:28:14','2006-02-15 22:12:35'),(747,27,1,12531,'2.99','2005-08-18 13:57:50','2006-02-15 22:12:35'),(748,27,2,13816,'4.99','2005-08-20 13:13:56','2006-02-15 22:12:35'),(749,27,1,15048,'0.99','2005-08-22 10:00:04','2006-02-15 22:12:35'),(750,28,2,388,'2.99','2005-05-27 10:37:27','2006-02-15 22:12:35'),(751,28,1,868,'2.99','2005-05-30 04:19:55','2006-02-15 22:12:35'),(752,28,2,1240,'2.99','2005-06-15 04:58:07','2006-02-15 22:12:35'),(753,28,1,1543,'4.99','2005-06-16 01:24:08','2006-02-15 22:12:35'),(754,28,2,2299,'3.99','2005-06-18 08:18:52','2006-02-15 22:12:35'),(755,28,2,2604,'0.99','2005-06-19 06:30:10','2006-02-15 22:12:35'),(756,28,1,3231,'0.99','2005-06-21 02:25:00','2006-02-15 22:12:35'),(757,28,1,3845,'0.99','2005-07-06 16:38:14','2006-02-15 22:12:35'),(758,28,2,4704,'0.99','2005-07-08 11:45:35','2006-02-15 22:12:35'),(759,28,2,4951,'4.99','2005-07-08 22:58:21','2006-02-15 22:12:35'),(760,28,2,5653,'2.99','2005-07-10 07:21:27','2006-02-15 22:12:35'),(761,28,1,5817,'5.99','2005-07-10 15:49:12','2006-02-15 22:12:35'),(762,28,2,6032,'0.99','2005-07-11 02:49:01','2006-02-15 22:12:35'),(763,28,2,6476,'0.99','2005-07-12 01:37:48','2006-02-15 22:12:35'),(764,28,1,7580,'9.99','2005-07-27 23:07:40','2006-02-15 22:12:35'),(765,28,1,8464,'4.99','2005-07-29 08:18:20','2006-02-15 22:12:35'),(766,28,1,8901,'2.99','2005-07-30 01:07:12','2006-02-15 22:12:35'),(767,28,2,9544,'2.99','2005-07-31 01:44:51','2006-02-15 22:12:35'),(768,28,2,9593,'4.99','2005-07-31 03:22:30','2006-02-15 22:12:35'),(769,28,2,9705,'4.99','2005-07-31 07:40:33','2006-02-15 22:12:35'),(770,28,2,10116,'2.99','2005-07-31 21:14:02','2006-02-15 22:12:35'),(771,28,2,10294,'6.99','2005-08-01 03:48:12','2006-02-15 22:12:35'),(772,28,1,11444,'2.99','2005-08-02 20:32:55','2006-02-15 22:12:35'),(773,28,1,11856,'3.99','2005-08-17 13:44:49','2006-02-15 22:12:35'),(774,28,2,12190,'2.99','2005-08-18 01:54:44','2006-02-15 22:12:35'),(775,28,1,12359,'0.99','2005-08-18 07:44:05','2006-02-15 22:12:35'),(776,28,1,12708,'2.99','2005-08-18 20:59:17','2006-02-15 22:12:35'),(777,28,2,13783,'4.99','2005-08-20 12:11:03','2006-02-15 22:12:35'),(778,28,2,14540,'2.99','2005-08-21 15:34:23','2006-02-15 22:12:35'),(779,28,1,15445,'4.99','2005-08-23 00:48:29','2006-02-15 22:12:35'),(780,28,1,15491,'2.99','2005-08-23 02:08:40','2006-02-15 22:12:35'),(781,28,2,12938,'2.99','2006-02-14 15:16:03','2006-02-15 22:12:35'),(782,29,2,194,'1.99','2005-05-26 06:52:33','2006-02-15 22:12:35'),(783,29,1,2655,'0.99','2005-06-19 10:38:42','2006-02-15 22:12:35'),(784,29,1,2673,'0.99','2005-06-19 11:42:20','2006-02-15 22:12:35'),(785,29,1,2701,'7.99','2005-06-19 13:33:06','2006-02-15 22:12:35'),(786,29,1,2735,'2.99','2005-06-19 15:42:07','2006-02-15 22:12:35'),(787,29,2,2801,'2.99','2005-06-19 19:18:09','2006-02-15 22:12:35'),(788,29,2,2923,'2.99','2005-06-20 04:16:07','2006-02-15 22:12:35'),(789,29,1,3324,'2.99','2005-06-21 08:49:16','2006-02-15 22:12:35'),(790,29,2,4262,'6.99','2005-07-07 14:24:30','2006-02-15 22:12:35'),(791,29,1,4313,'0.99','2005-07-07 17:36:56','2006-02-15 22:12:35'),(792,29,2,4535,'0.99','2005-07-08 03:40:46','2006-02-15 22:12:35'),(793,29,2,5442,'10.99','2005-07-09 21:55:19','2006-02-15 22:12:35'),(794,29,1,5857,'1.99','2005-07-10 17:59:29','2006-02-15 22:12:35'),(795,29,2,7237,'3.99','2005-07-27 10:12:36','2006-02-15 22:12:35'),(796,29,1,7451,'6.99','2005-07-27 18:18:41','2006-02-15 22:12:35'),(797,29,1,7453,'0.99','2005-07-27 18:27:13','2006-02-15 22:12:35'),(798,29,2,8673,'2.99','2005-07-29 15:50:14','2006-02-15 22:12:35'),(799,29,2,9392,'4.99','2005-07-30 19:50:13','2006-02-15 22:12:35'),(800,29,1,9946,'4.99','2005-07-31 15:48:54','2006-02-15 22:12:35'),(801,29,1,10543,'5.99','2005-08-01 12:36:09','2006-02-15 22:12:35'),(802,29,2,10899,'1.99','2005-08-02 01:30:21','2006-02-15 22:12:35'),(803,29,1,11079,'4.99','2005-08-02 07:29:10','2006-02-15 22:12:35'),(804,29,2,11962,'2.99','2005-08-17 17:34:38','2006-02-15 22:12:35'),(805,29,1,12488,'4.99','2005-08-18 12:48:22','2006-02-15 22:12:35'),(806,29,1,12508,'2.99','2005-08-18 13:20:13','2006-02-15 22:12:35'),(807,29,2,12569,'6.99','2005-08-18 15:20:46','2006-02-15 22:12:35'),(808,29,2,12615,'6.99','2005-08-18 17:16:07','2006-02-15 22:12:35'),(809,29,2,13173,'2.99','2005-08-19 13:50:36','2006-02-15 22:12:35'),(810,29,1,13436,'0.99','2005-08-19 23:36:25','2006-02-15 22:12:35'),(811,29,2,13777,'2.99','2005-08-20 12:03:35','2006-02-15 22:12:35'),(812,29,1,13832,'3.99','2005-08-20 14:00:25','2006-02-15 22:12:35'),(813,29,1,14174,'0.99','2005-08-21 03:01:45','2006-02-15 22:12:35'),(814,29,1,14703,'4.99','2005-08-21 21:01:19','2006-02-15 22:12:35'),(815,29,1,14985,'7.99','2005-08-22 07:35:56','2006-02-15 22:12:35'),(816,29,1,14997,'5.99','2005-08-22 07:53:00','2006-02-15 22:12:35'),(817,29,2,15577,'0.99','2006-02-14 15:16:03','2006-02-15 22:12:35'),(818,30,2,1874,'1.99','2005-06-17 02:39:20','2006-02-15 22:12:35'),(819,30,2,1895,'2.99','2005-06-17 04:25:12','2006-02-15 22:12:35'),(820,30,2,2154,'4.99','2005-06-17 22:59:42','2006-02-15 22:12:35'),(821,30,2,2730,'2.99','2005-06-19 15:10:09','2006-02-15 22:12:35'),(822,30,1,3964,'4.99','2005-07-06 22:23:02','2006-02-15 22:12:35'),(823,30,2,4471,'2.99','2005-07-08 00:21:29','2006-02-15 22:12:35'),(824,30,2,4642,'2.99','2005-07-08 09:13:28','2006-02-15 22:12:35'),(825,30,2,5028,'5.99','2005-07-09 02:34:45','2006-02-15 22:12:36'),(826,30,1,5108,'9.99','2005-07-09 06:44:30','2006-02-15 22:12:36'),(827,30,1,5289,'0.99','2005-07-09 15:14:08','2006-02-15 22:12:36'),(828,30,2,5972,'7.99','2005-07-11 00:08:54','2006-02-15 22:12:36'),(829,30,1,6249,'0.99','2005-07-11 15:02:02','2006-02-15 22:12:36'),(830,30,2,6359,'2.99','2005-07-11 21:06:17','2006-02-15 22:12:36'),(831,30,2,7394,'2.99','2005-07-27 16:03:08','2006-02-15 22:12:36'),(832,30,2,7769,'4.99','2005-07-28 06:45:23','2006-02-15 22:12:36'),(833,30,1,8030,'4.99','2005-07-28 16:12:53','2006-02-15 22:12:36'),(834,30,2,8038,'4.99','2005-07-28 16:32:55','2006-02-15 22:12:36'),(835,30,1,8083,'4.99','2005-07-28 18:09:48','2006-02-15 22:12:36'),(836,30,1,8641,'2.99','2005-07-29 14:37:30','2006-02-15 22:12:36'),(837,30,2,9309,'2.99','2005-07-30 16:55:53','2006-02-15 22:12:36'),(838,30,2,9551,'0.99','2005-07-31 02:04:58','2006-02-15 22:12:36'),(839,30,1,9641,'0.99','2005-07-31 05:33:48','2006-02-15 22:12:36'),(840,30,1,9998,'2.99','2005-07-31 17:40:35','2006-02-15 22:12:36'),(841,30,1,10235,'6.99','2005-08-01 01:57:48','2006-02-15 22:12:36'),(842,30,1,12240,'2.99','2005-08-18 03:27:11','2006-02-15 22:12:36'),(843,30,1,12546,'2.99','2005-08-18 14:29:37','2006-02-15 22:12:36'),(844,30,2,12758,'0.99','2005-08-18 22:58:34','2006-02-15 22:12:36'),(845,30,1,13435,'0.99','2005-08-19 23:35:44','2006-02-15 22:12:36'),(846,30,1,13682,'4.99','2005-08-20 08:50:39','2006-02-15 22:12:36'),(847,30,1,14339,'0.99','2005-08-21 08:37:15','2006-02-15 22:12:36'),(848,30,1,14585,'2.99','2005-08-21 17:18:33','2006-02-15 22:12:36'),(849,30,1,15063,'4.99','2005-08-22 10:39:51','2006-02-15 22:12:36'),(850,30,1,15544,'4.99','2005-08-23 04:17:56','2006-02-15 22:12:36'),(851,30,2,15829,'2.99','2005-08-23 15:17:14','2006-02-15 22:12:36'),(852,31,2,1656,'4.99','2005-06-16 10:05:40','2006-02-15 22:12:36'),(853,31,1,1838,'1.99','2005-06-16 23:20:16','2006-02-15 22:12:36'),(854,31,1,2233,'0.99','2005-06-18 03:57:36','2006-02-15 22:12:36'),(855,31,2,2341,'6.99','2005-06-18 11:35:30','2006-02-15 22:12:36'),(856,31,1,2396,'7.99','2005-06-18 15:49:48','2006-02-15 22:12:36'),(857,31,2,2438,'0.99','2005-06-18 18:34:21','2006-02-15 22:12:36'),(858,31,1,2530,'0.99','2005-06-19 01:20:00','2006-02-15 22:12:36'),(859,31,2,2648,'4.99','2005-06-19 10:06:20','2006-02-15 22:12:36'),(860,31,2,3117,'2.99','2005-06-20 18:05:15','2006-02-15 22:12:36'),(861,31,2,3172,'1.99','2005-06-20 22:19:25','2006-02-15 22:12:36'),(862,31,1,3205,'0.99','2005-06-21 00:38:47','2006-02-15 22:12:36'),(863,31,1,3701,'4.99','2005-07-06 10:12:45','2006-02-15 22:12:36'),(864,31,2,3967,'4.99','2005-07-06 22:45:10','2006-02-15 22:12:36'),(865,31,1,4122,'6.99','2005-07-07 07:15:35','2006-02-15 22:12:36'),(866,31,2,4738,'9.99','2005-07-08 13:24:58','2006-02-15 22:12:36'),(867,31,1,6208,'3.99','2005-07-11 12:34:56','2006-02-15 22:12:36'),(868,31,2,6580,'4.99','2005-07-12 06:26:10','2006-02-15 22:12:36'),(869,31,1,7000,'1.99','2005-07-27 01:23:24','2006-02-15 22:12:36'),(870,31,2,7138,'3.99','2005-07-27 06:47:13','2006-02-15 22:12:36'),(871,31,2,7178,'2.99','2005-07-27 08:09:25','2006-02-15 22:12:36'),(872,31,2,7464,'2.99','2005-07-27 18:49:42','2006-02-15 22:12:36'),(873,31,2,8997,'0.99','2005-07-30 04:53:56','2006-02-15 22:12:36'),(874,31,2,12085,'4.99','2005-08-17 22:17:09','2006-02-15 22:12:36'),(875,31,1,12377,'0.99','2005-08-18 08:26:05','2006-02-15 22:12:36'),(876,31,2,15682,'6.99','2005-08-23 09:37:34','2006-02-15 22:12:36'),(877,31,2,15816,'6.99','2005-08-23 14:58:06','2006-02-15 22:12:36'),(878,32,2,483,'4.99','2005-05-27 23:00:25','2006-02-15 22:12:36'),(879,32,2,803,'4.99','2005-05-29 17:52:30','2006-02-15 22:12:36'),(880,32,2,1067,'4.99','2005-05-31 09:12:13','2006-02-15 22:12:36'),(881,32,2,1887,'6.99','2005-06-17 03:53:18','2006-02-15 22:12:36'),(882,32,2,2160,'0.99','2005-06-17 23:39:11','2006-02-15 22:12:36'),(883,32,2,2624,'5.99','2005-06-19 08:22:09','2006-02-15 22:12:36'),(884,32,2,2891,'1.99','2005-06-20 02:02:05','2006-02-15 22:12:36'),(885,32,1,3500,'2.99','2005-07-06 00:11:13','2006-02-15 22:12:36'),(886,32,1,4434,'2.99','2005-07-07 22:48:34','2006-02-15 22:12:36'),(887,32,2,4771,'2.99','2005-07-08 15:33:32','2006-02-15 22:12:36'),(888,32,2,4899,'0.99','2005-07-08 20:37:11','2006-02-15 22:12:36'),(889,32,1,5307,'9.99','2005-07-09 15:57:15','2006-02-15 22:12:36'),(890,32,1,5767,'0.99','2005-07-10 13:13:18','2006-02-15 22:12:36'),(891,32,1,5954,'2.99','2005-07-10 23:22:01','2006-02-15 22:12:36'),(892,32,1,6122,'3.99','2005-07-11 07:58:07','2006-02-15 22:12:36'),(893,32,2,6450,'2.99','2005-07-12 00:49:05','2006-02-15 22:12:36'),(894,32,1,7084,'6.99','2005-07-27 04:34:07','2006-02-15 22:12:36'),(895,32,1,7589,'5.99','2005-07-27 23:23:36','2006-02-15 22:12:36'),(896,32,1,7793,'2.99','2005-07-28 07:26:14','2006-02-15 22:12:36'),(897,32,2,8390,'5.99','2005-07-29 05:52:26','2006-02-15 22:12:36'),(898,32,2,8453,'2.99','2005-07-29 07:46:29','2006-02-15 22:12:36'),(899,32,2,8914,'2.99','2005-07-30 01:42:03','2006-02-15 22:12:36'),(900,32,1,11135,'4.99','2005-08-02 09:22:25','2006-02-15 22:12:36'),(901,32,2,11831,'4.99','2005-08-17 12:54:47','2006-02-15 22:12:36'),(902,32,2,12414,'9.99','2005-08-18 09:50:40','2006-02-15 22:12:36'),(903,32,1,13736,'8.99','2005-08-20 10:31:23','2006-02-15 22:12:36'),(904,32,1,13931,'1.99','2005-08-20 17:16:10','2006-02-15 22:12:36'),(905,32,1,14075,'0.99','2005-08-20 23:18:54','2006-02-15 22:12:36'),(906,32,2,14570,'5.99','2005-08-21 16:32:32','2006-02-15 22:12:36'),(907,33,1,165,'2.99','2005-05-26 02:28:36','2006-02-15 22:12:36'),(908,33,1,1301,'10.99','2005-06-15 09:46:33','2006-02-15 22:12:36'),(909,33,2,3173,'8.99','2005-06-20 22:21:10','2006-02-15 22:12:36'),(910,33,1,4095,'5.99','2005-07-07 06:01:48','2006-02-15 22:12:36'),(911,33,1,5421,'0.99','2005-07-09 20:49:12','2006-02-15 22:12:36'),(912,33,1,5723,'4.99','2005-07-10 11:14:48','2006-02-15 22:12:36'),(913,33,2,6280,'0.99','2005-07-11 16:36:17','2006-02-15 22:12:36'),(914,33,1,7992,'4.99','2005-07-28 14:53:06','2006-02-15 22:12:36'),(915,33,1,9040,'4.99','2005-07-30 06:31:45','2006-02-15 22:12:36'),(916,33,2,9085,'4.99','2005-07-30 08:17:24','2006-02-15 22:12:36'),(917,33,1,9254,'1.99','2005-07-30 14:26:11','2006-02-15 22:12:36'),(918,33,2,10335,'2.99','2005-08-01 04:59:30','2006-02-15 22:12:36'),(919,33,1,10870,'4.99','2005-08-02 00:27:12','2006-02-15 22:12:36'),(920,33,1,13241,'7.99','2005-08-19 16:25:00','2006-02-15 22:12:36'),(921,33,1,13858,'2.99','2005-08-20 14:50:57','2006-02-15 22:12:36'),(922,33,1,13958,'7.99','2005-08-20 18:11:44','2006-02-15 22:12:36'),(923,33,1,14002,'0.99','2005-08-20 20:12:19','2006-02-15 22:12:36'),(924,33,1,14623,'0.99','2005-08-21 18:29:13','2006-02-15 22:12:36'),(925,33,1,15096,'5.99','2005-08-22 11:43:04','2006-02-15 22:12:36'),(926,33,2,15115,'2.99','2005-08-22 12:28:01','2006-02-15 22:12:36'),(927,33,1,12277,'0.99','2006-02-14 15:16:03','2006-02-15 22:12:36'),(928,34,1,1900,'4.99','2005-06-17 04:29:58','2006-02-15 22:12:36'),(929,34,2,2257,'5.99','2005-06-18 05:29:52','2006-02-15 22:12:36'),(930,34,1,3150,'0.99','2005-06-20 20:35:28','2006-02-15 22:12:36'),(931,34,2,3508,'3.99','2005-07-06 00:24:25','2006-02-15 22:12:36'),(932,34,1,3911,'2.99','2005-07-06 20:09:11','2006-02-15 22:12:36'),(933,34,1,5188,'4.99','2005-07-09 10:22:31','2006-02-15 22:12:36'),(934,34,2,5643,'4.99','2005-07-10 06:49:00','2006-02-15 22:12:36'),(935,34,2,5918,'5.99','2005-07-10 21:32:06','2006-02-15 22:12:36'),(936,34,2,7015,'2.99','2005-07-27 02:15:01','2006-02-15 22:12:36'),(937,34,2,7124,'2.99','2005-07-27 06:09:30','2006-02-15 22:12:36'),(938,34,1,7532,'0.99','2005-07-27 21:20:52','2006-02-15 22:12:36'),(939,34,1,9160,'3.99','2005-07-30 11:17:33','2006-02-15 22:12:37'),(940,34,1,10523,'0.99','2005-08-01 11:52:32','2006-02-15 22:12:37'),(941,34,1,10615,'4.99','2005-08-01 14:58:14','2006-02-15 22:12:37'),(942,34,2,11096,'0.99','2005-08-02 08:05:19','2006-02-15 22:12:37'),(943,34,1,11505,'2.99','2005-08-16 23:18:47','2006-02-15 22:12:37'),(944,34,2,11701,'4.99','2005-08-17 07:15:47','2006-02-15 22:12:37'),(945,34,2,12286,'2.99','2005-08-18 04:57:59','2006-02-15 22:12:37'),(946,34,1,12599,'2.99','2005-08-18 16:42:45','2006-02-15 22:12:37'),(947,34,1,12651,'0.99','2005-08-18 18:36:16','2006-02-15 22:12:37'),(948,34,1,13371,'4.99','2005-08-19 21:21:47','2006-02-15 22:12:37'),(949,34,2,13949,'2.99','2005-08-20 17:55:13','2006-02-15 22:12:37'),(950,34,1,14686,'5.99','2005-08-21 20:32:08','2006-02-15 22:12:37'),(951,34,2,14701,'7.99','2005-08-21 20:54:32','2006-02-15 22:12:37'),(952,35,2,47,'3.99','2005-05-25 06:05:20','2006-02-15 22:12:37'),(953,35,1,424,'6.99','2005-05-27 15:34:01','2006-02-15 22:12:37'),(954,35,1,1579,'0.99','2005-06-16 04:09:08','2006-02-15 22:12:37'),(955,35,1,1989,'2.99','2005-06-17 10:47:24','2006-02-15 22:12:37'),(956,35,1,2229,'4.99','2005-06-18 03:50:18','2006-02-15 22:12:37'),(957,35,1,2231,'0.99','2005-06-18 03:52:14','2006-02-15 22:12:37'),(958,35,1,2743,'2.99','2005-06-19 16:15:56','2006-02-15 22:12:37'),(959,35,2,3112,'4.99','2005-06-20 17:53:30','2006-02-15 22:12:37'),(960,35,2,3597,'2.99','2005-07-06 05:03:59','2006-02-15 22:12:37'),(961,35,2,4098,'4.99','2005-07-07 06:14:51','2006-02-15 22:12:37'),(962,35,2,4990,'0.99','2005-07-09 00:48:49','2006-02-15 22:12:37'),(963,35,1,5013,'2.99','2005-07-09 01:46:45','2006-02-15 22:12:37'),(964,35,2,5323,'0.99','2005-07-09 16:34:07','2006-02-15 22:12:37'),(965,35,1,5916,'5.99','2005-07-10 21:26:31','2006-02-15 22:12:37'),(966,35,1,5963,'0.99','2005-07-10 23:47:08','2006-02-15 22:12:37'),(967,35,1,6147,'5.99','2005-07-11 09:13:08','2006-02-15 22:12:37'),(968,35,1,6401,'4.99','2005-07-11 22:44:34','2006-02-15 22:12:37'),(969,35,1,6565,'4.99','2005-07-12 05:39:50','2006-02-15 22:12:37'),(970,35,1,6572,'4.99','2005-07-12 05:56:38','2006-02-15 22:12:37'),(971,35,1,7140,'4.99','2005-07-27 06:54:12','2006-02-15 22:12:37'),(972,35,1,8822,'6.99','2005-07-29 22:20:21','2006-02-15 22:12:37'),(973,35,1,8971,'5.99','2005-07-30 04:03:58','2006-02-15 22:12:37'),(974,35,2,9033,'2.99','2005-07-30 06:07:42','2006-02-15 22:12:37'),(975,35,1,9579,'6.99','2005-07-31 02:59:20','2006-02-15 22:12:37'),(976,35,1,11298,'1.99','2005-08-02 15:32:32','2006-02-15 22:12:37'),(977,35,1,11452,'7.99','2005-08-02 20:59:52','2006-02-15 22:12:37'),(978,35,1,11645,'4.99','2005-08-17 04:50:56','2006-02-15 22:12:37'),(979,35,1,12055,'4.99','2005-08-17 21:02:19','2006-02-15 22:12:37'),(980,35,1,13735,'2.99','2005-08-20 10:31:01','2006-02-15 22:12:37'),(981,35,1,14110,'0.99','2005-08-21 00:53:09','2006-02-15 22:12:37'),(982,35,2,14124,'2.99','2005-08-21 01:31:51','2006-02-15 22:12:37'),(983,35,2,14735,'4.99','2005-08-21 22:25:09','2006-02-15 22:12:37'),(984,36,1,349,'0.99','2005-05-27 04:53:11','2006-02-15 22:12:37'),(985,36,1,716,'0.99','2005-05-29 04:35:29','2006-02-15 22:12:37'),(986,36,2,2741,'0.99','2005-06-19 16:05:41','2006-02-15 22:12:37'),(987,36,2,4135,'0.99','2005-07-07 08:15:03','2006-02-15 22:12:37'),(988,36,2,4560,'4.99','2005-07-08 04:58:48','2006-02-15 22:12:37'),(989,36,2,4762,'4.99','2005-07-08 14:54:42','2006-02-15 22:12:37'),(990,36,1,5403,'0.99','2005-07-09 20:07:09','2006-02-15 22:12:37'),(991,36,2,6030,'0.99','2005-07-11 02:37:51','2006-02-15 22:12:37'),(992,36,1,7205,'6.99','2005-07-27 09:06:13','2006-02-15 22:12:37'),(993,36,1,7647,'0.99','2005-07-28 01:35:17','2006-02-15 22:12:37'),(994,36,2,7919,'6.99','2005-07-28 11:59:45','2006-02-15 22:12:37'),(995,36,2,8099,'0.99','2005-07-28 18:35:12','2006-02-15 22:12:37'),(996,36,1,8391,'2.99','2005-07-29 05:52:50','2006-02-15 22:12:37'),(997,36,1,8952,'4.99','2005-07-30 03:20:38','2006-02-15 22:12:37'),(998,36,1,9369,'2.99','2005-07-30 18:52:19','2006-02-15 22:12:37'),(999,36,2,9805,'0.99','2005-07-31 11:11:10','2006-02-15 22:12:37'),(1000,36,2,10525,'2.99','2005-08-01 11:53:17','2006-02-15 22:12:37'),(1001,36,2,10761,'2.99','2005-08-01 20:25:35','2006-02-15 22:12:37'),(1002,36,1,10963,'0.99','2005-08-02 03:48:17','2006-02-15 22:12:37'),(1003,36,2,10964,'6.99','2005-08-02 03:56:23','2006-02-15 22:12:37'),(1004,36,2,11616,'4.99','2005-08-17 04:00:01','2006-02-15 22:12:37'),(1005,36,1,11813,'4.99','2005-08-17 12:06:54','2006-02-15 22:12:37'),(1006,36,2,13562,'2.99','2005-08-20 04:31:45','2006-02-15 22:12:37'),(1007,36,2,13564,'1.99','2005-08-20 04:34:46','2006-02-15 22:12:37'),(1008,36,1,13674,'4.99','2005-08-20 08:30:54','2006-02-15 22:12:37'),(1009,36,1,14647,'9.99','2005-08-21 19:15:33','2006-02-15 22:12:37'),(1010,36,2,15657,'4.99','2005-08-23 08:42:40','2006-02-15 22:12:37'),(1011,37,1,25,'0.99','2005-05-25 03:21:20','2006-02-15 22:12:37'),(1012,37,1,923,'2.99','2005-05-30 11:58:50','2006-02-15 22:12:37'),(1013,37,1,1583,'4.99','2005-06-16 04:44:23','2006-02-15 22:12:37'),(1014,37,2,1812,'1.99','2005-06-16 21:08:46','2006-02-15 22:12:37'),(1015,37,2,1854,'3.99','2005-06-17 00:43:57','2006-02-15 22:12:37'),(1016,37,2,3472,'7.99','2005-07-05 22:56:33','2006-02-15 22:12:37'),(1017,37,1,3734,'5.99','2005-07-06 11:40:27','2006-02-15 22:12:37'),(1018,37,1,5425,'5.99','2005-07-09 21:02:26','2006-02-15 22:12:37'),(1019,37,2,7939,'0.99','2005-07-28 12:45:47','2006-02-15 22:12:37'),(1020,37,1,8419,'9.99','2005-07-29 06:54:48','2006-02-15 22:12:37'),(1021,37,1,9567,'5.99','2005-07-31 02:36:11','2006-02-15 22:12:37'),(1022,37,1,10538,'2.99','2005-08-01 12:22:41','2006-02-15 22:12:37'),(1023,37,1,11176,'3.99','2005-08-02 10:39:43','2006-02-15 22:12:37'),(1024,37,1,13046,'7.99','2005-08-19 09:21:10','2006-02-15 22:12:37'),(1025,37,2,13147,'4.99','2005-08-19 12:55:09','2006-02-15 22:12:37'),(1026,37,2,13444,'0.99','2005-08-20 00:00:24','2006-02-15 22:12:37'),(1027,37,2,13493,'3.99','2005-08-20 01:33:36','2006-02-15 22:12:37'),(1028,37,2,14025,'8.99','2005-08-20 21:19:36','2006-02-15 22:12:37'),(1029,37,1,14084,'0.99','2005-08-20 23:42:46','2006-02-15 22:12:37'),(1030,37,2,14532,'2.99','2005-08-21 15:15:03','2006-02-15 22:12:37'),(1031,37,1,15028,'3.99','2005-08-22 09:03:44','2006-02-15 22:12:37'),(1032,37,1,15904,'0.99','2005-08-23 17:32:19','2006-02-15 22:12:37'),(1033,37,2,16035,'0.99','2005-08-23 22:08:04','2006-02-15 22:12:37'),(1034,38,2,1250,'2.99','2005-06-15 05:55:40','2006-02-15 22:12:37'),(1035,38,1,2550,'1.99','2005-06-19 02:49:55','2006-02-15 22:12:37'),(1036,38,2,2605,'1.99','2005-06-19 06:48:01','2006-02-15 22:12:37'),(1037,38,2,3003,'4.99','2005-06-20 10:00:51','2006-02-15 22:12:37'),(1038,38,2,3392,'3.99','2005-06-21 15:12:44','2006-02-15 22:12:37'),(1039,38,1,4202,'5.99','2005-07-07 11:23:48','2006-02-15 22:12:37'),(1040,38,2,4228,'1.99','2005-07-07 12:42:02','2006-02-15 22:12:37'),(1041,38,1,4300,'4.99','2005-07-07 16:36:16','2006-02-15 22:12:37'),(1042,38,2,4644,'4.99','2005-07-08 09:14:29','2006-02-15 22:12:37'),(1043,38,1,5273,'2.99','2005-07-09 14:31:24','2006-02-15 22:12:37'),(1044,38,2,5460,'2.99','2005-07-09 22:46:14','2006-02-15 22:12:37'),(1045,38,1,5822,'2.99','2005-07-10 16:10:39','2006-02-15 22:12:37'),(1046,38,1,6864,'5.99','2005-07-12 19:59:25','2006-02-15 22:12:38'),(1047,38,1,6961,'0.99','2005-07-27 00:10:49','2006-02-15 22:12:38'),(1048,38,2,7158,'4.99','2005-07-27 07:23:58','2006-02-15 22:12:38'),(1049,38,2,7163,'5.99','2005-07-27 07:36:11','2006-02-15 22:12:38'),(1050,38,2,7321,'5.99','2005-07-27 13:33:38','2006-02-15 22:12:38'),(1051,38,1,7795,'0.99','2005-07-28 07:28:16','2006-02-15 22:12:38'),(1052,38,2,8924,'3.99','2005-07-30 02:08:58','2006-02-15 22:12:38'),(1053,38,2,9216,'0.99','2005-07-30 13:11:19','2006-02-15 22:12:38'),(1054,38,1,9284,'0.99','2005-07-30 15:25:19','2006-02-15 22:12:38'),(1055,38,1,9621,'4.99','2005-07-31 04:21:08','2006-02-15 22:12:38'),(1056,38,2,10111,'2.99','2005-07-31 21:08:33','2006-02-15 22:12:38'),(1057,38,2,10524,'6.99','2005-08-01 11:53:12','2006-02-15 22:12:38'),(1058,38,2,11049,'3.99','2005-08-02 06:15:40','2006-02-15 22:12:38'),(1059,38,1,11344,'2.99','2005-08-02 17:13:26','2006-02-15 22:12:38'),(1060,38,1,11817,'4.99','2005-08-17 12:20:01','2006-02-15 22:12:38'),(1061,38,2,12092,'0.99','2005-08-17 22:28:15','2006-02-15 22:12:38'),(1062,38,2,12187,'1.99','2005-08-18 01:45:50','2006-02-15 22:12:38'),(1063,38,1,14554,'4.99','2005-08-21 16:03:01','2006-02-15 22:12:38'),(1064,38,2,14632,'2.99','2005-08-21 18:48:06','2006-02-15 22:12:38'),(1065,38,1,14787,'6.99','2005-08-22 00:25:59','2006-02-15 22:12:38'),(1066,38,1,15668,'2.99','2005-08-23 09:02:04','2006-02-15 22:12:38'),(1067,38,1,15738,'5.99','2005-08-23 11:55:50','2006-02-15 22:12:38'),(1068,39,1,1625,'5.99','2005-06-16 07:49:08','2006-02-15 22:12:38'),(1069,39,1,1905,'4.99','2005-06-17 04:51:43','2006-02-15 22:12:38'),(1070,39,2,2135,'0.99','2005-06-17 21:14:02','2006-02-15 22:12:38'),(1071,39,2,2439,'4.99','2005-06-18 18:35:04','2006-02-15 22:12:38'),(1072,39,1,2631,'4.99','2005-06-19 08:49:53','2006-02-15 22:12:38'),(1073,39,1,2876,'4.99','2005-06-20 01:06:34','2006-02-15 22:12:38'),(1074,39,1,4419,'5.99','2005-07-07 22:06:24','2006-02-15 22:12:38'),(1075,39,2,4695,'8.99','2005-07-08 11:07:59','2006-02-15 22:12:38'),(1076,39,2,4712,'6.99','2005-07-08 12:10:50','2006-02-15 22:12:38'),(1077,39,2,4727,'7.99','2005-07-08 12:54:15','2006-02-15 22:12:38'),(1078,39,1,5451,'4.99','2005-07-09 22:22:10','2006-02-15 22:12:38'),(1079,39,2,5515,'2.99','2005-07-10 01:12:44','2006-02-15 22:12:38'),(1080,39,1,6045,'2.99','2005-07-11 03:21:05','2006-02-15 22:12:38'),(1081,39,2,8307,'6.99','2005-07-29 03:18:34','2006-02-15 22:12:38'),(1082,39,2,8366,'1.99','2005-07-29 05:11:14','2006-02-15 22:12:38'),(1083,39,2,8723,'7.99','2005-07-29 18:03:47','2006-02-15 22:12:38'),(1084,39,1,8805,'2.99','2005-07-29 21:29:58','2006-02-15 22:12:38'),(1085,39,1,9431,'1.99','2005-07-30 21:24:22','2006-02-15 22:12:38'),(1086,39,1,9656,'4.99','2005-07-31 06:00:21','2006-02-15 22:12:38'),(1087,39,2,10052,'4.99','2005-07-31 19:15:13','2006-02-15 22:12:38'),(1088,39,1,10126,'0.99','2005-07-31 21:36:07','2006-02-15 22:12:38'),(1089,39,1,10251,'4.99','2005-08-01 02:39:12','2006-02-15 22:12:38'),(1090,39,2,10269,'4.99','2005-08-01 03:09:26','2006-02-15 22:12:38'),(1091,39,2,10630,'0.99','2005-08-01 15:34:46','2006-02-15 22:12:38'),(1092,39,1,10639,'9.99','2005-08-01 15:44:43','2006-02-15 22:12:38'),(1093,39,2,12268,'0.99','2005-08-18 04:26:54','2006-02-15 22:12:38'),(1094,39,2,12459,'4.99','2005-08-18 11:25:11','2006-02-15 22:12:38'),(1095,39,2,13101,'7.99','2005-08-19 11:01:54','2006-02-15 22:12:38'),(1096,39,2,15124,'5.99','2005-08-22 12:51:38','2006-02-15 22:12:38'),(1097,40,1,128,'4.99','2005-05-25 21:19:53','2006-02-15 22:12:38'),(1098,40,2,2470,'7.99','2005-06-18 20:28:31','2006-02-15 22:12:38'),(1099,40,2,2896,'2.99','2005-06-20 02:33:42','2006-02-15 22:12:38'),(1100,40,1,2993,'4.99','2005-06-20 09:12:12','2006-02-15 22:12:38'),(1101,40,1,3428,'0.99','2005-06-21 18:39:34','2006-02-15 22:12:38'),(1102,40,2,5001,'1.99','2005-07-09 01:17:04','2006-02-15 22:12:38'),(1103,40,2,5777,'2.99','2005-07-10 13:38:41','2006-02-15 22:12:38'),(1104,40,1,5869,'5.99','2005-07-10 18:40:09','2006-02-15 22:12:38'),(1105,40,1,6502,'0.99','2005-07-12 03:15:45','2006-02-15 22:12:38'),(1106,40,2,7684,'0.99','2005-07-28 03:11:54','2006-02-15 22:12:38'),(1107,40,2,8031,'0.99','2005-07-28 16:15:49','2006-02-15 22:12:38'),(1108,40,2,8170,'3.99','2005-07-28 21:32:29','2006-02-15 22:12:38'),(1109,40,1,9050,'8.99','2005-07-30 06:59:55','2006-02-15 22:12:38'),(1110,40,2,9700,'4.99','2005-07-31 07:29:59','2006-02-15 22:12:38'),(1111,40,2,9961,'6.99','2005-07-31 16:07:50','2006-02-15 22:12:38'),(1112,40,1,9975,'1.99','2005-07-31 16:53:43','2006-02-15 22:12:38'),(1113,40,1,10442,'2.99','2005-08-01 08:58:08','2006-02-15 22:12:38'),(1114,40,2,11919,'0.99','2005-08-17 16:08:49','2006-02-15 22:12:38'),(1115,40,2,11948,'3.99','2005-08-17 17:11:05','2006-02-15 22:12:38'),(1116,40,2,12396,'9.99','2005-08-18 09:11:23','2006-02-15 22:12:38'),(1117,40,2,12877,'2.99','2005-08-19 03:16:58','2006-02-15 22:12:38'),(1118,40,1,13149,'6.99','2005-08-19 13:07:12','2006-02-15 22:12:38'),(1119,40,1,13376,'0.99','2005-08-19 21:31:45','2006-02-15 22:12:38'),(1120,40,1,13840,'5.99','2005-08-20 14:23:20','2006-02-15 22:12:38'),(1121,40,1,13951,'2.99','2005-08-20 17:58:11','2006-02-15 22:12:38'),(1122,40,1,14260,'6.99','2005-08-21 06:01:08','2006-02-15 22:12:38'),(1123,40,1,15193,'2.99','2005-08-22 16:06:49','2006-02-15 22:12:38'),(1124,41,1,2563,'4.99','2005-06-19 03:24:17','2006-02-15 22:12:38'),(1125,41,2,3246,'7.99','2005-06-21 03:10:01','2006-02-15 22:12:38'),(1126,41,2,3827,'2.99','2005-07-06 15:52:03','2006-02-15 22:12:38'),(1127,41,2,4294,'9.99','2005-07-07 15:56:23','2006-02-15 22:12:38'),(1128,41,1,4543,'4.99','2005-07-08 04:06:55','2006-02-15 22:12:38'),(1129,41,1,4575,'2.99','2005-07-08 05:49:14','2006-02-15 22:12:38'),(1130,41,1,6976,'4.99','2005-07-27 00:40:01','2006-02-15 22:12:38'),(1131,41,2,7153,'4.99','2005-07-27 07:15:38','2006-02-15 22:12:38'),(1132,41,1,7517,'1.99','2005-07-27 20:57:07','2006-02-15 22:12:38'),(1133,41,2,8008,'6.99','2005-07-28 15:25:55','2006-02-15 22:12:38'),(1134,41,1,8098,'0.99','2005-07-28 18:34:20','2006-02-15 22:12:38'),(1135,41,1,8134,'6.99','2005-07-28 20:01:23','2006-02-15 22:12:38'),(1136,41,2,8225,'2.99','2005-07-28 23:59:29','2006-02-15 22:12:38'),(1137,41,1,8712,'2.99','2005-07-29 17:30:06','2006-02-15 22:12:38'),(1138,41,2,9313,'5.99','2005-07-30 16:59:43','2006-02-15 22:12:38'),(1139,41,1,10064,'2.99','2005-07-31 19:27:02','2006-02-15 22:12:38'),(1140,41,1,10170,'7.99','2005-07-31 23:27:31','2006-02-15 22:12:38'),(1141,41,2,10495,'4.99','2005-08-01 10:45:51','2006-02-15 22:12:38'),(1142,41,1,10853,'5.99','2005-08-02 00:00:54','2006-02-15 22:12:38'),(1143,41,2,12147,'2.99','2005-08-18 00:10:20','2006-02-15 22:12:38'),(1144,41,2,12173,'3.99','2005-08-18 01:08:34','2006-02-15 22:12:38'),(1145,41,2,12821,'0.99','2005-08-19 01:07:02','2006-02-15 22:12:38'),(1146,41,2,14539,'7.99','2005-08-21 15:29:47','2006-02-15 22:12:38'),(1147,41,2,15860,'4.99','2005-08-23 16:08:40','2006-02-15 22:12:38'),(1148,41,1,15875,'2.99','2006-02-14 15:16:03','2006-02-15 22:12:39'),(1149,42,1,635,'5.99','2005-05-28 17:46:57','2006-02-15 22:12:39'),(1150,42,2,1534,'0.99','2005-06-16 00:49:32','2006-02-15 22:12:39'),(1151,42,2,2056,'2.99','2005-06-17 15:27:33','2006-02-15 22:12:39'),(1152,42,1,2170,'3.99','2005-06-17 23:57:34','2006-02-15 22:12:39'),(1153,42,1,2302,'4.99','2005-06-18 08:27:33','2006-02-15 22:12:39'),(1154,42,2,4391,'2.99','2005-07-07 21:09:38','2006-02-15 22:12:39'),(1155,42,2,5199,'4.99','2005-07-09 10:50:56','2006-02-15 22:12:39'),(1156,42,2,5517,'5.99','2005-07-10 01:15:00','2006-02-15 22:12:39'),(1157,42,2,5652,'3.99','2005-07-10 07:18:58','2006-02-15 22:12:39'),(1158,42,1,6179,'2.99','2005-07-11 10:59:59','2006-02-15 22:12:39'),(1159,42,1,6799,'2.99','2005-07-12 16:52:13','2006-02-15 22:12:39'),(1160,42,1,6925,'0.99','2005-07-26 22:52:32','2006-02-15 22:12:39'),(1161,42,1,7405,'3.99','2005-07-27 16:25:11','2006-02-15 22:12:39'),(1162,42,1,8049,'0.99','2005-07-28 16:51:58','2006-02-15 22:12:39'),(1163,42,1,8095,'6.99','2005-07-28 18:32:40','2006-02-15 22:12:39'),(1164,42,1,8166,'2.99','2005-07-28 21:23:33','2006-02-15 22:12:39'),(1165,42,1,8499,'3.99','2005-07-29 09:10:41','2006-02-15 22:12:39'),(1166,42,2,8785,'2.99','2005-07-29 20:36:26','2006-02-15 22:12:39'),(1167,42,2,8852,'3.99','2005-07-29 23:30:03','2006-02-15 22:12:39'),(1168,42,2,8915,'3.99','2005-07-30 01:42:09','2006-02-15 22:12:39'),(1169,42,2,10060,'6.99','2005-07-31 19:23:00','2006-02-15 22:12:39'),(1170,42,2,10345,'2.99','2005-08-01 05:18:56','2006-02-15 22:12:39'),(1171,42,2,10845,'2.99','2005-08-01 23:47:03','2006-02-15 22:12:39'),(1172,42,1,10935,'5.99','2005-08-02 02:54:53','2006-02-15 22:12:39'),(1173,42,1,12478,'4.99','2005-08-18 12:25:16','2006-02-15 22:12:39'),(1174,42,2,12499,'2.99','2005-08-18 13:05:37','2006-02-15 22:12:39'),(1175,42,1,14461,'7.99','2005-08-21 12:50:33','2006-02-15 22:12:39'),(1176,42,1,15442,'2.99','2005-08-23 00:42:49','2006-02-15 22:12:39'),(1177,42,1,13351,'5.98','2006-02-14 15:16:03','2006-02-15 22:12:39'),(1178,42,1,15407,'0.00','2006-02-14 15:16:03','2006-02-15 22:12:39'),(1179,43,2,123,'4.99','2005-05-25 20:26:42','2006-02-15 22:12:39'),(1180,43,1,652,'4.99','2005-05-28 20:08:47','2006-02-15 22:12:39'),(1181,43,2,1544,'4.99','2005-06-16 01:28:22','2006-02-15 22:12:39'),(1182,43,2,3683,'1.99','2005-07-06 09:25:56','2006-02-15 22:12:39'),(1183,43,1,4498,'2.99','2005-07-08 02:07:50','2006-02-15 22:12:39'),(1184,43,1,5162,'4.99','2005-07-09 09:00:11','2006-02-15 22:12:39'),(1185,43,1,5401,'4.99','2005-07-09 19:59:10','2006-02-15 22:12:39'),(1186,43,1,5831,'2.99','2005-07-10 16:34:02','2006-02-15 22:12:39'),(1187,43,2,5941,'4.99','2005-07-10 22:40:47','2006-02-15 22:12:39'),(1188,43,1,6474,'3.99','2005-07-12 01:36:46','2006-02-15 22:12:39'),(1189,43,2,6680,'0.99','2005-07-12 12:01:56','2006-02-15 22:12:39'),(1190,43,1,7348,'4.99','2005-07-27 14:32:32','2006-02-15 22:12:39'),(1191,43,2,7868,'4.99','2005-07-28 10:08:55','2006-02-15 22:12:39'),(1192,43,2,8376,'4.99','2005-07-29 05:25:32','2006-02-15 22:12:39'),(1193,43,1,9204,'4.99','2005-07-30 12:43:58','2006-02-15 22:12:39'),(1194,43,1,11753,'4.99','2005-08-17 09:11:52','2006-02-15 22:12:39'),(1195,43,1,14244,'2.99','2005-08-21 05:29:55','2006-02-15 22:12:39'),(1196,43,1,14649,'4.99','2005-08-21 19:19:21','2006-02-15 22:12:39'),(1197,43,2,14837,'4.99','2005-08-22 01:54:52','2006-02-15 22:12:39'),(1198,43,2,15155,'4.99','2005-08-22 14:27:46','2006-02-15 22:12:39'),(1199,43,2,15800,'6.99','2005-08-23 14:23:44','2006-02-15 22:12:39'),(1200,43,2,15945,'2.99','2005-08-23 18:51:41','2006-02-15 22:12:39'),(1201,43,2,15644,'3.98','2006-02-14 15:16:03','2006-02-15 22:12:39'),(1202,43,1,15745,'0.00','2006-02-14 15:16:03','2006-02-15 22:12:39'),(1203,44,1,29,'0.99','2005-05-25 03:47:12','2006-02-15 22:12:39'),(1204,44,1,99,'4.99','2005-05-25 16:50:20','2006-02-15 22:12:39'),(1205,44,1,407,'2.99','2005-05-27 13:57:38','2006-02-15 22:12:39'),(1206,44,2,721,'0.99','2005-05-29 05:28:47','2006-02-15 22:12:39'),(1207,44,1,904,'2.99','2005-05-30 10:19:42','2006-02-15 22:12:39'),(1208,44,1,1497,'3.99','2005-06-15 21:56:39','2006-02-15 22:12:39'),(1209,44,1,2369,'2.99','2005-06-18 14:25:29','2006-02-15 22:12:39'),(1210,44,1,2809,'3.99','2005-06-19 19:40:27','2006-02-15 22:12:39'),(1211,44,2,2866,'4.99','2005-06-20 00:01:36','2006-02-15 22:12:39'),(1212,44,2,4390,'0.99','2005-07-07 20:59:06','2006-02-15 22:12:39'),(1213,44,2,4723,'9.99','2005-07-08 12:44:59','2006-02-15 22:12:39'),(1214,44,1,5551,'3.99','2005-07-10 03:01:09','2006-02-15 22:12:39'),(1215,44,1,5787,'8.99','2005-07-10 14:08:49','2006-02-15 22:12:39'),(1216,44,2,5849,'6.99','2005-07-10 17:32:33','2006-02-15 22:12:39'),(1217,44,2,5909,'4.99','2005-07-10 20:46:13','2006-02-15 22:12:39'),(1218,44,1,7514,'0.99','2005-07-27 20:51:49','2006-02-15 22:12:39'),(1219,44,2,7526,'6.99','2005-07-27 21:13:47','2006-02-15 22:12:39'),(1220,44,2,8775,'4.99','2005-07-29 20:05:38','2006-02-15 22:12:39'),(1221,44,1,8866,'4.99','2005-07-29 23:58:19','2006-02-15 22:12:39'),(1222,44,1,11364,'2.99','2005-08-02 17:53:36','2006-02-15 22:12:39'),(1223,44,2,12345,'3.99','2005-08-18 07:16:58','2006-02-15 22:12:39'),(1224,44,1,12504,'4.99','2005-08-18 13:17:07','2006-02-15 22:12:39'),(1225,44,1,12790,'6.99','2005-08-19 00:16:54','2006-02-15 22:12:39'),(1226,44,2,12982,'4.99','2005-08-19 07:06:34','2006-02-15 22:12:39'),(1227,44,2,15054,'2.99','2005-08-22 10:14:33','2006-02-15 22:12:39'),(1228,44,2,13428,'4.99','2006-02-14 15:16:03','2006-02-15 22:12:39'),(1229,45,2,277,'2.99','2005-05-26 17:32:11','2006-02-15 22:12:39'),(1230,45,1,1806,'4.99','2005-06-16 20:41:57','2006-02-15 22:12:39'),(1231,45,2,1979,'2.99','2005-06-17 09:45:30','2006-02-15 22:12:39'),(1232,45,2,2722,'4.99','2005-06-19 14:55:17','2006-02-15 22:12:39'),(1233,45,1,3391,'3.99','2005-06-21 15:11:02','2006-02-15 22:12:39'),(1234,45,2,3444,'0.99','2005-06-21 20:39:39','2006-02-15 22:12:39'),(1235,45,1,4843,'0.99','2005-07-08 18:27:28','2006-02-15 22:12:39'),(1236,45,1,5181,'6.99','2005-07-09 10:07:27','2006-02-15 22:12:39'),(1237,45,1,5405,'7.99','2005-07-09 20:11:49','2006-02-15 22:12:39'),(1238,45,1,5637,'0.99','2005-07-10 06:31:37','2006-02-15 22:12:39'),(1239,45,2,6001,'0.99','2005-07-11 01:24:44','2006-02-15 22:12:39'),(1240,45,2,6002,'2.99','2005-07-11 01:27:49','2006-02-15 22:12:39'),(1241,45,1,6966,'9.99','2005-07-27 00:15:35','2006-02-15 22:12:39'),(1242,45,1,7436,'2.99','2005-07-27 17:39:12','2006-02-15 22:12:39'),(1243,45,1,7961,'3.99','2005-07-28 13:47:21','2006-02-15 22:12:39'),(1244,45,1,10507,'2.99','2005-08-01 11:22:20','2006-02-15 22:12:39'),(1245,45,2,10878,'6.99','2005-08-02 00:33:12','2006-02-15 22:12:39'),(1246,45,1,11004,'8.99','2005-08-02 05:04:18','2006-02-15 22:12:39'),(1247,45,1,11029,'4.99','2005-08-02 05:51:10','2006-02-15 22:12:40'),(1248,45,2,11483,'2.99','2005-08-02 22:28:22','2006-02-15 22:12:40'),(1249,45,2,11488,'3.99','2005-08-02 22:35:15','2006-02-15 22:12:40'),(1250,45,1,11725,'2.99','2005-08-17 08:09:00','2006-02-15 22:12:40'),(1251,45,1,13340,'3.99','2005-08-19 20:18:39','2006-02-15 22:12:40'),(1252,45,2,13394,'4.99','2005-08-19 22:05:19','2006-02-15 22:12:40'),(1253,45,1,14576,'6.99','2005-08-21 16:52:03','2006-02-15 22:12:40'),(1254,45,1,15812,'10.99','2005-08-23 14:47:26','2006-02-15 22:12:40'),(1255,45,2,16037,'7.99','2005-08-23 22:13:04','2006-02-15 22:12:40'),(1256,46,2,401,'2.99','2005-05-27 12:57:55','2006-02-15 22:12:40'),(1257,46,2,432,'4.99','2005-05-27 16:40:29','2006-02-15 22:12:40'),(1258,46,1,938,'2.99','2005-05-30 14:47:31','2006-02-15 22:12:40'),(1259,46,1,1166,'4.99','2005-06-14 23:17:03','2006-02-15 22:12:40'),(1260,46,2,1214,'4.99','2005-06-15 03:18:40','2006-02-15 22:12:40'),(1261,46,2,2144,'0.99','2005-06-17 22:05:40','2006-02-15 22:12:40'),(1262,46,1,2203,'2.99','2005-06-18 02:10:42','2006-02-15 22:12:40'),(1263,46,2,2965,'8.99','2005-06-20 07:33:38','2006-02-15 22:12:40'),(1264,46,2,2975,'4.99','2005-06-20 08:06:18','2006-02-15 22:12:40'),(1265,46,2,3439,'4.99','2005-06-21 19:36:15','2006-02-15 22:12:40'),(1266,46,2,3855,'2.99','2005-07-06 17:03:48','2006-02-15 22:12:40'),(1267,46,1,3916,'4.99','2005-07-06 20:18:50','2006-02-15 22:12:40'),(1268,46,2,5698,'4.99','2005-07-10 09:47:00','2006-02-15 22:12:40'),(1269,46,1,7336,'0.99','2005-07-27 14:11:45','2006-02-15 22:12:40'),(1270,46,2,8152,'3.99','2005-07-28 20:53:05','2006-02-15 22:12:40'),(1271,46,2,9045,'8.99','2005-07-30 06:36:57','2006-02-15 22:12:40'),(1272,46,2,9806,'2.99','2005-07-31 11:13:49','2006-02-15 22:12:40'),(1273,46,1,10088,'2.99','2005-07-31 20:16:21','2006-02-15 22:12:40'),(1274,46,2,10428,'4.99','2005-08-01 08:30:11','2006-02-15 22:12:40'),(1275,46,1,10803,'4.99','2005-08-01 22:22:07','2006-02-15 22:12:40'),(1276,46,1,10827,'5.99','2005-08-01 23:13:00','2006-02-15 22:12:40'),(1277,46,1,11721,'0.99','2005-08-17 07:49:17','2006-02-15 22:12:40'),(1278,46,2,12095,'4.99','2005-08-17 22:32:37','2006-02-15 22:12:40'),(1279,46,2,12238,'2.99','2005-08-18 03:25:08','2006-02-15 22:12:40'),(1280,46,2,12280,'4.99','2005-08-18 04:49:27','2006-02-15 22:12:40'),(1281,46,1,12298,'2.99','2005-08-18 05:30:31','2006-02-15 22:12:40'),(1282,46,2,12455,'4.99','2005-08-18 11:19:47','2006-02-15 22:12:40'),(1283,46,1,13226,'0.99','2005-08-19 16:05:36','2006-02-15 22:12:40'),(1284,46,2,14144,'4.99','2005-08-21 02:10:57','2006-02-15 22:12:40'),(1285,46,2,14528,'6.99','2005-08-21 15:08:05','2006-02-15 22:12:40'),(1286,46,1,14940,'4.99','2005-08-22 05:54:03','2006-02-15 22:12:40'),(1287,46,1,15438,'2.99','2005-08-23 00:31:57','2006-02-15 22:12:40'),(1288,46,1,15708,'0.99','2005-08-23 10:35:51','2006-02-15 22:12:40'),(1289,46,1,15758,'5.99','2005-08-23 12:47:26','2006-02-15 22:12:40'),(1290,47,2,175,'3.99','2005-05-26 03:46:26','2006-02-15 22:12:40'),(1291,47,2,207,'4.99','2005-05-26 08:04:38','2006-02-15 22:12:40'),(1292,47,1,300,'6.99','2005-05-26 20:57:00','2006-02-15 22:12:40'),(1293,47,1,1882,'4.99','2005-06-17 03:17:21','2006-02-15 22:12:40'),(1294,47,1,2307,'6.99','2005-06-18 08:34:59','2006-02-15 22:12:40'),(1295,47,2,3320,'5.99','2005-06-21 08:29:41','2006-02-15 22:12:40'),(1296,47,1,3631,'4.99','2005-07-06 06:36:53','2006-02-15 22:12:40'),(1297,47,2,4064,'5.99','2005-07-07 04:29:20','2006-02-15 22:12:40'),(1298,47,1,5174,'0.99','2005-07-09 09:31:59','2006-02-15 22:12:40'),(1299,47,2,6153,'9.99','2005-07-11 09:31:04','2006-02-15 22:12:40'),(1300,47,2,6164,'0.99','2005-07-11 10:16:23','2006-02-15 22:12:40'),(1301,47,1,6337,'3.99','2005-07-11 19:30:47','2006-02-15 22:12:40'),(1302,47,2,8159,'4.99','2005-07-28 21:09:28','2006-02-15 22:12:40'),(1303,47,2,8402,'6.99','2005-07-29 06:25:45','2006-02-15 22:12:40'),(1304,47,1,8863,'3.99','2005-07-29 23:52:01','2006-02-15 22:12:40'),(1305,47,2,9274,'4.99','2005-07-30 15:07:04','2006-02-15 22:12:40'),(1306,47,1,11126,'0.99','2005-08-02 08:59:04','2006-02-15 22:12:40'),(1307,47,2,11477,'5.99','2005-08-02 22:09:01','2006-02-15 22:12:40'),(1308,47,1,12215,'7.99','2005-08-18 02:35:39','2006-02-15 22:12:40'),(1309,47,2,12274,'7.99','2005-08-18 04:41:47','2006-02-15 22:12:40'),(1310,47,1,14397,'0.99','2005-08-21 10:25:56','2006-02-15 22:12:40'),(1311,47,2,15846,'2.99','2005-08-23 15:39:18','2006-02-15 22:12:40'),(1312,48,2,72,'0.99','2005-05-25 10:52:13','2006-02-15 22:12:40'),(1313,48,1,297,'2.99','2005-05-26 20:48:48','2006-02-15 22:12:40'),(1314,48,1,390,'4.99','2005-05-27 11:02:26','2006-02-15 22:12:40'),(1315,48,2,1689,'9.99','2005-06-16 12:18:41','2006-02-15 22:12:40'),(1316,48,2,2822,'0.99','2005-06-19 20:29:24','2006-02-15 22:12:40'),(1317,48,2,3758,'4.99','2005-07-06 12:43:11','2006-02-15 22:12:40'),(1318,48,1,4367,'2.99','2005-07-07 19:52:01','2006-02-15 22:12:40'),(1319,48,2,5148,'6.99','2005-07-09 08:22:46','2006-02-15 22:12:40'),(1320,48,2,6498,'3.99','2005-07-12 03:05:38','2006-02-15 22:12:40'),(1321,48,1,7920,'2.99','2005-07-28 12:01:19','2006-02-15 22:12:40'),(1322,48,1,8716,'6.99','2005-07-29 17:39:09','2006-02-15 22:12:40'),(1323,48,1,9402,'7.99','2005-07-30 20:18:27','2006-02-15 22:12:40'),(1324,48,2,9742,'7.99','2005-07-31 09:10:20','2006-02-15 22:12:40'),(1325,48,2,10276,'2.99','2005-08-01 03:22:23','2006-02-15 22:12:40'),(1326,48,2,14450,'1.99','2005-08-21 12:21:25','2006-02-15 22:12:40'),(1327,48,2,14536,'2.99','2005-08-21 15:22:50','2006-02-15 22:12:40'),(1328,48,1,15228,'3.99','2005-08-22 17:27:23','2006-02-15 22:12:40'),(1329,49,2,96,'1.99','2005-05-25 16:32:19','2006-02-15 22:12:40'),(1330,49,1,239,'3.99','2005-05-26 12:30:26','2006-02-15 22:12:40'),(1331,49,2,846,'2.99','2005-05-30 01:17:45','2006-02-15 22:12:40'),(1332,49,2,1010,'4.99','2005-05-31 01:57:32','2006-02-15 22:12:40'),(1333,49,1,1164,'0.99','2005-06-14 23:16:26','2006-02-15 22:12:40'),(1334,49,2,1237,'9.99','2005-06-15 04:44:10','2006-02-15 22:12:40'),(1335,49,2,1688,'0.99','2005-06-16 12:11:20','2006-02-15 22:12:40'),(1336,49,2,1777,'6.99','2005-06-16 18:52:12','2006-02-15 22:12:40'),(1337,49,2,3235,'4.99','2005-06-21 02:46:17','2006-02-15 22:12:40'),(1338,49,2,3575,'4.99','2005-07-06 03:36:19','2006-02-15 22:12:40'),(1339,49,2,3615,'0.99','2005-07-06 05:47:47','2006-02-15 22:12:40'),(1340,49,1,5491,'2.99','2005-07-10 00:09:45','2006-02-15 22:12:41'),(1341,49,1,6214,'4.99','2005-07-11 12:49:48','2006-02-15 22:12:41'),(1342,49,1,6279,'6.99','2005-07-11 16:26:07','2006-02-15 22:12:41'),(1343,49,1,6521,'7.99','2005-07-12 04:06:11','2006-02-15 22:12:41'),(1344,49,2,6759,'4.99','2005-07-12 15:14:48','2006-02-15 22:12:41'),(1345,49,2,7209,'4.99','2005-07-27 09:16:53','2006-02-15 22:12:41'),(1346,49,2,7742,'8.99','2005-07-28 05:33:16','2006-02-15 22:12:41'),(1347,49,2,8553,'10.99','2005-07-29 11:15:36','2006-02-15 22:12:41'),(1348,49,2,9006,'0.99','2005-07-30 05:06:32','2006-02-15 22:12:41'),(1349,49,1,9851,'4.99','2005-07-31 12:50:24','2006-02-15 22:12:41'),(1350,49,1,10144,'4.99','2005-07-31 22:13:52','2006-02-15 22:12:41'),(1351,49,1,10266,'0.99','2005-08-01 03:05:59','2006-02-15 22:12:41'),(1352,49,1,10588,'2.99','2005-08-01 14:10:21','2006-02-15 22:12:41'),(1353,49,1,10814,'2.99','2005-08-01 22:43:12','2006-02-15 22:12:41'),(1354,49,2,14168,'5.99','2005-08-21 03:00:03','2006-02-15 22:12:41'),(1355,49,1,14627,'6.99','2005-08-21 18:35:54','2006-02-15 22:12:41'),(1356,49,1,14676,'2.99','2005-08-21 20:02:18','2006-02-15 22:12:41'),(1357,50,1,763,'4.99','2005-05-29 11:32:15','2006-02-15 22:12:41'),(1358,50,1,794,'4.99','2005-05-29 16:44:11','2006-02-15 22:12:41'),(1359,50,1,905,'4.99','2005-05-30 10:25:00','2006-02-15 22:12:41'),(1360,50,1,1029,'4.99','2005-05-31 03:52:02','2006-02-15 22:12:41'),(1361,50,2,1136,'4.99','2005-05-31 19:19:36','2006-02-15 22:12:41'),(1362,50,1,1223,'2.99','2005-06-15 03:38:53','2006-02-15 22:12:41'),(1363,50,1,1785,'4.99','2005-06-16 19:27:12','2006-02-15 22:12:41'),(1364,50,2,3000,'0.99','2005-06-20 09:32:33','2006-02-15 22:12:41'),(1365,50,2,3169,'2.99','2005-06-20 21:55:54','2006-02-15 22:12:41'),(1366,50,2,4149,'2.99','2005-07-07 08:40:17','2006-02-15 22:12:41'),(1367,50,2,5290,'4.99','2005-07-09 15:14:47','2006-02-15 22:12:41'),(1368,50,2,5641,'4.99','2005-07-10 06:43:43','2006-02-15 22:12:41'),(1369,50,2,5681,'9.99','2005-07-10 08:48:39','2006-02-15 22:12:41'),(1370,50,1,5928,'6.99','2005-07-10 21:58:30','2006-02-15 22:12:41'),(1371,50,2,6634,'0.99','2005-07-12 09:37:18','2006-02-15 22:12:41'),(1372,50,1,6667,'8.99','2005-07-12 11:36:22','2006-02-15 22:12:41'),(1373,50,1,7383,'4.99','2005-07-27 15:46:53','2006-02-15 22:12:41'),(1374,50,1,8089,'0.99','2005-07-28 18:26:47','2006-02-15 22:12:41'),(1375,50,1,8261,'0.99','2005-07-29 01:11:05','2006-02-15 22:12:41'),(1376,50,1,8619,'5.99','2005-07-29 13:50:08','2006-02-15 22:12:41'),(1377,50,2,9179,'0.99','2005-07-30 12:02:41','2006-02-15 22:12:41'),(1378,50,1,9615,'4.99','2005-07-31 03:59:56','2006-02-15 22:12:41'),(1379,50,2,9691,'10.99','2005-07-31 07:09:55','2006-02-15 22:12:41'),(1380,50,2,10046,'2.99','2005-07-31 19:07:11','2006-02-15 22:12:41'),(1381,50,2,10165,'0.99','2005-07-31 23:21:23','2006-02-15 22:12:41'),(1382,50,2,10180,'6.99','2005-07-31 23:57:43','2006-02-15 22:12:41'),(1383,50,2,10261,'4.99','2005-08-01 02:58:27','2006-02-15 22:12:41'),(1384,50,2,10485,'7.99','2005-08-01 10:20:34','2006-02-15 22:12:41'),(1385,50,2,11053,'3.99','2005-08-02 06:27:13','2006-02-15 22:12:41'),(1386,50,1,12766,'6.99','2005-08-18 23:25:20','2006-02-15 22:12:41'),(1387,50,2,13136,'7.99','2005-08-19 12:24:23','2006-02-15 22:12:41'),(1388,50,1,14054,'4.99','2005-08-20 22:17:01','2006-02-15 22:12:41'),(1389,50,2,15138,'2.99','2005-08-22 13:36:30','2006-02-15 22:12:41'),(1390,50,2,15388,'6.99','2005-08-22 22:49:23','2006-02-15 22:12:41'),(1391,50,1,16015,'4.99','2005-08-23 21:25:03','2006-02-15 22:12:41'),(1392,51,2,119,'4.99','2005-05-25 19:37:02','2006-02-15 22:12:41'),(1393,51,1,661,'4.99','2005-05-28 21:01:25','2006-02-15 22:12:41'),(1394,51,2,1028,'4.99','2005-05-31 03:48:05','2006-02-15 22:12:41'),(1395,51,2,1373,'1.99','2005-06-15 14:48:04','2006-02-15 22:12:41'),(1396,51,1,1477,'0.99','2005-06-15 21:11:18','2006-02-15 22:12:41'),(1397,51,1,3525,'9.99','2005-07-06 01:02:39','2006-02-15 22:12:41'),(1398,51,1,5230,'2.99','2005-07-09 12:30:23','2006-02-15 22:12:41'),(1399,51,2,5304,'5.99','2005-07-09 15:48:06','2006-02-15 22:12:41'),(1400,51,1,5473,'7.99','2005-07-09 23:19:11','2006-02-15 22:12:41'),(1401,51,1,5606,'4.99','2005-07-10 05:07:55','2006-02-15 22:12:41'),(1402,51,1,7207,'5.99','2005-07-27 09:13:26','2006-02-15 22:12:41'),(1403,51,1,7398,'6.99','2005-07-27 16:07:22','2006-02-15 22:12:41'),(1404,51,1,7636,'5.99','2005-07-28 01:08:36','2006-02-15 22:12:41'),(1405,51,1,8495,'4.99','2005-07-29 09:05:06','2006-02-15 22:12:41'),(1406,51,1,8693,'0.99','2005-07-29 16:44:13','2006-02-15 22:12:41'),(1407,51,1,8880,'0.99','2005-07-30 00:16:55','2006-02-15 22:12:41'),(1408,51,2,9649,'0.99','2005-07-31 05:46:54','2006-02-15 22:12:41'),(1409,51,2,10244,'4.99','2005-08-01 02:20:01','2006-02-15 22:12:41'),(1410,51,1,10780,'2.99','2005-08-01 21:14:24','2006-02-15 22:12:41'),(1411,51,1,10894,'0.99','2005-08-02 01:12:35','2006-02-15 22:12:41'),(1412,51,1,11302,'2.99','2005-08-02 15:38:03','2006-02-15 22:12:41'),(1413,51,2,11685,'4.99','2005-08-17 06:39:16','2006-02-15 22:12:41'),(1414,51,2,11751,'6.99','2005-08-17 09:07:56','2006-02-15 22:12:41'),(1415,51,1,12184,'0.99','2005-08-18 01:36:00','2006-02-15 22:12:41'),(1416,51,1,12725,'4.99','2005-08-18 21:43:09','2006-02-15 22:12:41'),(1417,51,2,13098,'2.99','2005-08-19 10:51:59','2006-02-15 22:12:41'),(1418,51,1,13302,'2.99','2005-08-19 18:54:26','2006-02-15 22:12:41'),(1419,51,1,13868,'0.99','2005-08-20 15:06:26','2006-02-15 22:12:41'),(1420,51,2,13882,'2.99','2005-08-20 15:23:26','2006-02-15 22:12:41'),(1421,51,2,14221,'6.99','2005-08-21 04:49:41','2006-02-15 22:12:41'),(1422,51,2,14512,'4.99','2005-08-21 14:47:09','2006-02-15 22:12:41'),(1423,51,1,14617,'4.99','2005-08-21 18:07:40','2006-02-15 22:12:41'),(1424,51,1,14903,'4.99','2005-08-22 04:31:50','2006-02-15 22:12:41'),(1425,52,1,874,'0.99','2005-05-30 05:36:21','2006-02-15 22:12:41'),(1426,52,1,1196,'4.99','2005-06-15 01:38:31','2006-02-15 22:12:41'),(1427,52,2,2232,'0.99','2005-06-18 03:54:31','2006-02-15 22:12:41'),(1428,52,1,2862,'2.99','2005-06-19 23:47:24','2006-02-15 22:12:41'),(1429,52,2,3196,'4.99','2005-06-21 00:02:28','2006-02-15 22:12:42'),(1430,52,1,3997,'1.99','2005-07-06 23:46:52','2006-02-15 22:12:42'),(1431,52,1,5308,'0.99','2005-07-09 15:58:38','2006-02-15 22:12:42'),(1432,52,2,5313,'3.99','2005-07-09 16:04:45','2006-02-15 22:12:42'),(1433,52,1,5607,'2.99','2005-07-10 05:08:10','2006-02-15 22:12:42'),(1434,52,1,6394,'7.99','2005-07-11 22:29:15','2006-02-15 22:12:42'),(1435,52,2,7284,'0.99','2005-07-27 12:12:04','2006-02-15 22:12:42'),(1436,52,2,7438,'5.99','2005-07-27 17:40:40','2006-02-15 22:12:42'),(1437,52,2,7627,'4.99','2005-07-28 00:56:47','2006-02-15 22:12:42'),(1438,52,1,8686,'4.99','2005-07-29 16:17:49','2006-02-15 22:12:42'),(1439,52,1,9029,'4.99','2005-07-30 06:03:11','2006-02-15 22:12:42'),(1440,52,2,9749,'3.99','2005-07-31 09:18:33','2006-02-15 22:12:42'),(1441,52,2,9797,'4.99','2005-07-31 10:53:44','2006-02-15 22:12:42'),(1442,52,2,10591,'0.99','2005-08-01 14:12:29','2006-02-15 22:12:42'),(1443,52,1,10635,'0.99','2005-08-01 15:37:58','2006-02-15 22:12:42'),(1444,52,1,11068,'0.99','2005-08-02 07:08:07','2006-02-15 22:12:42'),(1445,52,1,11731,'3.99','2005-08-17 08:24:35','2006-02-15 22:12:42'),(1446,52,2,12200,'2.99','2005-08-18 02:12:33','2006-02-15 22:12:42'),(1447,52,2,12520,'0.99','2005-08-18 13:42:45','2006-02-15 22:12:42'),(1448,52,2,13090,'5.99','2005-08-19 10:39:54','2006-02-15 22:12:42'),(1449,52,2,14820,'2.99','2005-08-22 01:18:37','2006-02-15 22:12:42'),(1450,52,1,14822,'5.99','2005-08-22 01:21:14','2006-02-15 22:12:42'),(1451,52,2,14961,'6.99','2005-08-22 06:35:50','2006-02-15 22:12:42'),(1452,52,2,15891,'5.99','2005-08-23 17:00:12','2006-02-15 22:12:42'),(1453,52,1,12001,'4.99','2006-02-14 15:16:03','2006-02-15 22:12:42'),(1454,53,1,88,'3.99','2005-05-25 14:13:54','2006-02-15 22:12:42'),(1455,53,1,378,'2.99','2005-05-27 09:23:22','2006-02-15 22:12:42'),(1456,53,1,751,'0.99','2005-05-29 09:55:43','2006-02-15 22:12:42'),(1457,53,2,783,'5.99','2005-05-29 14:41:18','2006-02-15 22:12:42'),(1458,53,2,856,'9.99','2005-05-30 02:01:21','2006-02-15 22:12:42'),(1459,53,1,1107,'2.99','2005-05-31 15:04:05','2006-02-15 22:12:42'),(1460,53,1,1964,'0.99','2005-06-17 09:10:09','2006-02-15 22:12:42'),(1461,53,1,2388,'2.99','2005-06-18 15:26:30','2006-02-15 22:12:42'),(1462,53,1,2903,'2.99','2005-06-20 02:49:01','2006-02-15 22:12:42'),(1463,53,2,3140,'2.99','2005-06-20 19:47:12','2006-02-15 22:12:42'),(1464,53,2,3244,'0.99','2005-06-21 03:01:10','2006-02-15 22:12:42'),(1465,53,2,3591,'2.99','2005-07-06 04:37:10','2006-02-15 22:12:42'),(1466,53,2,3898,'4.99','2005-07-06 19:12:37','2006-02-15 22:12:42'),(1467,53,2,5185,'2.99','2005-07-09 10:14:39','2006-02-15 22:12:42'),(1468,53,2,7466,'2.99','2005-07-27 18:51:17','2006-02-15 22:12:42'),(1469,53,1,7699,'4.99','2005-07-28 03:52:21','2006-02-15 22:12:42'),(1470,53,1,9343,'4.99','2005-07-30 18:13:13','2006-02-15 22:12:42'),(1471,53,1,9928,'7.99','2005-07-31 15:13:57','2006-02-15 22:12:42'),(1472,53,1,10594,'3.99','2005-08-01 14:14:59','2006-02-15 22:12:42'),(1473,53,1,12054,'5.99','2005-08-17 20:59:56','2006-02-15 22:12:42'),(1474,53,1,12580,'2.99','2005-08-18 15:49:08','2006-02-15 22:12:42'),(1475,53,1,13049,'5.99','2005-08-19 09:25:40','2006-02-15 22:12:42'),(1476,53,2,13789,'2.99','2005-08-20 12:16:38','2006-02-15 22:12:42'),(1477,53,1,14061,'2.99','2005-08-20 22:32:11','2006-02-15 22:12:42'),(1478,53,2,14091,'0.99','2005-08-21 00:11:17','2006-02-15 22:12:42'),(1479,53,2,14119,'5.99','2005-08-21 01:15:59','2006-02-15 22:12:42'),(1480,53,1,14671,'4.99','2005-08-21 19:59:30','2006-02-15 22:12:42'),(1481,53,2,14811,'0.99','2005-08-22 01:09:04','2006-02-15 22:12:42'),(1482,53,2,11657,'7.98','2006-02-14 15:16:03','2006-02-15 22:12:42'),(1483,53,1,14137,'0.00','2006-02-14 15:16:03','2006-02-15 22:12:42'),(1484,54,2,198,'4.99','2005-05-26 07:03:49','2006-02-15 22:12:42'),(1485,54,2,441,'4.99','2005-05-27 18:11:05','2006-02-15 22:12:42'),(1486,54,2,545,'3.99','2005-05-28 07:10:20','2006-02-15 22:12:42'),(1487,54,1,1556,'4.99','2005-06-16 02:19:02','2006-02-15 22:12:42'),(1488,54,1,1571,'2.99','2005-06-16 03:22:00','2006-02-15 22:12:42'),(1489,54,2,2323,'6.99','2005-06-18 09:55:02','2006-02-15 22:12:42'),(1490,54,1,2647,'4.99','2005-06-19 09:57:56','2006-02-15 22:12:42'),(1491,54,2,4657,'4.99','2005-07-08 09:51:02','2006-02-15 22:12:42'),(1492,54,2,5055,'1.99','2005-07-09 04:05:28','2006-02-15 22:12:42'),(1493,54,1,5929,'2.99','2005-07-10 21:59:29','2006-02-15 22:12:42'),(1494,54,1,5992,'2.99','2005-07-11 01:06:21','2006-02-15 22:12:42'),(1495,54,1,6338,'7.99','2005-07-11 19:39:41','2006-02-15 22:12:42'),(1496,54,2,6560,'2.99','2005-07-12 05:22:06','2006-02-15 22:12:42'),(1497,54,1,6813,'0.99','2005-07-12 18:03:50','2006-02-15 22:12:42'),(1498,54,2,8992,'4.99','2005-07-30 04:44:18','2006-02-15 22:12:42'),(1499,54,2,10489,'5.99','2005-08-01 10:27:42','2006-02-15 22:12:42'),(1500,54,2,10882,'5.99','2005-08-02 00:47:16','2006-02-15 22:12:42'),(1501,54,1,10956,'4.99','2005-08-02 03:33:14','2006-02-15 22:12:42'),(1502,54,1,11182,'4.99','2005-08-02 10:55:14','2006-02-15 22:12:42'),(1503,54,2,11887,'2.99','2005-08-17 15:03:13','2006-02-15 22:12:42'),(1504,54,1,12526,'2.99','2005-08-18 13:48:43','2006-02-15 22:12:42'),(1505,54,2,12775,'5.99','2005-08-18 23:35:56','2006-02-15 22:12:43'),(1506,54,1,12811,'4.99','2005-08-19 00:51:28','2006-02-15 22:12:43'),(1507,54,2,12872,'0.99','2005-08-19 02:57:37','2006-02-15 22:12:43'),(1508,54,2,13315,'2.99','2005-08-19 19:16:18','2006-02-15 22:12:43'),(1509,54,1,13890,'0.99','2005-08-20 15:41:00','2006-02-15 22:12:43'),(1510,54,1,14215,'4.99','2005-08-21 04:34:11','2006-02-15 22:12:43'),(1511,54,1,15226,'10.99','2005-08-22 17:20:17','2006-02-15 22:12:43'),(1512,54,1,15567,'4.99','2005-08-23 05:20:36','2006-02-15 22:12:43'),(1513,55,1,555,'4.99','2005-05-28 08:31:14','2006-02-15 22:12:43'),(1514,55,1,1027,'9.99','2005-05-31 03:46:19','2006-02-15 22:12:43'),(1515,55,1,1048,'0.99','2005-05-31 06:49:53','2006-02-15 22:12:43'),(1516,55,2,1825,'2.99','2005-06-16 21:53:05','2006-02-15 22:12:43'),(1517,55,2,2062,'2.99','2005-06-17 15:56:43','2006-02-15 22:12:43'),(1518,55,1,2904,'2.99','2005-06-20 02:54:06','2006-02-15 22:12:43'),(1519,55,1,2976,'4.99','2005-06-20 08:09:11','2006-02-15 22:12:43'),(1520,55,1,3149,'4.99','2005-06-20 20:34:55','2006-02-15 22:12:43'),(1521,55,1,4671,'4.99','2005-07-08 10:15:32','2006-02-15 22:12:43'),(1522,55,2,6314,'7.99','2005-07-11 18:32:44','2006-02-15 22:12:43'),(1523,55,2,7050,'4.99','2005-07-27 03:33:17','2006-02-15 22:12:43'),(1524,55,2,8288,'6.99','2005-07-29 02:04:22','2006-02-15 22:12:43'),(1525,55,1,9302,'2.99','2005-07-30 16:34:57','2006-02-15 22:12:43'),(1526,55,2,9596,'5.99','2005-07-31 03:28:47','2006-02-15 22:12:43'),(1527,55,2,9798,'2.99','2005-07-31 10:55:18','2006-02-15 22:12:43'),(1528,55,2,11287,'1.99','2005-08-02 14:49:51','2006-02-15 22:12:43'),(1529,55,1,12776,'4.99','2005-08-18 23:37:33','2006-02-15 22:12:43'),(1530,55,1,12808,'4.99','2005-08-19 00:40:41','2006-02-15 22:12:43'),(1531,55,2,12972,'1.99','2005-08-19 06:43:28','2006-02-15 22:12:43'),(1532,55,1,13345,'6.99','2005-08-19 20:25:24','2006-02-15 22:12:43'),(1533,55,1,14667,'2.99','2005-08-21 19:51:11','2006-02-15 22:12:43'),(1534,55,1,15296,'4.99','2005-08-22 19:37:20','2006-02-15 22:12:43'),(1535,56,1,130,'3.99','2005-05-25 21:21:56','2006-02-15 22:12:43'),(1536,56,1,341,'5.99','2005-05-27 04:01:42','2006-02-15 22:12:43'),(1537,56,1,496,'2.99','2005-05-28 00:43:41','2006-02-15 22:12:43'),(1538,56,1,569,'6.99','2005-05-28 10:12:41','2006-02-15 22:12:43'),(1539,56,2,1795,'6.99','2005-06-16 20:09:01','2006-02-15 22:12:43'),(1540,56,1,2140,'0.99','2005-06-17 21:40:29','2006-02-15 22:12:43'),(1541,56,1,2485,'4.99','2005-06-18 21:26:03','2006-02-15 22:12:43'),(1542,56,1,2989,'0.99','2005-06-20 08:59:37','2006-02-15 22:12:43'),(1543,56,1,3718,'7.99','2005-07-06 10:57:56','2006-02-15 22:12:43'),(1544,56,2,3771,'2.99','2005-07-06 13:19:34','2006-02-15 22:12:43'),(1545,56,1,4097,'3.99','2005-07-07 06:10:55','2006-02-15 22:12:43'),(1546,56,2,4702,'4.99','2005-07-08 11:41:36','2006-02-15 22:12:43'),(1547,56,1,5142,'4.99','2005-07-09 08:05:23','2006-02-15 22:12:43'),(1548,56,1,7385,'2.99','2005-07-27 15:49:46','2006-02-15 22:12:43'),(1549,56,1,7696,'7.99','2005-07-28 03:41:35','2006-02-15 22:12:43'),(1550,56,2,7942,'0.99','2005-07-28 12:49:44','2006-02-15 22:12:43'),(1551,56,1,8285,'0.99','2005-07-29 02:00:18','2006-02-15 22:12:43'),(1552,56,2,10356,'6.99','2005-08-01 05:49:17','2006-02-15 22:12:43'),(1553,56,2,10678,'0.99','2005-08-01 17:26:24','2006-02-15 22:12:43'),(1554,56,1,10946,'4.99','2005-08-02 03:20:39','2006-02-15 22:12:43'),(1555,56,1,11358,'5.99','2005-08-02 17:45:02','2006-02-15 22:12:43'),(1556,56,1,11656,'4.99','2005-08-17 05:11:09','2006-02-15 22:12:43'),(1557,56,2,12537,'1.99','2005-08-18 14:06:39','2006-02-15 22:12:43'),(1558,56,2,12713,'4.99','2005-08-18 21:07:28','2006-02-15 22:12:43'),(1559,56,2,13560,'8.99','2005-08-20 04:17:16','2006-02-15 22:12:43'),(1560,56,1,13769,'5.99','2005-08-20 11:43:52','2006-02-15 22:12:43'),(1561,56,2,14291,'3.99','2005-08-21 07:03:05','2006-02-15 22:12:43'),(1562,56,2,14534,'0.99','2005-08-21 15:16:29','2006-02-15 22:12:43'),(1563,56,2,15702,'7.99','2005-08-23 10:23:28','2006-02-15 22:12:43'),(1564,56,2,15714,'4.99','2006-02-14 15:16:03','2006-02-15 22:12:43'),(1565,57,2,152,'9.99','2005-05-26 00:41:10','2006-02-15 22:12:43'),(1566,57,2,943,'4.99','2005-05-30 15:20:19','2006-02-15 22:12:43'),(1567,57,1,2058,'5.99','2005-06-17 15:34:41','2006-02-15 22:12:43'),(1568,57,1,2105,'0.99','2005-06-17 19:15:45','2006-02-15 22:12:43'),(1569,57,1,2360,'4.99','2005-06-18 13:11:13','2006-02-15 22:12:43'),(1570,57,2,2910,'7.99','2005-06-20 03:31:18','2006-02-15 22:12:43'),(1571,57,1,3357,'0.99','2005-06-21 11:55:42','2006-02-15 22:12:43'),(1572,57,1,3727,'4.99','2005-07-06 11:16:43','2006-02-15 22:12:43'),(1573,57,2,4226,'4.99','2005-07-07 12:37:56','2006-02-15 22:12:43'),(1574,57,1,5060,'4.99','2005-07-09 04:28:03','2006-02-15 22:12:43'),(1575,57,1,5694,'0.99','2005-07-10 09:40:38','2006-02-15 22:12:43'),(1576,57,2,5948,'2.99','2005-07-10 23:12:08','2006-02-15 22:12:43'),(1577,57,2,6482,'4.99','2005-07-12 01:50:21','2006-02-15 22:12:43'),(1578,57,1,6494,'1.99','2005-07-12 02:42:51','2006-02-15 22:12:43'),(1579,57,2,6649,'4.99','2005-07-12 10:51:09','2006-02-15 22:12:43'),(1580,57,2,8249,'5.99','2005-07-29 00:48:44','2006-02-15 22:12:43'),(1581,57,1,9086,'0.99','2005-07-30 08:18:46','2006-02-15 22:12:43'),(1582,57,2,9136,'0.99','2005-07-30 10:07:20','2006-02-15 22:12:43'),(1583,57,1,9211,'1.99','2005-07-30 12:59:45','2006-02-15 22:12:43'),(1584,57,1,9703,'0.99','2005-07-31 07:34:52','2006-02-15 22:12:43'),(1585,57,2,9812,'2.99','2005-07-31 11:28:07','2006-02-15 22:12:43'),(1586,57,2,10169,'4.99','2005-07-31 23:27:13','2006-02-15 22:12:43'),(1587,57,2,12925,'5.99','2005-08-19 04:59:01','2006-02-15 22:12:43'),(1588,57,2,13163,'0.99','2005-08-19 13:29:46','2006-02-15 22:12:43'),(1589,57,2,13743,'0.99','2005-08-20 10:51:27','2006-02-15 22:12:44'),(1590,57,2,13929,'9.99','2005-08-20 17:13:48','2006-02-15 22:12:44'),(1591,57,2,15571,'0.99','2005-08-23 05:26:30','2006-02-15 22:12:44'),(1592,57,2,15871,'9.99','2005-08-23 16:24:24','2006-02-15 22:12:44'),(1593,58,1,230,'0.99','2005-05-26 11:31:50','2006-02-15 22:12:44'),(1594,58,2,276,'7.99','2005-05-26 17:16:07','2006-02-15 22:12:44'),(1595,58,2,761,'0.99','2005-05-29 11:09:01','2006-02-15 22:12:44'),(1596,58,1,2191,'4.99','2005-06-18 01:33:09','2006-02-15 22:12:44'),(1597,58,2,2543,'0.99','2005-06-19 02:14:11','2006-02-15 22:12:44'),(1598,58,1,2906,'0.99','2005-06-20 03:04:56','2006-02-15 22:12:44'),(1599,58,1,3685,'4.99','2005-07-06 09:30:45','2006-02-15 22:12:44'),(1600,58,2,4131,'4.99','2005-07-07 07:53:18','2006-02-15 22:12:44'),(1601,58,2,5439,'1.99','2005-07-09 21:39:35','2006-02-15 22:12:44'),(1602,58,1,7063,'9.99','2005-07-27 03:52:27','2006-02-15 22:12:44'),(1603,58,2,7487,'4.99','2005-07-27 19:32:45','2006-02-15 22:12:44'),(1604,58,1,8853,'0.99','2005-07-29 23:34:21','2006-02-15 22:12:44'),(1605,58,2,9561,'2.99','2005-07-31 02:22:13','2006-02-15 22:12:44'),(1606,58,2,10037,'2.99','2005-07-31 18:48:08','2006-02-15 22:12:44'),(1607,58,1,10068,'4.99','2005-07-31 19:39:38','2006-02-15 22:12:44'),(1608,58,2,10256,'4.99','2005-08-01 02:47:11','2006-02-15 22:12:44'),(1609,58,1,10668,'0.99','2005-08-01 17:00:27','2006-02-15 22:12:44'),(1610,58,1,11416,'6.99','2005-08-02 19:44:04','2006-02-15 22:12:44'),(1611,58,2,12292,'8.99','2005-08-18 05:08:54','2006-02-15 22:12:44'),(1612,58,1,13194,'6.99','2005-08-19 14:34:12','2006-02-15 22:12:44'),(1613,58,1,13207,'3.99','2005-08-19 15:14:38','2006-02-15 22:12:44'),(1614,58,1,13930,'2.99','2005-08-20 17:15:06','2006-02-15 22:12:44'),(1615,58,2,13973,'4.99','2005-08-20 18:52:43','2006-02-15 22:12:44'),(1616,58,2,14305,'5.99','2005-08-21 07:29:05','2006-02-15 22:12:44'),(1617,58,1,14665,'6.99','2005-08-21 19:49:46','2006-02-15 22:12:44'),(1618,58,1,14989,'4.99','2005-08-22 07:47:07','2006-02-15 22:12:44'),(1619,58,2,15326,'0.99','2006-02-14 15:16:03','2006-02-15 22:12:44'),(1620,59,2,212,'4.99','2005-05-26 08:34:41','2006-02-15 22:12:44'),(1621,59,2,951,'2.99','2005-05-30 16:10:35','2006-02-15 22:12:44'),(1622,59,1,1154,'5.99','2005-05-31 21:42:09','2006-02-15 22:12:44'),(1623,59,1,1269,'2.99','2005-06-15 07:29:59','2006-02-15 22:12:44'),(1624,59,1,1728,'3.99','2005-06-16 15:29:29','2006-02-15 22:12:44'),(1625,59,1,2921,'3.99','2005-06-20 04:13:04','2006-02-15 22:12:44'),(1626,59,2,4148,'2.99','2005-07-07 08:36:58','2006-02-15 22:12:44'),(1627,59,1,4384,'4.99','2005-07-07 20:46:45','2006-02-15 22:12:44'),(1628,59,1,4631,'4.99','2005-07-08 08:38:22','2006-02-15 22:12:44'),(1629,59,1,4891,'3.99','2005-07-08 20:06:19','2006-02-15 22:12:44'),(1630,59,2,5195,'8.99','2005-07-09 10:39:31','2006-02-15 22:12:44'),(1631,59,1,5207,'3.99','2005-07-09 11:15:44','2006-02-15 22:12:44'),(1632,59,1,5830,'4.99','2005-07-10 16:34:00','2006-02-15 22:12:44'),(1633,59,1,7991,'4.99','2005-07-28 14:45:45','2006-02-15 22:12:44'),(1634,59,2,8643,'4.99','2005-07-29 14:45:23','2006-02-15 22:12:44'),(1635,59,1,9469,'8.99','2005-07-30 22:56:34','2006-02-15 22:12:44'),(1636,59,2,9573,'6.99','2005-07-31 02:45:38','2006-02-15 22:12:44'),(1637,59,2,11396,'4.99','2005-08-02 18:48:29','2006-02-15 22:12:44'),(1638,59,1,12833,'5.99','2005-08-19 01:42:28','2006-02-15 22:12:44'),(1639,59,2,13282,'2.99','2005-08-19 18:08:18','2006-02-15 22:12:44'),(1640,59,1,13573,'2.99','2005-08-20 05:10:14','2006-02-15 22:12:44'),(1641,59,2,13921,'4.99','2005-08-20 16:57:11','2006-02-15 22:12:44'),(1642,59,1,14135,'5.99','2005-08-21 01:53:54','2006-02-15 22:12:44'),(1643,59,1,14977,'5.99','2005-08-22 07:12:53','2006-02-15 22:12:44'),(1644,59,2,15271,'5.99','2005-08-22 18:48:48','2006-02-15 22:12:44'),(1645,59,2,15744,'4.99','2005-08-23 12:15:51','2006-02-15 22:12:44'),(1646,59,2,15905,'2.99','2005-08-23 17:33:04','2006-02-15 22:12:44'),(1647,60,1,318,'4.99','2005-05-26 23:37:39','2006-02-15 22:12:44'),(1648,60,2,706,'1.99','2005-05-29 03:05:49','2006-02-15 22:12:44'),(1649,60,2,934,'2.99','2005-05-30 13:24:46','2006-02-15 22:12:44'),(1650,60,2,1482,'4.99','2005-06-15 21:18:16','2006-02-15 22:12:44'),(1651,60,2,2394,'4.99','2005-06-18 15:42:30','2006-02-15 22:12:44'),(1652,60,2,3473,'2.99','2005-07-05 22:57:34','2006-02-15 22:12:44'),(1653,60,1,3849,'2.99','2005-07-06 16:49:43','2006-02-15 22:12:44'),(1654,60,1,6282,'5.99','2005-07-11 16:46:22','2006-02-15 22:12:44'),(1655,60,2,7067,'0.99','2005-07-27 03:55:10','2006-02-15 22:12:44'),(1656,60,1,7331,'3.99','2005-07-27 13:57:50','2006-02-15 22:12:44'),(1657,60,1,7494,'0.99','2005-07-27 19:56:31','2006-02-15 22:12:44'),(1658,60,1,9356,'4.99','2005-07-30 18:36:24','2006-02-15 22:12:44'),(1659,60,1,9761,'4.99','2005-07-31 09:31:54','2006-02-15 22:12:44'),(1660,60,2,10680,'0.99','2005-08-01 17:28:05','2006-02-15 22:12:44'),(1661,60,1,11092,'4.99','2005-08-02 07:58:50','2006-02-15 22:12:44'),(1662,60,1,11404,'8.99','2005-08-02 19:12:40','2006-02-15 22:12:44'),(1663,60,1,12084,'1.99','2005-08-17 22:16:49','2006-02-15 22:12:44'),(1664,60,2,12614,'7.99','2005-08-18 17:16:03','2006-02-15 22:12:45'),(1665,60,1,15093,'2.99','2005-08-22 11:39:03','2006-02-15 22:12:45'),(1666,60,1,15318,'2.99','2005-08-22 20:15:16','2006-02-15 22:12:45'),(1667,60,1,15618,'5.99','2005-08-23 07:07:58','2006-02-15 22:12:45'),(1668,60,1,15632,'0.99','2005-08-23 07:30:26','2006-02-15 22:12:45'),(1669,60,1,15649,'2.99','2005-08-23 08:28:03','2006-02-15 22:12:45'),(1670,60,2,12489,'9.98','2006-02-14 15:16:03','2006-02-15 22:12:45'),(1671,60,2,14741,'0.00','2006-02-14 15:16:03','2006-02-15 22:12:45'),(1672,61,1,1157,'0.99','2005-05-31 22:47:45','2006-02-15 22:12:45'),(1673,61,1,7027,'7.99','2005-07-27 02:50:15','2006-02-15 22:12:45'),(1674,61,2,7071,'1.99','2005-07-27 04:01:15','2006-02-15 22:12:45'),(1675,61,2,8029,'6.99','2005-07-28 16:11:21','2006-02-15 22:12:45'),(1676,61,2,8075,'4.99','2005-07-28 17:37:28','2006-02-15 22:12:45'),(1677,61,1,8651,'3.99','2005-07-29 15:02:18','2006-02-15 22:12:45'),(1678,61,2,9597,'6.99','2005-07-31 03:29:07','2006-02-15 22:12:45'),(1679,61,2,10549,'0.99','2005-08-01 12:46:39','2006-02-15 22:12:45'),(1680,61,2,11379,'2.99','2005-08-02 18:16:55','2006-02-15 22:12:45'),(1681,61,1,12072,'9.99','2005-08-17 21:50:25','2006-02-15 22:12:45'),(1682,61,1,13450,'0.99','2005-08-20 00:18:15','2006-02-15 22:12:45'),(1683,61,1,13830,'0.99','2005-08-20 13:57:59','2006-02-15 22:12:45'),(1684,61,2,15089,'6.99','2005-08-22 11:34:06','2006-02-15 22:12:45'),(1685,61,1,15681,'1.99','2005-08-23 09:35:34','2006-02-15 22:12:45'),(1686,62,2,885,'0.99','2005-05-30 06:54:28','2006-02-15 22:12:45'),(1687,62,1,947,'4.99','2005-05-30 15:36:57','2006-02-15 22:12:45'),(1688,62,2,1241,'6.99','2005-06-15 04:59:43','2006-02-15 22:12:45'),(1689,62,1,1486,'0.99','2005-06-15 21:25:30','2006-02-15 22:12:45'),(1690,62,1,1587,'0.99','2005-06-16 04:52:28','2006-02-15 22:12:45'),(1691,62,2,3021,'4.99','2005-06-20 11:13:01','2006-02-15 22:12:45'),(1692,62,1,3035,'5.99','2005-06-20 12:17:03','2006-02-15 22:12:45'),(1693,62,1,3287,'0.99','2005-06-21 06:32:39','2006-02-15 22:12:45'),(1694,62,1,3327,'3.99','2005-06-21 09:04:50','2006-02-15 22:12:45'),(1695,62,2,3843,'2.99','2005-07-06 16:35:40','2006-02-15 22:12:45'),(1696,62,2,4159,'4.99','2005-07-07 09:10:57','2006-02-15 22:12:45'),(1697,62,2,5292,'2.99','2005-07-09 15:16:54','2006-02-15 22:12:45'),(1698,62,2,8360,'4.99','2005-07-29 05:08:00','2006-02-15 22:12:45'),(1699,62,2,10080,'0.99','2005-07-31 20:07:10','2006-02-15 22:12:45'),(1700,62,1,10815,'2.99','2005-08-01 22:46:21','2006-02-15 22:12:45'),(1701,62,1,11297,'5.99','2005-08-02 15:22:47','2006-02-15 22:12:45'),(1702,62,1,11988,'0.99','2005-08-17 18:23:50','2006-02-15 22:12:45'),(1703,62,2,13512,'8.99','2005-08-20 02:27:13','2006-02-15 22:12:45'),(1704,62,2,14574,'1.99','2005-08-21 16:50:34','2006-02-15 22:12:45'),(1705,62,2,14594,'2.99','2005-08-21 17:34:24','2006-02-15 22:12:45'),(1706,62,2,14821,'4.99','2005-08-22 01:20:19','2006-02-15 22:12:45'),(1707,62,1,15464,'6.99','2005-08-23 01:15:18','2006-02-15 22:12:45'),(1708,62,1,15591,'0.99','2005-08-23 06:11:52','2006-02-15 22:12:45'),(1709,63,2,1818,'0.99','2005-06-16 21:30:34','2006-02-15 22:12:45'),(1710,63,2,3923,'8.99','2005-07-06 20:34:10','2006-02-15 22:12:45'),(1711,63,1,4587,'4.99','2005-07-08 06:16:26','2006-02-15 22:12:45'),(1712,63,1,5585,'6.99','2005-07-10 04:15:43','2006-02-15 22:12:45'),(1713,63,2,5788,'4.99','2005-07-10 14:10:22','2006-02-15 22:12:45'),(1714,63,2,5832,'4.99','2005-07-10 16:34:48','2006-02-15 22:12:45'),(1715,63,2,6769,'3.99','2005-07-12 15:48:54','2006-02-15 22:12:45'),(1716,63,2,6847,'8.99','2005-07-12 19:22:37','2006-02-15 22:12:45'),(1717,63,2,8311,'5.99','2005-07-29 03:26:07','2006-02-15 22:12:45'),(1718,63,2,9007,'0.99','2005-07-30 05:09:32','2006-02-15 22:12:45'),(1719,63,1,9546,'4.99','2005-07-31 01:47:40','2006-02-15 22:12:45'),(1720,63,2,9549,'3.99','2005-07-31 01:57:04','2006-02-15 22:12:45'),(1721,63,1,9795,'0.99','2005-07-31 10:47:19','2006-02-15 22:12:45'),(1722,63,2,9938,'2.99','2005-07-31 15:28:47','2006-02-15 22:12:45'),(1723,63,2,10148,'0.99','2005-07-31 22:19:16','2006-02-15 22:12:45'),(1724,63,1,10288,'6.99','2005-08-01 03:38:42','2006-02-15 22:12:45'),(1725,63,1,11902,'4.99','2005-08-17 15:37:34','2006-02-15 22:12:45'),(1726,63,2,12342,'2.99','2005-08-18 07:12:46','2006-02-15 22:12:45'),(1727,63,2,12515,'0.99','2005-08-18 13:39:26','2006-02-15 22:12:45'),(1728,63,1,12954,'7.99','2005-08-19 06:04:34','2006-02-15 22:12:45'),(1729,63,1,13089,'0.99','2005-08-19 10:38:56','2006-02-15 22:12:45'),(1730,63,1,13624,'8.99','2005-08-20 06:51:02','2006-02-15 22:12:45'),(1731,63,1,14931,'3.99','2005-08-22 05:38:55','2006-02-15 22:12:45'),(1732,63,1,15060,'5.99','2005-08-22 10:24:32','2006-02-15 22:12:45'),(1733,63,1,15229,'2.99','2005-08-22 17:30:25','2006-02-15 22:12:45'),(1734,64,1,494,'4.99','2005-05-28 00:39:31','2006-02-15 22:12:45'),(1735,64,1,587,'0.99','2005-05-28 12:05:33','2006-02-15 22:12:45'),(1736,64,1,1001,'2.99','2005-05-31 00:46:31','2006-02-15 22:12:45'),(1737,64,2,1335,'0.99','2005-06-15 11:51:30','2006-02-15 22:12:45'),(1738,64,1,2060,'2.99','2005-06-17 15:42:42','2006-02-15 22:12:45'),(1739,64,2,3982,'0.99','2005-07-06 23:14:16','2006-02-15 22:12:45'),(1740,64,1,4288,'4.99','2005-07-07 15:38:25','2006-02-15 22:12:45'),(1741,64,1,4690,'1.99','2005-07-08 11:04:02','2006-02-15 22:12:45'),(1742,64,2,4819,'5.99','2005-07-08 17:19:15','2006-02-15 22:12:45'),(1743,64,2,4971,'5.99','2005-07-08 23:54:49','2006-02-15 22:12:45'),(1744,64,1,5114,'3.99','2005-07-09 07:07:05','2006-02-15 22:12:46'),(1745,64,2,5279,'2.99','2005-07-09 14:46:36','2006-02-15 22:12:46'),(1746,64,1,5432,'0.99','2005-07-09 21:21:25','2006-02-15 22:12:46'),(1747,64,2,6372,'2.99','2005-07-11 21:35:06','2006-02-15 22:12:46'),(1748,64,2,6457,'0.99','2005-07-12 01:06:35','2006-02-15 22:12:46'),(1749,64,2,6698,'1.99','2005-07-12 12:45:00','2006-02-15 22:12:46'),(1750,64,2,6744,'0.99','2005-07-12 14:30:28','2006-02-15 22:12:46'),(1751,64,2,7045,'0.99','2005-07-27 03:27:35','2006-02-15 22:12:46'),(1752,64,1,7082,'2.99','2005-07-27 04:27:32','2006-02-15 22:12:46'),(1753,64,1,7476,'1.99','2005-07-27 19:08:56','2006-02-15 22:12:46'),(1754,64,2,8602,'4.99','2005-07-29 13:04:27','2006-02-15 22:12:46'),(1755,64,1,9832,'2.99','2005-07-31 12:01:49','2006-02-15 22:12:46'),(1756,64,1,9880,'6.99','2005-07-31 13:49:02','2006-02-15 22:12:46'),(1757,64,1,9924,'3.99','2005-07-31 15:04:57','2006-02-15 22:12:46'),(1758,64,2,10185,'0.99','2005-08-01 00:12:11','2006-02-15 22:12:46'),(1759,64,2,10714,'4.99','2005-08-01 18:51:29','2006-02-15 22:12:46'),(1760,64,1,10889,'4.99','2005-08-02 00:54:33','2006-02-15 22:12:46'),(1761,64,1,12409,'0.99','2005-08-18 09:43:58','2006-02-15 22:12:46'),(1762,64,1,13773,'2.99','2005-08-20 11:50:14','2006-02-15 22:12:46'),(1763,64,1,13971,'0.99','2005-08-20 18:44:53','2006-02-15 22:12:46'),(1764,64,1,14167,'5.99','2005-08-21 02:59:48','2006-02-15 22:12:46'),(1765,64,2,14316,'0.99','2005-08-21 07:59:47','2006-02-15 22:12:46'),(1766,64,2,13333,'4.99','2006-02-14 15:16:03','2006-02-15 22:12:46'),(1767,65,1,295,'4.99','2005-05-26 20:33:20','2006-02-15 22:12:46'),(1768,65,2,657,'0.99','2005-05-28 20:23:09','2006-02-15 22:12:46'),(1769,65,1,2173,'7.99','2005-06-18 00:08:20','2006-02-15 22:12:46'),(1770,65,1,3051,'4.99','2005-06-20 13:06:52','2006-02-15 22:12:46'),(1771,65,1,3535,'4.99','2005-07-06 01:32:46','2006-02-15 22:12:46'),(1772,65,1,4240,'4.99','2005-07-07 13:33:12','2006-02-15 22:12:46'),(1773,65,2,4635,'3.99','2005-07-08 08:42:40','2006-02-15 22:12:46'),(1774,65,1,5735,'3.99','2005-07-10 11:39:15','2006-02-15 22:12:46'),(1775,65,2,6527,'0.99','2005-07-12 04:23:06','2006-02-15 22:12:46'),(1776,65,1,7877,'6.99','2005-07-28 10:25:36','2006-02-15 22:12:46'),(1777,65,2,8392,'1.99','2005-07-29 06:00:27','2006-02-15 22:12:46'),(1778,65,2,8404,'5.99','2005-07-29 06:27:01','2006-02-15 22:12:46'),(1779,65,1,9293,'3.99','2005-07-30 16:12:28','2006-02-15 22:12:46'),(1780,65,2,11100,'5.99','2005-08-02 08:08:00','2006-02-15 22:12:46'),(1781,65,1,11227,'8.99','2005-08-02 12:48:05','2006-02-15 22:12:46'),(1782,65,2,11461,'4.99','2005-08-02 21:35:00','2006-02-15 22:12:46'),(1783,65,2,11845,'2.99','2005-08-17 13:16:38','2006-02-15 22:12:46'),(1784,65,1,12114,'7.99','2005-08-17 23:02:00','2006-02-15 22:12:46'),(1785,65,1,12688,'6.99','2005-08-18 19:59:54','2006-02-15 22:12:46'),(1786,65,2,13692,'0.99','2005-08-20 09:07:52','2006-02-15 22:12:46'),(1787,65,2,14140,'6.99','2005-08-21 02:04:57','2006-02-15 22:12:46'),(1788,65,1,14356,'0.99','2005-08-21 09:08:51','2006-02-15 22:12:46'),(1789,66,2,933,'4.99','2005-05-30 13:08:45','2006-02-15 22:12:46'),(1790,66,1,1236,'2.99','2005-06-15 04:34:27','2006-02-15 22:12:46'),(1791,66,1,1907,'2.99','2005-06-17 05:08:27','2006-02-15 22:12:46'),(1792,66,1,2106,'4.99','2005-06-17 19:29:03','2006-02-15 22:12:46'),(1793,66,2,2571,'2.99','2005-06-19 04:20:14','2006-02-15 22:12:46'),(1794,66,1,2577,'4.99','2005-06-19 04:36:03','2006-02-15 22:12:46'),(1795,66,1,3334,'3.99','2005-06-21 10:04:33','2006-02-15 22:12:46'),(1796,66,2,3395,'6.99','2005-06-21 15:19:19','2006-02-15 22:12:46'),(1797,66,1,3573,'4.99','2005-07-06 03:33:48','2006-02-15 22:12:46'),(1798,66,2,3757,'2.99','2005-07-06 12:42:26','2006-02-15 22:12:46'),(1799,66,2,4088,'2.99','2005-07-07 05:31:55','2006-02-15 22:12:46'),(1800,66,1,4108,'4.99','2005-07-07 06:38:31','2006-02-15 22:12:46'),(1801,66,2,4165,'6.99','2005-07-07 09:23:27','2006-02-15 22:12:46'),(1802,66,2,4911,'5.99','2005-07-08 21:20:26','2006-02-15 22:12:46'),(1803,66,2,5915,'0.99','2005-07-10 21:12:16','2006-02-15 22:12:46'),(1804,66,1,6290,'8.99','2005-07-11 17:12:42','2006-02-15 22:12:46'),(1805,66,2,6348,'5.99','2005-07-11 20:21:18','2006-02-15 22:12:46'),(1806,66,1,6402,'3.99','2005-07-11 22:46:10','2006-02-15 22:12:46'),(1807,66,1,6995,'2.99','2005-07-27 01:12:13','2006-02-15 22:12:46'),(1808,66,1,7872,'2.99','2005-07-28 10:18:16','2006-02-15 22:12:46'),(1809,66,1,9091,'5.99','2005-07-30 08:30:45','2006-02-15 22:12:46'),(1810,66,1,10419,'0.99','2005-08-01 08:13:22','2006-02-15 22:12:46'),(1811,66,2,11028,'5.99','2005-08-02 05:48:20','2006-02-15 22:12:46'),(1812,66,2,11360,'2.99','2005-08-02 17:46:04','2006-02-15 22:12:46'),(1813,66,1,11683,'5.99','2005-08-17 06:15:17','2006-02-15 22:12:46'),(1814,66,1,11935,'0.99','2005-08-17 16:42:13','2006-02-15 22:12:46'),(1815,66,1,12699,'0.99','2005-08-18 20:20:59','2006-02-15 22:12:46'),(1816,66,1,13900,'2.99','2005-08-20 16:05:41','2006-02-15 22:12:46'),(1817,66,2,14123,'2.99','2005-08-21 01:31:25','2006-02-15 22:12:46'),(1818,66,1,14217,'6.99','2005-08-21 04:37:56','2006-02-15 22:12:46'),(1819,66,2,14351,'2.99','2005-08-21 09:04:20','2006-02-15 22:12:46'),(1820,66,2,14429,'0.99','2005-08-21 11:29:43','2006-02-15 22:12:46'),(1821,66,2,15026,'4.99','2005-08-22 09:01:52','2006-02-15 22:12:47'),(1822,66,1,15598,'8.99','2005-08-23 06:23:26','2006-02-15 22:12:47'),(1823,67,2,331,'9.99','2005-05-27 02:22:26','2006-02-15 22:12:47'),(1824,67,1,767,'2.99','2005-05-29 12:20:19','2006-02-15 22:12:47'),(1825,67,1,2064,'3.99','2005-06-17 15:57:56','2006-02-15 22:12:47'),(1826,67,1,2542,'3.99','2005-06-19 02:08:39','2006-02-15 22:12:47'),(1827,67,2,2810,'0.99','2005-06-19 19:44:12','2006-02-15 22:12:47'),(1828,67,1,3359,'4.99','2005-06-21 12:08:18','2006-02-15 22:12:47'),(1829,67,2,4090,'4.99','2005-07-07 05:47:33','2006-02-15 22:12:47'),(1830,67,2,5399,'2.99','2005-07-09 19:52:44','2006-02-15 22:12:47'),(1831,67,2,5510,'2.99','2005-07-10 00:58:37','2006-02-15 22:12:47'),(1832,67,1,6137,'2.99','2005-07-11 08:34:20','2006-02-15 22:12:47'),(1833,67,2,7277,'5.99','2005-07-27 11:48:37','2006-02-15 22:12:47'),(1834,67,2,7895,'0.99','2005-07-28 10:57:15','2006-02-15 22:12:47'),(1835,67,2,8563,'1.99','2005-07-29 11:32:58','2006-02-15 22:12:47'),(1836,67,1,9640,'7.99','2005-07-31 05:33:25','2006-02-15 22:12:47'),(1837,67,1,11295,'8.99','2005-08-02 15:10:06','2006-02-15 22:12:47'),(1838,67,1,11894,'8.99','2005-08-17 15:15:01','2006-02-15 22:12:47'),(1839,67,2,13437,'4.99','2005-08-19 23:37:52','2006-02-15 22:12:47'),(1840,67,1,13652,'2.99','2005-08-20 07:52:34','2006-02-15 22:12:47'),(1841,67,2,13791,'4.99','2005-08-20 12:21:05','2006-02-15 22:12:47'),(1842,67,2,13837,'2.99','2005-08-20 14:19:03','2006-02-15 22:12:47'),(1843,67,2,14967,'4.99','2005-08-22 06:46:03','2006-02-15 22:12:47'),(1844,67,2,15085,'2.99','2005-08-22 11:19:22','2006-02-15 22:12:47'),(1845,68,2,1828,'5.99','2005-06-16 22:04:34','2006-02-15 22:12:47'),(1846,68,2,1957,'8.99','2005-06-17 08:50:58','2006-02-15 22:12:47'),(1847,68,2,2633,'2.99','2005-06-19 08:53:10','2006-02-15 22:12:47'),(1848,68,2,2662,'4.99','2005-06-19 10:53:42','2006-02-15 22:12:47'),(1849,68,1,2686,'2.99','2005-06-19 12:44:20','2006-02-15 22:12:47'),(1850,68,1,3598,'0.99','2005-07-06 05:11:04','2006-02-15 22:12:47'),(1851,68,2,3801,'4.99','2005-07-06 15:05:50','2006-02-15 22:12:47'),(1852,68,1,3864,'0.99','2005-07-06 17:41:42','2006-02-15 22:12:47'),(1853,68,2,4555,'6.99','2005-07-08 04:48:36','2006-02-15 22:12:47'),(1854,68,1,4925,'3.99','2005-07-08 21:56:00','2006-02-15 22:12:47'),(1855,68,1,6512,'4.99','2005-07-12 03:42:49','2006-02-15 22:12:47'),(1856,68,2,9339,'3.99','2005-07-30 18:03:28','2006-02-15 22:12:47'),(1857,68,1,9538,'3.99','2005-07-31 01:25:22','2006-02-15 22:12:47'),(1858,68,2,9642,'4.99','2005-07-31 05:33:57','2006-02-15 22:12:47'),(1859,68,1,10115,'7.99','2005-07-31 21:13:47','2006-02-15 22:12:47'),(1860,68,1,11277,'2.99','2005-08-02 14:28:50','2006-02-15 22:12:47'),(1861,68,2,12742,'2.99','2005-08-18 22:22:03','2006-02-15 22:12:47'),(1862,68,2,13475,'4.99','2005-08-20 01:05:05','2006-02-15 22:12:47'),(1863,68,2,14242,'0.99','2005-08-21 05:25:59','2006-02-15 22:12:47'),(1864,68,2,14455,'5.99','2005-08-21 12:36:11','2006-02-15 22:12:47'),(1865,68,1,14947,'1.99','2005-08-22 06:07:52','2006-02-15 22:12:47'),(1866,68,1,15524,'4.99','2005-08-23 03:36:26','2006-02-15 22:12:47'),(1867,69,2,584,'4.99','2005-05-28 11:49:00','2006-02-15 22:12:47'),(1868,69,2,765,'1.99','2005-05-29 11:38:34','2006-02-15 22:12:47'),(1869,69,1,1549,'2.99','2005-06-16 01:57:15','2006-02-15 22:12:47'),(1870,69,1,3358,'4.99','2005-06-21 11:56:40','2006-02-15 22:12:47'),(1871,69,1,3883,'8.99','2005-07-06 18:39:38','2006-02-15 22:12:47'),(1872,69,1,4265,'0.99','2005-07-07 14:27:51','2006-02-15 22:12:47'),(1873,69,1,4427,'0.99','2005-07-07 22:28:51','2006-02-15 22:12:47'),(1874,69,2,5569,'3.99','2005-07-10 03:38:32','2006-02-15 22:12:47'),(1875,69,2,6297,'4.99','2005-07-11 17:37:22','2006-02-15 22:12:47'),(1876,69,1,6385,'6.99','2005-07-11 22:07:32','2006-02-15 22:12:47'),(1877,69,2,6785,'6.99','2005-07-12 16:30:57','2006-02-15 22:12:47'),(1878,69,2,8649,'6.99','2005-07-29 14:57:33','2006-02-15 22:12:47'),(1879,69,2,9193,'2.99','2005-07-30 12:28:42','2006-02-15 22:12:47'),(1880,69,1,9612,'2.99','2005-07-31 03:58:31','2006-02-15 22:12:47'),(1881,69,2,10074,'0.99','2005-07-31 19:57:16','2006-02-15 22:12:47'),(1882,69,1,11943,'3.99','2005-08-17 17:00:42','2006-02-15 22:12:47'),(1883,69,1,12012,'2.99','2005-08-17 19:20:48','2006-02-15 22:12:47'),(1884,69,1,12121,'2.99','2005-08-17 23:20:40','2006-02-15 22:12:47'),(1885,69,1,12966,'5.99','2005-08-19 06:37:48','2006-02-15 22:12:47'),(1886,69,1,13023,'5.99','2005-08-19 08:13:54','2006-02-15 22:12:47'),(1887,69,2,14311,'3.99','2005-08-21 07:45:47','2006-02-15 22:12:47'),(1888,69,2,14685,'0.99','2005-08-21 20:31:25','2006-02-15 22:12:47'),(1889,69,2,14767,'2.99','2005-08-21 23:43:00','2006-02-15 22:12:47'),(1890,69,1,15547,'2.99','2005-08-23 04:25:50','2006-02-15 22:12:47'),(1891,69,2,11995,'0.99','2006-02-14 15:16:03','2006-02-15 22:12:47'),(1892,70,2,1044,'4.99','2005-05-31 06:24:44','2006-02-15 22:12:47'),(1893,70,1,2472,'4.99','2005-06-18 20:32:40','2006-02-15 22:12:47'),(1894,70,1,4061,'0.99','2005-07-07 04:13:35','2006-02-15 22:12:47'),(1895,70,1,5927,'5.99','2005-07-10 21:57:14','2006-02-15 22:12:47'),(1896,70,2,7036,'4.99','2005-07-27 03:06:12','2006-02-15 22:12:47'),(1897,70,2,7421,'7.99','2005-07-27 17:10:05','2006-02-15 22:12:47'),(1898,70,1,7714,'2.99','2005-07-28 04:32:30','2006-02-15 22:12:47'),(1899,70,2,8550,'0.99','2005-07-29 11:12:37','2006-02-15 22:12:48'),(1900,70,1,8747,'2.99','2005-07-29 19:07:57','2006-02-15 22:12:48'),(1901,70,1,11274,'9.99','2005-08-02 14:24:08','2006-02-15 22:12:48'),(1902,70,1,11901,'2.99','2005-08-17 15:35:47','2006-02-15 22:12:48'),(1903,70,1,12003,'4.99','2005-08-17 18:56:05','2006-02-15 22:12:48'),(1904,70,2,12218,'4.99','2005-08-18 02:48:14','2006-02-15 22:12:48'),(1905,70,1,12581,'6.99','2005-08-18 15:49:15','2006-02-15 22:12:48'),(1906,70,1,12951,'3.99','2005-08-19 05:56:44','2006-02-15 22:12:48'),(1907,70,2,13680,'4.99','2005-08-20 08:44:06','2006-02-15 22:12:48'),(1908,70,2,15238,'0.99','2005-08-22 17:46:12','2006-02-15 22:12:48'),(1909,70,1,15616,'3.99','2005-08-23 07:06:38','2006-02-15 22:12:48'),(1910,71,1,199,'2.99','2005-05-26 07:11:58','2006-02-15 22:12:48'),(1911,71,1,272,'9.99','2005-05-26 16:27:11','2006-02-15 22:12:48'),(1912,71,2,1873,'2.99','2005-06-17 02:38:28','2006-02-15 22:12:48'),(1913,71,1,2374,'4.99','2005-06-18 14:44:06','2006-02-15 22:12:48'),(1914,71,2,3345,'5.99','2005-06-21 11:05:07','2006-02-15 22:12:48'),(1915,71,2,4614,'4.99','2005-07-08 07:45:17','2006-02-15 22:12:48'),(1916,71,2,5281,'1.99','2005-07-09 14:55:07','2006-02-15 22:12:48'),(1917,71,2,5358,'3.99','2005-07-09 18:09:21','2006-02-15 22:12:48'),(1918,71,1,5543,'8.99','2005-07-10 02:48:03','2006-02-15 22:12:48'),(1919,71,1,5770,'4.99','2005-07-10 13:21:28','2006-02-15 22:12:48'),(1920,71,2,5814,'4.99','2005-07-10 15:46:50','2006-02-15 22:12:48'),(1921,71,2,6020,'0.99','2005-07-11 02:08:55','2006-02-15 22:12:48'),(1922,71,1,6739,'5.99','2005-07-12 14:22:08','2006-02-15 22:12:48'),(1923,71,2,7160,'0.99','2005-07-27 07:26:06','2006-02-15 22:12:48'),(1924,71,1,7550,'4.99','2005-07-27 21:55:07','2006-02-15 22:12:48'),(1925,71,2,7982,'4.99','2005-07-28 14:19:59','2006-02-15 22:12:48'),(1926,71,2,8128,'2.99','2005-07-28 19:46:06','2006-02-15 22:12:48'),(1927,71,1,8293,'2.99','2005-07-29 02:30:50','2006-02-15 22:12:48'),(1928,71,1,8574,'1.99','2005-07-29 11:51:53','2006-02-15 22:12:48'),(1929,71,1,8668,'4.99','2005-07-29 15:41:31','2006-02-15 22:12:48'),(1930,71,1,8783,'3.99','2005-07-29 20:31:28','2006-02-15 22:12:48'),(1931,71,1,8789,'4.99','2005-07-29 20:47:27','2006-02-15 22:12:48'),(1932,71,1,8956,'0.99','2005-07-30 03:32:29','2006-02-15 22:12:48'),(1933,71,1,12417,'4.99','2005-08-18 09:57:00','2006-02-15 22:12:48'),(1934,71,1,14105,'7.99','2005-08-21 00:44:34','2006-02-15 22:12:48'),(1935,71,1,14228,'3.99','2005-08-21 04:57:08','2006-02-15 22:12:48'),(1936,71,2,14781,'4.99','2005-08-22 00:15:12','2006-02-15 22:12:48'),(1937,71,2,14904,'3.99','2005-08-22 04:32:01','2006-02-15 22:12:48'),(1938,71,1,15704,'4.99','2005-08-23 10:25:45','2006-02-15 22:12:48'),(1939,71,1,16000,'0.99','2005-08-23 20:44:36','2006-02-15 22:12:48'),(1940,72,2,785,'4.99','2005-05-29 15:08:41','2006-02-15 22:12:48'),(1941,72,2,845,'4.99','2005-05-30 01:17:25','2006-02-15 22:12:48'),(1942,72,2,1047,'0.99','2005-05-31 06:45:57','2006-02-15 22:12:48'),(1943,72,2,2294,'4.99','2005-06-18 07:46:34','2006-02-15 22:12:48'),(1944,72,1,3700,'0.99','2005-07-06 10:12:19','2006-02-15 22:12:48'),(1945,72,2,5223,'4.99','2005-07-09 12:06:03','2006-02-15 22:12:48'),(1946,72,1,5302,'4.99','2005-07-09 15:42:36','2006-02-15 22:12:48'),(1947,72,1,5424,'0.99','2005-07-09 20:59:09','2006-02-15 22:12:48'),(1948,72,1,5840,'4.99','2005-07-10 17:09:09','2006-02-15 22:12:48'),(1949,72,2,6081,'0.99','2005-07-11 05:11:09','2006-02-15 22:12:48'),(1950,72,2,8228,'4.99','2005-07-29 00:08:58','2006-02-15 22:12:48'),(1951,72,1,9027,'2.99','2005-07-30 05:58:27','2006-02-15 22:12:48'),(1952,72,2,9420,'5.99','2005-07-30 21:05:18','2006-02-15 22:12:48'),(1953,72,2,9648,'4.99','2005-07-31 05:46:03','2006-02-15 22:12:48'),(1954,72,2,10267,'0.99','2005-08-01 03:07:26','2006-02-15 22:12:48'),(1955,72,2,11206,'6.99','2005-08-02 11:58:03','2006-02-15 22:12:48'),(1956,72,2,11422,'5.99','2005-08-02 19:52:08','2006-02-15 22:12:48'),(1957,72,1,11630,'2.99','2005-08-17 04:27:46','2006-02-15 22:12:48'),(1958,72,1,11679,'4.99','2005-08-17 06:08:54','2006-02-15 22:12:48'),(1959,72,1,11923,'2.99','2005-08-17 16:21:47','2006-02-15 22:12:48'),(1960,72,2,12020,'2.99','2005-08-17 19:50:33','2006-02-15 22:12:48'),(1961,72,1,12448,'0.99','2005-08-18 10:59:04','2006-02-15 22:12:48'),(1962,72,2,12593,'0.99','2005-08-18 16:17:54','2006-02-15 22:12:48'),(1963,72,1,13145,'0.99','2005-08-19 12:53:53','2006-02-15 22:12:48'),(1964,72,2,13327,'4.99','2005-08-19 19:55:45','2006-02-15 22:12:48'),(1965,72,2,13597,'0.99','2005-08-20 05:59:05','2006-02-15 22:12:48'),(1966,72,2,13660,'4.99','2005-08-20 08:05:56','2006-02-15 22:12:48'),(1967,72,1,14020,'0.99','2005-08-20 20:59:43','2006-02-15 22:12:48'),(1968,72,2,15110,'0.99','2005-08-22 12:16:46','2006-02-15 22:12:48'),(1969,72,2,15146,'2.99','2005-08-22 13:57:55','2006-02-15 22:12:48'),(1970,73,1,70,'2.99','2005-05-25 10:15:23','2006-02-15 22:12:48'),(1971,73,2,1133,'4.99','2005-05-31 19:12:21','2006-02-15 22:12:48'),(1972,73,1,1669,'0.99','2005-06-16 10:20:20','2006-02-15 22:12:48'),(1973,73,2,2940,'4.99','2005-06-20 05:20:01','2006-02-15 22:12:48'),(1974,73,2,4327,'2.99','2005-07-07 18:01:39','2006-02-15 22:12:48'),(1975,73,1,4789,'4.99','2005-07-08 16:22:01','2006-02-15 22:12:49'),(1976,73,2,5021,'4.99','2005-07-09 02:09:41','2006-02-15 22:12:49'),(1977,73,1,6514,'9.99','2005-07-12 03:47:44','2006-02-15 22:12:49'),(1978,73,1,6645,'2.99','2005-07-12 10:39:55','2006-02-15 22:12:49'),(1979,73,1,7590,'4.99','2005-07-27 23:24:24','2006-02-15 22:12:49'),(1980,73,1,7683,'4.99','2005-07-28 03:11:29','2006-02-15 22:12:49'),(1981,73,1,8377,'4.99','2005-07-29 05:27:40','2006-02-15 22:12:49'),(1982,73,1,9212,'2.99','2005-07-30 13:03:13','2006-02-15 22:12:49'),(1983,73,1,9776,'2.99','2005-07-31 10:01:03','2006-02-15 22:12:49'),(1984,73,2,10434,'4.99','2005-08-01 08:47:00','2006-02-15 22:12:49'),(1985,73,1,11102,'4.99','2005-08-02 08:08:30','2006-02-15 22:12:49'),(1986,73,2,11155,'0.99','2005-08-02 09:55:28','2006-02-15 22:12:49'),(1987,73,2,11349,'4.99','2005-08-02 17:21:49','2006-02-15 22:12:49'),(1988,73,2,11609,'3.99','2005-08-17 03:41:11','2006-02-15 22:12:49'),(1989,73,2,12291,'4.99','2005-08-18 05:08:37','2006-02-15 22:12:49'),(1990,73,1,13886,'4.99','2005-08-20 15:34:43','2006-02-15 22:12:49'),(1991,73,1,15667,'0.99','2005-08-23 09:02:03','2006-02-15 22:12:49'),(1992,73,2,16002,'2.99','2005-08-23 20:47:12','2006-02-15 22:12:49'),(1993,73,2,13108,'2.99','2006-02-14 15:16:03','2006-02-15 22:12:49'),(1994,74,2,1121,'6.99','2005-05-31 16:37:36','2006-02-15 22:12:49'),(1995,74,1,2498,'1.99','2005-06-18 22:56:26','2006-02-15 22:12:49'),(1996,74,2,2517,'0.99','2005-06-19 00:11:26','2006-02-15 22:12:49'),(1997,74,1,3020,'1.99','2005-06-20 11:12:04','2006-02-15 22:12:49'),(1998,74,2,3445,'7.99','2005-06-21 20:40:28','2006-02-15 22:12:49'),(1999,74,2,3819,'3.99','2005-07-06 15:35:06','2006-02-15 22:12:49'),(2000,74,1,5530,'2.99','2005-07-10 02:13:49','2006-02-15 22:12:49'),(2001,74,2,5603,'2.99','2005-07-10 05:04:54','2006-02-15 22:12:49'),(2002,74,2,5917,'4.99','2005-07-10 21:30:22','2006-02-15 22:12:49'),(2003,74,1,6241,'7.99','2005-07-11 14:40:48','2006-02-15 22:12:49'),(2004,74,1,6475,'2.99','2005-07-12 01:36:57','2006-02-15 22:12:49'),(2005,74,1,7304,'6.99','2005-07-27 12:56:56','2006-02-15 22:12:49'),(2006,74,2,8796,'5.99','2005-07-29 21:09:11','2006-02-15 22:12:49'),(2007,74,2,9112,'4.99','2005-07-30 09:06:31','2006-02-15 22:12:49'),(2008,74,2,10051,'3.99','2005-07-31 19:14:20','2006-02-15 22:12:49'),(2009,74,1,10624,'0.99','2005-08-01 15:27:05','2006-02-15 22:12:49'),(2010,74,2,12374,'3.99','2005-08-18 08:07:45','2006-02-15 22:12:49'),(2011,74,2,12477,'3.99','2005-08-18 12:25:01','2006-02-15 22:12:49'),(2012,74,2,13335,'0.99','2005-08-19 20:03:18','2006-02-15 22:12:49'),(2013,74,2,13520,'0.99','2005-08-20 02:41:46','2006-02-15 22:12:49'),(2014,74,1,13583,'1.99','2005-08-20 05:29:45','2006-02-15 22:12:49'),(2015,74,2,13747,'5.99','2005-08-20 10:56:06','2006-02-15 22:12:49'),(2016,74,1,15286,'4.99','2005-08-22 19:17:56','2006-02-15 22:12:49'),(2017,74,2,15325,'4.99','2005-08-22 20:27:38','2006-02-15 22:12:49'),(2018,74,2,15500,'0.99','2005-08-23 02:39:37','2006-02-15 22:12:49'),(2019,74,2,15739,'4.99','2005-08-23 11:56:22','2006-02-15 22:12:49'),(2020,74,1,16046,'0.99','2005-08-23 22:26:47','2006-02-15 22:12:49'),(2021,75,1,180,'4.99','2005-05-26 04:46:23','2006-02-15 22:12:49'),(2022,75,2,268,'0.99','2005-05-26 16:19:08','2006-02-15 22:12:49'),(2023,75,1,1920,'4.99','2005-06-17 06:00:23','2006-02-15 22:12:49'),(2024,75,1,2161,'7.99','2005-06-17 23:39:50','2006-02-15 22:12:49'),(2025,75,2,2738,'4.99','2005-06-19 15:56:30','2006-02-15 22:12:49'),(2026,75,2,3062,'6.99','2005-06-20 13:50:00','2006-02-15 22:12:49'),(2027,75,1,3210,'4.99','2005-06-21 01:00:25','2006-02-15 22:12:49'),(2028,75,1,3711,'0.99','2005-07-06 10:46:15','2006-02-15 22:12:49'),(2029,75,2,4179,'2.99','2005-07-07 10:17:15','2006-02-15 22:12:49'),(2030,75,2,4511,'0.99','2005-07-08 02:36:21','2006-02-15 22:12:49'),(2031,75,1,4639,'5.99','2005-07-08 08:57:21','2006-02-15 22:12:49'),(2032,75,2,5260,'2.99','2005-07-09 14:05:45','2006-02-15 22:12:49'),(2033,75,2,6052,'0.99','2005-07-11 03:51:27','2006-02-15 22:12:49'),(2034,75,1,6092,'3.99','2005-07-11 05:51:31','2006-02-15 22:12:49'),(2035,75,1,6486,'0.99','2005-07-12 02:09:36','2006-02-15 22:12:49'),(2036,75,2,6530,'0.99','2005-07-12 04:33:19','2006-02-15 22:12:49'),(2037,75,2,6852,'2.99','2005-07-12 19:33:49','2006-02-15 22:12:49'),(2038,75,1,7052,'2.99','2005-07-27 03:36:38','2006-02-15 22:12:49'),(2039,75,1,7454,'4.99','2005-07-27 18:27:26','2006-02-15 22:12:49'),(2040,75,1,7843,'0.99','2005-07-28 09:10:22','2006-02-15 22:12:49'),(2041,75,2,7897,'2.99','2005-07-28 11:01:51','2006-02-15 22:12:49'),(2042,75,2,8202,'1.99','2005-07-28 23:11:45','2006-02-15 22:12:49'),(2043,75,1,8823,'6.99','2005-07-29 22:22:12','2006-02-15 22:12:49'),(2044,75,2,9168,'5.99','2005-07-30 11:31:17','2006-02-15 22:12:49'),(2045,75,2,9442,'4.99','2005-07-30 21:44:31','2006-02-15 22:12:49'),(2046,75,2,9501,'4.99','2005-07-30 23:59:21','2006-02-15 22:12:49'),(2047,75,1,9783,'9.99','2005-07-31 10:15:46','2006-02-15 22:12:49'),(2048,75,2,10653,'5.99','2005-08-01 16:28:07','2006-02-15 22:12:49'),(2049,75,1,10726,'3.99','2005-08-01 19:14:53','2006-02-15 22:12:50'),(2050,75,1,10871,'4.99','2005-08-02 00:27:24','2006-02-15 22:12:50'),(2051,75,1,11330,'0.99','2005-08-02 16:45:33','2006-02-15 22:12:50'),(2052,75,1,12002,'2.99','2005-08-17 18:56:02','2006-02-15 22:12:50'),(2053,75,2,12239,'0.99','2005-08-18 03:26:42','2006-02-15 22:12:50'),(2054,75,1,12336,'1.99','2005-08-18 06:59:41','2006-02-15 22:12:50'),(2055,75,1,12412,'5.99','2005-08-18 09:49:52','2006-02-15 22:12:50'),(2056,75,1,12426,'4.99','2005-08-18 10:24:11','2006-02-15 22:12:50'),(2057,75,1,12662,'0.99','2005-08-18 19:10:41','2006-02-15 22:12:50'),(2058,75,2,15928,'5.99','2005-08-23 18:23:24','2006-02-15 22:12:50'),(2059,75,2,13534,'8.97','2006-02-14 15:16:03','2006-02-15 22:12:50'),(2060,75,1,14488,'0.00','2006-02-14 15:16:03','2006-02-15 22:12:50'),(2061,75,2,15191,'0.00','2006-02-14 15:16:03','2006-02-15 22:12:50'),(2062,76,2,574,'1.99','2005-05-28 10:44:28','2006-02-15 22:12:50'),(2063,76,1,926,'0.99','2005-05-30 12:15:54','2006-02-15 22:12:50'),(2064,76,2,1487,'0.99','2005-06-15 21:27:42','2006-02-15 22:12:50'),(2065,76,1,1791,'6.99','2005-06-16 20:04:28','2006-02-15 22:12:50'),(2066,76,2,2111,'0.99','2005-06-17 19:47:21','2006-02-15 22:12:50'),(2067,76,2,2397,'1.99','2005-06-18 15:51:25','2006-02-15 22:12:50'),(2068,76,1,2894,'0.99','2005-06-20 02:22:42','2006-02-15 22:12:50'),(2069,76,2,3416,'0.99','2005-06-21 17:05:29','2006-02-15 22:12:50'),(2070,76,2,4099,'4.99','2005-07-07 06:20:33','2006-02-15 22:12:50'),(2071,76,2,5571,'0.99','2005-07-10 03:48:20','2006-02-15 22:12:50'),(2072,76,2,6789,'0.99','2005-07-12 16:34:40','2006-02-15 22:12:50'),(2073,76,2,8253,'6.99','2005-07-29 00:57:06','2006-02-15 22:12:50'),(2074,76,2,8357,'2.99','2005-07-29 04:59:44','2006-02-15 22:12:50'),(2075,76,2,8405,'3.99','2005-07-29 06:28:19','2006-02-15 22:12:50'),(2076,76,1,8935,'0.99','2005-07-30 02:38:45','2006-02-15 22:12:50'),(2077,76,2,9312,'2.99','2005-07-30 16:59:17','2006-02-15 22:12:50'),(2078,76,2,10082,'0.99','2005-07-31 20:09:32','2006-02-15 22:12:50'),(2079,76,2,10795,'4.99','2005-08-01 21:56:37','2006-02-15 22:12:50'),(2080,76,2,11172,'7.99','2005-08-02 10:27:52','2006-02-15 22:12:50'),(2081,76,2,13697,'3.99','2005-08-20 09:21:08','2006-02-15 22:12:50'),(2082,76,1,14637,'2.99','2005-08-21 19:01:00','2006-02-15 22:12:50'),(2083,76,2,15169,'4.99','2005-08-22 15:21:56','2006-02-15 22:12:50'),(2084,76,1,15566,'10.99','2005-08-23 05:17:23','2006-02-15 22:12:50'),(2085,77,2,319,'2.99','2005-05-26 23:52:13','2006-02-15 22:12:50'),(2086,77,1,419,'1.99','2005-05-27 15:15:11','2006-02-15 22:12:50'),(2087,77,2,561,'2.99','2005-05-28 08:54:06','2006-02-15 22:12:50'),(2088,77,1,586,'0.99','2005-05-28 12:03:00','2006-02-15 22:12:50'),(2089,77,1,760,'5.99','2005-05-29 11:07:25','2006-02-15 22:12:50'),(2090,77,1,1710,'4.99','2005-06-16 14:11:24','2006-02-15 22:12:50'),(2091,77,1,2354,'3.99','2005-06-18 12:54:18','2006-02-15 22:12:50'),(2092,77,2,2452,'8.99','2005-06-18 19:29:21','2006-02-15 22:12:50'),(2093,77,1,3151,'2.99','2005-06-20 20:36:53','2006-02-15 22:12:50'),(2094,77,2,3238,'0.99','2005-06-21 02:48:21','2006-02-15 22:12:50'),(2095,77,2,4928,'0.99','2005-07-08 22:05:41','2006-02-15 22:12:50'),(2096,77,2,6168,'0.99','2005-07-11 10:21:38','2006-02-15 22:12:50'),(2097,77,2,6390,'2.99','2005-07-11 22:19:23','2006-02-15 22:12:50'),(2098,77,1,7406,'3.99','2005-07-27 16:25:45','2006-02-15 22:12:50'),(2099,77,1,7710,'0.99','2005-07-28 04:24:07','2006-02-15 22:12:50'),(2100,77,2,8942,'4.99','2005-07-30 03:01:07','2006-02-15 22:12:50'),(2101,77,1,9811,'0.99','2005-07-31 11:23:45','2006-02-15 22:12:50'),(2102,77,2,10184,'4.99','2005-08-01 00:09:33','2006-02-15 22:12:50'),(2103,77,1,10886,'2.99','2005-08-02 00:52:34','2006-02-15 22:12:50'),(2104,77,1,10895,'0.99','2005-08-02 01:16:59','2006-02-15 22:12:50'),(2105,77,2,10991,'0.99','2005-08-02 04:41:12','2006-02-15 22:12:50'),(2106,77,1,11469,'2.99','2005-08-02 21:48:09','2006-02-15 22:12:50'),(2107,77,2,11767,'7.99','2005-08-17 10:00:40','2006-02-15 22:12:50'),(2108,77,1,12065,'6.99','2005-08-17 21:31:46','2006-02-15 22:12:50'),(2109,77,2,12328,'1.99','2005-08-18 06:43:56','2006-02-15 22:12:50'),(2110,77,2,13752,'9.99','2005-08-20 11:17:45','2006-02-15 22:12:50'),(2111,77,2,14530,'4.99','2005-08-21 15:10:50','2006-02-15 22:12:50'),(2112,77,2,15359,'2.99','2005-08-22 21:34:00','2006-02-15 22:12:50'),(2113,78,1,2207,'2.99','2005-06-18 02:19:21','2006-02-15 22:12:50'),(2114,78,2,2949,'6.99','2005-06-20 06:05:53','2006-02-15 22:12:50'),(2115,78,2,3248,'7.99','2005-06-21 03:12:21','2006-02-15 22:12:50'),(2116,78,1,3593,'4.99','2005-07-06 04:39:52','2006-02-15 22:12:50'),(2117,78,2,4227,'5.99','2005-07-07 12:41:36','2006-02-15 22:12:50'),(2118,78,2,4627,'2.99','2005-07-08 08:24:39','2006-02-15 22:12:50'),(2119,78,2,4778,'0.99','2005-07-08 15:51:51','2006-02-15 22:12:50'),(2120,78,1,5078,'1.99','2005-07-09 05:20:24','2006-02-15 22:12:50'),(2121,78,2,5604,'0.99','2005-07-10 05:05:00','2006-02-15 22:12:51'),(2122,78,1,6005,'0.99','2005-07-11 01:36:42','2006-02-15 22:12:51'),(2123,78,1,6344,'4.99','2005-07-11 20:04:43','2006-02-15 22:12:51'),(2124,78,2,7200,'1.99','2005-07-27 08:57:38','2006-02-15 22:12:51'),(2125,78,2,7747,'4.99','2005-07-28 05:50:11','2006-02-15 22:12:51'),(2126,78,2,7926,'3.99','2005-07-28 12:13:02','2006-02-15 22:12:51'),(2127,78,1,7957,'6.99','2005-07-28 13:34:08','2006-02-15 22:12:51'),(2128,78,2,8920,'4.99','2005-07-30 01:59:24','2006-02-15 22:12:51'),(2129,78,1,9068,'5.99','2005-07-30 07:31:45','2006-02-15 22:12:51'),(2130,78,2,10350,'3.99','2005-08-01 05:30:05','2006-02-15 22:12:51'),(2131,78,1,10590,'2.99','2005-08-01 14:11:53','2006-02-15 22:12:51'),(2132,78,1,10831,'7.99','2005-08-01 23:22:45','2006-02-15 22:12:51'),(2133,78,1,10942,'10.99','2005-08-02 03:16:31','2006-02-15 22:12:51'),(2134,78,2,12474,'8.99','2005-08-18 12:10:03','2006-02-15 22:12:51'),(2135,78,2,12653,'4.99','2005-08-18 18:53:17','2006-02-15 22:12:51'),(2136,78,2,13124,'5.99','2005-08-19 11:55:59','2006-02-15 22:12:51'),(2137,78,1,13432,'0.99','2005-08-19 23:29:06','2006-02-15 22:12:51'),(2138,78,2,13792,'5.99','2005-08-20 12:21:37','2006-02-15 22:12:51'),(2139,78,2,14620,'2.99','2005-08-21 18:10:43','2006-02-15 22:12:51'),(2140,78,1,14716,'0.99','2005-08-21 21:29:55','2006-02-15 22:12:51'),(2141,78,1,14810,'2.99','2005-08-22 01:08:34','2006-02-15 22:12:51'),(2142,78,2,14862,'7.99','2005-08-22 02:51:41','2006-02-15 22:12:51'),(2143,78,2,16039,'2.99','2005-08-23 22:18:51','2006-02-15 22:12:51'),(2144,79,1,840,'4.99','2005-05-30 00:28:41','2006-02-15 22:12:51'),(2145,79,1,859,'2.99','2005-05-30 02:36:20','2006-02-15 22:12:51'),(2146,79,1,928,'2.99','2005-05-30 12:27:14','2006-02-15 22:12:51'),(2147,79,2,3096,'4.99','2005-06-20 16:17:56','2006-02-15 22:12:51'),(2148,79,2,3178,'2.99','2005-06-20 22:35:12','2006-02-15 22:12:51'),(2149,79,1,3641,'0.99','2005-07-06 07:17:09','2006-02-15 22:12:51'),(2150,79,1,3748,'2.99','2005-07-06 12:11:22','2006-02-15 22:12:51'),(2151,79,2,4049,'4.99','2005-07-07 03:34:53','2006-02-15 22:12:51'),(2152,79,1,4530,'4.99','2005-07-08 03:27:05','2006-02-15 22:12:51'),(2153,79,2,4736,'4.99','2005-07-08 13:22:55','2006-02-15 22:12:51'),(2154,79,2,5205,'2.99','2005-07-09 10:56:37','2006-02-15 22:12:51'),(2155,79,1,5555,'2.99','2005-07-10 03:08:55','2006-02-15 22:12:51'),(2156,79,2,6162,'5.99','2005-07-11 10:12:30','2006-02-15 22:12:51'),(2157,79,1,7220,'9.99','2005-07-27 09:35:54','2006-02-15 22:12:51'),(2158,79,1,8849,'2.99','2005-07-29 23:21:01','2006-02-15 22:12:51'),(2159,79,1,9814,'1.99','2005-07-31 11:29:46','2006-02-15 22:12:51'),(2160,79,2,9845,'6.99','2005-07-31 12:28:05','2006-02-15 22:12:51'),(2161,79,1,9989,'0.99','2005-07-31 17:22:39','2006-02-15 22:12:51'),(2162,79,1,10676,'2.99','2005-08-01 17:14:15','2006-02-15 22:12:51'),(2163,79,2,11641,'4.99','2005-08-17 04:45:39','2006-02-15 22:12:51'),(2164,79,2,13026,'2.99','2005-08-19 08:22:45','2006-02-15 22:12:51'),(2165,79,1,14179,'0.99','2005-08-21 03:14:27','2006-02-15 22:12:51'),(2166,80,1,2596,'2.99','2005-06-19 05:48:26','2006-02-15 22:12:51'),(2167,80,2,2805,'8.99','2005-06-19 19:29:17','2006-02-15 22:12:51'),(2168,80,1,3367,'3.99','2005-06-21 13:08:21','2006-02-15 22:12:51'),(2169,80,2,3623,'4.99','2005-07-06 06:05:23','2006-02-15 22:12:51'),(2170,80,2,4268,'8.99','2005-07-07 14:36:05','2006-02-15 22:12:51'),(2171,80,2,4299,'3.99','2005-07-07 16:33:48','2006-02-15 22:12:51'),(2172,80,1,4688,'5.99','2005-07-08 11:03:29','2006-02-15 22:12:51'),(2173,80,2,5420,'3.99','2005-07-09 20:48:42','2006-02-15 22:12:51'),(2174,80,2,5452,'4.99','2005-07-09 22:23:21','2006-02-15 22:12:51'),(2175,80,1,6199,'5.99','2005-07-11 12:16:03','2006-02-15 22:12:51'),(2176,80,2,6417,'6.99','2005-07-11 23:35:11','2006-02-15 22:12:51'),(2177,80,2,6707,'1.99','2005-07-12 13:07:55','2006-02-15 22:12:51'),(2178,80,2,7558,'0.99','2005-07-27 22:19:08','2006-02-15 22:12:51'),(2179,80,1,8509,'5.99','2005-07-29 09:38:19','2006-02-15 22:12:51'),(2180,80,1,8884,'6.99','2005-07-30 00:26:22','2006-02-15 22:12:51'),(2181,80,1,10313,'0.99','2005-08-01 04:29:29','2006-02-15 22:12:51'),(2182,80,1,10656,'6.99','2005-08-01 16:38:04','2006-02-15 22:12:51'),(2183,80,1,10690,'8.99','2005-08-01 18:05:54','2006-02-15 22:12:51'),(2184,80,2,11101,'5.99','2005-08-02 08:08:24','2006-02-15 22:12:51'),(2185,80,2,11839,'0.99','2005-08-17 13:08:45','2006-02-15 22:12:51'),(2186,80,1,11850,'1.99','2005-08-17 13:30:15','2006-02-15 22:12:51'),(2187,80,2,12468,'2.99','2005-08-18 11:41:47','2006-02-15 22:12:51'),(2188,80,1,13352,'4.99','2005-08-19 20:51:40','2006-02-15 22:12:51'),(2189,80,2,13395,'0.99','2005-08-19 22:05:40','2006-02-15 22:12:51'),(2190,80,1,13724,'4.99','2005-08-20 10:07:28','2006-02-15 22:12:51'),(2191,80,2,13851,'0.99','2005-08-20 14:44:22','2006-02-15 22:12:51'),(2192,80,1,14916,'0.99','2005-08-22 04:56:57','2006-02-15 22:12:52'),(2193,80,1,15648,'8.99','2005-08-23 08:27:57','2006-02-15 22:12:52'),(2194,80,1,16012,'5.99','2005-08-23 21:13:39','2006-02-15 22:12:52'),(2195,80,2,12457,'2.99','2006-02-14 15:16:03','2006-02-15 22:12:52'),(2196,81,1,289,'0.99','2005-05-26 20:01:09','2006-02-15 22:12:52'),(2197,81,1,2714,'1.99','2005-06-19 14:26:09','2006-02-15 22:12:52'),(2198,81,1,2854,'5.99','2005-06-19 23:11:48','2006-02-15 22:12:52'),(2199,81,1,3229,'4.99','2005-06-21 02:20:41','2006-02-15 22:12:52'),(2200,81,1,3879,'2.99','2005-07-06 18:31:20','2006-02-15 22:12:52'),(2201,81,2,4983,'9.99','2005-07-09 00:34:16','2006-02-15 22:12:52'),(2202,81,1,5468,'0.99','2005-07-09 23:06:09','2006-02-15 22:12:52'),(2203,81,2,7130,'4.99','2005-07-27 06:23:36','2006-02-15 22:12:52'),(2204,81,1,7709,'0.99','2005-07-28 04:22:14','2006-02-15 22:12:52'),(2205,81,2,9454,'3.99','2005-07-30 22:20:09','2006-02-15 22:12:52'),(2206,81,2,10456,'0.99','2005-08-01 09:17:21','2006-02-15 22:12:52'),(2207,81,1,11837,'5.99','2005-08-17 13:04:41','2006-02-15 22:12:52'),(2208,81,2,12181,'4.99','2005-08-18 01:28:18','2006-02-15 22:12:52'),(2209,81,2,13820,'5.99','2005-08-20 13:26:37','2006-02-15 22:12:52'),(2210,81,1,14128,'4.99','2005-08-21 01:35:58','2006-02-15 22:12:52'),(2211,81,1,14642,'3.99','2005-08-21 19:09:40','2006-02-15 22:12:52'),(2212,81,2,14748,'7.99','2005-08-21 23:02:02','2006-02-15 22:12:52'),(2213,81,1,15224,'5.99','2005-08-22 17:18:05','2006-02-15 22:12:52'),(2214,81,1,15602,'4.99','2005-08-23 06:41:07','2006-02-15 22:12:52'),(2215,81,1,15823,'4.99','2005-08-23 15:08:00','2006-02-15 22:12:52'),(2216,81,1,15858,'2.99','2005-08-23 16:07:15','2006-02-15 22:12:52'),(2217,81,2,15884,'1.99','2005-08-23 16:45:28','2006-02-15 22:12:52'),(2218,82,2,145,'2.99','2005-05-25 23:59:03','2006-02-15 22:12:52'),(2219,82,2,288,'8.99','2005-05-26 19:47:49','2006-02-15 22:12:52'),(2220,82,1,1438,'0.99','2005-06-15 18:38:51','2006-02-15 22:12:52'),(2221,82,2,1570,'0.99','2005-06-16 03:21:33','2006-02-15 22:12:52'),(2222,82,1,2506,'8.99','2005-06-18 23:29:53','2006-02-15 22:12:52'),(2223,82,1,2819,'8.99','2005-06-19 20:13:33','2006-02-15 22:12:52'),(2224,82,2,3332,'0.99','2005-06-21 09:55:12','2006-02-15 22:12:52'),(2225,82,1,3680,'2.99','2005-07-06 09:16:10','2006-02-15 22:12:52'),(2226,82,1,4598,'6.99','2005-07-08 06:46:26','2006-02-15 22:12:52'),(2227,82,2,5746,'4.99','2005-07-10 12:15:12','2006-02-15 22:12:52'),(2228,82,2,6082,'6.99','2005-07-11 05:12:41','2006-02-15 22:12:52'),(2229,82,2,6708,'6.99','2005-07-12 13:10:55','2006-02-15 22:12:52'),(2230,82,2,7733,'9.99','2005-07-28 05:04:47','2006-02-15 22:12:52'),(2231,82,2,7873,'0.99','2005-07-28 10:19:46','2006-02-15 22:12:52'),(2232,82,1,8487,'4.99','2005-07-29 08:53:49','2006-02-15 22:12:52'),(2233,82,2,9277,'3.99','2005-07-30 15:13:45','2006-02-15 22:12:52'),(2234,82,1,9305,'8.99','2005-07-30 16:45:56','2006-02-15 22:12:52'),(2235,82,1,9447,'6.99','2005-07-30 21:54:22','2006-02-15 22:12:52'),(2236,82,1,11093,'4.99','2005-08-02 07:59:49','2006-02-15 22:12:52'),(2237,82,2,11688,'5.99','2005-08-17 06:41:58','2006-02-15 22:12:52'),(2238,82,1,12470,'3.99','2005-08-18 11:55:42','2006-02-15 22:12:52'),(2239,82,1,13032,'0.99','2005-08-19 08:31:50','2006-02-15 22:12:52'),(2240,82,2,13847,'6.99','2005-08-20 14:33:59','2006-02-15 22:12:52'),(2241,82,2,14518,'0.99','2005-08-21 14:58:58','2006-02-15 22:12:52'),(2242,82,2,14892,'4.99','2005-08-22 04:15:05','2006-02-15 22:12:52'),(2243,82,2,15516,'3.99','2005-08-23 03:12:54','2006-02-15 22:12:52'),(2244,83,2,222,'0.99','2005-05-26 10:14:38','2006-02-15 22:12:52'),(2245,83,2,950,'0.99','2005-05-30 16:06:08','2006-02-15 22:12:52'),(2246,83,2,989,'2.99','2005-05-30 23:11:51','2006-02-15 22:12:52'),(2247,83,1,1354,'5.99','2005-06-15 13:13:49','2006-02-15 22:12:52'),(2248,83,1,1591,'5.99','2005-06-16 05:12:37','2006-02-15 22:12:52'),(2249,83,2,1617,'3.99','2005-06-16 07:06:06','2006-02-15 22:12:52'),(2250,83,2,3230,'4.99','2005-06-21 02:23:16','2006-02-15 22:12:52'),(2251,83,2,3722,'6.99','2005-07-06 11:10:27','2006-02-15 22:12:52'),(2252,83,1,3754,'2.99','2005-07-06 12:35:44','2006-02-15 22:12:52'),(2253,83,1,5218,'0.99','2005-07-09 11:57:12','2006-02-15 22:12:52'),(2254,83,2,5394,'6.99','2005-07-09 19:36:15','2006-02-15 22:12:52'),(2255,83,2,6194,'2.99','2005-07-11 11:51:00','2006-02-15 22:12:52'),(2256,83,2,6861,'2.99','2005-07-12 19:56:52','2006-02-15 22:12:52'),(2257,83,2,7721,'0.99','2005-07-28 04:42:58','2006-02-15 22:12:52'),(2258,83,2,8729,'4.99','2005-07-29 18:23:02','2006-02-15 22:12:52'),(2259,83,1,9867,'1.99','2005-07-31 13:17:04','2006-02-15 22:12:53'),(2260,83,1,11408,'0.99','2005-08-02 19:25:13','2006-02-15 22:12:53'),(2261,83,1,11565,'5.99','2005-08-17 01:28:05','2006-02-15 22:12:53'),(2262,83,2,11777,'4.99','2005-08-17 10:27:19','2006-02-15 22:12:53'),(2263,83,1,12258,'4.99','2005-08-18 04:11:13','2006-02-15 22:12:53'),(2264,83,2,12985,'5.99','2005-08-19 07:08:05','2006-02-15 22:12:53'),(2265,83,1,13875,'4.99','2005-08-20 15:13:11','2006-02-15 22:12:53'),(2266,83,2,15498,'4.99','2005-08-23 02:33:27','2006-02-15 22:12:53'),(2267,83,2,15737,'5.99','2005-08-23 11:52:18','2006-02-15 22:12:53'),(2268,83,2,11563,'4.99','2006-02-14 15:16:03','2006-02-15 22:12:53'),(2269,84,2,408,'0.99','2005-05-27 13:57:39','2006-02-15 22:12:53'),(2270,84,1,739,'6.99','2005-05-29 08:28:18','2006-02-15 22:12:53'),(2271,84,1,834,'4.99','2005-05-29 23:24:30','2006-02-15 22:12:53'),(2272,84,2,1195,'0.99','2005-06-15 01:37:38','2006-02-15 22:12:53'),(2273,84,2,1320,'4.99','2005-06-15 10:42:13','2006-02-15 22:12:53'),(2274,84,2,1815,'0.99','2005-06-16 21:16:07','2006-02-15 22:12:53'),(2275,84,1,2012,'5.99','2005-06-17 11:57:15','2006-02-15 22:12:53'),(2276,84,2,2042,'0.99','2005-06-17 14:31:02','2006-02-15 22:12:53'),(2277,84,2,2409,'0.99','2005-06-18 16:53:33','2006-02-15 22:12:53'),(2278,84,2,4079,'6.99','2005-07-07 05:06:27','2006-02-15 22:12:53'),(2279,84,2,4838,'6.99','2005-07-08 18:11:00','2006-02-15 22:12:53'),(2280,84,1,5221,'5.99','2005-07-09 12:02:23','2006-02-15 22:12:53'),(2281,84,1,5237,'0.99','2005-07-09 12:56:58','2006-02-15 22:12:53'),(2282,84,1,5971,'5.99','2005-07-11 00:05:58','2006-02-15 22:12:53'),(2283,84,2,6259,'2.99','2005-07-11 15:25:52','2006-02-15 22:12:53'),(2284,84,2,6415,'9.99','2005-07-11 23:27:52','2006-02-15 22:12:53'),(2285,84,1,7854,'2.99','2005-07-28 09:42:31','2006-02-15 22:12:53'),(2286,84,2,8019,'4.99','2005-07-28 15:37:43','2006-02-15 22:12:53'),(2287,84,1,8654,'8.99','2005-07-29 15:04:27','2006-02-15 22:12:53'),(2288,84,2,9074,'2.99','2005-07-30 07:50:10','2006-02-15 22:12:53'),(2289,84,2,9680,'4.99','2005-07-31 06:41:46','2006-02-15 22:12:53'),(2290,84,2,10540,'0.99','2005-08-01 12:24:42','2006-02-15 22:12:53'),(2291,84,1,10872,'2.99','2005-08-02 00:27:50','2006-02-15 22:12:53'),(2292,84,2,11220,'4.99','2005-08-02 12:31:41','2006-02-15 22:12:53'),(2293,84,2,11424,'3.99','2005-08-02 19:57:42','2006-02-15 22:12:53'),(2294,84,2,11453,'7.99','2005-08-02 21:00:05','2006-02-15 22:12:53'),(2295,84,2,11899,'0.99','2005-08-17 15:29:12','2006-02-15 22:12:53'),(2296,84,2,11960,'4.99','2005-08-17 17:24:30','2006-02-15 22:12:53'),(2297,84,2,12364,'4.99','2005-08-18 07:55:09','2006-02-15 22:12:53'),(2298,84,2,13115,'2.99','2005-08-19 11:27:43','2006-02-15 22:12:53'),(2299,84,1,14330,'5.99','2005-08-21 08:29:20','2006-02-15 22:12:53'),(2300,84,1,15190,'4.99','2005-08-22 15:57:38','2006-02-15 22:12:53'),(2301,84,1,15255,'2.99','2005-08-22 18:16:50','2006-02-15 22:12:53'),(2302,85,1,690,'9.99','2005-05-29 00:54:53','2006-02-15 22:12:53'),(2303,85,2,908,'4.99','2005-05-30 10:38:37','2006-02-15 22:12:53'),(2304,85,1,1685,'1.99','2005-06-16 12:06:57','2006-02-15 22:12:53'),(2305,85,1,2131,'5.99','2005-06-17 21:02:25','2006-02-15 22:12:53'),(2306,85,2,2794,'0.99','2005-06-19 18:53:05','2006-02-15 22:12:53'),(2307,85,1,3165,'4.99','2005-06-20 21:29:17','2006-02-15 22:12:53'),(2308,85,1,3307,'1.99','2005-06-21 07:52:30','2006-02-15 22:12:53'),(2309,85,2,3418,'3.99','2005-06-21 17:06:38','2006-02-15 22:12:53'),(2310,85,2,4451,'0.99','2005-07-07 23:29:54','2006-02-15 22:12:53'),(2311,85,1,4705,'2.99','2005-07-08 11:50:38','2006-02-15 22:12:53'),(2312,85,1,5051,'4.99','2005-07-09 03:57:53','2006-02-15 22:12:53'),(2313,85,1,5519,'0.99','2005-07-10 01:18:32','2006-02-15 22:12:53'),(2314,85,2,7906,'0.99','2005-07-28 11:31:42','2006-02-15 22:12:53'),(2315,85,2,9427,'7.99','2005-07-30 21:16:33','2006-02-15 22:12:53'),(2316,85,2,9957,'4.99','2005-07-31 16:03:55','2006-02-15 22:12:53'),(2317,85,1,9985,'2.99','2005-07-31 17:14:47','2006-02-15 22:12:53'),(2318,85,1,10328,'4.99','2005-08-01 04:56:10','2006-02-15 22:12:53'),(2319,85,1,10548,'0.99','2005-08-01 12:44:32','2006-02-15 22:12:53'),(2320,85,2,11067,'8.99','2005-08-02 07:03:24','2006-02-15 22:12:53'),(2321,85,2,12036,'0.99','2005-08-17 20:19:06','2006-02-15 22:12:53'),(2322,85,1,12456,'4.99','2005-08-18 11:21:51','2006-02-15 22:12:53'),(2323,85,1,13727,'3.99','2005-08-20 10:08:53','2006-02-15 22:12:53'),(2324,85,2,13733,'0.99','2005-08-20 10:25:12','2006-02-15 22:12:53'),(2325,86,1,66,'1.99','2005-05-25 09:35:12','2006-02-15 22:12:53'),(2326,86,2,1640,'4.99','2005-06-16 08:35:39','2006-02-15 22:12:54'),(2327,86,2,1822,'0.99','2005-06-16 21:43:45','2006-02-15 22:12:54'),(2328,86,2,1924,'2.99','2005-06-17 06:13:34','2006-02-15 22:12:54'),(2329,86,1,2141,'4.99','2005-06-17 21:41:34','2006-02-15 22:12:54'),(2330,86,1,2518,'4.99','2005-06-19 00:16:23','2006-02-15 22:12:54'),(2331,86,1,3207,'0.99','2005-06-21 00:43:16','2006-02-15 22:12:54'),(2332,86,2,3270,'4.99','2005-06-21 05:07:31','2006-02-15 22:12:54'),(2333,86,1,3611,'0.99','2005-07-06 05:37:18','2006-02-15 22:12:54'),(2334,86,2,3945,'4.99','2005-07-06 21:35:00','2006-02-15 22:12:54'),(2335,86,1,4235,'2.99','2005-07-07 13:05:52','2006-02-15 22:12:54'),(2336,86,1,4571,'9.99','2005-07-08 05:34:41','2006-02-15 22:12:54'),(2337,86,2,5295,'0.99','2005-07-09 15:25:06','2006-02-15 22:12:54'),(2338,86,1,5752,'8.99','2005-07-10 12:27:38','2006-02-15 22:12:54'),(2339,86,2,6872,'7.99','2005-07-12 20:15:04','2006-02-15 22:12:54'),(2340,86,1,7231,'2.99','2005-07-27 10:01:51','2006-02-15 22:12:54'),(2341,86,1,7874,'10.99','2005-07-28 10:21:52','2006-02-15 22:12:54'),(2342,86,2,8803,'5.99','2005-07-29 21:26:24','2006-02-15 22:12:54'),(2343,86,1,8850,'2.99','2005-07-29 23:24:20','2006-02-15 22:12:54'),(2344,86,2,9376,'4.99','2005-07-30 19:11:49','2006-02-15 22:12:54'),(2345,86,2,10252,'8.99','2005-08-01 02:39:39','2006-02-15 22:12:54'),(2346,86,2,10536,'4.99','2005-08-01 12:21:53','2006-02-15 22:12:54'),(2347,86,2,10584,'6.99','2005-08-01 13:58:47','2006-02-15 22:12:54'),(2348,86,2,11916,'0.99','2005-08-17 16:05:51','2006-02-15 22:12:54'),(2349,86,1,12198,'2.99','2005-08-18 02:09:20','2006-02-15 22:12:54'),(2350,86,2,12870,'3.99','2005-08-19 02:54:38','2006-02-15 22:12:54'),(2351,86,2,13338,'4.99','2005-08-19 20:09:59','2006-02-15 22:12:54'),(2352,86,1,13535,'4.99','2005-08-20 03:30:25','2006-02-15 22:12:54'),(2353,86,1,13874,'2.99','2005-08-20 15:11:48','2006-02-15 22:12:54'),(2354,86,2,14122,'1.99','2005-08-21 01:29:01','2006-02-15 22:12:54'),(2355,86,2,15099,'4.99','2005-08-22 11:49:16','2006-02-15 22:12:54'),(2356,86,1,15715,'1.99','2005-08-23 10:57:40','2006-02-15 22:12:54'),(2357,86,2,15940,'5.99','2005-08-23 18:45:06','2006-02-15 22:12:54'),(2358,87,2,451,'4.99','2005-05-27 19:27:54','2006-02-15 22:12:54'),(2359,87,1,674,'2.99','2005-05-28 22:11:35','2006-02-15 22:12:54'),(2360,87,2,1580,'4.99','2005-06-16 04:12:25','2006-02-15 22:12:54'),(2361,87,1,1904,'2.99','2005-06-17 04:45:41','2006-02-15 22:12:54'),(2362,87,2,2408,'2.99','2005-06-18 16:50:44','2006-02-15 22:12:54'),(2363,87,1,2516,'4.99','2005-06-19 00:03:28','2006-02-15 22:12:54'),(2364,87,2,3122,'9.99','2005-06-20 18:25:57','2006-02-15 22:12:54'),(2365,87,1,5084,'7.99','2005-07-09 05:33:27','2006-02-15 22:12:54'),(2366,87,1,5628,'3.99','2005-07-10 05:56:40','2006-02-15 22:12:54'),(2367,87,2,5700,'4.99','2005-07-10 09:49:42','2006-02-15 22:12:54'),(2368,87,1,6638,'4.99','2005-07-12 09:58:02','2006-02-15 22:12:54'),(2369,87,2,7599,'2.99','2005-07-27 23:38:46','2006-02-15 22:12:54'),(2370,87,2,8187,'7.99','2005-07-28 22:33:53','2006-02-15 22:12:54'),(2371,87,1,8286,'5.99','2005-07-29 02:02:46','2006-02-15 22:12:54'),(2372,87,2,8323,'4.99','2005-07-29 03:52:59','2006-02-15 22:12:54'),(2373,87,2,9060,'0.99','2005-07-30 07:20:36','2006-02-15 22:12:54'),(2374,87,1,9348,'2.99','2005-07-30 18:17:09','2006-02-15 22:12:54'),(2375,87,2,9364,'8.99','2005-07-30 18:44:44','2006-02-15 22:12:54'),(2376,87,2,10205,'4.99','2005-08-01 00:48:24','2006-02-15 22:12:54'),(2377,87,1,10387,'4.99','2005-08-01 06:42:31','2006-02-15 22:12:54'),(2378,87,1,12232,'0.99','2005-08-18 03:14:14','2006-02-15 22:12:54'),(2379,87,1,12257,'8.99','2005-08-18 04:11:03','2006-02-15 22:12:54'),(2380,87,1,12264,'5.99','2005-08-18 04:17:33','2006-02-15 22:12:54'),(2381,87,1,13479,'0.99','2005-08-20 01:09:11','2006-02-15 22:12:54'),(2382,87,1,13906,'0.99','2005-08-20 16:16:03','2006-02-15 22:12:54'),(2383,87,2,14024,'10.99','2005-08-20 21:13:58','2006-02-15 22:12:54'),(2384,87,1,14566,'2.99','2005-08-21 16:25:05','2006-02-15 22:12:54'),(2385,87,1,15876,'2.99','2005-08-23 16:32:10','2006-02-15 22:12:54'),(2386,87,2,15890,'4.99','2005-08-23 16:58:12','2006-02-15 22:12:54'),(2387,87,2,12719,'4.99','2006-02-14 15:16:03','2006-02-15 22:12:54'),(2388,88,2,36,'2.99','2005-05-25 04:36:26','2006-02-15 22:12:54'),(2389,88,1,1433,'2.99','2005-06-15 18:30:00','2006-02-15 22:12:54'),(2390,88,1,2483,'7.99','2005-06-18 21:22:23','2006-02-15 22:12:54'),(2391,88,1,2878,'2.99','2005-06-20 01:09:14','2006-02-15 22:12:55'),(2392,88,2,3524,'0.99','2005-07-06 01:01:51','2006-02-15 22:12:55'),(2393,88,2,3620,'0.99','2005-07-06 06:01:50','2006-02-15 22:12:55'),(2394,88,2,3673,'5.99','2005-07-06 09:02:09','2006-02-15 22:12:55'),(2395,88,1,3846,'5.99','2005-07-06 16:43:10','2006-02-15 22:12:55'),(2396,88,1,6643,'1.99','2005-07-12 10:39:22','2006-02-15 22:12:55'),(2397,88,1,6916,'4.99','2005-07-12 22:29:18','2006-02-15 22:12:55'),(2398,88,1,7088,'5.99','2005-07-27 04:42:28','2006-02-15 22:12:55'),(2399,88,1,7621,'8.99','2005-07-28 00:34:06','2006-02-15 22:12:55'),(2400,88,1,8296,'2.99','2005-07-29 02:43:25','2006-02-15 22:12:55'),(2401,88,2,8526,'2.99','2005-07-29 10:20:48','2006-02-15 22:12:55'),(2402,88,1,8692,'2.99','2005-07-29 16:43:39','2006-02-15 22:12:55'),(2403,88,1,10424,'0.99','2005-08-01 08:22:54','2006-02-15 22:12:55'),(2404,88,1,11056,'6.99','2005-08-02 06:36:27','2006-02-15 22:12:55'),(2405,88,2,14097,'2.99','2005-08-21 00:28:48','2006-02-15 22:12:55'),(2406,88,2,14827,'5.99','2005-08-22 01:32:32','2006-02-15 22:12:55'),(2407,88,2,15098,'3.99','2005-08-22 11:48:19','2006-02-15 22:12:55'),(2408,88,1,15898,'4.99','2005-08-23 17:13:01','2006-02-15 22:12:55'),(2409,89,2,141,'2.99','2005-05-25 23:34:53','2006-02-15 22:12:55'),(2410,89,2,588,'0.99','2005-05-28 12:08:37','2006-02-15 22:12:55'),(2411,89,1,740,'5.99','2005-05-29 08:30:36','2006-02-15 22:12:55'),(2412,89,1,1252,'8.99','2005-06-15 06:05:18','2006-02-15 22:12:55'),(2413,89,2,1407,'7.99','2005-06-15 16:45:07','2006-02-15 22:12:55'),(2414,89,1,1948,'4.99','2005-06-17 08:06:53','2006-02-15 22:12:55'),(2415,89,1,2523,'0.99','2005-06-19 00:45:56','2006-02-15 22:12:55'),(2416,89,1,2835,'7.99','2005-06-19 21:44:11','2006-02-15 22:12:55'),(2417,89,2,4152,'4.99','2005-07-07 08:50:33','2006-02-15 22:12:55'),(2418,89,1,4488,'0.99','2005-07-08 01:22:23','2006-02-15 22:12:55'),(2419,89,1,4764,'8.99','2005-07-08 15:01:25','2006-02-15 22:12:55'),(2420,89,2,5144,'7.99','2005-07-09 08:09:53','2006-02-15 22:12:55'),(2421,89,2,5436,'2.99','2005-07-09 21:31:11','2006-02-15 22:12:55'),(2422,89,1,5483,'2.99','2005-07-09 23:54:09','2006-02-15 22:12:55'),(2423,89,1,6772,'2.99','2005-07-12 15:55:35','2006-02-15 22:12:55'),(2424,89,2,7370,'7.99','2005-07-27 15:15:53','2006-02-15 22:12:55'),(2425,89,2,7729,'4.99','2005-07-28 04:57:57','2006-02-15 22:12:55'),(2426,89,2,7995,'4.99','2005-07-28 15:00:09','2006-02-15 22:12:55'),(2427,89,1,8003,'2.99','2005-07-28 15:11:27','2006-02-15 22:12:55'),(2428,89,2,8070,'2.99','2005-07-28 17:26:56','2006-02-15 22:12:55'),(2429,89,2,8972,'0.99','2005-07-30 04:06:25','2006-02-15 22:12:55'),(2430,89,1,9328,'2.99','2005-07-30 17:32:11','2006-02-15 22:12:55'),(2431,89,2,9646,'2.99','2005-07-31 05:43:28','2006-02-15 22:12:55'),(2432,89,2,9767,'0.99','2005-07-31 09:46:49','2006-02-15 22:12:55'),(2433,89,2,10164,'4.99','2005-07-31 23:17:57','2006-02-15 22:12:55'),(2434,89,2,10806,'4.99','2005-08-01 22:25:29','2006-02-15 22:12:55'),(2435,89,1,11090,'3.99','2005-08-02 07:56:40','2006-02-15 22:12:55'),(2436,89,1,12118,'3.99','2005-08-17 23:14:25','2006-02-15 22:12:55'),(2437,89,2,12431,'2.99','2005-08-18 10:34:59','2006-02-15 22:12:55'),(2438,89,1,12756,'2.99','2005-08-18 22:52:13','2006-02-15 22:12:55'),(2439,89,1,13823,'2.99','2005-08-20 13:42:10','2006-02-15 22:12:55'),(2440,89,1,15845,'2.99','2005-08-23 15:38:34','2006-02-15 22:12:55'),(2441,90,2,2033,'0.99','2005-06-17 13:24:43','2006-02-15 22:12:55'),(2442,90,2,2584,'6.99','2005-06-19 05:02:36','2006-02-15 22:12:55'),(2443,90,2,3132,'0.99','2005-06-20 19:09:46','2006-02-15 22:12:55'),(2444,90,2,3729,'3.99','2005-07-06 11:30:29','2006-02-15 22:12:55'),(2445,90,2,4371,'4.99','2005-07-07 20:06:45','2006-02-15 22:12:55'),(2446,90,2,5272,'0.99','2005-07-09 14:26:01','2006-02-15 22:12:55'),(2447,90,2,5539,'3.99','2005-07-10 02:42:58','2006-02-15 22:12:55'),(2448,90,2,7035,'5.99','2005-07-27 03:06:09','2006-02-15 22:12:55'),(2449,90,2,7058,'1.99','2005-07-27 03:50:46','2006-02-15 22:12:55'),(2450,90,1,7428,'5.99','2005-07-27 17:21:52','2006-02-15 22:12:55'),(2451,90,1,7946,'6.99','2005-07-28 13:01:22','2006-02-15 22:12:55'),(2452,90,1,8024,'2.99','2005-07-28 15:55:40','2006-02-15 22:12:55'),(2453,90,1,8408,'0.99','2005-07-29 06:40:40','2006-02-15 22:12:56'),(2454,90,2,8870,'9.99','2005-07-30 00:08:08','2006-02-15 22:12:56'),(2455,90,2,9337,'2.99','2005-07-30 18:02:25','2006-02-15 22:12:56'),(2456,90,2,10206,'7.99','2005-08-01 00:52:40','2006-02-15 22:12:56'),(2457,90,1,10722,'4.99','2005-08-01 19:07:08','2006-02-15 22:12:56'),(2458,90,1,10835,'4.99','2005-08-01 23:28:49','2006-02-15 22:12:56'),(2459,90,2,11231,'4.99','2005-08-02 13:02:11','2006-02-15 22:12:56'),(2460,90,1,11516,'0.99','2005-08-16 23:54:47','2006-02-15 22:12:56'),(2461,90,2,12019,'0.99','2005-08-17 19:48:55','2006-02-15 22:12:56'),(2462,90,1,12788,'2.99','2005-08-19 00:15:09','2006-02-15 22:12:56'),(2463,90,1,13051,'4.99','2005-08-19 09:31:33','2006-02-15 22:12:56'),(2464,90,1,14608,'1.99','2005-08-21 17:57:22','2006-02-15 22:12:56'),(2465,90,1,14807,'4.99','2005-08-22 00:57:43','2006-02-15 22:12:56'),(2466,90,2,15061,'0.99','2005-08-22 10:29:44','2006-02-15 22:12:56'),(2467,90,2,15217,'0.99','2005-08-22 16:58:31','2006-02-15 22:12:56'),(2468,90,1,15674,'7.99','2005-08-23 09:16:39','2006-02-15 22:12:56'),(2469,91,2,216,'5.99','2005-05-26 09:17:43','2006-02-15 22:12:56'),(2470,91,1,1299,'4.99','2005-06-15 09:34:50','2006-02-15 22:12:56'),(2471,91,1,2457,'3.99','2005-06-18 19:38:20','2006-02-15 22:12:56'),(2472,91,1,2908,'0.99','2005-06-20 03:16:52','2006-02-15 22:12:56'),(2473,91,2,3384,'2.99','2005-06-21 14:07:35','2006-02-15 22:12:56'),(2474,91,2,3802,'0.99','2005-07-06 15:06:09','2006-02-15 22:12:56'),(2475,91,2,4103,'2.99','2005-07-07 06:25:28','2006-02-15 22:12:56'),(2476,91,1,4245,'4.99','2005-07-07 13:48:33','2006-02-15 22:12:56'),(2477,91,1,4321,'4.99','2005-07-07 17:52:38','2006-02-15 22:12:56'),(2478,91,1,4673,'4.99','2005-07-08 10:16:00','2006-02-15 22:12:56'),(2479,91,2,5025,'4.99','2005-07-09 02:28:24','2006-02-15 22:12:56'),(2480,91,2,5187,'1.99','2005-07-09 10:19:51','2006-02-15 22:12:56'),(2481,91,2,5701,'0.99','2005-07-10 09:56:24','2006-02-15 22:12:56'),(2482,91,1,6078,'4.99','2005-07-11 05:06:52','2006-02-15 22:12:56'),(2483,91,1,6178,'2.99','2005-07-11 10:59:09','2006-02-15 22:12:56'),(2484,91,2,6860,'2.99','2005-07-12 19:54:17','2006-02-15 22:12:56'),(2485,91,2,7143,'0.99','2005-07-27 06:56:31','2006-02-15 22:12:56'),(2486,91,2,7637,'0.99','2005-07-28 01:12:25','2006-02-15 22:12:56'),(2487,91,1,7966,'4.99','2005-07-28 13:53:54','2006-02-15 22:12:56'),(2488,91,1,8313,'0.99','2005-07-29 03:34:21','2006-02-15 22:12:56'),(2489,91,2,8873,'0.99','2005-07-30 00:14:32','2006-02-15 22:12:56'),(2490,91,2,9228,'2.99','2005-07-30 13:36:57','2006-02-15 22:12:56'),(2491,91,2,9396,'4.99','2005-07-30 20:07:24','2006-02-15 22:12:56'),(2492,91,2,10008,'4.99','2005-07-31 17:59:36','2006-02-15 22:12:56'),(2493,91,2,11418,'0.99','2005-08-02 19:45:33','2006-02-15 22:12:56'),(2494,91,1,12847,'0.99','2005-08-19 02:04:07','2006-02-15 22:12:56'),(2495,91,2,13222,'4.99','2005-08-19 15:47:58','2006-02-15 22:12:56'),(2496,91,2,13309,'4.99','2005-08-19 19:04:00','2006-02-15 22:12:56'),(2497,91,1,14132,'0.99','2005-08-21 01:43:58','2006-02-15 22:12:56'),(2498,91,2,14888,'2.99','2005-08-22 04:09:18','2006-02-15 22:12:56'),(2499,91,1,15122,'1.99','2005-08-22 12:47:45','2006-02-15 22:12:56'),(2500,91,1,15341,'4.99','2005-08-22 20:56:31','2006-02-15 22:12:56'),(2501,91,1,15707,'1.99','2005-08-23 10:35:45','2006-02-15 22:12:56'),(2502,91,2,15886,'4.99','2005-08-23 16:50:53','2006-02-15 22:12:56'),(2503,91,1,12902,'4.99','2006-02-14 15:16:03','2006-02-15 22:12:56'),(2504,92,1,271,'5.99','2005-05-26 16:22:01','2006-02-15 22:12:56'),(2505,92,1,456,'4.99','2005-05-27 19:50:06','2006-02-15 22:12:56'),(2506,92,2,2084,'4.99','2005-06-17 17:17:19','2006-02-15 22:12:56'),(2507,92,1,2521,'0.99','2005-06-19 00:41:08','2006-02-15 22:12:56'),(2508,92,1,2740,'8.99','2005-06-19 15:59:04','2006-02-15 22:12:56'),(2509,92,2,3595,'8.99','2005-07-06 04:59:49','2006-02-15 22:12:56'),(2510,92,2,3716,'7.99','2005-07-06 10:52:32','2006-02-15 22:12:56'),(2511,92,1,4360,'2.99','2005-07-07 19:31:12','2006-02-15 22:12:56'),(2512,92,2,4828,'4.99','2005-07-08 17:52:29','2006-02-15 22:12:56'),(2513,92,2,5497,'5.99','2005-07-10 00:23:23','2006-02-15 22:12:56'),(2514,92,2,5620,'7.99','2005-07-10 05:30:52','2006-02-15 22:12:56'),(2515,92,1,5792,'6.99','2005-07-10 14:22:19','2006-02-15 22:12:57'),(2516,92,2,5919,'2.99','2005-07-10 21:32:14','2006-02-15 22:12:57'),(2517,92,1,6158,'0.99','2005-07-11 09:50:24','2006-02-15 22:12:57'),(2518,92,2,6277,'6.99','2005-07-11 16:19:01','2006-02-15 22:12:57'),(2519,92,1,7073,'4.99','2005-07-27 04:03:26','2006-02-15 22:12:57'),(2520,92,1,7832,'1.99','2005-07-28 08:46:11','2006-02-15 22:12:57'),(2521,92,1,8494,'4.99','2005-07-29 09:04:32','2006-02-15 22:12:57'),(2522,92,1,8938,'4.99','2005-07-30 02:56:08','2006-02-15 22:12:57'),(2523,92,1,9240,'4.99','2005-07-30 13:57:54','2006-02-15 22:12:57'),(2524,92,2,11203,'4.99','2005-08-02 11:52:41','2006-02-15 22:12:57'),(2525,92,2,11245,'2.99','2005-08-02 13:33:50','2006-02-15 22:12:57'),(2526,92,1,11849,'4.99','2005-08-17 13:24:55','2006-02-15 22:12:57'),(2527,92,2,13020,'5.99','2005-08-19 08:07:50','2006-02-15 22:12:57'),(2528,92,1,13495,'0.99','2005-08-20 01:40:25','2006-02-15 22:12:57'),(2529,92,1,13620,'2.99','2005-08-20 06:41:27','2006-02-15 22:12:57'),(2530,92,1,14798,'0.99','2005-08-22 00:44:08','2006-02-15 22:12:57'),(2531,92,2,14998,'4.99','2005-08-22 07:53:14','2006-02-15 22:12:57'),(2532,93,2,113,'2.99','2005-05-25 19:07:40','2006-02-15 22:12:57'),(2533,93,2,420,'6.99','2005-05-27 15:19:38','2006-02-15 22:12:57'),(2534,93,1,1025,'4.99','2005-05-31 03:41:37','2006-02-15 22:12:57'),(2535,93,2,2256,'4.99','2005-06-18 05:21:56','2006-02-15 22:12:57'),(2536,93,1,3109,'0.99','2005-06-20 17:33:55','2006-02-15 22:12:57'),(2537,93,1,4733,'2.99','2005-07-08 13:12:07','2006-02-15 22:12:57'),(2538,93,2,5130,'4.99','2005-07-09 07:29:45','2006-02-15 22:12:57'),(2539,93,2,6287,'4.99','2005-07-11 17:00:04','2006-02-15 22:12:57'),(2540,93,1,6586,'4.99','2005-07-12 06:56:24','2006-02-15 22:12:57'),(2541,93,1,7301,'2.99','2005-07-27 12:50:23','2006-02-15 22:12:57'),(2542,93,1,8233,'0.99','2005-07-29 00:16:23','2006-02-15 22:12:57'),(2543,93,2,11271,'5.99','2005-08-02 14:18:22','2006-02-15 22:12:57'),(2544,93,1,12704,'4.99','2005-08-18 20:43:00','2006-02-15 22:12:57'),(2545,93,1,13555,'2.99','2005-08-20 04:09:50','2006-02-15 22:12:57'),(2546,93,2,13904,'2.99','2005-08-20 16:11:34','2006-02-15 22:12:57'),(2547,93,1,13950,'8.99','2005-08-20 17:58:00','2006-02-15 22:12:57'),(2548,93,1,13993,'4.99','2005-08-20 19:32:29','2006-02-15 22:12:57'),(2549,93,1,14195,'0.99','2005-08-21 03:40:35','2006-02-15 22:12:57'),(2550,93,2,14333,'4.99','2005-08-21 08:31:03','2006-02-15 22:12:57'),(2551,93,2,15324,'5.99','2005-08-22 20:23:13','2006-02-15 22:12:57'),(2552,93,2,15631,'2.99','2005-08-23 07:30:23','2006-02-15 22:12:57'),(2553,93,1,15696,'0.99','2005-08-23 10:04:17','2006-02-15 22:12:57'),(2554,93,2,15913,'1.99','2005-08-23 17:48:30','2006-02-15 22:12:57'),(2555,94,1,127,'2.99','2005-05-25 21:10:40','2006-02-15 22:12:57'),(2556,94,2,629,'4.99','2005-05-28 17:19:15','2006-02-15 22:12:57'),(2557,94,2,1213,'2.99','2005-06-15 03:14:05','2006-02-15 22:12:57'),(2558,94,1,1367,'4.99','2005-06-15 14:25:17','2006-02-15 22:12:57'),(2559,94,2,1734,'3.99','2005-06-16 15:49:30','2006-02-15 22:12:57'),(2560,94,2,2620,'4.99','2005-06-19 08:06:29','2006-02-15 22:12:57'),(2561,94,1,2816,'2.99','2005-06-19 20:04:23','2006-02-15 22:12:57'),(2562,94,2,4044,'0.99','2005-07-07 03:22:23','2006-02-15 22:12:57'),(2563,94,1,4287,'8.99','2005-07-07 15:37:31','2006-02-15 22:12:57'),(2564,94,2,5719,'4.99','2005-07-10 11:07:40','2006-02-15 22:12:57'),(2565,94,2,5970,'4.99','2005-07-11 00:04:50','2006-02-15 22:12:57'),(2566,94,2,7809,'2.99','2005-07-28 07:59:46','2006-02-15 22:12:57'),(2567,94,2,7979,'0.99','2005-07-28 14:16:30','2006-02-15 22:12:57'),(2568,94,1,9605,'4.99','2005-07-31 03:50:07','2006-02-15 22:12:57'),(2569,94,1,12316,'2.99','2005-08-18 06:16:09','2006-02-15 22:12:57'),(2570,94,1,13786,'5.99','2005-08-20 12:13:24','2006-02-15 22:12:57'),(2571,94,2,14804,'1.99','2005-08-22 00:51:25','2006-02-15 22:12:57'),(2572,94,1,14865,'4.99','2005-08-22 03:06:38','2006-02-15 22:12:57'),(2573,94,1,14978,'0.99','2005-08-22 07:13:15','2006-02-15 22:12:57'),(2574,94,1,15693,'0.99','2005-08-23 10:00:24','2006-02-15 22:12:58'),(2575,94,1,15371,'4.99','2006-02-14 15:16:03','2006-02-15 22:12:58'),(2576,95,1,490,'4.99','2005-05-28 00:09:56','2006-02-15 22:12:58'),(2577,95,2,1174,'2.99','2005-06-15 00:12:51','2006-02-15 22:12:58'),(2578,95,2,1261,'1.99','2005-06-15 06:52:57','2006-02-15 22:12:58'),(2579,95,2,3056,'2.99','2005-06-20 13:20:58','2006-02-15 22:12:58'),(2580,95,2,3426,'0.99','2005-06-21 18:12:10','2006-02-15 22:12:58'),(2581,95,1,3633,'1.99','2005-07-06 06:43:26','2006-02-15 22:12:58'),(2582,95,2,4000,'4.99','2005-07-06 23:58:37','2006-02-15 22:12:58'),(2583,95,1,4835,'5.99','2005-07-08 18:08:13','2006-02-15 22:12:58'),(2584,95,2,7245,'5.99','2005-07-27 10:29:06','2006-02-15 22:12:58'),(2585,95,1,7471,'4.99','2005-07-27 19:02:19','2006-02-15 22:12:58'),(2586,95,1,9222,'6.99','2005-07-30 13:21:08','2006-02-15 22:12:58'),(2587,95,1,9695,'6.99','2005-07-31 07:13:30','2006-02-15 22:12:58'),(2588,95,1,9951,'4.99','2005-07-31 15:51:16','2006-02-15 22:12:58'),(2589,95,1,10130,'0.99','2005-07-31 21:44:30','2006-02-15 22:12:58'),(2590,95,2,10446,'0.99','2005-08-01 09:02:17','2006-02-15 22:12:58'),(2591,95,2,12351,'5.99','2005-08-18 07:32:12','2006-02-15 22:12:58'),(2592,95,2,13516,'7.99','2005-08-20 02:32:45','2006-02-15 22:12:58'),(2593,95,2,14203,'4.99','2005-08-21 03:51:52','2006-02-15 22:12:58'),(2594,96,1,1266,'3.99','2005-06-15 07:11:39','2006-02-15 22:12:58'),(2595,96,2,1413,'7.99','2005-06-15 17:25:07','2006-02-15 22:12:58'),(2596,96,2,1437,'0.99','2005-06-15 18:37:04','2006-02-15 22:12:58'),(2597,96,1,2372,'0.99','2005-06-18 14:37:37','2006-02-15 22:12:58'),(2598,96,2,2973,'5.99','2005-06-20 07:59:27','2006-02-15 22:12:58'),(2599,96,1,3308,'0.99','2005-06-21 07:58:36','2006-02-15 22:12:58'),(2600,96,2,3463,'0.99','2005-06-21 22:00:00','2006-02-15 22:12:58'),(2601,96,1,3720,'2.99','2005-07-06 11:06:57','2006-02-15 22:12:58'),(2602,96,2,3742,'2.99','2005-07-06 12:01:38','2006-02-15 22:12:58'),(2603,96,1,4961,'4.99','2005-07-08 23:35:53','2006-02-15 22:12:58'),(2604,96,1,5558,'0.99','2005-07-10 03:12:08','2006-02-15 22:12:58'),(2605,96,1,5678,'4.99','2005-07-10 08:42:42','2006-02-15 22:12:58'),(2606,96,1,5696,'2.99','2005-07-10 09:44:32','2006-02-15 22:12:58'),(2607,96,2,8125,'4.99','2005-07-28 19:31:48','2006-02-15 22:12:58'),(2608,96,1,8437,'6.99','2005-07-29 07:23:43','2006-02-15 22:12:58'),(2609,96,2,9093,'3.99','2005-07-30 08:33:24','2006-02-15 22:12:58'),(2610,96,1,9315,'4.99','2005-07-30 17:05:29','2006-02-15 22:12:58'),(2611,96,1,9662,'3.99','2005-07-31 06:09:53','2006-02-15 22:12:58'),(2612,96,2,10031,'4.99','2005-07-31 18:40:15','2006-02-15 22:12:58'),(2613,96,2,11864,'4.99','2005-08-17 14:02:01','2006-02-15 22:12:58'),(2614,96,1,11984,'3.99','2005-08-17 18:16:30','2006-02-15 22:12:58'),(2615,96,1,12199,'4.99','2005-08-18 02:09:23','2006-02-15 22:12:58'),(2616,96,2,12525,'4.99','2005-08-18 13:48:31','2006-02-15 22:12:58'),(2617,96,1,13514,'0.99','2005-08-20 02:28:09','2006-02-15 22:12:58'),(2618,96,1,13855,'4.99','2005-08-20 14:48:55','2006-02-15 22:12:58'),(2619,96,1,14462,'3.99','2005-08-21 12:50:57','2006-02-15 22:12:58'),(2620,96,2,15989,'4.99','2005-08-23 20:24:36','2006-02-15 22:12:58'),(2621,97,2,2083,'2.99','2005-06-17 17:14:00','2006-02-15 22:12:58'),(2622,97,2,2790,'4.99','2005-06-19 18:49:45','2006-02-15 22:12:58'),(2623,97,1,3459,'0.99','2005-06-21 21:45:47','2006-02-15 22:12:59'),(2624,97,1,3540,'2.99','2005-07-06 01:47:20','2006-02-15 22:12:59'),(2625,97,2,3565,'0.99','2005-07-06 03:02:58','2006-02-15 22:12:59'),(2626,97,2,3818,'4.99','2005-07-06 15:33:31','2006-02-15 22:12:59'),(2627,97,2,4312,'4.99','2005-07-07 17:34:59','2006-02-15 22:12:59'),(2628,97,1,4508,'4.99','2005-07-08 02:28:41','2006-02-15 22:12:59'),(2629,97,2,5454,'4.99','2005-07-09 22:24:25','2006-02-15 22:12:59'),(2630,97,1,6544,'0.99','2005-07-12 04:56:15','2006-02-15 22:12:59'),(2631,97,1,6726,'0.99','2005-07-12 13:48:14','2006-02-15 22:12:59'),(2632,97,2,7182,'5.99','2005-07-27 08:15:38','2006-02-15 22:12:59'),(2633,97,2,7924,'0.99','2005-07-28 12:08:53','2006-02-15 22:12:59'),(2634,97,2,8438,'2.99','2005-07-29 07:25:42','2006-02-15 22:12:59'),(2635,97,1,9591,'4.99','2005-07-31 03:19:28','2006-02-15 22:12:59'),(2636,97,1,10820,'2.99','2005-08-01 22:53:40','2006-02-15 22:12:59'),(2637,97,2,14323,'4.99','2005-08-21 08:08:43','2006-02-15 22:12:59'),(2638,97,1,15006,'0.99','2005-08-22 08:20:15','2006-02-15 22:12:59'),(2639,98,2,214,'3.99','2005-05-26 08:48:49','2006-02-15 22:12:59'),(2640,98,1,1362,'3.99','2005-06-15 13:53:32','2006-02-15 22:12:59'),(2641,98,2,1590,'5.99','2005-06-16 05:11:41','2006-02-15 22:12:59'),(2642,98,1,2213,'4.99','2005-06-18 02:36:47','2006-02-15 22:12:59'),(2643,98,1,2445,'0.99','2005-06-18 19:02:11','2006-02-15 22:12:59'),(2644,98,2,2601,'4.99','2005-06-19 06:09:44','2006-02-15 22:12:59'),(2645,98,2,3399,'4.99','2005-06-21 15:47:48','2006-02-15 22:12:59'),(2646,98,2,3682,'7.99','2005-07-06 09:22:48','2006-02-15 22:12:59'),(2647,98,1,4549,'4.99','2005-07-08 04:25:03','2006-02-15 22:12:59'),(2648,98,2,6951,'2.99','2005-07-26 23:47:31','2006-02-15 22:12:59'),(2649,98,2,7120,'3.99','2005-07-27 05:56:39','2006-02-15 22:12:59'),(2650,98,1,7530,'0.99','2005-07-27 21:18:58','2006-02-15 22:12:59'),(2651,98,1,8324,'5.99','2005-07-29 03:56:05','2006-02-15 22:12:59'),(2652,98,2,8622,'4.99','2005-07-29 13:53:28','2006-02-15 22:12:59'),(2653,98,2,8818,'5.99','2005-07-29 22:14:04','2006-02-15 22:12:59'),(2654,98,1,9753,'2.99','2005-07-31 09:22:38','2006-02-15 22:12:59'),(2655,98,2,10694,'3.99','2005-08-01 18:15:07','2006-02-15 22:12:59'),(2656,98,1,10925,'2.99','2005-08-02 02:24:38','2006-02-15 22:12:59'),(2657,98,2,11007,'0.99','2005-08-02 05:05:53','2006-02-15 22:12:59'),(2658,98,2,11200,'2.99','2005-08-02 11:48:36','2006-02-15 22:12:59'),(2659,98,1,11635,'5.99','2005-08-17 04:33:17','2006-02-15 22:12:59'),(2660,98,1,11730,'2.99','2005-08-17 08:22:00','2006-02-15 22:12:59'),(2661,98,2,12221,'5.99','2005-08-18 02:50:51','2006-02-15 22:12:59'),(2662,98,2,14459,'1.99','2005-08-21 12:48:08','2006-02-15 22:12:59'),(2663,98,1,15536,'7.99','2005-08-23 03:58:28','2006-02-15 22:12:59'),(2664,99,2,867,'0.99','2005-05-30 03:54:43','2006-02-15 22:12:59'),(2665,99,1,1858,'4.99','2005-06-17 01:13:11','2006-02-15 22:12:59'),(2666,99,1,2368,'2.99','2005-06-18 14:10:27','2006-02-15 22:12:59'),(2667,99,2,3780,'6.99','2005-07-06 13:52:02','2006-02-15 22:12:59'),(2668,99,2,4170,'2.99','2005-07-07 09:44:36','2006-02-15 22:12:59'),(2669,99,2,4344,'4.99','2005-07-07 18:50:47','2006-02-15 22:12:59'),(2670,99,1,4589,'0.99','2005-07-08 06:26:04','2006-02-15 22:12:59'),(2671,99,2,4800,'4.99','2005-07-08 16:51:08','2006-02-15 22:12:59'),(2672,99,2,4954,'2.99','2005-07-08 23:14:16','2006-02-15 22:12:59'),(2673,99,2,5035,'2.99','2005-07-09 02:51:34','2006-02-15 22:12:59'),(2674,99,1,5748,'2.99','2005-07-10 12:19:59','2006-02-15 22:12:59'),(2675,99,1,6289,'2.99','2005-07-11 17:06:39','2006-02-15 22:12:59'),(2676,99,1,6370,'3.99','2005-07-11 21:28:32','2006-02-15 22:12:59'),(2677,99,2,6662,'4.99','2005-07-12 11:21:06','2006-02-15 22:12:59'),(2678,99,1,7039,'4.99','2005-07-27 03:11:48','2006-02-15 22:12:59'),(2679,99,1,8072,'0.99','2005-07-28 17:27:59','2006-02-15 22:12:59'),(2680,99,2,8242,'7.99','2005-07-29 00:34:27','2006-02-15 22:12:59'),(2681,99,2,8514,'0.99','2005-07-29 09:53:33','2006-02-15 22:12:59'),(2682,99,2,10388,'7.99','2005-08-01 06:42:44','2006-02-15 22:12:59'),(2683,99,1,10455,'1.99','2005-08-01 09:15:00','2006-02-15 22:13:00'),(2684,99,2,11266,'4.99','2005-08-02 14:07:35','2006-02-15 22:13:00'),(2685,99,2,12379,'0.99','2005-08-18 08:26:48','2006-02-15 22:13:00'),(2686,99,2,12869,'8.99','2005-08-19 02:50:36','2006-02-15 22:13:00'),(2687,99,1,11593,'0.99','2006-02-14 15:16:03','2006-02-15 22:13:00'),(2688,100,1,71,'0.99','2005-05-25 10:26:39','2006-02-15 22:13:00'),(2689,100,2,1216,'4.99','2005-06-15 03:23:48','2006-02-15 22:13:00'),(2690,100,1,1340,'3.99','2005-06-15 12:24:15','2006-02-15 22:13:00'),(2691,100,1,1427,'2.99','2005-06-15 18:17:28','2006-02-15 22:13:00'),(2692,100,2,3468,'6.99','2005-06-21 22:43:45','2006-02-15 22:13:00'),(2693,100,2,3602,'5.99','2005-07-06 05:23:10','2006-02-15 22:13:00'),(2694,100,1,3800,'8.99','2005-07-06 15:01:27','2006-02-15 22:13:00'),(2695,100,1,4209,'2.99','2005-07-07 11:35:08','2006-02-15 22:13:00'),(2696,100,1,4970,'8.99','2005-07-08 23:54:29','2006-02-15 22:13:00'),(2697,100,2,4980,'6.99','2005-07-09 00:26:59','2006-02-15 22:13:00'),(2698,100,2,5238,'4.99','2005-07-09 13:11:14','2006-02-15 22:13:00'),(2699,100,2,5355,'6.99','2005-07-09 18:07:17','2006-02-15 22:13:00'),(2700,100,1,6655,'4.99','2005-07-12 11:08:32','2006-02-15 22:13:00'),(2701,100,2,7819,'4.99','2005-07-28 08:27:14','2006-02-15 22:13:00'),(2702,100,1,7921,'1.99','2005-07-28 12:02:46','2006-02-15 22:13:00'),(2703,100,2,8203,'0.99','2005-07-28 23:14:56','2006-02-15 22:13:00'),(2704,100,2,9048,'5.99','2005-07-30 06:57:07','2006-02-15 22:13:00'),(2705,100,1,9271,'4.99','2005-07-30 15:04:31','2006-02-15 22:13:00'),(2706,100,1,11143,'0.99','2005-08-02 09:32:54','2006-02-15 22:13:00'),(2707,100,2,11346,'4.99','2005-08-02 17:15:38','2006-02-15 22:13:00'),(2708,100,1,12657,'0.99','2005-08-18 19:02:16','2006-02-15 22:13:00'),(2709,100,1,15163,'0.99','2005-08-22 14:43:13','2006-02-15 22:13:00'),(2710,100,2,15246,'3.99','2005-08-22 17:50:49','2006-02-15 22:13:00'),(2711,100,2,15021,'0.99','2006-02-14 15:16:03','2006-02-15 22:13:00'),(2712,101,1,468,'9.99','2005-05-27 21:13:10','2006-02-15 22:13:00'),(2713,101,1,4975,'2.99','2005-07-09 00:02:46','2006-02-15 22:13:00'),(2714,101,2,5100,'2.99','2005-07-09 06:16:03','2006-02-15 22:13:00'),(2715,101,1,5132,'5.99','2005-07-09 07:40:32','2006-02-15 22:13:00'),(2716,101,2,5198,'2.99','2005-07-09 10:49:10','2006-02-15 22:13:00'),(2717,101,1,5757,'2.99','2005-07-10 12:40:17','2006-02-15 22:13:00'),(2718,101,2,6433,'5.99','2005-07-12 00:12:02','2006-02-15 22:13:00'),(2719,101,2,7112,'5.99','2005-07-27 05:38:42','2006-02-15 22:13:00'),(2720,101,2,7866,'8.99','2005-07-28 10:08:01','2006-02-15 22:13:00'),(2721,101,1,8301,'0.99','2005-07-29 03:00:08','2006-02-15 22:13:00'),(2722,101,2,8825,'1.99','2005-07-29 22:24:16','2006-02-15 22:13:00'),(2723,101,2,8833,'4.99','2005-07-29 22:39:36','2006-02-15 22:13:00'),(2724,101,2,9965,'6.99','2005-07-31 16:19:32','2006-02-15 22:13:00'),(2725,101,2,10218,'0.99','2005-08-01 01:09:44','2006-02-15 22:13:00'),(2726,101,1,10253,'6.99','2005-08-01 02:39:49','2006-02-15 22:13:00'),(2727,101,1,10407,'0.99','2005-08-01 07:38:07','2006-02-15 22:13:00'),(2728,101,2,11959,'4.99','2005-08-17 17:23:35','2006-02-15 22:13:00'),(2729,101,2,12174,'2.99','2005-08-18 01:08:53','2006-02-15 22:13:00'),(2730,101,1,12471,'4.99','2005-08-18 11:57:00','2006-02-15 22:13:00'),(2731,101,2,13370,'1.99','2005-08-19 21:20:11','2006-02-15 22:13:00'),(2732,101,1,14476,'0.99','2005-08-21 13:31:07','2006-02-15 22:13:00'),(2733,101,2,14542,'3.99','2005-08-21 15:36:34','2006-02-15 22:13:00'),(2734,101,2,15103,'2.99','2005-08-22 12:01:06','2006-02-15 22:13:00'),(2735,101,2,12141,'0.99','2006-02-14 15:16:03','2006-02-15 22:13:00'),(2736,102,1,247,'4.99','2005-05-26 14:01:05','2006-02-15 22:13:00'),(2737,102,1,358,'0.99','2005-05-27 06:43:59','2006-02-15 22:13:00'),(2738,102,2,562,'1.99','2005-05-28 09:01:21','2006-02-15 22:13:00'),(2739,102,2,1215,'2.99','2005-06-15 03:21:00','2006-02-15 22:13:00'),(2740,102,2,2419,'8.99','2005-06-18 17:21:24','2006-02-15 22:13:00'),(2741,102,2,3520,'1.99','2005-07-06 00:58:27','2006-02-15 22:13:00'),(2742,102,2,3630,'1.99','2005-07-06 06:27:15','2006-02-15 22:13:01'),(2743,102,2,3665,'4.99','2005-07-06 08:23:08','2006-02-15 22:13:01'),(2744,102,1,4089,'6.99','2005-07-07 05:45:59','2006-02-15 22:13:01'),(2745,102,2,4777,'3.99','2005-07-08 15:48:34','2006-02-15 22:13:01'),(2746,102,1,4997,'6.99','2005-07-09 01:06:03','2006-02-15 22:13:01'),(2747,102,1,5009,'5.99','2005-07-09 01:32:17','2006-02-15 22:13:01'),(2748,102,1,5109,'4.99','2005-07-09 06:48:49','2006-02-15 22:13:01'),(2749,102,2,5509,'5.99','2005-07-10 00:54:46','2006-02-15 22:13:01'),(2750,102,1,5716,'2.99','2005-07-10 10:59:23','2006-02-15 22:13:01'),(2751,102,2,6434,'5.99','2005-07-12 00:14:25','2006-02-15 22:13:01'),(2752,102,2,7119,'0.99','2005-07-27 05:55:32','2006-02-15 22:13:01'),(2753,102,2,7247,'0.99','2005-07-27 10:32:58','2006-02-15 22:13:01'),(2754,102,2,7439,'6.99','2005-07-27 17:42:31','2006-02-15 22:13:01'),(2755,102,1,8186,'0.99','2005-07-28 22:30:27','2006-02-15 22:13:01'),(2756,102,1,8664,'5.99','2005-07-29 15:36:27','2006-02-15 22:13:01'),(2757,102,2,9151,'3.99','2005-07-30 10:50:53','2006-02-15 22:13:01'),(2758,102,1,9192,'2.99','2005-07-30 12:26:26','2006-02-15 22:13:01'),(2759,102,2,9295,'0.99','2005-07-30 16:18:39','2006-02-15 22:13:01'),(2760,102,2,9617,'2.99','2005-07-31 04:15:38','2006-02-15 22:13:01'),(2761,102,1,9780,'4.99','2005-07-31 10:10:22','2006-02-15 22:13:01'),(2762,102,2,10841,'1.99','2005-08-01 23:39:21','2006-02-15 22:13:01'),(2763,102,2,11099,'4.99','2005-08-02 08:07:12','2006-02-15 22:13:01'),(2764,102,1,11183,'4.99','2005-08-02 11:00:32','2006-02-15 22:13:01'),(2765,102,2,12495,'4.99','2005-08-18 12:56:37','2006-02-15 22:13:01'),(2766,102,1,13420,'9.99','2005-08-19 22:57:25','2006-02-15 22:13:01'),(2767,102,1,15049,'1.99','2005-08-22 10:06:28','2006-02-15 22:13:01'),(2768,102,2,16031,'3.99','2005-08-23 21:59:26','2006-02-15 22:13:01'),(2769,103,1,240,'7.99','2005-05-26 12:40:23','2006-02-15 22:13:01'),(2770,103,1,658,'9.99','2005-05-28 20:23:23','2006-02-15 22:13:01'),(2771,103,2,1396,'4.99','2005-06-15 16:22:38','2006-02-15 22:13:01'),(2772,103,1,2118,'0.99','2005-06-17 20:28:29','2006-02-15 22:13:01'),(2773,103,1,2197,'0.99','2005-06-18 01:50:27','2006-02-15 22:13:01'),(2774,103,1,2724,'0.99','2005-06-19 14:57:54','2006-02-15 22:13:01'),(2775,103,2,3750,'6.99','2005-07-06 12:19:28','2006-02-15 22:13:01'),(2776,103,1,3850,'4.99','2005-07-06 16:51:21','2006-02-15 22:13:01'),(2777,103,2,4040,'6.99','2005-07-07 03:02:40','2006-02-15 22:13:01'),(2778,103,1,4213,'2.99','2005-07-07 11:53:49','2006-02-15 22:13:01'),(2779,103,1,4357,'1.99','2005-07-07 19:24:39','2006-02-15 22:13:01'),(2780,103,2,4872,'4.99','2005-07-08 19:23:16','2006-02-15 22:13:01'),(2781,103,2,5163,'4.99','2005-07-09 09:00:28','2006-02-15 22:13:01'),(2782,103,1,6525,'5.99','2005-07-12 04:17:15','2006-02-15 22:13:01'),(2783,103,2,6697,'6.99','2005-07-12 12:44:57','2006-02-15 22:13:01'),(2784,103,2,6949,'2.99','2005-07-26 23:44:12','2006-02-15 22:13:01'),(2785,103,1,7310,'0.99','2005-07-27 13:00:55','2006-02-15 22:13:01'),(2786,103,2,7472,'6.99','2005-07-27 19:04:19','2006-02-15 22:13:01'),(2787,103,1,8302,'0.99','2005-07-29 03:01:24','2006-02-15 22:13:01'),(2788,103,1,8520,'4.99','2005-07-29 10:10:02','2006-02-15 22:13:01'),(2789,103,2,9390,'4.99','2005-07-30 19:42:07','2006-02-15 22:13:01'),(2790,103,2,12942,'7.99','2005-08-19 05:40:36','2006-02-15 22:13:01'),(2791,103,1,13676,'0.99','2005-08-20 08:33:21','2006-02-15 22:13:01'),(2792,103,2,14064,'2.99','2005-08-20 22:39:16','2006-02-15 22:13:01'),(2793,103,2,14289,'4.99','2005-08-21 06:58:49','2006-02-15 22:13:01'),(2794,103,2,15401,'8.99','2005-08-22 23:13:10','2006-02-15 22:13:01'),(2795,103,1,15461,'5.99','2005-08-23 01:13:52','2006-02-15 22:13:01'),(2796,103,1,15467,'3.99','2005-08-23 01:22:12','2006-02-15 22:13:01'),(2797,103,1,15599,'5.99','2005-08-23 06:25:07','2006-02-15 22:13:01'),(2798,103,2,15679,'0.99','2005-08-23 09:27:29','2006-02-15 22:13:02'),(2799,103,2,16048,'8.99','2005-08-23 22:43:07','2006-02-15 22:13:02'),(2800,104,1,163,'10.99','2005-05-26 02:26:23','2006-02-15 22:13:02'),(2801,104,2,808,'3.99','2005-05-29 19:08:20','2006-02-15 22:13:02'),(2802,104,2,1287,'3.99','2005-06-15 08:41:38','2006-02-15 22:13:02'),(2803,104,1,2107,'0.99','2005-06-17 19:31:16','2006-02-15 22:13:02'),(2804,104,2,2928,'0.99','2005-06-20 04:43:45','2006-02-15 22:13:02'),(2805,104,2,3273,'2.99','2005-06-21 05:24:17','2006-02-15 22:13:02'),(2806,104,2,4012,'4.99','2005-07-07 00:56:09','2006-02-15 22:13:02'),(2807,104,2,4438,'6.99','2005-07-07 22:56:17','2006-02-15 22:13:02'),(2808,104,2,4520,'4.99','2005-07-08 02:53:46','2006-02-15 22:13:02'),(2809,104,1,4529,'7.99','2005-07-08 03:26:20','2006-02-15 22:13:02'),(2810,104,1,4917,'2.99','2005-07-08 21:32:30','2006-02-15 22:13:02'),(2811,104,1,5376,'1.99','2005-07-09 18:54:08','2006-02-15 22:13:02'),(2812,104,2,7107,'2.99','2005-07-27 05:22:04','2006-02-15 22:13:02'),(2813,104,1,8413,'1.99','2005-07-29 06:47:39','2006-02-15 22:13:02'),(2814,104,1,9090,'3.99','2005-07-30 08:24:42','2006-02-15 22:13:02'),(2815,104,2,9996,'5.99','2005-07-31 17:32:03','2006-02-15 22:13:02'),(2816,104,1,11700,'2.99','2005-08-17 07:12:31','2006-02-15 22:13:02'),(2817,104,1,12453,'3.99','2005-08-18 11:17:07','2006-02-15 22:13:02'),(2818,104,1,13005,'0.99','2005-08-19 07:45:42','2006-02-15 22:13:02'),(2819,104,1,13017,'1.99','2005-08-19 08:02:24','2006-02-15 22:13:02'),(2820,104,1,13179,'4.99','2005-08-19 13:59:53','2006-02-15 22:13:02'),(2821,104,1,13410,'3.99','2005-08-19 22:41:44','2006-02-15 22:13:02'),(2822,104,1,14218,'3.99','2005-08-21 04:43:59','2006-02-15 22:13:02'),(2823,104,2,15186,'0.99','2005-08-22 15:52:57','2006-02-15 22:13:02'),(2824,105,1,327,'8.99','2005-05-27 01:18:57','2006-02-15 22:13:02'),(2825,105,2,473,'7.99','2005-05-27 21:36:34','2006-02-15 22:13:02'),(2826,105,1,485,'2.99','2005-05-27 23:40:52','2006-02-15 22:13:02'),(2827,105,1,779,'6.99','2005-05-29 14:17:17','2006-02-15 22:13:02'),(2828,105,2,1789,'3.99','2005-06-16 19:49:18','2006-02-15 22:13:02'),(2829,105,2,1991,'3.99','2005-06-17 10:49:23','2006-02-15 22:13:02'),(2830,105,2,2635,'3.99','2005-06-19 09:08:45','2006-02-15 22:13:02'),(2831,105,2,5261,'4.99','2005-07-09 14:06:56','2006-02-15 22:13:02'),(2832,105,1,5429,'4.99','2005-07-09 21:14:03','2006-02-15 22:13:02'),(2833,105,2,5542,'2.99','2005-07-10 02:45:53','2006-02-15 22:13:02'),(2834,105,2,5677,'4.99','2005-07-10 08:41:28','2006-02-15 22:13:02'),(2835,105,2,6546,'4.99','2005-07-12 04:57:17','2006-02-15 22:13:02'),(2836,105,1,7442,'2.99','2005-07-27 17:47:00','2006-02-15 22:13:02'),(2837,105,2,8980,'2.99','2005-07-30 04:22:15','2006-02-15 22:13:02'),(2838,105,2,9124,'3.99','2005-07-30 09:43:12','2006-02-15 22:13:02'),(2839,105,2,9198,'5.99','2005-07-30 12:37:08','2006-02-15 22:13:02'),(2840,105,2,9210,'9.99','2005-07-30 12:56:44','2006-02-15 22:13:02'),(2841,105,1,10513,'4.99','2005-08-01 11:37:34','2006-02-15 22:13:02'),(2842,105,1,12217,'0.99','2005-08-18 02:44:44','2006-02-15 22:13:02'),(2843,105,2,12899,'2.99','2005-08-19 04:03:34','2006-02-15 22:13:02'),(2844,105,1,13057,'6.99','2005-08-19 09:40:05','2006-02-15 22:13:02'),(2845,105,1,13751,'2.99','2005-08-20 11:17:03','2006-02-15 22:13:02'),(2846,105,2,14048,'0.99','2005-08-20 22:03:18','2006-02-15 22:13:02'),(2847,105,2,15624,'4.99','2005-08-23 07:24:27','2006-02-15 22:13:02'),(2848,105,2,15688,'4.99','2005-08-23 09:48:45','2006-02-15 22:13:02'),(2849,105,2,15803,'2.99','2005-08-23 14:27:07','2006-02-15 22:13:02'),(2850,106,2,552,'3.99','2005-05-28 07:53:38','2006-02-15 22:13:03'),(2851,106,2,1156,'0.99','2005-05-31 22:37:34','2006-02-15 22:13:03'),(2852,106,1,2295,'4.99','2005-06-18 07:56:18','2006-02-15 22:13:03'),(2853,106,1,3023,'4.99','2005-06-20 11:18:11','2006-02-15 22:13:03'),(2854,106,1,4229,'4.99','2005-07-07 12:43:23','2006-02-15 22:13:03'),(2855,106,2,4277,'2.99','2005-07-07 14:52:12','2006-02-15 22:13:03'),(2856,106,1,4665,'3.99','2005-07-08 10:04:24','2006-02-15 22:13:03'),(2857,106,2,5453,'3.99','2005-07-09 22:24:11','2006-02-15 22:13:03'),(2858,106,2,6992,'0.99','2005-07-27 01:04:45','2006-02-15 22:13:03'),(2859,106,1,7224,'3.99','2005-07-27 09:44:26','2006-02-15 22:13:03'),(2860,106,1,7483,'4.99','2005-07-27 19:25:00','2006-02-15 22:13:03'),(2861,106,1,8115,'4.99','2005-07-28 19:14:17','2006-02-15 22:13:03'),(2862,106,2,9072,'2.99','2005-07-30 07:45:49','2006-02-15 22:13:03'),(2863,106,2,9747,'7.99','2005-07-31 09:16:57','2006-02-15 22:13:03'),(2864,106,2,10213,'8.99','2005-08-01 01:03:18','2006-02-15 22:13:03'),(2865,106,1,10228,'2.99','2005-08-01 01:43:18','2006-02-15 22:13:03'),(2866,106,1,10444,'8.99','2005-08-01 09:01:40','2006-02-15 22:13:03'),(2867,106,2,11436,'0.99','2005-08-02 20:16:06','2006-02-15 22:13:03'),(2868,106,1,12159,'7.99','2005-08-18 00:36:09','2006-02-15 22:13:03'),(2869,106,1,12845,'2.99','2005-08-19 02:02:37','2006-02-15 22:13:03'),(2870,106,2,14431,'2.99','2005-08-21 11:31:15','2006-02-15 22:13:03'),(2871,106,1,14920,'0.99','2005-08-22 05:08:58','2006-02-15 22:13:03'),(2872,106,1,15154,'6.99','2005-08-22 14:27:37','2006-02-15 22:13:03'),(2873,107,1,170,'5.99','2005-05-26 03:11:12','2006-02-15 22:13:03'),(2874,107,1,1026,'5.99','2005-05-31 03:45:26','2006-02-15 22:13:03'),(2875,107,2,1243,'2.99','2005-06-15 05:07:32','2006-02-15 22:13:03'),(2876,107,2,2693,'6.99','2005-06-19 13:11:47','2006-02-15 22:13:03'),(2877,107,2,2860,'4.99','2005-06-19 23:20:40','2006-02-15 22:13:03'),(2878,107,2,2897,'3.99','2005-06-20 02:34:23','2006-02-15 22:13:03'),(2879,107,1,3033,'3.99','2005-06-20 12:02:05','2006-02-15 22:13:03'),(2880,107,2,3120,'0.99','2005-06-20 18:19:29','2006-02-15 22:13:03'),(2881,107,2,3174,'0.99','2005-06-20 22:24:00','2006-02-15 22:13:03'),(2882,107,2,3824,'6.99','2005-07-06 15:43:15','2006-02-15 22:13:03'),(2883,107,2,5311,'4.99','2005-07-09 16:02:54','2006-02-15 22:13:03'),(2884,107,2,5575,'2.99','2005-07-10 03:55:50','2006-02-15 22:13:03'),(2885,107,2,5798,'3.99','2005-07-10 14:45:09','2006-02-15 22:13:03'),(2886,107,2,6131,'2.99','2005-07-11 08:22:05','2006-02-15 22:13:03'),(2887,107,2,6133,'0.99','2005-07-11 08:25:22','2006-02-15 22:13:03'),(2888,107,1,6811,'5.99','2005-07-12 17:54:33','2006-02-15 22:13:03'),(2889,107,2,6934,'6.99','2005-07-26 23:11:03','2006-02-15 22:13:03'),(2890,107,2,7447,'4.99','2005-07-27 18:02:08','2006-02-15 22:13:03'),(2891,107,1,7600,'7.99','2005-07-27 23:41:18','2006-02-15 22:13:03'),(2892,107,1,8162,'4.99','2005-07-28 21:11:46','2006-02-15 22:13:03'),(2893,107,2,8704,'1.99','2005-07-29 17:13:45','2006-02-15 22:13:03'),(2894,107,1,9155,'2.99','2005-07-30 11:00:00','2006-02-15 22:13:03'),(2895,107,2,9351,'2.99','2005-07-30 18:28:30','2006-02-15 22:13:03'),(2896,107,1,10226,'4.99','2005-08-01 01:40:04','2006-02-15 22:13:03'),(2897,107,2,13361,'4.99','2005-08-19 21:07:22','2006-02-15 22:13:03'),(2898,107,1,13510,'6.99','2005-08-20 02:18:30','2006-02-15 22:13:03'),(2899,107,1,14562,'4.99','2005-08-21 16:22:59','2006-02-15 22:13:03'),(2900,107,1,15560,'3.99','2005-08-23 05:01:13','2006-02-15 22:13:03'),(2901,107,1,13079,'1.98','2006-02-14 15:16:03','2006-02-15 22:13:03'),(2902,107,1,15497,'0.00','2006-02-14 15:16:03','2006-02-15 22:13:03'),(2903,108,1,105,'4.99','2005-05-25 17:54:12','2006-02-15 22:13:03'),(2904,108,2,1055,'0.99','2005-05-31 07:47:18','2006-02-15 22:13:03'),(2905,108,2,1372,'4.99','2005-06-15 14:45:48','2006-02-15 22:13:03'),(2906,108,1,1425,'2.99','2005-06-15 18:13:46','2006-02-15 22:13:03'),(2907,108,1,2061,'8.99','2005-06-17 15:47:00','2006-02-15 22:13:03'),(2908,108,1,2210,'2.99','2005-06-18 02:27:01','2006-02-15 22:13:04'),(2909,108,2,3116,'4.99','2005-06-20 18:04:55','2006-02-15 22:13:04'),(2910,108,1,3875,'0.99','2005-07-06 18:15:39','2006-02-15 22:13:04'),(2911,108,2,4082,'2.99','2005-07-07 05:11:53','2006-02-15 22:13:04'),(2912,108,1,4303,'1.99','2005-07-07 16:57:32','2006-02-15 22:13:04'),(2913,108,1,4650,'4.99','2005-07-08 09:32:08','2006-02-15 22:13:04'),(2914,108,1,4754,'0.99','2005-07-08 14:20:01','2006-02-15 22:13:04'),(2915,108,2,5274,'6.99','2005-07-09 14:34:09','2006-02-15 22:13:04'),(2916,108,1,5661,'5.99','2005-07-10 07:53:51','2006-02-15 22:13:04'),(2917,108,2,5806,'4.99','2005-07-10 15:11:54','2006-02-15 22:13:04'),(2918,108,1,6841,'0.99','2005-07-12 19:04:24','2006-02-15 22:13:04'),(2919,108,2,8329,'5.99','2005-07-29 04:06:33','2006-02-15 22:13:04'),(2920,108,2,8587,'4.99','2005-07-29 12:18:40','2006-02-15 22:13:04'),(2921,108,1,8846,'4.99','2005-07-29 23:10:28','2006-02-15 22:13:04'),(2922,108,2,9755,'4.99','2005-07-31 09:24:55','2006-02-15 22:13:04'),(2923,108,1,11316,'5.99','2005-08-02 16:07:49','2006-02-15 22:13:04'),(2924,108,2,11445,'6.99','2005-08-02 20:33:35','2006-02-15 22:13:04'),(2925,108,2,11759,'2.99','2005-08-17 09:41:23','2006-02-15 22:13:04'),(2926,108,1,12583,'2.99','2005-08-18 15:51:36','2006-02-15 22:13:04'),(2927,108,2,12625,'6.99','2005-08-18 17:36:19','2006-02-15 22:13:04'),(2928,108,2,13754,'2.99','2005-08-20 11:18:08','2006-02-15 22:13:04'),(2929,108,2,14635,'3.99','2005-08-21 18:51:43','2006-02-15 22:13:04'),(2930,108,2,15556,'8.99','2005-08-23 04:52:16','2006-02-15 22:13:04'),(2931,108,1,16001,'2.99','2005-08-23 20:45:53','2006-02-15 22:13:04'),(2932,108,1,15294,'4.99','2006-02-14 15:16:03','2006-02-15 22:13:04'),(2933,109,1,203,'5.99','2005-05-26 07:27:57','2006-02-15 22:13:04'),(2934,109,1,386,'0.99','2005-05-27 10:26:31','2006-02-15 22:13:04'),(2935,109,2,622,'3.99','2005-05-28 15:58:22','2006-02-15 22:13:04'),(2936,109,1,698,'0.99','2005-05-29 02:10:52','2006-02-15 22:13:04'),(2937,109,1,1061,'7.99','2005-05-31 08:27:58','2006-02-15 22:13:04'),(2938,109,1,1106,'4.99','2005-05-31 14:36:52','2006-02-15 22:13:04'),(2939,109,1,1115,'2.99','2005-05-31 16:07:09','2006-02-15 22:13:04'),(2940,109,2,1581,'2.99','2005-06-16 04:28:45','2006-02-15 22:13:04'),(2941,109,2,1891,'3.99','2005-06-17 04:16:44','2006-02-15 22:13:04'),(2942,109,2,2198,'6.99','2005-06-18 01:51:22','2006-02-15 22:13:04'),(2943,109,2,2679,'5.99','2005-06-19 12:12:30','2006-02-15 22:13:04'),(2944,109,2,3076,'5.99','2005-06-20 15:01:19','2006-02-15 22:13:04'),(2945,109,1,4921,'4.99','2005-07-08 21:43:21','2006-02-15 22:13:04'),(2946,109,1,5027,'2.99','2005-07-09 02:32:37','2006-02-15 22:13:04'),(2947,109,2,5296,'2.99','2005-07-09 15:26:27','2006-02-15 22:13:04'),(2948,109,2,6920,'6.99','2005-07-12 22:32:58','2006-02-15 22:13:04'),(2949,109,2,7145,'0.99','2005-07-27 07:01:00','2006-02-15 22:13:04'),(2950,109,1,8006,'3.99','2005-07-28 15:15:41','2006-02-15 22:13:04'),(2951,109,1,9230,'0.99','2005-07-30 13:39:42','2006-02-15 22:13:04'),(2952,109,1,9871,'2.99','2005-07-31 13:25:46','2006-02-15 22:13:04'),(2953,109,2,10240,'0.99','2005-08-01 02:09:33','2006-02-15 22:13:04'),(2954,109,2,10892,'3.99','2005-08-02 01:12:06','2006-02-15 22:13:04'),(2955,109,2,12137,'6.99','2005-08-17 23:52:26','2006-02-15 22:13:04'),(2956,109,1,13264,'3.99','2005-08-19 17:27:10','2006-02-15 22:13:04'),(2957,109,2,15398,'7.99','2005-08-22 23:10:49','2006-02-15 22:13:04'),(2958,109,2,15677,'2.99','2005-08-23 09:23:36','2006-02-15 22:13:04'),(2959,110,1,515,'7.99','2005-05-28 03:10:10','2006-02-15 22:13:04'),(2960,110,2,538,'1.99','2005-05-28 06:21:05','2006-02-15 22:13:04'),(2961,110,2,1528,'8.99','2005-06-16 00:32:52','2006-02-15 22:13:04'),(2962,110,1,3587,'4.99','2005-07-06 04:27:52','2006-02-15 22:13:04'),(2963,110,1,4317,'2.99','2005-07-07 17:44:49','2006-02-15 22:13:05'),(2964,110,2,4827,'4.99','2005-07-08 17:46:30','2006-02-15 22:13:05'),(2965,110,1,6160,'4.99','2005-07-11 10:08:13','2006-02-15 22:13:05'),(2966,110,1,7474,'0.99','2005-07-27 19:07:17','2006-02-15 22:13:05'),(2967,110,2,7542,'0.99','2005-07-27 21:43:04','2006-02-15 22:13:05'),(2968,110,1,7570,'2.99','2005-07-27 22:40:06','2006-02-15 22:13:05'),(2969,110,1,11647,'7.99','2005-08-17 04:54:14','2006-02-15 22:13:05'),(2970,110,2,12585,'3.99','2005-08-18 15:52:12','2006-02-15 22:13:05'),(2971,110,1,13723,'2.99','2005-08-20 10:05:30','2006-02-15 22:13:05'),(2972,110,2,15381,'2.99','2005-08-22 22:28:36','2006-02-15 22:13:05'),(2973,111,2,505,'2.99','2005-05-28 02:06:37','2006-02-15 22:13:05'),(2974,111,1,1593,'6.99','2005-06-16 05:14:52','2006-02-15 22:13:05'),(2975,111,2,1974,'2.99','2005-06-17 09:30:05','2006-02-15 22:13:05'),(2976,111,2,1999,'1.99','2005-06-17 11:30:08','2006-02-15 22:13:05'),(2977,111,2,2297,'4.99','2005-06-18 08:17:41','2006-02-15 22:13:05'),(2978,111,2,3087,'2.99','2005-06-20 15:53:59','2006-02-15 22:13:05'),(2979,111,2,3333,'2.99','2005-06-21 10:01:36','2006-02-15 22:13:05'),(2980,111,2,3485,'1.99','2005-07-05 23:25:54','2006-02-15 22:13:05'),(2981,111,1,3551,'3.99','2005-07-06 02:33:48','2006-02-15 22:13:05'),(2982,111,2,3963,'9.99','2005-07-06 22:19:17','2006-02-15 22:13:05'),(2983,111,1,4249,'4.99','2005-07-07 14:05:17','2006-02-15 22:13:05'),(2984,111,2,4286,'0.99','2005-07-07 15:36:44','2006-02-15 22:13:05'),(2985,111,1,6896,'2.99','2005-07-12 21:25:37','2006-02-15 22:13:05'),(2986,111,2,8525,'0.99','2005-07-29 10:20:19','2006-02-15 22:13:05'),(2987,111,2,9933,'0.99','2005-07-31 15:24:46','2006-02-15 22:13:05'),(2988,111,2,10039,'2.99','2005-07-31 18:50:40','2006-02-15 22:13:05'),(2989,111,2,10602,'4.99','2005-08-01 14:30:23','2006-02-15 22:13:05'),(2990,111,1,10952,'4.99','2005-08-02 03:28:21','2006-02-15 22:13:05'),(2991,111,2,10990,'4.99','2005-08-02 04:41:06','2006-02-15 22:13:05'),(2992,111,2,11239,'2.99','2005-08-02 13:27:11','2006-02-15 22:13:05'),(2993,111,2,12196,'3.99','2005-08-18 02:08:48','2006-02-15 22:13:05'),(2994,111,2,13251,'2.99','2005-08-19 16:48:37','2006-02-15 22:13:05'),(2995,111,2,13525,'5.99','2005-08-20 02:50:44','2006-02-15 22:13:05'),(2996,111,1,14949,'0.99','2005-08-22 06:12:16','2006-02-15 22:13:05'),(2997,111,2,15174,'6.99','2005-08-22 15:26:36','2006-02-15 22:13:05'),(2998,111,2,15542,'2.99','2006-02-14 15:16:03','2006-02-15 22:13:05'),(2999,112,1,396,'0.99','2005-05-27 11:47:04','2006-02-15 22:13:05'),(3000,112,2,701,'2.99','2005-05-29 02:26:27','2006-02-15 22:13:05'),(3001,112,1,1835,'4.99','2005-06-16 23:05:36','2006-02-15 22:13:05'),(3002,112,2,1930,'2.99','2005-06-17 06:50:46','2006-02-15 22:13:05'),(3003,112,1,2193,'4.99','2005-06-18 01:38:45','2006-02-15 22:13:05'),(3004,112,2,3018,'2.99','2005-06-20 11:10:35','2006-02-15 22:13:05'),(3005,112,1,5351,'4.99','2005-07-09 17:40:52','2006-02-15 22:13:05'),(3006,112,1,5385,'2.99','2005-07-09 19:18:11','2006-02-15 22:13:05'),(3007,112,2,6550,'2.99','2005-07-12 05:03:14','2006-02-15 22:13:05'),(3008,112,2,7691,'4.99','2005-07-28 03:30:09','2006-02-15 22:13:05'),(3009,112,2,7761,'4.99','2005-07-28 06:31:45','2006-02-15 22:13:05'),(3010,112,1,9217,'4.99','2005-07-30 13:13:55','2006-02-15 22:13:05'),(3011,112,2,9321,'6.99','2005-07-30 17:19:44','2006-02-15 22:13:05'),(3012,112,2,9609,'4.99','2005-07-31 03:53:24','2006-02-15 22:13:05'),(3013,112,1,9830,'5.99','2005-07-31 11:59:05','2006-02-15 22:13:05'),(3014,112,2,9911,'3.99','2005-07-31 14:48:01','2006-02-15 22:13:05'),(3015,112,1,10038,'2.99','2005-07-31 18:49:12','2006-02-15 22:13:05'),(3016,112,2,10596,'5.99','2005-08-01 14:18:57','2006-02-15 22:13:06'),(3017,112,1,11019,'2.99','2005-08-02 05:29:31','2006-02-15 22:13:06'),(3018,112,1,11599,'7.99','2005-08-17 03:08:10','2006-02-15 22:13:06'),(3019,112,2,11659,'4.99','2005-08-17 05:20:45','2006-02-15 22:13:06'),(3020,112,2,11863,'3.99','2005-08-17 13:56:01','2006-02-15 22:13:06'),(3021,112,2,13611,'8.99','2005-08-20 06:20:42','2006-02-15 22:13:06'),(3022,112,2,13879,'2.99','2005-08-20 15:18:10','2006-02-15 22:13:06'),(3023,112,2,14049,'5.99','2005-08-20 22:08:55','2006-02-15 22:13:06'),(3024,112,1,14358,'0.99','2005-08-21 09:14:28','2006-02-15 22:13:06'),(3025,112,2,15304,'4.99','2005-08-22 19:45:57','2006-02-15 22:13:06'),(3026,112,1,15671,'0.99','2005-08-23 09:08:16','2006-02-15 22:13:06'),(3027,112,1,15687,'8.99','2005-08-23 09:46:33','2006-02-15 22:13:06'),(3028,112,1,15756,'2.99','2005-08-23 12:47:05','2006-02-15 22:13:06'),(3029,113,1,510,'0.99','2005-05-28 02:52:14','2006-02-15 22:13:06'),(3030,113,2,776,'0.99','2005-05-29 13:35:35','2006-02-15 22:13:06'),(3031,113,2,2077,'4.99','2005-06-17 16:46:11','2006-02-15 22:13:06'),(3032,113,1,2282,'2.99','2005-06-18 06:48:23','2006-02-15 22:13:06'),(3033,113,1,2783,'2.99','2005-06-19 18:29:10','2006-02-15 22:13:06'),(3034,113,2,3004,'0.99','2005-06-20 10:04:36','2006-02-15 22:13:06'),(3035,113,1,3124,'8.99','2005-06-20 18:28:19','2006-02-15 22:13:06'),(3036,113,1,3162,'6.99','2005-06-20 21:21:15','2006-02-15 22:13:06'),(3037,113,2,3657,'5.99','2005-07-06 07:55:30','2006-02-15 22:13:06'),(3038,113,1,4333,'2.99','2005-07-07 18:31:50','2006-02-15 22:13:06'),(3039,113,2,5189,'2.99','2005-07-09 10:23:21','2006-02-15 22:13:06'),(3040,113,2,5324,'2.99','2005-07-09 16:34:18','2006-02-15 22:13:06'),(3041,113,2,5655,'4.99','2005-07-10 07:31:06','2006-02-15 22:13:06'),(3042,113,1,5774,'5.99','2005-07-10 13:31:56','2006-02-15 22:13:06'),(3043,113,1,6025,'0.99','2005-07-11 02:18:13','2006-02-15 22:13:06'),(3044,113,1,6836,'0.99','2005-07-12 18:58:05','2006-02-15 22:13:06'),(3045,113,2,7468,'5.99','2005-07-27 18:52:27','2006-02-15 22:13:06'),(3046,113,2,7587,'2.99','2005-07-27 23:23:03','2006-02-15 22:13:06'),(3047,113,2,9221,'6.99','2005-07-30 13:20:06','2006-02-15 22:13:06'),(3048,113,2,10181,'4.99','2005-08-01 00:00:44','2006-02-15 22:13:06'),(3049,113,1,10378,'0.99','2005-08-01 06:30:04','2006-02-15 22:13:06'),(3050,113,2,10578,'1.99','2005-08-01 13:48:02','2006-02-15 22:13:06'),(3051,113,2,11655,'7.99','2005-08-17 05:11:07','2006-02-15 22:13:06'),(3052,113,1,11872,'5.99','2005-08-17 14:11:45','2006-02-15 22:13:06'),(3053,113,1,12392,'5.99','2005-08-18 08:57:58','2006-02-15 22:13:06'),(3054,113,2,12817,'3.99','2005-08-19 01:04:35','2006-02-15 22:13:06'),(3055,113,2,13406,'2.99','2005-08-19 22:22:01','2006-02-15 22:13:06'),(3056,113,1,15600,'1.99','2005-08-23 06:31:24','2006-02-15 22:13:06'),(3057,113,1,15770,'2.99','2005-08-23 13:18:16','2006-02-15 22:13:06'),(3058,114,1,205,'4.99','2005-05-26 07:59:37','2006-02-15 22:13:06'),(3059,114,1,255,'4.99','2005-05-26 14:52:15','2006-02-15 22:13:06'),(3060,114,2,889,'2.99','2005-05-30 07:14:53','2006-02-15 22:13:06'),(3061,114,1,2059,'2.99','2005-06-17 15:36:12','2006-02-15 22:13:06'),(3062,114,2,2680,'7.99','2005-06-19 12:13:37','2006-02-15 22:13:07'),(3063,114,1,3094,'2.99','2005-06-20 16:06:51','2006-02-15 22:13:07'),(3064,114,2,3144,'5.99','2005-06-20 20:14:20','2006-02-15 22:13:07'),(3065,114,1,3484,'4.99','2005-07-05 23:23:11','2006-02-15 22:13:07'),(3066,114,1,3924,'2.99','2005-07-06 20:38:02','2006-02-15 22:13:07'),(3067,114,1,4025,'0.99','2005-07-07 02:13:24','2006-02-15 22:13:07'),(3068,114,1,5418,'0.99','2005-07-09 20:41:35','2006-02-15 22:13:07'),(3069,114,2,5624,'4.99','2005-07-10 05:43:16','2006-02-15 22:13:07'),(3070,114,1,5625,'2.99','2005-07-10 05:44:02','2006-02-15 22:13:07'),(3071,114,1,6188,'2.99','2005-07-11 11:31:47','2006-02-15 22:13:07'),(3072,114,1,6754,'4.99','2005-07-12 14:59:24','2006-02-15 22:13:07'),(3073,114,2,7316,'2.99','2005-07-27 13:19:03','2006-02-15 22:13:07'),(3074,114,2,7462,'2.99','2005-07-27 18:47:47','2006-02-15 22:13:07'),(3075,114,2,7565,'2.99','2005-07-27 22:33:59','2006-02-15 22:13:07'),(3076,114,2,7938,'5.99','2005-07-28 12:39:11','2006-02-15 22:13:07'),(3077,114,2,8496,'4.99','2005-07-29 09:05:33','2006-02-15 22:13:07'),(3078,114,1,8590,'10.99','2005-07-29 12:32:20','2006-02-15 22:13:07'),(3079,114,1,9717,'4.99','2005-07-31 08:24:41','2006-02-15 22:13:07'),(3080,114,1,11547,'4.99','2005-08-17 00:59:24','2006-02-15 22:13:07'),(3081,114,2,12326,'0.99','2005-08-18 06:41:59','2006-02-15 22:13:07'),(3082,114,1,12685,'6.99','2005-08-18 19:51:29','2006-02-15 22:13:07'),(3083,114,2,13459,'6.99','2005-08-20 00:45:40','2006-02-15 22:13:07'),(3084,114,2,14158,'5.99','2005-08-21 02:43:20','2006-02-15 22:13:07'),(3085,114,1,14867,'4.99','2005-08-22 03:14:46','2006-02-15 22:13:07'),(3086,114,1,15485,'0.99','2005-08-23 02:04:57','2006-02-15 22:13:07'),(3087,114,1,15528,'2.99','2005-08-23 03:45:40','2006-02-15 22:13:07'),(3088,114,2,15646,'3.99','2005-08-23 08:19:55','2006-02-15 22:13:07'),(3089,114,1,16047,'0.99','2005-08-23 22:42:48','2006-02-15 22:13:07'),(3090,114,2,12506,'4.99','2006-02-14 15:16:03','2006-02-15 22:13:07'),(3091,115,1,915,'0.99','2005-05-30 11:20:27','2006-02-15 22:13:07'),(3092,115,1,983,'0.99','2005-05-30 22:15:51','2006-02-15 22:13:07'),(3093,115,1,1102,'2.99','2005-05-31 14:20:29','2006-02-15 22:13:07'),(3094,115,2,1361,'0.99','2005-06-15 13:37:38','2006-02-15 22:13:07'),(3095,115,2,1515,'2.99','2005-06-15 23:07:50','2006-02-15 22:13:07'),(3096,115,1,3289,'6.99','2005-06-21 06:41:48','2006-02-15 22:13:07'),(3097,115,2,3544,'0.99','2005-07-06 02:06:32','2006-02-15 22:13:07'),(3098,115,1,3624,'0.99','2005-07-06 06:06:27','2006-02-15 22:13:07'),(3099,115,1,4780,'1.99','2005-07-08 16:06:51','2006-02-15 22:13:07'),(3100,115,1,5245,'4.99','2005-07-09 13:24:14','2006-02-15 22:13:07'),(3101,115,1,6080,'2.99','2005-07-11 05:08:11','2006-02-15 22:13:07'),(3102,115,2,6113,'2.99','2005-07-11 07:31:08','2006-02-15 22:13:07'),(3103,115,1,6373,'0.99','2005-07-11 21:35:20','2006-02-15 22:13:07'),(3104,115,1,6574,'5.99','2005-07-12 06:04:22','2006-02-15 22:13:07'),(3105,115,1,6798,'6.99','2005-07-12 16:49:11','2006-02-15 22:13:07'),(3106,115,2,7355,'1.99','2005-07-27 14:45:59','2006-02-15 22:13:07'),(3107,115,2,7465,'4.99','2005-07-27 18:50:30','2006-02-15 22:13:07'),(3108,115,1,7983,'4.99','2005-07-28 14:23:01','2006-02-15 22:13:07'),(3109,115,1,8594,'4.99','2005-07-29 12:42:13','2006-02-15 22:13:07'),(3110,115,2,9578,'0.99','2005-07-31 02:54:31','2006-02-15 22:13:07'),(3111,115,2,10022,'3.99','2005-07-31 18:25:30','2006-02-15 22:13:07'),(3112,115,2,10475,'4.99','2005-08-01 10:03:17','2006-02-15 22:13:07'),(3113,115,2,10647,'2.99','2005-08-01 16:08:46','2006-02-15 22:13:07'),(3114,115,2,10919,'0.99','2005-08-02 02:11:03','2006-02-15 22:13:07'),(3115,115,1,11891,'2.99','2005-08-17 15:11:55','2006-02-15 22:13:07'),(3116,115,2,12366,'0.99','2005-08-18 07:55:14','2006-02-15 22:13:07'),(3117,115,2,13977,'0.99','2005-08-20 19:02:34','2006-02-15 22:13:08'),(3118,115,1,15176,'6.99','2005-08-22 15:30:25','2006-02-15 22:13:08'),(3119,115,2,15452,'0.99','2005-08-23 00:57:12','2006-02-15 22:13:08'),(3120,115,2,13056,'2.99','2006-02-14 15:16:03','2006-02-15 22:13:08'),(3121,116,1,1058,'4.99','2005-05-31 08:04:17','2006-02-15 22:13:08'),(3122,116,2,1332,'0.99','2005-06-15 11:36:01','2006-02-15 22:13:08'),(3123,116,2,1533,'0.99','2005-06-16 00:46:02','2006-02-15 22:13:08'),(3124,116,2,1762,'4.99','2005-06-16 17:50:19','2006-02-15 22:13:08'),(3125,116,2,1913,'4.99','2005-06-17 05:19:47','2006-02-15 22:13:08'),(3126,116,1,2639,'4.99','2005-06-19 09:24:02','2006-02-15 22:13:08'),(3127,116,1,2861,'3.99','2005-06-19 23:21:34','2006-02-15 22:13:08'),(3128,116,2,3908,'6.99','2005-07-06 19:47:26','2006-02-15 22:13:08'),(3129,116,2,3940,'2.99','2005-07-06 21:16:59','2006-02-15 22:13:08'),(3130,116,1,4027,'0.99','2005-07-07 02:19:01','2006-02-15 22:13:08'),(3131,116,2,4737,'4.99','2005-07-08 13:23:53','2006-02-15 22:13:08'),(3132,116,2,5169,'2.99','2005-07-09 09:22:25','2006-02-15 22:13:08'),(3133,116,1,6557,'4.99','2005-07-12 05:12:03','2006-02-15 22:13:08'),(3134,116,1,7238,'0.99','2005-07-27 10:13:41','2006-02-15 22:13:08'),(3135,116,2,7763,'5.99','2005-07-28 06:35:16','2006-02-15 22:13:08'),(3136,116,2,9245,'6.99','2005-07-30 14:07:50','2006-02-15 22:13:08'),(3137,116,1,9562,'3.99','2005-07-31 02:23:20','2006-02-15 22:13:08'),(3138,116,2,10250,'1.99','2005-08-01 02:38:42','2006-02-15 22:13:08'),(3139,116,1,10801,'1.99','2005-08-01 22:09:35','2006-02-15 22:13:08'),(3140,116,2,11016,'4.99','2005-08-02 05:19:13','2006-02-15 22:13:08'),(3141,116,2,12376,'2.99','2005-08-18 08:20:29','2006-02-15 22:13:08'),(3142,116,2,13146,'7.99','2005-08-19 12:54:42','2006-02-15 22:13:08'),(3143,116,1,13369,'0.99','2005-08-19 21:19:47','2006-02-15 22:13:08'),(3144,116,1,13474,'0.99','2005-08-20 01:04:32','2006-02-15 22:13:08'),(3145,116,1,13775,'6.99','2005-08-20 11:56:30','2006-02-15 22:13:08'),(3146,116,2,14763,'11.99','2005-08-21 23:34:00','2006-02-15 22:13:08'),(3147,116,1,14907,'2.99','2005-08-22 04:44:09','2006-02-15 22:13:08'),(3148,117,1,700,'0.99','2005-05-29 02:18:54','2006-02-15 22:13:08'),(3149,117,2,1114,'0.99','2005-05-31 16:00:33','2006-02-15 22:13:08'),(3150,117,1,1755,'2.99','2005-06-16 17:18:44','2006-02-15 22:13:08'),(3151,117,2,3218,'2.99','2005-06-21 01:38:09','2006-02-15 22:13:08'),(3152,117,2,5506,'5.99','2005-07-10 00:45:48','2006-02-15 22:13:08'),(3153,117,1,5673,'0.99','2005-07-10 08:21:54','2006-02-15 22:13:08'),(3154,117,1,6093,'9.99','2005-07-11 05:52:50','2006-02-15 22:13:08'),(3155,117,1,6449,'6.99','2005-07-12 00:48:58','2006-02-15 22:13:08'),(3156,117,1,8687,'2.99','2005-07-29 16:19:17','2006-02-15 22:13:08'),(3157,117,2,10556,'2.99','2005-08-01 12:58:42','2006-02-15 22:13:08'),(3158,117,1,10558,'4.99','2005-08-01 13:00:20','2006-02-15 22:13:08'),(3159,117,2,11467,'3.99','2005-08-02 21:47:07','2006-02-15 22:13:08'),(3160,117,1,12143,'2.99','2005-08-18 00:06:26','2006-02-15 22:13:08'),(3161,117,1,12337,'2.99','2005-08-18 07:02:24','2006-02-15 22:13:08'),(3162,117,1,12575,'6.99','2005-08-18 15:37:42','2006-02-15 22:13:08'),(3163,117,1,12618,'4.99','2005-08-18 17:24:02','2006-02-15 22:13:08'),(3164,117,1,14784,'0.99','2005-08-22 00:23:13','2006-02-15 22:13:08'),(3165,117,2,14854,'2.99','2005-08-22 02:26:47','2006-02-15 22:13:08'),(3166,117,1,15432,'2.99','2005-08-23 00:26:52','2006-02-15 22:13:09'),(3167,118,2,351,'5.99','2005-05-27 05:39:03','2006-02-15 22:13:09'),(3168,118,2,1766,'4.99','2005-06-16 17:59:37','2006-02-15 22:13:09'),(3169,118,2,2217,'0.99','2005-06-18 03:12:29','2006-02-15 22:13:09'),(3170,118,1,3263,'4.99','2005-06-21 04:15:52','2006-02-15 22:13:09'),(3171,118,1,4966,'0.99','2005-07-08 23:47:25','2006-02-15 22:13:09'),(3172,118,1,5829,'1.99','2005-07-10 16:29:41','2006-02-15 22:13:09'),(3173,118,1,6377,'0.99','2005-07-11 21:41:16','2006-02-15 22:13:09'),(3174,118,1,6507,'1.99','2005-07-12 03:33:12','2006-02-15 22:13:09'),(3175,118,1,7196,'2.99','2005-07-27 08:49:08','2006-02-15 22:13:09'),(3176,118,1,7850,'4.99','2005-07-28 09:31:13','2006-02-15 22:13:09'),(3177,118,2,7956,'4.99','2005-07-28 13:32:17','2006-02-15 22:13:09'),(3178,118,1,8314,'3.99','2005-07-29 03:35:04','2006-02-15 22:13:09'),(3179,118,2,8760,'7.99','2005-07-29 19:22:40','2006-02-15 22:13:09'),(3180,118,1,8881,'4.99','2005-07-30 00:22:31','2006-02-15 22:13:09'),(3181,118,2,10045,'1.99','2005-07-31 19:04:35','2006-02-15 22:13:09'),(3182,118,2,12538,'2.99','2005-08-18 14:09:09','2006-02-15 22:13:09'),(3183,118,2,13193,'6.99','2005-08-19 14:33:45','2006-02-15 22:13:09'),(3184,118,2,14394,'5.99','2005-08-21 10:23:10','2006-02-15 22:13:09'),(3185,118,2,14595,'7.99','2005-08-21 17:35:17','2006-02-15 22:13:09'),(3186,118,1,14924,'2.99','2005-08-22 05:15:17','2006-02-15 22:13:09'),(3187,118,1,15731,'0.99','2005-08-23 11:33:25','2006-02-15 22:13:09'),(3188,119,2,67,'0.99','2005-05-25 09:41:01','2006-02-15 22:13:09'),(3189,119,1,235,'5.99','2005-05-26 11:51:09','2006-02-15 22:13:09'),(3190,119,2,540,'6.99','2005-05-28 06:40:25','2006-02-15 22:13:09'),(3191,119,1,1179,'7.99','2005-06-15 00:36:50','2006-02-15 22:13:09'),(3192,119,2,2009,'2.99','2005-06-17 11:48:31','2006-02-15 22:13:09'),(3193,119,2,3388,'5.99','2005-06-21 14:34:51','2006-02-15 22:13:09'),(3194,119,2,4840,'8.99','2005-07-08 18:18:16','2006-02-15 22:13:09'),(3195,119,1,5176,'5.99','2005-07-09 09:39:31','2006-02-15 22:13:09'),(3196,119,1,5268,'0.99','2005-07-09 14:22:43','2006-02-15 22:13:09'),(3197,119,1,6079,'7.99','2005-07-11 05:07:14','2006-02-15 22:13:09'),(3198,119,2,6330,'0.99','2005-07-11 19:15:42','2006-02-15 22:13:09'),(3199,119,2,8140,'4.99','2005-07-28 20:17:50','2006-02-15 22:13:09'),(3200,119,1,8183,'5.99','2005-07-28 22:21:07','2006-02-15 22:13:09'),(3201,119,1,8304,'4.99','2005-07-29 03:08:30','2006-02-15 22:13:09'),(3202,119,2,9028,'2.99','2005-07-30 06:00:35','2006-02-15 22:13:09'),(3203,119,1,10101,'0.99','2005-07-31 20:47:29','2006-02-15 22:13:09'),(3204,119,1,10366,'3.99','2005-08-01 06:09:37','2006-02-15 22:13:09'),(3205,119,2,10552,'2.99','2005-08-01 12:49:44','2006-02-15 22:13:09'),(3206,119,1,10681,'4.99','2005-08-01 17:30:35','2006-02-15 22:13:09'),(3207,119,2,11377,'2.99','2005-08-02 18:16:47','2006-02-15 22:13:09'),(3208,119,1,11520,'5.99','2005-08-17 00:04:28','2006-02-15 22:13:09'),(3209,119,2,12576,'2.99','2005-08-18 15:38:31','2006-02-15 22:13:10'),(3210,119,2,12603,'3.99','2005-08-18 16:56:20','2006-02-15 22:13:10'),(3211,119,2,12842,'6.99','2005-08-19 01:57:21','2006-02-15 22:13:10'),(3212,119,1,13581,'4.99','2005-08-20 05:26:15','2006-02-15 22:13:10'),(3213,119,2,14349,'3.99','2005-08-21 08:54:53','2006-02-15 22:13:10'),(3214,119,2,14382,'2.99','2005-08-21 10:01:03','2006-02-15 22:13:10'),(3215,119,2,14643,'6.99','2005-08-21 19:11:58','2006-02-15 22:13:10'),(3216,119,2,14659,'0.99','2005-08-21 19:42:36','2006-02-15 22:13:10'),(3217,119,1,15111,'4.99','2005-08-22 12:21:43','2006-02-15 22:13:10'),(3218,119,2,15131,'3.99','2005-08-22 13:06:26','2006-02-15 22:13:10'),(3219,119,2,15171,'6.99','2005-08-22 15:23:59','2006-02-15 22:13:10'),(3220,119,1,15844,'2.99','2005-08-23 15:38:12','2006-02-15 22:13:10'),(3221,119,2,16028,'3.99','2005-08-23 21:52:56','2006-02-15 22:13:10'),(3222,120,2,68,'7.99','2005-05-25 09:47:31','2006-02-15 22:13:10'),(3223,120,2,532,'0.99','2005-05-28 05:36:58','2006-02-15 22:13:10'),(3224,120,1,1374,'3.99','2005-06-15 14:49:54','2006-02-15 22:13:10'),(3225,120,1,1820,'4.99','2005-06-16 21:34:50','2006-02-15 22:13:10'),(3226,120,2,1932,'2.99','2005-06-17 06:54:41','2006-02-15 22:13:10'),(3227,120,1,2169,'4.99','2005-06-17 23:57:23','2006-02-15 22:13:10'),(3228,120,1,2803,'9.99','2005-06-19 19:18:27','2006-02-15 22:13:10'),(3229,120,1,3133,'2.99','2005-06-20 19:18:32','2006-02-15 22:13:10'),(3230,120,1,4001,'5.99','2005-07-07 00:07:00','2006-02-15 22:13:10'),(3231,120,2,4272,'3.99','2005-07-07 14:39:20','2006-02-15 22:13:10'),(3232,120,2,4342,'0.99','2005-07-07 18:47:03','2006-02-15 22:13:10'),(3233,120,2,4666,'9.99','2005-07-08 10:05:02','2006-02-15 22:13:10'),(3234,120,1,4942,'1.99','2005-07-08 22:42:47','2006-02-15 22:13:10'),(3235,120,2,5288,'1.99','2005-07-09 15:13:07','2006-02-15 22:13:10'),(3236,120,2,6503,'0.99','2005-07-12 03:18:07','2006-02-15 22:13:10'),(3237,120,1,6989,'4.99','2005-07-27 01:00:34','2006-02-15 22:13:10'),(3238,120,2,8046,'0.99','2005-07-28 16:49:41','2006-02-15 22:13:10'),(3239,120,2,8756,'1.99','2005-07-29 19:18:57','2006-02-15 22:13:10'),(3240,120,1,8998,'6.99','2005-07-30 04:54:14','2006-02-15 22:13:10'),(3241,120,2,9907,'6.99','2005-07-31 14:39:50','2006-02-15 22:13:10'),(3242,120,2,10161,'0.99','2005-07-31 23:09:41','2006-02-15 22:13:10'),(3243,120,2,10696,'4.99','2005-08-01 18:18:13','2006-02-15 22:13:10'),(3244,120,1,10940,'3.99','2005-08-02 03:08:29','2006-02-15 22:13:10'),(3245,120,2,11133,'0.99','2005-08-02 09:15:45','2006-02-15 22:13:10'),(3246,120,2,13167,'2.99','2005-08-19 13:36:41','2006-02-15 22:13:10'),(3247,120,2,13375,'7.99','2005-08-19 21:31:31','2006-02-15 22:13:10'),(3248,120,1,14001,'2.99','2005-08-20 20:07:15','2006-02-15 22:13:10'),(3249,120,1,14153,'4.99','2005-08-21 02:24:33','2006-02-15 22:13:10'),(3250,120,1,14246,'4.99','2005-08-21 05:34:09','2006-02-15 22:13:10'),(3251,120,2,14460,'9.99','2005-08-21 12:48:48','2006-02-15 22:13:10'),(3252,120,2,14969,'6.99','2005-08-22 06:49:15','2006-02-15 22:13:10'),(3253,120,1,15780,'4.99','2006-02-14 15:16:03','2006-02-15 22:13:10'),(3254,121,1,217,'4.99','2005-05-26 09:24:26','2006-02-15 22:13:10'),(3255,121,1,1634,'2.99','2005-06-16 08:16:05','2006-02-15 22:13:10'),(3256,121,1,1833,'1.99','2005-06-16 22:45:03','2006-02-15 22:13:10'),(3257,121,2,5670,'0.99','2005-07-10 08:14:52','2006-02-15 22:13:10'),(3258,121,2,6780,'4.99','2005-07-12 16:18:12','2006-02-15 22:13:11'),(3259,121,2,7114,'0.99','2005-07-27 05:42:13','2006-02-15 22:13:11'),(3260,121,1,7185,'0.99','2005-07-27 08:23:54','2006-02-15 22:13:11'),(3261,121,2,7298,'2.99','2005-07-27 12:45:14','2006-02-15 22:13:11'),(3262,121,1,8370,'6.99','2005-07-29 05:16:21','2006-02-15 22:13:11'),(3263,121,2,8788,'1.99','2005-07-29 20:46:44','2006-02-15 22:13:11'),(3264,121,2,8875,'2.99','2005-07-30 00:15:09','2006-02-15 22:13:11'),(3265,121,2,8969,'8.99','2005-07-30 04:00:19','2006-02-15 22:13:11'),(3266,121,2,10457,'5.99','2005-08-01 09:17:34','2006-02-15 22:13:11'),(3267,121,2,11720,'8.99','2005-08-17 07:46:54','2006-02-15 22:13:11'),(3268,121,2,12242,'1.99','2005-08-18 03:37:31','2006-02-15 22:13:11'),(3269,121,2,12428,'3.99','2005-08-18 10:24:21','2006-02-15 22:13:11'),(3270,121,2,12734,'1.99','2005-08-18 22:04:52','2006-02-15 22:13:11'),(3271,121,1,12881,'5.99','2005-08-19 03:28:13','2006-02-15 22:13:11'),(3272,121,2,12892,'0.99','2005-08-19 03:46:34','2006-02-15 22:13:11'),(3273,121,1,14138,'7.99','2005-08-21 01:59:37','2006-02-15 22:13:11'),(3274,121,1,14177,'4.99','2005-08-21 03:11:33','2006-02-15 22:13:11'),(3275,121,2,14412,'9.99','2005-08-21 11:02:09','2006-02-15 22:13:11'),(3276,121,1,14464,'2.99','2005-08-21 12:52:54','2006-02-15 22:13:11'),(3277,121,2,15114,'7.99','2005-08-22 12:24:55','2006-02-15 22:13:11'),(3278,121,1,15369,'0.99','2005-08-22 21:58:06','2006-02-15 22:13:11'),(3279,121,1,16041,'2.99','2005-08-23 22:20:26','2006-02-15 22:13:11'),(3280,122,2,853,'0.99','2005-05-30 01:43:31','2006-02-15 22:13:11'),(3281,122,2,1135,'4.99','2005-05-31 19:15:11','2006-02-15 22:13:11'),(3282,122,1,1211,'0.99','2005-06-15 03:01:20','2006-02-15 22:13:11'),(3283,122,2,1442,'7.99','2005-06-15 18:55:34','2006-02-15 22:13:11'),(3284,122,2,2240,'3.99','2005-06-18 04:28:27','2006-02-15 22:13:11'),(3285,122,1,2253,'0.99','2005-06-18 05:11:43','2006-02-15 22:13:11'),(3286,122,1,2482,'4.99','2005-06-18 21:10:44','2006-02-15 22:13:11'),(3287,122,2,2595,'4.99','2005-06-19 05:43:55','2006-02-15 22:13:11'),(3288,122,2,2834,'1.99','2005-06-19 21:41:46','2006-02-15 22:13:11'),(3289,122,1,3778,'2.99','2005-07-06 13:44:48','2006-02-15 22:13:11'),(3290,122,2,3986,'4.99','2005-07-06 23:25:13','2006-02-15 22:13:11'),(3291,122,1,4239,'7.99','2005-07-07 13:23:17','2006-02-15 22:13:11'),(3292,122,1,4568,'4.99','2005-07-08 05:23:59','2006-02-15 22:13:11'),(3293,122,2,5235,'6.99','2005-07-09 12:54:25','2006-02-15 22:13:11'),(3294,122,2,6231,'0.99','2005-07-11 14:02:36','2006-02-15 22:13:11'),(3295,122,1,6427,'0.99','2005-07-11 23:57:34','2006-02-15 22:13:11'),(3296,122,1,6436,'0.99','2005-07-12 00:18:42','2006-02-15 22:13:11'),(3297,122,2,6974,'7.99','2005-07-27 00:39:16','2006-02-15 22:13:11'),(3298,122,1,7267,'2.99','2005-07-27 11:22:55','2006-02-15 22:13:11'),(3299,122,2,7950,'4.99','2005-07-28 13:21:00','2006-02-15 22:13:11'),(3300,122,1,8077,'2.99','2005-07-28 17:54:35','2006-02-15 22:13:11'),(3301,122,2,8177,'0.99','2005-07-28 21:43:54','2006-02-15 22:13:11'),(3302,122,1,8772,'5.99','2005-07-29 19:55:25','2006-02-15 22:13:11'),(3303,122,2,9910,'4.99','2005-07-31 14:47:57','2006-02-15 22:13:11'),(3304,122,1,10626,'1.99','2005-08-01 15:32:41','2006-02-15 22:13:11'),(3305,122,2,11044,'3.99','2005-08-02 06:05:27','2006-02-15 22:13:12'),(3306,122,2,11197,'2.99','2005-08-02 11:45:07','2006-02-15 22:13:12'),(3307,122,2,12476,'4.99','2005-08-18 12:22:40','2006-02-15 22:13:12'),(3308,122,2,12711,'4.99','2005-08-18 21:03:32','2006-02-15 22:13:12'),(3309,122,1,13171,'2.99','2005-08-19 13:48:54','2006-02-15 22:13:12'),(3310,122,1,13812,'4.99','2005-08-20 13:01:43','2006-02-15 22:13:12'),(3311,122,2,14666,'5.99','2005-08-21 19:51:09','2006-02-15 22:13:12'),(3312,123,1,992,'2.99','2005-05-30 23:47:56','2006-02-15 22:13:12'),(3313,123,2,1490,'4.99','2005-06-15 21:42:17','2006-02-15 22:13:12'),(3314,123,1,1751,'0.99','2005-06-16 17:00:14','2006-02-15 22:13:12'),(3315,123,2,1775,'4.99','2005-06-16 18:28:19','2006-02-15 22:13:12'),(3316,123,2,1951,'0.99','2005-06-17 08:30:35','2006-02-15 22:13:12'),(3317,123,1,2594,'2.99','2005-06-19 05:43:43','2006-02-15 22:13:12'),(3318,123,1,4442,'3.99','2005-07-07 23:05:30','2006-02-15 22:13:12'),(3319,123,1,4860,'8.99','2005-07-08 18:54:07','2006-02-15 22:13:12'),(3320,123,2,7535,'4.99','2005-07-27 21:32:39','2006-02-15 22:13:12'),(3321,123,1,7727,'2.99','2005-07-28 04:52:43','2006-02-15 22:13:12'),(3322,123,2,7768,'0.99','2005-07-28 06:44:03','2006-02-15 22:13:12'),(3323,123,1,7852,'2.99','2005-07-28 09:34:29','2006-02-15 22:13:12'),(3324,123,1,7969,'5.99','2005-07-28 13:57:37','2006-02-15 22:13:12'),(3325,123,2,8699,'4.99','2005-07-29 16:53:00','2006-02-15 22:13:12'),(3326,123,2,9529,'4.99','2005-07-31 01:05:26','2006-02-15 22:13:12'),(3327,123,1,10066,'4.99','2005-07-31 19:30:01','2006-02-15 22:13:12'),(3328,123,2,10295,'8.99','2005-08-01 03:53:49','2006-02-15 22:13:12'),(3329,123,1,12360,'2.99','2005-08-18 07:46:35','2006-02-15 22:13:12'),(3330,123,1,12402,'3.99','2005-08-18 09:27:34','2006-02-15 22:13:12'),(3331,123,1,13668,'2.99','2005-08-20 08:26:06','2006-02-15 22:13:12'),(3332,123,2,15152,'7.99','2005-08-22 14:25:21','2006-02-15 22:13:12'),(3333,123,2,15525,'4.99','2005-08-23 03:43:32','2006-02-15 22:13:12'),(3334,123,1,15621,'1.99','2005-08-23 07:13:43','2006-02-15 22:13:12'),(3335,123,2,15787,'2.99','2005-08-23 13:51:57','2006-02-15 22:13:12'),(3336,124,1,775,'0.99','2005-05-29 13:23:26','2006-02-15 22:13:12'),(3337,124,2,1039,'4.99','2005-05-31 05:32:29','2006-02-15 22:13:12'),(3338,124,2,1057,'3.99','2005-05-31 07:58:06','2006-02-15 22:13:12'),(3339,124,2,1130,'5.99','2005-05-31 18:13:57','2006-02-15 22:13:12'),(3340,124,2,2336,'1.99','2005-06-18 11:00:05','2006-02-15 22:13:12'),(3341,124,1,4341,'7.99','2005-07-07 18:44:23','2006-02-15 22:13:12'),(3342,124,2,4709,'2.99','2005-07-08 12:04:34','2006-02-15 22:13:12'),(3343,124,1,5566,'2.99','2005-07-10 03:30:17','2006-02-15 22:13:12'),(3344,124,1,6411,'2.99','2005-07-11 23:10:50','2006-02-15 22:13:12'),(3345,124,1,7519,'6.99','2005-07-27 21:01:41','2006-02-15 22:13:12'),(3346,124,2,7700,'8.99','2005-07-28 03:54:14','2006-02-15 22:13:12'),(3347,124,2,8524,'0.99','2005-07-29 10:20:07','2006-02-15 22:13:12'),(3348,124,1,9986,'3.99','2005-07-31 17:16:50','2006-02-15 22:13:12'),(3349,124,2,11493,'5.99','2005-08-02 22:47:00','2006-02-15 22:13:12'),(3350,124,1,12835,'4.99','2005-08-19 01:47:45','2006-02-15 22:13:12'),(3351,124,2,14737,'0.99','2005-08-21 22:27:11','2006-02-15 22:13:13'),(3352,124,2,15266,'4.99','2005-08-22 18:37:24','2006-02-15 22:13:13'),(3353,124,2,16023,'0.99','2005-08-23 21:45:02','2006-02-15 22:13:13'),(3354,125,2,185,'3.99','2005-05-26 05:30:03','2006-02-15 22:13:13'),(3355,125,1,1481,'2.99','2005-06-15 21:17:58','2006-02-15 22:13:13'),(3356,125,1,2355,'3.99','2005-06-18 12:57:06','2006-02-15 22:13:13'),(3357,125,1,2826,'7.99','2005-06-19 20:41:35','2006-02-15 22:13:13'),(3358,125,1,3118,'4.99','2005-06-20 18:05:57','2006-02-15 22:13:13'),(3359,125,1,3617,'4.99','2005-07-06 05:58:06','2006-02-15 22:13:13'),(3360,125,1,5200,'2.99','2005-07-09 10:52:09','2006-02-15 22:13:13'),(3361,125,2,5523,'7.99','2005-07-10 01:47:55','2006-02-15 22:13:13'),(3362,125,1,6055,'0.99','2005-07-11 03:59:08','2006-02-15 22:13:13'),(3363,125,2,6268,'6.99','2005-07-11 15:55:34','2006-02-15 22:13:13'),(3364,125,1,7323,'4.99','2005-07-27 13:39:40','2006-02-15 22:13:13'),(3365,125,2,7879,'0.99','2005-07-28 10:27:46','2006-02-15 22:13:13'),(3366,125,2,7922,'0.99','2005-07-28 12:05:25','2006-02-15 22:13:13'),(3367,125,2,8375,'2.99','2005-07-29 05:25:30','2006-02-15 22:13:13'),(3368,125,1,8433,'2.99','2005-07-29 07:19:16','2006-02-15 22:13:13'),(3369,125,1,8832,'4.99','2005-07-29 22:37:49','2006-02-15 22:13:13'),(3370,125,1,9129,'9.99','2005-07-30 09:51:21','2006-02-15 22:13:13'),(3371,125,1,9496,'4.99','2005-07-30 23:55:20','2006-02-15 22:13:13'),(3372,125,2,9504,'0.99','2005-07-31 00:09:07','2006-02-15 22:13:13'),(3373,125,1,9722,'4.99','2005-07-31 08:29:48','2006-02-15 22:13:13'),(3374,125,2,9734,'2.99','2005-07-31 08:57:45','2006-02-15 22:13:13'),(3375,125,1,10583,'2.99','2005-08-01 13:54:35','2006-02-15 22:13:13'),(3376,125,1,10699,'2.99','2005-08-01 18:24:51','2006-02-15 22:13:13'),(3377,125,2,11279,'7.99','2005-08-02 14:30:03','2006-02-15 22:13:13'),(3378,125,1,11806,'4.99','2005-08-17 11:49:28','2006-02-15 22:13:13'),(3379,125,1,11832,'4.99','2005-08-17 12:55:31','2006-02-15 22:13:13'),(3380,125,1,11999,'0.99','2005-08-17 18:47:07','2006-02-15 22:13:13'),(3381,125,1,12075,'4.99','2005-08-17 21:54:55','2006-02-15 22:13:13'),(3382,125,2,12262,'2.99','2005-08-18 04:16:15','2006-02-15 22:13:13'),(3383,125,2,13441,'6.99','2005-08-19 23:48:23','2006-02-15 22:13:13'),(3384,125,2,14456,'2.99','2005-08-21 12:38:09','2006-02-15 22:13:13'),(3385,125,1,15055,'2.99','2005-08-22 10:14:39','2006-02-15 22:13:13'),(3386,126,1,9,'4.99','2005-05-25 00:00:40','2006-02-15 22:13:13'),(3387,126,1,752,'4.99','2005-05-29 10:14:15','2006-02-15 22:13:13'),(3388,126,2,1054,'4.99','2005-05-31 07:33:25','2006-02-15 22:13:13'),(3389,126,1,3450,'2.99','2005-06-21 21:01:57','2006-02-15 22:13:13'),(3390,126,2,3502,'5.99','2005-07-06 00:15:06','2006-02-15 22:13:13'),(3391,126,1,3725,'4.99','2005-07-06 11:15:04','2006-02-15 22:13:13'),(3392,126,1,3804,'7.99','2005-07-06 15:08:08','2006-02-15 22:13:13'),(3393,126,1,4691,'0.99','2005-07-08 11:04:53','2006-02-15 22:13:13'),(3394,126,2,4730,'2.99','2005-07-08 12:59:49','2006-02-15 22:13:13'),(3395,126,2,5137,'0.99','2005-07-09 08:00:34','2006-02-15 22:13:13'),(3396,126,1,5865,'0.99','2005-07-10 18:31:05','2006-02-15 22:13:13'),(3397,126,1,6747,'0.99','2005-07-12 14:33:21','2006-02-15 22:13:14'),(3398,126,2,6755,'6.99','2005-07-12 15:07:49','2006-02-15 22:13:14'),(3399,126,1,7962,'0.99','2005-07-28 13:48:09','2006-02-15 22:13:14'),(3400,126,1,8091,'2.99','2005-07-28 18:27:29','2006-02-15 22:13:14'),(3401,126,1,9492,'6.99','2005-07-30 23:52:21','2006-02-15 22:13:14'),(3402,126,2,10032,'4.99','2005-07-31 18:41:55','2006-02-15 22:13:14'),(3403,126,1,11196,'9.99','2005-08-02 11:42:40','2006-02-15 22:13:14'),(3404,126,2,11613,'4.99','2005-08-17 03:50:33','2006-02-15 22:13:14'),(3405,126,1,11779,'3.99','2005-08-17 10:31:58','2006-02-15 22:13:14'),(3406,126,1,11801,'0.99','2005-08-17 11:30:11','2006-02-15 22:13:14'),(3407,126,2,12991,'2.99','2005-08-19 07:21:24','2006-02-15 22:13:14'),(3408,126,2,13015,'7.99','2005-08-19 07:56:51','2006-02-15 22:13:14'),(3409,126,2,13177,'0.99','2005-08-19 13:56:58','2006-02-15 22:13:14'),(3410,126,2,14477,'2.99','2005-08-21 13:32:38','2006-02-15 22:13:14'),(3411,126,2,14577,'2.99','2005-08-21 16:52:29','2006-02-15 22:13:14'),(3412,126,2,15741,'4.99','2005-08-23 12:10:54','2006-02-15 22:13:14'),(3413,126,1,16007,'7.99','2005-08-23 21:02:43','2006-02-15 22:13:14'),(3414,127,1,452,'0.99','2005-05-27 19:30:33','2006-02-15 22:13:14'),(3415,127,1,708,'0.99','2005-05-29 03:23:47','2006-02-15 22:13:14'),(3416,127,1,1293,'4.99','2005-06-15 09:06:24','2006-02-15 22:13:14'),(3417,127,2,1803,'2.99','2005-06-16 20:32:47','2006-02-15 22:13:14'),(3418,127,2,2412,'3.99','2005-06-18 16:58:58','2006-02-15 22:13:14'),(3419,127,1,4652,'5.99','2005-07-08 09:47:51','2006-02-15 22:13:14'),(3420,127,2,4811,'5.99','2005-07-08 17:04:24','2006-02-15 22:13:14'),(3421,127,2,5499,'2.99','2005-07-10 00:27:45','2006-02-15 22:13:14'),(3422,127,2,5983,'2.99','2005-07-11 00:34:11','2006-02-15 22:13:14'),(3423,127,1,7912,'4.99','2005-07-28 11:46:58','2006-02-15 22:13:14'),(3424,127,2,8209,'6.99','2005-07-28 23:29:28','2006-02-15 22:13:14'),(3425,127,1,9859,'6.99','2005-07-31 13:02:55','2006-02-15 22:13:14'),(3426,127,1,10197,'2.99','2005-08-01 00:35:25','2006-02-15 22:13:14'),(3427,127,1,10787,'10.99','2005-08-01 21:35:01','2006-02-15 22:13:14'),(3428,127,1,10973,'7.99','2005-08-02 04:09:42','2006-02-15 22:13:14'),(3429,127,1,11235,'0.99','2005-08-02 13:13:21','2006-02-15 22:13:14'),(3430,127,2,12060,'4.99','2005-08-17 21:11:57','2006-02-15 22:13:14'),(3431,127,2,12820,'2.99','2005-08-19 01:05:08','2006-02-15 22:13:14'),(3432,127,2,13043,'4.99','2005-08-19 09:07:13','2006-02-15 22:13:14'),(3433,127,1,13091,'2.99','2005-08-19 10:40:10','2006-02-15 22:13:14'),(3434,127,2,14030,'2.99','2005-08-20 21:23:54','2006-02-15 22:13:14'),(3435,127,1,14189,'2.99','2005-08-21 03:32:17','2006-02-15 22:13:14'),(3436,127,1,15463,'5.99','2005-08-23 01:15:07','2006-02-15 22:13:14'),(3437,127,2,15736,'5.99','2005-08-23 11:40:30','2006-02-15 22:13:14'),(3438,128,2,888,'5.99','2005-05-30 07:13:14','2006-02-15 22:13:14'),(3439,128,2,1131,'2.99','2005-05-31 18:44:19','2006-02-15 22:13:14'),(3440,128,2,2519,'7.99','2005-06-19 00:19:21','2006-02-15 22:13:14'),(3441,128,1,2565,'0.99','2005-06-19 03:44:03','2006-02-15 22:13:14'),(3442,128,1,3751,'0.99','2005-07-06 12:23:41','2006-02-15 22:13:14'),(3443,128,2,3995,'5.99','2005-07-06 23:43:03','2006-02-15 22:13:14'),(3444,128,1,5270,'2.99','2005-07-09 14:23:46','2006-02-15 22:13:14'),(3445,128,1,5647,'4.99','2005-07-10 07:08:40','2006-02-15 22:13:15'),(3446,128,2,5997,'4.99','2005-07-11 01:19:50','2006-02-15 22:13:15'),(3447,128,2,6186,'2.99','2005-07-11 11:26:41','2006-02-15 22:13:15'),(3448,128,2,6481,'6.99','2005-07-12 01:50:15','2006-02-15 22:13:15'),(3449,128,2,6687,'2.99','2005-07-12 12:19:23','2006-02-15 22:13:15'),(3450,128,2,7582,'4.99','2005-07-27 23:15:14','2006-02-15 22:13:15'),(3451,128,2,8415,'2.99','2005-07-29 06:52:27','2006-02-15 22:13:15'),(3452,128,2,9215,'5.99','2005-07-30 13:11:11','2006-02-15 22:13:15'),(3453,128,2,9234,'2.99','2005-07-30 13:45:54','2006-02-15 22:13:15'),(3454,128,1,9433,'5.99','2005-07-30 21:28:17','2006-02-15 22:13:15'),(3455,128,2,9858,'2.99','2005-07-31 13:02:07','2006-02-15 22:13:15'),(3456,128,1,9952,'3.99','2005-07-31 15:52:37','2006-02-15 22:13:15'),(3457,128,1,10011,'2.99','2005-07-31 18:02:41','2006-02-15 22:13:15'),(3458,128,1,10394,'2.99','2005-08-01 06:58:17','2006-02-15 22:13:15'),(3459,128,2,12731,'2.99','2005-08-18 21:55:38','2006-02-15 22:13:15'),(3460,128,2,12843,'2.99','2005-08-19 01:58:54','2006-02-15 22:13:15'),(3461,128,2,12910,'0.99','2005-08-19 04:23:13','2006-02-15 22:13:15'),(3462,128,2,13027,'0.99','2005-08-19 08:25:16','2006-02-15 22:13:15'),(3463,128,2,13181,'5.99','2005-08-19 14:00:56','2006-02-15 22:13:15'),(3464,128,1,13509,'0.99','2005-08-20 02:14:16','2006-02-15 22:13:15'),(3465,128,2,13964,'2.99','2005-08-20 18:24:26','2006-02-15 22:13:15'),(3466,128,2,14157,'0.99','2005-08-21 02:43:15','2006-02-15 22:13:15'),(3467,128,1,14925,'8.99','2005-08-22 05:16:16','2006-02-15 22:13:15'),(3468,128,1,15220,'3.99','2005-08-22 17:02:23','2006-02-15 22:13:15'),(3469,128,1,15835,'8.99','2005-08-23 15:25:27','2006-02-15 22:13:15'),(3470,129,2,1732,'0.99','2005-06-16 15:34:41','2006-02-15 22:13:15'),(3471,129,1,2727,'3.99','2005-06-19 15:02:39','2006-02-15 22:13:15'),(3472,129,2,2768,'0.99','2005-06-19 17:46:52','2006-02-15 22:13:15'),(3473,129,2,2795,'4.99','2005-06-19 18:58:53','2006-02-15 22:13:15'),(3474,129,1,3183,'4.99','2005-06-20 22:55:55','2006-02-15 22:13:15'),(3475,129,1,3219,'3.99','2005-06-21 01:43:26','2006-02-15 22:13:15'),(3476,129,1,3689,'0.99','2005-07-06 09:43:01','2006-02-15 22:13:15'),(3477,129,2,3900,'4.99','2005-07-06 19:21:28','2006-02-15 22:13:15'),(3478,129,2,3936,'0.99','2005-07-06 21:15:03','2006-02-15 22:13:15'),(3479,129,2,4256,'2.99','2005-07-07 14:14:36','2006-02-15 22:13:15'),(3480,129,1,4602,'0.99','2005-07-08 06:52:40','2006-02-15 22:13:15'),(3481,129,1,4896,'2.99','2005-07-08 20:23:15','2006-02-15 22:13:15'),(3482,129,1,4996,'0.99','2005-07-09 00:59:46','2006-02-15 22:13:15'),(3483,129,1,5127,'0.99','2005-07-09 07:25:47','2006-02-15 22:13:15'),(3484,129,2,5350,'4.99','2005-07-09 17:39:30','2006-02-15 22:13:15'),(3485,129,1,8339,'4.99','2005-07-29 04:41:13','2006-02-15 22:13:15'),(3486,129,1,8345,'2.99','2005-07-29 04:47:37','2006-02-15 22:13:15'),(3487,129,2,9823,'4.99','2005-07-31 11:49:00','2006-02-15 22:13:15'),(3488,129,1,9983,'7.99','2005-07-31 17:09:36','2006-02-15 22:13:15'),(3489,129,1,10024,'7.99','2005-07-31 18:26:36','2006-02-15 22:13:15'),(3490,129,2,10167,'5.99','2005-07-31 23:24:31','2006-02-15 22:13:15'),(3491,129,2,10395,'2.99','2005-08-01 07:08:22','2006-02-15 22:13:15'),(3492,129,1,10468,'0.99','2005-08-01 09:48:29','2006-02-15 22:13:15'),(3493,129,1,10483,'2.99','2005-08-01 10:19:45','2006-02-15 22:13:16'),(3494,129,2,10550,'2.99','2005-08-01 12:46:52','2006-02-15 22:13:16'),(3495,129,2,10816,'4.99','2005-08-01 22:48:57','2006-02-15 22:13:16'),(3496,129,2,12612,'3.99','2005-08-18 17:10:05','2006-02-15 22:13:16'),(3497,129,2,12728,'4.99','2005-08-18 21:47:48','2006-02-15 22:13:16'),(3498,129,2,13653,'10.99','2005-08-20 07:54:54','2006-02-15 22:13:16'),(3499,129,1,13915,'4.99','2005-08-20 16:42:53','2006-02-15 22:13:16'),(3500,129,1,13919,'4.99','2005-08-20 16:47:34','2006-02-15 22:13:16'),(3501,129,1,13961,'0.99','2005-08-20 18:16:34','2006-02-15 22:13:16'),(3502,129,1,14353,'0.99','2005-08-21 09:07:50','2006-02-15 22:13:16'),(3503,129,2,14968,'1.99','2005-08-22 06:46:59','2006-02-15 22:13:16'),(3504,130,1,1,'2.99','2005-05-24 22:53:30','2006-02-15 22:13:16'),(3505,130,1,746,'2.99','2005-05-29 09:25:10','2006-02-15 22:13:16'),(3506,130,1,1630,'2.99','2005-06-16 07:55:01','2006-02-15 22:13:16'),(3507,130,2,1864,'2.99','2005-06-17 01:39:47','2006-02-15 22:13:16'),(3508,130,2,2163,'2.99','2005-06-17 23:46:16','2006-02-15 22:13:16'),(3509,130,2,2292,'2.99','2005-06-18 07:37:48','2006-02-15 22:13:16'),(3510,130,1,2535,'2.99','2005-06-19 01:39:04','2006-02-15 22:13:16'),(3511,130,1,2982,'6.99','2005-06-20 08:38:29','2006-02-15 22:13:16'),(3512,130,2,4339,'4.99','2005-07-07 18:41:42','2006-02-15 22:13:16'),(3513,130,2,4485,'4.99','2005-07-08 01:07:54','2006-02-15 22:13:16'),(3514,130,1,6353,'3.99','2005-07-11 20:48:56','2006-02-15 22:13:16'),(3515,130,1,7181,'4.99','2005-07-27 08:14:34','2006-02-15 22:13:16'),(3516,130,1,7728,'0.99','2005-07-28 04:56:33','2006-02-15 22:13:16'),(3517,130,1,9452,'0.99','2005-07-30 22:19:16','2006-02-15 22:13:16'),(3518,130,2,9637,'4.99','2005-07-31 05:18:54','2006-02-15 22:13:16'),(3519,130,2,9724,'5.99','2005-07-31 08:33:08','2006-02-15 22:13:16'),(3520,130,2,10568,'2.99','2005-08-01 13:17:28','2006-02-15 22:13:16'),(3521,130,2,10645,'5.99','2005-08-01 15:52:01','2006-02-15 22:13:16'),(3522,130,1,11811,'2.99','2005-08-17 11:59:18','2006-02-15 22:13:16'),(3523,130,1,12094,'2.99','2005-08-17 22:31:04','2006-02-15 22:13:16'),(3524,130,1,12777,'6.99','2005-08-18 23:39:22','2006-02-15 22:13:16'),(3525,130,2,14111,'0.99','2005-08-21 00:59:01','2006-02-15 22:13:16'),(3526,130,2,15574,'5.99','2005-08-23 05:29:32','2006-02-15 22:13:16'),(3527,130,1,15777,'4.99','2005-08-23 13:29:08','2006-02-15 22:13:16'),(3528,131,2,55,'2.99','2005-05-25 08:26:13','2006-02-15 22:13:16'),(3529,131,1,83,'4.99','2005-05-25 12:30:15','2006-02-15 22:13:16'),(3530,131,2,944,'7.99','2005-05-30 15:26:24','2006-02-15 22:13:16'),(3531,131,1,1646,'9.99','2005-06-16 09:12:53','2006-02-15 22:13:16'),(3532,131,2,1768,'4.99','2005-06-16 18:02:06','2006-02-15 22:13:16'),(3533,131,1,3515,'2.99','2005-07-06 00:48:55','2006-02-15 22:13:16'),(3534,131,1,5233,'4.99','2005-07-09 12:44:26','2006-02-15 22:13:16'),(3535,131,1,5395,'4.99','2005-07-09 19:42:37','2006-02-15 22:13:16'),(3536,131,1,5610,'2.99','2005-07-10 05:09:52','2006-02-15 22:13:16'),(3537,131,2,5726,'2.99','2005-07-10 11:22:08','2006-02-15 22:13:16'),(3538,131,1,5874,'3.99','2005-07-10 19:02:51','2006-02-15 22:13:16'),(3539,131,1,7557,'2.99','2005-07-27 22:18:19','2006-02-15 22:13:16'),(3540,131,2,8071,'0.99','2005-07-28 17:27:48','2006-02-15 22:13:16'),(3541,131,1,8267,'6.99','2005-07-29 01:21:02','2006-02-15 22:13:17'),(3542,131,1,8570,'8.99','2005-07-29 11:40:08','2006-02-15 22:13:17'),(3543,131,1,9323,'3.99','2005-07-30 17:21:44','2006-02-15 22:13:17'),(3544,131,1,10179,'2.99','2005-07-31 23:49:54','2006-02-15 22:13:17'),(3545,131,1,10459,'4.99','2005-08-01 09:20:09','2006-02-15 22:13:17'),(3546,131,1,10861,'1.99','2005-08-02 00:12:46','2006-02-15 22:13:17'),(3547,131,2,11971,'0.99','2005-08-17 17:53:42','2006-02-15 22:13:17'),(3548,131,1,11973,'2.99','2005-08-17 17:55:58','2006-02-15 22:13:17'),(3549,131,1,12216,'0.99','2005-08-18 02:37:07','2006-02-15 22:13:17'),(3550,131,2,12263,'0.99','2005-08-18 04:16:18','2006-02-15 22:13:17'),(3551,131,1,12372,'9.99','2005-08-18 08:04:35','2006-02-15 22:13:17'),(3552,131,2,13050,'6.99','2005-08-19 09:31:23','2006-02-15 22:13:17'),(3553,131,2,13346,'7.99','2005-08-19 20:28:21','2006-02-15 22:13:17'),(3554,131,2,13353,'2.99','2005-08-19 20:53:43','2006-02-15 22:13:17'),(3555,131,1,13407,'0.99','2005-08-19 22:26:26','2006-02-15 22:13:17'),(3556,131,2,15659,'2.99','2005-08-23 08:48:43','2006-02-15 22:13:17'),(3557,131,1,16042,'2.99','2005-08-23 22:20:40','2006-02-15 22:13:17'),(3558,132,1,1843,'0.99','2005-06-16 23:53:42','2006-02-15 22:13:17'),(3559,132,1,2208,'4.99','2005-06-18 02:22:07','2006-02-15 22:13:17'),(3560,132,1,2384,'0.99','2005-06-18 15:18:49','2006-02-15 22:13:17'),(3561,132,2,2608,'2.99','2005-06-19 07:10:36','2006-02-15 22:13:17'),(3562,132,2,2924,'4.99','2005-06-20 04:20:14','2006-02-15 22:13:17'),(3563,132,1,3121,'4.99','2005-06-20 18:23:30','2006-02-15 22:13:17'),(3564,132,1,3706,'0.99','2005-07-06 10:18:01','2006-02-15 22:13:17'),(3565,132,2,3825,'2.99','2005-07-06 15:50:03','2006-02-15 22:13:17'),(3566,132,1,4168,'4.99','2005-07-07 09:37:24','2006-02-15 22:13:17'),(3567,132,1,4534,'4.99','2005-07-08 03:36:55','2006-02-15 22:13:17'),(3568,132,1,4557,'5.99','2005-07-08 04:49:15','2006-02-15 22:13:17'),(3569,132,2,4903,'0.99','2005-07-08 20:50:05','2006-02-15 22:13:17'),(3570,132,1,5391,'2.99','2005-07-09 19:28:34','2006-02-15 22:13:17'),(3571,132,2,5684,'5.99','2005-07-10 08:59:03','2006-02-15 22:13:17'),(3572,132,1,5703,'0.99','2005-07-10 10:04:15','2006-02-15 22:13:17'),(3573,132,2,5715,'1.99','2005-07-10 10:48:03','2006-02-15 22:13:17'),(3574,132,1,6239,'6.99','2005-07-11 14:20:48','2006-02-15 22:13:17'),(3575,132,1,6978,'1.99','2005-07-27 00:47:40','2006-02-15 22:13:17'),(3576,132,2,7432,'0.99','2005-07-27 17:31:40','2006-02-15 22:13:17'),(3577,132,1,7631,'1.99','2005-07-28 01:01:15','2006-02-15 22:13:17'),(3578,132,2,10243,'4.99','2005-08-01 02:18:46','2006-02-15 22:13:17'),(3579,132,1,10400,'6.99','2005-08-01 07:18:24','2006-02-15 22:13:17'),(3580,132,2,10619,'3.99','2005-08-01 15:07:04','2006-02-15 22:13:17'),(3581,132,1,10638,'6.99','2005-08-01 15:44:20','2006-02-15 22:13:17'),(3582,132,2,11140,'0.99','2005-08-02 09:27:45','2006-02-15 22:13:17'),(3583,132,2,11812,'0.99','2005-08-17 12:00:54','2006-02-15 22:13:17'),(3584,132,2,12133,'0.99','2005-08-17 23:47:16','2006-02-15 22:13:17'),(3585,132,1,15874,'4.99','2005-08-23 16:30:55','2006-02-15 22:13:17'),(3586,133,1,275,'6.99','2005-05-26 17:09:53','2006-02-15 22:13:17'),(3587,133,2,447,'2.99','2005-05-27 18:57:02','2006-02-15 22:13:17'),(3588,133,2,1522,'3.99','2005-06-16 00:17:39','2006-02-15 22:13:17'),(3589,133,2,2665,'7.99','2005-06-19 11:12:35','2006-02-15 22:13:18'),(3590,133,1,3006,'0.99','2005-06-20 10:10:29','2006-02-15 22:13:18'),(3591,133,2,3365,'0.99','2005-06-21 12:55:48','2006-02-15 22:13:18'),(3592,133,2,4506,'6.99','2005-07-08 02:22:18','2006-02-15 22:13:18'),(3593,133,2,4566,'2.99','2005-07-08 05:18:50','2006-02-15 22:13:18'),(3594,133,1,4681,'6.99','2005-07-08 10:36:03','2006-02-15 22:13:18'),(3595,133,2,4829,'2.99','2005-07-08 17:54:18','2006-02-15 22:13:18'),(3596,133,2,5063,'2.99','2005-07-09 04:37:31','2006-02-15 22:13:18'),(3597,133,1,6157,'4.99','2005-07-11 09:48:16','2006-02-15 22:13:18'),(3598,133,1,6609,'3.99','2005-07-12 08:19:41','2006-02-15 22:13:18'),(3599,133,1,7177,'2.99','2005-07-27 08:07:39','2006-02-15 22:13:18'),(3600,133,1,7400,'0.99','2005-07-27 16:16:37','2006-02-15 22:13:18'),(3601,133,2,8389,'6.99','2005-07-29 05:50:09','2006-02-15 22:13:18'),(3602,133,2,9139,'2.99','2005-07-30 10:11:52','2006-02-15 22:13:18'),(3603,133,1,9175,'0.99','2005-07-30 11:47:48','2006-02-15 22:13:18'),(3604,133,2,9671,'0.99','2005-07-31 06:33:41','2006-02-15 22:13:18'),(3605,133,1,10665,'0.99','2005-08-01 16:56:17','2006-02-15 22:13:18'),(3606,133,1,12419,'4.99','2005-08-18 10:01:48','2006-02-15 22:13:18'),(3607,133,1,12834,'4.99','2005-08-19 01:47:30','2006-02-15 22:13:18'),(3608,133,2,13323,'2.99','2005-08-19 19:48:07','2006-02-15 22:13:18'),(3609,133,1,13455,'1.99','2005-08-20 00:32:17','2006-02-15 22:13:18'),(3610,133,2,13910,'2.99','2005-08-20 16:30:49','2006-02-15 22:13:18'),(3611,133,2,15080,'0.99','2005-08-22 11:11:51','2006-02-15 22:13:18'),(3612,133,1,16009,'6.99','2005-08-23 21:07:59','2006-02-15 22:13:18'),(3613,134,1,366,'3.99','2005-05-27 07:33:54','2006-02-15 22:13:18'),(3614,134,2,798,'0.99','2005-05-29 17:23:43','2006-02-15 22:13:18'),(3615,134,1,814,'6.99','2005-05-29 20:16:12','2006-02-15 22:13:18'),(3616,134,2,1124,'4.99','2005-05-31 16:49:34','2006-02-15 22:13:18'),(3617,134,1,1618,'9.99','2005-06-16 07:08:38','2006-02-15 22:13:18'),(3618,134,2,1784,'0.99','2005-06-16 19:25:32','2006-02-15 22:13:18'),(3619,134,2,1881,'0.99','2005-06-17 03:09:56','2006-02-15 22:13:18'),(3620,134,1,3267,'5.99','2005-06-21 04:55:21','2006-02-15 22:13:18'),(3621,134,1,5315,'4.99','2005-07-09 16:09:19','2006-02-15 22:13:18'),(3622,134,2,6226,'2.99','2005-07-11 13:48:11','2006-02-15 22:13:18'),(3623,134,1,6659,'0.99','2005-07-12 11:18:05','2006-02-15 22:13:18'),(3624,134,2,7516,'2.99','2005-07-27 20:55:28','2006-02-15 22:13:18'),(3625,134,2,7965,'4.99','2005-07-28 13:52:57','2006-02-15 22:13:18'),(3626,134,2,8650,'1.99','2005-07-29 14:59:04','2006-02-15 22:13:18'),(3627,134,1,10864,'6.99','2005-08-02 00:18:59','2006-02-15 22:13:18'),(3628,134,1,11280,'3.99','2005-08-02 14:34:33','2006-02-15 22:13:18'),(3629,134,1,11283,'4.99','2005-08-02 14:39:46','2006-02-15 22:13:18'),(3630,134,2,11482,'4.99','2005-08-02 22:24:31','2006-02-15 22:13:18'),(3631,134,1,12754,'7.99','2005-08-18 22:37:41','2006-02-15 22:13:18'),(3632,134,2,12987,'2.99','2005-08-19 07:11:44','2006-02-15 22:13:19'),(3633,134,2,13006,'2.99','2005-08-19 07:47:16','2006-02-15 22:13:19'),(3634,134,2,14265,'2.99','2005-08-21 06:20:14','2006-02-15 22:13:19'),(3635,134,2,15963,'2.99','2005-08-23 19:42:46','2006-02-15 22:13:19'),(3636,135,1,78,'5.99','2005-05-25 11:35:18','2006-02-15 22:13:19'),(3637,135,2,753,'3.99','2005-05-29 10:16:42','2006-02-15 22:13:19'),(3638,135,2,1272,'0.99','2005-06-15 07:42:58','2006-02-15 22:13:19'),(3639,135,2,1671,'1.99','2005-06-16 10:30:22','2006-02-15 22:13:19'),(3640,135,2,2941,'2.99','2005-06-20 05:22:18','2006-02-15 22:13:19'),(3641,135,1,4102,'0.99','2005-07-07 06:25:19','2006-02-15 22:13:19'),(3642,135,2,5054,'7.99','2005-07-09 04:01:02','2006-02-15 22:13:19'),(3643,135,1,5541,'0.99','2005-07-10 02:44:27','2006-02-15 22:13:19'),(3644,135,1,6117,'3.99','2005-07-11 07:39:38','2006-02-15 22:13:19'),(3645,135,1,6461,'3.99','2005-07-12 01:14:03','2006-02-15 22:13:19'),(3646,135,1,6817,'3.99','2005-07-12 18:19:57','2006-02-15 22:13:19'),(3647,135,2,7297,'4.99','2005-07-27 12:39:48','2006-02-15 22:13:19'),(3648,135,1,7437,'0.99','2005-07-27 17:39:18','2006-02-15 22:13:19'),(3649,135,1,7554,'7.99','2005-07-27 22:12:41','2006-02-15 22:13:19'),(3650,135,1,7734,'0.99','2005-07-28 05:08:44','2006-02-15 22:13:19'),(3651,135,1,8315,'0.99','2005-07-29 03:37:07','2006-02-15 22:13:19'),(3652,135,2,8885,'7.99','2005-07-30 00:36:26','2006-02-15 22:13:19'),(3653,135,1,8987,'6.99','2005-07-30 04:37:36','2006-02-15 22:13:19'),(3654,135,2,10091,'4.99','2005-07-31 20:23:13','2006-02-15 22:13:19'),(3655,135,2,10471,'0.99','2005-08-01 09:52:37','2006-02-15 22:13:19'),(3656,135,1,10611,'2.99','2005-08-01 14:53:52','2006-02-15 22:13:19'),(3657,135,1,10698,'3.99','2005-08-01 18:24:41','2006-02-15 22:13:19'),(3658,135,2,11194,'5.99','2005-08-02 11:35:53','2006-02-15 22:13:19'),(3659,135,1,11704,'7.99','2005-08-17 07:21:22','2006-02-15 22:13:19'),(3660,135,1,12249,'2.99','2005-08-18 03:53:34','2006-02-15 22:13:19'),(3661,135,1,13035,'0.99','2005-08-19 08:46:45','2006-02-15 22:13:19'),(3662,135,1,14005,'0.99','2005-08-20 20:19:05','2006-02-15 22:13:19'),(3663,135,2,14136,'5.99','2005-08-21 01:57:26','2006-02-15 22:13:19'),(3664,135,2,15908,'2.99','2005-08-23 17:42:00','2006-02-15 22:13:19'),(3665,135,1,13390,'0.99','2006-02-14 15:16:03','2006-02-15 22:13:19'),(3666,136,2,1150,'2.99','2005-05-31 21:20:09','2006-02-15 22:13:19'),(3667,136,2,2104,'2.99','2005-06-17 19:14:30','2006-02-15 22:13:19'),(3668,136,1,4927,'0.99','2005-07-08 22:05:35','2006-02-15 22:13:19'),(3669,136,1,5627,'3.99','2005-07-10 05:51:12','2006-02-15 22:13:19'),(3670,136,2,6142,'3.99','2005-07-11 08:54:09','2006-02-15 22:13:19'),(3671,136,1,6585,'8.99','2005-07-12 06:50:52','2006-02-15 22:13:19'),(3672,136,2,9319,'0.99','2005-07-30 17:15:27','2006-02-15 22:13:19'),(3673,136,2,9764,'5.99','2005-07-31 09:42:58','2006-02-15 22:13:19'),(3674,136,2,11992,'10.99','2005-08-17 18:27:22','2006-02-15 22:13:19'),(3675,136,1,12287,'5.99','2005-08-18 04:58:06','2006-02-15 22:13:19'),(3676,136,2,12539,'0.99','2005-08-18 14:10:09','2006-02-15 22:13:19'),(3677,136,2,13992,'4.99','2005-08-20 19:30:35','2006-02-15 22:13:19'),(3678,136,2,14379,'0.99','2005-08-21 09:53:03','2006-02-15 22:13:19'),(3679,136,1,14437,'2.99','2005-08-21 11:48:32','2006-02-15 22:13:19'),(3680,136,1,15439,'4.99','2005-08-23 00:34:28','2006-02-15 22:13:20'),(3681,137,1,925,'2.99','2005-05-30 12:13:52','2006-02-15 22:13:20'),(3682,137,1,2469,'6.99','2005-06-18 20:24:23','2006-02-15 22:13:20'),(3683,137,1,2785,'2.99','2005-06-19 18:43:57','2006-02-15 22:13:20'),(3684,137,2,3058,'3.99','2005-06-20 13:28:35','2006-02-15 22:13:20'),(3685,137,1,3436,'5.99','2005-06-21 19:16:09','2006-02-15 22:13:20'),(3686,137,2,3589,'4.99','2005-07-06 04:30:18','2006-02-15 22:13:20'),(3687,137,2,3676,'5.99','2005-07-06 09:10:37','2006-02-15 22:13:20'),(3688,137,2,3874,'6.99','2005-07-06 18:06:12','2006-02-15 22:13:20'),(3689,137,1,4332,'6.99','2005-07-07 18:25:26','2006-02-15 22:13:20'),(3690,137,2,4474,'3.99','2005-07-08 00:26:56','2006-02-15 22:13:20'),(3691,137,1,5106,'2.99','2005-07-09 06:40:24','2006-02-15 22:13:20'),(3692,137,1,5443,'3.99','2005-07-09 21:56:09','2006-02-15 22:13:20'),(3693,137,1,5804,'2.99','2005-07-10 15:06:31','2006-02-15 22:13:20'),(3694,137,1,6039,'6.99','2005-07-11 03:12:19','2006-02-15 22:13:20'),(3695,137,2,6200,'0.99','2005-07-11 12:16:42','2006-02-15 22:13:20'),(3696,137,1,8028,'8.99','2005-07-28 16:11:15','2006-02-15 22:13:20'),(3697,137,1,8106,'4.99','2005-07-28 19:02:46','2006-02-15 22:13:20'),(3698,137,2,8954,'2.99','2005-07-30 03:25:51','2006-02-15 22:13:20'),(3699,137,1,9002,'4.99','2005-07-30 05:02:21','2006-02-15 22:13:20'),(3700,137,2,9200,'4.99','2005-07-30 12:39:52','2006-02-15 22:13:20'),(3701,137,2,9466,'7.99','2005-07-30 22:44:36','2006-02-15 22:13:20'),(3702,137,1,9709,'4.99','2005-07-31 08:04:55','2006-02-15 22:13:20'),(3703,137,1,9789,'2.99','2005-07-31 10:30:25','2006-02-15 22:13:20'),(3704,137,1,10175,'6.99','2005-07-31 23:40:11','2006-02-15 22:13:20'),(3705,137,2,10595,'4.99','2005-08-01 14:16:28','2006-02-15 22:13:20'),(3706,137,2,10842,'5.99','2005-08-01 23:41:24','2006-02-15 22:13:20'),(3707,137,2,11057,'4.99','2005-08-02 06:38:19','2006-02-15 22:13:20'),(3708,137,1,11281,'3.99','2005-08-02 14:35:01','2006-02-15 22:13:20'),(3709,137,2,11732,'3.99','2005-08-17 08:29:46','2006-02-15 22:13:20'),(3710,137,1,12078,'2.99','2005-08-17 22:00:22','2006-02-15 22:13:20'),(3711,137,1,13148,'0.99','2005-08-19 12:55:30','2006-02-15 22:13:20'),(3712,137,1,13472,'5.99','2005-08-20 01:03:31','2006-02-15 22:13:20'),(3713,137,1,13776,'5.99','2005-08-20 11:57:06','2006-02-15 22:13:20'),(3714,137,1,14754,'7.99','2005-08-21 23:17:26','2006-02-15 22:13:20'),(3715,137,2,15082,'7.99','2005-08-22 11:17:06','2006-02-15 22:13:20'),(3716,137,1,15133,'0.99','2005-08-22 13:17:43','2006-02-15 22:13:20'),(3717,137,2,15537,'2.99','2005-08-23 04:00:30','2006-02-15 22:13:20'),(3718,137,2,15889,'4.99','2005-08-23 16:57:43','2006-02-15 22:13:20'),(3719,137,1,16030,'9.99','2005-08-23 21:56:04','2006-02-15 22:13:20'),(3720,138,1,523,'2.99','2005-05-28 03:53:26','2006-02-15 22:13:20'),(3721,138,1,1020,'0.99','2005-05-31 03:06:08','2006-02-15 22:13:20'),(3722,138,2,1316,'0.99','2005-06-15 10:26:23','2006-02-15 22:13:20'),(3723,138,2,2038,'0.99','2005-06-17 14:00:51','2006-02-15 22:13:20'),(3724,138,1,2731,'7.99','2005-06-19 15:14:55','2006-02-15 22:13:20'),(3725,138,2,3481,'2.99','2005-07-05 23:13:07','2006-02-15 22:13:20'),(3726,138,1,5378,'0.99','2005-07-09 19:05:56','2006-02-15 22:13:20'),(3727,138,1,5600,'1.99','2005-07-10 04:55:45','2006-02-15 22:13:20'),(3728,138,1,5679,'4.99','2005-07-10 08:44:02','2006-02-15 22:13:21'),(3729,138,1,6458,'2.99','2005-07-12 01:08:52','2006-02-15 22:13:21'),(3730,138,1,6892,'0.99','2005-07-12 21:10:04','2006-02-15 22:13:21'),(3731,138,1,7208,'2.99','2005-07-27 09:16:28','2006-02-15 22:13:21'),(3732,138,1,7754,'2.99','2005-07-28 06:10:55','2006-02-15 22:13:21'),(3733,138,2,8123,'4.99','2005-07-28 19:28:23','2006-02-15 22:13:21'),(3734,138,2,8160,'3.99','2005-07-28 21:10:30','2006-02-15 22:13:21'),(3735,138,1,8424,'3.99','2005-07-29 07:06:03','2006-02-15 22:13:21'),(3736,138,2,9259,'1.99','2005-07-30 14:37:44','2006-02-15 22:13:21'),(3737,138,1,9619,'0.99','2005-07-31 04:17:02','2006-02-15 22:13:21'),(3738,138,1,9947,'9.99','2005-07-31 15:49:40','2006-02-15 22:13:21'),(3739,138,1,10110,'0.99','2005-07-31 21:06:12','2006-02-15 22:13:21'),(3740,138,2,10190,'4.99','2005-08-01 00:27:53','2006-02-15 22:13:21'),(3741,138,1,10268,'3.99','2005-08-01 03:08:56','2006-02-15 22:13:21'),(3742,138,1,10431,'5.99','2005-08-01 08:41:54','2006-02-15 22:13:21'),(3743,138,1,11015,'4.99','2005-08-02 05:13:00','2006-02-15 22:13:21'),(3744,138,1,11088,'0.99','2005-08-02 07:48:31','2006-02-15 22:13:21'),(3745,138,1,11463,'0.99','2005-08-02 21:37:36','2006-02-15 22:13:21'),(3746,138,2,12550,'2.99','2005-08-18 14:40:38','2006-02-15 22:13:21'),(3747,138,2,12873,'2.99','2005-08-19 03:05:41','2006-02-15 22:13:21'),(3748,138,1,14194,'1.99','2005-08-21 03:40:11','2006-02-15 22:13:21'),(3749,138,2,14432,'4.99','2005-08-21 11:36:15','2006-02-15 22:13:21'),(3750,138,2,14486,'4.99','2005-08-21 13:52:54','2006-02-15 22:13:21'),(3751,138,1,14987,'4.99','2005-08-22 07:41:08','2006-02-15 22:13:21'),(3752,138,1,15424,'2.99','2005-08-23 00:03:01','2006-02-15 22:13:21'),(3753,138,1,15501,'0.99','2005-08-23 02:39:56','2006-02-15 22:13:21'),(3754,139,2,1169,'2.99','2005-06-14 23:42:56','2006-02-15 22:13:21'),(3755,139,1,1736,'2.99','2005-06-16 15:52:32','2006-02-15 22:13:21'),(3756,139,1,2659,'0.99','2005-06-19 10:47:42','2006-02-15 22:13:21'),(3757,139,2,2718,'7.99','2005-06-19 14:49:42','2006-02-15 22:13:21'),(3758,139,2,4660,'0.99','2005-07-08 09:54:47','2006-02-15 22:13:21'),(3759,139,2,4663,'2.99','2005-07-08 09:59:18','2006-02-15 22:13:21'),(3760,139,2,5092,'2.99','2005-07-09 05:57:39','2006-02-15 22:13:21'),(3761,139,2,5265,'7.99','2005-07-09 14:15:01','2006-02-15 22:13:21'),(3762,139,1,5390,'6.99','2005-07-09 19:26:22','2006-02-15 22:13:21'),(3763,139,1,5494,'6.99','2005-07-10 00:15:00','2006-02-15 22:13:21'),(3764,139,1,6496,'6.99','2005-07-12 02:57:39','2006-02-15 22:13:21'),(3765,139,2,6740,'0.99','2005-07-12 14:22:08','2006-02-15 22:13:21'),(3766,139,1,7369,'0.99','2005-07-27 15:07:58','2006-02-15 22:13:21'),(3767,139,2,7767,'5.99','2005-07-28 06:42:02','2006-02-15 22:13:21'),(3768,139,2,9415,'2.99','2005-07-30 20:48:31','2006-02-15 22:13:21'),(3769,139,2,9920,'4.99','2005-07-31 14:57:13','2006-02-15 22:13:21'),(3770,139,1,10900,'2.99','2005-08-02 01:34:26','2006-02-15 22:13:21'),(3771,139,1,12859,'6.99','2005-08-19 02:23:23','2006-02-15 22:13:21'),(3772,139,2,13401,'3.99','2005-08-19 22:16:16','2006-02-15 22:13:21'),(3773,139,2,14736,'5.99','2005-08-21 22:25:53','2006-02-15 22:13:21'),(3774,139,1,14788,'2.99','2005-08-22 00:27:59','2006-02-15 22:13:21'),(3775,139,1,15024,'2.99','2005-08-22 08:57:10','2006-02-15 22:13:22'),(3776,139,2,15029,'2.99','2005-08-22 09:04:53','2006-02-15 22:13:22'),(3777,139,1,15062,'2.99','2005-08-22 10:34:39','2006-02-15 22:13:22'),(3778,139,1,15218,'9.99','2005-08-22 16:59:05','2006-02-15 22:13:22'),(3779,139,1,15471,'3.99','2005-08-23 01:38:48','2006-02-15 22:13:22'),(3780,139,1,15743,'0.99','2005-08-23 12:12:05','2006-02-15 22:13:22'),(3781,140,1,1586,'4.99','2005-06-16 04:51:18','2006-02-15 22:13:22'),(3782,140,1,1687,'2.99','2005-06-16 12:09:20','2006-02-15 22:13:22'),(3783,140,2,2332,'6.99','2005-06-18 10:53:51','2006-02-15 22:13:22'),(3784,140,2,3171,'0.99','2005-06-20 22:15:47','2006-02-15 22:13:22'),(3785,140,1,6286,'4.99','2005-07-11 16:55:35','2006-02-15 22:13:22'),(3786,140,1,6407,'9.99','2005-07-11 23:02:19','2006-02-15 22:13:22'),(3787,140,2,6571,'0.99','2005-07-12 05:51:47','2006-02-15 22:13:22'),(3788,140,1,6918,'2.99','2005-07-12 22:30:29','2006-02-15 22:13:22'),(3789,140,1,7170,'4.99','2005-07-27 07:58:26','2006-02-15 22:13:22'),(3790,140,1,9094,'4.99','2005-07-30 08:35:10','2006-02-15 22:13:22'),(3791,140,1,9404,'0.99','2005-07-30 20:21:35','2006-02-15 22:13:22'),(3792,140,1,10342,'6.99','2005-08-01 05:11:11','2006-02-15 22:13:22'),(3793,140,2,11430,'3.99','2005-08-02 20:04:36','2006-02-15 22:13:22'),(3794,140,1,12086,'4.99','2005-08-17 22:20:01','2006-02-15 22:13:22'),(3795,140,1,12675,'4.99','2005-08-18 19:34:02','2006-02-15 22:13:22'),(3796,140,2,13053,'10.99','2005-08-19 09:31:48','2006-02-15 22:13:22'),(3797,140,1,15261,'2.99','2005-08-22 18:24:34','2006-02-15 22:13:22'),(3798,140,1,15852,'2.99','2005-08-23 15:47:02','2006-02-15 22:13:22'),(3799,141,2,930,'2.99','2005-05-30 12:44:57','2006-02-15 22:13:22'),(3800,141,2,1242,'7.99','2005-06-15 05:05:07','2006-02-15 22:13:22'),(3801,141,2,2895,'7.99','2005-06-20 02:26:31','2006-02-15 22:13:22'),(3802,141,1,3434,'4.99','2005-06-21 19:08:28','2006-02-15 22:13:22'),(3803,141,1,4057,'1.99','2005-07-07 04:00:20','2006-02-15 22:13:22'),(3804,141,2,4297,'0.99','2005-07-07 16:24:09','2006-02-15 22:13:22'),(3805,141,1,4656,'5.99','2005-07-08 09:50:10','2006-02-15 22:13:22'),(3806,141,2,5062,'2.99','2005-07-09 04:36:49','2006-02-15 22:13:22'),(3807,141,1,5769,'0.99','2005-07-10 13:17:58','2006-02-15 22:13:22'),(3808,141,2,6979,'4.99','2005-07-27 00:49:53','2006-02-15 22:13:22'),(3809,141,2,7878,'2.99','2005-07-28 10:27:10','2006-02-15 22:13:22'),(3810,141,1,8434,'4.99','2005-07-29 07:20:14','2006-02-15 22:13:22'),(3811,141,2,9073,'7.99','2005-07-30 07:49:56','2006-02-15 22:13:22'),(3812,141,1,9584,'4.99','2005-07-31 03:05:48','2006-02-15 22:13:22'),(3813,141,2,9683,'2.99','2005-07-31 06:47:13','2006-02-15 22:13:22'),(3814,141,1,10287,'3.99','2005-08-01 03:37:01','2006-02-15 22:13:22'),(3815,141,1,10379,'1.99','2005-08-01 06:34:29','2006-02-15 22:13:22'),(3816,141,1,10798,'4.99','2005-08-01 22:03:10','2006-02-15 22:13:22'),(3817,141,1,11411,'2.99','2005-08-02 19:29:47','2006-02-15 22:13:22'),(3818,141,1,11412,'5.99','2005-08-02 19:32:51','2006-02-15 22:13:22'),(3819,141,1,12032,'5.99','2005-08-17 20:14:26','2006-02-15 22:13:23'),(3820,141,1,12093,'2.99','2005-08-17 22:28:40','2006-02-15 22:13:23'),(3821,141,2,12107,'3.99','2005-08-17 22:56:24','2006-02-15 22:13:23'),(3822,141,2,12353,'2.99','2005-08-18 07:33:08','2006-02-15 22:13:23'),(3823,141,1,13000,'0.99','2005-08-19 07:36:42','2006-02-15 22:13:23'),(3824,141,2,13169,'2.99','2005-08-19 13:43:35','2006-02-15 22:13:23'),(3825,141,2,13470,'4.99','2005-08-20 01:01:16','2006-02-15 22:13:23'),(3826,141,2,14059,'7.99','2005-08-20 22:24:44','2006-02-15 22:13:23'),(3827,141,1,14112,'2.99','2005-08-21 01:00:46','2006-02-15 22:13:23'),(3828,141,1,15013,'4.99','2005-08-22 08:42:45','2006-02-15 22:13:23'),(3829,141,1,15309,'0.99','2005-08-22 19:54:52','2006-02-15 22:13:23'),(3830,141,1,15964,'2.99','2005-08-23 19:45:25','2006-02-15 22:13:23'),(3831,142,2,11,'8.99','2005-05-25 00:09:02','2006-02-15 22:13:23'),(3832,142,1,148,'0.99','2005-05-26 00:25:23','2006-02-15 22:13:23'),(3833,142,1,575,'9.99','2005-05-28 10:56:09','2006-02-15 22:13:23'),(3834,142,1,1268,'1.99','2005-06-15 07:29:30','2006-02-15 22:13:23'),(3835,142,1,3214,'2.99','2005-06-21 01:08:26','2006-02-15 22:13:23'),(3836,142,2,3492,'2.99','2005-07-05 23:44:37','2006-02-15 22:13:23'),(3837,142,2,4497,'4.99','2005-07-08 01:51:32','2006-02-15 22:13:23'),(3838,142,1,4531,'4.99','2005-07-08 03:27:59','2006-02-15 22:13:23'),(3839,142,1,6522,'0.99','2005-07-12 04:11:58','2006-02-15 22:13:23'),(3840,142,1,7764,'2.99','2005-07-28 06:40:05','2006-02-15 22:13:23'),(3841,142,2,8513,'2.99','2005-07-29 09:52:59','2006-02-15 22:13:23'),(3842,142,2,8623,'4.99','2005-07-29 13:55:11','2006-02-15 22:13:23'),(3843,142,1,9020,'7.99','2005-07-30 05:31:27','2006-02-15 22:13:23'),(3844,142,1,9131,'2.99','2005-07-30 09:55:57','2006-02-15 22:13:23'),(3845,142,1,9419,'5.99','2005-07-30 21:04:59','2006-02-15 22:13:23'),(3846,142,2,10934,'5.99','2005-08-02 02:52:18','2006-02-15 22:13:23'),(3847,142,2,11244,'5.99','2005-08-02 13:33:24','2006-02-15 22:13:23'),(3848,142,1,12964,'0.99','2005-08-19 06:29:13','2006-02-15 22:13:23'),(3849,142,1,13044,'0.99','2005-08-19 09:14:31','2006-02-15 22:13:23'),(3850,142,2,13745,'0.99','2005-08-20 10:53:49','2006-02-15 22:13:23'),(3851,142,1,13959,'0.99','2005-08-20 18:16:21','2006-02-15 22:13:23'),(3852,142,2,14116,'4.99','2005-08-21 01:11:17','2006-02-15 22:13:23'),(3853,142,2,14813,'0.99','2005-08-22 01:11:37','2006-02-15 22:13:23'),(3854,142,2,15333,'2.99','2005-08-22 20:44:06','2006-02-15 22:13:23'),(3855,142,1,15477,'1.99','2005-08-23 01:46:35','2006-02-15 22:13:23'),(3856,142,1,15454,'0.99','2006-02-14 15:16:03','2006-02-15 22:13:23'),(3857,143,1,221,'2.99','2005-05-26 10:14:09','2006-02-15 22:13:23'),(3858,143,1,312,'2.99','2005-05-26 22:52:19','2006-02-15 22:13:23'),(3859,143,2,1898,'1.99','2005-06-17 04:28:11','2006-02-15 22:13:23'),(3860,143,1,1942,'4.99','2005-06-17 07:43:39','2006-02-15 22:13:23'),(3861,143,2,2251,'3.99','2005-06-18 05:05:08','2006-02-15 22:13:24'),(3862,143,1,2574,'0.99','2005-06-19 04:23:52','2006-02-15 22:13:24'),(3863,143,1,2588,'4.99','2005-06-19 05:20:31','2006-02-15 22:13:24'),(3864,143,1,4031,'7.99','2005-07-07 02:32:07','2006-02-15 22:13:24'),(3865,143,2,4221,'0.99','2005-07-07 12:18:57','2006-02-15 22:13:24'),(3866,143,1,4585,'7.99','2005-07-08 06:11:58','2006-02-15 22:13:24'),(3867,143,2,6076,'6.99','2005-07-11 05:05:30','2006-02-15 22:13:24'),(3868,143,2,6207,'4.99','2005-07-11 12:34:24','2006-02-15 22:13:24'),(3869,143,1,8312,'0.99','2005-07-29 03:32:38','2006-02-15 22:13:24'),(3870,143,1,8335,'0.99','2005-07-29 04:18:25','2006-02-15 22:13:24'),(3871,143,2,9889,'1.99','2005-07-31 14:02:50','2006-02-15 22:13:24'),(3872,143,1,10118,'0.99','2005-07-31 21:16:31','2006-02-15 22:13:24'),(3873,143,1,11278,'6.99','2005-08-02 14:29:43','2006-02-15 22:13:24'),(3874,143,2,11651,'6.99','2005-08-17 05:02:25','2006-02-15 22:13:24'),(3875,143,1,12408,'2.99','2005-08-18 09:40:38','2006-02-15 22:13:24'),(3876,143,2,13835,'4.99','2005-08-20 14:06:33','2006-02-15 22:13:24'),(3877,143,1,15250,'5.99','2005-08-22 18:03:11','2006-02-15 22:13:24'),(3878,143,1,16029,'4.99','2005-08-23 21:54:02','2006-02-15 22:13:24'),(3879,144,1,323,'2.99','2005-05-27 00:49:27','2006-02-15 22:13:24'),(3880,144,2,345,'2.99','2005-05-27 04:32:25','2006-02-15 22:13:24'),(3881,144,1,1814,'5.99','2005-06-16 21:15:22','2006-02-15 22:13:24'),(3882,144,1,1943,'0.99','2005-06-17 07:49:17','2006-02-15 22:13:24'),(3883,144,1,2756,'4.99','2005-06-19 16:57:42','2006-02-15 22:13:24'),(3884,144,2,3019,'4.99','2005-06-20 11:11:52','2006-02-15 22:13:24'),(3885,144,1,3145,'2.99','2005-06-20 20:21:17','2006-02-15 22:13:24'),(3886,144,1,3321,'2.99','2005-06-21 08:33:26','2006-02-15 22:13:24'),(3887,144,1,4726,'6.99','2005-07-08 12:50:54','2006-02-15 22:13:24'),(3888,144,2,4818,'3.99','2005-07-08 17:18:22','2006-02-15 22:13:24'),(3889,144,2,5049,'0.99','2005-07-09 03:54:12','2006-02-15 22:13:24'),(3890,144,2,5374,'8.99','2005-07-09 18:52:08','2006-02-15 22:13:24'),(3891,144,2,5408,'7.99','2005-07-09 20:16:51','2006-02-15 22:13:24'),(3892,144,2,5526,'7.99','2005-07-10 02:04:03','2006-02-15 22:13:24'),(3893,144,2,6614,'7.99','2005-07-12 08:33:49','2006-02-15 22:13:24'),(3894,144,2,6791,'9.99','2005-07-12 16:35:07','2006-02-15 22:13:24'),(3895,144,2,7378,'5.99','2005-07-27 15:31:33','2006-02-15 22:13:24'),(3896,144,2,7566,'2.99','2005-07-27 22:34:45','2006-02-15 22:13:24'),(3897,144,1,7830,'0.99','2005-07-28 08:43:49','2006-02-15 22:13:24'),(3898,144,1,7858,'3.99','2005-07-28 09:50:18','2006-02-15 22:13:24'),(3899,144,2,8459,'5.99','2005-07-29 08:05:40','2006-02-15 22:13:24'),(3900,144,1,8983,'0.99','2005-07-30 04:31:08','2006-02-15 22:13:24'),(3901,144,1,9034,'7.99','2005-07-30 06:10:58','2006-02-15 22:13:24'),(3902,144,1,9098,'3.99','2005-07-30 08:44:21','2006-02-15 22:13:25'),(3903,144,2,9174,'4.99','2005-07-30 11:42:10','2006-02-15 22:13:25'),(3904,144,2,9714,'0.99','2005-07-31 08:15:32','2006-02-15 22:13:25'),(3905,144,1,10302,'0.99','2005-08-01 04:12:08','2006-02-15 22:13:25'),(3906,144,1,10593,'4.99','2005-08-01 14:13:19','2006-02-15 22:13:25'),(3907,144,1,10740,'5.99','2005-08-01 19:50:32','2006-02-15 22:13:25'),(3908,144,1,10951,'4.99','2005-08-02 03:26:35','2006-02-15 22:13:25'),(3909,144,1,11228,'2.99','2005-08-02 12:55:23','2006-02-15 22:13:25'),(3910,144,2,11476,'6.99','2005-08-02 22:03:47','2006-02-15 22:13:25'),(3911,144,1,11534,'7.99','2005-08-17 00:35:27','2006-02-15 22:13:25'),(3912,144,1,11859,'4.99','2005-08-17 13:51:20','2006-02-15 22:13:25'),(3913,144,2,12087,'2.99','2005-08-17 22:20:12','2006-02-15 22:13:25'),(3914,144,2,12733,'2.99','2005-08-18 21:59:00','2006-02-15 22:13:25'),(3915,144,1,12858,'3.99','2005-08-19 02:22:16','2006-02-15 22:13:25'),(3916,144,2,12980,'6.99','2005-08-19 07:03:14','2006-02-15 22:13:25'),(3917,144,2,13881,'2.99','2005-08-20 15:18:55','2006-02-15 22:13:25'),(3918,144,2,14159,'2.99','2005-08-21 02:45:58','2006-02-15 22:13:25'),(3919,144,1,15017,'1.99','2005-08-22 08:47:44','2006-02-15 22:13:25'),(3920,144,1,15753,'7.99','2005-08-23 12:43:30','2006-02-15 22:13:25'),(3921,145,1,500,'0.99','2005-05-28 01:05:25','2006-02-15 22:13:25'),(3922,145,2,2271,'4.99','2005-06-18 06:29:52','2006-02-15 22:13:25'),(3923,145,2,2614,'0.99','2005-06-19 07:28:11','2006-02-15 22:13:25'),(3924,145,1,3647,'5.99','2005-07-06 07:29:17','2006-02-15 22:13:25'),(3925,145,2,4201,'8.99','2005-07-07 11:19:51','2006-02-15 22:13:25'),(3926,145,1,4364,'4.99','2005-07-07 19:46:51','2006-02-15 22:13:25'),(3927,145,2,4405,'6.99','2005-07-07 21:33:16','2006-02-15 22:13:26'),(3928,145,1,4470,'2.99','2005-07-08 00:20:57','2006-02-15 22:13:26'),(3929,145,2,4817,'2.99','2005-07-08 17:17:31','2006-02-15 22:13:26'),(3930,145,2,6056,'2.99','2005-07-11 04:01:27','2006-02-15 22:13:26'),(3931,145,1,6339,'1.99','2005-07-11 19:45:32','2006-02-15 22:13:26'),(3932,145,2,6378,'0.99','2005-07-11 21:45:23','2006-02-15 22:13:26'),(3933,145,2,7061,'2.99','2005-07-27 03:51:10','2006-02-15 22:13:26'),(3934,145,1,7529,'7.99','2005-07-27 21:18:08','2006-02-15 22:13:26'),(3935,145,2,7954,'0.99','2005-07-28 13:25:05','2006-02-15 22:13:26'),(3936,145,1,8380,'0.99','2005-07-29 05:31:29','2006-02-15 22:13:26'),(3937,145,1,9156,'2.99','2005-07-30 11:04:55','2006-02-15 22:13:26'),(3938,145,2,9576,'0.99','2005-07-31 02:52:59','2006-02-15 22:13:26'),(3939,145,2,10799,'4.99','2005-08-01 22:03:31','2006-02-15 22:13:26'),(3940,145,2,11904,'5.99','2005-08-17 15:39:26','2006-02-15 22:13:26'),(3941,145,2,11954,'2.99','2005-08-17 17:18:36','2006-02-15 22:13:26'),(3942,145,1,12637,'2.99','2005-08-18 18:06:53','2006-02-15 22:13:26'),(3943,145,2,12785,'2.99','2005-08-19 00:05:49','2006-02-15 22:13:26'),(3944,145,2,13012,'7.99','2005-08-19 07:54:59','2006-02-15 22:13:26'),(3945,145,1,13164,'3.99','2005-08-19 13:30:55','2006-02-15 22:13:26'),(3946,145,2,13272,'0.99','2005-08-19 17:49:13','2006-02-15 22:13:26'),(3947,145,2,14044,'5.99','2005-08-20 21:48:38','2006-02-15 22:13:26'),(3948,145,2,14389,'6.99','2005-08-21 10:15:20','2006-02-15 22:13:26'),(3949,146,2,762,'7.99','2005-05-29 11:15:51','2006-02-15 22:13:26'),(3950,146,1,1073,'4.99','2005-05-31 09:55:04','2006-02-15 22:13:26'),(3951,146,2,1209,'7.99','2005-06-15 02:31:12','2006-02-15 22:13:26'),(3952,146,2,1724,'1.99','2005-06-16 15:15:43','2006-02-15 22:13:26'),(3953,146,2,2099,'2.99','2005-06-17 18:47:26','2006-02-15 22:13:26'),(3954,146,1,2242,'3.99','2005-06-18 04:32:28','2006-02-15 22:13:26'),(3955,146,1,2342,'2.99','2005-06-18 11:42:40','2006-02-15 22:13:26'),(3956,146,1,2800,'0.99','2005-06-19 19:15:56','2006-02-15 22:13:26'),(3957,146,1,3131,'4.99','2005-06-20 19:08:00','2006-02-15 22:13:26'),(3958,146,1,4849,'6.99','2005-07-08 18:34:34','2006-02-15 22:13:26'),(3959,146,2,5000,'4.99','2005-07-09 01:16:13','2006-02-15 22:13:26'),(3960,146,1,6102,'7.99','2005-07-11 06:53:09','2006-02-15 22:13:26'),(3961,146,2,6184,'6.99','2005-07-11 11:19:21','2006-02-15 22:13:26'),(3962,146,1,6327,'4.99','2005-07-11 19:07:29','2006-02-15 22:13:26'),(3963,146,1,6990,'0.99','2005-07-27 01:02:46','2006-02-15 22:13:26'),(3964,146,2,8246,'3.99','2005-07-29 00:38:41','2006-02-15 22:13:26'),(3965,146,2,11173,'7.99','2005-08-02 10:28:00','2006-02-15 22:13:26'),(3966,146,1,11221,'2.99','2005-08-02 12:32:12','2006-02-15 22:13:26'),(3967,146,2,11370,'0.99','2005-08-02 18:06:01','2006-02-15 22:13:26'),(3968,146,2,11392,'5.99','2005-08-02 18:41:11','2006-02-15 22:13:26'),(3969,146,1,11573,'4.99','2005-08-17 01:38:18','2006-02-15 22:13:27'),(3970,146,1,11857,'4.99','2005-08-17 13:48:30','2006-02-15 22:13:27'),(3971,146,1,12129,'7.99','2005-08-17 23:31:25','2006-02-15 22:13:27'),(3972,146,1,12385,'2.99','2005-08-18 08:39:33','2006-02-15 22:13:27'),(3973,146,1,12888,'4.99','2005-08-19 03:41:09','2006-02-15 22:13:27'),(3974,146,1,13606,'4.99','2005-08-20 06:07:01','2006-02-15 22:13:27'),(3975,146,2,13829,'4.99','2005-08-20 13:50:17','2006-02-15 22:13:27'),(3976,146,2,14143,'2.99','2005-08-21 02:10:32','2006-02-15 22:13:27'),(3977,146,1,15842,'6.99','2005-08-23 15:36:05','2006-02-15 22:13:27'),(3978,147,1,362,'0.99','2005-05-27 07:10:25','2006-02-15 22:13:27'),(3979,147,1,509,'0.99','2005-05-28 02:51:12','2006-02-15 22:13:27'),(3980,147,1,2171,'0.99','2005-06-18 00:06:04','2006-02-15 22:13:27'),(3981,147,1,2456,'6.99','2005-06-18 19:36:50','2006-02-15 22:13:27'),(3982,147,2,2859,'2.99','2005-06-19 23:18:42','2006-02-15 22:13:27'),(3983,147,2,3011,'5.99','2005-06-20 10:39:10','2006-02-15 22:13:27'),(3984,147,2,3919,'7.99','2005-07-06 20:26:21','2006-02-15 22:13:27'),(3985,147,2,3956,'2.99','2005-07-06 22:01:51','2006-02-15 22:13:27'),(3986,147,2,4792,'0.99','2005-07-08 16:29:38','2006-02-15 22:13:27'),(3987,147,2,5044,'0.99','2005-07-09 03:30:25','2006-02-15 22:13:27'),(3988,147,1,5567,'2.99','2005-07-10 03:36:46','2006-02-15 22:13:27'),(3989,147,1,5844,'0.99','2005-07-10 17:14:43','2006-02-15 22:13:27'),(3990,147,2,6343,'0.99','2005-07-11 19:51:35','2006-02-15 22:13:27'),(3991,147,2,6469,'4.99','2005-07-12 01:29:27','2006-02-15 22:13:27'),(3992,147,2,6753,'2.99','2005-07-12 14:55:42','2006-02-15 22:13:27'),(3993,147,2,7044,'0.99','2005-07-27 03:27:29','2006-02-15 22:13:27'),(3994,147,1,7723,'0.99','2005-07-28 04:45:37','2006-02-15 22:13:27'),(3995,147,1,8893,'2.99','2005-07-30 00:48:19','2006-02-15 22:13:27'),(3996,147,2,9772,'0.99','2005-07-31 09:56:07','2006-02-15 22:13:27'),(3997,147,1,10706,'7.99','2005-08-01 18:41:28','2006-02-15 22:13:27'),(3998,147,2,10752,'8.99','2005-08-01 20:08:49','2006-02-15 22:13:27'),(3999,147,1,12284,'4.99','2005-08-18 04:55:49','2006-02-15 22:13:27'),(4000,147,1,12757,'4.99','2005-08-18 22:57:45','2006-02-15 22:13:27'),(4001,147,2,13542,'4.99','2005-08-20 03:41:57','2006-02-15 22:13:27'),(4002,147,2,13670,'3.99','2005-08-20 08:27:01','2006-02-15 22:13:27'),(4003,147,2,14021,'4.99','2005-08-20 21:02:12','2006-02-15 22:13:27'),(4004,147,1,14156,'0.99','2005-08-21 02:35:16','2006-02-15 22:13:27'),(4005,147,2,14641,'0.99','2005-08-21 19:05:23','2006-02-15 22:13:27'),(4006,147,2,14960,'4.99','2005-08-22 06:31:36','2006-02-15 22:13:27'),(4007,147,1,15052,'2.99','2005-08-22 10:09:19','2006-02-15 22:13:27'),(4008,147,2,15331,'4.99','2005-08-22 20:37:57','2006-02-15 22:13:28'),(4009,147,2,15513,'4.99','2005-08-23 03:01:56','2006-02-15 22:13:28'),(4010,147,1,15730,'8.99','2005-08-23 11:32:35','2006-02-15 22:13:28'),(4011,147,2,16004,'6.99','2005-08-23 20:53:20','2006-02-15 22:13:28'),(4012,148,1,682,'4.99','2005-05-28 23:53:18','2006-02-15 22:13:28'),(4013,148,1,1501,'1.99','2005-06-15 22:02:35','2006-02-15 22:13:28'),(4014,148,2,1517,'6.99','2005-06-15 23:20:26','2006-02-15 22:13:28'),(4015,148,2,2751,'3.99','2005-06-19 16:39:23','2006-02-15 22:13:28'),(4016,148,2,2843,'3.99','2005-06-19 22:36:39','2006-02-15 22:13:28'),(4017,148,2,2847,'5.99','2005-06-19 22:54:01','2006-02-15 22:13:28'),(4018,148,1,3653,'0.99','2005-07-06 07:45:13','2006-02-15 22:13:28'),(4019,148,1,4080,'0.99','2005-07-07 05:09:54','2006-02-15 22:13:28'),(4020,148,1,4746,'2.99','2005-07-08 13:47:55','2006-02-15 22:13:28'),(4021,148,1,4950,'2.99','2005-07-08 22:58:07','2006-02-15 22:13:28'),(4022,148,1,5034,'4.99','2005-07-09 02:48:15','2006-02-15 22:13:28'),(4023,148,1,5372,'4.99','2005-07-09 18:48:39','2006-02-15 22:13:28'),(4024,148,1,6169,'1.99','2005-07-11 10:25:56','2006-02-15 22:13:28'),(4025,148,1,6640,'8.99','2005-07-12 10:27:19','2006-02-15 22:13:28'),(4026,148,2,6793,'10.99','2005-07-12 16:37:55','2006-02-15 22:13:28'),(4027,148,1,7656,'0.99','2005-07-28 02:07:19','2006-02-15 22:13:28'),(4028,148,2,7693,'4.99','2005-07-28 03:31:22','2006-02-15 22:13:28'),(4029,148,1,7865,'9.99','2005-07-28 10:07:04','2006-02-15 22:13:28'),(4030,148,2,8111,'4.99','2005-07-28 19:10:03','2006-02-15 22:13:28'),(4031,148,2,8331,'3.99','2005-07-29 04:13:29','2006-02-15 22:13:28'),(4032,148,1,8394,'4.99','2005-07-29 06:02:14','2006-02-15 22:13:28'),(4033,148,2,8578,'4.99','2005-07-29 11:58:14','2006-02-15 22:13:28'),(4034,148,2,8626,'4.99','2005-07-29 14:03:20','2006-02-15 22:13:28'),(4035,148,1,9023,'5.99','2005-07-30 05:36:40','2006-02-15 22:13:28'),(4036,148,1,9106,'2.99','2005-07-30 08:52:34','2006-02-15 22:13:28'),(4037,148,1,9530,'1.99','2005-07-31 01:09:06','2006-02-15 22:13:28'),(4038,148,1,9594,'4.99','2005-07-31 03:23:52','2006-02-15 22:13:28'),(4039,148,2,10067,'4.99','2005-07-31 19:37:58','2006-02-15 22:13:28'),(4040,148,2,10830,'6.99','2005-08-01 23:18:06','2006-02-15 22:13:28'),(4041,148,1,11357,'10.99','2005-08-02 17:42:49','2006-02-15 22:13:28'),(4042,148,1,12029,'2.99','2005-08-17 20:07:01','2006-02-15 22:13:28'),(4043,148,2,12038,'0.99','2005-08-17 20:28:26','2006-02-15 22:13:28'),(4044,148,2,12512,'3.99','2005-08-18 13:28:27','2006-02-15 22:13:28'),(4045,148,1,12944,'6.99','2005-08-19 05:48:12','2006-02-15 22:13:28'),(4046,148,1,12983,'6.99','2005-08-19 07:06:51','2006-02-15 22:13:29'),(4047,148,1,14055,'0.99','2005-08-20 22:18:00','2006-02-15 22:13:29'),(4048,148,1,14155,'4.99','2005-08-21 02:31:35','2006-02-15 22:13:29'),(4049,148,2,14184,'6.99','2005-08-21 03:24:50','2006-02-15 22:13:29'),(4050,148,2,14629,'2.99','2005-08-21 18:39:52','2006-02-15 22:13:29'),(4051,148,2,14713,'0.99','2005-08-21 21:27:24','2006-02-15 22:13:29'),(4052,148,2,14879,'5.99','2005-08-22 03:42:12','2006-02-15 22:13:29'),(4053,148,2,14965,'2.99','2005-08-22 06:45:53','2006-02-15 22:13:29'),(4054,148,2,15237,'4.99','2005-08-22 17:44:30','2006-02-15 22:13:29'),(4055,148,2,15379,'8.99','2005-08-22 22:26:13','2006-02-15 22:13:29'),(4056,148,1,15541,'3.99','2005-08-23 04:13:53','2006-02-15 22:13:29'),(4057,148,2,15586,'3.99','2005-08-23 05:57:04','2006-02-15 22:13:29'),(4058,149,1,764,'4.99','2005-05-29 11:37:35','2006-02-15 22:13:29'),(4059,149,2,1521,'2.99','2005-06-15 23:58:53','2006-02-15 22:13:29'),(4060,149,1,1800,'2.99','2005-06-16 20:18:46','2006-02-15 22:13:29'),(4061,149,2,1996,'6.99','2005-06-17 11:17:45','2006-02-15 22:13:29'),(4062,149,2,2194,'4.99','2005-06-18 01:41:37','2006-02-15 22:13:29'),(4063,149,1,2305,'5.99','2005-06-18 08:31:18','2006-02-15 22:13:29'),(4064,149,2,2383,'7.99','2005-06-18 15:17:59','2006-02-15 22:13:29'),(4065,149,1,2752,'0.99','2005-06-19 16:44:18','2006-02-15 22:13:29'),(4066,149,1,3894,'2.99','2005-07-06 19:01:39','2006-02-15 22:13:29'),(4067,149,1,3939,'6.99','2005-07-06 21:16:32','2006-02-15 22:13:29'),(4068,149,1,4766,'3.99','2005-07-08 15:16:04','2006-02-15 22:13:29'),(4069,149,1,4837,'0.99','2005-07-08 18:09:12','2006-02-15 22:13:29'),(4070,149,1,5091,'2.99','2005-07-09 05:52:54','2006-02-15 22:13:29'),(4071,149,1,5298,'10.99','2005-07-09 15:36:17','2006-02-15 22:13:29'),(4072,149,1,6356,'4.99','2005-07-11 20:57:48','2006-02-15 22:13:29'),(4073,149,2,6940,'5.99','2005-07-26 23:18:35','2006-02-15 22:13:29'),(4074,149,2,7559,'4.99','2005-07-27 22:20:03','2006-02-15 22:13:29'),(4075,149,1,7989,'6.99','2005-07-28 14:39:05','2006-02-15 22:13:29'),(4076,149,2,10154,'2.99','2005-07-31 22:30:49','2006-02-15 22:13:29'),(4077,149,2,10737,'7.99','2005-08-01 19:31:24','2006-02-15 22:13:29'),(4078,149,2,10967,'0.99','2005-08-02 04:02:16','2006-02-15 22:13:29'),(4079,149,1,11561,'2.99','2005-08-17 01:23:09','2006-02-15 22:13:29'),(4080,149,1,12000,'4.99','2005-08-17 18:49:44','2006-02-15 22:13:29'),(4081,149,1,14771,'3.99','2005-08-21 23:50:15','2006-02-15 22:13:29'),(4082,149,2,15479,'4.99','2005-08-23 01:50:53','2006-02-15 22:13:29'),(4083,149,2,15562,'2.99','2005-08-23 05:04:33','2006-02-15 22:13:29'),(4084,150,1,422,'3.99','2005-05-27 15:31:55','2006-02-15 22:13:29'),(4085,150,1,609,'2.99','2005-05-28 15:04:02','2006-02-15 22:13:29'),(4086,150,1,995,'3.99','2005-05-31 00:06:02','2006-02-15 22:13:29'),(4087,150,2,3187,'1.99','2005-06-20 23:06:07','2006-02-15 22:13:29'),(4088,150,1,3456,'5.99','2005-06-21 21:19:47','2006-02-15 22:13:29'),(4089,150,1,4271,'6.99','2005-07-07 14:38:52','2006-02-15 22:13:29'),(4090,150,1,6633,'2.99','2005-07-12 09:35:42','2006-02-15 22:13:29'),(4091,150,2,7690,'4.99','2005-07-28 03:26:21','2006-02-15 22:13:30'),(4092,150,1,9121,'2.99','2005-07-30 09:36:26','2006-02-15 22:13:30'),(4093,150,1,10686,'2.99','2005-08-01 17:51:21','2006-02-15 22:13:30'),(4094,150,2,11123,'2.99','2005-08-02 08:54:17','2006-02-15 22:13:30'),(4095,150,2,11789,'6.99','2005-08-17 10:59:24','2006-02-15 22:13:30'),(4096,150,2,12260,'6.99','2005-08-18 04:15:43','2006-02-15 22:13:30'),(4097,150,2,12335,'2.99','2005-08-18 06:59:15','2006-02-15 22:13:30'),(4098,150,2,12627,'2.99','2005-08-18 17:37:11','2006-02-15 22:13:30'),(4099,150,1,12887,'1.99','2005-08-19 03:38:54','2006-02-15 22:13:30'),(4100,150,2,12890,'0.99','2005-08-19 03:42:08','2006-02-15 22:13:30'),(4101,150,1,13116,'6.99','2005-08-19 11:31:41','2006-02-15 22:13:30'),(4102,150,2,13255,'8.99','2005-08-19 16:54:12','2006-02-15 22:13:30'),(4103,150,1,13372,'2.99','2005-08-19 21:23:19','2006-02-15 22:13:30'),(4104,150,2,13599,'5.99','2005-08-20 06:00:03','2006-02-15 22:13:30'),(4105,150,2,14165,'0.99','2005-08-21 02:59:17','2006-02-15 22:13:30'),(4106,150,2,14454,'2.99','2005-08-21 12:35:49','2006-02-15 22:13:30'),(4107,150,2,14520,'9.99','2005-08-21 15:00:49','2006-02-15 22:13:30'),(4108,150,1,14663,'0.99','2005-08-21 19:47:55','2006-02-15 22:13:30'),(4109,151,2,164,'4.99','2005-05-26 02:26:49','2006-02-15 22:13:30'),(4110,151,2,418,'5.99','2005-05-27 15:13:17','2006-02-15 22:13:30'),(4111,151,2,2474,'2.99','2005-06-18 20:51:34','2006-02-15 22:13:30'),(4112,151,2,2947,'2.99','2005-06-20 06:00:21','2006-02-15 22:13:30'),(4113,151,1,3017,'3.99','2005-06-20 11:08:56','2006-02-15 22:13:30'),(4114,151,2,3089,'0.99','2005-06-20 15:57:01','2006-02-15 22:13:30'),(4115,151,2,3390,'2.99','2005-06-21 15:10:50','2006-02-15 22:13:30'),(4116,151,1,4376,'2.99','2005-07-07 20:24:33','2006-02-15 22:13:30'),(4117,151,2,6720,'0.99','2005-07-12 13:41:16','2006-02-15 22:13:30'),(4118,151,2,6768,'3.99','2005-07-12 15:47:51','2006-02-15 22:13:30'),(4119,151,2,6854,'0.99','2005-07-12 19:38:57','2006-02-15 22:13:30'),(4120,151,1,7189,'0.99','2005-07-27 08:35:02','2006-02-15 22:13:30'),(4121,151,2,7332,'3.99','2005-07-27 13:58:57','2006-02-15 22:13:30'),(4122,151,1,9253,'4.99','2005-07-30 14:20:12','2006-02-15 22:13:30'),(4123,151,1,9890,'4.99','2005-07-31 14:04:44','2006-02-15 22:13:30'),(4124,151,1,9969,'2.99','2005-07-31 16:38:12','2006-02-15 22:13:30'),(4125,151,1,10078,'2.99','2005-07-31 20:02:02','2006-02-15 22:13:30'),(4126,151,1,10311,'4.99','2005-08-01 04:27:59','2006-02-15 22:13:30'),(4127,151,1,10662,'2.99','2005-08-01 16:50:57','2006-02-15 22:13:30'),(4128,151,2,11714,'2.99','2005-08-17 07:34:55','2006-02-15 22:13:30'),(4129,151,2,13230,'0.99','2005-08-19 16:12:07','2006-02-15 22:13:30'),(4130,151,1,13568,'5.99','2005-08-20 05:02:46','2006-02-15 22:13:30'),(4131,151,1,14856,'4.99','2005-08-22 02:31:51','2006-02-15 22:13:30'),(4132,151,2,14922,'3.99','2005-08-22 05:13:05','2006-02-15 22:13:30'),(4133,151,1,15227,'4.99','2005-08-22 17:22:41','2006-02-15 22:13:30'),(4134,151,1,15926,'2.99','2005-08-23 18:20:56','2006-02-15 22:13:31'),(4135,151,2,15996,'2.99','2005-08-23 20:31:38','2006-02-15 22:13:31'),(4136,152,2,359,'4.99','2005-05-27 06:48:33','2006-02-15 22:13:31'),(4137,152,1,745,'4.99','2005-05-29 09:22:57','2006-02-15 22:13:31'),(4138,152,1,2882,'4.99','2005-06-20 01:26:26','2006-02-15 22:13:31'),(4139,152,2,3577,'2.99','2005-07-06 03:40:36','2006-02-15 22:13:31'),(4140,152,1,3786,'7.99','2005-07-06 14:00:41','2006-02-15 22:13:31'),(4141,152,1,4974,'4.99','2005-07-09 00:00:36','2006-02-15 22:13:31'),(4142,152,1,6273,'0.99','2005-07-11 16:08:41','2006-02-15 22:13:31'),(4143,152,1,6612,'2.99','2005-07-12 08:28:33','2006-02-15 22:13:31'),(4144,152,1,9010,'5.99','2005-07-30 05:12:04','2006-02-15 22:13:31'),(4145,152,1,10320,'6.99','2005-08-01 04:39:26','2006-02-15 22:13:31'),(4146,152,2,11638,'6.99','2005-08-17 04:39:09','2006-02-15 22:13:31'),(4147,152,2,11783,'0.99','2005-08-17 10:39:24','2006-02-15 22:13:31'),(4148,152,1,12697,'2.99','2005-08-18 20:14:56','2006-02-15 22:13:31'),(4149,152,1,12917,'4.99','2005-08-19 04:27:11','2006-02-15 22:13:31'),(4150,152,2,12960,'1.99','2005-08-19 06:21:52','2006-02-15 22:13:31'),(4151,152,1,13204,'4.99','2005-08-19 15:02:48','2006-02-15 22:13:31'),(4152,152,2,13484,'0.99','2005-08-20 01:16:52','2006-02-15 22:13:31'),(4153,152,1,13986,'0.99','2005-08-20 19:13:23','2006-02-15 22:13:31'),(4154,152,1,14173,'0.99','2005-08-21 03:01:01','2006-02-15 22:13:31'),(4155,152,2,14668,'4.99','2005-08-21 19:51:30','2006-02-15 22:13:31'),(4156,152,2,11848,'4.99','2006-02-14 15:16:03','2006-02-15 22:13:31'),(4157,153,1,2224,'0.99','2005-06-18 03:33:58','2006-02-15 22:13:31'),(4158,153,1,2649,'0.99','2005-06-19 10:20:09','2006-02-15 22:13:31'),(4159,153,1,2893,'4.99','2005-06-20 02:22:08','2006-02-15 22:13:31'),(4160,153,1,2945,'5.99','2005-06-20 05:49:27','2006-02-15 22:13:31'),(4161,153,1,3795,'0.99','2005-07-06 14:37:41','2006-02-15 22:13:31'),(4162,153,1,3949,'0.99','2005-07-06 21:46:36','2006-02-15 22:13:31'),(4163,153,1,4194,'5.99','2005-07-07 10:59:39','2006-02-15 22:13:31'),(4164,153,2,4670,'5.99','2005-07-08 10:14:18','2006-02-15 22:13:31'),(4165,153,2,5676,'0.99','2005-07-10 08:38:32','2006-02-15 22:13:31'),(4166,153,2,5771,'0.99','2005-07-10 13:26:45','2006-02-15 22:13:31'),(4167,153,2,6818,'9.99','2005-07-12 18:20:54','2006-02-15 22:13:31'),(4168,153,2,7824,'7.99','2005-07-28 08:34:47','2006-02-15 22:13:31'),(4169,153,2,9936,'0.99','2005-07-31 15:27:41','2006-02-15 22:13:31'),(4170,153,2,10015,'4.99','2005-07-31 18:11:17','2006-02-15 22:13:31'),(4171,153,2,11368,'4.99','2005-08-02 18:03:05','2006-02-15 22:13:31'),(4172,153,1,12103,'1.99','2005-08-17 22:49:09','2006-02-15 22:13:31'),(4173,153,1,12439,'3.99','2005-08-18 10:44:57','2006-02-15 22:13:31'),(4174,153,1,12882,'4.99','2005-08-19 03:33:46','2006-02-15 22:13:31'),(4175,153,1,14664,'4.99','2005-08-21 19:48:47','2006-02-15 22:13:31'),(4176,153,1,14747,'4.99','2005-08-21 23:00:02','2006-02-15 22:13:31'),(4177,153,1,14944,'4.99','2005-08-22 06:01:26','2006-02-15 22:13:31'),(4178,153,2,15267,'0.99','2005-08-22 18:37:48','2006-02-15 22:13:31'),(4179,153,2,15444,'7.99','2005-08-23 00:46:52','2006-02-15 22:13:32'),(4180,153,1,15593,'1.99','2005-08-23 06:15:09','2006-02-15 22:13:32'),(4181,154,1,469,'5.99','2005-05-27 21:14:26','2006-02-15 22:13:32'),(4182,154,2,865,'7.99','2005-05-30 03:39:44','2006-02-15 22:13:32'),(4183,154,2,978,'5.99','2005-05-30 21:30:52','2006-02-15 22:13:32'),(4184,154,1,1963,'0.99','2005-06-17 09:09:31','2006-02-15 22:13:32'),(4185,154,1,2886,'4.99','2005-06-20 01:38:39','2006-02-15 22:13:32'),(4186,154,1,2985,'2.99','2005-06-20 08:45:08','2006-02-15 22:13:32'),(4187,154,2,3806,'7.99','2005-07-06 15:09:41','2006-02-15 22:13:32'),(4188,154,2,3912,'0.99','2005-07-06 20:10:03','2006-02-15 22:13:32'),(4189,154,2,4132,'4.99','2005-07-07 08:06:07','2006-02-15 22:13:32'),(4190,154,1,4252,'2.99','2005-07-07 14:13:05','2006-02-15 22:13:32'),(4191,154,1,4850,'5.99','2005-07-08 18:39:31','2006-02-15 22:13:32'),(4192,154,1,5101,'0.99','2005-07-09 06:21:29','2006-02-15 22:13:32'),(4193,154,2,5760,'2.99','2005-07-10 12:44:48','2006-02-15 22:13:32'),(4194,154,1,6048,'0.99','2005-07-11 03:32:23','2006-02-15 22:13:32'),(4195,154,2,6993,'4.99','2005-07-27 01:05:24','2006-02-15 22:13:32'),(4196,154,1,7055,'4.99','2005-07-27 03:45:42','2006-02-15 22:13:32'),(4197,154,1,7156,'4.99','2005-07-27 07:19:34','2006-02-15 22:13:32'),(4198,154,2,7900,'1.99','2005-07-28 11:11:33','2006-02-15 22:13:32'),(4199,154,2,8334,'7.99','2005-07-29 04:18:25','2006-02-15 22:13:32'),(4200,154,2,9286,'2.99','2005-07-30 15:32:28','2006-02-15 22:13:32'),(4201,154,1,10278,'6.99','2005-08-01 03:25:27','2006-02-15 22:13:32'),(4202,154,1,10851,'4.99','2005-08-01 23:58:45','2006-02-15 22:13:32'),(4203,154,1,11296,'5.99','2005-08-02 15:15:27','2006-02-15 22:13:32'),(4204,154,1,12341,'0.99','2005-08-18 07:09:27','2006-02-15 22:13:32'),(4205,154,2,13861,'4.99','2005-08-20 14:56:53','2006-02-15 22:13:32'),(4206,154,2,14731,'2.99','2005-08-21 22:21:49','2006-02-15 22:13:32'),(4207,154,2,14793,'7.99','2005-08-22 00:37:57','2006-02-15 22:13:32'),(4208,154,1,14918,'6.99','2005-08-22 05:06:38','2006-02-15 22:13:32'),(4209,154,1,15351,'0.99','2005-08-22 21:15:46','2006-02-15 22:13:32'),(4210,154,1,15721,'2.99','2005-08-23 11:16:16','2006-02-15 22:13:32'),(4211,155,1,568,'2.99','2005-05-28 09:57:36','2006-02-15 22:13:32'),(4212,155,2,1519,'1.99','2005-06-15 23:55:27','2006-02-15 22:13:32'),(4213,155,1,1554,'7.99','2005-06-16 02:16:47','2006-02-15 22:13:32'),(4214,155,1,2028,'7.99','2005-06-17 13:08:08','2006-02-15 22:13:32'),(4215,155,1,2869,'4.99','2005-06-20 00:09:25','2006-02-15 22:13:32'),(4216,155,2,3405,'4.99','2005-06-21 15:58:25','2006-02-15 22:13:32'),(4217,155,1,5128,'1.99','2005-07-09 07:25:54','2006-02-15 22:13:32'),(4218,155,1,6066,'5.99','2005-07-11 04:32:42','2006-02-15 22:13:32'),(4219,155,1,6085,'4.99','2005-07-11 05:24:36','2006-02-15 22:13:32'),(4220,155,2,6087,'4.99','2005-07-11 05:29:22','2006-02-15 22:13:32'),(4221,155,1,6443,'2.99','2005-07-12 00:35:51','2006-02-15 22:13:32'),(4222,155,1,7077,'3.99','2005-07-27 04:13:02','2006-02-15 22:13:33'),(4223,155,1,7492,'2.99','2005-07-27 19:54:18','2006-02-15 22:13:33'),(4224,155,2,7730,'5.99','2005-07-28 04:59:48','2006-02-15 22:13:33'),(4225,155,2,9781,'7.99','2005-07-31 10:13:02','2006-02-15 22:13:33'),(4226,155,1,10098,'0.99','2005-07-31 20:41:17','2006-02-15 22:13:33'),(4227,155,1,11033,'4.99','2005-08-02 05:54:17','2006-02-15 22:13:33'),(4228,155,2,11951,'5.99','2005-08-17 17:14:02','2006-02-15 22:13:33'),(4229,155,1,14324,'8.99','2005-08-21 08:10:56','2006-02-15 22:13:33'),(4230,155,2,14549,'2.99','2005-08-21 15:54:21','2006-02-15 22:13:33'),(4231,155,1,14753,'2.99','2005-08-21 23:11:43','2006-02-15 22:13:33'),(4232,155,2,14909,'0.99','2005-08-22 04:48:44','2006-02-15 22:13:33'),(4233,155,1,15106,'0.99','2005-08-22 12:01:48','2006-02-15 22:13:33'),(4234,155,2,11496,'7.98','2006-02-14 15:16:03','2006-02-15 22:13:33'),(4235,155,1,12352,'0.00','2006-02-14 15:16:03','2006-02-15 22:13:33'),(4236,156,2,899,'6.99','2005-05-30 09:29:30','2006-02-15 22:13:33'),(4237,156,1,1052,'4.99','2005-05-31 07:07:03','2006-02-15 22:13:33'),(4238,156,2,2089,'9.99','2005-06-17 17:45:09','2006-02-15 22:13:33'),(4239,156,2,2221,'0.99','2005-06-18 03:24:56','2006-02-15 22:13:33'),(4240,156,1,2658,'4.99','2005-06-19 10:43:42','2006-02-15 22:13:33'),(4241,156,1,2782,'0.99','2005-06-19 18:25:07','2006-02-15 22:13:33'),(4242,156,2,4394,'2.99','2005-07-07 21:12:45','2006-02-15 22:13:33'),(4243,156,2,5534,'4.99','2005-07-10 02:26:49','2006-02-15 22:13:33'),(4244,156,1,5828,'2.99','2005-07-10 16:27:25','2006-02-15 22:13:33'),(4245,156,2,5908,'0.99','2005-07-10 20:44:14','2006-02-15 22:13:33'),(4246,156,2,6540,'6.99','2005-07-12 04:51:13','2006-02-15 22:13:33'),(4247,156,2,7389,'2.99','2005-07-27 15:56:15','2006-02-15 22:13:33'),(4248,156,2,7822,'4.99','2005-07-28 08:31:45','2006-02-15 22:13:33'),(4249,156,1,9409,'6.99','2005-07-30 20:33:53','2006-02-15 22:13:33'),(4250,156,1,9696,'0.99','2005-07-31 07:13:46','2006-02-15 22:13:33'),(4251,156,2,10309,'6.99','2005-08-01 04:24:18','2006-02-15 22:13:33'),(4252,156,2,11490,'2.99','2005-08-02 22:36:00','2006-02-15 22:13:33'),(4253,156,1,11587,'5.99','2005-08-17 02:21:03','2006-02-15 22:13:33'),(4254,156,2,13530,'0.99','2005-08-20 03:12:43','2006-02-15 22:13:33'),(4255,156,2,13531,'2.99','2005-08-20 03:26:10','2006-02-15 22:13:33'),(4256,156,2,13802,'2.99','2005-08-20 12:44:53','2006-02-15 22:13:33'),(4257,156,1,14794,'1.99','2005-08-22 00:39:31','2006-02-15 22:13:33'),(4258,156,2,14831,'4.99','2005-08-22 01:40:49','2006-02-15 22:13:33'),(4259,156,1,14914,'0.99','2005-08-22 04:53:35','2006-02-15 22:13:33'),(4260,156,1,15408,'6.99','2005-08-22 23:26:32','2006-02-15 22:13:33'),(4261,157,2,352,'0.99','2005-05-27 05:48:19','2006-02-15 22:13:33'),(4262,157,1,642,'4.99','2005-05-28 18:49:12','2006-02-15 22:13:33'),(4263,157,2,2340,'0.99','2005-06-18 11:30:56','2006-02-15 22:13:33'),(4264,157,1,3739,'0.99','2005-07-06 11:54:18','2006-02-15 22:13:33'),(4265,157,1,4253,'5.99','2005-07-07 14:13:13','2006-02-15 22:13:33'),(4266,157,2,4435,'3.99','2005-07-07 22:51:04','2006-02-15 22:13:34'),(4267,157,1,4919,'0.99','2005-07-08 21:41:54','2006-02-15 22:13:34'),(4268,157,1,5862,'4.99','2005-07-10 18:20:48','2006-02-15 22:13:34'),(4269,157,1,7110,'2.99','2005-07-27 05:30:48','2006-02-15 22:13:34'),(4270,157,2,7195,'2.99','2005-07-27 08:47:01','2006-02-15 22:13:34'),(4271,157,2,7499,'4.99','2005-07-27 20:10:28','2006-02-15 22:13:34'),(4272,157,2,8163,'0.99','2005-07-28 21:11:48','2006-02-15 22:13:34'),(4273,157,2,8337,'0.99','2005-07-29 04:31:55','2006-02-15 22:13:34'),(4274,157,2,8347,'0.99','2005-07-29 04:49:25','2006-02-15 22:13:34'),(4275,157,2,8576,'4.99','2005-07-29 11:55:01','2006-02-15 22:13:34'),(4276,157,1,8707,'0.99','2005-07-29 17:21:58','2006-02-15 22:13:34'),(4277,157,1,8827,'4.99','2005-07-29 22:31:24','2006-02-15 22:13:34'),(4278,157,2,9237,'2.99','2005-07-30 13:48:17','2006-02-15 22:13:34'),(4279,157,2,9264,'4.99','2005-07-30 14:51:36','2006-02-15 22:13:34'),(4280,157,1,9958,'2.99','2005-07-31 16:03:56','2006-02-15 22:13:34'),(4281,157,1,10203,'4.99','2005-08-01 00:45:27','2006-02-15 22:13:34'),(4282,157,2,11249,'4.99','2005-08-02 13:35:40','2006-02-15 22:13:34'),(4283,157,2,11335,'4.99','2005-08-02 16:57:37','2006-02-15 22:13:34'),(4284,157,1,12213,'5.99','2005-08-18 02:33:55','2006-02-15 22:13:34'),(4285,157,1,12464,'6.99','2005-08-18 11:33:34','2006-02-15 22:13:34'),(4286,157,1,12916,'0.99','2005-08-19 04:27:05','2006-02-15 22:13:34'),(4287,157,1,13097,'4.99','2005-08-19 10:50:43','2006-02-15 22:13:34'),(4288,157,1,13214,'4.99','2005-08-19 15:31:06','2006-02-15 22:13:34'),(4289,157,1,13481,'6.99','2005-08-20 01:11:12','2006-02-15 22:13:34'),(4290,157,1,13728,'2.99','2005-08-20 10:11:07','2006-02-15 22:13:34'),(4291,157,2,14974,'4.99','2005-08-22 07:04:25','2006-02-15 22:13:34'),(4292,158,2,245,'4.99','2005-05-26 13:46:59','2006-02-15 22:13:34'),(4293,158,1,293,'5.99','2005-05-26 20:27:02','2006-02-15 22:13:34'),(4294,158,1,1380,'0.99','2005-06-15 15:13:10','2006-02-15 22:13:34'),(4295,158,2,1790,'4.99','2005-06-16 19:58:40','2006-02-15 22:13:34'),(4296,158,2,2035,'6.99','2005-06-17 13:45:09','2006-02-15 22:13:34'),(4297,158,2,3203,'8.99','2005-06-21 00:34:56','2006-02-15 22:13:34'),(4298,158,1,4117,'8.99','2005-07-07 06:58:14','2006-02-15 22:13:34'),(4299,158,1,5672,'2.99','2005-07-10 08:19:38','2006-02-15 22:13:34'),(4300,158,1,5988,'4.99','2005-07-11 00:55:38','2006-02-15 22:13:34'),(4301,158,1,6416,'2.99','2005-07-11 23:29:14','2006-02-15 22:13:34'),(4302,158,2,6901,'5.99','2005-07-12 21:46:33','2006-02-15 22:13:34'),(4303,158,2,7159,'2.99','2005-07-27 07:24:00','2006-02-15 22:13:34'),(4304,158,1,7732,'0.99','2005-07-28 05:03:32','2006-02-15 22:13:34'),(4305,158,2,7952,'2.99','2005-07-28 13:23:49','2006-02-15 22:13:34'),(4306,158,1,8750,'2.99','2005-07-29 19:14:21','2006-02-15 22:13:34'),(4307,158,1,8957,'1.99','2005-07-30 03:34:10','2006-02-15 22:13:34'),(4308,158,1,9393,'2.99','2005-07-30 20:04:48','2006-02-15 22:13:34'),(4309,158,1,9713,'1.99','2005-07-31 08:13:28','2006-02-15 22:13:35'),(4310,158,1,9801,'2.99','2005-07-31 11:03:13','2006-02-15 22:13:35'),(4311,158,2,11077,'4.99','2005-08-02 07:26:43','2006-02-15 22:13:35'),(4312,158,1,11103,'6.99','2005-08-02 08:09:54','2006-02-15 22:13:35'),(4313,158,1,11272,'0.99','2005-08-02 14:20:27','2006-02-15 22:13:35'),(4314,158,1,11420,'2.99','2005-08-02 19:47:56','2006-02-15 22:13:35'),(4315,158,2,12070,'1.99','2005-08-17 21:46:47','2006-02-15 22:13:35'),(4316,158,2,12421,'5.99','2005-08-18 10:04:06','2006-02-15 22:13:35'),(4317,158,2,13212,'1.99','2005-08-19 15:24:07','2006-02-15 22:13:35'),(4318,158,2,13854,'2.99','2005-08-20 14:48:42','2006-02-15 22:13:35'),(4319,158,1,13926,'2.99','2005-08-20 17:09:27','2006-02-15 22:13:35'),(4320,158,2,14028,'0.99','2005-08-20 21:23:03','2006-02-15 22:13:35'),(4321,158,1,15763,'2.99','2005-08-23 13:02:59','2006-02-15 22:13:35'),(4322,158,1,15796,'5.99','2005-08-23 14:12:22','2006-02-15 22:13:35'),(4323,158,1,15802,'5.99','2005-08-23 14:26:51','2006-02-15 22:13:35'),(4324,159,2,475,'2.99','2005-05-27 22:16:26','2006-02-15 22:13:35'),(4325,159,2,549,'1.99','2005-05-28 07:35:37','2006-02-15 22:13:35'),(4326,159,1,598,'0.99','2005-05-28 14:04:50','2006-02-15 22:13:35'),(4327,159,1,832,'3.99','2005-05-29 22:51:20','2006-02-15 22:13:35'),(4328,159,1,1695,'0.99','2005-06-16 12:40:28','2006-02-15 22:13:35'),(4329,159,1,2572,'0.99','2005-06-19 04:21:26','2006-02-15 22:13:35'),(4330,159,2,3914,'5.99','2005-07-06 20:11:10','2006-02-15 22:13:35'),(4331,159,2,4273,'4.99','2005-07-07 14:40:22','2006-02-15 22:13:35'),(4332,159,2,5656,'0.99','2005-07-10 07:31:07','2006-02-15 22:13:35'),(4333,159,2,6885,'4.99','2005-07-12 20:56:04','2006-02-15 22:13:35'),(4334,159,2,8212,'2.99','2005-07-28 23:37:23','2006-02-15 22:13:35'),(4335,159,1,8470,'0.99','2005-07-29 08:28:50','2006-02-15 22:13:35'),(4336,159,2,9022,'3.99','2005-07-30 05:34:45','2006-02-15 22:13:35'),(4337,159,2,9132,'0.99','2005-07-30 09:56:00','2006-02-15 22:13:35'),(4338,159,1,9559,'7.99','2005-07-31 02:15:53','2006-02-15 22:13:35'),(4339,159,1,9917,'4.99','2005-07-31 14:55:11','2006-02-15 22:13:35'),(4340,159,2,11225,'4.99','2005-08-02 12:43:27','2006-02-15 22:13:35'),(4341,159,2,13270,'1.99','2005-08-19 17:41:16','2006-02-15 22:13:35'),(4342,159,1,13933,'0.99','2005-08-20 17:17:07','2006-02-15 22:13:35'),(4343,159,2,14575,'8.99','2005-08-21 16:51:34','2006-02-15 22:13:35'),(4344,159,1,15197,'0.99','2005-08-22 16:14:25','2006-02-15 22:13:35'),(4345,160,2,2314,'4.99','2005-06-18 09:03:19','2006-02-15 22:13:35'),(4346,160,1,2465,'2.99','2005-06-18 20:07:02','2006-02-15 22:13:35'),(4347,160,2,2873,'2.99','2005-06-20 00:41:25','2006-02-15 22:13:35'),(4348,160,1,4842,'0.99','2005-07-08 18:21:30','2006-02-15 22:13:35'),(4349,160,1,4908,'5.99','2005-07-08 21:05:44','2006-02-15 22:13:35'),(4350,160,2,6364,'6.99','2005-07-11 21:14:48','2006-02-15 22:13:35'),(4351,160,2,6448,'1.99','2005-07-12 00:45:59','2006-02-15 22:13:36'),(4352,160,2,7500,'0.99','2005-07-27 20:16:03','2006-02-15 22:13:36'),(4353,160,1,8184,'4.99','2005-07-28 22:22:35','2006-02-15 22:13:36'),(4354,160,1,9681,'0.99','2005-07-31 06:42:09','2006-02-15 22:13:36'),(4355,160,2,9758,'2.99','2005-07-31 09:25:38','2006-02-15 22:13:36'),(4356,160,2,10089,'2.99','2005-07-31 20:17:09','2006-02-15 22:13:36'),(4357,160,1,10305,'2.99','2005-08-01 04:16:16','2006-02-15 22:13:36'),(4358,160,2,10788,'0.99','2005-08-01 21:37:10','2006-02-15 22:13:36'),(4359,160,2,10958,'4.99','2005-08-02 03:37:13','2006-02-15 22:13:36'),(4360,160,2,10979,'5.99','2005-08-02 04:16:37','2006-02-15 22:13:36'),(4361,160,2,11154,'2.99','2005-08-02 09:54:50','2006-02-15 22:13:36'),(4362,160,1,11803,'2.99','2005-08-17 11:42:08','2006-02-15 22:13:36'),(4363,160,1,11888,'7.99','2005-08-17 15:04:05','2006-02-15 22:13:36'),(4364,160,2,12334,'2.99','2005-08-18 06:52:36','2006-02-15 22:13:36'),(4365,160,1,12435,'7.99','2005-08-18 10:38:31','2006-02-15 22:13:36'),(4366,160,2,13093,'6.99','2005-08-19 10:46:16','2006-02-15 22:13:36'),(4367,160,1,14868,'4.99','2005-08-22 03:15:01','2006-02-15 22:13:36'),(4368,160,1,15112,'2.99','2005-08-22 12:21:49','2006-02-15 22:13:36'),(4369,160,2,15642,'2.99','2005-08-23 08:09:11','2006-02-15 22:13:36'),(4370,160,1,15962,'4.99','2005-08-23 19:42:04','2006-02-15 22:13:36'),(4371,160,1,16027,'3.99','2005-08-23 21:49:33','2006-02-15 22:13:36'),(4372,161,2,428,'2.99','2005-05-27 16:10:58','2006-02-15 22:13:36'),(4373,161,2,477,'3.99','2005-05-27 22:33:33','2006-02-15 22:13:36'),(4374,161,1,520,'5.99','2005-05-28 03:27:37','2006-02-15 22:13:36'),(4375,161,2,539,'0.99','2005-05-28 06:26:16','2006-02-15 22:13:36'),(4376,161,1,612,'2.99','2005-05-28 15:24:54','2006-02-15 22:13:36'),(4377,161,1,1003,'0.99','2005-05-31 00:48:20','2006-02-15 22:13:36'),(4378,161,1,1856,'2.99','2005-06-17 01:02:00','2006-02-15 22:13:36'),(4379,161,1,3075,'3.99','2005-06-20 14:52:19','2006-02-15 22:13:36'),(4380,161,1,3948,'4.99','2005-07-06 21:45:53','2006-02-15 22:13:36'),(4381,161,2,4187,'0.99','2005-07-07 10:41:31','2006-02-15 22:13:36'),(4382,161,2,4248,'6.99','2005-07-07 13:59:20','2006-02-15 22:13:36'),(4383,161,1,4490,'2.99','2005-07-08 01:26:32','2006-02-15 22:13:36'),(4384,161,2,5349,'6.99','2005-07-09 17:35:35','2006-02-15 22:13:36'),(4385,161,2,6873,'4.99','2005-07-12 20:20:50','2006-02-15 22:13:36'),(4386,161,1,7003,'2.99','2005-07-27 01:32:06','2006-02-15 22:13:36'),(4387,161,2,8774,'4.99','2005-07-29 20:05:04','2006-02-15 22:13:36'),(4388,161,1,9135,'4.99','2005-07-30 10:06:53','2006-02-15 22:13:36'),(4389,161,2,9421,'0.99','2005-07-30 21:08:32','2006-02-15 22:13:36'),(4390,161,1,10241,'5.99','2005-08-01 02:12:25','2006-02-15 22:13:36'),(4391,161,1,10355,'0.99','2005-08-01 05:47:37','2006-02-15 22:13:37'),(4392,161,1,10637,'2.99','2005-08-01 15:44:09','2006-02-15 22:13:37'),(4393,161,1,10863,'6.99','2005-08-02 00:18:07','2006-02-15 22:13:37'),(4394,161,2,10939,'0.99','2005-08-02 03:06:20','2006-02-15 22:13:37'),(4395,161,1,11838,'2.99','2005-08-17 13:06:00','2006-02-15 22:13:37'),(4396,161,2,14150,'0.99','2005-08-21 02:23:03','2006-02-15 22:13:37'),(4397,161,1,14370,'7.99','2005-08-21 09:35:14','2006-02-15 22:13:37'),(4398,161,1,15000,'0.99','2005-08-22 07:54:58','2006-02-15 22:13:37'),(4399,161,2,15045,'5.99','2005-08-22 09:53:23','2006-02-15 22:13:37'),(4400,161,2,15150,'2.99','2005-08-22 14:12:05','2006-02-15 22:13:37'),(4401,161,1,15420,'5.99','2005-08-22 23:55:51','2006-02-15 22:13:37'),(4402,162,1,285,'1.99','2005-05-26 19:41:40','2006-02-15 22:13:37'),(4403,162,1,501,'4.99','2005-05-28 01:09:36','2006-02-15 22:13:37'),(4404,162,1,688,'4.99','2005-05-29 00:45:24','2006-02-15 22:13:37'),(4405,162,2,1339,'4.99','2005-06-15 12:21:56','2006-02-15 22:13:37'),(4406,162,1,2366,'0.99','2005-06-18 13:46:39','2006-02-15 22:13:37'),(4407,162,1,2547,'4.99','2005-06-19 02:44:17','2006-02-15 22:13:37'),(4408,162,1,3040,'0.99','2005-06-20 12:34:13','2006-02-15 22:13:37'),(4409,162,2,3180,'0.99','2005-06-20 22:48:44','2006-02-15 22:13:37'),(4410,162,2,4982,'2.99','2005-07-09 00:30:52','2006-02-15 22:13:37'),(4411,162,2,8478,'4.99','2005-07-29 08:40:36','2006-02-15 22:13:37'),(4412,162,1,8582,'4.99','2005-07-29 12:03:27','2006-02-15 22:13:37'),(4413,162,2,9167,'4.99','2005-07-30 11:30:37','2006-02-15 22:13:37'),(4414,162,1,9726,'7.99','2005-07-31 08:37:07','2006-02-15 22:13:37'),(4415,162,1,9775,'0.99','2005-07-31 10:00:00','2006-02-15 22:13:37'),(4416,162,2,10093,'5.99','2005-07-31 20:30:32','2006-02-15 22:13:37'),(4417,162,2,11012,'0.99','2005-08-02 05:09:42','2006-02-15 22:13:37'),(4418,162,1,13288,'4.99','2005-08-19 18:30:10','2006-02-15 22:13:37'),(4419,162,2,14301,'1.99','2005-08-21 07:19:48','2006-02-15 22:13:37'),(4420,162,1,15332,'4.99','2005-08-22 20:41:53','2006-02-15 22:13:37'),(4421,162,1,14220,'0.99','2006-02-14 15:16:03','2006-02-15 22:13:37'),(4422,163,2,1265,'4.99','2005-06-15 07:00:50','2006-02-15 22:13:37'),(4423,163,2,2000,'2.99','2005-06-17 11:32:30','2006-02-15 22:13:37'),(4424,163,2,2110,'7.99','2005-06-17 19:45:49','2006-02-15 22:13:37'),(4425,163,2,2536,'5.99','2005-06-19 01:41:34','2006-02-15 22:13:37'),(4426,163,1,2994,'6.99','2005-06-20 09:17:05','2006-02-15 22:13:37'),(4427,163,1,3179,'0.99','2005-06-20 22:37:59','2006-02-15 22:13:37'),(4428,163,2,3915,'3.99','2005-07-06 20:16:46','2006-02-15 22:13:37'),(4429,163,1,4126,'1.99','2005-07-07 07:24:11','2006-02-15 22:13:37'),(4430,163,2,5549,'4.99','2005-07-10 02:58:29','2006-02-15 22:13:37'),(4431,163,1,5574,'10.99','2005-07-10 03:54:38','2006-02-15 22:13:37'),(4432,163,1,6109,'0.99','2005-07-11 07:20:57','2006-02-15 22:13:37'),(4433,163,1,6831,'1.99','2005-07-12 18:44:04','2006-02-15 22:13:38'),(4434,163,1,7303,'1.99','2005-07-27 12:54:39','2006-02-15 22:13:38'),(4435,163,1,7403,'2.99','2005-07-27 16:22:09','2006-02-15 22:13:38'),(4436,163,2,8040,'0.99','2005-07-28 16:39:43','2006-02-15 22:13:38'),(4437,163,2,8063,'4.99','2005-07-28 17:15:11','2006-02-15 22:13:38'),(4438,163,2,8403,'4.99','2005-07-29 06:26:39','2006-02-15 22:13:38'),(4439,163,2,10245,'0.99','2005-08-01 02:24:09','2006-02-15 22:13:38'),(4440,163,2,11623,'2.99','2005-08-17 04:15:47','2006-02-15 22:13:38'),(4441,163,2,11940,'4.99','2005-08-17 16:56:28','2006-02-15 22:13:38'),(4442,163,1,12154,'2.99','2005-08-18 00:23:56','2006-02-15 22:13:38'),(4443,163,2,12973,'2.99','2005-08-19 06:48:11','2006-02-15 22:13:38'),(4444,163,2,13543,'7.99','2005-08-20 03:43:13','2006-02-15 22:13:38'),(4445,163,2,14275,'4.99','2005-08-21 06:30:30','2006-02-15 22:13:38'),(4446,163,2,14427,'5.99','2005-08-21 11:26:06','2006-02-15 22:13:38'),(4447,163,1,15520,'8.99','2005-08-23 03:30:45','2006-02-15 22:13:38'),(4448,163,1,15847,'0.99','2005-08-23 15:39:38','2006-02-15 22:13:38'),(4449,163,2,11754,'7.98','2006-02-14 15:16:03','2006-02-15 22:13:38'),(4450,163,1,15282,'0.00','2006-02-14 15:16:03','2006-02-15 22:13:38'),(4451,164,2,1011,'1.99','2005-05-31 02:05:39','2006-02-15 22:13:38'),(4452,164,2,1713,'4.99','2005-06-16 14:28:33','2006-02-15 22:13:38'),(4453,164,2,2589,'2.99','2005-06-19 05:21:27','2006-02-15 22:13:38'),(4454,164,1,3082,'8.99','2005-06-20 15:32:11','2006-02-15 22:13:38'),(4455,164,2,4548,'4.99','2005-07-08 04:21:54','2006-02-15 22:13:38'),(4456,164,1,5895,'3.99','2005-07-10 20:13:19','2006-02-15 22:13:38'),(4457,164,1,6393,'0.99','2005-07-11 22:28:12','2006-02-15 22:13:38'),(4458,164,2,6558,'2.99','2005-07-12 05:16:07','2006-02-15 22:13:38'),(4459,164,1,6637,'4.99','2005-07-12 09:57:39','2006-02-15 22:13:38'),(4460,164,2,6702,'0.99','2005-07-12 12:48:03','2006-02-15 22:13:38'),(4461,164,1,6980,'3.99','2005-07-27 00:50:30','2006-02-15 22:13:38'),(4462,164,1,7227,'6.99','2005-07-27 09:53:43','2006-02-15 22:13:38'),(4463,164,2,8135,'3.99','2005-07-28 20:03:25','2006-02-15 22:13:38'),(4464,164,2,8824,'4.99','2005-07-29 22:22:58','2006-02-15 22:13:38'),(4465,164,2,11175,'2.99','2005-08-02 10:38:47','2006-02-15 22:13:38'),(4466,164,2,13453,'5.99','2005-08-20 00:30:51','2006-02-15 22:13:38'),(4467,165,2,338,'4.99','2005-05-27 03:42:52','2006-02-15 22:13:38'),(4468,165,1,2013,'3.99','2005-06-17 12:03:01','2006-02-15 22:13:38'),(4469,165,2,3195,'2.99','2005-06-21 00:02:10','2006-02-15 22:13:38'),(4470,165,2,3531,'4.99','2005-07-06 01:24:08','2006-02-15 22:13:38'),(4471,165,1,3784,'5.99','2005-07-06 13:57:56','2006-02-15 22:13:38'),(4472,165,2,4304,'0.99','2005-07-07 17:01:19','2006-02-15 22:13:38'),(4473,165,2,4945,'2.99','2005-07-08 22:45:02','2006-02-15 22:13:38'),(4474,165,1,5472,'4.99','2005-07-09 23:16:40','2006-02-15 22:13:38'),(4475,165,2,5658,'4.99','2005-07-10 07:34:08','2006-02-15 22:13:38'),(4476,165,2,5901,'6.99','2005-07-10 20:22:12','2006-02-15 22:13:39'),(4477,165,1,5973,'0.99','2005-07-11 00:09:17','2006-02-15 22:13:39'),(4478,165,1,7074,'2.99','2005-07-27 04:06:24','2006-02-15 22:13:39'),(4479,165,1,8608,'0.99','2005-07-29 13:18:52','2006-02-15 22:13:39'),(4480,165,2,9182,'7.99','2005-07-30 12:06:58','2006-02-15 22:13:39'),(4481,165,2,9685,'4.99','2005-07-31 06:49:18','2006-02-15 22:13:39'),(4482,165,1,10565,'4.99','2005-08-01 13:08:27','2006-02-15 22:13:39'),(4483,165,1,11484,'2.99','2005-08-02 22:28:23','2006-02-15 22:13:39'),(4484,165,2,12643,'4.99','2005-08-18 18:21:06','2006-02-15 22:13:39'),(4485,165,2,15007,'1.99','2005-08-22 08:21:21','2006-02-15 22:13:39'),(4486,165,1,15801,'3.99','2005-08-23 14:26:04','2006-02-15 22:13:39'),(4487,165,2,15834,'5.99','2005-08-23 15:23:50','2006-02-15 22:13:39'),(4488,166,1,662,'1.99','2005-05-28 21:09:31','2006-02-15 22:13:39'),(4489,166,2,1412,'2.99','2005-06-15 17:09:48','2006-02-15 22:13:39'),(4490,166,1,2211,'3.99','2005-06-18 02:29:10','2006-02-15 22:13:39'),(4491,166,1,2874,'5.99','2005-06-20 00:42:26','2006-02-15 22:13:39'),(4492,166,1,3085,'0.99','2005-06-20 15:42:33','2006-02-15 22:13:39'),(4493,166,2,3606,'2.99','2005-07-06 05:28:02','2006-02-15 22:13:39'),(4494,166,1,3642,'2.99','2005-07-06 07:18:20','2006-02-15 22:13:39'),(4495,166,2,4389,'6.99','2005-07-07 20:58:58','2006-02-15 22:13:39'),(4496,166,1,4658,'0.99','2005-07-08 09:51:11','2006-02-15 22:13:39'),(4497,166,1,5184,'4.99','2005-07-09 10:14:34','2006-02-15 22:13:39'),(4498,166,2,5380,'4.99','2005-07-09 19:08:44','2006-02-15 22:13:39'),(4499,166,1,5646,'2.99','2005-07-10 07:08:09','2006-02-15 22:13:39'),(4500,166,1,5855,'7.99','2005-07-10 17:54:06','2006-02-15 22:13:39'),(4501,166,2,6237,'0.99','2005-07-11 14:19:12','2006-02-15 22:13:39'),(4502,166,2,6882,'2.99','2005-07-12 20:50:39','2006-02-15 22:13:39'),(4503,166,1,7581,'2.99','2005-07-27 23:14:35','2006-02-15 22:13:39'),(4504,166,1,8052,'5.99','2005-07-28 16:57:31','2006-02-15 22:13:39'),(4505,166,1,9009,'8.99','2005-07-30 05:12:01','2006-02-15 22:13:39'),(4506,166,2,10422,'7.99','2005-08-01 08:17:11','2006-02-15 22:13:39'),(4507,166,2,12683,'4.99','2005-08-18 19:50:43','2006-02-15 22:13:39'),(4508,166,1,12968,'4.99','2005-08-19 06:38:18','2006-02-15 22:13:39'),(4509,166,2,13582,'4.99','2005-08-20 05:28:11','2006-02-15 22:13:39'),(4510,166,2,13901,'7.99','2005-08-20 16:06:53','2006-02-15 22:13:39'),(4511,166,2,14261,'5.99','2005-08-21 06:07:24','2006-02-15 22:13:39'),(4512,166,2,14281,'2.99','2005-08-21 06:40:48','2006-02-15 22:13:39'),(4513,166,1,15213,'5.99','2005-08-22 16:49:02','2006-02-15 22:13:39'),(4514,166,2,15216,'2.99','2005-08-22 16:57:02','2006-02-15 22:13:39'),(4515,166,2,15806,'1.99','2005-08-23 14:31:50','2006-02-15 22:13:39'),(4516,167,1,280,'2.99','2005-05-26 18:36:58','2006-02-15 22:13:39'),(4517,167,1,365,'2.99','2005-05-27 07:31:20','2006-02-15 22:13:39'),(4518,167,1,927,'4.99','2005-05-30 12:16:40','2006-02-15 22:13:40'),(4519,167,1,1416,'3.99','2005-06-15 17:44:57','2006-02-15 22:13:40'),(4520,167,1,1509,'5.99','2005-06-15 22:35:53','2006-02-15 22:13:40'),(4521,167,2,2381,'5.99','2005-06-18 15:00:30','2006-02-15 22:13:40'),(4522,167,2,3518,'4.99','2005-07-06 00:56:03','2006-02-15 22:13:40'),(4523,167,2,4493,'0.99','2005-07-08 01:40:24','2006-02-15 22:13:40'),(4524,167,2,5131,'0.99','2005-07-09 07:35:03','2006-02-15 22:13:40'),(4525,167,1,5178,'4.99','2005-07-09 09:59:52','2006-02-15 22:13:40'),(4526,167,1,5191,'0.99','2005-07-09 10:26:48','2006-02-15 22:13:40'),(4527,167,1,5413,'4.99','2005-07-09 20:28:42','2006-02-15 22:13:40'),(4528,167,1,5781,'2.99','2005-07-10 13:49:30','2006-02-15 22:13:40'),(4529,167,2,6269,'4.99','2005-07-11 15:58:43','2006-02-15 22:13:40'),(4530,167,1,7608,'4.99','2005-07-28 00:08:36','2006-02-15 22:13:40'),(4531,167,1,8092,'2.99','2005-07-28 18:28:07','2006-02-15 22:13:40'),(4532,167,2,8227,'4.99','2005-07-29 00:02:22','2006-02-15 22:13:40'),(4533,167,1,8318,'2.99','2005-07-29 03:44:30','2006-02-15 22:13:40'),(4534,167,1,8793,'0.99','2005-07-29 20:57:22','2006-02-15 22:13:40'),(4535,167,2,8864,'0.99','2005-07-29 23:52:12','2006-02-15 22:13:40'),(4536,167,2,9563,'4.99','2005-07-31 02:28:39','2006-02-15 22:13:40'),(4537,167,2,10285,'3.99','2005-08-01 03:35:11','2006-02-15 22:13:40'),(4538,167,1,12642,'4.99','2005-08-18 18:19:16','2006-02-15 22:13:40'),(4539,167,2,12717,'4.99','2005-08-18 21:15:40','2006-02-15 22:13:40'),(4540,167,1,12978,'4.99','2005-08-19 06:57:27','2006-02-15 22:13:40'),(4541,167,1,13825,'6.99','2005-08-20 13:43:22','2006-02-15 22:13:40'),(4542,167,1,13870,'1.99','2005-08-20 15:09:16','2006-02-15 22:13:40'),(4543,167,1,15003,'3.99','2005-08-22 08:11:24','2006-02-15 22:13:40'),(4544,167,1,15050,'0.99','2005-08-22 10:07:52','2006-02-15 22:13:40'),(4545,167,2,15478,'0.99','2005-08-23 01:50:31','2006-02-15 22:13:40'),(4546,167,2,15530,'4.99','2005-08-23 03:50:48','2006-02-15 22:13:40'),(4547,167,2,15915,'4.99','2005-08-23 17:52:01','2006-02-15 22:13:40'),(4548,168,2,404,'0.99','2005-05-27 13:31:51','2006-02-15 22:13:40'),(4549,168,1,488,'4.99','2005-05-28 00:07:50','2006-02-15 22:13:40'),(4550,168,2,1222,'4.99','2005-06-15 03:38:49','2006-02-15 22:13:40'),(4551,168,1,3530,'2.99','2005-07-06 01:22:45','2006-02-15 22:13:40'),(4552,168,1,4308,'5.99','2005-07-07 17:29:16','2006-02-15 22:13:40'),(4553,168,2,4363,'5.99','2005-07-07 19:43:28','2006-02-15 22:13:40'),(4554,168,2,4953,'2.99','2005-07-08 23:09:48','2006-02-15 22:13:40'),(4555,168,1,5459,'0.99','2005-07-09 22:43:56','2006-02-15 22:13:40'),(4556,168,1,5907,'5.99','2005-07-10 20:41:41','2006-02-15 22:13:40'),(4557,168,1,6334,'5.99','2005-07-11 19:20:44','2006-02-15 22:13:40'),(4558,168,2,6444,'0.99','2005-07-12 00:36:02','2006-02-15 22:13:40'),(4559,168,2,6809,'3.99','2005-07-12 17:51:54','2006-02-15 22:13:41'),(4560,168,2,8352,'1.99','2005-07-29 04:52:01','2006-02-15 22:13:41'),(4561,168,1,8527,'1.99','2005-07-29 10:21:00','2006-02-15 22:13:41'),(4562,168,2,8659,'6.99','2005-07-29 15:26:31','2006-02-15 22:13:41'),(4563,168,2,8883,'1.99','2005-07-30 00:24:48','2006-02-15 22:13:41'),(4564,168,2,9197,'4.99','2005-07-30 12:31:36','2006-02-15 22:13:41'),(4565,168,1,9418,'4.99','2005-07-30 21:00:52','2006-02-15 22:13:41'),(4566,168,2,9857,'6.99','2005-07-31 13:00:53','2006-02-15 22:13:41'),(4567,168,2,9899,'4.99','2005-07-31 14:12:36','2006-02-15 22:13:41'),(4568,168,2,10270,'0.99','2005-08-01 03:10:24','2006-02-15 22:13:41'),(4569,168,1,11551,'0.99','2005-08-17 01:03:49','2006-02-15 22:13:41'),(4570,168,1,11627,'10.99','2005-08-17 04:25:47','2006-02-15 22:13:41'),(4571,168,1,11631,'1.99','2005-08-17 04:28:56','2006-02-15 22:13:41'),(4572,168,1,12545,'6.99','2005-08-18 14:28:00','2006-02-15 22:13:41'),(4573,168,1,12781,'2.99','2005-08-18 23:50:24','2006-02-15 22:13:41'),(4574,168,1,13018,'8.99','2005-08-19 08:04:50','2006-02-15 22:13:41'),(4575,168,2,13532,'4.99','2005-08-20 03:29:28','2006-02-15 22:13:41'),(4576,168,2,13811,'0.99','2005-08-20 13:00:30','2006-02-15 22:13:41'),(4577,168,1,14090,'2.99','2005-08-21 00:11:16','2006-02-15 22:13:41'),(4578,168,1,15033,'3.99','2005-08-22 09:25:24','2006-02-15 22:13:41'),(4579,168,1,15165,'2.99','2005-08-22 14:59:30','2006-02-15 22:13:41'),(4580,168,2,15683,'2.99','2005-08-23 09:38:17','2006-02-15 22:13:41'),(4581,168,1,15894,'0.99','2006-02-14 15:16:03','2006-02-15 22:13:41'),(4582,169,2,527,'3.99','2005-05-28 04:28:38','2006-02-15 22:13:41'),(4583,169,1,1087,'4.99','2005-05-31 11:18:08','2006-02-15 22:13:41'),(4584,169,1,2023,'4.99','2005-06-17 12:52:58','2006-02-15 22:13:41'),(4585,169,1,3261,'2.99','2005-06-21 04:07:41','2006-02-15 22:13:41'),(4586,169,1,3493,'8.99','2005-07-05 23:46:19','2006-02-15 22:13:41'),(4587,169,1,4687,'4.99','2005-07-08 10:54:19','2006-02-15 22:13:41'),(4588,169,1,5066,'2.99','2005-07-09 04:48:50','2006-02-15 22:13:41'),(4589,169,1,6143,'3.99','2005-07-11 09:02:37','2006-02-15 22:13:41'),(4590,169,2,6453,'4.99','2005-07-12 00:59:53','2006-02-15 22:13:41'),(4591,169,2,6488,'9.99','2005-07-12 02:20:09','2006-02-15 22:13:41'),(4592,169,2,7187,'6.99','2005-07-27 08:27:58','2006-02-15 22:13:41'),(4593,169,1,7597,'0.99','2005-07-27 23:35:49','2006-02-15 22:13:41'),(4594,169,2,8558,'4.99','2005-07-29 11:24:49','2006-02-15 22:13:41'),(4595,169,2,9203,'0.99','2005-07-30 12:43:40','2006-02-15 22:13:41'),(4596,169,2,11687,'5.99','2005-08-17 06:39:59','2006-02-15 22:13:41'),(4597,169,1,11898,'5.99','2005-08-17 15:24:12','2006-02-15 22:13:41'),(4598,169,2,13198,'2.99','2005-08-19 14:47:18','2006-02-15 22:13:41'),(4599,169,2,13237,'1.99','2005-08-19 16:18:36','2006-02-15 22:13:41'),(4600,169,2,14435,'0.99','2005-08-21 11:44:37','2006-02-15 22:13:42'),(4601,169,2,14805,'4.99','2005-08-22 00:52:01','2006-02-15 22:13:42'),(4602,169,2,15534,'0.99','2005-08-23 03:55:54','2006-02-15 22:13:42'),(4603,169,2,15680,'4.99','2005-08-23 09:33:22','2006-02-15 22:13:42'),(4604,170,1,211,'2.99','2005-05-26 08:33:10','2006-02-15 22:13:42'),(4605,170,1,377,'5.99','2005-05-27 09:04:05','2006-02-15 22:13:42'),(4606,170,2,504,'0.99','2005-05-28 02:05:34','2006-02-15 22:13:42'),(4607,170,2,2117,'0.99','2005-06-17 20:24:00','2006-02-15 22:13:42'),(4608,170,2,2413,'8.99','2005-06-18 16:59:34','2006-02-15 22:13:42'),(4609,170,2,3651,'4.99','2005-07-06 07:40:31','2006-02-15 22:13:42'),(4610,170,1,3749,'4.99','2005-07-06 12:18:03','2006-02-15 22:13:42'),(4611,170,2,4113,'4.99','2005-07-07 06:49:52','2006-02-15 22:13:42'),(4612,170,2,4468,'0.99','2005-07-08 00:17:59','2006-02-15 22:13:42'),(4613,170,2,5075,'0.99','2005-07-09 05:12:07','2006-02-15 22:13:42'),(4614,170,1,5573,'4.99','2005-07-10 03:50:47','2006-02-15 22:13:42'),(4615,170,2,5685,'7.99','2005-07-10 09:01:38','2006-02-15 22:13:42'),(4616,170,2,5808,'2.99','2005-07-10 15:17:33','2006-02-15 22:13:42'),(4617,170,1,7999,'7.99','2005-07-28 15:10:14','2006-02-15 22:13:42'),(4618,170,2,9517,'2.99','2005-07-31 00:41:23','2006-02-15 22:13:42'),(4619,170,1,9817,'2.99','2005-07-31 11:33:31','2006-02-15 22:13:42'),(4620,170,1,10102,'9.99','2005-07-31 20:49:10','2006-02-15 22:13:42'),(4621,170,2,10481,'5.99','2005-08-01 10:17:26','2006-02-15 22:13:42'),(4622,170,1,11039,'0.99','2005-08-02 06:00:53','2006-02-15 22:13:42'),(4623,170,2,12706,'3.99','2005-08-18 20:44:34','2006-02-15 22:13:42'),(4624,170,1,12967,'3.99','2005-08-19 06:37:51','2006-02-15 22:13:42'),(4625,170,1,13081,'0.99','2005-08-19 10:19:06','2006-02-15 22:13:42'),(4626,170,2,13862,'6.99','2005-08-20 14:57:01','2006-02-15 22:13:42'),(4627,170,2,14022,'8.99','2005-08-20 21:08:49','2006-02-15 22:13:42'),(4628,170,2,14675,'2.99','2005-08-21 20:01:51','2006-02-15 22:13:42'),(4629,170,1,15549,'7.99','2005-08-23 04:27:06','2006-02-15 22:13:42'),(4630,171,2,804,'9.99','2005-05-29 18:10:24','2006-02-15 22:13:42'),(4631,171,2,1676,'0.99','2005-06-16 11:06:09','2006-02-15 22:13:42'),(4632,171,2,2004,'4.99','2005-06-17 11:43:38','2006-02-15 22:13:42'),(4633,171,2,2199,'5.99','2005-06-18 01:57:56','2006-02-15 22:13:42'),(4634,171,1,2497,'4.99','2005-06-18 22:50:40','2006-02-15 22:13:42'),(4635,171,2,2599,'5.99','2005-06-19 06:06:07','2006-02-15 22:13:42'),(4636,171,2,2788,'2.99','2005-06-19 18:48:11','2006-02-15 22:13:42'),(4637,171,2,3338,'6.99','2005-06-21 10:27:31','2006-02-15 22:13:42'),(4638,171,1,3621,'0.99','2005-07-06 06:03:55','2006-02-15 22:13:42'),(4639,171,2,3745,'2.99','2005-07-06 12:10:32','2006-02-15 22:13:42'),(4640,171,1,5660,'5.99','2005-07-10 07:46:12','2006-02-15 22:13:42'),(4641,171,1,5986,'4.99','2005-07-11 00:54:56','2006-02-15 22:13:43'),(4642,171,1,6766,'2.99','2005-07-12 15:32:01','2006-02-15 22:13:43'),(4643,171,2,6774,'0.99','2005-07-12 15:56:08','2006-02-15 22:13:43'),(4644,171,1,7037,'3.99','2005-07-27 03:06:44','2006-02-15 22:13:43'),(4645,171,2,9066,'4.99','2005-07-30 07:28:54','2006-02-15 22:13:43'),(4646,171,2,9084,'5.99','2005-07-30 08:14:29','2006-02-15 22:13:43'),(4647,171,2,10622,'4.99','2005-08-01 15:12:00','2006-02-15 22:13:43'),(4648,171,1,12600,'4.99','2005-08-18 16:44:24','2006-02-15 22:13:43'),(4649,171,1,12962,'5.99','2005-08-19 06:22:48','2006-02-15 22:13:43'),(4650,171,2,13087,'6.99','2005-08-19 10:33:52','2006-02-15 22:13:43'),(4651,171,2,13292,'0.99','2005-08-19 18:35:32','2006-02-15 22:13:43'),(4652,171,2,13433,'0.99','2005-08-19 23:30:53','2006-02-15 22:13:43'),(4653,171,1,14270,'1.99','2005-08-21 06:22:18','2006-02-15 22:13:43'),(4654,171,2,14615,'9.99','2005-08-21 18:06:32','2006-02-15 22:13:43'),(4655,171,2,15810,'0.99','2005-08-23 14:43:15','2006-02-15 22:13:43'),(4656,172,2,449,'3.99','2005-05-27 19:13:15','2006-02-15 22:13:43'),(4657,172,1,685,'6.99','2005-05-29 00:17:51','2006-02-15 22:13:43'),(4658,172,1,837,'0.99','2005-05-30 00:02:08','2006-02-15 22:13:43'),(4659,172,2,1507,'0.99','2005-06-15 22:25:26','2006-02-15 22:13:43'),(4660,172,1,2052,'0.99','2005-06-17 15:14:43','2006-02-15 22:13:43'),(4661,172,2,3032,'1.99','2005-06-20 11:58:30','2006-02-15 22:13:43'),(4662,172,1,4820,'5.99','2005-07-08 17:25:23','2006-02-15 22:13:43'),(4663,172,1,4821,'4.99','2005-07-08 17:28:08','2006-02-15 22:13:43'),(4664,172,2,4878,'6.99','2005-07-08 19:33:49','2006-02-15 22:13:43'),(4665,172,2,6246,'7.99','2005-07-11 14:57:51','2006-02-15 22:13:43'),(4666,172,1,6380,'0.99','2005-07-11 21:55:40','2006-02-15 22:13:43'),(4667,172,1,6875,'5.99','2005-07-12 20:23:05','2006-02-15 22:13:43'),(4668,172,1,7122,'6.99','2005-07-27 06:03:18','2006-02-15 22:13:43'),(4669,172,1,7135,'2.99','2005-07-27 06:34:32','2006-02-15 22:13:43'),(4670,172,1,7194,'3.99','2005-07-27 08:39:58','2006-02-15 22:13:43'),(4671,172,2,7261,'2.99','2005-07-27 11:15:01','2006-02-15 22:13:43'),(4672,172,1,7638,'4.99','2005-07-28 01:13:26','2006-02-15 22:13:43'),(4673,172,2,8944,'6.99','2005-07-30 03:11:44','2006-02-15 22:13:43'),(4674,172,1,9118,'2.99','2005-07-30 09:24:18','2006-02-15 22:13:43'),(4675,172,2,9218,'5.99','2005-07-30 13:14:35','2006-02-15 22:13:43'),(4676,172,1,10312,'3.99','2005-08-01 04:29:06','2006-02-15 22:13:43'),(4677,172,2,10621,'0.99','2005-08-01 15:10:26','2006-02-15 22:13:43'),(4678,172,2,11499,'6.99','2005-08-16 22:54:12','2006-02-15 22:13:43'),(4679,172,2,12350,'4.99','2005-08-18 07:29:46','2006-02-15 22:13:43'),(4680,172,2,12638,'8.99','2005-08-18 18:11:39','2006-02-15 22:13:43'),(4681,172,2,13067,'5.99','2005-08-19 09:51:17','2006-02-15 22:13:43'),(4682,172,2,13320,'4.99','2005-08-19 19:35:33','2006-02-15 22:13:44'),(4683,172,1,13342,'0.99','2005-08-19 20:21:36','2006-02-15 22:13:44'),(4684,172,2,13937,'4.99','2005-08-20 17:22:51','2006-02-15 22:13:44'),(4685,172,1,14991,'4.99','2005-08-22 07:50:44','2006-02-15 22:13:44'),(4686,172,2,15637,'2.99','2005-08-23 07:53:38','2006-02-15 22:13:44'),(4687,172,1,15902,'3.99','2005-08-23 17:28:03','2006-02-15 22:13:44'),(4688,172,2,16038,'3.99','2005-08-23 22:14:31','2006-02-15 22:13:44'),(4689,173,2,578,'2.99','2005-05-28 11:15:48','2006-02-15 22:13:44'),(4690,173,1,628,'4.99','2005-05-28 17:05:46','2006-02-15 22:13:44'),(4691,173,2,1188,'2.99','2005-06-15 01:04:07','2006-02-15 22:13:44'),(4692,173,2,2435,'4.99','2005-06-18 18:12:26','2006-02-15 22:13:44'),(4693,173,1,2602,'2.99','2005-06-19 06:10:08','2006-02-15 22:13:44'),(4694,173,2,3224,'0.99','2005-06-21 02:11:36','2006-02-15 22:13:44'),(4695,173,1,3336,'4.99','2005-06-21 10:14:27','2006-02-15 22:13:44'),(4696,173,2,3717,'0.99','2005-07-06 10:53:34','2006-02-15 22:13:44'),(4697,173,1,4904,'7.99','2005-07-08 20:53:27','2006-02-15 22:13:44'),(4698,173,2,5430,'2.99','2005-07-09 21:19:54','2006-02-15 22:13:44'),(4699,173,2,5485,'4.99','2005-07-09 23:55:25','2006-02-15 22:13:44'),(4700,173,1,5488,'2.99','2005-07-10 00:02:06','2006-02-15 22:13:44'),(4701,173,2,5531,'2.99','2005-07-10 02:13:59','2006-02-15 22:13:44'),(4702,173,1,5615,'3.99','2005-07-10 05:18:51','2006-02-15 22:13:44'),(4703,173,2,6021,'4.99','2005-07-11 02:10:18','2006-02-15 22:13:44'),(4704,173,1,7644,'0.99','2005-07-28 01:27:33','2006-02-15 22:13:44'),(4705,173,2,8299,'2.99','2005-07-29 02:56:00','2006-02-15 22:13:44'),(4706,173,2,8808,'4.99','2005-07-29 21:39:07','2006-02-15 22:13:44'),(4707,173,2,8829,'8.99','2005-07-29 22:33:34','2006-02-15 22:13:44'),(4708,173,1,9097,'4.99','2005-07-30 08:40:35','2006-02-15 22:13:44'),(4709,173,2,9512,'2.99','2005-07-31 00:26:30','2006-02-15 22:13:44'),(4710,173,1,10351,'5.99','2005-08-01 05:32:13','2006-02-15 22:13:44'),(4711,173,2,12073,'2.99','2005-08-17 21:50:39','2006-02-15 22:13:44'),(4712,173,1,12282,'6.99','2005-08-18 04:54:20','2006-02-15 22:13:44'),(4713,173,2,12501,'4.99','2005-08-18 13:13:13','2006-02-15 22:13:44'),(4714,173,1,14654,'2.99','2005-08-21 19:36:59','2006-02-15 22:13:44'),(4715,173,2,15483,'0.99','2005-08-23 02:02:53','2006-02-15 22:13:44'),(4716,173,1,15775,'8.99','2005-08-23 13:25:44','2006-02-15 22:13:44'),(4717,173,1,16010,'2.99','2005-08-23 21:10:24','2006-02-15 22:13:44'),(4718,174,1,41,'5.99','2005-05-25 05:12:29','2006-02-15 22:13:44'),(4719,174,2,1071,'4.99','2005-05-31 09:48:56','2006-02-15 22:13:44'),(4720,174,2,1566,'7.99','2005-06-16 03:13:20','2006-02-15 22:13:44'),(4721,174,1,1609,'0.99','2005-06-16 06:34:59','2006-02-15 22:13:44'),(4722,174,1,2326,'5.99','2005-06-18 10:14:22','2006-02-15 22:13:44'),(4723,174,2,3446,'1.99','2005-06-21 20:45:51','2006-02-15 22:13:45'),(4724,174,2,4803,'1.99','2005-07-08 16:56:34','2006-02-15 22:13:45'),(4725,174,2,5414,'4.99','2005-07-09 20:29:36','2006-02-15 22:13:45'),(4726,174,1,6909,'4.99','2005-07-12 22:09:30','2006-02-15 22:13:45'),(4727,174,2,8348,'7.99','2005-07-29 04:49:26','2006-02-15 22:13:45'),(4728,174,1,8754,'4.99','2005-07-29 19:18:30','2006-02-15 22:13:45'),(4729,174,1,9301,'4.99','2005-07-30 16:34:29','2006-02-15 22:13:45'),(4730,174,1,9847,'2.99','2005-07-31 12:33:43','2006-02-15 22:13:45'),(4731,174,1,10363,'2.99','2005-08-01 06:01:52','2006-02-15 22:13:45'),(4732,174,2,10398,'4.99','2005-08-01 07:11:49','2006-02-15 22:13:45'),(4733,174,1,10559,'8.99','2005-08-01 13:02:58','2006-02-15 22:13:45'),(4734,174,1,11525,'0.99','2005-08-17 00:15:31','2006-02-15 22:13:45'),(4735,174,2,12886,'5.99','2005-08-19 03:38:32','2006-02-15 22:13:45'),(4736,174,1,13185,'0.99','2005-08-19 14:22:30','2006-02-15 22:13:45'),(4737,174,1,15892,'1.99','2005-08-23 17:01:00','2006-02-15 22:13:45'),(4738,174,1,15975,'4.99','2005-08-23 20:06:23','2006-02-15 22:13:45'),(4739,175,2,1495,'0.99','2005-06-15 21:54:31','2006-02-15 22:13:45'),(4740,175,2,3266,'4.99','2005-06-21 04:49:07','2006-02-15 22:13:45'),(4741,175,1,3625,'4.99','2005-07-06 06:12:52','2006-02-15 22:13:45'),(4742,175,2,4167,'5.99','2005-07-07 09:37:08','2006-02-15 22:13:45'),(4743,175,1,5232,'1.99','2005-07-09 12:35:08','2006-02-15 22:13:45'),(4744,175,2,6865,'7.99','2005-07-12 20:02:40','2006-02-15 22:13:45'),(4745,175,1,7448,'2.99','2005-07-27 18:06:30','2006-02-15 22:13:45'),(4746,175,1,7771,'0.99','2005-07-28 06:52:12','2006-02-15 22:13:45'),(4747,175,1,8244,'2.99','2005-07-29 00:35:34','2006-02-15 22:13:45'),(4748,175,1,8264,'4.99','2005-07-29 01:18:50','2006-02-15 22:13:45'),(4749,175,1,8440,'3.99','2005-07-29 07:31:26','2006-02-15 22:13:45'),(4750,175,1,8817,'4.99','2005-07-29 22:09:08','2006-02-15 22:13:45'),(4751,175,2,9941,'4.99','2005-07-31 15:31:25','2006-02-15 22:13:45'),(4752,175,2,10229,'7.99','2005-08-01 01:45:26','2006-02-15 22:13:45'),(4753,175,1,10875,'0.99','2005-08-02 00:31:44','2006-02-15 22:13:45'),(4754,175,2,11618,'4.99','2005-08-17 04:01:36','2006-02-15 22:13:45'),(4755,175,1,12509,'0.99','2005-08-18 13:21:52','2006-02-15 22:13:45'),(4756,175,1,13016,'4.99','2005-08-19 07:57:14','2006-02-15 22:13:45'),(4757,175,2,13833,'6.99','2005-08-20 14:00:29','2006-02-15 22:13:45'),(4758,175,2,13997,'6.99','2005-08-20 19:51:28','2006-02-15 22:13:45'),(4759,175,2,14507,'4.99','2005-08-21 14:32:45','2006-02-15 22:13:45'),(4760,175,2,14897,'2.99','2005-08-22 04:22:31','2006-02-15 22:13:45'),(4761,175,2,14060,'3.98','2006-02-14 15:16:03','2006-02-15 22:13:45'),(4762,175,2,13161,'0.00','2006-02-14 15:16:03','2006-02-15 22:13:46'),(4763,176,1,172,'0.99','2005-05-26 03:17:42','2006-02-15 22:13:46'),(4764,176,2,380,'6.99','2005-05-27 09:34:39','2006-02-15 22:13:46'),(4765,176,1,553,'3.99','2005-05-28 08:14:44','2006-02-15 22:13:46'),(4766,176,1,663,'1.99','2005-05-28 21:23:02','2006-02-15 22:13:46'),(4767,176,1,1062,'7.99','2005-05-31 08:38:20','2006-02-15 22:13:46'),(4768,176,1,1291,'5.99','2005-06-15 08:55:01','2006-02-15 22:13:46'),(4769,176,1,1741,'7.99','2005-06-16 16:31:37','2006-02-15 22:13:46'),(4770,176,1,1836,'6.99','2005-06-16 23:13:05','2006-02-15 22:13:46'),(4771,176,1,2181,'8.99','2005-06-18 00:48:31','2006-02-15 22:13:46'),(4772,176,1,2218,'2.99','2005-06-18 03:13:13','2006-02-15 22:13:46'),(4773,176,2,2427,'2.99','2005-06-18 17:45:00','2006-02-15 22:13:46'),(4774,176,2,2503,'1.99','2005-06-18 23:17:19','2006-02-15 22:13:46'),(4775,176,1,2922,'4.99','2005-06-20 04:13:47','2006-02-15 22:13:46'),(4776,176,1,3643,'4.99','2005-07-06 07:20:08','2006-02-15 22:13:46'),(4777,176,2,3931,'6.99','2005-07-06 21:03:46','2006-02-15 22:13:46'),(4778,176,2,4121,'3.99','2005-07-07 07:13:50','2006-02-15 22:13:46'),(4779,176,1,6035,'2.99','2005-07-11 03:01:45','2006-02-15 22:13:46'),(4780,176,1,6354,'6.99','2005-07-11 20:54:27','2006-02-15 22:13:46'),(4781,176,1,7017,'4.99','2005-07-27 02:16:03','2006-02-15 22:13:46'),(4782,176,1,7025,'2.99','2005-07-27 02:40:29','2006-02-15 22:13:46'),(4783,176,1,7210,'2.99','2005-07-27 09:19:05','2006-02-15 22:13:46'),(4784,176,2,7521,'2.99','2005-07-27 21:04:42','2006-02-15 22:13:46'),(4785,176,1,7751,'5.99','2005-07-28 05:56:13','2006-02-15 22:13:46'),(4786,176,1,8279,'2.99','2005-07-29 01:43:37','2006-02-15 22:13:46'),(4787,176,2,9145,'6.99','2005-07-30 10:27:55','2006-02-15 22:13:46'),(4788,176,1,10277,'2.99','2005-08-01 03:22:41','2006-02-15 22:13:46'),(4789,176,2,10441,'0.99','2005-08-01 08:55:56','2006-02-15 22:13:46'),(4790,176,1,10862,'2.99','2005-08-02 00:17:34','2006-02-15 22:13:46'),(4791,176,1,11678,'5.99','2005-08-17 06:07:39','2006-02-15 22:13:46'),(4792,176,1,12299,'2.99','2005-08-18 05:32:32','2006-02-15 22:13:46'),(4793,176,1,12718,'2.99','2005-08-18 21:21:44','2006-02-15 22:13:46'),(4794,176,1,13170,'7.99','2005-08-19 13:45:48','2006-02-15 22:13:46'),(4795,176,2,13186,'5.99','2005-08-19 14:23:19','2006-02-15 22:13:46'),(4796,176,1,14083,'7.99','2005-08-20 23:42:31','2006-02-15 22:13:46'),(4797,176,2,14232,'1.99','2005-08-21 05:07:02','2006-02-15 22:13:46'),(4798,176,2,15311,'4.99','2005-08-22 19:56:52','2006-02-15 22:13:46'),(4799,176,1,15933,'4.99','2005-08-23 18:36:44','2006-02-15 22:13:46'),(4800,177,1,1393,'2.99','2005-06-15 16:12:50','2006-02-15 22:13:46'),(4801,177,1,1524,'2.99','2005-06-16 00:25:52','2006-02-15 22:13:46'),(4802,177,2,1621,'4.99','2005-06-16 07:24:12','2006-02-15 22:13:47'),(4803,177,1,1738,'0.99','2005-06-16 16:07:27','2006-02-15 22:13:47'),(4804,177,2,2467,'2.99','2005-06-18 20:20:05','2006-02-15 22:13:47'),(4805,177,1,4760,'0.99','2005-07-08 14:48:07','2006-02-15 22:13:47'),(4806,177,2,6217,'9.99','2005-07-11 13:13:45','2006-02-15 22:13:47'),(4807,177,1,6284,'2.99','2005-07-11 16:51:39','2006-02-15 22:13:47'),(4808,177,1,7493,'3.99','2005-07-27 19:55:46','2006-02-15 22:13:47'),(4809,177,2,7674,'1.99','2005-07-28 02:54:30','2006-02-15 22:13:47'),(4810,177,1,8139,'0.99','2005-07-28 20:16:30','2006-02-15 22:13:47'),(4811,177,2,9190,'1.99','2005-07-30 12:24:17','2006-02-15 22:13:47'),(4812,177,2,10321,'4.99','2005-08-01 04:40:02','2006-02-15 22:13:47'),(4813,177,1,10661,'2.99','2005-08-01 16:48:31','2006-02-15 22:13:47'),(4814,177,1,10710,'0.99','2005-08-01 18:44:36','2006-02-15 22:13:47'),(4815,177,1,11195,'0.99','2005-08-02 11:42:23','2006-02-15 22:13:47'),(4816,177,1,11376,'5.99','2005-08-02 18:16:00','2006-02-15 22:13:47'),(4817,177,2,11662,'6.99','2005-08-17 05:27:37','2006-02-15 22:13:47'),(4818,177,1,12623,'4.99','2005-08-18 17:34:19','2006-02-15 22:13:47'),(4819,177,2,14093,'0.99','2005-08-21 00:21:29','2006-02-15 22:13:47'),(4820,177,2,14310,'0.99','2005-08-21 07:44:32','2006-02-15 22:13:47'),(4821,177,2,14849,'2.99','2005-08-22 02:15:26','2006-02-15 22:13:47'),(4822,177,2,14883,'0.99','2005-08-22 03:55:02','2006-02-15 22:13:47'),(4823,178,1,1292,'6.99','2005-06-15 09:03:52','2006-02-15 22:13:47'),(4824,178,2,1458,'6.99','2005-06-15 20:24:05','2006-02-15 22:13:47'),(4825,178,2,1568,'2.99','2005-06-16 03:14:01','2006-02-15 22:13:47'),(4826,178,2,1745,'3.99','2005-06-16 16:41:16','2006-02-15 22:13:47'),(4827,178,2,2124,'1.99','2005-06-17 20:49:14','2006-02-15 22:13:47'),(4828,178,1,2293,'4.99','2005-06-18 07:45:03','2006-02-15 22:13:47'),(4829,178,2,2844,'6.99','2005-06-19 22:40:12','2006-02-15 22:13:47'),(4830,178,1,2898,'9.99','2005-06-20 02:38:06','2006-02-15 22:13:47'),(4831,178,1,4915,'2.99','2005-07-08 21:31:22','2006-02-15 22:13:47'),(4832,178,1,5015,'2.99','2005-07-09 01:54:24','2006-02-15 22:13:47'),(4833,178,1,5057,'4.99','2005-07-09 04:20:29','2006-02-15 22:13:47'),(4834,178,1,5094,'10.99','2005-07-09 05:59:47','2006-02-15 22:13:47'),(4835,178,1,5984,'2.99','2005-07-11 00:44:36','2006-02-15 22:13:47'),(4836,178,2,6347,'4.99','2005-07-11 20:18:53','2006-02-15 22:13:48'),(4837,178,1,6554,'5.99','2005-07-12 05:07:26','2006-02-15 22:13:48'),(4838,178,1,6566,'6.99','2005-07-12 05:42:53','2006-02-15 22:13:48'),(4839,178,2,6606,'2.99','2005-07-12 08:03:40','2006-02-15 22:13:48'),(4840,178,1,7959,'4.99','2005-07-28 13:43:20','2006-02-15 22:13:48'),(4841,178,2,8069,'0.99','2005-07-28 17:23:46','2006-02-15 22:13:48'),(4842,178,1,8287,'3.99','2005-07-29 02:03:58','2006-02-15 22:13:48'),(4843,178,2,8388,'5.99','2005-07-29 05:48:15','2006-02-15 22:13:48'),(4844,178,2,8696,'4.99','2005-07-29 16:45:18','2006-02-15 22:13:48'),(4845,178,2,9004,'4.99','2005-07-30 05:04:27','2006-02-15 22:13:48'),(4846,178,1,9311,'7.99','2005-07-30 16:58:31','2006-02-15 22:13:48'),(4847,178,2,9879,'4.99','2005-07-31 13:45:32','2006-02-15 22:13:48'),(4848,178,2,10125,'0.99','2005-07-31 21:33:03','2006-02-15 22:13:48'),(4849,178,2,10562,'0.99','2005-08-01 13:05:52','2006-02-15 22:13:48'),(4850,178,1,10802,'5.99','2005-08-01 22:18:32','2006-02-15 22:13:48'),(4851,178,2,11319,'6.99','2005-08-02 16:10:09','2006-02-15 22:13:48'),(4852,178,2,11884,'6.99','2005-08-17 14:43:23','2006-02-15 22:13:48'),(4853,178,2,11927,'3.99','2005-08-17 16:25:03','2006-02-15 22:13:48'),(4854,178,2,12049,'6.99','2005-08-17 20:53:27','2006-02-15 22:13:48'),(4855,178,2,12727,'2.99','2005-08-18 21:45:15','2006-02-15 22:13:48'),(4856,178,1,13127,'2.99','2005-08-19 12:04:03','2006-02-15 22:13:48'),(4857,178,1,14104,'4.99','2005-08-21 00:37:44','2006-02-15 22:13:48'),(4858,178,1,14257,'7.99','2005-08-21 05:52:57','2006-02-15 22:13:48'),(4859,178,2,14314,'2.99','2005-08-21 07:50:14','2006-02-15 22:13:48'),(4860,178,1,15323,'4.99','2005-08-22 20:22:40','2006-02-15 22:13:48'),(4861,178,1,12897,'4.99','2006-02-14 15:16:03','2006-02-15 22:13:48'),(4862,179,1,502,'0.99','2005-05-28 01:34:43','2006-02-15 22:13:48'),(4863,179,1,759,'6.99','2005-05-29 10:57:57','2006-02-15 22:13:48'),(4864,179,1,1046,'4.99','2005-05-31 06:42:30','2006-02-15 22:13:48'),(4865,179,2,1286,'7.99','2005-06-15 08:41:13','2006-02-15 22:13:48'),(4866,179,1,2613,'4.99','2005-06-19 07:25:50','2006-02-15 22:13:48'),(4867,179,1,3671,'6.99','2005-07-06 09:01:29','2006-02-15 22:13:48'),(4868,179,1,3844,'0.99','2005-07-06 16:37:58','2006-02-15 22:13:48'),(4869,179,1,4618,'2.99','2005-07-08 08:00:20','2006-02-15 22:13:48'),(4870,179,2,6071,'6.99','2005-07-11 04:50:03','2006-02-15 22:13:48'),(4871,179,1,6616,'7.99','2005-07-12 08:37:30','2006-02-15 22:13:48'),(4872,179,1,6806,'2.99','2005-07-12 17:31:43','2006-02-15 22:13:48'),(4873,179,1,7028,'6.99','2005-07-27 02:54:25','2006-02-15 22:13:48'),(4874,179,1,7054,'4.99','2005-07-27 03:43:28','2006-02-15 22:13:48'),(4875,179,1,7609,'4.99','2005-07-28 00:11:00','2006-02-15 22:13:48'),(4876,179,1,8573,'2.99','2005-07-29 11:51:25','2006-02-15 22:13:49'),(4877,179,1,8731,'8.99','2005-07-29 18:23:57','2006-02-15 22:13:49'),(4878,179,2,9491,'4.99','2005-07-30 23:45:23','2006-02-15 22:13:49'),(4879,179,2,9893,'0.99','2005-07-31 14:07:21','2006-02-15 22:13:49'),(4880,179,1,10156,'4.99','2005-07-31 22:36:00','2006-02-15 22:13:49'),(4881,179,1,10385,'4.99','2005-08-01 06:39:55','2006-02-15 22:13:49'),(4882,179,2,10569,'3.99','2005-08-01 13:18:23','2006-02-15 22:13:49'),(4883,179,1,11342,'0.99','2005-08-02 17:11:35','2006-02-15 22:13:49'),(4884,179,2,13240,'0.99','2005-08-19 16:22:14','2006-02-15 22:13:49'),(4885,179,1,13400,'4.99','2005-08-19 22:11:44','2006-02-15 22:13:49'),(4886,179,2,13844,'7.99','2005-08-20 14:30:26','2006-02-15 22:13:49'),(4887,179,2,13957,'0.99','2005-08-20 18:09:04','2006-02-15 22:13:49'),(4888,179,2,14082,'7.99','2005-08-20 23:42:00','2006-02-15 22:13:49'),(4889,179,1,14589,'0.99','2005-08-21 17:28:55','2006-02-15 22:13:49'),(4890,179,1,15985,'4.99','2005-08-23 20:20:23','2006-02-15 22:13:49'),(4891,180,1,1122,'2.99','2005-05-31 16:39:33','2006-02-15 22:13:49'),(4892,180,2,2700,'2.99','2005-06-19 13:31:52','2006-02-15 22:13:49'),(4893,180,1,2798,'2.99','2005-06-19 19:07:48','2006-02-15 22:13:49'),(4894,180,2,4826,'7.99','2005-07-08 17:44:25','2006-02-15 22:13:49'),(4895,180,1,4924,'9.99','2005-07-08 21:55:25','2006-02-15 22:13:49'),(4896,180,2,5384,'0.99','2005-07-09 19:17:46','2006-02-15 22:13:49'),(4897,180,2,5773,'0.99','2005-07-10 13:31:09','2006-02-15 22:13:49'),(4898,180,1,5860,'3.99','2005-07-10 18:08:49','2006-02-15 22:13:49'),(4899,180,1,7274,'2.99','2005-07-27 11:35:34','2006-02-15 22:13:49'),(4900,180,2,8540,'2.99','2005-07-29 10:52:51','2006-02-15 22:13:49'),(4901,180,2,8720,'5.99','2005-07-29 17:48:32','2006-02-15 22:13:49'),(4902,180,1,9373,'0.99','2005-07-30 19:05:36','2006-02-15 22:13:49'),(4903,180,2,9995,'3.99','2005-07-31 17:30:47','2006-02-15 22:13:49'),(4904,180,1,10576,'5.99','2005-08-01 13:46:02','2006-02-15 22:13:49'),(4905,180,1,10992,'8.99','2005-08-02 04:41:17','2006-02-15 22:13:49'),(4906,180,1,12313,'8.99','2005-08-18 06:07:31','2006-02-15 22:13:49'),(4907,180,1,13283,'2.99','2005-08-19 18:10:19','2006-02-15 22:13:49'),(4908,180,2,13842,'4.99','2005-08-20 14:29:37','2006-02-15 22:13:49'),(4909,180,1,13994,'2.99','2005-08-20 19:33:21','2006-02-15 22:13:49'),(4910,180,1,14109,'0.99','2005-08-21 00:52:58','2006-02-15 22:13:49'),(4911,180,1,14851,'2.99','2005-08-22 02:20:44','2006-02-15 22:13:49'),(4912,180,1,15039,'4.99','2005-08-22 09:37:54','2006-02-15 22:13:49'),(4913,180,1,12901,'4.99','2006-02-14 15:16:03','2006-02-15 22:13:49'),(4914,181,2,579,'6.99','2005-05-28 11:19:23','2006-02-15 22:13:49'),(4915,181,1,1638,'2.99','2005-06-16 08:32:36','2006-02-15 22:13:50'),(4916,181,1,2645,'5.99','2005-06-19 09:50:35','2006-02-15 22:13:50'),(4917,181,2,3449,'5.99','2005-06-21 21:01:27','2006-02-15 22:13:50'),(4918,181,2,3469,'4.99','2005-06-21 22:48:59','2006-02-15 22:13:50'),(4919,181,1,3862,'6.99','2005-07-06 17:35:22','2006-02-15 22:13:50'),(4920,181,2,4428,'4.99','2005-07-07 22:29:40','2006-02-15 22:13:50'),(4921,181,2,6477,'4.99','2005-07-12 01:38:42','2006-02-15 22:13:50'),(4922,181,1,6946,'8.99','2005-07-26 23:40:07','2006-02-15 22:13:50'),(4923,181,1,7393,'0.99','2005-07-27 16:02:52','2006-02-15 22:13:50'),(4924,181,1,7632,'4.99','2005-07-28 01:02:40','2006-02-15 22:13:50'),(4925,181,1,8593,'5.99','2005-07-29 12:38:14','2006-02-15 22:13:50'),(4926,181,1,8601,'9.99','2005-07-29 13:03:31','2006-02-15 22:13:50'),(4927,181,2,9214,'4.99','2005-07-30 13:10:14','2006-02-15 22:13:50'),(4928,181,2,9235,'5.99','2005-07-30 13:47:17','2006-02-15 22:13:50'),(4929,181,1,9357,'8.99','2005-07-30 18:37:00','2006-02-15 22:13:50'),(4930,181,1,9844,'4.99','2005-07-31 12:26:31','2006-02-15 22:13:50'),(4931,181,2,10262,'4.99','2005-08-01 03:01:26','2006-02-15 22:13:50'),(4932,181,2,10362,'6.99','2005-08-01 05:55:13','2006-02-15 22:13:50'),(4933,181,2,10703,'2.99','2005-08-01 18:37:39','2006-02-15 22:13:50'),(4934,181,1,10748,'4.99','2005-08-01 20:01:24','2006-02-15 22:13:50'),(4935,181,1,10773,'6.99','2005-08-01 20:53:45','2006-02-15 22:13:50'),(4936,181,2,11224,'4.99','2005-08-02 12:40:38','2006-02-15 22:13:50'),(4937,181,1,12363,'7.99','2005-08-18 07:52:49','2006-02-15 22:13:50'),(4938,181,1,12411,'0.99','2005-08-18 09:47:57','2006-02-15 22:13:50'),(4939,181,1,12678,'2.99','2005-08-18 19:41:27','2006-02-15 22:13:50'),(4940,181,2,12939,'2.99','2005-08-19 05:38:25','2006-02-15 22:13:50'),(4941,181,2,13118,'4.99','2005-08-19 11:39:58','2006-02-15 22:13:50'),(4942,181,2,13405,'4.99','2005-08-19 22:20:49','2006-02-15 22:13:50'),(4943,181,2,13415,'2.99','2005-08-19 22:48:09','2006-02-15 22:13:50'),(4944,181,2,14406,'3.99','2005-08-21 10:46:35','2006-02-15 22:13:50'),(4945,181,2,15196,'2.99','2005-08-22 16:11:32','2006-02-15 22:13:50'),(4946,181,2,15482,'4.99','2005-08-23 02:01:20','2006-02-15 22:13:50'),(4947,181,2,13008,'2.99','2006-02-14 15:16:03','2006-02-15 22:13:50'),(4948,182,2,161,'0.99','2005-05-26 01:51:48','2006-02-15 22:13:50'),(4949,182,2,425,'3.99','2005-05-27 15:51:30','2006-02-15 22:13:50'),(4950,182,2,1542,'3.99','2005-06-16 01:20:05','2006-02-15 22:13:50'),(4951,182,1,2049,'2.99','2005-06-17 14:58:36','2006-02-15 22:13:50'),(4952,182,2,2120,'5.99','2005-06-17 20:36:50','2006-02-15 22:13:51'),(4953,182,1,2234,'0.99','2005-06-18 04:01:28','2006-02-15 22:13:51'),(4954,182,1,3509,'2.99','2005-07-06 00:24:57','2006-02-15 22:13:51'),(4955,182,1,3697,'6.99','2005-07-06 10:07:22','2006-02-15 22:13:51'),(4956,182,1,4174,'2.99','2005-07-07 09:59:49','2006-02-15 22:13:51'),(4957,182,1,4349,'0.99','2005-07-07 19:02:37','2006-02-15 22:13:51'),(4958,182,2,4513,'1.99','2005-07-08 02:39:59','2006-02-15 22:13:51'),(4959,182,2,4591,'3.99','2005-07-08 06:29:43','2006-02-15 22:13:51'),(4960,182,2,4784,'0.99','2005-07-08 16:09:56','2006-02-15 22:13:51'),(4961,182,1,5521,'2.99','2005-07-10 01:31:22','2006-02-15 22:13:51'),(4962,182,2,7229,'0.99','2005-07-27 10:00:54','2006-02-15 22:13:51'),(4963,182,2,7863,'0.99','2005-07-28 10:05:46','2006-02-15 22:13:51'),(4964,182,2,7880,'4.99','2005-07-28 10:30:37','2006-02-15 22:13:51'),(4965,182,2,8048,'8.99','2005-07-28 16:50:26','2006-02-15 22:13:51'),(4966,182,1,11055,'4.99','2005-08-02 06:36:05','2006-02-15 22:13:51'),(4967,182,2,11785,'3.99','2005-08-17 10:54:46','2006-02-15 22:13:51'),(4968,182,1,12573,'4.99','2005-08-18 15:32:57','2006-02-15 22:13:51'),(4969,182,1,12840,'6.99','2005-08-19 01:54:11','2006-02-15 22:13:51'),(4970,182,1,13285,'2.99','2005-08-19 18:18:44','2006-02-15 22:13:51'),(4971,182,1,14586,'5.99','2005-08-21 17:19:09','2006-02-15 22:13:51'),(4972,182,1,14953,'6.99','2005-08-22 06:23:54','2006-02-15 22:13:51'),(4973,182,1,15043,'1.99','2005-08-22 09:49:32','2006-02-15 22:13:51'),(4974,183,1,382,'0.99','2005-05-27 10:12:00','2006-02-15 22:13:51'),(4975,183,1,1279,'0.99','2005-06-15 08:13:57','2006-02-15 22:13:51'),(4976,183,2,2188,'1.99','2005-06-18 01:19:04','2006-02-15 22:13:51'),(4977,183,2,2471,'5.99','2005-06-18 20:31:00','2006-02-15 22:13:51'),(4978,183,1,3381,'5.99','2005-06-21 14:02:59','2006-02-15 22:13:51'),(4979,183,1,3869,'2.99','2005-07-06 17:56:46','2006-02-15 22:13:51'),(4980,183,2,4134,'0.99','2005-07-07 08:14:24','2006-02-15 22:13:51'),(4981,183,2,4157,'2.99','2005-07-07 09:04:26','2006-02-15 22:13:51'),(4982,183,1,5069,'1.99','2005-07-09 04:56:30','2006-02-15 22:13:51'),(4983,183,2,5756,'0.99','2005-07-10 12:39:28','2006-02-15 22:13:51'),(4984,183,1,6472,'4.99','2005-07-12 01:33:25','2006-02-15 22:13:51'),(4985,183,1,6569,'4.99','2005-07-12 05:47:40','2006-02-15 22:13:51'),(4986,183,2,7359,'0.99','2005-07-27 14:51:04','2006-02-15 22:13:51'),(4987,183,2,9672,'5.99','2005-07-31 06:34:06','2006-02-15 22:13:51'),(4988,183,1,9818,'4.99','2005-07-31 11:34:32','2006-02-15 22:13:51'),(4989,183,2,9931,'2.99','2005-07-31 15:18:19','2006-02-15 22:13:52'),(4990,183,2,10620,'5.99','2005-08-01 15:09:17','2006-02-15 22:13:52'),(4991,183,2,11386,'2.99','2005-08-02 18:24:03','2006-02-15 22:13:52'),(4992,183,2,12451,'0.99','2005-08-18 11:04:42','2006-02-15 22:13:52'),(4993,183,2,12764,'3.99','2005-08-18 23:14:15','2006-02-15 22:13:52'),(4994,183,2,12831,'3.99','2005-08-19 01:40:43','2006-02-15 22:13:52'),(4995,183,1,13482,'2.99','2005-08-20 01:14:30','2006-02-15 22:13:52'),(4996,183,1,13536,'4.99','2005-08-20 03:35:16','2006-02-15 22:13:52'),(4997,184,1,196,'2.99','2005-05-26 06:55:58','2006-02-15 22:13:52'),(4998,184,2,534,'4.99','2005-05-28 06:15:25','2006-02-15 22:13:52'),(4999,184,1,567,'1.99','2005-05-28 09:56:20','2006-02-15 22:13:52'),(5000,184,2,1976,'2.99','2005-06-17 09:38:08','2006-02-15 22:13:52'),(5001,184,1,2312,'0.99','2005-06-18 08:55:46','2006-02-15 22:13:52'),(5002,184,1,4314,'0.99','2005-07-07 17:38:31','2006-02-15 22:13:52'),(5003,184,2,4882,'6.99','2005-07-08 19:42:03','2006-02-15 22:13:52'),(5004,184,1,5891,'0.99','2005-07-10 20:01:17','2006-02-15 22:13:52'),(5005,184,2,6493,'2.99','2005-07-12 02:40:41','2006-02-15 22:13:52'),(5006,184,2,6700,'6.99','2005-07-12 12:47:22','2006-02-15 22:13:52'),(5007,184,2,7051,'4.99','2005-07-27 03:34:37','2006-02-15 22:13:52'),(5008,184,2,7686,'6.99','2005-07-28 03:19:23','2006-02-15 22:13:52'),(5009,184,1,8892,'4.99','2005-07-30 00:47:03','2006-02-15 22:13:52'),(5010,184,1,9162,'0.99','2005-07-30 11:21:56','2006-02-15 22:13:52'),(5011,184,2,12166,'9.99','2005-08-18 00:57:06','2006-02-15 22:13:52'),(5012,184,2,12454,'2.99','2005-08-18 11:19:02','2006-02-15 22:13:52'),(5013,184,1,12532,'2.99','2005-08-18 13:57:58','2006-02-15 22:13:52'),(5014,184,1,13134,'0.99','2005-08-19 12:14:14','2006-02-15 22:13:52'),(5015,184,1,13262,'5.99','2005-08-19 17:20:15','2006-02-15 22:13:52'),(5016,184,1,13303,'4.99','2005-08-19 18:55:21','2006-02-15 22:13:52'),(5017,184,2,14472,'4.99','2005-08-21 13:13:57','2006-02-15 22:13:52'),(5018,184,1,14801,'5.99','2005-08-22 00:46:54','2006-02-15 22:13:53'),(5019,184,2,15611,'0.99','2005-08-23 06:56:18','2006-02-15 22:13:53'),(5020,185,2,20,'2.99','2005-05-25 01:48:41','2006-02-15 22:13:53'),(5021,185,2,154,'0.99','2005-05-26 00:55:56','2006-02-15 22:13:53'),(5022,185,1,646,'0.99','2005-05-28 19:16:14','2006-02-15 22:13:53'),(5023,185,1,2459,'4.99','2005-06-18 19:44:08','2006-02-15 22:13:53'),(5024,185,1,3314,'4.99','2005-06-21 08:17:00','2006-02-15 22:13:53'),(5025,185,1,3325,'4.99','2005-06-21 08:51:44','2006-02-15 22:13:53'),(5026,185,1,4186,'9.99','2005-07-07 10:32:25','2006-02-15 22:13:53'),(5027,185,1,4524,'2.99','2005-07-08 03:10:48','2006-02-15 22:13:53'),(5028,185,2,4822,'7.99','2005-07-08 17:28:47','2006-02-15 22:13:53'),(5029,185,2,6106,'2.99','2005-07-11 07:05:06','2006-02-15 22:13:53'),(5030,185,1,6418,'1.99','2005-07-11 23:36:27','2006-02-15 22:13:53'),(5031,185,1,6965,'2.99','2005-07-27 00:15:18','2006-02-15 22:13:53'),(5032,185,1,7066,'4.99','2005-07-27 03:53:52','2006-02-15 22:13:53'),(5033,185,1,8200,'2.99','2005-07-28 23:10:46','2006-02-15 22:13:53'),(5034,185,2,8442,'0.99','2005-07-29 07:33:07','2006-02-15 22:13:53'),(5035,185,1,8684,'8.99','2005-07-29 16:16:33','2006-02-15 22:13:53'),(5036,185,2,9246,'0.99','2005-07-30 14:12:31','2006-02-15 22:13:53'),(5037,185,2,9473,'2.99','2005-07-30 23:04:13','2006-02-15 22:13:53'),(5038,185,2,11355,'0.99','2005-08-02 17:37:43','2006-02-15 22:13:53'),(5039,185,1,12312,'2.99','2005-08-18 06:07:26','2006-02-15 22:13:53'),(5040,185,1,12674,'5.99','2005-08-18 19:24:56','2006-02-15 22:13:53'),(5041,185,1,12885,'0.99','2005-08-19 03:37:25','2006-02-15 22:13:53'),(5042,185,2,14513,'2.99','2005-08-21 14:51:35','2006-02-15 22:13:53'),(5043,186,1,581,'1.99','2005-05-28 11:20:29','2006-02-15 22:13:53'),(5044,186,2,958,'0.99','2005-05-30 17:58:03','2006-02-15 22:13:53'),(5045,186,1,1192,'4.99','2005-06-15 01:18:39','2006-02-15 22:13:53'),(5046,186,1,1300,'2.99','2005-06-15 09:36:19','2006-02-15 22:13:53'),(5047,186,1,1663,'2.99','2005-06-16 10:14:15','2006-02-15 22:13:53'),(5048,186,2,2132,'4.99','2005-06-17 21:05:06','2006-02-15 22:13:53'),(5049,186,2,2875,'4.99','2005-06-20 00:47:18','2006-02-15 22:13:53'),(5050,186,1,3039,'4.99','2005-06-20 12:32:30','2006-02-15 22:13:53'),(5051,186,2,6067,'4.99','2005-07-11 04:34:49','2006-02-15 22:13:53'),(5052,186,2,7739,'0.99','2005-07-28 05:21:51','2006-02-15 22:13:54'),(5053,186,1,7915,'3.99','2005-07-28 11:49:46','2006-02-15 22:13:54'),(5054,186,1,8483,'4.99','2005-07-29 08:50:18','2006-02-15 22:13:54'),(5055,186,2,8872,'0.99','2005-07-30 00:13:54','2006-02-15 22:13:54'),(5056,186,2,9303,'2.99','2005-07-30 16:35:59','2006-02-15 22:13:54'),(5057,186,2,9360,'5.99','2005-07-30 18:39:43','2006-02-15 22:13:54'),(5058,186,1,10104,'1.99','2005-07-31 20:49:14','2006-02-15 22:13:54'),(5059,186,1,10985,'0.99','2005-08-02 04:30:19','2006-02-15 22:13:54'),(5060,186,1,11982,'0.99','2005-08-17 18:13:07','2006-02-15 22:13:54'),(5061,186,1,12348,'5.99','2005-08-18 07:21:47','2006-02-15 22:13:54'),(5062,186,1,12438,'8.99','2005-08-18 10:42:52','2006-02-15 22:13:54'),(5063,186,1,13168,'6.99','2005-08-19 13:37:28','2006-02-15 22:13:54'),(5064,186,2,13517,'4.99','2005-08-20 02:33:17','2006-02-15 22:13:54'),(5065,186,1,13853,'3.99','2005-08-20 14:47:02','2006-02-15 22:13:54'),(5066,186,1,14006,'2.99','2005-08-20 20:21:36','2006-02-15 22:13:54'),(5067,186,2,14229,'4.99','2005-08-21 04:57:15','2006-02-15 22:13:54'),(5068,186,2,14646,'4.99','2005-08-21 19:14:48','2006-02-15 22:13:54'),(5069,186,2,14988,'3.99','2005-08-22 07:46:05','2006-02-15 22:13:54'),(5070,186,2,15001,'0.99','2005-08-22 08:00:49','2006-02-15 22:13:54'),(5071,186,2,15295,'3.99','2005-08-22 19:36:21','2006-02-15 22:13:54'),(5072,186,1,15596,'0.99','2005-08-23 06:19:51','2006-02-15 22:13:54'),(5073,186,1,14216,'2.99','2006-02-14 15:16:03','2006-02-15 22:13:54'),(5074,187,1,252,'7.99','2005-05-26 14:39:53','2006-02-15 22:13:54'),(5075,187,2,1323,'6.99','2005-06-15 10:55:17','2006-02-15 22:13:54'),(5076,187,2,1462,'4.99','2005-06-15 20:37:40','2006-02-15 22:13:54'),(5077,187,2,1592,'0.99','2005-06-16 05:14:37','2006-02-15 22:13:54'),(5078,187,2,2127,'0.99','2005-06-17 20:54:48','2006-02-15 22:13:54'),(5079,187,2,2533,'0.99','2005-06-19 01:34:26','2006-02-15 22:13:54'),(5080,187,1,2742,'5.99','2005-06-19 16:05:47','2006-02-15 22:13:54'),(5081,187,1,3402,'2.99','2005-06-21 15:54:37','2006-02-15 22:13:54'),(5082,187,2,3709,'10.99','2005-07-06 10:26:56','2006-02-15 22:13:54'),(5083,187,1,4429,'4.99','2005-07-07 22:32:47','2006-02-15 22:13:54'),(5084,187,2,5366,'0.99','2005-07-09 18:28:37','2006-02-15 22:13:54'),(5085,187,1,5738,'8.99','2005-07-10 11:50:51','2006-02-15 22:13:54'),(5086,187,2,5833,'6.99','2005-07-10 16:39:24','2006-02-15 22:13:54'),(5087,187,1,6057,'3.99','2005-07-11 04:03:40','2006-02-15 22:13:54'),(5088,187,2,6428,'2.99','2005-07-12 00:01:51','2006-02-15 22:13:54'),(5089,187,2,7289,'4.99','2005-07-27 12:26:51','2006-02-15 22:13:55'),(5090,187,2,7844,'7.99','2005-07-28 09:16:19','2006-02-15 22:13:55'),(5091,187,2,7967,'7.99','2005-07-28 13:56:51','2006-02-15 22:13:55'),(5092,187,1,9241,'2.99','2005-07-30 13:58:41','2006-02-15 22:13:55'),(5093,187,1,11843,'2.99','2005-08-17 13:14:50','2006-02-15 22:13:55'),(5094,187,2,12307,'8.99','2005-08-18 05:48:23','2006-02-15 22:13:55'),(5095,187,2,12490,'9.99','2005-08-18 12:48:45','2006-02-15 22:13:55'),(5096,187,1,12534,'7.99','2005-08-18 14:04:41','2006-02-15 22:13:55'),(5097,187,2,13940,'8.99','2005-08-20 17:28:57','2006-02-15 22:13:55'),(5098,187,2,14855,'8.99','2005-08-22 02:27:32','2006-02-15 22:13:55'),(5099,187,2,15231,'4.99','2005-08-22 17:32:57','2006-02-15 22:13:55'),(5100,187,2,15517,'2.99','2005-08-23 03:13:01','2006-02-15 22:13:55'),(5101,187,2,15971,'7.99','2005-08-23 19:59:33','2006-02-15 22:13:55'),(5102,188,2,1527,'2.99','2005-06-16 00:31:40','2006-02-15 22:13:55'),(5103,188,2,1927,'0.99','2005-06-17 06:48:19','2006-02-15 22:13:55'),(5104,188,1,2515,'4.99','2005-06-18 23:57:31','2006-02-15 22:13:55'),(5105,188,2,2733,'4.99','2005-06-19 15:21:53','2006-02-15 22:13:55'),(5106,188,2,3848,'3.99','2005-07-06 16:47:32','2006-02-15 22:13:55'),(5107,188,2,4150,'2.99','2005-07-07 08:43:22','2006-02-15 22:13:55'),(5108,188,2,5356,'2.99','2005-07-09 18:08:28','2006-02-15 22:13:55'),(5109,188,2,5729,'5.99','2005-07-10 11:27:25','2006-02-15 22:13:55'),(5110,188,2,6555,'4.99','2005-07-12 05:08:16','2006-02-15 22:13:55'),(5111,188,2,7042,'0.99','2005-07-27 03:20:18','2006-02-15 22:13:55'),(5112,188,1,7556,'4.99','2005-07-27 22:17:17','2006-02-15 22:13:55'),(5113,188,2,9613,'4.99','2005-07-31 03:58:53','2006-02-15 22:13:55'),(5114,188,2,10453,'5.99','2005-08-01 09:13:27','2006-02-15 22:13:55'),(5115,188,1,10494,'0.99','2005-08-01 10:45:21','2006-02-15 22:13:55'),(5116,188,2,10719,'4.99','2005-08-01 19:00:28','2006-02-15 22:13:55'),(5117,188,2,10757,'4.99','2005-08-01 20:22:44','2006-02-15 22:13:55'),(5118,188,2,11378,'2.99','2005-08-02 18:16:52','2006-02-15 22:13:55'),(5119,188,1,13570,'2.99','2005-08-20 05:04:57','2006-02-15 22:13:55'),(5120,188,1,13787,'5.99','2005-08-20 12:15:23','2006-02-15 22:13:55'),(5121,188,1,14399,'2.99','2005-08-21 10:33:23','2006-02-15 22:13:55'),(5122,188,2,14809,'2.99','2005-08-22 01:00:42','2006-02-15 22:13:55'),(5123,188,2,15319,'2.99','2005-08-22 20:17:17','2006-02-15 22:13:55'),(5124,188,2,15409,'0.99','2005-08-22 23:26:32','2006-02-15 22:13:55'),(5125,188,2,15474,'4.99','2005-08-23 01:39:10','2006-02-15 22:13:55'),(5126,188,1,14503,'2.99','2006-02-14 15:16:03','2006-02-15 22:13:56'),(5127,189,2,1117,'5.99','2005-05-31 16:15:31','2006-02-15 22:13:56'),(5128,189,1,1541,'0.99','2005-06-16 01:15:59','2006-02-15 22:13:56'),(5129,189,1,1834,'0.99','2005-06-16 22:49:08','2006-02-15 22:13:56'),(5130,189,2,2905,'1.99','2005-06-20 02:56:16','2006-02-15 22:13:56'),(5131,189,1,3108,'6.99','2005-06-20 17:28:43','2006-02-15 22:13:56'),(5132,189,1,3346,'2.99','2005-06-21 11:06:53','2006-02-15 22:13:56'),(5133,189,1,3763,'0.99','2005-07-06 12:56:31','2006-02-15 22:13:56'),(5134,189,2,3813,'4.99','2005-07-06 15:23:34','2006-02-15 22:13:56'),(5135,189,2,4203,'0.99','2005-07-07 11:24:14','2006-02-15 22:13:56'),(5136,189,1,6193,'5.99','2005-07-11 11:46:57','2006-02-15 22:13:56'),(5137,189,1,7469,'4.99','2005-07-27 18:57:40','2006-02-15 22:13:56'),(5138,189,1,7675,'4.99','2005-07-28 02:55:20','2006-02-15 22:13:56'),(5139,189,2,7790,'2.99','2005-07-28 07:22:35','2006-02-15 22:13:56'),(5140,189,2,9171,'5.99','2005-07-30 11:36:24','2006-02-15 22:13:56'),(5141,189,2,9386,'0.99','2005-07-30 19:26:21','2006-02-15 22:13:56'),(5142,189,1,9506,'4.99','2005-07-31 00:19:01','2006-02-15 22:13:56'),(5143,189,1,10247,'9.99','2005-08-01 02:34:06','2006-02-15 22:13:56'),(5144,189,2,11059,'6.99','2005-08-02 06:41:38','2006-02-15 22:13:56'),(5145,189,2,13601,'6.99','2005-08-20 06:01:15','2006-02-15 22:13:56'),(5146,189,1,13766,'3.99','2005-08-20 11:42:01','2006-02-15 22:13:56'),(5147,189,1,15773,'1.99','2005-08-23 13:24:57','2006-02-15 22:13:56'),(5148,189,1,16008,'5.99','2005-08-23 21:04:51','2006-02-15 22:13:56'),(5149,190,2,430,'4.99','2005-05-27 16:22:10','2006-02-15 22:13:56'),(5150,190,1,693,'2.99','2005-05-29 01:42:31','2006-02-15 22:13:56'),(5151,190,1,1319,'2.99','2005-06-15 10:39:05','2006-02-15 22:13:56'),(5152,190,1,1347,'2.99','2005-06-15 12:43:43','2006-02-15 22:13:56'),(5153,190,1,2057,'4.99','2005-06-17 15:31:58','2006-02-15 22:13:56'),(5154,190,1,2568,'3.99','2005-06-19 04:09:03','2006-02-15 22:13:56'),(5155,190,1,3386,'4.99','2005-06-21 14:21:06','2006-02-15 22:13:56'),(5156,190,2,4005,'5.99','2005-07-07 00:22:26','2006-02-15 22:13:56'),(5157,190,1,4140,'2.99','2005-07-07 08:19:10','2006-02-15 22:13:56'),(5158,190,2,6867,'3.99','2005-07-12 20:06:47','2006-02-15 22:13:56'),(5159,190,1,7175,'4.99','2005-07-27 08:03:22','2006-02-15 22:13:56'),(5160,190,1,7386,'5.99','2005-07-27 15:52:10','2006-02-15 22:13:56'),(5161,190,2,7404,'2.99','2005-07-27 16:24:43','2006-02-15 22:13:56'),(5162,190,1,8498,'0.99','2005-07-29 09:07:38','2006-02-15 22:13:57'),(5163,190,1,11082,'5.99','2005-08-02 07:30:19','2006-02-15 22:13:57'),(5164,190,2,11158,'6.99','2005-08-02 09:58:28','2006-02-15 22:13:57'),(5165,190,2,11276,'4.99','2005-08-02 14:28:46','2006-02-15 22:13:57'),(5166,190,2,11312,'6.99','2005-08-02 15:56:51','2006-02-15 22:13:57'),(5167,190,2,11750,'0.99','2005-08-17 09:07:00','2006-02-15 22:13:57'),(5168,190,2,11950,'9.99','2005-08-17 17:13:16','2006-02-15 22:13:57'),(5169,190,1,12270,'2.99','2005-08-18 04:32:05','2006-02-15 22:13:57'),(5170,190,2,12381,'0.99','2005-08-18 08:31:43','2006-02-15 22:13:57'),(5171,190,2,14065,'0.99','2005-08-20 22:40:47','2006-02-15 22:13:57'),(5172,190,2,14141,'4.99','2005-08-21 02:07:22','2006-02-15 22:13:57'),(5173,190,2,14166,'2.99','2005-08-21 02:59:31','2006-02-15 22:13:57'),(5174,190,2,14650,'0.99','2005-08-21 19:24:51','2006-02-15 22:13:57'),(5175,190,2,15167,'4.99','2006-02-14 15:16:03','2006-02-15 22:13:57'),(5176,191,1,1134,'2.99','2005-05-31 19:14:15','2006-02-15 22:13:57'),(5177,191,2,1152,'4.99','2005-05-31 21:32:17','2006-02-15 22:13:57'),(5178,191,2,1173,'2.99','2005-06-14 23:54:46','2006-02-15 22:13:57'),(5179,191,1,1278,'0.99','2005-06-15 08:09:12','2006-02-15 22:13:57'),(5180,191,1,1677,'2.99','2005-06-16 11:07:11','2006-02-15 22:13:57'),(5181,191,2,1870,'2.99','2005-06-17 02:24:36','2006-02-15 22:13:57'),(5182,191,1,2051,'4.99','2005-06-17 15:10:16','2006-02-15 22:13:57'),(5183,191,2,2555,'2.99','2005-06-19 03:07:02','2006-02-15 22:13:57'),(5184,191,1,5338,'2.99','2005-07-09 17:07:07','2006-02-15 22:13:57'),(5185,191,2,5397,'5.99','2005-07-09 19:43:51','2006-02-15 22:13:57'),(5186,191,1,5924,'5.99','2005-07-10 21:41:23','2006-02-15 22:13:57'),(5187,191,1,7150,'6.99','2005-07-27 07:11:14','2006-02-15 22:13:57'),(5188,191,1,7450,'3.99','2005-07-27 18:18:35','2006-02-15 22:13:57'),(5189,191,1,7520,'2.99','2005-07-27 21:02:02','2006-02-15 22:13:57'),(5190,191,2,8583,'0.99','2005-07-29 12:04:50','2006-02-15 22:13:57'),(5191,191,1,9297,'4.99','2005-07-30 16:26:29','2006-02-15 22:13:57'),(5192,191,1,9964,'4.99','2005-07-31 16:17:39','2006-02-15 22:13:57'),(5193,191,2,10532,'2.99','2005-08-01 12:06:35','2006-02-15 22:13:57'),(5194,191,2,15375,'4.99','2005-08-22 22:12:02','2006-02-15 22:13:57'),(5195,191,1,14361,'0.99','2006-02-14 15:16:03','2006-02-15 22:13:57'),(5196,192,1,895,'1.99','2005-05-30 08:50:43','2006-02-15 22:13:57'),(5197,192,1,2760,'3.99','2005-06-19 17:16:33','2006-02-15 22:13:57'),(5198,192,1,3902,'2.99','2005-07-06 19:25:18','2006-02-15 22:13:57'),(5199,192,1,4469,'4.99','2005-07-08 00:18:32','2006-02-15 22:13:57'),(5200,192,1,5400,'2.99','2005-07-09 19:56:40','2006-02-15 22:13:58'),(5201,192,2,6223,'0.99','2005-07-11 13:27:09','2006-02-15 22:13:58'),(5202,192,2,6691,'0.99','2005-07-12 12:26:38','2006-02-15 22:13:58'),(5203,192,2,7147,'2.99','2005-07-27 07:02:34','2006-02-15 22:13:58'),(5204,192,2,8051,'0.99','2005-07-28 16:56:16','2006-02-15 22:13:58'),(5205,192,2,8292,'7.99','2005-07-29 02:29:36','2006-02-15 22:13:58'),(5206,192,1,9462,'7.99','2005-07-30 22:30:44','2006-02-15 22:13:58'),(5207,192,1,9831,'2.99','2005-07-31 11:59:32','2006-02-15 22:13:58'),(5208,192,2,10238,'0.99','2005-08-01 02:08:05','2006-02-15 22:13:58'),(5209,192,1,10843,'7.99','2005-08-01 23:43:03','2006-02-15 22:13:58'),(5210,192,1,11385,'4.99','2005-08-02 18:23:11','2006-02-15 22:13:58'),(5211,192,1,11815,'4.99','2005-08-17 12:13:26','2006-02-15 22:13:58'),(5212,192,1,13125,'5.99','2005-08-19 11:57:49','2006-02-15 22:13:58'),(5213,192,2,14146,'4.99','2005-08-21 02:13:31','2006-02-15 22:13:58'),(5214,192,2,14238,'7.99','2005-08-21 05:16:40','2006-02-15 22:13:58'),(5215,192,1,14404,'4.99','2005-08-21 10:43:04','2006-02-15 22:13:58'),(5216,192,2,14692,'6.99','2005-08-21 20:43:21','2006-02-15 22:13:58'),(5217,192,2,15855,'2.99','2005-08-23 15:59:01','2006-02-15 22:13:58'),(5218,192,1,11611,'4.99','2006-02-14 15:16:03','2006-02-15 22:13:58'),(5219,193,2,273,'2.99','2005-05-26 16:29:36','2006-02-15 22:13:58'),(5220,193,2,464,'0.99','2005-05-27 20:42:44','2006-02-15 22:13:58'),(5221,193,1,1325,'4.99','2005-06-15 11:03:24','2006-02-15 22:13:58'),(5222,193,2,2377,'6.99','2005-06-18 14:56:23','2006-02-15 22:13:58'),(5223,193,2,2841,'6.99','2005-06-19 22:21:06','2006-02-15 22:13:58'),(5224,193,2,2846,'4.99','2005-06-19 22:52:14','2006-02-15 22:13:58'),(5225,193,2,2880,'2.99','2005-06-20 01:24:54','2006-02-15 22:13:58'),(5226,193,1,3297,'8.99','2005-06-21 07:08:19','2006-02-15 22:13:58'),(5227,193,1,4892,'6.99','2005-07-08 20:06:25','2006-02-15 22:13:58'),(5228,193,1,8211,'2.99','2005-07-28 23:34:22','2006-02-15 22:13:58'),(5229,193,1,8379,'4.99','2005-07-29 05:29:40','2006-02-15 22:13:58'),(5230,193,1,8431,'4.99','2005-07-29 07:12:48','2006-02-15 22:13:58'),(5231,193,1,9079,'2.99','2005-07-30 08:02:00','2006-02-15 22:13:58'),(5232,193,1,9575,'4.99','2005-07-31 02:51:53','2006-02-15 22:13:58'),(5233,193,2,10462,'2.99','2005-08-01 09:38:28','2006-02-15 22:13:58'),(5234,193,2,12384,'0.99','2005-08-18 08:36:58','2006-02-15 22:13:58'),(5235,193,2,12658,'4.99','2005-08-18 19:05:42','2006-02-15 22:13:58'),(5236,193,1,13529,'2.99','2005-08-20 03:07:47','2006-02-15 22:13:58'),(5237,193,1,13608,'0.99','2005-08-20 06:10:44','2006-02-15 22:13:59'),(5238,193,1,14679,'2.99','2005-08-21 20:14:58','2006-02-15 22:13:59'),(5239,193,1,14927,'4.99','2005-08-22 05:31:53','2006-02-15 22:13:59'),(5240,193,2,15164,'4.99','2005-08-22 14:47:53','2006-02-15 22:13:59'),(5241,193,2,15344,'6.99','2005-08-22 21:01:48','2006-02-15 22:13:59'),(5242,193,2,15495,'5.99','2005-08-23 02:26:10','2006-02-15 22:13:59'),(5243,193,2,15729,'2.99','2006-02-14 15:16:03','2006-02-15 22:13:59'),(5244,194,2,334,'4.99','2005-05-27 03:03:07','2006-02-15 22:13:59'),(5245,194,2,677,'7.99','2005-05-28 23:00:08','2006-02-15 22:13:59'),(5246,194,1,1430,'0.99','2005-06-15 18:24:55','2006-02-15 22:13:59'),(5247,194,1,2245,'7.99','2005-06-18 04:52:59','2006-02-15 22:13:59'),(5248,194,1,2347,'2.99','2005-06-18 12:12:29','2006-02-15 22:13:59'),(5249,194,1,2463,'3.99','2005-06-18 20:01:43','2006-02-15 22:13:59'),(5250,194,1,2807,'3.99','2005-06-19 19:32:53','2006-02-15 22:13:59'),(5251,194,2,4231,'7.99','2005-07-07 12:48:19','2006-02-15 22:13:59'),(5252,194,2,5146,'2.99','2005-07-09 08:14:58','2006-02-15 22:13:59'),(5253,194,1,5291,'2.99','2005-07-09 15:15:02','2006-02-15 22:13:59'),(5254,194,2,5894,'3.99','2005-07-10 20:09:34','2006-02-15 22:13:59'),(5255,194,1,9064,'7.99','2005-07-30 07:24:55','2006-02-15 22:13:59'),(5256,194,2,11475,'5.99','2005-08-02 21:55:09','2006-02-15 22:13:59'),(5257,194,2,12851,'3.99','2005-08-19 02:12:12','2006-02-15 22:13:59'),(5258,194,1,13515,'0.99','2005-08-20 02:29:47','2006-02-15 22:13:59'),(5259,194,2,13616,'7.99','2005-08-20 06:30:33','2006-02-15 22:13:59'),(5260,194,1,14440,'4.99','2005-08-21 11:59:04','2006-02-15 22:13:59'),(5261,194,2,15937,'4.99','2005-08-23 18:43:22','2006-02-15 22:13:59'),(5262,195,1,4234,'6.99','2005-07-07 13:01:35','2006-02-15 22:13:59'),(5263,195,1,4315,'2.99','2005-07-07 17:40:26','2006-02-15 22:13:59'),(5264,195,1,5228,'4.99','2005-07-09 12:26:01','2006-02-15 22:13:59'),(5265,195,1,5536,'0.99','2005-07-10 02:29:42','2006-02-15 22:13:59'),(5266,195,2,6175,'4.99','2005-07-11 10:44:37','2006-02-15 22:13:59'),(5267,195,1,7349,'2.99','2005-07-27 14:33:00','2006-02-15 22:13:59'),(5268,195,2,8280,'4.99','2005-07-29 01:45:51','2006-02-15 22:13:59'),(5269,195,2,8479,'0.99','2005-07-29 08:42:04','2006-02-15 22:13:59'),(5270,195,2,9188,'6.99','2005-07-30 12:19:54','2006-02-15 22:13:59'),(5271,195,1,9870,'5.99','2005-07-31 13:22:51','2006-02-15 22:13:59'),(5272,195,1,9994,'4.99','2005-07-31 17:30:31','2006-02-15 22:13:59'),(5273,195,2,10911,'4.99','2005-08-02 01:58:36','2006-02-15 22:14:00'),(5274,195,1,11201,'7.99','2005-08-02 11:49:16','2006-02-15 22:14:00'),(5275,195,2,11787,'2.99','2005-08-17 10:59:00','2006-02-15 22:14:00'),(5276,195,2,12099,'0.99','2005-08-17 22:38:54','2006-02-15 22:14:00'),(5277,195,2,12941,'0.99','2005-08-19 05:39:26','2006-02-15 22:14:00'),(5278,195,2,13741,'0.99','2005-08-20 10:48:47','2006-02-15 22:14:00'),(5279,195,2,14751,'7.99','2005-08-21 23:11:23','2006-02-15 22:14:00'),(5280,195,2,16040,'11.99','2005-08-23 22:19:33','2006-02-15 22:14:00'),(5281,196,2,106,'11.99','2005-05-25 18:18:19','2006-02-15 22:14:00'),(5282,196,2,178,'5.99','2005-05-26 04:21:46','2006-02-15 22:14:00'),(5283,196,2,491,'2.99','2005-05-28 00:13:35','2006-02-15 22:14:00'),(5284,196,1,1053,'1.99','2005-05-31 07:12:44','2006-02-15 22:14:00'),(5285,196,1,1182,'5.99','2005-06-15 00:45:21','2006-02-15 22:14:00'),(5286,196,1,1348,'2.99','2005-06-15 12:45:30','2006-02-15 22:14:00'),(5287,196,2,1600,'0.99','2005-06-16 06:04:12','2006-02-15 22:14:00'),(5288,196,1,2681,'0.99','2005-06-19 12:15:27','2006-02-15 22:14:00'),(5289,196,2,2912,'4.99','2005-06-20 03:32:45','2006-02-15 22:14:00'),(5290,196,1,3104,'4.99','2005-06-20 17:06:46','2006-02-15 22:14:00'),(5291,196,2,3271,'5.99','2005-06-21 05:16:10','2006-02-15 22:14:00'),(5292,196,2,3342,'4.99','2005-06-21 10:46:36','2006-02-15 22:14:00'),(5293,196,1,4879,'2.99','2005-07-08 19:34:55','2006-02-15 22:14:00'),(5294,196,2,4999,'4.99','2005-07-09 01:12:57','2006-02-15 22:14:00'),(5295,196,2,5143,'4.99','2005-07-09 08:07:07','2006-02-15 22:14:00'),(5296,196,2,5353,'3.99','2005-07-09 18:04:29','2006-02-15 22:14:00'),(5297,196,2,5768,'4.99','2005-07-10 13:15:26','2006-02-15 22:14:00'),(5298,196,2,6857,'4.99','2005-07-12 19:53:30','2006-02-15 22:14:00'),(5299,196,2,7666,'3.99','2005-07-28 02:35:12','2006-02-15 22:14:00'),(5300,196,2,8266,'0.99','2005-07-29 01:20:16','2006-02-15 22:14:00'),(5301,196,2,8472,'1.99','2005-07-29 08:36:22','2006-02-15 22:14:00'),(5302,196,2,8700,'0.99','2005-07-29 16:56:01','2006-02-15 22:14:00'),(5303,196,1,9346,'5.99','2005-07-30 18:13:52','2006-02-15 22:14:00'),(5304,196,1,9721,'6.99','2005-07-31 08:28:46','2006-02-15 22:14:00'),(5305,196,1,9804,'4.99','2005-07-31 11:07:39','2006-02-15 22:14:00'),(5306,196,2,10122,'10.99','2005-07-31 21:29:28','2006-02-15 22:14:00'),(5307,196,1,10191,'4.99','2005-08-01 00:28:38','2006-02-15 22:14:00'),(5308,196,1,11104,'2.99','2005-08-02 08:09:58','2006-02-15 22:14:01'),(5309,196,2,12430,'0.99','2005-08-18 10:32:41','2006-02-15 22:14:01'),(5310,196,2,12684,'0.99','2005-08-18 19:51:27','2006-02-15 22:14:01'),(5311,196,2,12836,'0.99','2005-08-19 01:48:33','2006-02-15 22:14:01'),(5312,196,1,13799,'8.99','2005-08-20 12:36:42','2006-02-15 22:14:01'),(5313,196,2,14410,'5.99','2005-08-21 10:54:49','2006-02-15 22:14:01'),(5314,196,1,14698,'5.99','2005-08-21 20:49:58','2006-02-15 22:14:01'),(5315,196,2,15980,'0.99','2005-08-23 20:10:13','2006-02-15 22:14:01'),(5316,197,2,94,'2.99','2005-05-25 16:03:42','2006-02-15 22:14:01'),(5317,197,1,215,'0.99','2005-05-26 09:02:47','2006-02-15 22:14:01'),(5318,197,1,391,'2.99','2005-05-27 11:03:55','2006-02-15 22:14:01'),(5319,197,2,649,'1.99','2005-05-28 19:35:45','2006-02-15 22:14:01'),(5320,197,1,683,'2.99','2005-05-29 00:09:48','2006-02-15 22:14:01'),(5321,197,2,730,'3.99','2005-05-29 07:00:59','2006-02-15 22:14:01'),(5322,197,1,903,'3.99','2005-05-30 10:11:29','2006-02-15 22:14:01'),(5323,197,1,918,'0.99','2005-05-30 11:32:24','2006-02-15 22:14:01'),(5324,197,2,1175,'2.99','2005-06-15 00:15:15','2006-02-15 22:14:01'),(5325,197,1,1363,'0.99','2005-06-15 14:05:11','2006-02-15 22:14:01'),(5326,197,1,1503,'2.99','2005-06-15 22:07:09','2006-02-15 22:14:01'),(5327,197,2,1605,'8.99','2005-06-16 06:17:55','2006-02-15 22:14:01'),(5328,197,2,1919,'4.99','2005-06-17 05:40:52','2006-02-15 22:14:01'),(5329,197,1,2090,'2.99','2005-06-17 18:06:14','2006-02-15 22:14:01'),(5330,197,1,2750,'4.99','2005-06-19 16:37:24','2006-02-15 22:14:01'),(5331,197,2,2781,'2.99','2005-06-19 18:24:42','2006-02-15 22:14:01'),(5332,197,1,4486,'8.99','2005-07-08 01:09:09','2006-02-15 22:14:01'),(5333,197,2,4739,'4.99','2005-07-08 13:25:57','2006-02-15 22:14:01'),(5334,197,2,5182,'6.99','2005-07-09 10:08:10','2006-02-15 22:14:01'),(5335,197,2,5344,'0.99','2005-07-09 17:27:05','2006-02-15 22:14:01'),(5336,197,1,8165,'2.99','2005-07-28 21:23:06','2006-02-15 22:14:01'),(5337,197,2,9378,'4.99','2005-07-30 19:12:54','2006-02-15 22:14:01'),(5338,197,1,9476,'0.99','2005-07-30 23:06:40','2006-02-15 22:14:01'),(5339,197,2,9585,'4.99','2005-07-31 03:05:55','2006-02-15 22:14:01'),(5340,197,2,10460,'3.99','2005-08-01 09:31:00','2006-02-15 22:14:01'),(5341,197,2,10666,'0.99','2005-08-01 16:56:36','2006-02-15 22:14:01'),(5342,197,2,10739,'4.99','2005-08-01 19:46:11','2006-02-15 22:14:01'),(5343,197,1,10743,'2.99','2005-08-01 19:55:09','2006-02-15 22:14:01'),(5344,197,1,11018,'4.99','2005-08-02 05:27:53','2006-02-15 22:14:02'),(5345,197,1,11215,'4.99','2005-08-02 12:20:42','2006-02-15 22:14:02'),(5346,197,1,11311,'4.99','2005-08-02 15:53:48','2006-02-15 22:14:02'),(5347,197,1,11478,'2.99','2005-08-02 22:09:05','2006-02-15 22:14:02'),(5348,197,1,11643,'1.99','2005-08-17 04:49:35','2006-02-15 22:14:02'),(5349,197,1,12799,'0.99','2005-08-19 00:27:01','2006-02-15 22:14:02'),(5350,197,2,13913,'3.99','2005-08-20 16:37:35','2006-02-15 22:14:02'),(5351,197,1,14069,'9.99','2005-08-20 22:51:25','2006-02-15 22:14:02'),(5352,197,2,14951,'4.99','2005-08-22 06:19:37','2006-02-15 22:14:02'),(5353,197,1,15078,'2.99','2005-08-22 11:09:31','2006-02-15 22:14:02'),(5354,197,2,15233,'0.99','2005-08-22 17:41:53','2006-02-15 22:14:02'),(5355,197,1,15540,'8.99','2005-08-23 04:12:52','2006-02-15 22:14:02'),(5356,198,1,357,'0.99','2005-05-27 06:37:15','2006-02-15 22:14:02'),(5357,198,1,582,'4.99','2005-05-28 11:33:46','2006-02-15 22:14:02'),(5358,198,2,639,'2.99','2005-05-28 18:25:02','2006-02-15 22:14:02'),(5359,198,1,932,'2.99','2005-05-30 12:55:36','2006-02-15 22:14:02'),(5360,198,2,1132,'4.99','2005-05-31 18:44:53','2006-02-15 22:14:02'),(5361,198,2,2185,'0.99','2005-06-18 01:12:22','2006-02-15 22:14:02'),(5362,198,2,3770,'2.99','2005-07-06 13:14:28','2006-02-15 22:14:02'),(5363,198,2,4588,'2.99','2005-07-08 06:18:01','2006-02-15 22:14:02'),(5364,198,2,4750,'0.99','2005-07-08 14:07:03','2006-02-15 22:14:02'),(5365,198,2,5794,'4.99','2005-07-10 14:34:53','2006-02-15 22:14:02'),(5366,198,2,6567,'4.99','2005-07-12 05:43:09','2006-02-15 22:14:02'),(5367,198,1,6819,'4.99','2005-07-12 18:21:01','2006-02-15 22:14:02'),(5368,198,2,6889,'4.99','2005-07-12 21:01:22','2006-02-15 22:14:02'),(5369,198,1,7287,'0.99','2005-07-27 12:24:12','2006-02-15 22:14:02'),(5370,198,1,7441,'5.99','2005-07-27 17:46:53','2006-02-15 22:14:02'),(5371,198,1,7583,'2.99','2005-07-27 23:15:22','2006-02-15 22:14:02'),(5372,198,2,7622,'0.99','2005-07-28 00:37:34','2006-02-15 22:14:02'),(5373,198,1,8145,'5.99','2005-07-28 20:34:41','2006-02-15 22:14:02'),(5374,198,2,9389,'0.99','2005-07-30 19:27:59','2006-02-15 22:14:02'),(5375,198,1,10112,'4.99','2005-07-31 21:08:56','2006-02-15 22:14:02'),(5376,198,1,10147,'2.99','2005-07-31 22:18:43','2006-02-15 22:14:02'),(5377,198,1,10679,'0.99','2005-08-01 17:27:58','2006-02-15 22:14:02'),(5378,198,1,11351,'3.99','2005-08-02 17:28:07','2006-02-15 22:14:02'),(5379,198,1,11594,'6.99','2005-08-17 02:47:02','2006-02-15 22:14:02'),(5380,198,1,11756,'2.99','2005-08-17 09:29:22','2006-02-15 22:14:03'),(5381,198,1,11836,'4.99','2005-08-17 13:03:36','2006-02-15 22:14:03'),(5382,198,2,11949,'2.99','2005-08-17 17:12:26','2006-02-15 22:14:03'),(5383,198,1,11957,'1.99','2005-08-17 17:22:29','2006-02-15 22:14:03'),(5384,198,2,11985,'2.99','2005-08-17 18:19:44','2006-02-15 22:14:03'),(5385,198,2,12594,'4.99','2005-08-18 16:24:24','2006-02-15 22:14:03'),(5386,198,1,12862,'5.99','2005-08-19 02:31:59','2006-02-15 22:14:03'),(5387,198,1,13768,'5.99','2005-08-20 11:43:43','2006-02-15 22:14:03'),(5388,198,1,14214,'5.99','2005-08-21 04:30:49','2006-02-15 22:14:03'),(5389,198,2,14380,'2.99','2005-08-21 09:53:52','2006-02-15 22:14:03'),(5390,198,2,14990,'4.99','2005-08-22 07:48:01','2006-02-15 22:14:03'),(5391,198,1,15256,'6.99','2005-08-22 18:20:07','2006-02-15 22:14:03'),(5392,198,1,15433,'4.99','2005-08-23 00:27:18','2006-02-15 22:14:03'),(5393,199,1,499,'7.99','2005-05-28 01:05:07','2006-02-15 22:14:03'),(5394,199,1,1406,'4.99','2005-06-15 16:44:00','2006-02-15 22:14:03'),(5395,199,1,1910,'2.99','2005-06-17 05:11:27','2006-02-15 22:14:03'),(5396,199,1,3299,'0.99','2005-06-21 07:23:34','2006-02-15 22:14:03'),(5397,199,1,4499,'2.99','2005-07-08 02:08:48','2006-02-15 22:14:03'),(5398,199,2,4580,'8.99','2005-07-08 06:04:23','2006-02-15 22:14:03'),(5399,199,1,4976,'4.99','2005-07-09 00:03:30','2006-02-15 22:14:03'),(5400,199,2,5398,'2.99','2005-07-09 19:44:58','2006-02-15 22:14:03'),(5401,199,2,5680,'5.99','2005-07-10 08:47:36','2006-02-15 22:14:03'),(5402,199,2,6668,'2.99','2005-07-12 11:37:45','2006-02-15 22:14:03'),(5403,199,2,6782,'4.99','2005-07-12 16:23:25','2006-02-15 22:14:03'),(5404,199,1,7782,'4.99','2005-07-28 07:13:40','2006-02-15 22:14:03'),(5405,199,1,8709,'0.99','2005-07-29 17:25:54','2006-02-15 22:14:03'),(5406,199,1,9752,'2.99','2005-07-31 09:22:02','2006-02-15 22:14:03'),(5407,199,2,9894,'4.99','2005-07-31 14:07:44','2006-02-15 22:14:03'),(5408,199,1,9959,'4.99','2005-07-31 16:04:22','2006-02-15 22:14:03'),(5409,199,1,10196,'2.99','2005-08-01 00:34:51','2006-02-15 22:14:03'),(5410,199,2,10517,'4.99','2005-08-01 11:41:57','2006-02-15 22:14:03'),(5411,199,1,10850,'8.99','2005-08-01 23:53:45','2006-02-15 22:14:03'),(5412,199,1,11454,'2.99','2005-08-02 21:04:39','2006-02-15 22:14:03'),(5413,199,1,12386,'0.99','2005-08-18 08:45:57','2006-02-15 22:14:03'),(5414,199,2,14320,'4.99','2005-08-21 08:04:40','2006-02-15 22:14:03'),(5415,199,2,15412,'0.99','2005-08-22 23:37:11','2006-02-15 22:14:03'),(5416,199,2,15751,'3.99','2005-08-23 12:41:07','2006-02-15 22:14:04'),(5417,199,2,13952,'2.99','2006-02-14 15:16:03','2006-02-15 22:14:04'),(5418,200,2,270,'9.99','2005-05-26 16:20:56','2006-02-15 22:14:04'),(5419,200,2,1296,'1.99','2005-06-15 09:23:59','2006-02-15 22:14:04'),(5420,200,2,1309,'4.99','2005-06-15 10:10:49','2006-02-15 22:14:04'),(5421,200,2,1899,'6.99','2005-06-17 04:29:15','2006-02-15 22:14:04'),(5422,200,1,2227,'4.99','2005-06-18 03:43:23','2006-02-15 22:14:04'),(5423,200,2,2667,'3.99','2005-06-19 11:28:46','2006-02-15 22:14:04'),(5424,200,2,2717,'4.99','2005-06-19 14:46:10','2006-02-15 22:14:04'),(5425,200,1,3190,'3.99','2005-06-20 23:27:15','2006-02-15 22:14:04'),(5426,200,1,3580,'4.99','2005-07-06 03:48:44','2006-02-15 22:14:04'),(5427,200,1,5110,'2.99','2005-07-09 06:57:25','2006-02-15 22:14:04'),(5428,200,1,6123,'0.99','2005-07-11 08:02:27','2006-02-15 22:14:04'),(5429,200,2,6167,'2.99','2005-07-11 10:21:21','2006-02-15 22:14:04'),(5430,200,1,6181,'4.99','2005-07-11 11:10:11','2006-02-15 22:14:04'),(5431,200,1,6947,'3.99','2005-07-26 23:42:03','2006-02-15 22:14:04'),(5432,200,1,7574,'2.99','2005-07-27 22:53:00','2006-02-15 22:14:04'),(5433,200,2,8368,'3.99','2005-07-29 05:15:41','2006-02-15 22:14:04'),(5434,200,2,8462,'2.99','2005-07-29 08:15:42','2006-02-15 22:14:04'),(5435,200,1,9527,'6.99','2005-07-31 01:02:24','2006-02-15 22:14:04'),(5436,200,1,10685,'2.99','2005-08-01 17:49:38','2006-02-15 22:14:04'),(5437,200,1,11356,'8.99','2005-08-02 17:42:40','2006-02-15 22:14:04'),(5438,200,1,13737,'5.99','2005-08-20 10:41:50','2006-02-15 22:14:04'),(5439,200,1,14034,'10.99','2005-08-20 21:31:52','2006-02-15 22:14:04'),(5440,200,2,14521,'6.99','2005-08-21 15:01:32','2006-02-15 22:14:04'),(5441,200,2,15691,'4.99','2005-08-23 09:53:54','2006-02-15 22:14:04'),(5442,200,2,15742,'5.99','2005-08-23 12:11:37','2006-02-15 22:14:04'),(5443,200,1,15961,'6.99','2005-08-23 19:35:42','2006-02-15 22:14:04'),(5444,200,2,11866,'2.99','2006-02-14 15:16:03','2006-02-15 22:14:04'),(5445,201,1,311,'3.99','2005-05-26 22:51:37','2006-02-15 22:14:04'),(5446,201,1,670,'6.99','2005-05-28 22:04:03','2006-02-15 22:14:04'),(5447,201,2,756,'5.99','2005-05-29 10:28:45','2006-02-15 22:14:04'),(5448,201,1,2047,'1.99','2005-06-17 14:40:58','2006-02-15 22:14:04'),(5449,201,1,2157,'3.99','2005-06-17 23:30:52','2006-02-15 22:14:04'),(5450,201,2,2359,'6.99','2005-06-18 13:04:42','2006-02-15 22:14:04'),(5451,201,1,3106,'4.99','2005-06-20 17:18:06','2006-02-15 22:14:04'),(5452,201,1,3364,'7.99','2005-06-21 12:37:46','2006-02-15 22:14:05'),(5453,201,2,3528,'4.99','2005-07-06 01:13:27','2006-02-15 22:14:05'),(5454,201,2,3708,'6.99','2005-07-06 10:23:27','2006-02-15 22:14:05'),(5455,201,1,7106,'0.99','2005-07-27 05:21:24','2006-02-15 22:14:05'),(5456,201,2,7606,'2.99','2005-07-28 00:02:15','2006-02-15 22:14:05'),(5457,201,2,9355,'0.99','2005-07-30 18:35:25','2006-02-15 22:14:05'),(5458,201,2,10750,'5.99','2005-08-01 20:06:00','2006-02-15 22:14:05'),(5459,201,2,10865,'3.99','2005-08-02 00:22:46','2006-02-15 22:14:05'),(5460,201,1,10891,'0.99','2005-08-02 01:09:55','2006-02-15 22:14:05'),(5461,201,2,11807,'0.99','2005-08-17 11:51:15','2006-02-15 22:14:05'),(5462,201,2,13076,'4.99','2005-08-19 10:10:26','2006-02-15 22:14:05'),(5463,201,2,13613,'9.99','2005-08-20 06:23:53','2006-02-15 22:14:05'),(5464,201,2,13671,'3.99','2005-08-20 08:27:03','2006-02-15 22:14:05'),(5465,201,2,13672,'2.99','2005-08-20 08:27:27','2006-02-15 22:14:05'),(5466,201,2,14656,'2.99','2005-08-21 19:39:28','2006-02-15 22:14:05'),(5467,201,1,14973,'2.99','2005-08-22 06:59:28','2006-02-15 22:14:05'),(5468,201,1,15887,'2.99','2005-08-23 16:54:09','2006-02-15 22:14:05'),(5469,201,2,15974,'5.99','2005-08-23 20:06:04','2006-02-15 22:14:05'),(5470,202,1,1474,'2.99','2005-06-15 20:55:42','2006-02-15 22:14:05'),(5471,202,1,1535,'4.99','2005-06-16 00:52:04','2006-02-15 22:14:05'),(5472,202,1,3008,'0.99','2005-06-20 10:23:25','2006-02-15 22:14:05'),(5473,202,2,3148,'0.99','2005-06-20 20:27:18','2006-02-15 22:14:05'),(5474,202,1,3861,'8.99','2005-07-06 17:24:49','2006-02-15 22:14:05'),(5475,202,2,4567,'4.99','2005-07-08 05:20:04','2006-02-15 22:14:05'),(5476,202,2,5194,'2.99','2005-07-09 10:31:34','2006-02-15 22:14:05'),(5477,202,1,5297,'2.99','2005-07-09 15:32:29','2006-02-15 22:14:05'),(5478,202,2,5838,'2.99','2005-07-10 17:04:56','2006-02-15 22:14:05'),(5479,202,1,7613,'2.99','2005-07-28 00:13:58','2006-02-15 22:14:05'),(5480,202,1,8351,'2.99','2005-07-29 04:50:53','2006-02-15 22:14:05'),(5481,202,1,8779,'2.99','2005-07-29 20:15:00','2006-02-15 22:14:05'),(5482,202,1,8830,'2.99','2005-07-29 22:34:35','2006-02-15 22:14:05'),(5483,202,2,8930,'0.99','2005-07-30 02:28:38','2006-02-15 22:14:05'),(5484,202,2,9057,'2.99','2005-07-30 07:14:18','2006-02-15 22:14:05'),(5485,202,2,9467,'8.99','2005-07-30 22:45:34','2006-02-15 22:14:05'),(5486,202,2,9751,'4.99','2005-07-31 09:20:50','2006-02-15 22:14:05'),(5487,202,1,10375,'2.99','2005-08-01 06:26:22','2006-02-15 22:14:05'),(5488,202,1,11210,'4.99','2005-08-02 12:15:54','2006-02-15 22:14:06'),(5489,202,2,11924,'4.99','2005-08-17 16:22:05','2006-02-15 22:14:06'),(5490,202,2,12801,'8.99','2005-08-19 00:27:19','2006-02-15 22:14:06'),(5491,202,1,13196,'4.99','2005-08-19 14:40:32','2006-02-15 22:14:06'),(5492,202,1,13528,'3.99','2005-08-20 03:03:31','2006-02-15 22:14:06'),(5493,202,1,14019,'3.99','2005-08-20 20:59:15','2006-02-15 22:14:06'),(5494,202,1,15095,'0.99','2005-08-22 11:41:35','2006-02-15 22:14:06'),(5495,202,2,15772,'4.99','2005-08-23 13:22:56','2006-02-15 22:14:06'),(5496,203,1,314,'0.99','2005-05-26 23:09:41','2006-02-15 22:14:06'),(5497,203,1,1217,'4.99','2005-06-15 03:24:14','2006-02-15 22:14:06'),(5498,203,1,1715,'2.99','2005-06-16 14:37:12','2006-02-15 22:14:06'),(5499,203,2,2939,'7.99','2005-06-20 05:18:16','2006-02-15 22:14:06'),(5500,203,2,3406,'2.99','2005-06-21 16:00:18','2006-02-15 22:14:06'),(5501,203,2,4136,'2.99','2005-07-07 08:15:52','2006-02-15 22:14:06'),(5502,203,2,5579,'5.99','2005-07-10 04:04:29','2006-02-15 22:14:06'),(5503,203,2,7787,'6.99','2005-07-28 07:19:02','2006-02-15 22:14:06'),(5504,203,1,8039,'0.99','2005-07-28 16:35:16','2006-02-15 22:14:06'),(5505,203,1,8463,'4.99','2005-07-29 08:17:51','2006-02-15 22:14:06'),(5506,203,1,8792,'7.99','2005-07-29 20:56:14','2006-02-15 22:14:06'),(5507,203,2,9015,'10.99','2005-07-30 05:21:32','2006-02-15 22:14:06'),(5508,203,2,10700,'3.99','2005-08-01 18:26:31','2006-02-15 22:14:06'),(5509,203,2,10805,'2.99','2005-08-01 22:23:37','2006-02-15 22:14:06'),(5510,203,1,11712,'2.99','2005-08-17 07:32:51','2006-02-15 22:14:06'),(5511,203,1,12519,'0.99','2005-08-18 13:42:14','2006-02-15 22:14:06'),(5512,203,2,13841,'4.99','2005-08-20 14:25:18','2006-02-15 22:14:06'),(5513,203,2,14505,'5.99','2005-08-21 14:26:28','2006-02-15 22:14:06'),(5514,203,2,15798,'2.99','2005-08-23 14:23:03','2006-02-15 22:14:06'),(5515,203,2,15991,'2.99','2005-08-23 20:27:34','2006-02-15 22:14:06'),(5516,204,2,251,'0.99','2005-05-26 14:35:40','2006-02-15 22:14:06'),(5517,204,2,399,'4.99','2005-05-27 12:48:38','2006-02-15 22:14:06'),(5518,204,2,857,'4.99','2005-05-30 02:01:23','2006-02-15 22:14:06'),(5519,204,1,1016,'1.99','2005-05-31 02:49:43','2006-02-15 22:14:06'),(5520,204,1,1321,'2.99','2005-06-15 10:49:17','2006-02-15 22:14:06'),(5521,204,1,1616,'7.99','2005-06-16 07:04:52','2006-02-15 22:14:06'),(5522,204,1,1871,'4.99','2005-06-17 02:25:12','2006-02-15 22:14:06'),(5523,204,2,1894,'7.99','2005-06-17 04:18:48','2006-02-15 22:14:06'),(5524,204,2,2186,'2.99','2005-06-18 01:15:27','2006-02-15 22:14:07'),(5525,204,2,2734,'4.99','2005-06-19 15:36:27','2006-02-15 22:14:07'),(5526,204,1,4043,'0.99','2005-07-07 03:09:50','2006-02-15 22:14:07'),(5527,204,1,4979,'4.99','2005-07-09 00:24:34','2006-02-15 22:14:07'),(5528,204,2,5145,'0.99','2005-07-09 08:13:25','2006-02-15 22:14:07'),(5529,204,1,5619,'2.99','2005-07-10 05:29:33','2006-02-15 22:14:07'),(5530,204,2,6004,'4.99','2005-07-11 01:34:25','2006-02-15 22:14:07'),(5531,204,2,6225,'2.99','2005-07-11 13:45:14','2006-02-15 22:14:07'),(5532,204,2,6631,'0.99','2005-07-12 09:31:43','2006-02-15 22:14:07'),(5533,204,1,6694,'6.99','2005-07-12 12:39:23','2006-02-15 22:14:07'),(5534,204,2,6871,'2.99','2005-07-12 20:13:49','2006-02-15 22:14:07'),(5535,204,1,7392,'4.99','2005-07-27 16:01:05','2006-02-15 22:14:07'),(5536,204,2,9005,'0.99','2005-07-30 05:04:58','2006-02-15 22:14:07'),(5537,204,1,9394,'5.99','2005-07-30 20:06:24','2006-02-15 22:14:07'),(5538,204,2,9906,'4.99','2005-07-31 14:38:12','2006-02-15 22:14:07'),(5539,204,2,10042,'2.99','2005-07-31 19:01:25','2006-02-15 22:14:07'),(5540,204,2,10399,'5.99','2005-08-01 07:13:39','2006-02-15 22:14:07'),(5541,204,1,11261,'7.99','2005-08-02 13:54:26','2006-02-15 22:14:07'),(5542,204,2,11886,'0.99','2005-08-17 14:58:51','2006-02-15 22:14:07'),(5543,204,1,12737,'6.99','2005-08-18 22:11:37','2006-02-15 22:14:07'),(5544,204,1,13084,'0.99','2005-08-19 10:27:25','2006-02-15 22:14:07'),(5545,204,1,13416,'4.99','2005-08-19 22:48:48','2006-02-15 22:14:07'),(5546,204,2,13899,'2.99','2005-08-20 16:05:11','2006-02-15 22:14:07'),(5547,204,2,14163,'4.99','2005-08-21 02:56:52','2006-02-15 22:14:07'),(5548,204,1,14871,'0.99','2005-08-22 03:23:24','2006-02-15 22:14:07'),(5549,204,1,15364,'4.99','2005-08-22 21:41:41','2006-02-15 22:14:07'),(5550,204,2,15415,'11.99','2005-08-22 23:48:56','2006-02-15 22:14:07'),(5551,205,1,1238,'2.99','2005-06-15 04:49:08','2006-02-15 22:14:07'),(5552,205,1,1357,'4.99','2005-06-15 13:26:23','2006-02-15 22:14:07'),(5553,205,1,1767,'0.99','2005-06-16 18:01:36','2006-02-15 22:14:07'),(5554,205,2,2237,'5.99','2005-06-18 04:17:44','2006-02-15 22:14:07'),(5555,205,1,3601,'7.99','2005-07-06 05:20:25','2006-02-15 22:14:07'),(5556,205,2,4230,'3.99','2005-07-07 12:46:47','2006-02-15 22:14:07'),(5557,205,2,4377,'7.99','2005-07-07 20:28:57','2006-02-15 22:14:07'),(5558,205,1,4729,'4.99','2005-07-08 12:59:40','2006-02-15 22:14:07'),(5559,205,1,7736,'2.99','2005-07-28 05:12:04','2006-02-15 22:14:08'),(5560,205,2,7976,'7.99','2005-07-28 14:13:24','2006-02-15 22:14:08'),(5561,205,2,8896,'4.99','2005-07-30 00:51:21','2006-02-15 22:14:08'),(5562,205,2,10086,'4.99','2005-07-31 20:14:08','2006-02-15 22:14:08'),(5563,205,1,13935,'2.99','2005-08-20 17:20:49','2006-02-15 22:14:08'),(5564,205,1,14338,'0.99','2005-08-21 08:36:03','2006-02-15 22:14:08'),(5565,205,2,14391,'4.99','2005-08-21 10:16:27','2006-02-15 22:14:08'),(5566,205,1,14442,'2.99','2005-08-21 12:00:21','2006-02-15 22:14:08'),(5567,205,2,14490,'6.99','2005-08-21 13:54:15','2006-02-15 22:14:08'),(5568,205,2,15418,'0.99','2005-08-22 23:54:14','2006-02-15 22:14:08'),(5569,206,2,1872,'0.99','2005-06-17 02:27:03','2006-02-15 22:14:08'),(5570,206,2,2477,'5.99','2005-06-18 20:58:46','2006-02-15 22:14:08'),(5571,206,2,3012,'4.99','2005-06-20 10:43:13','2006-02-15 22:14:08'),(5572,206,1,3533,'5.99','2005-07-06 01:26:44','2006-02-15 22:14:08'),(5573,206,2,3831,'0.99','2005-07-06 16:06:35','2006-02-15 22:14:08'),(5574,206,1,3847,'4.99','2005-07-06 16:44:41','2006-02-15 22:14:08'),(5575,206,2,4068,'4.99','2005-07-07 04:34:38','2006-02-15 22:14:08'),(5576,206,2,4107,'4.99','2005-07-07 06:36:32','2006-02-15 22:14:08'),(5577,206,2,4823,'4.99','2005-07-08 17:28:54','2006-02-15 22:14:08'),(5578,206,1,6139,'3.99','2005-07-11 08:39:33','2006-02-15 22:14:08'),(5579,206,1,6420,'6.99','2005-07-11 23:38:49','2006-02-15 22:14:08'),(5580,206,1,7222,'4.99','2005-07-27 09:38:43','2006-02-15 22:14:08'),(5581,206,2,7541,'4.99','2005-07-27 21:40:05','2006-02-15 22:14:08'),(5582,206,1,8217,'5.99','2005-07-28 23:44:13','2006-02-15 22:14:08'),(5583,206,1,8549,'3.99','2005-07-29 11:12:13','2006-02-15 22:14:08'),(5584,206,2,9474,'2.99','2005-07-30 23:05:44','2006-02-15 22:14:08'),(5585,206,2,10930,'3.99','2005-08-02 02:38:07','2006-02-15 22:14:08'),(5586,206,1,11022,'2.99','2005-08-02 05:35:03','2006-02-15 22:14:08'),(5587,206,2,11634,'2.99','2005-08-17 04:31:49','2006-02-15 22:14:08'),(5588,206,1,13128,'4.99','2005-08-19 12:04:16','2006-02-15 22:14:08'),(5589,206,2,13232,'2.99','2005-08-19 16:13:32','2006-02-15 22:14:08'),(5590,206,2,13263,'10.99','2005-08-19 17:26:55','2006-02-15 22:14:08'),(5591,206,2,13550,'9.99','2005-08-20 03:58:51','2006-02-15 22:14:08'),(5592,206,2,13696,'0.99','2005-08-20 09:16:15','2006-02-15 22:14:08'),(5593,206,2,14695,'0.99','2005-08-21 20:46:47','2006-02-15 22:14:08'),(5594,206,2,15686,'7.99','2005-08-23 09:42:21','2006-02-15 22:14:09'),(5595,206,1,15709,'4.99','2005-08-23 10:36:00','2006-02-15 22:14:09'),(5596,207,1,39,'0.99','2005-05-25 04:51:46','2006-02-15 22:14:09'),(5597,207,1,44,'0.99','2005-05-25 05:53:23','2006-02-15 22:14:09'),(5598,207,1,659,'0.99','2005-05-28 20:27:53','2006-02-15 22:14:09'),(5599,207,2,826,'6.99','2005-05-29 21:56:15','2006-02-15 22:14:09'),(5600,207,2,896,'3.99','2005-05-30 09:03:52','2006-02-15 22:14:09'),(5601,207,2,1144,'3.99','2005-05-31 20:04:10','2006-02-15 22:14:09'),(5602,207,2,1945,'3.99','2005-06-17 07:51:26','2006-02-15 22:14:09'),(5603,207,2,3584,'2.99','2005-07-06 04:16:43','2006-02-15 22:14:09'),(5604,207,2,3687,'9.99','2005-07-06 09:38:33','2006-02-15 22:14:09'),(5605,207,1,4018,'2.99','2005-07-07 01:10:33','2006-02-15 22:14:09'),(5606,207,2,4713,'5.99','2005-07-08 12:12:33','2006-02-15 22:14:09'),(5607,207,1,4816,'0.99','2005-07-08 17:14:14','2006-02-15 22:14:09'),(5608,207,2,5007,'0.99','2005-07-09 01:26:22','2006-02-15 22:14:09'),(5609,207,1,5258,'0.99','2005-07-09 13:56:56','2006-02-15 22:14:09'),(5610,207,1,5259,'4.99','2005-07-09 14:02:50','2006-02-15 22:14:09'),(5611,207,2,5939,'0.99','2005-07-10 22:30:05','2006-02-15 22:14:09'),(5612,207,2,6465,'5.99','2005-07-12 01:17:11','2006-02-15 22:14:09'),(5613,207,1,6537,'0.99','2005-07-12 04:46:30','2006-02-15 22:14:09'),(5614,207,2,7306,'5.99','2005-07-27 12:57:26','2006-02-15 22:14:09'),(5615,207,1,7540,'5.99','2005-07-27 21:39:55','2006-02-15 22:14:09'),(5616,207,1,8800,'5.99','2005-07-29 21:18:59','2006-02-15 22:14:09'),(5617,207,2,9652,'2.99','2005-07-31 05:49:53','2006-02-15 22:14:09'),(5618,207,2,10234,'3.99','2005-08-01 01:56:20','2006-02-15 22:14:09'),(5619,207,2,10300,'0.99','2005-08-01 04:08:11','2006-02-15 22:14:09'),(5620,207,1,11112,'2.99','2005-08-02 08:25:14','2006-02-15 22:14:09'),(5621,207,2,11260,'0.99','2005-08-02 13:52:19','2006-02-15 22:14:09'),(5622,207,2,11286,'5.99','2005-08-02 14:44:22','2006-02-15 22:14:09'),(5623,207,1,11724,'6.99','2005-08-17 08:04:44','2006-02-15 22:14:09'),(5624,207,2,12108,'6.99','2005-08-17 22:56:39','2006-02-15 22:14:09'),(5625,207,2,13655,'2.99','2005-08-20 07:59:13','2006-02-15 22:14:09'),(5626,207,2,13809,'8.99','2005-08-20 12:56:03','2006-02-15 22:14:09'),(5627,207,2,13912,'9.99','2005-08-20 16:32:10','2006-02-15 22:14:09'),(5628,207,2,13954,'3.99','2005-08-20 18:02:41','2006-02-15 22:14:09'),(5629,207,1,15625,'1.99','2005-08-23 07:25:29','2006-02-15 22:14:10'),(5630,208,1,100,'4.99','2005-05-25 16:50:28','2006-02-15 22:14:10'),(5631,208,1,1805,'0.99','2005-06-16 20:36:00','2006-02-15 22:14:10'),(5632,208,1,1949,'5.99','2005-06-17 08:19:22','2006-02-15 22:14:10'),(5633,208,2,2592,'0.99','2005-06-19 05:36:54','2006-02-15 22:14:10'),(5634,208,1,2695,'2.99','2005-06-19 13:25:53','2006-02-15 22:14:10'),(5635,208,2,2907,'0.99','2005-06-20 03:15:09','2006-02-15 22:14:10'),(5636,208,2,3811,'2.99','2005-07-06 15:20:37','2006-02-15 22:14:10'),(5637,208,1,4354,'5.99','2005-07-07 19:21:02','2006-02-15 22:14:10'),(5638,208,2,4985,'4.99','2005-07-09 00:36:02','2006-02-15 22:14:10'),(5639,208,1,5117,'2.99','2005-07-09 07:11:22','2006-02-15 22:14:10'),(5640,208,2,5693,'2.99','2005-07-10 09:35:43','2006-02-15 22:14:10'),(5641,208,2,6306,'6.99','2005-07-11 18:04:26','2006-02-15 22:14:10'),(5642,208,1,6767,'1.99','2005-07-12 15:46:55','2006-02-15 22:14:10'),(5643,208,1,7315,'0.99','2005-07-27 13:14:56','2006-02-15 22:14:10'),(5644,208,1,7861,'2.99','2005-07-28 10:02:01','2006-02-15 22:14:10'),(5645,208,2,7984,'2.99','2005-07-28 14:27:51','2006-02-15 22:14:10'),(5646,208,1,8742,'1.99','2005-07-29 18:56:12','2006-02-15 22:14:10'),(5647,208,2,9298,'3.99','2005-07-30 16:27:53','2006-02-15 22:14:10'),(5648,208,1,9838,'4.99','2005-07-31 12:18:49','2006-02-15 22:14:10'),(5649,208,2,10762,'4.99','2005-08-01 20:28:39','2006-02-15 22:14:10'),(5650,208,2,10784,'5.99','2005-08-01 21:24:28','2006-02-15 22:14:10'),(5651,208,2,11442,'2.99','2005-08-02 20:26:19','2006-02-15 22:14:10'),(5652,208,2,11805,'6.99','2005-08-17 11:48:47','2006-02-15 22:14:10'),(5653,208,2,11819,'0.99','2005-08-17 12:25:17','2006-02-15 22:14:10'),(5654,208,1,13719,'5.98','2006-02-14 15:16:03','2006-02-15 22:14:10'),(5655,208,1,15717,'0.00','2006-02-14 15:16:03','2006-02-15 22:14:10'),(5656,209,2,340,'9.99','2005-05-27 03:55:25','2006-02-15 22:14:10'),(5657,209,1,471,'0.99','2005-05-27 21:32:42','2006-02-15 22:14:10'),(5658,209,2,1143,'2.99','2005-05-31 19:53:03','2006-02-15 22:14:10'),(5659,209,2,1201,'4.99','2005-06-15 02:06:28','2006-02-15 22:14:10'),(5660,209,1,1657,'4.99','2005-06-16 10:06:49','2006-02-15 22:14:10'),(5661,209,1,2650,'4.99','2005-06-19 10:21:45','2006-02-15 22:14:10'),(5662,209,1,2796,'4.99','2005-06-19 19:00:37','2006-02-15 22:14:10'),(5663,209,2,3504,'2.99','2005-07-06 00:18:29','2006-02-15 22:14:10'),(5664,209,2,4071,'5.99','2005-07-07 04:37:26','2006-02-15 22:14:11'),(5665,209,1,4309,'5.99','2005-07-07 17:29:41','2006-02-15 22:14:11'),(5666,209,2,4810,'4.99','2005-07-08 17:04:06','2006-02-15 22:14:11'),(5667,209,1,4907,'4.99','2005-07-08 21:01:41','2006-02-15 22:14:11'),(5668,209,2,5170,'3.99','2005-07-09 09:24:19','2006-02-15 22:14:11'),(5669,209,2,5219,'5.99','2005-07-09 11:57:55','2006-02-15 22:14:11'),(5670,209,1,6210,'0.99','2005-07-11 12:36:43','2006-02-15 22:14:11'),(5671,209,1,7116,'6.99','2005-07-27 05:46:43','2006-02-15 22:14:11'),(5672,209,1,7269,'3.99','2005-07-27 11:23:47','2006-02-15 22:14:11'),(5673,209,1,7505,'4.99','2005-07-27 20:28:03','2006-02-15 22:14:11'),(5674,209,2,7752,'5.99','2005-07-28 06:01:00','2006-02-15 22:14:11'),(5675,209,1,8067,'4.99','2005-07-28 17:20:17','2006-02-15 22:14:11'),(5676,209,2,8759,'8.99','2005-07-29 19:22:37','2006-02-15 22:14:11'),(5677,209,2,8816,'2.99','2005-07-29 21:53:00','2006-02-15 22:14:11'),(5678,209,2,9054,'6.99','2005-07-30 07:11:44','2006-02-15 22:14:11'),(5679,209,1,9923,'0.99','2005-07-31 15:00:15','2006-02-15 22:14:11'),(5680,209,2,10554,'2.99','2005-08-01 12:56:19','2006-02-15 22:14:11'),(5681,209,1,10646,'4.99','2005-08-01 15:57:55','2006-02-15 22:14:11'),(5682,209,2,10811,'6.99','2005-08-01 22:41:15','2006-02-15 22:14:11'),(5683,209,1,12025,'0.99','2005-08-17 19:59:06','2006-02-15 22:14:11'),(5684,209,1,13796,'8.99','2005-08-20 12:32:32','2006-02-15 22:14:11'),(5685,209,2,14631,'6.99','2005-08-21 18:47:49','2006-02-15 22:14:11'),(5686,209,1,15254,'2.99','2005-08-22 18:13:07','2006-02-15 22:14:11'),(5687,209,2,15510,'9.99','2005-08-23 02:51:27','2006-02-15 22:14:11'),(5688,210,1,953,'2.99','2005-05-30 16:34:02','2006-02-15 22:14:11'),(5689,210,2,1177,'2.99','2005-06-15 00:33:04','2006-02-15 22:14:11'),(5690,210,2,2856,'0.99','2005-06-19 23:13:04','2006-02-15 22:14:11'),(5691,210,2,3563,'4.99','2005-07-06 02:57:01','2006-02-15 22:14:11'),(5692,210,2,3884,'4.99','2005-07-06 18:41:33','2006-02-15 22:14:11'),(5693,210,2,4270,'0.99','2005-07-07 14:38:41','2006-02-15 22:14:11'),(5694,210,1,4306,'2.99','2005-07-07 17:12:32','2006-02-15 22:14:11'),(5695,210,1,4334,'0.99','2005-07-07 18:32:04','2006-02-15 22:14:11'),(5696,210,2,4388,'7.99','2005-07-07 20:58:03','2006-02-15 22:14:11'),(5697,210,1,4620,'5.99','2005-07-08 08:01:44','2006-02-15 22:14:11'),(5698,210,1,4871,'6.99','2005-07-08 19:19:52','2006-02-15 22:14:12'),(5699,210,1,4893,'4.99','2005-07-08 20:19:55','2006-02-15 22:14:12'),(5700,210,1,4989,'3.99','2005-07-09 00:46:56','2006-02-15 22:14:12'),(5701,210,2,5957,'0.99','2005-07-10 23:24:02','2006-02-15 22:14:12'),(5702,210,2,6227,'4.99','2005-07-11 13:56:46','2006-02-15 22:14:12'),(5703,210,1,6564,'1.99','2005-07-12 05:34:44','2006-02-15 22:14:12'),(5704,210,1,7743,'5.99','2005-07-28 05:36:13','2006-02-15 22:14:12'),(5705,210,2,7909,'0.99','2005-07-28 11:38:08','2006-02-15 22:14:12'),(5706,210,2,8336,'8.99','2005-07-29 04:20:42','2006-02-15 22:14:12'),(5707,210,2,8678,'3.99','2005-07-29 16:04:00','2006-02-15 22:14:12'),(5708,210,2,8738,'0.99','2005-07-29 18:32:47','2006-02-15 22:14:12'),(5709,210,2,10890,'4.99','2005-08-02 00:58:46','2006-02-15 22:14:12'),(5710,210,2,12410,'8.99','2005-08-18 09:45:33','2006-02-15 22:14:12'),(5711,210,1,12879,'4.99','2005-08-19 03:22:55','2006-02-15 22:14:12'),(5712,210,2,12909,'2.99','2005-08-19 04:20:25','2006-02-15 22:14:12'),(5713,210,2,12986,'4.99','2005-08-19 07:09:36','2006-02-15 22:14:12'),(5714,210,1,14181,'7.99','2005-08-21 03:16:30','2006-02-15 22:14:12'),(5715,210,2,14639,'6.99','2005-08-21 19:01:39','2006-02-15 22:14:12'),(5716,210,2,14876,'4.99','2005-08-22 03:39:29','2006-02-15 22:14:12'),(5717,210,2,15672,'0.99','2005-08-23 09:09:18','2006-02-15 22:14:12'),(5718,210,2,15942,'8.99','2005-08-23 18:48:40','2006-02-15 22:14:12'),(5719,211,1,238,'4.99','2005-05-26 12:30:22','2006-02-15 22:14:12'),(5720,211,2,2812,'8.99','2005-06-19 19:58:16','2006-02-15 22:14:12'),(5721,211,2,3437,'6.99','2005-06-21 19:20:17','2006-02-15 22:14:12'),(5722,211,2,3937,'8.99','2005-07-06 21:15:38','2006-02-15 22:14:12'),(5723,211,2,4060,'2.99','2005-07-07 04:10:13','2006-02-15 22:14:12'),(5724,211,2,4441,'5.99','2005-07-07 23:04:23','2006-02-15 22:14:12'),(5725,211,2,4479,'2.99','2005-07-08 00:52:35','2006-02-15 22:14:12'),(5726,211,1,4857,'2.99','2005-07-08 18:52:07','2006-02-15 22:14:12'),(5727,211,1,5668,'5.99','2005-07-10 08:11:05','2006-02-15 22:14:12'),(5728,211,2,5699,'3.99','2005-07-10 09:48:04','2006-02-15 22:14:12'),(5729,211,2,5785,'4.99','2005-07-10 14:06:03','2006-02-15 22:14:12'),(5730,211,2,6438,'0.99','2005-07-12 00:23:01','2006-02-15 22:14:12'),(5731,211,1,6628,'4.99','2005-07-12 09:18:08','2006-02-15 22:14:13'),(5732,211,1,6722,'1.99','2005-07-12 13:44:03','2006-02-15 22:14:13'),(5733,211,2,7484,'0.99','2005-07-27 19:28:17','2006-02-15 22:14:13'),(5734,211,1,7975,'2.99','2005-07-28 14:12:47','2006-02-15 22:14:13'),(5735,211,2,8961,'6.99','2005-07-30 03:43:35','2006-02-15 22:14:13'),(5736,211,1,9111,'3.99','2005-07-30 09:05:44','2006-02-15 22:14:13'),(5737,211,1,9953,'0.99','2005-07-31 15:56:35','2006-02-15 22:14:13'),(5738,211,1,10445,'2.99','2005-08-01 09:02:15','2006-02-15 22:14:13'),(5739,211,2,10928,'4.99','2005-08-02 02:34:12','2006-02-15 22:14:13'),(5740,211,2,11076,'8.99','2005-08-02 07:24:47','2006-02-15 22:14:13'),(5741,211,2,11963,'3.99','2005-08-17 17:35:47','2006-02-15 22:14:13'),(5742,211,2,12311,'0.99','2005-08-18 06:07:00','2006-02-15 22:14:13'),(5743,211,2,12565,'4.99','2005-08-18 15:12:17','2006-02-15 22:14:13'),(5744,211,2,12570,'5.99','2005-08-18 15:23:31','2006-02-15 22:14:13'),(5745,211,2,13942,'2.99','2005-08-20 17:30:52','2006-02-15 22:14:13'),(5746,211,1,13979,'2.99','2005-08-20 19:03:49','2006-02-15 22:14:13'),(5747,211,2,14782,'0.99','2005-08-22 00:17:20','2006-02-15 22:14:13'),(5748,211,2,14812,'1.99','2005-08-22 01:10:32','2006-02-15 22:14:13'),(5749,211,1,15404,'7.99','2005-08-22 23:19:44','2006-02-15 22:14:13'),(5750,211,2,15538,'6.99','2005-08-23 04:07:37','2006-02-15 22:14:13'),(5751,211,2,15670,'5.99','2005-08-23 09:07:11','2006-02-15 22:14:13'),(5752,211,2,12746,'4.99','2006-02-14 15:16:03','2006-02-15 22:14:13'),(5753,212,1,1356,'0.99','2005-06-15 13:17:01','2006-02-15 22:14:13'),(5754,212,2,1379,'0.99','2005-06-15 15:05:10','2006-02-15 22:14:13'),(5755,212,1,1637,'2.99','2005-06-16 08:29:58','2006-02-15 22:14:13'),(5756,212,2,2739,'9.99','2005-06-19 15:58:38','2006-02-15 22:14:13'),(5757,212,2,4708,'10.99','2005-07-08 11:59:19','2006-02-15 22:14:13'),(5758,212,2,4798,'3.99','2005-07-08 16:45:16','2006-02-15 22:14:13'),(5759,212,2,4916,'6.99','2005-07-08 21:32:17','2006-02-15 22:14:13'),(5760,212,1,5115,'6.99','2005-07-09 07:07:18','2006-02-15 22:14:13'),(5761,212,2,7828,'2.99','2005-07-28 08:40:46','2006-02-15 22:14:13'),(5762,212,2,8000,'4.99','2005-07-28 15:10:25','2006-02-15 22:14:13'),(5763,212,1,8940,'3.99','2005-07-30 02:57:26','2006-02-15 22:14:13'),(5764,212,2,10273,'4.99','2005-08-01 03:14:47','2006-02-15 22:14:13'),(5765,212,2,10567,'0.99','2005-08-01 13:16:01','2006-02-15 22:14:14'),(5766,212,1,12156,'7.99','2005-08-18 00:27:33','2006-02-15 22:14:14'),(5767,212,2,12467,'0.99','2005-08-18 11:40:09','2006-02-15 22:14:14'),(5768,212,2,12562,'3.99','2005-08-18 15:00:03','2006-02-15 22:14:14'),(5769,212,1,14563,'2.99','2005-08-21 16:23:53','2006-02-15 22:14:14'),(5770,212,2,14681,'5.99','2005-08-21 20:25:13','2006-02-15 22:14:14'),(5771,212,1,15872,'4.99','2005-08-23 16:27:24','2006-02-15 22:14:14'),(5772,212,2,15920,'2.99','2005-08-23 18:05:10','2006-02-15 22:14:14'),(5773,213,2,385,'0.99','2005-05-27 10:23:25','2006-02-15 22:14:14'),(5774,213,1,1489,'0.99','2005-06-15 21:41:38','2006-02-15 22:14:14'),(5775,213,2,1936,'4.99','2005-06-17 07:15:41','2006-02-15 22:14:14'),(5776,213,1,2322,'5.99','2005-06-18 09:44:21','2006-02-15 22:14:14'),(5777,213,1,2509,'0.99','2005-06-18 23:44:08','2006-02-15 22:14:14'),(5778,213,2,2569,'6.99','2005-06-19 04:19:04','2006-02-15 22:14:14'),(5779,213,1,2889,'4.99','2005-06-20 01:54:08','2006-02-15 22:14:14'),(5780,213,2,2946,'4.99','2005-06-20 05:50:40','2006-02-15 22:14:14'),(5781,213,1,3252,'2.99','2005-06-21 03:25:26','2006-02-15 22:14:14'),(5782,213,1,3313,'2.99','2005-06-21 08:11:18','2006-02-15 22:14:14'),(5783,213,2,3989,'4.99','2005-07-06 23:30:54','2006-02-15 22:14:14'),(5784,213,2,4236,'4.99','2005-07-07 13:12:07','2006-02-15 22:14:14'),(5785,213,1,4655,'8.99','2005-07-08 09:49:22','2006-02-15 22:14:14'),(5786,213,2,5159,'4.99','2005-07-09 08:55:52','2006-02-15 22:14:14'),(5787,213,1,5431,'0.99','2005-07-09 21:21:11','2006-02-15 22:14:14'),(5788,213,2,6725,'2.99','2005-07-12 13:47:17','2006-02-15 22:14:14'),(5789,213,2,7528,'0.99','2005-07-27 21:15:25','2006-02-15 22:14:14'),(5790,213,2,8444,'2.99','2005-07-29 07:36:13','2006-02-15 22:14:14'),(5791,213,2,8542,'4.99','2005-07-29 11:01:50','2006-02-15 22:14:14'),(5792,213,2,9150,'6.99','2005-07-30 10:49:32','2006-02-15 22:14:14'),(5793,213,2,9340,'2.99','2005-07-30 18:07:16','2006-02-15 22:14:14'),(5794,213,1,9477,'4.99','2005-07-30 23:07:22','2006-02-15 22:14:14'),(5795,213,1,10449,'2.99','2005-08-01 09:09:59','2006-02-15 22:14:14'),(5796,213,2,11778,'3.99','2005-08-17 10:31:40','2006-02-15 22:14:14'),(5797,213,1,13354,'4.99','2005-08-19 20:55:23','2006-02-15 22:14:14'),(5798,213,2,13426,'0.99','2005-08-19 23:15:00','2006-02-15 22:14:14'),(5799,213,1,14744,'6.99','2005-08-21 22:45:21','2006-02-15 22:14:15'),(5800,213,2,14374,'2.99','2006-02-14 15:16:03','2006-02-15 22:14:15'),(5801,214,1,242,'1.99','2005-05-26 13:05:08','2006-02-15 22:14:15'),(5802,214,1,278,'3.99','2005-05-26 17:40:58','2006-02-15 22:14:15'),(5803,214,1,1076,'2.99','2005-05-31 10:14:31','2006-02-15 22:14:15'),(5804,214,2,1093,'2.99','2005-05-31 12:32:26','2006-02-15 22:14:15'),(5805,214,2,1112,'0.99','2005-05-31 15:51:39','2006-02-15 22:14:15'),(5806,214,2,1275,'4.99','2005-06-15 07:55:43','2006-02-15 22:14:15'),(5807,214,2,2085,'2.99','2005-06-17 17:30:56','2006-02-15 22:14:15'),(5808,214,2,2868,'2.99','2005-06-20 00:08:58','2006-02-15 22:14:15'),(5809,214,2,4211,'0.99','2005-07-07 11:50:41','2006-02-15 22:14:15'),(5810,214,1,4783,'3.99','2005-07-08 16:09:24','2006-02-15 22:14:15'),(5811,214,2,4984,'3.99','2005-07-09 00:35:31','2006-02-15 22:14:15'),(5812,214,2,5172,'2.99','2005-07-09 09:31:27','2006-02-15 22:14:15'),(5813,214,1,6602,'7.99','2005-07-12 07:50:24','2006-02-15 22:14:15'),(5814,214,2,7417,'4.99','2005-07-27 16:58:33','2006-02-15 22:14:15'),(5815,214,2,7826,'5.99','2005-07-28 08:35:51','2006-02-15 22:14:15'),(5816,214,1,8663,'4.99','2005-07-29 15:33:18','2006-02-15 22:14:15'),(5817,214,1,10563,'3.99','2005-08-01 13:06:03','2006-02-15 22:14:15'),(5818,214,2,10749,'4.99','2005-08-01 20:02:01','2006-02-15 22:14:15'),(5819,214,2,11450,'2.99','2005-08-02 20:45:54','2006-02-15 22:14:15'),(5820,214,2,11474,'4.99','2005-08-02 21:53:08','2006-02-15 22:14:15'),(5821,214,2,12463,'4.99','2005-08-18 11:31:34','2006-02-15 22:14:15'),(5822,214,2,13138,'2.99','2005-08-19 12:30:01','2006-02-15 22:14:15'),(5823,214,2,13350,'9.99','2005-08-19 20:44:00','2006-02-15 22:14:15'),(5824,214,1,13409,'2.99','2005-08-19 22:36:26','2006-02-15 22:14:15'),(5825,214,1,13565,'0.99','2005-08-20 04:38:52','2006-02-15 22:14:15'),(5826,214,1,13726,'0.99','2005-08-20 10:08:40','2006-02-15 22:14:15'),(5827,214,1,13864,'4.99','2005-08-20 14:59:55','2006-02-15 22:14:15'),(5828,214,2,14347,'4.99','2005-08-21 08:42:31','2006-02-15 22:14:15'),(5829,214,1,14567,'0.99','2005-08-21 16:27:25','2006-02-15 22:14:15'),(5830,214,2,15639,'2.99','2005-08-23 08:03:25','2006-02-15 22:14:15'),(5831,214,2,15645,'2.99','2006-02-14 15:16:03','2006-02-15 22:14:15'),(5832,215,1,711,'4.99','2005-05-29 03:49:03','2006-02-15 22:14:16'),(5833,215,2,1080,'4.99','2005-05-31 10:55:26','2006-02-15 22:14:16'),(5834,215,2,1376,'4.99','2005-06-15 14:59:06','2006-02-15 22:14:16'),(5835,215,2,1599,'4.99','2005-06-16 06:03:33','2006-02-15 22:14:16'),(5836,215,2,1845,'4.99','2005-06-16 23:56:11','2006-02-15 22:14:16'),(5837,215,2,2006,'2.99','2005-06-17 11:47:03','2006-02-15 22:14:16'),(5838,215,2,2918,'2.99','2005-06-20 04:09:04','2006-02-15 22:14:16'),(5839,215,1,3143,'2.99','2005-06-20 20:01:52','2006-02-15 22:14:16'),(5840,215,2,4940,'8.99','2005-07-08 22:36:06','2006-02-15 22:14:16'),(5841,215,1,5886,'2.99','2005-07-10 19:36:25','2006-02-15 22:14:16'),(5842,215,2,5967,'8.99','2005-07-11 00:02:19','2006-02-15 22:14:16'),(5843,215,1,7180,'1.99','2005-07-27 08:14:34','2006-02-15 22:14:16'),(5844,215,2,9046,'2.99','2005-07-30 06:46:55','2006-02-15 22:14:16'),(5845,215,1,9518,'0.99','2005-07-31 00:43:26','2006-02-15 22:14:16'),(5846,215,2,9611,'4.99','2005-07-31 03:54:43','2006-02-15 22:14:16'),(5847,215,1,11729,'2.99','2005-08-17 08:14:41','2006-02-15 22:14:16'),(5848,215,2,12285,'2.99','2005-08-18 04:56:43','2006-02-15 22:14:16'),(5849,215,1,12380,'1.99','2005-08-18 08:27:28','2006-02-15 22:14:16'),(5850,215,2,13085,'0.99','2005-08-19 10:28:22','2006-02-15 22:14:16'),(5851,215,2,14126,'0.99','2005-08-21 01:32:17','2006-02-15 22:14:16'),(5852,215,2,14817,'4.99','2005-08-22 01:17:16','2006-02-15 22:14:16'),(5853,215,1,15583,'2.99','2005-08-23 05:47:55','2006-02-15 22:14:16'),(5854,215,2,15610,'2.99','2005-08-23 06:56:15','2006-02-15 22:14:16'),(5855,215,2,15799,'2.99','2005-08-23 14:23:23','2006-02-15 22:14:16'),(5856,215,1,15843,'0.99','2005-08-23 15:37:31','2006-02-15 22:14:16'),(5857,215,2,15862,'0.99','2006-02-14 15:16:03','2006-02-15 22:14:16'),(5858,216,1,997,'4.99','2005-05-31 00:08:25','2006-02-15 22:14:16'),(5859,216,2,1461,'6.99','2005-06-15 20:32:08','2006-02-15 22:14:16'),(5860,216,1,1664,'0.99','2005-06-16 10:15:20','2006-02-15 22:14:16'),(5861,216,1,1672,'3.99','2005-06-16 10:37:34','2006-02-15 22:14:16'),(5862,216,2,2351,'0.99','2005-06-18 12:27:57','2006-02-15 22:14:16'),(5863,216,1,3432,'2.99','2005-06-21 19:02:03','2006-02-15 22:14:16'),(5864,216,2,4161,'2.99','2005-07-07 09:15:11','2006-02-15 22:14:16'),(5865,216,1,6008,'6.99','2005-07-11 01:51:29','2006-02-15 22:14:16'),(5866,216,2,6349,'7.99','2005-07-11 20:25:05','2006-02-15 22:14:17'),(5867,216,1,8068,'4.99','2005-07-28 17:22:28','2006-02-15 22:14:17'),(5868,216,2,8859,'8.99','2005-07-29 23:44:43','2006-02-15 22:14:17'),(5869,216,1,9096,'0.99','2005-07-30 08:39:23','2006-02-15 22:14:17'),(5870,216,1,10506,'4.99','2005-08-01 11:16:05','2006-02-15 22:14:17'),(5871,216,1,11005,'0.99','2005-08-02 05:05:23','2006-02-15 22:14:17'),(5872,216,2,11621,'7.99','2005-08-17 04:13:45','2006-02-15 22:14:17'),(5873,216,2,13424,'0.99','2005-08-19 23:10:09','2006-02-15 22:14:17'),(5874,216,2,14638,'2.99','2005-08-21 19:01:36','2006-02-15 22:14:17'),(5875,216,2,14726,'4.99','2005-08-21 22:08:52','2006-02-15 22:14:17'),(5876,216,1,15192,'4.99','2005-08-22 16:06:23','2006-02-15 22:14:17'),(5877,216,2,15199,'2.99','2005-08-22 16:17:49','2006-02-15 22:14:17'),(5878,216,2,15934,'4.99','2005-08-23 18:40:41','2006-02-15 22:14:17'),(5879,216,1,12970,'5.98','2006-02-14 15:16:03','2006-02-15 22:14:17'),(5880,216,1,11676,'0.00','2006-02-14 15:16:03','2006-02-15 22:14:17'),(5881,217,2,828,'2.99','2005-05-29 22:14:55','2006-02-15 22:14:17'),(5882,217,2,1141,'8.99','2005-05-31 19:42:02','2006-02-15 22:14:17'),(5883,217,1,1322,'2.99','2005-06-15 10:55:09','2006-02-15 22:14:17'),(5884,217,1,2076,'6.99','2005-06-17 16:43:47','2006-02-15 22:14:17'),(5885,217,1,2842,'4.99','2005-06-19 22:34:20','2006-02-15 22:14:17'),(5886,217,2,5576,'2.99','2005-07-10 03:57:05','2006-02-15 22:14:17'),(5887,217,2,5762,'3.99','2005-07-10 12:48:01','2006-02-15 22:14:17'),(5888,217,2,6570,'4.99','2005-07-12 05:50:31','2006-02-15 22:14:17'),(5889,217,2,7104,'2.99','2005-07-27 05:15:25','2006-02-15 22:14:17'),(5890,217,2,8332,'4.99','2005-07-29 04:16:00','2006-02-15 22:14:17'),(5891,217,1,9159,'0.99','2005-07-30 11:16:37','2006-02-15 22:14:17'),(5892,217,2,9317,'2.99','2005-07-30 17:13:37','2006-02-15 22:14:17'),(5893,217,2,9632,'6.99','2005-07-31 05:02:23','2006-02-15 22:14:17'),(5894,217,2,9745,'2.99','2005-07-31 09:16:14','2006-02-15 22:14:17'),(5895,217,1,10581,'5.99','2005-08-01 13:52:30','2006-02-15 22:14:17'),(5896,217,1,10836,'6.99','2005-08-01 23:29:58','2006-02-15 22:14:17'),(5897,217,1,11347,'2.99','2005-08-02 17:18:07','2006-02-15 22:14:17'),(5898,217,1,11649,'2.99','2005-08-17 04:59:26','2006-02-15 22:14:17'),(5899,217,1,11958,'4.99','2005-08-17 17:23:20','2006-02-15 22:14:17'),(5900,217,2,12210,'4.99','2005-08-18 02:27:29','2006-02-15 22:14:18'),(5901,217,1,12871,'4.99','2005-08-19 02:55:36','2006-02-15 22:14:18'),(5902,217,2,15116,'0.99','2005-08-22 12:35:40','2006-02-15 22:14:18'),(5903,217,2,15277,'2.99','2005-08-22 19:02:48','2006-02-15 22:14:18'),(5904,218,1,1459,'2.99','2005-06-15 20:25:53','2006-02-15 22:14:18'),(5905,218,1,2262,'0.99','2005-06-18 05:49:46','2006-02-15 22:14:18'),(5906,218,1,2267,'0.99','2005-06-18 06:10:23','2006-02-15 22:14:18'),(5907,218,1,4898,'6.99','2005-07-08 20:31:43','2006-02-15 22:14:18'),(5908,218,1,5226,'0.99','2005-07-09 12:10:44','2006-02-15 22:14:18'),(5909,218,2,5737,'0.99','2005-07-10 11:50:04','2006-02-15 22:14:18'),(5910,218,2,7090,'4.99','2005-07-27 04:43:53','2006-02-15 22:14:18'),(5911,218,1,7236,'8.99','2005-07-27 10:09:39','2006-02-15 22:14:18'),(5912,218,2,9018,'6.99','2005-07-30 05:28:40','2006-02-15 22:14:18'),(5913,218,2,9902,'6.99','2005-07-31 14:24:33','2006-02-15 22:14:18'),(5914,218,1,10114,'0.99','2005-07-31 21:12:58','2006-02-15 22:14:18'),(5915,218,1,11654,'2.99','2005-08-17 05:06:19','2006-02-15 22:14:18'),(5916,218,2,12481,'2.99','2005-08-18 12:31:34','2006-02-15 22:14:18'),(5917,218,1,12974,'0.99','2005-08-19 06:51:02','2006-02-15 22:14:18'),(5918,218,2,13708,'5.99','2005-08-20 09:34:07','2006-02-15 22:14:18'),(5919,218,2,13947,'5.99','2005-08-20 17:46:06','2006-02-15 22:14:18'),(5920,218,2,14848,'4.99','2005-08-22 02:14:19','2006-02-15 22:14:18'),(5921,218,2,15575,'0.99','2005-08-23 05:30:19','2006-02-15 22:14:18'),(5922,219,1,414,'0.99','2005-05-27 14:48:20','2006-02-15 22:14:18'),(5923,219,2,2417,'3.99','2005-06-18 17:12:01','2006-02-15 22:14:18'),(5924,219,2,2580,'0.99','2005-06-19 04:44:30','2006-02-15 22:14:18'),(5925,219,2,4678,'0.99','2005-07-08 10:30:40','2006-02-15 22:14:18'),(5926,219,2,4910,'7.99','2005-07-08 21:13:56','2006-02-15 22:14:18'),(5927,219,2,5123,'0.99','2005-07-09 07:20:30','2006-02-15 22:14:18'),(5928,219,2,5416,'4.99','2005-07-09 20:33:50','2006-02-15 22:14:18'),(5929,219,2,5475,'4.99','2005-07-09 23:31:38','2006-02-15 22:14:18'),(5930,219,2,5739,'7.99','2005-07-10 11:51:50','2006-02-15 22:14:18'),(5931,219,2,6172,'4.99','2005-07-11 10:32:09','2006-02-15 22:14:18'),(5932,219,1,6209,'2.99','2005-07-11 12:36:05','2006-02-15 22:14:18'),(5933,219,2,6501,'1.99','2005-07-12 03:11:55','2006-02-15 22:14:19'),(5934,219,2,7335,'2.99','2005-07-27 14:06:50','2006-02-15 22:14:19'),(5935,219,1,7726,'5.99','2005-07-28 04:52:19','2006-02-15 22:14:19'),(5936,219,1,8430,'0.99','2005-07-29 07:12:17','2006-02-15 22:14:19'),(5937,219,2,8536,'4.99','2005-07-29 10:37:23','2006-02-15 22:14:19'),(5938,219,1,8652,'6.99','2005-07-29 15:02:54','2006-02-15 22:14:19'),(5939,219,1,9712,'4.99','2005-07-31 08:13:11','2006-02-15 22:14:19'),(5940,219,1,11328,'2.99','2005-08-02 16:42:38','2006-02-15 22:14:19'),(5941,219,2,11791,'0.99','2005-08-17 11:01:11','2006-02-15 22:14:19'),(5942,219,1,13765,'4.99','2005-08-20 11:39:00','2006-02-15 22:14:19'),(5943,219,2,14029,'0.99','2005-08-20 21:23:11','2006-02-15 22:14:19'),(5944,219,1,14588,'5.99','2005-08-21 17:25:53','2006-02-15 22:14:19'),(5945,219,1,14688,'4.99','2005-08-21 20:32:37','2006-02-15 22:14:19'),(5946,219,1,15283,'4.99','2005-08-22 19:16:04','2006-02-15 22:14:19'),(5947,219,1,11577,'4.99','2006-02-14 15:16:03','2006-02-15 22:14:19'),(5948,220,2,409,'0.99','2005-05-27 14:10:58','2006-02-15 22:14:19'),(5949,220,1,480,'3.99','2005-05-27 22:47:39','2006-02-15 22:14:19'),(5950,220,1,1832,'0.99','2005-06-16 22:35:20','2006-02-15 22:14:19'),(5951,220,2,4918,'2.99','2005-07-08 21:37:31','2006-02-15 22:14:19'),(5952,220,2,5613,'2.99','2005-07-10 05:15:43','2006-02-15 22:14:19'),(5953,220,2,5847,'2.99','2005-07-10 17:27:42','2006-02-15 22:14:19'),(5954,220,2,5859,'0.99','2005-07-10 18:02:02','2006-02-15 22:14:19'),(5955,220,2,6412,'0.99','2005-07-11 23:19:21','2006-02-15 22:14:19'),(5956,220,2,6832,'8.99','2005-07-12 18:51:41','2006-02-15 22:14:19'),(5957,220,2,7750,'9.99','2005-07-28 05:55:30','2006-02-15 22:14:19'),(5958,220,1,8065,'2.99','2005-07-28 17:15:48','2006-02-15 22:14:19'),(5959,220,1,8398,'4.99','2005-07-29 06:12:40','2006-02-15 22:14:19'),(5960,220,2,9384,'7.99','2005-07-30 19:25:35','2006-02-15 22:14:19'),(5961,220,2,9455,'10.99','2005-07-30 22:20:29','2006-02-15 22:14:19'),(5962,220,1,10099,'2.99','2005-07-31 20:47:14','2006-02-15 22:14:19'),(5963,220,2,10778,'4.99','2005-08-01 21:11:39','2006-02-15 22:14:19'),(5964,220,1,10948,'4.99','2005-08-02 03:23:23','2006-02-15 22:14:19'),(5965,220,1,11037,'0.99','2005-08-02 05:58:12','2006-02-15 22:14:19'),(5966,220,1,11153,'3.99','2005-08-02 09:54:19','2006-02-15 22:14:20'),(5967,220,1,11622,'4.99','2005-08-17 04:15:46','2006-02-15 22:14:20'),(5968,220,2,11947,'2.99','2005-08-17 17:08:13','2006-02-15 22:14:20'),(5969,220,1,12407,'4.99','2005-08-18 09:39:26','2006-02-15 22:14:20'),(5970,220,1,12896,'4.99','2005-08-19 03:52:44','2006-02-15 22:14:20'),(5971,220,2,13123,'2.99','2005-08-19 11:55:13','2006-02-15 22:14:20'),(5972,220,1,13281,'2.99','2005-08-19 18:07:47','2006-02-15 22:14:20'),(5973,220,2,14016,'4.99','2005-08-20 20:52:03','2006-02-15 22:14:20'),(5974,220,2,15706,'4.99','2005-08-23 10:32:52','2006-02-15 22:14:20'),(5975,221,2,226,'4.99','2005-05-26 10:44:04','2006-02-15 22:14:20'),(5976,221,1,1369,'0.99','2005-06-15 14:29:14','2006-02-15 22:14:20'),(5977,221,1,2331,'2.99','2005-06-18 10:50:09','2006-02-15 22:14:20'),(5978,221,2,2473,'2.99','2005-06-18 20:42:45','2006-02-15 22:14:20'),(5979,221,1,2660,'10.99','2005-06-19 10:50:02','2006-02-15 22:14:20'),(5980,221,1,3200,'5.99','2005-06-21 00:22:47','2006-02-15 22:14:20'),(5981,221,1,4293,'4.99','2005-07-07 15:53:47','2006-02-15 22:14:20'),(5982,221,2,4649,'4.99','2005-07-08 09:32:05','2006-02-15 22:14:20'),(5983,221,1,4693,'6.99','2005-07-08 11:07:36','2006-02-15 22:14:20'),(5984,221,1,5058,'5.99','2005-07-09 04:20:35','2006-02-15 22:14:20'),(5985,221,2,5920,'5.99','2005-07-10 21:33:58','2006-02-15 22:14:20'),(5986,221,1,7101,'2.99','2005-07-27 05:06:34','2006-02-15 22:14:20'),(5987,221,1,7129,'0.99','2005-07-27 06:18:01','2006-02-15 22:14:20'),(5988,221,2,7531,'8.99','2005-07-27 21:19:34','2006-02-15 22:14:20'),(5989,221,2,8486,'0.99','2005-07-29 08:53:38','2006-02-15 22:14:20'),(5990,221,1,9320,'6.99','2005-07-30 17:16:39','2006-02-15 22:14:20'),(5991,221,1,9453,'7.99','2005-07-30 22:20:04','2006-02-15 22:14:20'),(5992,221,2,9853,'0.99','2005-07-31 12:58:20','2006-02-15 22:14:20'),(5993,221,2,11680,'4.99','2005-08-17 06:12:27','2006-02-15 22:14:20'),(5994,221,1,11693,'4.99','2005-08-17 06:56:56','2006-02-15 22:14:20'),(5995,221,1,11802,'2.99','2005-08-17 11:32:51','2006-02-15 22:14:20'),(5996,221,1,12324,'0.99','2005-08-18 06:38:20','2006-02-15 22:14:20'),(5997,221,2,12620,'3.99','2005-08-18 17:26:38','2006-02-15 22:14:20'),(5998,221,2,13434,'2.99','2005-08-19 23:34:26','2006-02-15 22:14:20'),(5999,221,2,14322,'5.99','2005-08-21 08:06:30','2006-02-15 22:14:21'),(6000,221,2,14371,'0.99','2005-08-21 09:37:16','2006-02-15 22:14:21'),(6001,221,1,14419,'7.99','2005-08-21 11:15:46','2006-02-15 22:14:21'),(6002,221,1,15125,'8.99','2005-08-22 12:53:22','2006-02-15 22:14:21'),(6003,222,1,5,'6.99','2005-05-24 23:05:21','2006-02-15 22:14:21'),(6004,222,1,134,'4.99','2005-05-25 21:48:41','2006-02-15 22:14:21'),(6005,222,2,416,'0.99','2005-05-27 15:02:10','2006-02-15 22:14:21'),(6006,222,2,809,'3.99','2005-05-29 19:10:20','2006-02-15 22:14:21'),(6007,222,2,1006,'2.99','2005-05-31 00:57:08','2006-02-15 22:14:21'),(6008,222,1,1368,'8.99','2005-06-15 14:27:47','2006-02-15 22:14:21'),(6009,222,2,2603,'6.99','2005-06-19 06:21:25','2006-02-15 22:14:21'),(6010,222,2,5209,'8.99','2005-07-09 11:22:39','2006-02-15 22:14:21'),(6011,222,1,5266,'3.99','2005-07-09 14:17:40','2006-02-15 22:14:21'),(6012,222,2,5592,'6.99','2005-07-10 04:26:13','2006-02-15 22:14:21'),(6013,222,2,5635,'5.99','2005-07-10 06:28:39','2006-02-15 22:14:21'),(6014,222,2,6129,'2.99','2005-07-11 08:15:09','2006-02-15 22:14:21'),(6015,222,1,6497,'0.99','2005-07-12 03:04:29','2006-02-15 22:14:21'),(6016,222,2,7786,'0.99','2005-07-28 07:18:26','2006-02-15 22:14:21'),(6017,222,1,8300,'1.99','2005-07-29 02:57:59','2006-02-15 22:14:21'),(6018,222,2,8597,'6.99','2005-07-29 12:55:55','2006-02-15 22:14:21'),(6019,222,1,8787,'4.99','2005-07-29 20:43:49','2006-02-15 22:14:21'),(6020,222,2,10043,'1.99','2005-07-31 19:02:07','2006-02-15 22:14:21'),(6021,222,2,12179,'2.99','2005-08-18 01:21:21','2006-02-15 22:14:21'),(6022,222,1,13477,'2.99','2005-08-20 01:07:00','2006-02-15 22:14:21'),(6023,222,2,14350,'2.99','2005-08-21 08:58:38','2006-02-15 22:14:21'),(6024,223,2,524,'2.99','2005-05-28 03:57:28','2006-02-15 22:14:21'),(6025,223,2,1839,'5.99','2005-06-16 23:22:22','2006-02-15 22:14:21'),(6026,223,1,2334,'4.99','2005-06-18 10:56:24','2006-02-15 22:14:21'),(6027,223,1,3513,'5.99','2005-07-06 00:45:57','2006-02-15 22:14:21'),(6028,223,1,3705,'0.99','2005-07-06 10:17:59','2006-02-15 22:14:21'),(6029,223,1,4874,'4.99','2005-07-08 19:23:38','2006-02-15 22:14:21'),(6030,223,2,5996,'2.99','2005-07-11 01:18:33','2006-02-15 22:14:21'),(6031,223,2,7085,'5.99','2005-07-27 04:35:44','2006-02-15 22:14:22'),(6032,223,2,8362,'3.99','2005-07-29 05:09:11','2006-02-15 22:14:22'),(6033,223,2,10053,'7.99','2005-07-31 19:15:39','2006-02-15 22:14:22'),(6034,223,2,11040,'4.99','2005-08-02 06:03:22','2006-02-15 22:14:22'),(6035,223,1,12927,'5.99','2005-08-19 05:02:46','2006-02-15 22:14:22'),(6036,223,1,13576,'0.99','2005-08-20 05:19:56','2006-02-15 22:14:22'),(6037,223,2,14496,'4.99','2005-08-21 14:07:35','2006-02-15 22:14:22'),(6038,223,1,15257,'7.99','2005-08-22 18:21:04','2006-02-15 22:14:22'),(6039,223,2,15546,'5.99','2005-08-23 04:20:38','2006-02-15 22:14:22'),(6040,223,1,15662,'2.99','2005-08-23 08:52:50','2006-02-15 22:14:22'),(6041,224,1,1424,'7.99','2005-06-15 18:08:14','2006-02-15 22:14:22'),(6042,224,1,2277,'2.99','2005-06-18 06:35:03','2006-02-15 22:14:22'),(6043,224,2,3282,'4.99','2005-06-21 06:18:42','2006-02-15 22:14:22'),(6044,224,1,4118,'2.99','2005-07-07 07:03:30','2006-02-15 22:14:22'),(6045,224,2,4411,'3.99','2005-07-07 21:54:58','2006-02-15 22:14:22'),(6046,224,1,4697,'2.99','2005-07-08 11:19:14','2006-02-15 22:14:22'),(6047,224,1,6031,'4.99','2005-07-11 02:42:14','2006-02-15 22:14:22'),(6048,224,2,6999,'2.99','2005-07-27 01:21:19','2006-02-15 22:14:22'),(6049,224,2,8255,'0.99','2005-07-29 01:02:30','2006-02-15 22:14:22'),(6050,224,2,8439,'2.99','2005-07-29 07:28:43','2006-02-15 22:14:23'),(6051,224,1,8605,'4.99','2005-07-29 13:13:34','2006-02-15 22:14:23'),(6052,224,1,9181,'0.99','2005-07-30 12:05:58','2006-02-15 22:14:23'),(6053,224,1,11816,'0.99','2005-08-17 12:14:16','2006-02-15 22:14:23'),(6054,224,1,12492,'4.99','2005-08-18 12:49:04','2006-02-15 22:14:23'),(6055,224,1,12969,'2.99','2005-08-19 06:38:59','2006-02-15 22:14:23'),(6056,224,2,13075,'4.99','2005-08-19 10:10:10','2006-02-15 22:14:23'),(6057,224,2,14099,'0.99','2005-08-21 00:31:03','2006-02-15 22:14:23'),(6058,224,2,14271,'5.99','2005-08-21 06:23:29','2006-02-15 22:14:23'),(6059,224,2,14468,'5.99','2005-08-21 13:07:10','2006-02-15 22:14:23'),(6060,224,2,14880,'2.99','2005-08-22 03:44:36','2006-02-15 22:14:23'),(6061,224,1,15225,'0.99','2005-08-22 17:18:32','2006-02-15 22:14:23'),(6062,224,1,15952,'1.99','2005-08-23 19:11:29','2006-02-15 22:14:23'),(6063,225,1,812,'4.99','2005-05-29 20:00:30','2006-02-15 22:14:23'),(6064,225,1,963,'3.99','2005-05-30 18:52:53','2006-02-15 22:14:23'),(6065,225,2,2226,'7.99','2005-06-18 03:39:56','2006-02-15 22:14:23'),(6066,225,2,3574,'4.99','2005-07-06 03:36:01','2006-02-15 22:14:23'),(6067,225,1,4345,'7.99','2005-07-07 18:52:57','2006-02-15 22:14:23'),(6068,225,1,4824,'7.99','2005-07-08 17:37:39','2006-02-15 22:14:23'),(6069,225,2,4955,'2.99','2005-07-08 23:16:21','2006-02-15 22:14:24'),(6070,225,1,5067,'4.99','2005-07-09 04:52:35','2006-02-15 22:14:24'),(6071,225,1,6159,'2.99','2005-07-11 09:55:34','2006-02-15 22:14:24'),(6072,225,1,6317,'2.99','2005-07-11 18:47:41','2006-02-15 22:14:24'),(6073,225,2,6350,'2.99','2005-07-11 20:30:15','2006-02-15 22:14:24'),(6074,225,1,6526,'3.99','2005-07-12 04:21:20','2006-02-15 22:14:24'),(6075,225,2,6532,'2.99','2005-07-12 04:38:32','2006-02-15 22:14:24'),(6076,225,2,7347,'4.99','2005-07-27 14:31:24','2006-02-15 22:14:24'),(6077,225,1,7524,'6.99','2005-07-27 21:11:44','2006-02-15 22:14:24'),(6078,225,1,8054,'7.99','2005-07-28 17:02:18','2006-02-15 22:14:25'),(6079,225,2,8110,'4.99','2005-07-28 19:07:45','2006-02-15 22:14:25'),(6080,225,1,9980,'4.99','2005-07-31 17:02:00','2006-02-15 22:14:25'),(6081,225,2,9993,'2.99','2005-07-31 17:30:20','2006-02-15 22:14:25'),(6082,225,2,10138,'2.99','2005-07-31 22:02:09','2006-02-15 22:14:25'),(6083,225,1,10793,'2.99','2005-08-01 21:48:03','2006-02-15 22:14:25'),(6084,225,2,11333,'1.99','2005-08-02 16:53:00','2006-02-15 22:14:25'),(6085,225,2,11384,'0.99','2005-08-02 18:23:01','2006-02-15 22:14:25'),(6086,225,2,11395,'5.99','2005-08-02 18:47:44','2006-02-15 22:14:25'),(6087,225,2,11437,'4.99','2005-08-02 20:20:06','2006-02-15 22:14:25'),(6088,225,2,14444,'5.99','2005-08-21 12:07:25','2006-02-15 22:14:25'),(6089,226,2,3414,'2.99','2005-06-21 16:58:50','2006-02-15 22:14:25'),(6090,226,1,3466,'4.99','2005-06-21 22:13:33','2006-02-15 22:14:25'),(6091,226,1,3721,'4.99','2005-07-06 11:10:09','2006-02-15 22:14:25'),(6092,226,1,4324,'4.99','2005-07-07 17:57:56','2006-02-15 22:14:25'),(6093,226,1,5282,'2.99','2005-07-09 15:01:23','2006-02-15 22:14:25'),(6094,226,1,5419,'2.99','2005-07-09 20:47:36','2006-02-15 22:14:25'),(6095,226,1,6712,'9.99','2005-07-12 13:24:47','2006-02-15 22:14:25'),(6096,226,2,7288,'5.99','2005-07-27 12:24:59','2006-02-15 22:14:25'),(6097,226,1,7329,'3.99','2005-07-27 13:55:34','2006-02-15 22:14:25'),(6098,226,2,8600,'2.99','2005-07-29 13:01:19','2006-02-15 22:14:25'),(6099,226,1,8627,'2.99','2005-07-29 14:05:12','2006-02-15 22:14:25'),(6100,226,1,12172,'1.99','2005-08-18 01:07:00','2006-02-15 22:14:25'),(6101,226,1,14491,'6.99','2005-08-21 13:55:39','2006-02-15 22:14:25'),(6102,226,1,14708,'4.99','2005-08-21 21:07:23','2006-02-15 22:14:26'),(6103,226,1,14712,'0.99','2005-08-21 21:22:56','2006-02-15 22:14:26'),(6104,226,2,14739,'0.99','2005-08-21 22:33:22','2006-02-15 22:14:26'),(6105,226,2,14934,'4.99','2005-08-22 05:47:15','2006-02-15 22:14:26'),(6106,226,2,15472,'2.99','2005-08-23 01:39:05','2006-02-15 22:14:26'),(6107,226,1,15901,'4.99','2005-08-23 17:19:17','2006-02-15 22:14:26'),(6108,226,1,15986,'2.99','2005-08-23 20:20:37','2006-02-15 22:14:26'),(6109,226,1,16033,'5.99','2005-08-23 22:06:15','2006-02-15 22:14:26'),(6110,227,1,111,'4.99','2005-05-25 18:45:19','2006-02-15 22:14:26'),(6111,227,1,1023,'3.99','2005-05-31 03:26:50','2006-02-15 22:14:26'),(6112,227,1,1679,'2.99','2005-06-16 11:11:01','2006-02-15 22:14:26'),(6113,227,2,2155,'1.99','2005-06-17 23:07:29','2006-02-15 22:14:26'),(6114,227,1,2164,'6.99','2005-06-17 23:46:21','2006-02-15 22:14:26'),(6115,227,2,3065,'0.99','2005-06-20 13:53:53','2006-02-15 22:14:26'),(6116,227,1,3576,'5.99','2005-07-06 03:40:01','2006-02-15 22:14:26'),(6117,227,2,4340,'2.99','2005-07-07 18:41:46','2006-02-15 22:14:26'),(6118,227,2,4459,'4.99','2005-07-07 23:48:52','2006-02-15 22:14:26'),(6119,227,1,4680,'2.99','2005-07-08 10:35:28','2006-02-15 22:14:26'),(6120,227,1,5046,'3.99','2005-07-09 03:34:57','2006-02-15 22:14:26'),(6121,227,1,7132,'7.99','2005-07-27 06:28:34','2006-02-15 22:14:26'),(6122,227,1,8219,'2.99','2005-07-28 23:46:31','2006-02-15 22:14:26'),(6123,227,1,8234,'0.99','2005-07-29 00:19:20','2006-02-15 22:14:26'),(6124,227,1,8384,'0.99','2005-07-29 05:38:43','2006-02-15 22:14:26'),(6125,227,2,8417,'4.99','2005-07-29 06:53:36','2006-02-15 22:14:26'),(6126,227,1,8936,'2.99','2005-07-30 02:47:13','2006-02-15 22:14:26'),(6127,227,2,9521,'2.99','2005-07-31 00:52:24','2006-02-15 22:14:26'),(6128,227,2,10999,'3.99','2005-08-02 04:53:13','2006-02-15 22:14:26'),(6129,227,2,11892,'0.99','2005-08-17 15:13:21','2006-02-15 22:14:26'),(6130,227,2,13379,'4.99','2005-08-19 21:33:39','2006-02-15 22:14:26'),(6131,227,2,15406,'0.99','2005-08-22 23:21:22','2006-02-15 22:14:26'),(6132,227,2,15976,'4.99','2005-08-23 20:07:08','2006-02-15 22:14:27'),(6133,227,2,13374,'4.99','2006-02-14 15:16:03','2006-02-15 22:14:27'),(6134,228,2,492,'4.99','2005-05-28 00:24:58','2006-02-15 22:14:27'),(6135,228,2,1070,'0.99','2005-05-31 09:39:56','2006-02-15 22:14:27'),(6136,228,2,2284,'3.99','2005-06-18 06:59:51','2006-02-15 22:14:27'),(6137,228,2,2863,'2.99','2005-06-19 23:58:38','2006-02-15 22:14:27'),(6138,228,2,2934,'2.99','2005-06-20 05:05:53','2006-02-15 22:14:27'),(6139,228,2,3433,'3.99','2005-06-21 19:07:19','2006-02-15 22:14:27'),(6140,228,2,3538,'0.99','2005-07-06 01:37:07','2006-02-15 22:14:27'),(6141,228,2,3710,'8.99','2005-07-06 10:28:53','2006-02-15 22:14:27'),(6142,228,1,3715,'6.99','2005-07-06 10:51:48','2006-02-15 22:14:27'),(6143,228,2,3796,'0.99','2005-07-06 14:45:22','2006-02-15 22:14:27'),(6144,228,1,4217,'3.99','2005-07-07 12:08:59','2006-02-15 22:14:27'),(6145,228,1,4636,'4.99','2005-07-08 08:44:32','2006-02-15 22:14:27'),(6146,228,1,4909,'0.99','2005-07-08 21:07:24','2006-02-15 22:14:27'),(6147,228,1,5151,'2.99','2005-07-09 08:31:03','2006-02-15 22:14:28'),(6148,228,1,5320,'4.99','2005-07-09 16:23:32','2006-02-15 22:14:28'),(6149,228,2,5902,'0.99','2005-07-10 20:31:24','2006-02-15 22:14:28'),(6150,228,2,6141,'1.99','2005-07-11 08:52:16','2006-02-15 22:14:28'),(6151,228,1,6948,'2.99','2005-07-26 23:43:49','2006-02-15 22:14:28'),(6152,228,2,7509,'8.99','2005-07-27 20:37:19','2006-02-15 22:14:28'),(6153,228,1,7601,'0.99','2005-07-27 23:48:15','2006-02-15 22:14:28'),(6154,228,1,8147,'2.99','2005-07-28 20:37:56','2006-02-15 22:14:28'),(6155,228,1,10585,'4.99','2005-08-01 14:00:42','2006-02-15 22:14:28'),(6156,228,1,12304,'0.99','2005-08-18 05:44:29','2006-02-15 22:14:28'),(6157,228,2,12952,'2.99','2005-08-19 06:00:52','2006-02-15 22:14:28'),(6158,228,2,13458,'4.99','2005-08-20 00:35:30','2006-02-15 22:14:28'),(6159,228,2,12672,'3.98','2006-02-14 15:16:03','2006-02-15 22:14:28'),(6160,228,1,15234,'0.00','2006-02-14 15:16:03','2006-02-15 22:14:28'),(6161,229,1,2200,'4.99','2005-06-18 01:59:16','2006-02-15 22:14:28'),(6162,229,1,3208,'0.99','2005-06-21 00:50:03','2006-02-15 22:14:28'),(6163,229,1,3277,'7.99','2005-06-21 05:36:37','2006-02-15 22:14:28'),(6164,229,2,3280,'0.99','2005-06-21 06:08:12','2006-02-15 22:14:28'),(6165,229,2,3933,'4.99','2005-07-06 21:06:37','2006-02-15 22:14:28'),(6166,229,2,4458,'2.99','2005-07-07 23:47:47','2006-02-15 22:14:28'),(6167,229,1,4515,'4.99','2005-07-08 02:42:03','2006-02-15 22:14:28'),(6168,229,2,4694,'0.99','2005-07-08 11:07:37','2006-02-15 22:14:28'),(6169,229,1,5623,'2.99','2005-07-10 05:41:38','2006-02-15 22:14:29'),(6170,229,2,6155,'4.99','2005-07-11 09:45:31','2006-02-15 22:14:29'),(6171,229,2,6578,'4.99','2005-07-12 06:15:41','2006-02-15 22:14:29'),(6172,229,1,6880,'2.99','2005-07-12 20:41:35','2006-02-15 22:14:29'),(6173,229,2,7305,'0.99','2005-07-27 12:57:06','2006-02-15 22:14:29'),(6174,229,2,7308,'5.99','2005-07-27 13:00:25','2006-02-15 22:14:29'),(6175,229,2,7629,'0.99','2005-07-28 01:00:09','2006-02-15 22:14:29'),(6176,229,2,7640,'7.99','2005-07-28 01:14:49','2006-02-15 22:14:29'),(6177,229,2,9913,'3.99','2005-07-31 14:51:04','2006-02-15 22:14:29'),(6178,229,1,11521,'4.99','2005-08-17 00:04:54','2006-02-15 22:14:29'),(6179,229,1,12866,'2.99','2005-08-19 02:39:47','2006-02-15 22:14:29'),(6180,229,2,13306,'0.99','2005-08-19 18:57:29','2006-02-15 22:14:29'),(6181,229,2,13431,'4.99','2005-08-19 23:28:15','2006-02-15 22:14:29'),(6182,229,1,13679,'5.99','2005-08-20 08:39:34','2006-02-15 22:14:29'),(6183,229,1,15740,'4.99','2005-08-23 12:07:51','2006-02-15 22:14:29'),(6184,229,2,15912,'2.99','2005-08-23 17:47:40','2006-02-15 22:14:29'),(6185,229,2,13295,'0.99','2006-02-14 15:16:03','2006-02-15 22:14:29'),(6186,230,1,32,'0.99','2005-05-25 04:06:21','2006-02-15 22:14:29'),(6187,230,1,1078,'4.99','2005-05-31 10:28:33','2006-02-15 22:14:29'),(6188,230,2,1468,'3.99','2005-06-15 20:48:22','2006-02-15 22:14:30'),(6189,230,1,1744,'4.99','2005-06-16 16:39:58','2006-02-15 22:14:30'),(6190,230,2,1793,'0.99','2005-06-16 20:07:27','2006-02-15 22:14:30'),(6191,230,2,2450,'8.99','2005-06-18 19:25:47','2006-02-15 22:14:30'),(6192,230,2,2675,'0.99','2005-06-19 11:52:15','2006-02-15 22:14:30'),(6193,230,1,2777,'0.99','2005-06-19 18:16:26','2006-02-15 22:14:30'),(6194,230,1,4509,'3.99','2005-07-08 02:32:38','2006-02-15 22:14:30'),(6195,230,1,4935,'0.99','2005-07-08 22:20:56','2006-02-15 22:14:30'),(6196,230,1,5045,'4.99','2005-07-09 03:33:32','2006-02-15 22:14:30'),(6197,230,1,5061,'0.99','2005-07-09 04:30:50','2006-02-15 22:14:30'),(6198,230,2,5269,'2.99','2005-07-09 14:23:05','2006-02-15 22:14:30'),(6199,230,2,6126,'4.99','2005-07-11 08:06:56','2006-02-15 22:14:30'),(6200,230,1,6251,'2.99','2005-07-11 15:06:20','2006-02-15 22:14:30'),(6201,230,2,7333,'4.99','2005-07-27 13:59:11','2006-02-15 22:14:30'),(6202,230,2,7390,'4.99','2005-07-27 15:59:19','2006-02-15 22:14:30'),(6203,230,2,8032,'4.99','2005-07-28 16:17:00','2006-02-15 22:14:30'),(6204,230,2,8653,'0.99','2005-07-29 15:04:23','2006-02-15 22:14:30'),(6205,230,1,8815,'2.99','2005-07-29 21:51:26','2006-02-15 22:14:30'),(6206,230,2,9778,'3.99','2005-07-31 10:02:04','2006-02-15 22:14:30'),(6207,230,2,10050,'3.99','2005-07-31 19:13:29','2006-02-15 22:14:30'),(6208,230,1,10057,'9.99','2005-07-31 19:20:18','2006-02-15 22:14:30'),(6209,230,2,10874,'2.99','2005-08-02 00:31:00','2006-02-15 22:14:30'),(6210,230,2,11148,'5.99','2005-08-02 09:47:08','2006-02-15 22:14:30'),(6211,230,1,11552,'5.99','2005-08-17 01:04:29','2006-02-15 22:14:30'),(6212,230,2,11914,'2.99','2005-08-17 16:04:42','2006-02-15 22:14:30'),(6213,230,1,12079,'1.99','2005-08-17 22:04:17','2006-02-15 22:14:30'),(6214,230,2,12523,'7.99','2005-08-18 13:45:41','2006-02-15 22:14:30'),(6215,230,2,12542,'0.99','2005-08-18 14:21:11','2006-02-15 22:14:31'),(6216,230,2,14017,'0.99','2005-08-20 20:55:32','2006-02-15 22:14:31'),(6217,230,1,14073,'5.99','2005-08-20 23:12:57','2006-02-15 22:14:31'),(6218,230,1,14340,'2.99','2005-08-21 08:38:21','2006-02-15 22:14:31'),(6219,231,1,329,'5.99','2005-05-27 01:57:14','2006-02-15 22:14:31'),(6220,231,1,479,'6.99','2005-05-27 22:39:10','2006-02-15 22:14:31'),(6221,231,1,512,'8.99','2005-05-28 03:07:50','2006-02-15 22:14:31'),(6222,231,2,2423,'0.99','2005-06-18 17:32:08','2006-02-15 22:14:31'),(6223,231,2,3561,'9.99','2005-07-06 02:54:33','2006-02-15 22:14:31'),(6224,231,1,3839,'2.99','2005-07-06 16:30:30','2006-02-15 22:14:31'),(6225,231,2,4289,'0.99','2005-07-07 15:45:58','2006-02-15 22:14:31'),(6226,231,2,4969,'0.99','2005-07-08 23:51:26','2006-02-15 22:14:31'),(6227,231,1,5096,'2.99','2005-07-09 06:08:23','2006-02-15 22:14:31'),(6228,231,1,5560,'5.99','2005-07-10 03:13:24','2006-02-15 22:14:31'),(6229,231,1,6862,'0.99','2005-07-12 19:58:09','2006-02-15 22:14:31'),(6230,231,1,6877,'1.99','2005-07-12 20:32:58','2006-02-15 22:14:31'),(6231,231,1,8556,'0.99','2005-07-29 11:18:27','2006-02-15 22:14:31'),(6232,231,2,8949,'5.99','2005-07-30 03:17:02','2006-02-15 22:14:31'),(6233,231,2,9711,'2.99','2005-07-31 08:06:41','2006-02-15 22:14:31'),(6234,231,2,11113,'2.99','2005-08-02 08:26:24','2006-02-15 22:14:31'),(6235,231,1,11202,'7.99','2005-08-02 11:51:57','2006-02-15 22:14:31'),(6236,231,1,11581,'5.99','2005-08-17 02:03:02','2006-02-15 22:14:32'),(6237,231,1,12214,'0.99','2005-08-18 02:34:22','2006-02-15 22:14:32'),(6238,231,2,12230,'8.99','2005-08-18 03:11:04','2006-02-15 22:14:32'),(6239,231,1,12231,'3.99','2005-08-18 03:11:44','2006-02-15 22:14:32'),(6240,231,2,13983,'6.99','2005-08-20 19:08:32','2006-02-15 22:14:32'),(6241,231,1,14026,'0.99','2005-08-20 21:21:08','2006-02-15 22:14:32'),(6242,231,1,14478,'4.99','2005-08-21 13:33:28','2006-02-15 22:14:32'),(6243,231,2,14806,'2.99','2005-08-22 00:53:08','2006-02-15 22:14:32'),(6244,231,1,15389,'3.99','2005-08-22 22:51:13','2006-02-15 22:14:33'),(6245,232,1,28,'4.99','2005-05-25 03:42:37','2006-02-15 22:14:33'),(6246,232,1,805,'3.99','2005-05-29 18:18:18','2006-02-15 22:14:33'),(6247,232,2,1619,'0.99','2005-06-16 07:14:13','2006-02-15 22:14:33'),(6248,232,1,2833,'8.99','2005-06-19 21:34:54','2006-02-15 22:14:33'),(6249,232,2,6234,'5.99','2005-07-11 14:16:10','2006-02-15 22:14:33'),(6250,232,1,6309,'2.99','2005-07-11 18:13:24','2006-02-15 22:14:33'),(6251,232,1,7123,'5.99','2005-07-27 06:08:48','2006-02-15 22:14:33'),(6252,232,2,7653,'4.99','2005-07-28 01:58:30','2006-02-15 22:14:33'),(6253,232,2,7707,'0.99','2005-07-28 04:07:47','2006-02-15 22:14:33'),(6254,232,1,7749,'2.99','2005-07-28 05:53:36','2006-02-15 22:14:33'),(6255,232,1,7990,'2.99','2005-07-28 14:43:08','2006-02-15 22:14:33'),(6256,232,1,8306,'2.99','2005-07-29 03:12:26','2006-02-15 22:14:33'),(6257,232,2,8401,'4.99','2005-07-29 06:25:08','2006-02-15 22:14:33'),(6258,232,2,8655,'4.99','2005-07-29 15:04:42','2006-02-15 22:14:33'),(6259,232,2,9270,'0.99','2005-07-30 15:03:16','2006-02-15 22:14:33'),(6260,232,2,9330,'10.99','2005-07-30 17:44:24','2006-02-15 22:14:33'),(6261,232,2,9365,'2.99','2005-07-30 18:46:02','2006-02-15 22:14:33'),(6262,232,2,10157,'2.99','2005-07-31 22:38:48','2006-02-15 22:14:33'),(6263,232,1,10539,'6.99','2005-08-01 12:23:00','2006-02-15 22:14:33'),(6264,232,2,11861,'0.99','2005-08-17 13:53:47','2006-02-15 22:14:33'),(6265,232,2,12853,'2.99','2005-08-19 02:15:32','2006-02-15 22:14:33'),(6266,232,2,13707,'2.99','2005-08-20 09:33:58','2006-02-15 22:14:33'),(6267,232,2,14527,'0.99','2005-08-21 15:07:42','2006-02-15 22:14:33'),(6268,232,2,14857,'0.99','2005-08-22 02:42:39','2006-02-15 22:14:33'),(6269,232,2,15553,'2.99','2005-08-23 04:33:39','2006-02-15 22:14:33'),(6270,233,2,1992,'2.99','2005-06-17 10:58:53','2006-02-15 22:14:33'),(6271,233,2,2244,'2.99','2005-06-18 04:46:33','2006-02-15 22:14:33'),(6272,233,1,2424,'2.99','2005-06-18 17:35:08','2006-02-15 22:14:33'),(6273,233,2,2443,'4.99','2005-06-18 18:52:30','2006-02-15 22:14:33'),(6274,233,1,3832,'2.99','2005-07-06 16:12:23','2006-02-15 22:14:34'),(6275,233,1,4015,'5.99','2005-07-07 00:59:46','2006-02-15 22:14:34'),(6276,233,1,4885,'4.99','2005-07-08 19:51:17','2006-02-15 22:14:34'),(6277,233,2,5267,'5.99','2005-07-09 14:21:10','2006-02-15 22:14:34'),(6278,233,1,5846,'2.99','2005-07-10 17:25:24','2006-02-15 22:14:34'),(6279,233,1,6319,'4.99','2005-07-11 18:50:45','2006-02-15 22:14:34'),(6280,233,1,6794,'2.99','2005-07-12 16:38:23','2006-02-15 22:14:34'),(6281,233,1,7056,'8.99','2005-07-27 03:46:27','2006-02-15 22:14:34'),(6282,233,2,7387,'4.99','2005-07-27 15:54:19','2006-02-15 22:14:34'),(6283,233,2,8385,'5.99','2005-07-29 05:39:16','2006-02-15 22:14:34'),(6284,233,2,8530,'2.99','2005-07-29 10:26:14','2006-02-15 22:14:34'),(6285,233,2,8596,'0.99','2005-07-29 12:48:54','2006-02-15 22:14:34'),(6286,233,1,9574,'0.99','2005-07-31 02:49:20','2006-02-15 22:14:34'),(6287,233,1,10582,'4.99','2005-08-01 13:54:22','2006-02-15 22:14:34'),(6288,233,1,12443,'5.99','2005-08-18 10:50:59','2006-02-15 22:14:34'),(6289,233,2,14357,'2.99','2005-08-21 09:13:09','2006-02-15 22:14:34'),(6290,233,2,15285,'2.99','2005-08-22 19:17:24','2006-02-15 22:14:34'),(6291,233,1,15790,'1.99','2005-08-23 14:01:07','2006-02-15 22:14:34'),(6292,233,2,15821,'0.99','2005-08-23 15:03:58','2006-02-15 22:14:34'),(6293,234,2,1125,'4.99','2005-05-31 17:23:44','2006-02-15 22:14:34'),(6294,234,2,1245,'3.99','2005-06-15 05:09:01','2006-02-15 22:14:34'),(6295,234,2,1645,'0.99','2005-06-16 09:10:06','2006-02-15 22:14:34'),(6296,234,1,1674,'2.99','2005-06-16 10:57:00','2006-02-15 22:14:34'),(6297,234,2,1993,'5.99','2005-06-17 10:59:24','2006-02-15 22:14:34'),(6298,234,1,2005,'4.99','2005-06-17 11:44:54','2006-02-15 22:14:34'),(6299,234,2,2511,'5.99','2005-06-18 23:45:30','2006-02-15 22:14:34'),(6300,234,2,3185,'6.99','2005-06-20 22:58:01','2006-02-15 22:14:34'),(6301,234,2,3199,'4.99','2005-06-21 00:12:40','2006-02-15 22:14:34'),(6302,234,2,4686,'0.99','2005-07-08 10:53:39','2006-02-15 22:14:34'),(6303,234,1,4721,'7.99','2005-07-08 12:39:31','2006-02-15 22:14:34'),(6304,234,2,10133,'5.99','2005-07-31 21:55:07','2006-02-15 22:14:34'),(6305,234,2,10541,'0.99','2005-08-01 12:24:54','2006-02-15 22:14:35'),(6306,234,2,10580,'6.99','2005-08-01 13:51:14','2006-02-15 22:14:35'),(6307,234,2,10968,'7.99','2005-08-02 04:03:13','2006-02-15 22:14:35'),(6308,234,1,11050,'4.99','2005-08-02 06:17:16','2006-02-15 22:14:35'),(6309,234,1,11073,'0.99','2005-08-02 07:13:03','2006-02-15 22:14:35'),(6310,234,1,11481,'3.99','2005-08-02 22:18:41','2006-02-15 22:14:35'),(6311,234,1,11882,'3.99','2005-08-17 14:33:41','2006-02-15 22:14:35'),(6312,234,1,12226,'0.99','2005-08-18 03:00:48','2006-02-15 22:14:35'),(6313,234,2,12863,'4.99','2005-08-19 02:35:59','2006-02-15 22:14:35'),(6314,234,1,12921,'5.99','2005-08-19 04:47:48','2006-02-15 22:14:35'),(6315,234,2,13349,'2.99','2005-08-19 20:43:16','2006-02-15 22:14:35'),(6316,234,2,15037,'5.99','2005-08-22 09:36:33','2006-02-15 22:14:35'),(6317,234,1,15129,'2.99','2005-08-22 13:03:52','2006-02-15 22:14:35'),(6318,234,1,15778,'0.99','2006-02-14 15:16:03','2006-02-15 22:14:35'),(6319,235,2,807,'2.99','2005-05-29 18:50:50','2006-02-15 22:14:35'),(6320,235,1,1148,'0.99','2005-05-31 20:38:40','2006-02-15 22:14:35'),(6321,235,1,1493,'4.99','2005-06-15 21:50:32','2006-02-15 22:14:35'),(6322,235,2,1811,'0.99','2005-06-16 21:06:20','2006-02-15 22:14:35'),(6323,235,2,3581,'2.99','2005-07-06 03:57:35','2006-02-15 22:14:35'),(6324,235,1,3752,'6.99','2005-07-06 12:30:12','2006-02-15 22:14:35'),(6325,235,1,3968,'4.99','2005-07-06 22:47:09','2006-02-15 22:14:35'),(6326,235,2,4592,'2.99','2005-07-08 06:31:28','2006-02-15 22:14:35'),(6327,235,1,5790,'4.99','2005-07-10 14:15:21','2006-02-15 22:14:35'),(6328,235,1,6047,'2.99','2005-07-11 03:27:01','2006-02-15 22:14:35'),(6329,235,2,6352,'4.99','2005-07-11 20:34:13','2006-02-15 22:14:35'),(6330,235,2,6466,'4.99','2005-07-12 01:21:03','2006-02-15 22:14:35'),(6331,235,1,8120,'0.99','2005-07-28 19:24:24','2006-02-15 22:14:35'),(6332,235,2,8446,'6.99','2005-07-29 07:38:10','2006-02-15 22:14:35'),(6333,235,2,8781,'0.99','2005-07-29 20:20:16','2006-02-15 22:14:35'),(6334,235,1,9019,'5.99','2005-07-30 05:28:53','2006-02-15 22:14:35'),(6335,235,2,9519,'6.99','2005-07-31 00:45:57','2006-02-15 22:14:35'),(6336,235,1,9587,'3.99','2005-07-31 03:10:30','2006-02-15 22:14:36'),(6337,235,2,10155,'0.99','2005-07-31 22:31:43','2006-02-15 22:14:36'),(6338,235,2,12332,'2.99','2005-08-18 06:51:05','2006-02-15 22:14:36'),(6339,235,1,12502,'4.99','2005-08-18 13:16:31','2006-02-15 22:14:36'),(6340,235,2,13070,'0.99','2005-08-19 09:56:23','2006-02-15 22:14:36'),(6341,235,1,13469,'0.99','2005-08-20 00:59:36','2006-02-15 22:14:36'),(6342,235,2,14749,'3.99','2005-08-21 23:08:33','2006-02-15 22:14:36'),(6343,235,1,15034,'6.99','2005-08-22 09:33:08','2006-02-15 22:14:36'),(6344,236,2,262,'2.99','2005-05-26 15:46:56','2006-02-15 22:14:36'),(6345,236,2,344,'2.99','2005-05-27 04:30:22','2006-02-15 22:14:36'),(6346,236,1,1032,'2.99','2005-05-31 04:28:43','2006-02-15 22:14:36'),(6347,236,1,1262,'0.99','2005-06-15 06:54:53','2006-02-15 22:14:36'),(6348,236,2,1308,'5.99','2005-06-15 10:07:48','2006-02-15 22:14:36'),(6349,236,2,2139,'8.99','2005-06-17 21:29:34','2006-02-15 22:14:36'),(6350,236,2,2311,'6.99','2005-06-18 08:51:29','2006-02-15 22:14:36'),(6351,236,1,2630,'2.99','2005-06-19 08:47:21','2006-02-15 22:14:36'),(6352,236,2,2840,'3.99','2005-06-19 22:17:44','2006-02-15 22:14:36'),(6353,236,1,3353,'4.99','2005-06-21 11:29:23','2006-02-15 22:14:36'),(6354,236,2,3460,'2.99','2005-06-21 21:46:56','2006-02-15 22:14:36'),(6355,236,1,3645,'0.99','2005-07-06 07:22:09','2006-02-15 22:14:36'),(6356,236,2,3857,'4.99','2005-07-06 17:07:54','2006-02-15 22:14:36'),(6357,236,2,4749,'4.99','2005-07-08 14:05:58','2006-02-15 22:14:36'),(6358,236,1,4959,'0.99','2005-07-08 23:22:23','2006-02-15 22:14:36'),(6359,236,1,5404,'2.99','2005-07-09 20:10:43','2006-02-15 22:14:36'),(6360,236,1,5545,'3.99','2005-07-10 02:50:29','2006-02-15 22:14:36'),(6361,236,2,5938,'3.99','2005-07-10 22:17:42','2006-02-15 22:14:36'),(6362,236,2,6049,'0.99','2005-07-11 03:32:32','2006-02-15 22:14:36'),(6363,236,2,6281,'4.99','2005-07-11 16:38:16','2006-02-15 22:14:36'),(6364,236,1,6303,'2.99','2005-07-11 17:55:43','2006-02-15 22:14:36'),(6365,236,2,6996,'4.99','2005-07-27 01:13:45','2006-02-15 22:14:36'),(6366,236,2,7047,'4.99','2005-07-27 03:31:11','2006-02-15 22:14:36'),(6367,236,2,7253,'0.99','2005-07-27 10:46:37','2006-02-15 22:14:37'),(6368,236,1,7780,'5.99','2005-07-28 07:11:55','2006-02-15 22:14:37'),(6369,236,1,7792,'4.99','2005-07-28 07:24:02','2006-02-15 22:14:37'),(6370,236,2,7798,'2.99','2005-07-28 07:41:59','2006-02-15 22:14:37'),(6371,236,1,8657,'2.99','2005-07-29 15:09:25','2006-02-15 22:14:37'),(6372,236,1,9011,'5.99','2005-07-30 05:16:29','2006-02-15 22:14:37'),(6373,236,1,9934,'2.99','2005-07-31 15:25:26','2006-02-15 22:14:37'),(6374,236,2,10137,'4.99','2005-07-31 22:01:41','2006-02-15 22:14:37'),(6375,236,2,11139,'6.99','2005-08-02 09:27:36','2006-02-15 22:14:37'),(6376,236,2,11486,'3.99','2005-08-02 22:34:06','2006-02-15 22:14:37'),(6377,236,2,11507,'5.99','2005-08-16 23:26:43','2006-02-15 22:14:37'),(6378,236,1,11895,'4.99','2005-08-17 15:15:07','2006-02-15 22:14:37'),(6379,236,1,12975,'2.99','2005-08-19 06:51:19','2006-02-15 22:14:37'),(6380,236,1,13364,'2.99','2005-08-19 21:09:30','2006-02-15 22:14:37'),(6381,236,1,13443,'7.99','2005-08-19 23:53:42','2006-02-15 22:14:37'),(6382,236,2,14321,'4.99','2005-08-21 08:05:12','2006-02-15 22:14:37'),(6383,236,1,14364,'7.99','2005-08-21 09:25:11','2006-02-15 22:14:37'),(6384,236,2,14722,'4.99','2005-08-21 21:50:53','2006-02-15 22:14:37'),(6385,236,1,12988,'0.99','2006-02-14 15:16:03','2006-02-15 22:14:37'),(6386,237,2,133,'0.99','2005-05-25 21:48:30','2006-02-15 22:14:37'),(6387,237,1,182,'4.99','2005-05-26 04:49:17','2006-02-15 22:14:37'),(6388,237,1,1500,'0.99','2005-06-15 22:00:45','2006-02-15 22:14:37'),(6389,237,2,1518,'0.99','2005-06-15 23:36:37','2006-02-15 22:14:37'),(6390,237,1,2156,'4.99','2005-06-17 23:08:12','2006-02-15 22:14:37'),(6391,237,1,2492,'2.99','2005-06-18 22:04:15','2006-02-15 22:14:37'),(6392,237,2,3069,'2.99','2005-06-20 14:13:00','2006-02-15 22:14:37'),(6393,237,1,4844,'4.99','2005-07-08 18:28:13','2006-02-15 22:14:37'),(6394,237,2,6053,'4.99','2005-07-11 03:51:59','2006-02-15 22:14:37'),(6395,237,1,7193,'2.99','2005-07-27 08:37:00','2006-02-15 22:14:37'),(6396,237,2,7330,'3.99','2005-07-27 13:56:46','2006-02-15 22:14:37'),(6397,237,1,7812,'4.99','2005-07-28 08:06:52','2006-02-15 22:14:37'),(6398,237,2,7951,'8.99','2005-07-28 13:21:16','2006-02-15 22:14:38'),(6399,237,2,8102,'2.99','2005-07-28 18:49:43','2006-02-15 22:14:38'),(6400,237,2,8748,'2.99','2005-07-29 19:08:37','2006-02-15 22:14:38'),(6401,237,2,8799,'6.99','2005-07-29 21:16:47','2006-02-15 22:14:38'),(6402,237,1,8835,'3.99','2005-07-29 22:44:35','2006-02-15 22:14:38'),(6403,237,1,9276,'5.99','2005-07-30 15:09:28','2006-02-15 22:14:38'),(6404,237,1,9661,'4.99','2005-07-31 06:06:37','2006-02-15 22:14:38'),(6405,237,2,9715,'1.99','2005-07-31 08:16:58','2006-02-15 22:14:38'),(6406,237,2,10056,'0.99','2005-07-31 19:19:13','2006-02-15 22:14:38'),(6407,237,2,10058,'2.99','2005-07-31 19:20:21','2006-02-15 22:14:38'),(6408,237,2,11125,'4.99','2005-08-02 08:55:35','2006-02-15 22:14:38'),(6409,237,2,11479,'11.99','2005-08-02 22:18:13','2006-02-15 22:14:38'),(6410,237,2,11772,'5.99','2005-08-17 10:18:57','2006-02-15 22:14:38'),(6411,237,1,12469,'0.99','2005-08-18 11:53:07','2006-02-15 22:14:38'),(6412,237,2,13914,'6.99','2005-08-20 16:38:57','2006-02-15 22:14:38'),(6413,237,2,13922,'6.99','2005-08-20 17:02:37','2006-02-15 22:14:38'),(6414,237,2,13969,'6.99','2005-08-20 18:42:40','2006-02-15 22:14:38'),(6415,237,2,14453,'3.99','2005-08-21 12:33:34','2006-02-15 22:14:38'),(6416,237,2,15139,'8.99','2005-08-22 13:38:11','2006-02-15 22:14:38'),(6417,237,1,15337,'0.99','2005-08-22 20:49:51','2006-02-15 22:14:38'),(6418,237,2,15931,'1.99','2005-08-23 18:28:09','2006-02-15 22:14:38'),(6419,238,2,315,'4.99','2005-05-26 23:12:55','2006-02-15 22:14:38'),(6420,238,1,842,'2.99','2005-05-30 00:32:04','2006-02-15 22:14:38'),(6421,238,1,1199,'2.99','2005-06-15 01:58:50','2006-02-15 22:14:38'),(6422,238,1,1660,'4.99','2005-06-16 10:12:55','2006-02-15 22:14:38'),(6423,238,1,3181,'2.99','2005-06-20 22:51:02','2006-02-15 22:14:38'),(6424,238,1,4143,'0.99','2005-07-07 08:22:07','2006-02-15 22:14:38'),(6425,238,1,5616,'5.99','2005-07-10 05:21:11','2006-02-15 22:14:38'),(6426,238,2,6403,'0.99','2005-07-11 22:46:25','2006-02-15 22:14:38'),(6427,238,2,7243,'4.99','2005-07-27 10:26:11','2006-02-15 22:14:38'),(6428,238,1,8310,'8.99','2005-07-29 03:25:56','2006-02-15 22:14:38'),(6429,238,1,8382,'6.99','2005-07-29 05:33:21','2006-02-15 22:14:39'),(6430,238,1,8465,'0.99','2005-07-29 08:20:49','2006-02-15 22:14:39'),(6431,238,1,9065,'4.99','2005-07-30 07:25:09','2006-02-15 22:14:39'),(6432,238,2,9841,'7.99','2005-07-31 12:24:19','2006-02-15 22:14:39'),(6433,238,1,10659,'5.99','2005-08-01 16:40:34','2006-02-15 22:14:39'),(6434,238,2,11543,'5.99','2005-08-17 00:54:28','2006-02-15 22:14:39'),(6435,238,2,11632,'2.99','2005-08-17 04:29:32','2006-02-15 22:14:39'),(6436,238,1,11897,'2.99','2005-08-17 15:24:06','2006-02-15 22:14:39'),(6437,238,1,14312,'4.99','2005-08-21 07:48:34','2006-02-15 22:14:39'),(6438,238,1,14343,'8.99','2005-08-21 08:40:21','2006-02-15 22:14:39'),(6439,238,1,15455,'0.99','2005-08-23 01:05:00','2006-02-15 22:14:39'),(6440,239,2,8,'4.99','2005-05-24 23:31:46','2006-02-15 22:14:39'),(6441,239,1,444,'2.99','2005-05-27 18:39:15','2006-02-15 22:14:39'),(6442,239,1,621,'4.99','2005-05-28 15:58:12','2006-02-15 22:14:39'),(6443,239,1,636,'6.99','2005-05-28 17:47:58','2006-02-15 22:14:39'),(6444,239,1,1022,'7.99','2005-05-31 03:16:45','2006-02-15 22:14:39'),(6445,239,2,1082,'5.99','2005-05-31 11:02:01','2006-02-15 22:14:39'),(6446,239,1,1160,'4.99','2005-06-14 23:00:34','2006-02-15 22:14:39'),(6447,239,2,1560,'4.99','2005-06-16 02:36:43','2006-02-15 22:14:39'),(6448,239,2,2215,'2.99','2005-06-18 02:48:21','2006-02-15 22:14:39'),(6449,239,1,2390,'4.99','2005-06-18 15:29:26','2006-02-15 22:14:39'),(6450,239,1,3383,'5.99','2005-06-21 14:07:19','2006-02-15 22:14:39'),(6451,239,2,3547,'0.99','2005-07-06 02:18:06','2006-02-15 22:14:39'),(6452,239,1,3552,'5.99','2005-07-06 02:34:09','2006-02-15 22:14:39'),(6453,239,2,4920,'7.99','2005-07-08 21:42:10','2006-02-15 22:14:39'),(6454,239,2,5651,'4.99','2005-07-10 07:17:13','2006-02-15 22:14:39'),(6455,239,1,5960,'0.99','2005-07-10 23:38:34','2006-02-15 22:14:39'),(6456,239,1,6573,'0.99','2005-07-12 06:03:40','2006-02-15 22:14:39'),(6457,239,2,7012,'8.99','2005-07-27 02:01:03','2006-02-15 22:14:39'),(6458,239,1,7426,'0.99','2005-07-27 17:19:46','2006-02-15 22:14:39'),(6459,239,2,7491,'2.99','2005-07-27 19:53:23','2006-02-15 22:14:39'),(6460,239,1,8457,'6.99','2005-07-29 07:59:03','2006-02-15 22:14:40'),(6461,239,2,9676,'0.99','2005-07-31 06:39:13','2006-02-15 22:14:40'),(6462,239,1,9863,'5.99','2005-07-31 13:05:29','2006-02-15 22:14:40'),(6463,239,1,10755,'0.99','2005-08-01 20:14:14','2006-02-15 22:14:40'),(6464,239,2,10923,'2.99','2005-08-02 02:15:01','2006-02-15 22:14:40'),(6465,239,1,11487,'2.99','2005-08-02 22:35:05','2006-02-15 22:14:40'),(6466,239,2,11900,'4.99','2005-08-17 15:30:44','2006-02-15 22:14:40'),(6467,239,1,11968,'0.99','2005-08-17 17:47:34','2006-02-15 22:14:40'),(6468,239,1,12340,'4.99','2005-08-18 07:07:01','2006-02-15 22:14:40'),(6469,239,1,12721,'1.99','2005-08-18 21:30:12','2006-02-15 22:14:40'),(6470,239,1,13175,'4.99','2005-08-19 13:54:53','2006-02-15 22:14:40'),(6471,239,2,13427,'4.99','2005-08-19 23:19:02','2006-02-15 22:14:40'),(6472,239,2,13999,'3.99','2005-08-20 19:53:32','2006-02-15 22:14:40'),(6473,239,2,14062,'1.99','2005-08-20 22:34:34','2006-02-15 22:14:40'),(6474,240,1,246,'2.99','2005-05-26 13:57:07','2006-02-15 22:14:40'),(6475,240,1,460,'2.99','2005-05-27 20:02:03','2006-02-15 22:14:40'),(6476,240,1,643,'4.99','2005-05-28 18:52:11','2006-02-15 22:14:40'),(6477,240,2,2196,'3.99','2005-06-18 01:47:07','2006-02-15 22:14:40'),(6478,240,1,2264,'4.99','2005-06-18 05:58:45','2006-02-15 22:14:40'),(6479,240,2,2872,'5.99','2005-06-20 00:38:21','2006-02-15 22:14:40'),(6480,240,2,4305,'4.99','2005-07-07 17:07:11','2006-02-15 22:14:40'),(6481,240,2,5262,'4.99','2005-07-09 14:08:01','2006-02-15 22:14:40'),(6482,240,1,5596,'0.99','2005-07-10 04:43:14','2006-02-15 22:14:40'),(6483,240,1,6272,'0.99','2005-07-11 16:03:49','2006-02-15 22:14:40'),(6484,240,2,6470,'0.99','2005-07-12 01:29:41','2006-02-15 22:14:40'),(6485,240,1,6956,'4.99','2005-07-26 23:55:57','2006-02-15 22:14:40'),(6486,240,1,7001,'4.99','2005-07-27 01:25:34','2006-02-15 22:14:40'),(6487,240,1,7467,'8.99','2005-07-27 18:51:54','2006-02-15 22:14:40'),(6488,240,2,7481,'4.99','2005-07-27 19:20:25','2006-02-15 22:14:40'),(6489,240,1,7870,'4.99','2005-07-28 10:16:03','2006-02-15 22:14:40'),(6490,240,2,8503,'3.99','2005-07-29 09:16:50','2006-02-15 22:14:41'),(6491,240,2,8905,'5.99','2005-07-30 01:11:11','2006-02-15 22:14:41'),(6492,240,1,10308,'7.99','2005-08-01 04:22:49','2006-02-15 22:14:41'),(6493,240,1,11745,'3.99','2005-08-17 09:00:01','2006-02-15 22:14:41'),(6494,240,2,12283,'6.99','2005-08-18 04:54:25','2006-02-15 22:14:41'),(6495,240,2,13030,'2.99','2005-08-19 08:28:11','2006-02-15 22:14:41'),(6496,240,2,13119,'4.99','2005-08-19 11:44:59','2006-02-15 22:14:41'),(6497,240,1,13663,'8.99','2005-08-20 08:12:33','2006-02-15 22:14:41'),(6498,240,2,14573,'2.99','2005-08-21 16:44:32','2006-02-15 22:14:41'),(6499,240,2,15641,'0.99','2005-08-23 08:06:49','2006-02-15 22:14:41'),(6500,241,1,627,'7.99','2005-05-28 17:04:43','2006-02-15 22:14:41'),(6501,241,1,1059,'3.99','2005-05-31 08:20:43','2006-02-15 22:14:41'),(6502,241,2,2428,'0.99','2005-06-18 17:47:34','2006-02-15 22:14:41'),(6503,241,1,2455,'0.99','2005-06-18 19:33:06','2006-02-15 22:14:41'),(6504,241,2,2478,'5.99','2005-06-18 21:01:21','2006-02-15 22:14:41'),(6505,241,2,2683,'2.99','2005-06-19 12:27:19','2006-02-15 22:14:41'),(6506,241,2,3258,'0.99','2005-06-21 03:53:58','2006-02-15 22:14:41'),(6507,241,2,3822,'0.99','2005-07-06 15:41:15','2006-02-15 22:14:41'),(6508,241,1,4731,'0.99','2005-07-08 13:08:18','2006-02-15 22:14:41'),(6509,241,2,5017,'2.99','2005-07-09 02:00:16','2006-02-15 22:14:41'),(6510,241,1,5211,'0.99','2005-07-09 11:26:50','2006-02-15 22:14:41'),(6511,241,1,5438,'4.99','2005-07-09 21:34:32','2006-02-15 22:14:41'),(6512,241,2,5525,'3.99','2005-07-10 02:03:08','2006-02-15 22:14:41'),(6513,241,1,5981,'4.99','2005-07-11 00:19:04','2006-02-15 22:14:41'),(6514,241,2,6090,'6.99','2005-07-11 05:47:08','2006-02-15 22:14:41'),(6515,241,2,6245,'2.99','2005-07-11 14:56:57','2006-02-15 22:14:41'),(6516,241,1,7320,'0.99','2005-07-27 13:33:35','2006-02-15 22:14:41'),(6517,241,1,7434,'2.99','2005-07-27 17:34:40','2006-02-15 22:14:41'),(6518,241,1,7860,'2.99','2005-07-28 09:58:02','2006-02-15 22:14:41'),(6519,241,1,9500,'6.99','2005-07-30 23:58:36','2006-02-15 22:14:41'),(6520,241,1,9528,'3.99','2005-07-31 01:05:04','2006-02-15 22:14:42'),(6521,241,1,9944,'5.99','2005-07-31 15:44:43','2006-02-15 22:14:42'),(6522,241,2,10447,'3.99','2005-08-01 09:04:58','2006-02-15 22:14:42'),(6523,241,1,10652,'2.99','2005-08-01 16:24:08','2006-02-15 22:14:42'),(6524,241,1,11423,'1.99','2005-08-02 19:57:13','2006-02-15 22:14:42'),(6525,241,2,12418,'4.99','2005-08-18 09:59:36','2006-02-15 22:14:42'),(6526,241,1,12956,'4.99','2005-08-19 06:06:26','2006-02-15 22:14:42'),(6527,241,2,13077,'2.99','2005-08-19 10:15:19','2006-02-15 22:14:42'),(6528,241,2,14269,'7.99','2005-08-21 06:22:07','2006-02-15 22:14:42'),(6529,241,2,14485,'2.99','2005-08-21 13:52:07','2006-02-15 22:14:42'),(6530,241,1,14936,'0.99','2005-08-22 05:51:26','2006-02-15 22:14:42'),(6531,241,2,15137,'2.99','2005-08-22 13:20:28','2006-02-15 22:14:42'),(6532,241,1,15429,'2.99','2005-08-23 00:20:31','2006-02-15 22:14:42'),(6533,241,1,15767,'4.99','2005-08-23 13:14:15','2006-02-15 22:14:42'),(6534,242,1,108,'2.99','2005-05-25 18:30:05','2006-02-15 22:14:42'),(6535,242,2,283,'3.99','2005-05-26 19:05:05','2006-02-15 22:14:42'),(6536,242,2,881,'4.99','2005-05-30 06:15:36','2006-02-15 22:14:42'),(6537,242,2,1304,'4.99','2005-06-15 09:56:02','2006-02-15 22:14:42'),(6538,242,1,1384,'4.99','2005-06-15 15:22:03','2006-02-15 22:14:42'),(6539,242,1,1483,'4.99','2005-06-15 21:21:58','2006-02-15 22:14:42'),(6540,242,2,1702,'4.99','2005-06-16 13:21:05','2006-02-15 22:14:42'),(6541,242,1,2691,'4.99','2005-06-19 13:06:50','2006-02-15 22:14:42'),(6542,242,2,2942,'4.99','2005-06-20 05:27:31','2006-02-15 22:14:42'),(6543,242,1,3471,'4.99','2005-07-05 22:51:44','2006-02-15 22:14:42'),(6544,242,2,3604,'0.99','2005-07-06 05:25:22','2006-02-15 22:14:42'),(6545,242,1,4426,'4.99','2005-07-07 22:28:32','2006-02-15 22:14:42'),(6546,242,2,4895,'1.99','2005-07-08 20:22:05','2006-02-15 22:14:42'),(6547,242,2,5666,'5.99','2005-07-10 08:10:29','2006-02-15 22:14:42'),(6548,242,2,7149,'3.99','2005-07-27 07:10:40','2006-02-15 22:14:42'),(6549,242,1,8491,'4.99','2005-07-29 09:02:13','2006-02-15 22:14:42'),(6550,242,1,9423,'3.99','2005-07-30 21:10:14','2006-02-15 22:14:42'),(6551,242,1,9730,'6.99','2005-07-31 08:50:08','2006-02-15 22:14:43'),(6552,242,2,10367,'0.99','2005-08-01 06:12:19','2006-02-15 22:14:43'),(6553,242,2,10382,'4.99','2005-08-01 06:36:45','2006-02-15 22:14:43'),(6554,242,2,10650,'9.99','2005-08-01 16:18:45','2006-02-15 22:14:43'),(6555,242,2,11020,'0.99','2005-08-02 05:29:48','2006-02-15 22:14:43'),(6556,242,1,11258,'4.99','2005-08-02 13:45:39','2006-02-15 22:14:43'),(6557,242,2,11607,'0.99','2005-08-17 03:36:06','2006-02-15 22:14:43'),(6558,242,1,11931,'4.99','2005-08-17 16:35:14','2006-02-15 22:14:43'),(6559,242,2,12724,'7.99','2005-08-18 21:37:20','2006-02-15 22:14:43'),(6560,242,1,12855,'4.99','2005-08-19 02:18:58','2006-02-15 22:14:43'),(6561,242,1,13271,'9.99','2005-08-19 17:42:06','2006-02-15 22:14:43'),(6562,242,2,13567,'0.99','2005-08-20 04:49:21','2006-02-15 22:14:43'),(6563,242,2,13646,'5.99','2005-08-20 07:47:08','2006-02-15 22:14:43'),(6564,242,1,14515,'0.99','2005-08-21 14:52:14','2006-02-15 22:14:43'),(6565,242,1,15002,'0.99','2005-08-22 08:06:00','2006-02-15 22:14:43'),(6566,243,1,188,'4.99','2005-05-26 05:47:12','2006-02-15 22:14:43'),(6567,243,1,1405,'5.99','2005-06-15 16:41:26','2006-02-15 22:14:43'),(6568,243,1,1452,'0.99','2005-06-15 19:32:52','2006-02-15 22:14:43'),(6569,243,2,2757,'5.99','2005-06-19 17:01:14','2006-02-15 22:14:43'),(6570,243,2,3854,'5.99','2005-07-06 17:02:33','2006-02-15 22:14:43'),(6571,243,1,3965,'4.99','2005-07-06 22:36:20','2006-02-15 22:14:43'),(6572,243,1,4831,'0.99','2005-07-08 18:00:14','2006-02-15 22:14:43'),(6573,243,1,5502,'0.99','2005-07-10 00:34:15','2006-02-15 22:14:43'),(6574,243,2,6038,'3.99','2005-07-11 03:10:37','2006-02-15 22:14:43'),(6575,243,2,6820,'2.99','2005-07-12 18:21:30','2006-02-15 22:14:43'),(6576,243,2,7022,'2.99','2005-07-27 02:31:15','2006-02-15 22:14:43'),(6577,243,2,7165,'0.99','2005-07-27 07:36:46','2006-02-15 22:14:43'),(6578,243,1,8834,'4.99','2005-07-29 22:41:48','2006-02-15 22:14:43'),(6579,243,2,9035,'2.99','2005-07-30 06:16:07','2006-02-15 22:14:43'),(6580,243,2,9514,'4.99','2005-07-31 00:29:44','2006-02-15 22:14:43'),(6581,243,2,9675,'2.99','2005-07-31 06:37:07','2006-02-15 22:14:44'),(6582,243,2,9988,'5.99','2005-07-31 17:22:36','2006-02-15 22:14:44'),(6583,243,1,12209,'2.99','2005-08-18 02:27:20','2006-02-15 22:14:44'),(6584,243,1,13291,'2.99','2005-08-19 18:32:11','2006-02-15 22:14:44'),(6585,243,1,14033,'2.99','2005-08-20 21:30:53','2006-02-15 22:14:44'),(6586,243,1,14108,'0.99','2005-08-21 00:52:45','2006-02-15 22:14:44'),(6587,243,1,14272,'3.99','2005-08-21 06:24:55','2006-02-15 22:14:44'),(6588,243,2,14581,'1.99','2005-08-21 17:07:08','2006-02-15 22:14:44'),(6589,243,2,14705,'2.99','2005-08-21 21:02:55','2006-02-15 22:14:44'),(6590,244,2,592,'4.99','2005-05-28 13:21:08','2006-02-15 22:14:44'),(6591,244,1,797,'1.99','2005-05-29 17:12:17','2006-02-15 22:14:44'),(6592,244,2,1189,'6.99','2005-06-15 01:04:22','2006-02-15 22:14:44'),(6593,244,1,1595,'5.99','2005-06-16 05:23:46','2006-02-15 22:14:44'),(6594,244,2,2955,'3.99','2005-06-20 06:46:35','2006-02-15 22:14:44'),(6595,244,1,4814,'4.99','2005-07-08 17:11:09','2006-02-15 22:14:44'),(6596,244,2,5387,'4.99','2005-07-09 19:25:14','2006-02-15 22:14:44'),(6597,244,2,5461,'0.99','2005-07-09 22:48:04','2006-02-15 22:14:44'),(6598,244,2,5692,'0.99','2005-07-10 09:32:22','2006-02-15 22:14:44'),(6599,244,1,5779,'4.99','2005-07-10 13:45:54','2006-02-15 22:14:44'),(6600,244,1,5803,'3.99','2005-07-10 15:05:42','2006-02-15 22:14:44'),(6601,244,2,6374,'4.99','2005-07-11 21:36:10','2006-02-15 22:14:44'),(6602,244,2,6608,'2.99','2005-07-12 08:16:50','2006-02-15 22:14:44'),(6603,244,2,6683,'2.99','2005-07-12 12:14:05','2006-02-15 22:14:44'),(6604,244,2,8454,'0.99','2005-07-29 07:49:04','2006-02-15 22:14:44'),(6605,244,2,8844,'5.99','2005-07-29 23:05:08','2006-02-15 22:14:44'),(6606,244,1,10001,'4.99','2005-07-31 17:46:18','2006-02-15 22:14:44'),(6607,244,2,10047,'4.99','2005-07-31 19:07:43','2006-02-15 22:14:44'),(6608,244,1,10152,'5.99','2005-07-31 22:28:05','2006-02-15 22:14:44'),(6609,244,2,10684,'6.99','2005-08-01 17:47:00','2006-02-15 22:14:44'),(6610,244,2,10969,'2.99','2005-08-02 04:04:32','2006-02-15 22:14:44'),(6611,244,2,11157,'0.99','2005-08-02 09:58:15','2006-02-15 22:14:45'),(6612,244,1,11267,'9.99','2005-08-02 14:09:08','2006-02-15 22:14:45'),(6613,244,1,11762,'9.99','2005-08-17 09:48:06','2006-02-15 22:14:45'),(6614,244,1,13630,'4.99','2005-08-20 07:05:56','2006-02-15 22:14:45'),(6615,244,2,13774,'0.99','2005-08-20 11:54:01','2006-02-15 22:14:45'),(6616,244,1,13928,'0.99','2005-08-20 17:12:28','2006-02-15 22:14:45'),(6617,244,1,14367,'0.99','2005-08-21 09:31:44','2006-02-15 22:14:45'),(6618,244,2,14657,'0.99','2005-08-21 19:39:43','2006-02-15 22:14:45'),(6619,244,1,14919,'1.99','2005-08-22 05:07:17','2006-02-15 22:14:45'),(6620,244,1,14975,'3.99','2005-08-22 07:07:50','2006-02-15 22:14:45'),(6621,244,2,12736,'4.99','2006-02-14 15:16:03','2006-02-15 22:14:45'),(6622,245,2,79,'4.99','2005-05-25 12:11:07','2006-02-15 22:14:45'),(6623,245,1,241,'0.99','2005-05-26 12:49:01','2006-02-15 22:14:45'),(6624,245,1,519,'7.99','2005-05-28 03:22:33','2006-02-15 22:14:45'),(6625,245,1,719,'2.99','2005-05-29 05:16:05','2006-02-15 22:14:45'),(6626,245,2,725,'2.99','2005-05-29 06:03:41','2006-02-15 22:14:45'),(6627,245,2,948,'8.99','2005-05-30 15:44:27','2006-02-15 22:14:45'),(6628,245,1,1377,'2.99','2005-06-15 15:02:03','2006-02-15 22:14:45'),(6629,245,1,2122,'2.99','2005-06-17 20:48:27','2006-02-15 22:14:45'),(6630,245,1,3157,'2.99','2005-06-20 21:07:54','2006-02-15 22:14:45'),(6631,245,1,3634,'2.99','2005-07-06 06:51:14','2006-02-15 22:14:45'),(6632,245,2,5321,'2.99','2005-07-09 16:26:33','2006-02-15 22:14:45'),(6633,245,1,5764,'4.99','2005-07-10 12:58:16','2006-02-15 22:14:45'),(6634,245,2,6242,'2.99','2005-07-11 14:45:04','2006-02-15 22:14:45'),(6635,245,1,6795,'5.99','2005-07-12 16:41:00','2006-02-15 22:14:45'),(6636,245,2,6962,'0.99','2005-07-27 00:10:58','2006-02-15 22:14:45'),(6637,245,1,7230,'4.99','2005-07-27 10:01:41','2006-02-15 22:14:45'),(6638,245,2,7233,'5.99','2005-07-27 10:08:36','2006-02-15 22:14:45'),(6639,245,1,7358,'0.99','2005-07-27 14:49:44','2006-02-15 22:14:45'),(6640,245,2,7397,'4.99','2005-07-27 16:05:00','2006-02-15 22:14:45'),(6641,245,2,8701,'6.99','2005-07-29 17:02:35','2006-02-15 22:14:46'),(6642,245,1,8811,'10.99','2005-07-29 21:46:21','2006-02-15 22:14:46'),(6643,245,2,9088,'0.99','2005-07-30 08:21:02','2006-02-15 22:14:46'),(6644,245,2,9169,'4.99','2005-07-30 11:35:00','2006-02-15 22:14:46'),(6645,245,1,9813,'6.99','2005-07-31 11:29:23','2006-02-15 22:14:46'),(6646,245,1,10087,'3.99','2005-07-31 20:15:22','2006-02-15 22:14:46'),(6647,245,2,11061,'0.99','2005-08-02 06:50:18','2006-02-15 22:14:46'),(6648,245,1,11105,'0.99','2005-08-02 08:13:31','2006-02-15 22:14:46'),(6649,245,1,11211,'0.99','2005-08-02 12:16:48','2006-02-15 22:14:46'),(6650,245,1,12303,'7.99','2005-08-18 05:43:22','2006-02-15 22:14:46'),(6651,245,1,13286,'0.99','2005-08-19 18:28:07','2006-02-15 22:14:46'),(6652,245,1,15782,'6.99','2005-08-23 13:43:26','2006-02-15 22:14:46'),(6653,245,2,12682,'2.99','2006-02-14 15:16:03','2006-02-15 22:14:46'),(6654,246,1,124,'6.99','2005-05-25 20:46:11','2006-02-15 22:14:46'),(6655,246,2,421,'8.99','2005-05-27 15:30:13','2006-02-15 22:14:46'),(6656,246,2,434,'5.99','2005-05-27 16:54:27','2006-02-15 22:14:46'),(6657,246,1,699,'3.99','2005-05-29 02:11:44','2006-02-15 22:14:46'),(6658,246,1,1051,'4.99','2005-05-31 07:02:09','2006-02-15 22:14:46'),(6659,246,2,1448,'1.99','2005-06-15 19:17:16','2006-02-15 22:14:46'),(6660,246,1,1968,'2.99','2005-06-17 09:20:36','2006-02-15 22:14:46'),(6661,246,2,2704,'1.99','2005-06-19 13:50:10','2006-02-15 22:14:46'),(6662,246,1,2725,'0.99','2005-06-19 15:01:23','2006-02-15 22:14:46'),(6663,246,1,3152,'4.99','2005-06-20 20:42:41','2006-02-15 22:14:46'),(6664,246,1,4092,'7.99','2005-07-07 05:54:18','2006-02-15 22:14:46'),(6665,246,2,4905,'4.99','2005-07-08 20:56:00','2006-02-15 22:14:46'),(6666,246,2,4994,'2.99','2005-07-09 00:54:13','2006-02-15 22:14:46'),(6667,246,2,5347,'0.99','2005-07-09 17:31:32','2006-02-15 22:14:46'),(6668,246,1,6688,'4.99','2005-07-12 12:22:12','2006-02-15 22:14:46'),(6669,246,2,9525,'5.99','2005-07-31 01:02:18','2006-02-15 22:14:46'),(6670,246,2,10208,'4.99','2005-08-01 00:54:51','2006-02-15 22:14:46'),(6671,246,2,10683,'2.99','2005-08-01 17:33:03','2006-02-15 22:14:47'),(6672,246,2,13418,'5.99','2005-08-19 22:53:56','2006-02-15 22:14:47'),(6673,246,1,13750,'6.99','2005-08-20 11:11:42','2006-02-15 22:14:47'),(6674,246,1,13987,'4.99','2005-08-20 19:19:30','2006-02-15 22:14:47'),(6675,246,1,14360,'6.99','2005-08-21 09:16:40','2006-02-15 22:14:47'),(6676,246,1,15746,'2.99','2005-08-23 12:26:19','2006-02-15 22:14:47'),(6677,247,1,189,'4.99','2005-05-26 06:01:41','2006-02-15 22:14:47'),(6678,247,2,448,'3.99','2005-05-27 19:03:08','2006-02-15 22:14:47'),(6679,247,1,450,'6.99','2005-05-27 19:18:54','2006-02-15 22:14:47'),(6680,247,1,2288,'5.99','2005-06-18 07:23:17','2006-02-15 22:14:47'),(6681,247,2,3955,'2.99','2005-07-06 21:58:08','2006-02-15 22:14:47'),(6682,247,2,4198,'6.99','2005-07-07 11:08:11','2006-02-15 22:14:47'),(6683,247,1,4492,'2.99','2005-07-08 01:32:04','2006-02-15 22:14:47'),(6684,247,2,4995,'2.99','2005-07-09 00:57:46','2006-02-15 22:14:47'),(6685,247,1,5328,'6.99','2005-07-09 16:48:29','2006-02-15 22:14:47'),(6686,247,1,5842,'4.99','2005-07-10 17:11:37','2006-02-15 22:14:47'),(6687,247,1,7963,'5.99','2005-07-28 13:48:38','2006-02-15 22:14:47'),(6688,247,1,10279,'1.99','2005-08-01 03:26:44','2006-02-15 22:14:47'),(6689,247,1,10410,'6.99','2005-08-01 07:53:29','2006-02-15 22:14:47'),(6690,247,2,11204,'2.99','2005-08-02 11:56:31','2006-02-15 22:14:47'),(6691,247,2,11306,'2.99','2005-08-02 15:45:10','2006-02-15 22:14:47'),(6692,247,1,11495,'0.99','2005-08-16 22:51:20','2006-02-15 22:14:47'),(6693,247,2,12265,'4.99','2005-08-18 04:22:01','2006-02-15 22:14:47'),(6694,247,1,12482,'7.99','2005-08-18 12:37:36','2006-02-15 22:14:47'),(6695,247,1,12491,'4.99','2005-08-18 12:48:45','2006-02-15 22:14:47'),(6696,247,1,12824,'4.99','2005-08-19 01:18:00','2006-02-15 22:14:47'),(6697,247,1,14041,'4.99','2005-08-20 21:45:23','2006-02-15 22:14:47'),(6698,247,1,15783,'4.99','2005-08-23 13:45:44','2006-02-15 22:14:47'),(6699,248,2,330,'7.99','2005-05-27 02:15:30','2006-02-15 22:14:47'),(6700,248,1,618,'4.99','2005-05-28 15:50:07','2006-02-15 22:14:47'),(6701,248,1,2066,'3.99','2005-06-17 16:07:08','2006-02-15 22:14:48'),(6702,248,2,2371,'0.99','2005-06-18 14:35:29','2006-02-15 22:14:48'),(6703,248,1,3910,'0.99','2005-07-06 20:05:18','2006-02-15 22:14:48'),(6704,248,2,4541,'4.99','2005-07-08 04:04:19','2006-02-15 22:14:48'),(6705,248,1,4841,'0.99','2005-07-08 18:18:23','2006-02-15 22:14:48'),(6706,248,1,5370,'2.99','2005-07-09 18:43:19','2006-02-15 22:14:48'),(6707,248,2,6617,'2.99','2005-07-12 08:39:56','2006-02-15 22:14:48'),(6708,248,2,7778,'5.99','2005-07-28 07:10:11','2006-02-15 22:14:48'),(6709,248,2,10418,'4.99','2005-08-01 08:11:07','2006-02-15 22:14:48'),(6710,248,1,12241,'0.99','2005-08-18 03:33:17','2006-02-15 22:14:48'),(6711,248,1,13918,'0.99','2005-08-20 16:47:32','2006-02-15 22:14:48'),(6712,248,2,14704,'0.99','2005-08-21 21:02:22','2006-02-15 22:14:48'),(6713,248,2,14885,'5.99','2005-08-22 03:58:29','2006-02-15 22:14:48'),(6714,249,2,316,'4.99','2005-05-26 23:22:55','2006-02-15 22:14:48'),(6715,249,2,400,'2.99','2005-05-27 12:51:44','2006-02-15 22:14:48'),(6716,249,1,438,'6.99','2005-05-27 17:52:34','2006-02-15 22:14:48'),(6717,249,1,597,'3.99','2005-05-28 14:01:02','2006-02-15 22:14:48'),(6718,249,1,1204,'0.99','2005-06-15 02:21:46','2006-02-15 22:14:48'),(6719,249,1,1473,'5.99','2005-06-15 20:55:20','2006-02-15 22:14:48'),(6720,249,2,1753,'2.99','2005-06-16 17:08:17','2006-02-15 22:14:48'),(6721,249,2,2129,'1.99','2005-06-17 20:58:32','2006-02-15 22:14:48'),(6722,249,2,3175,'7.99','2005-06-20 22:30:23','2006-02-15 22:14:48'),(6723,249,1,4352,'9.99','2005-07-07 19:15:58','2006-02-15 22:14:48'),(6724,249,1,5011,'4.99','2005-07-09 01:44:40','2006-02-15 22:14:48'),(6725,249,1,5275,'4.99','2005-07-09 14:34:18','2006-02-15 22:14:48'),(6726,249,2,5639,'3.99','2005-07-10 06:33:39','2006-02-15 22:14:48'),(6727,249,2,6670,'7.99','2005-07-12 11:44:33','2006-02-15 22:14:48'),(6728,249,1,7544,'7.99','2005-07-27 21:47:37','2006-02-15 22:14:48'),(6729,249,1,7804,'2.99','2005-07-28 07:56:00','2006-02-15 22:14:48'),(6730,249,2,7881,'4.99','2005-07-28 10:33:22','2006-02-15 22:14:48'),(6731,249,1,11124,'1.99','2005-08-02 08:55:25','2006-02-15 22:14:49'),(6732,249,1,11159,'4.99','2005-08-02 10:00:55','2006-02-15 22:14:49'),(6733,249,2,11668,'0.99','2005-08-17 05:47:32','2006-02-15 22:14:49'),(6734,249,2,13981,'4.99','2005-08-20 19:07:20','2006-02-15 22:14:49'),(6735,249,2,14285,'0.99','2005-08-21 06:50:48','2006-02-15 22:14:49'),(6736,249,1,15160,'6.99','2005-08-22 14:33:50','2006-02-15 22:14:49'),(6737,250,1,61,'5.99','2005-05-25 09:01:57','2006-02-15 22:14:49'),(6738,250,1,176,'3.99','2005-05-26 03:47:39','2006-02-15 22:14:49'),(6739,250,1,637,'4.99','2005-05-28 18:14:29','2006-02-15 22:14:49'),(6740,250,2,687,'0.99','2005-05-29 00:32:09','2006-02-15 22:14:49'),(6741,250,1,1146,'2.99','2005-05-31 20:34:45','2006-02-15 22:14:49'),(6742,250,1,2432,'4.99','2005-06-18 17:59:18','2006-02-15 22:14:49'),(6743,250,1,3635,'4.99','2005-07-06 06:55:36','2006-02-15 22:14:49'),(6744,250,1,3951,'3.99','2005-07-06 21:50:41','2006-02-15 22:14:49'),(6745,250,1,5479,'2.99','2005-07-09 23:47:33','2006-02-15 22:14:49'),(6746,250,1,5540,'0.99','2005-07-10 02:44:21','2006-02-15 22:14:49'),(6747,250,1,5998,'2.99','2005-07-11 01:20:46','2006-02-15 22:14:49'),(6748,250,1,8579,'2.99','2005-07-29 11:59:22','2006-02-15 22:14:49'),(6749,250,2,9099,'0.99','2005-07-30 08:45:48','2006-02-15 22:14:49'),(6750,250,2,10604,'4.99','2005-08-01 14:35:08','2006-02-15 22:14:49'),(6751,250,1,12361,'0.99','2005-08-18 07:47:31','2006-02-15 22:14:49'),(6752,250,1,12810,'0.99','2005-08-19 00:44:10','2006-02-15 22:14:49'),(6753,250,2,14565,'4.99','2005-08-21 16:24:45','2006-02-15 22:14:49'),(6754,250,1,14587,'5.99','2005-08-21 17:20:55','2006-02-15 22:14:49'),(6755,250,2,14814,'4.99','2005-08-22 01:12:14','2006-02-15 22:14:49'),(6756,250,2,15247,'6.99','2005-08-22 17:52:05','2006-02-15 22:14:49'),(6757,251,1,264,'2.99','2005-05-26 16:00:49','2006-02-15 22:14:49'),(6758,251,1,309,'1.99','2005-05-26 22:38:10','2006-02-15 22:14:49'),(6759,251,2,393,'2.99','2005-05-27 11:18:25','2006-02-15 22:14:49'),(6760,251,2,1069,'3.99','2005-05-31 09:32:31','2006-02-15 22:14:49'),(6761,251,1,1091,'4.99','2005-05-31 12:11:04','2006-02-15 22:14:50'),(6762,251,2,1155,'2.99','2005-05-31 22:17:11','2006-02-15 22:14:50'),(6763,251,1,2238,'6.99','2005-06-18 04:22:06','2006-02-15 22:14:50'),(6764,251,2,3422,'7.99','2005-06-21 17:24:40','2006-02-15 22:14:50'),(6765,251,1,3464,'2.99','2005-06-21 22:08:58','2006-02-15 22:14:50'),(6766,251,1,3799,'4.99','2005-07-06 15:00:14','2006-02-15 22:14:50'),(6767,251,2,4026,'3.99','2005-07-07 02:15:48','2006-02-15 22:14:50'),(6768,251,2,4848,'2.99','2005-07-08 18:30:16','2006-02-15 22:14:50'),(6769,251,2,5012,'2.99','2005-07-09 01:45:04','2006-02-15 22:14:50'),(6770,251,2,5979,'2.99','2005-07-11 00:17:09','2006-02-15 22:14:50'),(6771,251,2,6413,'6.99','2005-07-11 23:26:11','2006-02-15 22:14:50'),(6772,251,2,7338,'8.99','2005-07-27 14:13:34','2006-02-15 22:14:50'),(6773,251,2,8443,'2.99','2005-07-29 07:33:12','2006-02-15 22:14:50'),(6774,251,2,8982,'0.99','2005-07-30 04:31:02','2006-02-15 22:14:50'),(6775,251,1,9196,'2.99','2005-07-30 12:30:19','2006-02-15 22:14:50'),(6776,251,1,9892,'0.99','2005-07-31 14:06:25','2006-02-15 22:14:50'),(6777,251,1,10575,'7.99','2005-08-01 13:41:41','2006-02-15 22:14:50'),(6778,251,1,11733,'0.99','2005-08-17 08:31:03','2006-02-15 22:14:50'),(6779,251,2,12047,'3.99','2005-08-17 20:48:32','2006-02-15 22:14:50'),(6780,251,2,12666,'4.99','2005-08-18 19:11:41','2006-02-15 22:14:50'),(6781,251,2,13121,'2.99','2005-08-19 11:51:39','2006-02-15 22:14:50'),(6782,251,1,13243,'2.99','2005-08-19 16:33:16','2006-02-15 22:14:50'),(6783,251,2,13260,'6.99','2005-08-19 17:09:22','2006-02-15 22:14:50'),(6784,251,1,14292,'0.99','2005-08-21 07:06:20','2006-02-15 22:14:50'),(6785,251,2,15647,'2.99','2005-08-23 08:23:56','2006-02-15 22:14:50'),(6786,251,2,15870,'4.99','2005-08-23 16:23:08','2006-02-15 22:14:50'),(6787,251,1,14107,'0.99','2006-02-14 15:16:03','2006-02-15 22:14:50'),(6788,252,1,707,'4.99','2005-05-29 03:18:19','2006-02-15 22:14:50'),(6789,252,1,1095,'0.99','2005-05-31 13:15:41','2006-02-15 22:14:50'),(6790,252,1,1395,'5.99','2005-06-15 16:21:04','2006-02-15 22:14:51'),(6791,252,2,2716,'4.99','2005-06-19 14:40:17','2006-02-15 22:14:51'),(6792,252,1,2968,'0.99','2005-06-20 07:41:47','2006-02-15 22:14:51'),(6793,252,2,4372,'0.99','2005-07-07 20:09:01','2006-02-15 22:14:51'),(6794,252,2,5554,'2.99','2005-07-10 03:03:38','2006-02-15 22:14:51'),(6795,252,1,6357,'0.99','2005-07-11 20:58:51','2006-02-15 22:14:51'),(6796,252,2,6369,'0.99','2005-07-11 21:23:36','2006-02-15 22:14:51'),(6797,252,1,7024,'4.99','2005-07-27 02:36:40','2006-02-15 22:14:51'),(6798,252,2,7121,'0.99','2005-07-27 05:58:32','2006-02-15 22:14:51'),(6799,252,2,7168,'0.99','2005-07-27 07:51:11','2006-02-15 22:14:51'),(6800,252,1,7670,'0.99','2005-07-28 02:44:25','2006-02-15 22:14:51'),(6801,252,1,8636,'5.99','2005-07-29 14:24:13','2006-02-15 22:14:51'),(6802,252,1,8899,'0.99','2005-07-30 01:05:30','2006-02-15 22:14:51'),(6803,252,2,10314,'0.99','2005-08-01 04:31:18','2006-02-15 22:14:51'),(6804,252,2,10834,'2.99','2005-08-01 23:28:00','2006-02-15 22:14:51'),(6805,252,2,11764,'0.99','2005-08-17 09:51:54','2006-02-15 22:14:51'),(6806,252,1,13385,'4.99','2005-08-19 21:39:35','2006-02-15 22:14:51'),(6807,252,2,13989,'5.99','2005-08-20 19:27:50','2006-02-15 22:14:51'),(6808,252,1,14774,'4.99','2005-08-21 23:52:32','2006-02-15 22:14:51'),(6809,252,2,13756,'4.99','2006-02-14 15:16:03','2006-02-15 22:14:51'),(6810,253,1,566,'6.99','2005-05-28 09:51:39','2006-02-15 22:14:51'),(6811,253,1,648,'0.99','2005-05-28 19:25:54','2006-02-15 22:14:51'),(6812,253,1,986,'2.99','2005-05-30 22:22:52','2006-02-15 22:14:51'),(6813,253,2,1378,'1.99','2005-06-15 15:03:15','2006-02-15 22:14:51'),(6814,253,2,1606,'6.99','2005-06-16 06:18:31','2006-02-15 22:14:51'),(6815,253,2,2081,'5.99','2005-06-17 17:05:02','2006-02-15 22:14:51'),(6816,253,1,2142,'4.99','2005-06-17 21:55:43','2006-02-15 22:14:51'),(6817,253,1,2454,'4.99','2005-06-18 19:32:51','2006-02-15 22:14:51'),(6818,253,2,2636,'4.99','2005-06-19 09:13:06','2006-02-15 22:14:51'),(6819,253,1,3658,'7.99','2005-07-06 08:01:08','2006-02-15 22:14:52'),(6820,253,1,5505,'2.99','2005-07-10 00:38:48','2006-02-15 22:14:52'),(6821,253,1,5602,'4.99','2005-07-10 05:02:22','2006-02-15 22:14:52'),(6822,253,2,7689,'2.99','2005-07-28 03:21:24','2006-02-15 22:14:52'),(6823,253,2,7851,'0.99','2005-07-28 09:31:58','2006-02-15 22:14:52'),(6824,253,2,7887,'2.99','2005-07-28 10:40:12','2006-02-15 22:14:52'),(6825,253,2,8752,'2.99','2005-07-29 19:15:07','2006-02-15 22:14:52'),(6826,253,2,9606,'0.99','2005-07-31 03:50:46','2006-02-15 22:14:52'),(6827,253,2,9618,'6.99','2005-07-31 04:16:14','2006-02-15 22:14:52'),(6828,253,2,10404,'4.99','2005-08-01 07:31:25','2006-02-15 22:14:52'),(6829,253,1,10660,'2.99','2005-08-01 16:48:01','2006-02-15 22:14:52'),(6830,253,2,10881,'6.99','2005-08-02 00:38:14','2006-02-15 22:14:52'),(6831,253,1,12572,'0.99','2005-08-18 15:32:54','2006-02-15 22:14:52'),(6832,253,2,12827,'5.99','2005-08-19 01:27:23','2006-02-15 22:14:52'),(6833,253,1,13126,'5.99','2005-08-19 12:00:28','2006-02-15 22:14:52'),(6834,253,2,14086,'3.99','2005-08-20 23:47:54','2006-02-15 22:14:52'),(6835,253,2,14283,'4.99','2005-08-21 06:44:14','2006-02-15 22:14:52'),(6836,253,1,14640,'7.99','2005-08-21 19:03:19','2006-02-15 22:14:52'),(6837,253,2,14655,'4.99','2005-08-21 19:37:10','2006-02-15 22:14:52'),(6838,253,2,15221,'2.99','2005-08-22 17:12:29','2006-02-15 22:14:52'),(6839,254,1,183,'2.99','2005-05-26 05:01:18','2006-02-15 22:14:52'),(6840,254,1,1108,'5.99','2005-05-31 15:05:12','2006-02-15 22:14:52'),(6841,254,1,1285,'2.99','2005-06-15 08:33:06','2006-02-15 22:14:52'),(6842,254,2,1390,'0.99','2005-06-15 16:06:29','2006-02-15 22:14:52'),(6843,254,1,2082,'2.99','2005-06-17 17:13:32','2006-02-15 22:14:52'),(6844,254,1,2138,'2.99','2005-06-17 21:28:14','2006-02-15 22:14:52'),(6845,254,2,2687,'3.99','2005-06-19 12:46:52','2006-02-15 22:14:52'),(6846,254,1,3882,'4.99','2005-07-06 18:38:21','2006-02-15 22:14:52'),(6847,254,2,5042,'2.99','2005-07-09 03:20:30','2006-02-15 22:14:52'),(6848,254,1,5072,'3.99','2005-07-09 05:01:58','2006-02-15 22:14:52'),(6849,254,2,5080,'2.99','2005-07-09 05:23:55','2006-02-15 22:14:53'),(6850,254,1,5537,'0.99','2005-07-10 02:35:41','2006-02-15 22:14:53'),(6851,254,1,5550,'5.99','2005-07-10 02:58:35','2006-02-15 22:14:53'),(6852,254,1,5826,'7.99','2005-07-10 16:21:02','2006-02-15 22:14:53'),(6853,254,2,5930,'4.99','2005-07-10 21:59:32','2006-02-15 22:14:53'),(6854,254,2,7011,'0.99','2005-07-27 01:58:34','2006-02-15 22:14:53'),(6855,254,1,7413,'4.99','2005-07-27 16:45:40','2006-02-15 22:14:53'),(6856,254,2,8216,'7.99','2005-07-28 23:43:59','2006-02-15 22:14:53'),(6857,254,2,8581,'4.99','2005-07-29 12:02:06','2006-02-15 22:14:53'),(6858,254,2,9494,'1.99','2005-07-30 23:52:46','2006-02-15 22:14:53'),(6859,254,1,10522,'4.99','2005-08-01 11:48:51','2006-02-15 22:14:53'),(6860,254,1,11190,'0.99','2005-08-02 11:21:34','2006-02-15 22:14:53'),(6861,254,1,11665,'6.99','2005-08-17 05:36:57','2006-02-15 22:14:53'),(6862,254,2,12148,'0.99','2005-08-18 00:13:15','2006-02-15 22:14:53'),(6863,254,1,12206,'0.99','2005-08-18 02:22:20','2006-02-15 22:14:53'),(6864,254,1,12247,'2.99','2005-08-18 03:51:51','2006-02-15 22:14:53'),(6865,254,1,12874,'0.99','2005-08-19 03:07:57','2006-02-15 22:14:53'),(6866,254,2,13001,'4.99','2005-08-19 07:36:44','2006-02-15 22:14:53'),(6867,254,1,13045,'4.99','2005-08-19 09:17:35','2006-02-15 22:14:53'),(6868,254,2,13130,'2.99','2005-08-19 12:06:42','2006-02-15 22:14:53'),(6869,254,2,14497,'4.99','2005-08-21 14:09:47','2006-02-15 22:14:53'),(6870,254,1,15774,'0.99','2005-08-23 13:25:08','2006-02-15 22:14:53'),(6871,255,1,1235,'2.99','2005-06-15 04:31:28','2006-02-15 22:14:53'),(6872,255,1,1420,'6.99','2005-06-15 17:56:14','2006-02-15 22:14:53'),(6873,255,2,1681,'2.99','2005-06-16 11:38:17','2006-02-15 22:14:53'),(6874,255,2,3442,'2.99','2005-06-21 20:06:51','2006-02-15 22:14:53'),(6875,255,1,4547,'0.99','2005-07-08 04:20:19','2006-02-15 22:14:53'),(6876,255,1,5706,'1.99','2005-07-10 10:21:46','2006-02-15 22:14:53'),(6877,255,1,5943,'0.99','2005-07-10 22:48:13','2006-02-15 22:14:53'),(6878,255,2,7475,'8.99','2005-07-27 19:07:43','2006-02-15 22:14:54'),(6879,255,1,7646,'2.99','2005-07-28 01:31:45','2006-02-15 22:14:54'),(6880,255,1,8562,'0.99','2005-07-29 11:32:13','2006-02-15 22:14:54'),(6881,255,1,9061,'6.99','2005-07-30 07:21:52','2006-02-15 22:14:54'),(6882,255,2,11979,'4.99','2005-08-17 18:07:13','2006-02-15 22:14:54'),(6883,255,2,12176,'7.99','2005-08-18 01:10:33','2006-02-15 22:14:54'),(6884,255,2,13154,'2.99','2005-08-19 13:09:54','2006-02-15 22:14:54'),(6885,255,1,13268,'0.99','2005-08-19 17:33:50','2006-02-15 22:14:54'),(6886,255,2,13683,'0.99','2005-08-20 08:54:55','2006-02-15 22:14:54'),(6887,255,1,13758,'8.99','2005-08-20 11:21:26','2006-02-15 22:14:54'),(6888,255,2,14600,'3.99','2005-08-21 17:45:21','2006-02-15 22:14:54'),(6889,256,1,51,'4.99','2005-05-25 06:49:10','2006-02-15 22:14:54'),(6890,256,1,232,'0.99','2005-05-26 11:38:05','2006-02-15 22:14:54'),(6891,256,2,738,'4.99','2005-05-29 08:20:08','2006-02-15 22:14:54'),(6892,256,1,935,'2.99','2005-05-30 13:29:36','2006-02-15 22:14:54'),(6893,256,1,1116,'0.99','2005-05-31 16:10:46','2006-02-15 22:14:54'),(6894,256,1,1555,'2.99','2005-06-16 02:17:07','2006-02-15 22:14:54'),(6895,256,2,1965,'0.99','2005-06-17 09:17:39','2006-02-15 22:14:54'),(6896,256,2,1973,'4.99','2005-06-17 09:26:15','2006-02-15 22:14:54'),(6897,256,2,2230,'4.99','2005-06-18 03:50:49','2006-02-15 22:14:54'),(6898,256,1,2380,'6.99','2005-06-18 15:00:04','2006-02-15 22:14:54'),(6899,256,2,2561,'4.99','2005-06-19 03:14:52','2006-02-15 22:14:54'),(6900,256,1,2839,'4.99','2005-06-19 22:07:24','2006-02-15 22:14:54'),(6901,256,1,4130,'0.99','2005-07-07 07:51:53','2006-02-15 22:14:54'),(6902,256,2,4182,'0.99','2005-07-07 10:28:00','2006-02-15 22:14:54'),(6903,256,1,5179,'2.99','2005-07-09 10:00:44','2006-02-15 22:14:54'),(6904,256,1,6298,'0.99','2005-07-11 17:42:33','2006-02-15 22:14:54'),(6905,256,1,7661,'3.99','2005-07-28 02:10:27','2006-02-15 22:14:54'),(6906,256,2,9424,'2.99','2005-07-30 21:10:56','2006-02-15 22:14:54'),(6907,256,2,10759,'4.99','2005-08-01 20:22:51','2006-02-15 22:14:55'),(6908,256,2,11011,'2.99','2005-08-02 05:07:07','2006-02-15 22:14:55'),(6909,256,2,11628,'8.99','2005-08-17 04:27:18','2006-02-15 22:14:55'),(6910,256,2,13457,'0.99','2005-08-20 00:33:22','2006-02-15 22:14:55'),(6911,256,1,13651,'0.99','2005-08-20 07:50:08','2006-02-15 22:14:55'),(6912,256,1,14003,'6.99','2005-08-20 20:16:06','2006-02-15 22:14:55'),(6913,256,2,14036,'4.99','2005-08-20 21:35:27','2006-02-15 22:14:55'),(6914,256,2,14445,'2.99','2005-08-21 12:07:42','2006-02-15 22:14:55'),(6915,256,2,14458,'3.99','2005-08-21 12:47:53','2006-02-15 22:14:55'),(6916,256,2,15609,'2.99','2005-08-23 06:56:04','2006-02-15 22:14:55'),(6917,256,2,15861,'4.99','2005-08-23 16:15:45','2006-02-15 22:14:55'),(6918,256,1,15864,'7.99','2005-08-23 16:18:12','2006-02-15 22:14:55'),(6919,257,2,139,'2.99','2005-05-25 23:00:21','2006-02-15 22:14:55'),(6920,257,2,244,'2.99','2005-05-26 13:40:40','2006-02-15 22:14:55'),(6921,257,2,705,'2.99','2005-05-29 02:48:52','2006-02-15 22:14:55'),(6922,257,1,2557,'0.99','2005-06-19 03:08:51','2006-02-15 22:14:55'),(6923,257,2,3083,'4.99','2005-06-20 15:33:47','2006-02-15 22:14:55'),(6924,257,2,4462,'6.99','2005-07-08 00:02:49','2006-02-15 22:14:55'),(6925,257,2,4574,'4.99','2005-07-08 05:39:42','2006-02-15 22:14:55'),(6926,257,1,5495,'6.99','2005-07-10 00:16:54','2006-02-15 22:14:55'),(6927,257,1,5858,'4.99','2005-07-10 18:00:07','2006-02-15 22:14:55'),(6928,257,1,6422,'5.99','2005-07-11 23:46:19','2006-02-15 22:14:55'),(6929,257,2,6711,'5.99','2005-07-12 13:23:40','2006-02-15 22:14:55'),(6930,257,2,7007,'4.99','2005-07-27 01:43:39','2006-02-15 22:14:55'),(6931,257,1,7176,'2.99','2005-07-27 08:04:28','2006-02-15 22:14:55'),(6932,257,1,7496,'1.99','2005-07-27 20:04:05','2006-02-15 22:14:55'),(6933,257,2,7510,'2.99','2005-07-27 20:37:57','2006-02-15 22:14:55'),(6934,257,2,7518,'5.99','2005-07-27 21:01:16','2006-02-15 22:14:55'),(6935,257,2,8156,'3.99','2005-07-28 20:59:04','2006-02-15 22:14:56'),(6936,257,2,8252,'2.99','2005-07-29 00:54:17','2006-02-15 22:14:56'),(6937,257,1,8344,'4.99','2005-07-29 04:45:25','2006-02-15 22:14:56'),(6938,257,1,8640,'4.99','2005-07-29 14:34:17','2006-02-15 22:14:56'),(6939,257,2,8946,'6.99','2005-07-30 03:14:53','2006-02-15 22:14:56'),(6940,257,1,9800,'4.99','2005-07-31 11:00:58','2006-02-15 22:14:56'),(6941,257,2,10142,'4.99','2005-07-31 22:10:54','2006-02-15 22:14:56'),(6942,257,1,11230,'4.99','2005-08-02 12:59:08','2006-02-15 22:14:56'),(6943,257,1,11394,'0.99','2005-08-02 18:44:45','2006-02-15 22:14:56'),(6944,257,2,11545,'6.99','2005-08-17 00:56:06','2006-02-15 22:14:56'),(6945,257,2,11860,'1.99','2005-08-17 13:52:26','2006-02-15 22:14:56'),(6946,257,2,12841,'2.99','2005-08-19 01:55:55','2006-02-15 22:14:56'),(6947,257,1,12904,'5.99','2005-08-19 04:10:50','2006-02-15 22:14:56'),(6948,257,2,13203,'7.99','2005-08-19 15:00:58','2006-02-15 22:14:56'),(6949,257,2,13218,'0.99','2005-08-19 15:39:39','2006-02-15 22:14:56'),(6950,257,1,13389,'2.99','2005-08-19 21:52:51','2006-02-15 22:14:56'),(6951,257,2,13846,'5.99','2005-08-20 14:32:31','2006-02-15 22:14:56'),(6952,257,2,14115,'0.99','2005-08-21 01:10:29','2006-02-15 22:14:56'),(6953,257,1,15025,'0.99','2005-08-22 08:57:24','2006-02-15 22:14:56'),(6954,257,1,15967,'2.99','2005-08-23 19:50:06','2006-02-15 22:14:56'),(6955,257,2,15968,'0.99','2005-08-23 19:51:29','2006-02-15 22:14:56'),(6956,258,1,1743,'2.99','2005-06-16 16:38:10','2006-02-15 22:14:56'),(6957,258,2,2678,'0.99','2005-06-19 12:12:23','2006-02-15 22:14:56'),(6958,258,2,2931,'8.99','2005-06-20 04:50:45','2006-02-15 22:14:56'),(6959,258,2,4408,'2.99','2005-07-07 21:41:06','2006-02-15 22:14:56'),(6960,258,1,4677,'5.99','2005-07-08 10:30:36','2006-02-15 22:14:56'),(6961,258,2,4897,'0.99','2005-07-08 20:25:11','2006-02-15 22:14:56'),(6962,258,2,5312,'5.99','2005-07-09 16:03:09','2006-02-15 22:14:56'),(6963,258,1,5674,'0.99','2005-07-10 08:26:26','2006-02-15 22:14:57'),(6964,258,1,5935,'9.99','2005-07-10 22:11:04','2006-02-15 22:14:57'),(6965,258,2,6012,'4.99','2005-07-11 02:00:12','2006-02-15 22:14:57'),(6966,258,1,7814,'2.99','2005-07-28 08:09:48','2006-02-15 22:14:57'),(6967,258,1,8675,'4.99','2005-07-29 15:56:18','2006-02-15 22:14:57'),(6968,258,2,9069,'4.99','2005-07-30 07:39:59','2006-02-15 22:14:57'),(6969,258,2,10293,'1.99','2005-08-01 03:44:26','2006-02-15 22:14:57'),(6970,258,2,10315,'4.99','2005-08-01 04:34:45','2006-02-15 22:14:57'),(6971,258,1,10325,'5.99','2005-08-01 04:52:12','2006-02-15 22:14:57'),(6972,258,2,10332,'6.99','2005-08-01 04:57:32','2006-02-15 22:14:57'),(6973,258,1,10393,'0.99','2005-08-01 06:52:50','2006-02-15 22:14:57'),(6974,258,1,12246,'5.99','2005-08-18 03:48:41','2006-02-15 22:14:57'),(6975,258,2,12296,'3.99','2005-08-18 05:16:28','2006-02-15 22:14:57'),(6976,258,1,13491,'4.99','2005-08-20 01:30:56','2006-02-15 22:14:57'),(6977,258,1,13695,'6.99','2005-08-20 09:13:25','2006-02-15 22:14:57'),(6978,258,2,13897,'2.99','2005-08-20 16:02:28','2006-02-15 22:14:57'),(6979,258,2,14901,'6.99','2005-08-22 04:31:37','2006-02-15 22:14:57'),(6980,259,2,722,'6.99','2005-05-29 05:30:31','2006-02-15 22:14:57'),(6981,259,2,901,'2.99','2005-05-30 09:40:40','2006-02-15 22:14:57'),(6982,259,1,1147,'5.99','2005-05-31 20:37:52','2006-02-15 22:14:57'),(6983,259,1,1641,'7.99','2005-06-16 08:46:26','2006-02-15 22:14:57'),(6984,259,2,1723,'7.99','2005-06-16 15:14:18','2006-02-15 22:14:57'),(6985,259,2,1813,'2.99','2005-06-16 21:11:00','2006-02-15 22:14:57'),(6986,259,2,2375,'5.99','2005-06-18 14:47:29','2006-02-15 22:14:57'),(6987,259,2,4199,'5.99','2005-07-07 11:13:07','2006-02-15 22:14:57'),(6988,259,2,4489,'4.99','2005-07-08 01:23:58','2006-02-15 22:14:57'),(6989,259,1,6074,'0.99','2005-07-11 04:59:56','2006-02-15 22:14:57'),(6990,259,2,6539,'3.99','2005-07-12 04:50:49','2006-02-15 22:14:57'),(6991,259,2,7188,'2.99','2005-07-27 08:32:08','2006-02-15 22:14:57'),(6992,259,2,7774,'7.99','2005-07-28 07:03:25','2006-02-15 22:14:58'),(6993,259,1,7817,'4.99','2005-07-28 08:20:55','2006-02-15 22:14:58'),(6994,259,2,9205,'6.99','2005-07-30 12:46:40','2006-02-15 22:14:58'),(6995,259,1,9282,'6.99','2005-07-30 15:17:31','2006-02-15 22:14:58'),(6996,259,1,9444,'7.99','2005-07-30 21:48:44','2006-02-15 22:14:58'),(6997,259,1,10510,'3.99','2005-08-01 11:28:30','2006-02-15 22:14:58'),(6998,259,1,10781,'2.99','2005-08-01 21:22:41','2006-02-15 22:14:58'),(6999,259,1,11184,'3.99','2005-08-02 11:01:26','2006-02-15 22:14:58'),(7000,259,2,12680,'6.99','2005-08-18 19:43:46','2006-02-15 22:14:58'),(7001,259,1,13109,'4.99','2005-08-19 11:23:20','2006-02-15 22:14:58'),(7002,259,2,13112,'2.99','2005-08-19 11:27:10','2006-02-15 22:14:58'),(7003,259,2,13366,'4.99','2005-08-19 21:14:45','2006-02-15 22:14:58'),(7004,259,1,13598,'5.99','2005-08-20 05:59:17','2006-02-15 22:14:58'),(7005,259,2,13649,'4.99','2005-08-20 07:48:38','2006-02-15 22:14:58'),(7006,259,2,14067,'6.99','2005-08-20 22:49:23','2006-02-15 22:14:58'),(7007,259,2,14170,'4.99','2005-08-21 03:00:39','2006-02-15 22:14:58'),(7008,259,2,14966,'2.99','2005-08-22 06:45:57','2006-02-15 22:14:58'),(7009,259,1,15425,'10.99','2005-08-23 00:05:57','2006-02-15 22:14:58'),(7010,259,1,15473,'2.99','2005-08-23 01:39:10','2006-02-15 22:14:58'),(7011,259,2,NULL,'1.99','2005-08-23 06:13:16','2006-02-15 22:14:58'),(7012,259,1,15689,'2.99','2005-08-23 09:52:55','2006-02-15 22:14:58'),(7013,260,1,1101,'8.99','2005-05-31 14:13:59','2006-02-15 22:14:58'),(7014,260,1,1626,'3.99','2005-06-16 07:49:47','2006-02-15 22:14:58'),(7015,260,2,2001,'2.99','2005-06-17 11:35:09','2006-02-15 22:14:58'),(7016,260,2,2040,'2.99','2005-06-17 14:18:37','2006-02-15 22:14:58'),(7017,260,1,2091,'10.99','2005-06-17 18:09:04','2006-02-15 22:14:58'),(7018,260,1,2178,'0.99','2005-06-18 00:38:35','2006-02-15 22:14:58'),(7019,260,1,2823,'7.99','2005-06-19 20:30:21','2006-02-15 22:14:58'),(7020,260,2,2958,'3.99','2005-06-20 06:56:20','2006-02-15 22:14:58'),(7021,260,1,3193,'0.99','2005-06-20 23:52:30','2006-02-15 22:14:59'),(7022,260,2,4054,'0.99','2005-07-07 03:42:07','2006-02-15 22:14:59'),(7023,260,2,4741,'6.99','2005-07-08 13:31:23','2006-02-15 22:14:59'),(7024,260,1,4870,'2.99','2005-07-08 19:14:45','2006-02-15 22:14:59'),(7025,260,2,6328,'2.99','2005-07-11 19:09:33','2006-02-15 22:14:59'),(7026,260,2,7072,'0.99','2005-07-27 04:02:33','2006-02-15 22:14:59'),(7027,260,1,7268,'1.99','2005-07-27 11:23:09','2006-02-15 22:14:59'),(7028,260,1,7885,'7.99','2005-07-28 10:37:41','2006-02-15 22:14:59'),(7029,260,1,8475,'1.99','2005-07-29 08:37:41','2006-02-15 22:14:59'),(7030,260,1,8484,'2.99','2005-07-29 08:51:59','2006-02-15 22:14:59'),(7031,260,1,8717,'0.99','2005-07-29 17:40:45','2006-02-15 22:14:59'),(7032,260,1,8933,'0.99','2005-07-30 02:36:06','2006-02-15 22:14:59'),(7033,260,2,9176,'4.99','2005-07-30 11:50:54','2006-02-15 22:14:59'),(7034,260,2,10970,'8.99','2005-08-02 04:06:46','2006-02-15 22:14:59'),(7035,260,1,12852,'0.99','2005-08-19 02:12:40','2006-02-15 22:14:59'),(7036,260,2,13440,'2.99','2005-08-19 23:42:52','2006-02-15 22:14:59'),(7037,260,1,13685,'3.99','2005-08-20 08:57:11','2006-02-15 22:14:59'),(7038,260,1,13966,'2.99','2005-08-20 18:28:28','2006-02-15 22:14:59'),(7039,260,2,13978,'0.99','2005-08-20 19:03:25','2006-02-15 22:14:59'),(7040,260,2,14035,'2.99','2005-08-20 21:31:58','2006-02-15 22:14:59'),(7041,260,2,14441,'2.99','2005-08-21 11:59:38','2006-02-15 22:14:59'),(7042,260,1,14579,'7.99','2005-08-21 16:54:47','2006-02-15 22:14:59'),(7043,260,1,14610,'6.99','2005-08-21 17:59:09','2006-02-15 22:14:59'),(7044,261,1,12,'4.99','2005-05-25 00:19:27','2006-02-15 22:14:59'),(7045,261,2,465,'3.99','2005-05-27 20:44:36','2006-02-15 22:14:59'),(7046,261,2,542,'6.99','2005-05-28 06:42:13','2006-02-15 22:14:59'),(7047,261,1,792,'0.99','2005-05-29 16:32:10','2006-02-15 22:14:59'),(7048,261,1,1760,'2.99','2005-06-16 17:48:37','2006-02-15 22:14:59'),(7049,261,1,1877,'5.99','2005-06-17 02:54:16','2006-02-15 22:15:00'),(7050,261,2,1988,'8.99','2005-06-17 10:42:34','2006-02-15 22:15:00'),(7051,261,2,2072,'3.99','2005-06-17 16:33:32','2006-02-15 22:15:00'),(7052,261,2,2392,'0.99','2005-06-18 15:34:18','2006-02-15 22:15:00'),(7053,261,1,3363,'0.99','2005-06-21 12:25:07','2006-02-15 22:15:00'),(7054,261,1,5122,'3.99','2005-07-09 07:19:35','2006-02-15 22:15:00'),(7055,261,1,5449,'5.99','2005-07-09 22:12:01','2006-02-15 22:15:00'),(7056,261,2,6515,'2.99','2005-07-12 03:50:32','2006-02-15 22:15:00'),(7057,261,1,6743,'0.99','2005-07-12 14:29:25','2006-02-15 22:15:00'),(7058,261,2,9552,'4.99','2005-07-31 02:05:32','2006-02-15 22:15:00'),(7059,261,1,9842,'4.99','2005-07-31 12:24:58','2006-02-15 22:15:00'),(7060,261,1,9869,'4.99','2005-07-31 13:21:54','2006-02-15 22:15:00'),(7061,261,2,10246,'1.99','2005-08-01 02:29:50','2006-02-15 22:15:00'),(7062,261,1,11834,'1.99','2005-08-17 13:00:40','2006-02-15 22:15:00'),(7063,261,2,11928,'2.99','2005-08-17 16:28:24','2006-02-15 22:15:00'),(7064,261,1,12327,'6.99','2005-08-18 06:43:22','2006-02-15 22:15:00'),(7065,261,2,13245,'4.99','2005-08-19 16:43:41','2006-02-15 22:15:00'),(7066,261,2,13506,'5.99','2005-08-20 02:07:06','2006-02-15 22:15:00'),(7067,261,1,13669,'2.99','2005-08-20 08:26:32','2006-02-15 22:15:00'),(7068,261,1,13849,'4.99','2005-08-20 14:42:34','2006-02-15 22:15:00'),(7069,261,2,15397,'4.99','2005-08-22 23:08:46','2006-02-15 22:15:00'),(7070,262,2,984,'4.99','2005-05-30 22:17:17','2006-02-15 22:15:00'),(7071,262,1,1563,'2.99','2005-06-16 02:46:28','2006-02-15 22:15:00'),(7072,262,1,2771,'6.99','2005-06-19 17:54:48','2006-02-15 22:15:00'),(7073,262,2,2850,'8.99','2005-06-19 23:06:28','2006-02-15 22:15:00'),(7074,262,1,2915,'1.99','2005-06-20 03:57:17','2006-02-15 22:15:00'),(7075,262,1,3521,'1.99','2005-07-06 01:00:11','2006-02-15 22:15:00'),(7076,262,1,3699,'3.99','2005-07-06 10:11:25','2006-02-15 22:15:01'),(7077,262,1,4501,'0.99','2005-07-08 02:12:00','2006-02-15 22:15:01'),(7078,262,2,5503,'0.99','2005-07-10 00:35:37','2006-02-15 22:15:01'),(7079,262,1,6291,'0.99','2005-07-11 17:16:40','2006-02-15 22:15:01'),(7080,262,2,6547,'7.99','2005-07-12 04:57:46','2006-02-15 22:15:01'),(7081,262,1,6724,'3.99','2005-07-12 13:45:15','2006-02-15 22:15:01'),(7082,262,2,6762,'7.99','2005-07-12 15:25:33','2006-02-15 22:15:01'),(7083,262,1,6805,'6.99','2005-07-12 17:23:01','2006-02-15 22:15:01'),(7084,262,1,6986,'4.99','2005-07-27 00:59:05','2006-02-15 22:15:01'),(7085,262,1,9105,'6.99','2005-07-30 08:50:25','2006-02-15 22:15:01'),(7086,262,2,10421,'0.99','2005-08-01 08:14:10','2006-02-15 22:15:01'),(7087,262,2,10770,'0.99','2005-08-01 20:45:39','2006-02-15 22:15:01'),(7088,262,2,13466,'2.99','2005-08-20 00:55:16','2006-02-15 22:15:01'),(7089,262,1,13808,'5.99','2005-08-20 12:55:43','2006-02-15 22:15:01'),(7090,262,1,14180,'4.99','2005-08-21 03:16:15','2006-02-15 22:15:01'),(7091,262,2,14465,'3.99','2005-08-21 12:54:22','2006-02-15 22:15:01'),(7092,262,2,14834,'6.99','2005-08-22 01:45:58','2006-02-15 22:15:01'),(7093,262,2,15270,'3.99','2005-08-22 18:48:42','2006-02-15 22:15:01'),(7094,262,1,15456,'0.99','2005-08-23 01:07:01','2006-02-15 22:15:01'),(7095,262,1,15640,'4.99','2005-08-23 08:04:40','2006-02-15 22:15:01'),(7096,262,2,15771,'4.99','2005-08-23 13:18:46','2006-02-15 22:15:01'),(7097,262,1,15918,'3.99','2005-08-23 17:57:35','2006-02-15 22:15:01'),(7098,263,1,97,'4.99','2005-05-25 16:34:24','2006-02-15 22:15:01'),(7099,263,1,266,'0.99','2005-05-26 16:08:05','2006-02-15 22:15:01'),(7100,263,2,2126,'8.99','2005-06-17 20:54:36','2006-02-15 22:15:01'),(7101,263,2,3257,'1.99','2005-06-21 03:47:19','2006-02-15 22:15:01'),(7102,263,1,3578,'4.99','2005-07-06 03:47:05','2006-02-15 22:15:01'),(7103,263,2,3773,'2.99','2005-07-06 13:23:34','2006-02-15 22:15:02'),(7104,263,2,4637,'0.99','2005-07-08 08:49:54','2006-02-15 22:15:02'),(7105,263,2,4682,'2.99','2005-07-08 10:38:27','2006-02-15 22:15:02'),(7106,263,2,5125,'2.99','2005-07-09 07:25:28','2006-02-15 22:15:02'),(7107,263,2,5254,'1.99','2005-07-09 13:50:11','2006-02-15 22:15:02'),(7108,263,2,6376,'4.99','2005-07-11 21:40:23','2006-02-15 22:15:02'),(7109,263,1,6483,'2.99','2005-07-12 01:59:20','2006-02-15 22:15:02'),(7110,263,1,6808,'1.99','2005-07-12 17:36:42','2006-02-15 22:15:02'),(7111,263,2,7291,'4.99','2005-07-27 12:30:47','2006-02-15 22:15:02'),(7112,263,1,7425,'4.99','2005-07-27 17:18:35','2006-02-15 22:15:02'),(7113,263,1,7706,'4.99','2005-07-28 04:03:17','2006-02-15 22:15:02'),(7114,263,2,7833,'1.99','2005-07-28 08:46:14','2006-02-15 22:15:02'),(7115,263,1,10476,'6.99','2005-08-01 10:03:20','2006-02-15 22:15:02'),(7116,263,1,10775,'2.99','2005-08-01 20:59:52','2006-02-15 22:15:02'),(7117,263,1,11339,'2.99','2005-08-02 17:02:06','2006-02-15 22:15:02'),(7118,263,1,11822,'0.99','2005-08-17 12:32:39','2006-02-15 22:15:02'),(7119,263,2,12057,'9.99','2005-08-17 21:04:35','2006-02-15 22:15:02'),(7120,263,2,12432,'5.99','2005-08-18 10:35:13','2006-02-15 22:15:02'),(7121,263,2,12919,'6.99','2005-08-19 04:32:15','2006-02-15 22:15:02'),(7122,263,1,14335,'3.99','2005-08-21 08:33:07','2006-02-15 22:15:02'),(7123,263,2,14448,'6.99','2005-08-21 12:13:10','2006-02-15 22:15:02'),(7124,263,1,15322,'4.99','2005-08-22 20:20:30','2006-02-15 22:15:02'),(7125,263,2,15922,'7.99','2005-08-23 18:07:31','2006-02-15 22:15:02'),(7126,263,1,15293,'0.99','2006-02-14 15:16:03','2006-02-15 22:15:02'),(7127,264,2,1165,'3.99','2005-06-14 23:16:27','2006-02-15 22:15:02'),(7128,264,1,1206,'4.99','2005-06-15 02:27:07','2006-02-15 22:15:02'),(7129,264,1,3028,'0.99','2005-06-20 11:50:52','2006-02-15 22:15:02'),(7130,264,1,3403,'3.99','2005-06-21 15:55:06','2006-02-15 22:15:02'),(7131,264,1,3618,'6.99','2005-07-06 05:58:45','2006-02-15 22:15:03'),(7132,264,1,4328,'4.99','2005-07-07 18:03:17','2006-02-15 22:15:03'),(7133,264,1,4539,'0.99','2005-07-08 04:01:02','2006-02-15 22:15:03'),(7134,264,1,6340,'8.99','2005-07-11 19:46:05','2006-02-15 22:15:03'),(7135,264,2,6391,'0.99','2005-07-11 22:23:09','2006-02-15 22:15:03'),(7136,264,1,6395,'2.99','2005-07-11 22:29:29','2006-02-15 22:15:03'),(7137,264,1,6543,'0.99','2005-07-12 04:54:32','2006-02-15 22:15:03'),(7138,264,1,7006,'8.99','2005-07-27 01:42:20','2006-02-15 22:15:03'),(7139,264,2,9380,'2.99','2005-07-30 19:17:31','2006-02-15 22:15:03'),(7140,264,2,9515,'0.99','2005-07-31 00:35:05','2006-02-15 22:15:03'),(7141,264,1,9861,'5.99','2005-07-31 13:04:14','2006-02-15 22:15:03'),(7142,264,1,9932,'5.99','2005-07-31 15:19:48','2006-02-15 22:15:03'),(7143,264,2,10792,'2.99','2005-08-01 21:44:24','2006-02-15 22:15:03'),(7144,264,1,11527,'3.99','2005-08-17 00:25:06','2006-02-15 22:15:03'),(7145,264,2,11533,'0.99','2005-08-17 00:34:53','2006-02-15 22:15:03'),(7146,264,1,11539,'2.99','2005-08-17 00:45:41','2006-02-15 22:15:03'),(7147,264,1,12518,'4.99','2005-08-18 13:41:32','2006-02-15 22:15:03'),(7148,264,2,13590,'2.99','2005-08-20 05:48:59','2006-02-15 22:15:03'),(7149,264,1,13664,'5.99','2005-08-20 08:18:36','2006-02-15 22:15:03'),(7150,264,1,15595,'4.99','2005-08-23 06:19:12','2006-02-15 22:15:03'),(7151,264,2,14243,'2.99','2006-02-14 15:16:03','2006-02-15 22:15:03'),(7152,265,2,74,'0.99','2005-05-25 11:09:48','2006-02-15 22:15:03'),(7153,265,2,2027,'7.99','2005-06-17 13:06:56','2006-02-15 22:15:03'),(7154,265,2,2562,'4.99','2005-06-19 03:15:05','2006-02-15 22:15:03'),(7155,265,1,2598,'2.99','2005-06-19 05:59:57','2006-02-15 22:15:03'),(7156,265,1,3823,'2.99','2005-07-06 15:41:27','2006-02-15 22:15:03'),(7157,265,1,4610,'0.99','2005-07-08 07:28:05','2006-02-15 22:15:03'),(7158,265,1,4797,'2.99','2005-07-08 16:39:05','2006-02-15 22:15:03'),(7159,265,2,5029,'7.99','2005-07-09 02:35:32','2006-02-15 22:15:03'),(7160,265,1,5417,'4.99','2005-07-09 20:34:09','2006-02-15 22:15:04'),(7161,265,1,5710,'9.99','2005-07-10 10:32:52','2006-02-15 22:15:04'),(7162,265,1,6068,'4.99','2005-07-11 04:41:09','2006-02-15 22:15:04'),(7163,265,2,6371,'4.99','2005-07-11 21:31:51','2006-02-15 22:15:04'),(7164,265,2,6553,'5.99','2005-07-12 05:06:39','2006-02-15 22:15:04'),(7165,265,2,6921,'6.99','2005-07-12 22:39:03','2006-02-15 22:15:04'),(7166,265,2,7414,'1.99','2005-07-27 16:46:07','2006-02-15 22:15:04'),(7167,265,1,7704,'2.99','2005-07-28 04:02:13','2006-02-15 22:15:04'),(7168,265,1,8278,'5.99','2005-07-29 01:42:55','2006-02-15 22:15:04'),(7169,265,2,8489,'2.99','2005-07-29 08:58:03','2006-02-15 22:15:04'),(7170,265,2,8665,'0.99','2005-07-29 15:39:29','2006-02-15 22:15:04'),(7171,265,1,9416,'2.99','2005-07-30 20:52:45','2006-02-15 22:15:04'),(7172,265,2,10592,'3.99','2005-08-01 14:13:00','2006-02-15 22:15:04'),(7173,265,2,11000,'3.99','2005-08-02 04:56:14','2006-02-15 22:15:04'),(7174,265,1,12207,'1.99','2005-08-18 02:24:07','2006-02-15 22:15:04'),(7175,265,2,12346,'4.99','2005-08-18 07:17:55','2006-02-15 22:15:04'),(7176,265,2,13700,'8.99','2005-08-20 09:26:17','2006-02-15 22:15:04'),(7177,265,2,14125,'4.99','2005-08-21 01:32:16','2006-02-15 22:15:04'),(7178,265,1,14547,'6.99','2005-08-21 15:51:38','2006-02-15 22:15:04'),(7179,265,2,14556,'6.99','2005-08-21 16:03:27','2006-02-15 22:15:04'),(7180,265,1,14943,'2.99','2005-08-22 05:59:59','2006-02-15 22:15:04'),(7181,266,1,86,'1.99','2005-05-25 13:36:12','2006-02-15 22:15:04'),(7182,266,2,651,'2.99','2005-05-28 19:46:50','2006-02-15 22:15:04'),(7183,266,2,1280,'5.99','2005-06-15 08:16:06','2006-02-15 22:15:04'),(7184,266,2,2065,'4.99','2005-06-17 16:03:46','2006-02-15 22:15:04'),(7185,266,2,3002,'4.99','2005-06-20 09:56:12','2006-02-15 22:15:04'),(7186,266,1,3059,'4.99','2005-06-20 13:38:41','2006-02-15 22:15:04'),(7187,266,2,3585,'0.99','2005-07-06 04:22:36','2006-02-15 22:15:04'),(7188,266,2,5362,'5.99','2005-07-09 18:16:08','2006-02-15 22:15:05'),(7189,266,1,5577,'4.99','2005-07-10 03:58:40','2006-02-15 22:15:05'),(7190,266,1,8492,'2.99','2005-07-29 09:04:17','2006-02-15 22:15:05'),(7191,266,2,9109,'5.99','2005-07-30 08:58:24','2006-02-15 22:15:05'),(7192,266,2,10747,'4.99','2005-08-01 19:59:41','2006-02-15 22:15:05'),(7193,266,2,10910,'5.99','2005-08-02 01:54:34','2006-02-15 22:15:05'),(7194,266,2,11233,'5.99','2005-08-02 13:06:11','2006-02-15 22:15:05'),(7195,266,1,11321,'4.99','2005-08-02 16:15:07','2006-02-15 22:15:05'),(7196,266,2,11626,'0.99','2005-08-17 04:25:42','2006-02-15 22:15:05'),(7197,266,1,11726,'0.99','2005-08-17 08:11:10','2006-02-15 22:15:05'),(7198,266,1,12255,'4.99','2005-08-18 04:07:20','2006-02-15 22:15:05'),(7199,266,2,12378,'0.99','2005-08-18 08:26:13','2006-02-15 22:15:05'),(7200,266,1,12405,'6.99','2005-08-18 09:37:30','2006-02-15 22:15:05'),(7201,266,1,12715,'4.99','2005-08-18 21:09:38','2006-02-15 22:15:05'),(7202,266,1,13468,'8.99','2005-08-20 00:56:44','2006-02-15 22:15:05'),(7203,266,1,13556,'6.99','2005-08-20 04:10:26','2006-02-15 22:15:05'),(7204,266,1,14080,'1.99','2005-08-20 23:29:50','2006-02-15 22:15:05'),(7205,266,1,14492,'2.99','2005-08-21 13:59:08','2006-02-15 22:15:05'),(7206,266,1,14877,'0.99','2005-08-22 03:39:56','2006-02-15 22:15:05'),(7207,266,1,15181,'2.99','2005-08-22 15:46:20','2006-02-15 22:15:05'),(7208,266,1,15346,'4.99','2005-08-22 21:06:00','2006-02-15 22:15:05'),(7209,267,2,91,'6.99','2005-05-25 14:57:22','2006-02-15 22:15:05'),(7210,267,1,436,'4.99','2005-05-27 17:21:04','2006-02-15 22:15:05'),(7211,267,2,1030,'4.99','2005-05-31 04:06:47','2006-02-15 22:15:05'),(7212,267,2,1257,'4.99','2005-06-15 06:15:36','2006-02-15 22:15:05'),(7213,267,2,1349,'4.99','2005-06-15 12:49:02','2006-02-15 22:15:05'),(7214,267,2,2265,'2.99','2005-06-18 06:03:27','2006-02-15 22:15:05'),(7215,267,2,2578,'7.99','2005-06-19 04:40:06','2006-02-15 22:15:05'),(7216,267,1,2582,'6.99','2005-06-19 04:56:27','2006-02-15 22:15:05'),(7217,267,2,2699,'2.99','2005-06-19 13:29:28','2006-02-15 22:15:06'),(7218,267,2,2754,'4.99','2005-06-19 16:55:59','2006-02-15 22:15:06'),(7219,267,1,2877,'1.99','2005-06-20 01:07:16','2006-02-15 22:15:06'),(7220,267,2,3090,'0.99','2005-06-20 16:00:19','2006-02-15 22:15:06'),(7221,267,1,3817,'2.99','2005-07-06 15:31:45','2006-02-15 22:15:06'),(7222,267,1,5340,'6.99','2005-07-09 17:11:35','2006-02-15 22:15:06'),(7223,267,1,6070,'0.99','2005-07-11 04:47:42','2006-02-15 22:15:06'),(7224,267,1,6706,'3.99','2005-07-12 12:59:16','2006-02-15 22:15:06'),(7225,267,1,8190,'4.99','2005-07-28 22:47:06','2006-02-15 22:15:06'),(7226,267,1,8572,'1.99','2005-07-29 11:51:24','2006-02-15 22:15:06'),(7227,267,2,9059,'3.99','2005-07-30 07:18:44','2006-02-15 22:15:06'),(7228,267,1,9308,'6.99','2005-07-30 16:53:21','2006-02-15 22:15:06'),(7229,267,2,9403,'4.99','2005-07-30 20:18:53','2006-02-15 22:15:06'),(7230,267,2,9807,'2.99','2005-07-31 11:13:52','2006-02-15 22:15:06'),(7231,267,2,10048,'4.99','2005-07-31 19:08:56','2006-02-15 22:15:06'),(7232,267,1,10343,'2.99','2005-08-01 05:15:47','2006-02-15 22:15:06'),(7233,267,2,11373,'0.99','2005-08-02 18:14:12','2006-02-15 22:15:06'),(7234,267,1,11690,'6.99','2005-08-17 06:44:22','2006-02-15 22:15:06'),(7235,267,1,12320,'4.99','2005-08-18 06:26:51','2006-02-15 22:15:06'),(7236,267,1,12979,'4.99','2005-08-19 07:00:35','2006-02-15 22:15:06'),(7237,267,2,13236,'9.99','2005-08-19 16:18:24','2006-02-15 22:15:06'),(7238,267,1,14131,'5.99','2005-08-21 01:43:40','2006-02-15 22:15:06'),(7239,267,2,15020,'3.99','2005-08-22 08:54:12','2006-02-15 22:15:06'),(7240,267,1,15208,'3.99','2005-08-22 16:35:47','2006-02-15 22:15:06'),(7241,267,1,15768,'0.99','2005-08-23 13:14:47','2006-02-15 22:15:06'),(7242,267,1,15903,'3.99','2005-08-23 17:30:40','2006-02-15 22:15:06'),(7243,267,2,12066,'7.98','2006-02-14 15:16:03','2006-02-15 22:15:06'),(7244,267,2,13713,'0.00','2006-02-14 15:16:03','2006-02-15 22:15:07'),(7245,268,1,1394,'2.99','2005-06-15 16:17:21','2006-02-15 22:15:07'),(7246,268,2,1450,'4.99','2005-06-15 19:22:08','2006-02-15 22:15:07'),(7247,268,2,1551,'3.99','2005-06-16 02:01:15','2006-02-15 22:15:07'),(7248,268,1,2133,'0.99','2005-06-17 21:10:05','2006-02-15 22:15:07'),(7249,268,2,2324,'4.99','2005-06-18 10:00:33','2006-02-15 22:15:07'),(7250,268,2,2858,'2.99','2005-06-19 23:17:11','2006-02-15 22:15:07'),(7251,268,1,3066,'3.99','2005-06-20 13:55:41','2006-02-15 22:15:07'),(7252,268,1,3361,'1.99','2005-06-21 12:14:23','2006-02-15 22:15:07'),(7253,268,2,3670,'4.99','2005-07-06 08:56:43','2006-02-15 22:15:07'),(7254,268,2,4626,'4.99','2005-07-08 08:18:21','2006-02-15 22:15:07'),(7255,268,1,5039,'7.99','2005-07-09 03:14:45','2006-02-15 22:15:07'),(7256,268,2,5671,'2.99','2005-07-10 08:18:22','2006-02-15 22:15:07'),(7257,268,2,5793,'2.99','2005-07-10 14:33:00','2006-02-15 22:15:07'),(7258,268,2,5888,'6.99','2005-07-10 19:52:17','2006-02-15 22:15:07'),(7259,268,1,6120,'3.99','2005-07-11 07:49:53','2006-02-15 22:15:07'),(7260,268,2,6489,'1.99','2005-07-12 02:22:46','2006-02-15 22:15:07'),(7261,268,1,8931,'2.99','2005-07-30 02:30:07','2006-02-15 22:15:07'),(7262,268,2,9436,'7.99','2005-07-30 21:33:01','2006-02-15 22:15:07'),(7263,268,2,9531,'3.99','2005-07-31 01:11:53','2006-02-15 22:15:07'),(7264,268,1,10040,'1.99','2005-07-31 18:54:15','2006-02-15 22:15:07'),(7265,268,2,11462,'7.99','2005-08-02 21:36:46','2006-02-15 22:15:07'),(7266,268,2,11828,'6.99','2005-08-17 12:48:28','2006-02-15 22:15:07'),(7267,268,2,12007,'2.99','2005-08-17 19:10:34','2006-02-15 22:15:07'),(7268,268,2,12694,'4.99','2005-08-18 20:10:39','2006-02-15 22:15:07'),(7269,268,2,13880,'5.99','2005-08-20 15:18:20','2006-02-15 22:15:07'),(7270,268,2,14249,'4.99','2005-08-21 05:38:05','2006-02-15 22:15:07'),(7271,268,2,14373,'4.99','2005-08-21 09:44:53','2006-02-15 22:15:08'),(7272,268,1,14874,'0.99','2005-08-22 03:32:05','2006-02-15 22:15:08'),(7273,268,2,15183,'2.99','2005-08-22 15:49:54','2006-02-15 22:15:08'),(7274,269,2,7,'1.99','2005-05-24 23:11:53','2006-02-15 22:15:08'),(7275,269,1,98,'0.99','2005-05-25 16:48:24','2006-02-15 22:15:08'),(7276,269,2,678,'6.99','2005-05-28 23:15:48','2006-02-15 22:15:08'),(7277,269,2,703,'0.99','2005-05-29 02:29:36','2006-02-15 22:15:08'),(7278,269,1,750,'4.99','2005-05-29 09:41:40','2006-02-15 22:15:08'),(7279,269,2,1099,'2.99','2005-05-31 13:54:48','2006-02-15 22:15:08'),(7280,269,1,1334,'3.99','2005-06-15 11:43:09','2006-02-15 22:15:08'),(7281,269,2,1909,'2.99','2005-06-17 05:11:04','2006-02-15 22:15:08'),(7282,269,2,2493,'6.99','2005-06-18 22:12:09','2006-02-15 22:15:08'),(7283,269,1,4125,'9.99','2005-07-07 07:20:29','2006-02-15 22:15:08'),(7284,269,2,4804,'0.99','2005-07-08 16:57:30','2006-02-15 22:15:08'),(7285,269,2,4880,'6.99','2005-07-08 19:36:17','2006-02-15 22:15:08'),(7286,269,1,6440,'2.99','2005-07-12 00:25:04','2006-02-15 22:15:08'),(7287,269,1,6626,'5.99','2005-07-12 09:16:24','2006-02-15 22:15:08'),(7288,269,2,6804,'4.99','2005-07-12 17:22:06','2006-02-15 22:15:08'),(7289,269,1,7032,'4.99','2005-07-27 03:03:09','2006-02-15 22:15:08'),(7290,269,1,7537,'6.99','2005-07-27 21:36:09','2006-02-15 22:15:08'),(7291,269,1,7972,'2.99','2005-07-28 14:07:46','2006-02-15 22:15:08'),(7292,269,2,10566,'2.99','2005-08-01 13:12:11','2006-02-15 22:15:08'),(7293,269,1,10908,'4.99','2005-08-02 01:53:06','2006-02-15 22:15:08'),(7294,269,1,11014,'4.99','2005-08-02 05:12:22','2006-02-15 22:15:08'),(7295,269,1,11915,'3.99','2005-08-17 16:05:28','2006-02-15 22:15:08'),(7296,269,1,12344,'4.99','2005-08-18 07:15:19','2006-02-15 22:15:09'),(7297,269,2,13142,'5.99','2005-08-19 12:42:28','2006-02-15 22:15:09'),(7298,269,2,13759,'2.99','2005-08-20 11:24:48','2006-02-15 22:15:09'),(7299,269,1,14266,'4.99','2005-08-21 06:20:51','2006-02-15 22:15:09'),(7300,269,2,14693,'6.99','2005-08-21 20:44:19','2006-02-15 22:15:09'),(7301,269,2,15788,'2.99','2005-08-23 13:54:39','2006-02-15 22:15:09'),(7302,269,1,13025,'3.98','2006-02-14 15:16:03','2006-02-15 22:15:09'),(7303,269,2,12610,'0.00','2006-02-14 15:16:03','2006-02-15 22:15:09'),(7304,270,1,193,'1.99','2005-05-26 06:41:48','2006-02-15 22:15:09'),(7305,270,1,1040,'4.99','2005-05-31 05:35:16','2006-02-15 22:15:09'),(7306,270,1,1345,'4.99','2005-06-15 12:32:13','2006-02-15 22:15:09'),(7307,270,1,1896,'6.99','2005-06-17 04:25:46','2006-02-15 22:15:09'),(7308,270,1,2115,'3.99','2005-06-17 20:02:16','2006-02-15 22:15:09'),(7309,270,2,3164,'5.99','2005-06-20 21:29:00','2006-02-15 22:15:09'),(7310,270,1,3501,'3.99','2005-07-06 00:11:28','2006-02-15 22:15:09'),(7311,270,1,3987,'9.99','2005-07-06 23:28:24','2006-02-15 22:15:09'),(7312,270,2,5533,'0.99','2005-07-10 02:19:28','2006-02-15 22:15:09'),(7313,270,2,6520,'4.99','2005-07-12 04:05:16','2006-02-15 22:15:09'),(7314,270,1,8355,'2.99','2005-07-29 04:57:43','2006-02-15 22:15:09'),(7315,270,2,8618,'3.99','2005-07-29 13:48:20','2006-02-15 22:15:09'),(7316,270,1,10069,'3.99','2005-07-31 19:43:18','2006-02-15 22:15:09'),(7317,270,1,10461,'7.99','2005-08-01 09:32:53','2006-02-15 22:15:09'),(7318,270,2,10579,'5.99','2005-08-01 13:48:22','2006-02-15 22:15:09'),(7319,270,2,10648,'4.99','2005-08-01 16:08:52','2006-02-15 22:15:09'),(7320,270,1,11389,'2.99','2005-08-02 18:39:12','2006-02-15 22:15:09'),(7321,270,1,11810,'0.99','2005-08-17 11:56:48','2006-02-15 22:15:09'),(7322,270,2,11841,'2.99','2005-08-17 13:12:20','2006-02-15 22:15:09'),(7323,270,1,11917,'2.99','2005-08-17 16:08:17','2006-02-15 22:15:09'),(7324,270,1,12192,'2.99','2005-08-18 02:01:40','2006-02-15 22:15:10'),(7325,270,1,12442,'2.99','2005-08-18 10:50:07','2006-02-15 22:15:10'),(7326,270,2,13945,'1.99','2005-08-20 17:43:56','2006-02-15 22:15:10'),(7327,270,1,14618,'0.99','2005-08-21 18:09:51','2006-02-15 22:15:10'),(7328,270,2,15620,'6.99','2005-08-23 07:10:22','2006-02-15 22:15:10'),(7329,271,1,1096,'8.99','2005-05-31 13:30:49','2006-02-15 22:15:10'),(7330,271,2,1852,'2.99','2005-06-17 00:38:20','2006-02-15 22:15:10'),(7331,271,1,3640,'1.99','2005-07-06 07:12:26','2006-02-15 22:15:10'),(7332,271,2,4545,'2.99','2005-07-08 04:17:47','2006-02-15 22:15:10'),(7333,271,2,5878,'1.99','2005-07-10 19:09:57','2006-02-15 22:15:10'),(7334,271,1,5922,'2.99','2005-07-10 21:36:53','2006-02-15 22:15:10'),(7335,271,1,6024,'2.99','2005-07-11 02:16:47','2006-02-15 22:15:10'),(7336,271,1,7618,'3.99','2005-07-28 00:24:14','2006-02-15 22:15:10'),(7337,271,1,8592,'0.99','2005-07-29 12:33:58','2006-02-15 22:15:10'),(7338,271,1,9821,'4.99','2005-07-31 11:47:54','2006-02-15 22:15:10'),(7339,271,2,10143,'7.99','2005-07-31 22:11:43','2006-02-15 22:15:10'),(7340,271,2,10310,'4.99','2005-08-01 04:24:47','2006-02-15 22:15:10'),(7341,271,1,10599,'3.99','2005-08-01 14:23:58','2006-02-15 22:15:10'),(7342,271,1,11431,'2.99','2005-08-02 20:05:16','2006-02-15 22:15:10'),(7343,271,1,12219,'4.99','2005-08-18 02:49:54','2006-02-15 22:15:10'),(7344,271,2,14234,'0.99','2005-08-21 05:07:12','2006-02-15 22:15:10'),(7345,271,2,14355,'4.99','2005-08-21 09:08:29','2006-02-15 22:15:10'),(7346,271,1,15244,'2.99','2005-08-22 17:48:42','2006-02-15 22:15:10'),(7347,272,1,33,'0.99','2005-05-25 04:18:51','2006-02-15 22:15:10'),(7348,272,1,405,'6.99','2005-05-27 13:32:39','2006-02-15 22:15:10'),(7349,272,1,1041,'6.99','2005-05-31 05:46:23','2006-02-15 22:15:10'),(7350,272,1,1072,'0.99','2005-05-31 09:52:50','2006-02-15 22:15:10'),(7351,272,2,1604,'4.99','2005-06-16 06:14:25','2006-02-15 22:15:10'),(7352,272,2,2546,'5.99','2005-06-19 02:39:39','2006-02-15 22:15:11'),(7353,272,1,3323,'5.99','2005-06-21 08:45:33','2006-02-15 22:15:11'),(7354,272,2,5047,'3.99','2005-07-09 03:44:15','2006-02-15 22:15:11'),(7355,272,2,5158,'2.99','2005-07-09 08:53:09','2006-02-15 22:15:11'),(7356,272,2,7300,'7.99','2005-07-27 12:50:17','2006-02-15 22:15:11'),(7357,272,2,7658,'2.99','2005-07-28 02:09:12','2006-02-15 22:15:11'),(7358,272,1,8248,'7.99','2005-07-29 00:41:56','2006-02-15 22:15:11'),(7359,272,2,9787,'10.99','2005-07-31 10:26:19','2006-02-15 22:15:11'),(7360,272,1,10736,'2.99','2005-08-01 19:30:21','2006-02-15 22:15:11'),(7361,272,2,11003,'2.99','2005-08-02 05:03:05','2006-02-15 22:15:11'),(7362,272,2,11597,'8.99','2005-08-17 03:02:56','2006-02-15 22:15:11'),(7363,272,1,11881,'0.99','2005-08-17 14:31:56','2006-02-15 22:15:11'),(7364,272,2,12006,'6.99','2005-08-17 19:09:12','2006-02-15 22:15:11'),(7365,272,2,13274,'2.99','2005-08-19 17:50:03','2006-02-15 22:15:11'),(7366,272,1,13903,'2.99','2005-08-20 16:07:55','2006-02-15 22:15:11'),(7367,273,2,122,'3.99','2005-05-25 19:46:21','2006-02-15 22:15:11'),(7368,273,2,980,'0.99','2005-05-30 21:45:19','2006-02-15 22:15:11'),(7369,273,2,1391,'6.99','2005-06-15 16:11:21','2006-02-15 22:15:11'),(7370,273,2,1747,'6.99','2005-06-16 16:53:33','2006-02-15 22:15:11'),(7371,273,2,1765,'4.99','2005-06-16 17:56:10','2006-02-15 22:15:11'),(7372,273,1,2301,'1.99','2005-06-18 08:24:03','2006-02-15 22:15:11'),(7373,273,1,3202,'0.99','2005-06-21 00:33:47','2006-02-15 22:15:11'),(7374,273,2,3556,'2.99','2005-07-06 02:46:13','2006-02-15 22:15:11'),(7375,273,1,4937,'5.99','2005-07-08 22:29:59','2006-02-15 22:15:11'),(7376,273,1,5256,'7.99','2005-07-09 13:55:45','2006-02-15 22:15:12'),(7377,273,2,5435,'7.99','2005-07-09 21:28:07','2006-02-15 22:15:12'),(7378,273,1,5605,'2.99','2005-07-10 05:06:45','2006-02-15 22:15:12'),(7379,273,1,6592,'8.99','2005-07-12 07:19:35','2006-02-15 22:15:12'),(7380,273,1,6635,'1.99','2005-07-12 09:47:58','2006-02-15 22:15:12'),(7381,273,2,6696,'2.99','2005-07-12 12:44:04','2006-02-15 22:15:12'),(7382,273,1,6717,'5.99','2005-07-12 13:35:02','2006-02-15 22:15:12'),(7383,273,1,8449,'2.99','2005-07-29 07:42:25','2006-02-15 22:15:12'),(7384,273,1,9186,'4.99','2005-07-30 12:13:48','2006-02-15 22:15:12'),(7385,273,2,9285,'5.99','2005-07-30 15:26:08','2006-02-15 22:15:12'),(7386,273,2,9391,'0.99','2005-07-30 19:48:41','2006-02-15 22:15:12'),(7387,273,2,9693,'3.99','2005-07-31 07:11:50','2006-02-15 22:15:12'),(7388,273,2,9729,'0.99','2005-07-31 08:43:43','2006-02-15 22:15:12'),(7389,273,1,10272,'8.99','2005-08-01 03:14:34','2006-02-15 22:15:12'),(7390,273,1,10753,'3.99','2005-08-01 20:09:24','2006-02-15 22:15:12'),(7391,273,1,10768,'6.99','2005-08-01 20:39:32','2006-02-15 22:15:12'),(7392,273,1,11282,'4.99','2005-08-02 14:35:03','2006-02-15 22:15:12'),(7393,273,2,11509,'4.99','2005-08-16 23:29:53','2006-02-15 22:15:12'),(7394,273,1,12692,'0.99','2005-08-18 20:09:19','2006-02-15 22:15:12'),(7395,273,2,13738,'4.99','2005-08-20 10:42:42','2006-02-15 22:15:12'),(7396,273,1,13955,'5.99','2005-08-20 18:05:12','2006-02-15 22:15:12'),(7397,273,2,14092,'4.99','2005-08-21 00:14:32','2006-02-15 22:15:12'),(7398,273,2,14558,'2.99','2005-08-21 16:10:50','2006-02-15 22:15:12'),(7399,273,2,14911,'2.99','2005-08-22 04:51:42','2006-02-15 22:15:12'),(7400,273,2,15372,'2.99','2005-08-22 21:59:51','2006-02-15 22:15:12'),(7401,273,1,15760,'6.99','2005-08-23 12:50:00','2006-02-15 22:15:12'),(7402,274,1,147,'2.99','2005-05-26 00:17:50','2006-02-15 22:15:12'),(7403,274,1,208,'4.99','2005-05-26 08:10:22','2006-02-15 22:15:13'),(7404,274,2,301,'2.99','2005-05-26 21:06:14','2006-02-15 22:15:13'),(7405,274,1,394,'5.99','2005-05-27 11:26:11','2006-02-15 22:15:13'),(7406,274,2,474,'2.99','2005-05-27 22:11:56','2006-02-15 22:15:13'),(7407,274,1,892,'4.99','2005-05-30 08:02:56','2006-02-15 22:15:13'),(7408,274,1,2098,'0.99','2005-06-17 18:42:09','2006-02-15 22:15:13'),(7409,274,2,3291,'9.99','2005-06-21 06:55:36','2006-02-15 22:15:13'),(7410,274,2,3532,'5.99','2005-07-06 01:24:38','2006-02-15 22:15:13'),(7411,274,1,4147,'2.99','2005-07-07 08:32:12','2006-02-15 22:15:13'),(7412,274,2,4582,'2.99','2005-07-08 06:09:09','2006-02-15 22:15:13'),(7413,274,2,6389,'3.99','2005-07-11 22:18:20','2006-02-15 22:15:13'),(7414,274,2,8259,'0.99','2005-07-29 01:05:16','2006-02-15 22:15:13'),(7415,274,2,8406,'5.99','2005-07-29 06:34:45','2006-02-15 22:15:13'),(7416,274,2,8517,'7.99','2005-07-29 10:00:48','2006-02-15 22:15:13'),(7417,274,1,9331,'4.99','2005-07-30 17:46:50','2006-02-15 22:15:13'),(7418,274,1,9677,'4.99','2005-07-31 06:39:45','2006-02-15 22:15:13'),(7419,274,2,10059,'4.99','2005-07-31 19:20:49','2006-02-15 22:15:13'),(7420,274,1,10790,'1.99','2005-08-01 21:38:37','2006-02-15 22:15:13'),(7421,274,2,10855,'0.99','2005-08-02 00:06:37','2006-02-15 22:15:13'),(7422,274,1,11058,'3.99','2005-08-02 06:38:44','2006-02-15 22:15:13'),(7423,274,2,11363,'2.99','2005-08-02 17:48:39','2006-02-15 22:15:13'),(7424,274,1,12321,'3.99','2005-08-18 06:27:05','2006-02-15 22:15:13'),(7425,274,1,13103,'2.99','2005-08-19 11:05:51','2006-02-15 22:15:13'),(7426,274,2,13129,'8.99','2005-08-19 12:05:04','2006-02-15 22:15:13'),(7427,274,1,13549,'8.99','2005-08-20 03:58:41','2006-02-15 22:15:13'),(7428,274,1,14012,'0.99','2005-08-20 20:42:12','2006-02-15 22:15:13'),(7429,274,1,14066,'7.99','2005-08-20 22:45:58','2006-02-15 22:15:13'),(7430,274,2,14164,'7.99','2005-08-21 02:58:02','2006-02-15 22:15:14'),(7431,274,1,14388,'4.99','2005-08-21 10:15:13','2006-02-15 22:15:14'),(7432,274,2,15143,'2.99','2005-08-22 13:46:24','2006-02-15 22:15:14'),(7433,274,1,15260,'2.99','2005-08-22 18:24:16','2006-02-15 22:15:14'),(7434,274,2,15328,'2.99','2005-08-22 20:31:38','2006-02-15 22:15:14'),(7435,274,2,15819,'3.99','2005-08-23 15:01:54','2006-02-15 22:15:14'),(7436,274,1,13486,'0.99','2006-02-14 15:16:03','2006-02-15 22:15:14'),(7437,275,2,336,'2.99','2005-05-27 03:15:23','2006-02-15 22:15:14'),(7438,275,2,1797,'3.99','2005-06-16 20:13:03','2006-02-15 22:15:14'),(7439,275,2,2414,'0.99','2005-06-18 17:01:55','2006-02-15 22:15:14'),(7440,275,1,2646,'4.99','2005-06-19 09:56:01','2006-02-15 22:15:14'),(7441,275,1,3355,'2.99','2005-06-21 11:30:47','2006-02-15 22:15:14'),(7442,275,2,4396,'0.99','2005-07-07 21:14:19','2006-02-15 22:15:14'),(7443,275,1,4634,'0.99','2005-07-08 08:40:02','2006-02-15 22:15:14'),(7444,275,2,4912,'9.99','2005-07-08 21:26:11','2006-02-15 22:15:14'),(7445,275,2,6301,'5.99','2005-07-11 17:54:09','2006-02-15 22:15:14'),(7446,275,2,6856,'0.99','2005-07-12 19:50:16','2006-02-15 22:15:14'),(7447,275,1,7553,'2.99','2005-07-27 22:11:36','2006-02-15 22:15:14'),(7448,275,2,7596,'4.99','2005-07-27 23:33:57','2006-02-15 22:15:14'),(7449,275,1,8746,'2.99','2005-07-29 19:03:15','2006-02-15 22:15:15'),(7450,275,2,9258,'2.99','2005-07-30 14:31:31','2006-02-15 22:15:15'),(7451,275,1,10479,'6.99','2005-08-01 10:11:25','2006-02-15 22:15:15'),(7452,275,2,11309,'1.99','2005-08-02 15:50:55','2006-02-15 22:15:15'),(7453,275,1,11610,'4.99','2005-08-17 03:43:37','2006-02-15 22:15:15'),(7454,275,2,12589,'5.99','2005-08-18 16:06:31','2006-02-15 22:15:15'),(7455,275,1,12606,'1.99','2005-08-18 17:02:21','2006-02-15 22:15:15'),(7456,275,1,13037,'3.99','2005-08-19 08:53:57','2006-02-15 22:15:15'),(7457,275,2,13860,'2.99','2005-08-20 14:55:09','2006-02-15 22:15:15'),(7458,275,2,13865,'1.99','2005-08-20 15:04:09','2006-02-15 22:15:15'),(7459,275,2,13902,'0.99','2005-08-20 16:07:08','2006-02-15 22:15:15'),(7460,275,2,14063,'0.99','2005-08-20 22:36:40','2006-02-15 22:15:15'),(7461,275,1,14187,'5.99','2005-08-21 03:32:03','2006-02-15 22:15:15'),(7462,275,1,14296,'2.99','2005-08-21 07:13:23','2006-02-15 22:15:15'),(7463,275,2,14483,'5.99','2005-08-21 13:43:59','2006-02-15 22:15:15'),(7464,275,2,14727,'4.99','2005-08-21 22:12:45','2006-02-15 22:15:15'),(7465,275,2,15269,'2.99','2005-08-22 18:39:44','2006-02-15 22:15:15'),(7466,275,2,15496,'3.99','2005-08-23 02:30:23','2006-02-15 22:15:15'),(7467,276,1,736,'3.99','2005-05-29 08:10:07','2006-02-15 22:15:15'),(7468,276,1,860,'10.99','2005-05-30 02:45:16','2006-02-15 22:15:15'),(7469,276,1,1352,'0.99','2005-06-15 12:58:27','2006-02-15 22:15:15'),(7470,276,2,2763,'4.99','2005-06-19 17:23:34','2006-02-15 22:15:16'),(7471,276,2,3064,'6.99','2005-06-20 13:53:13','2006-02-15 22:15:16'),(7472,276,2,3714,'2.99','2005-07-06 10:51:28','2006-02-15 22:15:16'),(7473,276,1,4715,'0.99','2005-07-08 12:15:37','2006-02-15 22:15:16'),(7474,276,2,5186,'4.99','2005-07-09 10:18:40','2006-02-15 22:15:16'),(7475,276,2,5246,'4.99','2005-07-09 13:25:18','2006-02-15 22:15:16'),(7476,276,2,7282,'5.99','2005-07-27 12:00:19','2006-02-15 22:15:16'),(7477,276,2,7842,'2.99','2005-07-28 09:10:06','2006-02-15 22:15:16'),(7478,276,1,9070,'0.99','2005-07-30 07:40:39','2006-02-15 22:15:16'),(7479,276,1,9080,'1.99','2005-07-30 08:02:39','2006-02-15 22:15:16'),(7480,276,1,9102,'4.99','2005-07-30 08:48:20','2006-02-15 22:15:16'),(7481,276,1,9229,'8.99','2005-07-30 13:38:17','2006-02-15 22:15:16'),(7482,276,2,10149,'5.99','2005-07-31 22:20:46','2006-02-15 22:15:16'),(7483,276,2,10691,'0.99','2005-08-01 18:09:53','2006-02-15 22:15:16'),(7484,276,1,10763,'2.99','2005-08-01 20:32:27','2006-02-15 22:15:16'),(7485,276,2,11085,'2.99','2005-08-02 07:36:44','2006-02-15 22:15:16'),(7486,276,1,11636,'4.99','2005-08-17 04:36:31','2006-02-15 22:15:16'),(7487,276,2,11961,'3.99','2005-08-17 17:28:01','2006-02-15 22:15:16'),(7488,276,2,12178,'5.99','2005-08-18 01:17:32','2006-02-15 22:15:16'),(7489,276,2,12251,'4.99','2005-08-18 03:59:02','2006-02-15 22:15:16'),(7490,276,1,12650,'4.99','2005-08-18 18:33:20','2006-02-15 22:15:16'),(7491,276,1,14000,'4.99','2005-08-20 20:06:05','2006-02-15 22:15:16'),(7492,276,2,15718,'2.99','2005-08-23 11:05:17','2006-02-15 22:15:16'),(7493,276,1,15769,'3.99','2005-08-23 13:16:15','2006-02-15 22:15:16'),(7494,276,2,15923,'4.99','2005-08-23 18:08:19','2006-02-15 22:15:17'),(7495,277,2,308,'6.99','2005-05-26 22:01:39','2006-02-15 22:15:17'),(7496,277,1,1331,'2.99','2005-06-15 11:34:33','2006-02-15 22:15:17'),(7497,277,2,1717,'2.99','2005-06-16 14:47:16','2006-02-15 22:15:17'),(7498,277,2,2162,'3.99','2005-06-17 23:45:47','2006-02-15 22:15:17'),(7499,277,2,2723,'4.99','2005-06-19 14:55:23','2006-02-15 22:15:17'),(7500,277,1,3247,'5.99','2005-06-21 03:12:15','2006-02-15 22:15:17'),(7501,277,2,3274,'4.99','2005-06-21 05:30:36','2006-02-15 22:15:17'),(7502,277,1,3344,'2.99','2005-06-21 10:57:27','2006-02-15 22:15:17'),(7503,277,2,3740,'5.99','2005-07-06 11:55:35','2006-02-15 22:15:17'),(7504,277,2,3897,'2.99','2005-07-06 19:11:43','2006-02-15 22:15:17'),(7505,277,1,4290,'4.99','2005-07-07 15:47:10','2006-02-15 22:15:17'),(7506,277,2,4987,'5.99','2005-07-09 00:45:41','2006-02-15 22:15:17'),(7507,277,1,5861,'0.99','2005-07-10 18:14:22','2006-02-15 22:15:17'),(7508,277,1,5913,'2.99','2005-07-10 20:58:55','2006-02-15 22:15:17'),(7509,277,2,6455,'2.99','2005-07-12 01:01:58','2006-02-15 22:15:17'),(7510,277,1,6487,'5.99','2005-07-12 02:17:00','2006-02-15 22:15:17'),(7511,277,2,7423,'4.99','2005-07-27 17:11:47','2006-02-15 22:15:17'),(7512,277,2,8410,'2.99','2005-07-29 06:41:36','2006-02-15 22:15:17'),(7513,277,2,9669,'4.99','2005-07-31 06:31:36','2006-02-15 22:15:17'),(7514,277,1,9901,'0.99','2005-07-31 14:20:59','2006-02-15 22:15:17'),(7515,277,2,11074,'3.99','2005-08-02 07:21:43','2006-02-15 22:15:17'),(7516,277,2,11162,'4.99','2005-08-02 10:07:54','2006-02-15 22:15:17'),(7517,277,2,11574,'0.99','2005-08-17 01:38:19','2006-02-15 22:15:17'),(7518,277,2,12149,'3.99','2005-08-18 00:13:51','2006-02-15 22:15:17'),(7519,277,1,12458,'5.99','2005-08-18 11:22:53','2006-02-15 22:15:17'),(7520,277,1,13122,'4.99','2005-08-19 11:53:49','2006-02-15 22:15:17'),(7521,277,2,13526,'4.99','2005-08-20 02:58:42','2006-02-15 22:15:18'),(7522,277,1,13714,'4.99','2005-08-20 09:41:09','2006-02-15 22:15:18'),(7523,277,2,14227,'4.99','2005-08-21 04:56:31','2006-02-15 22:15:18'),(7524,277,2,14745,'4.99','2005-08-21 22:53:01','2006-02-15 22:15:18'),(7525,277,1,15008,'10.99','2005-08-22 08:24:32','2006-02-15 22:15:18'),(7526,277,1,15345,'5.99','2005-08-22 21:05:50','2006-02-15 22:15:18'),(7527,278,1,1092,'4.99','2005-05-31 12:15:57','2006-02-15 22:15:18'),(7528,278,2,1387,'0.99','2005-06-15 15:40:56','2006-02-15 22:15:18'),(7529,278,1,1978,'2.99','2005-06-17 09:42:34','2006-02-15 22:15:18'),(7530,278,2,2078,'4.99','2005-06-17 16:48:55','2006-02-15 22:15:18'),(7531,278,1,3453,'2.99','2005-06-21 21:12:11','2006-02-15 22:15:18'),(7532,278,1,3776,'2.99','2005-07-06 13:31:37','2006-02-15 22:15:18'),(7533,278,1,4430,'4.99','2005-07-07 22:35:24','2006-02-15 22:15:18'),(7534,278,2,4866,'8.99','2005-07-08 19:09:59','2006-02-15 22:15:18'),(7535,278,2,6869,'4.99','2005-07-12 20:12:06','2006-02-15 22:15:18'),(7536,278,1,7239,'0.99','2005-07-27 10:20:27','2006-02-15 22:15:18'),(7537,278,2,7834,'0.99','2005-07-28 08:46:43','2006-02-15 22:15:18'),(7538,278,2,8222,'5.99','2005-07-28 23:51:53','2006-02-15 22:15:18'),(7539,278,1,8953,'4.99','2005-07-30 03:21:05','2006-02-15 22:15:18'),(7540,278,2,9448,'2.99','2005-07-30 21:56:13','2006-02-15 22:15:18'),(7541,278,1,10649,'2.99','2005-08-01 16:11:40','2006-02-15 22:15:18'),(7542,278,1,10731,'2.99','2005-08-01 19:21:48','2006-02-15 22:15:18'),(7543,278,2,10849,'3.99','2005-08-01 23:51:00','2006-02-15 22:15:18'),(7544,278,1,11095,'5.99','2005-08-02 08:03:20','2006-02-15 22:15:18'),(7545,278,2,11531,'0.99','2005-08-17 00:30:04','2006-02-15 22:15:18'),(7546,278,1,12787,'0.99','2005-08-19 00:07:58','2006-02-15 22:15:18'),(7547,278,1,13896,'0.99','2005-08-20 15:59:56','2006-02-15 22:15:18'),(7548,278,2,13976,'0.99','2005-08-20 19:02:16','2006-02-15 22:15:19'),(7549,278,1,14268,'2.99','2005-08-21 06:21:24','2006-02-15 22:15:19'),(7550,278,2,14803,'0.99','2005-08-22 00:49:10','2006-02-15 22:15:19'),(7551,278,1,14986,'4.99','2005-08-22 07:37:24','2006-02-15 22:15:19'),(7552,278,1,16019,'4.99','2005-08-23 21:30:45','2006-02-15 22:15:19'),(7553,279,1,979,'2.99','2005-05-30 21:37:11','2006-02-15 22:15:19'),(7554,279,2,1019,'0.99','2005-05-31 03:05:07','2006-02-15 22:15:19'),(7555,279,1,1178,'2.99','2005-06-15 00:36:40','2006-02-15 22:15:19'),(7556,279,1,2147,'4.99','2005-06-17 22:28:13','2006-02-15 22:15:19'),(7557,279,1,3215,'0.99','2005-06-21 01:11:32','2006-02-15 22:15:19'),(7558,279,1,3374,'2.99','2005-06-21 13:36:30','2006-02-15 22:15:19'),(7559,279,1,3375,'4.99','2005-06-21 13:37:18','2006-02-15 22:15:19'),(7560,279,1,4476,'4.99','2005-07-08 00:34:25','2006-02-15 22:15:19'),(7561,279,1,4978,'7.99','2005-07-09 00:22:02','2006-02-15 22:15:19'),(7562,279,2,5248,'2.99','2005-07-09 13:29:44','2006-02-15 22:15:19'),(7563,279,1,5361,'9.99','2005-07-09 18:15:32','2006-02-15 22:15:19'),(7564,279,1,6176,'0.99','2005-07-11 10:48:21','2006-02-15 22:15:19'),(7565,279,1,7947,'2.99','2005-07-28 13:05:50','2006-02-15 22:15:19'),(7566,279,2,8559,'3.99','2005-07-29 11:25:54','2006-02-15 22:15:19'),(7567,279,2,9820,'5.99','2005-07-31 11:46:57','2006-02-15 22:15:19'),(7568,279,2,10177,'2.99','2005-07-31 23:42:33','2006-02-15 22:15:19'),(7569,279,2,11250,'6.99','2005-08-02 13:35:42','2006-02-15 22:15:19'),(7570,279,1,11515,'2.99','2005-08-16 23:54:34','2006-02-15 22:15:19'),(7571,279,1,11703,'4.99','2005-08-17 07:19:29','2006-02-15 22:15:19'),(7572,279,2,12935,'2.99','2005-08-19 05:20:25','2006-02-15 22:15:19'),(7573,279,1,12949,'4.99','2005-08-19 05:55:52','2006-02-15 22:15:19'),(7574,279,1,13105,'7.99','2005-08-19 11:06:16','2006-02-15 22:15:20'),(7575,279,1,13233,'2.99','2005-08-19 16:14:41','2006-02-15 22:15:20'),(7576,279,2,13588,'4.99','2005-08-20 05:47:11','2006-02-15 22:15:20'),(7577,279,2,14206,'2.99','2005-08-21 03:59:26','2006-02-15 22:15:20'),(7578,279,1,14714,'3.99','2005-08-21 21:27:43','2006-02-15 22:15:20'),(7579,279,1,14779,'5.99','2005-08-22 00:00:56','2006-02-15 22:15:20'),(7580,279,1,14789,'4.99','2005-08-22 00:29:39','2006-02-15 22:15:20'),(7581,279,2,15580,'6.99','2005-08-23 05:39:06','2006-02-15 22:15:20'),(7582,279,1,15606,'2.99','2005-08-23 06:50:27','2006-02-15 22:15:20'),(7583,279,2,13538,'4.99','2006-02-14 15:16:03','2006-02-15 22:15:20'),(7584,280,1,1014,'4.99','2005-05-31 02:39:16','2006-02-15 22:15:20'),(7585,280,1,2656,'3.99','2005-06-19 10:42:33','2006-02-15 22:15:20'),(7586,280,2,3009,'4.99','2005-06-20 10:24:44','2006-02-15 22:15:20'),(7587,280,2,3097,'0.99','2005-06-20 16:26:14','2006-02-15 22:15:20'),(7588,280,1,4616,'4.99','2005-07-08 07:48:12','2006-02-15 22:15:20'),(7589,280,2,6851,'0.99','2005-07-12 19:32:14','2006-02-15 22:15:20'),(7590,280,1,7070,'4.99','2005-07-27 04:01:08','2006-02-15 22:15:20'),(7591,280,2,7901,'0.99','2005-07-28 11:12:12','2006-02-15 22:15:20'),(7592,280,2,8319,'0.99','2005-07-29 03:44:52','2006-02-15 22:15:20'),(7593,280,1,8365,'0.99','2005-07-29 05:11:00','2006-02-15 22:15:20'),(7594,280,1,8565,'7.99','2005-07-29 11:35:23','2006-02-15 22:15:20'),(7595,280,2,8695,'6.99','2005-07-29 16:44:55','2006-02-15 22:15:21'),(7596,280,2,8744,'3.99','2005-07-29 18:58:24','2006-02-15 22:15:21'),(7597,280,1,8912,'0.99','2005-07-30 01:31:25','2006-02-15 22:15:21'),(7598,280,2,9103,'0.99','2005-07-30 08:49:26','2006-02-15 22:15:21'),(7599,280,1,10847,'9.99','2005-08-01 23:49:33','2006-02-15 22:15:21'),(7600,280,1,11366,'4.99','2005-08-02 18:01:25','2006-02-15 22:15:21'),(7601,280,1,11517,'2.99','2005-08-16 23:56:28','2006-02-15 22:15:21'),(7602,280,1,12053,'4.99','2005-08-17 20:57:27','2006-02-15 22:15:21'),(7603,280,1,12849,'5.99','2005-08-19 02:05:37','2006-02-15 22:15:21'),(7604,280,2,13231,'9.99','2005-08-19 16:12:49','2006-02-15 22:15:21'),(7605,280,1,13321,'4.99','2005-08-19 19:40:37','2006-02-15 22:15:21'),(7606,280,1,13667,'4.99','2005-08-20 08:25:34','2006-02-15 22:15:21'),(7607,280,2,15036,'2.99','2005-08-22 09:36:00','2006-02-15 22:15:21'),(7608,280,1,15312,'4.99','2005-08-22 19:58:15','2006-02-15 22:15:21'),(7609,280,2,15554,'5.99','2005-08-23 04:48:12','2006-02-15 22:15:21'),(7610,280,2,15950,'5.99','2005-08-23 19:09:39','2006-02-15 22:15:22'),(7611,281,2,650,'2.99','2005-05-28 19:45:40','2006-02-15 22:15:22'),(7612,281,2,754,'2.99','2005-05-29 10:18:59','2006-02-15 22:15:22'),(7613,281,2,1485,'5.99','2005-06-15 21:24:10','2006-02-15 22:15:22'),(7614,281,1,2254,'5.99','2005-06-18 05:15:14','2006-02-15 22:15:22'),(7615,281,1,4607,'0.99','2005-07-08 07:15:14','2006-02-15 22:15:22'),(7616,281,2,4864,'6.99','2005-07-08 19:05:34','2006-02-15 22:15:22'),(7617,281,2,5410,'5.99','2005-07-09 20:21:10','2006-02-15 22:15:22'),(7618,281,2,6825,'0.99','2005-07-12 18:28:12','2006-02-15 22:15:22'),(7619,281,2,7034,'2.99','2005-07-27 03:03:37','2006-02-15 22:15:22'),(7620,281,1,7525,'3.99','2005-07-27 21:13:28','2006-02-15 22:15:22'),(7621,281,2,8131,'0.99','2005-07-28 19:55:21','2006-02-15 22:15:22'),(7622,281,2,8180,'4.99','2005-07-28 22:05:24','2006-02-15 22:15:22'),(7623,281,1,13641,'2.99','2005-08-20 07:34:42','2006-02-15 22:15:22'),(7624,281,1,14196,'1.99','2005-08-21 03:40:40','2006-02-15 22:15:22'),(7625,282,2,48,'1.99','2005-05-25 06:20:46','2006-02-15 22:15:22'),(7626,282,2,282,'6.99','2005-05-26 18:56:26','2006-02-15 22:15:22'),(7627,282,2,564,'0.99','2005-05-28 09:12:09','2006-02-15 22:15:22'),(7628,282,1,2016,'2.99','2005-06-17 12:18:36','2006-02-15 22:15:22'),(7629,282,2,2176,'2.99','2005-06-18 00:29:51','2006-02-15 22:15:22'),(7630,282,2,3408,'4.99','2005-06-21 16:15:11','2006-02-15 22:15:22'),(7631,282,1,3417,'2.99','2005-06-21 17:06:20','2006-02-15 22:15:22'),(7632,282,2,3675,'2.99','2005-07-06 09:09:19','2006-02-15 22:15:22'),(7633,282,1,3885,'2.99','2005-07-06 18:43:43','2006-02-15 22:15:22'),(7634,282,1,4359,'2.99','2005-07-07 19:30:20','2006-02-15 22:15:22'),(7635,282,2,4412,'4.99','2005-07-07 21:56:53','2006-02-15 22:15:22'),(7636,282,1,5113,'0.99','2005-07-09 07:06:18','2006-02-15 22:15:23'),(7637,282,2,5319,'8.99','2005-07-09 16:17:44','2006-02-15 22:15:23'),(7638,282,1,5926,'6.99','2005-07-10 21:53:42','2006-02-15 22:15:23'),(7639,282,1,7433,'2.99','2005-07-27 17:32:20','2006-02-15 22:15:23'),(7640,282,2,7534,'3.99','2005-07-27 21:26:17','2006-02-15 22:15:23'),(7641,282,1,8223,'6.99','2005-07-28 23:56:01','2006-02-15 22:15:23'),(7642,282,2,8270,'4.99','2005-07-29 01:27:22','2006-02-15 22:15:23'),(7643,282,2,8468,'1.99','2005-07-29 08:26:04','2006-02-15 22:15:23'),(7644,282,2,8743,'0.99','2005-07-29 18:57:01','2006-02-15 22:15:23'),(7645,282,2,8973,'1.99','2005-07-30 04:09:13','2006-02-15 22:15:23'),(7646,282,2,9658,'9.99','2005-07-31 06:00:52','2006-02-15 22:15:23'),(7647,282,2,11226,'2.99','2005-08-02 12:47:30','2006-02-15 22:15:23'),(7648,282,1,13278,'2.99','2005-08-19 17:57:53','2006-02-15 22:15:23'),(7649,282,2,13749,'2.99','2005-08-20 11:00:37','2006-02-15 22:15:23'),(7650,282,2,15543,'4.99','2005-08-23 04:15:41','2006-02-15 22:15:23'),(7651,282,2,15430,'0.99','2006-02-14 15:16:03','2006-02-15 22:15:23'),(7652,283,1,1749,'0.99','2005-06-16 16:56:00','2006-02-15 22:15:23'),(7653,283,2,1796,'2.99','2005-06-16 20:10:43','2006-02-15 22:15:23'),(7654,283,2,2333,'2.99','2005-06-18 10:55:54','2006-02-15 22:15:23'),(7655,283,1,2685,'2.99','2005-06-19 12:35:21','2006-02-15 22:15:23'),(7656,283,2,2849,'7.99','2005-06-19 23:06:00','2006-02-15 22:15:23'),(7657,283,1,3534,'4.99','2005-07-06 01:32:27','2006-02-15 22:15:23'),(7658,283,1,3568,'6.99','2005-07-06 03:11:57','2006-02-15 22:15:23'),(7659,283,2,3590,'4.99','2005-07-06 04:35:12','2006-02-15 22:15:23'),(7660,283,2,3672,'0.99','2005-07-06 09:01:56','2006-02-15 22:15:23'),(7661,283,2,4683,'2.99','2005-07-08 10:38:28','2006-02-15 22:15:23'),(7662,283,2,4876,'1.99','2005-07-08 19:27:50','2006-02-15 22:15:24'),(7663,283,2,5989,'2.99','2005-07-11 00:57:53','2006-02-15 22:15:24'),(7664,283,1,6075,'0.99','2005-07-11 05:03:03','2006-02-15 22:15:24'),(7665,283,1,6300,'1.99','2005-07-11 17:50:09','2006-02-15 22:15:24'),(7666,283,2,6313,'0.99','2005-07-11 18:29:52','2006-02-15 22:15:24'),(7667,283,1,6827,'4.99','2005-07-12 18:33:45','2006-02-15 22:15:24'),(7668,283,1,7504,'0.99','2005-07-27 20:24:31','2006-02-15 22:15:24'),(7669,283,1,7816,'0.99','2005-07-28 08:14:12','2006-02-15 22:15:24'),(7670,283,2,9353,'4.99','2005-07-30 18:30:37','2006-02-15 22:15:24'),(7671,283,2,9478,'2.99','2005-07-30 23:12:53','2006-02-15 22:15:24'),(7672,283,2,9572,'2.99','2005-07-31 02:44:10','2006-02-15 22:15:24'),(7673,283,2,9918,'2.99','2005-07-31 14:55:22','2006-02-15 22:15:24'),(7674,283,1,11637,'0.99','2005-08-17 04:36:39','2006-02-15 22:15:24'),(7675,283,2,11846,'2.99','2005-08-17 13:18:29','2006-02-15 22:15:24'),(7676,283,2,11966,'0.99','2005-08-17 17:40:04','2006-02-15 22:15:24'),(7677,283,1,12290,'6.99','2005-08-18 05:08:03','2006-02-15 22:15:24'),(7678,283,1,13229,'2.99','2005-08-19 16:08:33','2006-02-15 22:15:24'),(7679,283,1,15837,'2.99','2005-08-23 15:29:41','2006-02-15 22:15:24'),(7680,284,2,423,'0.99','2005-05-27 15:32:57','2006-02-15 22:15:24'),(7681,284,2,791,'0.99','2005-05-29 16:30:42','2006-02-15 22:15:24'),(7682,284,1,1145,'6.99','2005-05-31 20:13:45','2006-02-15 22:15:24'),(7683,284,1,1171,'0.99','2005-06-14 23:50:11','2006-02-15 22:15:24'),(7684,284,2,2813,'6.99','2005-06-19 20:01:47','2006-02-15 22:15:24'),(7685,284,2,3296,'0.99','2005-06-21 07:04:53','2006-02-15 22:15:24'),(7686,284,1,3572,'0.99','2005-07-06 03:33:23','2006-02-15 22:15:24'),(7687,284,2,4081,'2.99','2005-07-07 05:10:08','2006-02-15 22:15:24'),(7688,284,1,4759,'7.99','2005-07-08 14:39:22','2006-02-15 22:15:24'),(7689,284,2,4931,'7.99','2005-07-08 22:16:18','2006-02-15 22:15:25'),(7690,284,1,5161,'6.99','2005-07-09 08:57:56','2006-02-15 22:15:25'),(7691,284,1,6276,'5.99','2005-07-11 16:15:50','2006-02-15 22:15:25'),(7692,284,2,6982,'2.99','2005-07-27 00:53:41','2006-02-15 22:15:25'),(7693,284,1,7164,'6.99','2005-07-27 07:36:34','2006-02-15 22:15:25'),(7694,284,1,7463,'4.99','2005-07-27 18:48:32','2006-02-15 22:15:25'),(7695,284,2,7716,'8.99','2005-07-28 04:33:15','2006-02-15 22:15:25'),(7696,284,1,8888,'2.99','2005-07-30 00:39:36','2006-02-15 22:15:25'),(7697,284,1,9790,'0.99','2005-07-31 10:34:08','2006-02-15 22:15:25'),(7698,284,1,10396,'7.99','2005-08-01 07:08:46','2006-02-15 22:15:25'),(7699,284,1,10535,'4.99','2005-08-01 12:21:13','2006-02-15 22:15:25'),(7700,284,2,12162,'3.99','2005-08-18 00:44:30','2006-02-15 22:15:25'),(7701,284,1,14007,'5.99','2005-08-20 20:22:47','2006-02-15 22:15:25'),(7702,284,1,14648,'4.99','2005-08-21 19:18:01','2006-02-15 22:15:25'),(7703,284,2,14746,'4.99','2005-08-21 22:54:02','2006-02-15 22:15:25'),(7704,284,1,14921,'4.99','2005-08-22 05:12:24','2006-02-15 22:15:25'),(7705,284,2,15135,'3.99','2005-08-22 13:19:19','2006-02-15 22:15:25'),(7706,284,1,12064,'5.98','2006-02-14 15:16:03','2006-02-15 22:15:25'),(7707,284,2,12959,'0.00','2006-02-14 15:16:03','2006-02-15 22:15:25'),(7708,285,2,1161,'7.99','2005-06-14 23:07:08','2006-02-15 22:15:25'),(7709,285,2,1302,'3.99','2005-06-15 09:48:37','2006-02-15 22:15:25'),(7710,285,1,2249,'5.99','2005-06-18 05:03:08','2006-02-15 22:15:25'),(7711,285,2,4007,'6.99','2005-07-07 00:26:05','2006-02-15 22:15:25'),(7712,285,2,5112,'2.99','2005-07-09 07:04:04','2006-02-15 22:15:25'),(7713,285,1,5683,'9.99','2005-07-10 08:52:13','2006-02-15 22:15:25'),(7714,285,1,6010,'0.99','2005-07-11 01:52:28','2006-02-15 22:15:25'),(7715,285,2,6083,'3.99','2005-07-11 05:12:49','2006-02-15 22:15:26'),(7716,285,1,6094,'4.99','2005-07-11 05:54:42','2006-02-15 22:15:26'),(7717,285,2,6333,'4.99','2005-07-11 19:20:16','2006-02-15 22:15:26'),(7718,285,2,6644,'0.99','2005-07-12 10:39:39','2006-02-15 22:15:26'),(7719,285,1,7211,'6.99','2005-07-27 09:20:00','2006-02-15 22:15:26'),(7720,285,1,7452,'9.99','2005-07-27 18:26:39','2006-02-15 22:15:26'),(7721,285,1,7745,'9.99','2005-07-28 05:46:28','2006-02-15 22:15:26'),(7722,285,1,8154,'4.99','2005-07-28 20:56:18','2006-02-15 22:15:26'),(7723,285,2,8466,'0.99','2005-07-29 08:24:47','2006-02-15 22:15:26'),(7724,285,1,10493,'5.99','2005-08-01 10:43:12','2006-02-15 22:15:26'),(7725,285,2,10628,'2.99','2005-08-01 15:33:19','2006-02-15 22:15:26'),(7726,285,1,10641,'4.99','2005-08-01 15:44:57','2006-02-15 22:15:26'),(7727,285,1,12027,'8.99','2005-08-17 20:01:12','2006-02-15 22:15:26'),(7728,285,1,12444,'0.99','2005-08-18 10:53:12','2006-02-15 22:15:26'),(7729,285,1,12449,'0.99','2005-08-18 11:03:04','2006-02-15 22:15:26'),(7730,285,2,12687,'9.99','2005-08-18 19:57:39','2006-02-15 22:15:26'),(7731,285,2,13102,'7.99','2005-08-19 11:02:03','2006-02-15 22:15:26'),(7732,285,2,15251,'0.99','2005-08-22 18:03:57','2006-02-15 22:15:26'),(7733,285,1,15489,'4.99','2005-08-23 02:06:41','2006-02-15 22:15:26'),(7734,286,2,81,'6.99','2005-05-25 12:15:19','2006-02-15 22:15:26'),(7735,286,1,1690,'8.99','2005-06-16 12:24:18','2006-02-15 22:15:26'),(7736,286,1,2195,'4.99','2005-06-18 01:44:46','2006-02-15 22:15:26'),(7737,286,2,3592,'4.99','2005-07-06 04:38:50','2006-02-15 22:15:26'),(7738,286,2,3692,'3.99','2005-07-06 09:54:12','2006-02-15 22:15:26'),(7739,286,2,4242,'6.99','2005-07-07 13:39:01','2006-02-15 22:15:26'),(7740,286,2,4461,'9.99','2005-07-07 23:59:43','2006-02-15 22:15:26'),(7741,286,1,4707,'4.99','2005-07-08 11:57:28','2006-02-15 22:15:26'),(7742,286,1,4894,'2.99','2005-07-08 20:21:31','2006-02-15 22:15:27'),(7743,286,1,5796,'4.99','2005-07-10 14:42:54','2006-02-15 22:15:27'),(7744,286,2,6611,'2.99','2005-07-12 08:20:23','2006-02-15 22:15:27'),(7745,286,1,7254,'2.99','2005-07-27 10:48:50','2006-02-15 22:15:27'),(7746,286,1,7299,'2.99','2005-07-27 12:49:56','2006-02-15 22:15:27'),(7747,286,1,7368,'0.99','2005-07-27 15:06:05','2006-02-15 22:15:27'),(7748,286,1,7422,'2.99','2005-07-27 17:10:42','2006-02-15 22:15:27'),(7749,286,1,7719,'6.99','2005-07-28 04:39:09','2006-02-15 22:15:27'),(7750,286,2,8399,'0.99','2005-07-29 06:20:18','2006-02-15 22:15:27'),(7751,286,2,9280,'6.99','2005-07-30 15:15:38','2006-02-15 22:15:27'),(7752,286,1,9809,'3.99','2005-07-31 11:19:21','2006-02-15 22:15:27'),(7753,286,2,10105,'5.99','2005-07-31 20:54:20','2006-02-15 22:15:27'),(7754,286,2,11670,'0.99','2005-08-17 05:48:59','2006-02-15 22:15:27'),(7755,286,2,12595,'0.99','2005-08-18 16:27:08','2006-02-15 22:15:27'),(7756,286,1,12656,'0.99','2005-08-18 18:58:35','2006-02-15 22:15:27'),(7757,286,2,13635,'5.99','2005-08-20 07:17:35','2006-02-15 22:15:27'),(7758,286,1,13975,'4.99','2005-08-20 18:58:23','2006-02-15 22:15:27'),(7759,286,1,14905,'0.99','2005-08-22 04:34:22','2006-02-15 22:15:27'),(7760,286,2,15629,'4.99','2005-08-23 07:28:22','2006-02-15 22:15:27'),(7761,287,2,498,'0.99','2005-05-28 01:01:21','2006-02-15 22:15:27'),(7762,287,1,655,'2.99','2005-05-28 20:16:20','2006-02-15 22:15:27'),(7763,287,2,964,'2.99','2005-05-30 18:53:21','2006-02-15 22:15:27'),(7764,287,1,1247,'7.99','2005-06-15 05:16:40','2006-02-15 22:15:27'),(7765,287,2,1642,'2.99','2005-06-16 08:54:15','2006-02-15 22:15:27'),(7766,287,2,2286,'9.99','2005-06-18 07:02:32','2006-02-15 22:15:27'),(7767,287,2,2612,'6.99','2005-06-19 07:19:41','2006-02-15 22:15:27'),(7768,287,2,4877,'4.99','2005-07-08 19:31:02','2006-02-15 22:15:28'),(7769,287,2,5346,'1.99','2005-07-09 17:29:01','2006-02-15 22:15:28'),(7770,287,1,5593,'3.99','2005-07-10 04:33:13','2006-02-15 22:15:28'),(7771,287,2,5761,'0.99','2005-07-10 12:45:36','2006-02-15 22:15:28'),(7772,287,2,6379,'3.99','2005-07-11 21:51:25','2006-02-15 22:15:28'),(7773,287,1,6397,'2.99','2005-07-11 22:34:02','2006-02-15 22:15:28'),(7774,287,2,7402,'2.99','2005-07-27 16:19:40','2006-02-15 22:15:28'),(7775,287,2,7777,'2.99','2005-07-28 07:04:42','2006-02-15 22:15:28'),(7776,287,2,8994,'6.99','2005-07-30 04:51:32','2006-02-15 22:15:28'),(7777,287,2,9716,'1.99','2005-07-31 08:23:53','2006-02-15 22:15:28'),(7778,287,1,10027,'6.99','2005-07-31 18:33:51','2006-02-15 22:15:28'),(7779,287,2,10574,'2.99','2005-08-01 13:36:51','2006-02-15 22:15:28'),(7780,287,2,10807,'4.99','2005-08-01 22:26:10','2006-02-15 22:15:28'),(7781,287,2,11106,'4.99','2005-08-02 08:17:38','2006-02-15 22:15:28'),(7782,287,1,11716,'4.99','2005-08-17 07:40:55','2006-02-15 22:15:28'),(7783,287,2,12861,'2.99','2005-08-19 02:30:24','2006-02-15 22:15:28'),(7784,287,2,14715,'6.99','2005-08-21 21:28:18','2006-02-15 22:15:28'),(7785,287,2,15076,'1.99','2005-08-22 11:05:34','2006-02-15 22:15:28'),(7786,287,1,15084,'4.99','2005-08-22 11:17:59','2006-02-15 22:15:28'),(7787,287,2,15127,'0.99','2005-08-22 12:56:29','2006-02-15 22:15:28'),(7788,287,1,15614,'2.99','2005-08-23 07:05:15','2006-02-15 22:15:28'),(7789,287,2,14204,'0.99','2006-02-14 15:16:03','2006-02-15 22:15:28'),(7790,288,2,93,'3.99','2005-05-25 15:54:16','2006-02-15 22:15:28'),(7791,288,2,427,'6.99','2005-05-27 16:10:04','2006-02-15 22:15:28'),(7792,288,1,503,'4.99','2005-05-28 01:35:25','2006-02-15 22:15:28'),(7793,288,2,565,'5.99','2005-05-28 09:26:31','2006-02-15 22:15:28'),(7794,288,1,1466,'5.99','2005-06-15 20:46:04','2006-02-15 22:15:29'),(7795,288,1,3958,'3.99','2005-07-06 22:07:33','2006-02-15 22:15:29'),(7796,288,1,4692,'2.99','2005-07-08 11:07:06','2006-02-15 22:15:29'),(7797,288,2,4758,'0.99','2005-07-08 14:38:02','2006-02-15 22:15:29'),(7798,288,1,6399,'2.99','2005-07-11 22:39:05','2006-02-15 22:15:29'),(7799,288,2,6518,'3.99','2005-07-12 03:59:42','2006-02-15 22:15:29'),(7800,288,2,7744,'0.99','2005-07-28 05:38:20','2006-02-15 22:15:29'),(7801,288,2,7855,'2.99','2005-07-28 09:43:02','2006-02-15 22:15:29'),(7802,288,2,9429,'2.99','2005-07-30 21:19:26','2006-02-15 22:15:29'),(7803,288,1,9732,'0.99','2005-07-31 08:56:08','2006-02-15 22:15:29'),(7804,288,1,10927,'9.99','2005-08-02 02:31:15','2006-02-15 22:15:29'),(7805,288,2,11952,'2.99','2005-08-17 17:14:57','2006-02-15 22:15:29'),(7806,288,1,12134,'1.99','2005-08-17 23:49:43','2006-02-15 22:15:29'),(7807,288,1,13219,'2.99','2005-08-19 15:40:28','2006-02-15 22:15:29'),(7808,288,1,13227,'0.99','2005-08-19 16:05:38','2006-02-15 22:15:29'),(7809,288,2,13363,'2.99','2005-08-19 21:07:59','2006-02-15 22:15:29'),(7810,288,2,14113,'0.99','2005-08-21 01:03:30','2006-02-15 22:15:29'),(7811,288,2,14756,'0.99','2005-08-21 23:21:23','2006-02-15 22:15:29'),(7812,288,2,15058,'2.99','2005-08-22 10:20:55','2006-02-15 22:15:29'),(7813,288,1,15119,'2.99','2005-08-22 12:41:33','2006-02-15 22:15:29'),(7814,289,2,1880,'4.99','2005-06-17 03:08:59','2006-02-15 22:15:29'),(7815,289,2,2316,'0.99','2005-06-18 09:04:59','2006-02-15 22:15:29'),(7816,289,1,2387,'6.99','2005-06-18 15:24:19','2006-02-15 22:15:29'),(7817,289,1,2784,'10.99','2005-06-19 18:40:29','2006-02-15 22:15:29'),(7818,289,2,2948,'6.99','2005-06-20 06:02:35','2006-02-15 22:15:29'),(7819,289,2,3123,'6.99','2005-06-20 18:26:14','2006-02-15 22:15:29'),(7820,289,1,3588,'2.99','2005-07-06 04:29:13','2006-02-15 22:15:30'),(7821,289,2,4622,'0.99','2005-07-08 08:02:42','2006-02-15 22:15:30'),(7822,289,1,5089,'4.99','2005-07-09 05:45:40','2006-02-15 22:15:30'),(7823,289,2,5342,'8.99','2005-07-09 17:20:03','2006-02-15 22:15:30'),(7824,289,2,5584,'4.99','2005-07-10 04:15:25','2006-02-15 22:15:30'),(7825,289,2,5724,'0.99','2005-07-10 11:18:12','2006-02-15 22:15:30'),(7826,289,2,6007,'3.99','2005-07-11 01:43:06','2006-02-15 22:15:30'),(7827,289,2,6536,'7.99','2005-07-12 04:44:25','2006-02-15 22:15:30'),(7828,289,1,7151,'4.99','2005-07-27 07:14:31','2006-02-15 22:15:30'),(7829,289,1,7162,'4.99','2005-07-27 07:32:45','2006-02-15 22:15:30'),(7830,289,2,7325,'0.99','2005-07-27 13:46:55','2006-02-15 22:15:30'),(7831,289,1,9498,'2.99','2005-07-30 23:56:55','2006-02-15 22:15:30'),(7832,289,2,10297,'7.99','2005-08-01 04:05:04','2006-02-15 22:15:30'),(7833,289,1,12158,'1.99','2005-08-18 00:34:20','2006-02-15 22:15:30'),(7834,289,1,12170,'0.99','2005-08-18 01:06:10','2006-02-15 22:15:30'),(7835,289,2,12558,'7.99','2005-08-18 14:52:35','2006-02-15 22:15:30'),(7836,289,2,13165,'0.99','2005-08-19 13:34:10','2006-02-15 22:15:30'),(7837,289,2,13211,'0.99','2005-08-19 15:23:41','2006-02-15 22:15:30'),(7838,289,2,13256,'9.99','2005-08-19 16:54:12','2006-02-15 22:15:30'),(7839,289,2,13336,'5.99','2005-08-19 20:03:22','2006-02-15 22:15:30'),(7840,289,2,13891,'6.99','2005-08-20 15:42:05','2006-02-15 22:15:30'),(7841,289,1,14087,'0.99','2005-08-20 23:53:40','2006-02-15 22:15:30'),(7842,289,2,14729,'4.99','2005-08-21 22:16:57','2006-02-15 22:15:30'),(7843,289,2,14917,'4.99','2005-08-22 05:03:59','2006-02-15 22:15:30'),(7844,290,1,160,'2.99','2005-05-26 01:46:20','2006-02-15 22:15:30'),(7845,290,1,1220,'6.99','2005-06-15 03:26:15','2006-02-15 22:15:30'),(7846,290,2,1336,'8.99','2005-06-15 12:01:34','2006-02-15 22:15:31'),(7847,290,2,1496,'4.99','2005-06-15 21:55:58','2006-02-15 22:15:31'),(7848,290,2,1532,'0.99','2005-06-16 00:41:31','2006-02-15 22:15:31'),(7849,290,1,3013,'3.99','2005-06-20 10:45:09','2006-02-15 22:15:31'),(7850,290,2,4039,'4.99','2005-07-07 02:57:59','2006-02-15 22:15:31'),(7851,290,1,4073,'0.99','2005-07-07 04:49:13','2006-02-15 22:15:31'),(7852,290,2,4416,'0.99','2005-07-07 22:04:36','2006-02-15 22:15:31'),(7853,290,1,5105,'2.99','2005-07-09 06:38:59','2006-02-15 22:15:31'),(7854,290,2,5214,'5.99','2005-07-09 11:43:08','2006-02-15 22:15:31'),(7855,290,2,5827,'2.99','2005-07-10 16:22:20','2006-02-15 22:15:31'),(7856,290,2,6816,'4.99','2005-07-12 18:18:50','2006-02-15 22:15:31'),(7857,290,1,6952,'4.99','2005-07-26 23:51:27','2006-02-15 22:15:31'),(7858,290,2,7265,'2.99','2005-07-27 11:19:01','2006-02-15 22:15:31'),(7859,290,1,7650,'1.99','2005-07-28 01:47:20','2006-02-15 22:15:31'),(7860,290,1,8639,'4.99','2005-07-29 14:30:31','2006-02-15 22:15:31'),(7861,290,1,9000,'7.99','2005-07-30 04:58:55','2006-02-15 22:15:31'),(7862,290,1,9413,'0.99','2005-07-30 20:44:39','2006-02-15 22:15:31'),(7863,290,2,10096,'3.99','2005-07-31 20:38:58','2006-02-15 22:15:31'),(7864,290,1,10194,'1.99','2005-08-01 00:33:52','2006-02-15 22:15:31'),(7865,290,1,10901,'2.99','2005-08-02 01:35:44','2006-02-15 22:15:31'),(7866,290,1,11596,'6.99','2005-08-17 02:53:55','2006-02-15 22:15:31'),(7867,290,2,12193,'3.99','2005-08-18 02:03:59','2006-02-15 22:15:31'),(7868,290,2,12778,'4.99','2005-08-18 23:40:23','2006-02-15 22:15:31'),(7869,290,2,13190,'1.99','2005-08-19 14:27:59','2006-02-15 22:15:31'),(7870,290,1,13367,'2.99','2005-08-19 21:19:27','2006-02-15 22:15:31'),(7871,290,2,13687,'2.99','2005-08-20 08:57:51','2006-02-15 22:15:31'),(7872,291,1,54,'4.99','2005-05-25 07:23:25','2006-02-15 22:15:32'),(7873,291,2,747,'4.99','2005-05-29 09:26:34','2006-02-15 22:15:32'),(7874,291,1,1012,'2.99','2005-05-31 02:18:05','2006-02-15 22:15:32'),(7875,291,1,1191,'2.99','2005-06-15 01:10:35','2006-02-15 22:15:32'),(7876,291,1,2300,'2.99','2005-06-18 08:22:34','2006-02-15 22:15:32'),(7877,291,2,3042,'2.99','2005-06-20 12:38:27','2006-02-15 22:15:32'),(7878,291,2,3512,'4.99','2005-07-06 00:43:06','2006-02-15 22:15:32'),(7879,291,2,4862,'3.99','2005-07-08 19:02:46','2006-02-15 22:15:32'),(7880,291,2,5754,'2.99','2005-07-10 12:32:43','2006-02-15 22:15:32'),(7881,291,2,6516,'4.99','2005-07-12 03:51:54','2006-02-15 22:15:32'),(7882,291,1,6796,'2.99','2005-07-12 16:44:16','2006-02-15 22:15:32'),(7883,291,1,7561,'5.99','2005-07-27 22:21:05','2006-02-15 22:15:32'),(7884,291,2,7564,'0.99','2005-07-27 22:31:17','2006-02-15 22:15:32'),(7885,291,1,8690,'0.99','2005-07-29 16:39:28','2006-02-15 22:15:32'),(7886,291,2,8697,'4.99','2005-07-29 16:46:07','2006-02-15 22:15:32'),(7887,291,1,9165,'5.99','2005-07-30 11:24:28','2006-02-15 22:15:32'),(7888,291,2,9201,'5.99','2005-07-30 12:42:21','2006-02-15 22:15:32'),(7889,291,2,9919,'7.99','2005-07-31 14:55:46','2006-02-15 22:15:32'),(7890,291,1,10463,'4.99','2005-08-01 09:39:43','2006-02-15 22:15:32'),(7891,291,2,11145,'0.99','2005-08-02 09:43:24','2006-02-15 22:15:32'),(7892,291,1,13665,'5.99','2005-08-20 08:19:20','2006-02-15 22:15:32'),(7893,291,2,14241,'4.99','2005-08-21 05:24:55','2006-02-15 22:15:32'),(7894,291,2,15663,'3.99','2005-08-23 08:54:26','2006-02-15 22:15:32'),(7895,292,1,324,'0.99','2005-05-27 01:00:04','2006-02-15 22:15:32'),(7896,292,1,1901,'3.99','2005-06-17 04:35:19','2006-02-15 22:15:32'),(7897,292,2,2258,'3.99','2005-06-18 05:30:36','2006-02-15 22:15:32'),(7898,292,1,2838,'3.99','2005-06-19 22:06:06','2006-02-15 22:15:33'),(7899,292,2,3328,'2.99','2005-06-21 09:08:44','2006-02-15 22:15:33'),(7900,292,2,3557,'0.99','2005-07-06 02:48:39','2006-02-15 22:15:33'),(7901,292,1,4200,'4.99','2005-07-07 11:15:11','2006-02-15 22:15:33'),(7902,292,2,5095,'4.99','2005-07-09 06:08:22','2006-02-15 22:15:33'),(7903,292,2,5257,'0.99','2005-07-09 13:56:43','2006-02-15 22:15:33'),(7904,292,1,5940,'4.99','2005-07-10 22:31:01','2006-02-15 22:15:33'),(7905,292,1,6270,'8.99','2005-07-11 15:59:10','2006-02-15 22:15:33'),(7906,292,1,6900,'6.99','2005-07-12 21:45:25','2006-02-15 22:15:33'),(7907,292,2,7199,'5.99','2005-07-27 08:53:23','2006-02-15 22:15:33'),(7908,292,1,7216,'2.99','2005-07-27 09:27:45','2006-02-15 22:15:33'),(7909,292,1,7545,'2.99','2005-07-27 21:48:03','2006-02-15 22:15:33'),(7910,292,1,7766,'4.99','2005-07-28 06:41:57','2006-02-15 22:15:33'),(7911,292,1,8047,'2.99','2005-07-28 16:49:43','2006-02-15 22:15:33'),(7912,292,2,8842,'4.99','2005-07-29 23:03:40','2006-02-15 22:15:33'),(7913,292,1,8990,'8.99','2005-07-30 04:41:42','2006-02-15 22:15:33'),(7914,292,1,9792,'5.99','2005-07-31 10:43:41','2006-02-15 22:15:33'),(7915,292,2,9819,'1.99','2005-07-31 11:39:13','2006-02-15 22:15:33'),(7916,292,1,11193,'4.99','2005-08-02 11:31:33','2006-02-15 22:15:33'),(7917,292,1,12739,'10.99','2005-08-18 22:15:18','2006-02-15 22:15:33'),(7918,292,1,13715,'2.99','2005-08-20 09:43:06','2006-02-15 22:15:33'),(7919,292,1,14499,'0.99','2005-08-21 14:11:19','2006-02-15 22:15:33'),(7920,292,2,14845,'4.99','2005-08-22 02:12:44','2006-02-15 22:15:33'),(7921,292,1,15117,'2.99','2005-08-22 12:38:20','2006-02-15 22:15:33'),(7922,293,2,445,'0.99','2005-05-27 18:42:57','2006-02-15 22:15:33'),(7923,293,1,924,'4.99','2005-05-30 12:10:59','2006-02-15 22:15:33'),(7924,293,2,1034,'8.99','2005-05-31 04:53:40','2006-02-15 22:15:34'),(7925,293,1,1589,'9.99','2005-06-16 04:58:03','2006-02-15 22:15:34'),(7926,293,1,1829,'5.99','2005-06-16 22:14:21','2006-02-15 22:15:34'),(7927,293,2,1860,'4.99','2005-06-17 01:17:12','2006-02-15 22:15:34'),(7928,293,1,2386,'4.99','2005-06-18 15:22:51','2006-02-15 22:15:34'),(7929,293,2,3025,'2.99','2005-06-20 11:46:48','2006-02-15 22:15:34'),(7930,293,1,3290,'1.99','2005-06-21 06:45:34','2006-02-15 22:15:34'),(7931,293,2,3452,'4.99','2005-06-21 21:11:27','2006-02-15 22:15:34'),(7932,293,1,3906,'3.99','2005-07-06 19:35:55','2006-02-15 22:15:34'),(7933,293,2,4343,'0.99','2005-07-07 18:48:54','2006-02-15 22:15:34'),(7934,293,2,4542,'4.99','2005-07-08 04:06:30','2006-02-15 22:15:34'),(7935,293,2,4944,'6.99','2005-07-08 22:44:28','2006-02-15 22:15:34'),(7936,293,2,5765,'3.99','2005-07-10 13:03:02','2006-02-15 22:15:34'),(7937,293,1,6432,'9.99','2005-07-12 00:09:41','2006-02-15 22:15:34'),(7938,293,2,7607,'4.99','2005-07-28 00:05:53','2006-02-15 22:15:34'),(7939,293,1,8589,'4.99','2005-07-29 12:28:17','2006-02-15 22:15:34'),(7940,293,1,8745,'2.99','2005-07-29 19:03:05','2006-02-15 22:15:34'),(7941,293,2,9123,'2.99','2005-07-30 09:39:15','2006-02-15 22:15:34'),(7942,293,2,11131,'1.99','2005-08-02 09:10:04','2006-02-15 22:15:34'),(7943,293,1,11576,'2.99','2005-08-17 01:53:20','2006-02-15 22:15:34'),(7944,293,2,13013,'6.99','2005-08-19 07:55:51','2006-02-15 22:15:34'),(7945,293,1,13029,'2.99','2005-08-19 08:28:04','2006-02-15 22:15:34'),(7946,293,2,13504,'5.99','2005-08-20 02:01:48','2006-02-15 22:15:34'),(7947,293,1,13817,'4.99','2005-08-20 13:15:30','2006-02-15 22:15:34'),(7948,293,1,14248,'6.99','2005-08-21 05:35:57','2006-02-15 22:15:34'),(7949,293,1,15258,'4.99','2005-08-22 18:22:44','2006-02-15 22:15:35'),(7950,293,1,15402,'8.99','2005-08-22 23:17:41','2006-02-15 22:15:35'),(7951,293,1,15508,'7.99','2005-08-23 02:49:04','2006-02-15 22:15:35'),(7952,293,2,15675,'5.99','2005-08-23 09:18:52','2006-02-15 22:15:35'),(7953,294,1,595,'1.99','2005-05-28 13:59:54','2006-02-15 22:15:35'),(7954,294,1,2900,'2.99','2005-06-20 02:40:04','2006-02-15 22:15:35'),(7955,294,2,3330,'2.99','2005-06-21 09:22:37','2006-02-15 22:15:35'),(7956,294,1,3681,'4.99','2005-07-06 09:19:30','2006-02-15 22:15:35'),(7957,294,2,4019,'4.99','2005-07-07 01:27:44','2006-02-15 22:15:35'),(7958,294,1,4786,'7.99','2005-07-08 16:13:05','2006-02-15 22:15:35'),(7959,294,2,6185,'5.99','2005-07-11 11:25:09','2006-02-15 22:15:35'),(7960,294,2,7415,'6.99','2005-07-27 16:50:59','2006-02-15 22:15:35'),(7961,294,1,7765,'4.99','2005-07-28 06:40:33','2006-02-15 22:15:35'),(7962,294,2,8843,'4.99','2005-07-29 23:04:25','2006-02-15 22:15:35'),(7963,294,2,9194,'2.99','2005-07-30 12:28:45','2006-02-15 22:15:35'),(7964,294,1,9522,'2.99','2005-07-31 00:55:11','2006-02-15 22:15:35'),(7965,294,2,9607,'0.99','2005-07-31 03:51:06','2006-02-15 22:15:35'),(7966,294,2,10186,'0.99','2005-08-01 00:12:36','2006-02-15 22:15:35'),(7967,294,2,10220,'4.99','2005-08-01 01:13:22','2006-02-15 22:15:35'),(7968,294,1,10551,'6.99','2005-08-01 12:48:55','2006-02-15 22:15:35'),(7969,294,2,10600,'2.99','2005-08-01 14:25:21','2006-02-15 22:15:35'),(7970,294,2,10642,'4.99','2005-08-01 15:45:11','2006-02-15 22:15:35'),(7971,294,2,11071,'2.99','2005-08-02 07:10:53','2006-02-15 22:15:35'),(7972,294,1,11390,'2.99','2005-08-02 18:39:16','2006-02-15 22:15:35'),(7973,294,2,11875,'4.99','2005-08-17 14:16:48','2006-02-15 22:15:35'),(7974,294,2,11981,'2.99','2005-08-17 18:10:40','2006-02-15 22:15:35'),(7975,294,1,12278,'5.99','2005-08-18 04:46:45','2006-02-15 22:15:36'),(7976,294,1,14474,'2.99','2005-08-21 13:22:48','2006-02-15 22:15:36'),(7977,294,2,14630,'7.99','2005-08-21 18:43:44','2006-02-15 22:15:36'),(7978,294,1,15839,'5.99','2005-08-23 15:34:46','2006-02-15 22:15:36'),(7979,295,2,371,'3.99','2005-05-27 08:08:18','2006-02-15 22:15:36'),(7980,295,1,1184,'5.99','2005-06-15 00:49:36','2006-02-15 22:15:36'),(7981,295,1,1328,'2.99','2005-06-15 11:23:27','2006-02-15 22:15:36'),(7982,295,2,1935,'2.99','2005-06-17 07:14:15','2006-02-15 22:15:36'),(7983,295,1,2054,'2.99','2005-06-17 15:26:37','2006-02-15 22:15:36'),(7984,295,1,2431,'1.99','2005-06-18 17:53:03','2006-02-15 22:15:36'),(7985,295,1,2638,'1.99','2005-06-19 09:23:30','2006-02-15 22:15:36'),(7986,295,1,2999,'2.99','2005-06-20 09:30:34','2006-02-15 22:15:36'),(7987,295,1,3198,'1.99','2005-06-21 00:08:54','2006-02-15 22:15:36'),(7988,295,2,3394,'8.99','2005-06-21 15:17:39','2006-02-15 22:15:36'),(7989,295,2,3496,'1.99','2005-07-05 23:59:15','2006-02-15 22:15:36'),(7990,295,1,3876,'9.99','2005-07-06 18:21:13','2006-02-15 22:15:36'),(7991,295,1,4164,'1.99','2005-07-07 09:20:11','2006-02-15 22:15:36'),(7992,295,1,4432,'1.99','2005-07-07 22:40:02','2006-02-15 22:15:36'),(7993,295,1,5019,'2.99','2005-07-09 02:04:32','2006-02-15 22:15:36'),(7994,295,2,5053,'4.99','2005-07-09 03:59:46','2006-02-15 22:15:36'),(7995,295,2,5283,'2.99','2005-07-09 15:07:17','2006-02-15 22:15:36'),(7996,295,2,5994,'4.99','2005-07-11 01:14:10','2006-02-15 22:15:36'),(7997,295,1,6252,'2.99','2005-07-11 15:06:29','2006-02-15 22:15:36'),(7998,295,2,6331,'3.99','2005-07-11 19:17:21','2006-02-15 22:15:36'),(7999,295,2,8087,'0.99','2005-07-28 18:21:16','2006-02-15 22:15:36'),(8000,295,1,8108,'7.99','2005-07-28 19:07:38','2006-02-15 22:15:36'),(8001,295,1,8840,'9.99','2005-07-29 22:55:38','2006-02-15 22:15:37'),(8002,295,2,8932,'2.99','2005-07-30 02:31:26','2006-02-15 22:15:37'),(8003,295,1,9425,'7.99','2005-07-30 21:11:21','2006-02-15 22:15:37'),(8004,295,2,9692,'8.99','2005-07-31 07:11:04','2006-02-15 22:15:37'),(8005,295,2,9793,'4.99','2005-07-31 10:45:11','2006-02-15 22:15:37'),(8006,295,2,10160,'4.99','2005-07-31 23:07:40','2006-02-15 22:15:37'),(8007,295,2,10222,'0.99','2005-08-01 01:17:42','2006-02-15 22:15:37'),(8008,295,1,10349,'3.99','2005-08-01 05:27:13','2006-02-15 22:15:37'),(8009,295,2,11083,'4.99','2005-08-02 07:32:01','2006-02-15 22:15:37'),(8010,295,2,11913,'5.99','2005-08-17 15:53:17','2006-02-15 22:15:37'),(8011,295,2,12041,'4.99','2005-08-17 20:34:33','2006-02-15 22:15:37'),(8012,295,1,12383,'0.99','2005-08-18 08:36:03','2006-02-15 22:15:37'),(8013,295,1,14264,'0.99','2005-08-21 06:18:22','2006-02-15 22:15:37'),(8014,295,1,14387,'6.99','2005-08-21 10:10:01','2006-02-15 22:15:37'),(8015,295,1,14514,'6.99','2005-08-21 14:51:52','2006-02-15 22:15:37'),(8016,295,2,15735,'0.99','2006-02-14 15:16:03','2006-02-15 22:15:37'),(8017,296,2,162,'4.99','2005-05-26 02:02:05','2006-02-15 22:15:37'),(8018,296,1,511,'5.99','2005-05-28 03:04:04','2006-02-15 22:15:37'),(8019,296,1,869,'4.99','2005-05-30 04:22:06','2006-02-15 22:15:37'),(8020,296,2,956,'2.99','2005-05-30 17:30:28','2006-02-15 22:15:37'),(8021,296,2,1659,'4.99','2005-06-16 10:11:46','2006-02-15 22:15:37'),(8022,296,1,3034,'0.99','2005-06-20 12:15:50','2006-02-15 22:15:37'),(8023,296,2,3119,'0.99','2005-06-20 18:11:44','2006-02-15 22:15:37'),(8024,296,2,3486,'7.99','2005-07-05 23:29:55','2006-02-15 22:15:37'),(8025,296,1,3810,'2.99','2005-07-06 15:18:44','2006-02-15 22:15:37'),(8026,296,1,4480,'4.99','2005-07-08 00:56:30','2006-02-15 22:15:38'),(8027,296,2,5090,'0.99','2005-07-09 05:48:22','2006-02-15 22:15:38'),(8028,296,1,5589,'4.99','2005-07-10 04:22:58','2006-02-15 22:15:38'),(8029,296,2,6016,'4.99','2005-07-11 02:04:45','2006-02-15 22:15:38'),(8030,296,1,6398,'5.99','2005-07-11 22:34:49','2006-02-15 22:15:38'),(8031,296,1,6967,'6.99','2005-07-27 00:16:31','2006-02-15 22:15:38'),(8032,296,2,7568,'4.99','2005-07-27 22:38:53','2006-02-15 22:15:38'),(8033,296,2,8171,'0.99','2005-07-28 21:32:57','2006-02-15 22:15:38'),(8034,296,1,9249,'5.99','2005-07-30 14:15:02','2006-02-15 22:15:38'),(8035,296,1,9304,'2.99','2005-07-30 16:41:34','2006-02-15 22:15:38'),(8036,296,2,11571,'4.99','2005-08-17 01:37:51','2006-02-15 22:15:38'),(8037,296,2,11825,'4.99','2005-08-17 12:43:30','2006-02-15 22:15:38'),(8038,296,2,12689,'3.99','2005-08-18 20:06:34','2006-02-15 22:15:38'),(8039,296,2,13471,'2.99','2005-08-20 01:02:26','2006-02-15 22:15:38'),(8040,296,1,13702,'2.99','2005-08-20 09:27:20','2006-02-15 22:15:38'),(8041,296,1,13819,'4.99','2005-08-20 13:23:15','2006-02-15 22:15:38'),(8042,296,1,13991,'1.99','2005-08-20 19:29:44','2006-02-15 22:15:38'),(8043,296,2,14571,'7.99','2005-08-21 16:40:26','2006-02-15 22:15:38'),(8044,296,2,15023,'2.99','2005-08-22 08:56:48','2006-02-15 22:15:38'),(8045,296,2,15866,'7.99','2005-08-23 16:19:02','2006-02-15 22:15:38'),(8046,296,1,12009,'2.99','2006-02-14 15:16:03','2006-02-15 22:15:38'),(8047,297,2,143,'0.99','2005-05-25 23:45:52','2006-02-15 22:15:38'),(8048,297,1,954,'3.99','2005-05-30 16:57:29','2006-02-15 22:15:38'),(8049,297,1,1409,'3.99','2005-06-15 16:58:12','2006-02-15 22:15:38'),(8050,297,1,2067,'2.99','2005-06-17 16:11:08','2006-02-15 22:15:38'),(8051,297,1,2202,'8.99','2005-06-18 02:09:24','2006-02-15 22:15:38'),(8052,297,1,2260,'2.99','2005-06-18 05:38:36','2006-02-15 22:15:39'),(8053,297,2,2339,'4.99','2005-06-18 11:29:22','2006-02-15 22:15:39'),(8054,297,1,3582,'0.99','2005-07-06 04:10:35','2006-02-15 22:15:39'),(8055,297,2,4621,'2.99','2005-07-08 08:02:18','2006-02-15 22:15:39'),(8056,297,1,4929,'5.99','2005-07-08 22:06:18','2006-02-15 22:15:39'),(8057,297,1,5743,'8.99','2005-07-10 11:57:38','2006-02-15 22:15:39'),(8058,297,2,6036,'2.99','2005-07-11 03:02:28','2006-02-15 22:15:39'),(8059,297,1,6064,'6.99','2005-07-11 04:23:18','2006-02-15 22:15:39'),(8060,297,1,6156,'4.99','2005-07-11 09:45:48','2006-02-15 22:15:39'),(8061,297,1,6984,'2.99','2005-07-27 00:56:30','2006-02-15 22:15:39'),(8062,297,2,7867,'0.99','2005-07-28 10:08:54','2006-02-15 22:15:39'),(8063,297,1,7933,'0.99','2005-07-28 12:27:27','2006-02-15 22:15:39'),(8064,297,2,9014,'2.99','2005-07-30 05:19:27','2006-02-15 22:15:39'),(8065,297,2,9674,'5.99','2005-07-31 06:36:53','2006-02-15 22:15:39'),(8066,297,1,10153,'0.99','2005-07-31 22:30:10','2006-02-15 22:15:39'),(8067,297,2,10264,'4.99','2005-08-01 03:03:12','2006-02-15 22:15:39'),(8068,297,2,11269,'0.99','2005-08-02 14:11:41','2006-02-15 22:15:39'),(8069,297,2,11413,'0.99','2005-08-02 19:35:19','2006-02-15 22:15:39'),(8070,297,2,11585,'4.99','2005-08-17 02:14:36','2006-02-15 22:15:39'),(8071,297,1,11780,'2.99','2005-08-17 10:34:24','2006-02-15 22:15:39'),(8072,297,1,11784,'0.99','2005-08-17 10:48:05','2006-02-15 22:15:39'),(8073,297,1,12472,'10.99','2005-08-18 11:58:48','2006-02-15 22:15:39'),(8074,297,1,13330,'2.99','2005-08-19 19:59:21','2006-02-15 22:15:39'),(8075,297,2,13721,'4.99','2005-08-20 10:02:59','2006-02-15 22:15:39'),(8076,297,1,13888,'1.99','2005-08-20 15:39:42','2006-02-15 22:15:39'),(8077,297,1,14403,'5.99','2005-08-21 10:40:34','2006-02-15 22:15:40'),(8078,297,2,15582,'2.99','2005-08-23 05:45:44','2006-02-15 22:15:40'),(8079,297,1,15711,'4.99','2005-08-23 10:43:00','2006-02-15 22:15:40'),(8080,298,1,383,'3.99','2005-05-27 10:12:20','2006-02-15 22:15:40'),(8081,298,2,1454,'4.99','2005-06-15 19:49:41','2006-02-15 22:15:40'),(8082,298,2,2385,'3.99','2005-06-18 15:22:40','2006-02-15 22:15:40'),(8083,298,2,3095,'4.99','2005-06-20 16:16:53','2006-02-15 22:15:40'),(8084,298,2,3400,'4.99','2005-06-21 15:50:30','2006-02-15 22:15:40'),(8085,298,2,3479,'0.99','2005-07-05 23:08:53','2006-02-15 22:15:40'),(8086,298,1,3728,'2.99','2005-07-06 11:29:00','2006-02-15 22:15:40'),(8087,298,2,4291,'2.99','2005-07-07 15:47:47','2006-02-15 22:15:40'),(8088,298,1,4936,'3.99','2005-07-08 22:24:50','2006-02-15 22:15:40'),(8089,298,2,5166,'2.99','2005-07-09 09:15:48','2006-02-15 22:15:40'),(8090,298,1,5247,'2.99','2005-07-09 13:26:28','2006-02-15 22:15:40'),(8091,298,2,6802,'0.99','2005-07-12 17:14:17','2006-02-15 22:15:40'),(8092,298,2,7802,'0.99','2005-07-28 07:51:57','2006-02-15 22:15:40'),(8093,298,1,7869,'7.99','2005-07-28 10:13:15','2006-02-15 22:15:40'),(8094,298,2,8737,'5.99','2005-07-29 18:32:13','2006-02-15 22:15:40'),(8095,298,2,10248,'6.99','2005-08-01 02:35:28','2006-02-15 22:15:40'),(8096,298,1,11070,'0.99','2005-08-02 07:10:39','2006-02-15 22:15:40'),(8097,298,2,11288,'6.99','2005-08-02 14:54:08','2006-02-15 22:15:40'),(8098,298,2,12076,'0.99','2005-08-17 21:58:19','2006-02-15 22:15:40'),(8099,298,1,12765,'8.99','2005-08-18 23:21:50','2006-02-15 22:15:40'),(8100,298,1,13172,'0.99','2005-08-19 13:49:07','2006-02-15 22:15:40'),(8101,298,1,13244,'4.99','2005-08-19 16:43:04','2006-02-15 22:15:40'),(8102,298,2,14473,'0.99','2005-08-21 13:19:03','2006-02-15 22:15:41'),(8103,298,1,15245,'3.99','2005-08-22 17:49:35','2006-02-15 22:15:41'),(8104,298,2,15262,'4.99','2005-08-22 18:25:21','2006-02-15 22:15:41'),(8105,298,1,15643,'4.99','2005-08-23 08:13:26','2006-02-15 22:15:41'),(8106,299,1,332,'5.99','2005-05-27 02:27:10','2006-02-15 22:15:41'),(8107,299,2,606,'8.99','2005-05-28 14:48:39','2006-02-15 22:15:41'),(8108,299,1,1650,'8.99','2005-06-16 09:23:20','2006-02-15 22:15:41'),(8109,299,2,2664,'4.99','2005-06-19 11:11:23','2006-02-15 22:15:41'),(8110,299,1,2774,'2.99','2005-06-19 18:05:11','2006-02-15 22:15:41'),(8111,299,2,2791,'4.99','2005-06-19 18:51:27','2006-02-15 22:15:41'),(8112,299,1,3074,'0.99','2005-06-20 14:41:41','2006-02-15 22:15:41'),(8113,299,2,3223,'2.99','2005-06-21 02:06:45','2006-02-15 22:15:41'),(8114,299,1,3288,'5.99','2005-06-21 06:36:59','2006-02-15 22:15:41'),(8115,299,2,3497,'0.99','2005-07-06 00:00:03','2006-02-15 22:15:41'),(8116,299,2,4153,'5.99','2005-07-07 08:53:08','2006-02-15 22:15:41'),(8117,299,1,4350,'2.99','2005-07-07 19:02:41','2006-02-15 22:15:41'),(8118,299,2,5033,'1.99','2005-07-09 02:42:01','2006-02-15 22:15:41'),(8119,299,1,5642,'2.99','2005-07-10 06:46:08','2006-02-15 22:15:41'),(8120,299,2,6732,'0.99','2005-07-12 13:58:51','2006-02-15 22:15:41'),(8121,299,1,6853,'7.99','2005-07-12 19:38:11','2006-02-15 22:15:41'),(8122,299,1,7264,'4.99','2005-07-27 11:18:58','2006-02-15 22:15:41'),(8123,299,1,7746,'2.99','2005-07-28 05:48:56','2006-02-15 22:15:41'),(8124,299,2,7862,'9.99','2005-07-28 10:02:25','2006-02-15 22:15:41'),(8125,299,1,9520,'2.99','2005-07-31 00:50:54','2006-02-15 22:15:41'),(8126,299,1,10201,'0.99','2005-08-01 00:42:18','2006-02-15 22:15:41'),(8127,299,2,10440,'2.99','2005-08-01 08:54:32','2006-02-15 22:15:41'),(8128,299,1,11629,'6.99','2005-08-17 04:27:24','2006-02-15 22:15:42'),(8129,299,1,11746,'5.99','2005-08-17 09:03:24','2006-02-15 22:15:42'),(8130,299,1,11998,'0.99','2005-08-17 18:46:21','2006-02-15 22:15:42'),(8131,299,1,13069,'4.99','2005-08-19 09:55:20','2006-02-15 22:15:42'),(8132,299,2,14208,'0.99','2005-08-21 04:09:18','2006-02-15 22:15:42'),(8133,299,1,14548,'3.99','2005-08-21 15:53:52','2006-02-15 22:15:42'),(8134,299,2,14889,'4.99','2005-08-22 04:10:10','2006-02-15 22:15:42'),(8135,299,2,14898,'6.99','2005-08-22 04:26:34','2006-02-15 22:15:42'),(8136,300,2,457,'0.99','2005-05-27 19:52:29','2006-02-15 22:15:42'),(8137,300,1,780,'3.99','2005-05-29 14:18:32','2006-02-15 22:15:42'),(8138,300,1,1111,'4.99','2005-05-31 15:24:19','2006-02-15 22:15:42'),(8139,300,2,1381,'0.99','2005-06-15 15:17:21','2006-02-15 22:15:42'),(8140,300,1,3177,'2.99','2005-06-20 22:32:44','2006-02-15 22:15:42'),(8141,300,1,3775,'0.99','2005-07-06 13:27:33','2006-02-15 22:15:42'),(8142,300,1,4030,'0.99','2005-07-07 02:25:42','2006-02-15 22:15:42'),(8143,300,2,5562,'2.99','2005-07-10 03:17:42','2006-02-15 22:15:42'),(8144,300,1,5705,'10.99','2005-07-10 10:09:17','2006-02-15 22:15:42'),(8145,300,2,6111,'4.99','2005-07-11 07:26:57','2006-02-15 22:15:42'),(8146,300,1,6822,'5.99','2005-07-12 18:23:39','2006-02-15 22:15:42'),(8147,300,1,6998,'4.99','2005-07-27 01:16:29','2006-02-15 22:15:42'),(8148,300,1,7815,'4.99','2005-07-28 08:14:11','2006-02-15 22:15:42'),(8149,300,1,8117,'6.99','2005-07-28 19:20:16','2006-02-15 22:15:42'),(8150,300,1,8210,'6.99','2005-07-28 23:31:05','2006-02-15 22:15:42'),(8151,300,1,8283,'3.99','2005-07-29 01:52:22','2006-02-15 22:15:42'),(8152,300,1,9078,'0.99','2005-07-30 08:01:00','2006-02-15 22:15:42'),(8153,300,2,9127,'2.99','2005-07-30 09:46:36','2006-02-15 22:15:43'),(8154,300,2,9791,'0.99','2005-07-31 10:35:22','2006-02-15 22:15:43'),(8155,300,1,10977,'4.99','2005-08-02 04:12:17','2006-02-15 22:15:43'),(8156,300,2,12484,'2.99','2005-08-18 12:39:37','2006-02-15 22:15:43'),(8157,300,2,12644,'5.99','2005-08-18 18:22:27','2006-02-15 22:15:43'),(8158,300,2,13257,'3.99','2005-08-19 17:01:20','2006-02-15 22:15:43'),(8159,300,1,13296,'0.99','2005-08-19 18:43:53','2006-02-15 22:15:43'),(8160,300,2,13499,'6.99','2005-08-20 01:52:30','2006-02-15 22:15:43'),(8161,300,1,13717,'5.99','2005-08-20 09:50:52','2006-02-15 22:15:43'),(8162,300,1,14674,'7.99','2005-08-21 20:01:34','2006-02-15 22:15:43'),(8163,300,1,14709,'9.99','2005-08-21 21:07:59','2006-02-15 22:15:43'),(8164,300,2,15051,'2.99','2005-08-22 10:08:50','2006-02-15 22:15:43'),(8165,300,2,15811,'5.99','2005-08-23 14:43:46','2006-02-15 22:15:43'),(8166,300,1,15695,'4.99','2006-02-14 15:16:03','2006-02-15 22:15:43'),(8167,301,2,27,'4.99','2005-05-25 03:41:50','2006-02-15 22:15:43'),(8168,301,2,227,'5.99','2005-05-26 10:51:46','2006-02-15 22:15:43'),(8169,301,1,955,'0.99','2005-05-30 16:59:03','2006-02-15 22:15:43'),(8170,301,1,1853,'0.99','2005-06-17 00:39:54','2006-02-15 22:15:43'),(8171,301,1,2611,'4.99','2005-06-19 07:18:17','2006-02-15 22:15:43'),(8172,301,2,2925,'2.99','2005-06-20 04:23:49','2006-02-15 22:15:43'),(8173,301,2,4316,'4.99','2005-07-07 17:44:22','2006-02-15 22:15:43'),(8174,301,2,4834,'3.99','2005-07-08 18:07:45','2006-02-15 22:15:43'),(8175,301,1,5119,'6.99','2005-07-09 07:14:18','2006-02-15 22:15:43'),(8176,301,2,5511,'4.99','2005-07-10 01:00:00','2006-02-15 22:15:43'),(8177,301,2,5730,'2.99','2005-07-10 11:28:32','2006-02-15 22:15:43'),(8178,301,2,5807,'2.99','2005-07-10 15:16:30','2006-02-15 22:15:43'),(8179,301,2,6833,'6.99','2005-07-12 18:53:34','2006-02-15 22:15:44'),(8180,301,2,7318,'4.99','2005-07-27 13:25:31','2006-02-15 22:15:44'),(8181,301,2,7818,'4.99','2005-07-28 08:25:00','2006-02-15 22:15:44'),(8182,301,2,9435,'4.99','2005-07-30 21:31:02','2006-02-15 22:15:44'),(8183,301,1,10883,'0.99','2005-08-02 00:47:19','2006-02-15 22:15:44'),(8184,301,2,13183,'5.99','2005-08-19 14:09:26','2006-02-15 22:15:44'),(8185,301,2,13633,'2.99','2005-08-20 07:13:47','2006-02-15 22:15:44'),(8186,301,1,15201,'10.99','2005-08-22 16:24:42','2006-02-15 22:15:44'),(8187,301,1,15268,'1.99','2005-08-22 18:39:11','2006-02-15 22:15:44'),(8188,302,2,38,'4.99','2005-05-25 04:47:44','2006-02-15 22:15:44'),(8189,302,2,92,'5.99','2005-05-25 15:38:46','2006-02-15 22:15:44'),(8190,302,1,1231,'2.99','2005-06-15 04:04:41','2006-02-15 22:15:44'),(8191,302,2,4676,'4.99','2005-07-08 10:26:02','2006-02-15 22:15:44'),(8192,302,2,5498,'0.99','2005-07-10 00:27:21','2006-02-15 22:15:44'),(8193,302,2,5682,'2.99','2005-07-10 08:51:39','2006-02-15 22:15:44'),(8194,302,2,5709,'0.99','2005-07-10 10:31:52','2006-02-15 22:15:44'),(8195,302,2,5821,'4.99','2005-07-10 16:07:16','2006-02-15 22:15:44'),(8196,302,2,6623,'7.99','2005-07-12 09:05:34','2006-02-15 22:15:44'),(8197,302,1,7183,'0.99','2005-07-27 08:18:38','2006-02-15 22:15:44'),(8198,302,1,7411,'6.99','2005-07-27 16:42:30','2006-02-15 22:15:44'),(8199,302,1,8363,'6.99','2005-07-29 05:10:08','2006-02-15 22:15:44'),(8200,302,2,8646,'0.99','2005-07-29 14:48:48','2006-02-15 22:15:44'),(8201,302,1,8795,'2.99','2005-07-29 21:04:14','2006-02-15 22:15:44'),(8202,302,1,9146,'7.99','2005-07-30 10:32:08','2006-02-15 22:15:44'),(8203,302,2,9358,'2.99','2005-07-30 18:37:24','2006-02-15 22:15:44'),(8204,302,1,9374,'8.99','2005-07-30 19:10:03','2006-02-15 22:15:45'),(8205,302,2,9581,'5.99','2005-07-31 03:03:07','2006-02-15 22:15:45'),(8206,302,2,10329,'0.99','2005-08-01 04:56:13','2006-02-15 22:15:45'),(8207,302,1,12126,'7.99','2005-08-17 23:25:21','2006-02-15 22:15:45'),(8208,302,2,12516,'4.99','2005-08-18 13:39:53','2006-02-15 22:15:45'),(8209,302,1,12903,'2.99','2005-08-19 04:09:38','2006-02-15 22:15:45'),(8210,302,1,13916,'2.99','2005-08-20 16:43:02','2006-02-15 22:15:45'),(8211,302,1,14120,'4.99','2005-08-21 01:25:00','2006-02-15 22:15:45'),(8212,302,2,14247,'3.99','2005-08-21 05:35:17','2006-02-15 22:15:45'),(8213,302,2,15578,'2.99','2005-08-23 05:37:13','2006-02-15 22:15:45'),(8214,302,1,15622,'5.99','2005-08-23 07:22:02','2006-02-15 22:15:45'),(8215,302,2,15734,'0.99','2005-08-23 11:40:08','2006-02-15 22:15:45'),(8216,302,2,15987,'6.99','2005-08-23 20:22:17','2006-02-15 22:15:45'),(8217,303,1,265,'0.99','2005-05-26 16:07:38','2006-02-15 22:15:45'),(8218,303,1,871,'2.99','2005-05-30 05:01:30','2006-02-15 22:15:45'),(8219,303,2,1050,'4.99','2005-05-31 07:01:27','2006-02-15 22:15:45'),(8220,303,2,1970,'4.99','2005-06-17 09:23:16','2006-02-15 22:15:45'),(8221,303,1,2223,'8.99','2005-06-18 03:27:03','2006-02-15 22:15:45'),(8222,303,1,3077,'3.99','2005-06-20 15:05:18','2006-02-15 22:15:45'),(8223,303,1,3107,'2.99','2005-06-20 17:26:05','2006-02-15 22:15:45'),(8224,303,1,5140,'4.99','2005-07-09 08:04:59','2006-02-15 22:15:45'),(8225,303,1,6205,'4.99','2005-07-11 12:31:24','2006-02-15 22:15:45'),(8226,303,2,6219,'4.99','2005-07-11 13:18:37','2006-02-15 22:15:45'),(8227,303,1,6464,'4.99','2005-07-12 01:16:40','2006-02-15 22:15:45'),(8228,303,1,7023,'4.99','2005-07-27 02:32:44','2006-02-15 22:15:45'),(8229,303,2,7502,'2.99','2005-07-27 20:19:08','2006-02-15 22:15:46'),(8230,303,1,8409,'0.99','2005-07-29 06:41:22','2006-02-15 22:15:46'),(8231,303,2,8734,'6.99','2005-07-29 18:28:15','2006-02-15 22:15:46'),(8232,303,2,8764,'0.99','2005-07-29 19:39:04','2006-02-15 22:15:46'),(8233,303,2,10209,'2.99','2005-08-01 00:56:47','2006-02-15 22:15:46'),(8234,303,1,11253,'4.99','2005-08-02 13:42:44','2006-02-15 22:15:46'),(8235,303,2,11673,'2.99','2005-08-17 05:54:15','2006-02-15 22:15:46'),(8236,303,2,11993,'2.99','2005-08-17 18:27:49','2006-02-15 22:15:46'),(8237,303,2,12117,'0.99','2005-08-17 23:11:12','2006-02-15 22:15:46'),(8238,303,1,12365,'0.99','2005-08-18 07:55:09','2006-02-15 22:15:46'),(8239,303,2,12473,'2.99','2005-08-18 11:59:44','2006-02-15 22:15:46'),(8240,303,1,14750,'5.99','2005-08-21 23:09:32','2006-02-15 22:15:46'),(8241,303,2,14795,'4.99','2005-08-22 00:40:22','2006-02-15 22:15:46'),(8242,303,1,15511,'3.99','2005-08-23 02:55:42','2006-02-15 22:15:46'),(8243,304,1,135,'10.99','2005-05-25 21:58:58','2006-02-15 22:15:46'),(8244,304,1,415,'0.99','2005-05-27 14:51:45','2006-02-15 22:15:46'),(8245,304,2,937,'2.99','2005-05-30 14:47:31','2006-02-15 22:15:46'),(8246,304,1,1414,'6.99','2005-06-15 17:26:32','2006-02-15 22:15:46'),(8247,304,2,1525,'4.99','2005-06-16 00:26:07','2006-02-15 22:15:46'),(8248,304,1,2039,'3.99','2005-06-17 14:03:43','2006-02-15 22:15:46'),(8249,304,2,2902,'4.99','2005-06-20 02:45:35','2006-02-15 22:15:46'),(8250,304,1,4466,'6.99','2005-07-08 00:12:53','2006-02-15 22:15:46'),(8251,304,2,4812,'8.99','2005-07-08 17:07:11','2006-02-15 22:15:46'),(8252,304,1,5411,'2.99','2005-07-09 20:23:38','2006-02-15 22:15:46'),(8253,304,1,5712,'4.99','2005-07-10 10:40:32','2006-02-15 22:15:46'),(8254,304,2,5749,'3.99','2005-07-10 12:20:36','2006-02-15 22:15:47'),(8255,304,2,5795,'0.99','2005-07-10 14:36:29','2006-02-15 22:15:47'),(8256,304,2,6107,'0.99','2005-07-11 07:07:09','2006-02-15 22:15:47'),(8257,304,1,6737,'4.99','2005-07-12 14:16:52','2006-02-15 22:15:47'),(8258,304,2,7551,'4.99','2005-07-27 21:59:15','2006-02-15 22:15:47'),(8259,304,2,8055,'4.99','2005-07-28 17:02:32','2006-02-15 22:15:47'),(8260,304,1,9930,'0.99','2005-07-31 15:18:03','2006-02-15 22:15:47'),(8261,304,1,9992,'6.99','2005-07-31 17:29:48','2006-02-15 22:15:47'),(8262,304,1,10631,'0.99','2005-08-01 15:35:14','2006-02-15 22:15:47'),(8263,304,2,11983,'4.99','2005-08-17 18:13:55','2006-02-15 22:15:47'),(8264,304,1,12540,'5.99','2005-08-18 14:17:30','2006-02-15 22:15:47'),(8265,304,2,13911,'3.99','2005-08-20 16:31:33','2006-02-15 22:15:47'),(8266,304,1,14023,'0.99','2005-08-20 21:10:32','2006-02-15 22:15:47'),(8267,304,1,14899,'4.99','2005-08-22 04:26:38','2006-02-15 22:15:47'),(8268,304,1,14945,'4.99','2005-08-22 06:05:38','2006-02-15 22:15:47'),(8269,305,2,69,'2.99','2005-05-25 10:10:14','2006-02-15 22:15:47'),(8270,305,1,1574,'4.99','2005-06-16 03:39:56','2006-02-15 22:15:47'),(8271,305,2,1884,'0.99','2005-06-17 03:19:20','2006-02-15 22:15:47'),(8272,305,1,2166,'11.99','2005-06-17 23:51:21','2006-02-15 22:15:47'),(8273,305,1,3387,'0.99','2005-06-21 14:21:49','2006-02-15 22:15:47'),(8274,305,2,4260,'4.99','2005-07-07 14:22:45','2006-02-15 22:15:47'),(8275,305,1,4638,'2.99','2005-07-08 08:57:20','2006-02-15 22:15:47'),(8276,305,2,5041,'0.99','2005-07-09 03:18:51','2006-02-15 22:15:47'),(8277,305,1,5052,'2.99','2005-07-09 03:59:43','2006-02-15 22:15:47'),(8278,305,2,5582,'4.99','2005-07-10 04:08:25','2006-02-15 22:15:47'),(8279,305,1,5745,'8.99','2005-07-10 12:10:11','2006-02-15 22:15:47'),(8280,305,1,6134,'7.99','2005-07-11 08:28:19','2006-02-15 22:15:48'),(8281,305,2,6619,'0.99','2005-07-12 08:50:48','2006-02-15 22:15:48'),(8282,305,2,8865,'4.99','2005-07-29 23:54:54','2006-02-15 22:15:48'),(8283,305,2,9119,'4.99','2005-07-30 09:25:56','2006-02-15 22:15:48'),(8284,305,2,10426,'4.99','2005-08-01 08:26:08','2006-02-15 22:15:48'),(8285,305,2,10929,'4.99','2005-08-02 02:35:44','2006-02-15 22:15:48'),(8286,305,1,10981,'2.99','2005-08-02 04:17:53','2006-02-15 22:15:48'),(8287,305,2,11035,'5.99','2005-08-02 05:55:39','2006-02-15 22:15:48'),(8288,305,2,11809,'3.99','2005-08-17 11:51:39','2006-02-15 22:15:48'),(8289,305,2,12592,'3.99','2005-08-18 16:17:50','2006-02-15 22:15:48'),(8290,305,2,12846,'0.99','2005-08-19 02:03:26','2006-02-15 22:15:48'),(8291,305,1,13782,'4.99','2005-08-20 12:09:26','2006-02-15 22:15:48'),(8292,305,2,15417,'2.99','2005-08-22 23:54:04','2006-02-15 22:15:48'),(8293,305,1,15612,'6.99','2005-08-23 06:59:07','2006-02-15 22:15:48'),(8294,306,2,375,'3.99','2005-05-27 08:49:21','2006-02-15 22:15:48'),(8295,306,2,672,'6.99','2005-05-28 22:05:29','2006-02-15 22:15:48'),(8296,306,2,1172,'0.99','2005-06-14 23:54:34','2006-02-15 22:15:48'),(8297,306,2,2836,'6.99','2005-06-19 21:58:21','2006-02-15 22:15:48'),(8298,306,1,3814,'6.99','2005-07-06 15:23:56','2006-02-15 22:15:48'),(8299,306,2,4484,'5.99','2005-07-08 01:05:57','2006-02-15 22:15:48'),(8300,306,2,4596,'1.99','2005-07-08 06:41:25','2006-02-15 22:15:48'),(8301,306,2,5581,'2.99','2005-07-10 04:06:06','2006-02-15 22:15:48'),(8302,306,2,6868,'2.99','2005-07-12 20:10:17','2006-02-15 22:15:48'),(8303,306,1,6953,'4.99','2005-07-26 23:52:47','2006-02-15 22:15:48'),(8304,306,1,7225,'6.99','2005-07-27 09:47:12','2006-02-15 22:15:49'),(8305,306,1,7232,'4.99','2005-07-27 10:04:19','2006-02-15 22:15:49'),(8306,306,2,7701,'2.99','2005-07-28 03:54:28','2006-02-15 22:15:49'),(8307,306,2,8620,'0.99','2005-07-29 13:51:20','2006-02-15 22:15:49'),(8308,306,1,8702,'0.99','2005-07-29 17:04:37','2006-02-15 22:15:49'),(8309,306,2,9242,'4.99','2005-07-30 14:03:58','2006-02-15 22:15:49'),(8310,306,2,9395,'4.99','2005-07-30 20:07:06','2006-02-15 22:15:49'),(8311,306,1,9774,'0.99','2005-07-31 09:57:51','2006-02-15 22:15:49'),(8312,306,1,10202,'6.99','2005-08-01 00:43:18','2006-02-15 22:15:49'),(8313,306,2,10893,'5.99','2005-08-02 01:12:13','2006-02-15 22:15:49'),(8314,306,2,11142,'4.99','2005-08-02 09:30:11','2006-02-15 22:15:49'),(8315,306,1,11440,'0.99','2005-08-02 20:24:02','2006-02-15 22:15:49'),(8316,306,2,11674,'6.99','2005-08-17 05:56:27','2006-02-15 22:15:49'),(8317,306,2,11776,'0.99','2005-08-17 10:27:19','2006-02-15 22:15:49'),(8318,306,1,12225,'7.99','2005-08-18 03:00:11','2006-02-15 22:15:49'),(8319,306,1,12989,'2.99','2005-08-19 07:19:04','2006-02-15 22:15:49'),(8320,306,1,13686,'4.99','2005-08-20 08:57:28','2006-02-15 22:15:49'),(8321,306,2,13725,'5.99','2005-08-20 10:08:27','2006-02-15 22:15:49'),(8322,306,1,13873,'0.99','2005-08-20 15:11:11','2006-02-15 22:15:49'),(8323,306,1,13996,'4.99','2005-08-20 19:45:43','2006-02-15 22:15:49'),(8324,306,1,15457,'2.99','2005-08-23 01:07:37','2006-02-15 22:15:49'),(8325,306,2,15868,'7.99','2005-08-23 16:19:14','2006-02-15 22:15:49'),(8326,307,2,413,'4.99','2005-05-27 14:45:37','2006-02-15 22:15:49'),(8327,307,1,535,'4.99','2005-05-28 06:16:32','2006-02-15 22:15:49'),(8328,307,1,614,'1.99','2005-05-28 15:33:28','2006-02-15 22:15:49'),(8329,307,1,970,'6.99','2005-05-30 19:50:28','2006-02-15 22:15:50'),(8330,307,2,2152,'2.99','2005-06-17 22:53:27','2006-02-15 22:15:50'),(8331,307,1,2167,'0.99','2005-06-17 23:51:28','2006-02-15 22:15:50'),(8332,307,1,2787,'4.99','2005-06-19 18:47:00','2006-02-15 22:15:50'),(8333,307,1,2881,'2.99','2005-06-20 01:26:18','2006-02-15 22:15:50'),(8334,307,2,3057,'5.99','2005-06-20 13:22:48','2006-02-15 22:15:50'),(8335,307,1,3209,'4.99','2005-06-21 00:51:06','2006-02-15 22:15:50'),(8336,307,1,3962,'6.99','2005-07-06 22:13:45','2006-02-15 22:15:50'),(8337,307,1,3985,'4.99','2005-07-06 23:24:03','2006-02-15 22:15:50'),(8338,307,1,4522,'2.99','2005-07-08 03:03:12','2006-02-15 22:15:50'),(8339,307,1,4868,'4.99','2005-07-08 19:13:50','2006-02-15 22:15:50'),(8340,307,1,5871,'3.99','2005-07-10 18:46:08','2006-02-15 22:15:50'),(8341,307,2,6125,'6.99','2005-07-11 08:03:35','2006-02-15 22:15:50'),(8342,307,1,6256,'0.99','2005-07-11 15:19:22','2006-02-15 22:15:50'),(8343,307,1,6991,'10.99','2005-07-27 01:03:06','2006-02-15 22:15:50'),(8344,307,1,7536,'2.99','2005-07-27 21:34:09','2006-02-15 22:15:50'),(8345,307,1,7760,'3.99','2005-07-28 06:29:45','2006-02-15 22:15:50'),(8346,307,1,7929,'0.99','2005-07-28 12:16:40','2006-02-15 22:15:50'),(8347,307,1,8647,'6.99','2005-07-29 14:52:59','2006-02-15 22:15:50'),(8348,307,1,10135,'4.99','2005-07-31 21:57:32','2006-02-15 22:15:50'),(8349,307,1,10374,'0.99','2005-08-01 06:25:27','2006-02-15 22:15:50'),(8350,307,1,10745,'2.99','2005-08-01 19:57:06','2006-02-15 22:15:50'),(8351,307,1,11491,'7.99','2005-08-02 22:44:50','2006-02-15 22:15:50'),(8352,307,2,12391,'4.99','2005-08-18 08:52:53','2006-02-15 22:15:50'),(8353,307,2,13365,'6.99','2005-08-19 21:12:37','2006-02-15 22:15:51'),(8354,307,1,14231,'0.99','2005-08-21 05:04:34','2006-02-15 22:15:51'),(8355,307,2,15515,'4.99','2005-08-23 03:03:53','2006-02-15 22:15:51'),(8356,308,2,589,'3.99','2005-05-28 12:27:50','2006-02-15 22:15:51'),(8357,308,1,2037,'0.99','2005-06-17 13:54:20','2006-02-15 22:15:51'),(8358,308,1,2094,'0.99','2005-06-17 18:18:56','2006-02-15 22:15:51'),(8359,308,2,2168,'4.99','2005-06-17 23:53:24','2006-02-15 22:15:51'),(8360,308,1,2346,'7.99','2005-06-18 12:08:16','2006-02-15 22:15:51'),(8361,308,2,2448,'4.99','2005-06-18 19:13:45','2006-02-15 22:15:51'),(8362,308,1,4002,'3.99','2005-07-07 00:08:18','2006-02-15 22:15:51'),(8363,308,1,4285,'8.99','2005-07-07 15:34:35','2006-02-15 22:15:51'),(8364,308,1,5946,'2.99','2005-07-10 22:57:29','2006-02-15 22:15:51'),(8365,308,2,8869,'0.99','2005-07-30 00:06:32','2006-02-15 22:15:51'),(8366,308,1,9479,'2.99','2005-07-30 23:22:09','2006-02-15 22:15:51'),(8367,308,1,9746,'7.99','2005-07-31 09:16:48','2006-02-15 22:15:51'),(8368,308,1,10571,'2.99','2005-08-01 13:25:30','2006-02-15 22:15:51'),(8369,308,2,10797,'0.99','2005-08-01 22:02:51','2006-02-15 22:15:51'),(8370,308,1,10819,'4.99','2005-08-01 22:52:57','2006-02-15 22:15:51'),(8371,308,1,11765,'2.99','2005-08-17 09:55:28','2006-02-15 22:15:51'),(8372,308,1,11972,'4.99','2005-08-17 17:55:46','2006-02-15 22:15:51'),(8373,308,2,12567,'3.99','2005-08-18 15:14:36','2006-02-15 22:15:51'),(8374,308,1,12590,'6.99','2005-08-18 16:11:35','2006-02-15 22:15:51'),(8375,308,2,12838,'6.99','2005-08-19 01:51:50','2006-02-15 22:15:51'),(8376,308,1,13843,'2.99','2005-08-20 14:30:01','2006-02-15 22:15:51'),(8377,308,2,14946,'2.99','2005-08-22 06:07:10','2006-02-15 22:15:51'),(8378,308,1,15243,'4.99','2005-08-22 17:48:28','2006-02-15 22:15:52'),(8379,308,2,15493,'4.99','2005-08-23 02:20:53','2006-02-15 22:15:52'),(8380,308,2,15820,'2.99','2005-08-23 15:03:13','2006-02-15 22:15:52'),(8381,309,2,218,'6.99','2005-05-26 09:27:09','2006-02-15 22:15:52'),(8382,309,2,723,'0.99','2005-05-29 05:34:44','2006-02-15 22:15:52'),(8383,309,1,1837,'4.99','2005-06-16 23:16:15','2006-02-15 22:15:52'),(8384,309,2,2560,'9.99','2005-06-19 03:12:42','2006-02-15 22:15:52'),(8385,309,2,2644,'3.99','2005-06-19 09:42:30','2006-02-15 22:15:52'),(8386,309,2,2688,'6.99','2005-06-19 12:50:56','2006-02-15 22:15:52'),(8387,309,2,3837,'4.99','2005-07-06 16:27:43','2006-02-15 22:15:52'),(8388,309,2,3896,'7.99','2005-07-06 19:09:15','2006-02-15 22:15:52'),(8389,309,2,4172,'4.99','2005-07-07 09:49:09','2006-02-15 22:15:52'),(8390,309,1,4540,'4.99','2005-07-08 04:03:28','2006-02-15 22:15:52'),(8391,309,2,5305,'8.99','2005-07-09 15:55:36','2006-02-15 22:15:52'),(8392,309,1,5980,'4.99','2005-07-11 00:18:21','2006-02-15 22:15:52'),(8393,309,2,6480,'4.99','2005-07-12 01:49:29','2006-02-15 22:15:52'),(8394,309,2,7214,'5.99','2005-07-27 09:23:33','2006-02-15 22:15:52'),(8395,309,2,7722,'4.99','2005-07-28 04:44:58','2006-02-15 22:15:52'),(8396,309,1,7846,'5.99','2005-07-28 09:21:18','2006-02-15 22:15:52'),(8397,309,1,8341,'4.99','2005-07-29 04:42:01','2006-02-15 22:15:52'),(8398,309,1,8501,'2.99','2005-07-29 09:12:51','2006-02-15 22:15:52'),(8399,309,1,8681,'2.99','2005-07-29 16:12:01','2006-02-15 22:15:52'),(8400,309,1,8917,'2.99','2005-07-30 01:47:02','2006-02-15 22:15:52'),(8401,309,2,9945,'2.99','2005-07-31 15:47:51','2006-02-15 22:15:52'),(8402,309,1,9949,'0.99','2005-07-31 15:50:10','2006-02-15 22:15:53'),(8403,309,1,10458,'2.99','2005-08-01 09:19:48','2006-02-15 22:15:53'),(8404,309,1,10728,'0.99','2005-08-01 19:15:09','2006-02-15 22:15:53'),(8405,309,1,10818,'2.99','2005-08-01 22:52:45','2006-02-15 22:15:53'),(8406,309,2,11964,'6.99','2005-08-17 17:37:03','2006-02-15 22:15:53'),(8407,309,2,13021,'5.99','2005-08-19 08:08:04','2006-02-15 22:15:53'),(8408,309,2,13502,'0.99','2005-08-20 01:58:15','2006-02-15 22:15:53'),(8409,309,2,13909,'4.99','2005-08-20 16:26:36','2006-02-15 22:15:53'),(8410,309,2,14846,'5.99','2005-08-22 02:13:48','2006-02-15 22:15:53'),(8411,309,2,15422,'4.99','2005-08-22 23:58:09','2006-02-15 22:15:53'),(8412,310,2,104,'0.99','2005-05-25 17:46:33','2006-02-15 22:15:53'),(8413,310,2,1162,'4.99','2005-06-14 23:09:38','2006-02-15 22:15:53'),(8414,310,2,1333,'2.99','2005-06-15 11:37:08','2006-02-15 22:15:53'),(8415,310,2,1918,'3.99','2005-06-17 05:40:14','2006-02-15 22:15:53'),(8416,310,2,2088,'6.99','2005-06-17 17:35:30','2006-02-15 22:15:53'),(8417,310,1,2480,'5.99','2005-06-18 21:04:09','2006-02-15 22:15:53'),(8418,310,1,2618,'2.99','2005-06-19 08:03:01','2006-02-15 22:15:53'),(8419,310,2,3830,'10.99','2005-07-06 16:01:16','2006-02-15 22:15:53'),(8420,310,1,4072,'0.99','2005-07-07 04:48:02','2006-02-15 22:15:53'),(8421,310,1,5621,'5.99','2005-07-10 05:34:10','2006-02-15 22:15:53'),(8422,310,2,5836,'0.99','2005-07-10 16:49:02','2006-02-15 22:15:53'),(8423,310,1,7648,'5.99','2005-07-28 01:35:33','2006-02-15 22:15:53'),(8424,310,2,8637,'5.99','2005-07-29 14:30:11','2006-02-15 22:15:53'),(8425,310,1,8981,'7.99','2005-07-30 04:25:30','2006-02-15 22:15:53'),(8426,310,1,9536,'2.99','2005-07-31 01:19:02','2006-02-15 22:15:53'),(8427,310,2,11137,'2.99','2005-08-02 09:25:31','2006-02-15 22:15:54'),(8428,310,2,12500,'4.99','2005-08-18 13:05:51','2006-02-15 22:15:54'),(8429,310,2,12710,'7.99','2005-08-18 21:02:50','2006-02-15 22:15:54'),(8430,310,1,12929,'4.99','2005-08-19 05:05:23','2006-02-15 22:15:54'),(8431,310,1,14972,'5.99','2005-08-22 06:53:21','2006-02-15 22:15:54'),(8432,311,2,274,'5.99','2005-05-26 16:48:51','2006-02-15 22:15:54'),(8433,311,2,544,'6.99','2005-05-28 07:03:00','2006-02-15 22:15:54'),(8434,311,1,952,'2.99','2005-05-30 16:28:07','2006-02-15 22:15:54'),(8435,311,2,990,'3.99','2005-05-30 23:25:14','2006-02-15 22:15:54'),(8436,311,2,1128,'6.99','2005-05-31 17:49:26','2006-02-15 22:15:54'),(8437,311,1,1622,'4.99','2005-06-16 07:33:18','2006-02-15 22:15:54'),(8438,311,2,1955,'0.99','2005-06-17 08:40:22','2006-02-15 22:15:54'),(8439,311,2,2967,'6.99','2005-06-20 07:40:35','2006-02-15 22:15:54'),(8440,311,2,4836,'3.99','2005-07-08 18:09:08','2006-02-15 22:15:54'),(8441,311,2,5224,'5.99','2005-07-09 12:07:27','2006-02-15 22:15:54'),(8442,311,2,6419,'4.99','2005-07-11 23:36:38','2006-02-15 22:15:54'),(8443,311,2,8167,'6.99','2005-07-28 21:25:45','2006-02-15 22:15:54'),(8444,311,1,8473,'2.99','2005-07-29 08:36:53','2006-02-15 22:15:54'),(8445,311,1,9503,'6.99','2005-07-31 00:02:38','2006-02-15 22:15:54'),(8446,311,2,9882,'8.99','2005-07-31 13:53:33','2006-02-15 22:15:54'),(8447,311,1,10134,'4.99','2005-07-31 21:56:10','2006-02-15 22:15:54'),(8448,311,2,10448,'4.99','2005-08-01 09:09:31','2006-02-15 22:15:54'),(8449,311,1,12997,'2.99','2005-08-19 07:31:46','2006-02-15 22:15:54'),(8450,311,2,13310,'0.99','2005-08-19 19:05:16','2006-02-15 22:15:54'),(8451,311,2,13423,'1.99','2005-08-19 23:07:42','2006-02-15 22:15:55'),(8452,311,2,14517,'4.99','2005-08-21 14:57:03','2006-02-15 22:15:55'),(8453,311,2,15826,'9.99','2005-08-23 15:15:02','2006-02-15 22:15:55'),(8454,311,1,16020,'8.99','2005-08-23 21:34:33','2006-02-15 22:15:55'),(8455,312,2,229,'4.99','2005-05-26 11:19:20','2006-02-15 22:15:55'),(8456,312,1,530,'0.99','2005-05-28 05:13:01','2006-02-15 22:15:55'),(8457,312,2,1049,'4.99','2005-05-31 06:57:04','2006-02-15 22:15:55'),(8458,312,2,1079,'6.99','2005-05-31 10:48:17','2006-02-15 22:15:55'),(8459,312,2,1419,'0.99','2005-06-15 17:54:50','2006-02-15 22:15:55'),(8460,312,2,3457,'3.99','2005-06-21 21:42:33','2006-02-15 22:15:55'),(8461,312,1,3766,'2.99','2005-07-06 13:04:35','2006-02-15 22:15:55'),(8462,312,1,3792,'1.99','2005-07-06 14:26:38','2006-02-15 22:15:55'),(8463,312,1,4647,'3.99','2005-07-08 09:27:36','2006-02-15 22:15:55'),(8464,312,1,5031,'5.99','2005-07-09 02:36:37','2006-02-15 22:15:55'),(8465,312,2,6751,'2.99','2005-07-12 14:50:34','2006-02-15 22:15:55'),(8466,312,1,6866,'2.99','2005-07-12 20:03:44','2006-02-15 22:15:55'),(8467,312,1,8137,'4.99','2005-07-28 20:07:18','2006-02-15 22:15:55'),(8468,312,1,8412,'6.99','2005-07-29 06:44:50','2006-02-15 22:15:55'),(8469,312,1,8721,'4.99','2005-07-29 17:56:21','2006-02-15 22:15:55'),(8470,312,1,9016,'6.99','2005-07-30 05:26:13','2006-02-15 22:15:55'),(8471,312,1,9154,'3.99','2005-07-30 10:59:54','2006-02-15 22:15:55'),(8472,312,2,10858,'2.99','2005-08-02 00:08:39','2006-02-15 22:15:55'),(8473,312,2,11248,'0.99','2005-08-02 13:35:34','2006-02-15 22:15:55'),(8474,312,2,11879,'5.99','2005-08-17 14:25:09','2006-02-15 22:15:55'),(8475,312,1,12186,'2.99','2005-08-18 01:43:36','2006-02-15 22:15:56'),(8476,312,1,12945,'0.99','2005-08-19 05:51:46','2006-02-15 22:15:56'),(8477,312,2,14362,'2.99','2005-08-21 09:19:49','2006-02-15 22:15:56'),(8478,312,1,14504,'3.99','2005-08-21 14:23:01','2006-02-15 22:15:56'),(8479,312,1,15100,'4.99','2005-08-22 11:55:03','2006-02-15 22:15:56'),(8480,312,1,15882,'6.99','2005-08-23 16:44:31','2006-02-15 22:15:56'),(8481,313,2,669,'4.99','2005-05-28 22:03:25','2006-02-15 22:15:56'),(8482,313,2,712,'2.99','2005-05-29 04:02:24','2006-02-15 22:15:56'),(8483,313,2,781,'0.99','2005-05-29 14:23:58','2006-02-15 22:15:56'),(8484,313,2,843,'0.99','2005-05-30 00:44:24','2006-02-15 22:15:56'),(8485,313,2,1312,'2.99','2005-06-15 10:16:27','2006-02-15 22:15:56'),(8486,313,1,2617,'7.99','2005-06-19 07:48:31','2006-02-15 22:15:56'),(8487,313,2,2711,'4.99','2005-06-19 14:12:22','2006-02-15 22:15:56'),(8488,313,2,4552,'2.99','2005-07-08 04:36:35','2006-02-15 22:15:56'),(8489,313,1,5255,'5.99','2005-07-09 13:51:08','2006-02-15 22:15:56'),(8490,313,1,6384,'2.99','2005-07-11 22:07:26','2006-02-15 22:15:56'),(8491,313,2,7294,'0.99','2005-07-27 12:38:14','2006-02-15 22:15:56'),(8492,313,2,8381,'4.99','2005-07-29 05:31:44','2006-02-15 22:15:56'),(8493,313,1,8970,'3.99','2005-07-30 04:02:05','2006-02-15 22:15:56'),(8494,313,2,9836,'2.99','2005-07-31 12:12:00','2006-02-15 22:15:56'),(8495,313,2,10237,'5.99','2005-08-01 02:07:32','2006-02-15 22:15:56'),(8496,313,2,10933,'7.99','2005-08-02 02:50:49','2006-02-15 22:15:56'),(8497,313,2,11854,'2.99','2005-08-17 13:42:52','2006-02-15 22:15:56'),(8498,313,2,12011,'2.99','2005-08-17 19:19:44','2006-02-15 22:15:56'),(8499,313,2,14250,'2.99','2005-08-21 05:39:35','2006-02-15 22:15:56'),(8500,313,1,14325,'4.99','2005-08-21 08:15:38','2006-02-15 22:15:57'),(8501,313,2,15081,'2.99','2005-08-22 11:14:31','2006-02-15 22:15:57'),(8502,313,1,15340,'0.99','2005-08-22 20:55:56','2006-02-15 22:15:57'),(8503,313,2,15569,'6.99','2005-08-23 05:24:29','2006-02-15 22:15:57'),(8504,314,1,80,'5.99','2005-05-25 12:12:07','2006-02-15 22:15:57'),(8505,314,1,440,'4.99','2005-05-27 18:00:35','2006-02-15 22:15:57'),(8506,314,1,1598,'3.99','2005-06-16 06:02:39','2006-02-15 22:15:57'),(8507,314,1,1624,'2.99','2005-06-16 07:48:57','2006-02-15 22:15:57'),(8508,314,1,3517,'0.99','2005-07-06 00:52:35','2006-02-15 22:15:57'),(8509,314,1,3656,'2.99','2005-07-06 07:55:22','2006-02-15 22:15:57'),(8510,314,1,3808,'0.99','2005-07-06 15:15:35','2006-02-15 22:15:57'),(8511,314,2,4386,'0.99','2005-07-07 20:55:19','2006-02-15 22:15:57'),(8512,314,2,5241,'4.99','2005-07-09 13:19:14','2006-02-15 22:15:57'),(8513,314,2,5856,'0.99','2005-07-10 17:57:32','2006-02-15 22:15:57'),(8514,314,1,6192,'5.99','2005-07-11 11:44:41','2006-02-15 22:15:57'),(8515,314,1,6666,'2.99','2005-07-12 11:32:15','2006-02-15 22:15:57'),(8516,314,1,6763,'3.99','2005-07-12 15:26:34','2006-02-15 22:15:57'),(8517,314,2,7004,'4.99','2005-07-27 01:36:05','2006-02-15 22:15:57'),(8518,314,1,7276,'2.99','2005-07-27 11:41:57','2006-02-15 22:15:57'),(8519,314,2,8022,'6.99','2005-07-28 15:48:56','2006-02-15 22:15:57'),(8520,314,1,8073,'3.99','2005-07-28 17:29:02','2006-02-15 22:15:57'),(8521,314,2,8105,'0.99','2005-07-28 18:59:46','2006-02-15 22:15:57'),(8522,314,2,8328,'6.99','2005-07-29 04:06:24','2006-02-15 22:15:57'),(8523,314,2,8644,'4.99','2005-07-29 14:45:45','2006-02-15 22:15:57'),(8524,314,2,9191,'3.99','2005-07-30 12:25:51','2006-02-15 22:15:58'),(8525,314,2,9318,'6.99','2005-07-30 17:14:30','2006-02-15 22:15:58'),(8526,314,2,11908,'3.99','2005-08-17 15:43:09','2006-02-15 22:15:58'),(8527,314,1,12434,'0.99','2005-08-18 10:38:08','2006-02-15 22:15:58'),(8528,314,2,13120,'3.99','2005-08-19 11:47:38','2006-02-15 22:15:58'),(8529,314,1,13265,'2.99','2005-08-19 17:29:00','2006-02-15 22:15:58'),(8530,314,2,13553,'3.99','2005-08-20 04:07:21','2006-02-15 22:15:58'),(8531,314,2,14145,'4.99','2005-08-21 02:11:38','2006-02-15 22:15:58'),(8532,314,1,14409,'4.99','2005-08-21 10:53:35','2006-02-15 22:15:58'),(8533,314,2,14682,'4.99','2005-08-21 20:25:57','2006-02-15 22:15:58'),(8534,314,2,14815,'4.99','2005-08-22 01:12:44','2006-02-15 22:15:58'),(8535,314,2,14873,'5.99','2005-08-22 03:31:06','2006-02-15 22:15:58'),(8536,314,2,16021,'3.99','2005-08-23 21:37:59','2006-02-15 22:15:58'),(8537,315,1,537,'8.99','2005-05-28 06:20:55','2006-02-15 22:15:58'),(8538,315,1,551,'4.99','2005-05-28 07:44:18','2006-02-15 22:15:58'),(8539,315,1,1701,'2.99','2005-06-16 13:18:48','2006-02-15 22:15:58'),(8540,315,1,4021,'2.99','2005-07-07 01:46:44','2006-02-15 22:15:58'),(8541,315,1,4992,'4.99','2005-07-09 00:49:37','2006-02-15 22:15:58'),(8542,315,2,5126,'6.99','2005-07-09 07:25:35','2006-02-15 22:15:58'),(8543,315,1,6661,'4.99','2005-07-12 11:20:39','2006-02-15 22:15:58'),(8544,315,1,6894,'4.99','2005-07-12 21:20:50','2006-02-15 22:15:58'),(8545,315,1,8416,'5.99','2005-07-29 06:52:54','2006-02-15 22:15:58'),(8546,315,2,8677,'6.99','2005-07-29 16:01:13','2006-02-15 22:15:58'),(8547,315,2,9735,'9.99','2005-07-31 08:57:49','2006-02-15 22:15:58'),(8548,315,2,11254,'0.99','2005-08-02 13:43:49','2006-02-15 22:15:59'),(8549,315,2,12155,'2.99','2005-08-18 00:24:30','2006-02-15 22:15:59'),(8550,315,1,14106,'2.99','2005-08-21 00:46:01','2006-02-15 22:15:59'),(8551,315,2,14162,'2.99','2005-08-21 02:55:34','2006-02-15 22:15:59'),(8552,315,1,15504,'6.99','2005-08-23 02:45:21','2006-02-15 22:15:59'),(8553,315,2,14426,'2.99','2006-02-14 15:16:03','2006-02-15 22:15:59'),(8554,316,1,16,'4.99','2005-05-25 00:43:11','2006-02-15 22:15:59'),(8555,316,1,644,'8.99','2005-05-28 18:59:12','2006-02-15 22:15:59'),(8556,316,1,1065,'1.99','2005-05-31 08:54:56','2006-02-15 22:15:59'),(8557,316,1,1317,'4.99','2005-06-15 10:30:19','2006-02-15 22:15:59'),(8558,316,2,1350,'4.99','2005-06-15 12:50:25','2006-02-15 22:15:59'),(8559,316,1,2032,'4.99','2005-06-17 13:24:07','2006-02-15 22:15:59'),(8560,316,2,2338,'4.99','2005-06-18 11:24:54','2006-02-15 22:15:59'),(8561,316,2,2491,'1.99','2005-06-18 22:01:31','2006-02-15 22:15:59'),(8562,316,1,2820,'4.99','2005-06-19 20:20:33','2006-02-15 22:15:59'),(8563,316,2,3373,'8.99','2005-06-21 13:35:32','2006-02-15 22:15:59'),(8564,316,1,4379,'2.99','2005-07-07 20:32:30','2006-02-15 22:15:59'),(8565,316,2,5102,'3.99','2005-07-09 06:25:48','2006-02-15 22:15:59'),(8566,316,2,5544,'7.99','2005-07-10 02:48:07','2006-02-15 22:15:59'),(8567,316,1,5618,'5.99','2005-07-10 05:28:58','2006-02-15 22:15:59'),(8568,316,2,6988,'4.99','2005-07-27 01:00:08','2006-02-15 22:15:59'),(8569,316,2,7339,'2.99','2005-07-27 14:17:48','2006-02-15 22:15:59'),(8570,316,2,7586,'2.99','2005-07-27 23:19:29','2006-02-15 22:15:59'),(8571,316,1,7592,'4.99','2005-07-27 23:26:04','2006-02-15 22:15:59'),(8572,316,1,7945,'1.99','2005-07-28 12:53:58','2006-02-15 22:15:59'),(8573,316,1,8564,'4.99','2005-07-29 11:33:00','2006-02-15 22:16:00'),(8574,316,1,9508,'4.99','2005-07-31 00:22:39','2006-02-15 22:16:00'),(8575,316,2,9903,'6.99','2005-07-31 14:31:44','2006-02-15 22:16:00'),(8576,316,1,10438,'7.99','2005-08-01 08:53:04','2006-02-15 22:16:00'),(8577,316,1,12028,'0.99','2005-08-17 20:03:47','2006-02-15 22:16:00'),(8578,316,2,12191,'0.99','2005-08-18 01:57:11','2006-02-15 22:16:00'),(8579,316,2,12823,'2.99','2005-08-19 01:15:47','2006-02-15 22:16:00'),(8580,316,2,13277,'5.99','2005-08-19 17:57:35','2006-02-15 22:16:00'),(8581,316,1,14226,'2.99','2005-08-21 04:55:37','2006-02-15 22:16:00'),(8582,316,2,15840,'2.99','2005-08-23 15:34:49','2006-02-15 22:16:00'),(8583,317,1,107,'6.99','2005-05-25 18:28:09','2006-02-15 22:16:00'),(8584,317,2,2287,'6.99','2005-06-18 07:04:36','2006-02-15 22:16:00'),(8585,317,2,3029,'2.99','2005-06-20 11:51:30','2006-02-15 22:16:00'),(8586,317,1,3251,'0.99','2005-06-21 03:20:37','2006-02-15 22:16:00'),(8587,317,1,4138,'0.99','2005-07-07 08:17:13','2006-02-15 22:16:00'),(8588,317,1,4177,'8.99','2005-07-07 10:12:36','2006-02-15 22:16:00'),(8589,317,2,4700,'0.99','2005-07-08 11:37:21','2006-02-15 22:16:00'),(8590,317,1,5548,'0.99','2005-07-10 02:56:45','2006-02-15 22:16:00'),(8591,317,2,5942,'7.99','2005-07-10 22:47:17','2006-02-15 22:16:00'),(8592,317,1,7309,'2.99','2005-07-27 13:00:29','2006-02-15 22:16:00'),(8593,317,2,8062,'2.99','2005-07-28 17:15:06','2006-02-15 22:16:00'),(8594,317,1,8327,'2.99','2005-07-29 04:00:52','2006-02-15 22:16:00'),(8595,317,1,8458,'4.99','2005-07-29 08:05:09','2006-02-15 22:16:00'),(8596,317,1,9110,'2.99','2005-07-30 09:05:42','2006-02-15 22:16:01'),(8597,317,2,9513,'4.99','2005-07-31 00:28:30','2006-02-15 22:16:01'),(8598,317,1,9770,'8.99','2005-07-31 09:52:40','2006-02-15 22:16:01'),(8599,317,1,10364,'2.99','2005-08-01 06:06:49','2006-02-15 22:16:01'),(8600,317,2,12111,'2.99','2005-08-17 22:59:55','2006-02-15 22:16:01'),(8601,317,2,12138,'7.99','2005-08-17 23:55:54','2006-02-15 22:16:01'),(8602,317,2,12301,'2.99','2005-08-18 05:36:20','2006-02-15 22:16:01'),(8603,317,1,13388,'4.99','2005-08-19 21:46:49','2006-02-15 22:16:01'),(8604,317,1,14032,'5.99','2005-08-20 21:26:55','2006-02-15 22:16:01'),(8605,317,2,14385,'0.99','2005-08-21 10:02:55','2006-02-15 22:16:01'),(8606,317,2,14669,'2.99','2005-08-21 19:54:06','2006-02-15 22:16:01'),(8607,317,1,14791,'4.99','2005-08-22 00:35:55','2006-02-15 22:16:01'),(8608,317,1,15204,'2.99','2005-08-22 16:30:43','2006-02-15 22:16:01'),(8609,317,1,15280,'4.99','2005-08-22 19:09:52','2006-02-15 22:16:01'),(8610,317,1,12574,'0.99','2006-02-14 15:16:03','2006-02-15 22:16:01'),(8611,318,1,224,'9.99','2005-05-26 10:18:27','2006-02-15 22:16:01'),(8612,318,1,2634,'2.99','2005-06-19 08:55:17','2006-02-15 22:16:01'),(8613,318,1,2643,'2.99','2005-06-19 09:39:27','2006-02-15 22:16:01'),(8614,318,2,3337,'0.99','2005-06-21 10:24:35','2006-02-15 22:16:01'),(8615,318,2,3376,'7.99','2005-06-21 13:43:02','2006-02-15 22:16:01'),(8616,318,1,3732,'4.99','2005-07-06 11:33:37','2006-02-15 22:16:01'),(8617,318,2,3974,'2.99','2005-07-06 22:59:16','2006-02-15 22:16:01'),(8618,318,1,4356,'8.99','2005-07-07 19:21:22','2006-02-15 22:16:01'),(8619,318,1,7649,'0.99','2005-07-28 01:37:26','2006-02-15 22:16:01'),(8620,318,2,7853,'0.99','2005-07-28 09:36:38','2006-02-15 22:16:02'),(8621,318,2,10023,'5.99','2005-07-31 18:25:51','2006-02-15 22:16:02'),(8622,318,1,14276,'2.99','2005-08-21 06:34:05','2006-02-15 22:16:02'),(8623,319,1,15,'9.99','2005-05-25 00:39:22','2006-02-15 22:16:02'),(8624,319,1,149,'3.99','2005-05-26 00:28:05','2006-02-15 22:16:02'),(8625,319,1,439,'2.99','2005-05-27 17:54:48','2006-02-15 22:16:02'),(8626,319,1,1632,'2.99','2005-06-16 08:03:42','2006-02-15 22:16:02'),(8627,319,1,1892,'4.99','2005-06-17 04:17:33','2006-02-15 22:16:02'),(8628,319,2,2021,'3.99','2005-06-17 12:41:18','2006-02-15 22:16:02'),(8629,319,2,2703,'4.99','2005-06-19 13:36:06','2006-02-15 22:16:02'),(8630,319,2,2884,'0.99','2005-06-20 01:31:16','2006-02-15 22:16:02'),(8631,319,2,3256,'3.99','2005-06-21 03:45:42','2006-02-15 22:16:02'),(8632,319,2,4119,'3.99','2005-07-07 07:06:03','2006-02-15 22:16:02'),(8633,319,2,4295,'2.99','2005-07-07 16:08:51','2006-02-15 22:16:02'),(8634,319,1,4630,'4.99','2005-07-08 08:33:38','2006-02-15 22:16:02'),(8635,319,1,5791,'8.99','2005-07-10 14:16:22','2006-02-15 22:16:02'),(8636,319,1,5882,'2.99','2005-07-10 19:20:34','2006-02-15 22:16:02'),(8637,319,2,6132,'2.99','2005-07-11 08:24:44','2006-02-15 22:16:02'),(8638,319,1,6195,'4.99','2005-07-11 12:00:32','2006-02-15 22:16:02'),(8639,319,1,6255,'4.99','2005-07-11 15:11:33','2006-02-15 22:16:02'),(8640,319,1,6485,'6.99','2005-07-12 02:07:59','2006-02-15 22:16:02'),(8641,319,2,7953,'2.99','2005-07-28 13:24:32','2006-02-15 22:16:02'),(8642,319,2,9017,'4.99','2005-07-30 05:26:20','2006-02-15 22:16:02'),(8643,319,2,9044,'0.99','2005-07-30 06:35:21','2006-02-15 22:16:02'),(8644,319,1,11575,'0.99','2005-08-17 01:50:26','2006-02-15 22:16:03'),(8645,319,2,11598,'0.99','2005-08-17 03:03:07','2006-02-15 22:16:03'),(8646,319,1,11955,'6.99','2005-08-17 17:21:35','2006-02-15 22:16:03'),(8647,319,2,11994,'2.99','2005-08-17 18:29:35','2006-02-15 22:16:03'),(8648,319,1,12018,'4.99','2005-08-17 19:44:46','2006-02-15 22:16:03'),(8649,319,2,12424,'8.99','2005-08-18 10:16:57','2006-02-15 22:16:03'),(8650,319,1,13548,'3.99','2005-08-20 03:53:20','2006-02-15 22:16:03'),(8651,319,2,14828,'4.99','2005-08-22 01:34:05','2006-02-15 22:16:03'),(8652,319,2,15396,'5.99','2005-08-22 23:07:57','2006-02-15 22:16:03'),(8653,320,2,1258,'4.99','2005-06-15 06:21:30','2006-02-15 22:16:03'),(8654,320,2,1484,'3.99','2005-06-15 21:22:35','2006-02-15 22:16:03'),(8655,320,2,1567,'1.99','2005-06-16 03:13:30','2006-02-15 22:16:03'),(8656,320,1,2216,'4.99','2005-06-18 03:08:17','2006-02-15 22:16:03'),(8657,320,2,2883,'7.99','2005-06-20 01:29:10','2006-02-15 22:16:03'),(8658,320,2,3519,'0.99','2005-07-06 00:57:29','2006-02-15 22:16:03'),(8659,320,2,3756,'4.99','2005-07-06 12:40:38','2006-02-15 22:16:03'),(8660,320,2,4173,'2.99','2005-07-07 09:57:26','2006-02-15 22:16:03'),(8661,320,2,7057,'4.99','2005-07-27 03:50:03','2006-02-15 22:16:03'),(8662,320,2,7064,'3.99','2005-07-27 03:53:29','2006-02-15 22:16:03'),(8663,320,2,7930,'4.99','2005-07-28 12:21:08','2006-02-15 22:16:03'),(8664,320,2,8144,'4.99','2005-07-28 20:30:55','2006-02-15 22:16:03'),(8665,320,2,8235,'4.99','2005-07-29 00:22:56','2006-02-15 22:16:03'),(8666,320,1,8238,'0.99','2005-07-29 00:30:06','2006-02-15 22:16:03'),(8667,320,2,8794,'4.99','2005-07-29 20:59:38','2006-02-15 22:16:03'),(8668,320,1,9509,'0.99','2005-07-31 00:22:42','2006-02-15 22:16:04'),(8669,320,1,11208,'0.99','2005-08-02 12:02:37','2006-02-15 22:16:04'),(8670,320,2,11560,'2.99','2005-08-17 01:20:30','2006-02-15 22:16:04'),(8671,320,2,14171,'0.99','2005-08-21 03:00:42','2006-02-15 22:16:04'),(8672,320,1,15302,'2.99','2005-08-22 19:44:53','2006-02-15 22:16:04'),(8673,321,2,200,'4.99','2005-05-26 07:12:21','2006-02-15 22:16:04'),(8674,321,1,620,'5.99','2005-05-28 15:54:45','2006-02-15 22:16:04'),(8675,321,2,818,'4.99','2005-05-29 20:47:53','2006-02-15 22:16:04'),(8676,321,2,1750,'5.99','2005-06-16 16:57:36','2006-02-15 22:16:04'),(8677,321,1,3410,'0.99','2005-06-21 16:20:47','2006-02-15 22:16:04'),(8678,321,2,3901,'5.99','2005-07-06 19:24:55','2006-02-15 22:16:04'),(8679,321,1,3920,'4.99','2005-07-06 20:26:40','2006-02-15 22:16:04'),(8680,321,2,4281,'4.99','2005-07-07 15:17:50','2006-02-15 22:16:04'),(8681,321,1,4318,'5.99','2005-07-07 17:47:50','2006-02-15 22:16:04'),(8682,321,2,5202,'2.99','2005-07-09 10:53:48','2006-02-15 22:16:04'),(8683,321,2,5867,'8.99','2005-07-10 18:39:01','2006-02-15 22:16:04'),(8684,321,2,6190,'2.99','2005-07-11 11:36:18','2006-02-15 22:16:04'),(8685,321,1,6859,'5.99','2005-07-12 19:53:57','2006-02-15 22:16:04'),(8686,321,2,8685,'6.99','2005-07-29 16:17:05','2006-02-15 22:16:04'),(8687,321,1,9981,'0.99','2005-07-31 17:08:31','2006-02-15 22:16:04'),(8688,321,1,11722,'2.99','2005-08-17 07:53:03','2006-02-15 22:16:04'),(8689,321,1,12033,'6.99','2005-08-17 20:14:34','2006-02-15 22:16:04'),(8690,321,2,12034,'7.99','2005-08-17 20:15:31','2006-02-15 22:16:04'),(8691,321,1,12398,'4.99','2005-08-18 09:13:24','2006-02-15 22:16:04'),(8692,321,2,13623,'6.99','2005-08-20 06:49:46','2006-02-15 22:16:05'),(8693,321,1,15673,'6.99','2005-08-23 09:12:50','2006-02-15 22:16:05'),(8694,321,2,15888,'5.99','2005-08-23 16:56:14','2006-02-15 22:16:05'),(8695,322,2,166,'0.99','2005-05-26 02:49:11','2006-02-15 22:16:05'),(8696,322,1,269,'4.99','2005-05-26 16:19:46','2006-02-15 22:16:05'),(8697,322,1,1386,'2.99','2005-06-15 15:38:58','2006-02-15 22:16:05'),(8698,322,1,1588,'8.99','2005-06-16 04:53:21','2006-02-15 22:16:05'),(8699,322,2,2481,'4.99','2005-06-18 21:08:30','2006-02-15 22:16:05'),(8700,322,1,2554,'0.99','2005-06-19 03:05:38','2006-02-15 22:16:05'),(8701,322,1,2983,'7.99','2005-06-20 08:41:42','2006-02-15 22:16:05'),(8702,322,2,3054,'5.99','2005-06-20 13:16:41','2006-02-15 22:16:05'),(8703,322,2,3413,'8.99','2005-06-21 16:57:07','2006-02-15 22:16:05'),(8704,322,1,3478,'0.99','2005-07-05 23:05:44','2006-02-15 22:16:05'),(8705,322,2,3627,'1.99','2005-07-06 06:19:25','2006-02-15 22:16:05'),(8706,322,1,3646,'4.99','2005-07-06 07:28:59','2006-02-15 22:16:05'),(8707,322,2,6033,'2.99','2005-07-11 02:59:34','2006-02-15 22:16:05'),(8708,322,1,6511,'3.99','2005-07-12 03:39:29','2006-02-15 22:16:05'),(8709,322,2,6673,'0.99','2005-07-12 11:50:56','2006-02-15 22:16:05'),(8710,322,2,6709,'4.99','2005-07-12 13:20:41','2006-02-15 22:16:05'),(8711,322,1,7091,'4.99','2005-07-27 04:44:10','2006-02-15 22:16:05'),(8712,322,2,8142,'4.99','2005-07-28 20:21:54','2006-02-15 22:16:05'),(8713,322,1,9104,'7.99','2005-07-30 08:49:55','2006-02-15 22:16:05'),(8714,322,1,9115,'4.99','2005-07-30 09:13:55','2006-02-15 22:16:05'),(8715,322,1,9252,'1.99','2005-07-30 14:19:59','2006-02-15 22:16:05'),(8716,322,2,11120,'4.99','2005-08-02 08:47:04','2006-02-15 22:16:06'),(8717,322,2,11456,'0.99','2005-08-02 21:14:04','2006-02-15 22:16:06'),(8718,322,2,13180,'4.99','2005-08-19 14:00:38','2006-02-15 22:16:06'),(8719,322,1,13650,'9.99','2005-08-20 07:49:06','2006-02-15 22:16:06'),(8720,322,2,14042,'4.99','2005-08-20 21:45:51','2006-02-15 22:16:06'),(8721,322,1,15450,'0.99','2005-08-23 00:56:01','2006-02-15 22:16:06'),(8722,322,2,15703,'8.99','2005-08-23 10:23:48','2006-02-15 22:16:06'),(8723,323,1,58,'4.99','2005-05-25 08:53:14','2006-02-15 22:16:06'),(8724,323,2,729,'2.99','2005-05-29 06:35:13','2006-02-15 22:16:06'),(8725,323,1,878,'5.99','2005-05-30 05:49:13','2006-02-15 22:16:06'),(8726,323,2,1167,'0.99','2005-06-14 23:25:58','2006-02-15 22:16:06'),(8727,323,2,1786,'2.99','2005-06-16 19:30:54','2006-02-15 22:16:06'),(8728,323,1,2933,'4.99','2005-06-20 04:52:23','2006-02-15 22:16:06'),(8729,323,2,3704,'6.99','2005-07-06 10:16:45','2006-02-15 22:16:06'),(8730,323,2,4572,'1.99','2005-07-08 05:36:59','2006-02-15 22:16:06'),(8731,323,2,5669,'4.99','2005-07-10 08:12:53','2006-02-15 22:16:06'),(8732,323,2,5906,'1.99','2005-07-10 20:41:41','2006-02-15 22:16:06'),(8733,323,1,6840,'3.99','2005-07-12 19:03:22','2006-02-15 22:16:06'),(8734,323,2,7146,'7.99','2005-07-27 07:02:30','2006-02-15 22:16:06'),(8735,323,2,7275,'2.99','2005-07-27 11:39:08','2006-02-15 22:16:06'),(8736,323,2,7695,'5.99','2005-07-28 03:41:13','2006-02-15 22:16:06'),(8737,323,1,7847,'1.99','2005-07-28 09:23:14','2006-02-15 22:16:06'),(8738,323,2,7937,'4.99','2005-07-28 12:38:22','2006-02-15 22:16:06'),(8739,323,2,8474,'0.99','2005-07-29 08:36:56','2006-02-15 22:16:07'),(8740,323,1,8790,'0.99','2005-07-29 20:51:41','2006-02-15 22:16:07'),(8741,323,1,9363,'2.99','2005-07-30 18:44:23','2006-02-15 22:16:07'),(8742,323,2,10002,'4.99','2005-07-31 17:48:16','2006-02-15 22:16:07'),(8743,323,1,10028,'4.99','2005-07-31 18:35:54','2006-02-15 22:16:07'),(8744,323,1,10298,'0.99','2005-08-01 04:06:03','2006-02-15 22:16:07'),(8745,323,1,10994,'3.99','2005-08-02 04:46:53','2006-02-15 22:16:07'),(8746,323,2,11548,'0.99','2005-08-17 00:59:47','2006-02-15 22:16:07'),(8747,323,1,12120,'4.99','2005-08-17 23:16:46','2006-02-15 22:16:07'),(8748,323,1,12169,'2.99','2005-08-18 01:05:54','2006-02-15 22:16:07'),(8749,323,1,13140,'5.99','2005-08-19 12:35:56','2006-02-15 22:16:07'),(8750,323,1,14224,'2.99','2005-08-21 04:53:08','2006-02-15 22:16:07'),(8751,323,1,14957,'3.99','2005-08-22 06:29:34','2006-02-15 22:16:07'),(8752,323,1,15387,'4.99','2005-08-22 22:49:13','2006-02-15 22:16:07'),(8753,323,1,15728,'0.99','2005-08-23 11:30:32','2006-02-15 22:16:07'),(8754,324,2,563,'3.99','2005-05-28 09:10:49','2006-02-15 22:16:07'),(8755,324,1,1740,'0.99','2005-06-16 16:29:00','2006-02-15 22:16:07'),(8756,324,2,2590,'2.99','2005-06-19 05:31:40','2006-02-15 22:16:07'),(8757,324,1,3947,'4.99','2005-07-06 21:42:21','2006-02-15 22:16:07'),(8758,324,1,4197,'0.99','2005-07-07 11:07:52','2006-02-15 22:16:07'),(8759,324,2,4368,'4.99','2005-07-07 19:55:19','2006-02-15 22:16:07'),(8760,324,2,5702,'2.99','2005-07-10 10:00:01','2006-02-15 22:16:07'),(8761,324,1,5778,'0.99','2005-07-10 13:41:37','2006-02-15 22:16:07'),(8762,324,1,6034,'2.99','2005-07-11 03:00:50','2006-02-15 22:16:07'),(8763,324,2,6299,'4.99','2005-07-11 17:45:08','2006-02-15 22:16:08'),(8764,324,2,7240,'3.99','2005-07-27 10:21:15','2006-02-15 22:16:08'),(8765,324,1,7263,'7.99','2005-07-27 11:17:22','2006-02-15 22:16:08'),(8766,324,2,7960,'6.99','2005-07-28 13:47:08','2006-02-15 22:16:08'),(8767,324,1,8698,'3.99','2005-07-29 16:52:17','2006-02-15 22:16:08'),(8768,324,1,9651,'4.99','2005-07-31 05:48:49','2006-02-15 22:16:08'),(8769,324,2,10212,'2.99','2005-08-01 01:01:35','2006-02-15 22:16:08'),(8770,324,1,11617,'2.99','2005-08-17 04:00:40','2006-02-15 22:16:08'),(8771,324,1,11771,'6.99','2005-08-17 10:17:09','2006-02-15 22:16:08'),(8772,324,2,12543,'2.99','2005-08-18 14:23:55','2006-02-15 22:16:08'),(8773,324,2,13356,'0.99','2005-08-19 21:02:21','2006-02-15 22:16:08'),(8774,324,1,13386,'2.99','2005-08-19 21:43:58','2006-02-15 22:16:08'),(8775,324,1,14262,'8.99','2005-08-21 06:08:13','2006-02-15 22:16:08'),(8776,324,2,14479,'7.99','2005-08-21 13:35:54','2006-02-15 22:16:08'),(8777,324,1,15263,'4.99','2005-08-22 18:27:33','2006-02-15 22:16:08'),(8778,324,2,13965,'2.99','2006-02-14 15:16:03','2006-02-15 22:16:08'),(8779,325,1,131,'5.99','2005-05-25 21:42:46','2006-02-15 22:16:08'),(8780,325,2,2502,'4.99','2005-06-18 23:12:13','2006-02-15 22:16:08'),(8781,325,2,2507,'4.99','2005-06-18 23:39:22','2006-02-15 22:16:08'),(8782,325,2,2808,'2.99','2005-06-19 19:34:45','2006-02-15 22:16:08'),(8783,325,1,5470,'5.99','2005-07-09 23:10:49','2006-02-15 22:16:08'),(8784,325,2,5740,'2.99','2005-07-10 11:51:58','2006-02-15 22:16:08'),(8785,325,1,5775,'4.99','2005-07-10 13:34:26','2006-02-15 22:16:08'),(8786,325,2,6135,'4.99','2005-07-11 08:32:23','2006-02-15 22:16:08'),(8787,325,2,6622,'0.99','2005-07-12 09:04:11','2006-02-15 22:16:09'),(8788,325,2,7223,'9.99','2005-07-27 09:42:27','2006-02-15 22:16:09'),(8789,325,2,7687,'2.99','2005-07-28 03:20:26','2006-02-15 22:16:09'),(8790,325,2,8539,'0.99','2005-07-29 10:48:24','2006-02-15 22:16:09'),(8791,325,2,10030,'2.99','2005-07-31 18:39:36','2006-02-15 22:16:09'),(8792,325,1,10070,'4.99','2005-07-31 19:46:29','2006-02-15 22:16:09'),(8793,325,2,10326,'4.99','2005-08-01 04:55:34','2006-02-15 22:16:09'),(8794,325,1,10412,'0.99','2005-08-01 07:57:16','2006-02-15 22:16:09'),(8795,325,2,12097,'4.99','2005-08-17 22:35:24','2006-02-15 22:16:09'),(8796,325,1,12779,'3.99','2005-08-18 23:44:00','2006-02-15 22:16:09'),(8797,325,2,13054,'4.99','2005-08-19 09:34:02','2006-02-15 22:16:09'),(8798,325,2,14452,'3.99','2005-08-21 12:23:20','2006-02-15 22:16:09'),(8799,325,1,14672,'5.99','2005-08-21 19:59:33','2006-02-15 22:16:09'),(8800,325,2,15009,'0.99','2005-08-22 08:27:27','2006-02-15 22:16:09'),(8801,326,1,875,'6.99','2005-05-30 05:38:24','2006-02-15 22:16:09'),(8802,326,2,981,'4.99','2005-05-30 21:52:42','2006-02-15 22:16:09'),(8803,326,2,1149,'3.99','2005-05-31 21:03:17','2006-02-15 22:16:09'),(8804,326,1,1311,'4.99','2005-06-15 10:11:59','2006-02-15 22:16:09'),(8805,326,2,2086,'0.99','2005-06-17 17:32:07','2006-02-15 22:16:09'),(8806,326,2,2317,'4.99','2005-06-18 09:12:18','2006-02-15 22:16:09'),(8807,326,1,3441,'4.99','2005-06-21 20:00:12','2006-02-15 22:16:09'),(8808,326,2,3886,'0.99','2005-07-06 18:44:24','2006-02-15 22:16:09'),(8809,326,1,4160,'7.99','2005-07-07 09:13:17','2006-02-15 22:16:09'),(8810,326,1,5147,'5.99','2005-07-09 08:17:41','2006-02-15 22:16:09'),(8811,326,1,7117,'2.99','2005-07-27 05:48:36','2006-02-15 22:16:10'),(8812,326,2,7725,'2.99','2005-07-28 04:47:14','2006-02-15 22:16:10'),(8813,326,2,7931,'4.99','2005-07-28 12:23:41','2006-02-15 22:16:10'),(8814,326,1,8467,'5.99','2005-07-29 08:25:35','2006-02-15 22:16:10'),(8815,326,1,8604,'4.99','2005-07-29 13:07:13','2006-02-15 22:16:10'),(8816,326,2,8739,'2.99','2005-07-29 18:34:33','2006-02-15 22:16:10'),(8817,326,2,9855,'0.99','2005-07-31 13:00:33','2006-02-15 22:16:10'),(8818,326,1,10108,'0.99','2005-07-31 21:02:14','2006-02-15 22:16:10'),(8819,326,2,10173,'4.99','2005-07-31 23:36:59','2006-02-15 22:16:10'),(8820,326,2,10720,'0.99','2005-08-01 19:04:33','2006-02-15 22:16:10'),(8821,326,2,10976,'4.99','2005-08-02 04:11:48','2006-02-15 22:16:10'),(8822,326,2,11010,'0.99','2005-08-02 05:06:27','2006-02-15 22:16:10'),(8823,326,2,11428,'2.99','2005-08-02 20:03:10','2006-02-15 22:16:10'),(8824,326,2,11485,'4.99','2005-08-02 22:33:25','2006-02-15 22:16:10'),(8825,326,2,12829,'2.99','2005-08-19 01:38:18','2006-02-15 22:16:10'),(8826,327,1,653,'6.99','2005-05-28 20:12:20','2006-02-15 22:16:10'),(8827,327,1,1294,'4.99','2005-06-15 09:09:27','2006-02-15 22:16:10'),(8828,327,2,1577,'3.99','2005-06-16 04:03:28','2006-02-15 22:16:10'),(8829,327,2,1929,'6.99','2005-06-17 06:49:30','2006-02-15 22:16:10'),(8830,327,1,2273,'4.99','2005-06-18 06:30:02','2006-02-15 22:16:10'),(8831,327,2,2304,'5.99','2005-06-18 08:30:15','2006-02-15 22:16:10'),(8832,327,2,2637,'3.99','2005-06-19 09:20:56','2006-02-15 22:16:10'),(8833,327,1,4445,'4.99','2005-07-07 23:08:22','2006-02-15 22:16:10'),(8834,327,1,4521,'0.99','2005-07-08 02:57:56','2006-02-15 22:16:11'),(8835,327,1,6618,'2.99','2005-07-12 08:41:42','2006-02-15 22:16:11'),(8836,327,2,7458,'1.99','2005-07-27 18:36:17','2006-02-15 22:16:11'),(8837,327,2,7808,'1.99','2005-07-28 07:58:56','2006-02-15 22:16:11'),(8838,327,1,10371,'0.99','2005-08-01 06:20:29','2006-02-15 22:16:11'),(8839,327,1,11372,'4.99','2005-08-02 18:10:50','2006-02-15 22:16:11'),(8840,327,2,11929,'6.99','2005-08-17 16:28:51','2006-02-15 22:16:11'),(8841,327,1,12016,'0.99','2005-08-17 19:33:24','2006-02-15 22:16:11'),(8842,327,2,13158,'2.99','2005-08-19 13:18:10','2006-02-15 22:16:11'),(8843,327,1,13360,'4.99','2005-08-19 21:05:11','2006-02-15 22:16:11'),(8844,327,1,13448,'0.99','2005-08-20 00:12:43','2006-02-15 22:16:11'),(8845,327,1,14847,'4.99','2005-08-22 02:13:51','2006-02-15 22:16:11'),(8846,327,2,15365,'3.99','2005-08-22 21:42:17','2006-02-15 22:16:11'),(8847,327,1,15386,'2.99','2005-08-22 22:41:14','2006-02-15 22:16:11'),(8848,327,1,15828,'5.99','2005-08-23 15:16:32','2006-02-15 22:16:11'),(8849,327,1,15916,'9.99','2005-08-23 17:56:01','2006-02-15 22:16:11'),(8850,327,2,15969,'7.99','2005-08-23 19:51:30','2006-02-15 22:16:11'),(8851,327,1,15297,'2.99','2006-02-14 15:16:03','2006-02-15 22:16:11'),(8852,328,2,862,'2.99','2005-05-30 03:09:11','2006-02-15 22:16:11'),(8853,328,2,1670,'2.99','2005-06-16 10:26:33','2006-02-15 22:16:11'),(8854,328,2,1980,'6.99','2005-06-17 09:48:05','2006-02-15 22:16:11'),(8855,328,2,2243,'5.99','2005-06-18 04:33:03','2006-02-15 22:16:11'),(8856,328,1,3024,'4.99','2005-06-20 11:29:17','2006-02-15 22:16:11'),(8857,328,1,3239,'0.99','2005-06-21 02:48:40','2006-02-15 22:16:11'),(8858,328,1,5450,'4.99','2005-07-09 22:13:25','2006-02-15 22:16:12'),(8859,328,1,8017,'1.99','2005-07-28 15:35:41','2006-02-15 22:16:12'),(8860,328,1,8577,'6.99','2005-07-29 11:56:30','2006-02-15 22:16:12'),(8861,328,2,8780,'4.99','2005-07-29 20:19:45','2006-02-15 22:16:12'),(8862,328,2,9557,'2.99','2005-07-31 02:14:01','2006-02-15 22:16:12'),(8863,328,1,9835,'2.99','2005-07-31 12:07:35','2006-02-15 22:16:12'),(8864,328,1,11174,'2.99','2005-08-02 10:32:11','2006-02-15 22:16:12'),(8865,328,1,12175,'4.99','2005-08-18 01:10:17','2006-02-15 22:16:12'),(8866,328,2,12825,'0.99','2005-08-19 01:23:58','2006-02-15 22:16:12'),(8867,328,1,13609,'2.99','2005-08-20 06:11:51','2006-02-15 22:16:12'),(8868,328,2,13681,'7.99','2005-08-20 08:47:37','2006-02-15 22:16:12'),(8869,328,1,13907,'3.99','2005-08-20 16:17:27','2006-02-15 22:16:12'),(8870,328,2,14307,'3.99','2005-08-21 07:34:52','2006-02-15 22:16:12'),(8871,328,1,14755,'3.99','2005-08-21 23:18:08','2006-02-15 22:16:12'),(8872,328,2,14939,'2.99','2005-08-22 05:53:52','2006-02-15 22:16:12'),(8873,328,1,15179,'4.99','2005-08-22 15:36:22','2006-02-15 22:16:12'),(8874,328,1,15863,'0.99','2005-08-23 16:17:09','2006-02-15 22:16:12'),(8875,329,1,1183,'2.99','2005-06-15 00:49:19','2006-02-15 22:16:12'),(8876,329,1,2010,'5.99','2005-06-17 11:54:15','2006-02-15 22:16:12'),(8877,329,2,2024,'0.99','2005-06-17 13:00:51','2006-02-15 22:16:12'),(8878,329,1,2151,'0.99','2005-06-17 22:52:37','2006-02-15 22:16:12'),(8879,329,1,2303,'2.99','2005-06-18 08:27:59','2006-02-15 22:16:12'),(8880,329,2,2702,'2.99','2005-06-19 13:35:56','2006-02-15 22:16:12'),(8881,329,1,3052,'5.99','2005-06-20 13:09:19','2006-02-15 22:16:13'),(8882,329,2,3053,'0.99','2005-06-20 13:10:30','2006-02-15 22:16:13'),(8883,329,2,3268,'4.99','2005-06-21 04:55:49','2006-02-15 22:16:13'),(8884,329,2,3976,'2.99','2005-07-06 23:00:20','2006-02-15 22:16:13'),(8885,329,2,4076,'4.99','2005-07-07 04:52:15','2006-02-15 22:16:13'),(8886,329,1,4415,'4.99','2005-07-07 22:01:43','2006-02-15 22:16:13'),(8887,329,1,4465,'1.99','2005-07-08 00:07:45','2006-02-15 22:16:13'),(8888,329,2,4674,'2.99','2005-07-08 10:19:28','2006-02-15 22:16:13'),(8889,329,1,7980,'4.99','2005-07-28 14:16:49','2006-02-15 22:16:13'),(8890,329,2,8172,'7.99','2005-07-28 21:34:36','2006-02-15 22:16:13'),(8891,329,1,8460,'6.99','2005-07-29 08:08:03','2006-02-15 22:16:13'),(8892,329,2,8941,'0.99','2005-07-30 02:59:21','2006-02-15 22:16:13'),(8893,329,2,9024,'4.99','2005-07-30 05:44:42','2006-02-15 22:16:13'),(8894,329,2,9219,'0.99','2005-07-30 13:15:21','2006-02-15 22:16:13'),(8895,329,1,9381,'0.99','2005-07-30 19:23:04','2006-02-15 22:16:13'),(8896,329,1,9827,'6.99','2005-07-31 11:56:55','2006-02-15 22:16:13'),(8897,329,1,10473,'7.99','2005-08-01 09:56:24','2006-02-15 22:16:13'),(8898,329,2,10490,'0.99','2005-08-01 10:37:11','2006-02-15 22:16:13'),(8899,329,1,11130,'2.99','2005-08-02 09:08:59','2006-02-15 22:16:13'),(8900,329,2,11169,'3.99','2005-08-02 10:19:42','2006-02-15 22:16:13'),(8901,329,2,11697,'0.99','2005-08-17 07:09:19','2006-02-15 22:16:13'),(8902,329,1,12659,'6.99','2005-08-18 19:05:49','2006-02-15 22:16:13'),(8903,329,1,13627,'8.99','2005-08-20 06:59:00','2006-02-15 22:16:13'),(8904,329,1,14900,'4.99','2005-08-22 04:27:48','2006-02-15 22:16:13'),(8905,329,2,15011,'4.99','2005-08-22 08:31:07','2006-02-15 22:16:14'),(8906,329,1,15308,'2.99','2005-08-22 19:54:31','2006-02-15 22:16:14'),(8907,330,1,704,'3.99','2005-05-29 02:44:43','2006-02-15 22:16:14'),(8908,330,2,967,'7.99','2005-05-30 19:12:06','2006-02-15 22:16:14'),(8909,330,1,1219,'6.99','2005-06-15 03:25:59','2006-02-15 22:16:14'),(8910,330,2,1511,'5.99','2005-06-15 22:45:06','2006-02-15 22:16:14'),(8911,330,2,2885,'0.99','2005-06-20 01:33:42','2006-02-15 22:16:14'),(8912,330,1,2936,'4.99','2005-06-20 05:09:27','2006-02-15 22:16:14'),(8913,330,2,3061,'2.99','2005-06-20 13:48:21','2006-02-15 22:16:14'),(8914,330,2,3603,'4.99','2005-07-06 05:25:03','2006-02-15 22:16:14'),(8915,330,2,3659,'2.99','2005-07-06 08:03:14','2006-02-15 22:16:14'),(8916,330,2,3760,'2.99','2005-07-06 12:49:28','2006-02-15 22:16:14'),(8917,330,1,4124,'1.99','2005-07-07 07:19:54','2006-02-15 22:16:14'),(8918,330,2,5149,'2.99','2005-07-09 08:28:23','2006-02-15 22:16:14'),(8919,330,1,5750,'5.99','2005-07-10 12:20:41','2006-02-15 22:16:14'),(8920,330,1,6656,'0.99','2005-07-12 11:09:47','2006-02-15 22:16:14'),(8921,330,2,6678,'2.99','2005-07-12 11:58:36','2006-02-15 22:16:14'),(8922,330,1,6719,'2.99','2005-07-12 13:40:37','2006-02-15 22:16:14'),(8923,330,2,7894,'2.99','2005-07-28 10:53:58','2006-02-15 22:16:14'),(8924,330,1,8680,'4.99','2005-07-29 16:08:03','2006-02-15 22:16:14'),(8925,330,2,10100,'4.99','2005-07-31 20:47:18','2006-02-15 22:16:14'),(8926,330,2,11259,'3.99','2005-08-02 13:46:30','2006-02-15 22:16:14'),(8927,330,1,12062,'2.99','2005-08-17 21:24:47','2006-02-15 22:16:14'),(8928,330,1,12394,'2.99','2005-08-18 09:05:15','2006-02-15 22:16:15'),(8929,330,1,12740,'4.99','2005-08-18 22:17:04','2006-02-15 22:16:15'),(8930,330,1,12867,'0.99','2005-08-19 02:40:11','2006-02-15 22:16:15'),(8931,330,2,11709,'2.99','2006-02-14 15:16:03','2006-02-15 22:16:15'),(8932,331,2,87,'0.99','2005-05-25 13:52:43','2006-02-15 22:16:15'),(8933,331,1,996,'2.99','2005-05-31 00:06:20','2006-02-15 22:16:15'),(8934,331,1,1415,'2.99','2005-06-15 17:31:57','2006-02-15 22:16:15'),(8935,331,2,2528,'6.99','2005-06-19 01:14:12','2006-02-15 22:16:15'),(8936,331,1,2587,'2.99','2005-06-19 05:06:14','2006-02-15 22:16:15'),(8937,331,1,3505,'4.99','2005-07-06 00:19:32','2006-02-15 22:16:15'),(8938,331,1,3613,'4.99','2005-07-06 05:45:53','2006-02-15 22:16:15'),(8939,331,2,3871,'8.99','2005-07-06 17:58:51','2006-02-15 22:16:15'),(8940,331,1,4051,'4.99','2005-07-07 03:37:28','2006-02-15 22:16:15'),(8941,331,2,4063,'5.99','2005-07-07 04:23:57','2006-02-15 22:16:15'),(8942,331,1,4326,'10.99','2005-07-07 18:01:22','2006-02-15 22:16:15'),(8943,331,1,5152,'2.99','2005-07-09 08:34:44','2006-02-15 22:16:15'),(8944,331,1,5885,'1.99','2005-07-10 19:33:50','2006-02-15 22:16:15'),(8945,331,1,5947,'5.99','2005-07-10 23:07:42','2006-02-15 22:16:15'),(8946,331,1,8231,'0.99','2005-07-29 00:14:37','2006-02-15 22:16:15'),(8947,331,2,8995,'4.99','2005-07-30 04:53:11','2006-02-15 22:16:15'),(8948,331,1,9401,'5.99','2005-07-30 20:18:19','2006-02-15 22:16:15'),(8949,331,2,10188,'6.99','2005-08-01 00:19:41','2006-02-15 22:16:16'),(8950,331,1,11052,'5.99','2005-08-02 06:26:19','2006-02-15 22:16:16'),(8951,331,1,11362,'2.99','2005-08-02 17:47:25','2006-02-15 22:16:16'),(8952,331,2,12533,'4.99','2005-08-18 14:01:40','2006-02-15 22:16:16'),(8953,331,1,13795,'0.99','2005-08-20 12:32:09','2006-02-15 22:16:16'),(8954,331,1,14256,'7.99','2005-08-21 05:52:27','2006-02-15 22:16:16'),(8955,331,1,14628,'1.99','2005-08-21 18:37:24','2006-02-15 22:16:16'),(8956,331,1,15339,'2.99','2005-08-22 20:52:12','2006-02-15 22:16:16'),(8957,331,2,15447,'3.99','2005-08-23 00:53:57','2006-02-15 22:16:16'),(8958,331,1,15521,'2.99','2005-08-23 03:30:51','2006-02-15 22:16:16'),(8959,332,2,600,'3.99','2005-05-28 14:08:19','2006-02-15 22:16:16'),(8960,332,1,1000,'6.99','2005-05-31 00:25:56','2006-02-15 22:16:16'),(8961,332,1,4100,'6.99','2005-07-07 06:20:52','2006-02-15 22:16:16'),(8962,332,1,4302,'6.99','2005-07-07 16:47:53','2006-02-15 22:16:16'),(8963,332,2,5116,'2.99','2005-07-09 07:10:12','2006-02-15 22:16:16'),(8964,332,1,5277,'1.99','2005-07-09 14:40:42','2006-02-15 22:16:16'),(8965,332,2,5381,'2.99','2005-07-09 19:11:11','2006-02-15 22:16:16'),(8966,332,2,5388,'0.99','2005-07-09 19:25:25','2006-02-15 22:16:16'),(8967,332,1,5440,'0.99','2005-07-09 21:45:17','2006-02-15 22:16:16'),(8968,332,2,7049,'7.99','2005-07-27 03:32:41','2006-02-15 22:16:16'),(8969,332,2,7418,'2.99','2005-07-27 16:59:09','2006-02-15 22:16:16'),(8970,332,2,7577,'8.99','2005-07-27 22:56:07','2006-02-15 22:16:16'),(8971,332,2,7578,'4.99','2005-07-27 22:58:17','2006-02-15 22:16:17'),(8972,332,2,7934,'8.99','2005-07-28 12:33:10','2006-02-15 22:16:17'),(8973,332,2,8173,'6.99','2005-07-28 21:35:44','2006-02-15 22:16:17'),(8974,332,1,9324,'1.99','2005-07-30 17:28:52','2006-02-15 22:16:17'),(8975,332,1,9388,'5.99','2005-07-30 19:27:22','2006-02-15 22:16:17'),(8976,332,1,9921,'0.99','2005-07-31 14:59:21','2006-02-15 22:16:17'),(8977,332,1,10026,'4.99','2005-07-31 18:31:51','2006-02-15 22:16:17'),(8978,332,1,10307,'0.99','2005-08-01 04:21:54','2006-02-15 22:16:17'),(8979,332,2,10439,'0.99','2005-08-01 08:54:26','2006-02-15 22:16:17'),(8980,332,1,11229,'5.99','2005-08-02 12:56:37','2006-02-15 22:16:17'),(8981,332,2,11564,'2.99','2005-08-17 01:27:49','2006-02-15 22:16:17'),(8982,332,2,12318,'4.99','2005-08-18 06:21:56','2006-02-15 22:16:17'),(8983,332,2,13673,'2.99','2005-08-20 08:27:30','2006-02-15 22:16:17'),(8984,332,2,14783,'4.99','2005-08-22 00:21:57','2006-02-15 22:16:17'),(8985,332,2,15194,'0.99','2005-08-22 16:07:34','2006-02-15 22:16:17'),(8986,332,1,15210,'3.99','2005-08-22 16:37:36','2006-02-15 22:16:17'),(8987,333,1,4,'4.99','2005-05-24 23:04:41','2006-02-15 22:16:17'),(8988,333,1,1667,'2.99','2005-06-16 10:18:59','2006-02-15 22:16:17'),(8989,333,1,2149,'6.99','2005-06-17 22:50:00','2006-02-15 22:16:17'),(8990,333,1,2929,'1.99','2005-06-20 04:47:39','2006-02-15 22:16:17'),(8991,333,1,3110,'2.99','2005-06-20 17:40:12','2006-02-15 22:16:17'),(8992,333,2,5032,'0.99','2005-07-09 02:39:47','2006-02-15 22:16:17'),(8993,333,1,5645,'1.99','2005-07-10 06:58:21','2006-02-15 22:16:17'),(8994,333,2,5892,'4.99','2005-07-10 20:02:42','2006-02-15 22:16:17'),(8995,333,2,6275,'0.99','2005-07-11 16:12:11','2006-02-15 22:16:18'),(8996,333,2,6931,'4.99','2005-07-26 23:02:57','2006-02-15 22:16:18'),(8997,333,2,6958,'0.99','2005-07-27 00:02:41','2006-02-15 22:16:18'),(8998,333,2,7076,'6.99','2005-07-27 04:12:14','2006-02-15 22:16:18'),(8999,333,2,7246,'0.99','2005-07-27 10:30:41','2006-02-15 22:16:18'),(9000,333,1,8719,'4.99','2005-07-29 17:45:45','2006-02-15 22:16:18'),(9001,333,2,9148,'4.99','2005-07-30 10:39:10','2006-02-15 22:16:18'),(9002,333,2,9338,'10.99','2005-07-30 18:03:13','2006-02-15 22:16:18'),(9003,333,2,10035,'4.99','2005-07-31 18:46:46','2006-02-15 22:16:18'),(9004,333,1,10062,'2.99','2005-07-31 19:24:55','2006-02-15 22:16:18'),(9005,333,2,10844,'4.99','2005-08-01 23:46:58','2006-02-15 22:16:18'),(9006,333,1,12427,'6.99','2005-08-18 10:24:17','2006-02-15 22:16:18'),(9007,333,2,12661,'0.99','2005-08-18 19:10:10','2006-02-15 22:16:18'),(9008,333,1,13579,'3.99','2005-08-20 05:22:06','2006-02-15 22:16:18'),(9009,333,2,13710,'4.99','2005-08-20 09:35:20','2006-02-15 22:16:18'),(9010,333,1,14057,'4.99','2005-08-20 22:22:59','2006-02-15 22:16:18'),(9011,333,1,14740,'2.99','2005-08-21 22:35:33','2006-02-15 22:16:18'),(9012,333,2,15253,'2.99','2005-08-22 18:05:21','2006-02-15 22:16:18'),(9013,333,1,15313,'4.99','2005-08-22 19:59:42','2006-02-15 22:16:18'),(9014,334,1,13,'6.99','2005-05-25 00:22:55','2006-02-15 22:16:18'),(9015,334,1,431,'8.99','2005-05-27 16:31:05','2006-02-15 22:16:18'),(9016,334,2,1187,'4.99','2005-06-15 00:58:50','2006-02-15 22:16:18'),(9017,334,1,1298,'4.99','2005-06-15 09:32:53','2006-02-15 22:16:19'),(9018,334,2,2476,'0.99','2005-06-18 20:57:12','2006-02-15 22:16:19'),(9019,334,1,3662,'4.99','2005-07-06 08:11:48','2006-02-15 22:16:19'),(9020,334,1,4603,'6.99','2005-07-08 06:57:07','2006-02-15 22:16:19'),(9021,334,2,5014,'4.99','2005-07-09 01:51:49','2006-02-15 22:16:19'),(9022,334,2,5434,'0.99','2005-07-09 21:25:20','2006-02-15 22:16:19'),(9023,334,2,5818,'5.99','2005-07-10 15:51:12','2006-02-15 22:16:19'),(9024,334,1,5845,'4.99','2005-07-10 17:23:14','2006-02-15 22:16:19'),(9025,334,2,6641,'5.99','2005-07-12 10:33:14','2006-02-15 22:16:19'),(9026,334,2,6749,'4.99','2005-07-12 14:43:05','2006-02-15 22:16:19'),(9027,334,1,6987,'2.99','2005-07-27 00:59:50','2006-02-15 22:16:19'),(9028,334,1,8977,'7.99','2005-07-30 04:14:07','2006-02-15 22:16:19'),(9029,334,1,9633,'2.99','2005-07-31 05:04:08','2006-02-15 22:16:19'),(9030,334,1,10207,'3.99','2005-08-01 00:53:01','2006-02-15 22:16:19'),(9031,334,1,10408,'4.99','2005-08-01 07:42:10','2006-02-15 22:16:19'),(9032,334,1,10492,'2.99','2005-08-01 10:42:28','2006-02-15 22:16:19'),(9033,334,1,10879,'1.99','2005-08-02 00:33:20','2006-02-15 22:16:19'),(9034,334,2,10997,'7.99','2005-08-02 04:49:02','2006-02-15 22:16:19'),(9035,334,2,12677,'4.99','2005-08-18 19:36:05','2006-02-15 22:16:19'),(9036,334,2,13325,'4.99','2005-08-19 19:52:02','2006-02-15 22:16:19'),(9037,334,1,13876,'2.99','2005-08-20 15:15:28','2006-02-15 22:16:19'),(9038,334,1,14645,'0.99','2005-08-21 19:12:47','2006-02-15 22:16:19'),(9039,334,1,14984,'7.99','2005-08-22 07:35:31','2006-02-15 22:16:19'),(9040,334,2,15548,'0.99','2005-08-23 04:26:20','2006-02-15 22:16:20'),(9041,334,2,15656,'4.99','2005-08-23 08:38:58','2006-02-15 22:16:20'),(9042,334,1,15669,'3.99','2005-08-23 09:06:17','2006-02-15 22:16:20'),(9043,334,1,14219,'0.99','2006-02-14 15:16:03','2006-02-15 22:16:20'),(9044,335,1,3329,'4.99','2005-06-21 09:20:31','2006-02-15 22:16:20'),(9045,335,1,3607,'0.99','2005-07-06 05:30:09','2006-02-15 22:16:20'),(9046,335,2,4016,'0.99','2005-07-07 01:05:50','2006-02-15 22:16:20'),(9047,335,2,4032,'2.99','2005-07-07 02:34:13','2006-02-15 22:16:20'),(9048,335,1,4279,'4.99','2005-07-07 15:01:53','2006-02-15 22:16:20'),(9049,335,1,4387,'8.99','2005-07-07 20:56:47','2006-02-15 22:16:20'),(9050,335,1,5024,'4.99','2005-07-09 02:25:12','2006-02-15 22:16:20'),(9051,335,1,5252,'0.99','2005-07-09 13:40:44','2006-02-15 22:16:20'),(9052,335,2,5728,'2.99','2005-07-10 11:26:14','2006-02-15 22:16:20'),(9053,335,1,6624,'7.99','2005-07-12 09:05:50','2006-02-15 22:16:20'),(9054,335,1,6906,'0.99','2005-07-12 22:03:02','2006-02-15 22:16:20'),(9055,335,2,8634,'3.99','2005-07-29 14:19:57','2006-02-15 22:16:20'),(9056,335,1,8855,'2.99','2005-07-29 23:40:10','2006-02-15 22:16:20'),(9057,335,1,9125,'5.99','2005-07-30 09:43:39','2006-02-15 22:16:20'),(9058,335,2,9361,'4.99','2005-07-30 18:43:49','2006-02-15 22:16:20'),(9059,335,1,9428,'0.99','2005-07-30 21:18:37','2006-02-15 22:16:20'),(9060,335,2,10606,'4.99','2005-08-01 14:39:15','2006-02-15 22:16:21'),(9061,335,2,13267,'0.99','2005-08-19 17:31:36','2006-02-15 22:16:21'),(9062,335,1,13622,'1.99','2005-08-20 06:45:32','2006-02-15 22:16:21'),(9063,335,1,14014,'2.99','2005-08-20 20:47:09','2006-02-15 22:16:21'),(9064,335,2,15005,'4.99','2005-08-22 08:15:44','2006-02-15 22:16:21'),(9065,335,2,15101,'0.99','2005-08-22 11:56:02','2006-02-15 22:16:21'),(9066,335,2,11541,'0.99','2006-02-14 15:16:03','2006-02-15 22:16:21'),(9067,336,1,1478,'2.99','2005-06-15 21:12:13','2006-02-15 22:16:21'),(9068,336,2,2212,'2.99','2005-06-18 02:36:10','2006-02-15 22:16:21'),(9069,336,2,2475,'2.99','2005-06-18 20:52:46','2006-02-15 22:16:21'),(9070,336,1,2575,'2.99','2005-06-19 04:32:52','2006-02-15 22:16:21'),(9071,336,2,2719,'4.99','2005-06-19 14:50:19','2006-02-15 22:16:21'),(9072,336,1,2954,'2.99','2005-06-20 06:45:00','2006-02-15 22:16:21'),(9073,336,2,3204,'4.99','2005-06-21 00:37:50','2006-02-15 22:16:21'),(9074,336,2,3349,'0.99','2005-06-21 11:17:35','2006-02-15 22:16:21'),(9075,336,2,4323,'5.99','2005-07-07 17:55:53','2006-02-15 22:16:21'),(9076,336,1,4595,'2.99','2005-07-08 06:40:25','2006-02-15 22:16:21'),(9077,336,2,5649,'2.99','2005-07-10 07:15:07','2006-02-15 22:16:21'),(9078,336,2,5667,'0.99','2005-07-10 08:11:03','2006-02-15 22:16:21'),(9079,336,2,6263,'4.99','2005-07-11 15:33:50','2006-02-15 22:16:22'),(9080,336,2,6382,'6.99','2005-07-11 21:58:53','2006-02-15 22:16:22'),(9081,336,2,8275,'4.99','2005-07-29 01:35:47','2006-02-15 22:16:22'),(9082,336,1,8407,'6.99','2005-07-29 06:37:02','2006-02-15 22:16:22'),(9083,336,2,8607,'4.99','2005-07-29 13:18:00','2006-02-15 22:16:22'),(9084,336,2,8951,'8.99','2005-07-30 03:18:24','2006-02-15 22:16:22'),(9085,336,2,9306,'0.99','2005-07-30 16:47:17','2006-02-15 22:16:22'),(9086,336,1,10055,'0.99','2005-07-31 19:15:58','2006-02-15 22:16:22'),(9087,336,2,11743,'2.99','2005-08-17 08:49:05','2006-02-15 22:16:22'),(9088,336,1,12323,'8.99','2005-08-18 06:36:22','2006-02-15 22:16:22'),(9089,336,2,12794,'0.99','2005-08-19 00:20:37','2006-02-15 22:16:22'),(9090,336,2,12926,'3.99','2005-08-19 05:00:16','2006-02-15 22:16:22'),(9091,336,2,13066,'0.99','2005-08-19 09:50:39','2006-02-15 22:16:22'),(9092,336,2,13689,'4.99','2005-08-20 09:04:30','2006-02-15 22:16:22'),(9093,336,1,14295,'2.99','2005-08-21 07:09:27','2006-02-15 22:16:22'),(9094,336,1,15073,'10.99','2005-08-22 11:01:15','2006-02-15 22:16:22'),(9095,336,2,15848,'2.99','2005-08-23 15:41:12','2006-02-15 22:16:22'),(9096,336,1,13022,'0.99','2006-02-14 15:16:03','2006-02-15 22:16:22'),(9097,337,1,374,'6.99','2005-05-27 08:26:30','2006-02-15 22:16:23'),(9098,337,1,572,'4.99','2005-05-28 10:30:13','2006-02-15 22:16:23'),(9099,337,1,839,'8.99','2005-05-30 00:28:12','2006-02-15 22:16:23'),(9100,337,2,1969,'4.99','2005-06-17 09:22:22','2006-02-15 22:16:23'),(9101,337,1,2014,'5.99','2005-06-17 12:03:28','2006-02-15 22:16:23'),(9102,337,1,3626,'5.99','2005-07-06 06:15:35','2006-02-15 22:16:23'),(9103,337,1,4091,'6.99','2005-07-07 05:53:38','2006-02-15 22:16:23'),(9104,337,2,4093,'4.99','2005-07-07 05:54:50','2006-02-15 22:16:23'),(9105,337,2,4855,'4.99','2005-07-08 18:45:50','2006-02-15 22:16:23'),(9106,337,1,5050,'2.99','2005-07-09 03:54:38','2006-02-15 22:16:23'),(9107,337,1,6212,'0.99','2005-07-11 12:40:48','2006-02-15 22:16:23'),(9108,337,2,6305,'7.99','2005-07-11 18:02:25','2006-02-15 22:16:23'),(9109,337,1,6620,'2.99','2005-07-12 08:51:03','2006-02-15 22:16:23'),(9110,337,1,7410,'4.99','2005-07-27 16:41:59','2006-02-15 22:16:23'),(9111,337,1,8516,'4.99','2005-07-29 10:00:03','2006-02-15 22:16:23'),(9112,337,2,8919,'8.99','2005-07-30 01:57:03','2006-02-15 22:16:24'),(9113,337,2,9051,'5.99','2005-07-30 07:05:54','2006-02-15 22:16:24'),(9114,337,1,10664,'0.99','2005-08-01 16:51:15','2006-02-15 22:16:24'),(9115,337,2,10765,'0.99','2005-08-01 20:34:51','2006-02-15 22:16:24'),(9116,337,2,11252,'2.99','2005-08-02 13:42:13','2006-02-15 22:16:24'),(9117,337,1,11734,'3.99','2005-08-17 08:34:22','2006-02-15 22:16:24'),(9118,337,1,12369,'6.99','2005-08-18 07:57:43','2006-02-15 22:16:24'),(9119,337,2,13305,'6.99','2005-08-19 18:57:05','2006-02-15 22:16:24'),(9120,337,1,13678,'4.99','2005-08-20 08:38:24','2006-02-15 22:16:24'),(9121,337,2,13892,'3.99','2005-08-20 15:50:17','2006-02-15 22:16:24'),(9122,337,2,14118,'5.99','2005-08-21 01:13:37','2006-02-15 22:16:24'),(9123,337,2,15241,'4.99','2005-08-22 17:47:40','2006-02-15 22:16:24'),(9124,337,1,15292,'4.99','2005-08-22 19:28:56','2006-02-15 22:16:24'),(9125,337,2,11847,'0.99','2006-02-14 15:16:03','2006-02-15 22:16:24'),(9126,338,1,675,'0.99','2005-05-28 22:22:44','2006-02-15 22:16:24'),(9127,338,2,1510,'4.99','2005-06-15 22:39:34','2006-02-15 22:16:24'),(9128,338,1,1807,'5.99','2005-06-16 20:58:59','2006-02-15 22:16:24'),(9129,338,2,1952,'4.99','2005-06-17 08:33:02','2006-02-15 22:16:24'),(9130,338,1,2148,'6.99','2005-06-17 22:44:35','2006-02-15 22:16:24'),(9131,338,1,2179,'0.99','2005-06-18 00:41:36','2006-02-15 22:16:24'),(9132,338,1,2495,'4.99','2005-06-18 22:15:42','2006-02-15 22:16:24'),(9133,338,1,3458,'5.99','2005-06-21 21:42:49','2006-02-15 22:16:25'),(9134,338,1,3516,'0.99','2005-07-06 00:50:30','2006-02-15 22:16:25'),(9135,338,2,3772,'2.99','2005-07-06 13:22:53','2006-02-15 22:16:25'),(9136,338,2,4104,'5.99','2005-07-07 06:25:41','2006-02-15 22:16:25'),(9137,338,2,4779,'4.99','2005-07-08 15:53:41','2006-02-15 22:16:25'),(9138,338,1,5309,'4.99','2005-07-09 16:00:16','2006-02-15 22:16:25'),(9139,338,1,6236,'2.99','2005-07-11 14:18:17','2006-02-15 22:16:25'),(9140,338,1,6360,'4.99','2005-07-11 21:07:40','2006-02-15 22:16:25'),(9141,338,2,7584,'3.99','2005-07-27 23:15:46','2006-02-15 22:16:25'),(9142,338,1,8766,'0.99','2005-07-29 19:41:04','2006-02-15 22:16:25'),(9143,338,1,9485,'7.99','2005-07-30 23:32:40','2006-02-15 22:16:25'),(9144,338,2,10791,'2.99','2005-08-01 21:41:52','2006-02-15 22:16:25'),(9145,338,1,10897,'0.99','2005-08-02 01:23:42','2006-02-15 22:16:25'),(9146,338,2,11064,'4.99','2005-08-02 06:55:17','2006-02-15 22:16:25'),(9147,338,2,11671,'4.99','2005-08-17 05:50:21','2006-02-15 22:16:25'),(9148,338,2,11719,'5.99','2005-08-17 07:46:05','2006-02-15 22:16:25'),(9149,338,1,12167,'2.99','2005-08-18 01:00:02','2006-02-15 22:16:25'),(9150,338,1,13284,'3.99','2005-08-19 18:12:31','2006-02-15 22:16:25'),(9151,338,1,14619,'2.99','2005-08-21 18:10:03','2006-02-15 22:16:26'),(9152,338,2,15105,'0.99','2005-08-22 12:01:33','2006-02-15 22:16:26'),(9153,338,2,15173,'6.99','2005-08-22 15:26:29','2006-02-15 22:16:26'),(9154,339,1,876,'5.99','2005-05-30 05:41:22','2006-02-15 22:16:26'),(9155,339,2,1432,'3.99','2005-06-15 18:27:24','2006-02-15 22:16:26'),(9156,339,1,1536,'4.99','2005-06-16 00:52:22','2006-02-15 22:16:26'),(9157,339,2,1629,'4.99','2005-06-16 07:53:47','2006-02-15 22:16:26'),(9158,339,1,3146,'6.99','2005-06-20 20:21:48','2006-02-15 22:16:26'),(9159,339,1,3335,'4.99','2005-06-21 10:09:08','2006-02-15 22:16:26'),(9160,339,2,3536,'2.99','2005-07-06 01:36:11','2006-02-15 22:16:26'),(9161,339,1,4243,'4.99','2005-07-07 13:39:58','2006-02-15 22:16:26'),(9162,339,1,4467,'0.99','2005-07-08 00:13:52','2006-02-15 22:16:26'),(9163,339,2,4967,'3.99','2005-07-08 23:48:03','2006-02-15 22:16:26'),(9164,339,1,5720,'3.99','2005-07-10 11:09:12','2006-02-15 22:16:26'),(9165,339,1,6072,'6.99','2005-07-11 04:52:40','2006-02-15 22:16:26'),(9166,339,1,6425,'0.99','2005-07-11 23:54:52','2006-02-15 22:16:26'),(9167,339,2,6682,'7.99','2005-07-12 12:12:43','2006-02-15 22:16:26'),(9168,339,2,7244,'2.99','2005-07-27 10:27:33','2006-02-15 22:16:26'),(9169,339,2,7973,'4.99','2005-07-28 14:10:06','2006-02-15 22:16:27'),(9170,339,1,8968,'0.99','2005-07-30 03:57:32','2006-02-15 22:16:27'),(9171,339,2,9208,'5.99','2005-07-30 12:54:03','2006-02-15 22:16:27'),(9172,339,1,9663,'4.99','2005-07-31 06:10:48','2006-02-15 22:16:27'),(9173,339,2,10338,'3.99','2005-08-01 05:03:03','2006-02-15 22:16:27'),(9174,339,2,11171,'4.99','2005-08-02 10:23:41','2006-02-15 22:16:27'),(9175,339,1,11550,'2.99','2005-08-17 01:02:06','2006-02-15 22:16:27'),(9176,339,2,11582,'3.99','2005-08-17 02:03:49','2006-02-15 22:16:27'),(9177,339,2,11699,'5.99','2005-08-17 07:11:58','2006-02-15 22:16:27'),(9178,339,1,12631,'0.99','2005-08-18 17:52:51','2006-02-15 22:16:27'),(9179,339,1,13199,'3.99','2005-08-19 14:53:22','2006-02-15 22:16:27'),(9180,339,1,13575,'5.99','2005-08-20 05:15:20','2006-02-15 22:16:27'),(9181,339,1,13985,'0.99','2005-08-20 19:13:06','2006-02-15 22:16:27'),(9182,339,1,14636,'4.99','2005-08-21 18:59:17','2006-02-15 22:16:27'),(9183,339,2,14758,'3.99','2005-08-21 23:24:52','2006-02-15 22:16:27'),(9184,340,2,1205,'4.99','2005-06-15 02:25:56','2006-02-15 22:16:27'),(9185,340,1,1697,'3.99','2005-06-16 12:55:20','2006-02-15 22:16:27'),(9186,340,1,2177,'5.99','2005-06-18 00:34:45','2006-02-15 22:16:27'),(9187,340,2,2183,'4.99','2005-06-18 01:06:01','2006-02-15 22:16:28'),(9188,340,2,2607,'5.99','2005-06-19 06:55:01','2006-02-15 22:16:28'),(9189,340,1,2653,'5.99','2005-06-19 10:36:53','2006-02-15 22:16:28'),(9190,340,1,3264,'0.99','2005-06-21 04:19:03','2006-02-15 22:16:28'),(9191,340,1,3455,'2.99','2005-06-21 21:17:51','2006-02-15 22:16:28'),(9192,340,2,4475,'2.99','2005-07-08 00:27:30','2006-02-15 22:16:28'),(9193,340,1,4742,'0.99','2005-07-08 13:35:23','2006-02-15 22:16:28'),(9194,340,2,6381,'4.99','2005-07-11 21:58:48','2006-02-15 22:16:28'),(9195,340,2,7617,'2.99','2005-07-28 00:18:40','2006-02-15 22:16:28'),(9196,340,2,8274,'4.99','2005-07-29 01:34:32','2006-02-15 22:16:28'),(9197,340,1,8541,'0.99','2005-07-29 10:55:01','2006-02-15 22:16:28'),(9198,340,2,8551,'4.99','2005-07-29 11:13:11','2006-02-15 22:16:28'),(9199,340,1,8606,'4.99','2005-07-29 13:14:24','2006-02-15 22:16:28'),(9200,340,1,9834,'2.99','2005-07-31 12:05:42','2006-02-15 22:16:28'),(9201,340,1,10292,'2.99','2005-08-01 03:42:40','2006-02-15 22:16:28'),(9202,340,1,10667,'8.99','2005-08-01 16:58:22','2006-02-15 22:16:28'),(9203,340,2,10674,'3.99','2005-08-01 17:11:52','2006-02-15 22:16:28'),(9204,340,1,10809,'0.99','2005-08-01 22:39:27','2006-02-15 22:16:28'),(9205,340,1,10995,'0.99','2005-08-02 04:48:00','2006-02-15 22:16:28'),(9206,340,2,12598,'4.99','2005-08-18 16:34:03','2006-02-15 22:16:29'),(9207,340,2,12908,'1.99','2005-08-19 04:19:05','2006-02-15 22:16:29'),(9208,340,2,12940,'2.99','2005-08-19 05:38:29','2006-02-15 22:16:29'),(9209,340,1,13425,'2.99','2005-08-19 23:11:44','2006-02-15 22:16:29'),(9210,340,1,14457,'4.99','2005-08-21 12:47:38','2006-02-15 22:16:29'),(9211,340,2,14718,'0.99','2005-08-21 21:39:25','2006-02-15 22:16:29'),(9212,340,1,14895,'2.99','2005-08-22 04:19:23','2006-02-15 22:16:29'),(9213,340,2,15306,'2.99','2005-08-22 19:46:36','2006-02-15 22:16:29'),(9214,340,1,15378,'9.99','2005-08-22 22:25:17','2006-02-15 22:16:29'),(9215,341,1,1318,'2.99','2005-06-15 10:34:26','2006-02-15 22:16:29'),(9216,341,2,1520,'7.99','2005-06-15 23:57:20','2006-02-15 22:16:29'),(9217,341,1,1778,'1.99','2005-06-16 18:54:48','2006-02-15 22:16:29'),(9218,341,1,1849,'7.99','2005-06-17 00:13:19','2006-02-15 22:16:29'),(9219,341,2,2829,'2.99','2005-06-19 21:11:30','2006-02-15 22:16:29'),(9220,341,2,3130,'7.99','2005-06-20 19:03:22','2006-02-15 22:16:29'),(9221,341,1,3382,'5.99','2005-06-21 14:05:23','2006-02-15 22:16:29'),(9222,341,2,3938,'4.99','2005-07-06 21:15:45','2006-02-15 22:16:29'),(9223,341,1,4624,'2.99','2005-07-08 08:12:17','2006-02-15 22:16:29'),(9224,341,2,5487,'4.99','2005-07-10 00:01:50','2006-02-15 22:16:30'),(9225,341,2,5931,'0.99','2005-07-10 22:04:19','2006-02-15 22:16:30'),(9226,341,2,7473,'2.99','2005-07-27 19:05:40','2006-02-15 22:16:30'),(9227,341,1,8661,'2.99','2005-07-29 15:28:24','2006-02-15 22:16:30'),(9228,341,1,8728,'9.99','2005-07-29 18:12:49','2006-02-15 22:16:30'),(9229,341,2,10605,'0.99','2005-08-01 14:36:26','2006-02-15 22:16:30'),(9230,341,1,11305,'6.99','2005-08-02 15:44:55','2006-02-15 22:16:30'),(9231,341,1,11723,'2.99','2005-08-17 07:56:22','2006-02-15 22:16:30'),(9232,341,2,13059,'0.99','2005-08-19 09:42:01','2006-02-15 22:16:30'),(9233,341,2,13074,'8.99','2005-08-19 10:06:53','2006-02-15 22:16:30'),(9234,341,2,13806,'4.99','2005-08-20 12:53:46','2006-02-15 22:16:30'),(9235,341,2,14344,'4.99','2005-08-21 08:40:56','2006-02-15 22:16:30'),(9236,341,2,15030,'0.99','2005-08-22 09:10:21','2006-02-15 22:16:30'),(9237,341,2,15938,'6.99','2005-08-23 18:43:31','2006-02-15 22:16:30'),(9238,342,2,2190,'5.99','2005-06-18 01:29:51','2006-02-15 22:16:30'),(9239,342,1,2914,'5.99','2005-06-20 03:43:18','2006-02-15 22:16:30'),(9240,342,1,3081,'2.99','2005-06-20 15:29:13','2006-02-15 22:16:30'),(9241,342,1,5617,'0.99','2005-07-10 05:28:50','2006-02-15 22:16:30'),(9242,342,2,6060,'4.99','2005-07-11 04:06:17','2006-02-15 22:16:31'),(9243,342,2,6429,'8.99','2005-07-12 00:02:50','2006-02-15 22:16:31'),(9244,342,1,6736,'2.99','2005-07-12 14:16:50','2006-02-15 22:16:31'),(9245,342,2,6787,'7.99','2005-07-12 16:33:28','2006-02-15 22:16:31'),(9246,342,2,6997,'0.99','2005-07-27 01:14:02','2006-02-15 22:16:31'),(9247,342,2,7280,'2.99','2005-07-27 11:50:52','2006-02-15 22:16:31'),(9248,342,1,9164,'2.99','2005-07-30 11:24:14','2006-02-15 22:16:31'),(9249,342,1,9526,'0.99','2005-07-31 01:02:22','2006-02-15 22:16:31'),(9250,342,2,9948,'5.99','2005-07-31 15:49:41','2006-02-15 22:16:31'),(9251,342,1,9955,'0.99','2005-07-31 16:01:26','2006-02-15 22:16:32'),(9252,342,2,9956,'4.99','2005-07-31 16:03:47','2006-02-15 22:16:32'),(9253,342,1,10242,'4.99','2005-08-01 02:18:12','2006-02-15 22:16:32'),(9254,342,2,11178,'2.99','2005-08-02 10:48:10','2006-02-15 22:16:32'),(9255,342,2,11446,'0.99','2005-08-02 20:33:37','2006-02-15 22:16:32'),(9256,342,1,11568,'0.99','2005-08-17 01:30:01','2006-02-15 22:16:32'),(9257,342,1,12139,'6.99','2005-08-17 23:57:13','2006-02-15 22:16:32'),(9258,342,1,12404,'4.99','2005-08-18 09:36:34','2006-02-15 22:16:32'),(9259,342,1,12522,'2.99','2005-08-18 13:45:40','2006-02-15 22:16:32'),(9260,342,2,12816,'4.99','2005-08-19 01:04:05','2006-02-15 22:16:32'),(9261,342,2,13368,'4.99','2005-08-19 21:19:35','2006-02-15 22:16:32'),(9262,342,2,13637,'4.99','2005-08-20 07:21:15','2006-02-15 22:16:32'),(9263,342,1,13755,'2.99','2005-08-20 11:18:53','2006-02-15 22:16:32'),(9264,342,2,13827,'4.99','2005-08-20 13:47:19','2006-02-15 22:16:32'),(9265,342,2,14096,'2.99','2005-08-21 00:27:46','2006-02-15 22:16:32'),(9266,342,2,14299,'0.99','2005-08-21 07:18:57','2006-02-15 22:16:32'),(9267,342,2,14683,'8.99','2005-08-21 20:27:44','2006-02-15 22:16:32'),(9268,342,1,15484,'4.99','2005-08-23 02:04:49','2006-02-15 22:16:32'),(9269,342,1,15895,'3.99','2005-08-23 17:09:31','2006-02-15 22:16:32'),(9270,343,2,102,'3.99','2005-05-25 17:22:10','2006-02-15 22:16:32'),(9271,343,1,455,'3.99','2005-05-27 19:43:29','2006-02-15 22:16:32'),(9272,343,2,1547,'4.99','2005-06-16 01:42:24','2006-02-15 22:16:33'),(9273,343,1,1564,'6.99','2005-06-16 02:47:07','2006-02-15 22:16:33'),(9274,343,2,1879,'0.99','2005-06-17 02:57:34','2006-02-15 22:16:33'),(9275,343,2,1922,'0.99','2005-06-17 06:04:25','2006-02-15 22:16:33'),(9276,343,2,2461,'6.99','2005-06-18 19:58:12','2006-02-15 22:16:33'),(9277,343,1,2980,'8.99','2005-06-20 08:35:03','2006-02-15 22:16:33'),(9278,343,1,3407,'0.99','2005-06-21 16:14:02','2006-02-15 22:16:33'),(9279,343,1,3978,'5.99','2005-07-06 23:04:33','2006-02-15 22:16:33'),(9280,343,1,4472,'7.99','2005-07-08 00:22:06','2006-02-15 22:16:33'),(9281,343,2,5097,'4.99','2005-07-09 06:09:51','2006-02-15 22:16:33'),(9282,343,1,5337,'3.99','2005-07-09 17:03:50','2006-02-15 22:16:33'),(9283,343,1,7069,'6.99','2005-07-27 03:59:35','2006-02-15 22:16:33'),(9284,343,2,8012,'5.99','2005-07-28 15:29:00','2006-02-15 22:16:33'),(9285,343,2,8088,'9.99','2005-07-28 18:23:49','2006-02-15 22:16:33'),(9286,343,2,9458,'5.99','2005-07-30 22:24:34','2006-02-15 22:16:33'),(9287,343,2,9739,'2.99','2005-07-31 09:08:03','2006-02-15 22:16:33'),(9288,343,1,10822,'0.99','2005-08-01 22:54:28','2006-02-15 22:16:33'),(9289,343,1,11212,'0.99','2005-08-02 12:18:29','2006-02-15 22:16:33'),(9290,343,2,11570,'2.99','2005-08-17 01:34:32','2006-02-15 22:16:33'),(9291,343,2,13279,'4.99','2005-08-19 18:02:18','2006-02-15 22:16:33'),(9292,343,2,13522,'3.99','2005-08-20 02:44:06','2006-02-15 22:16:33'),(9293,343,2,13866,'0.99','2005-08-20 15:05:29','2006-02-15 22:16:33'),(9294,343,2,15973,'5.99','2005-08-23 20:04:41','2006-02-15 22:16:34'),(9295,344,2,157,'2.99','2005-05-26 01:25:21','2006-02-15 22:16:34'),(9296,344,2,813,'5.99','2005-05-29 20:14:34','2006-02-15 22:16:34'),(9297,344,1,1341,'3.99','2005-06-15 12:26:18','2006-02-15 22:16:34'),(9298,344,2,1475,'4.99','2005-06-15 21:08:01','2006-02-15 22:16:34'),(9299,344,1,1731,'0.99','2005-06-16 15:32:12','2006-02-15 22:16:34'),(9300,344,2,4028,'5.99','2005-07-07 02:19:14','2006-02-15 22:16:34'),(9301,344,2,4347,'3.99','2005-07-07 18:58:57','2006-02-15 22:16:34'),(9302,344,2,6363,'5.99','2005-07-11 21:13:19','2006-02-15 22:16:34'),(9303,344,2,7480,'4.99','2005-07-27 19:19:53','2006-02-15 22:16:34'),(9304,344,2,8561,'2.99','2005-07-29 11:29:12','2006-02-15 22:16:34'),(9305,344,2,9788,'4.99','2005-07-31 10:28:21','2006-02-15 22:16:34'),(9306,344,2,11116,'5.99','2005-08-02 08:34:40','2006-02-15 22:16:34'),(9307,344,2,12183,'5.99','2005-08-18 01:34:13','2006-02-15 22:16:34'),(9308,344,2,13014,'4.99','2005-08-19 07:56:08','2006-02-15 22:16:34'),(9309,344,1,13033,'3.99','2005-08-19 08:34:39','2006-02-15 22:16:34'),(9310,344,1,14621,'0.99','2005-08-21 18:17:59','2006-02-15 22:16:34'),(9311,344,2,14624,'0.99','2005-08-21 18:32:42','2006-02-15 22:16:34'),(9312,344,1,15215,'2.99','2005-08-22 16:55:26','2006-02-15 22:16:34'),(9313,345,1,206,'0.99','2005-05-26 08:01:54','2006-02-15 22:16:34'),(9314,345,1,363,'0.99','2005-05-27 07:14:00','2006-02-15 22:16:34'),(9315,345,2,1210,'0.99','2005-06-15 02:57:51','2006-02-15 22:16:34'),(9316,345,1,1457,'4.99','2005-06-15 20:05:49','2006-02-15 22:16:34'),(9317,345,2,1550,'0.99','2005-06-16 01:58:35','2006-02-15 22:16:35'),(9318,345,2,2766,'4.99','2005-06-19 17:45:15','2006-02-15 22:16:35'),(9319,345,2,4422,'2.99','2005-07-07 22:09:45','2006-02-15 22:16:35'),(9320,345,1,4425,'2.99','2005-07-07 22:22:44','2006-02-15 22:16:35'),(9321,345,2,4450,'4.99','2005-07-07 23:20:05','2006-02-15 22:16:35'),(9322,345,2,5508,'3.99','2005-07-10 00:50:01','2006-02-15 22:16:35'),(9323,345,1,6307,'7.99','2005-07-11 18:04:29','2006-02-15 22:16:35'),(9324,345,1,7092,'6.99','2005-07-27 04:46:00','2006-02-15 22:16:35'),(9325,345,2,8129,'2.99','2005-07-28 19:47:02','2006-02-15 22:16:35'),(9326,345,2,8694,'8.99','2005-07-29 16:44:48','2006-02-15 22:16:35'),(9327,345,1,9163,'4.99','2005-07-30 11:23:22','2006-02-15 22:16:35'),(9328,345,2,9207,'2.99','2005-07-30 12:49:57','2006-02-15 22:16:35'),(9329,345,2,10215,'8.99','2005-08-01 01:04:28','2006-02-15 22:16:35'),(9330,345,2,10982,'4.99','2005-08-02 04:19:11','2006-02-15 22:16:35'),(9331,345,1,11865,'2.99','2005-08-17 14:03:46','2006-02-15 22:16:35'),(9332,345,1,12485,'4.99','2005-08-18 12:41:41','2006-02-15 22:16:35'),(9333,345,2,12805,'4.99','2005-08-19 00:36:34','2006-02-15 22:16:35'),(9334,345,1,14702,'10.99','2005-08-21 21:00:03','2006-02-15 22:16:35'),(9335,345,1,15551,'4.99','2005-08-23 04:28:25','2006-02-15 22:16:35'),(9336,346,1,65,'4.99','2005-05-25 09:32:03','2006-02-15 22:16:35'),(9337,346,1,810,'4.99','2005-05-29 19:12:04','2006-02-15 22:16:35'),(9338,346,1,1994,'5.99','2005-06-17 11:07:06','2006-02-15 22:16:35'),(9339,346,2,3372,'2.99','2005-06-21 13:34:19','2006-02-15 22:16:36'),(9340,346,1,3421,'2.99','2005-06-21 17:22:58','2006-02-15 22:16:36'),(9341,346,2,4420,'4.99','2005-07-07 22:07:31','2006-02-15 22:16:36'),(9342,346,1,4958,'8.99','2005-07-08 23:19:52','2006-02-15 22:16:36'),(9343,346,1,5428,'4.99','2005-07-09 21:12:50','2006-02-15 22:16:36'),(9344,346,2,5557,'4.99','2005-07-10 03:10:21','2006-02-15 22:16:36'),(9345,346,2,6136,'4.99','2005-07-11 08:34:09','2006-02-15 22:16:36'),(9346,346,2,6323,'2.99','2005-07-11 19:02:19','2006-02-15 22:16:36'),(9347,346,2,6881,'8.99','2005-07-12 20:46:35','2006-02-15 22:16:36'),(9348,346,2,7943,'6.99','2005-07-28 12:50:55','2006-02-15 22:16:36'),(9349,346,2,8272,'5.99','2005-07-29 01:29:51','2006-02-15 22:16:36'),(9350,346,1,8505,'6.99','2005-07-29 09:22:52','2006-02-15 22:16:36'),(9351,346,2,8543,'0.99','2005-07-29 11:01:57','2006-02-15 22:16:36'),(9352,346,2,8732,'8.99','2005-07-29 18:25:03','2006-02-15 22:16:36'),(9353,346,2,9566,'4.99','2005-07-31 02:32:10','2006-02-15 22:16:36'),(9354,346,1,9848,'4.99','2005-07-31 12:44:33','2006-02-15 22:16:36'),(9355,346,1,9927,'2.99','2005-07-31 15:12:13','2006-02-15 22:16:36'),(9356,346,1,10304,'5.99','2005-08-01 04:14:12','2006-02-15 22:16:36'),(9357,346,2,10389,'3.99','2005-08-01 06:46:43','2006-02-15 22:16:36'),(9358,346,2,10521,'0.99','2005-08-01 11:46:17','2006-02-15 22:16:36'),(9359,346,2,11062,'4.99','2005-08-02 06:52:54','2006-02-15 22:16:36'),(9360,346,1,11375,'4.99','2005-08-02 18:14:56','2006-02-15 22:16:36'),(9361,346,2,11470,'2.99','2005-08-02 21:48:28','2006-02-15 22:16:37'),(9362,346,1,14890,'5.99','2005-08-22 04:10:49','2006-02-15 22:16:37'),(9363,346,2,15459,'2.99','2005-08-23 01:09:48','2006-02-15 22:16:37'),(9364,346,1,15535,'0.99','2005-08-23 03:58:02','2006-02-15 22:16:37'),(9365,346,1,15661,'8.99','2005-08-23 08:52:03','2006-02-15 22:16:37'),(9366,346,2,15825,'5.99','2005-08-23 15:10:42','2006-02-15 22:16:37'),(9367,346,1,15827,'0.99','2005-08-23 15:15:19','2006-02-15 22:16:37'),(9368,347,2,1711,'8.99','2005-06-16 14:11:52','2006-02-15 22:16:37'),(9369,347,2,2274,'0.99','2005-06-18 06:31:15','2006-02-15 22:16:37'),(9370,347,1,3026,'4.99','2005-06-20 11:48:00','2006-02-15 22:16:37'),(9371,347,1,3092,'8.99','2005-06-20 16:04:42','2006-02-15 22:16:37'),(9372,347,1,3326,'7.99','2005-06-21 09:04:50','2006-02-15 22:16:37'),(9373,347,2,3605,'0.99','2005-07-06 05:27:15','2006-02-15 22:16:37'),(9374,347,2,3666,'4.99','2005-07-06 08:27:43','2006-02-15 22:16:37'),(9375,347,1,4232,'5.99','2005-07-07 12:49:12','2006-02-15 22:16:37'),(9376,347,1,4523,'6.99','2005-07-08 03:06:59','2006-02-15 22:16:37'),(9377,347,2,5471,'0.99','2005-07-09 23:11:52','2006-02-15 22:16:37'),(9378,347,1,5819,'2.99','2005-07-10 15:56:20','2006-02-15 22:16:37'),(9379,347,2,6121,'1.99','2005-07-11 07:55:27','2006-02-15 22:16:37'),(9380,347,1,7811,'0.99','2005-07-28 08:06:01','2006-02-15 22:16:37'),(9381,347,2,8148,'4.99','2005-07-28 20:39:47','2006-02-15 22:16:37'),(9382,347,2,8153,'4.99','2005-07-28 20:55:49','2006-02-15 22:16:37'),(9383,347,2,8176,'4.99','2005-07-28 21:42:08','2006-02-15 22:16:37'),(9384,347,2,8378,'4.99','2005-07-29 05:28:35','2006-02-15 22:16:38'),(9385,347,2,8771,'2.99','2005-07-29 19:54:41','2006-02-15 22:16:38'),(9386,347,1,9013,'4.99','2005-07-30 05:19:20','2006-02-15 22:16:38'),(9387,347,1,9582,'4.99','2005-07-31 03:05:19','2006-02-15 22:16:38'),(9388,347,1,9856,'3.99','2005-07-31 13:00:35','2006-02-15 22:16:38'),(9389,347,1,9876,'2.99','2005-07-31 13:37:51','2006-02-15 22:16:38'),(9390,347,2,11738,'8.99','2005-08-17 08:45:55','2006-02-15 22:16:38'),(9391,347,1,12195,'2.99','2005-08-18 02:07:49','2006-02-15 22:16:38'),(9392,347,2,12399,'10.99','2005-08-18 09:13:42','2006-02-15 22:16:38'),(9393,347,2,13314,'5.99','2005-08-19 19:12:43','2006-02-15 22:16:38'),(9394,347,2,14894,'4.99','2005-08-22 04:16:56','2006-02-15 22:16:38'),(9395,347,2,14958,'2.99','2005-08-22 06:30:10','2006-02-15 22:16:38'),(9396,347,2,15426,'2.99','2005-08-23 00:07:19','2006-02-15 22:16:38'),(9397,347,2,15555,'4.99','2005-08-23 04:51:52','2006-02-15 22:16:38'),(9398,348,2,153,'0.99','2005-05-26 00:47:47','2006-02-15 22:16:38'),(9399,348,2,821,'0.99','2005-05-29 21:31:12','2006-02-15 22:16:38'),(9400,348,1,1654,'2.99','2005-06-16 09:42:48','2006-02-15 22:16:38'),(9401,348,1,2041,'8.99','2005-06-17 14:19:00','2006-02-15 22:16:38'),(9402,348,2,2499,'0.99','2005-06-18 23:01:36','2006-02-15 22:16:38'),(9403,348,2,3494,'4.99','2005-07-05 23:47:30','2006-02-15 22:16:38'),(9404,348,2,3610,'4.99','2005-07-06 05:36:59','2006-02-15 22:16:38'),(9405,348,2,4556,'9.99','2005-07-08 04:48:41','2006-02-15 22:16:38'),(9406,348,2,4633,'0.99','2005-07-08 08:39:39','2006-02-15 22:16:39'),(9407,348,1,4699,'0.99','2005-07-08 11:36:56','2006-02-15 22:16:39'),(9408,348,1,4807,'8.99','2005-07-08 17:01:48','2006-02-15 22:16:39'),(9409,348,1,5345,'4.99','2005-07-09 17:28:18','2006-02-15 22:16:39'),(9410,348,2,5965,'0.99','2005-07-10 23:51:52','2006-02-15 22:16:39'),(9411,348,2,6776,'2.99','2005-07-12 16:02:09','2006-02-15 22:16:39'),(9412,348,2,7380,'2.99','2005-07-27 15:37:01','2006-02-15 22:16:39'),(9413,348,1,7482,'6.99','2005-07-27 19:24:16','2006-02-15 22:16:39'),(9414,348,2,7825,'4.99','2005-07-28 08:34:57','2006-02-15 22:16:39'),(9415,348,1,8500,'2.99','2005-07-29 09:12:01','2006-02-15 22:16:39'),(9416,348,1,8569,'4.99','2005-07-29 11:39:17','2006-02-15 22:16:39'),(9417,348,2,8682,'4.99','2005-07-29 16:15:26','2006-02-15 22:16:39'),(9418,348,2,9482,'2.99','2005-07-30 23:29:16','2006-02-15 22:16:39'),(9419,348,1,10769,'2.99','2005-08-01 20:43:02','2006-02-15 22:16:39'),(9420,348,2,10972,'2.99','2005-08-02 04:08:25','2006-02-15 22:16:39'),(9421,348,1,11262,'2.99','2005-08-02 13:58:55','2006-02-15 22:16:39'),(9422,348,1,11429,'7.99','2005-08-02 20:03:52','2006-02-15 22:16:39'),(9423,348,2,12564,'2.99','2005-08-18 15:11:35','2006-02-15 22:16:39'),(9424,348,2,12884,'5.99','2005-08-19 03:34:04','2006-02-15 22:16:39'),(9425,348,2,12937,'4.99','2005-08-19 05:25:30','2006-02-15 22:16:39'),(9426,348,2,13238,'2.99','2005-08-19 16:20:56','2006-02-15 22:16:39'),(9427,348,2,13602,'5.99','2005-08-20 06:02:02','2006-02-15 22:16:39'),(9428,348,2,13684,'0.99','2005-08-20 08:55:53','2006-02-15 22:16:40'),(9429,348,1,13962,'1.99','2005-08-20 18:18:06','2006-02-15 22:16:40'),(9430,348,2,14079,'3.99','2005-08-20 23:29:25','2006-02-15 22:16:40'),(9431,348,2,14937,'7.99','2005-08-22 05:51:59','2006-02-15 22:16:40'),(9432,348,2,15817,'0.99','2005-08-23 14:59:51','2006-02-15 22:16:40'),(9433,348,1,15944,'4.99','2005-08-23 18:50:54','2006-02-15 22:16:40'),(9434,349,1,890,'4.99','2005-05-30 07:43:04','2006-02-15 22:16:40'),(9435,349,1,1197,'2.99','2005-06-15 01:42:46','2006-02-15 22:16:40'),(9436,349,1,1523,'0.99','2005-06-16 00:18:40','2006-02-15 22:16:40'),(9437,349,2,2987,'6.99','2005-06-20 08:55:50','2006-02-15 22:16:40'),(9438,349,1,3067,'8.99','2005-06-20 13:59:21','2006-02-15 22:16:40'),(9439,349,2,3488,'3.99','2005-07-05 23:32:49','2006-02-15 22:16:40'),(9440,349,1,4190,'2.99','2005-07-07 10:52:39','2006-02-15 22:16:40'),(9441,349,2,4494,'5.99','2005-07-08 01:42:45','2006-02-15 22:16:40'),(9442,349,1,4881,'0.99','2005-07-08 19:40:34','2006-02-15 22:16:40'),(9443,349,1,5433,'4.99','2005-07-09 21:22:00','2006-02-15 22:16:40'),(9444,349,1,7002,'4.99','2005-07-27 01:26:14','2006-02-15 22:16:40'),(9445,349,1,7046,'4.99','2005-07-27 03:27:56','2006-02-15 22:16:40'),(9446,349,2,7702,'2.99','2005-07-28 03:56:05','2006-02-15 22:16:40'),(9447,349,2,8297,'4.99','2005-07-29 02:45:46','2006-02-15 22:16:40'),(9448,349,1,9262,'1.99','2005-07-30 14:45:02','2006-02-15 22:16:40'),(9449,349,1,9670,'5.99','2005-07-31 06:33:33','2006-02-15 22:16:40'),(9450,349,1,9731,'0.99','2005-07-31 08:54:47','2006-02-15 22:16:41'),(9451,349,1,10987,'4.99','2005-08-02 04:36:52','2006-02-15 22:16:41'),(9452,349,2,11192,'4.99','2005-08-02 11:29:41','2006-02-15 22:16:41'),(9453,349,2,11492,'8.99','2005-08-02 22:46:47','2006-02-15 22:16:41'),(9454,349,1,11905,'3.99','2005-08-17 15:40:18','2006-02-15 22:16:41'),(9455,349,1,13258,'4.99','2005-08-19 17:05:37','2006-02-15 22:16:41'),(9456,349,2,13636,'4.99','2005-08-20 07:20:09','2006-02-15 22:16:41'),(9457,349,2,14200,'6.99','2005-08-21 03:51:27','2006-02-15 22:16:41'),(9458,349,2,14721,'6.99','2005-08-21 21:50:51','2006-02-15 22:16:41'),(9459,349,2,14908,'4.99','2005-08-22 04:44:10','2006-02-15 22:16:41'),(9460,349,1,15833,'6.99','2005-08-23 15:22:15','2006-02-15 22:16:41'),(9461,349,1,15955,'5.99','2005-08-23 19:19:06','2006-02-15 22:16:41'),(9462,349,1,14915,'2.99','2006-02-14 15:16:03','2006-02-15 22:16:41'),(9463,350,1,24,'4.99','2005-05-25 02:53:02','2006-02-15 22:16:41'),(9464,350,1,802,'4.99','2005-05-29 17:38:59','2006-02-15 22:16:41'),(9465,350,2,2011,'3.99','2005-06-17 11:56:09','2006-02-15 22:16:41'),(9466,350,1,2619,'0.99','2005-06-19 08:03:12','2006-02-15 22:16:41'),(9467,350,1,3079,'2.99','2005-06-20 15:13:40','2006-02-15 22:16:41'),(9468,350,2,3206,'0.99','2005-06-21 00:39:39','2006-02-15 22:16:41'),(9469,350,1,3529,'0.99','2005-07-06 01:15:26','2006-02-15 22:16:41'),(9470,350,1,3893,'5.99','2005-07-06 18:59:31','2006-02-15 22:16:41'),(9471,350,1,4767,'2.99','2005-07-08 15:18:53','2006-02-15 22:16:41'),(9472,350,1,5240,'0.99','2005-07-09 13:14:48','2006-02-15 22:16:42'),(9473,350,1,5303,'2.99','2005-07-09 15:44:09','2006-02-15 22:16:42'),(9474,350,1,5786,'1.99','2005-07-10 14:06:44','2006-02-15 22:16:42'),(9475,350,2,6408,'3.99','2005-07-11 23:03:02','2006-02-15 22:16:42'),(9476,350,2,7416,'4.99','2005-07-27 16:55:25','2006-02-15 22:16:42'),(9477,350,2,11504,'0.99','2005-08-16 23:16:46','2006-02-15 22:16:42'),(9478,350,2,11595,'6.99','2005-08-17 02:53:14','2006-02-15 22:16:42'),(9479,350,2,11692,'6.99','2005-08-17 06:52:41','2006-02-15 22:16:42'),(9480,350,1,11800,'0.99','2005-08-17 11:29:52','2006-02-15 22:16:42'),(9481,350,2,12252,'6.99','2005-08-18 03:59:51','2006-02-15 22:16:42'),(9482,350,2,12445,'2.99','2005-08-18 10:56:20','2006-02-15 22:16:42'),(9483,350,2,13086,'0.99','2005-08-19 10:32:28','2006-02-15 22:16:42'),(9484,350,2,15789,'1.99','2005-08-23 13:56:40','2006-02-15 22:16:42'),(9485,350,1,15807,'0.99','2005-08-23 14:35:10','2006-02-15 22:16:42'),(9486,351,1,1137,'1.99','2005-05-31 19:20:14','2006-02-15 22:16:42'),(9487,351,2,1792,'5.99','2005-06-16 20:04:50','2006-02-15 22:16:42'),(9488,351,1,1869,'0.99','2005-06-17 02:08:00','2006-02-15 22:16:42'),(9489,351,1,2759,'2.99','2005-06-19 17:10:24','2006-02-15 22:16:42'),(9490,351,1,3836,'2.99','2005-07-06 16:26:04','2006-02-15 22:16:42'),(9491,351,1,4544,'0.99','2005-07-08 04:11:04','2006-02-15 22:16:42'),(9492,351,1,4756,'1.99','2005-07-08 14:24:00','2006-02-15 22:16:42'),(9493,351,2,4761,'5.99','2005-07-08 14:51:45','2006-02-15 22:16:42'),(9494,351,1,5280,'0.99','2005-07-09 14:55:07','2006-02-15 22:16:43'),(9495,351,1,5912,'3.99','2005-07-10 20:58:22','2006-02-15 22:16:43'),(9496,351,2,6180,'3.99','2005-07-11 11:06:50','2006-02-15 22:16:43'),(9497,351,1,6664,'4.99','2005-07-12 11:28:22','2006-02-15 22:16:43'),(9498,351,2,6777,'5.99','2005-07-12 16:04:40','2006-02-15 22:16:43'),(9499,351,2,7630,'4.99','2005-07-28 01:01:03','2006-02-15 22:16:43'),(9500,351,2,8512,'4.99','2005-07-29 09:48:03','2006-02-15 22:16:43'),(9501,351,1,9707,'7.99','2005-07-31 07:44:18','2006-02-15 22:16:43'),(9502,351,2,10119,'0.99','2005-07-31 21:20:59','2006-02-15 22:16:43'),(9503,351,2,10501,'2.99','2005-08-01 11:04:46','2006-02-15 22:16:43'),(9504,351,2,11127,'0.99','2005-08-02 09:00:59','2006-02-15 22:16:43'),(9505,351,1,14368,'6.99','2005-08-21 09:31:47','2006-02-15 22:16:43'),(9506,351,2,15142,'4.99','2005-08-22 13:44:32','2006-02-15 22:16:43'),(9507,351,1,15664,'4.99','2005-08-23 08:57:11','2006-02-15 22:16:43'),(9508,351,2,15712,'2.99','2005-08-23 10:43:56','2006-02-15 22:16:43'),(9509,351,1,15762,'2.99','2005-08-23 13:01:43','2006-02-15 22:16:43'),(9510,352,1,784,'2.99','2005-05-29 14:44:22','2006-02-15 22:16:43'),(9511,352,1,1498,'0.99','2005-06-15 21:58:00','2006-02-15 22:16:43'),(9512,352,1,1649,'4.99','2005-06-16 09:20:33','2006-02-15 22:16:43'),(9513,352,1,1678,'4.99','2005-06-16 11:08:28','2006-02-15 22:16:43'),(9514,352,1,1780,'4.99','2005-06-16 19:11:45','2006-02-15 22:16:43'),(9515,352,2,3331,'4.99','2005-06-21 09:37:53','2006-02-15 22:16:43'),(9516,352,2,4116,'4.99','2005-07-07 06:56:13','2006-02-15 22:16:44'),(9517,352,2,6329,'5.99','2005-07-11 19:10:38','2006-02-15 22:16:44'),(9518,352,1,7033,'2.99','2005-07-27 03:03:25','2006-02-15 22:16:44'),(9519,352,1,7419,'7.99','2005-07-27 17:04:15','2006-02-15 22:16:44'),(9520,352,2,7512,'6.99','2005-07-27 20:40:40','2006-02-15 22:16:44'),(9521,352,1,7579,'4.99','2005-07-27 23:06:41','2006-02-15 22:16:44'),(9522,352,1,7845,'5.99','2005-07-28 09:18:07','2006-02-15 22:16:44'),(9523,352,1,7886,'2.99','2005-07-28 10:37:55','2006-02-15 22:16:44'),(9524,352,1,9463,'0.99','2005-07-30 22:30:57','2006-02-15 22:16:44'),(9525,352,1,11793,'5.99','2005-08-17 11:05:53','2006-02-15 22:16:44'),(9526,352,1,11823,'6.99','2005-08-17 12:36:37','2006-02-15 22:16:44'),(9527,352,2,11986,'0.99','2005-08-17 18:21:58','2006-02-15 22:16:44'),(9528,352,2,12234,'5.99','2005-08-18 03:17:33','2006-02-15 22:16:44'),(9529,352,1,12751,'2.99','2005-08-18 22:33:22','2006-02-15 22:16:44'),(9530,352,1,14130,'4.99','2005-08-21 01:43:11','2006-02-15 22:16:44'),(9531,352,2,14852,'0.99','2005-08-22 02:25:53','2006-02-15 22:16:44'),(9532,352,2,13578,'2.99','2006-02-14 15:16:03','2006-02-15 22:16:44'),(9533,353,2,1103,'6.99','2005-05-31 14:24:18','2006-02-15 22:16:44'),(9534,353,2,1359,'2.99','2005-06-15 13:30:30','2006-02-15 22:16:44'),(9535,353,2,1928,'7.99','2005-06-17 06:48:31','2006-02-15 22:16:44'),(9536,353,2,3233,'6.99','2005-06-21 02:39:31','2006-02-15 22:16:44'),(9537,353,2,4380,'5.99','2005-07-07 20:35:00','2006-02-15 22:16:44'),(9538,353,2,6559,'1.99','2005-07-12 05:20:35','2006-02-15 22:16:45'),(9539,353,1,6610,'3.99','2005-07-12 08:20:02','2006-02-15 22:16:45'),(9540,353,2,7993,'3.99','2005-07-28 14:56:41','2006-02-15 22:16:45'),(9541,353,2,10071,'2.99','2005-07-31 19:49:35','2006-02-15 22:16:45'),(9542,353,1,11186,'0.99','2005-08-02 11:12:08','2006-02-15 22:16:45'),(9543,353,2,11414,'4.99','2005-08-02 19:43:07','2006-02-15 22:16:45'),(9544,353,2,11698,'4.99','2005-08-17 07:09:59','2006-02-15 22:16:45'),(9545,353,1,12928,'5.99','2005-08-19 05:04:09','2006-02-15 22:16:45'),(9546,353,2,13604,'0.99','2005-08-20 06:03:33','2006-02-15 22:16:45'),(9547,353,1,14396,'4.99','2005-08-21 10:24:54','2006-02-15 22:16:45'),(9548,353,1,15564,'1.99','2005-08-23 05:10:42','2006-02-15 22:16:45'),(9549,353,2,15650,'0.99','2005-08-23 08:29:53','2006-02-15 22:16:45'),(9550,353,2,15676,'2.99','2005-08-23 09:23:08','2006-02-15 22:16:45'),(9551,354,1,140,'0.99','2005-05-25 23:34:22','2006-02-15 22:16:45'),(9552,354,2,158,'1.99','2005-05-26 01:27:11','2006-02-15 22:16:45'),(9553,354,2,402,'0.99','2005-05-27 13:17:18','2006-02-15 22:16:45'),(9554,354,1,1491,'0.99','2005-06-15 21:48:18','2006-02-15 22:16:45'),(9555,354,1,2275,'4.99','2005-06-18 06:31:29','2006-02-15 22:16:45'),(9556,354,1,2769,'6.99','2005-06-19 17:52:14','2006-02-15 22:16:45'),(9557,354,1,3139,'2.99','2005-06-20 19:44:45','2006-02-15 22:16:45'),(9558,354,2,3821,'2.99','2005-07-06 15:36:20','2006-02-15 22:16:45'),(9559,354,2,4034,'0.99','2005-07-07 02:36:33','2006-02-15 22:16:45'),(9560,354,1,4449,'5.99','2005-07-07 23:18:58','2006-02-15 22:16:46'),(9561,354,2,4745,'2.99','2005-07-08 13:45:09','2006-02-15 22:16:46'),(9562,354,1,5354,'4.99','2005-07-09 18:04:33','2006-02-15 22:16:46'),(9563,354,2,5556,'4.99','2005-07-10 03:10:17','2006-02-15 22:16:46'),(9564,354,1,5873,'3.99','2005-07-10 19:02:10','2006-02-15 22:16:46'),(9565,354,1,6054,'0.99','2005-07-11 03:58:39','2006-02-15 22:16:46'),(9566,354,1,6838,'4.99','2005-07-12 19:01:30','2006-02-15 22:16:46'),(9567,354,1,6926,'0.99','2005-07-26 22:52:45','2006-02-15 22:16:46'),(9568,354,1,6939,'5.99','2005-07-26 23:17:51','2006-02-15 22:16:46'),(9569,354,2,7148,'0.99','2005-07-27 07:04:09','2006-02-15 22:16:46'),(9570,354,2,7235,'2.99','2005-07-27 10:09:30','2006-02-15 22:16:46'),(9571,354,2,7241,'0.99','2005-07-27 10:25:49','2006-02-15 22:16:46'),(9572,354,2,8321,'4.99','2005-07-29 03:50:54','2006-02-15 22:16:46'),(9573,354,2,8477,'8.99','2005-07-29 08:40:36','2006-02-15 22:16:46'),(9574,354,1,8609,'4.99','2005-07-29 13:19:25','2006-02-15 22:16:46'),(9575,354,2,8921,'0.99','2005-07-30 02:04:02','2006-02-15 22:16:46'),(9576,354,1,9130,'2.99','2005-07-30 09:55:10','2006-02-15 22:16:46'),(9577,354,1,10420,'6.99','2005-08-01 08:13:53','2006-02-15 22:16:46'),(9578,354,2,12243,'6.99','2005-08-18 03:38:54','2006-02-15 22:16:46'),(9579,354,1,12544,'3.99','2005-08-18 14:25:51','2006-02-15 22:16:46'),(9580,354,1,12998,'4.99','2005-08-19 07:32:16','2006-02-15 22:16:46'),(9581,354,2,14212,'2.99','2005-08-21 04:29:26','2006-02-15 22:16:47'),(9582,354,2,14245,'0.99','2005-08-21 05:30:54','2006-02-15 22:16:47'),(9583,354,1,14840,'5.99','2005-08-22 01:58:42','2006-02-15 22:16:47'),(9584,354,2,15956,'0.99','2005-08-23 19:19:21','2006-02-15 22:16:47'),(9585,354,1,12759,'7.98','2006-02-14 15:16:03','2006-02-15 22:16:47'),(9586,354,1,11782,'0.00','2006-02-14 15:16:03','2006-02-15 22:16:47'),(9587,355,1,1110,'3.99','2005-05-31 15:22:51','2006-02-15 22:16:47'),(9588,355,2,1488,'0.99','2005-06-15 21:39:54','2006-02-15 22:16:47'),(9589,355,1,1612,'2.99','2005-06-16 06:52:05','2006-02-15 22:16:47'),(9590,355,1,3567,'5.99','2005-07-06 03:09:36','2006-02-15 22:16:47'),(9591,355,1,3730,'6.99','2005-07-06 11:31:24','2006-02-15 22:16:47'),(9592,355,1,5210,'4.99','2005-07-09 11:24:19','2006-02-15 22:16:47'),(9593,355,1,5564,'5.99','2005-07-10 03:23:05','2006-02-15 22:16:47'),(9594,355,1,6127,'0.99','2005-07-11 08:06:59','2006-02-15 22:16:47'),(9595,355,2,6262,'6.99','2005-07-11 15:33:24','2006-02-15 22:16:47'),(9596,355,1,6437,'2.99','2005-07-12 00:20:29','2006-02-15 22:16:47'),(9597,355,2,6669,'4.99','2005-07-12 11:39:55','2006-02-15 22:16:47'),(9598,355,2,7108,'4.99','2005-07-27 05:28:32','2006-02-15 22:16:47'),(9599,355,2,7477,'5.99','2005-07-27 19:11:03','2006-02-15 22:16:47'),(9600,355,2,8418,'1.99','2005-07-29 06:54:21','2006-02-15 22:16:47'),(9601,355,1,10498,'0.99','2005-08-01 10:56:48','2006-02-15 22:16:47'),(9602,355,2,11471,'0.99','2005-08-02 21:49:03','2006-02-15 22:16:47'),(9603,355,2,13821,'1.99','2005-08-20 13:33:47','2006-02-15 22:16:48'),(9604,355,1,15367,'3.99','2005-08-22 21:47:53','2006-02-15 22:16:48'),(9605,355,2,15531,'2.99','2005-08-23 03:52:36','2006-02-15 22:16:48'),(9606,355,1,14760,'0.99','2006-02-14 15:16:03','2006-02-15 22:16:48'),(9607,356,2,1088,'4.99','2005-05-31 11:35:13','2006-02-15 22:16:48'),(9608,356,1,1410,'0.99','2005-06-15 16:59:46','2006-02-15 22:16:48'),(9609,356,1,2405,'2.99','2005-06-18 16:36:38','2006-02-15 22:16:48'),(9610,356,1,2433,'4.99','2005-06-18 18:10:17','2006-02-15 22:16:48'),(9611,356,2,3829,'6.99','2005-07-06 15:59:40','2006-02-15 22:16:48'),(9612,356,2,4599,'4.99','2005-07-08 06:48:26','2006-02-15 22:16:48'),(9613,356,1,5513,'0.99','2005-07-10 01:05:41','2006-02-15 22:16:48'),(9614,356,1,6593,'4.99','2005-07-12 07:21:17','2006-02-15 22:16:48'),(9615,356,1,6648,'0.99','2005-07-12 10:46:30','2006-02-15 22:16:48'),(9616,356,1,7079,'2.99','2005-07-27 04:21:58','2006-02-15 22:16:48'),(9617,356,1,7758,'1.99','2005-07-28 06:23:41','2006-02-15 22:16:48'),(9618,356,1,7902,'0.99','2005-07-28 11:14:19','2006-02-15 22:16:48'),(9619,356,1,8198,'3.99','2005-07-28 23:08:05','2006-02-15 22:16:48'),(9620,356,1,8975,'5.99','2005-07-30 04:10:18','2006-02-15 22:16:48'),(9621,356,2,9037,'4.99','2005-07-30 06:23:14','2006-02-15 22:16:48'),(9622,356,2,9523,'3.99','2005-07-31 00:56:09','2006-02-15 22:16:48'),(9623,356,2,9883,'6.99','2005-07-31 13:53:37','2006-02-15 22:16:48'),(9624,356,1,10427,'3.99','2005-08-01 08:30:11','2006-02-15 22:16:48'),(9625,356,1,10854,'4.99','2005-08-02 00:02:06','2006-02-15 22:16:49'),(9626,356,1,11535,'3.99','2005-08-17 00:39:54','2006-02-15 22:16:49'),(9627,356,2,11579,'2.99','2005-08-17 01:57:49','2006-02-15 22:16:49'),(9628,356,2,12037,'4.99','2005-08-17 20:21:35','2006-02-15 22:16:49'),(9629,356,2,12876,'2.99','2005-08-19 03:12:19','2006-02-15 22:16:49'),(9630,356,1,12913,'0.99','2005-08-19 04:25:39','2006-02-15 22:16:49'),(9631,356,2,13107,'4.99','2005-08-19 11:13:58','2006-02-15 22:16:49'),(9632,356,2,13442,'5.99','2005-08-19 23:50:45','2006-02-15 22:16:49'),(9633,356,2,13703,'6.99','2005-08-20 09:29:35','2006-02-15 22:16:49'),(9634,356,1,15705,'4.99','2005-08-23 10:32:52','2006-02-15 22:16:49'),(9635,356,2,15754,'5.99','2005-08-23 12:43:42','2006-02-15 22:16:49'),(9636,356,1,15757,'2.99','2005-08-23 12:47:16','2006-02-15 22:16:49'),(9637,357,1,144,'2.99','2005-05-25 23:49:56','2006-02-15 22:16:49'),(9638,357,1,824,'4.99','2005-05-29 21:45:32','2006-02-15 22:16:49'),(9639,357,2,945,'0.99','2005-05-30 15:33:17','2006-02-15 22:16:49'),(9640,357,2,1246,'5.99','2005-06-15 05:11:19','2006-02-15 22:16:49'),(9641,357,1,1788,'1.99','2005-06-16 19:47:18','2006-02-15 22:16:49'),(9642,357,2,1971,'1.99','2005-06-17 09:23:59','2006-02-15 22:16:49'),(9643,357,2,2153,'6.99','2005-06-17 22:58:04','2006-02-15 22:16:49'),(9644,357,1,3865,'3.99','2005-07-06 17:46:57','2006-02-15 22:16:49'),(9645,357,1,4478,'0.99','2005-07-08 00:39:08','2006-02-15 22:16:49'),(9646,357,1,5896,'0.99','2005-07-10 20:15:56','2006-02-15 22:16:49'),(9647,357,1,6288,'8.99','2005-07-11 17:01:52','2006-02-15 22:16:50'),(9648,357,2,6367,'4.99','2005-07-11 21:18:29','2006-02-15 22:16:50'),(9649,357,2,6405,'2.99','2005-07-11 22:53:12','2006-02-15 22:16:50'),(9650,357,1,6839,'0.99','2005-07-12 19:03:19','2006-02-15 22:16:50'),(9651,357,1,7353,'2.99','2005-07-27 14:38:39','2006-02-15 22:16:50'),(9652,357,1,7366,'5.99','2005-07-27 15:01:17','2006-02-15 22:16:50'),(9653,357,2,8041,'2.99','2005-07-28 16:39:56','2006-02-15 22:16:50'),(9654,357,1,8124,'2.99','2005-07-28 19:28:58','2006-02-15 22:16:50'),(9655,357,2,9233,'3.99','2005-07-30 13:44:15','2006-02-15 22:16:50'),(9656,357,2,10391,'2.99','2005-08-01 06:49:05','2006-02-15 22:16:50'),(9657,357,1,10502,'2.99','2005-08-01 11:06:39','2006-02-15 22:16:50'),(9658,357,1,10503,'6.99','2005-08-01 11:07:44','2006-02-15 22:16:50'),(9659,357,2,10764,'0.99','2005-08-01 20:32:42','2006-02-15 22:16:50'),(9660,357,2,11065,'2.99','2005-08-02 06:57:55','2006-02-15 22:16:50'),(9661,357,1,14926,'0.99','2005-08-22 05:18:44','2006-02-15 22:16:50'),(9662,357,2,15869,'2.99','2005-08-23 16:22:20','2006-02-15 22:16:50'),(9663,358,2,858,'4.99','2005-05-30 02:10:32','2006-02-15 22:16:50'),(9664,358,1,1455,'2.99','2005-06-15 19:51:06','2006-02-15 22:16:50'),(9665,358,2,1908,'0.99','2005-06-17 05:10:36','2006-02-15 22:16:50'),(9666,358,1,2114,'5.99','2005-06-17 20:00:25','2006-02-15 22:16:50'),(9667,358,1,2721,'2.99','2005-06-19 14:53:24','2006-02-15 22:16:50'),(9668,358,1,2749,'2.99','2005-06-19 16:27:35','2006-02-15 22:16:51'),(9669,358,1,3245,'2.99','2005-06-21 03:06:11','2006-02-15 22:16:51'),(9670,358,1,3753,'2.99','2005-07-06 12:34:06','2006-02-15 22:16:51'),(9671,358,1,3809,'2.99','2005-07-06 15:16:37','2006-02-15 22:16:51'),(9672,358,2,5023,'5.99','2005-07-09 02:23:16','2006-02-15 22:16:51'),(9673,358,1,6362,'2.99','2005-07-11 21:09:31','2006-02-15 22:16:51'),(9674,358,1,8621,'2.99','2005-07-29 13:52:42','2006-02-15 22:16:51'),(9675,358,2,9062,'0.99','2005-07-30 07:23:17','2006-02-15 22:16:51'),(9676,358,1,9568,'0.99','2005-07-31 02:37:44','2006-02-15 22:16:51'),(9677,358,1,10193,'2.99','2005-08-01 00:33:27','2006-02-15 22:16:51'),(9678,358,1,10482,'4.99','2005-08-01 10:17:47','2006-02-15 22:16:51'),(9679,358,2,11149,'5.99','2005-08-02 09:51:43','2006-02-15 22:16:51'),(9680,358,2,11653,'4.99','2005-08-17 05:06:10','2006-02-15 22:16:51'),(9681,358,1,12452,'6.99','2005-08-18 11:14:35','2006-02-15 22:16:51'),(9682,358,1,13197,'2.99','2005-08-19 14:44:03','2006-02-15 22:16:51'),(9683,358,1,14004,'7.99','2005-08-20 20:16:35','2006-02-15 22:16:51'),(9684,359,1,284,'8.99','2005-05-26 19:21:44','2006-02-15 22:16:51'),(9685,359,2,392,'2.99','2005-05-27 11:14:42','2006-02-15 22:16:51'),(9686,359,1,528,'3.99','2005-05-28 04:30:05','2006-02-15 22:16:51'),(9687,359,2,1329,'4.99','2005-06-15 11:25:06','2006-02-15 22:16:51'),(9688,359,2,1770,'1.99','2005-06-16 18:07:55','2006-02-15 22:16:51'),(9689,359,1,2401,'0.99','2005-06-18 16:22:03','2006-02-15 22:16:51'),(9690,359,1,2736,'4.99','2005-06-19 15:43:20','2006-02-15 22:16:52'),(9691,359,2,4830,'7.99','2005-07-08 17:56:23','2006-02-15 22:16:52'),(9692,359,2,6424,'9.99','2005-07-11 23:49:37','2006-02-15 22:16:52'),(9693,359,1,6542,'2.99','2005-07-12 04:53:49','2006-02-15 22:16:52'),(9694,359,2,6741,'0.99','2005-07-12 14:24:16','2006-02-15 22:16:52'),(9695,359,2,7098,'0.99','2005-07-27 05:01:08','2006-02-15 22:16:52'),(9696,359,1,7115,'0.99','2005-07-27 05:42:58','2006-02-15 22:16:52'),(9697,359,1,8174,'4.99','2005-07-28 21:36:52','2006-02-15 22:16:52'),(9698,359,1,9898,'4.99','2005-07-31 14:12:03','2006-02-15 22:16:52'),(9699,359,2,10174,'5.99','2005-07-31 23:40:08','2006-02-15 22:16:52'),(9700,359,1,11032,'4.99','2005-08-02 05:53:35','2006-02-15 22:16:52'),(9701,359,1,12611,'1.99','2005-08-18 17:09:42','2006-02-15 22:16:52'),(9702,359,2,13297,'2.99','2005-08-19 18:45:49','2006-02-15 22:16:52'),(9703,359,1,14258,'1.99','2005-08-21 05:56:36','2006-02-15 22:16:52'),(9704,359,2,14598,'5.99','2005-08-21 17:40:05','2006-02-15 22:16:52'),(9705,359,1,15104,'2.99','2005-08-22 12:01:16','2006-02-15 22:16:52'),(9706,359,1,15148,'4.99','2005-08-22 13:59:19','2006-02-15 22:16:52'),(9707,359,1,15453,'1.99','2005-08-23 01:01:01','2006-02-15 22:16:52'),(9708,359,2,15655,'4.99','2006-02-14 15:16:03','2006-02-15 22:16:52'),(9709,360,1,633,'0.99','2005-05-28 17:37:59','2006-02-15 22:16:52'),(9710,360,2,777,'4.99','2005-05-29 14:07:58','2006-02-15 22:16:52'),(9711,360,2,1492,'0.99','2005-06-15 21:48:35','2006-02-15 22:16:53'),(9712,360,2,2402,'6.99','2005-06-18 16:24:45','2006-02-15 22:16:53'),(9713,360,2,2541,'3.99','2005-06-19 02:08:10','2006-02-15 22:16:53'),(9714,360,2,2780,'6.99','2005-06-19 18:19:33','2006-02-15 22:16:53'),(9715,360,1,4056,'4.99','2005-07-07 03:57:36','2006-02-15 22:16:53'),(9716,360,1,4487,'7.99','2005-07-08 01:20:22','2006-02-15 22:16:53'),(9717,360,2,5456,'2.99','2005-07-09 22:31:45','2006-02-15 22:16:53'),(9718,360,1,5834,'1.99','2005-07-10 16:44:12','2006-02-15 22:16:53'),(9719,360,1,5995,'3.99','2005-07-11 01:15:39','2006-02-15 22:16:53'),(9720,360,1,6442,'0.99','2005-07-12 00:29:45','2006-02-15 22:16:53'),(9721,360,2,6770,'5.99','2005-07-12 15:49:40','2006-02-15 22:16:53'),(9722,360,1,7251,'2.99','2005-07-27 10:44:55','2006-02-15 22:16:53'),(9723,360,2,7588,'9.99','2005-07-27 23:23:31','2006-02-15 22:16:53'),(9724,360,1,7654,'4.99','2005-07-28 02:00:14','2006-02-15 22:16:53'),(9725,360,2,7908,'3.99','2005-07-28 11:32:57','2006-02-15 22:16:53'),(9726,360,1,8220,'2.99','2005-07-28 23:46:41','2006-02-15 22:16:53'),(9727,360,2,8361,'2.99','2005-07-29 05:08:57','2006-02-15 22:16:53'),(9728,360,1,9283,'4.99','2005-07-30 15:25:19','2006-02-15 22:16:53'),(9729,360,2,9352,'0.99','2005-07-30 18:29:26','2006-02-15 22:16:53'),(9730,360,1,9623,'2.99','2005-07-31 04:30:02','2006-02-15 22:16:53'),(9731,360,2,9659,'3.99','2005-07-31 06:02:14','2006-02-15 22:16:53'),(9732,360,2,10857,'2.99','2005-08-02 00:07:20','2006-02-15 22:16:54'),(9733,360,2,11264,'6.99','2005-08-02 14:05:18','2006-02-15 22:16:54'),(9734,360,2,11553,'4.99','2005-08-17 01:04:31','2006-02-15 22:16:54'),(9735,360,2,12088,'5.99','2005-08-17 22:20:16','2006-02-15 22:16:54'),(9736,360,1,12773,'5.99','2005-08-18 23:32:19','2006-02-15 22:16:54'),(9737,360,2,12795,'0.99','2005-08-19 00:21:52','2006-02-15 22:16:54'),(9738,360,1,12839,'6.99','2005-08-19 01:53:43','2006-02-15 22:16:54'),(9739,360,1,12990,'4.99','2005-08-19 07:20:39','2006-02-15 22:16:54'),(9740,360,2,13894,'7.99','2005-08-20 15:55:20','2006-02-15 22:16:54'),(9741,360,1,14700,'4.99','2005-08-21 20:53:40','2006-02-15 22:16:54'),(9742,360,1,15310,'2.99','2005-08-22 19:56:41','2006-02-15 22:16:54'),(9743,361,1,368,'5.99','2005-05-27 07:42:29','2006-02-15 22:16:54'),(9744,361,2,1120,'4.99','2005-05-31 16:37:14','2006-02-15 22:16:54'),(9745,361,2,2353,'4.99','2005-06-18 12:53:25','2006-02-15 22:16:54'),(9746,361,2,2558,'1.99','2005-06-19 03:09:16','2006-02-15 22:16:54'),(9747,361,1,2851,'2.99','2005-06-19 23:07:03','2006-02-15 22:16:54'),(9748,361,2,3303,'2.99','2005-06-21 07:34:14','2006-02-15 22:16:54'),(9749,361,2,5154,'2.99','2005-07-09 08:46:18','2006-02-15 22:16:54'),(9750,361,1,6152,'0.99','2005-07-11 09:25:52','2006-02-15 22:16:54'),(9751,361,2,6829,'4.99','2005-07-12 18:38:59','2006-02-15 22:16:54'),(9752,361,2,6911,'0.99','2005-07-12 22:14:34','2006-02-15 22:16:54'),(9753,361,1,6914,'1.99','2005-07-12 22:26:56','2006-02-15 22:16:55'),(9754,361,1,7538,'2.99','2005-07-27 21:38:04','2006-02-15 22:16:55'),(9755,361,2,7712,'2.99','2005-07-28 04:29:53','2006-02-15 22:16:55'),(9756,361,2,8189,'4.99','2005-07-28 22:36:26','2006-02-15 22:16:55'),(9757,361,1,10145,'1.99','2005-07-31 22:15:13','2006-02-15 22:16:55'),(9758,361,1,10151,'4.99','2005-07-31 22:22:37','2006-02-15 22:16:55'),(9759,361,1,10414,'0.99','2005-08-01 08:03:55','2006-02-15 22:16:55'),(9760,361,2,10975,'0.99','2005-08-02 04:11:25','2006-02-15 22:16:55'),(9761,361,2,11031,'5.99','2005-08-02 05:52:58','2006-02-15 22:16:55'),(9762,361,2,11243,'5.99','2005-08-02 13:32:48','2006-02-15 22:16:55'),(9763,361,1,11327,'2.99','2005-08-02 16:40:47','2006-02-15 22:16:55'),(9764,361,1,11991,'3.99','2005-08-17 18:27:08','2006-02-15 22:16:55'),(9765,361,2,12626,'5.99','2005-08-18 17:36:45','2006-02-15 22:16:55'),(9766,361,2,12690,'2.99','2005-08-18 20:06:57','2006-02-15 22:16:55'),(9767,361,1,13135,'0.99','2005-08-19 12:22:52','2006-02-15 22:16:55'),(9768,361,2,14031,'0.99','2005-08-20 21:24:24','2006-02-15 22:16:55'),(9769,361,1,14422,'0.99','2005-08-21 11:21:46','2006-02-15 22:16:55'),(9770,361,1,15759,'6.99','2005-08-23 12:47:37','2006-02-15 22:16:55'),(9771,361,2,15935,'2.99','2005-08-23 18:41:11','2006-02-15 22:16:55'),(9772,361,1,13298,'3.98','2006-02-14 15:16:03','2006-02-15 22:16:55'),(9773,361,1,14769,'0.00','2006-02-14 15:16:03','2006-02-15 22:16:55'),(9774,362,2,1035,'4.99','2005-05-31 05:01:09','2006-02-15 22:16:56'),(9775,362,1,1429,'2.99','2005-06-15 18:24:10','2006-02-15 22:16:56'),(9776,362,1,1529,'2.99','2005-06-16 00:37:35','2006-02-15 22:16:56'),(9777,362,1,1615,'2.99','2005-06-16 07:00:28','2006-02-15 22:16:56'),(9778,362,2,3197,'2.99','2005-06-21 00:07:23','2006-02-15 22:16:56'),(9779,362,2,3393,'2.99','2005-06-21 15:14:27','2006-02-15 22:16:56'),(9780,362,2,4646,'8.99','2005-07-08 09:23:26','2006-02-15 22:16:56'),(9781,362,1,5227,'4.99','2005-07-09 12:16:39','2006-02-15 22:16:56'),(9782,362,2,5563,'1.99','2005-07-10 03:21:02','2006-02-15 22:16:56'),(9783,362,2,5690,'5.99','2005-07-10 09:26:49','2006-02-15 22:16:56'),(9784,362,1,6204,'4.99','2005-07-11 12:29:22','2006-02-15 22:16:56'),(9785,362,2,6576,'4.99','2005-07-12 06:13:41','2006-02-15 22:16:56'),(9786,362,1,6981,'4.99','2005-07-27 00:51:38','2006-02-15 22:16:56'),(9787,362,1,7172,'1.99','2005-07-27 07:59:16','2006-02-15 22:16:56'),(9788,362,1,7485,'2.99','2005-07-27 19:29:09','2006-02-15 22:16:56'),(9789,362,1,8081,'2.99','2005-07-28 18:06:46','2006-02-15 22:16:56'),(9790,362,2,8325,'2.99','2005-07-29 03:57:27','2006-02-15 22:16:56'),(9791,362,2,8364,'4.99','2005-07-29 05:10:31','2006-02-15 22:16:56'),(9792,362,1,8662,'0.99','2005-07-29 15:31:33','2006-02-15 22:16:56'),(9793,362,1,8714,'2.99','2005-07-29 17:31:40','2006-02-15 22:16:56'),(9794,362,1,9784,'4.99','2005-07-31 10:21:32','2006-02-15 22:16:56'),(9795,362,2,10546,'3.99','2005-08-01 12:44:17','2006-02-15 22:16:56'),(9796,362,2,12244,'4.99','2005-08-18 03:39:11','2006-02-15 22:16:57'),(9797,362,1,12854,'6.99','2005-08-19 02:18:51','2006-02-15 22:16:57'),(9798,362,1,13603,'6.99','2005-08-20 06:02:48','2006-02-15 22:16:57'),(9799,362,2,14051,'6.99','2005-08-20 22:09:51','2006-02-15 22:16:57'),(9800,362,2,14129,'2.99','2005-08-21 01:42:15','2006-02-15 22:16:57'),(9801,362,2,14336,'4.99','2005-08-21 08:33:42','2006-02-15 22:16:57'),(9802,362,1,14752,'5.99','2005-08-21 23:11:42','2006-02-15 22:16:57'),(9803,362,1,14759,'11.99','2005-08-21 23:28:58','2006-02-15 22:16:57'),(9804,362,1,14808,'4.99','2005-08-22 00:58:35','2006-02-15 22:16:57'),(9805,362,1,14950,'2.99','2005-08-22 06:17:12','2006-02-15 22:16:57'),(9806,363,1,733,'3.99','2005-05-29 07:35:21','2006-02-15 22:16:57'),(9807,363,2,1426,'4.99','2005-06-15 18:16:24','2006-02-15 22:16:57'),(9808,363,2,1569,'4.99','2005-06-16 03:19:09','2006-02-15 22:16:57'),(9809,363,1,1847,'4.99','2005-06-17 00:05:22','2006-02-15 22:16:57'),(9810,363,1,2540,'4.99','2005-06-19 02:04:48','2006-02-15 22:16:57'),(9811,363,2,3281,'2.99','2005-06-21 06:08:47','2006-02-15 22:16:57'),(9812,363,1,3726,'3.99','2005-07-06 11:15:49','2006-02-15 22:16:57'),(9813,363,2,5687,'3.99','2005-07-10 09:07:19','2006-02-15 22:16:57'),(9814,363,1,5758,'6.99','2005-07-10 12:42:43','2006-02-15 22:16:57'),(9815,363,2,6140,'4.99','2005-07-11 08:40:47','2006-02-15 22:16:57'),(9816,363,2,6705,'4.99','2005-07-12 12:53:11','2006-02-15 22:16:58'),(9817,363,2,6821,'2.99','2005-07-12 18:22:10','2006-02-15 22:16:58'),(9818,363,2,6878,'4.99','2005-07-12 20:37:13','2006-02-15 22:16:58'),(9819,363,1,7256,'2.99','2005-07-27 10:58:32','2006-02-15 22:16:58'),(9820,363,2,7708,'4.99','2005-07-28 04:19:15','2006-02-15 22:16:58'),(9821,363,2,8121,'2.99','2005-07-28 19:25:45','2006-02-15 22:16:58'),(9822,363,2,8522,'3.99','2005-07-29 10:16:19','2006-02-15 22:16:58'),(9823,363,2,8804,'2.99','2005-07-29 21:28:19','2006-02-15 22:16:58'),(9824,363,2,8841,'4.99','2005-07-29 22:56:07','2006-02-15 22:16:58'),(9825,363,1,9968,'4.99','2005-07-31 16:32:16','2006-02-15 22:16:58'),(9826,363,1,9977,'8.99','2005-07-31 16:58:42','2006-02-15 22:16:58'),(9827,363,1,10339,'6.99','2005-08-01 05:05:50','2006-02-15 22:16:58'),(9828,363,2,12189,'5.99','2005-08-18 01:51:44','2006-02-15 22:16:58'),(9829,363,2,12760,'4.99','2005-08-18 23:03:19','2006-02-15 22:16:58'),(9830,363,1,13706,'9.99','2005-08-20 09:32:56','2006-02-15 22:16:58'),(9831,363,1,14694,'2.99','2005-08-21 20:46:42','2006-02-15 22:16:58'),(9832,363,1,14983,'5.99','2005-08-22 07:32:23','2006-02-15 22:16:58'),(9833,363,2,15279,'4.99','2005-08-22 19:08:49','2006-02-15 22:16:58'),(9834,363,1,15335,'4.99','2005-08-22 20:44:55','2006-02-15 22:16:58'),(9835,364,1,462,'5.99','2005-05-27 20:10:36','2006-02-15 22:16:58'),(9836,364,1,1722,'2.99','2005-06-16 15:12:52','2006-02-15 22:16:59'),(9837,364,2,2442,'2.99','2005-06-18 18:49:18','2006-02-15 22:16:59'),(9838,364,2,2606,'4.99','2005-06-19 06:51:32','2006-02-15 22:16:59'),(9839,364,2,2857,'4.99','2005-06-19 23:15:15','2006-02-15 22:16:59'),(9840,364,2,2962,'3.99','2005-06-20 07:31:55','2006-02-15 22:16:59'),(9841,364,1,3678,'4.99','2005-07-06 09:15:15','2006-02-15 22:16:59'),(9842,364,2,3961,'4.99','2005-07-06 22:11:43','2006-02-15 22:16:59'),(9843,364,1,4047,'0.99','2005-07-07 03:28:49','2006-02-15 22:16:59'),(9844,364,2,4689,'4.99','2005-07-08 11:03:47','2006-02-15 22:16:59'),(9845,364,1,5872,'10.99','2005-07-10 18:54:05','2006-02-15 22:16:59'),(9846,364,1,7272,'2.99','2005-07-27 11:30:20','2006-02-15 22:16:59'),(9847,364,2,9266,'4.99','2005-07-30 14:59:01','2006-02-15 22:16:59'),(9848,364,1,10092,'0.99','2005-07-31 20:28:09','2006-02-15 22:16:59'),(9849,364,2,10290,'5.99','2005-08-01 03:39:50','2006-02-15 22:16:59'),(9850,364,2,11932,'4.99','2005-08-17 16:36:12','2006-02-15 22:16:59'),(9851,364,1,12557,'4.99','2005-08-18 14:51:03','2006-02-15 22:16:59'),(9852,364,1,12761,'1.99','2005-08-18 23:05:22','2006-02-15 22:16:59'),(9853,364,2,12912,'3.99','2005-08-19 04:24:35','2006-02-15 22:16:59'),(9854,364,1,13698,'4.99','2005-08-20 09:24:26','2006-02-15 22:16:59'),(9855,364,2,13936,'0.99','2005-08-20 17:22:35','2006-02-15 22:17:00'),(9856,364,2,14293,'4.99','2005-08-21 07:06:47','2006-02-15 22:17:00'),(9857,364,1,15242,'0.99','2005-08-22 17:48:10','2006-02-15 22:17:00'),(9858,365,2,120,'5.99','2005-05-25 19:37:47','2006-02-15 22:17:00'),(9859,365,1,231,'4.99','2005-05-26 11:31:59','2006-02-15 22:17:00'),(9860,365,1,1303,'1.99','2005-06-15 09:55:57','2006-02-15 22:17:00'),(9861,365,1,1578,'6.99','2005-06-16 04:08:16','2006-02-15 22:17:00'),(9862,365,1,1983,'4.99','2005-06-17 10:22:13','2006-02-15 22:17:00'),(9863,365,1,2525,'2.99','2005-06-19 00:48:22','2006-02-15 22:17:00'),(9864,365,2,3156,'0.99','2005-06-20 21:03:46','2006-02-15 22:17:00'),(9865,365,1,4583,'1.99','2005-07-08 06:09:44','2006-02-15 22:17:00'),(9866,365,1,6604,'4.99','2005-07-12 07:57:45','2006-02-15 22:17:00'),(9867,365,1,7488,'7.99','2005-07-27 19:36:15','2006-02-15 22:17:00'),(9868,365,2,7634,'4.99','2005-07-28 01:07:01','2006-02-15 22:17:00'),(9869,365,1,8168,'4.99','2005-07-28 21:28:32','2006-02-15 22:17:00'),(9870,365,2,8782,'4.99','2005-07-29 20:29:34','2006-02-15 22:17:00'),(9871,365,1,8856,'3.99','2005-07-29 23:42:00','2006-02-15 22:17:00'),(9872,365,1,9122,'2.99','2005-07-30 09:36:52','2006-02-15 22:17:00'),(9873,365,2,9184,'4.99','2005-07-30 12:10:19','2006-02-15 22:17:00'),(9874,365,2,9540,'2.99','2005-07-31 01:40:06','2006-02-15 22:17:01'),(9875,365,2,10717,'2.99','2005-08-01 18:53:53','2006-02-15 22:17:01'),(9876,365,2,12322,'2.99','2005-08-18 06:35:28','2006-02-15 22:17:01'),(9877,365,2,12375,'4.99','2005-08-18 08:20:08','2006-02-15 22:17:01'),(9878,365,1,12804,'8.99','2005-08-19 00:33:15','2006-02-15 22:17:01'),(9879,365,1,13619,'2.99','2005-08-20 06:39:26','2006-02-15 22:17:01'),(9880,365,2,14463,'6.99','2005-08-21 12:51:49','2006-02-15 22:17:01'),(9881,366,2,911,'6.99','2005-05-30 10:50:22','2006-02-15 22:17:01'),(9882,366,2,1401,'1.99','2005-06-15 16:30:22','2006-02-15 22:17:01'),(9883,366,2,2214,'0.99','2005-06-18 02:44:37','2006-02-15 22:17:01'),(9884,366,2,3632,'4.99','2005-07-06 06:38:21','2006-02-15 22:17:01'),(9885,366,1,3834,'2.99','2005-07-06 16:19:56','2006-02-15 22:17:01'),(9886,366,2,4276,'2.99','2005-07-07 14:50:59','2006-02-15 22:17:01'),(9887,366,1,4569,'5.99','2005-07-08 05:30:51','2006-02-15 22:17:01'),(9888,366,2,5364,'0.99','2005-07-09 18:24:48','2006-02-15 22:17:01'),(9889,366,1,6112,'6.99','2005-07-11 07:28:05','2006-02-15 22:17:01'),(9890,366,1,6366,'4.99','2005-07-11 21:18:16','2006-02-15 22:17:01'),(9891,366,2,6533,'6.99','2005-07-12 04:39:38','2006-02-15 22:17:01'),(9892,366,2,6738,'5.99','2005-07-12 14:17:55','2006-02-15 22:17:01'),(9893,366,1,6842,'0.99','2005-07-12 19:07:55','2006-02-15 22:17:02'),(9894,366,2,6971,'4.99','2005-07-27 00:26:17','2006-02-15 22:17:02'),(9895,366,1,7344,'1.99','2005-07-27 14:29:28','2006-02-15 22:17:02'),(9896,366,1,7562,'2.99','2005-07-27 22:25:15','2006-02-15 22:17:02'),(9897,366,2,7602,'4.99','2005-07-27 23:48:35','2006-02-15 22:17:02'),(9898,366,1,7805,'6.99','2005-07-28 07:56:41','2006-02-15 22:17:02'),(9899,366,2,8169,'4.99','2005-07-28 21:29:46','2006-02-15 22:17:02'),(9900,366,2,8260,'1.99','2005-07-29 01:11:00','2006-02-15 22:17:02'),(9901,366,2,8928,'2.99','2005-07-30 02:18:19','2006-02-15 22:17:02'),(9902,366,1,9316,'6.99','2005-07-30 17:11:58','2006-02-15 22:17:02'),(9903,366,1,10198,'2.99','2005-08-01 00:36:15','2006-02-15 22:17:02'),(9904,366,1,10384,'4.99','2005-08-01 06:39:14','2006-02-15 22:17:02'),(9905,366,2,11337,'2.99','2005-08-02 16:59:09','2006-02-15 22:17:02'),(9906,366,2,11340,'5.99','2005-08-02 17:05:43','2006-02-15 22:17:02'),(9907,366,2,12413,'2.99','2005-08-18 09:50:34','2006-02-15 22:17:02'),(9908,366,1,12608,'4.99','2005-08-18 17:05:15','2006-02-15 22:17:02'),(9909,366,2,13563,'0.99','2005-08-20 04:33:31','2006-02-15 22:17:02'),(9910,366,1,13857,'2.99','2005-08-20 14:50:06','2006-02-15 22:17:02'),(9911,366,1,14147,'4.99','2005-08-21 02:14:03','2006-02-15 22:17:02'),(9912,366,1,14290,'4.99','2005-08-21 07:02:59','2006-02-15 22:17:02'),(9913,366,1,14390,'2.99','2005-08-21 10:15:38','2006-02-15 22:17:02'),(9914,366,1,14717,'2.99','2005-08-21 21:30:39','2006-02-15 22:17:03'),(9915,366,1,14906,'6.99','2005-08-22 04:38:18','2006-02-15 22:17:03'),(9916,366,1,15514,'2.99','2005-08-23 03:03:40','2006-02-15 22:17:03'),(9917,366,1,13421,'4.99','2006-02-14 15:16:03','2006-02-15 22:17:03'),(9918,367,1,939,'0.99','2005-05-30 14:49:34','2006-02-15 22:17:03'),(9919,367,1,1089,'2.99','2005-05-31 11:38:29','2006-02-15 22:17:03'),(9920,367,1,3078,'0.99','2005-06-20 15:09:48','2006-02-15 22:17:03'),(9921,367,1,4251,'8.99','2005-07-07 14:11:55','2006-02-15 22:17:03'),(9922,367,2,5490,'4.99','2005-07-10 00:09:11','2006-02-15 22:17:03'),(9923,367,2,5538,'4.99','2005-07-10 02:39:40','2006-02-15 22:17:03'),(9924,367,2,5839,'2.99','2005-07-10 17:08:30','2006-02-15 22:17:03'),(9925,367,2,6228,'2.99','2005-07-11 13:58:36','2006-02-15 22:17:03'),(9926,367,1,6716,'0.99','2005-07-12 13:34:58','2006-02-15 22:17:03'),(9927,367,2,6835,'5.99','2005-07-12 18:58:03','2006-02-15 22:17:03'),(9928,367,2,8490,'0.99','2005-07-29 08:59:25','2006-02-15 22:17:03'),(9929,367,1,9030,'3.99','2005-07-30 06:05:38','2006-02-15 22:17:03'),(9930,367,1,9430,'4.99','2005-07-30 21:20:13','2006-02-15 22:17:03'),(9931,367,1,9912,'4.99','2005-07-31 14:49:04','2006-02-15 22:17:03'),(9932,367,2,10344,'4.99','2005-08-01 05:18:23','2006-02-15 22:17:03'),(9933,367,1,12152,'4.99','2005-08-18 00:21:35','2006-02-15 22:17:03'),(9934,367,2,12362,'0.99','2005-08-18 07:48:05','2006-02-15 22:17:03'),(9935,367,2,12373,'8.99','2005-08-18 08:07:25','2006-02-15 22:17:04'),(9936,367,2,12911,'6.99','2005-08-19 04:24:10','2006-02-15 22:17:04'),(9937,367,2,13235,'4.99','2005-08-19 16:17:53','2006-02-15 22:17:04'),(9938,367,1,14413,'6.99','2005-08-21 11:06:33','2006-02-15 22:17:04'),(9939,367,1,14481,'10.99','2005-08-21 13:41:14','2006-02-15 22:17:04'),(9940,368,1,64,'5.99','2005-05-25 09:21:29','2006-02-15 22:17:04'),(9941,368,1,125,'5.99','2005-05-25 20:48:50','2006-02-15 22:17:04'),(9942,368,1,836,'2.99','2005-05-29 23:56:42','2006-02-15 22:17:04'),(9943,368,1,949,'2.99','2005-05-30 15:50:39','2006-02-15 22:17:04'),(9944,368,1,1186,'0.99','2005-06-15 00:56:45','2006-02-15 22:17:04'),(9945,368,1,1513,'9.99','2005-06-15 22:53:30','2006-02-15 22:17:04'),(9946,368,1,2531,'4.99','2005-06-19 01:20:49','2006-02-15 22:17:04'),(9947,368,1,2694,'4.99','2005-06-19 13:17:21','2006-02-15 22:17:04'),(9948,368,1,2744,'4.99','2005-06-19 16:20:40','2006-02-15 22:17:04'),(9949,368,2,3275,'4.99','2005-06-21 05:33:04','2006-02-15 22:17:04'),(9950,368,2,3608,'4.99','2005-07-06 05:35:39','2006-02-15 22:17:04'),(9951,368,2,4066,'0.99','2005-07-07 04:34:09','2006-02-15 22:17:04'),(9952,368,1,4584,'0.99','2005-07-08 06:11:02','2006-02-15 22:17:04'),(9953,368,2,4913,'8.99','2005-07-08 21:27:48','2006-02-15 22:17:04'),(9954,368,1,6124,'4.99','2005-07-11 08:02:32','2006-02-15 22:17:04'),(9955,368,1,6154,'5.99','2005-07-11 09:32:19','2006-02-15 22:17:04'),(9956,368,1,6681,'2.99','2005-07-12 12:04:12','2006-02-15 22:17:04'),(9957,368,2,7571,'4.99','2005-07-27 22:43:42','2006-02-15 22:17:05'),(9958,368,1,8045,'0.99','2005-07-28 16:49:38','2006-02-15 22:17:05'),(9959,368,2,8226,'2.99','2005-07-29 00:01:04','2006-02-15 22:17:05'),(9960,368,1,9400,'5.99','2005-07-30 20:15:58','2006-02-15 22:17:05'),(9961,368,1,9833,'6.99','2005-07-31 12:05:01','2006-02-15 22:17:05'),(9962,368,2,10730,'8.99','2005-08-01 19:21:42','2006-02-15 22:17:05'),(9963,368,2,10848,'1.99','2005-08-01 23:50:22','2006-02-15 22:17:05'),(9964,368,1,11844,'0.99','2005-08-17 13:16:04','2006-02-15 22:17:05'),(9965,368,2,12319,'2.99','2005-08-18 06:26:45','2006-02-15 22:17:05'),(9966,368,1,12796,'4.99','2005-08-19 00:22:24','2006-02-15 22:17:05'),(9967,368,2,13189,'8.99','2005-08-19 14:27:16','2006-02-15 22:17:05'),(9968,368,2,13280,'2.99','2005-08-19 18:02:51','2006-02-15 22:17:05'),(9969,368,2,13378,'0.99','2005-08-19 21:33:35','2006-02-15 22:17:05'),(9970,368,2,13781,'7.99','2005-08-20 12:06:45','2006-02-15 22:17:05'),(9971,368,2,13963,'1.99','2005-08-20 18:20:18','2006-02-15 22:17:05'),(9972,368,1,14393,'7.99','2005-08-21 10:22:51','2006-02-15 22:17:05'),(9973,368,1,15353,'2.99','2005-08-22 21:18:08','2006-02-15 22:17:05'),(9974,368,1,15437,'2.99','2005-08-23 00:31:09','2006-02-15 22:17:05'),(9975,369,1,31,'4.99','2005-05-25 04:05:17','2006-02-15 22:17:05'),(9976,369,1,294,'4.99','2005-05-26 20:29:57','2006-02-15 22:17:05'),(9977,369,2,854,'0.99','2005-05-30 01:56:11','2006-02-15 22:17:05'),(9978,369,2,913,'7.99','2005-05-30 11:04:58','2006-02-15 22:17:06'),(9979,369,1,1224,'0.99','2005-06-15 03:44:25','2006-02-15 22:17:06'),(9980,369,1,3490,'6.99','2005-07-05 23:37:13','2006-02-15 22:17:06'),(9981,369,2,3903,'2.99','2005-07-06 19:27:32','2006-02-15 22:17:06'),(9982,369,2,4859,'4.99','2005-07-08 18:54:04','2006-02-15 22:17:06'),(9983,369,1,5043,'1.99','2005-07-09 03:25:18','2006-02-15 22:17:06'),(9984,369,2,5496,'7.99','2005-07-10 00:20:23','2006-02-15 22:17:06'),(9985,369,2,5561,'2.99','2005-07-10 03:15:24','2006-02-15 22:17:06'),(9986,369,1,8236,'2.99','2005-07-29 00:27:04','2006-02-15 22:17:06'),(9987,369,2,8826,'2.99','2005-07-29 22:30:16','2006-02-15 22:17:06'),(9988,369,2,9032,'4.99','2005-07-30 06:06:54','2006-02-15 22:17:06'),(9989,369,1,9089,'0.99','2005-07-30 08:23:39','2006-02-15 22:17:06'),(9990,369,2,9543,'0.99','2005-07-31 01:43:34','2006-02-15 22:17:06'),(9991,369,1,9973,'4.99','2005-07-31 16:49:31','2006-02-15 22:17:06'),(9992,369,1,10299,'0.99','2005-08-01 04:08:04','2006-02-15 22:17:06'),(9993,369,2,10359,'3.99','2005-08-01 05:52:21','2006-02-15 22:17:06'),(9994,369,2,10713,'2.99','2005-08-01 18:50:05','2006-02-15 22:17:06'),(9995,369,1,11084,'4.99','2005-08-02 07:34:19','2006-02-15 22:17:06'),(9996,369,2,11388,'1.99','2005-08-02 18:35:55','2006-02-15 22:17:06'),(9997,369,1,12521,'0.99','2005-08-18 13:43:07','2006-02-15 22:17:06'),(9998,369,2,14684,'5.99','2005-08-21 20:28:26','2006-02-15 22:17:06'),(9999,369,1,13898,'0.99','2006-02-14 15:16:03','2006-02-15 22:17:07'),(10000,370,2,1190,'6.99','2005-06-15 01:05:32','2006-02-15 22:17:07'),(10001,370,2,4400,'7.99','2005-07-07 21:22:26','2006-02-15 22:17:07'),(10002,370,2,6714,'0.99','2005-07-12 13:29:06','2006-02-15 22:17:07'),(10003,370,1,6968,'0.99','2005-07-27 00:16:45','2006-02-15 22:17:07'),(10004,370,2,7152,'7.99','2005-07-27 07:15:01','2006-02-15 22:17:07'),(10005,370,1,7226,'6.99','2005-07-27 09:47:53','2006-02-15 22:17:07'),(10006,370,2,7797,'0.99','2005-07-28 07:41:07','2006-02-15 22:17:07'),(10007,370,2,8258,'0.99','2005-07-29 01:03:42','2006-02-15 22:17:07'),(10008,370,2,10095,'0.99','2005-07-31 20:38:35','2006-02-15 22:17:07'),(10009,370,1,10336,'4.99','2005-08-01 04:59:53','2006-02-15 22:17:07'),(10010,370,1,11540,'1.99','2005-08-17 00:48:03','2006-02-15 22:17:07'),(10011,370,2,11925,'0.99','2005-08-17 16:23:04','2006-02-15 22:17:07'),(10012,370,1,12339,'4.99','2005-08-18 07:05:06','2006-02-15 22:17:07'),(10013,370,1,13039,'0.99','2005-08-19 08:55:19','2006-02-15 22:17:07'),(10014,370,1,14602,'3.99','2005-08-21 17:48:49','2006-02-15 22:17:07'),(10015,370,2,14786,'2.99','2005-08-22 00:24:42','2006-02-15 22:17:07'),(10016,370,2,15368,'3.99','2005-08-22 21:57:15','2006-02-15 22:17:07'),(10017,370,1,15626,'4.99','2005-08-23 07:25:34','2006-02-15 22:17:07'),(10018,370,1,15982,'5.99','2005-08-23 20:13:31','2006-02-15 22:17:08'),(10019,371,1,26,'3.99','2005-05-25 03:36:50','2006-02-15 22:17:08'),(10020,371,2,286,'6.99','2005-05-26 19:44:51','2006-02-15 22:17:08'),(10021,371,2,381,'4.99','2005-05-27 09:43:25','2006-02-15 22:17:08'),(10022,371,1,384,'5.99','2005-05-27 10:18:20','2006-02-15 22:17:08'),(10023,371,1,825,'0.99','2005-05-29 21:49:41','2006-02-15 22:17:08'),(10024,371,1,829,'2.99','2005-05-29 22:16:42','2006-02-15 22:17:08'),(10025,371,2,1212,'2.99','2005-06-15 03:03:33','2006-02-15 22:17:08'),(10026,371,1,1218,'1.99','2005-06-15 03:24:44','2006-02-15 22:17:08'),(10027,371,1,1573,'6.99','2005-06-16 03:31:39','2006-02-15 22:17:08'),(10028,371,2,1675,'5.99','2005-06-16 11:04:47','2006-02-15 22:17:08'),(10029,371,2,2837,'0.99','2005-06-19 22:03:50','2006-02-15 22:17:08'),(10030,371,1,3176,'3.99','2005-06-20 22:31:54','2006-02-15 22:17:08'),(10031,371,2,3396,'0.99','2005-06-21 15:23:08','2006-02-15 22:17:08'),(10032,371,2,4115,'8.99','2005-07-07 06:52:23','2006-02-15 22:17:08'),(10033,371,1,4612,'1.99','2005-07-08 07:40:44','2006-02-15 22:17:08'),(10034,371,1,5171,'4.99','2005-07-09 09:26:55','2006-02-15 22:17:08'),(10035,371,2,5614,'0.99','2005-07-10 05:16:56','2006-02-15 22:17:08'),(10036,371,1,6000,'2.99','2005-07-11 01:23:06','2006-02-15 22:17:08'),(10037,371,1,6460,'1.99','2005-07-12 01:13:44','2006-02-15 22:17:08'),(10038,371,1,6922,'0.99','2005-07-12 22:39:48','2006-02-15 22:17:08'),(10039,371,1,7408,'3.99','2005-07-27 16:31:40','2006-02-15 22:17:09'),(10040,371,1,8138,'4.99','2005-07-28 20:12:17','2006-02-15 22:17:09'),(10041,371,1,9008,'4.99','2005-07-30 05:10:26','2006-02-15 22:17:09'),(10042,371,1,9117,'8.99','2005-07-30 09:20:59','2006-02-15 22:17:09'),(10043,371,1,9635,'0.99','2005-07-31 05:12:27','2006-02-15 22:17:09'),(10044,371,1,11086,'10.99','2005-08-02 07:38:44','2006-02-15 22:17:09'),(10045,371,2,12397,'9.99','2005-08-18 09:12:52','2006-02-15 22:17:09'),(10046,371,2,12584,'7.99','2005-08-18 15:51:36','2006-02-15 22:17:09'),(10047,371,1,13028,'2.99','2005-08-19 08:27:23','2006-02-15 22:17:09'),(10048,371,2,13143,'3.99','2005-08-19 12:44:38','2006-02-15 22:17:09'),(10049,371,1,13191,'4.99','2005-08-19 14:28:48','2006-02-15 22:17:09'),(10050,371,2,13953,'4.99','2005-08-20 18:00:37','2006-02-15 22:17:09'),(10051,371,1,14384,'2.99','2005-08-21 10:02:37','2006-02-15 22:17:09'),(10052,371,1,15786,'0.99','2005-08-23 13:48:34','2006-02-15 22:17:09'),(10053,371,1,15824,'2.99','2005-08-23 15:09:17','2006-02-15 22:17:09'),(10054,372,1,617,'2.99','2005-05-28 15:49:14','2006-02-15 22:17:09'),(10055,372,1,638,'2.99','2005-05-28 18:24:43','2006-02-15 22:17:09'),(10056,372,1,2315,'2.99','2005-06-18 09:03:39','2006-02-15 22:17:09'),(10057,372,1,2959,'4.99','2005-06-20 07:07:54','2006-02-15 22:17:09'),(10058,372,1,3283,'3.99','2005-06-21 06:19:07','2006-02-15 22:17:09'),(10059,372,1,5229,'4.99','2005-07-09 12:30:18','2006-02-15 22:17:09'),(10060,372,1,5314,'2.99','2005-07-09 16:05:28','2006-02-15 22:17:10'),(10061,372,1,5352,'2.99','2005-07-09 17:54:58','2006-02-15 22:17:10'),(10062,372,1,5501,'6.99','2005-07-10 00:33:48','2006-02-15 22:17:10'),(10063,372,2,5914,'7.99','2005-07-10 21:01:12','2006-02-15 22:17:10'),(10064,372,2,6692,'4.99','2005-07-12 12:35:39','2006-02-15 22:17:10'),(10065,372,1,7190,'4.99','2005-07-27 08:36:01','2006-02-15 22:17:10'),(10066,372,2,7234,'5.99','2005-07-27 10:08:45','2006-02-15 22:17:10'),(10067,372,2,7735,'4.99','2005-07-28 05:09:56','2006-02-15 22:17:10'),(10068,372,2,8009,'7.99','2005-07-28 15:25:58','2006-02-15 22:17:10'),(10069,372,1,8059,'2.99','2005-07-28 17:09:59','2006-02-15 22:17:10'),(10070,372,1,8358,'0.99','2005-07-29 05:00:58','2006-02-15 22:17:10'),(10071,372,1,8724,'0.99','2005-07-29 18:05:21','2006-02-15 22:17:10'),(10072,372,1,8755,'2.99','2005-07-29 19:18:31','2006-02-15 22:17:10'),(10073,372,2,8837,'8.99','2005-07-29 22:49:00','2006-02-15 22:17:10'),(10074,372,1,9128,'5.99','2005-07-30 09:51:14','2006-02-15 22:17:10'),(10075,372,2,11134,'10.99','2005-08-02 09:19:22','2006-02-15 22:17:10'),(10076,372,2,11438,'3.99','2005-08-02 20:21:08','2006-02-15 22:17:10'),(10077,372,2,11555,'4.99','2005-08-17 01:08:59','2006-02-15 22:17:10'),(10078,372,1,12224,'0.99','2005-08-18 02:59:09','2006-02-15 22:17:10'),(10079,372,1,12714,'3.99','2005-08-18 21:08:01','2006-02-15 22:17:10'),(10080,372,2,13402,'4.99','2005-08-19 22:16:53','2006-02-15 22:17:11'),(10081,372,2,13871,'8.99','2005-08-20 15:10:13','2006-02-15 22:17:11'),(10082,372,2,14037,'9.99','2005-08-20 21:35:58','2006-02-15 22:17:11'),(10083,372,1,14211,'4.99','2005-08-21 04:29:11','2006-02-15 22:17:11'),(10084,372,1,14331,'2.99','2005-08-21 08:29:38','2006-02-15 22:17:11'),(10085,372,1,14770,'1.99','2005-08-21 23:47:16','2006-02-15 22:17:11'),(10086,372,2,15041,'0.99','2005-08-22 09:43:18','2006-02-15 22:17:11'),(10087,372,1,15563,'2.99','2005-08-23 05:08:58','2006-02-15 22:17:11'),(10088,373,2,257,'4.99','2005-05-26 15:27:05','2006-02-15 22:17:11'),(10089,373,1,1472,'6.99','2005-06-15 20:54:55','2006-02-15 22:17:11'),(10090,373,1,3161,'2.99','2005-06-20 21:21:01','2006-02-15 22:17:11'),(10091,373,2,3609,'2.99','2005-07-06 05:36:22','2006-02-15 22:17:11'),(10092,373,2,3667,'4.99','2005-07-06 08:36:34','2006-02-15 22:17:11'),(10093,373,1,4325,'7.99','2005-07-07 17:59:24','2006-02-15 22:17:11'),(10094,373,1,5120,'5.99','2005-07-09 07:14:23','2006-02-15 22:17:11'),(10095,373,1,6202,'3.99','2005-07-11 12:24:25','2006-02-15 22:17:11'),(10096,373,2,6311,'0.99','2005-07-11 18:18:52','2006-02-15 22:17:11'),(10097,373,1,6944,'4.99','2005-07-26 23:34:02','2006-02-15 22:17:11'),(10098,373,1,7094,'0.99','2005-07-27 04:47:33','2006-02-15 22:17:11'),(10099,373,2,7206,'3.99','2005-07-27 09:07:05','2006-02-15 22:17:11'),(10100,373,1,7615,'0.99','2005-07-28 00:15:24','2006-02-15 22:17:11'),(10101,373,1,8611,'3.99','2005-07-29 13:26:21','2006-02-15 22:17:12'),(10102,373,2,9327,'8.99','2005-07-30 17:31:03','2006-02-15 22:17:12'),(10103,373,1,9397,'4.99','2005-07-30 20:07:29','2006-02-15 22:17:12'),(10104,373,2,9480,'0.99','2005-07-30 23:26:03','2006-02-15 22:17:12'),(10105,373,1,9966,'4.99','2005-07-31 16:26:46','2006-02-15 22:17:12'),(10106,373,1,10010,'6.99','2005-07-31 18:01:36','2006-02-15 22:17:12'),(10107,373,1,10221,'4.99','2005-08-01 01:16:50','2006-02-15 22:17:12'),(10108,373,1,10758,'5.99','2005-08-01 20:22:51','2006-02-15 22:17:12'),(10109,373,2,11066,'7.99','2005-08-02 06:58:32','2006-02-15 22:17:12'),(10110,373,2,11512,'7.99','2005-08-16 23:51:06','2006-02-15 22:17:12'),(10111,373,2,11663,'3.99','2005-08-17 05:30:19','2006-02-15 22:17:12'),(10112,373,2,11976,'3.99','2005-08-17 17:59:19','2006-02-15 22:17:12'),(10113,373,1,12142,'5.99','2005-08-18 00:04:12','2006-02-15 22:17:12'),(10114,373,2,12536,'5.99','2005-08-18 14:06:06','2006-02-15 22:17:12'),(10115,373,1,12748,'7.99','2005-08-18 22:29:05','2006-02-15 22:17:12'),(10116,373,2,12780,'0.99','2005-08-18 23:48:16','2006-02-15 22:17:12'),(10117,373,2,13299,'2.99','2005-08-19 18:46:33','2006-02-15 22:17:12'),(10118,373,1,13329,'3.99','2005-08-19 19:56:55','2006-02-15 22:17:12'),(10119,373,2,13467,'2.99','2005-08-20 00:56:44','2006-02-15 22:17:12'),(10120,373,2,15014,'6.99','2005-08-22 08:43:11','2006-02-15 22:17:12'),(10121,373,1,15068,'3.99','2005-08-22 10:50:13','2006-02-15 22:17:13'),(10122,373,1,11739,'0.99','2006-02-14 15:16:03','2006-02-15 22:17:13'),(10123,374,1,521,'0.99','2005-05-28 03:32:22','2006-02-15 22:17:13'),(10124,374,2,910,'2.99','2005-05-30 10:46:16','2006-02-15 22:17:13'),(10125,374,2,919,'0.99','2005-05-30 11:35:06','2006-02-15 22:17:13'),(10126,374,1,1548,'1.99','2005-06-16 01:43:33','2006-02-15 22:17:13'),(10127,374,2,2046,'1.99','2005-06-17 14:39:50','2006-02-15 22:17:13'),(10128,374,2,2487,'4.99','2005-06-18 21:32:54','2006-02-15 22:17:13'),(10129,374,2,2641,'2.99','2005-06-19 09:38:33','2006-02-15 22:17:13'),(10130,374,1,3797,'1.99','2005-07-06 14:54:52','2006-02-15 22:17:13'),(10131,374,1,5463,'4.99','2005-07-09 22:57:02','2006-02-15 22:17:13'),(10132,374,1,5570,'6.99','2005-07-10 03:46:47','2006-02-15 22:17:13'),(10133,374,2,5591,'3.99','2005-07-10 04:25:03','2006-02-15 22:17:13'),(10134,374,2,5945,'2.99','2005-07-10 22:52:42','2006-02-15 22:17:13'),(10135,374,2,6315,'0.99','2005-07-11 18:42:49','2006-02-15 22:17:13'),(10136,374,2,7837,'0.99','2005-07-28 08:58:32','2006-02-15 22:17:13'),(10137,374,2,8586,'7.99','2005-07-29 12:16:34','2006-02-15 22:17:13'),(10138,374,2,9113,'0.99','2005-07-30 09:09:03','2006-02-15 22:17:13'),(10139,374,1,9866,'6.99','2005-07-31 13:13:50','2006-02-15 22:17:13'),(10140,374,1,10695,'2.99','2005-08-01 18:16:20','2006-02-15 22:17:13'),(10141,374,1,11619,'0.99','2005-08-17 04:03:26','2006-02-15 22:17:13'),(10142,374,2,12696,'2.99','2005-08-18 20:13:08','2006-02-15 22:17:14'),(10143,374,1,13337,'2.99','2005-08-19 20:06:57','2006-02-15 22:17:14'),(10144,374,2,13734,'4.99','2005-08-20 10:29:57','2006-02-15 22:17:14'),(10145,374,2,14524,'8.99','2005-08-21 15:05:27','2006-02-15 22:17:14'),(10146,374,2,15053,'5.99','2005-08-22 10:13:09','2006-02-15 22:17:14'),(10147,374,1,15200,'2.99','2005-08-22 16:22:53','2006-02-15 22:17:14'),(10148,374,2,15202,'4.99','2005-08-22 16:26:53','2006-02-15 22:17:14'),(10149,374,2,15366,'6.99','2005-08-22 21:45:57','2006-02-15 22:17:14'),(10150,374,2,15966,'2.99','2006-02-14 15:16:03','2006-02-15 22:17:14'),(10151,375,2,307,'8.99','2005-05-26 21:48:13','2006-02-15 22:17:14'),(10152,375,1,412,'4.99','2005-05-27 14:17:23','2006-02-15 22:17:14'),(10153,375,2,749,'4.99','2005-05-29 09:33:33','2006-02-15 22:17:14'),(10154,375,1,873,'2.99','2005-05-30 05:15:20','2006-02-15 22:17:14'),(10155,375,2,1404,'2.99','2005-06-15 16:38:53','2006-02-15 22:17:14'),(10156,375,1,1499,'5.99','2005-06-15 21:58:07','2006-02-15 22:17:14'),(10157,375,1,2236,'4.99','2005-06-18 04:12:33','2006-02-15 22:17:14'),(10158,375,1,3981,'6.99','2005-07-06 23:12:12','2006-02-15 22:17:14'),(10159,375,2,4335,'4.99','2005-07-07 18:33:57','2006-02-15 22:17:14'),(10160,375,2,5474,'2.99','2005-07-09 23:23:57','2006-02-15 22:17:14'),(10161,375,1,7856,'4.99','2005-07-28 09:48:24','2006-02-15 22:17:14'),(10162,375,2,8900,'2.99','2005-07-30 01:07:03','2006-02-15 22:17:14'),(10163,375,1,10274,'0.99','2005-08-01 03:16:51','2006-02-15 22:17:15'),(10164,375,2,10589,'1.99','2005-08-01 14:11:09','2006-02-15 22:17:15'),(10165,375,1,10640,'0.99','2005-08-01 15:44:51','2006-02-15 22:17:15'),(10166,375,1,10672,'4.99','2005-08-01 17:10:54','2006-02-15 22:17:15'),(10167,375,1,10859,'5.99','2005-08-02 00:11:39','2006-02-15 22:17:15'),(10168,375,1,10961,'6.99','2005-08-02 03:47:55','2006-02-15 22:17:15'),(10169,375,2,11008,'5.99','2005-08-02 05:06:17','2006-02-15 22:17:15'),(10170,375,2,12122,'9.99','2005-08-17 23:20:45','2006-02-15 22:17:15'),(10171,375,2,12663,'0.99','2005-08-18 19:10:52','2006-02-15 22:17:15'),(10172,375,1,13836,'4.99','2005-08-20 14:18:16','2006-02-15 22:17:15'),(10173,375,1,15004,'2.99','2005-08-22 08:15:21','2006-02-15 22:17:15'),(10174,375,1,15505,'4.99','2005-08-23 02:46:13','2006-02-15 22:17:15'),(10175,376,1,554,'0.99','2005-05-28 08:23:16','2006-02-15 22:17:15'),(10176,376,2,1208,'0.99','2005-06-15 02:30:03','2006-02-15 22:17:15'),(10177,376,1,2779,'0.99','2005-06-19 18:19:07','2006-02-15 22:17:15'),(10178,376,2,3719,'2.99','2005-07-06 11:05:55','2006-02-15 22:17:15'),(10179,376,1,4163,'0.99','2005-07-07 09:19:28','2006-02-15 22:17:15'),(10180,376,2,4166,'8.99','2005-07-07 09:33:30','2006-02-15 22:17:15'),(10181,376,1,4320,'3.99','2005-07-07 17:51:59','2006-02-15 22:17:15'),(10182,376,1,4554,'5.99','2005-07-08 04:48:03','2006-02-15 22:17:15'),(10183,376,1,4869,'4.99','2005-07-08 19:14:05','2006-02-15 22:17:16'),(10184,376,1,5675,'4.99','2005-07-10 08:31:06','2006-02-15 22:17:16'),(10185,376,1,6524,'6.99','2005-07-12 04:14:35','2006-02-15 22:17:16'),(10186,376,1,6545,'8.99','2005-07-12 04:56:30','2006-02-15 22:17:16'),(10187,376,2,6807,'2.99','2005-07-12 17:33:53','2006-02-15 22:17:16'),(10188,376,1,8269,'2.99','2005-07-29 01:26:54','2006-02-15 22:17:16'),(10189,376,1,8420,'5.99','2005-07-29 07:00:45','2006-02-15 22:17:16'),(10190,376,1,9773,'4.99','2005-07-31 09:56:56','2006-02-15 22:17:16'),(10191,376,1,9828,'2.99','2005-07-31 11:56:57','2006-02-15 22:17:16'),(10192,376,1,9872,'0.99','2005-07-31 13:27:55','2006-02-15 22:17:16'),(10193,376,2,10413,'3.99','2005-08-01 07:59:39','2006-02-15 22:17:16'),(10194,376,1,10810,'3.99','2005-08-01 22:40:39','2006-02-15 22:17:16'),(10195,376,1,11144,'4.99','2005-08-02 09:39:17','2006-02-15 22:17:16'),(10196,376,2,11792,'4.99','2005-08-17 11:03:53','2006-02-15 22:17:16'),(10197,376,1,11851,'4.99','2005-08-17 13:30:27','2006-02-15 22:17:16'),(10198,376,1,13009,'0.99','2005-08-19 07:50:35','2006-02-15 22:17:16'),(10199,376,1,13141,'0.99','2005-08-19 12:41:41','2006-02-15 22:17:16'),(10200,376,2,13761,'4.99','2005-08-20 11:28:50','2006-02-15 22:17:16'),(10201,376,1,15107,'4.99','2005-08-22 12:05:02','2006-02-15 22:17:16'),(10202,376,1,15382,'2.99','2005-08-22 22:30:50','2006-02-15 22:17:16'),(10203,377,2,2556,'3.99','2005-06-19 03:07:32','2006-02-15 22:17:16'),(10204,377,1,3080,'1.99','2005-06-20 15:22:32','2006-02-15 22:17:17'),(10205,377,2,3086,'0.99','2005-06-20 15:42:40','2006-02-15 22:17:17'),(10206,377,2,3136,'2.99','2005-06-20 19:39:08','2006-02-15 22:17:17'),(10207,377,2,3443,'4.99','2005-06-21 20:19:00','2006-02-15 22:17:17'),(10208,377,1,3858,'2.99','2005-07-06 17:17:57','2006-02-15 22:17:17'),(10209,377,2,4053,'0.99','2005-07-07 03:39:22','2006-02-15 22:17:17'),(10210,377,1,4077,'0.99','2005-07-07 04:53:40','2006-02-15 22:17:17'),(10211,377,1,4225,'0.99','2005-07-07 12:24:37','2006-02-15 22:17:17'),(10212,377,2,6893,'7.99','2005-07-12 21:20:11','2006-02-15 22:17:17'),(10213,377,1,7697,'1.99','2005-07-28 03:43:45','2006-02-15 22:17:17'),(10214,377,2,8018,'10.99','2005-07-28 15:36:48','2006-02-15 22:17:17'),(10215,377,2,8916,'4.99','2005-07-30 01:42:21','2006-02-15 22:17:17'),(10216,377,2,9461,'3.99','2005-07-30 22:29:13','2006-02-15 22:17:17'),(10217,377,1,9564,'0.99','2005-07-31 02:31:37','2006-02-15 22:17:17'),(10218,377,1,10013,'4.99','2005-07-31 18:08:21','2006-02-15 22:17:17'),(10219,377,1,10183,'8.99','2005-08-01 00:08:01','2006-02-15 22:17:17'),(10220,377,1,10738,'3.99','2005-08-01 19:39:08','2006-02-15 22:17:17'),(10221,377,1,10943,'2.99','2005-08-02 03:17:29','2006-02-15 22:17:17'),(10222,377,1,12390,'1.99','2005-08-18 08:51:42','2006-02-15 22:17:17'),(10223,377,1,12549,'4.99','2005-08-18 14:38:07','2006-02-15 22:17:17'),(10224,377,1,13249,'2.99','2005-08-19 16:47:41','2006-02-15 22:17:17'),(10225,377,1,13275,'0.99','2005-08-19 17:53:38','2006-02-15 22:17:18'),(10226,377,2,15088,'0.99','2005-08-22 11:28:26','2006-02-15 22:17:18'),(10227,377,1,15995,'0.99','2005-08-23 20:29:56','2006-02-15 22:17:18'),(10228,377,1,15999,'7.99','2005-08-23 20:44:10','2006-02-15 22:17:18'),(10229,378,1,347,'0.99','2005-05-27 04:40:33','2006-02-15 22:17:18'),(10230,378,2,1623,'4.99','2005-06-16 07:48:50','2006-02-15 22:17:18'),(10231,378,1,1662,'5.99','2005-06-16 10:13:35','2006-02-15 22:17:18'),(10232,378,2,2134,'7.99','2005-06-17 21:13:44','2006-02-15 22:17:18'),(10233,378,2,2713,'4.99','2005-06-19 14:23:09','2006-02-15 22:17:18'),(10234,378,1,3759,'4.99','2005-07-06 12:46:38','2006-02-15 22:17:18'),(10235,378,2,4755,'0.99','2005-07-08 14:23:41','2006-02-15 22:17:18'),(10236,378,1,5578,'1.99','2005-07-10 04:00:31','2006-02-15 22:17:18'),(10237,378,2,6233,'1.99','2005-07-11 14:10:47','2006-02-15 22:17:18'),(10238,378,1,7888,'0.99','2005-07-28 10:40:24','2006-02-15 22:17:18'),(10239,378,2,8740,'2.99','2005-07-29 18:41:31','2006-02-15 22:17:18'),(10240,378,2,9668,'3.99','2005-07-31 06:31:03','2006-02-15 22:17:18'),(10241,378,1,9868,'2.99','2005-07-31 13:20:08','2006-02-15 22:17:18'),(10242,378,1,10917,'4.99','2005-08-02 02:06:18','2006-02-15 22:17:18'),(10243,378,1,11111,'4.99','2005-08-02 08:21:27','2006-02-15 22:17:18'),(10244,378,1,12596,'2.99','2005-08-18 16:29:35','2006-02-15 22:17:18'),(10245,378,1,12828,'4.99','2005-08-19 01:37:47','2006-02-15 22:17:19'),(10246,378,2,14502,'4.99','2005-08-21 14:22:28','2006-02-15 22:17:19'),(10247,378,1,14971,'2.99','2005-08-22 06:52:49','2006-02-15 22:17:19'),(10248,379,2,209,'4.99','2005-05-26 08:14:01','2006-02-15 22:17:19'),(10249,379,1,863,'4.99','2005-05-30 03:14:59','2006-02-15 22:17:19'),(10250,379,1,1383,'8.99','2005-06-15 15:20:06','2006-02-15 22:17:19'),(10251,379,1,2313,'5.99','2005-06-18 08:56:45','2006-02-15 22:17:19'),(10252,379,1,2926,'2.99','2005-06-20 04:37:45','2006-02-15 22:17:19'),(10253,379,1,3788,'4.99','2005-07-06 14:02:02','2006-02-15 22:17:19'),(10254,379,2,4740,'2.99','2005-07-08 13:30:35','2006-02-15 22:17:19'),(10255,379,1,5402,'4.99','2005-07-09 20:01:58','2006-02-15 22:17:19'),(10256,379,1,6235,'7.99','2005-07-11 14:17:51','2006-02-15 22:17:19'),(10257,379,2,7041,'4.99','2005-07-27 03:18:32','2006-02-15 22:17:19'),(10258,379,1,10041,'4.99','2005-07-31 19:01:02','2006-02-15 22:17:19'),(10259,379,2,11457,'3.99','2005-08-02 21:14:16','2006-02-15 22:17:19'),(10260,379,1,12503,'4.99','2005-08-18 13:16:46','2006-02-15 22:17:19'),(10261,379,1,13334,'0.99','2005-08-19 20:02:33','2006-02-15 22:17:19'),(10262,379,2,13397,'7.99','2005-08-19 22:06:35','2006-02-15 22:17:19'),(10263,379,1,13485,'0.99','2005-08-20 01:20:14','2006-02-15 22:17:19'),(10264,379,1,14011,'5.99','2005-08-20 20:32:56','2006-02-15 22:17:19'),(10265,379,2,14152,'2.99','2005-08-21 02:23:50','2006-02-15 22:17:19'),(10266,379,1,14470,'0.99','2005-08-21 13:09:41','2006-02-15 22:17:20'),(10267,379,1,14886,'4.99','2005-08-22 03:59:01','2006-02-15 22:17:20'),(10268,379,2,15399,'4.99','2005-08-22 23:11:59','2006-02-15 22:17:20'),(10269,379,1,15446,'4.99','2005-08-23 00:49:24','2006-02-15 22:17:20'),(10270,379,2,15930,'3.99','2005-08-23 18:26:51','2006-02-15 22:17:20'),(10271,380,1,847,'3.99','2005-05-30 01:18:15','2006-02-15 22:17:20'),(10272,380,1,1868,'3.99','2005-06-17 02:03:22','2006-02-15 22:17:20'),(10273,380,1,1984,'2.99','2005-06-17 10:25:28','2006-02-15 22:17:20'),(10274,380,1,2018,'3.99','2005-06-17 12:35:58','2006-02-15 22:17:20'),(10275,380,1,2440,'2.99','2005-06-18 18:41:09','2006-02-15 22:17:20'),(10276,380,1,2464,'4.99','2005-06-18 20:06:05','2006-02-15 22:17:20'),(10277,380,2,2998,'1.99','2005-06-20 09:30:22','2006-02-15 22:17:20'),(10278,380,2,3099,'1.99','2005-06-20 16:44:33','2006-02-15 22:17:20'),(10279,380,1,3260,'4.99','2005-06-21 03:59:13','2006-02-15 22:17:20'),(10280,380,1,3637,'2.99','2005-07-06 07:06:31','2006-02-15 22:17:20'),(10281,380,1,3688,'4.99','2005-07-06 09:41:53','2006-02-15 22:17:20'),(10282,380,1,4675,'2.99','2005-07-08 10:24:22','2006-02-15 22:17:20'),(10283,380,2,4706,'4.99','2005-07-08 11:51:41','2006-02-15 22:17:20'),(10284,380,2,5339,'0.99','2005-07-09 17:09:17','2006-02-15 22:17:20'),(10285,380,2,7021,'8.99','2005-07-27 02:26:38','2006-02-15 22:17:20'),(10286,380,2,7167,'2.99','2005-07-27 07:37:26','2006-02-15 22:17:20'),(10287,380,2,7435,'0.99','2005-07-27 17:38:44','2006-02-15 22:17:21'),(10288,380,2,7443,'2.99','2005-07-27 17:47:43','2006-02-15 22:17:21'),(10289,380,1,7773,'2.99','2005-07-28 07:02:17','2006-02-15 22:17:21'),(10290,380,1,7974,'3.99','2005-07-28 14:11:57','2006-02-15 22:17:21'),(10291,380,1,9056,'0.99','2005-07-30 07:13:20','2006-02-15 22:17:21'),(10292,380,1,9261,'6.99','2005-07-30 14:39:35','2006-02-15 22:17:21'),(10293,380,1,9710,'10.99','2005-07-31 08:05:31','2006-02-15 22:17:21'),(10294,380,2,10450,'1.99','2005-08-01 09:10:03','2006-02-15 22:17:21'),(10295,380,1,10983,'3.99','2005-08-02 04:24:23','2006-02-15 22:17:21'),(10296,380,1,11936,'0.99','2005-08-17 16:45:34','2006-02-15 22:17:21'),(10297,380,2,11945,'0.99','2005-08-17 17:05:33','2006-02-15 22:17:21'),(10298,380,1,12636,'3.99','2005-08-18 18:00:29','2006-02-15 22:17:21'),(10299,380,1,12996,'6.99','2005-08-19 07:31:32','2006-02-15 22:17:21'),(10300,380,1,14529,'6.99','2005-08-21 15:08:31','2006-02-15 22:17:21'),(10301,380,1,14935,'1.99','2005-08-22 05:47:31','2006-02-15 22:17:21'),(10302,380,2,15175,'5.99','2005-08-22 15:29:15','2006-02-15 22:17:21'),(10303,380,1,15361,'2.99','2005-08-22 21:39:45','2006-02-15 22:17:21'),(10304,380,2,15636,'2.99','2005-08-23 07:50:46','2006-02-15 22:17:21'),(10305,380,1,15697,'2.99','2005-08-23 10:04:36','2006-02-15 22:17:21'),(10306,380,2,15748,'2.99','2005-08-23 12:33:00','2006-02-15 22:17:21'),(10307,381,2,169,'0.99','2005-05-26 03:09:30','2006-02-15 22:17:22'),(10308,381,2,406,'2.99','2005-05-27 13:46:46','2006-02-15 22:17:22'),(10309,381,1,835,'2.99','2005-05-29 23:37:00','2006-02-15 22:17:22'),(10310,381,1,1402,'3.99','2005-06-15 16:31:08','2006-02-15 22:17:22'),(10311,381,1,1878,'1.99','2005-06-17 02:55:32','2006-02-15 22:17:22'),(10312,381,2,2410,'2.99','2005-06-18 16:55:08','2006-02-15 22:17:22'),(10313,381,1,2418,'4.99','2005-06-18 17:14:42','2006-02-15 22:17:22'),(10314,381,2,3425,'2.99','2005-06-21 18:07:07','2006-02-15 22:17:22'),(10315,381,2,3812,'0.99','2005-07-06 15:22:19','2006-02-15 22:17:22'),(10316,381,2,3970,'2.99','2005-07-06 22:48:17','2006-02-15 22:17:22'),(10317,381,1,4735,'0.99','2005-07-08 13:12:27','2006-02-15 22:17:22'),(10318,381,2,5689,'0.99','2005-07-10 09:24:17','2006-02-15 22:17:22'),(10319,381,2,6116,'2.99','2005-07-11 07:37:38','2006-02-15 22:17:22'),(10320,381,2,6451,'4.99','2005-07-12 00:52:19','2006-02-15 22:17:22'),(10321,381,2,6778,'2.99','2005-07-12 16:06:00','2006-02-15 22:17:22'),(10322,381,1,7375,'2.99','2005-07-27 15:22:33','2006-02-15 22:17:22'),(10323,381,1,7645,'2.99','2005-07-28 01:27:42','2006-02-15 22:17:22'),(10324,381,2,8688,'0.99','2005-07-29 16:31:32','2006-02-15 22:17:22'),(10325,381,2,9144,'0.99','2005-07-30 10:22:15','2006-02-15 22:17:22'),(10326,381,2,9173,'4.99','2005-07-30 11:40:10','2006-02-15 22:17:22'),(10327,381,1,9822,'2.99','2005-07-31 11:48:25','2006-02-15 22:17:22'),(10328,381,2,10033,'4.99','2005-07-31 18:44:29','2006-02-15 22:17:23'),(10329,381,1,10608,'0.99','2005-08-01 14:48:41','2006-02-15 22:17:23'),(10330,381,2,10705,'0.99','2005-08-01 18:38:54','2006-02-15 22:17:23'),(10331,381,1,11519,'2.99','2005-08-17 00:01:27','2006-02-15 22:17:23'),(10332,381,2,12135,'2.99','2005-08-17 23:50:24','2006-02-15 22:17:23'),(10333,381,2,12237,'4.99','2005-08-18 03:24:38','2006-02-15 22:17:23'),(10334,381,2,12632,'2.99','2005-08-18 17:54:21','2006-02-15 22:17:23'),(10335,381,2,13202,'8.99','2005-08-19 14:58:30','2006-02-15 22:17:23'),(10336,381,2,13430,'0.99','2005-08-19 23:25:43','2006-02-15 22:17:23'),(10337,381,1,13614,'0.99','2005-08-20 06:28:37','2006-02-15 22:17:23'),(10338,381,2,13995,'2.99','2005-08-20 19:34:43','2006-02-15 22:17:23'),(10339,381,1,14198,'4.99','2005-08-21 03:48:31','2006-02-15 22:17:23'),(10340,381,2,15299,'4.99','2005-08-22 19:42:57','2006-02-15 22:17:23'),(10341,381,1,15747,'4.99','2005-08-23 12:29:24','2006-02-15 22:17:23'),(10342,382,2,356,'2.99','2005-05-27 06:32:30','2006-02-15 22:17:23'),(10343,382,1,522,'2.99','2005-05-28 03:33:20','2006-02-15 22:17:23'),(10344,382,1,2389,'0.99','2005-06-18 15:27:47','2006-02-15 22:17:23'),(10345,382,1,2468,'4.99','2005-06-18 20:23:52','2006-02-15 22:17:23'),(10346,382,1,2489,'1.99','2005-06-18 22:00:44','2006-02-15 22:17:23'),(10347,382,1,2514,'2.99','2005-06-18 23:56:44','2006-02-15 22:17:23'),(10348,382,2,3125,'4.99','2005-06-20 18:31:58','2006-02-15 22:17:24'),(10349,382,2,3480,'3.99','2005-07-05 23:11:43','2006-02-15 22:17:24'),(10350,382,2,4351,'4.99','2005-07-07 19:04:24','2006-02-15 22:17:24'),(10351,382,1,5004,'4.99','2005-07-09 01:20:50','2006-02-15 22:17:24'),(10352,382,1,5816,'0.99','2005-07-10 15:48:47','2006-02-15 22:17:24'),(10353,382,2,7625,'0.99','2005-07-28 00:47:56','2006-02-15 22:17:24'),(10354,382,2,8777,'0.99','2005-07-29 20:10:21','2006-02-15 22:17:24'),(10355,382,1,8871,'9.99','2005-07-30 00:12:41','2006-02-15 22:17:24'),(10356,382,1,8993,'4.99','2005-07-30 04:51:25','2006-02-15 22:17:24'),(10357,382,1,9067,'6.99','2005-07-30 07:31:01','2006-02-15 22:17:24'),(10358,382,2,9555,'0.99','2005-07-31 02:11:16','2006-02-15 22:17:24'),(10359,382,2,10327,'3.99','2005-08-01 04:55:35','2006-02-15 22:17:24'),(10360,382,2,12229,'0.99','2005-08-18 03:08:23','2006-02-15 22:17:24'),(10361,382,2,12529,'0.99','2005-08-18 13:53:36','2006-02-15 22:17:24'),(10362,382,1,14009,'4.99','2005-08-20 20:26:53','2006-02-15 22:17:24'),(10363,382,2,14300,'4.99','2005-08-21 07:19:37','2006-02-15 22:17:24'),(10364,382,2,14354,'5.99','2005-08-21 09:08:14','2006-02-15 22:17:24'),(10365,382,2,15939,'7.99','2005-08-23 18:44:21','2006-02-15 22:17:24'),(10366,383,2,63,'0.99','2005-05-25 09:19:16','2006-02-15 22:17:24'),(10367,383,1,766,'8.99','2005-05-29 11:47:02','2006-02-15 22:17:24'),(10368,383,1,1831,'7.99','2005-06-16 22:22:17','2006-02-15 22:17:25'),(10369,383,2,2228,'2.99','2005-06-18 03:44:50','2006-02-15 22:17:25'),(10370,383,1,2252,'2.99','2005-06-18 05:05:18','2006-02-15 22:17:25'),(10371,383,2,2318,'2.99','2005-06-18 09:13:54','2006-02-15 22:17:25'),(10372,383,1,2609,'7.99','2005-06-19 07:13:12','2006-02-15 22:17:25'),(10373,383,1,3091,'2.99','2005-06-20 16:02:59','2006-02-15 22:17:25'),(10374,383,2,4747,'5.99','2005-07-08 13:53:01','2006-02-15 22:17:25'),(10375,383,2,6091,'4.99','2005-07-11 05:49:18','2006-02-15 22:17:25'),(10376,383,2,6244,'0.99','2005-07-11 14:53:38','2006-02-15 22:17:25'),(10377,383,1,6775,'4.99','2005-07-12 16:01:44','2006-02-15 22:17:25'),(10378,383,1,7367,'3.99','2005-07-27 15:05:45','2006-02-15 22:17:25'),(10379,383,2,8367,'2.99','2005-07-29 05:11:19','2006-02-15 22:17:25'),(10380,383,1,8635,'0.99','2005-07-29 14:22:48','2006-02-15 22:17:25'),(10381,383,1,9653,'0.99','2005-07-31 05:55:38','2006-02-15 22:17:25'),(10382,383,1,9678,'0.99','2005-07-31 06:40:47','2006-02-15 22:17:25'),(10383,383,2,10515,'4.99','2005-08-01 11:41:33','2006-02-15 22:17:25'),(10384,383,1,10971,'4.99','2005-08-02 04:08:17','2006-02-15 22:17:25'),(10385,383,2,10993,'0.99','2005-08-02 04:45:01','2006-02-15 22:17:25'),(10386,383,2,11122,'0.99','2005-08-02 08:49:09','2006-02-15 22:17:25'),(10387,383,1,11592,'2.99','2005-08-17 02:36:04','2006-02-15 22:17:25'),(10388,383,1,12735,'4.99','2005-08-18 22:04:54','2006-02-15 22:17:25'),(10389,383,2,14039,'4.99','2005-08-20 21:39:43','2006-02-15 22:17:26'),(10390,383,2,14678,'4.99','2005-08-21 20:12:43','2006-02-15 22:17:26'),(10391,383,1,15416,'1.99','2005-08-22 23:51:23','2006-02-15 22:17:26'),(10392,383,1,15881,'6.99','2005-08-23 16:44:25','2006-02-15 22:17:26'),(10393,384,2,103,'4.99','2005-05-25 17:30:42','2006-02-15 22:17:26'),(10394,384,2,279,'2.99','2005-05-26 18:02:50','2006-02-15 22:17:26'),(10395,384,1,898,'0.99','2005-05-30 09:26:19','2006-02-15 22:17:26'),(10396,384,2,1013,'2.99','2005-05-31 02:37:00','2006-02-15 22:17:26'),(10397,384,1,1961,'0.99','2005-06-17 09:02:58','2006-02-15 22:17:26'),(10398,384,2,2020,'0.99','2005-06-17 12:39:50','2006-02-15 22:17:26'),(10399,384,1,2378,'7.99','2005-06-18 14:57:49','2006-02-15 22:17:26'),(10400,384,2,2510,'5.99','2005-06-18 23:44:21','2006-02-15 22:17:26'),(10401,384,2,2935,'3.99','2005-06-20 05:07:24','2006-02-15 22:17:26'),(10402,384,1,3088,'9.99','2005-06-20 15:56:05','2006-02-15 22:17:26'),(10403,384,2,3101,'4.99','2005-06-20 16:48:58','2006-02-15 22:17:26'),(10404,384,2,4424,'0.99','2005-07-07 22:14:43','2006-02-15 22:17:26'),(10405,384,2,5250,'0.99','2005-07-09 13:35:32','2006-02-15 22:17:26'),(10406,384,1,5608,'4.99','2005-07-10 05:08:26','2006-02-15 22:17:26'),(10407,384,2,5797,'4.99','2005-07-10 14:43:52','2006-02-15 22:17:26'),(10408,384,2,5966,'2.99','2005-07-10 23:59:27','2006-02-15 22:17:26'),(10409,384,2,6387,'0.99','2005-07-11 22:15:56','2006-02-15 22:17:27'),(10410,384,2,7799,'0.99','2005-07-28 07:42:09','2006-02-15 22:17:27'),(10411,384,1,8445,'1.99','2005-07-29 07:37:48','2006-02-15 22:17:27'),(10412,384,2,11773,'5.99','2005-08-17 10:19:51','2006-02-15 22:17:27'),(10413,384,2,13521,'2.99','2005-08-20 02:42:28','2006-02-15 22:17:27'),(10414,384,2,14416,'2.99','2005-08-21 11:11:46','2006-02-15 22:17:27'),(10415,384,1,14841,'0.99','2005-08-22 02:03:30','2006-02-15 22:17:27'),(10416,384,1,14963,'5.99','2005-08-22 06:38:10','2006-02-15 22:17:27'),(10417,384,2,15321,'4.99','2005-08-22 20:20:04','2006-02-15 22:17:27'),(10418,385,1,917,'2.99','2005-05-30 11:27:06','2006-02-15 22:17:27'),(10419,385,2,1038,'4.99','2005-05-31 05:23:47','2006-02-15 22:17:27'),(10420,385,1,1746,'2.99','2005-06-16 16:41:19','2006-02-15 22:17:27'),(10421,385,1,1937,'0.99','2005-06-17 07:16:46','2006-02-15 22:17:27'),(10422,385,1,3105,'0.99','2005-06-20 17:11:46','2006-02-15 22:17:27'),(10423,385,2,3878,'8.99','2005-07-06 18:27:09','2006-02-15 22:17:27'),(10424,385,2,3953,'0.99','2005-07-06 21:54:55','2006-02-15 22:17:27'),(10425,385,1,4714,'6.99','2005-07-08 12:12:48','2006-02-15 22:17:27'),(10426,385,1,5783,'2.99','2005-07-10 13:55:33','2006-02-15 22:17:27'),(10427,385,1,6445,'4.99','2005-07-12 00:37:02','2006-02-15 22:17:27'),(10428,385,2,6933,'4.99','2005-07-26 23:09:23','2006-02-15 22:17:27'),(10429,385,2,7776,'0.99','2005-07-28 07:04:36','2006-02-15 22:17:28'),(10430,385,1,8346,'2.99','2005-07-29 04:48:22','2006-02-15 22:17:28'),(10431,385,1,8518,'2.99','2005-07-29 10:05:27','2006-02-15 22:17:28'),(10432,385,1,9570,'2.99','2005-07-31 02:40:37','2006-02-15 22:17:28'),(10433,385,1,9704,'4.99','2005-07-31 07:39:32','2006-02-15 22:17:28'),(10434,385,1,10557,'0.99','2005-08-01 12:59:24','2006-02-15 22:17:28'),(10435,385,1,10636,'3.99','2005-08-01 15:40:35','2006-02-15 22:17:28'),(10436,385,1,10655,'4.99','2005-08-01 16:33:27','2006-02-15 22:17:28'),(10437,385,1,11021,'2.99','2005-08-02 05:30:11','2006-02-15 22:17:28'),(10438,385,1,11559,'2.99','2005-08-17 01:20:26','2006-02-15 22:17:28'),(10439,385,2,12310,'2.99','2005-08-18 06:02:34','2006-02-15 22:17:28'),(10440,385,2,12686,'8.99','2005-08-18 19:55:09','2006-02-15 22:17:28'),(10441,385,2,13062,'7.99','2005-08-19 09:44:17','2006-02-15 22:17:28'),(10442,385,1,13117,'0.99','2005-08-19 11:33:20','2006-02-15 22:17:28'),(10443,385,1,15488,'6.99','2005-08-23 02:06:01','2006-02-15 22:17:28'),(10444,386,1,583,'7.99','2005-05-28 11:48:55','2006-02-15 22:17:28'),(10445,386,2,1585,'3.99','2005-06-16 04:51:13','2006-02-15 22:17:28'),(10446,386,1,1608,'2.99','2005-06-16 06:28:57','2006-02-15 22:17:28'),(10447,386,2,1819,'5.99','2005-06-16 21:32:50','2006-02-15 22:17:28'),(10448,386,1,2732,'0.99','2005-06-19 15:19:39','2006-02-15 22:17:28'),(10449,386,1,3351,'2.99','2005-06-21 11:21:39','2006-02-15 22:17:29'),(10450,386,2,3783,'6.99','2005-07-06 13:57:31','2006-02-15 22:17:29'),(10451,386,1,4189,'8.99','2005-07-07 10:51:07','2006-02-15 22:17:29'),(10452,386,1,5524,'0.99','2005-07-10 01:49:24','2006-02-15 22:17:29'),(10453,386,1,5953,'2.99','2005-07-10 23:21:35','2006-02-15 22:17:29'),(10454,386,1,6037,'4.99','2005-07-11 03:06:54','2006-02-15 22:17:29'),(10455,386,1,6222,'2.99','2005-07-11 13:25:49','2006-02-15 22:17:29'),(10456,386,2,6261,'2.99','2005-07-11 15:28:34','2006-02-15 22:17:29'),(10457,386,1,6324,'3.99','2005-07-11 19:02:34','2006-02-15 22:17:29'),(10458,386,2,6715,'4.99','2005-07-12 13:32:28','2006-02-15 22:17:29'),(10459,386,2,8340,'4.99','2005-07-29 04:41:44','2006-02-15 22:17:29'),(10460,386,1,8751,'2.99','2005-07-29 19:14:39','2006-02-15 22:17:29'),(10461,386,2,9602,'0.99','2005-07-31 03:42:51','2006-02-15 22:17:29'),(10462,386,1,9686,'5.99','2005-07-31 06:50:06','2006-02-15 22:17:29'),(10463,386,1,10572,'4.99','2005-08-01 13:26:53','2006-02-15 22:17:29'),(10464,386,2,10618,'3.99','2005-08-01 15:06:38','2006-02-15 22:17:29'),(10465,386,1,10715,'2.99','2005-08-01 18:51:48','2006-02-15 22:17:29'),(10466,386,2,11128,'2.99','2005-08-02 09:03:25','2006-02-15 22:17:30'),(10467,386,2,11695,'4.99','2005-08-17 07:01:08','2006-02-15 22:17:30'),(10468,386,2,12961,'2.99','2005-08-19 06:22:37','2006-02-15 22:17:30'),(10469,386,1,13716,'3.99','2005-08-20 09:48:32','2006-02-15 22:17:30'),(10470,386,1,13764,'2.99','2005-08-20 11:38:16','2006-02-15 22:17:30'),(10471,386,2,13869,'6.99','2005-08-20 15:08:57','2006-02-15 22:17:30'),(10472,386,1,15949,'0.99','2005-08-23 19:06:04','2006-02-15 22:17:30'),(10473,387,2,302,'4.99','2005-05-26 21:13:46','2006-02-15 22:17:30'),(10474,387,1,697,'7.99','2005-05-29 02:04:04','2006-02-15 22:17:30'),(10475,387,1,841,'4.99','2005-05-30 00:31:17','2006-02-15 22:17:30'),(10476,387,1,1127,'3.99','2005-05-31 17:45:49','2006-02-15 22:17:30'),(10477,387,1,1464,'0.99','2005-06-15 20:38:14','2006-02-15 22:17:30'),(10478,387,2,1465,'0.99','2005-06-15 20:43:08','2006-02-15 22:17:30'),(10479,387,1,2068,'0.99','2005-06-17 16:11:46','2006-02-15 22:17:30'),(10480,387,2,2100,'0.99','2005-06-17 18:53:21','2006-02-15 22:17:30'),(10481,387,2,2981,'5.99','2005-06-20 08:35:17','2006-02-15 22:17:30'),(10482,387,2,3378,'4.99','2005-06-21 13:51:28','2006-02-15 22:17:30'),(10483,387,2,6216,'4.99','2005-07-11 12:57:05','2006-02-15 22:17:30'),(10484,387,2,6456,'6.99','2005-07-12 01:05:11','2006-02-15 22:17:31'),(10485,387,1,6517,'5.99','2005-07-12 03:52:39','2006-02-15 22:17:31'),(10486,387,1,7497,'0.99','2005-07-27 20:05:27','2006-02-15 22:17:31'),(10487,387,1,8090,'2.99','2005-07-28 18:27:29','2006-02-15 22:17:31'),(10488,387,1,10564,'0.99','2005-08-01 13:07:34','2006-02-15 22:17:31'),(10489,387,1,10838,'4.99','2005-08-01 23:36:10','2006-02-15 22:17:31'),(10490,387,2,11682,'2.99','2005-08-17 06:13:40','2006-02-15 22:17:31'),(10491,387,2,12153,'4.99','2005-08-18 00:22:30','2006-02-15 22:17:31'),(10492,387,1,12936,'6.99','2005-08-19 05:25:06','2006-02-15 22:17:31'),(10493,387,2,13034,'2.99','2005-08-19 08:41:29','2006-02-15 22:17:31'),(10494,387,1,13082,'5.99','2005-08-19 10:19:19','2006-02-15 22:17:31'),(10495,387,2,13645,'0.99','2005-08-20 07:47:05','2006-02-15 22:17:31'),(10496,387,2,13772,'4.99','2005-08-20 11:47:52','2006-02-15 22:17:31'),(10497,387,2,14279,'5.99','2005-08-21 06:39:08','2006-02-15 22:17:31'),(10498,387,2,14979,'0.99','2005-08-22 07:16:36','2006-02-15 22:17:31'),(10499,388,2,21,'4.99','2005-05-25 01:59:46','2006-02-15 22:17:31'),(10500,388,2,411,'4.99','2005-05-27 14:14:14','2006-02-15 22:17:31'),(10501,388,2,1276,'6.99','2005-06-15 08:00:13','2006-02-15 22:17:31'),(10502,388,1,2145,'0.99','2005-06-17 22:10:36','2006-02-15 22:17:31'),(10503,388,1,2537,'5.99','2005-06-19 01:52:21','2006-02-15 22:17:32'),(10504,388,1,2692,'4.99','2005-06-19 13:08:19','2006-02-15 22:17:32'),(10505,388,2,3159,'7.99','2005-06-20 21:11:50','2006-02-15 22:17:32'),(10506,388,2,4947,'5.99','2005-07-08 22:49:37','2006-02-15 22:17:32'),(10507,388,2,5899,'2.99','2005-07-10 20:21:52','2006-02-15 22:17:32'),(10508,388,2,6321,'2.99','2005-07-11 18:51:02','2006-02-15 22:17:32'),(10509,388,1,6452,'2.99','2005-07-12 00:57:31','2006-02-15 22:17:32'),(10510,388,2,7985,'5.99','2005-07-28 14:29:01','2006-02-15 22:17:32'),(10511,388,2,8456,'3.99','2005-07-29 07:58:31','2006-02-15 22:17:32'),(10512,388,2,9213,'0.99','2005-07-30 13:07:11','2006-02-15 22:17:32'),(10513,388,2,9368,'2.99','2005-07-30 18:50:53','2006-02-15 22:17:32'),(10514,388,2,9840,'2.99','2005-07-31 12:23:18','2006-02-15 22:17:32'),(10515,388,2,9940,'0.99','2005-07-31 15:29:06','2006-02-15 22:17:32'),(10516,388,2,10044,'2.99','2005-07-31 19:02:33','2006-02-15 22:17:32'),(10517,388,2,11604,'0.99','2005-08-17 03:28:27','2006-02-15 22:17:32'),(10518,388,2,12044,'0.99','2005-08-17 20:39:37','2006-02-15 22:17:32'),(10519,388,1,12068,'2.99','2005-08-17 21:37:08','2006-02-15 22:17:32'),(10520,388,2,12267,'6.99','2005-08-18 04:24:30','2006-02-15 22:17:32'),(10521,388,2,12497,'4.99','2005-08-18 12:58:40','2006-02-15 22:17:32'),(10522,388,2,12646,'2.99','2005-08-18 18:25:06','2006-02-15 22:17:32'),(10523,388,1,12749,'2.99','2005-08-18 22:31:21','2006-02-15 22:17:33'),(10524,388,1,12977,'4.99','2005-08-19 06:55:33','2006-02-15 22:17:33'),(10525,388,1,14273,'10.99','2005-08-21 06:26:48','2006-02-15 22:17:33'),(10526,388,2,14853,'5.99','2005-08-22 02:26:33','2006-02-15 22:17:33'),(10527,388,2,15660,'5.99','2005-08-23 08:51:21','2006-02-15 22:17:33'),(10528,388,1,12891,'0.99','2006-02-14 15:16:03','2006-02-15 22:17:33'),(10529,389,1,998,'4.99','2005-05-31 00:16:57','2006-02-15 22:17:33'),(10530,389,1,1763,'4.99','2005-06-16 17:51:01','2006-02-15 22:17:33'),(10531,389,1,1946,'4.99','2005-06-17 07:58:39','2006-02-15 22:17:33'),(10532,389,1,2552,'3.99','2005-06-19 03:01:29','2006-02-15 22:17:33'),(10533,389,2,3527,'0.99','2005-07-06 01:11:08','2006-02-15 22:17:33'),(10534,389,1,4443,'6.99','2005-07-07 23:05:53','2006-02-15 22:17:33'),(10535,389,1,5249,'0.99','2005-07-09 13:33:53','2006-02-15 22:17:33'),(10536,389,2,5626,'3.99','2005-07-10 05:49:35','2006-02-15 22:17:33'),(10537,389,2,6104,'2.99','2005-07-11 07:01:35','2006-02-15 22:17:33'),(10538,389,1,6600,'3.99','2005-07-12 07:41:48','2006-02-15 22:17:33'),(10539,389,1,7029,'4.99','2005-07-27 02:57:43','2006-02-15 22:17:33'),(10540,389,1,7896,'8.99','2005-07-28 11:00:58','2006-02-15 22:17:33'),(10541,389,2,7977,'4.99','2005-07-28 14:15:54','2006-02-15 22:17:33'),(10542,389,1,8338,'6.99','2005-07-29 04:40:39','2006-02-15 22:17:34'),(10543,389,1,8887,'4.99','2005-07-30 00:36:54','2006-02-15 22:17:34'),(10544,389,1,10217,'4.99','2005-08-01 01:07:27','2006-02-15 22:17:34'),(10545,389,1,10949,'2.99','2005-08-02 03:24:04','2006-02-15 22:17:34'),(10546,389,2,11348,'4.99','2005-08-02 17:18:38','2006-02-15 22:17:34'),(10547,389,2,11441,'2.99','2005-08-02 20:25:41','2006-02-15 22:17:34'),(10548,389,2,11944,'3.99','2005-08-17 17:02:42','2006-02-15 22:17:34'),(10549,389,2,12069,'4.99','2005-08-17 21:39:40','2006-02-15 22:17:34'),(10550,389,2,14493,'7.99','2005-08-21 14:01:44','2006-02-15 22:17:34'),(10551,389,1,14578,'2.99','2005-08-21 16:53:38','2006-02-15 22:17:34'),(10552,389,1,14777,'2.99','2005-08-21 23:55:50','2006-02-15 22:17:34'),(10553,389,1,15462,'5.99','2005-08-23 01:14:01','2006-02-15 22:17:34'),(10554,389,2,16011,'9.99','2005-08-23 21:11:33','2006-02-15 22:17:34'),(10555,390,1,254,'4.99','2005-05-26 14:43:48','2006-02-15 22:17:34'),(10556,390,2,912,'4.99','2005-05-30 10:58:33','2006-02-15 22:17:34'),(10557,390,2,1539,'5.99','2005-06-16 01:11:25','2006-02-15 22:17:34'),(10558,390,2,1730,'2.99','2005-06-16 15:30:01','2006-02-15 22:17:34'),(10559,390,2,1893,'2.99','2005-06-17 04:18:37','2006-02-15 22:17:34'),(10560,390,1,2330,'7.99','2005-06-18 10:41:19','2006-02-15 22:17:34'),(10561,390,1,3147,'5.99','2005-06-20 20:25:17','2006-02-15 22:17:34'),(10562,390,1,3999,'2.99','2005-07-06 23:50:54','2006-02-15 22:17:35'),(10563,390,1,4022,'4.99','2005-07-07 01:50:06','2006-02-15 22:17:35'),(10564,390,2,4191,'3.99','2005-07-07 10:56:14','2006-02-15 22:17:35'),(10565,390,2,4310,'2.99','2005-07-07 17:30:56','2006-02-15 22:17:35'),(10566,390,1,4968,'5.99','2005-07-08 23:49:19','2006-02-15 22:17:35'),(10567,390,1,6215,'4.99','2005-07-11 12:52:36','2006-02-15 22:17:35'),(10568,390,1,6430,'0.99','2005-07-12 00:03:34','2006-02-15 22:17:35'),(10569,390,2,7515,'3.99','2005-07-27 20:52:37','2006-02-15 22:17:35'),(10570,390,1,7595,'5.99','2005-07-27 23:32:23','2006-02-15 22:17:35'),(10571,390,1,8493,'0.99','2005-07-29 09:04:31','2006-02-15 22:17:35'),(10572,390,1,9251,'5.99','2005-07-30 14:19:25','2006-02-15 22:17:35'),(10573,390,2,9314,'2.99','2005-07-30 17:05:19','2006-02-15 22:17:35'),(10574,390,1,9825,'4.99','2005-07-31 11:50:51','2006-02-15 22:17:35'),(10575,390,1,10061,'4.99','2005-07-31 19:23:25','2006-02-15 22:17:35'),(10576,390,1,12105,'5.99','2005-08-17 22:54:45','2006-02-15 22:17:35'),(10577,390,2,12803,'2.99','2005-08-19 00:28:21','2006-02-15 22:17:35'),(10578,390,1,13413,'3.99','2005-08-19 22:46:46','2006-02-15 22:17:35'),(10579,390,1,13473,'4.99','2005-08-20 01:03:50','2006-02-15 22:17:35'),(10580,390,1,13501,'0.99','2005-08-20 01:56:20','2006-02-15 22:17:35'),(10581,390,2,13546,'3.99','2005-08-20 03:50:24','2006-02-15 22:17:36'),(10582,390,2,13591,'3.99','2005-08-20 05:50:05','2006-02-15 22:17:36'),(10583,390,2,13618,'7.99','2005-08-20 06:36:46','2006-02-15 22:17:36'),(10584,390,2,13893,'5.99','2005-08-20 15:52:52','2006-02-15 22:17:36'),(10585,390,2,15222,'4.99','2005-08-22 17:12:30','2006-02-15 22:17:36'),(10586,390,2,15303,'8.99','2005-08-22 19:44:59','2006-02-15 22:17:36'),(10587,390,2,15376,'4.99','2005-08-22 22:21:35','2006-02-15 22:17:36'),(10588,391,2,73,'4.99','2005-05-25 11:00:07','2006-02-15 22:17:36'),(10589,391,1,210,'2.99','2005-05-26 08:14:15','2006-02-15 22:17:36'),(10590,391,1,317,'5.99','2005-05-26 23:23:56','2006-02-15 22:17:36'),(10591,391,2,870,'2.99','2005-05-30 04:25:47','2006-02-15 22:17:36'),(10592,391,1,891,'7.99','2005-05-30 07:43:12','2006-02-15 22:17:36'),(10593,391,2,1232,'0.99','2005-06-15 04:18:10','2006-02-15 22:17:36'),(10594,391,2,1931,'0.99','2005-06-17 06:51:56','2006-02-15 22:17:36'),(10595,391,1,2045,'2.99','2005-06-17 14:38:11','2006-02-15 22:17:36'),(10596,391,1,2690,'2.99','2005-06-19 13:00:02','2006-02-15 22:17:36'),(10597,391,2,3163,'2.99','2005-06-20 21:22:13','2006-02-15 22:17:36'),(10598,391,1,4188,'5.99','2005-07-07 10:45:29','2006-02-15 22:17:36'),(10599,391,1,4716,'0.99','2005-07-08 12:18:51','2006-02-15 22:17:36'),(10600,391,2,4753,'0.99','2005-07-08 14:18:41','2006-02-15 22:17:37'),(10601,391,2,5583,'7.99','2005-07-10 04:08:48','2006-02-15 22:17:37'),(10602,391,1,5599,'4.99','2005-07-10 04:52:04','2006-02-15 22:17:37'),(10603,391,1,6302,'3.99','2005-07-11 17:55:38','2006-02-15 22:17:37'),(10604,391,1,6463,'2.99','2005-07-12 01:16:11','2006-02-15 22:17:37'),(10605,391,2,8016,'0.99','2005-07-28 15:35:41','2006-02-15 22:17:37'),(10606,391,1,8908,'0.99','2005-07-30 01:26:05','2006-02-15 22:17:37'),(10607,391,2,8913,'6.99','2005-07-30 01:35:01','2006-02-15 22:17:37'),(10608,391,1,9225,'0.99','2005-07-30 13:29:47','2006-02-15 22:17:37'),(10609,391,1,10210,'7.99','2005-08-01 00:58:52','2006-02-15 22:17:37'),(10610,391,2,10406,'2.99','2005-08-01 07:37:05','2006-02-15 22:17:37'),(10611,391,1,11151,'4.99','2005-08-02 09:52:44','2006-02-15 22:17:37'),(10612,391,2,11434,'2.99','2005-08-02 20:13:14','2006-02-15 22:17:37'),(10613,391,1,11602,'4.99','2005-08-17 03:21:19','2006-02-15 22:17:37'),(10614,391,1,12090,'0.99','2005-08-17 22:21:43','2006-02-15 22:17:37'),(10615,391,1,12100,'1.99','2005-08-17 22:41:10','2006-02-15 22:17:37'),(10616,391,1,13980,'2.99','2005-08-20 19:04:40','2006-02-15 22:17:37'),(10617,391,1,14381,'0.99','2005-08-21 09:55:47','2006-02-15 22:17:37'),(10618,392,2,1530,'6.99','2005-06-16 00:38:07','2006-02-15 22:17:37'),(10619,392,2,1764,'2.99','2005-06-16 17:51:54','2006-02-15 22:17:38'),(10620,392,2,2289,'2.99','2005-06-18 07:29:43','2006-02-15 22:17:38'),(10621,392,2,2890,'4.99','2005-06-20 02:00:45','2006-02-15 22:17:38'),(10622,392,1,3566,'2.99','2005-07-06 03:08:51','2006-02-15 22:17:38'),(10623,392,2,6061,'0.99','2005-07-11 04:06:25','2006-02-15 22:17:38'),(10624,392,2,6406,'2.99','2005-07-11 22:55:27','2006-02-15 22:17:38'),(10625,392,1,7692,'2.99','2005-07-28 03:30:21','2006-02-15 22:17:38'),(10626,392,1,7981,'1.99','2005-07-28 14:18:25','2006-02-15 22:17:38'),(10627,392,1,8254,'0.99','2005-07-29 00:59:31','2006-02-15 22:17:38'),(10628,392,2,8612,'9.99','2005-07-29 13:28:20','2006-02-15 22:17:38'),(10629,392,2,10085,'0.99','2005-07-31 20:12:02','2006-02-15 22:17:38'),(10630,392,1,10435,'4.99','2005-08-01 08:50:51','2006-02-15 22:17:38'),(10631,392,1,11459,'0.99','2005-08-02 21:25:25','2006-02-15 22:17:38'),(10632,392,1,11686,'2.99','2005-08-17 06:39:30','2006-02-15 22:17:38'),(10633,392,2,12102,'6.99','2005-08-17 22:45:26','2006-02-15 22:17:38'),(10634,392,1,12368,'6.99','2005-08-18 07:57:38','2006-02-15 22:17:38'),(10635,392,2,12561,'0.99','2005-08-18 14:58:51','2006-02-15 22:17:38'),(10636,392,1,13629,'4.99','2005-08-20 07:04:07','2006-02-15 22:17:38'),(10637,392,2,14081,'7.99','2005-08-20 23:35:13','2006-02-15 22:17:38'),(10638,392,1,14223,'5.99','2005-08-21 04:51:51','2006-02-15 22:17:39'),(10639,392,2,14369,'0.99','2005-08-21 09:33:44','2006-02-15 22:17:39'),(10640,392,2,14438,'5.99','2005-08-21 11:51:10','2006-02-15 22:17:39'),(10641,393,1,599,'4.99','2005-05-28 14:05:57','2006-02-15 22:17:39'),(10642,393,2,886,'0.99','2005-05-30 06:54:51','2006-02-15 22:17:39'),(10643,393,1,1611,'6.99','2005-06-16 06:41:35','2006-02-15 22:17:39'),(10644,393,2,1915,'1.99','2005-06-17 05:28:28','2006-02-15 22:17:39'),(10645,393,2,2219,'2.99','2005-06-18 03:16:54','2006-02-15 22:17:39'),(10646,393,1,2319,'4.99','2005-06-18 09:24:22','2006-02-15 22:17:39'),(10647,393,2,3001,'2.99','2005-06-20 09:50:16','2006-02-15 22:17:39'),(10648,393,2,4275,'2.99','2005-07-07 14:43:51','2006-02-15 22:17:39'),(10649,393,2,4546,'8.99','2005-07-08 04:18:36','2006-02-15 22:17:39'),(10650,393,2,4632,'5.99','2005-07-08 08:38:57','2006-02-15 22:17:39'),(10651,393,2,4791,'7.99','2005-07-08 16:27:24','2006-02-15 22:17:39'),(10652,393,1,5099,'4.99','2005-07-09 06:14:30','2006-02-15 22:17:39'),(10653,393,1,6221,'2.99','2005-07-11 13:24:27','2006-02-15 22:17:39'),(10654,393,2,6513,'0.99','2005-07-12 03:44:43','2006-02-15 22:17:39'),(10655,393,1,6930,'8.99','2005-07-26 23:00:01','2006-02-15 22:17:39'),(10656,393,2,7486,'0.99','2005-07-27 19:29:24','2006-02-15 22:17:39'),(10657,393,2,8004,'4.99','2005-07-28 15:14:07','2006-02-15 22:17:39'),(10658,393,2,8448,'0.99','2005-07-29 07:41:54','2006-02-15 22:17:40'),(10659,393,2,9763,'7.99','2005-07-31 09:34:03','2006-02-15 22:17:40'),(10660,393,1,10158,'1.99','2005-07-31 22:40:31','2006-02-15 22:17:40'),(10661,393,2,12059,'2.99','2005-08-17 21:09:23','2006-02-15 22:17:40'),(10662,393,1,12113,'1.99','2005-08-17 23:01:00','2006-02-15 22:17:40'),(10663,393,1,12563,'4.99','2005-08-18 15:08:29','2006-02-15 22:17:40'),(10664,393,1,12676,'0.99','2005-08-18 19:34:40','2006-02-15 22:17:40'),(10665,393,1,13184,'4.99','2005-08-19 14:16:18','2006-02-15 22:17:40'),(10666,393,2,13357,'4.99','2005-08-19 21:02:59','2006-02-15 22:17:40'),(10667,393,2,13788,'1.99','2005-08-20 12:15:41','2006-02-15 22:17:40'),(10668,393,1,15132,'2.99','2005-08-22 13:11:25','2006-02-15 22:17:40'),(10669,393,2,15284,'3.99','2005-08-22 19:17:08','2006-02-15 22:17:40'),(10670,393,2,15527,'0.99','2005-08-23 03:44:51','2006-02-15 22:17:40'),(10671,393,2,16049,'3.99','2005-08-23 22:50:12','2006-02-15 22:17:40'),(10672,394,1,213,'3.99','2005-05-26 08:44:08','2006-02-15 22:17:40'),(10673,394,1,977,'2.99','2005-05-30 21:22:26','2006-02-15 22:17:40'),(10674,394,2,1324,'4.99','2005-06-15 11:02:45','2006-02-15 22:17:40'),(10675,394,2,3543,'0.99','2005-07-06 02:01:08','2006-02-15 22:17:40'),(10676,394,1,3873,'6.99','2005-07-06 18:03:16','2006-02-15 22:17:40'),(10677,394,2,4009,'2.99','2005-07-07 00:28:55','2006-02-15 22:17:41'),(10678,394,1,4307,'6.99','2005-07-07 17:20:39','2006-02-15 22:17:41'),(10679,394,2,5183,'4.99','2005-07-09 10:13:45','2006-02-15 22:17:41'),(10680,394,1,5535,'4.99','2005-07-10 02:27:42','2006-02-15 22:17:41'),(10681,394,2,6059,'4.99','2005-07-11 04:03:54','2006-02-15 22:17:41'),(10682,394,2,7445,'3.99','2005-07-27 17:57:15','2006-02-15 22:17:41'),(10683,394,1,9147,'0.99','2005-07-30 10:38:59','2006-02-15 22:17:41'),(10684,394,2,9864,'0.99','2005-07-31 13:06:54','2006-02-15 22:17:41'),(10685,394,1,10319,'4.99','2005-08-01 04:37:19','2006-02-15 22:17:41'),(10686,394,1,10603,'0.99','2005-08-01 14:30:35','2006-02-15 22:17:41'),(10687,394,1,10718,'0.99','2005-08-01 18:55:38','2006-02-15 22:17:41'),(10688,394,1,12080,'4.99','2005-08-17 22:08:04','2006-02-15 22:17:41'),(10689,394,1,12389,'4.99','2005-08-18 08:48:36','2006-02-15 22:17:41'),(10690,394,2,12510,'9.99','2005-08-18 13:22:25','2006-02-15 22:17:41'),(10691,394,2,13047,'0.99','2005-08-19 09:24:49','2006-02-15 22:17:41'),(10692,394,1,14605,'0.99','2005-08-21 17:56:06','2006-02-15 22:17:41'),(10693,394,2,13178,'4.99','2006-02-14 15:16:03','2006-02-15 22:17:41'),(10694,395,1,1270,'0.99','2005-06-15 07:30:22','2006-02-15 22:17:41'),(10695,395,1,1562,'0.99','2005-06-16 02:46:27','2006-02-15 22:17:41'),(10696,395,2,1603,'0.99','2005-06-16 06:14:03','2006-02-15 22:17:42'),(10697,395,1,3030,'4.99','2005-06-20 11:51:59','2006-02-15 22:17:42'),(10698,395,1,3310,'0.99','2005-06-21 08:04:51','2006-02-15 22:17:42'),(10699,395,1,3389,'6.99','2005-06-21 14:37:55','2006-02-15 22:17:42'),(10700,395,2,3684,'0.99','2005-07-06 09:29:22','2006-02-15 22:17:42'),(10701,395,1,4185,'5.99','2005-07-07 10:31:05','2006-02-15 22:17:42'),(10702,395,1,4393,'4.99','2005-07-07 21:12:36','2006-02-15 22:17:42'),(10703,395,1,5087,'0.99','2005-07-09 05:44:28','2006-02-15 22:17:42'),(10704,395,2,5136,'0.99','2005-07-09 07:55:01','2006-02-15 22:17:42'),(10705,395,1,7740,'2.99','2005-07-28 05:23:36','2006-02-15 22:17:42'),(10706,395,2,7986,'7.99','2005-07-28 14:30:13','2006-02-15 22:17:42'),(10707,395,1,11889,'0.99','2005-08-17 15:08:27','2006-02-15 22:17:42'),(10708,395,1,14471,'5.99','2005-08-21 13:10:40','2006-02-15 22:17:42'),(10709,395,2,14720,'0.99','2005-08-21 21:43:53','2006-02-15 22:17:42'),(10710,395,1,15698,'2.99','2005-08-23 10:11:40','2006-02-15 22:17:42'),(10711,395,1,15856,'0.99','2005-08-23 15:59:12','2006-02-15 22:17:42'),(10712,395,1,15970,'4.99','2005-08-23 19:54:24','2006-02-15 22:17:42'),(10713,396,2,641,'5.99','2005-05-28 18:45:47','2006-02-15 22:17:42'),(10714,396,2,1370,'1.99','2005-06-15 14:31:05','2006-02-15 22:17:42'),(10715,396,2,1385,'4.99','2005-06-15 15:28:23','2006-02-15 22:17:43'),(10716,396,2,1408,'6.99','2005-06-15 16:57:58','2006-02-15 22:17:43'),(10717,396,2,3909,'6.99','2005-07-06 19:54:41','2006-02-15 22:17:43'),(10718,396,1,5059,'1.99','2005-07-09 04:28:01','2006-02-15 22:17:43'),(10719,396,2,6335,'2.99','2005-07-11 19:25:15','2006-02-15 22:17:43'),(10720,396,2,6764,'4.99','2005-07-12 15:29:27','2006-02-15 22:17:43'),(10721,396,2,6771,'2.99','2005-07-12 15:54:40','2006-02-15 22:17:43'),(10722,396,2,7142,'0.99','2005-07-27 06:55:39','2006-02-15 22:17:43'),(10723,396,2,7313,'2.99','2005-07-27 13:11:57','2006-02-15 22:17:43'),(10724,396,2,8371,'2.99','2005-07-29 05:16:35','2006-02-15 22:17:43'),(10725,396,2,8807,'2.99','2005-07-29 21:36:59','2006-02-15 22:17:43'),(10726,396,1,9344,'5.99','2005-07-30 18:13:45','2006-02-15 22:17:43'),(10727,396,2,10120,'2.99','2005-07-31 21:24:24','2006-02-15 22:17:43'),(10728,396,2,10124,'0.99','2005-07-31 21:31:49','2006-02-15 22:17:43'),(10729,396,2,10195,'6.99','2005-08-01 00:34:42','2006-02-15 22:17:43'),(10730,396,2,10610,'0.99','2005-08-01 14:49:41','2006-02-15 22:17:43'),(10731,396,2,12393,'5.99','2005-08-18 09:02:41','2006-02-15 22:17:43'),(10732,396,1,12895,'4.99','2005-08-19 03:50:48','2006-02-15 22:17:43'),(10733,396,2,13355,'4.99','2005-08-19 20:59:19','2006-02-15 22:17:43'),(10734,396,1,14078,'3.99','2005-08-20 23:26:40','2006-02-15 22:17:44'),(10735,396,1,14169,'4.99','2005-08-21 03:00:31','2006-02-15 22:17:44'),(10736,396,1,14508,'2.99','2005-08-21 14:33:58','2006-02-15 22:17:44'),(10737,396,2,14778,'5.99','2005-08-21 23:56:30','2006-02-15 22:17:44'),(10738,396,1,14792,'1.99','2005-08-22 00:36:41','2006-02-15 22:17:44'),(10739,396,2,15198,'7.99','2005-08-22 16:15:33','2006-02-15 22:17:44'),(10740,397,2,1002,'0.99','2005-05-31 00:47:56','2006-02-15 22:17:44'),(10741,397,1,1769,'5.99','2005-06-16 18:07:48','2006-02-15 22:17:44'),(10742,397,2,3027,'1.99','2005-06-20 11:50:30','2006-02-15 22:17:44'),(10743,397,1,3489,'5.99','2005-07-05 23:33:40','2006-02-15 22:17:44'),(10744,397,1,4036,'0.99','2005-07-07 02:48:00','2006-02-15 22:17:44'),(10745,397,2,5103,'4.99','2005-07-09 06:34:40','2006-02-15 22:17:44'),(10746,397,2,5598,'4.99','2005-07-10 04:48:29','2006-02-15 22:17:44'),(10747,397,2,5763,'4.99','2005-07-10 12:58:12','2006-02-15 22:17:44'),(10748,397,2,6014,'2.99','2005-07-11 02:02:55','2006-02-15 22:17:44'),(10749,397,2,6266,'2.99','2005-07-11 15:45:39','2006-02-15 22:17:44'),(10750,397,1,6471,'4.99','2005-07-12 01:31:06','2006-02-15 22:17:44'),(10751,397,2,7356,'2.99','2005-07-27 14:47:35','2006-02-15 22:17:44'),(10752,397,2,7892,'4.99','2005-07-28 10:46:58','2006-02-15 22:17:44'),(10753,397,1,8103,'6.99','2005-07-28 18:50:14','2006-02-15 22:17:44'),(10754,397,1,9495,'0.99','2005-07-30 23:54:26','2006-02-15 22:17:45'),(10755,397,2,9608,'1.99','2005-07-31 03:51:52','2006-02-15 22:17:45'),(10756,397,1,10534,'0.99','2005-08-01 12:15:11','2006-02-15 22:17:45'),(10757,397,2,10598,'4.99','2005-08-01 14:23:36','2006-02-15 22:17:45'),(10758,397,1,10785,'1.99','2005-08-01 21:24:55','2006-02-15 22:17:45'),(10759,397,2,11511,'4.99','2005-08-16 23:39:59','2006-02-15 22:17:45'),(10760,397,2,12223,'2.99','2005-08-18 02:58:40','2006-02-15 22:17:45'),(10761,397,1,12276,'0.99','2005-08-18 04:43:22','2006-02-15 22:17:45'),(10762,397,2,12329,'1.99','2005-08-18 06:44:30','2006-02-15 22:17:45'),(10763,397,2,12700,'0.99','2005-08-18 20:24:46','2006-02-15 22:17:45'),(10764,397,2,12726,'2.99','2005-08-18 21:44:46','2006-02-15 22:17:45'),(10765,397,1,12772,'4.99','2005-08-18 23:29:25','2006-02-15 22:17:45'),(10766,397,2,14100,'3.99','2005-08-21 00:31:07','2006-02-15 22:17:45'),(10767,397,1,14790,'6.99','2005-08-22 00:34:17','2006-02-15 22:17:45'),(10768,397,1,15083,'6.99','2005-08-22 11:17:37','2006-02-15 22:17:45'),(10769,398,1,486,'4.99','2005-05-27 23:51:12','2006-02-15 22:17:45'),(10770,398,2,1228,'2.99','2005-06-15 03:50:36','2006-02-15 22:17:45'),(10771,398,1,2087,'6.99','2005-06-17 17:35:10','2006-02-15 22:17:45'),(10772,398,2,3141,'9.99','2005-06-20 19:55:47','2006-02-15 22:17:45'),(10773,398,2,5234,'5.99','2005-07-09 12:44:47','2006-02-15 22:17:46'),(10774,398,2,8119,'3.99','2005-07-28 19:23:15','2006-02-15 22:17:46'),(10775,398,2,8204,'4.99','2005-07-28 23:18:29','2006-02-15 22:17:46'),(10776,398,1,8428,'7.99','2005-07-29 07:10:14','2006-02-15 22:17:46'),(10777,398,1,9042,'2.99','2005-07-30 06:33:55','2006-02-15 22:17:46'),(10778,398,2,9281,'5.99','2005-07-30 15:15:51','2006-02-15 22:17:46'),(10779,398,1,9771,'1.99','2005-07-31 09:55:36','2006-02-15 22:17:46'),(10780,398,1,10230,'2.99','2005-08-01 01:49:36','2006-02-15 22:17:46'),(10781,398,2,11132,'4.99','2005-08-02 09:14:09','2006-02-15 22:17:46'),(10782,398,2,12528,'2.99','2005-08-18 13:52:41','2006-02-15 22:17:46'),(10783,398,2,13643,'4.99','2005-08-20 07:42:24','2006-02-15 22:17:46'),(10784,398,1,15189,'3.99','2005-08-22 15:56:42','2006-02-15 22:17:46'),(10785,399,2,10,'5.99','2005-05-25 00:02:21','2006-02-15 22:17:46'),(10786,399,2,694,'6.99','2005-05-29 01:49:43','2006-02-15 22:17:46'),(10787,399,2,883,'4.99','2005-05-30 06:21:05','2006-02-15 22:17:46'),(10788,399,2,2961,'2.99','2005-06-20 07:29:15','2006-02-15 22:17:46'),(10789,399,1,3036,'5.99','2005-06-20 12:18:31','2006-02-15 22:17:46'),(10790,399,2,4957,'0.99','2005-07-08 23:18:48','2006-02-15 22:17:46'),(10791,399,2,4981,'4.99','2005-07-09 00:29:29','2006-02-15 22:17:46'),(10792,399,1,5507,'0.99','2005-07-10 00:49:04','2006-02-15 22:17:47'),(10793,399,2,6006,'2.99','2005-07-11 01:38:42','2006-02-15 22:17:47'),(10794,399,2,6229,'6.99','2005-07-11 13:59:50','2006-02-15 22:17:47'),(10795,399,2,6674,'4.99','2005-07-12 11:51:54','2006-02-15 22:17:47'),(10796,399,2,8461,'5.99','2005-07-29 08:11:31','2006-02-15 22:17:47'),(10797,399,2,9728,'2.99','2005-07-31 08:40:54','2006-02-15 22:17:47'),(10798,399,2,10654,'2.99','2005-08-01 16:31:35','2006-02-15 22:17:47'),(10799,399,2,10960,'5.99','2005-08-02 03:46:18','2006-02-15 22:17:47'),(10800,399,1,11329,'4.99','2005-08-02 16:42:52','2006-02-15 22:17:47'),(10801,399,1,11953,'3.99','2005-08-17 17:16:42','2006-02-15 22:17:47'),(10802,399,1,13253,'4.99','2005-08-19 16:53:56','2006-02-15 22:17:47'),(10803,399,2,13293,'4.99','2005-08-19 18:35:52','2006-02-15 22:17:47'),(10804,399,1,15300,'0.99','2005-08-22 19:44:00','2006-02-15 22:17:47'),(10805,399,1,15468,'4.99','2005-08-23 01:25:30','2006-02-15 22:17:47'),(10806,400,1,95,'3.99','2005-05-25 16:12:52','2006-02-15 22:17:47'),(10807,400,2,171,'6.99','2005-05-26 03:14:15','2006-02-15 22:17:47'),(10808,400,2,516,'1.99','2005-05-28 03:11:47','2006-02-15 22:17:47'),(10809,400,2,894,'5.99','2005-05-30 08:31:31','2006-02-15 22:17:48'),(10810,400,2,1364,'0.99','2005-06-15 14:05:32','2006-02-15 22:17:48'),(10811,400,1,1917,'3.99','2005-06-17 05:36:07','2006-02-15 22:17:48'),(10812,400,2,1923,'6.99','2005-06-17 06:06:10','2006-02-15 22:17:48'),(10813,400,1,4573,'6.99','2005-07-08 05:38:46','2006-02-15 22:17:48'),(10814,400,1,4645,'2.99','2005-07-08 09:20:09','2006-02-15 22:17:48'),(10815,400,2,5212,'6.99','2005-07-09 11:37:47','2006-02-15 22:17:48'),(10816,400,2,5222,'5.99','2005-07-09 12:05:45','2006-02-15 22:17:48'),(10817,400,2,6790,'5.99','2005-07-12 16:34:59','2006-02-15 22:17:48'),(10818,400,2,6994,'2.99','2005-07-27 01:08:26','2006-02-15 22:17:48'),(10819,400,2,7296,'2.99','2005-07-27 12:39:48','2006-02-15 22:17:48'),(10820,400,1,7682,'5.99','2005-07-28 03:07:29','2006-02-15 22:17:48'),(10821,400,2,9177,'5.99','2005-07-30 11:52:40','2006-02-15 22:17:48'),(10822,400,2,9756,'4.99','2005-07-31 09:25:00','2006-02-15 22:17:48'),(10823,400,1,10187,'2.99','2005-08-01 00:15:49','2006-02-15 22:17:48'),(10824,400,2,10484,'2.99','2005-08-01 10:19:53','2006-02-15 22:17:48'),(10825,400,1,10711,'0.99','2005-08-01 18:45:09','2006-02-15 22:17:48'),(10826,400,2,11510,'6.99','2005-08-16 23:30:07','2006-02-15 22:17:49'),(10827,400,2,11530,'2.99','2005-08-17 00:29:00','2006-02-15 22:17:49'),(10828,400,1,11600,'5.99','2005-08-17 03:12:04','2006-02-15 22:17:49'),(10829,400,1,12514,'2.99','2005-08-18 13:33:55','2006-02-15 22:17:49'),(10830,400,2,13449,'2.99','2005-08-20 00:17:01','2006-02-15 22:17:49'),(10831,400,1,14775,'2.99','2005-08-21 23:53:07','2006-02-15 22:17:49'),(10832,400,2,15533,'4.99','2005-08-23 03:54:39','2006-02-15 22:17:49'),(10833,400,2,15988,'4.99','2005-08-23 20:23:08','2006-02-15 22:17:49'),(10834,401,2,167,'4.99','2005-05-26 02:50:31','2006-02-15 22:17:49'),(10835,401,2,446,'4.99','2005-05-27 18:48:41','2006-02-15 22:17:49'),(10836,401,2,811,'1.99','2005-05-29 19:30:42','2006-02-15 22:17:49'),(10837,401,1,4059,'0.99','2005-07-07 04:04:26','2006-02-15 22:17:49'),(10838,401,2,4292,'7.99','2005-07-07 15:48:38','2006-02-15 22:17:49'),(10839,401,2,5923,'0.99','2005-07-10 21:40:06','2006-02-15 22:17:49'),(10840,401,1,NULL,'0.99','2005-07-12 06:26:10','2006-02-15 22:17:49'),(10841,401,2,7651,'4.99','2005-07-28 01:48:32','2006-02-15 22:17:49'),(10842,401,1,8450,'2.99','2005-07-29 07:44:05','2006-02-15 22:17:49'),(10843,401,2,8669,'2.99','2005-07-29 15:44:55','2006-02-15 22:17:49'),(10844,401,1,8722,'8.99','2005-07-29 17:58:58','2006-02-15 22:17:50'),(10845,401,2,9701,'4.99','2005-07-31 07:32:21','2006-02-15 22:17:50'),(10846,401,2,10171,'0.99','2005-07-31 23:29:05','2006-02-15 22:17:50'),(10847,401,1,11820,'2.99','2005-08-17 12:25:33','2006-02-15 22:17:50'),(10848,401,1,12475,'4.99','2005-08-18 12:14:21','2006-02-15 22:17:50'),(10849,401,2,12479,'4.99','2005-08-18 12:26:37','2006-02-15 22:17:50'),(10850,401,1,12906,'2.99','2005-08-19 04:13:43','2006-02-15 22:17:50'),(10851,401,1,13024,'4.99','2005-08-19 08:19:21','2006-02-15 22:17:50'),(10852,401,1,14359,'0.99','2005-08-21 09:16:19','2006-02-15 22:17:50'),(10853,401,2,14433,'1.99','2005-08-21 11:36:34','2006-02-15 22:17:50'),(10854,401,1,15831,'0.99','2005-08-23 15:21:19','2006-02-15 22:17:50'),(10855,401,1,15927,'0.99','2005-08-23 18:23:11','2006-02-15 22:17:50'),(10856,402,2,801,'1.99','2005-05-29 17:35:50','2006-02-15 22:17:50'),(10857,402,2,1194,'4.99','2005-06-15 01:25:08','2006-02-15 22:17:50'),(10858,402,2,2490,'4.99','2005-06-18 22:00:50','2006-02-15 22:17:50'),(10859,402,2,2913,'2.99','2005-06-20 03:42:27','2006-02-15 22:17:50'),(10860,402,2,3564,'6.99','2005-07-06 03:02:13','2006-02-15 22:17:50'),(10861,402,2,3612,'3.99','2005-07-06 05:37:26','2006-02-15 22:17:50'),(10862,402,2,3755,'5.99','2005-07-06 12:37:16','2006-02-15 22:17:51'),(10863,402,1,4399,'2.99','2005-07-07 21:20:28','2006-02-15 22:17:51'),(10864,402,2,4604,'3.99','2005-07-08 06:58:43','2006-02-15 22:17:51'),(10865,402,2,5329,'4.99','2005-07-09 16:49:46','2006-02-15 22:17:51'),(10866,402,2,6183,'2.99','2005-07-11 11:14:35','2006-02-15 22:17:51'),(10867,402,1,6283,'3.99','2005-07-11 16:47:32','2006-02-15 22:17:51'),(10868,402,1,7633,'0.99','2005-07-28 01:03:41','2006-02-15 22:17:51'),(10869,402,2,8521,'7.99','2005-07-29 10:12:45','2006-02-15 22:17:51'),(10870,402,1,9657,'6.99','2005-07-31 06:00:41','2006-02-15 22:17:51'),(10871,402,2,9779,'0.99','2005-07-31 10:08:33','2006-02-15 22:17:51'),(10872,402,2,11045,'0.99','2005-08-02 06:07:54','2006-02-15 22:17:51'),(10873,402,2,11549,'4.99','2005-08-17 01:01:48','2006-02-15 22:17:51'),(10874,402,2,11920,'0.99','2005-08-17 16:10:19','2006-02-15 22:17:51'),(10875,402,1,15428,'4.99','2005-08-23 00:11:52','2006-02-15 22:17:52'),(10876,403,1,442,'2.99','2005-05-27 18:12:13','2006-02-15 22:17:52'),(10877,403,1,517,'0.99','2005-05-28 03:17:57','2006-02-15 22:17:52'),(10878,403,2,1221,'4.99','2005-06-15 03:35:16','2006-02-15 22:17:52'),(10879,403,1,1249,'8.99','2005-06-15 05:38:09','2006-02-15 22:17:52'),(10880,403,2,2488,'3.99','2005-06-18 21:38:26','2006-02-15 22:17:52'),(10881,403,1,2927,'4.99','2005-06-20 04:41:41','2006-02-15 22:17:52'),(10882,403,2,3049,'6.99','2005-06-20 12:51:01','2006-02-15 22:17:52'),(10883,403,1,3356,'5.99','2005-06-21 11:38:45','2006-02-15 22:17:52'),(10884,403,1,3644,'6.99','2005-07-06 07:20:11','2006-02-15 22:17:52'),(10885,403,2,3737,'3.99','2005-07-06 11:45:53','2006-02-15 22:17:52'),(10886,403,2,4096,'4.99','2005-07-07 06:09:11','2006-02-15 22:17:52'),(10887,403,1,5982,'4.99','2005-07-11 00:24:44','2006-02-15 22:17:52'),(10888,403,2,6322,'2.99','2005-07-11 18:58:20','2006-02-15 22:17:52'),(10889,403,1,6342,'4.99','2005-07-11 19:48:24','2006-02-15 22:17:52'),(10890,403,1,7103,'4.99','2005-07-27 05:08:59','2006-02-15 22:17:52'),(10891,403,2,8013,'5.99','2005-07-28 15:30:26','2006-02-15 22:17:52'),(10892,403,1,9058,'2.99','2005-07-30 07:15:45','2006-02-15 22:17:52'),(10893,403,2,9486,'7.99','2005-07-30 23:35:42','2006-02-15 22:17:52'),(10894,403,2,9794,'4.99','2005-07-31 10:47:01','2006-02-15 22:17:53'),(10895,403,2,10109,'5.99','2005-07-31 21:04:49','2006-02-15 22:17:53'),(10896,403,1,10443,'2.99','2005-08-01 09:01:04','2006-02-15 22:17:53'),(10897,403,1,10547,'6.99','2005-08-01 12:44:17','2006-02-15 22:17:53'),(10898,403,2,10789,'2.99','2005-08-01 21:37:55','2006-02-15 22:17:53'),(10899,403,1,11038,'7.99','2005-08-02 05:59:42','2006-02-15 22:17:53'),(10900,403,2,11391,'9.99','2005-08-02 18:40:12','2006-02-15 22:17:53'),(10901,403,2,11427,'2.99','2005-08-02 20:02:39','2006-02-15 22:17:53'),(10902,403,2,11460,'0.99','2005-08-02 21:28:03','2006-02-15 22:17:53'),(10903,403,2,11558,'0.99','2005-08-17 01:19:52','2006-02-15 22:17:53'),(10904,403,2,12005,'5.99','2005-08-17 18:56:55','2006-02-15 22:17:53'),(10905,403,1,12132,'2.99','2005-08-17 23:37:03','2006-02-15 22:17:53'),(10906,403,1,12793,'5.99','2005-08-19 00:20:36','2006-02-15 22:17:53'),(10907,403,1,14519,'2.99','2005-08-21 14:59:29','2006-02-15 22:17:53'),(10908,403,1,14662,'0.99','2005-08-21 19:45:27','2006-02-15 22:17:53'),(10909,403,2,14725,'4.99','2005-08-21 22:02:08','2006-02-15 22:17:53'),(10910,403,1,15410,'4.99','2005-08-22 23:27:43','2006-02-15 22:17:53'),(10911,404,2,1081,'5.99','2005-05-31 10:56:32','2006-02-15 22:17:53'),(10912,404,2,1506,'2.99','2005-06-15 22:19:37','2006-02-15 22:17:53'),(10913,404,2,1840,'4.99','2005-06-16 23:39:34','2006-02-15 22:17:54'),(10914,404,1,2715,'4.99','2005-06-19 14:29:35','2006-02-15 22:17:54'),(10915,404,1,2951,'2.99','2005-06-20 06:23:01','2006-02-15 22:17:54'),(10916,404,1,3927,'2.99','2005-07-06 20:48:14','2006-02-15 22:17:54'),(10917,404,1,4495,'2.99','2005-07-08 01:43:46','2006-02-15 22:17:54'),(10918,404,2,4615,'8.99','2005-07-08 07:46:53','2006-02-15 22:17:54'),(10919,404,1,4653,'4.99','2005-07-08 09:48:01','2006-02-15 22:17:54'),(10920,404,1,4963,'4.99','2005-07-08 23:38:40','2006-02-15 22:17:54'),(10921,404,1,5632,'3.99','2005-07-10 06:17:06','2006-02-15 22:17:54'),(10922,404,1,6114,'1.99','2005-07-11 07:33:48','2006-02-15 22:17:54'),(10923,404,2,6779,'0.99','2005-07-12 16:10:50','2006-02-15 22:17:54'),(10924,404,1,6964,'4.99','2005-07-27 00:15:04','2006-02-15 22:17:54'),(10925,404,1,8058,'5.99','2005-07-28 17:07:49','2006-02-15 22:17:54'),(10926,404,1,8455,'3.99','2005-07-29 07:53:06','2006-02-15 22:17:54'),(10927,404,1,9206,'4.99','2005-07-30 12:46:59','2006-02-15 22:17:54'),(10928,404,1,9472,'4.99','2005-07-30 23:03:32','2006-02-15 22:17:54'),(10929,404,2,9824,'2.99','2005-07-31 11:49:55','2006-02-15 22:17:54'),(10930,404,1,10651,'2.99','2005-08-01 16:20:22','2006-02-15 22:17:54'),(10931,404,1,12325,'5.99','2005-08-18 06:41:30','2006-02-15 22:17:54'),(10932,404,1,12554,'8.99','2005-08-18 14:47:28','2006-02-15 22:17:54'),(10933,404,2,13412,'5.99','2005-08-19 22:46:35','2006-02-15 22:17:55'),(10934,404,1,13422,'4.99','2005-08-19 23:07:24','2006-02-15 22:17:55'),(10935,404,1,14691,'0.99','2005-08-21 20:42:29','2006-02-15 22:17:55'),(10936,404,2,14835,'5.99','2005-08-22 01:49:07','2006-02-15 22:17:55'),(10937,404,2,14838,'4.99','2005-08-22 01:57:34','2006-02-15 22:17:55'),(10938,404,2,14912,'4.99','2005-08-22 04:51:42','2006-02-15 22:17:55'),(10939,404,2,15087,'0.99','2005-08-22 11:24:09','2006-02-15 22:17:55'),(10940,404,2,15290,'10.99','2005-08-22 19:28:02','2006-02-15 22:17:55'),(10941,405,1,121,'2.99','2005-05-25 19:41:29','2006-02-15 22:17:55'),(10942,405,2,770,'4.99','2005-05-29 12:56:50','2006-02-15 22:17:55'),(10943,405,2,1315,'4.99','2005-06-15 10:23:08','2006-02-15 22:17:55'),(10944,405,1,1888,'0.99','2005-06-17 03:58:36','2006-02-15 22:17:55'),(10945,405,2,1953,'5.99','2005-06-17 08:34:57','2006-02-15 22:17:55'),(10946,405,2,2654,'3.99','2005-06-19 10:37:54','2006-02-15 22:17:55'),(10947,405,1,3240,'4.99','2005-06-21 02:53:17','2006-02-15 22:17:55'),(10948,405,1,3253,'5.99','2005-06-21 03:25:37','2006-02-15 22:17:55'),(10949,405,2,4223,'0.99','2005-07-07 12:23:54','2006-02-15 22:17:55'),(10950,405,2,4401,'0.99','2005-07-07 21:26:27','2006-02-15 22:17:55'),(10951,405,2,5040,'7.99','2005-07-09 03:16:34','2006-02-15 22:17:55'),(10952,405,1,5231,'0.99','2005-07-09 12:35:02','2006-02-15 22:17:56'),(10953,405,2,5512,'1.99','2005-07-10 01:05:38','2006-02-15 22:17:56'),(10954,405,1,6110,'2.99','2005-07-11 07:23:47','2006-02-15 22:17:56'),(10955,405,1,7455,'2.99','2005-07-27 18:34:41','2006-02-15 22:17:56'),(10956,405,1,7759,'0.99','2005-07-28 06:28:45','2006-02-15 22:17:56'),(10957,405,2,8482,'2.99','2005-07-29 08:46:33','2006-02-15 22:17:56'),(10958,405,1,8955,'5.99','2005-07-30 03:28:27','2006-02-15 22:17:56'),(10959,405,1,9569,'0.99','2005-07-31 02:39:38','2006-02-15 22:17:56'),(10960,405,1,10472,'4.99','2005-08-01 09:54:41','2006-02-15 22:17:56'),(10961,405,2,10823,'4.99','2005-08-01 22:59:10','2006-02-15 22:17:56'),(10962,405,1,11345,'7.99','2005-08-02 17:14:19','2006-02-15 22:17:56'),(10963,405,1,12050,'0.99','2005-08-17 20:55:25','2006-02-15 22:17:56'),(10964,405,2,12425,'5.99','2005-08-18 10:18:06','2006-02-15 22:17:56'),(10965,405,1,13304,'1.99','2005-08-19 18:56:32','2006-02-15 22:17:56'),(10966,405,1,13398,'0.99','2005-08-19 22:08:48','2006-02-15 22:17:56'),(10967,405,1,14274,'4.99','2005-08-21 06:29:20','2006-02-15 22:17:56'),(10968,405,2,14537,'0.99','2005-08-21 15:24:24','2006-02-15 22:17:56'),(10969,405,1,15072,'1.99','2005-08-22 10:58:45','2006-02-15 22:17:56'),(10970,405,2,15383,'2.99','2005-08-22 22:31:20','2006-02-15 22:17:57'),(10971,405,1,15932,'4.99','2005-08-23 18:31:40','2006-02-15 22:17:57'),(10972,405,1,12792,'0.99','2006-02-14 15:16:03','2006-02-15 22:17:57'),(10973,406,1,855,'0.99','2005-05-30 02:00:28','2006-02-15 22:17:57'),(10974,406,1,2113,'4.99','2005-06-17 19:57:46','2006-02-15 22:17:57'),(10975,406,2,2150,'3.99','2005-06-17 22:50:36','2006-02-15 22:17:57'),(10976,406,1,2241,'2.99','2005-06-18 04:31:41','2006-02-15 22:17:57'),(10977,406,2,2325,'0.99','2005-06-18 10:08:07','2006-02-15 22:17:57'),(10978,406,2,2585,'0.99','2005-06-19 05:05:03','2006-02-15 22:17:57'),(10979,406,1,3186,'7.99','2005-06-20 23:04:20','2006-02-15 22:17:57'),(10980,406,1,3306,'4.99','2005-06-21 07:46:58','2006-02-15 22:17:57'),(10981,406,2,4264,'4.99','2005-07-07 14:25:28','2006-02-15 22:17:57'),(10982,406,2,5098,'4.99','2005-07-09 06:13:54','2006-02-15 22:17:57'),(10983,406,2,5263,'0.99','2005-07-09 14:10:36','2006-02-15 22:17:57'),(10984,406,1,5766,'0.99','2005-07-10 13:07:31','2006-02-15 22:17:57'),(10985,406,2,6439,'2.99','2005-07-12 00:23:48','2006-02-15 22:17:57'),(10986,406,2,7109,'5.99','2005-07-27 05:28:57','2006-02-15 22:17:57'),(10987,406,1,7171,'4.99','2005-07-27 07:58:35','2006-02-15 22:17:57'),(10988,406,1,7259,'4.99','2005-07-27 11:06:00','2006-02-15 22:17:58'),(10989,406,2,7604,'7.99','2005-07-27 23:54:52','2006-02-15 22:17:58'),(10990,406,2,8080,'4.99','2005-07-28 18:05:06','2006-02-15 22:17:58'),(10991,406,2,8295,'2.99','2005-07-29 02:42:14','2006-02-15 22:17:58'),(10992,406,2,8630,'0.99','2005-07-29 14:07:59','2006-02-15 22:17:58'),(10993,406,1,8903,'0.99','2005-07-30 01:08:06','2006-02-15 22:17:58'),(10994,406,2,8962,'1.99','2005-07-30 03:43:45','2006-02-15 22:17:58'),(10995,406,2,9224,'0.99','2005-07-30 13:25:37','2006-02-15 22:17:58'),(10996,406,1,9291,'4.99','2005-07-30 16:03:39','2006-02-15 22:17:58'),(10997,406,2,9487,'2.99','2005-07-30 23:40:22','2006-02-15 22:17:58'),(10998,406,1,9660,'8.99','2005-07-31 06:03:17','2006-02-15 22:17:58'),(10999,406,1,10632,'1.99','2005-08-01 15:36:56','2006-02-15 22:17:58'),(11000,406,1,11603,'4.99','2005-08-17 03:22:10','2006-02-15 22:17:58'),(11001,406,2,12505,'5.99','2005-08-18 13:17:30','2006-02-15 22:17:58'),(11002,406,2,14205,'6.99','2005-08-21 03:57:15','2006-02-15 22:17:58'),(11003,406,2,14421,'2.99','2005-08-21 11:20:21','2006-02-15 22:17:58'),(11004,406,2,14601,'2.99','2005-08-21 17:45:52','2006-02-15 22:17:58'),(11005,407,1,619,'7.99','2005-05-28 15:52:26','2006-02-15 22:17:58'),(11006,407,1,1698,'2.99','2005-06-16 13:04:42','2006-02-15 22:17:59'),(11007,407,2,2597,'0.99','2005-06-19 05:53:46','2006-02-15 22:17:59'),(11008,407,1,4296,'0.99','2005-07-07 16:16:03','2006-02-15 22:17:59'),(11009,407,1,5070,'4.99','2005-07-09 04:58:26','2006-02-15 22:17:59'),(11010,407,2,5590,'9.99','2005-07-10 04:23:11','2006-02-15 22:17:59'),(11011,407,1,6727,'0.99','2005-07-12 13:54:25','2006-02-15 22:17:59'),(11012,407,1,7363,'5.99','2005-07-27 14:58:29','2006-02-15 22:17:59'),(11013,407,2,7643,'4.99','2005-07-28 01:19:44','2006-02-15 22:17:59'),(11014,407,1,8078,'2.99','2005-07-28 17:54:42','2006-02-15 22:17:59'),(11015,407,1,8109,'4.99','2005-07-28 19:07:44','2006-02-15 22:17:59'),(11016,407,1,8197,'9.99','2005-07-28 23:04:10','2006-02-15 22:17:59'),(11017,407,2,8571,'0.99','2005-07-29 11:48:39','2006-02-15 22:17:59'),(11018,407,1,8802,'2.99','2005-07-29 21:25:51','2006-02-15 22:17:59'),(11019,407,2,10774,'4.99','2005-08-01 20:54:33','2006-02-15 22:17:59'),(11020,407,1,11214,'8.99','2005-08-02 12:19:50','2006-02-15 22:17:59'),(11021,407,1,11222,'2.99','2005-08-02 12:32:28','2006-02-15 22:18:00'),(11022,407,2,11382,'5.99','2005-08-02 18:20:52','2006-02-15 22:18:00'),(11023,407,2,11518,'4.99','2005-08-16 23:59:49','2006-02-15 22:18:00'),(11024,407,1,11677,'0.99','2005-08-17 06:06:26','2006-02-15 22:18:00'),(11025,407,2,12566,'0.99','2005-08-18 15:13:04','2006-02-15 22:18:00'),(11026,407,2,12931,'2.99','2005-08-19 05:11:47','2006-02-15 22:18:00'),(11027,407,1,13800,'0.99','2005-08-20 12:40:48','2006-02-15 22:18:00'),(11028,407,2,13856,'6.99','2005-08-20 14:49:32','2006-02-15 22:18:00'),(11029,407,2,14401,'6.99','2005-08-21 10:36:20','2006-02-15 22:18:00'),(11030,407,2,15320,'0.99','2005-08-22 20:17:49','2006-02-15 22:18:00'),(11031,407,2,15334,'1.99','2005-08-22 20:44:35','2006-02-15 22:18:00'),(11032,408,2,3,'3.99','2005-05-24 23:03:39','2006-02-15 22:18:00'),(11033,408,2,59,'5.99','2005-05-25 08:56:42','2006-02-15 22:18:00'),(11034,408,1,526,'2.99','2005-05-28 04:27:37','2006-02-15 22:18:01'),(11035,408,2,2479,'4.99','2005-06-18 21:03:08','2006-02-15 22:18:01'),(11036,408,1,2564,'2.99','2005-06-19 03:41:10','2006-02-15 22:18:01'),(11037,408,2,2728,'2.99','2005-06-19 15:04:04','2006-02-15 22:18:01'),(11038,408,2,4330,'3.99','2005-07-07 18:09:41','2006-02-15 22:18:01'),(11039,408,2,5073,'0.99','2005-07-09 05:02:35','2006-02-15 22:18:01'),(11040,408,1,6062,'0.99','2005-07-11 04:11:58','2006-02-15 22:18:01'),(11041,408,2,6203,'4.99','2005-07-11 12:28:57','2006-02-15 22:18:01'),(11042,408,2,6826,'2.99','2005-07-12 18:32:02','2006-02-15 22:18:01'),(11043,408,1,7053,'4.99','2005-07-27 03:38:54','2006-02-15 22:18:01'),(11044,408,2,7996,'4.99','2005-07-28 15:00:49','2006-02-15 22:18:01'),(11045,408,2,8251,'4.99','2005-07-29 00:50:14','2006-02-15 22:18:01'),(11046,408,2,8469,'3.99','2005-07-29 08:26:27','2006-02-15 22:18:01'),(11047,408,2,8902,'6.99','2005-07-30 01:08:06','2006-02-15 22:18:01'),(11048,408,1,9052,'0.99','2005-07-30 07:06:08','2006-02-15 22:18:01'),(11049,408,2,9757,'4.99','2005-07-31 09:25:14','2006-02-15 22:18:01'),(11050,408,2,11115,'2.99','2005-08-02 08:31:06','2006-02-15 22:18:01'),(11051,408,1,12140,'2.99','2005-08-17 23:57:55','2006-02-15 22:18:01'),(11052,408,1,12338,'4.99','2005-08-18 07:04:24','2006-02-15 22:18:01'),(11053,408,1,12498,'2.99','2005-08-18 13:01:08','2006-02-15 22:18:02'),(11054,408,2,12900,'0.99','2005-08-19 04:03:49','2006-02-15 22:18:02'),(11055,408,1,13508,'7.99','2005-08-20 02:12:54','2006-02-15 22:18:02'),(11056,408,2,13744,'3.99','2005-08-20 10:51:45','2006-02-15 22:18:02'),(11057,408,1,13944,'2.99','2005-08-20 17:41:16','2006-02-15 22:18:02'),(11058,408,2,14733,'4.99','2005-08-21 22:22:33','2006-02-15 22:18:02'),(11059,408,1,15628,'2.99','2005-08-23 07:28:04','2006-02-15 22:18:02'),(11060,408,2,15716,'1.99','2005-08-23 11:02:00','2006-02-15 22:18:02'),(11061,408,1,15765,'6.99','2005-08-23 13:06:19','2006-02-15 22:18:03'),(11062,409,1,310,'6.99','2005-05-26 22:41:07','2006-02-15 22:18:03'),(11063,409,2,1226,'5.99','2005-06-15 03:46:10','2006-02-15 22:18:03'),(11064,409,2,2310,'8.99','2005-06-18 08:45:59','2006-02-15 22:18:03'),(11065,409,1,3866,'5.99','2005-07-06 17:47:20','2006-02-15 22:18:03'),(11066,409,2,4550,'4.99','2005-07-08 04:34:00','2006-02-15 22:18:03'),(11067,409,1,5175,'3.99','2005-07-09 09:34:28','2006-02-15 22:18:03'),(11068,409,2,5306,'5.99','2005-07-09 15:56:45','2006-02-15 22:18:03'),(11069,409,1,5422,'0.99','2005-07-09 20:55:47','2006-02-15 22:18:03'),(11070,409,1,5848,'2.99','2005-07-10 17:28:14','2006-02-15 22:18:04'),(11071,409,1,5955,'7.99','2005-07-10 23:22:10','2006-02-15 22:18:04'),(11072,409,2,6026,'4.99','2005-07-11 02:21:43','2006-02-15 22:18:04'),(11073,409,1,6596,'2.99','2005-07-12 07:32:59','2006-02-15 22:18:04'),(11074,409,2,7673,'2.99','2005-07-28 02:53:53','2006-02-15 22:18:04'),(11075,409,2,7940,'0.99','2005-07-28 12:46:47','2006-02-15 22:18:04'),(11076,409,1,8037,'4.99','2005-07-28 16:31:20','2006-02-15 22:18:04'),(11077,409,2,8265,'5.99','2005-07-29 01:20:15','2006-02-15 22:18:04'),(11078,409,1,8726,'1.99','2005-07-29 18:09:22','2006-02-15 22:18:04'),(11079,409,2,9267,'0.99','2005-07-30 14:59:05','2006-02-15 22:18:04'),(11080,409,2,12830,'0.99','2005-08-19 01:40:25','2006-02-15 22:18:04'),(11081,409,1,13392,'8.99','2005-08-19 22:03:22','2006-02-15 22:18:04'),(11082,409,2,13632,'6.99','2005-08-20 07:10:52','2006-02-15 22:18:04'),(11083,409,1,14103,'1.99','2005-08-21 00:37:00','2006-02-15 22:18:04'),(11084,409,1,14697,'4.99','2005-08-21 20:49:21','2006-02-15 22:18:05'),(11085,410,1,1514,'2.99','2005-06-15 22:57:34','2006-02-15 22:18:05'),(11086,410,1,2073,'2.99','2005-06-17 16:33:59','2006-02-15 22:18:05'),(11087,410,1,2255,'4.99','2005-06-18 05:21:12','2006-02-15 22:18:05'),(11088,410,2,2400,'5.99','2005-06-18 16:10:46','2006-02-15 22:18:05'),(11089,410,2,2971,'0.99','2005-06-20 07:56:00','2006-02-15 22:18:05'),(11090,410,1,3249,'4.99','2005-06-21 03:13:19','2006-02-15 22:18:05'),(11091,410,2,4062,'0.99','2005-07-07 04:22:27','2006-02-15 22:18:05'),(11092,410,1,4267,'0.99','2005-07-07 14:35:30','2006-02-15 22:18:05'),(11093,410,1,5150,'3.99','2005-07-09 08:28:40','2006-02-15 22:18:05'),(11094,410,1,5192,'4.99','2005-07-09 10:27:09','2006-02-15 22:18:05'),(11095,410,2,5330,'5.99','2005-07-09 16:53:57','2006-02-15 22:18:05'),(11096,410,1,5336,'2.99','2005-07-09 17:01:08','2006-02-15 22:18:05'),(11097,410,1,6148,'4.99','2005-07-11 09:14:22','2006-02-15 22:18:05'),(11098,410,2,6218,'5.99','2005-07-11 13:14:58','2006-02-15 22:18:05'),(11099,410,2,7350,'4.99','2005-07-27 14:34:14','2006-02-15 22:18:05'),(11100,410,2,7407,'5.99','2005-07-27 16:29:04','2006-02-15 22:18:05'),(11101,410,1,7523,'4.99','2005-07-27 21:11:23','2006-02-15 22:18:06'),(11102,410,2,8625,'3.99','2005-07-29 13:59:13','2006-02-15 22:18:06'),(11103,410,1,8882,'0.99','2005-07-30 00:24:05','2006-02-15 22:18:06'),(11104,410,1,9263,'2.99','2005-07-30 14:48:24','2006-02-15 22:18:06'),(11105,410,1,10402,'4.99','2005-08-01 07:27:19','2006-02-15 22:18:06'),(11106,410,1,10837,'2.99','2005-08-01 23:30:22','2006-02-15 22:18:06'),(11107,410,1,11107,'0.99','2005-08-02 08:19:38','2006-02-15 22:18:06'),(11108,410,1,11187,'10.99','2005-08-02 11:16:19','2006-02-15 22:18:06'),(11109,410,1,11472,'6.99','2005-08-02 21:49:06','2006-02-15 22:18:06'),(11110,410,1,11694,'6.99','2005-08-17 06:57:30','2006-02-15 22:18:06'),(11111,410,2,12955,'8.99','2005-08-19 06:05:58','2006-02-15 22:18:06'),(11112,410,1,13460,'4.99','2005-08-20 00:48:24','2006-02-15 22:18:06'),(11113,410,2,13748,'2.99','2005-08-20 10:59:54','2006-02-15 22:18:06'),(11114,410,2,13948,'6.99','2005-08-20 17:50:48','2006-02-15 22:18:06'),(11115,410,1,14237,'3.99','2005-08-21 05:15:00','2006-02-15 22:18:07'),(11116,410,2,14298,'4.99','2005-08-21 07:17:10','2006-02-15 22:18:07'),(11117,410,1,14319,'4.99','2005-08-21 08:00:55','2006-02-15 22:18:07'),(11118,410,2,14819,'2.99','2005-08-22 01:17:19','2006-02-15 22:18:07'),(11119,410,1,15211,'2.99','2005-08-22 16:40:21','2006-02-15 22:18:07'),(11120,410,2,15392,'3.99','2005-08-22 23:02:15','2006-02-15 22:18:07'),(11121,410,1,15518,'4.99','2005-08-23 03:19:34','2006-02-15 22:18:07'),(11122,410,1,12665,'2.99','2006-02-14 15:16:03','2006-02-15 22:18:08'),(11123,411,2,686,'4.99','2005-05-29 00:27:10','2006-02-15 22:18:08'),(11124,411,2,972,'1.99','2005-05-30 20:21:07','2006-02-15 22:18:08'),(11125,411,1,1985,'0.99','2005-06-17 10:31:37','2006-02-15 22:18:08'),(11126,411,2,1997,'2.99','2005-06-17 11:19:43','2006-02-15 22:18:08'),(11127,411,2,2712,'0.99','2005-06-19 14:20:13','2006-02-15 22:18:08'),(11128,411,1,3928,'2.99','2005-07-06 20:52:09','2006-02-15 22:18:08'),(11129,411,2,4146,'0.99','2005-07-07 08:30:16','2006-02-15 22:18:08'),(11130,411,1,4246,'2.99','2005-07-07 13:49:03','2006-02-15 22:18:08'),(11131,411,2,5357,'5.99','2005-07-09 18:08:59','2006-02-15 22:18:08'),(11132,411,1,5800,'2.99','2005-07-10 14:58:36','2006-02-15 22:18:08'),(11133,411,1,7102,'1.99','2005-07-27 05:07:21','2006-02-15 22:18:08'),(11134,411,2,7395,'0.99','2005-07-27 16:03:11','2006-02-15 22:18:08'),(11135,411,1,7513,'2.99','2005-07-27 20:51:04','2006-02-15 22:18:08'),(11136,411,1,7813,'2.99','2005-07-28 08:08:27','2006-02-15 22:18:08'),(11137,411,1,8023,'0.99','2005-07-28 15:53:29','2006-02-15 22:18:08'),(11138,411,2,8613,'5.99','2005-07-29 13:30:58','2006-02-15 22:18:09'),(11139,411,2,9622,'0.99','2005-07-31 04:21:45','2006-02-15 22:18:09'),(11140,411,2,11294,'2.99','2005-08-02 15:08:27','2006-02-15 22:18:09'),(11141,411,1,11997,'5.99','2005-08-17 18:34:38','2006-02-15 22:18:09'),(11142,411,2,13634,'0.99','2005-08-20 07:16:45','2006-02-15 22:18:09'),(11143,411,2,13656,'7.99','2005-08-20 08:01:07','2006-02-15 22:18:09'),(11144,411,2,14480,'2.99','2005-08-21 13:36:40','2006-02-15 22:18:09'),(11145,411,1,14772,'5.99','2005-08-21 23:50:39','2006-02-15 22:18:09'),(11146,411,2,14996,'2.99','2005-08-22 07:52:41','2006-02-15 22:18:09'),(11147,411,1,15936,'0.99','2005-08-23 18:43:11','2006-02-15 22:18:09'),(11148,411,2,13246,'4.99','2006-02-14 15:16:03','2006-02-15 22:18:09'),(11149,412,2,191,'0.99','2005-05-26 06:14:06','2006-02-15 22:18:09'),(11150,412,1,333,'4.99','2005-05-27 02:52:21','2006-02-15 22:18:09'),(11151,412,1,717,'0.99','2005-05-29 04:37:44','2006-02-15 22:18:09'),(11152,412,2,1043,'3.99','2005-05-31 06:11:40','2006-02-15 22:18:09'),(11153,412,1,3292,'2.99','2005-06-21 06:59:11','2006-02-15 22:18:09'),(11154,412,2,3888,'0.99','2005-07-06 18:54:20','2006-02-15 22:18:09'),(11155,412,2,4074,'0.99','2005-07-07 04:49:49','2006-02-15 22:18:09'),(11156,412,1,8036,'0.99','2005-07-28 16:27:43','2006-02-15 22:18:09'),(11157,412,2,8330,'8.99','2005-07-29 04:09:07','2006-02-15 22:18:10'),(11158,412,1,8411,'8.99','2005-07-29 06:44:23','2006-02-15 22:18:10'),(11159,412,1,8674,'0.99','2005-07-29 15:54:22','2006-02-15 22:18:10'),(11160,412,1,9881,'4.99','2005-07-31 13:50:38','2006-02-15 22:18:10'),(11161,412,2,10381,'2.99','2005-08-01 06:36:37','2006-02-15 22:18:10'),(11162,412,1,10467,'5.99','2005-08-01 09:45:58','2006-02-15 22:18:10'),(11163,412,2,11027,'4.99','2005-08-02 05:47:10','2006-02-15 22:18:10'),(11164,412,1,14068,'3.99','2005-08-20 22:50:59','2006-02-15 22:18:10'),(11165,412,1,14535,'6.99','2005-08-21 15:22:37','2006-02-15 22:18:10'),(11166,412,2,15354,'4.99','2005-08-22 21:18:59','2006-02-15 22:18:10'),(11167,412,2,15732,'4.99','2005-08-23 11:35:12','2006-02-15 22:18:10'),(11168,412,1,15781,'8.99','2005-08-23 13:41:05','2006-02-15 22:18:10'),(11169,412,1,15314,'0.99','2006-02-14 15:16:03','2006-02-15 22:18:10'),(11170,413,1,40,'4.99','2005-05-25 05:09:04','2006-02-15 22:18:10'),(11171,413,1,999,'4.99','2005-05-31 00:25:10','2006-02-15 22:18:10'),(11172,413,2,2130,'5.99','2005-06-17 21:00:44','2006-02-15 22:18:10'),(11173,413,2,2545,'4.99','2005-06-19 02:23:36','2006-02-15 22:18:10'),(11174,413,1,3762,'4.99','2005-07-06 12:52:49','2006-02-15 22:18:10'),(11175,413,2,4491,'0.99','2005-07-08 01:30:46','2006-02-15 22:18:10'),(11176,413,1,5897,'7.99','2005-07-10 20:16:14','2006-02-15 22:18:11'),(11177,413,2,7100,'4.99','2005-07-27 05:05:01','2006-02-15 22:18:11'),(11178,413,1,7635,'0.99','2005-07-28 01:08:11','2006-02-15 22:18:11'),(11179,413,2,7731,'0.99','2005-07-28 05:01:18','2006-02-15 22:18:11'),(11180,413,1,10909,'2.99','2005-08-02 01:53:59','2006-02-15 22:18:11'),(11181,413,2,11304,'2.99','2005-08-02 15:40:10','2006-02-15 22:18:11'),(11182,413,1,11468,'0.99','2005-08-02 21:47:26','2006-02-15 22:18:11'),(11183,413,1,11532,'0.99','2005-08-17 00:34:14','2006-02-15 22:18:11'),(11184,413,2,12552,'2.99','2005-08-18 14:46:34','2006-02-15 22:18:11'),(11185,413,1,13010,'3.99','2005-08-19 07:52:21','2006-02-15 22:18:11'),(11186,413,1,13318,'2.99','2005-08-19 19:33:57','2006-02-15 22:18:11'),(11187,413,2,13824,'4.99','2005-08-20 13:43:12','2006-02-15 22:18:11'),(11188,413,2,13887,'4.99','2005-08-20 15:39:00','2006-02-15 22:18:11'),(11189,413,1,14773,'2.99','2005-08-21 23:50:57','2006-02-15 22:18:11'),(11190,413,1,15678,'2.99','2005-08-23 09:23:45','2006-02-15 22:18:11'),(11191,414,1,85,'4.99','2005-05-25 13:05:34','2006-02-15 22:18:11'),(11192,414,1,261,'3.99','2005-05-26 15:44:23','2006-02-15 22:18:11'),(11193,414,1,2246,'4.99','2005-06-18 04:54:29','2006-02-15 22:18:11'),(11194,414,1,2559,'9.99','2005-06-19 03:09:46','2006-02-15 22:18:12'),(11195,414,1,3318,'5.99','2005-06-21 08:23:05','2006-02-15 22:18:12'),(11196,414,1,3957,'10.99','2005-07-06 22:05:47','2006-02-15 22:18:12'),(11197,414,1,4437,'3.99','2005-07-07 22:55:41','2006-02-15 22:18:12'),(11198,414,2,6462,'7.99','2005-07-12 01:15:24','2006-02-15 22:18:12'),(11199,414,2,6728,'0.99','2005-07-12 13:56:48','2006-02-15 22:18:12'),(11200,414,2,6845,'0.99','2005-07-12 19:20:41','2006-02-15 22:18:12'),(11201,414,1,7009,'0.99','2005-07-27 01:45:44','2006-02-15 22:18:12'),(11202,414,1,7779,'2.99','2005-07-28 07:11:11','2006-02-15 22:18:12'),(11203,414,1,9650,'2.99','2005-07-31 05:47:32','2006-02-15 22:18:12'),(11204,414,2,9991,'2.99','2005-07-31 17:26:27','2006-02-15 22:18:12'),(11205,414,2,10107,'5.99','2005-07-31 21:01:46','2006-02-15 22:18:12'),(11206,414,1,11706,'0.99','2005-08-17 07:23:46','2006-02-15 22:18:12'),(11207,414,2,12930,'4.99','2005-08-19 05:11:32','2006-02-15 22:18:12'),(11208,414,1,13042,'0.99','2005-08-19 09:06:08','2006-02-15 22:18:12'),(11209,414,1,13242,'2.99','2005-08-19 16:28:47','2006-02-15 22:18:12'),(11210,414,1,13308,'7.99','2005-08-19 18:59:42','2006-02-15 22:18:12'),(11211,414,1,13404,'0.99','2005-08-19 22:18:42','2006-02-15 22:18:12'),(11212,414,2,13494,'2.99','2005-08-20 01:36:34','2006-02-15 22:18:12'),(11213,414,2,13657,'4.99','2005-08-20 08:01:39','2006-02-15 22:18:12'),(11214,414,1,15140,'6.99','2005-08-22 13:39:20','2006-02-15 22:18:13'),(11215,414,2,15481,'0.99','2005-08-23 01:59:14','2006-02-15 22:18:13'),(11216,415,2,665,'4.99','2005-05-28 21:38:39','2006-02-15 22:18:13'),(11217,415,2,1867,'4.99','2005-06-17 02:01:37','2006-02-15 22:18:13'),(11218,415,1,3211,'2.99','2005-06-21 01:01:29','2006-02-15 22:18:13'),(11219,415,2,4926,'8.99','2005-07-08 22:01:48','2006-02-15 22:18:13'),(11220,415,2,5665,'0.99','2005-07-10 08:10:08','2006-02-15 22:18:13'),(11221,415,2,5733,'0.99','2005-07-10 11:37:24','2006-02-15 22:18:13'),(11222,415,2,6491,'5.99','2005-07-12 02:28:31','2006-02-15 22:18:13'),(11223,415,1,6505,'3.99','2005-07-12 03:27:37','2006-02-15 22:18:13'),(11224,415,1,7379,'4.99','2005-07-27 15:36:43','2006-02-15 22:18:13'),(11225,415,2,7624,'0.99','2005-07-28 00:37:44','2006-02-15 22:18:13'),(11226,415,1,7748,'4.99','2005-07-28 05:52:23','2006-02-15 22:18:13'),(11227,415,2,8317,'2.99','2005-07-29 03:39:07','2006-02-15 22:18:13'),(11228,415,2,9586,'2.99','2005-07-31 03:07:16','2006-02-15 22:18:13'),(11229,415,1,9852,'2.99','2005-07-31 12:52:17','2006-02-15 22:18:13'),(11230,415,1,10263,'5.99','2005-08-01 03:02:48','2006-02-15 22:18:13'),(11231,415,1,10553,'2.99','2005-08-01 12:54:06','2006-02-15 22:18:13'),(11232,415,2,11310,'1.99','2005-08-02 15:51:58','2006-02-15 22:18:13'),(11233,415,2,12128,'5.99','2005-08-17 23:31:09','2006-02-15 22:18:14'),(11234,415,2,12588,'2.99','2005-08-18 16:04:45','2006-02-15 22:18:14'),(11235,415,2,13729,'8.99','2005-08-20 10:17:08','2006-02-15 22:18:14'),(11236,415,1,14992,'4.99','2005-08-22 07:51:47','2006-02-15 22:18:14'),(11237,415,2,15121,'4.99','2005-08-22 12:46:37','2006-02-15 22:18:14'),(11238,415,1,15959,'0.99','2005-08-23 19:27:04','2006-02-15 22:18:14'),(11239,416,2,253,'0.99','2005-05-26 14:43:14','2006-02-15 22:18:14'),(11240,416,2,724,'3.99','2005-05-29 05:53:23','2006-02-15 22:18:14'),(11241,416,2,1031,'2.99','2005-05-31 04:23:01','2006-02-15 22:18:14'),(11242,416,2,1158,'2.99','2005-06-14 22:53:33','2006-02-15 22:18:14'),(11243,416,1,1343,'4.99','2005-06-15 12:27:19','2006-02-15 22:18:14'),(11244,416,2,1553,'0.99','2005-06-16 02:02:44','2006-02-15 22:18:14'),(11245,416,2,1596,'2.99','2005-06-16 05:30:58','2006-02-15 22:18:14'),(11246,416,2,1771,'0.99','2005-06-16 18:12:17','2006-02-15 22:18:14'),(11247,416,1,3833,'3.99','2005-07-06 16:18:28','2006-02-15 22:18:14'),(11248,416,1,3868,'2.99','2005-07-06 17:54:13','2006-02-15 22:18:14'),(11249,416,1,6097,'2.99','2005-07-11 06:21:43','2006-02-15 22:18:14'),(11250,416,1,6879,'7.99','2005-07-12 20:37:37','2006-02-15 22:18:14'),(11251,416,1,7889,'0.99','2005-07-28 10:43:21','2006-02-15 22:18:14'),(11252,416,1,7917,'2.99','2005-07-28 11:56:57','2006-02-15 22:18:15'),(11253,416,2,8349,'5.99','2005-07-29 04:50:22','2006-02-15 22:18:15'),(11254,416,2,8588,'2.99','2005-07-29 12:22:20','2006-02-15 22:18:15'),(11255,416,2,8648,'2.99','2005-07-29 14:56:21','2006-02-15 22:18:15'),(11256,416,2,9383,'2.99','2005-07-30 19:24:50','2006-02-15 22:18:15'),(11257,416,1,10254,'3.99','2005-08-01 02:42:03','2006-02-15 22:18:15'),(11258,416,1,10354,'2.99','2005-08-01 05:47:10','2006-02-15 22:18:15'),(11259,416,1,10742,'6.99','2005-08-01 19:53:13','2006-02-15 22:18:15'),(11260,416,1,10937,'6.99','2005-08-02 03:00:18','2006-02-15 22:18:15'),(11261,416,2,11047,'5.99','2005-08-02 06:09:20','2006-02-15 22:18:15'),(11262,416,1,11557,'6.99','2005-08-17 01:19:20','2006-02-15 22:18:15'),(11263,416,1,12722,'8.99','2005-08-18 21:33:53','2006-02-15 22:18:15'),(11264,416,1,12932,'4.99','2005-08-19 05:17:30','2006-02-15 22:18:15'),(11265,416,1,14239,'4.99','2005-08-21 05:18:57','2006-02-15 22:18:15'),(11266,416,1,15235,'1.99','2005-08-22 17:43:12','2006-02-15 22:18:15'),(11267,416,2,15470,'4.99','2005-08-23 01:35:12','2006-02-15 22:18:15'),(11268,416,1,15727,'2.99','2005-08-23 11:28:49','2006-02-15 22:18:15'),(11269,416,2,15761,'0.99','2005-08-23 12:55:51','2006-02-15 22:18:15'),(11270,417,1,267,'4.99','2005-05-26 16:16:21','2006-02-15 22:18:15'),(11271,417,2,630,'8.99','2005-05-28 17:24:51','2006-02-15 22:18:16'),(11272,417,2,833,'4.99','2005-05-29 23:21:56','2006-02-15 22:18:16'),(11273,417,1,1921,'3.99','2005-06-17 06:04:16','2006-02-15 22:18:16'),(11274,417,1,3952,'4.99','2005-07-06 21:51:31','2006-02-15 22:18:16'),(11275,417,1,4418,'2.99','2005-07-07 22:05:30','2006-02-15 22:18:16'),(11276,417,1,4421,'9.99','2005-07-07 22:07:55','2006-02-15 22:18:16'),(11277,417,2,6258,'6.99','2005-07-11 15:24:32','2006-02-15 22:18:16'),(11278,417,1,6312,'4.99','2005-07-11 18:19:02','2006-02-15 22:18:16'),(11279,417,1,8877,'2.99','2005-07-30 00:15:22','2006-02-15 22:18:16'),(11280,417,2,9049,'2.99','2005-07-30 06:57:28','2006-02-15 22:18:16'),(11281,417,1,10478,'0.99','2005-08-01 10:09:06','2006-02-15 22:18:16'),(11282,417,1,11217,'7.99','2005-08-02 12:26:31','2006-02-15 22:18:16'),(11283,417,1,11291,'6.99','2005-08-02 14:57:58','2006-02-15 22:18:16'),(11284,417,2,11303,'0.99','2005-08-02 15:39:18','2006-02-15 22:18:16'),(11285,417,2,12074,'0.99','2005-08-17 21:50:57','2006-02-15 22:18:16'),(11286,417,2,12281,'4.99','2005-08-18 04:50:32','2006-02-15 22:18:16'),(11287,417,1,13545,'4.99','2005-08-20 03:50:15','2006-02-15 22:18:16'),(11288,417,1,13927,'1.99','2005-08-20 17:11:58','2006-02-15 22:18:16'),(11289,417,2,14121,'4.99','2005-08-21 01:26:33','2006-02-15 22:18:16'),(11290,417,1,14304,'6.99','2005-08-21 07:23:10','2006-02-15 22:18:17'),(11291,417,1,14607,'2.99','2005-08-21 17:56:50','2006-02-15 22:18:17'),(11292,417,2,14882,'2.99','2005-08-22 03:52:21','2006-02-15 22:18:17'),(11293,417,1,15795,'0.99','2005-08-23 14:07:56','2006-02-15 22:18:17'),(11294,417,2,13261,'2.99','2006-02-14 15:16:03','2006-02-15 22:18:17'),(11295,418,1,2825,'2.99','2005-06-19 20:32:19','2006-02-15 22:18:17'),(11296,418,2,2943,'2.99','2005-06-20 05:43:05','2006-02-15 22:18:17'),(11297,418,2,2969,'2.99','2005-06-20 07:44:27','2006-02-15 22:18:17'),(11298,418,1,3805,'0.99','2005-07-06 15:08:42','2006-02-15 22:18:17'),(11299,418,2,4852,'7.99','2005-07-08 18:43:15','2006-02-15 22:18:17'),(11300,418,1,4865,'2.99','2005-07-08 19:09:04','2006-02-15 22:18:17'),(11301,418,1,4938,'0.99','2005-07-08 22:32:53','2006-02-15 22:18:17'),(11302,418,1,6150,'4.99','2005-07-11 09:23:56','2006-02-15 22:18:17'),(11303,418,1,6970,'4.99','2005-07-27 00:26:14','2006-02-15 22:18:17'),(11304,418,2,8546,'5.99','2005-07-29 11:08:48','2006-02-15 22:18:17'),(11305,418,2,8591,'0.99','2005-07-29 12:32:33','2006-02-15 22:18:17'),(11306,418,2,8886,'10.99','2005-07-30 00:36:31','2006-02-15 22:18:17'),(11307,418,1,9558,'4.99','2005-07-31 02:14:35','2006-02-15 22:18:17'),(11308,418,2,10537,'5.99','2005-08-01 12:22:28','2006-02-15 22:18:17'),(11309,418,1,10709,'0.99','2005-08-01 18:43:57','2006-02-15 22:18:18'),(11310,418,2,10915,'2.99','2005-08-02 02:05:04','2006-02-15 22:18:18'),(11311,418,1,11270,'2.99','2005-08-02 14:18:07','2006-02-15 22:18:18'),(11312,418,2,11322,'3.99','2005-08-02 16:23:17','2006-02-15 22:18:18'),(11313,418,2,11409,'1.99','2005-08-02 19:26:51','2006-02-15 22:18:18'),(11314,418,1,11650,'4.99','2005-08-17 05:00:03','2006-02-15 22:18:18'),(11315,418,1,11769,'2.99','2005-08-17 10:04:49','2006-02-15 22:18:18'),(11316,418,1,11910,'0.99','2005-08-17 15:44:37','2006-02-15 22:18:18'),(11317,418,2,13312,'0.99','2005-08-19 19:09:14','2006-02-15 22:18:18'),(11318,418,1,13537,'2.99','2005-08-20 03:39:15','2006-02-15 22:18:18'),(11319,418,1,13970,'0.99','2005-08-20 18:43:34','2006-02-15 22:18:18'),(11320,418,1,14484,'0.99','2005-08-21 13:47:29','2006-02-15 22:18:18'),(11321,418,1,14836,'4.99','2005-08-22 01:52:26','2006-02-15 22:18:18'),(11322,418,2,14860,'2.99','2005-08-22 02:47:07','2006-02-15 22:18:18'),(11323,418,1,15466,'4.99','2005-08-23 01:16:55','2006-02-15 22:18:18'),(11324,418,2,15957,'5.99','2005-08-23 19:21:22','2006-02-15 22:18:18'),(11325,419,1,62,'2.99','2005-05-25 09:18:52','2006-02-15 22:18:18'),(11326,419,2,2793,'2.99','2005-06-19 18:52:37','2006-02-15 22:18:18'),(11327,419,1,3596,'0.99','2005-07-06 05:03:11','2006-02-15 22:18:18'),(11328,419,1,3694,'4.99','2005-07-06 10:01:23','2006-02-15 22:18:19'),(11329,419,1,4224,'0.99','2005-07-07 12:24:21','2006-02-15 22:18:19'),(11330,419,2,5333,'5.99','2005-07-09 16:59:38','2006-02-15 22:18:19'),(11331,419,2,5863,'0.99','2005-07-10 18:25:23','2006-02-15 22:18:19'),(11332,419,1,5900,'3.99','2005-07-10 20:21:54','2006-02-15 22:18:19'),(11333,419,2,5933,'0.99','2005-07-10 22:06:48','2006-02-15 22:18:19'),(11334,419,2,6173,'0.99','2005-07-11 10:33:11','2006-02-15 22:18:19'),(11335,419,2,6587,'3.99','2005-07-12 06:56:26','2006-02-15 22:18:19'),(11336,419,1,7362,'4.99','2005-07-27 14:58:27','2006-02-15 22:18:19'),(11337,419,1,7619,'2.99','2005-07-28 00:25:41','2006-02-15 22:18:19'),(11338,419,1,7796,'4.99','2005-07-28 07:39:39','2006-02-15 22:18:19'),(11339,419,1,10150,'2.99','2005-07-31 22:22:00','2006-02-15 22:18:19'),(11340,419,1,10372,'2.99','2005-08-01 06:23:48','2006-02-15 22:18:19'),(11341,419,2,11025,'4.99','2005-08-02 05:39:12','2006-02-15 22:18:19'),(11342,419,1,11313,'2.99','2005-08-02 16:02:51','2006-02-15 22:18:19'),(11343,419,2,11323,'2.99','2005-08-02 16:29:57','2006-02-15 22:18:19'),(11344,419,1,11425,'2.99','2005-08-02 19:58:48','2006-02-15 22:18:19'),(11345,419,2,11689,'6.99','2005-08-17 06:42:08','2006-02-15 22:18:19'),(11346,419,1,12460,'7.99','2005-08-18 11:25:13','2006-02-15 22:18:19'),(11347,419,1,12720,'5.99','2005-08-18 21:28:42','2006-02-15 22:18:20'),(11348,419,2,14308,'0.99','2005-08-21 07:43:21','2006-02-15 22:18:20'),(11349,419,2,15779,'4.99','2005-08-23 13:33:46','2006-02-15 22:18:20'),(11350,420,2,744,'4.99','2005-05-29 09:13:08','2006-02-15 22:18:20'),(11351,420,2,2672,'3.99','2005-06-19 11:42:04','2006-02-15 22:18:20'),(11352,420,1,2698,'0.99','2005-06-19 13:29:11','2006-02-15 22:18:20'),(11353,420,1,2726,'0.99','2005-06-19 15:02:20','2006-02-15 22:18:20'),(11354,420,1,4176,'4.99','2005-07-07 10:03:34','2006-02-15 22:18:20'),(11355,420,2,5081,'4.99','2005-07-09 05:25:20','2006-02-15 22:18:20'),(11356,420,1,5168,'4.99','2005-07-09 09:20:01','2006-02-15 22:18:20'),(11357,420,2,5911,'0.99','2005-07-10 20:51:42','2006-02-15 22:18:20'),(11358,420,2,6086,'3.99','2005-07-11 05:29:03','2006-02-15 22:18:20'),(11359,420,2,6096,'4.99','2005-07-11 06:18:04','2006-02-15 22:18:20'),(11360,420,2,6582,'4.99','2005-07-12 06:28:12','2006-02-15 22:18:20'),(11361,420,1,6588,'4.99','2005-07-12 06:57:40','2006-02-15 22:18:20'),(11362,420,2,7081,'2.99','2005-07-27 04:25:59','2006-02-15 22:18:20'),(11363,420,2,8485,'0.99','2005-07-29 08:53:09','2006-02-15 22:18:20'),(11364,420,1,9362,'0.99','2005-07-30 18:44:16','2006-02-15 22:18:20'),(11365,420,2,10291,'4.99','2005-08-01 03:39:57','2006-02-15 22:18:20'),(11366,420,2,10601,'10.99','2005-08-01 14:25:40','2006-02-15 22:18:21'),(11367,420,1,10766,'4.99','2005-08-01 20:36:29','2006-02-15 22:18:21'),(11368,420,2,11236,'5.99','2005-08-02 13:17:21','2006-02-15 22:18:21'),(11369,420,2,14525,'0.99','2005-08-21 15:06:49','2006-02-15 22:18:21'),(11370,420,2,15597,'0.99','2005-08-23 06:21:20','2006-02-15 22:18:21'),(11371,421,1,507,'0.99','2005-05-28 02:31:19','2006-02-15 22:18:21'),(11372,421,1,931,'0.99','2005-05-30 12:53:01','2006-02-15 22:18:21'),(11373,421,1,1693,'4.99','2005-06-16 12:39:51','2006-02-15 22:18:21'),(11374,421,2,2407,'2.99','2005-06-18 16:50:41','2006-02-15 22:18:21'),(11375,421,1,3170,'4.99','2005-06-20 22:02:54','2006-02-15 22:18:21'),(11376,421,1,3491,'7.99','2005-07-05 23:41:08','2006-02-15 22:18:21'),(11377,421,2,3703,'5.99','2005-07-06 10:15:26','2006-02-15 22:18:21'),(11378,421,1,3988,'8.99','2005-07-06 23:30:42','2006-02-15 22:18:21'),(11379,421,2,4456,'5.99','2005-07-07 23:45:21','2006-02-15 22:18:21'),(11380,421,1,6220,'0.99','2005-07-11 13:22:06','2006-02-15 22:18:21'),(11381,421,2,6960,'3.99','2005-07-27 00:08:33','2006-02-15 22:18:21'),(11382,421,2,7449,'4.99','2005-07-27 18:17:41','2006-02-15 22:18:21'),(11383,421,2,8025,'2.99','2005-07-28 16:03:27','2006-02-15 22:18:21'),(11384,421,1,8268,'4.99','2005-07-29 01:23:23','2006-02-15 22:18:21'),(11385,421,1,8725,'4.99','2005-07-29 18:08:42','2006-02-15 22:18:22'),(11386,421,2,9377,'4.99','2005-07-30 19:12:18','2006-02-15 22:18:22'),(11387,421,2,9875,'0.99','2005-07-31 13:37:41','2006-02-15 22:18:22'),(11388,421,1,10200,'4.99','2005-08-01 00:39:05','2006-02-15 22:18:22'),(11389,421,2,11089,'2.99','2005-08-02 07:52:20','2006-02-15 22:18:22'),(11390,421,1,11263,'4.99','2005-08-02 14:02:19','2006-02-15 22:18:22'),(11391,421,1,11523,'3.99','2005-08-17 00:10:10','2006-02-15 22:18:22'),(11392,421,1,12279,'4.99','2005-08-18 04:47:30','2006-02-15 22:18:22'),(11393,421,2,13461,'9.99','2005-08-20 00:49:04','2006-02-15 22:18:22'),(11394,421,1,13872,'4.99','2005-08-20 15:10:30','2006-02-15 22:18:22'),(11395,421,1,14742,'4.99','2005-08-21 22:39:01','2006-02-15 22:18:22'),(11396,421,1,14887,'3.99','2005-08-22 04:04:31','2006-02-15 22:18:22'),(11397,421,2,15710,'0.99','2006-02-14 15:16:03','2006-02-15 22:18:22'),(11398,422,1,398,'0.99','2005-05-27 12:44:03','2006-02-15 22:18:22'),(11399,422,1,1846,'0.99','2005-06-17 00:02:44','2006-02-15 22:18:22'),(11400,422,1,1897,'4.99','2005-06-17 04:26:23','2006-02-15 22:18:22'),(11401,422,2,2747,'2.99','2005-06-19 16:22:07','2006-02-15 22:18:22'),(11402,422,1,2778,'5.99','2005-06-19 18:18:12','2006-02-15 22:18:22'),(11403,422,1,3553,'4.99','2005-07-06 02:35:41','2006-02-15 22:18:22'),(11404,422,2,4463,'2.99','2005-07-08 00:04:59','2006-02-15 22:18:23'),(11405,422,2,4504,'0.99','2005-07-08 02:19:27','2006-02-15 22:18:23'),(11406,422,1,5784,'1.99','2005-07-10 14:03:28','2006-02-15 22:18:23'),(11407,422,2,7827,'0.99','2005-07-28 08:37:22','2006-02-15 22:18:23'),(11408,422,2,8206,'4.99','2005-07-28 23:20:31','2006-02-15 22:18:23'),(11409,422,2,9541,'4.99','2005-07-31 01:40:14','2006-02-15 22:18:23'),(11410,422,2,10833,'6.99','2005-08-01 23:25:55','2006-02-15 22:18:23'),(11411,422,2,11325,'6.99','2005-08-02 16:33:11','2006-02-15 22:18:23'),(11412,422,1,11658,'2.99','2005-08-17 05:19:17','2006-02-15 22:18:23'),(11413,422,1,11842,'4.99','2005-08-17 13:13:37','2006-02-15 22:18:23'),(11414,422,1,12907,'9.99','2005-08-19 04:16:13','2006-02-15 22:18:23'),(11415,422,2,13216,'1.99','2005-08-19 15:36:05','2006-02-15 22:18:23'),(11416,422,2,13625,'1.99','2005-08-20 06:52:03','2006-02-15 22:18:23'),(11417,422,2,13709,'0.99','2005-08-20 09:34:51','2006-02-15 22:18:23'),(11418,422,2,13722,'4.99','2005-08-20 10:03:45','2006-02-15 22:18:23'),(11419,422,1,14861,'4.99','2005-08-22 02:48:05','2006-02-15 22:18:23'),(11420,422,1,15272,'3.99','2005-08-22 18:49:40','2006-02-15 22:18:23'),(11421,422,1,15273,'2.99','2005-08-22 18:53:28','2006-02-15 22:18:23'),(11422,422,2,15316,'2.99','2005-08-22 20:07:03','2006-02-15 22:18:23'),(11423,422,2,15441,'2.99','2006-02-14 15:16:03','2006-02-15 22:18:24'),(11424,423,1,1504,'3.99','2005-06-15 22:08:06','2006-02-15 22:18:24'),(11425,423,2,1827,'0.99','2005-06-16 21:54:40','2006-02-15 22:18:24'),(11426,423,1,2600,'6.99','2005-06-19 06:07:25','2006-02-15 22:18:24'),(11427,423,2,2758,'6.99','2005-06-19 17:04:35','2006-02-15 22:18:24'),(11428,423,1,3072,'8.99','2005-06-20 14:21:31','2006-02-15 22:18:24'),(11429,423,2,4105,'0.99','2005-07-07 06:31:00','2006-02-15 22:18:24'),(11430,423,1,4250,'0.99','2005-07-07 14:08:11','2006-02-15 22:18:24'),(11431,423,1,4679,'2.99','2005-07-08 10:33:14','2006-02-15 22:18:24'),(11432,423,1,6506,'1.99','2005-07-12 03:28:22','2006-02-15 22:18:24'),(11433,423,1,7016,'5.99','2005-07-27 02:15:16','2006-02-15 22:18:24'),(11434,423,2,7141,'2.99','2005-07-27 06:55:27','2006-02-15 22:18:24'),(11435,423,1,7157,'4.99','2005-07-27 07:20:28','2006-02-15 22:18:24'),(11436,423,1,7290,'0.99','2005-07-27 12:28:45','2006-02-15 22:18:24'),(11437,423,2,7539,'9.99','2005-07-27 21:39:42','2006-02-15 22:18:24'),(11438,423,1,7849,'9.99','2005-07-28 09:30:02','2006-02-15 22:18:24'),(11439,423,2,8082,'3.99','2005-07-28 18:08:02','2006-02-15 22:18:24'),(11440,423,2,8595,'9.99','2005-07-29 12:47:43','2006-02-15 22:18:24'),(11441,423,2,9026,'2.99','2005-07-30 05:55:31','2006-02-15 22:18:24'),(11442,423,1,10488,'2.99','2005-08-01 10:27:27','2006-02-15 22:18:25'),(11443,423,1,11091,'2.99','2005-08-02 07:56:41','2006-02-15 22:18:25'),(11444,423,2,11514,'4.99','2005-08-16 23:53:10','2006-02-15 22:18:25'),(11445,423,2,12806,'4.99','2005-08-19 00:37:26','2006-02-15 22:18:25'),(11446,423,2,14191,'6.99','2005-08-21 03:35:58','2006-02-15 22:18:25'),(11447,423,2,14902,'4.99','2005-08-22 04:31:50','2006-02-15 22:18:25'),(11448,423,1,15380,'0.99','2005-08-22 22:28:15','2006-02-15 22:18:25'),(11449,423,1,15755,'4.99','2005-08-23 12:46:38','2006-02-15 22:18:25'),(11450,424,2,403,'0.99','2005-05-27 13:28:52','2006-02-15 22:18:25'),(11451,424,2,3044,'4.99','2005-06-20 12:38:49','2006-02-15 22:18:25'),(11452,424,1,3166,'6.99','2005-06-20 21:32:32','2006-02-15 22:18:25'),(11453,424,2,3404,'0.99','2005-06-21 15:57:52','2006-02-15 22:18:25'),(11454,424,2,3746,'0.99','2005-07-06 12:10:51','2006-02-15 22:18:25'),(11455,424,2,4512,'0.99','2005-07-08 02:38:56','2006-02-15 22:18:25'),(11456,424,2,4559,'0.99','2005-07-08 04:56:49','2006-02-15 22:18:25'),(11457,424,2,4696,'5.99','2005-07-08 11:12:27','2006-02-15 22:18:25'),(11458,424,1,5568,'0.99','2005-07-10 03:36:56','2006-02-15 22:18:25'),(11459,424,1,5611,'3.99','2005-07-10 05:13:43','2006-02-15 22:18:25'),(11460,424,1,6589,'2.99','2005-07-12 07:06:29','2006-02-15 22:18:25'),(11461,424,1,7594,'2.99','2005-07-27 23:30:41','2006-02-15 22:18:26'),(11462,424,2,8194,'2.99','2005-07-28 22:51:44','2006-02-15 22:18:26'),(11463,424,1,8918,'4.99','2005-07-30 01:56:22','2006-02-15 22:18:26'),(11464,424,2,8964,'1.99','2005-07-30 03:49:35','2006-02-15 22:18:26'),(11465,424,2,8999,'2.99','2005-07-30 04:55:46','2006-02-15 22:18:26'),(11466,424,1,9471,'4.99','2005-07-30 23:02:36','2006-02-15 22:18:26'),(11467,424,1,9516,'8.99','2005-07-31 00:40:58','2006-02-15 22:18:26'),(11468,424,2,9878,'4.99','2005-07-31 13:42:02','2006-02-15 22:18:26'),(11469,424,1,10017,'6.99','2005-07-31 18:13:22','2006-02-15 22:18:26'),(11470,424,2,10369,'4.99','2005-08-01 06:13:44','2006-02-15 22:18:26'),(11471,424,1,10866,'2.99','2005-08-02 00:22:49','2006-02-15 22:18:26'),(11472,424,2,11374,'2.99','2005-08-02 18:14:54','2006-02-15 22:18:26'),(11473,424,2,11562,'6.99','2005-08-17 01:23:39','2006-02-15 22:18:26'),(11474,424,2,11833,'2.99','2005-08-17 13:00:33','2006-02-15 22:18:26'),(11475,424,2,12729,'0.99','2005-08-18 21:52:59','2006-02-15 22:18:26'),(11476,424,2,13793,'3.99','2005-08-20 12:22:04','2006-02-15 22:18:26'),(11477,424,2,15113,'0.99','2005-08-22 12:23:59','2006-02-15 22:18:26'),(11478,424,2,15941,'9.99','2005-08-23 18:46:44','2006-02-15 22:18:26'),(11479,424,1,15094,'0.99','2006-02-14 15:16:03','2006-02-15 22:18:27'),(11480,425,2,1098,'5.99','2005-05-31 13:51:48','2006-02-15 22:18:27'),(11481,425,1,3276,'6.99','2005-06-21 05:35:52','2006-02-15 22:18:27'),(11482,425,1,3807,'4.99','2005-07-06 15:11:44','2006-02-15 22:18:27'),(11483,425,2,4361,'2.99','2005-07-07 19:33:23','2006-02-15 22:18:27'),(11484,425,2,4362,'5.99','2005-07-07 19:35:30','2006-02-15 22:18:27'),(11485,425,2,4483,'8.99','2005-07-08 01:03:12','2006-02-15 22:18:27'),(11486,425,1,4659,'2.99','2005-07-08 09:53:28','2006-02-15 22:18:27'),(11487,425,1,4884,'7.99','2005-07-08 19:49:17','2006-02-15 22:18:27'),(11488,425,1,4939,'7.99','2005-07-08 22:35:30','2006-02-15 22:18:27'),(11489,425,2,5363,'2.99','2005-07-09 18:18:49','2006-02-15 22:18:27'),(11490,425,1,5371,'4.99','2005-07-09 18:47:48','2006-02-15 22:18:27'),(11491,425,2,6318,'2.99','2005-07-11 18:48:22','2006-02-15 22:18:27'),(11492,425,1,6603,'2.99','2005-07-12 07:52:55','2006-02-15 22:18:27'),(11493,425,1,7249,'4.99','2005-07-27 10:39:53','2006-02-15 22:18:27'),(11494,425,1,8974,'0.99','2005-07-30 04:09:16','2006-02-15 22:18:27'),(11495,425,1,9170,'0.99','2005-07-30 11:35:24','2006-02-15 22:18:27'),(11496,425,2,9682,'2.99','2005-07-31 06:47:10','2006-02-15 22:18:27'),(11497,425,1,10121,'0.99','2005-07-31 21:24:53','2006-02-15 22:18:27'),(11498,425,2,10163,'0.99','2005-07-31 23:12:34','2006-02-15 22:18:28'),(11499,425,1,10545,'0.99','2005-08-01 12:37:46','2006-02-15 22:18:28'),(11500,425,2,13040,'0.99','2005-08-19 09:04:24','2006-02-15 22:18:28'),(11501,425,2,14089,'5.99','2005-08-20 23:59:02','2006-02-15 22:18:28'),(11502,425,2,14881,'4.99','2005-08-22 03:47:39','2006-02-15 22:18:28'),(11503,425,1,15064,'0.99','2005-08-22 10:41:58','2006-02-15 22:18:28'),(11504,425,2,15784,'6.99','2005-08-23 13:46:00','2006-02-15 22:18:28'),(11505,425,2,16036,'2.99','2005-08-23 22:12:44','2006-02-15 22:18:28'),(11506,426,2,604,'0.99','2005-05-28 14:37:07','2006-02-15 22:18:28'),(11507,426,1,1709,'6.99','2005-06-16 14:10:15','2006-02-15 22:18:28'),(11508,426,1,1842,'7.99','2005-06-16 23:45:59','2006-02-15 22:18:28'),(11509,426,1,2204,'2.99','2005-06-18 02:11:38','2006-02-15 22:18:28'),(11510,426,1,2804,'0.99','2005-06-19 19:24:54','2006-02-15 22:18:28'),(11511,426,1,3243,'0.99','2005-06-21 03:00:11','2006-02-15 22:18:28'),(11512,426,2,4114,'2.99','2005-07-07 06:51:12','2006-02-15 22:18:28'),(11513,426,2,4398,'4.99','2005-07-07 21:18:44','2006-02-15 22:18:28'),(11514,426,1,4900,'4.99','2005-07-08 20:38:06','2006-02-15 22:18:28'),(11515,426,1,5725,'3.99','2005-07-10 11:21:21','2006-02-15 22:18:28'),(11516,426,1,7495,'4.99','2005-07-27 20:01:20','2006-02-15 22:18:28'),(11517,426,1,7527,'10.99','2005-07-27 21:14:28','2006-02-15 22:18:29'),(11518,426,1,7711,'4.99','2005-07-28 04:26:42','2006-02-15 22:18:29'),(11519,426,1,7789,'5.99','2005-07-28 07:22:07','2006-02-15 22:18:29'),(11520,426,1,9185,'5.99','2005-07-30 12:10:40','2006-02-15 22:18:29'),(11521,426,2,9247,'4.99','2005-07-30 14:13:56','2006-02-15 22:18:29'),(11522,426,2,10172,'10.99','2005-07-31 23:29:51','2006-02-15 22:18:29'),(11523,426,1,10505,'1.99','2005-08-01 11:13:59','2006-02-15 22:18:29'),(11524,426,2,11237,'0.99','2005-08-02 13:24:01','2006-02-15 22:18:29'),(11525,426,2,11876,'0.99','2005-08-17 14:18:21','2006-02-15 22:18:29'),(11526,426,2,11938,'6.99','2005-08-17 16:54:54','2006-02-15 22:18:29'),(11527,426,2,12548,'5.99','2005-08-18 14:35:26','2006-02-15 22:18:29'),(11528,426,2,12707,'4.99','2005-08-18 20:52:02','2006-02-15 22:18:29'),(11529,426,1,12822,'4.99','2005-08-19 01:15:24','2006-02-15 22:18:29'),(11530,426,2,13834,'2.99','2005-08-20 14:03:08','2006-02-15 22:18:29'),(11531,426,2,14151,'6.99','2005-08-21 02:23:25','2006-02-15 22:18:29'),(11532,426,2,14826,'2.99','2005-08-22 01:32:14','2006-02-15 22:18:29'),(11533,427,2,82,'6.99','2005-05-25 12:17:46','2006-02-15 22:18:29'),(11534,427,1,1342,'5.99','2005-06-15 12:26:21','2006-02-15 22:18:29'),(11535,427,2,1628,'3.99','2005-06-16 07:52:55','2006-02-15 22:18:30'),(11536,427,1,1648,'5.99','2005-06-16 09:17:07','2006-02-15 22:18:30'),(11537,427,1,1857,'1.99','2005-06-17 01:12:58','2006-02-15 22:18:30'),(11538,427,2,2466,'0.99','2005-06-18 20:18:42','2006-02-15 22:18:30'),(11539,427,1,4793,'3.99','2005-07-08 16:30:01','2006-02-15 22:18:30'),(11540,427,2,5476,'2.99','2005-07-09 23:37:09','2006-02-15 22:18:30'),(11541,427,2,5586,'5.99','2005-07-10 04:17:06','2006-02-15 22:18:30'),(11542,427,1,6423,'6.99','2005-07-11 23:47:31','2006-02-15 22:18:30'),(11543,427,1,6509,'2.99','2005-07-12 03:35:01','2006-02-15 22:18:30'),(11544,427,2,6938,'7.99','2005-07-26 23:16:04','2006-02-15 22:18:30'),(11545,427,2,8182,'3.99','2005-07-28 22:19:12','2006-02-15 22:18:30'),(11546,427,1,8531,'5.99','2005-07-29 10:26:15','2006-02-15 22:18:30'),(11547,427,2,8658,'5.99','2005-07-29 15:16:37','2006-02-15 22:18:30'),(11548,427,2,9978,'2.99','2005-07-31 16:59:51','2006-02-15 22:18:30'),(11549,427,1,10417,'4.99','2005-08-01 08:10:36','2006-02-15 22:18:30'),(11550,427,1,10464,'5.99','2005-08-01 09:43:14','2006-02-15 22:18:30'),(11551,427,2,10560,'4.99','2005-08-01 13:04:57','2006-02-15 22:18:30'),(11552,427,1,11024,'5.99','2005-08-02 05:38:31','2006-02-15 22:18:30'),(11553,427,1,13720,'1.99','2005-08-20 10:01:39','2006-02-15 22:18:30'),(11554,427,2,14201,'6.99','2005-08-21 03:51:34','2006-02-15 22:18:31'),(11555,427,1,14287,'3.99','2005-08-21 06:53:59','2006-02-15 22:18:31'),(11556,427,1,15330,'3.99','2005-08-22 20:35:30','2006-02-15 22:18:31'),(11557,428,2,634,'4.99','2005-05-28 17:40:35','2006-02-15 22:18:31'),(11558,428,1,1227,'3.99','2005-06-15 03:50:03','2006-02-15 22:18:31'),(11559,428,2,1471,'2.99','2005-06-15 20:53:26','2006-02-15 22:18:31'),(11560,428,1,1601,'3.99','2005-06-16 06:11:13','2006-02-15 22:18:31'),(11561,428,1,2677,'2.99','2005-06-19 12:01:59','2006-02-15 22:18:31'),(11562,428,2,3377,'0.99','2005-06-21 13:51:12','2006-02-15 22:18:31'),(11563,428,1,3702,'2.99','2005-07-06 10:13:56','2006-02-15 22:18:31'),(11564,428,1,3925,'5.99','2005-07-06 20:41:44','2006-02-15 22:18:31'),(11565,428,1,4151,'0.99','2005-07-07 08:49:02','2006-02-15 22:18:31'),(11566,428,1,5373,'4.99','2005-07-09 18:48:57','2006-02-15 22:18:31'),(11567,428,1,6735,'5.99','2005-07-12 14:08:20','2006-02-15 22:18:31'),(11568,428,1,7823,'6.99','2005-07-28 08:32:53','2006-02-15 22:18:31'),(11569,428,1,8155,'2.99','2005-07-28 20:57:06','2006-02-15 22:18:31'),(11570,428,2,8387,'4.99','2005-07-29 05:47:27','2006-02-15 22:18:31'),(11571,428,2,8528,'4.99','2005-07-29 10:24:22','2006-02-15 22:18:31'),(11572,428,1,9904,'5.99','2005-07-31 14:34:17','2006-02-15 22:18:31'),(11573,428,2,9982,'2.99','2005-07-31 17:09:02','2006-02-15 22:18:32'),(11574,428,2,10577,'4.99','2005-08-01 13:46:38','2006-02-15 22:18:32'),(11575,428,2,10888,'2.99','2005-08-02 00:52:45','2006-02-15 22:18:32'),(11576,428,2,11536,'0.99','2005-08-17 00:40:03','2006-02-15 22:18:32'),(11577,429,2,150,'5.99','2005-05-26 00:28:39','2006-02-15 22:18:32'),(11578,429,2,290,'2.99','2005-05-26 20:08:33','2006-02-15 22:18:32'),(11579,429,2,601,'7.99','2005-05-28 14:08:22','2006-02-15 22:18:32'),(11580,429,2,799,'4.99','2005-05-29 17:24:48','2006-02-15 22:18:32'),(11581,429,2,844,'4.99','2005-05-30 00:58:20','2006-02-15 22:18:32'),(11582,429,2,1781,'5.99','2005-06-16 19:20:24','2006-02-15 22:18:32'),(11583,429,2,1798,'2.99','2005-06-16 20:16:15','2006-02-15 22:18:32'),(11584,429,2,1916,'7.99','2005-06-17 05:29:59','2006-02-15 22:18:32'),(11585,429,1,3409,'2.99','2005-06-21 16:17:38','2006-02-15 22:18:32'),(11586,429,2,5868,'4.99','2005-07-10 18:39:16','2006-02-15 22:18:32'),(11587,429,2,6196,'7.99','2005-07-11 12:05:46','2006-02-15 22:18:32'),(11588,429,2,6886,'6.99','2005-07-12 20:58:04','2006-02-15 22:18:32'),(11589,429,1,6977,'6.99','2005-07-27 00:40:50','2006-02-15 22:18:32'),(11590,429,2,7352,'4.99','2005-07-27 14:38:29','2006-02-15 22:18:32'),(11591,429,2,8136,'1.99','2005-07-28 20:05:48','2006-02-15 22:18:33'),(11592,429,2,8143,'2.99','2005-07-28 20:23:11','2006-02-15 22:18:33'),(11593,429,2,8175,'7.99','2005-07-28 21:38:16','2006-02-15 22:18:33'),(11594,429,1,9849,'0.99','2005-07-31 12:44:34','2006-02-15 22:18:33'),(11595,429,1,12259,'2.99','2005-08-18 04:14:35','2006-02-15 22:18:33'),(11596,429,1,12953,'4.99','2005-08-19 06:04:07','2006-02-15 22:18:33'),(11597,429,2,14495,'4.99','2005-08-21 14:04:39','2006-02-15 22:18:33'),(11598,430,2,30,'2.99','2005-05-25 04:01:32','2006-02-15 22:18:33'),(11599,430,1,364,'4.99','2005-05-27 07:20:12','2006-02-15 22:18:33'),(11600,430,2,1207,'0.99','2005-06-15 02:27:08','2006-02-15 22:18:33'),(11601,430,1,1274,'2.99','2005-06-15 07:52:52','2006-02-15 22:18:33'),(11602,430,1,1538,'2.99','2005-06-16 01:05:50','2006-02-15 22:18:33'),(11603,430,1,1759,'6.99','2005-06-16 17:46:37','2006-02-15 22:18:33'),(11604,430,2,2892,'0.99','2005-06-20 02:06:39','2006-02-15 22:18:33'),(11605,430,2,3153,'0.99','2005-06-20 20:44:15','2006-02-15 22:18:33'),(11606,430,1,5002,'4.99','2005-07-09 01:17:08','2006-02-15 22:18:33'),(11607,430,1,5217,'5.99','2005-07-09 11:56:50','2006-02-15 22:18:33'),(11608,430,2,5879,'6.99','2005-07-10 19:12:47','2006-02-15 22:18:33'),(11609,430,1,5958,'6.99','2005-07-10 23:31:51','2006-02-15 22:18:33'),(11610,430,2,6043,'0.99','2005-07-11 03:18:10','2006-02-15 22:18:34'),(11611,430,1,8560,'4.99','2005-07-29 11:27:27','2006-02-15 22:18:34'),(11612,430,2,9450,'2.99','2005-07-30 22:04:04','2006-02-15 22:18:34'),(11613,430,1,12723,'0.99','2005-08-18 21:34:16','2006-02-15 22:18:34'),(11614,430,1,12965,'4.99','2005-08-19 06:33:00','2006-02-15 22:18:34'),(11615,430,1,13007,'0.99','2005-08-19 07:47:43','2006-02-15 22:18:34'),(11616,430,2,13452,'0.99','2005-08-20 00:20:07','2006-02-15 22:18:34'),(11617,430,2,13454,'2.99','2005-08-20 00:30:52','2006-02-15 22:18:34'),(11618,430,1,14058,'5.99','2005-08-20 22:24:35','2006-02-15 22:18:34'),(11619,430,1,15031,'4.99','2005-08-22 09:11:48','2006-02-15 22:18:34'),(11620,431,2,1126,'2.99','2005-05-31 17:27:45','2006-02-15 22:18:34'),(11621,431,2,1561,'2.99','2005-06-16 02:41:30','2006-02-15 22:18:34'),(11622,431,1,2096,'4.99','2005-06-17 18:33:04','2006-02-15 22:18:34'),(11623,431,1,2269,'3.99','2005-06-18 06:20:54','2006-02-15 22:18:34'),(11624,431,2,2281,'4.99','2005-06-18 06:47:29','2006-02-15 22:18:34'),(11625,431,2,2761,'2.99','2005-06-19 17:22:17','2006-02-15 22:18:34'),(11626,431,2,3304,'6.99','2005-06-21 07:43:40','2006-02-15 22:18:34'),(11627,431,2,3369,'8.99','2005-06-21 13:20:31','2006-02-15 22:18:34'),(11628,431,1,4144,'3.99','2005-07-07 08:25:44','2006-02-15 22:18:35'),(11629,431,1,4801,'2.99','2005-07-08 16:51:36','2006-02-15 22:18:35'),(11630,431,1,4863,'0.99','2005-07-08 19:03:15','2006-02-15 22:18:35'),(11631,431,2,7978,'4.99','2005-07-28 14:16:14','2006-02-15 22:18:35'),(11632,431,2,8810,'4.99','2005-07-29 21:45:19','2006-02-15 22:18:35'),(11633,431,2,10508,'0.99','2005-08-01 11:23:27','2006-02-15 22:18:35'),(11634,431,1,10527,'4.99','2005-08-01 11:55:54','2006-02-15 22:18:35'),(11635,431,2,10959,'6.99','2005-08-02 03:39:39','2006-02-15 22:18:35'),(11636,431,2,11538,'2.99','2005-08-17 00:44:04','2006-02-15 22:18:35'),(11637,431,1,12273,'6.99','2005-08-18 04:40:50','2006-02-15 22:18:35'),(11638,431,2,13153,'1.99','2005-08-19 13:09:47','2006-02-15 22:18:35'),(11639,431,1,13784,'4.99','2005-08-20 12:11:28','2006-02-15 22:18:35'),(11640,431,1,15809,'2.99','2005-08-23 14:42:07','2006-02-15 22:18:35'),(11641,431,1,15960,'2.99','2005-08-23 19:35:42','2006-02-15 22:18:35'),(11642,431,2,13587,'2.99','2006-02-14 15:16:03','2006-02-15 22:18:35'),(11643,432,2,326,'7.99','2005-05-27 01:10:11','2006-02-15 22:18:35'),(11644,432,1,550,'5.99','2005-05-28 07:39:16','2006-02-15 22:18:35'),(11645,432,1,897,'8.99','2005-05-30 09:10:01','2006-02-15 22:18:35'),(11646,432,2,1180,'5.99','2005-06-15 00:39:01','2006-02-15 22:18:35'),(11647,432,2,1597,'2.99','2005-06-16 05:47:03','2006-02-15 22:18:36'),(11648,432,2,3194,'4.99','2005-06-20 23:59:57','2006-02-15 22:18:36'),(11649,432,1,4965,'5.99','2005-07-08 23:46:57','2006-02-15 22:18:36'),(11650,432,1,4973,'4.99','2005-07-08 23:58:18','2006-02-15 22:18:36'),(11651,432,1,5204,'2.99','2005-07-09 10:54:14','2006-02-15 22:18:36'),(11652,432,1,5322,'6.99','2005-07-09 16:28:13','2006-02-15 22:18:36'),(11653,432,1,5944,'4.99','2005-07-10 22:51:44','2006-02-15 22:18:36'),(11654,432,1,5990,'4.99','2005-07-11 01:03:14','2006-02-15 22:18:36'),(11655,432,2,7326,'4.99','2005-07-27 13:50:40','2006-02-15 22:18:36'),(11656,432,2,7681,'0.99','2005-07-28 03:07:09','2006-02-15 22:18:36'),(11657,432,2,8079,'4.99','2005-07-28 17:58:36','2006-02-15 22:18:36'),(11658,432,2,8094,'6.99','2005-07-28 18:30:28','2006-02-15 22:18:36'),(11659,432,2,9916,'4.99','2005-07-31 14:54:52','2006-02-15 22:18:36'),(11660,432,2,9984,'2.99','2005-07-31 17:12:23','2006-02-15 22:18:36'),(11661,432,2,11870,'0.99','2005-08-17 14:11:28','2006-02-15 22:18:36'),(11662,432,1,12767,'6.99','2005-08-18 23:25:49','2006-02-15 22:18:36'),(11663,432,1,14027,'2.99','2005-08-20 21:21:34','2006-02-15 22:18:36'),(11664,432,1,15523,'4.99','2005-08-23 03:32:36','2006-02-15 22:18:36'),(11665,432,1,15713,'6.99','2005-08-23 10:56:15','2006-02-15 22:18:36'),(11666,433,2,146,'8.99','2005-05-26 00:07:11','2006-02-15 22:18:37'),(11667,433,1,691,'10.99','2005-05-29 01:01:26','2006-02-15 22:18:37'),(11668,433,2,4087,'6.99','2005-07-07 05:30:56','2006-02-15 22:18:37'),(11669,433,2,4158,'0.99','2005-07-07 09:05:42','2006-02-15 22:18:37'),(11670,433,2,4988,'7.99','2005-07-09 00:46:14','2006-02-15 22:18:37'),(11671,433,2,5457,'0.99','2005-07-09 22:33:14','2006-02-15 22:18:37'),(11672,433,1,5969,'8.99','2005-07-11 00:03:22','2006-02-15 22:18:37'),(11673,433,1,6765,'5.99','2005-07-12 15:30:47','2006-02-15 22:18:37'),(11674,433,1,6848,'0.99','2005-07-12 19:24:07','2006-02-15 22:18:37'),(11675,433,1,6850,'4.99','2005-07-12 19:30:42','2006-02-15 22:18:37'),(11676,433,1,7821,'4.99','2005-07-28 08:31:23','2006-02-15 22:18:37'),(11677,433,2,7907,'4.99','2005-07-28 11:32:00','2006-02-15 22:18:37'),(11678,433,1,8414,'5.99','2005-07-29 06:48:35','2006-02-15 22:18:37'),(11679,433,1,8713,'2.99','2005-07-29 17:31:19','2006-02-15 22:18:37'),(11680,433,2,9161,'4.99','2005-07-30 11:19:18','2006-02-15 22:18:37'),(11681,433,1,9294,'3.99','2005-07-30 16:14:37','2006-02-15 22:18:37'),(11682,433,1,10663,'4.99','2005-08-01 16:51:08','2006-02-15 22:18:37'),(11683,433,1,11664,'2.99','2005-08-17 05:35:52','2006-02-15 22:18:37'),(11684,433,2,12669,'6.99','2005-08-18 19:17:47','2006-02-15 22:18:38'),(11685,433,2,13273,'4.99','2005-08-19 17:49:13','2006-02-15 22:18:38'),(11686,433,1,13801,'4.99','2005-08-20 12:40:53','2006-02-15 22:18:38'),(11687,433,2,14523,'4.99','2005-08-21 15:03:45','2006-02-15 22:18:38'),(11688,433,1,14559,'6.99','2005-08-21 16:11:35','2006-02-15 22:18:38'),(11689,433,2,15476,'4.99','2005-08-23 01:45:07','2006-02-15 22:18:38'),(11690,433,1,15502,'5.99','2005-08-23 02:40:04','2006-02-15 22:18:38'),(11691,434,2,508,'5.99','2005-05-28 02:40:50','2006-02-15 22:18:38'),(11692,434,1,1225,'0.99','2005-06-15 03:45:35','2006-02-15 22:18:38'),(11693,434,2,1584,'5.99','2005-06-16 04:50:50','2006-02-15 22:18:38'),(11694,434,2,2415,'7.99','2005-06-18 17:02:42','2006-02-15 22:18:38'),(11695,434,1,2430,'3.99','2005-06-18 17:51:46','2006-02-15 22:18:38'),(11696,434,1,2494,'3.99','2005-06-18 22:15:09','2006-02-15 22:18:38'),(11697,434,1,3014,'2.99','2005-06-20 10:45:20','2006-02-15 22:18:38'),(11698,434,2,3037,'2.99','2005-06-20 12:28:03','2006-02-15 22:18:38'),(11699,434,1,4414,'2.99','2005-07-07 22:00:21','2006-02-15 22:18:38'),(11700,434,2,4654,'6.99','2005-07-08 09:48:03','2006-02-15 22:18:38'),(11701,434,2,4960,'10.99','2005-07-08 23:27:16','2006-02-15 22:18:38'),(11702,434,2,5464,'2.99','2005-07-09 22:58:14','2006-02-15 22:18:39'),(11703,434,2,6972,'0.99','2005-07-27 00:31:25','2006-02-15 22:18:39'),(11704,434,1,7260,'6.99','2005-07-27 11:09:28','2006-02-15 22:18:39'),(11705,434,2,7479,'2.99','2005-07-27 19:18:17','2006-02-15 22:18:39'),(11706,434,1,8205,'0.99','2005-07-28 23:18:48','2006-02-15 22:18:39'),(11707,434,1,9350,'4.99','2005-07-30 18:24:30','2006-02-15 22:18:39'),(11708,434,1,11242,'3.99','2005-08-02 13:32:00','2006-02-15 22:18:39'),(11709,434,1,11867,'2.99','2005-08-17 14:04:28','2006-02-15 22:18:39'),(11710,434,2,12030,'2.99','2005-08-17 20:10:48','2006-02-15 22:18:39'),(11711,434,2,12146,'2.99','2005-08-18 00:10:04','2006-02-15 22:18:39'),(11712,434,2,12624,'7.99','2005-08-18 17:35:00','2006-02-15 22:18:39'),(11713,434,2,13359,'9.99','2005-08-19 21:04:49','2006-02-15 22:18:39'),(11714,434,1,13383,'7.99','2005-08-19 21:38:44','2006-02-15 22:18:39'),(11715,434,2,14553,'4.99','2005-08-21 15:59:40','2006-02-15 22:18:39'),(11716,434,2,15016,'3.99','2005-08-22 08:47:35','2006-02-15 22:18:39'),(11717,434,2,15385,'4.99','2005-08-22 22:37:34','2006-02-15 22:18:39'),(11718,435,1,757,'7.99','2005-05-29 10:29:47','2006-02-15 22:18:39'),(11719,435,1,806,'4.99','2005-05-29 18:31:30','2006-02-15 22:18:39'),(11720,435,2,1443,'0.99','2005-06-15 18:57:51','2006-02-15 22:18:39'),(11721,435,1,2984,'0.99','2005-06-20 08:43:44','2006-02-15 22:18:40'),(11722,435,1,3690,'0.99','2005-07-06 09:46:03','2006-02-15 22:18:40'),(11723,435,1,3918,'8.99','2005-07-06 20:26:15','2006-02-15 22:18:40'),(11724,435,2,5220,'4.99','2005-07-09 11:59:04','2006-02-15 22:18:40'),(11725,435,2,6051,'4.99','2005-07-11 03:46:41','2006-02-15 22:18:40'),(11726,435,1,6935,'2.99','2005-07-26 23:13:10','2006-02-15 22:18:40'),(11727,435,1,8386,'5.99','2005-07-29 05:45:30','2006-02-15 22:18:40'),(11728,435,2,8891,'4.99','2005-07-30 00:46:55','2006-02-15 22:18:40'),(11729,435,2,9269,'0.99','2005-07-30 15:02:33','2006-02-15 22:18:40'),(11730,435,1,9655,'3.99','2005-07-31 05:57:54','2006-02-15 22:18:40'),(11731,435,2,9829,'4.99','2005-07-31 11:58:38','2006-02-15 22:18:40'),(11732,435,1,10998,'6.99','2005-08-02 04:50:55','2006-02-15 22:18:40'),(11733,435,1,11041,'2.99','2005-08-02 06:03:53','2006-02-15 22:18:40'),(11734,435,1,11786,'3.99','2005-08-17 10:57:40','2006-02-15 22:18:40'),(11735,435,1,11796,'0.99','2005-08-17 11:16:47','2006-02-15 22:18:40'),(11736,435,2,12046,'0.99','2005-08-17 20:47:46','2006-02-15 22:18:40'),(11737,435,1,12741,'4.99','2005-08-18 22:17:05','2006-02-15 22:18:40'),(11738,435,2,13208,'0.99','2005-08-19 15:18:55','2006-02-15 22:18:40'),(11739,435,1,14696,'4.99','2005-08-21 20:48:05','2006-02-15 22:18:41'),(11740,435,1,14765,'1.99','2005-08-21 23:40:28','2006-02-15 22:18:41'),(11741,435,1,14850,'0.99','2005-08-22 02:16:55','2006-02-15 22:18:41'),(11742,435,1,15136,'2.99','2005-08-22 13:19:25','2006-02-15 22:18:41'),(11743,436,1,45,'7.99','2005-05-25 05:59:39','2006-02-15 22:18:41'),(11744,436,1,256,'3.99','2005-05-26 15:20:58','2006-02-15 22:18:41'),(11745,436,1,848,'5.99','2005-05-30 01:19:53','2006-02-15 22:18:41'),(11746,436,1,2291,'9.99','2005-06-18 07:36:46','2006-02-15 22:18:41'),(11747,436,2,3851,'1.99','2005-07-06 16:54:12','2006-02-15 22:18:41'),(11748,436,2,3944,'2.99','2005-07-06 21:34:11','2006-02-15 22:18:41'),(11749,436,2,4643,'0.99','2005-07-08 09:13:56','2006-02-15 22:18:41'),(11750,436,2,4751,'2.99','2005-07-08 14:07:52','2006-02-15 22:18:41'),(11751,436,1,4782,'4.99','2005-07-08 16:08:51','2006-02-15 22:18:41'),(11752,436,1,5959,'0.99','2005-07-10 23:35:36','2006-02-15 22:18:41'),(11753,436,1,7593,'4.99','2005-07-27 23:28:47','2006-02-15 22:18:41'),(11754,436,2,8027,'5.99','2005-07-28 16:09:57','2006-02-15 22:18:41'),(11755,436,2,8097,'9.99','2005-07-28 18:32:49','2006-02-15 22:18:41'),(11756,436,1,9345,'9.99','2005-07-30 18:13:51','2006-02-15 22:18:41'),(11757,436,1,9539,'0.99','2005-07-31 01:36:19','2006-02-15 22:18:42'),(11758,436,1,9638,'5.99','2005-07-31 05:30:27','2006-02-15 22:18:42'),(11759,436,2,10216,'3.99','2005-08-01 01:06:27','2006-02-15 22:18:42'),(11760,436,2,11160,'0.99','2005-08-02 10:05:30','2006-02-15 22:18:42'),(11761,436,1,11580,'2.99','2005-08-17 01:59:07','2006-02-15 22:18:42'),(11762,436,2,11615,'4.99','2005-08-17 03:54:35','2006-02-15 22:18:42'),(11763,436,2,11896,'5.99','2005-08-17 15:19:54','2006-02-15 22:18:42'),(11764,436,2,12297,'0.99','2005-08-18 05:19:57','2006-02-15 22:18:42'),(11765,436,2,12429,'6.99','2005-08-18 10:26:46','2006-02-15 22:18:42'),(11766,436,2,13099,'9.99','2005-08-19 10:55:19','2006-02-15 22:18:42'),(11767,436,2,13382,'7.99','2005-08-19 21:38:41','2006-02-15 22:18:42'),(11768,436,1,13533,'3.99','2005-08-20 03:30:00','2006-02-15 22:18:42'),(11769,436,1,13760,'5.99','2005-08-20 11:26:33','2006-02-15 22:18:42'),(11770,436,1,13814,'0.99','2005-08-20 13:07:23','2006-02-15 22:18:42'),(11771,436,2,13826,'2.99','2005-08-20 13:46:38','2006-02-15 22:18:42'),(11772,436,2,15766,'4.99','2005-08-23 13:10:16','2006-02-15 22:18:42'),(11773,437,1,192,'2.99','2005-05-26 06:20:37','2006-02-15 22:18:42'),(11774,437,2,656,'4.99','2005-05-28 20:18:24','2006-02-15 22:18:42'),(11775,437,1,666,'5.99','2005-05-28 21:48:51','2006-02-15 22:18:42'),(11776,437,2,2239,'5.99','2005-06-18 04:23:54','2006-02-15 22:18:43'),(11777,437,1,2792,'2.99','2005-06-19 18:52:25','2006-02-15 22:18:43'),(11778,437,2,3265,'2.99','2005-06-21 04:23:13','2006-02-15 22:18:43'),(11779,437,1,3747,'4.99','2005-07-06 12:11:14','2006-02-15 22:18:43'),(11780,437,2,4765,'4.99','2005-07-08 15:08:45','2006-02-15 22:18:43'),(11781,437,2,5085,'4.99','2005-07-09 05:36:49','2006-02-15 22:18:43'),(11782,437,1,5167,'1.99','2005-07-09 09:18:43','2006-02-15 22:18:43'),(11783,437,2,5744,'2.99','2005-07-10 12:08:33','2006-02-15 22:18:43'),(11784,437,2,5864,'6.99','2005-07-10 18:29:57','2006-02-15 22:18:43'),(11785,437,2,8215,'2.99','2005-07-28 23:43:56','2006-02-15 22:18:43'),(11786,437,2,9172,'2.99','2005-07-30 11:36:38','2006-02-15 22:18:43'),(11787,437,2,9333,'2.99','2005-07-30 17:53:45','2006-02-15 22:18:43'),(11788,437,2,10009,'8.99','2005-07-31 18:00:28','2006-02-15 22:18:43'),(11789,437,2,10249,'0.99','2005-08-01 02:35:39','2006-02-15 22:18:43'),(11790,437,2,11417,'3.99','2005-08-02 19:44:46','2006-02-15 22:18:43'),(11791,437,1,12205,'8.99','2005-08-18 02:21:08','2006-02-15 22:18:43'),(11792,437,2,13838,'7.99','2005-08-20 14:22:46','2006-02-15 22:18:43'),(11793,437,1,13839,'2.99','2005-08-20 14:23:16','2006-02-15 22:18:43'),(11794,437,1,13905,'1.99','2005-08-20 16:12:48','2006-02-15 22:18:44'),(11795,437,1,14993,'1.99','2005-08-22 07:52:18','2006-02-15 22:18:44'),(11796,438,2,23,'4.99','2005-05-25 02:40:21','2006-02-15 22:18:44'),(11797,438,2,1036,'0.99','2005-05-31 05:21:10','2006-02-15 22:18:44'),(11798,438,1,1138,'6.99','2005-05-31 19:30:27','2006-02-15 22:18:44'),(11799,438,1,1431,'4.99','2005-06-15 18:26:29','2006-02-15 22:18:44'),(11800,438,2,1779,'0.99','2005-06-16 18:55:11','2006-02-15 22:18:44'),(11801,438,2,2206,'0.99','2005-06-18 02:14:45','2006-02-15 22:18:44'),(11802,438,1,2591,'4.99','2005-06-19 05:32:22','2006-02-15 22:18:44'),(11803,438,1,3315,'4.99','2005-06-21 08:17:04','2006-02-15 22:18:44'),(11804,438,2,3368,'0.99','2005-06-21 13:18:38','2006-02-15 22:18:44'),(11805,438,1,4355,'4.99','2005-07-07 19:21:19','2006-02-15 22:18:44'),(11806,438,2,4446,'2.99','2005-07-07 23:12:16','2006-02-15 22:18:44'),(11807,438,2,5316,'4.99','2005-07-09 16:09:42','2006-02-15 22:18:44'),(11808,438,2,5426,'4.99','2005-07-09 21:04:47','2006-02-15 22:18:44'),(11809,438,1,5870,'2.99','2005-07-10 18:40:25','2006-02-15 22:18:44'),(11810,438,2,6138,'4.99','2005-07-11 08:36:04','2006-02-15 22:18:44'),(11811,438,1,6563,'3.99','2005-07-12 05:34:09','2006-02-15 22:18:44'),(11812,438,2,6615,'4.99','2005-07-12 08:36:22','2006-02-15 22:18:45'),(11813,438,2,7357,'1.99','2005-07-27 14:48:31','2006-02-15 22:18:45'),(11814,438,2,7374,'8.99','2005-07-27 15:20:57','2006-02-15 22:18:45'),(11815,438,1,7598,'0.99','2005-07-27 23:36:01','2006-02-15 22:18:45'),(11816,438,2,8547,'2.99','2005-07-29 11:10:15','2006-02-15 22:18:45'),(11817,438,1,9082,'3.99','2005-07-30 08:11:22','2006-02-15 22:18:45'),(11818,438,2,9782,'0.99','2005-07-31 10:14:26','2006-02-15 22:18:45'),(11819,438,1,10512,'6.99','2005-08-01 11:36:19','2006-02-15 22:18:45'),(11820,438,1,10607,'4.99','2005-08-01 14:44:43','2006-02-15 22:18:45'),(11821,438,2,11644,'4.99','2005-08-17 04:49:46','2006-02-15 22:18:45'),(11822,438,2,11933,'4.99','2005-08-17 16:38:20','2006-02-15 22:18:45'),(11823,438,2,12654,'0.99','2005-08-18 18:56:40','2006-02-15 22:18:45'),(11824,438,2,13319,'7.99','2005-08-19 19:35:13','2006-02-15 22:18:45'),(11825,438,1,13414,'4.99','2005-08-19 22:47:34','2006-02-15 22:18:45'),(11826,438,2,14582,'5.99','2005-08-21 17:08:33','2006-02-15 22:18:45'),(11827,438,2,15893,'5.99','2005-08-23 17:02:00','2006-02-15 22:18:45'),(11828,438,2,12524,'0.99','2006-02-14 15:16:03','2006-02-15 22:18:45'),(11829,439,1,126,'2.99','2005-05-25 21:07:59','2006-02-15 22:18:45'),(11830,439,2,367,'0.99','2005-05-27 07:37:02','2006-02-15 22:18:46'),(11831,439,1,786,'9.99','2005-05-29 15:17:28','2006-02-15 22:18:46'),(11832,439,1,1264,'4.99','2005-06-15 06:59:39','2006-02-15 22:18:46'),(11833,439,2,1557,'0.99','2005-06-16 02:28:35','2006-02-15 22:18:46'),(11834,439,2,2097,'4.99','2005-06-17 18:40:04','2006-02-15 22:18:46'),(11835,439,1,2621,'2.99','2005-06-19 08:07:31','2006-02-15 22:18:46'),(11836,439,1,2992,'2.99','2005-06-20 09:11:51','2006-02-15 22:18:46'),(11837,439,1,3294,'6.99','2005-06-21 07:03:23','2006-02-15 22:18:46'),(11838,439,2,3774,'5.99','2005-07-06 13:25:07','2006-02-15 22:18:46'),(11839,439,1,4528,'2.99','2005-07-08 03:24:54','2006-02-15 22:18:46'),(11840,439,1,4813,'4.99','2005-07-08 17:09:56','2006-02-15 22:18:46'),(11841,439,2,5801,'5.99','2005-07-10 14:59:05','2006-02-15 22:18:46'),(11842,439,1,5893,'2.99','2005-07-10 20:05:30','2006-02-15 22:18:46'),(11843,439,1,6577,'2.99','2005-07-12 06:15:05','2006-02-15 22:18:46'),(11844,439,2,6672,'2.99','2005-07-12 11:49:16','2006-02-15 22:18:46'),(11845,439,1,8343,'2.99','2005-07-29 04:45:16','2006-02-15 22:18:46'),(11846,439,1,8624,'2.99','2005-07-29 13:55:36','2006-02-15 22:18:46'),(11847,439,2,8703,'2.99','2005-07-29 17:12:44','2006-02-15 22:18:46'),(11848,439,1,9275,'0.99','2005-07-30 15:09:15','2006-02-15 22:18:46'),(11849,439,1,9322,'6.99','2005-07-30 17:21:39','2006-02-15 22:18:47'),(11850,439,2,10744,'1.99','2005-08-01 19:56:49','2006-02-15 22:18:47'),(11851,439,1,10905,'2.99','2005-08-02 01:45:59','2006-02-15 22:18:47'),(11852,439,2,11042,'6.99','2005-08-02 06:04:33','2006-02-15 22:18:47'),(11853,439,2,11544,'5.99','2005-08-17 00:55:07','2006-02-15 22:18:47'),(11854,439,1,11989,'2.99','2005-08-17 18:23:58','2006-02-15 22:18:47'),(11855,439,1,12621,'2.99','2005-08-18 17:31:36','2006-02-15 22:18:47'),(11856,439,2,12755,'5.99','2005-08-18 22:38:47','2006-02-15 22:18:47'),(11857,439,2,12826,'3.99','2005-08-19 01:25:11','2006-02-15 22:18:47'),(11858,439,2,13358,'4.99','2005-08-19 21:04:20','2006-02-15 22:18:47'),(11859,439,2,14730,'5.99','2005-08-21 22:21:11','2006-02-15 22:18:47'),(11860,439,2,15044,'9.99','2005-08-22 09:51:54','2006-02-15 22:18:47'),(11861,439,2,15162,'4.99','2005-08-22 14:41:05','2006-02-15 22:18:47'),(11862,439,2,15653,'4.99','2005-08-23 08:34:42','2006-02-15 22:18:47'),(11863,439,1,15818,'1.99','2005-08-23 14:59:58','2006-02-15 22:18:47'),(11864,439,1,16018,'0.99','2005-08-23 21:27:35','2006-02-15 22:18:47'),(11865,440,2,957,'4.99','2005-05-30 17:53:29','2006-02-15 22:18:47'),(11866,440,1,4301,'2.99','2005-07-07 16:37:23','2006-02-15 22:18:47'),(11867,440,1,4946,'7.99','2005-07-08 22:46:23','2006-02-15 22:18:48'),(11868,440,2,5423,'2.99','2005-07-09 20:56:48','2006-02-15 22:18:48'),(11869,440,2,5594,'0.99','2005-07-10 04:33:36','2006-02-15 22:18:48'),(11870,440,2,5731,'2.99','2005-07-10 11:31:52','2006-02-15 22:18:48'),(11871,440,2,5782,'0.99','2005-07-10 13:52:56','2006-02-15 22:18:48'),(11872,440,2,7585,'4.99','2005-07-27 23:18:22','2006-02-15 22:18:48'),(11873,440,1,7614,'0.99','2005-07-28 00:14:38','2006-02-15 22:18:48'),(11874,440,1,7806,'9.99','2005-07-28 07:58:17','2006-02-15 22:18:48'),(11875,440,1,9001,'4.99','2005-07-30 04:59:41','2006-02-15 22:18:48'),(11876,440,1,9195,'2.99','2005-07-30 12:29:43','2006-02-15 22:18:48'),(11877,440,1,9547,'4.99','2005-07-31 01:52:34','2006-02-15 22:18:48'),(11878,440,2,12403,'6.99','2005-08-18 09:31:05','2006-02-15 22:18:48'),(11879,440,1,12850,'0.99','2005-08-19 02:08:06','2006-02-15 22:18:48'),(11880,440,2,13384,'4.99','2005-08-19 21:38:51','2006-02-15 22:18:48'),(11881,440,2,13779,'2.99','2005-08-20 12:03:54','2006-02-15 22:18:48'),(11882,440,1,14555,'0.99','2005-08-21 16:03:02','2006-02-15 22:18:48'),(11883,440,2,14863,'7.99','2005-08-22 02:57:04','2006-02-15 22:18:48'),(11884,440,2,15264,'0.99','2005-08-22 18:27:38','2006-02-15 22:18:48'),(11885,440,1,15925,'4.99','2005-08-23 18:15:06','2006-02-15 22:18:49'),(11886,440,1,13106,'4.99','2006-02-14 15:16:03','2006-02-15 22:18:49'),(11887,441,1,823,'4.99','2005-05-29 21:39:37','2006-02-15 22:18:49'),(11888,441,1,1602,'4.99','2005-06-16 06:12:40','2006-02-15 22:18:49'),(11889,441,2,2328,'4.99','2005-06-18 10:17:21','2006-02-15 22:18:49'),(11890,441,2,3629,'0.99','2005-07-06 06:23:22','2006-02-15 22:18:49'),(11891,441,2,3695,'2.99','2005-07-06 10:02:08','2006-02-15 22:18:49'),(11892,441,1,4084,'8.99','2005-07-07 05:16:00','2006-02-15 22:18:49'),(11893,441,2,4208,'0.99','2005-07-07 11:34:22','2006-02-15 22:18:49'),(11894,441,2,5129,'2.99','2005-07-09 07:28:33','2006-02-15 22:18:49'),(11895,441,1,5811,'0.99','2005-07-10 15:27:04','2006-02-15 22:18:49'),(11896,441,2,6636,'2.99','2005-07-12 09:49:46','2006-02-15 22:18:49'),(11897,441,1,6642,'4.99','2005-07-12 10:37:52','2006-02-15 22:18:49'),(11898,441,1,6941,'5.99','2005-07-26 23:18:49','2006-02-15 22:18:49'),(11899,441,2,8237,'2.99','2005-07-29 00:29:56','2006-02-15 22:18:49'),(11900,441,1,8281,'0.99','2005-07-29 01:46:00','2006-02-15 22:18:49'),(11901,441,1,8427,'4.99','2005-07-29 07:08:36','2006-02-15 22:18:49'),(11902,441,1,8575,'4.99','2005-07-29 11:52:47','2006-02-15 22:18:49'),(11903,441,2,8617,'4.99','2005-07-29 13:46:14','2006-02-15 22:18:49'),(11904,441,2,9644,'10.99','2005-07-31 05:40:35','2006-02-15 22:18:50'),(11905,441,2,9854,'2.99','2005-07-31 12:59:34','2006-02-15 22:18:50'),(11906,441,2,10139,'1.99','2005-07-31 22:02:20','2006-02-15 22:18:50'),(11907,441,1,10846,'1.99','2005-08-01 23:47:54','2006-02-15 22:18:50'),(11908,441,2,11247,'1.99','2005-08-02 13:34:08','2006-02-15 22:18:50'),(11909,441,2,13483,'2.99','2005-08-20 01:16:38','2006-02-15 22:18:50'),(11910,441,2,13739,'4.99','2005-08-20 10:45:10','2006-02-15 22:18:50'),(11911,441,1,13932,'4.99','2005-08-20 17:17:00','2006-02-15 22:18:50'),(11912,441,2,14796,'4.99','2005-08-22 00:40:49','2006-02-15 22:18:50'),(11913,441,2,15070,'3.99','2005-08-22 10:55:45','2006-02-15 22:18:50'),(11914,441,1,14878,'4.99','2006-02-14 15:16:03','2006-02-15 22:18:50'),(11915,442,2,466,'0.99','2005-05-27 20:57:07','2006-02-15 22:18:50'),(11916,442,2,558,'6.99','2005-05-28 08:38:43','2006-02-15 22:18:50'),(11917,442,1,632,'5.99','2005-05-28 17:37:50','2006-02-15 22:18:50'),(11918,442,1,1251,'5.99','2005-06-15 05:58:55','2006-02-15 22:18:50'),(11919,442,2,1358,'0.99','2005-06-15 13:28:48','2006-02-15 22:18:50'),(11920,442,2,1576,'8.99','2005-06-16 03:54:39','2006-02-15 22:18:50'),(11921,442,1,1774,'2.99','2005-06-16 18:27:52','2006-02-15 22:18:51'),(11922,442,2,3545,'4.99','2005-07-06 02:16:17','2006-02-15 22:18:51'),(11923,442,1,3661,'2.99','2005-07-06 08:10:02','2006-02-15 22:18:51'),(11924,442,1,4052,'5.99','2005-07-07 03:38:22','2006-02-15 22:18:51'),(11925,442,1,4058,'2.99','2005-07-07 04:02:50','2006-02-15 22:18:51'),(11926,442,2,4365,'2.99','2005-07-07 19:47:46','2006-02-15 22:18:51'),(11927,442,2,4577,'3.99','2005-07-08 05:59:00','2006-02-15 22:18:51'),(11928,442,2,6590,'4.99','2005-07-12 07:08:21','2006-02-15 22:18:51'),(11929,442,2,6632,'2.99','2005-07-12 09:33:10','2006-02-15 22:18:51'),(11930,442,2,7427,'2.99','2005-07-27 17:20:16','2006-02-15 22:18:51'),(11931,442,1,7460,'0.99','2005-07-27 18:41:35','2006-02-15 22:18:51'),(11932,442,1,7671,'2.99','2005-07-28 02:48:31','2006-02-15 22:18:51'),(11933,442,1,8044,'2.99','2005-07-28 16:49:12','2006-02-15 22:18:51'),(11934,442,1,8758,'4.99','2005-07-29 19:20:49','2006-02-15 22:18:51'),(11935,442,1,9180,'4.99','2005-07-30 12:03:15','2006-02-15 22:18:51'),(11936,442,2,9873,'5.99','2005-07-31 13:32:18','2006-02-15 22:18:51'),(11937,442,1,10034,'2.99','2005-07-31 18:45:30','2006-02-15 22:18:51'),(11938,442,2,10365,'6.99','2005-08-01 06:08:44','2006-02-15 22:18:51'),(11939,442,2,10452,'0.99','2005-08-01 09:11:36','2006-02-15 22:18:51'),(11940,442,1,12948,'0.99','2005-08-19 05:55:14','2006-02-15 22:18:52'),(11941,442,2,13004,'0.99','2005-08-19 07:40:08','2006-02-15 22:18:52'),(11942,442,1,13155,'7.99','2005-08-19 13:10:23','2006-02-15 22:18:52'),(11943,442,2,14199,'0.99','2005-08-21 03:48:43','2006-02-15 22:18:52'),(11944,442,1,14418,'1.99','2005-08-21 11:14:26','2006-02-15 22:18:52'),(11945,442,1,14466,'0.99','2005-08-21 13:03:13','2006-02-15 22:18:52'),(11946,442,2,15207,'2.99','2005-08-22 16:35:25','2006-02-15 22:18:52'),(11947,443,2,1068,'4.99','2005-05-31 09:32:15','2006-02-15 22:18:52'),(11948,443,1,2871,'2.99','2005-06-20 00:27:49','2006-02-15 22:18:52'),(11949,443,2,3510,'5.99','2005-07-06 00:27:41','2006-02-15 22:18:52'),(11950,443,2,6625,'5.99','2005-07-12 09:06:40','2006-02-15 22:18:52'),(11951,443,1,6913,'4.99','2005-07-12 22:18:12','2006-02-15 22:18:52'),(11952,443,2,6983,'2.99','2005-07-27 00:55:03','2006-02-15 22:18:52'),(11953,443,1,7317,'2.99','2005-07-27 13:19:41','2006-02-15 22:18:52'),(11954,443,1,7667,'8.99','2005-07-28 02:37:22','2006-02-15 22:18:52'),(11955,443,1,7987,'9.99','2005-07-28 14:36:52','2006-02-15 22:18:52'),(11956,443,2,9740,'1.99','2005-07-31 09:08:03','2006-02-15 22:18:52'),(11957,443,1,10014,'4.99','2005-07-31 18:10:56','2006-02-15 22:18:52'),(11958,443,2,10081,'5.99','2005-07-31 20:07:44','2006-02-15 22:18:53'),(11959,443,2,10360,'0.99','2005-08-01 05:52:53','2006-02-15 22:18:53'),(11960,443,1,11449,'4.99','2005-08-02 20:44:43','2006-02-15 22:18:53'),(11961,443,1,12415,'4.99','2005-08-18 09:54:01','2006-02-15 22:18:53'),(11962,443,2,12857,'4.99','2005-08-19 02:20:13','2006-02-15 22:18:53'),(11963,443,1,13489,'2.99','2005-08-20 01:29:06','2006-02-15 22:18:53'),(11964,443,1,14561,'2.99','2005-08-21 16:20:43','2006-02-15 22:18:53'),(11965,443,2,14611,'6.99','2005-08-21 18:01:41','2006-02-15 22:18:53'),(11966,443,1,15182,'0.99','2005-08-22 15:47:05','2006-02-15 22:18:53'),(11967,443,2,15393,'4.99','2005-08-22 23:04:09','2006-02-15 22:18:53'),(11968,443,1,15519,'0.99','2005-08-23 03:23:32','2006-02-15 22:18:53'),(11969,444,1,201,'8.99','2005-05-26 07:13:45','2006-02-15 22:18:53'),(11970,444,1,557,'0.99','2005-05-28 08:36:22','2006-02-15 22:18:53'),(11971,444,1,1239,'0.99','2005-06-15 04:53:01','2006-02-15 22:18:53'),(11972,444,2,1397,'3.99','2005-06-15 16:25:26','2006-02-15 22:18:53'),(11973,444,2,1441,'1.99','2005-06-15 18:54:21','2006-02-15 22:18:53'),(11974,444,1,2551,'4.99','2005-06-19 02:51:04','2006-02-15 22:18:53'),(11975,444,2,3301,'7.99','2005-06-21 07:32:25','2006-02-15 22:18:53'),(11976,444,2,3415,'5.99','2005-06-21 16:59:49','2006-02-15 22:18:54'),(11977,444,2,3498,'4.99','2005-07-06 00:02:08','2006-02-15 22:18:54'),(11978,444,1,3539,'0.99','2005-07-06 01:39:08','2006-02-15 22:18:54'),(11979,444,2,4648,'6.99','2005-07-08 09:31:27','2006-02-15 22:18:54'),(11980,444,1,5753,'2.99','2005-07-10 12:29:43','2006-02-15 22:18:54'),(11981,444,2,5825,'2.99','2005-07-10 16:20:30','2006-02-15 22:18:54'),(11982,444,2,6285,'2.99','2005-07-11 16:52:07','2006-02-15 22:18:54'),(11983,444,2,7679,'3.99','2005-07-28 02:58:39','2006-02-15 22:18:54'),(11984,444,2,9634,'1.99','2005-07-31 05:06:02','2006-02-15 22:18:54'),(11985,444,1,10529,'4.99','2005-08-01 12:00:02','2006-02-15 22:18:54'),(11986,444,1,10693,'4.99','2005-08-01 18:14:14','2006-02-15 22:18:54'),(11987,444,2,11353,'0.99','2005-08-02 17:34:45','2006-02-15 22:18:54'),(11988,444,2,11419,'6.99','2005-08-02 19:46:38','2006-02-15 22:18:54'),(11989,444,1,11728,'4.99','2005-08-17 08:12:26','2006-02-15 22:18:54'),(11990,444,1,12161,'6.99','2005-08-18 00:41:46','2006-02-15 22:18:54'),(11991,444,2,12712,'2.99','2005-08-18 21:04:13','2006-02-15 22:18:54'),(11992,444,2,12946,'2.99','2005-08-19 05:53:34','2006-02-15 22:18:54'),(11993,444,1,13488,'0.99','2005-08-20 01:28:42','2006-02-15 22:18:54'),(11994,444,2,13559,'2.99','2005-08-20 04:16:07','2006-02-15 22:18:55'),(11995,444,1,13924,'0.99','2005-08-20 17:05:18','2006-02-15 22:18:55'),(11996,444,1,15249,'4.99','2005-08-22 17:58:27','2006-02-15 22:18:55'),(11997,444,1,15557,'0.99','2005-08-23 04:52:17','2006-02-15 22:18:55'),(11998,444,2,15815,'4.99','2005-08-23 14:55:47','2006-02-15 22:18:55'),(11999,445,1,481,'2.99','2005-05-27 22:49:27','2006-02-15 22:18:55'),(12000,445,1,960,'2.99','2005-05-30 18:13:23','2006-02-15 22:18:55'),(12001,445,1,4041,'0.99','2005-07-07 03:03:33','2006-02-15 22:18:55'),(12002,445,1,4193,'0.99','2005-07-07 10:57:21','2006-02-15 22:18:55'),(12003,445,2,5225,'2.99','2005-07-09 12:10:16','2006-02-15 22:18:55'),(12004,445,1,6346,'0.99','2005-07-11 20:08:34','2006-02-15 22:18:55'),(12005,445,2,7351,'2.99','2005-07-27 14:37:36','2006-02-15 22:18:55'),(12006,445,2,7971,'4.99','2005-07-28 14:00:47','2006-02-15 22:18:55'),(12007,445,1,8851,'8.99','2005-07-29 23:26:19','2006-02-15 22:18:55'),(12008,445,2,8911,'0.99','2005-07-30 01:30:57','2006-02-15 22:18:55'),(12009,445,2,9625,'4.99','2005-07-31 04:30:48','2006-02-15 22:18:55'),(12010,445,1,10007,'0.99','2005-07-31 17:54:58','2006-02-15 22:18:55'),(12011,445,2,10334,'1.99','2005-08-01 04:58:42','2006-02-15 22:18:56'),(12012,445,2,10341,'0.99','2005-08-01 05:10:02','2006-02-15 22:18:56'),(12013,445,2,10936,'9.99','2005-08-02 02:55:04','2006-02-15 22:18:56'),(12014,445,1,11383,'7.99','2005-08-02 18:22:05','2006-02-15 22:18:56'),(12015,445,1,11868,'4.99','2005-08-17 14:05:34','2006-02-15 22:18:56'),(12016,445,1,11877,'3.99','2005-08-17 14:21:11','2006-02-15 22:18:56'),(12017,445,2,13586,'0.99','2005-08-20 05:40:33','2006-02-15 22:18:56'),(12018,445,1,14612,'6.99','2005-08-21 18:03:15','2006-02-15 22:18:56'),(12019,445,2,14673,'2.99','2005-08-21 20:01:18','2006-02-15 22:18:56'),(12020,445,1,14866,'6.99','2005-08-22 03:11:35','2006-02-15 22:18:56'),(12021,445,1,14955,'4.99','2005-08-22 06:25:52','2006-02-15 22:18:56'),(12022,445,1,15123,'3.99','2005-08-22 12:48:44','2006-02-15 22:18:56'),(12023,445,1,15791,'6.99','2005-08-23 14:02:13','2006-02-15 22:18:56'),(12024,445,2,15906,'2.99','2005-08-23 17:36:00','2006-02-15 22:18:56'),(12025,446,2,14,'0.99','2005-05-25 00:31:15','2006-02-15 22:18:56'),(12026,446,1,236,'0.99','2005-05-26 11:53:49','2006-02-15 22:18:56'),(12027,446,1,355,'4.99','2005-05-27 06:15:33','2006-02-15 22:18:56'),(12028,446,1,2248,'4.99','2005-06-18 04:59:48','2006-02-15 22:18:56'),(12029,446,2,2335,'3.99','2005-06-18 10:59:36','2006-02-15 22:18:57'),(12030,446,2,2520,'6.99','2005-06-19 00:29:00','2006-02-15 22:18:57'),(12031,446,2,2710,'0.99','2005-06-19 14:03:56','2006-02-15 22:18:57'),(12032,446,1,3060,'2.99','2005-06-20 13:47:20','2006-02-15 22:18:57'),(12033,446,2,3168,'0.99','2005-06-20 21:46:01','2006-02-15 22:18:57'),(12034,446,2,4358,'4.99','2005-07-07 19:27:04','2006-02-15 22:18:57'),(12035,446,2,5393,'4.99','2005-07-09 19:35:12','2006-02-15 22:18:57'),(12036,446,2,5409,'2.99','2005-07-09 20:17:19','2006-02-15 22:18:57'),(12037,446,2,6454,'0.99','2005-07-12 01:00:12','2006-02-15 22:18:57'),(12038,446,1,6510,'4.99','2005-07-12 03:35:39','2006-02-15 22:18:57'),(12039,446,1,6535,'0.99','2005-07-12 04:43:43','2006-02-15 22:18:57'),(12040,446,1,6734,'6.99','2005-07-12 14:04:24','2006-02-15 22:18:57'),(12041,446,1,7005,'5.99','2005-07-27 01:38:36','2006-02-15 22:18:57'),(12042,446,2,7089,'0.99','2005-07-27 04:43:42','2006-02-15 22:18:57'),(12043,446,1,7576,'4.99','2005-07-27 22:54:35','2006-02-15 22:18:57'),(12044,446,2,8284,'6.99','2005-07-29 01:56:40','2006-02-15 22:18:57'),(12045,446,1,8309,'4.99','2005-07-29 03:22:20','2006-02-15 22:18:57'),(12046,446,2,8670,'4.99','2005-07-29 15:49:03','2006-02-15 22:18:57'),(12047,446,2,8691,'0.99','2005-07-29 16:41:23','2006-02-15 22:18:58'),(12048,446,2,8922,'9.99','2005-07-30 02:08:25','2006-02-15 22:18:58'),(12049,446,1,8923,'3.99','2005-07-30 02:08:49','2006-02-15 22:18:58'),(12050,446,1,9116,'0.99','2005-07-30 09:19:41','2006-02-15 22:18:58'),(12051,446,1,11051,'3.99','2005-08-02 06:23:39','2006-02-15 22:18:58'),(12052,446,2,12253,'0.99','2005-08-18 04:00:50','2006-02-15 22:18:58'),(12053,446,2,12480,'8.99','2005-08-18 12:26:43','2006-02-15 22:18:58'),(12054,446,1,15808,'1.99','2005-08-23 14:38:37','2006-02-15 22:18:58'),(12055,446,2,15951,'0.99','2005-08-23 19:10:32','2006-02-15 22:18:58'),(12056,447,1,461,'2.99','2005-05-27 20:08:55','2006-02-15 22:18:58'),(12057,447,2,732,'0.99','2005-05-29 07:32:51','2006-02-15 22:18:58'),(12058,447,2,1230,'0.99','2005-06-15 04:04:09','2006-02-15 22:18:58'),(12059,447,2,1890,'2.99','2005-06-17 04:06:13','2006-02-15 22:18:58'),(12060,447,1,2025,'4.99','2005-06-17 13:04:00','2006-02-15 22:18:58'),(12061,447,2,2285,'4.99','2005-06-18 07:00:54','2006-02-15 22:18:58'),(12062,447,2,4403,'4.99','2005-07-07 21:29:40','2006-02-15 22:18:58'),(12063,447,1,4858,'6.99','2005-07-08 18:53:24','2006-02-15 22:18:58'),(12064,447,1,5331,'4.99','2005-07-09 16:54:06','2006-02-15 22:18:58'),(12065,447,1,5734,'0.99','2005-07-10 11:37:28','2006-02-15 22:18:59'),(12066,447,2,5987,'2.99','2005-07-11 00:55:31','2006-02-15 22:18:59'),(12067,447,1,6651,'0.99','2005-07-12 10:57:28','2006-02-15 22:18:59'),(12068,447,1,6690,'1.99','2005-07-12 12:23:02','2006-02-15 22:18:59'),(12069,447,1,8537,'8.99','2005-07-29 10:44:54','2006-02-15 22:18:59'),(12070,447,2,8945,'4.99','2005-07-30 03:11:48','2006-02-15 22:18:59'),(12071,447,2,9076,'5.99','2005-07-30 07:58:12','2006-02-15 22:18:59'),(12072,447,1,9288,'6.99','2005-07-30 15:56:39','2006-02-15 22:18:59'),(12073,447,1,10425,'2.99','2005-08-01 08:23:25','2006-02-15 22:18:59'),(12074,447,2,10957,'5.99','2005-08-02 03:33:30','2006-02-15 22:18:59'),(12075,447,2,11108,'0.99','2005-08-02 08:20:01','2006-02-15 22:18:59'),(12076,447,1,11465,'5.99','2005-08-02 21:43:52','2006-02-15 22:18:59'),(12077,447,2,12511,'0.99','2005-08-18 13:23:19','2006-02-15 22:18:59'),(12078,447,1,13072,'2.99','2005-08-19 10:03:30','2006-02-15 22:18:59'),(12079,447,2,13110,'0.99','2005-08-19 11:24:37','2006-02-15 22:18:59'),(12080,447,1,13848,'4.99','2005-08-20 14:37:49','2006-02-15 22:18:59'),(12081,447,2,14443,'5.99','2005-08-21 12:06:32','2006-02-15 22:18:59'),(12082,447,1,15108,'2.99','2005-08-22 12:10:07','2006-02-15 22:18:59'),(12083,447,1,15997,'4.99','2005-08-23 20:40:31','2006-02-15 22:19:00'),(12084,447,2,16032,'4.99','2005-08-23 21:59:57','2006-02-15 22:19:00'),(12085,448,1,299,'4.99','2005-05-26 20:55:36','2006-02-15 22:19:00'),(12086,448,2,1123,'2.99','2005-05-31 16:48:43','2006-02-15 22:19:00'),(12087,448,1,1313,'5.99','2005-06-15 10:18:34','2006-02-15 22:19:00'),(12088,448,2,1823,'7.99','2005-06-16 21:48:16','2006-02-15 22:19:00'),(12089,448,2,2697,'0.99','2005-06-19 13:29:08','2006-02-15 22:19:00'),(12090,448,2,3225,'3.99','2005-06-21 02:16:55','2006-02-15 22:19:00'),(12091,448,2,3347,'5.99','2005-06-21 11:08:32','2006-02-15 22:19:00'),(12092,448,2,3959,'5.99','2005-07-06 22:07:58','2006-02-15 22:19:00'),(12093,448,2,3992,'6.99','2005-07-06 23:36:56','2006-02-15 22:19:00'),(12094,448,2,4024,'0.99','2005-07-07 02:11:23','2006-02-15 22:19:00'),(12095,448,2,4206,'2.99','2005-07-07 11:32:16','2006-02-15 22:19:00'),(12096,448,1,4406,'1.99','2005-07-07 21:35:16','2006-02-15 22:19:00'),(12097,448,2,4537,'2.99','2005-07-08 03:48:40','2006-02-15 22:19:00'),(12098,448,2,4558,'2.99','2005-07-08 04:55:26','2006-02-15 22:19:00'),(12099,448,2,6341,'2.99','2005-07-11 19:48:02','2006-02-15 22:19:00'),(12100,448,2,6985,'4.99','2005-07-27 00:57:42','2006-02-15 22:19:00'),(12101,448,1,9178,'10.99','2005-07-30 11:58:50','2006-02-15 22:19:01'),(12102,448,2,11608,'8.99','2005-08-17 03:36:52','2006-02-15 22:19:01'),(12103,448,1,11798,'9.99','2005-08-17 11:21:43','2006-02-15 22:19:01'),(12104,448,1,12446,'2.99','2005-08-18 10:56:29','2006-02-15 22:19:01'),(12105,448,1,13220,'2.99','2005-08-19 15:42:32','2006-02-15 22:19:01'),(12106,448,2,13250,'3.99','2005-08-19 16:47:55','2006-02-15 22:19:01'),(12107,448,1,13982,'3.99','2005-08-20 19:08:25','2006-02-15 22:19:01'),(12108,448,1,14580,'3.99','2005-08-21 16:56:39','2006-02-15 22:19:01'),(12109,448,1,14711,'2.99','2005-08-21 21:22:07','2006-02-15 22:19:01'),(12110,448,2,15358,'9.99','2005-08-22 21:29:14','2006-02-15 22:19:01'),(12111,448,1,15427,'4.99','2005-08-23 00:07:53','2006-02-15 22:19:01'),(12112,448,2,14734,'3.98','2006-02-14 15:16:03','2006-02-15 22:19:01'),(12113,448,1,13577,'0.00','2006-02-14 15:16:03','2006-02-15 22:19:01'),(12114,449,2,263,'4.99','2005-05-26 15:47:40','2006-02-15 22:19:01'),(12115,449,2,325,'5.99','2005-05-27 01:09:55','2006-02-15 22:19:01'),(12116,449,1,849,'7.99','2005-05-30 01:23:07','2006-02-15 22:19:01'),(12117,449,2,1295,'4.99','2005-06-15 09:17:20','2006-02-15 22:19:01'),(12118,449,1,2348,'0.99','2005-06-18 12:15:43','2006-02-15 22:19:01'),(12119,449,2,2970,'2.99','2005-06-20 07:51:51','2006-02-15 22:19:02'),(12120,449,1,3503,'0.99','2005-07-06 00:17:24','2006-02-15 22:19:02'),(12121,449,1,3977,'8.99','2005-07-06 23:00:49','2006-02-15 22:19:02'),(12122,449,2,4433,'3.99','2005-07-07 22:45:41','2006-02-15 22:19:02'),(12123,449,1,5824,'2.99','2005-07-10 16:19:53','2006-02-15 22:19:02'),(12124,449,2,7755,'6.99','2005-07-28 06:22:18','2006-02-15 22:19:02'),(12125,449,2,7803,'3.99','2005-07-28 07:52:13','2006-02-15 22:19:02'),(12126,449,2,8002,'2.99','2005-07-28 15:11:00','2006-02-15 22:19:02'),(12127,449,2,10083,'5.99','2005-07-31 20:10:19','2006-02-15 22:19:02'),(12128,449,2,10409,'2.99','2005-08-01 07:49:15','2006-02-15 22:19:02'),(12129,449,1,10416,'4.99','2005-08-01 08:08:39','2006-02-15 22:19:02'),(12130,449,1,10516,'6.99','2005-08-01 11:41:55','2006-02-15 22:19:02'),(12131,449,2,10688,'6.99','2005-08-01 17:53:43','2006-02-15 22:19:02'),(12132,449,1,12212,'4.99','2005-08-18 02:33:29','2006-02-15 22:19:02'),(12133,449,2,14962,'7.99','2005-08-22 06:37:43','2006-02-15 22:19:02'),(12134,450,2,548,'3.99','2005-05-28 07:34:56','2006-02-15 22:19:02'),(12135,450,2,1639,'4.99','2005-06-16 08:33:39','2006-02-15 22:19:02'),(12136,450,1,1739,'0.99','2005-06-16 16:09:38','2006-02-15 22:19:02'),(12137,450,2,1914,'2.99','2005-06-17 05:25:54','2006-02-15 22:19:03'),(12138,450,2,2278,'0.99','2005-06-18 06:37:57','2006-02-15 22:19:03'),(12139,450,1,2501,'4.99','2005-06-18 23:10:11','2006-02-15 22:19:03'),(12140,450,1,2626,'2.99','2005-06-19 08:28:44','2006-02-15 22:19:03'),(12141,450,1,3155,'4.99','2005-06-20 21:02:38','2006-02-15 22:19:03'),(12142,450,1,3570,'3.99','2005-07-06 03:23:43','2006-02-15 22:19:03'),(12143,450,1,5999,'7.99','2005-07-11 01:21:22','2006-02-15 22:19:03'),(12144,450,1,6028,'4.99','2005-07-11 02:31:44','2006-02-15 22:19:03'),(12145,450,2,7365,'2.99','2005-07-27 15:00:20','2006-02-15 22:19:03'),(12146,450,1,7610,'0.99','2005-07-28 00:11:35','2006-02-15 22:19:03'),(12147,450,1,7626,'0.99','2005-07-28 00:49:01','2006-02-15 22:19:03'),(12148,450,2,8733,'4.99','2005-07-29 18:26:34','2006-02-15 22:19:03'),(12149,450,2,10432,'2.99','2005-08-01 08:43:21','2006-02-15 22:19:03'),(12150,450,1,10984,'3.99','2005-08-02 04:30:02','2006-02-15 22:19:03'),(12151,450,2,12812,'0.99','2005-08-19 00:54:02','2006-02-15 22:19:03'),(12152,450,2,13731,'4.99','2005-08-20 10:22:08','2006-02-15 22:19:03'),(12153,450,1,13810,'0.99','2005-08-20 12:59:38','2006-02-15 22:19:03'),(12154,450,1,13828,'4.99','2005-08-20 13:49:52','2006-02-15 22:19:03'),(12155,450,1,14282,'4.99','2005-08-21 06:41:29','2006-02-15 22:19:04'),(12156,450,2,15019,'0.99','2005-08-22 08:52:53','2006-02-15 22:19:04'),(12157,450,1,15327,'4.99','2005-08-22 20:31:24','2006-02-15 22:19:04'),(12158,450,2,15419,'4.99','2005-08-22 23:54:36','2006-02-15 22:19:04'),(12159,450,1,14172,'0.99','2006-02-14 15:16:03','2006-02-15 22:19:04'),(12160,451,2,77,'0.99','2005-05-25 11:31:59','2006-02-15 22:19:04'),(12161,451,2,328,'2.99','2005-05-27 01:29:31','2006-02-15 22:19:04'),(12162,451,2,1113,'2.99','2005-05-31 15:58:44','2006-02-15 22:19:04'),(12163,451,1,1202,'0.99','2005-06-15 02:08:04','2006-02-15 22:19:04'),(12164,451,1,1851,'0.99','2005-06-17 00:32:26','2006-02-15 22:19:04'),(12165,451,1,1940,'6.99','2005-06-17 07:42:22','2006-02-15 22:19:04'),(12166,451,1,2671,'1.99','2005-06-19 11:33:11','2006-02-15 22:19:04'),(12167,451,1,2909,'3.99','2005-06-20 03:19:10','2006-02-15 22:19:04'),(12168,451,2,2917,'0.99','2005-06-20 04:08:35','2006-02-15 22:19:04'),(12169,451,1,3316,'6.99','2005-06-21 08:20:18','2006-02-15 22:19:04'),(12170,451,2,3826,'4.99','2005-07-06 15:51:58','2006-02-15 22:19:04'),(12171,451,1,4538,'2.99','2005-07-08 03:56:29','2006-02-15 22:19:04'),(12172,451,1,4794,'8.99','2005-07-08 16:30:11','2006-02-15 22:19:04'),(12173,451,2,4930,'4.99','2005-07-08 22:15:48','2006-02-15 22:19:05'),(12174,451,1,5005,'3.99','2005-07-09 01:21:44','2006-02-15 22:19:05'),(12175,451,2,5518,'8.99','2005-07-10 01:15:11','2006-02-15 22:19:05'),(12176,451,1,7018,'2.99','2005-07-27 02:20:22','2006-02-15 22:19:05'),(12177,451,2,10337,'8.99','2005-08-01 05:01:46','2006-02-15 22:19:05'),(12178,451,1,10856,'2.99','2005-08-02 00:07:14','2006-02-15 22:19:05'),(12179,451,2,10950,'2.99','2005-08-02 03:25:08','2006-02-15 22:19:05'),(12180,451,2,11167,'6.99','2005-08-02 10:15:51','2006-02-15 22:19:05'),(12181,451,2,11381,'6.99','2005-08-02 18:19:29','2006-02-15 22:19:05'),(12182,451,1,11790,'2.99','2005-08-17 11:00:08','2006-02-15 22:19:05'),(12183,451,2,12371,'2.99','2005-08-18 08:02:46','2006-02-15 22:19:05'),(12184,451,1,12422,'4.99','2005-08-18 10:13:12','2006-02-15 22:19:05'),(12185,451,2,13003,'1.99','2005-08-19 07:39:29','2006-02-15 22:19:05'),(12186,451,2,13100,'2.99','2005-08-19 10:55:45','2006-02-15 22:19:05'),(12187,451,2,13252,'2.99','2005-08-19 16:50:50','2006-02-15 22:19:05'),(12188,451,2,13380,'0.99','2005-08-19 21:36:58','2006-02-15 22:19:05'),(12189,451,1,13666,'2.99','2005-08-20 08:20:19','2006-02-15 22:19:05'),(12190,451,1,13705,'2.99','2005-08-20 09:32:23','2006-02-15 22:19:06'),(12191,451,2,14500,'0.99','2005-08-21 14:11:30','2006-02-15 22:19:06'),(12192,451,1,15651,'4.99','2005-08-23 08:31:49','2006-02-15 22:19:06'),(12193,452,1,354,'2.99','2005-05-27 06:12:26','2006-02-15 22:19:06'),(12194,452,2,714,'2.99','2005-05-29 04:15:21','2006-02-15 22:19:06'),(12195,452,1,726,'1.99','2005-05-29 06:05:29','2006-02-15 22:19:06'),(12196,452,2,1203,'4.99','2005-06-15 02:09:02','2006-02-15 22:19:06'),(12197,452,1,1512,'5.99','2005-06-15 22:53:03','2006-02-15 22:19:06'),(12198,452,1,1794,'3.99','2005-06-16 20:08:37','2006-02-15 22:19:06'),(12199,452,1,2263,'0.99','2005-06-18 05:57:47','2006-02-15 22:19:06'),(12200,452,2,2266,'4.99','2005-06-18 06:05:02','2006-02-15 22:19:06'),(12201,452,1,2504,'0.99','2005-06-18 23:19:53','2006-02-15 22:19:06'),(12202,452,2,2661,'0.99','2005-06-19 10:50:52','2006-02-15 22:19:06'),(12203,452,2,3638,'3.99','2005-07-06 07:08:17','2006-02-15 22:19:06'),(12204,452,1,3791,'2.99','2005-07-06 14:24:56','2006-02-15 22:19:06'),(12205,452,2,3907,'6.99','2005-07-06 19:39:14','2006-02-15 22:19:06'),(12206,452,1,4348,'0.99','2005-07-07 19:02:05','2006-02-15 22:19:06'),(12207,452,2,4353,'4.99','2005-07-07 19:19:05','2006-02-15 22:19:06'),(12208,452,2,4417,'2.99','2005-07-07 22:05:05','2006-02-15 22:19:07'),(12209,452,1,4720,'0.99','2005-07-08 12:34:34','2006-02-15 22:19:07'),(12210,452,1,5177,'1.99','2005-07-09 09:43:21','2006-02-15 22:19:07'),(12211,452,2,5480,'0.99','2005-07-09 23:49:07','2006-02-15 22:19:07'),(12212,452,2,6959,'2.99','2005-07-27 00:07:51','2006-02-15 22:19:07'),(12213,452,2,7899,'6.99','2005-07-28 11:10:12','2006-02-15 22:19:07'),(12214,452,1,8898,'1.99','2005-07-30 01:02:20','2006-02-15 22:19:07'),(12215,452,2,9379,'6.99','2005-07-30 19:13:01','2006-02-15 22:19:07'),(12216,452,2,11715,'4.99','2005-08-17 07:40:55','2006-02-15 22:19:07'),(12217,452,1,11735,'3.99','2005-08-17 08:35:42','2006-02-15 22:19:07'),(12218,452,1,12355,'0.99','2005-08-18 07:36:23','2006-02-15 22:19:07'),(12219,452,1,12630,'4.99','2005-08-18 17:49:28','2006-02-15 22:19:07'),(12220,452,1,13080,'4.99','2005-08-19 10:18:00','2006-02-15 22:19:07'),(12221,452,1,13642,'3.99','2005-08-20 07:42:17','2006-02-15 22:19:07'),(12222,452,1,14660,'0.99','2005-08-21 19:43:21','2006-02-15 22:19:07'),(12223,452,1,15909,'0.99','2005-08-23 17:42:42','2006-02-15 22:19:07'),(12224,452,1,14175,'4.99','2006-02-14 15:16:03','2006-02-15 22:19:07'),(12225,453,2,2852,'5.99','2005-06-19 23:08:50','2006-02-15 22:19:07'),(12226,453,1,2853,'7.99','2005-06-19 23:09:41','2006-02-15 22:19:08'),(12227,453,2,2887,'4.99','2005-06-20 01:39:43','2006-02-15 22:19:08'),(12228,453,2,3929,'0.99','2005-07-06 20:52:39','2006-02-15 22:19:08'),(12229,453,2,4033,'8.99','2005-07-07 02:35:46','2006-02-15 22:19:08'),(12230,453,1,4717,'4.99','2005-07-08 12:22:43','2006-02-15 22:19:08'),(12231,453,2,4805,'2.99','2005-07-08 16:59:12','2006-02-15 22:19:08'),(12232,453,2,5359,'6.99','2005-07-09 18:10:52','2006-02-15 22:19:08'),(12233,453,1,6752,'4.99','2005-07-12 14:53:15','2006-02-15 22:19:08'),(12234,453,1,7563,'0.99','2005-07-27 22:25:36','2006-02-15 22:19:08'),(12235,453,2,9289,'6.99','2005-07-30 15:57:04','2006-02-15 22:19:08'),(12236,453,2,9406,'6.99','2005-07-30 20:24:00','2006-02-15 22:19:08'),(12237,453,2,9900,'1.99','2005-07-31 14:15:05','2006-02-15 22:19:08'),(12238,453,1,11794,'4.99','2005-08-17 11:08:48','2006-02-15 22:19:08'),(12239,453,1,12703,'2.99','2005-08-18 20:37:13','2006-02-15 22:19:08'),(12240,453,1,13711,'7.99','2005-08-20 09:35:20','2006-02-15 22:19:08'),(12241,453,1,13785,'4.99','2005-08-20 12:11:46','2006-02-15 22:19:08'),(12242,453,1,14133,'2.99','2005-08-21 01:44:14','2006-02-15 22:19:08'),(12243,453,2,14306,'5.99','2005-08-21 07:32:35','2006-02-15 22:19:09'),(12244,453,2,14644,'4.99','2005-08-21 19:12:12','2006-02-15 22:19:09'),(12245,453,1,14652,'4.99','2005-08-21 19:32:05','2006-02-15 22:19:09'),(12246,453,1,15252,'0.99','2005-08-22 18:04:22','2006-02-15 22:19:09'),(12247,453,2,15627,'4.99','2005-08-23 07:25:38','2006-02-15 22:19:09'),(12248,454,1,735,'7.99','2005-05-29 08:08:13','2006-02-15 22:19:09'),(12249,454,2,1647,'4.99','2005-06-16 09:14:58','2006-02-15 22:19:09'),(12250,454,2,1844,'7.99','2005-06-16 23:53:53','2006-02-15 22:19:09'),(12251,454,1,1861,'1.99','2005-06-17 01:17:31','2006-02-15 22:19:09'),(12252,454,1,1938,'4.99','2005-06-17 07:18:36','2006-02-15 22:19:09'),(12253,454,2,2048,'5.99','2005-06-17 14:55:29','2006-02-15 22:19:09'),(12254,454,2,2182,'5.99','2005-06-18 00:56:18','2006-02-15 22:19:09'),(12255,454,1,2437,'2.99','2005-06-18 18:30:26','2006-02-15 22:19:09'),(12256,454,2,2666,'9.99','2005-06-19 11:17:12','2006-02-15 22:19:09'),(12257,454,1,3221,'2.99','2005-06-21 01:49:47','2006-02-15 22:19:09'),(12258,454,1,3362,'4.99','2005-06-21 12:19:54','2006-02-15 22:19:09'),(12259,454,1,3622,'7.99','2005-07-06 06:05:04','2006-02-15 22:19:09'),(12260,454,2,4562,'4.99','2005-07-08 05:08:32','2006-02-15 22:19:09'),(12261,454,2,5088,'4.99','2005-07-09 05:45:16','2006-02-15 22:19:10'),(12262,454,2,5446,'2.99','2005-07-09 21:59:55','2006-02-15 22:19:10'),(12263,454,2,6260,'4.99','2005-07-11 15:26:29','2006-02-15 22:19:10'),(12264,454,2,6701,'0.99','2005-07-12 12:47:59','2006-02-15 22:19:10'),(12265,454,2,8481,'2.99','2005-07-29 08:45:57','2006-02-15 22:19:10'),(12266,454,1,8806,'0.99','2005-07-29 21:36:34','2006-02-15 22:19:10'),(12267,454,2,9041,'0.99','2005-07-30 06:32:36','2006-02-15 22:19:10'),(12268,454,1,9372,'9.99','2005-07-30 19:04:30','2006-02-15 22:19:10'),(12269,454,1,10005,'3.99','2005-07-31 17:53:51','2006-02-15 22:19:10'),(12270,454,2,12347,'0.99','2005-08-18 07:18:10','2006-02-15 22:19:10'),(12271,454,1,12553,'0.99','2005-08-18 14:46:54','2006-02-15 22:19:10'),(12272,454,2,13496,'8.99','2005-08-20 01:42:29','2006-02-15 22:19:10'),(12273,454,2,13513,'2.99','2005-08-20 02:27:53','2006-02-15 22:19:10'),(12274,454,2,13694,'8.99','2005-08-20 09:13:23','2006-02-15 22:19:10'),(12275,454,1,13805,'6.99','2005-08-20 12:53:12','2006-02-15 22:19:10'),(12276,454,1,14799,'0.99','2005-08-22 00:44:57','2006-02-15 22:19:10'),(12277,454,2,14843,'2.99','2005-08-22 02:05:25','2006-02-15 22:19:10'),(12278,454,2,15012,'4.99','2005-08-22 08:42:32','2006-02-15 22:19:10'),(12279,454,1,15301,'3.99','2005-08-22 19:44:16','2006-02-15 22:19:11'),(12280,454,2,15608,'1.99','2005-08-23 06:55:26','2006-02-15 22:19:11'),(12281,455,2,115,'0.99','2005-05-25 19:13:25','2006-02-15 22:19:11'),(12282,455,2,343,'0.99','2005-05-27 04:13:41','2006-02-15 22:19:11'),(12283,455,2,1382,'1.99','2005-06-15 15:18:08','2006-02-15 22:19:11'),(12284,455,1,1802,'1.99','2005-06-16 20:23:30','2006-02-15 22:19:11'),(12285,455,1,1906,'2.99','2005-06-17 04:53:35','2006-02-15 22:19:11'),(12286,455,2,2356,'0.99','2005-06-18 12:59:23','2006-02-15 22:19:11'),(12287,455,2,4195,'2.99','2005-07-07 11:00:02','2006-02-15 22:19:11'),(12288,455,1,4861,'8.99','2005-07-08 18:57:30','2006-02-15 22:19:11'),(12289,455,1,4964,'2.99','2005-07-08 23:46:38','2006-02-15 22:19:11'),(12290,455,1,5504,'6.99','2005-07-10 00:36:38','2006-02-15 22:19:11'),(12291,455,2,6729,'4.99','2005-07-12 13:58:23','2006-02-15 22:19:11'),(12292,455,1,7388,'4.99','2005-07-27 15:54:19','2006-02-15 22:19:11'),(12293,455,2,7498,'4.99','2005-07-27 20:09:31','2006-02-15 22:19:11'),(12294,455,2,7905,'5.99','2005-07-28 11:26:57','2006-02-15 22:19:11'),(12295,455,2,8291,'2.99','2005-07-29 02:28:25','2006-02-15 22:19:11'),(12296,455,1,10436,'0.99','2005-08-01 08:50:59','2006-02-15 22:19:11'),(12297,455,1,11605,'4.99','2005-08-17 03:30:57','2006-02-15 22:19:12'),(12298,455,1,12163,'2.99','2005-08-18 00:46:01','2006-02-15 22:19:12'),(12299,455,1,12314,'4.99','2005-08-18 06:10:02','2006-02-15 22:19:12'),(12300,455,2,13083,'2.99','2005-08-19 10:26:45','2006-02-15 22:19:12'),(12301,455,2,13813,'4.99','2005-08-20 13:03:26','2006-02-15 22:19:12'),(12302,455,1,14294,'2.99','2005-08-21 07:07:26','2006-02-15 22:19:12'),(12303,455,2,14583,'4.99','2005-08-21 17:11:47','2006-02-15 22:19:12'),(12304,455,1,15494,'1.99','2005-08-23 02:25:09','2006-02-15 22:19:12'),(12305,456,2,19,'4.99','2005-05-25 01:17:24','2006-02-15 22:19:12'),(12306,456,1,1288,'2.99','2005-06-15 08:41:52','2006-02-15 22:19:12'),(12307,456,1,1700,'0.99','2005-06-16 13:18:23','2006-02-15 22:19:12'),(12308,456,2,2103,'5.99','2005-06-17 19:13:10','2006-02-15 22:19:12'),(12309,456,2,2146,'6.99','2005-06-17 22:26:23','2006-02-15 22:19:12'),(12310,456,1,2192,'4.99','2005-06-18 01:35:47','2006-02-15 22:19:12'),(12311,456,1,2404,'0.99','2005-06-18 16:33:48','2006-02-15 22:19:12'),(12312,456,1,2581,'2.99','2005-06-19 04:54:13','2006-02-15 22:19:12'),(12313,456,1,3743,'7.99','2005-07-06 12:03:54','2006-02-15 22:19:12'),(12314,456,2,3881,'2.99','2005-07-06 18:35:37','2006-02-15 22:19:13'),(12315,456,1,4141,'3.99','2005-07-07 08:19:20','2006-02-15 22:19:13'),(12316,456,2,5964,'0.99','2005-07-10 23:47:18','2006-02-15 22:19:13'),(12317,456,2,6023,'0.99','2005-07-11 02:15:57','2006-02-15 22:19:13'),(12318,456,2,7248,'2.99','2005-07-27 10:37:45','2006-02-15 22:19:13'),(12319,456,1,8749,'4.99','2005-07-29 19:13:15','2006-02-15 22:19:13'),(12320,456,2,10519,'5.99','2005-08-01 11:44:13','2006-02-15 22:19:13'),(12321,456,1,10813,'2.99','2005-08-01 22:43:00','2006-02-15 22:19:13'),(12322,456,1,12188,'4.99','2005-08-18 01:51:43','2006-02-15 22:19:13'),(12323,456,1,13144,'8.99','2005-08-19 12:45:55','2006-02-15 22:19:13'),(12324,456,1,13348,'4.99','2005-08-19 20:31:48','2006-02-15 22:19:13'),(12325,456,1,13547,'4.99','2005-08-20 03:53:16','2006-02-15 22:19:13'),(12326,456,2,14253,'2.99','2005-08-21 05:47:52','2006-02-15 22:19:13'),(12327,456,2,14690,'1.99','2005-08-21 20:42:25','2006-02-15 22:19:13'),(12328,456,1,15720,'3.99','2005-08-23 11:15:20','2006-02-15 22:19:13'),(12329,456,1,15910,'2.99','2005-08-23 17:43:16','2006-02-15 22:19:13'),(12330,457,2,1024,'7.99','2005-05-31 03:30:19','2006-02-15 22:19:13'),(12331,457,2,1453,'4.99','2005-06-15 19:36:39','2006-02-15 22:19:13'),(12332,457,2,1727,'0.99','2005-06-16 15:21:47','2006-02-15 22:19:14'),(12333,457,1,2030,'0.99','2005-06-17 13:13:27','2006-02-15 22:19:14'),(12334,457,1,2172,'7.99','2005-06-18 00:06:16','2006-02-15 22:19:14'),(12335,457,1,2670,'4.99','2005-06-19 11:30:16','2006-02-15 22:19:14'),(12336,457,1,2762,'3.99','2005-06-19 17:22:31','2006-02-15 22:19:14'),(12337,457,1,2811,'0.99','2005-06-19 19:53:30','2006-02-15 22:19:14'),(12338,457,2,3115,'2.99','2005-06-20 17:59:05','2006-02-15 22:19:14'),(12339,457,2,3184,'2.99','2005-06-20 22:57:44','2006-02-15 22:19:14'),(12340,457,2,4600,'5.99','2005-07-08 06:48:37','2006-02-15 22:19:14'),(12341,457,1,5500,'0.99','2005-07-10 00:28:17','2006-02-15 22:19:14'),(12342,457,1,6467,'7.99','2005-07-12 01:22:03','2006-02-15 22:19:14'),(12343,457,1,7184,'1.99','2005-07-27 08:22:26','2006-02-15 22:19:14'),(12344,457,2,8373,'4.99','2005-07-29 05:19:53','2006-02-15 22:19:14'),(12345,457,1,8502,'2.99','2005-07-29 09:15:41','2006-02-15 22:19:14'),(12346,457,1,10049,'2.99','2005-07-31 19:11:11','2006-02-15 22:19:14'),(12347,457,2,11956,'6.99','2005-08-17 17:22:05','2006-02-15 22:19:14'),(12348,457,1,12115,'4.99','2005-08-17 23:04:15','2006-02-15 22:19:14'),(12349,457,1,12171,'4.99','2005-08-18 01:06:13','2006-02-15 22:19:15'),(12350,457,1,13088,'0.99','2005-08-19 10:36:11','2006-02-15 22:19:15'),(12351,457,1,13150,'2.99','2005-08-19 13:08:19','2006-02-15 22:19:15'),(12352,457,2,13934,'0.99','2005-08-20 17:18:48','2006-02-15 22:19:15'),(12353,457,2,14327,'10.99','2005-08-21 08:18:18','2006-02-15 22:19:15'),(12354,457,1,14365,'6.99','2005-08-21 09:25:13','2006-02-15 22:19:15'),(12355,457,1,15128,'3.99','2005-08-22 12:57:26','2006-02-15 22:19:15'),(12356,457,1,12645,'3.98','2006-02-14 15:16:03','2006-02-15 22:19:15'),(12357,457,2,14516,'0.00','2006-02-14 15:16:03','2006-02-15 22:19:15'),(12358,458,2,2629,'5.99','2005-06-19 08:42:12','2006-02-15 22:19:15'),(12359,458,2,3322,'0.99','2005-06-21 08:42:37','2006-02-15 22:19:15'),(12360,458,2,4525,'2.99','2005-07-08 03:15:00','2006-02-15 22:19:15'),(12361,458,1,5412,'2.99','2005-07-09 20:23:52','2006-02-15 22:19:15'),(12362,458,1,5572,'0.99','2005-07-10 03:49:00','2006-02-15 22:19:15'),(12363,458,2,6250,'3.99','2005-07-11 15:02:04','2006-02-15 22:19:15'),(12364,458,1,6431,'5.99','2005-07-12 00:03:57','2006-02-15 22:19:15'),(12365,458,2,6595,'7.99','2005-07-12 07:25:48','2006-02-15 22:19:15'),(12366,458,1,6654,'1.99','2005-07-12 11:06:28','2006-02-15 22:19:15'),(12367,458,2,7923,'3.99','2005-07-28 12:08:29','2006-02-15 22:19:16'),(12368,458,1,8158,'0.99','2005-07-28 21:08:46','2006-02-15 22:19:16'),(12369,458,2,11138,'2.99','2005-08-02 09:26:16','2006-02-15 22:19:16'),(12370,458,2,11975,'2.99','2005-08-17 17:58:39','2006-02-15 22:19:16'),(12371,458,2,12768,'0.99','2005-08-18 23:26:11','2006-02-15 22:19:16'),(12372,458,2,13259,'2.99','2005-08-19 17:08:53','2006-02-15 22:19:16'),(12373,458,2,13487,'2.99','2005-08-20 01:27:05','2006-02-15 22:19:16'),(12374,458,2,13571,'4.99','2005-08-20 05:05:14','2006-02-15 22:19:16'),(12375,458,2,14428,'4.99','2005-08-21 11:27:07','2006-02-15 22:19:16'),(12376,458,1,15604,'4.99','2005-08-23 06:44:19','2006-02-15 22:19:16'),(12377,459,2,2,'2.99','2005-05-24 22:54:33','2006-02-15 22:19:16'),(12378,459,2,1876,'0.99','2005-06-17 02:50:51','2006-02-15 22:19:16'),(12379,459,2,1977,'2.99','2005-06-17 09:38:22','2006-02-15 22:19:16'),(12380,459,2,2075,'4.99','2005-06-17 16:40:33','2006-02-15 22:19:16'),(12381,459,1,2899,'0.99','2005-06-20 02:39:21','2006-02-15 22:19:16'),(12382,459,2,3041,'4.99','2005-06-20 12:35:44','2006-02-15 22:19:16'),(12383,459,2,3045,'0.99','2005-06-20 12:42:00','2006-02-15 22:19:16'),(12384,459,2,3234,'9.99','2005-06-21 02:39:44','2006-02-15 22:19:16'),(12385,459,1,3506,'2.99','2005-07-06 00:22:29','2006-02-15 22:19:17'),(12386,459,2,4519,'2.99','2005-07-08 02:51:23','2006-02-15 22:19:17'),(12387,459,1,5301,'3.99','2005-07-09 15:42:10','2006-02-15 22:19:17'),(12388,459,1,5695,'0.99','2005-07-10 09:43:40','2006-02-15 22:19:17'),(12389,459,1,6206,'0.99','2005-07-11 12:32:14','2006-02-15 22:19:17'),(12390,459,2,6750,'3.99','2005-07-12 14:49:39','2006-02-15 22:19:17'),(12391,459,1,7623,'6.99','2005-07-28 00:37:41','2006-02-15 22:19:17'),(12392,459,2,7639,'4.99','2005-07-28 01:14:36','2006-02-15 22:19:17'),(12393,459,1,7717,'4.99','2005-07-28 04:33:54','2006-02-15 22:19:17'),(12394,459,1,7820,'5.99','2005-07-28 08:28:51','2006-02-15 22:19:17'),(12395,459,1,7913,'6.99','2005-07-28 11:47:23','2006-02-15 22:19:17'),(12396,459,1,8289,'9.99','2005-07-29 02:23:24','2006-02-15 22:19:17'),(12397,459,2,8557,'10.99','2005-07-29 11:19:59','2006-02-15 22:19:17'),(12398,459,1,8897,'2.99','2005-07-30 01:00:17','2006-02-15 22:19:17'),(12399,459,1,9137,'6.99','2005-07-30 10:09:24','2006-02-15 22:19:17'),(12400,459,2,9639,'2.99','2005-07-31 05:32:10','2006-02-15 22:19:17'),(12401,459,1,9744,'4.99','2005-07-31 09:15:38','2006-02-15 22:19:17'),(12402,459,2,10117,'4.99','2005-07-31 21:14:31','2006-02-15 22:19:18'),(12403,459,1,10233,'6.99','2005-08-01 01:54:23','2006-02-15 22:19:18'),(12404,459,2,10255,'4.99','2005-08-01 02:46:13','2006-02-15 22:19:18'),(12405,459,1,10499,'7.99','2005-08-01 11:00:20','2006-02-15 22:19:18'),(12406,459,1,10531,'2.99','2005-08-01 12:06:30','2006-02-15 22:19:18'),(12407,459,1,12527,'6.99','2005-08-18 13:48:46','2006-02-15 22:19:18'),(12408,459,1,12629,'7.99','2005-08-18 17:40:33','2006-02-15 22:19:18'),(12409,459,2,13960,'10.99','2005-08-20 18:16:26','2006-02-15 22:19:18'),(12410,459,1,13967,'4.99','2005-08-20 18:28:46','2006-02-15 22:19:18'),(12411,459,1,14315,'3.99','2005-08-21 07:56:39','2006-02-15 22:19:18'),(12412,459,1,15126,'5.99','2005-08-22 12:53:58','2006-02-15 22:19:18'),(12413,459,2,15342,'2.99','2005-08-22 20:56:41','2006-02-15 22:19:18'),(12414,459,1,15814,'0.99','2005-08-23 14:52:50','2006-02-15 22:19:18'),(12415,460,1,223,'4.99','2005-05-26 10:15:23','2006-02-15 22:19:18'),(12416,460,2,298,'0.99','2005-05-26 20:52:26','2006-02-15 22:19:18'),(12417,460,1,880,'0.99','2005-05-30 06:12:33','2006-02-15 22:19:18'),(12418,460,2,1064,'4.99','2005-05-31 08:50:07','2006-02-15 22:19:18'),(12419,460,2,1392,'0.99','2005-06-15 16:12:27','2006-02-15 22:19:19'),(12420,460,2,3820,'4.99','2005-07-06 15:35:26','2006-02-15 22:19:19'),(12421,460,1,4452,'7.99','2005-07-07 23:31:54','2006-02-15 22:19:19'),(12422,460,2,5482,'3.99','2005-07-09 23:53:04','2006-02-15 22:19:19'),(12423,460,1,6613,'4.99','2005-07-12 08:30:07','2006-02-15 22:19:19'),(12424,460,1,6788,'5.99','2005-07-12 16:33:44','2006-02-15 22:19:19'),(12425,460,1,7125,'6.99','2005-07-27 06:11:00','2006-02-15 22:19:19'),(12426,460,1,7785,'3.99','2005-07-28 07:16:11','2006-02-15 22:19:19'),(12427,460,2,8656,'2.99','2005-07-29 15:05:52','2006-02-15 22:19:19'),(12428,460,2,10754,'10.99','2005-08-01 20:12:33','2006-02-15 22:19:19'),(12429,460,1,10926,'1.99','2005-08-02 02:26:37','2006-02-15 22:19:19'),(12430,460,2,11554,'2.99','2005-08-17 01:05:17','2006-02-15 22:19:19'),(12431,460,1,12056,'5.99','2005-08-17 21:03:48','2006-02-15 22:19:19'),(12432,460,2,12586,'4.99','2005-08-18 15:54:39','2006-02-15 22:19:19'),(12433,460,1,12865,'0.99','2005-08-19 02:38:50','2006-02-15 22:19:19'),(12434,460,2,13215,'8.99','2005-08-19 15:35:38','2006-02-15 22:19:19'),(12435,460,1,13341,'3.99','2005-08-19 20:18:53','2006-02-15 22:19:19'),(12436,460,2,13920,'5.99','2005-08-20 16:51:18','2006-02-15 22:19:19'),(12437,460,2,14864,'0.99','2005-08-22 02:57:06','2006-02-15 22:19:20'),(12438,460,1,14923,'3.99','2005-08-22 05:13:33','2006-02-15 22:19:20'),(12439,460,2,15954,'2.99','2005-08-23 19:14:07','2006-02-15 22:19:20'),(12440,461,1,684,'6.99','2005-05-29 00:13:15','2006-02-15 22:19:20'),(12441,461,2,3127,'5.99','2005-06-20 18:39:43','2006-02-15 22:19:20'),(12442,461,2,3319,'4.99','2005-06-21 08:25:46','2006-02-15 22:19:20'),(12443,461,2,3698,'0.99','2005-07-06 10:09:20','2006-02-15 22:19:20'),(12444,461,2,4586,'2.99','2005-07-08 06:12:33','2006-02-15 22:19:20'),(12445,461,1,5650,'0.99','2005-07-10 07:17:01','2006-02-15 22:19:20'),(12446,461,1,5809,'2.99','2005-07-10 15:19:30','2006-02-15 22:19:20'),(12447,461,2,7334,'2.99','2005-07-27 13:59:58','2006-02-15 22:19:20'),(12448,461,2,7664,'2.99','2005-07-28 02:24:23','2006-02-15 22:19:20'),(12449,461,2,8133,'0.99','2005-07-28 20:01:06','2006-02-15 22:19:20'),(12450,461,2,8164,'0.99','2005-07-28 21:17:19','2006-02-15 22:19:20'),(12451,461,2,9499,'4.99','2005-07-30 23:58:30','2006-02-15 22:19:20'),(12452,461,1,9885,'0.99','2005-07-31 13:59:32','2006-02-15 22:19:20'),(12453,461,2,10113,'4.99','2005-07-31 21:10:03','2006-02-15 22:19:20'),(12454,461,1,10260,'2.99','2005-08-01 02:58:07','2006-02-15 22:19:21'),(12455,461,2,11063,'0.99','2005-08-02 06:53:48','2006-02-15 22:19:21'),(12456,461,2,11219,'0.99','2005-08-02 12:30:20','2006-02-15 22:19:21'),(12457,461,2,12022,'2.99','2005-08-17 19:52:45','2006-02-15 22:19:21'),(12458,461,1,13223,'2.99','2005-08-19 15:52:04','2006-02-15 22:19:21'),(12459,461,1,13269,'2.99','2005-08-19 17:34:00','2006-02-15 22:19:21'),(12460,461,1,14186,'4.99','2005-08-21 03:31:07','2006-02-15 22:19:21'),(12461,461,1,14893,'4.99','2005-08-22 04:15:48','2006-02-15 22:19:21'),(12462,461,1,15067,'2.99','2005-08-22 10:49:21','2006-02-15 22:19:21'),(12463,461,2,15187,'4.99','2005-08-22 15:53:32','2006-02-15 22:19:21'),(12464,461,1,15336,'6.99','2005-08-22 20:47:48','2006-02-15 22:19:21'),(12465,461,2,15411,'2.99','2005-08-22 23:35:41','2006-02-15 22:19:21'),(12466,461,2,15449,'2.99','2005-08-23 00:55:43','2006-02-15 22:19:21'),(12467,461,2,15613,'7.99','2005-08-23 07:03:19','2006-02-15 22:19:21'),(12468,462,2,156,'2.99','2005-05-26 01:19:05','2006-02-15 22:19:21'),(12469,462,2,590,'3.99','2005-05-28 13:06:50','2006-02-15 22:19:21'),(12470,462,2,1773,'5.99','2005-06-16 18:13:43','2006-02-15 22:19:21'),(12471,462,2,1926,'9.99','2005-06-17 06:24:30','2006-02-15 22:19:21'),(12472,462,1,3279,'4.99','2005-06-21 06:05:53','2006-02-15 22:19:22'),(12473,462,1,4500,'4.99','2005-07-08 02:10:01','2006-02-15 22:19:22'),(12474,462,2,4728,'3.99','2005-07-08 12:59:01','2006-02-15 22:19:22'),(12475,462,1,6583,'4.99','2005-07-12 06:42:31','2006-02-15 22:19:22'),(12476,462,1,6630,'0.99','2005-07-12 09:30:05','2006-02-15 22:19:22'),(12477,462,1,6710,'7.99','2005-07-12 13:23:09','2006-02-15 22:19:22'),(12478,462,1,6721,'6.99','2005-07-12 13:42:58','2006-02-15 22:19:22'),(12479,462,2,7295,'8.99','2005-07-27 12:38:47','2006-02-15 22:19:22'),(12480,462,1,7324,'6.99','2005-07-27 13:42:39','2006-02-15 22:19:22'),(12481,462,1,7762,'8.99','2005-07-28 06:34:23','2006-02-15 22:19:22'),(12482,462,1,7932,'4.99','2005-07-28 12:24:54','2006-02-15 22:19:22'),(12483,462,2,7935,'2.99','2005-07-28 12:33:17','2006-02-15 22:19:22'),(12484,462,1,8066,'2.99','2005-07-28 17:20:09','2006-02-15 22:19:22'),(12485,462,1,8282,'0.99','2005-07-29 01:49:04','2006-02-15 22:19:22'),(12486,462,1,8290,'3.99','2005-07-29 02:24:08','2006-02-15 22:19:22'),(12487,462,2,8757,'2.99','2005-07-29 19:19:10','2006-02-15 22:19:22'),(12488,462,1,9891,'0.99','2005-07-31 14:05:44','2006-02-15 22:19:22'),(12489,462,1,10283,'2.99','2005-08-01 03:29:45','2006-02-15 22:19:23'),(12490,462,2,11639,'6.99','2005-08-17 04:43:29','2006-02-15 22:19:23'),(12491,462,1,11808,'2.99','2005-08-17 11:51:16','2006-02-15 22:19:23'),(12492,462,1,12466,'4.99','2005-08-18 11:36:55','2006-02-15 22:19:23'),(12493,462,2,12582,'0.99','2005-08-18 15:51:12','2006-02-15 22:19:23'),(12494,462,1,12802,'8.99','2005-08-19 00:27:41','2006-02-15 22:19:23'),(12495,462,2,13041,'8.99','2005-08-19 09:05:38','2006-02-15 22:19:23'),(12496,462,1,13328,'4.99','2005-08-19 19:56:01','2006-02-15 22:19:23'),(12497,462,1,13492,'7.99','2005-08-20 01:32:04','2006-02-15 22:19:23'),(12498,462,2,15581,'2.99','2005-08-23 05:42:13','2006-02-15 22:19:23'),(12499,462,1,15943,'2.99','2005-08-23 18:49:32','2006-02-15 22:19:23'),(12500,462,1,16013,'0.99','2005-08-23 21:17:17','2006-02-15 22:19:23'),(12501,463,1,560,'1.99','2005-05-28 08:53:02','2006-02-15 22:19:23'),(12502,463,1,1284,'2.99','2005-06-15 08:27:33','2006-02-15 22:19:23'),(12503,463,2,2527,'4.99','2005-06-19 01:10:31','2006-02-15 22:19:23'),(12504,463,1,3217,'2.99','2005-06-21 01:28:12','2006-02-15 22:19:23'),(12505,463,1,3309,'4.99','2005-06-21 08:00:49','2006-02-15 22:19:23'),(12506,463,1,5026,'2.99','2005-07-09 02:32:34','2006-02-15 22:19:24'),(12507,463,1,5157,'2.99','2005-07-09 08:52:12','2006-02-15 22:19:24'),(12508,463,1,5448,'0.99','2005-07-09 22:11:14','2006-02-15 22:19:24'),(12509,463,2,6294,'0.99','2005-07-11 17:25:55','2006-02-15 22:19:24'),(12510,463,1,6932,'6.99','2005-07-26 23:08:04','2006-02-15 22:19:24'),(12511,463,1,7013,'0.99','2005-07-27 02:03:21','2006-02-15 22:19:24'),(12512,463,1,7361,'0.99','2005-07-27 14:53:55','2006-02-15 22:19:24'),(12513,463,1,8762,'2.99','2005-07-29 19:30:02','2006-02-15 22:19:24'),(12514,463,2,9405,'7.99','2005-07-30 20:22:17','2006-02-15 22:19:24'),(12515,463,1,9954,'2.99','2005-07-31 15:57:07','2006-02-15 22:19:24'),(12516,463,1,10275,'3.99','2005-08-01 03:20:08','2006-02-15 22:19:24'),(12517,463,2,10405,'0.99','2005-08-01 07:35:25','2006-02-15 22:19:24'),(12518,463,2,10906,'2.99','2005-08-02 01:47:04','2006-02-15 22:19:24'),(12519,463,2,12096,'7.99','2005-08-17 22:32:50','2006-02-15 22:19:24'),(12520,463,2,12679,'6.99','2005-08-18 19:42:11','2006-02-15 22:19:24'),(12521,463,1,12950,'2.99','2005-08-19 05:55:58','2006-02-15 22:19:24'),(12522,463,2,13938,'4.99','2005-08-20 17:24:45','2006-02-15 22:19:24'),(12523,463,1,14689,'0.99','2005-08-21 20:33:00','2006-02-15 22:19:24'),(12524,463,1,14859,'2.99','2005-08-22 02:46:35','2006-02-15 22:19:25'),(12525,463,2,15151,'7.99','2005-08-22 14:23:11','2006-02-15 22:19:25'),(12526,464,1,305,'3.99','2005-05-26 21:22:07','2006-02-15 22:19:25'),(12527,464,2,373,'1.99','2005-05-27 08:16:25','2006-02-15 22:19:25'),(12528,464,2,1277,'4.99','2005-06-15 08:01:29','2006-02-15 22:19:25'),(12529,464,1,3167,'2.99','2005-06-20 21:42:29','2006-02-15 22:19:25'),(12530,464,1,3761,'4.99','2005-07-06 12:52:44','2006-02-15 22:19:25'),(12531,464,1,4337,'5.99','2005-07-07 18:36:37','2006-02-15 22:19:25'),(12532,464,2,5455,'6.99','2005-07-09 22:28:45','2006-02-15 22:19:25'),(12533,464,1,5910,'4.99','2005-07-10 20:51:34','2006-02-15 22:19:25'),(12534,464,2,6601,'3.99','2005-07-12 07:44:49','2006-02-15 22:19:25'),(12535,464,1,9600,'5.99','2005-07-31 03:35:34','2006-02-15 22:19:25'),(12536,464,2,11275,'1.99','2005-08-02 14:25:58','2006-02-15 22:19:25'),(12537,464,1,13644,'8.99','2005-08-20 07:46:30','2006-02-15 22:19:25'),(12538,464,2,13943,'2.99','2005-08-20 17:31:18','2006-02-15 22:19:25'),(12539,464,1,15092,'6.99','2005-08-22 11:36:16','2006-02-15 22:19:25'),(12540,464,2,15854,'0.99','2005-08-23 15:58:05','2006-02-15 22:19:25'),(12541,464,1,15983,'4.99','2005-08-23 20:13:38','2006-02-15 22:19:26'),(12542,465,2,640,'0.99','2005-05-28 18:43:26','2006-02-15 22:19:26'),(12543,465,1,1337,'2.99','2005-06-15 12:12:42','2006-02-15 22:19:26'),(12544,465,1,2079,'4.99','2005-06-17 16:49:45','2006-02-15 22:19:26'),(12545,465,1,2159,'8.99','2005-06-17 23:37:29','2006-02-15 22:19:26'),(12546,465,2,2524,'0.99','2005-06-19 00:48:11','2006-02-15 22:19:26'),(12547,465,1,4763,'0.99','2005-07-08 14:57:32','2006-02-15 22:19:26'),(12548,465,2,6904,'3.99','2005-07-12 22:02:09','2006-02-15 22:19:26'),(12549,465,2,7508,'2.99','2005-07-27 20:33:08','2006-02-15 22:19:26'),(12550,465,1,10542,'3.99','2005-08-01 12:32:23','2006-02-15 22:19:26'),(12551,465,1,11156,'2.99','2005-08-02 09:56:06','2006-02-15 22:19:26'),(12552,465,1,11586,'4.99','2005-08-17 02:20:42','2006-02-15 22:19:26'),(12553,465,2,11648,'6.99','2005-08-17 04:56:16','2006-02-15 22:19:26'),(12554,465,2,12106,'4.99','2005-08-17 22:55:32','2006-02-15 22:19:26'),(12555,465,1,12814,'4.99','2005-08-19 00:58:24','2006-02-15 22:19:26'),(12556,465,1,12864,'4.99','2005-08-19 02:38:26','2006-02-15 22:19:26'),(12557,465,1,15550,'3.99','2005-08-23 04:27:54','2006-02-15 22:19:26'),(12558,465,2,15859,'4.99','2005-08-23 16:08:15','2006-02-15 22:19:27'),(12559,466,2,1104,'2.99','2005-05-31 14:30:01','2006-02-15 22:19:27'),(12560,466,2,1808,'7.99','2005-06-16 20:59:35','2006-02-15 22:19:27'),(12561,466,2,2446,'8.99','2005-06-18 19:04:41','2006-02-15 22:19:27'),(12562,466,1,3022,'3.99','2005-06-20 11:17:20','2006-02-15 22:19:27'),(12563,466,2,3237,'4.99','2005-06-21 02:47:56','2006-02-15 22:19:27'),(12564,466,2,3343,'2.99','2005-06-21 10:56:59','2006-02-15 22:19:27'),(12565,466,2,5048,'0.99','2005-07-09 03:46:33','2006-02-15 22:19:27'),(12566,466,1,5691,'4.99','2005-07-10 09:29:49','2006-02-15 22:19:27'),(12567,466,1,6073,'6.99','2005-07-11 04:54:31','2006-02-15 22:19:27'),(12568,466,2,7080,'2.99','2005-07-27 04:25:25','2006-02-15 22:19:27'),(12569,466,2,8276,'0.99','2005-07-29 01:38:43','2006-02-15 22:19:27'),(12570,466,1,9202,'3.99','2005-07-30 12:43:24','2006-02-15 22:19:27'),(12571,466,1,9257,'2.99','2005-07-30 14:30:38','2006-02-15 22:19:27'),(12572,466,1,10469,'4.99','2005-08-01 09:51:11','2006-02-15 22:19:27'),(12573,466,2,11343,'0.99','2005-08-02 17:12:30','2006-02-15 22:19:27'),(12574,466,1,11359,'4.99','2005-08-02 17:45:55','2006-02-15 22:19:27'),(12575,466,1,12048,'7.99','2005-08-17 20:49:24','2006-02-15 22:19:27'),(12576,466,1,13478,'2.99','2005-08-20 01:07:14','2006-02-15 22:19:28'),(12577,466,1,13884,'5.99','2005-08-20 15:30:51','2006-02-15 22:19:28'),(12578,466,1,13988,'4.99','2005-08-20 19:21:28','2006-02-15 22:19:28'),(12579,466,2,14546,'2.99','2005-08-21 15:50:50','2006-02-15 22:19:28'),(12580,466,2,15230,'4.99','2005-08-22 17:31:41','2006-02-15 22:19:28'),(12581,466,1,16005,'7.99','2005-08-23 21:00:22','2006-02-15 22:19:28'),(12582,467,2,225,'4.99','2005-05-26 10:27:50','2006-02-15 22:19:28'),(12583,467,1,1737,'8.99','2005-06-16 15:59:44','2006-02-15 22:19:28'),(12584,467,2,2121,'4.99','2005-06-17 20:38:54','2006-02-15 22:19:28'),(12585,467,2,2870,'9.99','2005-06-20 00:17:46','2006-02-15 22:19:28'),(12586,467,1,3250,'6.99','2005-06-21 03:16:36','2006-02-15 22:19:28'),(12587,467,1,4216,'0.99','2005-07-07 12:01:34','2006-02-15 22:19:28'),(12588,467,2,4222,'4.99','2005-07-07 12:20:21','2006-02-15 22:19:28'),(12589,467,1,4259,'4.99','2005-07-07 14:22:18','2006-02-15 22:19:28'),(12590,467,2,5160,'4.99','2005-07-09 08:57:07','2006-02-15 22:19:28'),(12591,467,2,6271,'6.99','2005-07-11 16:01:35','2006-02-15 22:19:28'),(12592,467,2,7360,'2.99','2005-07-27 14:52:06','2006-02-15 22:19:28'),(12593,467,2,7573,'5.99','2005-07-27 22:46:20','2006-02-15 22:19:29'),(12594,467,1,7611,'2.99','2005-07-28 00:11:47','2006-02-15 22:19:29'),(12595,467,1,8010,'7.99','2005-07-28 15:26:20','2006-02-15 22:19:29'),(12596,467,2,8061,'6.99','2005-07-28 17:12:53','2006-02-15 22:19:29'),(12597,467,2,8224,'2.99','2005-07-28 23:59:02','2006-02-15 22:19:29'),(12598,467,2,8480,'8.99','2005-07-29 08:44:46','2006-02-15 22:19:29'),(12599,467,1,8767,'4.99','2005-07-29 19:42:33','2006-02-15 22:19:29'),(12600,467,2,10239,'0.99','2005-08-01 02:09:22','2006-02-15 22:19:29'),(12601,467,2,11332,'2.99','2005-08-02 16:52:57','2006-02-15 22:19:29'),(12602,467,1,11874,'4.99','2005-08-17 14:16:40','2006-02-15 22:19:29'),(12603,467,1,12266,'2.99','2005-08-18 04:22:31','2006-02-15 22:19:29'),(12604,467,1,12437,'9.99','2005-08-18 10:42:43','2006-02-15 22:19:29'),(12605,467,1,12641,'2.99','2005-08-18 18:18:08','2006-02-15 22:19:29'),(12606,467,1,14402,'2.99','2005-08-21 10:38:17','2006-02-15 22:19:29'),(12607,467,1,14451,'0.99','2005-08-21 12:21:44','2006-02-15 22:19:29'),(12608,467,1,14842,'3.99','2005-08-22 02:04:38','2006-02-15 22:19:29'),(12609,467,1,15032,'0.99','2005-08-22 09:14:09','2006-02-15 22:19:29'),(12610,467,2,15830,'2.99','2005-08-23 15:19:15','2006-02-15 22:19:30'),(12611,468,2,101,'6.99','2005-05-25 17:17:04','2006-02-15 22:19:30'),(12612,468,1,186,'4.99','2005-05-26 05:32:52','2006-02-15 22:19:30'),(12613,468,2,296,'6.99','2005-05-26 20:35:19','2006-02-15 22:19:30'),(12614,468,2,459,'0.99','2005-05-27 20:00:04','2006-02-15 22:19:30'),(12615,468,1,673,'0.99','2005-05-28 22:07:30','2006-02-15 22:19:30'),(12616,468,2,1229,'2.99','2005-06-15 03:53:13','2006-02-15 22:19:30'),(12617,468,1,1627,'8.99','2005-06-16 07:51:09','2006-02-15 22:19:30'),(12618,468,1,1821,'2.99','2005-06-16 21:42:49','2006-02-15 22:19:30'),(12619,468,1,1975,'2.99','2005-06-17 09:32:10','2006-02-15 22:19:30'),(12620,468,2,2462,'4.99','2005-06-18 20:00:15','2006-02-15 22:19:30'),(12621,468,1,2831,'0.99','2005-06-19 21:17:06','2006-02-15 22:19:30'),(12622,468,2,3724,'2.99','2005-07-06 11:12:48','2006-02-15 22:19:30'),(12623,468,1,3840,'5.99','2005-07-06 16:30:59','2006-02-15 22:19:30'),(12624,468,2,4184,'3.99','2005-07-07 10:30:08','2006-02-15 22:19:30'),(12625,468,2,4527,'3.99','2005-07-08 03:20:10','2006-02-15 22:19:30'),(12626,468,1,5285,'2.99','2005-07-09 15:10:44','2006-02-15 22:19:30'),(12627,468,1,6392,'0.99','2005-07-11 22:25:19','2006-02-15 22:19:31'),(12628,468,1,6581,'4.99','2005-07-12 06:26:49','2006-02-15 22:19:31'),(12629,468,2,6815,'5.99','2005-07-12 18:14:10','2006-02-15 22:19:31'),(12630,468,2,7292,'4.99','2005-07-27 12:34:14','2006-02-15 22:19:31'),(12631,468,1,7685,'0.99','2005-07-28 03:13:00','2006-02-15 22:19:31'),(12632,468,2,8423,'5.99','2005-07-29 07:02:57','2006-02-15 22:19:31'),(12633,468,2,8768,'6.99','2005-07-29 19:43:02','2006-02-15 22:19:31'),(12634,468,1,9598,'0.99','2005-07-31 03:30:41','2006-02-15 22:19:31'),(12635,468,1,9690,'6.99','2005-07-31 07:06:29','2006-02-15 22:19:31'),(12636,468,2,11257,'10.99','2005-08-02 13:45:05','2006-02-15 22:19:31'),(12637,468,2,11633,'4.99','2005-08-17 04:30:09','2006-02-15 22:19:31'),(12638,468,2,12026,'6.99','2005-08-17 20:00:10','2006-02-15 22:19:31'),(12639,468,2,13221,'3.99','2005-08-19 15:45:47','2006-02-15 22:19:31'),(12640,468,1,13417,'0.99','2005-08-19 22:51:39','2006-02-15 22:19:31'),(12641,468,2,14154,'4.99','2005-08-21 02:30:00','2006-02-15 22:19:31'),(12642,468,2,14210,'4.99','2005-08-21 04:28:02','2006-02-15 22:19:31'),(12643,468,1,14309,'9.99','2005-08-21 07:44:17','2006-02-15 22:19:31'),(12644,468,1,14313,'2.99','2005-08-21 07:49:53','2006-02-15 22:19:32'),(12645,468,1,14614,'9.99','2005-08-21 18:03:51','2006-02-15 22:19:32'),(12646,468,2,15435,'4.99','2005-08-23 00:28:19','2006-02-15 22:19:32'),(12647,468,1,15522,'1.99','2005-08-23 03:32:31','2006-02-15 22:19:32'),(12648,468,1,15836,'2.99','2005-08-23 15:29:17','2006-02-15 22:19:32'),(12649,468,2,16044,'0.99','2005-08-23 22:24:39','2006-02-15 22:19:32'),(12650,469,1,168,'0.99','2005-05-26 03:07:43','2006-02-15 22:19:32'),(12651,469,2,506,'7.99','2005-05-28 02:09:19','2006-02-15 22:19:32'),(12652,469,2,529,'4.99','2005-05-28 04:34:17','2006-02-15 22:19:32'),(12653,469,2,936,'1.99','2005-05-30 13:52:49','2006-02-15 22:19:32'),(12654,469,1,1119,'2.99','2005-05-31 16:34:27','2006-02-15 22:19:32'),(12655,469,2,1399,'0.99','2005-06-15 16:29:51','2006-02-15 22:19:32'),(12656,469,1,1680,'9.99','2005-06-16 11:17:22','2006-02-15 22:19:32'),(12657,469,2,3522,'4.99','2005-07-06 01:00:21','2006-02-15 22:19:32'),(12658,469,1,3526,'10.99','2005-07-06 01:03:29','2006-02-15 22:19:32'),(12659,469,2,4067,'3.99','2005-07-07 04:34:23','2006-02-15 22:19:32'),(12660,469,2,4123,'0.99','2005-07-07 07:16:19','2006-02-15 22:19:32'),(12661,469,1,5133,'0.99','2005-07-09 07:43:22','2006-02-15 22:19:33'),(12662,469,1,5299,'3.99','2005-07-09 15:38:09','2006-02-15 22:19:33'),(12663,469,2,5664,'6.99','2005-07-10 08:04:41','2006-02-15 22:19:33'),(12664,469,2,6022,'0.99','2005-07-11 02:15:53','2006-02-15 22:19:33'),(12665,469,2,6099,'4.99','2005-07-11 06:24:44','2006-02-15 22:19:33'),(12666,469,1,6797,'4.99','2005-07-12 16:47:06','2006-02-15 22:19:33'),(12667,469,1,6955,'3.99','2005-07-26 23:55:48','2006-02-15 22:19:33'),(12668,469,2,7062,'6.99','2005-07-27 03:52:01','2006-02-15 22:19:33'),(12669,469,2,7271,'6.99','2005-07-27 11:29:11','2006-02-15 22:19:33'),(12670,469,2,7756,'4.99','2005-07-28 06:22:52','2006-02-15 22:19:33'),(12671,469,1,7914,'4.99','2005-07-28 11:48:08','2006-02-15 22:19:33'),(12672,469,2,8791,'0.99','2005-07-29 20:53:23','2006-02-15 22:19:33'),(12673,469,1,9187,'2.99','2005-07-30 12:14:03','2006-02-15 22:19:33'),(12674,469,2,10075,'4.99','2005-07-31 19:58:42','2006-02-15 22:19:33'),(12675,469,1,10258,'4.99','2005-08-01 02:51:09','2006-02-15 22:19:33'),(12676,469,1,10316,'4.99','2005-08-01 04:34:57','2006-02-15 22:19:33'),(12677,469,1,10658,'2.99','2005-08-01 16:39:18','2006-02-15 22:19:33'),(12678,469,1,10741,'2.99','2005-08-01 19:52:52','2006-02-15 22:19:34'),(12679,469,2,11185,'0.99','2005-08-02 11:04:35','2006-02-15 22:19:34'),(12680,469,2,12035,'0.99','2005-08-17 20:18:06','2006-02-15 22:19:34'),(12681,469,1,12447,'4.99','2005-08-18 10:57:01','2006-02-15 22:19:34'),(12682,469,1,12633,'6.99','2005-08-18 17:55:38','2006-02-15 22:19:34'),(12683,469,1,13654,'4.99','2005-08-20 07:58:21','2006-02-15 22:19:34'),(12684,469,1,13763,'2.99','2005-08-20 11:37:56','2006-02-15 22:19:34'),(12685,469,2,14197,'7.99','2005-08-21 03:47:25','2006-02-15 22:19:34'),(12686,469,2,14661,'2.99','2005-08-21 19:44:21','2006-02-15 22:19:34'),(12687,469,1,15487,'4.99','2005-08-23 02:05:51','2006-02-15 22:19:34'),(12688,469,1,15561,'9.99','2005-08-23 05:02:31','2006-02-15 22:19:34'),(12689,469,1,15851,'2.99','2005-08-23 15:46:33','2006-02-15 22:19:34'),(12690,470,2,60,'2.99','2005-05-25 08:58:25','2006-02-15 22:19:34'),(12691,470,2,1256,'0.99','2005-06-15 06:13:57','2006-02-15 22:19:34'),(12692,470,1,1283,'0.99','2005-06-15 08:27:30','2006-02-15 22:19:34'),(12693,470,2,1594,'7.99','2005-06-16 05:15:12','2006-02-15 22:19:34'),(12694,470,1,3764,'5.99','2005-07-06 13:01:03','2006-02-15 22:19:34'),(12695,470,1,3841,'4.99','2005-07-06 16:34:00','2006-02-15 22:19:35'),(12696,470,1,3922,'4.99','2005-07-06 20:32:27','2006-02-15 22:19:35'),(12697,470,1,4373,'4.99','2005-07-07 20:10:59','2006-02-15 22:19:35'),(12698,470,2,4502,'6.99','2005-07-08 02:12:04','2006-02-15 22:19:35'),(12699,470,2,5082,'4.99','2005-07-09 05:28:38','2006-02-15 22:19:35'),(12700,470,1,6009,'3.99','2005-07-11 01:51:58','2006-02-15 22:19:35'),(12701,470,1,6198,'2.99','2005-07-11 12:12:17','2006-02-15 22:19:35'),(12702,470,2,6703,'4.99','2005-07-12 12:50:19','2006-02-15 22:19:35'),(12703,470,1,6927,'10.99','2005-07-26 22:56:00','2006-02-15 22:19:35'),(12704,470,1,6942,'5.99','2005-07-26 23:27:40','2006-02-15 22:19:35'),(12705,470,1,7663,'4.99','2005-07-28 02:19:48','2006-02-15 22:19:35'),(12706,470,2,8476,'8.99','2005-07-29 08:39:12','2006-02-15 22:19:35'),(12707,470,1,8890,'6.99','2005-07-30 00:42:06','2006-02-15 22:19:35'),(12708,470,1,9422,'5.99','2005-07-30 21:08:41','2006-02-15 22:19:35'),(12709,470,1,9687,'2.99','2005-07-31 06:52:54','2006-02-15 22:19:35'),(12710,470,1,10006,'4.99','2005-07-31 17:54:35','2006-02-15 22:19:35'),(12711,470,1,10236,'0.99','2005-08-01 02:05:34','2006-02-15 22:19:35'),(12712,470,2,10944,'4.99','2005-08-02 03:20:03','2006-02-15 22:19:36'),(12713,470,2,11397,'1.99','2005-08-02 18:53:14','2006-02-15 22:19:36'),(12714,470,2,11711,'2.99','2005-08-17 07:30:55','2006-02-15 22:19:36'),(12715,470,1,11742,'0.99','2005-08-17 08:48:43','2006-02-15 22:19:36'),(12716,470,2,12177,'3.99','2005-08-18 01:15:47','2006-02-15 22:19:36'),(12717,470,2,12423,'8.99','2005-08-18 10:14:52','2006-02-15 22:19:36'),(12718,470,1,12753,'10.99','2005-08-18 22:37:39','2006-02-15 22:19:36'),(12719,470,2,13585,'4.99','2005-08-20 05:32:23','2006-02-15 22:19:36'),(12720,470,1,13592,'4.99','2005-08-20 05:50:35','2006-02-15 22:19:36'),(12721,470,2,14405,'4.99','2005-08-21 10:45:01','2006-02-15 22:19:36'),(12722,471,1,616,'2.99','2005-05-28 15:45:39','2006-02-15 22:19:36'),(12723,471,1,1447,'4.99','2005-06-15 19:13:51','2006-02-15 22:19:36'),(12724,471,2,1449,'2.99','2005-06-15 19:19:16','2006-02-15 22:19:36'),(12725,471,2,2165,'2.99','2005-06-17 23:51:10','2006-02-15 22:19:36'),(12726,471,2,2350,'4.99','2005-06-18 12:25:29','2006-02-15 22:19:36'),(12727,471,2,3073,'4.99','2005-06-20 14:33:26','2006-02-15 22:19:36'),(12728,471,1,3917,'0.99','2005-07-06 20:19:29','2006-02-15 22:19:36'),(12729,471,1,4020,'2.99','2005-07-07 01:42:22','2006-02-15 22:19:37'),(12730,471,2,6293,'2.99','2005-07-11 17:24:57','2006-02-15 22:19:37'),(12731,471,1,6336,'8.99','2005-07-11 19:30:13','2006-02-15 22:19:37'),(12732,471,1,6912,'5.99','2005-07-12 22:17:16','2006-02-15 22:19:37'),(12733,471,1,8199,'0.99','2005-07-28 23:10:25','2006-02-15 22:19:37'),(12734,471,1,9077,'2.99','2005-07-30 08:00:19','2006-02-15 22:19:37'),(12735,471,1,9502,'0.99','2005-07-31 00:02:10','2006-02-15 22:19:37'),(12736,471,2,9560,'2.99','2005-07-31 02:17:27','2006-02-15 22:19:37'),(12737,471,1,10430,'2.99','2005-08-01 08:37:06','2006-02-15 22:19:37'),(12738,471,2,10828,'3.99','2005-08-01 23:16:10','2006-02-15 22:19:37'),(12739,471,2,11601,'4.99','2005-08-17 03:14:47','2006-02-15 22:19:37'),(12740,471,1,12271,'4.99','2005-08-18 04:33:11','2006-02-15 22:19:37'),(12741,471,1,13661,'5.99','2005-08-20 08:05:59','2006-02-15 22:19:37'),(12742,471,1,14085,'7.99','2005-08-20 23:46:24','2006-02-15 22:19:37'),(12743,471,1,14094,'4.99','2005-08-21 00:21:35','2006-02-15 22:19:37'),(12744,471,1,14317,'5.99','2005-08-21 08:00:40','2006-02-15 22:19:37'),(12745,471,2,14538,'2.99','2005-08-21 15:28:15','2006-02-15 22:19:37'),(12746,471,2,14942,'7.99','2005-08-22 05:58:27','2006-02-15 22:19:38'),(12747,471,2,15184,'0.99','2005-08-22 15:51:12','2006-02-15 22:19:38'),(12748,471,1,15654,'1.99','2005-08-23 08:34:53','2006-02-15 22:19:38'),(12749,472,2,142,'0.99','2005-05-25 23:43:47','2006-02-15 22:19:38'),(12750,472,2,249,'2.99','2005-05-26 14:19:09','2006-02-15 22:19:38'),(12751,472,2,800,'0.99','2005-05-29 17:28:12','2006-02-15 22:19:38'),(12752,472,2,994,'4.99','2005-05-30 23:55:36','2006-02-15 22:19:38'),(12753,472,1,1389,'4.99','2005-06-15 15:49:01','2006-02-15 22:19:38'),(12754,472,2,1776,'6.99','2005-06-16 18:46:58','2006-02-15 22:19:38'),(12755,472,1,2538,'5.99','2005-06-19 01:56:59','2006-02-15 22:19:38'),(12756,472,1,2974,'0.99','2005-06-20 08:00:24','2006-02-15 22:19:38'),(12757,472,1,2991,'4.99','2005-06-20 09:10:43','2006-02-15 22:19:38'),(12758,472,1,3254,'0.99','2005-06-21 03:27:10','2006-02-15 22:19:38'),(12759,472,2,3815,'6.99','2005-07-06 15:26:36','2006-02-15 22:19:38'),(12760,472,2,5318,'2.99','2005-07-09 16:11:33','2006-02-15 22:19:38'),(12761,472,1,5612,'3.99','2005-07-10 05:15:12','2006-02-15 22:19:38'),(12762,472,1,6119,'6.99','2005-07-11 07:44:46','2006-02-15 22:19:38'),(12763,472,2,6274,'5.99','2005-07-11 16:09:42','2006-02-15 22:19:38'),(12764,472,1,6308,'5.99','2005-07-11 18:08:41','2006-02-15 22:19:39'),(12765,472,1,6584,'2.99','2005-07-12 06:43:36','2006-02-15 22:19:39'),(12766,472,2,8929,'5.99','2005-07-30 02:28:22','2006-02-15 22:19:39'),(12767,472,2,9926,'6.99','2005-07-31 15:11:51','2006-02-15 22:19:39'),(12768,472,1,10282,'6.99','2005-08-01 03:29:10','2006-02-15 22:19:39'),(12769,472,1,10627,'0.99','2005-08-01 15:33:03','2006-02-15 22:19:39'),(12770,472,1,11911,'6.99','2005-08-17 15:51:35','2006-02-15 22:19:39'),(12771,472,2,12763,'4.99','2005-08-18 23:07:01','2006-02-15 22:19:39'),(12772,472,2,13188,'8.99','2005-08-19 14:27:03','2006-02-15 22:19:39'),(12773,472,1,14209,'4.99','2005-08-21 04:17:56','2006-02-15 22:19:39'),(12774,472,2,14596,'4.99','2005-08-21 17:38:37','2006-02-15 22:19:39'),(12775,472,1,14597,'4.99','2005-08-21 17:39:41','2006-02-15 22:19:39'),(12776,472,2,15185,'5.99','2005-08-22 15:52:50','2006-02-15 22:19:39'),(12777,472,2,15278,'2.99','2005-08-22 19:06:47','2006-02-15 22:19:39'),(12778,472,2,14928,'4.99','2006-02-14 15:16:03','2006-02-15 22:19:39'),(12779,473,1,348,'4.99','2005-05-27 04:50:56','2006-02-15 22:19:39'),(12780,473,2,942,'2.99','2005-05-30 15:05:47','2006-02-15 22:19:39'),(12781,473,2,973,'3.99','2005-05-30 20:27:45','2006-02-15 22:19:40'),(12782,473,2,1748,'0.99','2005-06-16 16:54:03','2006-02-15 22:19:40'),(12783,473,1,2125,'2.99','2005-06-17 20:53:42','2006-02-15 22:19:40'),(12784,473,2,2553,'4.99','2005-06-19 03:04:59','2006-02-15 22:19:40'),(12785,473,2,2748,'4.99','2005-06-19 16:22:26','2006-02-15 22:19:40'),(12786,473,1,3971,'0.99','2005-07-06 22:50:40','2006-02-15 22:19:40'),(12787,473,2,4006,'4.99','2005-07-07 00:25:29','2006-02-15 22:19:40'),(12788,473,2,4625,'4.99','2005-07-08 08:14:26','2006-02-15 22:19:40'),(12789,473,1,4873,'0.99','2005-07-08 19:23:32','2006-02-15 22:19:40'),(12790,473,2,5447,'5.99','2005-07-09 22:09:28','2006-02-15 22:19:40'),(12791,473,1,6446,'2.99','2005-07-12 00:44:08','2006-02-15 22:19:40'),(12792,473,2,6890,'4.99','2005-07-12 21:03:03','2006-02-15 22:19:40'),(12793,473,1,7111,'4.99','2005-07-27 05:38:16','2006-02-15 22:19:40'),(12794,473,1,7215,'2.99','2005-07-27 09:24:00','2006-02-15 22:19:40'),(12795,473,2,7918,'1.99','2005-07-28 11:58:53','2006-02-15 22:19:40'),(12796,473,2,7928,'7.99','2005-07-28 12:15:51','2006-02-15 22:19:40'),(12797,473,1,9025,'4.99','2005-07-30 05:50:08','2006-02-15 22:19:40'),(12798,473,2,9120,'8.99','2005-07-30 09:26:08','2006-02-15 22:19:41'),(12799,473,1,10867,'2.99','2005-08-02 00:24:15','2006-02-15 22:19:41'),(12800,473,2,11006,'2.99','2005-08-02 05:05:52','2006-02-15 22:19:41'),(12801,473,1,11216,'4.99','2005-08-02 12:23:43','2006-02-15 22:19:41'),(12802,473,1,11336,'0.99','2005-08-02 16:58:56','2006-02-15 22:19:41'),(12803,473,2,11421,'7.99','2005-08-02 19:51:53','2006-02-15 22:19:41'),(12804,473,1,11741,'0.99','2005-08-17 08:48:39','2006-02-15 22:19:41'),(12805,473,2,13984,'4.99','2005-08-20 19:12:30','2006-02-15 22:19:41'),(12806,473,2,14202,'0.99','2005-08-21 03:51:52','2006-02-15 22:19:41'),(12807,473,2,14550,'0.99','2005-08-21 15:56:39','2006-02-15 22:19:41'),(12808,473,2,14658,'4.99','2005-08-21 19:41:50','2006-02-15 22:19:41'),(12809,473,2,14757,'4.99','2005-08-21 23:23:37','2006-02-15 22:19:41'),(12810,473,1,15118,'4.99','2005-08-22 12:38:37','2006-02-15 22:19:41'),(12811,473,2,15400,'2.99','2005-08-22 23:13:03','2006-02-15 22:19:41'),(12812,473,2,16024,'4.99','2005-08-23 21:46:47','2006-02-15 22:19:41'),(12813,474,1,816,'7.99','2005-05-29 20:26:39','2006-02-15 22:19:41'),(12814,474,1,1758,'8.99','2005-06-16 17:39:39','2006-02-15 22:19:41'),(12815,474,2,2944,'7.99','2005-06-20 05:43:42','2006-02-15 22:19:42'),(12816,474,2,3787,'4.99','2005-07-06 14:02:01','2006-02-15 22:19:42'),(12817,474,2,4048,'1.99','2005-07-07 03:30:52','2006-02-15 22:19:42'),(12818,474,1,4481,'2.99','2005-07-08 00:58:15','2006-02-15 22:19:42'),(12819,474,1,4533,'0.99','2005-07-08 03:32:01','2006-02-15 22:19:42'),(12820,474,2,4785,'0.99','2005-07-08 16:10:19','2006-02-15 22:19:42'),(12821,474,1,4809,'2.99','2005-07-08 17:03:22','2006-02-15 22:19:42'),(12822,474,2,4886,'4.99','2005-07-08 19:53:22','2006-02-15 22:19:42'),(12823,474,1,5251,'0.99','2005-07-09 13:36:10','2006-02-15 22:19:42'),(12824,474,1,6499,'7.99','2005-07-12 03:11:18','2006-02-15 22:19:42'),(12825,474,1,8991,'2.99','2005-07-30 04:42:54','2006-02-15 22:19:42'),(12826,474,2,10376,'5.99','2005-08-01 06:27:13','2006-02-15 22:19:42'),(12827,474,2,11117,'0.99','2005-08-02 08:36:03','2006-02-15 22:19:42'),(12828,474,1,11489,'2.99','2005-08-02 22:35:28','2006-02-15 22:19:42'),(12829,474,2,11537,'2.99','2005-08-17 00:41:08','2006-02-15 22:19:42'),(12830,474,1,12083,'2.99','2005-08-17 22:13:37','2006-02-15 22:19:42'),(12831,474,1,12236,'4.99','2005-08-18 03:19:29','2006-02-15 22:19:43'),(12832,474,1,12440,'0.99','2005-08-18 10:47:35','2006-02-15 22:19:43'),(12833,474,2,12597,'2.99','2005-08-18 16:34:02','2006-02-15 22:19:43'),(12834,474,1,12702,'4.99','2005-08-18 20:30:33','2006-02-15 22:19:43'),(12835,474,1,14728,'0.99','2005-08-21 22:15:36','2006-02-15 22:19:43'),(12836,474,2,15046,'4.99','2005-08-22 09:54:54','2006-02-15 22:19:43'),(12837,474,1,15558,'6.99','2005-08-23 04:52:22','2006-02-15 22:19:43'),(12838,474,1,11909,'0.99','2006-02-14 15:16:03','2006-02-15 22:19:43'),(12839,475,2,417,'4.99','2005-05-27 15:07:27','2006-02-15 22:19:43'),(12840,475,1,702,'0.99','2005-05-29 02:27:30','2006-02-15 22:19:43'),(12841,475,2,3980,'5.99','2005-07-06 23:11:11','2006-02-15 22:19:43'),(12842,475,1,4013,'6.99','2005-07-07 00:58:00','2006-02-15 22:19:43'),(12843,475,1,4617,'4.99','2005-07-08 07:55:08','2006-02-15 22:19:43'),(12844,475,2,5379,'0.99','2005-07-09 19:08:03','2006-02-15 22:19:43'),(12845,475,1,5407,'0.99','2005-07-09 20:16:07','2006-02-15 22:19:43'),(12846,475,2,5415,'9.99','2005-07-09 20:30:03','2006-02-15 22:19:43'),(12847,475,2,5469,'2.99','2005-07-09 23:08:07','2006-02-15 22:19:43'),(12848,475,1,6224,'4.99','2005-07-11 13:42:18','2006-02-15 22:19:44'),(12849,475,1,7641,'7.99','2005-07-28 01:15:45','2006-02-15 22:19:44'),(12850,475,1,7775,'1.99','2005-07-28 07:04:36','2006-02-15 22:19:44'),(12851,475,2,8207,'5.99','2005-07-28 23:26:31','2006-02-15 22:19:44'),(12852,475,1,9183,'7.99','2005-07-30 12:09:56','2006-02-15 22:19:44'),(12853,475,1,9647,'2.99','2005-07-31 05:45:15','2006-02-15 22:19:44'),(12854,475,1,9737,'2.99','2005-07-31 08:59:18','2006-02-15 22:19:44'),(12855,475,2,10162,'3.99','2005-07-31 23:11:01','2006-02-15 22:19:44'),(12856,475,1,10357,'0.99','2005-08-01 05:49:49','2006-02-15 22:19:44'),(12857,475,1,10633,'3.99','2005-08-01 15:37:17','2006-02-15 22:19:44'),(12858,475,1,11293,'5.99','2005-08-02 15:00:43','2006-02-15 22:19:44'),(12859,475,1,11770,'4.99','2005-08-17 10:05:05','2006-02-15 22:19:44'),(12860,475,2,14303,'2.99','2005-08-21 07:22:43','2006-02-15 22:19:44'),(12861,475,1,15097,'1.99','2005-08-22 11:43:42','2006-02-15 22:19:44'),(12862,475,1,15288,'4.99','2005-08-22 19:23:58','2006-02-15 22:19:44'),(12863,476,1,489,'4.99','2005-05-28 00:09:12','2006-02-15 22:19:44'),(12864,476,1,771,'2.99','2005-05-29 12:59:14','2006-02-15 22:19:44'),(12865,476,1,1682,'3.99','2005-06-16 11:54:25','2006-02-15 22:19:44'),(12866,476,1,2080,'0.99','2005-06-17 16:59:40','2006-02-15 22:19:45'),(12867,476,2,2508,'4.99','2005-06-18 23:43:58','2006-02-15 22:19:45'),(12868,476,2,3448,'2.99','2005-06-21 20:59:20','2006-02-15 22:19:45'),(12869,476,2,3477,'7.99','2005-07-05 23:05:17','2006-02-15 22:19:45'),(12870,476,1,4010,'5.99','2005-07-07 00:47:00','2006-02-15 22:19:45'),(12871,476,2,4171,'4.99','2005-07-07 09:49:04','2006-02-15 22:19:45'),(12872,476,2,5644,'4.99','2005-07-10 06:57:44','2006-02-15 22:19:45'),(12873,476,1,6151,'2.99','2005-07-11 09:25:17','2006-02-15 22:19:45'),(12874,476,1,7461,'0.99','2005-07-27 18:45:15','2006-02-15 22:19:45'),(12875,476,1,8146,'0.99','2005-07-28 20:37:36','2006-02-15 22:19:45'),(12876,476,2,9325,'6.99','2005-07-30 17:29:19','2006-02-15 22:19:45'),(12877,476,2,9743,'3.99','2005-07-31 09:12:42','2006-02-15 22:19:45'),(12878,476,1,10346,'4.99','2005-08-01 05:19:23','2006-02-15 22:19:45'),(12879,476,1,10617,'9.99','2005-08-01 15:05:52','2006-02-15 22:19:45'),(12880,476,1,10826,'6.99','2005-08-01 23:07:56','2006-02-15 22:19:45'),(12881,476,1,12616,'4.99','2005-08-18 17:22:41','2006-02-15 22:19:45'),(12882,476,2,12709,'5.99','2005-08-18 20:59:51','2006-02-15 22:19:46'),(12883,476,1,15413,'0.99','2005-08-22 23:38:01','2006-02-15 22:19:46'),(12884,476,1,13941,'0.99','2006-02-14 15:16:03','2006-02-15 22:19:46'),(12885,477,1,882,'2.99','2005-05-30 06:16:06','2006-02-15 22:19:46'),(12886,477,1,1714,'6.99','2005-06-16 14:29:59','2006-02-15 22:19:46'),(12887,477,1,2187,'2.99','2005-06-18 01:17:27','2006-02-15 22:19:46'),(12888,477,1,2306,'10.99','2005-06-18 08:33:23','2006-02-15 22:19:46'),(12889,477,2,2676,'4.99','2005-06-19 11:54:57','2006-02-15 22:19:46'),(12890,477,2,4237,'5.99','2005-07-07 13:16:55','2006-02-15 22:19:46'),(12891,477,1,4283,'2.99','2005-07-07 15:29:35','2006-02-15 22:19:46'),(12892,477,2,4956,'7.99','2005-07-08 23:17:10','2006-02-15 22:19:46'),(12893,477,2,6265,'2.99','2005-07-11 15:43:51','2006-02-15 22:19:46'),(12894,477,2,7302,'2.99','2005-07-27 12:52:13','2006-02-15 22:19:46'),(12895,477,2,7904,'10.99','2005-07-28 11:25:39','2006-02-15 22:19:46'),(12896,477,1,8515,'6.99','2005-07-29 09:55:20','2006-02-15 22:19:46'),(12897,477,1,8821,'5.99','2005-07-29 22:18:12','2006-02-15 22:19:46'),(12898,477,2,8857,'2.99','2005-07-29 23:44:22','2006-02-15 22:19:46'),(12899,477,2,9446,'8.99','2005-07-30 21:53:01','2006-02-15 22:19:46'),(12900,477,1,10500,'4.99','2005-08-01 11:01:01','2006-02-15 22:19:47'),(12901,477,2,10912,'0.99','2005-08-02 02:00:03','2006-02-15 22:19:47'),(12902,477,2,12420,'4.99','2005-08-18 10:01:50','2006-02-15 22:19:47'),(12903,477,1,13002,'0.99','2005-08-19 07:37:58','2006-02-15 22:19:47'),(12904,477,2,14552,'3.99','2005-08-21 15:59:27','2006-02-15 22:19:47'),(12905,477,2,15091,'2.99','2005-08-22 11:34:43','2006-02-15 22:19:47'),(12906,477,1,15929,'2.99','2005-08-23 18:23:30','2006-02-15 22:19:47'),(12907,478,1,1708,'0.99','2005-06-16 14:08:44','2006-02-15 22:19:47'),(12908,478,2,2358,'4.99','2005-06-18 13:00:51','2006-02-15 22:19:47'),(12909,478,1,2529,'6.99','2005-06-19 01:18:27','2006-02-15 22:19:47'),(12910,478,2,2616,'8.99','2005-06-19 07:33:00','2006-02-15 22:19:47'),(12911,478,2,2765,'4.99','2005-06-19 17:34:39','2006-02-15 22:19:47'),(12912,478,2,3259,'4.99','2005-06-21 03:57:15','2006-02-15 22:19:47'),(12913,478,1,3691,'4.99','2005-07-06 09:46:12','2006-02-15 22:19:47'),(12914,478,1,5837,'4.99','2005-07-10 16:57:50','2006-02-15 22:19:47'),(12915,478,1,7522,'2.99','2005-07-27 21:11:03','2006-02-15 22:19:47'),(12916,478,2,8488,'4.99','2005-07-29 08:57:38','2006-02-15 22:19:48'),(12917,478,1,9665,'4.99','2005-07-31 06:17:33','2006-02-15 22:19:48'),(12918,478,2,10016,'4.99','2005-07-31 18:13:06','2006-02-15 22:19:48'),(12919,478,2,10127,'0.99','2005-07-31 21:39:48','2006-02-15 22:19:48'),(12920,478,1,11906,'2.99','2005-08-17 15:40:46','2006-02-15 22:19:48'),(12921,478,2,13162,'2.99','2005-08-19 13:28:26','2006-02-15 22:19:48'),(12922,478,2,13507,'4.99','2005-08-20 02:10:27','2006-02-15 22:19:48'),(12923,478,1,15027,'4.99','2005-08-22 09:03:04','2006-02-15 22:19:48'),(12924,478,2,15188,'4.99','2005-08-22 15:55:48','2006-02-15 22:19:48'),(12925,478,1,15724,'4.99','2005-08-23 11:22:09','2006-02-15 22:19:48'),(12926,479,2,132,'3.99','2005-05-25 21:46:54','2006-02-15 22:19:48'),(12927,479,1,709,'7.99','2005-05-29 03:48:01','2006-02-15 22:19:48'),(12928,479,1,1902,'2.99','2005-06-17 04:35:52','2006-02-15 22:19:48'),(12929,479,2,1947,'3.99','2005-06-17 08:02:20','2006-02-15 22:19:48'),(12930,479,2,1987,'2.99','2005-06-17 10:40:36','2006-02-15 22:19:48'),(12931,479,2,2071,'3.99','2005-06-17 16:33:17','2006-02-15 22:19:48'),(12932,479,2,2376,'2.99','2005-06-18 14:55:30','2006-02-15 22:19:48'),(12933,479,2,2764,'6.99','2005-06-19 17:27:25','2006-02-15 22:19:49'),(12934,479,2,3537,'6.99','2005-07-06 01:36:53','2006-02-15 22:19:49'),(12935,479,1,3798,'0.99','2005-07-06 14:57:53','2006-02-15 22:19:49'),(12936,479,2,4183,'8.99','2005-07-07 10:28:33','2006-02-15 22:19:49'),(12937,479,1,5481,'0.99','2005-07-09 23:51:57','2006-02-15 22:19:49'),(12938,479,1,5751,'4.99','2005-07-10 12:25:11','2006-02-15 22:19:49'),(12939,479,2,6084,'7.99','2005-07-11 05:16:20','2006-02-15 22:19:49'),(12940,479,1,6421,'1.99','2005-07-11 23:45:25','2006-02-15 22:19:49'),(12941,479,1,6597,'0.99','2005-07-12 07:37:02','2006-02-15 22:19:49'),(12942,479,2,6849,'8.99','2005-07-12 19:29:19','2006-02-15 22:19:49'),(12943,479,1,7060,'7.99','2005-07-27 03:51:04','2006-02-15 22:19:49'),(12944,479,2,7893,'2.99','2005-07-28 10:49:27','2006-02-15 22:19:49'),(12945,479,1,9347,'5.99','2005-07-30 18:16:03','2006-02-15 22:19:49'),(12946,479,1,9439,'8.99','2005-07-30 21:38:12','2006-02-15 22:19:49'),(12947,479,2,9697,'2.99','2005-07-31 07:23:11','2006-02-15 22:19:49'),(12948,479,2,9754,'7.99','2005-07-31 09:23:43','2006-02-15 22:19:49'),(12949,479,2,10303,'4.99','2005-08-01 04:13:33','2006-02-15 22:19:49'),(12950,479,2,11109,'4.99','2005-08-02 08:20:29','2006-02-15 22:19:50'),(12951,479,2,11584,'1.99','2005-08-17 02:13:26','2006-02-15 22:19:50'),(12952,479,2,11835,'4.99','2005-08-17 13:03:13','2006-02-15 22:19:50'),(12953,479,2,12401,'0.99','2005-08-18 09:20:51','2006-02-15 22:19:50'),(12954,479,2,13078,'8.99','2005-08-19 10:16:43','2006-02-15 22:19:50'),(12955,479,1,13974,'2.99','2005-08-20 18:54:59','2006-02-15 22:19:50'),(12956,479,1,12101,'0.99','2006-02-14 15:16:03','2006-02-15 22:19:50'),(12957,480,1,518,'0.99','2005-05-28 03:18:02','2006-02-15 22:19:50'),(12958,480,1,720,'6.99','2005-05-29 05:17:30','2006-02-15 22:19:50'),(12959,480,2,822,'9.99','2005-05-29 21:36:00','2006-02-15 22:19:50'),(12960,480,1,1353,'0.99','2005-06-15 13:13:36','2006-02-15 22:19:50'),(12961,480,1,1733,'0.99','2005-06-16 15:37:07','2006-02-15 22:19:50'),(12962,480,2,3507,'7.99','2005-07-06 00:23:43','2006-02-15 22:19:50'),(12963,480,2,5633,'2.99','2005-07-10 06:22:24','2006-02-15 22:19:50'),(12964,480,1,6191,'2.99','2005-07-11 11:37:52','2006-02-15 22:19:50'),(12965,480,1,7257,'2.99','2005-07-27 11:04:17','2006-02-15 22:19:50'),(12966,480,2,7910,'9.99','2005-07-28 11:44:56','2006-02-15 22:19:50'),(12967,480,2,8847,'4.99','2005-07-29 23:13:41','2006-02-15 22:19:51'),(12968,480,1,8967,'6.99','2005-07-30 03:56:55','2006-02-15 22:19:51'),(12969,480,2,9332,'4.99','2005-07-30 17:53:39','2006-02-15 22:19:51'),(12970,480,2,10808,'1.99','2005-08-01 22:37:11','2006-02-15 22:19:51'),(12971,480,2,11017,'0.99','2005-08-02 05:19:51','2006-02-15 22:19:51'),(12972,480,1,11369,'5.99','2005-08-02 18:04:41','2006-02-15 22:19:51'),(12973,480,2,12905,'4.99','2005-08-19 04:13:37','2006-02-15 22:19:51'),(12974,480,2,13092,'0.99','2005-08-19 10:41:09','2006-02-15 22:19:51'),(12975,480,2,13131,'9.99','2005-08-19 12:08:13','2006-02-15 22:19:51'),(12976,480,1,13831,'4.99','2005-08-20 13:59:35','2006-02-15 22:19:51'),(12977,480,2,15363,'2.99','2005-08-22 21:41:40','2006-02-15 22:19:51'),(12978,480,2,15579,'4.99','2005-08-23 05:38:41','2006-02-15 22:19:51'),(12979,481,2,1109,'5.99','2005-05-31 15:12:15','2006-02-15 22:19:51'),(12980,481,2,1168,'2.99','2005-06-14 23:35:09','2006-02-15 22:19:51'),(12981,481,2,2296,'4.99','2005-06-18 08:10:42','2006-02-15 22:19:51'),(12982,481,2,3285,'4.99','2005-06-21 06:30:13','2006-02-15 22:19:51'),(12983,481,2,3293,'0.99','2005-06-21 06:59:33','2006-02-15 22:19:51'),(12984,481,1,3863,'0.99','2005-07-06 17:40:18','2006-02-15 22:19:52'),(12985,481,1,4473,'2.99','2005-07-08 00:22:10','2006-02-15 22:19:52'),(12986,481,1,4505,'1.99','2005-07-08 02:20:04','2006-02-15 22:19:52'),(12987,481,1,4532,'0.99','2005-07-08 03:30:39','2006-02-15 22:19:52'),(12988,481,1,4668,'10.99','2005-07-08 10:11:45','2006-02-15 22:19:52'),(12989,481,2,5711,'2.99','2005-07-10 10:37:20','2006-02-15 22:19:52'),(12990,481,1,6044,'0.99','2005-07-11 03:18:39','2006-02-15 22:19:52'),(12991,481,1,7228,'4.99','2005-07-27 09:55:33','2006-02-15 22:19:52'),(12992,481,2,7836,'7.99','2005-07-28 08:55:27','2006-02-15 22:19:52'),(12993,481,1,8243,'6.99','2005-07-29 00:35:33','2006-02-15 22:19:52'),(12994,481,2,8271,'6.99','2005-07-29 01:27:44','2006-02-15 22:19:52'),(12995,481,1,9481,'4.99','2005-07-30 23:26:05','2006-02-15 22:19:52'),(12996,481,1,10018,'3.99','2005-07-31 18:15:14','2006-02-15 22:19:52'),(12997,481,2,11207,'0.99','2005-08-02 12:01:30','2006-02-15 22:19:52'),(12998,481,2,11387,'2.99','2005-08-02 18:32:38','2006-02-15 22:19:52'),(12999,481,1,11752,'4.99','2005-08-17 09:10:55','2006-02-15 22:19:52'),(13000,481,1,11885,'4.99','2005-08-17 14:53:53','2006-02-15 22:19:53'),(13001,481,2,12160,'2.99','2005-08-18 00:37:59','2006-02-15 22:19:53'),(13002,481,1,12981,'4.99','2005-08-19 07:04:00','2006-02-15 22:19:53'),(13003,481,2,13497,'2.99','2005-08-20 01:46:38','2006-02-15 22:19:53'),(13004,481,2,13878,'4.99','2005-08-20 15:17:38','2006-02-15 22:19:53'),(13005,481,1,13990,'1.99','2005-08-20 19:29:23','2006-02-15 22:19:53'),(13006,481,2,14280,'4.99','2005-08-21 06:39:58','2006-02-15 22:19:53'),(13007,481,2,14584,'0.99','2005-08-21 17:15:33','2006-02-15 22:19:53'),(13008,482,1,259,'8.99','2005-05-26 15:32:46','2006-02-15 22:19:53'),(13009,482,2,680,'2.99','2005-05-28 23:27:26','2006-02-15 22:19:53'),(13010,482,2,879,'0.99','2005-05-30 05:49:42','2006-02-15 22:19:53'),(13011,482,2,3048,'2.99','2005-06-20 12:49:55','2006-02-15 22:19:53'),(13012,482,2,3255,'0.99','2005-06-21 03:39:52','2006-02-15 22:19:53'),(13013,482,2,3650,'2.99','2005-07-06 07:34:15','2006-02-15 22:19:53'),(13014,482,1,4768,'4.99','2005-07-08 15:28:20','2006-02-15 22:19:53'),(13015,482,1,5334,'4.99','2005-07-09 17:00:13','2006-02-15 22:19:53'),(13016,482,1,5466,'4.99','2005-07-09 23:03:21','2006-02-15 22:19:53'),(13017,482,2,5810,'8.99','2005-07-10 15:22:04','2006-02-15 22:19:54'),(13018,482,2,5880,'2.99','2005-07-10 19:14:58','2006-02-15 22:19:54'),(13019,482,1,6355,'8.99','2005-07-11 20:56:29','2006-02-15 22:19:54'),(13020,482,2,6447,'7.99','2005-07-12 00:45:17','2006-02-15 22:19:54'),(13021,482,2,6844,'5.99','2005-07-12 19:14:53','2006-02-15 22:19:54'),(13022,482,2,7840,'6.99','2005-07-28 09:03:02','2006-02-15 22:19:54'),(13023,482,2,8584,'2.99','2005-07-29 12:07:53','2006-02-15 22:19:54'),(13024,482,2,9874,'6.99','2005-07-31 13:32:31','2006-02-15 22:19:54'),(13025,482,2,10824,'4.99','2005-08-01 23:00:22','2006-02-15 22:19:54'),(13026,482,2,10839,'2.99','2005-08-01 23:37:39','2006-02-15 22:19:54'),(13027,482,2,11498,'6.99','2005-08-16 22:52:54','2006-02-15 22:19:54'),(13028,482,1,13174,'4.99','2005-08-19 13:52:50','2006-02-15 22:19:54'),(13029,482,2,14383,'4.99','2005-08-21 10:02:05','2006-02-15 22:19:54'),(13030,482,2,14732,'0.99','2005-08-21 22:22:29','2006-02-15 22:19:54'),(13031,482,2,14891,'6.99','2005-08-22 04:11:02','2006-02-15 22:19:54'),(13032,482,2,14995,'4.99','2005-08-22 07:52:31','2006-02-15 22:19:54'),(13033,482,1,15391,'0.99','2005-08-22 23:01:45','2006-02-15 22:19:54'),(13034,482,1,15849,'5.99','2005-08-23 15:41:20','2006-02-15 22:19:55'),(13035,482,2,15865,'2.99','2005-08-23 16:18:25','2006-02-15 22:19:55'),(13036,482,1,15879,'3.99','2005-08-23 16:42:53','2006-02-15 22:19:55'),(13037,483,2,742,'6.99','2005-05-29 08:36:30','2006-02-15 22:19:55'),(13038,483,1,2855,'4.99','2005-06-19 23:11:49','2006-02-15 22:19:55'),(13039,483,2,2867,'0.99','2005-06-20 00:08:38','2006-02-15 22:19:55'),(13040,483,1,3380,'8.99','2005-06-21 13:58:46','2006-02-15 22:19:55'),(13041,483,2,3559,'4.99','2005-07-06 02:49:42','2006-02-15 22:19:55'),(13042,483,1,5823,'4.99','2005-07-10 16:19:52','2006-02-15 22:19:55'),(13043,483,2,6478,'4.99','2005-07-12 01:41:44','2006-02-15 22:19:55'),(13044,483,2,6899,'9.99','2005-07-12 21:44:16','2006-02-15 22:19:55'),(13045,483,2,7137,'0.99','2005-07-27 06:40:41','2006-02-15 22:19:55'),(13046,483,1,7381,'4.99','2005-07-27 15:40:26','2006-02-15 22:19:55'),(13047,483,1,7669,'4.99','2005-07-28 02:44:07','2006-02-15 22:19:55'),(13048,483,1,8057,'7.99','2005-07-28 17:07:13','2006-02-15 22:19:55'),(13049,483,1,8356,'4.99','2005-07-29 04:58:56','2006-02-15 22:19:55'),(13050,483,2,10677,'0.99','2005-08-01 17:24:35','2006-02-15 22:19:55'),(13051,483,1,10953,'6.99','2005-08-02 03:28:38','2006-02-15 22:19:56'),(13052,483,2,12331,'3.99','2005-08-18 06:47:19','2006-02-15 22:19:56'),(13053,483,2,12695,'2.99','2005-08-18 20:11:35','2006-02-15 22:19:56'),(13054,483,2,12875,'2.99','2005-08-19 03:10:21','2006-02-15 22:19:56'),(13055,484,2,35,'4.99','2005-05-25 04:24:36','2006-02-15 22:19:56'),(13056,484,2,668,'2.99','2005-05-28 21:54:45','2006-02-15 22:19:56'),(13057,484,2,727,'2.99','2005-05-29 06:08:15','2006-02-15 22:19:56'),(13058,484,1,1351,'3.99','2005-06-15 12:51:03','2006-02-15 22:19:56'),(13059,484,2,1643,'3.99','2005-06-16 08:55:35','2006-02-15 22:19:56'),(13060,484,1,2015,'4.99','2005-06-17 12:16:29','2006-02-15 22:19:56'),(13061,484,1,2044,'5.99','2005-06-17 14:37:57','2006-02-15 22:19:56'),(13062,484,1,4214,'4.99','2005-07-07 11:54:33','2006-02-15 22:19:56'),(13063,484,1,5389,'2.99','2005-07-09 19:25:45','2006-02-15 22:19:56'),(13064,484,2,5708,'6.99','2005-07-10 10:29:19','2006-02-15 22:19:56'),(13065,484,1,5852,'0.99','2005-07-10 17:43:30','2006-02-15 22:19:56'),(13066,484,2,5866,'6.99','2005-07-10 18:35:14','2006-02-15 22:19:56'),(13067,484,2,5977,'5.99','2005-07-11 00:16:38','2006-02-15 22:19:56'),(13068,484,2,6296,'2.99','2005-07-11 17:34:04','2006-02-15 22:19:57'),(13069,484,1,6863,'6.99','2005-07-12 19:58:34','2006-02-15 22:19:57'),(13070,484,2,7440,'4.99','2005-07-27 17:43:27','2006-02-15 22:19:57'),(13071,484,2,7548,'2.99','2005-07-27 21:53:18','2006-02-15 22:19:57'),(13072,484,2,8508,'0.99','2005-07-29 09:34:38','2006-02-15 22:19:57'),(13073,484,2,9141,'5.99','2005-07-30 10:16:04','2006-02-15 22:19:57'),(13074,484,2,9414,'9.99','2005-07-30 20:46:02','2006-02-15 22:19:57'),(13075,484,1,9769,'4.99','2005-07-31 09:52:16','2006-02-15 22:19:57'),(13076,484,2,10166,'8.99','2005-07-31 23:22:20','2006-02-15 22:19:57'),(13077,484,2,11871,'4.99','2005-08-17 14:11:44','2006-02-15 22:19:57'),(13078,484,1,12024,'0.99','2005-08-17 19:57:34','2006-02-15 22:19:57'),(13079,484,1,12771,'4.99','2005-08-18 23:29:23','2006-02-15 22:19:57'),(13080,484,1,12993,'7.99','2005-08-19 07:24:03','2006-02-15 22:19:57'),(13081,484,2,13160,'0.99','2005-08-19 13:21:04','2006-02-15 22:19:57'),(13082,484,2,13956,'3.99','2005-08-20 18:08:19','2006-02-15 22:19:57'),(13083,484,1,15607,'2.99','2005-08-23 06:54:06','2006-02-15 22:19:57'),(13084,484,1,16026,'4.99','2005-08-23 21:49:22','2006-02-15 22:19:58'),(13085,485,1,1009,'2.99','2005-05-31 01:47:35','2006-02-15 22:19:58'),(13086,485,2,1684,'2.99','2005-06-16 11:57:34','2006-02-15 22:19:58'),(13087,485,1,1721,'8.99','2005-06-16 15:01:36','2006-02-15 22:19:58'),(13088,485,2,3579,'0.99','2005-07-06 03:47:47','2006-02-15 22:19:58'),(13089,485,1,3899,'1.99','2005-07-06 19:12:40','2006-02-15 22:19:58'),(13090,485,1,3904,'0.99','2005-07-06 19:30:57','2006-02-15 22:19:58'),(13091,485,2,4137,'3.99','2005-07-07 08:17:06','2006-02-15 22:19:58'),(13092,485,2,4667,'2.99','2005-07-08 10:06:26','2006-02-15 22:19:58'),(13093,485,1,5193,'2.99','2005-07-09 10:28:18','2006-02-15 22:19:58'),(13094,485,1,5343,'3.99','2005-07-09 17:23:43','2006-02-15 22:19:58'),(13095,485,1,5367,'3.99','2005-07-09 18:39:15','2006-02-15 22:19:58'),(13096,485,1,5820,'4.99','2005-07-10 16:04:59','2006-02-15 22:19:58'),(13097,485,2,6810,'4.99','2005-07-12 17:54:19','2006-02-15 22:19:58'),(13098,485,2,6902,'4.99','2005-07-12 21:57:16','2006-02-15 22:19:58'),(13099,485,1,7144,'4.99','2005-07-27 07:00:37','2006-02-15 22:19:58'),(13100,485,2,8984,'6.99','2005-07-30 04:31:50','2006-02-15 22:19:58'),(13101,485,2,9039,'2.99','2005-07-30 06:24:28','2006-02-15 22:19:59'),(13102,485,1,9053,'4.99','2005-07-30 07:07:39','2006-02-15 22:19:59'),(13103,485,2,9189,'2.99','2005-07-30 12:20:59','2006-02-15 22:19:59'),(13104,485,1,9535,'2.99','2005-07-31 01:18:53','2006-02-15 22:19:59'),(13105,485,1,9565,'0.99','2005-07-31 02:32:00','2006-02-15 22:19:59'),(13106,485,1,10771,'4.99','2005-08-01 20:49:35','2006-02-15 22:19:59'),(13107,485,2,10772,'6.99','2005-08-01 20:51:10','2006-02-15 22:19:59'),(13108,485,2,11188,'3.99','2005-08-02 11:17:11','2006-02-15 22:19:59'),(13109,485,1,11921,'4.99','2005-08-17 16:12:27','2006-02-15 22:19:59'),(13110,485,1,11974,'2.99','2005-08-17 17:56:48','2006-02-15 22:19:59'),(13111,485,2,12261,'8.99','2005-08-18 04:16:06','2006-02-15 22:19:59'),(13112,485,2,12487,'0.99','2005-08-18 12:45:24','2006-02-15 22:19:59'),(13113,485,2,13055,'2.99','2005-08-19 09:36:28','2006-02-15 22:19:59'),(13114,486,1,909,'8.99','2005-05-30 10:43:38','2006-02-15 22:19:59'),(13115,486,2,946,'2.99','2005-05-30 15:35:08','2006-02-15 22:19:59'),(13116,486,2,1129,'0.99','2005-05-31 18:00:48','2006-02-15 22:19:59'),(13117,486,1,2036,'4.99','2005-06-17 13:46:52','2006-02-15 22:20:00'),(13118,486,1,2102,'5.99','2005-06-17 19:05:22','2006-02-15 22:20:00'),(13119,486,2,2566,'2.99','2005-06-19 03:45:39','2006-02-15 22:20:00'),(13120,486,2,2797,'2.99','2005-06-19 19:04:32','2006-02-15 22:20:00'),(13121,486,1,3835,'4.99','2005-07-06 16:22:45','2006-02-15 22:20:00'),(13122,486,2,4110,'4.99','2005-07-07 06:44:27','2006-02-15 22:20:00'),(13123,486,1,4205,'4.99','2005-07-07 11:25:39','2006-02-15 22:20:00'),(13124,486,1,4381,'2.99','2005-07-07 20:37:53','2006-02-15 22:20:00'),(13125,486,1,4772,'7.99','2005-07-08 15:41:11','2006-02-15 22:20:00'),(13126,486,2,5006,'4.99','2005-07-09 01:24:07','2006-02-15 22:20:00'),(13127,486,2,6383,'4.99','2005-07-11 22:06:53','2006-02-15 22:20:00'),(13128,486,2,7127,'4.99','2005-07-27 06:13:48','2006-02-15 22:20:00'),(13129,486,2,7446,'4.99','2005-07-27 18:00:24','2006-02-15 22:20:00'),(13130,486,2,8425,'8.99','2005-07-29 07:06:21','2006-02-15 22:20:00'),(13131,486,2,9142,'0.99','2005-07-30 10:21:03','2006-02-15 22:20:00'),(13132,486,1,10079,'2.99','2005-07-31 20:05:45','2006-02-15 22:20:00'),(13133,486,2,10902,'4.99','2005-08-02 01:35:46','2006-02-15 22:20:00'),(13134,486,1,12465,'0.99','2005-08-18 11:35:02','2006-02-15 22:20:01'),(13135,486,2,12609,'2.99','2005-08-18 17:06:22','2006-02-15 22:20:01'),(13136,486,1,13048,'4.99','2005-08-19 09:25:06','2006-02-15 22:20:01'),(13137,486,2,13803,'0.99','2005-08-20 12:46:17','2006-02-15 22:20:01'),(13138,486,2,14251,'4.99','2005-08-21 05:42:20','2006-02-15 22:20:01'),(13139,486,2,14284,'4.99','2005-08-21 06:44:37','2006-02-15 22:20:01'),(13140,487,2,3100,'3.99','2005-06-20 16:47:57','2006-02-15 22:20:01'),(13141,487,2,3994,'1.99','2005-07-06 23:39:01','2006-02-15 22:20:01'),(13142,487,2,4854,'2.99','2005-07-08 18:44:44','2006-02-15 22:20:01'),(13143,487,1,5634,'3.99','2005-07-10 06:25:48','2006-02-15 22:20:01'),(13144,487,1,6928,'2.99','2005-07-26 22:56:21','2006-02-15 22:20:01'),(13145,487,1,7097,'2.99','2005-07-27 04:56:09','2006-02-15 22:20:01'),(13146,487,1,7788,'0.99','2005-07-28 07:21:55','2006-02-15 22:20:01'),(13147,487,2,7949,'4.99','2005-07-28 13:07:24','2006-02-15 22:20:01'),(13148,487,2,8510,'1.99','2005-07-29 09:41:38','2006-02-15 22:20:01'),(13149,487,2,8689,'2.99','2005-07-29 16:38:58','2006-02-15 22:20:01'),(13150,487,1,8814,'4.99','2005-07-29 21:49:43','2006-02-15 22:20:01'),(13151,487,1,8988,'7.99','2005-07-30 04:38:49','2006-02-15 22:20:02'),(13152,487,2,9457,'2.99','2005-07-30 22:23:05','2006-02-15 22:20:02'),(13153,487,1,9490,'3.99','2005-07-30 23:45:09','2006-02-15 22:20:02'),(13154,487,2,10123,'0.99','2005-07-31 21:30:46','2006-02-15 22:20:02'),(13155,487,2,10511,'2.99','2005-08-01 11:32:16','2006-02-15 22:20:02'),(13156,487,2,10555,'6.99','2005-08-01 12:56:38','2006-02-15 22:20:02'),(13157,487,1,10832,'6.99','2005-08-01 23:24:53','2006-02-15 22:20:02'),(13158,487,2,10877,'5.99','2005-08-02 00:32:04','2006-02-15 22:20:02'),(13159,487,1,10978,'9.99','2005-08-02 04:12:27','2006-02-15 22:20:02'),(13160,487,1,11669,'5.99','2005-08-17 05:48:51','2006-02-15 22:20:02'),(13161,487,2,11890,'5.99','2005-08-17 15:08:43','2006-02-15 22:20:02'),(13162,487,1,12493,'7.99','2005-08-18 12:53:38','2006-02-15 22:20:02'),(13163,487,2,13210,'4.99','2005-08-19 15:23:38','2006-02-15 22:20:02'),(13164,487,1,13658,'7.99','2005-08-20 08:02:22','2006-02-15 22:20:02'),(13165,487,2,15665,'2.99','2005-08-23 08:59:12','2006-02-15 22:20:02'),(13166,488,2,1655,'3.99','2005-06-16 09:51:39','2006-02-15 22:20:02'),(13167,488,2,1704,'5.99','2005-06-16 13:45:56','2006-02-15 22:20:02'),(13168,488,2,4133,'6.99','2005-07-07 08:12:26','2006-02-15 22:20:03'),(13169,488,2,4233,'5.99','2005-07-07 13:00:20','2006-02-15 22:20:03'),(13170,488,1,5141,'8.99','2005-07-09 08:05:14','2006-02-15 22:20:03'),(13171,488,2,6548,'5.99','2005-07-12 05:00:46','2006-02-15 22:20:03'),(13172,488,1,7373,'5.99','2005-07-27 15:19:33','2006-02-15 22:20:03'),(13173,488,1,8005,'2.99','2005-07-28 15:15:11','2006-02-15 22:20:03'),(13174,488,2,8050,'0.99','2005-07-28 16:55:47','2006-02-15 22:20:03'),(13175,488,2,8064,'2.99','2005-07-28 17:15:38','2006-02-15 22:20:03'),(13176,488,2,9083,'5.99','2005-07-30 08:14:27','2006-02-15 22:20:03'),(13177,488,1,9532,'2.99','2005-07-31 01:16:51','2006-02-15 22:20:03'),(13178,488,1,9537,'0.99','2005-07-31 01:23:00','2006-02-15 22:20:03'),(13179,488,2,10474,'5.99','2005-08-01 10:01:42','2006-02-15 22:20:03'),(13180,488,1,10767,'0.99','2005-08-01 20:37:23','2006-02-15 22:20:03'),(13181,488,1,11774,'3.99','2005-08-17 10:20:39','2006-02-15 22:20:03'),(13182,488,2,12483,'5.99','2005-08-18 12:38:37','2006-02-15 22:20:03'),(13183,488,2,13446,'4.99','2005-08-20 00:06:13','2006-02-15 22:20:03'),(13184,488,2,14948,'5.99','2005-08-22 06:10:53','2006-02-15 22:20:04'),(13185,488,2,15259,'0.99','2005-08-22 18:23:23','2006-02-15 22:20:04'),(13186,488,1,15350,'2.99','2005-08-22 21:15:29','2006-02-15 22:20:04'),(13187,488,2,15499,'2.99','2005-08-23 02:37:19','2006-02-15 22:20:04'),(13188,489,1,219,'4.99','2005-05-26 09:41:45','2006-02-15 22:20:04'),(13189,489,2,513,'2.99','2005-05-28 03:08:10','2006-02-15 22:20:04'),(13190,489,2,1614,'3.99','2005-06-16 06:58:02','2006-02-15 22:20:04'),(13191,489,1,2201,'0.99','2005-06-18 02:08:27','2006-02-15 22:20:04'),(13192,489,1,2370,'7.99','2005-06-18 14:29:54','2006-02-15 22:20:04'),(13193,489,1,2802,'4.99','2005-06-19 19:18:17','2006-02-15 22:20:04'),(13194,489,2,3816,'2.99','2005-07-06 15:27:04','2006-02-15 22:20:04'),(13195,489,1,4774,'3.99','2005-07-08 15:42:28','2006-02-15 22:20:04'),(13196,489,1,6963,'4.99','2005-07-27 00:13:02','2006-02-15 22:20:04'),(13197,489,2,9231,'0.99','2005-07-30 13:42:15','2006-02-15 22:20:04'),(13198,489,1,9459,'4.99','2005-07-30 22:24:46','2006-02-15 22:20:04'),(13199,489,2,11119,'9.99','2005-08-02 08:44:44','2006-02-15 22:20:04'),(13200,489,1,11705,'4.99','2005-08-17 07:22:25','2006-02-15 22:20:04'),(13201,489,1,12496,'6.99','2005-08-18 12:58:25','2006-02-15 22:20:05'),(13202,489,2,12701,'6.99','2005-08-18 20:26:47','2006-02-15 22:20:05'),(13203,489,1,13462,'4.99','2005-08-20 00:49:19','2006-02-15 22:20:05'),(13204,489,2,14095,'5.99','2005-08-21 00:25:45','2006-02-15 22:20:05'),(13205,489,2,14328,'2.99','2005-08-21 08:18:20','2006-02-15 22:20:05'),(13206,489,2,14424,'6.99','2005-08-21 11:24:11','2006-02-15 22:20:05'),(13207,489,1,15205,'0.99','2005-08-22 16:32:23','2006-02-15 22:20:05'),(13208,489,1,15981,'4.99','2005-08-23 20:12:17','2006-02-15 22:20:05'),(13209,490,2,585,'6.99','2005-05-28 11:50:45','2006-02-15 22:20:05'),(13210,490,2,676,'4.99','2005-05-28 22:27:51','2006-02-15 22:20:05'),(13211,490,1,1665,'3.99','2005-06-16 10:16:02','2006-02-15 22:20:05'),(13212,490,1,3476,'4.99','2005-07-05 23:02:37','2006-02-15 22:20:05'),(13213,490,2,3932,'4.99','2005-07-06 21:06:17','2006-02-15 22:20:05'),(13214,490,1,4083,'2.99','2005-07-07 05:13:15','2006-02-15 22:20:05'),(13215,490,1,4906,'5.99','2005-07-08 20:59:13','2006-02-15 22:20:05'),(13216,490,2,5173,'7.99','2005-07-09 09:31:44','2006-02-15 22:20:05'),(13217,490,2,5489,'0.99','2005-07-10 00:07:03','2006-02-15 22:20:06'),(13218,490,1,5654,'4.99','2005-07-10 07:24:46','2006-02-15 22:20:06'),(13219,490,2,6230,'2.99','2005-07-11 14:02:19','2006-02-15 22:20:06'),(13220,490,1,6803,'4.99','2005-07-12 17:21:49','2006-02-15 22:20:06'),(13221,490,2,6888,'2.99','2005-07-12 21:01:11','2006-02-15 22:20:06'),(13222,490,2,6923,'8.99','2005-07-12 22:40:48','2006-02-15 22:20:06'),(13223,490,1,8552,'5.99','2005-07-29 11:14:02','2006-02-15 22:20:06'),(13224,490,2,9108,'4.99','2005-07-30 08:56:36','2006-02-15 22:20:06'),(13225,490,1,9554,'0.99','2005-07-31 02:06:49','2006-02-15 22:20:06'),(13226,490,1,10786,'7.99','2005-08-01 21:29:34','2006-02-15 22:20:06'),(13227,490,1,10955,'7.99','2005-08-02 03:32:34','2006-02-15 22:20:06'),(13228,490,2,11965,'2.99','2005-08-17 17:39:45','2006-02-15 22:20:06'),(13229,490,2,14557,'4.99','2005-08-21 16:05:11','2006-02-15 22:20:06'),(13230,490,2,14761,'6.99','2005-08-21 23:30:28','2006-02-15 22:20:06'),(13231,490,2,15276,'2.99','2005-08-22 18:59:01','2006-02-15 22:20:06'),(13232,490,1,15448,'2.99','2005-08-23 00:55:24','2006-02-15 22:20:06'),(13233,491,1,484,'2.99','2005-05-27 23:26:45','2006-02-15 22:20:06'),(13234,491,2,1097,'0.99','2005-05-31 13:38:42','2006-02-15 22:20:07'),(13235,491,2,1198,'2.99','2005-06-15 01:48:58','2006-02-15 22:20:07'),(13236,491,1,1371,'4.99','2005-06-15 14:38:15','2006-02-15 22:20:07'),(13237,491,2,2026,'4.99','2005-06-17 13:05:38','2006-02-15 22:20:07'),(13238,491,1,2259,'4.99','2005-06-18 05:37:45','2006-02-15 22:20:07'),(13239,491,2,2391,'4.99','2005-06-18 15:33:30','2006-02-15 22:20:07'),(13240,491,2,3031,'4.99','2005-06-20 11:52:49','2006-02-15 22:20:07'),(13241,491,1,3440,'3.99','2005-06-21 19:58:18','2006-02-15 22:20:07'),(13242,491,1,4046,'8.99','2005-07-07 03:27:59','2006-02-15 22:20:07'),(13243,491,1,4392,'2.99','2005-07-07 21:11:02','2006-02-15 22:20:07'),(13244,491,2,5134,'6.99','2005-07-09 07:53:12','2006-02-15 22:20:07'),(13245,491,1,5889,'4.99','2005-07-10 19:54:41','2006-02-15 22:20:07'),(13246,491,2,6171,'2.99','2005-07-11 10:29:35','2006-02-15 22:20:07'),(13247,491,2,7019,'3.99','2005-07-27 02:20:26','2006-02-15 22:20:07'),(13248,491,2,7281,'6.99','2005-07-27 11:59:20','2006-02-15 22:20:07'),(13249,491,2,7688,'7.99','2005-07-28 03:20:47','2006-02-15 22:20:07'),(13250,491,1,7871,'6.99','2005-07-28 10:16:37','2006-02-15 22:20:08'),(13251,491,2,10036,'2.99','2005-07-31 18:47:20','2006-02-15 22:20:08'),(13252,491,2,10178,'4.99','2005-07-31 23:43:04','2006-02-15 22:20:08'),(13253,491,2,10974,'6.99','2005-08-02 04:10:52','2006-02-15 22:20:08'),(13254,491,1,11048,'4.99','2005-08-02 06:15:07','2006-02-15 22:20:08'),(13255,491,1,11590,'0.99','2005-08-17 02:28:33','2006-02-15 22:20:08'),(13256,491,1,11840,'4.99','2005-08-17 13:09:01','2006-02-15 22:20:08'),(13257,491,2,13607,'2.99','2005-08-20 06:08:42','2006-02-15 22:20:08'),(13258,491,1,14780,'0.99','2005-08-22 00:06:33','2006-02-15 22:20:08'),(13259,491,2,15685,'5.99','2005-08-23 09:41:28','2006-02-15 22:20:08'),(13260,492,1,84,'2.99','2005-05-25 12:36:30','2006-02-15 22:20:08'),(13261,492,2,1691,'1.99','2005-06-16 12:24:28','2006-02-15 22:20:08'),(13262,492,2,1855,'4.99','2005-06-17 00:54:58','2006-02-15 22:20:08'),(13263,492,2,1956,'4.99','2005-06-17 08:43:32','2006-02-15 22:20:08'),(13264,492,1,3298,'9.99','2005-06-21 07:09:44','2006-02-15 22:20:08'),(13265,492,2,4128,'8.99','2005-07-07 07:35:25','2006-02-15 22:20:08'),(13266,492,1,4142,'2.99','2005-07-07 08:19:45','2006-02-15 22:20:08'),(13267,492,2,4258,'6.99','2005-07-07 14:20:59','2006-02-15 22:20:09'),(13268,492,2,5325,'0.99','2005-07-09 16:35:47','2006-02-15 22:20:09'),(13269,492,1,5609,'0.99','2005-07-10 05:09:46','2006-02-15 22:20:09'),(13270,492,1,6257,'2.99','2005-07-11 15:23:46','2006-02-15 22:20:09'),(13271,492,2,7203,'2.99','2005-07-27 09:01:23','2006-02-15 22:20:09'),(13272,492,2,12971,'4.99','2005-08-19 06:42:43','2006-02-15 22:20:09'),(13273,492,1,14255,'2.99','2005-08-21 05:51:37','2006-02-15 22:20:09'),(13274,492,2,15822,'0.99','2005-08-23 15:05:59','2006-02-15 22:20:09'),(13275,492,1,15958,'4.99','2005-08-23 19:22:36','2006-02-15 22:20:09'),(13276,493,1,543,'7.99','2005-05-28 06:43:34','2006-02-15 22:20:09'),(13277,493,2,2109,'3.99','2005-06-17 19:41:42','2006-02-15 22:20:09'),(13278,493,1,2365,'4.99','2005-06-18 13:45:34','2006-02-15 22:20:09'),(13279,493,1,2579,'0.99','2005-06-19 04:40:44','2006-02-15 22:20:09'),(13280,493,1,2864,'2.99','2005-06-20 00:00:52','2006-02-15 22:20:09'),(13281,493,2,3586,'4.99','2005-07-06 04:24:42','2006-02-15 22:20:09'),(13282,493,1,3655,'5.99','2005-07-06 07:52:54','2006-02-15 22:20:09'),(13283,493,1,6549,'7.99','2005-07-12 05:02:01','2006-02-15 22:20:10'),(13284,493,1,6552,'4.99','2005-07-12 05:05:06','2006-02-15 22:20:10'),(13285,493,1,7026,'2.99','2005-07-27 02:48:58','2006-02-15 22:20:10'),(13286,493,2,7043,'7.99','2005-07-27 03:24:23','2006-02-15 22:20:10'),(13287,493,1,8298,'4.99','2005-07-29 02:47:36','2006-02-15 22:20:10'),(13288,493,1,8616,'2.99','2005-07-29 13:39:09','2006-02-15 22:20:10'),(13289,493,1,10777,'6.99','2005-08-01 21:03:50','2006-02-15 22:20:10'),(13290,493,2,10885,'7.99','2005-08-02 00:51:37','2006-02-15 22:20:10'),(13291,493,1,13638,'2.99','2005-08-20 07:21:15','2006-02-15 22:20:10'),(13292,493,2,13675,'6.99','2005-08-20 08:32:51','2006-02-15 22:20:10'),(13293,493,1,14117,'4.99','2005-08-21 01:11:59','2006-02-15 22:20:10'),(13294,493,2,15177,'4.99','2005-08-22 15:34:49','2006-02-15 22:20:10'),(13295,493,1,15355,'0.99','2005-08-22 21:19:24','2006-02-15 22:20:10'),(13296,493,1,15490,'6.99','2005-08-23 02:08:18','2006-02-15 22:20:10'),(13297,493,2,15878,'2.99','2005-08-23 16:34:31','2006-02-15 22:20:10'),(13298,493,2,14160,'2.99','2006-02-14 15:16:03','2006-02-15 22:20:10'),(13299,494,1,608,'4.99','2005-05-28 15:03:44','2006-02-15 22:20:10'),(13300,494,1,1683,'2.99','2005-06-16 11:54:55','2006-02-15 22:20:11'),(13301,494,1,3511,'0.99','2005-07-06 00:42:01','2006-02-15 22:20:11'),(13302,494,2,3803,'2.99','2005-07-06 15:06:55','2006-02-15 22:20:11'),(13303,494,2,3913,'0.99','2005-07-06 20:11:00','2006-02-15 22:20:11'),(13304,494,1,4086,'3.99','2005-07-07 05:26:06','2006-02-15 22:20:11'),(13305,494,2,4397,'5.99','2005-07-07 21:14:54','2006-02-15 22:20:11'),(13306,494,2,4551,'7.99','2005-07-08 04:36:21','2006-02-15 22:20:11'),(13307,494,2,5083,'4.99','2005-07-09 05:30:32','2006-02-15 22:20:11'),(13308,494,1,5180,'2.99','2005-07-09 10:06:53','2006-02-15 22:20:11'),(13309,494,2,7258,'3.99','2005-07-27 11:05:54','2006-02-15 22:20:11'),(13310,494,2,7546,'8.99','2005-07-27 21:50:09','2006-02-15 22:20:11'),(13311,494,2,7737,'1.99','2005-07-28 05:15:03','2006-02-15 22:20:11'),(13312,494,2,8333,'2.99','2005-07-29 04:16:40','2006-02-15 22:20:11'),(13313,494,2,8895,'2.99','2005-07-30 00:49:17','2006-02-15 22:20:11'),(13314,494,1,8934,'4.99','2005-07-30 02:37:05','2006-02-15 22:20:11'),(13315,494,2,9012,'4.99','2005-07-30 05:18:57','2006-02-15 22:20:11'),(13316,494,2,9510,'7.99','2005-07-31 00:24:17','2006-02-15 22:20:12'),(13317,494,1,9799,'2.99','2005-07-31 10:58:32','2006-02-15 22:20:12'),(13318,494,2,9943,'7.99','2005-07-31 15:37:29','2006-02-15 22:20:12'),(13319,494,1,10403,'0.99','2005-08-01 07:30:45','2006-02-15 22:20:12'),(13320,494,1,10623,'2.99','2005-08-01 15:22:38','2006-02-15 22:20:12'),(13321,494,2,11152,'3.99','2005-08-02 09:53:36','2006-02-15 22:20:12'),(13322,494,1,11987,'5.99','2005-08-17 18:21:59','2006-02-15 22:20:12'),(13323,494,2,13094,'0.99','2005-08-19 10:47:58','2006-02-15 22:20:12'),(13324,494,2,13301,'3.99','2005-08-19 18:53:15','2006-02-15 22:20:12'),(13325,494,2,14634,'5.99','2005-08-21 18:51:28','2006-02-15 22:20:12'),(13326,494,1,14832,'4.99','2005-08-22 01:43:29','2006-02-15 22:20:12'),(13327,494,1,15086,'6.99','2005-08-22 11:21:08','2006-02-15 22:20:12'),(13328,494,2,15156,'9.99','2005-08-22 14:29:11','2006-02-15 22:20:12'),(13329,494,2,15291,'4.99','2005-08-22 19:28:04','2006-02-15 22:20:12'),(13330,495,2,623,'4.99','2005-05-28 16:01:28','2006-02-15 22:20:12'),(13331,495,2,741,'4.99','2005-05-29 08:35:49','2006-02-15 22:20:12'),(13332,495,2,2074,'2.99','2005-06-17 16:40:03','2006-02-15 22:20:13'),(13333,495,1,2349,'4.99','2005-06-18 12:25:14','2006-02-15 22:20:13'),(13334,495,1,2549,'7.99','2005-06-19 02:46:39','2006-02-15 22:20:13'),(13335,495,1,3129,'3.99','2005-06-20 18:57:48','2006-02-15 22:20:13'),(13336,495,2,3966,'2.99','2005-07-06 22:38:49','2006-02-15 22:20:13'),(13337,495,2,5484,'7.99','2005-07-09 23:54:37','2006-02-15 22:20:13'),(13338,495,2,6426,'7.99','2005-07-11 23:56:38','2006-02-15 22:20:13'),(13339,495,2,7191,'2.99','2005-07-27 08:36:15','2006-02-15 22:20:13'),(13340,495,1,8151,'0.99','2005-07-28 20:50:52','2006-02-15 22:20:13'),(13341,495,1,8383,'1.99','2005-07-29 05:36:47','2006-02-15 22:20:13'),(13342,495,1,8451,'5.99','2005-07-29 07:44:56','2006-02-15 22:20:13'),(13343,495,1,8672,'5.99','2005-07-29 15:49:48','2006-02-15 22:20:13'),(13344,495,1,9387,'9.99','2005-07-30 19:27:05','2006-02-15 22:20:13'),(13345,495,1,9741,'4.99','2005-07-31 09:09:22','2006-02-15 22:20:13'),(13346,495,2,10065,'4.99','2005-07-31 19:27:34','2006-02-15 22:20:13'),(13347,495,2,10643,'5.99','2005-08-01 15:48:33','2006-02-15 22:20:13'),(13348,495,1,10783,'4.99','2005-08-01 21:23:37','2006-02-15 22:20:13'),(13349,495,1,12782,'5.99','2005-08-18 23:56:23','2006-02-15 22:20:14'),(13350,495,2,12837,'0.99','2005-08-19 01:51:09','2006-02-15 22:20:14'),(13351,495,2,13205,'3.99','2005-08-19 15:05:26','2006-02-15 22:20:14'),(13352,495,2,13445,'2.99','2005-08-20 00:05:33','2006-02-15 22:20:14'),(13353,495,2,13818,'4.99','2005-08-20 13:20:09','2006-02-15 22:20:14'),(13354,495,1,15984,'2.99','2005-08-23 20:16:27','2006-02-15 22:20:14'),(13355,495,2,13753,'0.99','2006-02-14 15:16:03','2006-02-15 22:20:14'),(13356,496,2,322,'4.99','2005-05-27 00:47:35','2006-02-15 22:20:14'),(13357,496,2,966,'0.99','2005-05-30 19:00:37','2006-02-15 22:20:14'),(13358,496,1,2567,'2.99','2005-06-19 04:04:46','2006-02-15 22:20:14'),(13359,496,2,3569,'3.99','2005-07-06 03:17:23','2006-02-15 22:20:14'),(13360,496,1,4070,'2.99','2005-07-07 04:37:09','2006-02-15 22:20:14'),(13361,496,1,4261,'4.99','2005-07-07 14:23:56','2006-02-15 22:20:14'),(13362,496,1,4269,'0.99','2005-07-07 14:38:33','2006-02-15 22:20:14'),(13363,496,1,5559,'5.99','2005-07-10 03:13:07','2006-02-15 22:20:14'),(13364,496,2,5949,'4.99','2005-07-10 23:13:00','2006-02-15 22:20:14'),(13365,496,1,7133,'2.99','2005-07-27 06:29:23','2006-02-15 22:20:15'),(13366,496,2,8221,'2.99','2005-07-28 23:47:19','2006-02-15 22:20:15'),(13367,496,1,11060,'7.99','2005-08-02 06:48:18','2006-02-15 22:20:15'),(13368,496,2,11448,'4.99','2005-08-02 20:44:33','2006-02-15 22:20:15'),(13369,496,1,11893,'3.99','2005-08-17 15:13:29','2006-02-15 22:20:15'),(13370,496,2,12605,'4.99','2005-08-18 16:59:37','2006-02-15 22:20:15'),(13371,496,1,13569,'5.99','2005-08-20 05:02:59','2006-02-15 22:20:15'),(13372,496,2,14013,'6.99','2005-08-20 20:42:50','2006-02-15 22:20:15'),(13373,496,1,14332,'7.99','2005-08-21 08:30:43','2006-02-15 22:20:15'),(13374,496,1,14348,'0.99','2005-08-21 08:54:26','2006-02-15 22:20:15'),(13375,496,2,15750,'2.99','2005-08-23 12:36:05','2006-02-15 22:20:15'),(13376,496,1,13182,'2.99','2006-02-14 15:16:03','2006-02-15 22:20:15'),(13377,497,1,1100,'7.99','2005-05-31 14:03:21','2006-02-15 22:20:15'),(13378,497,2,2180,'8.99','2005-06-18 00:47:43','2006-02-15 22:20:15'),(13379,497,1,2298,'5.99','2005-06-18 08:18:29','2006-02-15 22:20:15'),(13380,497,1,2406,'2.99','2005-06-18 16:39:37','2006-02-15 22:20:15'),(13381,497,2,2818,'4.99','2005-06-19 20:05:52','2006-02-15 22:20:16'),(13382,497,1,3696,'2.99','2005-07-06 10:04:55','2006-02-15 22:20:16'),(13383,497,2,4218,'7.99','2005-07-07 12:10:24','2006-02-15 22:20:16'),(13384,497,1,4516,'4.99','2005-07-08 02:43:41','2006-02-15 22:20:16'),(13385,497,1,4578,'0.99','2005-07-08 06:00:17','2006-02-15 22:20:16'),(13386,497,2,4795,'0.99','2005-07-08 16:32:54','2006-02-15 22:20:16'),(13387,497,1,5030,'4.99','2005-07-09 02:35:43','2006-02-15 22:20:16'),(13388,497,1,5239,'4.99','2005-07-09 13:12:35','2006-02-15 22:20:16'),(13389,497,2,7603,'2.99','2005-07-27 23:54:44','2006-02-15 22:20:16'),(13390,497,2,8011,'2.99','2005-07-28 15:26:39','2006-02-15 22:20:16'),(13391,497,1,8150,'6.99','2005-07-28 20:50:41','2006-02-15 22:20:16'),(13392,497,2,8813,'6.99','2005-07-29 21:47:55','2006-02-15 22:20:16'),(13393,497,2,8867,'4.99','2005-07-30 00:02:18','2006-02-15 22:20:16'),(13394,497,1,9273,'9.99','2005-07-30 15:05:36','2006-02-15 22:20:16'),(13395,497,2,9850,'4.99','2005-07-31 12:46:52','2006-02-15 22:20:16'),(13396,497,2,10760,'7.99','2005-08-01 20:25:20','2006-02-15 22:20:16'),(13397,497,1,12123,'0.99','2005-08-17 23:22:18','2006-02-15 22:20:16'),(13398,497,1,13159,'4.99','2005-08-19 13:19:59','2006-02-15 22:20:17'),(13399,497,1,13289,'2.99','2005-08-19 18:31:30','2006-02-15 22:20:17'),(13400,497,2,14134,'0.99','2005-08-21 01:45:54','2006-02-15 22:20:17'),(13401,497,1,15362,'5.99','2005-08-22 21:40:20','2006-02-15 22:20:17'),(13402,497,2,15633,'0.99','2005-08-23 07:31:10','2006-02-15 22:20:17'),(13403,497,1,15919,'0.99','2005-08-23 18:01:31','2006-02-15 22:20:17'),(13404,497,1,12698,'4.99','2006-02-14 15:16:03','2006-02-15 22:20:17'),(13405,498,2,49,'2.99','2005-05-25 06:39:35','2006-02-15 22:20:17'),(13406,498,1,429,'8.99','2005-05-27 16:21:26','2006-02-15 22:20:17'),(13407,498,2,718,'2.99','2005-05-29 04:52:23','2006-02-15 22:20:17'),(13408,498,1,1253,'6.99','2005-06-15 06:06:33','2006-02-15 22:20:17'),(13409,498,1,1782,'2.99','2005-06-16 19:21:12','2006-02-15 22:20:17'),(13410,498,1,2344,'2.99','2005-06-18 12:01:47','2006-02-15 22:20:17'),(13411,498,1,2449,'4.99','2005-06-18 19:18:36','2006-02-15 22:20:17'),(13412,498,1,3098,'0.99','2005-06-20 16:37:01','2006-02-15 22:20:17'),(13413,498,2,3360,'0.99','2005-06-21 12:12:41','2006-02-15 22:20:17'),(13414,498,2,3828,'0.99','2005-07-06 15:57:30','2006-02-15 22:20:18'),(13415,498,2,3856,'2.99','2005-07-06 17:04:46','2006-02-15 22:20:18'),(13416,498,1,4311,'4.99','2005-07-07 17:31:14','2006-02-15 22:20:18'),(13417,498,2,4972,'2.99','2005-07-08 23:56:09','2006-02-15 22:20:18'),(13418,498,1,5286,'2.99','2005-07-09 15:11:41','2006-02-15 22:20:18'),(13419,498,2,5884,'0.99','2005-07-10 19:31:38','2006-02-15 22:20:18'),(13420,498,1,6058,'2.99','2005-07-11 04:03:51','2006-02-15 22:20:18'),(13421,498,1,6088,'1.99','2005-07-11 05:40:35','2006-02-15 22:20:18'),(13422,498,1,7285,'4.99','2005-07-27 12:14:06','2006-02-15 22:20:18'),(13423,498,1,7286,'6.99','2005-07-27 12:23:49','2006-02-15 22:20:18'),(13424,498,1,7341,'4.99','2005-07-27 14:23:55','2006-02-15 22:20:18'),(13425,498,2,8020,'4.99','2005-07-28 15:43:32','2006-02-15 22:20:18'),(13426,498,1,8229,'2.99','2005-07-29 00:09:08','2006-02-15 22:20:18'),(13427,498,2,9021,'0.99','2005-07-30 05:34:24','2006-02-15 22:20:18'),(13428,498,2,9689,'4.99','2005-07-31 07:00:08','2006-02-15 22:20:18'),(13429,498,1,10225,'0.99','2005-08-01 01:38:40','2006-02-15 22:20:18'),(13430,498,1,11455,'6.99','2005-08-02 21:07:06','2006-02-15 22:20:18'),(13431,498,1,12893,'2.99','2005-08-19 03:46:43','2006-02-15 22:20:19'),(13432,499,2,89,'2.99','2005-05-25 14:28:29','2006-02-15 22:20:19'),(13433,499,1,1355,'2.99','2005-06-15 13:13:59','2006-02-15 22:20:19'),(13434,499,2,1526,'4.99','2005-06-16 00:27:51','2006-02-15 22:20:19'),(13435,499,2,1830,'4.99','2005-06-16 22:18:43','2006-02-15 22:20:19'),(13436,499,2,3241,'1.99','2005-06-21 02:54:32','2006-02-15 22:20:19'),(13437,499,1,3794,'4.99','2005-07-06 14:35:26','2006-02-15 22:20:19'),(13438,499,1,5022,'2.99','2005-07-09 02:10:54','2006-02-15 22:20:19'),(13439,499,2,5392,'2.99','2005-07-09 19:32:30','2006-02-15 22:20:19'),(13440,499,2,5427,'3.99','2005-07-09 21:12:26','2006-02-15 22:20:19'),(13441,499,1,5956,'4.99','2005-07-10 23:23:08','2006-02-15 22:20:19'),(13442,499,2,6723,'4.99','2005-07-12 13:44:57','2006-02-15 22:20:19'),(13443,499,1,7800,'0.99','2005-07-28 07:50:59','2006-02-15 22:20:19'),(13444,499,1,7831,'0.99','2005-07-28 08:44:21','2006-02-15 22:20:19'),(13445,499,1,7898,'6.99','2005-07-28 11:08:22','2006-02-15 22:20:19'),(13446,499,2,8130,'4.99','2005-07-28 19:48:15','2006-02-15 22:20:19'),(13447,499,1,8770,'3.99','2005-07-29 19:53:50','2006-02-15 22:20:20'),(13448,499,1,9588,'0.99','2005-07-31 03:13:13','2006-02-15 22:20:20'),(13449,499,2,10333,'0.99','2005-08-01 04:58:32','2006-02-15 22:20:20'),(13450,499,2,10497,'2.99','2005-08-01 10:55:59','2006-02-15 22:20:20'),(13451,499,1,11513,'7.99','2005-08-16 23:51:33','2006-02-15 22:20:20'),(13452,499,2,11606,'0.99','2005-08-17 03:32:43','2006-02-15 22:20:20'),(13453,499,2,11978,'4.99','2005-08-17 18:02:10','2006-02-15 22:20:20'),(13454,499,1,12004,'8.99','2005-08-17 18:56:53','2006-02-15 22:20:20'),(13455,499,1,12354,'7.99','2005-08-18 07:34:07','2006-02-15 22:20:20'),(13456,499,1,12436,'3.99','2005-08-18 10:41:05','2006-02-15 22:20:20'),(13457,499,1,12587,'1.99','2005-08-18 16:03:13','2006-02-15 22:20:20'),(13458,499,2,12947,'4.99','2005-08-19 05:54:21','2006-02-15 22:20:20'),(13459,499,2,13822,'3.99','2005-08-20 13:39:28','2006-02-15 22:20:20'),(13460,499,1,14858,'3.99','2005-08-22 02:46:18','2006-02-15 22:20:20'),(13461,499,1,15587,'7.99','2005-08-23 06:00:28','2006-02-15 22:20:20'),(13462,500,1,112,'8.99','2005-05-25 18:57:24','2006-02-15 22:20:20'),(13463,500,1,389,'8.99','2005-05-27 10:45:41','2006-02-15 22:20:21'),(13464,500,1,610,'0.99','2005-05-28 15:15:25','2006-02-15 22:20:21'),(13465,500,1,1375,'5.99','2005-06-15 14:54:56','2006-02-15 22:20:21'),(13466,500,2,1388,'5.99','2005-06-15 15:48:41','2006-02-15 22:20:21'),(13467,500,2,2189,'3.99','2005-06-18 01:20:26','2006-02-15 22:20:21'),(13468,500,2,2526,'6.99','2005-06-19 01:03:07','2006-02-15 22:20:21'),(13469,500,1,2996,'2.99','2005-06-20 09:20:29','2006-02-15 22:20:21'),(13470,500,2,3926,'4.99','2005-07-06 20:42:35','2006-02-15 22:20:21'),(13471,500,1,4561,'0.99','2005-07-08 05:02:43','2006-02-15 22:20:21'),(13472,500,2,4790,'4.99','2005-07-08 16:25:27','2006-02-15 22:20:21'),(13473,500,2,6018,'4.99','2005-07-11 02:06:36','2006-02-15 22:20:21'),(13474,500,2,6187,'2.99','2005-07-11 11:28:51','2006-02-15 22:20:21'),(13475,500,2,6801,'3.99','2005-07-12 17:09:08','2006-02-15 22:20:21'),(13476,500,1,7857,'0.99','2005-07-28 09:49:40','2006-02-15 22:20:21'),(13477,500,1,7925,'2.99','2005-07-28 12:10:02','2006-02-15 22:20:21'),(13478,500,1,8538,'6.99','2005-07-29 10:45:17','2006-02-15 22:20:21'),(13479,500,1,8925,'0.99','2005-07-30 02:09:14','2006-02-15 22:20:22'),(13480,500,2,9290,'3.99','2005-07-30 15:59:08','2006-02-15 22:20:22'),(13481,500,1,10947,'6.99','2005-08-02 03:23:17','2006-02-15 22:20:22'),(13482,500,2,11218,'1.99','2005-08-02 12:29:12','2006-02-15 22:20:22'),(13483,500,1,12639,'2.99','2005-08-18 18:13:05','2006-02-15 22:20:22'),(13484,500,2,12813,'2.99','2005-08-19 00:54:22','2006-02-15 22:20:22'),(13485,500,2,13628,'4.99','2005-08-20 07:03:53','2006-02-15 22:20:22'),(13486,500,1,14407,'0.99','2005-08-21 10:46:51','2006-02-15 22:20:22'),(13487,500,1,14964,'4.99','2005-08-22 06:39:24','2006-02-15 22:20:22'),(13488,500,1,15584,'2.99','2005-08-23 05:49:21','2006-02-15 22:20:22'),(13489,500,1,15853,'2.99','2005-08-23 15:54:20','2006-02-15 22:20:22'),(13490,501,1,493,'0.99','2005-05-28 00:34:11','2006-02-15 22:20:22'),(13491,501,1,605,'1.99','2005-05-28 14:39:10','2006-02-15 22:20:22'),(13492,501,2,3222,'5.99','2005-06-21 01:50:29','2006-02-15 22:20:22'),(13493,501,1,3412,'7.99','2005-06-21 16:44:31','2006-02-15 22:20:22'),(13494,501,2,3541,'6.99','2005-07-06 01:50:11','2006-02-15 22:20:22'),(13495,501,2,3723,'6.99','2005-07-06 11:12:02','2006-02-15 22:20:22'),(13496,501,2,4769,'2.99','2005-07-08 15:29:16','2006-02-15 22:20:23'),(13497,501,2,5520,'1.99','2005-07-10 01:30:41','2006-02-15 22:20:23'),(13498,501,2,6095,'7.99','2005-07-11 06:06:41','2006-02-15 22:20:23'),(13499,501,1,7456,'0.99','2005-07-27 18:34:53','2006-02-15 22:20:23'),(13500,501,1,8021,'2.99','2005-07-28 15:45:24','2006-02-15 22:20:23'),(13501,501,2,8529,'2.99','2005-07-29 10:24:31','2006-02-15 22:20:23'),(13502,501,1,9359,'2.99','2005-07-30 18:39:28','2006-02-15 22:20:23'),(13503,501,1,10817,'4.99','2005-08-01 22:51:08','2006-02-15 22:20:23'),(13504,501,2,11393,'4.99','2005-08-02 18:44:29','2006-02-15 22:20:23'),(13505,501,1,11640,'1.99','2005-08-17 04:44:33','2006-02-15 22:20:23'),(13506,501,2,11799,'6.99','2005-08-17 11:25:25','2006-02-15 22:20:23'),(13507,501,1,12914,'4.99','2005-08-19 04:25:59','2006-02-15 22:20:23'),(13508,501,2,13889,'0.99','2005-08-20 15:40:06','2006-02-15 22:20:23'),(13509,501,1,15239,'4.99','2005-08-22 17:46:17','2006-02-15 22:20:23'),(13510,501,1,15699,'5.99','2005-08-23 10:20:35','2006-02-15 22:20:23'),(13511,502,2,258,'2.99','2005-05-26 15:28:14','2006-02-15 22:20:23'),(13512,502,1,861,'0.99','2005-05-30 02:48:32','2006-02-15 22:20:24'),(13513,502,1,893,'2.99','2005-05-30 08:06:59','2006-02-15 22:20:24'),(13514,502,2,965,'0.99','2005-05-30 19:00:14','2006-02-15 22:20:24'),(13515,502,2,1696,'7.99','2005-06-16 12:50:01','2006-02-15 22:20:24'),(13516,502,2,2420,'0.99','2005-06-18 17:22:28','2006-02-15 22:20:24'),(13517,502,1,2911,'0.99','2005-06-20 03:32:37','2006-02-15 22:20:24'),(13518,502,2,3614,'2.99','2005-07-06 05:46:05','2006-02-15 22:20:24'),(13519,502,1,4606,'2.99','2005-07-08 07:05:50','2006-02-15 22:20:24'),(13520,502,2,5368,'5.99','2005-07-09 18:41:59','2006-02-15 22:20:24'),(13521,502,2,5662,'2.99','2005-07-10 07:59:24','2006-02-15 22:20:24'),(13522,502,2,6414,'7.99','2005-07-11 23:26:13','2006-02-15 22:20:24'),(13523,502,1,6760,'8.99','2005-07-12 15:16:00','2006-02-15 22:20:24'),(13524,502,2,6828,'2.99','2005-07-12 18:38:51','2006-02-15 22:20:24'),(13525,502,2,6924,'8.99','2005-07-26 22:51:53','2006-02-15 22:20:24'),(13526,502,2,7213,'3.99','2005-07-27 09:22:29','2006-02-15 22:20:24'),(13527,502,1,7255,'4.99','2005-07-27 10:49:54','2006-02-15 22:20:24'),(13528,502,1,7757,'4.99','2005-07-28 06:23:00','2006-02-15 22:20:25'),(13529,502,1,7884,'4.99','2005-07-28 10:37:24','2006-02-15 22:20:25'),(13530,502,2,8034,'4.99','2005-07-28 16:20:26','2006-02-15 22:20:25'),(13531,502,2,9232,'0.99','2005-07-30 13:43:00','2006-02-15 22:20:25'),(13532,502,1,9599,'4.99','2005-07-31 03:32:06','2006-02-15 22:20:25'),(13533,502,2,10390,'4.99','2005-08-01 06:46:48','2006-02-15 22:20:25'),(13534,502,1,10938,'0.99','2005-08-02 03:05:22','2006-02-15 22:20:25'),(13535,502,2,11036,'4.99','2005-08-02 05:56:29','2006-02-15 22:20:25'),(13536,502,1,11301,'0.99','2005-08-02 15:37:59','2006-02-15 22:20:25'),(13537,502,1,11317,'4.99','2005-08-02 16:08:52','2006-02-15 22:20:25'),(13538,502,1,11435,'0.99','2005-08-02 20:14:23','2006-02-15 22:20:25'),(13539,502,1,11620,'0.99','2005-08-17 04:06:22','2006-02-15 22:20:25'),(13540,502,1,12762,'4.99','2005-08-18 23:06:54','2006-02-15 22:20:25'),(13541,502,1,13052,'9.99','2005-08-19 09:31:42','2006-02-15 22:20:25'),(13542,502,1,14411,'4.99','2005-08-21 10:54:57','2006-02-15 22:20:25'),(13543,502,1,15486,'3.99','2005-08-23 02:05:20','2006-02-15 22:20:25'),(13544,502,1,16034,'3.99','2005-08-23 22:06:34','2006-02-15 22:20:26'),(13545,503,2,109,'1.99','2005-05-25 18:40:20','2006-02-15 22:20:26'),(13546,503,1,353,'5.99','2005-05-27 06:03:39','2006-02-15 22:20:26'),(13547,503,1,631,'2.99','2005-05-28 17:36:32','2006-02-15 22:20:26'),(13548,503,1,1074,'4.99','2005-05-31 10:04:42','2006-02-15 22:20:26'),(13549,503,2,2108,'4.99','2005-06-17 19:35:26','2006-02-15 22:20:26'),(13550,503,1,2225,'2.99','2005-06-18 03:35:40','2006-02-15 22:20:26'),(13551,503,2,3430,'0.99','2005-06-21 18:46:08','2006-02-15 22:20:26'),(13552,503,2,3935,'6.99','2005-07-06 21:08:29','2006-02-15 22:20:26'),(13553,503,2,4570,'2.99','2005-07-08 05:33:59','2006-02-15 22:20:26'),(13554,503,2,5465,'2.99','2005-07-09 23:01:13','2006-02-15 22:20:26'),(13555,503,1,5925,'6.99','2005-07-10 21:41:27','2006-02-15 22:20:26'),(13556,503,1,6166,'4.99','2005-07-11 10:19:05','2006-02-15 22:20:26'),(13557,503,1,6529,'2.99','2005-07-12 04:31:04','2006-02-15 22:20:26'),(13558,503,2,6950,'4.99','2005-07-26 23:45:33','2006-02-15 22:20:26'),(13559,503,1,8178,'2.99','2005-07-28 21:54:31','2006-02-15 22:20:26'),(13560,503,2,9725,'0.99','2005-07-31 08:35:18','2006-02-15 22:20:27'),(13561,503,1,9974,'4.99','2005-07-31 16:51:11','2006-02-15 22:20:27'),(13562,503,2,11075,'2.99','2005-08-02 07:24:23','2006-02-15 22:20:27'),(13563,503,1,11161,'1.99','2005-08-02 10:05:57','2006-02-15 22:20:27'),(13564,503,1,11858,'4.99','2005-08-17 13:50:31','2006-02-15 22:20:27'),(13565,503,2,12370,'2.99','2005-08-18 07:57:47','2006-02-15 22:20:27'),(13566,503,2,12783,'4.99','2005-08-19 00:01:14','2006-02-15 22:20:27'),(13567,503,1,13332,'2.99','2005-08-19 20:00:51','2006-02-15 22:20:27'),(13568,503,1,13551,'2.99','2005-08-20 04:00:30','2006-02-15 22:20:27'),(13569,503,1,14823,'0.99','2005-08-22 01:24:42','2006-02-15 22:20:27'),(13570,503,1,14913,'2.99','2005-08-22 04:52:13','2006-02-15 22:20:27'),(13571,503,2,15056,'4.99','2005-08-22 10:15:54','2006-02-15 22:20:27'),(13572,503,2,15077,'2.99','2005-08-22 11:09:18','2006-02-15 22:20:27'),(13573,503,1,15588,'3.99','2005-08-23 06:02:35','2006-02-15 22:20:27'),(13574,503,1,15692,'4.99','2005-08-23 10:00:02','2006-02-15 22:20:27'),(13575,503,1,15726,'2.99','2005-08-23 11:28:26','2006-02-15 22:20:27'),(13576,503,1,15797,'0.99','2005-08-23 14:13:47','2006-02-15 22:20:28'),(13577,504,2,136,'5.99','2005-05-25 22:02:30','2006-02-15 22:20:28'),(13578,504,2,470,'4.99','2005-05-27 21:17:08','2006-02-15 22:20:28'),(13579,504,1,838,'4.99','2005-05-30 00:27:57','2006-02-15 22:20:28'),(13580,504,1,2720,'1.99','2005-06-19 14:51:55','2006-02-15 22:20:28'),(13581,504,1,2938,'6.99','2005-06-20 05:17:22','2006-02-15 22:20:28'),(13582,504,2,3712,'9.99','2005-07-06 10:47:35','2006-02-15 22:20:28'),(13583,504,1,3713,'6.99','2005-07-06 10:49:30','2006-02-15 22:20:28'),(13584,504,1,4329,'5.99','2005-07-07 18:04:16','2006-02-15 22:20:28'),(13585,504,1,4757,'0.99','2005-07-08 14:36:51','2006-02-15 22:20:28'),(13586,504,2,5153,'6.99','2005-07-09 08:35:05','2006-02-15 22:20:28'),(13587,504,2,7342,'3.99','2005-07-27 14:25:17','2006-02-15 22:20:28'),(13588,504,1,7567,'2.99','2005-07-27 22:38:05','2006-02-15 22:20:28'),(13589,504,2,7807,'2.99','2005-07-28 07:58:27','2006-02-15 22:20:28'),(13590,504,2,7875,'1.99','2005-07-28 10:23:48','2006-02-15 22:20:28'),(13591,504,2,7944,'4.99','2005-07-28 12:51:22','2006-02-15 22:20:28'),(13592,504,1,8393,'9.99','2005-07-29 06:02:11','2006-02-15 22:20:28'),(13593,504,2,10397,'0.99','2005-08-01 07:11:27','2006-02-15 22:20:29'),(13594,504,2,10509,'3.99','2005-08-01 11:25:28','2006-02-15 22:20:29'),(13595,504,2,11569,'2.99','2005-08-17 01:31:04','2006-02-15 22:20:29'),(13596,504,1,12769,'1.99','2005-08-18 23:26:40','2006-02-15 22:20:29'),(13597,504,1,13166,'2.99','2005-08-19 13:36:28','2006-02-15 22:20:29'),(13598,504,2,13206,'2.99','2005-08-19 15:05:34','2006-02-15 22:20:29'),(13599,504,2,13387,'2.99','2005-08-19 21:46:10','2006-02-15 22:20:29'),(13600,504,2,13859,'5.99','2005-08-20 14:53:43','2006-02-15 22:20:29'),(13601,504,2,15018,'4.99','2005-08-22 08:52:38','2006-02-15 22:20:29'),(13602,504,1,15166,'6.99','2005-08-22 15:05:37','2006-02-15 22:20:29'),(13603,504,1,15723,'8.99','2005-08-23 11:17:26','2006-02-15 22:20:29'),(13604,504,2,16022,'4.99','2005-08-23 21:44:27','2006-02-15 22:20:29'),(13605,505,1,159,'2.99','2005-05-26 01:34:28','2006-02-15 22:20:29'),(13606,505,1,645,'2.99','2005-05-28 19:14:09','2006-02-15 22:20:29'),(13607,505,2,1799,'5.99','2005-06-16 20:17:20','2006-02-15 22:20:29'),(13608,505,2,1886,'4.99','2005-06-17 03:36:02','2006-02-15 22:20:29'),(13609,505,1,2773,'7.99','2005-06-19 18:04:18','2006-02-15 22:20:30'),(13610,505,1,3137,'5.99','2005-06-20 19:41:28','2006-02-15 22:20:30'),(13611,505,2,4008,'5.99','2005-07-07 00:26:43','2006-02-15 22:20:30'),(13612,505,1,4507,'6.99','2005-07-08 02:22:45','2006-02-15 22:20:30'),(13613,505,2,5976,'9.99','2005-07-11 00:16:35','2006-02-15 22:20:30'),(13614,505,2,6292,'4.99','2005-07-11 17:23:33','2006-02-15 22:20:30'),(13615,505,1,6441,'0.99','2005-07-12 00:27:08','2006-02-15 22:20:30'),(13616,505,1,7784,'4.99','2005-07-28 07:15:32','2006-02-15 22:20:30'),(13617,505,2,10219,'5.99','2005-08-01 01:10:33','2006-02-15 22:20:30'),(13618,505,1,10896,'2.99','2005-08-02 01:19:33','2006-02-15 22:20:30'),(13619,505,1,11163,'0.99','2005-08-02 10:08:40','2006-02-15 22:20:30'),(13620,505,1,11907,'2.99','2005-08-17 15:40:47','2006-02-15 22:20:30'),(13621,505,2,13612,'3.99','2005-08-20 06:22:08','2006-02-15 22:20:30'),(13622,505,1,14398,'2.99','2005-08-21 10:27:21','2006-02-15 22:20:30'),(13623,505,1,14802,'2.99','2005-08-22 00:48:23','2006-02-15 22:20:30'),(13624,505,1,15436,'4.99','2005-08-23 00:30:26','2006-02-15 22:20:30'),(13625,505,2,15867,'4.99','2006-02-14 15:16:03','2006-02-15 22:20:31'),(13626,506,1,114,'3.99','2005-05-25 19:12:42','2006-02-15 22:20:31'),(13627,506,2,387,'2.99','2005-05-27 10:35:27','2006-02-15 22:20:31'),(13628,506,2,410,'3.99','2005-05-27 14:11:22','2006-02-15 22:20:31'),(13629,506,1,547,'8.99','2005-05-28 07:24:28','2006-02-15 22:20:31'),(13630,506,2,907,'0.99','2005-05-30 10:37:27','2006-02-15 22:20:31'),(13631,506,1,1042,'2.99','2005-05-31 05:53:00','2006-02-15 22:20:31'),(13632,506,2,1153,'4.99','2005-05-31 21:36:44','2006-02-15 22:20:31'),(13633,506,1,1446,'6.99','2005-06-15 19:13:45','2006-02-15 22:20:31'),(13634,506,1,1467,'2.99','2005-06-15 20:47:10','2006-02-15 22:20:31'),(13635,506,2,1565,'0.99','2005-06-16 03:13:09','2006-02-15 22:20:31'),(13636,506,1,2755,'9.99','2005-06-19 16:56:31','2006-02-15 22:20:31'),(13637,506,2,2824,'6.99','2005-06-19 20:31:45','2006-02-15 22:20:31'),(13638,506,2,4594,'7.99','2005-07-08 06:40:06','2006-02-15 22:20:31'),(13639,506,2,4640,'6.99','2005-07-08 08:59:34','2006-02-15 22:20:31'),(13640,506,2,4806,'8.99','2005-07-08 17:01:02','2006-02-15 22:20:31'),(13641,506,2,5985,'0.99','2005-07-11 00:51:58','2006-02-15 22:20:32'),(13642,506,1,6783,'2.99','2005-07-12 16:27:56','2006-02-15 22:20:32'),(13643,506,1,7020,'0.99','2005-07-27 02:24:27','2006-02-15 22:20:32'),(13644,506,2,8096,'9.99','2005-07-28 18:32:46','2006-02-15 22:20:32'),(13645,506,2,8506,'0.99','2005-07-29 09:23:52','2006-02-15 22:20:32'),(13646,506,2,9654,'3.99','2005-07-31 05:57:42','2006-02-15 22:20:32'),(13647,506,2,9972,'2.99','2005-07-31 16:42:43','2006-02-15 22:20:32'),(13648,506,1,10477,'2.99','2005-08-01 10:04:17','2006-02-15 22:20:32'),(13649,506,1,10873,'4.99','2005-08-02 00:30:34','2006-02-15 22:20:32'),(13650,506,2,11238,'0.99','2005-08-02 13:25:50','2006-02-15 22:20:32'),(13651,506,2,11781,'4.99','2005-08-17 10:37:00','2006-02-15 22:20:32'),(13652,506,1,12994,'0.99','2005-08-19 07:26:10','2006-02-15 22:20:32'),(13653,506,2,13073,'2.99','2005-08-19 10:05:38','2006-02-15 22:20:32'),(13654,506,2,13767,'0.99','2005-08-20 11:43:36','2006-02-15 22:20:32'),(13655,506,1,14074,'1.99','2005-08-20 23:16:07','2006-02-15 22:20:32'),(13656,506,1,14337,'2.99','2005-08-21 08:34:26','2006-02-15 22:20:32'),(13657,506,2,14395,'6.99','2005-08-21 10:24:00','2006-02-15 22:20:33'),(13658,506,2,15022,'5.99','2005-08-22 08:55:43','2006-02-15 22:20:33'),(13659,506,2,15572,'1.99','2005-08-23 05:28:01','2006-02-15 22:20:33'),(13660,506,1,15694,'9.99','2005-08-23 10:02:46','2006-02-15 22:20:33'),(13661,507,1,52,'0.99','2005-05-25 06:51:29','2006-02-15 22:20:33'),(13662,507,2,713,'4.99','2005-05-29 04:10:17','2006-02-15 22:20:33'),(13663,507,2,1307,'4.99','2005-06-15 10:06:15','2006-02-15 22:20:33'),(13664,507,1,2143,'4.99','2005-06-17 21:58:13','2006-02-15 22:20:33'),(13665,507,2,2283,'4.99','2005-06-18 06:56:06','2006-02-15 22:20:33'),(13666,507,1,3660,'4.99','2005-07-06 08:07:29','2006-02-15 22:20:33'),(13667,507,1,3880,'2.99','2005-07-06 18:32:49','2006-02-15 22:20:33'),(13668,507,2,4440,'0.99','2005-07-07 23:00:58','2006-02-15 22:20:33'),(13669,507,2,4455,'2.99','2005-07-07 23:43:46','2006-02-15 22:20:33'),(13670,507,2,4744,'0.99','2005-07-08 13:43:57','2006-02-15 22:20:33'),(13671,507,2,4901,'2.99','2005-07-08 20:44:51','2006-02-15 22:20:33'),(13672,507,1,5962,'0.99','2005-07-10 23:45:22','2006-02-15 22:20:33'),(13673,507,1,6351,'6.99','2005-07-11 20:31:44','2006-02-15 22:20:34'),(13674,507,1,6396,'1.99','2005-07-11 22:31:08','2006-02-15 22:20:34'),(13675,507,1,6891,'2.99','2005-07-12 21:07:35','2006-02-15 22:20:34'),(13676,507,2,7770,'5.99','2005-07-28 06:49:35','2006-02-15 22:20:34'),(13677,507,1,7970,'5.99','2005-07-28 13:58:38','2006-02-15 22:20:34'),(13678,507,2,8369,'2.99','2005-07-29 05:15:42','2006-02-15 22:20:34'),(13679,507,2,8976,'2.99','2005-07-30 04:12:32','2006-02-15 22:20:34'),(13680,507,1,9003,'2.99','2005-07-30 05:02:52','2006-02-15 22:20:34'),(13681,507,2,12071,'6.99','2005-08-17 21:49:14','2006-02-15 22:20:34'),(13682,507,2,12275,'4.99','2005-08-18 04:42:02','2006-02-15 22:20:34'),(13683,507,1,12343,'4.99','2005-08-18 07:15:13','2006-02-15 22:20:34'),(13684,507,2,14625,'4.99','2005-08-21 18:34:21','2006-02-15 22:20:34'),(13685,507,1,15394,'2.99','2005-08-22 23:04:21','2006-02-15 22:20:34'),(13686,508,1,369,'2.99','2005-05-27 07:46:49','2006-02-15 22:20:34'),(13687,508,2,921,'2.99','2005-05-30 11:53:09','2006-02-15 22:20:34'),(13688,508,2,1661,'4.99','2005-06-16 10:12:57','2006-02-15 22:20:34'),(13689,508,2,5657,'9.99','2005-07-10 07:33:43','2006-02-15 22:20:35'),(13690,508,2,5978,'6.99','2005-07-11 00:16:54','2006-02-15 22:20:35'),(13691,508,1,6101,'4.99','2005-07-11 06:50:33','2006-02-15 22:20:35'),(13692,508,2,6646,'0.99','2005-07-12 10:41:34','2006-02-15 22:20:35'),(13693,508,2,6929,'8.99','2005-07-26 22:59:19','2006-02-15 22:20:35'),(13694,508,1,7283,'5.99','2005-07-27 12:02:41','2006-02-15 22:20:35'),(13695,508,2,7322,'3.99','2005-07-27 13:37:26','2006-02-15 22:20:35'),(13696,508,2,7327,'7.99','2005-07-27 13:53:26','2006-02-15 22:20:35'),(13697,508,2,7668,'2.99','2005-07-28 02:41:31','2006-02-15 22:20:35'),(13698,508,2,7676,'4.99','2005-07-28 02:55:27','2006-02-15 22:20:35'),(13699,508,2,8191,'4.99','2005-07-28 22:47:14','2006-02-15 22:20:35'),(13700,508,2,9694,'5.99','2005-07-31 07:13:16','2006-02-15 22:20:35'),(13701,508,1,9706,'2.99','2005-07-31 07:43:19','2006-02-15 22:20:35'),(13702,508,2,10128,'2.99','2005-07-31 21:40:04','2006-02-15 22:20:35'),(13703,508,1,10746,'8.99','2005-08-01 19:58:49','2006-02-15 22:20:35'),(13704,508,1,11365,'2.99','2005-08-02 18:00:09','2006-02-15 22:20:35'),(13705,508,2,11447,'6.99','2005-08-02 20:36:25','2006-02-15 22:20:36'),(13706,508,1,13095,'6.99','2005-08-19 10:48:10','2006-02-15 22:20:36'),(13707,508,2,13201,'2.99','2005-08-19 14:56:05','2006-02-15 22:20:36'),(13708,508,1,15010,'6.99','2005-08-22 08:30:17','2006-02-15 22:20:36'),(13709,508,1,15195,'4.99','2005-08-22 16:08:23','2006-02-15 22:20:36'),(13710,508,1,14318,'0.99','2006-02-14 15:16:03','2006-02-15 22:20:36'),(13711,509,1,22,'4.99','2005-05-25 02:19:23','2006-02-15 22:20:36'),(13712,509,1,831,'8.99','2005-05-29 22:50:25','2006-02-15 22:20:36'),(13713,509,1,1267,'2.99','2005-06-15 07:21:21','2006-02-15 22:20:36'),(13714,509,2,2919,'4.99','2005-06-20 04:10:16','2006-02-15 22:20:36'),(13715,509,2,4139,'1.99','2005-07-07 08:17:35','2006-02-15 22:20:36'),(13716,509,2,4266,'4.99','2005-07-07 14:34:50','2006-02-15 22:20:36'),(13717,509,2,4832,'2.99','2005-07-08 18:07:05','2006-02-15 22:20:36'),(13718,509,2,5008,'2.99','2005-07-09 01:31:42','2006-02-15 22:20:36'),(13719,509,1,6591,'5.99','2005-07-12 07:13:46','2006-02-15 22:20:36'),(13720,509,1,7848,'6.99','2005-07-28 09:24:31','2006-02-15 22:20:36'),(13721,509,1,8114,'8.99','2005-07-28 19:14:06','2006-02-15 22:20:37'),(13722,509,1,8214,'5.99','2005-07-28 23:37:57','2006-02-15 22:20:37'),(13723,509,2,8240,'0.99','2005-07-29 00:33:32','2006-02-15 22:20:37'),(13724,509,1,10189,'4.99','2005-08-01 00:25:00','2006-02-15 22:20:37'),(13725,509,2,10988,'5.99','2005-08-02 04:38:17','2006-02-15 22:20:37'),(13726,509,1,11814,'6.99','2005-08-17 12:09:20','2006-02-15 22:20:37'),(13727,509,2,12109,'4.99','2005-08-17 22:58:35','2006-02-15 22:20:37'),(13728,509,2,14045,'4.99','2005-08-20 21:50:11','2006-02-15 22:20:37'),(13729,509,2,14994,'5.99','2005-08-22 07:52:24','2006-02-15 22:20:37'),(13730,509,1,15965,'2.99','2005-08-23 19:46:39','2006-02-15 22:20:37'),(13731,510,1,75,'8.99','2005-05-25 11:13:34','2006-02-15 22:20:37'),(13732,510,1,372,'5.99','2005-05-27 08:13:58','2006-02-15 22:20:37'),(13733,510,2,1118,'4.99','2005-05-31 16:23:02','2006-02-15 22:20:37'),(13734,510,2,1435,'5.99','2005-06-15 18:32:30','2006-02-15 22:20:37'),(13735,510,2,1757,'0.99','2005-06-16 17:32:24','2006-02-15 22:20:37'),(13736,510,2,1925,'0.99','2005-06-17 06:16:47','2006-02-15 22:20:37'),(13737,510,1,2729,'8.99','2005-06-19 15:06:15','2006-02-15 22:20:38'),(13738,510,2,2806,'0.99','2005-06-19 19:30:48','2006-02-15 22:20:38'),(13739,510,2,2817,'0.99','2005-06-19 20:05:22','2006-02-15 22:20:38'),(13740,510,2,3352,'8.99','2005-06-21 11:26:29','2006-02-15 22:20:38'),(13741,510,2,3465,'5.99','2005-06-21 22:10:01','2006-02-15 22:20:38'),(13742,510,2,3744,'2.99','2005-07-06 12:10:02','2006-02-15 22:20:38'),(13743,510,1,4014,'4.99','2005-07-07 00:58:54','2006-02-15 22:20:38'),(13744,510,2,5851,'4.99','2005-07-10 17:40:47','2006-02-15 22:20:38'),(13745,510,1,6531,'1.99','2005-07-12 04:35:24','2006-02-15 22:20:38'),(13746,510,1,7457,'2.99','2005-07-27 18:35:17','2006-02-15 22:20:38'),(13747,510,1,7678,'8.99','2005-07-28 02:58:16','2006-02-15 22:20:38'),(13748,510,2,7794,'9.99','2005-07-28 07:28:03','2006-02-15 22:20:38'),(13749,510,2,8763,'3.99','2005-07-29 19:38:24','2006-02-15 22:20:38'),(13750,510,1,8926,'4.99','2005-07-30 02:10:31','2006-02-15 22:20:38'),(13751,510,1,10131,'0.99','2005-07-31 21:45:28','2006-02-15 22:20:38'),(13752,510,2,10265,'7.99','2005-08-01 03:05:04','2006-02-15 22:20:38'),(13753,510,2,11996,'4.99','2005-08-17 18:34:37','2006-02-15 22:20:39'),(13754,510,1,12317,'0.99','2005-08-18 06:17:06','2006-02-15 22:20:39'),(13755,510,2,12406,'2.99','2005-08-18 09:38:02','2006-02-15 22:20:39'),(13756,510,1,15065,'4.99','2005-08-22 10:46:44','2006-02-15 22:20:39'),(13757,511,1,56,'2.99','2005-05-25 08:28:11','2006-02-15 22:20:39'),(13758,511,1,819,'3.99','2005-05-29 21:00:32','2006-02-15 22:20:39'),(13759,511,2,1281,'2.99','2005-06-15 08:21:39','2006-02-15 22:20:39'),(13760,511,1,1508,'2.99','2005-06-15 22:33:24','2006-02-15 22:20:39'),(13761,511,2,2966,'10.99','2005-06-20 07:39:33','2006-02-15 22:20:39'),(13762,511,2,3366,'4.99','2005-06-21 13:03:37','2006-02-15 22:20:39'),(13763,511,2,3600,'4.99','2005-07-06 05:19:42','2006-02-15 22:20:39'),(13764,511,1,3852,'0.99','2005-07-06 16:57:49','2006-02-15 22:20:39'),(13765,511,1,4482,'4.99','2005-07-08 01:01:18','2006-02-15 22:20:39'),(13766,511,2,5164,'3.99','2005-07-09 09:03:14','2006-02-15 22:20:39'),(13767,511,1,5601,'0.99','2005-07-10 04:56:55','2006-02-15 22:20:39'),(13768,511,2,6040,'0.99','2005-07-11 03:14:26','2006-02-15 22:20:39'),(13769,511,1,6320,'0.99','2005-07-11 18:50:55','2006-02-15 22:20:40'),(13770,511,1,8026,'4.99','2005-07-28 16:05:38','2006-02-15 22:20:40'),(13771,511,1,9095,'0.99','2005-07-30 08:38:36','2006-02-15 22:20:40'),(13772,511,1,9143,'6.99','2005-07-30 10:22:11','2006-02-15 22:20:40'),(13773,511,1,9760,'4.99','2005-07-31 09:29:33','2006-02-15 22:20:40'),(13774,511,1,10231,'2.99','2005-08-01 01:50:49','2006-02-15 22:20:40'),(13775,511,2,10429,'2.99','2005-08-01 08:34:18','2006-02-15 22:20:40'),(13776,511,2,12110,'6.99','2005-08-17 22:59:46','2006-02-15 22:20:40'),(13777,511,1,12920,'4.99','2005-08-19 04:32:32','2006-02-15 22:20:40'),(13778,511,1,14213,'4.99','2005-08-21 04:30:47','2006-02-15 22:20:40'),(13779,511,1,14302,'6.99','2005-08-21 07:19:57','2006-02-15 22:20:40'),(13780,511,1,15172,'4.99','2005-08-22 15:25:33','2006-02-15 22:20:40'),(13781,512,1,1176,'6.99','2005-06-15 00:28:37','2006-02-15 22:20:40'),(13782,512,2,2029,'4.99','2005-06-17 13:10:59','2006-02-15 22:20:40'),(13783,512,1,2364,'2.99','2005-06-18 13:37:32','2006-02-15 22:20:40'),(13784,512,1,4752,'5.99','2005-07-08 14:15:20','2006-02-15 22:20:40'),(13785,512,1,4799,'0.99','2005-07-08 16:49:27','2006-02-15 22:20:41'),(13786,512,1,5064,'6.99','2005-07-09 04:38:51','2006-02-15 22:20:41'),(13787,512,2,5813,'3.99','2005-07-10 15:34:37','2006-02-15 22:20:41'),(13788,512,1,7219,'2.99','2005-07-27 09:35:36','2006-02-15 22:20:41'),(13789,512,1,7507,'0.99','2005-07-27 20:31:48','2006-02-15 22:20:41'),(13790,512,1,7715,'6.99','2005-07-28 04:32:38','2006-02-15 22:20:41'),(13791,512,2,8868,'4.99','2005-07-30 00:02:26','2006-02-15 22:20:41'),(13792,512,1,9055,'2.99','2005-07-30 07:13:07','2006-02-15 22:20:41'),(13793,512,2,10232,'4.99','2005-08-01 01:50:55','2006-02-15 22:20:41'),(13794,512,2,10670,'3.99','2005-08-01 17:07:16','2006-02-15 22:20:41'),(13795,512,2,11818,'9.99','2005-08-17 12:22:04','2006-02-15 22:20:41'),(13796,512,2,12957,'8.99','2005-08-19 06:12:44','2006-02-15 22:20:41'),(13797,512,2,13156,'4.99','2005-08-19 13:10:42','2006-02-15 22:20:41'),(13798,512,2,13771,'0.99','2005-08-20 11:47:21','2006-02-15 22:20:41'),(13799,512,1,14288,'4.99','2005-08-21 06:57:34','2006-02-15 22:20:41'),(13800,512,1,14870,'2.99','2005-08-22 03:23:20','2006-02-15 22:20:41'),(13801,512,1,15153,'2.99','2005-08-22 14:26:01','2006-02-15 22:20:42'),(13802,512,2,15265,'3.99','2005-08-22 18:35:59','2006-02-15 22:20:42'),(13803,512,1,15317,'3.99','2005-08-22 20:14:13','2006-02-15 22:20:42'),(13804,512,2,15733,'4.99','2005-08-23 11:37:32','2006-02-15 22:20:42'),(13805,512,2,15990,'4.99','2005-08-23 20:25:11','2006-02-15 22:20:42'),(13806,512,1,12786,'0.99','2006-02-14 15:16:03','2006-02-15 22:20:42'),(13807,513,2,993,'4.99','2005-05-30 23:54:19','2006-02-15 22:20:42'),(13808,513,1,1607,'2.99','2005-06-16 06:25:35','2006-02-15 22:20:42'),(13809,513,2,2290,'7.99','2005-06-18 07:34:37','2006-02-15 22:20:42'),(13810,513,2,2737,'1.99','2005-06-19 15:48:33','2006-02-15 22:20:42'),(13811,513,2,3872,'0.99','2005-07-06 18:00:19','2006-02-15 22:20:42'),(13812,513,2,4055,'2.99','2005-07-07 03:49:13','2006-02-15 22:20:42'),(13813,513,2,4178,'4.99','2005-07-07 10:14:31','2006-02-15 22:20:42'),(13814,513,2,4220,'4.99','2005-07-07 12:12:36','2006-02-15 22:20:42'),(13815,513,1,5741,'7.99','2005-07-10 11:55:40','2006-02-15 22:20:42'),(13816,513,1,6027,'4.99','2005-07-11 02:26:29','2006-02-15 22:20:42'),(13817,513,1,7655,'0.99','2005-07-28 02:01:11','2006-02-15 22:20:43'),(13818,513,2,8320,'4.99','2005-07-29 03:49:58','2006-02-15 22:20:43'),(13819,513,1,8350,'4.99','2005-07-29 04:50:39','2006-02-15 22:20:43'),(13820,513,2,8683,'9.99','2005-07-29 16:15:43','2006-02-15 22:20:43'),(13821,513,1,8798,'5.99','2005-07-29 21:15:38','2006-02-15 22:20:43'),(13822,513,2,9862,'2.99','2005-07-31 13:05:03','2006-02-15 22:20:43'),(13823,513,1,10012,'3.99','2005-07-31 18:06:06','2006-02-15 22:20:43'),(13824,513,2,11081,'2.99','2005-08-02 07:30:14','2006-02-15 22:20:43'),(13825,513,1,11165,'2.99','2005-08-02 10:12:17','2006-02-15 22:20:43'),(13826,513,1,11407,'3.99','2005-08-02 19:18:43','2006-02-15 22:20:43'),(13827,513,1,11755,'3.99','2005-08-17 09:15:35','2006-02-15 22:20:43'),(13828,513,1,12559,'5.99','2005-08-18 14:53:58','2006-02-15 22:20:43'),(13829,513,2,12784,'2.99','2005-08-19 00:02:46','2006-02-15 22:20:43'),(13830,513,2,12807,'4.99','2005-08-19 00:38:46','2006-02-15 22:20:43'),(13831,513,1,13596,'5.99','2005-08-20 05:58:58','2006-02-15 22:20:43'),(13832,513,1,13690,'4.99','2005-08-20 09:07:27','2006-02-15 22:20:43'),(13833,513,2,14844,'7.99','2005-08-22 02:09:12','2006-02-15 22:20:44'),(13834,513,1,14875,'4.99','2005-08-22 03:34:39','2006-02-15 22:20:44'),(13835,513,1,15035,'4.99','2005-08-22 09:34:32','2006-02-15 22:20:44'),(13836,513,2,15289,'6.99','2005-08-22 19:27:24','2006-02-15 22:20:44'),(13837,513,2,15545,'5.99','2005-08-23 04:20:16','2006-02-15 22:20:44'),(13838,514,2,536,'4.99','2005-05-28 06:17:33','2006-02-15 22:20:44'),(13839,514,2,1692,'4.99','2005-06-16 12:30:19','2006-02-15 22:20:44'),(13840,514,1,2002,'3.99','2005-06-17 11:39:58','2006-02-15 22:20:44'),(13841,514,2,2362,'0.99','2005-06-18 13:31:15','2006-02-15 22:20:44'),(13842,514,1,2789,'0.99','2005-06-19 18:48:21','2006-02-15 22:20:44'),(13843,514,2,3084,'2.99','2005-06-20 15:35:24','2006-02-15 22:20:44'),(13844,514,1,3385,'0.99','2005-06-21 14:16:48','2006-02-15 22:20:44'),(13845,514,2,3668,'5.99','2005-07-06 08:36:48','2006-02-15 22:20:44'),(13846,514,2,3860,'2.99','2005-07-06 17:20:24','2006-02-15 22:20:44'),(13847,514,1,7791,'4.99','2005-07-28 07:22:51','2006-02-15 22:20:44'),(13848,514,1,9038,'3.99','2005-07-30 06:23:35','2006-02-15 22:20:45'),(13849,514,1,11675,'1.99','2005-08-17 05:57:54','2006-02-15 22:20:45'),(13850,514,2,12067,'4.99','2005-08-17 21:36:47','2006-02-15 22:20:45'),(13851,514,1,12293,'4.99','2005-08-18 05:13:36','2006-02-15 22:20:45'),(13852,514,1,12302,'4.99','2005-08-18 05:41:39','2006-02-15 22:20:45'),(13853,514,2,12578,'0.99','2005-08-18 15:47:11','2006-02-15 22:20:45'),(13854,514,1,12752,'2.99','2005-08-18 22:33:36','2006-02-15 22:20:45'),(13855,514,2,13344,'3.99','2005-08-19 20:22:44','2006-02-15 22:20:45'),(13856,514,1,14052,'0.99','2005-08-20 22:11:46','2006-02-15 22:20:45'),(13857,514,1,14386,'1.99','2005-08-21 10:06:34','2006-02-15 22:20:45'),(13858,514,1,15451,'2.99','2005-08-23 00:56:27','2006-02-15 22:20:45'),(13859,514,1,15776,'5.99','2005-08-23 13:26:01','2006-02-15 22:20:45'),(13860,515,2,187,'8.99','2005-05-26 05:42:37','2006-02-15 22:20:45'),(13861,515,2,292,'6.99','2005-05-26 20:22:12','2006-02-15 22:20:45'),(13862,515,1,1244,'4.99','2005-06-15 05:08:40','2006-02-15 22:20:45'),(13863,515,2,1531,'5.99','2005-06-16 00:40:34','2006-02-15 22:20:45'),(13864,515,2,2003,'4.99','2005-06-17 11:40:35','2006-02-15 22:20:46'),(13865,515,2,2484,'4.99','2005-06-18 21:25:23','2006-02-15 22:20:46'),(13866,515,2,2513,'0.99','2005-06-18 23:53:15','2006-02-15 22:20:46'),(13867,515,2,3063,'3.99','2005-06-20 13:52:03','2006-02-15 22:20:46'),(13868,515,2,3782,'0.99','2005-07-06 13:57:03','2006-02-15 22:20:46'),(13869,515,2,4111,'6.99','2005-07-07 06:47:56','2006-02-15 22:20:46'),(13870,515,2,5216,'0.99','2005-07-09 11:54:58','2006-02-15 22:20:46'),(13871,515,2,5546,'2.99','2005-07-10 02:50:37','2006-02-15 22:20:46'),(13872,515,2,5697,'4.99','2005-07-10 09:44:44','2006-02-15 22:20:46'),(13873,515,2,7429,'3.99','2005-07-27 17:24:50','2006-02-15 22:20:46'),(13874,515,1,8706,'4.99','2005-07-29 17:19:15','2006-02-15 22:20:46'),(13875,515,1,10159,'4.99','2005-07-31 22:54:30','2006-02-15 22:20:46'),(13876,515,2,10716,'0.99','2005-08-01 18:53:48','2006-02-15 22:20:46'),(13877,515,1,11451,'3.99','2005-08-02 20:45:56','2006-02-15 22:20:46'),(13878,515,2,11572,'4.99','2005-08-17 01:37:55','2006-02-15 22:20:46'),(13879,515,1,11691,'3.99','2005-08-17 06:51:05','2006-02-15 22:20:47'),(13880,515,2,11937,'6.99','2005-08-17 16:48:36','2006-02-15 22:20:47'),(13881,515,2,12416,'2.99','2005-08-18 09:56:48','2006-02-15 22:20:47'),(13882,515,1,12486,'8.99','2005-08-18 12:42:50','2006-02-15 22:20:47'),(13883,515,1,12889,'5.99','2005-08-19 03:41:31','2006-02-15 22:20:47'),(13884,515,2,14072,'4.99','2005-08-20 23:07:10','2006-02-15 22:20:47'),(13885,515,2,14378,'3.99','2005-08-21 09:50:02','2006-02-15 22:20:47'),(13886,515,2,14414,'0.99','2005-08-21 11:08:17','2006-02-15 22:20:47'),(13887,515,2,15274,'4.99','2005-08-22 18:55:52','2006-02-15 22:20:47'),(13888,516,2,339,'3.99','2005-05-27 03:47:18','2006-02-15 22:20:47'),(13889,516,1,571,'1.99','2005-05-28 10:17:41','2006-02-15 22:20:47'),(13890,516,2,1159,'4.99','2005-06-14 22:55:13','2006-02-15 22:20:47'),(13891,516,1,1200,'1.99','2005-06-15 01:59:51','2006-02-15 22:20:47'),(13892,516,1,1718,'10.99','2005-06-16 14:52:02','2006-02-15 22:20:47'),(13893,516,1,2017,'0.99','2005-06-17 12:33:30','2006-02-15 22:20:47'),(13894,516,2,3068,'0.99','2005-06-20 14:02:22','2006-02-15 22:20:47'),(13895,516,1,3431,'2.99','2005-06-21 18:46:48','2006-02-15 22:20:48'),(13896,516,2,5780,'3.99','2005-07-10 13:46:23','2006-02-15 22:20:48'),(13897,516,2,6677,'6.99','2005-07-12 11:58:14','2006-02-15 22:20:48'),(13898,516,1,6858,'6.99','2005-07-12 19:53:51','2006-02-15 22:20:48'),(13899,516,1,7628,'4.99','2005-07-28 00:58:04','2006-02-15 22:20:48'),(13900,516,1,7882,'4.99','2005-07-28 10:33:42','2006-02-15 22:20:48'),(13901,516,2,8396,'4.99','2005-07-29 06:07:00','2006-02-15 22:20:48'),(13902,516,2,8534,'5.99','2005-07-29 10:30:13','2006-02-15 22:20:48'),(13903,516,2,8585,'2.99','2005-07-29 12:14:18','2006-02-15 22:20:48'),(13904,516,2,9243,'4.99','2005-07-30 14:06:27','2006-02-15 22:20:48'),(13905,516,2,11926,'0.99','2005-08-17 16:25:02','2006-02-15 22:20:48'),(13906,516,2,11939,'1.99','2005-08-17 16:55:57','2006-02-15 22:20:48'),(13907,516,1,12535,'1.99','2005-08-18 14:05:22','2006-02-15 22:20:48'),(13908,516,1,13276,'8.99','2005-08-19 17:53:42','2006-02-15 22:20:48'),(13909,516,1,14932,'0.99','2005-08-22 05:40:39','2006-02-15 22:20:48'),(13910,516,1,15526,'0.99','2005-08-23 03:44:30','2006-02-15 22:20:48'),(13911,516,1,15701,'0.99','2005-08-23 10:22:21','2006-02-15 22:20:49'),(13912,516,1,12130,'5.98','2006-02-14 15:16:03','2006-02-15 22:20:49'),(13913,516,1,12915,'0.00','2006-02-14 15:16:03','2006-02-15 22:20:49'),(13914,517,2,850,'4.99','2005-05-30 01:35:12','2006-02-15 22:20:49'),(13915,517,2,1653,'4.99','2005-06-16 09:34:45','2006-02-15 22:20:49'),(13916,517,1,1809,'8.99','2005-06-16 21:00:20','2006-02-15 22:20:49'),(13917,517,1,1850,'4.99','2005-06-17 00:31:35','2006-02-15 22:20:49'),(13918,517,2,2534,'2.99','2005-06-19 01:38:39','2006-02-15 22:20:49'),(13919,517,1,3113,'0.99','2005-06-20 17:56:40','2006-02-15 22:20:49'),(13920,517,2,4094,'2.99','2005-07-07 06:00:21','2006-02-15 22:20:49'),(13921,517,1,4109,'4.99','2005-07-07 06:39:43','2006-02-15 22:20:49'),(13922,517,1,4369,'4.99','2005-07-07 20:01:38','2006-02-15 22:20:49'),(13923,517,2,4374,'4.99','2005-07-07 20:13:58','2006-02-15 22:20:49'),(13924,517,2,4934,'0.99','2005-07-08 22:18:42','2006-02-15 22:20:49'),(13925,517,1,4993,'2.99','2005-07-09 00:49:47','2006-02-15 22:20:49'),(13926,517,1,5206,'7.99','2005-07-09 11:11:01','2006-02-15 22:20:49'),(13927,517,2,5974,'5.99','2005-07-11 00:10:37','2006-02-15 22:20:50'),(13928,517,2,6594,'4.99','2005-07-12 07:25:43','2006-02-15 22:20:50'),(13929,517,2,6903,'0.99','2005-07-12 21:58:15','2006-02-15 22:20:50'),(13930,517,2,7988,'3.99','2005-07-28 14:37:18','2006-02-15 22:20:50'),(13931,517,1,10063,'4.99','2005-07-31 19:25:13','2006-02-15 22:20:50'),(13932,517,2,10358,'4.99','2005-08-01 05:50:07','2006-02-15 22:20:50'),(13933,517,2,10433,'4.99','2005-08-01 08:45:56','2006-02-15 22:20:50'),(13934,517,1,11684,'3.99','2005-08-17 06:27:15','2006-02-15 22:20:50'),(13935,517,2,12705,'0.99','2005-08-18 20:44:14','2006-02-15 22:20:50'),(13936,517,1,13396,'0.99','2005-08-19 22:06:09','2006-02-15 22:20:50'),(13937,517,2,14190,'4.99','2005-08-21 03:35:21','2006-02-15 22:20:50'),(13938,517,1,15559,'5.99','2005-08-23 04:55:05','2006-02-15 22:20:50'),(13939,518,1,710,'2.99','2005-05-29 03:48:36','2006-02-15 22:20:50'),(13940,518,2,1552,'5.99','2005-06-16 02:01:37','2006-02-15 22:20:50'),(13941,518,2,3311,'0.99','2005-06-21 08:05:27','2006-02-15 22:20:50'),(13942,518,1,3652,'0.99','2005-07-06 07:44:30','2006-02-15 22:20:51'),(13943,518,2,4029,'7.99','2005-07-07 02:19:44','2006-02-15 22:20:51'),(13944,518,2,4661,'4.99','2005-07-08 09:55:06','2006-02-15 22:20:51'),(13945,518,2,4948,'6.99','2005-07-08 22:54:21','2006-02-15 22:20:51'),(13946,518,1,6652,'2.99','2005-07-12 10:59:38','2006-02-15 22:20:51'),(13947,518,1,6957,'2.99','2005-07-27 00:00:00','2006-02-15 22:20:51'),(13948,518,2,7038,'3.99','2005-07-27 03:07:29','2006-02-15 22:20:51'),(13949,518,2,7154,'4.99','2005-07-27 07:16:17','2006-02-15 22:20:51'),(13950,518,2,7382,'2.99','2005-07-27 15:43:15','2006-02-15 22:20:51'),(13951,518,1,7657,'2.99','2005-07-28 02:09:00','2006-02-15 22:20:51'),(13952,518,2,7839,'6.99','2005-07-28 09:01:13','2006-02-15 22:20:51'),(13953,518,1,8107,'3.99','2005-07-28 19:03:16','2006-02-15 22:20:51'),(13954,518,1,8397,'2.99','2005-07-29 06:09:35','2006-02-15 22:20:51'),(13955,518,1,10751,'5.99','2005-08-01 20:06:10','2006-02-15 22:20:51'),(13956,518,2,11433,'3.99','2005-08-02 20:13:10','2006-02-15 22:20:51'),(13957,518,2,12450,'2.99','2005-08-18 11:04:04','2006-02-15 22:20:51'),(13958,518,2,12681,'2.99','2005-08-18 19:48:06','2006-02-15 22:20:52'),(13959,518,1,13065,'4.99','2005-08-19 09:48:52','2006-02-15 22:20:52'),(13960,518,1,13539,'6.99','2005-08-20 03:40:27','2006-02-15 22:20:52'),(13961,518,1,14088,'6.99','2005-08-20 23:57:24','2006-02-15 22:20:52'),(13962,518,1,14149,'4.99','2005-08-21 02:22:47','2006-02-15 22:20:52'),(13963,518,2,14980,'0.99','2005-08-22 07:16:45','2006-02-15 22:20:52'),(13964,518,2,15434,'4.99','2005-08-23 00:28:16','2006-02-15 22:20:52'),(13965,519,1,1056,'3.99','2005-05-31 07:48:07','2006-02-15 22:20:52'),(13966,519,1,1941,'2.99','2005-06-17 07:42:45','2006-02-15 22:20:52'),(13967,519,2,2505,'8.99','2005-06-18 23:28:27','2006-02-15 22:20:52'),(13968,519,2,2997,'5.99','2005-06-20 09:23:45','2006-02-15 22:20:52'),(13969,519,2,4564,'0.99','2005-07-08 05:09:38','2006-02-15 22:20:52'),(13970,519,2,4773,'2.99','2005-07-08 15:41:39','2006-02-15 22:20:52'),(13971,519,2,5236,'0.99','2005-07-09 12:56:29','2006-02-15 22:20:52'),(13972,519,2,5547,'5.99','2005-07-10 02:52:47','2006-02-15 22:20:52'),(13973,519,2,6063,'0.99','2005-07-11 04:16:51','2006-02-15 22:20:52'),(13974,519,1,6599,'3.99','2005-07-12 07:41:14','2006-02-15 22:20:53'),(13975,519,1,9417,'6.99','2005-07-30 20:54:55','2006-02-15 22:20:53'),(13976,519,2,9441,'4.99','2005-07-30 21:43:28','2006-02-15 22:20:53'),(13977,519,2,9534,'7.99','2005-07-31 01:18:27','2006-02-15 22:20:53'),(13978,519,2,9645,'0.99','2005-07-31 05:42:49','2006-02-15 22:20:53'),(13979,519,2,9886,'7.99','2005-07-31 14:00:13','2006-02-15 22:20:53'),(13980,519,1,9905,'0.99','2005-07-31 14:37:03','2006-02-15 22:20:53'),(13981,519,1,10097,'5.99','2005-07-31 20:39:38','2006-02-15 22:20:53'),(13982,519,2,10697,'4.99','2005-08-01 18:20:23','2006-02-15 22:20:53'),(13983,519,2,12648,'7.99','2005-08-18 18:30:21','2006-02-15 22:20:53'),(13984,519,2,12924,'2.99','2005-08-19 04:51:47','2006-02-15 22:20:53'),(13985,519,1,13647,'7.99','2005-08-20 07:48:07','2006-02-15 22:20:53'),(13986,519,1,14182,'2.99','2005-08-21 03:17:10','2006-02-15 22:20:53'),(13987,519,2,15347,'2.99','2005-08-22 21:12:19','2006-02-15 22:20:53'),(13988,520,1,962,'6.99','2005-05-30 18:45:17','2006-02-15 22:20:53'),(13989,520,1,1411,'0.99','2005-06-15 17:05:36','2006-02-15 22:20:54'),(13990,520,2,2174,'6.99','2005-06-18 00:09:01','2006-02-15 22:20:54'),(13991,520,1,2772,'4.99','2005-06-19 17:59:27','2006-02-15 22:20:54'),(13992,520,2,3482,'4.99','2005-07-05 23:13:22','2006-02-15 22:20:54'),(13993,520,1,3499,'7.99','2005-07-06 00:04:20','2006-02-15 22:20:54'),(13994,520,2,4346,'2.99','2005-07-07 18:58:45','2006-02-15 22:20:54'),(13995,520,2,5799,'4.99','2005-07-10 14:53:35','2006-02-15 22:20:54'),(13996,520,1,5802,'10.99','2005-07-10 15:02:17','2006-02-15 22:20:54'),(13997,520,1,5853,'3.99','2005-07-10 17:45:13','2006-02-15 22:20:54'),(13998,520,1,6029,'2.99','2005-07-11 02:36:46','2006-02-15 22:20:54'),(13999,520,2,7198,'5.99','2005-07-27 08:50:07','2006-02-15 22:20:54'),(14000,520,1,7720,'4.99','2005-07-28 04:41:44','2006-02-15 22:20:54'),(14001,520,1,7936,'0.99','2005-07-28 12:33:21','2006-02-15 22:20:54'),(14002,520,1,8294,'2.99','2005-07-29 02:32:41','2006-02-15 22:20:54'),(14003,520,2,8435,'2.99','2005-07-29 07:20:16','2006-02-15 22:20:54'),(14004,520,1,9803,'2.99','2005-07-31 11:06:02','2006-02-15 22:20:54'),(14005,520,1,10072,'0.99','2005-07-31 19:50:37','2006-02-15 22:20:55'),(14006,520,2,10530,'4.99','2005-08-01 12:01:17','2006-02-15 22:20:55'),(14007,520,1,11566,'0.99','2005-08-17 01:28:35','2006-02-15 22:20:55'),(14008,520,1,12517,'4.99','2005-08-18 13:40:20','2006-02-15 22:20:55'),(14009,520,1,12628,'5.99','2005-08-18 17:40:25','2006-02-15 22:20:55'),(14010,520,1,12647,'5.99','2005-08-18 18:29:51','2006-02-15 22:20:55'),(14011,520,1,13311,'0.99','2005-08-19 19:07:09','2006-02-15 22:20:55'),(14012,520,2,13438,'2.99','2005-08-19 23:38:02','2006-02-15 22:20:55'),(14013,520,2,13659,'2.99','2005-08-20 08:05:52','2006-02-15 22:20:55'),(14014,520,2,13746,'5.99','2005-08-20 10:55:28','2006-02-15 22:20:55'),(14015,520,1,14372,'4.99','2005-08-21 09:39:50','2006-02-15 22:20:55'),(14016,520,1,14509,'0.99','2005-08-21 14:39:58','2006-02-15 22:20:55'),(14017,520,1,15465,'0.99','2005-08-23 01:16:33','2006-02-15 22:20:55'),(14018,520,2,15492,'2.99','2005-08-23 02:13:46','2006-02-15 22:20:55'),(14019,520,1,15948,'7.99','2005-08-23 18:59:33','2006-02-15 22:20:55'),(14020,521,1,1761,'0.99','2005-06-16 17:49:57','2006-02-15 22:20:55'),(14021,521,2,2053,'0.99','2005-06-17 15:19:34','2006-02-15 22:20:56'),(14022,521,2,4284,'0.99','2005-07-07 15:31:57','2006-02-15 22:20:56'),(14023,521,2,4439,'2.99','2005-07-07 22:57:30','2006-02-15 22:20:56'),(14024,521,1,5276,'2.99','2005-07-09 14:35:13','2006-02-15 22:20:56'),(14025,521,2,5458,'4.99','2005-07-09 22:35:49','2006-02-15 22:20:56'),(14026,521,2,5580,'6.99','2005-07-10 04:05:49','2006-02-15 22:20:56'),(14027,521,2,5686,'0.99','2005-07-10 09:06:03','2006-02-15 22:20:56'),(14028,521,1,7478,'1.99','2005-07-27 19:16:02','2006-02-15 22:20:56'),(14029,521,1,9556,'7.99','2005-07-31 02:13:30','2006-02-15 22:20:56'),(14030,521,2,9937,'1.99','2005-07-31 15:28:10','2006-02-15 22:20:56'),(14031,521,1,10587,'2.99','2005-08-01 14:03:38','2006-02-15 22:20:56'),(14032,521,2,11625,'2.99','2005-08-17 04:18:52','2006-02-15 22:20:56'),(14033,521,1,11967,'3.99','2005-08-17 17:45:00','2006-02-15 22:20:56'),(14034,521,2,12082,'4.99','2005-08-17 22:13:15','2006-02-15 22:20:56'),(14035,521,1,12530,'4.99','2005-08-18 13:54:48','2006-02-15 22:20:56'),(14036,521,1,13527,'2.99','2005-08-20 03:00:47','2006-02-15 22:20:57'),(14037,521,1,14423,'0.99','2005-08-21 11:23:59','2006-02-15 22:20:57'),(14038,521,2,14551,'3.99','2005-08-21 15:57:25','2006-02-15 22:20:57'),(14039,521,2,14738,'5.99','2005-08-21 22:29:13','2006-02-15 22:20:57'),(14040,521,2,15170,'4.99','2005-08-22 15:22:15','2006-02-15 22:20:57'),(14041,521,2,15329,'2.99','2005-08-22 20:32:39','2006-02-15 22:20:57'),(14042,521,2,11672,'4.99','2006-02-14 15:16:03','2006-02-15 22:20:57'),(14043,522,2,426,'5.99','2005-05-27 15:56:57','2006-02-15 22:20:57'),(14044,522,1,1289,'3.99','2005-06-15 08:44:09','2006-02-15 22:20:57'),(14045,522,2,3102,'8.99','2005-06-20 16:55:55','2006-02-15 22:20:57'),(14046,522,1,3188,'2.99','2005-06-20 23:10:27','2006-02-15 22:20:57'),(14047,522,2,3191,'0.99','2005-06-20 23:46:39','2006-02-15 22:20:57'),(14048,522,1,3594,'0.99','2005-07-06 04:42:47','2006-02-15 22:20:57'),(14049,522,2,4078,'4.99','2005-07-07 05:05:05','2006-02-15 22:20:57'),(14050,522,2,4563,'9.99','2005-07-08 05:08:55','2006-02-15 22:20:57'),(14051,522,2,4701,'4.99','2005-07-08 11:38:48','2006-02-15 22:20:57'),(14052,522,2,5271,'6.99','2005-07-09 14:25:01','2006-02-15 22:20:58'),(14053,522,2,5514,'6.99','2005-07-10 01:09:42','2006-02-15 22:20:58'),(14054,522,2,5532,'4.99','2005-07-10 02:17:31','2006-02-15 22:20:58'),(14055,522,2,5936,'0.99','2005-07-10 22:14:30','2006-02-15 22:20:58'),(14056,522,2,7262,'4.99','2005-07-27 11:15:36','2006-02-15 22:20:58'),(14057,522,1,7955,'2.99','2005-07-28 13:31:36','2006-02-15 22:20:58'),(14058,522,2,8181,'4.99','2005-07-28 22:18:38','2006-02-15 22:20:58'),(14059,522,1,8642,'6.99','2005-07-29 14:38:17','2006-02-15 22:20:58'),(14060,522,1,8966,'2.99','2005-07-30 03:54:12','2006-02-15 22:20:58'),(14061,522,1,9047,'7.99','2005-07-30 06:56:33','2006-02-15 22:20:58'),(14062,522,2,9227,'7.99','2005-07-30 13:36:13','2006-02-15 22:20:58'),(14063,522,1,9335,'4.99','2005-07-30 18:00:53','2006-02-15 22:20:58'),(14064,522,1,9412,'5.99','2005-07-30 20:44:10','2006-02-15 22:20:58'),(14065,522,2,9533,'5.99','2005-07-31 01:18:10','2006-02-15 22:20:58'),(14066,522,2,10223,'0.99','2005-08-01 01:23:15','2006-02-15 22:20:58'),(14067,522,1,10411,'3.99','2005-08-01 07:56:32','2006-02-15 22:20:59'),(14068,522,1,10675,'7.99','2005-08-01 17:11:57','2006-02-15 22:20:59'),(14069,522,2,10821,'5.99','2005-08-01 22:54:27','2006-02-15 22:20:59'),(14070,522,2,11696,'2.99','2005-08-17 07:01:09','2006-02-15 22:20:59'),(14071,522,2,11830,'1.99','2005-08-17 12:53:15','2006-02-15 22:20:59'),(14072,522,2,12494,'6.99','2005-08-18 12:53:49','2006-02-15 22:20:59'),(14073,522,2,13605,'6.99','2005-08-20 06:06:17','2006-02-15 22:20:59'),(14074,522,2,14467,'2.99','2005-08-21 13:03:33','2006-02-15 22:20:59'),(14075,522,1,15921,'6.99','2005-08-23 18:06:54','2006-02-15 22:20:59'),(14076,523,1,42,'4.99','2005-05-25 05:24:58','2006-02-15 22:20:59'),(14077,523,2,664,'0.99','2005-05-28 21:31:08','2006-02-15 22:20:59'),(14078,523,2,1729,'6.99','2005-06-16 15:29:47','2006-02-15 22:20:59'),(14079,523,1,2447,'8.99','2005-06-18 19:10:55','2006-02-15 22:20:59'),(14080,523,1,2583,'7.99','2005-06-19 05:01:40','2006-02-15 22:20:59'),(14081,523,2,2669,'0.99','2005-06-19 11:28:52','2006-02-15 22:20:59'),(14082,523,1,4605,'4.99','2005-07-08 07:00:14','2006-02-15 22:20:59'),(14083,523,2,5155,'2.99','2005-07-09 08:46:54','2006-02-15 22:21:00'),(14084,523,1,5287,'6.99','2005-07-09 15:11:54','2006-02-15 22:21:00'),(14085,523,2,5932,'2.99','2005-07-10 22:05:15','2006-02-15 22:21:00'),(14086,523,2,6675,'4.99','2005-07-12 11:53:06','2006-02-15 22:21:00'),(14087,523,2,7642,'1.99','2005-07-28 01:16:51','2006-02-15 22:21:00'),(14088,523,2,8141,'0.99','2005-07-28 20:21:19','2006-02-15 22:21:00'),(14089,523,1,8372,'5.99','2005-07-29 05:18:08','2006-02-15 22:21:00'),(14090,523,1,9071,'2.99','2005-07-30 07:40:58','2006-02-15 22:21:00'),(14091,523,2,9667,'6.99','2005-07-31 06:23:52','2006-02-15 22:21:00'),(14092,523,2,10470,'1.99','2005-08-01 09:52:26','2006-02-15 22:21:00'),(14093,523,1,11827,'4.99','2005-08-17 12:44:27','2006-02-15 22:21:00'),(14094,523,1,12288,'2.99','2005-08-18 05:01:20','2006-02-15 22:21:00'),(14095,523,1,13133,'2.99','2005-08-19 12:11:03','2006-02-15 22:21:00'),(14096,523,1,14766,'4.99','2005-08-21 23:42:20','2006-02-15 22:21:00'),(14097,523,1,15040,'2.99','2005-08-22 09:41:09','2006-02-15 22:21:00'),(14098,524,2,118,'0.99','2005-05-25 19:31:18','2006-02-15 22:21:00'),(14099,524,1,982,'4.99','2005-05-30 22:15:24','2006-02-15 22:21:01'),(14100,524,1,1306,'1.99','2005-06-15 09:59:24','2006-02-15 22:21:01'),(14101,524,2,1651,'4.99','2005-06-16 09:24:38','2006-02-15 22:21:01'),(14102,524,2,3454,'2.99','2005-06-21 21:12:13','2006-02-15 22:21:01'),(14103,524,1,4366,'5.99','2005-07-07 19:48:36','2006-02-15 22:21:01'),(14104,524,2,5037,'4.99','2005-07-09 02:59:10','2006-02-15 22:21:01'),(14105,524,2,6161,'4.99','2005-07-11 10:11:54','2006-02-15 22:21:01'),(14106,524,1,6240,'6.99','2005-07-11 14:32:41','2006-02-15 22:21:01'),(14107,524,2,6745,'4.99','2005-07-12 14:30:51','2006-02-15 22:21:01'),(14108,524,2,7014,'8.99','2005-07-27 02:14:40','2006-02-15 22:21:01'),(14109,524,1,7040,'4.99','2005-07-27 03:17:19','2006-02-15 22:21:01'),(14110,524,1,8507,'6.99','2005-07-29 09:29:44','2006-02-15 22:21:01'),(14111,524,2,13626,'2.99','2005-08-20 06:55:24','2006-02-15 22:21:01'),(14112,524,2,14046,'4.99','2005-08-20 21:53:21','2006-02-15 22:21:01'),(14113,524,1,14178,'2.99','2005-08-21 03:13:45','2006-02-15 22:21:01'),(14114,524,1,14366,'2.99','2005-08-21 09:31:39','2006-02-15 22:21:02'),(14115,524,2,14680,'1.99','2005-08-21 20:19:52','2006-02-15 22:21:02'),(14116,524,2,15206,'6.99','2005-08-22 16:33:39','2006-02-15 22:21:02'),(14117,525,1,437,'5.99','2005-05-27 17:47:22','2006-02-15 22:21:02'),(14118,525,2,1772,'2.99','2005-06-16 18:12:54','2006-02-15 22:21:02'),(14119,525,1,3993,'6.99','2005-07-06 23:37:06','2006-02-15 22:21:02'),(14120,525,1,5841,'2.99','2005-07-10 17:11:31','2006-02-15 22:21:02'),(14121,525,2,6098,'7.99','2005-07-11 06:23:28','2006-02-15 22:21:02'),(14122,525,2,6388,'6.99','2005-07-11 22:17:16','2006-02-15 22:21:02'),(14123,525,1,6689,'1.99','2005-07-12 12:22:13','2006-02-15 22:21:02'),(14124,525,2,7337,'4.99','2005-07-27 14:12:04','2006-02-15 22:21:02'),(14125,525,2,7591,'4.99','2005-07-27 23:25:54','2006-02-15 22:21:02'),(14126,525,1,8007,'0.99','2005-07-28 15:22:27','2006-02-15 22:21:02'),(14127,525,1,8960,'4.99','2005-07-30 03:36:31','2006-02-15 22:21:02'),(14128,525,2,9507,'5.99','2005-07-31 00:22:29','2006-02-15 22:21:02'),(14129,525,1,9702,'0.99','2005-07-31 07:34:07','2006-02-15 22:21:02'),(14130,525,1,10496,'2.99','2005-08-01 10:53:16','2006-02-15 22:21:03'),(14131,525,2,11406,'2.99','2005-08-02 19:16:10','2006-02-15 22:21:03'),(14132,525,1,11660,'1.99','2005-08-17 05:22:42','2006-02-15 22:21:03'),(14133,525,1,15159,'0.99','2005-08-22 14:32:25','2006-02-15 22:21:03'),(14134,525,2,15623,'3.99','2005-08-23 07:23:29','2006-02-15 22:21:03'),(14135,525,1,14954,'2.99','2006-02-14 15:16:03','2006-02-15 22:21:03'),(14136,526,1,495,'4.99','2005-05-28 00:40:48','2006-02-15 22:21:03'),(14137,526,2,679,'4.99','2005-05-28 23:24:57','2006-02-15 22:21:03'),(14138,526,2,1015,'2.99','2005-05-31 02:44:57','2006-02-15 22:21:03'),(14139,526,1,1255,'4.99','2005-06-15 06:13:45','2006-02-15 22:21:03'),(14140,526,2,1848,'0.99','2005-06-17 00:07:07','2006-02-15 22:21:03'),(14141,526,2,1865,'7.99','2005-06-17 01:49:36','2006-02-15 22:21:03'),(14142,526,2,1972,'2.99','2005-06-17 09:25:49','2006-02-15 22:21:03'),(14143,526,1,1981,'2.99','2005-06-17 10:03:34','2006-02-15 22:21:03'),(14144,526,2,2398,'4.99','2005-06-18 15:56:53','2006-02-15 22:21:03'),(14145,526,1,2828,'2.99','2005-06-19 20:51:33','2006-02-15 22:21:04'),(14146,526,2,2932,'6.99','2005-06-20 04:51:19','2006-02-15 22:21:04'),(14147,526,1,3339,'6.99','2005-06-21 10:37:11','2006-02-15 22:21:04'),(14148,526,1,3619,'1.99','2005-07-06 05:59:44','2006-02-15 22:21:04'),(14149,526,2,3905,'5.99','2005-07-06 19:33:34','2006-02-15 22:21:04'),(14150,526,1,4423,'6.99','2005-07-07 22:11:28','2006-02-15 22:21:04'),(14151,526,2,5056,'2.99','2005-07-09 04:13:45','2006-02-15 22:21:04'),(14152,526,2,5121,'3.99','2005-07-09 07:18:31','2006-02-15 22:21:04'),(14153,526,1,6316,'7.99','2005-07-11 18:44:52','2006-02-15 22:21:04'),(14154,526,1,6404,'4.99','2005-07-11 22:49:50','2006-02-15 22:21:04'),(14155,526,2,6650,'2.99','2005-07-12 10:57:10','2006-02-15 22:21:04'),(14156,526,1,6671,'3.99','2005-07-12 11:48:48','2006-02-15 22:21:04'),(14157,526,2,7270,'7.99','2005-07-27 11:29:02','2006-02-15 22:21:04'),(14158,526,2,7343,'0.99','2005-07-27 14:27:13','2006-02-15 22:21:04'),(14159,526,2,7399,'1.99','2005-07-27 16:16:02','2006-02-15 22:21:04'),(14160,526,2,7543,'5.99','2005-07-27 21:44:28','2006-02-15 22:21:04'),(14161,526,2,7883,'2.99','2005-07-28 10:37:20','2006-02-15 22:21:05'),(14162,526,1,8053,'4.99','2005-07-28 16:59:41','2006-02-15 22:21:05'),(14163,526,1,8232,'4.99','2005-07-29 00:14:37','2006-02-15 22:21:05'),(14164,526,1,8441,'2.99','2005-07-29 07:33:05','2006-02-15 22:21:05'),(14165,526,2,9577,'6.99','2005-07-31 02:53:33','2006-02-15 22:21:05'),(14166,526,2,10020,'4.99','2005-07-31 18:21:08','2006-02-15 22:21:05'),(14167,526,2,10199,'2.99','2005-08-01 00:38:55','2006-02-15 22:21:05'),(14168,526,2,11046,'4.99','2005-08-02 06:08:34','2006-02-15 22:21:05'),(14169,526,1,11503,'10.99','2005-08-16 23:10:34','2006-02-15 22:21:05'),(14170,526,1,11612,'2.99','2005-08-17 03:48:51','2006-02-15 22:21:05'),(14171,526,2,11702,'4.99','2005-08-17 07:18:56','2006-02-15 22:21:05'),(14172,526,1,12607,'0.99','2005-08-18 17:03:49','2006-02-15 22:21:05'),(14173,526,2,13224,'8.99','2005-08-19 15:52:13','2006-02-15 22:21:05'),(14174,526,2,13580,'0.99','2005-08-20 05:23:34','2006-02-15 22:21:05'),(14175,526,1,13617,'8.99','2005-08-20 06:35:30','2006-02-15 22:21:05'),(14176,526,2,14487,'6.99','2005-08-21 13:53:33','2006-02-15 22:21:06'),(14177,526,1,14590,'7.99','2005-08-21 17:29:10','2006-02-15 22:21:06'),(14178,526,1,15168,'2.99','2005-08-22 15:14:20','2006-02-15 22:21:06'),(14179,526,1,15395,'4.99','2005-08-22 23:06:25','2006-02-15 22:21:06'),(14180,526,1,16043,'9.99','2005-08-23 22:21:03','2006-02-15 22:21:06'),(14181,527,1,1398,'2.99','2005-06-15 16:28:42','2006-02-15 22:21:06'),(14182,527,1,2422,'0.99','2005-06-18 17:28:57','2006-02-15 22:21:06'),(14183,527,2,2496,'0.99','2005-06-18 22:20:11','2006-02-15 22:21:06'),(14184,527,1,2539,'2.99','2005-06-19 01:58:39','2006-02-15 22:21:06'),(14185,527,1,4888,'0.99','2005-07-08 20:04:27','2006-02-15 22:21:06'),(14186,527,1,5365,'0.99','2005-07-09 18:27:00','2006-02-15 22:21:06'),(14187,527,2,6003,'3.99','2005-07-11 01:28:33','2006-02-15 22:21:06'),(14188,527,2,6011,'4.99','2005-07-11 01:54:48','2006-02-15 22:21:06'),(14189,527,1,6050,'2.99','2005-07-11 03:34:29','2006-02-15 22:21:06'),(14190,527,2,6975,'1.99','2005-07-27 00:39:54','2006-02-15 22:21:06'),(14191,527,1,7506,'8.99','2005-07-27 20:28:34','2006-02-15 22:21:06'),(14192,527,1,8854,'0.99','2005-07-29 23:40:07','2006-02-15 22:21:07'),(14193,527,2,9750,'0.99','2005-07-31 09:19:46','2006-02-15 22:21:07'),(14194,527,2,10486,'3.99','2005-08-01 10:23:43','2006-02-15 22:21:07'),(14195,527,2,10613,'0.99','2005-08-01 14:56:14','2006-02-15 22:21:07'),(14196,527,1,11013,'5.99','2005-08-02 05:10:54','2006-02-15 22:21:07'),(14197,527,1,11150,'2.99','2005-08-02 09:51:46','2006-02-15 22:21:07'),(14198,527,1,11624,'0.99','2005-08-17 04:17:42','2006-02-15 22:21:07'),(14199,527,1,12136,'7.99','2005-08-17 23:51:30','2006-02-15 22:21:07'),(14200,527,1,12513,'6.99','2005-08-18 13:31:45','2006-02-15 22:21:07'),(14201,527,1,14352,'6.99','2005-08-21 09:06:29','2006-02-15 22:21:07'),(14202,527,1,15144,'2.99','2005-08-22 13:49:18','2006-02-15 22:21:07'),(14203,527,1,15552,'3.99','2005-08-23 04:33:23','2006-02-15 22:21:07'),(14204,527,1,14267,'2.99','2006-02-14 15:16:03','2006-02-15 22:21:07'),(14205,528,1,204,'0.99','2005-05-26 07:30:37','2006-02-15 22:21:07'),(14206,528,2,472,'0.99','2005-05-27 21:36:15','2006-02-15 22:21:07'),(14207,528,1,533,'5.99','2005-05-28 06:14:46','2006-02-15 22:21:08'),(14208,528,2,695,'3.99','2005-05-29 01:50:53','2006-02-15 22:21:08'),(14209,528,2,793,'5.99','2005-05-29 16:44:08','2006-02-15 22:21:08'),(14210,528,2,1875,'2.99','2005-06-17 02:45:10','2006-02-15 22:21:08'),(14211,528,1,2019,'4.99','2005-06-17 12:38:44','2006-02-15 22:21:08'),(14212,528,2,3654,'4.99','2005-07-06 07:45:31','2006-02-15 22:21:08'),(14213,528,1,3664,'0.99','2005-07-06 08:15:57','2006-02-15 22:21:08'),(14214,528,2,4050,'9.99','2005-07-07 03:35:33','2006-02-15 22:21:08'),(14215,528,1,4593,'5.99','2005-07-08 06:38:12','2006-02-15 22:21:08'),(14216,528,2,5215,'3.99','2005-07-09 11:47:58','2006-02-15 22:21:08'),(14217,528,2,6561,'0.99','2005-07-12 05:24:02','2006-02-15 22:21:08'),(14218,528,1,7569,'7.99','2005-07-27 22:38:53','2006-02-15 22:21:08'),(14219,528,2,8112,'4.99','2005-07-28 19:11:07','2006-02-15 22:21:08'),(14220,528,1,8727,'3.99','2005-07-29 18:09:57','2006-02-15 22:21:08'),(14221,528,2,9488,'8.99','2005-07-30 23:42:42','2006-02-15 22:21:08'),(14222,528,1,10084,'3.99','2005-07-31 20:11:29','2006-02-15 22:21:08'),(14223,528,1,10673,'0.99','2005-08-01 17:11:51','2006-02-15 22:21:09'),(14224,528,1,10880,'2.99','2005-08-02 00:34:12','2006-02-15 22:21:09'),(14225,528,1,12818,'3.99','2005-08-19 01:04:59','2006-02-15 22:21:09'),(14226,528,2,13518,'2.99','2005-08-20 02:36:17','2006-02-15 22:21:09'),(14227,528,1,13600,'7.99','2005-08-20 06:00:25','2006-02-15 22:21:09'),(14228,528,2,14148,'2.99','2005-08-21 02:17:49','2006-02-15 22:21:09'),(14229,528,2,15880,'6.99','2005-08-23 16:43:54','2006-02-15 22:21:09'),(14230,529,1,453,'2.99','2005-05-27 19:31:16','2006-02-15 22:21:09'),(14231,529,1,1234,'1.99','2005-06-15 04:21:52','2006-02-15 22:21:09'),(14232,529,2,1686,'0.99','2005-06-16 12:08:20','2006-02-15 22:21:09'),(14233,529,2,3354,'0.99','2005-06-21 11:29:49','2006-02-15 22:21:09'),(14234,529,2,4045,'0.99','2005-07-07 03:26:14','2006-02-15 22:21:09'),(14235,529,2,4254,'0.99','2005-07-07 14:13:52','2006-02-15 22:21:09'),(14236,529,2,4444,'5.99','2005-07-07 23:07:44','2006-02-15 22:21:09'),(14237,529,1,4553,'0.99','2005-07-08 04:43:41','2006-02-15 22:21:09'),(14238,529,1,5993,'4.99','2005-07-11 01:06:41','2006-02-15 22:21:10'),(14239,529,2,6538,'6.99','2005-07-12 04:50:26','2006-02-15 22:21:10'),(14240,529,2,6541,'5.99','2005-07-12 04:53:41','2006-02-15 22:21:10'),(14241,529,1,6908,'7.99','2005-07-12 22:08:46','2006-02-15 22:21:10'),(14242,529,1,7128,'3.99','2005-07-27 06:14:36','2006-02-15 22:21:10'),(14243,529,2,8708,'2.99','2005-07-29 17:24:13','2006-02-15 22:21:10'),(14244,529,1,8979,'5.99','2005-07-30 04:20:25','2006-02-15 22:21:10'),(14245,529,2,9310,'4.99','2005-07-30 16:57:09','2006-02-15 22:21:10'),(14246,529,2,9375,'0.99','2005-07-30 19:10:17','2006-02-15 22:21:10'),(14247,529,2,10361,'10.99','2005-08-01 05:53:49','2006-02-15 22:21:10'),(14248,529,1,11862,'2.99','2005-08-17 13:54:53','2006-02-15 22:21:10'),(14249,529,2,12356,'2.99','2005-08-18 07:37:05','2006-02-15 22:21:10'),(14250,529,1,12622,'3.99','2005-08-18 17:34:11','2006-02-15 22:21:10'),(14251,529,1,13011,'4.99','2005-08-19 07:53:58','2006-02-15 22:21:10'),(14252,529,2,13132,'3.99','2005-08-19 12:10:57','2006-02-15 22:21:10'),(14253,529,1,13797,'2.99','2005-08-20 12:33:36','2006-02-15 22:21:11'),(14254,529,2,13946,'9.99','2005-08-20 17:44:32','2006-02-15 22:21:11'),(14255,529,2,14449,'4.99','2005-08-21 12:13:18','2006-02-15 22:21:11'),(14256,529,2,14764,'0.99','2005-08-21 23:37:47','2006-02-15 22:21:11'),(14257,529,1,14970,'5.99','2005-08-22 06:49:29','2006-02-15 22:21:11'),(14258,529,2,15305,'2.99','2005-08-22 19:46:05','2006-02-15 22:21:11'),(14259,530,1,851,'0.99','2005-05-30 01:35:15','2006-02-15 22:21:11'),(14260,530,2,1273,'1.99','2005-06-15 07:52:35','2006-02-15 22:21:11'),(14261,530,1,1516,'0.99','2005-06-15 23:11:10','2006-02-15 22:21:11'),(14262,530,1,2158,'2.99','2005-06-17 23:36:27','2006-02-15 22:21:11'),(14263,530,2,3669,'2.99','2005-07-06 08:38:29','2006-02-15 22:21:11'),(14264,530,2,3887,'4.99','2005-07-06 18:46:34','2006-02-15 22:21:11'),(14265,530,2,5663,'0.99','2005-07-10 08:01:33','2006-02-15 22:21:11'),(14266,530,1,7031,'3.99','2005-07-27 03:02:07','2006-02-15 22:21:11'),(14267,530,2,7075,'1.99','2005-07-27 04:11:40','2006-02-15 22:21:11'),(14268,530,1,7218,'4.99','2005-07-27 09:34:24','2006-02-15 22:21:11'),(14269,530,2,8208,'4.99','2005-07-28 23:26:35','2006-02-15 22:21:12'),(14270,530,1,8736,'0.99','2005-07-29 18:31:15','2006-02-15 22:21:12'),(14271,530,1,9914,'4.99','2005-07-31 14:51:19','2006-02-15 22:21:12'),(14272,530,2,10211,'3.99','2005-08-01 01:01:16','2006-02-15 22:21:12'),(14273,530,2,10504,'4.99','2005-08-01 11:10:55','2006-02-15 22:21:12'),(14274,530,1,11326,'0.99','2005-08-02 16:34:29','2006-02-15 22:21:12'),(14275,530,1,12220,'4.99','2005-08-18 02:50:02','2006-02-15 22:21:12'),(14276,530,1,12387,'2.99','2005-08-18 08:46:24','2006-02-15 22:21:12'),(14277,530,1,12649,'4.99','2005-08-18 18:31:47','2006-02-15 22:21:12'),(14278,530,1,13998,'5.99','2005-08-20 19:52:38','2006-02-15 22:21:12'),(14279,530,2,14707,'5.99','2005-08-21 21:06:29','2006-02-15 22:21:12'),(14280,530,2,15066,'0.99','2005-08-22 10:49:06','2006-02-15 22:21:12'),(14281,530,1,13561,'2.99','2006-02-14 15:16:03','2006-02-15 22:21:12'),(14282,531,1,233,'4.99','2005-05-26 11:43:44','2006-02-15 22:21:12'),(14283,531,1,681,'2.99','2005-05-28 23:39:44','2006-02-15 22:21:12'),(14284,531,2,2972,'2.99','2005-06-20 07:57:54','2006-02-15 22:21:13'),(14285,531,2,3921,'5.99','2005-07-06 20:29:48','2006-02-15 22:21:13'),(14286,531,1,5587,'5.99','2005-07-10 04:17:25','2006-02-15 22:21:13'),(14287,531,2,5850,'0.99','2005-07-10 17:36:27','2006-02-15 22:21:13'),(14288,531,2,5904,'4.99','2005-07-10 20:39:44','2006-02-15 22:21:13'),(14289,531,1,6756,'4.99','2005-07-12 15:08:28','2006-02-15 22:21:13'),(14290,531,1,6876,'4.99','2005-07-12 20:32:50','2006-02-15 22:21:13'),(14291,531,2,7204,'2.99','2005-07-27 09:02:31','2006-02-15 22:21:13'),(14292,531,1,7391,'6.99','2005-07-27 16:00:00','2006-02-15 22:21:13'),(14293,531,2,7444,'2.99','2005-07-27 17:49:16','2006-02-15 22:21:13'),(14294,531,2,7753,'6.99','2005-07-28 06:09:19','2006-02-15 22:21:13'),(14295,531,2,8359,'5.99','2005-07-29 05:02:12','2006-02-15 22:21:13'),(14296,531,2,8860,'4.99','2005-07-29 23:45:57','2006-02-15 22:21:13'),(14297,531,2,8943,'0.99','2005-07-30 03:06:48','2006-02-15 22:21:13'),(14298,531,2,9107,'4.99','2005-07-30 08:52:45','2006-02-15 22:21:13'),(14299,531,2,10920,'4.99','2005-08-02 02:14:10','2006-02-15 22:21:14'),(14300,531,1,10941,'5.99','2005-08-02 03:11:33','2006-02-15 22:21:14'),(14301,531,2,11026,'4.99','2005-08-02 05:46:05','2006-02-15 22:21:14'),(14302,531,1,11265,'10.99','2005-08-02 14:05:42','2006-02-15 22:21:14'),(14303,531,1,11666,'2.99','2005-08-17 05:45:10','2006-02-15 22:21:14'),(14304,531,1,12923,'2.99','2005-08-19 04:50:20','2006-02-15 22:21:14'),(14305,531,2,13300,'8.99','2005-08-19 18:46:56','2006-02-15 22:21:14'),(14306,531,2,15360,'0.99','2005-08-22 21:36:51','2006-02-15 22:21:14'),(14307,532,1,43,'2.99','2005-05-25 05:39:25','2006-02-15 22:21:14'),(14308,532,1,1694,'4.99','2005-06-16 12:40:23','2006-02-15 22:21:14'),(14309,532,2,2821,'3.99','2005-06-19 20:26:52','2006-02-15 22:21:14'),(14310,532,1,4336,'2.99','2005-07-07 18:34:36','2006-02-15 22:21:14'),(14311,532,2,4962,'4.99','2005-07-08 23:36:13','2006-02-15 22:21:14'),(14312,532,2,5190,'2.99','2005-07-09 10:25:24','2006-02-15 22:21:14'),(14313,532,1,5253,'7.99','2005-07-09 13:41:17','2006-02-15 22:21:14'),(14314,532,2,5278,'4.99','2005-07-09 14:44:23','2006-02-15 22:21:14'),(14315,532,2,5805,'8.99','2005-07-10 15:08:41','2006-02-15 22:21:15'),(14316,532,1,5887,'2.99','2005-07-10 19:45:47','2006-02-15 22:21:15'),(14317,532,2,6345,'7.99','2005-07-11 20:05:18','2006-02-15 22:21:15'),(14318,532,2,6598,'4.99','2005-07-12 07:38:25','2006-02-15 22:21:15'),(14319,532,1,6730,'3.99','2005-07-12 13:58:25','2006-02-15 22:21:15'),(14320,532,1,7192,'4.99','2005-07-27 08:36:55','2006-02-15 22:21:15'),(14321,532,2,7572,'2.99','2005-07-27 22:44:29','2006-02-15 22:21:15'),(14322,532,1,8273,'5.99','2005-07-29 01:33:16','2006-02-15 22:21:15'),(14323,532,1,9843,'2.99','2005-07-31 12:25:28','2006-02-15 22:21:15'),(14324,532,2,10286,'6.99','2005-08-01 03:35:58','2006-02-15 22:21:15'),(14325,532,2,10712,'5.99','2005-08-01 18:47:56','2006-02-15 22:21:15'),(14326,532,1,10945,'5.99','2005-08-02 03:20:23','2006-02-15 22:21:15'),(14327,532,2,11251,'2.99','2005-08-02 13:40:49','2006-02-15 22:21:15'),(14328,532,2,11318,'4.99','2005-08-02 16:09:11','2006-02-15 22:21:15'),(14329,532,2,12061,'3.99','2005-08-17 21:13:35','2006-02-15 22:21:15'),(14330,532,2,12295,'5.99','2005-08-18 05:15:46','2006-02-15 22:21:16'),(14331,532,2,13038,'4.99','2005-08-19 08:55:16','2006-02-15 22:21:16'),(14332,532,1,13192,'8.99','2005-08-19 14:30:06','2006-02-15 22:21:16'),(14333,532,1,13254,'4.99','2005-08-19 16:54:01','2006-02-15 22:21:16'),(14334,532,1,13908,'4.99','2005-08-20 16:21:40','2006-02-15 22:21:16'),(14335,532,2,15180,'0.99','2005-08-22 15:42:57','2006-02-15 22:21:16'),(14336,532,2,15414,'1.99','2005-08-22 23:43:54','2006-02-15 22:21:16'),(14337,532,1,16014,'5.99','2005-08-23 21:18:31','2006-02-15 22:21:16'),(14338,532,1,14616,'0.99','2006-02-14 15:16:03','2006-02-15 22:21:16'),(14339,533,1,173,'0.99','2005-05-26 03:42:10','2006-02-15 22:21:16'),(14340,533,2,190,'1.99','2005-05-26 06:11:28','2006-02-15 22:21:16'),(14341,533,1,615,'5.99','2005-05-28 15:35:52','2006-02-15 22:21:16'),(14342,533,1,1421,'5.99','2005-06-15 17:57:04','2006-02-15 22:21:16'),(14343,533,1,1652,'0.99','2005-06-16 09:31:37','2006-02-15 22:21:16'),(14344,533,1,1859,'0.99','2005-06-17 01:13:38','2006-02-15 22:21:16'),(14345,533,1,1954,'2.99','2005-06-17 08:37:55','2006-02-15 22:21:17'),(14346,533,2,2770,'6.99','2005-06-19 17:54:22','2006-02-15 22:21:17'),(14347,533,1,2956,'0.99','2005-06-20 06:47:23','2006-02-15 22:21:17'),(14348,533,1,4112,'8.99','2005-07-07 06:49:09','2006-02-15 22:21:17'),(14349,533,1,4788,'4.99','2005-07-08 16:17:35','2006-02-15 22:21:17'),(14350,533,2,6781,'2.99','2005-07-12 16:21:47','2006-02-15 22:21:17'),(14351,533,2,6834,'0.99','2005-07-12 18:53:37','2006-02-15 22:21:17'),(14352,533,2,6837,'9.99','2005-07-12 18:59:45','2006-02-15 22:21:17'),(14353,533,2,7555,'4.99','2005-07-27 22:17:05','2006-02-15 22:21:17'),(14354,533,1,8093,'8.99','2005-07-28 18:29:16','2006-02-15 22:21:17'),(14355,533,2,8104,'2.99','2005-07-28 18:59:36','2006-02-15 22:21:17'),(14356,533,2,8250,'2.99','2005-07-29 00:49:15','2006-02-15 22:21:17'),(14357,533,1,8471,'2.99','2005-07-29 08:32:11','2006-02-15 22:21:17'),(14358,533,1,8676,'1.99','2005-07-29 15:59:06','2006-02-15 22:21:17'),(14359,533,2,8786,'1.99','2005-07-29 20:39:49','2006-02-15 22:21:17'),(14360,533,2,10090,'3.99','2005-07-31 20:22:01','2006-02-15 22:21:17'),(14361,533,1,10380,'2.99','2005-08-01 06:34:36','2006-02-15 22:21:18'),(14362,533,1,10614,'6.99','2005-08-01 14:57:00','2006-02-15 22:21:18'),(14363,533,2,11524,'7.99','2005-08-17 00:10:55','2006-02-15 22:21:18'),(14364,533,1,11758,'8.99','2005-08-17 09:33:02','2006-02-15 22:21:18'),(14365,533,1,11918,'2.99','2005-08-17 16:08:42','2006-02-15 22:21:18'),(14366,533,1,12602,'0.99','2005-08-18 16:49:50','2006-02-15 22:21:18'),(14367,533,1,12655,'6.99','2005-08-18 18:57:44','2006-02-15 22:21:18'),(14368,533,1,14263,'7.99','2005-08-21 06:08:15','2006-02-15 22:21:18'),(14369,533,1,14800,'4.99','2005-08-22 00:46:18','2006-02-15 22:21:18'),(14370,533,2,16006,'0.99','2005-08-23 21:01:09','2006-02-15 22:21:18'),(14371,533,2,14018,'2.99','2006-02-14 15:16:03','2006-02-15 22:21:18'),(14372,534,2,304,'5.99','2005-05-26 21:21:28','2006-02-15 22:21:18'),(14373,534,2,940,'0.99','2005-05-30 15:01:02','2006-02-15 22:21:18'),(14374,534,1,1610,'4.99','2005-06-16 06:36:33','2006-02-15 22:21:18'),(14375,534,1,1673,'2.99','2005-06-16 10:40:17','2006-02-15 22:21:18'),(14376,534,1,2436,'0.99','2005-06-18 18:13:32','2006-02-15 22:21:19'),(14377,534,2,3213,'1.99','2005-06-21 01:05:19','2006-02-15 22:21:19'),(14378,534,1,3216,'4.99','2005-06-21 01:19:37','2006-02-15 22:21:19'),(14379,534,1,3735,'2.99','2005-07-06 11:42:04','2006-02-15 22:21:19'),(14380,534,2,4998,'4.99','2005-07-09 01:07:21','2006-02-15 22:21:19'),(14381,534,2,7113,'2.99','2005-07-27 05:41:20','2006-02-15 22:21:19'),(14382,534,1,7662,'2.99','2005-07-28 02:16:08','2006-02-15 22:21:19'),(14383,534,2,8633,'0.99','2005-07-29 14:19:53','2006-02-15 22:21:19'),(14384,534,1,9456,'5.99','2005-07-30 22:22:16','2006-02-15 22:21:19'),(14385,534,2,9464,'4.99','2005-07-30 22:31:31','2006-02-15 22:21:19'),(14386,534,2,10465,'5.99','2005-08-01 09:45:25','2006-02-15 22:21:19'),(14387,534,2,10725,'6.99','2005-08-01 19:11:04','2006-02-15 22:21:19'),(14388,534,1,10796,'0.99','2005-08-01 21:56:41','2006-02-15 22:21:19'),(14389,534,2,11180,'5.99','2005-08-02 10:54:30','2006-02-15 22:21:19'),(14390,534,2,12305,'2.99','2005-08-18 05:46:29','2006-02-15 22:21:19'),(14391,534,1,12691,'5.99','2005-08-18 20:07:46','2006-02-15 22:21:20'),(14392,534,2,12798,'4.99','2005-08-19 00:24:33','2006-02-15 22:21:20'),(14393,534,2,13294,'0.99','2005-08-19 18:36:35','2006-02-15 22:21:20'),(14394,534,2,14816,'1.99','2005-08-22 01:15:51','2006-02-15 22:21:20'),(14395,534,1,14526,'2.99','2006-02-14 15:16:03','2006-02-15 22:21:20'),(14396,535,1,37,'0.99','2005-05-25 04:44:31','2006-02-15 22:21:20'),(14397,535,2,541,'2.99','2005-05-28 06:41:58','2006-02-15 22:21:20'),(14398,535,1,778,'3.99','2005-05-29 14:09:53','2006-02-15 22:21:20'),(14399,535,2,959,'4.99','2005-05-30 18:07:00','2006-02-15 22:21:20'),(14400,535,1,1712,'4.99','2005-06-16 14:25:09','2006-02-15 22:21:20'),(14401,535,1,3228,'4.99','2005-06-21 02:20:24','2006-02-15 22:21:20'),(14402,535,1,4331,'4.99','2005-07-07 18:22:30','2006-02-15 22:21:20'),(14403,535,1,4718,'6.99','2005-07-08 12:32:08','2006-02-15 22:21:20'),(14404,535,1,4743,'2.99','2005-07-08 13:42:36','2006-02-15 22:21:20'),(14405,535,2,4914,'6.99','2005-07-08 21:30:53','2006-02-15 22:21:20'),(14406,535,1,5588,'0.99','2005-07-10 04:21:10','2006-02-15 22:21:21'),(14407,535,2,5890,'8.99','2005-07-10 20:00:25','2006-02-15 22:21:21'),(14408,535,1,6504,'2.99','2005-07-12 03:19:14','2006-02-15 22:21:21'),(14409,535,1,8395,'2.99','2005-07-29 06:03:30','2006-02-15 22:21:21'),(14410,535,1,8645,'4.99','2005-07-29 14:47:45','2006-02-15 22:21:21'),(14411,535,2,9440,'0.99','2005-07-30 21:40:15','2006-02-15 22:21:21'),(14412,535,1,9524,'4.99','2005-07-31 01:01:06','2006-02-15 22:21:21'),(14413,535,2,10322,'5.99','2005-08-01 04:44:13','2006-02-15 22:21:21'),(14414,535,2,10353,'3.99','2005-08-01 05:46:33','2006-02-15 22:21:21'),(14415,535,2,11736,'8.99','2005-08-17 08:40:55','2006-02-15 22:21:21'),(14416,535,1,11855,'7.99','2005-08-17 13:43:07','2006-02-15 22:21:21'),(14417,535,2,12168,'2.99','2005-08-18 01:03:52','2006-02-15 22:21:21'),(14418,535,1,12233,'0.99','2005-08-18 03:16:54','2006-02-15 22:21:21'),(14419,535,2,12673,'4.99','2005-08-18 19:21:56','2006-02-15 22:21:21'),(14420,535,1,12732,'0.99','2005-08-18 21:57:50','2006-02-15 22:21:21'),(14421,535,2,12750,'1.99','2005-08-18 22:32:39','2006-02-15 22:21:21'),(14422,535,1,13631,'4.99','2005-08-20 07:07:37','2006-02-15 22:21:22'),(14423,535,1,13852,'0.99','2005-08-20 14:45:23','2006-02-15 22:21:22'),(14424,535,1,14522,'4.99','2005-08-21 15:01:34','2006-02-15 22:21:22'),(14425,535,2,15075,'5.99','2005-08-22 11:04:52','2006-02-15 22:21:22'),(14426,535,1,15287,'6.99','2005-08-22 19:19:37','2006-02-15 22:21:22'),(14427,535,1,16017,'0.99','2005-08-23 21:27:11','2006-02-15 22:21:22'),(14428,536,1,237,'0.99','2005-05-26 12:15:13','2006-02-15 22:21:22'),(14429,536,1,929,'6.99','2005-05-30 12:32:39','2006-02-15 22:21:22'),(14430,536,1,1582,'4.99','2005-06-16 04:31:57','2006-02-15 22:21:22'),(14431,536,2,1962,'2.99','2005-06-17 09:08:58','2006-02-15 22:21:22'),(14432,536,2,2403,'2.99','2005-06-18 16:33:22','2006-02-15 22:21:22'),(14433,536,1,3483,'4.99','2005-07-05 23:13:51','2006-02-15 22:21:22'),(14434,536,1,3514,'0.99','2005-07-06 00:46:54','2006-02-15 22:21:22'),(14435,536,1,4448,'2.99','2005-07-07 23:17:12','2006-02-15 22:21:22'),(14436,536,2,5196,'0.99','2005-07-09 10:43:34','2006-02-15 22:21:22'),(14437,536,1,6400,'5.99','2005-07-11 22:43:44','2006-02-15 22:21:23'),(14438,536,1,7065,'4.99','2005-07-27 03:53:43','2006-02-15 22:21:23'),(14439,536,2,8535,'4.99','2005-07-29 10:32:33','2006-02-15 22:21:23'),(14440,536,1,8679,'4.99','2005-07-29 16:07:47','2006-02-15 22:21:23'),(14441,536,1,8958,'2.99','2005-07-30 03:34:26','2006-02-15 22:21:23'),(14442,536,1,9411,'8.99','2005-07-30 20:38:22','2006-02-15 22:21:23'),(14443,536,1,9727,'4.99','2005-07-31 08:39:13','2006-02-15 22:21:23'),(14444,536,2,10019,'3.99','2005-07-31 18:20:56','2006-02-15 22:21:23'),(14445,536,1,11473,'6.99','2005-08-02 21:52:03','2006-02-15 22:21:23'),(14446,536,1,11826,'2.99','2005-08-17 12:43:46','2006-02-15 22:21:23'),(14447,536,2,11977,'4.99','2005-08-17 18:01:15','2006-02-15 22:21:23'),(14448,536,2,12052,'8.99','2005-08-17 20:57:02','2006-02-15 22:21:23'),(14449,536,2,13505,'4.99','2005-08-20 02:05:57','2006-02-15 22:21:23'),(14450,536,1,15130,'7.99','2005-08-22 13:04:32','2006-02-15 22:21:23'),(14451,536,1,15978,'8.99','2005-08-23 20:08:18','2006-02-15 22:21:23'),(14452,536,1,15979,'0.99','2005-08-23 20:08:26','2006-02-15 22:21:24'),(14453,537,2,603,'4.99','2005-05-28 14:27:51','2006-02-15 22:21:24'),(14454,537,1,1445,'2.99','2005-06-15 19:10:07','2006-02-15 22:21:24'),(14455,537,2,2184,'2.99','2005-06-18 01:10:36','2006-02-15 22:21:24'),(14456,537,1,2586,'8.99','2005-06-19 05:05:11','2006-02-15 22:21:24'),(14457,537,2,3134,'8.99','2005-06-20 19:29:09','2006-02-15 22:21:24'),(14458,537,1,3555,'0.99','2005-07-06 02:45:35','2006-02-15 22:21:24'),(14459,537,2,3853,'0.99','2005-07-06 16:59:20','2006-02-15 22:21:24'),(14460,537,1,5630,'2.99','2005-07-10 06:08:14','2006-02-15 22:21:24'),(14461,537,2,5877,'5.99','2005-07-10 19:08:51','2006-02-15 22:21:24'),(14462,537,2,6310,'2.99','2005-07-11 18:14:05','2006-02-15 22:21:24'),(14463,537,1,6409,'4.99','2005-07-11 23:05:49','2006-02-15 22:21:24'),(14464,537,1,6746,'0.99','2005-07-12 14:33:01','2006-02-15 22:21:24'),(14465,537,1,7179,'2.99','2005-07-27 08:10:29','2006-02-15 22:21:24'),(14466,537,2,7810,'4.99','2005-07-28 08:00:38','2006-02-15 22:21:24'),(14467,537,2,8126,'4.99','2005-07-28 19:32:41','2006-02-15 22:21:25'),(14468,537,2,8256,'4.99','2005-07-29 01:02:42','2006-02-15 22:21:25'),(14469,537,1,9967,'2.99','2005-07-31 16:31:17','2006-02-15 22:21:25'),(14470,537,2,12984,'4.99','2005-08-19 07:06:51','2006-02-15 22:21:25'),(14471,537,2,13885,'4.99','2005-08-20 15:32:09','2006-02-15 22:21:25'),(14472,537,1,14010,'4.99','2005-08-20 20:29:46','2006-02-15 22:21:25'),(14473,537,2,14506,'0.99','2005-08-21 14:32:27','2006-02-15 22:21:25'),(14474,537,1,14670,'0.99','2005-08-21 19:54:11','2006-02-15 22:21:25'),(14475,537,1,15149,'2.99','2005-08-22 14:08:06','2006-02-15 22:21:25'),(14476,537,1,15832,'8.99','2005-08-23 15:21:35','2006-02-15 22:21:25'),(14477,537,1,13419,'4.99','2006-02-14 15:16:03','2006-02-15 22:21:25'),(14478,538,2,594,'2.99','2005-05-28 13:41:56','2006-02-15 22:21:25'),(14479,538,2,734,'4.99','2005-05-29 07:38:52','2006-02-15 22:21:25'),(14480,538,1,1314,'5.99','2005-06-15 10:21:45','2006-02-15 22:21:25'),(14481,538,1,1912,'4.99','2005-06-17 05:18:32','2006-02-15 22:21:25'),(14482,538,1,2682,'4.99','2005-06-19 12:18:17','2006-02-15 22:21:26'),(14483,538,2,3189,'2.99','2005-06-20 23:19:33','2006-02-15 22:21:26'),(14484,538,2,3554,'4.99','2005-07-06 02:37:10','2006-02-15 22:21:26'),(14485,538,2,5135,'8.99','2005-07-09 07:53:22','2006-02-15 22:21:26'),(14486,538,1,5369,'4.99','2005-07-09 18:42:16','2006-02-15 22:21:26'),(14487,538,1,5486,'2.99','2005-07-09 23:57:44','2006-02-15 22:21:26'),(14488,538,1,5898,'2.99','2005-07-10 20:18:09','2006-02-15 22:21:26'),(14489,538,2,6130,'2.99','2005-07-11 08:19:56','2006-02-15 22:21:26'),(14490,538,1,6332,'0.99','2005-07-11 19:19:06','2006-02-15 22:21:26'),(14491,538,2,6936,'0.99','2005-07-26 23:13:34','2006-02-15 22:21:26'),(14492,538,1,7694,'0.99','2005-07-28 03:39:25','2006-02-15 22:21:26'),(14493,538,1,8765,'0.99','2005-07-29 19:40:08','2006-02-15 22:21:26'),(14494,538,1,9307,'0.99','2005-07-30 16:52:43','2006-02-15 22:21:26'),(14495,538,1,9643,'4.99','2005-07-31 05:35:48','2006-02-15 22:21:26'),(14496,538,2,9897,'4.99','2005-07-31 14:11:57','2006-02-15 22:21:26'),(14497,538,2,9939,'8.99','2005-07-31 15:29:00','2006-02-15 22:21:27'),(14498,538,2,10701,'3.99','2005-08-01 18:28:17','2006-02-15 22:21:27'),(14499,538,1,10732,'5.99','2005-08-01 19:25:18','2006-02-15 22:21:27'),(14500,538,1,10962,'4.99','2005-08-02 03:48:13','2006-02-15 22:21:27'),(14501,538,2,12089,'5.99','2005-08-17 22:20:29','2006-02-15 22:21:27'),(14502,538,1,13544,'1.99','2005-08-20 03:44:26','2006-02-15 22:21:27'),(14503,538,2,13770,'4.99','2005-08-20 11:45:54','2006-02-15 22:21:27'),(14504,538,2,14572,'2.99','2005-08-21 16:44:31','2006-02-15 22:21:27'),(14505,538,1,14591,'0.99','2005-08-21 17:30:09','2006-02-15 22:21:27'),(14506,538,1,15343,'6.99','2005-08-22 21:01:25','2006-02-15 22:21:27'),(14507,539,2,250,'4.99','2005-05-26 14:30:24','2006-02-15 22:21:27'),(14508,539,1,342,'0.99','2005-05-27 04:11:04','2006-02-15 22:21:27'),(14509,539,2,1282,'3.99','2005-06-15 08:25:33','2006-02-15 22:21:27'),(14510,539,1,1327,'0.99','2005-06-15 11:11:39','2006-02-15 22:21:27'),(14511,539,2,1444,'4.99','2005-06-15 19:08:16','2006-02-15 22:21:27'),(14512,539,1,4035,'2.99','2005-07-07 02:45:02','2006-02-15 22:21:27'),(14513,539,1,4247,'0.99','2005-07-07 13:51:54','2006-02-15 22:21:28'),(14514,539,2,5086,'4.99','2005-07-09 05:40:04','2006-02-15 22:21:28'),(14515,539,2,5139,'7.99','2005-07-09 08:01:51','2006-02-15 22:21:28'),(14516,539,2,5493,'2.99','2005-07-10 00:11:44','2006-02-15 22:21:28'),(14517,539,2,6874,'5.99','2005-07-12 20:20:53','2006-02-15 22:21:28'),(14518,539,1,7781,'2.99','2005-07-28 07:13:20','2006-02-15 22:21:28'),(14519,539,2,8247,'6.99','2005-07-29 00:41:38','2006-02-15 22:21:28'),(14520,539,2,8761,'5.99','2005-07-29 19:26:47','2006-02-15 22:21:28'),(14521,539,2,9250,'0.99','2005-07-30 14:18:16','2006-02-15 22:21:28'),(14522,539,1,9777,'7.99','2005-07-31 10:01:06','2006-02-15 22:21:28'),(14523,539,1,9796,'4.99','2005-07-31 10:52:43','2006-02-15 22:21:28'),(14524,539,2,10922,'3.99','2005-08-02 02:14:40','2006-02-15 22:21:28'),(14525,539,1,12848,'2.99','2005-08-19 02:05:11','2006-02-15 22:21:28'),(14526,539,2,13615,'2.99','2005-08-20 06:28:53','2006-02-15 22:21:28'),(14527,539,2,13778,'5.99','2005-08-20 12:03:44','2006-02-15 22:21:28'),(14528,539,1,15356,'2.99','2005-08-22 21:24:19','2006-02-15 22:21:29'),(14529,540,2,1263,'2.99','2005-06-15 06:56:39','2006-02-15 22:21:29'),(14530,540,2,1290,'4.99','2005-06-15 08:52:44','2006-02-15 22:21:29'),(14531,540,2,2640,'2.99','2005-06-19 09:26:13','2006-02-15 22:21:29'),(14532,540,1,2953,'3.99','2005-06-20 06:39:11','2006-02-15 22:21:29'),(14533,540,1,3340,'3.99','2005-06-21 10:37:23','2006-02-15 22:21:29'),(14534,540,2,4628,'4.99','2005-07-08 08:25:52','2006-02-15 22:21:29'),(14535,540,2,4991,'4.99','2005-07-09 00:49:03','2006-02-15 22:21:29'),(14536,540,1,6103,'2.99','2005-07-11 06:59:55','2006-02-15 22:21:29'),(14537,540,2,6145,'7.99','2005-07-11 09:07:01','2006-02-15 22:21:29'),(14538,540,2,6182,'2.99','2005-07-11 11:11:38','2006-02-15 22:21:29'),(14539,540,1,6748,'6.99','2005-07-12 14:39:27','2006-02-15 22:21:29'),(14540,540,1,6919,'0.99','2005-07-12 22:32:17','2006-02-15 22:21:29'),(14541,540,2,9762,'4.99','2005-07-31 09:32:54','2006-02-15 22:21:29'),(14542,540,2,9815,'2.99','2005-07-31 11:30:51','2006-02-15 22:21:29'),(14543,540,1,10924,'8.99','2005-08-02 02:20:19','2006-02-15 22:21:30'),(14544,540,1,11198,'3.99','2005-08-02 11:45:15','2006-02-15 22:21:30'),(14545,540,2,11324,'4.99','2005-08-02 16:31:17','2006-02-15 22:21:30'),(14546,540,2,11432,'6.99','2005-08-02 20:10:01','2006-02-15 22:21:30'),(14547,540,2,12058,'8.99','2005-08-17 21:07:41','2006-02-15 22:21:30'),(14548,540,2,12201,'4.99','2005-08-18 02:14:06','2006-02-15 22:21:30'),(14549,540,1,12300,'6.99','2005-08-18 05:36:14','2006-02-15 22:21:30'),(14550,540,2,14910,'0.99','2005-08-22 04:50:52','2006-02-15 22:21:30'),(14551,540,2,15079,'2.99','2005-08-22 11:09:56','2006-02-15 22:21:30'),(14552,540,2,15953,'3.99','2005-08-23 19:13:46','2006-02-15 22:21:30'),(14553,541,1,1021,'7.99','2005-05-31 03:16:15','2006-02-15 22:21:30'),(14554,541,1,1066,'4.99','2005-05-31 09:07:33','2006-02-15 22:21:30'),(14555,541,2,1986,'2.99','2005-06-17 10:34:59','2006-02-15 22:21:30'),(14556,541,1,2708,'6.99','2005-06-19 13:59:05','2006-02-15 22:21:30'),(14557,541,1,5018,'2.99','2005-07-09 02:01:05','2006-02-15 22:21:30'),(14558,541,2,5197,'4.99','2005-07-09 10:43:54','2006-02-15 22:21:31'),(14559,541,2,6468,'7.99','2005-07-12 01:27:09','2006-02-15 22:21:31'),(14560,541,2,6718,'2.99','2005-07-12 13:38:06','2006-02-15 22:21:31'),(14561,541,1,8113,'8.99','2005-07-28 19:14:00','2006-02-15 22:21:31'),(14562,541,1,8322,'4.99','2005-07-29 03:52:49','2006-02-15 22:21:31'),(14563,541,2,9603,'0.99','2005-07-31 03:43:43','2006-02-15 22:21:31'),(14564,541,1,10306,'5.99','2005-08-01 04:19:18','2006-02-15 22:21:31'),(14565,541,2,11273,'0.99','2005-08-02 14:20:55','2006-02-15 22:21:31'),(14566,541,1,12306,'4.99','2005-08-18 05:47:55','2006-02-15 22:21:31'),(14567,541,2,12395,'4.99','2005-08-18 09:06:30','2006-02-15 22:21:31'),(14568,541,1,12894,'7.99','2005-08-19 03:49:28','2006-02-15 22:21:31'),(14569,541,2,13239,'4.99','2005-08-19 16:22:13','2006-02-15 22:21:31'),(14570,541,2,13640,'0.99','2005-08-20 07:22:53','2006-02-15 22:21:31'),(14571,541,2,14938,'6.99','2005-08-22 05:52:39','2006-02-15 22:21:31'),(14572,541,1,15071,'4.99','2005-08-22 10:58:43','2006-02-15 22:21:31'),(14573,541,2,15141,'3.99','2005-08-22 13:41:49','2006-02-15 22:21:32'),(14574,541,1,15223,'1.99','2005-08-22 17:13:39','2006-02-15 22:21:32'),(14575,541,1,15421,'0.99','2005-08-22 23:56:37','2006-02-15 22:21:32'),(14576,541,2,15924,'1.99','2005-08-23 18:08:59','2006-02-15 22:21:32'),(14577,542,1,220,'4.99','2005-05-26 10:06:49','2006-02-15 22:21:32'),(14578,542,2,376,'4.99','2005-05-27 08:58:15','2006-02-15 22:21:32'),(14579,542,1,2610,'4.99','2005-06-19 07:16:20','2006-02-15 22:21:32'),(14580,542,2,2957,'10.99','2005-06-20 06:53:47','2006-02-15 22:21:32'),(14581,542,2,5293,'0.99','2005-07-09 15:17:23','2006-02-15 22:21:32'),(14582,542,1,5477,'6.99','2005-07-09 23:43:49','2006-02-15 22:21:32'),(14583,542,2,6077,'5.99','2005-07-11 05:06:08','2006-02-15 22:21:32'),(14584,542,2,6325,'5.99','2005-07-11 19:06:01','2006-02-15 22:21:32'),(14585,542,1,6887,'9.99','2005-07-12 21:00:23','2006-02-15 22:21:32'),(14586,542,2,7672,'8.99','2005-07-28 02:49:41','2006-02-15 22:21:32'),(14587,542,1,8533,'4.99','2005-07-29 10:29:16','2006-02-15 22:21:32'),(14588,542,2,8544,'3.99','2005-07-29 11:02:08','2006-02-15 22:21:33'),(14589,542,1,10280,'4.99','2005-08-01 03:27:15','2006-02-15 22:21:33'),(14590,542,2,11583,'0.99','2005-08-17 02:08:13','2006-02-15 22:21:33'),(14591,542,2,11903,'2.99','2005-08-17 15:37:45','2006-02-15 22:21:33'),(14592,542,1,12819,'0.99','2005-08-19 01:05:05','2006-02-15 22:21:33'),(14593,542,1,13447,'0.99','2005-08-20 00:09:36','2006-02-15 22:21:33'),(14594,542,2,14982,'9.99','2005-08-22 07:20:55','2006-02-15 22:21:33'),(14595,543,1,243,'6.99','2005-05-26 13:06:05','2006-02-15 22:21:33'),(14596,543,2,476,'1.99','2005-05-27 22:31:36','2006-02-15 22:21:33'),(14597,543,2,1720,'4.99','2005-06-16 15:00:14','2006-02-15 22:21:33'),(14598,543,1,2426,'2.99','2005-06-18 17:40:44','2006-02-15 22:21:33'),(14599,543,2,3070,'4.99','2005-06-20 14:15:39','2006-02-15 22:21:33'),(14600,543,1,3128,'2.99','2005-06-20 18:41:47','2006-02-15 22:21:33'),(14601,543,2,3467,'5.99','2005-06-21 22:19:25','2006-02-15 22:21:33'),(14602,543,1,4887,'2.99','2005-07-08 19:59:14','2006-02-15 22:21:33'),(14603,543,2,5467,'4.99','2005-07-09 23:05:47','2006-02-15 22:21:34'),(14604,543,2,6013,'4.99','2005-07-11 02:02:03','2006-02-15 22:21:34'),(14605,543,2,7312,'2.99','2005-07-27 13:03:14','2006-02-15 22:21:34'),(14606,543,1,8580,'2.99','2005-07-29 12:00:27','2006-02-15 22:21:34'),(14607,543,2,8845,'4.99','2005-07-29 23:06:13','2006-02-15 22:21:34'),(14608,543,1,9505,'2.99','2005-07-31 00:11:19','2006-02-15 22:21:34'),(14609,543,1,9999,'0.99','2005-07-31 17:40:53','2006-02-15 22:21:34'),(14610,543,2,10257,'0.99','2005-08-01 02:49:43','2006-02-15 22:21:34'),(14611,543,1,10520,'4.99','2005-08-01 11:45:58','2006-02-15 22:21:34'),(14612,543,2,11241,'9.99','2005-08-02 13:29:24','2006-02-15 22:21:34'),(14613,543,1,11681,'2.99','2005-08-17 06:13:30','2006-02-15 22:21:34'),(14614,543,1,13187,'0.99','2005-08-19 14:24:48','2006-02-15 22:21:34'),(14615,543,2,15281,'1.99','2005-08-22 19:10:26','2006-02-15 22:21:34'),(14616,543,1,15785,'1.99','2005-08-23 13:46:27','2006-02-15 22:21:34'),(14617,544,1,397,'2.99','2005-05-27 12:29:02','2006-02-15 22:21:34'),(14618,544,1,864,'2.99','2005-05-30 03:27:17','2006-02-15 22:21:35'),(14619,544,1,1248,'1.99','2005-06-15 05:33:52','2006-02-15 22:21:35'),(14620,544,2,1434,'10.99','2005-06-15 18:30:46','2006-02-15 22:21:35'),(14621,544,1,2373,'0.99','2005-06-18 14:37:57','2006-02-15 22:21:35'),(14622,544,1,2395,'2.99','2005-06-18 15:45:15','2006-02-15 22:21:35'),(14623,544,1,4395,'0.99','2005-07-07 21:13:22','2006-02-15 22:21:35'),(14624,544,1,4703,'2.99','2005-07-08 11:44:56','2006-02-15 22:21:35'),(14625,544,2,4847,'6.99','2005-07-08 18:29:13','2006-02-15 22:21:35'),(14626,544,2,8566,'2.99','2005-07-29 11:35:46','2006-02-15 22:21:35'),(14627,544,1,8937,'5.99','2005-07-30 02:53:21','2006-02-15 22:21:35'),(14628,544,1,8963,'9.99','2005-07-30 03:46:26','2006-02-15 22:21:35'),(14629,544,1,10735,'0.99','2005-08-01 19:29:45','2006-02-15 22:21:35'),(14630,544,1,11401,'3.99','2005-08-02 19:05:06','2006-02-15 22:21:35'),(14631,544,2,11766,'2.99','2005-08-17 09:58:40','2006-02-15 22:21:35'),(14632,544,2,12640,'3.99','2005-08-18 18:14:49','2006-02-15 22:21:36'),(14633,544,2,14142,'4.99','2005-08-21 02:07:43','2006-02-15 22:21:36'),(14634,544,1,14498,'4.99','2005-08-21 14:10:44','2006-02-15 22:21:36'),(14635,544,2,14651,'8.99','2005-08-21 19:31:09','2006-02-15 22:21:36'),(14636,544,1,14981,'2.99','2005-08-22 07:19:05','2006-02-15 22:21:36'),(14637,544,1,15219,'6.99','2005-08-22 17:00:31','2006-02-15 22:21:36'),(14638,544,1,15605,'4.99','2005-08-23 06:48:47','2006-02-15 22:21:36'),(14639,545,2,248,'0.99','2005-05-26 14:07:58','2006-02-15 22:21:36'),(14640,545,2,715,'3.99','2005-05-29 04:22:41','2006-02-15 22:21:36'),(14641,545,1,2123,'2.99','2005-06-17 20:48:30','2006-02-15 22:21:36'),(14642,545,2,3693,'8.99','2005-07-06 09:56:09','2006-02-15 22:21:36'),(14643,545,1,3975,'5.99','2005-07-06 23:00:09','2006-02-15 22:21:36'),(14644,545,1,4597,'5.99','2005-07-08 06:43:42','2006-02-15 22:21:36'),(14645,545,1,5264,'0.99','2005-07-09 14:11:28','2006-02-15 22:21:36'),(14646,545,1,7078,'5.99','2005-07-27 04:16:37','2006-02-15 22:21:36'),(14647,545,2,8599,'3.99','2005-07-29 12:58:52','2006-02-15 22:21:37'),(14648,545,2,8848,'2.99','2005-07-29 23:20:58','2006-02-15 22:21:37'),(14649,545,2,9810,'2.99','2005-07-31 11:22:41','2006-02-15 22:21:37'),(14650,545,2,9942,'4.99','2005-07-31 15:35:43','2006-02-15 22:21:37'),(14651,545,2,10931,'2.99','2005-08-02 02:44:59','2006-02-15 22:21:37'),(14652,545,2,11760,'2.99','2005-08-17 09:44:22','2006-02-15 22:21:37'),(14653,545,1,12098,'4.99','2005-08-17 22:38:31','2006-02-15 22:21:37'),(14654,545,1,12349,'2.99','2005-08-18 07:23:42','2006-02-15 22:21:37'),(14655,545,2,12667,'10.99','2005-08-18 19:11:45','2006-02-15 22:21:37'),(14656,545,1,12800,'2.99','2005-08-19 00:27:11','2006-02-15 22:21:37'),(14657,545,1,13595,'4.99','2005-08-20 05:54:27','2006-02-15 22:21:37'),(14658,545,1,15585,'0.99','2005-08-23 05:55:22','2006-02-15 22:21:37'),(14659,545,2,15998,'4.99','2005-08-23 20:41:09','2006-02-15 22:21:37'),(14660,546,1,197,'5.99','2005-05-26 06:59:21','2006-02-15 22:21:37'),(14661,546,1,482,'6.99','2005-05-27 22:53:02','2006-02-15 22:21:37'),(14662,546,1,1181,'1.99','2005-06-15 00:42:17','2006-02-15 22:21:38'),(14663,546,2,1403,'0.99','2005-06-15 16:31:59','2006-02-15 22:21:38'),(14664,546,1,1787,'3.99','2005-06-16 19:30:59','2006-02-15 22:21:38'),(14665,546,1,2361,'5.99','2005-06-18 13:19:05','2006-02-15 22:21:38'),(14666,546,1,3738,'4.99','2005-07-06 11:50:57','2006-02-15 22:21:38'),(14667,546,2,4664,'0.99','2005-07-08 10:01:28','2006-02-15 22:21:38'),(14668,546,1,4734,'0.99','2005-07-08 13:12:12','2006-02-15 22:21:38'),(14669,546,1,5629,'0.99','2005-07-10 06:02:25','2006-02-15 22:21:38'),(14670,546,2,6758,'9.99','2005-07-12 15:13:49','2006-02-15 22:21:38'),(14671,546,1,6786,'2.99','2005-07-12 16:32:33','2006-02-15 22:21:38'),(14672,546,2,6910,'6.99','2005-07-12 22:11:21','2006-02-15 22:21:38'),(14673,546,1,8532,'4.99','2005-07-29 10:26:56','2006-02-15 22:21:38'),(14674,546,1,9087,'4.99','2005-07-30 08:19:47','2006-02-15 22:21:38'),(14675,546,1,NULL,'3.99','2005-07-30 21:16:20','2006-02-15 22:21:38'),(14676,546,2,9626,'1.99','2005-07-31 04:37:41','2006-02-15 22:21:38'),(14677,546,2,10370,'0.99','2005-08-01 06:18:04','2006-02-15 22:21:39'),(14678,546,2,11352,'5.99','2005-08-02 17:29:39','2006-02-15 22:21:39'),(14679,546,1,11797,'4.99','2005-08-17 11:17:21','2006-02-15 22:21:39'),(14680,546,2,12591,'2.99','2005-08-18 16:16:41','2006-02-15 22:21:39'),(14681,546,2,13850,'5.99','2005-08-20 14:43:03','2006-02-15 22:21:39'),(14682,546,1,14797,'4.99','2005-08-22 00:41:24','2006-02-15 22:21:39'),(14683,546,1,14829,'2.99','2005-08-22 01:35:37','2006-02-15 22:21:39'),(14684,546,1,14929,'3.99','2005-08-22 05:32:38','2006-02-15 22:21:39'),(14685,546,2,15565,'4.99','2005-08-23 05:13:09','2006-02-15 22:21:39'),(14686,547,1,306,'0.99','2005-05-26 21:31:57','2006-02-15 22:21:39'),(14687,547,2,443,'8.99','2005-05-27 18:35:20','2006-02-15 22:21:39'),(14688,547,2,1094,'1.99','2005-05-31 13:03:49','2006-02-15 22:21:39'),(14689,547,2,2022,'8.99','2005-06-17 12:44:39','2006-02-15 22:21:39'),(14690,547,2,3679,'4.99','2005-07-06 09:15:57','2006-02-15 22:21:39'),(14691,547,1,3765,'4.99','2005-07-06 13:01:47','2006-02-15 22:21:40'),(14692,547,2,5327,'4.99','2005-07-09 16:39:49','2006-02-15 22:21:40'),(14693,547,2,5854,'4.99','2005-07-10 17:47:34','2006-02-15 22:21:40'),(14694,547,1,6605,'0.99','2005-07-12 08:01:07','2006-02-15 22:21:40'),(14695,547,2,7420,'4.99','2005-07-27 17:09:39','2006-02-15 22:21:40'),(14696,547,2,7547,'3.99','2005-07-27 21:51:48','2006-02-15 22:21:40'),(14697,547,1,7835,'4.99','2005-07-28 08:49:39','2006-02-15 22:21:40'),(14698,547,1,7859,'3.99','2005-07-28 09:57:17','2006-02-15 22:21:40'),(14699,547,1,8828,'2.99','2005-07-29 22:32:54','2006-02-15 22:21:40'),(14700,547,1,10903,'2.99','2005-08-02 01:41:59','2006-02-15 22:21:40'),(14701,547,1,10980,'4.99','2005-08-02 04:17:32','2006-02-15 22:21:40'),(14702,547,2,11170,'5.99','2005-08-02 10:21:53','2006-02-15 22:21:40'),(14703,547,2,11361,'0.99','2005-08-02 17:46:34','2006-02-15 22:21:40'),(14704,547,1,12579,'0.99','2005-08-18 15:47:49','2006-02-15 22:21:40'),(14705,547,2,12943,'2.99','2005-08-19 05:46:26','2006-02-15 22:21:40'),(14706,547,2,13307,'2.99','2005-08-19 18:58:44','2006-02-15 22:21:41'),(14707,547,1,14510,'9.99','2005-08-21 14:44:41','2006-02-15 22:21:41'),(14708,547,2,14884,'4.99','2005-08-22 03:57:08','2006-02-15 22:21:41'),(14709,548,2,177,'6.99','2005-05-26 04:14:29','2006-02-15 22:21:41'),(14710,548,1,743,'4.99','2005-05-29 08:39:02','2006-02-15 22:21:41'),(14711,548,2,872,'3.99','2005-05-30 05:03:04','2006-02-15 22:21:41'),(14712,548,1,1326,'1.99','2005-06-15 11:07:39','2006-02-15 22:21:41'),(14713,548,1,2280,'2.99','2005-06-18 06:46:54','2006-02-15 22:21:41'),(14714,548,2,2978,'0.99','2005-06-20 08:25:16','2006-02-15 22:21:41'),(14715,548,1,3686,'2.99','2005-07-06 09:37:50','2006-02-15 22:21:41'),(14716,548,2,3777,'2.99','2005-07-06 13:36:48','2006-02-15 22:21:41'),(14717,548,1,4155,'7.99','2005-07-07 09:00:49','2006-02-15 22:21:41'),(14718,548,2,5138,'4.99','2005-07-09 08:00:46','2006-02-15 22:21:41'),(14719,548,2,6490,'4.99','2005-07-12 02:28:03','2006-02-15 22:21:41'),(14720,548,1,9614,'5.99','2005-07-31 03:59:31','2006-02-15 22:21:41'),(14721,548,2,10318,'0.99','2005-08-01 04:36:53','2006-02-15 22:21:42'),(14722,548,1,12860,'5.99','2005-08-19 02:24:41','2006-02-15 22:21:42'),(14723,548,1,13691,'3.99','2005-08-20 09:07:39','2006-02-15 22:21:42'),(14724,548,2,13730,'7.99','2005-08-20 10:17:09','2006-02-15 22:21:42'),(14725,548,2,14188,'0.99','2005-08-21 03:32:04','2006-02-15 22:21:42'),(14726,548,2,14723,'6.99','2005-08-21 21:52:32','2006-02-15 22:21:42'),(14727,548,1,13584,'0.99','2006-02-14 15:16:03','2006-02-15 22:21:42'),(14728,549,1,6,'0.99','2005-05-24 23:08:07','2006-02-15 22:21:42'),(14729,549,2,852,'4.99','2005-05-30 01:36:57','2006-02-15 22:21:42'),(14730,549,1,906,'3.99','2005-05-30 10:30:38','2006-02-15 22:21:42'),(14731,549,2,1086,'4.99','2005-05-31 11:17:37','2006-02-15 22:21:42'),(14732,549,1,2050,'2.99','2005-06-17 15:07:30','2006-02-15 22:21:42'),(14733,549,2,3523,'2.99','2005-07-06 01:01:38','2006-02-15 22:21:42'),(14734,549,2,3892,'4.99','2005-07-06 18:58:58','2006-02-15 22:21:42'),(14735,549,1,4447,'0.99','2005-07-07 23:15:28','2006-02-15 22:21:42'),(14736,549,1,7252,'7.99','2005-07-27 10:45:28','2006-02-15 22:21:43'),(14737,549,2,8239,'0.99','2005-07-29 00:31:39','2006-02-15 22:21:43'),(14738,549,1,8316,'4.99','2005-07-29 03:38:49','2006-02-15 22:21:43'),(14739,549,2,9445,'7.99','2005-07-30 21:50:42','2006-02-15 22:21:43'),(14740,549,2,9511,'9.99','2005-07-31 00:25:05','2006-02-15 22:21:43'),(14741,549,2,9887,'0.99','2005-07-31 14:00:32','2006-02-15 22:21:43'),(14742,549,2,10281,'0.99','2005-08-01 03:28:33','2006-02-15 22:21:43'),(14743,549,2,11737,'4.99','2005-08-17 08:42:08','2006-02-15 22:21:43'),(14744,549,2,11878,'2.99','2005-08-17 14:23:52','2006-02-15 22:21:43'),(14745,549,2,12634,'2.99','2005-08-18 17:58:14','2006-02-15 22:21:43'),(14746,549,2,12747,'4.99','2005-08-18 22:28:22','2006-02-15 22:21:43'),(14747,549,1,14434,'0.99','2005-08-21 11:40:46','2006-02-15 22:21:43'),(14748,550,2,922,'7.99','2005-05-30 11:55:55','2006-02-15 22:21:43'),(14749,550,1,1233,'6.99','2005-06-15 04:18:37','2006-02-15 22:21:43'),(14750,550,1,1863,'3.99','2005-06-17 01:31:46','2006-02-15 22:21:43'),(14751,550,2,1883,'4.99','2005-06-17 03:18:51','2006-02-15 22:21:44'),(14752,550,1,3154,'2.99','2005-06-20 20:44:40','2006-02-15 22:21:44'),(14753,550,2,3236,'9.99','2005-06-21 02:47:43','2006-02-15 22:21:44'),(14754,550,1,3272,'10.99','2005-06-21 05:18:27','2006-02-15 22:21:44'),(14755,550,1,3979,'4.99','2005-07-06 23:04:35','2006-02-15 22:21:44'),(14756,550,1,5727,'4.99','2005-07-10 11:25:28','2006-02-15 22:21:44'),(14757,550,1,6695,'2.99','2005-07-12 12:39:39','2006-02-15 22:21:44'),(14758,550,1,7030,'0.99','2005-07-27 03:01:40','2006-02-15 22:21:44'),(14759,550,2,7838,'2.99','2005-07-28 09:00:21','2006-02-15 22:21:44'),(14760,550,1,8628,'6.99','2005-07-29 14:06:24','2006-02-15 22:21:44'),(14761,550,2,8838,'2.99','2005-07-29 22:52:23','2006-02-15 22:21:44'),(14762,550,1,8959,'8.99','2005-07-30 03:35:49','2006-02-15 22:21:44'),(14763,550,1,9616,'2.99','2005-07-31 04:05:01','2006-02-15 22:21:44'),(14764,550,1,9748,'0.99','2005-07-31 09:17:56','2006-02-15 22:21:44'),(14765,550,2,10140,'4.99','2005-07-31 22:03:20','2006-02-15 22:21:44'),(14766,550,1,11246,'2.99','2005-08-02 13:33:56','2006-02-15 22:21:45'),(14767,550,2,11320,'0.99','2005-08-02 16:13:28','2006-02-15 22:21:45'),(14768,550,1,11969,'4.99','2005-08-17 17:49:37','2006-02-15 22:21:45'),(14769,550,1,12063,'2.99','2005-08-17 21:24:48','2006-02-15 22:21:45'),(14770,550,2,12077,'4.99','2005-08-17 21:59:14','2006-02-15 22:21:45'),(14771,550,1,13114,'10.99','2005-08-19 11:27:32','2006-02-15 22:21:45'),(14772,550,2,14071,'2.99','2005-08-20 23:01:56','2006-02-15 22:21:45'),(14773,550,2,14127,'4.99','2005-08-21 01:33:32','2006-02-15 22:21:45'),(14774,550,2,14375,'6.99','2005-08-21 09:46:35','2006-02-15 22:21:45'),(14775,550,1,14687,'4.99','2005-08-21 20:32:16','2006-02-15 22:21:45'),(14776,550,2,15431,'9.99','2005-08-23 00:26:47','2006-02-15 22:21:45'),(14777,550,1,15883,'0.99','2005-08-23 16:44:56','2006-02-15 22:21:45'),(14778,550,2,15977,'4.99','2005-08-23 20:07:10','2006-02-15 22:21:45'),(14779,550,2,11757,'2.99','2006-02-14 15:16:03','2006-02-15 22:21:45'),(14780,551,2,155,'7.99','2005-05-26 01:15:05','2006-02-15 22:21:45'),(14781,551,1,728,'2.99','2005-05-29 06:12:38','2006-02-15 22:21:46'),(14782,551,1,795,'0.99','2005-05-29 16:57:39','2006-02-15 22:21:46'),(14783,551,2,969,'4.99','2005-05-30 19:23:48','2006-02-15 22:21:46'),(14784,551,2,1005,'3.99','2005-05-31 00:53:25','2006-02-15 22:21:46'),(14785,551,2,2069,'4.99','2005-06-17 16:19:39','2006-02-15 22:21:46'),(14786,551,1,2776,'3.99','2005-06-19 18:16:24','2006-02-15 22:21:46'),(14787,551,2,3996,'5.99','2005-07-06 23:46:43','2006-02-15 22:21:46'),(14788,551,1,5201,'1.99','2005-07-09 10:52:53','2006-02-15 22:21:46'),(14789,551,2,5528,'0.99','2005-07-10 02:09:21','2006-02-15 22:21:46'),(14790,551,1,6041,'0.99','2005-07-11 03:14:58','2006-02-15 22:21:46'),(14791,551,2,7095,'9.99','2005-07-27 04:51:15','2006-02-15 22:21:46'),(14792,551,1,8986,'0.99','2005-07-30 04:37:20','2006-02-15 22:21:46'),(14793,551,1,9287,'2.99','2005-07-30 15:35:39','2006-02-15 22:21:46'),(14794,551,2,9765,'4.99','2005-07-31 09:44:40','2006-02-15 22:21:46'),(14795,551,2,11380,'0.99','2005-08-02 18:17:32','2006-02-15 22:21:46'),(14796,551,2,11883,'2.99','2005-08-17 14:41:28','2006-02-15 22:21:47'),(14797,551,2,12208,'4.99','2005-08-18 02:25:25','2006-02-15 22:21:47'),(14798,551,2,12868,'0.99','2005-08-19 02:47:19','2006-02-15 22:21:47'),(14799,551,1,13439,'3.99','2005-08-19 23:42:16','2006-02-15 22:21:47'),(14800,551,1,14420,'0.99','2005-08-21 11:16:15','2006-02-15 22:21:47'),(14801,551,2,14609,'4.99','2005-08-21 17:57:26','2006-02-15 22:21:47'),(14802,551,2,14633,'2.99','2005-08-21 18:51:10','2006-02-15 22:21:47'),(14803,551,1,14833,'2.99','2005-08-22 01:45:18','2006-02-15 22:21:47'),(14804,551,1,15377,'4.99','2005-08-22 22:22:33','2006-02-15 22:21:47'),(14805,551,2,15390,'6.99','2005-08-22 22:57:25','2006-02-15 22:21:47'),(14806,552,2,174,'0.99','2005-05-26 03:44:10','2006-02-15 22:21:47'),(14807,552,2,2320,'0.99','2005-06-18 09:24:50','2006-02-15 22:21:47'),(14808,552,2,3397,'4.99','2005-06-21 15:30:11','2006-02-15 22:21:47'),(14809,552,1,4477,'6.99','2005-07-08 00:38:24','2006-02-15 22:21:47'),(14810,552,1,5213,'7.99','2005-07-09 11:39:43','2006-02-15 22:21:48'),(14811,552,2,6189,'4.99','2005-07-11 11:36:03','2006-02-15 22:21:48'),(14812,552,1,7772,'2.99','2005-07-28 06:59:09','2006-02-15 22:21:48'),(14813,552,1,8085,'2.99','2005-07-28 18:13:15','2006-02-15 22:21:48'),(14814,552,2,8192,'2.99','2005-07-28 22:49:11','2006-02-15 22:21:48'),(14815,552,2,8614,'5.99','2005-07-29 13:32:05','2006-02-15 22:21:48'),(14816,552,2,8894,'4.99','2005-07-30 00:48:31','2006-02-15 22:21:48'),(14817,552,1,9342,'8.99','2005-07-30 18:09:56','2006-02-15 22:21:48'),(14818,552,1,11146,'1.99','2005-08-02 09:45:32','2006-02-15 22:21:48'),(14819,552,2,11205,'4.99','2005-08-02 11:56:54','2006-02-15 22:21:48'),(14820,552,2,11300,'7.99','2005-08-02 15:37:42','2006-02-15 22:21:48'),(14821,552,2,12433,'4.99','2005-08-18 10:37:49','2006-02-15 22:21:48'),(14822,552,2,12880,'2.99','2005-08-19 03:27:17','2006-02-15 22:21:48'),(14823,552,2,13574,'2.99','2005-08-20 05:10:39','2006-02-15 22:21:48'),(14824,552,1,13693,'0.99','2005-08-20 09:11:42','2006-02-15 22:21:48'),(14825,552,2,14724,'4.99','2005-08-21 21:53:47','2006-02-15 22:21:49'),(14826,552,2,15700,'2.99','2005-08-23 10:21:21','2006-02-15 22:21:49'),(14827,553,2,789,'4.99','2005-05-29 16:17:07','2006-02-15 22:21:49'),(14828,553,2,1862,'3.99','2005-06-17 01:29:30','2006-02-15 22:21:49'),(14829,553,1,2460,'8.99','2005-06-18 19:54:13','2006-02-15 22:21:49'),(14830,553,2,3103,'6.99','2005-06-20 16:58:19','2006-02-15 22:21:49'),(14831,553,1,3495,'6.99','2005-07-05 23:50:04','2006-02-15 22:21:49'),(14832,553,2,3793,'4.99','2005-07-06 14:32:44','2006-02-15 22:21:49'),(14833,553,2,3859,'2.99','2005-07-06 17:18:15','2006-02-15 22:21:49'),(14834,553,1,3890,'4.99','2005-07-06 18:58:15','2006-02-15 22:21:49'),(14835,553,2,3891,'4.99','2005-07-06 18:58:25','2006-02-15 22:21:49'),(14836,553,2,3942,'4.99','2005-07-06 21:21:34','2006-02-15 22:21:49'),(14837,553,1,4257,'4.99','2005-07-07 14:18:41','2006-02-15 22:21:49'),(14838,553,2,4662,'0.99','2005-07-08 09:58:54','2006-02-15 22:21:49'),(14839,553,2,4845,'4.99','2005-07-08 18:28:20','2006-02-15 22:21:49'),(14840,553,2,4941,'3.99','2005-07-08 22:39:10','2006-02-15 22:21:50'),(14841,553,1,6069,'2.99','2005-07-11 04:44:59','2006-02-15 22:21:50'),(14842,553,2,6657,'0.99','2005-07-12 11:11:36','2006-02-15 22:21:50'),(14843,553,1,6812,'6.99','2005-07-12 18:03:25','2006-02-15 22:21:50'),(14844,553,1,7890,'4.99','2005-07-28 10:43:40','2006-02-15 22:21:50'),(14845,553,2,9272,'4.99','2005-07-30 15:05:22','2006-02-15 22:21:50'),(14846,553,2,9601,'2.99','2005-07-31 03:42:17','2006-02-15 22:21:50'),(14847,553,2,11710,'4.99','2005-08-17 07:29:44','2006-02-15 22:21:50'),(14848,553,1,13972,'2.99','2005-08-20 18:52:17','2006-02-15 22:21:50'),(14849,553,1,15042,'4.99','2005-08-22 09:47:37','2006-02-15 22:21:50'),(14850,553,1,15506,'0.99','2005-08-23 02:48:24','2006-02-15 22:21:50'),(14851,554,1,607,'2.99','2005-05-28 15:02:41','2006-02-15 22:21:50'),(14852,554,1,817,'2.99','2005-05-29 20:39:14','2006-02-15 22:21:50'),(14853,554,1,1959,'4.99','2005-06-17 08:54:10','2006-02-15 22:21:50'),(14854,554,1,2279,'6.99','2005-06-18 06:38:22','2006-02-15 22:21:50'),(14855,554,2,3278,'2.99','2005-06-21 05:41:30','2006-02-15 22:21:51'),(14856,554,1,3312,'6.99','2005-06-21 08:05:32','2006-02-15 22:21:51'),(14857,554,2,4902,'4.99','2005-07-08 20:49:30','2006-02-15 22:21:51'),(14858,554,1,5527,'2.99','2005-07-10 02:06:01','2006-02-15 22:21:51'),(14859,554,1,5968,'5.99','2005-07-11 00:03:11','2006-02-15 22:21:51'),(14860,554,1,6144,'2.99','2005-07-11 09:02:53','2006-02-15 22:21:51'),(14861,554,1,10612,'6.99','2005-08-01 14:55:31','2006-02-15 22:21:51'),(14862,554,2,10829,'7.99','2005-08-01 23:17:06','2006-02-15 22:21:51'),(14863,554,2,11589,'9.99','2005-08-17 02:28:22','2006-02-15 22:21:51'),(14864,554,1,11873,'0.99','2005-08-17 14:14:39','2006-02-15 22:21:51'),(14865,554,1,12010,'8.99','2005-08-17 19:17:54','2006-02-15 22:21:51'),(14866,554,1,12014,'0.99','2005-08-17 19:29:44','2006-02-15 22:21:51'),(14867,554,2,13139,'4.99','2005-08-19 12:32:10','2006-02-15 22:21:51'),(14868,554,2,14015,'2.99','2005-08-20 20:47:43','2006-02-15 22:21:51'),(14869,554,1,14098,'3.99','2005-08-21 00:30:32','2006-02-15 22:21:51'),(14870,554,1,14469,'0.99','2005-08-21 13:07:24','2006-02-15 22:21:52'),(14871,554,1,14626,'2.99','2005-08-21 18:35:44','2006-02-15 22:21:52'),(14872,554,2,15690,'4.99','2005-08-23 09:53:30','2006-02-15 22:21:52'),(14873,555,2,3232,'1.99','2005-06-21 02:30:37','2006-02-15 22:21:52'),(14874,555,2,4875,'2.99','2005-07-08 19:24:17','2006-02-15 22:21:52'),(14875,555,1,8161,'0.99','2005-07-28 21:11:00','2006-02-15 22:21:52'),(14876,555,1,8245,'3.99','2005-07-29 00:37:09','2006-02-15 22:21:52'),(14877,555,1,9299,'5.99','2005-07-30 16:32:51','2006-02-15 22:21:52'),(14878,555,2,9990,'7.99','2005-07-31 17:24:21','2006-02-15 22:21:52'),(14879,555,2,10076,'7.99','2005-07-31 20:00:34','2006-02-15 22:21:52'),(14880,555,1,10921,'3.99','2005-08-02 02:14:33','2006-02-15 22:21:52'),(14881,555,1,11168,'4.99','2005-08-02 10:19:42','2006-02-15 22:21:52'),(14882,555,1,11718,'4.99','2005-08-17 07:44:42','2006-02-15 22:21:52'),(14883,555,2,11747,'2.99','2005-08-17 09:03:31','2006-02-15 22:21:52'),(14884,555,2,12091,'4.99','2005-08-17 22:22:50','2006-02-15 22:21:52'),(14885,555,2,12150,'2.99','2005-08-18 00:13:55','2006-02-15 22:21:53'); + +INSERT INTO payment VALUES (14886,555,2,12182,'2.99','2005-08-18 01:30:19','2006-02-15 22:21:53'),(14887,555,1,12388,'2.99','2005-08-18 08:48:09','2006-02-15 22:21:53'),(14888,555,1,12883,'4.99','2005-08-19 03:33:47','2006-02-15 22:21:53'),(14889,555,2,15102,'6.99','2005-08-22 11:58:58','2006-02-15 22:21:53'),(14890,556,1,184,'0.99','2005-05-26 05:29:49','2006-02-15 22:21:53'),(14891,556,2,772,'5.99','2005-05-29 13:08:06','2006-02-15 22:21:53'),(14892,556,1,1083,'3.99','2005-05-31 11:04:48','2006-02-15 22:21:53'),(14893,556,1,2092,'6.99','2005-06-17 18:12:16','2006-02-15 22:21:53'),(14894,556,2,2593,'5.99','2005-06-19 05:40:11','2006-02-15 22:21:53'),(14895,556,2,2986,'0.99','2005-06-20 08:50:28','2006-02-15 22:21:53'),(14896,556,1,3093,'4.99','2005-06-20 16:06:14','2006-02-15 22:21:53'),(14897,556,2,3438,'6.99','2005-06-21 19:31:40','2006-02-15 22:21:53'),(14898,556,2,4719,'2.99','2005-07-08 12:33:00','2006-02-15 22:21:53'),(14899,556,2,4839,'3.99','2005-07-08 18:13:10','2006-02-15 22:21:54'),(14900,556,1,4846,'0.99','2005-07-08 18:29:05','2006-02-15 22:21:54'),(14901,556,2,5722,'0.99','2005-07-10 11:10:04','2006-02-15 22:21:54'),(14902,556,2,6484,'2.99','2005-07-12 02:04:10','2006-02-15 22:21:54'),(14903,556,1,8909,'5.99','2005-07-30 01:28:03','2006-02-15 22:21:54'),(14904,556,2,10106,'4.99','2005-07-31 21:00:47','2006-02-15 22:21:54'),(14905,556,2,10518,'6.99','2005-08-01 11:44:08','2006-02-15 22:21:54'),(14906,556,1,11466,'1.99','2005-08-02 21:46:46','2006-02-15 22:21:54'),(14907,556,2,11804,'3.99','2005-08-17 11:42:45','2006-02-15 22:21:54'),(14908,556,1,12045,'4.99','2005-08-17 20:40:46','2006-02-15 22:21:54'),(14909,556,1,14176,'2.99','2005-08-21 03:09:23','2006-02-15 22:21:54'),(14910,556,1,15568,'2.99','2005-08-23 05:24:09','2006-02-15 22:21:54'),(14911,557,2,467,'4.99','2005-05-27 21:10:03','2006-02-15 22:21:54'),(14912,557,1,478,'4.99','2005-05-27 22:38:20','2006-02-15 22:21:54'),(14913,557,1,1666,'0.99','2005-06-16 10:17:19','2006-02-15 22:21:54'),(14914,557,2,2988,'6.99','2005-06-20 08:59:08','2006-02-15 22:21:55'),(14915,557,1,3050,'3.99','2005-06-20 13:03:03','2006-02-15 22:21:55'),(14916,557,1,4651,'0.99','2005-07-08 09:39:39','2006-02-15 22:21:55'),(14917,557,1,4851,'1.99','2005-07-08 18:40:05','2006-02-15 22:21:55'),(14918,557,1,6459,'0.99','2005-07-12 01:12:03','2006-02-15 22:21:55'),(14919,557,2,6713,'3.99','2005-07-12 13:27:36','2006-02-15 22:21:55'),(14920,557,2,6823,'4.99','2005-07-12 18:24:31','2006-02-15 22:21:55'),(14921,557,2,6898,'0.99','2005-07-12 21:39:04','2006-02-15 22:21:55'),(14922,557,1,9336,'0.99','2005-07-30 18:01:15','2006-02-15 22:21:55'),(14923,557,1,9341,'2.99','2005-07-30 18:07:58','2006-02-15 22:21:55'),(14924,557,2,9366,'1.99','2005-07-30 18:48:57','2006-02-15 22:21:55'),(14925,557,2,9367,'6.99','2005-07-30 18:49:58','2006-02-15 22:21:55'),(14926,557,1,11181,'0.99','2005-08-02 10:55:03','2006-02-15 22:21:55'),(14927,557,1,12555,'1.99','2005-08-18 14:49:22','2006-02-15 22:21:55'),(14928,557,1,12789,'2.99','2005-08-19 00:16:19','2006-02-15 22:21:55'),(14929,557,1,13540,'2.99','2005-08-20 03:41:23','2006-02-15 22:21:56'),(14930,557,2,13794,'2.99','2005-08-20 12:25:32','2006-02-15 22:21:56'),(14931,557,2,15236,'0.99','2005-08-22 17:44:27','2006-02-15 22:21:56'),(14932,557,2,15570,'5.99','2005-08-23 05:24:55','2006-02-15 22:21:56'),(14933,557,2,15914,'0.99','2005-08-23 17:49:26','2006-02-15 22:21:56'),(14934,557,1,14278,'4.99','2006-02-14 15:16:03','2006-02-15 22:21:56'),(14935,558,2,1967,'4.99','2005-06-17 09:19:52','2006-02-15 22:21:56'),(14936,558,1,2411,'1.99','2005-06-18 16:55:54','2006-02-15 22:21:56'),(14937,558,2,2544,'4.99','2005-06-19 02:16:17','2006-02-15 22:21:56'),(14938,558,2,3016,'4.99','2005-06-20 10:55:08','2006-02-15 22:21:56'),(14939,558,2,3451,'10.99','2005-06-21 21:10:39','2006-02-15 22:21:56'),(14940,558,1,3731,'9.99','2005-07-06 11:33:36','2006-02-15 22:21:56'),(14941,558,1,3954,'0.99','2005-07-06 21:57:44','2006-02-15 22:21:56'),(14942,558,1,3990,'3.99','2005-07-06 23:32:44','2006-02-15 22:21:56'),(14943,558,1,4192,'5.99','2005-07-07 10:57:06','2006-02-15 22:21:57'),(14944,558,1,4932,'2.99','2005-07-08 22:17:40','2006-02-15 22:21:57'),(14945,558,2,5375,'6.99','2005-07-09 18:52:55','2006-02-15 22:21:57'),(14946,558,1,5492,'3.99','2005-07-10 00:11:09','2006-02-15 22:21:57'),(14947,558,2,6278,'7.99','2005-07-11 16:20:02','2006-02-15 22:21:57'),(14948,558,2,6479,'9.99','2005-07-12 01:49:00','2006-02-15 22:21:57'),(14949,558,2,6742,'4.99','2005-07-12 14:25:31','2006-02-15 22:21:57'),(14950,558,1,6757,'0.99','2005-07-12 15:09:48','2006-02-15 22:21:57'),(14951,558,1,7424,'0.99','2005-07-27 17:14:19','2006-02-15 22:21:57'),(14952,558,1,8523,'2.99','2005-07-29 10:18:27','2006-02-15 22:21:57'),(14953,558,1,8858,'4.99','2005-07-29 23:44:35','2006-02-15 22:21:57'),(14954,558,1,8889,'2.99','2005-07-30 00:39:43','2006-02-15 22:21:57'),(14955,558,2,10707,'0.99','2005-08-01 18:41:34','2006-02-15 22:21:57'),(14956,558,1,11268,'0.99','2005-08-02 14:10:39','2006-02-15 22:21:57'),(14957,558,2,11567,'5.99','2005-08-17 01:28:43','2006-02-15 22:21:57'),(14958,558,2,12040,'6.99','2005-08-17 20:29:56','2006-02-15 22:21:58'),(14959,558,1,12194,'1.99','2005-08-18 02:04:47','2006-02-15 22:21:58'),(14960,558,2,13566,'5.99','2005-08-20 04:45:32','2006-02-15 22:21:58'),(14961,558,2,14235,'7.99','2005-08-21 05:08:42','2006-02-15 22:21:58'),(14962,558,1,14286,'5.99','2005-08-21 06:53:53','2006-02-15 22:21:58'),(14963,559,2,2576,'4.99','2005-06-19 04:34:15','2006-02-15 22:21:58'),(14964,559,1,2706,'0.99','2005-06-19 13:56:51','2006-02-15 22:21:58'),(14965,559,2,3046,'4.99','2005-06-20 12:42:59','2006-02-15 22:21:58'),(14966,559,1,3370,'1.99','2005-06-21 13:27:01','2006-02-15 22:21:58'),(14967,559,1,3674,'5.99','2005-07-06 09:03:13','2006-02-15 22:21:58'),(14968,559,1,4120,'4.99','2005-07-07 07:07:03','2006-02-15 22:21:58'),(14969,559,1,4370,'7.99','2005-07-07 20:05:36','2006-02-15 22:21:58'),(14970,559,2,5396,'1.99','2005-07-09 19:42:52','2006-02-15 22:21:58'),(14971,559,1,6201,'4.99','2005-07-11 12:18:07','2006-02-15 22:21:58'),(14972,559,1,6915,'2.99','2005-07-12 22:28:09','2006-02-15 22:21:58'),(14973,559,1,7169,'1.99','2005-07-27 07:51:39','2006-02-15 22:21:59'),(14974,559,1,7680,'1.99','2005-07-28 02:59:08','2006-02-15 22:21:59'),(14975,559,1,8631,'1.99','2005-07-29 14:08:06','2006-02-15 22:21:59'),(14976,559,2,9134,'0.99','2005-07-30 10:00:21','2006-02-15 22:21:59'),(14977,559,1,9877,'2.99','2005-07-31 13:41:57','2006-02-15 22:21:59'),(14978,559,2,10146,'2.99','2005-07-31 22:17:56','2006-02-15 22:21:59'),(14979,559,1,10377,'3.99','2005-08-01 06:28:28','2006-02-15 22:21:59'),(14980,559,1,10669,'8.99','2005-08-01 17:03:28','2006-02-15 22:21:59'),(14981,559,2,10876,'0.99','2005-08-02 00:31:58','2006-02-15 22:21:59'),(14982,559,2,11136,'1.99','2005-08-02 09:22:57','2006-02-15 22:21:59'),(14983,559,1,13234,'1.99','2005-08-19 16:17:15','2006-02-15 22:21:59'),(14984,559,2,13248,'6.99','2005-08-19 16:47:41','2006-02-15 22:21:59'),(14985,559,2,13322,'4.99','2005-08-19 19:43:08','2006-02-15 22:21:59'),(14986,559,1,13845,'5.99','2005-08-20 14:31:21','2006-02-15 22:21:59'),(14987,559,1,14342,'4.99','2005-08-21 08:39:26','2006-02-15 22:22:00'),(14988,559,2,14622,'4.99','2005-08-21 18:25:59','2006-02-15 22:22:00'),(14989,559,2,15440,'4.99','2005-08-23 00:37:21','2006-02-15 22:22:00'),(14990,559,1,15877,'4.99','2005-08-23 16:33:33','2006-02-15 22:22:00'),(14991,560,1,137,'2.99','2005-05-25 22:25:18','2006-02-15 22:22:00'),(14992,560,1,1271,'4.99','2005-06-15 07:32:24','2006-02-15 22:22:00'),(14993,560,2,1572,'1.99','2005-06-16 03:23:22','2006-02-15 22:22:00'),(14994,560,1,3941,'4.99','2005-07-06 21:20:37','2006-02-15 22:22:00'),(14995,560,1,4298,'2.99','2005-07-07 16:27:25','2006-02-15 22:22:00'),(14996,560,2,4375,'9.99','2005-07-07 20:20:29','2006-02-15 22:22:00'),(14997,560,1,4453,'0.99','2005-07-07 23:32:39','2006-02-15 22:22:00'),(14998,560,2,5208,'2.99','2005-07-09 11:16:56','2006-02-15 22:22:00'),(14999,560,1,6410,'4.99','2005-07-11 23:08:06','2006-02-15 22:22:00'),(15000,560,1,6945,'2.99','2005-07-26 23:35:29','2006-02-15 22:22:00'),(15001,560,2,7202,'4.99','2005-07-27 09:00:20','2006-02-15 22:22:00'),(15002,560,1,7891,'3.99','2005-07-28 10:43:56','2006-02-15 22:22:01'),(15003,560,1,8753,'2.99','2005-07-29 19:15:50','2006-02-15 22:22:01'),(15004,560,2,8861,'5.99','2005-07-29 23:47:29','2006-02-15 22:22:01'),(15005,560,2,8906,'4.99','2005-07-30 01:21:39','2006-02-15 22:22:01'),(15006,560,1,9265,'0.99','2005-07-30 14:55:25','2006-02-15 22:22:01'),(15007,560,2,9895,'5.99','2005-07-31 14:07:56','2006-02-15 22:22:01'),(15008,560,2,10480,'4.99','2005-08-01 10:13:41','2006-02-15 22:22:01'),(15009,560,1,10702,'4.99','2005-08-01 18:34:59','2006-02-15 22:22:01'),(15010,560,1,10733,'7.99','2005-08-01 19:28:01','2006-02-15 22:22:01'),(15011,560,1,11334,'7.99','2005-08-02 16:53:20','2006-02-15 22:22:01'),(15012,560,1,11788,'4.99','2005-08-17 10:59:18','2006-02-15 22:22:01'),(15013,560,2,14008,'5.99','2005-08-20 20:26:00','2006-02-15 22:22:01'),(15014,560,1,14341,'1.99','2005-08-21 08:38:24','2006-02-15 22:22:01'),(15015,560,2,14363,'4.99','2005-08-21 09:20:03','2006-02-15 22:22:01'),(15016,560,1,14436,'2.99','2005-08-21 11:48:27','2006-02-15 22:22:01'),(15017,560,2,14785,'2.99','2005-08-22 00:24:37','2006-02-15 22:22:02'),(15018,560,1,15352,'6.99','2005-08-22 21:16:54','2006-02-15 22:22:02'),(15019,560,2,12116,'5.98','2006-02-14 15:16:03','2006-02-15 22:22:02'),(15020,560,2,14425,'0.00','2006-02-14 15:16:03','2006-02-15 22:22:02'),(15021,561,1,902,'4.99','2005-05-30 09:53:36','2006-02-15 22:22:02'),(15022,561,2,971,'4.99','2005-05-30 20:10:52','2006-02-15 22:22:02'),(15023,561,2,1193,'2.99','2005-06-15 01:24:20','2006-02-15 22:22:02'),(15024,561,2,1505,'2.99','2005-06-15 22:12:50','2006-02-15 22:22:02'),(15025,561,2,1620,'4.99','2005-06-16 07:21:30','2006-02-15 22:22:02'),(15026,561,1,2119,'4.99','2005-06-17 20:34:42','2006-02-15 22:22:02'),(15027,561,1,2357,'5.99','2005-06-18 12:59:41','2006-02-15 22:22:02'),(15028,561,1,2548,'0.99','2005-06-19 02:45:35','2006-02-15 22:22:02'),(15029,561,1,2950,'4.99','2005-06-20 06:08:36','2006-02-15 22:22:02'),(15030,561,1,3160,'4.99','2005-06-20 21:20:51','2006-02-15 22:22:02'),(15031,561,1,3427,'0.99','2005-06-21 18:31:09','2006-02-15 22:22:03'),(15032,561,2,6361,'2.99','2005-07-11 21:09:14','2006-02-15 22:22:03'),(15033,561,1,6435,'0.99','2005-07-12 00:16:19','2006-02-15 22:22:03'),(15034,561,1,6621,'0.99','2005-07-12 08:57:30','2006-02-15 22:22:03'),(15035,561,1,6843,'4.99','2005-07-12 19:14:05','2006-02-15 22:22:03'),(15036,561,1,7698,'0.99','2005-07-28 03:44:14','2006-02-15 22:22:03'),(15037,561,1,8504,'10.99','2005-07-29 09:20:16','2006-02-15 22:22:03'),(15038,561,2,9839,'7.99','2005-07-31 12:21:16','2006-02-15 22:22:03'),(15039,561,2,10317,'2.99','2005-08-01 04:35:34','2006-02-15 22:22:03'),(15040,561,1,10907,'4.99','2005-08-02 01:51:48','2006-02-15 22:22:03'),(15041,561,1,11371,'2.99','2005-08-02 18:07:36','2006-02-15 22:22:03'),(15042,561,2,11402,'2.99','2005-08-02 19:07:21','2006-02-15 22:22:03'),(15043,561,2,12441,'2.99','2005-08-18 10:47:57','2006-02-15 22:22:03'),(15044,561,2,14139,'0.99','2005-08-21 02:04:33','2006-02-15 22:22:03'),(15045,561,1,15573,'0.99','2005-08-23 05:28:36','2006-02-15 22:22:03'),(15046,561,1,15946,'2.99','2005-08-23 18:54:07','2006-02-15 22:22:04'),(15047,561,1,14415,'0.99','2006-02-14 15:16:03','2006-02-15 22:22:04'),(15048,562,2,788,'2.99','2005-05-29 16:13:55','2006-02-15 22:22:04'),(15049,562,1,941,'2.99','2005-05-30 15:02:25','2006-02-15 22:22:04'),(15050,562,1,1139,'5.99','2005-05-31 19:34:52','2006-02-15 22:22:04'),(15051,562,1,1998,'3.99','2005-06-17 11:24:57','2006-02-15 22:22:04'),(15052,562,1,2705,'4.99','2005-06-19 13:54:30','2006-02-15 22:22:04'),(15053,562,1,2746,'3.99','2005-06-19 16:21:40','2006-02-15 22:22:04'),(15054,562,2,3242,'4.99','2005-06-21 02:56:24','2006-02-15 22:22:04'),(15055,562,2,4732,'5.99','2005-07-08 13:09:45','2006-02-15 22:22:04'),(15056,562,1,4802,'4.99','2005-07-08 16:55:17','2006-02-15 22:22:04'),(15057,562,2,5360,'0.99','2005-07-09 18:14:03','2006-02-15 22:22:04'),(15058,562,2,6065,'6.99','2005-07-11 04:25:51','2006-02-15 22:22:04'),(15059,562,1,6607,'8.99','2005-07-12 08:08:50','2006-02-15 22:22:04'),(15060,562,2,7166,'3.99','2005-07-27 07:36:56','2006-02-15 22:22:04'),(15061,562,1,7430,'2.99','2005-07-27 17:26:14','2006-02-15 22:22:05'),(15062,562,2,7560,'2.99','2005-07-27 22:20:17','2006-02-15 22:22:05'),(15063,562,2,8132,'0.99','2005-07-28 19:57:31','2006-02-15 22:22:05'),(15064,562,2,10868,'6.99','2005-08-02 00:25:15','2006-02-15 22:22:05'),(15065,562,2,12008,'4.99','2005-08-17 19:16:18','2006-02-15 22:22:05'),(15066,562,1,12248,'5.99','2005-08-18 03:53:18','2006-02-15 22:22:05'),(15067,562,2,13225,'2.99','2005-08-19 15:54:33','2006-02-15 22:22:05'),(15068,562,2,13347,'10.99','2005-08-19 20:28:48','2006-02-15 22:22:05'),(15069,562,2,13639,'0.99','2005-08-20 07:22:07','2006-02-15 22:22:05'),(15070,562,1,15212,'2.99','2005-08-22 16:44:26','2006-02-15 22:22:05'),(15071,562,2,15475,'2.99','2005-08-23 01:44:43','2006-02-15 22:22:05'),(15072,562,1,15900,'1.99','2005-08-23 17:16:30','2006-02-15 22:22:05'),(15073,563,1,758,'4.99','2005-05-29 10:31:56','2006-02-15 22:22:05'),(15074,563,2,773,'5.99','2005-05-29 13:18:05','2006-02-15 22:22:05'),(15075,563,2,1545,'4.99','2005-06-16 01:31:23','2006-02-15 22:22:06'),(15076,563,2,2573,'0.99','2005-06-19 04:23:18','2006-02-15 22:22:06'),(15077,563,1,4106,'1.99','2005-07-07 06:33:35','2006-02-15 22:22:06'),(15078,563,2,4436,'0.99','2005-07-07 22:52:04','2006-02-15 22:22:06'),(15079,563,1,4565,'3.99','2005-07-08 05:12:28','2006-02-15 22:22:06'),(15080,563,2,4629,'6.99','2005-07-08 08:31:26','2006-02-15 22:22:06'),(15081,563,2,4711,'2.99','2005-07-08 12:06:58','2006-02-15 22:22:06'),(15082,563,2,4776,'5.99','2005-07-08 15:44:20','2006-02-15 22:22:06'),(15083,563,2,4808,'3.99','2005-07-08 17:02:49','2006-02-15 22:22:06'),(15084,563,2,4825,'4.99','2005-07-08 17:43:01','2006-02-15 22:22:06'),(15085,563,1,4883,'0.99','2005-07-08 19:46:58','2006-02-15 22:22:06'),(15086,563,1,5406,'0.99','2005-07-09 20:13:23','2006-02-15 22:22:06'),(15087,563,2,6326,'2.99','2005-07-11 19:06:55','2006-02-15 22:22:06'),(15088,563,2,7612,'0.99','2005-07-28 00:11:55','2006-02-15 22:22:06'),(15089,563,1,8262,'1.99','2005-07-29 01:11:18','2006-02-15 22:22:06'),(15090,563,1,8610,'5.99','2005-07-29 13:25:02','2006-02-15 22:22:07'),(15091,563,2,8632,'6.99','2005-07-29 14:11:25','2006-02-15 22:22:07'),(15092,563,2,8812,'7.99','2005-07-29 21:47:40','2006-02-15 22:22:07'),(15093,563,2,11829,'0.99','2005-08-17 12:52:04','2006-02-15 22:22:07'),(15094,563,1,12039,'1.99','2005-08-17 20:29:08','2006-02-15 22:22:07'),(15095,563,1,12202,'1.99','2005-08-18 02:14:08','2006-02-15 22:22:07'),(15096,563,1,12832,'2.99','2005-08-19 01:41:44','2006-02-15 22:22:07'),(15097,563,2,13863,'9.99','2005-08-20 14:57:50','2006-02-15 22:22:07'),(15098,563,2,14592,'4.99','2005-08-21 17:30:17','2006-02-15 22:22:07'),(15099,563,2,15507,'0.99','2005-08-23 02:48:26','2006-02-15 22:22:07'),(15100,563,2,15638,'3.99','2005-08-23 07:54:54','2006-02-15 22:22:07'),(15101,563,1,15850,'4.99','2005-08-23 15:45:42','2006-02-15 22:22:07'),(15102,564,2,195,'5.99','2005-05-26 06:52:36','2006-02-15 22:22:07'),(15103,564,1,985,'2.99','2005-05-30 22:18:35','2006-02-15 22:22:07'),(15104,564,2,1705,'2.99','2005-06-16 13:59:42','2006-02-15 22:22:07'),(15105,564,1,4196,'2.99','2005-07-07 11:06:33','2006-02-15 22:22:08'),(15106,564,2,4385,'0.99','2005-07-07 20:48:38','2006-02-15 22:22:08'),(15107,564,1,6973,'2.99','2005-07-27 00:32:04','2006-02-15 22:22:08'),(15108,564,2,7470,'10.99','2005-07-27 19:01:03','2006-02-15 22:22:08'),(15109,564,2,8426,'4.99','2005-07-29 07:07:48','2006-02-15 22:22:08'),(15110,564,1,8874,'0.99','2005-07-30 00:14:45','2006-02-15 22:22:08'),(15111,564,2,9063,'3.99','2005-07-30 07:24:34','2006-02-15 22:22:08'),(15112,564,2,9929,'2.99','2005-07-31 15:17:24','2006-02-15 22:22:08'),(15113,564,1,10129,'6.99','2005-07-31 21:41:35','2006-02-15 22:22:08'),(15114,564,2,10352,'1.99','2005-08-01 05:44:36','2006-02-15 22:22:08'),(15115,564,2,10401,'4.99','2005-08-01 07:27:09','2006-02-15 22:22:08'),(15116,564,1,10528,'2.99','2005-08-01 11:56:22','2006-02-15 22:22:08'),(15117,564,2,11768,'2.99','2005-08-17 10:02:29','2006-02-15 22:22:08'),(15118,564,2,12197,'6.99','2005-08-18 02:08:58','2006-02-15 22:22:08'),(15119,564,2,12617,'2.99','2005-08-18 17:22:48','2006-02-15 22:22:09'),(15120,564,2,13324,'0.99','2005-08-19 19:51:00','2006-02-15 22:22:09'),(15121,564,2,13558,'0.99','2005-08-20 04:13:17','2006-02-15 22:22:09'),(15122,564,1,13701,'0.99','2005-08-20 09:27:05','2006-02-15 22:22:09'),(15123,564,2,14439,'5.99','2005-08-21 11:52:41','2006-02-15 22:22:09'),(15124,564,1,14593,'0.99','2005-08-21 17:33:18','2006-02-15 22:22:09'),(15125,564,2,15059,'8.99','2005-08-22 10:22:00','2006-02-15 22:22:09'),(15126,565,1,458,'6.99','2005-05-27 19:58:36','2006-02-15 22:22:09'),(15127,565,1,1004,'0.99','2005-05-31 00:48:36','2006-02-15 22:22:09'),(15128,565,2,1460,'4.99','2005-06-15 20:27:02','2006-02-15 22:22:09'),(15129,565,1,2321,'5.99','2005-06-18 09:42:42','2006-02-15 22:22:09'),(15130,565,1,3300,'5.99','2005-06-21 07:25:01','2006-02-15 22:22:09'),(15131,565,2,3470,'0.99','2005-07-05 22:49:24','2006-02-15 22:22:09'),(15132,565,1,3838,'2.99','2005-07-06 16:29:43','2006-02-15 22:22:09'),(15133,565,1,4413,'2.99','2005-07-07 22:00:04','2006-02-15 22:22:09'),(15134,565,2,5020,'0.99','2005-07-09 02:07:56','2006-02-15 22:22:10'),(15135,565,1,5124,'4.99','2005-07-09 07:25:19','2006-02-15 22:22:10'),(15136,565,1,6264,'2.99','2005-07-11 15:42:35','2006-02-15 22:22:10'),(15137,565,1,6627,'2.99','2005-07-12 09:16:46','2006-02-15 22:22:10'),(15138,565,1,6699,'0.99','2005-07-12 12:45:21','2006-02-15 22:22:10'),(15139,565,2,7242,'5.99','2005-07-27 10:25:51','2006-02-15 22:22:10'),(15140,565,1,9628,'2.99','2005-07-31 04:51:11','2006-02-15 22:22:10'),(15141,565,1,10025,'5.99','2005-07-31 18:29:09','2006-02-15 22:22:10'),(15142,565,2,10776,'10.99','2005-08-01 20:59:58','2006-02-15 22:22:10'),(15143,565,2,10913,'3.99','2005-08-02 02:04:03','2006-02-15 22:22:10'),(15144,565,2,11189,'6.99','2005-08-02 11:17:23','2006-02-15 22:22:10'),(15145,565,1,11399,'3.99','2005-08-02 18:56:28','2006-02-15 22:22:10'),(15146,565,2,11506,'4.99','2005-08-16 23:25:48','2006-02-15 22:22:10'),(15147,565,1,11588,'3.99','2005-08-17 02:26:23','2006-02-15 22:22:10'),(15148,565,1,11795,'2.99','2005-08-17 11:13:38','2006-02-15 22:22:10'),(15149,565,2,12743,'5.99','2005-08-18 22:22:31','2006-02-15 22:22:11'),(15150,565,2,13195,'4.99','2005-08-19 14:39:14','2006-02-15 22:22:11'),(15151,565,2,13217,'4.99','2005-08-19 15:38:39','2006-02-15 22:22:11'),(15152,565,1,13362,'0.99','2005-08-19 21:07:54','2006-02-15 22:22:11'),(15153,565,1,13925,'8.99','2005-08-20 17:05:34','2006-02-15 22:22:11'),(15154,565,1,15885,'2.99','2005-08-23 16:50:43','2006-02-15 22:22:11'),(15155,566,2,234,'5.99','2005-05-26 11:47:20','2006-02-15 22:22:11'),(15156,566,2,768,'4.99','2005-05-29 12:30:46','2006-02-15 22:22:11'),(15157,566,1,1635,'5.99','2005-06-16 08:26:56','2006-02-15 22:22:11'),(15158,566,2,1982,'4.99','2005-06-17 10:12:15','2006-02-15 22:22:11'),(15159,566,1,2367,'0.99','2005-06-18 14:00:31','2006-02-15 22:22:11'),(15160,566,1,3379,'4.99','2005-06-21 13:54:58','2006-02-15 22:22:11'),(15161,566,2,3663,'4.99','2005-07-06 08:15:47','2006-02-15 22:22:11'),(15162,566,1,3943,'0.99','2005-07-06 21:22:17','2006-02-15 22:22:11'),(15163,566,1,3998,'3.99','2005-07-06 23:49:20','2006-02-15 22:22:12'),(15164,566,1,5079,'9.99','2005-07-09 05:20:40','2006-02-15 22:22:12'),(15165,566,2,6365,'2.99','2005-07-11 21:17:40','2006-02-15 22:22:12'),(15166,566,1,7677,'2.99','2005-07-28 02:56:37','2006-02-15 22:22:12'),(15167,566,2,7941,'0.99','2005-07-28 12:47:20','2006-02-15 22:22:12'),(15168,566,2,8118,'2.99','2005-07-28 19:22:22','2006-02-15 22:22:12'),(15169,566,1,8157,'6.99','2005-07-28 21:06:45','2006-02-15 22:22:12'),(15170,566,1,8257,'2.99','2005-07-29 01:03:20','2006-02-15 22:22:12'),(15171,566,2,8305,'1.99','2005-07-29 03:08:47','2006-02-15 22:22:12'),(15172,566,2,8660,'6.99','2005-07-29 15:26:59','2006-02-15 22:22:12'),(15173,566,1,8710,'0.99','2005-07-29 17:26:03','2006-02-15 22:22:12'),(15174,566,1,8797,'4.99','2005-07-29 21:10:37','2006-02-15 22:22:12'),(15175,566,2,9101,'4.99','2005-07-30 08:47:13','2006-02-15 22:22:12'),(15176,566,2,9470,'4.99','2005-07-30 23:01:31','2006-02-15 22:22:12'),(15177,566,1,9688,'3.99','2005-07-31 06:56:08','2006-02-15 22:22:12'),(15178,566,2,9915,'2.99','2005-07-31 14:52:26','2006-02-15 22:22:13'),(15179,566,2,10259,'2.99','2005-08-01 02:52:05','2006-02-15 22:22:13'),(15180,566,2,10289,'6.99','2005-08-01 03:39:48','2006-02-15 22:22:13'),(15181,566,2,11129,'2.99','2005-08-02 09:08:44','2006-02-15 22:22:13'),(15182,566,1,11717,'0.99','2005-08-17 07:44:09','2006-02-15 22:22:13'),(15183,566,1,11941,'1.99','2005-08-17 16:56:57','2006-02-15 22:22:13'),(15184,566,2,12382,'8.99','2005-08-18 08:32:33','2006-02-15 22:22:13'),(15185,566,2,12995,'4.99','2005-08-19 07:26:30','2006-02-15 22:22:13'),(15186,566,2,13762,'4.99','2005-08-20 11:29:32','2006-02-15 22:22:13'),(15187,566,1,14277,'3.99','2005-08-21 06:34:41','2006-02-15 22:22:13'),(15188,566,1,14297,'2.99','2005-08-21 07:13:46','2006-02-15 22:22:13'),(15189,567,2,2689,'4.99','2005-06-19 12:58:53','2006-02-15 22:22:13'),(15190,567,1,3010,'2.99','2005-06-20 10:29:59','2006-02-15 22:22:13'),(15191,567,1,3769,'5.99','2005-07-06 13:11:33','2006-02-15 22:22:13'),(15192,567,2,4457,'0.99','2005-07-07 23:45:38','2006-02-15 22:22:14'),(15193,567,2,4576,'0.99','2005-07-08 05:51:19','2006-02-15 22:22:14'),(15194,567,1,4949,'4.99','2005-07-08 22:57:10','2006-02-15 22:22:14'),(15195,567,2,6358,'2.99','2005-07-11 21:03:12','2006-02-15 22:22:14'),(15196,567,2,6551,'0.99','2005-07-12 05:03:43','2006-02-15 22:22:14'),(15197,567,2,7340,'2.99','2005-07-27 14:18:10','2006-02-15 22:22:14'),(15198,567,1,8201,'2.99','2005-07-28 23:10:48','2006-02-15 22:22:14'),(15199,567,1,8629,'2.99','2005-07-29 14:06:35','2006-02-15 22:22:14'),(15200,567,1,9279,'7.99','2005-07-30 15:15:21','2006-02-15 22:22:14'),(15201,567,1,9475,'6.99','2005-07-30 23:06:33','2006-02-15 22:22:14'),(15202,567,2,10708,'7.99','2005-08-01 18:43:28','2006-02-15 22:22:14'),(15203,567,2,11749,'2.99','2005-08-17 09:04:03','2006-02-15 22:22:14'),(15204,567,1,12119,'2.99','2005-08-17 23:16:44','2006-02-15 22:22:14'),(15205,567,2,13031,'2.99','2005-08-19 08:30:04','2006-02-15 22:22:14'),(15206,567,2,14839,'2.99','2005-08-22 01:58:15','2006-02-15 22:22:14'),(15207,567,2,15074,'5.99','2005-08-22 11:02:52','2006-02-15 22:22:15'),(15208,567,2,15594,'10.99','2005-08-23 06:18:43','2006-02-15 22:22:15'),(15209,568,2,1658,'4.99','2005-06-16 10:07:10','2006-02-15 22:22:15'),(15210,568,2,2382,'4.99','2005-06-18 15:03:52','2006-02-15 22:22:15'),(15211,568,2,2668,'0.99','2005-06-19 11:28:47','2006-02-15 22:22:15'),(15212,568,1,3227,'4.99','2005-06-21 02:18:25','2006-02-15 22:22:15'),(15213,568,2,3462,'1.99','2005-06-21 21:52:52','2006-02-15 22:22:15'),(15214,568,1,4322,'2.99','2005-07-07 17:54:37','2006-02-15 22:22:15'),(15215,568,2,5332,'2.99','2005-07-09 16:59:23','2006-02-15 22:22:15'),(15216,568,1,5622,'0.99','2005-07-10 05:39:37','2006-02-15 22:22:15'),(15217,568,1,5776,'4.99','2005-07-10 13:35:22','2006-02-15 22:22:15'),(15218,568,2,7068,'2.99','2005-07-27 03:57:50','2006-02-15 22:22:15'),(15219,568,2,8185,'0.99','2005-07-28 22:23:49','2006-02-15 22:22:15'),(15220,568,2,9583,'6.99','2005-07-31 03:05:21','2006-02-15 22:22:15'),(15221,568,1,9738,'0.99','2005-07-31 09:04:14','2006-02-15 22:22:16'),(15222,568,1,10340,'2.99','2005-08-01 05:07:03','2006-02-15 22:22:16'),(15223,568,2,10689,'0.99','2005-08-01 18:04:18','2006-02-15 22:22:16'),(15224,568,2,10869,'0.99','2005-08-02 00:26:54','2006-02-15 22:22:16'),(15225,568,1,11331,'2.99','2005-08-02 16:49:01','2006-02-15 22:22:16'),(15226,568,1,13883,'4.99','2005-08-20 15:28:53','2006-02-15 22:22:16'),(15227,568,2,15069,'5.99','2005-08-22 10:55:42','2006-02-15 22:22:16'),(15228,568,1,15203,'2.99','2005-08-22 16:28:00','2006-02-15 22:22:16'),(15229,568,2,14531,'2.99','2006-02-14 15:16:03','2006-02-15 22:22:16'),(15230,569,2,53,'4.99','2005-05-25 07:19:16','2006-02-15 22:22:16'),(15231,569,1,487,'4.99','2005-05-28 00:00:30','2006-02-15 22:22:16'),(15232,569,1,624,'4.99','2005-05-28 16:13:22','2006-02-15 22:22:16'),(15233,569,1,647,'1.99','2005-05-28 19:22:52','2006-02-15 22:22:16'),(15234,569,2,1037,'3.99','2005-05-31 05:22:25','2006-02-15 22:22:16'),(15235,569,1,1463,'6.99','2005-06-15 20:37:51','2006-02-15 22:22:16'),(15236,569,2,1668,'5.99','2005-06-16 10:19:52','2006-02-15 22:22:17'),(15237,569,1,4204,'5.99','2005-07-07 11:24:18','2006-02-15 22:22:17'),(15238,569,2,5003,'0.99','2005-07-09 01:19:03','2006-02-15 22:22:17'),(15239,569,2,6046,'5.99','2005-07-11 03:21:49','2006-02-15 22:22:17'),(15240,569,1,8910,'2.99','2005-07-30 01:29:48','2006-02-15 22:22:17'),(15241,569,2,9220,'1.99','2005-07-30 13:17:27','2006-02-15 22:22:17'),(15242,569,1,9399,'4.99','2005-07-30 20:14:50','2006-02-15 22:22:17'),(15243,569,2,9960,'1.99','2005-07-31 16:05:52','2006-02-15 22:22:17'),(15244,569,2,10192,'2.99','2005-08-01 00:33:00','2006-02-15 22:22:17'),(15245,569,2,10884,'0.99','2005-08-02 00:47:33','2006-02-15 22:22:17'),(15246,569,1,11030,'1.99','2005-08-02 05:51:20','2006-02-15 22:22:17'),(15247,569,2,11255,'4.99','2005-08-02 13:44:30','2006-02-15 22:22:17'),(15248,569,1,11354,'6.99','2005-08-02 17:35:10','2006-02-15 22:22:17'),(15249,569,1,11946,'4.99','2005-08-17 17:05:53','2006-02-15 22:22:17'),(15250,569,1,12157,'2.99','2005-08-18 00:33:45','2006-02-15 22:22:18'),(15251,569,2,12308,'0.99','2005-08-18 05:48:53','2006-02-15 22:22:18'),(15252,569,1,12568,'3.99','2005-08-18 15:15:44','2006-02-15 22:22:18'),(15253,569,2,12958,'2.99','2005-08-19 06:19:21','2006-02-15 22:22:18'),(15254,569,1,13287,'7.99','2005-08-19 18:28:24','2006-02-15 22:22:18'),(15255,569,2,13554,'9.99','2005-08-20 04:08:39','2006-02-15 22:22:18'),(15256,569,2,14207,'4.99','2005-08-21 04:08:19','2006-02-15 22:22:18'),(15257,569,2,14400,'0.99','2005-08-21 10:33:45','2006-02-15 22:22:18'),(15258,569,1,14896,'8.99','2005-08-22 04:20:55','2006-02-15 22:22:18'),(15259,569,1,14959,'2.99','2005-08-22 06:30:28','2006-02-15 22:22:18'),(15260,569,2,15617,'0.99','2005-08-23 07:07:22','2006-02-15 22:22:18'),(15261,569,2,16025,'4.99','2005-08-23 21:48:54','2006-02-15 22:22:18'),(15262,570,2,1060,'7.99','2005-05-31 08:21:43','2006-02-15 22:22:18'),(15263,570,1,1259,'4.99','2005-06-15 06:37:55','2006-02-15 22:22:18'),(15264,570,2,1417,'4.99','2005-06-15 17:45:51','2006-02-15 22:22:18'),(15265,570,2,1804,'2.99','2005-06-16 20:33:15','2006-02-15 22:22:19'),(15266,570,2,2008,'5.99','2005-06-17 11:48:05','2006-02-15 22:22:19'),(15267,570,2,2031,'6.99','2005-06-17 13:14:03','2006-02-15 22:22:19'),(15268,570,2,2261,'3.99','2005-06-18 05:46:15','2006-02-15 22:22:19'),(15269,570,2,3138,'2.99','2005-06-20 19:43:45','2006-02-15 22:22:19'),(15270,570,2,3984,'0.99','2005-07-06 23:22:36','2006-02-15 22:22:19'),(15271,570,1,4069,'0.99','2005-07-07 04:35:06','2006-02-15 22:22:19'),(15272,570,1,4698,'0.99','2005-07-08 11:19:31','2006-02-15 22:22:19'),(15273,570,2,5638,'4.99','2005-07-10 06:32:49','2006-02-15 22:22:19'),(15274,570,1,6253,'4.99','2005-07-11 15:07:19','2006-02-15 22:22:19'),(15275,570,1,6556,'0.99','2005-07-12 05:10:16','2006-02-15 22:22:19'),(15276,570,2,7174,'4.99','2005-07-27 08:00:36','2006-02-15 22:22:19'),(15277,570,2,8735,'4.99','2005-07-29 18:28:54','2006-02-15 22:22:19'),(15278,570,1,9385,'7.99','2005-07-30 19:25:49','2006-02-15 22:22:19'),(15279,570,1,9398,'0.99','2005-07-30 20:09:00','2006-02-15 22:22:20'),(15280,570,2,9432,'2.99','2005-07-30 21:26:18','2006-02-15 22:22:20'),(15281,570,1,9766,'4.99','2005-07-31 09:46:29','2006-02-15 22:22:20'),(15282,570,1,10004,'0.99','2005-07-31 17:51:23','2006-02-15 22:22:20'),(15283,570,2,10168,'2.99','2005-07-31 23:25:24','2006-02-15 22:22:20'),(15284,570,1,11098,'3.99','2005-08-02 08:06:18','2006-02-15 22:22:20'),(15285,570,2,12042,'4.99','2005-08-17 20:36:37','2006-02-15 22:22:20'),(15286,570,2,14768,'3.99','2005-08-21 23:44:53','2006-02-15 22:22:20'),(15287,570,1,12716,'0.99','2006-02-14 15:16:03','2006-02-15 22:22:20'),(15288,571,1,228,'9.99','2005-05-26 10:54:28','2006-02-15 22:22:20'),(15289,571,2,689,'3.99','2005-05-29 00:46:53','2006-02-15 22:22:20'),(15290,571,1,1254,'4.99','2005-06-15 06:11:16','2006-02-15 22:22:20'),(15291,571,2,1400,'3.99','2005-06-15 16:29:56','2006-02-15 22:22:20'),(15292,571,1,1756,'4.99','2005-06-16 17:22:33','2006-02-15 22:22:20'),(15293,571,2,1990,'4.99','2005-06-17 10:48:44','2006-02-15 22:22:20'),(15294,571,1,2327,'2.99','2005-06-18 10:16:40','2006-02-15 22:22:21'),(15295,571,1,2977,'10.99','2005-06-20 08:15:27','2006-02-15 22:22:21'),(15296,571,2,3616,'2.99','2005-07-06 05:52:13','2006-02-15 22:22:21'),(15297,571,1,4162,'4.99','2005-07-07 09:17:26','2006-02-15 22:22:21'),(15298,571,2,5789,'4.99','2005-07-10 14:11:26','2006-02-15 22:22:21'),(15299,571,2,6676,'8.99','2005-07-12 11:53:40','2006-02-15 22:22:21'),(15300,571,1,6792,'8.99','2005-07-12 16:37:28','2006-02-15 22:22:21'),(15301,571,1,8084,'5.99','2005-07-28 18:11:58','2006-02-15 22:22:21'),(15302,571,1,8638,'4.99','2005-07-29 14:30:23','2006-02-15 22:22:21'),(15303,571,2,9300,'1.99','2005-07-30 16:33:12','2006-02-15 22:22:21'),(15304,571,1,9408,'4.99','2005-07-30 20:32:09','2006-02-15 22:22:21'),(15305,571,1,10227,'2.99','2005-08-01 01:42:22','2006-02-15 22:22:21'),(15306,571,2,11080,'2.99','2005-08-02 07:29:56','2006-02-15 22:22:21'),(15307,571,2,11191,'7.99','2005-08-02 11:24:07','2006-02-15 22:22:21'),(15308,571,1,13228,'2.99','2005-08-19 16:08:16','2006-02-15 22:22:22'),(15309,571,2,13266,'2.99','2005-08-19 17:31:20','2006-02-15 22:22:22'),(15310,571,1,14956,'0.99','2005-08-22 06:26:16','2006-02-15 22:22:22'),(15311,571,1,15841,'4.99','2005-08-23 15:35:59','2006-02-15 22:22:22'),(15312,572,2,559,'7.99','2005-05-28 08:39:02','2006-02-15 22:22:22'),(15313,572,2,1889,'10.99','2005-06-17 04:05:12','2006-02-15 22:22:22'),(15314,572,1,2007,'0.99','2005-06-17 11:47:17','2006-02-15 22:22:22'),(15315,572,1,2458,'0.99','2005-06-18 19:39:05','2006-02-15 22:22:22'),(15316,572,1,4601,'2.99','2005-07-08 06:49:10','2006-02-15 22:22:22'),(15317,572,1,5595,'4.99','2005-07-10 04:33:45','2006-02-15 22:22:22'),(15318,572,1,5713,'6.99','2005-07-10 10:46:15','2006-02-15 22:22:22'),(15319,572,2,6108,'2.99','2005-07-11 07:19:24','2006-02-15 22:22:22'),(15320,572,1,7161,'4.99','2005-07-27 07:26:32','2006-02-15 22:22:22'),(15321,572,1,7345,'4.99','2005-07-27 14:29:53','2006-02-15 22:22:22'),(15322,572,2,7713,'6.99','2005-07-28 04:32:14','2006-02-15 22:22:23'),(15323,572,2,8342,'0.99','2005-07-29 04:45:05','2006-02-15 22:22:23'),(15324,572,1,8432,'0.99','2005-07-29 07:13:33','2006-02-15 22:22:23'),(15325,572,1,9081,'3.99','2005-07-30 08:09:58','2006-02-15 22:22:23'),(15326,572,2,9950,'5.99','2005-07-31 15:50:22','2006-02-15 22:22:23'),(15327,572,2,10204,'4.99','2005-08-01 00:47:39','2006-02-15 22:22:23'),(15328,572,1,11114,'0.99','2005-08-02 08:26:45','2006-02-15 22:22:23'),(15329,572,1,11121,'4.99','2005-08-02 08:48:31','2006-02-15 22:22:23'),(15330,572,2,11415,'2.99','2005-08-02 19:43:38','2006-02-15 22:22:23'),(15331,572,1,11426,'4.99','2005-08-02 20:00:09','2006-02-15 22:22:23'),(15332,572,1,11526,'4.99','2005-08-17 00:17:38','2006-02-15 22:22:23'),(15333,572,1,12256,'1.99','2005-08-18 04:09:39','2006-02-15 22:22:23'),(15334,572,2,13377,'1.99','2005-08-19 21:32:23','2006-02-15 22:22:23'),(15335,572,2,13523,'6.99','2005-08-20 02:47:03','2006-02-15 22:22:23'),(15336,572,1,13688,'5.99','2005-08-20 08:59:38','2006-02-15 22:22:23'),(15337,573,2,827,'2.99','2005-05-29 21:58:43','2006-02-15 22:22:24'),(15338,573,1,1613,'4.99','2005-06-16 06:55:10','2006-02-15 22:22:24'),(15339,573,2,2622,'5.99','2005-06-19 08:10:41','2006-02-15 22:22:24'),(15340,573,1,2995,'1.99','2005-06-20 09:18:22','2006-02-15 22:22:24'),(15341,573,1,3295,'7.99','2005-06-21 07:04:17','2006-02-15 22:22:24'),(15342,573,2,3768,'0.99','2005-07-06 13:07:30','2006-02-15 22:22:24'),(15343,573,1,3930,'2.99','2005-07-06 20:54:07','2006-02-15 22:22:24'),(15344,573,2,4023,'4.99','2005-07-07 01:55:25','2006-02-15 22:22:24'),(15345,573,1,4085,'0.99','2005-07-07 05:25:39','2006-02-15 22:22:24'),(15346,573,1,4609,'0.99','2005-07-08 07:22:29','2006-02-15 22:22:24'),(15347,573,1,4770,'2.99','2005-07-08 15:29:46','2006-02-15 22:22:24'),(15348,573,1,5036,'5.99','2005-07-09 02:58:41','2006-02-15 22:22:24'),(15349,573,2,5522,'9.99','2005-07-10 01:46:29','2006-02-15 22:22:24'),(15350,573,2,5903,'2.99','2005-07-10 20:39:04','2006-02-15 22:22:24'),(15351,573,1,6693,'7.99','2005-07-12 12:37:00','2006-02-15 22:22:25'),(15352,573,1,8400,'4.99','2005-07-29 06:23:56','2006-02-15 22:22:25'),(15353,573,2,9837,'10.99','2005-07-31 12:14:19','2006-02-15 22:22:25'),(15354,573,2,9846,'4.99','2005-07-31 12:30:12','2006-02-15 22:22:25'),(15355,573,2,9963,'2.99','2005-07-31 16:16:46','2006-02-15 22:22:25'),(15356,573,2,9971,'5.99','2005-07-31 16:42:16','2006-02-15 22:22:25'),(15357,573,1,10296,'0.99','2005-08-01 04:04:37','2006-02-15 22:22:25'),(15358,573,1,10887,'2.99','2005-08-02 00:52:35','2006-02-15 22:22:25'),(15359,573,1,11043,'0.99','2005-08-02 06:04:44','2006-02-15 22:22:25'),(15360,573,2,11912,'5.99','2005-08-17 15:51:49','2006-02-15 22:22:25'),(15361,573,1,12017,'1.99','2005-08-17 19:33:49','2006-02-15 22:22:25'),(15362,573,1,12125,'1.99','2005-08-17 23:24:25','2006-02-15 22:22:25'),(15363,573,1,12269,'6.99','2005-08-18 04:27:54','2006-02-15 22:22:25'),(15364,573,1,12791,'0.99','2005-08-19 00:17:09','2006-02-15 22:22:25'),(15365,573,2,13113,'2.99','2005-08-19 11:27:20','2006-02-15 22:22:25'),(15366,574,2,433,'0.99','2005-05-27 16:40:40','2006-02-15 22:22:26'),(15367,574,1,1559,'0.99','2005-06-16 02:35:03','2006-02-15 22:22:26'),(15368,574,2,1636,'5.99','2005-06-16 08:28:54','2006-02-15 22:22:26'),(15369,574,1,1817,'0.99','2005-06-16 21:20:52','2006-02-15 22:22:26'),(15370,574,1,2632,'0.99','2005-06-19 08:51:47','2006-02-15 22:22:26'),(15371,574,1,3220,'6.99','2005-06-21 01:46:25','2006-02-15 22:22:26'),(15372,574,1,3583,'7.99','2005-07-06 04:10:43','2006-02-15 22:22:26'),(15373,574,1,4004,'4.99','2005-07-07 00:20:51','2006-02-15 22:22:26'),(15374,574,1,4212,'4.99','2005-07-07 11:53:14','2006-02-15 22:22:26'),(15375,574,2,4890,'2.99','2005-07-08 20:05:38','2006-02-15 22:22:26'),(15376,574,2,5010,'4.99','2005-07-09 01:33:23','2006-02-15 22:22:26'),(15377,574,1,5076,'3.99','2005-07-09 05:13:22','2006-02-15 22:22:26'),(15378,574,1,5077,'3.99','2005-07-09 05:18:01','2006-02-15 22:22:26'),(15379,574,1,5640,'2.99','2005-07-10 06:38:00','2006-02-15 22:22:26'),(15380,574,1,6523,'2.99','2005-07-12 04:14:19','2006-02-15 22:22:27'),(15381,574,1,7093,'1.99','2005-07-27 04:47:00','2006-02-15 22:22:27'),(15382,574,1,7134,'2.99','2005-07-27 06:33:06','2006-02-15 22:22:27'),(15383,574,1,7964,'2.99','2005-07-28 13:49:58','2006-02-15 22:22:27'),(15384,574,1,8303,'4.99','2005-07-29 03:05:56','2006-02-15 22:22:27'),(15385,574,1,9589,'7.99','2005-07-31 03:13:29','2006-02-15 22:22:27'),(15386,574,1,9759,'3.99','2005-07-31 09:25:57','2006-02-15 22:22:27'),(15387,574,1,10347,'4.99','2005-08-01 05:20:03','2006-02-15 22:22:27'),(15388,574,2,11775,'3.99','2005-08-17 10:25:53','2006-02-15 22:22:27'),(15389,574,1,12462,'2.99','2005-08-18 11:28:55','2006-02-15 22:22:27'),(15390,574,1,13589,'4.99','2005-08-20 05:47:25','2006-02-15 22:22:27'),(15391,574,1,14076,'4.99','2005-08-20 23:20:10','2006-02-15 22:22:27'),(15392,574,2,14941,'2.99','2005-08-22 05:58:23','2006-02-15 22:22:27'),(15393,574,2,15214,'2.99','2005-08-22 16:53:29','2006-02-15 22:22:27'),(15394,575,1,17,'2.99','2005-05-25 01:06:36','2006-02-15 22:22:27'),(15395,575,1,395,'0.99','2005-05-27 11:45:49','2006-02-15 22:22:28'),(15396,575,2,454,'4.99','2005-05-27 19:31:36','2006-02-15 22:22:28'),(15397,575,2,769,'2.99','2005-05-29 12:51:44','2006-02-15 22:22:28'),(15398,575,1,774,'4.99','2005-05-29 13:19:43','2006-02-15 22:22:28'),(15399,575,2,1494,'2.99','2005-06-15 21:54:20','2006-02-15 22:22:28'),(15400,575,1,1824,'2.99','2005-06-16 21:51:04','2006-02-15 22:22:28'),(15401,575,2,1866,'4.99','2005-06-17 01:53:19','2006-02-15 22:22:28'),(15402,575,1,3558,'6.99','2005-07-06 02:49:06','2006-02-15 22:22:28'),(15403,575,2,5875,'8.99','2005-07-10 19:06:47','2006-02-15 22:22:28'),(15404,575,2,6907,'2.99','2005-07-12 22:03:49','2006-02-15 22:22:28'),(15405,575,1,7083,'0.99','2005-07-27 04:28:39','2006-02-15 22:22:28'),(15406,575,1,7139,'2.99','2005-07-27 06:52:21','2006-02-15 22:22:28'),(15407,575,2,8711,'2.99','2005-07-29 17:27:15','2006-02-15 22:22:28'),(15408,575,2,8904,'0.99','2005-07-30 01:08:33','2006-02-15 22:22:28'),(15409,575,2,8989,'4.99','2005-07-30 04:39:19','2006-02-15 22:22:29'),(15410,575,1,9733,'4.99','2005-07-31 08:57:35','2006-02-15 22:22:29'),(15411,575,1,10331,'4.99','2005-08-01 04:57:14','2006-02-15 22:22:29'),(15412,575,2,10629,'7.99','2005-08-01 15:33:32','2006-02-15 22:22:29'),(15413,575,1,11097,'3.99','2005-08-02 08:05:46','2006-02-15 22:22:29'),(15414,575,1,11458,'4.99','2005-08-02 21:24:02','2006-02-15 22:22:29'),(15415,575,1,12204,'7.99','2005-08-18 02:20:35','2006-02-15 22:22:29'),(15416,575,2,12289,'8.99','2005-08-18 05:05:28','2006-02-15 22:22:29'),(15417,575,2,12770,'5.99','2005-08-18 23:29:00','2006-02-15 22:22:29'),(15418,575,2,13408,'4.99','2005-08-19 22:34:51','2006-02-15 22:22:29'),(15419,575,2,13465,'2.99','2005-08-20 00:54:14','2006-02-15 22:22:29'),(15420,575,2,14952,'2.99','2005-08-22 06:20:07','2006-02-15 22:22:29'),(15421,575,2,15749,'4.99','2005-08-23 12:33:41','2006-02-15 22:22:29'),(15422,575,2,15857,'0.99','2005-08-23 15:59:51','2006-02-15 22:22:29'),(15423,576,2,755,'2.99','2005-05-29 10:26:29','2006-02-15 22:22:30'),(15424,576,1,968,'0.99','2005-05-30 19:20:03','2006-02-15 22:22:30'),(15425,576,1,1366,'4.99','2005-06-15 14:21:00','2006-02-15 22:22:30'),(15426,576,2,1742,'2.99','2005-06-16 16:37:48','2006-02-15 22:22:30'),(15427,576,1,2309,'0.99','2005-06-18 08:43:24','2006-02-15 22:22:30'),(15428,576,2,2444,'8.99','2005-06-18 18:58:12','2006-02-15 22:22:30'),(15429,576,1,2651,'3.99','2005-06-19 10:22:56','2006-02-15 22:22:30'),(15430,576,2,2799,'4.99','2005-06-19 19:15:21','2006-02-15 22:22:30'),(15431,576,2,3226,'6.99','2005-06-21 02:18:14','2006-02-15 22:22:30'),(15432,576,1,3877,'4.99','2005-07-06 18:22:10','2006-02-15 22:22:30'),(15433,576,2,3889,'0.99','2005-07-06 18:56:25','2006-02-15 22:22:30'),(15434,576,2,3934,'4.99','2005-07-06 21:07:23','2006-02-15 22:22:30'),(15435,576,1,4514,'4.99','2005-07-08 02:41:25','2006-02-15 22:22:30'),(15436,576,2,5597,'3.99','2005-07-10 04:47:57','2006-02-15 22:22:30'),(15437,576,1,5934,'4.99','2005-07-10 22:07:59','2006-02-15 22:22:30'),(15438,576,2,7319,'1.99','2005-07-27 13:31:25','2006-02-15 22:22:31'),(15439,576,1,7605,'3.99','2005-07-27 23:57:01','2006-02-15 22:22:31'),(15440,576,1,8907,'4.99','2005-07-30 01:25:03','2006-02-15 22:22:31'),(15441,576,1,9133,'5.99','2005-07-30 09:59:00','2006-02-15 22:22:31'),(15442,576,2,9548,'5.99','2005-07-31 01:54:19','2006-02-15 22:22:31'),(15443,576,2,9620,'8.99','2005-07-31 04:19:18','2006-02-15 22:22:31'),(15444,576,2,9962,'0.99','2005-07-31 16:10:36','2006-02-15 22:22:31'),(15445,576,1,9979,'2.99','2005-07-31 17:00:07','2006-02-15 22:22:31'),(15446,576,1,10000,'2.99','2005-07-31 17:41:05','2006-02-15 22:22:31'),(15447,576,2,10724,'3.99','2005-08-01 19:10:59','2006-02-15 22:22:31'),(15448,576,2,12112,'5.99','2005-08-17 23:00:31','2006-02-15 22:22:31'),(15449,576,1,12245,'4.99','2005-08-18 03:46:40','2006-02-15 22:22:31'),(15450,576,1,13061,'4.99','2005-08-19 09:43:39','2006-02-15 22:22:31'),(15451,576,1,13326,'4.99','2005-08-19 19:52:52','2006-02-15 22:22:31'),(15452,576,1,14501,'4.99','2005-08-21 14:14:38','2006-02-15 22:22:32'),(15453,576,1,14541,'0.99','2005-08-21 15:34:32','2006-02-15 22:22:32'),(15454,576,1,15634,'0.99','2005-08-23 07:34:18','2006-02-15 22:22:32'),(15455,576,2,11942,'5.98','2006-02-14 15:16:03','2006-02-15 22:22:32'),(15456,576,1,13464,'0.00','2006-02-14 15:16:03','2006-02-15 22:22:32'),(15457,577,2,291,'5.99','2005-05-26 20:20:47','2006-02-15 22:22:32'),(15458,577,2,NULL,'0.99','2005-05-27 00:46:39','2006-02-15 22:22:32'),(15459,577,2,2399,'3.99','2005-06-18 16:06:14','2006-02-15 22:22:32'),(15460,577,2,3286,'2.99','2005-06-21 06:31:29','2006-02-15 22:22:32'),(15461,577,2,3401,'6.99','2005-06-21 15:52:43','2006-02-15 22:22:32'),(15462,577,2,3599,'0.99','2005-07-06 05:16:36','2006-02-15 22:22:32'),(15463,577,1,3785,'7.99','2005-07-06 14:00:13','2006-02-15 22:22:32'),(15464,577,1,4922,'2.99','2005-07-08 21:44:00','2006-02-15 22:22:32'),(15465,577,1,6500,'2.99','2005-07-12 03:11:23','2006-02-15 22:22:32'),(15466,577,2,6534,'2.99','2005-07-12 04:39:43','2006-02-15 22:22:33'),(15467,577,2,7197,'0.99','2005-07-27 08:49:32','2006-02-15 22:22:33'),(15468,577,1,7371,'4.99','2005-07-27 15:18:42','2006-02-15 22:22:33'),(15469,577,2,7876,'8.99','2005-07-28 10:24:22','2006-02-15 22:22:33'),(15470,577,1,8043,'5.99','2005-07-28 16:45:44','2006-02-15 22:22:33'),(15471,577,1,8060,'6.99','2005-07-28 17:10:02','2006-02-15 22:22:33'),(15472,577,2,8671,'6.99','2005-07-29 15:49:37','2006-02-15 22:22:33'),(15473,577,2,10323,'4.99','2005-08-01 04:44:58','2006-02-15 22:22:33'),(15474,577,1,10487,'0.99','2005-08-01 10:26:34','2006-02-15 22:22:33'),(15475,577,1,10782,'4.99','2005-08-01 21:23:25','2006-02-15 22:22:33'),(15476,577,1,11054,'7.99','2005-08-02 06:33:07','2006-02-15 22:22:33'),(15477,577,2,11464,'0.99','2005-08-02 21:42:07','2006-02-15 22:22:33'),(15478,577,1,12664,'4.99','2005-08-18 19:10:54','2006-02-15 22:22:33'),(15479,577,2,12671,'0.99','2005-08-18 19:19:59','2006-02-15 22:22:33'),(15480,577,2,13200,'3.99','2005-08-19 14:55:58','2006-02-15 22:22:33'),(15481,577,2,13500,'3.99','2005-08-20 01:54:39','2006-02-15 22:22:34'),(15482,577,2,15480,'2.99','2005-08-23 01:57:20','2006-02-15 22:22:34'),(15483,577,2,15873,'2.99','2005-08-23 16:27:59','2006-02-15 22:22:34'),(15484,577,2,16003,'4.99','2005-08-23 20:47:28','2006-02-15 22:22:34'),(15485,578,2,660,'0.99','2005-05-28 20:53:31','2006-02-15 22:22:34'),(15486,578,2,1826,'6.99','2005-06-16 21:53:52','2006-02-15 22:22:34'),(15487,578,2,2615,'4.99','2005-06-19 07:29:13','2006-02-15 22:22:34'),(15488,578,1,3305,'2.99','2005-06-21 07:46:57','2006-02-15 22:22:34'),(15489,578,2,4496,'4.99','2005-07-08 01:44:19','2006-02-15 22:22:34'),(15490,578,1,5377,'4.99','2005-07-09 19:04:30','2006-02-15 22:22:34'),(15491,578,1,5445,'0.99','2005-07-09 21:59:41','2006-02-15 22:22:34'),(15492,578,2,5876,'4.99','2005-07-10 19:07:15','2006-02-15 22:22:34'),(15493,578,1,6784,'4.99','2005-07-12 16:28:49','2006-02-15 22:22:34'),(15494,578,1,6830,'0.99','2005-07-12 18:42:55','2006-02-15 22:22:34'),(15495,578,2,7059,'5.99','2005-07-27 03:51:02','2006-02-15 22:22:35'),(15496,578,1,8179,'2.99','2005-07-28 22:05:13','2006-02-15 22:22:35'),(15497,578,1,8218,'2.99','2005-07-28 23:45:41','2006-02-15 22:22:35'),(15498,578,2,9970,'4.99','2005-07-31 16:38:24','2006-02-15 22:22:35'),(15499,578,1,10029,'6.99','2005-07-31 18:37:47','2006-02-15 22:22:35'),(15500,578,2,10182,'2.99','2005-08-01 00:08:01','2006-02-15 22:22:35'),(15501,578,1,10779,'7.99','2005-08-01 21:11:54','2006-02-15 22:22:35'),(15502,578,1,11199,'7.99','2005-08-02 11:47:40','2006-02-15 22:22:35'),(15503,578,2,13071,'5.99','2005-08-19 10:01:07','2006-02-15 22:22:35'),(15504,578,2,13498,'5.99','2005-08-20 01:51:23','2006-02-15 22:22:35'),(15505,578,2,13552,'2.99','2005-08-20 04:03:51','2006-02-15 22:22:35'),(15506,578,1,15652,'0.99','2005-08-23 08:34:10','2006-02-15 22:22:35'),(15507,579,2,2425,'5.99','2005-06-18 17:37:45','2006-02-15 22:22:35'),(15508,579,1,2522,'3.99','2005-06-19 00:43:42','2006-02-15 22:22:35'),(15509,579,1,3111,'2.99','2005-06-20 17:46:47','2006-02-15 22:22:36'),(15510,579,1,4619,'9.99','2005-07-08 08:01:09','2006-02-15 22:22:36'),(15511,579,1,4933,'2.99','2005-07-08 22:18:29','2006-02-15 22:22:36'),(15512,579,1,6304,'4.99','2005-07-11 18:02:16','2006-02-15 22:22:36'),(15513,579,2,6814,'1.99','2005-07-12 18:11:58','2006-02-15 22:22:36'),(15514,579,2,6824,'6.99','2005-07-12 18:26:46','2006-02-15 22:22:36'),(15515,579,2,6969,'8.99','2005-07-27 00:23:54','2006-02-15 22:22:36'),(15516,579,2,7221,'2.99','2005-07-27 09:37:35','2006-02-15 22:22:36'),(15517,579,1,8354,'0.99','2005-07-29 04:56:26','2006-02-15 22:22:36'),(15518,579,1,8876,'0.99','2005-07-30 00:15:09','2006-02-15 22:22:36'),(15519,579,1,8996,'0.99','2005-07-30 04:53:23','2006-02-15 22:22:36'),(15520,579,2,9349,'9.99','2005-07-30 18:20:08','2006-02-15 22:22:36'),(15521,579,2,9553,'5.99','2005-07-31 02:06:34','2006-02-15 22:22:36'),(15522,579,2,9976,'2.99','2005-07-31 16:57:49','2006-02-15 22:22:36'),(15523,579,2,9997,'4.99','2005-07-31 17:37:30','2006-02-15 22:22:37'),(15524,579,1,11494,'3.99','2005-08-02 22:51:23','2006-02-15 22:22:37'),(15525,579,2,12051,'6.99','2005-08-17 20:56:15','2006-02-15 22:22:37'),(15526,579,2,12315,'5.99','2005-08-18 06:15:06','2006-02-15 22:22:37'),(15527,579,2,14047,'2.99','2005-08-20 22:00:43','2006-02-15 22:22:37'),(15528,579,1,14185,'0.99','2005-08-21 03:28:37','2006-02-15 22:22:37'),(15529,579,1,14543,'1.99','2005-08-21 15:39:01','2006-02-15 22:22:37'),(15530,579,2,14560,'2.99','2005-08-21 16:13:47','2006-02-15 22:22:37'),(15531,579,2,15601,'0.99','2005-08-23 06:33:26','2006-02-15 22:22:37'),(15532,579,1,15838,'4.99','2005-08-23 15:30:48','2006-02-15 22:22:37'),(15533,579,2,15794,'0.99','2006-02-14 15:16:03','2006-02-15 22:22:37'),(15534,580,1,611,'0.99','2005-05-28 15:18:18','2006-02-15 22:22:37'),(15535,580,1,1469,'0.99','2005-06-15 20:52:36','2006-02-15 22:22:37'),(15536,580,2,3571,'1.99','2005-07-06 03:32:31','2006-02-15 22:22:37'),(15537,580,2,3867,'1.99','2005-07-06 17:52:19','2006-02-15 22:22:38'),(15538,580,2,4169,'1.99','2005-07-07 09:39:18','2006-02-15 22:22:38'),(15539,580,2,4590,'3.99','2005-07-08 06:27:48','2006-02-15 22:22:38'),(15540,580,1,5937,'6.99','2005-07-10 22:16:08','2006-02-15 22:22:38'),(15541,580,1,6089,'2.99','2005-07-11 05:45:59','2006-02-15 22:22:38'),(15542,580,2,6170,'2.99','2005-07-11 10:29:21','2006-02-15 22:22:38'),(15543,580,1,7620,'0.99','2005-07-28 00:27:17','2006-02-15 22:22:38'),(15544,580,2,8784,'4.99','2005-07-29 20:35:37','2006-02-15 22:22:38'),(15545,580,1,8839,'3.99','2005-07-29 22:52:34','2006-02-15 22:22:38'),(15546,580,1,9199,'0.99','2005-07-30 12:38:00','2006-02-15 22:22:38'),(15547,580,1,9239,'3.99','2005-07-30 13:50:52','2006-02-15 22:22:38'),(15548,580,1,9460,'5.99','2005-07-30 22:25:39','2006-02-15 22:22:38'),(15549,580,2,9604,'4.99','2005-07-31 03:47:12','2006-02-15 22:22:38'),(15550,580,2,9865,'0.99','2005-07-31 13:10:45','2006-02-15 22:22:38'),(15551,580,1,10723,'3.99','2005-08-01 19:10:49','2006-02-15 22:22:38'),(15552,580,2,10965,'3.99','2005-08-02 04:00:19','2006-02-15 22:22:39'),(15553,580,1,11164,'8.99','2005-08-02 10:10:56','2006-02-15 22:22:39'),(15554,580,2,12670,'2.99','2005-08-18 19:17:58','2006-02-15 22:22:39'),(15555,580,2,13313,'2.99','2005-08-19 19:11:41','2006-02-15 22:22:39'),(15556,580,2,13742,'2.99','2005-08-20 10:49:15','2006-02-15 22:22:39'),(15557,580,2,14818,'2.99','2005-08-22 01:17:18','2006-02-15 22:22:39'),(15558,580,1,15157,'6.99','2005-08-22 14:30:09','2006-02-15 22:22:39'),(15559,580,1,15630,'6.99','2005-08-23 07:29:13','2006-02-15 22:22:39'),(15560,580,1,15947,'4.99','2005-08-23 18:54:32','2006-02-15 22:22:39'),(15561,581,1,976,'4.99','2005-05-30 21:11:19','2006-02-15 22:22:39'),(15562,581,1,1151,'4.99','2005-05-31 21:29:00','2006-02-15 22:22:39'),(15563,581,2,1958,'3.99','2005-06-17 08:52:01','2006-02-15 22:22:39'),(15564,581,2,2101,'2.99','2005-06-17 18:57:02','2006-02-15 22:22:39'),(15565,581,1,2137,'4.99','2005-06-17 21:18:28','2006-02-15 22:22:39'),(15566,581,2,4210,'2.99','2005-07-07 11:36:20','2006-02-15 22:22:40'),(15567,581,2,4244,'2.99','2005-07-07 13:41:58','2006-02-15 22:22:40'),(15568,581,1,4338,'4.99','2005-07-07 18:39:56','2006-02-15 22:22:40'),(15569,581,2,4613,'0.99','2005-07-08 07:44:49','2006-02-15 22:22:40'),(15570,581,1,4669,'5.99','2005-07-08 10:13:08','2006-02-15 22:22:40'),(15571,581,1,4815,'8.99','2005-07-08 17:12:51','2006-02-15 22:22:40'),(15572,581,1,4833,'1.99','2005-07-08 18:07:35','2006-02-15 22:22:40'),(15573,581,1,5516,'4.99','2005-07-10 01:13:52','2006-02-15 22:22:40'),(15574,581,1,5707,'4.99','2005-07-10 10:26:14','2006-02-15 22:22:40'),(15575,581,2,5812,'2.99','2005-07-10 15:27:56','2006-02-15 22:22:40'),(15576,581,2,7048,'7.99','2005-07-27 03:31:48','2006-02-15 22:22:40'),(15577,581,1,7783,'2.99','2005-07-28 07:14:43','2006-02-15 22:22:40'),(15578,581,1,9278,'2.99','2005-07-30 15:15:19','2006-02-15 22:22:40'),(15579,581,1,9449,'1.99','2005-07-30 22:02:34','2006-02-15 22:22:40'),(15580,581,2,11443,'2.99','2005-08-02 20:29:30','2006-02-15 22:22:41'),(15581,581,2,11707,'2.99','2005-08-17 07:24:59','2006-02-15 22:22:41'),(15582,581,2,13621,'0.99','2005-08-20 06:43:44','2006-02-15 22:22:41'),(15583,581,2,13712,'2.99','2005-08-20 09:38:04','2006-02-15 22:22:41'),(15584,581,2,14070,'8.99','2005-08-20 22:56:34','2006-02-15 22:22:41'),(15585,581,1,14976,'2.99','2005-08-22 07:10:26','2006-02-15 22:22:41'),(15586,581,1,15403,'0.99','2005-08-22 23:18:10','2006-02-15 22:22:41'),(15587,581,2,15792,'4.99','2005-08-23 14:05:37','2006-02-15 22:22:41'),(15588,582,1,281,'0.99','2005-05-26 18:49:35','2006-02-15 22:22:41'),(15589,582,1,1719,'2.99','2005-06-16 14:55:53','2006-02-15 22:22:41'),(15590,582,1,2337,'7.99','2005-06-18 11:15:27','2006-02-15 22:22:41'),(15591,582,2,3071,'0.99','2005-06-20 14:20:42','2006-02-15 22:22:41'),(15592,582,1,3767,'0.99','2005-07-06 13:07:27','2006-02-15 22:22:41'),(15593,582,2,6629,'5.99','2005-07-12 09:18:35','2006-02-15 22:22:41'),(15594,582,2,7126,'4.99','2005-07-27 06:13:13','2006-02-15 22:22:42'),(15595,582,2,7311,'6.99','2005-07-27 13:02:54','2006-02-15 22:22:42'),(15596,582,2,7412,'5.99','2005-07-27 16:44:34','2006-02-15 22:22:42'),(15597,582,1,7575,'2.99','2005-07-27 22:53:52','2006-02-15 22:22:42'),(15598,582,2,8308,'5.99','2005-07-29 03:22:15','2006-02-15 22:22:42'),(15599,582,1,8554,'2.99','2005-07-29 11:16:29','2006-02-15 22:22:42'),(15600,582,1,8778,'6.99','2005-07-29 20:14:25','2006-02-15 22:22:42'),(15601,582,1,9768,'9.99','2005-07-31 09:48:41','2006-02-15 22:22:42'),(15602,582,2,11290,'7.99','2005-08-02 14:57:44','2006-02-15 22:22:42'),(15603,582,1,11667,'5.99','2005-08-17 05:46:55','2006-02-15 22:22:42'),(15604,582,1,11708,'2.99','2005-08-17 07:26:47','2006-02-15 22:22:42'),(15605,582,2,13815,'5.99','2005-08-20 13:08:53','2006-02-15 22:22:42'),(15606,582,1,14376,'4.99','2005-08-21 09:48:56','2006-02-15 22:22:42'),(15607,582,1,14568,'0.99','2005-08-21 16:30:48','2006-02-15 22:22:42'),(15608,582,1,15090,'5.99','2005-08-22 11:34:33','2006-02-15 22:22:43'),(15609,582,1,15503,'2.99','2005-08-23 02:44:49','2006-02-15 22:22:43'),(15610,582,1,15539,'0.99','2005-08-23 04:09:03','2006-02-15 22:22:43'),(15611,582,2,15911,'4.99','2005-08-23 17:44:53','2006-02-15 22:22:43'),(15612,582,2,12127,'2.99','2006-02-14 15:16:03','2006-02-15 22:22:43'),(15613,583,1,1428,'3.99','2005-06-15 18:19:30','2006-02-15 22:22:43'),(15614,583,1,2429,'9.99','2005-06-18 17:48:28','2006-02-15 22:22:43'),(15615,583,2,2663,'4.99','2005-06-19 10:54:00','2006-02-15 22:22:43'),(15616,583,2,2845,'5.99','2005-06-19 22:46:37','2006-02-15 22:22:43'),(15617,583,2,2879,'3.99','2005-06-20 01:24:10','2006-02-15 22:22:43'),(15618,583,1,3424,'0.99','2005-06-21 17:42:51','2006-02-15 22:22:43'),(15619,583,1,3779,'2.99','2005-07-06 13:46:36','2006-02-15 22:22:43'),(15620,583,1,3842,'4.99','2005-07-06 16:34:32','2006-02-15 22:22:43'),(15621,583,2,3991,'9.99','2005-07-06 23:33:41','2006-02-15 22:22:43'),(15622,583,1,4464,'4.99','2005-07-08 00:07:18','2006-02-15 22:22:43'),(15623,583,1,5462,'0.99','2005-07-09 22:56:53','2006-02-15 22:22:44'),(15624,583,1,5478,'5.99','2005-07-09 23:45:15','2006-02-15 22:22:44'),(15625,583,2,5747,'7.99','2005-07-10 12:15:33','2006-02-15 22:22:44'),(15626,583,2,6684,'6.99','2005-07-12 12:14:42','2006-02-15 22:22:44'),(15627,583,1,7401,'5.99','2005-07-27 16:17:55','2006-02-15 22:22:44'),(15628,583,2,8568,'7.99','2005-07-29 11:38:22','2006-02-15 22:22:44'),(15629,583,1,9550,'7.99','2005-07-31 01:57:34','2006-02-15 22:22:44'),(15630,583,2,9808,'1.99','2005-07-31 11:17:22','2006-02-15 22:22:44'),(15631,583,2,10301,'4.99','2005-08-01 04:09:37','2006-02-15 22:22:44'),(15632,583,2,10586,'2.99','2005-08-01 14:00:59','2006-02-15 22:22:44'),(15633,583,2,10800,'4.99','2005-08-01 22:07:44','2006-02-15 22:22:44'),(15634,583,2,11002,'4.99','2005-08-02 05:02:56','2006-02-15 22:22:44'),(15635,583,1,14259,'0.99','2005-08-21 06:00:22','2006-02-15 22:22:44'),(15636,584,2,379,'4.99','2005-05-27 09:25:32','2006-02-15 22:22:44'),(15637,584,1,626,'4.99','2005-05-28 16:58:09','2006-02-15 22:22:45'),(15638,584,1,920,'4.99','2005-05-30 11:44:01','2006-02-15 22:22:45'),(15639,584,2,1436,'3.99','2005-06-15 18:35:40','2006-02-15 22:22:45'),(15640,584,2,3317,'6.99','2005-06-21 08:22:32','2006-02-15 22:22:45'),(15641,584,2,3741,'2.99','2005-07-06 12:00:18','2006-02-15 22:22:45'),(15642,584,2,3895,'7.99','2005-07-06 19:04:24','2006-02-15 22:22:45'),(15643,584,1,4410,'0.99','2005-07-07 21:48:16','2006-02-15 22:22:45'),(15644,584,1,4977,'0.99','2005-07-09 00:15:50','2006-02-15 22:22:45'),(15645,584,2,6954,'0.99','2005-07-26 23:55:13','2006-02-15 22:22:45'),(15646,584,1,7186,'2.99','2005-07-27 08:26:12','2006-02-15 22:22:45'),(15647,584,1,7372,'4.99','2005-07-27 15:18:42','2006-02-15 22:22:45'),(15648,584,1,7659,'4.99','2005-07-28 02:09:45','2006-02-15 22:22:45'),(15649,584,2,8879,'4.99','2005-07-30 00:16:02','2006-02-15 22:22:45'),(15650,584,2,9451,'3.99','2005-07-30 22:10:17','2006-02-15 22:22:45'),(15651,584,1,9719,'5.99','2005-07-31 08:25:13','2006-02-15 22:22:46'),(15652,584,2,10073,'2.99','2005-07-31 19:53:15','2006-02-15 22:22:46'),(15653,584,1,10914,'4.99','2005-08-02 02:04:43','2006-02-15 22:22:46'),(15654,584,2,10966,'0.99','2005-08-02 04:00:47','2006-02-15 22:22:46'),(15655,584,1,11213,'4.99','2005-08-02 12:18:35','2006-02-15 22:22:46'),(15656,584,2,11500,'6.99','2005-08-16 23:01:22','2006-02-15 22:22:46'),(15657,584,2,12507,'8.99','2005-08-18 13:19:13','2006-02-15 22:22:46'),(15658,584,2,12541,'2.99','2005-08-18 14:18:30','2006-02-15 22:22:46'),(15659,584,2,12693,'5.99','2005-08-18 20:10:19','2006-02-15 22:22:46'),(15660,584,1,12844,'2.99','2005-08-19 01:59:08','2006-02-15 22:22:46'),(15661,584,2,14102,'5.99','2005-08-21 00:35:21','2006-02-15 22:22:46'),(15662,584,2,14230,'5.99','2005-08-21 04:57:29','2006-02-15 22:22:46'),(15663,584,2,14447,'4.99','2005-08-21 12:12:05','2006-02-15 22:22:46'),(15664,584,1,14930,'1.99','2005-08-22 05:38:32','2006-02-15 22:22:46'),(15665,584,1,15615,'0.99','2005-08-23 07:06:00','2006-02-15 22:22:47'),(15666,585,1,1344,'0.99','2005-06-15 12:29:41','2006-02-15 22:22:47'),(15667,585,2,1346,'7.99','2005-06-15 12:39:52','2006-02-15 22:22:47'),(15668,585,1,2674,'0.99','2005-06-19 11:47:59','2006-02-15 22:22:47'),(15669,585,1,2930,'3.99','2005-06-20 04:50:29','2006-02-15 22:22:47'),(15670,585,2,4156,'4.99','2005-07-07 09:03:51','2006-02-15 22:22:47'),(15671,585,2,4579,'4.99','2005-07-08 06:01:56','2006-02-15 22:22:47'),(15672,585,1,4684,'9.99','2005-07-08 10:41:06','2006-02-15 22:22:47'),(15673,585,2,5284,'2.99','2005-07-09 15:08:21','2006-02-15 22:22:47'),(15674,585,2,5950,'4.99','2005-07-10 23:13:45','2006-02-15 22:22:47'),(15675,585,2,6733,'6.99','2005-07-12 14:04:01','2006-02-15 22:22:47'),(15676,585,1,7131,'2.99','2005-07-27 06:25:06','2006-02-15 22:22:47'),(15677,585,1,7384,'4.99','2005-07-27 15:49:45','2006-02-15 22:22:47'),(15678,585,2,7409,'4.99','2005-07-27 16:38:24','2006-02-15 22:22:47'),(15679,585,2,8353,'2.99','2005-07-29 04:52:10','2006-02-15 22:22:48'),(15680,585,2,9407,'8.99','2005-07-30 20:25:24','2006-02-15 22:22:48'),(15681,585,1,9590,'3.99','2005-07-31 03:17:16','2006-02-15 22:22:48'),(15682,585,1,9860,'6.99','2005-07-31 13:03:24','2006-02-15 22:22:48'),(15683,585,2,10573,'0.99','2005-08-01 13:27:24','2006-02-15 22:22:48'),(15684,585,1,11285,'9.99','2005-08-02 14:44:02','2006-02-15 22:22:48'),(15685,585,2,13593,'3.99','2005-08-20 05:50:52','2006-02-15 22:22:48'),(15686,585,2,13939,'0.99','2005-08-20 17:28:01','2006-02-15 22:22:48'),(15687,585,1,15804,'4.99','2005-08-23 14:29:16','2006-02-15 22:22:48'),(15688,585,1,15896,'6.99','2005-08-23 17:09:56','2006-02-15 22:22:48'),(15689,585,2,14604,'4.99','2006-02-14 15:16:03','2006-02-15 22:22:48'),(15690,586,1,138,'4.99','2005-05-25 22:48:22','2006-02-15 22:22:48'),(15691,586,1,900,'8.99','2005-05-30 09:38:41','2006-02-15 22:22:48'),(15692,586,1,1260,'2.99','2005-06-15 06:42:25','2006-02-15 22:22:48'),(15693,586,2,1540,'0.99','2005-06-16 01:14:56','2006-02-15 22:22:49'),(15694,586,2,3487,'6.99','2005-07-05 23:30:36','2006-02-15 22:22:49'),(15695,586,2,3733,'4.99','2005-07-06 11:33:55','2006-02-15 22:22:49'),(15696,586,2,5382,'2.99','2005-07-09 19:12:57','2006-02-15 22:22:49'),(15697,586,1,6679,'2.99','2005-07-12 12:01:07','2006-02-15 22:22:49'),(15698,586,2,9786,'2.99','2005-07-31 10:25:21','2006-02-15 22:22:49'),(15699,586,2,9896,'2.99','2005-07-31 14:09:48','2006-02-15 22:22:49'),(15700,586,1,11034,'2.99','2005-08-02 05:54:53','2006-02-15 22:22:49'),(15701,586,1,11763,'0.99','2005-08-17 09:51:39','2006-02-15 22:22:49'),(15702,586,1,12013,'4.99','2005-08-17 19:23:02','2006-02-15 22:22:49'),(15703,586,1,12898,'0.99','2005-08-19 03:54:34','2006-02-15 22:22:50'),(15704,586,2,14043,'2.99','2005-08-20 21:46:43','2006-02-15 22:22:50'),(15705,586,1,14392,'1.99','2005-08-21 10:19:25','2006-02-15 22:22:50'),(15706,586,2,14533,'2.99','2005-08-21 15:15:19','2006-02-15 22:22:50'),(15707,586,1,15666,'3.99','2005-08-23 09:01:10','2006-02-15 22:22:51'),(15708,586,2,15684,'0.99','2005-08-23 09:40:04','2006-02-15 22:22:51'),(15709,587,1,181,'4.99','2005-05-26 04:47:06','2006-02-15 22:22:51'),(15710,587,1,361,'0.99','2005-05-27 07:03:28','2006-02-15 22:22:51'),(15711,587,2,1330,'2.99','2005-06-15 11:29:17','2006-02-15 22:22:52'),(15712,587,2,2034,'4.99','2005-06-17 13:27:16','2006-02-15 22:22:52'),(15713,587,1,2220,'2.99','2005-06-18 03:21:36','2006-02-15 22:22:52'),(15714,587,1,2329,'4.99','2005-06-18 10:22:52','2006-02-15 22:22:52'),(15715,587,2,3562,'2.99','2005-07-06 02:54:36','2006-02-15 22:22:53'),(15716,587,2,3969,'0.99','2005-07-06 22:47:59','2006-02-15 22:22:53'),(15717,587,2,5243,'3.99','2005-07-09 13:22:08','2006-02-15 22:22:53'),(15718,587,1,6639,'0.99','2005-07-12 10:00:44','2006-02-15 22:22:53'),(15719,587,2,6665,'6.99','2005-07-12 11:29:14','2006-02-15 22:22:53'),(15720,587,1,7501,'8.99','2005-07-27 20:16:59','2006-02-15 22:22:54'),(15721,587,2,8776,'5.99','2005-07-29 20:07:06','2006-02-15 22:22:54'),(15722,587,2,9720,'6.99','2005-07-31 08:25:21','2006-02-15 22:22:54'),(15723,587,2,9785,'4.99','2005-07-31 10:22:15','2006-02-15 22:22:54'),(15724,587,2,9909,'5.99','2005-07-31 14:43:34','2006-02-15 22:22:55'),(15725,587,2,10224,'4.99','2005-08-01 01:31:56','2006-02-15 22:22:55'),(15726,587,1,10825,'2.99','2005-08-01 23:05:33','2006-02-15 22:22:55'),(15727,587,1,11078,'2.99','2005-08-02 07:26:58','2006-02-15 22:22:55'),(15728,587,2,11403,'4.99','2005-08-02 19:10:21','2006-02-15 22:22:56'),(15729,587,2,12164,'4.99','2005-08-18 00:46:38','2006-02-15 22:22:56'),(15730,587,2,12330,'6.99','2005-08-18 06:46:33','2006-02-15 22:22:56'),(15731,587,2,14710,'4.99','2005-08-21 21:15:23','2006-02-15 22:22:56'),(15732,587,2,15348,'2.99','2005-08-22 21:13:46','2006-02-15 22:22:57'),(15733,587,2,15349,'0.99','2005-08-22 21:13:51','2006-02-15 22:22:57'),(15734,587,1,12144,'0.99','2006-02-14 15:16:03','2006-02-15 22:22:57'),(15735,588,1,576,'2.99','2005-05-28 10:56:10','2006-02-15 22:22:57'),(15736,588,1,961,'4.99','2005-05-30 18:16:44','2006-02-15 22:22:58'),(15737,588,2,1885,'2.99','2005-06-17 03:35:59','2006-02-15 22:22:58'),(15738,588,2,1903,'6.99','2005-06-17 04:37:20','2006-02-15 22:22:58'),(15739,588,2,2270,'7.99','2005-06-18 06:29:01','2006-02-15 22:22:58'),(15740,588,1,2453,'2.99','2005-06-18 19:30:53','2006-02-15 22:22:59'),(15741,588,2,2920,'3.99','2005-06-20 04:12:46','2006-02-15 22:22:59'),(15742,588,1,3628,'4.99','2005-07-06 06:19:43','2006-02-15 22:22:59'),(15743,588,1,4101,'0.99','2005-07-07 06:25:11','2006-02-15 22:22:59'),(15744,588,2,4207,'5.99','2005-07-07 11:32:45','2006-02-15 22:23:00'),(15745,588,2,5203,'2.99','2005-07-09 10:53:59','2006-02-15 22:23:00'),(15746,588,1,5335,'4.99','2005-07-09 17:00:49','2006-02-15 22:23:00'),(15747,588,1,6368,'4.99','2005-07-11 21:19:01','2006-02-15 22:23:00'),(15748,588,2,7377,'2.99','2005-07-27 15:31:28','2006-02-15 22:23:01'),(15749,588,2,7903,'2.99','2005-07-28 11:20:36','2006-02-15 22:23:01'),(15750,588,1,8421,'4.99','2005-07-29 07:00:47','2006-02-15 22:23:01'),(15751,588,1,8429,'2.99','2005-07-29 07:11:49','2006-02-15 22:23:01'),(15752,588,2,8519,'2.99','2005-07-29 10:09:43','2006-02-15 22:23:02'),(15753,588,1,8769,'2.99','2005-07-29 19:45:33','2006-02-15 22:23:02'),(15754,588,2,9326,'2.99','2005-07-30 17:30:03','2006-02-15 22:23:02'),(15755,588,2,9370,'4.99','2005-07-30 18:57:29','2006-02-15 22:23:02'),(15756,588,2,10373,'4.99','2005-08-01 06:24:26','2006-02-15 22:23:02'),(15757,588,1,12185,'2.99','2005-08-18 01:40:14','2006-02-15 22:23:03'),(15758,588,2,12815,'4.99','2005-08-19 00:59:42','2006-02-15 22:23:03'),(15759,588,1,13064,'4.99','2005-08-19 09:46:53','2006-02-15 22:23:03'),(15760,588,1,13923,'1.99','2005-08-20 17:05:02','2006-02-15 22:23:03'),(15761,588,1,15109,'1.99','2005-08-22 12:12:58','2006-02-15 22:23:04'),(15762,588,1,15158,'2.99','2005-08-22 14:30:39','2006-02-15 22:23:04'),(15763,588,1,15209,'4.99','2005-08-22 16:37:32','2006-02-15 22:23:04'),(15764,589,1,531,'0.99','2005-05-28 05:23:38','2006-02-15 22:23:04'),(15765,589,1,596,'4.99','2005-05-28 14:00:03','2006-02-15 22:23:05'),(15766,589,1,737,'4.99','2005-05-29 08:11:31','2006-02-15 22:23:05'),(15767,589,1,1439,'4.99','2005-06-15 18:45:32','2006-02-15 22:23:05'),(15768,589,2,1703,'4.99','2005-06-16 13:28:44','2006-02-15 22:23:05'),(15769,589,2,2652,'8.99','2005-06-19 10:35:26','2006-02-15 22:23:06'),(15770,589,1,2707,'8.99','2005-06-19 13:57:08','2006-02-15 22:23:06'),(15771,589,1,2979,'2.99','2005-06-20 08:31:05','2006-02-15 22:23:06'),(15772,589,2,4986,'2.99','2005-07-09 00:44:33','2006-02-15 22:23:06'),(15773,589,1,5951,'0.99','2005-07-10 23:14:29','2006-02-15 22:23:07'),(15774,589,2,6177,'4.99','2005-07-11 10:53:49','2006-02-15 22:23:07'),(15775,589,2,6247,'3.99','2005-07-11 15:00:05','2006-02-15 22:23:07'),(15776,589,2,7250,'0.99','2005-07-27 10:44:09','2006-02-15 22:23:07'),(15777,589,2,7431,'3.99','2005-07-27 17:27:27','2006-02-15 22:23:08'),(15778,589,2,7948,'9.99','2005-07-28 13:06:16','2006-02-15 22:23:08'),(15779,589,2,8056,'0.99','2005-07-28 17:04:15','2006-02-15 22:23:08'),(15780,589,1,8374,'3.99','2005-07-29 05:24:02','2006-02-15 22:23:08'),(15781,589,1,9153,'4.99','2005-07-30 10:58:16','2006-02-15 22:23:09'),(15782,589,2,10544,'4.99','2005-08-01 12:36:21','2006-02-15 22:23:09'),(15783,589,1,11980,'4.99','2005-08-17 18:10:18','2006-02-15 22:23:09'),(15784,589,1,12738,'7.99','2005-08-18 22:11:47','2006-02-15 22:23:09'),(15785,589,2,12933,'8.99','2005-08-19 05:18:20','2006-02-15 22:23:10'),(15786,589,1,14038,'6.99','2005-08-20 21:39:23','2006-02-15 22:23:10'),(15787,589,1,14254,'6.99','2005-08-21 05:51:28','2006-02-15 22:23:10'),(15788,589,1,14544,'0.99','2005-08-21 15:41:01','2006-02-15 22:23:10'),(15789,589,2,14706,'0.99','2005-08-21 21:04:42','2006-02-15 22:23:10'),(15790,589,2,15917,'5.99','2005-08-23 17:57:28','2006-02-15 22:23:11'),(15791,589,2,15992,'0.99','2005-08-23 20:28:32','2006-02-15 22:23:11'),(15792,590,1,602,'3.99','2005-05-28 14:15:54','2006-02-15 22:23:11'),(15793,590,2,1456,'7.99','2005-06-15 20:00:11','2006-02-15 22:23:11'),(15794,590,2,2352,'2.99','2005-06-18 12:40:15','2006-02-15 22:23:12'),(15795,590,2,2775,'2.99','2005-06-19 18:14:20','2006-02-15 22:23:12'),(15796,590,1,2916,'6.99','2005-06-20 04:01:04','2006-02-15 22:23:12'),(15797,590,1,2964,'9.99','2005-06-20 07:33:29','2006-02-15 22:23:12'),(15798,590,2,4685,'4.99','2005-07-08 10:45:13','2006-02-15 22:23:13'),(15799,590,1,4710,'2.99','2005-07-08 12:04:53','2006-02-15 22:23:13'),(15800,590,2,4722,'4.99','2005-07-08 12:42:27','2006-02-15 22:23:13'),(15801,590,1,5165,'0.99','2005-07-09 09:08:53','2006-02-15 22:23:13'),(15802,590,1,5529,'2.99','2005-07-10 02:11:13','2006-02-15 22:23:14'),(15803,590,1,5991,'4.99','2005-07-11 01:03:38','2006-02-15 22:23:14'),(15804,590,2,6232,'4.99','2005-07-11 14:08:27','2006-02-15 22:23:14'),(15805,590,2,6492,'4.99','2005-07-12 02:28:40','2006-02-15 22:23:14'),(15806,590,1,7010,'4.99','2005-07-27 01:56:01','2006-02-15 22:23:15'),(15807,590,2,7665,'2.99','2005-07-28 02:28:30','2006-02-15 22:23:15'),(15808,590,1,8195,'5.99','2005-07-28 22:52:58','2006-02-15 22:23:15'),(15809,590,1,8801,'4.99','2005-07-29 21:25:22','2006-02-15 22:23:15'),(15810,590,2,9126,'0.99','2005-07-30 09:44:15','2006-02-15 22:23:16'),(15811,590,1,9884,'4.99','2005-07-31 13:56:24','2006-02-15 22:23:16'),(15812,590,1,10657,'4.99','2005-08-01 16:38:44','2006-02-15 22:23:16'),(15813,590,2,11578,'5.99','2005-08-17 01:54:13','2006-02-15 22:23:16'),(15814,590,2,11713,'3.99','2005-08-17 07:34:05','2006-02-15 22:23:17'),(15815,590,1,14830,'2.99','2005-08-22 01:37:19','2006-02-15 22:23:17'),(15816,590,2,15458,'2.99','2006-02-14 15:16:03','2006-02-15 22:23:17'),(15817,591,1,1418,'0.99','2005-06-15 17:51:27','2006-02-15 22:23:17'),(15818,591,2,3341,'2.99','2005-06-21 10:37:25','2006-02-15 22:23:17'),(15819,591,2,3435,'4.99','2005-06-21 19:14:58','2006-02-15 22:23:18'),(15820,591,1,3636,'0.99','2005-07-06 07:03:52','2006-02-15 22:23:18'),(15821,591,2,4383,'11.99','2005-07-07 20:45:51','2006-02-15 22:23:18'),(15822,591,1,4581,'6.99','2005-07-08 06:05:06','2006-02-15 22:23:18'),(15823,591,1,5704,'5.99','2005-07-10 10:06:29','2006-02-15 22:23:19'),(15824,591,1,5759,'6.99','2005-07-10 12:43:22','2006-02-15 22:23:19'),(15825,591,1,7118,'8.99','2005-07-27 05:53:50','2006-02-15 22:23:19'),(15826,591,1,7212,'2.99','2005-07-27 09:21:22','2006-02-15 22:23:19'),(15827,591,2,7511,'4.99','2005-07-27 20:38:40','2006-02-15 22:23:20'),(15828,591,1,7549,'3.99','2005-07-27 21:53:21','2006-02-15 22:23:20'),(15829,591,2,7741,'0.99','2005-07-28 05:25:55','2006-02-15 22:23:20'),(15830,591,1,7997,'4.99','2005-07-28 15:02:25','2006-02-15 22:23:20'),(15831,591,1,8149,'3.99','2005-07-28 20:48:12','2006-02-15 22:23:21'),(15832,591,2,8666,'5.99','2005-07-29 15:39:38','2006-02-15 22:23:21'),(15833,591,2,8819,'4.99','2005-07-29 22:14:26','2006-02-15 22:23:21'),(15834,591,1,9684,'0.99','2005-07-31 06:48:33','2006-02-15 22:23:21'),(15835,591,1,10415,'4.99','2005-08-01 08:05:59','2006-02-15 22:23:22'),(15836,591,2,12203,'5.99','2005-08-18 02:18:52','2006-02-15 22:23:22'),(15837,591,2,12227,'4.99','2005-08-18 03:04:28','2006-02-15 22:23:22'),(15838,591,1,12547,'4.99','2005-08-18 14:29:39','2006-02-15 22:23:22'),(15839,591,1,12571,'5.99','2005-08-18 15:31:18','2006-02-15 22:23:23'),(15840,591,1,12934,'5.99','2005-08-19 05:18:42','2006-02-15 22:23:23'),(15841,591,2,13104,'2.99','2005-08-19 11:06:06','2006-02-15 22:23:23'),(15842,591,2,13343,'3.99','2005-08-19 20:22:08','2006-02-15 22:23:23'),(15843,591,1,13867,'9.99','2005-08-20 15:05:42','2006-02-15 22:23:23'),(15844,592,2,1163,'6.99','2005-06-14 23:12:46','2006-02-15 22:23:24'),(15845,592,2,1423,'5.99','2005-06-15 18:08:12','2006-02-15 22:23:24'),(15846,592,1,1479,'2.99','2005-06-15 21:13:38','2006-02-15 22:23:24'),(15847,592,1,2627,'0.99','2005-06-19 08:32:00','2006-02-15 22:23:24'),(15848,592,1,3158,'7.99','2005-06-20 21:08:19','2006-02-15 22:23:25'),(15849,592,2,3560,'2.99','2005-07-06 02:51:37','2006-02-15 22:23:25'),(15850,592,1,3973,'11.99','2005-07-06 22:58:31','2006-02-15 22:23:25'),(15851,592,1,4129,'1.99','2005-07-07 07:37:03','2006-02-15 22:23:25'),(15852,592,1,4145,'9.99','2005-07-07 08:26:39','2006-02-15 22:23:26'),(15853,592,1,4460,'0.99','2005-07-07 23:50:14','2006-02-15 22:23:26'),(15854,592,1,4518,'2.99','2005-07-08 02:48:36','2006-02-15 22:23:26'),(15855,592,1,6937,'0.99','2005-07-26 23:15:50','2006-02-15 22:23:26'),(15856,592,2,7173,'0.99','2005-07-27 07:59:24','2006-02-15 22:23:27'),(15857,592,1,7278,'3.99','2005-07-27 11:50:34','2006-02-15 22:23:27'),(15858,592,2,7364,'4.99','2005-07-27 14:58:40','2006-02-15 22:23:27'),(15859,592,1,8730,'2.99','2005-07-29 18:23:34','2006-02-15 22:23:27'),(15860,592,2,8773,'0.99','2005-07-29 19:55:34','2006-02-15 22:23:28'),(15861,592,1,9268,'4.99','2005-07-30 15:02:30','2006-02-15 22:23:28'),(15862,592,1,9437,'3.99','2005-07-30 21:36:04','2006-02-15 22:23:28'),(15863,592,2,9666,'6.99','2005-07-31 06:20:58','2006-02-15 22:23:28'),(15864,592,2,10383,'0.99','2005-08-01 06:37:16','2006-02-15 22:23:29'),(15865,592,2,10634,'2.99','2005-08-01 15:37:48','2006-02-15 22:23:29'),(15866,592,1,11410,'8.99','2005-08-02 19:29:01','2006-02-15 22:23:29'),(15867,592,2,12043,'0.99','2005-08-17 20:38:21','2006-02-15 22:23:29'),(15868,592,2,12619,'0.99','2005-08-18 17:24:15','2006-02-15 22:23:30'),(15869,592,1,12976,'1.99','2005-08-19 06:52:58','2006-02-15 22:23:30'),(15870,592,1,13157,'2.99','2005-08-19 13:12:28','2006-02-15 22:23:30'),(15871,592,2,13662,'3.99','2005-08-20 08:11:58','2006-02-15 22:23:30'),(15872,592,2,14606,'0.99','2006-02-14 15:16:03','2006-02-15 22:23:30'),(15873,593,1,790,'2.99','2005-05-29 16:19:29','2006-02-15 22:23:31'),(15874,593,1,991,'8.99','2005-05-30 23:29:22','2006-02-15 22:23:31'),(15875,593,2,2055,'5.99','2005-06-17 15:27:03','2006-02-15 22:23:31'),(15876,593,2,2205,'4.99','2005-06-18 02:14:34','2006-02-15 22:23:31'),(15877,593,1,2441,'4.99','2005-06-18 18:45:11','2006-02-15 22:23:32'),(15878,593,1,2832,'4.99','2005-06-19 21:21:53','2006-02-15 22:23:32'),(15879,593,2,3542,'2.99','2005-07-06 01:51:42','2006-02-15 22:23:32'),(15880,593,2,4075,'2.99','2005-07-07 04:51:44','2006-02-15 22:23:32'),(15881,593,2,4280,'3.99','2005-07-07 15:09:31','2006-02-15 22:23:33'),(15882,593,2,4623,'0.99','2005-07-08 08:03:22','2006-02-15 22:23:33'),(15883,593,2,4781,'4.99','2005-07-08 16:06:55','2006-02-15 22:23:33'),(15884,593,2,4867,'0.99','2005-07-08 19:10:52','2006-02-15 22:23:33'),(15885,593,1,6386,'2.99','2005-07-11 22:14:57','2006-02-15 22:23:34'),(15886,593,1,6731,'2.99','2005-07-12 13:58:27','2006-02-15 22:23:34'),(15887,593,2,7958,'4.99','2005-07-28 13:34:34','2006-02-15 22:23:34'),(15888,593,1,8497,'2.99','2005-07-29 09:07:03','2006-02-15 22:23:34'),(15889,593,2,9329,'6.99','2005-07-30 17:42:38','2006-02-15 22:23:35'),(15890,593,1,9483,'6.99','2005-07-30 23:31:31','2006-02-15 22:23:35'),(15891,593,1,10368,'3.99','2005-08-01 06:13:38','2006-02-15 22:23:35'),(15892,593,2,10533,'3.99','2005-08-01 12:14:16','2006-02-15 22:23:35'),(15893,593,1,10840,'5.99','2005-08-01 23:38:34','2006-02-15 22:23:36'),(15894,593,2,10904,'4.99','2005-08-02 01:43:02','2006-02-15 22:23:36'),(15895,593,2,12744,'2.99','2005-08-18 22:22:36','2006-02-15 22:23:36'),(15896,593,1,13524,'6.99','2005-08-20 02:48:43','2006-02-15 22:23:36'),(15897,593,1,14408,'5.99','2005-08-21 10:47:24','2006-02-15 22:23:36'),(15898,593,1,14653,'0.99','2005-08-21 19:35:59','2006-02-15 22:23:37'),(15899,594,1,313,'4.99','2005-05-26 22:56:19','2006-02-15 22:23:37'),(15900,594,1,360,'8.99','2005-05-27 06:51:14','2006-02-15 22:23:37'),(15901,594,2,1018,'0.99','2005-05-31 02:53:42','2006-02-15 22:23:37'),(15902,594,1,1045,'6.99','2005-05-31 06:29:01','2006-02-15 22:23:38'),(15903,594,2,1537,'5.99','2005-06-16 00:52:51','2006-02-15 22:23:38'),(15904,594,1,1816,'4.99','2005-06-16 21:20:41','2006-02-15 22:23:38'),(15905,594,1,1950,'2.99','2005-06-17 08:26:52','2006-02-15 22:23:38'),(15906,594,1,2276,'6.99','2005-06-18 06:33:48','2006-02-15 22:23:39'),(15907,594,2,2786,'0.99','2005-06-19 18:46:43','2006-02-15 22:23:39'),(15908,594,2,3302,'1.99','2005-06-21 07:33:40','2006-02-15 22:23:39'),(15909,594,2,3474,'0.99','2005-07-05 22:59:53','2006-02-15 22:23:39'),(15910,594,1,3546,'4.99','2005-07-06 02:17:54','2006-02-15 22:23:40'),(15911,594,2,3960,'2.99','2005-07-06 22:08:53','2006-02-15 22:23:40'),(15912,594,1,4037,'5.99','2005-07-07 02:52:52','2006-02-15 22:23:40'),(15913,594,1,4154,'3.99','2005-07-07 08:58:23','2006-02-15 22:23:40'),(15914,594,2,5386,'2.99','2005-07-09 19:19:09','2006-02-15 22:23:41'),(15915,594,1,6473,'6.99','2005-07-12 01:35:40','2006-02-15 22:23:41'),(15916,594,1,7533,'8.99','2005-07-27 21:24:33','2006-02-15 22:23:41'),(15917,594,1,8567,'1.99','2005-07-29 11:37:30','2006-02-15 22:23:41'),(15918,594,1,8603,'2.99','2005-07-29 13:07:07','2006-02-15 22:23:42'),(15919,594,2,8820,'5.99','2005-07-29 22:14:56','2006-02-15 22:23:42'),(15920,594,1,9545,'7.99','2005-07-31 01:46:24','2006-02-15 22:23:42'),(15921,594,1,9698,'3.99','2005-07-31 07:24:35','2006-02-15 22:23:42'),(15922,594,2,9802,'4.99','2005-07-31 11:04:20','2006-02-15 22:23:42'),(15923,594,2,10704,'8.99','2005-08-01 18:38:02','2006-02-15 22:23:43'),(15924,594,2,14824,'4.99','2005-08-22 01:27:51','2006-02-15 22:23:43'),(15925,594,1,14999,'4.99','2005-08-22 07:54:47','2006-02-15 22:23:43'),(15926,595,1,613,'6.99','2005-05-28 15:27:22','2006-02-15 22:23:43'),(15927,595,2,1170,'2.99','2005-06-14 23:47:35','2006-02-15 22:23:44'),(15928,595,2,3371,'4.99','2005-06-21 13:27:22','2006-02-15 22:23:44'),(15929,595,1,3789,'9.99','2005-07-06 14:02:26','2006-02-15 22:23:44'),(15930,595,1,4017,'4.99','2005-07-07 01:08:18','2006-02-15 22:23:44'),(15931,595,1,4241,'4.99','2005-07-07 13:39:00','2006-02-15 22:23:45'),(15932,595,2,4775,'2.99','2005-07-08 15:44:05','2006-02-15 22:23:45'),(15933,595,1,5631,'1.99','2005-07-10 06:15:45','2006-02-15 22:23:45'),(15934,595,1,5952,'1.99','2005-07-10 23:18:20','2006-02-15 22:23:45'),(15935,595,1,6105,'6.99','2005-07-11 07:03:19','2006-02-15 22:23:46'),(15936,595,1,6704,'6.99','2005-07-12 12:50:24','2006-02-15 22:23:46'),(15937,595,1,7086,'4.99','2005-07-27 04:39:46','2006-02-15 22:23:46'),(15938,595,2,7307,'0.99','2005-07-27 12:59:10','2006-02-15 22:23:46'),(15939,595,1,7396,'4.99','2005-07-27 16:03:53','2006-02-15 22:23:47'),(15940,595,2,7490,'3.99','2005-07-27 19:48:12','2006-02-15 22:23:47'),(15941,595,1,9152,'2.99','2005-07-30 10:51:27','2006-02-15 22:23:47'),(15942,595,2,9223,'2.99','2005-07-30 13:23:20','2006-02-15 22:23:47'),(15943,595,1,9354,'4.99','2005-07-30 18:32:51','2006-02-15 22:23:48'),(15944,595,2,9497,'0.99','2005-07-30 23:56:54','2006-02-15 22:23:48'),(15945,595,2,9542,'4.99','2005-07-31 01:41:48','2006-02-15 22:23:48'),(15946,595,1,9631,'2.99','2005-07-31 05:02:00','2006-02-15 22:23:48'),(15947,595,2,9826,'10.99','2005-07-31 11:51:46','2006-02-15 22:23:48'),(15948,595,1,10729,'2.99','2005-08-01 19:21:11','2006-02-15 22:23:49'),(15949,595,1,10932,'2.99','2005-08-02 02:46:22','2006-02-15 22:23:49'),(15950,595,2,11748,'0.99','2005-08-17 09:04:02','2006-02-15 22:23:49'),(15951,595,1,12235,'0.99','2005-08-18 03:17:50','2006-02-15 22:23:49'),(15952,595,1,14334,'0.99','2005-08-21 08:32:32','2006-02-15 22:23:50'),(15953,595,2,15576,'2.99','2005-08-23 05:32:03','2006-02-15 22:23:50'),(15954,595,2,15994,'0.99','2005-08-23 20:29:10','2006-02-15 22:23:50'),(15955,595,2,16016,'2.99','2005-08-23 21:26:35','2006-02-15 22:23:50'),(15956,596,2,303,'4.99','2005-05-26 21:16:52','2006-02-15 22:23:51'),(15957,596,2,625,'0.99','2005-05-28 16:35:46','2006-02-15 22:23:51'),(15958,596,2,667,'4.99','2005-05-28 21:49:02','2006-02-15 22:23:51'),(15959,596,2,782,'1.99','2005-05-29 14:38:57','2006-02-15 22:23:51'),(15960,596,1,914,'2.99','2005-05-30 11:06:00','2006-02-15 22:23:52'),(15961,596,1,974,'6.99','2005-05-30 20:28:42','2006-02-15 22:23:52'),(15962,596,1,1644,'1.99','2005-06-16 08:58:18','2006-02-15 22:23:52'),(15963,596,1,2767,'1.99','2005-06-19 17:46:35','2006-02-15 22:23:52'),(15964,596,2,5742,'3.99','2005-07-10 11:56:18','2006-02-15 22:23:53'),(15965,596,1,6015,'2.99','2005-07-11 02:04:12','2006-02-15 22:23:53'),(15966,596,1,6017,'0.99','2005-07-11 02:05:32','2006-02-15 22:23:53'),(15967,596,1,6197,'4.99','2005-07-11 12:09:51','2006-02-15 22:23:53'),(15968,596,2,6883,'4.99','2005-07-12 20:50:48','2006-02-15 22:23:53'),(15969,596,1,10094,'3.99','2005-07-31 20:31:18','2006-02-15 22:23:54'),(15970,596,2,10692,'4.99','2005-08-01 18:12:35','2006-02-15 22:23:54'),(15971,596,1,10756,'2.99','2005-08-01 20:17:03','2006-02-15 22:23:54'),(15972,596,2,10804,'0.99','2005-08-01 22:22:11','2006-02-15 22:23:54'),(15973,596,2,11009,'4.99','2005-08-02 05:06:23','2006-02-15 22:23:55'),(15974,596,2,11852,'3.99','2005-08-17 13:38:27','2006-02-15 22:23:55'),(15975,596,1,11934,'0.99','2005-08-17 16:40:00','2006-02-15 22:23:55'),(15976,596,2,12560,'4.99','2005-08-18 14:54:19','2006-02-15 22:23:55'),(15977,596,1,12878,'4.99','2005-08-19 03:17:08','2006-02-15 22:23:56'),(15978,596,1,13648,'4.99','2005-08-20 07:48:10','2006-02-15 22:23:56'),(15979,596,1,14050,'3.99','2005-08-20 22:09:04','2006-02-15 22:23:56'),(15980,596,1,14417,'0.99','2005-08-21 11:13:35','2006-02-15 22:23:56'),(15981,596,1,15405,'0.99','2005-08-22 23:20:41','2006-02-15 22:23:57'),(15982,596,1,15899,'6.99','2005-08-23 17:16:28','2006-02-15 22:23:57'),(15983,596,1,15423,'0.99','2006-02-14 15:16:03','2006-02-15 22:23:57'),(15984,597,2,34,'2.99','2005-05-25 04:19:28','2006-02-15 22:23:57'),(15985,597,2,514,'8.99','2005-05-28 03:09:28','2006-02-15 22:23:58'),(15986,597,1,2379,'0.99','2005-06-18 14:59:39','2006-02-15 22:23:58'),(15987,597,1,2696,'4.99','2005-06-19 13:28:42','2006-02-15 22:23:58'),(15988,597,1,3201,'1.99','2005-06-21 00:30:26','2006-02-15 22:23:58'),(15989,597,1,5093,'0.99','2005-07-09 05:59:12','2006-02-15 22:23:59'),(15990,597,1,5348,'4.99','2005-07-09 17:34:11','2006-02-15 22:23:59'),(15991,597,2,5732,'2.99','2005-07-10 11:36:32','2006-02-15 22:23:59'),(15992,597,1,6508,'2.99','2005-07-12 03:34:50','2006-02-15 22:23:59'),(15993,597,2,7968,'4.99','2005-07-28 13:57:35','2006-02-15 22:23:59'),(15994,597,2,8948,'4.99','2005-07-30 03:16:18','2006-02-15 22:24:00'),(15995,597,2,10021,'4.99','2005-07-31 18:24:39','2006-02-15 22:24:00'),(15996,597,1,10214,'0.99','2005-08-01 01:04:15','2006-02-15 22:24:00'),(15997,597,2,10986,'5.99','2005-08-02 04:35:24','2006-02-15 22:24:00'),(15998,597,2,11147,'4.99','2005-08-02 09:45:54','2006-02-15 22:24:01'),(15999,597,2,11223,'2.99','2005-08-02 12:34:27','2006-02-15 22:24:01'),(16000,597,1,11240,'2.99','2005-08-02 13:28:30','2006-02-15 22:24:01'),(16001,597,1,11880,'5.99','2005-08-17 14:28:28','2006-02-15 22:24:01'),(16002,597,1,12081,'4.99','2005-08-17 22:10:46','2006-02-15 22:24:02'),(16003,597,1,12992,'0.99','2005-08-19 07:23:06','2006-02-15 22:24:02'),(16004,597,2,13019,'2.99','2005-08-19 08:07:43','2006-02-15 22:24:02'),(16005,597,1,13152,'6.99','2005-08-19 13:09:32','2006-02-15 22:24:02'),(16006,597,2,15275,'2.99','2005-08-22 18:57:39','2006-02-15 22:24:03'),(16007,597,1,15469,'4.99','2005-08-23 01:29:59','2006-02-15 22:24:03'),(16008,597,1,11652,'4.99','2006-02-14 15:16:03','2006-02-15 22:24:03'),(16009,598,1,3005,'2.99','2005-06-20 10:10:29','2006-02-15 22:24:03'),(16010,598,1,3648,'0.99','2005-07-06 07:30:41','2006-02-15 22:24:04'),(16011,598,2,3950,'6.99','2005-07-06 21:48:44','2006-02-15 22:24:04'),(16012,598,1,3972,'4.99','2005-07-06 22:53:57','2006-02-15 22:24:04'),(16013,598,1,4181,'4.99','2005-07-07 10:27:54','2006-02-15 22:24:04'),(16014,598,2,5688,'5.99','2005-07-10 09:16:08','2006-02-15 22:24:04'),(16015,598,1,6519,'4.99','2005-07-12 04:00:36','2006-02-15 22:24:05'),(16016,598,2,6528,'4.99','2005-07-12 04:29:44','2006-02-15 22:24:05'),(16017,598,2,6575,'0.99','2005-07-12 06:12:53','2006-02-15 22:24:05'),(16018,598,2,6660,'3.99','2005-07-12 11:20:12','2006-02-15 22:24:05'),(16019,598,2,7201,'6.99','2005-07-27 08:57:40','2006-02-15 22:24:06'),(16020,598,2,7354,'0.99','2005-07-27 14:42:11','2006-02-15 22:24:06'),(16021,598,1,7998,'0.99','2005-07-28 15:08:48','2006-02-15 22:24:06'),(16022,598,2,8436,'0.99','2005-07-29 07:21:20','2006-02-15 22:24:06'),(16023,598,1,8511,'5.99','2005-07-29 09:42:42','2006-02-15 22:24:07'),(16024,598,1,8939,'4.99','2005-07-30 02:56:53','2006-02-15 22:24:07'),(16025,598,1,10054,'4.99','2005-07-31 19:15:52','2006-02-15 22:24:07'),(16026,598,2,11350,'0.99','2005-08-02 17:22:59','2006-02-15 22:24:07'),(16027,598,2,12601,'2.99','2005-08-18 16:47:52','2006-02-15 22:24:08'),(16028,598,2,14345,'0.99','2005-08-21 08:41:15','2006-02-15 22:24:08'),(16029,598,2,15307,'2.99','2005-08-22 19:54:26','2006-02-15 22:24:08'),(16030,598,1,15443,'7.99','2005-08-23 00:44:15','2006-02-15 22:24:08'),(16031,599,2,1008,'4.99','2005-05-31 01:18:56','2006-02-15 22:24:09'),(16032,599,1,2272,'1.99','2005-06-18 06:29:53','2006-02-15 22:24:09'),(16033,599,2,3043,'6.99','2005-06-20 12:38:35','2006-02-15 22:24:09'),(16034,599,2,3398,'4.99','2005-06-21 15:34:38','2006-02-15 22:24:09'),(16035,599,1,3429,'6.99','2005-06-21 18:46:05','2006-02-15 22:24:09'),(16036,599,1,5065,'0.99','2005-07-09 04:42:00','2006-02-15 22:24:10'),(16037,599,1,5843,'2.99','2005-07-10 17:14:27','2006-02-15 22:24:10'),(16038,599,2,6800,'9.99','2005-07-12 17:03:56','2006-02-15 22:24:10'),(16039,599,2,6895,'2.99','2005-07-12 21:23:59','2006-02-15 22:24:10'),(16040,599,1,8965,'6.99','2005-07-30 03:52:37','2006-02-15 22:24:11'),(16041,599,2,9630,'2.99','2005-07-31 04:57:07','2006-02-15 22:24:11'),(16042,599,2,9679,'2.99','2005-07-31 06:41:19','2006-02-15 22:24:11'),(16043,599,2,11522,'3.99','2005-08-17 00:05:05','2006-02-15 22:24:11'),(16044,599,1,14233,'1.99','2005-08-21 05:07:08','2006-02-15 22:24:12'),(16045,599,1,14599,'4.99','2005-08-21 17:43:42','2006-02-15 22:24:12'),(16046,599,1,14719,'1.99','2005-08-21 21:41:57','2006-02-15 22:24:12'),(16047,599,2,15590,'8.99','2005-08-23 06:09:44','2006-02-15 22:24:12'),(16048,599,2,15719,'2.99','2005-08-23 11:08:46','2006-02-15 22:24:13'),(16049,599,2,15725,'2.99','2005-08-23 11:25:00','2006-02-15 22:24:13'); + +INSERT INTO rental VALUES (1,'2005-05-24 22:53:30',367,130,'2005-05-26 22:04:30',1,'2006-02-15 21:30:53'),(2,'2005-05-24 22:54:33',1525,459,'2005-05-28 19:40:33',1,'2006-02-15 21:30:53'),(3,'2005-05-24 23:03:39',1711,408,'2005-06-01 22:12:39',1,'2006-02-15 21:30:53'),(4,'2005-05-24 23:04:41',2452,333,'2005-06-03 01:43:41',2,'2006-02-15 21:30:53'),(5,'2005-05-24 23:05:21',2079,222,'2005-06-02 04:33:21',1,'2006-02-15 21:30:53'),(6,'2005-05-24 23:08:07',2792,549,'2005-05-27 01:32:07',1,'2006-02-15 21:30:53'),(7,'2005-05-24 23:11:53',3995,269,'2005-05-29 20:34:53',2,'2006-02-15 21:30:53'),(8,'2005-05-24 23:31:46',2346,239,'2005-05-27 23:33:46',2,'2006-02-15 21:30:53'),(9,'2005-05-25 00:00:40',2580,126,'2005-05-28 00:22:40',1,'2006-02-15 21:30:53'),(10,'2005-05-25 00:02:21',1824,399,'2005-05-31 22:44:21',2,'2006-02-15 21:30:53'),(11,'2005-05-25 00:09:02',4443,142,'2005-06-02 20:56:02',2,'2006-02-15 21:30:53'),(12,'2005-05-25 00:19:27',1584,261,'2005-05-30 05:44:27',2,'2006-02-15 21:30:53'),(13,'2005-05-25 00:22:55',2294,334,'2005-05-30 04:28:55',1,'2006-02-15 21:30:53'),(14,'2005-05-25 00:31:15',2701,446,'2005-05-26 02:56:15',1,'2006-02-15 21:30:53'),(15,'2005-05-25 00:39:22',3049,319,'2005-06-03 03:30:22',1,'2006-02-15 21:30:53'),(16,'2005-05-25 00:43:11',389,316,'2005-05-26 04:42:11',2,'2006-02-15 21:30:53'),(17,'2005-05-25 01:06:36',830,575,'2005-05-27 00:43:36',1,'2006-02-15 21:30:53'),(18,'2005-05-25 01:10:47',3376,19,'2005-05-31 06:35:47',2,'2006-02-15 21:30:53'),(19,'2005-05-25 01:17:24',1941,456,'2005-05-31 06:00:24',1,'2006-02-15 21:30:53'),(20,'2005-05-25 01:48:41',3517,185,'2005-05-27 02:20:41',2,'2006-02-15 21:30:53'),(21,'2005-05-25 01:59:46',146,388,'2005-05-26 01:01:46',2,'2006-02-15 21:30:53'),(22,'2005-05-25 02:19:23',727,509,'2005-05-26 04:52:23',2,'2006-02-15 21:30:53'),(23,'2005-05-25 02:40:21',4441,438,'2005-05-29 06:34:21',1,'2006-02-15 21:30:53'),(24,'2005-05-25 02:53:02',3273,350,'2005-05-27 01:15:02',1,'2006-02-15 21:30:53'),(25,'2005-05-25 03:21:20',3961,37,'2005-05-27 21:25:20',2,'2006-02-15 21:30:53'),(26,'2005-05-25 03:36:50',4371,371,'2005-05-31 00:34:50',1,'2006-02-15 21:30:53'),(27,'2005-05-25 03:41:50',1225,301,'2005-05-30 01:13:50',2,'2006-02-15 21:30:53'),(28,'2005-05-25 03:42:37',4068,232,'2005-05-26 09:26:37',2,'2006-02-15 21:30:53'),(29,'2005-05-25 03:47:12',611,44,'2005-05-30 00:31:12',2,'2006-02-15 21:30:53'),(30,'2005-05-25 04:01:32',3744,430,'2005-05-30 03:12:32',1,'2006-02-15 21:30:53'),(31,'2005-05-25 04:05:17',4482,369,'2005-05-30 07:15:17',1,'2006-02-15 21:30:53'),(32,'2005-05-25 04:06:21',3832,230,'2005-05-25 23:55:21',1,'2006-02-15 21:30:53'),(33,'2005-05-25 04:18:51',1681,272,'2005-05-27 03:58:51',1,'2006-02-15 21:30:53'),(34,'2005-05-25 04:19:28',2613,597,'2005-05-29 00:10:28',2,'2006-02-15 21:30:53'),(35,'2005-05-25 04:24:36',1286,484,'2005-05-27 07:02:36',2,'2006-02-15 21:30:53'),(36,'2005-05-25 04:36:26',1308,88,'2005-05-29 00:31:26',1,'2006-02-15 21:30:53'),(37,'2005-05-25 04:44:31',403,535,'2005-05-29 01:03:31',1,'2006-02-15 21:30:53'),(38,'2005-05-25 04:47:44',2540,302,'2005-06-01 00:58:44',1,'2006-02-15 21:30:53'),(39,'2005-05-25 04:51:46',4466,207,'2005-05-31 03:14:46',2,'2006-02-15 21:30:53'),(40,'2005-05-25 05:09:04',2638,413,'2005-05-27 23:12:04',1,'2006-02-15 21:30:53'),(41,'2005-05-25 05:12:29',1761,174,'2005-06-02 00:28:29',1,'2006-02-15 21:30:53'),(42,'2005-05-25 05:24:58',380,523,'2005-05-31 02:47:58',2,'2006-02-15 21:30:53'),(43,'2005-05-25 05:39:25',2578,532,'2005-05-26 06:54:25',2,'2006-02-15 21:30:53'),(44,'2005-05-25 05:53:23',3098,207,'2005-05-29 10:56:23',2,'2006-02-15 21:30:53'),(45,'2005-05-25 05:59:39',1853,436,'2005-06-02 09:56:39',2,'2006-02-15 21:30:53'),(46,'2005-05-25 06:04:08',3318,7,'2005-06-02 08:18:08',2,'2006-02-15 21:30:53'),(47,'2005-05-25 06:05:20',2211,35,'2005-05-30 03:04:20',1,'2006-02-15 21:30:53'),(48,'2005-05-25 06:20:46',1780,282,'2005-06-02 05:42:46',1,'2006-02-15 21:30:53'),(49,'2005-05-25 06:39:35',2965,498,'2005-05-30 10:12:35',2,'2006-02-15 21:30:53'),(50,'2005-05-25 06:44:53',1983,18,'2005-05-28 11:28:53',2,'2006-02-15 21:30:53'),(51,'2005-05-25 06:49:10',1257,256,'2005-05-26 06:42:10',1,'2006-02-15 21:30:53'),(52,'2005-05-25 06:51:29',4017,507,'2005-05-31 01:27:29',2,'2006-02-15 21:30:53'),(53,'2005-05-25 07:19:16',1255,569,'2005-05-27 05:19:16',2,'2006-02-15 21:30:53'),(54,'2005-05-25 07:23:25',2787,291,'2005-06-01 05:05:25',2,'2006-02-15 21:30:53'),(55,'2005-05-25 08:26:13',1139,131,'2005-05-30 10:57:13',1,'2006-02-15 21:30:53'),(56,'2005-05-25 08:28:11',1352,511,'2005-05-26 14:21:11',1,'2006-02-15 21:30:53'),(57,'2005-05-25 08:43:32',3938,6,'2005-05-29 06:42:32',2,'2006-02-15 21:30:53'),(58,'2005-05-25 08:53:14',3050,323,'2005-05-28 14:40:14',1,'2006-02-15 21:30:53'),(59,'2005-05-25 08:56:42',2884,408,'2005-06-01 09:52:42',1,'2006-02-15 21:30:53'),(60,'2005-05-25 08:58:25',330,470,'2005-05-30 14:14:25',1,'2006-02-15 21:30:53'),(61,'2005-05-25 09:01:57',4210,250,'2005-06-02 07:22:57',2,'2006-02-15 21:30:53'),(62,'2005-05-25 09:18:52',261,419,'2005-05-30 10:55:52',1,'2006-02-15 21:30:53'),(63,'2005-05-25 09:19:16',4008,383,'2005-05-27 04:24:16',1,'2006-02-15 21:30:53'),(64,'2005-05-25 09:21:29',79,368,'2005-06-03 11:31:29',1,'2006-02-15 21:30:53'),(65,'2005-05-25 09:32:03',3552,346,'2005-05-29 14:21:03',1,'2006-02-15 21:30:53'),(66,'2005-05-25 09:35:12',1162,86,'2005-05-29 04:16:12',2,'2006-02-15 21:30:53'),(67,'2005-05-25 09:41:01',239,119,'2005-05-27 13:46:01',2,'2006-02-15 21:30:53'),(68,'2005-05-25 09:47:31',4029,120,'2005-05-31 10:20:31',2,'2006-02-15 21:30:53'),(69,'2005-05-25 10:10:14',3207,305,'2005-05-27 14:02:14',2,'2006-02-15 21:30:53'),(70,'2005-05-25 10:15:23',2168,73,'2005-05-27 05:56:23',2,'2006-02-15 21:30:53'),(71,'2005-05-25 10:26:39',2408,100,'2005-05-28 04:59:39',1,'2006-02-15 21:30:53'),(72,'2005-05-25 10:52:13',2260,48,'2005-05-28 05:52:13',2,'2006-02-15 21:30:53'),(73,'2005-05-25 11:00:07',517,391,'2005-06-01 13:56:07',2,'2006-02-15 21:30:53'),(74,'2005-05-25 11:09:48',1744,265,'2005-05-26 12:23:48',2,'2006-02-15 21:30:53'),(75,'2005-05-25 11:13:34',3393,510,'2005-06-03 12:58:34',1,'2006-02-15 21:30:53'),(76,'2005-05-25 11:30:37',3021,1,'2005-06-03 12:00:37',2,'2006-02-15 21:30:53'),(77,'2005-05-25 11:31:59',1303,451,'2005-05-26 16:53:59',2,'2006-02-15 21:30:53'),(78,'2005-05-25 11:35:18',4067,135,'2005-05-31 12:48:18',2,'2006-02-15 21:30:53'),(79,'2005-05-25 12:11:07',3299,245,'2005-06-03 10:54:07',2,'2006-02-15 21:30:53'),(80,'2005-05-25 12:12:07',2478,314,'2005-05-31 17:46:07',2,'2006-02-15 21:30:53'),(81,'2005-05-25 12:15:19',2610,286,'2005-06-02 14:08:19',2,'2006-02-15 21:30:53'),(82,'2005-05-25 12:17:46',1388,427,'2005-06-01 10:48:46',1,'2006-02-15 21:30:53'),(83,'2005-05-25 12:30:15',466,131,'2005-05-27 15:40:15',1,'2006-02-15 21:30:53'),(84,'2005-05-25 12:36:30',1829,492,'2005-05-29 18:33:30',1,'2006-02-15 21:30:53'),(85,'2005-05-25 13:05:34',470,414,'2005-05-29 16:53:34',1,'2006-02-15 21:30:53'),(86,'2005-05-25 13:36:12',2275,266,'2005-05-30 14:53:12',1,'2006-02-15 21:30:53'),(87,'2005-05-25 13:52:43',1586,331,'2005-05-29 11:12:43',2,'2006-02-15 21:30:53'),(88,'2005-05-25 14:13:54',2221,53,'2005-05-29 09:32:54',2,'2006-02-15 21:30:53'),(89,'2005-05-25 14:28:29',2181,499,'2005-05-29 14:33:29',1,'2006-02-15 21:30:53'),(90,'2005-05-25 14:31:25',2984,25,'2005-06-01 10:07:25',1,'2006-02-15 21:30:53'),(91,'2005-05-25 14:57:22',139,267,'2005-06-01 18:32:22',1,'2006-02-15 21:30:53'),(92,'2005-05-25 15:38:46',775,302,'2005-05-31 13:40:46',2,'2006-02-15 21:30:53'),(93,'2005-05-25 15:54:16',4360,288,'2005-06-03 20:18:16',1,'2006-02-15 21:30:53'),(94,'2005-05-25 16:03:42',1675,197,'2005-05-30 14:23:42',1,'2006-02-15 21:30:53'),(95,'2005-05-25 16:12:52',178,400,'2005-06-02 18:55:52',2,'2006-02-15 21:30:53'),(96,'2005-05-25 16:32:19',3418,49,'2005-05-30 10:47:19',2,'2006-02-15 21:30:53'),(97,'2005-05-25 16:34:24',1283,263,'2005-05-28 12:13:24',2,'2006-02-15 21:30:53'),(98,'2005-05-25 16:48:24',2970,269,'2005-05-27 11:29:24',2,'2006-02-15 21:30:53'),(99,'2005-05-25 16:50:20',535,44,'2005-05-28 18:52:20',1,'2006-02-15 21:30:53'),(100,'2005-05-25 16:50:28',2599,208,'2005-06-02 22:11:28',1,'2006-02-15 21:30:53'),(101,'2005-05-25 17:17:04',617,468,'2005-05-31 19:47:04',1,'2006-02-15 21:30:53'),(102,'2005-05-25 17:22:10',373,343,'2005-05-31 19:47:10',1,'2006-02-15 21:30:53'),(103,'2005-05-25 17:30:42',3343,384,'2005-06-03 22:36:42',1,'2006-02-15 21:30:53'),(104,'2005-05-25 17:46:33',4281,310,'2005-05-27 15:20:33',1,'2006-02-15 21:30:53'),(105,'2005-05-25 17:54:12',794,108,'2005-05-30 12:03:12',2,'2006-02-15 21:30:53'),(106,'2005-05-25 18:18:19',3627,196,'2005-06-04 00:01:19',2,'2006-02-15 21:30:53'),(107,'2005-05-25 18:28:09',2833,317,'2005-06-03 22:46:09',2,'2006-02-15 21:30:53'),(108,'2005-05-25 18:30:05',3289,242,'2005-05-30 19:40:05',1,'2006-02-15 21:30:53'),(109,'2005-05-25 18:40:20',1044,503,'2005-05-29 20:39:20',2,'2006-02-15 21:30:53'),(110,'2005-05-25 18:43:49',4108,19,'2005-06-03 18:13:49',2,'2006-02-15 21:30:53'),(111,'2005-05-25 18:45:19',3725,227,'2005-05-28 17:18:19',1,'2006-02-15 21:30:53'),(112,'2005-05-25 18:57:24',2153,500,'2005-06-02 20:44:24',1,'2006-02-15 21:30:53'),(113,'2005-05-25 19:07:40',2963,93,'2005-05-27 22:16:40',2,'2006-02-15 21:30:53'),(114,'2005-05-25 19:12:42',4502,506,'2005-06-01 23:10:42',1,'2006-02-15 21:30:53'),(115,'2005-05-25 19:13:25',749,455,'2005-05-29 20:17:25',1,'2006-02-15 21:30:53'),(116,'2005-05-25 19:27:51',4453,18,'2005-05-26 16:23:51',1,'2006-02-15 21:30:53'),(117,'2005-05-25 19:30:46',4278,7,'2005-05-31 23:59:46',2,'2006-02-15 21:30:53'),(118,'2005-05-25 19:31:18',872,524,'2005-05-31 15:00:18',1,'2006-02-15 21:30:53'),(119,'2005-05-25 19:37:02',1359,51,'2005-05-29 23:51:02',2,'2006-02-15 21:30:53'),(120,'2005-05-25 19:37:47',37,365,'2005-06-01 23:29:47',2,'2006-02-15 21:30:53'),(121,'2005-05-25 19:41:29',1053,405,'2005-05-29 21:31:29',1,'2006-02-15 21:30:53'),(122,'2005-05-25 19:46:21',2908,273,'2005-06-02 19:07:21',1,'2006-02-15 21:30:53'),(123,'2005-05-25 20:26:42',1795,43,'2005-05-26 19:41:42',1,'2006-02-15 21:30:53'),(124,'2005-05-25 20:46:11',212,246,'2005-05-30 00:47:11',2,'2006-02-15 21:30:53'),(125,'2005-05-25 20:48:50',952,368,'2005-06-02 21:39:50',1,'2006-02-15 21:30:53'),(126,'2005-05-25 21:07:59',2047,439,'2005-05-28 18:51:59',1,'2006-02-15 21:30:53'),(127,'2005-05-25 21:10:40',2026,94,'2005-06-02 21:38:40',1,'2006-02-15 21:30:53'),(128,'2005-05-25 21:19:53',4322,40,'2005-05-29 23:34:53',1,'2006-02-15 21:30:53'),(129,'2005-05-25 21:20:03',4154,23,'2005-06-04 01:25:03',2,'2006-02-15 21:30:53'),(130,'2005-05-25 21:21:56',3990,56,'2005-05-30 22:41:56',2,'2006-02-15 21:30:53'),(131,'2005-05-25 21:42:46',815,325,'2005-05-30 23:25:46',2,'2006-02-15 21:30:53'),(132,'2005-05-25 21:46:54',3367,479,'2005-05-31 21:02:54',1,'2006-02-15 21:30:53'),(133,'2005-05-25 21:48:30',399,237,'2005-05-30 00:26:30',2,'2006-02-15 21:30:53'),(134,'2005-05-25 21:48:41',2272,222,'2005-06-02 18:28:41',1,'2006-02-15 21:30:53'),(135,'2005-05-25 21:58:58',103,304,'2005-06-03 17:50:58',1,'2006-02-15 21:30:53'),(136,'2005-05-25 22:02:30',2296,504,'2005-05-31 18:06:30',1,'2006-02-15 21:30:53'),(137,'2005-05-25 22:25:18',2591,560,'2005-06-01 02:30:18',2,'2006-02-15 21:30:53'),(138,'2005-05-25 22:48:22',4134,586,'2005-05-29 20:21:22',2,'2006-02-15 21:30:53'),(139,'2005-05-25 23:00:21',327,257,'2005-05-29 17:12:21',1,'2006-02-15 21:30:53'),(140,'2005-05-25 23:34:22',655,354,'2005-05-27 01:10:22',1,'2006-02-15 21:30:53'),(141,'2005-05-25 23:34:53',811,89,'2005-06-02 01:57:53',1,'2006-02-15 21:30:53'),(142,'2005-05-25 23:43:47',4407,472,'2005-05-29 00:46:47',2,'2006-02-15 21:30:53'),(143,'2005-05-25 23:45:52',847,297,'2005-05-27 21:41:52',2,'2006-02-15 21:30:53'),(144,'2005-05-25 23:49:56',1689,357,'2005-06-01 21:41:56',2,'2006-02-15 21:30:53'),(145,'2005-05-25 23:59:03',3905,82,'2005-05-31 02:56:03',1,'2006-02-15 21:30:53'),(146,'2005-05-26 00:07:11',1431,433,'2005-06-04 00:20:11',2,'2006-02-15 21:30:53'),(147,'2005-05-26 00:17:50',633,274,'2005-05-29 23:21:50',2,'2006-02-15 21:30:53'),(148,'2005-05-26 00:25:23',4252,142,'2005-06-01 19:29:23',2,'2006-02-15 21:30:53'),(149,'2005-05-26 00:28:05',1084,319,'2005-06-02 21:30:05',2,'2006-02-15 21:30:53'),(150,'2005-05-26 00:28:39',909,429,'2005-06-01 02:10:39',2,'2006-02-15 21:30:53'),(151,'2005-05-26 00:37:28',2942,14,'2005-05-30 06:28:28',1,'2006-02-15 21:30:53'),(152,'2005-05-26 00:41:10',2622,57,'2005-06-03 06:05:10',1,'2006-02-15 21:30:53'),(153,'2005-05-26 00:47:47',3888,348,'2005-05-27 21:28:47',1,'2006-02-15 21:30:53'),(154,'2005-05-26 00:55:56',1354,185,'2005-05-29 23:18:56',2,'2006-02-15 21:30:53'),(155,'2005-05-26 01:15:05',288,551,'2005-06-01 00:03:05',1,'2006-02-15 21:30:53'),(156,'2005-05-26 01:19:05',3193,462,'2005-05-27 23:43:05',1,'2006-02-15 21:30:53'),(157,'2005-05-26 01:25:21',887,344,'2005-05-26 21:17:21',2,'2006-02-15 21:30:53'),(158,'2005-05-26 01:27:11',2395,354,'2005-06-03 00:30:11',2,'2006-02-15 21:30:53'),(159,'2005-05-26 01:34:28',3453,505,'2005-05-29 04:00:28',1,'2006-02-15 21:30:53'),(160,'2005-05-26 01:46:20',1885,290,'2005-06-01 05:45:20',1,'2006-02-15 21:30:53'),(161,'2005-05-26 01:51:48',2941,182,'2005-05-27 05:42:48',1,'2006-02-15 21:30:53'),(162,'2005-05-26 02:02:05',1229,296,'2005-05-27 03:38:05',2,'2006-02-15 21:30:53'),(163,'2005-05-26 02:26:23',2306,104,'2005-06-04 06:36:23',1,'2006-02-15 21:30:53'),(164,'2005-05-26 02:26:49',1070,151,'2005-05-28 00:32:49',1,'2006-02-15 21:30:53'),(165,'2005-05-26 02:28:36',2735,33,'2005-06-02 03:21:36',1,'2006-02-15 21:30:53'),(166,'2005-05-26 02:49:11',3894,322,'2005-05-31 01:28:11',1,'2006-02-15 21:30:53'),(167,'2005-05-26 02:50:31',865,401,'2005-05-27 03:07:31',1,'2006-02-15 21:30:53'),(168,'2005-05-26 03:07:43',2714,469,'2005-06-02 02:09:43',2,'2006-02-15 21:30:53'),(169,'2005-05-26 03:09:30',1758,381,'2005-05-27 01:37:30',2,'2006-02-15 21:30:53'),(170,'2005-05-26 03:11:12',3688,107,'2005-06-02 03:53:12',1,'2006-02-15 21:30:53'),(171,'2005-05-26 03:14:15',4483,400,'2005-06-03 00:24:15',2,'2006-02-15 21:30:53'),(172,'2005-05-26 03:17:42',2873,176,'2005-05-29 04:11:42',2,'2006-02-15 21:30:53'),(173,'2005-05-26 03:42:10',3596,533,'2005-05-28 01:37:10',2,'2006-02-15 21:30:53'),(174,'2005-05-26 03:44:10',3954,552,'2005-05-28 07:13:10',2,'2006-02-15 21:30:53'),(175,'2005-05-26 03:46:26',4346,47,'2005-06-03 06:01:26',2,'2006-02-15 21:30:53'),(176,'2005-05-26 03:47:39',851,250,'2005-06-01 02:36:39',2,'2006-02-15 21:30:53'),(177,'2005-05-26 04:14:29',3545,548,'2005-06-01 08:16:29',2,'2006-02-15 21:30:53'),(178,'2005-05-26 04:21:46',1489,196,'2005-06-04 07:09:46',2,'2006-02-15 21:30:53'),(179,'2005-05-26 04:26:06',2575,19,'2005-06-03 10:06:06',1,'2006-02-15 21:30:53'),(180,'2005-05-26 04:46:23',2752,75,'2005-06-01 09:58:23',1,'2006-02-15 21:30:53'),(181,'2005-05-26 04:47:06',2417,587,'2005-05-29 06:34:06',2,'2006-02-15 21:30:53'),(182,'2005-05-26 04:49:17',4396,237,'2005-06-01 05:43:17',2,'2006-02-15 21:30:53'),(183,'2005-05-26 05:01:18',2877,254,'2005-06-01 09:04:18',1,'2006-02-15 21:30:53'),(184,'2005-05-26 05:29:49',1970,556,'2005-05-28 10:10:49',1,'2006-02-15 21:30:53'),(185,'2005-05-26 05:30:03',2598,125,'2005-06-02 09:48:03',2,'2006-02-15 21:30:53'),(186,'2005-05-26 05:32:52',1799,468,'2005-06-03 07:19:52',2,'2006-02-15 21:30:53'),(187,'2005-05-26 05:42:37',4004,515,'2005-06-04 00:38:37',1,'2006-02-15 21:30:53'),(188,'2005-05-26 05:47:12',3342,243,'2005-05-26 23:48:12',1,'2006-02-15 21:30:53'),(189,'2005-05-26 06:01:41',984,247,'2005-05-27 06:11:41',1,'2006-02-15 21:30:53'),(190,'2005-05-26 06:11:28',3962,533,'2005-06-01 09:44:28',1,'2006-02-15 21:30:53'),(191,'2005-05-26 06:14:06',4365,412,'2005-05-28 05:33:06',1,'2006-02-15 21:30:53'),(192,'2005-05-26 06:20:37',1897,437,'2005-06-02 10:57:37',1,'2006-02-15 21:30:53'),(193,'2005-05-26 06:41:48',3900,270,'2005-05-30 06:21:48',2,'2006-02-15 21:30:53'),(194,'2005-05-26 06:52:33',1337,29,'2005-05-30 04:08:33',2,'2006-02-15 21:30:53'),(195,'2005-05-26 06:52:36',506,564,'2005-05-31 02:47:36',2,'2006-02-15 21:30:53'),(196,'2005-05-26 06:55:58',190,184,'2005-05-27 10:54:58',1,'2006-02-15 21:30:53'),(197,'2005-05-26 06:59:21',4212,546,'2005-06-03 05:04:21',2,'2006-02-15 21:30:53'),(198,'2005-05-26 07:03:49',1789,54,'2005-06-04 11:45:49',1,'2006-02-15 21:30:53'),(199,'2005-05-26 07:11:58',2135,71,'2005-05-28 09:06:58',1,'2006-02-15 21:30:53'),(200,'2005-05-26 07:12:21',3926,321,'2005-05-31 12:07:21',1,'2006-02-15 21:30:53'),(201,'2005-05-26 07:13:45',776,444,'2005-06-04 02:02:45',2,'2006-02-15 21:30:53'),(202,'2005-05-26 07:27:36',674,20,'2005-06-02 03:52:36',1,'2006-02-15 21:30:53'),(203,'2005-05-26 07:27:57',3374,109,'2005-06-03 12:52:57',1,'2006-02-15 21:30:53'),(204,'2005-05-26 07:30:37',1842,528,'2005-05-30 08:11:37',1,'2006-02-15 21:30:53'),(205,'2005-05-26 07:59:37',303,114,'2005-05-29 09:43:37',2,'2006-02-15 21:30:53'),(206,'2005-05-26 08:01:54',1717,345,'2005-05-27 06:26:54',1,'2006-02-15 21:30:53'),(207,'2005-05-26 08:04:38',102,47,'2005-05-27 09:32:38',2,'2006-02-15 21:30:53'),(208,'2005-05-26 08:10:22',3669,274,'2005-05-27 03:55:22',1,'2006-02-15 21:30:53'),(209,'2005-05-26 08:14:01',729,379,'2005-05-27 09:00:01',1,'2006-02-15 21:30:53'),(210,'2005-05-26 08:14:15',1801,391,'2005-05-27 12:12:15',2,'2006-02-15 21:30:53'),(211,'2005-05-26 08:33:10',4005,170,'2005-05-28 14:09:10',1,'2006-02-15 21:30:53'),(212,'2005-05-26 08:34:41',764,59,'2005-05-30 12:46:41',2,'2006-02-15 21:30:53'),(213,'2005-05-26 08:44:08',1505,394,'2005-05-31 12:33:08',2,'2006-02-15 21:30:53'),(214,'2005-05-26 08:48:49',1453,98,'2005-05-31 04:06:49',2,'2006-02-15 21:30:53'),(215,'2005-05-26 09:02:47',679,197,'2005-05-28 09:45:47',2,'2006-02-15 21:30:53'),(216,'2005-05-26 09:17:43',1398,91,'2005-06-03 08:21:43',1,'2006-02-15 21:30:53'),(217,'2005-05-26 09:24:26',4395,121,'2005-05-31 03:24:26',2,'2006-02-15 21:30:53'),(218,'2005-05-26 09:27:09',2291,309,'2005-06-04 11:53:09',2,'2006-02-15 21:30:53'),(219,'2005-05-26 09:41:45',3074,489,'2005-05-28 04:40:45',1,'2006-02-15 21:30:53'),(220,'2005-05-26 10:06:49',1259,542,'2005-06-01 07:43:49',1,'2006-02-15 21:30:53'),(221,'2005-05-26 10:14:09',3578,143,'2005-05-29 05:57:09',1,'2006-02-15 21:30:53'),(222,'2005-05-26 10:14:38',2745,83,'2005-05-31 08:36:38',2,'2006-02-15 21:30:53'),(223,'2005-05-26 10:15:23',3121,460,'2005-05-30 11:43:23',1,'2006-02-15 21:30:53'),(224,'2005-05-26 10:18:27',4285,318,'2005-06-04 06:59:27',1,'2006-02-15 21:30:53'),(225,'2005-05-26 10:27:50',651,467,'2005-06-01 07:01:50',2,'2006-02-15 21:30:53'),(226,'2005-05-26 10:44:04',4181,221,'2005-05-31 13:26:04',2,'2006-02-15 21:30:53'),(227,'2005-05-26 10:51:46',214,301,'2005-05-30 07:24:46',1,'2006-02-15 21:30:53'),(228,'2005-05-26 10:54:28',511,571,'2005-06-04 09:39:28',1,'2006-02-15 21:30:53'),(229,'2005-05-26 11:19:20',1131,312,'2005-05-31 11:56:20',2,'2006-02-15 21:30:53'),(230,'2005-05-26 11:31:50',1085,58,'2005-05-30 15:22:50',1,'2006-02-15 21:30:53'),(231,'2005-05-26 11:31:59',4032,365,'2005-05-27 07:27:59',1,'2006-02-15 21:30:53'),(232,'2005-05-26 11:38:05',2945,256,'2005-05-27 08:42:05',2,'2006-02-15 21:30:53'),(233,'2005-05-26 11:43:44',715,531,'2005-05-28 17:28:44',2,'2006-02-15 21:30:53'),(234,'2005-05-26 11:47:20',1321,566,'2005-06-03 10:39:20',2,'2006-02-15 21:30:53'),(235,'2005-05-26 11:51:09',3537,119,'2005-06-04 09:36:09',1,'2006-02-15 21:30:53'),(236,'2005-05-26 11:53:49',1265,446,'2005-05-28 13:55:49',1,'2006-02-15 21:30:53'),(237,'2005-05-26 12:15:13',241,536,'2005-05-29 18:10:13',1,'2006-02-15 21:30:53'),(238,'2005-05-26 12:30:22',503,211,'2005-05-27 06:49:22',1,'2006-02-15 21:30:53'),(239,'2005-05-26 12:30:26',131,49,'2005-06-01 13:26:26',2,'2006-02-15 21:30:53'),(240,'2005-05-26 12:40:23',3420,103,'2005-06-04 07:22:23',1,'2006-02-15 21:30:53'),(241,'2005-05-26 12:49:01',4438,245,'2005-05-28 11:43:01',2,'2006-02-15 21:30:53'),(242,'2005-05-26 13:05:08',2095,214,'2005-06-02 15:26:08',1,'2006-02-15 21:30:53'),(243,'2005-05-26 13:06:05',1721,543,'2005-06-03 17:28:05',2,'2006-02-15 21:30:53'),(244,'2005-05-26 13:40:40',1041,257,'2005-05-31 11:58:40',1,'2006-02-15 21:30:53'),(245,'2005-05-26 13:46:59',3045,158,'2005-05-27 09:58:59',2,'2006-02-15 21:30:53'),(246,'2005-05-26 13:57:07',2829,240,'2005-05-29 10:12:07',2,'2006-02-15 21:30:53'),(247,'2005-05-26 14:01:05',4095,102,'2005-05-28 13:38:05',2,'2006-02-15 21:30:53'),(248,'2005-05-26 14:07:58',1913,545,'2005-05-31 14:03:58',2,'2006-02-15 21:30:53'),(249,'2005-05-26 14:19:09',2428,472,'2005-05-28 17:47:09',2,'2006-02-15 21:30:53'),(250,'2005-05-26 14:30:24',368,539,'2005-05-27 08:50:24',1,'2006-02-15 21:30:53'),(251,'2005-05-26 14:35:40',4352,204,'2005-05-29 17:17:40',1,'2006-02-15 21:30:53'),(252,'2005-05-26 14:39:53',1203,187,'2005-06-02 14:48:53',1,'2006-02-15 21:30:53'),(253,'2005-05-26 14:43:14',2969,416,'2005-05-27 12:21:14',1,'2006-02-15 21:30:53'),(254,'2005-05-26 14:43:48',1835,390,'2005-05-31 09:19:48',2,'2006-02-15 21:30:53'),(255,'2005-05-26 14:52:15',3264,114,'2005-05-27 12:45:15',1,'2006-02-15 21:30:53'),(256,'2005-05-26 15:20:58',3194,436,'2005-05-31 15:58:58',1,'2006-02-15 21:30:53'),(257,'2005-05-26 15:27:05',2570,373,'2005-05-29 16:25:05',2,'2006-02-15 21:30:53'),(258,'2005-05-26 15:28:14',3534,502,'2005-05-30 18:38:14',2,'2006-02-15 21:30:53'),(259,'2005-05-26 15:32:46',30,482,'2005-06-04 15:27:46',2,'2006-02-15 21:30:53'),(260,'2005-05-26 15:42:20',435,21,'2005-05-31 13:21:20',2,'2006-02-15 21:30:53'),(261,'2005-05-26 15:44:23',1369,414,'2005-06-02 09:47:23',2,'2006-02-15 21:30:53'),(262,'2005-05-26 15:46:56',4261,236,'2005-05-28 15:49:56',2,'2006-02-15 21:30:53'),(263,'2005-05-26 15:47:40',1160,449,'2005-05-30 10:07:40',2,'2006-02-15 21:30:53'),(264,'2005-05-26 16:00:49',2069,251,'2005-05-27 10:12:49',2,'2006-02-15 21:30:53'),(265,'2005-05-26 16:07:38',2276,303,'2005-06-01 14:20:38',1,'2006-02-15 21:30:53'),(266,'2005-05-26 16:08:05',3303,263,'2005-05-27 10:55:05',2,'2006-02-15 21:30:53'),(267,'2005-05-26 16:16:21',1206,417,'2005-05-30 16:53:21',2,'2006-02-15 21:30:53'),(268,'2005-05-26 16:19:08',1714,75,'2005-05-27 14:35:08',1,'2006-02-15 21:30:53'),(269,'2005-05-26 16:19:46',3501,322,'2005-05-27 15:59:46',2,'2006-02-15 21:30:53'),(270,'2005-05-26 16:20:56',207,200,'2005-06-03 12:40:56',2,'2006-02-15 21:30:53'),(271,'2005-05-26 16:22:01',2388,92,'2005-06-03 17:30:01',2,'2006-02-15 21:30:53'),(272,'2005-05-26 16:27:11',971,71,'2005-06-03 13:10:11',2,'2006-02-15 21:30:53'),(273,'2005-05-26 16:29:36',1590,193,'2005-05-29 18:49:36',2,'2006-02-15 21:30:53'),(274,'2005-05-26 16:48:51',656,311,'2005-06-03 18:17:51',1,'2006-02-15 21:30:53'),(275,'2005-05-26 17:09:53',1718,133,'2005-06-04 22:35:53',1,'2006-02-15 21:30:53'),(276,'2005-05-26 17:16:07',1221,58,'2005-06-03 12:59:07',1,'2006-02-15 21:30:53'),(277,'2005-05-26 17:32:11',1409,45,'2005-05-28 22:54:11',1,'2006-02-15 21:30:53'),(278,'2005-05-26 17:40:58',182,214,'2005-06-02 16:43:58',2,'2006-02-15 21:30:53'),(279,'2005-05-26 18:02:50',661,384,'2005-06-03 18:48:50',2,'2006-02-15 21:30:53'),(280,'2005-05-26 18:36:58',1896,167,'2005-05-27 23:42:58',1,'2006-02-15 21:30:53'),(281,'2005-05-26 18:49:35',1208,582,'2005-05-27 18:11:35',2,'2006-02-15 21:30:53'),(282,'2005-05-26 18:56:26',4486,282,'2005-06-01 16:32:26',2,'2006-02-15 21:30:53'),(283,'2005-05-26 19:05:05',3530,242,'2005-05-31 19:19:05',1,'2006-02-15 21:30:53'),(284,'2005-05-26 19:21:44',350,359,'2005-06-04 14:18:44',2,'2006-02-15 21:30:53'),(285,'2005-05-26 19:41:40',2486,162,'2005-05-31 16:58:40',2,'2006-02-15 21:30:53'),(286,'2005-05-26 19:44:51',314,371,'2005-06-04 18:00:51',2,'2006-02-15 21:30:53'),(287,'2005-05-26 19:44:54',3631,17,'2005-06-02 01:10:54',1,'2006-02-15 21:30:53'),(288,'2005-05-26 19:47:49',3546,82,'2005-06-03 20:53:49',2,'2006-02-15 21:30:53'),(289,'2005-05-26 20:01:09',2449,81,'2005-05-28 15:09:09',1,'2006-02-15 21:30:53'),(290,'2005-05-26 20:08:33',2776,429,'2005-05-30 00:32:33',1,'2006-02-15 21:30:53'),(291,'2005-05-26 20:20:47',485,577,'2005-06-03 02:06:47',2,'2006-02-15 21:30:53'),(292,'2005-05-26 20:22:12',4264,515,'2005-06-05 00:58:12',1,'2006-02-15 21:30:53'),(293,'2005-05-26 20:27:02',1828,158,'2005-06-03 16:45:02',2,'2006-02-15 21:30:53'),(294,'2005-05-26 20:29:57',2751,369,'2005-05-28 17:20:57',1,'2006-02-15 21:30:53'),(295,'2005-05-26 20:33:20',4030,65,'2005-05-27 18:23:20',2,'2006-02-15 21:30:53'),(296,'2005-05-26 20:35:19',3878,468,'2005-06-04 02:31:19',2,'2006-02-15 21:30:53'),(297,'2005-05-26 20:48:48',1594,48,'2005-05-27 19:52:48',2,'2006-02-15 21:30:53'),(298,'2005-05-26 20:52:26',1083,460,'2005-05-29 22:08:26',2,'2006-02-15 21:30:53'),(299,'2005-05-26 20:55:36',4376,448,'2005-05-28 00:25:36',2,'2006-02-15 21:30:53'),(300,'2005-05-26 20:57:00',249,47,'2005-06-05 01:34:00',2,'2006-02-15 21:30:53'),(301,'2005-05-26 21:06:14',3448,274,'2005-06-01 01:54:14',2,'2006-02-15 21:30:53'),(302,'2005-05-26 21:13:46',2921,387,'2005-06-03 15:49:46',2,'2006-02-15 21:30:53'),(303,'2005-05-26 21:16:52',1111,596,'2005-05-27 23:41:52',2,'2006-02-15 21:30:53'),(304,'2005-05-26 21:21:28',1701,534,'2005-06-02 00:05:28',1,'2006-02-15 21:30:53'),(305,'2005-05-26 21:22:07',2665,464,'2005-06-02 22:33:07',2,'2006-02-15 21:30:53'),(306,'2005-05-26 21:31:57',2781,547,'2005-05-28 19:37:57',1,'2006-02-15 21:30:53'),(307,'2005-05-26 21:48:13',1097,375,'2005-06-04 22:24:13',1,'2006-02-15 21:30:53'),(308,'2005-05-26 22:01:39',187,277,'2005-06-04 20:24:39',2,'2006-02-15 21:30:53'),(309,'2005-05-26 22:38:10',1946,251,'2005-06-02 03:10:10',2,'2006-02-15 21:30:53'),(310,'2005-05-26 22:41:07',593,409,'2005-06-02 04:09:07',1,'2006-02-15 21:30:53'),(311,'2005-05-26 22:51:37',2830,201,'2005-06-01 00:02:37',1,'2006-02-15 21:30:53'),(312,'2005-05-26 22:52:19',2008,143,'2005-06-02 18:14:19',2,'2006-02-15 21:30:53'),(313,'2005-05-26 22:56:19',4156,594,'2005-05-29 01:29:19',2,'2006-02-15 21:30:53'),(314,'2005-05-26 23:09:41',2851,203,'2005-05-28 22:49:41',2,'2006-02-15 21:30:53'),(315,'2005-05-26 23:12:55',2847,238,'2005-05-29 23:33:55',1,'2006-02-15 21:30:53'),(316,'2005-05-26 23:22:55',3828,249,'2005-05-29 23:25:55',2,'2006-02-15 21:30:53'),(317,'2005-05-26 23:23:56',26,391,'2005-06-01 19:56:56',2,'2006-02-15 21:30:53'),(318,'2005-05-26 23:37:39',2559,60,'2005-06-03 04:31:39',2,'2006-02-15 21:30:53'),(319,'2005-05-26 23:52:13',3024,77,'2005-05-30 18:55:13',1,'2006-02-15 21:30:53'),(320,'2005-05-27 00:09:24',1090,2,'2005-05-28 04:30:24',2,'2006-02-15 21:30:53'),(322,'2005-05-27 00:47:35',4556,496,'2005-06-02 00:32:35',1,'2006-02-15 21:30:53'),(323,'2005-05-27 00:49:27',2362,144,'2005-05-30 03:12:27',1,'2006-02-15 21:30:53'),(324,'2005-05-27 01:00:04',3364,292,'2005-05-30 04:27:04',1,'2006-02-15 21:30:53'),(325,'2005-05-27 01:09:55',2510,449,'2005-05-31 07:01:55',2,'2006-02-15 21:30:53'),(326,'2005-05-27 01:10:11',3979,432,'2005-06-04 20:25:11',2,'2006-02-15 21:30:53'),(327,'2005-05-27 01:18:57',2678,105,'2005-06-04 04:06:57',1,'2006-02-15 21:30:53'),(328,'2005-05-27 01:29:31',2524,451,'2005-06-01 02:27:31',1,'2006-02-15 21:30:53'),(329,'2005-05-27 01:57:14',2659,231,'2005-05-31 04:19:14',2,'2006-02-15 21:30:53'),(330,'2005-05-27 02:15:30',1536,248,'2005-06-04 05:09:30',2,'2006-02-15 21:30:53'),(331,'2005-05-27 02:22:26',1872,67,'2005-06-05 00:25:26',1,'2006-02-15 21:30:53'),(332,'2005-05-27 02:27:10',1529,299,'2005-06-03 01:26:10',2,'2006-02-15 21:30:53'),(333,'2005-05-27 02:52:21',4001,412,'2005-06-01 00:55:21',2,'2006-02-15 21:30:53'),(334,'2005-05-27 03:03:07',3973,194,'2005-05-29 03:54:07',1,'2006-02-15 21:30:53'),(335,'2005-05-27 03:07:10',1411,16,'2005-06-05 00:15:10',2,'2006-02-15 21:30:53'),(336,'2005-05-27 03:15:23',1811,275,'2005-05-29 22:43:23',1,'2006-02-15 21:30:53'),(337,'2005-05-27 03:22:30',751,19,'2005-06-02 03:27:30',1,'2006-02-15 21:30:53'),(338,'2005-05-27 03:42:52',2596,165,'2005-06-01 05:23:52',2,'2006-02-15 21:30:53'),(339,'2005-05-27 03:47:18',2410,516,'2005-06-04 05:46:18',2,'2006-02-15 21:30:53'),(340,'2005-05-27 03:55:25',946,209,'2005-06-04 07:57:25',2,'2006-02-15 21:30:53'),(341,'2005-05-27 04:01:42',4168,56,'2005-06-05 08:51:42',1,'2006-02-15 21:30:53'),(342,'2005-05-27 04:11:04',4019,539,'2005-05-29 01:28:04',2,'2006-02-15 21:30:53'),(343,'2005-05-27 04:13:41',3301,455,'2005-05-28 08:34:41',1,'2006-02-15 21:30:53'),(344,'2005-05-27 04:30:22',2327,236,'2005-05-29 10:13:22',2,'2006-02-15 21:30:53'),(345,'2005-05-27 04:32:25',1396,144,'2005-05-31 09:50:25',1,'2006-02-15 21:30:53'),(346,'2005-05-27 04:34:41',4319,14,'2005-06-05 04:24:41',2,'2006-02-15 21:30:53'),(347,'2005-05-27 04:40:33',1625,378,'2005-05-28 09:56:33',2,'2006-02-15 21:30:53'),(348,'2005-05-27 04:50:56',1825,473,'2005-06-01 04:43:56',1,'2006-02-15 21:30:53'),(349,'2005-05-27 04:53:11',2920,36,'2005-05-28 06:33:11',2,'2006-02-15 21:30:53'),(350,'2005-05-27 05:01:28',2756,9,'2005-06-04 05:01:28',2,'2006-02-15 21:30:53'),(351,'2005-05-27 05:39:03',3371,118,'2005-06-01 11:10:03',1,'2006-02-15 21:30:53'),(352,'2005-05-27 05:48:19',4369,157,'2005-05-29 09:05:19',1,'2006-02-15 21:30:53'),(353,'2005-05-27 06:03:39',3989,503,'2005-06-03 04:39:39',2,'2006-02-15 21:30:53'),(354,'2005-05-27 06:12:26',2058,452,'2005-06-01 06:48:26',1,'2006-02-15 21:30:53'),(355,'2005-05-27 06:15:33',141,446,'2005-06-01 02:50:33',2,'2006-02-15 21:30:53'),(356,'2005-05-27 06:32:30',2868,382,'2005-05-30 06:24:30',2,'2006-02-15 21:30:53'),(357,'2005-05-27 06:37:15',4417,198,'2005-05-30 07:04:15',2,'2006-02-15 21:30:53'),(358,'2005-05-27 06:43:59',1925,102,'2005-05-29 11:28:59',2,'2006-02-15 21:30:53'),(359,'2005-05-27 06:48:33',1156,152,'2005-05-29 03:55:33',1,'2006-02-15 21:30:53'),(360,'2005-05-27 06:51:14',3489,594,'2005-06-03 01:58:14',1,'2006-02-15 21:30:53'),(361,'2005-05-27 07:03:28',6,587,'2005-05-31 08:01:28',1,'2006-02-15 21:30:53'),(362,'2005-05-27 07:10:25',2324,147,'2005-06-01 08:34:25',1,'2006-02-15 21:30:53'),(363,'2005-05-27 07:14:00',4282,345,'2005-05-28 12:22:00',2,'2006-02-15 21:30:53'),(364,'2005-05-27 07:20:12',833,430,'2005-05-31 10:44:12',2,'2006-02-15 21:30:53'),(365,'2005-05-27 07:31:20',2887,167,'2005-06-04 04:46:20',1,'2006-02-15 21:30:53'),(366,'2005-05-27 07:33:54',360,134,'2005-06-04 01:55:54',2,'2006-02-15 21:30:53'),(367,'2005-05-27 07:37:02',3437,439,'2005-05-30 05:43:02',2,'2006-02-15 21:30:53'),(368,'2005-05-27 07:42:29',1247,361,'2005-06-04 11:20:29',2,'2006-02-15 21:30:53'),(369,'2005-05-27 07:46:49',944,508,'2005-06-01 06:20:49',2,'2006-02-15 21:30:53'),(370,'2005-05-27 07:49:43',3347,22,'2005-06-05 06:39:43',2,'2006-02-15 21:30:53'),(371,'2005-05-27 08:08:18',1235,295,'2005-06-05 03:05:18',2,'2006-02-15 21:30:53'),(372,'2005-05-27 08:13:58',4089,510,'2005-06-04 03:50:58',2,'2006-02-15 21:30:53'),(373,'2005-05-27 08:16:25',1649,464,'2005-06-01 11:41:25',1,'2006-02-15 21:30:53'),(374,'2005-05-27 08:26:30',4420,337,'2005-06-05 07:13:30',1,'2006-02-15 21:30:53'),(375,'2005-05-27 08:49:21',1815,306,'2005-06-04 14:11:21',1,'2006-02-15 21:30:53'),(376,'2005-05-27 08:58:15',3197,542,'2005-06-02 04:48:15',1,'2006-02-15 21:30:53'),(377,'2005-05-27 09:04:05',3012,170,'2005-06-02 03:36:05',2,'2006-02-15 21:30:53'),(378,'2005-05-27 09:23:22',2242,53,'2005-05-29 15:20:22',1,'2006-02-15 21:30:53'),(379,'2005-05-27 09:25:32',3462,584,'2005-06-02 06:19:32',1,'2006-02-15 21:30:53'),(380,'2005-05-27 09:34:39',1777,176,'2005-06-04 11:45:39',1,'2006-02-15 21:30:53'),(381,'2005-05-27 09:43:25',2748,371,'2005-05-31 12:00:25',1,'2006-02-15 21:30:53'),(382,'2005-05-27 10:12:00',4358,183,'2005-05-31 15:03:00',1,'2006-02-15 21:30:53'),(383,'2005-05-27 10:12:20',955,298,'2005-06-03 10:37:20',1,'2006-02-15 21:30:53'),(384,'2005-05-27 10:18:20',910,371,'2005-06-02 09:21:20',2,'2006-02-15 21:30:53'),(385,'2005-05-27 10:23:25',1565,213,'2005-05-30 15:27:25',2,'2006-02-15 21:30:53'),(386,'2005-05-27 10:26:31',1288,109,'2005-05-30 08:32:31',1,'2006-02-15 21:30:53'),(387,'2005-05-27 10:35:27',2684,506,'2005-06-01 13:37:27',2,'2006-02-15 21:30:53'),(388,'2005-05-27 10:37:27',434,28,'2005-05-30 05:45:27',1,'2006-02-15 21:30:53'),(389,'2005-05-27 10:45:41',691,500,'2005-06-05 06:22:41',2,'2006-02-15 21:30:53'),(390,'2005-05-27 11:02:26',3759,48,'2005-06-02 16:09:26',2,'2006-02-15 21:30:53'),(391,'2005-05-27 11:03:55',2193,197,'2005-06-01 11:59:55',2,'2006-02-15 21:30:53'),(392,'2005-05-27 11:14:42',263,359,'2005-06-01 14:28:42',2,'2006-02-15 21:30:53'),(393,'2005-05-27 11:18:25',145,251,'2005-05-28 07:10:25',2,'2006-02-15 21:30:53'),(394,'2005-05-27 11:26:11',1890,274,'2005-06-03 16:44:11',2,'2006-02-15 21:30:53'),(395,'2005-05-27 11:45:49',752,575,'2005-05-31 13:42:49',1,'2006-02-15 21:30:53'),(396,'2005-05-27 11:47:04',1020,112,'2005-05-29 10:14:04',1,'2006-02-15 21:30:53'),(397,'2005-05-27 12:29:02',4193,544,'2005-05-28 17:36:02',2,'2006-02-15 21:30:53'),(398,'2005-05-27 12:44:03',1686,422,'2005-06-02 08:19:03',1,'2006-02-15 21:30:53'),(399,'2005-05-27 12:48:38',553,204,'2005-05-29 15:27:38',1,'2006-02-15 21:30:53'),(400,'2005-05-27 12:51:44',258,249,'2005-05-31 08:34:44',2,'2006-02-15 21:30:53'),(401,'2005-05-27 12:57:55',2179,46,'2005-05-29 17:55:55',2,'2006-02-15 21:30:53'),(402,'2005-05-27 13:17:18',461,354,'2005-05-30 08:53:18',2,'2006-02-15 21:30:53'),(403,'2005-05-27 13:28:52',3983,424,'2005-05-29 11:47:52',2,'2006-02-15 21:30:53'),(404,'2005-05-27 13:31:51',1293,168,'2005-05-30 16:58:51',1,'2006-02-15 21:30:53'),(405,'2005-05-27 13:32:39',4090,272,'2005-06-05 18:53:39',2,'2006-02-15 21:30:53'),(406,'2005-05-27 13:46:46',2136,381,'2005-05-30 12:43:46',1,'2006-02-15 21:30:53'),(407,'2005-05-27 13:57:38',1077,44,'2005-05-31 18:23:38',1,'2006-02-15 21:30:53'),(408,'2005-05-27 13:57:39',1438,84,'2005-05-28 11:57:39',1,'2006-02-15 21:30:53'),(409,'2005-05-27 14:10:58',3652,220,'2005-06-02 10:40:58',2,'2006-02-15 21:30:53'),(410,'2005-05-27 14:11:22',4010,506,'2005-06-02 20:06:22',2,'2006-02-15 21:30:53'),(411,'2005-05-27 14:14:14',1434,388,'2005-06-03 17:39:14',1,'2006-02-15 21:30:53'),(412,'2005-05-27 14:17:23',1400,375,'2005-05-29 15:07:23',2,'2006-02-15 21:30:53'),(413,'2005-05-27 14:45:37',3516,307,'2005-06-03 11:11:37',1,'2006-02-15 21:30:53'),(414,'2005-05-27 14:48:20',1019,219,'2005-05-31 14:39:20',2,'2006-02-15 21:30:53'),(415,'2005-05-27 14:51:45',3698,304,'2005-05-28 19:07:45',2,'2006-02-15 21:30:53'),(416,'2005-05-27 15:02:10',2371,222,'2005-05-29 10:34:10',2,'2006-02-15 21:30:53'),(417,'2005-05-27 15:07:27',2253,475,'2005-05-29 20:01:27',2,'2006-02-15 21:30:53'),(418,'2005-05-27 15:13:17',3063,151,'2005-06-04 12:05:17',2,'2006-02-15 21:30:53'),(419,'2005-05-27 15:15:11',2514,77,'2005-06-02 11:53:11',1,'2006-02-15 21:30:53'),(420,'2005-05-27 15:19:38',619,93,'2005-06-03 15:07:38',2,'2006-02-15 21:30:53'),(421,'2005-05-27 15:30:13',2985,246,'2005-06-04 13:19:13',2,'2006-02-15 21:30:53'),(422,'2005-05-27 15:31:55',1152,150,'2005-06-01 11:47:55',2,'2006-02-15 21:30:53'),(423,'2005-05-27 15:32:57',1783,284,'2005-06-02 19:03:57',1,'2006-02-15 21:30:53'),(424,'2005-05-27 15:34:01',2815,35,'2005-06-05 09:44:01',1,'2006-02-15 21:30:53'),(425,'2005-05-27 15:51:30',1518,182,'2005-06-03 16:52:30',2,'2006-02-15 21:30:53'),(426,'2005-05-27 15:56:57',1103,522,'2005-06-05 11:45:57',1,'2006-02-15 21:30:53'),(427,'2005-05-27 16:10:04',1677,288,'2005-06-05 13:22:04',2,'2006-02-15 21:30:53'),(428,'2005-05-27 16:10:58',3349,161,'2005-05-31 17:24:58',2,'2006-02-15 21:30:53'),(429,'2005-05-27 16:21:26',129,498,'2005-06-05 20:23:26',2,'2006-02-15 21:30:53'),(430,'2005-05-27 16:22:10',1920,190,'2005-06-05 13:10:10',1,'2006-02-15 21:30:53'),(431,'2005-05-27 16:31:05',4507,334,'2005-06-05 11:29:05',1,'2006-02-15 21:30:53'),(432,'2005-05-27 16:40:29',1119,46,'2005-05-29 16:20:29',1,'2006-02-15 21:30:53'),(433,'2005-05-27 16:40:40',4364,574,'2005-05-30 19:55:40',2,'2006-02-15 21:30:53'),(434,'2005-05-27 16:54:27',3360,246,'2005-06-04 22:26:27',1,'2006-02-15 21:30:53'),(435,'2005-05-27 17:17:09',3328,3,'2005-06-02 11:20:09',2,'2006-02-15 21:30:53'),(436,'2005-05-27 17:21:04',4317,267,'2005-05-30 21:26:04',2,'2006-02-15 21:30:53'),(437,'2005-05-27 17:47:22',1800,525,'2005-06-05 14:22:22',2,'2006-02-15 21:30:53'),(438,'2005-05-27 17:52:34',4260,249,'2005-06-05 22:23:34',2,'2006-02-15 21:30:53'),(439,'2005-05-27 17:54:48',354,319,'2005-06-02 23:01:48',2,'2006-02-15 21:30:53'),(440,'2005-05-27 18:00:35',4452,314,'2005-05-29 16:15:35',1,'2006-02-15 21:30:53'),(441,'2005-05-27 18:11:05',1578,54,'2005-05-30 22:45:05',1,'2006-02-15 21:30:53'),(442,'2005-05-27 18:12:13',1457,403,'2005-05-30 12:30:13',2,'2006-02-15 21:30:53'),(443,'2005-05-27 18:35:20',2021,547,'2005-06-04 18:58:20',1,'2006-02-15 21:30:53'),(444,'2005-05-27 18:39:15',723,239,'2005-06-01 15:56:15',1,'2006-02-15 21:30:53'),(445,'2005-05-27 18:42:57',1757,293,'2005-05-30 22:35:57',2,'2006-02-15 21:30:53'),(446,'2005-05-27 18:48:41',1955,401,'2005-06-03 16:42:41',2,'2006-02-15 21:30:53'),(447,'2005-05-27 18:57:02',3890,133,'2005-06-05 18:38:02',1,'2006-02-15 21:30:53'),(448,'2005-05-27 19:03:08',2671,247,'2005-06-03 20:28:08',2,'2006-02-15 21:30:53'),(449,'2005-05-27 19:13:15',2469,172,'2005-06-04 01:08:15',2,'2006-02-15 21:30:53'),(450,'2005-05-27 19:18:54',1343,247,'2005-06-05 23:52:54',1,'2006-02-15 21:30:53'),(451,'2005-05-27 19:27:54',205,87,'2005-05-29 01:07:54',2,'2006-02-15 21:30:53'),(452,'2005-05-27 19:30:33',2993,127,'2005-05-30 20:53:33',2,'2006-02-15 21:30:53'),(453,'2005-05-27 19:31:16',4425,529,'2005-05-29 23:06:16',1,'2006-02-15 21:30:53'),(454,'2005-05-27 19:31:36',3499,575,'2005-05-30 15:46:36',1,'2006-02-15 21:30:53'),(455,'2005-05-27 19:43:29',3344,343,'2005-06-04 23:40:29',2,'2006-02-15 21:30:53'),(456,'2005-05-27 19:50:06',1699,92,'2005-06-02 22:14:06',1,'2006-02-15 21:30:53'),(457,'2005-05-27 19:52:29',2368,300,'2005-06-02 17:17:29',2,'2006-02-15 21:30:53'),(458,'2005-05-27 19:58:36',3350,565,'2005-06-06 00:51:36',1,'2006-02-15 21:30:53'),(459,'2005-05-27 20:00:04',597,468,'2005-05-29 22:47:04',1,'2006-02-15 21:30:53'),(460,'2005-05-27 20:02:03',4238,240,'2005-05-28 16:14:03',1,'2006-02-15 21:30:53'),(461,'2005-05-27 20:08:55',2077,447,'2005-06-01 14:32:55',1,'2006-02-15 21:30:53'),(462,'2005-05-27 20:10:36',2314,364,'2005-06-03 21:12:36',2,'2006-02-15 21:30:53'),(463,'2005-05-27 20:11:47',826,21,'2005-06-04 21:18:47',1,'2006-02-15 21:30:53'),(464,'2005-05-27 20:42:44',1313,193,'2005-05-30 00:49:44',2,'2006-02-15 21:30:53'),(465,'2005-05-27 20:44:36',20,261,'2005-06-02 02:43:36',1,'2006-02-15 21:30:53'),(466,'2005-05-27 20:57:07',1786,442,'2005-05-29 15:52:07',1,'2006-02-15 21:30:53'),(467,'2005-05-27 21:10:03',339,557,'2005-06-01 16:08:03',1,'2006-02-15 21:30:53'),(468,'2005-05-27 21:13:10',2656,101,'2005-06-04 15:26:10',2,'2006-02-15 21:30:53'),(469,'2005-05-27 21:14:26',4463,154,'2005-06-05 21:51:26',1,'2006-02-15 21:30:53'),(470,'2005-05-27 21:17:08',1613,504,'2005-06-04 17:47:08',1,'2006-02-15 21:30:53'),(471,'2005-05-27 21:32:42',2872,209,'2005-05-31 00:39:42',2,'2006-02-15 21:30:53'),(472,'2005-05-27 21:36:15',1338,528,'2005-05-29 21:07:15',1,'2006-02-15 21:30:53'),(473,'2005-05-27 21:36:34',802,105,'2005-06-05 17:02:34',1,'2006-02-15 21:30:53'),(474,'2005-05-27 22:11:56',1474,274,'2005-05-31 19:07:56',1,'2006-02-15 21:30:53'),(475,'2005-05-27 22:16:26',2520,159,'2005-05-28 19:58:26',1,'2006-02-15 21:30:53'),(476,'2005-05-27 22:31:36',2451,543,'2005-06-03 19:12:36',1,'2006-02-15 21:30:53'),(477,'2005-05-27 22:33:33',2437,161,'2005-06-02 18:35:33',2,'2006-02-15 21:30:53'),(478,'2005-05-27 22:38:20',424,557,'2005-05-31 18:39:20',2,'2006-02-15 21:30:53'),(479,'2005-05-27 22:39:10',2060,231,'2005-06-05 22:46:10',2,'2006-02-15 21:30:53'),(480,'2005-05-27 22:47:39',2108,220,'2005-06-04 21:17:39',2,'2006-02-15 21:30:53'),(481,'2005-05-27 22:49:27',72,445,'2005-05-30 17:46:27',2,'2006-02-15 21:30:53'),(482,'2005-05-27 22:53:02',4178,546,'2005-06-01 22:53:02',2,'2006-02-15 21:30:53'),(483,'2005-05-27 23:00:25',1510,32,'2005-05-28 21:30:25',1,'2006-02-15 21:30:53'),(484,'2005-05-27 23:26:45',3115,491,'2005-05-29 21:16:45',2,'2006-02-15 21:30:53'),(485,'2005-05-27 23:40:52',2392,105,'2005-05-28 22:40:52',2,'2006-02-15 21:30:53'),(486,'2005-05-27 23:51:12',1822,398,'2005-05-28 20:26:12',1,'2006-02-15 21:30:53'),(487,'2005-05-28 00:00:30',3774,569,'2005-05-28 19:18:30',2,'2006-02-15 21:30:53'),(488,'2005-05-28 00:07:50',393,168,'2005-06-03 22:30:50',2,'2006-02-15 21:30:53'),(489,'2005-05-28 00:09:12',1940,476,'2005-05-31 04:44:12',2,'2006-02-15 21:30:53'),(490,'2005-05-28 00:09:56',3524,95,'2005-05-30 22:32:56',2,'2006-02-15 21:30:53'),(491,'2005-05-28 00:13:35',1326,196,'2005-05-29 00:11:35',2,'2006-02-15 21:30:53'),(492,'2005-05-28 00:24:58',1999,228,'2005-05-28 22:34:58',1,'2006-02-15 21:30:53'),(493,'2005-05-28 00:34:11',184,501,'2005-05-30 18:40:11',1,'2006-02-15 21:30:53'),(494,'2005-05-28 00:39:31',1850,64,'2005-06-02 19:35:31',1,'2006-02-15 21:30:53'),(495,'2005-05-28 00:40:48',1007,526,'2005-05-29 06:07:48',1,'2006-02-15 21:30:53'),(496,'2005-05-28 00:43:41',1785,56,'2005-06-04 03:56:41',1,'2006-02-15 21:30:53'),(497,'2005-05-28 00:54:39',2636,20,'2005-06-03 20:47:39',2,'2006-02-15 21:30:53'),(498,'2005-05-28 01:01:21',458,287,'2005-05-30 21:20:21',2,'2006-02-15 21:30:53'),(499,'2005-05-28 01:05:07',2381,199,'2005-06-05 19:54:07',2,'2006-02-15 21:30:53'),(500,'2005-05-28 01:05:25',4500,145,'2005-05-31 20:04:25',1,'2006-02-15 21:30:53'),(501,'2005-05-28 01:09:36',601,162,'2005-05-30 06:14:36',2,'2006-02-15 21:30:53'),(502,'2005-05-28 01:34:43',3131,179,'2005-05-31 01:02:43',2,'2006-02-15 21:30:53'),(503,'2005-05-28 01:35:25',3005,288,'2005-05-28 22:12:25',2,'2006-02-15 21:30:53'),(504,'2005-05-28 02:05:34',2086,170,'2005-05-30 23:03:34',1,'2006-02-15 21:30:53'),(505,'2005-05-28 02:06:37',71,111,'2005-05-29 06:57:37',1,'2006-02-15 21:30:53'),(506,'2005-05-28 02:09:19',667,469,'2005-06-05 20:34:19',1,'2006-02-15 21:30:53'),(507,'2005-05-28 02:31:19',3621,421,'2005-06-02 05:07:19',2,'2006-02-15 21:30:53'),(508,'2005-05-28 02:40:50',4179,434,'2005-06-05 03:05:50',1,'2006-02-15 21:30:53'),(509,'2005-05-28 02:51:12',3416,147,'2005-05-31 06:27:12',1,'2006-02-15 21:30:53'),(510,'2005-05-28 02:52:14',4338,113,'2005-05-30 21:20:14',2,'2006-02-15 21:30:53'),(511,'2005-05-28 03:04:04',3827,296,'2005-06-03 04:58:04',1,'2006-02-15 21:30:53'),(512,'2005-05-28 03:07:50',2176,231,'2005-06-05 02:12:50',2,'2006-02-15 21:30:53'),(513,'2005-05-28 03:08:10',225,489,'2005-05-29 07:22:10',1,'2006-02-15 21:30:53'),(514,'2005-05-28 03:09:28',1697,597,'2005-06-05 00:49:28',2,'2006-02-15 21:30:53'),(515,'2005-05-28 03:10:10',3369,110,'2005-06-04 02:18:10',2,'2006-02-15 21:30:53'),(516,'2005-05-28 03:11:47',4357,400,'2005-06-04 02:19:47',1,'2006-02-15 21:30:53'),(517,'2005-05-28 03:17:57',234,403,'2005-05-29 06:33:57',1,'2006-02-15 21:30:53'),(518,'2005-05-28 03:18:02',4087,480,'2005-05-30 05:32:02',1,'2006-02-15 21:30:53'),(519,'2005-05-28 03:22:33',3564,245,'2005-06-03 05:06:33',1,'2006-02-15 21:30:53'),(520,'2005-05-28 03:27:37',3845,161,'2005-06-04 05:47:37',1,'2006-02-15 21:30:53'),(521,'2005-05-28 03:32:22',2397,374,'2005-05-28 22:37:22',1,'2006-02-15 21:30:53'),(522,'2005-05-28 03:33:20',3195,382,'2005-05-31 04:23:20',1,'2006-02-15 21:30:53'),(523,'2005-05-28 03:53:26',1905,138,'2005-05-31 05:58:26',2,'2006-02-15 21:30:53'),(524,'2005-05-28 03:57:28',1962,223,'2005-05-31 05:20:28',1,'2006-02-15 21:30:53'),(525,'2005-05-28 04:25:33',1817,14,'2005-06-06 04:18:33',1,'2006-02-15 21:30:53'),(526,'2005-05-28 04:27:37',1387,408,'2005-05-30 07:52:37',1,'2006-02-15 21:30:53'),(527,'2005-05-28 04:28:38',266,169,'2005-06-02 08:19:38',1,'2006-02-15 21:30:53'),(528,'2005-05-28 04:30:05',1655,359,'2005-06-03 10:01:05',2,'2006-02-15 21:30:53'),(529,'2005-05-28 04:34:17',2624,469,'2005-05-30 00:35:17',1,'2006-02-15 21:30:53'),(530,'2005-05-28 05:13:01',3332,312,'2005-06-01 10:21:01',2,'2006-02-15 21:30:53'),(531,'2005-05-28 05:23:38',1113,589,'2005-05-29 08:00:38',2,'2006-02-15 21:30:53'),(532,'2005-05-28 05:36:58',2793,120,'2005-06-02 01:50:58',1,'2006-02-15 21:30:53'),(533,'2005-05-28 06:14:46',4306,528,'2005-06-01 06:26:46',2,'2006-02-15 21:30:53'),(534,'2005-05-28 06:15:25',992,184,'2005-06-06 07:51:25',1,'2006-02-15 21:30:53'),(535,'2005-05-28 06:16:32',4209,307,'2005-05-31 02:48:32',1,'2006-02-15 21:30:53'),(536,'2005-05-28 06:17:33',2962,514,'2005-06-03 10:02:33',2,'2006-02-15 21:30:53'),(537,'2005-05-28 06:20:55',3095,315,'2005-06-05 11:48:55',2,'2006-02-15 21:30:53'),(538,'2005-05-28 06:21:05',2262,110,'2005-06-02 01:22:05',2,'2006-02-15 21:30:53'),(539,'2005-05-28 06:26:16',3427,161,'2005-05-30 02:02:16',1,'2006-02-15 21:30:53'),(540,'2005-05-28 06:40:25',3321,119,'2005-06-06 00:47:25',1,'2006-02-15 21:30:53'),(541,'2005-05-28 06:41:58',1662,535,'2005-06-02 09:12:58',2,'2006-02-15 21:30:53'),(542,'2005-05-28 06:42:13',4444,261,'2005-06-03 09:05:13',1,'2006-02-15 21:30:53'),(543,'2005-05-28 06:43:34',530,493,'2005-06-06 07:16:34',2,'2006-02-15 21:30:53'),(544,'2005-05-28 07:03:00',2964,311,'2005-06-06 06:23:00',1,'2006-02-15 21:30:53'),(545,'2005-05-28 07:10:20',1086,54,'2005-06-04 01:47:20',2,'2006-02-15 21:30:53'),(546,'2005-05-28 07:16:25',487,20,'2005-06-01 08:36:25',1,'2006-02-15 21:30:53'),(547,'2005-05-28 07:24:28',2065,506,'2005-06-06 01:31:28',2,'2006-02-15 21:30:53'),(548,'2005-05-28 07:34:56',3704,450,'2005-06-05 03:14:56',2,'2006-02-15 21:30:53'),(549,'2005-05-28 07:35:37',1818,159,'2005-06-02 09:08:37',1,'2006-02-15 21:30:53'),(550,'2005-05-28 07:39:16',3632,432,'2005-06-06 12:20:16',2,'2006-02-15 21:30:53'),(551,'2005-05-28 07:44:18',3119,315,'2005-06-02 12:55:18',2,'2006-02-15 21:30:53'),(552,'2005-05-28 07:53:38',23,106,'2005-06-04 12:45:38',2,'2006-02-15 21:30:53'),(553,'2005-05-28 08:14:44',1349,176,'2005-06-02 03:01:44',2,'2006-02-15 21:30:53'),(554,'2005-05-28 08:23:16',1951,376,'2005-05-31 03:29:16',2,'2006-02-15 21:30:53'),(555,'2005-05-28 08:31:14',4397,55,'2005-05-30 07:34:14',2,'2006-02-15 21:30:53'),(556,'2005-05-28 08:31:36',1814,22,'2005-06-06 07:29:36',2,'2006-02-15 21:30:53'),(557,'2005-05-28 08:36:22',158,444,'2005-06-03 10:42:22',2,'2006-02-15 21:30:53'),(558,'2005-05-28 08:38:43',4163,442,'2005-06-06 13:52:43',1,'2006-02-15 21:30:53'),(559,'2005-05-28 08:39:02',1227,572,'2005-06-05 08:38:02',2,'2006-02-15 21:30:53'),(560,'2005-05-28 08:53:02',644,463,'2005-06-04 12:27:02',2,'2006-02-15 21:30:53'),(561,'2005-05-28 08:54:06',928,77,'2005-06-05 05:54:06',1,'2006-02-15 21:30:53'),(562,'2005-05-28 09:01:21',3390,102,'2005-06-02 05:26:21',2,'2006-02-15 21:30:53'),(563,'2005-05-28 09:10:49',53,324,'2005-06-06 11:32:49',1,'2006-02-15 21:30:53'),(564,'2005-05-28 09:12:09',2973,282,'2005-05-29 05:07:09',1,'2006-02-15 21:30:53'),(565,'2005-05-28 09:26:31',1494,288,'2005-06-01 07:28:31',1,'2006-02-15 21:30:53'),(566,'2005-05-28 09:51:39',4330,253,'2005-06-05 09:35:39',1,'2006-02-15 21:30:53'),(567,'2005-05-28 09:56:20',3308,184,'2005-06-01 06:41:20',2,'2006-02-15 21:30:53'),(568,'2005-05-28 09:57:36',2232,155,'2005-05-31 15:44:36',1,'2006-02-15 21:30:53'),(569,'2005-05-28 10:12:41',4534,56,'2005-06-03 10:08:41',2,'2006-02-15 21:30:53'),(570,'2005-05-28 10:15:04',1122,21,'2005-05-30 08:32:04',1,'2006-02-15 21:30:53'),(571,'2005-05-28 10:17:41',4250,516,'2005-06-05 07:56:41',1,'2006-02-15 21:30:53'),(572,'2005-05-28 10:30:13',1899,337,'2005-06-02 05:04:13',2,'2006-02-15 21:30:53'),(573,'2005-05-28 10:35:23',4020,1,'2005-06-03 06:32:23',1,'2006-02-15 21:30:53'),(574,'2005-05-28 10:44:28',3883,76,'2005-06-04 11:42:28',1,'2006-02-15 21:30:53'),(575,'2005-05-28 10:56:09',4451,142,'2005-06-05 15:39:09',1,'2006-02-15 21:30:53'),(576,'2005-05-28 10:56:10',1866,588,'2005-06-04 13:15:10',2,'2006-02-15 21:30:53'),(577,'2005-05-28 11:09:14',375,6,'2005-06-01 13:27:14',2,'2006-02-15 21:30:53'),(578,'2005-05-28 11:15:48',2938,173,'2005-06-02 09:59:48',1,'2006-02-15 21:30:53'),(579,'2005-05-28 11:19:23',3481,181,'2005-06-02 13:51:23',1,'2006-02-15 21:30:53'),(580,'2005-05-28 11:19:53',3515,17,'2005-06-01 10:44:53',2,'2006-02-15 21:30:53'),(581,'2005-05-28 11:20:29',1380,186,'2005-06-04 12:37:29',2,'2006-02-15 21:30:53'),(582,'2005-05-28 11:33:46',4579,198,'2005-05-29 08:33:46',1,'2006-02-15 21:30:53'),(583,'2005-05-28 11:48:55',2679,386,'2005-06-04 07:09:55',2,'2006-02-15 21:30:53'),(584,'2005-05-28 11:49:00',1833,69,'2005-06-01 11:54:00',1,'2006-02-15 21:30:53'),(585,'2005-05-28 11:50:45',3544,490,'2005-06-03 15:35:45',2,'2006-02-15 21:30:53'),(586,'2005-05-28 12:03:00',898,77,'2005-05-29 13:16:00',1,'2006-02-15 21:30:53'),(587,'2005-05-28 12:05:33',1413,64,'2005-05-30 13:45:33',2,'2006-02-15 21:30:53'),(588,'2005-05-28 12:08:37',95,89,'2005-05-29 16:25:37',2,'2006-02-15 21:30:53'),(589,'2005-05-28 12:27:50',4231,308,'2005-06-03 07:15:50',2,'2006-02-15 21:30:53'),(590,'2005-05-28 13:06:50',473,462,'2005-06-02 09:18:50',1,'2006-02-15 21:30:53'),(591,'2005-05-28 13:11:04',377,19,'2005-05-29 17:20:04',2,'2006-02-15 21:30:53'),(592,'2005-05-28 13:21:08',638,244,'2005-05-29 16:55:08',1,'2006-02-15 21:30:53'),(593,'2005-05-28 13:33:23',1810,16,'2005-05-30 17:10:23',2,'2006-02-15 21:30:53'),(594,'2005-05-28 13:41:56',2766,538,'2005-05-30 12:00:56',1,'2006-02-15 21:30:53'),(595,'2005-05-28 13:59:54',595,294,'2005-06-05 15:16:54',1,'2006-02-15 21:30:53'),(596,'2005-05-28 14:00:03',821,589,'2005-05-29 17:10:03',1,'2006-02-15 21:30:53'),(597,'2005-05-28 14:01:02',4469,249,'2005-06-06 19:06:02',2,'2006-02-15 21:30:53'),(598,'2005-05-28 14:04:50',599,159,'2005-06-03 18:00:50',2,'2006-02-15 21:30:53'),(599,'2005-05-28 14:05:57',4136,393,'2005-06-01 16:41:57',2,'2006-02-15 21:30:53'),(600,'2005-05-28 14:08:19',1567,332,'2005-06-03 11:57:19',2,'2006-02-15 21:30:53'),(601,'2005-05-28 14:08:22',3225,429,'2005-06-04 10:50:22',1,'2006-02-15 21:30:53'),(602,'2005-05-28 14:15:54',1300,590,'2005-06-05 15:16:54',2,'2006-02-15 21:30:53'),(603,'2005-05-28 14:27:51',3248,537,'2005-05-29 13:13:51',1,'2006-02-15 21:30:53'),(604,'2005-05-28 14:37:07',1585,426,'2005-06-03 11:03:07',2,'2006-02-15 21:30:53'),(605,'2005-05-28 14:39:10',4232,501,'2005-06-01 09:28:10',2,'2006-02-15 21:30:53'),(606,'2005-05-28 14:48:39',3509,299,'2005-06-04 09:44:39',2,'2006-02-15 21:30:53'),(607,'2005-05-28 15:02:41',2561,554,'2005-05-30 12:54:41',2,'2006-02-15 21:30:53'),(608,'2005-05-28 15:03:44',4254,494,'2005-06-04 17:14:44',2,'2006-02-15 21:30:53'),(609,'2005-05-28 15:04:02',2944,150,'2005-06-05 14:47:02',2,'2006-02-15 21:30:53'),(610,'2005-05-28 15:15:25',3642,500,'2005-06-02 12:30:25',2,'2006-02-15 21:30:53'),(611,'2005-05-28 15:18:18',1230,580,'2005-05-31 20:15:18',2,'2006-02-15 21:30:53'),(612,'2005-05-28 15:24:54',2180,161,'2005-05-30 14:22:54',2,'2006-02-15 21:30:53'),(613,'2005-05-28 15:27:22',270,595,'2005-06-02 20:01:22',1,'2006-02-15 21:30:53'),(614,'2005-05-28 15:33:28',280,307,'2005-06-04 12:27:28',2,'2006-02-15 21:30:53'),(615,'2005-05-28 15:35:52',3397,533,'2005-06-03 17:35:52',2,'2006-02-15 21:30:53'),(616,'2005-05-28 15:45:39',989,471,'2005-06-02 09:55:39',1,'2006-02-15 21:30:53'),(617,'2005-05-28 15:49:14',4142,372,'2005-05-31 14:29:14',2,'2006-02-15 21:30:53'),(618,'2005-05-28 15:50:07',4445,248,'2005-06-01 19:45:07',1,'2006-02-15 21:30:53'),(619,'2005-05-28 15:52:26',2482,407,'2005-06-06 17:55:26',2,'2006-02-15 21:30:53'),(620,'2005-05-28 15:54:45',2444,321,'2005-06-04 20:26:45',1,'2006-02-15 21:30:53'),(621,'2005-05-28 15:58:12',1144,239,'2005-05-30 21:54:12',1,'2006-02-15 21:30:53'),(622,'2005-05-28 15:58:22',2363,109,'2005-06-04 10:13:22',1,'2006-02-15 21:30:53'),(623,'2005-05-28 16:01:28',1222,495,'2005-05-30 11:19:28',1,'2006-02-15 21:30:53'),(624,'2005-05-28 16:13:22',3660,569,'2005-06-06 20:35:22',1,'2006-02-15 21:30:53'),(625,'2005-05-28 16:35:46',2889,596,'2005-06-01 14:19:46',1,'2006-02-15 21:30:53'),(626,'2005-05-28 16:58:09',452,584,'2005-06-01 14:02:09',2,'2006-02-15 21:30:53'),(627,'2005-05-28 17:04:43',425,241,'2005-06-04 19:58:43',2,'2006-02-15 21:30:53'),(628,'2005-05-28 17:05:46',2513,173,'2005-06-06 16:29:46',2,'2006-02-15 21:30:53'),(629,'2005-05-28 17:19:15',1527,94,'2005-06-02 20:01:15',2,'2006-02-15 21:30:53'),(630,'2005-05-28 17:24:51',1254,417,'2005-06-05 20:05:51',2,'2006-02-15 21:30:53'),(631,'2005-05-28 17:36:32',2465,503,'2005-06-03 14:56:32',2,'2006-02-15 21:30:53'),(632,'2005-05-28 17:37:50',1287,442,'2005-06-03 16:04:50',1,'2006-02-15 21:30:53'),(633,'2005-05-28 17:37:59',58,360,'2005-06-03 22:49:59',2,'2006-02-15 21:30:53'),(634,'2005-05-28 17:40:35',2630,428,'2005-06-05 16:18:35',2,'2006-02-15 21:30:53'),(635,'2005-05-28 17:46:57',1648,42,'2005-06-06 18:24:57',1,'2006-02-15 21:30:53'),(636,'2005-05-28 17:47:58',4213,239,'2005-06-04 16:32:58',1,'2006-02-15 21:30:53'),(637,'2005-05-28 18:14:29',1581,250,'2005-05-29 23:48:29',2,'2006-02-15 21:30:53'),(638,'2005-05-28 18:24:43',2685,372,'2005-06-02 19:03:43',2,'2006-02-15 21:30:53'),(639,'2005-05-28 18:25:02',4204,198,'2005-05-29 18:22:02',1,'2006-02-15 21:30:53'),(640,'2005-05-28 18:43:26',495,465,'2005-05-30 13:39:26',1,'2006-02-15 21:30:53'),(641,'2005-05-28 18:45:47',3548,396,'2005-06-04 15:24:47',1,'2006-02-15 21:30:53'),(642,'2005-05-28 18:49:12',140,157,'2005-06-01 20:50:12',2,'2006-02-15 21:30:53'),(643,'2005-05-28 18:52:11',3105,240,'2005-05-31 15:15:11',2,'2006-02-15 21:30:53'),(644,'2005-05-28 18:59:12',4304,316,'2005-06-04 18:06:12',1,'2006-02-15 21:30:53'),(645,'2005-05-28 19:14:09',3128,505,'2005-06-05 14:01:09',1,'2006-02-15 21:30:53'),(646,'2005-05-28 19:16:14',1922,185,'2005-05-31 16:50:14',2,'2006-02-15 21:30:53'),(647,'2005-05-28 19:22:52',3435,569,'2005-06-01 00:10:52',1,'2006-02-15 21:30:53'),(648,'2005-05-28 19:25:54',3476,253,'2005-06-03 15:57:54',2,'2006-02-15 21:30:53'),(649,'2005-05-28 19:35:45',1781,197,'2005-06-05 16:00:45',1,'2006-02-15 21:30:53'),(650,'2005-05-28 19:45:40',4384,281,'2005-05-29 21:02:40',1,'2006-02-15 21:30:53'),(651,'2005-05-28 19:46:50',739,266,'2005-05-30 16:29:50',1,'2006-02-15 21:30:53'),(652,'2005-05-28 20:08:47',1201,43,'2005-05-29 14:57:47',2,'2006-02-15 21:30:53'),(653,'2005-05-28 20:12:20',126,327,'2005-06-04 14:44:20',2,'2006-02-15 21:30:53'),(654,'2005-05-28 20:15:30',2312,23,'2005-05-30 22:02:30',2,'2006-02-15 21:30:53'),(655,'2005-05-28 20:16:20',331,287,'2005-05-31 16:46:20',2,'2006-02-15 21:30:53'),(656,'2005-05-28 20:18:24',2846,437,'2005-05-30 16:19:24',1,'2006-02-15 21:30:53'),(657,'2005-05-28 20:23:09',848,65,'2005-06-01 02:11:09',1,'2006-02-15 21:30:53'),(658,'2005-05-28 20:23:23',3226,103,'2005-06-06 19:31:23',2,'2006-02-15 21:30:53'),(659,'2005-05-28 20:27:53',1382,207,'2005-05-31 01:36:53',2,'2006-02-15 21:30:53'),(660,'2005-05-28 20:53:31',1414,578,'2005-05-30 15:26:31',1,'2006-02-15 21:30:53'),(661,'2005-05-28 21:01:25',2247,51,'2005-06-02 01:22:25',2,'2006-02-15 21:30:53'),(662,'2005-05-28 21:09:31',2968,166,'2005-06-01 19:00:31',2,'2006-02-15 21:30:53'),(663,'2005-05-28 21:23:02',3997,176,'2005-06-02 17:39:02',2,'2006-02-15 21:30:53'),(664,'2005-05-28 21:31:08',87,523,'2005-06-02 20:56:08',2,'2006-02-15 21:30:53'),(665,'2005-05-28 21:38:39',1012,415,'2005-05-29 21:37:39',1,'2006-02-15 21:30:53'),(666,'2005-05-28 21:48:51',3075,437,'2005-06-05 16:45:51',2,'2006-02-15 21:30:53'),(667,'2005-05-28 21:49:02',797,596,'2005-05-31 03:07:02',1,'2006-02-15 21:30:53'),(668,'2005-05-28 21:54:45',3528,484,'2005-05-29 22:32:45',1,'2006-02-15 21:30:53'),(669,'2005-05-28 22:03:25',3677,313,'2005-06-03 03:39:25',1,'2006-02-15 21:30:53'),(670,'2005-05-28 22:04:03',227,201,'2005-06-06 22:43:03',2,'2006-02-15 21:30:53'),(671,'2005-05-28 22:04:30',1027,14,'2005-06-03 01:21:30',2,'2006-02-15 21:30:53'),(672,'2005-05-28 22:05:29',697,306,'2005-06-06 02:10:29',2,'2006-02-15 21:30:53'),(673,'2005-05-28 22:07:30',1769,468,'2005-06-01 23:42:30',1,'2006-02-15 21:30:53'),(674,'2005-05-28 22:11:35',1150,87,'2005-06-01 23:58:35',2,'2006-02-15 21:30:53'),(675,'2005-05-28 22:22:44',1273,338,'2005-06-01 02:57:44',2,'2006-02-15 21:30:53'),(676,'2005-05-28 22:27:51',2329,490,'2005-05-29 20:36:51',2,'2006-02-15 21:30:53'),(677,'2005-05-28 23:00:08',4558,194,'2005-06-05 19:11:08',2,'2006-02-15 21:30:53'),(678,'2005-05-28 23:15:48',3741,269,'2005-06-03 04:43:48',2,'2006-02-15 21:30:53'),(679,'2005-05-28 23:24:57',907,526,'2005-06-06 21:59:57',2,'2006-02-15 21:30:53'),(680,'2005-05-28 23:27:26',4147,482,'2005-06-02 02:28:26',2,'2006-02-15 21:30:53'),(681,'2005-05-28 23:39:44',3346,531,'2005-06-01 01:42:44',1,'2006-02-15 21:30:53'),(682,'2005-05-28 23:53:18',3160,148,'2005-05-29 19:14:18',2,'2006-02-15 21:30:53'),(683,'2005-05-29 00:09:48',2038,197,'2005-06-02 04:27:48',1,'2006-02-15 21:30:53'),(684,'2005-05-29 00:13:15',3242,461,'2005-06-04 21:26:15',2,'2006-02-15 21:30:53'),(685,'2005-05-29 00:17:51',1385,172,'2005-06-05 05:32:51',2,'2006-02-15 21:30:53'),(686,'2005-05-29 00:27:10',2441,411,'2005-05-30 02:29:10',1,'2006-02-15 21:30:53'),(687,'2005-05-29 00:32:09',1731,250,'2005-05-31 23:53:09',1,'2006-02-15 21:30:53'),(688,'2005-05-29 00:45:24',4135,162,'2005-06-02 01:30:24',1,'2006-02-15 21:30:53'),(689,'2005-05-29 00:46:53',742,571,'2005-06-03 23:48:53',2,'2006-02-15 21:30:53'),(690,'2005-05-29 00:54:53',2646,85,'2005-06-06 00:45:53',1,'2006-02-15 21:30:53'),(691,'2005-05-29 01:01:26',4034,433,'2005-06-07 06:21:26',1,'2006-02-15 21:30:53'),(692,'2005-05-29 01:32:10',800,18,'2005-06-02 03:54:10',2,'2006-02-15 21:30:53'),(693,'2005-05-29 01:42:31',635,190,'2005-06-03 02:29:31',2,'2006-02-15 21:30:53'),(694,'2005-05-29 01:49:43',592,399,'2005-06-05 06:52:43',1,'2006-02-15 21:30:53'),(695,'2005-05-29 01:50:53',4276,528,'2005-06-03 02:28:53',1,'2006-02-15 21:30:53'),(696,'2005-05-29 01:59:10',2076,19,'2005-06-01 02:45:10',1,'2006-02-15 21:30:53'),(697,'2005-05-29 02:04:04',3949,387,'2005-06-04 00:47:04',2,'2006-02-15 21:30:53'),(698,'2005-05-29 02:10:52',1412,109,'2005-06-01 21:52:52',1,'2006-02-15 21:30:53'),(699,'2005-05-29 02:11:44',130,246,'2005-06-04 20:23:44',2,'2006-02-15 21:30:53'),(700,'2005-05-29 02:18:54',500,117,'2005-05-30 05:54:54',1,'2006-02-15 21:30:53'),(701,'2005-05-29 02:26:27',372,112,'2005-06-03 04:59:27',1,'2006-02-15 21:30:53'),(702,'2005-05-29 02:27:30',2556,475,'2005-05-30 01:52:30',2,'2006-02-15 21:30:53'),(703,'2005-05-29 02:29:36',1123,269,'2005-06-03 04:54:36',2,'2006-02-15 21:30:53'),(704,'2005-05-29 02:44:43',2628,330,'2005-06-06 01:51:43',2,'2006-02-15 21:30:53'),(705,'2005-05-29 02:48:52',2809,257,'2005-05-30 06:21:52',1,'2006-02-15 21:30:53'),(706,'2005-05-29 03:05:49',2278,60,'2005-06-04 22:48:49',1,'2006-02-15 21:30:53'),(707,'2005-05-29 03:18:19',819,252,'2005-05-30 02:45:19',1,'2006-02-15 21:30:53'),(708,'2005-05-29 03:23:47',3133,127,'2005-05-31 21:27:47',2,'2006-02-15 21:30:53'),(709,'2005-05-29 03:48:01',2459,479,'2005-06-06 05:21:01',1,'2006-02-15 21:30:53'),(710,'2005-05-29 03:48:36',194,518,'2005-06-03 05:03:36',1,'2006-02-15 21:30:53'),(711,'2005-05-29 03:49:03',4581,215,'2005-05-31 08:29:03',2,'2006-02-15 21:30:53'),(712,'2005-05-29 04:02:24',4191,313,'2005-05-30 03:09:24',2,'2006-02-15 21:30:53'),(713,'2005-05-29 04:10:17',3664,507,'2005-06-07 07:13:17',1,'2006-02-15 21:30:53'),(714,'2005-05-29 04:15:21',2010,452,'2005-06-01 23:05:21',2,'2006-02-15 21:30:53'),(715,'2005-05-29 04:22:41',2030,545,'2005-06-05 09:28:41',1,'2006-02-15 21:30:53'),(716,'2005-05-29 04:35:29',85,36,'2005-06-01 07:42:29',2,'2006-02-15 21:30:53'),(717,'2005-05-29 04:37:44',1383,412,'2005-05-30 05:48:44',2,'2006-02-15 21:30:53'),(718,'2005-05-29 04:52:23',1736,498,'2005-06-02 02:27:23',1,'2006-02-15 21:30:53'),(719,'2005-05-29 05:16:05',267,245,'2005-06-01 07:53:05',2,'2006-02-15 21:30:53'),(720,'2005-05-29 05:17:30',3687,480,'2005-06-06 02:47:30',2,'2006-02-15 21:30:53'),(721,'2005-05-29 05:28:47',1116,44,'2005-05-31 11:24:47',1,'2006-02-15 21:30:53'),(722,'2005-05-29 05:30:31',4540,259,'2005-06-06 04:51:31',1,'2006-02-15 21:30:53'),(723,'2005-05-29 05:34:44',3407,309,'2005-05-30 05:50:44',1,'2006-02-15 21:30:53'),(724,'2005-05-29 05:53:23',3770,416,'2005-06-05 04:01:23',2,'2006-02-15 21:30:53'),(725,'2005-05-29 06:03:41',4088,245,'2005-06-03 08:52:41',2,'2006-02-15 21:30:53'),(726,'2005-05-29 06:05:29',933,452,'2005-06-05 04:40:29',2,'2006-02-15 21:30:53'),(727,'2005-05-29 06:08:15',1629,484,'2005-05-30 07:16:15',1,'2006-02-15 21:30:53'),(728,'2005-05-29 06:12:38',242,551,'2005-06-03 07:41:38',1,'2006-02-15 21:30:53'),(729,'2005-05-29 06:35:13',1688,323,'2005-06-04 03:23:13',2,'2006-02-15 21:30:53'),(730,'2005-05-29 07:00:59',3473,197,'2005-06-06 01:17:59',1,'2006-02-15 21:30:53'),(731,'2005-05-29 07:25:16',4124,5,'2005-05-30 05:21:16',1,'2006-02-15 21:30:53'),(732,'2005-05-29 07:32:51',2530,447,'2005-05-30 10:08:51',2,'2006-02-15 21:30:53'),(733,'2005-05-29 07:35:21',2951,363,'2005-06-05 09:14:21',1,'2006-02-15 21:30:53'),(734,'2005-05-29 07:38:52',3084,538,'2005-06-03 10:17:52',2,'2006-02-15 21:30:53'),(735,'2005-05-29 08:08:13',3421,454,'2005-06-07 13:35:13',1,'2006-02-15 21:30:53'),(736,'2005-05-29 08:10:07',3689,276,'2005-06-05 10:21:07',2,'2006-02-15 21:30:53'),(737,'2005-05-29 08:11:31',769,589,'2005-06-04 11:18:31',2,'2006-02-15 21:30:53'),(738,'2005-05-29 08:20:08',2284,256,'2005-06-06 08:59:08',2,'2006-02-15 21:30:53'),(739,'2005-05-29 08:28:18',1183,84,'2005-06-06 09:21:18',2,'2006-02-15 21:30:53'),(740,'2005-05-29 08:30:36',600,89,'2005-06-04 12:47:36',2,'2006-02-15 21:30:53'),(741,'2005-05-29 08:35:49',3189,495,'2005-06-04 11:55:49',1,'2006-02-15 21:30:53'),(742,'2005-05-29 08:36:30',273,483,'2005-06-05 11:30:30',1,'2006-02-15 21:30:53'),(743,'2005-05-29 08:39:02',2528,548,'2005-06-06 08:42:02',2,'2006-02-15 21:30:53'),(744,'2005-05-29 09:13:08',3722,420,'2005-06-01 07:05:08',2,'2006-02-15 21:30:53'),(745,'2005-05-29 09:22:57',581,152,'2005-06-01 09:10:57',1,'2006-02-15 21:30:53'),(746,'2005-05-29 09:25:10',4272,130,'2005-06-02 04:20:10',2,'2006-02-15 21:30:53'),(747,'2005-05-29 09:26:34',1993,291,'2005-06-05 07:28:34',1,'2006-02-15 21:30:53'),(748,'2005-05-29 09:27:00',2803,7,'2005-06-03 04:25:00',1,'2006-02-15 21:30:53'),(749,'2005-05-29 09:33:33',1146,375,'2005-05-31 11:45:33',2,'2006-02-15 21:30:53'),(750,'2005-05-29 09:41:40',730,269,'2005-05-30 13:31:40',1,'2006-02-15 21:30:53'),(751,'2005-05-29 09:55:43',2711,53,'2005-06-02 04:54:43',1,'2006-02-15 21:30:53'),(752,'2005-05-29 10:14:15',1720,126,'2005-06-04 06:30:15',1,'2006-02-15 21:30:53'),(753,'2005-05-29 10:16:42',1021,135,'2005-06-05 08:52:42',2,'2006-02-15 21:30:53'),(754,'2005-05-29 10:18:59',734,281,'2005-06-04 05:03:59',2,'2006-02-15 21:30:53'),(755,'2005-05-29 10:26:29',3090,576,'2005-06-01 10:25:29',2,'2006-02-15 21:30:53'),(756,'2005-05-29 10:28:45',3152,201,'2005-06-04 12:50:45',1,'2006-02-15 21:30:53'),(757,'2005-05-29 10:29:47',1067,435,'2005-06-07 15:27:47',1,'2006-02-15 21:30:53'),(758,'2005-05-29 10:31:56',1191,563,'2005-06-01 14:53:56',2,'2006-02-15 21:30:53'),(759,'2005-05-29 10:57:57',2367,179,'2005-06-07 16:23:57',2,'2006-02-15 21:30:53'),(760,'2005-05-29 11:07:25',3250,77,'2005-06-02 14:16:25',1,'2006-02-15 21:30:53'),(761,'2005-05-29 11:09:01',2342,58,'2005-06-03 16:18:01',2,'2006-02-15 21:30:53'),(762,'2005-05-29 11:15:51',3683,146,'2005-06-06 07:48:51',1,'2006-02-15 21:30:53'),(763,'2005-05-29 11:32:15',2022,50,'2005-05-31 17:31:15',1,'2006-02-15 21:30:53'),(764,'2005-05-29 11:37:35',1069,149,'2005-05-31 16:47:35',1,'2006-02-15 21:30:53'),(765,'2005-05-29 11:38:34',515,69,'2005-06-02 17:04:34',1,'2006-02-15 21:30:53'),(766,'2005-05-29 11:47:02',2154,383,'2005-06-06 07:14:02',1,'2006-02-15 21:30:53'),(767,'2005-05-29 12:20:19',687,67,'2005-06-02 14:15:19',2,'2006-02-15 21:30:53'),(768,'2005-05-29 12:30:46',2895,566,'2005-06-07 09:00:46',2,'2006-02-15 21:30:53'),(769,'2005-05-29 12:51:44',1523,575,'2005-06-01 17:43:44',1,'2006-02-15 21:30:53'),(770,'2005-05-29 12:56:50',2491,405,'2005-06-07 15:54:50',2,'2006-02-15 21:30:53'),(771,'2005-05-29 12:59:14',353,476,'2005-06-01 16:05:14',2,'2006-02-15 21:30:53'),(772,'2005-05-29 13:08:06',3319,556,'2005-06-06 08:19:06',1,'2006-02-15 21:30:53'),(773,'2005-05-29 13:18:05',245,563,'2005-06-07 17:22:05',1,'2006-02-15 21:30:53'),(774,'2005-05-29 13:19:43',1188,575,'2005-06-01 18:51:43',1,'2006-02-15 21:30:53'),(775,'2005-05-29 13:23:26',1197,124,'2005-05-30 07:53:26',2,'2006-02-15 21:30:53'),(776,'2005-05-29 13:35:35',4339,113,'2005-06-03 17:33:35',1,'2006-02-15 21:30:53'),(777,'2005-05-29 14:07:58',451,360,'2005-06-03 08:41:58',2,'2006-02-15 21:30:53'),(778,'2005-05-29 14:09:53',1816,535,'2005-06-05 20:05:53',1,'2006-02-15 21:30:53'),(779,'2005-05-29 14:17:17',533,105,'2005-06-06 16:46:17',1,'2006-02-15 21:30:53'),(780,'2005-05-29 14:18:32',1919,300,'2005-06-06 20:14:32',1,'2006-02-15 21:30:53'),(781,'2005-05-29 14:23:58',88,313,'2005-05-30 17:44:58',1,'2006-02-15 21:30:53'),(782,'2005-05-29 14:38:57',2255,596,'2005-06-02 13:18:57',2,'2006-02-15 21:30:53'),(783,'2005-05-29 14:41:18',3046,53,'2005-06-06 10:39:18',2,'2006-02-15 21:30:53'),(784,'2005-05-29 14:44:22',2936,352,'2005-06-01 17:28:22',2,'2006-02-15 21:30:53'),(785,'2005-05-29 15:08:41',39,72,'2005-05-30 15:51:41',1,'2006-02-15 21:30:53'),(786,'2005-05-29 15:17:28',2637,439,'2005-06-07 10:07:28',2,'2006-02-15 21:30:53'),(787,'2005-05-29 16:03:03',3919,27,'2005-06-07 11:07:03',2,'2006-02-15 21:30:53'),(788,'2005-05-29 16:13:55',763,562,'2005-05-31 16:40:55',1,'2006-02-15 21:30:53'),(789,'2005-05-29 16:17:07',708,553,'2005-06-06 18:15:07',1,'2006-02-15 21:30:53'),(790,'2005-05-29 16:19:29',2858,593,'2005-06-02 17:22:29',2,'2006-02-15 21:30:53'),(791,'2005-05-29 16:30:42',1554,284,'2005-06-01 19:11:42',1,'2006-02-15 21:30:53'),(792,'2005-05-29 16:32:10',2841,261,'2005-05-31 18:01:10',1,'2006-02-15 21:30:53'),(793,'2005-05-29 16:44:08',379,528,'2005-06-06 19:21:08',2,'2006-02-15 21:30:53'),(794,'2005-05-29 16:44:11',1995,50,'2005-06-05 16:11:11',1,'2006-02-15 21:30:53'),(795,'2005-05-29 16:57:39',609,551,'2005-06-01 11:33:39',2,'2006-02-15 21:30:53'),(796,'2005-05-29 16:59:44',2697,26,'2005-06-03 16:22:44',2,'2006-02-15 21:30:53'),(797,'2005-05-29 17:12:17',1446,244,'2005-06-03 16:06:17',1,'2006-02-15 21:30:53'),(798,'2005-05-29 17:23:43',1102,134,'2005-06-01 13:06:43',2,'2006-02-15 21:30:53'),(799,'2005-05-29 17:24:48',1713,429,'2005-06-05 12:25:48',1,'2006-02-15 21:30:53'),(800,'2005-05-29 17:28:12',441,472,'2005-05-30 14:59:12',1,'2006-02-15 21:30:53'),(801,'2005-05-29 17:35:50',1642,402,'2005-06-04 17:05:50',2,'2006-02-15 21:30:53'),(802,'2005-05-29 17:38:59',785,350,'2005-05-31 22:42:59',2,'2006-02-15 21:30:53'),(803,'2005-05-29 17:52:30',1602,32,'2005-05-30 14:35:30',2,'2006-02-15 21:30:53'),(804,'2005-05-29 18:10:24',3909,171,'2005-06-06 22:53:24',1,'2006-02-15 21:30:53'),(805,'2005-05-29 18:18:18',3132,232,'2005-06-07 15:11:18',2,'2006-02-15 21:30:53'),(806,'2005-05-29 18:31:30',2386,435,'2005-05-31 00:18:30',2,'2006-02-15 21:30:53'),(807,'2005-05-29 18:50:50',2195,235,'2005-06-03 18:36:50',2,'2006-02-15 21:30:53'),(808,'2005-05-29 19:08:20',1928,104,'2005-06-06 20:32:20',2,'2006-02-15 21:30:53'),(809,'2005-05-29 19:10:20',2114,222,'2005-06-05 19:05:20',2,'2006-02-15 21:30:53'),(810,'2005-05-29 19:12:04',2533,346,'2005-06-04 21:12:04',2,'2006-02-15 21:30:53'),(811,'2005-05-29 19:30:42',4419,401,'2005-06-02 16:19:42',2,'2006-02-15 21:30:53'),(812,'2005-05-29 20:00:30',1099,225,'2005-05-30 19:43:30',2,'2006-02-15 21:30:53'),(813,'2005-05-29 20:14:34',4554,344,'2005-06-05 20:56:34',1,'2006-02-15 21:30:53'),(814,'2005-05-29 20:16:12',1572,134,'2005-06-07 17:47:12',1,'2006-02-15 21:30:53'),(815,'2005-05-29 20:24:28',3757,14,'2005-06-03 15:32:28',1,'2006-02-15 21:30:53'),(816,'2005-05-29 20:26:39',630,474,'2005-06-06 22:31:39',2,'2006-02-15 21:30:53'),(817,'2005-05-29 20:39:14',186,554,'2005-05-31 18:24:14',1,'2006-02-15 21:30:53'),(818,'2005-05-29 20:47:53',4106,321,'2005-06-02 23:18:53',2,'2006-02-15 21:30:53'),(819,'2005-05-29 21:00:32',623,511,'2005-06-02 15:15:32',2,'2006-02-15 21:30:53'),(820,'2005-05-29 21:07:22',2584,22,'2005-06-07 00:22:22',2,'2006-02-15 21:30:53'),(821,'2005-05-29 21:31:12',3380,348,'2005-06-04 22:49:12',1,'2006-02-15 21:30:53'),(822,'2005-05-29 21:36:00',2634,480,'2005-06-07 17:24:00',1,'2006-02-15 21:30:53'),(823,'2005-05-29 21:39:37',3249,441,'2005-05-30 22:06:37',1,'2006-02-15 21:30:53'),(824,'2005-05-29 21:45:32',3518,357,'2005-05-31 19:01:32',1,'2006-02-15 21:30:53'),(825,'2005-05-29 21:49:41',712,371,'2005-06-04 20:27:41',2,'2006-02-15 21:30:53'),(826,'2005-05-29 21:56:15',2263,207,'2005-06-08 03:18:15',1,'2006-02-15 21:30:53'),(827,'2005-05-29 21:58:43',62,573,'2005-06-06 00:54:43',1,'2006-02-15 21:30:53'),(828,'2005-05-29 22:14:55',2468,217,'2005-05-30 17:22:55',1,'2006-02-15 21:30:53'),(829,'2005-05-29 22:16:42',1684,371,'2005-06-06 01:38:42',1,'2006-02-15 21:30:53'),(830,'2005-05-29 22:43:55',3464,3,'2005-06-01 17:43:55',1,'2006-02-15 21:30:53'),(831,'2005-05-29 22:50:25',3912,509,'2005-06-06 02:27:25',1,'2006-02-15 21:30:53'),(832,'2005-05-29 22:51:20',1381,159,'2005-06-07 17:37:20',2,'2006-02-15 21:30:53'),(833,'2005-05-29 23:21:56',2898,417,'2005-06-02 18:40:56',1,'2006-02-15 21:30:53'),(834,'2005-05-29 23:24:30',3628,84,'2005-05-30 22:00:30',2,'2006-02-15 21:30:53'),(835,'2005-05-29 23:37:00',299,381,'2005-06-02 23:38:00',1,'2006-02-15 21:30:53'),(836,'2005-05-29 23:56:42',3140,368,'2005-05-31 04:11:42',2,'2006-02-15 21:30:53'),(837,'2005-05-30 00:02:08',977,172,'2005-06-02 05:31:08',2,'2006-02-15 21:30:53'),(838,'2005-05-30 00:27:57',2859,504,'2005-06-06 22:19:57',2,'2006-02-15 21:30:53'),(839,'2005-05-30 00:28:12',1886,337,'2005-06-08 02:43:12',1,'2006-02-15 21:30:53'),(840,'2005-05-30 00:28:41',4049,79,'2005-05-31 20:39:41',2,'2006-02-15 21:30:53'),(841,'2005-05-30 00:31:17',4318,387,'2005-06-02 19:14:17',1,'2006-02-15 21:30:53'),(842,'2005-05-30 00:32:04',2328,238,'2005-06-01 02:21:04',1,'2006-02-15 21:30:53'),(843,'2005-05-30 00:44:24',2214,313,'2005-05-31 00:58:24',2,'2006-02-15 21:30:53'),(844,'2005-05-30 00:58:20',536,429,'2005-06-01 00:38:20',1,'2006-02-15 21:30:53'),(845,'2005-05-30 01:17:25',2001,72,'2005-06-07 02:00:25',1,'2006-02-15 21:30:53'),(846,'2005-05-30 01:17:45',938,49,'2005-06-01 00:56:45',2,'2006-02-15 21:30:53'),(847,'2005-05-30 01:18:15',4387,380,'2005-06-06 20:20:15',2,'2006-02-15 21:30:53'),(848,'2005-05-30 01:19:53',1363,436,'2005-06-05 23:40:53',1,'2006-02-15 21:30:53'),(849,'2005-05-30 01:23:07',2424,449,'2005-06-07 01:50:07',1,'2006-02-15 21:30:53'),(850,'2005-05-30 01:35:12',2390,517,'2005-05-31 01:51:12',1,'2006-02-15 21:30:53'),(851,'2005-05-30 01:35:15',2780,530,'2005-06-06 07:27:15',1,'2006-02-15 21:30:53'),(852,'2005-05-30 01:36:57',1622,549,'2005-06-01 22:44:57',1,'2006-02-15 21:30:53'),(853,'2005-05-30 01:43:31',3693,122,'2005-06-01 02:05:31',1,'2006-02-15 21:30:53'),(854,'2005-05-30 01:56:11',921,369,'2005-06-01 06:34:11',2,'2006-02-15 21:30:53'),(855,'2005-05-30 02:00:28',2527,406,'2005-06-03 20:16:28',2,'2006-02-15 21:30:53'),(856,'2005-05-30 02:01:21',3969,53,'2005-06-07 03:25:21',1,'2006-02-15 21:30:53'),(857,'2005-05-30 02:01:23',2569,204,'2005-06-02 06:07:23',2,'2006-02-15 21:30:53'),(858,'2005-05-30 02:10:32',1258,358,'2005-06-01 04:42:32',1,'2006-02-15 21:30:53'),(859,'2005-05-30 02:36:20',3032,79,'2005-06-02 07:49:20',2,'2006-02-15 21:30:53'),(860,'2005-05-30 02:45:16',578,276,'2005-06-08 07:28:16',1,'2006-02-15 21:30:53'),(861,'2005-05-30 02:48:32',3711,502,'2005-06-06 05:43:32',1,'2006-02-15 21:30:53'),(862,'2005-05-30 03:09:11',1186,328,'2005-06-03 21:27:11',1,'2006-02-15 21:30:53'),(863,'2005-05-30 03:14:59',3999,379,'2005-06-05 04:34:59',2,'2006-02-15 21:30:53'),(864,'2005-05-30 03:27:17',2777,544,'2005-06-06 08:28:17',1,'2006-02-15 21:30:53'),(865,'2005-05-30 03:39:44',3183,154,'2005-06-07 08:10:44',2,'2006-02-15 21:30:53'),(866,'2005-05-30 03:43:54',2867,8,'2005-06-08 04:28:54',1,'2006-02-15 21:30:53'),(867,'2005-05-30 03:54:43',3389,99,'2005-06-01 22:59:43',1,'2006-02-15 21:30:53'),(868,'2005-05-30 04:19:55',3604,28,'2005-05-31 02:28:55',1,'2006-02-15 21:30:53'),(869,'2005-05-30 04:22:06',3399,296,'2005-06-03 09:18:06',2,'2006-02-15 21:30:53'),(870,'2005-05-30 04:25:47',2903,391,'2005-06-06 04:32:47',1,'2006-02-15 21:30:53'),(871,'2005-05-30 05:01:30',4573,303,'2005-06-04 06:22:30',2,'2006-02-15 21:30:53'),(872,'2005-05-30 05:03:04',3904,548,'2005-06-06 10:35:04',1,'2006-02-15 21:30:53'),(873,'2005-05-30 05:15:20',4568,375,'2005-06-07 00:49:20',2,'2006-02-15 21:30:53'),(874,'2005-05-30 05:36:21',363,52,'2005-06-01 09:32:21',1,'2006-02-15 21:30:53'),(875,'2005-05-30 05:38:24',1428,326,'2005-06-06 00:34:24',2,'2006-02-15 21:30:53'),(876,'2005-05-30 05:41:22',1471,339,'2005-06-07 09:06:22',2,'2006-02-15 21:30:53'),(877,'2005-05-30 05:48:59',886,9,'2005-06-02 09:30:59',1,'2006-02-15 21:30:53'),(878,'2005-05-30 05:49:13',4265,323,'2005-06-07 04:35:13',1,'2006-02-15 21:30:53'),(879,'2005-05-30 05:49:42',4021,482,'2005-06-05 01:45:42',2,'2006-02-15 21:30:53'),(880,'2005-05-30 06:12:33',1819,460,'2005-06-02 04:35:33',2,'2006-02-15 21:30:53'),(881,'2005-05-30 06:15:36',602,242,'2005-06-02 10:21:36',1,'2006-02-15 21:30:53'),(882,'2005-05-30 06:16:06',3841,477,'2005-06-02 11:57:06',1,'2006-02-15 21:30:53'),(883,'2005-05-30 06:21:05',2271,399,'2005-06-07 04:50:05',2,'2006-02-15 21:30:53'),(884,'2005-05-30 06:41:32',4079,17,'2005-05-31 07:39:32',1,'2006-02-15 21:30:53'),(885,'2005-05-30 06:54:28',646,62,'2005-06-03 07:03:28',2,'2006-02-15 21:30:53'),(886,'2005-05-30 06:54:51',4356,393,'2005-06-01 06:04:51',2,'2006-02-15 21:30:53'),(887,'2005-05-30 07:10:00',2727,16,'2005-06-01 06:48:00',2,'2006-02-15 21:30:53'),(888,'2005-05-30 07:13:14',387,128,'2005-06-06 09:50:14',1,'2006-02-15 21:30:53'),(889,'2005-05-30 07:14:53',1299,114,'2005-05-31 07:56:53',2,'2006-02-15 21:30:53'),(890,'2005-05-30 07:43:04',1464,349,'2005-06-01 11:26:04',1,'2006-02-15 21:30:53'),(891,'2005-05-30 07:43:12',2611,391,'2005-06-08 09:21:12',1,'2006-02-15 21:30:53'),(892,'2005-05-30 08:02:56',471,274,'2005-06-05 12:51:56',1,'2006-02-15 21:30:53'),(893,'2005-05-30 08:06:59',3260,502,'2005-06-07 08:23:59',2,'2006-02-15 21:30:53'),(894,'2005-05-30 08:31:31',1118,400,'2005-06-07 12:39:31',1,'2006-02-15 21:30:53'),(895,'2005-05-30 08:50:43',2744,192,'2005-06-05 10:58:43',1,'2006-02-15 21:30:53'),(896,'2005-05-30 09:03:52',2817,207,'2005-06-05 07:37:52',2,'2006-02-15 21:30:53'),(897,'2005-05-30 09:10:01',1334,432,'2005-06-08 03:43:01',1,'2006-02-15 21:30:53'),(898,'2005-05-30 09:26:19',3497,384,'2005-06-01 10:45:19',2,'2006-02-15 21:30:53'),(899,'2005-05-30 09:29:30',1096,156,'2005-06-06 12:39:30',2,'2006-02-15 21:30:53'),(900,'2005-05-30 09:38:41',3543,586,'2005-06-07 11:54:41',1,'2006-02-15 21:30:53'),(901,'2005-05-30 09:40:40',760,259,'2005-06-02 10:32:40',1,'2006-02-15 21:30:53'),(902,'2005-05-30 09:53:36',1514,561,'2005-06-07 12:10:36',1,'2006-02-15 21:30:53'),(903,'2005-05-30 10:11:29',2423,197,'2005-06-03 09:33:29',1,'2006-02-15 21:30:53'),(904,'2005-05-30 10:19:42',2466,44,'2005-06-05 04:58:42',2,'2006-02-15 21:30:53'),(905,'2005-05-30 10:25:00',4372,50,'2005-06-06 06:23:00',1,'2006-02-15 21:30:53'),(906,'2005-05-30 10:30:38',1862,549,'2005-06-07 06:44:38',2,'2006-02-15 21:30:53'),(907,'2005-05-30 10:37:27',3320,506,'2005-06-02 09:51:27',1,'2006-02-15 21:30:53'),(908,'2005-05-30 10:38:37',4427,85,'2005-06-03 09:56:37',1,'2006-02-15 21:30:53'),(909,'2005-05-30 10:43:38',3775,486,'2005-06-08 12:07:38',1,'2006-02-15 21:30:53'),(910,'2005-05-30 10:46:16',2601,374,'2005-06-04 13:32:16',1,'2006-02-15 21:30:53'),(911,'2005-05-30 10:50:22',1404,366,'2005-06-07 12:26:22',2,'2006-02-15 21:30:53'),(912,'2005-05-30 10:58:33',3200,390,'2005-05-31 09:31:33',2,'2006-02-15 21:30:53'),(913,'2005-05-30 11:04:58',3213,369,'2005-06-07 13:22:58',2,'2006-02-15 21:30:53'),(914,'2005-05-30 11:06:00',1393,596,'2005-06-04 06:07:00',2,'2006-02-15 21:30:53'),(915,'2005-05-30 11:20:27',1859,115,'2005-06-02 11:55:27',1,'2006-02-15 21:30:53'),(916,'2005-05-30 11:25:01',1290,6,'2005-05-31 09:06:01',1,'2006-02-15 21:30:53'),(917,'2005-05-30 11:27:06',3629,385,'2005-06-02 08:31:06',1,'2006-02-15 21:30:53'),(918,'2005-05-30 11:32:24',818,197,'2005-05-31 07:55:24',2,'2006-02-15 21:30:53'),(919,'2005-05-30 11:35:06',4052,374,'2005-06-02 13:16:06',2,'2006-02-15 21:30:53'),(920,'2005-05-30 11:44:01',3860,584,'2005-06-02 08:19:01',2,'2006-02-15 21:30:53'),(921,'2005-05-30 11:53:09',1827,508,'2005-06-03 10:00:09',2,'2006-02-15 21:30:53'),(922,'2005-05-30 11:55:55',2442,550,'2005-06-08 10:12:55',2,'2006-02-15 21:30:53'),(923,'2005-05-30 11:58:50',1884,37,'2005-06-05 09:57:50',1,'2006-02-15 21:30:53'),(924,'2005-05-30 12:10:59',3279,293,'2005-06-04 17:28:59',1,'2006-02-15 21:30:53'),(925,'2005-05-30 12:13:52',3203,137,'2005-06-02 14:41:52',2,'2006-02-15 21:30:53'),(926,'2005-05-30 12:15:54',4327,76,'2005-06-01 08:53:54',2,'2006-02-15 21:30:53'),(927,'2005-05-30 12:16:40',1158,167,'2005-05-31 16:20:40',2,'2006-02-15 21:30:53'),(928,'2005-05-30 12:27:14',246,79,'2005-06-05 13:56:14',2,'2006-02-15 21:30:53'),(929,'2005-05-30 12:32:39',4296,536,'2005-06-06 12:17:39',1,'2006-02-15 21:30:53'),(930,'2005-05-30 12:44:57',2835,141,'2005-06-04 10:53:57',2,'2006-02-15 21:30:53'),(931,'2005-05-30 12:53:01',3384,421,'2005-05-31 14:28:01',1,'2006-02-15 21:30:53'),(932,'2005-05-30 12:55:36',719,198,'2005-05-31 10:30:36',2,'2006-02-15 21:30:53'),(933,'2005-05-30 13:08:45',3672,66,'2005-06-01 18:56:45',1,'2006-02-15 21:30:53'),(934,'2005-05-30 13:24:46',3595,60,'2005-06-08 16:44:46',2,'2006-02-15 21:30:53'),(935,'2005-05-30 13:29:36',2421,256,'2005-06-02 11:08:36',1,'2006-02-15 21:30:53'),(936,'2005-05-30 13:52:49',901,469,'2005-06-07 16:56:49',1,'2006-02-15 21:30:53'),(937,'2005-05-30 14:47:31',1054,304,'2005-06-05 09:53:31',2,'2006-02-15 21:30:53'),(938,'2005-05-30 14:47:31',1521,46,'2005-06-04 10:10:31',2,'2006-02-15 21:30:53'),(939,'2005-05-30 14:49:34',1314,367,'2005-06-01 19:00:34',1,'2006-02-15 21:30:53'),(940,'2005-05-30 15:01:02',1278,534,'2005-06-01 18:26:02',1,'2006-02-15 21:30:53'),(941,'2005-05-30 15:02:25',3630,562,'2005-06-01 17:19:25',1,'2006-02-15 21:30:53'),(942,'2005-05-30 15:05:47',4279,473,'2005-06-08 15:59:47',2,'2006-02-15 21:30:53'),(943,'2005-05-30 15:20:19',3737,57,'2005-06-06 18:53:19',1,'2006-02-15 21:30:53'),(944,'2005-05-30 15:26:24',151,131,'2005-06-07 18:09:24',2,'2006-02-15 21:30:53'),(945,'2005-05-30 15:33:17',1441,357,'2005-06-02 15:02:17',2,'2006-02-15 21:30:53'),(946,'2005-05-30 15:35:08',1264,486,'2005-06-08 11:38:08',1,'2006-02-15 21:30:53'),(947,'2005-05-30 15:36:57',4478,62,'2005-06-04 18:48:57',1,'2006-02-15 21:30:53'),(948,'2005-05-30 15:44:27',585,245,'2005-06-08 17:30:27',2,'2006-02-15 21:30:53'),(949,'2005-05-30 15:50:39',2202,368,'2005-06-03 14:25:39',1,'2006-02-15 21:30:53'),(950,'2005-05-30 16:06:08',491,83,'2005-06-01 11:43:08',1,'2006-02-15 21:30:53'),(951,'2005-05-30 16:10:35',1395,59,'2005-05-31 19:01:35',2,'2006-02-15 21:30:53'),(952,'2005-05-30 16:28:07',4389,311,'2005-06-02 16:12:07',2,'2006-02-15 21:30:53'),(953,'2005-05-30 16:34:02',2194,210,'2005-05-31 20:34:02',1,'2006-02-15 21:30:53'),(954,'2005-05-30 16:57:29',1231,297,'2005-06-08 13:30:29',2,'2006-02-15 21:30:53'),(955,'2005-05-30 16:59:03',4140,301,'2005-05-31 11:58:03',2,'2006-02-15 21:30:53'),(956,'2005-05-30 17:30:28',647,296,'2005-06-07 13:54:28',2,'2006-02-15 21:30:53'),(957,'2005-05-30 17:53:29',4428,440,'2005-06-03 15:31:29',2,'2006-02-15 21:30:53'),(958,'2005-05-30 17:58:03',548,186,'2005-06-01 19:17:03',2,'2006-02-15 21:30:53'),(959,'2005-05-30 18:07:00',3108,535,'2005-06-02 14:37:00',2,'2006-02-15 21:30:53'),(960,'2005-05-30 18:13:23',1966,445,'2005-06-04 00:12:23',2,'2006-02-15 21:30:53'),(961,'2005-05-30 18:16:44',3293,588,'2005-06-04 23:40:44',2,'2006-02-15 21:30:53'),(962,'2005-05-30 18:45:17',4535,520,'2005-06-05 22:47:17',1,'2006-02-15 21:30:53'),(963,'2005-05-30 18:52:53',1921,225,'2005-06-07 16:19:53',2,'2006-02-15 21:30:53'),(964,'2005-05-30 18:53:21',657,287,'2005-06-04 22:32:21',2,'2006-02-15 21:30:53'),(965,'2005-05-30 19:00:14',3363,502,'2005-05-31 17:10:14',2,'2006-02-15 21:30:53'),(966,'2005-05-30 19:00:37',1294,496,'2005-05-31 23:51:37',1,'2006-02-15 21:30:53'),(967,'2005-05-30 19:12:06',1954,330,'2005-06-09 00:02:06',2,'2006-02-15 21:30:53'),(968,'2005-05-30 19:20:03',119,576,'2005-05-31 18:17:03',2,'2006-02-15 21:30:53'),(969,'2005-05-30 19:23:48',443,551,'2005-05-31 21:14:48',1,'2006-02-15 21:30:53'),(970,'2005-05-30 19:50:28',1520,307,'2005-06-09 01:19:28',1,'2006-02-15 21:30:53'),(971,'2005-05-30 20:10:52',2911,561,'2005-06-06 20:47:52',1,'2006-02-15 21:30:53'),(972,'2005-05-30 20:21:07',2,411,'2005-06-06 00:36:07',1,'2006-02-15 21:30:53'),(973,'2005-05-30 20:27:45',1914,473,'2005-06-08 22:47:45',2,'2006-02-15 21:30:53'),(974,'2005-05-30 20:28:42',2617,596,'2005-06-08 23:45:42',2,'2006-02-15 21:30:53'),(975,'2005-05-30 21:07:15',3109,7,'2005-06-03 01:48:15',2,'2006-02-15 21:30:53'),(976,'2005-05-30 21:11:19',2290,581,'2005-06-06 02:16:19',2,'2006-02-15 21:30:53'),(977,'2005-05-30 21:22:26',2029,394,'2005-06-04 22:32:26',2,'2006-02-15 21:30:53'),(978,'2005-05-30 21:30:52',407,154,'2005-06-07 16:22:52',1,'2006-02-15 21:30:53'),(979,'2005-05-30 21:37:11',3917,279,'2005-06-08 00:24:11',2,'2006-02-15 21:30:53'),(980,'2005-05-30 21:45:19',4169,273,'2005-06-01 20:32:19',1,'2006-02-15 21:30:53'),(981,'2005-05-30 21:52:42',2913,326,'2005-06-01 03:15:42',2,'2006-02-15 21:30:53'),(982,'2005-05-30 22:15:24',3560,524,'2005-06-02 16:18:24',1,'2006-02-15 21:30:53'),(983,'2005-05-30 22:15:51',63,115,'2005-06-02 22:56:51',1,'2006-02-15 21:30:53'),(984,'2005-05-30 22:17:17',2305,262,'2005-06-01 20:15:17',2,'2006-02-15 21:30:53'),(985,'2005-05-30 22:18:35',1573,564,'2005-06-04 23:36:35',1,'2006-02-15 21:30:53'),(986,'2005-05-30 22:22:52',4045,253,'2005-06-01 02:24:52',1,'2006-02-15 21:30:53'),(987,'2005-05-30 22:59:12',390,11,'2005-06-07 20:56:12',1,'2006-02-15 21:30:53'),(988,'2005-05-30 23:08:03',1364,12,'2005-06-07 00:22:03',1,'2006-02-15 21:30:53'),(989,'2005-05-30 23:11:51',4388,83,'2005-06-03 20:36:51',2,'2006-02-15 21:30:53'),(990,'2005-05-30 23:25:14',4171,311,'2005-06-06 18:41:14',2,'2006-02-15 21:30:53'),(991,'2005-05-30 23:29:22',2863,593,'2005-06-07 23:16:22',1,'2006-02-15 21:30:53'),(992,'2005-05-30 23:47:56',3572,123,'2005-06-05 19:01:56',1,'2006-02-15 21:30:53'),(993,'2005-05-30 23:54:19',2080,513,'2005-06-04 21:27:19',1,'2006-02-15 21:30:53'),(994,'2005-05-30 23:55:36',2798,472,'2005-06-04 01:00:36',2,'2006-02-15 21:30:53'),(995,'2005-05-31 00:06:02',17,150,'2005-06-06 02:30:02',2,'2006-02-15 21:30:53'),(996,'2005-05-31 00:06:20',2075,331,'2005-05-31 21:29:20',2,'2006-02-15 21:30:53'),(997,'2005-05-31 00:08:25',4243,216,'2005-06-02 00:17:25',2,'2006-02-15 21:30:53'),(998,'2005-05-31 00:16:57',3395,389,'2005-06-01 22:41:57',1,'2006-02-15 21:30:53'),(999,'2005-05-31 00:25:10',4433,413,'2005-06-03 06:05:10',2,'2006-02-15 21:30:53'),(1000,'2005-05-31 00:25:56',1774,332,'2005-06-08 19:42:56',2,'2006-02-15 21:30:53'),(1001,'2005-05-31 00:46:31',1498,64,'2005-06-06 06:14:31',2,'2006-02-15 21:30:53'),(1002,'2005-05-31 00:47:56',709,397,'2005-06-06 19:51:56',1,'2006-02-15 21:30:53'),(1003,'2005-05-31 00:48:20',133,161,'2005-06-02 04:53:20',2,'2006-02-15 21:30:53'),(1004,'2005-05-31 00:48:36',1588,565,'2005-06-01 20:56:36',1,'2006-02-15 21:30:53'),(1005,'2005-05-31 00:53:25',4006,551,'2005-06-04 01:21:25',2,'2006-02-15 21:30:53'),(1006,'2005-05-31 00:57:08',3461,222,'2005-06-02 22:35:08',1,'2006-02-15 21:30:53'),(1007,'2005-05-31 01:02:28',3185,24,'2005-06-07 01:36:28',2,'2006-02-15 21:30:53'),(1008,'2005-05-31 01:18:56',914,599,'2005-06-01 01:24:56',2,'2006-02-15 21:30:53'),(1009,'2005-05-31 01:47:35',2523,485,'2005-06-03 20:26:35',1,'2006-02-15 21:30:53'),(1010,'2005-05-31 01:57:32',4038,49,'2005-06-01 06:50:32',2,'2006-02-15 21:30:53'),(1011,'2005-05-31 02:05:39',118,164,'2005-06-04 21:27:39',2,'2006-02-15 21:30:53'),(1012,'2005-05-31 02:18:05',688,291,'2005-06-03 06:47:05',1,'2006-02-15 21:30:53'),(1013,'2005-05-31 02:37:00',4522,384,'2005-06-02 06:39:00',2,'2006-02-15 21:30:53'),(1014,'2005-05-31 02:39:16',766,280,'2005-06-01 06:03:16',2,'2006-02-15 21:30:53'),(1015,'2005-05-31 02:44:57',3702,526,'2005-06-07 23:01:57',2,'2006-02-15 21:30:53'),(1016,'2005-05-31 02:49:43',3423,204,'2005-06-04 03:48:43',1,'2006-02-15 21:30:53'),(1017,'2005-05-31 02:53:36',1242,16,'2005-06-03 05:04:36',1,'2006-02-15 21:30:53'),(1018,'2005-05-31 02:53:42',1930,594,'2005-06-03 00:47:42',2,'2006-02-15 21:30:53'),(1019,'2005-05-31 03:05:07',3975,279,'2005-06-03 08:34:07',1,'2006-02-15 21:30:53'),(1020,'2005-05-31 03:06:08',3402,138,'2005-06-02 08:57:08',2,'2006-02-15 21:30:53'),(1021,'2005-05-31 03:16:15',2724,541,'2005-06-08 06:43:15',2,'2006-02-15 21:30:53'),(1022,'2005-05-31 03:16:45',842,239,'2005-06-08 09:04:45',1,'2006-02-15 21:30:53'),(1023,'2005-05-31 03:26:50',2483,227,'2005-06-05 08:19:50',2,'2006-02-15 21:30:53'),(1024,'2005-05-31 03:30:19',2310,457,'2005-06-09 05:52:19',2,'2006-02-15 21:30:53'),(1025,'2005-05-31 03:41:37',1618,93,'2005-06-08 07:05:37',2,'2006-02-15 21:30:53'),(1026,'2005-05-31 03:45:26',632,107,'2005-06-06 22:30:26',2,'2006-02-15 21:30:53'),(1027,'2005-05-31 03:46:19',2718,55,'2005-06-09 03:50:19',1,'2006-02-15 21:30:53'),(1028,'2005-05-31 03:48:05',4479,51,'2005-06-01 03:51:05',1,'2006-02-15 21:30:53'),(1029,'2005-05-31 03:52:02',2082,50,'2005-06-06 08:10:02',1,'2006-02-15 21:30:53'),(1030,'2005-05-31 04:06:47',3948,267,'2005-06-02 02:59:47',1,'2006-02-15 21:30:53'),(1031,'2005-05-31 04:23:01',917,416,'2005-06-06 08:35:01',1,'2006-02-15 21:30:53'),(1032,'2005-05-31 04:28:43',2937,236,'2005-06-02 02:00:43',2,'2006-02-15 21:30:53'),(1033,'2005-05-31 04:50:07',14,25,'2005-06-02 01:53:07',1,'2006-02-15 21:30:53'),(1034,'2005-05-31 04:53:40',4117,293,'2005-06-09 08:25:40',2,'2006-02-15 21:30:53'),(1035,'2005-05-31 05:01:09',949,362,'2005-06-02 03:59:09',1,'2006-02-15 21:30:53'),(1036,'2005-05-31 05:21:10',2164,438,'2005-06-04 04:19:10',1,'2006-02-15 21:30:53'),(1037,'2005-05-31 05:22:25',810,569,'2005-06-09 04:52:25',1,'2006-02-15 21:30:53'),(1038,'2005-05-31 05:23:47',1253,385,'2005-06-02 03:57:47',2,'2006-02-15 21:30:53'),(1039,'2005-05-31 05:32:29',2479,124,'2005-06-01 06:04:29',2,'2006-02-15 21:30:53'),(1040,'2005-05-31 05:35:16',2546,270,'2005-06-09 04:14:16',1,'2006-02-15 21:30:53'),(1041,'2005-05-31 05:46:23',4432,272,'2005-06-06 09:50:23',2,'2006-02-15 21:30:53'),(1042,'2005-05-31 05:53:00',3155,506,'2005-06-01 05:24:00',1,'2006-02-15 21:30:53'),(1043,'2005-05-31 06:11:40',2322,412,'2005-06-08 09:15:40',2,'2006-02-15 21:30:53'),(1044,'2005-05-31 06:24:44',2574,70,'2005-06-03 04:51:44',1,'2006-02-15 21:30:53'),(1045,'2005-05-31 06:29:01',3470,594,'2005-06-09 04:31:01',1,'2006-02-15 21:30:53'),(1046,'2005-05-31 06:42:30',468,179,'2005-06-03 04:33:30',2,'2006-02-15 21:30:53'),(1047,'2005-05-31 06:45:57',1366,72,'2005-06-04 09:49:57',2,'2006-02-15 21:30:53'),(1048,'2005-05-31 06:49:53',2811,55,'2005-06-02 11:33:53',1,'2006-02-15 21:30:53'),(1049,'2005-05-31 06:57:04',3913,312,'2005-06-02 11:32:04',2,'2006-02-15 21:30:53'),(1050,'2005-05-31 07:01:27',726,303,'2005-06-03 07:50:27',2,'2006-02-15 21:30:53'),(1051,'2005-05-31 07:02:09',1025,246,'2005-06-03 01:32:09',1,'2006-02-15 21:30:53'),(1052,'2005-05-31 07:07:03',2157,156,'2005-06-05 09:38:03',1,'2006-02-15 21:30:53'),(1053,'2005-05-31 07:12:44',3734,196,'2005-06-04 12:33:44',1,'2006-02-15 21:30:53'),(1054,'2005-05-31 07:33:25',1575,126,'2005-06-02 01:40:25',2,'2006-02-15 21:30:53'),(1055,'2005-05-31 07:47:18',1639,108,'2005-06-03 01:57:18',1,'2006-02-15 21:30:53'),(1056,'2005-05-31 07:48:07',1591,519,'2005-06-05 08:51:07',2,'2006-02-15 21:30:53'),(1057,'2005-05-31 07:58:06',497,124,'2005-06-06 03:21:06',1,'2006-02-15 21:30:53'),(1058,'2005-05-31 08:04:17',40,116,'2005-06-03 11:12:17',2,'2006-02-15 21:30:53'),(1059,'2005-05-31 08:20:43',3041,241,'2005-06-04 09:05:43',2,'2006-02-15 21:30:53'),(1060,'2005-05-31 08:21:43',2676,570,'2005-06-09 04:02:43',2,'2006-02-15 21:30:53'),(1061,'2005-05-31 08:27:58',965,109,'2005-06-07 02:34:58',1,'2006-02-15 21:30:53'),(1062,'2005-05-31 08:38:20',2223,176,'2005-06-09 08:23:20',2,'2006-02-15 21:30:53'),(1063,'2005-05-31 08:44:29',2484,7,'2005-06-09 08:00:29',1,'2006-02-15 21:30:53'),(1064,'2005-05-31 08:50:07',2373,460,'2005-06-02 14:47:07',2,'2006-02-15 21:30:53'),(1065,'2005-05-31 08:54:56',3379,316,'2005-06-08 09:21:56',1,'2006-02-15 21:30:53'),(1066,'2005-05-31 09:07:33',2383,541,'2005-06-09 05:34:33',2,'2006-02-15 21:30:53'),(1067,'2005-05-31 09:12:13',2345,32,'2005-06-01 06:15:13',1,'2006-02-15 21:30:53'),(1068,'2005-05-31 09:32:15',150,443,'2005-06-01 11:20:15',1,'2006-02-15 21:30:53'),(1069,'2005-05-31 09:32:31',3057,251,'2005-06-08 10:19:31',2,'2006-02-15 21:30:53'),(1070,'2005-05-31 09:39:56',3170,228,'2005-06-05 10:23:56',1,'2006-02-15 21:30:53'),(1071,'2005-05-31 09:48:56',469,174,'2005-06-02 03:52:56',2,'2006-02-15 21:30:53'),(1072,'2005-05-31 09:52:50',2557,272,'2005-06-05 05:39:50',1,'2006-02-15 21:30:53'),(1073,'2005-05-31 09:55:04',522,146,'2005-06-07 03:55:04',1,'2006-02-15 21:30:53'),(1074,'2005-05-31 10:04:42',2508,503,'2005-06-02 15:27:42',2,'2006-02-15 21:30:53'),(1075,'2005-05-31 10:13:34',2279,9,'2005-06-09 08:11:34',1,'2006-02-15 21:30:53'),(1076,'2005-05-31 10:14:31',2551,214,'2005-06-05 10:13:31',2,'2006-02-15 21:30:53'),(1077,'2005-05-31 10:22:54',1986,24,'2005-06-02 12:21:54',1,'2006-02-15 21:30:53'),(1078,'2005-05-31 10:28:33',3682,230,'2005-06-03 14:45:33',2,'2006-02-15 21:30:53'),(1079,'2005-05-31 10:48:17',268,312,'2005-06-08 12:30:17',1,'2006-02-15 21:30:53'),(1080,'2005-05-31 10:55:26',3491,215,'2005-06-03 13:13:26',2,'2006-02-15 21:30:53'),(1081,'2005-05-31 10:56:32',4524,404,'2005-06-06 11:31:32',1,'2006-02-15 21:30:53'),(1082,'2005-05-31 11:02:01',4510,239,'2005-06-05 08:43:01',1,'2006-02-15 21:30:53'),(1083,'2005-05-31 11:04:48',2393,556,'2005-06-05 13:32:48',1,'2006-02-15 21:30:53'),(1084,'2005-05-31 11:10:17',4577,12,'2005-06-01 11:15:17',1,'2006-02-15 21:30:53'),(1085,'2005-05-31 11:15:43',301,5,'2005-06-07 12:02:43',1,'2006-02-15 21:30:53'),(1086,'2005-05-31 11:17:37',2909,549,'2005-06-06 13:58:37',2,'2006-02-15 21:30:53'),(1087,'2005-05-31 11:18:08',431,169,'2005-06-04 08:33:08',1,'2006-02-15 21:30:53'),(1088,'2005-05-31 11:35:13',3988,356,'2005-06-06 16:01:13',2,'2006-02-15 21:30:53'),(1089,'2005-05-31 11:38:29',3784,367,'2005-06-02 08:06:29',1,'2006-02-15 21:30:53'),(1090,'2005-05-31 12:03:44',3329,23,'2005-06-02 15:54:44',2,'2006-02-15 21:30:53'),(1091,'2005-05-31 12:11:04',3853,251,'2005-06-04 11:42:04',1,'2006-02-15 21:30:53'),(1092,'2005-05-31 12:15:57',4412,278,'2005-06-03 15:39:57',2,'2006-02-15 21:30:53'),(1093,'2005-05-31 12:32:26',2189,214,'2005-06-03 07:51:26',2,'2006-02-15 21:30:53'),(1094,'2005-05-31 13:03:49',3810,547,'2005-06-05 14:30:49',2,'2006-02-15 21:30:53'),(1095,'2005-05-31 13:15:41',4546,252,'2005-06-05 12:10:41',1,'2006-02-15 21:30:53'),(1096,'2005-05-31 13:30:49',1066,271,'2005-06-09 13:53:49',1,'2006-02-15 21:30:53'),(1097,'2005-05-31 13:38:42',2285,491,'2005-06-01 13:54:42',2,'2006-02-15 21:30:53'),(1098,'2005-05-31 13:51:48',1050,425,'2005-06-09 18:42:48',2,'2006-02-15 21:30:53'),(1099,'2005-05-31 13:54:48',924,269,'2005-06-05 13:04:48',2,'2006-02-15 21:30:53'),(1100,'2005-05-31 14:03:21',316,497,'2005-06-06 16:08:21',1,'2006-02-15 21:30:53'),(1101,'2005-05-31 14:13:59',1174,260,'2005-06-07 15:49:59',1,'2006-02-15 21:30:53'),(1102,'2005-05-31 14:20:29',2052,115,'2005-06-04 17:38:29',2,'2006-02-15 21:30:53'),(1103,'2005-05-31 14:24:18',3154,353,'2005-06-09 10:27:18',1,'2006-02-15 21:30:53'),(1104,'2005-05-31 14:30:01',1619,466,'2005-06-05 12:07:01',1,'2006-02-15 21:30:53'),(1105,'2005-05-31 14:33:56',1708,26,'2005-06-07 11:30:56',1,'2006-02-15 21:30:53'),(1106,'2005-05-31 14:36:52',4185,109,'2005-06-01 14:33:52',2,'2006-02-15 21:30:53'),(1107,'2005-05-31 15:04:05',3449,53,'2005-06-07 16:42:05',2,'2006-02-15 21:30:53'),(1108,'2005-05-31 15:05:12',2562,254,'2005-06-09 19:48:12',2,'2006-02-15 21:30:53'),(1109,'2005-05-31 15:12:15',2031,481,'2005-06-09 16:21:15',1,'2006-02-15 21:30:53'),(1110,'2005-05-31 15:22:51',2085,355,'2005-06-07 14:32:51',1,'2006-02-15 21:30:53'),(1111,'2005-05-31 15:24:19',1137,300,'2005-06-08 21:18:19',1,'2006-02-15 21:30:53'),(1112,'2005-05-31 15:51:39',2453,214,'2005-06-03 14:04:39',1,'2006-02-15 21:30:53'),(1113,'2005-05-31 15:58:44',2078,451,'2005-06-05 18:05:44',2,'2006-02-15 21:30:53'),(1114,'2005-05-31 16:00:33',2287,117,'2005-06-01 19:05:33',1,'2006-02-15 21:30:53'),(1115,'2005-05-31 16:07:09',2140,109,'2005-06-04 18:51:09',1,'2006-02-15 21:30:53'),(1116,'2005-05-31 16:10:46',1356,256,'2005-06-01 20:27:46',2,'2006-02-15 21:30:53'),(1117,'2005-05-31 16:15:31',4125,189,'2005-06-04 17:20:31',1,'2006-02-15 21:30:53'),(1118,'2005-05-31 16:23:02',213,510,'2005-06-03 20:00:02',1,'2006-02-15 21:30:53'),(1119,'2005-05-31 16:34:27',4401,469,'2005-06-02 10:54:27',1,'2006-02-15 21:30:53'),(1120,'2005-05-31 16:37:14',2897,361,'2005-06-04 12:53:14',1,'2006-02-15 21:30:53'),(1121,'2005-05-31 16:37:36',1691,74,'2005-06-06 21:02:36',1,'2006-02-15 21:30:53'),(1122,'2005-05-31 16:39:33',1392,180,'2005-06-04 17:25:33',1,'2006-02-15 21:30:53'),(1123,'2005-05-31 16:48:43',142,448,'2005-06-02 19:17:43',2,'2006-02-15 21:30:53'),(1124,'2005-05-31 16:49:34',4560,134,'2005-06-04 19:32:34',2,'2006-02-15 21:30:53'),(1125,'2005-05-31 17:23:44',1172,234,'2005-06-01 15:02:44',1,'2006-02-15 21:30:53'),(1126,'2005-05-31 17:27:45',2765,431,'2005-06-04 20:06:45',2,'2006-02-15 21:30:53'),(1127,'2005-05-31 17:45:49',2412,387,'2005-06-08 22:41:49',2,'2006-02-15 21:30:53'),(1128,'2005-05-31 17:49:26',1496,311,'2005-06-05 19:51:26',2,'2006-02-15 21:30:53'),(1129,'2005-05-31 18:00:48',386,486,'2005-06-04 23:05:48',1,'2006-02-15 21:30:53'),(1130,'2005-05-31 18:13:57',3186,124,'2005-06-06 22:50:57',2,'2006-02-15 21:30:53'),(1131,'2005-05-31 18:44:19',2654,128,'2005-06-01 20:13:19',1,'2006-02-15 21:30:53'),(1132,'2005-05-31 18:44:53',1763,198,'2005-06-07 22:02:53',2,'2006-02-15 21:30:53'),(1133,'2005-05-31 19:12:21',4271,73,'2005-06-02 20:12:21',1,'2006-02-15 21:30:53'),(1134,'2005-05-31 19:14:15',143,191,'2005-06-02 17:13:15',2,'2006-02-15 21:30:53'),(1135,'2005-05-31 19:15:11',3118,122,'2005-06-01 14:44:11',2,'2006-02-15 21:30:53'),(1136,'2005-05-31 19:19:36',3963,50,'2005-06-09 16:04:36',2,'2006-02-15 21:30:53'),(1137,'2005-05-31 19:20:14',3259,351,'2005-06-07 16:10:14',1,'2006-02-15 21:30:53'),(1138,'2005-05-31 19:30:27',3944,438,'2005-06-05 21:42:27',1,'2006-02-15 21:30:53'),(1139,'2005-05-31 19:34:52',666,562,'2005-06-06 17:40:52',1,'2006-02-15 21:30:53'),(1140,'2005-05-31 19:36:30',3731,10,'2005-06-07 18:33:30',2,'2006-02-15 21:30:53'),(1141,'2005-05-31 19:42:02',4128,217,'2005-06-07 00:59:02',2,'2006-02-15 21:30:53'),(1142,'2005-05-31 19:46:38',3998,5,'2005-06-05 14:03:38',1,'2006-02-15 21:30:53'),(1143,'2005-05-31 19:53:03',2632,209,'2005-06-06 20:56:03',2,'2006-02-15 21:30:53'),(1144,'2005-05-31 20:04:10',2450,207,'2005-06-09 16:34:10',1,'2006-02-15 21:30:53'),(1145,'2005-05-31 20:13:45',1133,284,'2005-06-08 02:10:45',1,'2006-02-15 21:30:53'),(1146,'2005-05-31 20:34:45',3134,250,'2005-06-03 18:12:45',2,'2006-02-15 21:30:53'),(1147,'2005-05-31 20:37:52',622,259,'2005-06-06 19:23:52',2,'2006-02-15 21:30:53'),(1148,'2005-05-31 20:38:40',3307,235,'2005-06-02 18:35:40',2,'2006-02-15 21:30:53'),(1149,'2005-05-31 21:03:17',352,326,'2005-06-08 19:58:17',2,'2006-02-15 21:30:53'),(1150,'2005-05-31 21:20:09',1632,136,'2005-06-03 19:15:09',2,'2006-02-15 21:30:53'),(1151,'2005-05-31 21:29:00',1281,581,'2005-06-03 23:24:00',1,'2006-02-15 21:30:53'),(1152,'2005-05-31 21:32:17',210,191,'2005-06-04 21:07:17',2,'2006-02-15 21:30:53'),(1153,'2005-05-31 21:36:44',2725,506,'2005-06-10 01:26:44',2,'2006-02-15 21:30:53'),(1154,'2005-05-31 21:42:09',2732,59,'2005-06-08 16:40:09',1,'2006-02-15 21:30:53'),(1155,'2005-05-31 22:17:11',2048,251,'2005-06-04 20:27:11',2,'2006-02-15 21:30:53'),(1156,'2005-05-31 22:37:34',460,106,'2005-06-01 23:02:34',2,'2006-02-15 21:30:53'),(1157,'2005-05-31 22:47:45',1449,61,'2005-06-02 18:01:45',1,'2006-02-15 21:30:53'),(1158,'2005-06-14 22:53:33',1632,416,'2005-06-18 21:37:33',2,'2006-02-15 21:30:53'),(1159,'2005-06-14 22:55:13',4395,516,'2005-06-17 02:11:13',1,'2006-02-15 21:30:53'),(1160,'2005-06-14 23:00:34',2795,239,'2005-06-18 01:58:34',2,'2006-02-15 21:30:53'),(1161,'2005-06-14 23:07:08',1690,285,'2005-06-21 17:12:08',1,'2006-02-15 21:30:53'),(1162,'2005-06-14 23:09:38',987,310,'2005-06-23 22:00:38',1,'2006-02-15 21:30:53'),(1163,'2005-06-14 23:12:46',4209,592,'2005-06-23 21:53:46',1,'2006-02-15 21:30:53'),(1164,'2005-06-14 23:16:26',3691,49,'2005-06-16 21:00:26',1,'2006-02-15 21:30:53'),(1165,'2005-06-14 23:16:27',2855,264,'2005-06-20 02:40:27',2,'2006-02-15 21:30:53'),(1166,'2005-06-14 23:17:03',2508,46,'2005-06-15 20:43:03',1,'2006-02-15 21:30:53'),(1167,'2005-06-14 23:25:58',4021,323,'2005-06-18 05:18:58',2,'2006-02-15 21:30:53'),(1168,'2005-06-14 23:35:09',4368,481,'2005-06-19 03:20:09',1,'2006-02-15 21:30:53'),(1169,'2005-06-14 23:42:56',1062,139,'2005-06-16 04:02:56',2,'2006-02-15 21:30:53'),(1170,'2005-06-14 23:47:35',2444,595,'2005-06-17 05:28:35',2,'2006-02-15 21:30:53'),(1171,'2005-06-14 23:50:11',4082,284,'2005-06-17 21:44:11',2,'2006-02-15 21:30:53'),(1172,'2005-06-14 23:54:34',2685,306,'2005-06-16 02:26:34',1,'2006-02-15 21:30:53'),(1173,'2005-06-14 23:54:46',1050,191,'2005-06-19 23:26:46',2,'2006-02-15 21:30:53'),(1174,'2005-06-15 00:12:51',2653,95,'2005-06-21 02:10:51',2,'2006-02-15 21:30:53'),(1175,'2005-06-15 00:15:15',3255,197,'2005-06-20 19:23:15',2,'2006-02-15 21:30:53'),(1176,'2005-06-15 00:28:37',2715,512,'2005-06-21 21:42:37',1,'2006-02-15 21:30:53'),(1177,'2005-06-15 00:33:04',1897,210,'2005-06-16 03:47:04',2,'2006-02-15 21:30:53'),(1178,'2005-06-15 00:36:40',2553,279,'2005-06-21 00:27:40',2,'2006-02-15 21:30:53'),(1179,'2005-06-15 00:36:50',816,119,'2005-06-22 22:09:50',1,'2006-02-15 21:30:53'),(1180,'2005-06-15 00:39:01',3119,432,'2005-06-21 22:44:01',2,'2006-02-15 21:30:53'),(1181,'2005-06-15 00:42:17',2973,546,'2005-06-19 03:36:17',2,'2006-02-15 21:30:53'),(1182,'2005-06-15 00:45:21',1061,196,'2005-06-22 03:52:21',1,'2006-02-15 21:30:53'),(1183,'2005-06-15 00:49:19',706,329,'2005-06-20 04:33:19',1,'2006-02-15 21:30:53'),(1184,'2005-06-15 00:49:36',473,295,'2005-06-22 23:39:36',2,'2006-02-15 21:30:53'),(1185,'2005-06-15 00:54:12',2785,1,'2005-06-23 02:42:12',2,'2006-02-15 21:30:53'),(1186,'2005-06-15 00:56:45',1556,368,'2005-06-16 02:23:45',1,'2006-02-15 21:30:53'),(1187,'2005-06-15 00:58:50',1108,334,'2005-06-23 02:19:50',1,'2006-02-15 21:30:53'),(1188,'2005-06-15 01:04:07',246,173,'2005-06-19 03:48:07',1,'2006-02-15 21:30:53'),(1189,'2005-06-15 01:04:22',142,244,'2005-06-24 06:48:22',1,'2006-02-15 21:30:53'),(1190,'2005-06-15 01:05:32',2572,370,'2005-06-23 02:34:32',2,'2006-02-15 21:30:53'),(1191,'2005-06-15 01:10:35',2221,291,'2005-06-17 20:36:35',2,'2006-02-15 21:30:53'),(1192,'2005-06-15 01:18:39',4134,186,'2005-06-19 22:46:39',1,'2006-02-15 21:30:53'),(1193,'2005-06-15 01:24:20',4504,561,'2005-06-21 02:29:20',2,'2006-02-15 21:30:53'),(1194,'2005-06-15 01:25:08',3774,402,'2005-06-21 01:16:08',2,'2006-02-15 21:30:53'),(1195,'2005-06-15 01:37:38',2272,84,'2005-06-17 21:50:38',1,'2006-02-15 21:30:53'),(1196,'2005-06-15 01:38:31',994,52,'2005-06-18 06:55:31',1,'2006-02-15 21:30:53'),(1197,'2005-06-15 01:42:46',3812,349,'2005-06-20 00:22:46',1,'2006-02-15 21:30:53'),(1198,'2005-06-15 01:48:58',1138,491,'2005-06-20 01:07:58',2,'2006-02-15 21:30:53'),(1199,'2005-06-15 01:58:50',253,238,'2005-06-16 20:30:50',2,'2006-02-15 21:30:53'),(1200,'2005-06-15 01:59:51',3329,516,'2005-06-21 21:33:51',1,'2006-02-15 21:30:53'),(1201,'2005-06-15 02:06:28',2679,209,'2005-06-16 21:38:28',2,'2006-02-15 21:30:53'),(1202,'2005-06-15 02:08:04',2821,451,'2005-06-16 21:56:04',1,'2006-02-15 21:30:53'),(1203,'2005-06-15 02:09:02',2223,452,'2005-06-21 00:04:02',1,'2006-02-15 21:30:53'),(1204,'2005-06-15 02:21:46',2450,249,'2005-06-20 07:14:46',2,'2006-02-15 21:30:53'),(1205,'2005-06-15 02:25:56',470,340,'2005-06-22 23:19:56',1,'2006-02-15 21:30:53'),(1206,'2005-06-15 02:27:07',1097,264,'2005-06-18 22:46:07',2,'2006-02-15 21:30:53'),(1207,'2005-06-15 02:27:08',2277,430,'2005-06-19 08:18:08',2,'2006-02-15 21:30:53'),(1208,'2005-06-15 02:30:03',750,376,'2005-06-18 00:04:03',1,'2006-02-15 21:30:53'),(1209,'2005-06-15 02:31:12',1494,146,'2005-06-21 07:39:12',1,'2006-02-15 21:30:53'),(1210,'2005-06-15 02:57:51',7,345,'2005-06-20 01:41:51',2,'2006-02-15 21:30:53'),(1211,'2005-06-15 03:01:20',3360,122,'2005-06-18 07:52:20',2,'2006-02-15 21:30:53'),(1212,'2005-06-15 03:03:33',3611,371,'2005-06-17 06:31:33',1,'2006-02-15 21:30:53'),(1213,'2005-06-15 03:14:05',3191,94,'2005-06-15 21:41:05',2,'2006-02-15 21:30:53'),(1214,'2005-06-15 03:18:40',4482,46,'2005-06-20 07:32:40',1,'2006-02-15 21:30:53'),(1215,'2005-06-15 03:21:00',242,102,'2005-06-19 03:39:00',1,'2006-02-15 21:30:53'),(1216,'2005-06-15 03:23:48',3973,100,'2005-06-18 03:35:48',1,'2006-02-15 21:30:53'),(1217,'2005-06-15 03:24:14',600,203,'2005-06-18 22:37:14',2,'2006-02-15 21:30:53'),(1218,'2005-06-15 03:24:44',239,371,'2005-06-21 22:45:44',2,'2006-02-15 21:30:53'),(1219,'2005-06-15 03:25:59',3005,330,'2005-06-20 00:37:59',1,'2006-02-15 21:30:53'),(1220,'2005-06-15 03:26:15',1621,290,'2005-06-23 08:17:15',1,'2006-02-15 21:30:53'),(1221,'2005-06-15 03:35:16',2124,403,'2005-06-18 03:11:16',1,'2006-02-15 21:30:53'),(1222,'2005-06-15 03:38:49',2799,168,'2005-06-17 22:30:49',1,'2006-02-15 21:30:53'),(1223,'2005-06-15 03:38:53',1299,50,'2005-06-20 01:00:53',2,'2006-02-15 21:30:53'),(1224,'2005-06-15 03:44:25',1572,369,'2005-06-17 03:49:25',2,'2006-02-15 21:30:53'),(1225,'2005-06-15 03:45:35',1929,434,'2005-06-19 02:03:35',1,'2006-02-15 21:30:53'),(1226,'2005-06-15 03:46:10',2290,409,'2005-06-23 02:00:10',1,'2006-02-15 21:30:53'),(1227,'2005-06-15 03:50:03',654,428,'2005-06-21 23:48:03',2,'2006-02-15 21:30:53'),(1228,'2005-06-15 03:50:36',4473,398,'2005-06-17 22:41:36',1,'2006-02-15 21:30:53'),(1229,'2005-06-15 03:53:13',2140,468,'2005-06-18 04:09:13',1,'2006-02-15 21:30:53'),(1230,'2005-06-15 04:04:09',2324,447,'2005-06-16 02:21:09',1,'2006-02-15 21:30:53'),(1231,'2005-06-15 04:04:41',3003,302,'2005-06-20 23:52:41',2,'2006-02-15 21:30:53'),(1232,'2005-06-15 04:18:10',2743,391,'2005-06-17 06:02:10',2,'2006-02-15 21:30:53'),(1233,'2005-06-15 04:18:37',4214,550,'2005-06-22 03:36:37',1,'2006-02-15 21:30:53'),(1234,'2005-06-15 04:21:52',709,529,'2005-06-22 03:25:52',1,'2006-02-15 21:30:53'),(1235,'2005-06-15 04:31:28',1000,255,'2005-06-22 10:08:28',1,'2006-02-15 21:30:53'),(1236,'2005-06-15 04:34:27',3182,66,'2005-06-18 08:15:27',1,'2006-02-15 21:30:53'),(1237,'2005-06-15 04:44:10',3249,49,'2005-06-23 07:00:10',2,'2006-02-15 21:30:53'),(1238,'2005-06-15 04:49:08',3534,205,'2005-06-20 00:06:08',1,'2006-02-15 21:30:53'),(1239,'2005-06-15 04:53:01',3731,444,'2005-06-16 07:03:01',1,'2006-02-15 21:30:53'),(1240,'2005-06-15 04:58:07',3841,28,'2005-06-17 23:56:07',1,'2006-02-15 21:30:53'),(1241,'2005-06-15 04:59:43',4377,62,'2005-06-24 03:32:43',2,'2006-02-15 21:30:53'),(1242,'2005-06-15 05:05:07',821,141,'2005-06-22 04:57:07',1,'2006-02-15 21:30:53'),(1243,'2005-06-15 05:07:32',2629,107,'2005-06-21 08:17:32',2,'2006-02-15 21:30:53'),(1244,'2005-06-15 05:08:40',1026,515,'2005-06-20 10:41:40',1,'2006-02-15 21:30:53'),(1245,'2005-06-15 05:09:01',1314,234,'2005-06-22 06:55:01',2,'2006-02-15 21:30:53'),(1246,'2005-06-15 05:11:19',431,357,'2005-06-21 02:21:19',1,'2006-02-15 21:30:53'),(1247,'2005-06-15 05:16:40',4049,287,'2005-06-23 11:01:40',1,'2006-02-15 21:30:53'),(1248,'2005-06-15 05:33:52',3878,544,'2005-06-19 06:56:52',2,'2006-02-15 21:30:53'),(1249,'2005-06-15 05:38:09',2120,403,'2005-06-22 10:29:09',1,'2006-02-15 21:30:53'),(1250,'2005-06-15 05:55:40',4360,38,'2005-06-23 03:11:40',2,'2006-02-15 21:30:53'),(1251,'2005-06-15 05:58:55',3307,442,'2005-06-23 02:45:55',2,'2006-02-15 21:30:53'),(1252,'2005-06-15 06:05:18',1147,89,'2005-06-24 07:40:18',1,'2006-02-15 21:30:53'),(1253,'2005-06-15 06:06:33',3242,498,'2005-06-21 04:13:33',2,'2006-02-15 21:30:53'),(1254,'2005-06-15 06:11:16',3986,571,'2005-06-21 06:40:16',2,'2006-02-15 21:30:53'),(1255,'2005-06-15 06:13:45',1433,526,'2005-06-16 03:59:45',2,'2006-02-15 21:30:53'),(1256,'2005-06-15 06:13:57',1437,470,'2005-06-16 06:54:57',2,'2006-02-15 21:30:53'),(1257,'2005-06-15 06:15:36',1938,267,'2005-06-21 01:04:36',2,'2006-02-15 21:30:53'),(1258,'2005-06-15 06:21:30',4530,320,'2005-06-18 05:43:30',2,'2006-02-15 21:30:53'),(1259,'2005-06-15 06:37:55',4460,570,'2005-06-23 04:02:55',2,'2006-02-15 21:30:53'),(1260,'2005-06-15 06:42:25',330,586,'2005-06-16 10:44:25',2,'2006-02-15 21:30:53'),(1261,'2005-06-15 06:52:57',2447,95,'2005-06-21 01:47:57',2,'2006-02-15 21:30:53'),(1262,'2005-06-15 06:54:53',4495,236,'2005-06-22 08:09:53',2,'2006-02-15 21:30:53'),(1263,'2005-06-15 06:56:39',4144,540,'2005-06-16 11:08:39',1,'2006-02-15 21:30:53'),(1264,'2005-06-15 06:59:39',4176,439,'2005-06-18 08:10:39',2,'2006-02-15 21:30:53'),(1265,'2005-06-15 07:00:50',982,163,'2005-06-19 12:27:50',1,'2006-02-15 21:30:53'),(1266,'2005-06-15 07:11:39',2230,96,'2005-06-21 02:59:39',2,'2006-02-15 21:30:53'),(1267,'2005-06-15 07:21:21',4246,509,'2005-06-17 08:12:21',2,'2006-02-15 21:30:53'),(1268,'2005-06-15 07:29:30',3641,142,'2005-06-23 12:36:30',1,'2006-02-15 21:30:53'),(1269,'2005-06-15 07:29:59',108,59,'2005-06-16 13:26:59',2,'2006-02-15 21:30:53'),(1270,'2005-06-15 07:30:22',62,395,'2005-06-18 11:31:22',2,'2006-02-15 21:30:53'),(1271,'2005-06-15 07:32:24',379,560,'2005-06-21 05:12:24',1,'2006-02-15 21:30:53'),(1272,'2005-06-15 07:42:58',3128,135,'2005-06-18 12:00:58',1,'2006-02-15 21:30:53'),(1273,'2005-06-15 07:52:35',361,530,'2005-06-21 04:55:35',1,'2006-02-15 21:30:53'),(1274,'2005-06-15 07:52:52',2765,430,'2005-06-20 10:01:52',1,'2006-02-15 21:30:53'),(1275,'2005-06-15 07:55:43',950,214,'2005-06-20 06:30:43',1,'2006-02-15 21:30:53'),(1276,'2005-06-15 08:00:13',1508,388,'2005-06-24 02:55:13',2,'2006-02-15 21:30:53'),(1277,'2005-06-15 08:01:29',76,464,'2005-06-22 07:16:29',2,'2006-02-15 21:30:53'),(1278,'2005-06-15 08:09:12',4471,191,'2005-06-17 04:05:12',2,'2006-02-15 21:30:53'),(1279,'2005-06-15 08:13:57',698,183,'2005-06-18 09:36:57',2,'2006-02-15 21:30:53'),(1280,'2005-06-15 08:16:06',2597,266,'2005-06-21 04:10:06',2,'2006-02-15 21:30:53'),(1281,'2005-06-15 08:21:39',2963,511,'2005-06-17 11:03:39',1,'2006-02-15 21:30:53'),(1282,'2005-06-15 08:25:33',186,539,'2005-06-21 04:02:33',1,'2006-02-15 21:30:53'),(1283,'2005-06-15 08:27:30',3177,470,'2005-06-16 09:46:30',2,'2006-02-15 21:30:53'),(1284,'2005-06-15 08:27:33',1387,463,'2005-06-17 03:58:33',1,'2006-02-15 21:30:53'),(1285,'2005-06-15 08:33:06',1054,254,'2005-06-19 07:36:06',1,'2006-02-15 21:30:53'),(1286,'2005-06-15 08:41:13',774,179,'2005-06-23 13:13:13',2,'2006-02-15 21:30:53'),(1287,'2005-06-15 08:41:38',4204,104,'2005-06-22 14:02:38',1,'2006-02-15 21:30:53'),(1288,'2005-06-15 08:41:52',830,456,'2005-06-19 05:30:52',2,'2006-02-15 21:30:53'),(1289,'2005-06-15 08:44:09',3154,522,'2005-06-21 06:04:09',1,'2006-02-15 21:30:53'),(1290,'2005-06-15 08:52:44',1921,540,'2005-06-24 13:36:44',2,'2006-02-15 21:30:53'),(1291,'2005-06-15 08:55:01',3090,176,'2005-06-24 04:22:01',1,'2006-02-15 21:30:53'),(1292,'2005-06-15 09:03:52',4535,178,'2005-06-21 07:53:52',1,'2006-02-15 21:30:53'),(1293,'2005-06-15 09:06:24',2882,127,'2005-06-18 06:58:24',1,'2006-02-15 21:30:53'),(1294,'2005-06-15 09:09:27',339,327,'2005-06-19 04:43:27',1,'2006-02-15 21:30:53'),(1295,'2005-06-15 09:17:20',2897,449,'2005-06-18 10:14:20',2,'2006-02-15 21:30:53'),(1296,'2005-06-15 09:23:59',1760,200,'2005-06-19 03:44:59',2,'2006-02-15 21:30:53'),(1297,'2005-06-15 09:31:28',1075,4,'2005-06-19 04:33:28',1,'2006-02-15 21:30:53'),(1298,'2005-06-15 09:32:53',4163,334,'2005-06-16 12:40:53',2,'2006-02-15 21:30:53'),(1299,'2005-06-15 09:34:50',1584,91,'2005-06-21 12:07:50',1,'2006-02-15 21:30:53'),(1300,'2005-06-15 09:36:19',2524,186,'2005-06-17 13:54:19',2,'2006-02-15 21:30:53'),(1301,'2005-06-15 09:46:33',1484,33,'2005-06-24 08:56:33',2,'2006-02-15 21:30:53'),(1302,'2005-06-15 09:48:37',324,285,'2005-06-22 06:18:37',1,'2006-02-15 21:30:53'),(1303,'2005-06-15 09:55:57',2001,365,'2005-06-20 14:26:57',2,'2006-02-15 21:30:53'),(1304,'2005-06-15 09:56:02',1304,242,'2005-06-24 07:00:02',1,'2006-02-15 21:30:53'),(1305,'2005-06-15 09:59:16',187,8,'2005-06-19 09:48:16',2,'2006-02-15 21:30:53'),(1306,'2005-06-15 09:59:24',2132,524,'2005-06-19 09:37:24',2,'2006-02-15 21:30:53'),(1307,'2005-06-15 10:06:15',368,507,'2005-06-20 04:50:15',2,'2006-02-15 21:30:53'),(1308,'2005-06-15 10:07:48',220,236,'2005-06-24 15:24:48',1,'2006-02-15 21:30:53'),(1309,'2005-06-15 10:10:49',2356,200,'2005-06-16 12:44:49',1,'2006-02-15 21:30:53'),(1310,'2005-06-15 10:11:42',2045,27,'2005-06-16 15:00:42',1,'2006-02-15 21:30:53'),(1311,'2005-06-15 10:11:59',3114,326,'2005-06-17 08:44:59',2,'2006-02-15 21:30:53'),(1312,'2005-06-15 10:16:27',3608,313,'2005-06-20 06:53:27',1,'2006-02-15 21:30:53'),(1313,'2005-06-15 10:18:34',1657,448,'2005-06-23 06:25:34',1,'2006-02-15 21:30:53'),(1314,'2005-06-15 10:21:45',1359,538,'2005-06-21 14:10:45',1,'2006-02-15 21:30:53'),(1315,'2005-06-15 10:23:08',3844,405,'2005-06-21 15:06:08',1,'2006-02-15 21:30:53'),(1316,'2005-06-15 10:26:23',3891,138,'2005-06-21 09:25:23',2,'2006-02-15 21:30:53'),(1317,'2005-06-15 10:30:19',3696,316,'2005-06-24 08:18:19',1,'2006-02-15 21:30:53'),(1318,'2005-06-15 10:34:26',2760,341,'2005-06-20 16:20:26',1,'2006-02-15 21:30:53'),(1319,'2005-06-15 10:39:05',4296,190,'2005-06-18 05:25:05',1,'2006-02-15 21:30:53'),(1320,'2005-06-15 10:42:13',4484,84,'2005-06-17 13:44:13',1,'2006-02-15 21:30:53'),(1321,'2005-06-15 10:49:17',3516,204,'2005-06-16 15:30:17',1,'2006-02-15 21:30:53'),(1322,'2005-06-15 10:55:09',2076,217,'2005-06-18 15:14:09',2,'2006-02-15 21:30:53'),(1323,'2005-06-15 10:55:17',3273,187,'2005-06-24 09:51:17',1,'2006-02-15 21:30:53'),(1324,'2005-06-15 11:02:45',764,394,'2005-06-17 07:14:45',1,'2006-02-15 21:30:53'),(1325,'2005-06-15 11:03:24',52,193,'2005-06-20 10:54:24',1,'2006-02-15 21:30:53'),(1326,'2005-06-15 11:07:39',59,548,'2005-06-22 05:55:39',2,'2006-02-15 21:30:53'),(1327,'2005-06-15 11:11:39',403,539,'2005-06-22 10:45:39',1,'2006-02-15 21:30:53'),(1328,'2005-06-15 11:23:27',3665,295,'2005-06-19 12:42:27',2,'2006-02-15 21:30:53'),(1329,'2005-06-15 11:25:06',1154,359,'2005-06-17 16:10:06',2,'2006-02-15 21:30:53'),(1330,'2005-06-15 11:29:17',1219,587,'2005-06-24 13:36:17',2,'2006-02-15 21:30:53'),(1331,'2005-06-15 11:34:33',3089,277,'2005-06-21 09:46:33',1,'2006-02-15 21:30:53'),(1332,'2005-06-15 11:36:01',1412,116,'2005-06-17 14:29:01',1,'2006-02-15 21:30:53'),(1333,'2005-06-15 11:37:08',448,310,'2005-06-16 10:13:08',2,'2006-02-15 21:30:53'),(1334,'2005-06-15 11:43:09',1242,269,'2005-06-20 15:45:09',2,'2006-02-15 21:30:53'),(1335,'2005-06-15 11:51:30',1713,64,'2005-06-16 16:42:30',2,'2006-02-15 21:30:53'),(1336,'2005-06-15 12:01:34',1696,290,'2005-06-23 12:05:34',1,'2006-02-15 21:30:53'),(1337,'2005-06-15 12:12:42',4014,465,'2005-06-20 12:38:42',2,'2006-02-15 21:30:53'),(1338,'2005-06-15 12:17:34',1206,25,'2005-06-19 07:40:34',2,'2006-02-15 21:30:53'),(1339,'2005-06-15 12:21:56',424,162,'2005-06-19 07:46:56',1,'2006-02-15 21:30:53'),(1340,'2005-06-15 12:24:15',251,100,'2005-06-22 13:02:15',1,'2006-02-15 21:30:53'),(1341,'2005-06-15 12:26:18',3363,344,'2005-06-21 07:26:18',2,'2006-02-15 21:30:53'),(1342,'2005-06-15 12:26:21',4429,427,'2005-06-22 11:23:21',1,'2006-02-15 21:30:53'),(1343,'2005-06-15 12:27:19',2393,416,'2005-06-21 16:57:19',1,'2006-02-15 21:30:53'),(1344,'2005-06-15 12:29:41',1625,585,'2005-06-22 12:45:41',2,'2006-02-15 21:30:53'),(1345,'2005-06-15 12:32:13',1041,270,'2005-06-24 14:02:13',1,'2006-02-15 21:30:53'),(1346,'2005-06-15 12:39:52',4540,585,'2005-06-24 17:43:52',1,'2006-02-15 21:30:53'),(1347,'2005-06-15 12:43:43',374,190,'2005-06-16 09:55:43',1,'2006-02-15 21:30:53'),(1348,'2005-06-15 12:45:30',2078,196,'2005-06-17 17:12:30',1,'2006-02-15 21:30:53'),(1349,'2005-06-15 12:49:02',1131,267,'2005-06-17 15:20:02',1,'2006-02-15 21:30:53'),(1350,'2005-06-15 12:50:25',4261,316,'2005-06-23 11:35:25',1,'2006-02-15 21:30:53'),(1351,'2005-06-15 12:51:03',2364,484,'2005-06-22 07:23:03',1,'2006-02-15 21:30:53'),(1352,'2005-06-15 12:58:27',4352,276,'2005-06-18 10:57:27',1,'2006-02-15 21:30:53'),(1353,'2005-06-15 13:13:36',2711,480,'2005-06-21 08:46:36',2,'2006-02-15 21:30:53'),(1354,'2005-06-15 13:13:49',1294,83,'2005-06-23 13:08:49',2,'2006-02-15 21:30:53'),(1355,'2005-06-15 13:13:59',4203,499,'2005-06-20 12:23:59',1,'2006-02-15 21:30:53'),(1356,'2005-06-15 13:17:01',1318,212,'2005-06-19 16:22:01',1,'2006-02-15 21:30:53'),(1357,'2005-06-15 13:26:23',2285,205,'2005-06-23 14:12:23',1,'2006-02-15 21:30:53'),(1358,'2005-06-15 13:28:48',2025,442,'2005-06-21 13:40:48',1,'2006-02-15 21:30:53'),(1359,'2005-06-15 13:30:30',3140,353,'2005-06-17 14:55:30',1,'2006-02-15 21:30:53'),(1360,'2005-06-15 13:32:15',4107,14,'2005-06-18 10:59:15',2,'2006-02-15 21:30:53'),(1361,'2005-06-15 13:37:38',4338,115,'2005-06-19 17:08:38',1,'2006-02-15 21:30:53'),(1362,'2005-06-15 13:53:32',4524,98,'2005-06-19 16:05:32',1,'2006-02-15 21:30:53'),(1363,'2005-06-15 14:05:11',771,197,'2005-06-17 19:53:11',2,'2006-02-15 21:30:53'),(1364,'2005-06-15 14:05:32',115,400,'2005-06-16 15:31:32',1,'2006-02-15 21:30:53'),(1365,'2005-06-15 14:09:55',3813,25,'2005-06-19 18:11:55',2,'2006-02-15 21:30:53'),(1366,'2005-06-15 14:21:00',4238,576,'2005-06-24 17:36:00',1,'2006-02-15 21:30:53'),(1367,'2005-06-15 14:25:17',1505,94,'2005-06-21 19:15:17',1,'2006-02-15 21:30:53'),(1368,'2005-06-15 14:27:47',2020,222,'2005-06-23 18:07:47',2,'2006-02-15 21:30:53'),(1369,'2005-06-15 14:29:14',679,221,'2005-06-16 13:01:14',1,'2006-02-15 21:30:53'),(1370,'2005-06-15 14:31:05',644,396,'2005-06-22 19:23:05',2,'2006-02-15 21:30:53'),(1371,'2005-06-15 14:38:15',760,491,'2005-06-23 15:36:15',1,'2006-02-15 21:30:53'),(1372,'2005-06-15 14:45:48',3740,108,'2005-06-17 18:02:48',2,'2006-02-15 21:30:53'),(1373,'2005-06-15 14:48:04',284,51,'2005-06-22 09:48:04',1,'2006-02-15 21:30:53'),(1374,'2005-06-15 14:49:54',3353,120,'2005-06-22 12:30:54',1,'2006-02-15 21:30:53'),(1375,'2005-06-15 14:54:56',3555,500,'2005-06-21 14:48:56',2,'2006-02-15 21:30:53'),(1376,'2005-06-15 14:59:06',4271,215,'2005-06-19 17:34:06',1,'2006-02-15 21:30:53'),(1377,'2005-06-15 15:02:03',3410,245,'2005-06-22 14:54:03',2,'2006-02-15 21:30:53'),(1378,'2005-06-15 15:03:15',4372,253,'2005-06-19 16:50:15',1,'2006-02-15 21:30:53'),(1379,'2005-06-15 15:05:10',810,212,'2005-06-18 12:11:10',1,'2006-02-15 21:30:53'),(1380,'2005-06-15 15:13:10',3376,158,'2005-06-18 12:42:10',2,'2006-02-15 21:30:53'),(1381,'2005-06-15 15:17:21',3262,300,'2005-06-20 17:07:21',2,'2006-02-15 21:30:53'),(1382,'2005-06-15 15:18:08',3133,455,'2005-06-22 09:22:08',2,'2006-02-15 21:30:53'),(1383,'2005-06-15 15:20:06',1281,379,'2005-06-24 18:42:06',2,'2006-02-15 21:30:53'),(1384,'2005-06-15 15:22:03',4242,242,'2005-06-18 18:11:03',1,'2006-02-15 21:30:53'),(1385,'2005-06-15 15:28:23',4073,396,'2005-06-18 18:37:23',1,'2006-02-15 21:30:53'),(1386,'2005-06-15 15:38:58',1296,322,'2005-06-20 16:28:58',2,'2006-02-15 21:30:53'),(1387,'2005-06-15 15:40:56',515,278,'2005-06-17 10:39:56',1,'2006-02-15 21:30:53'),(1388,'2005-06-15 15:48:41',3987,500,'2005-06-22 17:51:41',1,'2006-02-15 21:30:53'),(1389,'2005-06-15 15:49:01',965,472,'2005-06-19 11:08:01',2,'2006-02-15 21:30:53'),(1390,'2005-06-15 16:06:29',4502,254,'2005-06-19 13:11:29',1,'2006-02-15 21:30:53'),(1391,'2005-06-15 16:11:21',4213,273,'2005-06-22 21:32:21',1,'2006-02-15 21:30:53'),(1392,'2005-06-15 16:12:27',363,460,'2005-06-16 17:30:27',2,'2006-02-15 21:30:53'),(1393,'2005-06-15 16:12:50',2767,177,'2005-06-19 10:40:50',2,'2006-02-15 21:30:53'),(1394,'2005-06-15 16:17:21',2802,268,'2005-06-21 20:44:21',2,'2006-02-15 21:30:53'),(1395,'2005-06-15 16:21:04',753,252,'2005-06-23 12:52:04',2,'2006-02-15 21:30:53'),(1396,'2005-06-15 16:22:38',1007,103,'2005-06-17 15:53:38',2,'2006-02-15 21:30:53'),(1397,'2005-06-15 16:25:26',1830,444,'2005-06-21 20:45:26',1,'2006-02-15 21:30:53'),(1398,'2005-06-15 16:28:42',4402,527,'2005-06-16 12:11:42',1,'2006-02-15 21:30:53'),(1399,'2005-06-15 16:29:51',1435,469,'2005-06-18 14:06:51',1,'2006-02-15 21:30:53'),(1400,'2005-06-15 16:29:56',230,571,'2005-06-21 14:43:56',2,'2006-02-15 21:30:53'),(1401,'2005-06-15 16:30:22',4081,366,'2005-06-21 11:07:22',2,'2006-02-15 21:30:53'),(1402,'2005-06-15 16:31:08',1951,381,'2005-06-24 19:31:08',1,'2006-02-15 21:30:53'),(1403,'2005-06-15 16:31:59',3380,546,'2005-06-22 14:23:59',2,'2006-02-15 21:30:53'),(1404,'2005-06-15 16:38:53',2776,375,'2005-06-16 20:37:53',1,'2006-02-15 21:30:53'),(1405,'2005-06-15 16:41:26',3184,243,'2005-06-21 18:16:26',1,'2006-02-15 21:30:53'),(1406,'2005-06-15 16:44:00',3118,199,'2005-06-21 11:22:00',2,'2006-02-15 21:30:53'),(1407,'2005-06-15 16:45:07',1286,89,'2005-06-23 14:01:07',1,'2006-02-15 21:30:53'),(1408,'2005-06-15 16:57:58',2655,396,'2005-06-22 21:08:58',1,'2006-02-15 21:30:53'),(1409,'2005-06-15 16:58:12',1398,297,'2005-06-21 11:21:12',2,'2006-02-15 21:30:53'),(1410,'2005-06-15 16:59:46',809,356,'2005-06-21 16:38:46',1,'2006-02-15 21:30:53'),(1411,'2005-06-15 17:05:36',2276,520,'2005-06-21 14:05:36',1,'2006-02-15 21:30:53'),(1412,'2005-06-15 17:09:48',4236,166,'2005-06-18 17:05:48',2,'2006-02-15 21:30:53'),(1413,'2005-06-15 17:25:07',3625,96,'2005-06-21 17:17:07',2,'2006-02-15 21:30:53'),(1414,'2005-06-15 17:26:32',4005,304,'2005-06-22 22:30:32',1,'2006-02-15 21:30:53'),(1415,'2005-06-15 17:31:57',1885,331,'2005-06-16 22:22:57',2,'2006-02-15 21:30:53'),(1416,'2005-06-15 17:44:57',3816,167,'2005-06-22 20:53:57',2,'2006-02-15 21:30:53'),(1417,'2005-06-15 17:45:51',1334,570,'2005-06-19 14:00:51',2,'2006-02-15 21:30:53'),(1418,'2005-06-15 17:51:27',2974,591,'2005-06-18 23:20:27',2,'2006-02-15 21:30:53'),(1419,'2005-06-15 17:54:50',1208,312,'2005-06-17 19:44:50',2,'2006-02-15 21:30:53'),(1420,'2005-06-15 17:56:14',4149,255,'2005-06-24 15:45:14',2,'2006-02-15 21:30:53'),(1421,'2005-06-15 17:57:04',2439,533,'2005-06-21 20:38:04',2,'2006-02-15 21:30:53'),(1422,'2005-06-15 18:02:53',1021,1,'2005-06-19 15:54:53',2,'2006-02-15 21:30:53'),(1423,'2005-06-15 18:08:12',1396,592,'2005-06-24 19:13:12',1,'2006-02-15 21:30:53'),(1424,'2005-06-15 18:08:14',887,224,'2005-06-24 23:16:14',2,'2006-02-15 21:30:53'),(1425,'2005-06-15 18:13:46',1308,108,'2005-06-18 22:50:46',2,'2006-02-15 21:30:53'),(1426,'2005-06-15 18:16:24',4412,363,'2005-06-18 22:15:24',2,'2006-02-15 21:30:53'),(1427,'2005-06-15 18:17:28',14,100,'2005-06-16 15:47:28',1,'2006-02-15 21:30:53'),(1428,'2005-06-15 18:19:30',3689,583,'2005-06-22 23:05:30',2,'2006-02-15 21:30:53'),(1429,'2005-06-15 18:24:10',4116,362,'2005-06-18 16:30:10',1,'2006-02-15 21:30:53'),(1430,'2005-06-15 18:24:55',3412,194,'2005-06-16 12:26:55',1,'2006-02-15 21:30:53'),(1431,'2005-06-15 18:26:29',3193,438,'2005-06-21 17:33:29',1,'2006-02-15 21:30:53'),(1432,'2005-06-15 18:27:24',523,339,'2005-06-21 14:03:24',2,'2006-02-15 21:30:53'),(1433,'2005-06-15 18:30:00',2310,88,'2005-06-16 15:14:00',1,'2006-02-15 21:30:53'),(1434,'2005-06-15 18:30:46',4228,544,'2005-06-24 17:51:46',1,'2006-02-15 21:30:53'),(1435,'2005-06-15 18:32:30',2769,510,'2005-06-24 12:44:30',2,'2006-02-15 21:30:53'),(1436,'2005-06-15 18:35:40',924,584,'2005-06-21 15:04:40',1,'2006-02-15 21:30:53'),(1437,'2005-06-15 18:37:04',3263,96,'2005-06-20 12:56:04',1,'2006-02-15 21:30:53'),(1438,'2005-06-15 18:38:51',1816,82,'2005-06-17 23:50:51',1,'2006-02-15 21:30:53'),(1439,'2005-06-15 18:45:32',3155,589,'2005-06-22 15:57:32',2,'2006-02-15 21:30:53'),(1440,'2005-06-15 18:53:14',2921,26,'2005-06-24 15:28:14',1,'2006-02-15 21:30:53'),(1441,'2005-06-15 18:54:21',2095,444,'2005-06-22 22:48:21',2,'2006-02-15 21:30:53'),(1442,'2005-06-15 18:55:34',3912,122,'2005-06-22 20:41:34',2,'2006-02-15 21:30:53'),(1443,'2005-06-15 18:57:51',2485,435,'2005-06-18 14:18:51',2,'2006-02-15 21:30:53'),(1444,'2005-06-15 19:08:16',1303,539,'2005-06-24 15:20:16',2,'2006-02-15 21:30:53'),(1445,'2005-06-15 19:10:07',3189,537,'2005-06-19 20:27:07',2,'2006-02-15 21:30:53'),(1446,'2005-06-15 19:13:45',1989,506,'2005-06-23 19:43:45',2,'2006-02-15 21:30:53'),(1447,'2005-06-15 19:13:51',984,471,'2005-06-21 22:56:51',1,'2006-02-15 21:30:53'),(1448,'2005-06-15 19:17:16',2781,246,'2005-06-23 21:56:16',2,'2006-02-15 21:30:53'),(1449,'2005-06-15 19:19:16',1525,471,'2005-06-18 15:24:16',2,'2006-02-15 21:30:53'),(1450,'2005-06-15 19:22:08',4132,268,'2005-06-16 17:53:08',2,'2006-02-15 21:30:53'),(1451,'2005-06-15 19:30:18',3560,18,'2005-06-19 19:22:18',2,'2006-02-15 21:30:53'),(1452,'2005-06-15 19:32:52',4348,243,'2005-06-16 13:45:52',1,'2006-02-15 21:30:53'),(1453,'2005-06-15 19:36:39',3274,457,'2005-06-19 00:16:39',2,'2006-02-15 21:30:53'),(1454,'2005-06-15 19:49:41',102,298,'2005-06-17 15:17:41',2,'2006-02-15 21:30:53'),(1455,'2005-06-15 19:51:06',2194,358,'2005-06-18 21:54:06',2,'2006-02-15 21:30:53'),(1456,'2005-06-15 20:00:11',632,590,'2005-06-23 18:03:11',2,'2006-02-15 21:30:53'),(1457,'2005-06-15 20:05:49',730,345,'2005-06-19 15:35:49',1,'2006-02-15 21:30:53'),(1458,'2005-06-15 20:24:05',3546,178,'2005-06-21 01:22:05',1,'2006-02-15 21:30:53'),(1459,'2005-06-15 20:25:53',1862,218,'2005-06-22 23:34:53',2,'2006-02-15 21:30:53'),(1460,'2005-06-15 20:27:02',1405,565,'2005-06-16 16:21:02',1,'2006-02-15 21:30:53'),(1461,'2005-06-15 20:32:08',4479,216,'2005-06-23 01:08:08',1,'2006-02-15 21:30:53'),(1462,'2005-06-15 20:37:40',653,187,'2005-06-18 19:36:40',2,'2006-02-15 21:30:53'),(1463,'2005-06-15 20:37:51',2984,569,'2005-06-21 16:46:51',2,'2006-02-15 21:30:53'),(1464,'2005-06-15 20:38:14',4113,387,'2005-06-17 14:52:14',2,'2006-02-15 21:30:53'),(1465,'2005-06-15 20:43:08',609,387,'2005-06-18 23:00:08',1,'2006-02-15 21:30:53'),(1466,'2005-06-15 20:46:04',1057,288,'2005-06-24 22:46:04',1,'2006-02-15 21:30:53'),(1467,'2005-06-15 20:47:10',688,506,'2005-06-22 00:30:10',1,'2006-02-15 21:30:53'),(1468,'2005-06-15 20:48:22',228,230,'2005-06-21 19:48:22',1,'2006-02-15 21:30:53'),(1469,'2005-06-15 20:52:36',2451,580,'2005-06-21 19:55:36',1,'2006-02-15 21:30:53'),(1470,'2005-06-15 20:53:07',4044,11,'2005-06-25 02:12:07',1,'2006-02-15 21:30:53'),(1471,'2005-06-15 20:53:26',565,428,'2005-06-24 18:25:26',2,'2006-02-15 21:30:53'),(1472,'2005-06-15 20:54:55',4233,373,'2005-06-24 21:52:55',2,'2006-02-15 21:30:53'),(1473,'2005-06-15 20:55:20',2377,249,'2005-06-21 16:40:20',2,'2006-02-15 21:30:53'),(1474,'2005-06-15 20:55:42',164,202,'2005-06-19 02:41:42',2,'2006-02-15 21:30:53'),(1475,'2005-06-15 21:08:01',1834,344,'2005-06-18 22:33:01',2,'2006-02-15 21:30:53'),(1476,'2005-06-15 21:08:46',1407,1,'2005-06-25 02:26:46',1,'2006-02-15 21:30:53'),(1477,'2005-06-15 21:11:18',418,51,'2005-06-19 02:05:18',1,'2006-02-15 21:30:53'),(1478,'2005-06-15 21:12:13',435,336,'2005-06-18 21:43:13',2,'2006-02-15 21:30:53'),(1479,'2005-06-15 21:13:38',172,592,'2005-06-17 01:26:38',2,'2006-02-15 21:30:53'),(1480,'2005-06-15 21:17:17',2598,27,'2005-06-23 22:01:17',1,'2006-02-15 21:30:53'),(1481,'2005-06-15 21:17:58',3041,125,'2005-06-18 17:53:58',2,'2006-02-15 21:30:53'),(1482,'2005-06-15 21:18:16',3980,60,'2005-06-16 17:07:16',1,'2006-02-15 21:30:53'),(1483,'2005-06-15 21:21:58',1926,242,'2005-06-24 00:44:58',2,'2006-02-15 21:30:53'),(1484,'2005-06-15 21:22:35',1589,320,'2005-06-20 02:27:35',2,'2006-02-15 21:30:53'),(1485,'2005-06-15 21:24:10',194,281,'2005-06-24 23:03:10',1,'2006-02-15 21:30:53'),(1486,'2005-06-15 21:25:30',847,62,'2005-06-16 16:36:30',1,'2006-02-15 21:30:53'),(1487,'2005-06-15 21:27:42',3791,76,'2005-06-22 03:09:42',2,'2006-02-15 21:30:53'),(1488,'2005-06-15 21:39:54',1081,355,'2005-06-16 20:33:54',1,'2006-02-15 21:30:53'),(1489,'2005-06-15 21:41:38',699,213,'2005-06-22 17:00:38',1,'2006-02-15 21:30:53'),(1490,'2005-06-15 21:42:17',3515,123,'2005-06-22 02:01:17',2,'2006-02-15 21:30:53'),(1491,'2005-06-15 21:48:18',848,354,'2005-06-20 16:40:18',1,'2006-02-15 21:30:53'),(1492,'2005-06-15 21:48:35',4148,360,'2005-06-17 17:18:35',1,'2006-02-15 21:30:53'),(1493,'2005-06-15 21:50:32',4581,235,'2005-06-17 01:02:32',2,'2006-02-15 21:30:53'),(1494,'2005-06-15 21:54:20',244,575,'2005-06-19 18:46:20',1,'2006-02-15 21:30:53'),(1495,'2005-06-15 21:54:31',1842,175,'2005-06-19 00:08:31',2,'2006-02-15 21:30:53'),(1496,'2005-06-15 21:55:58',3915,290,'2005-06-17 02:28:58',2,'2006-02-15 21:30:53'),(1497,'2005-06-15 21:56:39',2958,44,'2005-06-20 20:32:39',1,'2006-02-15 21:30:53'),(1498,'2005-06-15 21:58:00',3690,352,'2005-06-17 21:50:00',1,'2006-02-15 21:30:53'),(1499,'2005-06-15 21:58:07',165,375,'2005-06-22 19:37:07',2,'2006-02-15 21:30:53'),(1500,'2005-06-15 22:00:45',2652,237,'2005-06-18 16:19:45',2,'2006-02-15 21:30:53'),(1501,'2005-06-15 22:02:35',1780,148,'2005-06-23 18:59:35',1,'2006-02-15 21:30:53'),(1502,'2005-06-15 22:03:14',3277,5,'2005-06-23 18:42:14',2,'2006-02-15 21:30:53'),(1503,'2005-06-15 22:07:09',763,197,'2005-06-20 23:15:09',1,'2006-02-15 21:30:53'),(1504,'2005-06-15 22:08:06',3621,423,'2005-06-24 01:16:06',2,'2006-02-15 21:30:53'),(1505,'2005-06-15 22:12:50',2961,561,'2005-06-17 21:37:50',2,'2006-02-15 21:30:53'),(1506,'2005-06-15 22:19:37',4085,404,'2005-06-22 18:28:37',1,'2006-02-15 21:30:53'),(1507,'2005-06-15 22:25:26',2514,172,'2005-06-19 17:00:26',1,'2006-02-15 21:30:53'),(1508,'2005-06-15 22:33:24',1141,511,'2005-06-18 02:27:24',2,'2006-02-15 21:30:53'),(1509,'2005-06-15 22:35:53',655,167,'2005-06-23 17:09:53',2,'2006-02-15 21:30:53'),(1510,'2005-06-15 22:39:34',989,338,'2005-06-24 19:21:34',2,'2006-02-15 21:30:53'),(1511,'2005-06-15 22:45:06',1135,330,'2005-06-22 22:48:06',1,'2006-02-15 21:30:53'),(1512,'2005-06-15 22:53:03',1628,452,'2005-06-23 18:56:03',1,'2006-02-15 21:30:53'),(1513,'2005-06-15 22:53:30',1173,368,'2005-06-23 01:00:30',1,'2006-02-15 21:30:53'),(1514,'2005-06-15 22:57:34',2937,410,'2005-06-19 20:27:34',1,'2006-02-15 21:30:53'),(1515,'2005-06-15 23:07:50',3244,115,'2005-06-20 02:33:50',2,'2006-02-15 21:30:53'),(1516,'2005-06-15 23:11:10',3702,530,'2005-06-17 20:37:10',1,'2006-02-15 21:30:53'),(1517,'2005-06-15 23:20:26',3728,148,'2005-06-23 23:23:26',1,'2006-02-15 21:30:53'),(1518,'2005-06-15 23:36:37',4537,237,'2005-06-16 18:24:37',2,'2006-02-15 21:30:53'),(1519,'2005-06-15 23:55:27',1553,155,'2005-06-21 04:06:27',2,'2006-02-15 21:30:53'),(1520,'2005-06-15 23:57:20',3419,341,'2005-06-24 23:46:20',1,'2006-02-15 21:30:53'),(1521,'2005-06-15 23:58:53',4299,149,'2005-06-18 03:10:53',1,'2006-02-15 21:30:53'),(1522,'2005-06-16 00:17:39',235,133,'2005-06-22 05:38:39',1,'2006-02-15 21:30:53'),(1523,'2005-06-16 00:18:40',681,349,'2005-06-17 02:50:40',2,'2006-02-15 21:30:53'),(1524,'2005-06-16 00:25:52',3439,177,'2005-06-19 03:32:52',1,'2006-02-15 21:30:53'),(1525,'2005-06-16 00:26:07',1467,304,'2005-06-19 22:37:07',2,'2006-02-15 21:30:53'),(1526,'2005-06-16 00:27:51',1940,499,'2005-06-19 00:19:51',1,'2006-02-15 21:30:53'),(1527,'2005-06-16 00:31:40',296,188,'2005-06-21 05:20:40',1,'2006-02-15 21:30:53'),(1528,'2005-06-16 00:32:52',4297,110,'2005-06-25 01:07:52',2,'2006-02-15 21:30:53'),(1529,'2005-06-16 00:37:35',1688,362,'2005-06-22 18:58:35',2,'2006-02-15 21:30:53'),(1530,'2005-06-16 00:38:07',2421,392,'2005-06-24 02:45:07',2,'2006-02-15 21:30:53'),(1531,'2005-06-16 00:40:34',1388,515,'2005-06-22 02:44:34',1,'2006-02-15 21:30:53'),(1532,'2005-06-16 00:41:31',3793,290,'2005-06-20 21:36:31',1,'2006-02-15 21:30:53'),(1533,'2005-06-16 00:46:02',2452,116,'2005-06-17 20:11:02',1,'2006-02-15 21:30:53'),(1534,'2005-06-16 00:49:32',3124,42,'2005-06-18 02:41:32',1,'2006-02-15 21:30:53'),(1535,'2005-06-16 00:52:04',1096,202,'2005-06-20 22:47:04',2,'2006-02-15 21:30:53'),(1536,'2005-06-16 00:52:22',3248,339,'2005-06-17 21:43:22',1,'2006-02-15 21:30:53'),(1537,'2005-06-16 00:52:51',4577,594,'2005-06-20 19:33:51',2,'2006-02-15 21:30:53'),(1538,'2005-06-16 01:05:50',708,430,'2005-06-18 19:48:50',1,'2006-02-15 21:30:53'),(1539,'2005-06-16 01:11:25',267,390,'2005-06-23 03:43:25',2,'2006-02-15 21:30:53'),(1540,'2005-06-16 01:14:56',2707,586,'2005-06-20 23:31:56',2,'2006-02-15 21:30:53'),(1541,'2005-06-16 01:15:59',1911,189,'2005-06-22 21:26:59',2,'2006-02-15 21:30:53'),(1542,'2005-06-16 01:20:05',1714,182,'2005-06-22 03:59:05',1,'2006-02-15 21:30:53'),(1543,'2005-06-16 01:24:08',1188,28,'2005-06-18 06:24:08',2,'2006-02-15 21:30:53'),(1544,'2005-06-16 01:28:22',269,43,'2005-06-17 06:57:22',2,'2006-02-15 21:30:53'),(1545,'2005-06-16 01:31:23',762,563,'2005-06-24 05:50:23',1,'2006-02-15 21:30:53'),(1546,'2005-06-16 01:34:05',3913,3,'2005-06-24 04:27:05',1,'2006-02-15 21:30:53'),(1547,'2005-06-16 01:42:24',2909,343,'2005-06-19 01:13:24',1,'2006-02-15 21:30:53'),(1548,'2005-06-16 01:43:33',2094,374,'2005-06-23 22:04:33',2,'2006-02-15 21:30:53'),(1549,'2005-06-16 01:57:15',266,69,'2005-06-18 23:30:15',1,'2006-02-15 21:30:53'),(1550,'2005-06-16 01:58:35',2003,345,'2005-06-18 23:56:35',1,'2006-02-15 21:30:53'),(1551,'2005-06-16 02:01:15',4088,268,'2005-06-22 07:33:15',1,'2006-02-15 21:30:53'),(1552,'2005-06-16 02:01:37',819,518,'2005-06-21 00:59:37',2,'2006-02-15 21:30:53'),(1553,'2005-06-16 02:02:44',4026,416,'2005-06-19 07:50:44',1,'2006-02-15 21:30:53'),(1554,'2005-06-16 02:16:47',715,155,'2005-06-22 05:15:47',1,'2006-02-15 21:30:53'),(1555,'2005-06-16 02:17:07',4168,256,'2005-06-22 06:28:07',1,'2006-02-15 21:30:53'),(1556,'2005-06-16 02:19:02',533,54,'2005-06-17 22:36:02',2,'2006-02-15 21:30:53'),(1557,'2005-06-16 02:28:35',2617,439,'2005-06-16 22:11:35',2,'2006-02-15 21:30:53'),(1558,'2005-06-16 02:33:53',4350,20,'2005-06-19 20:50:53',2,'2006-02-15 21:30:53'),(1559,'2005-06-16 02:35:03',716,574,'2005-06-19 21:22:03',1,'2006-02-15 21:30:53'),(1560,'2005-06-16 02:36:43',3418,239,'2005-06-24 23:10:43',2,'2006-02-15 21:30:53'),(1561,'2005-06-16 02:41:30',2263,431,'2005-06-22 05:19:30',1,'2006-02-15 21:30:53'),(1562,'2005-06-16 02:46:27',595,395,'2005-06-23 00:56:27',2,'2006-02-15 21:30:53'),(1563,'2005-06-16 02:46:28',1516,262,'2005-06-18 02:37:28',1,'2006-02-15 21:30:53'),(1564,'2005-06-16 02:47:07',145,343,'2005-06-24 03:12:07',1,'2006-02-15 21:30:53'),(1565,'2005-06-16 03:13:09',3833,506,'2005-06-16 22:42:09',2,'2006-02-15 21:30:53'),(1566,'2005-06-16 03:13:20',3215,174,'2005-06-24 01:59:20',2,'2006-02-15 21:30:53'),(1567,'2005-06-16 03:13:30',3098,320,'2005-06-21 23:56:30',1,'2006-02-15 21:30:53'),(1568,'2005-06-16 03:14:01',635,178,'2005-06-19 21:17:01',2,'2006-02-15 21:30:53'),(1569,'2005-06-16 03:19:09',3927,363,'2005-06-18 21:55:09',2,'2006-02-15 21:30:53'),(1570,'2005-06-16 03:21:33',3711,82,'2005-06-22 22:03:33',2,'2006-02-15 21:30:53'),(1571,'2005-06-16 03:22:00',1019,54,'2005-06-22 23:27:00',1,'2006-02-15 21:30:53'),(1572,'2005-06-16 03:23:22',4179,560,'2005-06-20 06:03:22',2,'2006-02-15 21:30:53'),(1573,'2005-06-16 03:31:39',4536,371,'2005-06-25 04:04:39',1,'2006-02-15 21:30:53'),(1574,'2005-06-16 03:39:56',161,305,'2005-06-22 05:40:56',2,'2006-02-15 21:30:53'),(1575,'2005-06-16 03:41:38',3317,6,'2005-06-22 03:01:38',2,'2006-02-15 21:30:53'),(1576,'2005-06-16 03:54:39',1014,442,'2005-06-24 21:55:39',2,'2006-02-15 21:30:53'),(1577,'2005-06-16 04:03:28',367,327,'2005-06-24 22:40:28',2,'2006-02-15 21:30:53'),(1578,'2005-06-16 04:08:16',3397,365,'2005-06-23 07:57:16',1,'2006-02-15 21:30:53'),(1579,'2005-06-16 04:09:08',158,35,'2005-06-21 05:21:08',2,'2006-02-15 21:30:53'),(1580,'2005-06-16 04:12:25',2479,87,'2005-06-20 06:53:25',1,'2006-02-15 21:30:53'),(1581,'2005-06-16 04:28:45',4004,109,'2005-06-18 07:07:45',1,'2006-02-15 21:30:53'),(1582,'2005-06-16 04:31:57',163,536,'2005-06-22 01:25:57',1,'2006-02-15 21:30:53'),(1583,'2005-06-16 04:44:23',270,37,'2005-06-18 03:44:23',1,'2006-02-15 21:30:53'),(1584,'2005-06-16 04:50:50',3545,434,'2005-06-21 22:51:50',2,'2006-02-15 21:30:53'),(1585,'2005-06-16 04:51:13',1708,386,'2005-06-24 00:23:13',2,'2006-02-15 21:30:53'),(1586,'2005-06-16 04:51:18',769,140,'2005-06-21 06:54:18',2,'2006-02-15 21:30:53'),(1587,'2005-06-16 04:52:28',1781,62,'2005-06-23 07:36:28',1,'2006-02-15 21:30:53'),(1588,'2005-06-16 04:53:21',4472,322,'2005-06-25 07:29:21',2,'2006-02-15 21:30:53'),(1589,'2005-06-16 04:58:03',4307,293,'2005-06-24 08:36:03',1,'2006-02-15 21:30:53'),(1590,'2005-06-16 05:11:41',3685,98,'2005-06-23 10:11:41',1,'2006-02-15 21:30:53'),(1591,'2005-06-16 05:12:37',1648,83,'2005-06-25 06:28:37',2,'2006-02-15 21:30:53'),(1592,'2005-06-16 05:14:37',3798,187,'2005-06-20 10:52:37',2,'2006-02-15 21:30:53'),(1593,'2005-06-16 05:14:52',766,111,'2005-06-24 08:00:52',2,'2006-02-15 21:30:53'),(1594,'2005-06-16 05:15:12',3858,470,'2005-06-25 00:38:12',1,'2006-02-15 21:30:53'),(1595,'2005-06-16 05:23:46',1481,244,'2005-06-20 00:37:46',1,'2006-02-15 21:30:53'),(1596,'2005-06-16 05:30:58',2552,416,'2005-06-21 04:18:58',2,'2006-02-15 21:30:53'),(1597,'2005-06-16 05:47:03',743,432,'2005-06-18 04:21:03',1,'2006-02-15 21:30:53'),(1598,'2005-06-16 06:02:39',4171,314,'2005-06-23 09:09:39',1,'2006-02-15 21:30:53'),(1599,'2005-06-16 06:03:33',1476,215,'2005-06-21 07:46:33',2,'2006-02-15 21:30:53'),(1600,'2005-06-16 06:04:12',2264,196,'2005-06-19 09:39:12',2,'2006-02-15 21:30:53'),(1601,'2005-06-16 06:11:13',3115,428,'2005-06-21 08:57:13',2,'2006-02-15 21:30:53'),(1602,'2005-06-16 06:12:40',1777,441,'2005-06-19 03:50:40',2,'2006-02-15 21:30:53'),(1603,'2005-06-16 06:14:03',3308,395,'2005-06-17 06:04:03',2,'2006-02-15 21:30:53'),(1604,'2005-06-16 06:14:25',3226,272,'2005-06-17 03:53:25',2,'2006-02-15 21:30:53'),(1605,'2005-06-16 06:17:55',593,197,'2005-06-25 01:25:55',1,'2006-02-15 21:30:53'),(1606,'2005-06-16 06:18:31',4290,253,'2005-06-25 09:15:31',1,'2006-02-15 21:30:53'),(1607,'2005-06-16 06:25:35',3289,513,'2005-06-20 02:50:35',2,'2006-02-15 21:30:53'),(1608,'2005-06-16 06:28:57',2581,386,'2005-06-24 05:20:57',2,'2006-02-15 21:30:53'),(1609,'2005-06-16 06:34:59',2279,174,'2005-06-17 09:41:59',2,'2006-02-15 21:30:53'),(1610,'2005-06-16 06:36:33',3551,534,'2005-06-19 07:12:33',1,'2006-02-15 21:30:53'),(1611,'2005-06-16 06:41:35',1739,393,'2005-06-25 06:13:35',2,'2006-02-15 21:30:53'),(1612,'2005-06-16 06:52:05',3025,355,'2005-06-19 01:51:05',1,'2006-02-15 21:30:53'),(1613,'2005-06-16 06:55:10',4462,573,'2005-06-24 12:08:10',1,'2006-02-15 21:30:53'),(1614,'2005-06-16 06:58:02',23,489,'2005-06-23 11:24:02',1,'2006-02-15 21:30:53'),(1615,'2005-06-16 07:00:28',3894,362,'2005-06-25 08:53:28',1,'2006-02-15 21:30:53'),(1616,'2005-06-16 07:04:52',2296,204,'2005-06-24 04:06:52',1,'2006-02-15 21:30:53'),(1617,'2005-06-16 07:06:06',1382,83,'2005-06-25 03:35:06',1,'2006-02-15 21:30:53'),(1618,'2005-06-16 07:08:38',3741,134,'2005-06-25 05:26:38',2,'2006-02-15 21:30:53'),(1619,'2005-06-16 07:14:13',4258,232,'2005-06-19 05:50:13',2,'2006-02-15 21:30:53'),(1620,'2005-06-16 07:21:30',389,561,'2005-06-17 09:46:30',1,'2006-02-15 21:30:53'),(1621,'2005-06-16 07:24:12',3677,177,'2005-06-19 02:35:12',1,'2006-02-15 21:30:53'),(1622,'2005-06-16 07:33:18',1774,311,'2005-06-21 07:23:18',1,'2006-02-15 21:30:53'),(1623,'2005-06-16 07:48:50',4485,378,'2005-06-17 03:53:50',2,'2006-02-15 21:30:53'),(1624,'2005-06-16 07:48:57',1066,314,'2005-06-17 05:52:57',1,'2006-02-15 21:30:53'),(1625,'2005-06-16 07:49:08',3367,39,'2005-06-24 09:08:08',2,'2006-02-15 21:30:53'),(1626,'2005-06-16 07:49:47',694,260,'2005-06-22 13:32:47',2,'2006-02-15 21:30:53'),(1627,'2005-06-16 07:51:09',4135,468,'2005-06-24 02:24:09',1,'2006-02-15 21:30:53'),(1628,'2005-06-16 07:52:55',868,427,'2005-06-25 11:09:55',1,'2006-02-15 21:30:53'),(1629,'2005-06-16 07:53:47',4375,339,'2005-06-22 13:03:47',1,'2006-02-15 21:30:53'),(1630,'2005-06-16 07:55:01',2413,130,'2005-06-19 06:38:01',1,'2006-02-15 21:30:53'),(1631,'2005-06-16 08:01:02',2466,5,'2005-06-19 09:04:02',1,'2006-02-15 21:30:53'),(1632,'2005-06-16 08:03:42',1518,319,'2005-06-17 03:40:42',1,'2006-02-15 21:30:53'),(1633,'2005-06-16 08:08:40',280,4,'2005-06-17 11:12:40',1,'2006-02-15 21:30:53'),(1634,'2005-06-16 08:16:05',3990,121,'2005-06-17 04:49:05',1,'2006-02-15 21:30:53'),(1635,'2005-06-16 08:26:56',1187,566,'2005-06-25 06:17:56',2,'2006-02-15 21:30:53'),(1636,'2005-06-16 08:28:54',2052,574,'2005-06-24 09:23:54',1,'2006-02-15 21:30:53'),(1637,'2005-06-16 08:29:58',906,212,'2005-06-23 04:55:58',2,'2006-02-15 21:30:53'),(1638,'2005-06-16 08:32:36',1905,181,'2005-06-18 07:11:36',2,'2006-02-15 21:30:53'),(1639,'2005-06-16 08:33:39',176,450,'2005-06-25 07:51:39',1,'2006-02-15 21:30:53'),(1640,'2005-06-16 08:35:39',443,86,'2005-06-17 05:37:39',2,'2006-02-15 21:30:53'),(1641,'2005-06-16 08:46:26',2925,259,'2005-06-24 14:39:26',2,'2006-02-15 21:30:53'),(1642,'2005-06-16 08:54:15',3875,287,'2005-06-18 12:36:15',1,'2006-02-15 21:30:53'),(1643,'2005-06-16 08:55:35',1352,484,'2005-06-21 05:36:35',2,'2006-02-15 21:30:53'),(1644,'2005-06-16 08:58:18',749,596,'2005-06-21 06:47:18',1,'2006-02-15 21:30:53'),(1645,'2005-06-16 09:10:06',4434,234,'2005-06-23 04:36:06',2,'2006-02-15 21:30:53'),(1646,'2005-06-16 09:12:53',4037,131,'2005-06-24 08:03:53',2,'2006-02-15 21:30:53'),(1647,'2005-06-16 09:14:58',1936,454,'2005-06-17 10:46:58',1,'2006-02-15 21:30:53'),(1648,'2005-06-16 09:17:07',457,427,'2005-06-24 06:31:07',2,'2006-02-15 21:30:53'),(1649,'2005-06-16 09:20:33',390,352,'2005-06-18 13:42:33',1,'2006-02-15 21:30:53'),(1650,'2005-06-16 09:23:20',4125,299,'2005-06-23 11:25:20',1,'2006-02-15 21:30:53'),(1651,'2005-06-16 09:24:38',4444,524,'2005-06-17 09:50:38',2,'2006-02-15 21:30:53'),(1652,'2005-06-16 09:31:37',3416,533,'2005-06-19 14:02:37',2,'2006-02-15 21:30:53'),(1653,'2005-06-16 09:34:45',2294,517,'2005-06-18 09:13:45',1,'2006-02-15 21:30:53'),(1654,'2005-06-16 09:42:48',1039,348,'2005-06-20 14:28:48',2,'2006-02-15 21:30:53'),(1655,'2005-06-16 09:51:39',3693,488,'2005-06-23 14:53:39',2,'2006-02-15 21:30:53'),(1656,'2005-06-16 10:05:40',2253,31,'2005-06-22 06:26:40',1,'2006-02-15 21:30:53'),(1657,'2005-06-16 10:06:49',953,209,'2005-06-22 10:34:49',2,'2006-02-15 21:30:53'),(1658,'2005-06-16 10:07:10',272,568,'2005-06-21 09:23:10',2,'2006-02-15 21:30:53'),(1659,'2005-06-16 10:11:46',1182,296,'2005-06-20 13:51:46',1,'2006-02-15 21:30:53'),(1660,'2005-06-16 10:12:55',2374,238,'2005-06-18 05:56:55',2,'2006-02-15 21:30:53'),(1661,'2005-06-16 10:12:57',2403,508,'2005-06-24 09:23:57',2,'2006-02-15 21:30:53'),(1662,'2005-06-16 10:13:35',3552,378,'2005-06-23 13:54:35',1,'2006-02-15 21:30:53'),(1663,'2005-06-16 10:14:15',1558,186,'2005-06-23 08:34:15',2,'2006-02-15 21:30:53'),(1664,'2005-06-16 10:15:20',2464,216,'2005-06-18 12:11:20',2,'2006-02-15 21:30:53'),(1665,'2005-06-16 10:16:02',2613,490,'2005-06-23 09:32:02',1,'2006-02-15 21:30:53'),(1666,'2005-06-16 10:17:19',4019,557,'2005-06-21 05:50:19',1,'2006-02-15 21:30:53'),(1667,'2005-06-16 10:18:59',2362,333,'2005-06-22 14:45:59',2,'2006-02-15 21:30:53'),(1668,'2005-06-16 10:19:52',2483,569,'2005-06-23 12:22:52',2,'2006-02-15 21:30:53'),(1669,'2005-06-16 10:20:20',360,73,'2005-06-18 04:26:20',1,'2006-02-15 21:30:53'),(1670,'2005-06-16 10:26:33',2066,328,'2005-06-19 07:15:33',1,'2006-02-15 21:30:53'),(1671,'2005-06-16 10:30:22',3805,135,'2005-06-22 11:08:22',2,'2006-02-15 21:30:53'),(1672,'2005-06-16 10:37:34',4206,216,'2005-06-23 05:30:34',1,'2006-02-15 21:30:53'),(1673,'2005-06-16 10:40:17',907,534,'2005-06-18 16:13:17',1,'2006-02-15 21:30:53'),(1674,'2005-06-16 10:57:00',3606,234,'2005-06-18 07:31:00',2,'2006-02-15 21:30:53'),(1675,'2005-06-16 11:04:47',3048,371,'2005-06-24 06:56:47',2,'2006-02-15 21:30:53'),(1676,'2005-06-16 11:06:09',931,171,'2005-06-21 05:17:09',1,'2006-02-15 21:30:53'),(1677,'2005-06-16 11:07:11',240,191,'2005-06-23 10:50:11',1,'2006-02-15 21:30:53'),(1678,'2005-06-16 11:08:28',1856,352,'2005-06-19 15:44:28',1,'2006-02-15 21:30:53'),(1679,'2005-06-16 11:11:01',3959,227,'2005-06-23 08:11:01',1,'2006-02-15 21:30:53'),(1680,'2005-06-16 11:17:22',4441,469,'2005-06-25 15:55:22',2,'2006-02-15 21:30:53'),(1681,'2005-06-16 11:38:17',530,255,'2005-06-19 13:05:17',1,'2006-02-15 21:30:53'),(1682,'2005-06-16 11:54:25',2165,476,'2005-06-22 11:09:25',2,'2006-02-15 21:30:53'),(1683,'2005-06-16 11:54:55',2361,494,'2005-06-18 08:51:55',2,'2006-02-15 21:30:53'),(1684,'2005-06-16 11:57:34',806,485,'2005-06-19 09:12:34',1,'2006-02-15 21:30:53'),(1685,'2005-06-16 12:06:57',2754,85,'2005-06-21 16:53:57',2,'2006-02-15 21:30:53'),(1686,'2005-06-16 12:08:20',3883,529,'2005-06-20 10:59:20',1,'2006-02-15 21:30:53'),(1687,'2005-06-16 12:09:20',3686,140,'2005-06-18 06:18:20',2,'2006-02-15 21:30:53'),(1688,'2005-06-16 12:11:20',383,49,'2005-06-18 08:39:20',2,'2006-02-15 21:30:53'),(1689,'2005-06-16 12:18:41',4036,48,'2005-06-24 13:33:41',2,'2006-02-15 21:30:53'),(1690,'2005-06-16 12:24:18',1099,286,'2005-06-25 15:00:18',1,'2006-02-15 21:30:53'),(1691,'2005-06-16 12:24:28',4438,492,'2005-06-24 08:24:28',1,'2006-02-15 21:30:53'),(1692,'2005-06-16 12:30:19',3544,514,'2005-06-17 17:31:19',2,'2006-02-15 21:30:53'),(1693,'2005-06-16 12:39:51',2386,421,'2005-06-19 16:19:51',2,'2006-02-15 21:30:53'),(1694,'2005-06-16 12:40:23',147,532,'2005-06-20 09:18:23',2,'2006-02-15 21:30:53'),(1695,'2005-06-16 12:40:28',4436,159,'2005-06-22 13:41:28',1,'2006-02-15 21:30:53'),(1696,'2005-06-16 12:50:01',3928,502,'2005-06-24 12:08:01',2,'2006-02-15 21:30:53'),(1697,'2005-06-16 12:55:20',1801,340,'2005-06-23 17:41:20',2,'2006-02-15 21:30:53'),(1698,'2005-06-16 13:04:42',1474,407,'2005-06-21 15:54:42',1,'2006-02-15 21:30:53'),(1699,'2005-06-16 13:05:09',4507,27,'2005-06-17 09:53:09',2,'2006-02-15 21:30:53'),(1700,'2005-06-16 13:18:23',4251,456,'2005-06-21 16:46:23',2,'2006-02-15 21:30:53'),(1701,'2005-06-16 13:18:48',3000,315,'2005-06-22 15:00:48',1,'2006-02-15 21:30:53'),(1702,'2005-06-16 13:21:05',1822,242,'2005-06-19 10:13:05',2,'2006-02-15 21:30:53'),(1703,'2005-06-16 13:28:44',2346,589,'2005-06-17 11:03:44',1,'2006-02-15 21:30:53'),(1704,'2005-06-16 13:45:56',4425,488,'2005-06-24 18:12:56',1,'2006-02-15 21:30:53'),(1705,'2005-06-16 13:59:42',123,564,'2005-06-18 19:54:42',2,'2006-02-15 21:30:53'),(1706,'2005-06-16 14:01:02',2935,26,'2005-06-25 19:29:02',1,'2006-02-15 21:30:53'),(1707,'2005-06-16 14:01:27',185,4,'2005-06-18 09:35:27',1,'2006-02-15 21:30:53'),(1708,'2005-06-16 14:08:44',2259,478,'2005-06-19 08:35:44',1,'2006-02-15 21:30:53'),(1709,'2005-06-16 14:10:15',3501,426,'2005-06-24 16:38:15',2,'2006-02-15 21:30:53'),(1710,'2005-06-16 14:11:24',144,77,'2005-06-22 15:26:24',1,'2006-02-15 21:30:53'),(1711,'2005-06-16 14:11:52',273,347,'2005-06-25 08:49:52',1,'2006-02-15 21:30:53'),(1712,'2005-06-16 14:25:09',1363,535,'2005-06-17 17:55:09',1,'2006-02-15 21:30:53'),(1713,'2005-06-16 14:28:33',2580,164,'2005-06-18 09:02:33',1,'2006-02-15 21:30:53'),(1714,'2005-06-16 14:29:59',535,477,'2005-06-24 17:27:59',2,'2006-02-15 21:30:53'),(1715,'2005-06-16 14:37:12',1594,203,'2005-06-20 19:36:12',1,'2006-02-15 21:30:53'),(1716,'2005-06-16 14:39:31',20,24,'2005-06-19 15:37:31',1,'2006-02-15 21:30:53'),(1717,'2005-06-16 14:47:16',3007,277,'2005-06-19 10:11:16',2,'2006-02-15 21:30:53'),(1718,'2005-06-16 14:52:02',288,516,'2005-06-25 10:53:02',2,'2006-02-15 21:30:53'),(1719,'2005-06-16 14:55:53',2699,582,'2005-06-18 14:12:53',1,'2006-02-15 21:30:53'),(1720,'2005-06-16 15:00:14',3500,543,'2005-06-21 13:57:14',2,'2006-02-15 21:30:53'),(1721,'2005-06-16 15:01:36',3521,485,'2005-06-23 10:48:36',1,'2006-02-15 21:30:53'),(1722,'2005-06-16 15:12:52',2142,364,'2005-06-19 13:01:52',2,'2006-02-15 21:30:53'),(1723,'2005-06-16 15:14:18',2417,259,'2005-06-23 15:45:18',2,'2006-02-15 21:30:53'),(1724,'2005-06-16 15:15:43',61,146,'2005-06-23 10:14:43',2,'2006-02-15 21:30:53'),(1725,'2005-06-16 15:18:57',726,1,'2005-06-17 21:05:57',1,'2006-02-15 21:30:53'),(1726,'2005-06-16 15:19:10',116,3,'2005-06-25 11:39:10',2,'2006-02-15 21:30:53'),(1727,'2005-06-16 15:21:47',2951,457,'2005-06-17 14:12:47',1,'2006-02-15 21:30:53'),(1728,'2005-06-16 15:29:29',1366,59,'2005-06-23 12:47:29',1,'2006-02-15 21:30:53'),(1729,'2005-06-16 15:29:47',3364,523,'2005-06-25 20:55:47',2,'2006-02-15 21:30:53'),(1730,'2005-06-16 15:30:01',1372,390,'2005-06-19 12:56:01',1,'2006-02-15 21:30:53'),(1731,'2005-06-16 15:32:12',3698,344,'2005-06-19 18:58:12',2,'2006-02-15 21:30:53'),(1732,'2005-06-16 15:34:41',2287,129,'2005-06-18 13:05:41',1,'2006-02-15 21:30:53'),(1733,'2005-06-16 15:37:07',542,480,'2005-06-23 15:53:07',2,'2006-02-15 21:30:53'),(1734,'2005-06-16 15:49:30',1113,94,'2005-06-22 13:52:30',2,'2006-02-15 21:30:53'),(1735,'2005-06-16 15:51:52',97,4,'2005-06-20 13:27:52',1,'2006-02-15 21:30:53'),(1736,'2005-06-16 15:52:32',3771,139,'2005-06-21 14:39:32',2,'2006-02-15 21:30:53'),(1737,'2005-06-16 15:59:44',4029,467,'2005-06-23 12:22:44',1,'2006-02-15 21:30:53'),(1738,'2005-06-16 16:07:27',3260,177,'2005-06-20 15:22:27',1,'2006-02-15 21:30:53'),(1739,'2005-06-16 16:09:38',2557,450,'2005-06-22 18:04:38',2,'2006-02-15 21:30:53'),(1740,'2005-06-16 16:29:00',2282,324,'2005-06-20 14:07:00',2,'2006-02-15 21:30:53'),(1741,'2005-06-16 16:31:37',3722,176,'2005-06-25 21:38:37',1,'2006-02-15 21:30:53'),(1742,'2005-06-16 16:37:48',2772,576,'2005-06-17 19:47:48',2,'2006-02-15 21:30:53'),(1743,'2005-06-16 16:38:10',2777,258,'2005-06-17 13:13:10',1,'2006-02-15 21:30:53'),(1744,'2005-06-16 16:39:58',3075,230,'2005-06-18 19:50:58',2,'2006-02-15 21:30:53'),(1745,'2005-06-16 16:41:16',2812,178,'2005-06-23 21:02:16',2,'2006-02-15 21:30:53'),(1746,'2005-06-16 16:41:19',4272,385,'2005-06-19 11:28:19',2,'2006-02-15 21:30:53'),(1747,'2005-06-16 16:53:33',1661,273,'2005-06-25 21:48:33',2,'2006-02-15 21:30:53'),(1748,'2005-06-16 16:54:03',2434,473,'2005-06-18 20:11:03',1,'2006-02-15 21:30:53'),(1749,'2005-06-16 16:56:00',1554,283,'2005-06-21 21:02:00',2,'2006-02-15 21:30:53'),(1750,'2005-06-16 16:57:36',1103,321,'2005-06-25 21:51:36',1,'2006-02-15 21:30:53'),(1751,'2005-06-16 17:00:14',138,123,'2005-06-17 12:12:14',2,'2006-02-15 21:30:53'),(1752,'2005-06-16 17:02:55',3529,12,'2005-06-23 19:09:55',2,'2006-02-15 21:30:53'),(1753,'2005-06-16 17:08:17',3817,249,'2005-06-21 21:47:17',2,'2006-02-15 21:30:53'),(1754,'2005-06-16 17:13:23',4106,25,'2005-06-22 20:46:23',1,'2006-02-15 21:30:53'),(1755,'2005-06-16 17:18:44',1721,117,'2005-06-17 16:54:44',1,'2006-02-15 21:30:53'),(1756,'2005-06-16 17:22:33',1401,571,'2005-06-21 16:52:33',1,'2006-02-15 21:30:53'),(1757,'2005-06-16 17:32:24',4491,510,'2005-06-18 13:12:24',1,'2006-02-15 21:30:53'),(1758,'2005-06-16 17:39:39',2654,474,'2005-06-25 13:06:39',1,'2006-02-15 21:30:53'),(1759,'2005-06-16 17:46:37',1402,430,'2005-06-24 19:40:37',2,'2006-02-15 21:30:53'),(1760,'2005-06-16 17:48:37',3929,261,'2005-06-18 16:01:37',2,'2006-02-15 21:30:53'),(1761,'2005-06-16 17:49:57',1570,521,'2005-06-17 21:03:57',2,'2006-02-15 21:30:53'),(1762,'2005-06-16 17:50:19',3050,116,'2005-06-19 21:35:19',2,'2006-02-15 21:30:53'),(1763,'2005-06-16 17:51:01',1941,389,'2005-06-20 17:27:01',1,'2006-02-15 21:30:53'),(1764,'2005-06-16 17:51:54',705,392,'2005-06-21 20:36:54',2,'2006-02-15 21:30:53'),(1765,'2005-06-16 17:56:10',822,273,'2005-06-19 23:40:10',2,'2006-02-15 21:30:53'),(1766,'2005-06-16 17:59:37',2041,118,'2005-06-18 16:32:37',2,'2006-02-15 21:30:53'),(1767,'2005-06-16 18:01:36',1162,205,'2005-06-18 12:39:36',2,'2006-02-15 21:30:53'),(1768,'2005-06-16 18:02:06',2131,131,'2005-06-23 17:19:06',2,'2006-02-15 21:30:53'),(1769,'2005-06-16 18:07:48',1229,397,'2005-06-22 12:39:48',1,'2006-02-15 21:30:53'),(1770,'2005-06-16 18:07:55',1681,359,'2005-06-23 23:49:55',2,'2006-02-15 21:30:53'),(1771,'2005-06-16 18:12:17',1769,416,'2005-06-18 16:11:17',1,'2006-02-15 21:30:53'),(1772,'2005-06-16 18:12:54',1269,525,'2005-06-24 19:55:54',1,'2006-02-15 21:30:53'),(1773,'2005-06-16 18:13:43',4396,462,'2005-06-24 17:43:43',2,'2006-02-15 21:30:53'),(1774,'2005-06-16 18:27:52',3058,442,'2005-06-21 13:35:52',2,'2006-02-15 21:30:53'),(1775,'2005-06-16 18:28:19',1922,123,'2005-06-25 13:09:19',2,'2006-02-15 21:30:53'),(1776,'2005-06-16 18:46:58',1404,472,'2005-06-24 16:01:58',1,'2006-02-15 21:30:53'),(1777,'2005-06-16 18:52:12',3325,49,'2005-06-25 13:55:12',1,'2006-02-15 21:30:53'),(1778,'2005-06-16 18:54:48',2512,341,'2005-06-22 16:08:48',2,'2006-02-15 21:30:53'),(1779,'2005-06-16 18:55:11',1044,438,'2005-06-17 20:11:11',1,'2006-02-15 21:30:53'),(1780,'2005-06-16 19:11:45',146,352,'2005-06-19 15:34:45',2,'2006-02-15 21:30:53'),(1781,'2005-06-16 19:20:24',2841,429,'2005-06-25 17:02:24',2,'2006-02-15 21:30:53'),(1782,'2005-06-16 19:21:12',1820,498,'2005-06-22 16:03:12',2,'2006-02-15 21:30:53'),(1783,'2005-06-16 19:23:23',50,18,'2005-06-18 00:57:23',1,'2006-02-15 21:30:53'),(1784,'2005-06-16 19:25:32',3792,134,'2005-06-20 00:00:32',2,'2006-02-15 21:30:53'),(1785,'2005-06-16 19:27:12',3413,50,'2005-06-24 19:25:12',1,'2006-02-15 21:30:53'),(1786,'2005-06-16 19:30:54',263,323,'2005-06-19 14:24:54',1,'2006-02-15 21:30:53'),(1787,'2005-06-16 19:30:59',3823,546,'2005-06-21 18:25:59',2,'2006-02-15 21:30:53'),(1788,'2005-06-16 19:47:18',3794,357,'2005-06-22 23:10:18',1,'2006-02-15 21:30:53'),(1789,'2005-06-16 19:49:18',4264,105,'2005-06-23 17:07:18',2,'2006-02-15 21:30:53'),(1790,'2005-06-16 19:58:40',1070,158,'2005-06-17 19:31:40',2,'2006-02-15 21:30:53'),(1791,'2005-06-16 20:04:28',301,76,'2005-06-23 22:30:28',1,'2006-02-15 21:30:53'),(1792,'2005-06-16 20:04:50',3800,351,'2005-06-26 00:57:50',1,'2006-02-15 21:30:53'),(1793,'2005-06-16 20:07:27',4356,230,'2005-06-19 20:55:27',1,'2006-02-15 21:30:53'),(1794,'2005-06-16 20:08:37',497,452,'2005-06-22 01:54:37',1,'2006-02-15 21:30:53'),(1795,'2005-06-16 20:09:01',536,56,'2005-06-24 17:50:01',2,'2006-02-15 21:30:53'),(1796,'2005-06-16 20:10:43',3229,283,'2005-06-20 19:12:43',1,'2006-02-15 21:30:53'),(1797,'2005-06-16 20:13:03',3435,275,'2005-06-22 22:56:03',1,'2006-02-15 21:30:53'),(1798,'2005-06-16 20:16:15',1654,429,'2005-06-20 22:23:15',2,'2006-02-15 21:30:53'),(1799,'2005-06-16 20:17:20',2847,505,'2005-06-20 23:55:20',1,'2006-02-15 21:30:53'),(1800,'2005-06-16 20:18:46',2058,149,'2005-06-20 17:12:46',1,'2006-02-15 21:30:53'),(1801,'2005-06-16 20:21:53',1015,10,'2005-06-18 23:18:53',1,'2006-02-15 21:30:53'),(1802,'2005-06-16 20:23:30',4174,455,'2005-06-21 20:02:30',1,'2006-02-15 21:30:53'),(1803,'2005-06-16 20:32:47',3784,127,'2005-06-21 02:03:47',1,'2006-02-15 21:30:53'),(1804,'2005-06-16 20:33:15',1152,570,'2005-06-18 02:31:15',2,'2006-02-15 21:30:53'),(1805,'2005-06-16 20:36:00',3962,208,'2005-06-17 16:27:00',1,'2006-02-15 21:30:53'),(1806,'2005-06-16 20:41:57',2053,45,'2005-06-18 19:25:57',2,'2006-02-15 21:30:53'),(1807,'2005-06-16 20:58:59',1174,338,'2005-06-20 21:31:59',2,'2006-02-15 21:30:53'),(1808,'2005-06-16 20:59:35',2424,466,'2005-06-24 15:31:35',1,'2006-02-15 21:30:53'),(1809,'2005-06-16 21:00:20',1071,517,'2005-06-25 20:25:20',1,'2006-02-15 21:30:53'),(1810,'2005-06-16 21:06:00',2368,7,'2005-06-21 21:24:00',1,'2006-02-15 21:30:53'),(1811,'2005-06-16 21:06:20',3700,235,'2005-06-21 21:59:20',2,'2006-02-15 21:30:53'),(1812,'2005-06-16 21:08:46',751,37,'2005-06-21 15:44:46',2,'2006-02-15 21:30:53'),(1813,'2005-06-16 21:11:00',1236,259,'2005-06-24 15:30:00',1,'2006-02-15 21:30:53'),(1814,'2005-06-16 21:15:22',39,144,'2005-06-23 17:00:22',1,'2006-02-15 21:30:53'),(1815,'2005-06-16 21:16:07',1551,84,'2005-06-17 16:37:07',2,'2006-02-15 21:30:53'),(1816,'2005-06-16 21:20:41',2861,594,'2005-06-18 02:21:41',1,'2006-02-15 21:30:53'),(1817,'2005-06-16 21:20:52',1354,574,'2005-06-19 16:24:52',2,'2006-02-15 21:30:53'),(1818,'2005-06-16 21:30:34',1218,63,'2005-06-20 03:27:34',2,'2006-02-15 21:30:53'),(1819,'2005-06-16 21:32:50',1689,386,'2005-06-26 01:11:50',1,'2006-02-15 21:30:53'),(1820,'2005-06-16 21:34:50',3672,120,'2005-06-20 16:50:50',1,'2006-02-15 21:30:53'),(1821,'2005-06-16 21:42:49',3207,468,'2005-06-20 16:25:49',2,'2006-02-15 21:30:53'),(1822,'2005-06-16 21:43:45',674,86,'2005-06-17 21:37:45',1,'2006-02-15 21:30:53'),(1823,'2005-06-16 21:48:16',3871,448,'2005-06-22 03:09:16',1,'2006-02-15 21:30:53'),(1824,'2005-06-16 21:51:04',2269,575,'2005-06-18 18:12:04',1,'2006-02-15 21:30:53'),(1825,'2005-06-16 21:53:05',2908,55,'2005-06-20 17:22:05',2,'2006-02-15 21:30:53'),(1826,'2005-06-16 21:53:52',421,578,'2005-06-25 18:46:52',2,'2006-02-15 21:30:53'),(1827,'2005-06-16 21:54:40',3804,423,'2005-06-19 21:28:40',2,'2006-02-15 21:30:53'),(1828,'2005-06-16 22:04:34',316,68,'2005-06-20 21:07:34',2,'2006-02-15 21:30:53'),(1829,'2005-06-16 22:14:21',617,293,'2005-06-21 16:51:21',1,'2006-02-15 21:30:53'),(1830,'2005-06-16 22:18:43',4010,499,'2005-06-23 21:14:43',2,'2006-02-15 21:30:53'),(1831,'2005-06-16 22:22:17',2610,383,'2005-06-25 23:23:17',2,'2006-02-15 21:30:53'),(1832,'2005-06-16 22:35:20',500,220,'2005-06-19 03:09:20',1,'2006-02-15 21:30:53'),(1833,'2005-06-16 22:45:03',1337,121,'2005-06-20 22:02:03',2,'2006-02-15 21:30:53'),(1834,'2005-06-16 22:49:08',4018,189,'2005-06-22 21:08:08',1,'2006-02-15 21:30:53'),(1835,'2005-06-16 23:05:36',1482,112,'2005-06-19 04:46:36',1,'2006-02-15 21:30:53'),(1836,'2005-06-16 23:13:05',2753,176,'2005-06-24 01:40:05',2,'2006-02-15 21:30:53'),(1837,'2005-06-16 23:16:15',1259,309,'2005-06-21 21:54:15',1,'2006-02-15 21:30:53'),(1838,'2005-06-16 23:20:16',513,31,'2005-06-20 02:34:16',1,'2006-02-15 21:30:53'),(1839,'2005-06-16 23:22:22',2750,223,'2005-06-23 00:33:22',1,'2006-02-15 21:30:53'),(1840,'2005-06-16 23:39:34',340,404,'2005-06-21 23:36:34',1,'2006-02-15 21:30:53'),(1841,'2005-06-16 23:44:13',2363,6,'2005-06-22 04:09:13',1,'2006-02-15 21:30:53'),(1842,'2005-06-16 23:45:59',1472,426,'2005-06-26 05:31:59',1,'2006-02-15 21:30:53'),(1843,'2005-06-16 23:53:42',2714,132,'2005-06-22 18:33:42',2,'2006-02-15 21:30:53'),(1844,'2005-06-16 23:53:53',2307,454,'2005-06-22 02:19:53',2,'2006-02-15 21:30:53'),(1845,'2005-06-16 23:56:11',3395,215,'2005-06-19 01:41:11',2,'2006-02-15 21:30:53'),(1846,'2005-06-17 00:02:44',1725,422,'2005-06-18 23:47:44',2,'2006-02-15 21:30:53'),(1847,'2005-06-17 00:05:22',1189,363,'2005-06-20 21:09:22',1,'2006-02-15 21:30:53'),(1848,'2005-06-17 00:07:07',3797,526,'2005-06-21 21:41:07',2,'2006-02-15 21:30:53'),(1849,'2005-06-17 00:13:19',2507,341,'2005-06-23 18:37:19',2,'2006-02-15 21:30:53'),(1850,'2005-06-17 00:31:35',761,517,'2005-06-25 05:19:35',1,'2006-02-15 21:30:53'),(1851,'2005-06-17 00:32:26',1121,451,'2005-06-22 19:54:26',2,'2006-02-15 21:30:53'),(1852,'2005-06-17 00:38:20',4122,271,'2005-06-22 20:04:20',2,'2006-02-15 21:30:53'),(1853,'2005-06-17 00:39:54',2949,301,'2005-06-19 00:22:54',2,'2006-02-15 21:30:53'),(1854,'2005-06-17 00:43:57',119,37,'2005-06-23 05:49:57',1,'2006-02-15 21:30:53'),(1855,'2005-06-17 00:54:58',4457,492,'2005-06-20 19:29:58',1,'2006-02-15 21:30:53'),(1856,'2005-06-17 01:02:00',3034,161,'2005-06-19 21:29:00',2,'2006-02-15 21:30:53'),(1857,'2005-06-17 01:12:58',4257,427,'2005-06-21 04:49:58',1,'2006-02-15 21:30:53'),(1858,'2005-06-17 01:13:11',3200,99,'2005-06-18 21:33:11',2,'2006-02-15 21:30:53'),(1859,'2005-06-17 01:13:38',3405,533,'2005-06-18 03:13:38',1,'2006-02-15 21:30:53'),(1860,'2005-06-17 01:17:12',1853,293,'2005-06-21 22:35:12',1,'2006-02-15 21:30:53'),(1861,'2005-06-17 01:17:31',135,454,'2005-06-25 02:11:31',1,'2006-02-15 21:30:53'),(1862,'2005-06-17 01:29:30',3299,553,'2005-06-25 20:43:30',1,'2006-02-15 21:30:53'),(1863,'2005-06-17 01:31:46',4466,550,'2005-06-26 02:09:46',2,'2006-02-15 21:30:53'),(1864,'2005-06-17 01:39:47',1815,130,'2005-06-24 19:39:47',2,'2006-02-15 21:30:53'),(1865,'2005-06-17 01:49:36',2657,526,'2005-06-23 21:13:36',1,'2006-02-15 21:30:53'),(1866,'2005-06-17 01:53:19',2579,575,'2005-06-19 06:14:19',2,'2006-02-15 21:30:53'),(1867,'2005-06-17 02:01:37',3537,415,'2005-06-25 04:52:37',2,'2006-02-15 21:30:53'),(1868,'2005-06-17 02:03:22',2412,380,'2005-06-25 04:38:22',1,'2006-02-15 21:30:53'),(1869,'2005-06-17 02:08:00',871,351,'2005-06-19 21:43:00',1,'2006-02-15 21:30:53'),(1870,'2005-06-17 02:24:36',895,191,'2005-06-17 23:04:36',2,'2006-02-15 21:30:53'),(1871,'2005-06-17 02:25:12',481,204,'2005-06-23 03:16:12',2,'2006-02-15 21:30:53'),(1872,'2005-06-17 02:27:03',3596,206,'2005-06-20 22:41:03',2,'2006-02-15 21:30:53'),(1873,'2005-06-17 02:38:28',2933,71,'2005-06-23 04:39:28',1,'2006-02-15 21:30:53'),(1874,'2005-06-17 02:39:20',3884,30,'2005-06-24 04:41:20',2,'2006-02-15 21:30:53'),(1875,'2005-06-17 02:45:10',1652,528,'2005-06-22 22:54:10',2,'2006-02-15 21:30:53'),(1876,'2005-06-17 02:50:51',384,459,'2005-06-18 07:21:51',1,'2006-02-15 21:30:53'),(1877,'2005-06-17 02:54:16',3404,261,'2005-06-25 21:51:16',2,'2006-02-15 21:30:53'),(1878,'2005-06-17 02:55:32',3319,381,'2005-06-21 03:44:32',1,'2006-02-15 21:30:53'),(1879,'2005-06-17 02:57:34',3983,343,'2005-06-19 00:00:34',1,'2006-02-15 21:30:53'),(1880,'2005-06-17 03:08:59',1133,289,'2005-06-19 07:16:59',1,'2006-02-15 21:30:53'),(1881,'2005-06-17 03:09:56',159,134,'2005-06-18 01:49:56',1,'2006-02-15 21:30:53'),(1882,'2005-06-17 03:17:21',1400,47,'2005-06-19 22:23:21',2,'2006-02-15 21:30:53'),(1883,'2005-06-17 03:18:51',3504,550,'2005-06-18 05:46:51',1,'2006-02-15 21:30:53'),(1884,'2005-06-17 03:19:20',4567,305,'2005-06-21 00:19:20',1,'2006-02-15 21:30:53'),(1885,'2005-06-17 03:35:59',740,588,'2005-06-21 05:57:59',2,'2006-02-15 21:30:53'),(1886,'2005-06-17 03:36:02',2367,505,'2005-06-19 08:12:02',2,'2006-02-15 21:30:53'),(1887,'2005-06-17 03:53:18',3591,32,'2005-06-25 07:37:18',2,'2006-02-15 21:30:53'),(1888,'2005-06-17 03:58:36',2872,405,'2005-06-22 09:28:36',1,'2006-02-15 21:30:53'),(1889,'2005-06-17 04:05:12',3909,572,'2005-06-26 04:13:12',1,'2006-02-15 21:30:53'),(1890,'2005-06-17 04:06:13',1764,447,'2005-06-22 07:46:13',2,'2006-02-15 21:30:53'),(1891,'2005-06-17 04:16:44',3576,109,'2005-06-24 07:20:44',1,'2006-02-15 21:30:53'),(1892,'2005-06-17 04:17:33',139,319,'2005-06-20 00:06:33',1,'2006-02-15 21:30:53'),(1893,'2005-06-17 04:18:37',3346,390,'2005-06-23 23:35:37',2,'2006-02-15 21:30:53'),(1894,'2005-06-17 04:18:48',3707,204,'2005-06-26 00:07:48',1,'2006-02-15 21:30:53'),(1895,'2005-06-17 04:25:12',680,30,'2005-06-26 08:44:12',1,'2006-02-15 21:30:53'),(1896,'2005-06-17 04:25:46',2077,270,'2005-06-26 09:37:46',1,'2006-02-15 21:30:53'),(1897,'2005-06-17 04:26:23',4142,422,'2005-06-25 09:32:23',2,'2006-02-15 21:30:53'),(1898,'2005-06-17 04:28:11',2873,143,'2005-06-25 07:04:11',2,'2006-02-15 21:30:53'),(1899,'2005-06-17 04:29:15',858,200,'2005-06-26 08:39:15',1,'2006-02-15 21:30:53'),(1900,'2005-06-17 04:29:58',1425,34,'2005-06-21 05:58:58',1,'2006-02-15 21:30:53'),(1901,'2005-06-17 04:35:19',2469,292,'2005-06-25 06:09:19',2,'2006-02-15 21:30:53'),(1902,'2005-06-17 04:35:52',2905,479,'2005-06-20 06:52:52',2,'2006-02-15 21:30:53'),(1903,'2005-06-17 04:37:20',1939,588,'2005-06-26 09:05:20',2,'2006-02-15 21:30:53'),(1904,'2005-06-17 04:45:41',2472,87,'2005-06-17 23:56:41',2,'2006-02-15 21:30:53'),(1905,'2005-06-17 04:51:43',1043,39,'2005-06-24 09:35:43',1,'2006-02-15 21:30:53'),(1906,'2005-06-17 04:53:35',1049,455,'2005-06-21 01:16:35',2,'2006-02-15 21:30:53'),(1907,'2005-06-17 05:08:27',988,66,'2005-06-23 09:13:27',1,'2006-02-15 21:30:53'),(1908,'2005-06-17 05:10:36',399,358,'2005-06-19 03:52:36',1,'2006-02-15 21:30:53'),(1909,'2005-06-17 05:11:04',2599,269,'2005-06-19 04:33:04',2,'2006-02-15 21:30:53'),(1910,'2005-06-17 05:11:27',3903,199,'2005-06-23 23:16:27',1,'2006-02-15 21:30:53'),(1911,'2005-06-17 05:15:15',910,3,'2005-06-24 11:05:15',2,'2006-02-15 21:30:53'),(1912,'2005-06-17 05:18:32',4136,538,'2005-06-20 10:01:32',2,'2006-02-15 21:30:53'),(1913,'2005-06-17 05:19:47',1825,116,'2005-06-21 03:39:47',1,'2006-02-15 21:30:53'),(1914,'2005-06-17 05:25:54',3406,450,'2005-06-24 04:25:54',2,'2006-02-15 21:30:53'),(1915,'2005-06-17 05:28:28',2620,393,'2005-06-21 07:12:28',2,'2006-02-15 21:30:53'),(1916,'2005-06-17 05:29:59',4428,429,'2005-06-26 05:35:59',2,'2006-02-15 21:30:53'),(1917,'2005-06-17 05:36:07',2667,400,'2005-06-24 01:44:07',1,'2006-02-15 21:30:53'),(1918,'2005-06-17 05:40:14',3749,310,'2005-06-21 08:53:14',2,'2006-02-15 21:30:53'),(1919,'2005-06-17 05:40:52',3855,197,'2005-06-23 05:58:52',1,'2006-02-15 21:30:53'),(1920,'2005-06-17 06:00:23',2199,75,'2005-06-24 04:49:23',1,'2006-02-15 21:30:53'),(1921,'2005-06-17 06:04:16',4369,417,'2005-06-23 05:26:16',2,'2006-02-15 21:30:53'),(1922,'2005-06-17 06:04:25',2484,343,'2005-06-18 09:15:25',2,'2006-02-15 21:30:53'),(1923,'2005-06-17 06:06:10',691,400,'2005-06-24 04:29:10',2,'2006-02-15 21:30:53'),(1924,'2005-06-17 06:13:34',2577,86,'2005-06-18 01:51:34',1,'2006-02-15 21:30:53'),(1925,'2005-06-17 06:16:47',3995,510,'2005-06-21 06:03:47',1,'2006-02-15 21:30:53'),(1926,'2005-06-17 06:24:30',3509,462,'2005-06-25 03:39:30',2,'2006-02-15 21:30:53'),(1927,'2005-06-17 06:48:19',3304,188,'2005-06-21 03:23:19',1,'2006-02-15 21:30:53'),(1928,'2005-06-17 06:48:31',3454,353,'2005-06-26 08:17:31',1,'2006-02-15 21:30:53'),(1929,'2005-06-17 06:49:30',573,327,'2005-06-22 12:07:30',2,'2006-02-15 21:30:53'),(1930,'2005-06-17 06:50:46',79,112,'2005-06-19 08:51:46',2,'2006-02-15 21:30:53'),(1931,'2005-06-17 06:51:56',1411,391,'2005-06-22 08:27:56',1,'2006-02-15 21:30:53'),(1932,'2005-06-17 06:54:41',3185,120,'2005-06-19 05:12:41',2,'2006-02-15 21:30:53'),(1933,'2005-06-17 06:54:42',980,13,'2005-06-26 02:00:42',1,'2006-02-15 21:30:53'),(1934,'2005-06-17 07:04:57',4000,16,'2005-06-25 12:21:57',2,'2006-02-15 21:30:53'),(1935,'2005-06-17 07:14:15',1962,295,'2005-06-20 05:59:15',1,'2006-02-15 21:30:53'),(1936,'2005-06-17 07:15:41',3037,213,'2005-06-18 11:37:41',2,'2006-02-15 21:30:53'),(1937,'2005-06-17 07:16:46',1266,385,'2005-06-21 04:22:46',2,'2006-02-15 21:30:53'),(1938,'2005-06-17 07:18:36',570,454,'2005-06-19 01:43:36',2,'2006-02-15 21:30:53'),(1939,'2005-06-17 07:26:45',605,11,'2005-06-25 13:06:45',2,'2006-02-15 21:30:53'),(1940,'2005-06-17 07:42:22',105,451,'2005-06-22 11:59:22',1,'2006-02-15 21:30:53'),(1941,'2005-06-17 07:42:45',1063,519,'2005-06-20 07:12:45',1,'2006-02-15 21:30:53'),(1942,'2005-06-17 07:43:39',261,143,'2005-06-25 02:24:39',1,'2006-02-15 21:30:53'),(1943,'2005-06-17 07:49:17',4327,144,'2005-06-20 03:47:17',1,'2006-02-15 21:30:53'),(1944,'2005-06-17 07:50:53',318,16,'2005-06-23 02:52:53',2,'2006-02-15 21:30:53'),(1945,'2005-06-17 07:51:26',3366,207,'2005-06-23 13:22:26',2,'2006-02-15 21:30:53'),(1946,'2005-06-17 07:58:39',2335,389,'2005-06-25 06:49:39',2,'2006-02-15 21:30:53'),(1947,'2005-06-17 08:02:20',3344,479,'2005-06-25 10:25:20',1,'2006-02-15 21:30:53'),(1948,'2005-06-17 08:06:53',46,89,'2005-06-21 05:00:53',1,'2006-02-15 21:30:53'),(1949,'2005-06-17 08:19:22',1478,208,'2005-06-25 08:43:22',1,'2006-02-15 21:30:53'),(1950,'2005-06-17 08:26:52',723,594,'2005-06-22 08:08:52',2,'2006-02-15 21:30:53'),(1951,'2005-06-17 08:30:35',955,123,'2005-06-20 10:43:35',2,'2006-02-15 21:30:53'),(1952,'2005-06-17 08:33:02',1823,338,'2005-06-21 14:00:02',2,'2006-02-15 21:30:53'),(1953,'2005-06-17 08:34:57',3549,405,'2005-06-24 09:38:57',2,'2006-02-15 21:30:53'),(1954,'2005-06-17 08:37:55',3203,533,'2005-06-20 02:55:55',2,'2006-02-15 21:30:53'),(1955,'2005-06-17 08:40:22',811,311,'2005-06-19 10:47:22',1,'2006-02-15 21:30:53'),(1956,'2005-06-17 08:43:32',1403,492,'2005-06-21 11:08:32',1,'2006-02-15 21:30:53'),(1957,'2005-06-17 08:50:58',2496,68,'2005-06-26 13:39:58',2,'2006-02-15 21:30:53'),(1958,'2005-06-17 08:52:01',1843,581,'2005-06-23 07:55:01',2,'2006-02-15 21:30:53'),(1959,'2005-06-17 08:54:10',1464,554,'2005-06-20 05:02:10',2,'2006-02-15 21:30:53'),(1960,'2005-06-17 08:59:57',2202,27,'2005-06-23 14:38:57',2,'2006-02-15 21:30:53'),(1961,'2005-06-17 09:02:58',2851,384,'2005-06-20 03:07:58',1,'2006-02-15 21:30:53'),(1962,'2005-06-17 09:08:58',4386,536,'2005-06-23 14:55:58',1,'2006-02-15 21:30:53'),(1963,'2005-06-17 09:09:31',1943,154,'2005-06-24 13:16:31',2,'2006-02-15 21:30:53'),(1964,'2005-06-17 09:10:09',3390,53,'2005-06-21 15:08:09',1,'2006-02-15 21:30:53'),(1965,'2005-06-17 09:17:39',480,256,'2005-06-18 12:35:39',2,'2006-02-15 21:30:53'),(1966,'2005-06-17 09:19:45',2085,6,'2005-06-20 11:19:45',1,'2006-02-15 21:30:53'),(1967,'2005-06-17 09:19:52',3225,558,'2005-06-21 03:35:52',1,'2006-02-15 21:30:53'),(1968,'2005-06-17 09:20:36',1139,246,'2005-06-18 11:06:36',2,'2006-02-15 21:30:53'),(1969,'2005-06-17 09:22:22',4450,337,'2005-06-21 05:31:22',2,'2006-02-15 21:30:53'),(1970,'2005-06-17 09:23:16',1358,303,'2005-06-22 09:40:16',2,'2006-02-15 21:30:53'),(1971,'2005-06-17 09:23:59',2870,357,'2005-06-25 13:20:59',2,'2006-02-15 21:30:53'),(1972,'2005-06-17 09:25:49',2758,526,'2005-06-24 09:59:49',2,'2006-02-15 21:30:53'),(1973,'2005-06-17 09:26:15',3669,256,'2005-06-21 10:18:15',1,'2006-02-15 21:30:53'),(1974,'2005-06-17 09:30:05',1979,111,'2005-06-21 12:10:05',1,'2006-02-15 21:30:53'),(1975,'2005-06-17 09:32:10',2520,468,'2005-06-23 03:50:10',2,'2006-02-15 21:30:53'),(1976,'2005-06-17 09:38:08',3631,184,'2005-06-23 07:23:08',2,'2006-02-15 21:30:53'),(1977,'2005-06-17 09:38:22',2468,459,'2005-06-23 14:19:22',2,'2006-02-15 21:30:53'),(1978,'2005-06-17 09:42:34',1590,278,'2005-06-20 09:13:34',2,'2006-02-15 21:30:53'),(1979,'2005-06-17 09:45:30',3470,45,'2005-06-20 10:52:30',1,'2006-02-15 21:30:53'),(1980,'2005-06-17 09:48:05',2985,328,'2005-06-23 14:43:05',1,'2006-02-15 21:30:53'),(1981,'2005-06-17 10:03:34',3186,526,'2005-06-20 13:14:34',2,'2006-02-15 21:30:53'),(1982,'2005-06-17 10:12:15',1091,566,'2005-06-20 13:56:15',1,'2006-02-15 21:30:53'),(1983,'2005-06-17 10:22:13',1955,365,'2005-06-24 05:04:13',1,'2006-02-15 21:30:53'),(1984,'2005-06-17 10:25:28',3417,380,'2005-06-23 08:18:28',2,'2006-02-15 21:30:53'),(1985,'2005-06-17 10:31:37',87,411,'2005-06-22 11:17:37',1,'2006-02-15 21:30:53'),(1986,'2005-06-17 10:34:59',2894,541,'2005-06-24 04:57:59',2,'2006-02-15 21:30:53'),(1987,'2005-06-17 10:40:36',110,479,'2005-06-23 14:23:36',1,'2006-02-15 21:30:53'),(1988,'2005-06-17 10:42:34',3054,261,'2005-06-25 11:47:34',2,'2006-02-15 21:30:53'),(1989,'2005-06-17 10:47:24',634,35,'2005-06-19 05:12:24',1,'2006-02-15 21:30:53'),(1990,'2005-06-17 10:48:44',1471,571,'2005-06-24 08:11:44',1,'2006-02-15 21:30:53'),(1991,'2005-06-17 10:49:23',3963,105,'2005-06-25 10:48:23',1,'2006-02-15 21:30:53'),(1992,'2005-06-17 10:58:53',636,233,'2005-06-19 08:42:53',2,'2006-02-15 21:30:53'),(1993,'2005-06-17 10:59:24',168,234,'2005-06-23 07:30:24',2,'2006-02-15 21:30:53'),(1994,'2005-06-17 11:07:06',2203,346,'2005-06-25 08:32:06',2,'2006-02-15 21:30:53'),(1995,'2005-06-17 11:11:14',1866,10,'2005-06-26 16:37:14',1,'2006-02-15 21:30:53'),(1996,'2005-06-17 11:17:45',3074,149,'2005-06-26 09:42:45',1,'2006-02-15 21:30:53'),(1997,'2005-06-17 11:19:43',846,411,'2005-06-19 14:18:43',1,'2006-02-15 21:30:53'),(1998,'2005-06-17 11:24:57',4365,562,'2005-06-26 09:48:57',1,'2006-02-15 21:30:53'),(1999,'2005-06-17 11:30:08',3704,111,'2005-06-23 08:36:08',1,'2006-02-15 21:30:53'),(2000,'2005-06-17 11:32:30',323,163,'2005-06-22 13:37:30',1,'2006-02-15 21:30:53'),(2001,'2005-06-17 11:35:09',2069,260,'2005-06-21 14:52:09',2,'2006-02-15 21:30:53'),(2002,'2005-06-17 11:39:58',2406,514,'2005-06-24 15:41:58',2,'2006-02-15 21:30:53'),(2003,'2005-06-17 11:40:35',1581,515,'2005-06-19 08:30:35',2,'2006-02-15 21:30:53'),(2004,'2005-06-17 11:43:38',1342,171,'2005-06-24 08:05:38',2,'2006-02-15 21:30:53'),(2005,'2005-06-17 11:44:54',4177,234,'2005-06-19 10:53:54',1,'2006-02-15 21:30:53'),(2006,'2005-06-17 11:47:03',992,215,'2005-06-19 13:47:03',2,'2006-02-15 21:30:53'),(2007,'2005-06-17 11:47:17',1123,572,'2005-06-21 07:19:17',1,'2006-02-15 21:30:53'),(2008,'2005-06-17 11:48:05',2081,570,'2005-06-25 13:16:05',1,'2006-02-15 21:30:53'),(2009,'2005-06-17 11:48:31',1902,119,'2005-06-18 09:34:31',2,'2006-02-15 21:30:53'),(2010,'2005-06-17 11:54:15',2845,329,'2005-06-21 05:55:15',1,'2006-02-15 21:30:53'),(2011,'2005-06-17 11:56:09',734,350,'2005-06-24 06:47:09',2,'2006-02-15 21:30:53'),(2012,'2005-06-17 11:57:15',3588,84,'2005-06-24 17:18:15',1,'2006-02-15 21:30:53'),(2013,'2005-06-17 12:03:01',3256,165,'2005-06-24 10:04:01',1,'2006-02-15 21:30:53'),(2014,'2005-06-17 12:03:28',2969,337,'2005-06-25 16:00:28',2,'2006-02-15 21:30:53'),(2015,'2005-06-17 12:16:29',3776,484,'2005-06-18 14:40:29',2,'2006-02-15 21:30:53'),(2016,'2005-06-17 12:18:36',4265,282,'2005-06-20 12:13:36',1,'2006-02-15 21:30:53'),(2017,'2005-06-17 12:33:30',1434,516,'2005-06-19 10:08:30',2,'2006-02-15 21:30:53'),(2018,'2005-06-17 12:35:58',1278,380,'2005-06-26 13:16:58',2,'2006-02-15 21:30:53'),(2019,'2005-06-17 12:38:44',2314,528,'2005-06-23 17:38:44',2,'2006-02-15 21:30:53'),(2020,'2005-06-17 12:39:50',1914,384,'2005-06-19 14:59:50',1,'2006-02-15 21:30:53'),(2021,'2005-06-17 12:41:18',2852,319,'2005-06-23 17:17:18',2,'2006-02-15 21:30:53'),(2022,'2005-06-17 12:44:39',3053,547,'2005-06-25 12:32:39',1,'2006-02-15 21:30:53'),(2023,'2005-06-17 12:52:58',787,169,'2005-06-23 11:07:58',1,'2006-02-15 21:30:53'),(2024,'2005-06-17 13:00:51',2566,329,'2005-06-22 07:03:51',1,'2006-02-15 21:30:53'),(2025,'2005-06-17 13:04:00',1203,447,'2005-06-18 18:45:00',2,'2006-02-15 21:30:53'),(2026,'2005-06-17 13:05:38',3681,491,'2005-06-21 17:19:38',1,'2006-02-15 21:30:53'),(2027,'2005-06-17 13:06:56',4309,265,'2005-06-23 13:46:56',1,'2006-02-15 21:30:53'),(2028,'2005-06-17 13:08:08',4451,155,'2005-06-23 10:54:08',1,'2006-02-15 21:30:53'),(2029,'2005-06-17 13:10:59',914,512,'2005-06-19 18:15:59',1,'2006-02-15 21:30:53'),(2030,'2005-06-17 13:13:27',4024,457,'2005-06-19 10:44:27',1,'2006-02-15 21:30:53'),(2031,'2005-06-17 13:14:03',4275,570,'2005-06-25 10:06:03',2,'2006-02-15 21:30:53'),(2032,'2005-06-17 13:24:07',425,316,'2005-06-18 18:18:07',1,'2006-02-15 21:30:53'),(2033,'2005-06-17 13:24:43',58,90,'2005-06-20 12:34:43',1,'2006-02-15 21:30:53'),(2034,'2005-06-17 13:27:16',1512,587,'2005-06-22 08:53:16',2,'2006-02-15 21:30:53'),(2035,'2005-06-17 13:45:09',4371,158,'2005-06-26 15:30:09',2,'2006-02-15 21:30:53'),(2036,'2005-06-17 13:46:52',100,486,'2005-06-18 15:42:52',2,'2006-02-15 21:30:53'),(2037,'2005-06-17 13:54:20',2582,308,'2005-06-20 14:49:20',2,'2006-02-15 21:30:53'),(2038,'2005-06-17 14:00:51',4231,138,'2005-06-19 11:54:51',2,'2006-02-15 21:30:53'),(2039,'2005-06-17 14:03:43',1514,304,'2005-06-24 09:21:43',1,'2006-02-15 21:30:53'),(2040,'2005-06-17 14:18:37',227,260,'2005-06-22 19:08:37',1,'2006-02-15 21:30:53'),(2041,'2005-06-17 14:19:00',782,348,'2005-06-26 08:38:00',2,'2006-02-15 21:30:53'),(2042,'2005-06-17 14:31:02',3102,84,'2005-06-18 14:43:02',1,'2006-02-15 21:30:53'),(2043,'2005-06-17 14:31:12',2495,4,'2005-06-19 11:04:12',2,'2006-02-15 21:30:53'),(2044,'2005-06-17 14:37:57',2418,484,'2005-06-22 17:15:57',2,'2006-02-15 21:30:53'),(2045,'2005-06-17 14:38:11',561,391,'2005-06-26 13:44:11',2,'2006-02-15 21:30:53'),(2046,'2005-06-17 14:39:50',872,374,'2005-06-24 16:02:50',1,'2006-02-15 21:30:53'),(2047,'2005-06-17 14:40:58',2371,201,'2005-06-21 08:52:58',1,'2006-02-15 21:30:53'),(2048,'2005-06-17 14:55:29',2055,454,'2005-06-23 16:29:29',2,'2006-02-15 21:30:53'),(2049,'2005-06-17 14:58:36',1053,182,'2005-06-22 14:53:36',2,'2006-02-15 21:30:53'),(2050,'2005-06-17 15:07:30',1963,549,'2005-06-18 14:43:30',1,'2006-02-15 21:30:53'),(2051,'2005-06-17 15:10:16',2366,191,'2005-06-19 20:45:16',1,'2006-02-15 21:30:53'),(2052,'2005-06-17 15:14:43',1686,172,'2005-06-21 11:08:43',1,'2006-02-15 21:30:53'),(2053,'2005-06-17 15:19:34',4279,521,'2005-06-19 10:06:34',2,'2006-02-15 21:30:53'),(2054,'2005-06-17 15:26:37',1588,295,'2005-06-26 14:22:37',1,'2006-02-15 21:30:53'),(2055,'2005-06-17 15:27:03',1399,593,'2005-06-25 13:44:03',1,'2006-02-15 21:30:53'),(2056,'2005-06-17 15:27:33',229,42,'2005-06-20 13:04:33',2,'2006-02-15 21:30:53'),(2057,'2005-06-17 15:31:58',2803,190,'2005-06-25 09:39:58',1,'2006-02-15 21:30:53'),(2058,'2005-06-17 15:34:41',1324,57,'2005-06-25 14:50:41',1,'2006-02-15 21:30:53'),(2059,'2005-06-17 15:36:12',739,114,'2005-06-18 19:01:12',2,'2006-02-15 21:30:53'),(2060,'2005-06-17 15:42:42',1523,64,'2005-06-22 16:39:42',1,'2006-02-15 21:30:53'),(2061,'2005-06-17 15:47:00',4575,108,'2005-06-24 16:36:00',2,'2006-02-15 21:30:53'),(2062,'2005-06-17 15:56:43',1749,55,'2005-06-20 21:37:43',2,'2006-02-15 21:30:53'),(2063,'2005-06-17 15:56:53',4323,5,'2005-06-21 14:19:53',1,'2006-02-15 21:30:53'),(2064,'2005-06-17 15:57:56',1970,67,'2005-06-23 21:04:56',2,'2006-02-15 21:30:53'),(2065,'2005-06-17 16:03:46',844,266,'2005-06-22 16:41:46',2,'2006-02-15 21:30:53'),(2066,'2005-06-17 16:07:08',2561,248,'2005-06-24 15:20:08',2,'2006-02-15 21:30:53'),(2067,'2005-06-17 16:11:08',1711,297,'2005-06-22 13:01:08',2,'2006-02-15 21:30:53'),(2068,'2005-06-17 16:11:46',4252,387,'2005-06-20 11:28:46',1,'2006-02-15 21:30:53'),(2069,'2005-06-17 16:19:39',2746,551,'2005-06-26 16:48:39',1,'2006-02-15 21:30:53'),(2070,'2005-06-17 16:27:51',2609,24,'2005-06-20 20:46:51',1,'2006-02-15 21:30:53'),(2071,'2005-06-17 16:33:17',2867,479,'2005-06-23 21:51:17',1,'2006-02-15 21:30:53'),(2072,'2005-06-17 16:33:32',86,261,'2005-06-23 13:22:32',1,'2006-02-15 21:30:53'),(2073,'2005-06-17 16:33:59',3530,410,'2005-06-19 11:57:59',1,'2006-02-15 21:30:53'),(2074,'2005-06-17 16:40:03',71,495,'2005-06-20 21:34:03',1,'2006-02-15 21:30:53'),(2075,'2005-06-17 16:40:33',2415,459,'2005-06-19 13:55:33',2,'2006-02-15 21:30:53'),(2076,'2005-06-17 16:43:47',2242,217,'2005-06-24 11:12:47',1,'2006-02-15 21:30:53'),(2077,'2005-06-17 16:46:11',4478,113,'2005-06-19 15:10:11',1,'2006-02-15 21:30:53'),(2078,'2005-06-17 16:48:55',2021,278,'2005-06-19 18:01:55',1,'2006-02-15 21:30:53'),(2079,'2005-06-17 16:49:45',3853,465,'2005-06-18 18:10:45',1,'2006-02-15 21:30:53'),(2080,'2005-06-17 16:59:40',1231,476,'2005-06-21 11:28:40',2,'2006-02-15 21:30:53'),(2081,'2005-06-17 17:05:02',917,253,'2005-06-26 20:26:02',1,'2006-02-15 21:30:53'),(2082,'2005-06-17 17:13:32',434,254,'2005-06-19 16:16:32',1,'2006-02-15 21:30:53'),(2083,'2005-06-17 17:14:00',2423,97,'2005-06-18 18:31:00',2,'2006-02-15 21:30:53'),(2084,'2005-06-17 17:17:19',428,92,'2005-06-22 14:57:19',1,'2006-02-15 21:30:53'),(2085,'2005-06-17 17:30:56',2275,214,'2005-06-23 12:13:56',1,'2006-02-15 21:30:53'),(2086,'2005-06-17 17:32:07',898,326,'2005-06-21 20:19:07',2,'2006-02-15 21:30:53'),(2087,'2005-06-17 17:35:10',466,398,'2005-06-26 13:52:10',1,'2006-02-15 21:30:53'),(2088,'2005-06-17 17:35:30',506,310,'2005-06-23 20:13:30',2,'2006-02-15 21:30:53'),(2089,'2005-06-17 17:45:09',4030,156,'2005-06-25 16:41:09',1,'2006-02-15 21:30:53'),(2090,'2005-06-17 18:06:14',17,197,'2005-06-22 23:52:14',1,'2006-02-15 21:30:53'),(2091,'2005-06-17 18:09:04',4033,260,'2005-06-26 12:11:04',1,'2006-02-15 21:30:53'),(2092,'2005-06-17 18:12:16',4427,556,'2005-06-25 15:06:16',2,'2006-02-15 21:30:53'),(2093,'2005-06-17 18:14:08',814,26,'2005-06-26 18:10:08',1,'2006-02-15 21:30:53'),(2094,'2005-06-17 18:18:56',2205,308,'2005-06-18 19:36:56',1,'2006-02-15 21:30:53'),(2095,'2005-06-17 18:21:35',1907,8,'2005-06-23 23:49:35',2,'2006-02-15 21:30:53'),(2096,'2005-06-17 18:33:04',1069,431,'2005-06-21 17:29:04',2,'2006-02-15 21:30:53'),(2097,'2005-06-17 18:40:04',569,439,'2005-06-23 13:49:04',1,'2006-02-15 21:30:53'),(2098,'2005-06-17 18:42:09',3951,274,'2005-06-19 20:40:09',1,'2006-02-15 21:30:53'),(2099,'2005-06-17 18:47:26',3660,146,'2005-06-24 22:31:26',2,'2006-02-15 21:30:53'),(2100,'2005-06-17 18:53:21',2267,387,'2005-06-19 21:49:21',2,'2006-02-15 21:30:53'),(2101,'2005-06-17 18:57:02',2137,581,'2005-06-20 15:38:02',2,'2006-02-15 21:30:53'),(2102,'2005-06-17 19:05:22',2316,486,'2005-06-23 23:21:22',2,'2006-02-15 21:30:53'),(2103,'2005-06-17 19:13:10',1469,456,'2005-06-21 21:32:10',2,'2006-02-15 21:30:53'),(2104,'2005-06-17 19:14:30',3084,136,'2005-06-19 16:26:30',1,'2006-02-15 21:30:53'),(2105,'2005-06-17 19:15:45',4090,57,'2005-06-20 16:00:45',1,'2006-02-15 21:30:53'),(2106,'2005-06-17 19:29:03',643,66,'2005-06-23 18:17:03',2,'2006-02-15 21:30:53'),(2107,'2005-06-17 19:31:16',1270,104,'2005-06-18 23:33:16',1,'2006-02-15 21:30:53'),(2108,'2005-06-17 19:35:26',1395,503,'2005-06-25 15:45:26',1,'2006-02-15 21:30:53'),(2109,'2005-06-17 19:41:42',2292,493,'2005-06-25 17:03:42',2,'2006-02-15 21:30:53'),(2110,'2005-06-17 19:45:49',3592,163,'2005-06-26 18:59:49',2,'2006-02-15 21:30:53'),(2111,'2005-06-17 19:47:21',2108,76,'2005-06-19 22:46:21',2,'2006-02-15 21:30:53'),(2112,'2005-06-17 19:52:42',1629,18,'2005-06-25 00:00:42',2,'2006-02-15 21:30:53'),(2113,'2005-06-17 19:57:46',1509,406,'2005-06-24 00:22:46',1,'2006-02-15 21:30:53'),(2114,'2005-06-17 20:00:25',3541,358,'2005-06-23 18:51:25',1,'2006-02-15 21:30:53'),(2115,'2005-06-17 20:02:16',3448,270,'2005-06-25 16:56:16',2,'2006-02-15 21:30:53'),(2116,'2005-06-17 20:16:12',2373,24,'2005-06-18 17:03:12',2,'2006-02-15 21:30:53'),(2117,'2005-06-17 20:24:00',2,170,'2005-06-23 17:45:00',2,'2006-02-15 21:30:53'),(2118,'2005-06-17 20:28:29',1261,103,'2005-06-23 22:47:29',1,'2006-02-15 21:30:53'),(2119,'2005-06-17 20:34:42',2104,561,'2005-06-22 00:05:42',1,'2006-02-15 21:30:53'),(2120,'2005-06-17 20:36:50',1498,182,'2005-06-27 01:18:50',2,'2006-02-15 21:30:53'),(2121,'2005-06-17 20:38:54',141,467,'2005-06-22 23:06:54',2,'2006-02-15 21:30:53'),(2122,'2005-06-17 20:48:27',2932,245,'2005-06-23 00:58:27',2,'2006-02-15 21:30:53'),(2123,'2005-06-17 20:48:30',2497,545,'2005-06-18 19:17:30',2,'2006-02-15 21:30:53'),(2124,'2005-06-17 20:49:14',1273,178,'2005-06-23 17:44:14',1,'2006-02-15 21:30:53'),(2125,'2005-06-17 20:53:42',4303,473,'2005-06-19 01:53:42',2,'2006-02-15 21:30:53'),(2126,'2005-06-17 20:54:36',4276,263,'2005-06-27 02:16:36',1,'2006-02-15 21:30:53'),(2127,'2005-06-17 20:54:48',3757,187,'2005-06-18 16:28:48',2,'2006-02-15 21:30:53'),(2128,'2005-06-17 20:54:58',352,2,'2005-06-24 00:41:58',2,'2006-02-15 21:30:53'),(2129,'2005-06-17 20:58:32',1930,249,'2005-06-23 22:22:32',1,'2006-02-15 21:30:53'),(2130,'2005-06-17 21:00:44',1369,413,'2005-06-26 00:05:44',2,'2006-02-15 21:30:53'),(2131,'2005-06-17 21:02:25',4424,85,'2005-06-25 18:45:25',1,'2006-02-15 21:30:53'),(2132,'2005-06-17 21:05:06',2636,186,'2005-06-20 18:10:06',1,'2006-02-15 21:30:53'),(2133,'2005-06-17 21:10:05',932,268,'2005-06-23 22:41:05',1,'2006-02-15 21:30:53'),(2134,'2005-06-17 21:13:44',1699,378,'2005-06-26 16:28:44',2,'2006-02-15 21:30:53'),(2135,'2005-06-17 21:14:02',4091,39,'2005-06-19 00:59:02',1,'2006-02-15 21:30:53'),(2136,'2005-06-17 21:16:41',2651,20,'2005-06-24 22:42:41',2,'2006-02-15 21:30:53'),(2137,'2005-06-17 21:18:28',1158,581,'2005-06-20 21:05:28',1,'2006-02-15 21:30:53'),(2138,'2005-06-17 21:28:14',512,254,'2005-06-22 01:16:14',2,'2006-02-15 21:30:53'),(2139,'2005-06-17 21:29:34',807,236,'2005-06-26 21:05:34',1,'2006-02-15 21:30:53'),(2140,'2005-06-17 21:40:29',2395,56,'2005-06-19 00:42:29',1,'2006-02-15 21:30:53'),(2141,'2005-06-17 21:41:34',2176,86,'2005-06-19 00:15:34',1,'2006-02-15 21:30:53'),(2142,'2005-06-17 21:55:43',1787,253,'2005-06-26 19:41:43',2,'2006-02-15 21:30:53'),(2143,'2005-06-17 21:58:13',1257,507,'2005-06-19 23:59:13',2,'2006-02-15 21:30:53'),(2144,'2005-06-17 22:05:40',3303,46,'2005-06-21 02:53:40',1,'2006-02-15 21:30:53'),(2145,'2005-06-17 22:10:36',238,388,'2005-06-18 21:07:36',2,'2006-02-15 21:30:53'),(2146,'2005-06-17 22:26:23',326,456,'2005-06-26 17:10:23',1,'2006-02-15 21:30:53'),(2147,'2005-06-17 22:28:13',2752,279,'2005-06-22 20:50:13',1,'2006-02-15 21:30:53'),(2148,'2005-06-17 22:44:35',315,338,'2005-06-26 19:43:35',1,'2006-02-15 21:30:53'),(2149,'2005-06-17 22:50:00',3365,333,'2005-06-26 18:40:00',1,'2006-02-15 21:30:53'),(2150,'2005-06-17 22:50:36',1910,406,'2005-06-21 19:33:36',1,'2006-02-15 21:30:53'),(2151,'2005-06-17 22:52:37',407,329,'2005-06-20 22:00:37',1,'2006-02-15 21:30:53'),(2152,'2005-06-17 22:53:27',2665,307,'2005-06-23 19:19:27',1,'2006-02-15 21:30:53'),(2153,'2005-06-17 22:58:04',2440,357,'2005-06-24 19:38:04',2,'2006-02-15 21:30:53'),(2154,'2005-06-17 22:59:42',1655,30,'2005-06-24 04:11:42',1,'2006-02-15 21:30:53'),(2155,'2005-06-17 23:07:29',3640,227,'2005-06-25 03:23:29',2,'2006-02-15 21:30:53'),(2156,'2005-06-17 23:08:12',623,237,'2005-06-22 19:44:12',2,'2006-02-15 21:30:53'),(2157,'2005-06-17 23:30:52',1619,201,'2005-06-24 01:56:52',2,'2006-02-15 21:30:53'),(2158,'2005-06-17 23:36:27',243,530,'2005-06-19 19:25:27',2,'2006-02-15 21:30:53'),(2159,'2005-06-17 23:37:29',3095,465,'2005-06-25 00:18:29',2,'2006-02-15 21:30:53'),(2160,'2005-06-17 23:39:11',1644,32,'2005-06-22 20:04:11',1,'2006-02-15 21:30:53'),(2161,'2005-06-17 23:39:50',3149,75,'2005-06-26 23:28:50',2,'2006-02-15 21:30:53'),(2162,'2005-06-17 23:45:47',1790,277,'2005-06-21 21:03:47',1,'2006-02-15 21:30:53'),(2163,'2005-06-17 23:46:16',2600,130,'2005-06-22 22:48:16',2,'2006-02-15 21:30:53'),(2164,'2005-06-17 23:46:21',3442,227,'2005-06-24 19:10:21',2,'2006-02-15 21:30:53'),(2165,'2005-06-17 23:51:10',2392,471,'2005-06-21 23:54:10',1,'2006-02-15 21:30:53'),(2166,'2005-06-17 23:51:21',4343,305,'2005-06-27 01:06:21',2,'2006-02-15 21:30:53'),(2167,'2005-06-17 23:51:28',3796,307,'2005-06-21 00:43:28',2,'2006-02-15 21:30:53'),(2168,'2005-06-17 23:53:24',802,308,'2005-06-20 01:11:24',1,'2006-02-15 21:30:53'),(2169,'2005-06-17 23:57:23',785,120,'2005-06-19 20:14:23',2,'2006-02-15 21:30:53'),(2170,'2005-06-17 23:57:34',3989,42,'2005-06-22 03:37:34',2,'2006-02-15 21:30:53'),(2171,'2005-06-18 00:06:04',1768,147,'2005-06-24 18:09:04',2,'2006-02-15 21:30:53'),(2172,'2005-06-18 00:06:16',2912,457,'2005-06-26 00:50:16',1,'2006-02-15 21:30:53'),(2173,'2005-06-18 00:08:20',995,65,'2005-06-25 05:30:20',1,'2006-02-15 21:30:53'),(2174,'2005-06-18 00:09:01',3279,520,'2005-06-25 23:14:01',1,'2006-02-15 21:30:53'),(2175,'2005-06-18 00:17:58',4038,17,'2005-06-22 23:18:58',2,'2006-02-15 21:30:53'),(2176,'2005-06-18 00:29:51',4201,282,'2005-06-21 01:41:51',1,'2006-02-15 21:30:53'),(2177,'2005-06-18 00:34:45',492,340,'2005-06-26 18:40:45',1,'2006-02-15 21:30:53'),(2178,'2005-06-18 00:38:35',2950,260,'2005-06-21 02:56:35',1,'2006-02-15 21:30:53'),(2179,'2005-06-18 00:41:36',4334,338,'2005-06-19 02:17:36',1,'2006-02-15 21:30:53'),(2180,'2005-06-18 00:47:43',3564,497,'2005-06-25 04:12:43',2,'2006-02-15 21:30:53'),(2181,'2005-06-18 00:48:31',3481,176,'2005-06-25 06:43:31',2,'2006-02-15 21:30:53'),(2182,'2005-06-18 00:56:18',3494,454,'2005-06-26 20:01:18',1,'2006-02-15 21:30:53'),(2183,'2005-06-18 01:06:01',1776,340,'2005-06-22 01:20:01',1,'2006-02-15 21:30:53'),(2184,'2005-06-18 01:10:36',3468,537,'2005-06-21 05:59:36',2,'2006-02-15 21:30:53'),(2185,'2005-06-18 01:12:22',4326,198,'2005-06-20 20:41:22',1,'2006-02-15 21:30:53'),(2186,'2005-06-18 01:15:27',2050,204,'2005-06-21 06:16:27',1,'2006-02-15 21:30:53'),(2187,'2005-06-18 01:17:27',1385,477,'2005-06-20 22:18:27',1,'2006-02-15 21:30:53'),(2188,'2005-06-18 01:19:04',712,183,'2005-06-25 03:59:04',2,'2006-02-15 21:30:53'),(2189,'2005-06-18 01:20:26',249,500,'2005-06-25 00:30:26',1,'2006-02-15 21:30:53'),(2190,'2005-06-18 01:29:51',4398,342,'2005-06-26 04:31:51',2,'2006-02-15 21:30:53'),(2191,'2005-06-18 01:33:09',3369,58,'2005-06-19 20:18:09',1,'2006-02-15 21:30:53'),(2192,'2005-06-18 01:35:47',1886,456,'2005-06-23 23:38:47',2,'2006-02-15 21:30:53'),(2193,'2005-06-18 01:38:45',1013,112,'2005-06-22 19:51:45',1,'2006-02-15 21:30:53'),(2194,'2005-06-18 01:41:37',1827,149,'2005-06-25 04:27:37',1,'2006-02-15 21:30:53'),(2195,'2005-06-18 01:44:46',2247,286,'2005-06-25 20:50:46',1,'2006-02-15 21:30:53'),(2196,'2005-06-18 01:47:07',1925,240,'2005-06-26 03:18:07',2,'2006-02-15 21:30:53'),(2197,'2005-06-18 01:50:27',3350,103,'2005-06-19 01:31:27',2,'2006-02-15 21:30:53'),(2198,'2005-06-18 01:51:22',1983,109,'2005-06-26 06:57:22',2,'2006-02-15 21:30:53'),(2199,'2005-06-18 01:57:56',99,171,'2005-06-23 20:34:56',2,'2006-02-15 21:30:53'),(2200,'2005-06-18 01:59:16',1085,229,'2005-06-26 23:25:16',2,'2006-02-15 21:30:53'),(2201,'2005-06-18 02:08:27',1864,489,'2005-06-23 01:40:27',1,'2006-02-15 21:30:53'),(2202,'2005-06-18 02:09:24',815,297,'2005-06-26 07:17:24',2,'2006-02-15 21:30:53'),(2203,'2005-06-18 02:10:42',1347,46,'2005-06-22 06:25:42',2,'2006-02-15 21:30:53'),(2204,'2005-06-18 02:11:38',1137,426,'2005-06-24 00:28:38',1,'2006-02-15 21:30:53'),(2205,'2005-06-18 02:14:34',1245,593,'2005-06-25 05:11:34',1,'2006-02-15 21:30:53'),(2206,'2005-06-18 02:14:45',3651,438,'2005-06-24 23:20:45',2,'2006-02-15 21:30:53'),(2207,'2005-06-18 02:19:21',182,78,'2005-06-24 02:25:21',2,'2006-02-15 21:30:53'),(2208,'2005-06-18 02:22:07',2345,132,'2005-06-23 07:24:07',2,'2006-02-15 21:30:53'),(2209,'2005-06-18 02:24:01',2441,13,'2005-06-22 04:13:01',2,'2006-02-15 21:30:53'),(2210,'2005-06-18 02:27:01',219,108,'2005-06-21 00:45:01',1,'2006-02-15 21:30:53'),(2211,'2005-06-18 02:29:10',4114,166,'2005-06-22 02:02:10',1,'2006-02-15 21:30:53'),(2212,'2005-06-18 02:36:10',2458,336,'2005-06-19 21:21:10',1,'2006-02-15 21:30:53'),(2213,'2005-06-18 02:36:47',949,98,'2005-06-23 05:02:47',1,'2006-02-15 21:30:53'),(2214,'2005-06-18 02:44:37',2430,366,'2005-06-18 23:37:37',2,'2006-02-15 21:30:53'),(2215,'2005-06-18 02:48:21',2060,239,'2005-06-22 01:03:21',2,'2006-02-15 21:30:53'),(2216,'2005-06-18 03:08:17',1428,320,'2005-06-19 08:13:17',1,'2006-02-15 21:30:53'),(2217,'2005-06-18 03:12:29',2260,118,'2005-06-20 06:08:29',1,'2006-02-15 21:30:53'),(2218,'2005-06-18 03:13:13',3577,176,'2005-06-18 21:16:13',1,'2006-02-15 21:30:53'),(2219,'2005-06-18 03:16:54',1881,393,'2005-06-22 01:29:54',1,'2006-02-15 21:30:53'),(2220,'2005-06-18 03:21:36',320,587,'2005-06-21 07:45:36',2,'2006-02-15 21:30:53'),(2221,'2005-06-18 03:24:56',3905,156,'2005-06-22 08:27:56',1,'2006-02-15 21:30:53'),(2222,'2005-06-18 03:26:23',3834,10,'2005-06-26 08:50:23',2,'2006-02-15 21:30:53'),(2223,'2005-06-18 03:27:03',4068,303,'2005-06-27 09:19:03',2,'2006-02-15 21:30:53'),(2224,'2005-06-18 03:33:58',1336,153,'2005-06-18 22:10:58',1,'2006-02-15 21:30:53'),(2225,'2005-06-18 03:35:40',2829,503,'2005-06-23 03:05:40',1,'2006-02-15 21:30:53'),(2226,'2005-06-18 03:39:56',3487,225,'2005-06-24 07:26:56',2,'2006-02-15 21:30:53'),(2227,'2005-06-18 03:43:23',3623,200,'2005-06-19 05:55:23',2,'2006-02-15 21:30:53'),(2228,'2005-06-18 03:44:50',490,383,'2005-06-23 00:28:50',1,'2006-02-15 21:30:53'),(2229,'2005-06-18 03:50:18',2840,35,'2005-06-26 07:16:18',2,'2006-02-15 21:30:53'),(2230,'2005-06-18 03:50:49',833,256,'2005-06-25 01:12:49',2,'2006-02-15 21:30:53'),(2231,'2005-06-18 03:52:14',2280,35,'2005-06-23 06:52:14',1,'2006-02-15 21:30:53'),(2232,'2005-06-18 03:54:31',2463,52,'2005-06-22 07:29:31',1,'2006-02-15 21:30:53'),(2233,'2005-06-18 03:57:36',3063,31,'2005-06-21 09:42:36',2,'2006-02-15 21:30:53'),(2234,'2005-06-18 04:01:28',234,182,'2005-06-24 04:55:28',2,'2006-02-15 21:30:53'),(2235,'2005-06-18 04:08:50',3463,21,'2005-06-27 07:58:50',1,'2006-02-15 21:30:53'),(2236,'2005-06-18 04:12:33',4001,375,'2005-06-23 04:07:33',1,'2006-02-15 21:30:53'),(2237,'2005-06-18 04:17:44',1821,205,'2005-06-27 09:08:44',1,'2006-02-15 21:30:53'),(2238,'2005-06-18 04:22:06',2859,251,'2005-06-27 03:29:06',2,'2006-02-15 21:30:53'),(2239,'2005-06-18 04:23:54',4419,437,'2005-06-26 00:12:54',2,'2006-02-15 21:30:53'),(2240,'2005-06-18 04:28:27',1409,122,'2005-06-22 07:48:27',2,'2006-02-15 21:30:53'),(2241,'2005-06-18 04:31:41',921,406,'2005-06-24 22:34:41',2,'2006-02-15 21:30:53'),(2242,'2005-06-18 04:32:28',1995,146,'2005-06-24 03:26:28',2,'2006-02-15 21:30:53'),(2243,'2005-06-18 04:33:03',1254,328,'2005-06-23 04:14:03',2,'2006-02-15 21:30:53'),(2244,'2005-06-18 04:46:33',3629,233,'2005-06-20 04:28:33',1,'2006-02-15 21:30:53'),(2245,'2005-06-18 04:52:59',1496,194,'2005-06-24 05:07:59',2,'2006-02-15 21:30:53'),(2246,'2005-06-18 04:54:29',4287,414,'2005-06-22 09:14:29',1,'2006-02-15 21:30:53'),(2248,'2005-06-18 04:59:48',1999,446,'2005-06-19 08:51:48',2,'2006-02-15 21:30:53'),(2249,'2005-06-18 05:03:08',117,285,'2005-06-26 05:43:08',2,'2006-02-15 21:30:53'),(2250,'2005-06-18 05:03:36',4042,7,'2005-06-22 02:25:36',2,'2006-02-15 21:30:53'),(2251,'2005-06-18 05:05:08',1458,143,'2005-06-23 08:34:08',1,'2006-02-15 21:30:53'),(2252,'2005-06-18 05:05:18',1987,383,'2005-06-21 08:19:18',1,'2006-02-15 21:30:53'),(2253,'2005-06-18 05:11:43',3719,122,'2005-06-25 03:30:43',2,'2006-02-15 21:30:53'),(2254,'2005-06-18 05:15:14',1084,281,'2005-06-27 04:10:14',2,'2006-02-15 21:30:53'),(2255,'2005-06-18 05:21:12',24,410,'2005-06-26 09:19:12',1,'2006-02-15 21:30:53'),(2256,'2005-06-18 05:21:56',1863,93,'2005-06-27 02:06:56',2,'2006-02-15 21:30:53'),(2257,'2005-06-18 05:29:52',2846,34,'2005-06-22 00:19:52',1,'2006-02-15 21:30:53'),(2258,'2005-06-18 05:30:36',4573,292,'2005-06-24 09:09:36',1,'2006-02-15 21:30:53'),(2259,'2005-06-18 05:37:45',4103,491,'2005-06-21 01:51:45',1,'2006-02-15 21:30:53'),(2260,'2005-06-18 05:38:36',2773,297,'2005-06-20 08:08:36',1,'2006-02-15 21:30:53'),(2261,'2005-06-18 05:46:15',1763,570,'2005-06-24 05:06:15',1,'2006-02-15 21:30:53'),(2262,'2005-06-18 05:49:46',4172,218,'2005-06-20 00:25:46',2,'2006-02-15 21:30:53'),(2263,'2005-06-18 05:57:47',3259,452,'2005-06-20 06:13:47',1,'2006-02-15 21:30:53'),(2264,'2005-06-18 05:58:45',150,240,'2005-06-19 00:57:45',1,'2006-02-15 21:30:53'),(2265,'2005-06-18 06:03:27',3069,267,'2005-06-20 01:16:27',1,'2006-02-15 21:30:53'),(2266,'2005-06-18 06:05:02',2596,452,'2005-06-20 06:54:02',1,'2006-02-15 21:30:53'),(2267,'2005-06-18 06:10:23',2086,218,'2005-06-20 00:39:23',2,'2006-02-15 21:30:53'),(2268,'2005-06-18 06:13:41',4380,21,'2005-06-22 08:53:41',2,'2006-02-15 21:30:53'),(2269,'2005-06-18 06:20:54',3088,431,'2005-06-25 04:51:54',2,'2006-02-15 21:30:53'),(2270,'2005-06-18 06:29:01',3447,588,'2005-06-26 07:21:01',2,'2006-02-15 21:30:53'),(2271,'2005-06-18 06:29:52',2416,145,'2005-06-21 09:46:52',2,'2006-02-15 21:30:53'),(2272,'2005-06-18 06:29:53',1364,599,'2005-06-23 10:58:53',1,'2006-02-15 21:30:53'),(2273,'2005-06-18 06:30:02',4456,327,'2005-06-20 07:07:02',1,'2006-02-15 21:30:53'),(2274,'2005-06-18 06:31:15',3021,347,'2005-06-21 01:24:15',2,'2006-02-15 21:30:53'),(2275,'2005-06-18 06:31:29',2805,354,'2005-06-24 10:04:29',2,'2006-02-15 21:30:53'),(2276,'2005-06-18 06:33:48',1145,594,'2005-06-25 00:50:48',2,'2006-02-15 21:30:53'),(2277,'2005-06-18 06:35:03',3770,224,'2005-06-19 01:26:03',1,'2006-02-15 21:30:53'),(2278,'2005-06-18 06:37:57',1166,450,'2005-06-22 10:57:57',1,'2006-02-15 21:30:53'),(2279,'2005-06-18 06:38:22',1953,554,'2005-06-27 07:16:22',1,'2006-02-15 21:30:53'),(2280,'2005-06-18 06:46:54',4568,548,'2005-06-26 09:48:54',2,'2006-02-15 21:30:53'),(2281,'2005-06-18 06:47:29',4212,431,'2005-06-20 10:27:29',2,'2006-02-15 21:30:53'),(2282,'2005-06-18 06:48:23',4388,113,'2005-06-24 11:04:23',2,'2006-02-15 21:30:53'),(2283,'2005-06-18 06:56:06',2056,507,'2005-06-19 05:11:06',2,'2006-02-15 21:30:53'),(2284,'2005-06-18 06:59:51',2682,228,'2005-06-24 04:58:51',2,'2006-02-15 21:30:53'),(2285,'2005-06-18 07:00:54',755,447,'2005-06-25 08:58:54',2,'2006-02-15 21:30:53'),(2286,'2005-06-18 07:02:32',618,287,'2005-06-27 12:33:32',1,'2006-02-15 21:30:53'),(2287,'2005-06-18 07:04:36',1473,317,'2005-06-27 03:00:36',2,'2006-02-15 21:30:53'),(2288,'2005-06-18 07:23:17',877,247,'2005-06-26 07:44:17',2,'2006-02-15 21:30:53'),(2289,'2005-06-18 07:29:43',2030,392,'2005-06-24 11:16:43',2,'2006-02-15 21:30:53'),(2290,'2005-06-18 07:34:37',200,513,'2005-06-26 11:45:37',1,'2006-02-15 21:30:53'),(2291,'2005-06-18 07:36:46',3949,436,'2005-06-26 04:57:46',2,'2006-02-15 21:30:53'),(2292,'2005-06-18 07:37:48',173,130,'2005-06-20 02:45:48',2,'2006-02-15 21:30:53'),(2293,'2005-06-18 07:45:03',3209,178,'2005-06-24 08:12:03',1,'2006-02-15 21:30:53'),(2294,'2005-06-18 07:46:34',2096,72,'2005-06-22 12:34:34',2,'2006-02-15 21:30:53'),(2295,'2005-06-18 07:56:18',3250,106,'2005-06-21 07:10:18',1,'2006-02-15 21:30:53'),(2296,'2005-06-18 08:10:42',4558,481,'2005-06-20 12:26:42',2,'2006-02-15 21:30:53'),(2297,'2005-06-18 08:17:41',2262,111,'2005-06-26 05:08:41',2,'2006-02-15 21:30:53'),(2298,'2005-06-18 08:18:29',1227,497,'2005-06-24 11:51:29',1,'2006-02-15 21:30:53'),(2299,'2005-06-18 08:18:52',4339,28,'2005-06-26 11:48:52',1,'2006-02-15 21:30:53'),(2300,'2005-06-18 08:22:34',1617,291,'2005-06-24 04:51:34',2,'2006-02-15 21:30:53'),(2301,'2005-06-18 08:24:03',869,273,'2005-06-25 10:31:03',2,'2006-02-15 21:30:53'),(2302,'2005-06-18 08:27:33',1852,42,'2005-06-22 02:46:33',2,'2006-02-15 21:30:53'),(2303,'2005-06-18 08:27:59',1524,329,'2005-06-22 10:58:59',1,'2006-02-15 21:30:53'),(2304,'2005-06-18 08:30:15',3543,327,'2005-06-23 06:17:15',1,'2006-02-15 21:30:53'),(2305,'2005-06-18 08:31:18',622,149,'2005-06-24 06:18:18',2,'2006-02-15 21:30:53'),(2306,'2005-06-18 08:33:23',208,477,'2005-06-27 10:01:23',2,'2006-02-15 21:30:53'),(2307,'2005-06-18 08:34:59',4576,47,'2005-06-23 04:42:59',1,'2006-02-15 21:30:53'),(2308,'2005-06-18 08:41:48',197,1,'2005-06-22 03:36:48',2,'2006-02-15 21:30:53'),(2309,'2005-06-18 08:43:24',611,576,'2005-06-20 03:56:24',1,'2006-02-15 21:30:53'),(2310,'2005-06-18 08:45:59',2590,409,'2005-06-26 05:06:59',2,'2006-02-15 21:30:53'),(2311,'2005-06-18 08:51:29',4506,236,'2005-06-25 07:51:29',1,'2006-02-15 21:30:53'),(2312,'2005-06-18 08:55:46',402,184,'2005-06-24 04:34:46',2,'2006-02-15 21:30:53'),(2313,'2005-06-18 08:56:45',3134,379,'2005-06-26 10:30:45',2,'2006-02-15 21:30:53'),(2314,'2005-06-18 09:03:19',2157,160,'2005-06-19 12:14:19',1,'2006-02-15 21:30:53'),(2315,'2005-06-18 09:03:39',2766,372,'2005-06-22 11:18:39',1,'2006-02-15 21:30:53'),(2316,'2005-06-18 09:04:59',372,289,'2005-06-20 09:39:59',2,'2006-02-15 21:30:53'),(2317,'2005-06-18 09:12:18',1602,326,'2005-06-21 05:50:18',2,'2006-02-15 21:30:53'),(2318,'2005-06-18 09:13:54',2328,383,'2005-06-23 07:19:54',1,'2006-02-15 21:30:53'),(2319,'2005-06-18 09:24:22',1521,393,'2005-06-26 14:12:22',2,'2006-02-15 21:30:53'),(2320,'2005-06-18 09:24:50',597,552,'2005-06-24 07:59:50',1,'2006-02-15 21:30:53'),(2321,'2005-06-18 09:42:42',1160,565,'2005-06-25 14:28:42',1,'2006-02-15 21:30:53'),(2322,'2005-06-18 09:44:21',1893,213,'2005-06-25 09:29:21',1,'2006-02-15 21:30:53'),(2323,'2005-06-18 09:55:02',207,54,'2005-06-23 07:19:02',1,'2006-02-15 21:30:53'),(2324,'2005-06-18 10:00:33',2987,268,'2005-06-23 14:10:33',1,'2006-02-15 21:30:53'),(2325,'2005-06-18 10:08:07',752,406,'2005-06-21 15:07:07',1,'2006-02-15 21:30:53'),(2326,'2005-06-18 10:14:22',3829,174,'2005-06-24 07:01:22',2,'2006-02-15 21:30:53'),(2327,'2005-06-18 10:16:40',1351,571,'2005-06-20 15:06:40',1,'2006-02-15 21:30:53'),(2328,'2005-06-18 10:17:21',2304,441,'2005-06-21 04:18:21',1,'2006-02-15 21:30:53'),(2329,'2005-06-18 10:22:52',4156,587,'2005-06-20 12:03:52',2,'2006-02-15 21:30:53'),(2330,'2005-06-18 10:41:19',4285,390,'2005-06-25 10:48:19',1,'2006-02-15 21:30:53'),(2331,'2005-06-18 10:50:09',1546,221,'2005-06-25 14:30:09',1,'2006-02-15 21:30:53'),(2332,'2005-06-18 10:53:51',2152,140,'2005-06-24 12:06:51',2,'2006-02-15 21:30:53'),(2333,'2005-06-18 10:55:54',2323,283,'2005-06-25 07:09:54',2,'2006-02-15 21:30:53'),(2334,'2005-06-18 10:56:24',3076,223,'2005-06-22 10:38:24',2,'2006-02-15 21:30:53'),(2335,'2005-06-18 10:59:36',3968,446,'2005-06-26 06:42:36',2,'2006-02-15 21:30:53'),(2336,'2005-06-18 11:00:05',3888,124,'2005-06-25 06:02:05',2,'2006-02-15 21:30:53'),(2337,'2005-06-18 11:15:27',4522,582,'2005-06-26 06:59:27',2,'2006-02-15 21:30:53'),(2338,'2005-06-18 11:24:54',3165,316,'2005-06-19 07:34:54',1,'2006-02-15 21:30:53'),(2339,'2005-06-18 11:29:22',313,297,'2005-06-21 10:29:22',1,'2006-02-15 21:30:53'),(2340,'2005-06-18 11:30:56',1913,157,'2005-06-23 06:00:56',1,'2006-02-15 21:30:53'),(2341,'2005-06-18 11:35:30',638,31,'2005-06-27 11:56:30',2,'2006-02-15 21:30:53'),(2342,'2005-06-18 11:42:40',2169,146,'2005-06-20 14:40:40',1,'2006-02-15 21:30:53'),(2343,'2005-06-18 11:46:26',4554,20,'2005-06-22 11:37:26',2,'2006-02-15 21:30:53'),(2344,'2005-06-18 12:01:47',2015,498,'2005-06-19 11:56:47',2,'2006-02-15 21:30:53'),(2345,'2005-06-18 12:03:23',1818,6,'2005-06-22 14:25:23',2,'2006-02-15 21:30:53'),(2346,'2005-06-18 12:08:16',2575,308,'2005-06-27 15:02:16',1,'2006-02-15 21:30:53'),(2347,'2005-06-18 12:12:29',4516,194,'2005-06-23 14:03:29',1,'2006-02-15 21:30:53'),(2348,'2005-06-18 12:15:43',3622,449,'2005-06-24 14:03:43',2,'2006-02-15 21:30:53'),(2349,'2005-06-18 12:25:14',1536,495,'2005-06-19 11:24:14',2,'2006-02-15 21:30:53'),(2350,'2005-06-18 12:25:29',1179,471,'2005-06-23 11:35:29',1,'2006-02-15 21:30:53'),(2351,'2005-06-18 12:27:57',2942,216,'2005-06-23 16:14:57',1,'2006-02-15 21:30:53'),(2352,'2005-06-18 12:40:15',2141,590,'2005-06-22 07:07:15',2,'2006-02-15 21:30:53'),(2353,'2005-06-18 12:53:25',3223,361,'2005-06-19 13:53:25',1,'2006-02-15 21:30:53'),(2354,'2005-06-18 12:54:18',2793,77,'2005-06-26 07:23:18',2,'2006-02-15 21:30:53'),(2355,'2005-06-18 12:57:06',3613,125,'2005-06-26 07:32:06',1,'2006-02-15 21:30:53'),(2356,'2005-06-18 12:59:23',2207,455,'2005-06-21 10:12:23',2,'2006-02-15 21:30:53'),(2357,'2005-06-18 12:59:41',1323,561,'2005-06-26 16:40:41',1,'2006-02-15 21:30:53'),(2358,'2005-06-18 13:00:51',1728,478,'2005-06-26 12:58:51',1,'2006-02-15 21:30:53'),(2359,'2005-06-18 13:04:42',3087,201,'2005-06-25 11:52:42',1,'2006-02-15 21:30:53'),(2360,'2005-06-18 13:11:13',37,57,'2005-06-23 15:32:13',2,'2006-02-15 21:30:53'),(2361,'2005-06-18 13:19:05',3547,546,'2005-06-23 07:59:05',1,'2006-02-15 21:30:53'),(2362,'2005-06-18 13:31:15',2815,514,'2005-06-19 12:35:15',1,'2006-02-15 21:30:53'),(2363,'2005-06-18 13:33:59',3497,1,'2005-06-19 17:40:59',1,'2006-02-15 21:30:53'),(2364,'2005-06-18 13:37:32',2856,512,'2005-06-23 14:18:32',1,'2006-02-15 21:30:53'),(2365,'2005-06-18 13:45:34',3109,493,'2005-06-21 12:12:34',2,'2006-02-15 21:30:53'),(2366,'2005-06-18 13:46:39',1413,162,'2005-06-23 18:49:39',2,'2006-02-15 21:30:53'),(2367,'2005-06-18 14:00:31',4086,566,'2005-06-22 14:45:31',2,'2006-02-15 21:30:53'),(2368,'2005-06-18 14:10:27',1058,99,'2005-06-23 10:49:27',1,'2006-02-15 21:30:53'),(2369,'2005-06-18 14:25:29',1515,44,'2005-06-23 18:45:29',2,'2006-02-15 21:30:53'),(2370,'2005-06-18 14:29:54',2656,489,'2005-06-24 10:23:54',1,'2006-02-15 21:30:53'),(2371,'2005-06-18 14:35:29',178,248,'2005-06-22 09:38:29',2,'2006-02-15 21:30:53'),(2372,'2005-06-18 14:37:37',1567,96,'2005-06-21 08:40:37',2,'2006-02-15 21:30:53'),(2373,'2005-06-18 14:37:57',2780,544,'2005-06-23 19:29:57',2,'2006-02-15 21:30:53'),(2374,'2005-06-18 14:44:06',2634,71,'2005-06-22 17:14:06',1,'2006-02-15 21:30:53'),(2375,'2005-06-18 14:47:29',2175,259,'2005-06-26 13:52:29',2,'2006-02-15 21:30:53'),(2376,'2005-06-18 14:55:30',3664,479,'2005-06-25 17:40:30',1,'2006-02-15 21:30:53'),(2377,'2005-06-18 14:56:23',3568,193,'2005-06-27 12:36:23',1,'2006-02-15 21:30:53'),(2378,'2005-06-18 14:57:49',2796,384,'2005-06-26 18:23:49',2,'2006-02-15 21:30:53'),(2379,'2005-06-18 14:59:39',2708,597,'2005-06-24 13:26:39',2,'2006-02-15 21:30:53'),(2380,'2005-06-18 15:00:04',4413,256,'2005-06-24 13:29:04',2,'2006-02-15 21:30:53'),(2381,'2005-06-18 15:00:30',1491,167,'2005-06-22 11:38:30',1,'2006-02-15 21:30:53'),(2382,'2005-06-18 15:03:52',915,568,'2005-06-20 10:16:52',2,'2006-02-15 21:30:53'),(2383,'2005-06-18 15:17:59',2459,149,'2005-06-26 18:42:59',2,'2006-02-15 21:30:53'),(2384,'2005-06-18 15:18:49',3378,132,'2005-06-21 18:10:49',1,'2006-02-15 21:30:53'),(2385,'2005-06-18 15:22:40',1641,298,'2005-06-26 10:02:40',1,'2006-02-15 21:30:53'),(2386,'2005-06-18 15:22:51',1361,293,'2005-06-22 20:01:51',1,'2006-02-15 21:30:53'),(2387,'2005-06-18 15:24:19',692,289,'2005-06-25 17:41:19',2,'2006-02-15 21:30:53'),(2388,'2005-06-18 15:26:30',2923,53,'2005-06-20 20:24:30',1,'2006-02-15 21:30:53'),(2389,'2005-06-18 15:27:47',731,382,'2005-06-21 12:26:47',1,'2006-02-15 21:30:53'),(2390,'2005-06-18 15:29:26',2748,239,'2005-06-23 17:50:26',1,'2006-02-15 21:30:53'),(2391,'2005-06-18 15:33:30',2850,491,'2005-06-25 14:30:30',1,'2006-02-15 21:30:53'),(2392,'2005-06-18 15:34:18',2213,261,'2005-06-19 16:22:18',1,'2006-02-15 21:30:53'),(2393,'2005-06-18 15:37:55',3143,21,'2005-06-25 17:11:55',1,'2006-02-15 21:30:53'),(2394,'2005-06-18 15:42:30',2669,60,'2005-06-26 16:12:30',1,'2006-02-15 21:30:53'),(2395,'2005-06-18 15:45:15',899,544,'2005-06-27 19:11:15',2,'2006-02-15 21:30:53'),(2396,'2005-06-18 15:49:48',1986,31,'2005-06-27 20:31:48',2,'2006-02-15 21:30:53'),(2397,'2005-06-18 15:51:25',2895,76,'2005-06-24 15:52:25',1,'2006-02-15 21:30:53'),(2398,'2005-06-18 15:56:53',3001,526,'2005-06-27 14:25:53',2,'2006-02-15 21:30:53'),(2399,'2005-06-18 16:06:14',2492,577,'2005-06-26 16:56:14',2,'2006-02-15 21:30:53'),(2400,'2005-06-18 16:10:46',3194,410,'2005-06-25 20:34:46',1,'2006-02-15 21:30:53'),(2401,'2005-06-18 16:22:03',85,359,'2005-06-19 13:49:03',2,'2006-02-15 21:30:53'),(2402,'2005-06-18 16:24:45',2833,360,'2005-06-27 14:39:45',1,'2006-02-15 21:30:53'),(2403,'2005-06-18 16:33:22',2697,536,'2005-06-23 19:25:22',1,'2006-02-15 21:30:53'),(2404,'2005-06-18 16:33:48',4138,456,'2005-06-23 20:39:48',2,'2006-02-15 21:30:53'),(2405,'2005-06-18 16:36:38',3604,356,'2005-06-21 19:15:38',1,'2006-02-15 21:30:53'),(2406,'2005-06-18 16:39:37',1321,497,'2005-06-23 12:04:37',1,'2006-02-15 21:30:53'),(2407,'2005-06-18 16:50:41',2547,421,'2005-06-24 15:29:41',2,'2006-02-15 21:30:53'),(2408,'2005-06-18 16:50:44',258,87,'2005-06-19 20:11:44',1,'2006-02-15 21:30:53'),(2409,'2005-06-18 16:53:33',656,84,'2005-06-20 18:23:33',1,'2006-02-15 21:30:53'),(2410,'2005-06-18 16:55:08',265,381,'2005-06-20 12:40:08',2,'2006-02-15 21:30:53'),(2411,'2005-06-18 16:55:54',3302,558,'2005-06-25 12:44:54',1,'2006-02-15 21:30:53'),(2412,'2005-06-18 16:58:58',1946,127,'2005-06-27 22:57:58',1,'2006-02-15 21:30:53'),(2413,'2005-06-18 16:59:34',1851,170,'2005-06-27 16:10:34',2,'2006-02-15 21:30:53'),(2414,'2005-06-18 17:01:55',4500,275,'2005-06-20 17:42:55',1,'2006-02-15 21:30:53'),(2415,'2005-06-18 17:02:42',3105,434,'2005-06-25 13:16:42',2,'2006-02-15 21:30:53'),(2416,'2005-06-18 17:07:34',2868,26,'2005-06-24 19:16:34',1,'2006-02-15 21:30:53'),(2417,'2005-06-18 17:12:01',1956,219,'2005-06-26 13:32:01',1,'2006-02-15 21:30:53'),(2418,'2005-06-18 17:14:42',2756,381,'2005-06-26 16:33:42',1,'2006-02-15 21:30:53'),(2419,'2005-06-18 17:21:24',1255,102,'2005-06-26 18:25:24',1,'2006-02-15 21:30:53'),(2420,'2005-06-18 17:22:28',241,502,'2005-06-23 17:45:28',1,'2006-02-15 21:30:53'),(2421,'2005-06-18 17:25:05',3524,26,'2005-06-23 21:09:05',2,'2006-02-15 21:30:53'),(2422,'2005-06-18 17:28:57',3170,527,'2005-06-23 15:22:57',1,'2006-02-15 21:30:53'),(2423,'2005-06-18 17:32:08',1744,231,'2005-06-21 11:58:08',1,'2006-02-15 21:30:53'),(2424,'2005-06-18 17:35:08',1884,233,'2005-06-23 15:33:08',1,'2006-02-15 21:30:53'),(2425,'2005-06-18 17:37:45',2630,579,'2005-06-27 18:40:45',2,'2006-02-15 21:30:53'),(2426,'2005-06-18 17:40:44',474,543,'2005-06-22 14:30:44',2,'2006-02-15 21:30:53'),(2427,'2005-06-18 17:45:00',4278,176,'2005-06-27 20:07:00',2,'2006-02-15 21:30:53'),(2428,'2005-06-18 17:47:34',3892,241,'2005-06-19 14:39:34',2,'2006-02-15 21:30:53'),(2429,'2005-06-18 17:48:28',3238,583,'2005-06-27 15:52:28',1,'2006-02-15 21:30:53'),(2430,'2005-06-18 17:51:46',1984,434,'2005-06-23 19:17:46',1,'2006-02-15 21:30:53'),(2431,'2005-06-18 17:53:03',1383,295,'2005-06-25 15:08:03',2,'2006-02-15 21:30:53'),(2432,'2005-06-18 17:59:18',4420,250,'2005-06-25 15:19:18',2,'2006-02-15 21:30:53'),(2433,'2005-06-18 18:10:17',937,356,'2005-06-23 14:46:17',2,'2006-02-15 21:30:53'),(2434,'2005-06-18 18:11:51',3739,12,'2005-06-23 12:52:51',2,'2006-02-15 21:30:53'),(2435,'2005-06-18 18:12:26',3548,173,'2005-06-22 13:43:26',2,'2006-02-15 21:30:53'),(2436,'2005-06-18 18:13:32',3328,534,'2005-06-21 13:33:32',2,'2006-02-15 21:30:53'),(2437,'2005-06-18 18:30:26',1799,454,'2005-06-21 18:36:26',1,'2006-02-15 21:30:53'),(2438,'2005-06-18 18:34:21',184,31,'2005-06-19 16:50:21',1,'2006-02-15 21:30:53'),(2439,'2005-06-18 18:35:04',909,39,'2005-06-21 19:47:04',2,'2006-02-15 21:30:53'),(2440,'2005-06-18 18:41:09',2866,380,'2005-06-22 12:46:09',1,'2006-02-15 21:30:53'),(2441,'2005-06-18 18:45:11',3148,593,'2005-06-20 00:42:11',1,'2006-02-15 21:30:53'),(2442,'2005-06-18 18:49:18',4045,364,'2005-06-22 16:18:18',1,'2006-02-15 21:30:53'),(2443,'2005-06-18 18:52:30',1622,233,'2005-06-24 21:27:30',1,'2006-02-15 21:30:53'),(2444,'2005-06-18 18:58:12',2233,576,'2005-06-27 20:48:12',1,'2006-02-15 21:30:53'),(2445,'2005-06-18 19:02:11',2887,98,'2005-06-23 22:25:11',1,'2006-02-15 21:30:53'),(2446,'2005-06-18 19:04:41',1283,466,'2005-06-27 17:10:41',2,'2006-02-15 21:30:53'),(2447,'2005-06-18 19:10:55',2353,523,'2005-06-27 16:35:55',1,'2006-02-15 21:30:53'),(2448,'2005-06-18 19:13:45',1642,308,'2005-06-27 14:43:45',1,'2006-02-15 21:30:53'),(2449,'2005-06-18 19:18:36',3630,498,'2005-06-27 23:49:36',1,'2006-02-15 21:30:53'),(2450,'2005-06-18 19:25:47',863,230,'2005-06-27 15:54:47',1,'2006-02-15 21:30:53'),(2451,'2005-06-18 19:28:02',835,24,'2005-06-23 16:41:02',1,'2006-02-15 21:30:53'),(2452,'2005-06-18 19:29:21',4318,77,'2005-06-26 22:27:21',1,'2006-02-15 21:30:53'),(2453,'2005-06-18 19:30:53',2562,588,'2005-06-20 17:22:53',1,'2006-02-15 21:30:53'),(2454,'2005-06-18 19:32:51',314,253,'2005-06-24 20:03:51',2,'2006-02-15 21:30:53'),(2455,'2005-06-18 19:33:06',870,241,'2005-06-21 15:21:06',1,'2006-02-15 21:30:53'),(2456,'2005-06-18 19:36:50',553,147,'2005-06-23 22:48:50',1,'2006-02-15 21:30:53'),(2457,'2005-06-18 19:38:20',1277,91,'2005-06-26 20:48:20',1,'2006-02-15 21:30:53'),(2458,'2005-06-18 19:39:05',599,572,'2005-06-21 13:54:05',2,'2006-02-15 21:30:53'),(2459,'2005-06-18 19:44:08',1024,185,'2005-06-23 19:14:08',2,'2006-02-15 21:30:53'),(2460,'2005-06-18 19:54:13',3933,553,'2005-06-27 22:36:13',2,'2006-02-15 21:30:53'),(2461,'2005-06-18 19:58:12',78,343,'2005-06-28 01:35:12',2,'2006-02-15 21:30:53'),(2462,'2005-06-18 20:00:15',2151,468,'2005-06-21 21:54:15',2,'2006-02-15 21:30:53'),(2463,'2005-06-18 20:01:43',1186,194,'2005-06-25 15:04:43',2,'2006-02-15 21:30:53'),(2464,'2005-06-18 20:06:05',463,380,'2005-06-20 19:22:05',1,'2006-02-15 21:30:53'),(2465,'2005-06-18 20:07:02',3783,160,'2005-06-25 20:55:02',1,'2006-02-15 21:30:53'),(2466,'2005-06-18 20:18:42',1356,427,'2005-06-20 01:32:42',1,'2006-02-15 21:30:53'),(2467,'2005-06-18 20:20:05',4387,177,'2005-06-20 17:01:05',1,'2006-02-15 21:30:53'),(2468,'2005-06-18 20:23:52',1833,382,'2005-06-23 14:34:52',1,'2006-02-15 21:30:53'),(2469,'2005-06-18 20:24:23',1993,137,'2005-06-27 15:39:23',1,'2006-02-15 21:30:53'),(2470,'2005-06-18 20:28:31',4319,40,'2005-06-25 18:48:31',1,'2006-02-15 21:30:53'),(2471,'2005-06-18 20:31:00',3399,183,'2005-06-24 18:01:00',2,'2006-02-15 21:30:53'),(2472,'2005-06-18 20:32:40',4556,70,'2005-06-20 00:40:40',2,'2006-02-15 21:30:53'),(2473,'2005-06-18 20:42:45',3876,221,'2005-06-19 20:17:45',1,'2006-02-15 21:30:53'),(2474,'2005-06-18 20:51:34',3450,151,'2005-06-25 01:39:34',1,'2006-02-15 21:30:53'),(2475,'2005-06-18 20:52:46',889,336,'2005-06-21 19:40:46',2,'2006-02-15 21:30:53'),(2476,'2005-06-18 20:57:12',3998,334,'2005-06-20 15:42:12',1,'2006-02-15 21:30:53'),(2477,'2005-06-18 20:58:46',2510,206,'2005-06-22 21:49:46',1,'2006-02-15 21:30:53'),(2478,'2005-06-18 21:01:21',2798,241,'2005-06-24 00:20:21',1,'2006-02-15 21:30:53'),(2479,'2005-06-18 21:03:08',1624,408,'2005-06-22 16:49:08',1,'2006-02-15 21:30:53'),(2480,'2005-06-18 21:04:09',4078,310,'2005-06-22 16:24:09',1,'2006-02-15 21:30:53'),(2481,'2005-06-18 21:08:30',800,322,'2005-06-23 02:35:30',2,'2006-02-15 21:30:53'),(2482,'2005-06-18 21:10:44',452,122,'2005-06-19 20:39:44',1,'2006-02-15 21:30:53'),(2483,'2005-06-18 21:22:23',4225,88,'2005-06-25 01:14:23',1,'2006-02-15 21:30:53'),(2484,'2005-06-18 21:25:23',1511,515,'2005-06-24 16:03:23',2,'2006-02-15 21:30:53'),(2485,'2005-06-18 21:26:03',1562,56,'2005-06-21 22:09:03',2,'2006-02-15 21:30:53'),(2486,'2005-06-18 21:26:56',268,15,'2005-06-22 23:42:56',1,'2006-02-15 21:30:53'),(2487,'2005-06-18 21:32:54',3683,374,'2005-06-23 21:11:54',2,'2006-02-15 21:30:53'),(2488,'2005-06-18 21:38:26',1338,403,'2005-06-24 02:08:26',2,'2006-02-15 21:30:53'),(2489,'2005-06-18 22:00:44',4012,382,'2005-06-22 02:06:44',2,'2006-02-15 21:30:53'),(2490,'2005-06-18 22:00:50',1934,402,'2005-06-19 23:45:50',2,'2006-02-15 21:30:53'),(2491,'2005-06-18 22:01:31',1779,316,'2005-06-26 02:46:31',1,'2006-02-15 21:30:53'),(2492,'2005-06-18 22:04:15',2858,237,'2005-06-23 21:58:15',1,'2006-02-15 21:30:53'),(2493,'2005-06-18 22:12:09',4121,269,'2005-06-27 23:44:09',1,'2006-02-15 21:30:53'),(2494,'2005-06-18 22:15:09',1313,434,'2005-06-25 17:23:09',1,'2006-02-15 21:30:53'),(2495,'2005-06-18 22:15:42',3826,338,'2005-06-21 23:21:42',1,'2006-02-15 21:30:53'),(2496,'2005-06-18 22:20:11',646,527,'2005-06-20 03:08:11',2,'2006-02-15 21:30:53'),(2497,'2005-06-18 22:50:40',2327,171,'2005-06-26 22:39:40',1,'2006-02-15 21:30:53'),(2498,'2005-06-18 22:56:26',2291,74,'2005-06-22 20:02:26',1,'2006-02-15 21:30:53'),(2499,'2005-06-18 23:01:36',3172,348,'2005-06-20 21:50:36',2,'2006-02-15 21:30:53'),(2500,'2005-06-18 23:07:12',4241,12,'2005-06-26 17:27:12',1,'2006-02-15 21:30:53'),(2501,'2005-06-18 23:10:11',1185,450,'2005-06-24 18:40:11',2,'2006-02-15 21:30:53'),(2502,'2005-06-18 23:12:13',2622,325,'2005-06-20 04:19:13',2,'2006-02-15 21:30:53'),(2503,'2005-06-18 23:17:19',2486,176,'2005-06-23 03:57:19',2,'2006-02-15 21:30:53'),(2504,'2005-06-18 23:19:53',1684,452,'2005-06-21 04:43:53',2,'2006-02-15 21:30:53'),(2505,'2005-06-18 23:28:27',1670,519,'2005-06-26 01:36:27',1,'2006-02-15 21:30:53'),(2506,'2005-06-18 23:29:53',2308,82,'2005-06-25 18:11:53',2,'2006-02-15 21:30:53'),(2507,'2005-06-18 23:39:22',3121,325,'2005-06-21 19:23:22',1,'2006-02-15 21:30:53'),(2508,'2005-06-18 23:43:58',4322,476,'2005-06-20 19:26:58',2,'2006-02-15 21:30:53'),(2509,'2005-06-18 23:44:08',4469,213,'2005-06-20 01:36:08',2,'2006-02-15 21:30:53'),(2510,'2005-06-18 23:44:21',3827,384,'2005-06-24 00:31:21',1,'2006-02-15 21:30:53'),(2511,'2005-06-18 23:45:30',1824,234,'2005-06-24 01:21:30',2,'2006-02-15 21:30:53'),(2512,'2005-06-18 23:48:47',4515,27,'2005-06-21 04:58:47',2,'2006-02-15 21:30:53'),(2513,'2005-06-18 23:53:15',3379,515,'2005-06-24 21:16:15',2,'2006-02-15 21:30:53'),(2514,'2005-06-18 23:56:44',2559,382,'2005-06-23 21:10:44',1,'2006-02-15 21:30:53'),(2515,'2005-06-18 23:57:31',3213,188,'2005-06-22 05:31:31',2,'2006-02-15 21:30:53'),(2516,'2005-06-19 00:03:28',2678,87,'2005-06-21 00:30:28',2,'2006-02-15 21:30:53'),(2517,'2005-06-19 00:11:26',53,74,'2005-06-25 02:19:26',1,'2006-02-15 21:30:53'),(2518,'2005-06-19 00:16:23',3503,86,'2005-06-25 19:28:23',2,'2006-02-15 21:30:53'),(2519,'2005-06-19 00:19:21',1172,128,'2005-06-25 01:46:21',1,'2006-02-15 21:30:53'),(2520,'2005-06-19 00:29:00',4181,446,'2005-06-28 04:36:00',1,'2006-02-15 21:30:53'),(2521,'2005-06-19 00:41:08',132,92,'2005-06-22 00:40:08',1,'2006-02-15 21:30:53'),(2522,'2005-06-19 00:43:42',550,579,'2005-06-28 04:26:42',1,'2006-02-15 21:30:53'),(2523,'2005-06-19 00:45:56',460,89,'2005-06-21 00:54:56',2,'2006-02-15 21:30:53'),(2524,'2005-06-19 00:48:11',441,465,'2005-06-25 01:46:11',2,'2006-02-15 21:30:53'),(2525,'2005-06-19 00:48:22',1307,365,'2005-06-24 19:10:22',2,'2006-02-15 21:30:53'),(2526,'2005-06-19 01:03:07',3309,500,'2005-06-28 06:57:07',1,'2006-02-15 21:30:53'),(2527,'2005-06-19 01:10:31',387,463,'2005-06-20 05:37:31',2,'2006-02-15 21:30:53'),(2528,'2005-06-19 01:14:12',1836,331,'2005-06-26 05:08:12',2,'2006-02-15 21:30:53'),(2529,'2005-06-19 01:18:27',2306,478,'2005-06-24 00:26:27',1,'2006-02-15 21:30:53'),(2530,'2005-06-19 01:20:00',4166,31,'2005-06-23 04:10:00',1,'2006-02-15 21:30:53'),(2531,'2005-06-19 01:20:49',768,368,'2005-06-22 01:50:49',2,'2006-02-15 21:30:53'),(2532,'2005-06-19 01:27:46',1870,26,'2005-06-20 02:15:46',1,'2006-02-15 21:30:53'),(2533,'2005-06-19 01:34:26',4564,187,'2005-06-22 20:19:26',1,'2006-02-15 21:30:53'),(2534,'2005-06-19 01:38:39',2540,517,'2005-06-23 00:16:39',1,'2006-02-15 21:30:53'),(2535,'2005-06-19 01:39:04',901,130,'2005-06-28 01:33:04',2,'2006-02-15 21:30:53'),(2536,'2005-06-19 01:41:34',4232,163,'2005-06-27 03:11:34',1,'2006-02-15 21:30:53'),(2537,'2005-06-19 01:52:21',3499,388,'2005-06-26 02:09:21',1,'2006-02-15 21:30:53'),(2538,'2005-06-19 01:56:59',1287,472,'2005-06-25 00:54:59',2,'2006-02-15 21:30:53'),(2539,'2005-06-19 01:58:39',4474,527,'2005-06-19 22:17:39',2,'2006-02-15 21:30:53'),(2540,'2005-06-19 02:04:48',4305,363,'2005-06-20 22:42:48',2,'2006-02-15 21:30:53'),(2541,'2005-06-19 02:08:10',129,360,'2005-06-23 23:32:10',1,'2006-02-15 21:30:53'),(2542,'2005-06-19 02:08:39',1446,67,'2005-06-26 20:25:39',1,'2006-02-15 21:30:53'),(2543,'2005-06-19 02:14:11',1729,58,'2005-06-21 00:40:11',2,'2006-02-15 21:30:53'),(2544,'2005-06-19 02:16:17',1465,558,'2005-06-22 21:45:17',1,'2006-02-15 21:30:53'),(2545,'2005-06-19 02:23:36',3237,413,'2005-06-20 03:17:36',2,'2006-02-15 21:30:53'),(2546,'2005-06-19 02:39:39',971,272,'2005-06-23 03:56:39',2,'2006-02-15 21:30:53'),(2547,'2005-06-19 02:44:17',4560,162,'2005-06-24 08:01:17',2,'2006-02-15 21:30:53'),(2548,'2005-06-19 02:45:35',4292,561,'2005-06-22 06:52:35',2,'2006-02-15 21:30:53'),(2549,'2005-06-19 02:46:39',3854,495,'2005-06-26 22:30:39',2,'2006-02-15 21:30:53'),(2550,'2005-06-19 02:49:55',1370,38,'2005-06-24 01:37:55',1,'2006-02-15 21:30:53'),(2551,'2005-06-19 02:51:04',2007,444,'2005-06-28 05:02:04',1,'2006-02-15 21:30:53'),(2552,'2005-06-19 03:01:29',664,389,'2005-06-28 04:13:29',1,'2006-02-15 21:30:53'),(2553,'2005-06-19 03:04:59',923,473,'2005-06-26 02:36:59',2,'2006-02-15 21:30:53'),(2554,'2005-06-19 03:05:38',3916,322,'2005-06-25 23:03:38',1,'2006-02-15 21:30:53'),(2555,'2005-06-19 03:07:02',260,191,'2005-06-25 05:25:02',2,'2006-02-15 21:30:53'),(2556,'2005-06-19 03:07:32',125,377,'2005-06-23 23:09:32',1,'2006-02-15 21:30:53'),(2557,'2005-06-19 03:08:51',4546,257,'2005-06-20 07:59:51',1,'2006-02-15 21:30:53'),(2558,'2005-06-19 03:09:16',2920,361,'2005-06-24 05:29:16',1,'2006-02-15 21:30:53'),(2559,'2005-06-19 03:09:46',4433,414,'2005-06-28 07:49:46',1,'2006-02-15 21:30:53'),(2560,'2005-06-19 03:12:42',3340,309,'2005-06-28 02:28:42',1,'2006-02-15 21:30:53'),(2561,'2005-06-19 03:14:52',4128,256,'2005-06-21 02:42:52',2,'2006-02-15 21:30:53'),(2562,'2005-06-19 03:15:05',51,265,'2005-06-21 08:26:05',2,'2006-02-15 21:30:53'),(2563,'2005-06-19 03:24:17',1935,41,'2005-06-23 04:08:17',2,'2006-02-15 21:30:53'),(2564,'2005-06-19 03:41:10',4008,408,'2005-06-24 03:10:10',1,'2006-02-15 21:30:53'),(2565,'2005-06-19 03:44:03',2347,128,'2005-06-24 01:26:03',2,'2006-02-15 21:30:53'),(2566,'2005-06-19 03:45:39',495,486,'2005-06-25 08:43:39',2,'2006-02-15 21:30:53'),(2567,'2005-06-19 04:04:46',216,496,'2005-06-19 23:39:46',2,'2006-02-15 21:30:53'),(2568,'2005-06-19 04:09:03',3032,190,'2005-06-24 23:24:03',1,'2006-02-15 21:30:53'),(2569,'2005-06-19 04:19:04',30,213,'2005-06-26 04:31:04',1,'2006-02-15 21:30:53'),(2570,'2005-06-19 04:20:13',1105,5,'2005-06-25 07:00:13',1,'2006-02-15 21:30:53'),(2571,'2005-06-19 04:20:14',1800,66,'2005-06-21 07:28:14',2,'2006-02-15 21:30:53'),(2572,'2005-06-19 04:21:26',2449,159,'2005-06-23 09:22:26',2,'2006-02-15 21:30:53'),(2573,'2005-06-19 04:23:18',3354,563,'2005-06-23 06:04:18',1,'2006-02-15 21:30:53'),(2574,'2005-06-19 04:23:52',3320,143,'2005-06-20 05:24:52',1,'2006-02-15 21:30:53'),(2575,'2005-06-19 04:32:52',354,336,'2005-06-24 09:37:52',1,'2006-02-15 21:30:53'),(2576,'2005-06-19 04:34:15',2928,559,'2005-06-28 10:02:15',2,'2006-02-15 21:30:53'),(2577,'2005-06-19 04:36:03',447,66,'2005-06-28 00:38:03',2,'2006-02-15 21:30:53'),(2578,'2005-06-19 04:40:06',1695,267,'2005-06-26 09:37:06',2,'2006-02-15 21:30:53'),(2579,'2005-06-19 04:40:44',3836,493,'2005-06-22 09:22:44',1,'2006-02-15 21:30:53'),(2580,'2005-06-19 04:44:30',2527,219,'2005-06-23 04:15:30',1,'2006-02-15 21:30:53'),(2581,'2005-06-19 04:54:13',376,456,'2005-06-23 23:28:13',2,'2006-02-15 21:30:53'),(2582,'2005-06-19 04:56:27',201,267,'2005-06-26 08:56:27',2,'2006-02-15 21:30:53'),(2583,'2005-06-19 05:01:40',3999,523,'2005-06-28 00:04:40',1,'2006-02-15 21:30:53'),(2584,'2005-06-19 05:02:36',3733,90,'2005-06-28 04:52:36',2,'2006-02-15 21:30:53'),(2585,'2005-06-19 05:05:03',91,406,'2005-06-20 09:28:03',1,'2006-02-15 21:30:53'),(2586,'2005-06-19 05:05:11',4104,537,'2005-06-27 00:23:11',1,'2006-02-15 21:30:53'),(2587,'2005-06-19 05:06:14',2188,331,'2005-06-24 10:50:14',2,'2006-02-15 21:30:53'),(2588,'2005-06-19 05:20:31',3626,143,'2005-06-22 04:20:31',2,'2006-02-15 21:30:53'),(2589,'2005-06-19 05:21:27',225,164,'2005-06-21 09:55:27',2,'2006-02-15 21:30:53'),(2590,'2005-06-19 05:31:40',3572,324,'2005-06-20 07:58:40',2,'2006-02-15 21:30:53'),(2591,'2005-06-19 05:32:22',4481,438,'2005-06-25 23:42:22',1,'2006-02-15 21:30:53'),(2592,'2005-06-19 05:36:54',282,208,'2005-06-21 08:44:54',1,'2006-02-15 21:30:53'),(2593,'2005-06-19 05:40:11',2031,556,'2005-06-28 08:11:11',1,'2006-02-15 21:30:53'),(2594,'2005-06-19 05:43:43',829,123,'2005-06-25 03:41:43',2,'2006-02-15 21:30:53'),(2595,'2005-06-19 05:43:55',3197,122,'2005-06-25 10:20:55',1,'2006-02-15 21:30:53'),(2596,'2005-06-19 05:48:26',2229,80,'2005-06-24 10:16:26',1,'2006-02-15 21:30:53'),(2597,'2005-06-19 05:53:46',2278,407,'2005-06-20 05:14:46',1,'2006-02-15 21:30:53'),(2598,'2005-06-19 05:59:57',2079,265,'2005-06-24 11:44:57',2,'2006-02-15 21:30:53'),(2599,'2005-06-19 06:06:07',461,171,'2005-06-27 01:10:07',1,'2006-02-15 21:30:53'),(2600,'2005-06-19 06:07:25',469,423,'2005-06-28 03:37:25',2,'2006-02-15 21:30:53'),(2601,'2005-06-19 06:09:44',2898,98,'2005-06-20 08:03:44',1,'2006-02-15 21:30:53'),(2602,'2005-06-19 06:10:08',4124,173,'2005-06-24 00:39:08',2,'2006-02-15 21:30:53'),(2603,'2005-06-19 06:21:25',587,222,'2005-06-26 03:19:25',1,'2006-02-15 21:30:53'),(2604,'2005-06-19 06:30:10',2889,28,'2005-06-25 11:16:10',2,'2006-02-15 21:30:53'),(2605,'2005-06-19 06:48:01',2342,38,'2005-06-25 07:00:01',1,'2006-02-15 21:30:53'),(2606,'2005-06-19 06:51:32',4133,364,'2005-06-21 03:15:32',2,'2006-02-15 21:30:53'),(2607,'2005-06-19 06:55:01',3922,340,'2005-06-25 03:21:01',2,'2006-02-15 21:30:53'),(2608,'2005-06-19 07:10:36',1618,132,'2005-06-24 13:09:36',1,'2006-02-15 21:30:53'),(2609,'2005-06-19 07:13:12',2254,383,'2005-06-28 12:30:12',2,'2006-02-15 21:30:53'),(2610,'2005-06-19 07:16:20',3845,542,'2005-06-25 09:39:20',2,'2006-02-15 21:30:53'),(2611,'2005-06-19 07:18:17',3682,301,'2005-06-21 10:19:17',1,'2006-02-15 21:30:53'),(2612,'2005-06-19 07:19:41',1691,287,'2005-06-25 11:10:41',1,'2006-02-15 21:30:53'),(2613,'2005-06-19 07:25:50',3830,179,'2005-06-21 03:04:50',1,'2006-02-15 21:30:53'),(2614,'2005-06-19 07:28:11',4147,145,'2005-06-22 12:33:11',1,'2006-02-15 21:30:53'),(2615,'2005-06-19 07:29:13',3810,578,'2005-06-27 12:50:13',1,'2006-02-15 21:30:53'),(2616,'2005-06-19 07:33:00',581,478,'2005-06-28 03:05:00',1,'2006-02-15 21:30:53'),(2617,'2005-06-19 07:48:31',204,313,'2005-06-27 11:56:31',1,'2006-02-15 21:30:53'),(2618,'2005-06-19 08:03:01',2465,310,'2005-06-24 03:23:01',2,'2006-02-15 21:30:53'),(2619,'2005-06-19 08:03:12',1848,350,'2005-06-21 05:02:12',2,'2006-02-15 21:30:53'),(2620,'2005-06-19 08:06:29',3183,94,'2005-06-24 11:42:29',1,'2006-02-15 21:30:53'),(2621,'2005-06-19 08:07:31',1746,439,'2005-06-28 05:36:31',1,'2006-02-15 21:30:53'),(2622,'2005-06-19 08:10:41',1393,573,'2005-06-28 10:44:41',2,'2006-02-15 21:30:53'),(2623,'2005-06-19 08:11:51',4477,12,'2005-06-26 12:28:51',2,'2006-02-15 21:30:53'),(2624,'2005-06-19 08:22:09',3071,32,'2005-06-27 11:13:09',1,'2006-02-15 21:30:53'),(2625,'2005-06-19 08:23:11',3946,25,'2005-06-26 09:52:11',2,'2006-02-15 21:30:53'),(2626,'2005-06-19 08:28:44',2816,450,'2005-06-24 03:58:44',1,'2006-02-15 21:30:53'),(2627,'2005-06-19 08:32:00',2779,592,'2005-06-24 04:31:00',2,'2006-02-15 21:30:53'),(2628,'2005-06-19 08:34:53',3917,3,'2005-06-28 04:19:53',2,'2006-02-15 21:30:53'),(2629,'2005-06-19 08:42:12',1810,458,'2005-06-28 03:38:12',2,'2006-02-15 21:30:53'),(2630,'2005-06-19 08:47:21',3904,236,'2005-06-25 09:31:21',1,'2006-02-15 21:30:53'),(2631,'2005-06-19 08:49:53',3471,39,'2005-06-26 03:25:53',1,'2006-02-15 21:30:53'),(2632,'2005-06-19 08:51:47',2274,574,'2005-06-23 07:13:47',2,'2006-02-15 21:30:53'),(2633,'2005-06-19 08:53:10',3462,68,'2005-06-20 07:56:10',1,'2006-02-15 21:30:53'),(2634,'2005-06-19 08:55:17',3687,318,'2005-06-20 11:44:17',2,'2006-02-15 21:30:53'),(2635,'2005-06-19 09:08:45',3332,105,'2005-06-26 09:20:45',1,'2006-02-15 21:30:53'),(2636,'2005-06-19 09:13:06',2102,253,'2005-06-25 07:47:06',2,'2006-02-15 21:30:53'),(2637,'2005-06-19 09:20:56',2736,327,'2005-06-27 10:09:56',2,'2006-02-15 21:30:53'),(2638,'2005-06-19 09:23:30',2944,295,'2005-06-26 14:56:30',1,'2006-02-15 21:30:53'),(2639,'2005-06-19 09:24:02',3971,116,'2005-06-21 14:16:02',2,'2006-02-15 21:30:53'),(2640,'2005-06-19 09:26:13',721,540,'2005-06-20 14:38:13',1,'2006-02-15 21:30:53'),(2641,'2005-06-19 09:38:33',231,374,'2005-06-22 09:55:33',1,'2006-02-15 21:30:53'),(2642,'2005-06-19 09:39:01',2065,4,'2005-06-25 08:33:01',1,'2006-02-15 21:30:53'),(2643,'2005-06-19 09:39:27',1928,318,'2005-06-26 10:27:27',2,'2006-02-15 21:30:53'),(2644,'2005-06-19 09:42:30',1923,309,'2005-06-27 07:23:30',2,'2006-02-15 21:30:53'),(2645,'2005-06-19 09:50:35',2284,181,'2005-06-28 06:47:35',2,'2006-02-15 21:30:53'),(2646,'2005-06-19 09:56:01',3511,275,'2005-06-21 04:15:01',2,'2006-02-15 21:30:53'),(2647,'2005-06-19 09:57:56',1954,54,'2005-06-22 15:55:56',1,'2006-02-15 21:30:53'),(2648,'2005-06-19 10:06:20',1620,31,'2005-06-21 04:30:20',2,'2006-02-15 21:30:53'),(2649,'2005-06-19 10:20:09',98,153,'2005-06-21 10:05:09',1,'2006-02-15 21:30:53'),(2650,'2005-06-19 10:21:45',4211,209,'2005-06-21 08:01:45',1,'2006-02-15 21:30:53'),(2651,'2005-06-19 10:22:56',2181,576,'2005-06-27 13:37:56',1,'2006-02-15 21:30:53'),(2652,'2005-06-19 10:35:26',3108,589,'2005-06-28 08:03:26',1,'2006-02-15 21:30:53'),(2653,'2005-06-19 10:36:53',3528,340,'2005-06-26 15:15:53',1,'2006-02-15 21:30:53'),(2654,'2005-06-19 10:37:54',3697,405,'2005-06-27 11:44:54',2,'2006-02-15 21:30:53'),(2655,'2005-06-19 10:38:42',1649,29,'2005-06-23 14:20:42',1,'2006-02-15 21:30:53'),(2656,'2005-06-19 10:42:33',559,280,'2005-06-24 08:31:33',2,'2006-02-15 21:30:53'),(2657,'2005-06-19 10:42:59',3595,19,'2005-06-28 12:37:59',1,'2006-02-15 21:30:53'),(2658,'2005-06-19 10:43:42',3281,156,'2005-06-24 16:23:42',1,'2006-02-15 21:30:53'),(2659,'2005-06-19 10:47:42',66,139,'2005-06-23 14:03:42',1,'2006-02-15 21:30:53'),(2660,'2005-06-19 10:50:02',4341,221,'2005-06-28 12:49:02',1,'2006-02-15 21:30:53'),(2661,'2005-06-19 10:50:52',3652,452,'2005-06-25 08:44:52',2,'2006-02-15 21:30:53'),(2662,'2005-06-19 10:53:42',3936,68,'2005-06-20 11:41:42',1,'2006-02-15 21:30:53'),(2663,'2005-06-19 10:54:00',1012,583,'2005-06-20 16:48:00',1,'2006-02-15 21:30:53'),(2664,'2005-06-19 11:11:23',3496,299,'2005-06-28 08:30:23',2,'2006-02-15 21:30:53'),(2665,'2005-06-19 11:12:35',4531,133,'2005-06-26 11:55:35',2,'2006-02-15 21:30:53'),(2666,'2005-06-19 11:17:12',1872,454,'2005-06-28 12:47:12',1,'2006-02-15 21:30:53'),(2667,'2005-06-19 11:28:46',1028,200,'2005-06-27 11:48:46',2,'2006-02-15 21:30:53'),(2668,'2005-06-19 11:28:47',3127,568,'2005-06-24 10:12:47',2,'2006-02-15 21:30:53'),(2669,'2005-06-19 11:28:52',2734,523,'2005-06-20 16:43:52',1,'2006-02-15 21:30:53'),(2670,'2005-06-19 11:30:16',3518,457,'2005-06-21 17:25:16',2,'2006-02-15 21:30:53'),(2671,'2005-06-19 11:33:11',2164,451,'2005-06-26 14:30:11',2,'2006-02-15 21:30:53'),(2672,'2005-06-19 11:42:04',1164,420,'2005-06-25 09:14:04',2,'2006-02-15 21:30:53'),(2673,'2005-06-19 11:42:20',2487,29,'2005-06-23 07:16:20',1,'2006-02-15 21:30:53'),(2674,'2005-06-19 11:47:59',3744,585,'2005-06-20 08:09:59',1,'2006-02-15 21:30:53'),(2675,'2005-06-19 11:52:15',3078,230,'2005-06-23 16:45:15',1,'2006-02-15 21:30:53'),(2676,'2005-06-19 11:54:57',3938,477,'2005-06-24 15:34:57',2,'2006-02-15 21:30:53'),(2677,'2005-06-19 12:01:59',4384,428,'2005-06-21 06:15:59',2,'2006-02-15 21:30:53'),(2678,'2005-06-19 12:12:23',4230,258,'2005-06-21 16:28:23',2,'2006-02-15 21:30:53'),(2679,'2005-06-19 12:12:30',1994,109,'2005-06-27 08:27:30',1,'2006-02-15 21:30:53'),(2680,'2005-06-19 12:13:37',865,114,'2005-06-27 15:15:37',1,'2006-02-15 21:30:53'),(2681,'2005-06-19 12:15:27',2704,196,'2005-06-21 16:48:27',2,'2006-02-15 21:30:53'),(2682,'2005-06-19 12:18:17',3609,538,'2005-06-28 14:09:17',1,'2006-02-15 21:30:53'),(2683,'2005-06-19 12:27:19',2860,241,'2005-06-21 16:26:19',2,'2006-02-15 21:30:53'),(2684,'2005-06-19 12:29:08',1225,17,'2005-06-28 08:50:08',2,'2006-02-15 21:30:53'),(2685,'2005-06-19 12:35:21',1170,283,'2005-06-22 16:58:21',1,'2006-02-15 21:30:53'),(2686,'2005-06-19 12:44:20',2686,68,'2005-06-20 16:00:20',1,'2006-02-15 21:30:53'),(2687,'2005-06-19 12:46:52',3152,254,'2005-06-23 06:58:52',2,'2006-02-15 21:30:53'),(2688,'2005-06-19 12:50:56',4281,309,'2005-06-28 17:58:56',2,'2006-02-15 21:30:53'),(2689,'2005-06-19 12:58:53',2478,567,'2005-06-24 17:35:53',1,'2006-02-15 21:30:53'),(2690,'2005-06-19 13:00:02',1381,391,'2005-06-27 14:29:02',1,'2006-02-15 21:30:53'),(2691,'2005-06-19 13:06:50',3469,242,'2005-06-26 15:56:50',1,'2006-02-15 21:30:53'),(2692,'2005-06-19 13:08:19',3162,388,'2005-06-21 16:45:19',1,'2006-02-15 21:30:53'),(2693,'2005-06-19 13:11:47',2570,107,'2005-06-27 11:17:47',1,'2006-02-15 21:30:53'),(2694,'2005-06-19 13:17:21',380,368,'2005-06-24 15:09:21',1,'2006-02-15 21:30:53'),(2695,'2005-06-19 13:25:53',190,208,'2005-06-24 17:12:53',2,'2006-02-15 21:30:53'),(2696,'2005-06-19 13:28:42',2110,597,'2005-06-28 14:06:42',2,'2006-02-15 21:30:53'),(2697,'2005-06-19 13:29:08',2271,448,'2005-06-23 13:21:08',1,'2006-02-15 21:30:53'),(2698,'2005-06-19 13:29:11',3900,420,'2005-06-20 07:31:11',2,'2006-02-15 21:30:53'),(2699,'2005-06-19 13:29:28',72,267,'2005-06-24 11:15:28',2,'2006-02-15 21:30:53'),(2700,'2005-06-19 13:31:52',928,180,'2005-06-27 19:30:52',1,'2006-02-15 21:30:53'),(2701,'2005-06-19 13:33:06',1623,29,'2005-06-28 15:11:06',2,'2006-02-15 21:30:53'),(2702,'2005-06-19 13:35:56',1736,329,'2005-06-20 14:07:56',2,'2006-02-15 21:30:53'),(2703,'2005-06-19 13:36:06',4080,319,'2005-06-28 08:26:06',2,'2006-02-15 21:30:53'),(2704,'2005-06-19 13:50:10',2026,246,'2005-06-26 18:25:10',2,'2006-02-15 21:30:53'),(2705,'2005-06-19 13:54:30',1191,562,'2005-06-20 12:31:30',1,'2006-02-15 21:30:53'),(2706,'2005-06-19 13:56:51',373,559,'2005-06-21 17:23:51',2,'2006-02-15 21:30:53'),(2707,'2005-06-19 13:57:08',4486,589,'2005-06-27 11:09:08',2,'2006-02-15 21:30:53'),(2708,'2005-06-19 13:59:05',2659,541,'2005-06-24 10:02:05',2,'2006-02-15 21:30:53'),(2709,'2005-06-19 14:00:26',2877,7,'2005-06-23 14:56:26',2,'2006-02-15 21:30:53'),(2710,'2005-06-19 14:03:56',2965,446,'2005-06-21 16:15:56',1,'2006-02-15 21:30:53'),(2711,'2005-06-19 14:12:22',3944,313,'2005-06-21 09:29:22',1,'2006-02-15 21:30:53'),(2712,'2005-06-19 14:20:13',3132,411,'2005-06-22 19:08:13',1,'2006-02-15 21:30:53'),(2713,'2005-06-19 14:23:09',3979,378,'2005-06-20 17:55:09',1,'2006-02-15 21:30:53'),(2714,'2005-06-19 14:26:09',2853,81,'2005-06-23 17:24:09',2,'2006-02-15 21:30:53'),(2715,'2005-06-19 14:29:35',2082,404,'2005-06-26 08:44:35',2,'2006-02-15 21:30:53'),(2716,'2005-06-19 14:40:17',944,252,'2005-06-27 17:45:17',2,'2006-02-15 21:30:53'),(2717,'2005-06-19 14:46:10',140,200,'2005-06-22 20:17:10',1,'2006-02-15 21:30:53'),(2718,'2005-06-19 14:49:42',4443,139,'2005-06-26 19:37:42',1,'2006-02-15 21:30:53'),(2719,'2005-06-19 14:50:19',1200,336,'2005-06-20 14:33:19',2,'2006-02-15 21:30:53'),(2720,'2005-06-19 14:51:55',3597,504,'2005-06-27 13:06:55',1,'2006-02-15 21:30:53'),(2721,'2005-06-19 14:53:24',3786,358,'2005-06-21 18:22:24',2,'2006-02-15 21:30:53'),(2722,'2005-06-19 14:55:17',952,45,'2005-06-25 13:11:17',2,'2006-02-15 21:30:53'),(2723,'2005-06-19 14:55:23',4317,277,'2005-06-20 14:28:23',1,'2006-02-15 21:30:53'),(2724,'2005-06-19 14:57:54',3879,103,'2005-06-22 16:31:54',2,'2006-02-15 21:30:53'),(2725,'2005-06-19 15:01:23',63,246,'2005-06-22 09:08:23',1,'2006-02-15 21:30:53'),(2726,'2005-06-19 15:02:20',2970,420,'2005-06-21 15:38:20',1,'2006-02-15 21:30:53'),(2727,'2005-06-19 15:02:39',3261,129,'2005-06-28 17:49:39',1,'2006-02-15 21:30:53'),(2728,'2005-06-19 15:04:04',775,408,'2005-06-22 12:22:04',2,'2006-02-15 21:30:53'),(2729,'2005-06-19 15:06:15',4449,510,'2005-06-27 17:58:15',2,'2006-02-15 21:30:53'),(2730,'2005-06-19 15:10:09',1264,30,'2005-06-28 13:05:09',1,'2006-02-15 21:30:53'),(2731,'2005-06-19 15:14:55',4218,138,'2005-06-27 14:30:55',2,'2006-02-15 21:30:53'),(2732,'2005-06-19 15:19:39',610,386,'2005-06-25 19:39:39',2,'2006-02-15 21:30:53'),(2733,'2005-06-19 15:21:53',1535,188,'2005-06-23 11:58:53',2,'2006-02-15 21:30:53'),(2734,'2005-06-19 15:36:27',794,204,'2005-06-20 13:44:27',2,'2006-02-15 21:30:53'),(2735,'2005-06-19 15:42:07',4550,29,'2005-06-22 17:28:07',1,'2006-02-15 21:30:53'),(2736,'2005-06-19 15:43:20',4510,359,'2005-06-21 13:03:20',1,'2006-02-15 21:30:53'),(2737,'2005-06-19 15:48:33',3131,513,'2005-06-26 18:44:33',2,'2006-02-15 21:30:53'),(2738,'2005-06-19 15:56:30',350,75,'2005-06-20 16:14:30',2,'2006-02-15 21:30:53'),(2739,'2005-06-19 15:58:38',213,212,'2005-06-27 15:01:38',2,'2006-02-15 21:30:53'),(2740,'2005-06-19 15:59:04',1534,92,'2005-06-28 12:18:04',2,'2006-02-15 21:30:53'),(2741,'2005-06-19 16:05:41',1662,36,'2005-06-20 20:48:41',1,'2006-02-15 21:30:53'),(2742,'2005-06-19 16:05:47',4154,187,'2005-06-26 21:34:47',1,'2006-02-15 21:30:53'),(2743,'2005-06-19 16:15:56',2611,35,'2005-06-23 12:30:56',1,'2006-02-15 21:30:53'),(2744,'2005-06-19 16:20:40',4511,368,'2005-06-22 11:44:40',2,'2006-02-15 21:30:53'),(2745,'2005-06-19 16:21:19',1253,26,'2005-06-21 22:07:19',2,'2006-02-15 21:30:53'),(2746,'2005-06-19 16:21:40',933,562,'2005-06-28 11:56:40',2,'2006-02-15 21:30:53'),(2747,'2005-06-19 16:22:07',1374,422,'2005-06-24 19:28:07',1,'2006-02-15 21:30:53'),(2748,'2005-06-19 16:22:26',511,473,'2005-06-21 21:55:26',1,'2006-02-15 21:30:53'),(2749,'2005-06-19 16:27:35',1540,358,'2005-06-25 21:06:35',2,'2006-02-15 21:30:53'),(2750,'2005-06-19 16:37:24',3775,197,'2005-06-20 13:55:24',2,'2006-02-15 21:30:53'),(2751,'2005-06-19 16:39:23',1291,148,'2005-06-25 13:57:23',1,'2006-02-15 21:30:53'),(2752,'2005-06-19 16:44:18',386,149,'2005-06-22 12:40:18',2,'2006-02-15 21:30:53'),(2753,'2005-06-19 16:44:35',2408,23,'2005-06-24 13:45:35',1,'2006-02-15 21:30:53'),(2754,'2005-06-19 16:55:59',1761,267,'2005-06-26 18:11:59',1,'2006-02-15 21:30:53'),(2755,'2005-06-19 16:56:31',946,506,'2005-06-27 12:02:31',2,'2006-02-15 21:30:53'),(2756,'2005-06-19 16:57:42',3264,144,'2005-06-26 15:30:42',2,'2006-02-15 21:30:53'),(2757,'2005-06-19 17:01:14',3814,243,'2005-06-28 11:38:14',1,'2006-02-15 21:30:53'),(2758,'2005-06-19 17:04:35',3558,423,'2005-06-26 14:45:35',2,'2006-02-15 21:30:53'),(2759,'2005-06-19 17:10:24',687,351,'2005-06-24 21:56:24',2,'2006-02-15 21:30:53'),(2760,'2005-06-19 17:16:33',2602,192,'2005-06-26 14:58:33',1,'2006-02-15 21:30:53'),(2761,'2005-06-19 17:22:17',2134,431,'2005-06-20 20:20:17',2,'2006-02-15 21:30:53'),(2762,'2005-06-19 17:22:31',3431,457,'2005-06-25 22:43:31',2,'2006-02-15 21:30:53'),(2763,'2005-06-19 17:23:34',3096,276,'2005-06-21 21:37:34',2,'2006-02-15 21:30:53'),(2764,'2005-06-19 17:27:25',1718,479,'2005-06-28 17:18:25',2,'2006-02-15 21:30:53'),(2765,'2005-06-19 17:34:39',1017,478,'2005-06-27 23:26:39',1,'2006-02-15 21:30:53'),(2766,'2005-06-19 17:45:15',3421,345,'2005-06-23 20:11:15',2,'2006-02-15 21:30:53'),(2767,'2005-06-19 17:46:35',4052,596,'2005-06-24 22:42:35',1,'2006-02-15 21:30:53'),(2768,'2005-06-19 17:46:52',3018,129,'2005-06-25 21:49:52',1,'2006-02-15 21:30:53'),(2769,'2005-06-19 17:52:14',1222,354,'2005-06-26 20:30:14',2,'2006-02-15 21:30:53'),(2770,'2005-06-19 17:54:22',3042,533,'2005-06-26 23:09:22',2,'2006-02-15 21:30:53'),(2771,'2005-06-19 17:54:48',40,262,'2005-06-27 17:14:48',1,'2006-02-15 21:30:53'),(2772,'2005-06-19 17:59:27',1221,520,'2005-06-23 17:52:27',1,'2006-02-15 21:30:53'),(2773,'2005-06-19 18:04:18',4155,505,'2005-06-28 23:52:18',1,'2006-02-15 21:30:53'),(2774,'2005-06-19 18:05:11',2809,299,'2005-06-21 16:21:11',2,'2006-02-15 21:30:53'),(2775,'2005-06-19 18:14:20',672,590,'2005-06-26 19:52:20',1,'2006-02-15 21:30:53'),(2776,'2005-06-19 18:16:24',1726,551,'2005-06-26 14:43:24',2,'2006-02-15 21:30:53'),(2777,'2005-06-19 18:16:26',4092,230,'2005-06-20 13:43:26',2,'2006-02-15 21:30:53'),(2778,'2005-06-19 18:18:12',3357,422,'2005-06-28 21:43:12',1,'2006-02-15 21:30:53'),(2779,'2005-06-19 18:19:07',1020,376,'2005-06-23 18:25:07',2,'2006-02-15 21:30:53'),(2780,'2005-06-19 18:19:33',1513,360,'2005-06-28 22:29:33',1,'2006-02-15 21:30:53'),(2781,'2005-06-19 18:24:42',1230,197,'2005-06-27 17:02:42',2,'2006-02-15 21:30:53'),(2782,'2005-06-19 18:25:07',3644,156,'2005-06-22 14:10:07',1,'2006-02-15 21:30:53'),(2783,'2005-06-19 18:29:10',2778,113,'2005-06-21 22:09:10',1,'2006-02-15 21:30:53'),(2784,'2005-06-19 18:40:29',2305,289,'2005-06-28 15:27:29',1,'2006-02-15 21:30:53'),(2785,'2005-06-19 18:43:57',826,137,'2005-06-24 15:36:57',2,'2006-02-15 21:30:53'),(2786,'2005-06-19 18:46:43',2255,594,'2005-06-22 16:52:43',1,'2006-02-15 21:30:53'),(2787,'2005-06-19 18:47:00',3371,307,'2005-06-22 20:22:00',2,'2006-02-15 21:30:53'),(2788,'2005-06-19 18:48:11',1457,171,'2005-06-21 13:32:11',1,'2006-02-15 21:30:53'),(2789,'2005-06-19 18:48:21',2398,514,'2005-06-21 21:50:21',1,'2006-02-15 21:30:53'),(2790,'2005-06-19 18:49:45',202,97,'2005-06-21 00:13:45',1,'2006-02-15 21:30:53'),(2791,'2005-06-19 18:51:27',2174,299,'2005-06-22 19:35:27',2,'2006-02-15 21:30:53'),(2792,'2005-06-19 18:52:25',3057,437,'2005-06-23 17:39:25',1,'2006-02-15 21:30:53'),(2793,'2005-06-19 18:52:37',732,419,'2005-06-25 19:45:37',2,'2006-02-15 21:30:53'),(2794,'2005-06-19 18:53:05',1957,85,'2005-06-22 13:15:05',1,'2006-02-15 21:30:53'),(2795,'2005-06-19 18:58:53',3694,129,'2005-06-28 18:56:53',1,'2006-02-15 21:30:53'),(2796,'2005-06-19 19:00:37',2337,209,'2005-06-25 17:18:37',2,'2006-02-15 21:30:53'),(2797,'2005-06-19 19:04:32',3222,486,'2005-06-20 22:43:32',1,'2006-02-15 21:30:53'),(2798,'2005-06-19 19:07:48',1343,180,'2005-06-23 00:09:48',2,'2006-02-15 21:30:53'),(2799,'2005-06-19 19:15:21',4579,576,'2005-06-21 21:35:21',1,'2006-02-15 21:30:53'),(2800,'2005-06-19 19:15:56',183,146,'2005-06-23 00:15:56',1,'2006-02-15 21:30:53'),(2801,'2005-06-19 19:18:09',4572,29,'2005-06-20 20:11:09',2,'2006-02-15 21:30:53'),(2802,'2005-06-19 19:18:17',4067,489,'2005-06-21 17:58:17',2,'2006-02-15 21:30:53'),(2803,'2005-06-19 19:18:27',103,120,'2005-06-27 21:48:27',1,'2006-02-15 21:30:53'),(2804,'2005-06-19 19:24:54',88,426,'2005-06-25 01:19:54',2,'2006-02-15 21:30:53'),(2805,'2005-06-19 19:29:17',2153,80,'2005-06-27 23:14:17',2,'2006-02-15 21:30:53'),(2806,'2005-06-19 19:30:48',2114,510,'2005-06-20 19:42:48',2,'2006-02-15 21:30:53'),(2807,'2005-06-19 19:32:53',2825,194,'2005-06-25 00:30:53',2,'2006-02-15 21:30:53'),(2808,'2005-06-19 19:34:45',65,325,'2005-06-27 14:49:45',1,'2006-02-15 21:30:53'),(2809,'2005-06-19 19:40:27',1786,44,'2005-06-27 15:28:27',2,'2006-02-15 21:30:53'),(2810,'2005-06-19 19:44:12',2558,67,'2005-06-20 19:41:12',2,'2006-02-15 21:30:53'),(2811,'2005-06-19 19:53:30',3890,457,'2005-06-22 23:21:30',2,'2006-02-15 21:30:53'),(2812,'2005-06-19 19:58:16',3016,211,'2005-06-26 15:26:16',1,'2006-02-15 21:30:53'),(2813,'2005-06-19 20:01:47',3420,284,'2005-06-27 01:51:47',1,'2006-02-15 21:30:53'),(2814,'2005-06-19 20:01:59',1783,10,'2005-06-26 01:28:59',2,'2006-02-15 21:30:53'),(2815,'2005-06-19 20:03:29',3046,27,'2005-06-25 22:50:29',2,'2006-02-15 21:30:53'),(2816,'2005-06-19 20:04:23',2180,94,'2005-06-20 21:09:23',2,'2006-02-15 21:30:53'),(2817,'2005-06-19 20:05:22',3476,510,'2005-06-24 23:29:22',1,'2006-02-15 21:30:53'),(2818,'2005-06-19 20:05:52',2376,497,'2005-06-22 01:01:52',2,'2006-02-15 21:30:53'),(2819,'2005-06-19 20:13:33',4100,82,'2005-06-26 16:44:33',1,'2006-02-15 21:30:53'),(2820,'2005-06-19 20:20:33',851,316,'2005-06-26 20:32:33',1,'2006-02-15 21:30:53'),(2821,'2005-06-19 20:26:52',2551,532,'2005-06-27 23:48:52',1,'2006-02-15 21:30:53'),(2822,'2005-06-19 20:29:24',3599,48,'2005-06-23 02:21:24',1,'2006-02-15 21:30:53'),(2823,'2005-06-19 20:30:21',3566,260,'2005-06-26 17:58:21',1,'2006-02-15 21:30:53'),(2824,'2005-06-19 20:31:45',2878,506,'2005-06-29 00:40:45',2,'2006-02-15 21:30:53'),(2825,'2005-06-19 20:32:19',2601,418,'2005-06-22 22:32:19',1,'2006-02-15 21:30:53'),(2826,'2005-06-19 20:41:35',2980,125,'2005-06-25 17:23:35',1,'2006-02-15 21:30:53'),(2827,'2005-06-19 20:50:01',2745,23,'2005-06-20 18:54:01',2,'2006-02-15 21:30:53'),(2828,'2005-06-19 20:51:33',3230,526,'2005-06-25 17:38:33',1,'2006-02-15 21:30:53'),(2829,'2005-06-19 21:11:30',2047,341,'2005-06-24 18:10:30',1,'2006-02-15 21:30:53'),(2830,'2005-06-19 21:14:33',2080,21,'2005-06-21 17:46:33',1,'2006-02-15 21:30:53'),(2831,'2005-06-19 21:17:06',4089,468,'2005-06-22 16:56:06',2,'2006-02-15 21:30:53'),(2832,'2005-06-19 21:21:53',828,593,'2005-06-28 23:00:53',1,'2006-02-15 21:30:53'),(2833,'2005-06-19 21:34:54',1976,232,'2005-06-28 16:21:54',1,'2006-02-15 21:30:53'),(2834,'2005-06-19 21:41:46',2876,122,'2005-06-24 20:47:46',1,'2006-02-15 21:30:53'),(2835,'2005-06-19 21:44:11',4411,89,'2005-06-26 16:46:11',2,'2006-02-15 21:30:53'),(2836,'2005-06-19 21:58:21',1453,306,'2005-06-27 00:41:21',2,'2006-02-15 21:30:53'),(2837,'2005-06-19 22:03:50',417,371,'2005-06-20 21:24:50',1,'2006-02-15 21:30:53'),(2838,'2005-06-19 22:06:06',143,292,'2005-06-25 22:30:06',1,'2006-02-15 21:30:53'),(2839,'2005-06-19 22:07:24',3856,256,'2005-06-23 16:37:24',2,'2006-02-15 21:30:53'),(2840,'2005-06-19 22:17:44',1102,236,'2005-06-26 00:36:44',2,'2006-02-15 21:30:53'),(2841,'2005-06-19 22:21:06',614,193,'2005-06-28 00:56:06',1,'2006-02-15 21:30:53'),(2842,'2005-06-19 22:34:20',4183,217,'2005-06-22 03:46:20',2,'2006-02-15 21:30:53'),(2843,'2005-06-19 22:36:39',1520,148,'2005-06-26 22:33:39',2,'2006-02-15 21:30:53'),(2844,'2005-06-19 22:40:12',4452,178,'2005-06-24 03:58:12',2,'2006-02-15 21:30:53'),(2845,'2005-06-19 22:46:37',3948,583,'2005-06-23 03:31:37',1,'2006-02-15 21:30:53'),(2846,'2005-06-19 22:52:14',651,193,'2005-06-22 17:12:14',1,'2006-02-15 21:30:53'),(2847,'2005-06-19 22:54:01',1247,148,'2005-06-27 23:05:01',2,'2006-02-15 21:30:53'),(2848,'2005-06-19 22:55:37',3449,19,'2005-06-25 23:10:37',1,'2006-02-15 21:30:53'),(2849,'2005-06-19 23:06:00',3628,283,'2005-06-25 18:36:00',1,'2006-02-15 21:30:53'),(2850,'2005-06-19 23:06:28',206,262,'2005-06-28 03:30:28',2,'2006-02-15 21:30:53'),(2851,'2005-06-19 23:07:03',2168,361,'2005-06-22 17:26:03',1,'2006-02-15 21:30:53'),(2852,'2005-06-19 23:08:50',2695,453,'2005-06-26 04:00:50',1,'2006-02-15 21:30:53'),(2853,'2005-06-19 23:09:41',2578,453,'2005-06-28 00:51:41',2,'2006-02-15 21:30:53'),(2854,'2005-06-19 23:11:48',4453,81,'2005-06-23 19:37:48',2,'2006-02-15 21:30:53'),(2855,'2005-06-19 23:11:49',3495,483,'2005-06-26 21:52:49',1,'2006-02-15 21:30:53'),(2856,'2005-06-19 23:13:04',1859,210,'2005-06-23 22:47:04',1,'2006-02-15 21:30:53'),(2857,'2005-06-19 23:15:15',2886,364,'2005-06-25 04:24:15',2,'2006-02-15 21:30:53'),(2858,'2005-06-19 23:17:11',2628,268,'2005-06-21 19:07:11',1,'2006-02-15 21:30:53'),(2859,'2005-06-19 23:18:42',126,147,'2005-06-20 22:38:42',1,'2006-02-15 21:30:53'),(2860,'2005-06-19 23:20:40',3045,107,'2005-06-21 04:59:40',1,'2006-02-15 21:30:53'),(2861,'2005-06-19 23:21:34',1489,116,'2005-06-26 17:32:34',1,'2006-02-15 21:30:53'),(2862,'2005-06-19 23:47:24',4260,52,'2005-06-23 03:39:24',2,'2006-02-15 21:30:53'),(2863,'2005-06-19 23:58:38',2410,228,'2005-06-23 23:27:38',2,'2006-02-15 21:30:53'),(2864,'2005-06-20 00:00:52',1056,493,'2005-06-26 04:21:52',2,'2006-02-15 21:30:53'),(2865,'2005-06-20 00:00:55',1569,10,'2005-06-21 02:20:55',1,'2006-02-15 21:30:53'),(2866,'2005-06-20 00:01:36',2718,44,'2005-06-20 21:39:36',1,'2006-02-15 21:30:53'),(2867,'2005-06-20 00:08:38',95,483,'2005-06-23 19:35:38',1,'2006-02-15 21:30:53'),(2868,'2005-06-20 00:08:58',1213,214,'2005-06-25 21:23:58',2,'2006-02-15 21:30:53'),(2869,'2005-06-20 00:09:25',1331,155,'2005-06-24 04:40:25',2,'2006-02-15 21:30:53'),(2870,'2005-06-20 00:17:46',214,467,'2005-06-28 20:21:46',1,'2006-02-15 21:30:53'),(2871,'2005-06-20 00:27:49',1731,443,'2005-06-29 01:36:49',1,'2006-02-15 21:30:53'),(2872,'2005-06-20 00:38:21',3779,240,'2005-06-26 19:56:21',1,'2006-02-15 21:30:53'),(2873,'2005-06-20 00:41:25',3321,160,'2005-06-25 02:06:25',1,'2006-02-15 21:30:53'),(2874,'2005-06-20 00:42:26',331,166,'2005-06-28 01:37:26',2,'2006-02-15 21:30:53'),(2875,'2005-06-20 00:47:18',3012,186,'2005-06-25 18:54:18',2,'2006-02-15 21:30:53'),(2876,'2005-06-20 01:06:34',3117,39,'2005-06-23 04:55:34',1,'2006-02-15 21:30:53'),(2877,'2005-06-20 01:07:16',485,267,'2005-06-24 01:05:16',1,'2006-02-15 21:30:53'),(2878,'2005-06-20 01:09:14',4120,88,'2005-06-21 21:40:14',2,'2006-02-15 21:30:53'),(2879,'2005-06-20 01:24:10',1920,583,'2005-06-28 20:12:10',2,'2006-02-15 21:30:53'),(2880,'2005-06-20 01:24:54',1700,193,'2005-06-23 02:42:54',2,'2006-02-15 21:30:53'),(2881,'2005-06-20 01:26:18',1391,307,'2005-06-26 23:42:18',1,'2006-02-15 21:30:53'),(2882,'2005-06-20 01:26:26',205,152,'2005-06-21 19:33:26',1,'2006-02-15 21:30:53'),(2883,'2005-06-20 01:29:10',585,320,'2005-06-28 06:12:10',1,'2006-02-15 21:30:53'),(2884,'2005-06-20 01:31:16',3384,319,'2005-06-21 04:03:16',2,'2006-02-15 21:30:53'),(2885,'2005-06-20 01:33:42',2701,330,'2005-06-22 22:23:42',1,'2006-02-15 21:30:53'),(2886,'2005-06-20 01:38:39',1755,154,'2005-06-23 04:28:39',2,'2006-02-15 21:30:53'),(2887,'2005-06-20 01:39:43',1073,453,'2005-06-25 05:22:43',2,'2006-02-15 21:30:53'),(2888,'2005-06-20 01:50:56',468,7,'2005-06-22 05:05:56',2,'2006-02-15 21:30:53'),(2889,'2005-06-20 01:54:08',151,213,'2005-06-23 06:33:08',1,'2006-02-15 21:30:53'),(2890,'2005-06-20 02:00:45',3437,392,'2005-06-27 21:12:45',1,'2006-02-15 21:30:53'),(2891,'2005-06-20 02:02:05',343,32,'2005-06-25 02:45:05',1,'2006-02-15 21:30:53'),(2892,'2005-06-20 02:06:39',2993,430,'2005-06-21 02:50:39',2,'2006-02-15 21:30:53'),(2893,'2005-06-20 02:22:08',397,153,'2005-06-26 21:01:08',2,'2006-02-15 21:30:53'),(2894,'2005-06-20 02:22:42',4316,76,'2005-06-22 00:38:42',1,'2006-02-15 21:30:53'),(2895,'2005-06-20 02:26:31',4445,141,'2005-06-27 23:42:31',2,'2006-02-15 21:30:53'),(2896,'2005-06-20 02:33:42',1086,40,'2005-06-26 05:29:42',2,'2006-02-15 21:30:53'),(2897,'2005-06-20 02:34:23',3464,107,'2005-06-25 05:29:23',1,'2006-02-15 21:30:53'),(2898,'2005-06-20 02:38:06',3106,178,'2005-06-29 08:18:06',2,'2006-02-15 21:30:53'),(2899,'2005-06-20 02:39:21',1919,459,'2005-06-23 06:47:21',1,'2006-02-15 21:30:53'),(2900,'2005-06-20 02:40:04',3407,294,'2005-06-27 20:47:04',2,'2006-02-15 21:30:53'),(2901,'2005-06-20 02:41:28',667,25,'2005-06-23 04:43:28',2,'2006-02-15 21:30:53'),(2902,'2005-06-20 02:45:35',2787,304,'2005-06-26 07:51:35',1,'2006-02-15 21:30:53'),(2903,'2005-06-20 02:49:01',3580,53,'2005-06-25 05:03:01',2,'2006-02-15 21:30:53'),(2904,'2005-06-20 02:54:06',2195,55,'2005-06-21 06:57:06',2,'2006-02-15 21:30:53'),(2905,'2005-06-20 02:56:16',3898,189,'2005-06-24 23:51:16',2,'2006-02-15 21:30:53'),(2906,'2005-06-20 03:04:56',1087,58,'2005-06-23 05:57:56',2,'2006-02-15 21:30:53'),(2907,'2005-06-20 03:15:09',2516,208,'2005-06-20 21:56:09',2,'2006-02-15 21:30:53'),(2908,'2005-06-20 03:16:52',517,91,'2005-06-22 08:46:52',1,'2006-02-15 21:30:53'),(2909,'2005-06-20 03:19:10',1701,451,'2005-06-25 06:06:10',2,'2006-02-15 21:30:53'),(2910,'2005-06-20 03:31:18',630,57,'2005-06-28 00:35:18',1,'2006-02-15 21:30:53'),(2911,'2005-06-20 03:32:37',3645,502,'2005-06-22 22:06:37',1,'2006-02-15 21:30:53'),(2912,'2005-06-20 03:32:45',1076,196,'2005-06-21 23:32:45',1,'2006-02-15 21:30:53'),(2913,'2005-06-20 03:42:27',3456,402,'2005-06-23 04:47:27',1,'2006-02-15 21:30:53'),(2914,'2005-06-20 03:43:18',2419,342,'2005-06-25 03:44:18',2,'2006-02-15 21:30:53'),(2915,'2005-06-20 03:57:17',1293,262,'2005-06-24 05:59:17',2,'2006-02-15 21:30:53'),(2916,'2005-06-20 04:01:04',3086,590,'2005-06-27 22:40:04',2,'2006-02-15 21:30:53'),(2917,'2005-06-20 04:08:35',647,451,'2005-06-24 01:17:35',1,'2006-02-15 21:30:53'),(2918,'2005-06-20 04:09:04',1985,215,'2005-06-21 10:07:04',1,'2006-02-15 21:30:53'),(2919,'2005-06-20 04:10:16',2835,509,'2005-06-27 06:34:16',1,'2006-02-15 21:30:53'),(2920,'2005-06-20 04:12:46',487,588,'2005-06-26 23:34:46',2,'2006-02-15 21:30:53'),(2921,'2005-06-20 04:13:04',1785,59,'2005-06-28 01:28:04',1,'2006-02-15 21:30:53'),(2922,'2005-06-20 04:13:47',1671,176,'2005-06-22 04:38:47',2,'2006-02-15 21:30:53'),(2923,'2005-06-20 04:16:07',109,29,'2005-06-21 05:04:07',1,'2006-02-15 21:30:53'),(2924,'2005-06-20 04:20:14',580,132,'2005-06-21 01:13:14',1,'2006-02-15 21:30:53'),(2925,'2005-06-20 04:23:49',804,301,'2005-06-22 04:37:49',2,'2006-02-15 21:30:53'),(2926,'2005-06-20 04:37:45',1055,379,'2005-06-26 02:17:45',1,'2006-02-15 21:30:53'),(2927,'2005-06-20 04:41:41',393,403,'2005-06-23 01:59:41',1,'2006-02-15 21:30:53'),(2928,'2005-06-20 04:43:45',1265,104,'2005-06-21 06:58:45',2,'2006-02-15 21:30:53'),(2929,'2005-06-20 04:47:39',3389,333,'2005-06-25 23:16:39',2,'2006-02-15 21:30:53'),(2930,'2005-06-20 04:50:29',3615,585,'2005-06-28 06:00:29',2,'2006-02-15 21:30:53'),(2931,'2005-06-20 04:50:45',3122,258,'2005-06-29 09:18:45',1,'2006-02-15 21:30:53'),(2932,'2005-06-20 04:51:19',4418,526,'2005-06-29 08:31:19',1,'2006-02-15 21:30:53'),(2933,'2005-06-20 04:52:23',4483,323,'2005-06-26 07:12:23',2,'2006-02-15 21:30:53'),(2934,'2005-06-20 05:05:53',697,228,'2005-06-22 02:44:53',1,'2006-02-15 21:30:53'),(2935,'2005-06-20 05:07:24',2735,384,'2005-06-28 09:17:24',2,'2006-02-15 21:30:53'),(2936,'2005-06-20 05:09:27',2675,330,'2005-06-26 10:16:27',2,'2006-02-15 21:30:53'),(2937,'2005-06-20 05:15:37',1998,15,'2005-06-27 02:45:37',1,'2006-02-15 21:30:53'),(2938,'2005-06-20 05:17:22',1795,504,'2005-06-26 09:38:22',1,'2006-02-15 21:30:53'),(2939,'2005-06-20 05:18:16',2638,203,'2005-06-26 06:56:16',1,'2006-02-15 21:30:53'),(2940,'2005-06-20 05:20:01',2504,73,'2005-06-28 06:11:01',2,'2006-02-15 21:30:53'),(2941,'2005-06-20 05:22:18',3632,135,'2005-06-26 07:40:18',2,'2006-02-15 21:30:53'),(2942,'2005-06-20 05:27:31',999,242,'2005-06-29 00:35:31',1,'2006-02-15 21:30:53'),(2943,'2005-06-20 05:43:05',2591,418,'2005-06-25 04:31:05',1,'2006-02-15 21:30:53'),(2944,'2005-06-20 05:43:42',1550,474,'2005-06-29 09:40:42',2,'2006-02-15 21:30:53'),(2945,'2005-06-20 05:49:27',4193,153,'2005-06-26 09:48:27',1,'2006-02-15 21:30:53'),(2946,'2005-06-20 05:50:40',3737,213,'2005-06-21 00:42:40',2,'2006-02-15 21:30:53'),(2947,'2005-06-20 06:00:21',4302,151,'2005-06-23 10:04:21',2,'2006-02-15 21:30:53'),(2948,'2005-06-20 06:02:35',4254,289,'2005-06-29 09:12:35',2,'2006-02-15 21:30:53'),(2949,'2005-06-20 06:05:53',375,78,'2005-06-29 03:19:53',2,'2006-02-15 21:30:53'),(2950,'2005-06-20 06:08:36',1438,561,'2005-06-27 07:45:36',2,'2006-02-15 21:30:53'),(2951,'2005-06-20 06:23:01',2903,404,'2005-06-24 00:26:01',2,'2006-02-15 21:30:53'),(2952,'2005-06-20 06:26:57',3759,13,'2005-06-22 11:51:57',1,'2006-02-15 21:30:53'),(2953,'2005-06-20 06:39:11',1829,540,'2005-06-26 06:19:11',1,'2006-02-15 21:30:53'),(2954,'2005-06-20 06:45:00',377,336,'2005-06-23 11:43:00',1,'2006-02-15 21:30:53'),(2955,'2005-06-20 06:46:35',2312,244,'2005-06-25 05:34:35',2,'2006-02-15 21:30:53'),(2956,'2005-06-20 06:47:23',2684,533,'2005-06-22 07:24:23',2,'2006-02-15 21:30:53'),(2957,'2005-06-20 06:53:47',4034,542,'2005-06-29 09:21:47',2,'2006-02-15 21:30:53'),(2958,'2005-06-20 06:56:20',1380,260,'2005-06-29 02:33:20',2,'2006-02-15 21:30:53'),(2959,'2005-06-20 07:07:54',4185,372,'2005-06-27 03:31:54',1,'2006-02-15 21:30:53'),(2960,'2005-06-20 07:10:09',3970,16,'2005-06-26 08:14:09',2,'2006-02-15 21:30:53'),(2961,'2005-06-20 07:29:15',4539,399,'2005-06-24 08:05:15',1,'2006-02-15 21:30:53'),(2962,'2005-06-20 07:31:55',2978,364,'2005-06-26 04:43:55',1,'2006-02-15 21:30:53'),(2963,'2005-06-20 07:33:09',1444,24,'2005-06-28 09:23:09',1,'2006-02-15 21:30:53'),(2964,'2005-06-20 07:33:29',1201,590,'2005-06-29 12:48:29',1,'2006-02-15 21:30:53'),(2965,'2005-06-20 07:33:38',27,46,'2005-06-29 11:45:38',1,'2006-02-15 21:30:53'),(2966,'2005-06-20 07:39:33',3483,511,'2005-06-29 07:48:33',1,'2006-02-15 21:30:53'),(2967,'2005-06-20 07:40:35',4243,311,'2005-06-29 05:50:35',2,'2006-02-15 21:30:53'),(2968,'2005-06-20 07:41:47',4415,252,'2005-06-23 04:27:47',1,'2006-02-15 21:30:53'),(2969,'2005-06-20 07:44:27',1748,418,'2005-06-22 06:12:27',2,'2006-02-15 21:30:53'),(2970,'2005-06-20 07:51:51',1167,449,'2005-06-28 10:14:51',2,'2006-02-15 21:30:53'),(2971,'2005-06-20 07:56:00',1585,410,'2005-06-27 11:38:00',2,'2006-02-15 21:30:53'),(2972,'2005-06-20 07:57:54',2232,531,'2005-06-21 12:48:54',1,'2006-02-15 21:30:53'),(2973,'2005-06-20 07:59:27',2626,96,'2005-06-24 12:31:27',1,'2006-02-15 21:30:53'),(2974,'2005-06-20 08:00:24',2322,472,'2005-06-25 05:10:24',2,'2006-02-15 21:30:53'),(2975,'2005-06-20 08:06:18',4534,46,'2005-06-21 08:01:18',1,'2006-02-15 21:30:53'),(2976,'2005-06-20 08:09:11',4210,55,'2005-06-21 10:45:11',1,'2006-02-15 21:30:53'),(2977,'2005-06-20 08:15:27',2645,571,'2005-06-29 04:30:27',2,'2006-02-15 21:30:53'),(2978,'2005-06-20 08:25:16',4364,548,'2005-06-23 05:42:16',1,'2006-02-15 21:30:53'),(2979,'2005-06-20 08:31:05',3961,589,'2005-06-27 12:25:05',1,'2006-02-15 21:30:53'),(2980,'2005-06-20 08:35:03',310,343,'2005-06-29 07:57:03',2,'2006-02-15 21:30:53'),(2981,'2005-06-20 08:35:17',522,387,'2005-06-28 09:14:17',1,'2006-02-15 21:30:53'),(2982,'2005-06-20 08:38:29',2574,130,'2005-06-28 13:21:29',1,'2006-02-15 21:30:53'),(2983,'2005-06-20 08:41:42',1349,322,'2005-06-29 04:02:42',2,'2006-02-15 21:30:53'),(2984,'2005-06-20 08:43:44',1819,435,'2005-06-22 03:08:44',2,'2006-02-15 21:30:53'),(2985,'2005-06-20 08:45:08',122,154,'2005-06-22 04:26:08',2,'2006-02-15 21:30:53'),(2986,'2005-06-20 08:50:28',478,556,'2005-06-26 05:24:28',2,'2006-02-15 21:30:53'),(2987,'2005-06-20 08:55:50',1531,349,'2005-06-28 13:02:50',2,'2006-02-15 21:30:53'),(2988,'2005-06-20 08:59:08',3160,557,'2005-06-28 04:31:08',2,'2006-02-15 21:30:53'),(2989,'2005-06-20 08:59:37',1586,56,'2005-06-22 03:27:37',2,'2006-02-15 21:30:53'),(2990,'2005-06-20 09:02:51',4559,18,'2005-06-29 13:19:51',2,'2006-02-15 21:30:53'),(2991,'2005-06-20 09:10:43',4308,472,'2005-06-23 13:04:43',1,'2006-02-15 21:30:53'),(2992,'2005-06-20 09:11:51',3347,439,'2005-06-24 05:59:51',1,'2006-02-15 21:30:53'),(2993,'2005-06-20 09:12:12',1527,40,'2005-06-22 13:36:12',2,'2006-02-15 21:30:53'),(2994,'2005-06-20 09:17:05',1290,163,'2005-06-29 04:41:05',1,'2006-02-15 21:30:53'),(2995,'2005-06-20 09:18:22',4544,573,'2005-06-26 14:31:22',1,'2006-02-15 21:30:53'),(2996,'2005-06-20 09:20:29',4064,500,'2005-06-27 09:18:29',1,'2006-02-15 21:30:53'),(2997,'2005-06-20 09:23:45',1449,519,'2005-06-29 08:15:45',1,'2006-02-15 21:30:53'),(2998,'2005-06-20 09:30:22',1288,380,'2005-06-24 06:31:22',2,'2006-02-15 21:30:53'),(2999,'2005-06-20 09:30:34',735,295,'2005-06-26 05:51:34',2,'2006-02-15 21:30:53'),(3000,'2005-06-20 09:32:33',549,50,'2005-06-22 07:45:33',1,'2006-02-15 21:30:53'),(3001,'2005-06-20 09:50:16',2941,393,'2005-06-28 05:13:16',2,'2006-02-15 21:30:53'),(3002,'2005-06-20 09:56:12',2749,266,'2005-06-24 12:15:12',2,'2006-02-15 21:30:53'),(3003,'2005-06-20 10:00:51',616,38,'2005-06-22 06:28:51',2,'2006-02-15 21:30:53'),(3004,'2005-06-20 10:04:36',2836,113,'2005-06-23 07:38:36',2,'2006-02-15 21:30:53'),(3005,'2005-06-20 10:10:29',286,598,'2005-06-28 15:48:29',2,'2006-02-15 21:30:53'),(3006,'2005-06-20 10:10:29',1677,133,'2005-06-22 07:26:29',2,'2006-02-15 21:30:53'),(3007,'2005-06-20 10:11:53',1950,7,'2005-06-25 04:51:53',2,'2006-02-15 21:30:53'),(3008,'2005-06-20 10:23:25',3383,202,'2005-06-26 11:00:25',2,'2006-02-15 21:30:53'),(3009,'2005-06-20 10:24:44',2721,280,'2005-06-23 13:39:44',1,'2006-02-15 21:30:53'),(3010,'2005-06-20 10:29:59',1298,567,'2005-06-27 06:52:59',1,'2006-02-15 21:30:53'),(3011,'2005-06-20 10:39:10',4376,147,'2005-06-28 07:02:10',2,'2006-02-15 21:30:53'),(3012,'2005-06-20 10:43:13',1392,206,'2005-06-28 10:07:13',2,'2006-02-15 21:30:53'),(3013,'2005-06-20 10:45:09',4146,290,'2005-06-26 04:55:09',1,'2006-02-15 21:30:53'),(3014,'2005-06-20 10:45:20',2179,434,'2005-06-23 06:29:20',1,'2006-02-15 21:30:53'),(3015,'2005-06-20 10:48:56',1311,23,'2005-06-26 11:30:56',2,'2006-02-15 21:30:53'),(3016,'2005-06-20 10:55:08',3514,558,'2005-06-24 14:05:08',1,'2006-02-15 21:30:53'),(3017,'2005-06-20 11:08:56',2513,151,'2005-06-28 16:26:56',1,'2006-02-15 21:30:53'),(3018,'2005-06-20 11:10:35',4150,112,'2005-06-25 07:17:35',2,'2006-02-15 21:30:53'),(3019,'2005-06-20 11:11:52',491,144,'2005-06-27 08:30:52',2,'2006-02-15 21:30:53'),(3020,'2005-06-20 11:12:04',4363,74,'2005-06-27 07:31:04',2,'2006-02-15 21:30:53'),(3021,'2005-06-20 11:13:01',120,62,'2005-06-28 16:15:01',2,'2006-02-15 21:30:53'),(3022,'2005-06-20 11:17:20',3745,466,'2005-06-26 13:15:20',2,'2006-02-15 21:30:53'),(3023,'2005-06-20 11:18:11',4304,106,'2005-06-21 12:43:11',1,'2006-02-15 21:30:53'),(3024,'2005-06-20 11:29:17',1966,328,'2005-06-27 12:51:17',2,'2006-02-15 21:30:53'),(3025,'2005-06-20 11:46:48',1309,293,'2005-06-22 08:43:48',1,'2006-02-15 21:30:53'),(3026,'2005-06-20 11:48:00',4032,347,'2005-06-21 12:51:00',2,'2006-02-15 21:30:53'),(3027,'2005-06-20 11:50:30',4028,397,'2005-06-25 15:58:30',2,'2006-02-15 21:30:53'),(3028,'2005-06-20 11:50:52',886,264,'2005-06-21 11:05:52',2,'2006-02-15 21:30:53'),(3029,'2005-06-20 11:51:30',327,317,'2005-06-25 16:42:30',1,'2006-02-15 21:30:53'),(3030,'2005-06-20 11:51:59',1543,395,'2005-06-24 10:51:59',1,'2006-02-15 21:30:53'),(3031,'2005-06-20 11:52:49',1184,491,'2005-06-22 07:00:49',1,'2006-02-15 21:30:53'),(3032,'2005-06-20 11:58:30',3734,172,'2005-06-24 09:49:30',1,'2006-02-15 21:30:53'),(3033,'2005-06-20 12:02:05',4422,107,'2005-06-26 15:58:05',1,'2006-02-15 21:30:53'),(3034,'2005-06-20 12:15:50',2755,296,'2005-06-24 06:21:50',2,'2006-02-15 21:30:53'),(3035,'2005-06-20 12:17:03',1223,62,'2005-06-26 17:42:03',2,'2006-02-15 21:30:53'),(3036,'2005-06-20 12:18:31',4463,399,'2005-06-29 09:52:31',1,'2006-02-15 21:30:53'),(3037,'2005-06-20 12:28:03',2033,434,'2005-06-21 08:21:03',1,'2006-02-15 21:30:53'),(3038,'2005-06-20 12:28:59',2919,27,'2005-06-25 07:48:59',1,'2006-02-15 21:30:53'),(3039,'2005-06-20 12:32:30',4098,186,'2005-06-21 07:38:30',1,'2006-02-15 21:30:53'),(3040,'2005-06-20 12:34:13',2568,162,'2005-06-21 12:33:13',1,'2006-02-15 21:30:53'),(3041,'2005-06-20 12:35:44',2676,459,'2005-06-23 18:28:44',2,'2006-02-15 21:30:53'),(3042,'2005-06-20 12:38:27',3103,291,'2005-06-26 11:18:27',1,'2006-02-15 21:30:53'),(3043,'2005-06-20 12:38:35',633,599,'2005-06-29 14:16:35',2,'2006-02-15 21:30:53'),(3044,'2005-06-20 12:38:49',3216,424,'2005-06-25 07:49:49',1,'2006-02-15 21:30:53'),(3045,'2005-06-20 12:42:00',3065,459,'2005-06-23 10:49:00',2,'2006-02-15 21:30:53'),(3046,'2005-06-20 12:42:59',471,559,'2005-06-26 17:40:59',2,'2006-02-15 21:30:53'),(3047,'2005-06-20 12:45:33',624,13,'2005-06-29 13:09:33',2,'2006-02-15 21:30:53'),(3048,'2005-06-20 12:49:55',4389,482,'2005-06-26 11:06:55',1,'2006-02-15 21:30:53'),(3049,'2005-06-20 12:51:01',518,403,'2005-06-29 10:53:01',1,'2006-02-15 21:30:53'),(3050,'2005-06-20 13:03:03',2397,557,'2005-06-29 07:22:03',1,'2006-02-15 21:30:53'),(3051,'2005-06-20 13:06:52',1408,65,'2005-06-25 13:03:52',2,'2006-02-15 21:30:53'),(3052,'2005-06-20 13:09:19',2359,329,'2005-06-29 11:55:19',2,'2006-02-15 21:30:53'),(3053,'2005-06-20 13:10:30',818,329,'2005-06-25 17:22:30',2,'2006-02-15 21:30:53'),(3054,'2005-06-20 13:16:41',2817,322,'2005-06-28 13:45:41',2,'2006-02-15 21:30:53'),(3055,'2005-06-20 13:19:58',1510,23,'2005-06-27 14:54:58',1,'2006-02-15 21:30:53'),(3056,'2005-06-20 13:20:58',2010,95,'2005-06-26 08:35:58',2,'2006-02-15 21:30:53'),(3057,'2005-06-20 13:22:48',1101,307,'2005-06-26 17:22:48',2,'2006-02-15 21:30:53'),(3058,'2005-06-20 13:28:35',938,137,'2005-06-28 13:57:35',2,'2006-02-15 21:30:53'),(3059,'2005-06-20 13:38:41',2911,266,'2005-06-21 10:13:41',2,'2006-02-15 21:30:53'),(3060,'2005-06-20 13:47:20',2075,446,'2005-06-25 16:00:20',2,'2006-02-15 21:30:53'),(3061,'2005-06-20 13:48:21',4202,330,'2005-06-22 17:36:21',2,'2006-02-15 21:30:53'),(3062,'2005-06-20 13:50:00',591,75,'2005-06-27 08:18:00',1,'2006-02-15 21:30:53'),(3063,'2005-06-20 13:52:03',3954,515,'2005-06-28 13:36:03',2,'2006-02-15 21:30:53'),(3064,'2005-06-20 13:53:13',2624,276,'2005-06-25 16:33:13',2,'2006-02-15 21:30:53'),(3065,'2005-06-20 13:53:53',1687,227,'2005-06-24 11:31:53',1,'2006-02-15 21:30:53'),(3066,'2005-06-20 13:55:41',1116,268,'2005-06-26 09:38:41',2,'2006-02-15 21:30:53'),(3067,'2005-06-20 13:59:21',3094,349,'2005-06-28 19:09:21',2,'2006-02-15 21:30:53'),(3068,'2005-06-20 14:02:22',1958,516,'2005-06-22 12:52:22',2,'2006-02-15 21:30:53'),(3069,'2005-06-20 14:13:00',1952,237,'2005-06-28 10:57:00',1,'2006-02-15 21:30:53'),(3070,'2005-06-20 14:15:39',3860,543,'2005-06-25 12:52:39',2,'2006-02-15 21:30:53'),(3071,'2005-06-20 14:20:42',1198,582,'2005-06-24 19:01:42',1,'2006-02-15 21:30:53'),(3072,'2005-06-20 14:21:31',4131,423,'2005-06-27 18:46:31',2,'2006-02-15 21:30:53'),(3073,'2005-06-20 14:33:26',3164,471,'2005-06-26 08:42:26',2,'2006-02-15 21:30:53'),(3074,'2005-06-20 14:41:41',1441,299,'2005-06-21 15:56:41',1,'2006-02-15 21:30:53'),(3075,'2005-06-20 14:52:19',4346,161,'2005-06-28 18:48:19',2,'2006-02-15 21:30:53'),(3076,'2005-06-20 15:01:19',1344,109,'2005-06-28 16:53:19',2,'2006-02-15 21:30:53'),(3077,'2005-06-20 15:05:18',1675,303,'2005-06-26 20:52:18',2,'2006-02-15 21:30:53'),(3078,'2005-06-20 15:09:48',3642,367,'2005-06-24 16:54:48',1,'2006-02-15 21:30:53'),(3079,'2005-06-20 15:13:40',2135,350,'2005-06-21 12:03:40',1,'2006-02-15 21:30:53'),(3080,'2005-06-20 15:22:32',118,377,'2005-06-24 11:08:32',1,'2006-02-15 21:30:53'),(3081,'2005-06-20 15:29:13',2071,342,'2005-06-24 21:00:13',2,'2006-02-15 21:30:53'),(3082,'2005-06-20 15:32:11',4431,164,'2005-06-28 13:08:11',1,'2006-02-15 21:30:53'),(3083,'2005-06-20 15:33:47',2896,257,'2005-06-26 16:14:47',2,'2006-02-15 21:30:53'),(3084,'2005-06-20 15:35:24',3578,514,'2005-06-23 19:11:24',1,'2006-02-15 21:30:53'),(3085,'2005-06-20 15:42:33',4282,166,'2005-06-21 16:51:33',2,'2006-02-15 21:30:53'),(3086,'2005-06-20 15:42:40',4437,377,'2005-06-25 19:21:40',1,'2006-02-15 21:30:53'),(3087,'2005-06-20 15:53:59',1305,111,'2005-06-27 10:54:59',2,'2006-02-15 21:30:53'),(3088,'2005-06-20 15:56:05',3049,384,'2005-06-29 13:02:05',1,'2006-02-15 21:30:53'),(3089,'2005-06-20 15:57:01',539,151,'2005-06-25 13:15:01',2,'2006-02-15 21:30:53'),(3090,'2005-06-20 16:00:19',3301,267,'2005-06-23 14:55:19',1,'2006-02-15 21:30:53'),(3091,'2005-06-20 16:02:59',854,383,'2005-06-22 21:30:59',2,'2006-02-15 21:30:53'),(3092,'2005-06-20 16:04:42',4344,347,'2005-06-27 19:54:42',1,'2006-02-15 21:30:53'),(3093,'2005-06-20 16:06:14',2534,556,'2005-06-22 13:22:14',2,'2006-02-15 21:30:53'),(3094,'2005-06-20 16:06:51',2048,114,'2005-06-24 13:23:51',1,'2006-02-15 21:30:53'),(3095,'2005-06-20 16:16:53',3937,298,'2005-06-22 10:35:53',2,'2006-02-15 21:30:53'),(3096,'2005-06-20 16:17:56',3851,79,'2005-06-24 10:17:56',2,'2006-02-15 21:30:53'),(3097,'2005-06-20 16:26:14',4337,280,'2005-06-23 14:46:14',1,'2006-02-15 21:30:53'),(3098,'2005-06-20 16:37:01',3409,498,'2005-06-22 22:24:01',1,'2006-02-15 21:30:53'),(3099,'2005-06-20 16:44:33',3756,380,'2005-06-27 12:17:33',2,'2006-02-15 21:30:53'),(3100,'2005-06-20 16:47:57',2428,487,'2005-06-26 16:59:57',1,'2006-02-15 21:30:53'),(3101,'2005-06-20 16:48:58',1738,384,'2005-06-27 18:13:58',2,'2006-02-15 21:30:53'),(3102,'2005-06-20 16:55:55',1144,522,'2005-06-29 13:49:55',1,'2006-02-15 21:30:53'),(3103,'2005-06-20 16:58:19',1877,553,'2005-06-25 21:18:19',1,'2006-02-15 21:30:53'),(3104,'2005-06-20 17:06:46',1490,196,'2005-06-28 13:18:46',2,'2006-02-15 21:30:53'),(3105,'2005-06-20 17:11:46',130,385,'2005-06-21 11:48:46',2,'2006-02-15 21:30:53'),(3106,'2005-06-20 17:18:06',2637,201,'2005-06-24 14:50:06',2,'2006-02-15 21:30:53'),(3107,'2005-06-20 17:26:05',4527,303,'2005-06-25 12:36:05',1,'2006-02-15 21:30:53'),(3108,'2005-06-20 17:28:43',2218,189,'2005-06-27 21:23:43',1,'2006-02-15 21:30:53'),(3109,'2005-06-20 17:33:55',977,93,'2005-06-22 23:09:55',1,'2006-02-15 21:30:53'),(3110,'2005-06-20 17:40:12',2008,333,'2005-06-24 17:09:12',1,'2006-02-15 21:30:53'),(3111,'2005-06-20 17:46:47',4494,579,'2005-06-29 19:45:47',1,'2006-02-15 21:30:53'),(3112,'2005-06-20 17:53:30',3725,35,'2005-06-26 16:03:30',1,'2006-02-15 21:30:53'),(3113,'2005-06-20 17:56:40',3620,517,'2005-06-23 14:45:40',1,'2006-02-15 21:30:53'),(3114,'2005-06-20 17:57:47',2388,8,'2005-06-21 19:18:47',2,'2006-02-15 21:30:53'),(3115,'2005-06-20 17:59:05',2193,457,'2005-06-26 13:28:05',1,'2006-02-15 21:30:53'),(3116,'2005-06-20 18:04:55',276,108,'2005-06-21 12:12:55',2,'2006-02-15 21:30:53'),(3117,'2005-06-20 18:05:15',2184,31,'2005-06-26 17:28:15',1,'2006-02-15 21:30:53'),(3118,'2005-06-20 18:05:57',1258,125,'2005-06-23 23:01:57',1,'2006-02-15 21:30:53'),(3119,'2005-06-20 18:11:44',683,296,'2005-06-27 16:14:44',2,'2006-02-15 21:30:53'),(3120,'2005-06-20 18:19:29',2530,107,'2005-06-23 23:40:29',1,'2006-02-15 21:30:53'),(3121,'2005-06-20 18:23:30',797,132,'2005-06-21 20:36:30',1,'2006-02-15 21:30:53'),(3122,'2005-06-20 18:25:57',2720,87,'2005-06-29 16:08:57',1,'2006-02-15 21:30:53'),(3123,'2005-06-20 18:26:14',1656,289,'2005-06-29 17:17:14',1,'2006-02-15 21:30:53'),(3124,'2005-06-20 18:28:19',3342,113,'2005-06-28 21:08:19',1,'2006-02-15 21:30:53'),(3125,'2005-06-20 18:31:58',3293,382,'2005-06-21 15:03:58',1,'2006-02-15 21:30:53'),(3126,'2005-06-20 18:38:22',1183,5,'2005-06-26 00:00:22',1,'2006-02-15 21:30:53'),(3127,'2005-06-20 18:39:43',1292,461,'2005-06-28 17:55:43',1,'2006-02-15 21:30:53'),(3128,'2005-06-20 18:41:47',189,543,'2005-06-24 20:54:47',2,'2006-02-15 21:30:53'),(3129,'2005-06-20 18:57:48',1789,495,'2005-06-28 13:45:48',1,'2006-02-15 21:30:53'),(3130,'2005-06-20 19:03:22',2569,341,'2005-06-29 18:05:22',2,'2006-02-15 21:30:53'),(3131,'2005-06-20 19:08:00',3678,146,'2005-06-24 20:59:00',2,'2006-02-15 21:30:53'),(3132,'2005-06-20 19:09:46',711,90,'2005-06-24 19:42:46',1,'2006-02-15 21:30:53'),(3133,'2005-06-20 19:18:32',4529,120,'2005-06-26 17:54:32',2,'2006-02-15 21:30:53'),(3134,'2005-06-20 19:29:09',1389,537,'2005-06-29 19:31:09',2,'2006-02-15 21:30:53'),(3135,'2005-06-20 19:33:52',1122,12,'2005-06-29 18:20:52',1,'2006-02-15 21:30:53'),(3136,'2005-06-20 19:39:08',3349,377,'2005-06-22 23:35:08',2,'2006-02-15 21:30:53'),(3137,'2005-06-20 19:41:28',786,505,'2005-06-28 00:32:28',1,'2006-02-15 21:30:53'),(3138,'2005-06-20 19:43:45',2265,570,'2005-06-26 20:41:45',1,'2006-02-15 21:30:53'),(3139,'2005-06-20 19:44:45',3474,354,'2005-06-23 16:24:45',1,'2006-02-15 21:30:53'),(3140,'2005-06-20 19:47:12',2936,53,'2005-06-24 23:24:12',1,'2006-02-15 21:30:53'),(3141,'2005-06-20 19:55:47',1806,398,'2005-06-30 00:31:47',1,'2006-02-15 21:30:53'),(3142,'2005-06-20 19:59:28',3926,9,'2005-06-28 19:51:28',2,'2006-02-15 21:30:53'),(3143,'2005-06-20 20:01:52',1355,215,'2005-06-26 19:26:52',2,'2006-02-15 21:30:53'),(3144,'2005-06-20 20:14:20',1300,114,'2005-06-30 01:46:20',1,'2006-02-15 21:30:53'),(3145,'2005-06-20 20:21:17',2211,144,'2005-06-22 14:44:17',1,'2006-02-15 21:30:53'),(3146,'2005-06-20 20:21:48',2249,339,'2005-06-29 22:57:48',2,'2006-02-15 21:30:53'),(3147,'2005-06-20 20:25:17',615,390,'2005-06-28 20:22:17',2,'2006-02-15 21:30:53'),(3148,'2005-06-20 20:27:18',4490,202,'2005-06-24 20:30:18',2,'2006-02-15 21:30:53'),(3149,'2005-06-20 20:34:55',3295,55,'2005-06-21 18:51:55',1,'2006-02-15 21:30:53'),(3150,'2005-06-20 20:35:28',94,34,'2005-06-26 01:01:28',1,'2006-02-15 21:30:53'),(3151,'2005-06-20 20:36:53',2976,77,'2005-06-25 18:56:53',1,'2006-02-15 21:30:53'),(3152,'2005-06-20 20:42:41',1022,246,'2005-06-28 21:12:41',1,'2006-02-15 21:30:53'),(3153,'2005-06-20 20:44:15',659,430,'2005-06-23 16:04:15',1,'2006-02-15 21:30:53'),(3154,'2005-06-20 20:44:40',3195,550,'2005-06-23 19:10:40',1,'2006-02-15 21:30:53'),(3155,'2005-06-20 21:02:38',458,450,'2005-06-27 19:34:38',1,'2006-02-15 21:30:53'),(3156,'2005-06-20 21:03:46',2217,365,'2005-06-21 23:32:46',2,'2006-02-15 21:30:53'),(3157,'2005-06-20 21:07:54',1899,245,'2005-06-23 16:01:54',1,'2006-02-15 21:30:53'),(3158,'2005-06-20 21:08:19',3461,592,'2005-06-29 18:59:19',1,'2006-02-15 21:30:53'),(3159,'2005-06-20 21:11:50',33,388,'2005-06-29 19:35:50',2,'2006-02-15 21:30:53'),(3160,'2005-06-20 21:20:51',4333,561,'2005-06-29 18:06:51',2,'2006-02-15 21:30:53'),(3161,'2005-06-20 21:21:01',1326,373,'2005-06-21 18:22:01',2,'2006-02-15 21:30:53'),(3162,'2005-06-20 21:21:15',3220,113,'2005-06-29 18:42:15',1,'2006-02-15 21:30:53'),(3163,'2005-06-20 21:22:13',2632,391,'2005-06-26 15:22:13',2,'2006-02-15 21:30:53'),(3164,'2005-06-20 21:29:00',155,270,'2005-06-27 15:50:00',1,'2006-02-15 21:30:53'),(3165,'2005-06-20 21:29:17',796,85,'2005-06-22 18:03:17',1,'2006-02-15 21:30:53'),(3166,'2005-06-20 21:32:32',1850,424,'2005-06-27 20:29:32',1,'2006-02-15 21:30:53'),(3167,'2005-06-20 21:42:29',353,464,'2005-06-22 00:36:29',2,'2006-02-15 21:30:53'),(3168,'2005-06-20 21:46:01',2407,446,'2005-06-22 20:40:01',1,'2006-02-15 21:30:53'),(3169,'2005-06-20 21:55:54',2437,50,'2005-06-25 19:45:54',1,'2006-02-15 21:30:53'),(3170,'2005-06-20 22:02:54',1306,421,'2005-06-29 00:41:54',2,'2006-02-15 21:30:53'),(3171,'2005-06-20 22:15:47',2838,140,'2005-06-24 18:14:47',1,'2006-02-15 21:30:53'),(3172,'2005-06-20 22:19:25',1758,31,'2005-06-24 17:18:25',2,'2006-02-15 21:30:53'),(3173,'2005-06-20 22:21:10',4306,33,'2005-06-27 19:41:10',2,'2006-02-15 21:30:53'),(3174,'2005-06-20 22:24:00',3331,107,'2005-06-22 21:22:00',2,'2006-02-15 21:30:53'),(3175,'2005-06-20 22:30:23',4093,249,'2005-06-30 03:28:23',2,'2006-02-15 21:30:53'),(3176,'2005-06-20 22:31:54',1982,371,'2005-06-25 02:58:54',1,'2006-02-15 21:30:53'),(3177,'2005-06-20 22:32:44',2546,300,'2005-06-22 23:01:44',1,'2006-02-15 21:30:53'),(3178,'2005-06-20 22:35:12',3517,79,'2005-06-23 19:39:12',1,'2006-02-15 21:30:53'),(3179,'2005-06-20 22:37:59',2214,163,'2005-06-26 22:26:59',2,'2006-02-15 21:30:53'),(3180,'2005-06-20 22:48:44',3997,162,'2005-06-21 21:25:44',1,'2006-02-15 21:30:53'),(3181,'2005-06-20 22:51:02',3473,238,'2005-06-27 21:21:02',1,'2006-02-15 21:30:53'),(3182,'2005-06-20 22:52:18',4017,15,'2005-06-21 21:00:18',2,'2006-02-15 21:30:53'),(3183,'2005-06-20 22:55:55',4397,129,'2005-06-23 17:22:55',1,'2006-02-15 21:30:53'),(3184,'2005-06-20 22:57:44',3179,457,'2005-06-29 20:57:44',1,'2006-02-15 21:30:53'),(3185,'2005-06-20 22:58:01',601,234,'2005-06-27 00:26:01',1,'2006-02-15 21:30:53'),(3186,'2005-06-20 23:04:20',3198,406,'2005-06-29 02:56:20',2,'2006-02-15 21:30:53'),(3187,'2005-06-20 23:06:07',4357,150,'2005-06-27 01:14:07',2,'2006-02-15 21:30:53'),(3188,'2005-06-20 23:10:27',2471,522,'2005-06-25 19:37:27',2,'2006-02-15 21:30:53'),(3189,'2005-06-20 23:19:33',1502,538,'2005-06-24 17:46:33',1,'2006-02-15 21:30:53'),(3190,'2005-06-20 23:27:15',351,200,'2005-06-28 01:22:15',2,'2006-02-15 21:30:53'),(3191,'2005-06-20 23:46:39',4358,522,'2005-06-25 03:21:39',2,'2006-02-15 21:30:53'),(3192,'2005-06-20 23:49:12',3713,11,'2005-06-24 03:00:12',1,'2006-02-15 21:30:53'),(3193,'2005-06-20 23:52:30',3176,260,'2005-06-22 21:21:30',1,'2006-02-15 21:30:53'),(3194,'2005-06-20 23:59:57',1835,432,'2005-06-24 19:21:57',1,'2006-02-15 21:30:53'),(3195,'2005-06-21 00:02:10',2383,165,'2005-06-21 23:11:10',2,'2006-02-15 21:30:53'),(3196,'2005-06-21 00:02:28',1575,52,'2005-06-22 23:08:28',1,'2006-02-15 21:30:53'),(3197,'2005-06-21 00:07:23',1811,362,'2005-06-23 00:53:23',2,'2006-02-15 21:30:53'),(3198,'2005-06-21 00:08:54',1626,295,'2005-06-29 02:11:54',2,'2006-02-15 21:30:53'),(3199,'2005-06-21 00:12:40',3824,234,'2005-06-27 23:26:40',1,'2006-02-15 21:30:53'),(3200,'2005-06-21 00:22:47',4117,221,'2005-06-27 05:52:47',2,'2006-02-15 21:30:53'),(3201,'2005-06-21 00:30:26',6,597,'2005-06-28 03:42:26',1,'2006-02-15 21:30:53'),(3202,'2005-06-21 00:33:47',2725,273,'2005-06-24 04:05:47',2,'2006-02-15 21:30:53'),(3203,'2005-06-21 00:34:56',442,158,'2005-06-29 23:30:56',1,'2006-02-15 21:30:53'),(3204,'2005-06-21 00:37:50',2848,336,'2005-06-22 23:46:50',1,'2006-02-15 21:30:53'),(3205,'2005-06-21 00:38:47',2964,31,'2005-06-21 22:49:47',1,'2006-02-15 21:30:53'),(3206,'2005-06-21 00:39:39',2196,350,'2005-06-22 05:12:39',1,'2006-02-15 21:30:53'),(3207,'2005-06-21 00:43:16',4020,86,'2005-06-24 22:13:16',1,'2006-02-15 21:30:53'),(3208,'2005-06-21 00:50:03',3169,229,'2005-06-24 06:15:03',2,'2006-02-15 21:30:53'),(3209,'2005-06-21 00:51:06',287,307,'2005-06-22 21:49:06',2,'2006-02-15 21:30:53'),(3210,'2005-06-21 01:00:25',467,75,'2005-06-23 06:10:25',2,'2006-02-15 21:30:53'),(3211,'2005-06-21 01:01:29',1150,415,'2005-06-23 04:05:29',1,'2006-02-15 21:30:53'),(3212,'2005-06-21 01:04:35',4178,21,'2005-06-30 00:10:35',2,'2006-02-15 21:30:53'),(3213,'2005-06-21 01:05:19',3832,534,'2005-06-27 21:55:19',2,'2006-02-15 21:30:53'),(3214,'2005-06-21 01:08:26',776,142,'2005-06-23 03:24:26',2,'2006-02-15 21:30:53'),(3215,'2005-06-21 01:11:32',4140,279,'2005-06-26 19:42:32',1,'2006-02-15 21:30:53'),(3216,'2005-06-21 01:19:37',719,534,'2005-06-29 06:45:37',2,'2006-02-15 21:30:53'),(3217,'2005-06-21 01:28:12',1027,463,'2005-06-25 02:51:12',2,'2006-02-15 21:30:53'),(3218,'2005-06-21 01:38:09',1828,117,'2005-06-23 02:00:09',1,'2006-02-15 21:30:53'),(3219,'2005-06-21 01:43:26',3024,129,'2005-06-28 23:50:26',2,'2006-02-15 21:30:53'),(3220,'2005-06-21 01:46:25',1880,574,'2005-06-26 07:44:25',2,'2006-02-15 21:30:53'),(3221,'2005-06-21 01:49:47',245,454,'2005-06-25 06:31:47',1,'2006-02-15 21:30:53'),(3222,'2005-06-21 01:50:29',4023,501,'2005-06-27 00:52:29',2,'2006-02-15 21:30:53'),(3223,'2005-06-21 02:06:45',1033,299,'2005-06-22 07:16:45',2,'2006-02-15 21:30:53'),(3224,'2005-06-21 02:11:36',3318,173,'2005-06-23 21:17:36',1,'2006-02-15 21:30:53'),(3225,'2005-06-21 02:16:55',1003,448,'2005-06-27 05:39:55',2,'2006-02-15 21:30:53'),(3226,'2005-06-21 02:18:14',4079,576,'2005-06-26 22:32:14',2,'2006-02-15 21:30:53'),(3227,'2005-06-21 02:18:25',1156,568,'2005-06-27 00:59:25',1,'2006-02-15 21:30:53'),(3228,'2005-06-21 02:20:24',2489,535,'2005-06-29 00:50:24',2,'2006-02-15 21:30:53'),(3229,'2005-06-21 02:20:41',2301,81,'2005-06-26 00:39:41',1,'2006-02-15 21:30:53'),(3230,'2005-06-21 02:23:16',215,83,'2005-06-22 01:37:16',2,'2006-02-15 21:30:53'),(3231,'2005-06-21 02:25:00',237,28,'2005-06-23 05:46:00',2,'2006-02-15 21:30:53'),(3232,'2005-06-21 02:30:37',1972,555,'2005-06-29 03:10:37',1,'2006-02-15 21:30:53'),(3233,'2005-06-21 02:39:31',3542,353,'2005-06-28 05:23:31',2,'2006-02-15 21:30:53'),(3234,'2005-06-21 02:39:44',3252,459,'2005-06-29 07:27:44',1,'2006-02-15 21:30:53'),(3235,'2005-06-21 02:46:17',212,49,'2005-06-22 20:58:17',1,'2006-02-15 21:30:53'),(3236,'2005-06-21 02:47:43',1492,550,'2005-06-29 08:04:43',2,'2006-02-15 21:30:53'),(3237,'2005-06-21 02:47:56',4399,466,'2005-06-27 03:16:56',2,'2006-02-15 21:30:53'),(3238,'2005-06-21 02:48:21',2732,77,'2005-06-23 04:43:21',1,'2006-02-15 21:30:53'),(3239,'2005-06-21 02:48:40',3402,328,'2005-06-22 02:49:40',2,'2006-02-15 21:30:53'),(3240,'2005-06-21 02:53:17',2938,405,'2005-06-30 03:25:17',2,'2006-02-15 21:30:53'),(3241,'2005-06-21 02:54:32',1442,499,'2005-06-26 21:56:32',2,'2006-02-15 21:30:53'),(3242,'2005-06-21 02:56:24',1421,562,'2005-06-29 21:41:24',2,'2006-02-15 21:30:53'),(3243,'2005-06-21 03:00:11',2556,426,'2005-06-25 21:53:11',1,'2006-02-15 21:30:53'),(3244,'2005-06-21 03:01:10',291,53,'2005-06-24 06:59:10',2,'2006-02-15 21:30:53'),(3245,'2005-06-21 03:06:11',2057,358,'2005-06-25 08:06:11',2,'2006-02-15 21:30:53'),(3246,'2005-06-21 03:10:01',4432,41,'2005-06-28 00:46:01',1,'2006-02-15 21:30:53'),(3247,'2005-06-21 03:12:15',1406,277,'2005-06-27 00:44:15',1,'2006-02-15 21:30:53'),(3248,'2005-06-21 03:12:21',3656,78,'2005-06-28 03:54:21',2,'2006-02-15 21:30:53'),(3249,'2005-06-21 03:13:19',703,410,'2005-06-29 04:04:19',2,'2006-02-15 21:30:53'),(3250,'2005-06-21 03:16:36',736,467,'2005-06-29 00:53:36',2,'2006-02-15 21:30:53'),(3251,'2005-06-21 03:20:37',1414,317,'2005-06-23 04:54:37',2,'2006-02-15 21:30:53'),(3252,'2005-06-21 03:25:26',2009,213,'2005-06-24 00:38:26',2,'2006-02-15 21:30:53'),(3253,'2005-06-21 03:25:37',1906,405,'2005-06-27 02:46:37',2,'2006-02-15 21:30:53'),(3254,'2005-06-21 03:27:10',3893,472,'2005-06-22 22:01:10',2,'2006-02-15 21:30:53'),(3255,'2005-06-21 03:39:52',2564,482,'2005-06-24 04:02:52',1,'2006-02-15 21:30:53'),(3256,'2005-06-21 03:45:42',1235,319,'2005-06-30 02:51:42',2,'2006-02-15 21:30:53'),(3257,'2005-06-21 03:47:19',3975,263,'2005-06-28 01:24:19',2,'2006-02-15 21:30:53'),(3258,'2005-06-21 03:53:58',4417,241,'2005-06-22 22:49:58',2,'2006-02-15 21:30:53'),(3259,'2005-06-21 03:57:15',2751,478,'2005-06-24 03:32:15',1,'2006-02-15 21:30:53'),(3260,'2005-06-21 03:59:13',3627,380,'2005-06-23 03:29:13',1,'2006-02-15 21:30:53'),(3261,'2005-06-21 04:07:41',2029,169,'2005-06-24 06:25:41',2,'2006-02-15 21:30:53'),(3262,'2005-06-21 04:08:43',3773,9,'2005-06-28 02:55:43',1,'2006-02-15 21:30:53'),(3263,'2005-06-21 04:15:52',3491,118,'2005-06-24 02:19:52',2,'2006-02-15 21:30:53'),(3264,'2005-06-21 04:19:03',1666,340,'2005-06-23 01:29:03',1,'2006-02-15 21:30:53'),(3265,'2005-06-21 04:23:13',3637,437,'2005-06-28 03:37:13',1,'2006-02-15 21:30:53'),(3266,'2005-06-21 04:49:07',2533,175,'2005-06-26 05:19:07',2,'2006-02-15 21:30:53'),(3267,'2005-06-21 04:55:21',1118,134,'2005-06-29 23:46:21',1,'2006-02-15 21:30:53'),(3268,'2005-06-21 04:55:49',4366,329,'2005-06-30 00:23:49',2,'2006-02-15 21:30:53'),(3269,'2005-06-21 05:06:30',3828,17,'2005-06-27 09:26:30',2,'2006-02-15 21:30:53'),(3270,'2005-06-21 05:07:31',1578,86,'2005-06-22 07:45:31',2,'2006-02-15 21:30:53'),(3271,'2005-06-21 05:16:10',4191,196,'2005-06-27 10:46:10',1,'2006-02-15 21:30:53'),(3272,'2005-06-21 05:18:27',1090,550,'2005-06-30 02:51:27',1,'2006-02-15 21:30:53'),(3273,'2005-06-21 05:24:17',3538,104,'2005-06-23 01:21:17',2,'2006-02-15 21:30:53'),(3274,'2005-06-21 05:30:36',2156,277,'2005-06-24 05:12:36',1,'2006-02-15 21:30:53'),(3275,'2005-06-21 05:33:04',2320,368,'2005-06-30 00:37:04',2,'2006-02-15 21:30:53'),(3276,'2005-06-21 05:35:52',1890,425,'2005-06-29 03:26:52',2,'2006-02-15 21:30:53'),(3277,'2005-06-21 05:36:37',1330,229,'2005-06-29 10:54:37',1,'2006-02-15 21:30:53'),(3278,'2005-06-21 05:41:30',2832,554,'2005-06-22 03:43:30',1,'2006-02-15 21:30:53'),(3279,'2005-06-21 06:05:53',1672,462,'2005-06-25 09:40:53',1,'2006-02-15 21:30:53'),(3280,'2005-06-21 06:08:12',661,229,'2005-06-24 09:34:12',1,'2006-02-15 21:30:53'),(3281,'2005-06-21 06:08:47',4006,363,'2005-06-24 11:22:47',1,'2006-02-15 21:30:53'),(3282,'2005-06-21 06:18:42',1676,224,'2005-06-28 09:18:42',1,'2006-02-15 21:30:53'),(3283,'2005-06-21 06:19:07',3988,372,'2005-06-26 10:59:07',2,'2006-02-15 21:30:53'),(3284,'2005-06-21 06:24:45',4566,1,'2005-06-28 03:28:45',1,'2006-02-15 21:30:53'),(3285,'2005-06-21 06:30:13',948,481,'2005-06-23 10:31:13',2,'2006-02-15 21:30:53'),(3286,'2005-06-21 06:31:29',742,577,'2005-06-25 00:46:29',2,'2006-02-15 21:30:53'),(3287,'2005-06-21 06:32:39',4406,62,'2005-06-24 09:29:39',2,'2006-02-15 21:30:53'),(3288,'2005-06-21 06:36:59',1961,299,'2005-06-30 06:50:59',1,'2006-02-15 21:30:53'),(3289,'2005-06-21 06:41:48',2248,115,'2005-06-30 00:54:48',1,'2006-02-15 21:30:53'),(3290,'2005-06-21 06:45:34',2727,293,'2005-06-28 09:44:34',1,'2006-02-15 21:30:53'),(3291,'2005-06-21 06:55:36',3866,274,'2005-06-29 03:41:36',1,'2006-02-15 21:30:53'),(3292,'2005-06-21 06:59:11',3288,412,'2005-06-23 07:11:11',1,'2006-02-15 21:30:53'),(3293,'2005-06-21 06:59:33',4407,481,'2005-06-25 06:54:33',2,'2006-02-15 21:30:53'),(3294,'2005-06-21 07:03:23',2390,439,'2005-06-30 02:22:23',2,'2006-02-15 21:30:53'),(3295,'2005-06-21 07:04:17',1703,573,'2005-06-29 01:52:17',1,'2006-02-15 21:30:53'),(3296,'2005-06-21 07:04:53',2453,284,'2005-06-25 08:36:53',1,'2006-02-15 21:30:53'),(3297,'2005-06-21 07:08:19',3969,193,'2005-06-28 11:53:19',2,'2006-02-15 21:30:53'),(3298,'2005-06-21 07:09:44',444,492,'2005-06-30 11:26:44',2,'2006-02-15 21:30:53'),(3299,'2005-06-21 07:23:34',3427,199,'2005-06-27 04:02:34',1,'2006-02-15 21:30:53'),(3300,'2005-06-21 07:25:01',2505,565,'2005-06-25 01:47:01',1,'2006-02-15 21:30:53'),(3301,'2005-06-21 07:32:25',503,444,'2005-06-28 06:26:25',2,'2006-02-15 21:30:53'),(3302,'2005-06-21 07:33:40',562,594,'2005-06-29 06:02:40',1,'2006-02-15 21:30:53'),(3303,'2005-06-21 07:34:14',1565,361,'2005-06-26 13:18:14',2,'2006-02-15 21:30:53'),(3304,'2005-06-21 07:43:40',2154,431,'2005-06-27 08:06:40',2,'2006-02-15 21:30:53'),(3305,'2005-06-21 07:46:57',2811,578,'2005-06-27 06:16:57',1,'2006-02-15 21:30:53'),(3306,'2005-06-21 07:46:58',1669,406,'2005-06-26 11:22:58',2,'2006-02-15 21:30:53'),(3307,'2005-06-21 07:52:30',462,85,'2005-06-25 02:36:30',2,'2006-02-15 21:30:53'),(3308,'2005-06-21 07:58:36',3129,96,'2005-06-23 05:23:36',2,'2006-02-15 21:30:53'),(3309,'2005-06-21 08:00:49',248,463,'2005-06-29 04:11:49',2,'2006-02-15 21:30:53'),(3310,'2005-06-21 08:04:51',1717,395,'2005-06-22 04:20:51',2,'2006-02-15 21:30:53'),(3311,'2005-06-21 08:05:27',3438,518,'2005-06-22 06:51:27',2,'2006-02-15 21:30:53'),(3312,'2005-06-21 08:05:32',1008,554,'2005-06-27 03:34:32',2,'2006-02-15 21:30:53'),(3313,'2005-06-21 08:11:18',4267,213,'2005-06-23 04:28:18',2,'2006-02-15 21:30:53'),(3314,'2005-06-21 08:17:00',4332,185,'2005-06-22 06:00:00',2,'2006-02-15 21:30:53'),(3315,'2005-06-21 08:17:04',4108,438,'2005-06-24 11:04:04',1,'2006-02-15 21:30:53'),(3316,'2005-06-21 08:20:18',3271,451,'2005-06-28 07:44:18',1,'2006-02-15 21:30:53'),(3317,'2005-06-21 08:22:32',4095,584,'2005-06-26 14:18:32',2,'2006-02-15 21:30:53'),(3318,'2005-06-21 08:23:05',1111,414,'2005-06-27 14:07:05',2,'2006-02-15 21:30:53'),(3319,'2005-06-21 08:25:46',2482,461,'2005-06-27 03:54:46',2,'2006-02-15 21:30:53'),(3320,'2005-06-21 08:29:41',860,47,'2005-06-29 13:54:41',2,'2006-02-15 21:30:53'),(3321,'2005-06-21 08:33:26',1750,144,'2005-06-24 10:09:26',2,'2006-02-15 21:30:53'),(3322,'2005-06-21 08:42:37',4324,458,'2005-06-22 13:17:37',1,'2006-02-15 21:30:53'),(3323,'2005-06-21 08:45:33',2252,272,'2005-06-28 08:17:33',2,'2006-02-15 21:30:53'),(3324,'2005-06-21 08:49:16',2830,29,'2005-06-22 12:31:16',1,'2006-02-15 21:30:53'),(3325,'2005-06-21 08:51:44',1720,185,'2005-06-27 06:16:44',1,'2006-02-15 21:30:53'),(3326,'2005-06-21 09:04:50',1025,347,'2005-06-30 12:10:50',2,'2006-02-15 21:30:53'),(3327,'2005-06-21 09:04:50',3083,62,'2005-06-30 05:45:50',1,'2006-02-15 21:30:53'),(3328,'2005-06-21 09:08:44',2462,292,'2005-06-30 12:28:44',1,'2006-02-15 21:30:53'),(3329,'2005-06-21 09:20:31',3506,335,'2005-06-22 10:00:31',2,'2006-02-15 21:30:53'),(3330,'2005-06-21 09:22:37',299,294,'2005-06-23 07:16:37',2,'2006-02-15 21:30:53'),(3331,'2005-06-21 09:37:53',2913,352,'2005-06-26 04:01:53',2,'2006-02-15 21:30:53'),(3332,'2005-06-21 09:55:12',1975,82,'2005-06-25 08:32:12',2,'2006-02-15 21:30:53'),(3333,'2005-06-21 10:01:36',3688,111,'2005-06-25 10:27:36',2,'2006-02-15 21:30:53'),(3334,'2005-06-21 10:04:33',2491,66,'2005-06-29 06:09:33',2,'2006-02-15 21:30:53'),(3335,'2005-06-21 10:09:08',3033,339,'2005-06-27 11:33:08',1,'2006-02-15 21:30:53'),(3336,'2005-06-21 10:14:27',2122,173,'2005-06-22 09:29:27',1,'2006-02-15 21:30:53'),(3337,'2005-06-21 10:24:35',1176,318,'2005-06-22 13:51:35',1,'2006-02-15 21:30:53'),(3338,'2005-06-21 10:27:31',2097,171,'2005-06-30 14:15:31',2,'2006-02-15 21:30:53'),(3339,'2005-06-21 10:37:11',312,526,'2005-06-30 05:04:11',2,'2006-02-15 21:30:53'),(3340,'2005-06-21 10:37:23',2962,540,'2005-06-26 07:21:23',2,'2006-02-15 21:30:53'),(3341,'2005-06-21 10:37:25',2189,591,'2005-06-26 15:38:25',1,'2006-02-15 21:30:53'),(3342,'2005-06-21 10:46:36',2884,196,'2005-06-23 09:46:36',2,'2006-02-15 21:30:53'),(3343,'2005-06-21 10:56:59',2038,466,'2005-06-25 16:41:59',1,'2006-02-15 21:30:53'),(3344,'2005-06-21 10:57:27',4401,277,'2005-06-28 10:53:27',1,'2006-02-15 21:30:53'),(3345,'2005-06-21 11:05:07',4442,71,'2005-06-26 15:14:07',2,'2006-02-15 21:30:53'),(3346,'2005-06-21 11:06:53',4393,189,'2005-06-22 15:19:53',2,'2006-02-15 21:30:53'),(3347,'2005-06-21 11:08:32',4330,448,'2005-06-28 09:59:32',1,'2006-02-15 21:30:53'),(3348,'2005-06-21 11:16:42',2945,16,'2005-06-27 13:50:42',2,'2006-02-15 21:30:53'),(3349,'2005-06-21 11:17:35',3885,336,'2005-06-22 12:51:35',2,'2006-02-15 21:30:53'),(3350,'2005-06-21 11:21:38',3221,20,'2005-06-28 15:37:38',2,'2006-02-15 21:30:53'),(3351,'2005-06-21 11:21:39',1591,386,'2005-06-23 07:23:39',2,'2006-02-15 21:30:53'),(3352,'2005-06-21 11:26:29',578,510,'2005-06-28 07:26:29',1,'2006-02-15 21:30:53'),(3353,'2005-06-21 11:29:23',3984,236,'2005-06-27 15:06:23',1,'2006-02-15 21:30:53'),(3354,'2005-06-21 11:29:49',1083,529,'2005-06-25 07:39:49',2,'2006-02-15 21:30:53'),(3355,'2005-06-21 11:30:47',1960,275,'2005-06-23 06:04:47',1,'2006-02-15 21:30:53'),(3356,'2005-06-21 11:38:45',4532,403,'2005-06-26 17:18:45',1,'2006-02-15 21:30:53'),(3357,'2005-06-21 11:55:42',2528,57,'2005-06-22 07:19:42',2,'2006-02-15 21:30:53'),(3358,'2005-06-21 11:56:40',1772,69,'2005-06-26 08:28:40',2,'2006-02-15 21:30:53'),(3359,'2005-06-21 12:08:18',3825,67,'2005-06-25 16:35:18',2,'2006-02-15 21:30:53'),(3360,'2005-06-21 12:12:41',2792,498,'2005-06-26 06:32:41',1,'2006-02-15 21:30:53'),(3361,'2005-06-21 12:14:23',2671,268,'2005-06-26 10:01:23',2,'2006-02-15 21:30:53'),(3362,'2005-06-21 12:19:54',1284,454,'2005-06-23 06:59:54',2,'2006-02-15 21:30:53'),(3363,'2005-06-21 12:25:07',538,261,'2005-06-27 11:52:07',2,'2006-02-15 21:30:53'),(3364,'2005-06-21 12:37:46',2329,201,'2005-06-28 07:18:46',2,'2006-02-15 21:30:53'),(3365,'2005-06-21 12:55:48',657,133,'2005-06-23 13:38:48',2,'2006-02-15 21:30:53'),(3366,'2005-06-21 13:03:37',2584,511,'2005-06-26 16:29:37',1,'2006-02-15 21:30:53'),(3367,'2005-06-21 13:08:21',2442,80,'2005-06-26 08:43:21',2,'2006-02-15 21:30:53'),(3368,'2005-06-21 13:18:38',548,438,'2005-06-23 11:13:38',1,'2006-02-15 21:30:53'),(3369,'2005-06-21 13:20:31',303,431,'2005-06-30 13:45:31',2,'2006-02-15 21:30:53'),(3370,'2005-06-21 13:27:01',1573,559,'2005-06-25 09:27:01',1,'2006-02-15 21:30:53'),(3371,'2005-06-21 13:27:22',2526,595,'2005-06-29 14:04:22',2,'2006-02-15 21:30:53'),(3372,'2005-06-21 13:34:19',4169,346,'2005-06-27 08:41:19',2,'2006-02-15 21:30:53'),(3373,'2005-06-21 13:35:32',2219,316,'2005-06-30 12:03:32',1,'2006-02-15 21:30:53'),(3374,'2005-06-21 13:36:30',1067,279,'2005-06-23 15:10:30',2,'2006-02-15 21:30:53'),(3375,'2005-06-21 13:37:18',912,279,'2005-06-22 11:26:18',2,'2006-02-15 21:30:53'),(3376,'2005-06-21 13:43:02',3055,318,'2005-06-28 18:07:02',1,'2006-02-15 21:30:53'),(3377,'2005-06-21 13:51:12',1845,428,'2005-06-22 18:16:12',1,'2006-02-15 21:30:53'),(3378,'2005-06-21 13:51:28',35,387,'2005-06-25 09:21:28',1,'2006-02-15 21:30:53'),(3379,'2005-06-21 13:54:58',2022,566,'2005-06-23 13:43:58',2,'2006-02-15 21:30:53'),(3380,'2005-06-21 13:58:46',3212,483,'2005-06-30 09:29:46',1,'2006-02-15 21:30:53'),(3381,'2005-06-21 14:02:59',1373,183,'2005-06-29 18:11:59',2,'2006-02-15 21:30:53'),(3382,'2005-06-21 14:05:23',131,341,'2005-06-29 19:13:23',2,'2006-02-15 21:30:53'),(3383,'2005-06-21 14:07:19',2968,239,'2005-06-29 17:00:19',2,'2006-02-15 21:30:53'),(3384,'2005-06-21 14:07:35',409,91,'2005-06-26 16:34:35',1,'2006-02-15 21:30:53'),(3385,'2005-06-21 14:16:48',2810,514,'2005-06-24 10:32:48',2,'2006-02-15 21:30:53'),(3386,'2005-06-21 14:21:06',1224,190,'2005-06-24 08:32:06',2,'2006-02-15 21:30:53'),(3387,'2005-06-21 14:21:49',2709,305,'2005-06-24 16:46:49',2,'2006-02-15 21:30:53'),(3388,'2005-06-21 14:34:51',556,119,'2005-06-28 18:19:51',1,'2006-02-15 21:30:53'),(3389,'2005-06-21 14:37:55',727,395,'2005-06-28 18:13:55',1,'2006-02-15 21:30:53'),(3390,'2005-06-21 15:10:50',2034,151,'2005-06-26 12:38:50',1,'2006-02-15 21:30:53'),(3391,'2005-06-21 15:11:02',26,45,'2005-06-25 14:12:02',1,'2006-02-15 21:30:53'),(3392,'2005-06-21 15:12:44',3343,38,'2005-06-29 18:19:44',1,'2006-02-15 21:30:53'),(3393,'2005-06-21 15:14:27',1631,362,'2005-06-25 19:54:27',2,'2006-02-15 21:30:53'),(3394,'2005-06-21 15:17:39',3393,295,'2005-06-30 13:55:39',2,'2006-02-15 21:30:53'),(3395,'2005-06-21 15:19:19',3764,66,'2005-06-29 14:23:19',2,'2006-02-15 21:30:53'),(3396,'2005-06-21 15:23:08',2744,371,'2005-06-23 10:25:08',1,'2006-02-15 21:30:53'),(3397,'2005-06-21 15:30:11',602,552,'2005-06-22 21:12:11',1,'2006-02-15 21:30:53'),(3398,'2005-06-21 15:34:38',221,599,'2005-06-29 11:23:38',1,'2006-02-15 21:30:53'),(3399,'2005-06-21 15:47:48',619,98,'2005-06-26 13:46:48',1,'2006-02-15 21:30:53'),(3400,'2005-06-21 15:50:30',1697,298,'2005-06-25 18:07:30',1,'2006-02-15 21:30:53'),(3401,'2005-06-21 15:52:43',3423,577,'2005-06-30 21:09:43',2,'2006-02-15 21:30:53'),(3402,'2005-06-21 15:54:37',596,187,'2005-06-30 13:43:37',1,'2006-02-15 21:30:53'),(3403,'2005-06-21 15:55:06',1741,264,'2005-06-27 12:34:06',1,'2006-02-15 21:30:53'),(3404,'2005-06-21 15:57:52',2005,424,'2005-06-24 20:58:52',2,'2006-02-15 21:30:53'),(3405,'2005-06-21 15:58:25',2344,155,'2005-06-23 10:58:25',1,'2006-02-15 21:30:53'),(3406,'2005-06-21 16:00:18',2049,203,'2005-06-23 18:25:18',1,'2006-02-15 21:30:53'),(3407,'2005-06-21 16:14:02',3919,343,'2005-06-24 15:38:02',2,'2006-02-15 21:30:53'),(3408,'2005-06-21 16:15:11',3453,282,'2005-06-27 14:55:11',1,'2006-02-15 21:30:53'),(3409,'2005-06-21 16:17:38',3374,429,'2005-06-22 14:16:38',1,'2006-02-15 21:30:53'),(3410,'2005-06-21 16:20:47',1197,321,'2005-06-24 19:09:47',2,'2006-02-15 21:30:53'),(3411,'2005-06-21 16:31:27',4250,12,'2005-06-28 12:27:27',2,'2006-02-15 21:30:53'),(3412,'2005-06-21 16:44:31',3036,501,'2005-06-28 16:15:31',2,'2006-02-15 21:30:53'),(3413,'2005-06-21 16:57:07',666,322,'2005-06-30 12:03:07',2,'2006-02-15 21:30:53'),(3414,'2005-06-21 16:58:50',2929,226,'2005-06-24 17:26:50',1,'2006-02-15 21:30:53'),(3415,'2005-06-21 16:59:49',3540,444,'2005-06-27 17:19:49',1,'2006-02-15 21:30:53'),(3416,'2005-06-21 17:05:29',1215,76,'2005-06-23 17:58:29',2,'2006-02-15 21:30:53'),(3417,'2005-06-21 17:06:20',874,282,'2005-06-23 17:00:20',2,'2006-02-15 21:30:53'),(3418,'2005-06-21 17:06:38',4115,85,'2005-06-25 19:43:38',1,'2006-02-15 21:30:53'),(3419,'2005-06-21 17:18:01',4022,22,'2005-06-22 15:08:01',1,'2006-02-15 21:30:53'),(3420,'2005-06-21 17:22:36',2523,27,'2005-06-28 12:34:36',1,'2006-02-15 21:30:53'),(3421,'2005-06-21 17:22:58',3930,346,'2005-06-24 18:57:58',1,'2006-02-15 21:30:53'),(3422,'2005-06-21 17:24:40',2724,251,'2005-06-29 13:59:40',2,'2006-02-15 21:30:53'),(3423,'2005-06-21 17:38:02',3612,19,'2005-06-23 19:47:02',1,'2006-02-15 21:30:53'),(3424,'2005-06-21 17:42:51',1279,583,'2005-06-24 23:22:51',2,'2006-02-15 21:30:53'),(3425,'2005-06-21 18:07:07',4548,381,'2005-06-27 22:59:07',2,'2006-02-15 21:30:53'),(3426,'2005-06-21 18:12:10',3019,95,'2005-06-23 18:22:10',1,'2006-02-15 21:30:53'),(3427,'2005-06-21 18:31:09',560,561,'2005-06-22 14:18:09',2,'2006-02-15 21:30:53'),(3428,'2005-06-21 18:39:34',1959,40,'2005-06-22 18:23:34',2,'2006-02-15 21:30:53'),(3429,'2005-06-21 18:46:05',456,599,'2005-06-30 17:28:05',1,'2006-02-15 21:30:53'),(3430,'2005-06-21 18:46:08',1613,503,'2005-06-22 13:49:08',2,'2006-02-15 21:30:53'),(3431,'2005-06-21 18:46:48',133,516,'2005-06-26 23:08:48',1,'2006-02-15 21:30:53'),(3432,'2005-06-21 19:02:03',1814,216,'2005-06-25 00:57:03',2,'2006-02-15 21:30:53'),(3433,'2005-06-21 19:07:19',1077,228,'2005-06-29 18:01:19',2,'2006-02-15 21:30:53'),(3434,'2005-06-21 19:08:28',2295,141,'2005-06-23 14:25:28',1,'2006-02-15 21:30:53'),(3435,'2005-06-21 19:14:58',451,591,'2005-06-24 19:58:58',1,'2006-02-15 21:30:53'),(3436,'2005-06-21 19:16:09',2740,137,'2005-06-30 13:58:09',2,'2006-02-15 21:30:53'),(3437,'2005-06-21 19:20:17',1798,211,'2005-07-01 01:09:17',2,'2006-02-15 21:30:53'),(3438,'2005-06-21 19:31:40',1757,556,'2005-06-30 19:08:40',1,'2006-02-15 21:30:53'),(3439,'2005-06-21 19:36:15',1529,46,'2005-06-23 14:54:15',2,'2006-02-15 21:30:53'),(3440,'2005-06-21 19:58:18',853,491,'2005-06-27 22:08:18',1,'2006-02-15 21:30:53'),(3441,'2005-06-21 20:00:12',2863,326,'2005-06-24 00:24:12',2,'2006-02-15 21:30:53'),(3442,'2005-06-21 20:06:51',1896,255,'2005-06-25 17:35:51',2,'2006-02-15 21:30:53'),(3443,'2005-06-21 20:19:00',1639,377,'2005-06-30 15:39:00',1,'2006-02-15 21:30:53'),(3444,'2005-06-21 20:39:39',493,45,'2005-06-25 23:44:39',2,'2006-02-15 21:30:53'),(3445,'2005-06-21 20:40:28',2381,74,'2005-06-29 00:47:28',2,'2006-02-15 21:30:53'),(3446,'2005-06-21 20:45:51',1817,174,'2005-06-26 17:02:51',1,'2006-02-15 21:30:53'),(3447,'2005-06-21 20:53:31',1146,25,'2005-06-24 02:20:31',2,'2006-02-15 21:30:53'),(3448,'2005-06-21 20:59:20',592,476,'2005-06-24 15:40:20',1,'2006-02-15 21:30:53'),(3449,'2005-06-21 21:01:27',210,181,'2005-06-27 21:20:27',1,'2006-02-15 21:30:53'),(3450,'2005-06-21 21:01:57',2268,126,'2005-06-25 23:57:57',1,'2006-02-15 21:30:53'),(3451,'2005-06-21 21:10:39',3489,558,'2005-06-30 19:03:39',2,'2006-02-15 21:30:53'),(3452,'2005-06-21 21:11:27',2646,293,'2005-06-24 16:31:27',1,'2006-02-15 21:30:53'),(3453,'2005-06-21 21:12:11',842,278,'2005-06-23 17:39:11',2,'2006-02-15 21:30:53'),(3454,'2005-06-21 21:12:13',3009,524,'2005-06-25 23:23:13',1,'2006-02-15 21:30:53'),(3455,'2005-06-21 21:17:51',4403,340,'2005-06-23 17:22:51',1,'2006-02-15 21:30:53'),(3456,'2005-06-21 21:19:47',1119,150,'2005-06-28 18:18:47',2,'2006-02-15 21:30:53'),(3457,'2005-06-21 21:42:33',883,312,'2005-06-30 19:54:33',2,'2006-02-15 21:30:53'),(3458,'2005-06-21 21:42:49',2136,338,'2005-06-29 01:26:49',1,'2006-02-15 21:30:53'),(3459,'2005-06-21 21:45:47',3080,97,'2005-06-25 00:46:47',1,'2006-02-15 21:30:53'),(3460,'2005-06-21 21:46:56',1765,236,'2005-06-29 20:08:56',1,'2006-02-15 21:30:53'),(3461,'2005-06-21 21:49:18',1715,23,'2005-06-26 19:51:18',1,'2006-02-15 21:30:53'),(3462,'2005-06-21 21:52:52',547,568,'2005-06-28 21:41:52',1,'2006-02-15 21:30:53'),(3463,'2005-06-21 22:00:00',3436,96,'2005-06-22 19:22:00',2,'2006-02-15 21:30:53'),(3464,'2005-06-21 22:08:58',2698,251,'2005-06-26 16:23:58',2,'2006-02-15 21:30:53'),(3465,'2005-06-21 22:10:01',1488,510,'2005-06-30 21:35:01',1,'2006-02-15 21:30:53'),(3466,'2005-06-21 22:13:33',371,226,'2005-06-25 21:01:33',2,'2006-02-15 21:30:53'),(3467,'2005-06-21 22:19:25',729,543,'2005-06-27 00:03:25',2,'2006-02-15 21:30:53'),(3468,'2005-06-21 22:43:45',2899,100,'2005-06-30 01:49:45',1,'2006-02-15 21:30:53'),(3469,'2005-06-21 22:48:59',4087,181,'2005-06-28 19:32:59',1,'2006-02-15 21:30:53'),(3470,'2005-07-05 22:49:24',883,565,'2005-07-07 19:36:24',1,'2006-02-15 21:30:53'),(3471,'2005-07-05 22:51:44',1724,242,'2005-07-13 01:38:44',2,'2006-02-15 21:30:53'),(3472,'2005-07-05 22:56:33',841,37,'2005-07-13 17:18:33',2,'2006-02-15 21:30:53'),(3473,'2005-07-05 22:57:34',2735,60,'2005-07-12 23:53:34',1,'2006-02-15 21:30:53'),(3474,'2005-07-05 22:59:53',97,594,'2005-07-08 20:32:53',1,'2006-02-15 21:30:53'),(3475,'2005-07-05 23:01:21',2189,8,'2005-07-13 23:07:21',2,'2006-02-15 21:30:53'),(3476,'2005-07-05 23:02:37',3011,490,'2005-07-10 22:17:37',2,'2006-02-15 21:30:53'),(3477,'2005-07-05 23:05:17',4289,476,'2005-07-15 02:20:17',2,'2006-02-15 21:30:53'),(3478,'2005-07-05 23:05:44',2528,322,'2005-07-07 00:14:44',2,'2006-02-15 21:30:53'),(3479,'2005-07-05 23:08:53',2277,298,'2005-07-11 21:42:53',1,'2006-02-15 21:30:53'),(3480,'2005-07-05 23:11:43',1488,382,'2005-07-12 02:01:43',2,'2006-02-15 21:30:53'),(3481,'2005-07-05 23:13:07',3575,138,'2005-07-07 20:36:07',2,'2006-02-15 21:30:53'),(3482,'2005-07-05 23:13:22',1291,520,'2005-07-12 19:02:22',2,'2006-02-15 21:30:53'),(3483,'2005-07-05 23:13:51',79,536,'2005-07-13 18:31:51',1,'2006-02-15 21:30:53'),(3484,'2005-07-05 23:23:11',1934,114,'2005-07-11 00:27:11',2,'2006-02-15 21:30:53'),(3485,'2005-07-05 23:25:54',117,111,'2005-07-09 17:38:54',1,'2006-02-15 21:30:53'),(3486,'2005-07-05 23:29:55',4067,296,'2005-07-13 19:54:55',1,'2006-02-15 21:30:53'),(3487,'2005-07-05 23:30:36',1575,586,'2005-07-11 04:00:36',1,'2006-02-15 21:30:53'),(3488,'2005-07-05 23:32:49',898,349,'2005-07-15 02:01:49',2,'2006-02-15 21:30:53'),(3489,'2005-07-05 23:33:40',2936,397,'2005-07-15 02:15:40',2,'2006-02-15 21:30:53'),(3490,'2005-07-05 23:37:13',3041,369,'2005-07-12 22:07:13',1,'2006-02-15 21:30:53'),(3491,'2005-07-05 23:41:08',1835,421,'2005-07-13 21:53:08',1,'2006-02-15 21:30:53'),(3492,'2005-07-05 23:44:37',980,142,'2005-07-14 03:54:37',1,'2006-02-15 21:30:53'),(3493,'2005-07-05 23:46:19',473,169,'2005-07-15 02:31:19',1,'2006-02-15 21:30:53'),(3494,'2005-07-05 23:47:30',3149,348,'2005-07-11 18:10:30',1,'2006-02-15 21:30:53'),(3495,'2005-07-05 23:50:04',2306,553,'2005-07-10 01:06:04',1,'2006-02-15 21:30:53'),(3496,'2005-07-05 23:59:15',2430,295,'2005-07-09 19:39:15',2,'2006-02-15 21:30:53'),(3497,'2005-07-06 00:00:03',1970,299,'2005-07-09 01:27:03',1,'2006-02-15 21:30:53'),(3498,'2005-07-06 00:02:08',1869,444,'2005-07-10 00:19:08',1,'2006-02-15 21:30:53'),(3499,'2005-07-06 00:04:20',1850,520,'2005-07-14 21:12:20',2,'2006-02-15 21:30:53'),(3500,'2005-07-06 00:11:13',2447,32,'2005-07-13 19:01:13',2,'2006-02-15 21:30:53'),(3501,'2005-07-06 00:11:28',2219,270,'2005-07-10 20:32:28',2,'2006-02-15 21:30:53'),(3502,'2005-07-06 00:15:06',1026,126,'2005-07-13 01:35:06',1,'2006-02-15 21:30:53'),(3503,'2005-07-06 00:17:24',2944,449,'2005-07-08 03:47:24',1,'2006-02-15 21:30:53'),(3504,'2005-07-06 00:18:29',268,209,'2005-07-10 00:24:29',2,'2006-02-15 21:30:53'),(3505,'2005-07-06 00:19:32',2630,331,'2005-07-14 20:14:32',2,'2006-02-15 21:30:53'),(3506,'2005-07-06 00:22:29',19,459,'2005-07-07 22:15:29',1,'2006-02-15 21:30:53'),(3507,'2005-07-06 00:23:43',166,480,'2005-07-15 04:19:43',1,'2006-02-15 21:30:53'),(3508,'2005-07-06 00:24:25',2381,34,'2005-07-10 05:38:25',2,'2006-02-15 21:30:53'),(3509,'2005-07-06 00:24:57',4394,182,'2005-07-09 18:48:57',2,'2006-02-15 21:30:53'),(3510,'2005-07-06 00:27:41',2250,443,'2005-07-14 23:20:41',2,'2006-02-15 21:30:53'),(3511,'2005-07-06 00:42:01',2128,494,'2005-07-09 23:08:01',1,'2006-02-15 21:30:53'),(3512,'2005-07-06 00:43:06',371,291,'2005-07-12 06:18:06',2,'2006-02-15 21:30:53'),(3513,'2005-07-06 00:45:57',4225,223,'2005-07-11 19:04:57',2,'2006-02-15 21:30:53'),(3514,'2005-07-06 00:46:54',4546,536,'2005-07-09 05:47:54',1,'2006-02-15 21:30:53'),(3515,'2005-07-06 00:48:55',3220,131,'2005-07-09 00:15:55',1,'2006-02-15 21:30:53'),(3516,'2005-07-06 00:50:30',385,338,'2005-07-09 19:12:30',2,'2006-02-15 21:30:53'),(3517,'2005-07-06 00:52:35',2762,314,'2005-07-08 20:10:35',2,'2006-02-15 21:30:53'),(3518,'2005-07-06 00:56:03',2502,167,'2005-07-14 02:27:03',1,'2006-02-15 21:30:53'),(3519,'2005-07-06 00:57:29',4314,320,'2005-07-10 21:12:29',2,'2006-02-15 21:30:53'),(3520,'2005-07-06 00:58:27',2872,102,'2005-07-14 05:56:27',1,'2006-02-15 21:30:53'),(3521,'2005-07-06 01:00:11',1440,262,'2005-07-11 19:15:11',2,'2006-02-15 21:30:53'),(3522,'2005-07-06 01:00:21',4522,469,'2005-07-11 01:18:21',1,'2006-02-15 21:30:53'),(3523,'2005-07-06 01:01:38',2171,549,'2005-07-10 20:24:38',2,'2006-02-15 21:30:53'),(3524,'2005-07-06 01:01:51',1626,88,'2005-07-11 19:52:51',2,'2006-02-15 21:30:53'),(3525,'2005-07-06 01:02:39',208,51,'2005-07-14 02:27:39',1,'2006-02-15 21:30:53'),(3526,'2005-07-06 01:03:29',3871,469,'2005-07-15 01:22:29',2,'2006-02-15 21:30:53'),(3527,'2005-07-06 01:11:08',4537,389,'2005-07-08 01:21:08',1,'2006-02-15 21:30:53'),(3528,'2005-07-06 01:13:27',1954,201,'2005-07-06 23:45:27',2,'2006-02-15 21:30:53'),(3529,'2005-07-06 01:15:26',4316,350,'2005-07-07 04:28:26',1,'2006-02-15 21:30:53'),(3530,'2005-07-06 01:22:45',4542,168,'2005-07-10 03:23:45',1,'2006-02-15 21:30:53'),(3531,'2005-07-06 01:24:08',1890,165,'2005-07-11 22:00:08',2,'2006-02-15 21:30:53'),(3532,'2005-07-06 01:24:38',2635,274,'2005-07-11 06:42:38',2,'2006-02-15 21:30:53'),(3533,'2005-07-06 01:26:44',2028,206,'2005-07-14 21:37:44',1,'2006-02-15 21:30:53'),(3534,'2005-07-06 01:32:27',2055,283,'2005-07-08 23:14:27',1,'2006-02-15 21:30:53'),(3535,'2005-07-06 01:32:46',4214,65,'2005-07-11 03:15:46',1,'2006-02-15 21:30:53'),(3536,'2005-07-06 01:36:11',2328,339,'2005-07-12 20:00:11',2,'2006-02-15 21:30:53'),(3537,'2005-07-06 01:36:53',4220,479,'2005-07-13 07:01:53',2,'2006-02-15 21:30:53'),(3538,'2005-07-06 01:37:07',4361,228,'2005-07-11 06:02:07',2,'2006-02-15 21:30:53'),(3539,'2005-07-06 01:39:08',4081,444,'2005-07-07 05:38:08',1,'2006-02-15 21:30:53'),(3540,'2005-07-06 01:47:20',1295,97,'2005-07-08 23:48:20',2,'2006-02-15 21:30:53'),(3541,'2005-07-06 01:50:11',1204,501,'2005-07-12 03:24:11',1,'2006-02-15 21:30:53'),(3542,'2005-07-06 01:51:42',4391,593,'2005-07-11 03:29:42',1,'2006-02-15 21:30:53'),(3543,'2005-07-06 02:01:08',3997,394,'2005-07-07 03:14:08',1,'2006-02-15 21:30:53'),(3544,'2005-07-06 02:06:32',3098,115,'2005-07-09 04:35:32',2,'2006-02-15 21:30:53'),(3545,'2005-07-06 02:16:17',3924,442,'2005-07-11 00:54:17',1,'2006-02-15 21:30:53'),(3546,'2005-07-06 02:17:54',959,594,'2005-07-07 00:19:54',1,'2006-02-15 21:30:53'),(3547,'2005-07-06 02:18:06',2730,239,'2005-07-08 05:24:06',1,'2006-02-15 21:30:53'),(3548,'2005-07-06 02:23:39',4498,16,'2005-07-08 07:53:39',2,'2006-02-15 21:30:53'),(3549,'2005-07-06 02:24:55',3921,19,'2005-07-06 21:40:55',2,'2006-02-15 21:30:53'),(3550,'2005-07-06 02:29:21',2417,15,'2005-07-13 05:26:21',2,'2006-02-15 21:30:53'),(3551,'2005-07-06 02:33:48',3602,111,'2005-07-13 04:38:48',1,'2006-02-15 21:30:53'),(3552,'2005-07-06 02:34:09',1099,239,'2005-07-12 05:31:09',1,'2006-02-15 21:30:53'),(3553,'2005-07-06 02:35:41',4510,422,'2005-07-08 06:38:41',2,'2006-02-15 21:30:53'),(3554,'2005-07-06 02:37:10',793,538,'2005-07-09 01:58:10',1,'2006-02-15 21:30:53'),(3555,'2005-07-06 02:45:35',869,537,'2005-07-10 07:17:35',1,'2006-02-15 21:30:53'),(3556,'2005-07-06 02:46:13',3142,273,'2005-07-06 22:08:13',1,'2006-02-15 21:30:53'),(3557,'2005-07-06 02:48:39',3832,292,'2005-07-08 22:52:39',2,'2006-02-15 21:30:53'),(3558,'2005-07-06 02:49:06',1742,575,'2005-07-15 01:38:06',2,'2006-02-15 21:30:53'),(3559,'2005-07-06 02:49:42',2211,483,'2005-07-12 04:44:42',1,'2006-02-15 21:30:53'),(3560,'2005-07-06 02:51:37',888,592,'2005-07-10 01:35:37',2,'2006-02-15 21:30:53'),(3561,'2005-07-06 02:54:33',213,231,'2005-07-14 07:44:33',2,'2006-02-15 21:30:53'),(3562,'2005-07-06 02:54:36',1660,587,'2005-07-11 05:48:36',1,'2006-02-15 21:30:53'),(3563,'2005-07-06 02:57:01',4261,210,'2005-07-14 02:25:01',2,'2006-02-15 21:30:53'),(3564,'2005-07-06 03:02:13',1096,402,'2005-07-13 01:41:13',2,'2006-02-15 21:30:53'),(3565,'2005-07-06 03:02:58',599,97,'2005-07-13 21:31:58',2,'2006-02-15 21:30:53'),(3566,'2005-07-06 03:08:51',2774,392,'2005-07-12 05:04:51',1,'2006-02-15 21:30:53'),(3567,'2005-07-06 03:09:36',27,355,'2005-07-12 02:15:36',1,'2006-02-15 21:30:53'),(3568,'2005-07-06 03:11:57',2084,283,'2005-07-15 03:14:57',1,'2006-02-15 21:30:53'),(3569,'2005-07-06 03:17:23',1929,496,'2005-07-14 03:58:23',1,'2006-02-15 21:30:53'),(3570,'2005-07-06 03:23:43',1300,450,'2005-07-14 07:28:43',2,'2006-02-15 21:30:53'),(3571,'2005-07-06 03:32:31',4166,580,'2005-07-11 06:15:31',1,'2006-02-15 21:30:53'),(3572,'2005-07-06 03:33:23',1915,284,'2005-07-08 07:54:23',1,'2006-02-15 21:30:53'),(3573,'2005-07-06 03:33:48',146,66,'2005-07-07 22:39:48',1,'2006-02-15 21:30:53'),(3574,'2005-07-06 03:36:01',2799,225,'2005-07-10 01:29:01',2,'2006-02-15 21:30:53'),(3575,'2005-07-06 03:36:19',3234,49,'2005-07-08 06:21:19',1,'2006-02-15 21:30:53'),(3576,'2005-07-06 03:40:01',324,227,'2005-07-15 07:22:01',1,'2006-02-15 21:30:53'),(3577,'2005-07-06 03:40:36',4390,152,'2005-07-10 05:54:36',2,'2006-02-15 21:30:53'),(3578,'2005-07-06 03:47:05',2954,263,'2005-07-08 02:26:05',1,'2006-02-15 21:30:53'),(3579,'2005-07-06 03:47:47',3309,485,'2005-07-08 02:16:47',2,'2006-02-15 21:30:53'),(3580,'2005-07-06 03:48:44',3837,200,'2005-07-13 01:15:44',2,'2006-02-15 21:30:53'),(3581,'2005-07-06 03:57:35',4520,235,'2005-07-07 08:07:35',2,'2006-02-15 21:30:53'),(3582,'2005-07-06 04:10:35',1866,297,'2005-07-11 01:29:35',2,'2006-02-15 21:30:53'),(3583,'2005-07-06 04:10:43',204,574,'2005-07-14 22:17:43',2,'2006-02-15 21:30:53'),(3584,'2005-07-06 04:16:43',367,207,'2005-07-13 07:08:43',1,'2006-02-15 21:30:53'),(3585,'2005-07-06 04:22:36',2726,266,'2005-07-09 06:16:36',2,'2006-02-15 21:30:53'),(3586,'2005-07-06 04:24:42',616,493,'2005-07-09 02:37:42',1,'2006-02-15 21:30:53'),(3587,'2005-07-06 04:27:52',462,110,'2005-07-13 08:19:52',1,'2006-02-15 21:30:53'),(3588,'2005-07-06 04:29:13',3154,289,'2005-07-07 23:49:13',1,'2006-02-15 21:30:53'),(3589,'2005-07-06 04:30:18',3740,137,'2005-07-10 09:18:18',1,'2006-02-15 21:30:53'),(3590,'2005-07-06 04:35:12',1510,283,'2005-07-10 05:14:12',2,'2006-02-15 21:30:53'),(3591,'2005-07-06 04:37:10',1241,53,'2005-07-09 23:32:10',1,'2006-02-15 21:30:53'),(3592,'2005-07-06 04:38:50',1272,286,'2005-07-15 06:36:50',2,'2006-02-15 21:30:53'),(3593,'2005-07-06 04:39:52',619,78,'2005-07-11 23:20:52',2,'2006-02-15 21:30:53'),(3594,'2005-07-06 04:42:47',4566,522,'2005-07-10 00:49:47',1,'2006-02-15 21:30:53'),(3595,'2005-07-06 04:59:49',1431,92,'2005-07-15 06:26:49',2,'2006-02-15 21:30:53'),(3596,'2005-07-06 05:03:11',594,419,'2005-07-07 05:30:11',2,'2006-02-15 21:30:53'),(3597,'2005-07-06 05:03:59',4080,35,'2005-07-13 06:49:59',2,'2006-02-15 21:30:53'),(3598,'2005-07-06 05:11:04',1317,68,'2005-07-09 02:03:04',2,'2006-02-15 21:30:53'),(3599,'2005-07-06 05:16:36',3262,577,'2005-07-13 07:14:36',2,'2006-02-15 21:30:53'),(3600,'2005-07-06 05:19:42',2748,511,'2005-07-11 00:34:42',2,'2006-02-15 21:30:53'),(3601,'2005-07-06 05:20:25',2806,205,'2005-07-15 03:13:25',1,'2006-02-15 21:30:53'),(3602,'2005-07-06 05:23:10',2192,100,'2005-07-15 03:22:10',2,'2006-02-15 21:30:53'),(3603,'2005-07-06 05:25:03',2442,330,'2005-07-12 08:14:03',1,'2006-02-15 21:30:53'),(3604,'2005-07-06 05:25:22',1380,242,'2005-07-07 23:52:22',1,'2006-02-15 21:30:53'),(3605,'2005-07-06 05:27:15',384,347,'2005-07-10 00:05:15',2,'2006-02-15 21:30:53'),(3606,'2005-07-06 05:28:02',1737,166,'2005-07-10 04:51:02',1,'2006-02-15 21:30:53'),(3607,'2005-07-06 05:30:09',542,335,'2005-07-08 01:36:09',2,'2006-02-15 21:30:53'),(3608,'2005-07-06 05:35:39',3095,368,'2005-07-10 07:46:39',2,'2006-02-15 21:30:53'),(3609,'2005-07-06 05:36:22',1064,373,'2005-07-10 05:55:22',1,'2006-02-15 21:30:53'),(3610,'2005-07-06 05:36:59',1509,348,'2005-07-13 07:07:59',1,'2006-02-15 21:30:53'),(3611,'2005-07-06 05:37:18',4502,86,'2005-07-10 05:14:18',1,'2006-02-15 21:30:53'),(3612,'2005-07-06 05:37:26',2465,402,'2005-07-14 01:51:26',1,'2006-02-15 21:30:53'),(3613,'2005-07-06 05:45:53',3776,331,'2005-07-07 10:02:53',1,'2006-02-15 21:30:53'),(3614,'2005-07-06 05:46:05',853,502,'2005-07-11 01:24:05',2,'2006-02-15 21:30:53'),(3615,'2005-07-06 05:47:47',711,49,'2005-07-11 05:01:47',1,'2006-02-15 21:30:53'),(3616,'2005-07-06 05:52:13',557,571,'2005-07-10 10:24:13',1,'2006-02-15 21:30:53'),(3617,'2005-07-06 05:58:06',1337,125,'2005-07-13 02:10:06',1,'2006-02-15 21:30:53'),(3618,'2005-07-06 05:58:45',330,264,'2005-07-15 09:13:45',2,'2006-02-15 21:30:53'),(3619,'2005-07-06 05:59:44',3350,526,'2005-07-11 08:58:44',2,'2006-02-15 21:30:53'),(3620,'2005-07-06 06:01:50',1661,88,'2005-07-08 05:04:50',1,'2006-02-15 21:30:53'),(3621,'2005-07-06 06:03:55',3132,171,'2005-07-11 09:25:55',2,'2006-02-15 21:30:53'),(3622,'2005-07-06 06:05:04',3489,454,'2005-07-12 03:14:04',2,'2006-02-15 21:30:53'),(3623,'2005-07-06 06:05:23',430,80,'2005-07-07 05:59:23',1,'2006-02-15 21:30:53'),(3624,'2005-07-06 06:06:27',1778,115,'2005-07-13 08:30:27',2,'2006-02-15 21:30:53'),(3625,'2005-07-06 06:12:52',1133,175,'2005-07-12 07:37:52',1,'2006-02-15 21:30:53'),(3626,'2005-07-06 06:15:35',1599,337,'2005-07-10 10:18:35',2,'2006-02-15 21:30:53'),(3627,'2005-07-06 06:19:25',1087,322,'2005-07-11 05:53:25',1,'2006-02-15 21:30:53'),(3628,'2005-07-06 06:19:43',3509,588,'2005-07-07 02:23:43',1,'2006-02-15 21:30:53'),(3629,'2005-07-06 06:23:22',4019,441,'2005-07-08 09:32:22',2,'2006-02-15 21:30:53'),(3630,'2005-07-06 06:27:15',2448,102,'2005-07-12 10:36:15',1,'2006-02-15 21:30:53'),(3631,'2005-07-06 06:36:53',4068,47,'2005-07-07 10:32:53',1,'2006-02-15 21:30:53'),(3632,'2005-07-06 06:38:21',2583,366,'2005-07-11 03:19:21',1,'2006-02-15 21:30:53'),(3633,'2005-07-06 06:43:26',2978,95,'2005-07-10 04:54:26',1,'2006-02-15 21:30:53'),(3634,'2005-07-06 06:51:14',3688,245,'2005-07-10 02:30:14',1,'2006-02-15 21:30:53'),(3635,'2005-07-06 06:55:36',421,250,'2005-07-09 07:57:36',2,'2006-02-15 21:30:53'),(3636,'2005-07-06 07:03:52',3379,591,'2005-07-08 03:14:52',2,'2006-02-15 21:30:53'),(3637,'2005-07-06 07:06:31',3823,380,'2005-07-10 02:11:31',2,'2006-02-15 21:30:53'),(3638,'2005-07-06 07:08:17',190,452,'2005-07-13 12:30:17',1,'2006-02-15 21:30:53'),(3639,'2005-07-06 07:09:17',2812,7,'2005-07-15 05:12:17',2,'2006-02-15 21:30:53'),(3640,'2005-07-06 07:12:26',3432,271,'2005-07-10 04:54:26',2,'2006-02-15 21:30:53'),(3641,'2005-07-06 07:17:09',3834,79,'2005-07-11 07:25:09',1,'2006-02-15 21:30:53'),(3642,'2005-07-06 07:18:20',4204,166,'2005-07-09 01:37:20',1,'2006-02-15 21:30:53'),(3643,'2005-07-06 07:20:08',845,176,'2005-07-11 07:01:08',1,'2006-02-15 21:30:53'),(3644,'2005-07-06 07:20:11',4309,403,'2005-07-11 10:26:11',2,'2006-02-15 21:30:53'),(3645,'2005-07-06 07:22:09',3390,236,'2005-07-10 11:45:09',1,'2006-02-15 21:30:53'),(3646,'2005-07-06 07:28:59',3591,322,'2005-07-11 05:19:59',1,'2006-02-15 21:30:53'),(3647,'2005-07-06 07:29:17',3762,145,'2005-07-13 08:32:17',1,'2006-02-15 21:30:53'),(3648,'2005-07-06 07:30:41',2810,598,'2005-07-10 06:00:41',2,'2006-02-15 21:30:53'),(3649,'2005-07-06 07:32:42',3564,24,'2005-07-12 09:37:42',1,'2006-02-15 21:30:53'),(3650,'2005-07-06 07:34:15',3606,482,'2005-07-08 01:50:15',2,'2006-02-15 21:30:53'),(3651,'2005-07-06 07:40:31',3323,170,'2005-07-08 03:39:31',2,'2006-02-15 21:30:53'),(3652,'2005-07-06 07:44:30',1231,518,'2005-07-08 04:41:30',1,'2006-02-15 21:30:53'),(3653,'2005-07-06 07:45:13',2513,148,'2005-07-10 11:51:13',2,'2006-02-15 21:30:53'),(3654,'2005-07-06 07:45:31',1621,528,'2005-07-12 09:59:31',2,'2006-02-15 21:30:53'),(3655,'2005-07-06 07:52:54',1540,493,'2005-07-15 10:49:54',2,'2006-02-15 21:30:53'),(3656,'2005-07-06 07:55:22',4544,314,'2005-07-13 10:36:22',2,'2006-02-15 21:30:53'),(3657,'2005-07-06 07:55:30',4134,113,'2005-07-11 07:18:30',1,'2006-02-15 21:30:53'),(3658,'2005-07-06 08:01:08',3453,253,'2005-07-15 06:36:08',1,'2006-02-15 21:30:53'),(3659,'2005-07-06 08:03:14',2271,330,'2005-07-12 09:50:14',1,'2006-02-15 21:30:53'),(3660,'2005-07-06 08:07:29',1129,507,'2005-07-14 08:46:29',1,'2006-02-15 21:30:53'),(3661,'2005-07-06 08:10:02',2600,442,'2005-07-10 10:17:02',1,'2006-02-15 21:30:53'),(3662,'2005-07-06 08:11:48',3827,334,'2005-07-09 12:25:48',2,'2006-02-15 21:30:53'),(3663,'2005-07-06 08:15:47',2646,566,'2005-07-07 08:57:47',1,'2006-02-15 21:30:53'),(3664,'2005-07-06 08:15:57',3366,528,'2005-07-08 06:11:57',1,'2006-02-15 21:30:53'),(3665,'2005-07-06 08:23:08',922,102,'2005-07-13 13:38:08',2,'2006-02-15 21:30:53'),(3666,'2005-07-06 08:27:43',4212,347,'2005-07-09 07:37:43',2,'2006-02-15 21:30:53'),(3667,'2005-07-06 08:36:34',447,373,'2005-07-15 04:25:34',2,'2006-02-15 21:30:53'),(3668,'2005-07-06 08:36:48',269,514,'2005-07-10 11:31:48',1,'2006-02-15 21:30:53'),(3669,'2005-07-06 08:38:29',1299,530,'2005-07-10 05:28:29',1,'2006-02-15 21:30:53'),(3670,'2005-07-06 08:56:43',4271,268,'2005-07-11 09:11:43',1,'2006-02-15 21:30:53'),(3671,'2005-07-06 09:01:29',2821,179,'2005-07-15 08:08:29',1,'2006-02-15 21:30:53'),(3672,'2005-07-06 09:01:56',3883,283,'2005-07-11 14:18:56',1,'2006-02-15 21:30:53'),(3673,'2005-07-06 09:02:09',1837,88,'2005-07-15 06:45:09',2,'2006-02-15 21:30:53'),(3674,'2005-07-06 09:03:13',3686,559,'2005-07-13 08:43:13',1,'2006-02-15 21:30:53'),(3675,'2005-07-06 09:09:19',3662,282,'2005-07-12 08:51:19',1,'2006-02-15 21:30:53'),(3676,'2005-07-06 09:10:37',1967,137,'2005-07-14 08:24:37',1,'2006-02-15 21:30:53'),(3677,'2005-07-06 09:11:58',600,5,'2005-07-08 10:50:58',2,'2006-02-15 21:30:53'),(3678,'2005-07-06 09:15:15',3861,364,'2005-07-10 05:01:15',1,'2006-02-15 21:30:53'),(3679,'2005-07-06 09:15:57',2186,547,'2005-07-08 03:20:57',1,'2006-02-15 21:30:53'),(3680,'2005-07-06 09:16:10',2427,82,'2005-07-08 07:52:10',2,'2006-02-15 21:30:53'),(3681,'2005-07-06 09:19:30',3325,294,'2005-07-11 09:40:30',1,'2006-02-15 21:30:53'),(3682,'2005-07-06 09:22:48',2597,98,'2005-07-14 11:17:48',2,'2006-02-15 21:30:53'),(3683,'2005-07-06 09:25:56',3020,43,'2005-07-14 12:10:56',1,'2006-02-15 21:30:53'),(3684,'2005-07-06 09:29:22',3261,395,'2005-07-12 08:19:22',1,'2006-02-15 21:30:53'),(3685,'2005-07-06 09:30:45',2015,58,'2005-07-11 15:16:45',2,'2006-02-15 21:30:53'),(3686,'2005-07-06 09:37:50',376,548,'2005-07-09 10:15:50',2,'2006-02-15 21:30:53'),(3687,'2005-07-06 09:38:33',2040,207,'2005-07-14 07:50:33',1,'2006-02-15 21:30:53'),(3688,'2005-07-06 09:41:53',1102,380,'2005-07-14 10:30:53',2,'2006-02-15 21:30:53'),(3689,'2005-07-06 09:43:01',3168,129,'2005-07-11 09:57:01',1,'2006-02-15 21:30:53'),(3690,'2005-07-06 09:46:03',4405,435,'2005-07-07 12:12:03',1,'2006-02-15 21:30:53'),(3691,'2005-07-06 09:46:12',1937,478,'2005-07-07 14:08:12',1,'2006-02-15 21:30:53'),(3692,'2005-07-06 09:54:12',1237,286,'2005-07-11 09:42:12',2,'2006-02-15 21:30:53'),(3693,'2005-07-06 09:56:09',2989,545,'2005-07-15 06:50:09',2,'2006-02-15 21:30:53'),(3694,'2005-07-06 10:01:23',3848,419,'2005-07-08 11:44:23',2,'2006-02-15 21:30:53'),(3695,'2005-07-06 10:02:08',2823,441,'2005-07-09 15:43:08',1,'2006-02-15 21:30:53'),(3696,'2005-07-06 10:04:55',3244,497,'2005-07-11 15:58:55',2,'2006-02-15 21:30:53'),(3697,'2005-07-06 10:07:22',1223,182,'2005-07-13 14:04:22',2,'2006-02-15 21:30:53'),(3698,'2005-07-06 10:09:20',1263,461,'2005-07-08 15:49:20',1,'2006-02-15 21:30:53'),(3699,'2005-07-06 10:11:25',418,262,'2005-07-14 05:18:25',1,'2006-02-15 21:30:53'),(3700,'2005-07-06 10:12:19',343,72,'2005-07-07 14:21:19',2,'2006-02-15 21:30:53'),(3701,'2005-07-06 10:12:45',3679,31,'2005-07-09 08:52:45',1,'2006-02-15 21:30:53'),(3702,'2005-07-06 10:13:56',2204,428,'2005-07-10 08:12:56',1,'2006-02-15 21:30:53'),(3703,'2005-07-06 10:15:26',4276,421,'2005-07-13 13:00:26',1,'2006-02-15 21:30:53'),(3704,'2005-07-06 10:16:45',2687,323,'2005-07-13 12:44:45',2,'2006-02-15 21:30:53'),(3705,'2005-07-06 10:17:59',65,223,'2005-07-10 15:31:59',1,'2006-02-15 21:30:53'),(3706,'2005-07-06 10:18:01',681,132,'2005-07-09 09:07:01',2,'2006-02-15 21:30:53'),(3707,'2005-07-06 10:21:49',1080,14,'2005-07-12 05:14:49',2,'2006-02-15 21:30:53'),(3708,'2005-07-06 10:23:27',2105,201,'2005-07-14 09:26:27',1,'2006-02-15 21:30:53'),(3709,'2005-07-06 10:26:56',4033,187,'2005-07-15 13:51:56',2,'2006-02-15 21:30:53'),(3710,'2005-07-06 10:28:53',2596,228,'2005-07-15 06:17:53',2,'2006-02-15 21:30:53'),(3711,'2005-07-06 10:46:15',1914,75,'2005-07-07 09:25:15',2,'2006-02-15 21:30:53'),(3712,'2005-07-06 10:47:35',3741,504,'2005-07-15 09:39:35',1,'2006-02-15 21:30:53'),(3713,'2005-07-06 10:49:30',1823,504,'2005-07-13 10:44:30',1,'2006-02-15 21:30:53'),(3714,'2005-07-06 10:51:28',1985,276,'2005-07-09 13:57:28',2,'2006-02-15 21:30:53'),(3715,'2005-07-06 10:51:48',4456,228,'2005-07-11 06:08:48',1,'2006-02-15 21:30:53'),(3716,'2005-07-06 10:52:32',3271,92,'2005-07-14 08:45:32',2,'2006-02-15 21:30:53'),(3717,'2005-07-06 10:53:34',1677,173,'2005-07-07 13:43:34',2,'2006-02-15 21:30:53'),(3718,'2005-07-06 10:57:56',2624,56,'2005-07-12 12:54:56',1,'2006-02-15 21:30:53'),(3719,'2005-07-06 11:05:55',3573,376,'2005-07-11 08:10:55',2,'2006-02-15 21:30:53'),(3720,'2005-07-06 11:06:57',2958,96,'2005-07-09 14:16:57',1,'2006-02-15 21:30:53'),(3721,'2005-07-06 11:10:09',2654,226,'2005-07-11 07:45:09',2,'2006-02-15 21:30:53'),(3722,'2005-07-06 11:10:27',604,83,'2005-07-13 12:56:27',2,'2006-02-15 21:30:53'),(3723,'2005-07-06 11:12:02',4554,501,'2005-07-14 16:45:02',2,'2006-02-15 21:30:53'),(3724,'2005-07-06 11:12:48',3622,468,'2005-07-14 14:41:48',1,'2006-02-15 21:30:53'),(3725,'2005-07-06 11:15:04',2789,126,'2005-07-09 06:39:04',1,'2006-02-15 21:30:53'),(3726,'2005-07-06 11:15:49',742,363,'2005-07-11 05:54:49',2,'2006-02-15 21:30:53'),(3727,'2005-07-06 11:16:43',2886,57,'2005-07-07 15:39:43',1,'2006-02-15 21:30:53'),(3728,'2005-07-06 11:29:00',1798,298,'2005-07-11 06:28:00',1,'2006-02-15 21:30:53'),(3729,'2005-07-06 11:30:29',3156,90,'2005-07-12 07:18:29',1,'2006-02-15 21:30:53'),(3730,'2005-07-06 11:31:24',1665,355,'2005-07-15 06:53:24',1,'2006-02-15 21:30:53'),(3731,'2005-07-06 11:33:36',4133,558,'2005-07-15 12:23:36',2,'2006-02-15 21:30:53'),(3732,'2005-07-06 11:33:37',106,318,'2005-07-08 08:31:37',1,'2006-02-15 21:30:53'),(3733,'2005-07-06 11:33:55',3242,586,'2005-07-09 10:08:55',2,'2006-02-15 21:30:53'),(3734,'2005-07-06 11:40:27',4569,37,'2005-07-14 12:08:27',1,'2006-02-15 21:30:53'),(3735,'2005-07-06 11:42:04',2262,534,'2005-07-12 14:33:04',2,'2006-02-15 21:30:53'),(3736,'2005-07-06 11:43:44',1515,23,'2005-07-13 07:55:44',2,'2006-02-15 21:30:53'),(3737,'2005-07-06 11:45:53',123,403,'2005-07-13 15:27:53',1,'2006-02-15 21:30:53'),(3738,'2005-07-06 11:50:57',578,546,'2005-07-09 08:07:57',1,'2006-02-15 21:30:53'),(3739,'2005-07-06 11:54:18',4333,157,'2005-07-09 10:48:18',1,'2006-02-15 21:30:53'),(3740,'2005-07-06 11:55:35',1829,277,'2005-07-14 09:44:35',2,'2006-02-15 21:30:53'),(3741,'2005-07-06 12:00:18',1449,584,'2005-07-12 09:02:18',2,'2006-02-15 21:30:53'),(3742,'2005-07-06 12:01:38',2873,96,'2005-07-15 10:46:38',1,'2006-02-15 21:30:53'),(3743,'2005-07-06 12:03:54',1012,456,'2005-07-13 10:56:54',2,'2006-02-15 21:30:53'),(3744,'2005-07-06 12:10:02',3343,510,'2005-07-08 11:49:02',2,'2006-02-15 21:30:53'),(3745,'2005-07-06 12:10:32',1518,171,'2005-07-12 15:20:32',1,'2006-02-15 21:30:53'),(3746,'2005-07-06 12:10:51',3387,424,'2005-07-07 11:36:51',2,'2006-02-15 21:30:53'),(3747,'2005-07-06 12:11:14',1093,437,'2005-07-09 17:14:14',2,'2006-02-15 21:30:53'),(3748,'2005-07-06 12:11:22',2920,79,'2005-07-12 07:22:22',1,'2006-02-15 21:30:53'),(3749,'2005-07-06 12:18:03',1531,170,'2005-07-11 07:25:03',1,'2006-02-15 21:30:53'),(3750,'2005-07-06 12:19:28',2422,103,'2005-07-14 13:16:28',2,'2006-02-15 21:30:53'),(3751,'2005-07-06 12:23:41',3652,128,'2005-07-10 06:58:41',1,'2006-02-15 21:30:53'),(3752,'2005-07-06 12:30:12',4561,235,'2005-07-13 12:13:12',1,'2006-02-15 21:30:53'),(3753,'2005-07-06 12:34:06',774,358,'2005-07-07 14:19:06',2,'2006-02-15 21:30:53'),(3754,'2005-07-06 12:35:44',4042,83,'2005-07-08 16:28:44',1,'2006-02-15 21:30:53'),(3755,'2005-07-06 12:37:16',3147,402,'2005-07-13 07:22:16',1,'2006-02-15 21:30:53'),(3756,'2005-07-06 12:40:38',30,320,'2005-07-11 09:29:38',1,'2006-02-15 21:30:53'),(3757,'2005-07-06 12:42:26',2816,66,'2005-07-11 10:30:26',1,'2006-02-15 21:30:53'),(3758,'2005-07-06 12:43:11',2498,48,'2005-07-14 12:52:11',2,'2006-02-15 21:30:53'),(3759,'2005-07-06 12:46:38',4165,378,'2005-07-10 11:31:38',1,'2006-02-15 21:30:53'),(3760,'2005-07-06 12:49:28',1306,330,'2005-07-09 16:29:28',1,'2006-02-15 21:30:53'),(3761,'2005-07-06 12:52:44',4304,464,'2005-07-08 17:22:44',1,'2006-02-15 21:30:53'),(3762,'2005-07-06 12:52:49',1941,413,'2005-07-12 11:41:49',1,'2006-02-15 21:30:53'),(3763,'2005-07-06 12:56:31',1573,189,'2005-07-09 14:49:31',1,'2006-02-15 21:30:53'),(3764,'2005-07-06 13:01:03',3115,470,'2005-07-13 15:26:03',1,'2006-02-15 21:30:53'),(3765,'2005-07-06 13:01:47',1805,547,'2005-07-09 07:10:47',1,'2006-02-15 21:30:53'),(3766,'2005-07-06 13:04:35',4504,312,'2005-07-07 15:46:35',1,'2006-02-15 21:30:53'),(3767,'2005-07-06 13:07:27',923,582,'2005-07-08 18:48:27',1,'2006-02-15 21:30:53'),(3768,'2005-07-06 13:07:30',3995,573,'2005-07-09 16:26:30',2,'2006-02-15 21:30:53'),(3769,'2005-07-06 13:11:33',467,567,'2005-07-14 17:54:33',2,'2006-02-15 21:30:53'),(3770,'2005-07-06 13:14:28',3836,198,'2005-07-13 09:23:28',1,'2006-02-15 21:30:53'),(3771,'2005-07-06 13:19:34',1373,56,'2005-07-10 10:27:34',2,'2006-02-15 21:30:53'),(3772,'2005-07-06 13:22:53',434,338,'2005-07-10 11:54:53',2,'2006-02-15 21:30:53'),(3773,'2005-07-06 13:23:34',2034,263,'2005-07-08 17:23:34',2,'2006-02-15 21:30:53'),(3774,'2005-07-06 13:25:07',4044,439,'2005-07-15 12:56:07',2,'2006-02-15 21:30:53'),(3775,'2005-07-06 13:27:33',3696,300,'2005-07-09 10:27:33',1,'2006-02-15 21:30:53'),(3776,'2005-07-06 13:31:37',4387,278,'2005-07-10 10:53:37',2,'2006-02-15 21:30:53'),(3777,'2005-07-06 13:36:48',2470,548,'2005-07-11 14:26:48',1,'2006-02-15 21:30:53'),(3778,'2005-07-06 13:44:48',2181,122,'2005-07-13 09:31:48',2,'2006-02-15 21:30:53'),(3779,'2005-07-06 13:46:36',634,583,'2005-07-10 15:49:36',2,'2006-02-15 21:30:53'),(3780,'2005-07-06 13:52:02',1209,99,'2005-07-15 08:41:02',2,'2006-02-15 21:30:53'),(3781,'2005-07-06 13:53:41',3894,23,'2005-07-15 10:03:41',1,'2006-02-15 21:30:53'),(3782,'2005-07-06 13:57:03',3365,515,'2005-07-09 11:13:03',2,'2006-02-15 21:30:53'),(3783,'2005-07-06 13:57:31',2345,386,'2005-07-14 10:44:31',2,'2006-02-15 21:30:53'),(3784,'2005-07-06 13:57:56',2287,165,'2005-07-14 17:24:56',2,'2006-02-15 21:30:53'),(3785,'2005-07-06 14:00:13',3279,577,'2005-07-14 10:13:13',2,'2006-02-15 21:30:53'),(3786,'2005-07-06 14:00:41',4508,152,'2005-07-13 16:49:41',1,'2006-02-15 21:30:53'),(3787,'2005-07-06 14:02:01',288,474,'2005-07-09 19:09:01',2,'2006-02-15 21:30:53'),(3788,'2005-07-06 14:02:02',1363,379,'2005-07-10 18:24:02',1,'2006-02-15 21:30:53'),(3789,'2005-07-06 14:02:26',3560,595,'2005-07-14 18:13:26',1,'2006-02-15 21:30:53'),(3790,'2005-07-06 14:13:45',1711,10,'2005-07-14 13:35:45',1,'2006-02-15 21:30:53'),(3791,'2005-07-06 14:24:56',3426,452,'2005-07-14 11:06:56',2,'2006-02-15 21:30:53'),(3792,'2005-07-06 14:26:38',2651,312,'2005-07-11 16:34:38',1,'2006-02-15 21:30:53'),(3793,'2005-07-06 14:32:44',4558,553,'2005-07-08 13:55:44',1,'2006-02-15 21:30:53'),(3794,'2005-07-06 14:35:26',584,499,'2005-07-11 14:40:26',2,'2006-02-15 21:30:53'),(3795,'2005-07-06 14:37:41',240,153,'2005-07-11 20:27:41',2,'2006-02-15 21:30:53'),(3796,'2005-07-06 14:45:22',1649,228,'2005-07-07 11:01:22',2,'2006-02-15 21:30:53'),(3797,'2005-07-06 14:54:52',1047,374,'2005-07-10 09:50:52',2,'2006-02-15 21:30:53'),(3798,'2005-07-06 14:57:53',1942,479,'2005-07-07 10:48:53',2,'2006-02-15 21:30:53'),(3799,'2005-07-06 15:00:14',4532,251,'2005-07-10 15:39:14',1,'2006-02-15 21:30:53'),(3800,'2005-07-06 15:01:27',4004,100,'2005-07-15 11:12:27',2,'2006-02-15 21:30:53'),(3801,'2005-07-06 15:05:50',4209,68,'2005-07-12 12:56:50',1,'2006-02-15 21:30:53'),(3802,'2005-07-06 15:06:09',1017,91,'2005-07-08 09:33:09',2,'2006-02-15 21:30:53'),(3803,'2005-07-06 15:06:55',2062,494,'2005-07-08 18:53:55',1,'2006-02-15 21:30:53'),(3804,'2005-07-06 15:08:08',537,126,'2005-07-15 14:01:08',2,'2006-02-15 21:30:53'),(3805,'2005-07-06 15:08:42',1716,418,'2005-07-07 14:34:42',1,'2006-02-15 21:30:53'),(3806,'2005-07-06 15:09:41',3555,154,'2005-07-14 09:14:41',2,'2006-02-15 21:30:53'),(3807,'2005-07-06 15:11:44',39,425,'2005-07-10 09:20:44',1,'2006-02-15 21:30:53'),(3808,'2005-07-06 15:15:35',4339,314,'2005-07-07 16:10:35',1,'2006-02-15 21:30:53'),(3809,'2005-07-06 15:16:37',2932,358,'2005-07-09 14:45:37',1,'2006-02-15 21:30:53'),(3810,'2005-07-06 15:18:44',342,296,'2005-07-12 09:52:44',2,'2006-02-15 21:30:53'),(3811,'2005-07-06 15:20:37',695,208,'2005-07-08 16:26:37',2,'2006-02-15 21:30:53'),(3812,'2005-07-06 15:22:19',4490,381,'2005-07-08 13:04:19',1,'2006-02-15 21:30:53'),(3813,'2005-07-06 15:23:34',4100,189,'2005-07-08 19:03:34',1,'2006-02-15 21:30:53'),(3814,'2005-07-06 15:23:56',3826,306,'2005-07-13 20:51:56',2,'2006-02-15 21:30:53'),(3815,'2005-07-06 15:26:36',4038,472,'2005-07-11 17:07:36',2,'2006-02-15 21:30:53'),(3816,'2005-07-06 15:27:04',2941,489,'2005-07-14 13:12:04',1,'2006-02-15 21:30:53'),(3817,'2005-07-06 15:31:45',2933,267,'2005-07-11 17:11:45',1,'2006-02-15 21:30:53'),(3818,'2005-07-06 15:33:31',653,97,'2005-07-11 16:35:31',1,'2006-02-15 21:30:53'),(3819,'2005-07-06 15:35:06',1814,74,'2005-07-14 19:08:06',1,'2006-02-15 21:30:53'),(3820,'2005-07-06 15:35:26',4192,460,'2005-07-11 12:22:26',2,'2006-02-15 21:30:53'),(3821,'2005-07-06 15:36:20',4385,354,'2005-07-11 20:04:20',1,'2006-02-15 21:30:53'),(3822,'2005-07-06 15:41:15',1314,241,'2005-07-07 16:41:15',1,'2006-02-15 21:30:53'),(3823,'2005-07-06 15:41:27',124,265,'2005-07-09 09:48:27',1,'2006-02-15 21:30:53'),(3824,'2005-07-06 15:43:15',3107,107,'2005-07-13 16:05:15',2,'2006-02-15 21:30:53'),(3825,'2005-07-06 15:50:03',630,132,'2005-07-09 19:20:03',1,'2006-02-15 21:30:53'),(3826,'2005-07-06 15:51:58',73,451,'2005-07-13 12:35:58',1,'2006-02-15 21:30:53'),(3827,'2005-07-06 15:52:03',2072,41,'2005-07-08 21:43:03',2,'2006-02-15 21:30:53'),(3828,'2005-07-06 15:57:30',4493,498,'2005-07-10 12:17:30',2,'2006-02-15 21:30:53'),(3829,'2005-07-06 15:59:40',4126,356,'2005-07-11 10:29:40',1,'2006-02-15 21:30:53'),(3830,'2005-07-06 16:01:16',553,310,'2005-07-15 19:35:16',2,'2006-02-15 21:30:53'),(3831,'2005-07-06 16:06:35',1338,206,'2005-07-08 15:14:35',2,'2006-02-15 21:30:53'),(3832,'2005-07-06 16:12:23',4499,233,'2005-07-12 21:29:23',1,'2006-02-15 21:30:53'),(3833,'2005-07-06 16:18:28',3232,416,'2005-07-14 20:09:28',2,'2006-02-15 21:30:53'),(3834,'2005-07-06 16:19:56',3001,366,'2005-07-13 11:38:56',2,'2006-02-15 21:30:53'),(3835,'2005-07-06 16:22:45',935,486,'2005-07-11 17:04:45',2,'2006-02-15 21:30:53'),(3836,'2005-07-06 16:26:04',1148,351,'2005-07-10 15:08:04',1,'2006-02-15 21:30:53'),(3837,'2005-07-06 16:27:43',3166,309,'2005-07-07 18:02:43',1,'2006-02-15 21:30:53'),(3838,'2005-07-06 16:29:43',3404,565,'2005-07-11 20:50:43',1,'2006-02-15 21:30:53'),(3839,'2005-07-06 16:30:30',3230,231,'2005-07-11 19:00:30',1,'2006-02-15 21:30:53'),(3840,'2005-07-06 16:30:59',4384,468,'2005-07-15 22:08:59',2,'2006-02-15 21:30:53'),(3841,'2005-07-06 16:34:00',4228,470,'2005-07-08 15:12:00',2,'2006-02-15 21:30:53'),(3842,'2005-07-06 16:34:32',3119,583,'2005-07-08 11:55:32',2,'2006-02-15 21:30:53'),(3843,'2005-07-06 16:35:40',3844,62,'2005-07-07 18:29:40',1,'2006-02-15 21:30:53'),(3844,'2005-07-06 16:37:58',2814,179,'2005-07-09 19:54:58',2,'2006-02-15 21:30:53'),(3845,'2005-07-06 16:38:14',4495,28,'2005-07-09 14:59:14',2,'2006-02-15 21:30:53'),(3846,'2005-07-06 16:43:10',2829,88,'2005-07-14 11:09:10',2,'2006-02-15 21:30:53'),(3847,'2005-07-06 16:44:41',782,206,'2005-07-07 21:54:41',2,'2006-02-15 21:30:53'),(3848,'2005-07-06 16:47:32',2906,188,'2005-07-14 15:00:32',1,'2006-02-15 21:30:53'),(3849,'2005-07-06 16:49:43',3660,60,'2005-07-12 17:20:43',1,'2006-02-15 21:30:53'),(3850,'2005-07-06 16:51:21',1700,103,'2005-07-12 13:58:21',1,'2006-02-15 21:30:53'),(3851,'2005-07-06 16:54:12',493,436,'2005-07-11 22:49:12',1,'2006-02-15 21:30:53'),(3852,'2005-07-06 16:57:49',3329,511,'2005-07-11 17:11:49',1,'2006-02-15 21:30:53'),(3853,'2005-07-06 16:59:20',1411,537,'2005-07-07 12:30:20',2,'2006-02-15 21:30:53'),(3854,'2005-07-06 17:02:33',2054,243,'2005-07-12 17:32:33',2,'2006-02-15 21:30:53'),(3855,'2005-07-06 17:03:48',2931,46,'2005-07-12 14:32:48',1,'2006-02-15 21:30:53'),(3856,'2005-07-06 17:04:46',3083,498,'2005-07-14 19:23:46',2,'2006-02-15 21:30:53'),(3857,'2005-07-06 17:07:54',1135,236,'2005-07-07 13:28:54',1,'2006-02-15 21:30:53'),(3858,'2005-07-06 17:17:57',829,377,'2005-07-10 23:10:57',2,'2006-02-15 21:30:53'),(3859,'2005-07-06 17:18:15',2548,553,'2005-07-09 16:48:15',1,'2006-02-15 21:30:53'),(3860,'2005-07-06 17:20:24',144,514,'2005-07-09 22:33:24',1,'2006-02-15 21:30:53'),(3861,'2005-07-06 17:24:49',4506,202,'2005-07-15 22:19:49',2,'2006-02-15 21:30:53'),(3862,'2005-07-06 17:35:22',471,181,'2005-07-15 17:13:22',1,'2006-02-15 21:30:53'),(3863,'2005-07-06 17:40:18',363,481,'2005-07-07 17:58:18',2,'2006-02-15 21:30:53'),(3864,'2005-07-06 17:41:42',2811,68,'2005-07-08 14:17:42',1,'2006-02-15 21:30:53'),(3865,'2005-07-06 17:46:57',3579,357,'2005-07-12 12:20:57',1,'2006-02-15 21:30:53'),(3866,'2005-07-06 17:47:20',194,409,'2005-07-15 18:12:20',1,'2006-02-15 21:30:53'),(3867,'2005-07-06 17:52:19',3620,580,'2005-07-13 21:48:19',1,'2006-02-15 21:30:53'),(3868,'2005-07-06 17:54:13',1606,416,'2005-07-10 14:51:13',1,'2006-02-15 21:30:53'),(3869,'2005-07-06 17:56:46',2540,183,'2005-07-10 20:44:46',1,'2006-02-15 21:30:53'),(3870,'2005-07-06 17:57:54',3357,12,'2005-07-13 12:30:54',1,'2006-02-15 21:30:53'),(3871,'2005-07-06 17:58:51',3114,331,'2005-07-15 22:18:51',2,'2006-02-15 21:30:53'),(3872,'2005-07-06 18:00:19',1785,513,'2005-07-07 17:26:19',1,'2006-02-15 21:30:53'),(3873,'2005-07-06 18:03:16',4148,394,'2005-07-15 23:58:16',2,'2006-02-15 21:30:53'),(3874,'2005-07-06 18:06:12',1870,137,'2005-07-12 16:55:12',1,'2006-02-15 21:30:53'),(3875,'2005-07-06 18:15:39',712,108,'2005-07-11 17:34:39',1,'2006-02-15 21:30:53'),(3876,'2005-07-06 18:21:13',4039,295,'2005-07-14 16:57:13',2,'2006-02-15 21:30:53'),(3877,'2005-07-06 18:22:10',2796,576,'2005-07-07 23:38:10',1,'2006-02-15 21:30:53'),(3878,'2005-07-06 18:27:09',4022,385,'2005-07-15 20:13:09',2,'2006-02-15 21:30:53'),(3879,'2005-07-06 18:31:20',1376,81,'2005-07-09 19:03:20',2,'2006-02-15 21:30:53'),(3880,'2005-07-06 18:32:49',42,507,'2005-07-07 20:46:49',2,'2006-02-15 21:30:53'),(3881,'2005-07-06 18:35:37',143,456,'2005-07-10 00:06:37',2,'2006-02-15 21:30:53'),(3882,'2005-07-06 18:38:21',788,254,'2005-07-09 14:55:21',1,'2006-02-15 21:30:53'),(3883,'2005-07-06 18:39:38',3238,69,'2005-07-14 15:59:38',2,'2006-02-15 21:30:53'),(3884,'2005-07-06 18:41:33',1806,210,'2005-07-07 22:06:33',1,'2006-02-15 21:30:53'),(3885,'2005-07-06 18:43:43',1820,282,'2005-07-12 19:48:43',2,'2006-02-15 21:30:53'),(3886,'2005-07-06 18:44:24',2368,326,'2005-07-08 15:11:24',1,'2006-02-15 21:30:53'),(3887,'2005-07-06 18:46:34',1695,530,'2005-07-07 13:15:34',1,'2006-02-15 21:30:53'),(3888,'2005-07-06 18:54:20',1945,412,'2005-07-12 17:13:20',2,'2006-02-15 21:30:53'),(3889,'2005-07-06 18:56:25',2005,576,'2005-07-08 21:22:25',2,'2006-02-15 21:30:53'),(3890,'2005-07-06 18:58:15',2570,553,'2005-07-10 18:51:15',1,'2006-02-15 21:30:53'),(3891,'2005-07-06 18:58:25',3216,553,'2005-07-09 23:20:25',2,'2006-02-15 21:30:53'),(3892,'2005-07-06 18:58:58',778,549,'2005-07-10 19:29:58',1,'2006-02-15 21:30:53'),(3893,'2005-07-06 18:59:31',1281,350,'2005-07-12 19:21:31',1,'2006-02-15 21:30:53'),(3894,'2005-07-06 19:01:39',2087,149,'2005-07-12 21:35:39',2,'2006-02-15 21:30:53'),(3895,'2005-07-06 19:04:24',145,584,'2005-07-15 17:48:24',2,'2006-02-15 21:30:53'),(3896,'2005-07-06 19:09:15',1755,309,'2005-07-16 00:52:15',2,'2006-02-15 21:30:53'),(3897,'2005-07-06 19:11:43',14,277,'2005-07-11 21:50:43',2,'2006-02-15 21:30:53'),(3898,'2005-07-06 19:12:37',3858,53,'2005-07-11 15:50:37',1,'2006-02-15 21:30:53'),(3899,'2005-07-06 19:12:40',4020,485,'2005-07-13 23:41:40',1,'2006-02-15 21:30:53'),(3900,'2005-07-06 19:21:28',1497,129,'2005-07-15 21:06:28',2,'2006-02-15 21:30:53'),(3901,'2005-07-06 19:24:55',3367,321,'2005-07-14 20:30:55',2,'2006-02-15 21:30:53'),(3902,'2005-07-06 19:25:18',2868,192,'2005-07-10 17:42:18',2,'2006-02-15 21:30:53'),(3903,'2005-07-06 19:27:32',3614,369,'2005-07-08 23:27:32',1,'2006-02-15 21:30:53'),(3904,'2005-07-06 19:30:57',3600,485,'2005-07-11 18:47:57',2,'2006-02-15 21:30:53'),(3905,'2005-07-06 19:33:34',3817,526,'2005-07-15 17:55:34',1,'2006-02-15 21:30:53'),(3906,'2005-07-06 19:35:55',1383,293,'2005-07-15 22:35:55',1,'2006-02-15 21:30:53'),(3907,'2005-07-06 19:39:14',2507,452,'2005-07-11 17:45:14',1,'2006-02-15 21:30:53'),(3908,'2005-07-06 19:47:26',3980,116,'2005-07-13 19:59:26',1,'2006-02-15 21:30:53'),(3909,'2005-07-06 19:54:41',3423,396,'2005-07-15 18:11:41',2,'2006-02-15 21:30:53'),(3910,'2005-07-06 20:05:18',2085,248,'2005-07-10 18:51:18',1,'2006-02-15 21:30:53'),(3911,'2005-07-06 20:09:11',4548,34,'2005-07-08 23:53:11',1,'2006-02-15 21:30:53'),(3912,'2005-07-06 20:10:03',2449,154,'2005-07-08 18:39:03',2,'2006-02-15 21:30:53'),(3913,'2005-07-06 20:11:00',752,494,'2005-07-08 14:42:00',1,'2006-02-15 21:30:53'),(3914,'2005-07-06 20:11:10',4092,159,'2005-07-14 14:42:10',2,'2006-02-15 21:30:53'),(3915,'2005-07-06 20:16:46',125,163,'2005-07-10 17:24:46',1,'2006-02-15 21:30:53'),(3916,'2005-07-06 20:18:50',3198,46,'2005-07-12 21:56:50',1,'2006-02-15 21:30:53'),(3917,'2005-07-06 20:19:29',2747,471,'2005-07-11 00:49:29',1,'2006-02-15 21:30:53'),(3918,'2005-07-06 20:26:15',1111,435,'2005-07-15 20:32:15',1,'2006-02-15 21:30:53'),(3919,'2005-07-06 20:26:21',2695,147,'2005-07-15 00:13:21',1,'2006-02-15 21:30:53'),(3920,'2005-07-06 20:26:40',1551,321,'2005-07-15 15:00:40',2,'2006-02-15 21:30:53'),(3921,'2005-07-06 20:29:48',949,531,'2005-07-14 01:44:48',1,'2006-02-15 21:30:53'),(3922,'2005-07-06 20:32:27',2878,470,'2005-07-14 19:00:27',1,'2006-02-15 21:30:53'),(3923,'2005-07-06 20:34:10',2039,63,'2005-07-13 19:20:10',1,'2006-02-15 21:30:53'),(3924,'2005-07-06 20:38:02',187,114,'2005-07-11 23:35:02',2,'2006-02-15 21:30:53'),(3925,'2005-07-06 20:41:44',2653,428,'2005-07-15 21:05:44',2,'2006-02-15 21:30:53'),(3926,'2005-07-06 20:42:35',4241,500,'2005-07-09 16:30:35',2,'2006-02-15 21:30:53'),(3927,'2005-07-06 20:48:14',2194,404,'2005-07-10 15:37:14',1,'2006-02-15 21:30:53'),(3928,'2005-07-06 20:52:09',1960,411,'2005-07-08 18:51:09',1,'2006-02-15 21:30:53'),(3929,'2005-07-06 20:52:39',1235,453,'2005-07-12 00:27:39',2,'2006-02-15 21:30:53'),(3930,'2005-07-06 20:54:07',165,573,'2005-07-10 18:31:07',1,'2006-02-15 21:30:53'),(3931,'2005-07-06 21:03:46',182,176,'2005-07-16 01:32:46',1,'2006-02-15 21:30:53'),(3932,'2005-07-06 21:06:17',4396,490,'2005-07-07 19:25:17',2,'2006-02-15 21:30:53'),(3933,'2005-07-06 21:06:37',1202,229,'2005-07-08 20:23:37',1,'2006-02-15 21:30:53'),(3934,'2005-07-06 21:07:23',3187,576,'2005-07-10 18:20:23',2,'2006-02-15 21:30:53'),(3935,'2005-07-06 21:08:29',3402,503,'2005-07-15 23:28:29',2,'2006-02-15 21:30:53'),(3936,'2005-07-06 21:15:03',4258,129,'2005-07-08 17:45:03',2,'2006-02-15 21:30:53'),(3937,'2005-07-06 21:15:38',2091,211,'2005-07-15 00:01:38',2,'2006-02-15 21:30:53'),(3938,'2005-07-06 21:15:45',1991,341,'2005-07-13 20:02:45',2,'2006-02-15 21:30:53'),(3939,'2005-07-06 21:16:32',3627,149,'2005-07-11 03:12:32',2,'2006-02-15 21:30:53'),(3940,'2005-07-06 21:16:59',1502,116,'2005-07-07 19:17:59',2,'2006-02-15 21:30:53'),(3941,'2005-07-06 21:20:37',382,560,'2005-07-09 01:35:37',2,'2006-02-15 21:30:53'),(3942,'2005-07-06 21:21:34',677,553,'2005-07-15 02:34:34',1,'2006-02-15 21:30:53'),(3943,'2005-07-06 21:22:17',1816,566,'2005-07-07 21:26:17',1,'2006-02-15 21:30:53'),(3944,'2005-07-06 21:34:11',4213,436,'2005-07-08 23:46:11',2,'2006-02-15 21:30:53'),(3945,'2005-07-06 21:35:00',754,86,'2005-07-08 00:31:00',2,'2006-02-15 21:30:53'),(3946,'2005-07-06 21:39:24',294,13,'2005-07-11 16:10:24',1,'2006-02-15 21:30:53'),(3947,'2005-07-06 21:42:21',4188,324,'2005-07-08 19:37:21',1,'2006-02-15 21:30:53'),(3948,'2005-07-06 21:45:53',2254,161,'2005-07-08 19:24:53',2,'2006-02-15 21:30:53'),(3949,'2005-07-06 21:46:36',1765,153,'2005-07-11 03:18:36',1,'2006-02-15 21:30:53'),(3950,'2005-07-06 21:48:44',4153,598,'2005-07-14 02:25:44',1,'2006-02-15 21:30:53'),(3951,'2005-07-06 21:50:41',2288,250,'2005-07-12 02:09:41',2,'2006-02-15 21:30:53'),(3952,'2005-07-06 21:51:31',1719,417,'2005-07-13 15:54:31',1,'2006-02-15 21:30:53'),(3953,'2005-07-06 21:54:55',3879,385,'2005-07-09 18:52:55',1,'2006-02-15 21:30:53'),(3954,'2005-07-06 21:57:44',4250,558,'2005-07-08 02:37:44',2,'2006-02-15 21:30:53'),(3955,'2005-07-06 21:58:08',2523,247,'2005-07-08 03:43:08',1,'2006-02-15 21:30:53'),(3956,'2005-07-06 22:01:51',15,147,'2005-07-12 21:35:51',2,'2006-02-15 21:30:53'),(3957,'2005-07-06 22:05:47',443,414,'2005-07-16 01:08:47',1,'2006-02-15 21:30:53'),(3958,'2005-07-06 22:07:33',4117,288,'2005-07-10 19:31:33',2,'2006-02-15 21:30:53'),(3959,'2005-07-06 22:07:58',40,448,'2005-07-13 02:30:58',1,'2006-02-15 21:30:53'),(3960,'2005-07-06 22:08:53',2090,594,'2005-07-07 23:21:53',2,'2006-02-15 21:30:53'),(3961,'2005-07-06 22:11:43',4320,364,'2005-07-09 03:14:43',1,'2006-02-15 21:30:53'),(3962,'2005-07-06 22:13:45',379,307,'2005-07-15 00:22:45',2,'2006-02-15 21:30:53'),(3963,'2005-07-06 22:19:17',3912,111,'2005-07-15 01:22:17',2,'2006-02-15 21:30:53'),(3964,'2005-07-06 22:23:02',1853,30,'2005-07-07 22:21:02',1,'2006-02-15 21:30:53'),(3965,'2005-07-06 22:36:20',2863,243,'2005-07-09 17:45:20',1,'2006-02-15 21:30:53'),(3966,'2005-07-06 22:38:49',556,495,'2005-07-07 23:33:49',1,'2006-02-15 21:30:53'),(3967,'2005-07-06 22:45:10',2510,31,'2005-07-09 23:54:10',2,'2006-02-15 21:30:53'),(3968,'2005-07-06 22:47:09',558,235,'2005-07-12 21:01:09',1,'2006-02-15 21:30:53'),(3969,'2005-07-06 22:47:59',383,587,'2005-07-08 02:11:59',1,'2006-02-15 21:30:53'),(3970,'2005-07-06 22:48:17',701,381,'2005-07-15 19:07:17',1,'2006-02-15 21:30:53'),(3971,'2005-07-06 22:50:40',4415,473,'2005-07-08 01:02:40',1,'2006-02-15 21:30:53'),(3972,'2005-07-06 22:53:57',1895,598,'2005-07-11 01:32:57',1,'2006-02-15 21:30:53'),(3973,'2005-07-06 22:58:31',2625,592,'2005-07-16 03:27:31',2,'2006-02-15 21:30:53'),(3974,'2005-07-06 22:59:16',4282,318,'2005-07-11 22:30:16',1,'2006-02-15 21:30:53'),(3975,'2005-07-06 23:00:09',4343,545,'2005-07-10 01:39:09',2,'2006-02-15 21:30:53'),(3976,'2005-07-06 23:00:20',2424,329,'2005-07-07 21:51:20',2,'2006-02-15 21:30:53'),(3977,'2005-07-06 23:00:49',1284,449,'2005-07-15 00:41:49',1,'2006-02-15 21:30:53'),(3978,'2005-07-06 23:04:33',4341,343,'2005-07-10 17:45:33',2,'2006-02-15 21:30:53'),(3979,'2005-07-06 23:04:35',794,550,'2005-07-13 01:38:35',2,'2006-02-15 21:30:53'),(3980,'2005-07-06 23:11:11',1845,475,'2005-07-14 18:22:11',1,'2006-02-15 21:30:53'),(3981,'2005-07-06 23:12:12',842,375,'2005-07-13 01:47:12',2,'2006-02-15 21:30:53'),(3982,'2005-07-06 23:14:16',4327,64,'2005-07-08 21:21:16',2,'2006-02-15 21:30:53'),(3983,'2005-07-06 23:14:21',1261,6,'2005-07-12 17:55:21',2,'2006-02-15 21:30:53'),(3984,'2005-07-06 23:22:36',2205,570,'2005-07-08 21:40:36',2,'2006-02-15 21:30:53'),(3985,'2005-07-06 23:24:03',2096,307,'2005-07-10 00:20:03',2,'2006-02-15 21:30:53'),(3986,'2005-07-06 23:25:13',3737,122,'2005-07-09 21:26:13',2,'2006-02-15 21:30:53'),(3987,'2005-07-06 23:28:24',3104,270,'2005-07-15 00:52:24',1,'2006-02-15 21:30:53'),(3988,'2005-07-06 23:30:42',2981,421,'2005-07-13 03:06:42',2,'2006-02-15 21:30:53'),(3989,'2005-07-06 23:30:54',2366,213,'2005-07-12 01:28:54',1,'2006-02-15 21:30:53'),(3990,'2005-07-06 23:32:44',2009,558,'2005-07-14 01:35:44',2,'2006-02-15 21:30:53'),(3991,'2005-07-06 23:33:41',587,583,'2005-07-16 01:31:41',1,'2006-02-15 21:30:53'),(3992,'2005-07-06 23:36:56',3219,448,'2005-07-15 03:13:56',1,'2006-02-15 21:30:53'),(3993,'2005-07-06 23:37:06',1061,525,'2005-07-14 19:31:06',1,'2006-02-15 21:30:53'),(3994,'2005-07-06 23:39:01',902,487,'2005-07-14 00:33:01',1,'2006-02-15 21:30:53'),(3995,'2005-07-06 23:43:03',3990,128,'2005-07-13 04:13:03',2,'2006-02-15 21:30:53'),(3996,'2005-07-06 23:46:43',2857,551,'2005-07-14 22:34:43',2,'2006-02-15 21:30:53'),(3997,'2005-07-06 23:46:52',3895,52,'2005-07-14 05:39:52',2,'2006-02-15 21:30:53'),(3998,'2005-07-06 23:49:20',1245,566,'2005-07-12 20:39:20',1,'2006-02-15 21:30:53'),(3999,'2005-07-06 23:50:54',707,390,'2005-07-09 22:09:54',1,'2006-02-15 21:30:53'),(4000,'2005-07-06 23:58:37',2122,95,'2005-07-08 21:43:37',1,'2006-02-15 21:30:53'),(4001,'2005-07-07 00:07:00',864,120,'2005-07-13 21:27:00',2,'2006-02-15 21:30:53'),(4002,'2005-07-07 00:08:18',2790,308,'2005-07-14 01:29:18',2,'2006-02-15 21:30:53'),(4003,'2005-07-07 00:09:02',4054,8,'2005-07-08 04:27:02',1,'2006-02-15 21:30:53'),(4004,'2005-07-07 00:20:51',667,574,'2005-07-11 18:55:51',2,'2006-02-15 21:30:53'),(4005,'2005-07-07 00:22:26',3677,190,'2005-07-15 04:34:26',2,'2006-02-15 21:30:53'),(4006,'2005-07-07 00:25:29',397,473,'2005-07-08 05:30:29',2,'2006-02-15 21:30:53'),(4007,'2005-07-07 00:26:05',2071,285,'2005-07-15 19:53:05',1,'2006-02-15 21:30:53'),(4008,'2005-07-07 00:26:43',1107,505,'2005-07-16 03:58:43',2,'2006-02-15 21:30:53'),(4009,'2005-07-07 00:28:55',3607,394,'2005-07-10 00:37:55',1,'2006-02-15 21:30:53'),(4010,'2005-07-07 00:47:00',4509,476,'2005-07-12 06:23:00',2,'2006-02-15 21:30:53'),(4011,'2005-07-07 00:48:25',2052,20,'2005-07-13 06:30:25',2,'2006-02-15 21:30:53'),(4012,'2005-07-07 00:56:09',1400,104,'2005-07-10 21:49:09',1,'2006-02-15 21:30:53'),(4013,'2005-07-07 00:58:00',2344,475,'2005-07-15 19:42:00',2,'2006-02-15 21:30:53'),(4014,'2005-07-07 00:58:54',583,510,'2005-07-12 02:40:54',1,'2006-02-15 21:30:53'),(4015,'2005-07-07 00:59:46',3032,233,'2005-07-14 03:16:46',2,'2006-02-15 21:30:53'),(4016,'2005-07-07 01:05:50',3318,335,'2005-07-09 05:59:50',1,'2006-02-15 21:30:53'),(4017,'2005-07-07 01:08:18',3117,595,'2005-07-09 01:47:18',2,'2006-02-15 21:30:53'),(4018,'2005-07-07 01:10:33',906,207,'2005-07-12 20:54:33',2,'2006-02-15 21:30:53'),(4019,'2005-07-07 01:27:44',3200,294,'2005-07-10 21:30:44',1,'2006-02-15 21:30:53'),(4020,'2005-07-07 01:42:22',3760,471,'2005-07-10 00:53:22',1,'2006-02-15 21:30:53'),(4021,'2005-07-07 01:46:44',1676,315,'2005-07-12 00:16:44',2,'2006-02-15 21:30:53'),(4022,'2005-07-07 01:50:06',3914,390,'2005-07-09 21:47:06',2,'2006-02-15 21:30:53'),(4023,'2005-07-07 01:55:25',274,573,'2005-07-08 02:43:25',2,'2006-02-15 21:30:53'),(4024,'2005-07-07 02:11:23',3976,448,'2005-07-11 02:00:23',1,'2006-02-15 21:30:53'),(4025,'2005-07-07 02:13:24',3908,114,'2005-07-08 00:47:24',1,'2006-02-15 21:30:53'),(4026,'2005-07-07 02:15:48',4142,251,'2005-07-14 04:15:48',2,'2006-02-15 21:30:53'),(4027,'2005-07-07 02:19:01',56,116,'2005-07-10 01:12:01',1,'2006-02-15 21:30:53'),(4028,'2005-07-07 02:19:14',1651,344,'2005-07-15 08:09:14',2,'2006-02-15 21:30:53'),(4029,'2005-07-07 02:19:44',4075,518,'2005-07-15 02:30:44',2,'2006-02-15 21:30:53'),(4030,'2005-07-07 02:25:42',1734,300,'2005-07-08 22:53:42',2,'2006-02-15 21:30:53'),(4031,'2005-07-07 02:32:07',3094,143,'2005-07-14 06:01:07',2,'2006-02-15 21:30:53'),(4032,'2005-07-07 02:34:13',2628,335,'2005-07-14 22:43:13',1,'2006-02-15 21:30:53'),(4033,'2005-07-07 02:35:46',203,453,'2005-07-16 01:12:46',1,'2006-02-15 21:30:53'),(4034,'2005-07-07 02:36:33',1666,354,'2005-07-09 08:32:33',2,'2006-02-15 21:30:53'),(4035,'2005-07-07 02:45:02',3611,539,'2005-07-14 01:41:02',1,'2006-02-15 21:30:53'),(4036,'2005-07-07 02:48:00',500,397,'2005-07-07 22:46:00',1,'2006-02-15 21:30:53'),(4037,'2005-07-07 02:52:52',3903,594,'2005-07-16 00:09:52',1,'2006-02-15 21:30:53'),(4038,'2005-07-07 02:52:53',1264,27,'2005-07-11 22:32:53',2,'2006-02-15 21:30:53'),(4039,'2005-07-07 02:57:59',4050,290,'2005-07-12 03:44:59',2,'2006-02-15 21:30:53'),(4040,'2005-07-07 03:02:40',3046,103,'2005-07-16 06:05:40',2,'2006-02-15 21:30:53'),(4041,'2005-07-07 03:03:33',2217,445,'2005-07-09 07:57:33',2,'2006-02-15 21:30:53'),(4042,'2005-07-07 03:06:40',50,10,'2005-07-10 02:37:40',1,'2006-02-15 21:30:53'),(4043,'2005-07-07 03:09:50',3427,204,'2005-07-10 07:49:50',2,'2006-02-15 21:30:53'),(4044,'2005-07-07 03:22:23',3263,94,'2005-07-13 03:23:23',1,'2006-02-15 21:30:53'),(4045,'2005-07-07 03:26:14',1422,529,'2005-07-11 06:52:14',1,'2006-02-15 21:30:53'),(4046,'2005-07-07 03:27:59',3518,491,'2005-07-14 01:14:59',1,'2006-02-15 21:30:53'),(4047,'2005-07-07 03:28:49',3475,364,'2005-07-09 02:42:49',2,'2006-02-15 21:30:53'),(4048,'2005-07-07 03:30:52',659,474,'2005-07-14 05:05:52',2,'2006-02-15 21:30:53'),(4049,'2005-07-07 03:34:53',4172,79,'2005-07-15 04:10:53',2,'2006-02-15 21:30:53'),(4050,'2005-07-07 03:35:33',104,528,'2005-07-15 03:11:33',1,'2006-02-15 21:30:53'),(4051,'2005-07-07 03:37:28',2715,331,'2005-07-09 01:40:28',1,'2006-02-15 21:30:53'),(4052,'2005-07-07 03:38:22',206,442,'2005-07-13 02:56:22',2,'2006-02-15 21:30:53'),(4053,'2005-07-07 03:39:22',2889,377,'2005-07-09 22:32:22',1,'2006-02-15 21:30:53'),(4054,'2005-07-07 03:42:07',3885,260,'2005-07-10 03:22:07',1,'2006-02-15 21:30:53'),(4055,'2005-07-07 03:49:13',2561,513,'2005-07-11 03:15:13',2,'2006-02-15 21:30:53'),(4056,'2005-07-07 03:57:36',4211,360,'2005-07-09 08:53:36',2,'2006-02-15 21:30:53'),(4057,'2005-07-07 04:00:20',2838,141,'2005-07-12 08:14:20',1,'2006-02-15 21:30:53'),(4058,'2005-07-07 04:02:50',3877,442,'2005-07-10 04:30:50',2,'2006-02-15 21:30:53'),(4059,'2005-07-07 04:04:26',292,401,'2005-07-10 22:35:26',1,'2006-02-15 21:30:53'),(4060,'2005-07-07 04:10:13',2697,211,'2005-07-13 07:44:13',1,'2006-02-15 21:30:53'),(4061,'2005-07-07 04:13:35',62,70,'2005-07-10 23:58:35',2,'2006-02-15 21:30:53'),(4062,'2005-07-07 04:22:27',1323,410,'2005-07-09 03:27:27',1,'2006-02-15 21:30:53'),(4063,'2005-07-07 04:23:57',1452,331,'2005-07-14 23:35:57',2,'2006-02-15 21:30:53'),(4064,'2005-07-07 04:29:20',1402,47,'2005-07-14 05:48:20',2,'2006-02-15 21:30:53'),(4065,'2005-07-07 04:32:28',1339,26,'2005-07-12 08:30:28',1,'2006-02-15 21:30:53'),(4066,'2005-07-07 04:34:09',1975,368,'2005-07-10 23:54:09',1,'2006-02-15 21:30:53'),(4067,'2005-07-07 04:34:23',2945,469,'2005-07-16 04:04:23',1,'2006-02-15 21:30:53'),(4068,'2005-07-07 04:34:38',4152,206,'2005-07-11 09:16:38',2,'2006-02-15 21:30:53'),(4069,'2005-07-07 04:35:06',3361,570,'2005-07-10 23:59:06',2,'2006-02-15 21:30:53'),(4070,'2005-07-07 04:37:09',2926,496,'2005-07-08 04:19:09',2,'2006-02-15 21:30:53'),(4071,'2005-07-07 04:37:26',2883,209,'2005-07-13 06:45:26',2,'2006-02-15 21:30:53'),(4072,'2005-07-07 04:48:02',3130,310,'2005-07-12 10:32:02',2,'2006-02-15 21:30:53'),(4073,'2005-07-07 04:49:13',647,290,'2005-07-10 03:20:13',2,'2006-02-15 21:30:53'),(4074,'2005-07-07 04:49:49',2347,412,'2005-07-12 04:51:49',2,'2006-02-15 21:30:53'),(4075,'2005-07-07 04:51:44',1989,593,'2005-07-09 03:07:44',2,'2006-02-15 21:30:53'),(4076,'2005-07-07 04:52:15',3148,329,'2005-07-13 23:22:15',1,'2006-02-15 21:30:53'),(4077,'2005-07-07 04:53:40',2445,377,'2005-07-09 09:56:40',2,'2006-02-15 21:30:53'),(4078,'2005-07-07 05:05:05',1671,522,'2005-07-10 05:39:05',1,'2006-02-15 21:30:53'),(4079,'2005-07-07 05:06:27',2202,84,'2005-07-16 08:46:27',1,'2006-02-15 21:30:53'),(4080,'2005-07-07 05:09:54',1364,148,'2005-07-11 23:58:54',1,'2006-02-15 21:30:53'),(4081,'2005-07-07 05:10:08',1138,284,'2005-07-12 00:47:08',1,'2006-02-15 21:30:53'),(4082,'2005-07-07 05:11:53',2904,108,'2005-07-12 00:55:53',1,'2006-02-15 21:30:53'),(4083,'2005-07-07 05:13:15',3454,490,'2005-07-08 09:11:15',1,'2006-02-15 21:30:53'),(4084,'2005-07-07 05:16:00',2588,441,'2005-07-15 09:23:00',1,'2006-02-15 21:30:53'),(4085,'2005-07-07 05:25:39',1683,573,'2005-07-12 04:30:39',1,'2006-02-15 21:30:53'),(4086,'2005-07-07 05:26:06',253,494,'2005-07-12 00:45:06',2,'2006-02-15 21:30:53'),(4087,'2005-07-07 05:30:56',3066,433,'2005-07-16 10:20:56',1,'2006-02-15 21:30:53'),(4088,'2005-07-07 05:31:55',234,66,'2005-07-15 07:35:55',1,'2006-02-15 21:30:53'),(4089,'2005-07-07 05:45:59',3431,102,'2005-07-16 07:34:59',2,'2006-02-15 21:30:53'),(4090,'2005-07-07 05:47:33',3096,67,'2005-07-08 04:25:33',2,'2006-02-15 21:30:53'),(4091,'2005-07-07 05:53:38',3928,337,'2005-07-14 03:12:38',2,'2006-02-15 21:30:53'),(4092,'2005-07-07 05:54:18',1721,246,'2005-07-16 09:14:18',1,'2006-02-15 21:30:53'),(4093,'2005-07-07 05:54:50',1534,337,'2005-07-12 00:34:50',1,'2006-02-15 21:30:53'),(4094,'2005-07-07 06:00:21',2412,517,'2005-07-10 03:24:21',2,'2006-02-15 21:30:53'),(4095,'2005-07-07 06:01:48',2900,33,'2005-07-15 02:52:48',2,'2006-02-15 21:30:53'),(4096,'2005-07-07 06:09:11',3911,403,'2005-07-08 09:17:11',2,'2006-02-15 21:30:53'),(4097,'2005-07-07 06:10:55',2454,56,'2005-07-11 02:45:55',1,'2006-02-15 21:30:53'),(4098,'2005-07-07 06:14:51',2865,35,'2005-07-14 06:51:51',2,'2006-02-15 21:30:53'),(4099,'2005-07-07 06:20:33',1930,76,'2005-07-16 08:39:33',1,'2006-02-15 21:30:53'),(4100,'2005-07-07 06:20:52',2346,332,'2005-07-15 05:58:52',2,'2006-02-15 21:30:53'),(4101,'2005-07-07 06:25:11',2891,588,'2005-07-12 07:44:11',2,'2006-02-15 21:30:53'),(4102,'2005-07-07 06:25:19',3998,135,'2005-07-11 00:50:19',2,'2006-02-15 21:30:53'),(4103,'2005-07-07 06:25:28',3632,91,'2005-07-12 11:18:28',1,'2006-02-15 21:30:53'),(4104,'2005-07-07 06:25:41',1066,338,'2005-07-13 04:18:41',2,'2006-02-15 21:30:53'),(4105,'2005-07-07 06:31:00',439,423,'2005-07-09 03:52:00',1,'2006-02-15 21:30:53'),(4106,'2005-07-07 06:33:35',4083,563,'2005-07-13 04:03:35',1,'2006-02-15 21:30:53'),(4107,'2005-07-07 06:36:32',4232,206,'2005-07-14 03:36:32',1,'2006-02-15 21:30:53'),(4108,'2005-07-07 06:38:31',4535,66,'2005-07-08 10:44:31',1,'2006-02-15 21:30:53'),(4109,'2005-07-07 06:39:43',532,517,'2005-07-10 06:30:43',1,'2006-02-15 21:30:53'),(4110,'2005-07-07 06:44:27',226,486,'2005-07-12 05:43:27',2,'2006-02-15 21:30:53'),(4111,'2005-07-07 06:47:56',1009,515,'2005-07-13 02:13:56',1,'2006-02-15 21:30:53'),(4112,'2005-07-07 06:49:09',3284,533,'2005-07-16 06:53:09',2,'2006-02-15 21:30:53'),(4113,'2005-07-07 06:49:52',915,170,'2005-07-12 04:00:52',1,'2006-02-15 21:30:53'),(4114,'2005-07-07 06:51:12',4109,426,'2005-07-15 01:36:12',1,'2006-02-15 21:30:53'),(4115,'2005-07-07 06:52:23',102,371,'2005-07-14 06:12:23',2,'2006-02-15 21:30:53'),(4116,'2005-07-07 06:56:13',666,352,'2005-07-11 11:13:13',2,'2006-02-15 21:30:53'),(4117,'2005-07-07 06:58:14',780,158,'2005-07-16 05:28:14',1,'2006-02-15 21:30:53'),(4118,'2005-07-07 07:03:30',355,224,'2005-07-08 09:20:30',1,'2006-02-15 21:30:53'),(4119,'2005-07-07 07:06:03',2078,319,'2005-07-13 01:56:03',2,'2006-02-15 21:30:53'),(4120,'2005-07-07 07:07:03',987,559,'2005-07-16 04:07:03',1,'2006-02-15 21:30:53'),(4121,'2005-07-07 07:13:50',2429,176,'2005-07-13 04:32:50',2,'2006-02-15 21:30:53'),(4122,'2005-07-07 07:15:35',273,31,'2005-07-14 12:10:35',1,'2006-02-15 21:30:53'),(4123,'2005-07-07 07:16:19',2707,469,'2005-07-10 05:23:19',1,'2006-02-15 21:30:53'),(4124,'2005-07-07 07:19:54',2856,330,'2005-07-11 05:54:54',1,'2006-02-15 21:30:53'),(4125,'2005-07-07 07:20:29',4131,269,'2005-07-15 06:41:29',2,'2006-02-15 21:30:53'),(4126,'2005-07-07 07:24:11',3018,163,'2005-07-15 07:31:11',1,'2006-02-15 21:30:53'),(4127,'2005-07-07 07:26:19',1774,15,'2005-07-14 07:50:19',2,'2006-02-15 21:30:53'),(4128,'2005-07-07 07:35:25',3563,492,'2005-07-14 08:13:25',1,'2006-02-15 21:30:53'),(4129,'2005-07-07 07:37:03',1413,592,'2005-07-14 13:31:03',1,'2006-02-15 21:30:53'),(4130,'2005-07-07 07:51:53',4170,256,'2005-07-11 12:41:53',2,'2006-02-15 21:30:53'),(4131,'2005-07-07 07:53:18',2621,58,'2005-07-08 04:48:18',1,'2006-02-15 21:30:53'),(4132,'2005-07-07 08:06:07',993,154,'2005-07-10 14:04:07',1,'2006-02-15 21:30:53'),(4133,'2005-07-07 08:12:26',3672,488,'2005-07-16 03:43:26',1,'2006-02-15 21:30:53'),(4134,'2005-07-07 08:14:24',2917,183,'2005-07-09 10:42:24',1,'2006-02-15 21:30:53'),(4135,'2005-07-07 08:15:03',3384,36,'2005-07-11 10:56:03',1,'2006-02-15 21:30:53'),(4136,'2005-07-07 08:15:52',3461,203,'2005-07-10 04:22:52',2,'2006-02-15 21:30:53'),(4137,'2005-07-07 08:17:06',2065,485,'2005-07-11 10:52:06',2,'2006-02-15 21:30:53'),(4138,'2005-07-07 08:17:13',1588,317,'2005-07-14 05:18:13',2,'2006-02-15 21:30:53'),(4139,'2005-07-07 08:17:35',2094,509,'2005-07-14 14:01:35',2,'2006-02-15 21:30:53'),(4140,'2005-07-07 08:19:10',1897,190,'2005-07-14 07:27:10',2,'2006-02-15 21:30:53'),(4141,'2005-07-07 08:19:20',1904,456,'2005-07-11 06:54:20',1,'2006-02-15 21:30:53'),(4142,'2005-07-07 08:19:45',4045,492,'2005-07-08 13:55:45',1,'2006-02-15 21:30:53'),(4143,'2005-07-07 08:22:07',597,238,'2005-07-13 11:42:07',1,'2006-02-15 21:30:53'),(4144,'2005-07-07 08:25:44',550,431,'2005-07-16 13:10:44',2,'2006-02-15 21:30:53'),(4145,'2005-07-07 08:26:39',3050,592,'2005-07-16 12:54:39',2,'2006-02-15 21:30:53'),(4146,'2005-07-07 08:30:16',176,411,'2005-07-12 07:52:16',1,'2006-02-15 21:30:53'),(4147,'2005-07-07 08:32:12',2776,274,'2005-07-12 10:10:12',2,'2006-02-15 21:30:53'),(4148,'2005-07-07 08:36:58',260,59,'2005-07-09 05:51:58',1,'2006-02-15 21:30:53'),(4149,'2005-07-07 08:40:17',3028,50,'2005-07-10 02:58:17',2,'2006-02-15 21:30:53'),(4150,'2005-07-07 08:43:22',4424,188,'2005-07-08 05:21:22',2,'2006-02-15 21:30:53'),(4151,'2005-07-07 08:49:02',4564,428,'2005-07-11 05:19:02',1,'2006-02-15 21:30:53'),(4152,'2005-07-07 08:50:33',1761,89,'2005-07-14 10:56:33',2,'2006-02-15 21:30:53'),(4153,'2005-07-07 08:53:08',2185,299,'2005-07-11 05:09:08',2,'2006-02-15 21:30:53'),(4154,'2005-07-07 08:58:23',191,594,'2005-07-14 03:16:23',2,'2006-02-15 21:30:53'),(4155,'2005-07-07 09:00:49',212,548,'2005-07-13 10:59:49',2,'2006-02-15 21:30:53'),(4156,'2005-07-07 09:03:51',1259,585,'2005-07-12 09:46:51',2,'2006-02-15 21:30:53'),(4157,'2005-07-07 09:04:26',304,183,'2005-07-08 09:55:26',1,'2006-02-15 21:30:53'),(4158,'2005-07-07 09:05:42',291,433,'2005-07-09 04:28:42',1,'2006-02-15 21:30:53'),(4159,'2005-07-07 09:10:57',3625,62,'2005-07-09 10:19:57',2,'2006-02-15 21:30:53'),(4160,'2005-07-07 09:13:17',1909,326,'2005-07-15 11:50:17',2,'2006-02-15 21:30:53'),(4161,'2005-07-07 09:15:11',4021,216,'2005-07-15 06:59:11',1,'2006-02-15 21:30:53'),(4162,'2005-07-07 09:17:26',745,571,'2005-07-15 10:15:26',2,'2006-02-15 21:30:53'),(4163,'2005-07-07 09:19:28',3176,376,'2005-07-10 06:47:28',2,'2006-02-15 21:30:53'),(4164,'2005-07-07 09:20:11',3133,295,'2005-07-14 09:35:11',1,'2006-02-15 21:30:53'),(4165,'2005-07-07 09:23:27',3845,66,'2005-07-15 06:00:27',1,'2006-02-15 21:30:53'),(4166,'2005-07-07 09:33:30',3267,376,'2005-07-16 06:06:30',1,'2006-02-15 21:30:53'),(4167,'2005-07-07 09:37:08',3771,175,'2005-07-16 06:16:08',2,'2006-02-15 21:30:53'),(4168,'2005-07-07 09:37:24',1872,132,'2005-07-09 14:32:24',2,'2006-02-15 21:30:53'),(4169,'2005-07-07 09:39:18',3360,580,'2005-07-11 13:43:18',1,'2006-02-15 21:30:53'),(4170,'2005-07-07 09:44:36',2665,99,'2005-07-13 14:10:36',1,'2006-02-15 21:30:53'),(4171,'2005-07-07 09:49:04',4199,476,'2005-07-14 03:58:04',2,'2006-02-15 21:30:53'),(4172,'2005-07-07 09:49:09',1158,309,'2005-07-11 15:14:09',2,'2006-02-15 21:30:53'),(4173,'2005-07-07 09:57:26',4272,320,'2005-07-10 04:05:26',1,'2006-02-15 21:30:53'),(4174,'2005-07-07 09:59:49',3814,182,'2005-07-11 13:34:49',1,'2006-02-15 21:30:53'),(4175,'2005-07-07 10:02:03',1979,8,'2005-07-10 06:09:03',2,'2006-02-15 21:30:53'),(4176,'2005-07-07 10:03:34',2745,420,'2005-07-16 08:43:34',1,'2006-02-15 21:30:53'),(4177,'2005-07-07 10:12:36',4106,317,'2005-07-15 15:48:36',2,'2006-02-15 21:30:53'),(4178,'2005-07-07 10:14:31',2898,513,'2005-07-12 09:38:31',2,'2006-02-15 21:30:53'),(4179,'2005-07-07 10:17:15',559,75,'2005-07-10 05:12:15',2,'2006-02-15 21:30:53'),(4180,'2005-07-07 10:23:25',1704,3,'2005-07-10 13:18:25',1,'2006-02-15 21:30:53'),(4181,'2005-07-07 10:27:54',3725,598,'2005-07-13 06:09:54',1,'2006-02-15 21:30:53'),(4182,'2005-07-07 10:28:00',3080,256,'2005-07-08 12:50:00',1,'2006-02-15 21:30:53'),(4183,'2005-07-07 10:28:33',3342,479,'2005-07-15 12:29:33',1,'2006-02-15 21:30:53'),(4184,'2005-07-07 10:30:08',1022,468,'2005-07-14 12:56:08',1,'2006-02-15 21:30:53'),(4185,'2005-07-07 10:31:05',2425,395,'2005-07-13 05:30:05',2,'2006-02-15 21:30:53'),(4186,'2005-07-07 10:32:25',3910,185,'2005-07-15 06:22:25',1,'2006-02-15 21:30:53'),(4187,'2005-07-07 10:41:31',2,161,'2005-07-11 06:25:31',1,'2006-02-15 21:30:53'),(4188,'2005-07-07 10:45:29',3243,391,'2005-07-16 09:39:29',1,'2006-02-15 21:30:53'),(4189,'2005-07-07 10:51:07',1492,386,'2005-07-14 14:46:07',2,'2006-02-15 21:30:53'),(4190,'2005-07-07 10:52:39',826,349,'2005-07-11 13:19:39',1,'2006-02-15 21:30:53'),(4191,'2005-07-07 10:56:14',2475,390,'2005-07-11 09:56:14',1,'2006-02-15 21:30:53'),(4192,'2005-07-07 10:57:06',624,558,'2005-07-13 16:30:06',1,'2006-02-15 21:30:53'),(4193,'2005-07-07 10:57:21',3791,445,'2005-07-09 07:33:21',2,'2006-02-15 21:30:53'),(4194,'2005-07-07 10:59:39',1753,153,'2005-07-15 09:34:39',1,'2006-02-15 21:30:53'),(4195,'2005-07-07 11:00:02',450,455,'2005-07-14 16:54:02',1,'2006-02-15 21:30:53'),(4196,'2005-07-07 11:06:33',3407,564,'2005-07-14 13:46:33',1,'2006-02-15 21:30:53'),(4197,'2005-07-07 11:07:52',2515,324,'2005-07-10 10:19:52',1,'2006-02-15 21:30:53'),(4198,'2005-07-07 11:08:11',333,247,'2005-07-16 15:29:11',1,'2006-02-15 21:30:53'),(4199,'2005-07-07 11:13:07',2120,259,'2005-07-11 07:17:07',1,'2006-02-15 21:30:53'),(4200,'2005-07-07 11:15:11',1097,292,'2005-07-11 11:46:11',2,'2006-02-15 21:30:53'),(4201,'2005-07-07 11:19:51',3682,145,'2005-07-16 08:48:51',1,'2006-02-15 21:30:53'),(4202,'2005-07-07 11:23:48',2274,38,'2005-07-16 16:32:48',1,'2006-02-15 21:30:53'),(4203,'2005-07-07 11:24:14',2743,189,'2005-07-11 16:26:14',1,'2006-02-15 21:30:53'),(4204,'2005-07-07 11:24:18',1513,569,'2005-07-15 12:42:18',1,'2006-02-15 21:30:53'),(4205,'2005-07-07 11:25:39',3922,486,'2005-07-11 06:12:39',1,'2006-02-15 21:30:53'),(4206,'2005-07-07 11:32:16',1557,448,'2005-07-14 13:07:16',2,'2006-02-15 21:30:53'),(4207,'2005-07-07 11:32:45',1119,588,'2005-07-14 05:49:45',2,'2006-02-15 21:30:53'),(4208,'2005-07-07 11:34:22',3617,441,'2005-07-09 08:25:22',1,'2006-02-15 21:30:53'),(4209,'2005-07-07 11:35:08',2010,100,'2005-07-10 10:58:08',1,'2006-02-15 21:30:53'),(4210,'2005-07-07 11:36:20',1972,581,'2005-07-16 12:38:20',1,'2006-02-15 21:30:53'),(4211,'2005-07-07 11:50:41',2001,214,'2005-07-09 13:58:41',2,'2006-02-15 21:30:53'),(4212,'2005-07-07 11:53:14',1825,574,'2005-07-09 07:12:14',1,'2006-02-15 21:30:53'),(4213,'2005-07-07 11:53:49',705,103,'2005-07-13 07:51:49',1,'2006-02-15 21:30:53'),(4214,'2005-07-07 11:54:33',2534,484,'2005-07-08 10:49:33',2,'2006-02-15 21:30:53'),(4215,'2005-07-07 12:00:52',1239,22,'2005-07-11 15:14:52',2,'2006-02-15 21:30:53'),(4216,'2005-07-07 12:01:34',1216,467,'2005-07-08 09:59:34',1,'2006-02-15 21:30:53'),(4217,'2005-07-07 12:08:59',3186,228,'2005-07-11 15:07:59',2,'2006-02-15 21:30:53'),(4218,'2005-07-07 12:10:24',152,497,'2005-07-15 16:09:24',1,'2006-02-15 21:30:53'),(4219,'2005-07-07 12:11:22',2800,16,'2005-07-11 11:05:22',1,'2006-02-15 21:30:53'),(4220,'2005-07-07 12:12:36',821,513,'2005-07-10 13:37:36',1,'2006-02-15 21:30:53'),(4221,'2005-07-07 12:18:57',4567,143,'2005-07-12 09:47:57',2,'2006-02-15 21:30:53'),(4222,'2005-07-07 12:20:21',2053,467,'2005-07-11 11:09:21',2,'2006-02-15 21:30:53'),(4223,'2005-07-07 12:23:54',2407,405,'2005-07-10 14:46:54',2,'2006-02-15 21:30:53'),(4224,'2005-07-07 12:24:21',3659,419,'2005-07-10 11:48:21',1,'2006-02-15 21:30:53'),(4225,'2005-07-07 12:24:37',1766,377,'2005-07-12 06:47:37',2,'2006-02-15 21:30:53'),(4226,'2005-07-07 12:37:56',1692,57,'2005-07-09 08:48:56',2,'2006-02-15 21:30:53'),(4227,'2005-07-07 12:41:36',4186,78,'2005-07-15 12:33:36',1,'2006-02-15 21:30:53'),(4228,'2005-07-07 12:42:02',1020,38,'2005-07-12 10:52:02',1,'2006-02-15 21:30:53'),(4229,'2005-07-07 12:43:23',953,106,'2005-07-13 15:00:23',2,'2006-02-15 21:30:53'),(4230,'2005-07-07 12:46:47',353,205,'2005-07-15 06:52:47',1,'2006-02-15 21:30:53'),(4231,'2005-07-07 12:48:19',3522,194,'2005-07-13 18:45:19',1,'2006-02-15 21:30:53'),(4232,'2005-07-07 12:49:12',3841,347,'2005-07-15 16:45:12',1,'2006-02-15 21:30:53'),(4233,'2005-07-07 13:00:20',1849,488,'2005-07-13 16:37:20',1,'2006-02-15 21:30:53'),(4234,'2005-07-07 13:01:35',1179,195,'2005-07-15 13:05:35',1,'2006-02-15 21:30:53'),(4235,'2005-07-07 13:05:52',3525,86,'2005-07-10 12:17:52',2,'2006-02-15 21:30:53'),(4236,'2005-07-07 13:12:07',642,213,'2005-07-08 15:00:07',2,'2006-02-15 21:30:53'),(4237,'2005-07-07 13:16:55',3773,477,'2005-07-15 16:33:55',1,'2006-02-15 21:30:53'),(4238,'2005-07-07 13:22:20',3024,7,'2005-07-10 07:44:20',2,'2006-02-15 21:30:53'),(4239,'2005-07-07 13:23:17',3866,122,'2005-07-13 17:49:17',1,'2006-02-15 21:30:53'),(4240,'2005-07-07 13:33:12',1024,65,'2005-07-13 12:28:12',1,'2006-02-15 21:30:53'),(4241,'2005-07-07 13:39:00',4154,595,'2005-07-12 17:49:00',2,'2006-02-15 21:30:53'),(4242,'2005-07-07 13:39:01',3626,286,'2005-07-12 18:29:01',1,'2006-02-15 21:30:53'),(4243,'2005-07-07 13:39:58',4559,339,'2005-07-12 19:27:58',1,'2006-02-15 21:30:53'),(4244,'2005-07-07 13:41:58',592,581,'2005-07-09 15:32:58',2,'2006-02-15 21:30:53'),(4245,'2005-07-07 13:48:33',3743,91,'2005-07-10 09:54:33',1,'2006-02-15 21:30:53'),(4246,'2005-07-07 13:49:03',1141,411,'2005-07-09 13:01:03',1,'2006-02-15 21:30:53'),(4247,'2005-07-07 13:51:54',808,539,'2005-07-10 09:43:54',2,'2006-02-15 21:30:53'),(4248,'2005-07-07 13:59:20',773,161,'2005-07-14 15:18:20',2,'2006-02-15 21:30:53'),(4249,'2005-07-07 14:05:17',4185,111,'2005-07-10 09:21:17',2,'2006-02-15 21:30:53'),(4250,'2005-07-07 14:08:11',2556,423,'2005-07-13 08:09:11',2,'2006-02-15 21:30:53'),(4251,'2005-07-07 14:11:55',3541,367,'2005-07-16 14:01:55',2,'2006-02-15 21:30:53'),(4252,'2005-07-07 14:13:05',474,154,'2005-07-09 14:17:05',1,'2006-02-15 21:30:53'),(4253,'2005-07-07 14:13:13',3355,157,'2005-07-16 18:55:13',2,'2006-02-15 21:30:53'),(4254,'2005-07-07 14:13:52',3957,529,'2005-07-12 10:39:52',2,'2006-02-15 21:30:53'),(4255,'2005-07-07 14:14:13',749,10,'2005-07-12 18:32:13',1,'2006-02-15 21:30:53'),(4256,'2005-07-07 14:14:36',1386,129,'2005-07-10 09:41:36',1,'2006-02-15 21:30:53'),(4257,'2005-07-07 14:18:41',3927,553,'2005-07-08 14:58:41',1,'2006-02-15 21:30:53'),(4258,'2005-07-07 14:20:59',1562,492,'2005-07-16 10:03:59',1,'2006-02-15 21:30:53'),(4259,'2005-07-07 14:22:18',4378,467,'2005-07-11 19:38:18',1,'2006-02-15 21:30:53'),(4260,'2005-07-07 14:22:45',4575,305,'2005-07-08 15:10:45',2,'2006-02-15 21:30:53'),(4261,'2005-07-07 14:23:56',1405,496,'2005-07-13 15:26:56',1,'2006-02-15 21:30:53'),(4262,'2005-07-07 14:24:30',3122,29,'2005-07-14 13:12:30',1,'2006-02-15 21:30:53'),(4263,'2005-07-07 14:24:44',2975,16,'2005-07-13 18:22:44',1,'2006-02-15 21:30:53'),(4264,'2005-07-07 14:25:28',3499,406,'2005-07-08 08:49:28',2,'2006-02-15 21:30:53'),(4265,'2005-07-07 14:27:51',1685,69,'2005-07-12 19:55:51',2,'2006-02-15 21:30:53'),(4266,'2005-07-07 14:34:50',1578,509,'2005-07-08 09:23:50',2,'2006-02-15 21:30:53'),(4267,'2005-07-07 14:35:30',136,410,'2005-07-11 10:41:30',1,'2006-02-15 21:30:53'),(4268,'2005-07-07 14:36:05',432,80,'2005-07-16 14:36:05',1,'2006-02-15 21:30:53'),(4269,'2005-07-07 14:38:33',415,496,'2005-07-09 10:27:33',1,'2006-02-15 21:30:53'),(4270,'2005-07-07 14:38:41',183,210,'2005-07-10 19:07:41',2,'2006-02-15 21:30:53'),(4271,'2005-07-07 14:38:52',533,150,'2005-07-15 12:05:52',1,'2006-02-15 21:30:53'),(4272,'2005-07-07 14:39:20',488,120,'2005-07-13 08:57:20',2,'2006-02-15 21:30:53'),(4273,'2005-07-07 14:40:22',4163,159,'2005-07-13 09:58:22',2,'2006-02-15 21:30:53'),(4274,'2005-07-07 14:42:04',787,26,'2005-07-13 20:23:04',1,'2006-02-15 21:30:53'),(4275,'2005-07-07 14:43:51',1167,393,'2005-07-15 18:04:51',2,'2006-02-15 21:30:53'),(4276,'2005-07-07 14:50:59',221,366,'2005-07-09 15:42:59',2,'2006-02-15 21:30:53'),(4277,'2005-07-07 14:52:12',1983,106,'2005-07-09 13:10:12',1,'2006-02-15 21:30:53'),(4278,'2005-07-07 14:53:24',3693,6,'2005-07-13 14:21:24',2,'2006-02-15 21:30:53'),(4279,'2005-07-07 15:01:53',581,335,'2005-07-08 09:43:53',1,'2006-02-15 21:30:53'),(4280,'2005-07-07 15:09:31',1115,593,'2005-07-13 14:47:31',1,'2006-02-15 21:30:53'),(4281,'2005-07-07 15:17:50',1182,321,'2005-07-08 11:42:50',2,'2006-02-15 21:30:53'),(4282,'2005-07-07 15:26:31',3134,25,'2005-07-11 14:27:31',1,'2006-02-15 21:30:53'),(4283,'2005-07-07 15:29:35',2807,477,'2005-07-11 17:12:35',1,'2006-02-15 21:30:53'),(4284,'2005-07-07 15:31:57',1313,521,'2005-07-09 10:20:57',2,'2006-02-15 21:30:53'),(4285,'2005-07-07 15:34:35',511,308,'2005-07-15 09:43:35',2,'2006-02-15 21:30:53'),(4286,'2005-07-07 15:36:44',4496,111,'2005-07-11 13:04:44',2,'2006-02-15 21:30:53'),(4287,'2005-07-07 15:37:31',3558,94,'2005-07-16 19:59:31',2,'2006-02-15 21:30:53'),(4288,'2005-07-07 15:38:25',1508,64,'2005-07-13 16:23:25',2,'2006-02-15 21:30:53'),(4289,'2005-07-07 15:45:58',3172,231,'2005-07-09 11:11:58',2,'2006-02-15 21:30:53'),(4290,'2005-07-07 15:47:10',4174,277,'2005-07-15 15:03:10',1,'2006-02-15 21:30:53'),(4291,'2005-07-07 15:47:47',2074,298,'2005-07-10 11:45:47',1,'2006-02-15 21:30:53'),(4292,'2005-07-07 15:48:38',3084,401,'2005-07-15 17:53:38',1,'2006-02-15 21:30:53'),(4293,'2005-07-07 15:53:47',984,221,'2005-07-10 18:11:47',1,'2006-02-15 21:30:53'),(4294,'2005-07-07 15:56:23',2845,41,'2005-07-15 14:50:23',2,'2006-02-15 21:30:53'),(4295,'2005-07-07 16:08:51',2490,319,'2005-07-13 13:06:51',2,'2006-02-15 21:30:53'),(4296,'2005-07-07 16:16:03',977,407,'2005-07-08 20:16:03',2,'2006-02-15 21:30:53'),(4297,'2005-07-07 16:24:09',882,141,'2005-07-13 15:08:09',2,'2006-02-15 21:30:53'),(4298,'2005-07-07 16:27:25',1055,560,'2005-07-12 18:20:25',1,'2006-02-15 21:30:53'),(4299,'2005-07-07 16:33:48',870,80,'2005-07-16 11:48:48',1,'2006-02-15 21:30:53'),(4300,'2005-07-07 16:36:16',1189,38,'2005-07-10 13:59:16',2,'2006-02-15 21:30:53'),(4301,'2005-07-07 16:37:23',1630,440,'2005-07-11 18:05:23',2,'2006-02-15 21:30:53'),(4302,'2005-07-07 16:47:53',3669,332,'2005-07-16 22:22:53',2,'2006-02-15 21:30:53'),(4303,'2005-07-07 16:57:32',818,108,'2005-07-14 17:42:32',2,'2006-02-15 21:30:53'),(4304,'2005-07-07 17:01:19',3382,165,'2005-07-12 22:47:19',2,'2006-02-15 21:30:53'),(4305,'2005-07-07 17:07:11',3926,240,'2005-07-08 16:15:11',2,'2006-02-15 21:30:53'),(4306,'2005-07-07 17:12:32',1219,210,'2005-07-16 11:24:32',2,'2006-02-15 21:30:53'),(4307,'2005-07-07 17:20:39',2827,394,'2005-07-16 14:42:39',1,'2006-02-15 21:30:53'),(4308,'2005-07-07 17:29:16',1482,168,'2005-07-11 21:47:16',1,'2006-02-15 21:30:53'),(4309,'2005-07-07 17:29:41',3549,209,'2005-07-14 22:22:41',2,'2006-02-15 21:30:53'),(4310,'2005-07-07 17:30:56',3842,390,'2005-07-12 13:19:56',2,'2006-02-15 21:30:53'),(4311,'2005-07-07 17:31:14',2985,498,'2005-07-11 19:21:14',2,'2006-02-15 21:30:53'),(4312,'2005-07-07 17:34:59',3870,97,'2005-07-09 17:45:59',2,'2006-02-15 21:30:53'),(4313,'2005-07-07 17:36:56',91,29,'2005-07-13 12:00:56',1,'2006-02-15 21:30:53'),(4314,'2005-07-07 17:38:31',539,184,'2005-07-09 20:24:31',1,'2006-02-15 21:30:53'),(4315,'2005-07-07 17:40:26',1472,195,'2005-07-09 22:58:26',2,'2006-02-15 21:30:53'),(4316,'2005-07-07 17:44:22',517,301,'2005-07-14 15:12:22',2,'2006-02-15 21:30:53'),(4317,'2005-07-07 17:44:49',2234,110,'2005-07-08 21:48:49',2,'2006-02-15 21:30:53'),(4318,'2005-07-07 17:47:50',1607,321,'2005-07-14 12:15:50',2,'2006-02-15 21:30:53'),(4319,'2005-07-07 17:50:27',3389,25,'2005-07-10 13:53:27',2,'2006-02-15 21:30:53'),(4320,'2005-07-07 17:51:59',3437,376,'2005-07-13 18:39:59',1,'2006-02-15 21:30:53'),(4321,'2005-07-07 17:52:38',612,91,'2005-07-11 23:37:38',1,'2006-02-15 21:30:53'),(4322,'2005-07-07 17:54:37',1522,568,'2005-07-14 13:56:37',1,'2006-02-15 21:30:53'),(4323,'2005-07-07 17:55:53',1287,336,'2005-07-13 16:43:53',2,'2006-02-15 21:30:53'),(4324,'2005-07-07 17:57:56',952,226,'2005-07-13 22:34:56',1,'2006-02-15 21:30:53'),(4325,'2005-07-07 17:59:24',3728,373,'2005-07-16 17:10:24',2,'2006-02-15 21:30:53'),(4326,'2005-07-07 18:01:22',4037,331,'2005-07-16 15:45:22',1,'2006-02-15 21:30:53'),(4327,'2005-07-07 18:01:39',860,73,'2005-07-12 22:40:39',1,'2006-02-15 21:30:53'),(4328,'2005-07-07 18:03:17',2174,264,'2005-07-14 16:14:17',1,'2006-02-15 21:30:53'),(4329,'2005-07-07 18:04:16',638,504,'2005-07-15 17:58:16',2,'2006-02-15 21:30:53'),(4330,'2005-07-07 18:09:41',2408,408,'2005-07-14 22:05:41',1,'2006-02-15 21:30:53'),(4331,'2005-07-07 18:22:30',419,535,'2005-07-13 18:20:30',1,'2006-02-15 21:30:53'),(4332,'2005-07-07 18:25:26',1714,137,'2005-07-16 15:05:26',1,'2006-02-15 21:30:53'),(4333,'2005-07-07 18:31:50',76,113,'2005-07-08 21:26:50',1,'2006-02-15 21:30:53'),(4334,'2005-07-07 18:32:04',3021,210,'2005-07-08 16:19:04',1,'2006-02-15 21:30:53'),(4335,'2005-07-07 18:33:57',1332,375,'2005-07-11 13:23:57',1,'2006-02-15 21:30:53'),(4336,'2005-07-07 18:34:36',482,532,'2005-07-10 17:58:36',2,'2006-02-15 21:30:53'),(4337,'2005-07-07 18:36:37',2313,464,'2005-07-14 14:59:37',2,'2006-02-15 21:30:53'),(4338,'2005-07-07 18:39:56',3152,581,'2005-07-12 21:03:56',1,'2006-02-15 21:30:53'),(4339,'2005-07-07 18:41:42',3215,130,'2005-07-08 13:00:42',1,'2006-02-15 21:30:53'),(4340,'2005-07-07 18:41:46',3919,227,'2005-07-16 21:27:46',1,'2006-02-15 21:30:53'),(4341,'2005-07-07 18:44:23',4523,124,'2005-07-15 18:13:23',1,'2006-02-15 21:30:53'),(4342,'2005-07-07 18:47:03',1355,120,'2005-07-09 21:59:03',2,'2006-02-15 21:30:53'),(4343,'2005-07-07 18:48:54',1926,293,'2005-07-12 15:19:54',1,'2006-02-15 21:30:53'),(4344,'2005-07-07 18:50:47',1185,99,'2005-07-12 16:38:47',2,'2006-02-15 21:30:53'),(4345,'2005-07-07 18:52:57',2235,225,'2005-07-15 21:24:57',2,'2006-02-15 21:30:53'),(4346,'2005-07-07 18:58:45',1906,520,'2005-07-10 16:37:45',1,'2006-02-15 21:30:53'),(4347,'2005-07-07 18:58:57',1964,344,'2005-07-14 16:35:57',2,'2006-02-15 21:30:53'),(4348,'2005-07-07 19:02:05',1948,452,'2005-07-09 20:51:05',2,'2006-02-15 21:30:53'),(4349,'2005-07-07 19:02:37',3430,182,'2005-07-09 17:25:37',2,'2006-02-15 21:30:53'),(4350,'2005-07-07 19:02:41',2223,299,'2005-07-09 15:27:41',1,'2006-02-15 21:30:53'),(4351,'2005-07-07 19:04:24',3567,382,'2005-07-14 00:03:24',2,'2006-02-15 21:30:53'),(4352,'2005-07-07 19:15:58',2636,249,'2005-07-16 20:22:58',2,'2006-02-15 21:30:53'),(4353,'2005-07-07 19:19:05',368,452,'2005-07-13 13:40:05',1,'2006-02-15 21:30:53'),(4354,'2005-07-07 19:21:02',4423,208,'2005-07-15 17:03:02',2,'2006-02-15 21:30:53'),(4355,'2005-07-07 19:21:19',4557,438,'2005-07-09 00:55:19',2,'2006-02-15 21:30:53'),(4356,'2005-07-07 19:21:22',1907,318,'2005-07-16 15:57:22',1,'2006-02-15 21:30:53'),(4357,'2005-07-07 19:24:39',3413,103,'2005-07-12 00:11:39',1,'2006-02-15 21:30:53'),(4358,'2005-07-07 19:27:04',3136,446,'2005-07-14 23:46:04',1,'2006-02-15 21:30:53'),(4359,'2005-07-07 19:30:20',3222,282,'2005-07-09 13:34:20',1,'2006-02-15 21:30:53'),(4360,'2005-07-07 19:31:12',1811,92,'2005-07-10 23:11:12',2,'2006-02-15 21:30:53'),(4361,'2005-07-07 19:33:23',116,425,'2005-07-12 22:36:23',1,'2006-02-15 21:30:53'),(4362,'2005-07-07 19:35:30',3759,425,'2005-07-14 14:59:30',1,'2006-02-15 21:30:53'),(4363,'2005-07-07 19:43:28',3202,168,'2005-07-13 00:15:28',2,'2006-02-15 21:30:53'),(4364,'2005-07-07 19:46:51',10,145,'2005-07-08 21:55:51',1,'2006-02-15 21:30:53'),(4365,'2005-07-07 19:47:46',3207,442,'2005-07-08 23:21:46',2,'2006-02-15 21:30:53'),(4366,'2005-07-07 19:48:36',2961,524,'2005-07-14 01:14:36',1,'2006-02-15 21:30:53'),(4367,'2005-07-07 19:52:01',4529,48,'2005-07-13 19:41:01',2,'2006-02-15 21:30:53'),(4368,'2005-07-07 19:55:19',736,324,'2005-07-09 00:11:19',1,'2006-02-15 21:30:53'),(4369,'2005-07-07 20:01:38',3552,517,'2005-07-13 01:19:38',2,'2006-02-15 21:30:53'),(4370,'2005-07-07 20:05:36',1591,559,'2005-07-16 23:58:36',1,'2006-02-15 21:30:53'),(4371,'2005-07-07 20:06:45',2533,90,'2005-07-08 18:50:45',1,'2006-02-15 21:30:53'),(4372,'2005-07-07 20:09:01',2207,252,'2005-07-09 18:24:01',1,'2006-02-15 21:30:53'),(4373,'2005-07-07 20:10:59',3593,470,'2005-07-12 21:30:59',2,'2006-02-15 21:30:53'),(4374,'2005-07-07 20:13:58',4377,517,'2005-07-11 18:11:58',2,'2006-02-15 21:30:53'),(4375,'2005-07-07 20:20:29',3035,560,'2005-07-16 19:29:29',2,'2006-02-15 21:30:53'),(4376,'2005-07-07 20:24:33',1344,151,'2005-07-11 18:32:33',1,'2006-02-15 21:30:53'),(4377,'2005-07-07 20:28:57',3294,205,'2005-07-16 02:13:57',2,'2006-02-15 21:30:53'),(4378,'2005-07-07 20:29:08',1244,24,'2005-07-12 19:17:08',2,'2006-02-15 21:30:53'),(4379,'2005-07-07 20:32:30',2773,316,'2005-07-11 20:40:30',2,'2006-02-15 21:30:53'),(4380,'2005-07-07 20:35:00',3164,353,'2005-07-14 17:06:00',1,'2006-02-15 21:30:53'),(4381,'2005-07-07 20:37:53',3727,486,'2005-07-10 16:54:53',1,'2006-02-15 21:30:53'),(4382,'2005-07-07 20:41:03',657,26,'2005-07-14 15:15:03',1,'2006-02-15 21:30:53'),(4383,'2005-07-07 20:45:51',2649,591,'2005-07-17 00:52:51',2,'2006-02-15 21:30:53'),(4384,'2005-07-07 20:46:45',1178,59,'2005-07-16 21:54:45',1,'2006-02-15 21:30:53'),(4385,'2005-07-07 20:48:38',849,564,'2005-07-11 17:03:38',2,'2006-02-15 21:30:53'),(4386,'2005-07-07 20:55:19',499,314,'2005-07-10 21:51:19',1,'2006-02-15 21:30:53'),(4387,'2005-07-07 20:56:47',591,335,'2005-07-16 00:51:47',1,'2006-02-15 21:30:53'),(4388,'2005-07-07 20:58:03',3150,210,'2005-07-16 20:05:03',2,'2006-02-15 21:30:53'),(4389,'2005-07-07 20:58:58',1672,166,'2005-07-13 19:57:58',2,'2006-02-15 21:30:53'),(4390,'2005-07-07 20:59:06',6,44,'2005-07-09 00:04:06',2,'2006-02-15 21:30:53'),(4391,'2005-07-07 21:09:38',2135,42,'2005-07-09 17:35:38',1,'2006-02-15 21:30:53'),(4392,'2005-07-07 21:11:02',4236,491,'2005-07-13 21:52:02',1,'2006-02-15 21:30:53'),(4393,'2005-07-07 21:12:36',4034,395,'2005-07-09 22:41:36',2,'2006-02-15 21:30:53'),(4394,'2005-07-07 21:12:45',563,156,'2005-07-16 18:24:45',2,'2006-02-15 21:30:53'),(4395,'2005-07-07 21:13:22',360,544,'2005-07-08 22:59:22',2,'2006-02-15 21:30:53'),(4396,'2005-07-07 21:14:19',750,275,'2005-07-10 19:22:19',1,'2006-02-15 21:30:53'),(4397,'2005-07-07 21:14:54',3085,494,'2005-07-13 19:24:54',2,'2006-02-15 21:30:53'),(4398,'2005-07-07 21:18:44',3628,426,'2005-07-10 22:45:44',1,'2006-02-15 21:30:53'),(4399,'2005-07-07 21:20:28',4515,402,'2005-07-12 20:57:28',2,'2006-02-15 21:30:53'),(4400,'2005-07-07 21:22:26',49,370,'2005-07-16 00:59:26',2,'2006-02-15 21:30:53'),(4401,'2005-07-07 21:26:27',2725,405,'2005-07-12 17:18:27',2,'2006-02-15 21:30:53'),(4402,'2005-07-07 21:28:46',1198,26,'2005-07-08 17:04:46',1,'2006-02-15 21:30:53'),(4403,'2005-07-07 21:29:40',3973,447,'2005-07-09 17:58:40',1,'2006-02-15 21:30:53'),(4404,'2005-07-07 21:31:53',944,25,'2005-07-13 19:00:53',1,'2006-02-15 21:30:53'),(4405,'2005-07-07 21:33:16',2102,145,'2005-07-15 00:33:16',2,'2006-02-15 21:30:53'),(4406,'2005-07-07 21:35:16',438,448,'2005-07-15 16:13:16',2,'2006-02-15 21:30:53'),(4407,'2005-07-07 21:39:45',267,20,'2005-07-11 23:40:45',1,'2006-02-15 21:30:53'),(4408,'2005-07-07 21:41:06',2482,258,'2005-07-11 00:32:06',1,'2006-02-15 21:30:53'),(4409,'2005-07-07 21:47:29',3153,8,'2005-07-11 20:14:29',2,'2006-02-15 21:30:53'),(4410,'2005-07-07 21:48:16',2754,584,'2005-07-09 03:15:16',1,'2006-02-15 21:30:53'),(4411,'2005-07-07 21:54:58',320,224,'2005-07-14 16:14:58',2,'2006-02-15 21:30:53'),(4412,'2005-07-07 21:56:53',1181,282,'2005-07-11 19:28:53',1,'2006-02-15 21:30:53'),(4413,'2005-07-07 22:00:04',1062,565,'2005-07-10 18:20:04',2,'2006-02-15 21:30:53'),(4414,'2005-07-07 22:00:21',991,434,'2005-07-12 02:51:21',1,'2006-02-15 21:30:53'),(4415,'2005-07-07 22:01:43',1403,329,'2005-07-13 03:09:43',2,'2006-02-15 21:30:53'),(4416,'2005-07-07 22:04:36',1247,290,'2005-07-09 02:44:36',2,'2006-02-15 21:30:53'),(4417,'2005-07-07 22:05:05',743,452,'2005-07-09 16:16:05',2,'2006-02-15 21:30:53'),(4418,'2005-07-07 22:05:30',4368,417,'2005-07-11 18:42:30',1,'2006-02-15 21:30:53'),(4419,'2005-07-07 22:06:24',783,39,'2005-07-15 23:59:24',1,'2006-02-15 21:30:53'),(4420,'2005-07-07 22:07:31',4427,346,'2005-07-12 19:14:31',2,'2006-02-15 21:30:53'),(4421,'2005-07-07 22:07:55',4103,417,'2005-07-16 20:21:55',1,'2006-02-15 21:30:53'),(4422,'2005-07-07 22:09:45',1741,345,'2005-07-10 01:43:45',1,'2006-02-15 21:30:53'),(4423,'2005-07-07 22:11:28',2721,526,'2005-07-14 18:49:28',2,'2006-02-15 21:30:53'),(4424,'2005-07-07 22:14:43',662,384,'2005-07-11 01:17:43',1,'2006-02-15 21:30:53'),(4425,'2005-07-07 22:22:44',877,345,'2005-07-08 22:23:44',2,'2006-02-15 21:30:53'),(4426,'2005-07-07 22:28:32',364,242,'2005-07-16 02:04:32',1,'2006-02-15 21:30:53'),(4427,'2005-07-07 22:28:51',1021,69,'2005-07-11 21:37:51',2,'2006-02-15 21:30:53'),(4428,'2005-07-07 22:29:40',2575,181,'2005-07-11 02:46:40',2,'2006-02-15 21:30:53'),(4429,'2005-07-07 22:32:47',2949,187,'2005-07-15 03:10:47',2,'2006-02-15 21:30:53'),(4430,'2005-07-07 22:35:24',3436,278,'2005-07-14 23:49:24',1,'2006-02-15 21:30:53'),(4431,'2005-07-07 22:39:02',936,26,'2005-07-16 19:24:02',1,'2006-02-15 21:30:53'),(4432,'2005-07-07 22:40:02',2779,295,'2005-07-15 01:46:02',1,'2006-02-15 21:30:53'),(4433,'2005-07-07 22:45:41',88,449,'2005-07-16 23:30:41',2,'2006-02-15 21:30:53'),(4434,'2005-07-07 22:48:34',1801,32,'2005-07-09 18:55:34',1,'2006-02-15 21:30:53'),(4435,'2005-07-07 22:51:04',3815,157,'2005-07-14 23:15:04',2,'2006-02-15 21:30:53'),(4436,'2005-07-07 22:52:04',4326,563,'2005-07-10 04:51:04',1,'2006-02-15 21:30:53'),(4437,'2005-07-07 22:55:41',3578,414,'2005-07-13 19:40:41',1,'2006-02-15 21:30:53'),(4438,'2005-07-07 22:56:17',4371,104,'2005-07-16 17:28:17',1,'2006-02-15 21:30:53'),(4439,'2005-07-07 22:57:30',2393,521,'2005-07-10 18:28:30',1,'2006-02-15 21:30:53'),(4440,'2005-07-07 23:00:58',1236,507,'2005-07-08 21:31:58',2,'2006-02-15 21:30:53'),(4441,'2005-07-07 23:04:23',3680,211,'2005-07-13 19:07:23',1,'2006-02-15 21:30:53'),(4442,'2005-07-07 23:05:30',461,123,'2005-07-13 22:20:30',2,'2006-02-15 21:30:53'),(4443,'2005-07-07 23:05:53',72,389,'2005-07-16 01:46:53',1,'2006-02-15 21:30:53'),(4444,'2005-07-07 23:07:44',764,529,'2005-07-14 02:51:44',2,'2006-02-15 21:30:53'),(4445,'2005-07-07 23:08:22',3328,327,'2005-07-16 03:49:22',1,'2006-02-15 21:30:53'),(4446,'2005-07-07 23:12:16',2629,438,'2005-07-13 19:42:16',1,'2006-02-15 21:30:53'),(4447,'2005-07-07 23:15:28',404,549,'2005-07-14 22:53:28',2,'2006-02-15 21:30:53'),(4448,'2005-07-07 23:17:12',2768,536,'2005-07-13 18:26:12',1,'2006-02-15 21:30:53'),(4449,'2005-07-07 23:18:58',2813,354,'2005-07-15 20:40:58',2,'2006-02-15 21:30:53'),(4450,'2005-07-07 23:20:05',1252,345,'2005-07-13 19:50:05',2,'2006-02-15 21:30:53'),(4451,'2005-07-07 23:29:54',179,85,'2005-07-10 23:29:54',2,'2006-02-15 21:30:53'),(4452,'2005-07-07 23:31:54',2414,460,'2005-07-14 04:05:54',1,'2006-02-15 21:30:53'),(4453,'2005-07-07 23:32:39',89,560,'2005-07-12 01:38:39',2,'2006-02-15 21:30:53'),(4454,'2005-07-07 23:37:00',1395,9,'2005-07-11 02:30:00',1,'2006-02-15 21:30:53'),(4455,'2005-07-07 23:43:46',1396,507,'2005-07-08 21:34:46',2,'2006-02-15 21:30:53'),(4456,'2005-07-07 23:45:21',3395,421,'2005-07-13 23:03:21',2,'2006-02-15 21:30:53'),(4457,'2005-07-07 23:45:38',407,567,'2005-07-09 20:02:38',1,'2006-02-15 21:30:53'),(4458,'2005-07-07 23:47:47',1307,229,'2005-07-09 19:17:47',2,'2006-02-15 21:30:53'),(4459,'2005-07-07 23:48:52',3987,227,'2005-07-13 19:37:52',2,'2006-02-15 21:30:53'),(4460,'2005-07-07 23:50:14',4121,592,'2005-07-09 21:55:14',1,'2006-02-15 21:30:53'),(4461,'2005-07-07 23:59:43',3656,286,'2005-07-16 19:44:43',2,'2006-02-15 21:30:53'),(4462,'2005-07-08 00:02:49',4120,257,'2005-07-15 20:48:49',2,'2006-02-15 21:30:53'),(4463,'2005-07-08 00:04:59',4356,422,'2005-07-16 01:19:59',1,'2006-02-15 21:30:53'),(4464,'2005-07-08 00:07:18',4484,583,'2005-07-08 22:14:18',2,'2006-02-15 21:30:53'),(4465,'2005-07-08 00:07:45',2877,329,'2005-07-13 18:08:45',2,'2006-02-15 21:30:53'),(4466,'2005-07-08 00:12:53',3320,304,'2005-07-17 03:49:53',2,'2006-02-15 21:30:53'),(4467,'2005-07-08 00:13:52',4466,339,'2005-07-09 00:52:52',1,'2006-02-15 21:30:53'),(4468,'2005-07-08 00:17:59',3302,170,'2005-07-12 05:51:59',2,'2006-02-15 21:30:53'),(4469,'2005-07-08 00:18:32',2173,192,'2005-07-12 21:17:32',2,'2006-02-15 21:30:53'),(4470,'2005-07-08 00:20:57',3605,145,'2005-07-10 02:31:57',1,'2006-02-15 21:30:53'),(4471,'2005-07-08 00:21:29',263,30,'2005-07-11 18:48:29',2,'2006-02-15 21:30:53'),(4472,'2005-07-08 00:22:06',2089,343,'2005-07-16 20:16:06',1,'2006-02-15 21:30:53'),(4473,'2005-07-08 00:22:10',1387,481,'2005-07-09 21:11:10',1,'2006-02-15 21:30:53'),(4474,'2005-07-08 00:26:56',4474,137,'2005-07-12 23:07:56',1,'2006-02-15 21:30:53'),(4475,'2005-07-08 00:27:30',3466,340,'2005-07-09 05:39:30',1,'2006-02-15 21:30:53'),(4476,'2005-07-08 00:34:25',395,279,'2005-07-08 22:55:25',1,'2006-02-15 21:30:53'),(4477,'2005-07-08 00:38:24',1602,552,'2005-07-13 05:14:24',1,'2006-02-15 21:30:53'),(4478,'2005-07-08 00:39:08',1764,357,'2005-07-11 21:57:08',2,'2006-02-15 21:30:53'),(4479,'2005-07-08 00:52:35',3516,211,'2005-07-09 20:19:35',2,'2006-02-15 21:30:53'),(4480,'2005-07-08 00:56:30',4457,296,'2005-07-10 20:52:30',2,'2006-02-15 21:30:53'),(4481,'2005-07-08 00:58:15',1669,474,'2005-07-11 23:22:15',2,'2006-02-15 21:30:53'),(4482,'2005-07-08 01:01:18',3500,511,'2005-07-11 01:18:18',1,'2006-02-15 21:30:53'),(4483,'2005-07-08 01:03:12',1222,425,'2005-07-17 00:20:12',1,'2006-02-15 21:30:53'),(4484,'2005-07-08 01:05:57',2867,306,'2005-07-16 00:41:57',2,'2006-02-15 21:30:53'),(4485,'2005-07-08 01:07:54',2614,130,'2005-07-16 03:19:54',2,'2006-02-15 21:30:53'),(4486,'2005-07-08 01:09:09',837,197,'2005-07-16 23:40:09',1,'2006-02-15 21:30:53'),(4487,'2005-07-08 01:20:22',2220,360,'2005-07-16 21:23:22',2,'2006-02-15 21:30:53'),(4488,'2005-07-08 01:22:23',2108,89,'2005-07-13 21:17:23',1,'2006-02-15 21:30:53'),(4489,'2005-07-08 01:23:58',4306,259,'2005-07-09 01:35:58',2,'2006-02-15 21:30:53'),(4490,'2005-07-08 01:26:32',2690,161,'2005-07-09 01:13:32',1,'2006-02-15 21:30:53'),(4491,'2005-07-08 01:30:46',1168,413,'2005-07-11 03:12:46',1,'2006-02-15 21:30:53'),(4492,'2005-07-08 01:32:04',1152,247,'2005-07-10 22:11:04',1,'2006-02-15 21:30:53'),(4493,'2005-07-08 01:40:24',1369,167,'2005-07-09 02:17:24',2,'2006-02-15 21:30:53'),(4494,'2005-07-08 01:42:45',1655,349,'2005-07-16 22:29:45',2,'2006-02-15 21:30:53'),(4495,'2005-07-08 01:43:46',3515,404,'2005-07-10 07:38:46',1,'2006-02-15 21:30:53'),(4496,'2005-07-08 01:44:19',150,578,'2005-07-08 20:34:19',2,'2006-02-15 21:30:53'),(4497,'2005-07-08 01:51:32',1995,142,'2005-07-15 22:56:32',1,'2006-02-15 21:30:53'),(4498,'2005-07-08 02:07:50',4299,43,'2005-07-12 23:54:50',2,'2006-02-15 21:30:53'),(4499,'2005-07-08 02:08:48',851,199,'2005-07-10 07:06:48',2,'2006-02-15 21:30:53'),(4500,'2005-07-08 02:10:01',398,462,'2005-07-15 05:49:01',2,'2006-02-15 21:30:53'),(4501,'2005-07-08 02:12:00',1412,262,'2005-07-10 02:16:00',2,'2006-02-15 21:30:53'),(4502,'2005-07-08 02:12:04',225,470,'2005-07-15 02:19:04',2,'2006-02-15 21:30:53'),(4503,'2005-07-08 02:17:12',1503,8,'2005-07-13 08:12:12',1,'2006-02-15 21:30:53'),(4504,'2005-07-08 02:19:27',361,422,'2005-07-12 21:15:27',1,'2006-02-15 21:30:53'),(4505,'2005-07-08 02:20:04',1864,481,'2005-07-14 20:28:04',2,'2006-02-15 21:30:53'),(4506,'2005-07-08 02:22:18',1484,133,'2005-07-13 04:54:18',2,'2006-02-15 21:30:53'),(4507,'2005-07-08 02:22:45',819,505,'2005-07-14 20:53:45',1,'2006-02-15 21:30:53'),(4508,'2005-07-08 02:28:41',3996,97,'2005-07-16 23:59:41',1,'2006-02-15 21:30:53'),(4509,'2005-07-08 02:32:38',1760,230,'2005-07-14 01:05:38',2,'2006-02-15 21:30:53'),(4510,'2005-07-08 02:34:51',1085,27,'2005-07-17 06:03:51',2,'2006-02-15 21:30:53'),(4511,'2005-07-08 02:36:21',4438,75,'2005-07-15 06:01:21',1,'2006-02-15 21:30:53'),(4512,'2005-07-08 02:38:56',1569,424,'2005-07-10 20:46:56',1,'2006-02-15 21:30:53'),(4513,'2005-07-08 02:39:59',3704,182,'2005-07-14 07:48:59',2,'2006-02-15 21:30:53'),(4514,'2005-07-08 02:41:25',1938,576,'2005-07-15 06:17:25',1,'2006-02-15 21:30:53'),(4515,'2005-07-08 02:42:03',1998,229,'2005-07-10 07:22:03',2,'2006-02-15 21:30:53'),(4516,'2005-07-08 02:43:41',2314,497,'2005-07-14 02:20:41',1,'2006-02-15 21:30:53'),(4517,'2005-07-08 02:45:19',453,16,'2005-07-12 03:04:19',2,'2006-02-15 21:30:53'),(4518,'2005-07-08 02:48:36',697,592,'2005-07-13 04:53:36',2,'2006-02-15 21:30:53'),(4519,'2005-07-08 02:51:23',4425,459,'2005-07-12 06:52:23',2,'2006-02-15 21:30:53'),(4520,'2005-07-08 02:53:46',3505,104,'2005-07-08 22:27:46',2,'2006-02-15 21:30:53'),(4521,'2005-07-08 02:57:56',2652,327,'2005-07-11 22:49:56',2,'2006-02-15 21:30:53'),(4522,'2005-07-08 03:03:12',4114,307,'2005-07-10 04:49:12',1,'2006-02-15 21:30:53'),(4523,'2005-07-08 03:06:59',2785,347,'2005-07-17 04:44:59',1,'2006-02-15 21:30:53'),(4524,'2005-07-08 03:10:48',2218,185,'2005-07-09 07:49:48',2,'2006-02-15 21:30:53'),(4525,'2005-07-08 03:15:00',3631,458,'2005-07-11 04:53:00',1,'2006-02-15 21:30:53'),(4526,'2005-07-08 03:17:05',1443,1,'2005-07-14 01:19:05',2,'2006-02-15 21:30:53'),(4527,'2005-07-08 03:20:10',2263,468,'2005-07-15 02:21:10',1,'2006-02-15 21:30:53'),(4528,'2005-07-08 03:24:54',3209,439,'2005-07-09 03:50:54',2,'2006-02-15 21:30:53'),(4529,'2005-07-08 03:26:20',1361,104,'2005-07-16 05:04:20',1,'2006-02-15 21:30:53'),(4530,'2005-07-08 03:27:05',3775,79,'2005-07-11 07:44:05',1,'2006-02-15 21:30:53'),(4531,'2005-07-08 03:27:59',3108,142,'2005-07-10 22:48:59',1,'2006-02-15 21:30:53'),(4532,'2005-07-08 03:30:39',4012,481,'2005-07-11 21:49:39',1,'2006-02-15 21:30:53'),(4533,'2005-07-08 03:32:01',1105,474,'2005-07-10 21:57:01',1,'2006-02-15 21:30:53'),(4534,'2005-07-08 03:36:55',2518,132,'2005-07-16 00:49:55',2,'2006-02-15 21:30:53'),(4535,'2005-07-08 03:40:46',561,29,'2005-07-13 06:53:46',2,'2006-02-15 21:30:53'),(4536,'2005-07-08 03:43:22',220,26,'2005-07-15 08:44:22',1,'2006-02-15 21:30:53'),(4537,'2005-07-08 03:48:40',1305,448,'2005-07-13 22:54:40',2,'2006-02-15 21:30:53'),(4538,'2005-07-08 03:56:29',3638,451,'2005-07-15 08:24:29',1,'2006-02-15 21:30:53'),(4539,'2005-07-08 04:01:02',2450,264,'2005-07-14 22:32:02',1,'2006-02-15 21:30:53'),(4540,'2005-07-08 04:03:28',4160,309,'2005-07-13 03:31:28',2,'2006-02-15 21:30:53'),(4541,'2005-07-08 04:04:19',1976,248,'2005-07-13 07:27:19',2,'2006-02-15 21:30:53'),(4542,'2005-07-08 04:06:30',4169,293,'2005-07-16 06:54:30',2,'2006-02-15 21:30:53'),(4543,'2005-07-08 04:06:55',913,41,'2005-07-12 23:17:55',2,'2006-02-15 21:30:53'),(4544,'2005-07-08 04:11:04',4471,351,'2005-07-09 22:48:04',1,'2006-02-15 21:30:53'),(4545,'2005-07-08 04:17:47',3658,271,'2005-07-13 07:19:47',1,'2006-02-15 21:30:53'),(4546,'2005-07-08 04:18:36',4507,393,'2005-07-17 08:23:36',1,'2006-02-15 21:30:53'),(4547,'2005-07-08 04:20:19',3386,255,'2005-07-09 00:28:19',2,'2006-02-15 21:30:53'),(4548,'2005-07-08 04:21:54',765,164,'2005-07-14 23:16:54',2,'2006-02-15 21:30:53'),(4549,'2005-07-08 04:25:03',2797,98,'2005-07-10 09:01:03',2,'2006-02-15 21:30:53'),(4550,'2005-07-08 04:34:00',615,409,'2005-07-14 23:45:00',2,'2006-02-15 21:30:53'),(4551,'2005-07-08 04:36:21',1160,494,'2005-07-17 10:23:21',2,'2006-02-15 21:30:53'),(4552,'2005-07-08 04:36:35',2549,313,'2005-07-14 05:48:35',2,'2006-02-15 21:30:53'),(4553,'2005-07-08 04:43:41',2114,529,'2005-07-09 23:55:41',1,'2006-02-15 21:30:53'),(4554,'2005-07-08 04:48:03',3878,376,'2005-07-16 04:34:03',1,'2006-02-15 21:30:53'),(4555,'2005-07-08 04:48:36',1757,68,'2005-07-17 07:57:36',1,'2006-02-15 21:30:53'),(4556,'2005-07-08 04:48:41',4099,348,'2005-07-16 08:51:41',2,'2006-02-15 21:30:53'),(4557,'2005-07-08 04:49:15',1191,132,'2005-07-14 00:00:15',2,'2006-02-15 21:30:53'),(4558,'2005-07-08 04:55:26',828,448,'2005-07-09 10:53:26',2,'2006-02-15 21:30:53'),(4559,'2005-07-08 04:56:49',1911,424,'2005-07-12 08:56:49',2,'2006-02-15 21:30:53'),(4560,'2005-07-08 04:58:48',303,36,'2005-07-10 04:27:48',1,'2006-02-15 21:30:53'),(4561,'2005-07-08 05:02:43',1643,500,'2005-07-11 04:56:43',1,'2006-02-15 21:30:53'),(4562,'2005-07-08 05:08:32',963,454,'2005-07-12 08:16:32',2,'2006-02-15 21:30:53'),(4563,'2005-07-08 05:08:55',287,522,'2005-07-16 05:44:55',2,'2006-02-15 21:30:53'),(4564,'2005-07-08 05:09:38',2494,519,'2005-07-11 05:37:38',2,'2006-02-15 21:30:53'),(4565,'2005-07-08 05:12:28',3755,563,'2005-07-17 03:38:28',2,'2006-02-15 21:30:53'),(4566,'2005-07-08 05:18:50',4302,133,'2005-07-15 01:53:50',1,'2006-02-15 21:30:53'),(4567,'2005-07-08 05:20:04',4073,202,'2005-07-10 01:35:04',1,'2006-02-15 21:30:53'),(4568,'2005-07-08 05:23:59',2626,122,'2005-07-09 06:07:59',1,'2006-02-15 21:30:53'),(4569,'2005-07-08 05:30:51',2925,366,'2005-07-14 04:14:51',2,'2006-02-15 21:30:53'),(4570,'2005-07-08 05:33:59',2612,503,'2005-07-14 09:27:59',1,'2006-02-15 21:30:53'),(4571,'2005-07-08 05:34:41',2416,86,'2005-07-17 02:15:41',1,'2006-02-15 21:30:53'),(4572,'2005-07-08 05:36:59',1324,323,'2005-07-12 04:46:59',2,'2006-02-15 21:30:53'),(4573,'2005-07-08 05:38:46',2478,400,'2005-07-15 07:07:46',1,'2006-02-15 21:30:53'),(4574,'2005-07-08 05:39:42',536,257,'2005-07-08 23:44:42',2,'2006-02-15 21:30:53'),(4575,'2005-07-08 05:49:14',231,41,'2005-07-11 04:08:14',2,'2006-02-15 21:30:53'),(4576,'2005-07-08 05:51:19',1920,567,'2005-07-10 11:36:19',1,'2006-02-15 21:30:53'),(4577,'2005-07-08 05:59:00',1688,442,'2005-07-16 06:23:00',2,'2006-02-15 21:30:53'),(4578,'2005-07-08 06:00:17',1533,497,'2005-07-10 06:58:17',2,'2006-02-15 21:30:53'),(4579,'2005-07-08 06:01:56',4290,585,'2005-07-13 11:24:56',1,'2006-02-15 21:30:53'),(4580,'2005-07-08 06:04:23',3512,199,'2005-07-15 05:42:23',2,'2006-02-15 21:30:53'),(4581,'2005-07-08 06:05:06',887,591,'2005-07-16 00:54:06',1,'2006-02-15 21:30:53'),(4582,'2005-07-08 06:09:09',688,274,'2005-07-14 02:23:09',1,'2006-02-15 21:30:53'),(4583,'2005-07-08 06:09:44',4151,365,'2005-07-12 03:44:44',1,'2006-02-15 21:30:53'),(4584,'2005-07-08 06:11:02',2322,368,'2005-07-11 05:14:02',1,'2006-02-15 21:30:53'),(4585,'2005-07-08 06:11:58',1622,143,'2005-07-17 01:58:58',1,'2006-02-15 21:30:53'),(4586,'2005-07-08 06:12:33',1374,461,'2005-07-13 11:06:33',2,'2006-02-15 21:30:53'),(4587,'2005-07-08 06:16:26',3502,63,'2005-07-13 00:59:26',1,'2006-02-15 21:30:53'),(4588,'2005-07-08 06:18:01',3629,198,'2005-07-10 08:59:01',1,'2006-02-15 21:30:53'),(4589,'2005-07-08 06:26:04',1192,99,'2005-07-09 10:31:04',2,'2006-02-15 21:30:53'),(4590,'2005-07-08 06:27:48',4233,580,'2005-07-14 07:46:48',1,'2006-02-15 21:30:53'),(4591,'2005-07-08 06:29:43',2276,182,'2005-07-17 07:20:43',1,'2006-02-15 21:30:53'),(4592,'2005-07-08 06:31:28',2141,235,'2005-07-10 06:08:28',2,'2006-02-15 21:30:53'),(4593,'2005-07-08 06:38:12',2897,528,'2005-07-16 10:48:12',2,'2006-02-15 21:30:53'),(4594,'2005-07-08 06:40:06',26,506,'2005-07-16 05:51:06',2,'2006-02-15 21:30:53'),(4595,'2005-07-08 06:40:25',760,336,'2005-07-14 08:54:25',1,'2006-02-15 21:30:53'),(4596,'2005-07-08 06:41:25',2280,306,'2005-07-14 01:36:25',1,'2006-02-15 21:30:53'),(4597,'2005-07-08 06:43:42',3767,545,'2005-07-13 01:32:42',1,'2006-02-15 21:30:53'),(4598,'2005-07-08 06:46:26',258,82,'2005-07-16 01:21:26',1,'2006-02-15 21:30:53'),(4599,'2005-07-08 06:48:26',2098,356,'2005-07-11 07:06:26',1,'2006-02-15 21:30:53'),(4600,'2005-07-08 06:48:37',1526,457,'2005-07-15 10:11:37',1,'2006-02-15 21:30:53'),(4601,'2005-07-08 06:49:10',3184,572,'2005-07-09 07:43:10',1,'2006-02-15 21:30:53'),(4602,'2005-07-08 06:52:40',3616,129,'2005-07-10 06:30:40',1,'2006-02-15 21:30:53'),(4603,'2005-07-08 06:57:07',755,334,'2005-07-17 04:32:07',1,'2006-02-15 21:30:53'),(4604,'2005-07-08 06:58:43',4230,402,'2005-07-14 06:41:43',1,'2006-02-15 21:30:53'),(4605,'2005-07-08 07:00:14',1139,523,'2005-07-16 08:38:14',1,'2006-02-15 21:30:53'),(4606,'2005-07-08 07:05:50',1946,502,'2005-07-16 09:11:50',2,'2006-02-15 21:30:53'),(4607,'2005-07-08 07:15:14',1193,281,'2005-07-11 01:32:14',1,'2006-02-15 21:30:53'),(4608,'2005-07-08 07:19:11',758,11,'2005-07-11 01:37:11',1,'2006-02-15 21:30:53'),(4609,'2005-07-08 07:22:29',3711,573,'2005-07-10 08:06:29',1,'2006-02-15 21:30:53'),(4610,'2005-07-08 07:28:05',1279,265,'2005-07-14 02:10:05',1,'2006-02-15 21:30:53'),(4611,'2005-07-08 07:33:56',3486,1,'2005-07-12 13:25:56',2,'2006-02-15 21:30:53'),(4612,'2005-07-08 07:40:44',82,371,'2005-07-12 03:48:44',1,'2006-02-15 21:30:53'),(4613,'2005-07-08 07:44:49',476,581,'2005-07-09 04:47:49',1,'2006-02-15 21:30:53'),(4614,'2005-07-08 07:45:17',2579,71,'2005-07-12 02:10:17',2,'2006-02-15 21:30:53'),(4615,'2005-07-08 07:46:53',1200,404,'2005-07-16 12:43:53',2,'2006-02-15 21:30:53'),(4616,'2005-07-08 07:48:12',2580,280,'2005-07-10 08:13:12',2,'2006-02-15 21:30:53'),(4617,'2005-07-08 07:55:08',3784,475,'2005-07-17 02:49:08',2,'2006-02-15 21:30:53'),(4618,'2005-07-08 08:00:20',3691,179,'2005-07-14 05:59:20',1,'2006-02-15 21:30:53'),(4619,'2005-07-08 08:01:09',2127,579,'2005-07-16 05:52:09',2,'2006-02-15 21:30:53'),(4620,'2005-07-08 08:01:44',3467,210,'2005-07-16 07:43:44',2,'2006-02-15 21:30:53'),(4621,'2005-07-08 08:02:18',1594,297,'2005-07-12 08:53:18',2,'2006-02-15 21:30:53'),(4622,'2005-07-08 08:02:42',2710,289,'2005-07-10 07:46:42',2,'2006-02-15 21:30:53'),(4623,'2005-07-08 08:03:22',4171,593,'2005-07-12 09:11:22',2,'2006-02-15 21:30:53'),(4624,'2005-07-08 08:12:17',1548,341,'2005-07-15 12:24:17',2,'2006-02-15 21:30:53'),(4625,'2005-07-08 08:14:26',318,473,'2005-07-09 03:45:26',1,'2006-02-15 21:30:53'),(4626,'2005-07-08 08:18:21',37,268,'2005-07-10 11:36:21',1,'2006-02-15 21:30:53'),(4627,'2005-07-08 08:24:39',2383,78,'2005-07-13 11:04:39',2,'2006-02-15 21:30:53'),(4628,'2005-07-08 08:25:52',1888,540,'2005-07-10 11:22:52',1,'2006-02-15 21:30:53'),(4629,'2005-07-08 08:31:26',228,563,'2005-07-17 12:07:26',1,'2006-02-15 21:30:53'),(4630,'2005-07-08 08:33:38',3446,319,'2005-07-09 13:09:38',2,'2006-02-15 21:30:53'),(4631,'2005-07-08 08:38:22',470,59,'2005-07-11 03:33:22',2,'2006-02-15 21:30:53'),(4632,'2005-07-08 08:38:57',4330,393,'2005-07-15 09:33:57',1,'2006-02-15 21:30:53'),(4633,'2005-07-08 08:39:39',3178,348,'2005-07-15 10:23:39',1,'2006-02-15 21:30:53'),(4634,'2005-07-08 08:40:02',811,275,'2005-07-12 04:45:02',2,'2006-02-15 21:30:53'),(4635,'2005-07-08 08:42:40',2434,65,'2005-07-14 10:31:40',1,'2006-02-15 21:30:53'),(4636,'2005-07-08 08:44:32',1858,228,'2005-07-10 08:59:32',2,'2006-02-15 21:30:53'),(4637,'2005-07-08 08:49:54',1917,263,'2005-07-11 13:12:54',2,'2006-02-15 21:30:53'),(4638,'2005-07-08 08:57:20',2240,305,'2005-07-10 05:08:20',2,'2006-02-15 21:30:53'),(4639,'2005-07-08 08:57:21',2459,75,'2005-07-14 11:22:21',2,'2006-02-15 21:30:53'),(4640,'2005-07-08 08:59:34',1147,506,'2005-07-15 03:31:34',1,'2006-02-15 21:30:53'),(4641,'2005-07-08 09:09:46',2436,26,'2005-07-17 03:54:46',2,'2006-02-15 21:30:53'),(4642,'2005-07-08 09:13:28',1962,30,'2005-07-10 06:17:28',2,'2006-02-15 21:30:53'),(4643,'2005-07-08 09:13:56',239,436,'2005-07-10 12:09:56',2,'2006-02-15 21:30:53'),(4644,'2005-07-08 09:14:29',3239,38,'2005-07-10 07:20:29',2,'2006-02-15 21:30:53'),(4645,'2005-07-08 09:20:09',687,400,'2005-07-09 06:07:09',2,'2006-02-15 21:30:53'),(4646,'2005-07-08 09:23:26',618,362,'2005-07-16 04:03:26',1,'2006-02-15 21:30:53'),(4647,'2005-07-08 09:27:36',674,312,'2005-07-16 14:56:36',2,'2006-02-15 21:30:53'),(4648,'2005-07-08 09:31:27',3490,444,'2005-07-13 03:55:27',2,'2006-02-15 21:30:53'),(4649,'2005-07-08 09:32:05',1116,221,'2005-07-15 08:37:05',2,'2006-02-15 21:30:53'),(4650,'2005-07-08 09:32:08',2850,108,'2005-07-15 15:20:08',1,'2006-02-15 21:30:53'),(4651,'2005-07-08 09:39:39',4064,557,'2005-07-09 12:14:39',2,'2006-02-15 21:30:53'),(4652,'2005-07-08 09:47:51',4198,127,'2005-07-16 04:09:51',2,'2006-02-15 21:30:53'),(4653,'2005-07-08 09:48:01',2511,404,'2005-07-17 05:18:01',1,'2006-02-15 21:30:53'),(4654,'2005-07-08 09:48:03',4210,434,'2005-07-17 13:17:03',1,'2006-02-15 21:30:53'),(4655,'2005-07-08 09:49:22',4078,213,'2005-07-15 13:08:22',1,'2006-02-15 21:30:53'),(4656,'2005-07-08 09:50:10',839,141,'2005-07-13 15:00:10',1,'2006-02-15 21:30:53'),(4657,'2005-07-08 09:51:02',1002,54,'2005-07-09 09:29:02',2,'2006-02-15 21:30:53'),(4658,'2005-07-08 09:51:11',3131,166,'2005-07-10 12:30:11',2,'2006-02-15 21:30:53'),(4659,'2005-07-08 09:53:28',4389,425,'2005-07-14 14:56:28',2,'2006-02-15 21:30:53'),(4660,'2005-07-08 09:54:47',1208,139,'2005-07-11 15:19:47',2,'2006-02-15 21:30:53'),(4661,'2005-07-08 09:55:06',2641,518,'2005-07-11 08:26:06',1,'2006-02-15 21:30:53'),(4662,'2005-07-08 09:58:54',1370,553,'2005-07-10 12:51:54',1,'2006-02-15 21:30:53'),(4663,'2005-07-08 09:59:18',2959,139,'2005-07-10 11:25:18',1,'2006-02-15 21:30:53'),(4664,'2005-07-08 10:01:28',1318,546,'2005-07-12 10:37:28',2,'2006-02-15 21:30:53'),(4665,'2005-07-08 10:04:24',575,106,'2005-07-14 15:13:24',1,'2006-02-15 21:30:53'),(4666,'2005-07-08 10:05:02',4576,120,'2005-07-16 07:28:02',1,'2006-02-15 21:30:53'),(4667,'2005-07-08 10:06:26',3348,485,'2005-07-14 04:48:26',1,'2006-02-15 21:30:53'),(4668,'2005-07-08 10:11:45',3971,481,'2005-07-17 13:01:45',2,'2006-02-15 21:30:53'),(4669,'2005-07-08 10:13:08',3494,581,'2005-07-16 07:52:08',1,'2006-02-15 21:30:53'),(4670,'2005-07-08 10:14:18',3317,153,'2005-07-16 15:10:18',2,'2006-02-15 21:30:53'),(4671,'2005-07-08 10:15:32',2139,55,'2005-07-14 08:19:32',2,'2006-02-15 21:30:53'),(4672,'2005-07-08 10:15:38',1922,18,'2005-07-16 05:06:38',1,'2006-02-15 21:30:53'),(4673,'2005-07-08 10:16:00',2792,91,'2005-07-17 10:03:00',2,'2006-02-15 21:30:53'),(4674,'2005-07-08 10:19:28',1617,329,'2005-07-12 12:54:28',2,'2006-02-15 21:30:53'),(4675,'2005-07-08 10:24:22',1309,380,'2005-07-14 11:09:22',1,'2006-02-15 21:30:53'),(4676,'2005-07-08 10:26:02',2590,302,'2005-07-10 13:38:02',2,'2006-02-15 21:30:53'),(4677,'2005-07-08 10:30:36',1226,258,'2005-07-14 12:40:36',1,'2006-02-15 21:30:53'),(4678,'2005-07-08 10:30:40',241,219,'2005-07-13 11:08:40',1,'2006-02-15 21:30:53'),(4679,'2005-07-08 10:33:14',3610,423,'2005-07-15 14:30:14',2,'2006-02-15 21:30:53'),(4680,'2005-07-08 10:35:28',4043,227,'2005-07-14 08:42:28',1,'2006-02-15 21:30:53'),(4681,'2005-07-08 10:36:03',1025,133,'2005-07-16 09:21:03',2,'2006-02-15 21:30:53'),(4682,'2005-07-08 10:38:27',873,263,'2005-07-11 06:29:27',2,'2006-02-15 21:30:53'),(4683,'2005-07-08 10:38:28',3464,283,'2005-07-09 12:07:28',1,'2006-02-15 21:30:53'),(4684,'2005-07-08 10:41:06',503,585,'2005-07-17 10:35:06',1,'2006-02-15 21:30:53'),(4685,'2005-07-08 10:45:13',602,590,'2005-07-12 08:29:13',1,'2006-02-15 21:30:53'),(4686,'2005-07-08 10:53:39',1398,234,'2005-07-10 05:34:39',2,'2006-02-15 21:30:53'),(4687,'2005-07-08 10:54:19',1156,169,'2005-07-10 08:00:19',2,'2006-02-15 21:30:53'),(4688,'2005-07-08 11:03:29',3574,80,'2005-07-17 15:41:29',2,'2006-02-15 21:30:53'),(4689,'2005-07-08 11:03:47',2519,364,'2005-07-16 06:07:47',2,'2006-02-15 21:30:53'),(4690,'2005-07-08 11:04:02',3304,64,'2005-07-15 10:27:02',2,'2006-02-15 21:30:53'),(4691,'2005-07-08 11:04:53',596,126,'2005-07-09 07:48:53',1,'2006-02-15 21:30:53'),(4692,'2005-07-08 11:07:06',1490,288,'2005-07-09 14:08:06',1,'2006-02-15 21:30:53'),(4693,'2005-07-08 11:07:36',1694,221,'2005-07-14 08:40:36',1,'2006-02-15 21:30:53'),(4694,'2005-07-08 11:07:37',3637,229,'2005-07-12 06:53:37',2,'2006-02-15 21:30:53'),(4695,'2005-07-08 11:07:59',805,39,'2005-07-17 16:35:59',1,'2006-02-15 21:30:53'),(4696,'2005-07-08 11:12:27',1358,424,'2005-07-14 05:41:27',1,'2006-02-15 21:30:53'),(4697,'2005-07-08 11:19:14',4143,224,'2005-07-12 07:14:14',2,'2006-02-15 21:30:53'),(4698,'2005-07-08 11:19:31',3963,570,'2005-07-13 13:45:31',2,'2006-02-15 21:30:53'),(4699,'2005-07-08 11:36:56',2462,348,'2005-07-14 11:35:56',2,'2006-02-15 21:30:53'),(4700,'2005-07-08 11:37:21',3889,317,'2005-07-12 15:41:21',1,'2006-02-15 21:30:53'),(4701,'2005-07-08 11:38:48',3012,522,'2005-07-13 15:59:48',2,'2006-02-15 21:30:53'),(4702,'2005-07-08 11:41:36',2593,56,'2005-07-10 06:55:36',1,'2006-02-15 21:30:53'),(4703,'2005-07-08 11:44:56',2859,544,'2005-07-13 09:17:56',1,'2006-02-15 21:30:53'),(4704,'2005-07-08 11:45:35',2291,28,'2005-07-10 09:46:35',1,'2006-02-15 21:30:53'),(4705,'2005-07-08 11:50:38',3709,85,'2005-07-12 15:58:38',2,'2006-02-15 21:30:53'),(4706,'2005-07-08 11:51:41',2512,380,'2005-07-17 12:58:41',1,'2006-02-15 21:30:53'),(4707,'2005-07-08 11:57:28',52,286,'2005-07-10 17:47:28',1,'2006-02-15 21:30:53'),(4708,'2005-07-08 11:59:19',3249,212,'2005-07-17 07:11:19',2,'2006-02-15 21:30:53'),(4709,'2005-07-08 12:04:34',3964,124,'2005-07-15 06:48:34',1,'2006-02-15 21:30:53'),(4710,'2005-07-08 12:04:53',248,590,'2005-07-13 11:28:53',2,'2006-02-15 21:30:53'),(4711,'2005-07-08 12:06:58',2327,563,'2005-07-12 08:37:58',1,'2006-02-15 21:30:53'),(4712,'2005-07-08 12:10:50',2371,39,'2005-07-17 14:54:50',2,'2006-02-15 21:30:53'),(4713,'2005-07-08 12:12:33',1399,207,'2005-07-16 17:13:33',1,'2006-02-15 21:30:53'),(4714,'2005-07-08 12:12:48',1932,385,'2005-07-17 08:43:48',2,'2006-02-15 21:30:53'),(4715,'2005-07-08 12:15:37',4010,276,'2005-07-10 10:37:37',2,'2006-02-15 21:30:53'),(4716,'2005-07-08 12:18:51',1923,391,'2005-07-11 11:06:51',2,'2006-02-15 21:30:53'),(4717,'2005-07-08 12:22:43',1491,453,'2005-07-11 10:24:43',2,'2006-02-15 21:30:53'),(4718,'2005-07-08 12:32:08',1653,535,'2005-07-17 17:34:08',2,'2006-02-15 21:30:53'),(4719,'2005-07-08 12:33:00',1315,556,'2005-07-15 12:30:00',1,'2006-02-15 21:30:53'),(4720,'2005-07-08 12:34:34',2669,452,'2005-07-09 10:28:34',1,'2006-02-15 21:30:53'),(4721,'2005-07-08 12:39:31',3105,234,'2005-07-15 18:07:31',1,'2006-02-15 21:30:53'),(4722,'2005-07-08 12:42:27',3738,590,'2005-07-09 09:14:27',2,'2006-02-15 21:30:53'),(4723,'2005-07-08 12:44:59',965,44,'2005-07-17 07:22:59',2,'2006-02-15 21:30:53'),(4724,'2005-07-08 12:46:30',3375,18,'2005-07-14 12:39:30',1,'2006-02-15 21:30:53'),(4725,'2005-07-08 12:47:11',2058,3,'2005-07-15 09:08:11',2,'2006-02-15 21:30:53'),(4726,'2005-07-08 12:50:54',4369,144,'2005-07-17 07:09:54',2,'2006-02-15 21:30:53'),(4727,'2005-07-08 12:54:15',1251,39,'2005-07-17 14:32:15',2,'2006-02-15 21:30:53'),(4728,'2005-07-08 12:59:01',3687,462,'2005-07-13 13:00:01',1,'2006-02-15 21:30:53'),(4729,'2005-07-08 12:59:40',1429,205,'2005-07-10 13:35:40',2,'2006-02-15 21:30:53'),(4730,'2005-07-08 12:59:49',1619,126,'2005-07-14 16:15:49',2,'2006-02-15 21:30:53'),(4731,'2005-07-08 13:08:18',4124,241,'2005-07-09 13:16:18',2,'2006-02-15 21:30:53'),(4732,'2005-07-08 13:09:45',308,562,'2005-07-14 10:10:45',1,'2006-02-15 21:30:53'),(4733,'2005-07-08 13:12:07',2230,93,'2005-07-13 07:34:07',1,'2006-02-15 21:30:53'),(4734,'2005-07-08 13:12:12',1928,546,'2005-07-10 09:01:12',2,'2006-02-15 21:30:53'),(4735,'2005-07-08 13:12:27',4324,381,'2005-07-13 10:06:27',2,'2006-02-15 21:30:53'),(4736,'2005-07-08 13:22:55',3009,79,'2005-07-17 07:27:55',1,'2006-02-15 21:30:53'),(4737,'2005-07-08 13:23:53',4286,116,'2005-07-12 18:49:53',1,'2006-02-15 21:30:53'),(4738,'2005-07-08 13:24:58',2021,31,'2005-07-17 17:44:58',2,'2006-02-15 21:30:53'),(4739,'2005-07-08 13:25:57',140,197,'2005-07-11 17:36:57',1,'2006-02-15 21:30:53'),(4740,'2005-07-08 13:30:35',2559,379,'2005-07-14 18:43:35',1,'2006-02-15 21:30:53'),(4741,'2005-07-08 13:31:23',516,260,'2005-07-17 12:02:23',2,'2006-02-15 21:30:53'),(4742,'2005-07-08 13:35:23',3022,340,'2005-07-11 10:24:23',2,'2006-02-15 21:30:53'),(4743,'2005-07-08 13:42:36',80,535,'2005-07-11 18:54:36',2,'2006-02-15 21:30:53'),(4744,'2005-07-08 13:43:57',2948,507,'2005-07-12 09:21:57',2,'2006-02-15 21:30:53'),(4745,'2005-07-08 13:45:09',1351,354,'2005-07-12 18:54:09',1,'2006-02-15 21:30:53'),(4746,'2005-07-08 13:47:55',173,148,'2005-07-11 09:06:55',2,'2006-02-15 21:30:53'),(4747,'2005-07-08 13:53:01',3942,383,'2005-07-12 17:10:01',2,'2006-02-15 21:30:53'),(4748,'2005-07-08 13:59:38',4279,9,'2005-07-15 16:51:38',1,'2006-02-15 21:30:53'),(4749,'2005-07-08 14:05:58',1190,236,'2005-07-10 18:35:58',2,'2006-02-15 21:30:53'),(4750,'2005-07-08 14:07:03',3383,198,'2005-07-13 18:05:03',1,'2006-02-15 21:30:53'),(4751,'2005-07-08 14:07:52',3469,436,'2005-07-13 10:37:52',2,'2006-02-15 21:30:53'),(4752,'2005-07-08 14:15:20',3250,512,'2005-07-12 13:22:20',1,'2006-02-15 21:30:53'),(4753,'2005-07-08 14:18:41',1642,391,'2005-07-09 10:00:41',2,'2006-02-15 21:30:53'),(4754,'2005-07-08 14:20:01',3177,108,'2005-07-11 11:50:01',1,'2006-02-15 21:30:53'),(4755,'2005-07-08 14:23:41',661,378,'2005-07-10 19:35:41',1,'2006-02-15 21:30:53'),(4756,'2005-07-08 14:24:00',3068,351,'2005-07-12 16:16:00',1,'2006-02-15 21:30:53'),(4757,'2005-07-08 14:36:51',1278,504,'2005-07-12 15:28:51',1,'2006-02-15 21:30:53'),(4758,'2005-07-08 14:38:02',3698,288,'2005-07-13 12:09:02',2,'2006-02-15 21:30:53'),(4759,'2005-07-08 14:39:22',3999,284,'2005-07-17 15:02:22',2,'2006-02-15 21:30:53'),(4760,'2005-07-08 14:48:07',3718,177,'2005-07-10 12:41:07',2,'2006-02-15 21:30:53'),(4761,'2005-07-08 14:51:45',3556,351,'2005-07-14 20:28:45',1,'2006-02-15 21:30:53'),(4762,'2005-07-08 14:54:42',390,36,'2005-07-12 18:08:42',1,'2006-02-15 21:30:53'),(4763,'2005-07-08 14:57:32',899,465,'2005-07-15 10:00:32',2,'2006-02-15 21:30:53'),(4764,'2005-07-08 15:01:25',1188,89,'2005-07-17 15:16:25',1,'2006-02-15 21:30:53'),(4765,'2005-07-08 15:08:45',469,437,'2005-07-13 10:44:45',1,'2006-02-15 21:30:53'),(4766,'2005-07-08 15:16:04',1057,149,'2005-07-15 11:04:04',2,'2006-02-15 21:30:53'),(4767,'2005-07-08 15:18:53',3744,350,'2005-07-13 15:48:53',1,'2006-02-15 21:30:53'),(4768,'2005-07-08 15:28:20',2787,482,'2005-07-09 11:46:20',1,'2006-02-15 21:30:53'),(4769,'2005-07-08 15:29:16',3462,501,'2005-07-09 18:42:16',2,'2006-02-15 21:30:53'),(4770,'2005-07-08 15:29:46',2406,573,'2005-07-14 13:31:46',1,'2006-02-15 21:30:53'),(4771,'2005-07-08 15:33:32',1060,32,'2005-07-10 12:38:32',1,'2006-02-15 21:30:53'),(4772,'2005-07-08 15:41:11',2156,486,'2005-07-17 15:25:11',1,'2006-02-15 21:30:53'),(4773,'2005-07-08 15:41:39',3025,519,'2005-07-13 18:16:39',1,'2006-02-15 21:30:53'),(4774,'2005-07-08 15:42:28',673,489,'2005-07-16 18:29:28',2,'2006-02-15 21:30:53'),(4775,'2005-07-08 15:44:05',4277,595,'2005-07-11 20:39:05',2,'2006-02-15 21:30:53'),(4776,'2005-07-08 15:44:20',2598,563,'2005-07-17 10:50:20',2,'2006-02-15 21:30:53'),(4777,'2005-07-08 15:48:34',449,102,'2005-07-16 15:25:34',1,'2006-02-15 21:30:53'),(4778,'2005-07-08 15:51:51',611,78,'2005-07-12 16:58:51',2,'2006-02-15 21:30:53'),(4779,'2005-07-08 15:53:41',1321,338,'2005-07-15 20:30:41',1,'2006-02-15 21:30:53'),(4780,'2005-07-08 16:06:51',2740,115,'2005-07-13 18:34:51',1,'2006-02-15 21:30:53'),(4781,'2005-07-08 16:06:55',1818,593,'2005-07-16 11:22:55',2,'2006-02-15 21:30:53'),(4782,'2005-07-08 16:08:51',445,436,'2005-07-17 17:56:51',1,'2006-02-15 21:30:53'),(4783,'2005-07-08 16:09:24',3952,214,'2005-07-16 21:53:24',2,'2006-02-15 21:30:53'),(4784,'2005-07-08 16:09:56',549,182,'2005-07-09 20:35:56',1,'2006-02-15 21:30:53'),(4785,'2005-07-08 16:10:19',58,474,'2005-07-11 18:52:19',1,'2006-02-15 21:30:53'),(4786,'2005-07-08 16:13:05',2724,294,'2005-07-16 15:29:05',1,'2006-02-15 21:30:53'),(4787,'2005-07-08 16:16:04',3929,7,'2005-07-14 18:02:04',2,'2006-02-15 21:30:53'),(4788,'2005-07-08 16:17:35',691,533,'2005-07-11 11:56:35',2,'2006-02-15 21:30:53'),(4789,'2005-07-08 16:22:01',20,73,'2005-07-15 18:29:01',2,'2006-02-15 21:30:53'),(4790,'2005-07-08 16:25:27',100,500,'2005-07-11 11:35:27',1,'2006-02-15 21:30:53'),(4791,'2005-07-08 16:27:24',2505,393,'2005-07-14 21:50:24',2,'2006-02-15 21:30:53'),(4792,'2005-07-08 16:29:38',2132,147,'2005-07-10 16:31:38',2,'2006-02-15 21:30:53'),(4793,'2005-07-08 16:30:01',3090,427,'2005-07-15 17:56:01',1,'2006-02-15 21:30:53'),(4794,'2005-07-08 16:30:11',2497,451,'2005-07-17 12:41:11',2,'2006-02-15 21:30:53'),(4795,'2005-07-08 16:32:54',3409,497,'2005-07-09 14:15:54',1,'2006-02-15 21:30:53'),(4796,'2005-07-08 16:35:44',2484,9,'2005-07-13 11:08:44',2,'2006-02-15 21:30:53'),(4797,'2005-07-08 16:39:05',1389,265,'2005-07-09 11:41:05',1,'2006-02-15 21:30:53'),(4798,'2005-07-08 16:45:16',3874,212,'2005-07-16 13:45:16',2,'2006-02-15 21:30:53'),(4799,'2005-07-08 16:49:27',4112,512,'2005-07-12 19:58:27',2,'2006-02-15 21:30:53'),(4800,'2005-07-08 16:51:08',1940,99,'2005-07-13 14:16:08',2,'2006-02-15 21:30:53'),(4801,'2005-07-08 16:51:36',761,431,'2005-07-13 17:23:36',1,'2006-02-15 21:30:53'),(4802,'2005-07-08 16:55:17',22,562,'2005-07-15 19:34:17',1,'2006-02-15 21:30:53'),(4803,'2005-07-08 16:56:34',1786,174,'2005-07-14 20:16:34',1,'2006-02-15 21:30:53'),(4804,'2005-07-08 16:57:30',3756,269,'2005-07-10 18:25:30',1,'2006-02-15 21:30:53'),(4805,'2005-07-08 16:59:12',377,453,'2005-07-09 15:02:12',1,'2006-02-15 21:30:53'),(4806,'2005-07-08 17:01:02',214,506,'2005-07-15 21:41:02',1,'2006-02-15 21:30:53'),(4807,'2005-07-08 17:01:48',4511,348,'2005-07-16 22:33:48',2,'2006-02-15 21:30:53'),(4808,'2005-07-08 17:02:49',2544,563,'2005-07-12 22:49:49',2,'2006-02-15 21:30:53'),(4809,'2005-07-08 17:03:22',4251,474,'2005-07-17 22:39:22',1,'2006-02-15 21:30:53'),(4810,'2005-07-08 17:04:06',4056,209,'2005-07-09 13:41:06',1,'2006-02-15 21:30:53'),(4811,'2005-07-08 17:04:24',4032,127,'2005-07-12 16:41:24',2,'2006-02-15 21:30:53'),(4812,'2005-07-08 17:07:11',3281,304,'2005-07-17 21:03:11',2,'2006-02-15 21:30:53'),(4813,'2005-07-08 17:09:56',2752,439,'2005-07-09 22:29:56',1,'2006-02-15 21:30:53'),(4814,'2005-07-08 17:11:09',3497,244,'2005-07-17 12:43:09',2,'2006-02-15 21:30:53'),(4815,'2005-07-08 17:12:51',840,581,'2005-07-17 13:14:51',1,'2006-02-15 21:30:53'),(4816,'2005-07-08 17:14:14',2700,207,'2005-07-11 15:03:14',1,'2006-02-15 21:30:53'),(4817,'2005-07-08 17:17:31',1608,145,'2005-07-09 22:32:31',2,'2006-02-15 21:30:53'),(4818,'2005-07-08 17:18:22',115,144,'2005-07-14 14:40:22',1,'2006-02-15 21:30:53'),(4819,'2005-07-08 17:19:15',1342,64,'2005-07-16 14:32:15',1,'2006-02-15 21:30:53'),(4820,'2005-07-08 17:25:23',2672,172,'2005-07-17 20:32:23',2,'2006-02-15 21:30:53'),(4821,'2005-07-08 17:28:08',1690,172,'2005-07-11 17:44:08',1,'2006-02-15 21:30:53'),(4822,'2005-07-08 17:28:47',3970,185,'2005-07-14 13:06:47',1,'2006-02-15 21:30:53'),(4823,'2005-07-08 17:28:54',155,206,'2005-07-11 23:10:54',1,'2006-02-15 21:30:53'),(4824,'2005-07-08 17:37:39',1855,225,'2005-07-16 18:27:39',1,'2006-02-15 21:30:53'),(4825,'2005-07-08 17:43:01',2419,563,'2005-07-11 20:58:01',1,'2006-02-15 21:30:53'),(4826,'2005-07-08 17:44:25',911,180,'2005-07-16 20:14:25',2,'2006-02-15 21:30:53'),(4827,'2005-07-08 17:46:30',4455,110,'2005-07-11 14:12:30',2,'2006-02-15 21:30:53'),(4828,'2005-07-08 17:52:29',1100,92,'2005-07-11 14:35:29',1,'2006-02-15 21:30:53'),(4829,'2005-07-08 17:54:18',2661,133,'2005-07-11 23:41:18',1,'2006-02-15 21:30:53'),(4830,'2005-07-08 17:56:23',1150,359,'2005-07-17 21:40:23',2,'2006-02-15 21:30:53'),(4831,'2005-07-08 18:00:14',2739,243,'2005-07-12 15:54:14',2,'2006-02-15 21:30:53'),(4832,'2005-07-08 18:07:05',1838,509,'2005-07-10 19:37:05',2,'2006-02-15 21:30:53'),(4833,'2005-07-08 18:07:35',2921,581,'2005-07-13 15:29:35',2,'2006-02-15 21:30:53'),(4834,'2005-07-08 18:07:45',1288,301,'2005-07-14 15:27:45',1,'2006-02-15 21:30:53'),(4835,'2005-07-08 18:08:13',2499,95,'2005-07-17 16:51:13',2,'2006-02-15 21:30:53'),(4836,'2005-07-08 18:09:08',2756,311,'2005-07-15 20:19:08',1,'2006-02-15 21:30:53'),(4837,'2005-07-08 18:09:12',1944,149,'2005-07-11 16:40:12',1,'2006-02-15 21:30:53'),(4838,'2005-07-08 18:11:00',3733,84,'2005-07-17 12:57:00',2,'2006-02-15 21:30:53'),(4839,'2005-07-08 18:13:10',1810,556,'2005-07-15 12:49:10',1,'2006-02-15 21:30:53'),(4840,'2005-07-08 18:18:16',1670,119,'2005-07-16 14:59:16',1,'2006-02-15 21:30:53'),(4841,'2005-07-08 18:18:23',518,248,'2005-07-11 16:51:23',2,'2006-02-15 21:30:53'),(4842,'2005-07-08 18:21:30',1438,160,'2005-07-10 22:25:30',2,'2006-02-15 21:30:53'),(4843,'2005-07-08 18:27:28',3640,45,'2005-07-15 00:26:28',2,'2006-02-15 21:30:53'),(4844,'2005-07-08 18:28:13',4057,237,'2005-07-09 21:17:13',2,'2006-02-15 21:30:53'),(4845,'2005-07-08 18:28:20',2337,553,'2005-07-09 14:38:20',2,'2006-02-15 21:30:53'),(4846,'2005-07-08 18:29:05',417,556,'2005-07-10 22:33:05',2,'2006-02-15 21:30:53'),(4847,'2005-07-08 18:29:13',3397,544,'2005-07-15 18:12:13',2,'2006-02-15 21:30:53'),(4848,'2005-07-08 18:30:16',2962,251,'2005-07-12 19:53:16',2,'2006-02-15 21:30:53'),(4849,'2005-07-08 18:34:34',4323,146,'2005-07-14 20:27:34',2,'2006-02-15 21:30:53'),(4850,'2005-07-08 18:39:31',3039,154,'2005-07-13 00:18:31',2,'2006-02-15 21:30:53'),(4851,'2005-07-08 18:40:05',134,557,'2005-07-12 21:46:05',1,'2006-02-15 21:30:53'),(4852,'2005-07-08 18:43:15',3545,418,'2005-07-15 18:48:15',2,'2006-02-15 21:30:53'),(4853,'2005-07-08 18:43:18',1454,23,'2005-07-12 14:28:18',2,'2006-02-15 21:30:53'),(4854,'2005-07-08 18:44:44',3644,487,'2005-07-13 13:37:44',1,'2006-02-15 21:30:53'),(4855,'2005-07-08 18:45:50',1146,337,'2005-07-11 18:23:50',2,'2006-02-15 21:30:53'),(4856,'2005-07-08 18:47:38',2441,7,'2005-07-13 15:02:38',2,'2006-02-15 21:30:53'),(4857,'2005-07-08 18:52:07',2069,211,'2005-07-11 22:06:07',1,'2006-02-15 21:30:53'),(4858,'2005-07-08 18:53:24',3424,447,'2005-07-17 20:32:24',2,'2006-02-15 21:30:53'),(4859,'2005-07-08 18:54:04',1939,369,'2005-07-13 13:04:04',1,'2006-02-15 21:30:53'),(4860,'2005-07-08 18:54:07',428,123,'2005-07-17 15:09:07',2,'2006-02-15 21:30:53'),(4861,'2005-07-08 18:57:30',2984,455,'2005-07-16 15:12:30',2,'2006-02-15 21:30:53'),(4862,'2005-07-08 19:02:46',293,291,'2005-07-17 20:17:46',1,'2006-02-15 21:30:53'),(4863,'2005-07-08 19:03:15',1,431,'2005-07-11 21:29:15',2,'2006-02-15 21:30:53'),(4864,'2005-07-08 19:05:34',2974,281,'2005-07-17 15:05:34',2,'2006-02-15 21:30:53'),(4865,'2005-07-08 19:09:04',1614,418,'2005-07-13 21:25:04',2,'2006-02-15 21:30:53'),(4866,'2005-07-08 19:09:59',4036,278,'2005-07-15 00:51:59',2,'2006-02-15 21:30:53'),(4867,'2005-07-08 19:10:52',4090,593,'2005-07-09 21:43:52',2,'2006-02-15 21:30:53'),(4868,'2005-07-08 19:13:50',1157,307,'2005-07-14 20:59:50',2,'2006-02-15 21:30:53'),(4869,'2005-07-08 19:14:05',2860,376,'2005-07-15 22:27:05',1,'2006-02-15 21:30:53'),(4870,'2005-07-08 19:14:45',3089,260,'2005-07-12 18:58:45',2,'2006-02-15 21:30:53'),(4871,'2005-07-08 19:19:52',2509,210,'2005-07-13 20:27:52',2,'2006-02-15 21:30:53'),(4872,'2005-07-08 19:23:16',1836,103,'2005-07-10 14:17:16',2,'2006-02-15 21:30:53'),(4873,'2005-07-08 19:23:32',4500,473,'2005-07-11 15:24:32',1,'2006-02-15 21:30:53'),(4874,'2005-07-08 19:23:38',2386,223,'2005-07-13 14:39:38',2,'2006-02-15 21:30:53'),(4875,'2005-07-08 19:24:17',843,555,'2005-07-11 19:15:17',2,'2006-02-15 21:30:53'),(4876,'2005-07-08 19:27:50',1959,283,'2005-07-14 15:42:50',1,'2006-02-15 21:30:53'),(4877,'2005-07-08 19:31:02',1846,287,'2005-07-15 19:05:02',1,'2006-02-15 21:30:53'),(4878,'2005-07-08 19:33:49',4009,172,'2005-07-17 17:47:49',1,'2006-02-15 21:30:53'),(4879,'2005-07-08 19:34:55',1406,196,'2005-07-09 15:53:55',1,'2006-02-15 21:30:53'),(4880,'2005-07-08 19:36:17',4178,269,'2005-07-13 00:01:17',1,'2006-02-15 21:30:53'),(4881,'2005-07-08 19:40:34',4346,349,'2005-07-09 17:08:34',2,'2006-02-15 21:30:53'),(4882,'2005-07-08 19:42:03',4540,184,'2005-07-16 22:24:03',1,'2006-02-15 21:30:53'),(4883,'2005-07-08 19:46:58',1366,563,'2005-07-10 15:48:58',1,'2006-02-15 21:30:53'),(4884,'2005-07-08 19:49:17',3543,425,'2005-07-15 23:14:17',2,'2006-02-15 21:30:53'),(4885,'2005-07-08 19:51:17',442,233,'2005-07-12 16:02:17',2,'2006-02-15 21:30:53'),(4886,'2005-07-08 19:53:22',3393,474,'2005-07-09 17:05:22',1,'2006-02-15 21:30:53'),(4887,'2005-07-08 19:59:14',3613,543,'2005-07-15 22:53:14',1,'2006-02-15 21:30:53'),(4888,'2005-07-08 20:04:27',1220,527,'2005-07-10 14:53:27',2,'2006-02-15 21:30:53'),(4889,'2005-07-08 20:04:43',4463,5,'2005-07-13 17:57:43',2,'2006-02-15 21:30:53'),(4890,'2005-07-08 20:05:38',3576,574,'2005-07-14 14:55:38',2,'2006-02-15 21:30:53'),(4891,'2005-07-08 20:06:19',1787,59,'2005-07-16 18:52:19',1,'2006-02-15 21:30:53'),(4892,'2005-07-08 20:06:25',3566,193,'2005-07-14 20:04:25',1,'2006-02-15 21:30:53'),(4893,'2005-07-08 20:19:55',2060,210,'2005-07-15 21:28:55',2,'2006-02-15 21:30:53'),(4894,'2005-07-08 20:21:31',1028,286,'2005-07-11 01:59:31',1,'2006-02-15 21:30:53'),(4895,'2005-07-08 20:22:05',2620,242,'2005-07-12 20:49:05',1,'2006-02-15 21:30:53'),(4896,'2005-07-08 20:23:15',3006,129,'2005-07-10 15:38:15',1,'2006-02-15 21:30:53'),(4897,'2005-07-08 20:25:11',2950,258,'2005-07-09 17:16:11',1,'2006-02-15 21:30:53'),(4898,'2005-07-08 20:31:43',3212,218,'2005-07-15 15:58:43',2,'2006-02-15 21:30:53'),(4899,'2005-07-08 20:37:11',414,32,'2005-07-10 21:53:11',1,'2006-02-15 21:30:53'),(4900,'2005-07-08 20:38:06',3487,426,'2005-07-09 22:45:06',2,'2006-02-15 21:30:53'),(4901,'2005-07-08 20:44:51',2187,507,'2005-07-10 01:04:51',1,'2006-02-15 21:30:53'),(4902,'2005-07-08 20:49:30',2238,554,'2005-07-13 16:54:30',2,'2006-02-15 21:30:53'),(4903,'2005-07-08 20:50:05',1769,132,'2005-07-13 15:27:05',1,'2006-02-15 21:30:53'),(4904,'2005-07-08 20:53:27',2051,173,'2005-07-18 01:16:27',1,'2006-02-15 21:30:53'),(4905,'2005-07-08 20:56:00',4101,246,'2005-07-12 00:19:00',2,'2006-02-15 21:30:53'),(4906,'2005-07-08 20:59:13',1527,490,'2005-07-15 01:12:13',2,'2006-02-15 21:30:53'),(4907,'2005-07-08 21:01:41',1206,209,'2005-07-13 02:23:41',2,'2006-02-15 21:30:53'),(4908,'2005-07-08 21:05:44',1963,160,'2005-07-17 21:33:44',2,'2006-02-15 21:30:53'),(4909,'2005-07-08 21:07:24',1451,228,'2005-07-10 22:34:24',1,'2006-02-15 21:30:53'),(4910,'2005-07-08 21:13:56',3675,219,'2005-07-18 02:39:56',2,'2006-02-15 21:30:53'),(4911,'2005-07-08 21:20:26',4479,66,'2005-07-15 03:11:26',1,'2006-02-15 21:30:53'),(4912,'2005-07-08 21:26:11',2012,275,'2005-07-18 02:19:11',1,'2006-02-15 21:30:53'),(4913,'2005-07-08 21:27:48',982,368,'2005-07-18 02:51:48',1,'2006-02-15 21:30:53'),(4914,'2005-07-08 21:30:53',298,535,'2005-07-17 01:29:53',1,'2006-02-15 21:30:53'),(4915,'2005-07-08 21:31:22',2772,178,'2005-07-13 16:45:22',2,'2006-02-15 21:30:53'),(4916,'2005-07-08 21:32:17',2680,212,'2005-07-14 20:55:17',2,'2006-02-15 21:30:53'),(4917,'2005-07-08 21:32:30',3231,104,'2005-07-09 15:34:30',1,'2006-02-15 21:30:53'),(4918,'2005-07-08 21:37:31',3819,220,'2005-07-11 20:16:31',2,'2006-02-15 21:30:53'),(4919,'2005-07-08 21:41:54',2106,157,'2005-07-11 23:14:54',1,'2006-02-15 21:30:53'),(4920,'2005-07-08 21:42:10',4285,239,'2005-07-15 03:08:10',1,'2006-02-15 21:30:53'),(4921,'2005-07-08 21:43:21',425,109,'2005-07-10 16:06:21',2,'2006-02-15 21:30:53'),(4922,'2005-07-08 21:44:00',2928,577,'2005-07-10 02:58:00',2,'2006-02-15 21:30:53'),(4923,'2005-07-08 21:44:39',932,18,'2005-07-17 15:50:39',2,'2006-02-15 21:30:53'),(4924,'2005-07-08 21:55:25',4344,180,'2005-07-16 16:52:25',1,'2006-02-15 21:30:53'),(4925,'2005-07-08 21:56:00',2169,68,'2005-07-14 17:17:00',2,'2006-02-15 21:30:53'),(4926,'2005-07-08 22:01:48',4155,415,'2005-07-18 03:27:48',1,'2006-02-15 21:30:53'),(4927,'2005-07-08 22:05:35',2566,136,'2005-07-14 23:22:35',2,'2006-02-15 21:30:53'),(4928,'2005-07-08 22:05:41',4363,77,'2005-07-09 23:09:41',2,'2006-02-15 21:30:53'),(4929,'2005-07-08 22:06:18',734,297,'2005-07-17 18:17:18',2,'2006-02-15 21:30:53'),(4930,'2005-07-08 22:15:48',2057,451,'2005-07-15 21:02:48',2,'2006-02-15 21:30:53'),(4931,'2005-07-08 22:16:18',2750,284,'2005-07-17 03:42:18',1,'2006-02-15 21:30:53'),(4932,'2005-07-08 22:17:40',4237,558,'2005-07-15 22:13:40',2,'2006-02-15 21:30:53'),(4933,'2005-07-08 22:18:29',322,579,'2005-07-13 03:47:29',2,'2006-02-15 21:30:53'),(4934,'2005-07-08 22:18:42',1744,517,'2005-07-10 20:44:42',2,'2006-02-15 21:30:53'),(4935,'2005-07-08 22:20:56',2708,230,'2005-07-12 01:01:56',2,'2006-02-15 21:30:53'),(4936,'2005-07-08 22:24:50',2033,298,'2005-07-15 03:14:50',2,'2006-02-15 21:30:53'),(4937,'2005-07-08 22:29:59',33,273,'2005-07-15 21:51:59',2,'2006-02-15 21:30:53'),(4938,'2005-07-08 22:32:53',2164,418,'2005-07-14 16:48:53',2,'2006-02-15 21:30:53'),(4939,'2005-07-08 22:35:30',3201,425,'2005-07-17 22:05:30',1,'2006-02-15 21:30:53'),(4940,'2005-07-08 22:36:06',971,215,'2005-07-15 04:28:06',1,'2006-02-15 21:30:53'),(4941,'2005-07-08 22:39:10',3816,553,'2005-07-15 17:49:10',2,'2006-02-15 21:30:53'),(4942,'2005-07-08 22:42:47',4467,120,'2005-07-15 04:36:47',2,'2006-02-15 21:30:53'),(4943,'2005-07-08 22:43:05',2732,11,'2005-07-15 18:17:05',2,'2006-02-15 21:30:53'),(4944,'2005-07-08 22:44:28',3648,293,'2005-07-17 21:51:28',2,'2006-02-15 21:30:53'),(4945,'2005-07-08 22:45:02',2079,165,'2005-07-11 23:59:02',2,'2006-02-15 21:30:53'),(4946,'2005-07-08 22:46:23',272,440,'2005-07-16 17:19:23',1,'2006-02-15 21:30:53'),(4947,'2005-07-08 22:49:37',3905,388,'2005-07-17 21:03:37',1,'2006-02-15 21:30:53'),(4948,'2005-07-08 22:54:21',2972,518,'2005-07-17 03:52:21',2,'2006-02-15 21:30:53'),(4949,'2005-07-08 22:57:10',1184,567,'2005-07-11 01:26:10',2,'2006-02-15 21:30:53'),(4950,'2005-07-08 22:58:07',3291,148,'2005-07-09 20:41:07',2,'2006-02-15 21:30:53'),(4951,'2005-07-08 22:58:21',2766,28,'2005-07-16 18:58:21',1,'2006-02-15 21:30:53'),(4952,'2005-07-08 23:00:07',459,14,'2005-07-09 21:47:07',1,'2006-02-15 21:30:53'),(4953,'2005-07-08 23:09:48',2460,168,'2005-07-11 02:08:48',2,'2006-02-15 21:30:53'),(4954,'2005-07-08 23:14:16',627,99,'2005-07-14 23:23:16',2,'2006-02-15 21:30:53'),(4955,'2005-07-08 23:16:21',1103,225,'2005-07-14 02:09:21',2,'2006-02-15 21:30:53'),(4956,'2005-07-08 23:17:10',1512,477,'2005-07-18 00:14:10',1,'2006-02-15 21:30:53'),(4957,'2005-07-08 23:18:48',4082,399,'2005-07-09 23:13:48',1,'2006-02-15 21:30:53'),(4958,'2005-07-08 23:19:52',2354,346,'2005-07-17 20:31:52',1,'2006-02-15 21:30:53'),(4959,'2005-07-08 23:22:23',3898,236,'2005-07-10 03:17:23',2,'2006-02-15 21:30:53'),(4960,'2005-07-08 23:27:16',2176,434,'2005-07-18 02:01:16',1,'2006-02-15 21:30:53'),(4961,'2005-07-08 23:35:53',3668,96,'2005-07-14 22:46:53',2,'2006-02-15 21:30:53'),(4962,'2005-07-08 23:36:13',4399,532,'2005-07-15 03:39:13',1,'2006-02-15 21:30:53'),(4963,'2005-07-08 23:38:40',737,404,'2005-07-12 05:33:40',2,'2006-02-15 21:30:53'),(4964,'2005-07-08 23:46:38',1033,455,'2005-07-09 22:19:38',2,'2006-02-15 21:30:53'),(4965,'2005-07-08 23:46:57',535,432,'2005-07-15 18:47:57',1,'2006-02-15 21:30:53'),(4966,'2005-07-08 23:47:25',4360,118,'2005-07-14 03:35:25',1,'2006-02-15 21:30:53'),(4967,'2005-07-08 23:48:03',108,339,'2005-07-15 23:51:03',2,'2006-02-15 21:30:53'),(4968,'2005-07-08 23:49:19',3204,390,'2005-07-14 02:46:19',1,'2006-02-15 21:30:53'),(4969,'2005-07-08 23:51:26',4563,231,'2005-07-12 03:21:26',2,'2006-02-15 21:30:53'),(4970,'2005-07-08 23:54:29',2983,100,'2005-07-16 22:47:29',1,'2006-02-15 21:30:53'),(4971,'2005-07-08 23:54:49',460,64,'2005-07-16 00:15:49',1,'2006-02-15 21:30:53'),(4972,'2005-07-08 23:56:09',2451,498,'2005-07-16 19:15:09',1,'2006-02-15 21:30:53'),(4973,'2005-07-08 23:58:18',391,432,'2005-07-14 21:42:18',1,'2006-02-15 21:30:53'),(4974,'2005-07-09 00:00:36',1071,152,'2005-07-13 21:03:36',1,'2006-02-15 21:30:53'),(4975,'2005-07-09 00:02:46',3730,101,'2005-07-14 18:05:46',2,'2006-02-15 21:30:53'),(4976,'2005-07-09 00:03:30',617,199,'2005-07-10 19:05:30',1,'2006-02-15 21:30:53'),(4977,'2005-07-09 00:15:50',3310,584,'2005-07-10 00:34:50',2,'2006-02-15 21:30:53'),(4978,'2005-07-09 00:22:02',2578,279,'2005-07-18 04:37:02',1,'2006-02-15 21:30:53'),(4979,'2005-07-09 00:24:34',3447,204,'2005-07-12 20:04:34',1,'2006-02-15 21:30:53'),(4980,'2005-07-09 00:26:59',2638,100,'2005-07-14 19:42:59',1,'2006-02-15 21:30:53'),(4981,'2005-07-09 00:29:29',3363,399,'2005-07-16 19:06:29',2,'2006-02-15 21:30:53'),(4982,'2005-07-09 00:30:52',249,162,'2005-07-15 23:50:52',1,'2006-02-15 21:30:53'),(4983,'2005-07-09 00:34:16',1469,81,'2005-07-17 03:21:16',2,'2006-02-15 21:30:53'),(4984,'2005-07-09 00:35:31',1303,214,'2005-07-17 03:44:31',1,'2006-02-15 21:30:53'),(4985,'2005-07-09 00:36:02',2146,208,'2005-07-14 04:06:02',2,'2006-02-15 21:30:53'),(4986,'2005-07-09 00:44:33',3517,589,'2005-07-09 19:45:33',2,'2006-02-15 21:30:53'),(4987,'2005-07-09 00:45:41',996,277,'2005-07-14 03:32:41',2,'2006-02-15 21:30:53'),(4988,'2005-07-09 00:46:14',2718,433,'2005-07-16 01:45:14',2,'2006-02-15 21:30:53'),(4989,'2005-07-09 00:46:56',3326,210,'2005-07-17 06:24:56',1,'2006-02-15 21:30:53'),(4990,'2005-07-09 00:48:49',3305,35,'2005-07-10 06:36:49',2,'2006-02-15 21:30:53'),(4991,'2005-07-09 00:49:03',1856,540,'2005-07-13 05:02:03',1,'2006-02-15 21:30:53'),(4992,'2005-07-09 00:49:37',2081,315,'2005-07-16 02:05:37',1,'2006-02-15 21:30:53'),(4993,'2005-07-09 00:49:47',1740,517,'2005-07-11 21:19:47',1,'2006-02-15 21:30:53'),(4994,'2005-07-09 00:54:13',2546,246,'2005-07-09 21:02:13',1,'2006-02-15 21:30:53'),(4995,'2005-07-09 00:57:46',2063,247,'2005-07-13 03:32:46',1,'2006-02-15 21:30:53'),(4996,'2005-07-09 00:59:46',4440,129,'2005-07-16 01:30:46',2,'2006-02-15 21:30:53'),(4997,'2005-07-09 01:06:03',186,102,'2005-07-18 04:21:03',2,'2006-02-15 21:30:53'),(4998,'2005-07-09 01:07:21',202,534,'2005-07-10 05:48:21',2,'2006-02-15 21:30:53'),(4999,'2005-07-09 01:12:57',1797,196,'2005-07-17 00:12:57',1,'2006-02-15 21:30:53'),(5000,'2005-07-09 01:16:13',668,146,'2005-07-14 21:55:13',1,'2006-02-15 21:30:53'),(5001,'2005-07-09 01:17:04',2025,40,'2005-07-16 03:25:04',2,'2006-02-15 21:30:53'),(5002,'2005-07-09 01:17:08',2388,430,'2005-07-15 21:53:08',1,'2006-02-15 21:30:53'),(5003,'2005-07-09 01:19:03',3438,569,'2005-07-10 04:28:03',2,'2006-02-15 21:30:53'),(5004,'2005-07-09 01:20:50',2637,382,'2005-07-09 19:56:50',1,'2006-02-15 21:30:53'),(5005,'2005-07-09 01:21:44',3034,451,'2005-07-14 20:27:44',1,'2006-02-15 21:30:53'),(5006,'2005-07-09 01:24:07',1277,486,'2005-07-18 03:56:07',1,'2006-02-15 21:30:53'),(5007,'2005-07-09 01:26:22',3079,207,'2005-07-12 20:48:22',1,'2006-02-15 21:30:53'),(5008,'2005-07-09 01:31:42',824,509,'2005-07-11 22:34:42',2,'2006-02-15 21:30:53'),(5009,'2005-07-09 01:32:17',1539,102,'2005-07-18 03:39:17',2,'2006-02-15 21:30:53'),(5010,'2005-07-09 01:33:23',1999,574,'2005-07-14 04:00:23',2,'2006-02-15 21:30:53'),(5011,'2005-07-09 01:44:40',463,249,'2005-07-11 00:58:40',2,'2006-02-15 21:30:53'),(5012,'2005-07-09 01:45:04',1456,251,'2005-07-12 02:13:04',1,'2006-02-15 21:30:53'),(5013,'2005-07-09 01:46:45',3000,35,'2005-07-16 06:57:45',1,'2006-02-15 21:30:53'),(5014,'2005-07-09 01:51:49',4095,334,'2005-07-10 04:48:49',1,'2006-02-15 21:30:53'),(5015,'2005-07-09 01:54:24',1564,178,'2005-07-12 20:07:24',1,'2006-02-15 21:30:53'),(5016,'2005-07-09 01:57:57',1871,5,'2005-07-09 22:07:57',1,'2006-02-15 21:30:53'),(5017,'2005-07-09 02:00:16',3745,241,'2005-07-14 06:28:16',1,'2006-02-15 21:30:53'),(5018,'2005-07-09 02:01:05',2317,541,'2005-07-10 04:09:05',1,'2006-02-15 21:30:53'),(5019,'2005-07-09 02:04:32',3534,295,'2005-07-15 07:01:32',2,'2006-02-15 21:30:53'),(5020,'2005-07-09 02:07:56',4113,565,'2005-07-09 23:59:56',1,'2006-02-15 21:30:53'),(5021,'2005-07-09 02:09:41',3445,73,'2005-07-13 05:47:41',1,'2006-02-15 21:30:53'),(5022,'2005-07-09 02:10:54',928,499,'2005-07-17 08:07:54',2,'2006-02-15 21:30:53'),(5023,'2005-07-09 02:23:16',3206,358,'2005-07-15 20:37:16',1,'2006-02-15 21:30:53'),(5024,'2005-07-09 02:25:12',2987,335,'2005-07-12 03:15:12',1,'2006-02-15 21:30:53'),(5025,'2005-07-09 02:28:24',153,91,'2005-07-12 04:43:24',2,'2006-02-15 21:30:53'),(5026,'2005-07-09 02:32:34',989,463,'2005-07-13 04:39:34',2,'2006-02-15 21:30:53'),(5027,'2005-07-09 02:32:37',2179,109,'2005-07-16 23:13:37',1,'2006-02-15 21:30:53'),(5028,'2005-07-09 02:34:45',4531,30,'2005-07-14 20:45:45',2,'2006-02-15 21:30:53'),(5029,'2005-07-09 02:35:32',3938,265,'2005-07-17 22:46:32',1,'2006-02-15 21:30:53'),(5030,'2005-07-09 02:35:43',25,497,'2005-07-17 02:05:43',1,'2006-02-15 21:30:53'),(5031,'2005-07-09 02:36:37',4224,312,'2005-07-14 03:09:37',2,'2006-02-15 21:30:53'),(5032,'2005-07-09 02:39:47',2257,333,'2005-07-10 07:45:47',1,'2006-02-15 21:30:53'),(5033,'2005-07-09 02:42:01',2841,299,'2005-07-14 00:29:01',1,'2006-02-15 21:30:53'),(5034,'2005-07-09 02:48:15',340,148,'2005-07-11 23:13:15',2,'2006-02-15 21:30:53'),(5035,'2005-07-09 02:51:34',3699,99,'2005-07-16 21:38:34',1,'2006-02-15 21:30:53'),(5036,'2005-07-09 02:58:41',75,573,'2005-07-17 04:09:41',1,'2006-02-15 21:30:53'),(5037,'2005-07-09 02:59:10',435,524,'2005-07-15 07:54:10',2,'2006-02-15 21:30:53'),(5038,'2005-07-09 03:12:52',3086,10,'2005-07-17 22:27:52',2,'2006-02-15 21:30:53'),(5039,'2005-07-09 03:14:45',2020,268,'2005-07-16 06:57:45',2,'2006-02-15 21:30:53'),(5040,'2005-07-09 03:16:34',2479,405,'2005-07-17 01:13:34',2,'2006-02-15 21:30:53'),(5041,'2005-07-09 03:18:51',2711,305,'2005-07-13 03:08:51',1,'2006-02-15 21:30:53'),(5042,'2005-07-09 03:20:30',3609,254,'2005-07-15 07:22:30',1,'2006-02-15 21:30:53'),(5043,'2005-07-09 03:25:18',2979,369,'2005-07-13 00:57:18',2,'2006-02-15 21:30:53'),(5044,'2005-07-09 03:30:25',1625,147,'2005-07-11 02:32:25',2,'2006-02-15 21:30:53'),(5045,'2005-07-09 03:33:32',1041,230,'2005-07-18 06:15:32',1,'2006-02-15 21:30:53'),(5046,'2005-07-09 03:34:57',1639,227,'2005-07-17 22:36:57',2,'2006-02-15 21:30:53'),(5047,'2005-07-09 03:44:15',230,272,'2005-07-15 09:07:15',2,'2006-02-15 21:30:53'),(5048,'2005-07-09 03:46:33',1271,466,'2005-07-15 01:14:33',1,'2006-02-15 21:30:53'),(5049,'2005-07-09 03:54:12',3336,144,'2005-07-11 22:39:12',2,'2006-02-15 21:30:53'),(5050,'2005-07-09 03:54:38',3876,337,'2005-07-10 02:23:38',2,'2006-02-15 21:30:53'),(5051,'2005-07-09 03:57:53',4091,85,'2005-07-16 08:22:53',2,'2006-02-15 21:30:53'),(5052,'2005-07-09 03:59:43',1884,305,'2005-07-12 05:48:43',1,'2006-02-15 21:30:53'),(5053,'2005-07-09 03:59:46',570,295,'2005-07-09 23:53:46',2,'2006-02-15 21:30:53'),(5054,'2005-07-09 04:01:02',4001,135,'2005-07-18 05:16:02',2,'2006-02-15 21:30:53'),(5055,'2005-07-09 04:05:28',751,54,'2005-07-14 04:26:28',2,'2006-02-15 21:30:53'),(5056,'2005-07-09 04:13:45',2599,526,'2005-07-10 06:17:45',2,'2006-02-15 21:30:53'),(5057,'2005-07-09 04:20:29',1076,178,'2005-07-14 23:59:29',1,'2006-02-15 21:30:53'),(5058,'2005-07-09 04:20:35',917,221,'2005-07-18 08:09:35',2,'2006-02-15 21:30:53'),(5059,'2005-07-09 04:28:01',3951,396,'2005-07-15 22:57:01',1,'2006-02-15 21:30:53'),(5060,'2005-07-09 04:28:03',4317,57,'2005-07-12 07:41:03',2,'2006-02-15 21:30:53'),(5061,'2005-07-09 04:30:50',3893,230,'2005-07-12 03:24:50',1,'2006-02-15 21:30:53'),(5062,'2005-07-09 04:36:49',2190,141,'2005-07-10 06:26:49',1,'2006-02-15 21:30:53'),(5063,'2005-07-09 04:37:31',1027,133,'2005-07-13 09:56:31',2,'2006-02-15 21:30:53'),(5064,'2005-07-09 04:38:51',373,512,'2005-07-18 00:33:51',2,'2006-02-15 21:30:53'),(5065,'2005-07-09 04:42:00',1788,599,'2005-07-12 08:55:00',1,'2006-02-15 21:30:53'),(5066,'2005-07-09 04:48:50',1702,169,'2005-07-12 22:54:50',2,'2006-02-15 21:30:53'),(5067,'2005-07-09 04:52:35',1480,225,'2005-07-11 23:33:35',2,'2006-02-15 21:30:53'),(5068,'2005-07-09 04:53:18',2937,10,'2005-07-13 09:21:18',1,'2006-02-15 21:30:53'),(5069,'2005-07-09 04:56:30',4417,183,'2005-07-13 23:53:30',2,'2006-02-15 21:30:53'),(5070,'2005-07-09 04:58:26',2305,407,'2005-07-09 23:00:26',2,'2006-02-15 21:30:53'),(5071,'2005-07-09 05:00:39',4358,12,'2005-07-09 23:08:39',1,'2006-02-15 21:30:53'),(5072,'2005-07-09 05:01:58',94,254,'2005-07-18 08:17:58',2,'2006-02-15 21:30:53'),(5073,'2005-07-09 05:02:35',546,408,'2005-07-15 01:22:35',2,'2006-02-15 21:30:53'),(5074,'2005-07-09 05:06:24',1379,12,'2005-07-12 04:37:24',1,'2006-02-15 21:30:53'),(5075,'2005-07-09 05:12:07',903,170,'2005-07-12 08:29:07',1,'2006-02-15 21:30:53'),(5076,'2005-07-09 05:13:22',4388,574,'2005-07-16 09:11:22',1,'2006-02-15 21:30:53'),(5077,'2005-07-09 05:18:01',686,574,'2005-07-17 10:39:01',2,'2006-02-15 21:30:53'),(5078,'2005-07-09 05:20:24',1994,78,'2005-07-13 06:41:24',2,'2006-02-15 21:30:53'),(5079,'2005-07-09 05:20:40',3948,566,'2005-07-17 00:06:40',1,'2006-02-15 21:30:53'),(5080,'2005-07-09 05:23:55',635,254,'2005-07-11 05:56:55',2,'2006-02-15 21:30:53'),(5081,'2005-07-09 05:25:20',1953,420,'2005-07-13 23:45:20',1,'2006-02-15 21:30:53'),(5082,'2005-07-09 05:28:38',1584,470,'2005-07-10 02:46:38',2,'2006-02-15 21:30:53'),(5083,'2005-07-09 05:30:32',148,494,'2005-07-11 02:20:32',1,'2006-02-15 21:30:53'),(5084,'2005-07-09 05:33:27',3113,87,'2005-07-17 08:54:27',2,'2006-02-15 21:30:53'),(5085,'2005-07-09 05:36:49',4164,437,'2005-07-13 09:26:49',1,'2006-02-15 21:30:53'),(5086,'2005-07-09 05:40:04',3072,539,'2005-07-16 07:51:04',1,'2006-02-15 21:30:53'),(5087,'2005-07-09 05:44:28',3716,395,'2005-07-10 02:25:28',2,'2006-02-15 21:30:53'),(5088,'2005-07-09 05:45:16',3324,454,'2005-07-15 00:41:16',2,'2006-02-15 21:30:53'),(5089,'2005-07-09 05:45:40',451,289,'2005-07-15 05:31:40',1,'2006-02-15 21:30:53'),(5090,'2005-07-09 05:48:22',1728,296,'2005-07-11 06:50:22',2,'2006-02-15 21:30:53'),(5091,'2005-07-09 05:52:54',4572,149,'2005-07-10 02:49:54',1,'2006-02-15 21:30:53'),(5092,'2005-07-09 05:57:39',3256,139,'2005-07-12 00:45:39',2,'2006-02-15 21:30:53'),(5093,'2005-07-09 05:59:12',2734,597,'2005-07-10 11:45:12',2,'2006-02-15 21:30:53'),(5094,'2005-07-09 05:59:47',4451,178,'2005-07-18 05:34:47',2,'2006-02-15 21:30:53'),(5095,'2005-07-09 06:08:22',2788,292,'2005-07-11 10:52:22',1,'2006-02-15 21:30:53'),(5096,'2005-07-09 06:08:23',490,231,'2005-07-14 11:36:23',1,'2006-02-15 21:30:53'),(5097,'2005-07-09 06:09:51',3252,343,'2005-07-10 03:55:51',2,'2006-02-15 21:30:53'),(5098,'2005-07-09 06:13:54',1772,406,'2005-07-10 04:27:54',1,'2006-02-15 21:30:53'),(5099,'2005-07-09 06:14:30',768,393,'2005-07-12 08:23:30',2,'2006-02-15 21:30:53'),(5100,'2005-07-09 06:16:03',3193,101,'2005-07-10 10:21:03',1,'2006-02-15 21:30:53'),(5101,'2005-07-09 06:21:29',2737,154,'2005-07-11 02:58:29',1,'2006-02-15 21:30:53'),(5102,'2005-07-09 06:25:48',242,316,'2005-07-16 11:32:48',2,'2006-02-15 21:30:53'),(5103,'2005-07-09 06:34:40',2390,397,'2005-07-10 03:44:40',2,'2006-02-15 21:30:53'),(5104,'2005-07-09 06:37:07',2109,14,'2005-07-14 12:32:07',1,'2006-02-15 21:30:53'),(5105,'2005-07-09 06:38:59',2555,290,'2005-07-17 03:06:59',2,'2006-02-15 21:30:53'),(5106,'2005-07-09 06:40:24',110,137,'2005-07-13 10:28:24',1,'2006-02-15 21:30:53'),(5107,'2005-07-09 06:42:32',1697,21,'2005-07-10 08:21:32',2,'2006-02-15 21:30:53'),(5108,'2005-07-09 06:44:30',4229,30,'2005-07-17 04:24:30',1,'2006-02-15 21:30:53'),(5109,'2005-07-09 06:48:49',2373,102,'2005-07-14 01:17:49',1,'2006-02-15 21:30:53'),(5110,'2005-07-09 06:57:25',195,200,'2005-07-12 05:39:25',2,'2006-02-15 21:30:53'),(5111,'2005-07-09 07:02:19',2875,12,'2005-07-10 06:27:19',2,'2006-02-15 21:30:53'),(5112,'2005-07-09 07:04:04',3529,285,'2005-07-13 08:42:04',1,'2006-02-15 21:30:53'),(5113,'2005-07-09 07:06:18',3618,282,'2005-07-13 07:10:18',2,'2006-02-15 21:30:53'),(5114,'2005-07-09 07:07:05',3734,64,'2005-07-15 03:06:05',1,'2006-02-15 21:30:53'),(5115,'2005-07-09 07:07:18',2296,212,'2005-07-16 03:28:18',2,'2006-02-15 21:30:53'),(5116,'2005-07-09 07:10:12',2491,332,'2005-07-14 09:16:12',2,'2006-02-15 21:30:53'),(5117,'2005-07-09 07:11:22',2284,208,'2005-07-15 08:44:22',1,'2006-02-15 21:30:53'),(5118,'2005-07-09 07:13:52',957,5,'2005-07-18 05:18:52',2,'2006-02-15 21:30:53'),(5119,'2005-07-09 07:14:18',2996,301,'2005-07-18 04:07:18',1,'2006-02-15 21:30:53'),(5120,'2005-07-09 07:14:23',4431,373,'2005-07-14 04:00:23',2,'2006-02-15 21:30:53'),(5121,'2005-07-09 07:18:31',3321,526,'2005-07-15 01:48:31',1,'2006-02-15 21:30:53'),(5122,'2005-07-09 07:19:35',1423,261,'2005-07-16 03:04:35',2,'2006-02-15 21:30:53'),(5123,'2005-07-09 07:20:30',4278,219,'2005-07-14 05:24:30',1,'2006-02-15 21:30:53'),(5124,'2005-07-09 07:25:19',1857,565,'2005-07-15 01:51:19',1,'2006-02-15 21:30:53'),(5125,'2005-07-09 07:25:28',990,263,'2005-07-12 12:34:28',1,'2006-02-15 21:30:53'),(5126,'2005-07-09 07:25:35',3312,315,'2005-07-18 05:05:35',1,'2006-02-15 21:30:53'),(5127,'2005-07-09 07:25:47',3649,129,'2005-07-13 11:44:47',2,'2006-02-15 21:30:53'),(5128,'2005-07-09 07:25:54',3757,155,'2005-07-16 04:04:54',2,'2006-02-15 21:30:53'),(5129,'2005-07-09 07:28:33',4516,441,'2005-07-14 05:12:33',2,'2006-02-15 21:30:53'),(5130,'2005-07-09 07:29:45',3264,93,'2005-07-13 05:56:45',1,'2006-02-15 21:30:53'),(5131,'2005-07-09 07:35:03',3179,167,'2005-07-10 06:05:03',1,'2006-02-15 21:30:53'),(5132,'2005-07-09 07:40:32',4158,101,'2005-07-16 02:16:32',2,'2006-02-15 21:30:53'),(5133,'2005-07-09 07:43:22',3403,469,'2005-07-12 04:52:22',1,'2006-02-15 21:30:53'),(5134,'2005-07-09 07:53:12',149,491,'2005-07-16 05:30:12',1,'2006-02-15 21:30:53'),(5135,'2005-07-09 07:53:22',3005,538,'2005-07-16 04:50:22',2,'2006-02-15 21:30:53'),(5136,'2005-07-09 07:55:01',3498,395,'2005-07-11 05:26:01',2,'2006-02-15 21:30:53'),(5137,'2005-07-09 08:00:34',409,126,'2005-07-12 05:34:34',1,'2006-02-15 21:30:53'),(5138,'2005-07-09 08:00:46',1283,548,'2005-07-12 09:31:46',2,'2006-02-15 21:30:53'),(5139,'2005-07-09 08:01:51',51,539,'2005-07-18 09:16:51',2,'2006-02-15 21:30:53'),(5140,'2005-07-09 08:04:59',947,303,'2005-07-11 08:28:59',2,'2006-02-15 21:30:53'),(5141,'2005-07-09 08:05:14',590,488,'2005-07-18 04:36:14',1,'2006-02-15 21:30:53'),(5142,'2005-07-09 08:05:23',369,56,'2005-07-13 12:37:23',2,'2006-02-15 21:30:53'),(5143,'2005-07-09 08:07:07',3803,196,'2005-07-18 10:17:07',1,'2006-02-15 21:30:53'),(5144,'2005-07-09 08:09:53',3530,89,'2005-07-18 07:11:53',2,'2006-02-15 21:30:53'),(5145,'2005-07-09 08:13:25',2397,204,'2005-07-10 03:56:25',2,'2006-02-15 21:30:53'),(5146,'2005-07-09 08:14:58',776,194,'2005-07-11 07:04:58',1,'2006-02-15 21:30:53'),(5147,'2005-07-09 08:17:41',2270,326,'2005-07-18 09:45:41',2,'2006-02-15 21:30:53'),(5148,'2005-07-09 08:22:46',456,48,'2005-07-18 04:36:46',1,'2006-02-15 21:30:53'),(5149,'2005-07-09 08:28:23',1500,330,'2005-07-16 06:19:23',2,'2006-02-15 21:30:53'),(5150,'2005-07-09 08:28:40',1961,410,'2005-07-16 04:47:40',1,'2006-02-15 21:30:53'),(5151,'2005-07-09 08:31:03',224,228,'2005-07-10 08:18:03',2,'2006-02-15 21:30:53'),(5152,'2005-07-09 08:34:44',4005,331,'2005-07-10 05:26:44',1,'2006-02-15 21:30:53'),(5153,'2005-07-09 08:35:05',2826,504,'2005-07-18 14:21:05',1,'2006-02-15 21:30:53'),(5154,'2005-07-09 08:46:18',3785,361,'2005-07-14 03:19:18',1,'2006-02-15 21:30:53'),(5155,'2005-07-09 08:46:54',988,523,'2005-07-14 04:13:54',1,'2006-02-15 21:30:53'),(5156,'2005-07-09 08:51:42',416,5,'2005-07-15 03:59:42',2,'2006-02-15 21:30:53'),(5157,'2005-07-09 08:52:12',637,463,'2005-07-12 04:32:12',2,'2006-02-15 21:30:53'),(5158,'2005-07-09 08:53:09',2825,272,'2005-07-10 11:05:09',1,'2006-02-15 21:30:53'),(5159,'2005-07-09 08:55:52',3479,213,'2005-07-10 04:32:52',1,'2006-02-15 21:30:53'),(5160,'2005-07-09 08:57:07',1925,467,'2005-07-18 06:01:07',1,'2006-02-15 21:30:53'),(5161,'2005-07-09 08:57:56',2617,284,'2005-07-18 07:41:56',2,'2006-02-15 21:30:53'),(5162,'2005-07-09 09:00:11',2765,43,'2005-07-17 07:26:11',1,'2006-02-15 21:30:53'),(5163,'2005-07-09 09:00:28',1486,103,'2005-07-17 08:07:28',2,'2006-02-15 21:30:53'),(5164,'2005-07-09 09:03:14',1170,511,'2005-07-14 04:20:14',1,'2006-02-15 21:30:53'),(5165,'2005-07-09 09:08:53',280,590,'2005-07-14 06:01:53',1,'2006-02-15 21:30:53'),(5166,'2005-07-09 09:15:48',2771,298,'2005-07-16 06:04:48',1,'2006-02-15 21:30:53'),(5167,'2005-07-09 09:18:43',2485,437,'2005-07-14 12:59:43',2,'2006-02-15 21:30:53'),(5168,'2005-07-09 09:20:01',4096,420,'2005-07-11 14:42:01',1,'2006-02-15 21:30:53'),(5169,'2005-07-09 09:22:25',2608,116,'2005-07-10 03:48:25',1,'2006-02-15 21:30:53'),(5170,'2005-07-09 09:24:19',66,209,'2005-07-18 04:02:19',1,'2006-02-15 21:30:53'),(5171,'2005-07-09 09:26:55',2099,371,'2005-07-10 10:34:55',1,'2006-02-15 21:30:53'),(5172,'2005-07-09 09:31:27',4046,214,'2005-07-13 04:03:27',1,'2006-02-15 21:30:53'),(5173,'2005-07-09 09:31:44',2848,490,'2005-07-15 04:20:44',2,'2006-02-15 21:30:53'),(5174,'2005-07-09 09:31:59',3621,47,'2005-07-15 03:49:59',1,'2006-02-15 21:30:53'),(5175,'2005-07-09 09:34:28',1003,409,'2005-07-15 15:19:28',2,'2006-02-15 21:30:53'),(5176,'2005-07-09 09:39:31',328,119,'2005-07-17 11:56:31',2,'2006-02-15 21:30:53'),(5177,'2005-07-09 09:43:21',1675,452,'2005-07-13 07:29:21',1,'2006-02-15 21:30:53'),(5178,'2005-07-09 09:59:52',1750,167,'2005-07-18 13:01:52',2,'2006-02-15 21:30:53'),(5179,'2005-07-09 10:00:44',2995,256,'2005-07-11 06:52:44',1,'2006-02-15 21:30:53'),(5180,'2005-07-09 10:06:53',3684,494,'2005-07-12 15:25:53',1,'2006-02-15 21:30:53'),(5181,'2005-07-09 10:07:27',2569,45,'2005-07-17 10:18:27',2,'2006-02-15 21:30:53'),(5182,'2005-07-09 10:08:10',725,197,'2005-07-16 14:36:10',2,'2006-02-15 21:30:53'),(5183,'2005-07-09 10:13:45',2866,394,'2005-07-16 15:55:45',2,'2006-02-15 21:30:53'),(5184,'2005-07-09 10:14:34',1101,166,'2005-07-14 16:05:34',2,'2006-02-15 21:30:53'),(5185,'2005-07-09 10:14:39',357,53,'2005-07-10 13:31:39',1,'2006-02-15 21:30:53'),(5186,'2005-07-09 10:18:40',2415,276,'2005-07-13 05:05:40',2,'2006-02-15 21:30:53'),(5187,'2005-07-09 10:19:51',2631,91,'2005-07-14 10:35:51',1,'2006-02-15 21:30:53'),(5188,'2005-07-09 10:22:31',3265,34,'2005-07-13 04:41:31',1,'2006-02-15 21:30:53'),(5189,'2005-07-09 10:23:21',2539,113,'2005-07-14 08:06:21',1,'2006-02-15 21:30:53'),(5190,'2005-07-09 10:25:24',2213,532,'2005-07-18 04:33:24',1,'2006-02-15 21:30:53'),(5191,'2005-07-09 10:26:48',2131,167,'2005-07-10 15:52:48',2,'2006-02-15 21:30:53'),(5192,'2005-07-09 10:27:09',1225,410,'2005-07-10 12:04:09',1,'2006-02-15 21:30:53'),(5193,'2005-07-09 10:28:18',2166,485,'2005-07-12 12:18:18',1,'2006-02-15 21:30:53'),(5194,'2005-07-09 10:31:34',3809,202,'2005-07-15 08:50:34',2,'2006-02-15 21:30:53'),(5195,'2005-07-09 10:39:31',3399,59,'2005-07-18 13:54:31',1,'2006-02-15 21:30:53'),(5196,'2005-07-09 10:43:34',2278,536,'2005-07-13 12:10:34',2,'2006-02-15 21:30:53'),(5197,'2005-07-09 10:43:54',1571,541,'2005-07-16 10:19:54',1,'2006-02-15 21:30:53'),(5198,'2005-07-09 10:49:10',218,101,'2005-07-13 04:52:10',1,'2006-02-15 21:30:53'),(5199,'2005-07-09 10:50:56',349,42,'2005-07-10 06:43:56',1,'2006-02-15 21:30:53'),(5200,'2005-07-09 10:52:09',4528,125,'2005-07-13 15:12:09',1,'2006-02-15 21:30:53'),(5201,'2005-07-09 10:52:53',2453,551,'2005-07-16 12:41:53',2,'2006-02-15 21:30:53'),(5202,'2005-07-09 10:53:48',3417,321,'2005-07-15 13:31:48',1,'2006-02-15 21:30:53'),(5203,'2005-07-09 10:53:59',3661,588,'2005-07-15 09:45:59',2,'2006-02-15 21:30:53'),(5204,'2005-07-09 10:54:14',1791,432,'2005-07-12 14:29:14',2,'2006-02-15 21:30:53'),(5205,'2005-07-09 10:56:37',161,79,'2005-07-13 05:45:37',1,'2006-02-15 21:30:53'),(5206,'2005-07-09 11:11:01',692,517,'2005-07-17 07:23:01',2,'2006-02-15 21:30:53'),(5207,'2005-07-09 11:15:44',3496,59,'2005-07-17 06:00:44',1,'2006-02-15 21:30:53'),(5208,'2005-07-09 11:16:56',1881,560,'2005-07-10 07:21:56',2,'2006-02-15 21:30:53'),(5209,'2005-07-09 11:22:39',4441,222,'2005-07-17 09:31:39',1,'2006-02-15 21:30:53'),(5210,'2005-07-09 11:24:19',4514,355,'2005-07-11 06:27:19',1,'2006-02-15 21:30:53'),(5211,'2005-07-09 11:26:50',2216,241,'2005-07-16 15:30:50',1,'2006-02-15 21:30:53'),(5212,'2005-07-09 11:37:47',3240,400,'2005-07-15 14:42:47',1,'2006-02-15 21:30:53'),(5213,'2005-07-09 11:39:43',3708,552,'2005-07-18 16:20:43',2,'2006-02-15 21:30:53'),(5214,'2005-07-09 11:43:08',1657,290,'2005-07-17 08:58:08',2,'2006-02-15 21:30:53'),(5215,'2005-07-09 11:47:58',3888,528,'2005-07-18 09:58:58',1,'2006-02-15 21:30:53'),(5216,'2005-07-09 11:54:58',1644,515,'2005-07-12 09:46:58',2,'2006-02-15 21:30:53'),(5217,'2005-07-09 11:56:50',4150,430,'2005-07-17 07:10:50',1,'2006-02-15 21:30:53'),(5218,'2005-07-09 11:57:12',1121,83,'2005-07-13 06:34:12',2,'2006-02-15 21:30:53'),(5219,'2005-07-09 11:57:55',3933,209,'2005-07-15 09:43:55',2,'2006-02-15 21:30:53'),(5220,'2005-07-09 11:59:04',2577,435,'2005-07-15 06:20:04',1,'2006-02-15 21:30:53'),(5221,'2005-07-09 12:02:23',2339,84,'2005-07-16 15:43:23',1,'2006-02-15 21:30:53'),(5222,'2005-07-09 12:05:45',2508,400,'2005-07-13 12:11:45',1,'2006-02-15 21:30:53'),(5223,'2005-07-09 12:06:03',2335,72,'2005-07-17 15:50:03',1,'2006-02-15 21:30:53'),(5224,'2005-07-09 12:07:27',279,311,'2005-07-17 08:59:27',1,'2006-02-15 21:30:53'),(5225,'2005-07-09 12:10:16',703,445,'2005-07-12 09:55:16',2,'2006-02-15 21:30:53'),(5226,'2005-07-09 12:10:44',3128,218,'2005-07-11 17:32:44',2,'2006-02-15 21:30:53'),(5227,'2005-07-09 12:16:39',1862,362,'2005-07-18 15:38:39',2,'2006-02-15 21:30:53'),(5228,'2005-07-09 12:26:01',622,195,'2005-07-14 13:31:01',2,'2006-02-15 21:30:53'),(5229,'2005-07-09 12:30:18',4472,372,'2005-07-14 15:31:18',2,'2006-02-15 21:30:53'),(5230,'2005-07-09 12:30:23',3707,51,'2005-07-13 08:41:23',1,'2006-02-15 21:30:53'),(5231,'2005-07-09 12:35:02',1275,405,'2005-07-10 09:22:02',1,'2006-02-15 21:30:53'),(5232,'2005-07-09 12:35:08',3353,175,'2005-07-14 14:55:08',1,'2006-02-15 21:30:53'),(5233,'2005-07-09 12:44:26',1401,131,'2005-07-15 12:31:26',1,'2006-02-15 21:30:53'),(5234,'2005-07-09 12:44:47',4182,398,'2005-07-17 10:02:47',1,'2006-02-15 21:30:53'),(5235,'2005-07-09 12:54:25',1044,122,'2005-07-18 16:28:25',1,'2006-02-15 21:30:53'),(5236,'2005-07-09 12:56:29',1215,519,'2005-07-13 08:26:29',1,'2006-02-15 21:30:53'),(5237,'2005-07-09 12:56:58',2341,84,'2005-07-11 15:41:58',1,'2006-02-15 21:30:53'),(5238,'2005-07-09 13:11:14',3297,100,'2005-07-10 07:27:14',2,'2006-02-15 21:30:53'),(5239,'2005-07-09 13:12:35',380,497,'2005-07-10 13:37:35',1,'2006-02-15 21:30:53'),(5240,'2005-07-09 13:14:48',1378,350,'2005-07-10 18:47:48',2,'2006-02-15 21:30:53'),(5241,'2005-07-09 13:19:14',4079,314,'2005-07-11 14:32:14',1,'2006-02-15 21:30:53'),(5242,'2005-07-09 13:20:25',848,12,'2005-07-18 07:38:25',1,'2006-02-15 21:30:53'),(5243,'2005-07-09 13:22:08',122,587,'2005-07-16 09:25:08',1,'2006-02-15 21:30:53'),(5244,'2005-07-09 13:24:07',3726,1,'2005-07-14 14:01:07',2,'2006-02-15 21:30:53'),(5245,'2005-07-09 13:24:14',3547,115,'2005-07-12 11:16:14',1,'2006-02-15 21:30:53'),(5246,'2005-07-09 13:25:18',3548,276,'2005-07-13 18:38:18',1,'2006-02-15 21:30:53'),(5247,'2005-07-09 13:26:28',1186,298,'2005-07-12 14:00:28',2,'2006-02-15 21:30:53'),(5248,'2005-07-09 13:29:44',246,279,'2005-07-12 18:12:44',1,'2006-02-15 21:30:53'),(5249,'2005-07-09 13:33:53',1950,389,'2005-07-11 12:55:53',2,'2006-02-15 21:30:53'),(5250,'2005-07-09 13:35:32',2162,384,'2005-07-13 12:19:32',1,'2006-02-15 21:30:53'),(5251,'2005-07-09 13:36:10',478,474,'2005-07-15 11:40:10',1,'2006-02-15 21:30:53'),(5252,'2005-07-09 13:40:44',2581,335,'2005-07-14 09:41:44',1,'2006-02-15 21:30:53'),(5253,'2005-07-09 13:41:17',2241,532,'2005-07-17 17:09:17',1,'2006-02-15 21:30:53'),(5254,'2005-07-09 13:50:11',654,263,'2005-07-13 09:07:11',1,'2006-02-15 21:30:53'),(5255,'2005-07-09 13:51:08',4418,313,'2005-07-17 13:58:08',2,'2006-02-15 21:30:53'),(5256,'2005-07-09 13:55:45',4226,273,'2005-07-15 17:02:45',1,'2006-02-15 21:30:53'),(5257,'2005-07-09 13:56:43',286,292,'2005-07-10 14:26:43',2,'2006-02-15 21:30:53'),(5258,'2005-07-09 13:56:56',3125,207,'2005-07-11 16:01:56',2,'2006-02-15 21:30:53'),(5259,'2005-07-09 14:02:50',1310,207,'2005-07-11 19:13:50',2,'2006-02-15 21:30:53'),(5260,'2005-07-09 14:05:45',3143,75,'2005-07-14 08:41:45',2,'2006-02-15 21:30:53'),(5261,'2005-07-09 14:06:56',2899,105,'2005-07-11 14:21:56',2,'2006-02-15 21:30:53'),(5262,'2005-07-09 14:08:01',1092,240,'2005-07-12 16:48:01',1,'2006-02-15 21:30:53'),(5263,'2005-07-09 14:10:36',119,406,'2005-07-12 15:07:36',1,'2006-02-15 21:30:53'),(5264,'2005-07-09 14:11:28',3307,545,'2005-07-12 18:24:28',2,'2006-02-15 21:30:53'),(5265,'2005-07-09 14:15:01',4482,139,'2005-07-18 14:43:01',2,'2006-02-15 21:30:53'),(5266,'2005-07-09 14:17:40',2409,222,'2005-07-16 10:42:40',1,'2006-02-15 21:30:53'),(5267,'2005-07-09 14:21:10',2242,233,'2005-07-15 12:02:10',1,'2006-02-15 21:30:53'),(5268,'2005-07-09 14:22:43',1083,119,'2005-07-12 08:27:43',1,'2006-02-15 21:30:53'),(5269,'2005-07-09 14:23:05',3886,230,'2005-07-17 14:03:05',1,'2006-02-15 21:30:53'),(5270,'2005-07-09 14:23:46',1523,128,'2005-07-13 15:04:46',1,'2006-02-15 21:30:53'),(5271,'2005-07-09 14:25:01',2691,522,'2005-07-16 17:28:01',1,'2006-02-15 21:30:53'),(5272,'2005-07-09 14:26:01',1547,90,'2005-07-12 20:20:01',1,'2006-02-15 21:30:53'),(5273,'2005-07-09 14:31:24',4570,38,'2005-07-14 13:27:24',2,'2006-02-15 21:30:53'),(5274,'2005-07-09 14:34:09',4579,108,'2005-07-14 13:02:09',1,'2006-02-15 21:30:53'),(5275,'2005-07-09 14:34:18',729,249,'2005-07-13 12:56:18',2,'2006-02-15 21:30:53'),(5276,'2005-07-09 14:35:13',2524,521,'2005-07-12 14:24:13',2,'2006-02-15 21:30:53'),(5277,'2005-07-09 14:40:42',2026,332,'2005-07-16 14:18:42',2,'2006-02-15 21:30:53'),(5278,'2005-07-09 14:44:23',2573,532,'2005-07-15 10:48:23',1,'2006-02-15 21:30:53'),(5279,'2005-07-09 14:46:36',709,64,'2005-07-17 10:04:36',2,'2006-02-15 21:30:53'),(5280,'2005-07-09 14:55:07',1177,351,'2005-07-12 10:05:07',2,'2006-02-15 21:30:53'),(5281,'2005-07-09 14:55:07',1966,71,'2005-07-13 15:24:07',2,'2006-02-15 21:30:53'),(5282,'2005-07-09 15:01:23',4386,226,'2005-07-13 11:06:23',2,'2006-02-15 21:30:53'),(5283,'2005-07-09 15:07:17',644,295,'2005-07-17 09:52:17',2,'2006-02-15 21:30:53'),(5284,'2005-07-09 15:08:21',1036,585,'2005-07-16 09:53:21',2,'2006-02-15 21:30:53'),(5285,'2005-07-09 15:10:44',676,468,'2005-07-16 13:02:44',2,'2006-02-15 21:30:53'),(5286,'2005-07-09 15:11:41',483,498,'2005-07-10 19:19:41',2,'2006-02-15 21:30:53'),(5287,'2005-07-09 15:11:54',3110,523,'2005-07-16 16:05:54',2,'2006-02-15 21:30:53'),(5288,'2005-07-09 15:13:07',850,120,'2005-07-16 12:39:07',1,'2006-02-15 21:30:53'),(5289,'2005-07-09 15:14:08',4336,30,'2005-07-12 12:51:08',2,'2006-02-15 21:30:53'),(5290,'2005-07-09 15:14:47',277,50,'2005-07-11 20:30:47',2,'2006-02-15 21:30:53'),(5291,'2005-07-09 15:15:02',1367,194,'2005-07-15 10:22:02',2,'2006-02-15 21:30:53'),(5292,'2005-07-09 15:16:54',3195,62,'2005-07-11 15:21:54',1,'2006-02-15 21:30:53'),(5293,'2005-07-09 15:17:23',2880,542,'2005-07-11 11:23:23',2,'2006-02-15 21:30:53'),(5294,'2005-07-09 15:23:42',3237,22,'2005-07-15 15:28:42',2,'2006-02-15 21:30:53'),(5295,'2005-07-09 15:25:06',4460,86,'2005-07-10 12:40:06',1,'2006-02-15 21:30:53'),(5296,'2005-07-09 15:26:27',495,109,'2005-07-15 10:03:27',2,'2006-02-15 21:30:53'),(5297,'2005-07-09 15:32:29',3434,202,'2005-07-14 14:58:29',1,'2006-02-15 21:30:53'),(5298,'2005-07-09 15:36:17',3491,149,'2005-07-18 19:07:17',2,'2006-02-15 21:30:53'),(5299,'2005-07-09 15:38:09',4416,469,'2005-07-15 16:39:09',2,'2006-02-15 21:30:53'),(5300,'2005-07-09 15:40:46',2520,8,'2005-07-15 13:46:46',1,'2006-02-15 21:30:53'),(5301,'2005-07-09 15:42:10',245,459,'2005-07-16 21:27:10',2,'2006-02-15 21:30:53'),(5302,'2005-07-09 15:42:36',4270,72,'2005-07-10 21:04:36',2,'2006-02-15 21:30:53'),(5303,'2005-07-09 15:44:09',3572,350,'2005-07-15 18:09:09',2,'2006-02-15 21:30:53'),(5304,'2005-07-09 15:48:06',4411,51,'2005-07-14 19:29:06',1,'2006-02-15 21:30:53'),(5305,'2005-07-09 15:55:36',625,309,'2005-07-18 15:59:36',1,'2006-02-15 21:30:53'),(5306,'2005-07-09 15:56:45',2221,409,'2005-07-15 19:02:45',2,'2006-02-15 21:30:53'),(5307,'2005-07-09 15:57:15',2847,32,'2005-07-17 13:42:15',2,'2006-02-15 21:30:53'),(5308,'2005-07-09 15:58:38',1684,52,'2005-07-15 13:55:38',2,'2006-02-15 21:30:53'),(5309,'2005-07-09 16:00:16',4026,338,'2005-07-17 17:56:16',1,'2006-02-15 21:30:53'),(5310,'2005-07-09 16:00:34',1565,24,'2005-07-12 12:45:34',2,'2006-02-15 21:30:53'),(5311,'2005-07-09 16:02:54',986,107,'2005-07-18 10:44:54',1,'2006-02-15 21:30:53'),(5312,'2005-07-09 16:03:09',2123,258,'2005-07-13 16:41:09',2,'2006-02-15 21:30:53'),(5313,'2005-07-09 16:04:45',1885,52,'2005-07-17 18:53:45',2,'2006-02-15 21:30:53'),(5314,'2005-07-09 16:05:28',3770,372,'2005-07-10 18:18:28',1,'2006-02-15 21:30:53'),(5315,'2005-07-09 16:09:19',585,134,'2005-07-14 21:10:19',1,'2006-02-15 21:30:53'),(5316,'2005-07-09 16:09:42',3856,438,'2005-07-11 15:20:42',1,'2006-02-15 21:30:53'),(5317,'2005-07-09 16:10:25',2693,14,'2005-07-18 17:10:25',2,'2006-02-15 21:30:53'),(5318,'2005-07-09 16:11:33',1738,472,'2005-07-14 12:49:33',2,'2006-02-15 21:30:53'),(5319,'2005-07-09 16:17:44',1899,282,'2005-07-18 16:35:44',1,'2006-02-15 21:30:53'),(5320,'2005-07-09 16:23:32',3140,228,'2005-07-18 18:16:32',1,'2006-02-15 21:30:53'),(5321,'2005-07-09 16:26:33',3347,245,'2005-07-15 15:05:33',2,'2006-02-15 21:30:53'),(5322,'2005-07-09 16:28:13',4420,432,'2005-07-18 14:53:13',1,'2006-02-15 21:30:53'),(5323,'2005-07-09 16:34:07',1302,35,'2005-07-13 21:37:07',1,'2006-02-15 21:30:53'),(5324,'2005-07-09 16:34:18',4024,113,'2005-07-15 12:35:18',2,'2006-02-15 21:30:53'),(5325,'2005-07-09 16:35:47',2703,492,'2005-07-10 11:52:47',1,'2006-02-15 21:30:53'),(5326,'2005-07-09 16:38:01',797,1,'2005-07-13 18:02:01',1,'2006-02-15 21:30:53'),(5327,'2005-07-09 16:39:49',3657,547,'2005-07-12 18:47:49',2,'2006-02-15 21:30:53'),(5328,'2005-07-09 16:48:29',2444,247,'2005-07-17 20:20:29',2,'2006-02-15 21:30:53'),(5329,'2005-07-09 16:49:46',1628,402,'2005-07-16 19:05:46',1,'2006-02-15 21:30:53'),(5330,'2005-07-09 16:53:57',3812,410,'2005-07-18 19:54:57',1,'2006-02-15 21:30:53'),(5331,'2005-07-09 16:54:06',4181,447,'2005-07-10 19:04:06',1,'2006-02-15 21:30:53'),(5332,'2005-07-09 16:59:23',3269,568,'2005-07-10 16:01:23',2,'2006-02-15 21:30:53'),(5333,'2005-07-09 16:59:38',2142,419,'2005-07-16 17:23:38',2,'2006-02-15 21:30:53'),(5334,'2005-07-09 17:00:13',3852,482,'2005-07-11 15:50:13',1,'2006-02-15 21:30:53'),(5335,'2005-07-09 17:00:49',2353,588,'2005-07-12 12:21:49',2,'2006-02-15 21:30:53'),(5336,'2005-07-09 17:01:08',4144,410,'2005-07-11 19:22:08',2,'2006-02-15 21:30:53'),(5337,'2005-07-09 17:03:50',4168,343,'2005-07-16 22:25:50',2,'2006-02-15 21:30:53'),(5338,'2005-07-09 17:07:07',3449,191,'2005-07-14 11:15:07',1,'2006-02-15 21:30:53'),(5339,'2005-07-09 17:09:17',698,380,'2005-07-10 21:07:17',2,'2006-02-15 21:30:53'),(5340,'2005-07-09 17:11:35',650,267,'2005-07-17 17:59:35',2,'2006-02-15 21:30:53'),(5341,'2005-07-09 17:13:23',2522,8,'2005-07-14 18:11:23',2,'2006-02-15 21:30:53'),(5342,'2005-07-09 17:20:03',3828,289,'2005-07-18 12:44:03',2,'2006-02-15 21:30:53'),(5343,'2005-07-09 17:23:43',92,485,'2005-07-18 22:14:43',1,'2006-02-15 21:30:53'),(5344,'2005-07-09 17:27:05',159,197,'2005-07-10 15:51:05',2,'2006-02-15 21:30:53'),(5345,'2005-07-09 17:28:18',3055,348,'2005-07-11 14:30:18',2,'2006-02-15 21:30:53'),(5346,'2005-07-09 17:29:01',2488,287,'2005-07-14 12:47:01',2,'2006-02-15 21:30:53'),(5347,'2005-07-09 17:31:32',1293,246,'2005-07-10 21:06:32',2,'2006-02-15 21:30:53'),(5348,'2005-07-09 17:34:11',3495,597,'2005-07-15 18:32:11',2,'2006-02-15 21:30:53'),(5349,'2005-07-09 17:35:35',3139,161,'2005-07-18 14:05:35',1,'2006-02-15 21:30:53'),(5350,'2005-07-09 17:39:30',724,129,'2005-07-11 16:43:30',2,'2006-02-15 21:30:53'),(5351,'2005-07-09 17:40:52',3722,112,'2005-07-14 16:55:52',2,'2006-02-15 21:30:53'),(5352,'2005-07-09 17:54:58',908,372,'2005-07-15 16:20:58',1,'2006-02-15 21:30:53'),(5353,'2005-07-09 18:04:29',2994,196,'2005-07-15 17:46:29',2,'2006-02-15 21:30:53'),(5354,'2005-07-09 18:04:33',951,354,'2005-07-15 18:19:33',1,'2006-02-15 21:30:53'),(5355,'2005-07-09 18:07:17',2458,100,'2005-07-16 20:33:17',2,'2006-02-15 21:30:53'),(5356,'2005-07-09 18:08:28',2905,188,'2005-07-14 14:11:28',2,'2006-02-15 21:30:53'),(5357,'2005-07-09 18:08:59',1988,411,'2005-07-16 17:28:59',2,'2006-02-15 21:30:53'),(5358,'2005-07-09 18:09:21',3764,71,'2005-07-14 23:59:21',2,'2006-02-15 21:30:53'),(5359,'2005-07-09 18:10:52',4392,453,'2005-07-18 13:34:52',2,'2006-02-15 21:30:53'),(5360,'2005-07-09 18:14:03',679,562,'2005-07-10 15:17:03',2,'2006-02-15 21:30:53'),(5361,'2005-07-09 18:15:32',2045,279,'2005-07-17 23:32:32',2,'2006-02-15 21:30:53'),(5362,'2005-07-09 18:16:08',24,266,'2005-07-18 18:27:08',1,'2006-02-15 21:30:53'),(5363,'2005-07-09 18:18:49',2180,425,'2005-07-14 22:16:49',1,'2006-02-15 21:30:53'),(5364,'2005-07-09 18:24:48',2746,366,'2005-07-10 12:30:48',1,'2006-02-15 21:30:53'),(5365,'2005-07-09 18:27:00',4469,527,'2005-07-11 14:18:00',1,'2006-02-15 21:30:53'),(5366,'2005-07-09 18:28:37',886,187,'2005-07-13 20:45:37',1,'2006-02-15 21:30:53'),(5367,'2005-07-09 18:39:15',1446,485,'2005-07-16 14:19:15',2,'2006-02-15 21:30:53'),(5368,'2005-07-09 18:41:59',4429,502,'2005-07-16 00:32:59',2,'2006-02-15 21:30:53'),(5369,'2005-07-09 18:42:16',1550,538,'2005-07-12 18:16:16',2,'2006-02-15 21:30:53'),(5370,'2005-07-09 18:43:19',2193,248,'2005-07-15 19:59:19',1,'2006-02-15 21:30:53'),(5371,'2005-07-09 18:47:48',789,425,'2005-07-14 14:39:48',2,'2006-02-15 21:30:53'),(5372,'2005-07-09 18:48:39',3551,148,'2005-07-11 17:40:39',1,'2006-02-15 21:30:53'),(5373,'2005-07-09 18:48:57',950,428,'2005-07-10 16:34:57',1,'2006-02-15 21:30:53'),(5374,'2005-07-09 18:52:08',946,144,'2005-07-16 16:34:08',1,'2006-02-15 21:30:53'),(5375,'2005-07-09 18:52:55',1407,558,'2005-07-16 15:32:55',2,'2006-02-15 21:30:53'),(5376,'2005-07-09 18:54:08',1730,104,'2005-07-17 22:01:08',1,'2006-02-15 21:30:53'),(5377,'2005-07-09 19:04:30',3118,578,'2005-07-11 14:42:30',1,'2006-02-15 21:30:53'),(5378,'2005-07-09 19:05:56',1570,138,'2005-07-10 18:03:56',2,'2006-02-15 21:30:53'),(5379,'2005-07-09 19:08:03',2110,475,'2005-07-10 17:58:03',1,'2006-02-15 21:30:53'),(5380,'2005-07-09 19:08:44',3047,166,'2005-07-11 20:09:44',1,'2006-02-15 21:30:53'),(5381,'2005-07-09 19:11:11',3033,332,'2005-07-13 17:10:11',2,'2006-02-15 21:30:53'),(5382,'2005-07-09 19:12:57',78,586,'2005-07-14 15:44:57',1,'2006-02-15 21:30:53'),(5383,'2005-07-09 19:14:32',573,14,'2005-07-11 19:57:32',1,'2006-02-15 21:30:53'),(5384,'2005-07-09 19:17:46',1729,180,'2005-07-12 13:50:46',1,'2006-02-15 21:30:53'),(5385,'2005-07-09 19:18:11',4291,112,'2005-07-16 18:50:11',2,'2006-02-15 21:30:53'),(5386,'2005-07-09 19:19:09',721,594,'2005-07-13 00:13:09',2,'2006-02-15 21:30:53'),(5387,'2005-07-09 19:25:14',4452,244,'2005-07-11 21:00:14',1,'2006-02-15 21:30:53'),(5388,'2005-07-09 19:25:25',1546,332,'2005-07-14 19:51:25',2,'2006-02-15 21:30:53'),(5389,'2005-07-09 19:25:45',3882,484,'2005-07-17 13:31:45',1,'2006-02-15 21:30:53'),(5390,'2005-07-09 19:26:22',715,139,'2005-07-14 22:46:22',1,'2006-02-15 21:30:53'),(5391,'2005-07-09 19:28:34',402,132,'2005-07-18 01:07:34',1,'2006-02-15 21:30:53'),(5392,'2005-07-09 19:32:30',2552,499,'2005-07-16 15:01:30',1,'2006-02-15 21:30:53'),(5393,'2005-07-09 19:35:12',1417,446,'2005-07-11 14:00:12',1,'2006-02-15 21:30:53'),(5394,'2005-07-09 19:36:15',1828,83,'2005-07-18 18:10:15',2,'2006-02-15 21:30:53'),(5395,'2005-07-09 19:42:37',4428,131,'2005-07-10 15:39:37',1,'2006-02-15 21:30:53'),(5396,'2005-07-09 19:42:52',3795,559,'2005-07-15 21:45:52',1,'2006-02-15 21:30:53'),(5397,'2005-07-09 19:43:51',4376,191,'2005-07-17 00:11:51',1,'2006-02-15 21:30:53'),(5398,'2005-07-09 19:44:58',4352,199,'2005-07-17 00:56:58',1,'2006-02-15 21:30:53'),(5399,'2005-07-09 19:52:44',261,67,'2005-07-10 18:31:44',2,'2006-02-15 21:30:53'),(5400,'2005-07-09 19:56:40',3435,192,'2005-07-14 20:43:40',2,'2006-02-15 21:30:53'),(5401,'2005-07-09 19:59:10',431,43,'2005-07-11 23:21:10',2,'2006-02-15 21:30:53'),(5402,'2005-07-09 20:01:58',4450,379,'2005-07-10 14:07:58',1,'2006-02-15 21:30:53'),(5403,'2005-07-09 20:07:09',3991,36,'2005-07-12 18:33:09',1,'2006-02-15 21:30:53'),(5404,'2005-07-09 20:10:43',3685,236,'2005-07-13 15:16:43',1,'2006-02-15 21:30:53'),(5405,'2005-07-09 20:11:49',799,45,'2005-07-18 18:37:49',2,'2006-02-15 21:30:53'),(5406,'2005-07-09 20:13:23',1322,563,'2005-07-11 22:05:23',2,'2006-02-15 21:30:53'),(5407,'2005-07-09 20:16:07',3641,475,'2005-07-14 21:41:07',2,'2006-02-15 21:30:53'),(5408,'2005-07-09 20:16:51',3162,144,'2005-07-18 22:19:51',1,'2006-02-15 21:30:53'),(5409,'2005-07-09 20:17:19',3538,446,'2005-07-13 23:30:19',1,'2006-02-15 21:30:53'),(5410,'2005-07-09 20:21:10',2261,281,'2005-07-18 21:43:10',2,'2006-02-15 21:30:53'),(5411,'2005-07-09 20:23:38',4292,304,'2005-07-16 01:17:38',2,'2006-02-15 21:30:53'),(5412,'2005-07-09 20:23:52',3174,458,'2005-07-18 18:40:52',1,'2006-02-15 21:30:53'),(5413,'2005-07-09 20:28:42',2056,167,'2005-07-10 19:23:42',2,'2006-02-15 21:30:53'),(5414,'2005-07-09 20:29:36',1201,174,'2005-07-13 01:55:36',2,'2006-02-15 21:30:53'),(5415,'2005-07-09 20:30:03',4413,475,'2005-07-18 00:20:03',1,'2006-02-15 21:30:53'),(5416,'2005-07-09 20:33:50',568,219,'2005-07-14 01:50:50',2,'2006-02-15 21:30:53'),(5417,'2005-07-09 20:34:09',3569,265,'2005-07-14 00:36:09',2,'2006-02-15 21:30:53'),(5418,'2005-07-09 20:41:35',55,114,'2005-07-14 00:15:35',1,'2006-02-15 21:30:53'),(5419,'2005-07-09 20:47:36',1516,226,'2005-07-12 01:36:36',1,'2006-02-15 21:30:53'),(5420,'2005-07-09 20:48:42',1739,80,'2005-07-15 21:35:42',2,'2006-02-15 21:30:53'),(5421,'2005-07-09 20:49:12',2437,33,'2005-07-10 16:30:12',1,'2006-02-15 21:30:53'),(5422,'2005-07-09 20:55:47',436,409,'2005-07-15 15:15:47',2,'2006-02-15 21:30:53'),(5423,'2005-07-09 20:56:48',1952,440,'2005-07-17 14:58:48',2,'2006-02-15 21:30:53'),(5424,'2005-07-09 20:59:09',3694,72,'2005-07-12 00:05:09',2,'2006-02-15 21:30:53'),(5425,'2005-07-09 21:02:26',531,37,'2005-07-16 23:38:26',2,'2006-02-15 21:30:53'),(5426,'2005-07-09 21:04:47',251,438,'2005-07-17 00:55:47',1,'2006-02-15 21:30:53'),(5427,'2005-07-09 21:12:26',3197,499,'2005-07-14 01:02:26',1,'2006-02-15 21:30:53'),(5428,'2005-07-09 21:12:50',3109,346,'2005-07-14 16:25:50',2,'2006-02-15 21:30:53'),(5429,'2005-07-09 21:14:03',2467,105,'2005-07-18 01:33:03',1,'2006-02-15 21:30:53'),(5430,'2005-07-09 21:19:54',1441,173,'2005-07-15 22:53:54',1,'2006-02-15 21:30:53'),(5431,'2005-07-09 21:21:11',2780,213,'2005-07-10 21:16:11',1,'2006-02-15 21:30:53'),(5432,'2005-07-09 21:21:25',1958,64,'2005-07-14 21:34:25',2,'2006-02-15 21:30:53'),(5433,'2005-07-09 21:22:00',2679,349,'2005-07-10 21:18:00',2,'2006-02-15 21:30:53'),(5434,'2005-07-09 21:25:20',3790,334,'2005-07-15 03:12:20',2,'2006-02-15 21:30:53'),(5435,'2005-07-09 21:28:07',2884,273,'2005-07-18 21:16:07',2,'2006-02-15 21:30:53'),(5436,'2005-07-09 21:31:11',2364,89,'2005-07-13 16:59:11',2,'2006-02-15 21:30:53'),(5437,'2005-07-09 21:32:29',3532,26,'2005-07-15 00:27:29',2,'2006-02-15 21:30:53'),(5438,'2005-07-09 21:34:32',487,241,'2005-07-16 02:21:32',2,'2006-02-15 21:30:53'),(5439,'2005-07-09 21:39:35',1993,58,'2005-07-13 17:45:35',2,'2006-02-15 21:30:53'),(5440,'2005-07-09 21:45:17',138,332,'2005-07-11 22:43:17',2,'2006-02-15 21:30:53'),(5441,'2005-07-09 21:52:05',3913,7,'2005-07-17 02:54:05',1,'2006-02-15 21:30:53'),(5442,'2005-07-09 21:55:19',3093,29,'2005-07-19 01:18:19',2,'2006-02-15 21:30:53'),(5443,'2005-07-09 21:56:09',2951,137,'2005-07-16 00:33:09',2,'2006-02-15 21:30:53'),(5444,'2005-07-09 21:58:57',2968,10,'2005-07-11 03:09:57',2,'2006-02-15 21:30:53'),(5445,'2005-07-09 21:59:41',565,578,'2005-07-15 00:40:41',1,'2006-02-15 21:30:53'),(5446,'2005-07-09 21:59:55',2769,454,'2005-07-11 01:45:55',2,'2006-02-15 21:30:53'),(5447,'2005-07-09 22:09:28',2530,473,'2005-07-18 20:03:28',2,'2006-02-15 21:30:53'),(5448,'2005-07-09 22:11:14',646,463,'2005-07-15 21:08:14',2,'2006-02-15 21:30:53'),(5449,'2005-07-09 22:12:01',921,261,'2005-07-18 01:18:01',2,'2006-02-15 21:30:53'),(5450,'2005-07-09 22:13:25',2356,328,'2005-07-13 23:28:25',1,'2006-02-15 21:30:53'),(5451,'2005-07-09 22:22:10',3484,39,'2005-07-11 02:43:10',1,'2006-02-15 21:30:53'),(5452,'2005-07-09 22:23:21',2036,80,'2005-07-17 00:20:21',1,'2006-02-15 21:30:53'),(5453,'2005-07-09 22:24:11',1780,106,'2005-07-19 04:08:11',1,'2006-02-15 21:30:53'),(5454,'2005-07-09 22:24:25',3049,97,'2005-07-11 01:52:25',1,'2006-02-15 21:30:53'),(5455,'2005-07-09 22:28:45',1955,464,'2005-07-18 02:50:45',2,'2006-02-15 21:30:53'),(5456,'2005-07-09 22:31:45',3003,360,'2005-07-12 03:53:45',1,'2006-02-15 21:30:53'),(5457,'2005-07-09 22:33:14',4179,433,'2005-07-12 02:30:14',1,'2006-02-15 21:30:53'),(5458,'2005-07-09 22:35:49',2203,521,'2005-07-16 22:55:49',1,'2006-02-15 21:30:53'),(5459,'2005-07-09 22:43:56',1847,168,'2005-07-12 18:05:56',1,'2006-02-15 21:30:53'),(5460,'2005-07-09 22:46:14',2410,38,'2005-07-12 21:26:14',2,'2006-02-15 21:30:53'),(5461,'2005-07-09 22:48:04',53,244,'2005-07-10 17:56:04',2,'2006-02-15 21:30:53'),(5462,'2005-07-09 22:56:53',871,583,'2005-07-11 21:50:53',2,'2006-02-15 21:30:53'),(5463,'2005-07-09 22:57:02',601,374,'2005-07-11 03:10:02',1,'2006-02-15 21:30:53'),(5464,'2005-07-09 22:58:14',3692,434,'2005-07-15 02:48:14',1,'2006-02-15 21:30:53'),(5465,'2005-07-09 23:01:13',723,503,'2005-07-13 01:03:13',1,'2006-02-15 21:30:53'),(5466,'2005-07-09 23:03:21',2302,482,'2005-07-10 20:11:21',2,'2006-02-15 21:30:53'),(5467,'2005-07-09 23:05:47',374,543,'2005-07-16 17:06:47',2,'2006-02-15 21:30:53'),(5468,'2005-07-09 23:06:09',2196,81,'2005-07-13 00:48:09',1,'2006-02-15 21:30:53'),(5469,'2005-07-09 23:08:07',2201,475,'2005-07-13 19:13:07',1,'2006-02-15 21:30:53'),(5470,'2005-07-09 23:10:49',3254,325,'2005-07-18 04:30:49',1,'2006-02-15 21:30:53'),(5471,'2005-07-09 23:11:52',4086,347,'2005-07-13 02:08:52',2,'2006-02-15 21:30:53'),(5472,'2005-07-09 23:16:40',865,165,'2005-07-10 18:43:40',2,'2006-02-15 21:30:53'),(5473,'2005-07-09 23:19:11',4283,51,'2005-07-19 02:30:11',2,'2006-02-15 21:30:53'),(5474,'2005-07-09 23:23:57',3608,375,'2005-07-15 03:11:57',1,'2006-02-15 21:30:53'),(5475,'2005-07-09 23:31:38',726,219,'2005-07-12 03:51:38',1,'2006-02-15 21:30:53'),(5476,'2005-07-09 23:37:09',1199,427,'2005-07-15 23:57:09',1,'2006-02-15 21:30:53'),(5477,'2005-07-09 23:43:49',994,542,'2005-07-15 05:03:49',2,'2006-02-15 21:30:53'),(5478,'2005-07-09 23:45:15',3213,583,'2005-07-15 22:48:15',1,'2006-02-15 21:30:53'),(5479,'2005-07-09 23:47:33',216,250,'2005-07-13 01:09:33',1,'2006-02-15 21:30:53'),(5480,'2005-07-09 23:49:07',847,452,'2005-07-12 00:15:07',1,'2006-02-15 21:30:53'),(5481,'2005-07-09 23:51:57',562,479,'2005-07-11 05:28:57',2,'2006-02-15 21:30:53'),(5482,'2005-07-09 23:53:04',2136,460,'2005-07-15 04:59:04',1,'2006-02-15 21:30:53'),(5483,'2005-07-09 23:54:09',4362,89,'2005-07-17 23:36:09',1,'2006-02-15 21:30:53'),(5484,'2005-07-09 23:54:37',3248,495,'2005-07-15 02:05:37',1,'2006-02-15 21:30:53'),(5485,'2005-07-09 23:55:25',3930,173,'2005-07-14 04:08:25',1,'2006-02-15 21:30:53'),(5486,'2005-07-09 23:57:44',2864,538,'2005-07-14 00:23:44',1,'2006-02-15 21:30:53'),(5487,'2005-07-10 00:01:50',1144,341,'2005-07-10 20:43:50',1,'2006-02-15 21:30:53'),(5488,'2005-07-10 00:02:06',4262,173,'2005-07-15 01:45:06',2,'2006-02-15 21:30:53'),(5489,'2005-07-10 00:07:03',2319,490,'2005-07-15 19:52:03',1,'2006-02-15 21:30:53'),(5490,'2005-07-10 00:09:11',3044,367,'2005-07-14 21:23:11',1,'2006-02-15 21:30:53'),(5491,'2005-07-10 00:09:45',2007,49,'2005-07-11 02:25:45',1,'2006-02-15 21:30:53'),(5492,'2005-07-10 00:11:09',4524,558,'2005-07-14 01:27:09',1,'2006-02-15 21:30:53'),(5493,'2005-07-10 00:11:44',2037,539,'2005-07-15 19:24:44',2,'2006-02-15 21:30:53'),(5494,'2005-07-10 00:15:00',3087,139,'2005-07-17 01:12:00',2,'2006-02-15 21:30:53'),(5495,'2005-07-10 00:16:54',2199,257,'2005-07-19 01:22:54',2,'2006-02-15 21:30:53'),(5496,'2005-07-10 00:20:23',3182,369,'2005-07-18 21:10:23',2,'2006-02-15 21:30:53'),(5497,'2005-07-10 00:23:23',4473,92,'2005-07-16 03:54:23',1,'2006-02-15 21:30:53'),(5498,'2005-07-10 00:27:21',63,302,'2005-07-13 20:11:21',2,'2006-02-15 21:30:53'),(5499,'2005-07-10 00:27:45',1525,127,'2005-07-17 06:11:45',1,'2006-02-15 21:30:53'),(5500,'2005-07-10 00:28:17',3380,457,'2005-07-15 19:09:17',1,'2006-02-15 21:30:53'),(5501,'2005-07-10 00:33:48',3979,372,'2005-07-17 02:58:48',1,'2006-02-15 21:30:53'),(5502,'2005-07-10 00:34:15',3712,243,'2005-07-11 21:44:15',1,'2006-02-15 21:30:53'),(5503,'2005-07-10 00:35:37',3892,262,'2005-07-12 20:29:37',1,'2006-02-15 21:30:53'),(5504,'2005-07-10 00:36:38',3053,455,'2005-07-16 19:36:38',1,'2006-02-15 21:30:53'),(5505,'2005-07-10 00:38:48',896,253,'2005-07-12 03:12:48',2,'2006-02-15 21:30:53'),(5506,'2005-07-10 00:45:48',2432,117,'2005-07-18 20:35:48',2,'2006-02-15 21:30:53'),(5507,'2005-07-10 00:49:04',716,399,'2005-07-15 22:06:04',2,'2006-02-15 21:30:53'),(5508,'2005-07-10 00:50:01',2977,345,'2005-07-16 19:07:01',1,'2006-02-15 21:30:53'),(5509,'2005-07-10 00:54:46',1142,102,'2005-07-16 05:10:46',1,'2006-02-15 21:30:53'),(5510,'2005-07-10 00:58:37',1298,67,'2005-07-17 22:02:37',2,'2006-02-15 21:30:53'),(5511,'2005-07-10 01:00:00',3678,301,'2005-07-12 20:44:00',1,'2006-02-15 21:30:53'),(5512,'2005-07-10 01:05:38',4470,405,'2005-07-17 20:47:38',1,'2006-02-15 21:30:53'),(5513,'2005-07-10 01:05:41',2558,356,'2005-07-11 02:05:41',2,'2006-02-15 21:30:53'),(5514,'2005-07-10 01:09:42',1824,522,'2005-07-17 05:47:42',1,'2006-02-15 21:30:53'),(5515,'2005-07-10 01:12:44',3772,39,'2005-07-13 00:39:44',1,'2006-02-15 21:30:53'),(5516,'2005-07-10 01:13:52',1902,581,'2005-07-15 22:56:52',1,'2006-02-15 21:30:53'),(5517,'2005-07-10 01:15:00',3689,42,'2005-07-19 01:59:00',1,'2006-02-15 21:30:53'),(5518,'2005-07-10 01:15:11',3340,451,'2005-07-18 19:28:11',2,'2006-02-15 21:30:53'),(5519,'2005-07-10 01:18:32',1312,85,'2005-07-11 20:39:32',1,'2006-02-15 21:30:53'),(5520,'2005-07-10 01:30:41',2527,501,'2005-07-15 21:37:41',2,'2006-02-15 21:30:53'),(5521,'2005-07-10 01:31:22',1956,182,'2005-07-17 05:42:22',2,'2006-02-15 21:30:53'),(5522,'2005-07-10 01:46:29',2622,573,'2005-07-18 00:41:29',2,'2006-02-15 21:30:53'),(5523,'2005-07-10 01:47:55',2233,125,'2005-07-18 22:25:55',1,'2006-02-15 21:30:53'),(5524,'2005-07-10 01:49:24',3596,386,'2005-07-14 22:55:24',1,'2006-02-15 21:30:53'),(5525,'2005-07-10 02:03:08',3141,241,'2005-07-18 07:32:08',1,'2006-02-15 21:30:53'),(5526,'2005-07-10 02:04:03',3909,144,'2005-07-16 22:15:03',2,'2006-02-15 21:30:53'),(5527,'2005-07-10 02:06:01',4462,554,'2005-07-15 00:55:01',2,'2006-02-15 21:30:53'),(5528,'2005-07-10 02:09:21',680,551,'2005-07-17 06:22:21',2,'2006-02-15 21:30:53'),(5529,'2005-07-10 02:11:13',1652,590,'2005-07-15 06:56:13',2,'2006-02-15 21:30:53'),(5530,'2005-07-10 02:13:49',2701,74,'2005-07-18 08:01:49',2,'2006-02-15 21:30:53'),(5531,'2005-07-10 02:13:59',2992,173,'2005-07-15 00:01:59',2,'2006-02-15 21:30:53'),(5532,'2005-07-10 02:17:31',983,522,'2005-07-16 02:57:31',2,'2006-02-15 21:30:53'),(5533,'2005-07-10 02:19:28',2567,270,'2005-07-11 01:37:28',1,'2006-02-15 21:30:53'),(5534,'2005-07-10 02:26:49',3251,156,'2005-07-11 07:13:49',1,'2006-02-15 21:30:53'),(5535,'2005-07-10 02:27:42',1623,394,'2005-07-12 21:13:42',1,'2006-02-15 21:30:53'),(5536,'2005-07-10 02:29:42',1919,195,'2005-07-13 04:06:42',2,'2006-02-15 21:30:53'),(5537,'2005-07-10 02:35:41',1781,254,'2005-07-13 07:11:41',2,'2006-02-15 21:30:53'),(5538,'2005-07-10 02:39:40',2119,367,'2005-07-12 01:39:40',2,'2006-02-15 21:30:53'),(5539,'2005-07-10 02:42:58',3217,90,'2005-07-16 02:27:58',2,'2006-02-15 21:30:53'),(5540,'2005-07-10 02:44:21',132,250,'2005-07-11 07:13:21',1,'2006-02-15 21:30:53'),(5541,'2005-07-10 02:44:27',1211,135,'2005-07-13 04:13:27',2,'2006-02-15 21:30:53'),(5542,'2005-07-10 02:45:53',1713,105,'2005-07-15 23:23:53',2,'2006-02-15 21:30:53'),(5543,'2005-07-10 02:48:03',1496,71,'2005-07-17 05:49:03',2,'2006-02-15 21:30:53'),(5544,'2005-07-10 02:48:07',1014,316,'2005-07-17 01:08:07',1,'2006-02-15 21:30:53'),(5545,'2005-07-10 02:50:29',118,236,'2005-07-16 02:11:29',1,'2006-02-15 21:30:53'),(5546,'2005-07-10 02:50:37',2918,515,'2005-07-16 08:22:37',1,'2006-02-15 21:30:53'),(5547,'2005-07-10 02:52:47',1432,519,'2005-07-16 02:10:47',1,'2006-02-15 21:30:53'),(5548,'2005-07-10 02:56:45',2973,317,'2005-07-13 01:33:45',2,'2006-02-15 21:30:53'),(5549,'2005-07-10 02:58:29',2685,163,'2005-07-17 05:24:29',2,'2006-02-15 21:30:53'),(5550,'2005-07-10 02:58:35',1905,254,'2005-07-16 02:38:35',2,'2006-02-15 21:30:53'),(5551,'2005-07-10 03:01:09',4238,44,'2005-07-18 02:04:09',2,'2006-02-15 21:30:53'),(5552,'2005-07-10 03:01:19',2879,27,'2005-07-13 06:53:19',2,'2006-02-15 21:30:53'),(5553,'2005-07-10 03:03:35',1686,6,'2005-07-14 07:49:35',2,'2006-02-15 21:30:53'),(5554,'2005-07-10 03:03:38',4084,252,'2005-07-17 00:00:38',2,'2006-02-15 21:30:53'),(5555,'2005-07-10 03:08:55',2551,79,'2005-07-11 01:36:55',2,'2006-02-15 21:30:53'),(5556,'2005-07-10 03:10:17',4483,354,'2005-07-14 02:47:17',1,'2006-02-15 21:30:53'),(5557,'2005-07-10 03:10:21',1433,346,'2005-07-11 21:34:21',1,'2006-02-15 21:30:53'),(5558,'2005-07-10 03:12:08',1123,96,'2005-07-14 03:09:08',2,'2006-02-15 21:30:53'),(5559,'2005-07-10 03:13:07',4122,496,'2005-07-18 08:33:07',1,'2006-02-15 21:30:53'),(5560,'2005-07-10 03:13:24',720,231,'2005-07-19 06:03:24',2,'2006-02-15 21:30:53'),(5561,'2005-07-10 03:15:24',1048,369,'2005-07-15 06:46:24',1,'2006-02-15 21:30:53'),(5562,'2005-07-10 03:17:42',3604,300,'2005-07-12 03:26:42',1,'2006-02-15 21:30:53'),(5563,'2005-07-10 03:21:02',2258,362,'2005-07-14 07:40:02',1,'2006-02-15 21:30:53'),(5564,'2005-07-10 03:23:05',196,355,'2005-07-16 07:46:05',2,'2006-02-15 21:30:53'),(5565,'2005-07-10 03:29:48',3368,14,'2005-07-17 04:43:48',1,'2006-02-15 21:30:53'),(5566,'2005-07-10 03:30:17',1343,124,'2005-07-13 06:32:17',1,'2006-02-15 21:30:53'),(5567,'2005-07-10 03:36:46',1616,147,'2005-07-15 23:22:46',2,'2006-02-15 21:30:53'),(5568,'2005-07-10 03:36:56',1130,424,'2005-07-11 08:35:56',2,'2006-02-15 21:30:53'),(5569,'2005-07-10 03:38:32',2835,69,'2005-07-16 00:02:32',2,'2006-02-15 21:30:53'),(5570,'2005-07-10 03:46:47',2013,374,'2005-07-17 09:28:47',1,'2006-02-15 21:30:53'),(5571,'2005-07-10 03:48:20',1084,76,'2005-07-11 02:09:20',2,'2006-02-15 21:30:53'),(5572,'2005-07-10 03:49:00',2709,458,'2005-07-14 01:25:00',1,'2006-02-15 21:30:53'),(5573,'2005-07-10 03:50:47',2957,170,'2005-07-17 06:40:47',2,'2006-02-15 21:30:53'),(5574,'2005-07-10 03:54:38',2307,163,'2005-07-19 07:20:38',2,'2006-02-15 21:30:53'),(5575,'2005-07-10 03:55:50',2316,107,'2005-07-12 08:40:50',1,'2006-02-15 21:30:53'),(5576,'2005-07-10 03:57:05',1453,217,'2005-07-13 02:16:05',2,'2006-02-15 21:30:53'),(5577,'2005-07-10 03:58:40',3779,266,'2005-07-14 03:36:40',1,'2006-02-15 21:30:53'),(5578,'2005-07-10 04:00:31',4543,378,'2005-07-16 08:06:31',2,'2006-02-15 21:30:53'),(5579,'2005-07-10 04:04:29',945,203,'2005-07-14 04:31:29',1,'2006-02-15 21:30:53'),(5580,'2005-07-10 04:05:49',2753,521,'2005-07-18 22:36:49',2,'2006-02-15 21:30:53'),(5581,'2005-07-10 04:06:06',3450,306,'2005-07-15 08:31:06',2,'2006-02-15 21:30:53'),(5582,'2005-07-10 04:08:25',3341,305,'2005-07-13 06:04:25',1,'2006-02-15 21:30:53'),(5583,'2005-07-10 04:08:48',1242,391,'2005-07-19 07:59:48',1,'2006-02-15 21:30:53'),(5584,'2005-07-10 04:15:25',2606,289,'2005-07-16 22:54:25',2,'2006-02-15 21:30:53'),(5585,'2005-07-10 04:15:43',3524,63,'2005-07-15 08:24:43',1,'2006-02-15 21:30:53'),(5586,'2005-07-10 04:17:06',2965,427,'2005-07-18 07:11:06',1,'2006-02-15 21:30:53'),(5587,'2005-07-10 04:17:25',4485,531,'2005-07-15 01:41:25',1,'2006-02-15 21:30:53'),(5588,'2005-07-10 04:21:10',1166,535,'2005-07-16 02:58:10',2,'2006-02-15 21:30:53'),(5589,'2005-07-10 04:22:58',3673,296,'2005-07-10 23:13:58',1,'2006-02-15 21:30:53'),(5590,'2005-07-10 04:23:11',4442,407,'2005-07-19 09:03:11',1,'2006-02-15 21:30:53'),(5591,'2005-07-10 04:25:03',378,374,'2005-07-16 04:21:03',1,'2006-02-15 21:30:53'),(5592,'2005-07-10 04:26:13',2471,222,'2005-07-19 02:32:13',2,'2006-02-15 21:30:53'),(5593,'2005-07-10 04:33:13',702,287,'2005-07-17 08:44:13',2,'2006-02-15 21:30:53'),(5594,'2005-07-10 04:33:36',61,440,'2005-07-12 08:13:36',2,'2006-02-15 21:30:53'),(5595,'2005-07-10 04:33:45',264,572,'2005-07-16 04:04:45',1,'2006-02-15 21:30:53'),(5596,'2005-07-10 04:43:14',1662,240,'2005-07-11 22:58:14',2,'2006-02-15 21:30:53'),(5597,'2005-07-10 04:47:57',4264,576,'2005-07-17 01:54:57',2,'2006-02-15 21:30:53'),(5598,'2005-07-10 04:48:29',3412,397,'2005-07-18 10:33:29',2,'2006-02-15 21:30:53'),(5599,'2005-07-10 04:52:04',3054,391,'2005-07-13 05:19:04',1,'2006-02-15 21:30:53'),(5600,'2005-07-10 04:55:45',3713,138,'2005-07-18 03:10:45',2,'2006-02-15 21:30:53'),(5601,'2005-07-10 04:56:55',3062,511,'2005-07-11 00:14:55',1,'2006-02-15 21:30:53'),(5602,'2005-07-10 05:02:22',3544,253,'2005-07-14 23:40:22',2,'2006-02-15 21:30:53'),(5603,'2005-07-10 05:04:54',1308,74,'2005-07-12 01:54:54',2,'2006-02-15 21:30:53'),(5604,'2005-07-10 05:05:00',3702,78,'2005-07-12 08:04:00',1,'2006-02-15 21:30:53'),(5605,'2005-07-10 05:06:45',2964,273,'2005-07-15 02:51:45',2,'2006-02-15 21:30:53'),(5606,'2005-07-10 05:07:55',2896,51,'2005-07-15 00:14:55',2,'2006-02-15 21:30:53'),(5607,'2005-07-10 05:08:10',4257,52,'2005-07-15 00:40:10',2,'2006-02-15 21:30:53'),(5608,'2005-07-10 05:08:26',3854,384,'2005-07-10 23:24:26',1,'2006-02-15 21:30:53'),(5609,'2005-07-10 05:09:46',1553,492,'2005-07-12 10:38:46',1,'2006-02-15 21:30:53'),(5610,'2005-07-10 05:09:52',481,131,'2005-07-13 07:08:52',2,'2006-02-15 21:30:53'),(5611,'2005-07-10 05:13:43',2832,424,'2005-07-16 05:56:43',1,'2006-02-15 21:30:53'),(5612,'2005-07-10 05:15:12',2363,472,'2005-07-17 09:50:12',2,'2006-02-15 21:30:53'),(5613,'2005-07-10 05:15:43',4517,220,'2005-07-13 05:17:43',2,'2006-02-15 21:30:53'),(5614,'2005-07-10 05:16:56',133,371,'2005-07-13 02:03:56',1,'2006-02-15 21:30:53'),(5615,'2005-07-10 05:18:51',1521,173,'2005-07-17 11:05:51',2,'2006-02-15 21:30:53'),(5616,'2005-07-10 05:21:11',4014,238,'2005-07-18 08:42:11',2,'2006-02-15 21:30:53'),(5617,'2005-07-10 05:28:50',2324,342,'2005-07-12 00:02:50',2,'2006-02-15 21:30:53'),(5618,'2005-07-10 05:28:58',757,316,'2005-07-18 01:38:58',1,'2006-02-15 21:30:53'),(5619,'2005-07-10 05:29:33',113,204,'2005-07-15 00:40:33',1,'2006-02-15 21:30:53'),(5620,'2005-07-10 05:30:52',2980,92,'2005-07-16 04:13:52',1,'2006-02-15 21:30:53'),(5621,'2005-07-10 05:34:10',552,310,'2005-07-14 02:49:10',1,'2006-02-15 21:30:53'),(5622,'2005-07-10 05:39:37',1783,568,'2005-07-15 00:48:37',2,'2006-02-15 21:30:53'),(5623,'2005-07-10 05:41:38',4464,229,'2005-07-14 01:01:38',2,'2006-02-15 21:30:53'),(5624,'2005-07-10 05:43:16',1015,114,'2005-07-12 05:33:16',1,'2006-02-15 21:30:53'),(5625,'2005-07-10 05:44:02',1751,114,'2005-07-12 00:03:02',2,'2006-02-15 21:30:53'),(5626,'2005-07-10 05:49:35',3029,389,'2005-07-15 08:05:35',1,'2006-02-15 21:30:53'),(5627,'2005-07-10 05:51:12',244,136,'2005-07-17 09:56:12',2,'2006-02-15 21:30:53'),(5628,'2005-07-10 05:56:40',4040,87,'2005-07-17 11:13:40',1,'2006-02-15 21:30:53'),(5629,'2005-07-10 06:02:25',400,546,'2005-07-16 07:33:25',1,'2006-02-15 21:30:53'),(5630,'2005-07-10 06:08:14',1151,537,'2005-07-14 03:37:14',2,'2006-02-15 21:30:53'),(5631,'2005-07-10 06:15:45',2095,595,'2005-07-17 09:53:45',2,'2006-02-15 21:30:53'),(5632,'2005-07-10 06:17:06',2632,404,'2005-07-17 02:32:06',2,'2006-02-15 21:30:53'),(5633,'2005-07-10 06:22:24',1056,480,'2005-07-11 05:59:24',2,'2006-02-15 21:30:53'),(5634,'2005-07-10 06:25:48',323,487,'2005-07-17 09:07:48',2,'2006-02-15 21:30:53'),(5635,'2005-07-10 06:28:39',1457,222,'2005-07-17 08:35:39',2,'2006-02-15 21:30:53'),(5636,'2005-07-10 06:31:24',4116,2,'2005-07-13 02:36:24',1,'2006-02-15 21:30:53'),(5637,'2005-07-10 06:31:37',4436,45,'2005-07-17 01:16:37',1,'2006-02-15 21:30:53'),(5638,'2005-07-10 06:32:49',1528,570,'2005-07-13 04:32:49',2,'2006-02-15 21:30:53'),(5639,'2005-07-10 06:33:39',2452,249,'2005-07-19 07:47:39',1,'2006-02-15 21:30:53'),(5640,'2005-07-10 06:38:00',2706,574,'2005-07-18 08:56:00',2,'2006-02-15 21:30:53'),(5641,'2005-07-10 06:43:43',3568,50,'2005-07-15 06:33:43',1,'2006-02-15 21:30:53'),(5642,'2005-07-10 06:46:08',3630,299,'2005-07-13 10:03:08',1,'2006-02-15 21:30:53'),(5643,'2005-07-10 06:49:00',796,34,'2005-07-14 01:53:00',1,'2006-02-15 21:30:53'),(5644,'2005-07-10 06:57:44',4069,476,'2005-07-15 03:52:44',2,'2006-02-15 21:30:53'),(5645,'2005-07-10 06:58:21',1586,333,'2005-07-18 04:19:21',2,'2006-02-15 21:30:53'),(5646,'2005-07-10 07:08:09',1471,166,'2005-07-14 03:48:09',2,'2006-02-15 21:30:53'),(5647,'2005-07-10 07:08:40',1466,128,'2005-07-13 05:19:40',2,'2006-02-15 21:30:53'),(5648,'2005-07-10 07:09:21',4359,24,'2005-07-16 07:23:21',2,'2006-02-15 21:30:53'),(5649,'2005-07-10 07:15:07',1349,336,'2005-07-12 11:57:07',2,'2006-02-15 21:30:53'),(5650,'2005-07-10 07:17:01',2793,461,'2005-07-15 11:59:01',1,'2006-02-15 21:30:53'),(5651,'2005-07-10 07:17:13',301,239,'2005-07-15 12:13:13',2,'2006-02-15 21:30:53'),(5652,'2005-07-10 07:18:58',927,42,'2005-07-19 07:52:58',1,'2006-02-15 21:30:53'),(5653,'2005-07-10 07:21:27',919,28,'2005-07-16 01:58:27',1,'2006-02-15 21:30:53'),(5654,'2005-07-10 07:24:46',3419,490,'2005-07-14 07:39:46',2,'2006-02-15 21:30:53'),(5655,'2005-07-10 07:31:06',3470,113,'2005-07-17 08:22:06',1,'2006-02-15 21:30:53'),(5656,'2005-07-10 07:31:07',4138,159,'2005-07-15 04:44:07',1,'2006-02-15 21:30:53'),(5657,'2005-07-10 07:33:43',4342,508,'2005-07-18 01:55:43',2,'2006-02-15 21:30:53'),(5658,'2005-07-10 07:34:08',4402,165,'2005-07-19 04:21:08',2,'2006-02-15 21:30:53'),(5659,'2005-07-10 07:45:40',4265,9,'2005-07-15 05:20:40',1,'2006-02-15 21:30:53'),(5660,'2005-07-10 07:46:12',1404,171,'2005-07-17 07:48:12',1,'2006-02-15 21:30:53'),(5661,'2005-07-10 07:53:51',1878,108,'2005-07-14 12:57:51',2,'2006-02-15 21:30:53'),(5662,'2005-07-10 07:59:24',219,502,'2005-07-14 13:06:24',1,'2006-02-15 21:30:53'),(5663,'2005-07-10 08:01:33',3078,530,'2005-07-15 03:36:33',2,'2006-02-15 21:30:53'),(5664,'2005-07-10 08:04:41',2375,469,'2005-07-17 10:29:41',1,'2006-02-15 21:30:53'),(5665,'2005-07-10 08:10:08',1175,415,'2005-07-11 05:22:08',2,'2006-02-15 21:30:53'),(5666,'2005-07-10 08:10:29',2225,242,'2005-07-17 04:54:29',2,'2006-02-15 21:30:53'),(5667,'2005-07-10 08:11:03',683,336,'2005-07-15 08:23:03',2,'2006-02-15 21:30:53'),(5668,'2005-07-10 08:11:05',309,211,'2005-07-16 13:15:05',1,'2006-02-15 21:30:53'),(5669,'2005-07-10 08:12:53',1173,323,'2005-07-11 05:48:53',2,'2006-02-15 21:30:53'),(5670,'2005-07-10 08:14:52',610,121,'2005-07-14 04:13:52',2,'2006-02-15 21:30:53'),(5671,'2005-07-10 08:18:22',1304,268,'2005-07-11 07:03:22',2,'2006-02-15 21:30:53'),(5672,'2005-07-10 08:19:38',2326,158,'2005-07-16 06:28:38',2,'2006-02-15 21:30:53'),(5673,'2005-07-10 08:21:54',4018,117,'2005-07-11 05:54:54',2,'2006-02-15 21:30:53'),(5674,'2005-07-10 08:26:26',548,258,'2005-07-16 02:43:26',1,'2006-02-15 21:30:53'),(5675,'2005-07-10 08:31:06',2134,376,'2005-07-17 11:48:06',1,'2006-02-15 21:30:53'),(5676,'2005-07-10 08:38:32',3595,153,'2005-07-13 10:11:32',1,'2006-02-15 21:30:53'),(5677,'2005-07-10 08:41:28',2647,105,'2005-07-12 09:05:28',2,'2006-02-15 21:30:53'),(5678,'2005-07-10 08:42:42',4366,96,'2005-07-19 03:48:42',1,'2006-02-15 21:30:53'),(5679,'2005-07-10 08:44:02',389,138,'2005-07-14 05:30:02',1,'2006-02-15 21:30:53'),(5680,'2005-07-10 08:47:36',3503,199,'2005-07-17 06:10:36',1,'2006-02-15 21:30:53'),(5681,'2005-07-10 08:48:39',4176,50,'2005-07-18 07:17:39',1,'2006-02-15 21:30:53'),(5682,'2005-07-10 08:51:39',17,302,'2005-07-12 14:44:39',2,'2006-02-15 21:30:53'),(5683,'2005-07-10 08:52:13',4433,285,'2005-07-19 10:25:13',1,'2006-02-15 21:30:53'),(5684,'2005-07-10 08:59:03',99,132,'2005-07-15 07:21:03',1,'2006-02-15 21:30:53'),(5685,'2005-07-10 09:01:38',1462,170,'2005-07-17 10:58:38',1,'2006-02-15 21:30:53'),(5686,'2005-07-10 09:06:03',717,521,'2005-07-11 10:59:03',2,'2006-02-15 21:30:53'),(5687,'2005-07-10 09:07:19',2170,363,'2005-07-16 11:17:19',2,'2006-02-15 21:30:53'),(5688,'2005-07-10 09:16:08',3036,598,'2005-07-15 09:44:08',1,'2006-02-15 21:30:53'),(5689,'2005-07-10 09:24:17',1731,381,'2005-07-15 05:36:17',1,'2006-02-15 21:30:53'),(5690,'2005-07-10 09:26:49',1326,362,'2005-07-19 07:17:49',2,'2006-02-15 21:30:53'),(5691,'2005-07-10 09:29:49',3526,466,'2005-07-16 13:37:49',1,'2006-02-15 21:30:53'),(5692,'2005-07-10 09:32:22',59,244,'2005-07-15 15:20:22',2,'2006-02-15 21:30:53'),(5693,'2005-07-10 09:35:43',2167,208,'2005-07-12 08:05:43',2,'2006-02-15 21:30:53'),(5694,'2005-07-10 09:40:38',3476,57,'2005-07-14 09:16:38',1,'2006-02-15 21:30:53'),(5695,'2005-07-10 09:43:40',440,459,'2005-07-13 15:04:40',2,'2006-02-15 21:30:53'),(5696,'2005-07-10 09:44:32',128,96,'2005-07-12 13:38:32',2,'2006-02-15 21:30:53'),(5697,'2005-07-10 09:44:44',934,515,'2005-07-12 12:13:44',2,'2006-02-15 21:30:53'),(5698,'2005-07-10 09:47:00',639,46,'2005-07-16 06:26:00',1,'2006-02-15 21:30:53'),(5699,'2005-07-10 09:48:04',958,211,'2005-07-17 09:07:04',1,'2006-02-15 21:30:53'),(5700,'2005-07-10 09:49:42',3961,87,'2005-07-19 04:20:42',1,'2006-02-15 21:30:53'),(5701,'2005-07-10 09:56:24',2395,91,'2005-07-16 15:11:24',2,'2006-02-15 21:30:53'),(5702,'2005-07-10 10:00:01',3349,324,'2005-07-11 15:29:01',1,'2006-02-15 21:30:53'),(5703,'2005-07-10 10:04:15',1585,132,'2005-07-16 07:43:15',1,'2006-02-15 21:30:53'),(5704,'2005-07-10 10:06:29',2104,591,'2005-07-17 10:48:29',1,'2006-02-15 21:30:53'),(5705,'2005-07-10 10:09:17',4030,300,'2005-07-19 07:24:17',2,'2006-02-15 21:30:53'),(5706,'2005-07-10 10:21:46',3701,255,'2005-07-16 04:37:46',2,'2006-02-15 21:30:53'),(5707,'2005-07-10 10:26:14',708,581,'2005-07-18 06:19:14',1,'2006-02-15 21:30:53'),(5708,'2005-07-10 10:29:19',571,484,'2005-07-18 06:50:19',1,'2006-02-15 21:30:53'),(5709,'2005-07-10 10:31:52',732,302,'2005-07-12 10:47:52',1,'2006-02-15 21:30:53'),(5710,'2005-07-10 10:32:52',2843,265,'2005-07-18 06:28:52',1,'2006-02-15 21:30:53'),(5711,'2005-07-10 10:37:20',3988,481,'2005-07-13 11:20:20',1,'2006-02-15 21:30:53'),(5712,'2005-07-10 10:40:32',3480,304,'2005-07-12 11:45:32',1,'2006-02-15 21:30:53'),(5713,'2005-07-10 10:46:15',1213,572,'2005-07-19 14:34:15',1,'2006-02-15 21:30:53'),(5714,'2005-07-10 10:46:57',3706,17,'2005-07-18 14:07:57',1,'2006-02-15 21:30:53'),(5715,'2005-07-10 10:48:03',1638,132,'2005-07-18 11:27:03',1,'2006-02-15 21:30:53'),(5716,'2005-07-10 10:59:23',3416,102,'2005-07-16 12:25:23',2,'2006-02-15 21:30:53'),(5717,'2005-07-10 11:02:03',529,15,'2005-07-13 13:00:03',1,'2006-02-15 21:30:53'),(5718,'2005-07-10 11:03:20',3719,20,'2005-07-19 15:38:20',2,'2006-02-15 21:30:53'),(5719,'2005-07-10 11:07:40',2100,94,'2005-07-15 14:14:40',2,'2006-02-15 21:30:53'),(5720,'2005-07-10 11:09:12',576,339,'2005-07-16 07:31:12',1,'2006-02-15 21:30:53'),(5721,'2005-07-10 11:09:35',2348,5,'2005-07-17 16:41:35',2,'2006-02-15 21:30:53'),(5722,'2005-07-10 11:10:04',2890,556,'2005-07-12 16:31:04',2,'2006-02-15 21:30:53'),(5723,'2005-07-10 11:14:48',605,33,'2005-07-11 15:46:48',2,'2006-02-15 21:30:53'),(5724,'2005-07-10 11:18:12',3597,289,'2005-07-16 14:53:12',2,'2006-02-15 21:30:53'),(5725,'2005-07-10 11:21:21',4293,426,'2005-07-14 05:34:21',2,'2006-02-15 21:30:53'),(5726,'2005-07-10 11:22:08',3582,131,'2005-07-13 05:55:08',1,'2006-02-15 21:30:53'),(5727,'2005-07-10 11:25:28',3338,550,'2005-07-11 11:03:28',2,'2006-02-15 21:30:53'),(5728,'2005-07-10 11:26:14',636,335,'2005-07-15 12:55:14',1,'2006-02-15 21:30:53'),(5729,'2005-07-10 11:27:25',4137,188,'2005-07-15 06:13:25',2,'2006-02-15 21:30:53'),(5730,'2005-07-10 11:28:32',1903,301,'2005-07-11 11:45:32',2,'2006-02-15 21:30:53'),(5731,'2005-07-10 11:31:52',2960,440,'2005-07-14 11:44:52',1,'2006-02-15 21:30:53'),(5732,'2005-07-10 11:36:32',2833,597,'2005-07-12 13:09:32',2,'2006-02-15 21:30:53'),(5733,'2005-07-10 11:37:24',3806,415,'2005-07-11 12:34:24',2,'2006-02-15 21:30:53'),(5734,'2005-07-10 11:37:28',399,447,'2005-07-16 11:10:28',1,'2006-02-15 21:30:53'),(5735,'2005-07-10 11:39:15',3259,65,'2005-07-19 09:52:15',1,'2006-02-15 21:30:53'),(5736,'2005-07-10 11:45:48',1172,27,'2005-07-13 16:40:48',1,'2006-02-15 21:30:53'),(5737,'2005-07-10 11:50:04',1118,218,'2005-07-13 10:37:04',1,'2006-02-15 21:30:53'),(5738,'2005-07-10 11:50:51',200,187,'2005-07-19 17:46:51',1,'2006-02-15 21:30:53'),(5739,'2005-07-10 11:51:50',163,219,'2005-07-19 17:40:50',1,'2006-02-15 21:30:53'),(5740,'2005-07-10 11:51:58',2147,325,'2005-07-12 07:53:58',2,'2006-02-15 21:30:53'),(5741,'2005-07-10 11:55:40',2041,513,'2005-07-16 15:02:40',2,'2006-02-15 21:30:53'),(5742,'2005-07-10 11:56:18',3975,596,'2005-07-19 06:59:18',2,'2006-02-15 21:30:53'),(5743,'2005-07-10 11:57:38',593,297,'2005-07-19 15:38:38',2,'2006-02-15 21:30:53'),(5744,'2005-07-10 12:08:33',1372,437,'2005-07-14 12:34:33',2,'2006-02-15 21:30:53'),(5745,'2005-07-10 12:10:11',41,305,'2005-07-19 06:56:11',1,'2006-02-15 21:30:53'),(5746,'2005-07-10 12:15:12',3071,82,'2005-07-16 07:02:12',1,'2006-02-15 21:30:53'),(5747,'2005-07-10 12:15:33',4562,583,'2005-07-18 10:11:33',1,'2006-02-15 21:30:53'),(5748,'2005-07-10 12:19:59',1618,99,'2005-07-12 12:59:59',1,'2006-02-15 21:30:53'),(5749,'2005-07-10 12:20:36',1768,304,'2005-07-19 10:39:36',1,'2006-02-15 21:30:53'),(5750,'2005-07-10 12:20:41',3855,330,'2005-07-17 08:25:41',2,'2006-02-15 21:30:53'),(5751,'2005-07-10 12:25:11',387,479,'2005-07-11 15:23:11',1,'2006-02-15 21:30:53'),(5752,'2005-07-10 12:27:38',4444,86,'2005-07-18 09:22:38',2,'2006-02-15 21:30:53'),(5753,'2005-07-10 12:29:43',3639,444,'2005-07-17 12:50:43',2,'2006-02-15 21:30:53'),(5754,'2005-07-10 12:32:43',162,291,'2005-07-12 13:11:43',2,'2006-02-15 21:30:53'),(5755,'2005-07-10 12:38:56',2760,2,'2005-07-19 17:02:56',1,'2006-02-15 21:30:53'),(5756,'2005-07-10 12:39:28',130,183,'2005-07-11 14:08:28',2,'2006-02-15 21:30:53'),(5757,'2005-07-10 12:40:17',1827,101,'2005-07-12 14:02:17',1,'2006-02-15 21:30:53'),(5758,'2005-07-10 12:42:43',502,363,'2005-07-16 10:18:43',2,'2006-02-15 21:30:53'),(5759,'2005-07-10 12:43:22',816,591,'2005-07-16 16:42:22',1,'2006-02-15 21:30:53'),(5760,'2005-07-10 12:44:48',1050,154,'2005-07-14 12:25:48',1,'2006-02-15 21:30:53'),(5761,'2005-07-10 12:45:36',1763,287,'2005-07-13 10:05:36',2,'2006-02-15 21:30:53'),(5762,'2005-07-10 12:48:01',1815,217,'2005-07-18 16:43:01',1,'2006-02-15 21:30:53'),(5763,'2005-07-10 12:58:12',753,397,'2005-07-14 08:52:12',1,'2006-02-15 21:30:53'),(5764,'2005-07-10 12:58:16',1556,245,'2005-07-19 07:28:16',1,'2006-02-15 21:30:53'),(5765,'2005-07-10 13:03:02',2619,293,'2005-07-16 09:31:02',1,'2006-02-15 21:30:53'),(5766,'2005-07-10 13:07:31',7,406,'2005-07-16 13:03:31',1,'2006-02-15 21:30:53'),(5767,'2005-07-10 13:13:18',2871,32,'2005-07-17 14:41:18',2,'2006-02-15 21:30:53'),(5768,'2005-07-10 13:15:26',345,196,'2005-07-15 09:42:26',1,'2006-02-15 21:30:53'),(5769,'2005-07-10 13:17:58',4052,141,'2005-07-11 11:32:58',1,'2006-02-15 21:30:53'),(5770,'2005-07-10 13:21:28',914,71,'2005-07-11 08:59:28',2,'2006-02-15 21:30:53'),(5771,'2005-07-10 13:26:45',3275,153,'2005-07-14 15:43:45',1,'2006-02-15 21:30:53'),(5772,'2005-07-10 13:27:40',3635,21,'2005-07-17 08:24:40',1,'2006-02-15 21:30:53'),(5773,'2005-07-10 13:31:09',3277,180,'2005-07-15 08:21:09',2,'2006-02-15 21:30:53'),(5774,'2005-07-10 13:31:56',326,113,'2005-07-18 07:32:56',1,'2006-02-15 21:30:53'),(5775,'2005-07-10 13:34:26',2175,325,'2005-07-15 10:01:26',1,'2006-02-15 21:30:53'),(5776,'2005-07-10 13:35:22',3592,568,'2005-07-12 17:58:22',1,'2006-02-15 21:30:53'),(5777,'2005-07-10 13:38:41',3959,40,'2005-07-17 15:48:41',2,'2006-02-15 21:30:53'),(5778,'2005-07-10 13:41:37',4435,324,'2005-07-14 16:26:37',1,'2006-02-15 21:30:53'),(5779,'2005-07-10 13:45:54',3266,244,'2005-07-15 18:13:54',1,'2006-02-15 21:30:53'),(5780,'2005-07-10 13:46:23',168,516,'2005-07-14 17:19:23',2,'2006-02-15 21:30:53'),(5781,'2005-07-10 13:49:30',3191,167,'2005-07-11 12:11:30',2,'2006-02-15 21:30:53'),(5782,'2005-07-10 13:52:56',2514,440,'2005-07-15 09:32:56',2,'2006-02-15 21:30:53'),(5783,'2005-07-10 13:55:33',3331,385,'2005-07-16 12:13:33',1,'2006-02-15 21:30:53'),(5784,'2005-07-10 14:03:28',2323,422,'2005-07-16 16:22:28',1,'2006-02-15 21:30:53'),(5785,'2005-07-10 14:06:03',142,211,'2005-07-17 17:59:03',2,'2006-02-15 21:30:53'),(5786,'2005-07-10 14:06:44',2290,350,'2005-07-14 19:55:44',2,'2006-02-15 21:30:53'),(5787,'2005-07-10 14:08:49',1075,44,'2005-07-19 18:29:49',1,'2006-02-15 21:30:53'),(5788,'2005-07-10 14:10:22',1707,63,'2005-07-14 19:46:22',2,'2006-02-15 21:30:53'),(5789,'2005-07-10 14:11:26',2601,571,'2005-07-18 16:19:26',1,'2006-02-15 21:30:53'),(5790,'2005-07-10 14:15:21',1696,235,'2005-07-14 08:53:21',2,'2006-02-15 21:30:53'),(5791,'2005-07-10 14:16:22',2795,319,'2005-07-19 13:38:22',2,'2006-02-15 21:30:53'),(5792,'2005-07-10 14:22:19',4234,92,'2005-07-19 09:08:19',1,'2006-02-15 21:30:53'),(5793,'2005-07-10 14:33:00',2927,268,'2005-07-13 19:27:00',1,'2006-02-15 21:30:53'),(5794,'2005-07-10 14:34:53',1164,198,'2005-07-17 11:50:53',2,'2006-02-15 21:30:53'),(5795,'2005-07-10 14:36:29',3958,304,'2005-07-14 13:26:29',1,'2006-02-15 21:30:53'),(5796,'2005-07-10 14:42:54',1631,286,'2005-07-17 08:47:54',2,'2006-02-15 21:30:53'),(5797,'2005-07-10 14:43:52',1880,384,'2005-07-13 16:12:52',2,'2006-02-15 21:30:53'),(5798,'2005-07-10 14:45:09',331,107,'2005-07-16 13:43:09',1,'2006-02-15 21:30:53'),(5799,'2005-07-10 14:53:35',3045,520,'2005-07-14 16:18:35',2,'2006-02-15 21:30:53'),(5800,'2005-07-10 14:58:36',2466,411,'2005-07-11 19:50:36',2,'2006-02-15 21:30:53'),(5801,'2005-07-10 14:59:05',3511,439,'2005-07-14 17:55:05',2,'2006-02-15 21:30:53'),(5802,'2005-07-10 15:02:17',2295,520,'2005-07-19 15:43:17',2,'2006-02-15 21:30:53'),(5803,'2005-07-10 15:05:42',1982,244,'2005-07-15 10:19:42',1,'2006-02-15 21:30:53'),(5804,'2005-07-10 15:06:31',2168,137,'2005-07-14 11:00:31',1,'2006-02-15 21:30:53'),(5805,'2005-07-10 15:08:41',3553,532,'2005-07-19 16:35:41',2,'2006-02-15 21:30:53'),(5806,'2005-07-10 15:11:54',29,108,'2005-07-15 11:51:54',2,'2006-02-15 21:30:53'),(5807,'2005-07-10 15:16:30',2092,301,'2005-07-11 14:02:30',2,'2006-02-15 21:30:53'),(5808,'2005-07-10 15:17:33',2310,170,'2005-07-14 12:14:33',2,'2006-02-15 21:30:53'),(5809,'2005-07-10 15:19:30',1748,461,'2005-07-13 12:31:30',2,'2006-02-15 21:30:53'),(5810,'2005-07-10 15:22:04',1426,482,'2005-07-18 21:05:04',2,'2006-02-15 21:30:53'),(5811,'2005-07-10 15:27:04',4007,441,'2005-07-12 17:20:04',1,'2006-02-15 21:30:53'),(5812,'2005-07-10 15:27:56',1681,581,'2005-07-18 15:37:56',2,'2006-02-15 21:30:53'),(5813,'2005-07-10 15:34:37',942,512,'2005-07-17 16:14:37',2,'2006-02-15 21:30:53'),(5814,'2005-07-10 15:46:50',2537,71,'2005-07-13 15:28:50',2,'2006-02-15 21:30:53'),(5815,'2005-07-10 15:48:19',2934,22,'2005-07-13 12:09:19',1,'2006-02-15 21:30:53'),(5816,'2005-07-10 15:48:47',1746,382,'2005-07-13 11:51:47',2,'2006-02-15 21:30:53'),(5817,'2005-07-10 15:49:12',2993,28,'2005-07-18 19:30:12',2,'2006-02-15 21:30:53'),(5818,'2005-07-10 15:51:12',3940,334,'2005-07-14 14:10:12',2,'2006-02-15 21:30:53'),(5819,'2005-07-10 15:56:20',3439,347,'2005-07-12 19:59:20',2,'2006-02-15 21:30:53'),(5820,'2005-07-10 16:04:59',1511,485,'2005-07-16 12:10:59',1,'2006-02-15 21:30:53'),(5821,'2005-07-10 16:07:16',147,302,'2005-07-14 19:48:16',1,'2006-02-15 21:30:53'),(5822,'2005-07-10 16:10:39',1385,38,'2005-07-13 19:05:39',2,'2006-02-15 21:30:53'),(5823,'2005-07-10 16:19:52',1879,483,'2005-07-11 12:33:52',2,'2006-02-15 21:30:53'),(5824,'2005-07-10 16:19:53',1980,449,'2005-07-12 11:17:53',2,'2006-02-15 21:30:53'),(5825,'2005-07-10 16:20:30',3843,444,'2005-07-11 18:58:30',1,'2006-02-15 21:30:53'),(5826,'2005-07-10 16:21:02',4104,254,'2005-07-17 21:08:02',1,'2006-02-15 21:30:53'),(5827,'2005-07-10 16:22:20',1296,290,'2005-07-15 21:13:20',2,'2006-02-15 21:30:53'),(5828,'2005-07-10 16:27:25',2999,156,'2005-07-11 18:42:25',1,'2006-02-15 21:30:53'),(5829,'2005-07-10 16:29:41',3405,118,'2005-07-14 22:03:41',1,'2006-02-15 21:30:53'),(5830,'2005-07-10 16:34:00',2358,59,'2005-07-18 16:42:00',1,'2006-02-15 21:30:53'),(5831,'2005-07-10 16:34:02',830,43,'2005-07-11 14:27:02',2,'2006-02-15 21:30:53'),(5832,'2005-07-10 16:34:48',2387,63,'2005-07-17 17:25:48',1,'2006-02-15 21:30:53'),(5833,'2005-07-10 16:39:24',3829,187,'2005-07-17 12:52:24',1,'2006-02-15 21:30:53'),(5834,'2005-07-10 16:44:12',85,360,'2005-07-14 11:34:12',2,'2006-02-15 21:30:53'),(5835,'2005-07-10 16:44:58',800,11,'2005-07-17 16:03:58',2,'2006-02-15 21:30:53'),(5836,'2005-07-10 16:49:02',1842,310,'2005-07-11 22:35:02',2,'2006-02-15 21:30:53'),(5837,'2005-07-10 16:57:50',1648,478,'2005-07-18 14:07:50',2,'2006-02-15 21:30:53'),(5838,'2005-07-10 17:04:56',1627,202,'2005-07-11 15:15:56',1,'2006-02-15 21:30:53'),(5839,'2005-07-10 17:08:30',252,367,'2005-07-13 21:21:30',2,'2006-02-15 21:30:53'),(5840,'2005-07-10 17:09:09',1073,72,'2005-07-15 22:52:09',1,'2006-02-15 21:30:53'),(5841,'2005-07-10 17:11:31',1230,525,'2005-07-18 15:50:31',2,'2006-02-15 21:30:53'),(5842,'2005-07-10 17:11:37',139,247,'2005-07-14 21:43:37',1,'2006-02-15 21:30:53'),(5843,'2005-07-10 17:14:27',1615,599,'2005-07-15 21:18:27',2,'2006-02-15 21:30:53'),(5844,'2005-07-10 17:14:43',609,147,'2005-07-12 19:27:43',1,'2006-02-15 21:30:53'),(5845,'2005-07-10 17:23:14',2882,334,'2005-07-12 16:29:14',2,'2006-02-15 21:30:53'),(5846,'2005-07-10 17:25:24',938,233,'2005-07-12 13:41:24',2,'2006-02-15 21:30:53'),(5847,'2005-07-10 17:27:42',4403,220,'2005-07-12 14:51:42',2,'2006-02-15 21:30:53'),(5848,'2005-07-10 17:28:14',4549,409,'2005-07-14 11:54:14',1,'2006-02-15 21:30:53'),(5849,'2005-07-10 17:32:33',1632,44,'2005-07-19 22:39:33',1,'2006-02-15 21:30:53'),(5850,'2005-07-10 17:36:27',4015,531,'2005-07-15 16:44:27',2,'2006-02-15 21:30:53'),(5851,'2005-07-10 17:40:47',3944,510,'2005-07-11 19:24:47',2,'2006-02-15 21:30:53'),(5852,'2005-07-10 17:43:30',3890,484,'2005-07-15 15:05:30',2,'2006-02-15 21:30:53'),(5853,'2005-07-10 17:45:13',3026,520,'2005-07-17 21:37:13',1,'2006-02-15 21:30:53'),(5854,'2005-07-10 17:47:34',997,547,'2005-07-13 20:14:34',2,'2006-02-15 21:30:53'),(5855,'2005-07-10 17:54:06',2457,166,'2005-07-18 15:41:06',2,'2006-02-15 21:30:53'),(5856,'2005-07-10 17:57:32',497,314,'2005-07-11 13:57:32',1,'2006-02-15 21:30:53'),(5857,'2005-07-10 17:59:29',1265,29,'2005-07-18 18:13:29',1,'2006-02-15 21:30:53'),(5858,'2005-07-10 18:00:07',2913,257,'2005-07-11 20:01:07',2,'2006-02-15 21:30:53'),(5859,'2005-07-10 18:02:02',131,220,'2005-07-11 23:24:02',1,'2006-02-15 21:30:53'),(5860,'2005-07-10 18:08:49',3897,180,'2005-07-16 16:43:49',2,'2006-02-15 21:30:53'),(5861,'2005-07-10 18:14:22',3881,277,'2005-07-14 15:32:22',1,'2006-02-15 21:30:53'),(5862,'2005-07-10 18:20:48',2075,157,'2005-07-17 00:09:48',1,'2006-02-15 21:30:53'),(5863,'2005-07-10 18:25:23',2557,419,'2005-07-15 23:49:23',1,'2006-02-15 21:30:53'),(5864,'2005-07-10 18:29:57',4380,437,'2005-07-19 14:27:57',2,'2006-02-15 21:30:53'),(5865,'2005-07-10 18:31:05',1382,126,'2005-07-12 18:29:05',2,'2006-02-15 21:30:53'),(5866,'2005-07-10 18:35:14',457,484,'2005-07-19 19:41:14',2,'2006-02-15 21:30:53'),(5867,'2005-07-10 18:39:01',730,321,'2005-07-19 21:56:01',2,'2006-02-15 21:30:53'),(5868,'2005-07-10 18:39:16',452,429,'2005-07-15 21:19:16',1,'2006-02-15 21:30:53'),(5869,'2005-07-10 18:40:09',2157,40,'2005-07-17 18:42:09',1,'2006-02-15 21:30:53'),(5870,'2005-07-10 18:40:25',1524,438,'2005-07-12 15:39:25',2,'2006-02-15 21:30:53'),(5871,'2005-07-10 18:46:08',3288,307,'2005-07-16 17:32:08',1,'2006-02-15 21:30:53'),(5872,'2005-07-10 18:54:05',270,364,'2005-07-19 15:41:05',1,'2006-02-15 21:30:53'),(5873,'2005-07-10 19:02:10',3151,354,'2005-07-14 19:13:10',2,'2006-02-15 21:30:53'),(5874,'2005-07-10 19:02:51',2255,131,'2005-07-16 13:14:51',1,'2006-02-15 21:30:53'),(5875,'2005-07-10 19:06:47',964,575,'2005-07-18 17:33:47',2,'2006-02-15 21:30:53'),(5876,'2005-07-10 19:07:15',4445,578,'2005-07-14 17:29:15',2,'2006-02-15 21:30:53'),(5877,'2005-07-10 19:08:51',1520,537,'2005-07-19 19:48:51',1,'2006-02-15 21:30:53'),(5878,'2005-07-10 19:09:57',3805,271,'2005-07-16 17:22:57',1,'2006-02-15 21:30:53'),(5879,'2005-07-10 19:12:47',3851,430,'2005-07-16 16:32:47',1,'2006-02-15 21:30:53'),(5880,'2005-07-10 19:14:58',359,482,'2005-07-17 01:13:58',1,'2006-02-15 21:30:53'),(5881,'2005-07-10 19:19:43',236,25,'2005-07-12 20:11:43',1,'2006-02-15 21:30:53'),(5882,'2005-07-10 19:20:34',2830,319,'2005-07-11 18:39:34',2,'2006-02-15 21:30:53'),(5883,'2005-07-10 19:25:21',2820,17,'2005-07-16 20:50:21',2,'2006-02-15 21:30:53'),(5884,'2005-07-10 19:31:38',916,498,'2005-07-11 20:30:38',1,'2006-02-15 21:30:53'),(5885,'2005-07-10 19:33:50',3129,331,'2005-07-17 00:26:50',2,'2006-02-15 21:30:53'),(5886,'2005-07-10 19:36:25',907,215,'2005-07-11 22:24:25',2,'2006-02-15 21:30:53'),(5887,'2005-07-10 19:45:47',2602,532,'2005-07-15 22:15:47',1,'2006-02-15 21:30:53'),(5888,'2005-07-10 19:52:17',1620,268,'2005-07-18 20:32:17',2,'2006-02-15 21:30:53'),(5889,'2005-07-10 19:54:41',1706,491,'2005-07-12 20:08:41',2,'2006-02-15 21:30:53'),(5890,'2005-07-10 20:00:25',1463,535,'2005-07-18 17:57:25',2,'2006-02-15 21:30:53'),(5891,'2005-07-10 20:01:17',4355,184,'2005-07-12 00:15:17',1,'2006-02-15 21:30:53'),(5892,'2005-07-10 20:02:42',4322,333,'2005-07-11 20:02:42',1,'2006-02-15 21:30:53'),(5893,'2005-07-10 20:05:30',1689,439,'2005-07-14 23:05:30',1,'2006-02-15 21:30:53'),(5894,'2005-07-10 20:09:34',2264,194,'2005-07-17 15:39:34',1,'2006-02-15 21:30:53'),(5895,'2005-07-10 20:13:19',2272,164,'2005-07-17 17:51:19',1,'2006-02-15 21:30:53'),(5896,'2005-07-10 20:15:56',731,357,'2005-07-12 00:39:56',1,'2006-02-15 21:30:53'),(5897,'2005-07-10 20:16:14',740,413,'2005-07-19 15:49:14',2,'2006-02-15 21:30:53'),(5898,'2005-07-10 20:18:09',3257,538,'2005-07-16 14:44:09',1,'2006-02-15 21:30:53'),(5899,'2005-07-10 20:21:52',1391,388,'2005-07-13 00:46:52',1,'2006-02-15 21:30:53'),(5900,'2005-07-10 20:21:54',1081,419,'2005-07-17 00:26:54',1,'2006-02-15 21:30:53'),(5901,'2005-07-10 20:22:12',86,165,'2005-07-19 16:43:12',2,'2006-02-15 21:30:53'),(5902,'2005-07-10 20:31:24',2727,228,'2005-07-11 20:50:24',1,'2006-02-15 21:30:53'),(5903,'2005-07-10 20:39:04',1388,573,'2005-07-11 17:41:04',1,'2006-02-15 21:30:53'),(5904,'2005-07-10 20:39:44',350,531,'2005-07-13 17:57:44',2,'2006-02-15 21:30:53'),(5905,'2005-07-10 20:41:09',3891,10,'2005-07-19 14:49:09',1,'2006-02-15 21:30:53'),(5906,'2005-07-10 20:41:41',514,323,'2005-07-14 00:12:41',2,'2006-02-15 21:30:53'),(5907,'2005-07-10 20:41:41',4432,168,'2005-07-15 21:18:41',2,'2006-02-15 21:30:53'),(5908,'2005-07-10 20:44:14',810,156,'2005-07-13 15:05:14',2,'2006-02-15 21:30:53'),(5909,'2005-07-10 20:46:13',2333,44,'2005-07-14 18:01:13',2,'2006-02-15 21:30:53'),(5910,'2005-07-10 20:51:34',1039,464,'2005-07-19 14:54:34',1,'2006-02-15 21:30:53'),(5911,'2005-07-10 20:51:42',4140,420,'2005-07-14 21:58:42',2,'2006-02-15 21:30:53'),(5912,'2005-07-10 20:58:22',1187,351,'2005-07-17 01:15:22',2,'2006-02-15 21:30:53'),(5913,'2005-07-10 20:58:55',2767,277,'2005-07-13 15:18:55',1,'2006-02-15 21:30:53'),(5914,'2005-07-10 21:01:12',2639,372,'2005-07-16 18:27:12',2,'2006-02-15 21:30:53'),(5915,'2005-07-10 21:12:16',2464,66,'2005-07-15 16:59:16',2,'2006-02-15 21:30:53'),(5916,'2005-07-10 21:26:31',2267,35,'2005-07-19 20:23:31',1,'2006-02-15 21:30:53'),(5917,'2005-07-10 21:30:22',2910,74,'2005-07-12 18:54:22',2,'2006-02-15 21:30:53'),(5918,'2005-07-10 21:32:06',120,34,'2005-07-19 21:35:06',1,'2006-02-15 21:30:53'),(5919,'2005-07-10 21:32:14',164,92,'2005-07-12 16:47:14',1,'2006-02-15 21:30:53'),(5920,'2005-07-10 21:33:58',1893,221,'2005-07-17 19:41:58',2,'2006-02-15 21:30:53'),(5921,'2005-07-10 21:35:12',3920,7,'2005-07-18 19:59:12',1,'2006-02-15 21:30:53'),(5922,'2005-07-10 21:36:53',1392,271,'2005-07-16 02:51:53',1,'2006-02-15 21:30:53'),(5923,'2005-07-10 21:40:06',1817,401,'2005-07-13 00:01:06',1,'2006-02-15 21:30:53'),(5924,'2005-07-10 21:41:23',629,191,'2005-07-16 21:33:23',1,'2006-02-15 21:30:53'),(5925,'2005-07-10 21:41:27',3724,503,'2005-07-18 18:35:27',2,'2006-02-15 21:30:53'),(5926,'2005-07-10 21:53:42',2840,282,'2005-07-20 01:04:42',1,'2006-02-15 21:30:53'),(5927,'2005-07-10 21:57:14',807,70,'2005-07-16 19:32:14',1,'2006-02-15 21:30:53'),(5928,'2005-07-10 21:58:30',4132,50,'2005-07-15 19:41:30',1,'2006-02-15 21:30:53'),(5929,'2005-07-10 21:59:29',4303,54,'2005-07-14 20:20:29',2,'2006-02-15 21:30:53'),(5930,'2005-07-10 21:59:32',2338,254,'2005-07-11 18:40:32',2,'2006-02-15 21:30:53'),(5931,'2005-07-10 22:04:19',2259,341,'2005-07-13 00:45:19',2,'2006-02-15 21:30:53'),(5932,'2005-07-10 22:05:15',2269,523,'2005-07-12 17:04:15',2,'2006-02-15 21:30:53'),(5933,'2005-07-10 22:06:48',4372,419,'2005-07-12 23:58:48',2,'2006-02-15 21:30:53'),(5934,'2005-07-10 22:07:59',3825,576,'2005-07-15 21:07:59',2,'2006-02-15 21:30:53'),(5935,'2005-07-10 22:11:04',3371,258,'2005-07-19 18:12:04',2,'2006-02-15 21:30:53'),(5936,'2005-07-10 22:14:30',1951,522,'2005-07-15 01:32:30',1,'2006-02-15 21:30:53'),(5937,'2005-07-10 22:16:08',1579,580,'2005-07-16 03:08:08',2,'2006-02-15 21:30:53'),(5938,'2005-07-10 22:17:42',2834,236,'2005-07-16 22:38:42',2,'2006-02-15 21:30:53'),(5939,'2005-07-10 22:30:05',4491,207,'2005-07-14 00:02:05',2,'2006-02-15 21:30:53'),(5940,'2005-07-10 22:31:01',3295,292,'2005-07-14 00:52:01',1,'2006-02-15 21:30:53'),(5941,'2005-07-10 22:40:47',492,43,'2005-07-17 00:19:47',2,'2006-02-15 21:30:53'),(5942,'2005-07-10 22:47:17',2861,317,'2005-07-17 01:54:17',2,'2006-02-15 21:30:53'),(5943,'2005-07-10 22:48:13',3019,255,'2005-07-16 01:33:13',1,'2006-02-15 21:30:53'),(5944,'2005-07-10 22:51:44',3904,432,'2005-07-18 17:54:44',2,'2006-02-15 21:30:53'),(5945,'2005-07-10 22:52:42',427,374,'2005-07-11 21:52:42',1,'2006-02-15 21:30:53'),(5946,'2005-07-10 22:57:29',1629,308,'2005-07-12 00:08:29',1,'2006-02-15 21:30:53'),(5947,'2005-07-10 23:07:42',327,331,'2005-07-18 23:13:42',1,'2006-02-15 21:30:53'),(5948,'2005-07-10 23:12:08',3260,57,'2005-07-18 19:06:08',2,'2006-02-15 21:30:53'),(5949,'2005-07-10 23:13:00',4397,496,'2005-07-14 01:10:00',2,'2006-02-15 21:30:53'),(5950,'2005-07-10 23:13:45',4319,585,'2005-07-13 02:35:45',1,'2006-02-15 21:30:53'),(5951,'2005-07-10 23:14:29',2501,589,'2005-07-13 01:01:29',1,'2006-02-15 21:30:53'),(5952,'2005-07-10 23:18:20',3406,595,'2005-07-16 17:42:20',1,'2006-02-15 21:30:53'),(5953,'2005-07-10 23:21:35',992,386,'2005-07-14 20:48:35',2,'2006-02-15 21:30:53'),(5954,'2005-07-10 23:22:01',2627,32,'2005-07-14 04:42:01',2,'2006-02-15 21:30:53'),(5955,'2005-07-10 23:22:10',834,409,'2005-07-17 17:55:10',2,'2006-02-15 21:30:53'),(5956,'2005-07-10 23:23:08',2536,499,'2005-07-13 17:36:08',1,'2006-02-15 21:30:53'),(5957,'2005-07-10 23:24:02',2517,210,'2005-07-12 20:28:02',1,'2006-02-15 21:30:53'),(5958,'2005-07-10 23:31:51',3468,430,'2005-07-19 00:36:51',2,'2006-02-15 21:30:53'),(5959,'2005-07-10 23:35:36',3169,436,'2005-07-13 02:19:36',1,'2006-02-15 21:30:53'),(5960,'2005-07-10 23:38:34',3884,239,'2005-07-11 19:21:34',1,'2006-02-15 21:30:53'),(5961,'2005-07-10 23:43:23',3537,21,'2005-07-15 05:21:23',2,'2006-02-15 21:30:53'),(5962,'2005-07-10 23:45:22',1292,507,'2005-07-13 03:49:22',2,'2006-02-15 21:30:53'),(5963,'2005-07-10 23:47:08',4434,35,'2005-07-12 04:27:08',1,'2006-02-15 21:30:53'),(5964,'2005-07-10 23:47:18',3981,456,'2005-07-12 03:55:18',2,'2006-02-15 21:30:53'),(5965,'2005-07-10 23:51:52',4476,348,'2005-07-11 23:29:52',1,'2006-02-15 21:30:53'),(5966,'2005-07-10 23:59:27',2076,384,'2005-07-14 23:38:27',2,'2006-02-15 21:30:53'),(5967,'2005-07-11 00:02:19',2125,215,'2005-07-18 23:08:19',1,'2006-02-15 21:30:53'),(5968,'2005-07-11 00:03:11',3273,554,'2005-07-19 18:46:11',1,'2006-02-15 21:30:53'),(5969,'2005-07-11 00:03:22',4177,433,'2005-07-18 01:28:22',2,'2006-02-15 21:30:53'),(5970,'2005-07-11 00:04:50',1514,94,'2005-07-19 03:36:50',1,'2006-02-15 21:30:53'),(5971,'2005-07-11 00:05:58',2191,84,'2005-07-19 04:50:58',2,'2006-02-15 21:30:53'),(5972,'2005-07-11 00:08:54',4577,30,'2005-07-17 21:01:54',1,'2006-02-15 21:30:53'),(5973,'2005-07-11 00:09:17',1194,165,'2005-07-14 19:18:17',1,'2006-02-15 21:30:53'),(5974,'2005-07-11 00:10:37',3984,517,'2005-07-18 18:48:37',2,'2006-02-15 21:30:53'),(5975,'2005-07-11 00:14:19',2997,15,'2005-07-16 04:21:19',1,'2006-02-15 21:30:53'),(5976,'2005-07-11 00:16:35',1693,505,'2005-07-20 01:30:35',2,'2006-02-15 21:30:53'),(5977,'2005-07-11 00:16:38',4011,484,'2005-07-19 21:00:38',1,'2006-02-15 21:30:53'),(5978,'2005-07-11 00:16:54',1720,508,'2005-07-19 18:55:54',1,'2006-02-15 21:30:53'),(5979,'2005-07-11 00:17:09',1736,251,'2005-07-14 00:38:09',1,'2006-02-15 21:30:53'),(5980,'2005-07-11 00:18:21',1777,309,'2005-07-14 21:26:21',1,'2006-02-15 21:30:53'),(5981,'2005-07-11 00:19:04',2151,241,'2005-07-13 19:10:04',1,'2006-02-15 21:30:53'),(5982,'2005-07-11 00:24:44',2329,403,'2005-07-14 04:42:44',2,'2006-02-15 21:30:53'),(5983,'2005-07-11 00:34:11',351,127,'2005-07-15 05:37:11',1,'2006-02-15 21:30:53'),(5984,'2005-07-11 00:44:36',2801,178,'2005-07-15 00:04:36',1,'2006-02-15 21:30:53'),(5985,'2005-07-11 00:51:58',1108,506,'2005-07-14 22:02:58',2,'2006-02-15 21:30:53'),(5986,'2005-07-11 00:54:56',1624,171,'2005-07-13 22:52:56',2,'2006-02-15 21:30:53'),(5987,'2005-07-11 00:55:31',1000,447,'2005-07-16 06:28:31',2,'2006-02-15 21:30:53'),(5988,'2005-07-11 00:55:38',151,158,'2005-07-13 21:36:38',2,'2006-02-15 21:30:53'),(5989,'2005-07-11 00:57:53',696,283,'2005-07-15 02:24:53',1,'2006-02-15 21:30:53'),(5990,'2005-07-11 01:03:14',1561,432,'2005-07-15 19:32:14',1,'2006-02-15 21:30:53'),(5991,'2005-07-11 01:03:38',3623,590,'2005-07-12 22:32:38',2,'2006-02-15 21:30:53'),(5992,'2005-07-11 01:06:21',4216,54,'2005-07-13 19:15:21',2,'2006-02-15 21:30:53'),(5993,'2005-07-11 01:06:41',3588,529,'2005-07-14 19:19:41',1,'2006-02-15 21:30:53'),(5994,'2005-07-11 01:14:10',4287,295,'2005-07-12 00:42:10',2,'2006-02-15 21:30:53'),(5995,'2005-07-11 01:15:39',4357,360,'2005-07-20 05:01:39',2,'2006-02-15 21:30:53'),(5996,'2005-07-11 01:18:33',4263,223,'2005-07-17 04:18:33',1,'2006-02-15 21:30:53'),(5997,'2005-07-11 01:19:50',3542,128,'2005-07-16 06:29:50',1,'2006-02-15 21:30:53'),(5998,'2005-07-11 01:20:46',1458,250,'2005-07-15 21:41:46',1,'2006-02-15 21:30:53'),(5999,'2005-07-11 01:21:22',211,450,'2005-07-19 01:35:22',1,'2006-02-15 21:30:53'),(6000,'2005-07-11 01:23:06',1986,371,'2005-07-12 04:39:06',2,'2006-02-15 21:30:53'),(6001,'2005-07-11 01:24:44',1779,45,'2005-07-11 22:55:44',1,'2006-02-15 21:30:53'),(6002,'2005-07-11 01:27:49',4422,45,'2005-07-12 06:02:49',1,'2006-02-15 21:30:53'),(6003,'2005-07-11 01:28:33',296,527,'2005-07-17 21:24:33',1,'2006-02-15 21:30:53'),(6004,'2005-07-11 01:34:25',1756,204,'2005-07-18 00:48:25',2,'2006-02-15 21:30:53'),(6005,'2005-07-11 01:36:42',809,78,'2005-07-14 04:47:42',2,'2006-02-15 21:30:53'),(6006,'2005-07-11 01:38:42',4201,399,'2005-07-17 05:18:42',2,'2006-02-15 21:30:53'),(6007,'2005-07-11 01:43:06',4393,289,'2005-07-17 04:46:06',1,'2006-02-15 21:30:53'),(6008,'2005-07-11 01:51:29',1227,216,'2005-07-18 01:39:29',1,'2006-02-15 21:30:53'),(6009,'2005-07-11 01:51:58',494,470,'2005-07-18 07:12:58',2,'2006-02-15 21:30:53'),(6010,'2005-07-11 01:52:28',771,285,'2005-07-13 03:13:28',1,'2006-02-15 21:30:53'),(6011,'2005-07-11 01:54:48',3899,527,'2005-07-18 07:17:48',2,'2006-02-15 21:30:53'),(6012,'2005-07-11 02:00:12',2609,258,'2005-07-17 02:49:12',2,'2006-02-15 21:30:53'),(6013,'2005-07-11 02:02:03',3774,543,'2005-07-14 02:07:03',1,'2006-02-15 21:30:53'),(6014,'2005-07-11 02:02:55',3748,397,'2005-07-12 23:49:55',1,'2006-02-15 21:30:53'),(6015,'2005-07-11 02:04:12',295,596,'2005-07-13 02:43:12',2,'2006-02-15 21:30:53'),(6016,'2005-07-11 02:04:45',651,296,'2005-07-17 22:22:45',1,'2006-02-15 21:30:53'),(6017,'2005-07-11 02:05:32',4088,596,'2005-07-14 22:50:32',1,'2006-02-15 21:30:53'),(6018,'2005-07-11 02:06:36',4555,500,'2005-07-12 02:16:36',2,'2006-02-15 21:30:53'),(6019,'2005-07-11 02:08:29',3483,9,'2005-07-13 02:19:29',2,'2006-02-15 21:30:53'),(6020,'2005-07-11 02:08:55',1974,71,'2005-07-16 22:07:55',1,'2006-02-15 21:30:53'),(6021,'2005-07-11 02:10:18',3949,173,'2005-07-13 05:19:18',1,'2006-02-15 21:30:53'),(6022,'2005-07-11 02:15:53',2435,469,'2005-07-13 03:40:53',2,'2006-02-15 21:30:53'),(6023,'2005-07-11 02:15:57',3794,456,'2005-07-15 21:30:57',2,'2006-02-15 21:30:53'),(6024,'2005-07-11 02:16:47',2923,271,'2005-07-12 05:54:47',1,'2006-02-15 21:30:53'),(6025,'2005-07-11 02:18:13',3306,113,'2005-07-11 23:30:13',1,'2006-02-15 21:30:53'),(6026,'2005-07-11 02:21:43',3936,409,'2005-07-13 03:49:43',1,'2006-02-15 21:30:53'),(6027,'2005-07-11 02:26:29',4536,513,'2005-07-18 23:05:29',1,'2006-02-15 21:30:53'),(6028,'2005-07-11 02:31:44',784,450,'2005-07-14 03:18:44',1,'2006-02-15 21:30:53'),(6029,'2005-07-11 02:36:46',2030,520,'2005-07-14 20:51:46',2,'2006-02-15 21:30:53'),(6030,'2005-07-11 02:37:51',95,36,'2005-07-16 22:34:51',2,'2006-02-15 21:30:53'),(6031,'2005-07-11 02:42:14',1530,224,'2005-07-14 03:24:14',2,'2006-02-15 21:30:53'),(6032,'2005-07-11 02:49:01',3792,28,'2005-07-18 05:05:01',2,'2006-02-15 21:30:53'),(6033,'2005-07-11 02:59:34',2819,322,'2005-07-16 03:48:34',2,'2006-02-15 21:30:53'),(6034,'2005-07-11 03:00:50',1735,324,'2005-07-16 06:19:50',1,'2006-02-15 21:30:53'),(6035,'2005-07-11 03:01:45',3474,176,'2005-07-14 01:04:45',2,'2006-02-15 21:30:53'),(6036,'2005-07-11 03:02:28',2553,297,'2005-07-15 22:12:28',2,'2006-02-15 21:30:53'),(6037,'2005-07-11 03:06:54',1886,386,'2005-07-12 22:46:54',2,'2006-02-15 21:30:53'),(6038,'2005-07-11 03:10:37',1555,243,'2005-07-19 05:14:37',2,'2006-02-15 21:30:53'),(6039,'2005-07-11 03:12:19',1776,137,'2005-07-19 05:46:19',1,'2006-02-15 21:30:53'),(6040,'2005-07-11 03:14:26',2161,511,'2005-07-14 01:12:26',2,'2006-02-15 21:30:53'),(6041,'2005-07-11 03:14:58',2815,551,'2005-07-13 00:48:58',2,'2006-02-15 21:30:53'),(6042,'2005-07-11 03:17:04',2153,5,'2005-07-19 07:08:04',1,'2006-02-15 21:30:53'),(6043,'2005-07-11 03:18:10',3303,430,'2005-07-12 05:50:10',1,'2006-02-15 21:30:53'),(6044,'2005-07-11 03:18:39',1270,481,'2005-07-13 06:58:39',2,'2006-02-15 21:30:53'),(6045,'2005-07-11 03:21:05',2003,39,'2005-07-17 23:10:05',1,'2006-02-15 21:30:53'),(6046,'2005-07-11 03:21:49',1935,569,'2005-07-19 23:58:49',1,'2006-02-15 21:30:53'),(6047,'2005-07-11 03:27:01',4147,235,'2005-07-16 06:42:01',2,'2006-02-15 21:30:53'),(6048,'2005-07-11 03:32:23',975,154,'2005-07-14 07:39:23',1,'2006-02-15 21:30:53'),(6049,'2005-07-11 03:32:32',2582,236,'2005-07-15 06:57:32',2,'2006-02-15 21:30:53'),(6050,'2005-07-11 03:34:29',825,527,'2005-07-15 02:55:29',1,'2006-02-15 21:30:53'),(6051,'2005-07-11 03:46:41',2675,435,'2005-07-11 22:36:41',2,'2006-02-15 21:30:53'),(6052,'2005-07-11 03:51:27',881,75,'2005-07-16 02:55:27',2,'2006-02-15 21:30:53'),(6053,'2005-07-11 03:51:59',2836,237,'2005-07-19 09:13:59',2,'2006-02-15 21:30:53'),(6054,'2005-07-11 03:58:39',1176,354,'2005-07-13 23:08:39',1,'2006-02-15 21:30:53'),(6055,'2005-07-11 03:59:08',595,125,'2005-07-18 05:35:08',2,'2006-02-15 21:30:53'),(6056,'2005-07-11 04:01:27',3069,145,'2005-07-12 04:14:27',1,'2006-02-15 21:30:53'),(6057,'2005-07-11 04:03:40',1340,187,'2005-07-17 01:34:40',2,'2006-02-15 21:30:53'),(6058,'2005-07-11 04:03:51',3761,498,'2005-07-14 03:52:51',1,'2006-02-15 21:30:53'),(6059,'2005-07-11 04:03:54',1437,394,'2005-07-18 01:35:54',1,'2006-02-15 21:30:53'),(6060,'2005-07-11 04:06:17',3146,342,'2005-07-12 03:05:17',1,'2006-02-15 21:30:53'),(6061,'2005-07-11 04:06:25',1859,392,'2005-07-11 23:11:25',1,'2006-02-15 21:30:53'),(6062,'2005-07-11 04:11:58',3301,408,'2005-07-15 05:00:58',1,'2006-02-15 21:30:53'),(6063,'2005-07-11 04:16:51',1715,519,'2005-07-13 08:35:51',2,'2006-02-15 21:30:53'),(6064,'2005-07-11 04:23:18',265,297,'2005-07-19 02:21:18',1,'2006-02-15 21:30:53'),(6065,'2005-07-11 04:25:51',1007,562,'2005-07-17 08:19:51',1,'2006-02-15 21:30:53'),(6066,'2005-07-11 04:32:42',1877,155,'2005-07-15 03:56:42',2,'2006-02-15 21:30:53'),(6067,'2005-07-11 04:34:49',2097,186,'2005-07-16 09:33:49',1,'2006-02-15 21:30:53'),(6068,'2005-07-11 04:41:09',2331,265,'2005-07-14 04:45:09',1,'2006-02-15 21:30:53'),(6069,'2005-07-11 04:44:59',256,553,'2005-07-13 01:00:59',1,'2006-02-15 21:30:53'),(6070,'2005-07-11 04:47:42',1679,267,'2005-07-13 01:49:42',2,'2006-02-15 21:30:53'),(6071,'2005-07-11 04:50:03',889,179,'2005-07-19 23:52:03',1,'2006-02-15 21:30:53'),(6072,'2005-07-11 04:52:40',1790,339,'2005-07-18 01:02:40',1,'2006-02-15 21:30:53'),(6073,'2005-07-11 04:54:31',4243,466,'2005-07-20 07:23:31',1,'2006-02-15 21:30:53'),(6074,'2005-07-11 04:59:56',2876,259,'2005-07-13 23:31:56',1,'2006-02-15 21:30:53'),(6075,'2005-07-11 05:03:03',2160,283,'2005-07-12 01:28:03',1,'2006-02-15 21:30:53'),(6076,'2005-07-11 05:05:30',1792,143,'2005-07-18 04:22:30',1,'2006-02-15 21:30:53'),(6077,'2005-07-11 05:06:08',2154,542,'2005-07-16 10:29:08',1,'2006-02-15 21:30:53'),(6078,'2005-07-11 05:06:52',3985,91,'2005-07-17 06:13:52',2,'2006-02-15 21:30:53'),(6079,'2005-07-11 05:07:14',1494,119,'2005-07-17 08:45:14',1,'2006-02-15 21:30:53'),(6080,'2005-07-11 05:08:11',2682,115,'2005-07-16 09:54:11',2,'2006-02-15 21:30:53'),(6081,'2005-07-11 05:11:09',2286,72,'2005-07-13 05:33:09',2,'2006-02-15 21:30:53'),(6082,'2005-07-11 05:12:41',1091,82,'2005-07-16 03:40:41',2,'2006-02-15 21:30:53'),(6083,'2005-07-11 05:12:49',3183,285,'2005-07-15 00:46:49',2,'2006-02-15 21:30:53'),(6084,'2005-07-11 05:16:20',1334,479,'2005-07-19 01:38:20',2,'2006-02-15 21:30:53'),(6085,'2005-07-11 05:24:36',312,155,'2005-07-16 03:49:36',2,'2006-02-15 21:30:53'),(6086,'2005-07-11 05:29:03',1505,420,'2005-07-16 01:17:03',1,'2006-02-15 21:30:53'),(6087,'2005-07-11 05:29:22',198,155,'2005-07-12 23:33:22',2,'2006-02-15 21:30:53'),(6088,'2005-07-11 05:40:35',3796,498,'2005-07-17 07:14:35',2,'2006-02-15 21:30:53'),(6089,'2005-07-11 05:45:59',3298,580,'2005-07-17 11:04:59',2,'2006-02-15 21:30:53'),(6090,'2005-07-11 05:47:08',71,241,'2005-07-20 07:52:08',2,'2006-02-15 21:30:53'),(6091,'2005-07-11 05:49:18',580,383,'2005-07-15 07:26:18',1,'2006-02-15 21:30:53'),(6092,'2005-07-11 05:51:31',2129,75,'2005-07-17 03:42:31',1,'2006-02-15 21:30:53'),(6093,'2005-07-11 05:52:50',1868,117,'2005-07-20 11:45:50',1,'2006-02-15 21:30:53'),(6094,'2005-07-11 05:54:42',2684,285,'2005-07-18 08:19:42',2,'2006-02-15 21:30:53'),(6095,'2005-07-11 06:06:41',727,501,'2005-07-19 06:14:41',1,'2006-02-15 21:30:53'),(6096,'2005-07-11 06:18:04',2720,420,'2005-07-14 01:15:04',1,'2006-02-15 21:30:53'),(6097,'2005-07-11 06:21:43',297,416,'2005-07-16 10:04:43',1,'2006-02-15 21:30:53'),(6098,'2005-07-11 06:23:28',3016,525,'2005-07-17 04:05:28',1,'2006-02-15 21:30:53'),(6099,'2005-07-11 06:24:44',3865,469,'2005-07-15 08:03:44',2,'2006-02-15 21:30:53'),(6100,'2005-07-11 06:40:31',3485,16,'2005-07-14 10:59:31',2,'2006-02-15 21:30:53'),(6101,'2005-07-11 06:50:33',2618,508,'2005-07-18 01:52:33',2,'2006-02-15 21:30:53'),(6102,'2005-07-11 06:53:09',4305,146,'2005-07-17 07:05:09',1,'2006-02-15 21:30:53'),(6103,'2005-07-11 06:59:55',262,540,'2005-07-16 09:30:55',1,'2006-02-15 21:30:53'),(6104,'2005-07-11 07:01:35',3531,389,'2005-07-17 02:29:35',1,'2006-02-15 21:30:53'),(6105,'2005-07-11 07:03:19',3501,595,'2005-07-19 06:46:19',1,'2006-02-15 21:30:53'),(6106,'2005-07-11 07:05:06',2714,185,'2005-07-20 09:27:06',1,'2006-02-15 21:30:53'),(6107,'2005-07-11 07:07:09',3798,304,'2005-07-14 07:32:09',2,'2006-02-15 21:30:53'),(6108,'2005-07-11 07:19:24',4296,572,'2005-07-13 12:38:24',2,'2006-02-15 21:30:53'),(6109,'2005-07-11 07:20:57',3603,163,'2005-07-13 07:29:57',2,'2006-02-15 21:30:53'),(6110,'2005-07-11 07:23:47',541,405,'2005-07-20 03:17:47',2,'2006-02-15 21:30:53'),(6111,'2005-07-11 07:26:57',3504,300,'2005-07-13 10:43:57',2,'2006-02-15 21:30:53'),(6112,'2005-07-11 07:28:05',1311,366,'2005-07-18 07:29:05',1,'2006-02-15 21:30:53'),(6113,'2005-07-11 07:31:08',4437,115,'2005-07-20 11:01:08',2,'2006-02-15 21:30:53'),(6114,'2005-07-11 07:33:48',479,404,'2005-07-18 06:13:48',2,'2006-02-15 21:30:53'),(6115,'2005-07-11 07:36:50',3415,27,'2005-07-13 11:30:50',1,'2006-02-15 21:30:53'),(6116,'2005-07-11 07:37:38',247,381,'2005-07-14 11:53:38',2,'2006-02-15 21:30:53'),(6117,'2005-07-11 07:39:38',2613,135,'2005-07-18 12:07:38',2,'2006-02-15 21:30:53'),(6118,'2005-07-11 07:43:08',3013,13,'2005-07-20 03:17:08',1,'2006-02-15 21:30:53'),(6119,'2005-07-11 07:44:46',4281,472,'2005-07-20 04:41:46',2,'2006-02-15 21:30:53'),(6120,'2005-07-11 07:49:53',3299,268,'2005-07-19 04:56:53',2,'2006-02-15 21:30:53'),(6121,'2005-07-11 07:55:27',1613,347,'2005-07-16 03:43:27',2,'2006-02-15 21:30:53'),(6122,'2005-07-11 07:58:07',2212,32,'2005-07-16 09:52:07',1,'2006-02-15 21:30:53'),(6123,'2005-07-11 08:02:27',1354,200,'2005-07-15 08:58:27',2,'2006-02-15 21:30:53'),(6124,'2005-07-11 08:02:32',2022,368,'2005-07-12 05:58:32',2,'2006-02-15 21:30:53'),(6125,'2005-07-11 08:03:35',2439,307,'2005-07-18 12:46:35',1,'2006-02-15 21:30:53'),(6126,'2005-07-11 08:06:56',1069,230,'2005-07-16 11:42:56',1,'2006-02-15 21:30:53'),(6127,'2005-07-11 08:06:59',285,355,'2005-07-12 09:01:59',1,'2006-02-15 21:30:53'),(6128,'2005-07-11 08:15:08',2050,18,'2005-07-13 03:36:08',1,'2006-02-15 21:30:53'),(6129,'2005-07-11 08:15:09',3875,222,'2005-07-18 13:00:09',1,'2006-02-15 21:30:53'),(6130,'2005-07-11 08:19:56',2547,538,'2005-07-16 12:02:56',2,'2006-02-15 21:30:53'),(6131,'2005-07-11 08:22:05',3313,107,'2005-07-14 07:40:05',1,'2006-02-15 21:30:53'),(6132,'2005-07-11 08:24:44',3229,319,'2005-07-13 06:41:44',1,'2006-02-15 21:30:53'),(6133,'2005-07-11 08:25:22',1992,107,'2005-07-13 13:17:22',1,'2006-02-15 21:30:53'),(6134,'2005-07-11 08:28:19',3225,305,'2005-07-18 09:20:19',2,'2006-02-15 21:30:53'),(6135,'2005-07-11 08:32:23',833,325,'2005-07-17 08:43:23',1,'2006-02-15 21:30:53'),(6136,'2005-07-11 08:34:09',205,346,'2005-07-14 06:11:09',1,'2006-02-15 21:30:53'),(6137,'2005-07-11 08:34:20',2029,67,'2005-07-13 03:31:20',2,'2006-02-15 21:30:53'),(6138,'2005-07-11 08:36:04',1808,438,'2005-07-13 10:30:04',2,'2006-02-15 21:30:53'),(6139,'2005-07-11 08:39:33',3065,206,'2005-07-17 08:00:33',2,'2006-02-15 21:30:53'),(6140,'2005-07-11 08:40:47',2749,363,'2005-07-14 07:26:47',1,'2006-02-15 21:30:53'),(6141,'2005-07-11 08:52:16',2279,228,'2005-07-17 03:00:16',1,'2006-02-15 21:30:53'),(6142,'2005-07-11 08:54:09',1722,136,'2005-07-18 05:23:09',2,'2006-02-15 21:30:53'),(6143,'2005-07-11 09:02:37',1030,169,'2005-07-19 05:57:37',2,'2006-02-15 21:30:53'),(6144,'2005-07-11 09:02:53',1077,554,'2005-07-15 10:58:53',2,'2006-02-15 21:30:53'),(6145,'2005-07-11 09:07:01',1359,540,'2005-07-19 08:21:01',1,'2006-02-15 21:30:53'),(6146,'2005-07-11 09:09:59',3374,11,'2005-07-20 11:42:59',2,'2006-02-15 21:30:53'),(6147,'2005-07-11 09:13:08',910,35,'2005-07-17 03:48:08',1,'2006-02-15 21:30:53'),(6148,'2005-07-11 09:14:22',4318,410,'2005-07-12 08:01:22',1,'2006-02-15 21:30:53'),(6149,'2005-07-11 09:19:31',4337,26,'2005-07-17 14:45:31',2,'2006-02-15 21:30:53'),(6150,'2005-07-11 09:23:56',1110,418,'2005-07-15 10:56:56',2,'2006-02-15 21:30:53'),(6151,'2005-07-11 09:25:17',352,476,'2005-07-12 05:11:17',1,'2006-02-15 21:30:53'),(6152,'2005-07-11 09:25:52',560,361,'2005-07-17 07:40:52',2,'2006-02-15 21:30:53'),(6153,'2005-07-11 09:31:04',105,47,'2005-07-19 03:41:04',1,'2006-02-15 21:30:53'),(6154,'2005-07-11 09:32:19',2717,368,'2005-07-16 15:10:19',1,'2006-02-15 21:30:53'),(6155,'2005-07-11 09:45:31',785,229,'2005-07-18 08:09:31',1,'2006-02-15 21:30:53'),(6156,'2005-07-11 09:45:48',302,297,'2005-07-15 04:51:48',1,'2006-02-15 21:30:53'),(6157,'2005-07-11 09:48:16',4481,133,'2005-07-16 05:00:16',2,'2006-02-15 21:30:53'),(6158,'2005-07-11 09:50:24',3954,92,'2005-07-13 04:49:24',2,'2006-02-15 21:30:53'),(6159,'2005-07-11 09:55:34',126,225,'2005-07-13 10:01:34',2,'2006-02-15 21:30:53'),(6160,'2005-07-11 10:08:13',2716,110,'2005-07-14 08:18:13',1,'2006-02-15 21:30:53'),(6161,'2005-07-11 10:11:54',3681,524,'2005-07-15 12:12:54',2,'2006-02-15 21:30:53'),(6162,'2005-07-11 10:12:30',786,79,'2005-07-19 06:02:30',2,'2006-02-15 21:30:53'),(6163,'2005-07-11 10:13:46',1330,1,'2005-07-19 13:15:46',2,'2006-02-15 21:30:53'),(6164,'2005-07-11 10:16:23',2755,47,'2005-07-14 11:21:23',1,'2006-02-15 21:30:53'),(6165,'2005-07-11 10:17:29',3540,9,'2005-07-17 07:27:29',1,'2006-02-15 21:30:53'),(6166,'2005-07-11 10:19:05',967,503,'2005-07-12 14:30:05',1,'2006-02-15 21:30:53'),(6167,'2005-07-11 10:21:21',3255,200,'2005-07-14 15:38:21',1,'2006-02-15 21:30:53'),(6168,'2005-07-11 10:21:38',284,77,'2005-07-14 09:55:38',2,'2006-02-15 21:30:53'),(6169,'2005-07-11 10:25:56',2781,148,'2005-07-19 07:18:56',2,'2006-02-15 21:30:53'),(6170,'2005-07-11 10:29:21',278,580,'2005-07-16 05:13:21',2,'2006-02-15 21:30:53'),(6171,'2005-07-11 10:29:35',448,491,'2005-07-16 12:01:35',1,'2006-02-15 21:30:53'),(6172,'2005-07-11 10:32:09',3514,219,'2005-07-14 16:23:09',1,'2006-02-15 21:30:53'),(6173,'2005-07-11 10:33:11',4252,419,'2005-07-15 10:57:11',1,'2006-02-15 21:30:53'),(6174,'2005-07-11 10:36:28',3123,7,'2005-07-18 16:19:28',2,'2006-02-15 21:30:53'),(6175,'2005-07-11 10:44:37',3037,195,'2005-07-15 08:13:37',1,'2006-02-15 21:30:53'),(6176,'2005-07-11 10:48:21',2969,279,'2005-07-12 15:54:21',2,'2006-02-15 21:30:53'),(6177,'2005-07-11 10:53:49',313,589,'2005-07-17 14:54:49',1,'2006-02-15 21:30:53'),(6178,'2005-07-11 10:59:09',2777,91,'2005-07-16 11:19:09',2,'2006-02-15 21:30:53'),(6179,'2005-07-11 10:59:59',3665,42,'2005-07-17 06:02:59',1,'2006-02-15 21:30:53'),(6180,'2005-07-11 11:06:50',4401,351,'2005-07-19 09:03:50',2,'2006-02-15 21:30:53'),(6181,'2005-07-11 11:10:11',4398,200,'2005-07-15 09:33:11',1,'2006-02-15 21:30:53'),(6182,'2005-07-11 11:11:38',2562,540,'2005-07-17 08:33:38',2,'2006-02-15 21:30:53'),(6183,'2005-07-11 11:14:35',856,402,'2005-07-16 15:35:35',1,'2006-02-15 21:30:53'),(6184,'2005-07-11 11:19:21',1131,146,'2005-07-19 07:35:21',1,'2006-02-15 21:30:53'),(6185,'2005-07-11 11:25:09',4331,294,'2005-07-18 12:09:09',2,'2006-02-15 21:30:53'),(6186,'2005-07-11 11:26:41',2086,128,'2005-07-17 12:02:41',2,'2006-02-15 21:30:53'),(6187,'2005-07-11 11:28:51',3344,500,'2005-07-12 15:44:51',1,'2006-02-15 21:30:53'),(6188,'2005-07-11 11:31:47',189,114,'2005-07-15 09:28:47',1,'2006-02-15 21:30:53'),(6189,'2005-07-11 11:36:03',3800,552,'2005-07-20 15:33:03',2,'2006-02-15 21:30:53'),(6190,'2005-07-11 11:36:18',2564,321,'2005-07-19 17:05:18',2,'2006-02-15 21:30:53'),(6191,'2005-07-11 11:37:52',3448,480,'2005-07-17 12:45:52',1,'2006-02-15 21:30:53'),(6192,'2005-07-11 11:44:41',4573,314,'2005-07-19 10:12:41',1,'2006-02-15 21:30:53'),(6193,'2005-07-11 11:46:57',465,189,'2005-07-19 14:11:57',2,'2006-02-15 21:30:53'),(6194,'2005-07-11 11:51:00',1049,83,'2005-07-15 12:34:00',2,'2006-02-15 21:30:53'),(6195,'2005-07-11 12:00:32',4193,319,'2005-07-16 15:00:32',2,'2006-02-15 21:30:53'),(6196,'2005-07-11 12:05:46',995,429,'2005-07-18 08:27:46',2,'2006-02-15 21:30:53'),(6197,'2005-07-11 12:09:51',4156,596,'2005-07-12 06:15:51',1,'2006-02-15 21:30:53'),(6198,'2005-07-11 12:12:17',3345,470,'2005-07-18 07:40:17',2,'2006-02-15 21:30:53'),(6199,'2005-07-11 12:16:03',4329,80,'2005-07-18 15:33:03',2,'2006-02-15 21:30:53'),(6200,'2005-07-11 12:16:42',3258,137,'2005-07-17 09:27:42',2,'2006-02-15 21:30:53'),(6201,'2005-07-11 12:18:07',4530,559,'2005-07-12 12:11:07',2,'2006-02-15 21:30:53'),(6202,'2005-07-11 12:24:25',1424,373,'2005-07-18 08:13:25',1,'2006-02-15 21:30:53'),(6203,'2005-07-11 12:28:57',1001,408,'2005-07-15 14:10:57',1,'2006-02-15 21:30:53'),(6204,'2005-07-11 12:29:22',2572,362,'2005-07-13 10:41:22',2,'2006-02-15 21:30:53'),(6205,'2005-07-11 12:31:24',3442,303,'2005-07-13 11:31:24',2,'2006-02-15 21:30:53'),(6206,'2005-07-11 12:32:14',1368,459,'2005-07-15 15:01:14',2,'2006-02-15 21:30:53'),(6207,'2005-07-11 12:34:24',3226,143,'2005-07-14 10:15:24',2,'2006-02-15 21:30:53'),(6208,'2005-07-11 12:34:56',672,31,'2005-07-19 15:17:56',1,'2006-02-15 21:30:53'),(6209,'2005-07-11 12:36:05',3091,219,'2005-07-17 14:48:05',2,'2006-02-15 21:30:53'),(6210,'2005-07-11 12:36:43',931,209,'2005-07-17 17:45:43',2,'2006-02-15 21:30:53'),(6211,'2005-07-11 12:39:01',2699,6,'2005-07-20 15:59:01',2,'2006-02-15 21:30:53'),(6212,'2005-07-11 12:40:48',3962,337,'2005-07-15 17:49:48',2,'2006-02-15 21:30:53'),(6213,'2005-07-11 12:43:07',485,23,'2005-07-16 07:23:07',2,'2006-02-15 21:30:53'),(6214,'2005-07-11 12:49:48',1258,49,'2005-07-18 07:41:48',2,'2006-02-15 21:30:53'),(6215,'2005-07-11 12:52:36',316,390,'2005-07-12 08:33:36',1,'2006-02-15 21:30:53'),(6216,'2005-07-11 12:57:05',3571,387,'2005-07-13 12:31:05',1,'2006-02-15 21:30:53'),(6217,'2005-07-11 13:13:45',1090,177,'2005-07-19 16:37:45',2,'2006-02-15 21:30:53'),(6218,'2005-07-11 13:14:58',815,410,'2005-07-16 08:13:58',2,'2006-02-15 21:30:53'),(6219,'2005-07-11 13:18:37',38,303,'2005-07-13 13:18:37',2,'2006-02-15 21:30:53'),(6220,'2005-07-11 13:22:06',1717,421,'2005-07-12 17:46:06',2,'2006-02-15 21:30:53'),(6221,'2005-07-11 13:24:27',1699,393,'2005-07-15 17:51:27',1,'2006-02-15 21:30:53'),(6222,'2005-07-11 13:25:49',2066,386,'2005-07-13 14:32:49',1,'2006-02-15 21:30:53'),(6223,'2005-07-11 13:27:09',3754,192,'2005-07-12 14:02:09',1,'2006-02-15 21:30:53'),(6224,'2005-07-11 13:42:18',3274,475,'2005-07-16 09:28:18',1,'2006-02-15 21:30:53'),(6225,'2005-07-11 13:45:14',2483,204,'2005-07-14 10:23:14',1,'2006-02-15 21:30:53'),(6226,'2005-07-11 13:48:11',2758,134,'2005-07-15 17:18:11',2,'2006-02-15 21:30:53'),(6227,'2005-07-11 13:56:46',1654,210,'2005-07-18 12:53:46',1,'2006-02-15 21:30:53'),(6228,'2005-07-11 13:58:36',2281,367,'2005-07-17 19:03:36',2,'2006-02-15 21:30:53'),(6229,'2005-07-11 13:59:50',3137,399,'2005-07-20 09:26:50',1,'2006-02-15 21:30:53'),(6230,'2005-07-11 14:02:19',2260,490,'2005-07-17 08:11:19',2,'2006-02-15 21:30:53'),(6231,'2005-07-11 14:02:36',2526,122,'2005-07-13 19:04:36',2,'2006-02-15 21:30:53'),(6232,'2005-07-11 14:08:27',2492,590,'2005-07-20 19:34:27',2,'2006-02-15 21:30:53'),(6233,'2005-07-11 14:10:47',3731,378,'2005-07-15 15:13:47',2,'2006-02-15 21:30:53'),(6234,'2005-07-11 14:16:10',2911,232,'2005-07-19 19:55:10',1,'2006-02-15 21:30:53'),(6235,'2005-07-11 14:17:51',2659,379,'2005-07-17 11:14:51',2,'2006-02-15 21:30:53'),(6236,'2005-07-11 14:18:17',3813,338,'2005-07-14 08:47:17',2,'2006-02-15 21:30:53'),(6237,'2005-07-11 14:19:12',2215,166,'2005-07-15 15:05:12',1,'2006-02-15 21:30:53'),(6238,'2005-07-11 14:20:18',3749,23,'2005-07-14 18:34:18',1,'2006-02-15 21:30:53'),(6239,'2005-07-11 14:20:48',4107,132,'2005-07-17 13:41:48',2,'2006-02-15 21:30:53'),(6240,'2005-07-11 14:32:41',640,524,'2005-07-20 18:38:41',1,'2006-02-15 21:30:53'),(6241,'2005-07-11 14:40:48',4449,74,'2005-07-18 09:51:48',1,'2006-02-15 21:30:53'),(6242,'2005-07-11 14:45:04',670,245,'2005-07-12 18:34:04',2,'2006-02-15 21:30:53'),(6243,'2005-07-11 14:53:25',3456,26,'2005-07-15 09:26:25',2,'2006-02-15 21:30:53'),(6244,'2005-07-11 14:53:38',1558,383,'2005-07-12 16:42:38',1,'2006-02-15 21:30:53'),(6245,'2005-07-11 14:56:57',512,241,'2005-07-16 14:35:57',1,'2006-02-15 21:30:53'),(6246,'2005-07-11 14:57:51',2376,172,'2005-07-19 19:10:51',2,'2006-02-15 21:30:53'),(6247,'2005-07-11 15:00:05',2504,589,'2005-07-18 13:47:05',1,'2006-02-15 21:30:53'),(6248,'2005-07-11 15:01:54',2686,6,'2005-07-19 16:58:54',1,'2006-02-15 21:30:53'),(6249,'2005-07-11 15:02:02',4334,30,'2005-07-14 11:37:02',2,'2006-02-15 21:30:53'),(6250,'2005-07-11 15:02:04',4087,458,'2005-07-17 10:54:04',1,'2006-02-15 21:30:53'),(6251,'2005-07-11 15:06:20',3956,230,'2005-07-18 20:11:20',2,'2006-02-15 21:30:53'),(6252,'2005-07-11 15:06:29',1294,295,'2005-07-16 14:07:29',1,'2006-02-15 21:30:53'),(6253,'2005-07-11 15:07:19',1425,570,'2005-07-13 11:00:19',1,'2006-02-15 21:30:53'),(6254,'2005-07-11 15:10:18',2038,20,'2005-07-17 14:20:18',2,'2006-02-15 21:30:53'),(6255,'2005-07-11 15:11:33',1459,319,'2005-07-15 19:55:33',2,'2006-02-15 21:30:53'),(6256,'2005-07-11 15:19:22',480,307,'2005-07-13 12:43:22',1,'2006-02-15 21:30:53'),(6257,'2005-07-11 15:23:46',3253,492,'2005-07-14 17:26:46',2,'2006-02-15 21:30:53'),(6258,'2005-07-11 15:24:32',632,417,'2005-07-18 18:29:32',1,'2006-02-15 21:30:53'),(6259,'2005-07-11 15:25:52',3007,84,'2005-07-13 11:54:52',2,'2006-02-15 21:30:53'),(6260,'2005-07-11 15:26:29',4308,454,'2005-07-13 17:37:29',2,'2006-02-15 21:30:53'),(6261,'2005-07-11 15:28:34',694,386,'2005-07-14 17:54:34',1,'2006-02-15 21:30:53'),(6262,'2005-07-11 15:33:24',4136,355,'2005-07-17 12:40:24',1,'2006-02-15 21:30:53'),(6263,'2005-07-11 15:33:50',2391,336,'2005-07-17 12:49:50',2,'2006-02-15 21:30:53'),(6264,'2005-07-11 15:42:35',4246,565,'2005-07-12 11:29:35',2,'2006-02-15 21:30:53'),(6265,'2005-07-11 15:43:51',3931,477,'2005-07-12 12:51:51',2,'2006-02-15 21:30:53'),(6266,'2005-07-11 15:45:39',941,397,'2005-07-15 18:29:39',1,'2006-02-15 21:30:53'),(6267,'2005-07-11 15:53:00',2152,20,'2005-07-17 18:09:00',2,'2006-02-15 21:30:53'),(6268,'2005-07-11 15:55:34',1154,125,'2005-07-19 17:25:34',1,'2006-02-15 21:30:53'),(6269,'2005-07-11 15:58:43',3915,167,'2005-07-13 13:25:43',1,'2006-02-15 21:30:53'),(6270,'2005-07-11 15:59:10',2308,292,'2005-07-18 10:29:10',2,'2006-02-15 21:30:53'),(6271,'2005-07-11 16:01:35',1246,467,'2005-07-20 12:07:35',2,'2006-02-15 21:30:53'),(6272,'2005-07-11 16:03:49',3103,240,'2005-07-15 19:54:49',1,'2006-02-15 21:30:53'),(6273,'2005-07-11 16:08:41',2403,152,'2005-07-14 16:41:41',2,'2006-02-15 21:30:53'),(6274,'2005-07-11 16:09:42',2998,472,'2005-07-19 20:46:42',1,'2006-02-15 21:30:53'),(6275,'2005-07-11 16:12:11',3599,333,'2005-07-17 20:19:11',2,'2006-02-15 21:30:53'),(6276,'2005-07-11 16:15:50',1826,284,'2005-07-19 20:50:50',2,'2006-02-15 21:30:53'),(6277,'2005-07-11 16:19:01',4023,92,'2005-07-18 21:00:01',2,'2006-02-15 21:30:53'),(6278,'2005-07-11 16:20:02',2232,558,'2005-07-19 19:29:02',2,'2006-02-15 21:30:53'),(6279,'2005-07-11 16:26:07',1254,49,'2005-07-17 21:05:07',2,'2006-02-15 21:30:53'),(6280,'2005-07-11 16:36:17',4055,33,'2005-07-13 14:04:17',2,'2006-02-15 21:30:53'),(6281,'2005-07-11 16:38:16',835,236,'2005-07-13 10:57:16',2,'2006-02-15 21:30:53'),(6282,'2005-07-11 16:46:22',4453,60,'2005-07-15 13:19:22',1,'2006-02-15 21:30:53'),(6283,'2005-07-11 16:47:32',3319,402,'2005-07-17 21:46:32',1,'2006-02-15 21:30:53'),(6284,'2005-07-11 16:51:39',2938,177,'2005-07-15 19:59:39',1,'2006-02-15 21:30:53'),(6285,'2005-07-11 16:52:07',2140,444,'2005-07-13 21:33:07',2,'2006-02-15 21:30:53'),(6286,'2005-07-11 16:55:35',1070,140,'2005-07-13 22:51:35',1,'2006-02-15 21:30:53'),(6287,'2005-07-11 17:00:04',35,93,'2005-07-12 13:16:04',1,'2006-02-15 21:30:53'),(6288,'2005-07-11 17:01:52',3235,357,'2005-07-19 15:11:52',1,'2006-02-15 21:30:53'),(6289,'2005-07-11 17:06:39',3185,99,'2005-07-12 15:54:39',2,'2006-02-15 21:30:53'),(6290,'2005-07-11 17:12:42',2634,66,'2005-07-19 21:53:42',2,'2006-02-15 21:30:53'),(6291,'2005-07-11 17:16:40',3126,262,'2005-07-13 18:24:40',2,'2006-02-15 21:30:53'),(6292,'2005-07-11 17:23:33',4375,505,'2005-07-12 16:27:33',2,'2006-02-15 21:30:53'),(6293,'2005-07-11 17:24:57',4260,471,'2005-07-13 18:45:57',2,'2006-02-15 21:30:53'),(6294,'2005-07-11 17:25:55',1732,463,'2005-07-15 17:48:55',1,'2006-02-15 21:30:53'),(6295,'2005-07-11 17:30:58',1393,7,'2005-07-15 15:50:58',1,'2006-02-15 21:30:53'),(6296,'2005-07-11 17:34:04',4202,484,'2005-07-17 21:12:04',1,'2006-02-15 21:30:53'),(6297,'2005-07-11 17:37:22',2738,69,'2005-07-19 13:54:22',2,'2006-02-15 21:30:53'),(6298,'2005-07-11 17:42:33',3906,256,'2005-07-13 18:14:33',2,'2006-02-15 21:30:53'),(6299,'2005-07-11 17:45:08',4125,324,'2005-07-13 16:36:08',2,'2006-02-15 21:30:53'),(6300,'2005-07-11 17:50:09',1269,283,'2005-07-18 13:11:09',1,'2006-02-15 21:30:53'),(6301,'2005-07-11 17:54:09',3528,275,'2005-07-18 20:42:09',2,'2006-02-15 21:30:53'),(6302,'2005-07-11 17:55:38',3221,391,'2005-07-17 22:11:38',1,'2006-02-15 21:30:53'),(6303,'2005-07-11 17:55:43',846,236,'2005-07-13 12:50:43',1,'2006-02-15 21:30:53'),(6304,'2005-07-11 18:02:16',4183,579,'2005-07-14 14:01:16',1,'2006-02-15 21:30:53'),(6305,'2005-07-11 18:02:25',1544,337,'2005-07-20 13:29:25',1,'2006-02-15 21:30:53'),(6306,'2005-07-11 18:04:26',486,208,'2005-07-20 14:22:26',2,'2006-02-15 21:30:53'),(6307,'2005-07-11 18:04:29',4029,345,'2005-07-17 23:40:29',2,'2006-02-15 21:30:53'),(6308,'2005-07-11 18:08:41',3155,472,'2005-07-19 15:48:41',2,'2006-02-15 21:30:53'),(6309,'2005-07-11 18:13:24',1054,232,'2005-07-13 23:11:24',1,'2006-02-15 21:30:53'),(6310,'2005-07-11 18:14:05',3064,537,'2005-07-16 15:39:05',2,'2006-02-15 21:30:53'),(6311,'2005-07-11 18:18:52',1789,373,'2005-07-16 17:52:52',2,'2006-02-15 21:30:53'),(6312,'2005-07-11 18:19:02',2188,417,'2005-07-18 00:00:02',1,'2006-02-15 21:30:53'),(6313,'2005-07-11 18:29:52',2976,283,'2005-07-14 21:34:52',1,'2006-02-15 21:30:53'),(6314,'2005-07-11 18:32:44',4128,55,'2005-07-17 23:58:44',1,'2006-02-15 21:30:53'),(6315,'2005-07-11 18:42:49',608,374,'2005-07-12 23:19:49',2,'2006-02-15 21:30:53'),(6316,'2005-07-11 18:44:52',1910,526,'2005-07-19 23:35:52',2,'2006-02-15 21:30:53'),(6317,'2005-07-11 18:47:41',4206,225,'2005-07-14 18:18:41',1,'2006-02-15 21:30:53'),(6318,'2005-07-11 18:48:22',2048,425,'2005-07-12 13:39:22',1,'2006-02-15 21:30:53'),(6319,'2005-07-11 18:50:45',3739,233,'2005-07-12 15:26:45',1,'2006-02-15 21:30:53'),(6320,'2005-07-11 18:50:55',441,511,'2005-07-13 22:46:55',2,'2006-02-15 21:30:53'),(6321,'2005-07-11 18:51:02',2655,388,'2005-07-14 20:57:02',2,'2006-02-15 21:30:53'),(6322,'2005-07-11 18:58:20',4115,403,'2005-07-14 16:41:20',2,'2006-02-15 21:30:53'),(6323,'2005-07-11 19:02:19',1352,346,'2005-07-14 15:54:19',1,'2006-02-15 21:30:53'),(6324,'2005-07-11 19:02:34',655,386,'2005-07-17 15:57:34',1,'2006-02-15 21:30:53'),(6325,'2005-07-11 19:06:01',4556,542,'2005-07-18 18:25:01',2,'2006-02-15 21:30:53'),(6326,'2005-07-11 19:06:55',2137,563,'2005-07-12 20:41:55',1,'2006-02-15 21:30:53'),(6327,'2005-07-11 19:07:29',909,146,'2005-07-15 16:09:29',1,'2006-02-15 21:30:53'),(6328,'2005-07-11 19:09:33',999,260,'2005-07-12 20:16:33',2,'2006-02-15 21:30:53'),(6329,'2005-07-11 19:10:38',2763,352,'2005-07-19 14:46:38',2,'2006-02-15 21:30:53'),(6330,'2005-07-11 19:15:42',3917,119,'2005-07-17 19:10:42',1,'2006-02-15 21:30:53'),(6331,'2005-07-11 19:17:21',1356,295,'2005-07-18 18:35:21',2,'2006-02-15 21:30:53'),(6332,'2005-07-11 19:19:06',1733,538,'2005-07-13 13:51:06',2,'2006-02-15 21:30:53'),(6333,'2005-07-11 19:20:16',2610,285,'2005-07-17 15:33:16',1,'2006-02-15 21:30:53'),(6334,'2005-07-11 19:20:44',948,168,'2005-07-19 18:49:44',2,'2006-02-15 21:30:53'),(6335,'2005-07-11 19:25:15',2757,396,'2005-07-16 17:02:15',1,'2006-02-15 21:30:53'),(6336,'2005-07-11 19:30:13',1229,471,'2005-07-20 21:27:13',2,'2006-02-15 21:30:53'),(6337,'2005-07-11 19:30:47',3967,47,'2005-07-19 20:27:47',2,'2006-02-15 21:30:53'),(6338,'2005-07-11 19:39:41',1691,54,'2005-07-18 01:13:41',2,'2006-02-15 21:30:53'),(6339,'2005-07-11 19:45:32',2401,145,'2005-07-18 22:34:32',2,'2006-02-15 21:30:53'),(6340,'2005-07-11 19:46:05',2374,264,'2005-07-20 16:51:05',2,'2006-02-15 21:30:53'),(6341,'2005-07-11 19:48:02',3580,448,'2005-07-15 01:31:02',1,'2006-02-15 21:30:53'),(6342,'2005-07-11 19:48:24',1851,403,'2005-07-13 14:09:24',2,'2006-02-15 21:30:53'),(6343,'2005-07-11 19:51:35',513,147,'2005-07-12 19:13:35',1,'2006-02-15 21:30:53'),(6344,'2005-07-11 20:04:43',3074,78,'2005-07-18 14:35:43',2,'2006-02-15 21:30:53'),(6345,'2005-07-11 20:05:18',4332,532,'2005-07-20 17:28:18',1,'2006-02-15 21:30:53'),(6346,'2005-07-11 20:08:34',4066,445,'2005-07-16 16:35:34',2,'2006-02-15 21:30:53'),(6347,'2005-07-11 20:18:53',3160,178,'2005-07-16 20:45:53',1,'2006-02-15 21:30:53'),(6348,'2005-07-11 20:21:18',21,66,'2005-07-19 15:56:18',2,'2006-02-15 21:30:53'),(6349,'2005-07-11 20:25:05',1581,216,'2005-07-21 00:35:05',2,'2006-02-15 21:30:53'),(6350,'2005-07-11 20:30:15',2853,225,'2005-07-16 21:30:15',1,'2006-02-15 21:30:53'),(6351,'2005-07-11 20:31:44',1852,507,'2005-07-18 17:16:44',2,'2006-02-15 21:30:53'),(6352,'2005-07-11 20:34:13',1143,235,'2005-07-13 19:49:13',1,'2006-02-15 21:30:53'),(6353,'2005-07-11 20:48:56',699,130,'2005-07-21 00:11:56',1,'2006-02-15 21:30:53'),(6354,'2005-07-11 20:54:27',3203,176,'2005-07-18 23:46:27',2,'2006-02-15 21:30:53'),(6355,'2005-07-11 20:56:29',2472,482,'2005-07-20 01:50:29',2,'2006-02-15 21:30:53'),(6356,'2005-07-11 20:57:48',2645,149,'2005-07-12 22:40:48',2,'2006-02-15 21:30:53'),(6357,'2005-07-11 20:58:51',658,252,'2005-07-12 15:06:51',1,'2006-02-15 21:30:53'),(6358,'2005-07-11 21:03:12',4527,567,'2005-07-15 20:06:12',2,'2006-02-15 21:30:53'),(6359,'2005-07-11 21:06:17',1656,30,'2005-07-16 02:51:17',2,'2006-02-15 21:30:53'),(6360,'2005-07-11 21:07:40',3075,338,'2005-07-16 15:11:40',1,'2006-02-15 21:30:53'),(6361,'2005-07-11 21:09:14',2903,561,'2005-07-14 18:26:14',2,'2006-02-15 21:30:53'),(6362,'2005-07-11 21:09:31',4259,358,'2005-07-13 23:08:31',1,'2006-02-15 21:30:53'),(6363,'2005-07-11 21:13:19',4167,344,'2005-07-20 15:44:19',1,'2006-02-15 21:30:53'),(6364,'2005-07-11 21:14:48',4146,160,'2005-07-20 23:20:48',2,'2006-02-15 21:30:53'),(6365,'2005-07-11 21:17:40',4550,566,'2005-07-14 20:53:40',1,'2006-02-15 21:30:53'),(6366,'2005-07-11 21:18:16',3989,366,'2005-07-17 00:21:16',1,'2006-02-15 21:30:53'),(6367,'2005-07-11 21:18:29',1465,357,'2005-07-15 01:05:29',1,'2006-02-15 21:30:53'),(6368,'2005-07-11 21:19:01',3666,588,'2005-07-13 17:56:01',2,'2006-02-15 21:30:53'),(6369,'2005-07-11 21:23:36',1086,252,'2005-07-13 22:23:36',2,'2006-02-15 21:30:53'),(6370,'2005-07-11 21:28:32',1410,99,'2005-07-20 02:51:32',2,'2006-02-15 21:30:53'),(6371,'2005-07-11 21:31:51',4297,265,'2005-07-16 23:10:51',1,'2006-02-15 21:30:53'),(6372,'2005-07-11 21:35:06',741,64,'2005-07-15 02:30:06',2,'2006-02-15 21:30:53'),(6373,'2005-07-11 21:35:20',1042,115,'2005-07-13 23:22:20',2,'2006-02-15 21:30:53'),(6374,'2005-07-11 21:36:10',266,244,'2005-07-17 15:50:10',2,'2006-02-15 21:30:53'),(6375,'2005-07-11 21:39:46',1936,8,'2005-07-18 02:12:46',2,'2006-02-15 21:30:53'),(6376,'2005-07-11 21:40:23',1834,263,'2005-07-13 23:16:23',1,'2006-02-15 21:30:53'),(6377,'2005-07-11 21:41:16',4017,118,'2005-07-15 20:05:16',1,'2006-02-15 21:30:53'),(6378,'2005-07-11 21:45:23',3170,145,'2005-07-14 16:56:23',1,'2006-02-15 21:30:53'),(6379,'2005-07-11 21:51:25',522,287,'2005-07-17 03:38:25',2,'2006-02-15 21:30:53'),(6380,'2005-07-11 21:55:40',3378,172,'2005-07-17 20:42:40',1,'2006-02-15 21:30:53'),(6381,'2005-07-11 21:58:48',2584,340,'2005-07-16 16:18:48',1,'2006-02-15 21:30:53'),(6382,'2005-07-11 21:58:53',3223,336,'2005-07-17 21:18:53',2,'2006-02-15 21:30:53'),(6383,'2005-07-11 22:06:53',4275,486,'2005-07-17 16:09:53',1,'2006-02-15 21:30:53'),(6384,'2005-07-11 22:07:26',491,313,'2005-07-16 22:39:26',1,'2006-02-15 21:30:53'),(6385,'2005-07-11 22:07:32',1830,69,'2005-07-20 16:57:32',1,'2006-02-15 21:30:53'),(6386,'2005-07-11 22:14:57',633,593,'2005-07-15 16:41:57',2,'2006-02-15 21:30:53'),(6387,'2005-07-11 22:15:56',1726,384,'2005-07-14 20:20:56',2,'2006-02-15 21:30:53'),(6388,'2005-07-11 22:17:16',3506,525,'2005-07-19 23:50:16',2,'2006-02-15 21:30:53'),(6389,'2005-07-11 22:18:20',2268,274,'2005-07-16 16:57:20',2,'2006-02-15 21:30:53'),(6390,'2005-07-11 22:19:23',3057,77,'2005-07-15 20:10:23',2,'2006-02-15 21:30:53'),(6391,'2005-07-11 22:23:09',1745,264,'2005-07-15 23:02:09',1,'2006-02-15 21:30:53'),(6392,'2005-07-11 22:25:19',4406,468,'2005-07-16 04:24:19',1,'2006-02-15 21:30:53'),(6393,'2005-07-11 22:28:12',3802,164,'2005-07-14 18:03:12',1,'2006-02-15 21:30:53'),(6394,'2005-07-11 22:29:15',2574,52,'2005-07-20 02:19:15',2,'2006-02-15 21:30:53'),(6395,'2005-07-11 22:29:29',3058,264,'2005-07-18 00:50:29',1,'2006-02-15 21:30:53'),(6396,'2005-07-11 22:31:08',2394,507,'2005-07-19 17:19:08',2,'2006-02-15 21:30:53'),(6397,'2005-07-11 22:34:02',2423,287,'2005-07-13 23:01:02',1,'2006-02-15 21:30:53'),(6398,'2005-07-11 22:34:49',1409,296,'2005-07-17 17:58:49',2,'2006-02-15 21:30:53'),(6399,'2005-07-11 22:39:05',2031,288,'2005-07-16 01:12:05',1,'2006-02-15 21:30:53'),(6400,'2005-07-11 22:43:44',3289,536,'2005-07-19 03:58:44',2,'2006-02-15 21:30:53'),(6401,'2005-07-11 22:44:34',1427,35,'2005-07-12 22:18:34',2,'2006-02-15 21:30:53'),(6402,'2005-07-11 22:46:10',2576,66,'2005-07-16 04:02:10',1,'2006-02-15 21:30:53'),(6403,'2005-07-11 22:46:25',1019,238,'2005-07-13 22:15:25',1,'2006-02-15 21:30:53'),(6404,'2005-07-11 22:49:50',1183,526,'2005-07-14 18:29:50',2,'2006-02-15 21:30:53'),(6405,'2005-07-11 22:53:12',3983,357,'2005-07-18 23:02:12',2,'2006-02-15 21:30:53'),(6406,'2005-07-11 22:55:27',4439,392,'2005-07-20 04:50:27',2,'2006-02-15 21:30:53'),(6407,'2005-07-11 23:02:19',775,140,'2005-07-21 00:30:19',1,'2006-02-15 21:30:53'),(6408,'2005-07-11 23:03:02',2008,350,'2005-07-19 23:09:02',2,'2006-02-15 21:30:53'),(6409,'2005-07-11 23:05:49',3859,537,'2005-07-13 00:13:49',2,'2006-02-15 21:30:53'),(6410,'2005-07-11 23:08:06',1127,560,'2005-07-19 19:57:06',2,'2006-02-15 21:30:53'),(6411,'2005-07-11 23:10:50',4347,124,'2005-07-19 17:15:50',1,'2006-02-15 21:30:53'),(6412,'2005-07-11 23:19:21',3797,220,'2005-07-16 19:48:21',1,'2006-02-15 21:30:53'),(6413,'2005-07-11 23:26:11',4446,251,'2005-07-17 21:58:11',2,'2006-02-15 21:30:53'),(6414,'2005-07-11 23:26:13',814,502,'2005-07-18 17:29:13',1,'2006-02-15 21:30:53'),(6415,'2005-07-11 23:27:52',4175,84,'2005-07-19 22:29:52',2,'2006-02-15 21:30:53'),(6416,'2005-07-11 23:29:14',1063,158,'2005-07-13 20:20:14',1,'2006-02-15 21:30:53'),(6417,'2005-07-11 23:35:11',3042,80,'2005-07-18 20:00:11',2,'2006-02-15 21:30:53'),(6418,'2005-07-11 23:36:27',3101,185,'2005-07-16 18:42:27',1,'2006-02-15 21:30:53'),(6419,'2005-07-11 23:36:38',3683,311,'2005-07-13 03:23:38',1,'2006-02-15 21:30:53'),(6420,'2005-07-11 23:38:49',4443,206,'2005-07-17 17:46:49',2,'2006-02-15 21:30:53'),(6421,'2005-07-11 23:45:25',4477,479,'2005-07-15 20:45:25',2,'2006-02-15 21:30:53'),(6422,'2005-07-11 23:46:19',762,257,'2005-07-20 22:12:19',1,'2006-02-15 21:30:53'),(6423,'2005-07-11 23:47:31',892,427,'2005-07-19 18:16:31',1,'2006-02-15 21:30:53'),(6424,'2005-07-11 23:49:37',3040,359,'2005-07-21 00:53:37',1,'2006-02-15 21:30:53'),(6425,'2005-07-11 23:54:52',2487,339,'2005-07-13 18:37:52',1,'2006-02-15 21:30:53'),(6426,'2005-07-11 23:56:38',498,495,'2005-07-21 05:22:38',1,'2006-02-15 21:30:53'),(6427,'2005-07-11 23:57:34',1043,122,'2005-07-14 18:05:34',2,'2006-02-15 21:30:53'),(6428,'2005-07-12 00:01:51',4365,187,'2005-07-20 22:02:51',2,'2006-02-15 21:30:53'),(6429,'2005-07-12 00:02:50',141,342,'2005-07-21 02:08:50',1,'2006-02-15 21:30:53'),(6430,'2005-07-12 00:03:34',178,390,'2005-07-15 03:11:34',1,'2006-02-15 21:30:53'),(6431,'2005-07-12 00:03:57',3471,458,'2005-07-20 03:47:57',1,'2006-02-15 21:30:53'),(6432,'2005-07-12 00:09:41',970,293,'2005-07-20 20:06:41',1,'2006-02-15 21:30:53'),(6433,'2005-07-12 00:12:02',1357,101,'2005-07-21 04:25:02',2,'2006-02-15 21:30:53'),(6434,'2005-07-12 00:14:25',1478,102,'2005-07-20 19:54:25',2,'2006-02-15 21:30:53'),(6435,'2005-07-12 00:16:19',1957,561,'2005-07-17 19:15:19',1,'2006-02-15 21:30:53'),(6436,'2005-07-12 00:18:42',3758,122,'2005-07-13 03:57:42',2,'2006-02-15 21:30:53'),(6437,'2005-07-12 00:20:29',4539,355,'2005-07-12 22:26:29',1,'2006-02-15 21:30:53'),(6438,'2005-07-12 00:23:01',412,211,'2005-07-17 22:45:01',1,'2006-02-15 21:30:53'),(6439,'2005-07-12 00:23:48',3463,406,'2005-07-13 00:54:48',2,'2006-02-15 21:30:53'),(6440,'2005-07-12 00:25:04',2148,269,'2005-07-13 04:52:04',2,'2006-02-15 21:30:53'),(6441,'2005-07-12 00:27:08',2489,505,'2005-07-14 03:12:08',1,'2006-02-15 21:30:53'),(6442,'2005-07-12 00:29:45',1273,360,'2005-07-15 19:37:45',2,'2006-02-15 21:30:53'),(6443,'2005-07-12 00:35:51',895,155,'2005-07-16 04:50:51',1,'2006-02-15 21:30:53'),(6444,'2005-07-12 00:36:02',2214,168,'2005-07-18 05:53:02',1,'2006-02-15 21:30:53'),(6445,'2005-07-12 00:37:02',582,385,'2005-07-17 22:05:02',2,'2006-02-15 21:30:53'),(6446,'2005-07-12 00:44:08',3634,473,'2005-07-14 20:39:08',2,'2006-02-15 21:30:53'),(6447,'2005-07-12 00:45:17',3945,482,'2005-07-18 05:56:17',2,'2006-02-15 21:30:53'),(6448,'2005-07-12 00:45:59',2663,160,'2005-07-17 00:34:59',1,'2006-02-15 21:30:53'),(6449,'2005-07-12 00:48:58',4395,117,'2005-07-21 02:57:58',1,'2006-02-15 21:30:53'),(6450,'2005-07-12 00:49:05',2413,32,'2005-07-13 01:54:05',2,'2006-02-15 21:30:53'),(6451,'2005-07-12 00:52:19',1008,381,'2005-07-16 21:30:19',2,'2006-02-15 21:30:53'),(6452,'2005-07-12 00:57:31',109,388,'2005-07-14 20:41:31',1,'2006-02-15 21:30:53'),(6453,'2005-07-12 00:59:53',2506,169,'2005-07-14 19:17:53',2,'2006-02-15 21:30:53'),(6454,'2005-07-12 01:00:12',4028,446,'2005-07-16 22:12:12',1,'2006-02-15 21:30:53'),(6455,'2005-07-12 01:01:58',4267,277,'2005-07-16 02:42:58',2,'2006-02-15 21:30:53'),(6456,'2005-07-12 01:05:11',259,387,'2005-07-20 23:26:11',2,'2006-02-15 21:30:53'),(6457,'2005-07-12 01:06:35',2970,64,'2005-07-14 03:27:35',1,'2006-02-15 21:30:53'),(6458,'2005-07-12 01:08:52',2809,138,'2005-07-16 20:22:52',1,'2006-02-15 21:30:53'),(6459,'2005-07-12 01:12:03',4025,557,'2005-07-15 23:48:03',1,'2006-02-15 21:30:53'),(6460,'2005-07-12 01:13:44',2402,371,'2005-07-17 04:51:44',2,'2006-02-15 21:30:53'),(6461,'2005-07-12 01:14:03',1799,135,'2005-07-19 21:12:03',1,'2006-02-15 21:30:53'),(6462,'2005-07-12 01:15:24',4534,414,'2005-07-19 05:11:24',2,'2006-02-15 21:30:53'),(6463,'2005-07-12 01:16:11',2930,391,'2005-07-13 01:37:11',1,'2006-02-15 21:30:53'),(6464,'2005-07-12 01:16:40',3100,303,'2005-07-20 00:53:40',1,'2006-02-15 21:30:53'),(6465,'2005-07-12 01:17:11',2047,207,'2005-07-20 00:29:11',2,'2006-02-15 21:30:53'),(6466,'2005-07-12 01:21:03',3369,235,'2005-07-14 04:05:03',1,'2006-02-15 21:30:53'),(6467,'2005-07-12 01:22:03',2067,457,'2005-07-20 04:37:03',2,'2006-02-15 21:30:53'),(6468,'2005-07-12 01:27:09',4560,541,'2005-07-20 00:37:09',2,'2006-02-15 21:30:53'),(6469,'2005-07-12 01:29:27',3830,147,'2005-07-16 20:22:27',2,'2006-02-15 21:30:53'),(6470,'2005-07-12 01:29:41',1680,240,'2005-07-15 21:33:41',2,'2006-02-15 21:30:53'),(6471,'2005-07-12 01:31:06',2253,397,'2005-07-13 05:26:06',1,'2006-02-15 21:30:53'),(6472,'2005-07-12 01:33:25',3780,183,'2005-07-15 20:26:25',1,'2006-02-15 21:30:53'),(6473,'2005-07-12 01:35:40',527,594,'2005-07-20 20:11:40',1,'2006-02-15 21:30:53'),(6474,'2005-07-12 01:36:46',310,43,'2005-07-16 07:24:46',2,'2006-02-15 21:30:53'),(6475,'2005-07-12 01:36:57',2035,74,'2005-07-17 21:22:57',1,'2006-02-15 21:30:53'),(6476,'2005-07-12 01:37:48',978,28,'2005-07-12 20:21:48',2,'2006-02-15 21:30:53'),(6477,'2005-07-12 01:38:42',804,181,'2005-07-17 05:19:42',2,'2006-02-15 21:30:53'),(6478,'2005-07-12 01:41:44',2589,483,'2005-07-15 20:48:44',1,'2006-02-15 21:30:53'),(6479,'2005-07-12 01:49:00',2587,558,'2005-07-21 04:26:00',1,'2006-02-15 21:30:53'),(6480,'2005-07-12 01:49:29',3076,309,'2005-07-17 01:00:29',1,'2006-02-15 21:30:53'),(6481,'2005-07-12 01:50:15',2392,128,'2005-07-20 03:03:15',1,'2006-02-15 21:30:53'),(6482,'2005-07-12 01:50:21',4135,57,'2005-07-14 06:49:21',2,'2006-02-15 21:30:53'),(6483,'2005-07-12 01:59:20',1053,263,'2005-07-12 22:22:20',2,'2006-02-15 21:30:53'),(6484,'2005-07-12 02:04:10',4093,556,'2005-07-17 23:18:10',2,'2006-02-15 21:30:53'),(6485,'2005-07-12 02:07:59',1224,319,'2005-07-19 22:56:59',1,'2006-02-15 21:30:53'),(6486,'2005-07-12 02:09:36',4008,75,'2005-07-14 03:04:36',2,'2006-02-15 21:30:53'),(6487,'2005-07-12 02:17:00',4000,277,'2005-07-19 00:57:00',2,'2006-02-15 21:30:53'),(6488,'2005-07-12 02:20:09',3974,169,'2005-07-20 00:53:09',2,'2006-02-15 21:30:53'),(6489,'2005-07-12 02:22:46',1821,268,'2005-07-17 06:16:46',2,'2006-02-15 21:30:53'),(6490,'2005-07-12 02:28:03',2249,548,'2005-07-19 03:06:03',2,'2006-02-15 21:30:53'),(6491,'2005-07-12 02:28:31',2803,415,'2005-07-21 00:38:31',1,'2006-02-15 21:30:53'),(6492,'2005-07-12 02:28:40',466,590,'2005-07-17 05:58:40',2,'2006-02-15 21:30:53'),(6493,'2005-07-12 02:40:41',16,184,'2005-07-16 04:56:41',1,'2006-02-15 21:30:53'),(6494,'2005-07-12 02:42:51',1124,57,'2005-07-20 06:57:51',1,'2006-02-15 21:30:53'),(6495,'2005-07-12 02:57:02',2440,19,'2005-07-14 08:35:02',1,'2006-02-15 21:30:53'),(6496,'2005-07-12 02:57:39',3550,139,'2005-07-20 01:43:39',1,'2006-02-15 21:30:53'),(6497,'2005-07-12 03:04:29',933,222,'2005-07-17 21:36:29',2,'2006-02-15 21:30:53'),(6498,'2005-07-12 03:05:38',243,48,'2005-07-19 07:12:38',1,'2006-02-15 21:30:53'),(6499,'2005-07-12 03:11:18',3165,474,'2005-07-21 07:50:18',2,'2006-02-15 21:30:53'),(6500,'2005-07-12 03:11:23',4521,577,'2005-07-13 00:51:23',2,'2006-02-15 21:30:53'),(6501,'2005-07-12 03:11:55',2851,219,'2005-07-16 02:08:55',2,'2006-02-15 21:30:53'),(6502,'2005-07-12 03:15:45',1641,40,'2005-07-17 08:47:45',2,'2006-02-15 21:30:53'),(6503,'2005-07-12 03:18:07',1319,120,'2005-07-15 00:05:07',1,'2006-02-15 21:30:53'),(6504,'2005-07-12 03:19:14',3786,535,'2005-07-17 01:13:14',2,'2006-02-15 21:30:53'),(6505,'2005-07-12 03:27:37',3986,415,'2005-07-17 22:42:37',2,'2006-02-15 21:30:53'),(6506,'2005-07-12 03:28:22',386,423,'2005-07-17 22:43:22',1,'2006-02-15 21:30:53'),(6507,'2005-07-12 03:33:12',2463,118,'2005-07-20 03:56:12',1,'2006-02-15 21:30:53'),(6508,'2005-07-12 03:34:50',1474,597,'2005-07-17 02:57:50',2,'2006-02-15 21:30:53'),(6509,'2005-07-12 03:35:01',2468,427,'2005-07-13 06:50:01',2,'2006-02-15 21:30:53'),(6510,'2005-07-12 03:35:39',905,446,'2005-07-21 01:41:39',1,'2006-02-15 21:30:53'),(6511,'2005-07-12 03:39:29',1350,322,'2005-07-17 01:01:29',2,'2006-02-15 21:30:53'),(6512,'2005-07-12 03:42:49',1703,68,'2005-07-13 05:01:49',2,'2006-02-15 21:30:53'),(6513,'2005-07-12 03:44:43',2671,393,'2005-07-13 05:54:43',1,'2006-02-15 21:30:53'),(6514,'2005-07-12 03:47:44',3562,73,'2005-07-20 00:11:44',1,'2006-02-15 21:30:53'),(6515,'2005-07-12 03:50:32',706,261,'2005-07-15 03:54:32',2,'2006-02-15 21:30:53'),(6516,'2005-07-12 03:51:54',863,291,'2005-07-14 03:41:54',2,'2006-02-15 21:30:53'),(6517,'2005-07-12 03:52:39',185,387,'2005-07-20 08:00:39',1,'2006-02-15 21:30:53'),(6518,'2005-07-12 03:59:42',2698,288,'2005-07-19 22:21:42',2,'2006-02-15 21:30:53'),(6519,'2005-07-12 04:00:36',4149,598,'2005-07-19 01:15:36',1,'2006-02-15 21:30:53'),(6520,'2005-07-12 04:05:16',1535,270,'2005-07-15 08:26:16',1,'2006-02-15 21:30:53'),(6521,'2005-07-12 04:06:11',3293,49,'2005-07-21 05:50:11',1,'2006-02-15 21:30:53'),(6522,'2005-07-12 04:11:58',3916,142,'2005-07-15 08:32:58',1,'2006-02-15 21:30:53'),(6523,'2005-07-12 04:14:19',1848,574,'2005-07-17 00:38:19',1,'2006-02-15 21:30:53'),(6524,'2005-07-12 04:14:35',1467,376,'2005-07-17 03:59:35',2,'2006-02-15 21:30:53'),(6525,'2005-07-12 04:17:15',1408,103,'2005-07-18 23:11:15',1,'2006-02-15 21:30:53'),(6526,'2005-07-12 04:21:20',1718,225,'2005-07-18 23:45:20',2,'2006-02-15 21:30:53'),(6527,'2005-07-12 04:23:06',538,65,'2005-07-17 00:20:06',1,'2006-02-15 21:30:53'),(6528,'2005-07-12 04:29:44',3824,598,'2005-07-18 02:39:44',2,'2006-02-15 21:30:53'),(6529,'2005-07-12 04:31:04',1058,503,'2005-07-17 07:09:04',2,'2006-02-15 21:30:53'),(6530,'2005-07-12 04:33:19',3410,75,'2005-07-15 08:26:19',1,'2006-02-15 21:30:53'),(6531,'2005-07-12 04:35:24',4231,510,'2005-07-16 05:37:24',2,'2006-02-15 21:30:53'),(6532,'2005-07-12 04:38:32',2361,225,'2005-07-13 03:54:32',1,'2006-02-15 21:30:53'),(6533,'2005-07-12 04:39:38',3853,366,'2005-07-18 05:29:38',1,'2006-02-15 21:30:53'),(6534,'2005-07-12 04:39:43',2359,577,'2005-07-16 06:33:43',1,'2006-02-15 21:30:53'),(6535,'2005-07-12 04:43:43',1921,446,'2005-07-17 04:52:43',1,'2006-02-15 21:30:53'),(6536,'2005-07-12 04:44:25',3521,289,'2005-07-18 01:52:25',2,'2006-02-15 21:30:53'),(6537,'2005-07-12 04:46:30',3381,207,'2005-07-19 03:04:30',2,'2006-02-15 21:30:53'),(6538,'2005-07-12 04:50:26',1987,529,'2005-07-20 23:44:26',2,'2006-02-15 21:30:53'),(6539,'2005-07-12 04:50:49',2275,259,'2005-07-19 03:23:49',1,'2006-02-15 21:30:53'),(6540,'2005-07-12 04:51:13',937,156,'2005-07-21 03:38:13',1,'2006-02-15 21:30:53'),(6541,'2005-07-12 04:53:41',1795,529,'2005-07-17 23:17:41',2,'2006-02-15 21:30:53'),(6542,'2005-07-12 04:53:49',2421,359,'2005-07-13 01:48:49',1,'2006-02-15 21:30:53'),(6543,'2005-07-12 04:54:32',2568,264,'2005-07-15 09:50:32',2,'2006-02-15 21:30:53'),(6544,'2005-07-12 04:56:15',1218,97,'2005-07-17 08:28:15',1,'2006-02-15 21:30:53'),(6545,'2005-07-12 04:56:30',4447,376,'2005-07-20 05:41:30',1,'2006-02-15 21:30:53'),(6546,'2005-07-12 04:57:17',393,105,'2005-07-17 09:29:17',2,'2006-02-15 21:30:53'),(6547,'2005-07-12 04:57:46',2656,262,'2005-07-18 08:36:46',2,'2006-02-15 21:30:53'),(6548,'2005-07-12 05:00:46',2480,488,'2005-07-19 04:40:46',2,'2006-02-15 21:30:53'),(6549,'2005-07-12 05:02:01',2688,493,'2005-07-20 06:19:01',2,'2006-02-15 21:30:53'),(6550,'2005-07-12 05:03:14',2184,112,'2005-07-19 04:06:14',1,'2006-02-15 21:30:53'),(6551,'2005-07-12 05:03:43',282,567,'2005-07-13 10:44:43',1,'2006-02-15 21:30:53'),(6552,'2005-07-12 05:05:06',766,493,'2005-07-13 05:12:06',2,'2006-02-15 21:30:53'),(6553,'2005-07-12 05:06:39',1137,265,'2005-07-21 10:37:39',1,'2006-02-15 21:30:53'),(6554,'2005-07-12 05:07:26',2741,178,'2005-07-21 06:06:26',2,'2006-02-15 21:30:53'),(6555,'2005-07-12 05:08:16',1282,188,'2005-07-14 04:09:16',1,'2006-02-15 21:30:53'),(6556,'2005-07-12 05:10:16',3901,570,'2005-07-13 04:16:16',2,'2006-02-15 21:30:53'),(6557,'2005-07-12 05:12:03',1442,116,'2005-07-20 06:49:03',1,'2006-02-15 21:30:53'),(6558,'2005-07-12 05:16:07',2195,164,'2005-07-13 05:32:07',2,'2006-02-15 21:30:53'),(6559,'2005-07-12 05:20:35',458,353,'2005-07-16 08:44:35',2,'2006-02-15 21:30:53'),(6560,'2005-07-12 05:22:06',433,54,'2005-07-15 00:04:06',2,'2006-02-15 21:30:53'),(6561,'2005-07-12 05:24:02',4568,528,'2005-07-16 03:43:02',2,'2006-02-15 21:30:53'),(6562,'2005-07-12 05:26:26',3969,27,'2005-07-16 05:10:26',2,'2006-02-15 21:30:53'),(6563,'2005-07-12 05:34:09',87,438,'2005-07-21 07:37:09',1,'2006-02-15 21:30:53'),(6564,'2005-07-12 05:34:44',2320,210,'2005-07-18 06:12:44',2,'2006-02-15 21:30:53'),(6565,'2005-07-12 05:39:50',2751,35,'2005-07-13 01:07:50',2,'2006-02-15 21:30:53'),(6566,'2005-07-12 05:42:53',1822,178,'2005-07-19 01:23:53',2,'2006-02-15 21:30:53'),(6567,'2005-07-12 05:43:09',1336,198,'2005-07-19 08:18:09',2,'2006-02-15 21:30:53'),(6568,'2005-07-12 05:45:47',4203,13,'2005-07-15 05:18:47',2,'2006-02-15 21:30:53'),(6569,'2005-07-12 05:47:40',759,183,'2005-07-20 06:23:40',2,'2006-02-15 21:30:53'),(6570,'2005-07-12 05:50:31',2082,217,'2005-07-13 09:58:31',1,'2006-02-15 21:30:53'),(6571,'2005-07-12 05:51:47',3700,140,'2005-07-15 11:31:47',1,'2006-02-15 21:30:53'),(6572,'2005-07-12 05:56:38',3121,35,'2005-07-16 10:41:38',1,'2006-02-15 21:30:53'),(6573,'2005-07-12 06:03:40',3308,239,'2005-07-13 11:49:40',2,'2006-02-15 21:30:53'),(6574,'2005-07-12 06:04:22',621,115,'2005-07-18 03:19:22',2,'2006-02-15 21:30:53'),(6575,'2005-07-12 06:12:53',1414,598,'2005-07-18 07:55:53',2,'2006-02-15 21:30:53'),(6576,'2005-07-12 06:13:41',339,362,'2005-07-16 03:22:41',1,'2006-02-15 21:30:53'),(6577,'2005-07-12 06:15:05',4191,439,'2005-07-15 06:23:05',1,'2006-02-15 21:30:53'),(6578,'2005-07-12 06:15:41',2304,229,'2005-07-15 10:43:41',1,'2006-02-15 21:30:53'),(6580,'2005-07-12 06:26:10',1543,31,'2005-07-13 06:44:10',1,'2006-02-15 21:30:53'),(6581,'2005-07-12 06:26:49',2121,468,'2005-07-14 05:07:49',2,'2006-02-15 21:30:53'),(6582,'2005-07-12 06:28:12',2077,420,'2005-07-19 06:19:12',1,'2006-02-15 21:30:53'),(6583,'2005-07-12 06:42:31',2343,462,'2005-07-15 07:51:31',1,'2006-02-15 21:30:53'),(6584,'2005-07-12 06:43:36',1800,472,'2005-07-16 12:18:36',2,'2006-02-15 21:30:53'),(6585,'2005-07-12 06:50:52',2064,136,'2005-07-21 06:51:52',1,'2006-02-15 21:30:53'),(6586,'2005-07-12 06:56:24',3860,93,'2005-07-17 09:36:24',1,'2006-02-15 21:30:53'),(6587,'2005-07-12 06:56:26',238,419,'2005-07-20 05:53:26',2,'2006-02-15 21:30:53'),(6588,'2005-07-12 06:57:40',1257,420,'2005-07-16 04:27:40',1,'2006-02-15 21:30:53'),(6589,'2005-07-12 07:06:29',1595,424,'2005-07-14 12:06:29',2,'2006-02-15 21:30:53'),(6590,'2005-07-12 07:08:21',1067,442,'2005-07-18 06:16:21',2,'2006-02-15 21:30:53'),(6591,'2005-07-12 07:13:46',2846,509,'2005-07-16 05:15:46',2,'2006-02-15 21:30:53'),(6592,'2005-07-12 07:19:35',3481,273,'2005-07-19 07:15:35',1,'2006-02-15 21:30:53'),(6593,'2005-07-12 07:21:17',3441,356,'2005-07-14 02:35:17',2,'2006-02-15 21:30:53'),(6594,'2005-07-12 07:25:43',4458,517,'2005-07-13 07:59:43',1,'2006-02-15 21:30:53'),(6595,'2005-07-12 07:25:48',1286,458,'2005-07-20 02:24:48',2,'2006-02-15 21:30:53'),(6596,'2005-07-12 07:32:59',890,409,'2005-07-13 02:47:59',1,'2006-02-15 21:30:53'),(6597,'2005-07-12 07:37:02',979,479,'2005-07-16 10:24:02',2,'2006-02-15 21:30:53'),(6598,'2005-07-12 07:38:25',2049,532,'2005-07-19 07:58:25',1,'2006-02-15 21:30:53'),(6599,'2005-07-12 07:41:14',4348,519,'2005-07-21 02:45:14',2,'2006-02-15 21:30:53'),(6600,'2005-07-12 07:41:48',3315,389,'2005-07-18 12:36:48',2,'2006-02-15 21:30:53'),(6601,'2005-07-12 07:44:49',1640,464,'2005-07-20 03:22:49',2,'2006-02-15 21:30:53'),(6602,'2005-07-12 07:50:24',2382,214,'2005-07-20 03:25:24',2,'2006-02-15 21:30:53'),(6603,'2005-07-12 07:52:55',3583,425,'2005-07-16 13:19:55',2,'2006-02-15 21:30:53'),(6604,'2005-07-12 07:57:45',822,365,'2005-07-16 05:41:45',2,'2006-02-15 21:30:53'),(6605,'2005-07-12 08:01:07',2892,547,'2005-07-19 03:12:07',1,'2006-02-15 21:30:53'),(6606,'2005-07-12 08:03:40',2805,178,'2005-07-13 09:05:40',1,'2006-02-15 21:30:53'),(6607,'2005-07-12 08:08:50',337,562,'2005-07-20 09:17:50',1,'2006-02-15 21:30:53'),(6608,'2005-07-12 08:16:50',3577,244,'2005-07-18 07:08:50',2,'2006-02-15 21:30:53'),(6609,'2005-07-12 08:19:41',3332,133,'2005-07-19 08:19:41',2,'2006-02-15 21:30:53'),(6610,'2005-07-12 08:20:02',645,353,'2005-07-21 09:16:02',2,'2006-02-15 21:30:53'),(6611,'2005-07-12 08:20:23',1604,286,'2005-07-16 07:19:23',1,'2006-02-15 21:30:53'),(6612,'2005-07-12 08:28:33',235,152,'2005-07-17 06:25:33',1,'2006-02-15 21:30:53'),(6613,'2005-07-12 08:30:07',3421,460,'2005-07-14 10:25:07',2,'2006-02-15 21:30:53'),(6614,'2005-07-12 08:33:49',3004,144,'2005-07-18 07:28:49',2,'2006-02-15 21:30:53'),(6615,'2005-07-12 08:36:22',23,438,'2005-07-20 09:03:22',1,'2006-02-15 21:30:53'),(6616,'2005-07-12 08:37:30',1833,179,'2005-07-20 10:33:30',1,'2006-02-15 21:30:53'),(6617,'2005-07-12 08:39:56',2292,248,'2005-07-14 09:32:56',2,'2006-02-15 21:30:53'),(6618,'2005-07-12 08:41:42',4266,327,'2005-07-14 05:34:42',1,'2006-02-15 21:30:53'),(6619,'2005-07-12 08:50:48',4062,305,'2005-07-14 11:54:48',1,'2006-02-15 21:30:53'),(6620,'2005-07-12 08:51:03',2362,337,'2005-07-16 03:59:03',2,'2006-02-15 21:30:53'),(6621,'2005-07-12 08:57:30',2229,561,'2005-07-14 09:47:30',1,'2006-02-15 21:30:53'),(6622,'2005-07-12 09:04:11',4350,325,'2005-07-13 04:27:11',1,'2006-02-15 21:30:53'),(6623,'2005-07-12 09:05:34',4412,302,'2005-07-19 13:54:34',2,'2006-02-15 21:30:53'),(6624,'2005-07-12 09:05:50',3946,335,'2005-07-18 13:59:50',2,'2006-02-15 21:30:53'),(6625,'2005-07-12 09:06:40',735,443,'2005-07-21 04:57:40',2,'2006-02-15 21:30:53'),(6626,'2005-07-12 09:16:24',2418,269,'2005-07-17 04:06:24',2,'2006-02-15 21:30:53'),(6627,'2005-07-12 09:16:46',626,565,'2005-07-17 10:58:46',1,'2006-02-15 21:30:53'),(6628,'2005-07-12 09:18:08',2894,211,'2005-07-21 04:27:08',2,'2006-02-15 21:30:53'),(6629,'2005-07-12 09:18:35',2855,582,'2005-07-20 11:34:35',2,'2006-02-15 21:30:53'),(6630,'2005-07-12 09:30:05',1843,462,'2005-07-14 08:29:05',2,'2006-02-15 21:30:53'),(6631,'2005-07-12 09:31:43',2340,204,'2005-07-15 05:00:43',2,'2006-02-15 21:30:53'),(6632,'2005-07-12 09:33:10',2929,442,'2005-07-15 11:36:10',1,'2006-02-15 21:30:53'),(6633,'2005-07-12 09:35:42',2908,150,'2005-07-13 12:56:42',2,'2006-02-15 21:30:53'),(6634,'2005-07-12 09:37:18',2943,50,'2005-07-13 09:28:18',1,'2006-02-15 21:30:53'),(6635,'2005-07-12 09:47:58',515,273,'2005-07-16 15:43:58',1,'2006-02-15 21:30:53'),(6636,'2005-07-12 09:49:46',3270,441,'2005-07-14 12:15:46',1,'2006-02-15 21:30:53'),(6637,'2005-07-12 09:57:39',2852,164,'2005-07-19 08:40:39',1,'2006-02-15 21:30:53'),(6638,'2005-07-12 09:58:02',207,87,'2005-07-13 09:40:02',1,'2006-02-15 21:30:53'),(6639,'2005-07-12 10:00:44',3385,587,'2005-07-19 04:56:44',1,'2006-02-15 21:30:53'),(6640,'2005-07-12 10:27:19',2794,148,'2005-07-21 06:28:19',2,'2006-02-15 21:30:53'),(6641,'2005-07-12 10:33:14',2165,334,'2005-07-20 08:24:14',2,'2006-02-15 21:30:53'),(6642,'2005-07-12 10:37:52',201,441,'2005-07-13 15:13:52',1,'2006-02-15 21:30:53'),(6643,'2005-07-12 10:39:22',174,88,'2005-07-18 13:52:22',1,'2006-02-15 21:30:53'),(6644,'2005-07-12 10:39:39',2667,285,'2005-07-14 11:50:39',1,'2006-02-15 21:30:53'),(6645,'2005-07-12 10:39:55',2858,73,'2005-07-17 07:41:55',1,'2006-02-15 21:30:53'),(6646,'2005-07-12 10:41:34',4061,508,'2005-07-15 05:31:34',1,'2006-02-15 21:30:53'),(6647,'2005-07-12 10:43:53',1841,8,'2005-07-14 05:37:53',1,'2006-02-15 21:30:53'),(6648,'2005-07-12 10:46:30',718,356,'2005-07-14 16:15:30',1,'2006-02-15 21:30:53'),(6649,'2005-07-12 10:51:09',70,57,'2005-07-14 16:05:09',2,'2006-02-15 21:30:53'),(6650,'2005-07-12 10:57:10',1589,526,'2005-07-14 07:24:10',1,'2006-02-15 21:30:53'),(6651,'2005-07-12 10:57:28',98,447,'2005-07-15 06:06:28',2,'2006-02-15 21:30:53'),(6652,'2005-07-12 10:59:38',2200,518,'2005-07-13 13:52:38',1,'2006-02-15 21:30:53'),(6653,'2005-07-12 11:06:17',614,25,'2005-07-19 16:52:17',2,'2006-02-15 21:30:53'),(6654,'2005-07-12 11:06:28',2870,458,'2005-07-20 10:27:28',1,'2006-02-15 21:30:53'),(6655,'2005-07-12 11:08:32',3937,100,'2005-07-15 15:17:32',1,'2006-02-15 21:30:53'),(6656,'2005-07-12 11:09:47',2282,330,'2005-07-14 05:50:47',1,'2006-02-15 21:30:53'),(6657,'2005-07-12 11:11:36',3697,553,'2005-07-16 15:56:36',1,'2006-02-15 21:30:53'),(6658,'2005-07-12 11:13:21',172,27,'2005-07-17 09:10:21',2,'2006-02-15 21:30:53'),(6659,'2005-07-12 11:18:05',2285,134,'2005-07-16 16:45:05',2,'2006-02-15 21:30:53'),(6660,'2005-07-12 11:20:12',446,598,'2005-07-20 12:58:12',2,'2006-02-15 21:30:53'),(6661,'2005-07-12 11:20:39',2367,315,'2005-07-16 08:17:39',2,'2006-02-15 21:30:53'),(6662,'2005-07-12 11:21:06',1464,99,'2005-07-13 13:00:06',1,'2006-02-15 21:30:53'),(6663,'2005-07-12 11:27:35',4364,5,'2005-07-21 16:35:35',1,'2006-02-15 21:30:53'),(6664,'2005-07-12 11:28:22',4578,351,'2005-07-15 09:30:22',1,'2006-02-15 21:30:53'),(6665,'2005-07-12 11:29:14',2912,587,'2005-07-19 11:26:14',2,'2006-02-15 21:30:53'),(6666,'2005-07-12 11:32:15',3194,314,'2005-07-14 16:09:15',2,'2006-02-15 21:30:53'),(6667,'2005-07-12 11:36:22',215,50,'2005-07-19 12:53:22',1,'2006-02-15 21:30:53'),(6668,'2005-07-12 11:37:45',1498,199,'2005-07-14 13:28:45',2,'2006-02-15 21:30:53'),(6669,'2005-07-12 11:39:55',1420,355,'2005-07-20 05:56:55',1,'2006-02-15 21:30:53'),(6670,'2005-07-12 11:44:33',3106,249,'2005-07-19 07:54:33',2,'2006-02-15 21:30:53'),(6671,'2005-07-12 11:48:48',955,526,'2005-07-19 16:55:48',2,'2006-02-15 21:30:53'),(6672,'2005-07-12 11:49:16',375,439,'2005-07-13 07:03:16',2,'2006-02-15 21:30:53'),(6673,'2005-07-12 11:50:56',1997,322,'2005-07-13 14:27:56',1,'2006-02-15 21:30:53'),(6674,'2005-07-12 11:51:54',2385,399,'2005-07-13 16:57:54',1,'2006-02-15 21:30:53'),(6675,'2005-07-12 11:53:06',2124,523,'2005-07-13 06:09:06',1,'2006-02-15 21:30:53'),(6676,'2005-07-12 11:53:40',2294,571,'2005-07-19 09:15:40',1,'2006-02-15 21:30:53'),(6677,'2005-07-12 11:58:14',2389,516,'2005-07-21 06:05:14',2,'2006-02-15 21:30:53'),(6678,'2005-07-12 11:58:36',3473,330,'2005-07-15 17:50:36',2,'2006-02-15 21:30:53'),(6679,'2005-07-12 12:01:07',3664,586,'2005-07-14 11:36:07',1,'2006-02-15 21:30:53'),(6680,'2005-07-12 12:01:56',2887,43,'2005-07-16 17:32:56',1,'2006-02-15 21:30:53'),(6681,'2005-07-12 12:04:12',854,368,'2005-07-19 11:01:12',2,'2006-02-15 21:30:53'),(6682,'2005-07-12 12:12:43',1984,339,'2005-07-21 10:49:43',2,'2006-02-15 21:30:53'),(6683,'2005-07-12 12:14:05',3433,244,'2005-07-17 14:02:05',2,'2006-02-15 21:30:53'),(6684,'2005-07-12 12:14:42',2817,583,'2005-07-21 11:07:42',2,'2006-02-15 21:30:53'),(6685,'2005-07-12 12:16:28',1434,5,'2005-07-19 17:03:28',1,'2006-02-15 21:30:53'),(6686,'2005-07-12 12:18:38',3804,6,'2005-07-13 17:56:38',2,'2006-02-15 21:30:53'),(6687,'2005-07-12 12:19:23',2736,128,'2005-07-19 17:12:23',1,'2006-02-15 21:30:53'),(6688,'2005-07-12 12:22:12',2377,246,'2005-07-14 14:05:12',1,'2006-02-15 21:30:53'),(6689,'2005-07-12 12:22:13',1568,525,'2005-07-16 07:44:13',1,'2006-02-15 21:30:53'),(6690,'2005-07-12 12:23:02',4254,447,'2005-07-16 15:39:02',2,'2006-02-15 21:30:53'),(6691,'2005-07-12 12:26:38',403,192,'2005-07-18 13:26:38',2,'2006-02-15 21:30:53'),(6692,'2005-07-12 12:35:39',2837,372,'2005-07-20 11:20:39',2,'2006-02-15 21:30:53'),(6693,'2005-07-12 12:37:00',2014,573,'2005-07-20 09:36:00',1,'2006-02-15 21:30:53'),(6694,'2005-07-12 12:39:23',586,204,'2005-07-19 14:47:23',1,'2006-02-15 21:30:53'),(6695,'2005-07-12 12:39:39',3088,550,'2005-07-17 13:36:39',2,'2006-02-15 21:30:53'),(6696,'2005-07-12 12:44:04',299,273,'2005-07-16 14:17:04',1,'2006-02-15 21:30:53'),(6697,'2005-07-12 12:44:57',210,103,'2005-07-19 13:02:57',1,'2006-02-15 21:30:53'),(6698,'2005-07-12 12:45:00',4419,64,'2005-07-16 11:16:00',2,'2006-02-15 21:30:53'),(6699,'2005-07-12 12:45:21',3411,565,'2005-07-15 12:59:21',1,'2006-02-15 21:30:53'),(6700,'2005-07-12 12:47:22',3063,184,'2005-07-21 16:04:22',1,'2006-02-15 21:30:53'),(6701,'2005-07-12 12:47:59',3428,454,'2005-07-13 10:28:59',1,'2006-02-15 21:30:53'),(6702,'2005-07-12 12:48:03',233,164,'2005-07-13 11:55:03',1,'2006-02-15 21:30:53'),(6703,'2005-07-12 12:50:19',46,470,'2005-07-16 13:41:19',1,'2006-02-15 21:30:53'),(6704,'2005-07-12 12:50:24',1590,595,'2005-07-20 16:41:24',2,'2006-02-15 21:30:53'),(6705,'2005-07-12 12:53:11',4268,363,'2005-07-13 07:17:11',1,'2006-02-15 21:30:53'),(6706,'2005-07-12 12:59:16',4552,267,'2005-07-19 10:37:16',1,'2006-02-15 21:30:53'),(6707,'2005-07-12 13:07:55',406,80,'2005-07-16 16:26:55',2,'2006-02-15 21:30:53'),(6708,'2005-07-12 13:10:55',372,82,'2005-07-21 07:36:55',1,'2006-02-15 21:30:53'),(6709,'2005-07-12 13:20:41',4049,322,'2005-07-16 10:37:41',2,'2006-02-15 21:30:53'),(6710,'2005-07-12 13:23:09',806,462,'2005-07-20 10:10:09',2,'2006-02-15 21:30:53'),(6711,'2005-07-12 13:23:40',2247,257,'2005-07-20 11:45:40',2,'2006-02-15 21:30:53'),(6712,'2005-07-12 13:24:47',4581,226,'2005-07-20 09:35:47',2,'2006-02-15 21:30:53'),(6713,'2005-07-12 13:27:36',4218,557,'2005-07-16 11:14:36',1,'2006-02-15 21:30:53'),(6714,'2005-07-12 13:29:06',1947,370,'2005-07-18 16:02:06',2,'2006-02-15 21:30:53'),(6715,'2005-07-12 13:32:28',643,386,'2005-07-15 17:01:28',2,'2006-02-15 21:30:53'),(6716,'2005-07-12 13:34:58',2783,367,'2005-07-19 15:09:58',1,'2006-02-15 21:30:53'),(6717,'2005-07-12 13:35:02',523,273,'2005-07-20 15:03:02',1,'2006-02-15 21:30:53'),(6718,'2005-07-12 13:38:06',2283,541,'2005-07-18 09:05:06',1,'2006-02-15 21:30:53'),(6719,'2005-07-12 13:40:37',739,330,'2005-07-15 15:23:37',2,'2006-02-15 21:30:53'),(6720,'2005-07-12 13:41:16',2704,151,'2005-07-13 14:41:16',2,'2006-02-15 21:30:53'),(6721,'2005-07-12 13:42:58',2798,462,'2005-07-19 16:39:58',2,'2006-02-15 21:30:53'),(6722,'2005-07-12 13:44:03',3124,211,'2005-07-19 12:43:03',2,'2006-02-15 21:30:53'),(6723,'2005-07-12 13:44:57',2678,499,'2005-07-14 15:57:57',2,'2006-02-15 21:30:53'),(6724,'2005-07-12 13:45:15',2486,262,'2005-07-19 19:18:15',1,'2006-02-15 21:30:53'),(6725,'2005-07-12 13:47:17',831,213,'2005-07-17 13:31:17',1,'2006-02-15 21:30:53'),(6726,'2005-07-12 13:48:14',4494,97,'2005-07-16 11:11:14',1,'2006-02-15 21:30:53'),(6727,'2005-07-12 13:54:25',3793,407,'2005-07-14 17:29:25',1,'2006-02-15 21:30:53'),(6728,'2005-07-12 13:56:48',2113,414,'2005-07-15 18:49:48',1,'2006-02-15 21:30:53'),(6729,'2005-07-12 13:58:23',2495,455,'2005-07-19 09:34:23',2,'2006-02-15 21:30:53'),(6730,'2005-07-12 13:58:25',1552,532,'2005-07-20 13:01:25',1,'2006-02-15 21:30:53'),(6731,'2005-07-12 13:58:27',844,593,'2005-07-15 10:04:27',2,'2006-02-15 21:30:53'),(6732,'2005-07-12 13:58:51',1913,299,'2005-07-17 17:42:51',1,'2006-02-15 21:30:53'),(6733,'2005-07-12 14:04:01',1476,585,'2005-07-21 18:57:01',2,'2006-02-15 21:30:53'),(6734,'2005-07-12 14:04:24',2248,446,'2005-07-21 19:47:24',1,'2006-02-15 21:30:53'),(6735,'2005-07-12 14:08:20',276,428,'2005-07-18 09:41:20',2,'2006-02-15 21:30:53'),(6736,'2005-07-12 14:16:50',530,342,'2005-07-15 16:26:50',1,'2006-02-15 21:30:53'),(6737,'2005-07-12 14:16:52',315,304,'2005-07-18 19:48:52',1,'2006-02-15 21:30:53'),(6738,'2005-07-12 14:17:55',1197,366,'2005-07-21 10:11:55',2,'2006-02-15 21:30:53'),(6739,'2005-07-12 14:22:08',1221,71,'2005-07-18 16:57:08',2,'2006-02-15 21:30:53'),(6740,'2005-07-12 14:22:08',2431,139,'2005-07-14 14:35:08',1,'2006-02-15 21:30:53'),(6741,'2005-07-12 14:24:16',237,359,'2005-07-15 08:31:16',1,'2006-02-15 21:30:53'),(6742,'2005-07-12 14:25:31',4242,558,'2005-07-17 08:50:31',2,'2006-02-15 21:30:53'),(6743,'2005-07-12 14:29:25',158,261,'2005-07-13 13:13:25',1,'2006-02-15 21:30:53'),(6744,'2005-07-12 14:30:28',2565,64,'2005-07-14 16:20:28',1,'2006-02-15 21:30:53'),(6745,'2005-07-12 14:30:51',1331,524,'2005-07-13 13:42:51',2,'2006-02-15 21:30:53'),(6746,'2005-07-12 14:33:01',3127,537,'2005-07-17 19:52:01',2,'2006-02-15 21:30:53'),(6747,'2005-07-12 14:33:21',3651,126,'2005-07-13 09:59:21',2,'2006-02-15 21:30:53'),(6748,'2005-07-12 14:39:27',3655,540,'2005-07-18 13:40:27',2,'2006-02-15 21:30:53'),(6749,'2005-07-12 14:43:05',2895,334,'2005-07-21 15:13:05',2,'2006-02-15 21:30:53'),(6750,'2005-07-12 14:49:39',3838,459,'2005-07-18 18:43:39',2,'2006-02-15 21:30:53'),(6751,'2005-07-12 14:50:34',1749,312,'2005-07-15 19:39:34',2,'2006-02-15 21:30:53'),(6752,'2005-07-12 14:53:15',3392,453,'2005-07-20 09:23:15',1,'2006-02-15 21:30:53'),(6753,'2005-07-12 14:55:42',2591,147,'2005-07-18 19:16:42',1,'2006-02-15 21:30:53'),(6754,'2005-07-12 14:59:24',1460,114,'2005-07-14 11:04:24',2,'2006-02-15 21:30:53'),(6755,'2005-07-12 15:07:49',2542,126,'2005-07-21 18:43:49',2,'2006-02-15 21:30:53'),(6756,'2005-07-12 15:08:28',1174,531,'2005-07-13 14:25:28',2,'2006-02-15 21:30:53'),(6757,'2005-07-12 15:09:48',547,558,'2005-07-17 15:04:48',2,'2006-02-15 21:30:53'),(6758,'2005-07-12 15:13:49',4098,546,'2005-07-20 09:31:49',2,'2006-02-15 21:30:53'),(6759,'2005-07-12 15:14:48',3624,49,'2005-07-15 11:29:48',1,'2006-02-15 21:30:53'),(6760,'2005-07-12 15:16:00',501,502,'2005-07-20 13:20:00',2,'2006-02-15 21:30:53'),(6761,'2005-07-12 15:17:42',3645,7,'2005-07-18 17:59:42',2,'2006-02-15 21:30:53'),(6762,'2005-07-12 15:25:33',3857,262,'2005-07-21 18:57:33',1,'2006-02-15 21:30:53'),(6763,'2005-07-12 15:26:34',3364,314,'2005-07-18 16:38:34',2,'2006-02-15 21:30:53'),(6764,'2005-07-12 15:29:27',4407,396,'2005-07-21 20:00:27',2,'2006-02-15 21:30:53'),(6765,'2005-07-12 15:30:47',2571,433,'2005-07-19 14:19:47',2,'2006-02-15 21:30:53'),(6766,'2005-07-12 15:32:01',3615,171,'2005-07-18 14:03:01',2,'2006-02-15 21:30:53'),(6767,'2005-07-12 15:46:55',1819,208,'2005-07-17 17:36:55',2,'2006-02-15 21:30:53'),(6768,'2005-07-12 15:47:51',3418,151,'2005-07-19 21:17:51',2,'2006-02-15 21:30:53'),(6769,'2005-07-12 15:48:54',1687,63,'2005-07-21 14:39:54',2,'2006-02-15 21:30:53'),(6770,'2005-07-12 15:49:40',2080,360,'2005-07-20 10:14:40',2,'2006-02-15 21:30:53'),(6771,'2005-07-12 15:54:40',1113,396,'2005-07-17 15:56:40',2,'2006-02-15 21:30:53'),(6772,'2005-07-12 15:55:35',3810,89,'2005-07-18 10:47:35',1,'2006-02-15 21:30:53'),(6773,'2005-07-12 15:55:39',3346,12,'2005-07-18 17:52:39',2,'2006-02-15 21:30:53'),(6774,'2005-07-12 15:56:08',868,171,'2005-07-13 18:42:08',1,'2006-02-15 21:30:53'),(6775,'2005-07-12 16:01:44',2909,383,'2005-07-19 14:11:44',1,'2006-02-15 21:30:53'),(6776,'2005-07-12 16:02:09',2398,348,'2005-07-20 16:31:09',1,'2006-02-15 21:30:53'),(6777,'2005-07-12 16:04:40',4089,351,'2005-07-20 15:05:40',2,'2006-02-15 21:30:53'),(6778,'2005-07-12 16:06:00',4503,381,'2005-07-14 21:57:00',2,'2006-02-15 21:30:53'),(6779,'2005-07-12 16:10:50',4468,404,'2005-07-17 14:51:50',2,'2006-02-15 21:30:53'),(6780,'2005-07-12 16:18:12',1255,121,'2005-07-13 17:56:12',2,'2006-02-15 21:30:53'),(6781,'2005-07-12 16:21:47',3783,533,'2005-07-15 19:52:47',1,'2006-02-15 21:30:53'),(6782,'2005-07-12 16:23:25',2742,199,'2005-07-20 18:46:25',2,'2006-02-15 21:30:53'),(6783,'2005-07-12 16:27:56',3633,506,'2005-07-13 12:11:56',2,'2006-02-15 21:30:53'),(6784,'2005-07-12 16:28:49',197,578,'2005-07-15 17:27:49',1,'2006-02-15 21:30:53'),(6785,'2005-07-12 16:30:57',4448,69,'2005-07-18 20:46:57',1,'2006-02-15 21:30:53'),(6786,'2005-07-12 16:32:33',2011,546,'2005-07-16 12:42:33',2,'2006-02-15 21:30:53'),(6787,'2005-07-12 16:33:28',1481,342,'2005-07-18 21:48:28',2,'2006-02-15 21:30:53'),(6788,'2005-07-12 16:33:44',1162,460,'2005-07-20 15:38:44',2,'2006-02-15 21:30:53'),(6789,'2005-07-12 16:34:40',1973,76,'2005-07-14 17:02:40',2,'2006-02-15 21:30:53'),(6790,'2005-07-12 16:34:59',4486,400,'2005-07-17 21:43:59',2,'2006-02-15 21:30:53'),(6791,'2005-07-12 16:35:07',1495,144,'2005-07-20 15:32:07',2,'2006-02-15 21:30:53'),(6792,'2005-07-12 16:37:28',510,571,'2005-07-20 11:20:28',2,'2006-02-15 21:30:53'),(6793,'2005-07-12 16:37:55',103,148,'2005-07-21 16:04:55',2,'2006-02-15 21:30:53'),(6794,'2005-07-12 16:38:23',813,233,'2005-07-20 17:36:23',2,'2006-02-15 21:30:53'),(6795,'2005-07-12 16:41:00',1489,245,'2005-07-21 20:52:00',1,'2006-02-15 21:30:53'),(6796,'2005-07-12 16:44:16',227,291,'2005-07-16 14:48:16',2,'2006-02-15 21:30:53'),(6797,'2005-07-12 16:47:06',1536,469,'2005-07-14 14:38:06',2,'2006-02-15 21:30:53'),(6798,'2005-07-12 16:49:11',275,115,'2005-07-19 12:11:11',2,'2006-02-15 21:30:53'),(6799,'2005-07-12 16:52:13',2778,42,'2005-07-14 15:11:13',2,'2006-02-15 21:30:53'),(6800,'2005-07-12 17:03:56',3742,599,'2005-07-21 20:32:56',2,'2006-02-15 21:30:53'),(6801,'2005-07-12 17:09:08',872,500,'2005-07-21 22:25:08',1,'2006-02-15 21:30:53'),(6802,'2005-07-12 17:14:17',2942,298,'2005-07-17 11:54:17',2,'2006-02-15 21:30:53'),(6803,'2005-07-12 17:21:49',2676,490,'2005-07-14 18:01:49',2,'2006-02-15 21:30:53'),(6804,'2005-07-12 17:22:06',1554,269,'2005-07-21 11:37:06',1,'2006-02-15 21:30:53'),(6805,'2005-07-12 17:23:01',1758,262,'2005-07-21 19:38:01',2,'2006-02-15 21:30:53'),(6806,'2005-07-12 17:31:43',656,179,'2005-07-17 14:36:43',1,'2006-02-15 21:30:53'),(6807,'2005-07-12 17:33:53',669,376,'2005-07-18 16:28:53',2,'2006-02-15 21:30:53'),(6808,'2005-07-12 17:36:42',362,263,'2005-07-18 23:33:42',2,'2006-02-15 21:30:53'),(6809,'2005-07-12 17:51:54',3455,168,'2005-07-17 15:10:54',1,'2006-02-15 21:30:53'),(6810,'2005-07-12 17:54:19',2802,485,'2005-07-20 16:58:19',2,'2006-02-15 21:30:53'),(6811,'2005-07-12 17:54:33',1572,107,'2005-07-20 17:39:33',1,'2006-02-15 21:30:53'),(6812,'2005-07-12 18:03:25',2227,553,'2005-07-20 18:33:25',2,'2006-02-15 21:30:53'),(6813,'2005-07-12 18:03:50',135,54,'2005-07-16 16:30:50',1,'2006-02-15 21:30:53'),(6814,'2005-07-12 18:11:58',1863,579,'2005-07-18 20:37:58',2,'2006-02-15 21:30:53'),(6815,'2005-07-12 18:14:10',3236,468,'2005-07-17 14:16:10',1,'2006-02-15 21:30:53'),(6816,'2005-07-12 18:18:50',2963,290,'2005-07-18 21:09:50',2,'2006-02-15 21:30:53'),(6817,'2005-07-12 18:19:57',184,135,'2005-07-19 22:53:57',1,'2006-02-15 21:30:53'),(6818,'2005-07-12 18:20:54',1013,153,'2005-07-21 00:03:54',2,'2006-02-15 21:30:53'),(6819,'2005-07-12 18:21:01',1253,198,'2005-07-13 21:14:01',1,'2006-02-15 21:30:53'),(6820,'2005-07-12 18:21:30',223,243,'2005-07-14 15:14:30',1,'2006-02-15 21:30:53'),(6821,'2005-07-12 18:22:10',623,363,'2005-07-14 13:25:10',2,'2006-02-15 21:30:53'),(6822,'2005-07-12 18:23:39',1592,300,'2005-07-19 21:06:39',1,'2006-02-15 21:30:53'),(6823,'2005-07-12 18:24:31',795,557,'2005-07-17 23:13:31',1,'2006-02-15 21:30:53'),(6824,'2005-07-12 18:26:46',858,579,'2005-07-21 15:23:46',1,'2006-02-15 21:30:53'),(6825,'2005-07-12 18:28:12',2342,281,'2005-07-15 19:24:12',1,'2006-02-15 21:30:53'),(6826,'2005-07-12 18:32:02',1708,408,'2005-07-16 23:21:02',1,'2006-02-15 21:30:53'),(6827,'2005-07-12 18:33:45',1529,283,'2005-07-13 19:09:45',1,'2006-02-15 21:30:53'),(6828,'2005-07-12 18:38:51',874,502,'2005-07-14 20:10:51',1,'2006-02-15 21:30:53'),(6829,'2005-07-12 18:38:59',4184,361,'2005-07-16 23:25:59',1,'2006-02-15 21:30:53'),(6830,'2005-07-12 18:42:55',1943,578,'2005-07-17 17:58:55',1,'2006-02-15 21:30:53'),(6831,'2005-07-12 18:44:04',924,163,'2005-07-16 21:39:04',2,'2006-02-15 21:30:53'),(6832,'2005-07-12 18:51:41',444,220,'2005-07-20 13:29:41',2,'2006-02-15 21:30:53'),(6833,'2005-07-12 18:53:34',912,301,'2005-07-19 22:21:34',2,'2006-02-15 21:30:53'),(6834,'2005-07-12 18:53:37',897,533,'2005-07-19 13:42:37',1,'2006-02-15 21:30:53'),(6835,'2005-07-12 18:58:03',1444,367,'2005-07-18 00:41:03',1,'2006-02-15 21:30:53'),(6836,'2005-07-12 18:58:05',2744,113,'2005-07-15 17:45:05',1,'2006-02-15 21:30:53'),(6837,'2005-07-12 18:59:45',1203,533,'2005-07-21 22:47:45',2,'2006-02-15 21:30:53'),(6838,'2005-07-12 19:01:30',3492,354,'2005-07-17 23:42:30',1,'2006-02-15 21:30:53'),(6839,'2005-07-12 19:03:19',3900,357,'2005-07-15 23:48:19',1,'2006-02-15 21:30:53'),(6840,'2005-07-12 19:03:22',1381,323,'2005-07-21 18:34:22',2,'2006-02-15 21:30:53'),(6841,'2005-07-12 19:04:24',2265,108,'2005-07-14 23:58:24',1,'2006-02-15 21:30:53'),(6842,'2005-07-12 19:07:55',3376,366,'2005-07-19 22:47:55',1,'2006-02-15 21:30:53'),(6843,'2005-07-12 19:14:05',746,561,'2005-07-20 23:15:05',1,'2006-02-15 21:30:53'),(6844,'2005-07-12 19:14:53',3211,482,'2005-07-18 16:07:53',2,'2006-02-15 21:30:53'),(6845,'2005-07-12 19:20:41',3833,414,'2005-07-14 15:27:41',1,'2006-02-15 21:30:53'),(6846,'2005-07-12 19:20:45',1214,18,'2005-07-17 00:06:45',1,'2006-02-15 21:30:53'),(6847,'2005-07-12 19:22:37',346,63,'2005-07-21 18:53:37',2,'2006-02-15 21:30:53'),(6848,'2005-07-12 19:24:07',1782,433,'2005-07-14 17:03:07',1,'2006-02-15 21:30:53'),(6849,'2005-07-12 19:29:19',4307,479,'2005-07-19 22:03:19',1,'2006-02-15 21:30:53'),(6850,'2005-07-12 19:30:42',1145,433,'2005-07-17 21:26:42',2,'2006-02-15 21:30:53'),(6851,'2005-07-12 19:32:14',664,280,'2005-07-17 21:03:14',1,'2006-02-15 21:30:53'),(6852,'2005-07-12 19:33:49',2182,75,'2005-07-13 20:01:49',2,'2006-02-15 21:30:53'),(6853,'2005-07-12 19:38:11',4006,299,'2005-07-20 00:14:11',1,'2006-02-15 21:30:53'),(6854,'2005-07-12 19:38:57',3173,151,'2005-07-16 16:28:57',1,'2006-02-15 21:30:53'),(6855,'2005-07-12 19:46:29',2657,24,'2005-07-15 16:56:29',2,'2006-02-15 21:30:53'),(6856,'2005-07-12 19:50:16',4338,275,'2005-07-14 22:25:16',1,'2006-02-15 21:30:53'),(6857,'2005-07-12 19:53:30',424,196,'2005-07-13 15:22:30',1,'2006-02-15 21:30:53'),(6858,'2005-07-12 19:53:51',1095,516,'2005-07-19 14:12:51',1,'2006-02-15 21:30:53'),(6859,'2005-07-12 19:53:57',4108,321,'2005-07-17 19:48:57',2,'2006-02-15 21:30:53'),(6860,'2005-07-12 19:54:17',2907,91,'2005-07-18 13:59:17',1,'2006-02-15 21:30:53'),(6861,'2005-07-12 19:56:52',354,83,'2005-07-13 16:02:52',1,'2006-02-15 21:30:53'),(6862,'2005-07-12 19:58:09',3477,231,'2005-07-18 15:48:09',2,'2006-02-15 21:30:53'),(6863,'2005-07-12 19:58:34',229,484,'2005-07-21 16:57:34',1,'2006-02-15 21:30:53'),(6864,'2005-07-12 19:59:25',2252,38,'2005-07-19 15:52:25',2,'2006-02-15 21:30:53'),(6865,'2005-07-12 20:02:40',1428,175,'2005-07-20 00:39:40',2,'2006-02-15 21:30:53'),(6866,'2005-07-12 20:03:44',2481,312,'2005-07-15 01:55:44',1,'2006-02-15 21:30:53'),(6867,'2005-07-12 20:06:47',3354,190,'2005-07-19 16:59:47',1,'2006-02-15 21:30:53'),(6868,'2005-07-12 20:10:17',719,306,'2005-07-15 22:34:17',2,'2006-02-15 21:30:53'),(6869,'2005-07-12 20:12:06',3546,278,'2005-07-13 18:37:06',1,'2006-02-15 21:30:53'),(6870,'2005-07-12 20:13:45',3102,13,'2005-07-16 22:09:45',2,'2006-02-15 21:30:53'),(6871,'2005-07-12 20:13:49',3612,204,'2005-07-14 20:11:49',2,'2006-02-15 21:30:53'),(6872,'2005-07-12 20:15:04',3246,86,'2005-07-18 18:19:04',1,'2006-02-15 21:30:53'),(6873,'2005-07-12 20:20:50',802,161,'2005-07-17 01:51:50',1,'2006-02-15 21:30:53'),(6874,'2005-07-12 20:20:53',4478,539,'2005-07-19 19:41:53',1,'2006-02-15 21:30:53'),(6875,'2005-07-12 20:23:05',3420,172,'2005-07-19 00:09:05',2,'2006-02-15 21:30:53'),(6876,'2005-07-12 20:32:50',34,531,'2005-07-16 21:12:50',1,'2006-02-15 21:30:53'),(6877,'2005-07-12 20:32:58',3968,231,'2005-07-18 18:01:58',1,'2006-02-15 21:30:53'),(6878,'2005-07-12 20:37:13',2428,363,'2005-07-19 20:13:13',2,'2006-02-15 21:30:53'),(6879,'2005-07-12 20:37:37',1901,416,'2005-07-20 15:40:37',2,'2006-02-15 21:30:53'),(6880,'2005-07-12 20:41:35',1473,229,'2005-07-17 02:22:35',1,'2006-02-15 21:30:53'),(6881,'2005-07-12 20:46:35',2496,346,'2005-07-21 00:26:35',2,'2006-02-15 21:30:53'),(6882,'2005-07-12 20:50:39',2469,166,'2005-07-14 21:01:39',1,'2006-02-15 21:30:53'),(6883,'2005-07-12 20:50:48',468,596,'2005-07-19 16:00:48',2,'2006-02-15 21:30:53'),(6884,'2005-07-12 20:52:41',3642,17,'2005-07-20 23:13:41',1,'2006-02-15 21:30:53'),(6885,'2005-07-12 20:56:04',3972,159,'2005-07-15 19:21:04',2,'2006-02-15 21:30:53'),(6886,'2005-07-12 20:58:04',4533,429,'2005-07-18 16:56:04',2,'2006-02-15 21:30:53'),(6887,'2005-07-12 21:00:23',4487,542,'2005-07-21 17:46:23',1,'2006-02-15 21:30:53'),(6888,'2005-07-12 21:01:11',1896,490,'2005-07-17 21:49:11',2,'2006-02-15 21:30:53'),(6889,'2005-07-12 21:01:22',2919,198,'2005-07-20 20:16:22',2,'2006-02-15 21:30:53'),(6890,'2005-07-12 21:03:03',2538,473,'2005-07-14 00:47:03',1,'2006-02-15 21:30:53'),(6891,'2005-07-12 21:07:35',3189,507,'2005-07-14 16:59:35',2,'2006-02-15 21:30:53'),(6892,'2005-07-12 21:10:04',1567,138,'2005-07-13 23:03:04',2,'2006-02-15 21:30:53'),(6893,'2005-07-12 21:20:11',2611,377,'2005-07-21 18:55:11',2,'2006-02-15 21:30:53'),(6894,'2005-07-12 21:20:50',1347,315,'2005-07-20 23:42:50',2,'2006-02-15 21:30:53'),(6895,'2005-07-12 21:23:59',2935,599,'2005-07-19 20:47:59',2,'2006-02-15 21:30:53'),(6896,'2005-07-12 21:25:37',1266,111,'2005-07-20 23:51:37',1,'2006-02-15 21:30:53'),(6897,'2005-07-12 21:30:41',170,13,'2005-07-15 03:19:41',1,'2006-02-15 21:30:53'),(6898,'2005-07-12 21:39:04',1725,557,'2005-07-15 20:30:04',1,'2006-02-15 21:30:53'),(6899,'2005-07-12 21:44:16',3565,483,'2005-07-21 22:21:16',2,'2006-02-15 21:30:53'),(6900,'2005-07-12 21:45:25',129,292,'2005-07-19 21:19:25',1,'2006-02-15 21:30:53'),(6901,'2005-07-12 21:46:33',4574,158,'2005-07-16 21:36:33',1,'2006-02-15 21:30:53'),(6902,'2005-07-12 21:57:16',314,485,'2005-07-14 20:56:16',1,'2006-02-15 21:30:53'),(6903,'2005-07-12 21:58:15',3690,517,'2005-07-14 01:38:15',2,'2006-02-15 21:30:53'),(6904,'2005-07-12 22:02:09',2312,465,'2005-07-17 16:42:09',1,'2006-02-15 21:30:53'),(6905,'2005-07-12 22:02:18',763,25,'2005-07-18 23:30:18',1,'2006-02-15 21:30:53'),(6906,'2005-07-12 22:03:02',1435,335,'2005-07-15 00:35:02',1,'2006-02-15 21:30:53'),(6907,'2005-07-12 22:03:49',2516,575,'2005-07-18 19:18:49',1,'2006-02-15 21:30:53'),(6908,'2005-07-12 22:08:46',3161,529,'2005-07-21 00:21:46',2,'2006-02-15 21:30:53'),(6909,'2005-07-12 22:09:30',769,174,'2005-07-17 02:05:30',2,'2006-02-15 21:30:53'),(6910,'2005-07-12 22:11:21',1290,546,'2005-07-21 02:35:21',1,'2006-02-15 21:30:53'),(6911,'2005-07-12 22:14:34',901,361,'2005-07-18 20:17:34',1,'2006-02-15 21:30:53'),(6912,'2005-07-12 22:17:16',1701,471,'2005-07-19 18:18:16',1,'2006-02-15 21:30:53'),(6913,'2005-07-12 22:18:12',569,443,'2005-07-14 23:03:12',2,'2006-02-15 21:30:53'),(6914,'2005-07-12 22:26:56',496,361,'2005-07-17 20:03:56',1,'2006-02-15 21:30:53'),(6915,'2005-07-12 22:28:09',1243,559,'2005-07-14 00:53:09',1,'2006-02-15 21:30:53'),(6916,'2005-07-12 22:29:18',3311,88,'2005-07-19 16:46:18',1,'2006-02-15 21:30:53'),(6917,'2005-07-12 22:30:15',3048,23,'2005-07-20 03:20:15',1,'2006-02-15 21:30:53'),(6918,'2005-07-12 22:30:29',4085,140,'2005-07-19 22:51:29',1,'2006-02-15 21:30:53'),(6919,'2005-07-12 22:32:17',1122,540,'2005-07-18 20:09:17',1,'2006-02-15 21:30:53'),(6920,'2005-07-12 22:32:58',2301,109,'2005-07-19 20:29:58',2,'2006-02-15 21:30:53'),(6921,'2005-07-12 22:39:03',3322,265,'2005-07-21 18:54:03',2,'2006-02-15 21:30:53'),(6922,'2005-07-12 22:39:48',1114,371,'2005-07-14 18:35:48',1,'2006-02-15 21:30:53'),(6923,'2005-07-12 22:40:48',2642,490,'2005-07-19 23:07:48',2,'2006-02-15 21:30:53'),(6924,'2005-07-26 22:51:53',1257,502,'2005-08-03 19:04:53',2,'2006-02-15 21:30:53'),(6925,'2005-07-26 22:52:32',2919,42,'2005-07-29 21:22:32',1,'2006-02-15 21:30:53'),(6926,'2005-07-26 22:52:45',1276,354,'2005-07-28 18:32:45',1,'2006-02-15 21:30:53'),(6927,'2005-07-26 22:56:00',4511,470,'2005-08-05 03:16:00',2,'2006-02-15 21:30:53'),(6928,'2005-07-26 22:56:21',3605,487,'2005-07-30 04:46:21',1,'2006-02-15 21:30:53'),(6929,'2005-07-26 22:59:19',3339,508,'2005-08-03 22:40:19',1,'2006-02-15 21:30:53'),(6930,'2005-07-26 23:00:01',2989,393,'2005-08-04 01:57:01',2,'2006-02-15 21:30:53'),(6931,'2005-07-26 23:02:57',2794,333,'2005-07-28 04:48:57',2,'2006-02-15 21:30:53'),(6932,'2005-07-26 23:08:04',4517,463,'2005-08-05 01:35:04',1,'2006-02-15 21:30:53'),(6933,'2005-07-26 23:09:23',1334,385,'2005-07-31 20:50:23',1,'2006-02-15 21:30:53'),(6934,'2005-07-26 23:11:03',455,107,'2005-08-04 19:18:03',1,'2006-02-15 21:30:53'),(6935,'2005-07-26 23:13:10',2771,435,'2005-07-27 18:09:10',1,'2006-02-15 21:30:53'),(6936,'2005-07-26 23:13:34',60,538,'2005-07-30 19:14:34',1,'2006-02-15 21:30:53'),(6937,'2005-07-26 23:15:50',1768,592,'2005-07-27 19:14:50',1,'2006-02-15 21:30:53'),(6938,'2005-07-26 23:16:04',2058,427,'2005-08-05 00:59:04',2,'2006-02-15 21:30:53'),(6939,'2005-07-26 23:17:51',278,354,'2005-08-03 21:12:51',2,'2006-02-15 21:30:53'),(6940,'2005-07-26 23:18:35',3876,149,'2005-08-05 01:44:35',2,'2006-02-15 21:30:53'),(6941,'2005-07-26 23:18:49',1575,441,'2005-07-31 00:23:49',2,'2006-02-15 21:30:53'),(6942,'2005-07-26 23:27:40',1203,470,'2005-07-31 03:17:40',2,'2006-02-15 21:30:53'),(6943,'2005-07-26 23:28:13',2436,21,'2005-07-30 02:22:13',2,'2006-02-15 21:30:53'),(6944,'2005-07-26 23:34:02',1168,373,'2005-08-05 01:27:02',1,'2006-02-15 21:30:53'),(6945,'2005-07-26 23:35:29',1627,560,'2005-07-28 00:12:29',1,'2006-02-15 21:30:53'),(6946,'2005-07-26 23:40:07',1854,181,'2005-08-04 01:18:07',2,'2006-02-15 21:30:53'),(6947,'2005-07-26 23:42:03',760,200,'2005-08-02 05:06:03',2,'2006-02-15 21:30:53'),(6948,'2005-07-26 23:43:49',3088,228,'2005-07-27 21:24:49',2,'2006-02-15 21:30:53'),(6949,'2005-07-26 23:44:12',1594,103,'2005-07-30 05:39:12',2,'2006-02-15 21:30:53'),(6950,'2005-07-26 23:45:33',197,503,'2005-07-31 04:40:33',2,'2006-02-15 21:30:53'),(6951,'2005-07-26 23:47:31',3348,98,'2005-07-31 22:17:31',1,'2006-02-15 21:30:53'),(6952,'2005-07-26 23:51:27',4288,290,'2005-07-30 02:45:27',2,'2006-02-15 21:30:53'),(6953,'2005-07-26 23:52:47',2910,306,'2005-07-30 23:07:47',1,'2006-02-15 21:30:53'),(6954,'2005-07-26 23:55:13',1112,584,'2005-07-28 19:01:13',2,'2006-02-15 21:30:53'),(6955,'2005-07-26 23:55:48',1104,469,'2005-08-02 03:25:48',2,'2006-02-15 21:30:53'),(6956,'2005-07-26 23:55:57',2499,240,'2005-08-03 21:41:57',1,'2006-02-15 21:30:53'),(6957,'2005-07-27 00:00:00',2231,518,'2005-07-29 19:32:00',2,'2006-02-15 21:30:53'),(6958,'2005-07-27 00:02:41',657,333,'2005-07-28 00:53:41',2,'2006-02-15 21:30:53'),(6959,'2005-07-27 00:07:51',1618,452,'2005-07-27 20:45:51',2,'2006-02-15 21:30:53'),(6960,'2005-07-27 00:08:33',192,421,'2005-08-03 20:58:33',2,'2006-02-15 21:30:53'),(6961,'2005-07-27 00:10:49',2205,38,'2005-07-30 00:26:49',2,'2006-02-15 21:30:53'),(6962,'2005-07-27 00:10:58',4500,245,'2005-07-30 02:11:58',2,'2006-02-15 21:30:53'),(6963,'2005-07-27 00:13:02',4284,489,'2005-08-03 18:13:02',1,'2006-02-15 21:30:53'),(6964,'2005-07-27 00:15:04',1537,404,'2005-07-31 00:04:04',2,'2006-02-15 21:30:53'),(6965,'2005-07-27 00:15:18',74,185,'2005-07-28 04:30:18',2,'2006-02-15 21:30:53'),(6966,'2005-07-27 00:15:35',1577,45,'2005-08-05 03:04:35',2,'2006-02-15 21:30:53'),(6967,'2005-07-27 00:16:31',1145,296,'2005-08-03 22:19:31',1,'2006-02-15 21:30:53'),(6968,'2005-07-27 00:16:45',1662,370,'2005-07-30 23:16:45',2,'2006-02-15 21:30:53'),(6969,'2005-07-27 00:23:54',2650,579,'2005-08-03 04:34:54',1,'2006-02-15 21:30:53'),(6970,'2005-07-27 00:26:14',17,418,'2005-08-03 20:00:14',2,'2006-02-15 21:30:53'),(6971,'2005-07-27 00:26:17',3493,366,'2005-08-01 03:59:17',2,'2006-02-15 21:30:53'),(6972,'2005-07-27 00:31:25',1716,434,'2005-07-28 22:15:25',2,'2006-02-15 21:30:53'),(6973,'2005-07-27 00:32:04',4572,564,'2005-07-29 01:05:04',2,'2006-02-15 21:30:53'),(6974,'2005-07-27 00:39:16',2924,122,'2005-08-04 01:59:16',2,'2006-02-15 21:30:53'),(6975,'2005-07-27 00:39:54',3328,527,'2005-08-02 19:49:54',1,'2006-02-15 21:30:53'),(6976,'2005-07-27 00:40:01',3096,41,'2005-07-31 22:30:01',2,'2006-02-15 21:30:53'),(6977,'2005-07-27 00:40:50',3545,429,'2005-08-02 19:08:50',2,'2006-02-15 21:30:53'),(6978,'2005-07-27 00:47:40',3645,132,'2005-07-31 04:32:40',2,'2006-02-15 21:30:53'),(6979,'2005-07-27 00:49:53',1001,141,'2005-07-31 03:59:53',2,'2006-02-15 21:30:53'),(6980,'2005-07-27 00:50:30',1127,164,'2005-08-03 23:35:30',1,'2006-02-15 21:30:53'),(6981,'2005-07-27 00:51:38',154,362,'2005-07-28 01:06:38',2,'2006-02-15 21:30:53'),(6982,'2005-07-27 00:53:41',3843,284,'2005-07-31 06:19:41',2,'2006-02-15 21:30:53'),(6983,'2005-07-27 00:55:03',1758,443,'2005-08-01 21:19:03',2,'2006-02-15 21:30:53'),(6984,'2005-07-27 00:56:30',2407,297,'2005-08-02 01:14:30',2,'2006-02-15 21:30:53'),(6985,'2005-07-27 00:57:42',1834,448,'2005-07-31 00:53:42',1,'2006-02-15 21:30:53'),(6986,'2005-07-27 00:59:05',2104,262,'2005-07-29 00:31:05',1,'2006-02-15 21:30:53'),(6987,'2005-07-27 00:59:50',3134,334,'2005-07-28 01:47:50',1,'2006-02-15 21:30:53'),(6988,'2005-07-27 01:00:08',756,316,'2005-07-31 04:35:08',2,'2006-02-15 21:30:53'),(6989,'2005-07-27 01:00:34',4036,120,'2005-07-30 23:53:34',1,'2006-02-15 21:30:53'),(6990,'2005-07-27 01:02:46',4065,146,'2005-07-31 00:22:46',1,'2006-02-15 21:30:53'),(6991,'2005-07-27 01:03:06',319,307,'2005-08-05 04:18:06',2,'2006-02-15 21:30:53'),(6992,'2005-07-27 01:04:45',3411,106,'2005-07-28 02:34:45',2,'2006-02-15 21:30:53'),(6993,'2005-07-27 01:05:24',3114,154,'2005-07-30 06:23:24',2,'2006-02-15 21:30:53'),(6994,'2005-07-27 01:08:26',4316,400,'2005-08-04 22:58:26',2,'2006-02-15 21:30:53'),(6995,'2005-07-27 01:12:13',1630,66,'2005-07-29 21:26:13',1,'2006-02-15 21:30:53'),(6996,'2005-07-27 01:13:45',3237,236,'2005-07-28 20:43:45',1,'2006-02-15 21:30:53'),(6997,'2005-07-27 01:14:02',2130,342,'2005-07-29 01:12:02',2,'2006-02-15 21:30:53'),(6998,'2005-07-27 01:16:29',788,300,'2005-07-30 05:50:29',2,'2006-02-15 21:30:53'),(6999,'2005-07-27 01:21:19',12,224,'2005-07-29 20:33:19',2,'2006-02-15 21:30:53'),(7000,'2005-07-27 01:23:24',2024,31,'2005-08-03 02:10:24',2,'2006-02-15 21:30:53'),(7001,'2005-07-27 01:25:34',1460,240,'2005-07-31 23:30:34',2,'2006-02-15 21:30:53'),(7002,'2005-07-27 01:26:14',4157,349,'2005-08-01 20:10:14',1,'2006-02-15 21:30:53'),(7003,'2005-07-27 01:32:06',636,161,'2005-07-30 21:33:06',2,'2006-02-15 21:30:53'),(7004,'2005-07-27 01:36:05',4416,314,'2005-08-03 23:46:05',1,'2006-02-15 21:30:53'),(7005,'2005-07-27 01:38:36',2438,446,'2005-08-02 05:56:36',2,'2006-02-15 21:30:53'),(7006,'2005-07-27 01:42:20',3522,264,'2005-08-03 03:19:20',1,'2006-02-15 21:30:53'),(7007,'2005-07-27 01:43:39',4186,257,'2005-07-31 21:04:39',1,'2006-02-15 21:30:53'),(7008,'2005-07-27 01:44:03',3659,12,'2005-07-28 21:19:03',2,'2006-02-15 21:30:53'),(7009,'2005-07-27 01:45:44',1585,414,'2005-07-28 05:50:44',1,'2006-02-15 21:30:53'),(7010,'2005-07-27 01:56:01',3016,590,'2005-07-30 04:40:01',1,'2006-02-15 21:30:53'),(7011,'2005-07-27 01:58:34',4082,254,'2005-07-28 06:11:34',1,'2006-02-15 21:30:53'),(7012,'2005-07-27 02:01:03',779,239,'2005-08-05 07:34:03',2,'2006-02-15 21:30:53'),(7013,'2005-07-27 02:03:21',3919,463,'2005-07-31 22:12:21',1,'2006-02-15 21:30:53'),(7014,'2005-07-27 02:14:40',714,524,'2005-08-03 00:32:40',2,'2006-02-15 21:30:53'),(7015,'2005-07-27 02:15:01',376,34,'2005-07-28 07:46:01',2,'2006-02-15 21:30:53'),(7016,'2005-07-27 02:15:16',1425,423,'2005-08-01 23:08:16',2,'2006-02-15 21:30:53'),(7017,'2005-07-27 02:16:03',753,176,'2005-07-31 07:49:03',1,'2006-02-15 21:30:53'),(7018,'2005-07-27 02:20:22',1078,451,'2005-08-02 05:04:22',2,'2006-02-15 21:30:53'),(7019,'2005-07-27 02:20:26',3837,491,'2005-08-02 22:48:26',1,'2006-02-15 21:30:53'),(7020,'2005-07-27 02:24:27',3965,506,'2005-07-29 01:27:27',2,'2006-02-15 21:30:53'),(7021,'2005-07-27 02:26:38',2690,380,'2005-08-05 01:18:38',1,'2006-02-15 21:30:53'),(7022,'2005-07-27 02:31:15',1711,243,'2005-07-29 02:52:15',1,'2006-02-15 21:30:53'),(7023,'2005-07-27 02:32:44',4196,303,'2005-08-03 04:06:44',1,'2006-02-15 21:30:53'),(7024,'2005-07-27 02:36:40',3113,252,'2005-07-28 06:58:40',1,'2006-02-15 21:30:53'),(7025,'2005-07-27 02:40:29',3530,176,'2005-07-29 23:02:29',2,'2006-02-15 21:30:53'),(7026,'2005-07-27 02:48:58',3456,493,'2005-07-29 03:41:58',2,'2006-02-15 21:30:53'),(7027,'2005-07-27 02:50:15',3280,61,'2005-08-04 02:58:15',1,'2006-02-15 21:30:53'),(7028,'2005-07-27 02:54:25',834,179,'2005-08-02 06:16:25',2,'2006-02-15 21:30:53'),(7029,'2005-07-27 02:57:43',2862,389,'2005-07-30 08:24:43',1,'2006-02-15 21:30:53'),(7030,'2005-07-27 03:01:40',1277,550,'2005-07-31 07:01:40',1,'2006-02-15 21:30:53'),(7031,'2005-07-27 03:02:07',1435,530,'2005-08-02 07:14:07',1,'2006-02-15 21:30:53'),(7032,'2005-07-27 03:03:09',3397,269,'2005-07-28 22:57:09',1,'2006-02-15 21:30:53'),(7033,'2005-07-27 03:03:25',2803,352,'2005-07-28 01:57:25',2,'2006-02-15 21:30:53'),(7034,'2005-07-27 03:03:37',1712,281,'2005-07-28 23:18:37',1,'2006-02-15 21:30:53'),(7035,'2005-07-27 03:06:09',2439,90,'2005-08-02 21:59:09',2,'2006-02-15 21:30:53'),(7036,'2005-07-27 03:06:12',2569,70,'2005-07-28 23:26:12',2,'2006-02-15 21:30:53'),(7037,'2005-07-27 03:06:44',3155,171,'2005-08-02 04:51:44',2,'2006-02-15 21:30:53'),(7038,'2005-07-27 03:07:29',1909,518,'2005-07-31 04:55:29',2,'2006-02-15 21:30:53'),(7039,'2005-07-27 03:11:48',1906,99,'2005-08-01 23:55:48',1,'2006-02-15 21:30:53'),(7040,'2005-07-27 03:17:19',470,524,'2005-07-29 07:03:19',2,'2006-02-15 21:30:53'),(7041,'2005-07-27 03:18:32',4212,379,'2005-07-30 06:40:32',2,'2006-02-15 21:30:53'),(7042,'2005-07-27 03:20:18',399,188,'2005-08-01 02:23:18',1,'2006-02-15 21:30:53'),(7043,'2005-07-27 03:24:23',3422,493,'2005-08-05 02:55:23',2,'2006-02-15 21:30:53'),(7044,'2005-07-27 03:27:29',88,147,'2005-08-01 07:00:29',2,'2006-02-15 21:30:53'),(7045,'2005-07-27 03:27:35',1788,64,'2005-08-01 06:31:35',2,'2006-02-15 21:30:53'),(7046,'2005-07-27 03:27:56',3740,349,'2005-07-30 00:54:56',2,'2006-02-15 21:30:53'),(7047,'2005-07-27 03:31:11',2866,236,'2005-08-03 23:40:11',1,'2006-02-15 21:30:53'),(7048,'2005-07-27 03:31:48',3707,581,'2005-08-05 07:30:48',2,'2006-02-15 21:30:53'),(7049,'2005-07-27 03:32:41',3043,332,'2005-08-04 08:32:41',2,'2006-02-15 21:30:53'),(7050,'2005-07-27 03:33:17',1135,55,'2005-08-02 03:12:17',1,'2006-02-15 21:30:53'),(7051,'2005-07-27 03:34:37',1310,184,'2005-07-31 03:48:37',2,'2006-02-15 21:30:53'),(7052,'2005-07-27 03:36:38',3798,75,'2005-08-03 21:51:38',1,'2006-02-15 21:30:53'),(7053,'2005-07-27 03:38:54',149,408,'2005-07-31 01:13:54',1,'2006-02-15 21:30:53'),(7054,'2005-07-27 03:43:28',2661,179,'2005-08-04 09:15:28',1,'2006-02-15 21:30:53'),(7055,'2005-07-27 03:45:42',4305,154,'2005-07-30 05:11:42',1,'2006-02-15 21:30:53'),(7056,'2005-07-27 03:46:27',805,233,'2005-08-05 07:46:27',1,'2006-02-15 21:30:53'),(7057,'2005-07-27 03:50:03',1196,320,'2005-08-04 04:36:03',1,'2006-02-15 21:30:53'),(7058,'2005-07-27 03:50:46',716,90,'2005-08-04 07:40:46',2,'2006-02-15 21:30:53'),(7059,'2005-07-27 03:51:02',129,578,'2005-08-02 22:04:02',1,'2006-02-15 21:30:53'),(7060,'2005-07-27 03:51:04',3912,479,'2005-08-03 07:53:04',1,'2006-02-15 21:30:53'),(7061,'2005-07-27 03:51:10',880,145,'2005-07-31 05:36:10',1,'2006-02-15 21:30:53'),(7062,'2005-07-27 03:52:01',226,469,'2005-08-03 08:26:01',1,'2006-02-15 21:30:53'),(7063,'2005-07-27 03:52:27',2125,58,'2005-08-04 07:53:27',1,'2006-02-15 21:30:53'),(7064,'2005-07-27 03:53:29',4204,320,'2005-08-03 06:32:29',1,'2006-02-15 21:30:53'),(7065,'2005-07-27 03:53:43',3570,536,'2005-07-30 23:41:43',2,'2006-02-15 21:30:53'),(7066,'2005-07-27 03:53:52',1862,185,'2005-08-05 03:32:52',1,'2006-02-15 21:30:53'),(7067,'2005-07-27 03:55:10',870,60,'2005-08-01 02:56:10',1,'2006-02-15 21:30:53'),(7068,'2005-07-27 03:57:50',4465,568,'2005-07-30 04:27:50',1,'2006-02-15 21:30:53'),(7069,'2005-07-27 03:59:35',2073,343,'2005-08-05 03:33:35',1,'2006-02-15 21:30:53'),(7070,'2005-07-27 04:01:08',4182,280,'2005-07-30 08:10:08',2,'2006-02-15 21:30:53'),(7071,'2005-07-27 04:01:15',4361,61,'2005-08-03 05:18:15',2,'2006-02-15 21:30:53'),(7072,'2005-07-27 04:02:33',3899,260,'2005-07-28 09:26:33',2,'2006-02-15 21:30:53'),(7073,'2005-07-27 04:03:26',3859,92,'2005-08-03 05:50:26',1,'2006-02-15 21:30:53'),(7074,'2005-07-27 04:06:24',1390,165,'2005-07-28 02:04:24',1,'2006-02-15 21:30:53'),(7075,'2005-07-27 04:11:40',4414,530,'2005-08-03 08:16:40',2,'2006-02-15 21:30:53'),(7076,'2005-07-27 04:12:14',2821,333,'2005-08-05 00:44:14',1,'2006-02-15 21:30:53'),(7077,'2005-07-27 04:13:02',3186,155,'2005-07-31 23:15:02',1,'2006-02-15 21:30:53'),(7078,'2005-07-27 04:16:37',4518,545,'2005-08-05 02:34:37',1,'2006-02-15 21:30:53'),(7079,'2005-07-27 04:21:58',4356,356,'2005-08-04 08:08:58',1,'2006-02-15 21:30:53'),(7080,'2005-07-27 04:25:25',710,466,'2005-08-04 04:22:25',2,'2006-02-15 21:30:53'),(7081,'2005-07-27 04:25:59',462,420,'2005-08-01 00:14:59',1,'2006-02-15 21:30:53'),(7082,'2005-07-27 04:27:32',2032,64,'2005-07-30 06:06:32',2,'2006-02-15 21:30:53'),(7083,'2005-07-27 04:28:39',2663,575,'2005-07-30 04:35:39',2,'2006-02-15 21:30:53'),(7084,'2005-07-27 04:34:07',785,32,'2005-08-05 00:21:07',2,'2006-02-15 21:30:53'),(7085,'2005-07-27 04:35:44',2603,223,'2005-08-05 07:10:44',2,'2006-02-15 21:30:53'),(7086,'2005-07-27 04:39:46',2938,595,'2005-08-05 00:32:46',2,'2006-02-15 21:30:53'),(7087,'2005-07-27 04:42:08',1159,22,'2005-08-02 00:53:08',1,'2006-02-15 21:30:53'),(7088,'2005-07-27 04:42:28',373,88,'2005-08-04 07:09:28',2,'2006-02-15 21:30:53'),(7089,'2005-07-27 04:43:42',1380,446,'2005-07-30 10:04:42',1,'2006-02-15 21:30:53'),(7090,'2005-07-27 04:43:53',3495,218,'2005-07-29 07:33:53',2,'2006-02-15 21:30:53'),(7091,'2005-07-27 04:44:10',2593,322,'2005-07-31 07:14:10',1,'2006-02-15 21:30:53'),(7092,'2005-07-27 04:46:00',1433,345,'2005-08-03 07:22:00',2,'2006-02-15 21:30:53'),(7093,'2005-07-27 04:47:00',3065,574,'2005-07-31 10:15:00',1,'2006-02-15 21:30:53'),(7094,'2005-07-27 04:47:33',867,373,'2005-07-31 04:07:33',2,'2006-02-15 21:30:53'),(7095,'2005-07-27 04:51:15',1008,551,'2005-08-05 10:25:15',2,'2006-02-15 21:30:53'),(7096,'2005-07-27 04:54:42',2575,3,'2005-08-03 01:42:42',2,'2006-02-15 21:30:53'),(7097,'2005-07-27 04:56:09',258,487,'2005-07-31 05:47:09',1,'2006-02-15 21:30:53'),(7098,'2005-07-27 05:01:08',2555,359,'2005-08-02 07:49:08',2,'2006-02-15 21:30:53'),(7099,'2005-07-27 05:03:44',3136,6,'2005-07-29 00:12:44',2,'2006-02-15 21:30:53'),(7100,'2005-07-27 05:05:01',4224,413,'2005-07-28 23:12:01',2,'2006-02-15 21:30:53'),(7101,'2005-07-27 05:06:34',2006,221,'2005-07-29 06:12:34',1,'2006-02-15 21:30:53'),(7102,'2005-07-27 05:07:21',1081,411,'2005-08-01 09:41:21',2,'2006-02-15 21:30:53'),(7103,'2005-07-27 05:08:59',1697,403,'2005-07-29 03:42:59',2,'2006-02-15 21:30:53'),(7104,'2005-07-27 05:15:25',118,217,'2005-08-01 05:36:25',2,'2006-02-15 21:30:53'),(7105,'2005-07-27 05:15:37',864,15,'2005-07-28 05:49:37',2,'2006-02-15 21:30:53'),(7106,'2005-07-27 05:21:24',1415,201,'2005-08-02 01:58:24',2,'2006-02-15 21:30:53'),(7107,'2005-07-27 05:22:04',1883,104,'2005-08-02 06:38:04',1,'2006-02-15 21:30:53'),(7108,'2005-07-27 05:28:32',2720,355,'2005-07-31 07:52:32',1,'2006-02-15 21:30:53'),(7109,'2005-07-27 05:28:57',1658,406,'2005-08-04 10:41:57',2,'2006-02-15 21:30:53'),(7110,'2005-07-27 05:30:48',3289,157,'2005-07-28 01:43:48',1,'2006-02-15 21:30:53'),(7111,'2005-07-27 05:38:16',1252,473,'2005-07-29 04:28:16',2,'2006-02-15 21:30:53'),(7112,'2005-07-27 05:38:42',4056,101,'2005-08-03 05:35:42',1,'2006-02-15 21:30:53'),(7113,'2005-07-27 05:41:20',1963,534,'2005-07-30 04:50:20',1,'2006-02-15 21:30:53'),(7114,'2005-07-27 05:42:13',3892,121,'2005-07-29 01:59:13',1,'2006-02-15 21:30:53'),(7115,'2005-07-27 05:42:58',3620,359,'2005-08-02 05:35:58',2,'2006-02-15 21:30:53'),(7116,'2005-07-27 05:46:43',1755,209,'2005-08-05 05:54:43',1,'2006-02-15 21:30:53'),(7117,'2005-07-27 05:48:36',2772,326,'2005-08-01 00:33:36',1,'2006-02-15 21:30:53'),(7118,'2005-07-27 05:53:50',582,591,'2005-08-05 04:19:50',2,'2006-02-15 21:30:53'),(7119,'2005-07-27 05:55:32',1732,102,'2005-07-29 03:19:32',1,'2006-02-15 21:30:53'),(7120,'2005-07-27 05:56:39',416,98,'2005-08-04 10:57:39',1,'2006-02-15 21:30:53'),(7121,'2005-07-27 05:58:32',1264,252,'2005-07-29 06:14:32',1,'2006-02-15 21:30:53'),(7122,'2005-07-27 06:03:18',1699,172,'2005-08-04 10:43:18',2,'2006-02-15 21:30:53'),(7123,'2005-07-27 06:08:48',134,232,'2005-08-04 05:26:48',1,'2006-02-15 21:30:53'),(7124,'2005-07-27 06:09:30',3449,34,'2005-08-02 09:31:30',1,'2006-02-15 21:30:53'),(7125,'2005-07-27 06:11:00',801,460,'2005-08-04 09:41:00',2,'2006-02-15 21:30:53'),(7126,'2005-07-27 06:13:13',3240,582,'2005-07-28 08:22:13',2,'2006-02-15 21:30:53'),(7127,'2005-07-27 06:13:48',273,486,'2005-08-01 02:50:48',2,'2006-02-15 21:30:53'),(7128,'2005-07-27 06:14:36',143,529,'2005-08-02 05:18:36',1,'2006-02-15 21:30:53'),(7129,'2005-07-27 06:18:01',1930,221,'2005-07-28 02:38:01',1,'2006-02-15 21:30:53'),(7130,'2005-07-27 06:23:36',420,81,'2005-07-28 10:23:36',1,'2006-02-15 21:30:53'),(7131,'2005-07-27 06:25:06',2832,585,'2005-07-31 09:07:06',1,'2006-02-15 21:30:53'),(7132,'2005-07-27 06:28:34',3201,227,'2005-08-05 06:02:34',2,'2006-02-15 21:30:53'),(7133,'2005-07-27 06:29:23',2995,496,'2005-07-29 03:20:23',2,'2006-02-15 21:30:53'),(7134,'2005-07-27 06:33:06',1058,574,'2005-07-28 06:15:06',1,'2006-02-15 21:30:53'),(7135,'2005-07-27 06:34:32',2959,172,'2005-07-28 03:01:32',1,'2006-02-15 21:30:53'),(7136,'2005-07-27 06:38:25',1929,6,'2005-08-03 05:13:25',1,'2006-02-15 21:30:53'),(7137,'2005-07-27 06:40:41',3957,483,'2005-07-29 09:05:41',2,'2006-02-15 21:30:53'),(7138,'2005-07-27 06:47:13',1418,31,'2005-08-03 01:12:13',2,'2006-02-15 21:30:53'),(7139,'2005-07-27 06:52:21',846,575,'2005-07-30 01:45:21',1,'2006-02-15 21:30:53'),(7140,'2005-07-27 06:54:12',2028,35,'2005-08-03 10:36:12',2,'2006-02-15 21:30:53'),(7141,'2005-07-27 06:55:27',3579,423,'2005-08-01 11:10:27',1,'2006-02-15 21:30:53'),(7142,'2005-07-27 06:55:39',1743,396,'2005-07-28 01:41:39',2,'2006-02-15 21:30:53'),(7143,'2005-07-27 06:56:31',2877,91,'2005-07-31 04:38:31',2,'2006-02-15 21:30:53'),(7144,'2005-07-27 07:00:37',4506,485,'2005-08-01 06:57:37',1,'2006-02-15 21:30:53'),(7145,'2005-07-27 07:01:00',3653,109,'2005-07-31 02:31:00',1,'2006-02-15 21:30:53'),(7146,'2005-07-27 07:02:30',2245,323,'2005-08-05 10:29:30',1,'2006-02-15 21:30:53'),(7147,'2005-07-27 07:02:34',990,192,'2005-08-01 02:16:34',1,'2006-02-15 21:30:53'),(7148,'2005-07-27 07:04:09',1783,354,'2005-08-03 10:20:09',2,'2006-02-15 21:30:53'),(7149,'2005-07-27 07:10:40',3902,242,'2005-08-03 07:37:40',2,'2006-02-15 21:30:53'),(7150,'2005-07-27 07:11:14',457,191,'2005-08-05 06:55:14',2,'2006-02-15 21:30:53'),(7151,'2005-07-27 07:14:31',1259,289,'2005-08-01 01:35:31',2,'2006-02-15 21:30:53'),(7152,'2005-07-27 07:15:01',2338,370,'2005-08-05 04:50:01',1,'2006-02-15 21:30:53'),(7153,'2005-07-27 07:15:38',2657,41,'2005-07-28 09:56:38',1,'2006-02-15 21:30:53'),(7154,'2005-07-27 07:16:17',2019,518,'2005-07-28 04:04:17',2,'2006-02-15 21:30:53'),(7155,'2005-07-27 07:18:46',171,23,'2005-08-04 10:28:46',1,'2006-02-15 21:30:53'),(7156,'2005-07-27 07:19:34',34,154,'2005-07-31 04:31:34',1,'2006-02-15 21:30:53'),(7157,'2005-07-27 07:20:28',1353,423,'2005-08-02 07:19:28',1,'2006-02-15 21:30:53'),(7158,'2005-07-27 07:23:58',2432,38,'2005-08-03 06:00:58',2,'2006-02-15 21:30:53'),(7159,'2005-07-27 07:24:00',1220,158,'2005-08-05 11:13:00',1,'2006-02-15 21:30:53'),(7160,'2005-07-27 07:26:06',3905,71,'2005-07-31 04:54:06',2,'2006-02-15 21:30:53'),(7161,'2005-07-27 07:26:32',378,572,'2005-08-03 01:26:32',2,'2006-02-15 21:30:53'),(7162,'2005-07-27 07:32:45',2251,289,'2005-07-30 03:48:45',1,'2006-02-15 21:30:53'),(7163,'2005-07-27 07:36:11',3666,38,'2005-08-04 06:03:11',2,'2006-02-15 21:30:53'),(7164,'2005-07-27 07:36:34',527,284,'2005-08-04 05:05:34',2,'2006-02-15 21:30:53'),(7165,'2005-07-27 07:36:46',497,243,'2005-07-30 09:22:46',2,'2006-02-15 21:30:53'),(7166,'2005-07-27 07:36:56',1375,562,'2005-08-02 03:46:56',1,'2006-02-15 21:30:53'),(7167,'2005-07-27 07:37:26',238,380,'2005-08-03 06:39:26',1,'2006-02-15 21:30:53'),(7168,'2005-07-27 07:51:11',6,252,'2005-08-01 04:08:11',2,'2006-02-15 21:30:53'),(7169,'2005-07-27 07:51:39',735,559,'2005-08-01 06:42:39',1,'2006-02-15 21:30:53'),(7170,'2005-07-27 07:58:26',370,140,'2005-07-28 02:30:26',1,'2006-02-15 21:30:53'),(7171,'2005-07-27 07:58:35',4381,406,'2005-08-03 07:45:35',1,'2006-02-15 21:30:53'),(7172,'2005-07-27 07:59:16',2405,362,'2005-08-01 04:46:16',1,'2006-02-15 21:30:53'),(7173,'2005-07-27 07:59:24',177,592,'2005-07-28 02:23:24',2,'2006-02-15 21:30:53'),(7174,'2005-07-27 08:00:36',46,570,'2005-08-01 03:11:36',1,'2006-02-15 21:30:53'),(7175,'2005-07-27 08:03:22',568,190,'2005-08-01 02:47:22',2,'2006-02-15 21:30:53'),(7176,'2005-07-27 08:04:28',227,257,'2005-07-29 14:00:28',2,'2006-02-15 21:30:53'),(7177,'2005-07-27 08:07:39',3818,133,'2005-07-30 03:17:39',2,'2006-02-15 21:30:53'),(7178,'2005-07-27 08:09:25',1899,31,'2005-07-29 13:00:25',2,'2006-02-15 21:30:53'),(7179,'2005-07-27 08:10:29',2365,537,'2005-07-28 12:24:29',2,'2006-02-15 21:30:53'),(7180,'2005-07-27 08:14:34',460,215,'2005-07-31 05:24:34',1,'2006-02-15 21:30:53'),(7181,'2005-07-27 08:14:34',2788,130,'2005-07-28 03:09:34',1,'2006-02-15 21:30:53'),(7182,'2005-07-27 08:15:38',3209,97,'2005-08-03 12:48:38',2,'2006-02-15 21:30:53'),(7183,'2005-07-27 08:18:38',3384,302,'2005-08-01 03:24:38',1,'2006-02-15 21:30:53'),(7184,'2005-07-27 08:22:26',2324,457,'2005-08-02 09:34:26',2,'2006-02-15 21:30:53'),(7185,'2005-07-27 08:23:54',2340,121,'2005-07-30 09:50:54',1,'2006-02-15 21:30:53'),(7186,'2005-07-27 08:26:12',4005,584,'2005-07-28 12:21:12',1,'2006-02-15 21:30:53'),(7187,'2005-07-27 08:27:58',2733,169,'2005-08-05 09:05:58',1,'2006-02-15 21:30:53'),(7188,'2005-07-27 08:32:08',2199,259,'2005-07-28 08:02:08',1,'2006-02-15 21:30:53'),(7189,'2005-07-27 08:35:02',4419,151,'2005-07-30 14:00:02',2,'2006-02-15 21:30:53'),(7190,'2005-07-27 08:36:01',1330,372,'2005-07-30 08:32:01',2,'2006-02-15 21:30:53'),(7191,'2005-07-27 08:36:15',4292,495,'2005-08-03 08:54:15',1,'2006-02-15 21:30:53'),(7192,'2005-07-27 08:36:55',4329,532,'2005-07-30 11:58:55',2,'2006-02-15 21:30:53'),(7193,'2005-07-27 08:37:00',1801,237,'2005-07-30 12:51:00',2,'2006-02-15 21:30:53'),(7194,'2005-07-27 08:39:58',254,172,'2005-08-01 03:12:58',1,'2006-02-15 21:30:53'),(7195,'2005-07-27 08:47:01',721,157,'2005-07-30 08:40:01',2,'2006-02-15 21:30:53'),(7196,'2005-07-27 08:49:08',2998,118,'2005-07-29 03:54:08',1,'2006-02-15 21:30:53'),(7197,'2005-07-27 08:49:32',2109,577,'2005-07-31 13:50:32',1,'2006-02-15 21:30:53'),(7198,'2005-07-27 08:50:07',4283,520,'2005-08-04 09:46:07',2,'2006-02-15 21:30:53'),(7199,'2005-07-27 08:53:23',3685,292,'2005-08-03 10:01:23',1,'2006-02-15 21:30:53'),(7200,'2005-07-27 08:57:38',4406,78,'2005-08-02 12:29:38',2,'2006-02-15 21:30:53'),(7201,'2005-07-27 08:57:40',482,598,'2005-08-04 09:55:40',2,'2006-02-15 21:30:53'),(7202,'2005-07-27 09:00:20',109,560,'2005-08-04 03:09:20',1,'2006-02-15 21:30:53'),(7203,'2005-07-27 09:01:23',1685,492,'2005-08-04 14:14:23',1,'2006-02-15 21:30:53'),(7204,'2005-07-27 09:02:31',2512,531,'2005-08-03 08:56:31',2,'2006-02-15 21:30:53'),(7205,'2005-07-27 09:06:13',2828,36,'2005-08-05 07:11:13',1,'2006-02-15 21:30:53'),(7206,'2005-07-27 09:07:05',3752,373,'2005-07-31 03:13:05',2,'2006-02-15 21:30:53'),(7207,'2005-07-27 09:13:26',336,51,'2005-08-01 10:24:26',1,'2006-02-15 21:30:53'),(7208,'2005-07-27 09:16:28',1523,138,'2005-07-28 09:40:28',1,'2006-02-15 21:30:53'),(7209,'2005-07-27 09:16:53',3766,49,'2005-07-30 08:09:53',2,'2006-02-15 21:30:53'),(7210,'2005-07-27 09:19:05',1984,176,'2005-07-28 04:35:05',1,'2006-02-15 21:30:53'),(7211,'2005-07-27 09:20:00',4445,285,'2005-08-02 14:53:00',1,'2006-02-15 21:30:53'),(7212,'2005-07-27 09:21:22',2905,591,'2005-08-01 04:47:22',2,'2006-02-15 21:30:53'),(7213,'2005-07-27 09:22:29',2836,502,'2005-08-03 13:53:29',2,'2006-02-15 21:30:53'),(7214,'2005-07-27 09:23:33',802,309,'2005-08-03 13:14:33',2,'2006-02-15 21:30:53'),(7215,'2005-07-27 09:24:00',2713,473,'2005-08-05 07:37:00',2,'2006-02-15 21:30:53'),(7216,'2005-07-27 09:27:45',1812,292,'2005-08-03 13:08:45',1,'2006-02-15 21:30:53'),(7217,'2005-07-27 09:31:44',2646,20,'2005-07-29 10:48:44',1,'2006-02-15 21:30:53'),(7218,'2005-07-27 09:34:24',2458,530,'2005-08-01 07:00:24',1,'2006-02-15 21:30:53'),(7219,'2005-07-27 09:35:36',4046,512,'2005-07-29 04:44:36',1,'2006-02-15 21:30:53'),(7220,'2005-07-27 09:35:54',3867,79,'2005-08-04 06:00:54',2,'2006-02-15 21:30:53'),(7221,'2005-07-27 09:37:35',3820,579,'2005-07-28 11:25:35',1,'2006-02-15 21:30:53'),(7222,'2005-07-27 09:38:43',2330,206,'2005-07-28 06:25:43',1,'2006-02-15 21:30:53'),(7223,'2005-07-27 09:42:27',2623,325,'2005-08-04 04:02:27',1,'2006-02-15 21:30:53'),(7224,'2005-07-27 09:44:26',2701,106,'2005-08-05 12:46:26',2,'2006-02-15 21:30:53'),(7225,'2005-07-27 09:47:12',632,306,'2005-08-03 13:19:12',2,'2006-02-15 21:30:53'),(7226,'2005-07-27 09:47:53',3507,370,'2005-08-01 08:24:53',1,'2006-02-15 21:30:53'),(7227,'2005-07-27 09:53:43',791,164,'2005-08-05 09:36:43',2,'2006-02-15 21:30:53'),(7228,'2005-07-27 09:55:33',1693,481,'2005-07-29 04:33:33',2,'2006-02-15 21:30:53'),(7229,'2005-07-27 10:00:54',978,182,'2005-07-28 13:58:54',2,'2006-02-15 21:30:53'),(7230,'2005-07-27 10:01:41',1152,245,'2005-08-02 11:00:41',1,'2006-02-15 21:30:53'),(7231,'2005-07-27 10:01:51',1638,86,'2005-08-05 13:38:51',2,'2006-02-15 21:30:53'),(7232,'2005-07-27 10:04:19',1147,306,'2005-07-28 09:43:19',2,'2006-02-15 21:30:53'),(7233,'2005-07-27 10:08:36',213,245,'2005-07-31 16:00:36',1,'2006-02-15 21:30:53'),(7234,'2005-07-27 10:08:45',3873,372,'2005-07-31 13:58:45',1,'2006-02-15 21:30:53'),(7235,'2005-07-27 10:09:30',1261,354,'2005-08-05 11:44:30',2,'2006-02-15 21:30:53'),(7236,'2005-07-27 10:09:39',3004,218,'2005-08-03 16:05:39',1,'2006-02-15 21:30:53'),(7237,'2005-07-27 10:12:36',1904,29,'2005-07-31 08:40:36',2,'2006-02-15 21:30:53'),(7238,'2005-07-27 10:13:41',1197,116,'2005-07-29 11:07:41',1,'2006-02-15 21:30:53'),(7239,'2005-07-27 10:20:27',1786,278,'2005-07-29 10:15:27',1,'2006-02-15 21:30:53'),(7240,'2005-07-27 10:21:15',4565,324,'2005-08-03 05:04:15',1,'2006-02-15 21:30:53'),(7241,'2005-07-27 10:25:49',2433,354,'2005-07-28 05:30:49',2,'2006-02-15 21:30:53'),(7242,'2005-07-27 10:25:51',1966,565,'2005-08-04 16:02:51',2,'2006-02-15 21:30:53'),(7243,'2005-07-27 10:26:11',1287,238,'2005-07-29 11:43:11',2,'2006-02-15 21:30:53'),(7244,'2005-07-27 10:27:33',1329,339,'2005-07-30 13:09:33',1,'2006-02-15 21:30:53'),(7245,'2005-07-27 10:29:06',260,95,'2005-08-05 12:09:06',2,'2006-02-15 21:30:53'),(7246,'2005-07-27 10:30:41',2003,333,'2005-07-30 05:44:41',1,'2006-02-15 21:30:53'),(7247,'2005-07-27 10:32:58',1445,102,'2005-07-29 05:00:58',2,'2006-02-15 21:30:53'),(7248,'2005-07-27 10:37:45',4256,456,'2005-08-01 13:13:45',1,'2006-02-15 21:30:53'),(7249,'2005-07-27 10:39:53',2441,425,'2005-07-28 14:48:53',2,'2006-02-15 21:30:53'),(7250,'2005-07-27 10:44:09',3410,589,'2005-07-28 11:47:09',1,'2006-02-15 21:30:53'),(7251,'2005-07-27 10:44:55',1737,360,'2005-08-01 16:12:55',1,'2006-02-15 21:30:53'),(7252,'2005-07-27 10:45:28',3107,549,'2005-08-04 06:24:28',2,'2006-02-15 21:30:53'),(7253,'2005-07-27 10:46:37',1950,236,'2005-07-28 11:18:37',1,'2006-02-15 21:30:53'),(7254,'2005-07-27 10:48:50',2697,286,'2005-07-28 10:34:50',1,'2006-02-15 21:30:53'),(7255,'2005-07-27 10:49:54',2101,502,'2005-07-31 10:40:54',2,'2006-02-15 21:30:53'),(7256,'2005-07-27 10:58:32',4275,363,'2005-07-29 08:58:32',2,'2006-02-15 21:30:53'),(7257,'2005-07-27 11:04:17',3302,480,'2005-08-04 12:32:17',2,'2006-02-15 21:30:53'),(7258,'2005-07-27 11:05:54',2079,494,'2005-08-02 11:36:54',1,'2006-02-15 21:30:53'),(7259,'2005-07-27 11:06:00',2345,406,'2005-08-02 06:44:00',2,'2006-02-15 21:30:53'),(7260,'2005-07-27 11:09:28',3827,434,'2005-08-03 09:41:28',1,'2006-02-15 21:30:53'),(7261,'2005-07-27 11:15:01',942,172,'2005-07-28 09:42:01',2,'2006-02-15 21:30:53'),(7262,'2005-07-27 11:15:36',4097,522,'2005-07-30 10:49:36',2,'2006-02-15 21:30:53'),(7263,'2005-07-27 11:17:22',725,324,'2005-08-04 10:59:22',1,'2006-02-15 21:30:53'),(7264,'2005-07-27 11:18:58',2391,299,'2005-08-03 07:43:58',2,'2006-02-15 21:30:53'),(7265,'2005-07-27 11:19:01',3465,290,'2005-08-01 09:29:01',1,'2006-02-15 21:30:53'),(7266,'2005-07-27 11:22:17',3379,24,'2005-08-04 05:45:17',1,'2006-02-15 21:30:53'),(7267,'2005-07-27 11:22:55',3661,122,'2005-08-01 08:13:55',1,'2006-02-15 21:30:53'),(7268,'2005-07-27 11:23:09',2740,260,'2005-08-01 12:42:09',2,'2006-02-15 21:30:53'),(7269,'2005-07-27 11:23:47',2089,209,'2005-07-31 13:10:47',1,'2006-02-15 21:30:53'),(7270,'2005-07-27 11:29:02',1888,526,'2005-08-05 08:04:02',1,'2006-02-15 21:30:53'),(7271,'2005-07-27 11:29:11',858,469,'2005-08-05 15:33:11',1,'2006-02-15 21:30:53'),(7272,'2005-07-27 11:30:20',250,364,'2005-07-29 17:16:20',2,'2006-02-15 21:30:53'),(7273,'2005-07-27 11:31:22',2465,1,'2005-07-31 06:50:22',1,'2006-02-15 21:30:53'),(7274,'2005-07-27 11:35:34',4087,180,'2005-08-01 07:10:34',1,'2006-02-15 21:30:53'),(7275,'2005-07-27 11:39:08',775,323,'2005-07-30 13:37:08',2,'2006-02-15 21:30:53'),(7276,'2005-07-27 11:41:57',1665,314,'2005-08-01 10:39:57',1,'2006-02-15 21:30:53'),(7277,'2005-07-27 11:48:37',1544,67,'2005-08-03 07:20:37',1,'2006-02-15 21:30:53'),(7278,'2005-07-27 11:50:34',531,592,'2005-08-01 10:22:34',1,'2006-02-15 21:30:53'),(7279,'2005-07-27 11:50:47',1424,12,'2005-07-30 11:19:47',2,'2006-02-15 21:30:53'),(7280,'2005-07-27 11:50:52',236,342,'2005-07-30 15:53:52',2,'2006-02-15 21:30:53'),(7281,'2005-07-27 11:59:20',1350,491,'2005-08-04 12:48:20',1,'2006-02-15 21:30:53'),(7282,'2005-07-27 12:00:19',4418,276,'2005-08-04 14:48:19',2,'2006-02-15 21:30:53'),(7283,'2005-07-27 12:02:41',3101,508,'2005-08-05 07:25:41',1,'2006-02-15 21:30:53'),(7284,'2005-07-27 12:12:04',2336,52,'2005-07-31 11:17:04',2,'2006-02-15 21:30:53'),(7285,'2005-07-27 12:14:06',2855,498,'2005-08-03 14:57:06',2,'2006-02-15 21:30:53'),(7286,'2005-07-27 12:23:49',3452,498,'2005-08-04 07:57:49',1,'2006-02-15 21:30:53'),(7287,'2005-07-27 12:24:12',926,198,'2005-07-31 15:34:12',1,'2006-02-15 21:30:53'),(7288,'2005-07-27 12:24:59',45,226,'2005-08-02 15:52:59',2,'2006-02-15 21:30:53'),(7289,'2005-07-27 12:26:51',2157,187,'2005-08-02 18:20:51',2,'2006-02-15 21:30:53'),(7290,'2005-07-27 12:28:45',3652,423,'2005-08-01 16:18:45',1,'2006-02-15 21:30:53'),(7291,'2005-07-27 12:30:47',310,263,'2005-08-01 12:45:47',1,'2006-02-15 21:30:53'),(7292,'2005-07-27 12:34:14',795,468,'2005-08-01 18:16:14',2,'2006-02-15 21:30:53'),(7293,'2005-07-27 12:37:28',3333,5,'2005-07-30 15:12:28',2,'2006-02-15 21:30:53'),(7294,'2005-07-27 12:38:14',487,313,'2005-07-30 13:01:14',1,'2006-02-15 21:30:53'),(7295,'2005-07-27 12:38:47',3396,462,'2005-08-05 10:12:47',1,'2006-02-15 21:30:53'),(7296,'2005-07-27 12:39:48',1681,400,'2005-08-04 18:24:48',2,'2006-02-15 21:30:53'),(7297,'2005-07-27 12:39:48',1855,135,'2005-07-29 17:50:48',2,'2006-02-15 21:30:53'),(7298,'2005-07-27 12:45:14',1653,121,'2005-07-30 07:02:14',1,'2006-02-15 21:30:53'),(7299,'2005-07-27 12:49:56',3002,286,'2005-08-03 12:25:56',1,'2006-02-15 21:30:53'),(7300,'2005-07-27 12:50:17',4561,272,'2005-08-04 18:43:17',1,'2006-02-15 21:30:53'),(7301,'2005-07-27 12:50:23',3367,93,'2005-08-01 09:43:23',2,'2006-02-15 21:30:53'),(7302,'2005-07-27 12:52:13',4539,477,'2005-07-29 15:13:13',2,'2006-02-15 21:30:53'),(7303,'2005-07-27 12:54:39',1398,163,'2005-07-31 09:26:39',2,'2006-02-15 21:30:53'),(7304,'2005-07-27 12:56:56',1162,74,'2005-08-05 09:19:56',2,'2006-02-15 21:30:53'),(7305,'2005-07-27 12:57:06',2464,229,'2005-07-30 13:13:06',2,'2006-02-15 21:30:53'),(7306,'2005-07-27 12:57:26',2269,207,'2005-08-03 09:35:26',2,'2006-02-15 21:30:53'),(7307,'2005-07-27 12:59:10',3882,595,'2005-07-29 11:35:10',1,'2006-02-15 21:30:53'),(7308,'2005-07-27 13:00:25',1452,229,'2005-08-03 16:04:25',1,'2006-02-15 21:30:53'),(7309,'2005-07-27 13:00:29',633,317,'2005-07-29 12:15:29',2,'2006-02-15 21:30:53'),(7310,'2005-07-27 13:00:55',3711,103,'2005-07-28 17:54:55',1,'2006-02-15 21:30:53'),(7311,'2005-07-27 13:02:54',2807,582,'2005-08-04 09:52:54',1,'2006-02-15 21:30:53'),(7312,'2005-07-27 13:03:14',228,543,'2005-07-31 07:56:14',2,'2006-02-15 21:30:53'),(7313,'2005-07-27 13:11:57',1884,396,'2005-08-02 07:31:57',1,'2006-02-15 21:30:53'),(7314,'2005-07-27 13:13:32',1376,11,'2005-08-03 09:24:32',2,'2006-02-15 21:30:53'),(7315,'2005-07-27 13:14:56',974,208,'2005-08-03 08:44:56',2,'2006-02-15 21:30:53'),(7316,'2005-07-27 13:19:03',3344,114,'2005-07-28 07:43:03',2,'2006-02-15 21:30:53'),(7317,'2005-07-27 13:19:41',1518,443,'2005-07-29 16:16:41',2,'2006-02-15 21:30:53'),(7318,'2005-07-27 13:25:31',1954,301,'2005-07-31 11:44:31',2,'2006-02-15 21:30:53'),(7319,'2005-07-27 13:31:25',2370,576,'2005-08-04 07:31:25',1,'2006-02-15 21:30:53'),(7320,'2005-07-27 13:33:35',4348,241,'2005-07-31 13:22:35',2,'2006-02-15 21:30:53'),(7321,'2005-07-27 13:33:38',3525,38,'2005-08-03 07:35:38',2,'2006-02-15 21:30:53'),(7322,'2005-07-27 13:37:26',1810,508,'2005-08-03 18:00:26',2,'2006-02-15 21:30:53'),(7323,'2005-07-27 13:39:40',3830,125,'2005-07-29 08:45:40',2,'2006-02-15 21:30:53'),(7324,'2005-07-27 13:42:39',2572,462,'2005-08-04 10:33:39',2,'2006-02-15 21:30:53'),(7325,'2005-07-27 13:46:55',1727,289,'2005-07-28 14:21:55',1,'2006-02-15 21:30:53'),(7326,'2005-07-27 13:50:40',2844,432,'2005-07-30 08:16:40',1,'2006-02-15 21:30:53'),(7327,'2005-07-27 13:53:26',4074,508,'2005-08-04 17:58:26',2,'2006-02-15 21:30:53'),(7328,'2005-07-27 13:55:18',663,26,'2005-08-01 19:52:18',1,'2006-02-15 21:30:53'),(7329,'2005-07-27 13:55:34',906,226,'2005-08-04 15:15:34',1,'2006-02-15 21:30:53'),(7330,'2005-07-27 13:56:46',3705,237,'2005-08-04 07:56:46',1,'2006-02-15 21:30:53'),(7331,'2005-07-27 13:57:50',2090,60,'2005-07-31 08:59:50',1,'2006-02-15 21:30:53'),(7332,'2005-07-27 13:58:57',1761,151,'2005-08-02 12:40:57',1,'2006-02-15 21:30:53'),(7333,'2005-07-27 13:59:11',1331,230,'2005-07-30 16:04:11',1,'2006-02-15 21:30:53'),(7334,'2005-07-27 13:59:58',3006,461,'2005-07-29 11:33:58',1,'2006-02-15 21:30:53'),(7335,'2005-07-27 14:06:50',1219,219,'2005-08-05 18:27:50',2,'2006-02-15 21:30:53'),(7336,'2005-07-27 14:11:45',2706,46,'2005-07-28 11:00:45',2,'2006-02-15 21:30:53'),(7337,'2005-07-27 14:12:04',3314,525,'2005-08-03 14:57:04',2,'2006-02-15 21:30:53'),(7338,'2005-07-27 14:13:34',107,251,'2005-08-03 18:36:34',2,'2006-02-15 21:30:53'),(7339,'2005-07-27 14:17:48',3343,316,'2005-07-31 12:47:48',2,'2006-02-15 21:30:53'),(7340,'2005-07-27 14:18:10',1344,567,'2005-07-30 09:57:10',1,'2006-02-15 21:30:53'),(7341,'2005-07-27 14:23:55',3567,498,'2005-07-28 14:11:55',2,'2006-02-15 21:30:53'),(7342,'2005-07-27 14:25:17',4083,504,'2005-08-04 10:02:17',2,'2006-02-15 21:30:53'),(7343,'2005-07-27 14:27:13',1177,526,'2005-07-30 09:27:13',2,'2006-02-15 21:30:53'),(7344,'2005-07-27 14:29:28',1714,366,'2005-07-31 15:36:28',1,'2006-02-15 21:30:53'),(7345,'2005-07-27 14:29:53',2434,572,'2005-08-03 18:38:53',2,'2006-02-15 21:30:53'),(7346,'2005-07-27 14:30:42',741,2,'2005-08-02 16:48:42',1,'2006-02-15 21:30:53'),(7347,'2005-07-27 14:31:24',3779,225,'2005-07-31 16:19:24',1,'2006-02-15 21:30:53'),(7348,'2005-07-27 14:32:32',3238,43,'2005-07-28 17:05:32',1,'2006-02-15 21:30:53'),(7349,'2005-07-27 14:33:00',861,195,'2005-08-01 15:01:00',2,'2006-02-15 21:30:53'),(7350,'2005-07-27 14:34:14',737,410,'2005-08-02 19:19:14',2,'2006-02-15 21:30:53'),(7351,'2005-07-27 14:37:36',2147,445,'2005-07-30 09:58:36',2,'2006-02-15 21:30:53'),(7352,'2005-07-27 14:38:29',35,429,'2005-07-28 14:24:29',1,'2006-02-15 21:30:53'),(7353,'2005-07-27 14:38:39',1308,357,'2005-07-31 19:50:39',1,'2006-02-15 21:30:53'),(7354,'2005-07-27 14:42:11',2395,598,'2005-08-03 18:19:11',2,'2006-02-15 21:30:53'),(7355,'2005-07-27 14:45:59',3803,115,'2005-08-02 17:23:59',2,'2006-02-15 21:30:53'),(7356,'2005-07-27 14:47:35',309,397,'2005-07-28 18:10:35',2,'2006-02-15 21:30:53'),(7357,'2005-07-27 14:48:31',1917,438,'2005-08-02 18:07:31',2,'2006-02-15 21:30:53'),(7358,'2005-07-27 14:49:44',175,245,'2005-07-28 20:00:44',1,'2006-02-15 21:30:53'),(7359,'2005-07-27 14:51:04',174,183,'2005-07-31 16:03:04',2,'2006-02-15 21:30:53'),(7360,'2005-07-27 14:52:06',1312,467,'2005-08-02 12:24:06',2,'2006-02-15 21:30:53'),(7361,'2005-07-27 14:53:55',4567,463,'2005-07-31 19:48:55',2,'2006-02-15 21:30:53'),(7362,'2005-07-27 14:58:27',1902,419,'2005-08-01 11:51:27',1,'2006-02-15 21:30:53'),(7363,'2005-07-27 14:58:29',1649,407,'2005-08-05 09:02:29',1,'2006-02-15 21:30:53'),(7364,'2005-07-27 14:58:40',3046,592,'2005-08-03 09:01:40',2,'2006-02-15 21:30:53'),(7365,'2005-07-27 15:00:20',3283,450,'2005-07-30 12:58:20',1,'2006-02-15 21:30:53'),(7366,'2005-07-27 15:01:17',461,357,'2005-08-04 20:28:17',1,'2006-02-15 21:30:53'),(7367,'2005-07-27 15:05:45',1738,383,'2005-08-02 13:46:45',1,'2006-02-15 21:30:53'),(7368,'2005-07-27 15:06:05',2265,286,'2005-07-31 14:10:05',2,'2006-02-15 21:30:53'),(7369,'2005-07-27 15:07:58',3889,139,'2005-07-30 09:16:58',2,'2006-02-15 21:30:53'),(7370,'2005-07-27 15:15:53',2022,89,'2005-08-03 19:53:53',2,'2006-02-15 21:30:53'),(7371,'2005-07-27 15:18:42',1807,577,'2005-08-01 09:58:42',1,'2006-02-15 21:30:53'),(7372,'2005-07-27 15:18:42',3202,584,'2005-08-01 15:18:42',2,'2006-02-15 21:30:53'),(7373,'2005-07-27 15:19:33',3074,488,'2005-08-04 10:45:33',1,'2006-02-15 21:30:53'),(7374,'2005-07-27 15:20:57',3184,438,'2005-08-05 13:09:57',2,'2006-02-15 21:30:53'),(7375,'2005-07-27 15:22:33',2970,381,'2005-08-01 20:06:33',1,'2006-02-15 21:30:53'),(7376,'2005-07-27 15:23:02',488,2,'2005-08-04 10:35:02',2,'2006-02-15 21:30:53'),(7377,'2005-07-27 15:31:28',1369,588,'2005-08-02 19:59:28',2,'2006-02-15 21:30:53'),(7378,'2005-07-27 15:31:33',3297,144,'2005-08-03 17:15:33',2,'2006-02-15 21:30:53'),(7379,'2005-07-27 15:36:43',424,415,'2005-07-30 16:37:43',2,'2006-02-15 21:30:53'),(7380,'2005-07-27 15:37:01',988,348,'2005-08-03 19:24:01',1,'2006-02-15 21:30:53'),(7381,'2005-07-27 15:40:26',1595,483,'2005-08-02 17:26:26',2,'2006-02-15 21:30:53'),(7382,'2005-07-27 15:43:15',356,518,'2005-07-28 11:18:15',2,'2006-02-15 21:30:53'),(7383,'2005-07-27 15:46:53',3860,50,'2005-08-03 11:10:53',1,'2006-02-15 21:30:53'),(7384,'2005-07-27 15:49:45',3573,585,'2005-08-04 15:17:45',1,'2006-02-15 21:30:53'),(7385,'2005-07-27 15:49:46',2996,56,'2005-07-28 13:50:46',2,'2006-02-15 21:30:53'),(7386,'2005-07-27 15:52:10',3569,190,'2005-08-04 15:13:10',1,'2006-02-15 21:30:53'),(7387,'2005-07-27 15:54:19',3274,233,'2005-08-03 14:46:19',1,'2006-02-15 21:30:53'),(7388,'2005-07-27 15:54:19',4559,455,'2005-08-01 17:02:19',2,'2006-02-15 21:30:53'),(7389,'2005-07-27 15:56:15',3822,156,'2005-07-30 21:28:15',2,'2006-02-15 21:30:53'),(7390,'2005-07-27 15:59:19',1723,230,'2005-08-04 10:09:19',2,'2006-02-15 21:30:53'),(7391,'2005-07-27 16:00:00',1153,531,'2005-08-04 18:07:00',2,'2006-02-15 21:30:53'),(7392,'2005-07-27 16:01:05',3159,204,'2005-08-01 17:23:05',2,'2006-02-15 21:30:53'),(7393,'2005-07-27 16:02:52',2369,181,'2005-08-02 13:24:52',1,'2006-02-15 21:30:53'),(7394,'2005-07-27 16:03:08',2399,30,'2005-08-04 11:27:08',2,'2006-02-15 21:30:53'),(7395,'2005-07-27 16:03:11',2888,411,'2005-07-31 20:26:11',2,'2006-02-15 21:30:53'),(7396,'2005-07-27 16:03:53',3346,595,'2005-08-05 10:36:53',2,'2006-02-15 21:30:53'),(7397,'2005-07-27 16:05:00',4474,245,'2005-08-01 20:29:00',1,'2006-02-15 21:30:53'),(7398,'2005-07-27 16:07:22',1572,51,'2005-08-05 16:16:22',1,'2006-02-15 21:30:53'),(7399,'2005-07-27 16:16:02',1682,526,'2005-08-03 18:02:02',2,'2006-02-15 21:30:53'),(7400,'2005-07-27 16:16:37',2874,133,'2005-07-31 12:34:37',2,'2006-02-15 21:30:53'),(7401,'2005-07-27 16:17:55',2759,583,'2005-08-04 15:48:55',1,'2006-02-15 21:30:53'),(7402,'2005-07-27 16:19:40',2707,287,'2005-08-05 14:48:40',2,'2006-02-15 21:30:53'),(7403,'2005-07-27 16:22:09',2551,163,'2005-08-01 15:32:09',1,'2006-02-15 21:30:53'),(7404,'2005-07-27 16:24:43',2359,190,'2005-07-29 11:40:43',2,'2006-02-15 21:30:53'),(7405,'2005-07-27 16:25:11',2312,42,'2005-08-01 12:33:11',2,'2006-02-15 21:30:53'),(7406,'2005-07-27 16:25:45',1412,77,'2005-08-05 20:39:45',1,'2006-02-15 21:30:53'),(7407,'2005-07-27 16:29:04',3093,410,'2005-08-01 17:47:04',2,'2006-02-15 21:30:53'),(7408,'2005-07-27 16:31:40',625,371,'2005-07-31 11:56:40',2,'2006-02-15 21:30:53'),(7409,'2005-07-27 16:38:24',2352,585,'2005-07-30 18:06:24',1,'2006-02-15 21:30:53'),(7410,'2005-07-27 16:41:59',1559,337,'2005-07-29 22:11:59',1,'2006-02-15 21:30:53'),(7411,'2005-07-27 16:42:30',515,302,'2005-08-05 17:38:30',1,'2006-02-15 21:30:53'),(7412,'2005-07-27 16:44:34',950,582,'2005-08-04 15:06:34',2,'2006-02-15 21:30:53'),(7413,'2005-07-27 16:45:40',2909,254,'2005-07-31 12:02:40',1,'2006-02-15 21:30:53'),(7414,'2005-07-27 16:46:07',3276,265,'2005-08-02 20:04:07',1,'2006-02-15 21:30:53'),(7415,'2005-07-27 16:50:59',4410,294,'2005-08-02 11:21:59',1,'2006-02-15 21:30:53'),(7416,'2005-07-27 16:55:25',653,350,'2005-07-29 11:27:25',1,'2006-02-15 21:30:53'),(7417,'2005-07-27 16:58:33',2952,214,'2005-07-30 22:17:33',1,'2006-02-15 21:30:53'),(7418,'2005-07-27 16:59:09',3029,332,'2005-07-29 15:08:09',2,'2006-02-15 21:30:53'),(7419,'2005-07-27 17:04:15',3454,352,'2005-08-05 21:54:15',2,'2006-02-15 21:30:53'),(7420,'2005-07-27 17:09:39',3505,547,'2005-07-30 12:30:39',2,'2006-02-15 21:30:53'),(7421,'2005-07-27 17:10:05',3548,70,'2005-08-05 17:55:05',1,'2006-02-15 21:30:53'),(7422,'2005-07-27 17:10:42',3954,286,'2005-08-03 19:32:42',1,'2006-02-15 21:30:53'),(7423,'2005-07-27 17:11:47',666,277,'2005-07-29 12:29:47',2,'2006-02-15 21:30:53'),(7424,'2005-07-27 17:14:19',660,558,'2005-08-01 19:21:19',2,'2006-02-15 21:30:53'),(7425,'2005-07-27 17:18:35',435,263,'2005-08-02 11:18:35',1,'2006-02-15 21:30:53'),(7426,'2005-07-27 17:19:46',4420,239,'2005-07-29 21:41:46',1,'2006-02-15 21:30:53'),(7427,'2005-07-27 17:20:16',2548,442,'2005-08-03 20:38:16',2,'2006-02-15 21:30:53'),(7428,'2005-07-27 17:21:52',243,90,'2005-08-05 17:13:52',2,'2006-02-15 21:30:53'),(7429,'2005-07-27 17:24:50',2160,515,'2005-08-05 23:02:50',1,'2006-02-15 21:30:53'),(7430,'2005-07-27 17:26:14',4205,562,'2005-08-01 13:02:14',2,'2006-02-15 21:30:53'),(7431,'2005-07-27 17:27:27',3931,589,'2005-07-31 18:40:27',1,'2006-02-15 21:30:53'),(7432,'2005-07-27 17:31:40',3169,132,'2005-07-28 17:44:40',2,'2006-02-15 21:30:53'),(7433,'2005-07-27 17:32:20',1748,282,'2005-08-01 18:49:20',1,'2006-02-15 21:30:53'),(7434,'2005-07-27 17:34:40',2927,241,'2005-07-29 15:01:40',1,'2006-02-15 21:30:53'),(7435,'2005-07-27 17:38:44',1574,380,'2005-07-30 16:57:44',1,'2006-02-15 21:30:53'),(7436,'2005-07-27 17:39:12',299,45,'2005-08-01 12:40:12',2,'2006-02-15 21:30:53'),(7437,'2005-07-27 17:39:18',2617,135,'2005-07-28 18:33:18',2,'2006-02-15 21:30:53'),(7438,'2005-07-27 17:40:40',1364,52,'2005-08-05 15:25:40',1,'2006-02-15 21:30:53'),(7439,'2005-07-27 17:42:31',4091,102,'2005-08-05 16:34:31',1,'2006-02-15 21:30:53'),(7440,'2005-07-27 17:43:27',1476,484,'2005-08-03 22:12:27',1,'2006-02-15 21:30:53'),(7441,'2005-07-27 17:46:53',4039,198,'2005-07-31 23:05:53',1,'2006-02-15 21:30:53'),(7442,'2005-07-27 17:47:00',2471,105,'2005-07-28 21:37:00',1,'2006-02-15 21:30:53'),(7443,'2005-07-27 17:47:43',703,380,'2005-07-29 13:15:43',1,'2006-02-15 21:30:53'),(7444,'2005-07-27 17:49:16',120,531,'2005-07-28 15:05:16',1,'2006-02-15 21:30:53'),(7445,'2005-07-27 17:57:15',4115,394,'2005-07-31 20:24:15',1,'2006-02-15 21:30:53'),(7446,'2005-07-27 18:00:24',2337,486,'2005-07-29 13:40:24',1,'2006-02-15 21:30:53'),(7447,'2005-07-27 18:02:08',1795,107,'2005-07-29 21:15:08',1,'2006-02-15 21:30:53'),(7448,'2005-07-27 18:06:30',3584,175,'2005-07-29 15:43:30',1,'2006-02-15 21:30:53'),(7449,'2005-07-27 18:17:41',2084,421,'2005-08-01 18:52:41',1,'2006-02-15 21:30:53'),(7450,'2005-07-27 18:18:35',3496,191,'2005-08-04 15:18:35',1,'2006-02-15 21:30:53'),(7451,'2005-07-27 18:18:41',2382,29,'2005-08-03 13:55:41',2,'2006-02-15 21:30:53'),(7452,'2005-07-27 18:26:39',3482,285,'2005-08-04 17:35:39',2,'2006-02-15 21:30:53'),(7453,'2005-07-27 18:27:13',2992,29,'2005-07-29 23:52:13',1,'2006-02-15 21:30:53'),(7454,'2005-07-27 18:27:26',3248,75,'2005-07-30 23:50:26',1,'2006-02-15 21:30:53'),(7455,'2005-07-27 18:34:41',3815,405,'2005-07-31 17:32:41',1,'2006-02-15 21:30:53'),(7456,'2005-07-27 18:34:53',1959,501,'2005-07-29 17:46:53',2,'2006-02-15 21:30:53'),(7457,'2005-07-27 18:35:17',3635,510,'2005-07-30 12:41:17',2,'2006-02-15 21:30:53'),(7458,'2005-07-27 18:36:17',2964,327,'2005-07-31 22:43:17',1,'2006-02-15 21:30:53'),(7459,'2005-07-27 18:40:20',2053,2,'2005-08-02 21:07:20',2,'2006-02-15 21:30:53'),(7460,'2005-07-27 18:41:35',919,442,'2005-07-29 15:16:35',2,'2006-02-15 21:30:53'),(7461,'2005-07-27 18:45:15',1236,476,'2005-07-29 17:19:15',1,'2006-02-15 21:30:53'),(7462,'2005-07-27 18:47:47',878,114,'2005-07-29 20:46:47',2,'2006-02-15 21:30:53'),(7463,'2005-07-27 18:48:32',3676,284,'2005-07-29 23:54:32',2,'2006-02-15 21:30:53'),(7464,'2005-07-27 18:49:42',845,31,'2005-07-28 20:45:42',2,'2006-02-15 21:30:53'),(7465,'2005-07-27 18:50:30',2357,115,'2005-07-30 20:55:30',1,'2006-02-15 21:30:53'),(7466,'2005-07-27 18:51:17',2791,53,'2005-07-31 16:58:17',1,'2006-02-15 21:30:53'),(7467,'2005-07-27 18:51:54',3869,240,'2005-08-03 23:27:54',2,'2006-02-15 21:30:53'),(7468,'2005-07-27 18:52:27',3166,113,'2005-08-03 19:29:27',2,'2006-02-15 21:30:53'),(7469,'2005-07-27 18:57:40',3723,189,'2005-07-31 00:17:40',1,'2006-02-15 21:30:53'),(7470,'2005-07-27 19:01:03',289,564,'2005-08-05 19:16:03',2,'2006-02-15 21:30:53'),(7471,'2005-07-27 19:02:19',1776,95,'2005-07-30 15:12:19',1,'2006-02-15 21:30:53'),(7472,'2005-07-27 19:04:19',1535,103,'2005-08-03 00:08:19',2,'2006-02-15 21:30:53'),(7473,'2005-07-27 19:05:40',401,341,'2005-08-05 14:47:40',1,'2006-02-15 21:30:53'),(7474,'2005-07-27 19:07:17',2971,110,'2005-07-30 00:37:17',1,'2006-02-15 21:30:53'),(7475,'2005-07-27 19:07:43',1670,255,'2005-08-04 22:12:43',2,'2006-02-15 21:30:53'),(7476,'2005-07-27 19:08:56',2288,64,'2005-07-31 16:36:56',2,'2006-02-15 21:30:53'),(7477,'2005-07-27 19:11:03',2692,355,'2005-08-02 19:25:03',1,'2006-02-15 21:30:53'),(7478,'2005-07-27 19:16:02',3791,521,'2005-08-04 22:30:02',2,'2006-02-15 21:30:53'),(7479,'2005-07-27 19:18:17',218,434,'2005-07-30 18:55:17',1,'2006-02-15 21:30:53'),(7480,'2005-07-27 19:19:53',452,344,'2005-08-02 01:01:53',1,'2006-02-15 21:30:53'),(7481,'2005-07-27 19:20:25',1804,240,'2005-07-29 19:07:25',2,'2006-02-15 21:30:53'),(7482,'2005-07-27 19:24:16',485,348,'2005-08-05 18:49:16',2,'2006-02-15 21:30:53'),(7483,'2005-07-27 19:25:00',3678,106,'2005-07-29 21:19:00',2,'2006-02-15 21:30:53'),(7484,'2005-07-27 19:28:17',2746,211,'2005-07-31 20:05:17',2,'2006-02-15 21:30:53'),(7485,'2005-07-27 19:29:09',631,362,'2005-07-30 16:28:09',1,'2006-02-15 21:30:53'),(7486,'2005-07-27 19:29:24',4362,393,'2005-08-02 20:46:24',2,'2006-02-15 21:30:53'),(7487,'2005-07-27 19:32:45',4451,58,'2005-07-28 15:11:45',1,'2006-02-15 21:30:53'),(7488,'2005-07-27 19:36:15',554,365,'2005-08-05 14:14:15',1,'2006-02-15 21:30:53'),(7489,'2005-07-27 19:39:38',3732,16,'2005-07-30 23:10:38',2,'2006-02-15 21:30:53'),(7490,'2005-07-27 19:48:12',4503,595,'2005-08-04 17:15:12',1,'2006-02-15 21:30:53'),(7491,'2005-07-27 19:53:23',4261,239,'2005-07-28 23:25:23',2,'2006-02-15 21:30:53'),(7492,'2005-07-27 19:54:18',908,155,'2005-07-31 15:36:18',2,'2006-02-15 21:30:53'),(7493,'2005-07-27 19:55:46',2868,177,'2005-08-02 19:46:46',2,'2006-02-15 21:30:53'),(7494,'2005-07-27 19:56:31',2259,60,'2005-07-30 14:28:31',1,'2006-02-15 21:30:53'),(7495,'2005-07-27 20:01:20',3446,426,'2005-07-30 16:40:20',1,'2006-02-15 21:30:53'),(7496,'2005-07-27 20:04:05',2449,257,'2005-08-02 20:12:05',1,'2006-02-15 21:30:53'),(7497,'2005-07-27 20:05:27',286,387,'2005-07-30 22:47:27',1,'2006-02-15 21:30:53'),(7498,'2005-07-27 20:09:31',1144,455,'2005-07-29 23:38:31',1,'2006-02-15 21:30:53'),(7499,'2005-07-27 20:10:28',3503,157,'2005-07-30 16:24:28',1,'2006-02-15 21:30:53'),(7500,'2005-07-27 20:16:03',609,160,'2005-07-29 18:50:03',1,'2006-02-15 21:30:53'),(7501,'2005-07-27 20:16:59',1464,587,'2005-08-04 00:11:59',2,'2006-02-15 21:30:53'),(7502,'2005-07-27 20:19:08',3229,303,'2005-07-28 18:32:08',2,'2006-02-15 21:30:53'),(7503,'2005-07-27 20:23:12',579,3,'2005-08-05 18:46:12',2,'2006-02-15 21:30:53'),(7504,'2005-07-27 20:24:31',3354,283,'2005-07-30 21:25:31',2,'2006-02-15 21:30:53'),(7505,'2005-07-27 20:28:03',1342,209,'2005-08-03 17:04:03',1,'2006-02-15 21:30:53'),(7506,'2005-07-27 20:28:34',2091,527,'2005-08-05 18:14:34',1,'2006-02-15 21:30:53'),(7507,'2005-07-27 20:31:48',3618,512,'2005-08-02 17:27:48',1,'2006-02-15 21:30:53'),(7508,'2005-07-27 20:33:08',3401,465,'2005-08-01 01:29:08',1,'2006-02-15 21:30:53'),(7509,'2005-07-27 20:37:19',4134,228,'2005-08-04 19:35:19',2,'2006-02-15 21:30:53'),(7510,'2005-07-27 20:37:57',1617,257,'2005-08-01 17:14:57',2,'2006-02-15 21:30:53'),(7511,'2005-07-27 20:38:40',4044,591,'2005-08-04 22:36:40',2,'2006-02-15 21:30:53'),(7512,'2005-07-27 20:40:40',1343,352,'2005-08-05 01:44:40',1,'2006-02-15 21:30:53'),(7513,'2005-07-27 20:51:04',939,411,'2005-08-03 20:15:04',2,'2006-02-15 21:30:53'),(7514,'2005-07-27 20:51:49',400,44,'2005-07-29 18:21:49',2,'2006-02-15 21:30:53'),(7515,'2005-07-27 20:52:37',1211,390,'2005-08-02 20:17:37',2,'2006-02-15 21:30:53'),(7516,'2005-07-27 20:55:28',2178,134,'2005-07-30 00:50:28',1,'2006-02-15 21:30:53'),(7517,'2005-07-27 20:57:07',3177,41,'2005-08-04 15:08:07',1,'2006-02-15 21:30:53'),(7518,'2005-07-27 21:01:16',2676,257,'2005-08-03 15:26:16',1,'2006-02-15 21:30:53'),(7519,'2005-07-27 21:01:41',4009,124,'2005-08-05 19:15:41',1,'2006-02-15 21:30:53'),(7520,'2005-07-27 21:02:02',3875,191,'2005-07-28 18:18:02',1,'2006-02-15 21:30:53'),(7521,'2005-07-27 21:04:42',3144,176,'2005-08-03 16:06:42',1,'2006-02-15 21:30:53'),(7522,'2005-07-27 21:11:03',2038,478,'2005-08-02 16:40:03',1,'2006-02-15 21:30:53'),(7523,'2005-07-27 21:11:23',4153,410,'2005-07-28 16:37:23',1,'2006-02-15 21:30:53'),(7524,'2005-07-27 21:11:44',4295,225,'2005-08-03 02:17:44',1,'2006-02-15 21:30:53'),(7525,'2005-07-27 21:13:28',4084,281,'2005-08-04 19:44:28',2,'2006-02-15 21:30:53'),(7526,'2005-07-27 21:13:47',696,44,'2005-08-05 15:23:47',2,'2006-02-15 21:30:53'),(7527,'2005-07-27 21:14:28',2124,426,'2005-08-05 21:08:28',1,'2006-02-15 21:30:53'),(7528,'2005-07-27 21:15:25',1218,213,'2005-08-03 19:12:25',1,'2006-02-15 21:30:53'),(7529,'2005-07-27 21:18:08',3644,145,'2005-08-06 00:59:08',1,'2006-02-15 21:30:53'),(7530,'2005-07-27 21:18:58',3810,98,'2005-07-31 01:51:58',2,'2006-02-15 21:30:53'),(7531,'2005-07-27 21:19:34',2393,221,'2005-08-06 01:07:34',2,'2006-02-15 21:30:53'),(7532,'2005-07-27 21:20:52',677,34,'2005-07-30 21:38:52',1,'2006-02-15 21:30:53'),(7533,'2005-07-27 21:24:33',1791,594,'2005-08-05 16:33:33',2,'2006-02-15 21:30:53'),(7534,'2005-07-27 21:26:17',2276,282,'2005-08-05 00:23:17',2,'2006-02-15 21:30:53'),(7535,'2005-07-27 21:32:39',772,123,'2005-08-05 23:42:39',1,'2006-02-15 21:30:53'),(7536,'2005-07-27 21:34:09',3417,307,'2005-08-02 03:26:09',1,'2006-02-15 21:30:53'),(7537,'2005-07-27 21:36:09',4456,269,'2005-08-01 01:51:09',1,'2006-02-15 21:30:53'),(7538,'2005-07-27 21:38:04',2486,361,'2005-08-02 03:14:04',1,'2006-02-15 21:30:53'),(7539,'2005-07-27 21:39:42',1849,423,'2005-08-06 00:12:42',1,'2006-02-15 21:30:53'),(7540,'2005-07-27 21:39:55',2198,207,'2005-08-04 18:10:55',2,'2006-02-15 21:30:53'),(7541,'2005-07-27 21:40:05',4100,206,'2005-07-29 16:13:05',1,'2006-02-15 21:30:53'),(7542,'2005-07-27 21:43:04',1912,110,'2005-07-30 00:02:04',1,'2006-02-15 21:30:53'),(7543,'2005-07-27 21:44:28',1289,526,'2005-08-04 21:42:28',2,'2006-02-15 21:30:53'),(7544,'2005-07-27 21:47:37',766,249,'2005-08-05 02:29:37',2,'2006-02-15 21:30:53'),(7545,'2005-07-27 21:48:03',2541,292,'2005-08-01 22:23:03',2,'2006-02-15 21:30:53'),(7546,'2005-07-27 21:50:09',3683,494,'2005-08-05 03:07:09',2,'2006-02-15 21:30:53'),(7547,'2005-07-27 21:51:48',1733,547,'2005-08-06 01:05:48',2,'2006-02-15 21:30:53'),(7548,'2005-07-27 21:53:18',2194,484,'2005-08-02 17:50:18',1,'2006-02-15 21:30:53'),(7549,'2005-07-27 21:53:21',1765,591,'2005-08-05 18:53:21',1,'2006-02-15 21:30:53'),(7550,'2005-07-27 21:55:07',4488,71,'2005-07-28 23:34:07',2,'2006-02-15 21:30:53'),(7551,'2005-07-27 21:59:15',2635,304,'2005-07-31 19:54:15',2,'2006-02-15 21:30:53'),(7552,'2005-07-27 22:03:41',2166,16,'2005-07-28 22:24:41',1,'2006-02-15 21:30:53'),(7553,'2005-07-27 22:11:36',1643,275,'2005-08-03 17:52:36',1,'2006-02-15 21:30:53'),(7554,'2005-07-27 22:12:41',1805,135,'2005-08-04 01:34:41',2,'2006-02-15 21:30:53'),(7555,'2005-07-27 22:17:05',3421,533,'2005-08-02 02:50:05',2,'2006-02-15 21:30:53'),(7556,'2005-07-27 22:17:17',794,188,'2005-07-28 19:17:17',2,'2006-02-15 21:30:53'),(7557,'2005-07-27 22:18:19',3152,131,'2005-07-29 00:24:19',1,'2006-02-15 21:30:53'),(7558,'2005-07-27 22:19:08',550,80,'2005-07-30 21:31:08',1,'2006-02-15 21:30:53'),(7559,'2005-07-27 22:20:03',661,149,'2005-08-06 00:26:03',2,'2006-02-15 21:30:53'),(7560,'2005-07-27 22:20:17',3574,562,'2005-08-02 23:00:17',2,'2006-02-15 21:30:53'),(7561,'2005-07-27 22:21:05',3433,291,'2005-08-04 01:02:05',1,'2006-02-15 21:30:53'),(7562,'2005-07-27 22:25:15',4417,366,'2005-08-01 01:21:15',2,'2006-02-15 21:30:53'),(7563,'2005-07-27 22:25:36',2709,453,'2005-08-01 03:59:36',2,'2006-02-15 21:30:53'),(7564,'2005-07-27 22:31:17',2887,291,'2005-08-01 01:05:17',2,'2006-02-15 21:30:53'),(7565,'2005-07-27 22:33:59',1028,114,'2005-07-30 03:03:59',2,'2006-02-15 21:30:53'),(7566,'2005-07-27 22:34:45',1802,144,'2005-08-01 22:20:45',1,'2006-02-15 21:30:53'),(7567,'2005-07-27 22:38:05',1066,504,'2005-07-30 17:20:05',1,'2006-02-15 21:30:53'),(7568,'2005-07-27 22:38:53',1578,296,'2005-07-29 00:51:53',1,'2006-02-15 21:30:53'),(7569,'2005-07-27 22:38:53',2315,528,'2005-08-05 19:03:53',2,'2006-02-15 21:30:53'),(7570,'2005-07-27 22:40:06',3189,110,'2005-07-28 23:14:06',1,'2006-02-15 21:30:53'),(7571,'2005-07-27 22:43:42',3850,368,'2005-07-30 22:17:42',1,'2006-02-15 21:30:53'),(7572,'2005-07-27 22:44:29',3068,532,'2005-08-01 03:04:29',1,'2006-02-15 21:30:53'),(7573,'2005-07-27 22:46:20',314,467,'2005-08-04 01:55:20',1,'2006-02-15 21:30:53'),(7574,'2005-07-27 22:53:00',298,200,'2005-07-29 18:39:00',2,'2006-02-15 21:30:53'),(7575,'2005-07-27 22:53:52',702,582,'2005-07-29 02:02:52',1,'2006-02-15 21:30:53'),(7576,'2005-07-27 22:54:35',3374,446,'2005-08-03 03:53:35',2,'2006-02-15 21:30:53'),(7577,'2005-07-27 22:56:07',2723,332,'2005-08-05 21:23:07',2,'2006-02-15 21:30:53'),(7578,'2005-07-27 22:58:17',4210,332,'2005-07-29 23:14:17',1,'2006-02-15 21:30:53'),(7579,'2005-07-27 23:06:41',501,352,'2005-07-31 20:08:41',2,'2006-02-15 21:30:53'),(7580,'2005-07-27 23:07:40',338,28,'2005-08-05 02:17:40',1,'2006-02-15 21:30:53'),(7581,'2005-07-27 23:14:35',2051,166,'2005-07-29 21:30:35',1,'2006-02-15 21:30:53'),(7582,'2005-07-27 23:15:14',3941,128,'2005-07-29 03:18:14',2,'2006-02-15 21:30:53'),(7583,'2005-07-27 23:15:22',2890,198,'2005-08-04 04:39:22',2,'2006-02-15 21:30:53'),(7584,'2005-07-27 23:15:46',4390,338,'2005-08-03 02:18:46',2,'2006-02-15 21:30:53'),(7585,'2005-07-27 23:18:22',467,440,'2005-07-30 23:08:22',1,'2006-02-15 21:30:53'),(7586,'2005-07-27 23:19:29',15,316,'2005-07-29 23:04:29',1,'2006-02-15 21:30:53'),(7587,'2005-07-27 23:23:03',655,113,'2005-08-01 17:34:03',1,'2006-02-15 21:30:53'),(7588,'2005-07-27 23:23:31',4033,360,'2005-08-04 02:54:31',1,'2006-02-15 21:30:53'),(7589,'2005-07-27 23:23:36',1569,32,'2005-08-04 00:16:36',1,'2006-02-15 21:30:53'),(7590,'2005-07-27 23:24:24',2152,73,'2005-07-28 19:53:24',2,'2006-02-15 21:30:53'),(7591,'2005-07-27 23:25:54',651,525,'2005-08-02 22:54:54',1,'2006-02-15 21:30:53'),(7592,'2005-07-27 23:26:04',4105,316,'2005-07-29 23:48:04',2,'2006-02-15 21:30:53'),(7593,'2005-07-27 23:28:47',1158,436,'2005-08-02 19:51:47',1,'2006-02-15 21:30:53'),(7594,'2005-07-27 23:30:41',3230,424,'2005-08-02 04:29:41',1,'2006-02-15 21:30:53'),(7595,'2005-07-27 23:32:23',4313,390,'2005-08-03 05:28:23',1,'2006-02-15 21:30:53'),(7596,'2005-07-27 23:33:57',2097,275,'2005-08-01 20:46:57',2,'2006-02-15 21:30:53'),(7597,'2005-07-27 23:35:49',2856,169,'2005-07-30 21:38:49',1,'2006-02-15 21:30:53'),(7598,'2005-07-27 23:36:01',4545,438,'2005-07-29 23:35:01',2,'2006-02-15 21:30:53'),(7599,'2005-07-27 23:38:46',3272,87,'2005-07-28 22:52:46',1,'2006-02-15 21:30:53'),(7600,'2005-07-27 23:41:18',3492,107,'2005-08-06 04:40:18',1,'2006-02-15 21:30:53'),(7601,'2005-07-27 23:48:15',903,228,'2005-07-29 02:45:15',1,'2006-02-15 21:30:53'),(7602,'2005-07-27 23:48:35',2516,366,'2005-08-04 17:58:35',1,'2006-02-15 21:30:53'),(7603,'2005-07-27 23:54:44',124,497,'2005-07-29 01:24:44',1,'2006-02-15 21:30:53'),(7604,'2005-07-27 23:54:52',3720,406,'2005-08-05 03:04:52',2,'2006-02-15 21:30:53'),(7605,'2005-07-27 23:57:01',1391,576,'2005-08-03 04:11:01',1,'2006-02-15 21:30:53'),(7606,'2005-07-28 00:02:15',637,201,'2005-07-29 03:14:15',2,'2006-02-15 21:30:53'),(7607,'2005-07-28 00:05:53',3914,293,'2005-07-31 04:13:53',1,'2006-02-15 21:30:53'),(7608,'2005-07-28 00:08:36',1256,167,'2005-07-28 18:13:36',1,'2006-02-15 21:30:53'),(7609,'2005-07-28 00:11:00',3655,179,'2005-07-31 03:04:00',1,'2006-02-15 21:30:53'),(7610,'2005-07-28 00:11:35',1279,450,'2005-07-31 00:33:35',1,'2006-02-15 21:30:53'),(7611,'2005-07-28 00:11:47',3347,467,'2005-07-28 18:35:47',1,'2006-02-15 21:30:53'),(7612,'2005-07-28 00:11:55',1411,563,'2005-07-30 00:47:55',1,'2006-02-15 21:30:53'),(7613,'2005-07-28 00:13:58',4253,202,'2005-08-06 05:36:58',2,'2006-02-15 21:30:53'),(7614,'2005-07-28 00:14:38',3475,440,'2005-07-29 18:18:38',1,'2006-02-15 21:30:53'),(7615,'2005-07-28 00:15:24',3884,373,'2005-07-31 02:00:24',1,'2006-02-15 21:30:53'),(7616,'2005-07-28 00:15:26',3790,9,'2005-07-30 21:52:26',1,'2006-02-15 21:30:53'),(7617,'2005-07-28 00:18:40',2904,340,'2005-08-01 01:17:40',1,'2006-02-15 21:30:53'),(7618,'2005-07-28 00:24:14',774,271,'2005-08-01 04:35:14',1,'2006-02-15 21:30:53'),(7619,'2005-07-28 00:25:41',1057,419,'2005-07-30 04:35:41',2,'2006-02-15 21:30:53'),(7620,'2005-07-28 00:27:17',931,580,'2005-07-31 02:04:17',1,'2006-02-15 21:30:53'),(7621,'2005-07-28 00:34:06',1833,88,'2005-08-06 00:13:06',1,'2006-02-15 21:30:53'),(7622,'2005-07-28 00:37:34',4014,198,'2005-07-31 23:27:34',2,'2006-02-15 21:30:53'),(7623,'2005-07-28 00:37:41',1146,459,'2005-08-04 19:38:41',2,'2006-02-15 21:30:53'),(7624,'2005-07-28 00:37:44',2756,415,'2005-07-30 21:26:44',1,'2006-02-15 21:30:53'),(7625,'2005-07-28 00:47:56',3129,382,'2005-08-02 23:34:56',1,'2006-02-15 21:30:53'),(7626,'2005-07-28 00:49:01',4200,450,'2005-07-31 00:43:01',1,'2006-02-15 21:30:53'),(7627,'2005-07-28 00:56:47',782,52,'2005-08-02 04:16:47',1,'2006-02-15 21:30:53'),(7628,'2005-07-28 00:58:04',1240,516,'2005-08-03 19:16:04',1,'2006-02-15 21:30:53'),(7629,'2005-07-28 01:00:09',2453,229,'2005-07-30 06:49:09',1,'2006-02-15 21:30:53'),(7630,'2005-07-28 01:01:03',2798,351,'2005-07-31 01:08:03',2,'2006-02-15 21:30:53'),(7631,'2005-07-28 01:01:15',2437,132,'2005-08-01 06:16:15',2,'2006-02-15 21:30:53'),(7632,'2005-07-28 01:02:40',3233,181,'2005-07-30 05:31:40',2,'2006-02-15 21:30:53'),(7633,'2005-07-28 01:03:41',4171,402,'2005-08-01 23:54:41',2,'2006-02-15 21:30:53'),(7634,'2005-07-28 01:07:01',4487,365,'2005-07-31 05:00:01',1,'2006-02-15 21:30:53'),(7635,'2005-07-28 01:08:11',55,413,'2005-08-01 03:32:11',2,'2006-02-15 21:30:53'),(7636,'2005-07-28 01:08:36',202,51,'2005-08-03 21:36:36',1,'2006-02-15 21:30:53'),(7637,'2005-07-28 01:12:25',87,91,'2005-08-02 03:48:25',1,'2006-02-15 21:30:53'),(7638,'2005-07-28 01:13:26',1890,172,'2005-07-28 20:34:26',1,'2006-02-15 21:30:53'),(7639,'2005-07-28 01:14:36',767,459,'2005-07-29 00:19:36',1,'2006-02-15 21:30:53'),(7640,'2005-07-28 01:14:49',3014,229,'2005-08-03 21:50:49',1,'2006-02-15 21:30:53'),(7641,'2005-07-28 01:15:45',1868,475,'2005-08-04 23:50:45',1,'2006-02-15 21:30:53'),(7642,'2005-07-28 01:16:51',3995,523,'2005-08-02 00:45:51',2,'2006-02-15 21:30:53'),(7643,'2005-07-28 01:19:44',4369,407,'2005-08-04 21:16:44',1,'2006-02-15 21:30:53'),(7644,'2005-07-28 01:27:33',882,173,'2005-07-31 22:58:33',2,'2006-02-15 21:30:53'),(7645,'2005-07-28 01:27:42',830,381,'2005-08-03 07:16:42',2,'2006-02-15 21:30:53'),(7646,'2005-07-28 01:31:45',1615,255,'2005-07-31 07:16:45',1,'2006-02-15 21:30:53'),(7647,'2005-07-28 01:35:17',3079,36,'2005-08-01 00:14:17',1,'2006-02-15 21:30:53'),(7648,'2005-07-28 01:35:33',797,310,'2005-08-04 06:21:33',2,'2006-02-15 21:30:53'),(7649,'2005-07-28 01:37:26',2704,318,'2005-07-28 21:18:26',1,'2006-02-15 21:30:53'),(7650,'2005-07-28 01:47:20',701,290,'2005-08-05 06:00:20',2,'2006-02-15 21:30:53'),(7651,'2005-07-28 01:48:32',2753,401,'2005-08-03 03:10:32',2,'2006-02-15 21:30:53'),(7652,'2005-07-28 01:50:29',92,5,'2005-07-30 22:23:29',2,'2006-02-15 21:30:53'),(7653,'2005-07-28 01:58:30',814,232,'2005-07-28 23:32:30',2,'2006-02-15 21:30:53'),(7654,'2005-07-28 02:00:14',1009,360,'2005-07-31 20:50:14',2,'2006-02-15 21:30:53'),(7655,'2005-07-28 02:01:11',2665,513,'2005-07-30 23:12:11',2,'2006-02-15 21:30:53'),(7656,'2005-07-28 02:07:19',178,148,'2005-07-31 04:05:19',1,'2006-02-15 21:30:53'),(7657,'2005-07-28 02:09:00',2319,518,'2005-08-04 21:44:00',1,'2006-02-15 21:30:53'),(7658,'2005-07-28 02:09:12',1798,272,'2005-07-30 00:54:12',2,'2006-02-15 21:30:53'),(7659,'2005-07-28 02:09:45',1622,584,'2005-08-02 05:34:45',2,'2006-02-15 21:30:53'),(7660,'2005-07-28 02:10:10',4385,4,'2005-07-30 04:29:10',2,'2006-02-15 21:30:53'),(7661,'2005-07-28 02:10:27',3060,256,'2005-08-05 03:45:27',2,'2006-02-15 21:30:53'),(7662,'2005-07-28 02:16:08',1017,534,'2005-08-03 21:51:08',1,'2006-02-15 21:30:53'),(7663,'2005-07-28 02:19:48',832,470,'2005-07-30 21:43:48',2,'2006-02-15 21:30:53'),(7664,'2005-07-28 02:24:23',1989,461,'2005-07-29 23:01:23',1,'2006-02-15 21:30:53'),(7665,'2005-07-28 02:28:30',1455,590,'2005-07-31 20:42:30',1,'2006-02-15 21:30:53'),(7666,'2005-07-28 02:35:12',688,196,'2005-08-05 05:43:12',2,'2006-02-15 21:30:53'),(7667,'2005-07-28 02:37:22',2415,443,'2005-08-05 21:37:22',1,'2006-02-15 21:30:53'),(7668,'2005-07-28 02:41:31',3880,508,'2005-08-02 06:08:31',1,'2006-02-15 21:30:53'),(7669,'2005-07-28 02:44:07',2624,483,'2005-07-29 00:54:07',1,'2006-02-15 21:30:53'),(7670,'2005-07-28 02:44:25',1356,252,'2005-07-29 21:55:25',2,'2006-02-15 21:30:53'),(7671,'2005-07-28 02:48:31',3464,442,'2005-07-30 23:04:31',1,'2006-02-15 21:30:53'),(7672,'2005-07-28 02:49:41',573,542,'2005-08-04 02:38:41',1,'2006-02-15 21:30:53'),(7673,'2005-07-28 02:53:53',2368,409,'2005-08-06 00:07:53',1,'2006-02-15 21:30:53'),(7674,'2005-07-28 02:54:30',682,177,'2005-08-05 23:09:30',1,'2006-02-15 21:30:53'),(7675,'2005-07-28 02:55:20',153,189,'2005-07-31 05:27:20',1,'2006-02-15 21:30:53'),(7676,'2005-07-28 02:55:27',1110,508,'2005-08-01 03:50:27',2,'2006-02-15 21:30:53'),(7677,'2005-07-28 02:56:37',4464,566,'2005-07-31 02:21:37',1,'2006-02-15 21:30:53'),(7678,'2005-07-28 02:58:16',3398,510,'2005-08-06 04:22:16',1,'2006-02-15 21:30:53'),(7679,'2005-07-28 02:58:39',1063,444,'2005-08-02 04:58:39',1,'2006-02-15 21:30:53'),(7680,'2005-07-28 02:59:08',1784,559,'2005-08-03 03:37:08',2,'2006-02-15 21:30:53'),(7681,'2005-07-28 03:07:09',1176,432,'2005-07-29 08:30:09',2,'2006-02-15 21:30:53'),(7682,'2005-07-28 03:07:29',3296,400,'2005-08-04 08:48:29',2,'2006-02-15 21:30:53'),(7683,'2005-07-28 03:11:29',1760,73,'2005-08-04 00:14:29',1,'2006-02-15 21:30:53'),(7684,'2005-07-28 03:11:54',3365,40,'2005-07-31 04:40:54',2,'2006-02-15 21:30:53'),(7685,'2005-07-28 03:13:00',2213,468,'2005-08-01 00:29:00',2,'2006-02-15 21:30:53'),(7686,'2005-07-28 03:19:23',2144,184,'2005-08-04 05:17:23',2,'2006-02-15 21:30:53'),(7687,'2005-07-28 03:20:26',689,325,'2005-08-02 05:48:26',2,'2006-02-15 21:30:53'),(7688,'2005-07-28 03:20:47',1179,491,'2005-08-06 06:07:47',2,'2006-02-15 21:30:53'),(7689,'2005-07-28 03:21:24',1803,253,'2005-07-31 08:01:24',2,'2006-02-15 21:30:53'),(7690,'2005-07-28 03:26:21',1076,150,'2005-07-29 00:08:21',1,'2006-02-15 21:30:53'),(7691,'2005-07-28 03:30:09',1579,112,'2005-07-29 21:31:09',1,'2006-02-15 21:30:53'),(7692,'2005-07-28 03:30:21',267,392,'2005-07-30 22:25:21',1,'2006-02-15 21:30:53'),(7693,'2005-07-28 03:31:22',2479,148,'2005-07-31 06:42:22',2,'2006-02-15 21:30:53'),(7694,'2005-07-28 03:39:25',2892,538,'2005-07-31 05:47:25',1,'2006-02-15 21:30:53'),(7695,'2005-07-28 03:41:13',2742,323,'2005-08-06 05:06:13',2,'2006-02-15 21:30:53'),(7696,'2005-07-28 03:41:35',3463,56,'2005-08-06 05:48:35',2,'2006-02-15 21:30:53'),(7697,'2005-07-28 03:43:45',3966,377,'2005-08-03 07:55:45',2,'2006-02-15 21:30:53'),(7698,'2005-07-28 03:44:14',3650,561,'2005-08-04 03:44:14',2,'2006-02-15 21:30:53'),(7699,'2005-07-28 03:52:21',4332,53,'2005-08-01 05:00:21',2,'2006-02-15 21:30:53'),(7700,'2005-07-28 03:54:14',3546,124,'2005-08-05 06:20:14',2,'2006-02-15 21:30:53'),(7701,'2005-07-28 03:54:28',1604,306,'2005-08-01 08:39:28',2,'2006-02-15 21:30:53'),(7702,'2005-07-28 03:56:05',253,349,'2005-07-31 03:29:05',1,'2006-02-15 21:30:53'),(7703,'2005-07-28 03:59:21',2150,3,'2005-08-05 08:52:21',1,'2006-02-15 21:30:53'),(7704,'2005-07-28 04:02:13',2342,265,'2005-08-04 00:51:13',1,'2006-02-15 21:30:53'),(7705,'2005-07-28 04:02:58',1072,22,'2005-08-05 01:19:58',2,'2006-02-15 21:30:53'),(7706,'2005-07-28 04:03:17',994,263,'2005-07-29 22:16:17',2,'2006-02-15 21:30:53'),(7707,'2005-07-28 04:07:47',2563,232,'2005-07-29 02:02:47',1,'2006-02-15 21:30:53'),(7708,'2005-07-28 04:19:15',398,363,'2005-08-04 04:41:15',1,'2006-02-15 21:30:53'),(7709,'2005-07-28 04:22:14',3800,81,'2005-07-31 09:18:14',2,'2006-02-15 21:30:53'),(7710,'2005-07-28 04:24:07',3716,77,'2005-08-03 22:49:07',2,'2006-02-15 21:30:53'),(7711,'2005-07-28 04:26:42',2695,426,'2005-07-29 07:30:42',2,'2006-02-15 21:30:53'),(7712,'2005-07-28 04:29:53',3256,361,'2005-08-02 00:57:53',2,'2006-02-15 21:30:53'),(7713,'2005-07-28 04:32:14',2018,572,'2005-08-03 04:30:14',2,'2006-02-15 21:30:53'),(7714,'2005-07-28 04:32:30',940,70,'2005-08-02 07:10:30',2,'2006-02-15 21:30:53'),(7715,'2005-07-28 04:32:38',3210,512,'2005-08-05 00:37:38',2,'2006-02-15 21:30:53'),(7716,'2005-07-28 04:33:15',1493,284,'2005-08-04 00:08:15',2,'2006-02-15 21:30:53'),(7717,'2005-07-28 04:33:54',730,459,'2005-07-30 02:46:54',2,'2006-02-15 21:30:53'),(7718,'2005-07-28 04:37:59',3587,4,'2005-07-29 09:20:59',2,'2006-02-15 21:30:53'),(7719,'2005-07-28 04:39:09',2481,286,'2005-08-05 03:15:09',1,'2006-02-15 21:30:53'),(7720,'2005-07-28 04:41:44',185,520,'2005-08-04 06:51:44',2,'2006-02-15 21:30:53'),(7721,'2005-07-28 04:42:58',2228,83,'2005-07-31 07:52:58',1,'2006-02-15 21:30:53'),(7722,'2005-07-28 04:44:58',3828,309,'2005-07-30 01:29:58',1,'2006-02-15 21:30:53'),(7723,'2005-07-28 04:45:37',3263,147,'2005-07-30 09:03:37',2,'2006-02-15 21:30:53'),(7724,'2005-07-28 04:46:30',346,3,'2005-08-04 08:41:30',1,'2006-02-15 21:30:53'),(7725,'2005-07-28 04:47:14',1922,326,'2005-08-04 09:03:14',1,'2006-02-15 21:30:53'),(7726,'2005-07-28 04:52:19',2578,219,'2005-08-04 09:05:19',1,'2006-02-15 21:30:53'),(7727,'2005-07-28 04:52:43',2274,123,'2005-08-03 01:12:43',2,'2006-02-15 21:30:53'),(7728,'2005-07-28 04:56:33',492,130,'2005-07-31 07:54:33',1,'2006-02-15 21:30:53'),(7729,'2005-07-28 04:57:57',1491,89,'2005-07-30 09:38:57',1,'2006-02-15 21:30:53'),(7730,'2005-07-28 04:59:48',3118,155,'2005-08-04 04:35:48',2,'2006-02-15 21:30:53'),(7731,'2005-07-28 05:01:18',1533,413,'2005-07-29 02:22:18',1,'2006-02-15 21:30:53'),(7732,'2005-07-28 05:03:32',3597,158,'2005-07-29 10:20:32',1,'2006-02-15 21:30:53'),(7733,'2005-07-28 05:04:47',10,82,'2005-08-05 05:12:47',2,'2006-02-15 21:30:53'),(7734,'2005-07-28 05:08:44',2726,135,'2005-07-30 09:42:44',2,'2006-02-15 21:30:53'),(7735,'2005-07-28 05:09:56',3949,372,'2005-07-31 23:34:56',2,'2006-02-15 21:30:53'),(7736,'2005-07-28 05:12:04',4466,205,'2005-08-05 02:28:04',2,'2006-02-15 21:30:53'),(7737,'2005-07-28 05:15:03',1235,494,'2005-08-04 01:24:03',1,'2006-02-15 21:30:53'),(7738,'2005-07-28 05:21:42',80,10,'2005-08-03 09:46:42',2,'2006-02-15 21:30:53'),(7739,'2005-07-28 05:21:51',1554,186,'2005-07-30 02:06:51',2,'2006-02-15 21:30:53'),(7740,'2005-07-28 05:23:36',3613,395,'2005-08-01 02:20:36',2,'2006-02-15 21:30:53'),(7741,'2005-07-28 05:25:55',3917,591,'2005-08-02 02:40:55',1,'2006-02-15 21:30:53'),(7742,'2005-07-28 05:33:16',1808,49,'2005-08-06 01:04:16',2,'2006-02-15 21:30:53'),(7743,'2005-07-28 05:36:13',2883,210,'2005-08-03 11:28:13',2,'2006-02-15 21:30:53'),(7744,'2005-07-28 05:38:20',1863,288,'2005-07-31 11:00:20',1,'2006-02-15 21:30:53'),(7745,'2005-07-28 05:46:28',1014,285,'2005-08-06 07:44:28',2,'2006-02-15 21:30:53'),(7746,'2005-07-28 05:48:56',176,299,'2005-08-04 07:33:56',1,'2006-02-15 21:30:53'),(7747,'2005-07-28 05:50:11',1775,78,'2005-08-03 09:51:11',1,'2006-02-15 21:30:53'),(7748,'2005-07-28 05:52:23',3523,415,'2005-07-31 01:35:23',2,'2006-02-15 21:30:53'),(7749,'2005-07-28 05:53:36',3585,232,'2005-08-01 03:49:36',1,'2006-02-15 21:30:53'),(7750,'2005-07-28 05:55:30',820,220,'2005-08-06 04:32:30',2,'2006-02-15 21:30:53'),(7751,'2005-07-28 05:56:13',4425,176,'2005-08-05 08:08:13',1,'2006-02-15 21:30:53'),(7752,'2005-07-28 06:01:00',2218,209,'2005-08-03 06:09:00',1,'2006-02-15 21:30:53'),(7753,'2005-07-28 06:09:19',3071,531,'2005-08-06 06:17:19',1,'2006-02-15 21:30:53'),(7754,'2005-07-28 06:10:55',1981,138,'2005-07-29 02:46:55',1,'2006-02-15 21:30:53'),(7755,'2005-07-28 06:22:18',1247,449,'2005-08-06 11:38:18',2,'2006-02-15 21:30:53'),(7756,'2005-07-28 06:22:52',1611,469,'2005-08-05 11:55:52',2,'2006-02-15 21:30:53'),(7757,'2005-07-28 06:23:00',3445,502,'2005-07-30 12:02:00',1,'2006-02-15 21:30:53'),(7758,'2005-07-28 06:23:41',4333,356,'2005-08-03 06:06:41',2,'2006-02-15 21:30:53'),(7759,'2005-07-28 06:28:45',3381,405,'2005-08-03 11:38:45',1,'2006-02-15 21:30:53'),(7760,'2005-07-28 06:29:45',409,307,'2005-08-03 01:36:45',1,'2006-02-15 21:30:53'),(7761,'2005-07-28 06:31:45',3568,112,'2005-07-30 01:36:45',2,'2006-02-15 21:30:53'),(7762,'2005-07-28 06:34:23',3234,462,'2005-08-05 09:55:23',2,'2006-02-15 21:30:53'),(7763,'2005-07-28 06:35:16',2461,116,'2005-08-03 02:46:16',2,'2006-02-15 21:30:53'),(7764,'2005-07-28 06:40:05',3537,142,'2005-07-30 02:51:05',2,'2006-02-15 21:30:53'),(7765,'2005-07-28 06:40:33',4098,294,'2005-07-31 01:25:33',1,'2006-02-15 21:30:53'),(7766,'2005-07-28 06:41:57',2774,292,'2005-08-06 11:21:57',2,'2006-02-15 21:30:53'),(7767,'2005-07-28 06:42:02',329,139,'2005-08-05 11:19:02',2,'2006-02-15 21:30:53'),(7768,'2005-07-28 06:44:03',2450,123,'2005-07-29 09:46:03',1,'2006-02-15 21:30:53'),(7769,'2005-07-28 06:45:23',3250,30,'2005-07-30 12:18:23',1,'2006-02-15 21:30:53'),(7770,'2005-07-28 06:49:35',1486,507,'2005-08-06 08:16:35',1,'2006-02-15 21:30:53'),(7771,'2005-07-28 06:52:12',1003,175,'2005-07-30 12:48:12',1,'2006-02-15 21:30:53'),(7772,'2005-07-28 06:59:09',986,552,'2005-08-01 10:49:09',1,'2006-02-15 21:30:53'),(7773,'2005-07-28 07:02:17',4143,380,'2005-07-30 04:16:17',2,'2006-02-15 21:30:53'),(7774,'2005-07-28 07:03:25',3483,259,'2005-08-03 02:05:25',1,'2006-02-15 21:30:53'),(7775,'2005-07-28 07:04:36',3795,475,'2005-08-03 06:36:36',2,'2006-02-15 21:30:53'),(7776,'2005-07-28 07:04:36',4170,385,'2005-08-01 09:32:36',1,'2006-02-15 21:30:53'),(7777,'2005-07-28 07:04:42',4422,287,'2005-07-29 01:57:42',1,'2006-02-15 21:30:53'),(7778,'2005-07-28 07:10:11',1044,248,'2005-08-05 05:09:11',1,'2006-02-15 21:30:53'),(7779,'2005-07-28 07:11:11',3663,414,'2005-07-30 11:12:11',1,'2006-02-15 21:30:53'),(7780,'2005-07-28 07:11:55',3069,236,'2005-08-06 05:41:55',1,'2006-02-15 21:30:53'),(7781,'2005-07-28 07:13:20',541,539,'2005-08-06 05:43:20',2,'2006-02-15 21:30:53'),(7782,'2005-07-28 07:13:40',3770,199,'2005-08-05 06:50:40',1,'2006-02-15 21:30:53'),(7783,'2005-07-28 07:14:43',3817,581,'2005-08-01 05:03:43',2,'2006-02-15 21:30:53'),(7784,'2005-07-28 07:15:32',3611,505,'2005-08-06 05:00:32',1,'2006-02-15 21:30:53'),(7785,'2005-07-28 07:16:11',4277,460,'2005-08-02 03:43:11',1,'2006-02-15 21:30:53'),(7786,'2005-07-28 07:18:26',2285,222,'2005-07-29 03:00:26',1,'2006-02-15 21:30:53'),(7787,'2005-07-28 07:19:02',2191,203,'2005-08-06 02:38:02',2,'2006-02-15 21:30:53'),(7788,'2005-07-28 07:21:55',95,487,'2005-08-03 06:33:55',1,'2006-02-15 21:30:53'),(7789,'2005-07-28 07:22:07',2837,426,'2005-08-06 10:47:07',1,'2006-02-15 21:30:53'),(7790,'2005-07-28 07:22:35',2327,189,'2005-07-30 02:59:35',1,'2006-02-15 21:30:53'),(7791,'2005-07-28 07:22:51',822,514,'2005-07-30 03:09:51',1,'2006-02-15 21:30:53'),(7792,'2005-07-28 07:24:02',3736,236,'2005-08-04 11:13:02',1,'2006-02-15 21:30:53'),(7793,'2005-07-28 07:26:14',24,32,'2005-08-03 07:45:14',1,'2006-02-15 21:30:53'),(7794,'2005-07-28 07:28:03',4509,510,'2005-08-06 12:32:03',2,'2006-02-15 21:30:53'),(7795,'2005-07-28 07:28:16',1278,38,'2005-07-31 12:03:16',1,'2006-02-15 21:30:53'),(7796,'2005-07-28 07:39:39',622,419,'2005-08-02 05:34:39',2,'2006-02-15 21:30:53'),(7797,'2005-07-28 07:41:07',4180,370,'2005-07-31 04:13:07',1,'2006-02-15 21:30:53'),(7798,'2005-07-28 07:41:59',3281,236,'2005-07-31 12:36:59',1,'2006-02-15 21:30:53'),(7799,'2005-07-28 07:42:09',2163,384,'2005-08-02 10:02:09',2,'2006-02-15 21:30:53'),(7800,'2005-07-28 07:50:59',3386,499,'2005-07-29 07:31:59',2,'2006-02-15 21:30:53'),(7801,'2005-07-28 07:51:56',2052,9,'2005-07-30 12:18:56',1,'2006-02-15 21:30:53'),(7802,'2005-07-28 07:51:57',1108,298,'2005-07-29 09:32:57',1,'2006-02-15 21:30:53'),(7803,'2005-07-28 07:52:13',3438,449,'2005-08-03 13:35:13',1,'2006-02-15 21:30:53'),(7804,'2005-07-28 07:56:00',592,249,'2005-07-30 10:33:00',2,'2006-02-15 21:30:53'),(7805,'2005-07-28 07:56:41',3204,366,'2005-08-04 06:53:41',1,'2006-02-15 21:30:53'),(7806,'2005-07-28 07:58:17',4317,440,'2005-08-06 10:15:17',1,'2006-02-15 21:30:53'),(7807,'2005-07-28 07:58:27',2204,504,'2005-08-01 02:48:27',2,'2006-02-15 21:30:53'),(7808,'2005-07-28 07:58:56',4052,327,'2005-08-02 10:49:56',1,'2006-02-15 21:30:53'),(7809,'2005-07-28 07:59:46',4150,94,'2005-08-02 02:56:46',1,'2006-02-15 21:30:53'),(7810,'2005-07-28 08:00:38',30,537,'2005-08-02 06:14:38',2,'2006-02-15 21:30:53'),(7811,'2005-07-28 08:06:01',3891,347,'2005-07-30 10:08:01',2,'2006-02-15 21:30:53'),(7812,'2005-07-28 08:06:52',4556,237,'2005-07-31 09:57:52',2,'2006-02-15 21:30:53'),(7813,'2005-07-28 08:08:27',4216,411,'2005-07-30 03:08:27',2,'2006-02-15 21:30:53'),(7814,'2005-07-28 08:09:48',2662,258,'2005-08-01 13:14:48',2,'2006-02-15 21:30:53'),(7815,'2005-07-28 08:14:11',3551,300,'2005-07-30 02:34:11',2,'2006-02-15 21:30:53'),(7816,'2005-07-28 08:14:12',1422,283,'2005-07-30 08:00:12',2,'2006-02-15 21:30:53'),(7817,'2005-07-28 08:20:55',600,259,'2005-07-30 11:55:55',1,'2006-02-15 21:30:53'),(7818,'2005-07-28 08:25:00',1672,301,'2005-07-29 14:07:00',1,'2006-02-15 21:30:53'),(7819,'2005-07-28 08:27:14',3182,100,'2005-08-02 12:34:14',2,'2006-02-15 21:30:53'),(7820,'2005-07-28 08:28:51',4475,459,'2005-08-05 10:00:51',1,'2006-02-15 21:30:53'),(7821,'2005-07-28 08:31:23',1184,433,'2005-08-03 05:08:23',2,'2006-02-15 21:30:53'),(7822,'2005-07-28 08:31:45',1428,156,'2005-07-31 11:06:45',1,'2006-02-15 21:30:53'),(7823,'2005-07-28 08:32:53',84,428,'2005-08-06 11:59:53',1,'2006-02-15 21:30:53'),(7824,'2005-07-28 08:34:47',2241,153,'2005-08-05 09:43:47',2,'2006-02-15 21:30:53'),(7825,'2005-07-28 08:34:57',4340,348,'2005-08-06 02:45:57',1,'2006-02-15 21:30:53'),(7826,'2005-07-28 08:35:51',1473,214,'2005-08-05 07:57:51',2,'2006-02-15 21:30:53'),(7827,'2005-07-28 08:37:22',659,422,'2005-07-31 04:27:22',1,'2006-02-15 21:30:53'),(7828,'2005-07-28 08:40:46',1710,212,'2005-07-30 14:22:46',1,'2006-02-15 21:30:53'),(7829,'2005-07-28 08:43:39',111,5,'2005-08-04 14:33:39',1,'2006-02-15 21:30:53'),(7830,'2005-07-28 08:43:49',4492,144,'2005-08-04 09:30:49',2,'2006-02-15 21:30:53'),(7831,'2005-07-28 08:44:21',4436,499,'2005-07-30 03:25:21',2,'2006-02-15 21:30:53'),(7832,'2005-07-28 08:46:11',284,92,'2005-08-04 06:55:11',1,'2006-02-15 21:30:53'),(7833,'2005-07-28 08:46:14',1166,263,'2005-08-04 06:13:14',1,'2006-02-15 21:30:53'),(7834,'2005-07-28 08:46:43',4124,278,'2005-07-31 07:09:43',2,'2006-02-15 21:30:53'),(7835,'2005-07-28 08:49:39',43,547,'2005-08-02 07:16:39',2,'2006-02-15 21:30:53'),(7836,'2005-07-28 08:55:27',1770,481,'2005-08-05 09:35:27',1,'2006-02-15 21:30:53'),(7837,'2005-07-28 08:58:32',115,374,'2005-07-29 14:11:32',1,'2006-02-15 21:30:53'),(7838,'2005-07-28 09:00:21',2222,550,'2005-07-29 05:52:21',1,'2006-02-15 21:30:53'),(7839,'2005-07-28 09:01:13',914,518,'2005-08-04 11:46:13',1,'2006-02-15 21:30:53'),(7840,'2005-07-28 09:03:02',2899,482,'2005-08-06 06:15:02',1,'2006-02-15 21:30:53'),(7841,'2005-07-28 09:04:45',1092,1,'2005-07-30 12:37:45',2,'2006-02-15 21:30:53'),(7842,'2005-07-28 09:10:06',2447,276,'2005-08-04 06:52:06',2,'2006-02-15 21:30:53'),(7843,'2005-07-28 09:10:22',3962,75,'2005-08-01 11:27:22',2,'2006-02-15 21:30:53'),(7844,'2005-07-28 09:16:19',4220,187,'2005-08-05 14:06:19',2,'2006-02-15 21:30:53'),(7845,'2005-07-28 09:18:07',38,352,'2005-08-04 10:23:07',2,'2006-02-15 21:30:53'),(7846,'2005-07-28 09:21:18',4201,309,'2005-08-06 07:10:18',2,'2006-02-15 21:30:53'),(7847,'2005-07-28 09:23:14',3602,323,'2005-08-02 11:02:14',2,'2006-02-15 21:30:53'),(7848,'2005-07-28 09:24:31',162,509,'2005-08-05 05:11:31',2,'2006-02-15 21:30:53'),(7849,'2005-07-28 09:30:02',996,423,'2005-08-06 12:41:02',2,'2006-02-15 21:30:53'),(7850,'2005-07-28 09:31:13',2913,118,'2005-08-02 14:06:13',2,'2006-02-15 21:30:53'),(7851,'2005-07-28 09:31:58',3596,253,'2005-08-04 09:58:58',2,'2006-02-15 21:30:53'),(7852,'2005-07-28 09:34:29',3462,123,'2005-07-30 05:48:29',1,'2006-02-15 21:30:53'),(7853,'2005-07-28 09:36:38',4053,318,'2005-07-29 15:01:38',1,'2006-02-15 21:30:53'),(7854,'2005-07-28 09:42:31',3531,84,'2005-08-02 09:25:31',1,'2006-02-15 21:30:53'),(7855,'2005-07-28 09:43:02',2474,288,'2005-07-30 12:57:02',2,'2006-02-15 21:30:53'),(7856,'2005-07-28 09:48:24',2376,375,'2005-07-29 09:49:24',2,'2006-02-15 21:30:53'),(7857,'2005-07-28 09:49:40',4027,500,'2005-08-01 05:34:40',2,'2006-02-15 21:30:53'),(7858,'2005-07-28 09:50:18',992,144,'2005-08-05 14:33:18',1,'2006-02-15 21:30:53'),(7859,'2005-07-28 09:57:17',3392,547,'2005-08-04 06:04:17',1,'2006-02-15 21:30:53'),(7860,'2005-07-28 09:58:02',2400,241,'2005-08-05 06:04:02',1,'2006-02-15 21:30:53'),(7861,'2005-07-28 10:02:01',1781,208,'2005-08-06 13:17:01',1,'2006-02-15 21:30:53'),(7862,'2005-07-28 10:02:25',2507,299,'2005-08-05 13:10:25',1,'2006-02-15 21:30:53'),(7863,'2005-07-28 10:05:46',1212,182,'2005-07-29 14:42:46',1,'2006-02-15 21:30:53'),(7864,'2005-07-28 10:06:10',1238,20,'2005-08-04 08:38:10',1,'2006-02-15 21:30:53'),(7865,'2005-07-28 10:07:04',2334,148,'2005-08-06 08:16:04',2,'2006-02-15 21:30:53'),(7866,'2005-07-28 10:08:01',1602,101,'2005-08-04 09:29:01',2,'2006-02-15 21:30:53'),(7867,'2005-07-28 10:08:54',713,297,'2005-07-30 10:26:54',2,'2006-02-15 21:30:53'),(7868,'2005-07-28 10:08:55',3589,43,'2005-07-30 11:52:55',1,'2006-02-15 21:30:53'),(7869,'2005-07-28 10:13:15',3005,298,'2005-08-03 12:58:15',1,'2006-02-15 21:30:53'),(7870,'2005-07-28 10:16:03',970,240,'2005-07-31 16:06:03',1,'2006-02-15 21:30:53'),(7871,'2005-07-28 10:16:37',3990,491,'2005-08-05 11:24:37',2,'2006-02-15 21:30:53'),(7872,'2005-07-28 10:18:16',826,66,'2005-07-31 10:57:16',1,'2006-02-15 21:30:53'),(7873,'2005-07-28 10:19:46',2947,82,'2005-07-31 04:43:46',2,'2006-02-15 21:30:53'),(7874,'2005-07-28 10:21:52',2981,86,'2005-08-06 16:19:52',1,'2006-02-15 21:30:53'),(7875,'2005-07-28 10:23:48',3693,504,'2005-08-02 12:09:48',1,'2006-02-15 21:30:53'),(7876,'2005-07-28 10:24:22',3563,577,'2005-08-04 07:15:22',1,'2006-02-15 21:30:53'),(7877,'2005-07-28 10:25:36',2576,65,'2005-08-05 12:46:36',1,'2006-02-15 21:30:53'),(7878,'2005-07-28 10:27:10',1564,141,'2005-07-29 11:22:10',1,'2006-02-15 21:30:53'),(7879,'2005-07-28 10:27:46',1969,125,'2005-07-31 07:48:46',1,'2006-02-15 21:30:53'),(7880,'2005-07-28 10:30:37',3670,182,'2005-08-03 08:05:37',2,'2006-02-15 21:30:53'),(7881,'2005-07-28 10:33:22',533,249,'2005-08-02 12:10:22',1,'2006-02-15 21:30:53'),(7882,'2005-07-28 10:33:42',3922,516,'2005-07-29 13:49:42',1,'2006-02-15 21:30:53'),(7883,'2005-07-28 10:37:20',447,526,'2005-08-02 05:08:20',1,'2006-02-15 21:30:53'),(7884,'2005-07-28 10:37:24',3871,502,'2005-07-31 10:31:24',1,'2006-02-15 21:30:53'),(7885,'2005-07-28 10:37:41',4294,260,'2005-08-05 07:56:41',1,'2006-02-15 21:30:53'),(7886,'2005-07-28 10:37:55',237,352,'2005-08-04 13:22:55',2,'2006-02-15 21:30:53'),(7887,'2005-07-28 10:40:12',2820,253,'2005-08-02 06:09:12',1,'2006-02-15 21:30:53'),(7888,'2005-07-28 10:40:24',545,378,'2005-08-01 16:18:24',1,'2006-02-15 21:30:53'),(7889,'2005-07-28 10:43:21',3123,416,'2005-07-30 09:11:21',1,'2006-02-15 21:30:53'),(7890,'2005-07-28 10:43:40',3443,553,'2005-07-31 06:07:40',1,'2006-02-15 21:30:53'),(7891,'2005-07-28 10:43:56',3637,560,'2005-08-05 14:04:56',2,'2006-02-15 21:30:53'),(7892,'2005-07-28 10:46:58',2717,397,'2005-07-30 16:03:58',1,'2006-02-15 21:30:53'),(7893,'2005-07-28 10:49:27',3058,479,'2005-08-02 06:46:27',1,'2006-02-15 21:30:53'),(7894,'2005-07-28 10:53:58',3532,330,'2005-08-02 13:42:58',2,'2006-02-15 21:30:53'),(7895,'2005-07-28 10:57:15',900,67,'2005-08-02 15:10:15',2,'2006-02-15 21:30:53'),(7896,'2005-07-28 11:00:58',3561,389,'2005-08-04 14:30:58',2,'2006-02-15 21:30:53'),(7897,'2005-07-28 11:01:51',1396,75,'2005-07-31 13:13:51',1,'2006-02-15 21:30:53'),(7898,'2005-07-28 11:08:22',2680,499,'2005-08-03 12:28:22',1,'2006-02-15 21:30:53'),(7899,'2005-07-28 11:10:12',4130,452,'2005-08-02 13:20:12',2,'2006-02-15 21:30:53'),(7900,'2005-07-28 11:11:33',2781,154,'2005-08-05 06:29:33',2,'2006-02-15 21:30:53'),(7901,'2005-07-28 11:12:12',4435,280,'2005-08-01 08:13:12',1,'2006-02-15 21:30:53'),(7902,'2005-07-28 11:14:19',3066,356,'2005-07-30 09:01:19',2,'2006-02-15 21:30:53'),(7903,'2005-07-28 11:20:36',2767,588,'2005-07-31 09:16:36',1,'2006-02-15 21:30:53'),(7904,'2005-07-28 11:25:39',316,477,'2005-08-06 08:22:39',2,'2006-02-15 21:30:53'),(7905,'2005-07-28 11:26:57',4287,455,'2005-08-02 06:14:57',1,'2006-02-15 21:30:53'),(7906,'2005-07-28 11:31:42',1216,85,'2005-08-01 11:56:42',2,'2006-02-15 21:30:53'),(7907,'2005-07-28 11:32:00',3252,433,'2005-07-30 15:27:00',1,'2006-02-15 21:30:53'),(7908,'2005-07-28 11:32:57',3646,360,'2005-08-03 13:30:57',2,'2006-02-15 21:30:53'),(7909,'2005-07-28 11:38:08',3355,210,'2005-07-29 13:54:08',1,'2006-02-15 21:30:53'),(7910,'2005-07-28 11:44:56',2044,480,'2005-08-05 14:37:56',2,'2006-02-15 21:30:53'),(7911,'2005-07-28 11:46:45',390,3,'2005-07-29 07:19:45',1,'2006-02-15 21:30:53'),(7912,'2005-07-28 11:46:58',745,127,'2005-08-05 12:50:58',1,'2006-02-15 21:30:53'),(7913,'2005-07-28 11:47:23',4001,459,'2005-08-05 06:36:23',1,'2006-02-15 21:30:53'),(7914,'2005-07-28 11:48:08',2796,469,'2005-07-30 14:14:08',1,'2006-02-15 21:30:53'),(7915,'2005-07-28 11:49:46',2088,186,'2005-08-04 12:21:46',2,'2006-02-15 21:30:53'),(7916,'2005-07-28 11:49:53',3877,13,'2005-07-29 15:01:53',1,'2006-02-15 21:30:53'),(7917,'2005-07-28 11:56:57',2071,416,'2005-07-29 14:06:57',1,'2006-02-15 21:30:53'),(7918,'2005-07-28 11:58:53',63,473,'2005-08-04 12:08:53',2,'2006-02-15 21:30:53'),(7919,'2005-07-28 11:59:45',2138,36,'2005-08-06 11:19:45',1,'2006-02-15 21:30:53'),(7920,'2005-07-28 12:01:19',66,48,'2005-08-05 07:08:19',1,'2006-02-15 21:30:53'),(7921,'2005-07-28 12:02:46',116,100,'2005-08-01 12:08:46',2,'2006-02-15 21:30:53'),(7922,'2005-07-28 12:05:25',817,125,'2005-08-02 12:13:25',2,'2006-02-15 21:30:53'),(7923,'2005-07-28 12:08:29',2273,458,'2005-08-04 12:30:29',1,'2006-02-15 21:30:53'),(7924,'2005-07-28 12:08:53',656,97,'2005-07-30 06:45:53',2,'2006-02-15 21:30:53'),(7925,'2005-07-28 12:10:02',1763,500,'2005-08-02 15:50:02',1,'2006-02-15 21:30:53'),(7926,'2005-07-28 12:13:02',180,78,'2005-08-05 08:54:02',1,'2006-02-15 21:30:53'),(7927,'2005-07-28 12:13:42',1263,27,'2005-08-05 12:02:42',1,'2006-02-15 21:30:53'),(7928,'2005-07-28 12:15:51',912,473,'2005-08-05 06:34:51',1,'2006-02-15 21:30:53'),(7929,'2005-07-28 12:16:40',2652,307,'2005-07-31 13:09:40',2,'2006-02-15 21:30:53'),(7930,'2005-07-28 12:21:08',4181,320,'2005-07-30 11:56:08',1,'2006-02-15 21:30:53'),(7931,'2005-07-28 12:23:41',1923,326,'2005-08-06 09:49:41',2,'2006-02-15 21:30:53'),(7932,'2005-07-28 12:24:54',3738,462,'2005-07-30 11:33:54',1,'2006-02-15 21:30:53'),(7933,'2005-07-28 12:27:27',3175,297,'2005-07-29 10:34:27',2,'2006-02-15 21:30:53'),(7934,'2005-07-28 12:33:10',2642,332,'2005-08-04 07:40:10',2,'2006-02-15 21:30:53'),(7935,'2005-07-28 12:33:17',3664,462,'2005-08-04 14:40:17',2,'2006-02-15 21:30:53'),(7936,'2005-07-28 12:33:21',563,520,'2005-07-30 13:31:21',2,'2006-02-15 21:30:53'),(7937,'2005-07-28 12:38:22',3944,323,'2005-07-29 09:19:22',1,'2006-02-15 21:30:53'),(7938,'2005-07-28 12:39:11',2579,114,'2005-08-04 16:56:11',1,'2006-02-15 21:30:53'),(7939,'2005-07-28 12:45:47',2004,37,'2005-07-30 18:32:47',2,'2006-02-15 21:30:53'),(7940,'2005-07-28 12:46:47',901,409,'2005-07-29 06:46:47',2,'2006-02-15 21:30:53'),(7941,'2005-07-28 12:47:20',439,566,'2005-08-01 08:46:20',1,'2006-02-15 21:30:53'),(7942,'2005-07-28 12:49:44',1636,56,'2005-07-31 18:07:44',2,'2006-02-15 21:30:53'),(7943,'2005-07-28 12:50:55',2914,346,'2005-08-04 11:29:55',2,'2006-02-15 21:30:53'),(7944,'2005-07-28 12:51:22',3148,504,'2005-07-30 12:19:22',1,'2006-02-15 21:30:53'),(7945,'2005-07-28 12:53:58',3326,316,'2005-08-03 14:04:58',1,'2006-02-15 21:30:53'),(7946,'2005-07-28 13:01:22',99,90,'2005-08-03 15:27:22',2,'2006-02-15 21:30:53'),(7947,'2005-07-28 13:05:50',2504,279,'2005-08-02 11:16:50',2,'2006-02-15 21:30:53'),(7948,'2005-07-28 13:06:16',215,589,'2005-08-05 08:38:16',1,'2006-02-15 21:30:53'),(7949,'2005-07-28 13:07:24',2145,487,'2005-08-02 09:41:24',1,'2006-02-15 21:30:53'),(7950,'2005-07-28 13:21:00',2286,122,'2005-08-05 18:47:00',2,'2006-02-15 21:30:53'),(7951,'2005-07-28 13:21:16',3979,237,'2005-08-06 08:21:16',1,'2006-02-15 21:30:53'),(7952,'2005-07-28 13:23:49',3313,158,'2005-08-01 08:50:49',1,'2006-02-15 21:30:53'),(7953,'2005-07-28 13:24:32',4471,319,'2005-08-05 16:09:32',2,'2006-02-15 21:30:53'),(7954,'2005-07-28 13:25:05',3735,145,'2005-07-29 18:50:05',2,'2006-02-15 21:30:53'),(7955,'2005-07-28 13:31:36',1519,522,'2005-07-30 10:03:36',1,'2006-02-15 21:30:53'),(7956,'2005-07-28 13:32:17',4335,118,'2005-08-06 14:51:17',2,'2006-02-15 21:30:53'),(7957,'2005-07-28 13:34:08',1623,78,'2005-08-05 07:58:08',1,'2006-02-15 21:30:53'),(7958,'2005-07-28 13:34:34',421,593,'2005-07-29 16:03:34',1,'2006-02-15 21:30:53'),(7959,'2005-07-28 13:43:20',1549,178,'2005-08-02 12:13:20',2,'2006-02-15 21:30:53'),(7960,'2005-07-28 13:47:08',2718,324,'2005-08-03 15:17:08',1,'2006-02-15 21:30:53'),(7961,'2005-07-28 13:47:21',3284,45,'2005-08-01 09:33:21',1,'2006-02-15 21:30:53'),(7962,'2005-07-28 13:48:09',1746,126,'2005-08-03 19:21:09',1,'2006-02-15 21:30:53'),(7963,'2005-07-28 13:48:38',921,247,'2005-08-06 19:37:38',2,'2006-02-15 21:30:53'),(7964,'2005-07-28 13:49:58',2528,574,'2005-08-03 10:03:58',2,'2006-02-15 21:30:53'),(7965,'2005-07-28 13:52:57',3671,134,'2005-07-29 14:54:57',1,'2006-02-15 21:30:53'),(7966,'2005-07-28 13:53:54',2514,91,'2005-08-06 15:32:54',1,'2006-02-15 21:30:53'),(7967,'2005-07-28 13:56:51',2040,187,'2005-08-03 19:38:51',1,'2006-02-15 21:30:53'),(7968,'2005-07-28 13:57:35',3865,597,'2005-08-04 13:40:35',1,'2006-02-15 21:30:53'),(7969,'2005-07-28 13:57:37',2224,123,'2005-08-04 19:31:37',1,'2006-02-15 21:30:53'),(7970,'2005-07-28 13:58:38',998,507,'2005-08-02 12:27:38',1,'2006-02-15 21:30:53'),(7971,'2005-07-28 14:00:47',1910,445,'2005-08-02 10:01:47',1,'2006-02-15 21:30:53'),(7972,'2005-07-28 14:07:46',2930,269,'2005-08-01 11:28:46',2,'2006-02-15 21:30:53'),(7973,'2005-07-28 14:10:06',3936,339,'2005-07-29 11:26:06',2,'2006-02-15 21:30:53'),(7974,'2005-07-28 14:11:57',2442,380,'2005-08-02 19:25:57',2,'2006-02-15 21:30:53'),(7975,'2005-07-28 14:12:47',2565,211,'2005-08-05 09:18:47',1,'2006-02-15 21:30:53'),(7976,'2005-07-28 14:13:24',2296,205,'2005-08-05 09:01:24',1,'2006-02-15 21:30:53'),(7977,'2005-07-28 14:15:54',3162,389,'2005-08-01 18:58:54',2,'2006-02-15 21:30:53'),(7978,'2005-07-28 14:16:14',508,431,'2005-08-01 12:53:14',2,'2006-02-15 21:30:53'),(7979,'2005-07-28 14:16:30',3303,94,'2005-08-03 09:39:30',2,'2006-02-15 21:30:53'),(7980,'2005-07-28 14:16:49',1019,329,'2005-08-05 09:20:49',1,'2006-02-15 21:30:53'),(7981,'2005-07-28 14:18:25',90,392,'2005-08-04 15:21:25',2,'2006-02-15 21:30:53'),(7982,'2005-07-28 14:19:59',668,71,'2005-07-29 14:09:59',2,'2006-02-15 21:30:53'),(7983,'2005-07-28 14:23:01',1836,115,'2005-07-29 11:51:01',1,'2006-02-15 21:30:53'),(7984,'2005-07-28 14:27:51',2893,208,'2005-08-04 17:34:51',1,'2006-02-15 21:30:53'),(7985,'2005-07-28 14:29:01',4022,388,'2005-08-03 17:20:01',2,'2006-02-15 21:30:53'),(7986,'2005-07-28 14:30:13',1283,395,'2005-08-05 09:35:13',1,'2006-02-15 21:30:53'),(7987,'2005-07-28 14:36:52',288,443,'2005-08-05 16:49:52',2,'2006-02-15 21:30:53'),(7988,'2005-07-28 14:37:18',2906,517,'2005-08-05 10:53:18',1,'2006-02-15 21:30:53'),(7989,'2005-07-28 14:39:05',3196,149,'2005-08-05 13:58:05',2,'2006-02-15 21:30:53'),(7990,'2005-07-28 14:43:08',188,232,'2005-08-01 10:51:08',2,'2006-02-15 21:30:53'),(7991,'2005-07-28 14:45:45',1133,59,'2005-07-29 15:05:45',2,'2006-02-15 21:30:53'),(7992,'2005-07-28 14:53:06',1851,33,'2005-07-29 18:17:06',1,'2006-02-15 21:30:53'),(7993,'2005-07-28 14:56:41',2926,353,'2005-08-01 17:01:41',2,'2006-02-15 21:30:53'),(7994,'2005-07-28 14:56:54',2431,21,'2005-07-30 09:56:54',2,'2006-02-15 21:30:53'),(7995,'2005-07-28 15:00:09',536,89,'2005-08-01 12:33:09',2,'2006-02-15 21:30:53'),(7996,'2005-07-28 15:00:49',2171,408,'2005-08-04 20:58:49',2,'2006-02-15 21:30:53'),(7997,'2005-07-28 15:02:25',1845,591,'2005-08-04 14:35:25',1,'2006-02-15 21:30:53'),(7998,'2005-07-28 15:08:48',1397,598,'2005-07-31 16:14:48',2,'2006-02-15 21:30:53'),(7999,'2005-07-28 15:10:14',2750,170,'2005-08-06 17:08:14',2,'2006-02-15 21:30:53'),(8000,'2005-07-28 15:10:25',1644,212,'2005-08-06 19:15:25',1,'2006-02-15 21:30:53'),(8001,'2005-07-28 15:10:55',2570,10,'2005-08-05 18:23:55',1,'2006-02-15 21:30:53'),(8002,'2005-07-28 15:11:00',22,449,'2005-07-31 15:46:00',2,'2006-02-15 21:30:53'),(8003,'2005-07-28 15:11:27',2775,89,'2005-08-04 18:35:27',1,'2006-02-15 21:30:53'),(8004,'2005-07-28 15:14:07',4428,393,'2005-07-30 19:32:07',2,'2006-02-15 21:30:53'),(8005,'2005-07-28 15:15:11',670,488,'2005-07-29 14:54:11',1,'2006-02-15 21:30:53'),(8006,'2005-07-28 15:15:41',3959,109,'2005-08-05 19:29:41',2,'2006-02-15 21:30:53'),(8007,'2005-07-28 15:22:27',1942,525,'2005-07-30 13:06:27',2,'2006-02-15 21:30:53'),(8008,'2005-07-28 15:25:55',2093,41,'2005-08-04 13:16:55',1,'2006-02-15 21:30:53'),(8009,'2005-07-28 15:25:58',337,372,'2005-08-04 10:16:58',2,'2006-02-15 21:30:53'),(8010,'2005-07-28 15:26:20',68,467,'2005-08-04 18:39:20',2,'2006-02-15 21:30:53'),(8011,'2005-07-28 15:26:39',4274,497,'2005-07-30 13:59:39',1,'2006-02-15 21:30:53'),(8012,'2005-07-28 15:29:00',1513,343,'2005-08-05 12:28:00',2,'2006-02-15 21:30:53'),(8013,'2005-07-28 15:30:26',2074,403,'2005-08-05 16:29:26',1,'2006-02-15 21:30:53'),(8014,'2005-07-28 15:32:07',2339,11,'2005-07-31 20:52:07',1,'2006-02-15 21:30:53'),(8015,'2005-07-28 15:33:03',1814,23,'2005-07-30 15:32:03',2,'2006-02-15 21:30:53'),(8016,'2005-07-28 15:35:41',516,391,'2005-07-30 20:06:41',2,'2006-02-15 21:30:53'),(8017,'2005-07-28 15:35:41',1764,328,'2005-08-01 19:12:41',1,'2006-02-15 21:30:53'),(8018,'2005-07-28 15:36:48',4129,377,'2005-08-06 20:04:48',1,'2006-02-15 21:30:53'),(8019,'2005-07-28 15:37:43',1844,84,'2005-08-04 15:40:43',2,'2006-02-15 21:30:53'),(8020,'2005-07-28 15:43:32',4459,498,'2005-08-05 12:19:32',1,'2006-02-15 21:30:53'),(8021,'2005-07-28 15:45:24',1920,501,'2005-08-04 10:49:24',1,'2006-02-15 21:30:53'),(8022,'2005-07-28 15:48:56',294,314,'2005-08-06 13:40:56',1,'2006-02-15 21:30:53'),(8023,'2005-07-28 15:53:29',2133,411,'2005-07-31 12:26:29',1,'2006-02-15 21:30:53'),(8024,'2005-07-28 15:55:40',1735,90,'2005-08-02 09:56:40',1,'2006-02-15 21:30:53'),(8025,'2005-07-28 16:03:27',2932,421,'2005-08-03 21:58:27',2,'2006-02-15 21:30:53'),(8026,'2005-07-28 16:05:38',4225,511,'2005-07-29 21:28:38',2,'2006-02-15 21:30:53'),(8027,'2005-07-28 16:09:57',1335,436,'2005-08-05 18:17:57',1,'2006-02-15 21:30:53'),(8028,'2005-07-28 16:11:15',2715,137,'2005-08-05 15:11:15',1,'2006-02-15 21:30:53'),(8029,'2005-07-28 16:11:21',4273,61,'2005-08-05 13:52:21',1,'2006-02-15 21:30:53'),(8030,'2005-07-28 16:12:53',2633,30,'2005-07-31 17:15:53',1,'2006-02-15 21:30:53'),(8031,'2005-07-28 16:15:49',2196,40,'2005-08-02 18:27:49',2,'2006-02-15 21:30:53'),(8032,'2005-07-28 16:17:00',431,230,'2005-07-29 13:32:00',1,'2006-02-15 21:30:53'),(8033,'2005-07-28 16:18:23',4268,1,'2005-07-30 17:56:23',1,'2006-02-15 21:30:53'),(8034,'2005-07-28 16:20:26',1997,502,'2005-08-04 19:11:26',2,'2006-02-15 21:30:53'),(8035,'2005-07-28 16:23:01',1503,14,'2005-08-05 10:52:01',1,'2006-02-15 21:30:53'),(8036,'2005-07-28 16:27:43',2741,412,'2005-08-01 13:41:43',2,'2006-02-15 21:30:53'),(8037,'2005-07-28 16:31:20',3973,409,'2005-07-31 12:18:20',2,'2006-02-15 21:30:53'),(8038,'2005-07-28 16:32:55',1225,30,'2005-07-30 21:08:55',1,'2006-02-15 21:30:53'),(8039,'2005-07-28 16:35:16',1996,203,'2005-07-30 14:49:16',1,'2006-02-15 21:30:53'),(8040,'2005-07-28 16:39:43',4543,163,'2005-08-02 20:00:43',2,'2006-02-15 21:30:53'),(8041,'2005-07-28 16:39:56',763,357,'2005-07-30 18:44:56',1,'2006-02-15 21:30:53'),(8042,'2005-07-28 16:45:11',4325,14,'2005-08-04 17:16:11',2,'2006-02-15 21:30:53'),(8043,'2005-07-28 16:45:44',208,577,'2005-08-01 12:26:44',1,'2006-02-15 21:30:53'),(8044,'2005-07-28 16:49:12',879,442,'2005-08-02 22:41:12',1,'2006-02-15 21:30:53'),(8045,'2005-07-28 16:49:38',3427,368,'2005-08-03 15:42:38',1,'2006-02-15 21:30:53'),(8046,'2005-07-28 16:49:41',2873,120,'2005-07-31 21:33:41',1,'2006-02-15 21:30:53'),(8047,'2005-07-28 16:49:43',2936,292,'2005-08-03 14:48:43',2,'2006-02-15 21:30:53'),(8048,'2005-07-28 16:50:26',2721,182,'2005-08-06 19:20:26',1,'2006-02-15 21:30:53'),(8049,'2005-07-28 16:51:58',673,42,'2005-07-31 22:18:58',1,'2006-02-15 21:30:53'),(8050,'2005-07-28 16:55:47',1864,488,'2005-08-02 13:20:47',1,'2006-02-15 21:30:53'),(8051,'2005-07-28 16:56:16',4405,192,'2005-07-29 22:48:16',1,'2006-02-15 21:30:53'),(8052,'2005-07-28 16:57:31',2460,166,'2005-08-03 18:03:31',2,'2006-02-15 21:30:53'),(8053,'2005-07-28 16:59:41',1511,526,'2005-08-03 22:28:41',2,'2006-02-15 21:30:53'),(8054,'2005-07-28 17:02:18',1062,225,'2005-08-06 11:55:18',1,'2006-02-15 21:30:53'),(8055,'2005-07-28 17:02:32',4162,304,'2005-07-31 22:05:32',2,'2006-02-15 21:30:53'),(8056,'2005-07-28 17:04:15',4018,589,'2005-08-03 19:11:15',2,'2006-02-15 21:30:53'),(8057,'2005-07-28 17:07:13',4177,483,'2005-08-03 16:25:13',1,'2006-02-15 21:30:53'),(8058,'2005-07-28 17:07:49',2148,404,'2005-08-03 22:57:49',1,'2006-02-15 21:30:53'),(8059,'2005-07-28 17:09:59',2611,372,'2005-07-31 15:42:59',2,'2006-02-15 21:30:53'),(8060,'2005-07-28 17:10:02',3765,577,'2005-08-05 17:11:02',1,'2006-02-15 21:30:53'),(8061,'2005-07-28 17:12:53',650,467,'2005-08-05 13:56:53',2,'2006-02-15 21:30:53'),(8062,'2005-07-28 17:15:06',1384,317,'2005-07-30 16:56:06',2,'2006-02-15 21:30:53'),(8063,'2005-07-28 17:15:11',935,163,'2005-08-04 16:45:11',1,'2006-02-15 21:30:53'),(8064,'2005-07-28 17:15:38',3788,488,'2005-08-04 18:04:38',2,'2006-02-15 21:30:53'),(8065,'2005-07-28 17:15:48',413,220,'2005-08-04 15:49:48',2,'2006-02-15 21:30:53'),(8066,'2005-07-28 17:20:09',3208,462,'2005-07-31 18:36:09',2,'2006-02-15 21:30:53'),(8067,'2005-07-28 17:20:17',3923,209,'2005-07-29 21:55:17',1,'2006-02-15 21:30:53'),(8068,'2005-07-28 17:22:28',209,216,'2005-07-29 12:24:28',2,'2006-02-15 21:30:53'),(8069,'2005-07-28 17:23:46',2822,178,'2005-07-30 16:19:46',1,'2006-02-15 21:30:53'),(8070,'2005-07-28 17:26:56',1606,89,'2005-08-01 17:33:56',1,'2006-02-15 21:30:53'),(8071,'2005-07-28 17:27:48',2582,131,'2005-08-03 11:48:48',2,'2006-02-15 21:30:53'),(8072,'2005-07-28 17:27:59',2347,99,'2005-07-30 19:08:59',1,'2006-02-15 21:30:53'),(8073,'2005-07-28 17:29:02',630,314,'2005-08-01 22:17:02',2,'2006-02-15 21:30:53'),(8074,'2005-07-28 17:33:39',1558,1,'2005-07-29 20:17:39',1,'2006-02-15 21:30:53'),(8075,'2005-07-28 17:37:28',2175,61,'2005-07-29 11:56:28',2,'2006-02-15 21:30:53'),(8076,'2005-07-28 17:45:58',214,17,'2005-08-04 18:07:58',2,'2006-02-15 21:30:53'),(8077,'2005-07-28 17:54:35',3253,122,'2005-07-29 19:28:35',2,'2006-02-15 21:30:53'),(8078,'2005-07-28 17:54:42',3839,407,'2005-07-30 18:18:42',2,'2006-02-15 21:30:53'),(8079,'2005-07-28 17:58:36',3564,432,'2005-07-29 14:48:36',2,'2006-02-15 21:30:53'),(8080,'2005-07-28 18:05:06',3035,406,'2005-07-29 22:44:06',2,'2006-02-15 21:30:53'),(8081,'2005-07-28 18:06:46',4404,362,'2005-08-04 18:54:46',1,'2006-02-15 21:30:53'),(8082,'2005-07-28 18:08:02',3089,423,'2005-08-04 14:33:02',2,'2006-02-15 21:30:53'),(8083,'2005-07-28 18:09:48',2187,30,'2005-08-04 21:47:48',2,'2006-02-15 21:30:53'),(8084,'2005-07-28 18:11:58',911,571,'2005-08-03 23:41:58',2,'2006-02-15 21:30:53'),(8085,'2005-07-28 18:13:15',3059,552,'2005-08-04 13:45:15',2,'2006-02-15 21:30:53'),(8086,'2005-07-28 18:17:14',1182,3,'2005-07-30 18:22:14',2,'2006-02-15 21:30:53'),(8087,'2005-07-28 18:21:16',1913,295,'2005-08-03 12:38:16',2,'2006-02-15 21:30:53'),(8088,'2005-07-28 18:23:49',2590,343,'2005-08-06 23:25:49',2,'2006-02-15 21:30:53'),(8089,'2005-07-28 18:26:47',1414,50,'2005-08-03 21:28:47',1,'2006-02-15 21:30:53'),(8090,'2005-07-28 18:27:29',1336,387,'2005-08-02 14:08:29',2,'2006-02-15 21:30:53'),(8091,'2005-07-28 18:27:29',3025,126,'2005-08-01 19:45:29',2,'2006-02-15 21:30:53'),(8092,'2005-07-28 18:28:07',2034,167,'2005-07-30 19:17:07',2,'2006-02-15 21:30:53'),(8093,'2005-07-28 18:29:16',1427,533,'2005-08-05 21:49:16',1,'2006-02-15 21:30:53'),(8094,'2005-07-28 18:30:28',4276,432,'2005-08-05 17:37:28',2,'2006-02-15 21:30:53'),(8095,'2005-07-28 18:32:40',2685,42,'2005-08-06 23:45:40',1,'2006-02-15 21:30:53'),(8096,'2005-07-28 18:32:46',502,506,'2005-08-06 15:00:46',1,'2006-02-15 21:30:53'),(8097,'2005-07-28 18:32:49',2719,436,'2005-08-06 16:09:49',1,'2006-02-15 21:30:53'),(8098,'2005-07-28 18:34:20',1757,41,'2005-07-31 19:07:20',2,'2006-02-15 21:30:53'),(8099,'2005-07-28 18:35:12',3694,36,'2005-07-30 15:44:12',2,'2006-02-15 21:30:53'),(8100,'2005-07-28 18:43:11',2859,11,'2005-08-02 15:56:11',2,'2006-02-15 21:30:53'),(8101,'2005-07-28 18:47:23',731,6,'2005-07-31 16:23:23',1,'2006-02-15 21:30:53'),(8102,'2005-07-28 18:49:43',4505,237,'2005-08-03 23:04:43',2,'2006-02-15 21:30:53'),(8103,'2005-07-28 18:50:14',4472,397,'2005-08-04 16:53:14',1,'2006-02-15 21:30:53'),(8104,'2005-07-28 18:59:36',1080,533,'2005-08-03 22:05:36',2,'2006-02-15 21:30:53'),(8105,'2005-07-28 18:59:46',1316,314,'2005-07-29 22:51:46',1,'2006-02-15 21:30:53'),(8106,'2005-07-28 19:02:46',963,137,'2005-07-30 20:48:46',2,'2006-02-15 21:30:53'),(8107,'2005-07-28 19:03:16',1318,518,'2005-08-05 17:18:16',2,'2006-02-15 21:30:53'),(8108,'2005-07-28 19:07:38',1600,295,'2005-08-03 15:13:38',2,'2006-02-15 21:30:53'),(8109,'2005-07-28 19:07:44',652,407,'2005-07-31 14:59:44',1,'2006-02-15 21:30:53'),(8110,'2005-07-28 19:07:45',1244,225,'2005-08-04 22:12:45',1,'2006-02-15 21:30:53'),(8111,'2005-07-28 19:10:03',3226,148,'2005-07-29 22:25:03',1,'2006-02-15 21:30:53'),(8112,'2005-07-28 19:11:07',2444,528,'2005-08-03 18:41:07',1,'2006-02-15 21:30:53'),(8113,'2005-07-28 19:14:00',4269,541,'2005-08-06 00:05:00',2,'2006-02-15 21:30:53'),(8114,'2005-07-28 19:14:06',815,509,'2005-08-05 13:16:06',1,'2006-02-15 21:30:53'),(8115,'2005-07-28 19:14:17',2080,106,'2005-08-03 14:58:17',2,'2006-02-15 21:30:53'),(8116,'2005-07-28 19:20:07',4497,1,'2005-07-29 22:54:07',1,'2006-02-15 21:30:53'),(8117,'2005-07-28 19:20:16',1502,300,'2005-08-05 23:55:16',1,'2006-02-15 21:30:53'),(8118,'2005-07-28 19:22:22',331,566,'2005-08-01 22:13:22',1,'2006-02-15 21:30:53'),(8119,'2005-07-28 19:23:15',1542,398,'2005-08-04 15:53:15',2,'2006-02-15 21:30:53'),(8120,'2005-07-28 19:24:24',3993,235,'2005-07-31 14:31:24',2,'2006-02-15 21:30:53'),(8121,'2005-07-28 19:25:45',2229,363,'2005-08-02 13:30:45',2,'2006-02-15 21:30:53'),(8122,'2005-07-28 19:27:37',2141,18,'2005-07-29 19:48:37',2,'2006-02-15 21:30:53'),(8123,'2005-07-28 19:28:23',2256,138,'2005-08-04 19:41:23',1,'2006-02-15 21:30:53'),(8124,'2005-07-28 19:28:58',1187,357,'2005-07-31 00:45:58',1,'2006-02-15 21:30:53'),(8125,'2005-07-28 19:31:48',4330,96,'2005-07-30 01:09:48',1,'2006-02-15 21:30:53'),(8126,'2005-07-28 19:32:41',719,537,'2005-08-05 00:33:41',2,'2006-02-15 21:30:53'),(8127,'2005-07-28 19:45:19',4265,20,'2005-07-31 22:07:19',2,'2006-02-15 21:30:53'),(8128,'2005-07-28 19:46:06',2872,71,'2005-08-06 16:10:06',2,'2006-02-15 21:30:53'),(8129,'2005-07-28 19:47:02',2546,345,'2005-07-31 21:33:02',2,'2006-02-15 21:30:53'),(8130,'2005-07-28 19:48:15',4055,499,'2005-08-05 14:18:15',2,'2006-02-15 21:30:53'),(8131,'2005-07-28 19:55:21',437,281,'2005-08-02 21:52:21',2,'2006-02-15 21:30:53'),(8132,'2005-07-28 19:57:31',1303,562,'2005-08-02 22:16:31',2,'2006-02-15 21:30:53'),(8133,'2005-07-28 20:01:06',849,461,'2005-08-01 20:01:06',1,'2006-02-15 21:30:53'),(8134,'2005-07-28 20:01:23',1695,41,'2005-08-03 01:00:23',2,'2006-02-15 21:30:53'),(8135,'2005-07-28 20:03:25',1339,164,'2005-08-03 01:28:25',2,'2006-02-15 21:30:53'),(8136,'2005-07-28 20:05:48',3434,429,'2005-08-01 20:31:48',2,'2006-02-15 21:30:53'),(8137,'2005-07-28 20:07:18',3188,312,'2005-08-03 17:41:18',1,'2006-02-15 21:30:53'),(8138,'2005-07-28 20:12:17',1258,371,'2005-08-01 15:21:17',2,'2006-02-15 21:30:53'),(8139,'2005-07-28 20:16:30',3651,177,'2005-08-03 18:00:30',2,'2006-02-15 21:30:53'),(8140,'2005-07-28 20:17:50',4270,119,'2005-07-30 18:07:50',1,'2006-02-15 21:30:53'),(8141,'2005-07-28 20:21:19',361,523,'2005-07-30 19:16:19',2,'2006-02-15 21:30:53'),(8142,'2005-07-28 20:21:54',1075,322,'2005-07-31 18:39:54',2,'2006-02-15 21:30:53'),(8143,'2005-07-28 20:23:11',3629,429,'2005-08-01 18:17:11',1,'2006-02-15 21:30:53'),(8144,'2005-07-28 20:30:55',3556,320,'2005-07-31 18:10:55',2,'2006-02-15 21:30:53'),(8145,'2005-07-28 20:34:41',937,198,'2005-08-05 15:28:41',2,'2006-02-15 21:30:53'),(8146,'2005-07-28 20:37:36',2430,476,'2005-07-31 16:03:36',2,'2006-02-15 21:30:53'),(8147,'2005-07-28 20:37:56',628,228,'2005-07-30 18:26:56',1,'2006-02-15 21:30:53'),(8148,'2005-07-28 20:39:47',537,347,'2005-08-02 16:29:47',1,'2006-02-15 21:30:53'),(8149,'2005-07-28 20:48:12',1790,591,'2005-08-01 20:07:12',2,'2006-02-15 21:30:53'),(8150,'2005-07-28 20:50:41',3489,497,'2005-08-02 00:43:41',1,'2006-02-15 21:30:53'),(8151,'2005-07-28 20:50:52',4370,495,'2005-07-31 14:50:52',1,'2006-02-15 21:30:53'),(8152,'2005-07-28 20:53:05',2557,46,'2005-08-06 20:03:05',2,'2006-02-15 21:30:53'),(8153,'2005-07-28 20:55:49',2173,347,'2005-08-01 15:56:49',2,'2006-02-15 21:30:53'),(8154,'2005-07-28 20:56:18',1180,285,'2005-08-01 21:56:18',2,'2006-02-15 21:30:53'),(8155,'2005-07-28 20:57:06',3023,428,'2005-08-02 18:40:06',2,'2006-02-15 21:30:53'),(8156,'2005-07-28 20:59:04',1977,257,'2005-08-01 01:52:04',1,'2006-02-15 21:30:53'),(8157,'2005-07-28 21:06:45',915,566,'2005-08-04 16:06:45',1,'2006-02-15 21:30:53'),(8158,'2005-07-28 21:08:46',4327,458,'2005-08-01 21:50:46',2,'2006-02-15 21:30:53'),(8159,'2005-07-28 21:09:28',1118,47,'2005-08-04 15:34:28',1,'2006-02-15 21:30:53'),(8160,'2005-07-28 21:10:30',2446,138,'2005-08-05 16:52:30',2,'2006-02-15 21:30:53'),(8161,'2005-07-28 21:11:00',848,555,'2005-08-03 23:32:00',1,'2006-02-15 21:30:53'),(8162,'2005-07-28 21:11:46',4393,107,'2005-08-04 18:26:46',1,'2006-02-15 21:30:53'),(8163,'2005-07-28 21:11:48',1919,157,'2005-07-31 18:30:48',1,'2006-02-15 21:30:53'),(8164,'2005-07-28 21:17:19',1674,461,'2005-07-30 21:12:19',2,'2006-02-15 21:30:53'),(8165,'2005-07-28 21:23:06',3460,197,'2005-08-01 21:32:06',1,'2006-02-15 21:30:53'),(8166,'2005-07-28 21:23:33',3906,42,'2005-08-03 21:07:33',2,'2006-02-15 21:30:53'),(8167,'2005-07-28 21:25:45',3181,311,'2005-08-04 18:04:45',1,'2006-02-15 21:30:53'),(8168,'2005-07-28 21:28:32',1120,365,'2005-07-30 02:10:32',1,'2006-02-15 21:30:53'),(8169,'2005-07-28 21:29:46',4086,366,'2005-08-06 22:29:46',1,'2006-02-15 21:30:53'),(8170,'2005-07-28 21:32:29',2495,40,'2005-08-03 22:02:29',1,'2006-02-15 21:30:53'),(8171,'2005-07-28 21:32:57',3380,296,'2005-07-30 21:19:57',1,'2006-02-15 21:30:53'),(8172,'2005-07-28 21:34:36',1237,329,'2005-08-06 23:53:36',1,'2006-02-15 21:30:53'),(8173,'2005-07-28 21:35:44',4377,332,'2005-08-06 19:15:44',2,'2006-02-15 21:30:53'),(8174,'2005-07-28 21:36:52',465,359,'2005-08-04 00:32:52',1,'2006-02-15 21:30:53'),(8175,'2005-07-28 21:38:16',641,429,'2005-08-07 01:34:16',2,'2006-02-15 21:30:53'),(8176,'2005-07-28 21:42:08',3527,347,'2005-08-03 22:59:08',2,'2006-02-15 21:30:53'),(8177,'2005-07-28 21:43:54',3696,122,'2005-08-02 22:38:54',2,'2006-02-15 21:30:53'),(8178,'2005-07-28 21:54:31',2825,503,'2005-08-02 23:56:31',2,'2006-02-15 21:30:53'),(8179,'2005-07-28 22:05:13',2902,578,'2005-07-30 21:57:13',2,'2006-02-15 21:30:53'),(8180,'2005-07-28 22:05:24',3236,281,'2005-08-01 19:09:24',1,'2006-02-15 21:30:53'),(8181,'2005-07-28 22:18:38',357,522,'2005-08-06 02:43:38',2,'2006-02-15 21:30:53'),(8182,'2005-07-28 22:19:12',4120,427,'2005-08-01 22:40:12',2,'2006-02-15 21:30:53'),(8183,'2005-07-28 22:21:07',1545,119,'2005-08-04 19:20:07',2,'2006-02-15 21:30:53'),(8184,'2005-07-28 22:22:35',1249,160,'2005-07-31 19:30:35',1,'2006-02-15 21:30:53'),(8185,'2005-07-28 22:23:49',2452,568,'2005-07-31 00:07:49',1,'2006-02-15 21:30:53'),(8186,'2005-07-28 22:30:27',4255,102,'2005-07-31 21:08:27',1,'2006-02-15 21:30:53'),(8187,'2005-07-28 22:33:53',945,87,'2005-08-03 03:54:53',1,'2006-02-15 21:30:53'),(8188,'2005-07-28 22:34:12',3826,10,'2005-08-01 02:32:12',2,'2006-02-15 21:30:53'),(8189,'2005-07-28 22:36:26',3515,361,'2005-08-04 00:12:26',2,'2006-02-15 21:30:53'),(8190,'2005-07-28 22:47:06',2290,267,'2005-08-04 21:51:06',1,'2006-02-15 21:30:53'),(8191,'2005-07-28 22:47:14',1777,508,'2005-07-31 23:13:14',2,'2006-02-15 21:30:53'),(8192,'2005-07-28 22:49:11',255,552,'2005-07-30 04:13:11',1,'2006-02-15 21:30:53'),(8193,'2005-07-28 22:50:50',2402,15,'2005-08-01 04:14:50',2,'2006-02-15 21:30:53'),(8194,'2005-07-28 22:51:44',1148,424,'2005-07-29 17:13:44',1,'2006-02-15 21:30:53'),(8195,'2005-07-28 22:52:58',3989,590,'2005-08-04 02:12:58',1,'2006-02-15 21:30:53'),(8196,'2005-07-28 22:56:11',3435,21,'2005-08-06 04:53:11',1,'2006-02-15 21:30:53'),(8197,'2005-07-28 23:04:10',4126,407,'2005-08-05 00:06:10',2,'2006-02-15 21:30:53'),(8198,'2005-07-28 23:08:05',1767,356,'2005-08-06 00:43:05',2,'2006-02-15 21:30:53'),(8199,'2005-07-28 23:10:25',404,471,'2005-08-04 23:30:25',1,'2006-02-15 21:30:53'),(8200,'2005-07-28 23:10:46',353,185,'2005-07-29 18:35:46',1,'2006-02-15 21:30:53'),(8201,'2005-07-28 23:10:48',220,567,'2005-08-01 00:50:48',2,'2006-02-15 21:30:53'),(8202,'2005-07-28 23:11:45',3802,75,'2005-08-03 21:57:45',2,'2006-02-15 21:30:53'),(8203,'2005-07-28 23:14:56',3878,100,'2005-07-31 04:19:56',2,'2006-02-15 21:30:53'),(8204,'2005-07-28 23:18:29',2472,398,'2005-08-02 04:49:29',1,'2006-02-15 21:30:53'),(8205,'2005-07-28 23:18:48',2944,434,'2005-07-30 00:37:48',2,'2006-02-15 21:30:53'),(8206,'2005-07-28 23:20:31',2979,422,'2005-08-04 21:36:31',1,'2006-02-15 21:30:53'),(8207,'2005-07-28 23:26:31',1195,475,'2005-08-06 03:26:31',1,'2006-02-15 21:30:53'),(8208,'2005-07-28 23:26:35',1362,530,'2005-08-01 23:00:35',2,'2006-02-15 21:30:53'),(8209,'2005-07-28 23:29:28',2484,127,'2005-08-07 04:22:28',2,'2006-02-15 21:30:53'),(8210,'2005-07-28 23:31:05',3424,300,'2005-08-06 17:36:05',1,'2006-02-15 21:30:53'),(8211,'2005-07-28 23:34:22',1859,193,'2005-08-04 21:18:22',1,'2006-02-15 21:30:53'),(8212,'2005-07-28 23:37:23',1305,159,'2005-08-04 04:33:23',2,'2006-02-15 21:30:53'),(8213,'2005-07-28 23:37:33',3816,17,'2005-07-31 00:32:33',2,'2006-02-15 21:30:53'),(8214,'2005-07-28 23:37:57',352,509,'2005-08-07 00:29:57',2,'2006-02-15 21:30:53'),(8215,'2005-07-28 23:43:56',2921,437,'2005-08-03 19:30:56',2,'2006-02-15 21:30:53'),(8216,'2005-07-28 23:43:59',2211,254,'2005-08-06 05:05:59',1,'2006-02-15 21:30:53'),(8217,'2005-07-28 23:44:13',3747,206,'2005-08-03 21:27:13',2,'2006-02-15 21:30:53'),(8218,'2005-07-28 23:45:41',2769,578,'2005-08-02 00:14:41',1,'2006-02-15 21:30:53'),(8219,'2005-07-28 23:46:31',3609,227,'2005-08-03 00:11:31',2,'2006-02-15 21:30:53'),(8220,'2005-07-28 23:46:41',1061,360,'2005-07-31 22:14:41',2,'2006-02-15 21:30:53'),(8221,'2005-07-28 23:47:19',3138,496,'2005-08-02 20:42:19',1,'2006-02-15 21:30:53'),(8222,'2005-07-28 23:51:53',2999,278,'2005-08-05 22:48:53',1,'2006-02-15 21:30:53'),(8223,'2005-07-28 23:56:01',4508,282,'2005-08-03 22:27:01',1,'2006-02-15 21:30:53'),(8224,'2005-07-28 23:59:02',1995,467,'2005-08-02 04:54:02',1,'2006-02-15 21:30:53'),(8225,'2005-07-28 23:59:29',3631,41,'2005-07-30 03:27:29',2,'2006-02-15 21:30:53'),(8226,'2005-07-29 00:01:04',3541,368,'2005-08-01 19:08:04',2,'2006-02-15 21:30:53'),(8227,'2005-07-29 00:02:22',269,167,'2005-07-31 04:05:22',1,'2006-02-15 21:30:53'),(8228,'2005-07-29 00:08:58',1955,72,'2005-08-03 00:12:58',2,'2006-02-15 21:30:53'),(8229,'2005-07-29 00:09:08',4272,498,'2005-07-31 19:29:08',2,'2006-02-15 21:30:53'),(8230,'2005-07-29 00:12:59',1937,2,'2005-08-06 19:52:59',2,'2006-02-15 21:30:53'),(8231,'2005-07-29 00:14:37',1083,331,'2005-07-31 19:12:37',1,'2006-02-15 21:30:53'),(8232,'2005-07-29 00:14:37',3255,526,'2005-08-06 00:57:37',1,'2006-02-15 21:30:53'),(8233,'2005-07-29 00:16:23',1640,93,'2005-08-03 05:17:23',2,'2006-02-15 21:30:53'),(8234,'2005-07-29 00:19:20',644,227,'2005-08-03 19:16:20',2,'2006-02-15 21:30:53'),(8235,'2005-07-29 00:22:56',1581,320,'2005-08-03 04:03:56',2,'2006-02-15 21:30:53'),(8236,'2005-07-29 00:27:04',1901,369,'2005-07-31 05:02:04',2,'2006-02-15 21:30:53'),(8237,'2005-07-29 00:29:56',608,441,'2005-08-06 03:10:56',1,'2006-02-15 21:30:53'),(8238,'2005-07-29 00:30:06',2941,320,'2005-08-02 22:52:06',2,'2006-02-15 21:30:53'),(8239,'2005-07-29 00:31:39',3951,549,'2005-07-29 19:33:39',1,'2006-02-15 21:30:53'),(8240,'2005-07-29 00:33:32',1975,509,'2005-08-05 21:25:32',2,'2006-02-15 21:30:53'),(8241,'2005-07-29 00:33:36',4297,26,'2005-08-03 01:31:36',1,'2006-02-15 21:30:53'),(8242,'2005-07-29 00:34:27',509,99,'2005-08-05 23:13:27',2,'2006-02-15 21:30:53'),(8243,'2005-07-29 00:35:33',1873,481,'2005-08-04 06:02:33',2,'2006-02-15 21:30:53'),(8244,'2005-07-29 00:35:34',1552,175,'2005-08-05 04:18:34',2,'2006-02-15 21:30:53'),(8245,'2005-07-29 00:37:09',3330,555,'2005-08-05 05:48:09',2,'2006-02-15 21:30:53'),(8246,'2005-07-29 00:38:41',1724,146,'2005-08-05 06:28:41',2,'2006-02-15 21:30:53'),(8247,'2005-07-29 00:41:38',2607,539,'2005-08-06 20:29:38',2,'2006-02-15 21:30:53'),(8248,'2005-07-29 00:41:56',2017,272,'2005-08-05 18:53:56',2,'2006-02-15 21:30:53'),(8249,'2005-07-29 00:48:44',3331,57,'2005-08-07 04:25:44',2,'2006-02-15 21:30:53'),(8250,'2005-07-29 00:49:15',4519,533,'2005-08-04 02:53:15',1,'2006-02-15 21:30:53'),(8251,'2005-07-29 00:50:14',2317,408,'2005-08-03 23:52:14',2,'2006-02-15 21:30:53'),(8252,'2005-07-29 00:54:17',3312,257,'2005-07-31 20:34:17',1,'2006-02-15 21:30:53'),(8253,'2005-07-29 00:57:06',2388,76,'2005-08-07 01:46:06',1,'2006-02-15 21:30:53'),(8254,'2005-07-29 00:59:31',1787,392,'2005-08-03 23:43:31',2,'2006-02-15 21:30:53'),(8255,'2005-07-29 01:02:30',3715,224,'2005-08-01 22:39:30',1,'2006-02-15 21:30:53'),(8256,'2005-07-29 01:02:42',1483,537,'2005-07-31 22:29:42',2,'2006-02-15 21:30:53'),(8257,'2005-07-29 01:03:20',3024,566,'2005-08-04 21:54:20',1,'2006-02-15 21:30:53'),(8258,'2005-07-29 01:03:42',1379,370,'2005-08-04 22:08:42',2,'2006-02-15 21:30:53'),(8259,'2005-07-29 01:05:16',343,274,'2005-08-01 23:27:16',2,'2006-02-15 21:30:53'),(8260,'2005-07-29 01:11:00',4249,366,'2005-08-06 00:36:00',1,'2006-02-15 21:30:53'),(8261,'2005-07-29 01:11:05',1915,50,'2005-08-04 03:13:05',2,'2006-02-15 21:30:53'),(8262,'2005-07-29 01:11:18',1341,563,'2005-08-02 05:17:18',2,'2006-02-15 21:30:53'),(8263,'2005-07-29 01:11:23',28,5,'2005-07-31 01:53:23',2,'2006-02-15 21:30:53'),(8264,'2005-07-29 01:18:50',2987,175,'2005-08-03 05:31:50',2,'2006-02-15 21:30:53'),(8265,'2005-07-29 01:20:15',2389,409,'2005-08-06 19:32:15',2,'2006-02-15 21:30:53'),(8266,'2005-07-29 01:20:16',1972,196,'2005-07-30 04:31:16',1,'2006-02-15 21:30:53'),(8267,'2005-07-29 01:21:02',4107,131,'2005-08-04 19:34:02',2,'2006-02-15 21:30:53'),(8268,'2005-07-29 01:23:23',4239,421,'2005-08-05 01:36:23',1,'2006-02-15 21:30:53'),(8269,'2005-07-29 01:26:54',2778,376,'2005-08-04 22:42:54',1,'2006-02-15 21:30:53'),(8270,'2005-07-29 01:27:22',3565,282,'2005-07-29 20:55:22',1,'2006-02-15 21:30:53'),(8271,'2005-07-29 01:27:44',83,481,'2005-08-07 05:01:44',2,'2006-02-15 21:30:53'),(8272,'2005-07-29 01:29:51',70,346,'2005-08-03 21:56:51',2,'2006-02-15 21:30:53'),(8273,'2005-07-29 01:33:16',4244,532,'2005-08-06 04:26:16',2,'2006-02-15 21:30:53'),(8274,'2005-07-29 01:34:32',2634,340,'2005-08-01 20:15:32',2,'2006-02-15 21:30:53'),(8275,'2005-07-29 01:35:47',4432,336,'2005-07-30 02:16:47',1,'2006-02-15 21:30:53'),(8276,'2005-07-29 01:38:43',2451,466,'2005-08-03 23:00:43',1,'2006-02-15 21:30:53'),(8277,'2005-07-29 01:38:53',1296,13,'2005-08-04 07:09:53',2,'2006-02-15 21:30:53'),(8278,'2005-07-29 01:42:55',768,265,'2005-08-05 01:55:55',2,'2006-02-15 21:30:53'),(8279,'2005-07-29 01:43:37',3838,176,'2005-08-03 02:36:37',1,'2006-02-15 21:30:53'),(8280,'2005-07-29 01:45:51',1208,195,'2005-08-05 22:51:51',2,'2006-02-15 21:30:53'),(8281,'2005-07-29 01:46:00',899,441,'2005-08-04 23:09:00',1,'2006-02-15 21:30:53'),(8282,'2005-07-29 01:49:04',980,462,'2005-08-05 01:51:04',2,'2006-02-15 21:30:53'),(8283,'2005-07-29 01:52:22',2002,300,'2005-08-05 03:22:22',2,'2006-02-15 21:30:53'),(8284,'2005-07-29 01:56:40',4371,446,'2005-08-07 07:15:40',2,'2006-02-15 21:30:53'),(8285,'2005-07-29 02:00:18',678,56,'2005-08-03 20:43:18',2,'2006-02-15 21:30:53'),(8286,'2005-07-29 02:02:46',4092,87,'2005-08-06 06:00:46',1,'2006-02-15 21:30:53'),(8287,'2005-07-29 02:03:58',812,178,'2005-08-07 02:11:58',1,'2006-02-15 21:30:53'),(8288,'2005-07-29 02:04:22',1822,55,'2005-08-05 04:21:22',2,'2006-02-15 21:30:53'),(8289,'2005-07-29 02:23:24',4579,459,'2005-08-06 03:23:24',2,'2006-02-15 21:30:53'),(8290,'2005-07-29 02:24:08',3823,462,'2005-08-03 01:02:08',2,'2006-02-15 21:30:53'),(8291,'2005-07-29 02:28:25',2817,455,'2005-08-03 20:57:25',2,'2006-02-15 21:30:53'),(8292,'2005-07-29 02:29:36',4003,192,'2005-08-07 08:06:36',1,'2006-02-15 21:30:53'),(8293,'2005-07-29 02:30:50',831,71,'2005-08-04 03:09:50',2,'2006-02-15 21:30:53'),(8294,'2005-07-29 02:32:41',1811,520,'2005-08-02 06:28:41',1,'2006-02-15 21:30:53'),(8295,'2005-07-29 02:42:14',2065,406,'2005-07-30 22:22:14',1,'2006-02-15 21:30:53'),(8296,'2005-07-29 02:43:25',2543,88,'2005-08-01 00:23:25',1,'2006-02-15 21:30:53'),(8297,'2005-07-29 02:45:46',3774,349,'2005-07-31 20:49:46',1,'2006-02-15 21:30:53'),(8298,'2005-07-29 02:47:36',952,493,'2005-08-05 07:58:36',2,'2006-02-15 21:30:53'),(8299,'2005-07-29 02:56:00',1797,173,'2005-07-30 22:35:00',2,'2006-02-15 21:30:53'),(8300,'2005-07-29 02:57:59',4364,222,'2005-08-05 01:12:59',2,'2006-02-15 21:30:53'),(8301,'2005-07-29 03:00:08',562,101,'2005-08-01 04:26:08',2,'2006-02-15 21:30:53'),(8302,'2005-07-29 03:01:24',1314,103,'2005-07-30 01:08:24',2,'2006-02-15 21:30:53'),(8303,'2005-07-29 03:05:56',1620,574,'2005-08-04 06:13:56',1,'2006-02-15 21:30:53'),(8304,'2005-07-29 03:08:30',4431,119,'2005-08-02 03:04:30',2,'2006-02-15 21:30:53'),(8305,'2005-07-29 03:08:47',3916,566,'2005-08-06 07:49:47',2,'2006-02-15 21:30:53'),(8306,'2005-07-29 03:12:26',1708,232,'2005-08-01 23:26:26',1,'2006-02-15 21:30:53'),(8307,'2005-07-29 03:18:34',3197,39,'2005-08-06 05:51:34',2,'2006-02-15 21:30:53'),(8308,'2005-07-29 03:22:15',601,582,'2005-08-04 21:38:15',2,'2006-02-15 21:30:53'),(8309,'2005-07-29 03:22:20',2250,446,'2005-08-01 06:30:20',1,'2006-02-15 21:30:53'),(8310,'2005-07-29 03:25:56',2637,238,'2005-08-06 23:18:56',2,'2006-02-15 21:30:53'),(8311,'2005-07-29 03:26:07',3623,63,'2005-08-02 01:46:07',1,'2006-02-15 21:30:53'),(8312,'2005-07-29 03:32:38',3996,143,'2005-07-31 02:12:38',1,'2006-02-15 21:30:53'),(8313,'2005-07-29 03:34:21',2736,91,'2005-08-02 01:32:21',1,'2006-02-15 21:30:53'),(8314,'2005-07-29 03:35:04',2182,118,'2005-08-06 08:43:04',2,'2006-02-15 21:30:53'),(8315,'2005-07-29 03:37:07',1420,135,'2005-07-29 23:22:07',2,'2006-02-15 21:30:53'),(8316,'2005-07-29 03:38:49',4118,549,'2005-08-03 07:41:49',1,'2006-02-15 21:30:53'),(8317,'2005-07-29 03:39:07',3898,415,'2005-08-03 00:14:07',1,'2006-02-15 21:30:53'),(8318,'2005-07-29 03:44:30',4524,167,'2005-07-30 05:03:30',2,'2006-02-15 21:30:53'),(8319,'2005-07-29 03:44:52',747,280,'2005-08-01 00:35:52',2,'2006-02-15 21:30:53'),(8320,'2005-07-29 03:49:58',1285,513,'2005-08-03 01:00:58',1,'2006-02-15 21:30:53'),(8321,'2005-07-29 03:50:54',1875,354,'2005-08-01 02:08:54',1,'2006-02-15 21:30:53'),(8322,'2005-07-29 03:52:49',301,541,'2005-08-02 22:53:49',1,'2006-02-15 21:30:53'),(8323,'2005-07-29 03:52:59',2766,87,'2005-08-06 01:49:59',2,'2006-02-15 21:30:53'),(8324,'2005-07-29 03:56:05',1467,98,'2005-08-02 01:41:05',1,'2006-02-15 21:30:53'),(8325,'2005-07-29 03:57:27',932,362,'2005-08-06 22:30:27',1,'2006-02-15 21:30:53'),(8326,'2005-07-29 03:58:49',108,1,'2005-08-01 05:16:49',2,'2006-02-15 21:30:53'),(8327,'2005-07-29 04:00:52',2928,317,'2005-07-31 08:27:52',1,'2006-02-15 21:30:53'),(8328,'2005-07-29 04:06:24',4454,314,'2005-08-03 22:24:24',1,'2006-02-15 21:30:53'),(8329,'2005-07-29 04:06:33',3468,108,'2005-08-06 01:46:33',1,'2006-02-15 21:30:53'),(8330,'2005-07-29 04:09:07',2294,412,'2005-08-05 05:00:07',2,'2006-02-15 21:30:53'),(8331,'2005-07-29 04:13:29',18,148,'2005-08-04 07:09:29',1,'2006-02-15 21:30:53'),(8332,'2005-07-29 04:16:00',1142,217,'2005-08-03 03:34:00',1,'2006-02-15 21:30:53'),(8333,'2005-07-29 04:16:40',823,494,'2005-08-02 10:10:40',2,'2006-02-15 21:30:53'),(8334,'2005-07-29 04:18:25',982,154,'2005-08-07 07:18:25',2,'2006-02-15 21:30:53'),(8335,'2005-07-29 04:18:25',1719,143,'2005-07-31 08:12:25',2,'2006-02-15 21:30:53'),(8336,'2005-07-29 04:20:42',2120,210,'2005-08-05 10:17:42',1,'2006-02-15 21:30:53'),(8337,'2005-07-29 04:31:55',752,157,'2005-08-02 02:38:55',2,'2006-02-15 21:30:53'),(8338,'2005-07-29 04:40:39',2257,389,'2005-08-07 04:40:39',2,'2006-02-15 21:30:53'),(8339,'2005-07-29 04:41:13',1870,129,'2005-07-30 09:01:13',2,'2006-02-15 21:30:53'),(8340,'2005-07-29 04:41:44',1553,386,'2005-08-07 10:33:44',1,'2006-02-15 21:30:53'),(8341,'2005-07-29 04:42:01',4208,309,'2005-08-04 00:58:01',1,'2006-02-15 21:30:53'),(8342,'2005-07-29 04:45:05',3301,572,'2005-08-01 07:20:05',1,'2006-02-15 21:30:53'),(8343,'2005-07-29 04:45:16',4267,439,'2005-08-02 03:37:16',1,'2006-02-15 21:30:53'),(8344,'2005-07-29 04:45:25',221,257,'2005-08-06 01:53:25',1,'2006-02-15 21:30:53'),(8345,'2005-07-29 04:47:37',1034,129,'2005-08-02 07:25:37',1,'2006-02-15 21:30:53'),(8346,'2005-07-29 04:48:22',2475,385,'2005-08-01 04:22:22',1,'2006-02-15 21:30:53'),(8347,'2005-07-29 04:49:25',4407,157,'2005-07-31 00:57:25',2,'2006-02-15 21:30:53'),(8348,'2005-07-29 04:49:26',4533,174,'2005-08-05 03:26:26',2,'2006-02-15 21:30:53'),(8349,'2005-07-29 04:50:22',534,416,'2005-08-05 08:50:22',1,'2006-02-15 21:30:53'),(8350,'2005-07-29 04:50:39',3726,513,'2005-07-31 05:36:39',2,'2006-02-15 21:30:53'),(8351,'2005-07-29 04:50:53',2963,202,'2005-07-30 07:28:53',2,'2006-02-15 21:30:53'),(8352,'2005-07-29 04:52:01',2710,168,'2005-08-06 07:39:01',2,'2006-02-15 21:30:53'),(8353,'2005-07-29 04:52:10',26,585,'2005-07-30 04:01:10',1,'2006-02-15 21:30:53'),(8354,'2005-07-29 04:56:26',4476,579,'2005-08-01 08:04:26',2,'2006-02-15 21:30:53'),(8355,'2005-07-29 04:57:43',4569,270,'2005-08-03 06:25:43',1,'2006-02-15 21:30:53'),(8356,'2005-07-29 04:58:56',2951,483,'2005-08-06 03:07:56',1,'2006-02-15 21:30:53'),(8357,'2005-07-29 04:59:44',892,76,'2005-08-01 04:26:44',1,'2006-02-15 21:30:53'),(8358,'2005-07-29 05:00:58',1449,372,'2005-08-01 02:49:58',2,'2006-02-15 21:30:53'),(8359,'2005-07-29 05:02:12',140,531,'2005-08-04 08:52:12',1,'2006-02-15 21:30:53'),(8360,'2005-07-29 05:08:00',4135,62,'2005-08-02 00:40:00',1,'2006-02-15 21:30:53'),(8361,'2005-07-29 05:08:57',3404,360,'2005-08-03 02:49:57',1,'2006-02-15 21:30:53'),(8362,'2005-07-29 05:09:11',2287,223,'2005-08-04 00:08:11',2,'2006-02-15 21:30:53'),(8363,'2005-07-29 05:10:08',1607,302,'2005-08-06 00:11:08',1,'2006-02-15 21:30:53'),(8364,'2005-07-29 05:10:31',1361,362,'2005-07-30 04:02:31',2,'2006-02-15 21:30:53'),(8365,'2005-07-29 05:11:00',53,280,'2005-07-30 05:30:00',2,'2006-02-15 21:30:53'),(8366,'2005-07-29 05:11:14',479,39,'2005-08-05 01:48:14',1,'2006-02-15 21:30:53'),(8367,'2005-07-29 05:11:19',4551,383,'2005-08-02 00:35:19',1,'2006-02-15 21:30:53'),(8368,'2005-07-29 05:15:41',1410,200,'2005-08-07 01:35:41',1,'2006-02-15 21:30:53'),(8369,'2005-07-29 05:15:42',1456,507,'2005-08-01 03:36:42',2,'2006-02-15 21:30:53'),(8370,'2005-07-29 05:16:21',1206,121,'2005-08-06 23:16:21',1,'2006-02-15 21:30:53'),(8371,'2005-07-29 05:16:35',2466,396,'2005-07-31 01:49:35',1,'2006-02-15 21:30:53'),(8372,'2005-07-29 05:18:08',754,523,'2005-08-06 09:39:08',1,'2006-02-15 21:30:53'),(8373,'2005-07-29 05:19:53',2070,457,'2005-08-04 04:39:53',1,'2006-02-15 21:30:53'),(8374,'2005-07-29 05:24:02',1084,589,'2005-08-05 03:55:02',1,'2006-02-15 21:30:53'),(8375,'2005-07-29 05:25:30',3634,125,'2005-08-04 01:43:30',2,'2006-02-15 21:30:53'),(8376,'2005-07-29 05:25:32',3588,43,'2005-08-01 07:42:32',2,'2006-02-15 21:30:53'),(8377,'2005-07-29 05:27:40',270,73,'2005-07-30 02:52:40',2,'2006-02-15 21:30:53'),(8378,'2005-07-29 05:28:35',3500,347,'2005-08-02 05:55:35',1,'2006-02-15 21:30:53'),(8379,'2005-07-29 05:29:40',3907,193,'2005-08-06 05:56:40',2,'2006-02-15 21:30:53'),(8380,'2005-07-29 05:31:29',2279,145,'2005-08-02 01:27:29',1,'2006-02-15 21:30:53'),(8381,'2005-07-29 05:31:44',865,313,'2005-07-31 09:20:44',1,'2006-02-15 21:30:53'),(8382,'2005-07-29 05:33:21',317,238,'2005-08-03 03:38:21',1,'2006-02-15 21:30:53'),(8383,'2005-07-29 05:36:47',3809,495,'2005-08-03 05:53:47',2,'2006-02-15 21:30:53'),(8384,'2005-07-29 05:38:43',3807,227,'2005-08-01 07:31:43',2,'2006-02-15 21:30:53'),(8385,'2005-07-29 05:39:16',4108,233,'2005-08-03 00:30:16',1,'2006-02-15 21:30:53'),(8386,'2005-07-29 05:45:30',388,435,'2005-08-05 03:56:30',2,'2006-02-15 21:30:53'),(8387,'2005-07-29 05:47:27',910,428,'2005-07-31 06:26:27',1,'2006-02-15 21:30:53'),(8388,'2005-07-29 05:48:15',770,178,'2005-08-05 06:24:15',2,'2006-02-15 21:30:53'),(8389,'2005-07-29 05:50:09',1241,133,'2005-08-06 05:15:09',2,'2006-02-15 21:30:53'),(8390,'2005-07-29 05:52:26',581,32,'2005-08-04 08:12:26',2,'2006-02-15 21:30:53'),(8391,'2005-07-29 05:52:50',2134,36,'2005-08-03 04:45:50',2,'2006-02-15 21:30:53'),(8392,'2005-07-29 06:00:27',1323,65,'2005-08-02 00:30:27',2,'2006-02-15 21:30:53'),(8393,'2005-07-29 06:02:11',3369,504,'2005-08-07 03:23:11',1,'2006-02-15 21:30:53'),(8394,'2005-07-29 06:02:14',3933,148,'2005-08-03 08:15:14',1,'2006-02-15 21:30:53'),(8395,'2005-07-29 06:03:30',1471,535,'2005-07-31 09:08:30',2,'2006-02-15 21:30:53'),(8396,'2005-07-29 06:07:00',3911,516,'2005-07-30 05:32:00',2,'2006-02-15 21:30:53'),(8397,'2005-07-29 06:09:35',3542,518,'2005-08-01 02:08:35',1,'2006-02-15 21:30:53'),(8398,'2005-07-29 06:12:40',348,220,'2005-08-02 05:01:40',2,'2006-02-15 21:30:53'),(8399,'2005-07-29 06:20:18',233,286,'2005-08-04 01:26:18',1,'2006-02-15 21:30:53'),(8400,'2005-07-29 06:23:56',3680,573,'2005-07-31 02:41:56',2,'2006-02-15 21:30:53'),(8401,'2005-07-29 06:25:08',3121,232,'2005-08-01 06:49:08',1,'2006-02-15 21:30:53'),(8402,'2005-07-29 06:25:45',186,47,'2005-08-07 10:48:45',1,'2006-02-15 21:30:53'),(8403,'2005-07-29 06:26:39',1360,163,'2005-08-02 05:37:39',1,'2006-02-15 21:30:53'),(8404,'2005-07-29 06:27:01',2086,65,'2005-08-07 04:33:01',1,'2006-02-15 21:30:53'),(8405,'2005-07-29 06:28:19',2164,76,'2005-08-07 08:14:19',2,'2006-02-15 21:30:53'),(8406,'2005-07-29 06:34:45',2047,274,'2005-08-06 02:28:45',1,'2006-02-15 21:30:53'),(8407,'2005-07-29 06:37:02',2985,336,'2005-08-04 03:13:02',1,'2006-02-15 21:30:53'),(8408,'2005-07-29 06:40:40',1841,90,'2005-07-30 10:02:40',2,'2006-02-15 21:30:53'),(8409,'2005-07-29 06:41:22',4314,303,'2005-07-31 11:21:22',1,'2006-02-15 21:30:53'),(8410,'2005-07-29 06:41:36',3448,277,'2005-08-02 08:38:36',1,'2006-02-15 21:30:53'),(8411,'2005-07-29 06:44:23',3085,412,'2005-08-07 03:56:23',1,'2006-02-15 21:30:53'),(8412,'2005-07-29 06:44:50',743,312,'2005-08-06 05:04:50',1,'2006-02-15 21:30:53'),(8413,'2005-07-29 06:47:39',2762,104,'2005-08-02 09:15:39',2,'2006-02-15 21:30:53'),(8414,'2005-07-29 06:48:35',1337,433,'2005-08-06 10:54:35',2,'2006-02-15 21:30:53'),(8415,'2005-07-29 06:52:27',2903,128,'2005-08-02 10:40:27',1,'2006-02-15 21:30:53'),(8416,'2005-07-29 06:52:54',1999,315,'2005-08-05 09:50:54',2,'2006-02-15 21:30:53'),(8417,'2005-07-29 06:53:36',750,227,'2005-08-06 09:31:36',2,'2006-02-15 21:30:53'),(8418,'2005-07-29 06:54:21',3081,355,'2005-08-05 06:50:21',2,'2006-02-15 21:30:53'),(8419,'2005-07-29 06:54:48',4574,37,'2005-08-06 05:02:48',1,'2006-02-15 21:30:53'),(8420,'2005-07-29 07:00:45',4184,376,'2005-08-06 02:20:45',1,'2006-02-15 21:30:53'),(8421,'2005-07-29 07:00:47',3399,588,'2005-08-02 08:03:47',2,'2006-02-15 21:30:53'),(8422,'2005-07-29 07:02:55',3104,7,'2005-08-03 12:35:55',1,'2006-02-15 21:30:53'),(8423,'2005-07-29 07:02:57',187,468,'2005-08-06 04:59:57',1,'2006-02-15 21:30:53'),(8424,'2005-07-29 07:06:03',366,138,'2005-08-06 12:00:03',2,'2006-02-15 21:30:53'),(8425,'2005-07-29 07:06:21',3491,486,'2005-08-05 07:57:21',2,'2006-02-15 21:30:53'),(8426,'2005-07-29 07:07:48',1840,564,'2005-08-07 08:56:48',2,'2006-02-15 21:30:53'),(8427,'2005-07-29 07:08:36',1624,441,'2005-07-30 11:54:36',2,'2006-02-15 21:30:53'),(8428,'2005-07-29 07:10:14',2545,398,'2005-08-06 02:29:14',2,'2006-02-15 21:30:53'),(8429,'2005-07-29 07:11:49',2456,588,'2005-07-31 02:45:49',1,'2006-02-15 21:30:53'),(8430,'2005-07-29 07:12:17',3377,219,'2005-08-03 09:53:17',2,'2006-02-15 21:30:53'),(8431,'2005-07-29 07:12:48',1583,193,'2005-08-01 10:03:48',1,'2006-02-15 21:30:53'),(8432,'2005-07-29 07:13:33',3896,572,'2005-07-30 03:14:33',1,'2006-02-15 21:30:53'),(8433,'2005-07-29 07:19:16',1957,125,'2005-08-05 03:29:16',1,'2006-02-15 21:30:53'),(8434,'2005-07-29 07:20:14',40,141,'2005-07-30 08:50:14',2,'2006-02-15 21:30:53'),(8435,'2005-07-29 07:20:16',4462,520,'2005-08-02 09:54:16',2,'2006-02-15 21:30:53'),(8436,'2005-07-29 07:21:20',2702,598,'2005-07-31 12:56:20',2,'2006-02-15 21:30:53'),(8437,'2005-07-29 07:23:43',2118,96,'2005-08-04 10:52:43',1,'2006-02-15 21:30:53'),(8438,'2005-07-29 07:25:42',720,97,'2005-08-04 07:39:42',1,'2006-02-15 21:30:53'),(8439,'2005-07-29 07:28:43',182,224,'2005-08-04 11:22:43',1,'2006-02-15 21:30:53'),(8440,'2005-07-29 07:31:26',489,175,'2005-08-04 07:04:26',1,'2006-02-15 21:30:53'),(8441,'2005-07-29 07:33:05',1000,526,'2005-08-04 04:00:05',2,'2006-02-15 21:30:53'),(8442,'2005-07-29 07:33:07',4345,185,'2005-08-03 03:09:07',2,'2006-02-15 21:30:53'),(8443,'2005-07-29 07:33:12',1059,251,'2005-08-02 01:36:12',2,'2006-02-15 21:30:53'),(8444,'2005-07-29 07:36:13',3329,213,'2005-08-05 04:55:13',1,'2006-02-15 21:30:53'),(8445,'2005-07-29 07:37:48',2792,384,'2005-08-04 10:43:48',1,'2006-02-15 21:30:53'),(8446,'2005-07-29 07:38:10',1593,235,'2005-08-06 04:39:10',2,'2006-02-15 21:30:53'),(8447,'2005-07-29 07:38:14',930,11,'2005-08-05 02:27:14',2,'2006-02-15 21:30:53'),(8448,'2005-07-29 07:41:54',4349,393,'2005-08-02 13:12:54',1,'2006-02-15 21:30:53'),(8449,'2005-07-29 07:42:25',2610,273,'2005-07-30 06:07:25',2,'2006-02-15 21:30:53'),(8450,'2005-07-29 07:44:05',484,401,'2005-08-01 12:23:05',1,'2006-02-15 21:30:53'),(8451,'2005-07-29 07:44:56',3309,495,'2005-08-06 02:29:56',1,'2006-02-15 21:30:53'),(8452,'2005-07-29 07:45:00',4312,16,'2005-08-05 09:46:00',2,'2006-02-15 21:30:53'),(8453,'2005-07-29 07:46:29',2907,32,'2005-07-30 07:07:29',1,'2006-02-15 21:30:53'),(8454,'2005-07-29 07:49:04',159,244,'2005-08-03 04:43:04',2,'2006-02-15 21:30:53'),(8455,'2005-07-29 07:53:06',4043,404,'2005-08-05 05:29:06',1,'2006-02-15 21:30:53'),(8456,'2005-07-29 07:58:31',671,388,'2005-08-05 07:17:31',2,'2006-02-15 21:30:53'),(8457,'2005-07-29 07:59:03',3371,239,'2005-08-04 08:42:03',1,'2006-02-15 21:30:53'),(8458,'2005-07-29 08:05:09',3857,317,'2005-08-02 03:42:09',1,'2006-02-15 21:30:53'),(8459,'2005-07-29 08:05:40',3441,144,'2005-08-04 03:24:40',1,'2006-02-15 21:30:53'),(8460,'2005-07-29 08:08:03',2826,329,'2005-08-07 06:53:03',2,'2006-02-15 21:30:53'),(8461,'2005-07-29 08:11:31',3373,399,'2005-08-06 09:23:31',1,'2006-02-15 21:30:53'),(8462,'2005-07-29 08:15:42',3633,200,'2005-08-04 03:57:42',1,'2006-02-15 21:30:53'),(8463,'2005-07-29 08:17:51',466,203,'2005-08-03 13:41:51',1,'2006-02-15 21:30:53'),(8464,'2005-07-29 08:18:20',2343,28,'2005-08-03 04:50:20',2,'2006-02-15 21:30:53'),(8465,'2005-07-29 08:20:49',4109,238,'2005-07-31 04:02:49',2,'2006-02-15 21:30:53'),(8466,'2005-07-29 08:24:47',4010,285,'2005-07-31 03:43:47',1,'2006-02-15 21:30:53'),(8467,'2005-07-29 08:25:35',263,326,'2005-08-07 03:28:35',2,'2006-02-15 21:30:53'),(8468,'2005-07-29 08:26:04',1338,282,'2005-08-02 07:18:04',1,'2006-02-15 21:30:53'),(8469,'2005-07-29 08:26:27',2754,408,'2005-08-05 04:26:27',2,'2006-02-15 21:30:53'),(8470,'2005-07-29 08:28:50',3717,159,'2005-07-30 13:40:50',2,'2006-02-15 21:30:53'),(8471,'2005-07-29 08:32:11',1520,533,'2005-08-01 13:55:11',1,'2006-02-15 21:30:53'),(8472,'2005-07-29 08:36:22',2975,196,'2005-08-02 07:55:22',1,'2006-02-15 21:30:53'),(8473,'2005-07-29 08:36:53',4141,311,'2005-07-31 12:14:53',1,'2006-02-15 21:30:53'),(8474,'2005-07-29 08:36:56',4346,323,'2005-08-01 03:07:56',1,'2006-02-15 21:30:53'),(8475,'2005-07-29 08:37:41',3695,260,'2005-08-04 10:03:41',2,'2006-02-15 21:30:53'),(8476,'2005-07-29 08:39:12',3741,470,'2005-08-06 03:03:12',1,'2006-02-15 21:30:53'),(8477,'2005-07-29 08:40:36',3571,354,'2005-08-06 08:28:36',2,'2006-02-15 21:30:53'),(8478,'2005-07-29 08:40:36',3742,162,'2005-08-01 10:23:36',1,'2006-02-15 21:30:53'),(8479,'2005-07-29 08:42:04',1990,195,'2005-08-01 03:10:04',1,'2006-02-15 21:30:53'),(8480,'2005-07-29 08:44:46',3512,467,'2005-08-05 13:22:46',1,'2006-02-15 21:30:53'),(8481,'2005-07-29 08:45:57',1739,454,'2005-08-01 12:50:57',2,'2006-02-15 21:30:53'),(8482,'2005-07-29 08:46:33',2686,405,'2005-07-31 11:07:33',2,'2006-02-15 21:30:53'),(8483,'2005-07-29 08:50:18',2786,186,'2005-08-03 06:46:18',1,'2006-02-15 21:30:53'),(8484,'2005-07-29 08:51:59',742,260,'2005-07-30 09:07:59',1,'2006-02-15 21:30:53'),(8485,'2005-07-29 08:53:09',3172,420,'2005-07-30 11:25:09',1,'2006-02-15 21:30:53'),(8486,'2005-07-29 08:53:38',1759,221,'2005-08-01 14:12:38',2,'2006-02-15 21:30:53'),(8487,'2005-07-29 08:53:49',1893,82,'2005-07-31 09:10:49',2,'2006-02-15 21:30:53'),(8488,'2005-07-29 08:57:38',2176,478,'2005-08-02 04:16:38',1,'2006-02-15 21:30:53'),(8489,'2005-07-29 08:58:03',375,265,'2005-08-02 07:50:03',2,'2006-02-15 21:30:53'),(8490,'2005-07-29 08:59:25',1943,367,'2005-08-05 14:02:25',2,'2006-02-15 21:30:53'),(8491,'2005-07-29 09:02:13',1806,242,'2005-08-03 04:32:13',1,'2006-02-15 21:30:53'),(8492,'2005-07-29 09:04:17',4553,266,'2005-08-02 08:48:17',2,'2006-02-15 21:30:53'),(8493,'2005-07-29 09:04:31',664,390,'2005-08-04 05:17:31',2,'2006-02-15 21:30:53'),(8494,'2005-07-29 09:04:32',3524,92,'2005-07-31 10:30:32',1,'2006-02-15 21:30:53'),(8495,'2005-07-29 09:05:06',344,51,'2005-08-06 05:48:06',2,'2006-02-15 21:30:53'),(8496,'2005-07-29 09:05:33',765,114,'2005-08-02 06:32:33',1,'2006-02-15 21:30:53'),(8497,'2005-07-29 09:07:03',1837,593,'2005-08-02 09:18:03',2,'2006-02-15 21:30:53'),(8498,'2005-07-29 09:07:38',4468,190,'2005-08-04 07:01:38',1,'2006-02-15 21:30:53'),(8499,'2005-07-29 09:10:41',219,42,'2005-08-05 10:01:41',1,'2006-02-15 21:30:53'),(8500,'2005-07-29 09:12:01',4516,348,'2005-07-31 10:15:01',1,'2006-02-15 21:30:53'),(8501,'2005-07-29 09:12:51',1052,309,'2005-07-30 11:19:51',2,'2006-02-15 21:30:53'),(8502,'2005-07-29 09:15:41',2149,457,'2005-07-30 10:41:41',1,'2006-02-15 21:30:53'),(8503,'2005-07-29 09:16:50',1164,240,'2005-08-04 11:34:50',2,'2006-02-15 21:30:53'),(8504,'2005-07-29 09:20:16',2295,561,'2005-08-07 04:27:16',2,'2006-02-15 21:30:53'),(8505,'2005-07-29 09:22:52',1454,346,'2005-08-06 05:23:52',1,'2006-02-15 21:30:53'),(8506,'2005-07-29 09:23:52',3714,506,'2005-07-31 04:42:52',1,'2006-02-15 21:30:53'),(8507,'2005-07-29 09:29:44',3273,524,'2005-08-07 05:48:44',2,'2006-02-15 21:30:53'),(8508,'2005-07-29 09:34:38',4173,484,'2005-08-01 14:52:38',2,'2006-02-15 21:30:53'),(8509,'2005-07-29 09:38:19',1332,80,'2005-08-04 11:45:19',1,'2006-02-15 21:30:53'),(8510,'2005-07-29 09:41:38',7,487,'2005-08-05 05:30:38',2,'2006-02-15 21:30:53'),(8511,'2005-07-29 09:42:42',3667,598,'2005-08-06 14:22:42',2,'2006-02-15 21:30:53'),(8512,'2005-07-29 09:48:03',4132,351,'2005-07-31 13:40:03',1,'2006-02-15 21:30:53'),(8513,'2005-07-29 09:52:59',3156,142,'2005-07-31 12:05:59',1,'2006-02-15 21:30:53'),(8514,'2005-07-29 09:53:33',3755,99,'2005-07-30 06:34:33',2,'2006-02-15 21:30:53'),(8515,'2005-07-29 09:55:20',1071,477,'2005-08-05 07:08:20',2,'2006-02-15 21:30:53'),(8516,'2005-07-29 10:00:03',981,337,'2005-08-02 09:34:03',1,'2006-02-15 21:30:53'),(8517,'2005-07-29 10:00:48',2064,274,'2005-08-06 14:37:48',2,'2006-02-15 21:30:53'),(8518,'2005-07-29 10:05:27',2311,385,'2005-08-02 05:39:27',1,'2006-02-15 21:30:53'),(8519,'2005-07-29 10:09:43',1163,588,'2005-08-03 08:14:43',2,'2006-02-15 21:30:53'),(8520,'2005-07-29 10:10:02',2440,103,'2005-08-02 05:25:02',2,'2006-02-15 21:30:53'),(8521,'2005-07-29 10:12:45',2608,402,'2005-08-07 04:37:45',2,'2006-02-15 21:30:53'),(8522,'2005-07-29 10:16:19',3636,363,'2005-08-06 14:58:19',1,'2006-02-15 21:30:53'),(8523,'2005-07-29 10:18:27',3614,558,'2005-08-04 09:31:27',1,'2006-02-15 21:30:53'),(8524,'2005-07-29 10:20:07',2110,124,'2005-08-03 04:30:07',1,'2006-02-15 21:30:53'),(8525,'2005-07-29 10:20:19',1322,111,'2005-07-30 05:49:19',2,'2006-02-15 21:30:53'),(8526,'2005-07-29 10:20:48',575,88,'2005-08-03 14:15:48',1,'2006-02-15 21:30:53'),(8527,'2005-07-29 10:21:00',709,168,'2005-08-05 16:05:00',2,'2006-02-15 21:30:53'),(8528,'2005-07-29 10:24:22',2107,428,'2005-08-07 10:34:22',1,'2006-02-15 21:30:53'),(8529,'2005-07-29 10:24:31',1055,501,'2005-08-01 16:06:31',1,'2006-02-15 21:30:53'),(8530,'2005-07-29 10:26:14',4528,233,'2005-07-31 10:24:14',1,'2006-02-15 21:30:53'),(8531,'2005-07-29 10:26:15',1631,427,'2005-08-06 09:28:15',1,'2006-02-15 21:30:53'),(8532,'2005-07-29 10:26:56',3045,546,'2005-08-02 13:23:56',2,'2006-02-15 21:30:53'),(8533,'2005-07-29 10:29:16',551,542,'2005-08-01 06:52:16',1,'2006-02-15 21:30:53'),(8534,'2005-07-29 10:30:13',4029,516,'2005-08-02 04:47:13',1,'2006-02-15 21:30:53'),(8535,'2005-07-29 10:32:33',4489,536,'2005-07-31 05:46:33',1,'2006-02-15 21:30:53'),(8536,'2005-07-29 10:37:23',4510,219,'2005-07-31 07:21:23',2,'2006-02-15 21:30:53'),(8537,'2005-07-29 10:44:54',1012,447,'2005-08-06 14:55:54',2,'2006-02-15 21:30:53'),(8538,'2005-07-29 10:45:17',3768,500,'2005-08-04 15:12:17',1,'2006-02-15 21:30:53'),(8539,'2005-07-29 10:48:24',599,325,'2005-07-30 06:29:24',2,'2006-02-15 21:30:53'),(8540,'2005-07-29 10:52:51',539,180,'2005-08-07 11:44:51',2,'2006-02-15 21:30:53'),(8541,'2005-07-29 10:55:01',976,340,'2005-07-31 10:53:01',1,'2006-02-15 21:30:53'),(8542,'2005-07-29 11:01:50',792,213,'2005-07-30 08:19:50',1,'2006-02-15 21:30:53'),(8543,'2005-07-29 11:01:57',403,346,'2005-08-03 06:03:57',1,'2006-02-15 21:30:53'),(8544,'2005-07-29 11:02:08',412,542,'2005-08-06 15:06:08',2,'2006-02-15 21:30:53'),(8545,'2005-07-29 11:07:04',3261,3,'2005-08-06 13:30:04',2,'2006-02-15 21:30:53'),(8546,'2005-07-29 11:08:48',3224,418,'2005-08-03 16:50:48',2,'2006-02-15 21:30:53'),(8547,'2005-07-29 11:10:15',875,438,'2005-08-03 12:50:15',1,'2006-02-15 21:30:53'),(8548,'2005-07-29 11:11:33',3366,14,'2005-08-04 11:52:33',2,'2006-02-15 21:30:53'),(8549,'2005-07-29 11:12:13',1866,206,'2005-08-06 06:04:13',2,'2006-02-15 21:30:53'),(8550,'2005-07-29 11:12:37',1340,70,'2005-07-30 15:05:37',2,'2006-02-15 21:30:53'),(8551,'2005-07-29 11:13:11',2083,340,'2005-08-05 05:17:11',2,'2006-02-15 21:30:53'),(8552,'2005-07-29 11:14:02',1987,490,'2005-08-05 14:13:02',2,'2006-02-15 21:30:53'),(8553,'2005-07-29 11:15:36',2645,49,'2005-08-07 16:37:36',1,'2006-02-15 21:30:53'),(8554,'2005-07-29 11:16:29',1563,582,'2005-07-31 06:38:29',2,'2006-02-15 21:30:53'),(8555,'2005-07-29 11:18:01',2784,18,'2005-07-30 10:47:01',2,'2006-02-15 21:30:53'),(8556,'2005-07-29 11:18:27',2793,231,'2005-07-30 05:21:27',2,'2006-02-15 21:30:53'),(8557,'2005-07-29 11:19:59',1481,459,'2005-08-07 12:50:59',1,'2006-02-15 21:30:53'),(8558,'2005-07-29 11:24:49',1160,169,'2005-07-31 15:03:49',1,'2006-02-15 21:30:53'),(8559,'2005-07-29 11:25:54',2078,279,'2005-08-04 10:16:54',2,'2006-02-15 21:30:53'),(8560,'2005-07-29 11:27:27',3499,430,'2005-08-01 12:05:27',2,'2006-02-15 21:30:53'),(8561,'2005-07-29 11:29:12',2207,344,'2005-08-05 09:17:12',1,'2006-02-15 21:30:53'),(8562,'2005-07-29 11:32:13',3595,255,'2005-07-30 08:23:13',2,'2006-02-15 21:30:53'),(8563,'2005-07-29 11:32:58',61,67,'2005-08-05 07:21:58',2,'2006-02-15 21:30:53'),(8564,'2005-07-29 11:33:00',2830,316,'2005-08-05 15:35:00',1,'2006-02-15 21:30:53'),(8565,'2005-07-29 11:35:23',3211,280,'2005-08-06 08:28:23',1,'2006-02-15 21:30:53'),(8566,'2005-07-29 11:35:46',2011,544,'2005-07-30 13:50:46',1,'2006-02-15 21:30:53'),(8567,'2005-07-29 11:37:30',1612,594,'2005-08-03 05:58:30',2,'2006-02-15 21:30:53'),(8568,'2005-07-29 11:38:22',1599,583,'2005-08-04 13:22:22',2,'2006-02-15 21:30:53'),(8569,'2005-07-29 11:39:17',276,348,'2005-07-31 07:50:17',2,'2006-02-15 21:30:53'),(8570,'2005-07-29 11:40:08',3094,131,'2005-08-06 10:23:08',1,'2006-02-15 21:30:53'),(8571,'2005-07-29 11:48:39',1778,407,'2005-08-03 06:35:39',2,'2006-02-15 21:30:53'),(8572,'2005-07-29 11:51:24',2815,267,'2005-08-02 11:44:24',1,'2006-02-15 21:30:53'),(8573,'2005-07-29 11:51:25',1637,179,'2005-08-07 08:53:25',1,'2006-02-15 21:30:53'),(8574,'2005-07-29 11:51:53',2949,71,'2005-08-03 05:59:53',2,'2006-02-15 21:30:53'),(8575,'2005-07-29 11:52:47',1668,441,'2005-08-03 08:14:47',2,'2006-02-15 21:30:53'),(8576,'2005-07-29 11:55:01',3552,157,'2005-08-03 08:41:01',2,'2006-02-15 21:30:53'),(8577,'2005-07-29 11:56:30',520,328,'2005-08-07 15:41:30',1,'2006-02-15 21:30:53'),(8578,'2005-07-29 11:58:14',3737,148,'2005-08-03 06:25:14',1,'2006-02-15 21:30:53'),(8579,'2005-07-29 11:59:22',4045,250,'2005-07-30 11:41:22',2,'2006-02-15 21:30:53'),(8580,'2005-07-29 12:00:27',4040,543,'2005-08-04 16:39:27',1,'2006-02-15 21:30:53'),(8581,'2005-07-29 12:02:06',2102,254,'2005-08-02 10:32:06',2,'2006-02-15 21:30:53'),(8582,'2005-07-29 12:03:27',841,162,'2005-08-03 07:02:27',1,'2006-02-15 21:30:53'),(8583,'2005-07-29 12:04:50',3130,191,'2005-08-04 17:21:50',1,'2006-02-15 21:30:53'),(8584,'2005-07-29 12:07:53',1656,482,'2005-07-31 09:27:53',1,'2006-02-15 21:30:53'),(8585,'2005-07-29 12:14:18',512,516,'2005-08-03 08:31:18',2,'2006-02-15 21:30:53'),(8586,'2005-07-29 12:16:34',2752,374,'2005-08-07 06:48:34',1,'2006-02-15 21:30:53'),(8587,'2005-07-29 12:18:40',1941,108,'2005-08-03 14:01:40',1,'2006-02-15 21:30:53'),(8588,'2005-07-29 12:22:20',2858,416,'2005-07-31 10:49:20',1,'2006-02-15 21:30:53'),(8589,'2005-07-29 12:28:17',1628,293,'2005-08-05 11:40:17',1,'2006-02-15 21:30:53'),(8590,'2005-07-29 12:32:20',2505,114,'2005-08-07 08:00:20',1,'2006-02-15 21:30:53'),(8591,'2005-07-29 12:32:33',2568,418,'2005-08-01 16:19:33',2,'2006-02-15 21:30:53'),(8592,'2005-07-29 12:33:58',1952,271,'2005-08-04 07:14:58',2,'2006-02-15 21:30:53'),(8593,'2005-07-29 12:38:14',2601,181,'2005-08-07 07:04:14',1,'2006-02-15 21:30:53'),(8594,'2005-07-29 12:42:13',4155,115,'2005-08-02 07:38:13',1,'2006-02-15 21:30:53'),(8595,'2005-07-29 12:47:43',3225,423,'2005-08-07 13:51:43',2,'2006-02-15 21:30:53'),(8596,'2005-07-29 12:48:54',59,233,'2005-08-04 07:19:54',2,'2006-02-15 21:30:53'),(8597,'2005-07-29 12:55:55',4218,222,'2005-08-05 18:54:55',1,'2006-02-15 21:30:53'),(8598,'2005-07-29 12:56:59',626,2,'2005-08-01 08:39:59',2,'2006-02-15 21:30:53'),(8599,'2005-07-29 12:58:52',1169,545,'2005-08-03 08:19:52',1,'2006-02-15 21:30:53'),(8600,'2005-07-29 13:01:19',1488,226,'2005-07-31 15:40:19',2,'2006-02-15 21:30:53'),(8601,'2005-07-29 13:03:31',3247,181,'2005-08-06 16:32:31',1,'2006-02-15 21:30:53'),(8602,'2005-07-29 13:04:27',4002,64,'2005-08-03 12:21:27',2,'2006-02-15 21:30:53'),(8603,'2005-07-29 13:07:07',3007,594,'2005-08-04 18:32:07',2,'2006-02-15 21:30:53'),(8604,'2005-07-29 13:07:13',3909,326,'2005-07-31 18:00:13',2,'2006-02-15 21:30:53'),(8605,'2005-07-29 13:13:34',3805,224,'2005-08-07 08:29:34',1,'2006-02-15 21:30:53'),(8606,'2005-07-29 13:14:24',4051,340,'2005-07-30 14:52:24',1,'2006-02-15 21:30:53'),(8607,'2005-07-29 13:18:00',4290,336,'2005-07-30 18:51:00',2,'2006-02-15 21:30:53'),(8608,'2005-07-29 13:18:52',2976,165,'2005-07-30 19:01:52',2,'2006-02-15 21:30:53'),(8609,'2005-07-29 13:19:25',3997,354,'2005-08-06 08:33:25',2,'2006-02-15 21:30:53'),(8610,'2005-07-29 13:25:02',4222,563,'2005-08-03 08:10:02',2,'2006-02-15 21:30:53'),(8611,'2005-07-29 13:26:21',610,373,'2005-08-07 18:20:21',2,'2006-02-15 21:30:53'),(8612,'2005-07-29 13:28:20',3518,392,'2005-08-06 14:39:20',2,'2006-02-15 21:30:53'),(8613,'2005-07-29 13:30:58',394,411,'2005-08-05 16:21:58',2,'2006-02-15 21:30:53'),(8614,'2005-07-29 13:32:05',604,552,'2005-08-04 15:26:05',1,'2006-02-15 21:30:53'),(8615,'2005-07-29 13:36:01',4453,15,'2005-08-03 13:15:01',1,'2006-02-15 21:30:53'),(8616,'2005-07-29 13:39:09',2583,493,'2005-08-01 16:49:09',1,'2006-02-15 21:30:53'),(8617,'2005-07-29 13:46:14',385,441,'2005-08-06 13:26:14',2,'2006-02-15 21:30:53'),(8618,'2005-07-29 13:48:20',985,270,'2005-08-06 14:12:20',2,'2006-02-15 21:30:53'),(8619,'2005-07-29 13:50:08',2169,50,'2005-08-06 13:15:08',1,'2006-02-15 21:30:53'),(8620,'2005-07-29 13:51:20',3718,306,'2005-08-02 13:05:20',1,'2006-02-15 21:30:53'),(8621,'2005-07-29 13:52:42',2473,358,'2005-07-30 11:42:42',2,'2006-02-15 21:30:53'),(8622,'2005-07-29 13:53:28',4076,98,'2005-07-31 16:12:28',2,'2006-02-15 21:30:53'),(8623,'2005-07-29 13:55:11',458,142,'2005-08-05 11:16:11',1,'2006-02-15 21:30:53'),(8624,'2005-07-29 13:55:36',4402,439,'2005-08-02 12:23:36',2,'2006-02-15 21:30:53'),(8625,'2005-07-29 13:59:13',884,410,'2005-08-07 17:56:13',2,'2006-02-15 21:30:53'),(8626,'2005-07-29 14:03:20',3092,148,'2005-08-02 09:05:20',1,'2006-02-15 21:30:53'),(8627,'2005-07-29 14:05:12',4235,226,'2005-08-05 16:53:12',2,'2006-02-15 21:30:53'),(8628,'2005-07-29 14:06:24',4484,550,'2005-08-06 10:42:24',2,'2006-02-15 21:30:53'),(8629,'2005-07-29 14:06:35',853,567,'2005-08-03 16:59:35',2,'2006-02-15 21:30:53'),(8630,'2005-07-29 14:07:59',1378,406,'2005-08-03 13:18:59',2,'2006-02-15 21:30:53'),(8631,'2005-07-29 14:08:06',98,559,'2005-08-05 14:57:06',1,'2006-02-15 21:30:53'),(8632,'2005-07-29 14:11:25',1666,563,'2005-08-07 15:32:25',1,'2006-02-15 21:30:53'),(8633,'2005-07-29 14:19:53',3436,534,'2005-08-01 11:31:53',2,'2006-02-15 21:30:53'),(8634,'2005-07-29 14:19:57',2023,335,'2005-08-07 13:44:57',1,'2006-02-15 21:30:53'),(8635,'2005-07-29 14:22:48',2894,383,'2005-08-01 11:59:48',2,'2006-02-15 21:30:53'),(8636,'2005-07-29 14:24:13',4308,252,'2005-08-02 14:39:13',1,'2006-02-15 21:30:53'),(8637,'2005-07-29 14:30:11',1069,310,'2005-08-04 14:00:11',1,'2006-02-15 21:30:53'),(8638,'2005-07-29 14:30:23',4060,571,'2005-08-01 10:32:23',1,'2006-02-15 21:30:53'),(8639,'2005-07-29 14:30:31',3504,290,'2005-08-02 16:04:31',1,'2006-02-15 21:30:53'),(8640,'2005-07-29 14:34:17',1874,257,'2005-08-01 13:09:17',2,'2006-02-15 21:30:53'),(8641,'2005-07-29 14:37:30',3199,30,'2005-08-02 19:32:30',2,'2006-02-15 21:30:53'),(8642,'2005-07-29 14:38:17',3947,522,'2005-08-03 14:41:17',1,'2006-02-15 21:30:53'),(8643,'2005-07-29 14:45:23',381,59,'2005-08-04 18:42:23',1,'2006-02-15 21:30:53'),(8644,'2005-07-29 14:45:45',4507,314,'2005-08-03 20:10:45',2,'2006-02-15 21:30:53'),(8645,'2005-07-29 14:47:45',2532,535,'2005-07-30 14:56:45',2,'2006-02-15 21:30:53'),(8646,'2005-07-29 14:48:48',89,302,'2005-08-03 18:11:48',2,'2006-02-15 21:30:53'),(8647,'2005-07-29 14:52:59',556,307,'2005-08-06 11:09:59',2,'2006-02-15 21:30:53'),(8648,'2005-07-29 14:56:21',160,416,'2005-07-31 16:56:21',2,'2006-02-15 21:30:53'),(8649,'2005-07-29 14:57:33',789,69,'2005-08-07 09:43:33',2,'2006-02-15 21:30:53'),(8650,'2005-07-29 14:59:04',1272,134,'2005-08-04 13:13:04',2,'2006-02-15 21:30:53'),(8651,'2005-07-29 15:02:18',2095,61,'2005-08-07 09:34:18',2,'2006-02-15 21:30:53'),(8652,'2005-07-29 15:02:54',2729,219,'2005-08-07 17:21:54',2,'2006-02-15 21:30:53'),(8653,'2005-07-29 15:04:23',4440,230,'2005-08-02 09:39:23',2,'2006-02-15 21:30:53'),(8654,'2005-07-29 15:04:27',3925,84,'2005-08-07 18:37:27',1,'2006-02-15 21:30:53'),(8655,'2005-07-29 15:04:42',3986,232,'2005-08-04 11:26:42',1,'2006-02-15 21:30:53'),(8656,'2005-07-29 15:05:52',1385,460,'2005-07-31 20:57:52',2,'2006-02-15 21:30:53'),(8657,'2005-07-29 15:09:25',3194,236,'2005-07-31 19:10:25',1,'2006-02-15 21:30:53'),(8658,'2005-07-29 15:16:37',2033,427,'2005-08-07 20:45:37',2,'2006-02-15 21:30:53'),(8659,'2005-07-29 15:26:31',558,168,'2005-08-06 19:05:31',2,'2006-02-15 21:30:53'),(8660,'2005-07-29 15:26:59',3122,566,'2005-08-05 21:04:59',2,'2006-02-15 21:30:53'),(8661,'2005-07-29 15:28:24',3409,341,'2005-08-05 20:04:24',2,'2006-02-15 21:30:53'),(8662,'2005-07-29 15:31:33',3758,362,'2005-07-30 09:39:33',2,'2006-02-15 21:30:53'),(8663,'2005-07-29 15:33:18',1281,214,'2005-07-30 18:03:18',1,'2006-02-15 21:30:53'),(8664,'2005-07-29 15:36:27',198,102,'2005-08-04 20:11:27',1,'2006-02-15 21:30:53'),(8665,'2005-07-29 15:39:29',1113,265,'2005-08-01 10:33:29',2,'2006-02-15 21:30:53'),(8666,'2005-07-29 15:39:38',3669,591,'2005-08-06 17:12:38',1,'2006-02-15 21:30:53'),(8667,'2005-07-29 15:40:57',3439,25,'2005-07-31 20:59:57',1,'2006-02-15 21:30:53'),(8668,'2005-07-29 15:41:31',4531,71,'2005-08-01 16:20:31',2,'2006-02-15 21:30:53'),(8669,'2005-07-29 15:44:55',1667,401,'2005-08-01 14:09:55',2,'2006-02-15 21:30:53'),(8670,'2005-07-29 15:49:03',2354,446,'2005-08-01 20:19:03',2,'2006-02-15 21:30:53'),(8671,'2005-07-29 15:49:37',1431,577,'2005-08-05 18:20:37',1,'2006-02-15 21:30:53'),(8672,'2005-07-29 15:49:48',405,495,'2005-08-06 17:59:48',2,'2006-02-15 21:30:53'),(8673,'2005-07-29 15:50:14',2167,29,'2005-08-03 18:30:14',1,'2006-02-15 21:30:53'),(8674,'2005-07-29 15:54:22',1744,412,'2005-07-31 12:15:22',1,'2006-02-15 21:30:53'),(8675,'2005-07-29 15:56:18',1026,258,'2005-07-30 18:50:18',1,'2006-02-15 21:30:53'),(8676,'2005-07-29 15:59:06',283,533,'2005-08-05 19:12:06',2,'2006-02-15 21:30:53'),(8677,'2005-07-29 16:01:13',513,315,'2005-08-07 19:21:13',2,'2006-02-15 21:30:53'),(8678,'2005-07-29 16:04:00',3991,210,'2005-08-05 12:37:00',1,'2006-02-15 21:30:53'),(8679,'2005-07-29 16:07:47',3549,536,'2005-08-02 18:37:47',1,'2006-02-15 21:30:53'),(8680,'2005-07-29 16:08:03',1227,330,'2005-07-31 17:26:03',1,'2006-02-15 21:30:53'),(8681,'2005-07-29 16:12:01',4004,309,'2005-08-01 18:14:01',2,'2006-02-15 21:30:53'),(8682,'2005-07-29 16:15:26',4328,348,'2005-08-03 20:15:26',2,'2006-02-15 21:30:53'),(8683,'2005-07-29 16:15:43',3915,513,'2005-08-07 19:19:43',1,'2006-02-15 21:30:53'),(8684,'2005-07-29 16:16:33',2457,185,'2005-08-07 12:27:33',2,'2006-02-15 21:30:53'),(8685,'2005-07-29 16:17:05',1827,321,'2005-08-07 17:44:05',1,'2006-02-15 21:30:53'),(8686,'2005-07-29 16:17:49',4160,52,'2005-08-01 12:50:49',2,'2006-02-15 21:30:53'),(8687,'2005-07-29 16:19:17',222,117,'2005-08-01 15:28:17',1,'2006-02-15 21:30:53'),(8688,'2005-07-29 16:31:32',2263,381,'2005-07-30 12:39:32',1,'2006-02-15 21:30:53'),(8689,'2005-07-29 16:38:58',824,487,'2005-08-01 17:09:58',2,'2006-02-15 21:30:53'),(8690,'2005-07-29 16:39:28',1292,291,'2005-08-01 14:03:28',2,'2006-02-15 21:30:53'),(8691,'2005-07-29 16:41:23',672,446,'2005-08-02 12:32:23',2,'2006-02-15 21:30:53'),(8692,'2005-07-29 16:43:39',3192,88,'2005-08-01 15:54:39',2,'2006-02-15 21:30:53'),(8693,'2005-07-29 16:44:13',917,51,'2005-08-01 15:56:13',1,'2006-02-15 21:30:53'),(8694,'2005-07-29 16:44:48',503,345,'2005-08-06 16:28:48',1,'2006-02-15 21:30:53'),(8695,'2005-07-29 16:44:55',694,280,'2005-08-07 12:47:55',1,'2006-02-15 21:30:53'),(8696,'2005-07-29 16:45:18',2553,178,'2005-08-07 18:51:18',1,'2006-02-15 21:30:53'),(8697,'2005-07-29 16:46:07',443,291,'2005-08-02 19:27:07',2,'2006-02-15 21:30:53'),(8698,'2005-07-29 16:52:17',2973,324,'2005-08-04 13:20:17',2,'2006-02-15 21:30:53'),(8699,'2005-07-29 16:53:00',4080,123,'2005-08-07 20:31:00',1,'2006-02-15 21:30:53'),(8700,'2005-07-29 16:56:01',3710,196,'2005-07-31 16:19:01',2,'2006-02-15 21:30:53'),(8701,'2005-07-29 17:02:35',3158,245,'2005-08-07 19:55:35',2,'2006-02-15 21:30:53'),(8702,'2005-07-29 17:04:37',2215,306,'2005-08-05 15:30:37',2,'2006-02-15 21:30:53'),(8703,'2005-07-29 17:12:44',1065,439,'2005-07-30 19:38:44',1,'2006-02-15 21:30:53'),(8704,'2005-07-29 17:13:45',2117,107,'2005-08-03 20:03:45',2,'2006-02-15 21:30:53'),(8705,'2005-07-29 17:14:29',4038,2,'2005-08-02 16:01:29',1,'2006-02-15 21:30:53'),(8706,'2005-07-29 17:19:15',2886,515,'2005-08-03 22:52:15',1,'2006-02-15 21:30:53'),(8707,'2005-07-29 17:21:58',2525,157,'2005-08-02 14:47:58',2,'2006-02-15 21:30:53'),(8708,'2005-07-29 17:24:13',4054,529,'2005-08-04 13:57:13',1,'2006-02-15 21:30:53'),(8709,'2005-07-29 17:25:54',902,199,'2005-08-02 22:35:54',1,'2006-02-15 21:30:53'),(8710,'2005-07-29 17:26:03',3391,566,'2005-07-30 19:51:03',1,'2006-02-15 21:30:53'),(8711,'2005-07-29 17:27:15',3471,575,'2005-07-31 12:57:15',1,'2006-02-15 21:30:53'),(8712,'2005-07-29 17:30:06',2800,41,'2005-08-03 22:55:06',2,'2006-02-15 21:30:53'),(8713,'2005-07-29 17:31:19',473,433,'2005-08-02 16:37:19',2,'2006-02-15 21:30:53'),(8714,'2005-07-29 17:31:40',4547,362,'2005-08-04 16:12:40',2,'2006-02-15 21:30:53'),(8715,'2005-07-29 17:33:45',860,11,'2005-08-01 17:30:45',1,'2006-02-15 21:30:53'),(8716,'2005-07-29 17:39:09',2123,48,'2005-08-03 20:26:09',2,'2006-02-15 21:30:53'),(8717,'2005-07-29 17:40:45',1821,260,'2005-08-01 22:38:45',2,'2006-02-15 21:30:53'),(8718,'2005-07-29 17:41:14',137,23,'2005-08-01 18:22:14',2,'2006-02-15 21:30:53'),(8719,'2005-07-29 17:45:45',995,333,'2005-08-01 13:53:45',1,'2006-02-15 21:30:53'),(8720,'2005-07-29 17:48:32',152,180,'2005-08-04 14:30:32',2,'2006-02-15 21:30:53'),(8721,'2005-07-29 17:56:21',2416,312,'2005-08-02 21:30:21',2,'2006-02-15 21:30:53'),(8722,'2005-07-29 17:58:58',1389,401,'2005-08-07 23:40:58',1,'2006-02-15 21:30:53'),(8723,'2005-07-29 18:03:47',224,39,'2005-08-06 18:53:47',1,'2006-02-15 21:30:53'),(8724,'2005-07-29 18:05:21',898,372,'2005-08-01 15:41:21',1,'2006-02-15 21:30:53'),(8725,'2005-07-29 18:08:42',2385,421,'2005-08-04 16:01:42',2,'2006-02-15 21:30:53'),(8726,'2005-07-29 18:09:22',897,409,'2005-08-06 16:24:22',1,'2006-02-15 21:30:53'),(8727,'2005-07-29 18:09:57',3031,528,'2005-08-03 13:41:57',2,'2006-02-15 21:30:53'),(8728,'2005-07-29 18:12:49',973,341,'2005-08-06 22:45:49',1,'2006-02-15 21:30:53'),(8729,'2005-07-29 18:23:02',3342,83,'2005-07-31 16:09:02',2,'2006-02-15 21:30:53'),(8730,'2005-07-29 18:23:34',4191,592,'2005-08-01 19:56:34',1,'2006-02-15 21:30:53'),(8731,'2005-07-29 18:23:57',2638,179,'2005-08-05 19:38:57',1,'2006-02-15 21:30:53'),(8732,'2005-07-29 18:25:03',1143,346,'2005-08-07 18:56:03',2,'2006-02-15 21:30:53'),(8733,'2005-07-29 18:26:34',3187,450,'2005-08-03 15:06:34',1,'2006-02-15 21:30:53'),(8734,'2005-07-29 18:28:15',2374,303,'2005-08-05 23:38:15',1,'2006-02-15 21:30:53'),(8735,'2005-07-29 18:28:54',2881,570,'2005-08-03 12:43:54',2,'2006-02-15 21:30:53'),(8736,'2005-07-29 18:31:15',1726,530,'2005-07-30 16:24:15',2,'2006-02-15 21:30:53'),(8737,'2005-07-29 18:32:13',4154,298,'2005-08-05 21:07:13',2,'2006-02-15 21:30:53'),(8738,'2005-07-29 18:32:47',3893,210,'2005-08-02 13:05:47',2,'2006-02-15 21:30:53'),(8739,'2005-07-29 18:34:33',4310,326,'2005-08-02 16:05:33',1,'2006-02-15 21:30:53'),(8740,'2005-07-29 18:41:31',3781,378,'2005-08-01 18:38:31',1,'2006-02-15 21:30:53'),(8741,'2005-07-29 18:44:57',165,4,'2005-08-03 18:25:57',2,'2006-02-15 21:30:53'),(8742,'2005-07-29 18:56:12',918,208,'2005-08-03 16:42:12',1,'2006-02-15 21:30:53'),(8743,'2005-07-29 18:57:01',2664,282,'2005-07-31 22:09:01',2,'2006-02-15 21:30:53'),(8744,'2005-07-29 18:58:24',1086,280,'2005-08-05 17:56:24',1,'2006-02-15 21:30:53'),(8745,'2005-07-29 19:03:05',1766,293,'2005-08-06 14:06:05',2,'2006-02-15 21:30:53'),(8746,'2005-07-29 19:03:15',2179,275,'2005-07-30 17:06:15',1,'2006-02-15 21:30:53'),(8747,'2005-07-29 19:07:57',2584,70,'2005-07-30 16:01:57',1,'2006-02-15 21:30:53'),(8748,'2005-07-29 19:08:37',2184,237,'2005-08-01 16:24:37',1,'2006-02-15 21:30:53'),(8749,'2005-07-29 19:13:15',2252,456,'2005-08-01 15:02:15',1,'2006-02-15 21:30:53'),(8750,'2005-07-29 19:14:21',3157,158,'2005-07-31 17:22:21',2,'2006-02-15 21:30:53'),(8751,'2005-07-29 19:14:39',3467,386,'2005-07-31 23:11:39',1,'2006-02-15 21:30:53'),(8752,'2005-07-29 19:15:07',4202,253,'2005-07-31 13:27:07',1,'2006-02-15 21:30:53'),(8753,'2005-07-29 19:15:50',1345,560,'2005-07-31 19:13:50',2,'2006-02-15 21:30:53'),(8754,'2005-07-29 19:18:30',1678,174,'2005-08-05 18:39:30',2,'2006-02-15 21:30:53'),(8755,'2005-07-29 19:18:31',1498,372,'2005-07-31 19:20:31',2,'2006-02-15 21:30:53'),(8756,'2005-07-29 19:18:57',4146,120,'2005-08-02 20:07:57',2,'2006-02-15 21:30:53'),(8757,'2005-07-29 19:19:10',3473,462,'2005-08-02 13:47:10',2,'2006-02-15 21:30:53'),(8758,'2005-07-29 19:20:49',2816,442,'2005-08-05 21:57:49',2,'2006-02-15 21:30:53'),(8759,'2005-07-29 19:22:37',844,209,'2005-08-07 15:36:37',2,'2006-02-15 21:30:53'),(8760,'2005-07-29 19:22:40',3566,118,'2005-08-05 01:09:40',2,'2006-02-15 21:30:53'),(8761,'2005-07-29 19:26:47',1317,539,'2005-08-08 00:09:47',1,'2006-02-15 21:30:53'),(8762,'2005-07-29 19:30:02',2765,463,'2005-08-04 18:38:02',1,'2006-02-15 21:30:53'),(8763,'2005-07-29 19:38:24',374,510,'2005-08-04 16:51:24',1,'2006-02-15 21:30:53'),(8764,'2005-07-29 19:39:04',2348,303,'2005-08-01 13:52:04',1,'2006-02-15 21:30:53'),(8765,'2005-07-29 19:40:08',2631,538,'2005-07-31 14:24:08',2,'2006-02-15 21:30:53'),(8766,'2005-07-29 19:41:04',3888,338,'2005-08-02 00:41:04',2,'2006-02-15 21:30:53'),(8767,'2005-07-29 19:42:33',962,467,'2005-08-01 20:52:33',2,'2006-02-15 21:30:53'),(8768,'2005-07-29 19:43:02',1601,468,'2005-08-03 23:36:02',1,'2006-02-15 21:30:53'),(8769,'2005-07-29 19:45:33',2180,588,'2005-08-05 22:09:33',2,'2006-02-15 21:30:53'),(8770,'2005-07-29 19:53:50',4025,499,'2005-08-05 14:22:50',1,'2006-02-15 21:30:53'),(8771,'2005-07-29 19:54:41',3533,347,'2005-08-03 20:38:41',1,'2006-02-15 21:30:53'),(8772,'2005-07-29 19:55:25',3526,122,'2005-08-05 18:48:25',1,'2006-02-15 21:30:53'),(8773,'2005-07-29 19:55:34',131,592,'2005-07-30 14:11:34',1,'2006-02-15 21:30:53'),(8774,'2005-07-29 20:05:04',315,161,'2005-07-31 14:32:04',1,'2006-02-15 21:30:53'),(8775,'2005-07-29 20:05:38',1358,44,'2005-07-30 21:13:38',1,'2006-02-15 21:30:53'),(8776,'2005-07-29 20:07:06',1565,587,'2005-08-06 20:42:06',2,'2006-02-15 21:30:53'),(8777,'2005-07-29 20:10:21',2462,382,'2005-07-30 20:32:21',2,'2006-02-15 21:30:53'),(8778,'2005-07-29 20:14:25',3654,582,'2005-08-04 00:50:25',1,'2006-02-15 21:30:53'),(8779,'2005-07-29 20:15:00',3245,202,'2005-08-03 21:17:00',1,'2006-02-15 21:30:53'),(8780,'2005-07-29 20:19:45',1095,328,'2005-08-03 22:22:45',2,'2006-02-15 21:30:53'),(8781,'2005-07-29 20:20:16',3746,235,'2005-07-30 16:19:16',2,'2006-02-15 21:30:53'),(8782,'2005-07-29 20:29:34',4379,365,'2005-08-04 02:19:34',1,'2006-02-15 21:30:53'),(8783,'2005-07-29 20:31:28',2316,71,'2005-08-02 19:33:28',2,'2006-02-15 21:30:53'),(8784,'2005-07-29 20:35:37',2308,580,'2005-07-30 17:22:37',1,'2006-02-15 21:30:53'),(8785,'2005-07-29 20:36:26',216,42,'2005-07-30 15:06:26',1,'2006-02-15 21:30:53'),(8786,'2005-07-29 20:39:49',2404,533,'2005-08-03 18:08:49',1,'2006-02-15 21:30:53'),(8787,'2005-07-29 20:43:49',2366,222,'2005-07-31 15:15:49',1,'2006-02-15 21:30:53'),(8788,'2005-07-29 20:46:44',3412,121,'2005-08-03 02:25:44',2,'2006-02-15 21:30:53'),(8789,'2005-07-29 20:47:27',3062,71,'2005-08-05 18:36:27',1,'2006-02-15 21:30:53'),(8790,'2005-07-29 20:51:41',751,323,'2005-07-30 17:30:41',2,'2006-02-15 21:30:53'),(8791,'2005-07-29 20:53:23',1677,469,'2005-07-31 18:14:23',1,'2006-02-15 21:30:53'),(8792,'2005-07-29 20:56:14',3764,203,'2005-08-07 16:44:14',2,'2006-02-15 21:30:53'),(8793,'2005-07-29 20:57:22',1819,167,'2005-08-02 01:40:22',2,'2006-02-15 21:30:53'),(8794,'2005-07-29 20:59:38',3509,320,'2005-07-31 00:15:38',2,'2006-02-15 21:30:53'),(8795,'2005-07-29 21:04:14',1896,302,'2005-07-31 02:58:14',2,'2006-02-15 21:30:53'),(8796,'2005-07-29 21:09:11',2234,74,'2005-08-04 22:55:11',1,'2006-02-15 21:30:53'),(8797,'2005-07-29 21:10:37',2929,566,'2005-08-07 21:43:37',1,'2006-02-15 21:30:53'),(8798,'2005-07-29 21:15:38',800,513,'2005-08-05 02:46:38',2,'2006-02-15 21:30:53'),(8799,'2005-07-29 21:16:47',326,237,'2005-08-07 22:09:47',2,'2006-02-15 21:30:53'),(8800,'2005-07-29 21:18:59',2082,207,'2005-08-06 19:59:59',2,'2006-02-15 21:30:53'),(8801,'2005-07-29 21:25:22',1111,590,'2005-08-01 00:02:22',1,'2006-02-15 21:30:53'),(8802,'2005-07-29 21:25:51',296,407,'2005-07-30 18:15:51',2,'2006-02-15 21:30:53'),(8803,'2005-07-29 21:26:24',2814,86,'2005-08-06 18:05:24',2,'2006-02-15 21:30:53'),(8804,'2005-07-29 21:28:19',4461,363,'2005-08-01 20:15:19',2,'2006-02-15 21:30:53'),(8805,'2005-07-29 21:29:58',4041,39,'2005-08-04 23:12:58',1,'2006-02-15 21:30:53'),(8806,'2005-07-29 21:36:34',4085,454,'2005-08-02 00:58:34',1,'2006-02-15 21:30:53'),(8807,'2005-07-29 21:36:59',2612,396,'2005-08-01 17:40:59',1,'2006-02-15 21:30:53'),(8808,'2005-07-29 21:39:07',593,173,'2005-08-03 02:09:07',2,'2006-02-15 21:30:53'),(8809,'2005-07-29 21:42:49',3278,8,'2005-08-04 01:13:49',1,'2006-02-15 21:30:53'),(8810,'2005-07-29 21:45:19',1233,431,'2005-08-08 01:45:19',2,'2006-02-15 21:30:53'),(8811,'2005-07-29 21:46:21',2041,245,'2005-08-07 16:51:21',2,'2006-02-15 21:30:53'),(8812,'2005-07-29 21:47:40',1172,563,'2005-08-04 01:18:40',2,'2006-02-15 21:30:53'),(8813,'2005-07-29 21:47:55',3442,497,'2005-08-05 01:16:55',1,'2006-02-15 21:30:53'),(8814,'2005-07-29 21:49:43',1492,487,'2005-08-01 19:56:43',1,'2006-02-15 21:30:53'),(8815,'2005-07-29 21:51:26',3469,230,'2005-08-03 22:37:26',1,'2006-02-15 21:30:53'),(8816,'2005-07-29 21:53:00',3984,209,'2005-08-01 21:20:00',1,'2006-02-15 21:30:53'),(8817,'2005-07-29 22:09:08',2716,175,'2005-08-01 19:07:08',1,'2006-02-15 21:30:53'),(8818,'2005-07-29 22:14:04',3090,98,'2005-08-07 17:26:04',1,'2006-02-15 21:30:53'),(8819,'2005-07-29 22:14:26',3100,591,'2005-08-06 23:02:26',2,'2006-02-15 21:30:53'),(8820,'2005-07-29 22:14:56',481,594,'2005-08-05 23:36:56',2,'2006-02-15 21:30:53'),(8821,'2005-07-29 22:18:12',52,477,'2005-08-05 22:00:12',1,'2006-02-15 21:30:53'),(8822,'2005-07-29 22:20:21',744,35,'2005-08-06 03:00:21',2,'2006-02-15 21:30:53'),(8823,'2005-07-29 22:22:12',951,75,'2005-08-07 21:03:12',1,'2006-02-15 21:30:53'),(8824,'2005-07-29 22:22:58',3506,164,'2005-07-31 21:02:58',2,'2006-02-15 21:30:53'),(8825,'2005-07-29 22:24:16',881,101,'2005-08-05 00:27:16',2,'2006-02-15 21:30:53'),(8826,'2005-07-29 22:30:16',1800,369,'2005-07-30 19:43:16',1,'2006-02-15 21:30:53'),(8827,'2005-07-29 22:31:24',1517,157,'2005-08-06 21:05:24',2,'2006-02-15 21:30:53'),(8828,'2005-07-29 22:32:54',1608,547,'2005-07-30 20:41:54',1,'2006-02-15 21:30:53'),(8829,'2005-07-29 22:33:34',1466,173,'2005-08-05 20:23:34',2,'2006-02-15 21:30:53'),(8830,'2005-07-29 22:34:35',1751,202,'2005-08-05 20:12:35',2,'2006-02-15 21:30:53'),(8831,'2005-07-29 22:37:41',3520,13,'2005-08-08 04:28:41',1,'2006-02-15 21:30:53'),(8832,'2005-07-29 22:37:49',380,125,'2005-08-04 23:32:49',1,'2006-02-15 21:30:53'),(8833,'2005-07-29 22:39:36',1741,101,'2005-08-05 21:19:36',1,'2006-02-15 21:30:53'),(8834,'2005-07-29 22:41:48',4477,243,'2005-08-05 03:21:48',2,'2006-02-15 21:30:53'),(8835,'2005-07-29 22:44:35',2653,237,'2005-08-05 23:28:35',1,'2006-02-15 21:30:53'),(8836,'2005-07-29 22:46:08',3265,14,'2005-08-02 19:53:08',2,'2006-02-15 21:30:53'),(8837,'2005-07-29 22:49:00',42,372,'2005-08-07 21:56:00',2,'2006-02-15 21:30:53'),(8838,'2005-07-29 22:52:23',133,550,'2005-08-03 22:49:23',1,'2006-02-15 21:30:53'),(8839,'2005-07-29 22:52:34',3440,580,'2005-08-05 03:24:34',2,'2006-02-15 21:30:53'),(8840,'2005-07-29 22:55:38',1484,295,'2005-08-06 02:11:38',1,'2006-02-15 21:30:53'),(8841,'2005-07-29 22:56:07',3935,363,'2005-08-01 21:21:07',2,'2006-02-15 21:30:53'),(8842,'2005-07-29 23:03:40',4203,292,'2005-08-06 23:23:40',2,'2006-02-15 21:30:53'),(8843,'2005-07-29 23:04:25',406,294,'2005-08-05 22:12:25',1,'2006-02-15 21:30:53'),(8844,'2005-07-29 23:05:08',327,244,'2005-08-06 00:24:08',2,'2006-02-15 21:30:53'),(8845,'2005-07-29 23:06:13',3036,543,'2005-08-02 20:16:13',1,'2006-02-15 21:30:53'),(8846,'2005-07-29 23:10:28',2912,108,'2005-08-03 22:07:28',2,'2006-02-15 21:30:53'),(8847,'2005-07-29 23:13:41',4133,480,'2005-07-31 23:55:41',1,'2006-02-15 21:30:53'),(8848,'2005-07-29 23:20:58',2972,545,'2005-08-03 17:28:58',2,'2006-02-15 21:30:53'),(8849,'2005-07-29 23:21:01',4300,79,'2005-08-03 20:01:01',1,'2006-02-15 21:30:53'),(8850,'2005-07-29 23:24:20',355,86,'2005-07-31 00:43:20',2,'2006-02-15 21:30:53'),(8851,'2005-07-29 23:26:19',212,445,'2005-08-05 03:59:19',2,'2006-02-15 21:30:53'),(8852,'2005-07-29 23:30:03',1138,42,'2005-08-05 05:22:03',2,'2006-02-15 21:30:53'),(8853,'2005-07-29 23:34:21',2323,58,'2005-07-31 21:20:21',2,'2006-02-15 21:30:53'),(8854,'2005-07-29 23:40:07',1365,527,'2005-08-01 00:35:07',2,'2006-02-15 21:30:53'),(8855,'2005-07-29 23:40:10',4388,335,'2005-08-02 18:07:10',2,'2006-02-15 21:30:53'),(8856,'2005-07-29 23:42:00',2942,365,'2005-08-07 03:00:00',1,'2006-02-15 21:30:53'),(8857,'2005-07-29 23:44:22',1348,477,'2005-07-31 21:32:22',2,'2006-02-15 21:30:53'),(8858,'2005-07-29 23:44:35',2378,558,'2005-08-01 05:25:35',2,'2006-02-15 21:30:53'),(8859,'2005-07-29 23:44:43',603,216,'2005-08-07 18:14:43',2,'2006-02-15 21:30:53'),(8860,'2005-07-29 23:45:57',2841,531,'2005-08-06 02:14:57',2,'2006-02-15 21:30:53'),(8861,'2005-07-29 23:47:29',759,560,'2005-08-07 01:27:29',1,'2006-02-15 21:30:53'),(8862,'2005-07-29 23:49:23',916,21,'2005-08-04 20:11:23',1,'2006-02-15 21:30:53'),(8863,'2005-07-29 23:52:01',75,47,'2005-08-04 20:28:01',1,'2006-02-15 21:30:53'),(8864,'2005-07-29 23:52:12',2321,167,'2005-07-30 22:12:12',1,'2006-02-15 21:30:53'),(8865,'2005-07-29 23:54:54',1835,305,'2005-07-31 05:10:54',2,'2006-02-15 21:30:53'),(8866,'2005-07-29 23:58:19',1530,44,'2005-08-01 05:19:19',2,'2006-02-15 21:30:53'),(8867,'2005-07-30 00:02:18',1388,497,'2005-08-04 00:44:18',2,'2006-02-15 21:30:53'),(8868,'2005-07-30 00:02:26',1229,512,'2005-08-01 22:28:26',2,'2006-02-15 21:30:53'),(8869,'2005-07-30 00:06:32',4353,308,'2005-07-31 20:49:32',2,'2006-02-15 21:30:53'),(8870,'2005-07-30 00:08:08',4104,90,'2005-08-08 00:15:08',2,'2006-02-15 21:30:53'),(8871,'2005-07-30 00:12:41',4535,382,'2005-08-08 03:53:41',1,'2006-02-15 21:30:53'),(8872,'2005-07-30 00:13:54',2669,186,'2005-08-01 18:34:54',1,'2006-02-15 21:30:53'),(8873,'2005-07-30 00:14:32',3498,91,'2005-08-04 20:42:32',2,'2006-02-15 21:30:53'),(8874,'2005-07-30 00:14:45',459,564,'2005-08-02 22:34:45',2,'2006-02-15 21:30:53'),(8875,'2005-07-30 00:15:09',1294,121,'2005-08-04 02:54:09',2,'2006-02-15 21:30:53'),(8876,'2005-07-30 00:15:09',2394,579,'2005-08-02 23:56:09',1,'2006-02-15 21:30:53'),(8877,'2005-07-30 00:15:22',1140,417,'2005-07-31 00:53:22',1,'2006-02-15 21:30:53'),(8878,'2005-07-30 00:15:57',440,25,'2005-08-01 00:22:57',2,'2006-02-15 21:30:53'),(8879,'2005-07-30 00:16:02',2956,584,'2005-08-06 20:10:02',2,'2006-02-15 21:30:53'),(8880,'2005-07-30 00:16:55',2920,51,'2005-08-01 01:05:55',1,'2006-02-15 21:30:53'),(8881,'2005-07-30 00:22:31',2012,118,'2005-08-04 19:10:31',1,'2006-02-15 21:30:53'),(8882,'2005-07-30 00:24:05',441,410,'2005-08-03 19:48:05',2,'2006-02-15 21:30:53'),(8883,'2005-07-30 00:24:48',1421,168,'2005-08-04 00:24:48',2,'2006-02-15 21:30:53'),(8884,'2005-07-30 00:26:22',3050,80,'2005-08-05 03:24:22',1,'2006-02-15 21:30:53'),(8885,'2005-07-30 00:36:26',2984,135,'2005-08-06 03:05:26',1,'2006-02-15 21:30:53'),(8886,'2005-07-30 00:36:31',1469,418,'2005-08-08 06:18:31',1,'2006-02-15 21:30:53'),(8887,'2005-07-30 00:36:54',4119,389,'2005-08-04 19:07:54',1,'2006-02-15 21:30:53'),(8888,'2005-07-30 00:39:36',2824,284,'2005-08-01 02:28:36',2,'2006-02-15 21:30:53'),(8889,'2005-07-30 00:39:43',3457,558,'2005-08-02 23:22:43',1,'2006-02-15 21:30:53'),(8890,'2005-07-30 00:42:06',3656,470,'2005-08-05 21:04:06',1,'2006-02-15 21:30:53'),(8891,'2005-07-30 00:46:55',4093,435,'2005-08-06 23:32:55',2,'2006-02-15 21:30:53'),(8892,'2005-07-30 00:47:03',1584,184,'2005-08-06 03:23:03',2,'2006-02-15 21:30:53'),(8893,'2005-07-30 00:48:19',1048,147,'2005-08-01 03:25:19',1,'2006-02-15 21:30:53'),(8894,'2005-07-30 00:48:31',2055,552,'2005-07-31 05:49:31',1,'2006-02-15 21:30:53'),(8895,'2005-07-30 00:49:17',3217,494,'2005-07-31 01:56:17',1,'2006-02-15 21:30:53'),(8896,'2005-07-30 00:51:21',3560,205,'2005-07-31 22:33:21',1,'2006-02-15 21:30:53'),(8897,'2005-07-30 01:00:17',1964,459,'2005-08-01 03:41:17',1,'2006-02-15 21:30:53'),(8898,'2005-07-30 01:02:20',3961,452,'2005-08-05 22:02:20',2,'2006-02-15 21:30:53'),(8899,'2005-07-30 01:05:30',4148,252,'2005-08-01 23:32:30',1,'2006-02-15 21:30:53'),(8900,'2005-07-30 01:07:03',3057,375,'2005-08-06 04:07:03',1,'2006-02-15 21:30:53'),(8901,'2005-07-30 01:07:12',4392,28,'2005-08-02 06:34:12',1,'2006-02-15 21:30:53'),(8902,'2005-07-30 01:08:06',2983,408,'2005-08-05 00:00:06',2,'2006-02-15 21:30:53'),(8903,'2005-07-30 01:08:06',4546,406,'2005-07-30 21:47:06',2,'2006-02-15 21:30:53'),(8904,'2005-07-30 01:08:33',3622,575,'2005-08-04 02:33:33',1,'2006-02-15 21:30:53'),(8905,'2005-07-30 01:11:11',2154,240,'2005-08-04 22:39:11',1,'2006-02-15 21:30:53'),(8906,'2005-07-30 01:21:39',2667,560,'2005-08-07 02:14:39',2,'2006-02-15 21:30:53'),(8907,'2005-07-30 01:25:03',3239,576,'2005-08-03 05:41:03',1,'2006-02-15 21:30:53'),(8908,'2005-07-30 01:26:05',4498,391,'2005-07-31 20:39:05',1,'2006-02-15 21:30:53'),(8909,'2005-07-30 01:28:03',2606,556,'2005-08-06 04:40:03',2,'2006-02-15 21:30:53'),(8910,'2005-07-30 01:29:48',1039,569,'2005-07-31 21:33:48',2,'2006-02-15 21:30:53'),(8911,'2005-07-30 01:30:57',2159,445,'2005-08-02 20:01:57',1,'2006-02-15 21:30:53'),(8912,'2005-07-30 01:31:25',1686,280,'2005-08-02 07:14:25',2,'2006-02-15 21:30:53'),(8913,'2005-07-30 01:35:01',429,391,'2005-08-06 06:13:01',1,'2006-02-15 21:30:53'),(8914,'2005-07-30 01:42:03',1347,32,'2005-08-04 03:53:03',1,'2006-02-15 21:30:53'),(8915,'2005-07-30 01:42:09',3030,42,'2005-08-04 23:29:09',2,'2006-02-15 21:30:53'),(8916,'2005-07-30 01:42:21',3852,377,'2005-08-03 05:28:21',1,'2006-02-15 21:30:53'),(8917,'2005-07-30 01:47:02',4460,309,'2005-08-05 21:10:02',2,'2006-02-15 21:30:53'),(8918,'2005-07-30 01:56:22',2544,424,'2005-08-04 01:58:22',2,'2006-02-15 21:30:53'),(8919,'2005-07-30 01:57:03',4006,337,'2005-08-08 05:14:03',1,'2006-02-15 21:30:53'),(8920,'2005-07-30 01:59:24',4079,78,'2005-08-02 22:37:24',2,'2006-02-15 21:30:53'),(8921,'2005-07-30 02:04:02',1016,354,'2005-07-31 06:18:02',1,'2006-02-15 21:30:53'),(8922,'2005-07-30 02:08:25',1696,446,'2005-08-08 07:19:25',2,'2006-02-15 21:30:53'),(8923,'2005-07-30 02:08:49',2425,446,'2005-08-03 23:45:49',2,'2006-02-15 21:30:53'),(8924,'2005-07-30 02:08:58',2291,38,'2005-08-05 02:13:58',2,'2006-02-15 21:30:53'),(8925,'2005-07-30 02:09:14',3753,500,'2005-07-30 21:39:14',1,'2006-02-15 21:30:53'),(8926,'2005-07-30 02:10:31',3677,510,'2005-08-03 23:56:31',1,'2006-02-15 21:30:53'),(8927,'2005-07-30 02:13:31',272,15,'2005-08-01 01:34:31',1,'2006-02-15 21:30:53'),(8928,'2005-07-30 02:18:19',706,366,'2005-08-05 00:49:19',2,'2006-02-15 21:30:53'),(8929,'2005-07-30 02:28:22',3501,472,'2005-08-06 06:13:22',1,'2006-02-15 21:30:53'),(8930,'2005-07-30 02:28:38',1107,202,'2005-08-02 01:43:38',2,'2006-02-15 21:30:53'),(8931,'2005-07-30 02:30:07',16,268,'2005-08-02 08:24:07',2,'2006-02-15 21:30:53'),(8932,'2005-07-30 02:31:26',4537,295,'2005-08-04 02:17:26',2,'2006-02-15 21:30:53'),(8933,'2005-07-30 02:36:06',1664,260,'2005-08-02 23:37:06',2,'2006-02-15 21:30:53'),(8934,'2005-07-30 02:37:05',3223,494,'2005-08-01 20:42:05',1,'2006-02-15 21:30:53'),(8935,'2005-07-30 02:38:45',285,76,'2005-08-02 07:11:45',2,'2006-02-15 21:30:53'),(8936,'2005-07-30 02:47:13',1408,227,'2005-08-01 02:25:13',2,'2006-02-15 21:30:53'),(8937,'2005-07-30 02:53:21',2406,544,'2005-08-08 03:33:21',2,'2006-02-15 21:30:53'),(8938,'2005-07-30 02:56:08',4031,92,'2005-07-31 23:08:08',2,'2006-02-15 21:30:53'),(8939,'2005-07-30 02:56:53',4175,598,'2005-08-01 21:19:53',1,'2006-02-15 21:30:53'),(8940,'2005-07-30 02:57:26',1566,212,'2005-08-05 22:05:26',1,'2006-02-15 21:30:53'),(8941,'2005-07-30 02:59:21',4147,329,'2005-08-02 05:18:21',2,'2006-02-15 21:30:53'),(8942,'2005-07-30 03:01:07',4375,77,'2005-08-06 22:50:07',2,'2006-02-15 21:30:53'),(8943,'2005-07-30 03:06:48',3698,531,'2005-08-02 00:59:48',2,'2006-02-15 21:30:53'),(8944,'2005-07-30 03:11:44',3513,172,'2005-08-06 23:15:44',2,'2006-02-15 21:30:53'),(8945,'2005-07-30 03:11:48',1441,447,'2005-08-07 07:53:48',2,'2006-02-15 21:30:53'),(8946,'2005-07-30 03:14:53',3510,257,'2005-08-04 00:50:53',1,'2006-02-15 21:30:53'),(8947,'2005-07-30 03:15:37',341,24,'2005-08-04 07:10:37',2,'2006-02-15 21:30:53'),(8948,'2005-07-30 03:16:18',948,597,'2005-08-04 03:16:18',1,'2006-02-15 21:30:53'),(8949,'2005-07-30 03:17:02',2876,231,'2005-08-08 07:38:02',1,'2006-02-15 21:30:53'),(8950,'2005-07-30 03:17:13',3015,11,'2005-08-07 00:20:13',1,'2006-02-15 21:30:53'),(8951,'2005-07-30 03:18:24',127,336,'2005-08-08 08:50:24',2,'2006-02-15 21:30:53'),(8952,'2005-07-30 03:20:38',4397,36,'2005-08-02 02:54:38',1,'2006-02-15 21:30:53'),(8953,'2005-07-30 03:21:05',535,278,'2005-08-02 05:24:05',2,'2006-02-15 21:30:53'),(8954,'2005-07-30 03:25:51',991,137,'2005-08-06 05:10:51',2,'2006-02-15 21:30:53'),(8955,'2005-07-30 03:28:27',4532,405,'2005-08-04 04:56:27',2,'2006-02-15 21:30:53'),(8956,'2005-07-30 03:32:29',2129,71,'2005-08-01 03:08:29',2,'2006-02-15 21:30:53'),(8957,'2005-07-30 03:34:10',811,158,'2005-08-06 07:05:10',1,'2006-02-15 21:30:53'),(8958,'2005-07-30 03:34:26',1556,536,'2005-08-06 08:14:26',1,'2006-02-15 21:30:53'),(8959,'2005-07-30 03:35:49',3508,550,'2005-08-06 02:02:49',2,'2006-02-15 21:30:53'),(8960,'2005-07-30 03:36:31',391,525,'2005-08-01 23:46:31',2,'2006-02-15 21:30:53'),(8961,'2005-07-30 03:43:35',3679,211,'2005-08-06 07:42:35',1,'2006-02-15 21:30:53'),(8962,'2005-07-30 03:43:45',4439,406,'2005-08-07 00:33:45',1,'2006-02-15 21:30:53'),(8963,'2005-07-30 03:46:26',100,544,'2005-08-08 06:12:26',1,'2006-02-15 21:30:53'),(8964,'2005-07-30 03:49:35',280,424,'2005-08-06 23:28:35',2,'2006-02-15 21:30:53'),(8965,'2005-07-30 03:52:37',2419,599,'2005-08-05 01:28:37',2,'2006-02-15 21:30:53'),(8966,'2005-07-30 03:54:12',1903,522,'2005-07-31 04:51:12',1,'2006-02-15 21:30:53'),(8967,'2005-07-30 03:56:55',1536,480,'2005-08-06 05:25:55',2,'2006-02-15 21:30:53'),(8968,'2005-07-30 03:57:32',2280,339,'2005-07-31 00:09:32',1,'2006-02-15 21:30:53'),(8969,'2005-07-30 04:00:19',2043,121,'2005-08-06 04:39:19',1,'2006-02-15 21:30:53'),(8970,'2005-07-30 04:02:05',2940,313,'2005-08-07 03:40:05',2,'2006-02-15 21:30:53'),(8971,'2005-07-30 04:03:58',3572,35,'2005-08-08 04:16:58',2,'2006-02-15 21:30:53'),(8972,'2005-07-30 04:06:25',1974,89,'2005-08-04 22:49:25',1,'2006-02-15 21:30:53'),(8973,'2005-07-30 04:09:13',886,282,'2005-08-07 22:30:13',2,'2006-02-15 21:30:53'),(8974,'2005-07-30 04:09:16',3376,425,'2005-08-04 06:55:16',1,'2006-02-15 21:30:53'),(8975,'2005-07-30 04:10:18',3288,356,'2005-08-07 01:06:18',2,'2006-02-15 21:30:53'),(8976,'2005-07-30 04:12:32',2135,507,'2005-08-04 23:08:32',1,'2006-02-15 21:30:53'),(8977,'2005-07-30 04:14:07',4099,334,'2005-08-05 23:45:07',2,'2006-02-15 21:30:53'),(8978,'2005-07-30 04:14:28',711,5,'2005-08-06 09:08:28',1,'2006-02-15 21:30:53'),(8979,'2005-07-30 04:20:25',1394,529,'2005-08-08 03:39:25',2,'2006-02-15 21:30:53'),(8980,'2005-07-30 04:22:15',3061,105,'2005-08-04 08:16:15',1,'2006-02-15 21:30:53'),(8981,'2005-07-30 04:25:30',4413,310,'2005-08-06 02:37:30',1,'2006-02-15 21:30:53'),(8982,'2005-07-30 04:31:02',1128,251,'2005-07-31 04:22:02',1,'2006-02-15 21:30:53'),(8983,'2005-07-30 04:31:08',1861,144,'2005-07-31 09:28:08',1,'2006-02-15 21:30:53'),(8984,'2005-07-30 04:31:50',2126,485,'2005-08-04 03:24:50',1,'2006-02-15 21:30:53'),(8985,'2005-07-30 04:34:51',3179,12,'2005-08-06 00:45:51',2,'2006-02-15 21:30:53'),(8986,'2005-07-30 04:37:20',3992,551,'2005-07-31 23:54:20',1,'2006-02-15 21:30:53'),(8987,'2005-07-30 04:37:36',1434,135,'2005-08-08 10:14:36',2,'2006-02-15 21:30:53'),(8988,'2005-07-30 04:38:49',777,487,'2005-08-07 07:00:49',2,'2006-02-15 21:30:53'),(8989,'2005-07-30 04:39:19',954,575,'2005-08-06 02:11:19',1,'2006-02-15 21:30:53'),(8990,'2005-07-30 04:41:42',1869,292,'2005-08-07 22:50:42',2,'2006-02-15 21:30:53'),(8991,'2005-07-30 04:42:54',4540,474,'2005-08-01 23:51:54',1,'2006-02-15 21:30:53'),(8992,'2005-07-30 04:44:18',4478,54,'2005-08-01 00:29:18',1,'2006-02-15 21:30:53'),(8993,'2005-07-30 04:51:25',1891,382,'2005-08-01 01:04:25',1,'2006-02-15 21:30:53'),(8994,'2005-07-30 04:51:32',1527,287,'2005-08-07 09:41:32',1,'2006-02-15 21:30:53'),(8995,'2005-07-30 04:53:11',3575,331,'2005-08-07 00:24:11',1,'2006-02-15 21:30:53'),(8996,'2005-07-30 04:53:23',1970,579,'2005-07-31 06:01:23',1,'2006-02-15 21:30:53'),(8997,'2005-07-30 04:53:56',850,31,'2005-08-03 07:10:56',1,'2006-02-15 21:30:53'),(8998,'2005-07-30 04:54:14',1573,120,'2005-08-08 08:18:14',2,'2006-02-15 21:30:53'),(8999,'2005-07-30 04:55:46',3458,424,'2005-08-01 00:16:46',2,'2006-02-15 21:30:53'),(9000,'2005-07-30 04:58:55',3763,290,'2005-08-08 04:01:55',2,'2006-02-15 21:30:53'),(9001,'2005-07-30 04:59:41',3682,440,'2005-07-31 08:56:41',2,'2006-02-15 21:30:53'),(9002,'2005-07-30 05:02:21',1936,137,'2005-07-31 04:58:21',1,'2006-02-15 21:30:53'),(9003,'2005-07-30 05:02:52',1605,507,'2005-07-31 10:33:52',1,'2006-02-15 21:30:53'),(9004,'2005-07-30 05:04:27',3775,178,'2005-07-31 00:49:27',1,'2006-02-15 21:30:53'),(9005,'2005-07-30 05:04:58',157,204,'2005-08-03 07:41:58',2,'2006-02-15 21:30:53'),(9006,'2005-07-30 05:06:32',3315,49,'2005-07-31 08:24:32',1,'2006-02-15 21:30:53'),(9007,'2005-07-30 05:09:32',2813,63,'2005-08-02 06:12:32',2,'2006-02-15 21:30:53'),(9008,'2005-07-30 05:10:26',3592,371,'2005-07-31 08:13:26',1,'2006-02-15 21:30:53'),(9009,'2005-07-30 05:12:01',4136,166,'2005-08-07 10:58:01',1,'2006-02-15 21:30:53'),(9010,'2005-07-30 05:12:04',1698,152,'2005-08-06 02:54:04',2,'2006-02-15 21:30:53'),(9011,'2005-07-30 05:16:29',2799,236,'2005-08-05 06:57:29',1,'2006-02-15 21:30:53'),(9012,'2005-07-30 05:18:57',3604,494,'2005-08-06 06:21:57',1,'2006-02-15 21:30:53'),(9013,'2005-07-30 05:19:20',2367,347,'2005-08-04 01:35:20',1,'2006-02-15 21:30:53'),(9014,'2005-07-30 05:19:27',311,297,'2005-08-01 01:10:27',2,'2006-02-15 21:30:53'),(9015,'2005-07-30 05:21:32',4128,203,'2005-08-08 07:03:32',2,'2006-02-15 21:30:53'),(9016,'2005-07-30 05:26:13',4309,312,'2005-08-04 00:25:13',2,'2006-02-15 21:30:53'),(9017,'2005-07-30 05:26:20',3325,319,'2005-08-04 10:00:20',2,'2006-02-15 21:30:53'),(9018,'2005-07-30 05:28:40',1982,218,'2005-08-07 01:34:40',1,'2006-02-15 21:30:53'),(9019,'2005-07-30 05:28:53',946,235,'2005-08-03 02:16:53',2,'2006-02-15 21:30:53'),(9020,'2005-07-30 05:31:27',1700,142,'2005-08-08 06:44:27',2,'2006-02-15 21:30:53'),(9021,'2005-07-30 05:34:24',674,498,'2005-08-03 04:13:24',1,'2006-02-15 21:30:53'),(9022,'2005-07-30 05:34:45',4473,159,'2005-08-03 23:57:45',2,'2006-02-15 21:30:53'),(9023,'2005-07-30 05:36:40',2911,148,'2005-08-07 06:20:40',1,'2006-02-15 21:30:53'),(9024,'2005-07-30 05:44:42',164,329,'2005-08-05 03:15:42',2,'2006-02-15 21:30:53'),(9025,'2005-07-30 05:50:08',2244,473,'2005-07-31 09:58:08',1,'2006-02-15 21:30:53'),(9026,'2005-07-30 05:55:31',1524,423,'2005-08-01 03:19:31',1,'2006-02-15 21:30:53'),(9027,'2005-07-30 05:58:27',449,72,'2005-08-03 03:02:27',1,'2006-02-15 21:30:53'),(9028,'2005-07-30 06:00:35',2687,119,'2005-08-02 01:35:35',1,'2006-02-15 21:30:53'),(9029,'2005-07-30 06:03:11',2220,52,'2005-08-04 01:42:11',1,'2006-02-15 21:30:53'),(9030,'2005-07-30 06:05:38',2237,367,'2005-08-03 00:19:38',1,'2006-02-15 21:30:53'),(9031,'2005-07-30 06:06:10',2377,2,'2005-08-04 10:45:10',2,'2006-02-15 21:30:53'),(9032,'2005-07-30 06:06:54',4448,369,'2005-08-01 05:27:54',1,'2006-02-15 21:30:53'),(9033,'2005-07-30 06:07:42',3416,35,'2005-08-05 01:18:42',1,'2006-02-15 21:30:53'),(9034,'2005-07-30 06:10:58',3847,144,'2005-08-08 05:00:58',2,'2006-02-15 21:30:53'),(9035,'2005-07-30 06:16:07',3785,243,'2005-08-06 09:22:07',1,'2006-02-15 21:30:53'),(9036,'2005-07-30 06:18:38',790,18,'2005-07-31 01:22:38',1,'2006-02-15 21:30:53'),(9037,'2005-07-30 06:23:14',3833,356,'2005-08-08 06:25:14',1,'2006-02-15 21:30:53'),(9038,'2005-07-30 06:23:35',217,514,'2005-08-06 11:10:35',1,'2006-02-15 21:30:53'),(9039,'2005-07-30 06:24:28',4493,485,'2005-08-08 00:28:28',1,'2006-02-15 21:30:53'),(9040,'2005-07-30 06:31:45',392,33,'2005-08-03 12:20:45',1,'2006-02-15 21:30:53'),(9041,'2005-07-30 06:32:36',1103,454,'2005-08-01 10:28:36',2,'2006-02-15 21:30:53'),(9042,'2005-07-30 06:33:55',2770,398,'2005-08-04 09:31:55',2,'2006-02-15 21:30:53'),(9043,'2005-07-30 06:34:07',4127,9,'2005-08-02 01:16:07',1,'2006-02-15 21:30:53'),(9044,'2005-07-30 06:35:21',3796,319,'2005-07-31 10:27:21',1,'2006-02-15 21:30:53'),(9045,'2005-07-30 06:36:57',4521,46,'2005-08-08 01:51:57',1,'2006-02-15 21:30:53'),(9046,'2005-07-30 06:46:55',1736,215,'2005-08-01 02:21:55',2,'2006-02-15 21:30:53'),(9047,'2005-07-30 06:56:33',256,522,'2005-08-08 06:40:33',2,'2006-02-15 21:30:53'),(9048,'2005-07-30 06:57:07',3929,100,'2005-08-05 00:57:07',1,'2006-02-15 21:30:53'),(9049,'2005-07-30 06:57:28',2620,417,'2005-08-04 09:02:28',1,'2006-02-15 21:30:53'),(9050,'2005-07-30 06:59:55',106,40,'2005-08-06 06:37:55',1,'2006-02-15 21:30:53'),(9051,'2005-07-30 07:05:54',1847,337,'2005-08-07 09:12:54',2,'2006-02-15 21:30:53'),(9052,'2005-07-30 07:06:08',3351,408,'2005-08-03 10:30:08',1,'2006-02-15 21:30:53'),(9053,'2005-07-30 07:07:39',2535,485,'2005-08-01 09:22:39',2,'2006-02-15 21:30:53'),(9054,'2005-07-30 07:11:44',2860,209,'2005-08-08 01:55:44',2,'2006-02-15 21:30:53'),(9055,'2005-07-30 07:13:07',634,512,'2005-08-01 12:18:07',1,'2006-02-15 21:30:53'),(9056,'2005-07-30 07:13:20',4363,380,'2005-08-03 07:36:20',1,'2006-02-15 21:30:53'),(9057,'2005-07-30 07:14:18',3141,202,'2005-08-01 05:10:18',2,'2006-02-15 21:30:53'),(9058,'2005-07-30 07:15:45',4214,403,'2005-07-31 02:57:45',2,'2006-02-15 21:30:53'),(9059,'2005-07-30 07:18:44',480,267,'2005-08-08 08:39:44',1,'2006-02-15 21:30:53'),(9060,'2005-07-30 07:20:36',4360,87,'2005-08-03 10:51:36',1,'2006-02-15 21:30:53'),(9061,'2005-07-30 07:21:52',1933,255,'2005-08-08 10:52:52',1,'2006-02-15 21:30:53'),(9062,'2005-07-30 07:23:17',2780,358,'2005-08-02 12:07:17',1,'2006-02-15 21:30:53'),(9063,'2005-07-30 07:24:34',2851,564,'2005-08-05 01:28:34',2,'2006-02-15 21:30:53'),(9064,'2005-07-30 07:24:55',1417,194,'2005-08-07 08:44:55',2,'2006-02-15 21:30:53'),(9065,'2005-07-30 07:25:09',349,238,'2005-07-31 05:18:09',2,'2006-02-15 21:30:53'),(9066,'2005-07-30 07:28:54',196,171,'2005-08-02 05:23:54',1,'2006-02-15 21:30:53'),(9067,'2005-07-30 07:31:01',3628,382,'2005-08-04 11:44:01',2,'2006-02-15 21:30:53'),(9068,'2005-07-30 07:31:45',2264,78,'2005-08-08 06:40:45',1,'2006-02-15 21:30:53'),(9069,'2005-07-30 07:39:59',1852,258,'2005-08-02 04:10:59',1,'2006-02-15 21:30:53'),(9070,'2005-07-30 07:40:39',3690,276,'2005-08-01 04:19:39',2,'2006-02-15 21:30:53'),(9071,'2005-07-30 07:40:58',3151,523,'2005-08-01 06:59:58',2,'2006-02-15 21:30:53'),(9072,'2005-07-30 07:45:49',4536,106,'2005-08-04 10:00:49',1,'2006-02-15 21:30:53'),(9073,'2005-07-30 07:49:56',2185,141,'2005-08-05 06:25:56',2,'2006-02-15 21:30:53'),(9074,'2005-07-30 07:50:10',3244,84,'2005-08-01 11:21:10',2,'2006-02-15 21:30:53'),(9075,'2005-07-30 07:55:14',1931,20,'2005-08-02 13:49:14',1,'2006-02-15 21:30:53'),(9076,'2005-07-30 07:58:12',496,447,'2005-08-08 06:04:12',1,'2006-02-15 21:30:53'),(9077,'2005-07-30 08:00:19',4324,471,'2005-08-08 11:21:19',1,'2006-02-15 21:30:53'),(9078,'2005-07-30 08:01:00',955,300,'2005-07-31 10:39:00',1,'2006-02-15 21:30:53'),(9079,'2005-07-30 08:02:00',2143,193,'2005-07-31 04:02:00',2,'2006-02-15 21:30:53'),(9080,'2005-07-30 08:02:39',94,276,'2005-08-06 12:02:39',1,'2006-02-15 21:30:53'),(9081,'2005-07-30 08:09:58',3040,572,'2005-08-03 13:27:58',1,'2006-02-15 21:30:53'),(9082,'2005-07-30 08:11:22',4042,438,'2005-08-06 09:26:22',2,'2006-02-15 21:30:53'),(9083,'2005-07-30 08:14:27',456,488,'2005-08-07 14:02:27',1,'2006-02-15 21:30:53'),(9084,'2005-07-30 08:14:29',3950,171,'2005-08-03 11:12:29',2,'2006-02-15 21:30:53'),(9085,'2005-07-30 08:17:24',3400,33,'2005-08-03 09:35:24',2,'2006-02-15 21:30:53'),(9086,'2005-07-30 08:18:46',2779,57,'2005-08-06 06:10:46',2,'2006-02-15 21:30:53'),(9087,'2005-07-30 08:19:47',4048,546,'2005-08-02 07:15:47',1,'2006-02-15 21:30:53'),(9088,'2005-07-30 08:21:02',3407,245,'2005-08-01 09:55:02',1,'2006-02-15 21:30:53'),(9089,'2005-07-30 08:23:39',490,369,'2005-07-31 06:00:39',1,'2006-02-15 21:30:53'),(9090,'2005-07-30 08:24:42',3426,104,'2005-08-08 06:17:42',2,'2006-02-15 21:30:53'),(9091,'2005-07-30 08:30:45',2249,66,'2005-08-07 13:28:45',1,'2006-02-15 21:30:53'),(9092,'2005-07-30 08:30:56',1877,17,'2005-08-06 08:09:56',2,'2006-02-15 21:30:53'),(9093,'2005-07-30 08:33:24',2208,96,'2005-08-04 11:07:24',1,'2006-02-15 21:30:53'),(9094,'2005-07-30 08:35:10',2699,140,'2005-08-07 08:18:10',2,'2006-02-15 21:30:53'),(9095,'2005-07-30 08:38:36',3019,511,'2005-07-31 06:14:36',1,'2006-02-15 21:30:53'),(9096,'2005-07-30 08:39:23',540,216,'2005-08-01 03:33:23',1,'2006-02-15 21:30:53'),(9097,'2005-07-30 08:40:35',570,173,'2005-08-04 11:19:35',2,'2006-02-15 21:30:53'),(9098,'2005-07-30 08:44:21',1267,144,'2005-08-08 12:31:21',1,'2006-02-15 21:30:53'),(9099,'2005-07-30 08:45:48',594,250,'2005-08-01 03:18:48',2,'2006-02-15 21:30:53'),(9100,'2005-07-30 08:46:09',4117,4,'2005-08-05 10:34:09',1,'2006-02-15 21:30:53'),(9101,'2005-07-30 08:47:13',3165,566,'2005-08-02 12:52:13',1,'2006-02-15 21:30:53'),(9102,'2005-07-30 08:48:20',1154,276,'2005-08-04 10:19:20',1,'2006-02-15 21:30:53'),(9103,'2005-07-30 08:49:26',3806,280,'2005-07-31 14:15:26',1,'2006-02-15 21:30:53'),(9104,'2005-07-30 08:49:55',3372,322,'2005-08-06 12:23:55',1,'2006-02-15 21:30:53'),(9105,'2005-07-30 08:50:25',4443,262,'2005-08-05 06:08:25',1,'2006-02-15 21:30:53'),(9106,'2005-07-30 08:52:34',2935,148,'2005-08-02 07:38:34',2,'2006-02-15 21:30:53'),(9107,'2005-07-30 08:52:45',1068,531,'2005-08-05 08:39:45',2,'2006-02-15 21:30:53'),(9108,'2005-07-30 08:56:36',3977,490,'2005-08-04 11:07:36',1,'2006-02-15 21:30:53'),(9109,'2005-07-30 08:58:24',787,266,'2005-08-07 06:56:24',1,'2006-02-15 21:30:53'),(9110,'2005-07-30 09:05:42',1474,317,'2005-08-03 05:15:42',1,'2006-02-15 21:30:53'),(9111,'2005-07-30 09:05:44',166,211,'2005-08-04 14:27:44',2,'2006-02-15 21:30:53'),(9112,'2005-07-30 09:06:31',395,74,'2005-08-04 05:12:31',2,'2006-02-15 21:30:53'),(9113,'2005-07-30 09:09:03',3903,374,'2005-07-31 03:13:03',1,'2006-02-15 21:30:53'),(9114,'2005-07-30 09:13:21',893,18,'2005-08-05 06:00:21',2,'2006-02-15 21:30:53'),(9115,'2005-07-30 09:13:55',3750,322,'2005-08-04 04:02:55',2,'2006-02-15 21:30:53'),(9116,'2005-07-30 09:19:41',2917,446,'2005-08-03 08:01:41',2,'2006-02-15 21:30:53'),(9117,'2005-07-30 09:20:59',3055,371,'2005-08-07 08:47:59',1,'2006-02-15 21:30:53'),(9118,'2005-07-30 09:24:18',4538,172,'2005-08-02 14:46:18',2,'2006-02-15 21:30:53'),(9119,'2005-07-30 09:25:56',275,305,'2005-08-03 03:36:56',1,'2006-02-15 21:30:53'),(9120,'2005-07-30 09:26:08',139,473,'2005-08-08 09:52:08',1,'2006-02-15 21:30:53'),(9121,'2005-07-30 09:36:26',3098,150,'2005-08-05 15:17:26',2,'2006-02-15 21:30:53'),(9122,'2005-07-30 09:36:52',627,365,'2005-08-05 13:20:52',1,'2006-02-15 21:30:53'),(9123,'2005-07-30 09:39:15',3748,293,'2005-08-02 08:12:15',2,'2006-02-15 21:30:53'),(9124,'2005-07-30 09:43:12',4552,105,'2005-08-06 06:17:12',1,'2006-02-15 21:30:53'),(9125,'2005-07-30 09:43:39',333,335,'2005-08-07 14:02:39',1,'2006-02-15 21:30:53'),(9126,'2005-07-30 09:44:15',4495,590,'2005-08-02 11:02:15',2,'2006-02-15 21:30:53'),(9127,'2005-07-30 09:46:36',4114,300,'2005-07-31 07:43:36',1,'2006-02-15 21:30:53'),(9128,'2005-07-30 09:51:14',3647,372,'2005-08-07 06:23:14',1,'2006-02-15 21:30:53'),(9129,'2005-07-30 09:51:21',2658,125,'2005-08-07 08:50:21',2,'2006-02-15 21:30:53'),(9130,'2005-07-30 09:55:10',1715,354,'2005-08-04 08:57:10',1,'2006-02-15 21:30:53'),(9131,'2005-07-30 09:55:57',623,142,'2005-08-01 14:21:57',1,'2006-02-15 21:30:53'),(9132,'2005-07-30 09:56:00',402,159,'2005-08-02 09:22:00',1,'2006-02-15 21:30:53'),(9133,'2005-07-30 09:59:00',408,576,'2005-08-07 04:24:00',1,'2006-02-15 21:30:53'),(9134,'2005-07-30 10:00:21',3797,559,'2005-08-01 05:01:21',1,'2006-02-15 21:30:53'),(9135,'2005-07-30 10:06:53',821,161,'2005-08-03 13:57:53',2,'2006-02-15 21:30:53'),(9136,'2005-07-30 10:07:20',1734,57,'2005-07-31 08:20:20',2,'2006-02-15 21:30:53'),(9137,'2005-07-30 10:09:24',840,459,'2005-08-06 04:30:24',2,'2006-02-15 21:30:53'),(9138,'2005-07-30 10:11:52',2550,17,'2005-07-31 07:05:52',2,'2006-02-15 21:30:53'),(9139,'2005-07-30 10:11:52',2809,133,'2005-08-03 12:44:52',1,'2006-02-15 21:30:53'),(9140,'2005-07-30 10:12:01',4095,25,'2005-08-06 09:16:01',2,'2006-02-15 21:30:53'),(9141,'2005-07-30 10:16:04',3087,484,'2005-08-05 08:01:04',1,'2006-02-15 21:30:53'),(9142,'2005-07-30 10:21:03',4467,486,'2005-08-04 15:14:03',1,'2006-02-15 21:30:53'),(9143,'2005-07-30 10:22:11',2962,511,'2005-08-07 06:13:11',2,'2006-02-15 21:30:53'),(9144,'2005-07-30 10:22:15',718,381,'2005-08-05 08:14:15',1,'2006-02-15 21:30:53'),(9145,'2005-07-30 10:27:55',559,176,'2005-08-07 14:41:55',2,'2006-02-15 21:30:53'),(9146,'2005-07-30 10:32:08',483,302,'2005-08-08 14:30:08',1,'2006-02-15 21:30:53'),(9147,'2005-07-30 10:38:59',4167,394,'2005-08-02 11:45:59',2,'2006-02-15 21:30:53'),(9148,'2005-07-30 10:39:10',1407,333,'2005-08-04 07:17:10',2,'2006-02-15 21:30:53'),(9149,'2005-07-30 10:45:12',2632,21,'2005-08-01 09:40:12',1,'2006-02-15 21:30:53'),(9150,'2005-07-30 10:49:32',2834,213,'2005-08-08 15:43:32',1,'2006-02-15 21:30:53'),(9151,'2005-07-30 10:50:53',3956,102,'2005-08-07 08:19:53',1,'2006-02-15 21:30:53'),(9152,'2005-07-30 10:51:27',3607,595,'2005-07-31 06:38:27',2,'2006-02-15 21:30:53'),(9153,'2005-07-30 10:58:16',3743,589,'2005-08-03 06:16:16',2,'2006-02-15 21:30:53'),(9154,'2005-07-30 10:59:54',576,312,'2005-08-05 16:47:54',1,'2006-02-15 21:30:53'),(9155,'2005-07-30 11:00:00',3787,107,'2005-08-02 05:24:00',2,'2006-02-15 21:30:53'),(9156,'2005-07-30 11:04:55',1747,145,'2005-07-31 14:10:55',2,'2006-02-15 21:30:53'),(9157,'2005-07-30 11:06:23',146,19,'2005-08-05 05:29:23',2,'2006-02-15 21:30:53'),(9158,'2005-07-30 11:12:03',4017,16,'2005-08-02 05:55:03',2,'2006-02-15 21:30:53'),(9159,'2005-07-30 11:16:37',1234,217,'2005-08-03 10:32:37',1,'2006-02-15 21:30:53'),(9160,'2005-07-30 11:17:33',183,34,'2005-08-06 15:16:33',2,'2006-02-15 21:30:53'),(9161,'2005-07-30 11:19:18',969,433,'2005-08-02 05:32:18',1,'2006-02-15 21:30:53'),(9162,'2005-07-30 11:21:56',4198,184,'2005-08-02 15:32:56',1,'2006-02-15 21:30:53'),(9163,'2005-07-30 11:23:22',4562,345,'2005-07-31 07:34:22',2,'2006-02-15 21:30:53'),(9164,'2005-07-30 11:24:14',4434,342,'2005-08-08 16:24:14',1,'2006-02-15 21:30:53'),(9165,'2005-07-30 11:24:28',4034,291,'2005-08-03 09:38:28',1,'2006-02-15 21:30:53'),(9166,'2005-07-30 11:26:28',308,12,'2005-08-04 12:32:28',1,'2006-02-15 21:30:53'),(9167,'2005-07-30 11:30:37',1785,162,'2005-08-08 17:13:37',1,'2006-02-15 21:30:53'),(9168,'2005-07-30 11:31:17',2035,75,'2005-08-08 16:56:17',2,'2006-02-15 21:30:53'),(9169,'2005-07-30 11:35:00',1567,245,'2005-08-06 16:16:00',2,'2006-02-15 21:30:53'),(9170,'2005-07-30 11:35:24',4279,425,'2005-08-05 05:36:24',1,'2006-02-15 21:30:53'),(9171,'2005-07-30 11:36:24',1832,189,'2005-08-07 06:04:24',2,'2006-02-15 21:30:53'),(9172,'2005-07-30 11:36:38',695,437,'2005-08-04 09:39:38',1,'2006-02-15 21:30:53'),(9173,'2005-07-30 11:40:10',2103,381,'2005-08-04 05:40:10',2,'2006-02-15 21:30:53'),(9174,'2005-07-30 11:42:10',2636,144,'2005-07-31 09:52:10',1,'2006-02-15 21:30:53'),(9175,'2005-07-30 11:47:48',358,133,'2005-08-02 08:13:48',1,'2006-02-15 21:30:53'),(9176,'2005-07-30 11:50:54',2659,260,'2005-08-02 14:25:54',2,'2006-02-15 21:30:53'),(9177,'2005-07-30 11:52:40',1088,400,'2005-08-08 09:35:40',1,'2006-02-15 21:30:53'),(9178,'2005-07-30 11:58:50',2046,448,'2005-08-08 15:24:50',2,'2006-02-15 21:30:53'),(9179,'2005-07-30 12:02:41',62,50,'2005-08-05 15:23:41',2,'2006-02-15 21:30:53'),(9180,'2005-07-30 12:03:15',3479,442,'2005-08-01 14:25:15',1,'2006-02-15 21:30:53'),(9181,'2005-07-30 12:05:58',3953,224,'2005-08-02 06:22:58',1,'2006-02-15 21:30:53'),(9182,'2005-07-30 12:06:58',2533,165,'2005-08-08 11:33:58',2,'2006-02-15 21:30:53'),(9183,'2005-07-30 12:09:56',4320,475,'2005-08-06 11:50:56',2,'2006-02-15 21:30:53'),(9184,'2005-07-30 12:10:19',51,365,'2005-08-01 07:35:19',2,'2006-02-15 21:30:53'),(9185,'2005-07-30 12:10:40',2268,426,'2005-08-06 07:01:40',1,'2006-02-15 21:30:53'),(9186,'2005-07-30 12:13:48',4513,273,'2005-07-31 11:59:48',1,'2006-02-15 21:30:53'),(9187,'2005-07-30 12:14:03',4008,469,'2005-08-04 13:10:03',2,'2006-02-15 21:30:53'),(9188,'2005-07-30 12:19:54',727,195,'2005-08-06 09:12:54',2,'2006-02-15 21:30:53'),(9189,'2005-07-30 12:20:59',4529,485,'2005-08-06 16:15:59',1,'2006-02-15 21:30:53'),(9190,'2005-07-30 12:24:17',4421,177,'2005-08-03 07:41:17',2,'2006-02-15 21:30:53'),(9191,'2005-07-30 12:25:51',500,314,'2005-08-05 16:13:51',1,'2006-02-15 21:30:53'),(9192,'2005-07-30 12:26:26',2372,102,'2005-08-04 07:54:26',2,'2006-02-15 21:30:53'),(9193,'2005-07-30 12:28:42',3470,69,'2005-08-02 12:17:42',2,'2006-02-15 21:30:53'),(9194,'2005-07-30 12:28:45',2467,294,'2005-08-06 14:38:45',1,'2006-02-15 21:30:53'),(9195,'2005-07-30 12:29:43',944,440,'2005-08-04 12:35:43',1,'2006-02-15 21:30:53'),(9196,'2005-07-30 12:30:19',4298,251,'2005-07-31 18:01:19',2,'2006-02-15 21:30:53'),(9197,'2005-07-30 12:31:36',3214,168,'2005-08-03 09:05:36',1,'2006-02-15 21:30:53'),(9198,'2005-07-30 12:37:08',2371,105,'2005-08-07 16:37:08',2,'2006-02-15 21:30:53'),(9199,'2005-07-30 12:38:00',4336,580,'2005-08-01 07:09:00',1,'2006-02-15 21:30:53'),(9200,'2005-07-30 12:39:52',3277,137,'2005-08-08 09:43:52',2,'2006-02-15 21:30:53'),(9201,'2005-07-30 12:42:21',4387,291,'2005-08-08 06:50:21',1,'2006-02-15 21:30:53'),(9202,'2005-07-30 12:43:24',4525,466,'2005-08-07 10:39:24',2,'2006-02-15 21:30:53'),(9203,'2005-07-30 12:43:40',2112,169,'2005-08-01 09:31:40',2,'2006-02-15 21:30:53'),(9204,'2005-07-30 12:43:58',4378,43,'2005-08-03 16:26:58',2,'2006-02-15 21:30:53'),(9205,'2005-07-30 12:46:40',4165,259,'2005-08-08 14:58:40',1,'2006-02-15 21:30:53'),(9206,'2005-07-30 12:46:59',2021,404,'2005-08-03 14:58:59',1,'2006-02-15 21:30:53'),(9207,'2005-07-30 12:49:57',1346,345,'2005-07-31 14:32:57',2,'2006-02-15 21:30:53'),(9208,'2005-07-30 12:54:03',2751,339,'2005-08-06 17:22:03',2,'2006-02-15 21:30:53'),(9209,'2005-07-30 12:55:36',3940,23,'2005-08-03 11:31:36',2,'2006-02-15 21:30:53'),(9210,'2005-07-30 12:56:44',101,105,'2005-08-08 09:41:44',2,'2006-02-15 21:30:53'),(9211,'2005-07-30 12:59:45',595,57,'2005-08-07 18:17:45',2,'2006-02-15 21:30:53'),(9212,'2005-07-30 13:03:13',2111,73,'2005-08-06 09:48:13',1,'2006-02-15 21:30:53'),(9213,'2005-07-30 13:07:11',184,388,'2005-08-01 15:30:11',1,'2006-02-15 21:30:53'),(9214,'2005-07-30 13:10:14',2823,181,'2005-08-06 14:22:14',2,'2006-02-15 21:30:53'),(9215,'2005-07-30 13:11:11',3591,128,'2005-08-06 13:06:11',1,'2006-02-15 21:30:53'),(9216,'2005-07-30 13:11:19',2783,38,'2005-07-31 11:27:19',2,'2006-02-15 21:30:53'),(9217,'2005-07-30 13:13:55',1561,112,'2005-08-05 17:27:55',1,'2006-02-15 21:30:53'),(9218,'2005-07-30 13:14:35',119,172,'2005-08-07 18:03:35',1,'2006-02-15 21:30:53'),(9219,'2005-07-30 13:15:21',771,329,'2005-08-01 11:39:21',1,'2006-02-15 21:30:53'),(9220,'2005-07-30 13:17:27',2463,569,'2005-08-07 11:34:27',2,'2006-02-15 21:30:53'),(9221,'2005-07-30 13:20:06',2496,113,'2005-08-06 13:58:06',2,'2006-02-15 21:30:53'),(9222,'2005-07-30 13:21:08',3648,95,'2005-08-08 10:42:08',2,'2006-02-15 21:30:53'),(9223,'2005-07-30 13:23:20',3231,595,'2005-08-04 11:24:20',1,'2006-02-15 21:30:53'),(9224,'2005-07-30 13:25:37',2260,406,'2005-08-01 15:13:37',2,'2006-02-15 21:30:53'),(9225,'2005-07-30 13:29:47',1992,391,'2005-08-02 17:08:47',2,'2006-02-15 21:30:53'),(9226,'2005-07-30 13:31:20',4315,3,'2005-08-06 16:42:20',1,'2006-02-15 21:30:53'),(9227,'2005-07-30 13:36:13',2353,522,'2005-08-07 17:39:13',1,'2006-02-15 21:30:53'),(9228,'2005-07-30 13:36:57',2325,91,'2005-08-05 10:43:57',1,'2006-02-15 21:30:53'),(9229,'2005-07-30 13:38:17',3780,276,'2005-08-08 18:17:17',2,'2006-02-15 21:30:53'),(9230,'2005-07-30 13:39:42',1199,109,'2005-07-31 19:20:42',1,'2006-02-15 21:30:53'),(9231,'2005-07-30 13:42:15',1587,489,'2005-08-02 19:27:15',1,'2006-02-15 21:30:53'),(9232,'2005-07-30 13:43:00',1991,502,'2005-08-02 11:39:00',2,'2006-02-15 21:30:53'),(9233,'2005-07-30 13:44:15',2320,357,'2005-08-07 13:02:15',2,'2006-02-15 21:30:53'),(9234,'2005-07-30 13:45:54',1660,128,'2005-08-02 15:33:54',1,'2006-02-15 21:30:53'),(9235,'2005-07-30 13:47:17',984,181,'2005-08-06 17:15:17',2,'2006-02-15 21:30:53'),(9236,'2005-07-30 13:47:43',4030,2,'2005-08-08 18:52:43',1,'2006-02-15 21:30:53'),(9237,'2005-07-30 13:48:17',2777,157,'2005-07-31 13:57:17',2,'2006-02-15 21:30:53'),(9238,'2005-07-30 13:49:43',3356,12,'2005-08-08 08:25:43',2,'2006-02-15 21:30:53'),(9239,'2005-07-30 13:50:52',1728,580,'2005-08-06 16:28:52',1,'2006-02-15 21:30:53'),(9240,'2005-07-30 13:57:54',587,92,'2005-08-03 12:23:54',2,'2006-02-15 21:30:53'),(9241,'2005-07-30 13:58:41',4145,187,'2005-08-04 09:44:41',2,'2006-02-15 21:30:53'),(9242,'2005-07-30 14:03:58',755,306,'2005-08-02 18:09:58',2,'2006-02-15 21:30:53'),(9243,'2005-07-30 14:06:27',876,516,'2005-08-06 09:26:27',2,'2006-02-15 21:30:53'),(9244,'2005-07-30 14:06:53',3640,27,'2005-08-03 19:46:53',1,'2006-02-15 21:30:53'),(9245,'2005-07-30 14:07:50',2586,116,'2005-08-06 17:59:50',2,'2006-02-15 21:30:53'),(9246,'2005-07-30 14:12:31',3390,185,'2005-08-02 14:25:31',2,'2006-02-15 21:30:53'),(9247,'2005-07-30 14:13:56',4106,426,'2005-08-02 16:34:56',2,'2006-02-15 21:30:53'),(9248,'2005-07-30 14:14:11',1382,2,'2005-08-05 11:19:11',1,'2006-02-15 21:30:53'),(9249,'2005-07-30 14:15:02',2015,296,'2005-08-05 13:02:02',1,'2006-02-15 21:30:53'),(9250,'2005-07-30 14:18:16',4544,539,'2005-08-04 12:31:16',1,'2006-02-15 21:30:53'),(9251,'2005-07-30 14:19:25',2948,390,'2005-08-08 11:22:25',2,'2006-02-15 21:30:53'),(9252,'2005-07-30 14:19:59',2350,322,'2005-08-07 15:17:59',1,'2006-02-15 21:30:53'),(9253,'2005-07-30 14:20:12',4183,151,'2005-07-31 11:31:12',2,'2006-02-15 21:30:53'),(9254,'2005-07-30 14:26:11',495,33,'2005-08-04 16:12:11',1,'2006-02-15 21:30:53'),(9255,'2005-07-30 14:26:46',1596,23,'2005-08-07 18:16:46',1,'2006-02-15 21:30:53'),(9256,'2005-07-30 14:29:29',4021,19,'2005-08-05 16:59:29',1,'2006-02-15 21:30:53'),(9257,'2005-07-30 14:30:38',2615,466,'2005-08-04 17:57:38',1,'2006-02-15 21:30:53'),(9258,'2005-07-30 14:31:31',2007,275,'2005-08-05 16:29:31',2,'2006-02-15 21:30:53'),(9259,'2005-07-30 14:37:44',97,138,'2005-08-06 18:05:44',2,'2006-02-15 21:30:53'),(9260,'2005-07-30 14:38:22',3969,13,'2005-08-07 18:47:22',2,'2006-02-15 21:30:53'),(9261,'2005-07-30 14:39:35',372,380,'2005-08-08 11:26:35',1,'2006-02-15 21:30:53'),(9262,'2005-07-30 14:45:02',2322,349,'2005-08-05 15:18:02',2,'2006-02-15 21:30:53'),(9263,'2005-07-30 14:48:24',73,410,'2005-08-04 19:06:24',2,'2006-02-15 21:30:53'),(9264,'2005-07-30 14:51:36',4071,157,'2005-08-02 10:06:36',1,'2006-02-15 21:30:53'),(9265,'2005-07-30 14:55:25',3700,560,'2005-08-02 11:34:25',1,'2006-02-15 21:30:53'),(9266,'2005-07-30 14:59:01',1705,364,'2005-07-31 17:01:01',2,'2006-02-15 21:30:53'),(9267,'2005-07-30 14:59:05',645,409,'2005-08-04 10:17:05',1,'2006-02-15 21:30:53'),(9268,'2005-07-30 15:02:30',3593,592,'2005-08-05 12:50:30',1,'2006-02-15 21:30:53'),(9269,'2005-07-30 15:02:33',548,435,'2005-08-02 16:32:33',1,'2006-02-15 21:30:53'),(9270,'2005-07-30 15:03:16',700,232,'2005-07-31 16:09:16',2,'2006-02-15 21:30:53'),(9271,'2005-07-30 15:04:31',2660,100,'2005-07-31 20:33:31',1,'2006-02-15 21:30:53'),(9272,'2005-07-30 15:05:22',1352,553,'2005-08-05 10:02:22',2,'2006-02-15 21:30:53'),(9273,'2005-07-30 15:05:36',1867,497,'2005-08-08 09:07:36',1,'2006-02-15 21:30:53'),(9274,'2005-07-30 15:07:04',4424,47,'2005-08-06 11:17:04',2,'2006-02-15 21:30:53'),(9275,'2005-07-30 15:09:15',1916,439,'2005-07-31 10:23:15',2,'2006-02-15 21:30:53'),(9276,'2005-07-30 15:09:28',1528,237,'2005-08-06 19:39:28',1,'2006-02-15 21:30:53'),(9277,'2005-07-30 15:13:45',3734,82,'2005-08-05 10:25:45',2,'2006-02-15 21:30:53'),(9278,'2005-07-30 15:15:19',3782,581,'2005-08-03 20:21:19',1,'2006-02-15 21:30:53'),(9279,'2005-07-30 15:15:21',1070,567,'2005-08-07 18:46:21',1,'2006-02-15 21:30:53'),(9280,'2005-07-30 15:15:38',4103,286,'2005-08-05 19:20:38',2,'2006-02-15 21:30:53'),(9281,'2005-07-30 15:15:51',3086,398,'2005-08-05 12:58:51',1,'2006-02-15 21:30:53'),(9282,'2005-07-30 15:17:31',736,259,'2005-08-07 20:46:31',1,'2006-02-15 21:30:53'),(9283,'2005-07-30 15:25:19',1858,360,'2005-08-01 15:35:19',2,'2006-02-15 21:30:53'),(9284,'2005-07-30 15:25:19',3976,38,'2005-08-01 17:45:19',2,'2006-02-15 21:30:53'),(9285,'2005-07-30 15:26:08',3686,273,'2005-08-06 15:59:08',2,'2006-02-15 21:30:53'),(9286,'2005-07-30 15:32:28',2477,154,'2005-07-31 20:42:28',2,'2006-02-15 21:30:53'),(9287,'2005-07-30 15:35:39',2048,551,'2005-08-02 10:15:39',1,'2006-02-15 21:30:53'),(9288,'2005-07-30 15:56:39',2640,447,'2005-08-04 13:25:39',2,'2006-02-15 21:30:53'),(9289,'2005-07-30 15:57:04',389,453,'2005-08-07 18:46:04',1,'2006-02-15 21:30:53'),(9290,'2005-07-30 15:59:08',2275,500,'2005-08-06 21:49:08',2,'2006-02-15 21:30:53'),(9291,'2005-07-30 16:03:39',2884,406,'2005-08-05 11:11:39',2,'2006-02-15 21:30:53'),(9292,'2005-07-30 16:08:21',1702,11,'2005-08-07 10:38:21',2,'2006-02-15 21:30:53'),(9293,'2005-07-30 16:12:28',1676,65,'2005-08-05 18:34:28',2,'2006-02-15 21:30:53'),(9294,'2005-07-30 16:14:37',2468,433,'2005-08-07 18:49:37',1,'2006-02-15 21:30:53'),(9295,'2005-07-30 16:18:39',494,102,'2005-08-03 12:46:39',1,'2006-02-15 21:30:53'),(9296,'2005-07-30 16:21:13',4088,2,'2005-08-08 11:57:13',1,'2006-02-15 21:30:53'),(9297,'2005-07-30 16:26:29',3502,191,'2005-08-03 13:51:29',1,'2006-02-15 21:30:53'),(9298,'2005-07-30 16:27:53',2106,208,'2005-08-07 12:32:53',2,'2006-02-15 21:30:53'),(9299,'2005-07-30 16:32:51',1515,555,'2005-08-08 15:28:51',2,'2006-02-15 21:30:53'),(9300,'2005-07-30 16:33:12',1639,571,'2005-08-05 15:56:12',1,'2006-02-15 21:30:53'),(9301,'2005-07-30 16:34:29',1073,174,'2005-07-31 18:41:29',2,'2006-02-15 21:30:53'),(9302,'2005-07-30 16:34:57',2326,55,'2005-07-31 11:08:57',2,'2006-02-15 21:30:53'),(9303,'2005-07-30 16:35:59',4299,186,'2005-08-03 18:31:59',1,'2006-02-15 21:30:53'),(9304,'2005-07-30 16:41:34',2937,296,'2005-08-02 13:55:34',2,'2006-02-15 21:30:53'),(9305,'2005-07-30 16:45:56',1224,82,'2005-08-08 21:15:56',2,'2006-02-15 21:30:53'),(9306,'2005-07-30 16:47:17',3983,336,'2005-08-02 22:15:17',1,'2006-02-15 21:30:53'),(9307,'2005-07-30 16:52:43',3831,538,'2005-08-01 11:58:43',1,'2006-02-15 21:30:53'),(9308,'2005-07-30 16:53:21',2202,267,'2005-08-08 15:33:21',2,'2006-02-15 21:30:53'),(9309,'2005-07-30 16:55:53',3616,30,'2005-08-07 11:23:53',1,'2006-02-15 21:30:53'),(9310,'2005-07-30 16:57:09',2957,529,'2005-08-03 18:14:09',1,'2006-02-15 21:30:53'),(9311,'2005-07-30 16:58:31',1432,178,'2005-08-07 15:23:31',1,'2006-02-15 21:30:53'),(9312,'2005-07-30 16:59:17',2483,76,'2005-08-03 17:24:17',2,'2006-02-15 21:30:53'),(9313,'2005-07-30 16:59:43',4070,41,'2005-08-05 14:06:43',2,'2006-02-15 21:30:53'),(9314,'2005-07-30 17:05:19',2358,390,'2005-07-31 12:19:19',1,'2006-02-15 21:30:53'),(9315,'2005-07-30 17:05:29',444,96,'2005-08-01 12:47:29',1,'2006-02-15 21:30:53'),(9316,'2005-07-30 17:11:58',4409,366,'2005-08-05 14:36:58',1,'2006-02-15 21:30:53'),(9317,'2005-07-30 17:13:37',4138,217,'2005-08-08 11:33:37',1,'2006-02-15 21:30:53'),(9318,'2005-07-30 17:14:30',2426,314,'2005-08-06 16:53:30',1,'2006-02-15 21:30:53'),(9319,'2005-07-30 17:15:27',4066,136,'2005-08-03 14:03:27',1,'2006-02-15 21:30:53'),(9320,'2005-07-30 17:16:39',909,221,'2005-08-06 18:43:39',2,'2006-02-15 21:30:53'),(9321,'2005-07-30 17:19:44',3558,112,'2005-08-06 22:42:44',2,'2006-02-15 21:30:53'),(9322,'2005-07-30 17:21:39',223,439,'2005-08-06 16:58:39',2,'2006-02-15 21:30:53'),(9323,'2005-07-30 17:21:44',3749,131,'2005-08-03 16:28:44',1,'2006-02-15 21:30:53'),(9324,'2005-07-30 17:28:52',1231,332,'2005-08-06 19:02:52',1,'2006-02-15 21:30:53'),(9325,'2005-07-30 17:29:19',1938,476,'2005-08-08 12:55:19',2,'2006-02-15 21:30:53'),(9326,'2005-07-30 17:30:03',3772,588,'2005-08-01 13:41:03',2,'2006-02-15 21:30:53'),(9327,'2005-07-30 17:31:03',345,373,'2005-08-08 19:16:03',1,'2006-02-15 21:30:53'),(9328,'2005-07-30 17:32:11',1087,89,'2005-08-05 13:36:11',1,'2006-02-15 21:30:53'),(9329,'2005-07-30 17:42:38',1293,593,'2005-08-08 23:17:38',1,'2006-02-15 21:30:53'),(9330,'2005-07-30 17:44:24',4227,232,'2005-08-08 17:39:24',1,'2006-02-15 21:30:53'),(9331,'2005-07-30 17:46:50',2248,274,'2005-08-01 19:03:50',1,'2006-02-15 21:30:53'),(9332,'2005-07-30 17:53:39',1156,480,'2005-08-02 12:25:39',1,'2006-02-15 21:30:53'),(9333,'2005-07-30 17:53:45',1377,437,'2005-07-31 22:35:45',2,'2006-02-15 21:30:53'),(9334,'2005-07-30 17:56:38',1499,25,'2005-08-03 21:27:38',1,'2006-02-15 21:30:53'),(9335,'2005-07-30 18:00:53',1006,522,'2005-08-01 16:05:53',1,'2006-02-15 21:30:53'),(9336,'2005-07-30 18:01:15',1911,557,'2005-08-05 23:10:15',1,'2006-02-15 21:30:53'),(9337,'2005-07-30 18:02:25',2363,90,'2005-07-31 12:30:25',2,'2006-02-15 21:30:53'),(9338,'2005-07-30 18:03:13',1482,333,'2005-08-08 23:57:13',2,'2006-02-15 21:30:53'),(9339,'2005-07-30 18:03:28',3171,68,'2005-08-08 19:45:28',2,'2006-02-15 21:30:53'),(9340,'2005-07-30 18:07:16',3228,213,'2005-08-04 14:33:16',2,'2006-02-15 21:30:53'),(9341,'2005-07-30 18:07:58',894,557,'2005-08-01 17:43:58',1,'2006-02-15 21:30:53'),(9342,'2005-07-30 18:09:56',2318,552,'2005-08-08 13:54:56',2,'2006-02-15 21:30:53'),(9343,'2005-07-30 18:13:13',3521,53,'2005-08-02 13:48:13',1,'2006-02-15 21:30:53'),(9344,'2005-07-30 18:13:45',1005,396,'2005-08-07 15:23:45',2,'2006-02-15 21:30:53'),(9345,'2005-07-30 18:13:51',2042,436,'2005-08-07 13:45:51',2,'2006-02-15 21:30:53'),(9346,'2005-07-30 18:13:52',2845,196,'2005-08-03 17:58:52',1,'2006-02-15 21:30:53'),(9347,'2005-07-30 18:16:03',3557,479,'2005-08-05 18:35:03',1,'2006-02-15 21:30:53'),(9348,'2005-07-30 18:17:09',3128,87,'2005-08-07 15:25:09',1,'2006-02-15 21:30:53'),(9349,'2005-07-30 18:20:08',3739,579,'2005-08-08 22:06:08',1,'2006-02-15 21:30:53'),(9350,'2005-07-30 18:24:30',798,434,'2005-08-02 15:34:30',2,'2006-02-15 21:30:53'),(9351,'2005-07-30 18:28:30',2063,107,'2005-08-02 17:26:30',1,'2006-02-15 21:30:53'),(9352,'2005-07-30 18:29:26',2619,360,'2005-07-31 19:43:26',1,'2006-02-15 21:30:53'),(9353,'2005-07-30 18:30:37',3581,283,'2005-08-06 22:32:37',2,'2006-02-15 21:30:53'),(9354,'2005-07-30 18:32:51',510,595,'2005-08-02 21:28:51',2,'2006-02-15 21:30:53'),(9355,'2005-07-30 18:35:25',1122,201,'2005-08-03 20:33:25',2,'2006-02-15 21:30:53'),(9356,'2005-07-30 18:36:24',4188,60,'2005-08-03 14:10:24',1,'2006-02-15 21:30:53'),(9357,'2005-07-30 18:37:00',3927,181,'2005-08-08 19:57:00',2,'2006-02-15 21:30:53'),(9358,'2005-07-30 18:37:24',712,302,'2005-08-07 23:34:24',2,'2006-02-15 21:30:53'),(9359,'2005-07-30 18:39:28',21,501,'2005-07-31 15:39:28',1,'2006-02-15 21:30:53'),(9360,'2005-07-30 18:39:43',2119,186,'2005-08-04 22:41:43',2,'2006-02-15 21:30:53'),(9361,'2005-07-30 18:43:49',4163,335,'2005-08-06 21:24:49',1,'2006-02-15 21:30:53'),(9362,'2005-07-30 18:44:16',3357,420,'2005-08-01 20:14:16',1,'2006-02-15 21:30:53'),(9363,'2005-07-30 18:44:23',873,323,'2005-08-04 15:03:23',1,'2006-02-15 21:30:53'),(9364,'2005-07-30 18:44:44',306,87,'2005-08-08 23:55:44',2,'2006-02-15 21:30:53'),(9365,'2005-07-30 18:46:02',1539,232,'2005-08-03 20:15:02',1,'2006-02-15 21:30:53'),(9366,'2005-07-30 18:48:57',4013,557,'2005-08-03 15:17:57',2,'2006-02-15 21:30:53'),(9367,'2005-07-30 18:49:58',793,557,'2005-08-08 22:04:58',1,'2006-02-15 21:30:53'),(9368,'2005-07-30 18:50:53',3026,388,'2005-08-05 17:56:53',2,'2006-02-15 21:30:53'),(9369,'2005-07-30 18:52:19',3538,36,'2005-08-01 12:53:19',1,'2006-02-15 21:30:53'),(9370,'2005-07-30 18:57:29',4433,588,'2005-08-01 21:35:29',2,'2006-02-15 21:30:53'),(9371,'2005-07-30 18:58:00',2980,4,'2005-08-03 15:14:00',1,'2006-02-15 21:30:53'),(9372,'2005-07-30 19:04:30',4075,454,'2005-08-09 00:18:30',2,'2006-02-15 21:30:53'),(9373,'2005-07-30 19:05:36',3478,180,'2005-08-05 16:16:36',2,'2006-02-15 21:30:53'),(9374,'2005-07-30 19:10:03',103,302,'2005-08-06 21:54:03',2,'2006-02-15 21:30:53'),(9375,'2005-07-30 19:10:17',3063,529,'2005-08-02 23:00:17',1,'2006-02-15 21:30:53'),(9376,'2005-07-30 19:11:49',451,86,'2005-08-04 18:14:49',1,'2006-02-15 21:30:53'),(9377,'2005-07-30 19:12:18',4164,421,'2005-08-05 19:38:18',1,'2006-02-15 21:30:53'),(9378,'2005-07-30 19:12:54',2209,197,'2005-08-05 18:16:54',1,'2006-02-15 21:30:53'),(9379,'2005-07-30 19:13:01',3855,452,'2005-08-07 19:18:01',2,'2006-02-15 21:30:53'),(9380,'2005-07-30 19:17:31',4403,264,'2005-08-01 20:46:31',1,'2006-02-15 21:30:53'),(9381,'2005-07-30 19:23:04',4064,329,'2005-07-31 23:37:04',2,'2006-02-15 21:30:53'),(9382,'2005-07-30 19:23:44',2127,17,'2005-08-06 16:20:44',2,'2006-02-15 21:30:53'),(9383,'2005-07-30 19:24:50',2806,416,'2005-08-01 21:41:50',2,'2006-02-15 21:30:53'),(9384,'2005-07-30 19:25:35',2313,220,'2005-08-08 21:50:35',1,'2006-02-15 21:30:53'),(9385,'2005-07-30 19:25:49',3453,570,'2005-08-08 17:08:49',2,'2006-02-15 21:30:53'),(9386,'2005-07-30 19:26:21',1123,189,'2005-08-05 21:00:21',2,'2006-02-15 21:30:53'),(9387,'2005-07-30 19:27:05',577,495,'2005-08-07 21:19:05',2,'2006-02-15 21:30:53'),(9388,'2005-07-30 19:27:22',2116,332,'2005-08-08 15:31:22',2,'2006-02-15 21:30:53'),(9389,'2005-07-30 19:27:59',3124,198,'2005-08-04 18:25:59',2,'2006-02-15 21:30:53'),(9390,'2005-07-30 19:42:07',1794,103,'2005-08-01 23:17:07',1,'2006-02-15 21:30:53'),(9391,'2005-07-30 19:48:41',665,273,'2005-08-04 15:27:41',1,'2006-02-15 21:30:53'),(9392,'2005-07-30 19:50:13',2797,29,'2005-08-03 22:38:13',2,'2006-02-15 21:30:53'),(9393,'2005-07-30 20:04:48',843,158,'2005-08-02 15:52:48',2,'2006-02-15 21:30:53'),(9394,'2005-07-30 20:06:24',161,204,'2005-08-06 22:36:24',1,'2006-02-15 21:30:53'),(9395,'2005-07-30 20:07:06',1298,306,'2005-08-08 21:21:06',1,'2006-02-15 21:30:53'),(9396,'2005-07-30 20:07:24',1250,91,'2005-08-03 21:20:24',2,'2006-02-15 21:30:53'),(9397,'2005-07-30 20:07:29',1550,373,'2005-08-05 00:36:29',1,'2006-02-15 21:30:53'),(9398,'2005-07-30 20:09:00',1175,570,'2005-08-01 23:35:00',2,'2006-02-15 21:30:53'),(9399,'2005-07-30 20:14:50',3668,569,'2005-08-03 17:30:50',1,'2006-02-15 21:30:53'),(9400,'2005-07-30 20:15:58',3910,368,'2005-08-03 21:21:58',1,'2006-02-15 21:30:53'),(9401,'2005-07-30 20:18:19',2057,331,'2005-08-07 15:46:19',1,'2006-02-15 21:30:53'),(9402,'2005-07-30 20:18:27',2424,48,'2005-08-07 21:29:27',2,'2006-02-15 21:30:53'),(9403,'2005-07-30 20:18:53',3466,267,'2005-08-06 19:54:53',1,'2006-02-15 21:30:53'),(9404,'2005-07-30 20:21:35',3832,140,'2005-08-02 15:52:35',1,'2006-02-15 21:30:53'),(9405,'2005-07-30 20:22:17',1983,463,'2005-08-08 16:55:17',1,'2006-02-15 21:30:53'),(9406,'2005-07-30 20:24:00',3419,453,'2005-08-07 19:50:00',1,'2006-02-15 21:30:53'),(9407,'2005-07-30 20:25:24',2594,585,'2005-08-08 22:51:24',2,'2006-02-15 21:30:53'),(9408,'2005-07-30 20:32:09',4383,571,'2005-08-04 20:14:09',2,'2006-02-15 21:30:53'),(9409,'2005-07-30 20:33:53',3053,156,'2005-08-05 18:32:53',2,'2006-02-15 21:30:53'),(9410,'2005-07-30 20:38:05',1789,22,'2005-07-31 19:57:05',2,'2006-02-15 21:30:53'),(9411,'2005-07-30 20:38:22',3484,536,'2005-08-06 01:23:22',2,'2006-02-15 21:30:53'),(9412,'2005-07-30 20:44:10',2482,522,'2005-08-06 21:13:10',2,'2006-02-15 21:30:53'),(9413,'2005-07-30 20:44:39',2618,290,'2005-08-01 01:56:39',2,'2006-02-15 21:30:53'),(9414,'2005-07-30 20:46:02',578,484,'2005-08-07 21:23:02',2,'2006-02-15 21:30:53'),(9415,'2005-07-30 20:48:31',3336,139,'2005-08-05 19:45:31',2,'2006-02-15 21:30:53'),(9416,'2005-07-30 20:52:45',1470,265,'2005-08-02 17:38:45',2,'2006-02-15 21:30:53'),(9417,'2005-07-30 20:54:55',2509,519,'2005-08-04 00:54:55',2,'2006-02-15 21:30:53'),(9418,'2005-07-30 21:00:52',241,168,'2005-08-08 15:56:52',2,'2006-02-15 21:30:53'),(9419,'2005-07-30 21:04:59',4427,142,'2005-08-06 15:47:59',2,'2006-02-15 21:30:53'),(9420,'2005-07-30 21:05:18',147,72,'2005-08-05 23:52:18',2,'2006-02-15 21:30:53'),(9421,'2005-07-30 21:08:32',2206,161,'2005-08-02 00:43:32',1,'2006-02-15 21:30:53'),(9422,'2005-07-30 21:08:41',1843,470,'2005-08-07 15:55:41',1,'2006-02-15 21:30:53'),(9423,'2005-07-30 21:10:14',3145,242,'2005-08-07 16:34:14',2,'2006-02-15 21:30:53'),(9424,'2005-07-30 21:10:56',4499,256,'2005-08-05 00:01:56',1,'2006-02-15 21:30:53'),(9425,'2005-07-30 21:11:21',271,295,'2005-08-05 19:00:21',1,'2006-02-15 21:30:53'),(9427,'2005-07-30 21:16:33',1494,85,'2005-08-05 17:23:33',2,'2006-02-15 21:30:53'),(9428,'2005-07-30 21:18:37',1948,335,'2005-08-05 16:09:37',1,'2006-02-15 21:30:53'),(9429,'2005-07-30 21:19:26',1769,288,'2005-08-07 18:39:26',1,'2006-02-15 21:30:53'),(9430,'2005-07-30 21:20:13',1529,367,'2005-08-04 21:45:13',2,'2006-02-15 21:30:53'),(9431,'2005-07-30 21:24:22',3364,39,'2005-08-03 01:22:22',2,'2006-02-15 21:30:53'),(9432,'2005-07-30 21:26:18',2489,570,'2005-08-05 00:23:18',1,'2006-02-15 21:30:53'),(9433,'2005-07-30 21:28:17',1082,128,'2005-08-08 18:20:17',2,'2006-02-15 21:30:53'),(9434,'2005-07-30 21:29:41',3792,13,'2005-08-01 16:30:41',2,'2006-02-15 21:30:53'),(9435,'2005-07-30 21:31:02',3116,301,'2005-08-05 22:34:02',1,'2006-02-15 21:30:53'),(9436,'2005-07-30 21:33:01',2329,268,'2005-08-06 17:38:01',1,'2006-02-15 21:30:53'),(9437,'2005-07-30 21:36:04',1230,592,'2005-08-08 01:26:04',1,'2006-02-15 21:30:53'),(9438,'2005-07-30 21:36:15',121,14,'2005-08-07 16:54:15',2,'2006-02-15 21:30:53'),(9439,'2005-07-30 21:38:12',290,479,'2005-08-06 00:03:12',1,'2006-02-15 21:30:53'),(9440,'2005-07-30 21:40:15',414,535,'2005-08-04 15:45:15',2,'2006-02-15 21:30:53'),(9441,'2005-07-30 21:43:28',3982,519,'2005-08-08 16:57:28',1,'2006-02-15 21:30:53'),(9442,'2005-07-30 21:44:31',44,75,'2005-08-04 01:29:31',1,'2006-02-15 21:30:53'),(9443,'2005-07-30 21:45:46',1675,3,'2005-08-05 21:22:46',1,'2006-02-15 21:30:53'),(9444,'2005-07-30 21:48:44',1134,259,'2005-08-08 22:36:44',2,'2006-02-15 21:30:53'),(9445,'2005-07-30 21:50:42',1480,549,'2005-08-05 18:34:42',2,'2006-02-15 21:30:53'),(9446,'2005-07-30 21:53:01',1880,477,'2005-08-06 19:00:01',2,'2006-02-15 21:30:53'),(9447,'2005-07-30 21:54:22',1053,82,'2005-08-09 01:07:22',2,'2006-02-15 21:30:53'),(9448,'2005-07-30 21:56:13',1213,278,'2005-08-04 18:03:13',1,'2006-02-15 21:30:53'),(9449,'2005-07-30 22:02:34',2,581,'2005-08-06 02:09:34',1,'2006-02-15 21:30:53'),(9450,'2005-07-30 22:04:04',1371,430,'2005-08-05 18:39:04',2,'2006-02-15 21:30:53'),(9451,'2005-07-30 22:10:17',685,584,'2005-08-07 02:53:17',2,'2006-02-15 21:30:53'),(9452,'2005-07-30 22:19:16',3178,130,'2005-08-04 19:26:16',1,'2006-02-15 21:30:53'),(9453,'2005-07-30 22:20:04',1988,221,'2005-08-08 02:27:04',1,'2006-02-15 21:30:53'),(9454,'2005-07-30 22:20:09',3028,81,'2005-08-04 01:33:09',2,'2006-02-15 21:30:53'),(9455,'2005-07-30 22:20:29',2647,220,'2005-08-08 20:08:29',1,'2006-02-15 21:30:53'),(9456,'2005-07-30 22:22:16',2068,534,'2005-08-05 18:56:16',2,'2006-02-15 21:30:53'),(9457,'2005-07-30 22:23:05',2172,487,'2005-07-31 23:07:05',2,'2006-02-15 21:30:53'),(9458,'2005-07-30 22:24:34',3105,343,'2005-08-04 21:26:34',2,'2006-02-15 21:30:53'),(9459,'2005-07-30 22:24:46',1132,489,'2005-08-02 00:44:46',2,'2006-02-15 21:30:53'),(9460,'2005-07-30 22:25:39',4463,580,'2005-08-08 20:56:39',2,'2006-02-15 21:30:53'),(9461,'2005-07-30 22:29:13',1679,377,'2005-08-05 20:55:13',2,'2006-02-15 21:30:53'),(9462,'2005-07-30 22:30:44',4090,192,'2005-08-09 03:54:44',2,'2006-02-15 21:30:53'),(9463,'2005-07-30 22:30:57',883,352,'2005-08-03 22:53:57',1,'2006-02-15 21:30:53'),(9464,'2005-07-30 22:31:31',3904,534,'2005-08-07 01:10:31',2,'2006-02-15 21:30:53'),(9465,'2005-07-30 22:39:53',3084,2,'2005-08-06 16:43:53',2,'2006-02-15 21:30:53'),(9466,'2005-07-30 22:44:36',2595,137,'2005-08-07 02:35:36',2,'2006-02-15 21:30:53'),(9467,'2005-07-30 22:45:34',1905,202,'2005-08-08 00:58:34',2,'2006-02-15 21:30:53'),(9468,'2005-07-30 22:53:52',4366,20,'2005-08-07 00:22:52',2,'2006-02-15 21:30:53'),(9469,'2005-07-30 22:56:34',967,59,'2005-08-07 03:16:34',2,'2006-02-15 21:30:53'),(9470,'2005-07-30 23:01:31',3908,566,'2005-08-07 01:35:31',2,'2006-02-15 21:30:53'),(9471,'2005-07-30 23:02:36',2390,424,'2005-08-04 17:49:36',1,'2006-02-15 21:30:53'),(9472,'2005-07-30 23:03:32',4178,404,'2005-08-01 18:02:32',1,'2006-02-15 21:30:53'),(9473,'2005-07-30 23:04:13',1717,185,'2005-08-04 21:48:13',2,'2006-02-15 21:30:53'),(9474,'2005-07-30 23:05:44',3771,206,'2005-08-05 23:46:44',1,'2006-02-15 21:30:53'),(9475,'2005-07-30 23:06:33',2186,567,'2005-08-04 23:23:33',1,'2006-02-15 21:30:53'),(9476,'2005-07-30 23:06:40',3599,197,'2005-08-04 22:52:40',2,'2006-02-15 21:30:53'),(9477,'2005-07-30 23:07:22',1932,213,'2005-08-04 20:54:22',1,'2006-02-15 21:30:53'),(9478,'2005-07-30 23:12:53',1139,283,'2005-08-04 02:41:53',1,'2006-02-15 21:30:53'),(9479,'2005-07-30 23:22:09',3461,308,'2005-07-31 22:26:09',2,'2006-02-15 21:30:53'),(9480,'2005-07-30 23:26:03',597,373,'2005-08-04 21:18:03',2,'2006-02-15 21:30:53'),(9481,'2005-07-30 23:26:05',613,481,'2005-08-04 17:46:05',1,'2006-02-15 21:30:53'),(9482,'2005-07-30 23:29:16',2421,348,'2005-08-02 20:37:16',2,'2006-02-15 21:30:53'),(9483,'2005-07-30 23:31:31',1136,593,'2005-08-09 04:29:31',2,'2006-02-15 21:30:53'),(9484,'2005-07-30 23:31:40',3389,26,'2005-08-02 18:25:40',1,'2006-02-15 21:30:53'),(9485,'2005-07-30 23:32:40',3722,338,'2005-08-08 17:44:40',1,'2006-02-15 21:30:53'),(9486,'2005-07-30 23:35:42',2787,403,'2005-08-09 02:08:42',2,'2006-02-15 21:30:53'),(9487,'2005-07-30 23:40:22',2165,406,'2005-08-01 22:29:22',1,'2006-02-15 21:30:53'),(9488,'2005-07-30 23:42:42',4221,528,'2005-08-08 22:15:42',1,'2006-02-15 21:30:53'),(9489,'2005-07-30 23:43:32',4011,17,'2005-07-31 20:45:32',2,'2006-02-15 21:30:53'),(9490,'2005-07-30 23:45:09',1302,487,'2005-08-07 18:50:09',1,'2006-02-15 21:30:53'),(9491,'2005-07-30 23:45:23',3624,179,'2005-08-01 00:33:23',2,'2006-02-15 21:30:53'),(9492,'2005-07-30 23:52:21',639,126,'2005-08-08 20:50:21',2,'2006-02-15 21:30:53'),(9493,'2005-07-30 23:52:30',1522,5,'2005-08-08 05:22:30',1,'2006-02-15 21:30:53'),(9494,'2005-07-30 23:52:46',3799,254,'2005-08-05 23:13:46',2,'2006-02-15 21:30:53'),(9495,'2005-07-30 23:54:26',2128,397,'2005-08-01 22:02:26',2,'2006-02-15 21:30:53'),(9496,'2005-07-30 23:55:20',453,125,'2005-08-02 02:47:20',2,'2006-02-15 21:30:53'),(9497,'2005-07-30 23:56:54',933,595,'2005-08-04 19:52:54',1,'2006-02-15 21:30:53'),(9498,'2005-07-30 23:56:55',1035,289,'2005-08-03 18:34:55',2,'2006-02-15 21:30:53'),(9499,'2005-07-30 23:58:30',602,461,'2005-08-01 00:55:30',2,'2006-02-15 21:30:53'),(9500,'2005-07-30 23:58:36',2808,241,'2005-08-07 21:08:36',2,'2006-02-15 21:30:53'),(9501,'2005-07-30 23:59:21',4398,75,'2005-08-05 19:50:21',2,'2006-02-15 21:30:53'),(9502,'2005-07-31 00:02:10',2700,471,'2005-08-01 19:47:10',1,'2006-02-15 21:30:53'),(9503,'2005-07-31 00:02:38',1013,311,'2005-08-06 06:01:38',1,'2006-02-15 21:30:53'),(9504,'2005-07-31 00:09:07',91,125,'2005-08-02 05:44:07',1,'2006-02-15 21:30:53'),(9505,'2005-07-31 00:11:19',4047,543,'2005-08-05 18:24:19',2,'2006-02-15 21:30:53'),(9506,'2005-07-31 00:19:01',3872,189,'2005-08-02 00:20:01',1,'2006-02-15 21:30:53'),(9507,'2005-07-31 00:22:29',387,525,'2005-08-07 05:59:29',2,'2006-02-15 21:30:53'),(9508,'2005-07-31 00:22:39',1204,316,'2005-08-04 05:40:39',1,'2006-02-15 21:30:53'),(9509,'2005-07-31 00:22:42',818,320,'2005-08-03 23:24:42',1,'2006-02-15 21:30:53'),(9510,'2005-07-31 00:24:17',2301,494,'2005-08-08 18:47:17',2,'2006-02-15 21:30:53'),(9511,'2005-07-31 00:25:05',964,549,'2005-08-09 02:46:05',1,'2006-02-15 21:30:53'),(9512,'2005-07-31 00:26:30',3786,173,'2005-08-04 23:43:30',2,'2006-02-15 21:30:53'),(9513,'2005-07-31 00:28:30',396,317,'2005-08-01 00:22:30',2,'2006-02-15 21:30:53'),(9514,'2005-07-31 00:29:44',1892,243,'2005-08-02 23:49:44',1,'2006-02-15 21:30:53'),(9515,'2005-07-31 00:35:05',3099,264,'2005-08-02 23:35:05',2,'2006-02-15 21:30:53'),(9516,'2005-07-31 00:40:58',3519,424,'2005-08-07 02:13:58',2,'2006-02-15 21:30:53'),(9517,'2005-07-31 00:41:23',3299,170,'2005-08-02 23:08:23',1,'2006-02-15 21:30:53'),(9518,'2005-07-31 00:43:26',2714,215,'2005-08-04 19:12:26',2,'2006-02-15 21:30:53'),(9519,'2005-07-31 00:45:57',3767,235,'2005-08-06 00:59:57',2,'2006-02-15 21:30:53'),(9520,'2005-07-31 00:50:54',1306,299,'2005-08-04 20:05:54',1,'2006-02-15 21:30:53'),(9521,'2005-07-31 00:52:24',1423,227,'2005-08-06 03:33:24',2,'2006-02-15 21:30:53'),(9522,'2005-07-31 00:55:11',4266,294,'2005-08-03 06:41:11',2,'2006-02-15 21:30:53'),(9523,'2005-07-31 00:56:09',891,356,'2005-08-05 05:44:09',2,'2006-02-15 21:30:53'),(9524,'2005-07-31 01:01:06',1796,535,'2005-08-04 04:06:06',2,'2006-02-15 21:30:53'),(9525,'2005-07-31 01:02:18',2990,246,'2005-08-06 21:31:18',1,'2006-02-15 21:30:53'),(9526,'2005-07-31 01:02:22',417,342,'2005-08-04 03:00:22',1,'2006-02-15 21:30:53'),(9527,'2005-07-31 01:02:24',2539,200,'2005-08-09 02:08:24',2,'2006-02-15 21:30:53'),(9528,'2005-07-31 01:05:04',193,241,'2005-08-07 01:16:04',1,'2006-02-15 21:30:53'),(9529,'2005-07-31 01:05:26',816,123,'2005-08-02 22:30:26',2,'2006-02-15 21:30:53'),(9530,'2005-07-31 01:09:06',1718,148,'2005-08-04 23:47:06',2,'2006-02-15 21:30:53'),(9531,'2005-07-31 01:11:53',4550,268,'2005-08-07 02:49:53',1,'2006-02-15 21:30:53'),(9532,'2005-07-31 01:16:51',1309,488,'2005-08-01 20:23:51',1,'2006-02-15 21:30:53'),(9533,'2005-07-31 01:18:10',4156,522,'2005-08-07 19:58:10',1,'2006-02-15 21:30:53'),(9534,'2005-07-31 01:18:27',4457,519,'2005-08-06 00:28:27',1,'2006-02-15 21:30:53'),(9535,'2005-07-31 01:18:53',2413,485,'2005-08-04 03:04:53',2,'2006-02-15 21:30:53'),(9536,'2005-07-31 01:19:02',2547,310,'2005-08-02 19:38:02',1,'2006-02-15 21:30:53'),(9537,'2005-07-31 01:23:00',546,488,'2005-08-01 01:16:00',2,'2006-02-15 21:30:53'),(9538,'2005-07-31 01:25:22',3402,68,'2005-08-06 00:10:22',2,'2006-02-15 21:30:53'),(9539,'2005-07-31 01:36:19',3793,436,'2005-08-04 23:47:19',1,'2006-02-15 21:30:53'),(9540,'2005-07-31 01:40:06',2200,365,'2005-08-01 01:09:06',1,'2006-02-15 21:30:53'),(9541,'2005-07-31 01:40:14',1774,422,'2005-08-05 06:34:14',2,'2006-02-15 21:30:53'),(9542,'2005-07-31 01:41:48',2243,595,'2005-08-01 00:49:48',2,'2006-02-15 21:30:53'),(9543,'2005-07-31 01:43:34',956,369,'2005-08-01 06:49:34',1,'2006-02-15 21:30:53'),(9544,'2005-07-31 01:44:51',2383,28,'2005-08-05 05:25:51',2,'2006-02-15 21:30:53'),(9545,'2005-07-31 01:46:24',3451,594,'2005-08-09 06:11:24',1,'2006-02-15 21:30:53'),(9546,'2005-07-31 01:47:40',211,63,'2005-08-02 07:25:40',2,'2006-02-15 21:30:53'),(9547,'2005-07-31 01:52:34',2414,440,'2005-08-03 23:12:34',2,'2006-02-15 21:30:53'),(9548,'2005-07-31 01:54:19',3038,576,'2005-08-05 00:50:19',2,'2006-02-15 21:30:53'),(9549,'2005-07-31 01:57:04',2409,63,'2005-08-07 21:00:04',2,'2006-02-15 21:30:53'),(9550,'2005-07-31 01:57:34',2233,583,'2005-08-08 23:33:34',1,'2006-02-15 21:30:53'),(9551,'2005-07-31 02:04:58',1260,30,'2005-08-06 04:07:58',2,'2006-02-15 21:30:53'),(9552,'2005-07-31 02:05:32',3544,261,'2005-08-01 06:59:32',1,'2006-02-15 21:30:53'),(9553,'2005-07-31 02:06:34',4187,579,'2005-08-08 02:20:34',1,'2006-02-15 21:30:53'),(9554,'2005-07-31 02:06:49',2581,490,'2005-08-01 22:27:49',1,'2006-02-15 21:30:53'),(9555,'2005-07-31 02:11:16',2108,382,'2005-08-03 06:58:16',2,'2006-02-15 21:30:53'),(9556,'2005-07-31 02:13:30',3269,521,'2005-08-08 06:46:30',1,'2006-02-15 21:30:53'),(9557,'2005-07-31 02:14:01',708,328,'2005-08-05 23:55:01',1,'2006-02-15 21:30:53'),(9558,'2005-07-31 02:14:35',1161,418,'2005-08-06 03:00:35',1,'2006-02-15 21:30:53'),(9559,'2005-07-31 02:15:53',2882,159,'2005-08-08 02:38:53',1,'2006-02-15 21:30:53'),(9560,'2005-07-31 02:17:27',4236,471,'2005-08-07 03:33:27',1,'2006-02-15 21:30:53'),(9561,'2005-07-31 02:22:13',1079,58,'2005-08-03 07:00:13',2,'2006-02-15 21:30:53'),(9562,'2005-07-31 02:23:20',1571,116,'2005-08-06 21:01:20',2,'2006-02-15 21:30:53'),(9563,'2005-07-31 02:28:39',3858,167,'2005-08-05 22:10:39',1,'2006-02-15 21:30:53'),(9564,'2005-07-31 02:31:37',383,377,'2005-08-03 22:57:37',2,'2006-02-15 21:30:53'),(9565,'2005-07-31 02:32:00',3621,485,'2005-08-04 05:45:00',1,'2006-02-15 21:30:53'),(9566,'2005-07-31 02:32:10',643,346,'2005-08-02 23:54:10',2,'2006-02-15 21:30:53'),(9567,'2005-07-31 02:36:11',3688,37,'2005-08-07 01:19:11',2,'2006-02-15 21:30:53'),(9568,'2005-07-31 02:37:44',1248,358,'2005-08-02 07:07:44',2,'2006-02-15 21:30:53'),(9569,'2005-07-31 02:39:38',813,405,'2005-08-02 05:09:38',2,'2006-02-15 21:30:53'),(9570,'2005-07-31 02:40:37',591,385,'2005-08-01 01:59:37',1,'2006-02-15 21:30:53'),(9571,'2005-07-31 02:42:18',2219,1,'2005-08-02 23:26:18',2,'2006-02-15 21:30:53'),(9572,'2005-07-31 02:44:10',1453,283,'2005-08-01 03:30:10',2,'2006-02-15 21:30:53'),(9573,'2005-07-31 02:45:38',3745,59,'2005-08-09 04:31:38',2,'2006-02-15 21:30:53'),(9574,'2005-07-31 02:49:20',2782,233,'2005-08-05 02:36:20',2,'2006-02-15 21:30:53'),(9575,'2005-07-31 02:51:53',3971,193,'2005-08-03 20:54:53',2,'2006-02-15 21:30:53'),(9576,'2005-07-31 02:52:59',3327,145,'2005-08-05 23:35:59',2,'2006-02-15 21:30:53'),(9577,'2005-07-31 02:53:33',2423,526,'2005-08-07 05:56:33',1,'2006-02-15 21:30:53'),(9578,'2005-07-31 02:54:31',2965,115,'2005-08-02 02:48:31',1,'2006-02-15 21:30:53'),(9579,'2005-07-31 02:59:20',3547,35,'2005-08-06 03:52:20',2,'2006-02-15 21:30:53'),(9580,'2005-07-31 03:01:11',532,22,'2005-08-05 06:01:11',1,'2006-02-15 21:30:53'),(9581,'2005-07-31 03:03:07',2588,302,'2005-08-05 23:01:07',1,'2006-02-15 21:30:53'),(9582,'2005-07-31 03:05:19',3913,347,'2005-08-04 07:26:19',1,'2006-02-15 21:30:53'),(9583,'2005-07-31 03:05:21',3543,568,'2005-08-06 00:14:21',2,'2006-02-15 21:30:53'),(9584,'2005-07-31 03:05:48',419,141,'2005-08-01 05:50:48',2,'2006-02-15 21:30:53'),(9585,'2005-07-31 03:05:55',3249,197,'2005-08-02 23:54:55',2,'2006-02-15 21:30:53'),(9586,'2005-07-31 03:07:16',3987,415,'2005-08-04 00:39:16',1,'2006-02-15 21:30:53'),(9587,'2005-07-31 03:10:30',2966,235,'2005-08-06 06:54:30',2,'2006-02-15 21:30:53'),(9588,'2005-07-31 03:13:13',1368,499,'2005-08-02 04:06:13',1,'2006-02-15 21:30:53'),(9589,'2005-07-31 03:13:29',2604,574,'2005-08-09 01:51:29',2,'2006-02-15 21:30:53'),(9590,'2005-07-31 03:17:16',2293,585,'2005-08-08 04:24:16',1,'2006-02-15 21:30:53'),(9591,'2005-07-31 03:19:28',504,97,'2005-08-01 07:30:28',1,'2006-02-15 21:30:53'),(9592,'2005-07-31 03:21:16',1828,14,'2005-08-05 08:32:16',1,'2006-02-15 21:30:53'),(9593,'2005-07-31 03:22:30',1223,28,'2005-08-05 08:23:30',1,'2006-02-15 21:30:53'),(9594,'2005-07-31 03:23:52',4382,148,'2005-08-04 23:06:52',1,'2006-02-15 21:30:53'),(9595,'2005-07-31 03:27:58',2829,3,'2005-08-03 05:58:58',1,'2006-02-15 21:30:53'),(9596,'2005-07-31 03:28:47',2847,55,'2005-08-04 03:43:47',2,'2006-02-15 21:30:53'),(9597,'2005-07-31 03:29:07',3317,61,'2005-08-09 03:33:07',2,'2006-02-15 21:30:53'),(9598,'2005-07-31 03:30:41',1105,468,'2005-08-04 03:54:41',1,'2006-02-15 21:30:53'),(9599,'2005-07-31 03:32:06',3164,502,'2005-08-04 07:47:06',2,'2006-02-15 21:30:53'),(9600,'2005-07-31 03:35:34',3731,464,'2005-08-08 22:50:34',1,'2006-02-15 21:30:53'),(9601,'2005-07-31 03:42:17',1592,553,'2005-08-04 02:02:17',2,'2006-02-15 21:30:53'),(9602,'2005-07-31 03:42:51',3173,386,'2005-08-01 08:39:51',1,'2006-02-15 21:30:53'),(9603,'2005-07-31 03:43:43',2266,541,'2005-08-02 00:11:43',2,'2006-02-15 21:30:53'),(9604,'2005-07-31 03:47:12',4342,580,'2005-08-03 06:48:12',1,'2006-02-15 21:30:53'),(9605,'2005-07-31 03:50:07',1477,94,'2005-08-07 09:15:07',2,'2006-02-15 21:30:53'),(9606,'2005-07-31 03:50:46',1357,253,'2005-08-01 05:29:46',2,'2006-02-15 21:30:53'),(9607,'2005-07-31 03:51:06',3414,294,'2005-08-02 00:18:06',2,'2006-02-15 21:30:53'),(9608,'2005-07-31 03:51:52',363,397,'2005-08-06 05:38:52',2,'2006-02-15 21:30:53'),(9609,'2005-07-31 03:53:24',693,112,'2005-08-05 08:32:24',2,'2006-02-15 21:30:53'),(9610,'2005-07-31 03:54:05',3110,16,'2005-08-06 23:11:05',1,'2006-02-15 21:30:53'),(9611,'2005-07-31 03:54:43',1976,215,'2005-08-05 03:54:43',2,'2006-02-15 21:30:53'),(9612,'2005-07-31 03:58:31',2142,69,'2005-08-04 07:34:31',2,'2006-02-15 21:30:53'),(9613,'2005-07-31 03:58:53',3251,188,'2005-08-02 00:10:53',1,'2006-02-15 21:30:53'),(9614,'2005-07-31 03:59:31',2955,548,'2005-08-08 04:19:31',1,'2006-02-15 21:30:53'),(9615,'2005-07-31 03:59:56',3370,50,'2005-08-02 00:46:56',2,'2006-02-15 21:30:53'),(9616,'2005-07-31 04:05:01',1210,550,'2005-08-05 00:10:01',1,'2006-02-15 21:30:53'),(9617,'2005-07-31 04:15:38',529,102,'2005-08-02 04:24:38',1,'2006-02-15 21:30:53'),(9618,'2005-07-31 04:16:14',2688,253,'2005-08-07 02:43:14',2,'2006-02-15 21:30:53'),(9619,'2005-07-31 04:17:02',1730,138,'2005-08-05 06:36:02',2,'2006-02-15 21:30:53'),(9620,'2005-07-31 04:19:18',2177,576,'2005-08-08 09:20:18',1,'2006-02-15 21:30:53'),(9621,'2005-07-31 04:21:08',325,38,'2005-08-08 03:50:08',2,'2006-02-15 21:30:53'),(9622,'2005-07-31 04:21:45',2255,411,'2005-08-02 09:20:45',1,'2006-02-15 21:30:53'),(9623,'2005-07-31 04:30:02',113,360,'2005-08-06 23:34:02',1,'2006-02-15 21:30:53'),(9624,'2005-07-31 04:30:03',3480,7,'2005-08-06 09:13:03',1,'2006-02-15 21:30:53'),(9625,'2005-07-31 04:30:48',1703,445,'2005-08-03 01:12:48',1,'2006-02-15 21:30:53'),(9626,'2005-07-31 04:37:41',2216,546,'2005-08-08 04:00:41',1,'2006-02-15 21:30:53'),(9627,'2005-07-31 04:42:46',471,12,'2005-08-08 00:42:46',2,'2006-02-15 21:30:53'),(9628,'2005-07-31 04:51:11',1387,565,'2005-07-31 23:11:11',2,'2006-02-15 21:30:53'),(9629,'2005-07-31 04:54:43',2773,8,'2005-08-02 08:36:43',1,'2006-02-15 21:30:53'),(9630,'2005-07-31 04:57:07',2008,599,'2005-08-07 10:55:07',2,'2006-02-15 21:30:53'),(9631,'2005-07-31 05:02:00',321,595,'2005-08-02 02:04:00',2,'2006-02-15 21:30:53'),(9632,'2005-07-31 05:02:23',3368,217,'2005-08-06 04:49:23',2,'2006-02-15 21:30:53'),(9633,'2005-07-31 05:04:08',1141,334,'2005-08-06 00:52:08',2,'2006-02-15 21:30:53'),(9634,'2005-07-31 05:06:02',924,444,'2005-08-04 06:53:02',1,'2006-02-15 21:30:53'),(9635,'2005-07-31 05:12:27',1687,371,'2005-08-02 00:24:27',2,'2006-02-15 21:30:53'),(9636,'2005-07-31 05:12:59',1725,27,'2005-08-09 07:31:59',2,'2006-02-15 21:30:53'),(9637,'2005-07-31 05:18:54',3013,130,'2005-08-03 01:23:54',2,'2006-02-15 21:30:53'),(9638,'2005-07-31 05:30:27',1616,436,'2005-08-09 02:04:27',1,'2006-02-15 21:30:53'),(9639,'2005-07-31 05:32:10',1373,459,'2005-08-03 07:04:10',2,'2006-02-15 21:30:53'),(9640,'2005-07-31 05:33:25',1067,67,'2005-08-09 09:41:25',1,'2006-02-15 21:30:53'),(9641,'2005-07-31 05:33:48',1085,30,'2005-08-04 07:43:48',1,'2006-02-15 21:30:53'),(9642,'2005-07-31 05:33:57',3550,68,'2005-08-05 04:54:57',1,'2006-02-15 21:30:53'),(9643,'2005-07-31 05:35:48',3576,538,'2005-08-08 04:28:48',2,'2006-02-15 21:30:53'),(9644,'2005-07-31 05:40:35',4577,441,'2005-08-09 08:18:35',1,'2006-02-15 21:30:53'),(9645,'2005-07-31 05:42:49',3413,519,'2005-08-04 00:08:49',1,'2006-02-15 21:30:53'),(9646,'2005-07-31 05:43:28',3756,89,'2005-08-08 04:00:28',1,'2006-02-15 21:30:53'),(9647,'2005-07-31 05:45:15',3415,475,'2005-08-06 08:54:15',1,'2006-02-15 21:30:53'),(9648,'2005-07-31 05:46:03',4063,72,'2005-08-09 04:36:03',2,'2006-02-15 21:30:53'),(9649,'2005-07-31 05:46:54',1588,51,'2005-08-04 08:42:54',2,'2006-02-15 21:30:53'),(9650,'2005-07-31 05:47:32',2997,414,'2005-08-04 00:50:32',2,'2006-02-15 21:30:53'),(9651,'2005-07-31 05:48:49',4059,324,'2005-08-04 06:53:49',1,'2006-02-15 21:30:53'),(9652,'2005-07-31 05:49:53',448,207,'2005-08-06 07:38:53',2,'2006-02-15 21:30:53'),(9653,'2005-07-31 05:55:38',1451,383,'2005-08-03 09:35:38',2,'2006-02-15 21:30:53'),(9654,'2005-07-31 05:57:42',3286,506,'2005-08-06 04:19:42',1,'2006-02-15 21:30:53'),(9655,'2005-07-31 05:57:54',3403,435,'2005-08-06 02:00:54',1,'2006-02-15 21:30:53'),(9656,'2005-07-31 06:00:21',4215,39,'2005-08-05 04:36:21',1,'2006-02-15 21:30:53'),(9657,'2005-07-31 06:00:41',2681,402,'2005-08-06 06:51:41',2,'2006-02-15 21:30:53'),(9658,'2005-07-31 06:00:52',2332,282,'2005-08-09 04:47:52',2,'2006-02-15 21:30:53'),(9659,'2005-07-31 06:02:14',4262,360,'2005-08-07 00:54:14',2,'2006-02-15 21:30:53'),(9660,'2005-07-31 06:03:17',1090,406,'2005-08-07 06:59:17',2,'2006-02-15 21:30:53'),(9661,'2005-07-31 06:06:37',2693,237,'2005-08-04 07:37:37',1,'2006-02-15 21:30:53'),(9662,'2005-07-31 06:09:53',2757,96,'2005-08-08 00:50:53',2,'2006-02-15 21:30:53'),(9663,'2005-07-31 06:10:48',2099,339,'2005-08-01 11:40:48',2,'2006-02-15 21:30:53'),(9664,'2005-07-31 06:12:08',360,13,'2005-08-04 02:19:08',2,'2006-02-15 21:30:53'),(9665,'2005-07-31 06:17:33',2863,478,'2005-08-04 08:53:33',1,'2006-02-15 21:30:53'),(9666,'2005-07-31 06:20:58',4318,592,'2005-08-06 06:09:58',2,'2006-02-15 21:30:53'),(9667,'2005-07-31 06:23:52',4289,523,'2005-08-09 09:12:52',1,'2006-02-15 21:30:53'),(9668,'2005-07-31 06:31:03',1647,378,'2005-08-07 06:19:03',2,'2006-02-15 21:30:53'),(9669,'2005-07-31 06:31:36',4496,277,'2005-08-08 03:05:36',2,'2006-02-15 21:30:53'),(9670,'2005-07-31 06:33:33',3709,349,'2005-08-07 04:51:33',1,'2006-02-15 21:30:53'),(9671,'2005-07-31 06:33:41',920,133,'2005-08-02 07:50:41',1,'2006-02-15 21:30:53'),(9672,'2005-07-31 06:34:06',4394,183,'2005-08-08 10:29:06',2,'2006-02-15 21:30:53'),(9673,'2005-07-31 06:34:55',339,27,'2005-08-09 09:15:55',2,'2006-02-15 21:30:53'),(9674,'2005-07-31 06:36:53',3213,297,'2005-08-06 02:50:53',2,'2006-02-15 21:30:53'),(9675,'2005-07-31 06:37:07',2523,243,'2005-08-03 07:03:07',1,'2006-02-15 21:30:53'),(9676,'2005-07-31 06:39:13',681,239,'2005-08-05 09:31:13',2,'2006-02-15 21:30:53'),(9677,'2005-07-31 06:39:45',3200,274,'2005-08-01 02:37:45',2,'2006-02-15 21:30:53'),(9678,'2005-07-31 06:40:47',3430,383,'2005-08-02 00:57:47',2,'2006-02-15 21:30:53'),(9679,'2005-07-31 06:41:19',3819,599,'2005-08-02 07:23:19',1,'2006-02-15 21:30:53'),(9680,'2005-07-31 06:41:46',3010,84,'2005-08-01 11:02:46',2,'2006-02-15 21:30:53'),(9681,'2005-07-31 06:42:09',64,160,'2005-08-06 08:21:09',1,'2006-02-15 21:30:53'),(9682,'2005-07-31 06:47:10',2427,425,'2005-08-04 09:07:10',1,'2006-02-15 21:30:53'),(9683,'2005-07-31 06:47:13',856,141,'2005-08-04 05:52:13',2,'2006-02-15 21:30:53'),(9684,'2005-07-31 06:48:33',362,591,'2005-08-01 07:07:33',2,'2006-02-15 21:30:53'),(9685,'2005-07-31 06:49:18',3097,165,'2005-08-04 03:19:18',1,'2006-02-15 21:30:53'),(9686,'2005-07-31 06:50:06',3825,386,'2005-08-06 08:41:06',1,'2006-02-15 21:30:53'),(9687,'2005-07-31 06:52:54',3540,470,'2005-08-01 03:40:54',2,'2006-02-15 21:30:53'),(9688,'2005-07-31 06:56:08',1304,566,'2005-08-08 03:31:08',2,'2006-02-15 21:30:53'),(9689,'2005-07-31 07:00:08',819,498,'2005-08-04 03:33:08',2,'2006-02-15 21:30:53'),(9690,'2005-07-31 07:06:29',4449,468,'2005-08-06 09:45:29',2,'2006-02-15 21:30:53'),(9691,'2005-07-31 07:09:55',2626,50,'2005-08-09 02:29:55',1,'2006-02-15 21:30:53'),(9692,'2005-07-31 07:11:04',3481,295,'2005-08-07 06:34:04',2,'2006-02-15 21:30:53'),(9693,'2005-07-31 07:11:50',1031,273,'2005-08-08 09:55:50',1,'2006-02-15 21:30:53'),(9694,'2005-07-31 07:13:16',3447,508,'2005-08-06 09:12:16',2,'2006-02-15 21:30:53'),(9695,'2005-07-31 07:13:30',726,95,'2005-08-07 05:38:30',2,'2006-02-15 21:30:53'),(9696,'2005-07-31 07:13:46',2703,156,'2005-08-03 10:49:46',2,'2006-02-15 21:30:53'),(9697,'2005-07-31 07:23:11',762,479,'2005-08-05 08:04:11',2,'2006-02-15 21:30:53'),(9698,'2005-07-31 07:24:35',3477,594,'2005-08-09 04:52:35',2,'2006-02-15 21:30:53'),(9699,'2005-07-31 07:29:25',199,21,'2005-08-06 01:35:25',1,'2006-02-15 21:30:53'),(9700,'2005-07-31 07:29:59',2678,40,'2005-08-02 09:53:59',1,'2006-02-15 21:30:53'),(9701,'2005-07-31 07:32:21',4581,401,'2005-08-01 05:07:21',2,'2006-02-15 21:30:53'),(9702,'2005-07-31 07:34:07',3353,525,'2005-08-02 06:13:07',2,'2006-02-15 21:30:53'),(9703,'2005-07-31 07:34:52',2708,57,'2005-08-03 13:33:52',2,'2006-02-15 21:30:53'),(9704,'2005-07-31 07:39:32',1402,385,'2005-08-06 01:50:32',2,'2006-02-15 21:30:53'),(9705,'2005-07-31 07:40:33',4158,28,'2005-08-01 03:50:33',2,'2006-02-15 21:30:53'),(9706,'2005-07-31 07:43:19',142,508,'2005-08-05 11:11:19',1,'2006-02-15 21:30:53'),(9707,'2005-07-31 07:44:18',203,351,'2005-08-08 12:45:18',1,'2006-02-15 21:30:53'),(9708,'2005-07-31 07:45:33',3264,12,'2005-08-08 08:56:33',1,'2006-02-15 21:30:53'),(9709,'2005-07-31 08:04:55',2096,137,'2005-08-07 08:58:55',1,'2006-02-15 21:30:53'),(9710,'2005-07-31 08:05:31',3486,380,'2005-08-09 03:29:31',2,'2006-02-15 21:30:53'),(9711,'2005-07-31 08:06:41',1525,231,'2005-08-02 10:30:41',2,'2006-02-15 21:30:53'),(9712,'2005-07-31 08:13:11',2487,219,'2005-08-08 12:40:11',2,'2006-02-15 21:30:53'),(9713,'2005-07-31 08:13:28',929,158,'2005-08-07 10:11:28',1,'2006-02-15 21:30:53'),(9714,'2005-07-31 08:15:32',1532,144,'2005-08-03 08:33:32',2,'2006-02-15 21:30:53'),(9715,'2005-07-31 08:16:58',3319,237,'2005-08-04 11:13:58',1,'2006-02-15 21:30:53'),(9716,'2005-07-31 08:23:53',3385,287,'2005-08-08 12:03:53',2,'2006-02-15 21:30:53'),(9717,'2005-07-31 08:24:41',4207,114,'2005-08-04 02:51:41',1,'2006-02-15 21:30:53'),(9718,'2005-07-31 08:25:03',2747,23,'2005-08-08 04:16:03',2,'2006-02-15 21:30:53'),(9719,'2005-07-31 08:25:13',335,584,'2005-08-05 08:22:13',1,'2006-02-15 21:30:53'),(9720,'2005-07-31 08:25:21',1282,587,'2005-08-07 11:30:21',2,'2006-02-15 21:30:53'),(9721,'2005-07-31 08:28:46',3942,196,'2005-08-05 14:03:46',1,'2006-02-15 21:30:53'),(9722,'2005-07-31 08:29:48',4260,125,'2005-08-07 07:52:48',2,'2006-02-15 21:30:53'),(9723,'2005-07-31 08:31:18',3968,24,'2005-08-03 10:25:18',1,'2006-02-15 21:30:53'),(9724,'2005-07-31 08:33:08',518,130,'2005-08-08 04:50:08',1,'2006-02-15 21:30:53'),(9725,'2005-07-31 08:35:18',3960,503,'2005-08-03 03:46:18',2,'2006-02-15 21:30:53'),(9726,'2005-07-31 08:37:07',1701,162,'2005-08-09 06:09:07',1,'2006-02-15 21:30:53'),(9727,'2005-07-31 08:39:13',3076,536,'2005-08-03 07:54:13',1,'2006-02-15 21:30:53'),(9728,'2005-07-31 08:40:54',3630,399,'2005-08-03 04:14:54',2,'2006-02-15 21:30:53'),(9729,'2005-07-31 08:43:43',4199,273,'2005-08-01 13:25:43',2,'2006-02-15 21:30:53'),(9730,'2005-07-31 08:50:08',2605,242,'2005-08-08 12:21:08',2,'2006-02-15 21:30:53'),(9731,'2005-07-31 08:54:47',3713,349,'2005-08-05 03:47:47',1,'2006-02-15 21:30:53'),(9732,'2005-07-31 08:56:08',3262,288,'2005-08-07 11:05:08',2,'2006-02-15 21:30:53'),(9733,'2005-07-31 08:57:35',1255,575,'2005-08-04 04:47:35',1,'2006-02-15 21:30:53'),(9734,'2005-07-31 08:57:45',3320,125,'2005-08-05 11:57:45',1,'2006-02-15 21:30:53'),(9735,'2005-07-31 08:57:49',4228,315,'2005-08-08 13:51:49',2,'2006-02-15 21:30:53'),(9736,'2005-07-31 08:58:40',2072,13,'2005-08-09 08:34:40',2,'2006-02-15 21:30:53'),(9737,'2005-07-31 08:59:18',1720,475,'2005-08-03 12:19:18',2,'2006-02-15 21:30:53'),(9738,'2005-07-31 09:04:14',2278,568,'2005-08-05 14:40:14',2,'2006-02-15 21:30:53'),(9739,'2005-07-31 09:08:03',1328,343,'2005-08-04 13:57:03',1,'2006-02-15 21:30:53'),(9740,'2005-07-31 09:08:03',3497,443,'2005-08-06 04:48:03',2,'2006-02-15 21:30:53'),(9741,'2005-07-31 09:09:22',1971,495,'2005-08-07 10:01:22',1,'2006-02-15 21:30:53'),(9742,'2005-07-31 09:10:20',4058,48,'2005-08-08 10:07:20',1,'2006-02-15 21:30:53'),(9743,'2005-07-31 09:12:42',1740,476,'2005-08-06 11:57:42',2,'2006-02-15 21:30:53'),(9744,'2005-07-31 09:15:38',839,459,'2005-08-03 10:31:38',2,'2006-02-15 21:30:53'),(9745,'2005-07-31 09:16:14',3610,217,'2005-08-07 12:11:14',1,'2006-02-15 21:30:53'),(9746,'2005-07-31 09:16:48',1459,308,'2005-08-07 06:36:48',2,'2006-02-15 21:30:53'),(9747,'2005-07-31 09:16:57',2455,106,'2005-08-08 06:47:57',2,'2006-02-15 21:30:53'),(9748,'2005-07-31 09:17:56',3308,550,'2005-08-02 14:54:56',1,'2006-02-15 21:30:53'),(9749,'2005-07-31 09:18:33',658,52,'2005-08-06 07:41:33',1,'2006-02-15 21:30:53'),(9750,'2005-07-31 09:19:46',3174,527,'2005-08-06 08:07:46',1,'2006-02-15 21:30:53'),(9751,'2005-07-31 09:20:50',36,202,'2005-08-01 05:34:50',2,'2006-02-15 21:30:53'),(9752,'2005-07-31 09:22:02',249,199,'2005-08-02 14:34:02',1,'2006-02-15 21:30:53'),(9753,'2005-07-31 09:22:38',3529,98,'2005-08-01 08:45:38',1,'2006-02-15 21:30:53'),(9754,'2005-07-31 09:23:43',3751,479,'2005-08-08 06:04:43',1,'2006-02-15 21:30:53'),(9755,'2005-07-31 09:24:55',86,108,'2005-08-07 06:00:55',2,'2006-02-15 21:30:53'),(9756,'2005-07-31 09:25:00',207,400,'2005-08-02 05:11:00',1,'2006-02-15 21:30:53'),(9757,'2005-07-31 09:25:14',2596,408,'2005-08-01 14:43:14',2,'2006-02-15 21:30:53'),(9758,'2005-07-31 09:25:38',1307,160,'2005-08-03 14:16:38',1,'2006-02-15 21:30:53'),(9759,'2005-07-31 09:25:57',2950,574,'2005-08-07 12:56:57',2,'2006-02-15 21:30:53'),(9760,'2005-07-31 09:29:33',426,511,'2005-08-09 07:32:33',2,'2006-02-15 21:30:53'),(9761,'2005-07-31 09:31:54',3778,60,'2005-08-03 11:02:54',2,'2006-02-15 21:30:53'),(9762,'2005-07-31 09:32:54',155,540,'2005-08-05 04:55:54',1,'2006-02-15 21:30:53'),(9763,'2005-07-31 09:34:03',126,393,'2005-08-08 05:30:03',1,'2006-02-15 21:30:53'),(9764,'2005-07-31 09:42:58',3761,136,'2005-08-07 07:22:58',2,'2006-02-15 21:30:53'),(9765,'2005-07-31 09:44:40',472,551,'2005-08-05 10:57:40',1,'2006-02-15 21:30:53'),(9766,'2005-07-31 09:46:29',4049,570,'2005-08-01 05:08:29',1,'2006-02-15 21:30:53'),(9767,'2005-07-31 09:46:49',3432,89,'2005-08-03 11:20:49',1,'2006-02-15 21:30:53'),(9768,'2005-07-31 09:48:41',2656,582,'2005-08-08 11:40:41',2,'2006-02-15 21:30:53'),(9769,'2005-07-31 09:52:16',2958,484,'2005-08-06 09:26:16',1,'2006-02-15 21:30:53'),(9770,'2005-07-31 09:52:40',1226,317,'2005-08-09 06:44:40',1,'2006-02-15 21:30:53'),(9771,'2005-07-31 09:55:36',4123,398,'2005-08-04 10:11:36',2,'2006-02-15 21:30:53'),(9772,'2005-07-31 09:56:07',3639,147,'2005-08-01 13:50:07',2,'2006-02-15 21:30:53'),(9773,'2005-07-31 09:56:56',4555,376,'2005-08-04 09:38:56',1,'2006-02-15 21:30:53'),(9774,'2005-07-31 09:57:51',4174,306,'2005-08-02 09:08:51',2,'2006-02-15 21:30:53'),(9775,'2005-07-31 10:00:00',2818,162,'2005-08-01 08:57:00',2,'2006-02-15 21:30:53'),(9776,'2005-07-31 10:01:03',2524,73,'2005-08-03 07:20:03',2,'2006-02-15 21:30:53'),(9777,'2005-07-31 10:01:06',225,539,'2005-08-08 04:44:06',2,'2006-02-15 21:30:53'),(9778,'2005-07-31 10:02:04',304,230,'2005-08-04 07:44:04',2,'2006-02-15 21:30:53'),(9779,'2005-07-31 10:08:33',1280,402,'2005-08-03 14:56:33',1,'2006-02-15 21:30:53'),(9780,'2005-07-31 10:10:22',3241,102,'2005-08-02 11:43:22',1,'2006-02-15 21:30:53'),(9781,'2005-07-31 10:13:02',2310,155,'2005-08-09 14:46:02',1,'2006-02-15 21:30:53'),(9782,'2005-07-31 10:14:26',2397,438,'2005-08-06 16:11:26',1,'2006-02-15 21:30:53'),(9783,'2005-07-31 10:15:46',836,75,'2005-08-09 13:22:46',2,'2006-02-15 21:30:53'),(9784,'2005-07-31 10:21:32',2761,362,'2005-08-07 09:20:32',2,'2006-02-15 21:30:53'),(9785,'2005-07-31 10:22:15',4101,587,'2005-08-02 10:02:15',1,'2006-02-15 21:30:53'),(9786,'2005-07-31 10:25:21',2560,586,'2005-08-03 04:28:21',1,'2006-02-15 21:30:53'),(9787,'2005-07-31 10:26:19',3559,272,'2005-08-09 09:02:19',1,'2006-02-15 21:30:53'),(9788,'2005-07-31 10:28:21',4367,344,'2005-08-09 13:45:21',1,'2006-02-15 21:30:53'),(9789,'2005-07-31 10:30:25',619,137,'2005-08-03 14:58:25',1,'2006-02-15 21:30:53'),(9790,'2005-07-31 10:34:08',3643,284,'2005-08-04 11:19:08',2,'2006-02-15 21:30:53'),(9791,'2005-07-31 10:35:22',3642,300,'2005-08-03 05:34:22',1,'2006-02-15 21:30:53'),(9792,'2005-07-31 10:43:41',3163,292,'2005-08-07 10:18:41',1,'2006-02-15 21:30:53'),(9793,'2005-07-31 10:45:11',4576,295,'2005-08-03 14:29:11',1,'2006-02-15 21:30:53'),(9794,'2005-07-31 10:47:01',1771,403,'2005-08-02 06:52:01',2,'2006-02-15 21:30:53'),(9795,'2005-07-31 10:47:19',2005,63,'2005-08-04 09:32:19',2,'2006-02-15 21:30:53'),(9796,'2005-07-31 10:52:43',1038,539,'2005-08-09 06:08:43',1,'2006-02-15 21:30:53'),(9797,'2005-07-31 10:53:44',687,52,'2005-08-09 05:51:44',1,'2006-02-15 21:30:53'),(9798,'2005-07-31 10:55:18',3759,55,'2005-08-01 07:37:18',2,'2006-02-15 21:30:53'),(9799,'2005-07-31 10:58:32',3008,494,'2005-08-01 12:08:32',1,'2006-02-15 21:30:53'),(9800,'2005-07-31 11:00:58',2153,257,'2005-08-02 10:13:58',2,'2006-02-15 21:30:53'),(9801,'2005-07-31 11:03:13',3033,158,'2005-08-04 10:55:13',2,'2006-02-15 21:30:53'),(9802,'2005-07-31 11:04:20',2156,594,'2005-08-03 05:28:20',1,'2006-02-15 21:30:53'),(9803,'2005-07-31 11:06:02',3783,520,'2005-08-01 06:25:02',1,'2006-02-15 21:30:53'),(9804,'2005-07-31 11:07:39',2490,196,'2005-08-09 11:57:39',1,'2006-02-15 21:30:53'),(9805,'2005-07-31 11:11:10',4179,36,'2005-08-03 07:36:10',2,'2006-02-15 21:30:53'),(9806,'2005-07-31 11:13:49',245,46,'2005-08-04 06:18:49',1,'2006-02-15 21:30:53'),(9807,'2005-07-31 11:13:52',2137,267,'2005-08-02 07:34:52',1,'2006-02-15 21:30:53'),(9808,'2005-07-31 11:17:22',3259,583,'2005-08-07 15:54:22',1,'2006-02-15 21:30:53'),(9809,'2005-07-31 11:19:21',359,286,'2005-08-08 12:43:21',2,'2006-02-15 21:30:53'),(9810,'2005-07-31 11:22:41',2066,545,'2005-08-01 09:40:41',2,'2006-02-15 21:30:53'),(9811,'2005-07-31 11:23:45',3305,77,'2005-08-06 15:51:45',1,'2006-02-15 21:30:53'),(9812,'2005-07-31 11:28:07',1540,57,'2005-08-01 12:35:07',2,'2006-02-15 21:30:53'),(9813,'2005-07-31 11:29:23',1706,245,'2005-08-07 08:01:23',2,'2006-02-15 21:30:53'),(9814,'2005-07-31 11:29:46',136,79,'2005-08-08 15:49:46',1,'2006-02-15 21:30:53'),(9815,'2005-07-31 11:30:51',2728,540,'2005-08-08 12:52:51',1,'2006-02-15 21:30:53'),(9816,'2005-07-31 11:32:58',4560,3,'2005-08-04 17:12:58',2,'2006-02-15 21:30:53'),(9817,'2005-07-31 11:33:31',4019,170,'2005-08-08 14:49:31',2,'2006-02-15 21:30:53'),(9818,'2005-07-31 11:34:32',1254,183,'2005-08-04 08:20:32',1,'2006-02-15 21:30:53'),(9819,'2005-07-31 11:39:13',1927,292,'2005-08-06 09:11:13',2,'2006-02-15 21:30:53'),(9820,'2005-07-31 11:46:57',499,279,'2005-08-08 13:35:57',1,'2006-02-15 21:30:53'),(9821,'2005-07-31 11:47:54',386,271,'2005-08-08 06:21:54',2,'2006-02-15 21:30:53'),(9822,'2005-07-31 11:48:25',2469,381,'2005-08-05 15:52:25',2,'2006-02-15 21:30:53'),(9823,'2005-07-31 11:49:00',4423,129,'2005-08-07 09:06:00',2,'2006-02-15 21:30:53'),(9824,'2005-07-31 11:49:55',4368,404,'2005-08-07 16:54:55',2,'2006-02-15 21:30:53'),(9825,'2005-07-31 11:50:51',4322,390,'2005-08-02 07:18:51',1,'2006-02-15 21:30:53'),(9826,'2005-07-31 11:51:46',2649,595,'2005-08-09 17:18:46',1,'2006-02-15 21:30:53'),(9827,'2005-07-31 11:56:55',3840,329,'2005-08-09 16:29:55',1,'2006-02-15 21:30:53'),(9828,'2005-07-31 11:56:57',3845,376,'2005-08-02 17:05:57',1,'2006-02-15 21:30:53'),(9829,'2005-07-31 11:58:38',231,435,'2005-08-07 08:11:38',2,'2006-02-15 21:30:53'),(9830,'2005-07-31 11:59:05',170,112,'2005-08-06 10:38:05',1,'2006-02-15 21:30:53'),(9831,'2005-07-31 11:59:32',1961,192,'2005-08-04 07:14:32',1,'2006-02-15 21:30:53'),(9832,'2005-07-31 12:01:49',3126,64,'2005-08-08 09:21:49',1,'2006-02-15 21:30:53'),(9833,'2005-07-31 12:05:01',4243,368,'2005-08-09 09:25:01',2,'2006-02-15 21:30:53'),(9834,'2005-07-31 12:05:42',2292,340,'2005-08-07 15:26:42',1,'2006-02-15 21:30:53'),(9835,'2005-07-31 12:07:35',1051,328,'2005-08-04 07:32:35',2,'2006-02-15 21:30:53'),(9836,'2005-07-31 12:12:00',2870,313,'2005-08-09 06:53:00',1,'2006-02-15 21:30:53'),(9837,'2005-07-31 12:14:19',3488,573,'2005-08-09 17:08:19',1,'2006-02-15 21:30:53'),(9838,'2005-07-31 12:18:49',3866,208,'2005-08-03 16:49:49',2,'2006-02-15 21:30:53'),(9839,'2005-07-31 12:21:16',1591,561,'2005-08-09 13:41:16',2,'2006-02-15 21:30:53'),(9840,'2005-07-31 12:23:18',364,388,'2005-08-06 15:59:18',1,'2006-02-15 21:30:53'),(9841,'2005-07-31 12:24:19',4554,238,'2005-08-09 15:31:19',1,'2006-02-15 21:30:53'),(9842,'2005-07-31 12:24:58',2896,261,'2005-08-02 11:01:58',2,'2006-02-15 21:30:53'),(9843,'2005-07-31 12:25:28',2923,532,'2005-08-01 09:51:28',2,'2006-02-15 21:30:53'),(9844,'2005-07-31 12:26:31',3930,181,'2005-08-05 13:58:31',1,'2006-02-15 21:30:53'),(9845,'2005-07-31 12:28:05',2417,79,'2005-08-06 06:47:05',1,'2006-02-15 21:30:53'),(9846,'2005-07-31 12:30:12',4240,573,'2005-08-05 08:24:12',2,'2006-02-15 21:30:53'),(9847,'2005-07-31 12:33:43',1137,174,'2005-08-04 14:15:43',2,'2006-02-15 21:30:53'),(9848,'2005-07-31 12:44:33',3290,346,'2005-08-07 13:49:33',2,'2006-02-15 21:30:53'),(9849,'2005-07-31 12:44:34',2230,429,'2005-08-02 16:49:34',1,'2006-02-15 21:30:53'),(9850,'2005-07-31 12:46:52',1461,497,'2005-08-04 10:52:52',2,'2006-02-15 21:30:53'),(9851,'2005-07-31 12:50:24',25,49,'2005-08-08 08:30:24',2,'2006-02-15 21:30:53'),(9852,'2005-07-31 12:52:17',4257,415,'2005-08-05 07:59:17',2,'2006-02-15 21:30:53'),(9853,'2005-07-31 12:58:20',1782,221,'2005-08-04 10:47:20',1,'2006-02-15 21:30:53'),(9854,'2005-07-31 12:59:34',1049,441,'2005-08-03 07:20:34',2,'2006-02-15 21:30:53'),(9855,'2005-07-31 13:00:33',1246,326,'2005-08-03 16:18:33',2,'2006-02-15 21:30:53'),(9856,'2005-07-31 13:00:35',723,347,'2005-08-07 18:07:35',1,'2006-02-15 21:30:53'),(9857,'2005-07-31 13:00:53',3316,168,'2005-08-09 15:56:53',1,'2006-02-15 21:30:53'),(9858,'2005-07-31 13:02:07',252,128,'2005-08-03 15:14:07',2,'2006-02-15 21:30:53'),(9859,'2005-07-31 13:02:55',4094,127,'2005-08-05 11:04:55',1,'2006-02-15 21:30:53'),(9860,'2005-07-31 13:03:24',3266,585,'2005-08-07 07:28:24',2,'2006-02-15 21:30:53'),(9861,'2005-07-31 13:04:14',1050,264,'2005-08-09 15:22:14',1,'2006-02-15 21:30:53'),(9862,'2005-07-31 13:05:03',474,513,'2005-08-01 09:05:03',2,'2006-02-15 21:30:53'),(9863,'2005-07-31 13:05:29',19,239,'2005-08-08 12:33:29',1,'2006-02-15 21:30:53'),(9864,'2005-07-31 13:06:54',3619,394,'2005-08-02 11:47:54',2,'2006-02-15 21:30:53'),(9865,'2005-07-31 13:10:45',1355,580,'2005-08-02 09:19:45',2,'2006-02-15 21:30:53'),(9866,'2005-07-31 13:13:50',3555,374,'2005-08-07 15:11:50',1,'2006-02-15 21:30:53'),(9867,'2005-07-31 13:17:04',2485,83,'2005-08-05 07:17:04',2,'2006-02-15 21:30:53'),(9868,'2005-07-31 13:20:08',266,378,'2005-08-01 18:17:08',2,'2006-02-15 21:30:53'),(9869,'2005-07-31 13:21:54',783,261,'2005-08-07 09:09:54',1,'2006-02-15 21:30:53'),(9870,'2005-07-31 13:22:51',442,195,'2005-08-05 16:04:51',1,'2006-02-15 21:30:53'),(9871,'2005-07-31 13:25:46',194,109,'2005-08-01 13:12:46',2,'2006-02-15 21:30:53'),(9872,'2005-07-31 13:27:55',1021,376,'2005-08-04 14:33:55',1,'2006-02-15 21:30:53'),(9873,'2005-07-31 13:32:18',667,442,'2005-08-06 11:15:18',2,'2006-02-15 21:30:53'),(9874,'2005-07-31 13:32:31',2476,482,'2005-08-07 09:50:31',2,'2006-02-15 21:30:53'),(9875,'2005-07-31 13:37:41',2878,421,'2005-08-03 15:17:41',2,'2006-02-15 21:30:53'),(9876,'2005-07-31 13:37:51',828,347,'2005-08-07 18:05:51',2,'2006-02-15 21:30:53'),(9877,'2005-07-31 13:41:57',1299,559,'2005-08-06 15:27:57',2,'2006-02-15 21:30:53'),(9878,'2005-07-31 13:42:02',1753,424,'2005-08-05 10:15:02',2,'2006-02-15 21:30:53'),(9879,'2005-07-31 13:45:32',1935,178,'2005-08-07 17:12:32',1,'2006-02-15 21:30:53'),(9880,'2005-07-31 13:49:02',3590,64,'2005-08-08 10:31:02',2,'2006-02-15 21:30:53'),(9881,'2005-07-31 13:50:38',4209,412,'2005-08-06 08:58:38',1,'2006-02-15 21:30:53'),(9882,'2005-07-31 13:53:33',1429,311,'2005-08-09 15:55:33',1,'2006-02-15 21:30:53'),(9883,'2005-07-31 13:53:37',4286,356,'2005-08-06 15:45:37',1,'2006-02-15 21:30:53'),(9884,'2005-07-31 13:56:24',511,590,'2005-08-01 16:59:24',1,'2006-02-15 21:30:53'),(9885,'2005-07-31 13:59:32',3600,461,'2005-08-07 12:30:32',2,'2006-02-15 21:30:53'),(9886,'2005-07-31 14:00:13',1386,519,'2005-08-08 19:30:13',1,'2006-02-15 21:30:53'),(9887,'2005-07-31 14:00:32',436,549,'2005-08-05 19:16:32',1,'2006-02-15 21:30:53'),(9888,'2005-07-31 14:00:53',4400,5,'2005-08-08 18:51:53',2,'2006-02-15 21:30:53'),(9889,'2005-07-31 14:02:50',2842,143,'2005-08-05 12:09:50',2,'2006-02-15 21:30:53'),(9890,'2005-07-31 14:04:44',1024,151,'2005-08-01 11:24:44',1,'2006-02-15 21:30:53'),(9891,'2005-07-31 14:05:44',3359,462,'2005-08-02 16:21:44',2,'2006-02-15 21:30:53'),(9892,'2005-07-31 14:06:25',1045,251,'2005-08-03 18:11:25',2,'2006-02-15 21:30:53'),(9893,'2005-07-31 14:07:21',2445,179,'2005-08-01 09:20:21',2,'2006-02-15 21:30:53'),(9894,'2005-07-31 14:07:44',3724,199,'2005-08-05 18:01:44',2,'2006-02-15 21:30:53'),(9895,'2005-07-31 14:07:56',835,560,'2005-08-05 14:56:56',1,'2006-02-15 21:30:53'),(9896,'2005-07-31 14:09:48',2591,586,'2005-08-01 20:02:48',1,'2006-02-15 21:30:53'),(9897,'2005-07-31 14:11:57',3945,538,'2005-08-02 12:20:57',1,'2006-02-15 21:30:53'),(9898,'2005-07-31 14:12:03',2151,359,'2005-08-01 12:27:03',1,'2006-02-15 21:30:53'),(9899,'2005-07-31 14:12:36',3352,168,'2005-08-08 08:59:36',1,'2006-02-15 21:30:53'),(9900,'2005-07-31 14:15:05',3132,453,'2005-08-07 11:58:05',2,'2006-02-15 21:30:53'),(9901,'2005-07-31 14:20:59',3332,277,'2005-08-03 09:30:59',1,'2006-02-15 21:30:53'),(9902,'2005-07-31 14:24:33',486,218,'2005-08-09 11:11:33',2,'2006-02-15 21:30:53'),(9903,'2005-07-31 14:31:44',1621,316,'2005-08-08 20:03:44',1,'2006-02-15 21:30:53'),(9904,'2005-07-31 14:34:17',4089,428,'2005-08-08 17:19:17',1,'2006-02-15 21:30:53'),(9905,'2005-07-31 14:37:03',2839,519,'2005-08-01 15:55:03',2,'2006-02-15 21:30:53'),(9906,'2005-07-31 14:38:12',4241,204,'2005-08-01 13:56:12',1,'2006-02-15 21:30:53'),(9907,'2005-07-31 14:39:50',4282,120,'2005-08-09 09:39:50',1,'2006-02-15 21:30:53'),(9908,'2005-07-31 14:39:52',4408,27,'2005-08-09 09:46:52',2,'2006-02-15 21:30:53'),(9909,'2005-07-31 14:43:34',2600,587,'2005-08-09 15:31:34',1,'2006-02-15 21:30:53'),(9910,'2005-07-31 14:47:57',368,122,'2005-08-05 18:20:57',1,'2006-02-15 21:30:53'),(9911,'2005-07-31 14:48:01',3879,112,'2005-08-06 11:55:01',1,'2006-02-15 21:30:53'),(9912,'2005-07-31 14:49:04',3119,367,'2005-08-03 15:40:04',1,'2006-02-15 21:30:53'),(9913,'2005-07-31 14:51:04',3744,229,'2005-08-06 12:12:04',1,'2006-02-15 21:30:53'),(9914,'2005-07-31 14:51:19',3147,530,'2005-08-05 09:51:19',1,'2006-02-15 21:30:53'),(9915,'2005-07-31 14:52:26',2933,566,'2005-08-03 11:53:26',1,'2006-02-15 21:30:53'),(9916,'2005-07-31 14:54:52',949,432,'2005-08-07 13:18:52',1,'2006-02-15 21:30:53'),(9917,'2005-07-31 14:55:11',3829,159,'2005-08-02 13:58:11',2,'2006-02-15 21:30:53'),(9918,'2005-07-31 14:55:22',2519,283,'2005-08-04 09:02:22',2,'2006-02-15 21:30:53'),(9919,'2005-07-31 14:55:46',3205,291,'2005-08-08 11:43:46',2,'2006-02-15 21:30:53'),(9920,'2005-07-31 14:57:13',3108,139,'2005-08-03 18:58:13',2,'2006-02-15 21:30:53'),(9921,'2005-07-31 14:59:21',1004,332,'2005-08-01 12:40:21',2,'2006-02-15 21:30:53'),(9922,'2005-07-31 14:59:37',3615,25,'2005-08-06 14:05:37',1,'2006-02-15 21:30:53'),(9923,'2005-07-31 15:00:15',1635,209,'2005-08-05 11:09:15',2,'2006-02-15 21:30:53'),(9924,'2005-07-31 15:04:57',1986,64,'2005-08-05 20:07:57',2,'2006-02-15 21:30:53'),(9925,'2005-07-31 15:08:47',2351,24,'2005-08-02 20:27:47',1,'2006-02-15 21:30:53'),(9926,'2005-07-31 15:11:51',3733,472,'2005-08-09 18:26:51',1,'2006-02-15 21:30:53'),(9927,'2005-07-31 15:12:13',999,346,'2005-08-01 11:37:13',1,'2006-02-15 21:30:53'),(9928,'2005-07-31 15:13:57',3627,53,'2005-08-06 20:39:57',1,'2006-02-15 21:30:53'),(9929,'2005-07-31 15:17:24',2521,564,'2005-08-03 17:27:24',1,'2006-02-15 21:30:53'),(9930,'2005-07-31 15:18:03',4491,304,'2005-08-01 12:36:03',2,'2006-02-15 21:30:53'),(9931,'2005-07-31 15:18:19',3455,183,'2005-08-04 14:23:19',2,'2006-02-15 21:30:53'),(9932,'2005-07-31 15:19:48',1691,264,'2005-08-05 21:09:48',1,'2006-02-15 21:30:53'),(9933,'2005-07-31 15:24:46',2349,111,'2005-08-01 10:00:46',1,'2006-02-15 21:30:53'),(9934,'2005-07-31 15:25:26',2492,236,'2005-08-05 17:13:26',1,'2006-02-15 21:30:53'),(9935,'2005-07-31 15:27:07',2247,10,'2005-08-05 11:23:07',1,'2006-02-15 21:30:53'),(9936,'2005-07-31 15:27:41',979,153,'2005-08-06 16:25:41',1,'2006-02-15 21:30:53'),(9937,'2005-07-31 15:28:10',3697,521,'2005-08-06 21:20:10',2,'2006-02-15 21:30:53'),(9938,'2005-07-31 15:28:47',2871,63,'2005-08-09 21:24:47',2,'2006-02-15 21:30:53'),(9939,'2005-07-31 15:29:00',3049,538,'2005-08-08 11:09:00',1,'2006-02-15 21:30:53'),(9940,'2005-07-31 15:29:06',3975,388,'2005-08-06 14:26:06',2,'2006-02-15 21:30:53'),(9941,'2005-07-31 15:31:25',1756,175,'2005-08-05 17:23:25',1,'2006-02-15 21:30:53'),(9942,'2005-07-31 15:35:43',4573,545,'2005-08-07 17:37:43',2,'2006-02-15 21:30:53'),(9943,'2005-07-31 15:37:29',887,494,'2005-08-09 18:25:29',1,'2006-02-15 21:30:53'),(9944,'2005-07-31 15:44:43',2540,241,'2005-08-08 10:30:43',1,'2006-02-15 21:30:53'),(9945,'2005-07-31 15:47:51',2075,309,'2005-08-02 19:06:51',1,'2006-02-15 21:30:53'),(9946,'2005-07-31 15:48:54',2100,29,'2005-08-03 12:42:54',2,'2006-02-15 21:30:53'),(9947,'2005-07-31 15:49:40',1173,138,'2005-08-08 11:11:40',1,'2006-02-15 21:30:53'),(9948,'2005-07-31 15:49:41',806,342,'2005-08-06 12:36:41',1,'2006-02-15 21:30:53'),(9949,'2005-07-31 15:50:10',3258,309,'2005-08-01 17:53:10',2,'2006-02-15 21:30:53'),(9950,'2005-07-31 15:50:22',1657,572,'2005-08-08 19:10:22',2,'2006-02-15 21:30:53'),(9951,'2005-07-31 15:51:16',4412,95,'2005-08-03 14:54:16',1,'2006-02-15 21:30:53'),(9952,'2005-07-31 15:52:37',1634,128,'2005-08-06 10:50:37',2,'2006-02-15 21:30:53'),(9953,'2005-07-31 15:56:35',1646,211,'2005-08-02 12:01:35',2,'2006-02-15 21:30:53'),(9954,'2005-07-31 15:57:07',1830,463,'2005-08-05 12:04:07',2,'2006-02-15 21:30:53'),(9955,'2005-07-31 16:01:26',1745,342,'2005-08-04 11:15:26',2,'2006-02-15 21:30:53'),(9956,'2005-07-31 16:03:47',4485,342,'2005-08-01 16:40:47',2,'2006-02-15 21:30:53'),(9957,'2005-07-31 16:03:55',1857,85,'2005-08-04 15:16:55',2,'2006-02-15 21:30:53'),(9958,'2005-07-31 16:03:56',4142,157,'2005-08-04 15:21:56',2,'2006-02-15 21:30:53'),(9959,'2005-07-31 16:04:22',340,199,'2005-08-03 21:51:22',2,'2006-02-15 21:30:53'),(9960,'2005-07-31 16:05:52',1022,569,'2005-08-05 14:15:52',2,'2006-02-15 21:30:53'),(9961,'2005-07-31 16:07:50',1856,40,'2005-08-07 18:37:50',2,'2006-02-15 21:30:53'),(9962,'2005-07-31 16:10:36',1951,576,'2005-08-02 17:09:36',1,'2006-02-15 21:30:53'),(9963,'2005-07-31 16:16:46',1609,573,'2005-08-02 22:00:46',1,'2006-02-15 21:30:53'),(9964,'2005-07-31 16:17:39',3149,191,'2005-08-03 15:03:39',1,'2006-02-15 21:30:53'),(9965,'2005-07-31 16:19:32',3946,101,'2005-08-05 20:18:32',2,'2006-02-15 21:30:53'),(9966,'2005-07-31 16:26:46',4137,373,'2005-08-03 14:29:46',1,'2006-02-15 21:30:53'),(9967,'2005-07-31 16:31:17',958,537,'2005-08-06 13:52:17',1,'2006-02-15 21:30:53'),(9968,'2005-07-31 16:32:16',2666,363,'2005-08-08 12:23:16',1,'2006-02-15 21:30:53'),(9969,'2005-07-31 16:38:12',938,151,'2005-08-05 11:45:12',2,'2006-02-15 21:30:53'),(9970,'2005-07-31 16:38:24',2846,578,'2005-08-02 12:59:24',2,'2006-02-15 21:30:53'),(9971,'2005-07-31 16:42:16',2674,573,'2005-08-09 18:08:16',2,'2006-02-15 21:30:53'),(9972,'2005-07-31 16:42:43',190,506,'2005-08-02 11:05:43',2,'2006-02-15 21:30:53'),(9973,'2005-07-31 16:49:31',1850,369,'2005-08-03 22:03:31',2,'2006-02-15 21:30:53'),(9974,'2005-07-31 16:51:11',430,503,'2005-08-05 16:04:11',1,'2006-02-15 21:30:53'),(9975,'2005-07-31 16:53:43',2564,40,'2005-08-07 20:13:43',2,'2006-02-15 21:30:53'),(9976,'2005-07-31 16:57:49',4219,579,'2005-08-03 16:33:49',2,'2006-02-15 21:30:53'),(9977,'2005-07-31 16:58:42',2300,363,'2005-08-09 13:34:42',1,'2006-02-15 21:30:53'),(9978,'2005-07-31 16:59:51',2812,427,'2005-08-06 16:48:51',2,'2006-02-15 21:30:53'),(9979,'2005-07-31 17:00:07',646,576,'2005-08-08 20:40:07',1,'2006-02-15 21:30:53'),(9980,'2005-07-31 17:02:00',122,225,'2005-08-08 11:11:00',2,'2006-02-15 21:30:53'),(9981,'2005-07-31 17:08:31',1354,321,'2005-08-01 22:46:31',2,'2006-02-15 21:30:53'),(9982,'2005-07-31 17:09:02',2698,428,'2005-08-02 13:02:02',2,'2006-02-15 21:30:53'),(9983,'2005-07-31 17:09:36',350,129,'2005-08-08 20:26:36',1,'2006-02-15 21:30:53'),(9984,'2005-07-31 17:12:23',433,432,'2005-08-01 21:04:23',2,'2006-02-15 21:30:53'),(9985,'2005-07-31 17:14:47',1831,85,'2005-08-01 12:11:47',2,'2006-02-15 21:30:53'),(9986,'2005-07-31 17:16:50',1242,124,'2005-08-05 18:34:50',2,'2006-02-15 21:30:53'),(9987,'2005-07-31 17:22:35',1619,15,'2005-08-01 21:19:35',2,'2006-02-15 21:30:53'),(9988,'2005-07-31 17:22:36',3844,243,'2005-08-07 18:35:36',2,'2006-02-15 21:30:53'),(9989,'2005-07-31 17:22:39',1713,79,'2005-08-01 18:55:39',1,'2006-02-15 21:30:53'),(9990,'2005-07-31 17:24:21',4481,555,'2005-08-09 17:14:21',2,'2006-02-15 21:30:53'),(9991,'2005-07-31 17:26:27',3662,414,'2005-08-03 17:36:27',1,'2006-02-15 21:30:53'),(9992,'2005-07-31 17:29:48',4242,304,'2005-08-09 13:02:48',2,'2006-02-15 21:30:53'),(9993,'2005-07-31 17:30:20',2503,225,'2005-08-01 20:53:20',2,'2006-02-15 21:30:53'),(9994,'2005-07-31 17:30:31',2155,195,'2005-08-01 11:35:31',1,'2006-02-15 21:30:53'),(9995,'2005-07-31 17:30:47',1978,180,'2005-08-04 12:20:47',2,'2006-02-15 21:30:53'),(9996,'2005-07-31 17:32:03',3271,104,'2005-08-06 16:17:03',2,'2006-02-15 21:30:53'),(9997,'2005-07-31 17:37:30',640,579,'2005-08-02 14:49:30',1,'2006-02-15 21:30:53'),(9998,'2005-07-31 17:40:35',2549,30,'2005-08-04 18:15:35',1,'2006-02-15 21:30:53'),(9999,'2005-07-31 17:40:53',1438,543,'2005-08-01 14:25:53',1,'2006-02-15 21:30:53'),(10000,'2005-07-31 17:41:05',3221,576,'2005-08-02 20:51:05',1,'2006-02-15 21:30:53'),(10001,'2005-07-31 17:46:18',2188,244,'2005-08-07 20:38:18',1,'2006-02-15 21:30:53'),(10002,'2005-07-31 17:48:16',1002,323,'2005-08-06 16:15:16',1,'2006-02-15 21:30:53'),(10003,'2005-07-31 17:48:51',1603,13,'2005-08-02 14:23:51',1,'2006-02-15 21:30:53'),(10004,'2005-07-31 17:51:23',2396,570,'2005-08-03 19:12:23',1,'2006-02-15 21:30:53'),(10005,'2005-07-31 17:53:51',928,454,'2005-08-09 21:39:51',1,'2006-02-15 21:30:53'),(10006,'2005-07-31 17:54:35',2538,470,'2005-08-02 20:40:35',2,'2006-02-15 21:30:53'),(10007,'2005-07-31 17:54:58',293,445,'2005-08-05 17:24:58',2,'2006-02-15 21:30:53'),(10008,'2005-07-31 17:59:36',2589,91,'2005-08-03 22:43:36',2,'2006-02-15 21:30:53'),(10009,'2005-07-31 18:00:28',4441,437,'2005-08-08 22:24:28',2,'2006-02-15 21:30:53'),(10010,'2005-07-31 18:01:36',2655,373,'2005-08-07 20:27:36',2,'2006-02-15 21:30:53'),(10011,'2005-07-31 18:02:41',606,128,'2005-08-08 17:04:41',1,'2006-02-15 21:30:53'),(10012,'2005-07-31 18:06:06',2554,513,'2005-08-09 16:47:06',2,'2006-02-15 21:30:53'),(10013,'2005-07-31 18:08:21',2364,377,'2005-08-08 13:22:21',2,'2006-02-15 21:30:53'),(10014,'2005-07-31 18:10:56',2344,443,'2005-08-02 23:36:56',1,'2006-02-15 21:30:53'),(10015,'2005-07-31 18:11:17',67,153,'2005-08-03 15:48:17',2,'2006-02-15 21:30:53'),(10016,'2005-07-31 18:13:06',2183,478,'2005-08-09 22:11:06',1,'2006-02-15 21:30:53'),(10017,'2005-07-31 18:13:22',1495,424,'2005-08-05 16:03:22',1,'2006-02-15 21:30:53'),(10018,'2005-07-31 18:15:14',3708,481,'2005-08-05 14:44:14',2,'2006-02-15 21:30:53'),(10019,'2005-07-31 18:20:56',2114,536,'2005-08-07 14:25:56',1,'2006-02-15 21:30:53'),(10020,'2005-07-31 18:21:08',302,526,'2005-08-02 14:03:08',2,'2006-02-15 21:30:53'),(10021,'2005-07-31 18:24:39',3235,597,'2005-08-01 19:16:39',1,'2006-02-15 21:30:53'),(10022,'2005-07-31 18:25:30',1900,115,'2005-08-04 13:35:30',1,'2006-02-15 21:30:53'),(10023,'2005-07-31 18:25:51',384,318,'2005-08-09 18:00:51',1,'2006-02-15 21:30:53'),(10024,'2005-07-31 18:26:36',265,129,'2005-08-09 16:16:36',1,'2006-02-15 21:30:53'),(10025,'2005-07-31 18:29:09',475,565,'2005-08-07 14:20:09',2,'2006-02-15 21:30:53'),(10026,'2005-07-31 18:31:51',39,332,'2005-08-03 21:14:51',2,'2006-02-15 21:30:53'),(10027,'2005-07-31 18:33:51',525,287,'2005-08-09 18:40:51',1,'2006-02-15 21:30:53'),(10028,'2005-07-31 18:35:54',2305,323,'2005-08-01 13:01:54',2,'2006-02-15 21:30:53'),(10029,'2005-07-31 18:37:47',505,578,'2005-08-06 14:58:47',2,'2006-02-15 21:30:53'),(10030,'2005-07-31 18:39:36',1392,325,'2005-08-03 15:29:36',2,'2006-02-15 21:30:53'),(10031,'2005-07-31 18:40:15',3048,96,'2005-08-03 14:38:15',1,'2006-02-15 21:30:53'),(10032,'2005-07-31 18:41:55',2331,126,'2005-08-04 22:45:55',1,'2006-02-15 21:30:53'),(10033,'2005-07-31 18:44:29',4480,381,'2005-08-04 19:52:29',1,'2006-02-15 21:30:53'),(10034,'2005-07-31 18:45:30',354,442,'2005-08-04 21:13:30',2,'2006-02-15 21:30:53'),(10035,'2005-07-31 18:46:46',2694,333,'2005-08-04 20:33:46',1,'2006-02-15 21:30:53'),(10036,'2005-07-31 18:47:20',41,491,'2005-08-03 22:53:20',1,'2006-02-15 21:30:53'),(10037,'2005-07-31 18:48:08',438,58,'2005-08-09 19:11:08',2,'2006-02-15 21:30:53'),(10038,'2005-07-31 18:49:12',3727,112,'2005-08-01 18:02:12',1,'2006-02-15 21:30:53'),(10039,'2005-07-31 18:50:40',4391,111,'2005-08-01 18:49:40',2,'2006-02-15 21:30:53'),(10040,'2005-07-31 18:54:15',2281,268,'2005-08-05 17:33:15',2,'2006-02-15 21:30:53'),(10041,'2005-07-31 19:01:02',2994,379,'2005-08-07 21:32:02',1,'2006-02-15 21:30:53'),(10042,'2005-07-31 19:01:25',123,204,'2005-08-06 14:21:25',1,'2006-02-15 21:30:53'),(10043,'2005-07-31 19:02:07',2558,222,'2005-08-07 17:58:07',1,'2006-02-15 21:30:53'),(10044,'2005-07-31 19:02:33',3349,388,'2005-08-05 13:24:33',2,'2006-02-15 21:30:53'),(10045,'2005-07-31 19:04:35',58,118,'2005-08-07 16:53:35',1,'2006-02-15 21:30:53'),(10046,'2005-07-31 19:07:11',4302,50,'2005-08-03 13:25:11',1,'2006-02-15 21:30:53'),(10047,'2005-07-31 19:07:43',4195,244,'2005-08-07 00:20:43',2,'2006-02-15 21:30:53'),(10048,'2005-07-31 19:08:56',3821,267,'2005-08-05 20:15:56',2,'2006-02-15 21:30:53'),(10049,'2005-07-31 19:11:11',854,457,'2005-08-03 22:15:11',1,'2006-02-15 21:30:53'),(10050,'2005-07-31 19:13:29',295,230,'2005-08-06 15:44:29',1,'2006-02-15 21:30:53'),(10051,'2005-07-31 19:14:20',163,74,'2005-08-05 19:45:20',1,'2006-02-15 21:30:53'),(10052,'2005-07-31 19:15:13',3307,39,'2005-08-07 22:47:13',2,'2006-02-15 21:30:53'),(10053,'2005-07-31 19:15:39',4102,223,'2005-08-07 22:32:39',1,'2006-02-15 21:30:53'),(10054,'2005-07-31 19:15:52',2303,598,'2005-08-04 19:54:52',1,'2006-02-15 21:30:53'),(10055,'2005-07-31 19:15:58',2725,336,'2005-08-05 20:23:58',1,'2006-02-15 21:30:53'),(10056,'2005-07-31 19:19:13',281,237,'2005-08-01 16:09:13',2,'2006-02-15 21:30:53'),(10057,'2005-07-31 19:20:18',3485,230,'2005-08-08 17:59:18',2,'2006-02-15 21:30:53'),(10058,'2005-07-31 19:20:21',758,237,'2005-08-04 00:41:21',2,'2006-02-15 21:30:53'),(10059,'2005-07-31 19:20:49',2020,274,'2005-08-03 14:39:49',1,'2006-02-15 21:30:53'),(10060,'2005-07-31 19:23:00',1979,42,'2005-08-08 19:07:00',1,'2006-02-15 21:30:53'),(10061,'2005-07-31 19:23:25',1401,390,'2005-08-04 19:38:25',1,'2006-02-15 21:30:53'),(10062,'2005-07-31 19:24:55',1815,333,'2005-08-03 22:51:55',2,'2006-02-15 21:30:53'),(10063,'2005-07-31 19:25:13',3003,517,'2005-08-09 15:55:13',1,'2006-02-15 21:30:53'),(10064,'2005-07-31 19:27:02',3140,41,'2005-08-06 21:15:02',1,'2006-02-15 21:30:53'),(10065,'2005-07-31 19:27:34',1426,495,'2005-08-01 13:45:34',2,'2006-02-15 21:30:53'),(10066,'2005-07-31 19:30:01',4285,123,'2005-08-01 14:45:01',2,'2006-02-15 21:30:53'),(10067,'2005-07-31 19:37:58',1940,148,'2005-08-04 17:32:58',2,'2006-02-15 21:30:53'),(10068,'2005-07-31 19:39:38',4000,58,'2005-08-05 22:49:38',1,'2006-02-15 21:30:53'),(10069,'2005-07-31 19:43:18',2168,270,'2005-08-06 19:40:18',2,'2006-02-15 21:30:53'),(10070,'2005-07-31 19:46:29',1010,325,'2005-08-03 22:21:29',1,'2006-02-15 21:30:53'),(10071,'2005-07-31 19:49:35',2360,353,'2005-08-03 00:00:35',2,'2006-02-15 21:30:53'),(10072,'2005-07-31 19:50:37',3963,520,'2005-08-03 00:25:37',2,'2006-02-15 21:30:53'),(10073,'2005-07-31 19:53:15',4246,584,'2005-08-05 23:12:15',2,'2006-02-15 21:30:53'),(10074,'2005-07-31 19:57:16',1268,69,'2005-08-04 00:54:16',1,'2006-02-15 21:30:53'),(10075,'2005-07-31 19:58:42',2037,469,'2005-08-08 19:49:42',1,'2006-02-15 21:30:53'),(10076,'2005-07-31 20:00:34',1117,555,'2005-08-10 00:37:34',2,'2006-02-15 21:30:53'),(10077,'2005-07-31 20:01:06',2333,19,'2005-08-09 16:07:06',1,'2006-02-15 21:30:53'),(10078,'2005-07-31 20:02:02',3198,151,'2005-08-04 00:45:02',1,'2006-02-15 21:30:53'),(10079,'2005-07-31 20:05:45',4541,486,'2005-08-04 16:25:45',2,'2006-02-15 21:30:53'),(10080,'2005-07-31 20:07:10',4355,62,'2005-08-04 23:07:10',2,'2006-02-15 21:30:53'),(10081,'2005-07-31 20:07:44',3183,443,'2005-08-06 20:04:44',1,'2006-02-15 21:30:53'),(10082,'2005-07-31 20:09:32',1275,76,'2005-08-01 15:41:32',2,'2006-02-15 21:30:53'),(10083,'2005-07-31 20:10:19',2585,449,'2005-08-06 23:18:19',1,'2006-02-15 21:30:53'),(10084,'2005-07-31 20:11:29',524,528,'2005-08-06 22:28:29',2,'2006-02-15 21:30:53'),(10085,'2005-07-31 20:12:02',2556,392,'2005-08-03 00:03:02',2,'2006-02-15 21:30:53'),(10086,'2005-07-31 20:14:08',2853,205,'2005-08-07 01:33:08',2,'2006-02-15 21:30:53'),(10087,'2005-07-31 20:15:22',1393,245,'2005-08-07 01:33:22',1,'2006-02-15 21:30:53'),(10088,'2005-07-31 20:16:21',4293,46,'2005-08-01 22:47:21',2,'2006-02-15 21:30:53'),(10089,'2005-07-31 20:17:09',248,160,'2005-08-01 19:14:09',2,'2006-02-15 21:30:53'),(10090,'2005-07-31 20:22:01',4023,533,'2005-08-04 17:30:01',1,'2006-02-15 21:30:53'),(10091,'2005-07-31 20:23:13',1878,135,'2005-08-02 21:58:13',2,'2006-02-15 21:30:53'),(10092,'2005-07-31 20:28:09',4151,364,'2005-08-01 21:37:09',1,'2006-02-15 21:30:53'),(10093,'2005-07-31 20:30:32',3943,162,'2005-08-04 00:04:32',2,'2006-02-15 21:30:53'),(10094,'2005-07-31 20:31:18',2865,596,'2005-08-06 18:31:18',2,'2006-02-15 21:30:53'),(10095,'2005-07-31 20:38:35',4062,370,'2005-08-02 02:33:35',1,'2006-02-15 21:30:53'),(10096,'2005-07-31 20:38:58',3606,290,'2005-08-06 02:34:58',1,'2006-02-15 21:30:53'),(10097,'2005-07-31 20:39:38',784,519,'2005-08-08 22:22:38',1,'2006-02-15 21:30:53'),(10098,'2005-07-31 20:41:17',1324,155,'2005-08-02 00:06:17',2,'2006-02-15 21:30:53'),(10099,'2005-07-31 20:47:14',1960,220,'2005-08-02 17:25:14',1,'2006-02-15 21:30:53'),(10100,'2005-07-31 20:47:18',4050,330,'2005-08-03 16:58:18',2,'2006-02-15 21:30:53'),(10101,'2005-07-31 20:47:29',2513,119,'2005-08-04 21:28:29',1,'2006-02-15 21:30:53'),(10102,'2005-07-31 20:49:10',4078,170,'2005-08-08 20:15:10',1,'2006-02-15 21:30:53'),(10103,'2005-07-31 20:49:13',77,25,'2005-08-05 15:55:13',2,'2006-02-15 21:30:53'),(10104,'2005-07-31 20:49:14',3358,186,'2005-08-05 01:11:14',2,'2006-02-15 21:30:53'),(10105,'2005-07-31 20:54:20',112,286,'2005-08-09 17:45:20',1,'2006-02-15 21:30:53'),(10106,'2005-07-31 21:00:47',3444,556,'2005-08-02 20:11:47',2,'2006-02-15 21:30:53'),(10107,'2005-07-31 21:01:46',1326,414,'2005-08-09 01:33:46',2,'2006-02-15 21:30:53'),(10108,'2005-07-31 21:02:14',3703,326,'2005-08-01 18:28:14',1,'2006-02-15 21:30:53'),(10109,'2005-07-31 21:04:49',2852,403,'2005-08-08 19:25:49',1,'2006-02-15 21:30:53'),(10110,'2005-07-31 21:06:12',4081,138,'2005-08-03 02:03:12',2,'2006-02-15 21:30:53'),(10111,'2005-07-31 21:08:33',3474,38,'2005-08-06 02:58:33',2,'2006-02-15 21:30:53'),(10112,'2005-07-31 21:08:56',2643,198,'2005-08-01 23:35:56',2,'2006-02-15 21:30:53'),(10113,'2005-07-31 21:10:03',3974,461,'2005-08-02 21:13:03',2,'2006-02-15 21:30:53'),(10114,'2005-07-31 21:12:58',3881,218,'2005-08-02 19:45:58',2,'2006-02-15 21:30:53'),(10115,'2005-07-31 21:13:47',2731,68,'2005-08-10 00:44:47',1,'2006-02-15 21:30:53'),(10116,'2005-07-31 21:14:02',738,28,'2005-08-03 01:48:02',2,'2006-02-15 21:30:53'),(10117,'2005-07-31 21:14:31',1894,459,'2005-08-01 15:59:31',2,'2006-02-15 21:30:53'),(10118,'2005-07-31 21:16:31',1209,143,'2005-08-03 02:32:31',1,'2006-02-15 21:30:53'),(10119,'2005-07-31 21:20:59',54,351,'2005-08-02 23:14:59',2,'2006-02-15 21:30:53'),(10120,'2005-07-31 21:24:24',1709,396,'2005-08-03 17:44:24',2,'2006-02-15 21:30:53'),(10121,'2005-07-31 21:24:53',2969,425,'2005-08-03 22:24:53',1,'2006-02-15 21:30:53'),(10122,'2005-07-31 21:29:28',4229,196,'2005-08-09 00:04:28',1,'2006-02-15 21:30:53'),(10123,'2005-07-31 21:30:46',4564,487,'2005-08-06 16:28:46',1,'2006-02-15 21:30:53'),(10124,'2005-07-31 21:31:49',1956,396,'2005-08-04 00:06:49',1,'2006-02-15 21:30:53'),(10125,'2005-07-31 21:33:03',493,178,'2005-08-01 19:10:03',1,'2006-02-15 21:30:53'),(10126,'2005-07-31 21:36:07',3,39,'2005-08-03 23:59:07',1,'2006-02-15 21:30:53'),(10127,'2005-07-31 21:39:48',717,478,'2005-08-06 00:10:48',1,'2006-02-15 21:30:53'),(10128,'2005-07-31 21:40:04',2559,508,'2005-08-02 02:21:04',1,'2006-02-15 21:30:53'),(10129,'2005-07-31 21:41:35',2848,564,'2005-08-05 17:05:35',1,'2006-02-15 21:30:53'),(10130,'2005-07-31 21:44:30',3964,95,'2005-08-04 17:06:30',1,'2006-02-15 21:30:53'),(10131,'2005-07-31 21:45:28',4169,510,'2005-08-04 00:19:28',2,'2006-02-15 21:30:53'),(10132,'2005-07-31 21:50:24',3934,23,'2005-08-07 23:37:24',2,'2006-02-15 21:30:53'),(10133,'2005-07-31 21:55:07',614,234,'2005-08-08 23:04:07',1,'2006-02-15 21:30:53'),(10134,'2005-07-31 21:56:10',4483,311,'2005-08-06 21:20:10',1,'2006-02-15 21:30:53'),(10135,'2005-07-31 21:57:32',4193,307,'2005-08-05 22:23:32',1,'2006-02-15 21:30:53'),(10136,'2005-07-31 21:58:56',3142,2,'2005-08-03 19:44:56',1,'2006-02-15 21:30:53'),(10137,'2005-07-31 22:01:41',612,236,'2005-08-07 22:24:41',1,'2006-02-15 21:30:53'),(10138,'2005-07-31 22:02:09',179,225,'2005-08-07 20:46:09',2,'2006-02-15 21:30:53'),(10139,'2005-07-31 22:02:20',407,441,'2005-08-04 02:09:20',1,'2006-02-15 21:30:53'),(10140,'2005-07-31 22:03:20',2494,550,'2005-08-07 23:15:20',2,'2006-02-15 21:30:53'),(10141,'2005-07-31 22:08:29',8,8,'2005-08-06 16:59:29',1,'2006-02-15 21:30:53'),(10142,'2005-07-31 22:10:54',1839,257,'2005-08-09 19:04:54',2,'2006-02-15 21:30:53'),(10143,'2005-07-31 22:11:43',2139,271,'2005-08-09 17:48:43',2,'2006-02-15 21:30:53'),(10144,'2005-07-31 22:13:52',3011,49,'2005-08-05 19:27:52',1,'2006-02-15 21:30:53'),(10145,'2005-07-31 22:15:13',2511,361,'2005-08-06 23:26:13',1,'2006-02-15 21:30:53'),(10146,'2005-07-31 22:17:56',1721,559,'2005-08-02 21:27:56',1,'2006-02-15 21:30:53'),(10147,'2005-07-31 22:18:43',1351,198,'2005-08-02 23:08:43',2,'2006-02-15 21:30:53'),(10148,'2005-07-31 22:19:16',1381,63,'2005-08-05 00:15:16',2,'2006-02-15 21:30:53'),(10149,'2005-07-31 22:20:46',890,276,'2005-08-07 23:12:46',2,'2006-02-15 21:30:53'),(10150,'2005-07-31 22:22:00',2328,419,'2005-08-05 01:17:00',2,'2006-02-15 21:30:53'),(10151,'2005-07-31 22:22:37',4442,361,'2005-08-01 22:20:37',1,'2006-02-15 21:30:53'),(10152,'2005-07-31 22:28:05',1114,244,'2005-08-08 22:39:05',2,'2006-02-15 21:30:53'),(10153,'2005-07-31 22:30:10',2945,297,'2005-08-06 02:32:10',2,'2006-02-15 21:30:53'),(10154,'2005-07-31 22:30:49',2745,149,'2005-08-07 03:05:49',2,'2006-02-15 21:30:53'),(10155,'2005-07-31 22:31:43',3176,235,'2005-08-07 02:43:43',1,'2006-02-15 21:30:53'),(10156,'2005-07-31 22:36:00',141,179,'2005-08-02 00:03:00',2,'2006-02-15 21:30:53'),(10157,'2005-07-31 22:38:48',2960,232,'2005-08-01 21:38:48',1,'2006-02-15 21:30:53'),(10158,'2005-07-31 22:40:31',1626,393,'2005-08-08 18:25:31',2,'2006-02-15 21:30:53'),(10159,'2005-07-31 22:54:30',1174,515,'2005-08-03 00:43:30',2,'2006-02-15 21:30:53'),(10160,'2005-07-31 23:07:40',863,295,'2005-08-05 23:34:40',1,'2006-02-15 21:30:53'),(10161,'2005-07-31 23:09:41',2651,120,'2005-08-02 20:46:41',2,'2006-02-15 21:30:53'),(10162,'2005-07-31 23:11:01',1327,475,'2005-08-07 01:52:01',2,'2006-02-15 21:30:53'),(10163,'2005-07-31 23:12:34',2811,425,'2005-08-01 22:47:34',2,'2006-02-15 21:30:53'),(10164,'2005-07-31 23:17:57',1405,89,'2005-08-05 19:43:57',1,'2006-02-15 21:30:53'),(10165,'2005-07-31 23:21:23',3476,50,'2005-08-06 18:06:23',1,'2006-02-15 21:30:53'),(10166,'2005-07-31 23:22:20',4304,484,'2005-08-07 18:06:20',2,'2006-02-15 21:30:53'),(10167,'2005-07-31 23:24:31',1222,129,'2005-08-06 17:42:31',2,'2006-02-15 21:30:53'),(10168,'2005-07-31 23:25:24',4548,570,'2005-08-02 19:03:24',1,'2006-02-15 21:30:53'),(10169,'2005-07-31 23:27:13',2675,57,'2005-08-05 20:32:13',2,'2006-02-15 21:30:53'),(10170,'2005-07-31 23:27:31',804,41,'2005-08-08 04:53:31',2,'2006-02-15 21:30:53'),(10171,'2005-07-31 23:29:05',1367,401,'2005-08-03 19:39:05',1,'2006-02-15 21:30:53'),(10172,'2005-07-31 23:29:51',2506,426,'2005-08-09 01:57:51',1,'2006-02-15 21:30:53'),(10173,'2005-07-31 23:36:59',2527,326,'2005-08-08 20:20:59',2,'2006-02-15 21:30:53'),(10174,'2005-07-31 23:40:08',2459,359,'2005-08-06 21:08:08',2,'2006-02-15 21:30:53'),(10175,'2005-07-31 23:40:11',3672,137,'2005-08-09 02:22:11',1,'2006-02-15 21:30:53'),(10176,'2005-07-31 23:40:35',1181,19,'2005-08-09 00:46:35',2,'2006-02-15 21:30:53'),(10177,'2005-07-31 23:42:33',2242,279,'2005-08-03 01:30:33',2,'2006-02-15 21:30:53'),(10178,'2005-07-31 23:43:04',1582,491,'2005-08-03 00:43:04',1,'2006-02-15 21:30:53'),(10179,'2005-07-31 23:49:54',2136,131,'2005-08-01 20:46:54',2,'2006-02-15 21:30:53'),(10180,'2005-07-31 23:57:43',757,50,'2005-08-09 04:04:43',2,'2006-02-15 21:30:53'),(10181,'2005-08-01 00:00:44',3111,113,'2005-08-04 19:33:44',1,'2006-02-15 21:30:53'),(10182,'2005-08-01 00:08:01',4112,578,'2005-08-09 18:14:01',2,'2006-02-15 21:30:53'),(10183,'2005-08-01 00:08:01',4319,377,'2005-08-09 20:41:01',1,'2006-02-15 21:30:53'),(10184,'2005-08-01 00:09:33',2785,77,'2005-08-05 04:12:33',2,'2006-02-15 21:30:53'),(10185,'2005-08-01 00:12:11',1266,64,'2005-08-03 03:03:11',1,'2006-02-15 21:30:53'),(10186,'2005-08-01 00:12:36',4563,294,'2005-08-07 05:08:36',1,'2006-02-15 21:30:53'),(10187,'2005-08-01 00:15:49',1629,400,'2005-08-05 01:00:49',2,'2006-02-15 21:30:53'),(10188,'2005-08-01 00:19:41',1221,331,'2005-08-08 00:19:41',2,'2006-02-15 21:30:53'),(10189,'2005-08-01 00:25:00',616,509,'2005-08-03 06:01:00',2,'2006-02-15 21:30:53'),(10190,'2005-08-01 00:27:53',4411,138,'2005-08-01 20:32:53',2,'2006-02-15 21:30:53'),(10191,'2005-08-01 00:28:38',1131,196,'2005-08-06 02:23:38',1,'2006-02-15 21:30:53'),(10192,'2005-08-01 00:33:00',1632,569,'2005-08-05 03:37:00',2,'2006-02-15 21:30:53'),(10193,'2005-08-01 00:33:27',2036,358,'2005-08-07 20:15:27',1,'2006-02-15 21:30:53'),(10194,'2005-08-01 00:33:52',1447,290,'2005-08-06 04:50:52',2,'2006-02-15 21:30:53'),(10195,'2005-08-01 00:34:42',2691,396,'2005-08-08 05:04:42',2,'2006-02-15 21:30:53'),(10196,'2005-08-01 00:34:51',3070,199,'2005-08-05 03:43:51',1,'2006-02-15 21:30:53'),(10197,'2005-08-01 00:35:25',1186,127,'2005-08-07 06:04:25',2,'2006-02-15 21:30:53'),(10198,'2005-08-01 00:36:15',1297,366,'2005-08-07 06:18:15',2,'2006-02-15 21:30:53'),(10199,'2005-08-01 00:38:55',3665,526,'2005-08-05 03:41:55',1,'2006-02-15 21:30:53'),(10200,'2005-08-01 00:39:05',580,421,'2005-08-05 01:07:05',1,'2006-02-15 21:30:53'),(10201,'2005-08-01 00:42:18',3649,299,'2005-08-08 20:49:18',2,'2006-02-15 21:30:53'),(10202,'2005-08-01 00:43:18',1099,306,'2005-08-08 23:26:18',1,'2006-02-15 21:30:53'),(10203,'2005-08-01 00:45:27',1096,157,'2005-08-04 22:45:27',2,'2006-02-15 21:30:53'),(10204,'2005-08-01 00:47:39',764,572,'2005-08-05 01:11:39',1,'2006-02-15 21:30:53'),(10205,'2005-08-01 00:48:24',33,87,'2005-08-06 23:53:24',1,'2006-02-15 21:30:53'),(10206,'2005-08-01 00:52:40',4479,90,'2005-08-10 02:36:40',2,'2006-02-15 21:30:53'),(10207,'2005-08-01 00:53:01',2925,334,'2005-08-05 05:51:01',2,'2006-02-15 21:30:53'),(10208,'2005-08-01 00:54:51',3324,246,'2005-08-04 22:39:51',2,'2006-02-15 21:30:53'),(10209,'2005-08-01 00:56:47',2429,303,'2005-08-03 19:58:47',2,'2006-02-15 21:30:53'),(10210,'2005-08-01 00:58:52',49,391,'2005-08-10 01:16:52',1,'2006-02-15 21:30:53'),(10211,'2005-08-01 01:01:16',810,530,'2005-08-10 01:31:16',1,'2006-02-15 21:30:53'),(10212,'2005-08-01 01:01:35',3728,324,'2005-08-02 23:02:35',1,'2006-02-15 21:30:53'),(10213,'2005-08-01 01:03:18',1462,106,'2005-08-09 20:07:18',1,'2006-02-15 21:30:53'),(10214,'2005-08-01 01:04:15',648,597,'2005-08-01 19:31:15',2,'2006-02-15 21:30:53'),(10215,'2005-08-01 01:04:28',838,345,'2005-08-09 21:43:28',2,'2006-02-15 21:30:53'),(10216,'2005-08-01 01:06:27',3603,436,'2005-08-08 22:41:27',2,'2006-02-15 21:30:53'),(10217,'2005-08-01 01:07:27',1193,389,'2005-08-09 00:42:27',1,'2006-02-15 21:30:53'),(10218,'2005-08-01 01:09:44',3886,101,'2005-08-05 20:08:44',1,'2006-02-15 21:30:53'),(10219,'2005-08-01 01:10:33',2262,505,'2005-08-10 02:45:33',2,'2006-02-15 21:30:53'),(10220,'2005-08-01 01:13:22',3920,294,'2005-08-04 22:57:22',2,'2006-02-15 21:30:53'),(10221,'2005-08-01 01:16:50',3051,373,'2005-08-03 05:35:50',2,'2006-02-15 21:30:53'),(10222,'2005-08-01 01:17:42',1214,295,'2005-08-08 02:45:42',1,'2006-02-15 21:30:53'),(10223,'2005-08-01 01:23:15',1370,522,'2005-08-02 19:39:15',1,'2006-02-15 21:30:53'),(10224,'2005-08-01 01:31:56',1443,587,'2005-08-05 21:21:56',2,'2006-02-15 21:30:53'),(10225,'2005-08-01 01:38:40',3131,498,'2005-08-06 20:00:40',1,'2006-02-15 21:30:53'),(10226,'2005-08-01 01:40:04',3067,107,'2005-08-08 01:02:04',1,'2006-02-15 21:30:53'),(10227,'2005-08-01 01:42:22',872,571,'2005-08-09 23:45:22',2,'2006-02-15 21:30:53'),(10228,'2005-08-01 01:43:18',1742,106,'2005-08-06 22:10:18',2,'2006-02-15 21:30:53'),(10229,'2005-08-01 01:45:26',3459,175,'2005-08-10 06:21:26',1,'2006-02-15 21:30:53'),(10230,'2005-08-01 01:49:36',76,398,'2005-08-05 01:29:36',2,'2006-02-15 21:30:53'),(10231,'2005-08-01 01:50:49',1056,511,'2005-08-06 03:12:49',1,'2006-02-15 21:30:53'),(10232,'2005-08-01 01:50:55',586,512,'2005-08-03 04:12:55',1,'2006-02-15 21:30:53'),(10233,'2005-08-01 01:54:23',4571,459,'2005-08-10 00:23:23',2,'2006-02-15 21:30:53'),(10234,'2005-08-01 01:56:20',1641,207,'2005-08-09 01:51:20',2,'2006-02-15 21:30:53'),(10235,'2005-08-01 01:57:48',2850,30,'2005-08-10 07:38:48',2,'2006-02-15 21:30:53'),(10236,'2005-08-01 02:05:34',3754,470,'2005-08-01 23:40:34',1,'2006-02-15 21:30:53'),(10237,'2005-08-01 02:07:32',432,313,'2005-08-07 03:54:32',1,'2006-02-15 21:30:53'),(10238,'2005-08-01 02:08:05',561,192,'2005-08-02 01:52:05',1,'2006-02-15 21:30:53'),(10239,'2005-08-01 02:09:22',1232,467,'2005-08-04 01:35:22',2,'2006-02-15 21:30:53'),(10240,'2005-08-01 02:09:33',4494,109,'2005-08-07 02:22:33',2,'2006-02-15 21:30:53'),(10241,'2005-08-01 02:12:25',1526,161,'2005-08-08 00:37:25',1,'2006-02-15 21:30:53'),(10242,'2005-08-01 02:18:12',1825,342,'2005-08-02 22:32:12',2,'2006-02-15 21:30:53'),(10243,'2005-08-01 02:18:46',2236,132,'2005-08-06 21:45:46',1,'2006-02-15 21:30:53'),(10244,'2005-08-01 02:20:01',567,51,'2005-08-06 23:06:01',2,'2006-02-15 21:30:53'),(10245,'2005-08-01 02:24:09',2880,163,'2005-08-02 02:31:09',1,'2006-02-15 21:30:53'),(10246,'2005-08-01 02:29:50',3598,261,'2005-08-09 01:17:50',2,'2006-02-15 21:30:53'),(10247,'2005-08-01 02:34:06',4035,189,'2005-08-09 02:33:06',1,'2006-02-15 21:30:53'),(10248,'2005-08-01 02:35:28',2146,298,'2005-08-08 02:24:28',2,'2006-02-15 21:30:53'),(10249,'2005-08-01 02:35:39',135,437,'2005-08-06 06:50:39',1,'2006-02-15 21:30:53'),(10250,'2005-08-01 02:38:42',3706,116,'2005-08-07 03:59:42',2,'2006-02-15 21:30:53'),(10251,'2005-08-01 02:39:12',2986,39,'2005-08-06 03:51:12',1,'2006-02-15 21:30:53'),(10252,'2005-08-01 02:39:39',2380,86,'2005-08-10 00:40:39',2,'2006-02-15 21:30:53'),(10253,'2005-08-01 02:39:49',1406,101,'2005-08-08 04:28:49',2,'2006-02-15 21:30:53'),(10254,'2005-08-01 02:42:03',2238,416,'2005-08-05 23:31:03',1,'2006-02-15 21:30:53'),(10255,'2005-08-01 02:46:13',4558,459,'2005-08-03 05:54:13',1,'2006-02-15 21:30:53'),(10256,'2005-08-01 02:47:11',780,58,'2005-08-05 05:21:11',2,'2006-02-15 21:30:53'),(10257,'2005-08-01 02:49:43',2403,543,'2005-08-04 04:45:43',2,'2006-02-15 21:30:53'),(10258,'2005-08-01 02:51:09',2062,469,'2005-08-08 23:57:09',2,'2006-02-15 21:30:53'),(10259,'2005-08-01 02:52:05',1881,566,'2005-08-03 20:54:05',1,'2006-02-15 21:30:53'),(10260,'2005-08-01 02:58:07',2864,461,'2005-08-05 02:06:07',2,'2006-02-15 21:30:53'),(10261,'2005-08-01 02:58:27',2346,50,'2005-08-01 21:55:27',2,'2006-02-15 21:30:53'),(10262,'2005-08-01 03:01:26',3842,181,'2005-08-08 08:03:26',2,'2006-02-15 21:30:53'),(10263,'2005-08-01 03:02:48',2420,415,'2005-08-08 02:16:48',2,'2006-02-15 21:30:53'),(10264,'2005-08-01 03:03:12',1374,297,'2005-08-08 00:34:12',2,'2006-02-15 21:30:53'),(10265,'2005-08-01 03:05:04',3338,510,'2005-08-08 08:09:04',1,'2006-02-15 21:30:53'),(10266,'2005-08-01 03:05:59',476,49,'2005-08-06 06:23:59',1,'2006-02-15 21:30:53'),(10267,'2005-08-01 03:07:26',3883,72,'2005-08-07 22:49:26',1,'2006-02-15 21:30:53'),(10268,'2005-08-01 03:08:56',2755,138,'2005-08-08 02:41:56',1,'2006-02-15 21:30:53'),(10269,'2005-08-01 03:09:26',2537,39,'2005-08-02 00:01:26',1,'2006-02-15 21:30:53'),(10270,'2005-08-01 03:10:24',2025,168,'2005-08-07 03:04:24',2,'2006-02-15 21:30:53'),(10271,'2005-08-01 03:13:39',3692,6,'2005-08-07 23:40:39',1,'2006-02-15 21:30:53'),(10272,'2005-08-01 03:14:34',128,273,'2005-08-10 05:56:34',2,'2006-02-15 21:30:53'),(10273,'2005-08-01 03:14:47',1458,212,'2005-08-07 03:59:47',1,'2006-02-15 21:30:53'),(10274,'2005-08-01 03:16:51',2916,375,'2005-08-04 22:22:51',2,'2006-02-15 21:30:53'),(10275,'2005-08-01 03:20:08',669,463,'2005-08-08 06:48:08',1,'2006-02-15 21:30:53'),(10276,'2005-08-01 03:22:23',2201,48,'2005-08-03 07:59:23',1,'2006-02-15 21:30:53'),(10277,'2005-08-01 03:22:41',1472,176,'2005-08-05 05:07:41',1,'2006-02-15 21:30:53'),(10278,'2005-08-01 03:25:27',2497,154,'2005-08-08 07:52:27',1,'2006-02-15 21:30:53'),(10279,'2005-08-01 03:26:44',3794,247,'2005-08-07 22:35:44',2,'2006-02-15 21:30:53'),(10280,'2005-08-01 03:27:15',1457,542,'2005-08-07 23:01:15',2,'2006-02-15 21:30:53'),(10281,'2005-08-01 03:28:33',1047,549,'2005-08-02 05:06:33',1,'2006-02-15 21:30:53'),(10282,'2005-08-01 03:29:10',617,472,'2005-08-07 06:16:10',1,'2006-02-15 21:30:53'),(10283,'2005-08-01 03:29:45',4237,462,'2005-08-07 04:19:45',1,'2006-02-15 21:30:53'),(10284,'2005-08-01 03:33:19',2879,20,'2005-08-09 07:58:19',1,'2006-02-15 21:30:53'),(10285,'2005-08-01 03:35:11',4523,167,'2005-08-05 03:55:11',2,'2006-02-15 21:30:53'),(10286,'2005-08-01 03:35:58',498,532,'2005-08-10 05:17:58',2,'2006-02-15 21:30:53'),(10287,'2005-08-01 03:37:01',125,141,'2005-08-05 23:03:01',2,'2006-02-15 21:30:53'),(10288,'2005-08-01 03:38:42',572,63,'2005-08-06 04:34:42',1,'2006-02-15 21:30:53'),(10289,'2005-08-01 03:39:48',3153,566,'2005-08-08 02:56:48',1,'2006-02-15 21:30:53'),(10290,'2005-08-01 03:39:50',4542,364,'2005-08-08 22:29:50',2,'2006-02-15 21:30:53'),(10291,'2005-08-01 03:39:57',2056,420,'2005-08-05 02:05:57',2,'2006-02-15 21:30:53'),(10292,'2005-08-01 03:42:40',2562,340,'2005-08-01 23:36:40',2,'2006-02-15 21:30:53'),(10293,'2005-08-01 03:44:26',1570,258,'2005-08-05 04:16:26',2,'2006-02-15 21:30:53'),(10294,'2005-08-01 03:48:12',528,28,'2005-08-09 01:19:12',2,'2006-02-15 21:30:53'),(10295,'2005-08-01 03:53:49',2355,123,'2005-08-10 03:56:49',1,'2006-02-15 21:30:53'),(10296,'2005-08-01 04:04:37',1958,573,'2005-08-01 23:59:37',1,'2006-02-15 21:30:53'),(10297,'2005-08-01 04:05:04',2795,289,'2005-08-09 06:08:04',1,'2006-02-15 21:30:53'),(10298,'2005-08-01 04:06:03',1383,323,'2005-08-05 05:59:03',2,'2006-02-15 21:30:53'),(10299,'2005-08-01 04:08:04',1125,369,'2005-08-04 08:11:04',1,'2006-02-15 21:30:53'),(10300,'2005-08-01 04:08:11',4334,207,'2005-08-04 00:24:11',1,'2006-02-15 21:30:53'),(10301,'2005-08-01 04:09:37',3072,583,'2005-08-04 23:14:37',2,'2006-02-15 21:30:53'),(10302,'2005-08-01 04:12:08',1043,144,'2005-08-01 22:12:08',2,'2006-02-15 21:30:53'),(10303,'2005-08-01 04:13:33',936,479,'2005-08-06 02:16:33',2,'2006-02-15 21:30:53'),(10304,'2005-08-01 04:14:12',1538,346,'2005-08-07 22:38:12',1,'2006-02-15 21:30:53'),(10305,'2005-08-01 04:16:16',2946,160,'2005-08-07 23:47:16',1,'2006-02-15 21:30:53'),(10306,'2005-08-01 04:19:18',2819,541,'2005-08-09 02:16:18',1,'2006-02-15 21:30:53'),(10307,'2005-08-01 04:21:54',975,332,'2005-08-04 09:24:54',2,'2006-02-15 21:30:53'),(10308,'2005-08-01 04:22:49',588,240,'2005-08-09 04:39:49',2,'2006-02-15 21:30:53'),(10309,'2005-08-01 04:24:18',1505,156,'2005-08-09 08:32:18',2,'2006-02-15 21:30:53'),(10310,'2005-08-01 04:24:47',9,271,'2005-08-04 05:36:47',2,'2006-02-15 21:30:53'),(10311,'2005-08-01 04:27:59',4211,151,'2005-08-02 08:51:59',1,'2006-02-15 21:30:53'),(10312,'2005-08-01 04:29:06',4389,172,'2005-08-08 04:52:06',2,'2006-02-15 21:30:53'),(10313,'2005-08-01 04:29:29',1194,80,'2005-08-04 08:12:29',2,'2006-02-15 21:30:53'),(10314,'2005-08-01 04:31:18',1548,252,'2005-08-06 01:49:18',2,'2006-02-15 21:30:53'),(10315,'2005-08-01 04:34:45',895,258,'2005-08-07 05:27:45',1,'2006-02-15 21:30:53'),(10316,'2005-08-01 04:34:57',1907,469,'2005-08-06 02:34:57',2,'2006-02-15 21:30:53'),(10317,'2005-08-01 04:35:34',110,561,'2005-08-06 02:27:34',2,'2006-02-15 21:30:53'),(10318,'2005-08-01 04:36:53',885,548,'2005-08-04 00:54:53',1,'2006-02-15 21:30:53'),(10319,'2005-08-01 04:37:19',3120,394,'2005-08-05 03:18:19',2,'2006-02-15 21:30:53'),(10320,'2005-08-01 04:39:26',2298,152,'2005-08-08 06:01:26',1,'2006-02-15 21:30:53'),(10321,'2005-08-01 04:40:02',4512,177,'2005-08-03 04:18:02',1,'2006-02-15 21:30:53'),(10322,'2005-08-01 04:44:13',1543,535,'2005-08-08 00:20:13',2,'2006-02-15 21:30:53'),(10323,'2005-08-01 04:44:58',3539,577,'2005-08-06 07:56:58',1,'2006-02-15 21:30:53'),(10324,'2005-08-01 04:49:06',523,25,'2005-08-09 08:04:06',2,'2006-02-15 21:30:53'),(10325,'2005-08-01 04:52:12',2749,258,'2005-08-08 09:31:12',1,'2006-02-15 21:30:53'),(10326,'2005-08-01 04:55:34',3856,325,'2005-08-02 05:18:34',1,'2006-02-15 21:30:53'),(10327,'2005-08-01 04:55:35',328,382,'2005-08-07 08:17:35',2,'2006-02-15 21:30:53'),(10328,'2005-08-01 04:56:10',1191,85,'2005-08-01 23:22:10',2,'2006-02-15 21:30:53'),(10329,'2005-08-01 04:56:13',2289,302,'2005-08-03 03:54:13',1,'2006-02-15 21:30:53'),(10330,'2005-08-01 04:57:04',1580,7,'2005-08-07 23:00:04',2,'2006-02-15 21:30:53'),(10331,'2005-08-01 04:57:14',4152,575,'2005-08-07 06:46:14',1,'2006-02-15 21:30:53'),(10332,'2005-08-01 04:57:32',642,258,'2005-08-10 02:42:32',2,'2006-02-15 21:30:53'),(10333,'2005-08-01 04:58:32',3955,499,'2005-08-04 00:51:32',2,'2006-02-15 21:30:53'),(10334,'2005-08-01 04:58:42',3387,445,'2005-08-09 02:00:42',1,'2006-02-15 21:30:53'),(10335,'2005-08-01 04:59:30',323,33,'2005-08-05 02:26:30',1,'2006-02-15 21:30:53'),(10336,'2005-08-01 04:59:53',1091,370,'2005-08-03 08:05:53',2,'2006-02-15 21:30:53'),(10337,'2005-08-01 05:01:46',307,451,'2005-08-10 02:41:46',1,'2006-02-15 21:30:53'),(10338,'2005-08-01 05:03:03',1295,339,'2005-08-09 05:13:03',2,'2006-02-15 21:30:53'),(10339,'2005-08-01 05:05:50',615,363,'2005-08-10 07:15:50',2,'2006-02-15 21:30:53'),(10340,'2005-08-01 05:07:03',3608,568,'2005-08-06 01:03:03',1,'2006-02-15 21:30:53'),(10341,'2005-08-01 05:10:02',3304,445,'2005-08-07 11:01:02',1,'2006-02-15 21:30:53'),(10342,'2005-08-01 05:11:11',332,140,'2005-08-10 00:27:11',1,'2006-02-15 21:30:53'),(10343,'2005-08-01 05:15:47',2627,267,'2005-08-02 04:48:47',2,'2006-02-15 21:30:53'),(10344,'2005-08-01 05:18:23',3673,367,'2005-08-06 05:20:23',1,'2006-02-15 21:30:53'),(10345,'2005-08-01 05:18:56',3985,42,'2005-08-04 01:34:56',2,'2006-02-15 21:30:53'),(10346,'2005-08-01 05:19:23',4192,476,'2005-08-06 01:00:23',1,'2006-02-15 21:30:53'),(10347,'2005-08-01 05:20:03',953,574,'2005-08-04 10:03:03',1,'2006-02-15 21:30:53'),(10348,'2005-08-01 05:23:00',2076,14,'2005-08-04 01:12:00',2,'2006-02-15 21:30:53'),(10349,'2005-08-01 05:27:13',114,295,'2005-08-08 10:15:13',1,'2006-02-15 21:30:53'),(10350,'2005-08-01 05:30:05',2067,78,'2005-08-05 09:59:05',1,'2006-02-15 21:30:53'),(10351,'2005-08-01 05:32:13',3725,173,'2005-08-08 09:48:13',1,'2006-02-15 21:30:53'),(10352,'2005-08-01 05:44:36',1288,564,'2005-08-05 07:15:36',2,'2006-02-15 21:30:53'),(10353,'2005-08-01 05:46:33',1446,535,'2005-08-08 09:14:33',1,'2006-02-15 21:30:53'),(10354,'2005-08-01 05:47:10',1680,416,'2005-08-06 09:04:10',1,'2006-02-15 21:30:53'),(10355,'2005-08-01 05:47:37',2158,161,'2005-08-02 09:28:37',2,'2006-02-15 21:30:53'),(10356,'2005-08-01 05:49:17',313,56,'2005-08-10 05:57:17',1,'2006-02-15 21:30:53'),(10357,'2005-08-01 05:49:49',3102,475,'2005-08-04 02:34:49',2,'2006-02-15 21:30:53'),(10358,'2005-08-01 05:50:07',3039,517,'2005-08-03 08:18:07',1,'2006-02-15 21:30:53'),(10359,'2005-08-01 05:52:21',259,369,'2005-08-06 05:52:21',2,'2006-02-15 21:30:53'),(10360,'2005-08-01 05:52:53',1129,443,'2005-08-05 10:55:53',1,'2006-02-15 21:30:53'),(10361,'2005-08-01 05:53:49',318,529,'2005-08-10 00:42:49',2,'2006-02-15 21:30:53'),(10362,'2005-08-01 05:55:13',72,181,'2005-08-10 10:23:13',2,'2006-02-15 21:30:53'),(10363,'2005-08-01 06:01:52',320,174,'2005-08-05 03:56:52',1,'2006-02-15 21:30:53'),(10364,'2005-08-01 06:06:49',1842,317,'2005-08-09 06:05:49',2,'2006-02-15 21:30:53'),(10365,'2005-08-01 06:08:44',4032,442,'2005-08-06 02:07:44',1,'2006-02-15 21:30:53'),(10366,'2005-08-01 06:09:37',2654,119,'2005-08-05 03:19:37',1,'2006-02-15 21:30:53'),(10367,'2005-08-01 06:12:19',3408,242,'2005-08-04 12:11:19',2,'2006-02-15 21:30:53'),(10368,'2005-08-01 06:13:38',3535,593,'2005-08-08 04:40:38',2,'2006-02-15 21:30:53'),(10369,'2005-08-01 06:13:44',2534,424,'2005-08-07 09:46:44',1,'2006-02-15 21:30:53'),(10370,'2005-08-01 06:18:04',4358,546,'2005-08-05 01:41:04',2,'2006-02-15 21:30:53'),(10371,'2005-08-01 06:20:29',923,327,'2005-08-04 00:31:29',2,'2006-02-15 21:30:53'),(10372,'2005-08-01 06:23:48',635,419,'2005-08-06 03:47:48',1,'2006-02-15 21:30:53'),(10373,'2005-08-01 06:24:26',1754,588,'2005-08-02 12:07:26',1,'2006-02-15 21:30:53'),(10374,'2005-08-01 06:25:27',4351,307,'2005-08-07 05:44:27',2,'2006-02-15 21:30:53'),(10375,'2005-08-01 06:26:22',857,202,'2005-08-06 02:51:22',2,'2006-02-15 21:30:53'),(10376,'2005-08-01 06:27:13',4194,474,'2005-08-07 06:11:13',2,'2006-02-15 21:30:53'),(10377,'2005-08-01 06:28:28',2401,559,'2005-08-10 05:45:28',2,'2006-02-15 21:30:53'),(10378,'2005-08-01 06:30:04',4110,113,'2005-08-06 09:10:04',1,'2006-02-15 21:30:53'),(10379,'2005-08-01 06:34:29',3103,141,'2005-08-06 07:49:29',1,'2006-02-15 21:30:53'),(10380,'2005-08-01 06:34:36',2225,533,'2005-08-02 09:08:36',1,'2006-02-15 21:30:53'),(10381,'2005-08-01 06:36:37',522,412,'2005-08-05 11:17:37',1,'2006-02-15 21:30:53'),(10382,'2005-08-01 06:36:45',4455,242,'2005-08-02 06:06:45',1,'2006-02-15 21:30:53'),(10383,'2005-08-01 06:37:16',4166,592,'2005-08-03 07:36:16',2,'2006-02-15 21:30:53'),(10384,'2005-08-01 06:39:14',2622,366,'2005-08-02 03:06:14',1,'2006-02-15 21:30:53'),(10385,'2005-08-01 06:39:55',778,179,'2005-08-06 02:16:55',1,'2006-02-15 21:30:53'),(10386,'2005-08-01 06:42:20',1568,26,'2005-08-07 06:12:20',2,'2006-02-15 21:30:53'),(10387,'2005-08-01 06:42:31',1651,87,'2005-08-08 07:44:31',1,'2006-02-15 21:30:53'),(10388,'2005-08-01 06:42:44',3180,99,'2005-08-09 11:43:44',2,'2006-02-15 21:30:53'),(10389,'2005-08-01 06:46:43',3534,346,'2005-08-08 07:07:43',2,'2006-02-15 21:30:53'),(10390,'2005-08-01 06:46:48',1489,502,'2005-08-09 02:55:48',2,'2006-02-15 21:30:53'),(10391,'2005-08-01 06:49:05',2203,357,'2005-08-04 01:51:05',2,'2006-02-15 21:30:53'),(10392,'2005-08-01 06:50:26',3017,12,'2005-08-10 10:52:26',1,'2006-02-15 21:30:53'),(10393,'2005-08-01 06:52:50',808,258,'2005-08-05 08:45:50',1,'2006-02-15 21:30:53'),(10394,'2005-08-01 06:58:17',1655,128,'2005-08-05 02:09:17',1,'2006-02-15 21:30:53'),(10395,'2005-08-01 07:08:22',279,129,'2005-08-05 08:00:22',2,'2006-02-15 21:30:53'),(10396,'2005-08-01 07:08:46',2982,284,'2005-08-08 03:47:46',1,'2006-02-15 21:30:53'),(10397,'2005-08-01 07:11:27',4168,504,'2005-08-03 07:51:27',1,'2006-02-15 21:30:53'),(10398,'2005-08-01 07:11:49',4306,174,'2005-08-04 05:54:49',1,'2006-02-15 21:30:53'),(10399,'2005-08-01 07:13:39',2515,204,'2005-08-10 06:56:39',1,'2006-02-15 21:30:53'),(10400,'2005-08-01 07:18:24',3897,132,'2005-08-10 08:38:24',1,'2006-02-15 21:30:53'),(10401,'2005-08-01 07:27:09',1560,564,'2005-08-02 01:38:09',1,'2006-02-15 21:30:53'),(10402,'2005-08-01 07:27:19',274,410,'2005-08-04 12:30:19',1,'2006-02-15 21:30:53'),(10403,'2005-08-01 07:30:45',1968,494,'2005-08-03 03:03:45',2,'2006-02-15 21:30:53'),(10404,'2005-08-01 07:31:25',2580,253,'2005-08-07 09:23:25',1,'2006-02-15 21:30:53'),(10405,'2005-08-01 07:35:25',3641,463,'2005-08-05 05:38:25',2,'2006-02-15 21:30:53'),(10406,'2005-08-01 07:37:05',2614,391,'2005-08-02 06:11:05',1,'2006-02-15 21:30:53'),(10407,'2005-08-01 07:38:07',543,101,'2005-08-02 05:38:07',2,'2006-02-15 21:30:53'),(10408,'2005-08-01 07:42:10',4144,334,'2005-08-09 02:29:10',2,'2006-02-15 21:30:53'),(10409,'2005-08-01 07:49:15',2804,449,'2005-08-02 13:42:15',2,'2006-02-15 21:30:53'),(10410,'2005-08-01 07:53:29',3901,247,'2005-08-10 08:56:29',1,'2006-02-15 21:30:53'),(10411,'2005-08-01 07:56:32',1946,522,'2005-08-10 04:58:32',2,'2006-02-15 21:30:53'),(10412,'2005-08-01 07:57:16',1555,325,'2005-08-04 11:44:16',2,'2006-02-15 21:30:53'),(10413,'2005-08-01 07:59:39',1018,376,'2005-08-08 03:55:39',1,'2006-02-15 21:30:53'),(10414,'2005-08-01 08:03:55',1271,361,'2005-08-04 08:44:55',2,'2006-02-15 21:30:53'),(10415,'2005-08-01 08:05:59',2597,591,'2005-08-04 13:46:59',1,'2006-02-15 21:30:53'),(10416,'2005-08-01 08:08:39',2629,449,'2005-08-10 09:26:39',2,'2006-02-15 21:30:53'),(10417,'2005-08-01 08:10:36',3675,427,'2005-08-02 03:42:36',2,'2006-02-15 21:30:53'),(10418,'2005-08-01 08:11:07',1692,248,'2005-08-04 11:12:07',2,'2006-02-15 21:30:53'),(10419,'2005-08-01 08:13:22',415,66,'2005-08-06 04:45:22',2,'2006-02-15 21:30:53'),(10420,'2005-08-01 08:13:53',3490,354,'2005-08-06 08:05:53',2,'2006-02-15 21:30:53'),(10421,'2005-08-01 08:14:10',925,262,'2005-08-03 05:56:10',2,'2006-02-15 21:30:53'),(10422,'2005-08-01 08:17:11',37,166,'2005-08-10 10:08:11',2,'2006-02-15 21:30:53'),(10423,'2005-08-01 08:19:53',739,7,'2005-08-08 10:25:53',1,'2006-02-15 21:30:53'),(10424,'2005-08-01 08:22:54',1921,88,'2005-08-06 13:44:54',1,'2006-02-15 21:30:53'),(10425,'2005-08-01 08:23:25',322,447,'2005-08-05 04:29:25',1,'2006-02-15 21:30:53'),(10426,'2005-08-01 08:26:08',1325,305,'2005-08-09 04:09:08',1,'2006-02-15 21:30:53'),(10427,'2005-08-01 08:30:11',2978,356,'2005-08-07 06:18:11',2,'2006-02-15 21:30:53'),(10428,'2005-08-01 08:30:11',4245,46,'2005-08-02 09:30:11',2,'2006-02-15 21:30:53'),(10429,'2005-08-01 08:34:18',3894,511,'2005-08-10 12:38:18',1,'2006-02-15 21:30:53'),(10430,'2005-08-01 08:37:06',1150,471,'2005-08-03 07:25:06',1,'2006-02-15 21:30:53'),(10431,'2005-08-01 08:41:54',1074,138,'2005-08-07 09:44:54',2,'2006-02-15 21:30:53'),(10432,'2005-08-01 08:43:21',4238,450,'2005-08-08 13:09:21',2,'2006-02-15 21:30:53'),(10433,'2005-08-01 08:45:56',1508,517,'2005-08-05 09:46:56',2,'2006-02-15 21:30:53'),(10434,'2005-08-01 08:47:00',4073,73,'2005-08-06 08:34:00',1,'2006-02-15 21:30:53'),(10435,'2005-08-01 08:50:51',1934,392,'2005-08-08 12:23:51',1,'2006-02-15 21:30:53'),(10436,'2005-08-01 08:50:59',4026,455,'2005-08-04 05:23:59',1,'2006-02-15 21:30:53'),(10437,'2005-08-01 08:51:04',14,1,'2005-08-10 12:12:04',1,'2006-02-15 21:30:53'),(10438,'2005-08-01 08:53:04',4217,316,'2005-08-09 06:39:04',2,'2006-02-15 21:30:53'),(10439,'2005-08-01 08:54:26',2711,332,'2005-08-08 14:04:26',1,'2006-02-15 21:30:53'),(10440,'2005-08-01 08:54:32',842,299,'2005-08-02 10:59:32',2,'2006-02-15 21:30:53'),(10441,'2005-08-01 08:55:56',4122,176,'2005-08-03 10:26:56',2,'2006-02-15 21:30:53'),(10442,'2005-08-01 08:58:08',4570,40,'2005-08-05 09:07:08',2,'2006-02-15 21:30:53'),(10443,'2005-08-01 09:01:04',1965,403,'2005-08-04 09:07:04',2,'2006-02-15 21:30:53'),(10444,'2005-08-01 09:01:40',3242,106,'2005-08-09 11:31:40',1,'2006-02-15 21:30:53'),(10445,'2005-08-01 09:02:15',3582,211,'2005-08-08 10:26:15',2,'2006-02-15 21:30:53'),(10446,'2005-08-01 09:02:17',2671,95,'2005-08-04 10:00:17',2,'2006-02-15 21:30:53'),(10447,'2005-08-01 09:04:58',1198,241,'2005-08-08 06:24:58',1,'2006-02-15 21:30:53'),(10448,'2005-08-01 09:09:31',2254,311,'2005-08-02 09:55:31',2,'2006-02-15 21:30:53'),(10449,'2005-08-01 09:09:59',1395,213,'2005-08-05 11:25:59',1,'2006-02-15 21:30:53'),(10450,'2005-08-01 09:10:03',234,380,'2005-08-08 12:34:03',1,'2006-02-15 21:30:53'),(10451,'2005-08-01 09:11:25',2435,9,'2005-08-03 12:37:25',2,'2006-02-15 21:30:53'),(10452,'2005-08-01 09:11:36',1973,442,'2005-08-04 13:28:36',2,'2006-02-15 21:30:53'),(10453,'2005-08-01 09:13:27',1531,188,'2005-08-08 11:34:27',2,'2006-02-15 21:30:53'),(10454,'2005-08-01 09:14:00',397,9,'2005-08-04 04:52:00',2,'2006-02-15 21:30:53'),(10455,'2005-08-01 09:15:00',4197,99,'2005-08-05 13:35:00',1,'2006-02-15 21:30:53'),(10456,'2005-08-01 09:17:21',4339,81,'2005-08-06 10:30:21',1,'2006-02-15 21:30:53'),(10457,'2005-08-01 09:17:34',3052,121,'2005-08-06 07:28:34',2,'2006-02-15 21:30:53'),(10458,'2005-08-01 09:19:48',1500,309,'2005-08-02 10:16:48',1,'2006-02-15 21:30:53'),(10459,'2005-08-01 09:20:09',201,131,'2005-08-03 11:36:09',1,'2006-02-15 21:30:53'),(10460,'2005-08-01 09:31:00',4504,197,'2005-08-09 09:28:00',1,'2006-02-15 21:30:53'),(10461,'2005-08-01 09:32:53',3212,270,'2005-08-09 10:19:53',1,'2006-02-15 21:30:53'),(10462,'2005-08-01 09:38:28',4526,193,'2005-08-02 09:52:28',2,'2006-02-15 21:30:53'),(10463,'2005-08-01 09:39:43',1301,291,'2005-08-10 03:42:43',1,'2006-02-15 21:30:53'),(10464,'2005-08-01 09:43:14',464,427,'2005-08-06 09:01:14',1,'2006-02-15 21:30:53'),(10465,'2005-08-01 09:45:25',4384,534,'2005-08-10 09:08:25',2,'2006-02-15 21:30:53'),(10466,'2005-08-01 09:45:26',138,2,'2005-08-06 06:28:26',1,'2006-02-15 21:30:53'),(10467,'2005-08-01 09:45:58',3773,412,'2005-08-09 10:17:58',2,'2006-02-15 21:30:53'),(10468,'2005-08-01 09:48:29',2115,129,'2005-08-05 09:58:29',2,'2006-02-15 21:30:53'),(10469,'2005-08-01 09:51:11',3054,466,'2005-08-05 06:53:11',2,'2006-02-15 21:30:53'),(10470,'2005-08-01 09:52:26',82,523,'2005-08-05 06:52:26',1,'2006-02-15 21:30:53'),(10471,'2005-08-01 09:52:37',1684,135,'2005-08-07 09:40:37',2,'2006-02-15 21:30:53'),(10472,'2005-08-01 09:54:41',506,405,'2005-08-04 13:31:41',1,'2006-02-15 21:30:53'),(10473,'2005-08-01 09:56:24',3034,329,'2005-08-10 12:36:24',2,'2006-02-15 21:30:53'),(10474,'2005-08-01 10:01:42',4482,488,'2005-08-08 12:32:42',1,'2006-02-15 21:30:53'),(10475,'2005-08-01 10:03:17',2931,115,'2005-08-10 15:50:17',2,'2006-02-15 21:30:53'),(10476,'2005-08-01 10:03:20',1993,263,'2005-08-10 06:52:20',1,'2006-02-15 21:30:53'),(10477,'2005-08-01 10:04:17',235,506,'2005-08-06 11:32:17',2,'2006-02-15 21:30:53'),(10478,'2005-08-01 10:09:06',3885,417,'2005-08-06 05:05:06',1,'2006-02-15 21:30:53'),(10479,'2005-08-01 10:11:25',4580,275,'2005-08-06 04:52:25',1,'2006-02-15 21:30:53'),(10480,'2005-08-01 10:13:41',553,560,'2005-08-03 10:27:41',1,'2006-02-15 21:30:53'),(10481,'2005-08-01 10:17:26',229,170,'2005-08-09 08:50:26',1,'2006-02-15 21:30:53'),(10482,'2005-08-01 10:17:47',48,358,'2005-08-02 15:04:47',2,'2006-02-15 21:30:53'),(10483,'2005-08-01 10:19:45',1521,129,'2005-08-04 09:29:45',1,'2006-02-15 21:30:53'),(10484,'2005-08-01 10:19:53',1908,400,'2005-08-03 05:36:53',1,'2006-02-15 21:30:53'),(10485,'2005-08-01 10:20:34',29,50,'2005-08-09 09:20:34',1,'2006-02-15 21:30:53'),(10486,'2005-08-01 10:23:43',2454,527,'2005-08-05 07:11:43',2,'2006-02-15 21:30:53'),(10487,'2005-08-01 10:26:34',1121,577,'2005-08-07 16:11:34',1,'2006-02-15 21:30:53'),(10488,'2005-08-01 10:27:27',297,423,'2005-08-02 11:05:27',2,'2006-02-15 21:30:53'),(10489,'2005-08-01 10:27:42',4067,54,'2005-08-07 12:56:42',1,'2006-02-15 21:30:53'),(10490,'2005-08-01 10:37:11',4365,329,'2005-08-03 10:01:11',2,'2006-02-15 21:30:53'),(10491,'2005-08-01 10:38:27',3091,24,'2005-08-04 04:55:27',2,'2006-02-15 21:30:53'),(10492,'2005-08-01 10:42:28',1669,334,'2005-08-02 07:05:28',1,'2006-02-15 21:30:53'),(10493,'2005-08-01 10:43:12',2375,285,'2005-08-07 08:13:12',2,'2006-02-15 21:30:53'),(10494,'2005-08-01 10:45:21',847,188,'2005-08-02 12:34:21',1,'2006-02-15 21:30:53'),(10495,'2005-08-01 10:45:51',2232,41,'2005-08-06 08:11:51',1,'2006-02-15 21:30:53'),(10496,'2005-08-01 10:53:16',411,525,'2005-08-08 10:34:16',2,'2006-02-15 21:30:53'),(10497,'2005-08-01 10:55:59',1060,499,'2005-08-07 11:15:59',1,'2006-02-15 21:30:53'),(10498,'2005-08-01 10:56:48',2672,355,'2005-08-03 15:46:48',2,'2006-02-15 21:30:53'),(10499,'2005-08-01 11:00:20',3293,459,'2005-08-10 11:52:20',2,'2006-02-15 21:30:53'),(10500,'2005-08-01 11:01:01',469,477,'2005-08-06 08:59:01',2,'2006-02-15 21:30:53'),(10501,'2005-08-01 11:04:46',1792,351,'2005-08-02 12:10:46',2,'2006-02-15 21:30:53'),(10502,'2005-08-01 11:06:39',3193,357,'2005-08-05 07:11:39',1,'2006-02-15 21:30:53'),(10503,'2005-08-01 11:07:44',1823,357,'2005-08-08 08:22:44',1,'2006-02-15 21:30:53'),(10504,'2005-08-01 11:10:55',3345,530,'2005-08-10 10:16:55',1,'2006-02-15 21:30:53'),(10505,'2005-08-01 11:13:59',2977,426,'2005-08-05 07:20:59',2,'2006-02-15 21:30:53'),(10506,'2005-08-01 11:16:05',1171,216,'2005-08-03 05:37:05',2,'2006-02-15 21:30:53'),(10507,'2005-08-01 11:22:20',367,45,'2005-08-04 13:18:20',2,'2006-02-15 21:30:53'),(10508,'2005-08-01 11:23:27',3890,431,'2005-08-02 10:17:27',1,'2006-02-15 21:30:53'),(10509,'2005-08-01 11:25:28',96,504,'2005-08-10 09:19:28',2,'2006-02-15 21:30:53'),(10510,'2005-08-01 11:28:30',410,259,'2005-08-07 11:37:30',1,'2006-02-15 21:30:53'),(10511,'2005-08-01 11:32:16',3874,487,'2005-08-04 09:38:16',1,'2006-02-15 21:30:53'),(10512,'2005-08-01 11:36:19',3294,438,'2005-08-09 06:52:19',2,'2006-02-15 21:30:53'),(10513,'2005-08-01 11:37:34',4057,105,'2005-08-02 17:15:34',2,'2006-02-15 21:30:53'),(10514,'2005-08-01 11:39:26',1512,7,'2005-08-03 07:53:26',2,'2006-02-15 21:30:53'),(10515,'2005-08-01 11:41:33',874,383,'2005-08-08 06:23:33',2,'2006-02-15 21:30:53'),(10516,'2005-08-01 11:41:55',3924,449,'2005-08-08 17:16:55',1,'2006-02-15 21:30:53'),(10517,'2005-08-01 11:41:57',2299,199,'2005-08-05 06:14:57',1,'2006-02-15 21:30:53'),(10518,'2005-08-01 11:44:08',4444,556,'2005-08-07 07:58:08',2,'2006-02-15 21:30:53'),(10519,'2005-08-01 11:44:13',1967,456,'2005-08-09 16:57:13',1,'2006-02-15 21:30:53'),(10520,'2005-08-01 11:45:58',4396,543,'2005-08-06 17:28:58',2,'2006-02-15 21:30:53'),(10521,'2005-08-01 11:46:17',662,346,'2005-08-05 11:06:17',2,'2006-02-15 21:30:53'),(10522,'2005-08-01 11:48:51',4159,254,'2005-08-05 12:40:51',1,'2006-02-15 21:30:53'),(10523,'2005-08-01 11:52:32',2408,34,'2005-08-02 10:47:32',1,'2006-02-15 21:30:53'),(10524,'2005-08-01 11:53:12',4116,38,'2005-08-08 10:40:12',2,'2006-02-15 21:30:53'),(10525,'2005-08-01 11:53:17',3811,36,'2005-08-07 07:24:17',1,'2006-02-15 21:30:53'),(10526,'2005-08-01 11:55:33',27,14,'2005-08-08 16:42:33',1,'2006-02-15 21:30:53'),(10527,'2005-08-01 11:55:54',4530,431,'2005-08-05 15:56:54',2,'2006-02-15 21:30:53'),(10528,'2005-08-01 11:56:22',4401,564,'2005-08-07 07:13:22',1,'2006-02-15 21:30:53'),(10529,'2005-08-01 12:00:02',851,444,'2005-08-08 16:18:02',1,'2006-02-15 21:30:53'),(10530,'2005-08-01 12:01:17',3216,520,'2005-08-06 09:55:17',2,'2006-02-15 21:30:53'),(10531,'2005-08-01 12:06:30',3846,459,'2005-08-04 10:23:30',2,'2006-02-15 21:30:53'),(10532,'2005-08-01 12:06:35',746,191,'2005-08-07 16:04:35',2,'2006-02-15 21:30:53'),(10533,'2005-08-01 12:14:16',1924,593,'2005-08-09 17:13:16',2,'2006-02-15 21:30:53'),(10534,'2005-08-01 12:15:11',4354,397,'2005-08-04 17:06:11',1,'2006-02-15 21:30:53'),(10535,'2005-08-01 12:21:13',1838,284,'2005-08-09 08:58:13',1,'2006-02-15 21:30:53'),(10536,'2005-08-01 12:21:53',1251,86,'2005-08-04 13:08:53',2,'2006-02-15 21:30:53'),(10537,'2005-08-01 12:22:28',2140,418,'2005-08-08 07:27:28',1,'2006-02-15 21:30:53'),(10538,'2005-08-01 12:22:41',686,37,'2005-08-02 10:31:41',2,'2006-02-15 21:30:53'),(10539,'2005-08-01 12:23:00',3341,232,'2005-08-07 10:25:00',2,'2006-02-15 21:30:53'),(10540,'2005-08-01 12:24:42',4121,84,'2005-08-03 08:39:42',2,'2006-02-15 21:30:53'),(10541,'2005-08-01 12:24:54',1413,234,'2005-08-03 16:18:54',1,'2006-02-15 21:30:53'),(10542,'2005-08-01 12:32:23',1102,465,'2005-08-08 16:26:23',1,'2006-02-15 21:30:53'),(10543,'2005-08-01 12:36:09',624,29,'2005-08-07 07:42:09',1,'2006-02-15 21:30:53'),(10544,'2005-08-01 12:36:21',3195,589,'2005-08-07 12:25:21',2,'2006-02-15 21:30:53'),(10545,'2005-08-01 12:37:46',4230,425,'2005-08-04 16:02:46',2,'2006-02-15 21:30:53'),(10546,'2005-08-01 12:44:17',1589,362,'2005-08-06 16:26:17',2,'2006-02-15 21:30:53'),(10547,'2005-08-01 12:44:17',1707,403,'2005-08-08 06:53:17',1,'2006-02-15 21:30:53'),(10548,'2005-08-01 12:44:32',1914,85,'2005-08-07 09:17:32',1,'2006-02-15 21:30:53'),(10549,'2005-08-01 12:46:39',3719,61,'2005-08-06 17:17:39',1,'2006-02-15 21:30:53'),(10550,'2005-08-01 12:46:52',1980,129,'2005-08-05 16:48:52',2,'2006-02-15 21:30:53'),(10551,'2005-08-01 12:48:55',2974,294,'2005-08-10 16:11:55',1,'2006-02-15 21:30:53'),(10552,'2005-08-01 12:49:44',4263,119,'2005-08-04 16:20:44',2,'2006-02-15 21:30:53'),(10553,'2005-08-01 12:54:06',2768,415,'2005-08-06 15:27:06',1,'2006-02-15 21:30:53'),(10554,'2005-08-01 12:56:19',3220,209,'2005-08-03 09:44:19',2,'2006-02-15 21:30:53'),(10555,'2005-08-01 12:56:38',377,487,'2005-08-10 18:19:38',1,'2006-02-15 21:30:53'),(10556,'2005-08-01 12:58:42',144,117,'2005-08-03 07:18:42',2,'2006-02-15 21:30:53'),(10557,'2005-08-01 12:59:24',240,385,'2005-08-04 17:08:24',2,'2006-02-15 21:30:53'),(10558,'2005-08-01 13:00:20',4399,117,'2005-08-05 16:31:20',1,'2006-02-15 21:30:53'),(10559,'2005-08-01 13:02:58',2861,174,'2005-08-09 10:03:58',2,'2006-02-15 21:30:53'),(10560,'2005-08-01 13:04:57',1534,427,'2005-08-05 18:25:57',2,'2006-02-15 21:30:53'),(10561,'2005-08-01 13:05:35',2195,8,'2005-08-04 08:34:35',2,'2006-02-15 21:30:53'),(10562,'2005-08-01 13:05:52',1947,178,'2005-08-02 17:05:52',1,'2006-02-15 21:30:53'),(10563,'2005-08-01 13:06:03',1885,214,'2005-08-09 08:39:03',2,'2006-02-15 21:30:53'),(10564,'2005-08-01 13:07:34',4469,387,'2005-08-06 15:14:34',2,'2006-02-15 21:30:53'),(10565,'2005-08-01 13:08:27',347,165,'2005-08-02 10:30:27',1,'2006-02-15 21:30:53'),(10566,'2005-08-01 13:12:11',3988,269,'2005-08-05 11:16:11',2,'2006-02-15 21:30:53'),(10567,'2005-08-01 13:16:01',2744,212,'2005-08-05 14:59:01',1,'2006-02-15 21:30:53'),(10568,'2005-08-01 13:17:28',3009,130,'2005-08-08 17:04:28',1,'2006-02-15 21:30:53'),(10569,'2005-08-01 13:18:23',611,179,'2005-08-10 13:33:23',1,'2006-02-15 21:30:53'),(10570,'2005-08-01 13:23:06',369,21,'2005-08-05 15:30:06',2,'2006-02-15 21:30:53'),(10571,'2005-08-01 13:25:30',3660,308,'2005-08-02 16:43:30',2,'2006-02-15 21:30:53'),(10572,'2005-08-01 13:26:53',1239,386,'2005-08-07 18:47:53',2,'2006-02-15 21:30:53'),(10573,'2005-08-01 13:27:24',4252,585,'2005-08-04 15:09:24',2,'2006-02-15 21:30:53'),(10574,'2005-08-01 13:36:51',679,287,'2005-08-10 13:25:51',2,'2006-02-15 21:30:53'),(10575,'2005-08-01 13:41:41',4447,251,'2005-08-08 11:30:41',1,'2006-02-15 21:30:53'),(10576,'2005-08-01 13:46:02',1876,180,'2005-08-05 10:19:02',1,'2006-02-15 21:30:53'),(10577,'2005-08-01 13:46:38',2240,428,'2005-08-06 11:35:38',2,'2006-02-15 21:30:53'),(10578,'2005-08-01 13:48:02',3704,113,'2005-08-07 13:40:02',1,'2006-02-15 21:30:53'),(10579,'2005-08-01 13:48:22',4068,270,'2005-08-07 11:51:22',1,'2006-02-15 21:30:53'),(10580,'2005-08-01 13:51:14',590,234,'2005-08-08 11:49:14',2,'2006-02-15 21:30:53'),(10581,'2005-08-01 13:52:30',2801,217,'2005-08-10 19:11:30',1,'2006-02-15 21:30:53'),(10582,'2005-08-01 13:54:22',2536,233,'2005-08-05 16:46:22',2,'2006-02-15 21:30:53'),(10583,'2005-08-01 13:54:35',704,125,'2005-08-03 18:21:35',1,'2006-02-15 21:30:53'),(10584,'2005-08-01 13:58:47',715,86,'2005-08-06 13:38:47',2,'2006-02-15 21:30:53'),(10585,'2005-08-01 14:00:42',2670,228,'2005-08-09 11:42:42',2,'2006-02-15 21:30:53'),(10586,'2005-08-01 14:00:59',3306,583,'2005-08-06 10:00:59',2,'2006-02-15 21:30:53'),(10587,'2005-08-01 14:03:38',3000,521,'2005-08-08 19:59:38',2,'2006-02-15 21:30:53'),(10588,'2005-08-01 14:10:21',2384,49,'2005-08-03 13:47:21',2,'2006-02-15 21:30:53'),(10589,'2005-08-01 14:11:09',4280,375,'2005-08-09 09:28:09',2,'2006-02-15 21:30:53'),(10590,'2005-08-01 14:11:53',740,78,'2005-08-04 20:04:53',1,'2006-02-15 21:30:53'),(10591,'2005-08-01 14:12:29',3360,52,'2005-08-04 08:46:29',2,'2006-02-15 21:30:53'),(10592,'2005-08-01 14:13:00',829,265,'2005-08-09 13:03:00',2,'2006-02-15 21:30:53'),(10593,'2005-08-01 14:13:19',1886,144,'2005-08-06 08:48:19',2,'2006-02-15 21:30:53'),(10594,'2005-08-01 14:14:59',1826,53,'2005-08-07 10:48:59',2,'2006-02-15 21:30:53'),(10595,'2005-08-01 14:16:28',966,137,'2005-08-03 10:37:28',1,'2006-02-15 21:30:53'),(10596,'2005-08-01 14:18:57',803,112,'2005-08-07 14:59:57',2,'2006-02-15 21:30:53'),(10597,'2005-08-01 14:19:48',3292,3,'2005-08-08 20:01:48',1,'2006-02-15 21:30:53'),(10598,'2005-08-01 14:23:36',2341,397,'2005-08-10 14:07:36',2,'2006-02-15 21:30:53'),(10599,'2005-08-01 14:23:58',2422,271,'2005-08-06 10:45:58',2,'2006-02-15 21:30:53'),(10600,'2005-08-01 14:25:21',3900,294,'2005-08-06 18:00:21',1,'2006-02-15 21:30:53'),(10601,'2005-08-01 14:25:40',2843,420,'2005-08-10 09:07:40',1,'2006-02-15 21:30:53'),(10602,'2005-08-01 14:30:23',1506,111,'2005-08-07 15:20:23',1,'2006-02-15 21:30:53'),(10603,'2005-08-01 14:30:35',4024,394,'2005-08-05 11:13:35',2,'2006-02-15 21:30:53'),(10604,'2005-08-01 14:35:08',2833,250,'2005-08-08 10:19:08',2,'2006-02-15 21:30:53'),(10605,'2005-08-01 14:36:26',680,341,'2005-08-06 12:04:26',2,'2006-02-15 21:30:53'),(10606,'2005-08-01 14:39:15',81,335,'2005-08-08 11:31:15',1,'2006-02-15 21:30:53'),(10607,'2005-08-01 14:44:43',3999,438,'2005-08-02 16:39:43',2,'2006-02-15 21:30:53'),(10608,'2005-08-01 14:48:41',3835,381,'2005-08-04 17:32:41',2,'2006-02-15 21:30:53'),(10609,'2005-08-01 14:48:45',2587,5,'2005-08-04 13:41:45',2,'2006-02-15 21:30:53'),(10610,'2005-08-01 14:49:41',1865,396,'2005-08-03 13:07:41',1,'2006-02-15 21:30:53'),(10611,'2005-08-01 14:53:52',957,135,'2005-08-07 09:15:52',2,'2006-02-15 21:30:53'),(10612,'2005-08-01 14:55:31',287,554,'2005-08-06 19:01:31',1,'2006-02-15 21:30:53'),(10613,'2005-08-01 14:56:14',4357,527,'2005-08-07 09:33:14',1,'2006-02-15 21:30:53'),(10614,'2005-08-01 14:57:00',232,533,'2005-08-10 09:31:00',2,'2006-02-15 21:30:53'),(10615,'2005-08-01 14:58:14',2639,34,'2005-08-02 13:38:14',1,'2006-02-15 21:30:53'),(10616,'2005-08-01 14:59:50',1094,20,'2005-08-07 11:38:50',2,'2006-02-15 21:30:53'),(10617,'2005-08-01 15:05:52',4344,476,'2005-08-09 18:54:52',1,'2006-02-15 21:30:53'),(10618,'2005-08-01 15:06:38',3729,386,'2005-08-06 15:52:38',2,'2006-02-15 21:30:53'),(10619,'2005-08-01 15:07:04',2189,132,'2005-08-07 11:42:04',2,'2006-02-15 21:30:53'),(10620,'2005-08-01 15:09:17',3064,183,'2005-08-09 13:58:17',1,'2006-02-15 21:30:53'),(10621,'2005-08-01 15:10:26',1650,172,'2005-08-04 10:58:26',1,'2006-02-15 21:30:53'),(10622,'2005-08-01 15:12:00',3044,171,'2005-08-08 14:09:00',1,'2006-02-15 21:30:53'),(10623,'2005-08-01 15:22:38',4426,494,'2005-08-03 11:03:38',2,'2006-02-15 21:30:53'),(10624,'2005-08-01 15:27:05',3801,74,'2005-08-05 19:50:05',1,'2006-02-15 21:30:53'),(10625,'2005-08-01 15:27:10',3022,5,'2005-08-02 13:16:10',1,'2006-02-15 21:30:53'),(10626,'2005-08-01 15:32:41',1042,122,'2005-08-05 18:08:41',1,'2006-02-15 21:30:53'),(10627,'2005-08-01 15:33:03',2026,472,'2005-08-02 21:26:03',1,'2006-02-15 21:30:53'),(10628,'2005-08-01 15:33:19',427,285,'2005-08-05 17:27:19',1,'2006-02-15 21:30:53'),(10629,'2005-08-01 15:33:32',997,575,'2005-08-08 12:40:32',2,'2006-02-15 21:30:53'),(10630,'2005-08-01 15:34:46',2335,39,'2005-08-03 10:50:46',1,'2006-02-15 21:30:53'),(10631,'2005-08-01 15:35:14',2712,304,'2005-08-03 10:48:14',1,'2006-02-15 21:30:53'),(10632,'2005-08-01 15:36:56',1290,406,'2005-08-05 17:32:56',1,'2006-02-15 21:30:53'),(10633,'2005-08-01 15:37:17',3125,475,'2005-08-10 14:30:17',2,'2006-02-15 21:30:53'),(10634,'2005-08-01 15:37:48',445,592,'2005-08-02 12:11:48',2,'2006-02-15 21:30:53'),(10635,'2005-08-01 15:37:58',547,52,'2005-08-07 11:15:58',2,'2006-02-15 21:30:53'),(10636,'2005-08-01 15:40:35',621,385,'2005-08-05 18:46:35',1,'2006-02-15 21:30:53'),(10637,'2005-08-01 15:44:09',1243,161,'2005-08-04 14:42:09',1,'2006-02-15 21:30:53'),(10638,'2005-08-01 15:44:20',2239,132,'2005-08-08 16:05:20',2,'2006-02-15 21:30:53'),(10639,'2005-08-01 15:44:43',1015,39,'2005-08-10 13:51:43',1,'2006-02-15 21:30:53'),(10640,'2005-08-01 15:44:51',3020,375,'2005-08-06 15:52:51',1,'2006-02-15 21:30:53'),(10641,'2005-08-01 15:44:57',972,285,'2005-08-04 18:15:57',2,'2006-02-15 21:30:53'),(10642,'2005-08-01 15:45:11',2573,294,'2005-08-02 20:13:11',1,'2006-02-15 21:30:53'),(10643,'2005-08-01 15:48:33',3853,495,'2005-08-06 20:24:33',2,'2006-02-15 21:30:53'),(10644,'2005-08-01 15:52:00',4374,7,'2005-08-08 16:08:00',1,'2006-02-15 21:30:53'),(10645,'2005-08-01 15:52:01',3864,130,'2005-08-09 18:58:01',1,'2006-02-15 21:30:53'),(10646,'2005-08-01 15:57:55',1752,209,'2005-08-02 19:08:55',1,'2006-02-15 21:30:53'),(10647,'2005-08-01 16:08:46',3137,115,'2005-08-06 20:37:46',2,'2006-02-15 21:30:53'),(10648,'2005-08-01 16:08:52',691,270,'2005-08-05 20:17:52',1,'2006-02-15 21:30:53'),(10649,'2005-08-01 16:11:40',1032,278,'2005-08-06 14:09:40',2,'2006-02-15 21:30:53'),(10650,'2005-08-01 16:18:45',2306,242,'2005-08-09 16:29:45',1,'2006-02-15 21:30:53'),(10651,'2005-08-01 16:20:22',1541,404,'2005-08-03 15:53:22',1,'2006-02-15 21:30:53'),(10652,'2005-08-01 16:24:08',1633,241,'2005-08-03 16:00:08',2,'2006-02-15 21:30:53'),(10653,'2005-08-01 16:28:07',1190,75,'2005-08-07 21:22:07',2,'2006-02-15 21:30:53'),(10654,'2005-08-01 16:31:35',2522,399,'2005-08-05 12:04:35',2,'2006-02-15 21:30:53'),(10655,'2005-08-01 16:33:27',1399,385,'2005-08-08 17:17:27',2,'2006-02-15 21:30:53'),(10656,'2005-08-01 16:38:04',2571,80,'2005-08-09 19:37:04',2,'2006-02-15 21:30:53'),(10657,'2005-08-01 16:38:44',3075,590,'2005-08-06 16:05:44',2,'2006-02-15 21:30:53'),(10658,'2005-08-01 16:39:18',2943,469,'2005-08-09 18:17:18',2,'2006-02-15 21:30:53'),(10659,'2005-08-01 16:40:34',786,238,'2005-08-09 21:00:34',2,'2006-02-15 21:30:53'),(10660,'2005-08-01 16:48:01',2518,253,'2005-08-07 14:42:01',2,'2006-02-15 21:30:53'),(10661,'2005-08-01 16:48:31',3311,177,'2005-08-02 21:02:31',1,'2006-02-15 21:30:53'),(10662,'2005-08-01 16:50:57',2857,151,'2005-08-03 17:19:57',1,'2006-02-15 21:30:53'),(10663,'2005-08-01 16:51:08',4258,433,'2005-08-08 21:17:08',2,'2006-02-15 21:30:53'),(10664,'2005-08-01 16:51:15',3167,337,'2005-08-04 19:14:15',2,'2006-02-15 21:30:53'),(10665,'2005-08-01 16:56:17',3594,133,'2005-08-03 18:58:17',1,'2006-02-15 21:30:53'),(10666,'2005-08-01 16:56:36',1945,197,'2005-08-07 22:23:36',2,'2006-02-15 21:30:53'),(10667,'2005-08-01 16:58:22',3937,340,'2005-08-10 15:41:22',1,'2006-02-15 21:30:53'),(10668,'2005-08-01 17:00:27',2085,58,'2005-08-02 14:49:27',2,'2006-02-15 21:30:53'),(10669,'2005-08-01 17:03:28',2121,559,'2005-08-08 21:34:28',2,'2006-02-15 21:30:53'),(10670,'2005-08-01 17:07:16',156,512,'2005-08-10 11:46:16',2,'2006-02-15 21:30:53'),(10671,'2005-08-01 17:09:59',4430,10,'2005-08-09 21:36:59',1,'2006-02-15 21:30:53'),(10672,'2005-08-01 17:10:54',3674,375,'2005-08-07 12:19:54',2,'2006-02-15 21:30:53'),(10673,'2005-08-01 17:11:51',2735,528,'2005-08-03 13:32:51',1,'2006-02-15 21:30:53'),(10674,'2005-08-01 17:11:52',1962,340,'2005-08-08 19:34:52',1,'2006-02-15 21:30:53'),(10675,'2005-08-01 17:11:57',649,522,'2005-08-10 17:18:57',1,'2006-02-15 21:30:53'),(10676,'2005-08-01 17:14:15',629,79,'2005-08-04 12:34:15',1,'2006-02-15 21:30:53'),(10677,'2005-08-01 17:24:35',4350,483,'2005-08-04 20:03:35',1,'2006-02-15 21:30:53'),(10678,'2005-08-01 17:26:24',4438,56,'2005-08-05 22:55:24',1,'2006-02-15 21:30:53'),(10679,'2005-08-01 17:27:58',4437,198,'2005-08-08 16:06:58',1,'2006-02-15 21:30:53'),(10680,'2005-08-01 17:28:05',2498,60,'2005-08-04 19:34:05',1,'2006-02-15 21:30:53'),(10681,'2005-08-01 17:30:35',1468,119,'2005-08-02 14:48:35',2,'2006-02-15 21:30:53'),(10682,'2005-08-01 17:32:53',4557,18,'2005-08-06 15:49:53',2,'2006-02-15 21:30:53'),(10683,'2005-08-01 17:33:03',244,246,'2005-08-04 23:12:03',1,'2006-02-15 21:30:53'),(10684,'2005-08-01 17:47:00',1985,244,'2005-08-09 15:00:00',2,'2006-02-15 21:30:53'),(10685,'2005-08-01 17:49:38',2029,200,'2005-08-07 21:04:38',2,'2006-02-15 21:30:53'),(10686,'2005-08-01 17:51:21',2542,150,'2005-08-03 19:01:21',1,'2006-02-15 21:30:53'),(10687,'2005-08-01 17:53:02',3191,16,'2005-08-05 19:16:02',2,'2006-02-15 21:30:53'),(10688,'2005-08-01 17:53:43',3161,449,'2005-08-09 21:50:43',1,'2006-02-15 21:30:53'),(10689,'2005-08-01 18:04:18',1442,568,'2005-08-05 21:17:18',2,'2006-02-15 21:30:53'),(10690,'2005-08-01 18:05:54',807,80,'2005-08-10 21:43:54',2,'2006-02-15 21:30:53'),(10691,'2005-08-01 18:09:53',4281,276,'2005-08-03 16:32:53',1,'2006-02-15 21:30:53'),(10692,'2005-08-01 18:12:35',371,596,'2005-08-07 13:06:35',1,'2006-02-15 21:30:53'),(10693,'2005-08-01 18:14:14',2387,444,'2005-08-03 22:00:14',2,'2006-02-15 21:30:53'),(10694,'2005-08-01 18:15:07',3429,98,'2005-08-10 15:38:07',1,'2006-02-15 21:30:53'),(10695,'2005-08-01 18:16:20',3612,374,'2005-08-03 12:21:20',2,'2006-02-15 21:30:53'),(10696,'2005-08-01 18:18:13',47,120,'2005-08-04 14:09:13',1,'2006-02-15 21:30:53'),(10697,'2005-08-01 18:20:23',3115,519,'2005-08-07 21:18:23',1,'2006-02-15 21:30:53'),(10698,'2005-08-01 18:24:41',2738,135,'2005-08-08 18:59:41',2,'2006-02-15 21:30:53'),(10699,'2005-08-01 18:24:51',1029,125,'2005-08-06 20:18:51',1,'2006-02-15 21:30:53'),(10700,'2005-08-01 18:26:31',4259,203,'2005-08-07 19:51:31',2,'2006-02-15 21:30:53'),(10701,'2005-08-01 18:28:17',3958,538,'2005-08-09 21:51:17',1,'2006-02-15 21:30:53'),(10702,'2005-08-01 18:34:59',2802,560,'2005-08-09 23:44:59',2,'2006-02-15 21:30:53'),(10703,'2005-08-01 18:37:39',1818,181,'2005-08-07 23:50:39',2,'2006-02-15 21:30:53'),(10704,'2005-08-01 18:38:02',960,594,'2005-08-08 20:19:02',1,'2006-02-15 21:30:53'),(10705,'2005-08-01 18:38:54',4338,381,'2005-08-04 18:00:54',1,'2006-02-15 21:30:53'),(10706,'2005-08-01 18:41:28',1183,147,'2005-08-10 14:30:28',1,'2006-02-15 21:30:53'),(10707,'2005-08-01 18:41:34',1165,558,'2005-08-06 12:41:34',1,'2006-02-15 21:30:53'),(10708,'2005-08-01 18:43:28',3978,567,'2005-08-09 15:24:28',1,'2006-02-15 21:30:53'),(10709,'2005-08-01 18:43:57',282,418,'2005-08-06 13:17:57',2,'2006-02-15 21:30:53'),(10710,'2005-08-01 18:44:36',3082,177,'2005-08-03 13:17:36',1,'2006-02-15 21:30:53'),(10711,'2005-08-01 18:45:09',4278,400,'2005-08-02 19:47:09',2,'2006-02-15 21:30:53'),(10712,'2005-08-01 18:47:56',1188,532,'2005-08-07 19:26:56',2,'2006-02-15 21:30:53'),(10713,'2005-08-01 18:50:05',2030,369,'2005-08-05 00:43:05',2,'2006-02-15 21:30:53'),(10714,'2005-08-01 18:51:29',1465,64,'2005-08-04 18:49:29',2,'2006-02-15 21:30:53'),(10715,'2005-08-01 18:51:48',1054,386,'2005-08-06 14:44:48',1,'2006-02-15 21:30:53'),(10716,'2005-08-01 18:53:48',3405,515,'2005-08-04 13:49:48',1,'2006-02-15 21:30:53'),(10717,'2005-08-01 18:53:53',2934,365,'2005-08-05 21:28:53',1,'2006-02-15 21:30:53'),(10718,'2005-08-01 18:55:38',2763,394,'2005-08-04 14:45:38',1,'2006-02-15 21:30:53'),(10719,'2005-08-01 19:00:28',3861,188,'2005-08-07 17:04:28',1,'2006-02-15 21:30:53'),(10720,'2005-08-01 19:04:33',3712,326,'2005-08-06 23:12:33',2,'2006-02-15 21:30:53'),(10721,'2005-08-01 19:05:18',904,18,'2005-08-09 20:45:18',2,'2006-02-15 21:30:53'),(10722,'2005-08-01 19:07:08',2849,90,'2005-08-04 14:09:08',2,'2006-02-15 21:30:53'),(10723,'2005-08-01 19:10:49',2526,580,'2005-08-08 19:21:49',2,'2006-02-15 21:30:53'),(10724,'2005-08-01 19:10:59',3425,576,'2005-08-07 18:44:59',1,'2006-02-15 21:30:53'),(10725,'2005-08-01 19:11:04',4486,534,'2005-08-07 18:16:04',2,'2006-02-15 21:30:53'),(10726,'2005-08-01 19:14:53',749,75,'2005-08-08 23:56:53',2,'2006-02-15 21:30:53'),(10727,'2005-08-01 19:15:08',2049,16,'2005-08-03 13:52:08',1,'2006-02-15 21:30:53'),(10728,'2005-08-01 19:15:09',3133,309,'2005-08-04 19:35:09',1,'2006-02-15 21:30:53'),(10729,'2005-08-01 19:21:11',2918,595,'2005-08-07 21:20:11',2,'2006-02-15 21:30:53'),(10730,'2005-08-01 19:21:42',1793,368,'2005-08-10 21:18:42',1,'2006-02-15 21:30:53'),(10731,'2005-08-01 19:21:48',4248,278,'2005-08-08 22:01:48',2,'2006-02-15 21:30:53'),(10732,'2005-08-01 19:25:18',2810,538,'2005-08-10 22:26:18',1,'2006-02-15 21:30:53'),(10733,'2005-08-01 19:28:01',3980,560,'2005-08-09 18:41:01',1,'2006-02-15 21:30:53'),(10734,'2005-08-01 19:28:47',1130,21,'2005-08-03 00:41:47',2,'2006-02-15 21:30:53'),(10735,'2005-08-01 19:29:45',4061,544,'2005-08-02 19:50:45',2,'2006-02-15 21:30:53'),(10736,'2005-08-01 19:30:21',2227,272,'2005-08-02 22:37:21',1,'2006-02-15 21:30:53'),(10737,'2005-08-01 19:31:24',1773,149,'2005-08-10 19:17:24',1,'2006-02-15 21:30:53'),(10738,'2005-08-01 19:39:08',544,377,'2005-08-10 20:37:08',1,'2006-02-15 21:30:53'),(10739,'2005-08-01 19:46:11',3160,197,'2005-08-06 21:08:11',2,'2006-02-15 21:30:53'),(10740,'2005-08-01 19:50:32',3215,144,'2005-08-07 23:25:32',1,'2006-02-15 21:30:53'),(10741,'2005-08-01 19:52:52',3300,469,'2005-08-04 19:58:52',1,'2006-02-15 21:30:53'),(10742,'2005-08-01 19:53:13',3658,416,'2005-08-10 15:05:13',1,'2006-02-15 21:30:53'),(10743,'2005-08-01 19:55:09',4206,197,'2005-08-03 19:29:09',1,'2006-02-15 21:30:53'),(10744,'2005-08-01 19:56:49',565,439,'2005-08-09 16:33:49',2,'2006-02-15 21:30:53'),(10745,'2005-08-01 19:57:06',446,307,'2005-08-07 18:04:06',1,'2006-02-15 21:30:53'),(10746,'2005-08-01 19:58:49',305,508,'2005-08-10 19:00:49',2,'2006-02-15 21:30:53'),(10747,'2005-08-01 19:59:41',4527,266,'2005-08-10 00:00:41',2,'2006-02-15 21:30:53'),(10748,'2005-08-01 20:01:24',3769,181,'2005-08-05 19:55:24',1,'2006-02-15 21:30:53'),(10749,'2005-08-01 20:02:01',2953,214,'2005-08-03 14:20:01',1,'2006-02-15 21:30:53'),(10750,'2005-08-01 20:06:00',3206,201,'2005-08-07 15:48:00',1,'2006-02-15 21:30:53'),(10751,'2005-08-01 20:06:10',3257,518,'2005-08-10 22:36:10',2,'2006-02-15 21:30:53'),(10752,'2005-08-01 20:08:49',3203,147,'2005-08-10 15:41:49',2,'2006-02-15 21:30:53'),(10753,'2005-08-01 20:09:24',1557,273,'2005-08-09 19:31:24',1,'2006-02-15 21:30:53'),(10754,'2005-08-01 20:12:33',2122,460,'2005-08-10 01:07:33',2,'2006-02-15 21:30:53'),(10755,'2005-08-01 20:14:14',1217,239,'2005-08-07 01:04:14',1,'2006-02-15 21:30:53'),(10756,'2005-08-01 20:17:03',4247,596,'2005-08-08 18:31:03',2,'2006-02-15 21:30:53'),(10757,'2005-08-01 20:22:44',102,188,'2005-08-04 19:48:44',2,'2006-02-15 21:30:53'),(10758,'2005-08-01 20:22:51',191,373,'2005-08-10 16:11:51',1,'2006-02-15 21:30:53'),(10759,'2005-08-01 20:22:51',3528,256,'2005-08-07 22:07:51',1,'2006-02-15 21:30:53'),(10760,'2005-08-01 20:25:20',1311,497,'2005-08-09 16:57:20',1,'2006-02-15 21:30:53'),(10761,'2005-08-01 20:25:35',3967,36,'2005-08-08 15:20:35',2,'2006-02-15 21:30:53'),(10762,'2005-08-01 20:28:39',1363,208,'2005-08-05 17:36:39',1,'2006-02-15 21:30:53'),(10763,'2005-08-01 20:32:27',987,276,'2005-08-05 01:24:27',2,'2006-02-15 21:30:53'),(10764,'2005-08-01 20:32:42',3808,357,'2005-08-03 22:14:42',2,'2006-02-15 21:30:53'),(10765,'2005-08-01 20:34:51',566,337,'2005-08-04 00:02:51',1,'2006-02-15 21:30:53'),(10766,'2005-08-01 20:36:29',947,420,'2005-08-04 00:30:29',1,'2006-02-15 21:30:53'),(10767,'2005-08-01 20:37:23',2875,488,'2005-08-04 23:15:23',2,'2006-02-15 21:30:53'),(10768,'2005-08-01 20:39:32',454,273,'2005-08-10 19:41:32',1,'2006-02-15 21:30:53'),(10769,'2005-08-01 20:43:02',3222,348,'2005-08-05 02:32:02',1,'2006-02-15 21:30:53'),(10770,'2005-08-01 20:45:39',2567,262,'2005-08-04 19:21:39',1,'2006-02-15 21:30:53'),(10771,'2005-08-01 20:49:35',1274,485,'2005-08-10 16:58:35',1,'2006-02-15 21:30:53'),(10772,'2005-08-01 20:51:10',132,485,'2005-08-10 15:50:10',1,'2006-02-15 21:30:53'),(10773,'2005-08-01 20:53:45',3854,181,'2005-08-07 00:16:45',1,'2006-02-15 21:30:53'),(10774,'2005-08-01 20:54:33',4231,407,'2005-08-08 20:59:33',2,'2006-02-15 21:30:53'),(10775,'2005-08-01 20:59:52',4190,263,'2005-08-04 19:31:52',2,'2006-02-15 21:30:53'),(10776,'2005-08-01 20:59:58',1598,565,'2005-08-10 20:33:58',2,'2006-02-15 21:30:53'),(10777,'2005-08-01 21:03:50',3487,493,'2005-08-06 19:29:50',1,'2006-02-15 21:30:53'),(10778,'2005-08-01 21:11:39',1939,220,'2005-08-02 22:59:39',2,'2006-02-15 21:30:53'),(10779,'2005-08-01 21:11:54',2092,578,'2005-08-09 21:00:54',2,'2006-02-15 21:30:53'),(10780,'2005-08-01 21:14:24',1450,51,'2005-08-07 16:32:24',2,'2006-02-15 21:30:53'),(10781,'2005-08-01 21:22:41',1321,259,'2005-08-06 01:02:41',1,'2006-02-15 21:30:53'),(10782,'2005-08-01 21:23:25',1507,577,'2005-08-03 20:15:25',2,'2006-02-15 21:30:53'),(10783,'2005-08-01 21:23:37',1192,495,'2005-08-09 20:18:37',1,'2006-02-15 21:30:53'),(10784,'2005-08-01 21:24:28',3494,208,'2005-08-09 19:23:28',1,'2006-02-15 21:30:53'),(10785,'2005-08-01 21:24:55',2282,397,'2005-08-06 17:47:55',1,'2006-02-15 21:30:53'),(10786,'2005-08-01 21:29:34',50,490,'2005-08-10 17:27:34',1,'2006-02-15 21:30:53'),(10787,'2005-08-01 21:35:01',3246,127,'2005-08-10 23:30:01',1,'2006-02-15 21:30:53'),(10788,'2005-08-01 21:37:10',3350,160,'2005-08-03 01:33:10',1,'2006-02-15 21:30:53'),(10789,'2005-08-01 21:37:55',3298,403,'2005-08-07 17:01:55',2,'2006-02-15 21:30:53'),(10790,'2005-08-01 21:38:37',3080,274,'2005-08-08 17:20:37',2,'2006-02-15 21:30:53'),(10791,'2005-08-01 21:41:52',2061,338,'2005-08-04 03:28:52',2,'2006-02-15 21:30:53'),(10792,'2005-08-01 21:44:24',1037,264,'2005-08-02 19:48:24',2,'2006-02-15 21:30:53'),(10793,'2005-08-01 21:48:03',3018,225,'2005-08-10 19:16:03',1,'2006-02-15 21:30:53'),(10794,'2005-08-01 21:51:15',889,27,'2005-08-10 18:51:15',2,'2006-02-15 21:30:53'),(10795,'2005-08-01 21:56:37',2748,76,'2005-08-03 01:36:37',1,'2006-02-15 21:30:53'),(10796,'2005-08-01 21:56:41',2113,534,'2005-08-05 01:09:41',1,'2006-02-15 21:30:53'),(10797,'2005-08-01 22:02:51',1731,308,'2005-08-03 23:07:51',1,'2006-02-15 21:30:53'),(10798,'2005-08-01 22:03:10',382,141,'2005-08-08 01:34:10',1,'2006-02-15 21:30:53'),(10799,'2005-08-01 22:03:31',3282,145,'2005-08-06 20:19:31',2,'2006-02-15 21:30:53'),(10800,'2005-08-01 22:07:44',507,583,'2005-08-05 22:45:44',1,'2006-02-15 21:30:53'),(10801,'2005-08-01 22:09:35',3757,116,'2005-08-08 22:23:35',1,'2006-02-15 21:30:53'),(10802,'2005-08-01 22:18:32',3998,178,'2005-08-10 18:41:32',2,'2006-02-15 21:30:53'),(10803,'2005-08-01 22:22:07',3318,46,'2005-08-08 02:37:07',2,'2006-02-15 21:30:53'),(10804,'2005-08-01 22:22:11',2915,596,'2005-08-03 03:42:11',2,'2006-02-15 21:30:53'),(10805,'2005-08-01 22:23:37',557,203,'2005-08-05 01:22:37',2,'2006-02-15 21:30:53'),(10806,'2005-08-01 22:25:29',3553,89,'2005-08-04 18:46:29',2,'2006-02-15 21:30:53'),(10807,'2005-08-01 22:26:10',1673,287,'2005-08-05 21:55:10',1,'2006-02-15 21:30:53'),(10808,'2005-08-01 22:37:11',596,480,'2005-08-09 02:37:11',1,'2006-02-15 21:30:53'),(10809,'2005-08-01 22:39:27',1167,340,'2005-08-03 03:44:27',2,'2006-02-15 21:30:53'),(10810,'2005-08-01 22:40:39',2314,376,'2005-08-06 19:47:39',1,'2006-02-15 21:30:53'),(10811,'2005-08-01 22:41:15',4012,209,'2005-08-10 00:10:15',1,'2006-02-15 21:30:53'),(10812,'2005-08-01 22:41:16',3762,11,'2005-08-07 00:50:16',1,'2006-02-15 21:30:53'),(10813,'2005-08-01 22:43:00',3580,456,'2005-08-03 21:43:00',1,'2006-02-15 21:30:53'),(10814,'2005-08-01 22:43:12',2758,49,'2005-08-05 02:35:12',2,'2006-02-15 21:30:53'),(10815,'2005-08-01 22:46:21',877,62,'2005-08-03 02:43:21',2,'2006-02-15 21:30:53'),(10816,'2005-08-01 22:48:57',905,129,'2005-08-10 04:39:57',2,'2006-02-15 21:30:53'),(10817,'2005-08-01 22:51:08',3056,501,'2005-08-10 16:55:08',2,'2006-02-15 21:30:53'),(10818,'2005-08-01 22:52:45',4549,309,'2005-08-06 04:07:45',1,'2006-02-15 21:30:53'),(10819,'2005-08-01 22:52:57',983,308,'2005-08-06 00:08:57',1,'2006-02-15 21:30:53'),(10820,'2005-08-01 22:53:40',1487,97,'2005-08-02 17:59:40',2,'2006-02-15 21:30:53'),(10821,'2005-08-01 22:54:27',2016,522,'2005-08-07 02:15:27',2,'2006-02-15 21:30:53'),(10822,'2005-08-01 22:54:28',3895,343,'2005-08-02 17:19:28',1,'2006-02-15 21:30:53'),(10823,'2005-08-01 22:59:10',3322,405,'2005-08-08 23:44:10',1,'2006-02-15 21:30:53'),(10824,'2005-08-01 23:00:22',3948,482,'2005-08-04 04:14:22',2,'2006-02-15 21:30:53'),(10825,'2005-08-01 23:05:33',4386,587,'2005-08-04 04:33:33',1,'2006-02-15 21:30:53'),(10826,'2005-08-01 23:07:56',1228,476,'2005-08-08 04:10:56',2,'2006-02-15 21:30:53'),(10827,'2005-08-01 23:13:00',1590,46,'2005-08-08 02:51:00',1,'2006-02-15 21:30:53'),(10828,'2005-08-01 23:16:10',2448,471,'2005-08-09 21:17:10',1,'2006-02-15 21:30:53'),(10829,'2005-08-01 23:17:06',168,554,'2005-08-09 17:22:06',2,'2006-02-15 21:30:53'),(10830,'2005-08-01 23:18:06',4176,148,'2005-08-06 23:15:06',2,'2006-02-15 21:30:53'),(10831,'2005-08-01 23:22:45',1496,78,'2005-08-07 01:05:45',2,'2006-02-15 21:30:53'),(10832,'2005-08-01 23:24:53',4096,487,'2005-08-06 23:18:53',1,'2006-02-15 21:30:53'),(10833,'2005-08-01 23:25:55',4380,422,'2005-08-10 18:01:55',1,'2006-02-15 21:30:53'),(10834,'2005-08-01 23:28:00',2270,252,'2005-08-07 01:21:00',1,'2006-02-15 21:30:53'),(10835,'2005-08-01 23:28:49',351,90,'2005-08-10 21:28:49',2,'2006-02-15 21:30:53'),(10836,'2005-08-01 23:29:58',4534,217,'2005-08-07 23:03:58',2,'2006-02-15 21:30:53'),(10837,'2005-08-01 23:30:22',1816,410,'2005-08-07 23:02:22',1,'2006-02-15 21:30:53'),(10838,'2005-08-01 23:36:10',69,387,'2005-08-05 04:55:10',2,'2006-02-15 21:30:53'),(10839,'2005-08-01 23:37:39',2867,482,'2005-08-02 20:18:39',1,'2006-02-15 21:30:53'),(10840,'2005-08-01 23:38:34',583,593,'2005-08-07 02:36:34',2,'2006-02-15 21:30:53'),(10841,'2005-08-01 23:39:21',4337,102,'2005-08-07 20:47:21',1,'2006-02-15 21:30:53'),(10842,'2005-08-01 23:41:24',1300,137,'2005-08-11 03:48:24',1,'2006-02-15 21:30:53'),(10843,'2005-08-01 23:43:03',1286,192,'2005-08-09 23:49:03',2,'2006-02-15 21:30:53'),(10844,'2005-08-01 23:46:58',1516,333,'2005-08-09 19:42:58',2,'2006-02-15 21:30:53'),(10845,'2005-08-01 23:47:03',2737,42,'2005-08-08 01:57:03',1,'2006-02-15 21:30:53'),(10846,'2005-08-01 23:47:54',2277,441,'2005-08-08 01:10:54',1,'2006-02-15 21:30:53'),(10847,'2005-08-01 23:49:33',1200,280,'2005-08-10 05:37:33',2,'2006-02-15 21:30:53'),(10848,'2005-08-01 23:50:22',2630,368,'2005-08-06 00:52:22',1,'2006-02-15 21:30:53'),(10849,'2005-08-01 23:51:00',1683,278,'2005-08-10 19:59:00',2,'2006-02-15 21:30:53'),(10850,'2005-08-01 23:53:45',1853,199,'2005-08-10 21:11:45',1,'2006-02-15 21:30:53'),(10851,'2005-08-01 23:58:45',1359,154,'2005-08-04 00:59:45',1,'2006-02-15 21:30:53'),(10852,'2005-08-02 00:00:33',3862,27,'2005-08-03 23:09:33',1,'2006-02-15 21:30:53'),(10853,'2005-08-02 00:00:54',2682,41,'2005-08-10 05:37:54',2,'2006-02-15 21:30:53'),(10854,'2005-08-02 00:02:06',3295,356,'2005-08-02 21:55:06',2,'2006-02-15 21:30:53'),(10855,'2005-08-02 00:06:37',1366,274,'2005-08-03 00:39:37',1,'2006-02-15 21:30:53'),(10856,'2005-08-02 00:07:14',2010,451,'2005-08-04 02:48:14',2,'2006-02-15 21:30:53'),(10857,'2005-08-02 00:07:20',2961,360,'2005-08-04 02:35:20',1,'2006-02-15 21:30:53'),(10858,'2005-08-02 00:08:39',852,312,'2005-08-05 00:58:39',2,'2006-02-15 21:30:53'),(10859,'2005-08-02 00:11:39',277,375,'2005-08-08 19:52:39',1,'2006-02-15 21:30:53'),(10860,'2005-08-02 00:12:32',2827,25,'2005-08-04 03:50:32',1,'2006-02-15 21:30:53'),(10861,'2005-08-02 00:12:46',2162,131,'2005-08-09 04:09:46',2,'2006-02-15 21:30:53'),(10862,'2005-08-02 00:17:34',1077,176,'2005-08-08 00:31:34',2,'2006-02-15 21:30:53'),(10863,'2005-08-02 00:18:07',1170,161,'2005-08-10 06:16:07',2,'2006-02-15 21:30:53'),(10864,'2005-08-02 00:18:59',1694,134,'2005-08-08 22:20:59',1,'2006-02-15 21:30:53'),(10865,'2005-08-02 00:22:46',1485,201,'2005-08-09 05:08:46',2,'2006-02-15 21:30:53'),(10866,'2005-08-02 00:22:49',117,424,'2005-08-07 04:38:49',1,'2006-02-15 21:30:53'),(10867,'2005-08-02 00:24:15',2577,473,'2005-08-05 21:09:15',1,'2006-02-15 21:30:53'),(10868,'2005-08-02 00:25:15',2443,562,'2005-08-10 02:31:15',2,'2006-02-15 21:30:53'),(10869,'2005-08-02 00:26:54',2967,568,'2005-08-04 03:40:54',2,'2006-02-15 21:30:53'),(10870,'2005-08-02 00:27:12',1509,33,'2005-08-02 20:00:12',2,'2006-02-15 21:30:53'),(10871,'2005-08-02 00:27:24',104,75,'2005-08-05 06:25:24',1,'2006-02-15 21:30:53'),(10872,'2005-08-02 00:27:50',2470,84,'2005-08-06 20:34:50',2,'2006-02-15 21:30:53'),(10873,'2005-08-02 00:30:34',169,506,'2005-08-07 00:16:34',2,'2006-02-15 21:30:53'),(10874,'2005-08-02 00:31:00',2552,230,'2005-08-07 05:04:00',1,'2006-02-15 21:30:53'),(10875,'2005-08-02 00:31:44',862,175,'2005-08-05 22:24:44',2,'2006-02-15 21:30:53'),(10876,'2005-08-02 00:31:58',2161,559,'2005-08-05 21:45:58',1,'2006-02-15 21:30:53'),(10877,'2005-08-02 00:32:04',3337,487,'2005-08-07 19:44:04',2,'2006-02-15 21:30:53'),(10878,'2005-08-02 00:33:12',3511,45,'2005-08-07 06:02:12',1,'2006-02-15 21:30:53'),(10879,'2005-08-02 00:33:20',4415,334,'2005-08-09 04:13:20',2,'2006-02-15 21:30:53'),(10880,'2005-08-02 00:34:12',450,528,'2005-08-06 21:15:12',2,'2006-02-15 21:30:53'),(10881,'2005-08-02 00:38:14',781,253,'2005-08-09 22:02:14',2,'2006-02-15 21:30:53'),(10882,'2005-08-02 00:47:16',1349,54,'2005-08-09 22:11:16',1,'2006-02-15 21:30:53'),(10883,'2005-08-02 00:47:19',4,301,'2005-08-03 00:02:19',1,'2006-02-15 21:30:53'),(10884,'2005-08-02 00:47:33',3702,569,'2005-08-03 04:38:33',1,'2006-02-15 21:30:53'),(10885,'2005-08-02 00:51:37',4223,493,'2005-08-09 20:49:37',2,'2006-02-15 21:30:53'),(10886,'2005-08-02 00:52:34',943,77,'2005-08-08 00:30:34',1,'2006-02-15 21:30:53'),(10887,'2005-08-02 00:52:35',3450,573,'2005-08-03 05:37:35',1,'2006-02-15 21:30:53'),(10888,'2005-08-02 00:52:45',2412,428,'2005-08-03 03:07:45',1,'2006-02-15 21:30:53'),(10889,'2005-08-02 00:54:33',2098,64,'2005-08-07 19:42:33',1,'2006-02-15 21:30:53'),(10890,'2005-08-02 00:58:46',78,210,'2005-08-10 02:13:46',1,'2006-02-15 21:30:53'),(10891,'2005-08-02 01:09:55',1269,201,'2005-08-05 05:03:55',2,'2006-02-15 21:30:53'),(10892,'2005-08-02 01:12:06',3243,109,'2005-08-09 23:53:06',1,'2006-02-15 21:30:53'),(10893,'2005-08-02 01:12:13',2529,306,'2005-08-11 05:53:13',2,'2006-02-15 21:30:53'),(10894,'2005-08-02 01:12:35',598,51,'2005-08-09 22:55:35',1,'2006-02-15 21:30:53'),(10895,'2005-08-02 01:16:59',93,77,'2005-08-03 02:41:59',2,'2006-02-15 21:30:53'),(10896,'2005-08-02 01:19:33',2283,505,'2005-08-08 06:54:33',1,'2006-02-15 21:30:53'),(10897,'2005-08-02 01:23:42',291,338,'2005-08-03 23:27:42',1,'2006-02-15 21:30:53'),(10898,'2005-08-02 01:29:57',3814,23,'2005-08-06 00:07:57',2,'2006-02-15 21:30:53'),(10899,'2005-08-02 01:30:21',859,29,'2005-08-06 05:01:21',2,'2006-02-15 21:30:53'),(10900,'2005-08-02 01:34:26',1749,139,'2005-08-07 00:52:26',2,'2006-02-15 21:30:53'),(10901,'2005-08-02 01:35:44',3813,290,'2005-08-04 21:20:44',2,'2006-02-15 21:30:53'),(10902,'2005-08-02 01:35:46',3863,486,'2005-08-09 01:59:46',1,'2006-02-15 21:30:53'),(10903,'2005-08-02 01:41:59',2696,547,'2005-08-06 23:03:59',1,'2006-02-15 21:30:53'),(10904,'2005-08-02 01:43:02',3681,593,'2005-08-04 04:34:02',1,'2006-02-15 21:30:53'),(10905,'2005-08-02 01:45:59',2835,439,'2005-08-04 22:28:59',1,'2006-02-15 21:30:53'),(10906,'2005-08-02 01:47:04',3139,463,'2005-08-07 20:41:04',2,'2006-02-15 21:30:53'),(10907,'2005-08-02 01:51:48',1430,561,'2005-08-02 19:53:48',1,'2006-02-15 21:30:53'),(10908,'2005-08-02 01:53:06',1284,269,'2005-08-04 02:46:06',2,'2006-02-15 21:30:53'),(10909,'2005-08-02 01:53:59',3516,413,'2005-08-03 04:36:59',2,'2006-02-15 21:30:53'),(10910,'2005-08-02 01:54:34',2428,266,'2005-08-10 04:04:34',2,'2006-02-15 21:30:53'),(10911,'2005-08-02 01:58:36',769,195,'2005-08-08 07:37:36',2,'2006-02-15 21:30:53'),(10912,'2005-08-02 02:00:03',732,477,'2005-08-06 05:55:03',1,'2006-02-15 21:30:53'),(10913,'2005-08-02 02:04:03',3388,565,'2005-08-09 03:21:03',1,'2006-02-15 21:30:53'),(10914,'2005-08-02 02:04:43',585,584,'2005-08-06 03:00:43',1,'2006-02-15 21:30:53'),(10915,'2005-08-02 02:05:04',4568,418,'2005-08-10 21:58:04',2,'2006-02-15 21:30:53'),(10916,'2005-08-02 02:05:59',3841,25,'2005-08-06 03:46:59',2,'2006-02-15 21:30:53'),(10917,'2005-08-02 02:06:18',3146,378,'2005-08-03 22:42:18',1,'2006-02-15 21:30:53'),(10918,'2005-08-02 02:10:56',3418,2,'2005-08-02 21:23:56',1,'2006-02-15 21:30:53'),(10919,'2005-08-02 02:11:03',868,115,'2005-08-04 01:49:03',1,'2006-02-15 21:30:53'),(10920,'2005-08-02 02:14:10',3106,531,'2005-08-06 23:36:10',1,'2006-02-15 21:30:53'),(10921,'2005-08-02 02:14:33',1820,555,'2005-08-09 20:58:33',2,'2006-02-15 21:30:53'),(10922,'2005-08-02 02:14:40',4522,539,'2005-08-06 06:04:40',1,'2006-02-15 21:30:53'),(10923,'2005-08-02 02:15:01',2602,239,'2005-08-03 04:18:01',1,'2006-02-15 21:30:53'),(10924,'2005-08-02 02:20:19',589,540,'2005-08-11 05:50:19',2,'2006-02-15 21:30:53'),(10925,'2005-08-02 02:24:38',1475,98,'2005-08-03 05:06:38',1,'2006-02-15 21:30:53'),(10926,'2005-08-02 02:26:37',4016,460,'2005-08-09 20:55:37',1,'2006-02-15 21:30:53'),(10927,'2005-08-02 02:31:15',4125,288,'2005-08-10 20:41:15',1,'2006-02-15 21:30:53'),(10928,'2005-08-02 02:34:12',2885,211,'2005-08-07 21:13:12',1,'2006-02-15 21:30:53'),(10929,'2005-08-02 02:35:44',913,305,'2005-08-05 03:52:44',1,'2006-02-15 21:30:53'),(10930,'2005-08-02 02:38:07',2027,206,'2005-08-08 05:15:07',2,'2006-02-15 21:30:53'),(10931,'2005-08-02 02:44:59',3268,545,'2005-08-04 02:02:59',1,'2006-02-15 21:30:53'),(10932,'2005-08-02 02:46:22',1688,595,'2005-08-06 01:49:22',2,'2006-02-15 21:30:53'),(10933,'2005-08-02 02:50:49',3970,313,'2005-08-08 04:39:49',1,'2006-02-15 21:30:53'),(10934,'2005-08-02 02:52:18',4458,142,'2005-08-06 01:23:18',2,'2006-02-15 21:30:53'),(10935,'2005-08-02 02:54:53',4373,42,'2005-08-10 00:07:53',2,'2006-02-15 21:30:53'),(10936,'2005-08-02 02:55:04',463,445,'2005-08-11 07:56:04',1,'2006-02-15 21:30:53'),(10937,'2005-08-02 03:00:18',1320,416,'2005-08-11 03:44:18',2,'2006-02-15 21:30:53'),(10938,'2005-08-02 03:05:22',3918,502,'2005-08-05 08:31:22',1,'2006-02-15 21:30:53'),(10939,'2005-08-02 03:06:20',2131,161,'2005-08-04 01:22:20',2,'2006-02-15 21:30:53'),(10940,'2005-08-02 03:08:29',3760,120,'2005-08-07 21:28:29',2,'2006-02-15 21:30:53'),(10941,'2005-08-02 03:11:33',2132,531,'2005-08-10 07:31:33',1,'2006-02-15 21:30:53'),(10942,'2005-08-02 03:16:31',2304,78,'2005-08-11 02:46:31',2,'2006-02-15 21:30:53'),(10943,'2005-08-02 03:17:29',1036,377,'2005-08-03 00:50:29',2,'2006-02-15 21:30:53'),(10944,'2005-08-02 03:20:03',2373,470,'2005-08-04 04:13:03',2,'2006-02-15 21:30:53'),(10945,'2005-08-02 03:20:23',3684,532,'2005-08-09 03:23:23',1,'2006-02-15 21:30:53'),(10946,'2005-08-02 03:20:39',4271,56,'2005-08-05 02:59:39',1,'2006-02-15 21:30:53'),(10947,'2005-08-02 03:23:17',2510,500,'2005-08-07 05:25:17',1,'2006-02-15 21:30:53'),(10948,'2005-08-02 03:23:23',4429,220,'2005-08-05 23:18:23',1,'2006-02-15 21:30:53'),(10949,'2005-08-02 03:24:04',2309,389,'2005-08-06 08:36:04',2,'2006-02-15 21:30:53'),(10950,'2005-08-02 03:25:08',707,451,'2005-08-07 23:11:08',2,'2006-02-15 21:30:53'),(10951,'2005-08-02 03:26:35',173,144,'2005-08-07 22:03:35',1,'2006-02-15 21:30:53'),(10952,'2005-08-02 03:28:21',3218,111,'2005-08-09 01:41:21',1,'2006-02-15 21:30:53'),(10953,'2005-08-02 03:28:38',1510,483,'2005-08-11 03:53:38',1,'2006-02-15 21:30:53'),(10954,'2005-08-02 03:30:24',3406,20,'2005-08-08 05:52:24',2,'2006-02-15 21:30:53'),(10955,'2005-08-02 03:32:34',618,490,'2005-08-09 21:53:34',2,'2006-02-15 21:30:53'),(10956,'2005-08-02 03:33:14',4372,54,'2005-08-09 09:20:14',2,'2006-02-15 21:30:53'),(10957,'2005-08-02 03:33:30',1652,447,'2005-08-10 06:19:30',2,'2006-02-15 21:30:53'),(10958,'2005-08-02 03:37:13',2174,160,'2005-08-04 23:28:13',2,'2006-02-15 21:30:53'),(10959,'2005-08-02 03:39:39',4233,431,'2005-08-11 07:20:39',1,'2006-02-15 21:30:53'),(10960,'2005-08-02 03:46:18',3536,399,'2005-08-11 01:29:18',1,'2006-02-15 21:30:53'),(10961,'2005-08-02 03:47:55',1416,375,'2005-08-09 02:03:55',1,'2006-02-15 21:30:53'),(10962,'2005-08-02 03:48:13',1953,538,'2005-08-07 00:04:13',1,'2006-02-15 21:30:53'),(10963,'2005-08-02 03:48:17',4501,36,'2005-08-02 22:15:17',1,'2006-02-15 21:30:53'),(10964,'2005-08-02 03:56:23',2356,36,'2005-08-09 23:11:23',2,'2006-02-15 21:30:53'),(10965,'2005-08-02 04:00:19',2192,580,'2005-08-09 03:27:19',1,'2006-02-15 21:30:53'),(10966,'2005-08-02 04:00:47',478,584,'2005-08-08 01:58:47',2,'2006-02-15 21:30:53'),(10967,'2005-08-02 04:02:16',683,149,'2005-08-09 07:57:16',1,'2006-02-15 21:30:53'),(10968,'2005-08-02 04:03:13',888,234,'2005-08-11 08:36:13',1,'2006-02-15 21:30:53'),(10969,'2005-08-02 04:04:32',1898,244,'2005-08-09 23:18:32',1,'2006-02-15 21:30:53'),(10970,'2005-08-02 04:06:46',1202,260,'2005-08-10 04:27:46',1,'2006-02-15 21:30:53'),(10971,'2005-08-02 04:08:17',2789,383,'2005-08-09 00:02:17',1,'2006-02-15 21:30:53'),(10972,'2005-08-02 04:08:25',1928,348,'2005-08-09 23:25:25',1,'2006-02-15 21:30:53'),(10973,'2005-08-02 04:09:42',3562,127,'2005-08-08 05:24:42',2,'2006-02-15 21:30:53'),(10974,'2005-08-02 04:10:52',690,491,'2005-08-09 08:26:52',1,'2006-02-15 21:30:53'),(10975,'2005-08-02 04:11:25',2616,361,'2005-08-04 04:39:25',2,'2006-02-15 21:30:53'),(10976,'2005-08-02 04:11:48',2418,326,'2005-08-06 06:30:48',2,'2006-02-15 21:30:53'),(10977,'2005-08-02 04:12:17',2302,300,'2005-08-06 06:52:17',2,'2006-02-15 21:30:53'),(10978,'2005-08-02 04:12:27',1597,487,'2005-08-10 08:19:27',2,'2006-02-15 21:30:53'),(10979,'2005-08-02 04:16:37',2625,160,'2005-08-06 00:01:37',2,'2006-02-15 21:30:53'),(10980,'2005-08-02 04:17:32',150,547,'2005-08-04 05:12:32',1,'2006-02-15 21:30:53'),(10981,'2005-08-02 04:17:53',3699,305,'2005-08-09 03:45:53',2,'2006-02-15 21:30:53'),(10982,'2005-08-02 04:19:11',2508,345,'2005-08-04 00:20:11',2,'2006-02-15 21:30:53'),(10983,'2005-08-02 04:24:23',4502,380,'2005-08-09 08:05:23',2,'2006-02-15 21:30:53'),(10984,'2005-08-02 04:30:02',1813,450,'2005-08-10 02:51:02',1,'2006-02-15 21:30:53'),(10985,'2005-08-02 04:30:19',2734,186,'2005-08-03 05:18:19',1,'2006-02-15 21:30:53'),(10986,'2005-08-02 04:35:24',555,597,'2005-08-09 07:34:24',2,'2006-02-15 21:30:53'),(10987,'2005-08-02 04:36:52',968,349,'2005-08-04 00:03:52',1,'2006-02-15 21:30:53'),(10988,'2005-08-02 04:38:17',1157,509,'2005-08-09 00:09:17',1,'2006-02-15 21:30:53'),(10989,'2005-08-02 04:40:54',2272,7,'2005-08-09 03:39:54',2,'2006-02-15 21:30:53'),(10990,'2005-08-02 04:41:06',262,111,'2005-08-10 05:02:06',2,'2006-02-15 21:30:53'),(10991,'2005-08-02 04:41:12',2854,77,'2005-08-05 05:36:12',2,'2006-02-15 21:30:53'),(10992,'2005-08-02 04:41:17',11,180,'2005-08-09 02:13:17',1,'2006-02-15 21:30:53'),(10993,'2005-08-02 04:45:01',292,383,'2005-08-04 03:32:01',1,'2006-02-15 21:30:53'),(10994,'2005-08-02 04:46:53',647,323,'2005-08-11 10:30:53',1,'2006-02-15 21:30:53'),(10995,'2005-08-02 04:48:00',2891,340,'2005-08-07 05:00:00',1,'2006-02-15 21:30:53'),(10996,'2005-08-02 04:48:11',2235,26,'2005-08-06 08:00:11',1,'2006-02-15 21:30:53'),(10997,'2005-08-02 04:49:02',300,334,'2005-08-10 08:13:02',2,'2006-02-15 21:30:53'),(10998,'2005-08-02 04:50:55',1479,435,'2005-08-11 03:43:55',1,'2006-02-15 21:30:53'),(10999,'2005-08-02 04:53:13',2013,227,'2005-08-06 04:36:13',2,'2006-02-15 21:30:53'),(11000,'2005-08-02 04:56:14',264,265,'2005-08-07 01:39:14',2,'2006-02-15 21:30:53'),(11001,'2005-08-02 04:56:45',3701,5,'2005-08-11 08:04:45',1,'2006-02-15 21:30:53'),(11002,'2005-08-02 05:02:56',3073,583,'2005-08-05 07:04:56',2,'2006-02-15 21:30:53'),(11003,'2005-08-02 05:03:05',4301,272,'2005-08-05 10:48:05',2,'2006-02-15 21:30:53'),(11004,'2005-08-02 05:04:18',200,45,'2005-08-11 00:03:18',2,'2006-02-15 21:30:53'),(11005,'2005-08-02 05:05:23',1547,216,'2005-08-07 23:28:23',2,'2006-02-15 21:30:53'),(11006,'2005-08-02 05:05:52',2776,473,'2005-08-05 03:33:52',1,'2006-02-15 21:30:53'),(11007,'2005-08-02 05:05:53',4172,98,'2005-08-05 01:56:53',2,'2006-02-15 21:30:53'),(11008,'2005-08-02 05:06:17',2831,375,'2005-08-10 01:22:17',2,'2006-02-15 21:30:53'),(11009,'2005-08-02 05:06:23',2574,596,'2005-08-08 03:02:23',1,'2006-02-15 21:30:53'),(11010,'2005-08-02 05:06:27',869,326,'2005-08-03 23:47:27',2,'2006-02-15 21:30:53'),(11011,'2005-08-02 05:07:07',3981,256,'2005-08-09 07:16:07',1,'2006-02-15 21:30:53'),(11012,'2005-08-02 05:09:42',542,162,'2005-08-05 07:22:42',2,'2006-02-15 21:30:53'),(11013,'2005-08-02 05:10:54',2993,527,'2005-08-10 08:59:54',1,'2006-02-15 21:30:53'),(11014,'2005-08-02 05:12:22',393,269,'2005-08-07 09:33:22',1,'2006-02-15 21:30:53'),(11015,'2005-08-02 05:13:00',4331,138,'2005-08-08 04:18:00',2,'2006-02-15 21:30:53'),(11016,'2005-08-02 05:19:13',4446,116,'2005-08-05 05:31:13',1,'2006-02-15 21:30:53'),(11017,'2005-08-02 05:19:51',4140,480,'2005-08-09 00:36:51',2,'2006-02-15 21:30:53'),(11018,'2005-08-02 05:27:53',2988,197,'2005-08-07 10:48:53',1,'2006-02-15 21:30:53'),(11019,'2005-08-02 05:29:31',3227,112,'2005-08-04 00:42:31',1,'2006-02-15 21:30:53'),(11020,'2005-08-02 05:29:48',1645,242,'2005-08-06 05:36:48',2,'2006-02-15 21:30:53'),(11021,'2005-08-02 05:30:11',2069,385,'2005-08-05 05:50:11',2,'2006-02-15 21:30:53'),(11022,'2005-08-02 05:35:03',827,206,'2005-08-09 10:20:03',2,'2006-02-15 21:30:53'),(11023,'2005-08-02 05:36:38',3617,6,'2005-08-10 05:39:38',1,'2006-02-15 21:30:53'),(11024,'2005-08-02 05:38:31',2284,427,'2005-08-11 04:47:31',1,'2006-02-15 21:30:53'),(11025,'2005-08-02 05:39:12',2253,419,'2005-08-08 00:09:12',2,'2006-02-15 21:30:53'),(11026,'2005-08-02 05:46:05',3554,531,'2005-08-07 06:27:05',2,'2006-02-15 21:30:53'),(11027,'2005-08-02 05:47:10',571,412,'2005-08-05 23:51:10',1,'2006-02-15 21:30:53'),(11028,'2005-08-02 05:48:20',2764,66,'2005-08-10 11:21:20',1,'2006-02-15 21:30:53'),(11029,'2005-08-02 05:51:10',1023,45,'2005-08-05 04:15:10',1,'2006-02-15 21:30:53'),(11030,'2005-08-02 05:51:20',1437,569,'2005-08-06 04:20:20',1,'2006-02-15 21:30:53'),(11031,'2005-08-02 05:52:58',1205,361,'2005-08-07 07:14:58',2,'2006-02-15 21:30:53'),(11032,'2005-08-02 05:53:35',1119,359,'2005-08-05 02:58:35',2,'2006-02-15 21:30:53'),(11033,'2005-08-02 05:54:17',3323,155,'2005-08-09 10:50:17',2,'2006-02-15 21:30:53'),(11034,'2005-08-02 05:54:53',2939,586,'2005-08-09 04:14:53',1,'2006-02-15 21:30:53'),(11035,'2005-08-02 05:55:39',3776,305,'2005-08-08 06:46:39',2,'2006-02-15 21:30:53'),(11036,'2005-08-02 05:56:29',2054,502,'2005-08-05 05:00:29',2,'2006-02-15 21:30:53'),(11037,'2005-08-02 05:58:12',4291,220,'2005-08-07 11:26:12',1,'2006-02-15 21:30:53'),(11038,'2005-08-02 05:59:42',4452,403,'2005-08-08 04:37:42',2,'2006-02-15 21:30:53'),(11039,'2005-08-02 06:00:53',549,170,'2005-08-05 06:19:53',2,'2006-02-15 21:30:53'),(11040,'2005-08-02 06:03:22',2297,223,'2005-08-03 07:58:22',1,'2006-02-15 21:30:53'),(11041,'2005-08-02 06:03:53',1897,435,'2005-08-03 11:57:53',1,'2006-02-15 21:30:53'),(11042,'2005-08-02 06:04:33',4149,439,'2005-08-11 01:30:33',1,'2006-02-15 21:30:53'),(11043,'2005-08-02 06:04:44',65,573,'2005-08-06 11:37:44',1,'2006-02-15 21:30:53'),(11044,'2005-08-02 06:05:27',2922,122,'2005-08-06 05:15:27',1,'2006-02-15 21:30:53'),(11045,'2005-08-02 06:07:54',2214,402,'2005-08-08 00:37:54',1,'2006-02-15 21:30:53'),(11046,'2005-08-02 06:08:34',2105,526,'2005-08-06 08:45:34',2,'2006-02-15 21:30:53'),(11047,'2005-08-02 06:09:20',2267,416,'2005-08-11 08:36:20',1,'2006-02-15 21:30:53'),(11048,'2005-08-02 06:15:07',206,491,'2005-08-04 02:47:07',2,'2006-02-15 21:30:53'),(11049,'2005-08-02 06:15:40',4352,38,'2005-08-11 10:09:40',2,'2006-02-15 21:30:53'),(11050,'2005-08-02 06:17:16',2077,234,'2005-08-09 05:58:16',1,'2006-02-15 21:30:53'),(11051,'2005-08-02 06:23:39',4189,446,'2005-08-06 06:46:39',2,'2006-02-15 21:30:53'),(11052,'2005-08-02 06:26:19',1089,331,'2005-08-06 04:20:19',2,'2006-02-15 21:30:53'),(11053,'2005-08-02 06:27:13',2599,50,'2005-08-09 11:24:13',2,'2006-02-15 21:30:53'),(11054,'2005-08-02 06:33:07',728,577,'2005-08-10 02:52:07',2,'2006-02-15 21:30:53'),(11055,'2005-08-02 06:36:05',3851,182,'2005-08-06 00:36:05',1,'2006-02-15 21:30:53'),(11056,'2005-08-02 06:36:27',1404,88,'2005-08-10 06:02:27',1,'2006-02-15 21:30:53'),(11057,'2005-08-02 06:38:19',3143,137,'2005-08-11 03:43:19',1,'2006-02-15 21:30:53'),(11058,'2005-08-02 06:38:44',3270,274,'2005-08-06 06:45:44',1,'2006-02-15 21:30:53'),(11059,'2005-08-02 06:41:38',428,189,'2005-08-09 04:34:38',1,'2006-02-15 21:30:53'),(11060,'2005-08-02 06:48:18',3395,496,'2005-08-10 11:49:18',1,'2006-02-15 21:30:53'),(11061,'2005-08-02 06:50:18',809,245,'2005-08-07 07:41:18',2,'2006-02-15 21:30:53'),(11062,'2005-08-02 06:52:54',2014,346,'2005-08-07 10:59:54',1,'2006-02-15 21:30:53'),(11063,'2005-08-02 06:53:48',2261,461,'2005-08-05 03:38:48',2,'2006-02-15 21:30:53'),(11064,'2005-08-02 06:55:17',3012,338,'2005-08-06 03:29:17',1,'2006-02-15 21:30:53'),(11065,'2005-08-02 06:57:55',2226,357,'2005-08-06 01:31:55',2,'2006-02-15 21:30:53'),(11066,'2005-08-02 06:58:32',4213,373,'2005-08-10 01:27:32',2,'2006-02-15 21:30:53'),(11067,'2005-08-02 07:03:24',965,85,'2005-08-10 08:59:24',2,'2006-02-15 21:30:53'),(11068,'2005-08-02 07:08:07',1262,52,'2005-08-09 11:15:07',2,'2006-02-15 21:30:53'),(11069,'2005-08-02 07:09:34',57,4,'2005-08-08 08:39:34',1,'2006-02-15 21:30:53'),(11070,'2005-08-02 07:10:39',4020,298,'2005-08-03 07:43:39',1,'2006-02-15 21:30:53'),(11071,'2005-08-02 07:10:53',4264,294,'2005-08-07 09:58:53',1,'2006-02-15 21:30:53'),(11072,'2005-08-02 07:10:57',3078,21,'2005-08-04 07:42:57',1,'2006-02-15 21:30:53'),(11073,'2005-08-02 07:13:03',4232,234,'2005-08-03 05:46:03',1,'2006-02-15 21:30:53'),(11074,'2005-08-02 07:21:43',1439,277,'2005-08-08 05:18:43',1,'2006-02-15 21:30:53'),(11075,'2005-08-02 07:24:23',3027,503,'2005-08-08 04:55:23',1,'2006-02-15 21:30:53'),(11076,'2005-08-02 07:24:47',837,211,'2005-08-10 09:16:47',1,'2006-02-15 21:30:53'),(11077,'2005-08-02 07:26:43',4254,158,'2005-08-09 10:34:43',2,'2006-02-15 21:30:53'),(11078,'2005-08-02 07:26:58',2362,587,'2005-08-07 01:59:58',2,'2006-02-15 21:30:53'),(11079,'2005-08-02 07:29:10',3185,29,'2005-08-07 01:59:10',2,'2006-02-15 21:30:53'),(11080,'2005-08-02 07:29:56',4303,571,'2005-08-08 05:58:56',1,'2006-02-15 21:30:53'),(11081,'2005-08-02 07:30:14',3804,513,'2005-08-09 08:50:14',1,'2006-02-15 21:30:53'),(11082,'2005-08-02 07:30:19',3037,190,'2005-08-07 05:20:19',2,'2006-02-15 21:30:53'),(11083,'2005-08-02 07:32:01',4395,295,'2005-08-08 02:23:01',1,'2006-02-15 21:30:53'),(11084,'2005-08-02 07:34:19',32,369,'2005-08-07 09:30:19',1,'2006-02-15 21:30:53'),(11085,'2005-08-02 07:36:44',3207,276,'2005-08-04 03:32:44',1,'2006-02-15 21:30:53'),(11086,'2005-08-02 07:38:44',552,371,'2005-08-11 06:30:44',1,'2006-02-15 21:30:53'),(11087,'2005-08-02 07:41:41',654,2,'2005-08-10 10:37:41',2,'2006-02-15 21:30:53'),(11088,'2005-08-02 07:48:31',2739,138,'2005-08-05 08:09:31',2,'2006-02-15 21:30:53'),(11089,'2005-08-02 07:52:20',825,421,'2005-08-07 07:24:20',1,'2006-02-15 21:30:53'),(11090,'2005-08-02 07:56:40',2743,89,'2005-08-10 07:58:40',1,'2006-02-15 21:30:53'),(11091,'2005-08-02 07:56:41',1659,423,'2005-08-07 05:35:41',2,'2006-02-15 21:30:53'),(11092,'2005-08-02 07:58:50',569,60,'2005-08-04 03:23:50',2,'2006-02-15 21:30:53'),(11093,'2005-08-02 07:59:49',239,82,'2005-08-11 06:01:49',1,'2006-02-15 21:30:53'),(11094,'2005-08-02 08:03:02',3095,18,'2005-08-03 11:34:02',1,'2006-02-15 21:30:53'),(11095,'2005-08-02 08:03:20',3517,278,'2005-08-10 05:20:20',1,'2006-02-15 21:30:53'),(11096,'2005-08-02 08:05:19',1436,34,'2005-08-04 07:28:19',2,'2006-02-15 21:30:53'),(11097,'2005-08-02 08:05:46',2493,575,'2005-08-10 12:00:46',2,'2006-02-15 21:30:53'),(11098,'2005-08-02 08:06:18',158,570,'2005-08-11 04:50:18',2,'2006-02-15 21:30:53'),(11099,'2005-08-02 08:07:12',1444,102,'2005-08-07 12:11:12',2,'2006-02-15 21:30:53'),(11100,'2005-08-02 08:08:00',3047,65,'2005-08-10 07:19:00',1,'2006-02-15 21:30:53'),(11101,'2005-08-02 08:08:24',2621,80,'2005-08-06 05:55:24',1,'2006-02-15 21:30:53'),(11102,'2005-08-02 08:08:30',3112,73,'2005-08-04 09:16:30',1,'2006-02-15 21:30:53'),(11103,'2005-08-02 08:09:54',1879,158,'2005-08-07 12:05:54',1,'2006-02-15 21:30:53'),(11104,'2005-08-02 08:09:58',3042,196,'2005-08-05 11:55:58',1,'2006-02-15 21:30:53'),(11105,'2005-08-02 08:13:31',3170,245,'2005-08-03 11:08:31',1,'2006-02-15 21:30:53'),(11106,'2005-08-02 08:17:38',2307,287,'2005-08-03 07:54:38',1,'2006-02-15 21:30:53'),(11107,'2005-08-02 08:19:38',2217,410,'2005-08-07 08:46:38',2,'2006-02-15 21:30:53'),(11108,'2005-08-02 08:20:01',560,447,'2005-08-03 13:22:01',2,'2006-02-15 21:30:53'),(11109,'2005-08-02 08:20:29',2683,479,'2005-08-09 11:35:29',2,'2006-02-15 21:30:53'),(11110,'2005-08-02 08:20:31',4311,4,'2005-08-04 05:06:31',2,'2006-02-15 21:30:53'),(11111,'2005-08-02 08:21:27',334,378,'2005-08-06 07:48:27',2,'2006-02-15 21:30:53'),(11112,'2005-08-02 08:25:14',526,207,'2005-08-03 08:41:14',1,'2006-02-15 21:30:53'),(11113,'2005-08-02 08:26:24',1654,231,'2005-08-07 09:24:24',2,'2006-02-15 21:30:53'),(11114,'2005-08-02 08:26:45',1273,572,'2005-08-03 08:41:45',2,'2006-02-15 21:30:53'),(11115,'2005-08-02 08:31:06',3812,408,'2005-08-04 02:36:06',2,'2006-02-15 21:30:53'),(11116,'2005-08-02 08:34:40',434,344,'2005-08-09 04:56:40',1,'2006-02-15 21:30:53'),(11117,'2005-08-02 08:36:03',1613,474,'2005-08-05 06:56:03',2,'2006-02-15 21:30:53'),(11118,'2005-08-02 08:44:18',2411,15,'2005-08-05 08:08:18',2,'2006-02-15 21:30:53'),(11119,'2005-08-02 08:44:44',4307,489,'2005-08-10 11:32:44',2,'2006-02-15 21:30:53'),(11120,'2005-08-02 08:47:04',4185,322,'2005-08-05 05:33:04',1,'2006-02-15 21:30:53'),(11121,'2005-08-02 08:48:31',1025,572,'2005-08-04 05:08:31',2,'2006-02-15 21:30:53'),(11122,'2005-08-02 08:49:09',3021,383,'2005-08-08 04:33:09',1,'2006-02-15 21:30:53'),(11123,'2005-08-02 08:54:17',1926,150,'2005-08-09 11:11:17',2,'2006-02-15 21:30:53'),(11124,'2005-08-02 08:55:25',698,249,'2005-08-10 10:59:25',1,'2006-02-15 21:30:53'),(11125,'2005-08-02 08:55:35',2081,237,'2005-08-03 09:12:35',1,'2006-02-15 21:30:53'),(11126,'2005-08-02 08:59:04',3310,47,'2005-08-04 11:00:04',1,'2006-02-15 21:30:53'),(11127,'2005-08-02 09:00:59',1106,351,'2005-08-05 11:54:59',2,'2006-02-15 21:30:53'),(11128,'2005-08-02 09:03:25',3472,386,'2005-08-09 04:36:25',1,'2006-02-15 21:30:53'),(11129,'2005-08-02 09:08:44',23,566,'2005-08-04 04:00:44',1,'2006-02-15 21:30:53'),(11130,'2005-08-02 09:08:59',684,329,'2005-08-09 07:50:59',2,'2006-02-15 21:30:53'),(11131,'2005-08-02 09:10:04',1860,293,'2005-08-08 09:59:04',2,'2006-02-15 21:30:53'),(11132,'2005-08-02 09:14:09',2212,398,'2005-08-08 06:39:09',1,'2006-02-15 21:30:53'),(11133,'2005-08-02 09:15:45',675,120,'2005-08-04 10:39:45',1,'2006-02-15 21:30:53'),(11134,'2005-08-02 09:19:22',2641,372,'2005-08-11 03:56:22',1,'2006-02-15 21:30:53'),(11135,'2005-08-02 09:22:25',799,32,'2005-08-04 14:30:25',2,'2006-02-15 21:30:53'),(11136,'2005-08-02 09:22:57',1315,559,'2005-08-08 14:12:57',2,'2006-02-15 21:30:53'),(11137,'2005-08-02 09:25:31',2500,310,'2005-08-08 08:10:31',1,'2006-02-15 21:30:53'),(11138,'2005-08-02 09:26:16',4250,458,'2005-08-11 07:50:16',2,'2006-02-15 21:30:53'),(11139,'2005-08-02 09:27:36',1011,236,'2005-08-08 14:07:36',2,'2006-02-15 21:30:53'),(11140,'2005-08-02 09:27:45',3836,132,'2005-08-05 04:10:45',1,'2006-02-15 21:30:53'),(11141,'2005-08-02 09:29:11',1614,15,'2005-08-04 07:50:11',1,'2006-02-15 21:30:53'),(11142,'2005-08-02 09:30:11',2954,306,'2005-08-05 06:52:11',1,'2006-02-15 21:30:53'),(11143,'2005-08-02 09:32:54',3382,100,'2005-08-05 12:04:54',2,'2006-02-15 21:30:53'),(11144,'2005-08-02 09:39:17',2724,376,'2005-08-03 11:53:17',2,'2006-02-15 21:30:53'),(11145,'2005-08-02 09:43:24',1270,291,'2005-08-05 15:29:24',1,'2006-02-15 21:30:53'),(11146,'2005-08-02 09:45:32',2488,552,'2005-08-07 07:33:32',1,'2006-02-15 21:30:53'),(11147,'2005-08-02 09:45:54',1562,597,'2005-08-07 07:28:54',1,'2006-02-15 21:30:53'),(11148,'2005-08-02 09:47:08',2991,230,'2005-08-08 10:57:08',1,'2006-02-15 21:30:53'),(11149,'2005-08-02 09:51:43',3254,358,'2005-08-11 09:40:43',2,'2006-02-15 21:30:53'),(11150,'2005-08-02 09:51:46',2193,527,'2005-08-05 09:03:46',2,'2006-02-15 21:30:53'),(11151,'2005-08-02 09:52:44',3939,391,'2005-08-05 06:29:44',2,'2006-02-15 21:30:53'),(11152,'2005-08-02 09:53:36',3887,494,'2005-08-11 14:58:36',1,'2006-02-15 21:30:53'),(11153,'2005-08-02 09:54:19',1546,220,'2005-08-10 14:57:19',1,'2006-02-15 21:30:53'),(11154,'2005-08-02 09:54:50',697,160,'2005-08-06 14:48:50',2,'2006-02-15 21:30:53'),(11155,'2005-08-02 09:55:28',2001,73,'2005-08-03 06:00:28',2,'2006-02-15 21:30:53'),(11156,'2005-08-02 09:56:06',907,465,'2005-08-04 13:36:06',2,'2006-02-15 21:30:53'),(11157,'2005-08-02 09:58:15',1313,244,'2005-08-06 04:23:15',2,'2006-02-15 21:30:53'),(11158,'2005-08-02 09:58:28',530,190,'2005-08-10 13:54:28',2,'2006-02-15 21:30:53'),(11159,'2005-08-02 10:00:55',4575,249,'2005-08-05 10:38:55',1,'2006-02-15 21:30:53'),(11160,'2005-08-02 10:05:30',3260,436,'2005-08-07 08:30:30',1,'2006-02-15 21:30:53'),(11161,'2005-08-02 10:05:57',3321,503,'2005-08-06 05:05:57',2,'2006-02-15 21:30:53'),(11162,'2005-08-02 10:07:54',1809,277,'2005-08-05 11:35:54',2,'2006-02-15 21:30:53'),(11163,'2005-08-02 10:08:40',1925,505,'2005-08-05 14:59:40',1,'2006-02-15 21:30:53'),(11164,'2005-08-02 10:10:56',4450,580,'2005-08-10 11:20:56',2,'2006-02-15 21:30:53'),(11165,'2005-08-02 10:12:17',2059,513,'2005-08-04 11:09:17',1,'2006-02-15 21:30:53'),(11166,'2005-08-02 10:14:58',638,11,'2005-08-11 11:43:58',1,'2006-02-15 21:30:53'),(11167,'2005-08-02 10:15:51',148,451,'2005-08-09 09:18:51',1,'2006-02-15 21:30:53'),(11168,'2005-08-02 10:19:42',468,555,'2005-08-04 08:42:42',1,'2006-02-15 21:30:53'),(11169,'2005-08-02 10:19:42',2392,329,'2005-08-07 05:45:42',1,'2006-02-15 21:30:53'),(11170,'2005-08-02 10:21:53',1333,547,'2005-08-08 11:08:53',1,'2006-02-15 21:30:53'),(11171,'2005-08-02 10:23:41',3117,339,'2005-08-04 14:22:41',2,'2006-02-15 21:30:53'),(11172,'2005-08-02 10:27:52',1207,76,'2005-08-11 12:47:52',1,'2006-02-15 21:30:53'),(11173,'2005-08-02 10:28:00',4296,146,'2005-08-10 14:53:00',1,'2006-02-15 21:30:53'),(11174,'2005-08-02 10:32:11',1551,328,'2005-08-09 12:30:11',1,'2006-02-15 21:30:53'),(11175,'2005-08-02 10:38:47',85,164,'2005-08-07 07:11:47',2,'2006-02-15 21:30:53'),(11176,'2005-08-02 10:39:43',1448,37,'2005-08-09 14:42:43',2,'2006-02-15 21:30:53'),(11177,'2005-08-02 10:43:48',1149,2,'2005-08-10 10:55:48',2,'2006-02-15 21:30:53'),(11178,'2005-08-02 10:48:10',2613,342,'2005-08-06 06:07:10',1,'2006-02-15 21:30:53'),(11179,'2005-08-02 10:50:06',4376,5,'2005-08-04 05:24:06',1,'2006-02-15 21:30:53'),(11180,'2005-08-02 10:54:30',3632,534,'2005-08-11 15:55:30',1,'2006-02-15 21:30:53'),(11181,'2005-08-02 10:55:03',3127,557,'2005-08-07 10:43:03',1,'2006-02-15 21:30:53'),(11182,'2005-08-02 10:55:14',605,54,'2005-08-06 05:58:14',1,'2006-02-15 21:30:53'),(11183,'2005-08-02 11:00:32',833,102,'2005-08-04 08:59:32',2,'2006-02-15 21:30:53'),(11184,'2005-08-02 11:01:26',871,259,'2005-08-11 06:29:26',1,'2006-02-15 21:30:53'),(11185,'2005-08-02 11:04:35',1215,469,'2005-08-05 13:48:35',2,'2006-02-15 21:30:53'),(11186,'2005-08-02 11:12:08',733,353,'2005-08-03 10:46:08',1,'2006-02-15 21:30:53'),(11187,'2005-08-02 11:16:19',3626,410,'2005-08-11 06:11:19',1,'2006-02-15 21:30:53'),(11188,'2005-08-02 11:17:11',1372,485,'2005-08-08 16:46:11',2,'2006-02-15 21:30:53'),(11189,'2005-08-02 11:17:23',729,565,'2005-08-09 16:30:23',2,'2006-02-15 21:30:53'),(11190,'2005-08-02 11:21:34',922,254,'2005-08-05 05:23:34',1,'2006-02-15 21:30:53'),(11191,'2005-08-02 11:24:07',1097,571,'2005-08-10 10:39:07',1,'2006-02-15 21:30:53'),(11192,'2005-08-02 11:29:41',1998,349,'2005-08-07 06:01:41',2,'2006-02-15 21:30:53'),(11193,'2005-08-02 11:31:33',2246,292,'2005-08-04 14:00:33',1,'2006-02-15 21:30:53'),(11194,'2005-08-02 11:35:53',2732,135,'2005-08-10 11:28:53',1,'2006-02-15 21:30:53'),(11195,'2005-08-02 11:42:23',4359,177,'2005-08-03 08:29:23',1,'2006-02-15 21:30:53'),(11196,'2005-08-02 11:42:40',2648,126,'2005-08-10 11:58:40',2,'2006-02-15 21:30:53'),(11197,'2005-08-02 11:45:07',3041,122,'2005-08-03 09:07:07',1,'2006-02-15 21:30:53'),(11198,'2005-08-02 11:45:15',2908,540,'2005-08-10 11:42:15',2,'2006-02-15 21:30:53'),(11199,'2005-08-02 11:47:40',3926,578,'2005-08-10 06:52:40',2,'2006-02-15 21:30:53'),(11200,'2005-08-02 11:48:36',2730,98,'2005-08-07 08:35:36',2,'2006-02-15 21:30:53'),(11201,'2005-08-02 11:49:16',1501,195,'2005-08-11 08:39:16',1,'2006-02-15 21:30:53'),(11202,'2005-08-02 11:51:57',3625,231,'2005-08-08 09:41:57',1,'2006-02-15 21:30:53'),(11203,'2005-08-02 11:52:41',4520,92,'2005-08-10 15:52:41',2,'2006-02-15 21:30:53'),(11204,'2005-08-02 11:56:31',3578,247,'2005-08-06 14:16:31',2,'2006-02-15 21:30:53'),(11205,'2005-08-02 11:56:54',4321,552,'2005-08-05 08:24:54',1,'2006-02-15 21:30:53'),(11206,'2005-08-02 11:58:03',4131,72,'2005-08-07 12:36:03',2,'2006-02-15 21:30:53'),(11207,'2005-08-02 12:01:30',4470,481,'2005-08-05 07:56:30',1,'2006-02-15 21:30:53'),(11208,'2005-08-02 12:02:37',4566,320,'2005-08-05 10:56:37',1,'2006-02-15 21:30:53'),(11209,'2005-08-02 12:09:45',3219,24,'2005-08-07 08:52:45',1,'2006-02-15 21:30:53'),(11210,'2005-08-02 12:15:54',422,202,'2005-08-04 16:18:54',2,'2006-02-15 21:30:53'),(11211,'2005-08-02 12:16:48',1722,245,'2005-08-03 10:40:48',1,'2006-02-15 21:30:53'),(11212,'2005-08-02 12:18:29',4007,343,'2005-08-05 16:05:29',2,'2006-02-15 21:30:53'),(11213,'2005-08-02 12:18:35',1007,584,'2005-08-05 08:44:35',2,'2006-02-15 21:30:53'),(11214,'2005-08-02 12:19:50',2722,407,'2005-08-11 06:38:50',1,'2006-02-15 21:30:53'),(11215,'2005-08-02 12:20:42',379,197,'2005-08-06 14:01:42',1,'2006-02-15 21:30:53'),(11216,'2005-08-02 12:23:43',1109,473,'2005-08-03 13:19:43',1,'2006-02-15 21:30:53'),(11217,'2005-08-02 12:26:31',1201,417,'2005-08-09 09:53:31',2,'2006-02-15 21:30:53'),(11218,'2005-08-02 12:29:12',1126,500,'2005-08-10 16:13:12',2,'2006-02-15 21:30:53'),(11219,'2005-08-02 12:30:20',2889,461,'2005-08-08 13:42:20',2,'2006-02-15 21:30:53'),(11220,'2005-08-02 12:31:41',3777,84,'2005-08-05 08:23:41',2,'2006-02-15 21:30:53'),(11221,'2005-08-02 12:32:12',1689,146,'2005-08-03 17:13:12',1,'2006-02-15 21:30:53'),(11222,'2005-08-02 12:32:28',1780,407,'2005-08-11 18:15:28',2,'2006-02-15 21:30:53'),(11223,'2005-08-02 12:34:27',1994,597,'2005-08-07 14:21:27',1,'2006-02-15 21:30:53'),(11224,'2005-08-02 12:40:38',3938,181,'2005-08-04 10:02:38',2,'2006-02-15 21:30:53'),(11225,'2005-08-02 12:43:27',3721,159,'2005-08-04 18:41:27',2,'2006-02-15 21:30:53'),(11226,'2005-08-02 12:47:30',79,282,'2005-08-06 11:24:30',1,'2006-02-15 21:30:53'),(11227,'2005-08-02 12:48:05',1101,65,'2005-08-11 14:08:05',1,'2006-02-15 21:30:53'),(11228,'2005-08-02 12:55:23',2561,144,'2005-08-08 12:31:23',1,'2006-02-15 21:30:53'),(11229,'2005-08-02 12:56:37',941,332,'2005-08-11 11:13:37',2,'2006-02-15 21:30:53'),(11230,'2005-08-02 12:59:08',1463,257,'2005-08-04 13:42:08',1,'2006-02-15 21:30:53'),(11231,'2005-08-02 13:02:11',1100,90,'2005-08-07 10:05:11',2,'2006-02-15 21:30:53'),(11232,'2005-08-02 13:04:12',971,8,'2005-08-10 15:39:12',1,'2006-02-15 21:30:53'),(11233,'2005-08-02 13:06:11',2221,266,'2005-08-08 15:02:11',1,'2006-02-15 21:30:53'),(11234,'2005-08-02 13:12:17',1020,27,'2005-08-05 17:37:17',1,'2006-02-15 21:30:53'),(11235,'2005-08-02 13:13:21',2501,127,'2005-08-03 07:17:21',1,'2006-02-15 21:30:53'),(11236,'2005-08-02 13:17:21',145,420,'2005-08-09 09:53:21',2,'2006-02-15 21:30:53'),(11237,'2005-08-02 13:24:01',2668,426,'2005-08-05 11:41:01',2,'2006-02-15 21:30:53'),(11238,'2005-08-02 13:25:50',2705,506,'2005-08-08 19:12:50',2,'2006-02-15 21:30:53'),(11239,'2005-08-02 13:27:11',189,111,'2005-08-03 14:36:11',1,'2006-02-15 21:30:53'),(11240,'2005-08-02 13:28:30',2170,597,'2005-08-05 11:40:30',1,'2006-02-15 21:30:53'),(11241,'2005-08-02 13:29:24',3657,543,'2005-08-11 11:36:24',2,'2006-02-15 21:30:53'),(11242,'2005-08-02 13:32:00',1041,434,'2005-08-10 19:24:00',2,'2006-02-15 21:30:53'),(11243,'2005-08-02 13:32:48',2517,361,'2005-08-11 18:55:48',1,'2006-02-15 21:30:53'),(11244,'2005-08-02 13:33:24',3423,142,'2005-08-10 10:18:24',2,'2006-02-15 21:30:53'),(11245,'2005-08-02 13:33:50',2609,92,'2005-08-04 10:20:50',2,'2006-02-15 21:30:53'),(11246,'2005-08-02 13:33:56',3577,550,'2005-08-03 08:52:56',2,'2006-02-15 21:30:53'),(11247,'2005-08-02 13:34:08',1661,441,'2005-08-06 16:23:08',2,'2006-02-15 21:30:53'),(11248,'2005-08-02 13:35:34',4139,312,'2005-08-03 10:37:34',1,'2006-02-15 21:30:53'),(11249,'2005-08-02 13:35:40',3394,157,'2005-08-07 11:22:40',1,'2006-02-15 21:30:53'),(11250,'2005-08-02 13:35:42',2223,279,'2005-08-10 12:32:42',2,'2006-02-15 21:30:53'),(11251,'2005-08-02 13:40:49',2181,532,'2005-08-09 14:16:49',2,'2006-02-15 21:30:53'),(11252,'2005-08-02 13:42:13',2410,337,'2005-08-06 19:04:13',2,'2006-02-15 21:30:53'),(11253,'2005-08-02 13:42:44',2898,303,'2005-08-09 17:06:44',2,'2006-02-15 21:30:53'),(11254,'2005-08-02 13:43:49',56,315,'2005-08-08 13:16:49',1,'2006-02-15 21:30:53'),(11255,'2005-08-02 13:44:30',3393,569,'2005-08-03 12:00:30',1,'2006-02-15 21:30:53'),(11256,'2005-08-02 13:44:53',2060,2,'2005-08-04 16:39:53',1,'2006-02-15 21:30:53'),(11257,'2005-08-02 13:45:05',105,468,'2005-08-11 16:37:05',1,'2006-02-15 21:30:53'),(11258,'2005-08-02 13:45:39',1576,242,'2005-08-06 07:57:39',1,'2006-02-15 21:30:53'),(11259,'2005-08-02 13:46:30',896,330,'2005-08-07 14:03:30',1,'2006-02-15 21:30:53'),(11260,'2005-08-02 13:52:19',4015,207,'2005-08-06 08:13:19',2,'2006-02-15 21:30:53'),(11261,'2005-08-02 13:54:26',31,204,'2005-08-10 19:04:26',2,'2006-02-15 21:30:53'),(11262,'2005-08-02 13:58:55',71,348,'2005-08-05 18:09:55',2,'2006-02-15 21:30:53'),(11263,'2005-08-02 14:02:19',1189,421,'2005-08-07 14:03:19',2,'2006-02-15 21:30:53'),(11264,'2005-08-02 14:05:18',3420,360,'2005-08-10 08:46:18',2,'2006-02-15 21:30:53'),(11265,'2005-08-02 14:05:42',3870,531,'2005-08-11 15:27:42',2,'2006-02-15 21:30:53'),(11266,'2005-08-02 14:07:35',3972,99,'2005-08-04 13:31:35',1,'2006-02-15 21:30:53'),(11267,'2005-08-02 14:09:08',2045,244,'2005-08-10 12:33:08',1,'2006-02-15 21:30:53'),(11268,'2005-08-02 14:10:39',3275,558,'2005-08-04 14:35:39',1,'2006-02-15 21:30:53'),(11269,'2005-08-02 14:11:41',2398,297,'2005-08-08 18:53:41',1,'2006-02-15 21:30:53'),(11270,'2005-08-02 14:18:07',1882,418,'2005-08-03 08:20:07',1,'2006-02-15 21:30:53'),(11271,'2005-08-02 14:18:22',4323,93,'2005-08-07 09:35:22',2,'2006-02-15 21:30:53'),(11272,'2005-08-02 14:20:27',4111,158,'2005-08-07 12:24:27',2,'2006-02-15 21:30:53'),(11273,'2005-08-02 14:20:55',3383,541,'2005-08-07 12:57:55',1,'2006-02-15 21:30:53'),(11274,'2005-08-02 14:24:08',1253,70,'2005-08-11 14:56:08',1,'2006-02-15 21:30:53'),(11275,'2005-08-02 14:25:58',2838,464,'2005-08-07 11:20:58',1,'2006-02-15 21:30:53'),(11276,'2005-08-02 14:28:46',4226,190,'2005-08-04 14:00:46',1,'2006-02-15 21:30:53'),(11277,'2005-08-02 14:28:50',2050,68,'2005-08-04 13:50:50',1,'2006-02-15 21:30:53'),(11278,'2005-08-02 14:29:43',961,143,'2005-08-07 10:13:43',1,'2006-02-15 21:30:53'),(11279,'2005-08-02 14:30:03',151,125,'2005-08-10 09:49:03',2,'2006-02-15 21:30:53'),(11280,'2005-08-02 14:34:33',1846,134,'2005-08-08 15:40:33',2,'2006-02-15 21:30:53'),(11281,'2005-08-02 14:35:01',2210,137,'2005-08-07 17:28:01',1,'2006-02-15 21:30:53'),(11282,'2005-08-02 14:35:03',1824,273,'2005-08-03 16:02:03',2,'2006-02-15 21:30:53'),(11283,'2005-08-02 14:39:46',312,134,'2005-08-05 10:19:46',2,'2006-02-15 21:30:53'),(11284,'2005-08-02 14:42:45',172,8,'2005-08-04 11:55:45',2,'2006-02-15 21:30:53'),(11285,'2005-08-02 14:44:02',3849,585,'2005-08-11 16:45:02',2,'2006-02-15 21:30:53'),(11286,'2005-08-02 14:44:22',1319,207,'2005-08-10 09:01:22',2,'2006-02-15 21:30:53'),(11287,'2005-08-02 14:49:51',927,55,'2005-08-09 09:19:51',2,'2006-02-15 21:30:53'),(11288,'2005-08-02 14:54:08',1478,298,'2005-08-11 12:22:08',1,'2006-02-15 21:30:53'),(11289,'2005-08-02 14:55:00',2869,10,'2005-08-11 13:57:00',1,'2006-02-15 21:30:53'),(11290,'2005-08-02 14:57:44',425,582,'2005-08-09 19:36:44',2,'2006-02-15 21:30:53'),(11291,'2005-08-02 14:57:58',491,417,'2005-08-11 09:04:58',2,'2006-02-15 21:30:53'),(11292,'2005-08-02 14:58:41',210,13,'2005-08-06 14:38:41',2,'2006-02-15 21:30:53'),(11293,'2005-08-02 15:00:43',1514,475,'2005-08-11 17:49:43',1,'2006-02-15 21:30:53'),(11294,'2005-08-02 15:08:27',855,411,'2005-08-03 18:28:27',1,'2006-02-15 21:30:53'),(11295,'2005-08-02 15:10:06',423,67,'2005-08-10 09:52:06',1,'2006-02-15 21:30:53'),(11296,'2005-08-02 15:15:27',247,154,'2005-08-11 16:12:27',1,'2006-02-15 21:30:53'),(11297,'2005-08-02 15:22:47',2531,62,'2005-08-11 18:45:47',1,'2006-02-15 21:30:53'),(11298,'2005-08-02 15:32:32',1663,35,'2005-08-06 20:22:32',1,'2006-02-15 21:30:53'),(11299,'2005-08-02 15:36:52',3232,1,'2005-08-10 16:40:52',2,'2006-02-15 21:30:53'),(11300,'2005-08-02 15:37:42',3032,552,'2005-08-11 14:25:42',1,'2006-02-15 21:30:53'),(11301,'2005-08-02 15:37:59',676,502,'2005-08-04 10:57:59',2,'2006-02-15 21:30:53'),(11302,'2005-08-02 15:38:03',1918,51,'2005-08-09 10:33:03',2,'2006-02-15 21:30:53'),(11303,'2005-08-02 15:39:18',1817,417,'2005-08-05 10:59:18',1,'2006-02-15 21:30:53'),(11304,'2005-08-02 15:40:10',2592,413,'2005-08-06 16:12:10',2,'2006-02-15 21:30:53'),(11305,'2005-08-02 15:44:55',1690,341,'2005-08-08 16:42:55',2,'2006-02-15 21:30:53'),(11306,'2005-08-02 15:45:10',13,247,'2005-08-03 21:14:10',2,'2006-02-15 21:30:53'),(11307,'2005-08-02 15:48:08',1490,15,'2005-08-06 20:33:08',2,'2006-02-15 21:30:53'),(11308,'2005-08-02 15:50:44',699,16,'2005-08-05 11:38:44',2,'2006-02-15 21:30:53'),(11309,'2005-08-02 15:50:55',607,275,'2005-08-09 18:28:55',1,'2006-02-15 21:30:53'),(11310,'2005-08-02 15:51:58',3601,415,'2005-08-07 12:34:58',1,'2006-02-15 21:30:53'),(11311,'2005-08-02 15:53:48',204,197,'2005-08-03 16:32:48',1,'2006-02-15 21:30:53'),(11312,'2005-08-02 15:56:51',1093,190,'2005-08-07 20:56:51',2,'2006-02-15 21:30:53'),(11313,'2005-08-02 16:02:51',2689,419,'2005-08-03 14:54:51',1,'2006-02-15 21:30:53'),(11314,'2005-08-02 16:04:08',2790,26,'2005-08-04 18:47:08',1,'2006-02-15 21:30:53'),(11315,'2005-08-02 16:05:17',1116,13,'2005-08-05 16:33:17',1,'2006-02-15 21:30:53'),(11316,'2005-08-02 16:07:49',521,108,'2005-08-10 13:22:49',1,'2006-02-15 21:30:53'),(11317,'2005-08-02 16:08:52',1889,502,'2005-08-08 21:12:52',1,'2006-02-15 21:30:53'),(11318,'2005-08-02 16:09:11',2386,532,'2005-08-07 11:28:11',2,'2006-02-15 21:30:53'),(11319,'2005-08-02 16:10:09',4069,178,'2005-08-09 11:21:09',2,'2006-02-15 21:30:53'),(11320,'2005-08-02 16:13:28',3362,550,'2005-08-05 21:23:28',1,'2006-02-15 21:30:53'),(11321,'2005-08-02 16:15:07',205,266,'2005-08-04 20:35:07',2,'2006-02-15 21:30:53'),(11322,'2005-08-02 16:23:17',761,418,'2005-08-09 19:55:17',2,'2006-02-15 21:30:53'),(11323,'2005-08-02 16:29:57',3784,419,'2005-08-06 16:01:57',1,'2006-02-15 21:30:53'),(11324,'2005-08-02 16:31:17',2900,540,'2005-08-08 15:38:17',2,'2006-02-15 21:30:53'),(11325,'2005-08-02 16:33:11',4514,422,'2005-08-08 13:42:11',1,'2006-02-15 21:30:53'),(11326,'2005-08-02 16:34:29',1762,530,'2005-08-03 17:40:29',2,'2006-02-15 21:30:53'),(11327,'2005-08-02 16:40:47',773,361,'2005-08-03 22:13:47',1,'2006-02-15 21:30:53'),(11328,'2005-08-02 16:42:38',2031,219,'2005-08-04 21:02:38',1,'2006-02-15 21:30:53'),(11329,'2005-08-02 16:42:52',2677,399,'2005-08-08 16:45:52',1,'2006-02-15 21:30:53'),(11330,'2005-08-02 16:45:33',4326,75,'2005-08-04 15:15:33',2,'2006-02-15 21:30:53'),(11331,'2005-08-02 16:49:01',3789,568,'2005-08-09 19:15:01',1,'2006-02-15 21:30:53'),(11332,'2005-08-02 16:52:57',2381,467,'2005-08-04 14:13:57',1,'2006-02-15 21:30:53'),(11333,'2005-08-02 16:53:00',3335,225,'2005-08-07 20:49:00',2,'2006-02-15 21:30:53'),(11334,'2005-08-02 16:53:20',1504,560,'2005-08-11 20:47:20',1,'2006-02-15 21:30:53'),(11335,'2005-08-02 16:57:37',2968,157,'2005-08-09 19:43:37',1,'2006-02-15 21:30:53'),(11336,'2005-08-02 16:58:56',1949,473,'2005-08-06 16:56:56',1,'2006-02-15 21:30:53'),(11337,'2005-08-02 16:59:09',3428,366,'2005-08-10 20:41:09',2,'2006-02-15 21:30:53'),(11338,'2005-08-02 17:00:12',3689,26,'2005-08-03 18:54:12',1,'2006-02-15 21:30:53'),(11339,'2005-08-02 17:02:06',705,263,'2005-08-08 21:12:06',1,'2006-02-15 21:30:53'),(11340,'2005-08-02 17:05:43',1403,366,'2005-08-09 13:25:43',1,'2006-02-15 21:30:53'),(11341,'2005-08-02 17:09:24',3586,15,'2005-08-09 19:48:24',2,'2006-02-15 21:30:53'),(11342,'2005-08-02 17:11:35',4251,179,'2005-08-07 15:04:35',1,'2006-02-15 21:30:53'),(11343,'2005-08-02 17:12:30',564,466,'2005-08-09 12:08:30',1,'2006-02-15 21:30:53'),(11344,'2005-08-02 17:13:26',365,38,'2005-08-07 16:44:26',1,'2006-02-15 21:30:53'),(11345,'2005-08-02 17:14:19',1895,405,'2005-08-11 14:02:19',2,'2006-02-15 21:30:53'),(11346,'2005-08-02 17:15:38',584,100,'2005-08-04 13:31:38',2,'2006-02-15 21:30:53'),(11347,'2005-08-02 17:18:07',195,217,'2005-08-05 12:30:07',1,'2006-02-15 21:30:53'),(11348,'2005-08-02 17:18:38',1704,389,'2005-08-06 16:11:38',2,'2006-02-15 21:30:53'),(11349,'2005-08-02 17:21:49',1871,73,'2005-08-06 18:40:49',1,'2006-02-15 21:30:53'),(11350,'2005-08-02 17:22:59',1265,598,'2005-08-09 19:56:59',2,'2006-02-15 21:30:53'),(11351,'2005-08-02 17:28:07',242,198,'2005-08-09 21:55:07',1,'2006-02-15 21:30:53'),(11352,'2005-08-02 17:29:39',2760,546,'2005-08-10 15:31:39',1,'2006-02-15 21:30:53'),(11353,'2005-08-02 17:34:45',1729,444,'2005-08-09 16:01:45',1,'2006-02-15 21:30:53'),(11354,'2005-08-02 17:35:10',1887,569,'2005-08-09 12:07:10',2,'2006-02-15 21:30:53'),(11355,'2005-08-02 17:37:43',2673,185,'2005-08-05 19:59:43',1,'2006-02-15 21:30:53'),(11356,'2005-08-02 17:42:40',303,200,'2005-08-11 23:29:40',1,'2006-02-15 21:30:53'),(11357,'2005-08-02 17:42:49',2644,148,'2005-08-11 18:14:49',1,'2006-02-15 21:30:53'),(11358,'2005-08-02 17:45:02',2361,56,'2005-08-11 18:16:02',1,'2006-02-15 21:30:53'),(11359,'2005-08-02 17:45:55',1648,466,'2005-08-10 20:53:55',2,'2006-02-15 21:30:53'),(11360,'2005-08-02 17:46:04',1750,66,'2005-08-04 21:02:04',2,'2006-02-15 21:30:53'),(11361,'2005-08-02 17:46:34',1124,547,'2005-08-03 15:21:34',1,'2006-02-15 21:30:53'),(11362,'2005-08-02 17:47:25',2628,331,'2005-08-07 20:14:25',1,'2006-02-15 21:30:53'),(11363,'2005-08-02 17:48:39',3190,274,'2005-08-05 17:20:39',1,'2006-02-15 21:30:53'),(11364,'2005-08-02 17:53:36',4515,44,'2005-08-03 14:16:36',1,'2006-02-15 21:30:53'),(11365,'2005-08-02 18:00:09',1151,508,'2005-08-04 13:40:09',2,'2006-02-15 21:30:53'),(11366,'2005-08-02 18:01:25',3583,280,'2005-08-11 15:02:25',1,'2006-02-15 21:30:53'),(11367,'2005-08-02 18:01:38',1440,1,'2005-08-04 13:19:38',1,'2006-02-15 21:30:53'),(11368,'2005-08-02 18:03:05',866,153,'2005-08-07 20:40:05',1,'2006-02-15 21:30:53'),(11369,'2005-08-02 18:04:41',2480,480,'2005-08-09 18:41:41',1,'2006-02-15 21:30:53'),(11370,'2005-08-02 18:06:01',3077,146,'2005-08-04 15:10:01',1,'2006-02-15 21:30:53'),(11371,'2005-08-02 18:07:36',324,561,'2005-08-06 17:52:36',1,'2006-02-15 21:30:53'),(11372,'2005-08-02 18:10:50',796,327,'2005-08-07 17:58:50',1,'2006-02-15 21:30:53'),(11373,'2005-08-02 18:14:12',181,267,'2005-08-06 23:37:12',1,'2006-02-15 21:30:53'),(11374,'2005-08-02 18:14:54',2805,424,'2005-08-04 18:22:54',1,'2006-02-15 21:30:53'),(11375,'2005-08-02 18:14:56',1064,346,'2005-08-08 23:29:56',1,'2006-02-15 21:30:53'),(11376,'2005-08-02 18:16:00',2530,177,'2005-08-11 23:38:00',2,'2006-02-15 21:30:53'),(11377,'2005-08-02 18:16:47',3334,119,'2005-08-08 13:46:47',1,'2006-02-15 21:30:53'),(11378,'2005-08-02 18:16:52',3824,188,'2005-08-03 14:25:52',1,'2006-02-15 21:30:53'),(11379,'2005-08-02 18:16:55',251,61,'2005-08-07 18:12:55',1,'2006-02-15 21:30:53'),(11380,'2005-08-02 18:17:32',1046,551,'2005-08-03 19:26:32',2,'2006-02-15 21:30:53'),(11381,'2005-08-02 18:19:29',993,451,'2005-08-08 20:39:29',2,'2006-02-15 21:30:53'),(11382,'2005-08-02 18:20:52',3848,407,'2005-08-07 17:06:52',1,'2006-02-15 21:30:53'),(11383,'2005-08-02 18:22:05',257,445,'2005-08-11 17:18:05',1,'2006-02-15 21:30:53'),(11384,'2005-08-02 18:23:01',2840,225,'2005-08-05 17:59:01',1,'2006-02-15 21:30:53'),(11385,'2005-08-02 18:23:11',2478,192,'2005-08-06 12:37:11',1,'2006-02-15 21:30:53'),(11386,'2005-08-02 18:24:03',519,183,'2005-08-06 21:22:03',1,'2006-02-15 21:30:53'),(11387,'2005-08-02 18:32:38',2491,481,'2005-08-07 19:08:38',2,'2006-02-15 21:30:53'),(11388,'2005-08-02 18:35:55',477,369,'2005-08-09 21:56:55',1,'2006-02-15 21:30:53'),(11389,'2005-08-02 18:39:12',3267,270,'2005-08-03 23:23:12',2,'2006-02-15 21:30:53'),(11390,'2005-08-02 18:39:16',3135,294,'2005-08-04 21:43:16',1,'2006-02-15 21:30:53'),(11391,'2005-08-02 18:40:12',2039,403,'2005-08-10 15:55:12',1,'2006-02-15 21:30:53'),(11392,'2005-08-02 18:41:11',261,146,'2005-08-11 21:41:11',1,'2006-02-15 21:30:53'),(11393,'2005-08-02 18:44:29',1033,501,'2005-08-11 23:58:29',1,'2006-02-15 21:30:53'),(11394,'2005-08-02 18:44:45',2087,257,'2005-08-06 22:51:45',2,'2006-02-15 21:30:53'),(11395,'2005-08-02 18:47:44',4234,225,'2005-08-10 17:07:44',2,'2006-02-15 21:30:53'),(11396,'2005-08-02 18:48:29',1155,59,'2005-08-04 16:05:29',2,'2006-02-15 21:30:53'),(11397,'2005-08-02 18:53:14',2566,470,'2005-08-09 18:09:14',1,'2006-02-15 21:30:53'),(11398,'2005-08-02 18:55:15',3952,6,'2005-08-10 19:50:15',2,'2006-02-15 21:30:53'),(11399,'2005-08-02 18:56:28',2094,565,'2005-08-11 23:19:28',1,'2006-02-15 21:30:53'),(11400,'2005-08-02 19:00:52',3150,9,'2005-08-09 19:45:52',2,'2006-02-15 21:30:53'),(11401,'2005-08-02 19:05:06',1799,544,'2005-08-09 22:34:06',1,'2006-02-15 21:30:53'),(11402,'2005-08-02 19:07:21',3291,561,'2005-08-07 20:59:21',1,'2006-02-15 21:30:53'),(11403,'2005-08-02 19:10:21',4072,587,'2005-08-04 00:44:21',2,'2006-02-15 21:30:53'),(11404,'2005-08-02 19:12:40',3285,60,'2005-08-11 22:38:40',2,'2006-02-15 21:30:53'),(11405,'2005-08-02 19:13:39',418,10,'2005-08-07 19:19:39',2,'2006-02-15 21:30:53'),(11406,'2005-08-02 19:16:10',2502,525,'2005-08-04 20:51:10',2,'2006-02-15 21:30:53'),(11407,'2005-08-02 19:18:43',3437,513,'2005-08-08 16:15:43',2,'2006-02-15 21:30:53'),(11408,'2005-08-02 19:25:13',1779,83,'2005-08-06 17:12:13',1,'2006-02-15 21:30:53'),(11409,'2005-08-02 19:26:51',3691,418,'2005-08-07 19:55:51',1,'2006-02-15 21:30:53'),(11410,'2005-08-02 19:29:01',692,592,'2005-08-11 16:50:01',1,'2006-02-15 21:30:53'),(11411,'2005-08-02 19:29:47',1497,141,'2005-08-09 16:27:47',2,'2006-02-15 21:30:53'),(11412,'2005-08-02 19:32:51',2271,141,'2005-08-11 22:16:51',1,'2006-02-15 21:30:53'),(11413,'2005-08-02 19:35:19',1115,297,'2005-08-05 21:33:19',2,'2006-02-15 21:30:53'),(11414,'2005-08-02 19:43:07',1772,353,'2005-08-07 15:22:07',2,'2006-02-15 21:30:53'),(11415,'2005-08-02 19:43:38',2197,572,'2005-08-10 15:13:38',1,'2006-02-15 21:30:53'),(11416,'2005-08-02 19:44:04',1848,58,'2005-08-11 15:30:04',1,'2006-02-15 21:30:53'),(11417,'2005-08-02 19:44:46',3083,437,'2005-08-11 21:43:46',2,'2006-02-15 21:30:53'),(11418,'2005-08-02 19:45:33',4490,91,'2005-08-06 17:40:33',1,'2006-02-15 21:30:53'),(11419,'2005-08-02 19:46:38',514,444,'2005-08-11 14:49:38',1,'2006-02-15 21:30:53'),(11420,'2005-08-02 19:47:56',3928,158,'2005-08-05 21:48:56',2,'2006-02-15 21:30:53'),(11421,'2005-08-02 19:51:53',3361,473,'2005-08-12 00:50:53',2,'2006-02-15 21:30:53'),(11422,'2005-08-02 19:52:08',342,72,'2005-08-11 18:40:08',2,'2006-02-15 21:30:53'),(11423,'2005-08-02 19:57:13',3431,241,'2005-08-06 00:54:13',2,'2006-02-15 21:30:53'),(11424,'2005-08-02 19:57:42',1030,84,'2005-08-10 16:57:42',2,'2006-02-15 21:30:53'),(11425,'2005-08-02 19:58:48',989,419,'2005-08-03 19:30:48',2,'2006-02-15 21:30:53'),(11426,'2005-08-02 20:00:09',130,572,'2005-08-09 01:30:09',2,'2006-02-15 21:30:53'),(11427,'2005-08-02 20:02:39',3287,403,'2005-08-04 22:26:39',2,'2006-02-15 21:30:53'),(11428,'2005-08-02 20:03:10',722,326,'2005-08-04 01:55:10',1,'2006-02-15 21:30:53'),(11429,'2005-08-02 20:03:52',1098,348,'2005-08-10 16:38:52',2,'2006-02-15 21:30:53'),(11430,'2005-08-02 20:04:36',2258,140,'2005-08-08 19:43:36',1,'2006-02-15 21:30:53'),(11431,'2005-08-02 20:05:16',1409,271,'2005-08-04 00:05:16',2,'2006-02-15 21:30:53'),(11432,'2005-08-02 20:10:01',959,540,'2005-08-07 01:28:01',1,'2006-02-15 21:30:53'),(11433,'2005-08-02 20:13:10',1,518,'2005-08-11 21:35:10',1,'2006-02-15 21:30:53'),(11434,'2005-08-02 20:13:14',3154,391,'2005-08-05 15:01:14',1,'2006-02-15 21:30:53'),(11435,'2005-08-02 20:14:23',1625,502,'2005-08-05 20:40:23',1,'2006-02-15 21:30:53'),(11436,'2005-08-02 20:16:06',3834,106,'2005-08-05 20:40:06',2,'2006-02-15 21:30:53'),(11437,'2005-08-02 20:20:06',2679,225,'2005-08-05 22:17:06',2,'2006-02-15 21:30:53'),(11438,'2005-08-02 20:21:08',1040,372,'2005-08-10 22:12:08',1,'2006-02-15 21:30:53'),(11439,'2005-08-02 20:22:45',2897,18,'2005-08-04 18:30:45',1,'2006-02-15 21:30:53'),(11440,'2005-08-02 20:24:02',2727,306,'2005-08-07 16:42:02',2,'2006-02-15 21:30:53'),(11441,'2005-08-02 20:25:41',1027,389,'2005-08-05 00:05:41',2,'2006-02-15 21:30:53'),(11442,'2005-08-02 20:26:19',2598,208,'2005-08-07 00:33:19',2,'2006-02-15 21:30:53'),(11443,'2005-08-02 20:29:30',1291,581,'2005-08-07 01:08:30',2,'2006-02-15 21:30:53'),(11444,'2005-08-02 20:32:55',1419,28,'2005-08-08 23:21:55',2,'2006-02-15 21:30:53'),(11445,'2005-08-02 20:33:35',3340,108,'2005-08-08 16:02:35',2,'2006-02-15 21:30:53'),(11446,'2005-08-02 20:33:37',748,342,'2005-08-03 18:22:37',1,'2006-02-15 21:30:53'),(11447,'2005-08-02 20:36:25',3868,508,'2005-08-07 18:52:25',1,'2006-02-15 21:30:53'),(11448,'2005-08-02 20:44:33',1185,496,'2005-08-05 22:58:33',2,'2006-02-15 21:30:53'),(11449,'2005-08-02 20:44:43',3279,443,'2005-08-07 23:47:43',2,'2006-02-15 21:30:53'),(11450,'2005-08-02 20:45:54',2009,214,'2005-08-08 17:17:54',2,'2006-02-15 21:30:53'),(11451,'2005-08-02 20:45:56',776,515,'2005-08-06 21:42:56',2,'2006-02-15 21:30:53'),(11452,'2005-08-02 20:59:52',1245,35,'2005-08-12 01:16:52',1,'2006-02-15 21:30:53'),(11453,'2005-08-02 21:00:05',4578,84,'2005-08-08 22:03:05',2,'2006-02-15 21:30:53'),(11454,'2005-08-02 21:04:39',2901,199,'2005-08-05 19:03:39',1,'2006-02-15 21:30:53'),(11455,'2005-08-02 21:07:06',2000,498,'2005-08-12 01:21:06',1,'2006-02-15 21:30:53'),(11456,'2005-08-02 21:14:04',3638,322,'2005-08-07 19:49:04',2,'2006-02-15 21:30:53'),(11457,'2005-08-02 21:14:16',1642,379,'2005-08-10 02:39:16',2,'2006-02-15 21:30:53'),(11458,'2005-08-02 21:24:02',3514,575,'2005-08-04 01:32:02',2,'2006-02-15 21:30:53'),(11459,'2005-08-02 21:25:25',3730,392,'2005-08-04 19:57:25',2,'2006-02-15 21:30:53'),(11460,'2005-08-02 21:28:03',4113,403,'2005-08-08 18:24:03',1,'2006-02-15 21:30:53'),(11461,'2005-08-02 21:35:00',4343,65,'2005-08-05 01:34:00',1,'2006-02-15 21:30:53'),(11462,'2005-08-02 21:36:46',167,268,'2005-08-10 01:48:46',1,'2006-02-15 21:30:53'),(11463,'2005-08-02 21:37:36',1944,138,'2005-08-08 03:11:36',2,'2006-02-15 21:30:53'),(11464,'2005-08-02 21:42:07',538,577,'2005-08-03 21:44:07',2,'2006-02-15 21:30:53'),(11465,'2005-08-02 21:43:52',2190,447,'2005-08-10 22:24:52',1,'2006-02-15 21:30:53'),(11466,'2005-08-02 21:46:46',3363,556,'2005-08-06 01:42:46',1,'2006-02-15 21:30:53'),(11467,'2005-08-02 21:47:07',246,117,'2005-08-09 00:50:07',1,'2006-02-15 21:30:53'),(11468,'2005-08-02 21:47:26',3168,413,'2005-08-05 02:30:26',2,'2006-02-15 21:30:53'),(11469,'2005-08-02 21:48:09',230,77,'2005-08-06 18:37:09',1,'2006-02-15 21:30:53'),(11470,'2005-08-02 21:48:28',2379,346,'2005-08-05 23:58:28',2,'2006-02-15 21:30:53'),(11471,'2005-08-02 21:49:03',3378,355,'2005-08-08 00:17:03',1,'2006-02-15 21:30:53'),(11472,'2005-08-02 21:49:06',1829,410,'2005-08-11 20:17:06',1,'2006-02-15 21:30:53'),(11473,'2005-08-02 21:52:03',620,536,'2005-08-09 02:01:03',1,'2006-02-15 21:30:53'),(11474,'2005-08-02 21:53:08',574,214,'2005-08-05 22:36:08',1,'2006-02-15 21:30:53'),(11475,'2005-08-02 21:55:09',3687,194,'2005-08-09 20:28:09',2,'2006-02-15 21:30:53'),(11476,'2005-08-02 22:03:47',724,144,'2005-08-09 02:19:47',1,'2006-02-15 21:30:53'),(11477,'2005-08-02 22:09:01',1671,47,'2005-08-07 03:46:01',2,'2006-02-15 21:30:53'),(11478,'2005-08-02 22:09:05',3932,197,'2005-08-04 18:02:05',1,'2006-02-15 21:30:53'),(11479,'2005-08-02 22:18:13',4077,237,'2005-08-12 00:43:13',1,'2006-02-15 21:30:53'),(11480,'2005-08-02 22:18:24',4161,14,'2005-08-04 21:22:24',2,'2006-02-15 21:30:53'),(11481,'2005-08-02 22:18:41',4028,234,'2005-08-09 23:43:41',2,'2006-02-15 21:30:53'),(11482,'2005-08-02 22:24:31',1400,134,'2005-08-04 01:48:31',1,'2006-02-15 21:30:53'),(11483,'2005-08-02 22:28:22',1586,45,'2005-08-11 18:06:22',1,'2006-02-15 21:30:53'),(11484,'2005-08-02 22:28:23',330,165,'2005-08-04 20:51:23',2,'2006-02-15 21:30:53'),(11485,'2005-08-02 22:33:25',1872,326,'2005-08-04 23:26:25',2,'2006-02-15 21:30:53'),(11486,'2005-08-02 22:34:06',1610,236,'2005-08-09 00:46:06',2,'2006-02-15 21:30:53'),(11487,'2005-08-02 22:35:05',734,239,'2005-08-08 00:54:05',2,'2006-02-15 21:30:53'),(11488,'2005-08-02 22:35:15',2520,45,'2005-08-09 00:28:15',2,'2006-02-15 21:30:53'),(11489,'2005-08-02 22:35:28',3001,474,'2005-08-04 00:29:28',2,'2006-02-15 21:30:53'),(11490,'2005-08-02 22:36:00',1178,156,'2005-08-09 16:36:00',1,'2006-02-15 21:30:53'),(11491,'2005-08-02 22:44:50',268,307,'2005-08-11 01:55:50',2,'2006-02-15 21:30:53'),(11492,'2005-08-02 22:46:47',4037,349,'2005-08-09 19:54:47',2,'2006-02-15 21:30:53'),(11493,'2005-08-02 22:47:00',3375,124,'2005-08-10 20:53:00',2,'2006-02-15 21:30:53'),(11494,'2005-08-02 22:51:23',3994,579,'2005-08-09 01:52:23',1,'2006-02-15 21:30:53'),(11495,'2005-08-16 22:51:20',1265,247,'2005-08-23 00:44:20',1,'2006-02-15 21:30:53'),(11496,'2006-02-14 15:16:03',2047,155,NULL,1,'2006-02-15 21:30:53'),(11497,'2005-08-16 22:52:30',436,12,'2005-08-21 19:52:30',1,'2006-02-15 21:30:53'),(11498,'2005-08-16 22:52:54',487,482,'2005-08-25 03:27:54',2,'2006-02-15 21:30:53'),(11499,'2005-08-16 22:54:12',3857,172,'2005-08-24 03:37:12',2,'2006-02-15 21:30:53'),(11500,'2005-08-16 23:01:22',4003,584,'2005-08-24 22:54:22',1,'2006-02-15 21:30:53'),(11501,'2005-08-16 23:04:53',2147,23,'2005-08-19 20:57:53',2,'2006-02-15 21:30:53'),(11502,'2005-08-16 23:06:30',4470,11,'2005-08-19 03:49:30',1,'2006-02-15 21:30:53'),(11503,'2005-08-16 23:10:34',1496,526,'2005-08-25 03:55:34',1,'2006-02-15 21:30:53'),(11504,'2005-08-16 23:16:46',2132,350,'2005-08-18 20:49:46',2,'2006-02-15 21:30:53'),(11505,'2005-08-16 23:18:47',3344,34,'2005-08-23 19:52:47',2,'2006-02-15 21:30:53'),(11506,'2005-08-16 23:25:48',1529,565,'2005-08-22 18:17:48',1,'2006-02-15 21:30:53'),(11507,'2005-08-16 23:26:43',4197,236,'2005-08-24 22:48:43',2,'2006-02-15 21:30:53'),(11508,'2005-08-16 23:27:36',2688,19,'2005-08-25 01:34:36',2,'2006-02-15 21:30:53'),(11509,'2005-08-16 23:29:53',2750,273,'2005-08-19 02:09:53',1,'2006-02-15 21:30:53'),(11510,'2005-08-16 23:30:07',2997,400,'2005-08-25 17:35:07',1,'2006-02-15 21:30:53'),(11511,'2005-08-16 23:39:59',2127,397,'2005-08-18 18:04:59',1,'2006-02-15 21:30:53'),(11512,'2005-08-16 23:51:06',1248,373,'2005-08-26 02:06:06',2,'2006-02-15 21:30:53'),(11513,'2005-08-16 23:51:33',4473,499,'2005-08-24 01:37:33',2,'2006-02-15 21:30:53'),(11514,'2005-08-16 23:53:10',4240,423,'2005-08-23 22:04:10',1,'2006-02-15 21:30:53'),(11515,'2005-08-16 23:54:34',1053,279,'2005-08-21 19:00:34',1,'2006-02-15 21:30:53'),(11516,'2005-08-16 23:54:47',1860,90,'2005-08-17 20:05:47',1,'2006-02-15 21:30:53'),(11517,'2005-08-16 23:56:28',4266,280,'2005-08-21 22:40:28',1,'2006-02-15 21:30:53'),(11518,'2005-08-16 23:59:49',3297,407,'2005-08-17 22:51:49',2,'2006-02-15 21:30:53'),(11519,'2005-08-17 00:01:27',1034,381,'2005-08-19 04:54:27',2,'2006-02-15 21:30:53'),(11520,'2005-08-17 00:04:28',3536,119,'2005-08-26 02:03:28',1,'2006-02-15 21:30:53'),(11521,'2005-08-17 00:04:54',463,229,'2005-08-21 00:57:54',1,'2006-02-15 21:30:53'),(11522,'2005-08-17 00:05:05',2033,599,'2005-08-24 04:56:05',1,'2006-02-15 21:30:53'),(11523,'2005-08-17 00:10:10',1329,421,'2005-08-24 22:39:10',1,'2006-02-15 21:30:53'),(11524,'2005-08-17 00:10:55',317,533,'2005-08-23 05:30:55',1,'2006-02-15 21:30:53'),(11525,'2005-08-17 00:15:31',1107,174,'2005-08-20 21:14:31',1,'2006-02-15 21:30:53'),(11526,'2005-08-17 00:17:38',2419,572,'2005-08-18 03:59:38',2,'2006-02-15 21:30:53'),(11527,'2005-08-17 00:25:06',162,264,'2005-08-22 21:13:06',1,'2006-02-15 21:30:53'),(11528,'2005-08-17 00:27:23',893,14,'2005-08-22 06:12:23',2,'2006-02-15 21:30:53'),(11529,'2005-08-17 00:28:01',3071,4,'2005-08-19 04:47:01',2,'2006-02-15 21:30:53'),(11530,'2005-08-17 00:29:00',365,400,'2005-08-22 03:22:00',1,'2006-02-15 21:30:53'),(11531,'2005-08-17 00:30:04',1817,278,'2005-08-20 01:12:04',2,'2006-02-15 21:30:53'),(11532,'2005-08-17 00:34:14',1947,413,'2005-08-22 19:37:14',2,'2006-02-15 21:30:53'),(11533,'2005-08-17 00:34:53',4252,264,'2005-08-22 06:10:53',1,'2006-02-15 21:30:53'),(11534,'2005-08-17 00:35:27',2414,144,'2005-08-24 01:36:27',1,'2006-02-15 21:30:53'),(11535,'2005-08-17 00:39:54',1649,356,'2005-08-24 20:46:54',2,'2006-02-15 21:30:53'),(11536,'2005-08-17 00:40:03',2735,428,'2005-08-21 19:11:03',1,'2006-02-15 21:30:53'),(11537,'2005-08-17 00:41:08',190,474,'2005-08-19 00:25:08',2,'2006-02-15 21:30:53'),(11538,'2005-08-17 00:44:04',554,431,'2005-08-18 03:43:04',2,'2006-02-15 21:30:53'),(11539,'2005-08-17 00:45:41',2064,264,'2005-08-19 06:03:41',1,'2006-02-15 21:30:53'),(11540,'2005-08-17 00:48:03',3385,370,'2005-08-25 03:46:03',1,'2006-02-15 21:30:53'),(11541,'2006-02-14 15:16:03',2026,335,NULL,1,'2006-02-15 21:30:53'),(11542,'2005-08-17 00:51:32',2155,7,'2005-08-24 20:29:32',2,'2006-02-15 21:30:53'),(11543,'2005-08-17 00:54:28',2860,238,'2005-08-25 04:31:28',2,'2006-02-15 21:30:53'),(11544,'2005-08-17 00:55:07',836,439,'2005-08-22 19:25:07',1,'2006-02-15 21:30:53'),(11545,'2005-08-17 00:56:06',3198,257,'2005-08-25 22:47:06',1,'2006-02-15 21:30:53'),(11546,'2005-08-17 00:57:36',2522,24,'2005-08-18 23:16:36',1,'2006-02-15 21:30:53'),(11547,'2005-08-17 00:59:24',737,114,'2005-08-20 04:03:24',2,'2006-02-15 21:30:53'),(11548,'2005-08-17 00:59:47',480,323,'2005-08-22 05:09:47',1,'2006-02-15 21:30:53'),(11549,'2005-08-17 01:01:48',945,402,'2005-08-19 21:24:48',2,'2006-02-15 21:30:53'),(11550,'2005-08-17 01:02:06',2972,339,'2005-08-22 21:44:06',1,'2006-02-15 21:30:53'),(11551,'2005-08-17 01:03:49',3356,168,'2005-08-18 22:31:49',1,'2006-02-15 21:30:53'),(11552,'2005-08-17 01:04:29',1143,230,'2005-08-23 23:07:29',1,'2006-02-15 21:30:53'),(11553,'2005-08-17 01:04:31',3317,360,'2005-08-24 00:44:31',1,'2006-02-15 21:30:53'),(11554,'2005-08-17 01:05:17',2212,460,'2005-08-20 06:20:17',2,'2006-02-15 21:30:53'),(11555,'2005-08-17 01:08:59',2569,372,'2005-08-18 06:09:59',2,'2006-02-15 21:30:53'),(11556,'2005-08-17 01:11:53',373,9,'2005-08-18 23:41:53',1,'2006-02-15 21:30:53'),(11557,'2005-08-17 01:19:20',2376,416,'2005-08-24 02:25:20',1,'2006-02-15 21:30:53'),(11558,'2005-08-17 01:19:52',1681,403,'2005-08-19 00:47:52',2,'2006-02-15 21:30:53'),(11559,'2005-08-17 01:20:26',1812,385,'2005-08-24 03:11:26',1,'2006-02-15 21:30:53'),(11560,'2005-08-17 01:20:30',2316,320,'2005-08-18 04:29:30',2,'2006-02-15 21:30:53'),(11561,'2005-08-17 01:23:09',189,149,'2005-08-23 21:02:09',2,'2006-02-15 21:30:53'),(11562,'2005-08-17 01:23:39',2992,424,'2005-08-26 06:16:39',1,'2006-02-15 21:30:53'),(11563,'2006-02-14 15:16:03',1545,83,NULL,1,'2006-02-15 21:30:53'),(11564,'2005-08-17 01:27:49',2237,332,'2005-08-19 22:07:49',1,'2006-02-15 21:30:53'),(11565,'2005-08-17 01:28:05',173,83,'2005-08-23 23:33:05',2,'2006-02-15 21:30:53'),(11566,'2005-08-17 01:28:35',4020,520,'2005-08-20 22:42:35',1,'2006-02-15 21:30:53'),(11567,'2005-08-17 01:28:43',567,558,'2005-08-24 20:20:43',2,'2006-02-15 21:30:53'),(11568,'2005-08-17 01:30:01',183,342,'2005-08-18 22:21:01',2,'2006-02-15 21:30:53'),(11569,'2005-08-17 01:31:04',2592,504,'2005-08-24 03:36:04',2,'2006-02-15 21:30:53'),(11570,'2005-08-17 01:34:32',2466,343,'2005-08-24 05:47:32',1,'2006-02-15 21:30:53'),(11571,'2005-08-17 01:37:51',203,296,'2005-08-17 20:30:51',1,'2006-02-15 21:30:53'),(11572,'2005-08-17 01:37:55',3512,515,'2005-08-19 06:22:55',2,'2006-02-15 21:30:53'),(11573,'2005-08-17 01:38:18',639,146,'2005-08-19 05:06:18',2,'2006-02-15 21:30:53'),(11574,'2005-08-17 01:38:19',3596,277,'2005-08-18 20:30:19',2,'2006-02-15 21:30:53'),(11575,'2005-08-17 01:50:26',1725,319,'2005-08-18 00:43:26',1,'2006-02-15 21:30:53'),(11576,'2005-08-17 01:53:20',327,293,'2005-08-19 00:15:20',1,'2006-02-15 21:30:53'),(11577,'2006-02-14 15:16:03',4106,219,NULL,2,'2006-02-15 21:30:53'),(11578,'2005-08-17 01:54:13',192,590,'2005-08-26 02:00:13',2,'2006-02-15 21:30:53'),(11579,'2005-08-17 01:57:49',4256,356,'2005-08-22 02:42:49',1,'2006-02-15 21:30:53'),(11580,'2005-08-17 01:59:07',1346,436,'2005-08-21 06:18:07',2,'2006-02-15 21:30:53'),(11581,'2005-08-17 02:03:02',1249,231,'2005-08-24 03:53:02',2,'2006-02-15 21:30:53'),(11582,'2005-08-17 02:03:49',2115,339,'2005-08-24 03:29:49',1,'2006-02-15 21:30:53'),(11583,'2005-08-17 02:08:13',133,542,'2005-08-20 23:13:13',2,'2006-02-15 21:30:53'),(11584,'2005-08-17 02:13:26',3906,479,'2005-08-22 01:24:26',2,'2006-02-15 21:30:53'),(11585,'2005-08-17 02:14:36',753,297,'2005-08-20 07:37:36',2,'2006-02-15 21:30:53'),(11586,'2005-08-17 02:20:42',3140,465,'2005-08-26 05:01:42',1,'2006-02-15 21:30:53'),(11587,'2005-08-17 02:21:03',1319,156,'2005-08-25 21:02:03',2,'2006-02-15 21:30:53'),(11588,'2005-08-17 02:26:23',2480,565,'2005-08-22 02:32:23',1,'2006-02-15 21:30:53'),(11589,'2005-08-17 02:28:22',3480,554,'2005-08-25 00:08:22',1,'2006-02-15 21:30:53'),(11590,'2005-08-17 02:28:33',3600,491,'2005-08-20 03:13:33',1,'2006-02-15 21:30:53'),(11591,'2005-08-17 02:29:41',1670,6,'2005-08-23 20:47:41',1,'2006-02-15 21:30:53'),(11592,'2005-08-17 02:36:04',720,383,'2005-08-19 00:31:04',1,'2006-02-15 21:30:53'),(11593,'2006-02-14 15:16:03',817,99,NULL,1,'2006-02-15 21:30:53'),(11594,'2005-08-17 02:47:02',319,198,'2005-08-22 05:14:02',2,'2006-02-15 21:30:53'),(11595,'2005-08-17 02:53:14',466,350,'2005-08-26 02:05:14',1,'2006-02-15 21:30:53'),(11596,'2005-08-17 02:53:55',1674,290,'2005-08-26 02:19:55',1,'2006-02-15 21:30:53'),(11597,'2005-08-17 03:02:56',4073,272,'2005-08-26 04:47:56',1,'2006-02-15 21:30:53'),(11598,'2005-08-17 03:03:07',1949,319,'2005-08-22 21:05:07',2,'2006-02-15 21:30:53'),(11599,'2005-08-17 03:08:10',3749,112,'2005-08-25 05:01:10',2,'2006-02-15 21:30:53'),(11600,'2005-08-17 03:12:04',1978,400,'2005-08-23 07:10:04',1,'2006-02-15 21:30:53'),(11601,'2005-08-17 03:14:47',1098,471,'2005-08-20 00:21:47',2,'2006-02-15 21:30:53'),(11602,'2005-08-17 03:21:19',2082,391,'2005-08-19 05:23:19',1,'2006-02-15 21:30:53'),(11603,'2005-08-17 03:22:10',3910,406,'2005-08-18 06:48:10',1,'2006-02-15 21:30:53'),(11604,'2005-08-17 03:28:27',1820,388,'2005-08-19 05:38:27',2,'2006-02-15 21:30:53'),(11605,'2005-08-17 03:30:57',1292,455,'2005-08-24 07:02:57',2,'2006-02-15 21:30:53'),(11606,'2005-08-17 03:32:43',4138,499,'2005-08-18 04:30:43',1,'2006-02-15 21:30:53'),(11607,'2005-08-17 03:36:06',4345,242,'2005-08-20 01:06:06',1,'2006-02-15 21:30:53'),(11608,'2005-08-17 03:36:52',1673,448,'2005-08-25 07:17:52',2,'2006-02-15 21:30:53'),(11609,'2005-08-17 03:41:11',351,73,'2005-08-25 01:30:11',2,'2006-02-15 21:30:53'),(11610,'2005-08-17 03:43:37',3048,275,'2005-08-20 22:14:37',1,'2006-02-15 21:30:53'),(11611,'2006-02-14 15:16:03',1857,192,NULL,2,'2006-02-15 21:30:53'),(11612,'2005-08-17 03:48:51',375,526,'2005-08-20 03:03:51',1,'2006-02-15 21:30:53'),(11613,'2005-08-17 03:50:33',2486,126,'2005-08-25 00:37:33',2,'2006-02-15 21:30:53'),(11614,'2005-08-17 03:52:18',805,2,'2005-08-20 07:04:18',1,'2006-02-15 21:30:53'),(11615,'2005-08-17 03:54:35',4331,436,'2005-08-23 06:54:35',2,'2006-02-15 21:30:53'),(11616,'2005-08-17 04:00:01',2588,36,'2005-08-20 23:03:01',2,'2006-02-15 21:30:53'),(11617,'2005-08-17 04:00:40',1898,324,'2005-08-18 00:36:40',1,'2006-02-15 21:30:53'),(11618,'2005-08-17 04:01:36',954,175,'2005-08-23 01:02:36',1,'2006-02-15 21:30:53'),(11619,'2005-08-17 04:03:26',3652,374,'2005-08-22 03:07:26',1,'2006-02-15 21:30:53'),(11620,'2005-08-17 04:06:22',3801,502,'2005-08-17 23:53:22',1,'2006-02-15 21:30:53'),(11621,'2005-08-17 04:13:45',3708,216,'2005-08-26 01:00:45',1,'2006-02-15 21:30:53'),(11622,'2005-08-17 04:15:46',499,220,'2005-08-24 04:48:46',1,'2006-02-15 21:30:53'),(11623,'2005-08-17 04:15:47',759,163,'2005-08-19 04:11:47',2,'2006-02-15 21:30:53'),(11624,'2005-08-17 04:17:42',606,527,'2005-08-18 02:46:42',1,'2006-02-15 21:30:53'),(11625,'2005-08-17 04:18:52',712,521,'2005-08-25 03:05:52',2,'2006-02-15 21:30:53'),(11626,'2005-08-17 04:25:42',4279,266,'2005-08-23 05:46:42',1,'2006-02-15 21:30:53'),(11627,'2005-08-17 04:25:47',3945,168,'2005-08-26 02:54:47',2,'2006-02-15 21:30:53'),(11628,'2005-08-17 04:27:18',3656,256,'2005-08-25 01:12:18',2,'2006-02-15 21:30:53'),(11629,'2005-08-17 04:27:24',786,299,'2005-08-26 10:25:24',2,'2006-02-15 21:30:53'),(11630,'2005-08-17 04:27:46',688,72,'2005-08-19 09:58:46',2,'2006-02-15 21:30:53'),(11631,'2005-08-17 04:28:56',59,168,'2005-08-24 00:42:56',2,'2006-02-15 21:30:53'),(11632,'2005-08-17 04:29:32',2551,238,'2005-08-22 03:44:32',1,'2006-02-15 21:30:53'),(11633,'2005-08-17 04:30:09',1706,468,'2005-08-20 06:56:09',1,'2006-02-15 21:30:53'),(11634,'2005-08-17 04:31:49',2576,206,'2005-08-21 02:51:49',1,'2006-02-15 21:30:53'),(11635,'2005-08-17 04:33:17',2642,98,'2005-08-21 07:50:17',2,'2006-02-15 21:30:53'),(11636,'2005-08-17 04:36:31',791,276,'2005-08-24 00:03:31',2,'2006-02-15 21:30:53'),(11637,'2005-08-17 04:36:39',479,283,'2005-08-18 02:17:39',1,'2006-02-15 21:30:53'),(11638,'2005-08-17 04:39:09',3421,152,'2005-08-25 06:42:09',2,'2006-02-15 21:30:53'),(11639,'2005-08-17 04:43:29',3985,462,'2005-08-25 01:04:29',2,'2006-02-15 21:30:53'),(11640,'2005-08-17 04:44:33',1718,501,'2005-08-21 09:29:33',2,'2006-02-15 21:30:53'),(11641,'2005-08-17 04:45:39',2717,79,'2005-08-20 10:38:39',1,'2006-02-15 21:30:53'),(11642,'2005-08-17 04:48:05',3790,25,'2005-08-18 01:53:05',2,'2006-02-15 21:30:53'),(11643,'2005-08-17 04:49:35',1378,197,'2005-08-24 07:05:35',1,'2006-02-15 21:30:53'),(11644,'2005-08-17 04:49:46',1760,438,'2005-08-24 08:49:46',1,'2006-02-15 21:30:53'),(11645,'2005-08-17 04:50:56',4261,35,'2005-08-25 23:03:56',1,'2006-02-15 21:30:53'),(11646,'2006-02-14 15:16:03',478,11,NULL,2,'2006-02-15 21:30:53'),(11647,'2005-08-17 04:54:14',3016,110,'2005-08-23 04:16:14',2,'2006-02-15 21:30:53'),(11648,'2005-08-17 04:56:16',3362,465,'2005-08-26 00:53:16',2,'2006-02-15 21:30:53'),(11649,'2005-08-17 04:59:26',3222,217,'2005-08-20 04:02:26',2,'2006-02-15 21:30:53'),(11650,'2005-08-17 05:00:03',3979,418,'2005-08-22 01:45:03',2,'2006-02-15 21:30:53'),(11651,'2005-08-17 05:02:25',3681,143,'2005-08-24 08:15:25',2,'2006-02-15 21:30:53'),(11652,'2006-02-14 15:16:03',1622,597,NULL,2,'2006-02-15 21:30:53'),(11653,'2005-08-17 05:06:10',4475,358,'2005-08-24 03:09:10',2,'2006-02-15 21:30:53'),(11654,'2005-08-17 05:06:19',1048,218,'2005-08-18 04:32:19',2,'2006-02-15 21:30:53'),(11655,'2005-08-17 05:11:07',1699,113,'2005-08-26 10:18:07',1,'2006-02-15 21:30:53'),(11656,'2005-08-17 05:11:09',1451,56,'2005-08-25 07:51:09',1,'2006-02-15 21:30:53'),(11657,'2006-02-14 15:16:03',3043,53,NULL,2,'2006-02-15 21:30:53'),(11658,'2005-08-17 05:19:17',2008,422,'2005-08-24 07:03:17',2,'2006-02-15 21:30:53'),(11659,'2005-08-17 05:20:45',2881,112,'2005-08-22 10:18:45',1,'2006-02-15 21:30:53'),(11660,'2005-08-17 05:22:42',4081,525,'2005-08-23 01:03:42',1,'2006-02-15 21:30:53'),(11661,'2005-08-17 05:25:57',1008,27,'2005-08-25 04:37:57',1,'2006-02-15 21:30:53'),(11662,'2005-08-17 05:27:37',2730,177,'2005-08-26 09:56:37',2,'2006-02-15 21:30:53'),(11663,'2005-08-17 05:30:19',3798,373,'2005-08-25 08:14:19',1,'2006-02-15 21:30:53'),(11664,'2005-08-17 05:35:52',1343,433,'2005-08-18 02:40:52',1,'2006-02-15 21:30:53'),(11665,'2005-08-17 05:36:57',334,254,'2005-08-23 01:38:57',1,'2006-02-15 21:30:53'),(11666,'2005-08-17 05:45:10',250,531,'2005-08-19 06:47:10',2,'2006-02-15 21:30:53'),(11667,'2005-08-17 05:46:55',1516,582,'2005-08-26 08:19:55',1,'2006-02-15 21:30:53'),(11668,'2005-08-17 05:47:32',2162,249,'2005-08-20 03:11:32',1,'2006-02-15 21:30:53'),(11669,'2005-08-17 05:48:51',3224,487,'2005-08-22 01:22:51',1,'2006-02-15 21:30:53'),(11670,'2005-08-17 05:48:59',4437,286,'2005-08-19 08:51:59',1,'2006-02-15 21:30:53'),(11671,'2005-08-17 05:50:21',3569,338,'2005-08-20 03:43:21',1,'2006-02-15 21:30:53'),(11672,'2006-02-14 15:16:03',3947,521,NULL,2,'2006-02-15 21:30:53'),(11673,'2005-08-17 05:54:15',823,303,'2005-08-21 08:12:15',2,'2006-02-15 21:30:53'),(11674,'2005-08-17 05:56:27',582,306,'2005-08-24 08:50:27',2,'2006-02-15 21:30:53'),(11675,'2005-08-17 05:57:54',1322,514,'2005-08-21 23:57:54',1,'2006-02-15 21:30:53'),(11676,'2006-02-14 15:16:03',4496,216,NULL,2,'2006-02-15 21:30:53'),(11677,'2005-08-17 06:06:26',2206,407,'2005-08-20 04:35:26',2,'2006-02-15 21:30:53'),(11678,'2005-08-17 06:07:39',3511,176,'2005-08-21 10:51:39',2,'2006-02-15 21:30:53'),(11679,'2005-08-17 06:08:54',3337,72,'2005-08-21 07:50:54',1,'2006-02-15 21:30:53'),(11680,'2005-08-17 06:12:27',4538,221,'2005-08-23 08:54:27',1,'2006-02-15 21:30:53'),(11681,'2005-08-17 06:13:30',1260,543,'2005-08-26 01:29:30',2,'2006-02-15 21:30:53'),(11682,'2005-08-17 06:13:40',2544,387,'2005-08-18 06:11:40',1,'2006-02-15 21:30:53'),(11683,'2005-08-17 06:15:17',2603,66,'2005-08-26 05:33:17',1,'2006-02-15 21:30:53'),(11684,'2005-08-17 06:27:15',4277,517,'2005-08-22 02:11:15',2,'2006-02-15 21:30:53'),(11685,'2005-08-17 06:39:16',3552,51,'2005-08-22 04:20:16',2,'2006-02-15 21:30:53'),(11686,'2005-08-17 06:39:30',1393,392,'2005-08-21 10:19:30',2,'2006-02-15 21:30:53'),(11687,'2005-08-17 06:39:59',1977,169,'2005-08-23 04:53:59',1,'2006-02-15 21:30:53'),(11688,'2005-08-17 06:41:58',2229,82,'2005-08-25 04:38:58',1,'2006-02-15 21:30:53'),(11689,'2005-08-17 06:42:08',2390,419,'2005-08-26 06:09:08',1,'2006-02-15 21:30:53'),(11690,'2005-08-17 06:44:22',3934,267,'2005-08-24 03:49:22',1,'2006-02-15 21:30:53'),(11691,'2005-08-17 06:51:05',2529,515,'2005-08-24 09:53:05',1,'2006-02-15 21:30:53'),(11692,'2005-08-17 06:52:41',1222,350,'2005-08-24 12:17:41',2,'2006-02-15 21:30:53'),(11693,'2005-08-17 06:56:56',793,221,'2005-08-24 06:20:56',2,'2006-02-15 21:30:53'),(11694,'2005-08-17 06:57:30',3540,410,'2005-08-24 07:52:30',1,'2006-02-15 21:30:53'),(11695,'2005-08-17 07:01:08',1110,386,'2005-08-21 09:21:08',1,'2006-02-15 21:30:53'),(11696,'2005-08-17 07:01:09',3816,522,'2005-08-21 09:12:09',2,'2006-02-15 21:30:53'),(11697,'2005-08-17 07:09:19',383,329,'2005-08-19 02:02:19',1,'2006-02-15 21:30:53'),(11698,'2005-08-17 07:09:59',3946,353,'2005-08-19 04:31:59',1,'2006-02-15 21:30:53'),(11699,'2005-08-17 07:11:58',3997,339,'2005-08-26 12:08:58',1,'2006-02-15 21:30:53'),(11700,'2005-08-17 07:12:31',2365,104,'2005-08-18 04:21:31',2,'2006-02-15 21:30:53'),(11701,'2005-08-17 07:15:47',993,34,'2005-08-19 01:44:47',2,'2006-02-15 21:30:53'),(11702,'2005-08-17 07:18:56',3286,526,'2005-08-24 06:33:56',1,'2006-02-15 21:30:53'),(11703,'2005-08-17 07:19:29',1692,279,'2005-08-20 09:35:29',2,'2006-02-15 21:30:53'),(11704,'2005-08-17 07:21:22',1099,135,'2005-08-25 06:06:22',1,'2006-02-15 21:30:53'),(11705,'2005-08-17 07:22:25',4242,489,'2005-08-18 06:42:25',1,'2006-02-15 21:30:53'),(11706,'2005-08-17 07:23:46',4234,414,'2005-08-18 10:13:46',2,'2006-02-15 21:30:53'),(11707,'2005-08-17 07:24:59',1030,581,'2005-08-24 10:40:59',1,'2006-02-15 21:30:53'),(11708,'2005-08-17 07:26:47',76,582,'2005-08-22 04:11:47',1,'2006-02-15 21:30:53'),(11709,'2006-02-14 15:16:03',1720,330,NULL,1,'2006-02-15 21:30:53'),(11710,'2005-08-17 07:29:44',613,553,'2005-08-19 02:06:44',2,'2006-02-15 21:30:53'),(11711,'2005-08-17 07:30:55',1503,470,'2005-08-18 09:21:55',1,'2006-02-15 21:30:53'),(11712,'2005-08-17 07:32:51',3607,203,'2005-08-21 09:18:51',2,'2006-02-15 21:30:53'),(11713,'2005-08-17 07:34:05',1919,590,'2005-08-25 07:49:05',1,'2006-02-15 21:30:53'),(11714,'2005-08-17 07:34:55',17,151,'2005-08-18 04:07:55',1,'2006-02-15 21:30:53'),(11715,'2005-08-17 07:40:55',1615,452,'2005-08-25 11:19:55',1,'2006-02-15 21:30:53'),(11716,'2005-08-17 07:40:55',3054,287,'2005-08-21 05:56:55',1,'2006-02-15 21:30:53'),(11717,'2005-08-17 07:44:09',1371,566,'2005-08-20 09:39:09',2,'2006-02-15 21:30:53'),(11718,'2005-08-17 07:44:42',3673,555,'2005-08-23 03:02:42',2,'2006-02-15 21:30:53'),(11719,'2005-08-17 07:46:05',2054,338,'2005-08-23 08:52:05',1,'2006-02-15 21:30:53'),(11720,'2005-08-17 07:46:54',1707,121,'2005-08-26 04:19:54',2,'2006-02-15 21:30:53'),(11721,'2005-08-17 07:49:17',1923,46,'2005-08-18 04:08:17',1,'2006-02-15 21:30:53'),(11722,'2005-08-17 07:53:03',2430,321,'2005-08-22 06:56:03',2,'2006-02-15 21:30:53'),(11723,'2005-08-17 07:56:22',1665,341,'2005-08-22 03:49:22',1,'2006-02-15 21:30:53'),(11724,'2005-08-17 08:04:44',4484,207,'2005-08-25 03:25:44',2,'2006-02-15 21:30:53'),(11725,'2005-08-17 08:09:00',519,45,'2005-08-18 09:50:00',1,'2006-02-15 21:30:53'),(11726,'2005-08-17 08:11:10',4438,266,'2005-08-22 05:45:10',1,'2006-02-15 21:30:53'),(11727,'2005-08-17 08:12:20',98,6,'2005-08-19 12:45:20',1,'2006-02-15 21:30:53'),(11728,'2005-08-17 08:12:26',726,444,'2005-08-18 03:26:26',1,'2006-02-15 21:30:53'),(11729,'2005-08-17 08:14:41',2819,215,'2005-08-22 02:54:41',1,'2006-02-15 21:30:53'),(11730,'2005-08-17 08:22:00',3817,98,'2005-08-22 05:43:00',2,'2006-02-15 21:30:53'),(11731,'2005-08-17 08:24:35',917,52,'2005-08-24 02:54:35',2,'2006-02-15 21:30:53'),(11732,'2005-08-17 08:29:46',460,137,'2005-08-23 14:21:46',2,'2006-02-15 21:30:53'),(11733,'2005-08-17 08:31:03',439,251,'2005-08-21 05:44:03',2,'2006-02-15 21:30:53'),(11734,'2005-08-17 08:34:22',4063,337,'2005-08-25 11:56:22',2,'2006-02-15 21:30:53'),(11735,'2005-08-17 08:35:42',2555,452,'2005-08-26 11:04:42',1,'2006-02-15 21:30:53'),(11736,'2005-08-17 08:40:55',4217,535,'2005-08-26 09:03:55',1,'2006-02-15 21:30:53'),(11737,'2005-08-17 08:42:08',4128,549,'2005-08-19 08:14:08',1,'2006-02-15 21:30:53'),(11738,'2005-08-17 08:45:55',3042,347,'2005-08-26 07:09:55',1,'2006-02-15 21:30:53'),(11739,'2006-02-14 15:16:03',4568,373,NULL,2,'2006-02-15 21:30:53'),(11740,'2005-08-17 08:48:31',2441,27,'2005-08-24 07:47:31',2,'2006-02-15 21:30:53'),(11741,'2005-08-17 08:48:39',1819,473,'2005-08-20 07:37:39',1,'2006-02-15 21:30:53'),(11742,'2005-08-17 08:48:43',596,470,'2005-08-23 07:18:43',2,'2006-02-15 21:30:53'),(11743,'2005-08-17 08:49:05',294,336,'2005-08-22 08:53:05',2,'2006-02-15 21:30:53'),(11744,'2005-08-17 08:54:30',297,26,'2005-08-25 03:28:30',1,'2006-02-15 21:30:53'),(11745,'2005-08-17 09:00:01',4018,240,'2005-08-26 14:29:01',2,'2006-02-15 21:30:53'),(11746,'2005-08-17 09:03:24',4571,299,'2005-08-25 06:08:24',2,'2006-02-15 21:30:53'),(11747,'2005-08-17 09:03:31',1041,555,'2005-08-19 08:23:31',2,'2006-02-15 21:30:53'),(11748,'2005-08-17 09:04:02',1175,595,'2005-08-21 12:22:02',2,'2006-02-15 21:30:53'),(11749,'2005-08-17 09:04:03',4141,567,'2005-08-19 09:32:03',2,'2006-02-15 21:30:53'),(11750,'2005-08-17 09:07:00',665,190,'2005-08-23 08:16:00',2,'2006-02-15 21:30:53'),(11751,'2005-08-17 09:07:56',3309,51,'2005-08-26 13:16:56',1,'2006-02-15 21:30:53'),(11752,'2005-08-17 09:10:55',1833,481,'2005-08-18 06:22:55',1,'2006-02-15 21:30:53'),(11753,'2005-08-17 09:11:52',2599,43,'2005-08-25 05:03:52',2,'2006-02-15 21:30:53'),(11754,'2006-02-14 15:16:03',3747,163,NULL,2,'2006-02-15 21:30:53'),(11755,'2005-08-17 09:15:35',3457,513,'2005-08-23 06:28:35',2,'2006-02-15 21:30:53'),(11756,'2005-08-17 09:29:22',1798,198,'2005-08-21 12:17:22',1,'2006-02-15 21:30:53'),(11757,'2006-02-14 15:16:03',1295,550,NULL,2,'2006-02-15 21:30:53'),(11758,'2005-08-17 09:33:02',11,533,'2005-08-24 05:03:02',2,'2006-02-15 21:30:53'),(11759,'2005-08-17 09:41:23',2655,108,'2005-08-19 11:58:23',2,'2006-02-15 21:30:53'),(11760,'2005-08-17 09:44:22',626,545,'2005-08-24 14:39:22',2,'2006-02-15 21:30:53'),(11761,'2005-08-17 09:44:59',2230,13,'2005-08-25 07:46:59',1,'2006-02-15 21:30:53'),(11762,'2005-08-17 09:48:06',1204,244,'2005-08-26 13:12:06',2,'2006-02-15 21:30:53'),(11763,'2005-08-17 09:51:39',872,586,'2005-08-21 10:15:39',2,'2006-02-15 21:30:53'),(11764,'2005-08-17 09:51:54',4502,252,'2005-08-20 07:11:54',1,'2006-02-15 21:30:53'),(11765,'2005-08-17 09:55:28',4311,308,'2005-08-19 15:53:28',2,'2006-02-15 21:30:53'),(11766,'2005-08-17 09:58:40',2999,544,'2005-08-21 04:59:40',1,'2006-02-15 21:30:53'),(11767,'2005-08-17 10:00:40',2374,77,'2005-08-25 04:14:40',2,'2006-02-15 21:30:53'),(11768,'2005-08-17 10:02:29',1307,564,'2005-08-23 10:26:29',1,'2006-02-15 21:30:53'),(11769,'2005-08-17 10:04:49',1406,418,'2005-08-20 09:22:49',1,'2006-02-15 21:30:53'),(11770,'2005-08-17 10:05:05',2862,475,'2005-08-20 15:59:05',1,'2006-02-15 21:30:53'),(11771,'2005-08-17 10:17:09',2575,324,'2005-08-25 10:58:09',1,'2006-02-15 21:30:53'),(11772,'2005-08-17 10:18:57',1021,237,'2005-08-26 12:48:57',2,'2006-02-15 21:30:53'),(11773,'2005-08-17 10:19:51',1886,384,'2005-08-23 04:30:51',1,'2006-02-15 21:30:53'),(11774,'2005-08-17 10:20:39',1679,488,'2005-08-23 13:37:39',1,'2006-02-15 21:30:53'),(11775,'2005-08-17 10:25:53',256,574,'2005-08-22 08:37:53',2,'2006-02-15 21:30:53'),(11776,'2005-08-17 10:27:19',2400,306,'2005-08-20 14:02:19',2,'2006-02-15 21:30:53'),(11777,'2005-08-17 10:27:19',4065,83,'2005-08-26 13:10:19',1,'2006-02-15 21:30:53'),(11778,'2005-08-17 10:31:40',1306,213,'2005-08-25 13:53:40',2,'2006-02-15 21:30:53'),(11779,'2005-08-17 10:31:58',181,126,'2005-08-24 15:28:58',2,'2006-02-15 21:30:53'),(11780,'2005-08-17 10:34:24',2268,297,'2005-08-21 04:55:24',1,'2006-02-15 21:30:53'),(11781,'2005-08-17 10:37:00',1853,506,'2005-08-21 12:03:00',2,'2006-02-15 21:30:53'),(11782,'2006-02-14 15:16:03',4098,354,NULL,1,'2006-02-15 21:30:53'),(11783,'2005-08-17 10:39:24',979,152,'2005-08-21 12:43:24',2,'2006-02-15 21:30:53'),(11784,'2005-08-17 10:48:05',3101,297,'2005-08-19 06:47:05',1,'2006-02-15 21:30:53'),(11785,'2005-08-17 10:54:46',2760,182,'2005-08-23 14:15:46',2,'2006-02-15 21:30:53'),(11786,'2005-08-17 10:57:40',1487,435,'2005-08-24 06:48:40',2,'2006-02-15 21:30:53'),(11787,'2005-08-17 10:59:00',1980,195,'2005-08-19 05:56:00',1,'2006-02-15 21:30:53'),(11788,'2005-08-17 10:59:18',1310,560,'2005-08-22 11:12:18',1,'2006-02-15 21:30:53'),(11789,'2005-08-17 10:59:24',851,150,'2005-08-26 16:17:24',1,'2006-02-15 21:30:53'),(11790,'2005-08-17 11:00:08',2384,451,'2005-08-20 05:15:08',2,'2006-02-15 21:30:53'),(11791,'2005-08-17 11:01:11',3640,219,'2005-08-22 06:31:11',2,'2006-02-15 21:30:53'),(11792,'2005-08-17 11:03:53',3703,376,'2005-08-26 06:34:53',1,'2006-02-15 21:30:53'),(11793,'2005-08-17 11:05:53',1955,352,'2005-08-25 12:25:53',1,'2006-02-15 21:30:53'),(11794,'2005-08-17 11:08:48',3486,453,'2005-08-20 13:36:48',2,'2006-02-15 21:30:53'),(11795,'2005-08-17 11:13:38',2220,565,'2005-08-19 14:20:38',2,'2006-02-15 21:30:53'),(11796,'2005-08-17 11:16:47',3983,435,'2005-08-18 16:55:47',2,'2006-02-15 21:30:53'),(11797,'2005-08-17 11:17:21',1142,546,'2005-08-18 09:14:21',2,'2006-02-15 21:30:53'),(11798,'2005-08-17 11:21:43',3974,448,'2005-08-25 07:43:43',2,'2006-02-15 21:30:53'),(11799,'2005-08-17 11:25:25',40,501,'2005-08-25 13:03:25',2,'2006-02-15 21:30:53'),(11800,'2005-08-17 11:29:52',2284,350,'2005-08-21 08:37:52',1,'2006-02-15 21:30:53'),(11801,'2005-08-17 11:30:11',659,126,'2005-08-23 09:54:11',1,'2006-02-15 21:30:53'),(11802,'2005-08-17 11:32:51',2815,221,'2005-08-22 10:56:51',1,'2006-02-15 21:30:53'),(11803,'2005-08-17 11:42:08',3648,160,'2005-08-22 07:45:08',2,'2006-02-15 21:30:53'),(11804,'2005-08-17 11:42:45',1040,556,'2005-08-25 07:11:45',1,'2006-02-15 21:30:53'),(11805,'2005-08-17 11:48:47',1208,208,'2005-08-26 11:06:47',2,'2006-02-15 21:30:53'),(11806,'2005-08-17 11:49:28',3203,125,'2005-08-22 15:42:28',1,'2006-02-15 21:30:53'),(11807,'2005-08-17 11:51:15',4052,201,'2005-08-21 11:47:15',2,'2006-02-15 21:30:53'),(11808,'2005-08-17 11:51:16',4042,462,'2005-08-18 14:01:16',2,'2006-02-15 21:30:53'),(11809,'2005-08-17 11:51:39',1136,305,'2005-08-24 17:14:39',1,'2006-02-15 21:30:53'),(11810,'2005-08-17 11:56:48',1548,270,'2005-08-20 17:39:48',1,'2006-02-15 21:30:53'),(11811,'2005-08-17 11:59:18',195,130,'2005-08-18 09:13:18',2,'2006-02-15 21:30:53'),(11812,'2005-08-17 12:00:54',119,132,'2005-08-18 16:08:54',1,'2006-02-15 21:30:53'),(11813,'2005-08-17 12:06:54',1074,36,'2005-08-21 17:52:54',2,'2006-02-15 21:30:53'),(11814,'2005-08-17 12:09:20',3462,509,'2005-08-25 16:56:20',2,'2006-02-15 21:30:53'),(11815,'2005-08-17 12:13:26',272,192,'2005-08-22 17:15:26',2,'2006-02-15 21:30:53'),(11816,'2005-08-17 12:14:16',3897,224,'2005-08-19 06:15:16',2,'2006-02-15 21:30:53'),(11817,'2005-08-17 12:20:01',2297,38,'2005-08-19 18:06:01',1,'2006-02-15 21:30:53'),(11818,'2005-08-17 12:22:04',213,512,'2005-08-25 15:59:04',2,'2006-02-15 21:30:53'),(11819,'2005-08-17 12:25:17',656,208,'2005-08-19 16:12:17',1,'2006-02-15 21:30:53'),(11820,'2005-08-17 12:25:33',2801,401,'2005-08-19 07:04:33',2,'2006-02-15 21:30:53'),(11821,'2005-08-17 12:27:55',2711,20,'2005-08-18 07:07:55',1,'2006-02-15 21:30:53'),(11822,'2005-08-17 12:32:39',1317,263,'2005-08-18 12:30:39',2,'2006-02-15 21:30:53'),(11823,'2005-08-17 12:36:37',2626,352,'2005-08-22 11:10:37',2,'2006-02-15 21:30:53'),(11824,'2005-08-17 12:37:54',2639,1,'2005-08-19 10:11:54',2,'2006-02-15 21:30:53'),(11825,'2005-08-17 12:43:30',2656,296,'2005-08-20 15:25:30',1,'2006-02-15 21:30:53'),(11826,'2005-08-17 12:43:46',1837,536,'2005-08-19 16:59:46',2,'2006-02-15 21:30:53'),(11827,'2005-08-17 12:44:27',3064,523,'2005-08-24 13:31:27',1,'2006-02-15 21:30:53'),(11828,'2005-08-17 12:48:28',2593,268,'2005-08-24 09:24:28',2,'2006-02-15 21:30:53'),(11829,'2005-08-17 12:52:04',2207,563,'2005-08-19 10:50:04',2,'2006-02-15 21:30:53'),(11830,'2005-08-17 12:53:15',3713,522,'2005-08-25 08:08:15',1,'2006-02-15 21:30:53'),(11831,'2005-08-17 12:54:47',4562,32,'2005-08-21 11:21:47',1,'2006-02-15 21:30:53'),(11832,'2005-08-17 12:55:31',2331,125,'2005-08-19 08:31:31',1,'2006-02-15 21:30:53'),(11833,'2005-08-17 13:00:33',3728,424,'2005-08-18 13:45:33',2,'2006-02-15 21:30:53'),(11834,'2005-08-17 13:00:40',2407,261,'2005-08-22 12:50:40',1,'2006-02-15 21:30:53'),(11835,'2005-08-17 13:03:13',2796,479,'2005-08-19 10:50:13',1,'2006-02-15 21:30:53'),(11836,'2005-08-17 13:03:36',2253,198,'2005-08-19 17:15:36',1,'2006-02-15 21:30:53'),(11837,'2005-08-17 13:04:41',1085,81,'2005-08-26 14:19:41',1,'2006-02-15 21:30:53'),(11838,'2005-08-17 13:06:00',3576,161,'2005-08-20 11:44:00',1,'2006-02-15 21:30:53'),(11839,'2005-08-17 13:08:45',2282,80,'2005-08-18 15:05:45',2,'2006-02-15 21:30:53'),(11840,'2005-08-17 13:09:01',1824,491,'2005-08-19 17:42:01',1,'2006-02-15 21:30:53'),(11841,'2005-08-17 13:12:20',1524,270,'2005-08-21 11:16:20',2,'2006-02-15 21:30:53'),(11842,'2005-08-17 13:13:37',2680,422,'2005-08-20 08:32:37',1,'2006-02-15 21:30:53'),(11843,'2005-08-17 13:14:50',3091,187,'2005-08-22 11:31:50',2,'2006-02-15 21:30:53'),(11844,'2005-08-17 13:16:04',3791,368,'2005-08-18 10:16:04',1,'2006-02-15 21:30:53'),(11845,'2005-08-17 13:16:38',14,65,'2005-08-18 11:21:38',1,'2006-02-15 21:30:53'),(11846,'2005-08-17 13:18:29',3306,283,'2005-08-22 18:05:29',2,'2006-02-15 21:30:53'),(11847,'2006-02-14 15:16:03',1784,337,NULL,1,'2006-02-15 21:30:53'),(11848,'2006-02-14 15:16:03',3680,152,NULL,1,'2006-02-15 21:30:53'),(11849,'2005-08-17 13:24:55',1191,92,'2005-08-22 12:50:55',2,'2006-02-15 21:30:53'),(11850,'2005-08-17 13:30:15',1437,80,'2005-08-21 17:24:15',1,'2006-02-15 21:30:53'),(11851,'2005-08-17 13:30:27',3225,376,'2005-08-20 15:34:27',2,'2006-02-15 21:30:53'),(11852,'2005-08-17 13:38:27',2358,596,'2005-08-24 08:50:27',1,'2006-02-15 21:30:53'),(11853,'2005-08-17 13:39:32',3888,6,'2005-08-23 18:44:32',2,'2006-02-15 21:30:53'),(11854,'2005-08-17 13:42:52',137,313,'2005-08-26 14:04:52',1,'2006-02-15 21:30:53'),(11855,'2005-08-17 13:43:07',1062,535,'2005-08-26 08:07:07',1,'2006-02-15 21:30:53'),(11856,'2005-08-17 13:44:49',305,28,'2005-08-21 17:20:49',1,'2006-02-15 21:30:53'),(11857,'2005-08-17 13:48:30',101,146,'2005-08-18 15:55:30',1,'2006-02-15 21:30:53'),(11858,'2005-08-17 13:50:31',3483,503,'2005-08-19 08:45:31',2,'2006-02-15 21:30:53'),(11859,'2005-08-17 13:51:20',423,144,'2005-08-21 13:47:20',2,'2006-02-15 21:30:53'),(11860,'2005-08-17 13:52:26',4354,257,'2005-08-24 14:47:26',1,'2006-02-15 21:30:53'),(11861,'2005-08-17 13:53:47',2674,232,'2005-08-21 16:07:47',1,'2006-02-15 21:30:53'),(11862,'2005-08-17 13:54:53',2604,529,'2005-08-19 10:48:53',1,'2006-02-15 21:30:53'),(11863,'2005-08-17 13:56:01',1003,112,'2005-08-23 18:38:01',1,'2006-02-15 21:30:53'),(11864,'2005-08-17 14:02:01',2985,96,'2005-08-21 19:54:01',1,'2006-02-15 21:30:53'),(11865,'2005-08-17 14:03:46',2577,345,'2005-08-19 08:39:46',1,'2006-02-15 21:30:53'),(11866,'2006-02-14 15:16:03',2758,200,NULL,2,'2006-02-15 21:30:53'),(11867,'2005-08-17 14:04:28',938,434,'2005-08-21 10:08:28',1,'2006-02-15 21:30:53'),(11868,'2005-08-17 14:05:34',2909,445,'2005-08-19 15:47:34',1,'2006-02-15 21:30:53'),(11869,'2005-08-17 14:10:22',3453,19,'2005-08-24 18:39:22',1,'2006-02-15 21:30:53'),(11870,'2005-08-17 14:11:28',4251,432,'2005-08-24 16:43:28',1,'2006-02-15 21:30:53'),(11871,'2005-08-17 14:11:44',3013,484,'2005-08-18 17:50:44',1,'2006-02-15 21:30:53'),(11872,'2005-08-17 14:11:45',4306,113,'2005-08-21 17:02:45',2,'2006-02-15 21:30:53'),(11873,'2005-08-17 14:14:39',4021,554,'2005-08-18 17:20:39',2,'2006-02-15 21:30:53'),(11874,'2005-08-17 14:16:40',2637,467,'2005-08-18 15:51:40',2,'2006-02-15 21:30:53'),(11875,'2005-08-17 14:16:48',1787,294,'2005-08-26 14:20:48',1,'2006-02-15 21:30:53'),(11876,'2005-08-17 14:18:21',3982,426,'2005-08-20 19:48:21',1,'2006-02-15 21:30:53'),(11877,'2005-08-17 14:21:11',4528,445,'2005-08-25 19:46:11',1,'2006-02-15 21:30:53'),(11878,'2005-08-17 14:23:52',255,549,'2005-08-21 14:23:52',1,'2006-02-15 21:30:53'),(11879,'2005-08-17 14:25:09',2500,312,'2005-08-26 09:19:09',1,'2006-02-15 21:30:53'),(11880,'2005-08-17 14:28:28',1539,597,'2005-08-26 12:32:28',2,'2006-02-15 21:30:53'),(11881,'2005-08-17 14:31:56',3124,272,'2005-08-21 11:05:56',1,'2006-02-15 21:30:53'),(11882,'2005-08-17 14:33:41',2401,234,'2005-08-26 17:25:41',2,'2006-02-15 21:30:53'),(11883,'2005-08-17 14:41:28',221,551,'2005-08-19 09:54:28',1,'2006-02-15 21:30:53'),(11884,'2005-08-17 14:43:23',797,178,'2005-08-25 15:38:23',1,'2006-02-15 21:30:53'),(11885,'2005-08-17 14:53:53',3931,481,'2005-08-22 10:59:53',1,'2006-02-15 21:30:53'),(11886,'2005-08-17 14:58:51',608,204,'2005-08-19 16:07:51',2,'2006-02-15 21:30:53'),(11887,'2005-08-17 15:03:13',3290,54,'2005-08-19 09:49:13',1,'2006-02-15 21:30:53'),(11888,'2005-08-17 15:04:05',1100,160,'2005-08-25 18:52:05',2,'2006-02-15 21:30:53'),(11889,'2005-08-17 15:08:27',293,395,'2005-08-18 17:10:27',1,'2006-02-15 21:30:53'),(11890,'2005-08-17 15:08:43',3023,487,'2005-08-26 14:56:43',2,'2006-02-15 21:30:53'),(11891,'2005-08-17 15:11:55',2619,115,'2005-08-22 11:11:55',2,'2006-02-15 21:30:53'),(11892,'2005-08-17 15:13:21',746,227,'2005-08-21 09:19:21',2,'2006-02-15 21:30:53'),(11893,'2005-08-17 15:13:29',2321,496,'2005-08-25 11:09:29',1,'2006-02-15 21:30:53'),(11894,'2005-08-17 15:15:01',1223,67,'2005-08-26 13:49:01',1,'2006-02-15 21:30:53'),(11895,'2005-08-17 15:15:07',2156,236,'2005-08-18 11:00:07',2,'2006-02-15 21:30:53'),(11896,'2005-08-17 15:19:54',259,436,'2005-08-24 18:22:54',2,'2006-02-15 21:30:53'),(11897,'2005-08-17 15:24:06',3904,238,'2005-08-23 11:50:06',2,'2006-02-15 21:30:53'),(11898,'2005-08-17 15:24:12',3163,169,'2005-08-24 13:36:12',2,'2006-02-15 21:30:53'),(11899,'2005-08-17 15:29:12',3179,84,'2005-08-24 17:41:12',1,'2006-02-15 21:30:53'),(11900,'2005-08-17 15:30:44',1931,239,'2005-08-19 16:12:44',1,'2006-02-15 21:30:53'),(11901,'2005-08-17 15:35:47',4274,70,'2005-08-20 10:33:47',2,'2006-02-15 21:30:53'),(11902,'2005-08-17 15:37:34',1387,63,'2005-08-22 17:28:34',2,'2006-02-15 21:30:53'),(11903,'2005-08-17 15:37:45',1196,542,'2005-08-23 18:31:45',2,'2006-02-15 21:30:53'),(11904,'2005-08-17 15:39:26',2846,145,'2005-08-21 18:24:26',2,'2006-02-15 21:30:53'),(11905,'2005-08-17 15:40:18',2725,349,'2005-08-26 15:14:18',2,'2006-02-15 21:30:53'),(11906,'2005-08-17 15:40:46',325,478,'2005-08-20 15:20:46',2,'2006-02-15 21:30:53'),(11907,'2005-08-17 15:40:47',3928,505,'2005-08-20 19:55:47',2,'2006-02-15 21:30:53'),(11908,'2005-08-17 15:43:09',3390,314,'2005-08-24 14:32:09',2,'2006-02-15 21:30:53'),(11909,'2006-02-14 15:16:03',871,474,NULL,1,'2006-02-15 21:30:53'),(11910,'2005-08-17 15:44:37',4254,418,'2005-08-19 10:58:37',2,'2006-02-15 21:30:53'),(11911,'2005-08-17 15:51:35',3578,472,'2005-08-26 20:26:35',2,'2006-02-15 21:30:53'),(11912,'2005-08-17 15:51:49',744,573,'2005-08-24 18:48:49',1,'2006-02-15 21:30:53'),(11913,'2005-08-17 15:53:17',741,295,'2005-08-24 18:50:17',2,'2006-02-15 21:30:53'),(11914,'2005-08-17 16:04:42',1634,230,'2005-08-22 19:29:42',1,'2006-02-15 21:30:53'),(11915,'2005-08-17 16:05:28',1557,269,'2005-08-25 19:53:28',2,'2006-02-15 21:30:53'),(11916,'2005-08-17 16:05:51',2631,86,'2005-08-20 10:23:51',1,'2006-02-15 21:30:53'),(11917,'2005-08-17 16:08:17',1608,270,'2005-08-20 20:01:17',1,'2006-02-15 21:30:53'),(11918,'2005-08-17 16:08:42',2169,533,'2005-08-20 20:12:42',1,'2006-02-15 21:30:53'),(11919,'2005-08-17 16:08:49',4497,40,'2005-08-20 16:59:49',2,'2006-02-15 21:30:53'),(11920,'2005-08-17 16:10:19',4253,402,'2005-08-20 13:54:19',2,'2006-02-15 21:30:53'),(11921,'2005-08-17 16:12:27',494,485,'2005-08-25 22:07:27',1,'2006-02-15 21:30:53'),(11922,'2005-08-17 16:20:37',3707,15,'2005-08-26 16:53:37',2,'2006-02-15 21:30:53'),(11923,'2005-08-17 16:21:47',1907,72,'2005-08-18 14:26:47',2,'2006-02-15 21:30:53'),(11924,'2005-08-17 16:22:05',1711,202,'2005-08-26 12:34:05',1,'2006-02-15 21:30:53'),(11925,'2005-08-17 16:23:04',1441,370,'2005-08-21 11:38:04',1,'2006-02-15 21:30:53'),(11926,'2005-08-17 16:25:02',2111,516,'2005-08-22 11:36:02',1,'2006-02-15 21:30:53'),(11927,'2005-08-17 16:25:03',3134,178,'2005-08-23 16:41:03',1,'2006-02-15 21:30:53'),(11928,'2005-08-17 16:28:24',79,261,'2005-08-23 17:50:24',2,'2006-02-15 21:30:53'),(11929,'2005-08-17 16:28:51',3765,327,'2005-08-25 19:36:51',1,'2006-02-15 21:30:53'),(11930,'2005-08-17 16:28:53',1299,5,'2005-08-25 10:31:53',1,'2006-02-15 21:30:53'),(11931,'2005-08-17 16:35:14',2022,242,'2005-08-19 19:16:14',1,'2006-02-15 21:30:53'),(11932,'2005-08-17 16:36:12',151,364,'2005-08-18 19:34:12',2,'2006-02-15 21:30:53'),(11933,'2005-08-17 16:38:20',2574,438,'2005-08-22 14:31:20',1,'2006-02-15 21:30:53'),(11934,'2005-08-17 16:40:00',1230,596,'2005-08-20 20:13:00',2,'2006-02-15 21:30:53'),(11935,'2005-08-17 16:42:13',1640,66,'2005-08-22 20:38:13',2,'2006-02-15 21:30:53'),(11936,'2005-08-17 16:45:34',1127,380,'2005-08-21 13:33:34',2,'2006-02-15 21:30:53'),(11937,'2005-08-17 16:48:36',2926,515,'2005-08-24 19:01:36',1,'2006-02-15 21:30:53'),(11938,'2005-08-17 16:54:54',3927,426,'2005-08-24 19:18:54',1,'2006-02-15 21:30:53'),(11939,'2005-08-17 16:55:57',3305,516,'2005-08-24 21:36:57',1,'2006-02-15 21:30:53'),(11940,'2005-08-17 16:56:28',1188,163,'2005-08-18 15:09:28',1,'2006-02-15 21:30:53'),(11941,'2005-08-17 16:56:57',159,566,'2005-08-24 16:29:57',1,'2006-02-15 21:30:53'),(11942,'2006-02-14 15:16:03',4094,576,NULL,2,'2006-02-15 21:30:53'),(11943,'2005-08-17 17:00:42',4466,69,'2005-08-26 22:07:42',1,'2006-02-15 21:30:53'),(11944,'2005-08-17 17:02:42',27,389,'2005-08-21 16:40:42',2,'2006-02-15 21:30:53'),(11945,'2005-08-17 17:05:33',1108,380,'2005-08-20 18:37:33',2,'2006-02-15 21:30:53'),(11946,'2005-08-17 17:05:53',2953,569,'2005-08-19 13:56:53',1,'2006-02-15 21:30:53'),(11947,'2005-08-17 17:08:13',2928,220,'2005-08-23 21:53:13',1,'2006-02-15 21:30:53'),(11948,'2005-08-17 17:11:05',3329,40,'2005-08-25 21:16:05',2,'2006-02-15 21:30:53'),(11949,'2005-08-17 17:12:26',854,198,'2005-08-23 20:48:26',1,'2006-02-15 21:30:53'),(11950,'2005-08-17 17:13:16',4412,190,'2005-08-26 21:25:16',1,'2006-02-15 21:30:53'),(11951,'2005-08-17 17:14:02',1394,155,'2005-08-26 12:04:02',2,'2006-02-15 21:30:53'),(11952,'2005-08-17 17:14:57',2411,288,'2005-08-19 19:15:57',1,'2006-02-15 21:30:53'),(11953,'2005-08-17 17:16:42',2993,399,'2005-08-23 18:28:42',1,'2006-02-15 21:30:53'),(11954,'2005-08-17 17:18:36',220,145,'2005-08-18 19:49:36',1,'2006-02-15 21:30:53'),(11955,'2005-08-17 17:21:35',1221,319,'2005-08-24 22:06:35',1,'2006-02-15 21:30:53'),(11956,'2005-08-17 17:22:05',2533,457,'2005-08-25 22:19:05',2,'2006-02-15 21:30:53'),(11957,'2005-08-17 17:22:29',1924,198,'2005-08-23 21:47:29',2,'2006-02-15 21:30:53'),(11958,'2005-08-17 17:23:20',2061,217,'2005-08-24 14:47:20',2,'2006-02-15 21:30:53'),(11959,'2005-08-17 17:23:35',2694,101,'2005-08-20 20:57:35',1,'2006-02-15 21:30:53'),(11960,'2005-08-17 17:24:30',3924,84,'2005-08-18 14:28:30',1,'2006-02-15 21:30:53'),(11961,'2005-08-17 17:28:01',2015,276,'2005-08-21 20:43:01',1,'2006-02-15 21:30:53'),(11962,'2005-08-17 17:34:38',4384,29,'2005-08-21 12:59:38',2,'2006-02-15 21:30:53'),(11963,'2005-08-17 17:35:47',232,211,'2005-08-23 16:19:47',2,'2006-02-15 21:30:53'),(11964,'2005-08-17 17:37:03',2225,309,'2005-08-25 11:55:03',2,'2006-02-15 21:30:53'),(11965,'2005-08-17 17:39:45',194,490,'2005-08-19 12:05:45',1,'2006-02-15 21:30:53'),(11966,'2005-08-17 17:40:04',3702,283,'2005-08-20 15:45:04',1,'2006-02-15 21:30:53'),(11967,'2005-08-17 17:45:00',1151,521,'2005-08-22 13:03:00',1,'2006-02-15 21:30:53'),(11968,'2005-08-17 17:47:34',698,239,'2005-08-18 19:40:34',1,'2006-02-15 21:30:53'),(11969,'2005-08-17 17:49:37',668,550,'2005-08-19 19:45:37',2,'2006-02-15 21:30:53'),(11970,'2005-08-17 17:53:09',1779,21,'2005-08-24 14:41:09',1,'2006-02-15 21:30:53'),(11971,'2005-08-17 17:53:42',2756,131,'2005-08-18 12:11:42',2,'2006-02-15 21:30:53'),(11972,'2005-08-17 17:55:46',1282,308,'2005-08-22 15:31:46',2,'2006-02-15 21:30:53'),(11973,'2005-08-17 17:55:58',1472,131,'2005-08-21 19:55:58',2,'2006-02-15 21:30:53'),(11974,'2005-08-17 17:56:48',1609,485,'2005-08-21 19:14:48',2,'2006-02-15 21:30:53'),(11975,'2005-08-17 17:58:39',3843,458,'2005-08-20 19:11:39',2,'2006-02-15 21:30:53'),(11976,'2005-08-17 17:59:19',498,373,'2005-08-23 14:51:19',2,'2006-02-15 21:30:53'),(11977,'2005-08-17 18:01:15',1528,536,'2005-08-23 23:03:15',1,'2006-02-15 21:30:53'),(11978,'2005-08-17 18:02:10',4380,499,'2005-08-18 20:40:10',2,'2006-02-15 21:30:53'),(11979,'2005-08-17 18:07:13',568,255,'2005-08-19 23:12:13',1,'2006-02-15 21:30:53'),(11980,'2005-08-17 18:10:18',4165,589,'2005-08-20 13:28:18',1,'2006-02-15 21:30:53'),(11981,'2005-08-17 18:10:40',3228,294,'2005-08-20 16:56:40',1,'2006-02-15 21:30:53'),(11982,'2005-08-17 18:13:07',118,186,'2005-08-18 19:06:07',1,'2006-02-15 21:30:53'),(11983,'2005-08-17 18:13:55',2580,304,'2005-08-23 18:27:55',2,'2006-02-15 21:30:53'),(11984,'2005-08-17 18:16:30',3577,96,'2005-08-24 21:09:30',2,'2006-02-15 21:30:53'),(11985,'2005-08-17 18:19:44',2208,198,'2005-08-18 19:14:44',2,'2006-02-15 21:30:53'),(11986,'2005-08-17 18:21:58',1610,352,'2005-08-18 13:05:58',1,'2006-02-15 21:30:53'),(11987,'2005-08-17 18:21:59',1478,494,'2005-08-25 19:20:59',1,'2006-02-15 21:30:53'),(11988,'2005-08-17 18:23:50',3429,62,'2005-08-18 22:30:50',2,'2006-02-15 21:30:53'),(11989,'2005-08-17 18:23:58',3686,439,'2005-08-20 20:31:58',2,'2006-02-15 21:30:53'),(11990,'2005-08-17 18:26:22',3012,17,'2005-08-19 14:34:22',2,'2006-02-15 21:30:53'),(11991,'2005-08-17 18:27:08',940,361,'2005-08-25 14:07:08',1,'2006-02-15 21:30:53'),(11992,'2005-08-17 18:27:22',4132,136,'2005-08-26 22:38:22',2,'2006-02-15 21:30:53'),(11993,'2005-08-17 18:27:49',295,303,'2005-08-21 00:04:49',1,'2006-02-15 21:30:53'),(11994,'2005-08-17 18:29:35',3428,319,'2005-08-25 23:39:35',1,'2006-02-15 21:30:53'),(11995,'2006-02-14 15:16:03',3953,69,NULL,1,'2006-02-15 21:30:53'),(11996,'2005-08-17 18:34:37',2720,510,'2005-08-20 22:25:37',2,'2006-02-15 21:30:53'),(11997,'2005-08-17 18:34:38',2193,411,'2005-08-26 00:12:38',2,'2006-02-15 21:30:53'),(11998,'2005-08-17 18:46:21',4258,299,'2005-08-18 20:29:21',1,'2006-02-15 21:30:53'),(11999,'2005-08-17 18:47:07',4333,125,'2005-08-20 23:26:07',2,'2006-02-15 21:30:53'),(12000,'2005-08-17 18:49:44',2256,149,'2005-08-24 16:34:44',2,'2006-02-15 21:30:53'),(12001,'2006-02-14 15:16:03',4158,52,NULL,2,'2006-02-15 21:30:53'),(12002,'2005-08-17 18:56:02',1386,75,'2005-08-20 17:36:02',1,'2006-02-15 21:30:53'),(12003,'2005-08-17 18:56:05',3868,70,'2005-08-18 23:52:05',1,'2006-02-15 21:30:53'),(12004,'2005-08-17 18:56:53',2690,499,'2005-08-26 14:56:53',1,'2006-02-15 21:30:53'),(12005,'2005-08-17 18:56:55',2062,403,'2005-08-25 20:23:55',2,'2006-02-15 21:30:53'),(12006,'2005-08-17 19:09:12',4072,272,'2005-08-24 13:50:12',1,'2006-02-15 21:30:53'),(12007,'2005-08-17 19:10:34',3007,268,'2005-08-24 14:09:34',1,'2006-02-15 21:30:53'),(12008,'2005-08-17 19:16:18',865,562,'2005-08-18 14:24:18',2,'2006-02-15 21:30:53'),(12009,'2006-02-14 15:16:03',2134,296,NULL,2,'2006-02-15 21:30:53'),(12010,'2005-08-17 19:17:54',1076,554,'2005-08-26 00:41:54',1,'2006-02-15 21:30:53'),(12011,'2005-08-17 19:19:44',495,313,'2005-08-23 00:56:44',2,'2006-02-15 21:30:53'),(12012,'2005-08-17 19:20:48',2698,69,'2005-08-22 16:50:48',1,'2006-02-15 21:30:53'),(12013,'2005-08-17 19:23:02',3530,586,'2005-08-23 00:31:02',2,'2006-02-15 21:30:53'),(12014,'2005-08-17 19:29:44',1778,554,'2005-08-23 20:40:44',1,'2006-02-15 21:30:53'),(12015,'2005-08-17 19:32:44',593,11,'2005-08-23 13:36:44',2,'2006-02-15 21:30:53'),(12016,'2005-08-17 19:33:24',2109,327,'2005-08-21 19:59:24',2,'2006-02-15 21:30:53'),(12017,'2005-08-17 19:33:49',344,573,'2005-08-22 01:16:49',2,'2006-02-15 21:30:53'),(12018,'2005-08-17 19:44:46',1921,319,'2005-08-26 20:24:46',1,'2006-02-15 21:30:53'),(12019,'2005-08-17 19:48:55',2566,90,'2005-08-21 18:20:55',1,'2006-02-15 21:30:53'),(12020,'2005-08-17 19:50:33',3258,72,'2005-08-25 17:54:33',1,'2006-02-15 21:30:53'),(12021,'2005-08-17 19:52:43',3977,27,'2005-08-23 21:49:43',1,'2006-02-15 21:30:53'),(12022,'2005-08-17 19:52:45',2067,461,'2005-08-18 18:26:45',2,'2006-02-15 21:30:53'),(12023,'2005-08-17 19:54:54',247,22,'2005-08-26 23:03:54',1,'2006-02-15 21:30:53'),(12024,'2005-08-17 19:57:34',2398,484,'2005-08-21 23:00:34',2,'2006-02-15 21:30:53'),(12025,'2005-08-17 19:59:06',4019,209,'2005-08-23 14:39:06',2,'2006-02-15 21:30:53'),(12026,'2005-08-17 20:00:10',1568,468,'2005-08-26 01:54:10',1,'2006-02-15 21:30:53'),(12027,'2005-08-17 20:01:12',45,285,'2005-08-26 21:08:12',2,'2006-02-15 21:30:53'),(12028,'2005-08-17 20:03:47',607,316,'2005-08-23 17:09:47',2,'2006-02-15 21:30:53'),(12029,'2005-08-17 20:07:01',3516,148,'2005-08-19 19:36:01',2,'2006-02-15 21:30:53'),(12030,'2005-08-17 20:10:48',449,434,'2005-08-19 00:32:48',1,'2006-02-15 21:30:53'),(12031,'2005-08-17 20:11:35',2793,10,'2005-08-24 23:48:35',2,'2006-02-15 21:30:53'),(12032,'2005-08-17 20:14:26',1106,141,'2005-08-26 16:01:26',1,'2006-02-15 21:30:53'),(12033,'2005-08-17 20:14:34',2731,321,'2005-08-26 00:22:34',2,'2006-02-15 21:30:53'),(12034,'2005-08-17 20:15:31',834,321,'2005-08-24 15:46:31',2,'2006-02-15 21:30:53'),(12035,'2005-08-17 20:18:06',2335,469,'2005-08-21 16:41:06',2,'2006-02-15 21:30:53'),(12036,'2005-08-17 20:19:06',3620,85,'2005-08-18 19:57:06',2,'2006-02-15 21:30:53'),(12037,'2005-08-17 20:21:35',766,356,'2005-08-22 17:16:35',2,'2006-02-15 21:30:53'),(12038,'2005-08-17 20:28:26',3794,148,'2005-08-20 23:09:26',2,'2006-02-15 21:30:53'),(12039,'2005-08-17 20:29:08',4404,563,'2005-08-23 21:20:08',2,'2006-02-15 21:30:53'),(12040,'2005-08-17 20:29:56',1288,558,'2005-08-26 22:17:56',1,'2006-02-15 21:30:53'),(12041,'2005-08-17 20:34:33',2389,295,'2005-08-19 00:47:33',1,'2006-02-15 21:30:53'),(12042,'2005-08-17 20:36:37',1772,570,'2005-08-21 15:03:37',1,'2006-02-15 21:30:53'),(12043,'2005-08-17 20:38:21',3706,592,'2005-08-22 16:52:21',2,'2006-02-15 21:30:53'),(12044,'2005-08-17 20:39:37',3377,388,'2005-08-19 18:34:37',1,'2006-02-15 21:30:53'),(12045,'2005-08-17 20:40:46',469,556,'2005-08-20 18:18:46',2,'2006-02-15 21:30:53'),(12046,'2005-08-17 20:47:46',3895,435,'2005-08-19 16:09:46',2,'2006-02-15 21:30:53'),(12047,'2005-08-17 20:48:32',3886,251,'2005-08-26 00:07:32',1,'2006-02-15 21:30:53'),(12048,'2005-08-17 20:49:24',3773,466,'2005-08-27 02:01:24',2,'2006-02-15 21:30:53'),(12049,'2005-08-17 20:53:27',2433,178,'2005-08-26 19:45:27',2,'2006-02-15 21:30:53'),(12050,'2005-08-17 20:55:25',2348,405,'2005-08-22 20:31:25',2,'2006-02-15 21:30:53'),(12051,'2005-08-17 20:56:15',4001,579,'2005-08-25 19:08:15',1,'2006-02-15 21:30:53'),(12052,'2005-08-17 20:57:02',99,536,'2005-08-25 19:04:02',1,'2006-02-15 21:30:53'),(12053,'2005-08-17 20:57:27',4448,280,'2005-08-20 19:51:27',1,'2006-02-15 21:30:53'),(12054,'2005-08-17 20:59:56',3780,53,'2005-08-23 19:57:56',1,'2006-02-15 21:30:53'),(12055,'2005-08-17 21:02:19',1481,35,'2005-08-18 15:24:19',1,'2006-02-15 21:30:53'),(12056,'2005-08-17 21:03:48',1091,460,'2005-08-21 22:42:48',2,'2006-02-15 21:30:53'),(12057,'2005-08-17 21:04:35',1878,263,'2005-08-25 00:17:35',1,'2006-02-15 21:30:53'),(12058,'2005-08-17 21:07:41',2438,540,'2005-08-26 16:07:41',1,'2006-02-15 21:30:53'),(12059,'2005-08-17 21:09:23',4111,393,'2005-08-25 23:09:23',1,'2006-02-15 21:30:53'),(12060,'2005-08-17 21:11:57',2373,127,'2005-08-21 01:42:57',1,'2006-02-15 21:30:53'),(12061,'2005-08-17 21:13:35',144,532,'2005-08-22 19:18:35',1,'2006-02-15 21:30:53'),(12062,'2005-08-17 21:24:47',1791,330,'2005-08-20 20:35:47',2,'2006-02-15 21:30:53'),(12063,'2005-08-17 21:24:48',1141,550,'2005-08-23 22:10:48',2,'2006-02-15 21:30:53'),(12064,'2006-02-14 15:16:03',298,284,NULL,1,'2006-02-15 21:30:53'),(12065,'2005-08-17 21:31:46',3644,77,'2005-08-26 02:26:46',2,'2006-02-15 21:30:53'),(12066,'2006-02-14 15:16:03',2474,267,NULL,2,'2006-02-15 21:30:53'),(12067,'2005-08-17 21:36:47',2013,514,'2005-08-22 01:10:47',2,'2006-02-15 21:30:53'),(12068,'2005-08-17 21:37:08',4327,388,'2005-08-26 00:10:08',1,'2006-02-15 21:30:53'),(12069,'2005-08-17 21:39:40',631,389,'2005-08-22 01:12:40',2,'2006-02-15 21:30:53'),(12070,'2005-08-17 21:46:47',1357,158,'2005-08-22 22:59:47',1,'2006-02-15 21:30:53'),(12071,'2005-08-17 21:49:14',1874,507,'2005-08-22 18:20:14',1,'2006-02-15 21:30:53'),(12072,'2005-08-17 21:50:25',209,61,'2005-08-25 22:36:25',2,'2006-02-15 21:30:53'),(12073,'2005-08-17 21:50:39',2939,173,'2005-08-21 02:59:39',1,'2006-02-15 21:30:53'),(12074,'2005-08-17 21:50:57',711,417,'2005-08-20 00:58:57',2,'2006-02-15 21:30:53'),(12075,'2005-08-17 21:54:55',3147,125,'2005-08-23 23:04:55',1,'2006-02-15 21:30:53'),(12076,'2005-08-17 21:58:19',4278,298,'2005-08-20 22:10:19',1,'2006-02-15 21:30:53'),(12077,'2005-08-17 21:59:14',3589,550,'2005-08-22 03:23:14',1,'2006-02-15 21:30:53'),(12078,'2005-08-17 22:00:22',684,137,'2005-08-24 02:54:22',2,'2006-02-15 21:30:53'),(12079,'2005-08-17 22:04:17',646,230,'2005-08-24 20:22:17',2,'2006-02-15 21:30:53'),(12080,'2005-08-17 22:08:04',1491,394,'2005-08-19 22:55:04',2,'2006-02-15 21:30:53'),(12081,'2005-08-17 22:10:46',620,597,'2005-08-22 22:37:46',1,'2006-02-15 21:30:53'),(12082,'2005-08-17 22:13:15',3435,521,'2005-08-24 18:30:15',1,'2006-02-15 21:30:53'),(12083,'2005-08-17 22:13:37',1985,474,'2005-08-19 19:01:37',2,'2006-02-15 21:30:53'),(12084,'2005-08-17 22:16:49',2706,60,'2005-08-24 17:42:49',2,'2006-02-15 21:30:53'),(12085,'2005-08-17 22:17:09',600,31,'2005-08-21 01:45:09',1,'2006-02-15 21:30:53'),(12086,'2005-08-17 22:20:01',3963,140,'2005-08-26 02:14:01',1,'2006-02-15 21:30:53'),(12087,'2005-08-17 22:20:12',324,144,'2005-08-20 02:11:12',2,'2006-02-15 21:30:53'),(12088,'2005-08-17 22:20:16',1754,360,'2005-08-25 23:30:16',2,'2006-02-15 21:30:53'),(12089,'2005-08-17 22:20:29',651,538,'2005-08-24 02:12:29',1,'2006-02-15 21:30:53'),(12090,'2005-08-17 22:21:43',3392,391,'2005-08-20 23:53:43',2,'2006-02-15 21:30:53'),(12091,'2005-08-17 22:22:50',2161,555,'2005-08-27 03:55:50',1,'2006-02-15 21:30:53'),(12092,'2005-08-17 22:28:15',3964,38,'2005-08-18 16:46:15',2,'2006-02-15 21:30:53'),(12093,'2005-08-17 22:28:40',216,141,'2005-08-22 02:05:40',1,'2006-02-15 21:30:53'),(12094,'2005-08-17 22:31:04',1050,130,'2005-08-23 22:45:04',1,'2006-02-15 21:30:53'),(12095,'2005-08-17 22:32:37',1089,46,'2005-08-20 04:00:37',1,'2006-02-15 21:30:53'),(12096,'2005-08-17 22:32:50',44,463,'2005-08-25 03:33:50',1,'2006-02-15 21:30:53'),(12097,'2005-08-17 22:35:24',4135,325,'2005-08-18 20:31:24',2,'2006-02-15 21:30:53'),(12098,'2005-08-17 22:38:31',534,545,'2005-08-20 01:56:31',1,'2006-02-15 21:30:53'),(12099,'2005-08-17 22:38:54',1743,195,'2005-08-18 21:29:54',2,'2006-02-15 21:30:53'),(12100,'2005-08-17 22:41:10',4365,391,'2005-08-24 21:31:10',2,'2006-02-15 21:30:53'),(12101,'2006-02-14 15:16:03',1556,479,NULL,1,'2006-02-15 21:30:53'),(12102,'2005-08-17 22:45:26',4268,392,'2005-08-24 01:47:26',2,'2006-02-15 21:30:53'),(12103,'2005-08-17 22:49:09',4363,153,'2005-08-24 21:53:09',1,'2006-02-15 21:30:53'),(12104,'2005-08-17 22:53:00',4551,16,'2005-08-23 19:49:00',1,'2006-02-15 21:30:53'),(12105,'2005-08-17 22:54:45',2848,390,'2005-08-21 00:33:45',2,'2006-02-15 21:30:53'),(12106,'2005-08-17 22:55:32',3234,465,'2005-08-19 23:55:32',2,'2006-02-15 21:30:53'),(12107,'2005-08-17 22:56:24',1060,141,'2005-08-24 19:36:24',1,'2006-02-15 21:30:53'),(12108,'2005-08-17 22:56:39',1675,207,'2005-08-26 19:37:39',1,'2006-02-15 21:30:53'),(12109,'2005-08-17 22:58:35',1423,509,'2005-08-25 19:44:35',2,'2006-02-15 21:30:53'),(12110,'2005-08-17 22:59:46',2984,511,'2005-08-23 17:51:46',1,'2006-02-15 21:30:53'),(12111,'2005-08-17 22:59:55',2905,317,'2005-08-22 19:33:55',2,'2006-02-15 21:30:53'),(12112,'2005-08-17 23:00:31',4290,576,'2005-08-25 02:05:31',1,'2006-02-15 21:30:53'),(12113,'2005-08-17 23:01:00',2707,393,'2005-08-25 03:57:00',2,'2006-02-15 21:30:53'),(12114,'2005-08-17 23:02:00',1405,65,'2005-08-26 18:02:00',1,'2006-02-15 21:30:53'),(12115,'2005-08-17 23:04:15',1228,457,'2005-08-20 22:25:15',2,'2006-02-15 21:30:53'),(12116,'2006-02-14 15:16:03',3082,560,NULL,2,'2006-02-15 21:30:53'),(12117,'2005-08-17 23:11:12',4140,303,'2005-08-22 23:56:12',1,'2006-02-15 21:30:53'),(12118,'2005-08-17 23:14:25',158,89,'2005-08-26 22:26:25',1,'2006-02-15 21:30:53'),(12119,'2005-08-17 23:16:44',4298,567,'2005-08-20 02:13:44',2,'2006-02-15 21:30:53'),(12120,'2005-08-17 23:16:46',2912,323,'2005-08-19 00:11:46',2,'2006-02-15 21:30:53'),(12121,'2005-08-17 23:20:40',3423,69,'2005-08-22 21:30:40',2,'2006-02-15 21:30:53'),(12122,'2005-08-17 23:20:45',4030,375,'2005-08-25 04:23:45',2,'2006-02-15 21:30:53'),(12123,'2005-08-17 23:22:18',361,497,'2005-08-19 23:36:18',2,'2006-02-15 21:30:53'),(12124,'2005-08-17 23:22:46',2036,22,'2005-08-21 01:40:46',1,'2006-02-15 21:30:53'),(12125,'2005-08-17 23:24:25',136,573,'2005-08-25 03:08:25',2,'2006-02-15 21:30:53'),(12126,'2005-08-17 23:25:21',2304,302,'2005-08-23 21:51:21',1,'2006-02-15 21:30:53'),(12127,'2006-02-14 15:16:03',4218,582,NULL,2,'2006-02-15 21:30:53'),(12128,'2005-08-17 23:31:09',2252,415,'2005-08-24 05:07:09',2,'2006-02-15 21:30:53'),(12129,'2005-08-17 23:31:25',891,146,'2005-08-26 19:10:25',2,'2006-02-15 21:30:53'),(12130,'2006-02-14 15:16:03',1358,516,NULL,2,'2006-02-15 21:30:53'),(12131,'2005-08-17 23:34:16',3380,21,'2005-08-26 01:18:16',1,'2006-02-15 21:30:53'),(12132,'2005-08-17 23:37:03',2600,403,'2005-08-22 04:53:03',2,'2006-02-15 21:30:53'),(12133,'2005-08-17 23:47:16',1958,132,'2005-08-19 03:46:16',2,'2006-02-15 21:30:53'),(12134,'2005-08-17 23:49:43',2682,288,'2005-08-21 21:00:43',1,'2006-02-15 21:30:53'),(12135,'2005-08-17 23:50:24',1019,381,'2005-08-23 18:01:24',2,'2006-02-15 21:30:53'),(12136,'2005-08-17 23:51:30',3944,527,'2005-08-23 01:35:30',1,'2006-02-15 21:30:53'),(12137,'2005-08-17 23:52:26',3632,109,'2005-08-27 00:19:26',1,'2006-02-15 21:30:53'),(12138,'2005-08-17 23:55:54',388,317,'2005-08-26 23:32:54',1,'2006-02-15 21:30:53'),(12139,'2005-08-17 23:57:13',1537,342,'2005-08-24 19:13:13',1,'2006-02-15 21:30:53'),(12140,'2005-08-17 23:57:55',322,408,'2005-08-21 20:09:55',2,'2006-02-15 21:30:53'),(12141,'2006-02-14 15:16:03',731,101,NULL,1,'2006-02-15 21:30:53'),(12142,'2005-08-18 00:04:12',3748,373,'2005-08-24 01:24:12',2,'2006-02-15 21:30:53'),(12143,'2005-08-18 00:06:26',2876,117,'2005-08-24 02:45:26',2,'2006-02-15 21:30:53'),(12144,'2006-02-14 15:16:03',512,587,NULL,1,'2006-02-15 21:30:53'),(12145,'2005-08-18 00:10:04',3482,5,'2005-08-26 00:51:04',1,'2006-02-15 21:30:53'),(12146,'2005-08-18 00:10:04',3833,434,'2005-08-25 19:18:04',2,'2006-02-15 21:30:53'),(12147,'2005-08-18 00:10:20',705,41,'2005-08-23 20:36:20',2,'2006-02-15 21:30:53'),(12148,'2005-08-18 00:13:15',2409,254,'2005-08-20 01:27:15',2,'2006-02-15 21:30:53'),(12149,'2005-08-18 00:13:51',3696,277,'2005-08-26 19:47:51',1,'2006-02-15 21:30:53'),(12150,'2005-08-18 00:13:55',3781,555,'2005-08-20 23:35:55',2,'2006-02-15 21:30:53'),(12151,'2005-08-18 00:14:03',1976,4,'2005-08-18 23:52:03',2,'2006-02-15 21:30:53'),(12152,'2005-08-18 00:21:35',2797,367,'2005-08-22 02:51:35',1,'2006-02-15 21:30:53'),(12153,'2005-08-18 00:22:30',3929,387,'2005-08-23 04:13:30',2,'2006-02-15 21:30:53'),(12154,'2005-08-18 00:23:56',2491,163,'2005-08-21 00:31:56',2,'2006-02-15 21:30:53'),(12155,'2005-08-18 00:24:30',2065,315,'2005-08-18 19:12:30',2,'2006-02-15 21:30:53'),(12156,'2005-08-18 00:27:33',3270,212,'2005-08-26 01:43:33',1,'2006-02-15 21:30:53'),(12157,'2005-08-18 00:33:45',2311,569,'2005-08-22 19:33:45',1,'2006-02-15 21:30:53'),(12158,'2005-08-18 00:34:20',4121,289,'2005-08-22 20:10:20',2,'2006-02-15 21:30:53'),(12159,'2005-08-18 00:36:09',2243,106,'2005-08-27 06:31:09',1,'2006-02-15 21:30:53'),(12160,'2005-08-18 00:37:59',1328,481,'2005-08-19 20:51:59',1,'2006-02-15 21:30:53'),(12161,'2005-08-18 00:41:46',2420,444,'2005-08-26 22:59:46',2,'2006-02-15 21:30:53'),(12162,'2005-08-18 00:44:30',2697,284,'2005-08-25 03:34:30',1,'2006-02-15 21:30:53'),(12163,'2005-08-18 00:46:01',1349,455,'2005-08-22 06:16:01',1,'2006-02-15 21:30:53'),(12164,'2005-08-18 00:46:38',3849,587,'2005-08-19 04:38:38',2,'2006-02-15 21:30:53'),(12165,'2005-08-18 00:53:37',4215,24,'2005-08-27 00:09:37',2,'2006-02-15 21:30:53'),(12166,'2005-08-18 00:57:06',3627,184,'2005-08-26 03:13:06',2,'2006-02-15 21:30:53'),(12167,'2005-08-18 01:00:02',3085,338,'2005-08-21 00:04:02',2,'2006-02-15 21:30:53'),(12168,'2005-08-18 01:03:52',2859,535,'2005-08-18 20:19:52',1,'2006-02-15 21:30:53'),(12169,'2005-08-18 01:05:54',2281,323,'2005-08-24 02:16:54',2,'2006-02-15 21:30:53'),(12170,'2005-08-18 01:06:10',1125,289,'2005-08-25 02:40:10',2,'2006-02-15 21:30:53'),(12171,'2005-08-18 01:06:13',454,457,'2005-08-22 19:39:13',2,'2006-02-15 21:30:53'),(12172,'2005-08-18 01:07:00',1162,226,'2005-08-22 21:01:00',2,'2006-02-15 21:30:53'),(12173,'2005-08-18 01:08:34',2830,41,'2005-08-24 20:52:34',1,'2006-02-15 21:30:53'),(12174,'2005-08-18 01:08:53',1458,101,'2005-08-20 03:28:53',1,'2006-02-15 21:30:53'),(12175,'2005-08-18 01:10:17',4558,328,'2005-08-19 05:25:17',2,'2006-02-15 21:30:53'),(12176,'2005-08-18 01:10:33',3873,255,'2005-08-24 02:45:33',2,'2006-02-15 21:30:53'),(12177,'2005-08-18 01:15:47',522,470,'2005-08-24 23:23:47',2,'2006-02-15 21:30:53'),(12178,'2005-08-18 01:17:32',1152,276,'2005-08-25 19:32:32',1,'2006-02-15 21:30:53'),(12179,'2005-08-18 01:21:21',1499,222,'2005-08-19 00:59:21',1,'2006-02-15 21:30:53'),(12180,'2005-08-18 01:28:15',2276,20,'2005-08-20 20:52:15',2,'2006-02-15 21:30:53'),(12181,'2005-08-18 01:28:18',532,81,'2005-08-23 21:17:18',2,'2006-02-15 21:30:53'),(12182,'2005-08-18 01:30:19',296,555,'2005-08-21 05:52:19',1,'2006-02-15 21:30:53'),(12183,'2005-08-18 01:34:13',3153,344,'2005-08-24 04:38:13',1,'2006-02-15 21:30:53'),(12184,'2005-08-18 01:36:00',1723,51,'2005-08-21 01:59:00',1,'2006-02-15 21:30:53'),(12185,'2005-08-18 01:40:14',1558,588,'2005-08-25 05:04:14',1,'2006-02-15 21:30:53'),(12186,'2005-08-18 01:43:36',1342,312,'2005-08-23 07:13:36',1,'2006-02-15 21:30:53'),(12187,'2005-08-18 01:45:50',3360,38,'2005-08-22 20:12:50',1,'2006-02-15 21:30:53'),(12188,'2005-08-18 01:51:43',2989,456,'2005-08-18 22:23:43',1,'2006-02-15 21:30:53'),(12189,'2005-08-18 01:51:44',1764,363,'2005-08-26 01:01:44',1,'2006-02-15 21:30:53'),(12190,'2005-08-18 01:54:44',2464,28,'2005-08-27 04:32:44',1,'2006-02-15 21:30:53'),(12191,'2005-08-18 01:57:11',2667,316,'2005-08-22 22:53:11',2,'2006-02-15 21:30:53'),(12192,'2005-08-18 02:01:40',3450,270,'2005-08-21 05:45:40',1,'2006-02-15 21:30:53'),(12193,'2005-08-18 02:03:59',1086,290,'2005-08-25 05:32:59',2,'2006-02-15 21:30:53'),(12194,'2005-08-18 02:04:47',292,558,'2005-08-25 20:45:47',2,'2006-02-15 21:30:53'),(12195,'2005-08-18 02:07:49',943,347,'2005-08-19 23:54:49',2,'2006-02-15 21:30:53'),(12196,'2005-08-18 02:08:48',4302,111,'2005-08-26 00:39:48',1,'2006-02-15 21:30:53'),(12197,'2005-08-18 02:08:58',3687,564,'2005-08-26 21:54:58',2,'2006-02-15 21:30:53'),(12198,'2005-08-18 02:09:20',1628,86,'2005-08-21 21:28:20',2,'2006-02-15 21:30:53'),(12199,'2005-08-18 02:09:23',424,96,'2005-08-22 20:33:23',1,'2006-02-15 21:30:53'),(12200,'2005-08-18 02:12:33',840,52,'2005-08-18 20:47:33',2,'2006-02-15 21:30:53'),(12201,'2005-08-18 02:14:06',3676,540,'2005-08-23 04:44:06',1,'2006-02-15 21:30:53'),(12202,'2005-08-18 02:14:08',672,563,'2005-08-24 04:35:08',1,'2006-02-15 21:30:53'),(12203,'2005-08-18 02:18:52',4228,591,'2005-08-22 21:01:52',1,'2006-02-15 21:30:53'),(12204,'2005-08-18 02:20:35',304,575,'2005-08-26 01:27:35',2,'2006-02-15 21:30:53'),(12205,'2005-08-18 02:21:08',774,437,'2005-08-27 00:08:08',2,'2006-02-15 21:30:53'),(12206,'2005-08-18 02:22:20',3275,254,'2005-08-23 05:36:20',1,'2006-02-15 21:30:53'),(12207,'2005-08-18 02:24:07',3745,265,'2005-08-22 07:53:07',1,'2006-02-15 21:30:53'),(12208,'2005-08-18 02:25:25',2039,551,'2005-08-20 04:53:25',2,'2006-02-15 21:30:53'),(12209,'2005-08-18 02:27:20',279,243,'2005-08-21 00:41:20',2,'2006-02-15 21:30:53'),(12210,'2005-08-18 02:27:29',3035,217,'2005-08-20 23:32:29',2,'2006-02-15 21:30:53'),(12211,'2005-08-18 02:31:18',1484,19,'2005-08-26 02:36:18',1,'2006-02-15 21:30:53'),(12212,'2005-08-18 02:33:29',3898,449,'2005-08-25 07:10:29',2,'2006-02-15 21:30:53'),(12213,'2005-08-18 02:33:55',4058,157,'2005-08-24 03:14:55',1,'2006-02-15 21:30:53'),(12214,'2005-08-18 02:34:22',2094,231,'2005-08-21 07:48:22',2,'2006-02-15 21:30:53'),(12215,'2005-08-18 02:35:39',4095,47,'2005-08-24 00:36:39',1,'2006-02-15 21:30:53'),(12216,'2005-08-18 02:37:07',4139,131,'2005-08-19 02:09:07',2,'2006-02-15 21:30:53'),(12217,'2005-08-18 02:44:44',2556,105,'2005-08-24 03:27:44',1,'2006-02-15 21:30:53'),(12218,'2005-08-18 02:48:14',1933,70,'2005-08-21 01:52:14',2,'2006-02-15 21:30:53'),(12219,'2005-08-18 02:49:54',2249,271,'2005-08-23 07:52:54',1,'2006-02-15 21:30:53'),(12220,'2005-08-18 02:50:02',982,530,'2005-08-22 00:20:02',1,'2006-02-15 21:30:53'),(12221,'2005-08-18 02:50:51',2488,98,'2005-08-27 06:22:51',2,'2006-02-15 21:30:53'),(12222,'2006-02-14 15:16:03',3949,22,NULL,1,'2006-02-15 21:30:53'),(12223,'2005-08-18 02:58:40',4142,397,'2005-08-23 23:30:40',2,'2006-02-15 21:30:53'),(12224,'2005-08-18 02:59:09',1781,372,'2005-08-19 06:22:09',1,'2006-02-15 21:30:53'),(12225,'2005-08-18 03:00:11',1876,306,'2005-08-24 05:01:11',1,'2006-02-15 21:30:53'),(12226,'2005-08-18 03:00:48',682,234,'2005-08-25 00:43:48',2,'2006-02-15 21:30:53'),(12227,'2005-08-18 03:04:28',3671,591,'2005-08-21 08:52:28',2,'2006-02-15 21:30:53'),(12228,'2005-08-18 03:08:10',2772,9,'2005-08-20 02:48:10',1,'2006-02-15 21:30:53'),(12229,'2005-08-18 03:08:23',1123,382,'2005-08-22 03:42:23',1,'2006-02-15 21:30:53'),(12230,'2005-08-18 03:11:04',1910,231,'2005-08-27 04:06:04',1,'2006-02-15 21:30:53'),(12231,'2005-08-18 03:11:44',1115,231,'2005-08-24 03:26:44',1,'2006-02-15 21:30:53'),(12232,'2005-08-18 03:14:14',2399,87,'2005-08-19 05:44:14',2,'2006-02-15 21:30:53'),(12233,'2005-08-18 03:16:54',174,535,'2005-08-22 04:48:54',2,'2006-02-15 21:30:53'),(12234,'2005-08-18 03:17:33',3823,352,'2005-08-25 04:44:33',2,'2006-02-15 21:30:53'),(12235,'2005-08-18 03:17:50',957,595,'2005-08-20 02:49:50',1,'2006-02-15 21:30:53'),(12236,'2005-08-18 03:19:29',1190,474,'2005-08-23 07:39:29',2,'2006-02-15 21:30:53'),(12237,'2005-08-18 03:24:38',4422,381,'2005-08-25 09:05:38',1,'2006-02-15 21:30:53'),(12238,'2005-08-18 03:25:08',4043,46,'2005-08-20 02:41:08',2,'2006-02-15 21:30:53'),(12239,'2005-08-18 03:26:42',1948,75,'2005-08-24 23:48:42',1,'2006-02-15 21:30:53'),(12240,'2005-08-18 03:27:11',1168,30,'2005-08-26 04:34:11',2,'2006-02-15 21:30:53'),(12241,'2005-08-18 03:33:17',1261,248,'2005-08-21 03:13:17',2,'2006-02-15 21:30:53'),(12242,'2005-08-18 03:37:31',2095,121,'2005-08-25 06:50:31',1,'2006-02-15 21:30:53'),(12243,'2005-08-18 03:38:54',1829,354,'2005-08-27 06:56:54',2,'2006-02-15 21:30:53'),(12244,'2005-08-18 03:39:11',4441,362,'2005-08-21 02:57:11',2,'2006-02-15 21:30:53'),(12245,'2005-08-18 03:46:40',2960,576,'2005-08-24 22:27:40',2,'2006-02-15 21:30:53'),(12246,'2005-08-18 03:48:41',3199,258,'2005-08-25 05:12:41',1,'2006-02-15 21:30:53'),(12247,'2005-08-18 03:51:51',2264,254,'2005-08-24 05:36:51',2,'2006-02-15 21:30:53'),(12248,'2005-08-18 03:53:18',2120,562,'2005-08-22 04:53:18',1,'2006-02-15 21:30:53'),(12249,'2005-08-18 03:53:34',3586,135,'2005-08-21 01:14:34',1,'2006-02-15 21:30:53'),(12250,'2005-08-18 03:57:29',921,1,'2005-08-22 23:05:29',1,'2006-02-15 21:30:53'),(12251,'2005-08-18 03:59:02',3044,276,'2005-08-19 02:38:02',1,'2006-02-15 21:30:53'),(12252,'2005-08-18 03:59:51',127,350,'2005-08-25 08:54:51',2,'2006-02-15 21:30:53'),(12253,'2005-08-18 04:00:50',566,446,'2005-08-19 04:43:50',1,'2006-02-15 21:30:53'),(12254,'2005-08-18 04:05:29',2858,6,'2005-08-23 04:17:29',1,'2006-02-15 21:30:53'),(12255,'2005-08-18 04:07:20',2100,266,'2005-08-21 22:19:20',1,'2006-02-15 21:30:53'),(12256,'2005-08-18 04:09:39',2975,572,'2005-08-22 01:53:39',2,'2006-02-15 21:30:53'),(12257,'2005-08-18 04:11:03',269,87,'2005-08-25 01:20:03',2,'2006-02-15 21:30:53'),(12258,'2005-08-18 04:11:13',2861,83,'2005-08-21 23:40:13',2,'2006-02-15 21:30:53'),(12259,'2005-08-18 04:14:35',2904,429,'2005-08-18 22:30:35',2,'2006-02-15 21:30:53'),(12260,'2005-08-18 04:15:43',1352,150,'2005-08-26 23:31:43',1,'2006-02-15 21:30:53'),(12261,'2005-08-18 04:16:06',4076,485,'2005-08-27 08:04:06',1,'2006-02-15 21:30:53'),(12262,'2005-08-18 04:16:15',591,125,'2005-08-20 09:16:15',1,'2006-02-15 21:30:53'),(12263,'2005-08-18 04:16:18',4053,131,'2005-08-21 07:22:18',1,'2006-02-15 21:30:53'),(12264,'2005-08-18 04:17:33',3073,87,'2005-08-26 08:07:33',1,'2006-02-15 21:30:53'),(12265,'2005-08-18 04:22:01',537,247,'2005-08-20 03:22:01',1,'2006-02-15 21:30:53'),(12266,'2005-08-18 04:22:31',2192,467,'2005-08-19 04:25:31',2,'2006-02-15 21:30:53'),(12267,'2005-08-18 04:24:30',652,388,'2005-08-26 03:01:30',2,'2006-02-15 21:30:53'),(12268,'2005-08-18 04:26:54',93,39,'2005-08-23 06:40:54',2,'2006-02-15 21:30:53'),(12269,'2005-08-18 04:27:54',724,573,'2005-08-25 07:03:54',1,'2006-02-15 21:30:53'),(12270,'2005-08-18 04:32:05',2456,190,'2005-08-21 01:37:05',2,'2006-02-15 21:30:53'),(12271,'2005-08-18 04:33:11',3866,471,'2005-08-20 23:10:11',1,'2006-02-15 21:30:53'),(12272,'2005-08-18 04:39:10',1964,15,'2005-08-24 09:41:10',1,'2006-02-15 21:30:53'),(12273,'2005-08-18 04:40:50',3539,431,'2005-08-25 01:44:50',2,'2006-02-15 21:30:53'),(12274,'2005-08-18 04:41:47',265,47,'2005-08-27 07:00:47',1,'2006-02-15 21:30:53'),(12275,'2005-08-18 04:42:02',1474,507,'2005-08-25 00:50:02',1,'2006-02-15 21:30:53'),(12276,'2005-08-18 04:43:22',4491,397,'2005-08-22 01:49:22',2,'2006-02-15 21:30:53'),(12277,'2006-02-14 15:16:03',407,33,NULL,2,'2006-02-15 21:30:53'),(12278,'2005-08-18 04:46:45',3205,294,'2005-08-24 08:59:45',2,'2006-02-15 21:30:53'),(12279,'2005-08-18 04:47:30',4159,421,'2005-08-19 09:47:30',2,'2006-02-15 21:30:53'),(12280,'2005-08-18 04:49:27',4032,46,'2005-08-21 03:39:27',2,'2006-02-15 21:30:53'),(12281,'2005-08-18 04:50:32',4576,417,'2005-08-21 00:14:32',2,'2006-02-15 21:30:53'),(12282,'2005-08-18 04:54:20',3623,173,'2005-08-23 05:28:20',2,'2006-02-15 21:30:53'),(12283,'2005-08-18 04:54:25',574,240,'2005-08-23 04:02:25',1,'2006-02-15 21:30:53'),(12284,'2005-08-18 04:55:49',3162,147,'2005-08-22 08:45:49',2,'2006-02-15 21:30:53'),(12285,'2005-08-18 04:56:43',3531,215,'2005-08-19 23:32:43',2,'2006-02-15 21:30:53'),(12286,'2005-08-18 04:57:59',3729,34,'2005-08-18 23:20:59',2,'2006-02-15 21:30:53'),(12287,'2005-08-18 04:58:06',2238,136,'2005-08-24 00:06:06',1,'2006-02-15 21:30:53'),(12288,'2005-08-18 05:01:20',4401,523,'2005-08-25 09:51:20',2,'2006-02-15 21:30:53'),(12289,'2005-08-18 05:05:28',443,575,'2005-08-26 09:02:28',1,'2006-02-15 21:30:53'),(12290,'2005-08-18 05:08:03',4100,283,'2005-08-23 08:10:03',2,'2006-02-15 21:30:53'),(12291,'2005-08-18 05:08:37',4270,73,'2005-08-23 09:01:37',1,'2006-02-15 21:30:53'),(12292,'2005-08-18 05:08:54',1417,58,'2005-08-27 02:51:54',1,'2006-02-15 21:30:53'),(12293,'2005-08-18 05:13:36',614,514,'2005-08-25 04:00:36',2,'2006-02-15 21:30:53'),(12294,'2005-08-18 05:14:44',2479,4,'2005-08-27 01:32:44',2,'2006-02-15 21:30:53'),(12295,'2005-08-18 05:15:46',1651,532,'2005-08-26 02:23:46',2,'2006-02-15 21:30:53'),(12296,'2005-08-18 05:16:28',2091,258,'2005-08-22 10:32:28',1,'2006-02-15 21:30:53'),(12297,'2005-08-18 05:19:57',903,436,'2005-08-21 00:53:57',1,'2006-02-15 21:30:53'),(12298,'2005-08-18 05:30:31',904,46,'2005-08-27 07:33:31',1,'2006-02-15 21:30:53'),(12299,'2005-08-18 05:32:32',892,176,'2005-08-22 08:14:32',2,'2006-02-15 21:30:53'),(12300,'2005-08-18 05:36:14',3213,540,'2005-08-25 00:20:14',2,'2006-02-15 21:30:53'),(12301,'2005-08-18 05:36:20',2293,317,'2005-08-23 03:15:20',1,'2006-02-15 21:30:53'),(12302,'2005-08-18 05:41:39',765,514,'2005-08-22 06:02:39',1,'2006-02-15 21:30:53'),(12303,'2005-08-18 05:43:22',1604,245,'2005-08-27 08:54:22',2,'2006-02-15 21:30:53'),(12304,'2005-08-18 05:44:29',1381,228,'2005-08-24 04:31:29',1,'2006-02-15 21:30:53'),(12305,'2005-08-18 05:46:29',4463,534,'2005-08-22 11:14:29',2,'2006-02-15 21:30:53'),(12306,'2005-08-18 05:47:55',3853,541,'2005-08-21 01:56:55',1,'2006-02-15 21:30:53'),(12307,'2005-08-18 05:48:23',2679,187,'2005-08-26 02:32:23',1,'2006-02-15 21:30:53'),(12308,'2005-08-18 05:48:53',2877,569,'2005-08-22 09:03:53',1,'2006-02-15 21:30:53'),(12309,'2005-08-18 05:58:40',762,9,'2005-08-20 02:20:40',2,'2006-02-15 21:30:53'),(12310,'2005-08-18 06:02:34',3814,385,'2005-08-24 01:08:34',2,'2006-02-15 21:30:53'),(12311,'2005-08-18 06:07:00',1650,211,'2005-08-21 07:54:00',2,'2006-02-15 21:30:53'),(12312,'2005-08-18 06:07:26',80,185,'2005-08-21 02:07:26',2,'2006-02-15 21:30:53'),(12313,'2005-08-18 06:07:31',2053,180,'2005-08-27 00:20:31',1,'2006-02-15 21:30:53'),(12314,'2005-08-18 06:10:02',2204,455,'2005-08-25 02:48:02',1,'2006-02-15 21:30:53'),(12315,'2005-08-18 06:15:06',2012,579,'2005-08-24 07:45:06',2,'2006-02-15 21:30:53'),(12316,'2005-08-18 06:16:09',4325,94,'2005-08-27 05:54:09',2,'2006-02-15 21:30:53'),(12317,'2005-08-18 06:17:06',90,510,'2005-08-22 08:56:06',1,'2006-02-15 21:30:53'),(12318,'2005-08-18 06:21:56',3694,332,'2005-08-27 06:07:56',1,'2006-02-15 21:30:53'),(12319,'2005-08-18 06:26:45',999,368,'2005-08-23 01:35:45',1,'2006-02-15 21:30:53'),(12320,'2005-08-18 06:26:51',3248,267,'2005-08-20 04:00:51',1,'2006-02-15 21:30:53'),(12321,'2005-08-18 06:27:05',516,274,'2005-08-24 02:26:05',1,'2006-02-15 21:30:53'),(12322,'2005-08-18 06:35:28',4235,365,'2005-08-23 07:34:28',1,'2006-02-15 21:30:53'),(12323,'2005-08-18 06:36:22',4107,336,'2005-08-26 11:36:22',1,'2006-02-15 21:30:53'),(12324,'2005-08-18 06:38:20',2436,221,'2005-08-20 02:28:20',2,'2006-02-15 21:30:53'),(12325,'2005-08-18 06:41:30',1844,404,'2005-08-26 02:49:30',1,'2006-02-15 21:30:53'),(12326,'2005-08-18 06:41:59',1865,114,'2005-08-19 10:16:59',2,'2006-02-15 21:30:53'),(12327,'2005-08-18 06:43:22',2425,261,'2005-08-25 10:50:22',2,'2006-02-15 21:30:53'),(12328,'2005-08-18 06:43:56',1355,77,'2005-08-23 10:19:56',2,'2006-02-15 21:30:53'),(12329,'2005-08-18 06:44:30',3127,397,'2005-08-25 04:05:30',1,'2006-02-15 21:30:53'),(12330,'2005-08-18 06:46:33',889,587,'2005-08-26 11:35:33',2,'2006-02-15 21:30:53'),(12331,'2005-08-18 06:47:19',4565,483,'2005-08-25 05:51:19',2,'2006-02-15 21:30:53'),(12332,'2005-08-18 06:51:05',627,235,'2005-08-20 04:28:05',2,'2006-02-15 21:30:53'),(12333,'2005-08-18 06:51:39',4370,18,'2005-08-21 01:44:39',2,'2006-02-15 21:30:53'),(12334,'2005-08-18 06:52:36',2629,160,'2005-08-25 12:06:36',1,'2006-02-15 21:30:53'),(12335,'2005-08-18 06:59:15',2776,150,'2005-08-20 06:47:15',1,'2006-02-15 21:30:53'),(12336,'2005-08-18 06:59:41',2484,75,'2005-08-23 01:36:41',1,'2006-02-15 21:30:53'),(12337,'2005-08-18 07:02:24',4221,117,'2005-08-20 10:11:24',1,'2006-02-15 21:30:53'),(12338,'2005-08-18 07:04:24',274,408,'2005-08-19 08:36:24',2,'2006-02-15 21:30:53'),(12339,'2005-08-18 07:05:06',1600,370,'2005-08-19 02:27:06',2,'2006-02-15 21:30:53'),(12340,'2005-08-18 07:07:01',3561,239,'2005-08-20 05:06:01',1,'2006-02-15 21:30:53'),(12341,'2005-08-18 07:09:27',130,154,'2005-08-21 03:44:27',1,'2006-02-15 21:30:53'),(12342,'2005-08-18 07:12:46',1408,63,'2005-08-21 07:44:46',1,'2006-02-15 21:30:53'),(12343,'2005-08-18 07:15:13',448,507,'2005-08-27 11:07:13',1,'2006-02-15 21:30:53'),(12344,'2005-08-18 07:15:19',3675,269,'2005-08-24 04:58:19',2,'2006-02-15 21:30:53'),(12345,'2005-08-18 07:16:58',2359,44,'2005-08-25 05:50:58',1,'2006-02-15 21:30:53'),(12346,'2005-08-18 07:17:55',1200,265,'2005-08-21 11:35:55',2,'2006-02-15 21:30:53'),(12347,'2005-08-18 07:18:10',1788,454,'2005-08-19 05:49:10',1,'2006-02-15 21:30:53'),(12348,'2005-08-18 07:21:47',434,186,'2005-08-25 04:41:47',2,'2006-02-15 21:30:53'),(12349,'2005-08-18 07:23:42',4191,545,'2005-08-19 04:25:42',1,'2006-02-15 21:30:53'),(12350,'2005-08-18 07:29:46',1333,172,'2005-08-21 12:50:46',1,'2006-02-15 21:30:53'),(12351,'2005-08-18 07:32:12',2299,95,'2005-08-24 04:29:12',2,'2006-02-15 21:30:53'),(12352,'2006-02-14 15:16:03',643,155,NULL,1,'2006-02-15 21:30:53'),(12353,'2005-08-18 07:33:08',1594,141,'2005-08-21 03:42:08',2,'2006-02-15 21:30:53'),(12354,'2005-08-18 07:34:07',2913,499,'2005-08-26 05:56:07',1,'2006-02-15 21:30:53'),(12355,'2005-08-18 07:36:23',4112,452,'2005-08-20 08:59:23',1,'2006-02-15 21:30:53'),(12356,'2005-08-18 07:37:05',493,529,'2005-08-24 10:49:05',1,'2006-02-15 21:30:53'),(12357,'2005-08-18 07:40:52',166,19,'2005-08-22 02:51:52',1,'2006-02-15 21:30:53'),(12358,'2005-08-18 07:41:43',504,16,'2005-08-20 03:46:43',1,'2006-02-15 21:30:53'),(12359,'2005-08-18 07:44:05',4172,28,'2005-08-19 02:26:05',1,'2006-02-15 21:30:53'),(12360,'2005-08-18 07:46:35',929,123,'2005-08-26 12:01:35',1,'2006-02-15 21:30:53'),(12361,'2005-08-18 07:47:31',1418,250,'2005-08-22 12:08:31',2,'2006-02-15 21:30:53'),(12362,'2005-08-18 07:48:05',3131,367,'2005-08-20 05:16:05',2,'2006-02-15 21:30:53'),(12363,'2005-08-18 07:52:49',3447,181,'2005-08-26 03:20:49',2,'2006-02-15 21:30:53'),(12364,'2005-08-18 07:55:09',3398,84,'2005-08-19 05:29:09',2,'2006-02-15 21:30:53'),(12365,'2005-08-18 07:55:09',4350,303,'2005-08-24 05:42:09',1,'2006-02-15 21:30:53'),(12366,'2005-08-18 07:55:14',3799,115,'2005-08-22 06:12:14',1,'2006-02-15 21:30:53'),(12367,'2005-08-18 07:57:14',1822,7,'2005-08-27 07:07:14',2,'2006-02-15 21:30:53'),(12368,'2005-08-18 07:57:38',3777,392,'2005-08-25 05:49:38',2,'2006-02-15 21:30:53'),(12369,'2005-08-18 07:57:43',484,337,'2005-08-26 09:36:43',1,'2006-02-15 21:30:53'),(12370,'2005-08-18 07:57:47',3343,503,'2005-08-22 11:32:47',1,'2006-02-15 21:30:53'),(12371,'2005-08-18 08:02:46',622,451,'2005-08-19 02:50:46',2,'2006-02-15 21:30:53'),(12372,'2005-08-18 08:04:35',2982,131,'2005-08-27 08:13:35',2,'2006-02-15 21:30:53'),(12373,'2005-08-18 08:07:25',777,367,'2005-08-27 03:41:25',1,'2006-02-15 21:30:53'),(12374,'2005-08-18 08:07:45',939,74,'2005-08-26 10:42:45',2,'2006-02-15 21:30:53'),(12375,'2005-08-18 08:20:08',3508,365,'2005-08-21 08:50:08',2,'2006-02-15 21:30:53'),(12376,'2005-08-18 08:20:29',852,116,'2005-08-20 13:20:29',1,'2006-02-15 21:30:53'),(12377,'2005-08-18 08:26:05',4564,31,'2005-08-23 02:51:05',2,'2006-02-15 21:30:53'),(12378,'2005-08-18 08:26:13',4418,266,'2005-08-19 07:21:13',1,'2006-02-15 21:30:53'),(12379,'2005-08-18 08:26:48',2879,99,'2005-08-19 10:08:48',2,'2006-02-15 21:30:53'),(12380,'2005-08-18 08:27:28',55,215,'2005-08-25 02:58:28',2,'2006-02-15 21:30:53'),(12381,'2005-08-18 08:31:43',3651,190,'2005-08-23 12:24:43',2,'2006-02-15 21:30:53'); + +INSERT INTO rental VALUES (12382,'2005-08-18 08:32:33',3049,566,'2005-08-26 03:45:33',2,'2006-02-15 21:30:53'),(12383,'2005-08-18 08:36:03',1641,295,'2005-08-23 03:30:03',2,'2006-02-15 21:30:53'),(12384,'2005-08-18 08:36:58',2557,193,'2005-08-23 05:08:58',1,'2006-02-15 21:30:53'),(12385,'2005-08-18 08:39:33',3143,146,'2005-08-21 14:22:33',1,'2006-02-15 21:30:53'),(12386,'2005-08-18 08:45:57',3303,199,'2005-08-24 04:50:57',2,'2006-02-15 21:30:53'),(12387,'2005-08-18 08:46:24',3604,530,'2005-08-21 02:56:24',2,'2006-02-15 21:30:53'),(12388,'2005-08-18 08:48:09',4016,555,'2005-08-26 09:05:09',2,'2006-02-15 21:30:53'),(12389,'2005-08-18 08:48:36',1891,394,'2005-08-22 08:59:36',2,'2006-02-15 21:30:53'),(12390,'2005-08-18 08:51:42',3603,377,'2005-08-23 13:06:42',1,'2006-02-15 21:30:53'),(12391,'2005-08-18 08:52:53',1507,307,'2005-08-22 12:15:53',2,'2006-02-15 21:30:53'),(12392,'2005-08-18 08:57:58',2695,113,'2005-08-25 05:20:58',2,'2006-02-15 21:30:53'),(12393,'2005-08-18 09:02:41',2435,396,'2005-08-26 12:47:41',1,'2006-02-15 21:30:53'),(12394,'2005-08-18 09:05:15',3605,330,'2005-08-23 11:10:15',1,'2006-02-15 21:30:53'),(12395,'2005-08-18 09:06:30',2020,541,'2005-08-21 12:09:30',2,'2006-02-15 21:30:53'),(12396,'2005-08-18 09:11:23',3624,40,'2005-08-26 05:35:23',2,'2006-02-15 21:30:53'),(12397,'2005-08-18 09:12:52',1872,371,'2005-08-27 10:44:52',2,'2006-02-15 21:30:53'),(12398,'2005-08-18 09:13:24',4247,321,'2005-08-27 14:58:24',1,'2006-02-15 21:30:53'),(12399,'2005-08-18 09:13:42',3950,347,'2005-08-27 11:44:42',1,'2006-02-15 21:30:53'),(12400,'2005-08-18 09:19:12',1767,10,'2005-08-26 06:52:12',1,'2006-02-15 21:30:53'),(12401,'2005-08-18 09:20:51',4314,479,'2005-08-21 05:50:51',2,'2006-02-15 21:30:53'),(12402,'2005-08-18 09:27:34',385,123,'2005-08-25 13:10:34',2,'2006-02-15 21:30:53'),(12403,'2005-08-18 09:31:05',2124,440,'2005-08-23 09:54:05',2,'2006-02-15 21:30:53'),(12404,'2005-08-18 09:36:34',1097,342,'2005-08-23 10:12:34',2,'2006-02-15 21:30:53'),(12405,'2005-08-18 09:37:30',228,266,'2005-08-27 13:11:30',2,'2006-02-15 21:30:53'),(12406,'2005-08-18 09:38:02',4368,510,'2005-08-22 12:56:02',1,'2006-02-15 21:30:53'),(12407,'2005-08-18 09:39:26',391,220,'2005-08-24 05:19:26',2,'2006-02-15 21:30:53'),(12408,'2005-08-18 09:40:38',2360,143,'2005-08-19 04:45:38',1,'2006-02-15 21:30:53'),(12409,'2005-08-18 09:43:58',2568,64,'2005-08-19 15:02:58',2,'2006-02-15 21:30:53'),(12410,'2005-08-18 09:45:33',1904,210,'2005-08-27 08:50:33',1,'2006-02-15 21:30:53'),(12411,'2005-08-18 09:47:57',1234,181,'2005-08-21 05:54:57',2,'2006-02-15 21:30:53'),(12412,'2005-08-18 09:49:52',1578,75,'2005-08-23 12:32:52',2,'2006-02-15 21:30:53'),(12413,'2005-08-18 09:50:34',3466,366,'2005-08-23 05:57:34',2,'2006-02-15 21:30:53'),(12414,'2005-08-18 09:50:40',4454,32,'2005-08-26 06:45:40',2,'2006-02-15 21:30:53'),(12415,'2005-08-18 09:54:01',392,443,'2005-08-24 15:41:01',1,'2006-02-15 21:30:53'),(12416,'2005-08-18 09:56:48',3784,515,'2005-08-22 12:34:48',1,'2006-02-15 21:30:53'),(12417,'2005-08-18 09:57:00',3500,71,'2005-08-19 08:56:00',1,'2006-02-15 21:30:53'),(12418,'2005-08-18 09:59:36',4186,241,'2005-08-19 11:35:36',2,'2006-02-15 21:30:53'),(12419,'2005-08-18 10:01:48',3111,133,'2005-08-19 13:40:48',1,'2006-02-15 21:30:53'),(12420,'2005-08-18 10:01:50',452,477,'2005-08-22 08:14:50',1,'2006-02-15 21:30:53'),(12421,'2005-08-18 10:04:06',4067,158,'2005-08-24 08:45:06',2,'2006-02-15 21:30:53'),(12422,'2005-08-18 10:13:12',1855,451,'2005-08-20 14:36:12',2,'2006-02-15 21:30:53'),(12423,'2005-08-18 10:14:52',1014,470,'2005-08-26 13:16:52',2,'2006-02-15 21:30:53'),(12424,'2005-08-18 10:16:57',2055,319,'2005-08-27 04:41:57',1,'2006-02-15 21:30:53'),(12425,'2005-08-18 10:18:06',2000,405,'2005-08-27 08:16:06',2,'2006-02-15 21:30:53'),(12426,'2005-08-18 10:24:11',799,75,'2005-08-22 15:34:11',2,'2006-02-15 21:30:53'),(12427,'2005-08-18 10:24:17',1759,333,'2005-08-27 14:22:17',1,'2006-02-15 21:30:53'),(12428,'2005-08-18 10:24:21',3735,121,'2005-08-24 05:12:21',1,'2006-02-15 21:30:53'),(12429,'2005-08-18 10:26:46',2994,436,'2005-08-27 13:23:46',1,'2006-02-15 21:30:53'),(12430,'2005-08-18 10:32:41',2840,196,'2005-08-22 16:16:41',1,'2006-02-15 21:30:53'),(12431,'2005-08-18 10:34:59',4461,89,'2005-08-22 14:42:59',1,'2006-02-15 21:30:53'),(12432,'2005-08-18 10:35:13',2543,263,'2005-08-26 08:20:13',2,'2006-02-15 21:30:53'),(12433,'2005-08-18 10:37:49',1776,552,'2005-08-19 08:00:49',1,'2006-02-15 21:30:53'),(12434,'2005-08-18 10:38:08',3078,314,'2005-08-22 16:14:08',2,'2006-02-15 21:30:53'),(12435,'2005-08-18 10:38:31',3211,160,'2005-08-26 15:18:31',1,'2006-02-15 21:30:53'),(12436,'2005-08-18 10:41:05',3761,499,'2005-08-23 07:36:05',2,'2006-02-15 21:30:53'),(12437,'2005-08-18 10:42:43',4036,467,'2005-08-26 11:58:43',2,'2006-02-15 21:30:53'),(12438,'2005-08-18 10:42:52',2043,186,'2005-08-25 11:42:52',1,'2006-02-15 21:30:53'),(12439,'2005-08-18 10:44:57',3204,153,'2005-08-22 06:51:57',1,'2006-02-15 21:30:53'),(12440,'2005-08-18 10:47:35',2779,474,'2005-08-21 11:10:35',2,'2006-02-15 21:30:53'),(12441,'2005-08-18 10:47:57',2163,561,'2005-08-26 07:11:57',2,'2006-02-15 21:30:53'),(12442,'2005-08-18 10:50:07',78,270,'2005-08-21 08:06:07',1,'2006-02-15 21:30:53'),(12443,'2005-08-18 10:50:59',2048,233,'2005-08-26 07:48:59',2,'2006-02-15 21:30:53'),(12444,'2005-08-18 10:53:12',1639,285,'2005-08-19 13:54:12',2,'2006-02-15 21:30:53'),(12445,'2005-08-18 10:56:20',3347,350,'2005-08-21 16:46:20',1,'2006-02-15 21:30:53'),(12446,'2005-08-18 10:56:29',2138,448,'2005-08-23 05:30:29',1,'2006-02-15 21:30:53'),(12447,'2005-08-18 10:57:01',4084,469,'2005-08-27 06:05:01',1,'2006-02-15 21:30:53'),(12448,'2005-08-18 10:59:04',3889,72,'2005-08-21 06:45:04',2,'2006-02-15 21:30:53'),(12449,'2005-08-18 11:03:04',663,285,'2005-08-19 07:34:04',1,'2006-02-15 21:30:53'),(12450,'2005-08-18 11:04:04',3439,518,'2005-08-22 07:24:04',1,'2006-02-15 21:30:53'),(12451,'2005-08-18 11:04:42',2780,183,'2005-08-20 08:20:42',1,'2006-02-15 21:30:53'),(12452,'2005-08-18 11:14:35',4260,358,'2005-08-27 09:09:35',1,'2006-02-15 21:30:53'),(12453,'2005-08-18 11:17:07',2487,104,'2005-08-25 12:34:07',1,'2006-02-15 21:30:53'),(12454,'2005-08-18 11:19:02',4219,184,'2005-08-19 12:00:02',2,'2006-02-15 21:30:53'),(12455,'2005-08-18 11:19:47',4478,46,'2005-08-22 16:08:47',2,'2006-02-15 21:30:53'),(12456,'2005-08-18 11:21:51',4578,85,'2005-08-21 13:28:51',1,'2006-02-15 21:30:53'),(12457,'2006-02-14 15:16:03',2145,80,NULL,2,'2006-02-15 21:30:53'),(12458,'2005-08-18 11:22:53',4579,277,'2005-08-22 14:30:53',2,'2006-02-15 21:30:53'),(12459,'2005-08-18 11:25:11',421,39,'2005-08-22 06:13:11',1,'2006-02-15 21:30:53'),(12460,'2005-08-18 11:25:13',3550,419,'2005-08-27 06:27:13',2,'2006-02-15 21:30:53'),(12461,'2005-08-18 11:28:14',1569,27,'2005-08-21 09:47:14',1,'2006-02-15 21:30:53'),(12462,'2005-08-18 11:28:55',890,574,'2005-08-20 12:06:55',2,'2006-02-15 21:30:53'),(12463,'2005-08-18 11:31:34',30,214,'2005-08-23 12:04:34',1,'2006-02-15 21:30:53'),(12464,'2005-08-18 11:33:34',1954,157,'2005-08-27 14:33:34',1,'2006-02-15 21:30:53'),(12465,'2005-08-18 11:35:02',1733,486,'2005-08-21 11:52:02',2,'2006-02-15 21:30:53'),(12466,'2005-08-18 11:36:55',2686,462,'2005-08-23 13:46:55',1,'2006-02-15 21:30:53'),(12467,'2005-08-18 11:40:09',1414,212,'2005-08-19 13:33:09',2,'2006-02-15 21:30:53'),(12468,'2005-08-18 11:41:47',1689,80,'2005-08-24 16:43:47',2,'2006-02-15 21:30:53'),(12469,'2005-08-18 11:53:07',2395,237,'2005-08-24 16:00:07',1,'2006-02-15 21:30:53'),(12470,'2005-08-18 11:55:42',1290,82,'2005-08-24 08:27:42',2,'2006-02-15 21:30:53'),(12471,'2005-08-18 11:57:00',242,101,'2005-08-26 13:17:00',2,'2006-02-15 21:30:53'),(12472,'2005-08-18 11:58:48',4458,297,'2005-08-27 16:37:48',2,'2006-02-15 21:30:53'),(12473,'2005-08-18 11:59:44',1237,303,'2005-08-21 13:38:44',1,'2006-02-15 21:30:53'),(12474,'2005-08-18 12:10:03',2240,78,'2005-08-27 17:05:03',1,'2006-02-15 21:30:53'),(12475,'2005-08-18 12:14:21',3118,401,'2005-08-24 14:43:21',2,'2006-02-15 21:30:53'),(12476,'2005-08-18 12:22:40',2784,122,'2005-08-20 17:29:40',2,'2006-02-15 21:30:53'),(12477,'2005-08-18 12:25:01',4516,74,'2005-08-25 17:25:01',2,'2006-02-15 21:30:53'),(12478,'2005-08-18 12:25:16',4512,42,'2005-08-22 06:27:16',2,'2006-02-15 21:30:53'),(12479,'2005-08-18 12:26:37',1119,401,'2005-08-21 18:08:37',2,'2006-02-15 21:30:53'),(12480,'2005-08-18 12:26:43',3339,446,'2005-08-26 13:23:43',1,'2006-02-15 21:30:53'),(12481,'2005-08-18 12:31:34',2424,218,'2005-08-21 16:08:34',2,'2006-02-15 21:30:53'),(12482,'2005-08-18 12:37:36',3778,247,'2005-08-26 09:53:36',1,'2006-02-15 21:30:53'),(12483,'2005-08-18 12:38:37',1805,488,'2005-08-24 13:26:37',1,'2006-02-15 21:30:53'),(12484,'2005-08-18 12:39:37',3690,300,'2005-08-24 08:47:37',2,'2006-02-15 21:30:53'),(12485,'2005-08-18 12:41:41',422,345,'2005-08-22 16:38:41',2,'2006-02-15 21:30:53'),(12486,'2005-08-18 12:42:50',2991,515,'2005-08-27 13:41:50',2,'2006-02-15 21:30:53'),(12487,'2005-08-18 12:45:24',2554,485,'2005-08-22 12:39:24',1,'2006-02-15 21:30:53'),(12488,'2005-08-18 12:48:22',3323,29,'2005-08-19 16:19:22',1,'2006-02-15 21:30:53'),(12489,'2006-02-14 15:16:03',387,60,NULL,2,'2006-02-15 21:30:53'),(12490,'2005-08-18 12:48:45',1577,187,'2005-08-27 15:53:45',1,'2006-02-15 21:30:53'),(12491,'2005-08-18 12:48:45',2354,247,'2005-08-22 12:40:45',2,'2006-02-15 21:30:53'),(12492,'2005-08-18 12:49:04',2839,224,'2005-08-26 17:55:04',1,'2006-02-15 21:30:53'),(12493,'2005-08-18 12:53:38',3029,487,'2005-08-27 13:15:38',2,'2006-02-15 21:30:53'),(12494,'2005-08-18 12:53:49',3845,522,'2005-08-26 15:52:49',1,'2006-02-15 21:30:53'),(12495,'2005-08-18 12:56:37',1225,102,'2005-08-22 06:58:37',1,'2006-02-15 21:30:53'),(12496,'2005-08-18 12:58:25',456,489,'2005-08-27 18:43:25',2,'2006-02-15 21:30:53'),(12497,'2005-08-18 12:58:40',824,388,'2005-08-24 08:24:40',1,'2006-02-15 21:30:53'),(12498,'2005-08-18 13:01:08',1063,408,'2005-08-21 13:12:08',1,'2006-02-15 21:30:53'),(12499,'2005-08-18 13:05:37',2611,42,'2005-08-19 07:41:37',1,'2006-02-15 21:30:53'),(12500,'2005-08-18 13:05:51',36,310,'2005-08-19 14:54:51',2,'2006-02-15 21:30:53'),(12501,'2005-08-18 13:13:13',728,173,'2005-08-23 07:24:13',2,'2006-02-15 21:30:53'),(12502,'2005-08-18 13:16:31',2153,235,'2005-08-19 17:47:31',1,'2006-02-15 21:30:53'),(12503,'2005-08-18 13:16:46',3548,379,'2005-08-19 10:24:46',2,'2006-02-15 21:30:53'),(12504,'2005-08-18 13:17:07',4429,44,'2005-08-24 09:13:07',2,'2006-02-15 21:30:53'),(12505,'2005-08-18 13:17:30',3741,406,'2005-08-23 18:03:30',1,'2006-02-15 21:30:53'),(12506,'2006-02-14 15:16:03',1132,114,NULL,2,'2006-02-15 21:30:53'),(12507,'2005-08-18 13:19:13',199,584,'2005-08-27 11:48:13',2,'2006-02-15 21:30:53'),(12508,'2005-08-18 13:20:13',1059,29,'2005-08-22 12:55:13',1,'2006-02-15 21:30:53'),(12509,'2005-08-18 13:21:52',2462,175,'2005-08-20 12:14:52',2,'2006-02-15 21:30:53'),(12510,'2005-08-18 13:22:25',3051,394,'2005-08-27 17:38:25',2,'2006-02-15 21:30:53'),(12511,'2005-08-18 13:23:19',919,447,'2005-08-22 11:43:19',2,'2006-02-15 21:30:53'),(12512,'2005-08-18 13:28:27',3959,148,'2005-08-26 19:08:27',2,'2006-02-15 21:30:53'),(12513,'2005-08-18 13:31:45',29,527,'2005-08-25 08:26:45',1,'2006-02-15 21:30:53'),(12514,'2005-08-18 13:33:55',3310,400,'2005-08-23 12:50:55',2,'2006-02-15 21:30:53'),(12515,'2005-08-18 13:39:26',2703,63,'2005-08-22 09:05:26',1,'2006-02-15 21:30:53'),(12516,'2005-08-18 13:39:53',1332,302,'2005-08-20 08:33:53',1,'2006-02-15 21:30:53'),(12517,'2005-08-18 13:40:20',2908,520,'2005-08-27 14:04:20',1,'2006-02-15 21:30:53'),(12518,'2005-08-18 13:41:32',3860,264,'2005-08-23 13:01:32',1,'2006-02-15 21:30:53'),(12519,'2005-08-18 13:42:14',2394,203,'2005-08-24 16:44:14',1,'2006-02-15 21:30:53'),(12520,'2005-08-18 13:42:45',681,52,'2005-08-23 12:54:45',2,'2006-02-15 21:30:53'),(12521,'2005-08-18 13:43:07',1022,369,'2005-08-21 07:53:07',1,'2006-02-15 21:30:53'),(12522,'2005-08-18 13:45:40',4435,342,'2005-08-27 17:05:40',1,'2006-02-15 21:30:53'),(12523,'2005-08-18 13:45:41',888,230,'2005-08-27 10:46:41',1,'2006-02-15 21:30:53'),(12524,'2006-02-14 15:16:03',857,438,NULL,1,'2006-02-15 21:30:53'),(12525,'2005-08-18 13:48:31',2357,96,'2005-08-23 13:04:31',2,'2006-02-15 21:30:53'),(12526,'2005-08-18 13:48:43',3541,54,'2005-08-19 10:05:43',1,'2006-02-15 21:30:53'),(12527,'2005-08-18 13:48:46',2536,459,'2005-08-26 13:31:46',2,'2006-02-15 21:30:53'),(12528,'2005-08-18 13:52:41',3381,398,'2005-08-27 09:09:41',2,'2006-02-15 21:30:53'),(12529,'2005-08-18 13:53:36',1956,382,'2005-08-19 18:20:36',2,'2006-02-15 21:30:53'),(12530,'2005-08-18 13:54:48',1054,521,'2005-08-26 08:58:48',2,'2006-02-15 21:30:53'),(12531,'2005-08-18 13:57:50',2771,27,'2005-08-22 09:46:50',2,'2006-02-15 21:30:53'),(12532,'2005-08-18 13:57:58',114,184,'2005-08-24 14:58:58',2,'2006-02-15 21:30:53'),(12533,'2005-08-18 14:01:40',795,331,'2005-08-20 15:32:40',1,'2006-02-15 21:30:53'),(12534,'2005-08-18 14:04:41',995,187,'2005-08-25 16:57:41',1,'2006-02-15 21:30:53'),(12535,'2005-08-18 14:05:22',2944,516,'2005-08-25 16:35:22',1,'2006-02-15 21:30:53'),(12536,'2005-08-18 14:06:06',2343,373,'2005-08-25 14:21:06',1,'2006-02-15 21:30:53'),(12537,'2005-08-18 14:06:39',57,56,'2005-08-25 09:36:39',2,'2006-02-15 21:30:53'),(12538,'2005-08-18 14:09:09',1373,118,'2005-08-23 19:12:09',1,'2006-02-15 21:30:53'),(12539,'2005-08-18 14:10:09',3259,136,'2005-08-19 19:44:09',2,'2006-02-15 21:30:53'),(12540,'2005-08-18 14:17:30',2826,304,'2005-08-26 15:33:30',2,'2006-02-15 21:30:53'),(12541,'2005-08-18 14:18:30',4357,584,'2005-08-26 10:24:30',1,'2006-02-15 21:30:53'),(12542,'2005-08-18 14:21:11',1920,230,'2005-08-20 16:06:11',2,'2006-02-15 21:30:53'),(12543,'2005-08-18 14:23:55',330,324,'2005-08-20 12:42:55',1,'2006-02-15 21:30:53'),(12544,'2005-08-18 14:25:51',3783,354,'2005-08-26 18:42:51',1,'2006-02-15 21:30:53'),(12545,'2005-08-18 14:28:00',1988,168,'2005-08-26 14:10:00',1,'2006-02-15 21:30:53'),(12546,'2005-08-18 14:29:37',610,30,'2005-08-26 09:47:37',1,'2006-02-15 21:30:53'),(12547,'2005-08-18 14:29:39',3046,591,'2005-08-22 16:52:39',2,'2006-02-15 21:30:53'),(12548,'2005-08-18 14:35:26',750,426,'2005-08-27 18:58:26',1,'2006-02-15 21:30:53'),(12549,'2005-08-18 14:38:07',1010,377,'2005-08-21 08:45:07',1,'2006-02-15 21:30:53'),(12550,'2005-08-18 14:40:38',4267,138,'2005-08-19 13:33:38',2,'2006-02-15 21:30:53'),(12551,'2005-08-18 14:46:26',2195,15,'2005-08-19 16:59:26',2,'2006-02-15 21:30:53'),(12552,'2005-08-18 14:46:34',4303,413,'2005-08-20 11:02:34',2,'2006-02-15 21:30:53'),(12553,'2005-08-18 14:46:54',2893,454,'2005-08-22 13:41:54',1,'2006-02-15 21:30:53'),(12554,'2005-08-18 14:47:28',715,404,'2005-08-25 14:34:28',2,'2006-02-15 21:30:53'),(12555,'2005-08-18 14:49:22',4434,557,'2005-08-26 14:11:22',2,'2006-02-15 21:30:53'),(12556,'2005-08-18 14:49:55',1984,3,'2005-08-24 15:20:55',2,'2006-02-15 21:30:53'),(12557,'2005-08-18 14:51:03',313,364,'2005-08-19 13:30:03',2,'2006-02-15 21:30:53'),(12558,'2005-08-18 14:52:35',167,289,'2005-08-26 09:45:35',2,'2006-02-15 21:30:53'),(12559,'2005-08-18 14:53:58',39,513,'2005-08-25 20:22:58',1,'2006-02-15 21:30:53'),(12560,'2005-08-18 14:54:19',829,596,'2005-08-27 13:39:19',1,'2006-02-15 21:30:53'),(12561,'2005-08-18 14:58:51',812,392,'2005-08-20 10:53:51',1,'2006-02-15 21:30:53'),(12562,'2005-08-18 15:00:03',529,212,'2005-08-23 12:55:03',2,'2006-02-15 21:30:53'),(12563,'2005-08-18 15:08:29',2552,393,'2005-08-27 15:15:29',1,'2006-02-15 21:30:53'),(12564,'2005-08-18 15:11:35',263,348,'2005-08-22 11:45:35',2,'2006-02-15 21:30:53'),(12565,'2005-08-18 15:12:17',1284,211,'2005-08-19 12:26:17',2,'2006-02-15 21:30:53'),(12566,'2005-08-18 15:13:04',1684,407,'2005-08-21 19:29:04',2,'2006-02-15 21:30:53'),(12567,'2005-08-18 15:14:36',2931,308,'2005-08-26 18:56:36',1,'2006-02-15 21:30:53'),(12568,'2005-08-18 15:15:44',2654,569,'2005-08-22 19:32:44',2,'2006-02-15 21:30:53'),(12569,'2005-08-18 15:20:46',1009,29,'2005-08-24 12:38:46',2,'2006-02-15 21:30:53'),(12570,'2005-08-18 15:23:31',3973,211,'2005-08-22 09:59:31',2,'2006-02-15 21:30:53'),(12571,'2005-08-18 15:31:18',1013,591,'2005-08-23 15:20:18',2,'2006-02-15 21:30:53'),(12572,'2005-08-18 15:32:54',1366,253,'2005-08-21 10:30:54',1,'2006-02-15 21:30:53'),(12573,'2005-08-18 15:32:57',1416,182,'2005-08-21 18:29:57',2,'2006-02-15 21:30:53'),(12574,'2006-02-14 15:16:03',177,317,NULL,2,'2006-02-15 21:30:53'),(12575,'2005-08-18 15:37:42',3441,117,'2005-08-25 19:17:42',1,'2006-02-15 21:30:53'),(12576,'2005-08-18 15:38:31',329,119,'2005-08-22 21:29:31',2,'2006-02-15 21:30:53'),(12577,'2005-08-18 15:39:46',4134,16,'2005-08-25 18:05:46',2,'2006-02-15 21:30:53'),(12578,'2005-08-18 15:47:11',930,514,'2005-08-21 10:55:11',1,'2006-02-15 21:30:53'),(12579,'2005-08-18 15:47:49',3021,547,'2005-08-20 18:12:49',2,'2006-02-15 21:30:53'),(12580,'2005-08-18 15:49:08',1197,53,'2005-08-24 11:03:08',2,'2006-02-15 21:30:53'),(12581,'2005-08-18 15:49:15',4309,70,'2005-08-23 20:18:15',1,'2006-02-15 21:30:53'),(12582,'2005-08-18 15:51:12',4467,462,'2005-08-20 12:05:12',1,'2006-02-15 21:30:53'),(12583,'2005-08-18 15:51:36',3090,108,'2005-08-20 18:47:36',2,'2006-02-15 21:30:53'),(12584,'2005-08-18 15:51:36',4487,371,'2005-08-25 19:21:36',1,'2006-02-15 21:30:53'),(12585,'2005-08-18 15:52:12',773,110,'2005-08-22 21:00:12',1,'2006-02-15 21:30:53'),(12586,'2005-08-18 15:54:39',4245,460,'2005-08-21 19:29:39',1,'2006-02-15 21:30:53'),(12587,'2005-08-18 16:03:13',3081,499,'2005-08-25 19:30:13',1,'2006-02-15 21:30:53'),(12588,'2005-08-18 16:04:45',694,415,'2005-08-23 20:30:45',1,'2006-02-15 21:30:53'),(12589,'2005-08-18 16:06:31',956,275,'2005-08-27 17:20:31',1,'2006-02-15 21:30:53'),(12590,'2005-08-18 16:11:35',2624,308,'2005-08-23 10:35:35',1,'2006-02-15 21:30:53'),(12591,'2005-08-18 16:16:41',723,546,'2005-08-24 10:29:41',2,'2006-02-15 21:30:53'),(12592,'2005-08-18 16:17:50',1618,305,'2005-08-25 20:20:50',1,'2006-02-15 21:30:53'),(12593,'2005-08-18 16:17:54',4092,72,'2005-08-21 18:02:54',2,'2006-02-15 21:30:53'),(12594,'2005-08-18 16:24:24',4421,198,'2005-08-25 15:45:24',1,'2006-02-15 21:30:53'),(12595,'2005-08-18 16:27:08',1662,286,'2005-08-19 14:53:08',1,'2006-02-15 21:30:53'),(12596,'2005-08-18 16:29:35',3662,378,'2005-08-24 16:48:35',1,'2006-02-15 21:30:53'),(12597,'2005-08-18 16:34:02',3804,474,'2005-08-25 17:30:02',2,'2006-02-15 21:30:53'),(12598,'2005-08-18 16:34:03',3159,340,'2005-08-22 16:44:03',1,'2006-02-15 21:30:53'),(12599,'2005-08-18 16:42:45',2032,34,'2005-08-23 18:27:45',2,'2006-02-15 21:30:53'),(12600,'2005-08-18 16:44:24',1475,171,'2005-08-25 17:28:24',1,'2006-02-15 21:30:53'),(12601,'2005-08-18 16:47:52',3099,598,'2005-08-24 11:05:52',1,'2006-02-15 21:30:53'),(12602,'2005-08-18 16:49:50',2001,533,'2005-08-21 11:13:50',2,'2006-02-15 21:30:53'),(12603,'2005-08-18 16:56:20',2769,119,'2005-08-25 11:50:20',2,'2006-02-15 21:30:53'),(12604,'2005-08-18 16:58:48',4127,12,'2005-08-19 19:36:48',1,'2006-02-15 21:30:53'),(12605,'2005-08-18 16:59:37',1359,496,'2005-08-20 18:09:37',1,'2006-02-15 21:30:53'),(12606,'2005-08-18 17:02:21',359,275,'2005-08-24 22:38:21',1,'2006-02-15 21:30:53'),(12607,'2005-08-18 17:03:49',2130,526,'2005-08-19 18:29:49',1,'2006-02-15 21:30:53'),(12608,'2005-08-18 17:05:15',624,366,'2005-08-23 17:00:15',2,'2006-02-15 21:30:53'),(12609,'2005-08-18 17:06:22',2327,486,'2005-08-20 21:30:22',1,'2006-02-15 21:30:53'),(12610,'2006-02-14 15:16:03',3181,269,NULL,1,'2006-02-15 21:30:53'),(12611,'2005-08-18 17:09:42',1925,359,'2005-08-24 11:57:42',2,'2006-02-15 21:30:53'),(12612,'2005-08-18 17:10:05',1035,129,'2005-08-26 15:55:05',2,'2006-02-15 21:30:53'),(12613,'2005-08-18 17:16:01',3877,8,'2005-08-23 18:40:01',2,'2006-02-15 21:30:53'),(12614,'2005-08-18 17:16:03',2233,60,'2005-08-26 16:56:03',2,'2006-02-15 21:30:53'),(12615,'2005-08-18 17:16:07',2191,29,'2005-08-27 12:57:07',1,'2006-02-15 21:30:53'),(12616,'2005-08-18 17:22:41',2952,476,'2005-08-25 18:52:41',2,'2006-02-15 21:30:53'),(12617,'2005-08-18 17:22:48',3573,564,'2005-08-24 17:40:48',2,'2006-02-15 21:30:53'),(12618,'2005-08-18 17:24:02',302,117,'2005-08-19 15:22:02',1,'2006-02-15 21:30:53'),(12619,'2005-08-18 17:24:15',980,592,'2005-08-21 15:56:15',1,'2006-02-15 21:30:53'),(12620,'2005-08-18 17:26:38',2663,221,'2005-08-25 13:24:38',1,'2006-02-15 21:30:53'),(12621,'2005-08-18 17:31:36',4566,439,'2005-08-24 16:43:36',2,'2006-02-15 21:30:53'),(12622,'2005-08-18 17:34:11',278,529,'2005-08-24 16:10:11',1,'2006-02-15 21:30:53'),(12623,'2005-08-18 17:34:19',3670,177,'2005-08-20 21:30:19',1,'2006-02-15 21:30:53'),(12624,'2005-08-18 17:35:00',1135,434,'2005-08-27 12:18:00',2,'2006-02-15 21:30:53'),(12625,'2005-08-18 17:36:19',2645,108,'2005-08-23 11:42:19',1,'2006-02-15 21:30:53'),(12626,'2005-08-18 17:36:45',4230,361,'2005-08-26 17:12:45',1,'2006-02-15 21:30:53'),(12627,'2005-08-18 17:37:11',3760,150,'2005-08-19 14:59:11',2,'2006-02-15 21:30:53'),(12628,'2005-08-18 17:40:25',3210,520,'2005-08-25 13:39:25',1,'2006-02-15 21:30:53'),(12629,'2005-08-18 17:40:33',1705,459,'2005-08-26 21:09:33',1,'2006-02-15 21:30:53'),(12630,'2005-08-18 17:49:28',1457,452,'2005-08-24 12:23:28',1,'2006-02-15 21:30:53'),(12631,'2005-08-18 17:52:51',2782,339,'2005-08-25 14:40:51',2,'2006-02-15 21:30:53'),(12632,'2005-08-18 17:54:21',827,381,'2005-08-22 18:58:21',1,'2006-02-15 21:30:53'),(12633,'2005-08-18 17:55:38',4341,469,'2005-08-23 17:19:38',2,'2006-02-15 21:30:53'),(12634,'2005-08-18 17:58:14',1037,549,'2005-08-19 21:08:14',2,'2006-02-15 21:30:53'),(12635,'2005-08-18 18:00:23',331,15,'2005-08-23 16:40:23',2,'2006-02-15 21:30:53'),(12636,'2005-08-18 18:00:29',1645,380,'2005-08-26 20:08:29',2,'2006-02-15 21:30:53'),(12637,'2005-08-18 18:06:53',4005,145,'2005-08-19 17:36:53',1,'2006-02-15 21:30:53'),(12638,'2005-08-18 18:11:39',2849,172,'2005-08-25 21:54:39',2,'2006-02-15 21:30:53'),(12639,'2005-08-18 18:13:05',562,500,'2005-08-27 16:00:05',2,'2006-02-15 21:30:53'),(12640,'2005-08-18 18:14:49',1715,544,'2005-08-24 21:25:49',1,'2006-02-15 21:30:53'),(12641,'2005-08-18 18:18:08',776,467,'2005-08-19 23:17:08',1,'2006-02-15 21:30:53'),(12642,'2005-08-18 18:19:16',2080,167,'2005-08-20 17:30:16',2,'2006-02-15 21:30:53'),(12643,'2005-08-18 18:21:06',2245,165,'2005-08-24 14:26:06',1,'2006-02-15 21:30:53'),(12644,'2005-08-18 18:22:27',1511,300,'2005-08-26 00:01:27',1,'2006-02-15 21:30:53'),(12645,'2006-02-14 15:16:03',1658,457,NULL,1,'2006-02-15 21:30:53'),(12646,'2005-08-18 18:25:06',3103,388,'2005-08-24 18:45:06',1,'2006-02-15 21:30:53'),(12647,'2005-08-18 18:29:51',323,520,'2005-08-27 22:51:51',1,'2006-02-15 21:30:53'),(12648,'2005-08-18 18:30:21',3545,519,'2005-08-25 19:17:21',1,'2006-02-15 21:30:53'),(12649,'2005-08-18 18:31:47',3201,530,'2005-08-22 21:07:47',2,'2006-02-15 21:30:53'),(12650,'2005-08-18 18:33:20',3237,276,'2005-08-21 17:45:20',2,'2006-02-15 21:30:53'),(12651,'2005-08-18 18:36:16',8,34,'2005-08-22 22:01:16',1,'2006-02-15 21:30:53'),(12652,'2005-08-18 18:48:58',2118,9,'2005-08-21 14:15:58',1,'2006-02-15 21:30:53'),(12653,'2005-08-18 18:53:17',3353,78,'2005-08-26 14:08:17',1,'2006-02-15 21:30:53'),(12654,'2005-08-18 18:56:40',2217,438,'2005-08-20 17:51:40',2,'2006-02-15 21:30:53'),(12655,'2005-08-18 18:57:44',859,533,'2005-08-27 22:40:44',2,'2006-02-15 21:30:53'),(12656,'2005-08-18 18:58:35',3981,286,'2005-08-21 00:41:35',1,'2006-02-15 21:30:53'),(12657,'2005-08-18 19:02:16',3621,100,'2005-08-21 14:59:16',1,'2006-02-15 21:30:53'),(12658,'2005-08-18 19:05:42',4320,193,'2005-08-19 19:08:42',1,'2006-02-15 21:30:53'),(12659,'2005-08-18 19:05:49',336,329,'2005-08-24 22:12:49',2,'2006-02-15 21:30:53'),(12660,'2005-08-18 19:07:23',414,21,'2005-08-27 17:20:23',2,'2006-02-15 21:30:53'),(12661,'2005-08-18 19:10:10',1547,333,'2005-08-22 20:30:10',1,'2006-02-15 21:30:53'),(12662,'2005-08-18 19:10:41',1412,75,'2005-08-23 16:59:41',1,'2006-02-15 21:30:53'),(12663,'2005-08-18 19:10:52',1163,375,'2005-08-19 15:46:52',1,'2006-02-15 21:30:53'),(12664,'2005-08-18 19:10:54',2732,577,'2005-08-25 19:19:54',1,'2006-02-15 21:30:53'),(12665,'2006-02-14 15:16:03',1701,410,NULL,2,'2006-02-15 21:30:53'),(12666,'2005-08-18 19:11:41',4156,251,'2005-08-21 18:04:41',2,'2006-02-15 21:30:53'),(12667,'2005-08-18 19:11:45',104,545,'2005-08-27 13:34:45',2,'2006-02-15 21:30:53'),(12668,'2005-08-18 19:16:47',1986,14,'2005-08-19 16:31:47',1,'2006-02-15 21:30:53'),(12669,'2005-08-18 19:17:47',4530,433,'2005-08-24 14:55:47',1,'2006-02-15 21:30:53'),(12670,'2005-08-18 19:17:58',1716,580,'2005-08-23 20:54:58',2,'2006-02-15 21:30:53'),(12671,'2005-08-18 19:19:59',1734,577,'2005-08-23 17:53:59',2,'2006-02-15 21:30:53'),(12672,'2006-02-14 15:16:03',1722,228,NULL,1,'2006-02-15 21:30:53'),(12673,'2005-08-18 19:21:56',4204,535,'2005-08-26 22:44:56',2,'2006-02-15 21:30:53'),(12674,'2005-08-18 19:24:56',636,185,'2005-08-26 22:16:56',2,'2006-02-15 21:30:53'),(12675,'2005-08-18 19:34:02',569,140,'2005-08-23 13:36:02',2,'2006-02-15 21:30:53'),(12676,'2005-08-18 19:34:40',2581,393,'2005-08-20 18:03:40',2,'2006-02-15 21:30:53'),(12677,'2005-08-18 19:36:05',1311,334,'2005-08-22 21:23:05',2,'2006-02-15 21:30:53'),(12678,'2005-08-18 19:41:27',2504,181,'2005-08-23 15:14:27',2,'2006-02-15 21:30:53'),(12679,'2005-08-18 19:42:11',1535,463,'2005-08-25 01:01:11',1,'2006-02-15 21:30:53'),(12680,'2005-08-18 19:43:46',833,259,'2005-08-27 00:08:46',2,'2006-02-15 21:30:53'),(12681,'2005-08-18 19:48:06',1570,518,'2005-08-23 15:05:06',2,'2006-02-15 21:30:53'),(12682,'2006-02-14 15:16:03',1148,245,NULL,2,'2006-02-15 21:30:53'),(12683,'2005-08-18 19:50:43',1802,166,'2005-08-26 00:47:43',1,'2006-02-15 21:30:53'),(12684,'2005-08-18 19:51:27',978,196,'2005-08-19 15:56:27',1,'2006-02-15 21:30:53'),(12685,'2005-08-18 19:51:29',4283,114,'2005-08-27 14:58:29',2,'2006-02-15 21:30:53'),(12686,'2005-08-18 19:55:09',501,385,'2005-08-26 14:17:09',1,'2006-02-15 21:30:53'),(12687,'2005-08-18 19:57:39',3092,285,'2005-08-27 01:36:39',2,'2006-02-15 21:30:53'),(12688,'2005-08-18 19:59:54',2315,65,'2005-08-26 18:52:54',2,'2006-02-15 21:30:53'),(12689,'2005-08-18 20:06:34',1066,296,'2005-08-22 20:11:34',2,'2006-02-15 21:30:53'),(12690,'2005-08-18 20:06:57',3574,361,'2005-08-24 20:54:57',2,'2006-02-15 21:30:53'),(12691,'2005-08-18 20:07:46',3744,534,'2005-08-26 18:49:46',2,'2006-02-15 21:30:53'),(12692,'2005-08-18 20:09:19',2781,273,'2005-08-21 00:14:19',1,'2006-02-15 21:30:53'),(12693,'2005-08-18 20:10:19',1543,584,'2005-08-25 21:11:19',1,'2006-02-15 21:30:53'),(12694,'2005-08-18 20:10:39',1741,268,'2005-08-25 20:47:39',1,'2006-02-15 21:30:53'),(12695,'2005-08-18 20:11:35',446,483,'2005-08-25 18:29:35',1,'2006-02-15 21:30:53'),(12696,'2005-08-18 20:13:08',3989,374,'2005-08-19 18:02:08',2,'2006-02-15 21:30:53'),(12697,'2005-08-18 20:14:56',2774,152,'2005-08-23 21:54:56',1,'2006-02-15 21:30:53'),(12698,'2006-02-14 15:16:03',3657,497,NULL,1,'2006-02-15 21:30:53'),(12699,'2005-08-18 20:20:59',3695,66,'2005-08-22 17:00:59',1,'2006-02-15 21:30:53'),(12700,'2005-08-18 20:24:46',540,397,'2005-08-23 21:50:46',1,'2006-02-15 21:30:53'),(12701,'2005-08-18 20:26:47',2337,489,'2005-08-26 23:36:47',2,'2006-02-15 21:30:53'),(12702,'2005-08-18 20:30:33',1884,474,'2005-08-27 01:22:33',2,'2006-02-15 21:30:53'),(12703,'2005-08-18 20:37:13',1278,453,'2005-08-26 16:13:13',1,'2006-02-15 21:30:53'),(12704,'2005-08-18 20:43:00',51,93,'2005-08-21 22:28:00',2,'2006-02-15 21:30:53'),(12705,'2005-08-18 20:44:14',2342,517,'2005-08-23 20:46:14',1,'2006-02-15 21:30:53'),(12706,'2005-08-18 20:44:34',1079,170,'2005-08-26 21:47:34',1,'2006-02-15 21:30:53'),(12707,'2005-08-18 20:52:02',1565,426,'2005-08-25 19:03:02',2,'2006-02-15 21:30:53'),(12708,'2005-08-18 20:59:17',3448,28,'2005-08-24 22:40:17',1,'2006-02-15 21:30:53'),(12709,'2005-08-18 20:59:51',3878,476,'2005-08-26 01:21:51',2,'2006-02-15 21:30:53'),(12710,'2005-08-18 21:02:50',3011,310,'2005-08-26 15:07:50',2,'2006-02-15 21:30:53'),(12711,'2005-08-18 21:03:32',2530,122,'2005-08-26 17:31:32',1,'2006-02-15 21:30:53'),(12712,'2005-08-18 21:04:13',2628,444,'2005-08-25 18:15:13',2,'2006-02-15 21:30:53'),(12713,'2005-08-18 21:07:28',1505,56,'2005-08-24 17:46:28',1,'2006-02-15 21:30:53'),(12714,'2005-08-18 21:08:01',868,372,'2005-08-27 17:09:01',2,'2006-02-15 21:30:53'),(12715,'2005-08-18 21:09:38',3768,266,'2005-08-21 20:25:38',1,'2006-02-15 21:30:53'),(12716,'2006-02-14 15:16:03',858,570,NULL,2,'2006-02-15 21:30:53'),(12717,'2005-08-18 21:15:40',3551,167,'2005-08-20 00:59:40',2,'2006-02-15 21:30:53'),(12718,'2005-08-18 21:21:44',3221,176,'2005-08-20 01:01:44',1,'2006-02-15 21:30:53'),(12719,'2006-02-14 15:16:03',1094,87,NULL,2,'2006-02-15 21:30:53'),(12720,'2005-08-18 21:28:42',2676,419,'2005-08-25 18:02:42',1,'2006-02-15 21:30:53'),(12721,'2005-08-18 21:30:12',1045,239,'2005-08-22 22:45:12',1,'2006-02-15 21:30:53'),(12722,'2005-08-18 21:33:53',913,416,'2005-08-27 23:47:53',2,'2006-02-15 21:30:53'),(12723,'2005-08-18 21:34:16',4167,430,'2005-08-22 22:37:16',1,'2006-02-15 21:30:53'),(12724,'2005-08-18 21:37:20',2224,242,'2005-08-27 21:56:20',2,'2006-02-15 21:30:53'),(12725,'2005-08-18 21:43:09',4071,51,'2005-08-23 18:50:09',1,'2006-02-15 21:30:53'),(12726,'2005-08-18 21:44:46',20,397,'2005-08-19 21:58:46',2,'2006-02-15 21:30:53'),(12727,'2005-08-18 21:45:15',15,178,'2005-08-24 15:52:15',1,'2006-02-15 21:30:53'),(12728,'2005-08-18 21:47:48',3156,129,'2005-08-25 16:13:48',1,'2006-02-15 21:30:53'),(12729,'2005-08-18 21:52:59',3711,424,'2005-08-21 00:02:59',1,'2006-02-15 21:30:53'),(12730,'2005-08-18 21:55:01',75,7,'2005-08-22 01:23:01',1,'2006-02-15 21:30:53'),(12731,'2005-08-18 21:55:38',1719,128,'2005-08-23 20:30:38',1,'2006-02-15 21:30:53'),(12732,'2005-08-18 21:57:50',3307,535,'2005-08-19 18:28:50',2,'2006-02-15 21:30:53'),(12733,'2005-08-18 21:59:00',3243,144,'2005-08-24 02:25:00',1,'2006-02-15 21:30:53'),(12734,'2005-08-18 22:04:52',3619,121,'2005-08-25 00:34:52',1,'2006-02-15 21:30:53'),(12735,'2005-08-18 22:04:54',3679,383,'2005-08-23 21:19:54',2,'2006-02-15 21:30:53'),(12736,'2006-02-14 15:16:03',3591,244,NULL,2,'2006-02-15 21:30:53'),(12737,'2005-08-18 22:11:37',736,204,'2005-08-26 04:08:37',1,'2006-02-15 21:30:53'),(12738,'2005-08-18 22:11:47',4313,589,'2005-08-27 17:55:47',2,'2006-02-15 21:30:53'),(12739,'2005-08-18 22:15:18',4129,292,'2005-08-27 00:37:18',2,'2006-02-15 21:30:53'),(12740,'2005-08-18 22:17:04',1157,330,'2005-08-23 23:42:04',1,'2006-02-15 21:30:53'),(12741,'2005-08-18 22:17:05',2084,435,'2005-08-25 20:07:05',2,'2006-02-15 21:30:53'),(12742,'2005-08-18 22:22:03',1742,68,'2005-08-22 04:01:03',1,'2006-02-15 21:30:53'),(12743,'2005-08-18 22:22:31',2630,565,'2005-08-27 00:31:31',1,'2006-02-15 21:30:53'),(12744,'2005-08-18 22:22:36',3815,593,'2005-08-24 00:26:36',1,'2006-02-15 21:30:53'),(12745,'2005-08-18 22:22:45',262,24,'2005-08-20 01:44:45',2,'2006-02-15 21:30:53'),(12746,'2006-02-14 15:16:03',1012,211,NULL,1,'2006-02-15 21:30:53'),(12747,'2005-08-18 22:28:22',4075,549,'2005-08-22 22:25:22',2,'2006-02-15 21:30:53'),(12748,'2005-08-18 22:29:05',3249,373,'2005-08-24 18:25:05',2,'2006-02-15 21:30:53'),(12749,'2005-08-18 22:31:21',828,388,'2005-08-20 22:53:21',1,'2006-02-15 21:30:53'),(12750,'2005-08-18 22:32:39',3717,535,'2005-08-26 01:54:39',1,'2006-02-15 21:30:53'),(12751,'2005-08-18 22:33:22',2791,352,'2005-08-20 20:28:22',2,'2006-02-15 21:30:53'),(12752,'2005-08-18 22:33:36',3595,514,'2005-08-27 23:55:36',1,'2006-02-15 21:30:53'),(12753,'2005-08-18 22:37:39',1494,470,'2005-08-27 00:21:39',2,'2006-02-15 21:30:53'),(12754,'2005-08-18 22:37:41',4154,134,'2005-08-27 20:17:41',2,'2006-02-15 21:30:53'),(12755,'2005-08-18 22:38:47',105,439,'2005-08-22 23:58:47',1,'2006-02-15 21:30:53'),(12756,'2005-08-18 22:52:13',1840,89,'2005-08-21 17:22:13',1,'2006-02-15 21:30:53'),(12757,'2005-08-18 22:57:45',1095,147,'2005-08-21 22:43:45',1,'2006-02-15 21:30:53'),(12758,'2005-08-18 22:58:34',2279,30,'2005-08-22 23:33:34',1,'2006-02-15 21:30:53'),(12759,'2006-02-14 15:16:03',4193,354,NULL,2,'2006-02-15 21:30:53'),(12760,'2005-08-18 23:03:19',4188,363,'2005-08-24 17:53:19',1,'2006-02-15 21:30:53'),(12761,'2005-08-18 23:05:22',2684,364,'2005-08-22 01:08:22',2,'2006-02-15 21:30:53'),(12762,'2005-08-18 23:06:54',3909,502,'2005-08-21 18:30:54',1,'2006-02-15 21:30:53'),(12763,'2005-08-18 23:07:01',393,472,'2005-08-21 18:45:01',1,'2006-02-15 21:30:53'),(12764,'2005-08-18 23:14:15',26,183,'2005-08-22 20:23:15',1,'2006-02-15 21:30:53'),(12765,'2005-08-18 23:21:50',2244,298,'2005-08-28 04:42:50',2,'2006-02-15 21:30:53'),(12766,'2005-08-18 23:25:20',3737,50,'2005-08-27 04:43:20',1,'2006-02-15 21:30:53'),(12767,'2005-08-18 23:25:49',3351,432,'2005-08-28 02:40:49',2,'2006-02-15 21:30:53'),(12768,'2005-08-18 23:26:11',1993,458,'2005-08-19 20:31:11',2,'2006-02-15 21:30:53'),(12769,'2005-08-18 23:26:40',926,504,'2005-08-25 03:03:40',1,'2006-02-15 21:30:53'),(12770,'2005-08-18 23:29:00',1654,575,'2005-08-26 20:57:00',2,'2006-02-15 21:30:53'),(12771,'2005-08-18 23:29:23',3076,484,'2005-08-22 17:31:23',2,'2006-02-15 21:30:53'),(12772,'2005-08-18 23:29:25',1179,397,'2005-08-23 20:32:25',1,'2006-02-15 21:30:53'),(12773,'2005-08-18 23:32:19',4390,360,'2005-08-27 04:40:19',1,'2006-02-15 21:30:53'),(12774,'2005-08-18 23:34:22',3601,21,'2005-08-28 05:00:22',2,'2006-02-15 21:30:53'),(12775,'2005-08-18 23:35:56',4374,54,'2005-08-26 18:37:56',1,'2006-02-15 21:30:53'),(12776,'2005-08-18 23:37:33',2345,55,'2005-08-23 03:07:33',1,'2006-02-15 21:30:53'),(12777,'2005-08-18 23:39:22',3467,130,'2005-08-27 20:28:22',1,'2006-02-15 21:30:53'),(12778,'2005-08-18 23:40:23',3626,290,'2005-08-19 18:14:23',2,'2006-02-15 21:30:53'),(12779,'2005-08-18 23:44:00',1814,325,'2005-08-26 05:27:00',2,'2006-02-15 21:30:53'),(12780,'2005-08-18 23:48:16',54,373,'2005-08-20 18:13:16',2,'2006-02-15 21:30:53'),(12781,'2005-08-18 23:50:24',1187,168,'2005-08-21 02:31:24',1,'2006-02-15 21:30:53'),(12782,'2005-08-18 23:56:23',1454,495,'2005-08-25 18:47:23',1,'2006-02-15 21:30:53'),(12783,'2005-08-19 00:01:14',1109,503,'2005-08-21 22:02:14',2,'2006-02-15 21:30:53'),(12784,'2005-08-19 00:02:46',447,513,'2005-08-20 04:39:46',1,'2006-02-15 21:30:53'),(12785,'2005-08-19 00:05:49',4190,145,'2005-08-21 04:39:49',2,'2006-02-15 21:30:53'),(12786,'2006-02-14 15:16:03',97,512,NULL,1,'2006-02-15 21:30:53'),(12787,'2005-08-19 00:07:58',2023,278,'2005-08-24 00:42:58',2,'2006-02-15 21:30:53'),(12788,'2005-08-19 00:15:09',644,90,'2005-08-27 21:54:09',1,'2006-02-15 21:30:53'),(12789,'2005-08-19 00:16:19',2412,557,'2005-08-25 00:18:19',2,'2006-02-15 21:30:53'),(12790,'2005-08-19 00:16:54',1281,44,'2005-08-26 02:00:54',1,'2006-02-15 21:30:53'),(12791,'2005-08-19 00:17:09',3594,573,'2005-08-22 23:46:09',1,'2006-02-15 21:30:53'),(12792,'2006-02-14 15:16:03',1435,405,NULL,2,'2006-02-15 21:30:53'),(12793,'2005-08-19 00:20:36',1195,403,'2005-08-28 02:43:36',1,'2006-02-15 21:30:53'),(12794,'2005-08-19 00:20:37',1586,336,'2005-08-26 01:48:37',1,'2006-02-15 21:30:53'),(12795,'2005-08-19 00:21:52',2745,360,'2005-08-22 22:13:52',2,'2006-02-15 21:30:53'),(12796,'2005-08-19 00:22:24',1285,368,'2005-08-19 22:53:24',2,'2006-02-15 21:30:53'),(12797,'2005-08-19 00:24:08',1595,5,'2005-08-21 22:53:08',2,'2006-02-15 21:30:53'),(12798,'2005-08-19 00:24:33',4244,534,'2005-08-21 23:01:33',2,'2006-02-15 21:30:53'),(12799,'2005-08-19 00:27:01',3885,197,'2005-08-22 03:30:01',2,'2006-02-15 21:30:53'),(12800,'2005-08-19 00:27:11',257,545,'2005-08-22 01:08:11',1,'2006-02-15 21:30:53'),(12801,'2005-08-19 00:27:19',960,202,'2005-08-26 03:10:19',1,'2006-02-15 21:30:53'),(12802,'2005-08-19 00:27:41',2461,462,'2005-08-28 03:24:41',1,'2006-02-15 21:30:53'),(12803,'2005-08-19 00:28:21',1058,390,'2005-08-23 02:02:21',1,'2006-02-15 21:30:53'),(12804,'2005-08-19 00:33:15',147,365,'2005-08-28 02:16:15',2,'2006-02-15 21:30:53'),(12805,'2005-08-19 00:36:34',2964,345,'2005-08-26 20:38:34',1,'2006-02-15 21:30:53'),(12806,'2005-08-19 00:37:26',4488,423,'2005-08-23 18:49:26',2,'2006-02-15 21:30:53'),(12807,'2005-08-19 00:38:46',2323,513,'2005-08-28 03:37:46',2,'2006-02-15 21:30:53'),(12808,'2005-08-19 00:40:41',3920,55,'2005-08-21 06:39:41',2,'2006-02-15 21:30:53'),(12809,'2005-08-19 00:42:24',2005,22,'2005-08-23 06:06:24',1,'2006-02-15 21:30:53'),(12810,'2005-08-19 00:44:10',1340,250,'2005-08-22 22:30:10',2,'2006-02-15 21:30:53'),(12811,'2005-08-19 00:51:28',641,54,'2005-08-24 01:57:28',2,'2006-02-15 21:30:53'),(12812,'2005-08-19 00:54:02',4024,450,'2005-08-22 20:35:02',2,'2006-02-15 21:30:53'),(12813,'2005-08-19 00:54:22',3285,500,'2005-08-19 21:17:22',2,'2006-02-15 21:30:53'),(12814,'2005-08-19 00:58:24',204,465,'2005-08-21 05:46:24',1,'2006-02-15 21:30:53'),(12815,'2005-08-19 00:59:42',435,588,'2005-08-25 21:43:42',2,'2006-02-15 21:30:53'),(12816,'2005-08-19 01:04:05',4051,342,'2005-08-24 01:25:05',1,'2006-02-15 21:30:53'),(12817,'2005-08-19 01:04:35',1246,113,'2005-08-25 21:14:35',1,'2006-02-15 21:30:53'),(12818,'2005-08-19 01:04:59',3069,528,'2005-08-26 21:39:59',2,'2006-02-15 21:30:53'),(12819,'2005-08-19 01:05:05',1117,542,'2005-08-22 05:50:05',1,'2006-02-15 21:30:53'),(12820,'2005-08-19 01:05:08',2936,127,'2005-08-21 05:37:08',2,'2006-02-15 21:30:53'),(12821,'2005-08-19 01:07:02',3418,41,'2005-08-23 01:22:02',2,'2006-02-15 21:30:53'),(12822,'2005-08-19 01:15:24',419,426,'2005-08-20 06:38:24',1,'2006-02-15 21:30:53'),(12823,'2005-08-19 01:15:47',426,316,'2005-08-22 05:32:47',2,'2006-02-15 21:30:53'),(12824,'2005-08-19 01:18:00',1875,247,'2005-08-22 01:12:00',2,'2006-02-15 21:30:53'),(12825,'2005-08-19 01:23:58',4495,328,'2005-08-20 00:19:58',2,'2006-02-15 21:30:53'),(12826,'2005-08-19 01:25:11',1277,439,'2005-08-27 01:22:11',1,'2006-02-15 21:30:53'),(12827,'2005-08-19 01:27:23',880,253,'2005-08-27 02:22:23',2,'2006-02-15 21:30:53'),(12828,'2005-08-19 01:37:47',4208,378,'2005-08-24 22:31:47',2,'2006-02-15 21:30:53'),(12829,'2005-08-19 01:38:18',1129,326,'2005-08-25 22:23:18',2,'2006-02-15 21:30:53'),(12830,'2005-08-19 01:40:25',4080,409,'2005-08-20 23:49:25',2,'2006-02-15 21:30:53'),(12831,'2005-08-19 01:40:43',1916,183,'2005-08-28 05:22:43',1,'2006-02-15 21:30:53'),(12832,'2005-08-19 01:41:44',2820,563,'2005-08-24 23:15:44',2,'2006-02-15 21:30:53'),(12833,'2005-08-19 01:42:28',3723,59,'2005-08-26 20:13:28',1,'2006-02-15 21:30:53'),(12834,'2005-08-19 01:47:30',757,133,'2005-08-24 20:08:30',1,'2006-02-15 21:30:53'),(12835,'2005-08-19 01:47:45',1477,124,'2005-08-26 00:58:45',2,'2006-02-15 21:30:53'),(12836,'2005-08-19 01:48:33',1380,196,'2005-08-23 04:46:33',1,'2006-02-15 21:30:53'),(12837,'2005-08-19 01:51:09',2288,495,'2005-08-22 07:14:09',2,'2006-02-15 21:30:53'),(12838,'2005-08-19 01:51:50',1207,308,'2005-08-27 23:12:50',1,'2006-02-15 21:30:53'),(12839,'2005-08-19 01:53:43',1970,360,'2005-08-28 02:27:43',2,'2006-02-15 21:30:53'),(12840,'2005-08-19 01:54:11',2098,182,'2005-08-28 01:11:11',2,'2006-02-15 21:30:53'),(12841,'2005-08-19 01:55:55',4233,257,'2005-08-24 02:56:55',1,'2006-02-15 21:30:53'),(12842,'2005-08-19 01:57:21',2540,119,'2005-08-28 01:10:21',1,'2006-02-15 21:30:53'),(12843,'2005-08-19 01:58:54',3279,128,'2005-08-20 00:20:54',2,'2006-02-15 21:30:53'),(12844,'2005-08-19 01:59:08',4146,584,'2005-08-24 22:21:08',1,'2006-02-15 21:30:53'),(12845,'2005-08-19 02:02:37',1698,106,'2005-08-22 01:08:37',1,'2006-02-15 21:30:53'),(12846,'2005-08-19 02:03:26',286,305,'2005-08-25 07:39:26',2,'2006-02-15 21:30:53'),(12847,'2005-08-19 02:04:07',384,91,'2005-08-23 20:13:07',2,'2006-02-15 21:30:53'),(12848,'2005-08-19 02:05:11',2833,539,'2005-08-24 05:27:11',2,'2006-02-15 21:30:53'),(12849,'2005-08-19 02:05:37',3489,280,'2005-08-23 07:00:37',1,'2006-02-15 21:30:53'),(12850,'2005-08-19 02:08:06',1816,440,'2005-08-20 21:06:06',2,'2006-02-15 21:30:53'),(12851,'2005-08-19 02:12:12',3311,194,'2005-08-25 23:51:12',1,'2006-02-15 21:30:53'),(12852,'2005-08-19 02:12:40',2446,260,'2005-08-19 23:42:40',1,'2006-02-15 21:30:53'),(12853,'2005-08-19 02:15:32',3753,232,'2005-08-27 21:26:32',2,'2006-02-15 21:30:53'),(12854,'2005-08-19 02:18:51',4577,362,'2005-08-24 04:16:51',2,'2006-02-15 21:30:53'),(12855,'2005-08-19 02:18:58',2900,242,'2005-08-19 20:50:58',1,'2006-02-15 21:30:53'),(12856,'2005-08-19 02:19:13',132,4,'2005-08-23 07:49:13',2,'2006-02-15 21:30:53'),(12857,'2005-08-19 02:20:13',4307,443,'2005-08-20 20:20:13',1,'2006-02-15 21:30:53'),(12858,'2005-08-19 02:22:16',3024,144,'2005-08-26 07:25:16',2,'2006-02-15 21:30:53'),(12859,'2005-08-19 02:23:23',2289,139,'2005-08-28 04:55:23',2,'2006-02-15 21:30:53'),(12860,'2005-08-19 02:24:41',778,548,'2005-08-25 07:43:41',1,'2006-02-15 21:30:53'),(12861,'2005-08-19 02:30:24',3115,287,'2005-08-22 08:23:24',1,'2006-02-15 21:30:53'),(12862,'2005-08-19 02:31:59',473,198,'2005-08-26 08:16:59',2,'2006-02-15 21:30:53'),(12863,'2005-08-19 02:35:59',780,234,'2005-08-21 21:13:59',1,'2006-02-15 21:30:53'),(12864,'2005-08-19 02:38:26',4481,465,'2005-08-22 21:42:26',2,'2006-02-15 21:30:53'),(12865,'2005-08-19 02:38:50',3437,460,'2005-08-21 02:33:50',1,'2006-02-15 21:30:53'),(12866,'2005-08-19 02:39:47',1766,229,'2005-08-27 02:14:47',1,'2006-02-15 21:30:53'),(12867,'2005-08-19 02:40:11',4499,330,'2005-08-20 04:01:11',1,'2006-02-15 21:30:53'),(12868,'2005-08-19 02:47:19',4054,551,'2005-08-20 00:30:19',2,'2006-02-15 21:30:53'),(12869,'2005-08-19 02:50:36',3939,99,'2005-08-26 21:38:36',2,'2006-02-15 21:30:53'),(12870,'2005-08-19 02:54:38',991,86,'2005-08-27 00:45:38',1,'2006-02-15 21:30:53'),(12871,'2005-08-19 02:55:36',2625,217,'2005-08-22 01:00:36',2,'2006-02-15 21:30:53'),(12872,'2005-08-19 02:57:37',1975,54,'2005-08-22 23:23:37',1,'2006-02-15 21:30:53'),(12873,'2005-08-19 03:05:41',2140,138,'2005-08-22 06:57:41',2,'2006-02-15 21:30:53'),(12874,'2005-08-19 03:07:57',848,254,'2005-08-22 22:42:57',2,'2006-02-15 21:30:53'),(12875,'2005-08-19 03:10:21',1708,483,'2005-08-26 01:00:21',2,'2006-02-15 21:30:53'),(12876,'2005-08-19 03:12:19',803,356,'2005-08-20 02:24:19',2,'2006-02-15 21:30:53'),(12877,'2005-08-19 03:16:58',1016,40,'2005-08-25 02:10:58',2,'2006-02-15 21:30:53'),(12878,'2005-08-19 03:17:08',1182,596,'2005-08-23 03:44:08',1,'2006-02-15 21:30:53'),(12879,'2005-08-19 03:22:55',3556,210,'2005-08-24 22:00:55',1,'2006-02-15 21:30:53'),(12880,'2005-08-19 03:27:17',3386,552,'2005-08-28 06:16:17',2,'2006-02-15 21:30:53'),(12881,'2005-08-19 03:28:13',1432,121,'2005-08-25 05:25:13',1,'2006-02-15 21:30:53'),(12882,'2005-08-19 03:33:46',911,153,'2005-08-21 22:49:46',1,'2006-02-15 21:30:53'),(12883,'2005-08-19 03:33:47',964,555,'2005-08-23 21:55:47',1,'2006-02-15 21:30:53'),(12884,'2005-08-19 03:34:04',2768,348,'2005-08-28 01:00:04',2,'2006-02-15 21:30:53'),(12885,'2005-08-19 03:37:25',883,185,'2005-08-20 22:10:25',1,'2006-02-15 21:30:53'),(12886,'2005-08-19 03:38:32',2157,174,'2005-08-26 02:17:32',1,'2006-02-15 21:30:53'),(12887,'2005-08-19 03:38:54',1214,150,'2005-08-27 08:45:54',1,'2006-02-15 21:30:53'),(12888,'2005-08-19 03:41:09',4398,146,'2005-08-24 07:09:09',2,'2006-02-15 21:30:53'),(12889,'2005-08-19 03:41:31',4376,515,'2005-08-27 00:46:31',2,'2006-02-15 21:30:53'),(12890,'2005-08-19 03:42:08',3831,150,'2005-08-19 23:08:08',1,'2006-02-15 21:30:53'),(12891,'2006-02-14 15:16:03',2764,388,NULL,2,'2006-02-15 21:30:53'),(12892,'2005-08-19 03:46:34',1044,121,'2005-08-21 05:11:34',2,'2006-02-15 21:30:53'),(12893,'2005-08-19 03:46:43',168,498,'2005-08-20 08:38:43',2,'2006-02-15 21:30:53'),(12894,'2005-08-19 03:49:28',4581,541,'2005-08-25 01:51:28',2,'2006-02-15 21:30:53'),(12895,'2005-08-19 03:50:48',4372,396,'2005-08-26 09:13:48',1,'2006-02-15 21:30:53'),(12896,'2005-08-19 03:52:44',148,220,'2005-08-24 22:27:44',1,'2006-02-15 21:30:53'),(12897,'2006-02-14 15:16:03',1512,178,NULL,2,'2006-02-15 21:30:53'),(12898,'2005-08-19 03:54:34',1555,586,'2005-08-23 08:14:34',2,'2006-02-15 21:30:53'),(12899,'2005-08-19 04:03:34',830,105,'2005-08-20 08:34:34',2,'2006-02-15 21:30:53'),(12900,'2005-08-19 04:03:49',849,408,'2005-08-24 22:11:49',2,'2006-02-15 21:30:53'),(12901,'2006-02-14 15:16:03',2799,180,NULL,2,'2006-02-15 21:30:53'),(12902,'2006-02-14 15:16:03',464,91,NULL,2,'2006-02-15 21:30:53'),(12903,'2005-08-19 04:09:38',2340,302,'2005-08-26 03:24:38',2,'2006-02-15 21:30:53'),(12904,'2005-08-19 04:10:50',459,257,'2005-08-27 23:24:50',1,'2006-02-15 21:30:53'),(12905,'2005-08-19 04:13:37',1043,480,'2005-08-26 23:52:37',1,'2006-02-15 21:30:53'),(12906,'2005-08-19 04:13:43',2060,401,'2005-08-20 04:24:43',1,'2006-02-15 21:30:53'),(12907,'2005-08-19 04:16:13',2844,422,'2005-08-27 02:43:13',1,'2006-02-15 21:30:53'),(12908,'2005-08-19 04:19:05',175,340,'2005-08-25 09:50:05',1,'2006-02-15 21:30:53'),(12909,'2005-08-19 04:20:25',4300,210,'2005-08-24 06:40:25',2,'2006-02-15 21:30:53'),(12910,'2005-08-19 04:23:13',3968,128,'2005-08-20 22:27:13',1,'2006-02-15 21:30:53'),(12911,'2005-08-19 04:24:10',1770,367,'2005-08-26 00:35:10',2,'2006-02-15 21:30:53'),(12912,'2005-08-19 04:24:35',1747,364,'2005-08-27 07:13:35',2,'2006-02-15 21:30:53'),(12913,'2005-08-19 04:25:39',3719,356,'2005-08-25 07:23:39',1,'2006-02-15 21:30:53'),(12914,'2005-08-19 04:25:59',4396,501,'2005-08-23 08:04:59',2,'2006-02-15 21:30:53'),(12915,'2006-02-14 15:16:03',2651,516,NULL,1,'2006-02-15 21:30:53'),(12916,'2005-08-19 04:27:05',2277,157,'2005-08-21 02:33:05',2,'2006-02-15 21:30:53'),(12917,'2005-08-19 04:27:11',107,152,'2005-08-20 03:04:11',2,'2006-02-15 21:30:53'),(12918,'2005-08-19 04:31:36',972,13,'2005-08-25 05:50:36',1,'2006-02-15 21:30:53'),(12919,'2005-08-19 04:32:15',2121,263,'2005-08-24 05:56:15',2,'2006-02-15 21:30:53'),(12920,'2005-08-19 04:32:32',2516,511,'2005-08-27 00:44:32',2,'2006-02-15 21:30:53'),(12921,'2005-08-19 04:47:48',781,234,'2005-08-25 00:07:48',2,'2006-02-15 21:30:53'),(12922,'2005-08-19 04:48:48',342,25,'2005-08-23 23:32:48',1,'2006-02-15 21:30:53'),(12923,'2005-08-19 04:50:20',1390,531,'2005-08-22 10:42:20',1,'2006-02-15 21:30:53'),(12924,'2005-08-19 04:51:47',3807,519,'2005-08-26 07:50:47',1,'2006-02-15 21:30:53'),(12925,'2005-08-19 04:59:01',3361,57,'2005-08-27 02:03:01',2,'2006-02-15 21:30:53'),(12926,'2005-08-19 05:00:16',23,336,'2005-08-26 06:12:16',2,'2006-02-15 21:30:53'),(12927,'2005-08-19 05:02:46',1171,223,'2005-08-23 01:08:46',1,'2006-02-15 21:30:53'),(12928,'2005-08-19 05:04:09',4531,353,'2005-08-24 09:09:09',2,'2006-02-15 21:30:53'),(12929,'2005-08-19 05:05:23',1531,310,'2005-08-25 04:37:23',1,'2006-02-15 21:30:53'),(12930,'2005-08-19 05:11:32',4410,414,'2005-08-22 02:20:32',2,'2006-02-15 21:30:53'),(12931,'2005-08-19 05:11:47',3070,407,'2005-08-21 00:59:47',1,'2006-02-15 21:30:53'),(12932,'2005-08-19 05:17:30',2295,416,'2005-08-21 09:24:30',1,'2006-02-15 21:30:53'),(12933,'2005-08-19 05:18:20',4103,589,'2005-08-27 00:13:20',1,'2006-02-15 21:30:53'),(12934,'2005-08-19 05:18:42',3242,591,'2005-08-24 10:42:42',1,'2006-02-15 21:30:53'),(12935,'2005-08-19 05:20:25',193,279,'2005-08-21 03:10:25',2,'2006-02-15 21:30:53'),(12936,'2005-08-19 05:25:06',654,387,'2005-08-28 08:21:06',1,'2006-02-15 21:30:53'),(12937,'2005-08-19 05:25:30',3826,348,'2005-08-22 10:40:30',2,'2006-02-15 21:30:53'),(12938,'2006-02-14 15:16:03',3987,28,NULL,1,'2006-02-15 21:30:53'),(12939,'2005-08-19 05:38:25',3375,181,'2005-08-23 23:52:25',1,'2006-02-15 21:30:53'),(12940,'2005-08-19 05:38:29',2222,340,'2005-08-20 08:15:29',1,'2006-02-15 21:30:53'),(12941,'2005-08-19 05:39:26',2951,195,'2005-08-22 09:50:26',2,'2006-02-15 21:30:53'),(12942,'2005-08-19 05:40:36',3938,103,'2005-08-27 02:04:36',1,'2006-02-15 21:30:53'),(12943,'2005-08-19 05:46:26',3930,547,'2005-08-22 03:26:26',2,'2006-02-15 21:30:53'),(12944,'2005-08-19 05:48:12',2956,148,'2005-08-28 10:10:12',1,'2006-02-15 21:30:53'),(12945,'2005-08-19 05:51:46',3638,312,'2005-08-23 11:22:46',2,'2006-02-15 21:30:53'),(12946,'2005-08-19 05:53:34',2066,444,'2005-08-20 07:30:34',1,'2006-02-15 21:30:53'),(12947,'2005-08-19 05:54:21',935,499,'2005-08-22 09:17:21',1,'2006-02-15 21:30:53'),(12948,'2005-08-19 05:55:14',4173,442,'2005-08-22 01:05:14',2,'2006-02-15 21:30:53'),(12949,'2005-08-19 05:55:52',4209,279,'2005-08-23 00:01:52',1,'2006-02-15 21:30:53'),(12950,'2005-08-19 05:55:58',1064,463,'2005-08-23 08:05:58',1,'2006-02-15 21:30:53'),(12951,'2005-08-19 05:56:44',2143,70,'2005-08-24 11:28:44',2,'2006-02-15 21:30:53'),(12952,'2005-08-19 06:00:52',2460,228,'2005-08-20 02:17:52',1,'2006-02-15 21:30:53'),(12953,'2005-08-19 06:04:07',3954,429,'2005-08-28 11:05:07',1,'2006-02-15 21:30:53'),(12954,'2005-08-19 06:04:34',3592,63,'2005-08-28 02:12:34',2,'2006-02-15 21:30:53'),(12955,'2005-08-19 06:05:58',2040,410,'2005-08-26 04:24:58',2,'2006-02-15 21:30:53'),(12956,'2005-08-19 06:06:26',3613,241,'2005-08-28 08:37:26',2,'2006-02-15 21:30:53'),(12957,'2005-08-19 06:12:44',2219,512,'2005-08-28 10:49:44',2,'2006-02-15 21:30:53'),(12958,'2005-08-19 06:19:21',4214,569,'2005-08-20 02:21:21',1,'2006-02-15 21:30:53'),(12959,'2006-02-14 15:16:03',1540,284,NULL,2,'2006-02-15 21:30:53'),(12960,'2005-08-19 06:21:52',3498,152,'2005-08-25 04:16:52',1,'2006-02-15 21:30:53'),(12961,'2005-08-19 06:22:37',4529,386,'2005-08-23 00:49:37',1,'2006-02-15 21:30:53'),(12962,'2005-08-19 06:22:48',575,171,'2005-08-27 07:47:48',1,'2006-02-15 21:30:53'),(12963,'2005-08-19 06:26:04',1521,2,'2005-08-23 11:37:04',2,'2006-02-15 21:30:53'),(12964,'2005-08-19 06:29:13',2854,142,'2005-08-22 12:23:13',2,'2006-02-15 21:30:53'),(12965,'2005-08-19 06:33:00',4308,430,'2005-08-22 02:02:00',1,'2006-02-15 21:30:53'),(12966,'2005-08-19 06:37:48',3196,69,'2005-08-26 03:59:48',2,'2006-02-15 21:30:53'),(12967,'2005-08-19 06:37:51',3404,170,'2005-08-25 06:58:51',2,'2006-02-15 21:30:53'),(12968,'2005-08-19 06:38:18',3108,166,'2005-08-20 08:29:18',1,'2006-02-15 21:30:53'),(12969,'2005-08-19 06:38:59',191,224,'2005-08-25 09:09:59',2,'2006-02-15 21:30:53'),(12970,'2006-02-14 15:16:03',3999,216,NULL,1,'2006-02-15 21:30:53'),(12971,'2005-08-19 06:42:43',3504,492,'2005-08-23 10:49:43',2,'2006-02-15 21:30:53'),(12972,'2005-08-19 06:43:28',1218,55,'2005-08-27 11:30:28',1,'2006-02-15 21:30:53'),(12973,'2005-08-19 06:48:11',128,163,'2005-08-22 07:18:11',2,'2006-02-15 21:30:53'),(12974,'2005-08-19 06:51:02',3599,218,'2005-08-25 11:48:02',2,'2006-02-15 21:30:53'),(12975,'2005-08-19 06:51:19',3300,236,'2005-08-25 04:22:19',1,'2006-02-15 21:30:53'),(12976,'2005-08-19 06:52:58',66,592,'2005-08-26 11:23:58',2,'2006-02-15 21:30:53'),(12977,'2005-08-19 06:55:33',2004,388,'2005-08-27 07:38:33',2,'2006-02-15 21:30:53'),(12978,'2005-08-19 06:57:27',3252,167,'2005-08-20 09:10:27',2,'2006-02-15 21:30:53'),(12979,'2005-08-19 07:00:35',1227,267,'2005-08-21 06:12:35',2,'2006-02-15 21:30:53'),(12980,'2005-08-19 07:03:14',1854,144,'2005-08-26 05:07:14',1,'2006-02-15 21:30:53'),(12981,'2005-08-19 07:04:00',3925,481,'2005-08-21 09:17:00',1,'2006-02-15 21:30:53'),(12982,'2005-08-19 07:06:34',1258,44,'2005-08-21 06:53:34',1,'2006-02-15 21:30:53'),(12983,'2005-08-19 07:06:51',406,148,'2005-08-28 10:35:51',2,'2006-02-15 21:30:53'),(12984,'2005-08-19 07:06:51',4211,537,'2005-08-22 04:04:51',1,'2006-02-15 21:30:53'),(12985,'2005-08-19 07:08:05',4133,83,'2005-08-24 02:25:05',1,'2006-02-15 21:30:53'),(12986,'2005-08-19 07:09:36',1145,210,'2005-08-22 05:01:36',1,'2006-02-15 21:30:53'),(12987,'2005-08-19 07:11:44',3665,134,'2005-08-20 04:17:44',1,'2006-02-15 21:30:53'),(12988,'2006-02-14 15:16:03',81,236,NULL,2,'2006-02-15 21:30:53'),(12989,'2005-08-19 07:19:04',2929,306,'2005-08-21 10:58:04',1,'2006-02-15 21:30:53'),(12990,'2005-08-19 07:20:39',1825,360,'2005-08-21 12:31:39',2,'2006-02-15 21:30:53'),(12991,'2005-08-19 07:21:24',2227,126,'2005-08-21 04:31:24',2,'2006-02-15 21:30:53'),(12992,'2005-08-19 07:23:06',3022,597,'2005-08-23 06:11:06',2,'2006-02-15 21:30:53'),(12993,'2005-08-19 07:24:03',4225,484,'2005-08-26 07:15:03',2,'2006-02-15 21:30:53'),(12994,'2005-08-19 07:26:10',3809,506,'2005-08-20 07:02:10',2,'2006-02-15 21:30:53'),(12995,'2005-08-19 07:26:30',2069,566,'2005-08-25 12:47:30',2,'2006-02-15 21:30:53'),(12996,'2005-08-19 07:31:32',4445,380,'2005-08-25 11:59:32',1,'2006-02-15 21:30:53'),(12997,'2005-08-19 07:31:46',1661,311,'2005-08-24 09:20:46',2,'2006-02-15 21:30:53'),(12998,'2005-08-19 07:32:16',2301,354,'2005-08-24 01:56:16',2,'2006-02-15 21:30:53'),(12999,'2005-08-19 07:34:53',661,24,'2005-08-26 03:57:53',1,'2006-02-15 21:30:53'),(13000,'2005-08-19 07:36:42',2341,141,'2005-08-22 08:50:42',1,'2006-02-15 21:30:53'),(13001,'2005-08-19 07:36:44',2505,254,'2005-08-22 13:06:44',1,'2006-02-15 21:30:53'),(13002,'2005-08-19 07:37:58',3892,477,'2005-08-26 11:32:58',2,'2006-02-15 21:30:53'),(13003,'2005-08-19 07:39:29',3431,451,'2005-08-23 05:48:29',2,'2006-02-15 21:30:53'),(13004,'2005-08-19 07:40:08',771,442,'2005-08-20 11:49:08',1,'2006-02-15 21:30:53'),(13005,'2005-08-19 07:45:42',3417,104,'2005-08-20 12:45:42',2,'2006-02-15 21:30:53'),(13006,'2005-08-19 07:47:16',3157,134,'2005-08-21 06:17:16',1,'2006-02-15 21:30:53'),(13007,'2005-08-19 07:47:43',4280,430,'2005-08-26 02:48:43',2,'2006-02-15 21:30:53'),(13008,'2006-02-14 15:16:03',1838,181,NULL,1,'2006-02-15 21:30:53'),(13009,'2005-08-19 07:50:35',677,376,'2005-08-21 06:04:35',1,'2006-02-15 21:30:53'),(13010,'2005-08-19 07:52:21',825,413,'2005-08-27 12:51:21',1,'2006-02-15 21:30:53'),(13011,'2005-08-19 07:53:58',1998,529,'2005-08-24 12:00:58',1,'2006-02-15 21:30:53'),(13012,'2005-08-19 07:54:59',1690,145,'2005-08-26 09:50:59',2,'2006-02-15 21:30:53'),(13013,'2005-08-19 07:55:51',841,293,'2005-08-26 05:14:51',1,'2006-02-15 21:30:53'),(13014,'2005-08-19 07:56:08',3400,344,'2005-08-21 10:20:08',2,'2006-02-15 21:30:53'),(13015,'2005-08-19 07:56:51',3461,126,'2005-08-28 07:05:51',2,'2006-02-15 21:30:53'),(13016,'2005-08-19 07:57:14',3095,175,'2005-08-23 03:29:14',1,'2006-02-15 21:30:53'),(13017,'2005-08-19 08:02:24',2160,104,'2005-08-26 07:32:24',1,'2006-02-15 21:30:53'),(13018,'2005-08-19 08:04:50',2122,168,'2005-08-26 11:46:50',1,'2006-02-15 21:30:53'),(13019,'2005-08-19 08:07:43',2827,597,'2005-08-20 12:09:43',2,'2006-02-15 21:30:53'),(13020,'2005-08-19 08:07:50',4501,92,'2005-08-28 11:42:50',1,'2006-02-15 21:30:53'),(13021,'2005-08-19 08:08:04',1242,309,'2005-08-26 12:04:04',2,'2006-02-15 21:30:53'),(13022,'2006-02-14 15:16:03',2266,336,NULL,2,'2006-02-15 21:30:53'),(13023,'2005-08-19 08:13:54',1566,69,'2005-08-27 13:18:54',1,'2006-02-15 21:30:53'),(13024,'2005-08-19 08:19:21',2917,401,'2005-08-27 05:18:21',1,'2006-02-15 21:30:53'),(13025,'2006-02-14 15:16:03',4066,269,NULL,1,'2006-02-15 21:30:53'),(13026,'2005-08-19 08:22:45',3026,79,'2005-08-21 09:31:45',1,'2006-02-15 21:30:53'),(13027,'2005-08-19 08:25:16',3756,128,'2005-08-25 13:42:16',1,'2006-02-15 21:30:53'),(13028,'2005-08-19 08:27:23',2165,371,'2005-08-24 03:46:23',1,'2006-02-15 21:30:53'),(13029,'2005-08-19 08:28:04',3283,293,'2005-08-22 12:25:04',2,'2006-02-15 21:30:53'),(13030,'2005-08-19 08:28:11',2614,240,'2005-08-24 07:20:11',1,'2006-02-15 21:30:53'),(13031,'2005-08-19 08:30:04',1525,567,'2005-08-23 09:35:04',2,'2006-02-15 21:30:53'),(13032,'2005-08-19 08:31:50',3699,82,'2005-08-23 04:00:50',2,'2006-02-15 21:30:53'),(13033,'2005-08-19 08:34:39',1682,344,'2005-08-28 10:13:39',1,'2006-02-15 21:30:53'),(13034,'2005-08-19 08:41:29',990,387,'2005-08-20 07:36:29',2,'2006-02-15 21:30:53'),(13035,'2005-08-19 08:46:45',4082,135,'2005-08-22 11:42:45',1,'2006-02-15 21:30:53'),(13036,'2005-08-19 08:48:37',1469,20,'2005-08-22 04:13:37',2,'2006-02-15 21:30:53'),(13037,'2005-08-19 08:53:57',65,275,'2005-08-28 08:56:57',2,'2006-02-15 21:30:53'),(13038,'2005-08-19 08:55:16',2226,532,'2005-08-25 12:23:16',2,'2006-02-15 21:30:53'),(13039,'2005-08-19 08:55:19',1952,370,'2005-08-20 07:39:19',2,'2006-02-15 21:30:53'),(13040,'2005-08-19 09:04:24',4113,425,'2005-08-23 12:36:24',2,'2006-02-15 21:30:53'),(13041,'2005-08-19 09:05:38',1576,462,'2005-08-27 06:34:38',1,'2006-02-15 21:30:53'),(13042,'2005-08-19 09:06:08',1047,414,'2005-08-22 13:46:08',2,'2006-02-15 21:30:53'),(13043,'2005-08-19 09:07:13',24,127,'2005-08-27 07:49:13',1,'2006-02-15 21:30:53'),(13044,'2005-08-19 09:14:31',809,142,'2005-08-20 11:16:31',1,'2006-02-15 21:30:53'),(13045,'2005-08-19 09:17:35',389,254,'2005-08-23 12:04:35',1,'2006-02-15 21:30:53'),(13046,'2005-08-19 09:21:10',965,37,'2005-08-26 13:00:10',2,'2006-02-15 21:30:53'),(13047,'2005-08-19 09:24:49',2704,394,'2005-08-24 11:06:49',2,'2006-02-15 21:30:53'),(13048,'2005-08-19 09:25:06',1029,486,'2005-08-28 11:18:06',2,'2006-02-15 21:30:53'),(13049,'2005-08-19 09:25:40',4122,53,'2005-08-27 10:19:40',2,'2006-02-15 21:30:53'),(13050,'2005-08-19 09:31:23',3682,131,'2005-08-26 06:56:23',2,'2006-02-15 21:30:53'),(13051,'2005-08-19 09:31:33',4064,90,'2005-08-28 06:15:33',1,'2006-02-15 21:30:53'),(13052,'2005-08-19 09:31:42',3036,502,'2005-08-28 15:11:42',2,'2006-02-15 21:30:53'),(13053,'2005-08-19 09:31:48',2044,140,'2005-08-28 07:51:48',2,'2006-02-15 21:30:53'),(13054,'2005-08-19 09:34:02',2983,325,'2005-08-23 05:25:02',2,'2006-02-15 21:30:53'),(13055,'2005-08-19 09:36:28',3580,485,'2005-08-24 05:53:28',2,'2006-02-15 21:30:53'),(13056,'2006-02-14 15:16:03',3751,115,NULL,2,'2006-02-15 21:30:53'),(13057,'2005-08-19 09:40:05',876,105,'2005-08-28 13:22:05',2,'2006-02-15 21:30:53'),(13058,'2005-08-19 09:40:53',2437,24,'2005-08-26 05:48:53',2,'2006-02-15 21:30:53'),(13059,'2005-08-19 09:42:01',3810,341,'2005-08-21 12:07:01',1,'2006-02-15 21:30:53'),(13060,'2005-08-19 09:43:25',507,22,'2005-08-28 15:22:25',1,'2006-02-15 21:30:53'),(13061,'2005-08-19 09:43:39',730,576,'2005-08-24 10:03:39',1,'2006-02-15 21:30:53'),(13062,'2005-08-19 09:44:17',1790,385,'2005-08-27 11:42:17',1,'2006-02-15 21:30:53'),(13063,'2005-08-19 09:45:41',1192,5,'2005-08-24 09:11:41',2,'2006-02-15 21:30:53'),(13064,'2005-08-19 09:46:53',4131,588,'2005-08-21 08:29:53',1,'2006-02-15 21:30:53'),(13065,'2005-08-19 09:48:52',1887,518,'2005-08-22 07:12:52',1,'2006-02-15 21:30:53'),(13066,'2005-08-19 09:50:39',3730,336,'2005-08-22 14:01:39',1,'2006-02-15 21:30:53'),(13067,'2005-08-19 09:51:17',3825,172,'2005-08-25 09:58:17',2,'2006-02-15 21:30:53'),(13068,'2005-08-19 09:55:16',3019,1,'2005-08-20 14:44:16',2,'2006-02-15 21:30:53'),(13069,'2005-08-19 09:55:20',368,299,'2005-08-24 04:10:20',2,'2006-02-15 21:30:53'),(13070,'2005-08-19 09:56:23',2214,235,'2005-08-24 09:08:23',2,'2006-02-15 21:30:53'),(13071,'2005-08-19 10:01:07',527,578,'2005-08-26 14:26:07',1,'2006-02-15 21:30:53'),(13072,'2005-08-19 10:03:30',2313,447,'2005-08-22 14:27:30',2,'2006-02-15 21:30:53'),(13073,'2005-08-19 10:05:38',855,506,'2005-08-26 07:37:38',2,'2006-02-15 21:30:53'),(13074,'2005-08-19 10:06:53',3266,341,'2005-08-28 09:56:53',2,'2006-02-15 21:30:53'),(13075,'2005-08-19 10:10:10',4125,224,'2005-08-21 08:44:10',2,'2006-02-15 21:30:53'),(13076,'2005-08-19 10:10:26',1226,201,'2005-08-22 05:41:26',1,'2006-02-15 21:30:53'),(13077,'2005-08-19 10:15:19',433,241,'2005-08-21 06:51:19',2,'2006-02-15 21:30:53'),(13078,'2005-08-19 10:16:43',4104,479,'2005-08-27 11:35:43',2,'2006-02-15 21:30:53'),(13079,'2006-02-14 15:16:03',733,107,NULL,1,'2006-02-15 21:30:53'),(13080,'2005-08-19 10:18:00',4222,452,'2005-08-22 06:37:00',2,'2006-02-15 21:30:53'),(13081,'2005-08-19 10:19:06',3077,170,'2005-08-20 05:49:06',1,'2006-02-15 21:30:53'),(13082,'2005-08-19 10:19:19',2117,387,'2005-08-28 05:02:19',1,'2006-02-15 21:30:53'),(13083,'2005-08-19 10:26:45',3469,455,'2005-08-23 05:31:45',2,'2006-02-15 21:30:53'),(13084,'2005-08-19 10:27:25',3792,204,'2005-08-26 07:32:25',2,'2006-02-15 21:30:53'),(13085,'2005-08-19 10:28:22',360,215,'2005-08-22 07:37:22',2,'2006-02-15 21:30:53'),(13086,'2005-08-19 10:32:28',3712,350,'2005-08-26 07:57:28',2,'2006-02-15 21:30:53'),(13087,'2005-08-19 10:33:52',2693,171,'2005-08-27 09:15:52',2,'2006-02-15 21:30:53'),(13088,'2005-08-19 10:36:11',4281,457,'2005-08-21 09:12:11',1,'2006-02-15 21:30:53'),(13089,'2005-08-19 10:38:56',1783,63,'2005-08-24 12:41:56',1,'2006-02-15 21:30:53'),(13090,'2005-08-19 10:39:54',1447,52,'2005-08-28 10:31:54',1,'2006-02-15 21:30:53'),(13091,'2005-08-19 10:40:10',1815,127,'2005-08-23 09:03:10',1,'2006-02-15 21:30:53'),(13092,'2005-08-19 10:41:09',4359,480,'2005-08-25 05:11:09',2,'2006-02-15 21:30:53'),(13093,'2005-08-19 10:46:16',1667,160,'2005-08-26 08:05:16',1,'2006-02-15 21:30:53'),(13094,'2005-08-19 10:47:58',3178,494,'2005-08-21 06:20:58',1,'2006-02-15 21:30:53'),(13095,'2005-08-19 10:48:10',520,508,'2005-08-28 06:15:10',1,'2006-02-15 21:30:53'),(13096,'2005-08-19 10:49:03',420,13,'2005-08-21 05:33:03',1,'2006-02-15 21:30:53'),(13097,'2005-08-19 10:50:43',4194,157,'2005-08-24 11:10:43',2,'2006-02-15 21:30:53'),(13098,'2005-08-19 10:51:59',3770,51,'2005-08-24 11:27:59',1,'2006-02-15 21:30:53'),(13099,'2005-08-19 10:55:19',969,436,'2005-08-27 10:54:19',1,'2006-02-15 21:30:53'),(13100,'2005-08-19 10:55:45',916,451,'2005-08-25 12:28:45',1,'2006-02-15 21:30:53'),(13101,'2005-08-19 11:01:54',1804,39,'2005-08-27 16:06:54',2,'2006-02-15 21:30:53'),(13102,'2005-08-19 11:02:03',2885,285,'2005-08-28 13:05:03',2,'2006-02-15 21:30:53'),(13103,'2005-08-19 11:05:51',1751,274,'2005-08-26 09:16:51',2,'2006-02-15 21:30:53'),(13104,'2005-08-19 11:06:06',310,591,'2005-08-21 13:50:06',2,'2006-02-15 21:30:53'),(13105,'2005-08-19 11:06:16',729,279,'2005-08-27 15:21:16',1,'2006-02-15 21:30:53'),(13106,'2006-02-14 15:16:03',3212,440,NULL,1,'2006-02-15 21:30:53'),(13107,'2005-08-19 11:13:58',3870,356,'2005-08-20 15:03:58',2,'2006-02-15 21:30:53'),(13108,'2006-02-14 15:16:03',3630,73,NULL,1,'2006-02-15 21:30:53'),(13109,'2005-08-19 11:23:20',46,259,'2005-08-25 17:05:20',1,'2006-02-15 21:30:53'),(13110,'2005-08-19 11:24:37',62,447,'2005-08-21 05:48:37',1,'2006-02-15 21:30:53'),(13111,'2005-08-19 11:25:10',580,26,'2005-08-21 05:52:10',2,'2006-02-15 21:30:53'),(13112,'2005-08-19 11:27:10',2074,259,'2005-08-22 05:32:10',1,'2006-02-15 21:30:53'),(13113,'2005-08-19 11:27:20',2393,573,'2005-08-23 12:40:20',1,'2006-02-15 21:30:53'),(13114,'2005-08-19 11:27:32',4342,550,'2005-08-28 11:21:32',2,'2006-02-15 21:30:53'),(13115,'2005-08-19 11:27:43',1961,84,'2005-08-20 10:58:43',1,'2006-02-15 21:30:53'),(13116,'2005-08-19 11:31:41',1544,150,'2005-08-27 16:05:41',1,'2006-02-15 21:30:53'),(13117,'2005-08-19 11:33:20',3430,385,'2005-08-20 11:55:20',2,'2006-02-15 21:30:53'),(13118,'2005-08-19 11:39:58',470,181,'2005-08-25 14:44:58',1,'2006-02-15 21:30:53'),(13119,'2005-08-19 11:44:59',1401,240,'2005-08-20 12:30:59',2,'2006-02-15 21:30:53'),(13120,'2005-08-19 11:47:38',2273,314,'2005-08-26 08:20:38',2,'2006-02-15 21:30:53'),(13121,'2005-08-19 11:51:39',3517,251,'2005-08-22 11:50:39',2,'2006-02-15 21:30:53'),(13122,'2005-08-19 11:53:49',3319,277,'2005-08-26 16:01:49',2,'2006-02-15 21:30:53'),(13123,'2005-08-19 11:55:13',2804,220,'2005-08-21 05:55:13',2,'2006-02-15 21:30:53'),(13124,'2005-08-19 11:55:59',2105,78,'2005-08-26 06:01:59',2,'2006-02-15 21:30:53'),(13125,'2005-08-19 11:57:49',3722,192,'2005-08-26 07:53:49',1,'2006-02-15 21:30:53'),(13126,'2005-08-19 12:00:28',1392,253,'2005-08-28 17:27:28',1,'2006-02-15 21:30:53'),(13127,'2005-08-19 12:04:03',2582,178,'2005-08-27 13:56:03',1,'2006-02-15 21:30:53'),(13128,'2005-08-19 12:04:16',485,206,'2005-08-26 16:06:16',2,'2006-02-15 21:30:53'),(13129,'2005-08-19 12:05:04',4455,274,'2005-08-26 10:24:04',1,'2006-02-15 21:30:53'),(13130,'2005-08-19 12:06:42',2006,254,'2005-08-23 12:08:42',1,'2006-02-15 21:30:53'),(13131,'2005-08-19 12:08:13',1466,480,'2005-08-27 13:43:13',2,'2006-02-15 21:30:53'),(13132,'2005-08-19 12:10:57',1748,529,'2005-08-27 12:22:57',2,'2006-02-15 21:30:53'),(13133,'2005-08-19 12:11:03',1635,523,'2005-08-28 12:36:03',2,'2006-02-15 21:30:53'),(13134,'2005-08-19 12:14:14',1354,184,'2005-08-20 11:52:14',1,'2006-02-15 21:30:53'),(13135,'2005-08-19 12:22:52',1585,361,'2005-08-21 14:04:52',2,'2006-02-15 21:30:53'),(13136,'2005-08-19 12:24:23',2532,50,'2005-08-28 08:37:23',2,'2006-02-15 21:30:53'),(13137,'2005-08-19 12:26:32',4431,20,'2005-08-22 13:26:32',1,'2006-02-15 21:30:53'),(13138,'2005-08-19 12:30:01',3138,214,'2005-08-21 06:35:01',2,'2006-02-15 21:30:53'),(13139,'2005-08-19 12:32:10',2099,554,'2005-08-24 12:12:10',1,'2006-02-15 21:30:53'),(13140,'2005-08-19 12:35:56',4210,323,'2005-08-27 18:24:56',2,'2006-02-15 21:30:53'),(13141,'2005-08-19 12:41:41',4545,376,'2005-08-21 08:17:41',2,'2006-02-15 21:30:53'),(13142,'2005-08-19 12:42:28',1404,269,'2005-08-26 14:52:28',1,'2006-02-15 21:30:53'),(13143,'2005-08-19 12:44:38',1655,371,'2005-08-25 10:59:38',2,'2006-02-15 21:30:53'),(13144,'2005-08-19 12:45:55',3766,456,'2005-08-27 10:37:55',2,'2006-02-15 21:30:53'),(13145,'2005-08-19 12:53:53',1383,72,'2005-08-23 08:06:53',1,'2006-02-15 21:30:53'),(13146,'2005-08-19 12:54:42',1463,116,'2005-08-26 07:31:42',1,'2006-02-15 21:30:53'),(13147,'2005-08-19 12:55:09',3490,37,'2005-08-22 18:10:09',1,'2006-02-15 21:30:53'),(13148,'2005-08-19 12:55:30',1762,137,'2005-08-21 11:01:30',1,'2006-02-15 21:30:53'),(13149,'2005-08-19 13:07:12',1436,40,'2005-08-28 18:12:12',1,'2006-02-15 21:30:53'),(13150,'2005-08-19 13:08:19',1514,457,'2005-08-25 18:00:19',1,'2006-02-15 21:30:53'),(13151,'2005-08-19 13:08:23',3045,16,'2005-08-20 12:38:23',2,'2006-02-15 21:30:53'),(13152,'2005-08-19 13:09:32',3571,597,'2005-08-25 14:47:32',1,'2006-02-15 21:30:53'),(13153,'2005-08-19 13:09:47',3896,431,'2005-08-23 17:35:47',2,'2006-02-15 21:30:53'),(13154,'2005-08-19 13:09:54',2465,255,'2005-08-26 16:40:54',1,'2006-02-15 21:30:53'),(13155,'2005-08-19 13:10:23',290,442,'2005-08-25 19:07:23',2,'2006-02-15 21:30:53'),(13156,'2005-08-19 13:10:42',770,512,'2005-08-25 15:08:42',2,'2006-02-15 21:30:53'),(13157,'2005-08-19 13:12:28',4391,592,'2005-08-20 10:41:28',1,'2006-02-15 21:30:53'),(13158,'2005-08-19 13:18:10',944,327,'2005-08-25 09:27:10',1,'2006-02-15 21:30:53'),(13159,'2005-08-19 13:19:59',2300,497,'2005-08-21 09:22:59',2,'2006-02-15 21:30:53'),(13160,'2005-08-19 13:21:04',410,484,'2005-08-22 18:49:04',1,'2006-02-15 21:30:53'),(13161,'2006-02-14 15:16:03',986,175,NULL,1,'2006-02-15 21:30:53'),(13162,'2005-08-19 13:28:26',1845,478,'2005-08-24 17:37:26',1,'2006-02-15 21:30:53'),(13163,'2005-08-19 13:29:46',3068,57,'2005-08-22 07:48:46',2,'2006-02-15 21:30:53'),(13164,'2005-08-19 13:30:55',1104,145,'2005-08-26 10:12:55',2,'2006-02-15 21:30:53'),(13165,'2005-08-19 13:34:10',138,289,'2005-08-21 18:33:10',2,'2006-02-15 21:30:53'),(13166,'2005-08-19 13:36:28',4386,504,'2005-08-22 07:57:28',1,'2006-02-15 21:30:53'),(13167,'2005-08-19 13:36:41',557,120,'2005-08-23 15:29:41',2,'2006-02-15 21:30:53'),(13168,'2005-08-19 13:37:28',2210,186,'2005-08-27 17:54:28',2,'2006-02-15 21:30:53'),(13169,'2005-08-19 13:43:35',1709,141,'2005-08-26 09:31:35',1,'2006-02-15 21:30:53'),(13170,'2005-08-19 13:45:48',1072,176,'2005-08-27 11:00:48',2,'2006-02-15 21:30:53'),(13171,'2005-08-19 13:48:54',1765,122,'2005-08-27 18:57:54',1,'2006-02-15 21:30:53'),(13172,'2005-08-19 13:49:07',1301,298,'2005-08-20 19:39:07',2,'2006-02-15 21:30:53'),(13173,'2005-08-19 13:50:36',1304,29,'2005-08-26 12:34:36',2,'2006-02-15 21:30:53'),(13174,'2005-08-19 13:52:50',2303,482,'2005-08-22 14:43:50',2,'2006-02-15 21:30:53'),(13175,'2005-08-19 13:54:53',3187,239,'2005-08-20 16:25:53',2,'2006-02-15 21:30:53'),(13176,'2005-08-19 13:56:54',2269,1,'2005-08-23 08:50:54',2,'2006-02-15 21:30:53'),(13177,'2005-08-19 13:56:58',3172,126,'2005-08-23 13:13:58',2,'2006-02-15 21:30:53'),(13178,'2006-02-14 15:16:03',693,394,NULL,1,'2006-02-15 21:30:53'),(13179,'2005-08-19 13:59:53',1624,104,'2005-08-25 12:10:53',1,'2006-02-15 21:30:53'),(13180,'2005-08-19 14:00:38',3443,322,'2005-08-20 09:56:38',1,'2006-02-15 21:30:53'),(13181,'2005-08-19 14:00:56',1256,128,'2005-08-24 13:52:56',2,'2006-02-15 21:30:53'),(13182,'2006-02-14 15:16:03',364,496,NULL,2,'2006-02-15 21:30:53'),(13183,'2005-08-19 14:09:26',2404,301,'2005-08-28 08:44:26',2,'2006-02-15 21:30:53'),(13184,'2005-08-19 14:16:18',4395,393,'2005-08-20 08:44:18',1,'2006-02-15 21:30:53'),(13185,'2005-08-19 14:22:30',241,174,'2005-08-20 10:13:30',2,'2006-02-15 21:30:53'),(13186,'2005-08-19 14:23:19',2802,176,'2005-08-28 11:26:19',1,'2006-02-15 21:30:53'),(13187,'2005-08-19 14:24:48',1944,543,'2005-08-20 19:37:48',1,'2006-02-15 21:30:53'),(13188,'2005-08-19 14:27:03',583,472,'2005-08-28 09:15:03',2,'2006-02-15 21:30:53'),(13189,'2005-08-19 14:27:16',3444,368,'2005-08-28 10:34:16',1,'2006-02-15 21:30:53'),(13190,'2005-08-19 14:27:59',4316,290,'2005-08-26 13:45:59',1,'2006-02-15 21:30:53'),(13191,'2005-08-19 14:28:48',2753,371,'2005-08-23 12:53:48',2,'2006-02-15 21:30:53'),(13192,'2005-08-19 14:30:06',966,532,'2005-08-27 15:20:06',1,'2006-02-15 21:30:53'),(13193,'2005-08-19 14:33:45',523,118,'2005-08-28 08:46:45',2,'2006-02-15 21:30:53'),(13194,'2005-08-19 14:34:12',2473,58,'2005-08-26 10:18:12',2,'2006-02-15 21:30:53'),(13195,'2005-08-19 14:39:14',2537,565,'2005-08-24 10:30:14',2,'2006-02-15 21:30:53'),(13196,'2005-08-19 14:40:32',458,202,'2005-08-26 18:15:32',2,'2006-02-15 21:30:53'),(13197,'2005-08-19 14:44:03',3190,358,'2005-08-22 10:11:03',1,'2006-02-15 21:30:53'),(13198,'2005-08-19 14:47:18',4273,169,'2005-08-21 18:09:18',2,'2006-02-15 21:30:53'),(13199,'2005-08-19 14:53:22',4291,339,'2005-08-27 19:03:22',2,'2006-02-15 21:30:53'),(13200,'2005-08-19 14:55:58',2746,577,'2005-08-27 11:35:58',2,'2006-02-15 21:30:53'),(13201,'2005-08-19 14:56:05',111,508,'2005-08-25 14:37:05',1,'2006-02-15 21:30:53'),(13202,'2005-08-19 14:58:30',3546,381,'2005-08-27 17:10:30',1,'2006-02-15 21:30:53'),(13203,'2005-08-19 15:00:58',804,257,'2005-08-27 15:38:58',2,'2006-02-15 21:30:53'),(13204,'2005-08-19 15:02:48',4524,152,'2005-08-24 18:07:48',1,'2006-02-15 21:30:53'),(13205,'2005-08-19 15:05:26',2616,495,'2005-08-25 10:41:26',2,'2006-02-15 21:30:53'),(13206,'2005-08-19 15:05:34',2477,504,'2005-08-21 20:37:34',2,'2006-02-15 21:30:53'),(13207,'2005-08-19 15:14:38',674,58,'2005-08-27 16:09:38',1,'2006-02-15 21:30:53'),(13208,'2005-08-19 15:18:55',609,435,'2005-08-24 11:59:55',1,'2006-02-15 21:30:53'),(13209,'2006-02-14 15:16:03',1574,5,NULL,2,'2006-02-15 21:30:53'),(13210,'2005-08-19 15:23:38',2789,487,'2005-08-21 11:57:38',1,'2006-02-15 21:30:53'),(13211,'2005-08-19 15:23:41',1968,289,'2005-08-22 16:58:41',1,'2006-02-15 21:30:53'),(13212,'2005-08-19 15:24:07',3691,158,'2005-08-24 21:03:07',1,'2006-02-15 21:30:53'),(13213,'2005-08-19 15:25:48',1546,13,'2005-08-22 09:32:48',1,'2006-02-15 21:30:53'),(13214,'2005-08-19 15:31:06',2675,157,'2005-08-20 19:58:06',2,'2006-02-15 21:30:53'),(13215,'2005-08-19 15:35:38',3740,460,'2005-08-27 12:16:38',1,'2006-02-15 21:30:53'),(13216,'2005-08-19 15:36:05',4335,422,'2005-08-25 19:03:05',2,'2006-02-15 21:30:53'),(13217,'2005-08-19 15:38:39',616,565,'2005-08-21 14:33:39',1,'2006-02-15 21:30:53'),(13218,'2005-08-19 15:39:39',4148,257,'2005-08-22 17:28:39',1,'2006-02-15 21:30:53'),(13219,'2005-08-19 15:40:28',2075,288,'2005-08-22 21:20:28',2,'2006-02-15 21:30:53'),(13220,'2005-08-19 15:42:32',1017,448,'2005-08-25 13:37:32',1,'2006-02-15 21:30:53'),(13221,'2005-08-19 15:45:47',120,468,'2005-08-26 21:10:47',1,'2006-02-15 21:30:53'),(13222,'2005-08-19 15:47:58',1656,91,'2005-08-26 12:43:58',1,'2006-02-15 21:30:53'),(13223,'2005-08-19 15:52:04',332,461,'2005-08-22 16:27:04',1,'2006-02-15 21:30:53'),(13224,'2005-08-19 15:52:13',3086,526,'2005-08-28 20:53:13',2,'2006-02-15 21:30:53'),(13225,'2005-08-19 15:54:33',1420,562,'2005-08-25 16:40:33',1,'2006-02-15 21:30:53'),(13226,'2005-08-19 16:05:36',2850,46,'2005-08-21 10:07:36',2,'2006-02-15 21:30:53'),(13227,'2005-08-19 16:05:38',2759,288,'2005-08-20 21:39:38',1,'2006-02-15 21:30:53'),(13228,'2005-08-19 16:08:16',2497,571,'2005-08-20 18:55:16',1,'2006-02-15 21:30:53'),(13229,'2005-08-19 16:08:33',634,283,'2005-08-22 19:54:33',2,'2006-02-15 21:30:53'),(13230,'2005-08-19 16:12:07',3645,151,'2005-08-21 12:19:07',1,'2006-02-15 21:30:53'),(13231,'2005-08-19 16:12:49',2126,280,'2005-08-27 17:14:49',2,'2006-02-15 21:30:53'),(13232,'2005-08-19 16:13:32',2370,206,'2005-08-28 14:42:32',2,'2006-02-15 21:30:53'),(13233,'2005-08-19 16:14:41',1057,279,'2005-08-24 21:13:41',1,'2006-02-15 21:30:53'),(13234,'2005-08-19 16:17:15',976,559,'2005-08-27 12:36:15',1,'2006-02-15 21:30:53'),(13235,'2005-08-19 16:17:53',3902,367,'2005-08-27 14:57:53',1,'2006-02-15 21:30:53'),(13236,'2005-08-19 16:18:24',4574,267,'2005-08-27 17:48:24',2,'2006-02-15 21:30:53'),(13237,'2005-08-19 16:18:36',1272,169,'2005-08-25 15:22:36',2,'2006-02-15 21:30:53'),(13238,'2005-08-19 16:20:56',985,348,'2005-08-23 15:51:56',2,'2006-02-15 21:30:53'),(13239,'2005-08-19 16:22:13',3296,541,'2005-08-23 19:26:13',1,'2006-02-15 21:30:53'),(13240,'2005-08-19 16:22:14',1411,179,'2005-08-20 13:24:14',1,'2006-02-15 21:30:53'),(13241,'2005-08-19 16:25:00',3106,33,'2005-08-26 12:27:00',2,'2006-02-15 21:30:53'),(13242,'2005-08-19 16:28:47',230,414,'2005-08-24 22:13:47',2,'2006-02-15 21:30:53'),(13243,'2005-08-19 16:33:16',355,251,'2005-08-25 13:19:16',2,'2006-02-15 21:30:53'),(13244,'2005-08-19 16:43:04',3246,298,'2005-08-22 15:21:04',2,'2006-02-15 21:30:53'),(13245,'2005-08-19 16:43:41',1001,261,'2005-08-20 21:17:41',1,'2006-02-15 21:30:53'),(13246,'2006-02-14 15:16:03',1849,411,NULL,2,'2006-02-15 21:30:53'),(13247,'2005-08-19 16:45:59',1271,24,'2005-08-25 15:25:59',1,'2006-02-15 21:30:53'),(13248,'2005-08-19 16:47:41',2864,559,'2005-08-28 18:11:41',2,'2006-02-15 21:30:53'),(13249,'2005-08-19 16:47:41',3084,377,'2005-08-20 13:30:41',1,'2006-02-15 21:30:53'),(13250,'2005-08-19 16:47:55',2524,448,'2005-08-26 16:54:55',2,'2006-02-15 21:30:53'),(13251,'2005-08-19 16:48:37',4216,111,'2005-08-20 16:33:37',1,'2006-02-15 21:30:53'),(13252,'2005-08-19 16:50:50',775,451,'2005-08-22 22:09:50',2,'2006-02-15 21:30:53'),(13253,'2005-08-19 16:53:56',472,399,'2005-08-20 11:38:56',2,'2006-02-15 21:30:53'),(13254,'2005-08-19 16:54:01',3412,532,'2005-08-27 19:50:01',2,'2006-02-15 21:30:53'),(13255,'2005-08-19 16:54:12',1101,150,'2005-08-28 17:00:12',1,'2006-02-15 21:30:53'),(13256,'2005-08-19 16:54:12',2719,289,'2005-08-28 16:54:12',1,'2006-02-15 21:30:53'),(13257,'2005-08-19 17:01:20',164,300,'2005-08-24 17:26:20',1,'2006-02-15 21:30:53'),(13258,'2005-08-19 17:05:37',2246,349,'2005-08-24 17:36:37',2,'2006-02-15 21:30:53'),(13259,'2005-08-19 17:08:53',2518,458,'2005-08-23 14:14:53',1,'2006-02-15 21:30:53'),(13260,'2005-08-19 17:09:22',578,251,'2005-08-24 21:31:22',2,'2006-02-15 21:30:53'),(13261,'2006-02-14 15:16:03',3538,417,NULL,1,'2006-02-15 21:30:53'),(13262,'2005-08-19 17:20:15',4483,184,'2005-08-26 18:28:15',2,'2006-02-15 21:30:53'),(13263,'2005-08-19 17:26:55',214,206,'2005-08-28 20:07:55',2,'2006-02-15 21:30:53'),(13264,'2005-08-19 17:27:10',1881,109,'2005-08-27 16:00:10',1,'2006-02-15 21:30:53'),(13265,'2005-08-19 17:29:00',3933,314,'2005-08-20 12:59:00',2,'2006-02-15 21:30:53'),(13266,'2005-08-19 17:31:20',1326,571,'2005-08-21 11:41:20',2,'2006-02-15 21:30:53'),(13267,'2005-08-19 17:31:36',550,335,'2005-08-21 13:47:36',1,'2006-02-15 21:30:53'),(13268,'2005-08-19 17:33:50',1166,255,'2005-08-25 17:15:50',2,'2006-02-15 21:30:53'),(13269,'2005-08-19 17:34:00',2382,461,'2005-08-20 15:17:00',2,'2006-02-15 21:30:53'),(13270,'2005-08-19 17:41:16',405,159,'2005-08-23 20:22:16',2,'2006-02-15 21:30:53'),(13271,'2005-08-19 17:42:06',3872,242,'2005-08-27 18:39:06',2,'2006-02-15 21:30:53'),(13272,'2005-08-19 17:49:13',2531,145,'2005-08-23 15:49:13',2,'2006-02-15 21:30:53'),(13273,'2005-08-19 17:49:13',4181,433,'2005-08-21 14:15:13',1,'2006-02-15 21:30:53'),(13274,'2005-08-19 17:50:03',704,272,'2005-08-20 14:39:03',2,'2006-02-15 21:30:53'),(13275,'2005-08-19 17:53:38',710,377,'2005-08-23 16:29:38',2,'2006-02-15 21:30:53'),(13276,'2005-08-19 17:53:42',625,516,'2005-08-28 20:49:42',2,'2006-02-15 21:30:53'),(13277,'2005-08-19 17:57:35',3820,316,'2005-08-25 15:45:35',2,'2006-02-15 21:30:53'),(13278,'2005-08-19 17:57:53',2691,282,'2005-08-22 23:16:53',1,'2006-02-15 21:30:53'),(13279,'2005-08-19 18:02:18',2472,343,'2005-08-24 22:15:18',2,'2006-02-15 21:30:53'),(13280,'2005-08-19 18:02:51',218,368,'2005-08-21 23:17:51',2,'2006-02-15 21:30:53'),(13281,'2005-08-19 18:07:47',113,220,'2005-08-20 21:51:47',2,'2006-02-15 21:30:53'),(13282,'2005-08-19 18:08:18',4373,59,'2005-08-24 14:08:18',1,'2006-02-15 21:30:53'),(13283,'2005-08-19 18:10:19',2602,180,'2005-08-23 16:09:19',2,'2006-02-15 21:30:53'),(13284,'2005-08-19 18:12:31',2128,338,'2005-08-25 21:26:31',2,'2006-02-15 21:30:53'),(13285,'2005-08-19 18:18:44',2139,182,'2005-08-20 12:33:44',1,'2006-02-15 21:30:53'),(13286,'2005-08-19 18:28:07',2685,245,'2005-08-22 17:23:07',2,'2006-02-15 21:30:53'),(13287,'2005-08-19 18:28:24',2716,569,'2005-08-26 20:13:24',2,'2006-02-15 21:30:53'),(13288,'2005-08-19 18:30:10',3558,162,'2005-08-20 19:20:10',2,'2006-02-15 21:30:53'),(13289,'2005-08-19 18:31:30',3527,497,'2005-08-20 13:43:30',1,'2006-02-15 21:30:53'),(13290,'2005-08-19 18:31:50',4174,23,'2005-08-25 15:49:50',2,'2006-02-15 21:30:53'),(13291,'2005-08-19 18:32:11',1631,243,'2005-08-20 18:22:11',2,'2006-02-15 21:30:53'),(13292,'2005-08-19 18:35:32',1336,171,'2005-08-22 00:27:32',1,'2006-02-15 21:30:53'),(13293,'2005-08-19 18:35:52',380,399,'2005-08-23 17:18:52',2,'2006-02-15 21:30:53'),(13294,'2005-08-19 18:36:35',156,534,'2005-08-20 13:57:35',1,'2006-02-15 21:30:53'),(13295,'2006-02-14 15:16:03',2408,229,NULL,1,'2006-02-15 21:30:53'),(13296,'2005-08-19 18:43:53',1728,300,'2005-08-21 23:30:53',2,'2006-02-15 21:30:53'),(13297,'2005-08-19 18:45:49',3818,359,'2005-08-22 14:58:49',2,'2006-02-15 21:30:53'),(13298,'2006-02-14 15:16:03',2133,361,NULL,2,'2006-02-15 21:30:53'),(13299,'2005-08-19 18:46:33',4385,373,'2005-08-22 20:45:33',1,'2006-02-15 21:30:53'),(13300,'2005-08-19 18:46:56',842,531,'2005-08-28 20:23:56',2,'2006-02-15 21:30:53'),(13301,'2005-08-19 18:53:15',2261,494,'2005-08-26 21:37:15',1,'2006-02-15 21:30:53'),(13302,'2005-08-19 18:54:26',4041,51,'2005-08-21 23:01:26',1,'2006-02-15 21:30:53'),(13303,'2005-08-19 18:55:21',34,184,'2005-08-23 18:49:21',2,'2006-02-15 21:30:53'),(13304,'2005-08-19 18:56:32',2979,405,'2005-08-23 20:04:32',2,'2006-02-15 21:30:53'),(13305,'2005-08-19 18:57:05',2386,337,'2005-08-28 22:28:05',1,'2006-02-15 21:30:53'),(13306,'2005-08-19 18:57:29',2742,229,'2005-08-20 20:09:29',2,'2006-02-15 21:30:53'),(13307,'2005-08-19 18:58:44',2242,547,'2005-08-22 00:15:44',1,'2006-02-15 21:30:53'),(13308,'2005-08-19 18:59:42',3189,414,'2005-08-28 13:21:42',2,'2006-02-15 21:30:53'),(13309,'2005-08-19 19:04:00',2108,91,'2005-08-28 23:08:00',2,'2006-02-15 21:30:53'),(13310,'2005-08-19 19:05:16',2563,311,'2005-08-23 22:47:16',1,'2006-02-15 21:30:53'),(13311,'2005-08-19 19:07:09',3890,520,'2005-08-20 23:07:09',1,'2006-02-15 21:30:53'),(13312,'2005-08-19 19:09:14',2891,418,'2005-08-23 00:50:14',2,'2006-02-15 21:30:53'),(13313,'2005-08-19 19:11:41',3709,580,'2005-08-21 23:53:41',2,'2006-02-15 21:30:53'),(13314,'2005-08-19 19:12:43',2899,347,'2005-08-27 00:20:43',2,'2006-02-15 21:30:53'),(13315,'2005-08-19 19:16:18',3151,54,'2005-08-21 20:58:18',1,'2006-02-15 21:30:53'),(13316,'2005-08-19 19:23:30',4450,10,'2005-08-22 23:37:30',1,'2006-02-15 21:30:53'),(13317,'2005-08-19 19:25:42',3349,20,'2005-08-20 20:57:42',2,'2006-02-15 21:30:53'),(13318,'2005-08-19 19:33:57',1389,413,'2005-08-21 17:52:57',2,'2006-02-15 21:30:53'),(13319,'2005-08-19 19:35:13',2496,438,'2005-08-27 17:59:13',1,'2006-02-15 21:30:53'),(13320,'2005-08-19 19:35:33',4522,172,'2005-08-24 20:09:33',2,'2006-02-15 21:30:53'),(13321,'2005-08-19 19:40:37',4183,280,'2005-08-21 19:09:37',2,'2006-02-15 21:30:53'),(13322,'2005-08-19 19:43:08',2149,559,'2005-08-24 16:30:08',2,'2006-02-15 21:30:53'),(13323,'2005-08-19 19:48:07',1055,133,'2005-08-23 15:28:07',1,'2006-02-15 21:30:53'),(13324,'2005-08-19 19:51:00',4349,564,'2005-08-20 20:26:00',1,'2006-02-15 21:30:53'),(13325,'2005-08-19 19:52:02',2388,334,'2005-08-22 21:14:02',1,'2006-02-15 21:30:53'),(13326,'2005-08-19 19:52:52',429,576,'2005-08-20 18:56:52',1,'2006-02-15 21:30:53'),(13327,'2005-08-19 19:55:45',1808,72,'2005-08-22 15:05:45',2,'2006-02-15 21:30:53'),(13328,'2005-08-19 19:56:01',605,462,'2005-08-20 22:16:01',2,'2006-02-15 21:30:53'),(13329,'2005-08-19 19:56:55',3136,373,'2005-08-25 01:19:55',2,'2006-02-15 21:30:53'),(13330,'2005-08-19 19:59:21',4276,297,'2005-08-20 15:34:21',2,'2006-02-15 21:30:53'),(13331,'2005-08-19 20:00:25',3867,23,'2005-08-21 17:03:25',1,'2006-02-15 21:30:53'),(13332,'2005-08-19 20:00:51',3144,503,'2005-08-25 14:30:51',1,'2006-02-15 21:30:53'),(13333,'2006-02-14 15:16:03',1092,64,NULL,2,'2006-02-15 21:30:53'),(13334,'2005-08-19 20:02:33',461,379,'2005-08-22 00:45:33',1,'2006-02-15 21:30:53'),(13335,'2005-08-19 20:03:18',1861,74,'2005-08-24 20:09:18',2,'2006-02-15 21:30:53'),(13336,'2005-08-19 20:03:22',1011,289,'2005-08-24 23:42:22',1,'2006-02-15 21:30:53'),(13337,'2005-08-19 20:06:57',3584,374,'2005-08-20 16:31:57',1,'2006-02-15 21:30:53'),(13338,'2005-08-19 20:09:59',3739,86,'2005-08-23 22:59:59',2,'2006-02-15 21:30:53'),(13339,'2005-08-19 20:18:36',1428,15,'2005-08-28 21:34:36',1,'2006-02-15 21:30:53'),(13340,'2005-08-19 20:18:39',4358,45,'2005-08-28 21:06:39',2,'2006-02-15 21:30:53'),(13341,'2005-08-19 20:18:53',1749,460,'2005-08-27 14:36:53',1,'2006-02-15 21:30:53'),(13342,'2005-08-19 20:21:36',3476,172,'2005-08-21 16:26:36',1,'2006-02-15 21:30:53'),(13343,'2005-08-19 20:22:08',1032,591,'2005-08-27 17:21:08',1,'2006-02-15 21:30:53'),(13344,'2005-08-19 20:22:44',4392,514,'2005-08-25 18:39:44',1,'2006-02-15 21:30:53'),(13345,'2005-08-19 20:25:24',47,55,'2005-08-27 20:38:24',1,'2006-02-15 21:30:53'),(13346,'2005-08-19 20:28:21',4541,131,'2005-08-28 00:28:21',2,'2006-02-15 21:30:53'),(13347,'2005-08-19 20:28:48',4038,562,'2005-08-28 19:33:48',2,'2006-02-15 21:30:53'),(13348,'2005-08-19 20:31:48',275,456,'2005-08-21 21:01:48',1,'2006-02-15 21:30:53'),(13349,'2005-08-19 20:43:16',4262,234,'2005-08-20 16:21:16',1,'2006-02-15 21:30:53'),(13350,'2005-08-19 20:44:00',3523,214,'2005-08-27 01:23:00',2,'2006-02-15 21:30:53'),(13351,'2006-02-14 15:16:03',4130,42,NULL,2,'2006-02-15 21:30:53'),(13352,'2005-08-19 20:51:40',2689,80,'2005-08-24 01:22:40',1,'2006-02-15 21:30:53'),(13353,'2005-08-19 20:53:43',2790,131,'2005-08-25 01:25:43',1,'2006-02-15 21:30:53'),(13354,'2005-08-19 20:55:23',1356,213,'2005-08-27 20:09:23',2,'2006-02-15 21:30:53'),(13355,'2005-08-19 20:59:19',585,396,'2005-08-23 21:44:19',1,'2006-02-15 21:30:53'),(13356,'2005-08-19 21:02:21',2713,324,'2005-08-24 00:31:21',1,'2006-02-15 21:30:53'),(13357,'2005-08-19 21:02:59',3295,393,'2005-08-25 23:46:59',2,'2006-02-15 21:30:53'),(13358,'2005-08-19 21:04:20',1510,439,'2005-08-24 20:49:20',2,'2006-02-15 21:30:53'),(13359,'2005-08-19 21:04:49',4175,434,'2005-08-27 01:46:49',1,'2006-02-15 21:30:53'),(13360,'2005-08-19 21:05:11',3396,327,'2005-08-24 16:05:11',2,'2006-02-15 21:30:53'),(13361,'2005-08-19 21:07:22',4289,107,'2005-08-21 21:26:22',2,'2006-02-15 21:30:53'),(13362,'2005-08-19 21:07:54',869,565,'2005-08-20 17:29:54',2,'2006-02-15 21:30:53'),(13363,'2005-08-19 21:07:59',588,288,'2005-08-21 17:08:59',1,'2006-02-15 21:30:53'),(13364,'2005-08-19 21:09:30',2773,236,'2005-08-25 18:37:30',1,'2006-02-15 21:30:53'),(13365,'2005-08-19 21:12:37',4136,307,'2005-08-25 19:56:37',2,'2006-02-15 21:30:53'),(13366,'2005-08-19 21:14:45',602,259,'2005-08-21 03:06:45',1,'2006-02-15 21:30:53'),(13367,'2005-08-19 21:19:27',4569,290,'2005-08-24 15:22:27',2,'2006-02-15 21:30:53'),(13368,'2005-08-19 21:19:35',1073,342,'2005-08-21 16:12:35',2,'2006-02-15 21:30:53'),(13369,'2005-08-19 21:19:47',2728,116,'2005-08-24 23:25:47',1,'2006-02-15 21:30:53'),(13370,'2005-08-19 21:20:11',239,101,'2005-08-25 22:51:11',1,'2006-02-15 21:30:53'),(13371,'2005-08-19 21:21:47',3401,34,'2005-08-26 16:17:47',2,'2006-02-15 21:30:53'),(13372,'2005-08-19 21:23:19',3366,150,'2005-08-24 22:12:19',1,'2006-02-15 21:30:53'),(13373,'2005-08-19 21:23:31',4045,7,'2005-08-25 22:38:31',1,'2006-02-15 21:30:53'),(13374,'2006-02-14 15:16:03',2721,227,NULL,1,'2006-02-15 21:30:53'),(13375,'2005-08-19 21:31:31',949,120,'2005-08-29 00:17:31',1,'2006-02-15 21:30:53'),(13376,'2005-08-19 21:31:45',898,40,'2005-08-22 01:14:45',2,'2006-02-15 21:30:53'),(13377,'2005-08-19 21:32:23',1316,572,'2005-08-25 22:24:23',1,'2006-02-15 21:30:53'),(13378,'2005-08-19 21:33:35',2708,368,'2005-08-20 22:47:35',1,'2006-02-15 21:30:53'),(13379,'2005-08-19 21:33:39',1623,227,'2005-08-22 21:00:39',1,'2006-02-15 21:30:53'),(13380,'2005-08-19 21:36:58',4250,451,'2005-08-22 23:55:58',1,'2006-02-15 21:30:53'),(13381,'2005-08-19 21:37:57',2823,21,'2005-08-21 18:07:57',2,'2006-02-15 21:30:53'),(13382,'2005-08-19 21:38:41',3720,436,'2005-08-28 15:49:41',1,'2006-02-15 21:30:53'),(13383,'2005-08-19 21:38:44',3193,434,'2005-08-28 23:22:44',2,'2006-02-15 21:30:53'),(13384,'2005-08-19 21:38:51',1462,440,'2005-08-23 17:55:51',1,'2006-02-15 21:30:53'),(13385,'2005-08-19 21:39:35',4323,252,'2005-08-22 22:38:35',2,'2006-02-15 21:30:53'),(13386,'2005-08-19 21:43:58',4476,324,'2005-08-24 20:29:58',2,'2006-02-15 21:30:53'),(13387,'2005-08-19 21:46:10',123,504,'2005-08-24 01:16:10',1,'2006-02-15 21:30:53'),(13388,'2005-08-19 21:46:49',942,317,'2005-08-27 16:18:49',1,'2006-02-15 21:30:53'),(13389,'2005-08-19 21:52:51',3352,257,'2005-08-25 02:38:51',1,'2006-02-15 21:30:53'),(13390,'2006-02-14 15:16:03',2855,135,NULL,1,'2006-02-15 21:30:53'),(13391,'2005-08-19 22:01:42',4220,16,'2005-08-24 22:20:42',2,'2006-02-15 21:30:53'),(13392,'2005-08-19 22:03:22',692,409,'2005-08-28 19:27:22',1,'2006-02-15 21:30:53'),(13393,'2005-08-19 22:03:46',958,15,'2005-08-28 19:19:46',2,'2006-02-15 21:30:53'),(13394,'2005-08-19 22:05:19',2597,45,'2005-08-21 23:53:19',1,'2006-02-15 21:30:53'),(13395,'2005-08-19 22:05:40',53,80,'2005-08-22 01:31:40',2,'2006-02-15 21:30:53'),(13396,'2005-08-19 22:06:09',4169,517,'2005-08-23 23:26:09',2,'2006-02-15 21:30:53'),(13397,'2005-08-19 22:06:35',3863,379,'2005-08-29 01:11:35',2,'2006-02-15 21:30:53'),(13398,'2005-08-19 22:08:48',3376,405,'2005-08-23 03:24:48',1,'2006-02-15 21:30:53'),(13399,'2005-08-19 22:09:28',2309,21,'2005-08-25 20:25:28',2,'2006-02-15 21:30:53'),(13400,'2005-08-19 22:11:44',2173,179,'2005-08-20 23:27:44',2,'2006-02-15 21:30:53'),(13401,'2005-08-19 22:16:16',488,139,'2005-08-25 19:01:16',2,'2006-02-15 21:30:53'),(13402,'2005-08-19 22:16:53',3264,372,'2005-08-22 22:28:53',1,'2006-02-15 21:30:53'),(13403,'2005-08-19 22:18:07',3241,3,'2005-08-27 19:23:07',1,'2006-02-15 21:30:53'),(13404,'2005-08-19 22:18:42',416,414,'2005-08-23 16:29:42',2,'2006-02-15 21:30:53'),(13405,'2005-08-19 22:20:49',1554,181,'2005-08-28 21:21:49',1,'2006-02-15 21:30:53'),(13406,'2005-08-19 22:22:01',3031,113,'2005-08-22 18:16:01',1,'2006-02-15 21:30:53'),(13407,'2005-08-19 22:26:26',2512,131,'2005-08-22 16:34:26',1,'2006-02-15 21:30:53'),(13408,'2005-08-19 22:34:51',2795,575,'2005-08-21 03:30:51',1,'2006-02-15 21:30:53'),(13409,'2005-08-19 22:36:26',873,214,'2005-08-22 01:52:26',2,'2006-02-15 21:30:53'),(13410,'2005-08-19 22:41:44',1421,104,'2005-08-26 18:05:44',2,'2006-02-15 21:30:53'),(13411,'2005-08-19 22:43:38',4425,21,'2005-08-26 18:29:38',2,'2006-02-15 21:30:53'),(13412,'2005-08-19 22:46:35',2806,404,'2005-08-26 18:06:35',1,'2006-02-15 21:30:53'),(13413,'2005-08-19 22:46:46',1501,390,'2005-08-24 22:52:46',1,'2006-02-15 21:30:53'),(13414,'2005-08-19 22:47:34',4126,438,'2005-08-21 02:50:34',1,'2006-02-15 21:30:53'),(13415,'2005-08-19 22:48:09',1105,181,'2005-08-25 02:09:09',1,'2006-02-15 21:30:53'),(13416,'2005-08-19 22:48:48',1075,204,'2005-08-21 22:09:48',2,'2006-02-15 21:30:53'),(13417,'2005-08-19 22:51:39',92,468,'2005-08-23 03:34:39',1,'2006-02-15 21:30:53'),(13418,'2005-08-19 22:53:56',2113,246,'2005-08-28 02:05:56',2,'2006-02-15 21:30:53'),(13419,'2006-02-14 15:16:03',3507,537,NULL,1,'2006-02-15 21:30:53'),(13420,'2005-08-19 22:57:25',1796,102,'2005-08-28 22:46:25',1,'2006-02-15 21:30:53'),(13421,'2006-02-14 15:16:03',9,366,NULL,1,'2006-02-15 21:30:53'),(13422,'2005-08-19 23:07:24',3835,404,'2005-08-28 04:12:24',2,'2006-02-15 21:30:53'),(13423,'2005-08-19 23:07:42',546,311,'2005-08-26 20:45:42',1,'2006-02-15 21:30:53'),(13424,'2005-08-19 23:10:09',4340,216,'2005-08-23 02:25:09',1,'2006-02-15 21:30:53'),(13425,'2005-08-19 23:11:44',2274,340,'2005-08-25 21:19:44',2,'2006-02-15 21:30:53'),(13426,'2005-08-19 23:15:00',3409,213,'2005-08-21 01:53:00',2,'2006-02-15 21:30:53'),(13427,'2005-08-19 23:19:02',3120,239,'2005-08-21 18:30:02',1,'2006-02-15 21:30:53'),(13428,'2006-02-14 15:16:03',106,44,NULL,2,'2006-02-15 21:30:53'),(13429,'2005-08-19 23:25:37',3677,23,'2005-08-28 01:04:37',2,'2006-02-15 21:30:53'),(13430,'2005-08-19 23:25:43',2852,381,'2005-08-22 18:41:43',1,'2006-02-15 21:30:53'),(13431,'2005-08-19 23:28:15',1700,229,'2005-08-25 04:44:15',1,'2006-02-15 21:30:53'),(13432,'2005-08-19 23:29:06',2216,78,'2005-08-23 00:57:06',1,'2006-02-15 21:30:53'),(13433,'2005-08-19 23:30:53',1647,171,'2005-08-22 05:18:53',2,'2006-02-15 21:30:53'),(13434,'2005-08-19 23:34:26',2073,221,'2005-08-23 18:33:26',1,'2006-02-15 21:30:53'),(13435,'2005-08-19 23:35:44',3919,30,'2005-08-24 18:14:44',2,'2006-02-15 21:30:53'),(13436,'2005-08-19 23:36:25',2499,29,'2005-08-23 18:38:25',1,'2006-02-15 21:30:53'),(13437,'2005-08-19 23:37:52',2292,67,'2005-08-28 22:17:52',1,'2006-02-15 21:30:53'),(13438,'2005-08-19 23:38:02',1750,520,'2005-08-26 21:36:02',1,'2006-02-15 21:30:53'),(13439,'2005-08-19 23:42:16',3535,551,'2005-08-26 21:24:16',2,'2006-02-15 21:30:53'),(13440,'2005-08-19 23:42:52',2842,260,'2005-08-25 19:19:52',1,'2006-02-15 21:30:53'),(13441,'2005-08-19 23:48:23',3188,125,'2005-08-28 23:47:23',1,'2006-02-15 21:30:53'),(13442,'2005-08-19 23:50:45',2432,356,'2005-08-27 22:01:45',2,'2006-02-15 21:30:53'),(13443,'2005-08-19 23:53:42',3161,236,'2005-08-28 05:37:42',1,'2006-02-15 21:30:53'),(13444,'2005-08-20 00:00:24',2564,37,'2005-08-21 05:59:24',2,'2006-02-15 21:30:53'),(13445,'2005-08-20 00:05:33',1630,495,'2005-08-21 21:20:33',1,'2006-02-15 21:30:53'),(13446,'2005-08-20 00:06:13',3226,488,'2005-08-22 19:56:13',1,'2006-02-15 21:30:53'),(13447,'2005-08-20 00:09:36',285,542,'2005-08-25 01:22:36',1,'2006-02-15 21:30:53'),(13448,'2005-08-20 00:12:43',2870,327,'2005-08-25 02:33:43',1,'2006-02-15 21:30:53'),(13449,'2005-08-20 00:17:01',1297,400,'2005-08-23 20:42:01',2,'2006-02-15 21:30:53'),(13450,'2005-08-20 00:18:15',135,61,'2005-08-24 19:36:15',1,'2006-02-15 21:30:53'),(13451,'2005-08-20 00:18:25',3837,6,'2005-08-29 01:08:25',1,'2006-02-15 21:30:53'),(13452,'2005-08-20 00:20:07',2449,430,'2005-08-25 05:43:07',1,'2006-02-15 21:30:53'),(13453,'2005-08-20 00:30:51',2203,164,'2005-08-28 18:43:51',2,'2006-02-15 21:30:53'),(13454,'2005-08-20 00:30:52',1553,430,'2005-08-27 19:45:52',2,'2006-02-15 21:30:53'),(13455,'2005-08-20 00:32:17',1315,133,'2005-08-26 19:33:17',1,'2006-02-15 21:30:53'),(13456,'2005-08-20 00:33:19',1644,13,'2005-08-22 01:47:19',1,'2006-02-15 21:30:53'),(13457,'2005-08-20 00:33:22',1220,256,'2005-08-26 21:37:22',2,'2006-02-15 21:30:53'),(13458,'2005-08-20 00:35:30',4223,228,'2005-08-21 20:51:30',1,'2006-02-15 21:30:53'),(13459,'2005-08-20 00:45:40',3666,114,'2005-08-29 02:53:40',2,'2006-02-15 21:30:53'),(13460,'2005-08-20 00:48:24',244,410,'2005-08-28 04:13:24',2,'2006-02-15 21:30:53'),(13461,'2005-08-20 00:49:04',2621,421,'2005-08-28 02:49:04',2,'2006-02-15 21:30:53'),(13462,'2005-08-20 00:49:19',3865,489,'2005-08-26 06:21:19',2,'2006-02-15 21:30:53'),(13463,'2005-08-20 00:50:54',510,21,'2005-08-28 23:00:54',1,'2006-02-15 21:30:53'),(13464,'2006-02-14 15:16:03',4292,576,NULL,1,'2006-02-15 21:30:53'),(13465,'2005-08-20 00:54:14',1305,575,'2005-08-21 20:55:14',2,'2006-02-15 21:30:53'),(13466,'2005-08-20 00:55:16',3088,262,'2005-08-22 22:48:16',1,'2006-02-15 21:30:53'),(13467,'2005-08-20 00:56:44',696,373,'2005-08-20 20:16:44',1,'2006-02-15 21:30:53'),(13468,'2005-08-20 00:56:44',1851,266,'2005-08-29 06:26:44',1,'2006-02-15 21:30:53'),(13469,'2005-08-20 00:59:36',1410,235,'2005-08-24 22:41:36',1,'2006-02-15 21:30:53'),(13470,'2005-08-20 01:01:16',3097,141,'2005-08-21 03:19:16',1,'2006-02-15 21:30:53'),(13471,'2005-08-20 01:02:26',1391,296,'2005-08-25 06:37:26',2,'2006-02-15 21:30:53'),(13472,'2005-08-20 01:03:31',3074,137,'2005-08-28 02:54:31',1,'2006-02-15 21:30:53'),(13473,'2005-08-20 01:03:50',381,390,'2005-08-22 02:33:50',2,'2006-02-15 21:30:53'),(13474,'2005-08-20 01:04:32',1209,116,'2005-08-21 20:26:32',2,'2006-02-15 21:30:53'),(13475,'2005-08-20 01:05:05',3214,68,'2005-08-20 20:22:05',2,'2006-02-15 21:30:53'),(13476,'2005-08-20 01:06:04',2866,7,'2005-08-24 23:56:04',1,'2006-02-15 21:30:53'),(13477,'2005-08-20 01:07:00',1442,222,'2005-08-26 02:47:00',1,'2006-02-15 21:30:53'),(13478,'2005-08-20 01:07:14',2190,466,'2005-08-22 03:41:14',1,'2006-02-15 21:30:53'),(13479,'2005-08-20 01:09:11',1262,87,'2005-08-26 05:35:11',2,'2006-02-15 21:30:53'),(13480,'2005-08-20 01:10:27',206,16,'2005-08-27 22:18:27',2,'2006-02-15 21:30:53'),(13481,'2005-08-20 01:11:12',2678,157,'2005-08-26 23:07:12',2,'2006-02-15 21:30:53'),(13482,'2005-08-20 01:14:30',1627,183,'2005-08-24 04:57:30',1,'2006-02-15 21:30:53'),(13483,'2005-08-20 01:16:38',2550,441,'2005-08-21 20:43:38',2,'2006-02-15 21:30:53'),(13484,'2005-08-20 01:16:52',1533,152,'2005-08-22 23:47:52',2,'2006-02-15 21:30:53'),(13485,'2005-08-20 01:20:14',3802,379,'2005-08-22 01:28:14',2,'2006-02-15 21:30:53'),(13486,'2006-02-14 15:16:03',4460,274,NULL,1,'2006-02-15 21:30:53'),(13487,'2005-08-20 01:27:05',2609,458,'2005-08-24 00:41:05',2,'2006-02-15 21:30:53'),(13488,'2005-08-20 01:28:42',867,444,'2005-08-25 06:17:42',2,'2006-02-15 21:30:53'),(13489,'2005-08-20 01:29:06',2934,443,'2005-08-27 21:11:06',1,'2006-02-15 21:30:53'),(13490,'2005-08-20 01:29:29',238,18,'2005-08-21 22:36:29',2,'2006-02-15 21:30:53'),(13491,'2005-08-20 01:30:56',2503,258,'2005-08-28 23:26:56',2,'2006-02-15 21:30:53'),(13492,'2005-08-20 01:32:04',1155,462,'2005-08-29 02:14:04',2,'2006-02-15 21:30:53'),(13493,'2005-08-20 01:33:36',2927,37,'2005-08-24 06:32:36',1,'2006-02-15 21:30:53'),(13494,'2005-08-20 01:36:34',1632,414,'2005-08-21 06:52:34',1,'2006-02-15 21:30:53'),(13495,'2005-08-20 01:40:25',3881,92,'2005-08-23 06:32:25',2,'2006-02-15 21:30:53'),(13496,'2005-08-20 01:42:29',3040,454,'2005-08-29 06:47:29',2,'2006-02-15 21:30:53'),(13497,'2005-08-20 01:46:38',1296,481,'2005-08-26 05:37:38',2,'2006-02-15 21:30:53'),(13498,'2005-08-20 01:51:23',1603,578,'2005-08-24 05:32:23',1,'2006-02-15 21:30:53'),(13499,'2005-08-20 01:52:30',1893,300,'2005-08-28 04:57:30',1,'2006-02-15 21:30:53'),(13500,'2005-08-20 01:54:39',1353,577,'2005-08-25 21:23:39',1,'2006-02-15 21:30:53'),(13501,'2005-08-20 01:56:20',4369,390,'2005-08-22 23:07:20',2,'2006-02-15 21:30:53'),(13502,'2005-08-20 01:58:15',1324,309,'2005-08-21 20:21:15',1,'2006-02-15 21:30:53'),(13503,'2005-08-20 02:00:33',453,15,'2005-08-28 21:03:33',1,'2006-02-15 21:30:53'),(13504,'2005-08-20 02:01:48',4322,293,'2005-08-25 21:52:48',2,'2006-02-15 21:30:53'),(13505,'2005-08-20 02:05:57',914,536,'2005-08-23 05:52:57',1,'2006-02-15 21:30:53'),(13506,'2005-08-20 02:07:06',1334,261,'2005-08-26 08:06:06',1,'2006-02-15 21:30:53'),(13507,'2005-08-20 02:10:27',3324,478,'2005-08-23 04:03:27',2,'2006-02-15 21:30:53'),(13508,'2005-08-20 02:12:54',4120,408,'2005-08-28 21:47:54',2,'2006-02-15 21:30:53'),(13509,'2005-08-20 02:14:16',3698,128,'2005-08-22 06:36:16',2,'2006-02-15 21:30:53'),(13510,'2005-08-20 02:18:30',691,107,'2005-08-27 01:33:30',1,'2006-02-15 21:30:53'),(13511,'2005-08-20 02:21:40',2973,23,'2005-08-21 03:26:40',1,'2006-02-15 21:30:53'),(13512,'2005-08-20 02:27:13',4508,62,'2005-08-28 04:40:13',2,'2006-02-15 21:30:53'),(13513,'2005-08-20 02:27:53',1653,454,'2005-08-22 06:10:53',1,'2006-02-15 21:30:53'),(13514,'2005-08-20 02:28:09',3407,96,'2005-08-25 00:41:09',1,'2006-02-15 21:30:53'),(13515,'2005-08-20 02:29:47',3438,194,'2005-08-23 08:12:47',2,'2006-02-15 21:30:53'),(13516,'2005-08-20 02:32:45',4286,95,'2005-08-27 04:38:45',1,'2006-02-15 21:30:53'),(13517,'2005-08-20 02:33:17',533,186,'2005-08-23 22:40:17',2,'2006-02-15 21:30:53'),(13518,'2005-08-20 02:36:17',352,528,'2005-08-24 08:06:17',1,'2006-02-15 21:30:53'),(13519,'2005-08-20 02:37:07',182,12,'2005-08-23 01:26:07',2,'2006-02-15 21:30:53'),(13520,'2005-08-20 02:41:46',3326,74,'2005-08-22 01:53:46',1,'2006-02-15 21:30:53'),(13521,'2005-08-20 02:42:28',2586,384,'2005-08-22 06:12:28',1,'2006-02-15 21:30:53'),(13522,'2005-08-20 02:44:06',2940,343,'2005-08-28 05:30:06',1,'2006-02-15 21:30:53'),(13523,'2005-08-20 02:47:03',163,572,'2005-08-28 07:43:03',1,'2006-02-15 21:30:53'),(13524,'2005-08-20 02:48:43',4557,593,'2005-08-27 03:14:43',2,'2006-02-15 21:30:53'),(13525,'2005-08-20 02:50:44',3514,111,'2005-08-26 22:58:44',2,'2006-02-15 21:30:53'),(13526,'2005-08-20 02:58:42',1966,277,'2005-08-27 22:36:42',2,'2006-02-15 21:30:53'),(13527,'2005-08-20 03:00:47',4424,521,'2005-08-25 01:03:47',1,'2006-02-15 21:30:53'),(13528,'2005-08-20 03:03:31',1847,202,'2005-08-26 03:09:31',1,'2006-02-15 21:30:53'),(13529,'2005-08-20 03:07:47',1979,193,'2005-08-21 21:50:47',1,'2006-02-15 21:30:53'),(13530,'2005-08-20 03:12:43',597,156,'2005-08-23 09:01:43',2,'2006-02-15 21:30:53'),(13531,'2005-08-20 03:26:10',2778,156,'2005-08-25 03:41:10',1,'2006-02-15 21:30:53'),(13532,'2005-08-20 03:29:28',1433,168,'2005-08-23 22:53:28',2,'2006-02-15 21:30:53'),(13533,'2005-08-20 03:30:00',1801,436,'2005-08-27 05:53:00',1,'2006-02-15 21:30:53'),(13534,'2006-02-14 15:16:03',2476,75,NULL,1,'2006-02-15 21:30:53'),(13535,'2005-08-20 03:30:25',1563,86,'2005-08-28 04:35:25',1,'2006-02-15 21:30:53'),(13536,'2005-08-20 03:35:16',667,183,'2005-08-25 04:06:16',2,'2006-02-15 21:30:53'),(13537,'2005-08-20 03:39:15',2521,418,'2005-08-23 22:03:15',2,'2006-02-15 21:30:53'),(13538,'2006-02-14 15:16:03',581,279,NULL,1,'2006-02-15 21:30:53'),(13539,'2005-08-20 03:40:27',3110,518,'2005-08-27 07:15:27',1,'2006-02-15 21:30:53'),(13540,'2005-08-20 03:41:23',3785,557,'2005-08-27 09:09:23',2,'2006-02-15 21:30:53'),(13541,'2005-08-20 03:41:41',1363,15,'2005-08-24 23:14:41',1,'2006-02-15 21:30:53'),(13542,'2005-08-20 03:41:57',4543,147,'2005-08-29 03:21:57',2,'2006-02-15 21:30:53'),(13543,'2005-08-20 03:43:13',2142,163,'2005-08-29 07:14:13',2,'2006-02-15 21:30:53'),(13544,'2005-08-20 03:44:26',58,538,'2005-08-27 22:11:26',1,'2006-02-15 21:30:53'),(13545,'2005-08-20 03:50:15',615,417,'2005-08-27 22:24:15',1,'2006-02-15 21:30:53'),(13546,'2005-08-20 03:50:24',2492,390,'2005-08-28 03:04:24',2,'2006-02-15 21:30:53'),(13547,'2005-08-20 03:53:16',3122,456,'2005-08-25 04:02:16',1,'2006-02-15 21:30:53'),(13548,'2005-08-20 03:53:20',4389,319,'2005-08-27 21:54:20',1,'2006-02-15 21:30:53'),(13549,'2005-08-20 03:58:41',508,274,'2005-08-28 22:49:41',1,'2006-02-15 21:30:53'),(13550,'2005-08-20 03:58:51',208,206,'2005-08-28 00:45:51',2,'2006-02-15 21:30:53'),(13551,'2005-08-20 04:00:30',1049,503,'2005-08-21 06:26:30',2,'2006-02-15 21:30:53'),(13552,'2005-08-20 04:03:51',758,578,'2005-08-23 02:48:51',2,'2006-02-15 21:30:53'),(13553,'2005-08-20 04:07:21',4407,314,'2005-08-28 09:55:21',1,'2006-02-15 21:30:53'),(13554,'2005-08-20 04:08:39',2648,569,'2005-08-28 07:11:39',2,'2006-02-15 21:30:53'),(13555,'2005-08-20 04:09:50',3176,93,'2005-08-29 05:20:50',1,'2006-02-15 21:30:53'),(13556,'2005-08-20 04:10:26',3914,266,'2005-08-26 06:45:26',2,'2006-02-15 21:30:53'),(13557,'2005-08-20 04:12:41',2290,23,'2005-08-21 02:33:41',2,'2006-02-15 21:30:53'),(13558,'2005-08-20 04:13:17',1551,564,'2005-08-24 06:38:17',1,'2006-02-15 21:30:53'),(13559,'2005-08-20 04:16:07',2413,444,'2005-08-24 23:23:07',1,'2006-02-15 21:30:53'),(13560,'2005-08-20 04:17:16',820,56,'2005-08-28 08:38:16',1,'2006-02-15 21:30:53'),(13561,'2006-02-14 15:16:03',3202,530,NULL,1,'2006-02-15 21:30:53'),(13562,'2005-08-20 04:31:45',4547,36,'2005-08-25 09:59:45',1,'2006-02-15 21:30:53'),(13563,'2005-08-20 04:33:31',599,366,'2005-08-24 07:08:31',2,'2006-02-15 21:30:53'),(13564,'2005-08-20 04:34:46',678,36,'2005-08-28 23:18:46',2,'2006-02-15 21:30:53'),(13565,'2005-08-20 04:38:52',3378,214,'2005-08-27 07:17:52',1,'2006-02-15 21:30:53'),(13566,'2005-08-20 04:45:32',4397,558,'2005-08-28 02:12:32',2,'2006-02-15 21:30:53'),(13567,'2005-08-20 04:49:21',543,242,'2005-08-26 10:27:21',1,'2006-02-15 21:30:53'),(13568,'2005-08-20 05:02:46',1243,151,'2005-08-27 03:12:46',2,'2006-02-15 21:30:53'),(13569,'2005-08-20 05:02:59',1934,496,'2005-08-28 00:51:59',1,'2006-02-15 21:30:53'),(13570,'2005-08-20 05:04:57',2808,188,'2005-08-24 06:19:57',2,'2006-02-15 21:30:53'),(13571,'2005-08-20 05:05:14',1251,458,'2005-08-25 03:59:14',2,'2006-02-15 21:30:53'),(13572,'2005-08-20 05:07:27',660,11,'2005-08-23 23:33:27',1,'2006-02-15 21:30:53'),(13573,'2005-08-20 05:10:14',3032,59,'2005-08-22 00:59:14',1,'2006-02-15 21:30:53'),(13574,'2005-08-20 05:10:39',2383,552,'2005-08-21 02:21:39',2,'2006-02-15 21:30:53'),(13575,'2005-08-20 05:15:20',2729,339,'2005-08-28 07:36:20',2,'2006-02-15 21:30:53'),(13576,'2005-08-20 05:19:56',2669,223,'2005-08-22 09:08:56',2,'2006-02-15 21:30:53'),(13577,'2006-02-14 15:16:03',3844,448,NULL,2,'2006-02-15 21:30:53'),(13578,'2006-02-14 15:16:03',4301,352,NULL,2,'2006-02-15 21:30:53'),(13579,'2005-08-20 05:22:06',4237,333,'2005-08-28 02:33:06',2,'2006-02-15 21:30:53'),(13580,'2005-08-20 05:23:34',4419,526,'2005-08-23 02:45:34',1,'2006-02-15 21:30:53'),(13581,'2005-08-20 05:26:15',1753,119,'2005-08-21 11:07:15',2,'2006-02-15 21:30:53'),(13582,'2005-08-20 05:28:11',211,166,'2005-08-23 02:06:11',2,'2006-02-15 21:30:53'),(13583,'2005-08-20 05:29:45',176,74,'2005-08-26 06:49:45',1,'2006-02-15 21:30:53'),(13584,'2006-02-14 15:16:03',3966,548,NULL,2,'2006-02-15 21:30:53'),(13585,'2005-08-20 05:32:23',3314,470,'2005-08-27 23:36:23',1,'2006-02-15 21:30:53'),(13586,'2005-08-20 05:40:33',4544,445,'2005-08-25 01:32:33',2,'2006-02-15 21:30:53'),(13587,'2006-02-14 15:16:03',2455,431,NULL,2,'2006-02-15 21:30:53'),(13588,'2005-08-20 05:47:11',702,279,'2005-08-28 02:45:11',2,'2006-02-15 21:30:53'),(13589,'2005-08-20 05:47:25',3216,574,'2005-08-23 01:29:25',2,'2006-02-15 21:30:53'),(13590,'2005-08-20 05:48:59',4417,264,'2005-08-25 00:44:59',2,'2006-02-15 21:30:53'),(13591,'2005-08-20 05:50:05',3089,390,'2005-08-27 08:43:05',2,'2006-02-15 21:30:53'),(13592,'2005-08-20 05:50:35',1509,470,'2005-08-23 04:52:35',1,'2006-02-15 21:30:53'),(13593,'2005-08-20 05:50:52',261,585,'2005-08-27 05:28:52',2,'2006-02-15 21:30:53'),(13594,'2005-08-20 05:53:31',3424,7,'2005-08-23 09:01:31',1,'2006-02-15 21:30:53'),(13595,'2005-08-20 05:54:27',673,545,'2005-08-29 01:25:27',1,'2006-02-15 21:30:53'),(13596,'2005-08-20 05:58:58',482,513,'2005-08-27 08:35:58',1,'2006-02-15 21:30:53'),(13597,'2005-08-20 05:59:05',3697,72,'2005-08-24 05:38:05',2,'2006-02-15 21:30:53'),(13598,'2005-08-20 05:59:17',2803,259,'2005-08-29 01:02:17',1,'2006-02-15 21:30:53'),(13599,'2005-08-20 06:00:03',3333,150,'2005-08-29 07:56:03',1,'2006-02-15 21:30:53'),(13600,'2005-08-20 06:00:25',431,528,'2005-08-28 02:39:25',1,'2006-02-15 21:30:53'),(13601,'2005-08-20 06:01:15',2166,189,'2005-08-29 06:14:15',2,'2006-02-15 21:30:53'),(13602,'2005-08-20 06:02:02',2805,348,'2005-08-27 04:51:02',1,'2006-02-15 21:30:53'),(13603,'2005-08-20 06:02:48',937,362,'2005-08-29 09:39:48',1,'2006-02-15 21:30:53'),(13604,'2005-08-20 06:03:33',4352,353,'2005-08-21 07:06:33',1,'2006-02-15 21:30:53'),(13605,'2005-08-20 06:06:17',4446,522,'2005-08-26 00:53:17',2,'2006-02-15 21:30:53'),(13606,'2005-08-20 06:07:01',83,146,'2005-08-27 04:59:01',2,'2006-02-15 21:30:53'),(13607,'2005-08-20 06:08:42',2692,491,'2005-08-21 01:59:42',2,'2006-02-15 21:30:53'),(13608,'2005-08-20 06:10:44',4110,193,'2005-08-24 07:08:44',1,'2006-02-15 21:30:53'),(13609,'2005-08-20 06:11:51',299,328,'2005-08-23 04:13:51',2,'2006-02-15 21:30:53'),(13610,'2005-08-20 06:14:12',2526,3,'2005-08-26 00:44:12',2,'2006-02-15 21:30:53'),(13611,'2005-08-20 06:20:42',1460,112,'2005-08-28 10:07:42',1,'2006-02-15 21:30:53'),(13612,'2005-08-20 06:22:08',675,505,'2005-08-28 02:22:08',1,'2006-02-15 21:30:53'),(13613,'2005-08-20 06:23:53',2415,201,'2005-08-29 11:40:53',2,'2006-02-15 21:30:53'),(13614,'2005-08-20 06:28:37',3736,381,'2005-08-22 07:54:37',2,'2006-02-15 21:30:53'),(13615,'2005-08-20 06:28:53',1864,539,'2005-08-27 11:40:53',2,'2006-02-15 21:30:53'),(13616,'2005-08-20 06:30:33',1694,194,'2005-08-27 09:29:33',2,'2006-02-15 21:30:53'),(13617,'2005-08-20 06:35:30',4059,526,'2005-08-29 09:03:30',1,'2006-02-15 21:30:53'),(13618,'2005-08-20 06:36:46',390,390,'2005-08-29 05:17:46',2,'2006-02-15 21:30:53'),(13619,'2005-08-20 06:39:26',1068,365,'2005-08-23 05:22:26',2,'2006-02-15 21:30:53'),(13620,'2005-08-20 06:41:27',2361,92,'2005-08-24 11:02:27',1,'2006-02-15 21:30:53'),(13621,'2005-08-20 06:43:44',3754,581,'2005-08-23 06:25:44',2,'2006-02-15 21:30:53'),(13622,'2005-08-20 06:45:32',3355,335,'2005-08-25 02:40:32',1,'2006-02-15 21:30:53'),(13623,'2005-08-20 06:49:46',3948,321,'2005-08-25 05:19:46',2,'2006-02-15 21:30:53'),(13624,'2005-08-20 06:51:02',430,63,'2005-08-29 02:39:02',1,'2006-02-15 21:30:53'),(13625,'2005-08-20 06:52:03',60,422,'2005-08-27 07:43:03',1,'2006-02-15 21:30:53'),(13626,'2005-08-20 06:55:24',594,524,'2005-08-29 12:32:24',1,'2006-02-15 21:30:53'),(13627,'2005-08-20 06:59:00',603,329,'2005-08-29 11:43:00',2,'2006-02-15 21:30:53'),(13628,'2005-08-20 07:03:53',1006,500,'2005-08-22 11:27:53',2,'2006-02-15 21:30:53'),(13629,'2005-08-20 07:04:07',1834,392,'2005-08-25 12:36:07',1,'2006-02-15 21:30:53'),(13630,'2005-08-20 07:05:56',3346,244,'2005-08-29 04:15:56',1,'2006-02-15 21:30:53'),(13631,'2005-08-20 07:07:37',1015,535,'2005-08-22 04:01:37',1,'2006-02-15 21:30:53'),(13632,'2005-08-20 07:10:52',4008,409,'2005-08-29 10:19:52',2,'2006-02-15 21:30:53'),(13633,'2005-08-20 07:13:47',3227,301,'2005-08-24 11:25:47',1,'2006-02-15 21:30:53'),(13634,'2005-08-20 07:16:45',850,411,'2005-08-22 03:38:45',1,'2006-02-15 21:30:53'),(13635,'2005-08-20 07:17:35',669,286,'2005-08-29 06:27:35',1,'2006-02-15 21:30:53'),(13636,'2005-08-20 07:20:09',1467,349,'2005-08-23 09:58:09',1,'2006-02-15 21:30:53'),(13637,'2005-08-20 07:21:15',2298,342,'2005-08-24 10:13:15',2,'2006-02-15 21:30:53'),(13638,'2005-08-20 07:21:15',3255,493,'2005-08-23 11:09:15',2,'2006-02-15 21:30:53'),(13639,'2005-08-20 07:22:07',2489,562,'2005-08-23 11:24:07',2,'2006-02-15 21:30:53'),(13640,'2005-08-20 07:22:53',3427,541,'2005-08-21 11:54:53',2,'2006-02-15 21:30:53'),(13641,'2005-08-20 07:34:42',367,281,'2005-08-26 05:18:42',1,'2006-02-15 21:30:53'),(13642,'2005-08-20 07:42:17',4415,452,'2005-08-29 10:49:17',1,'2006-02-15 21:30:53'),(13643,'2005-08-20 07:42:24',2443,398,'2005-08-26 09:13:24',2,'2006-02-15 21:30:53'),(13644,'2005-08-20 07:46:30',970,464,'2005-08-27 01:54:30',1,'2006-02-15 21:30:53'),(13645,'2005-08-20 07:47:05',157,387,'2005-08-23 02:58:05',1,'2006-02-15 21:30:53'),(13646,'2005-08-20 07:47:08',1347,242,'2005-08-29 08:33:08',1,'2006-02-15 21:30:53'),(13647,'2005-08-20 07:48:07',3269,519,'2005-08-28 07:56:07',2,'2006-02-15 21:30:53'),(13648,'2005-08-20 07:48:10',3921,596,'2005-08-22 12:15:10',2,'2006-02-15 21:30:53'),(13649,'2005-08-20 07:48:38',1495,259,'2005-08-23 07:43:38',2,'2006-02-15 21:30:53'),(13650,'2005-08-20 07:49:06',2644,322,'2005-08-28 10:11:06',1,'2006-02-15 21:30:53'),(13651,'2005-08-20 07:50:08',1082,256,'2005-08-21 07:11:08',1,'2006-02-15 21:30:53'),(13652,'2005-08-20 07:52:34',2548,67,'2005-08-23 08:58:34',2,'2006-02-15 21:30:53'),(13653,'2005-08-20 07:54:54',4029,129,'2005-08-29 06:43:54',1,'2006-02-15 21:30:53'),(13654,'2005-08-20 07:58:21',1582,469,'2005-08-21 09:40:21',2,'2006-02-15 21:30:53'),(13655,'2005-08-20 07:59:13',4294,207,'2005-08-22 12:04:13',1,'2006-02-15 21:30:53'),(13656,'2005-08-20 08:01:07',3180,411,'2005-08-28 13:16:07',2,'2006-02-15 21:30:53'),(13657,'2005-08-20 08:01:39',1752,414,'2005-08-23 07:31:39',1,'2006-02-15 21:30:53'),(13658,'2005-08-20 08:02:22',3827,487,'2005-08-28 06:00:22',1,'2006-02-15 21:30:53'),(13659,'2005-08-20 08:05:52',3610,520,'2005-08-24 12:38:52',1,'2006-02-15 21:30:53'),(13660,'2005-08-20 08:05:56',3972,72,'2005-08-22 13:22:56',1,'2006-02-15 21:30:53'),(13661,'2005-08-20 08:05:59',3996,471,'2005-08-29 12:15:59',1,'2006-02-15 21:30:53'),(13662,'2005-08-20 08:11:58',3880,592,'2005-08-26 13:34:58',1,'2006-02-15 21:30:53'),(13663,'2005-08-20 08:12:33',3969,240,'2005-08-27 03:23:33',2,'2006-02-15 21:30:53'),(13664,'2005-08-20 08:18:36',3750,264,'2005-08-26 11:04:36',1,'2006-02-15 21:30:53'),(13665,'2005-08-20 08:19:20',117,291,'2005-08-28 06:26:20',1,'2006-02-15 21:30:53'),(13666,'2005-08-20 08:20:19',2007,451,'2005-08-22 03:22:19',1,'2006-02-15 21:30:53'),(13667,'2005-08-20 08:25:34',3856,280,'2005-08-24 07:04:34',2,'2006-02-15 21:30:53'),(13668,'2005-08-20 08:26:06',3659,123,'2005-08-25 05:52:06',2,'2006-02-15 21:30:53'),(13669,'2005-08-20 08:26:32',4504,261,'2005-08-27 08:10:32',2,'2006-02-15 21:30:53'),(13670,'2005-08-20 08:27:01',1951,147,'2005-08-29 05:59:01',2,'2006-02-15 21:30:53'),(13671,'2005-08-20 08:27:03',1473,201,'2005-08-26 03:56:03',1,'2006-02-15 21:30:53'),(13672,'2005-08-20 08:27:27',2068,201,'2005-08-22 06:15:27',2,'2006-02-15 21:30:53'),(13673,'2005-08-20 08:27:30',343,332,'2005-08-26 05:14:30',1,'2006-02-15 21:30:53'),(13674,'2005-08-20 08:30:54',3397,36,'2005-08-22 02:59:54',1,'2006-02-15 21:30:53'),(13675,'2005-08-20 08:32:51',350,493,'2005-08-27 03:52:51',2,'2006-02-15 21:30:53'),(13676,'2005-08-20 08:33:21',3170,103,'2005-08-25 02:51:21',1,'2006-02-15 21:30:53'),(13677,'2005-08-20 08:34:41',4013,15,'2005-08-26 11:51:41',2,'2006-02-15 21:30:53'),(13678,'2005-08-20 08:38:24',1118,337,'2005-08-27 13:54:24',2,'2006-02-15 21:30:53'),(13679,'2005-08-20 08:39:34',2878,229,'2005-08-29 10:06:34',2,'2006-02-15 21:30:53'),(13680,'2005-08-20 08:44:06',2822,70,'2005-08-27 09:58:06',2,'2006-02-15 21:30:53'),(13681,'2005-08-20 08:47:37',3039,328,'2005-08-27 09:47:37',1,'2006-02-15 21:30:53'),(13682,'2005-08-20 08:50:39',287,30,'2005-08-21 09:05:39',2,'2006-02-15 21:30:53'),(13683,'2005-08-20 08:54:55',1729,255,'2005-08-24 14:10:55',2,'2006-02-15 21:30:53'),(13684,'2005-08-20 08:55:53',2213,348,'2005-08-25 08:11:53',1,'2006-02-15 21:30:53'),(13685,'2005-08-20 08:57:11',3336,260,'2005-08-27 07:26:11',1,'2006-02-15 21:30:53'),(13686,'2005-08-20 08:57:28',666,306,'2005-08-24 07:21:28',2,'2006-02-15 21:30:53'),(13687,'2005-08-20 08:57:51',3629,290,'2005-08-22 07:02:51',2,'2006-02-15 21:30:53'),(13688,'2005-08-20 08:59:38',1116,572,'2005-08-28 04:54:38',2,'2006-02-15 21:30:53'),(13689,'2005-08-20 09:04:30',819,336,'2005-08-22 05:38:30',2,'2006-02-15 21:30:53'),(13690,'2005-08-20 09:07:27',3721,513,'2005-08-23 08:03:27',2,'2006-02-15 21:30:53'),(13691,'2005-08-20 09:07:39',676,548,'2005-08-28 15:03:39',1,'2006-02-15 21:30:53'),(13692,'2005-08-20 09:07:52',1928,65,'2005-08-21 05:17:52',1,'2006-02-15 21:30:53'),(13693,'2005-08-20 09:11:42',933,552,'2005-08-24 15:00:42',2,'2006-02-15 21:30:53'),(13694,'2005-08-20 09:13:23',3654,454,'2005-08-28 06:10:23',1,'2006-02-15 21:30:53'),(13695,'2005-08-20 09:13:25',3114,258,'2005-08-27 11:51:25',2,'2006-02-15 21:30:53'),(13696,'2005-08-20 09:16:15',1279,206,'2005-08-21 03:33:15',1,'2006-02-15 21:30:53'),(13697,'2005-08-20 09:21:08',291,76,'2005-08-29 12:33:08',1,'2006-02-15 21:30:53'),(13698,'2005-08-20 09:24:26',3829,364,'2005-08-22 05:04:26',2,'2006-02-15 21:30:53'),(13699,'2005-08-20 09:26:14',3913,21,'2005-08-29 08:16:14',2,'2006-02-15 21:30:53'),(13700,'2005-08-20 09:26:17',4229,265,'2005-08-27 05:49:17',2,'2006-02-15 21:30:53'),(13701,'2005-08-20 09:27:05',1643,564,'2005-08-21 14:54:05',1,'2006-02-15 21:30:53'),(13702,'2005-08-20 09:27:20',700,296,'2005-08-29 15:04:20',2,'2006-02-15 21:30:53'),(13703,'2005-08-20 09:29:35',2296,356,'2005-08-27 08:03:35',2,'2006-02-15 21:30:53'),(13704,'2005-08-20 09:32:04',3373,4,'2005-08-23 14:29:04',2,'2006-02-15 21:30:53'),(13705,'2005-08-20 09:32:23',3663,451,'2005-08-21 13:51:23',1,'2006-02-15 21:30:53'),(13706,'2005-08-20 09:32:56',3005,363,'2005-08-28 05:22:56',2,'2006-02-15 21:30:53'),(13707,'2005-08-20 09:33:58',826,232,'2005-08-23 07:44:58',2,'2006-02-15 21:30:53'),(13708,'2005-08-20 09:34:07',2236,218,'2005-08-26 10:17:07',1,'2006-02-15 21:30:53'),(13709,'2005-08-20 09:34:51',4089,422,'2005-08-23 04:13:51',1,'2006-02-15 21:30:53'),(13710,'2005-08-20 09:35:20',756,333,'2005-08-21 05:29:20',2,'2006-02-15 21:30:53'),(13711,'2005-08-20 09:35:20',2318,453,'2005-08-28 09:06:20',2,'2006-02-15 21:30:53'),(13712,'2005-08-20 09:38:04',1039,581,'2005-08-21 06:10:04',1,'2006-02-15 21:30:53'),(13713,'2006-02-14 15:16:03',3075,267,NULL,1,'2006-02-15 21:30:53'),(13714,'2005-08-20 09:41:09',2659,277,'2005-08-22 06:28:09',1,'2006-02-15 21:30:53'),(13715,'2005-08-20 09:43:06',1028,292,'2005-08-27 10:22:06',1,'2006-02-15 21:30:53'),(13716,'2005-08-20 09:48:32',86,386,'2005-08-26 07:20:32',2,'2006-02-15 21:30:53'),(13717,'2005-08-20 09:50:52',1629,300,'2005-08-28 11:32:52',2,'2006-02-15 21:30:53'),(13718,'2005-08-20 09:53:44',205,19,'2005-08-29 13:46:44',2,'2006-02-15 21:30:53'),(13719,'2006-02-14 15:16:03',3547,208,NULL,1,'2006-02-15 21:30:53'),(13720,'2005-08-20 10:01:39',813,427,'2005-08-27 08:26:39',1,'2006-02-15 21:30:53'),(13721,'2005-08-20 10:02:59',1444,297,'2005-08-24 07:02:59',2,'2006-02-15 21:30:53'),(13722,'2005-08-20 10:03:45',1581,422,'2005-08-25 04:26:45',1,'2006-02-15 21:30:53'),(13723,'2005-08-20 10:05:30',411,110,'2005-08-27 07:43:30',2,'2006-02-15 21:30:53'),(13724,'2005-08-20 10:07:28',200,80,'2005-08-24 07:47:28',2,'2006-02-15 21:30:53'),(13725,'2005-08-20 10:08:27',3861,306,'2005-08-28 06:52:27',2,'2006-02-15 21:30:53'),(13726,'2005-08-20 10:08:40',2258,214,'2005-08-23 14:58:40',1,'2006-02-15 21:30:53'),(13727,'2005-08-20 10:08:53',4201,85,'2005-08-27 09:30:53',1,'2006-02-15 21:30:53'),(13728,'2005-08-20 10:11:07',1962,157,'2005-08-23 10:32:07',1,'2006-02-15 21:30:53'),(13729,'2005-08-20 10:17:08',4108,415,'2005-08-28 15:35:08',1,'2006-02-15 21:30:53'),(13730,'2005-08-20 10:17:09',1330,548,'2005-08-28 10:45:09',1,'2006-02-15 21:30:53'),(13731,'2005-08-20 10:22:08',1133,450,'2005-08-21 12:04:08',2,'2006-02-15 21:30:53'),(13732,'2005-08-20 10:24:41',1138,17,'2005-08-22 04:44:41',1,'2006-02-15 21:30:53'),(13733,'2005-08-20 10:25:12',3994,85,'2005-08-21 10:49:12',2,'2006-02-15 21:30:53'),(13734,'2005-08-20 10:29:57',4561,374,'2005-08-25 14:41:57',2,'2006-02-15 21:30:53'),(13735,'2005-08-20 10:31:01',1813,35,'2005-08-26 05:00:01',1,'2006-02-15 21:30:53'),(13736,'2005-08-20 10:31:23',3369,32,'2005-08-28 06:51:23',1,'2006-02-15 21:30:53'),(13737,'2005-08-20 10:41:50',4319,200,'2005-08-25 14:33:50',2,'2006-02-15 21:30:53'),(13738,'2005-08-20 10:42:42',2748,273,'2005-08-25 09:32:42',1,'2006-02-15 21:30:53'),(13739,'2005-08-20 10:45:10',3027,441,'2005-08-28 08:46:10',2,'2006-02-15 21:30:53'),(13740,'2005-08-20 10:48:43',4366,21,'2005-08-29 15:30:43',1,'2006-02-15 21:30:53'),(13741,'2005-08-20 10:48:47',3887,195,'2005-08-21 11:19:47',1,'2006-02-15 21:30:53'),(13742,'2005-08-20 10:49:15',1377,580,'2005-08-21 11:05:15',2,'2006-02-15 21:30:53'),(13743,'2005-08-20 10:51:27',3693,57,'2005-08-24 15:54:27',1,'2006-02-15 21:30:53'),(13744,'2005-08-20 10:51:45',2962,408,'2005-08-25 06:42:45',2,'2006-02-15 21:30:53'),(13745,'2005-08-20 10:53:49',1264,142,'2005-08-25 13:25:49',1,'2006-02-15 21:30:53'),(13746,'2005-08-20 10:55:28',3742,520,'2005-08-25 07:48:28',2,'2006-02-15 21:30:53'),(13747,'2005-08-20 10:56:06',3332,74,'2005-08-29 10:29:06',1,'2006-02-15 21:30:53'),(13748,'2005-08-20 10:59:54',2198,410,'2005-08-23 12:33:54',1,'2006-02-15 21:30:53'),(13749,'2005-08-20 11:00:37',2811,282,'2005-08-26 12:04:37',1,'2006-02-15 21:30:53'),(13750,'2005-08-20 11:11:42',3363,246,'2005-08-29 16:16:42',2,'2006-02-15 21:30:53'),(13751,'2005-08-20 11:17:03',185,105,'2005-08-22 14:12:03',2,'2006-02-15 21:30:53'),(13752,'2005-08-20 11:17:45',1794,77,'2005-08-29 13:25:45',2,'2006-02-15 21:30:53'),(13753,'2006-02-14 15:16:03',3746,495,NULL,1,'2006-02-15 21:30:53'),(13754,'2005-08-20 11:18:08',1740,108,'2005-08-22 11:55:08',1,'2006-02-15 21:30:53'),(13755,'2005-08-20 11:18:53',1927,342,'2005-08-27 06:51:53',2,'2006-02-15 21:30:53'),(13756,'2006-02-14 15:16:03',1146,252,NULL,2,'2006-02-15 21:30:53'),(13757,'2005-08-20 11:20:12',1147,14,'2005-08-23 10:14:12',2,'2006-02-15 21:30:53'),(13758,'2005-08-20 11:21:26',864,255,'2005-08-29 14:37:26',2,'2006-02-15 21:30:53'),(13759,'2005-08-20 11:24:48',595,269,'2005-08-29 10:29:48',1,'2006-02-15 21:30:53'),(13760,'2005-08-20 11:26:33',3459,436,'2005-08-27 11:12:33',2,'2006-02-15 21:30:53'),(13761,'2005-08-20 11:28:50',3149,376,'2005-08-21 12:05:50',2,'2006-02-15 21:30:53'),(13762,'2005-08-20 11:29:32',451,566,'2005-08-23 17:25:32',1,'2006-02-15 21:30:53'),(13763,'2005-08-20 11:37:56',4171,469,'2005-08-26 13:12:56',1,'2006-02-15 21:30:53'),(13764,'2005-08-20 11:38:16',989,386,'2005-08-27 08:01:16',1,'2006-02-15 21:30:53'),(13765,'2005-08-20 11:39:00',2104,219,'2005-08-21 06:05:00',1,'2006-02-15 21:30:53'),(13766,'2005-08-20 11:42:01',1313,189,'2005-08-27 13:44:01',2,'2006-02-15 21:30:53'),(13767,'2005-08-20 11:43:36',2739,506,'2005-08-22 17:10:36',1,'2006-02-15 21:30:53'),(13768,'2005-08-20 11:43:43',3847,198,'2005-08-27 07:56:43',2,'2006-02-15 21:30:53'),(13769,'2005-08-20 11:43:52',2868,56,'2005-08-28 13:19:52',1,'2006-02-15 21:30:53'),(13770,'2005-08-20 11:45:54',998,538,'2005-08-22 17:08:54',1,'2006-02-15 21:30:53'),(13771,'2005-08-20 11:47:21',2278,512,'2005-08-22 17:09:21',1,'2006-02-15 21:30:53'),(13772,'2005-08-20 11:47:52',2038,387,'2005-08-28 05:50:52',2,'2006-02-15 21:30:53'),(13773,'2005-08-20 11:50:14',3389,64,'2005-08-26 12:35:14',1,'2006-02-15 21:30:53'),(13774,'2005-08-20 11:54:01',735,244,'2005-08-22 13:25:01',2,'2006-02-15 21:30:53'),(13775,'2005-08-20 11:56:30',1858,116,'2005-08-28 12:48:30',2,'2006-02-15 21:30:53'),(13776,'2005-08-20 11:57:06',2439,137,'2005-08-26 10:55:06',1,'2006-02-15 21:30:53'),(13777,'2005-08-20 12:03:35',3587,29,'2005-08-27 10:13:35',1,'2006-02-15 21:30:53'),(13778,'2005-08-20 12:03:44',2385,539,'2005-08-28 12:09:44',1,'2006-02-15 21:30:53'),(13779,'2005-08-20 12:03:54',63,440,'2005-08-28 15:24:54',2,'2006-02-15 21:30:53'),(13780,'2006-02-14 15:16:03',1775,14,NULL,2,'2006-02-15 21:30:53'),(13781,'2005-08-20 12:06:45',971,368,'2005-08-26 06:50:45',2,'2006-02-15 21:30:53'),(13782,'2005-08-20 12:09:26',577,305,'2005-08-23 08:31:26',2,'2006-02-15 21:30:53'),(13783,'2005-08-20 12:11:03',2643,28,'2005-08-21 15:53:03',2,'2006-02-15 21:30:53'),(13784,'2005-08-20 12:11:28',3087,431,'2005-08-25 08:11:28',1,'2006-02-15 21:30:53'),(13785,'2005-08-20 12:11:46',379,453,'2005-08-21 06:39:46',1,'2006-02-15 21:30:53'),(13786,'2005-08-20 12:13:24',515,94,'2005-08-28 07:24:24',2,'2006-02-15 21:30:53'),(13787,'2005-08-20 12:15:23',253,188,'2005-08-27 06:24:23',2,'2006-02-15 21:30:53'),(13788,'2005-08-20 12:15:41',3177,393,'2005-08-28 16:28:41',2,'2006-02-15 21:30:53'),(13789,'2005-08-20 12:16:38',2523,53,'2005-08-25 07:29:38',1,'2006-02-15 21:30:53'),(13790,'2005-08-20 12:17:27',1385,11,'2005-08-25 12:20:27',1,'2006-02-15 21:30:53'),(13791,'2005-08-20 12:21:05',1890,67,'2005-08-22 17:58:05',1,'2006-02-15 21:30:53'),(13792,'2005-08-20 12:21:37',4157,78,'2005-08-27 14:28:37',1,'2006-02-15 21:30:53'),(13793,'2005-08-20 12:22:04',2598,424,'2005-08-27 09:51:04',2,'2006-02-15 21:30:53'),(13794,'2005-08-20 12:25:32',2148,557,'2005-08-23 06:38:32',2,'2006-02-15 21:30:53'),(13795,'2005-08-20 12:32:09',2837,331,'2005-08-21 17:28:09',1,'2006-02-15 21:30:53'),(13796,'2005-08-20 12:32:32',28,209,'2005-08-29 10:48:32',2,'2006-02-15 21:30:53'),(13797,'2005-08-20 12:33:36',2857,529,'2005-08-25 18:03:36',1,'2006-02-15 21:30:53'),(13798,'2006-02-14 15:16:03',526,15,NULL,2,'2006-02-15 21:30:53'),(13799,'2005-08-20 12:36:42',4413,196,'2005-08-28 08:47:42',1,'2006-02-15 21:30:53'),(13800,'2005-08-20 12:40:48',1552,407,'2005-08-22 15:06:48',1,'2006-02-15 21:30:53'),(13801,'2005-08-20 12:40:53',1464,433,'2005-08-21 16:29:53',1,'2006-02-15 21:30:53'),(13802,'2005-08-20 12:44:53',2079,156,'2005-08-22 09:18:53',2,'2006-02-15 21:30:53'),(13803,'2005-08-20 12:46:17',1084,486,'2005-08-24 15:44:17',2,'2006-02-15 21:30:53'),(13804,'2005-08-20 12:46:32',2232,19,'2005-08-29 14:04:32',2,'2006-02-15 21:30:53'),(13805,'2005-08-20 12:53:12',349,454,'2005-08-27 15:21:12',1,'2006-02-15 21:30:53'),(13806,'2005-08-20 12:53:46',444,341,'2005-08-21 10:36:46',1,'2006-02-15 21:30:53'),(13807,'2005-08-20 12:55:40',3822,4,'2005-08-28 09:06:40',2,'2006-02-15 21:30:53'),(13808,'2005-08-20 12:55:43',3689,262,'2005-08-29 11:01:43',2,'2006-02-15 21:30:53'),(13809,'2005-08-20 12:56:03',1597,207,'2005-08-27 11:58:03',1,'2006-02-15 21:30:53'),(13810,'2005-08-20 12:59:38',2228,450,'2005-08-21 17:40:38',1,'2006-02-15 21:30:53'),(13811,'2005-08-20 13:00:30',1235,168,'2005-08-24 10:18:30',1,'2006-02-15 21:30:53'),(13812,'2005-08-20 13:01:43',2788,122,'2005-08-22 16:32:43',2,'2006-02-15 21:30:53'),(13813,'2005-08-20 13:03:26',601,455,'2005-08-25 08:42:26',1,'2006-02-15 21:30:53'),(13814,'2005-08-20 13:07:23',2129,436,'2005-08-22 16:23:23',2,'2006-02-15 21:30:53'),(13815,'2005-08-20 13:08:53',3388,582,'2005-08-29 13:11:53',2,'2006-02-15 21:30:53'),(13816,'2005-08-20 13:13:56',273,27,'2005-08-25 09:46:56',1,'2006-02-15 21:30:53'),(13817,'2005-08-20 13:15:30',1935,293,'2005-08-22 18:48:30',2,'2006-02-15 21:30:53'),(13818,'2005-08-20 13:20:09',1283,495,'2005-08-21 18:41:09',1,'2006-02-15 21:30:53'),(13819,'2005-08-20 13:23:15',1459,296,'2005-08-22 16:02:15',2,'2006-02-15 21:30:53'),(13820,'2005-08-20 13:26:37',3191,81,'2005-08-27 14:05:37',1,'2006-02-15 21:30:53'),(13821,'2005-08-20 13:33:47',2402,355,'2005-08-25 18:09:47',1,'2006-02-15 21:30:53'),(13822,'2005-08-20 13:39:28',807,499,'2005-08-24 07:40:28',1,'2006-02-15 21:30:53'),(13823,'2005-08-20 13:42:10',3875,89,'2005-08-22 18:45:10',1,'2006-02-15 21:30:53'),(13824,'2005-08-20 13:43:12',2845,413,'2005-08-22 17:26:12',1,'2006-02-15 21:30:53'),(13825,'2005-08-20 13:43:22',2135,167,'2005-08-29 19:13:22',1,'2006-02-15 21:30:53'),(13826,'2005-08-20 13:46:38',401,436,'2005-08-29 13:07:38',1,'2006-02-15 21:30:53'),(13827,'2005-08-20 13:47:19',1103,342,'2005-08-28 09:13:19',1,'2006-02-15 21:30:53'),(13828,'2005-08-20 13:49:52',2391,450,'2005-08-25 07:49:52',2,'2006-02-15 21:30:53'),(13829,'2005-08-20 13:50:17',3980,146,'2005-08-24 11:30:17',2,'2006-02-15 21:30:53'),(13830,'2005-08-20 13:57:59',2874,61,'2005-08-25 11:29:59',1,'2006-02-15 21:30:53'),(13831,'2005-08-20 13:59:35',570,480,'2005-08-24 12:50:35',1,'2006-02-15 21:30:53'),(13832,'2005-08-20 14:00:25',3299,29,'2005-08-28 10:11:25',1,'2006-02-15 21:30:53'),(13833,'2005-08-20 14:00:29',792,175,'2005-08-29 12:01:29',2,'2006-02-15 21:30:53'),(13834,'2005-08-20 14:03:08',875,426,'2005-08-22 10:12:08',1,'2006-02-15 21:30:53'),(13835,'2005-08-20 14:06:33',3738,143,'2005-08-26 12:15:33',2,'2006-02-15 21:30:53'),(13836,'2005-08-20 14:18:16',4271,375,'2005-08-21 18:13:16',2,'2006-02-15 21:30:53'),(13837,'2005-08-20 14:19:03',3220,67,'2005-08-22 16:25:03',2,'2006-02-15 21:30:53'),(13838,'2005-08-20 14:22:46',1134,437,'2005-08-29 12:28:46',2,'2006-02-15 21:30:53'),(13839,'2005-08-20 14:23:16',1056,437,'2005-08-26 19:11:16',2,'2006-02-15 21:30:53'),(13840,'2005-08-20 14:23:20',1211,40,'2005-08-28 11:53:20',1,'2006-02-15 21:30:53'),(13841,'2005-08-20 14:25:18',3277,203,'2005-08-29 15:49:18',1,'2006-02-15 21:30:53'),(13842,'2005-08-20 14:29:37',4337,180,'2005-08-29 18:19:37',1,'2006-02-15 21:30:53'),(13843,'2005-08-20 14:30:01',3058,308,'2005-08-27 10:06:01',2,'2006-02-15 21:30:53'),(13844,'2005-08-20 14:30:26',983,179,'2005-08-29 17:08:26',1,'2006-02-15 21:30:53'),(13845,'2005-08-20 14:31:21',3993,559,'2005-08-29 18:29:21',1,'2006-02-15 21:30:53'),(13846,'2005-08-20 14:32:31',3289,257,'2005-08-28 16:58:31',1,'2006-02-15 21:30:53'),(13847,'2005-08-20 14:33:59',2647,82,'2005-08-25 08:49:59',1,'2006-02-15 21:30:53'),(13848,'2005-08-20 14:37:49',802,447,'2005-08-25 13:15:49',1,'2006-02-15 21:30:53'),(13849,'2005-08-20 14:42:34',3774,261,'2005-08-24 13:09:34',2,'2006-02-15 21:30:53'),(13850,'2005-08-20 14:43:03',3030,546,'2005-08-27 11:41:03',2,'2006-02-15 21:30:53'),(13851,'2005-08-20 14:44:22',3278,80,'2005-08-22 18:10:22',1,'2006-02-15 21:30:53'),(13852,'2005-08-20 14:45:23',85,535,'2005-08-22 16:47:23',2,'2006-02-15 21:30:53'),(13853,'2005-08-20 14:47:02',1680,186,'2005-08-26 20:32:02',1,'2006-02-15 21:30:53'),(13854,'2005-08-20 14:48:42',4192,158,'2005-08-21 14:55:42',2,'2006-02-15 21:30:53'),(13855,'2005-08-20 14:48:55',1617,96,'2005-08-28 14:45:55',1,'2006-02-15 21:30:53'),(13856,'2005-08-20 14:49:32',4196,407,'2005-08-29 12:37:32',2,'2006-02-15 21:30:53'),(13857,'2005-08-20 14:50:06',2542,366,'2005-08-24 10:38:06',2,'2006-02-15 21:30:53'),(13858,'2005-08-20 14:50:57',2167,33,'2005-08-23 12:10:57',2,'2006-02-15 21:30:53'),(13859,'2005-08-20 14:53:43',4381,504,'2005-08-28 09:50:43',1,'2006-02-15 21:30:53'),(13860,'2005-08-20 14:55:09',558,275,'2005-08-22 20:42:09',1,'2006-02-15 21:30:53'),(13861,'2005-08-20 14:56:53',303,154,'2005-08-22 18:13:53',2,'2006-02-15 21:30:53'),(13862,'2005-08-20 14:57:01',3271,170,'2005-08-27 10:48:01',2,'2006-02-15 21:30:53'),(13863,'2005-08-20 14:57:50',2417,563,'2005-08-29 15:36:50',2,'2006-02-15 21:30:53'),(13864,'2005-08-20 14:59:55',3935,214,'2005-08-22 09:30:55',2,'2006-02-15 21:30:53'),(13865,'2005-08-20 15:04:09',3647,275,'2005-08-24 10:06:09',2,'2006-02-15 21:30:53'),(13866,'2005-08-20 15:05:29',3432,343,'2005-08-23 11:27:29',2,'2006-02-15 21:30:53'),(13867,'2005-08-20 15:05:42',4514,591,'2005-08-29 10:48:42',2,'2006-02-15 21:30:53'),(13868,'2005-08-20 15:06:26',3173,51,'2005-08-22 19:08:26',2,'2006-02-15 21:30:53'),(13869,'2005-08-20 15:08:57',1990,386,'2005-08-29 13:13:57',2,'2006-02-15 21:30:53'),(13870,'2005-08-20 15:09:16',563,167,'2005-08-28 10:00:16',2,'2006-02-15 21:30:53'),(13871,'2005-08-20 15:10:13',3206,372,'2005-08-29 19:43:13',2,'2006-02-15 21:30:53'),(13872,'2005-08-20 15:10:30',2416,421,'2005-08-24 10:14:30',2,'2006-02-15 21:30:53'),(13873,'2005-08-20 15:11:11',1683,306,'2005-08-22 20:13:11',2,'2006-02-15 21:30:53'),(13874,'2005-08-20 15:11:48',72,86,'2005-08-21 18:26:48',2,'2006-02-15 21:30:53'),(13875,'2005-08-20 15:13:11',348,83,'2005-08-21 13:11:11',1,'2006-02-15 21:30:53'),(13876,'2005-08-20 15:15:28',3137,334,'2005-08-23 12:42:28',2,'2006-02-15 21:30:53'),(13877,'2005-08-20 15:16:18',3387,5,'2005-08-22 18:20:18',1,'2006-02-15 21:30:53'),(13878,'2005-08-20 15:17:38',49,481,'2005-08-21 21:11:38',2,'2006-02-15 21:30:53'),(13879,'2005-08-20 15:18:10',4022,112,'2005-08-22 19:23:10',2,'2006-02-15 21:30:53'),(13880,'2005-08-20 15:18:20',3911,268,'2005-08-24 18:03:20',2,'2006-02-15 21:30:53'),(13881,'2005-08-20 15:18:55',2831,144,'2005-08-25 11:25:55',1,'2006-02-15 21:30:53'),(13882,'2005-08-20 15:23:26',3245,51,'2005-08-22 13:03:26',1,'2006-02-15 21:30:53'),(13883,'2005-08-20 15:28:53',584,568,'2005-08-21 13:11:53',1,'2006-02-15 21:30:53'),(13884,'2005-08-20 15:30:51',3182,466,'2005-08-26 13:34:51',1,'2006-02-15 21:30:53'),(13885,'2005-08-20 15:32:09',3195,537,'2005-08-26 15:54:09',1,'2006-02-15 21:30:53'),(13886,'2005-08-20 15:34:43',2248,73,'2005-08-26 11:48:43',2,'2006-02-15 21:30:53'),(13887,'2005-08-20 15:39:00',4002,413,'2005-08-24 16:17:00',2,'2006-02-15 21:30:53'),(13888,'2005-08-20 15:39:42',1943,297,'2005-08-28 13:41:42',1,'2006-02-15 21:30:53'),(13889,'2005-08-20 15:40:06',4406,501,'2005-08-22 14:09:06',2,'2006-02-15 21:30:53'),(13890,'2005-08-20 15:41:00',2965,54,'2005-08-22 16:00:00',1,'2006-02-15 21:30:53'),(13891,'2005-08-20 15:42:05',2042,289,'2005-08-25 13:26:05',1,'2006-02-15 21:30:53'),(13892,'2005-08-20 15:50:17',1236,337,'2005-08-29 13:33:17',2,'2006-02-15 21:30:53'),(13893,'2005-08-20 15:52:52',3503,390,'2005-08-27 16:21:52',2,'2006-02-15 21:30:53'),(13894,'2005-08-20 15:55:20',2649,360,'2005-08-26 17:26:20',2,'2006-02-15 21:30:53'),(13895,'2005-08-20 15:58:28',3060,12,'2005-08-26 15:07:28',2,'2006-02-15 21:30:53'),(13896,'2005-08-20 15:59:56',1338,278,'2005-08-21 20:14:56',2,'2006-02-15 21:30:53'),(13897,'2005-08-20 16:02:28',628,258,'2005-08-23 14:29:28',1,'2006-02-15 21:30:53'),(13898,'2006-02-14 15:16:03',4007,369,NULL,2,'2006-02-15 21:30:53'),(13899,'2005-08-20 16:05:11',427,204,'2005-08-23 15:14:11',2,'2006-02-15 21:30:53'),(13900,'2005-08-20 16:05:41',1140,66,'2005-08-22 15:13:41',1,'2006-02-15 21:30:53'),(13901,'2005-08-20 16:06:53',3281,166,'2005-08-28 11:30:53',1,'2006-02-15 21:30:53'),(13902,'2005-08-20 16:07:08',1165,275,'2005-08-24 16:43:08',2,'2006-02-15 21:30:53'),(13903,'2005-08-20 16:07:55',1676,272,'2005-08-25 18:26:55',1,'2006-02-15 21:30:53'),(13904,'2005-08-20 16:11:34',721,93,'2005-08-26 12:46:34',1,'2006-02-15 21:30:53'),(13905,'2005-08-20 16:12:48',2714,437,'2005-08-28 16:05:48',1,'2006-02-15 21:30:53'),(13906,'2005-08-20 16:16:03',3960,87,'2005-08-21 13:29:03',2,'2006-02-15 21:30:53'),(13907,'2005-08-20 16:17:27',806,328,'2005-08-24 20:14:27',2,'2006-02-15 21:30:53'),(13908,'2005-08-20 16:21:40',3661,532,'2005-08-29 21:16:40',1,'2006-02-15 21:30:53'),(13909,'2005-08-20 16:26:36',1508,309,'2005-08-21 20:59:36',2,'2006-02-15 21:30:53'),(13910,'2005-08-20 16:30:49',252,133,'2005-08-24 13:30:49',2,'2006-02-15 21:30:53'),(13911,'2005-08-20 16:31:33',4400,304,'2005-08-28 19:26:33',2,'2006-02-15 21:30:53'),(13912,'2005-08-20 16:32:10',968,207,'2005-08-29 17:37:10',2,'2006-02-15 21:30:53'),(13913,'2005-08-20 16:37:35',4259,197,'2005-08-26 13:12:35',2,'2006-02-15 21:30:53'),(13914,'2005-08-20 16:38:57',3037,237,'2005-08-26 14:53:57',2,'2006-02-15 21:30:53'),(13915,'2005-08-20 16:42:53',1180,129,'2005-08-23 20:30:53',2,'2006-02-15 21:30:53'),(13916,'2005-08-20 16:43:02',2971,302,'2005-08-25 19:21:02',1,'2006-02-15 21:30:53'),(13917,'2005-08-20 16:43:28',4326,10,'2005-08-29 16:44:28',2,'2006-02-15 21:30:53'),(13918,'2005-08-20 16:47:32',3301,248,'2005-08-21 12:00:32',2,'2006-02-15 21:30:53'),(13919,'2005-08-20 16:47:34',909,129,'2005-08-23 21:27:34',2,'2006-02-15 21:30:53'),(13920,'2005-08-20 16:51:18',3200,460,'2005-08-27 16:05:18',2,'2006-02-15 21:30:53'),(13921,'2005-08-20 16:57:11',3943,59,'2005-08-22 19:25:11',2,'2006-02-15 21:30:53'),(13922,'2005-08-20 17:02:37',1398,237,'2005-08-29 19:28:37',1,'2006-02-15 21:30:53'),(13923,'2005-08-20 17:05:02',3129,588,'2005-08-27 11:22:02',2,'2006-02-15 21:30:53'),(13924,'2005-08-20 17:05:18',3066,444,'2005-08-23 16:54:18',2,'2006-02-15 21:30:53'),(13925,'2005-08-20 17:05:34',4034,565,'2005-08-27 15:32:34',2,'2006-02-15 21:30:53'),(13926,'2005-08-20 17:09:27',932,158,'2005-08-28 13:42:27',2,'2006-02-15 21:30:53'),(13927,'2005-08-20 17:11:58',4284,417,'2005-08-24 12:44:58',1,'2006-02-15 21:30:53'),(13928,'2005-08-20 17:12:28',1121,244,'2005-08-21 13:33:28',1,'2006-02-15 21:30:53'),(13929,'2005-08-20 17:13:48',946,57,'2005-08-28 15:19:48',1,'2006-02-15 21:30:53'),(13930,'2005-08-20 17:15:06',3585,58,'2005-08-21 14:29:06',1,'2006-02-15 21:30:53'),(13931,'2005-08-20 17:16:10',3884,32,'2005-08-27 12:03:10',2,'2006-02-15 21:30:53'),(13932,'2005-08-20 17:17:00',471,441,'2005-08-24 14:06:00',1,'2006-02-15 21:30:53'),(13933,'2005-08-20 17:17:07',647,159,'2005-08-22 18:10:07',2,'2006-02-15 21:30:53'),(13934,'2005-08-20 17:18:48',4567,457,'2005-08-26 15:31:48',1,'2006-02-15 21:30:53'),(13935,'2005-08-20 17:20:49',4426,205,'2005-08-24 16:52:49',2,'2006-02-15 21:30:53'),(13936,'2005-08-20 17:22:35',1731,364,'2005-08-23 20:07:35',2,'2006-02-15 21:30:53'),(13937,'2005-08-20 17:22:51',1755,172,'2005-08-27 15:51:51',1,'2006-02-15 21:30:53'),(13938,'2005-08-20 17:24:45',3743,463,'2005-08-21 18:39:45',1,'2006-02-15 21:30:53'),(13939,'2005-08-20 17:28:01',2700,585,'2005-08-23 14:40:01',2,'2006-02-15 21:30:53'),(13940,'2005-08-20 17:28:57',2638,187,'2005-08-27 22:07:57',1,'2006-02-15 21:30:53'),(13941,'2006-02-14 15:16:03',2727,476,NULL,2,'2006-02-15 21:30:53'),(13942,'2005-08-20 17:30:52',4403,211,'2005-08-25 13:46:52',2,'2006-02-15 21:30:53'),(13943,'2005-08-20 17:31:18',22,464,'2005-08-24 11:33:18',1,'2006-02-15 21:30:53'),(13944,'2005-08-20 17:41:16',3685,408,'2005-08-23 12:02:16',1,'2006-02-15 21:30:53'),(13945,'2005-08-20 17:43:56',3328,270,'2005-08-26 19:19:56',1,'2006-02-15 21:30:53'),(13946,'2005-08-20 17:44:32',3564,529,'2005-08-28 19:19:32',1,'2006-02-15 21:30:53'),(13947,'2005-08-20 17:46:06',2562,218,'2005-08-29 23:44:06',2,'2006-02-15 21:30:53'),(13948,'2005-08-20 17:50:48',4033,410,'2005-08-25 20:56:48',2,'2006-02-15 21:30:53'),(13949,'2005-08-20 17:55:13',1518,34,'2005-08-22 20:49:13',1,'2006-02-15 21:30:53'),(13950,'2005-08-20 17:58:00',3978,93,'2005-08-29 23:23:00',1,'2006-02-15 21:30:53'),(13951,'2005-08-20 17:58:11',2034,40,'2005-08-26 14:50:11',2,'2006-02-15 21:30:53'),(13952,'2006-02-14 15:16:03',224,199,NULL,2,'2006-02-15 21:30:53'),(13953,'2005-08-20 18:00:37',1818,371,'2005-08-28 14:52:37',1,'2006-02-15 21:30:53'),(13954,'2005-08-20 18:02:41',3812,207,'2005-08-27 21:52:41',2,'2006-02-15 21:30:53'),(13955,'2005-08-20 18:05:12',2613,273,'2005-08-29 18:25:12',1,'2006-02-15 21:30:53'),(13956,'2005-08-20 18:08:19',3757,484,'2005-08-29 17:03:19',1,'2006-02-15 21:30:53'),(13957,'2005-08-20 18:09:04',2889,179,'2005-08-23 16:52:04',1,'2006-02-15 21:30:53'),(13958,'2005-08-20 18:11:44',2380,33,'2005-08-28 14:59:44',1,'2006-02-15 21:30:53'),(13959,'2005-08-20 18:16:21',2283,142,'2005-08-22 13:56:21',2,'2006-02-15 21:30:53'),(13960,'2005-08-20 18:16:26',4177,459,'2005-08-29 14:06:26',1,'2006-02-15 21:30:53'),(13961,'2005-08-20 18:16:34',2271,129,'2005-08-21 16:14:34',1,'2006-02-15 21:30:53'),(13962,'2005-08-20 18:18:06',1434,348,'2005-08-24 22:16:06',2,'2006-02-15 21:30:53'),(13963,'2005-08-20 18:20:18',4145,368,'2005-08-24 21:26:18',1,'2006-02-15 21:30:53'),(13964,'2005-08-20 18:24:26',108,128,'2005-08-21 21:19:26',2,'2006-02-15 21:30:53'),(13965,'2006-02-14 15:16:03',670,324,NULL,2,'2006-02-15 21:30:53'),(13966,'2005-08-20 18:28:28',4520,260,'2005-08-22 16:49:28',2,'2006-02-15 21:30:53'),(13967,'2005-08-20 18:28:46',2751,459,'2005-08-26 17:37:46',2,'2006-02-15 21:30:53'),(13968,'2006-02-14 15:16:03',3715,15,NULL,2,'2006-02-15 21:30:53'),(13969,'2005-08-20 18:42:40',1836,237,'2005-08-27 17:33:40',2,'2006-02-15 21:30:53'),(13970,'2005-08-20 18:43:34',1942,418,'2005-08-22 15:17:34',2,'2006-02-15 21:30:53'),(13971,'2005-08-20 18:44:53',1678,64,'2005-08-22 16:25:53',2,'2006-02-15 21:30:53'),(13972,'2005-08-20 18:52:17',1687,553,'2005-08-28 15:19:17',1,'2006-02-15 21:30:53'),(13973,'2005-08-20 18:52:43',1181,58,'2005-08-21 19:11:43',1,'2006-02-15 21:30:53'),(13974,'2005-08-20 18:54:59',1912,479,'2005-08-28 13:02:59',1,'2006-02-15 21:30:53'),(13975,'2005-08-20 18:58:23',3821,286,'2005-08-25 20:58:23',1,'2006-02-15 21:30:53'),(13976,'2005-08-20 19:02:16',1785,278,'2005-08-25 17:58:16',2,'2006-02-15 21:30:53'),(13977,'2005-08-20 19:02:34',1126,115,'2005-08-24 14:14:34',1,'2006-02-15 21:30:53'),(13978,'2005-08-20 19:03:25',1263,260,'2005-08-27 18:02:25',2,'2006-02-15 21:30:53'),(13979,'2005-08-20 19:03:49',2998,211,'2005-08-24 21:23:49',1,'2006-02-15 21:30:53'),(13980,'2005-08-20 19:04:40',1067,391,'2005-08-21 18:36:40',2,'2006-02-15 21:30:53'),(13981,'2005-08-20 19:07:20',3342,249,'2005-08-23 15:13:20',1,'2006-02-15 21:30:53'),(13982,'2005-08-20 19:08:25',2901,448,'2005-08-28 15:59:25',2,'2006-02-15 21:30:53'),(13983,'2005-08-20 19:08:32',457,231,'2005-08-29 23:45:32',1,'2006-02-15 21:30:53'),(13984,'2005-08-20 19:12:30',2183,473,'2005-08-29 22:04:30',1,'2006-02-15 21:30:53'),(13985,'2005-08-20 19:13:06',1081,339,'2005-08-24 21:24:06',2,'2006-02-15 21:30:53'),(13986,'2005-08-20 19:13:23',3701,152,'2005-08-22 20:59:23',2,'2006-02-15 21:30:53'),(13987,'2005-08-20 19:19:30',1443,246,'2005-08-23 15:37:30',2,'2006-02-15 21:30:53'),(13988,'2005-08-20 19:21:28',3567,466,'2005-08-21 22:20:28',2,'2006-02-15 21:30:53'),(13989,'2005-08-20 19:27:50',1470,252,'2005-08-28 15:17:50',2,'2006-02-15 21:30:53'),(13990,'2005-08-20 19:29:23',2272,481,'2005-08-25 18:50:23',2,'2006-02-15 21:30:53'),(13991,'2005-08-20 19:29:44',1971,296,'2005-08-24 21:10:44',1,'2006-02-15 21:30:53'),(13992,'2005-08-20 19:30:35',2798,136,'2005-08-24 19:09:35',2,'2006-02-15 21:30:53'),(13993,'2005-08-20 19:32:29',1158,93,'2005-08-26 16:59:29',2,'2006-02-15 21:30:53'),(13994,'2005-08-20 19:33:21',142,180,'2005-08-24 20:55:21',1,'2006-02-15 21:30:53'),(13995,'2005-08-20 19:34:43',3789,381,'2005-08-25 22:25:43',2,'2006-02-15 21:30:53'),(13996,'2005-08-20 19:45:43',3341,306,'2005-08-22 16:47:43',2,'2006-02-15 21:30:53'),(13997,'2005-08-20 19:51:28',2330,175,'2005-08-26 01:29:28',2,'2006-02-15 21:30:53'),(13998,'2005-08-20 19:52:38',3936,530,'2005-08-26 14:57:38',1,'2006-02-15 21:30:53'),(13999,'2005-08-20 19:53:32',4149,239,'2005-08-26 19:01:32',1,'2006-02-15 21:30:53'),(14000,'2005-08-20 20:06:05',3907,276,'2005-08-28 17:02:05',1,'2006-02-15 21:30:53'),(14001,'2005-08-20 20:07:15',1318,120,'2005-08-27 00:50:15',2,'2006-02-15 21:30:53'),(14002,'2005-08-20 20:12:19',87,33,'2005-08-23 00:23:19',1,'2006-02-15 21:30:53'),(14003,'2005-08-20 20:16:06',3165,256,'2005-08-28 14:36:06',1,'2006-02-15 21:30:53'),(14004,'2005-08-20 20:16:35',3445,358,'2005-08-28 17:23:35',2,'2006-02-15 21:30:53'),(14005,'2005-08-20 20:19:05',1415,135,'2005-08-26 01:42:05',2,'2006-02-15 21:30:53'),(14006,'2005-08-20 20:21:36',2189,186,'2005-08-21 15:26:36',1,'2006-02-15 21:30:53'),(14007,'2005-08-20 20:22:47',374,284,'2005-08-28 20:40:47',2,'2006-02-15 21:30:53'),(14008,'2005-08-20 20:26:00',2427,560,'2005-08-28 17:23:00',2,'2006-02-15 21:30:53'),(14009,'2005-08-20 20:26:53',3004,382,'2005-08-21 23:32:53',2,'2006-02-15 21:30:53'),(14010,'2005-08-20 20:29:46',934,537,'2005-08-26 17:37:46',2,'2006-02-15 21:30:53'),(14011,'2005-08-20 20:32:56',1212,379,'2005-08-28 21:44:56',1,'2006-02-15 21:30:53'),(14012,'2005-08-20 20:42:12',1866,274,'2005-08-23 23:10:12',2,'2006-02-15 21:30:53'),(14013,'2005-08-20 20:42:50',3941,496,'2005-08-25 21:37:50',2,'2006-02-15 21:30:53'),(14014,'2005-08-20 20:47:09',2188,335,'2005-08-21 22:08:09',2,'2006-02-15 21:30:53'),(14015,'2005-08-20 20:47:43',3145,554,'2005-08-26 19:37:43',1,'2006-02-15 21:30:53'),(14016,'2005-08-20 20:52:03',509,220,'2005-08-23 18:04:03',2,'2006-02-15 21:30:53'),(14017,'2005-08-20 20:55:32',920,230,'2005-08-23 16:12:32',1,'2006-02-15 21:30:53'),(14018,'2006-02-14 15:16:03',2136,533,NULL,2,'2006-02-15 21:30:53'),(14019,'2005-08-20 20:59:15',1929,202,'2005-08-28 17:29:15',2,'2006-02-15 21:30:53'),(14020,'2005-08-20 20:59:43',2257,72,'2005-08-23 17:11:43',2,'2006-02-15 21:30:53'),(14021,'2005-08-20 21:02:12',4394,147,'2005-08-27 22:15:12',1,'2006-02-15 21:30:53'),(14022,'2005-08-20 21:08:49',4068,170,'2005-08-29 21:57:49',1,'2006-02-15 21:30:53'),(14023,'2005-08-20 21:10:32',2668,304,'2005-08-23 20:57:32',1,'2006-02-15 21:30:53'),(14024,'2005-08-20 21:13:58',1492,87,'2005-08-29 23:02:58',1,'2006-02-15 21:30:53'),(14025,'2005-08-20 21:19:36',4521,37,'2005-08-29 23:39:36',1,'2006-02-15 21:30:53'),(14026,'2005-08-20 21:21:08',115,231,'2005-08-22 23:19:08',2,'2006-02-15 21:30:53'),(14027,'2005-08-20 21:21:34',284,432,'2005-08-28 17:46:34',1,'2006-02-15 21:30:53'),(14028,'2005-08-20 21:23:03',4061,158,'2005-08-25 17:29:03',2,'2006-02-15 21:30:53'),(14029,'2005-08-20 21:23:11',2653,219,'2005-08-22 18:01:11',2,'2006-02-15 21:30:53'),(14030,'2005-08-20 21:23:54',1027,127,'2005-08-27 01:19:54',1,'2006-02-15 21:30:53'),(14031,'2005-08-20 21:24:24',440,361,'2005-08-23 21:47:24',2,'2006-02-15 21:30:53'),(14032,'2005-08-20 21:26:55',3542,317,'2005-08-26 19:19:55',1,'2006-02-15 21:30:53'),(14033,'2005-08-20 21:30:53',525,243,'2005-08-23 01:45:53',2,'2006-02-15 21:30:53'),(14034,'2005-08-20 21:31:52',3484,200,'2005-08-29 00:13:52',1,'2006-02-15 21:30:53'),(14035,'2005-08-20 21:31:58',2035,260,'2005-08-22 16:28:58',1,'2006-02-15 21:30:53'),(14036,'2005-08-20 21:35:27',202,256,'2005-08-23 03:29:27',1,'2006-02-15 21:30:53'),(14037,'2005-08-20 21:35:58',3655,372,'2005-08-29 23:06:58',2,'2006-02-15 21:30:53'),(14038,'2005-08-20 21:39:23',1069,589,'2005-08-27 23:57:23',2,'2006-02-15 21:30:53'),(14039,'2005-08-20 21:39:43',4187,383,'2005-08-24 19:03:43',1,'2006-02-15 21:30:53'),(14040,'2005-08-20 21:43:44',905,17,'2005-08-25 16:30:44',1,'2006-02-15 21:30:53'),(14041,'2005-08-20 21:45:23',52,247,'2005-08-26 01:42:23',1,'2006-02-15 21:30:53'),(14042,'2005-08-20 21:45:51',505,322,'2005-08-23 19:57:51',2,'2006-02-15 21:30:53'),(14043,'2005-08-20 21:46:43',1485,586,'2005-08-21 18:27:43',2,'2006-02-15 21:30:53'),(14044,'2005-08-20 21:48:38',1422,145,'2005-08-29 02:56:38',1,'2006-02-15 21:30:53'),(14045,'2005-08-20 21:50:11',3010,509,'2005-08-25 19:03:11',2,'2006-02-15 21:30:53'),(14046,'2005-08-20 21:53:21',2352,524,'2005-08-23 17:51:21',2,'2006-02-15 21:30:53'),(14047,'2005-08-20 22:00:43',186,579,'2005-08-24 03:17:43',2,'2006-02-15 21:30:53'),(14048,'2005-08-20 22:03:18',3475,105,'2005-08-25 02:57:18',2,'2006-02-15 21:30:53'),(14049,'2005-08-20 22:08:55',1335,112,'2005-08-28 20:24:55',1,'2006-02-15 21:30:53'),(14050,'2005-08-20 22:09:04',1737,596,'2005-08-26 01:39:04',2,'2006-02-15 21:30:53'),(14051,'2005-08-20 22:09:51',4012,362,'2005-08-29 04:04:51',2,'2006-02-15 21:30:53'),(14052,'2005-08-20 22:11:46',3893,514,'2005-08-22 20:26:46',2,'2006-02-15 21:30:53'),(14053,'2005-08-20 22:13:59',2177,5,'2005-08-26 20:50:59',2,'2006-02-15 21:30:53'),(14054,'2005-08-20 22:17:01',338,50,'2005-08-21 21:34:01',1,'2006-02-15 21:30:53'),(14055,'2005-08-20 22:18:00',1571,148,'2005-08-22 02:09:00',2,'2006-02-15 21:30:53'),(14056,'2005-08-20 22:18:53',1300,22,'2005-08-27 01:05:53',2,'2006-02-15 21:30:53'),(14057,'2005-08-20 22:22:59',1526,333,'2005-08-25 16:58:59',2,'2006-02-15 21:30:53'),(14058,'2005-08-20 22:24:35',178,430,'2005-08-30 02:26:35',1,'2006-02-15 21:30:53'),(14059,'2005-08-20 22:24:44',2045,141,'2005-08-26 21:25:44',2,'2006-02-15 21:30:53'),(14060,'2006-02-14 15:16:03',3100,175,NULL,2,'2006-02-15 21:30:53'),(14061,'2005-08-20 22:32:11',73,53,'2005-08-22 19:28:11',1,'2006-02-15 21:30:53'),(14062,'2005-08-20 22:34:34',2841,239,'2005-08-25 17:11:34',2,'2006-02-15 21:30:53'),(14063,'2005-08-20 22:36:40',1215,275,'2005-08-25 00:18:40',2,'2006-02-15 21:30:53'),(14064,'2005-08-20 22:39:16',2938,103,'2005-08-22 00:45:16',2,'2006-02-15 21:30:53'),(14065,'2005-08-20 22:40:47',3758,190,'2005-08-24 01:47:47',1,'2006-02-15 21:30:53'),(14066,'2005-08-20 22:45:58',2444,274,'2005-08-29 00:23:58',2,'2006-02-15 21:30:53'),(14067,'2005-08-20 22:49:23',1376,259,'2005-08-29 22:28:23',2,'2006-02-15 21:30:53'),(14068,'2005-08-20 22:50:59',818,412,'2005-08-29 00:45:59',1,'2006-02-15 21:30:53'),(14069,'2005-08-20 22:51:25',2239,197,'2005-08-30 00:30:25',2,'2006-02-15 21:30:53'),(14070,'2005-08-20 22:56:34',846,581,'2005-08-29 22:02:34',1,'2006-02-15 21:30:53'),(14071,'2005-08-20 23:01:56',2471,550,'2005-08-22 02:14:56',1,'2006-02-15 21:30:53'),(14072,'2005-08-20 23:07:10',2387,515,'2005-08-23 03:38:10',2,'2006-02-15 21:30:53'),(14073,'2005-08-20 23:12:57',2996,230,'2005-08-28 18:47:57',2,'2006-02-15 21:30:53'),(14074,'2005-08-20 23:16:07',1303,506,'2005-08-26 04:45:07',1,'2006-02-15 21:30:53'),(14075,'2005-08-20 23:18:54',3793,32,'2005-08-26 21:59:54',2,'2006-02-15 21:30:53'),(14076,'2005-08-20 23:20:10',1070,574,'2005-08-24 04:00:10',1,'2006-02-15 21:30:53'),(14077,'2005-08-20 23:24:07',3184,21,'2005-08-29 02:53:07',1,'2006-02-15 21:30:53'),(14078,'2005-08-20 23:26:40',1642,396,'2005-08-28 02:30:40',1,'2006-02-15 21:30:53'),(14079,'2005-08-20 23:29:25',3528,348,'2005-08-25 04:16:25',2,'2006-02-15 21:30:53'),(14080,'2005-08-20 23:29:50',3962,266,'2005-08-26 00:33:50',1,'2006-02-15 21:30:53'),(14081,'2005-08-20 23:35:13',589,392,'2005-08-28 01:41:13',2,'2006-02-15 21:30:53'),(14082,'2005-08-20 23:42:00',3767,179,'2005-08-27 00:59:00',1,'2006-02-15 21:30:53'),(14083,'2005-08-20 23:42:31',1823,176,'2005-08-28 21:44:31',1,'2006-02-15 21:30:53'),(14084,'2005-08-20 23:42:46',900,37,'2005-08-24 20:06:46',1,'2006-02-15 21:30:53'),(14085,'2005-08-20 23:46:24',3506,471,'2005-08-29 02:31:24',2,'2006-02-15 21:30:53'),(14086,'2005-08-20 23:47:54',3244,253,'2005-08-27 22:49:54',1,'2006-02-15 21:30:53'),(14087,'2005-08-20 23:53:40',2368,289,'2005-08-26 20:22:40',1,'2006-02-15 21:30:53'),(14088,'2005-08-20 23:57:24',1184,518,'2005-08-28 21:49:24',1,'2006-02-15 21:30:53'),(14089,'2005-08-20 23:59:02',1400,425,'2005-08-27 00:19:02',1,'2006-02-15 21:30:53'),(14090,'2005-08-21 00:11:16',3254,168,'2005-08-23 19:48:16',2,'2006-02-15 21:30:53'),(14091,'2005-08-21 00:11:17',3304,53,'2005-08-27 18:38:17',1,'2006-02-15 21:30:53'),(14092,'2005-08-21 00:14:32',1596,273,'2005-08-24 22:22:32',2,'2006-02-15 21:30:53'),(14093,'2005-08-21 00:21:29',1176,177,'2005-08-22 04:01:29',1,'2006-02-15 21:30:53'),(14094,'2005-08-21 00:21:35',3674,471,'2005-08-23 05:27:35',2,'2006-02-15 21:30:53'),(14095,'2005-08-21 00:25:45',1550,489,'2005-08-28 23:00:45',1,'2006-02-15 21:30:53'),(14096,'2005-08-21 00:27:46',2089,342,'2005-08-22 22:53:46',1,'2006-02-15 21:30:53'),(14097,'2005-08-21 00:28:48',4351,88,'2005-08-29 22:15:48',1,'2006-02-15 21:30:53'),(14098,'2005-08-21 00:30:32',6,554,NULL,2,'2006-02-23 04:12:08'),(14099,'2005-08-21 00:31:03',2452,224,'2005-08-27 03:18:03',2,'2006-02-15 21:30:53'),(14100,'2005-08-21 00:31:07',4295,397,'2005-08-25 05:31:07',2,'2006-02-15 21:30:53'),(14101,'2005-08-21 00:33:03',1892,19,'2005-08-24 01:59:03',1,'2006-02-15 21:30:53'),(14102,'2005-08-21 00:35:21',3772,584,'2005-08-30 04:51:21',2,'2006-02-15 21:30:53'),(14103,'2005-08-21 00:37:00',1438,409,'2005-08-25 22:09:00',2,'2006-02-15 21:30:53'),(14104,'2005-08-21 00:37:44',912,178,'2005-08-21 22:55:44',2,'2006-02-15 21:30:53'),(14105,'2005-08-21 00:44:34',1111,71,'2005-08-29 19:00:34',1,'2006-02-15 21:30:53'),(14106,'2005-08-21 00:46:01',2673,315,'2005-08-27 23:44:01',1,'2006-02-15 21:30:53'),(14107,'2006-02-14 15:16:03',3998,251,NULL,1,'2006-02-15 21:30:53'),(14108,'2005-08-21 00:52:45',4339,243,'2005-08-21 19:35:45',2,'2006-02-15 21:30:53'),(14109,'2005-08-21 00:52:58',1046,180,'2005-08-22 00:09:58',2,'2006-02-15 21:30:53'),(14110,'2005-08-21 00:53:09',2709,35,'2005-08-24 05:33:09',2,'2006-02-15 21:30:53'),(14111,'2005-08-21 00:59:01',1294,130,'2005-08-22 20:43:01',2,'2006-02-15 21:30:53'),(14112,'2005-08-21 01:00:46',734,141,'2005-08-27 03:46:46',1,'2006-02-15 21:30:53'),(14113,'2005-08-21 01:03:30',931,288,'2005-08-23 06:46:30',2,'2006-02-15 21:30:53'),(14114,'2005-08-21 01:07:11',2270,8,'2005-08-24 20:33:11',1,'2006-02-15 21:30:53'),(14115,'2005-08-21 01:10:29',1945,257,'2005-08-24 01:21:29',1,'2006-02-15 21:30:53'),(14116,'2005-08-21 01:11:17',2356,142,'2005-08-24 23:45:17',2,'2006-02-15 21:30:53'),(14117,'2005-08-21 01:11:59',573,493,'2005-08-22 06:56:59',1,'2006-02-15 21:30:53'),(14118,'2005-08-21 01:13:37',2605,337,'2005-08-28 02:35:37',2,'2006-02-15 21:30:53'),(14119,'2005-08-21 01:15:59',129,53,'2005-08-27 23:36:59',2,'2006-02-15 21:30:53'),(14120,'2005-08-21 01:25:00',4069,302,'2005-08-24 23:21:00',2,'2006-02-15 21:30:53'),(14121,'2005-08-21 01:26:33',4207,417,'2005-08-28 22:47:33',2,'2006-02-15 21:30:53'),(14122,'2005-08-21 01:29:01',3955,86,'2005-08-27 05:31:01',1,'2006-02-15 21:30:53'),(14123,'2005-08-21 01:31:25',143,66,'2005-08-23 02:32:25',1,'2006-02-15 21:30:53'),(14124,'2005-08-21 01:31:51',311,35,'2005-08-24 22:20:51',2,'2006-02-15 21:30:53'),(14125,'2005-08-21 01:32:16',2174,265,'2005-08-26 00:09:16',1,'2006-02-15 21:30:53'),(14126,'2005-08-21 01:32:17',2738,215,'2005-08-23 01:02:17',1,'2006-02-15 21:30:53'),(14127,'2005-08-21 01:33:32',4532,550,'2005-08-22 02:47:32',2,'2006-02-15 21:30:53'),(14128,'2005-08-21 01:35:58',2594,81,'2005-08-21 21:23:58',2,'2006-02-15 21:30:53'),(14129,'2005-08-21 01:42:15',3572,362,'2005-08-23 20:04:15',2,'2006-02-15 21:30:53'),(14130,'2005-08-21 01:43:11',3859,352,'2005-08-27 21:16:11',2,'2006-02-15 21:30:53'),(14131,'2005-08-21 01:43:40',4382,267,'2005-08-29 02:00:40',2,'2006-02-15 21:30:53'),(14132,'2005-08-21 01:43:58',3806,91,'2005-08-26 20:16:58',2,'2006-02-15 21:30:53'),(14133,'2005-08-21 01:44:14',2463,453,'2005-08-30 02:19:14',2,'2006-02-15 21:30:53'),(14134,'2005-08-21 01:45:54',2159,497,'2005-08-24 01:36:54',1,'2006-02-15 21:30:53'),(14135,'2005-08-21 01:53:54',347,59,'2005-08-27 05:57:54',1,'2006-02-15 21:30:53'),(14136,'2005-08-21 01:57:26',268,135,'2005-08-28 01:11:26',1,'2006-02-15 21:30:53'),(14137,'2006-02-14 15:16:03',2346,53,NULL,2,'2006-02-15 21:30:53'),(14138,'2005-08-21 01:59:37',1238,121,'2005-08-30 01:17:37',2,'2006-02-15 21:30:53'),(14139,'2005-08-21 02:04:33',2280,561,'2005-08-22 04:16:33',2,'2006-02-15 21:30:53'),(14140,'2005-08-21 02:04:57',2070,65,'2005-08-29 06:41:57',2,'2006-02-15 21:30:53'),(14141,'2005-08-21 02:07:22',4527,190,'2005-08-30 07:32:22',1,'2006-02-15 21:30:53'),(14142,'2005-08-21 02:07:43',1479,544,'2005-08-23 02:37:43',2,'2006-02-15 21:30:53'),(14143,'2005-08-21 02:10:32',2549,146,'2005-08-23 23:50:32',1,'2006-02-15 21:30:53'),(14144,'2005-08-21 02:10:57',2366,46,'2005-08-28 01:02:57',1,'2006-02-15 21:30:53'),(14145,'2005-08-21 02:11:38',150,314,'2005-08-22 22:19:38',2,'2006-02-15 21:30:53'),(14146,'2005-08-21 02:13:31',2151,192,'2005-08-24 22:47:31',2,'2006-02-15 21:30:53'),(14147,'2005-08-21 02:14:03',1476,366,'2005-08-27 22:38:03',1,'2006-02-15 21:30:53'),(14148,'2005-08-21 02:17:49',1605,528,'2005-08-22 00:12:49',1,'2006-02-15 21:30:53'),(14149,'2005-08-21 02:22:47',3371,518,'2005-08-24 02:36:47',1,'2006-02-15 21:30:53'),(14150,'2005-08-21 02:23:03',2324,161,'2005-08-25 22:50:03',2,'2006-02-15 21:30:53'),(14151,'2005-08-21 02:23:25',2785,426,'2005-08-30 07:08:25',1,'2006-02-15 21:30:53'),(14152,'2005-08-21 02:23:50',2561,379,'2005-08-25 06:05:50',1,'2006-02-15 21:30:53'),(14153,'2005-08-21 02:24:33',1502,120,'2005-08-27 05:28:33',2,'2006-02-15 21:30:53'),(14154,'2005-08-21 02:30:00',951,468,'2005-08-28 01:41:00',2,'2006-02-15 21:30:53'),(14155,'2005-08-21 02:31:35',769,148,'2005-08-27 06:00:35',2,'2006-02-15 21:30:53'),(14156,'2005-08-21 02:35:16',437,147,'2005-08-27 01:32:16',2,'2006-02-15 21:30:53'),(14157,'2005-08-21 02:43:15',4471,128,'2005-08-24 02:47:15',1,'2006-02-15 21:30:53'),(14158,'2005-08-21 02:43:20',474,114,'2005-08-28 02:19:20',1,'2006-02-15 21:30:53'),(14159,'2005-08-21 02:45:58',3231,144,'2005-08-27 04:53:58',1,'2006-02-15 21:30:53'),(14160,'2006-02-14 15:16:03',2428,493,NULL,2,'2006-02-15 21:30:53'),(14161,'2005-08-21 02:51:59',2744,21,'2005-08-28 21:38:59',2,'2006-02-15 21:30:53'),(14162,'2005-08-21 02:55:34',3788,315,'2005-08-27 00:13:34',1,'2006-02-15 21:30:53'),(14163,'2005-08-21 02:56:52',1007,204,'2005-08-21 21:03:52',2,'2006-02-15 21:30:53'),(14164,'2005-08-21 02:58:02',2381,274,'2005-08-29 23:17:02',2,'2006-02-15 21:30:53'),(14165,'2005-08-21 02:59:17',4151,150,'2005-08-24 23:09:17',2,'2006-02-15 21:30:53'),(14166,'2005-08-21 02:59:31',2457,190,'2005-08-24 23:19:31',2,'2006-02-15 21:30:53'),(14167,'2005-08-21 02:59:48',1005,64,'2005-08-29 22:17:48',1,'2006-02-15 21:30:53'),(14168,'2005-08-21 03:00:03',1321,49,'2005-08-29 06:04:03',2,'2006-02-15 21:30:53'),(14169,'2005-08-21 03:00:31',3800,396,'2005-08-30 01:16:31',1,'2006-02-15 21:30:53'),(14170,'2005-08-21 03:00:39',894,259,'2005-08-27 23:07:39',1,'2006-02-15 21:30:53'),(14171,'2005-08-21 03:00:42',4179,320,'2005-08-24 00:54:42',1,'2006-02-15 21:30:53'),(14172,'2006-02-14 15:16:03',2158,450,NULL,2,'2006-02-15 21:30:53'),(14173,'2005-08-21 03:01:01',3175,152,'2005-08-22 02:40:01',1,'2006-02-15 21:30:53'),(14174,'2005-08-21 03:01:45',1862,29,'2005-08-22 07:19:45',2,'2006-02-15 21:30:53'),(14175,'2006-02-14 15:16:03',2021,452,NULL,1,'2006-02-15 21:30:53'),(14176,'2005-08-21 03:09:23',4420,556,'2005-08-26 21:26:23',1,'2006-02-15 21:30:53'),(14177,'2005-08-21 03:11:33',409,121,'2005-08-28 21:41:33',2,'2006-02-15 21:30:53'),(14178,'2005-08-21 03:13:45',2178,524,'2005-08-22 01:50:45',1,'2006-02-15 21:30:53'),(14179,'2005-08-21 03:14:27',3956,79,'2005-08-26 00:46:27',2,'2006-02-15 21:30:53'),(14180,'2005-08-21 03:16:15',796,262,'2005-08-24 22:31:15',2,'2006-02-15 21:30:53'),(14181,'2005-08-21 03:16:30',197,210,'2005-08-29 06:25:30',2,'2006-02-15 21:30:53'),(14182,'2005-08-21 03:17:10',2422,519,'2005-08-24 21:46:10',1,'2006-02-15 21:30:53'),(14183,'2005-08-21 03:24:29',1888,26,'2005-08-22 07:25:29',2,'2006-02-15 21:30:53'),(14184,'2005-08-21 03:24:50',3759,148,'2005-08-29 01:46:50',2,'2006-02-15 21:30:53'),(14185,'2005-08-21 03:28:37',3957,579,'2005-08-26 01:15:37',1,'2006-02-15 21:30:53'),(14186,'2005-08-21 03:31:07',3158,461,'2005-08-28 07:29:07',2,'2006-02-15 21:30:53'),(14187,'2005-08-21 03:32:03',4031,275,'2005-08-25 03:29:03',2,'2006-02-15 21:30:53'),(14188,'2005-08-21 03:32:04',4492,548,'2005-08-22 07:26:04',1,'2006-02-15 21:30:53'),(14189,'2005-08-21 03:32:17',2209,127,'2005-08-22 04:46:17',2,'2006-02-15 21:30:53'),(14190,'2005-08-21 03:35:21',4203,517,'2005-08-29 07:35:21',2,'2006-02-15 21:30:53'),(14191,'2005-08-21 03:35:58',301,423,'2005-08-28 00:28:58',1,'2006-02-15 21:30:53'),(14192,'2005-08-21 03:37:42',3563,26,'2005-08-28 05:31:42',2,'2006-02-15 21:30:53'),(14193,'2005-08-21 03:38:27',513,25,'2005-08-28 09:16:27',1,'2006-02-15 21:30:53'),(14194,'2005-08-21 03:40:11',2003,138,'2005-08-26 07:38:11',1,'2006-02-15 21:30:53'),(14195,'2005-08-21 03:40:35',3732,93,'2005-08-23 01:22:35',1,'2006-02-15 21:30:53'),(14196,'2005-08-21 03:40:40',4477,281,'2005-08-25 05:55:40',1,'2006-02-15 21:30:53'),(14197,'2005-08-21 03:47:25',340,469,'2005-08-30 09:15:25',2,'2006-02-15 21:30:53'),(14198,'2005-08-21 03:48:31',465,381,'2005-08-24 07:10:31',2,'2006-02-15 21:30:53'),(14199,'2005-08-21 03:48:43',658,442,'2005-08-23 04:01:43',1,'2006-02-15 21:30:53'),(14200,'2005-08-21 03:51:27',2339,349,'2005-08-29 22:00:27',1,'2006-02-15 21:30:53'),(14201,'2005-08-21 03:51:34',314,427,'2005-08-30 03:42:34',2,'2006-02-15 21:30:53'),(14202,'2005-08-21 03:51:52',1995,473,'2005-08-22 09:35:52',1,'2006-02-15 21:30:53'),(14203,'2005-08-21 03:51:52',3668,95,'2005-08-24 06:13:52',2,'2006-02-15 21:30:53'),(14204,'2006-02-14 15:16:03',4334,287,NULL,1,'2006-02-15 21:30:53'),(14205,'2005-08-21 03:57:15',315,406,'2005-08-30 08:46:15',2,'2006-02-15 21:30:53'),(14206,'2005-08-21 03:59:26',860,279,'2005-08-26 03:52:26',1,'2006-02-15 21:30:53'),(14207,'2005-08-21 04:08:19',1327,569,'2005-08-29 07:59:19',2,'2006-02-15 21:30:53'),(14208,'2005-08-21 04:09:18',4180,299,'2005-08-22 03:29:18',1,'2006-02-15 21:30:53'),(14209,'2005-08-21 04:17:56',896,472,'2005-08-27 06:57:56',1,'2006-02-15 21:30:53'),(14210,'2005-08-21 04:28:02',1867,468,'2005-08-24 02:14:02',2,'2006-02-15 21:30:53'),(14211,'2005-08-21 04:29:11',300,372,'2005-08-24 02:50:11',2,'2006-02-15 21:30:53'),(14212,'2005-08-21 04:29:26',4540,354,'2005-08-24 00:46:26',2,'2006-02-15 21:30:53'),(14213,'2005-08-21 04:30:47',382,511,'2005-08-24 23:01:47',1,'2006-02-15 21:30:53'),(14214,'2005-08-21 04:30:49',4510,198,'2005-08-26 04:42:49',1,'2006-02-15 21:30:53'),(14215,'2005-08-21 04:34:11',35,54,'2005-08-27 10:30:11',2,'2006-02-15 21:30:53'),(14216,'2006-02-14 15:16:03',3763,186,NULL,1,'2006-02-15 21:30:53'),(14217,'2005-08-21 04:37:56',2847,66,'2005-08-26 03:55:56',2,'2006-02-15 21:30:53'),(14218,'2005-08-21 04:43:59',4087,104,'2005-08-27 10:29:59',1,'2006-02-15 21:30:53'),(14219,'2006-02-14 15:16:03',3718,334,NULL,2,'2006-02-15 21:30:53'),(14220,'2006-02-14 15:16:03',2618,162,NULL,1,'2006-02-15 21:30:53'),(14221,'2005-08-21 04:49:41',3824,51,'2005-08-29 23:52:41',1,'2006-02-15 21:30:53'),(14222,'2005-08-21 04:49:48',714,7,'2005-08-25 05:34:48',2,'2006-02-15 21:30:53'),(14223,'2005-08-21 04:51:51',514,392,'2005-08-29 00:37:51',1,'2006-02-15 21:30:53'),(14224,'2005-08-21 04:53:08',3634,323,'2005-08-27 04:12:08',2,'2006-02-15 21:30:53'),(14225,'2005-08-21 04:53:37',984,4,'2005-08-25 23:39:37',2,'2006-02-15 21:30:53'),(14226,'2005-08-21 04:55:37',1793,316,'2005-08-24 04:32:37',1,'2006-02-15 21:30:53'),(14227,'2005-08-21 04:56:31',4102,277,'2005-08-22 05:04:31',2,'2006-02-15 21:30:53'),(14228,'2005-08-21 04:57:08',2016,71,'2005-08-25 00:06:08',2,'2006-02-15 21:30:53'),(14229,'2005-08-21 04:57:15',4479,186,'2005-08-26 10:00:15',1,'2006-02-15 21:30:53'),(14230,'2005-08-21 04:57:29',844,584,'2005-08-27 08:14:29',2,'2006-02-15 21:30:53'),(14231,'2005-08-21 05:04:34',1244,307,'2005-08-23 04:58:34',1,'2006-02-15 21:30:53'),(14232,'2005-08-21 05:07:02',2710,176,'2005-08-29 06:57:02',1,'2006-02-15 21:30:53'),(14233,'2005-08-21 05:07:08',2943,599,'2005-08-28 03:20:08',1,'2006-02-15 21:30:53'),(14234,'2005-08-21 05:07:12',1439,271,'2005-08-23 06:44:12',2,'2006-02-15 21:30:53'),(14235,'2005-08-21 05:08:42',125,558,'2005-08-29 23:36:42',1,'2006-02-15 21:30:53'),(14236,'2005-08-21 05:13:16',172,25,'2005-08-26 04:03:16',2,'2006-02-15 21:30:53'),(14237,'2005-08-21 05:15:00',3284,410,'2005-08-25 10:06:00',1,'2006-02-15 21:30:53'),(14238,'2005-08-21 05:16:40',3148,192,'2005-08-30 02:13:40',2,'2006-02-15 21:30:53'),(14239,'2005-08-21 05:18:57',1559,416,'2005-08-22 00:12:57',2,'2006-02-15 21:30:53'),(14240,'2005-08-21 05:19:39',3294,12,'2005-08-22 23:25:39',2,'2006-02-15 21:30:53'),(14241,'2005-08-21 05:24:55',2547,291,'2005-08-30 03:33:55',1,'2006-02-15 21:30:53'),(14242,'2005-08-21 05:25:59',1588,68,'2005-08-27 07:22:59',1,'2006-02-15 21:30:53'),(14243,'2006-02-14 15:16:03',1489,264,NULL,1,'2006-02-15 21:30:53'),(14244,'2005-08-21 05:29:55',1150,43,'2005-08-24 01:06:55',1,'2006-02-15 21:30:53'),(14245,'2005-08-21 05:30:54',975,354,'2005-08-26 07:02:54',1,'2006-02-15 21:30:53'),(14246,'2005-08-21 05:34:09',3499,120,'2005-08-26 06:12:09',1,'2006-02-15 21:30:53'),(14247,'2005-08-21 05:35:17',267,302,'2005-08-26 03:22:17',1,'2006-02-15 21:30:53'),(14248,'2005-08-21 05:35:57',725,293,'2005-08-28 05:53:57',2,'2006-02-15 21:30:53'),(14249,'2005-08-21 05:38:05',695,268,'2005-08-28 09:07:05',2,'2006-02-15 21:30:53'),(14250,'2005-08-21 05:39:35',3008,313,'2005-08-28 10:06:35',2,'2006-02-15 21:30:53'),(14251,'2005-08-21 05:42:20',139,486,'2005-08-26 06:20:20',2,'2006-02-15 21:30:53'),(14252,'2005-08-21 05:44:07',2660,13,'2005-08-29 08:53:07',1,'2006-02-15 21:30:53'),(14253,'2005-08-21 05:47:52',4246,456,'2005-08-25 04:28:52',1,'2006-02-15 21:30:53'),(14254,'2005-08-21 05:51:28',1549,589,'2005-08-29 06:05:28',2,'2006-02-15 21:30:53'),(14255,'2005-08-21 05:51:37',3125,492,'2005-08-29 10:00:37',1,'2006-02-15 21:30:53'),(14256,'2005-08-21 05:52:27',2922,331,'2005-08-29 02:10:27',2,'2006-02-15 21:30:53'),(14257,'2005-08-21 05:52:57',3830,178,'2005-08-29 03:18:57',2,'2006-02-15 21:30:53'),(14258,'2005-08-21 05:56:36',752,359,'2005-08-26 06:14:36',1,'2006-02-15 21:30:53'),(14259,'2005-08-21 06:00:22',3705,583,'2005-08-22 05:38:22',2,'2006-02-15 21:30:53'),(14260,'2005-08-21 06:01:08',2961,40,'2005-08-29 09:01:08',2,'2006-02-15 21:30:53'),(14261,'2005-08-21 06:07:24',1426,166,'2005-08-26 09:57:24',1,'2006-02-15 21:30:53'),(14262,'2005-08-21 06:08:13',1430,324,'2005-08-30 10:55:13',1,'2006-02-15 21:30:53'),(14263,'2005-08-21 06:08:15',2595,533,'2005-08-29 09:22:15',2,'2006-02-15 21:30:53'),(14264,'2005-08-21 06:18:22',3426,295,'2005-08-25 08:08:22',1,'2006-02-15 21:30:53'),(14265,'2005-08-21 06:20:14',3116,134,'2005-08-23 09:05:14',1,'2006-02-15 21:30:53'),(14266,'2005-08-21 06:20:51',3543,269,'2005-08-23 00:44:51',1,'2006-02-15 21:30:53'),(14267,'2006-02-14 15:16:03',2199,527,NULL,2,'2006-02-15 21:30:53'),(14268,'2005-08-21 06:21:24',2442,278,'2005-08-23 05:39:24',2,'2006-02-15 21:30:53'),(14269,'2005-08-21 06:22:07',531,241,'2005-08-30 00:41:07',2,'2006-02-15 21:30:53'),(14270,'2005-08-21 06:22:18',4083,171,'2005-08-27 08:04:18',1,'2006-02-15 21:30:53'),(14271,'2005-08-21 06:23:29',4506,224,'2005-08-27 04:49:29',1,'2006-02-15 21:30:53'),(14272,'2005-08-21 06:24:55',3908,243,'2005-08-28 02:25:55',1,'2006-02-15 21:30:53'),(14273,'2005-08-21 06:26:48',2640,388,'2005-08-30 10:34:48',1,'2006-02-15 21:30:53'),(14274,'2005-08-21 06:29:20',3183,405,'2005-08-26 06:25:20',2,'2006-02-15 21:30:53'),(14275,'2005-08-21 06:30:30',3238,163,'2005-08-25 12:28:30',1,'2006-02-15 21:30:53'),(14276,'2005-08-21 06:34:05',3637,318,'2005-08-28 10:13:05',2,'2006-02-15 21:30:53'),(14277,'2005-08-21 06:34:41',2652,566,'2005-08-28 10:53:41',2,'2006-02-15 21:30:53'),(14278,'2006-02-14 15:16:03',2334,557,NULL,2,'2006-02-15 21:30:53'),(14279,'2005-08-21 06:39:08',3325,387,'2005-08-29 11:01:08',2,'2006-02-15 21:30:53'),(14280,'2005-08-21 06:39:58',1561,481,'2005-08-23 04:50:58',1,'2006-02-15 21:30:53'),(14281,'2005-08-21 06:40:48',1848,166,'2005-08-26 11:42:48',2,'2006-02-15 21:30:53'),(14282,'2005-08-21 06:41:29',3107,450,'2005-08-22 12:37:29',1,'2006-02-15 21:30:53'),(14283,'2005-08-21 06:44:14',3052,253,'2005-08-24 01:01:14',1,'2006-02-15 21:30:53'),(14284,'2005-08-21 06:44:37',633,486,'2005-08-28 05:03:37',1,'2006-02-15 21:30:53'),(14285,'2005-08-21 06:50:48',402,249,'2005-08-28 11:35:48',1,'2006-02-15 21:30:53'),(14286,'2005-08-21 06:53:53',2377,558,'2005-08-27 11:37:53',2,'2006-02-15 21:30:53'),(14287,'2005-08-21 06:53:59',2426,427,'2005-08-25 03:10:59',2,'2006-02-15 21:30:53'),(14288,'2005-08-21 06:57:34',587,512,'2005-08-26 11:32:34',1,'2006-02-15 21:30:53'),(14289,'2005-08-21 06:58:49',1185,103,'2005-08-25 11:29:49',2,'2006-02-15 21:30:53'),(14290,'2005-08-21 07:02:59',790,366,'2005-08-28 02:57:59',1,'2006-02-15 21:30:53'),(14291,'2005-08-21 07:03:05',3988,56,'2005-08-26 12:56:05',2,'2006-02-15 21:30:53'),(14292,'2005-08-21 07:06:20',1959,251,'2005-08-22 01:39:20',2,'2006-02-15 21:30:53'),(14293,'2005-08-21 07:06:47',3555,364,'2005-08-22 05:07:47',2,'2006-02-15 21:30:53'),(14294,'2005-08-21 07:07:26',354,455,'2005-08-22 02:20:26',2,'2006-02-15 21:30:53'),(14295,'2005-08-21 07:09:27',2187,336,'2005-08-22 01:27:27',2,'2006-02-15 21:30:53'),(14296,'2005-08-21 07:13:23',3813,275,'2005-08-26 11:14:23',1,'2006-02-15 21:30:53'),(14297,'2005-08-21 07:13:46',1712,566,'2005-08-25 09:07:46',1,'2006-02-15 21:30:53'),(14298,'2005-08-21 07:17:10',4317,410,'2005-08-25 10:10:10',1,'2006-02-15 21:30:53'),(14299,'2005-08-21 07:18:57',4028,342,'2005-08-24 01:28:57',1,'2006-02-15 21:30:53'),(14300,'2005-08-21 07:19:37',690,382,'2005-08-25 12:06:37',2,'2006-02-15 21:30:53'),(14301,'2005-08-21 07:19:48',283,162,'2005-08-28 02:06:48',1,'2006-02-15 21:30:53'),(14302,'2005-08-21 07:19:57',1287,511,'2005-08-28 02:59:57',1,'2006-02-15 21:30:53'),(14303,'2005-08-21 07:22:43',992,475,'2005-08-24 11:52:43',1,'2006-02-15 21:30:53'),(14304,'2005-08-21 07:23:10',2650,417,'2005-08-26 11:21:10',2,'2006-02-15 21:30:53'),(14305,'2005-08-21 07:29:05',2056,58,'2005-08-27 08:18:05',1,'2006-02-15 21:30:53'),(14306,'2005-08-21 07:32:35',4027,453,'2005-08-30 05:53:35',1,'2006-02-15 21:30:53'),(14307,'2005-08-21 07:34:52',2894,328,'2005-08-29 09:45:52',1,'2006-02-15 21:30:53'),(14308,'2005-08-21 07:43:21',3478,419,'2005-08-25 02:39:21',2,'2006-02-15 21:30:53'),(14309,'2005-08-21 07:44:17',4447,468,'2005-08-30 07:23:17',2,'2006-02-15 21:30:53'),(14310,'2005-08-21 07:44:32',95,177,'2005-08-22 09:02:32',1,'2006-02-15 21:30:53'),(14311,'2005-08-21 07:45:47',1761,69,'2005-08-27 02:23:47',2,'2006-02-15 21:30:53'),(14312,'2005-08-21 07:48:34',1090,238,'2005-08-23 04:45:34',1,'2006-02-15 21:30:53'),(14313,'2005-08-21 07:49:53',3384,468,'2005-08-30 05:52:53',2,'2006-02-15 21:30:53'),(14314,'2005-08-21 07:50:14',4115,178,'2005-08-24 10:47:14',2,'2006-02-15 21:30:53'),(14315,'2005-08-21 07:56:39',1164,459,'2005-08-27 04:52:39',1,'2006-02-15 21:30:53'),(14316,'2005-08-21 07:59:47',386,64,'2005-08-23 02:20:47',2,'2006-02-15 21:30:53'),(14317,'2005-08-21 08:00:40',2090,471,'2005-08-27 06:52:40',1,'2006-02-15 21:30:53'),(14318,'2006-02-14 15:16:03',1042,508,NULL,2,'2006-02-15 21:30:53'),(14319,'2005-08-21 08:00:55',4480,410,'2005-08-26 05:04:55',1,'2006-02-15 21:30:53'),(14320,'2005-08-21 08:04:40',3121,199,'2005-08-22 02:09:40',1,'2006-02-15 21:30:53'),(14321,'2005-08-21 08:05:12',967,236,'2005-08-23 02:17:12',1,'2006-02-15 21:30:53'),(14322,'2005-08-21 08:06:30',2818,221,'2005-08-29 10:12:30',2,'2006-02-15 21:30:53'),(14323,'2005-08-21 08:08:43',1257,97,'2005-08-25 10:44:43',1,'2006-02-15 21:30:53'),(14324,'2005-08-21 08:10:56',1361,155,'2005-08-30 12:09:56',1,'2006-02-15 21:30:53'),(14325,'2005-08-21 08:15:38',4432,313,'2005-08-23 08:08:38',2,'2006-02-15 21:30:53'),(14326,'2005-08-21 08:15:41',1052,17,'2005-08-27 05:22:41',1,'2006-02-15 21:30:53'),(14327,'2005-08-21 08:18:18',553,457,'2005-08-30 02:21:18',2,'2006-02-15 21:30:53'),(14328,'2005-08-21 08:18:20',3194,489,'2005-08-25 03:05:20',2,'2006-02-15 21:30:53'),(14329,'2005-08-21 08:22:56',3544,6,'2005-08-28 02:22:56',2,'2006-02-15 21:30:53'),(14330,'2005-08-21 08:29:20',763,84,'2005-08-30 03:59:20',2,'2006-02-15 21:30:53'),(14331,'2005-08-21 08:29:38',3128,372,'2005-08-29 13:18:38',2,'2006-02-15 21:30:53'),(14332,'2005-08-21 08:30:43',1388,496,'2005-08-29 10:51:43',1,'2006-02-15 21:30:53'),(14333,'2005-08-21 08:31:03',2976,93,'2005-08-28 03:39:03',2,'2006-02-15 21:30:53'),(14334,'2005-08-21 08:32:32',1448,595,'2005-08-25 02:53:32',2,'2006-02-15 21:30:53'),(14335,'2005-08-21 08:33:07',2610,263,'2005-08-26 14:16:07',1,'2006-02-15 21:30:53'),(14336,'2005-08-21 08:33:42',3166,362,'2005-08-23 03:27:42',1,'2006-02-15 21:30:53'),(14337,'2005-08-21 08:34:26',3529,506,'2005-08-24 11:31:26',1,'2006-02-15 21:30:53'),(14338,'2005-08-21 08:36:03',1789,205,'2005-08-24 12:31:03',2,'2006-02-15 21:30:53'),(14339,'2005-08-21 08:37:15',1744,30,'2005-08-26 03:37:15',2,'2006-02-15 21:30:53'),(14340,'2005-08-21 08:38:21',2181,230,'2005-08-25 09:25:21',1,'2006-02-15 21:30:53'),(14341,'2005-08-21 08:38:24',4498,560,'2005-08-26 12:36:24',1,'2006-02-15 21:30:53'),(14342,'2005-08-21 08:39:26',2749,559,'2005-08-23 11:40:26',2,'2006-02-15 21:30:53'),(14343,'2005-08-21 08:40:21',3769,238,'2005-08-29 03:06:21',1,'2006-02-15 21:30:53'),(14344,'2005-08-21 08:40:56',1562,341,'2005-08-27 12:40:56',1,'2006-02-15 21:30:53'),(14345,'2005-08-21 08:41:15',1726,598,'2005-08-24 11:59:15',1,'2006-02-15 21:30:53'),(14346,'2005-08-21 08:42:26',109,17,'2005-08-23 09:18:26',2,'2006-02-15 21:30:53'),(14347,'2005-08-21 08:42:31',3862,214,'2005-08-25 07:11:31',2,'2006-02-15 21:30:53'),(14348,'2005-08-21 08:54:26',885,496,'2005-08-24 02:55:26',2,'2006-02-15 21:30:53'),(14349,'2005-08-21 08:54:53',96,119,'2005-08-30 14:27:53',1,'2006-02-15 21:30:53'),(14350,'2005-08-21 08:58:38',3174,222,'2005-08-30 03:29:38',2,'2006-02-15 21:30:53'),(14351,'2005-08-21 09:04:20',2037,66,'2005-08-25 05:27:20',1,'2006-02-15 21:30:53'),(14352,'2005-08-21 09:06:29',1224,527,'2005-08-28 13:36:29',1,'2006-02-15 21:30:53'),(14353,'2005-08-21 09:07:50',1612,129,'2005-08-22 10:31:50',2,'2006-02-15 21:30:53'),(14354,'2005-08-21 09:08:14',1137,382,'2005-08-30 05:27:14',1,'2006-02-15 21:30:53'),(14355,'2005-08-21 09:08:29',649,271,'2005-08-27 10:08:29',2,'2006-02-15 21:30:53'),(14356,'2005-08-21 09:08:51',3169,65,'2005-08-24 04:36:51',2,'2006-02-15 21:30:53'),(14357,'2005-08-21 09:13:09',2906,233,'2005-08-22 05:41:09',2,'2006-02-15 21:30:53'),(14358,'2005-08-21 09:14:28',861,112,'2005-08-24 05:05:28',1,'2006-02-15 21:30:53'),(14359,'2005-08-21 09:16:19',1841,401,'2005-08-22 09:28:19',1,'2006-02-15 21:30:53'),(14360,'2005-08-21 09:16:40',2677,246,'2005-08-29 11:43:40',2,'2006-02-15 21:30:53'),(14361,'2006-02-14 15:16:03',1231,191,NULL,2,'2006-02-15 21:30:53'),(14362,'2005-08-21 09:19:49',1992,312,'2005-08-26 11:06:49',1,'2006-02-15 21:30:53'),(14363,'2005-08-21 09:20:03',2579,560,'2005-08-23 14:26:03',1,'2006-02-15 21:30:53'),(14364,'2005-08-21 09:25:11',3513,236,'2005-08-29 09:04:11',1,'2006-02-15 21:30:53'),(14365,'2005-08-21 09:25:13',618,457,'2005-08-27 11:48:13',1,'2006-02-15 21:30:53'),(14366,'2005-08-21 09:31:39',4011,524,'2005-08-26 11:55:39',2,'2006-02-15 21:30:53'),(14367,'2005-08-21 09:31:44',870,244,'2005-08-26 03:54:44',2,'2006-02-15 21:30:53'),(14368,'2005-08-21 09:31:47',2063,351,'2005-08-30 04:17:47',1,'2006-02-15 21:30:53'),(14369,'2005-08-21 09:33:44',1636,392,'2005-08-25 08:56:44',1,'2006-02-15 21:30:53'),(14370,'2005-08-21 09:35:14',3520,161,'2005-08-27 05:21:14',2,'2006-02-15 21:30:53'),(14371,'2005-08-21 09:37:16',2197,221,'2005-08-27 13:50:16',2,'2006-02-15 21:30:53'),(14372,'2005-08-21 09:39:50',1953,520,'2005-08-28 13:36:50',1,'2006-02-15 21:30:53'),(14373,'2005-08-21 09:44:53',4433,268,'2005-08-25 15:37:53',1,'2006-02-15 21:30:53'),(14374,'2006-02-14 15:16:03',236,213,NULL,2,'2006-02-15 21:30:53'),(14375,'2005-08-21 09:46:35',2507,550,'2005-08-26 10:24:35',2,'2006-02-15 21:30:53'),(14376,'2005-08-21 09:48:56',1936,582,'2005-08-22 12:15:56',2,'2006-02-15 21:30:53'),(14377,'2005-08-21 09:49:28',1325,6,'2005-08-29 13:34:28',1,'2006-02-15 21:30:53'),(14378,'2005-08-21 09:50:02',810,515,'2005-08-30 09:07:02',1,'2006-02-15 21:30:53'),(14379,'2005-08-21 09:53:03',3062,136,'2005-08-24 14:32:03',1,'2006-02-15 21:30:53'),(14380,'2005-08-21 09:53:52',1523,198,'2005-08-25 05:03:52',2,'2006-02-15 21:30:53'),(14381,'2005-08-21 09:55:47',811,391,'2005-08-25 08:23:47',1,'2006-02-15 21:30:53'),(14382,'2005-08-21 10:01:03',4119,119,'2005-08-22 13:21:03',2,'2006-02-15 21:30:53'),(14383,'2005-08-21 10:02:05',1941,482,'2005-08-24 12:21:05',2,'2006-02-15 21:30:53'),(14384,'2005-08-21 10:02:37',2429,371,'2005-08-26 08:20:37',1,'2006-02-15 21:30:53'),(14385,'2005-08-21 10:02:55',4356,317,'2005-08-25 07:19:55',2,'2006-02-15 21:30:53'),(14386,'2005-08-21 10:06:34',3402,514,'2005-08-25 14:19:34',1,'2006-02-15 21:30:53'),(14387,'2005-08-21 10:10:01',1286,295,'2005-08-28 14:16:01',2,'2006-02-15 21:30:53'),(14388,'2005-08-21 10:15:13',1078,274,'2005-08-30 13:41:13',2,'2006-02-15 21:30:53'),(14389,'2005-08-21 10:15:20',2718,145,'2005-08-27 05:39:20',1,'2006-02-15 21:30:53'),(14390,'2005-08-21 10:15:38',3951,366,'2005-08-28 05:50:38',2,'2006-02-15 21:30:53'),(14391,'2005-08-21 10:16:27',3117,205,'2005-08-23 07:00:27',2,'2006-02-15 21:30:53'),(14392,'2005-08-21 10:19:25',847,586,'2005-08-28 15:57:25',2,'2006-02-15 21:30:53'),(14393,'2005-08-21 10:22:51',3937,368,'2005-08-29 08:28:51',1,'2006-02-15 21:30:53'),(14394,'2005-08-21 10:23:10',4555,118,'2005-08-28 09:33:10',1,'2006-02-15 21:30:53'),(14395,'2005-08-21 10:24:00',632,506,'2005-08-28 12:23:00',2,'2006-02-15 21:30:53'),(14396,'2005-08-21 10:24:54',3855,353,'2005-08-22 04:49:54',2,'2006-02-15 21:30:53'),(14397,'2005-08-21 10:25:56',3883,47,'2005-08-24 07:48:56',1,'2006-02-15 21:30:53'),(14398,'2005-08-21 10:27:21',357,505,'2005-08-23 10:46:21',2,'2006-02-15 21:30:53'),(14399,'2005-08-21 10:33:23',3582,188,'2005-08-27 08:00:23',1,'2006-02-15 21:30:53'),(14400,'2005-08-21 10:33:45',3891,569,'2005-08-26 12:05:45',1,'2006-02-15 21:30:53'),(14401,'2005-08-21 10:36:20',3468,407,'2005-08-30 06:45:20',1,'2006-02-15 21:30:53'),(14402,'2005-08-21 10:38:17',749,467,'2005-08-27 08:36:17',2,'2006-02-15 21:30:53'),(14403,'2005-08-21 10:40:34',3581,297,'2005-08-29 11:29:34',1,'2006-02-15 21:30:53'),(14404,'2005-08-21 10:43:04',3660,192,'2005-08-30 10:00:04',1,'2006-02-15 21:30:53'),(14405,'2005-08-21 10:45:01',2777,470,'2005-08-30 04:48:01',2,'2006-02-15 21:30:53'),(14406,'2005-08-21 10:46:35',2741,181,'2005-08-28 15:55:35',1,'2006-02-15 21:30:53'),(14407,'2005-08-21 10:46:51',2403,500,'2005-08-25 09:28:51',2,'2006-02-15 21:30:53'),(14408,'2005-08-21 10:47:24',222,593,'2005-08-27 08:18:24',1,'2006-02-15 21:30:53'),(14409,'2005-08-21 10:53:35',1161,314,'2005-08-25 10:40:35',2,'2006-02-15 21:30:53'),(14410,'2005-08-21 10:54:49',839,196,'2005-08-26 08:28:49',2,'2006-02-15 21:30:53'),(14411,'2005-08-21 10:54:57',2125,502,'2005-08-22 13:17:57',2,'2006-02-15 21:30:53'),(14412,'2005-08-21 11:02:09',212,121,'2005-08-29 06:44:09',1,'2006-02-15 21:30:53'),(14413,'2005-08-21 11:06:33',50,367,'2005-08-29 16:10:33',1,'2006-02-15 21:30:53'),(14414,'2005-08-21 11:08:17',1757,515,'2005-08-23 08:37:17',2,'2006-02-15 21:30:53'),(14415,'2006-02-14 15:16:03',2670,561,NULL,2,'2006-02-15 21:30:53'),(14416,'2005-08-21 11:11:46',3002,384,'2005-08-25 12:33:46',1,'2006-02-15 21:30:53'),(14417,'2005-08-21 11:13:35',1768,596,'2005-08-25 11:27:35',1,'2006-02-15 21:30:53'),(14418,'2005-08-21 11:14:26',89,442,'2005-08-28 08:34:26',2,'2006-02-15 21:30:53'),(14419,'2005-08-21 11:15:46',3146,221,'2005-08-30 16:37:46',1,'2006-02-15 21:30:53'),(14420,'2005-08-21 11:16:15',2495,551,'2005-08-24 06:06:15',2,'2006-02-15 21:30:53'),(14421,'2005-08-21 11:20:21',4402,406,'2005-08-24 06:26:21',1,'2006-02-15 21:30:53'),(14422,'2005-08-21 11:21:46',1382,361,'2005-08-25 13:15:46',1,'2006-02-15 21:30:53'),(14423,'2005-08-21 11:23:59',2873,521,'2005-08-26 11:52:59',2,'2006-02-15 21:30:53'),(14424,'2005-08-21 11:24:11',2535,489,'2005-08-29 13:13:11',2,'2006-02-15 21:30:53'),(14425,'2006-02-14 15:16:03',2752,560,NULL,2,'2006-02-15 21:30:53'),(14426,'2006-02-14 15:16:03',2902,315,NULL,1,'2006-02-15 21:30:53'),(14427,'2005-08-21 11:26:06',2353,163,'2005-08-27 10:39:06',1,'2006-02-15 21:30:53'),(14428,'2005-08-21 11:27:07',1614,458,'2005-08-29 09:50:07',1,'2006-02-15 21:30:53'),(14429,'2005-08-21 11:29:43',2513,66,'2005-08-24 12:05:43',1,'2006-02-15 21:30:53'),(14430,'2005-08-21 11:31:11',2623,5,'2005-08-26 06:29:11',1,'2006-02-15 21:30:53'),(14431,'2005-08-21 11:31:15',1572,106,'2005-08-26 11:22:15',2,'2006-02-15 21:30:53'),(14432,'2005-08-21 11:36:15',2294,138,'2005-08-24 08:02:15',2,'2006-02-15 21:30:53'),(14433,'2005-08-21 11:36:34',732,401,'2005-08-26 08:51:34',1,'2006-02-15 21:30:53'),(14434,'2005-08-21 11:40:46',2085,549,'2005-08-24 05:50:46',1,'2006-02-15 21:30:53'),(14435,'2005-08-21 11:44:37',2919,169,'2005-08-24 08:04:37',1,'2006-02-15 21:30:53'),(14436,'2005-08-21 11:48:27',3473,560,'2005-08-25 15:49:27',2,'2006-02-15 21:30:53'),(14437,'2005-08-21 11:48:32',1504,136,'2005-08-25 11:06:32',2,'2006-02-15 21:30:53'),(14438,'2005-08-21 11:51:10',1621,392,'2005-08-28 17:10:10',1,'2006-02-15 21:30:53'),(14439,'2005-08-21 11:52:41',3903,564,'2005-08-30 10:36:41',1,'2006-02-15 21:30:53'),(14440,'2005-08-21 11:59:04',3495,194,'2005-08-23 10:10:04',1,'2006-02-15 21:30:53'),(14441,'2005-08-21 11:59:38',1210,260,'2005-08-26 11:17:38',2,'2006-02-15 21:30:53'),(14442,'2005-08-21 12:00:21',122,205,'2005-08-23 17:00:21',2,'2006-02-15 21:30:53'),(14443,'2005-08-21 12:06:32',376,447,'2005-08-29 13:44:32',2,'2006-02-15 21:30:53'),(14444,'2005-08-21 12:07:25',2211,225,'2005-08-28 08:36:25',2,'2006-02-15 21:30:53'),(14445,'2005-08-21 12:07:42',3186,256,'2005-08-22 17:51:42',2,'2006-02-15 21:30:53'),(14446,'2005-08-21 12:10:41',4367,21,'2005-08-26 14:42:41',1,'2006-02-15 21:30:53'),(14447,'2005-08-21 12:12:05',1889,584,'2005-08-27 14:47:05',2,'2006-02-15 21:30:53'),(14448,'2005-08-21 12:13:10',1937,263,'2005-08-30 08:46:10',1,'2006-02-15 21:30:53'),(14449,'2005-08-21 12:13:18',653,529,'2005-08-27 15:41:18',2,'2006-02-15 21:30:53'),(14450,'2005-08-21 12:21:25',1194,48,'2005-08-26 14:35:25',2,'2006-02-15 21:30:53'),(14451,'2005-08-21 12:21:44',3967,467,'2005-08-22 15:07:44',2,'2006-02-15 21:30:53'),(14452,'2005-08-21 12:23:20',4231,325,'2005-08-27 06:26:20',1,'2006-02-15 21:30:53'),(14453,'2005-08-21 12:33:34',3312,237,'2005-08-27 11:10:34',1,'2006-02-15 21:30:53'),(14454,'2005-08-21 12:35:49',2475,150,'2005-08-22 16:28:49',2,'2006-02-15 21:30:53'),(14455,'2005-08-21 12:36:11',3442,68,'2005-08-27 08:12:11',2,'2006-02-15 21:30:53'),(14456,'2005-08-21 12:38:09',2520,125,'2005-08-26 08:29:09',1,'2006-02-15 21:30:53'),(14457,'2005-08-21 12:47:38',4288,340,'2005-08-25 13:07:38',1,'2006-02-15 21:30:53'),(14458,'2005-08-21 12:47:53',1769,256,'2005-08-30 17:09:53',2,'2006-02-15 21:30:53'),(14459,'2005-08-21 12:48:08',1532,98,'2005-08-27 10:50:08',2,'2006-02-15 21:30:53'),(14460,'2005-08-21 12:48:48',4137,120,'2005-08-30 16:34:48',2,'2006-02-15 21:30:53'),(14461,'2005-08-21 12:50:33',371,42,'2005-08-30 13:35:33',1,'2006-02-15 21:30:53'),(14462,'2005-08-21 12:50:57',2201,96,'2005-08-27 10:42:57',2,'2006-02-15 21:30:53'),(14463,'2005-08-21 12:51:49',1403,365,'2005-08-29 12:17:49',1,'2006-02-15 21:30:53'),(14464,'2005-08-21 12:52:54',2310,121,'2005-08-25 16:42:54',1,'2006-02-15 21:30:53'),(14465,'2005-08-21 12:54:22',4206,262,'2005-08-28 10:46:22',2,'2006-02-15 21:30:53'),(14466,'2005-08-21 13:03:13',923,442,'2005-08-22 15:19:13',2,'2006-02-15 21:30:53'),(14467,'2005-08-21 13:03:33',1498,522,'2005-08-28 15:28:33',1,'2006-02-15 21:30:53'),(14468,'2005-08-21 13:07:10',4168,224,'2005-08-30 19:05:10',2,'2006-02-15 21:30:53'),(14469,'2005-08-21 13:07:24',1957,554,'2005-08-24 10:37:24',1,'2006-02-15 21:30:53'),(14470,'2005-08-21 13:09:41',3899,379,'2005-08-23 10:20:41',2,'2006-02-15 21:30:53'),(14471,'2005-08-21 13:10:40',1254,395,'2005-08-26 16:49:40',1,'2006-02-15 21:30:53'),(14472,'2005-08-21 13:13:57',4097,184,'2005-08-23 14:04:57',2,'2006-02-15 21:30:53'),(14473,'2005-08-21 13:19:03',2747,298,'2005-08-23 15:12:03',1,'2006-02-15 21:30:53'),(14474,'2005-08-21 13:22:48',2632,294,'2005-08-27 14:13:48',2,'2006-02-15 21:30:53'),(14475,'2005-08-21 13:24:32',3164,2,'2005-08-27 08:59:32',2,'2006-02-15 21:30:53'),(14476,'2005-08-21 13:31:07',2821,101,'2005-08-23 17:06:07',1,'2006-02-15 21:30:53'),(14477,'2005-08-21 13:32:38',1564,126,'2005-08-25 18:02:38',2,'2006-02-15 21:30:53'),(14478,'2005-08-21 13:33:28',2990,231,'2005-08-25 13:33:28',2,'2006-02-15 21:30:53'),(14479,'2005-08-21 13:35:54',2235,324,'2005-08-29 12:12:54',2,'2006-02-15 21:30:53'),(14480,'2005-08-21 13:36:40',229,411,'2005-08-26 08:39:40',1,'2006-02-15 21:30:53'),(14481,'2005-08-21 13:41:14',4099,367,'2005-08-30 07:53:14',2,'2006-02-15 21:30:53'),(14482,'2005-08-21 13:42:45',2765,23,'2005-08-27 11:55:45',1,'2006-02-15 21:30:53'),(14483,'2005-08-21 13:43:59',37,275,'2005-08-28 16:38:59',2,'2006-02-15 21:30:53'),(14484,'2005-08-21 13:47:29',3714,418,'2005-08-23 18:25:29',1,'2006-02-15 21:30:53'),(14485,'2005-08-21 13:52:07',1637,241,'2005-08-30 13:06:07',2,'2006-02-15 21:30:53'),(14486,'2005-08-21 13:52:54',3119,138,'2005-08-23 07:58:54',1,'2006-02-15 21:30:53'),(14487,'2005-08-21 13:53:33',2578,526,'2005-08-29 19:32:33',1,'2006-02-15 21:30:53'),(14488,'2006-02-14 15:16:03',4202,75,NULL,2,'2006-02-15 21:30:53'),(14489,'2005-08-21 13:53:59',2312,9,'2005-08-30 15:45:59',2,'2006-02-15 21:30:53'),(14490,'2005-08-21 13:54:15',1771,205,'2005-08-28 19:08:15',2,'2006-02-15 21:30:53'),(14491,'2005-08-21 13:55:39',2072,226,'2005-08-29 17:51:39',1,'2006-02-15 21:30:53'),(14492,'2005-08-21 13:59:08',1591,266,'2005-08-23 11:09:08',1,'2006-02-15 21:30:53'),(14493,'2005-08-21 14:01:44',2590,389,'2005-08-28 17:20:44',1,'2006-02-15 21:30:53'),(14494,'2005-08-21 14:02:50',169,5,'2005-08-22 16:45:50',2,'2006-02-15 21:30:53'),(14495,'2005-08-21 14:04:39',3215,429,'2005-08-22 16:53:39',2,'2006-02-15 21:30:53'),(14496,'2005-08-21 14:07:35',2185,223,'2005-08-24 12:31:35',1,'2006-02-15 21:30:53'),(14497,'2005-08-21 14:09:47',3240,254,'2005-08-22 11:10:47',2,'2006-02-15 21:30:53'),(14498,'2005-08-21 14:10:44',3971,544,'2005-08-23 08:29:44',1,'2006-02-15 21:30:53'),(14499,'2005-08-21 14:11:19',4109,292,'2005-08-23 16:10:19',2,'2006-02-15 21:30:53'),(14500,'2005-08-21 14:11:30',2024,451,'2005-08-27 12:19:30',1,'2006-02-15 21:30:53'),(14501,'2005-08-21 14:14:38',3588,576,'2005-08-25 17:58:38',1,'2006-02-15 21:30:53'),(14502,'2005-08-21 14:22:28',2986,378,'2005-08-23 10:40:28',1,'2006-02-15 21:30:53'),(14503,'2006-02-14 15:16:03',2144,188,NULL,1,'2006-02-15 21:30:53'),(14504,'2005-08-21 14:23:01',4536,312,'2005-08-27 13:56:01',1,'2006-02-15 21:30:53'),(14505,'2005-08-21 14:26:28',2172,203,'2005-08-29 17:34:28',1,'2006-02-15 21:30:53'),(14506,'2005-08-21 14:32:27',4493,537,'2005-08-24 19:02:27',2,'2006-02-15 21:30:53'),(14507,'2005-08-21 14:32:45',1969,175,'2005-08-28 09:50:45',2,'2006-02-15 21:30:53'),(14508,'2005-08-21 14:33:58',703,396,'2005-08-27 10:45:58',2,'2006-02-15 21:30:53'),(14509,'2005-08-21 14:39:58',541,520,'2005-08-26 13:19:58',1,'2006-02-15 21:30:53'),(14510,'2005-08-21 14:44:41',1868,547,'2005-08-30 20:19:41',1,'2006-02-15 21:30:53'),(14511,'2005-08-21 14:45:34',4452,16,'2005-08-28 10:36:34',2,'2006-02-15 21:30:53'),(14512,'2005-08-21 14:47:09',579,51,'2005-08-24 18:10:09',2,'2006-02-15 21:30:53'),(14513,'2005-08-21 14:51:35',4265,185,'2005-08-24 13:24:35',2,'2006-02-15 21:30:53'),(14514,'2005-08-21 14:51:52',1259,295,'2005-08-30 10:40:52',2,'2006-02-15 21:30:53'),(14515,'2005-08-21 14:52:14',2215,242,'2005-08-27 10:27:14',1,'2006-02-15 21:30:53'),(14516,'2006-02-14 15:16:03',713,457,NULL,2,'2006-02-15 21:30:53'),(14517,'2005-08-21 14:57:03',3568,311,'2005-08-24 13:52:03',2,'2006-02-15 21:30:53'),(14518,'2005-08-21 14:58:58',2734,82,'2005-08-24 13:19:58',2,'2006-02-15 21:30:53'),(14519,'2005-08-21 14:59:29',1541,403,'2005-08-22 11:48:29',2,'2006-02-15 21:30:53'),(14520,'2005-08-21 15:00:49',4533,150,'2005-08-30 19:04:49',1,'2006-02-15 21:30:53'),(14521,'2005-08-21 15:01:32',1538,200,'2005-08-28 19:12:32',1,'2006-02-15 21:30:53'),(14522,'2005-08-21 15:01:34',2101,535,'2005-08-25 16:37:34',1,'2006-02-15 21:30:53'),(14523,'2005-08-21 15:03:45',345,433,'2005-08-22 18:06:45',2,'2006-02-15 21:30:53'),(14524,'2005-08-21 15:05:27',4409,374,'2005-08-29 12:07:27',2,'2006-02-15 21:30:53'),(14525,'2005-08-21 15:06:49',3020,420,'2005-08-22 16:30:49',1,'2006-02-15 21:30:53'),(14526,'2006-02-14 15:16:03',1799,534,NULL,1,'2006-02-15 21:30:53'),(14527,'2005-08-21 15:07:42',3496,232,'2005-08-23 12:31:42',1,'2006-02-15 21:30:53'),(14528,'2005-08-21 15:08:05',4305,46,'2005-08-26 15:58:05',2,'2006-02-15 21:30:53'),(14529,'2005-08-21 15:08:31',1774,380,'2005-08-29 17:15:31',1,'2006-02-15 21:30:53'),(14530,'2005-08-21 15:10:50',1905,77,'2005-08-26 09:20:50',2,'2006-02-15 21:30:53'),(14531,'2006-02-14 15:16:03',4296,568,NULL,2,'2006-02-15 21:30:53'),(14532,'2005-08-21 15:15:03',2057,37,'2005-08-25 17:41:03',2,'2006-02-15 21:30:53'),(14533,'2005-08-21 15:15:19',2202,586,'2005-08-26 12:47:19',1,'2006-02-15 21:30:53'),(14534,'2005-08-21 15:16:29',2514,56,'2005-08-26 16:18:29',1,'2006-02-15 21:30:53'),(14535,'2005-08-21 15:22:37',530,412,'2005-08-29 19:23:37',2,'2006-02-15 21:30:53'),(14536,'2005-08-21 15:22:50',2615,48,'2005-08-27 17:03:50',1,'2006-02-15 21:30:53'),(14537,'2005-08-21 15:24:24',3755,405,'2005-08-23 17:14:24',2,'2006-02-15 21:30:53'),(14538,'2005-08-21 15:28:15',3348,471,'2005-08-22 19:55:15',2,'2006-02-15 21:30:53'),(14539,'2005-08-21 15:29:47',3340,41,'2005-08-28 19:01:47',1,'2006-02-15 21:30:53'),(14540,'2005-08-21 15:34:23',2362,28,'2005-08-27 11:51:23',2,'2006-02-15 21:30:53'),(14541,'2005-08-21 15:34:32',1275,576,'2005-08-25 13:18:32',1,'2006-02-15 21:30:53'),(14542,'2005-08-21 15:36:34',1247,101,'2005-08-27 20:24:34',2,'2006-02-15 21:30:53'),(14543,'2005-08-21 15:39:01',709,579,'2005-08-28 09:47:01',1,'2006-02-15 21:30:53'),(14544,'2005-08-21 15:41:01',2445,589,'2005-08-24 15:20:01',1,'2006-02-15 21:30:53'),(14545,'2005-08-21 15:44:23',2459,13,'2005-08-29 20:09:23',2,'2006-02-15 21:30:53'),(14546,'2005-08-21 15:50:50',1515,466,'2005-08-23 11:37:50',2,'2006-02-15 21:30:53'),(14547,'2005-08-21 15:51:38',1172,265,'2005-08-26 15:35:38',1,'2006-02-15 21:30:53'),(14548,'2005-08-21 15:53:52',226,299,'2005-08-25 15:39:52',2,'2006-02-15 21:30:53'),(14549,'2005-08-21 15:54:21',4117,155,'2005-08-22 17:22:21',1,'2006-02-15 21:30:53'),(14550,'2005-08-21 15:56:39',2814,473,'2005-08-23 21:40:39',1,'2006-02-15 21:30:53'),(14551,'2005-08-21 15:57:25',496,521,'2005-08-28 11:10:25',2,'2006-02-15 21:30:53'),(14552,'2005-08-21 15:59:27',1991,477,'2005-08-27 11:46:27',1,'2006-02-15 21:30:53'),(14553,'2005-08-21 15:59:40',3160,434,'2005-08-23 11:54:40',2,'2006-02-15 21:30:53'),(14554,'2005-08-21 16:03:01',31,38,'2005-08-26 13:09:01',2,'2006-02-15 21:30:53'),(14555,'2005-08-21 16:03:02',1926,440,'2005-08-23 14:18:02',1,'2006-02-15 21:30:53'),(14556,'2005-08-21 16:03:27',475,265,'2005-08-29 15:49:27',1,'2006-02-15 21:30:53'),(14557,'2005-08-21 16:05:11',483,490,'2005-08-27 16:37:11',1,'2006-02-15 21:30:53'),(14558,'2005-08-21 16:10:50',3958,273,'2005-08-28 16:36:50',2,'2006-02-15 21:30:53'),(14559,'2005-08-21 16:11:35',3842,433,'2005-08-30 15:26:35',1,'2006-02-15 21:30:53'),(14560,'2005-08-21 16:13:47',1616,579,'2005-08-26 15:19:47',1,'2006-02-15 21:30:53'),(14561,'2005-08-21 16:20:43',2498,443,'2005-08-27 16:48:43',1,'2006-02-15 21:30:53'),(14562,'2005-08-21 16:22:59',3501,107,'2005-08-22 21:15:59',1,'2006-02-15 21:30:53'),(14563,'2005-08-21 16:23:53',3984,212,'2005-08-25 11:30:53',2,'2006-02-15 21:30:53'),(14564,'2005-08-21 16:24:43',3250,22,'2005-08-26 16:58:43',1,'2006-02-15 21:30:53'),(14565,'2005-08-21 16:24:45',4160,250,'2005-08-25 14:42:45',1,'2006-02-15 21:30:53'),(14566,'2005-08-21 16:25:05',84,87,'2005-08-26 10:31:05',1,'2006-02-15 21:30:53'),(14567,'2005-08-21 16:27:25',3805,214,'2005-08-26 10:47:25',1,'2006-02-15 21:30:53'),(14568,'2005-08-21 16:30:48',3331,582,'2005-08-22 13:49:48',1,'2006-02-15 21:30:53'),(14569,'2005-08-21 16:31:22',884,15,'2005-08-25 21:27:22',2,'2006-02-15 21:30:53'),(14570,'2005-08-21 16:32:32',955,32,'2005-08-30 12:03:32',2,'2006-02-15 21:30:53'),(14571,'2005-08-21 16:40:26',2218,296,'2005-08-29 17:10:26',1,'2006-02-15 21:30:53'),(14572,'2005-08-21 16:44:31',1397,538,'2005-08-26 16:35:31',2,'2006-02-15 21:30:53'),(14573,'2005-08-21 16:44:32',2423,240,'2005-08-23 14:01:32',2,'2006-02-15 21:30:53'),(14574,'2005-08-21 16:50:34',1611,62,'2005-08-26 14:24:34',2,'2006-02-15 21:30:53'),(14575,'2005-08-21 16:51:34',3752,159,'2005-08-30 20:13:34',2,'2006-02-15 21:30:53'),(14576,'2005-08-21 16:52:03',1189,45,'2005-08-28 19:43:03',2,'2006-02-15 21:30:53'),(14577,'2005-08-21 16:52:29',1965,126,'2005-08-26 12:30:29',1,'2006-02-15 21:30:53'),(14578,'2005-08-21 16:53:38',3141,389,'2005-08-28 20:36:38',2,'2006-02-15 21:30:53'),(14579,'2005-08-21 16:54:47',1205,260,'2005-08-28 12:35:47',1,'2006-02-15 21:30:53'),(14580,'2005-08-21 16:56:39',1440,448,'2005-08-28 15:25:39',1,'2006-02-15 21:30:53'),(14581,'2005-08-21 17:07:08',751,243,'2005-08-26 16:02:08',1,'2006-02-15 21:30:53'),(14582,'2005-08-21 17:08:33',1004,438,'2005-08-29 18:04:33',2,'2006-02-15 21:30:53'),(14583,'2005-08-21 17:11:47',1203,455,'2005-08-24 16:16:47',2,'2006-02-15 21:30:53'),(14584,'2005-08-21 17:15:33',2617,481,'2005-08-24 20:24:33',2,'2006-02-15 21:30:53'),(14585,'2005-08-21 17:18:33',82,30,'2005-08-26 11:36:33',1,'2006-02-15 21:30:53'),(14586,'2005-08-21 17:19:09',3094,182,'2005-08-26 17:00:09',1,'2006-02-15 21:30:53'),(14587,'2005-08-21 17:20:55',2329,250,'2005-08-26 17:17:55',1,'2006-02-15 21:30:53'),(14588,'2005-08-21 17:25:53',1350,219,'2005-08-28 21:47:53',2,'2006-02-15 21:30:53'),(14589,'2005-08-21 17:28:55',2810,179,'2005-08-22 23:06:55',1,'2006-02-15 21:30:53'),(14590,'2005-08-21 17:29:10',2633,526,'2005-08-28 20:15:10',1,'2006-02-15 21:30:53'),(14591,'2005-08-21 17:30:09',3410,538,'2005-08-24 12:27:09',1,'2006-02-15 21:30:53'),(14592,'2005-08-21 17:30:17',2681,563,'2005-08-22 20:06:17',2,'2006-02-15 21:30:53'),(14593,'2005-08-21 17:33:18',1399,564,'2005-08-24 22:11:18',1,'2006-02-15 21:30:53'),(14594,'2005-08-21 17:34:24',2978,62,'2005-08-26 22:04:24',2,'2006-02-15 21:30:53'),(14595,'2005-08-21 17:35:17',1879,118,'2005-08-27 12:11:17',1,'2006-02-15 21:30:53'),(14596,'2005-08-21 17:38:37',2010,472,'2005-08-30 20:28:37',1,'2006-02-15 21:30:53'),(14597,'2005-08-21 17:39:41',1160,472,'2005-08-25 14:07:41',1,'2006-02-15 21:30:53'),(14598,'2005-08-21 17:40:05',1113,359,'2005-08-29 18:16:05',2,'2006-02-15 21:30:53'),(14599,'2005-08-21 17:43:42',4575,599,'2005-08-22 18:53:42',1,'2006-02-15 21:30:53'),(14600,'2005-08-21 17:45:21',3532,255,'2005-08-28 19:03:21',1,'2006-02-15 21:30:53'),(14601,'2005-08-21 17:45:52',548,406,'2005-08-29 15:10:52',1,'2006-02-15 21:30:53'),(14602,'2005-08-21 17:48:49',3771,370,'2005-08-28 21:38:49',1,'2006-02-15 21:30:53'),(14603,'2005-08-21 17:51:06',94,26,'2005-08-28 15:36:06',1,'2006-02-15 21:30:53'),(14604,'2006-02-14 15:16:03',1024,585,NULL,2,'2006-02-15 21:30:53'),(14605,'2005-08-21 17:56:06',476,394,'2005-08-24 18:35:06',1,'2006-02-15 21:30:53'),(14606,'2006-02-14 15:16:03',2291,592,NULL,2,'2006-02-15 21:30:53'),(14607,'2005-08-21 17:56:50',4518,417,'2005-08-22 17:44:50',2,'2006-02-15 21:30:53'),(14608,'2005-08-21 17:57:22',3321,90,'2005-08-25 13:20:22',1,'2006-02-15 21:30:53'),(14609,'2005-08-21 17:57:26',1206,551,'2005-08-25 14:04:26',2,'2006-02-15 21:30:53'),(14610,'2005-08-21 17:59:09',1894,260,'2005-08-29 21:36:09',2,'2006-02-15 21:30:53'),(14611,'2005-08-21 18:01:41',4078,443,'2005-08-26 12:34:41',1,'2006-02-15 21:30:53'),(14612,'2005-08-21 18:03:15',4105,445,'2005-08-27 13:39:15',1,'2006-02-15 21:30:53'),(14613,'2005-08-21 18:03:20',3841,20,'2005-08-26 19:46:20',1,'2006-02-15 21:30:53'),(14614,'2005-08-21 18:03:51',3053,468,'2005-08-30 13:37:51',1,'2006-02-15 21:30:53'),(14615,'2005-08-21 18:06:32',2332,171,'2005-08-30 13:19:32',2,'2006-02-15 21:30:53'),(14616,'2006-02-14 15:16:03',4537,532,NULL,1,'2006-02-15 21:30:53'),(14617,'2005-08-21 18:07:40',3562,51,'2005-08-24 23:48:40',2,'2006-02-15 21:30:53'),(14618,'2005-08-21 18:09:51',4490,270,'2005-08-28 22:47:51',1,'2006-02-15 21:30:53'),(14619,'2005-08-21 18:10:03',1589,338,'2005-08-23 13:40:03',2,'2006-02-15 21:30:53'),(14620,'2005-08-21 18:10:43',3272,78,'2005-08-22 15:19:43',2,'2006-02-15 21:30:53'),(14621,'2005-08-21 18:17:59',3622,344,'2005-08-23 14:16:59',1,'2006-02-15 21:30:53'),(14622,'2005-08-21 18:25:59',2702,559,'2005-08-31 00:11:59',2,'2006-02-15 21:30:53'),(14623,'2005-08-21 18:29:13',901,33,'2005-08-26 20:48:13',2,'2006-02-15 21:30:53'),(14624,'2005-08-21 18:32:42',4,344,'2005-08-23 21:09:42',1,'2006-02-15 21:30:53'),(14625,'2005-08-21 18:34:21',2661,507,'2005-08-29 21:41:21',1,'2006-02-15 21:30:53'),(14626,'2005-08-21 18:35:44',1038,554,'2005-08-25 23:54:44',2,'2006-02-15 21:30:53'),(14627,'2005-08-21 18:35:54',2470,49,'2005-08-30 21:17:54',1,'2006-02-15 21:30:53'),(14628,'2005-08-21 18:37:24',3636,331,'2005-08-27 20:25:24',2,'2006-02-15 21:30:53'),(14629,'2005-08-21 18:39:52',761,148,'2005-08-25 19:14:52',2,'2006-02-15 21:30:53'),(14630,'2005-08-21 18:43:44',4049,294,'2005-08-29 17:08:44',2,'2006-02-15 21:30:53'),(14631,'2005-08-21 18:47:49',782,209,'2005-08-28 16:54:49',1,'2006-02-15 21:30:53'),(14632,'2005-08-21 18:48:06',2807,38,'2005-08-25 00:33:06',2,'2006-02-15 21:30:53'),(14633,'2005-08-21 18:51:10',2137,551,'2005-08-25 13:07:10',1,'2006-02-15 21:30:53'),(14634,'2005-08-21 18:51:28',486,494,'2005-08-29 19:30:28',2,'2006-02-15 21:30:53'),(14635,'2005-08-21 18:51:43',2171,108,'2005-08-27 16:30:43',2,'2006-02-15 21:30:53'),(14636,'2005-08-21 18:59:17',1671,339,'2005-08-23 13:19:17',2,'2006-02-15 21:30:53'),(14637,'2005-08-21 19:01:00',1846,76,'2005-08-26 23:03:00',2,'2006-02-15 21:30:53'),(14638,'2005-08-21 19:01:36',3583,216,'2005-08-22 15:09:36',2,'2006-02-15 21:30:53'),(14639,'2005-08-21 19:01:39',3510,210,'2005-08-26 14:08:39',1,'2006-02-15 21:30:53'),(14640,'2005-08-21 19:03:19',1880,253,'2005-08-27 00:37:19',2,'2006-02-15 21:30:53'),(14641,'2005-08-21 19:05:23',2205,147,'2005-08-22 22:30:23',2,'2006-02-15 21:30:53'),(14642,'2005-08-21 19:09:40',1280,81,'2005-08-30 13:25:40',2,'2006-02-15 21:30:53'),(14643,'2005-08-21 19:11:58',798,119,'2005-08-29 19:52:58',1,'2006-02-15 21:30:53'),(14644,'2005-08-21 19:12:12',3905,453,'2005-08-29 17:08:12',1,'2006-02-15 21:30:53'),(14645,'2005-08-21 19:12:47',2369,334,'2005-08-25 21:42:47',1,'2006-02-15 21:30:53'),(14646,'2005-08-21 19:14:48',948,186,'2005-08-23 17:15:48',1,'2006-02-15 21:30:53'),(14647,'2005-08-21 19:15:33',3854,36,'2005-08-30 18:58:33',2,'2006-02-15 21:30:53'),(14648,'2005-08-21 19:18:01',2250,284,'2005-08-25 14:59:01',2,'2006-02-15 21:30:53'),(14649,'2005-08-21 19:19:21',4074,43,'2005-08-22 17:23:21',1,'2006-02-15 21:30:53'),(14650,'2005-08-21 19:24:51',1274,190,'2005-08-25 13:58:51',2,'2006-02-15 21:30:53'),(14651,'2005-08-21 19:31:09',4037,544,'2005-08-28 14:26:09',2,'2006-02-15 21:30:53'),(14652,'2005-08-21 19:32:05',4163,453,'2005-08-23 23:33:05',2,'2006-02-15 21:30:53'),(14653,'2005-08-21 19:35:59',491,593,'2005-08-24 15:31:59',1,'2006-02-15 21:30:53'),(14654,'2005-08-21 19:36:59',687,173,'2005-08-23 22:03:59',2,'2006-02-15 21:30:53'),(14655,'2005-08-21 19:37:10',785,253,'2005-08-22 15:43:10',1,'2006-02-15 21:30:53'),(14656,'2005-08-21 19:39:28',4205,201,'2005-08-24 01:36:28',2,'2006-02-15 21:30:53'),(14657,'2005-08-21 19:39:43',477,244,'2005-08-26 22:39:43',2,'2006-02-15 21:30:53'),(14658,'2005-08-21 19:41:50',1465,473,'2005-08-25 16:11:50',1,'2006-02-15 21:30:53'),(14659,'2005-08-21 19:42:36',928,119,'2005-08-26 14:06:36',1,'2006-02-15 21:30:53'),(14660,'2005-08-21 19:43:21',3433,452,'2005-08-22 20:42:21',1,'2006-02-15 21:30:53'),(14661,'2005-08-21 19:44:21',745,469,'2005-08-27 14:35:21',1,'2006-02-15 21:30:53'),(14662,'2005-08-21 19:45:27',2969,403,'2005-08-23 14:44:27',2,'2006-02-15 21:30:53'),(14663,'2005-08-21 19:47:55',2351,150,'2005-08-27 17:36:55',2,'2006-02-15 21:30:53'),(14664,'2005-08-21 19:48:47',4377,153,'2005-08-27 16:47:47',1,'2006-02-15 21:30:53'),(14665,'2005-08-21 19:49:46',2896,58,'2005-08-30 18:00:46',1,'2006-02-15 21:30:53'),(14666,'2005-08-21 19:51:09',2560,122,'2005-08-30 22:42:09',2,'2006-02-15 21:30:53'),(14667,'2005-08-21 19:51:11',2608,55,'2005-08-23 17:37:11',1,'2006-02-15 21:30:53'),(14668,'2005-08-21 19:51:30',1450,152,'2005-08-29 19:38:30',2,'2006-02-15 21:30:53'),(14669,'2005-08-21 19:54:06',3154,317,'2005-08-25 23:12:06',1,'2006-02-15 21:30:53'),(14670,'2005-08-21 19:54:11',4324,537,'2005-08-27 21:42:11',2,'2006-02-15 21:30:53'),(14671,'2005-08-21 19:59:30',2622,53,'2005-08-22 19:39:30',1,'2006-02-15 21:30:53'),(14672,'2005-08-21 19:59:33',4144,325,'2005-08-30 19:40:33',1,'2006-02-15 21:30:53'),(14673,'2005-08-21 20:01:18',1827,445,'2005-08-25 18:55:18',1,'2006-02-15 21:30:53'),(14674,'2005-08-21 20:01:34',572,300,'2005-08-27 18:33:34',1,'2006-02-15 21:30:53'),(14675,'2005-08-21 20:01:51',328,170,'2005-08-26 14:30:51',2,'2006-02-15 21:30:53'),(14676,'2005-08-21 20:02:18',877,49,'2005-08-26 21:55:18',1,'2006-02-15 21:30:53'),(14677,'2005-08-21 20:12:30',4411,26,'2005-08-28 15:11:30',1,'2006-02-15 21:30:53'),(14678,'2005-08-21 20:12:43',1911,383,'2005-08-31 02:11:43',2,'2006-02-15 21:30:53'),(14679,'2005-08-21 20:14:58',1520,193,'2005-08-23 23:39:58',1,'2006-02-15 21:30:53'),(14680,'2005-08-21 20:19:52',4469,524,'2005-08-28 17:10:52',1,'2006-02-15 21:30:53'),(14681,'2005-08-21 20:25:13',1083,212,'2005-08-30 19:48:13',1,'2006-02-15 21:30:53'),(14682,'2005-08-21 20:25:57',2974,314,'2005-08-28 00:42:57',2,'2006-02-15 21:30:53'),(14683,'2005-08-21 20:27:44',3850,342,'2005-08-29 16:54:44',1,'2006-02-15 21:30:53'),(14684,'2005-08-21 20:28:26',3593,369,'2005-08-28 19:01:26',2,'2006-02-15 21:30:53'),(14685,'2005-08-21 20:31:25',1320,69,'2005-08-22 21:02:25',1,'2006-02-15 21:30:53'),(14686,'2005-08-21 20:32:08',814,34,'2005-08-26 18:07:08',1,'2006-02-15 21:30:53'),(14687,'2005-08-21 20:32:16',306,550,'2005-08-26 16:17:16',2,'2006-02-15 21:30:53'),(14688,'2005-08-21 20:32:37',2573,219,'2005-08-27 00:06:37',2,'2006-02-15 21:30:53'),(14689,'2005-08-21 20:33:00',1124,463,'2005-08-22 18:10:00',1,'2006-02-15 21:30:53'),(14690,'2005-08-21 20:42:25',3649,456,'2005-08-29 18:42:25',2,'2006-02-15 21:30:53'),(14691,'2005-08-21 20:42:29',2131,404,'2005-08-24 01:22:29',1,'2006-02-15 21:30:53'),(14692,'2005-08-21 20:43:21',1908,192,'2005-08-28 19:02:21',1,'2006-02-15 21:30:53'),(14693,'2005-08-21 20:44:19',3454,269,'2005-08-29 00:37:19',2,'2006-02-15 21:30:53'),(14694,'2005-08-21 20:46:42',2767,363,'2005-08-23 16:18:42',1,'2006-02-15 21:30:53'),(14695,'2005-08-21 20:46:47',412,206,'2005-08-22 22:25:47',2,'2006-02-15 21:30:53'),(14696,'2005-08-21 20:48:05',3776,435,'2005-08-25 14:55:05',1,'2006-02-15 21:30:53'),(14697,'2005-08-21 20:49:21',48,409,'2005-08-26 01:39:21',2,'2006-02-15 21:30:53'),(14698,'2005-08-21 20:49:58',4255,196,'2005-08-29 20:13:58',2,'2006-02-15 21:30:53'),(14699,'2005-08-21 20:50:48',1427,3,'2005-08-29 18:08:48',2,'2006-02-15 21:30:53'),(14700,'2005-08-21 20:53:40',3446,360,'2005-08-23 22:01:40',1,'2006-02-15 21:30:53'),(14701,'2005-08-21 20:54:32',3034,34,'2005-08-30 16:46:32',1,'2006-02-15 21:30:53'),(14702,'2005-08-21 21:00:03',4096,345,'2005-08-30 16:59:03',1,'2006-02-15 21:30:53'),(14703,'2005-08-21 21:01:19',4329,29,'2005-08-22 15:13:19',2,'2006-02-15 21:30:53'),(14704,'2005-08-21 21:02:22',4062,248,'2005-08-27 23:10:22',2,'2006-02-15 21:30:53'),(14705,'2005-08-21 21:02:55',2493,243,'2005-08-25 20:20:55',2,'2006-02-15 21:30:53'),(14706,'2005-08-21 21:04:42',4494,589,'2005-08-22 19:55:42',2,'2006-02-15 21:30:53'),(14707,'2005-08-21 21:06:29',2916,530,'2005-08-30 23:37:29',1,'2006-02-15 21:30:53'),(14708,'2005-08-21 21:07:23',2828,226,'2005-08-28 15:47:23',1,'2006-02-15 21:30:53'),(14709,'2005-08-21 21:07:59',1856,300,'2005-08-31 02:19:59',1,'2006-02-15 21:30:53'),(14710,'2005-08-21 21:15:23',1922,587,'2005-08-30 19:45:23',1,'2006-02-15 21:30:53'),(14711,'2005-08-21 21:22:07',1973,448,'2005-08-30 16:24:07',2,'2006-02-15 21:30:53'),(14712,'2005-08-21 21:22:56',1198,226,'2005-08-25 01:53:56',1,'2006-02-15 21:30:53'),(14713,'2005-08-21 21:27:24',3350,148,'2005-08-23 20:26:24',1,'2006-02-15 21:30:53'),(14714,'2005-08-21 21:27:43',1,279,'2005-08-30 22:26:43',1,'2006-02-15 21:30:53'),(14715,'2005-08-21 21:28:18',4453,287,'2005-08-26 22:13:18',2,'2006-02-15 21:30:53'),(14716,'2005-08-21 21:29:55',2285,78,'2005-08-23 18:34:55',2,'2006-02-15 21:30:53'),(14717,'2005-08-21 21:30:39',3839,366,'2005-08-26 16:58:39',2,'2006-02-15 21:30:53'),(14718,'2005-08-21 21:39:25',3618,340,'2005-08-26 22:07:25',2,'2006-02-15 21:30:53'),(14719,'2005-08-21 21:41:57',4091,599,'2005-08-25 20:37:57',1,'2006-02-15 21:30:53'),(14720,'2005-08-21 21:43:53',3617,395,'2005-08-25 18:21:53',1,'2006-02-15 21:30:53'),(14721,'2005-08-21 21:50:51',4257,349,'2005-08-30 19:21:51',1,'2006-02-15 21:30:53'),(14722,'2005-08-21 21:50:53',2930,236,'2005-08-30 03:13:53',1,'2006-02-15 21:30:53'),(14723,'2005-08-21 21:52:32',2755,548,'2005-08-31 00:03:32',2,'2006-02-15 21:30:53'),(14724,'2005-08-21 21:53:47',3559,552,'2005-08-23 20:14:47',2,'2006-02-15 21:30:53'),(14725,'2005-08-21 22:02:08',4427,403,'2005-08-23 03:59:08',2,'2006-02-15 21:30:53'),(14726,'2005-08-21 22:08:52',4556,216,'2005-08-22 18:28:52',1,'2006-02-15 21:30:53'),(14727,'2005-08-21 22:12:45',650,275,'2005-08-25 00:46:45',1,'2006-02-15 21:30:53'),(14728,'2005-08-21 22:15:36',2671,474,'2005-08-25 17:14:36',2,'2006-02-15 21:30:53'),(14729,'2005-08-21 22:16:57',2483,289,'2005-08-27 21:32:57',1,'2006-02-15 21:30:53'),(14730,'2005-08-21 22:21:11',2949,439,'2005-08-30 03:02:11',1,'2006-02-15 21:30:53'),(14731,'2005-08-21 22:21:49',1351,154,'2005-08-24 16:27:49',1,'2006-02-15 21:30:53'),(14732,'2005-08-21 22:22:29',1915,482,'2005-08-23 18:34:29',1,'2006-02-15 21:30:53'),(14733,'2005-08-21 22:22:33',398,408,'2005-08-26 21:01:33',1,'2006-02-15 21:30:53'),(14734,'2006-02-14 15:16:03',1369,448,NULL,2,'2006-02-15 21:30:53'),(14735,'2005-08-21 22:25:09',950,35,'2005-08-23 21:16:09',1,'2006-02-15 21:30:53'),(14736,'2005-08-21 22:25:53',207,139,'2005-08-25 19:01:53',2,'2006-02-15 21:30:53'),(14737,'2005-08-21 22:27:11',1842,124,'2005-08-25 18:51:11',2,'2006-02-15 21:30:53'),(14738,'2005-08-21 22:29:13',3315,521,'2005-08-29 21:19:13',1,'2006-02-15 21:30:53'),(14739,'2005-08-21 22:33:22',4026,226,'2005-08-22 19:45:22',1,'2006-02-15 21:30:53'),(14740,'2005-08-21 22:35:33',1717,333,'2005-08-26 17:49:33',1,'2006-02-15 21:30:53'),(14741,'2006-02-14 15:16:03',612,60,NULL,2,'2006-02-15 21:30:53'),(14742,'2005-08-21 22:39:01',2988,421,'2005-08-26 00:17:01',1,'2006-02-15 21:30:53'),(14743,'2005-08-21 22:41:56',4570,2,'2005-08-29 00:18:56',1,'2006-02-15 21:30:53'),(14744,'2005-08-21 22:45:21',800,213,'2005-08-29 23:57:21',1,'2006-02-15 21:30:53'),(14745,'2005-08-21 22:53:01',4399,277,'2005-08-23 23:22:01',1,'2006-02-15 21:30:53'),(14746,'2005-08-21 22:54:02',3197,284,'2005-08-27 17:04:02',2,'2006-02-15 21:30:53'),(14747,'2005-08-21 23:00:02',201,153,'2005-08-26 18:58:02',2,'2006-02-15 21:30:53'),(14748,'2005-08-21 23:02:02',1697,81,'2005-08-28 05:01:02',2,'2006-02-15 21:30:53'),(14749,'2005-08-21 23:08:33',831,235,'2005-08-29 20:46:33',2,'2006-02-15 21:30:53'),(14750,'2005-08-21 23:09:32',918,303,'2005-08-30 00:46:32',2,'2006-02-15 21:30:53'),(14751,'2005-08-21 23:11:23',1156,195,'2005-08-30 20:01:23',2,'2006-02-15 21:30:53'),(14752,'2005-08-21 23:11:42',1252,362,'2005-08-28 22:12:42',1,'2006-02-15 21:30:53'),(14753,'2005-08-21 23:11:43',1803,155,'2005-08-22 22:25:43',2,'2006-02-15 21:30:53'),(14754,'2005-08-21 23:17:26',2355,137,'2005-08-29 18:55:26',2,'2006-02-15 21:30:53'),(14755,'2005-08-21 23:18:08',862,328,'2005-08-27 01:06:08',2,'2006-02-15 21:30:53'),(14756,'2005-08-21 23:21:23',564,288,'2005-08-24 01:44:23',1,'2006-02-15 21:30:53'),(14757,'2005-08-21 23:23:37',1154,473,'2005-08-26 23:24:37',2,'2006-02-15 21:30:53'),(14758,'2005-08-21 23:24:52',2372,339,'2005-08-27 04:25:52',2,'2006-02-15 21:30:53'),(14759,'2005-08-21 23:28:58',3871,362,'2005-08-31 00:35:58',2,'2006-02-15 21:30:53'),(14760,'2006-02-14 15:16:03',1367,355,NULL,1,'2006-02-15 21:30:53'),(14761,'2005-08-21 23:30:28',2657,490,'2005-08-26 03:26:28',1,'2006-02-15 21:30:53'),(14762,'2005-08-21 23:33:57',4249,1,'2005-08-23 01:30:57',1,'2006-02-15 21:30:53'),(14763,'2005-08-21 23:34:00',1480,116,'2005-08-31 03:58:00',2,'2006-02-15 21:30:53'),(14764,'2005-08-21 23:37:47',1270,529,'2005-08-24 00:23:47',2,'2006-02-15 21:30:53'),(14765,'2005-08-21 23:40:28',2817,435,'2005-08-25 04:55:28',2,'2006-02-15 21:30:53'),(14766,'2005-08-21 23:42:20',768,523,'2005-08-26 03:46:20',1,'2006-02-15 21:30:53'),(14767,'2005-08-21 23:43:00',1232,69,'2005-08-29 05:26:00',1,'2006-02-15 21:30:53'),(14768,'2005-08-21 23:44:53',3465,570,'2005-08-27 20:33:53',1,'2006-02-15 21:30:53'),(14769,'2006-02-14 15:16:03',1800,361,NULL,1,'2006-02-15 21:30:53'),(14770,'2005-08-21 23:47:16',2977,372,'2005-08-25 04:48:16',1,'2006-02-15 21:30:53'),(14771,'2005-08-21 23:50:15',2665,149,'2005-08-28 22:55:15',2,'2006-02-15 21:30:53'),(14772,'2005-08-21 23:50:39',4047,411,'2005-08-30 20:44:39',2,'2006-02-15 21:30:53'),(14773,'2005-08-21 23:50:57',2541,413,'2005-08-26 04:45:57',2,'2006-02-15 21:30:53'),(14774,'2005-08-21 23:52:32',3185,252,'2005-08-26 23:42:32',2,'2006-02-15 21:30:53'),(14775,'2005-08-21 23:53:07',4044,400,'2005-08-22 18:07:07',2,'2006-02-15 21:30:53'),(14776,'2005-08-21 23:53:35',3488,15,'2005-08-24 02:00:35',2,'2006-02-15 21:30:53'),(14777,'2005-08-21 23:55:50',237,389,'2005-08-28 04:31:50',1,'2006-02-15 21:30:53'),(14778,'2005-08-21 23:56:30',2152,396,'2005-08-26 00:07:30',2,'2006-02-15 21:30:53'),(14779,'2005-08-22 00:00:56',1087,279,'2005-08-31 00:01:56',2,'2006-02-15 21:30:53'),(14780,'2005-08-22 00:06:33',3171,491,'2005-08-22 22:02:33',2,'2006-02-15 21:30:53'),(14781,'2005-08-22 00:15:12',3458,71,'2005-08-29 21:02:12',1,'2006-02-15 21:30:53'),(14782,'2005-08-22 00:17:20',1727,211,'2005-08-23 01:24:20',1,'2006-02-15 21:30:53'),(14783,'2005-08-22 00:21:57',3419,332,'2005-08-28 01:27:57',2,'2006-02-15 21:30:53'),(14784,'2005-08-22 00:23:13',441,117,'2005-08-28 03:42:13',1,'2006-02-15 21:30:53'),(14785,'2005-08-22 00:24:37',1981,560,'2005-08-25 04:15:37',1,'2006-02-15 21:30:53'),(14786,'2005-08-22 00:24:42',2959,370,'2005-08-25 19:36:42',1,'2006-02-15 21:30:53'),(14787,'2005-08-22 00:25:59',2634,38,'2005-08-28 22:30:59',2,'2006-02-15 21:30:53'),(14788,'2005-08-22 00:27:59',1917,139,'2005-08-29 23:54:59',2,'2006-02-15 21:30:53'),(14789,'2005-08-22 00:29:39',2344,279,'2005-08-25 02:25:39',1,'2006-02-15 21:30:53'),(14790,'2005-08-22 00:34:17',1002,397,'2005-08-31 02:27:17',1,'2006-02-15 21:30:53'),(14791,'2005-08-22 00:35:55',1490,317,'2005-08-30 20:23:55',1,'2006-02-15 21:30:53'),(14792,'2005-08-22 00:36:41',4436,396,'2005-08-30 18:58:41',1,'2006-02-15 21:30:53'),(14793,'2005-08-22 00:37:57',4285,154,'2005-08-29 05:44:57',2,'2006-02-15 21:30:53'),(14794,'2005-08-22 00:39:31',413,156,'2005-08-28 20:08:31',2,'2006-02-15 21:30:53'),(14795,'2005-08-22 00:40:22',1695,303,'2005-08-26 01:37:22',1,'2006-02-15 21:30:53'),(14796,'2005-08-22 00:40:49',941,441,'2005-08-30 03:59:49',1,'2006-02-15 21:30:53'),(14797,'2005-08-22 00:41:24',1131,546,'2005-08-23 18:51:24',1,'2006-02-15 21:30:53'),(14798,'2005-08-22 00:44:08',7,92,'2005-08-27 02:18:08',2,'2006-02-15 21:30:53'),(14799,'2005-08-22 00:44:57',1276,454,'2005-08-24 20:08:57',2,'2006-02-15 21:30:53'),(14800,'2005-08-22 00:46:18',3554,533,'2005-08-26 01:44:18',2,'2006-02-15 21:30:53'),(14801,'2005-08-22 00:46:54',1677,184,'2005-08-30 19:03:54',1,'2006-02-15 21:30:53'),(14802,'2005-08-22 00:48:23',707,505,'2005-08-28 01:02:23',1,'2006-02-15 21:30:53'),(14803,'2005-08-22 00:49:10',2525,278,'2005-08-22 23:44:10',2,'2006-02-15 21:30:53'),(14804,'2005-08-22 00:51:25',372,94,'2005-08-26 21:15:25',1,'2006-02-15 21:30:53'),(14805,'2005-08-22 00:52:01',783,169,'2005-08-23 03:28:01',2,'2006-02-15 21:30:53'),(14806,'2005-08-22 00:53:08',2049,231,'2005-08-23 06:26:08',2,'2006-02-15 21:30:53'),(14807,'2005-08-22 00:57:43',335,90,'2005-08-26 23:40:43',1,'2006-02-15 21:30:53'),(14808,'2005-08-22 00:58:35',1657,362,'2005-08-29 20:16:35',2,'2006-02-15 21:30:53'),(14809,'2005-08-22 01:00:42',1077,188,'2005-08-29 19:55:42',1,'2006-02-15 21:30:53'),(14810,'2005-08-22 01:08:34',1982,78,'2005-08-25 07:00:34',2,'2006-02-15 21:30:53'),(14811,'2005-08-22 01:09:04',1613,53,'2005-08-26 19:30:04',1,'2006-02-15 21:30:53'),(14812,'2005-08-22 01:10:32',4282,211,'2005-08-26 05:21:32',1,'2006-02-15 21:30:53'),(14813,'2005-08-22 01:11:37',3364,142,'2005-08-24 05:57:37',2,'2006-02-15 21:30:53'),(14814,'2005-08-22 01:12:14',3109,250,'2005-08-27 23:24:14',2,'2006-02-15 21:30:53'),(14815,'2005-08-22 01:12:44',1183,314,'2005-08-24 01:42:44',2,'2006-02-15 21:30:53'),(14816,'2005-08-22 01:15:51',4086,534,'2005-08-28 04:11:51',1,'2006-02-15 21:30:53'),(14817,'2005-08-22 01:17:16',910,215,'2005-08-27 02:43:16',1,'2006-02-15 21:30:53'),(14818,'2005-08-22 01:17:18',1619,580,'2005-08-26 05:40:18',1,'2006-02-15 21:30:53'),(14819,'2005-08-22 01:17:19',2890,410,'2005-08-30 05:54:19',1,'2006-02-15 21:30:53'),(14820,'2005-08-22 01:18:37',1409,52,'2005-08-23 19:44:37',1,'2006-02-15 21:30:53'),(14821,'2005-08-22 01:20:19',3155,62,'2005-08-29 03:06:19',2,'2006-02-15 21:30:53'),(14822,'2005-08-22 01:21:14',2835,52,'2005-08-30 03:59:14',1,'2006-02-15 21:30:53'),(14823,'2005-08-22 01:24:42',680,503,'2005-08-22 19:45:42',2,'2006-02-15 21:30:53'),(14824,'2005-08-22 01:27:51',4162,594,'2005-08-23 03:24:51',2,'2006-02-15 21:30:53'),(14825,'2005-08-22 01:27:57',1449,1,'2005-08-27 07:01:57',2,'2006-02-15 21:30:53'),(14826,'2005-08-22 01:32:14',4023,426,'2005-08-23 03:52:14',2,'2006-02-15 21:30:53'),(14827,'2005-08-22 01:32:32',2267,88,'2005-08-31 06:21:32',2,'2006-02-15 21:30:53'),(14828,'2005-08-22 01:34:05',4114,319,'2005-08-27 06:27:05',2,'2006-02-15 21:30:53'),(14829,'2005-08-22 01:35:37',3606,546,'2005-08-23 19:55:37',2,'2006-02-15 21:30:53'),(14830,'2005-08-22 01:37:19',637,590,'2005-08-27 20:10:19',1,'2006-02-15 21:30:53'),(14831,'2005-08-22 01:40:49',3370,156,'2005-08-23 02:47:49',1,'2006-02-15 21:30:53'),(14832,'2005-08-22 01:43:29',1828,494,'2005-08-29 07:19:29',2,'2006-02-15 21:30:53'),(14833,'2005-08-22 01:45:18',1960,551,'2005-08-28 21:24:18',1,'2006-02-15 21:30:53'),(14834,'2005-08-22 01:45:58',3105,262,'2005-08-28 20:52:58',1,'2006-02-15 21:30:53'),(14835,'2005-08-22 01:49:07',755,404,'2005-08-30 04:28:07',1,'2006-02-15 21:30:53'),(14836,'2005-08-22 01:52:26',4287,418,'2005-08-22 23:39:26',1,'2006-02-15 21:30:53'),(14837,'2005-08-22 01:54:52',2251,43,'2005-08-29 02:24:52',1,'2006-02-15 21:30:53'),(14838,'2005-08-22 01:57:34',506,404,'2005-08-25 06:34:34',1,'2006-02-15 21:30:53'),(14839,'2005-08-22 01:58:15',3440,567,'2005-08-24 05:24:15',2,'2006-02-15 21:30:53'),(14840,'2005-08-22 01:58:42',1240,354,'2005-08-29 22:32:42',2,'2006-02-15 21:30:53'),(14841,'2005-08-22 02:03:30',4017,384,'2005-08-28 02:08:30',2,'2006-02-15 21:30:53'),(14842,'2005-08-22 02:04:38',2511,467,'2005-08-30 06:46:38',2,'2006-02-15 21:30:53'),(14843,'2005-08-22 02:05:25',3000,454,'2005-08-28 22:11:25',1,'2006-02-15 21:30:53'),(14844,'2005-08-22 02:09:12',145,513,'2005-08-31 05:43:12',1,'2006-02-15 21:30:53'),(14845,'2005-08-22 02:12:44',69,292,'2005-08-24 02:36:44',2,'2006-02-15 21:30:53'),(14846,'2005-08-22 02:13:48',3840,309,'2005-08-30 05:39:48',1,'2006-02-15 21:30:53'),(14847,'2005-08-22 02:13:51',2995,327,'2005-08-29 03:42:51',2,'2006-02-15 21:30:53'),(14848,'2005-08-22 02:14:19',395,218,'2005-08-26 02:54:19',2,'2006-02-15 21:30:53'),(14849,'2005-08-22 02:15:26',3354,177,'2005-08-28 00:56:26',2,'2006-02-15 21:30:53'),(14850,'2005-08-22 02:16:55',2405,435,'2005-08-26 21:08:55',1,'2006-02-15 21:30:53'),(14851,'2005-08-22 02:20:44',1139,180,'2005-08-26 08:02:44',2,'2006-02-15 21:30:53'),(14852,'2005-08-22 02:25:53',2262,352,'2005-08-25 04:27:53',1,'2006-02-15 21:30:53'),(14853,'2005-08-22 02:26:33',3575,388,'2005-08-31 02:49:33',2,'2006-02-15 21:30:53'),(14854,'2005-08-22 02:26:47',1989,117,'2005-08-23 05:53:47',1,'2006-02-15 21:30:53'),(14855,'2005-08-22 02:27:32',1668,187,'2005-08-31 03:35:32',1,'2006-02-15 21:30:53'),(14856,'2005-08-22 02:31:51',3292,151,'2005-08-26 23:41:51',2,'2006-02-15 21:30:53'),(14857,'2005-08-22 02:42:39',4150,232,'2005-08-24 21:26:39',2,'2006-02-15 21:30:53'),(14858,'2005-08-22 02:46:18',366,499,'2005-08-30 08:22:18',1,'2006-02-15 21:30:53'),(14859,'2005-08-22 02:46:35',2150,463,'2005-08-24 22:37:35',2,'2006-02-15 21:30:53'),(14860,'2005-08-22 02:47:07',1368,418,'2005-08-28 00:00:07',1,'2006-02-15 21:30:53'),(14861,'2005-08-22 02:48:05',1806,422,'2005-08-27 00:50:05',1,'2006-02-15 21:30:53'),(14862,'2005-08-22 02:51:41',3479,78,'2005-08-28 06:30:41',2,'2006-02-15 21:30:53'),(14863,'2005-08-22 02:57:04',779,440,'2005-08-30 03:24:04',2,'2006-02-15 21:30:53'),(14864,'2005-08-22 02:57:06',2872,460,'2005-08-22 22:19:06',1,'2006-02-15 21:30:53'),(14865,'2005-08-22 03:06:38',3775,94,'2005-08-23 04:26:38',1,'2006-02-15 21:30:53'),(14866,'2005-08-22 03:11:35',2607,445,'2005-08-30 00:10:35',1,'2006-02-15 21:30:53'),(14867,'2005-08-22 03:14:46',271,114,'2005-08-25 03:53:46',2,'2006-02-15 21:30:53'),(14868,'2005-08-22 03:15:01',4383,160,'2005-08-25 01:24:01',1,'2006-02-15 21:30:53'),(14869,'2005-08-22 03:20:26',455,21,'2005-08-23 05:25:26',2,'2006-02-15 21:30:53'),(14870,'2005-08-22 03:23:20',2170,512,'2005-08-23 06:50:20',2,'2006-02-15 21:30:53'),(14871,'2005-08-22 03:23:24',3411,204,'2005-08-23 22:23:24',2,'2006-02-15 21:30:53'),(14872,'2005-08-22 03:23:41',962,15,'2005-08-29 23:25:41',1,'2006-02-15 21:30:53'),(14873,'2005-08-22 03:31:06',3533,314,'2005-08-31 05:34:06',1,'2006-02-15 21:30:53'),(14874,'2005-08-22 03:32:05',1782,268,'2005-08-24 07:02:05',2,'2006-02-15 21:30:53'),(14875,'2005-08-22 03:34:39',3912,513,'2005-08-26 03:40:39',1,'2006-02-15 21:30:53'),(14876,'2005-08-22 03:39:29',3669,210,'2005-08-23 06:53:29',1,'2006-02-15 21:30:53'),(14877,'2005-08-22 03:39:56',974,266,'2005-08-24 03:41:56',2,'2006-02-15 21:30:53'),(14878,'2006-02-14 15:16:03',1202,441,NULL,2,'2006-02-15 21:30:53'),(14879,'2005-08-22 03:42:12',2154,148,'2005-08-27 06:14:12',1,'2006-02-15 21:30:53'),(14880,'2005-08-22 03:44:36',3615,224,'2005-08-24 05:45:36',2,'2006-02-15 21:30:53'),(14881,'2005-08-22 03:47:39',210,425,'2005-08-26 05:58:39',2,'2006-02-15 21:30:53'),(14882,'2005-08-22 03:52:21',12,417,'2005-08-25 04:50:21',2,'2006-02-15 21:30:53'),(14883,'2005-08-22 03:55:02',1946,177,'2005-08-28 02:51:02',1,'2006-02-15 21:30:53'),(14884,'2005-08-22 03:57:08',2957,547,'2005-08-23 07:11:08',1,'2006-02-15 21:30:53'),(14885,'2005-08-22 03:58:29',2097,248,'2005-08-30 05:26:29',1,'2006-02-15 21:30:53'),(14886,'2005-08-22 03:59:01',4330,379,'2005-08-23 01:22:01',1,'2006-02-15 21:30:53'),(14887,'2005-08-22 04:04:31',56,421,'2005-08-31 02:30:31',1,'2006-02-15 21:30:53'),(14888,'2005-08-22 04:09:18',3345,91,'2005-08-23 07:34:18',2,'2006-02-15 21:30:53'),(14889,'2005-08-22 04:10:10',1579,299,'2005-08-24 06:23:10',2,'2006-02-15 21:30:53'),(14890,'2005-08-22 04:10:49',517,346,'2005-08-30 23:23:49',1,'2006-02-15 21:30:53'),(14891,'2005-08-22 04:11:02',288,482,'2005-08-27 03:22:02',1,'2006-02-15 21:30:53'),(14892,'2005-08-22 04:15:05',3061,82,'2005-08-31 06:07:05',1,'2006-02-15 21:30:53'),(14893,'2005-08-22 04:15:48',2336,461,'2005-08-30 08:05:48',1,'2006-02-15 21:30:53'),(14894,'2005-08-22 04:16:56',3494,347,'2005-08-24 00:30:56',2,'2006-02-15 21:30:53'),(14895,'2005-08-22 04:19:23',4462,340,'2005-08-27 04:02:23',1,'2006-02-15 21:30:53'),(14896,'2005-08-22 04:20:55',2508,569,'2005-08-29 05:11:55',2,'2006-02-15 21:30:53'),(14897,'2005-08-22 04:22:31',1607,175,'2005-08-26 00:09:31',1,'2006-02-15 21:30:53'),(14898,'2005-08-22 04:26:34',1736,299,'2005-08-31 10:04:34',1,'2006-02-15 21:30:53'),(14899,'2005-08-22 04:26:38',3700,304,'2005-08-31 08:36:38',2,'2006-02-15 21:30:53'),(14900,'2005-08-22 04:27:48',3420,329,'2005-08-25 03:50:48',2,'2006-02-15 21:30:53'),(14901,'2005-08-22 04:31:37',4297,258,'2005-08-29 08:24:37',1,'2006-02-15 21:30:53'),(14902,'2005-08-22 04:31:50',866,423,'2005-08-23 23:47:50',2,'2006-02-15 21:30:53'),(14903,'2005-08-22 04:31:50',1795,51,'2005-08-25 22:53:50',2,'2006-02-15 21:30:53'),(14904,'2005-08-22 04:32:01',722,71,'2005-08-29 05:21:01',1,'2006-02-15 21:30:53'),(14905,'2005-08-22 04:34:22',4166,286,'2005-08-26 04:00:22',2,'2006-02-15 21:30:53'),(14906,'2005-08-22 04:38:18',153,366,'2005-08-29 23:03:18',1,'2006-02-15 21:30:53'),(14907,'2005-08-22 04:44:09',2469,116,'2005-08-25 09:53:09',1,'2006-02-15 21:30:53'),(14908,'2005-08-22 04:44:10',102,349,'2005-08-25 05:09:10',2,'2006-02-15 21:30:53'),(14909,'2005-08-22 04:48:44',1997,155,'2005-08-25 04:59:44',1,'2006-02-15 21:30:53'),(14910,'2005-08-22 04:50:52',1266,540,'2005-08-25 04:14:52',1,'2006-02-15 21:30:53'),(14911,'2005-08-22 04:51:42',353,273,'2005-08-28 05:37:42',1,'2006-02-15 21:30:53'),(14912,'2005-08-22 04:51:42',2658,404,'2005-08-23 23:50:42',1,'2006-02-15 21:30:53'),(14913,'2005-08-22 04:52:13',3609,503,'2005-08-23 06:49:13',2,'2006-02-15 21:30:53'),(14914,'2005-08-22 04:53:35',4348,156,'2005-08-26 10:35:35',1,'2006-02-15 21:30:53'),(14915,'2006-02-14 15:16:03',112,349,NULL,1,'2006-02-15 21:30:53'),(14916,'2005-08-22 04:56:57',2110,80,'2005-08-24 06:36:57',2,'2006-02-15 21:30:53'),(14917,'2005-08-22 05:03:59',377,289,'2005-08-29 04:00:59',2,'2006-02-15 21:30:53'),(14918,'2005-08-22 05:06:38',4056,154,'2005-08-30 01:44:38',2,'2006-02-15 21:30:53'),(14919,'2005-08-22 05:07:17',1587,244,'2005-08-30 06:41:17',2,'2006-02-15 21:30:53'),(14920,'2005-08-22 05:08:58',3357,106,'2005-08-23 02:51:58',1,'2006-02-15 21:30:53'),(14921,'2005-08-22 05:12:24',3724,284,'2005-08-26 08:20:24',2,'2006-02-15 21:30:53'),(14922,'2005-08-22 05:13:05',2322,151,'2005-08-30 04:59:05',1,'2006-02-15 21:30:53'),(14923,'2005-08-22 05:13:33',3434,460,'2005-08-28 01:39:33',2,'2006-02-15 21:30:53'),(14924,'2005-08-22 05:15:17',4189,118,'2005-08-23 10:11:17',1,'2006-02-15 21:30:53'),(14925,'2005-08-22 05:16:16',442,128,'2005-08-30 02:47:16',2,'2006-02-15 21:30:53'),(14926,'2005-08-22 05:18:44',2448,357,'2005-08-26 02:18:44',1,'2006-02-15 21:30:53'),(14927,'2005-08-22 05:31:53',952,193,'2005-08-27 07:04:53',1,'2006-02-15 21:30:53'),(14928,'2006-02-14 15:16:03',4375,472,NULL,1,'2006-02-15 21:30:53'),(14929,'2005-08-22 05:32:38',4195,546,'2005-08-28 00:02:38',1,'2006-02-15 21:30:53'),(14930,'2005-08-22 05:38:32',2875,584,'2005-08-30 07:21:32',1,'2006-02-15 21:30:53'),(14931,'2005-08-22 05:38:55',657,63,'2005-08-28 04:15:55',2,'2006-02-15 21:30:53'),(14932,'2005-08-22 05:40:39',2259,516,'2005-08-23 11:02:39',2,'2006-02-15 21:30:53'),(14933,'2006-02-14 15:16:03',1186,21,NULL,2,'2006-02-15 21:30:53'),(14934,'2005-08-22 05:47:15',815,226,'2005-08-26 11:32:15',1,'2006-02-15 21:30:53'),(14935,'2005-08-22 05:47:31',2025,380,'2005-08-29 00:33:31',2,'2006-02-15 21:30:53'),(14936,'2005-08-22 05:51:26',3710,241,'2005-08-29 10:21:26',2,'2006-02-15 21:30:53'),(14937,'2005-08-22 05:51:59',1241,348,'2005-08-31 01:45:59',2,'2006-02-15 21:30:53'),(14938,'2005-08-22 05:52:39',408,541,'2005-08-31 11:43:39',1,'2006-02-15 21:30:53'),(14939,'2005-08-22 05:53:52',719,328,'2005-08-27 06:20:52',1,'2006-02-15 21:30:53'),(14940,'2005-08-22 05:54:03',2635,46,'2005-08-24 05:52:03',2,'2006-02-15 21:30:53'),(14941,'2005-08-22 05:58:23',2328,574,'2005-08-28 10:58:23',1,'2006-02-15 21:30:53'),(14942,'2005-08-22 05:58:27',32,471,'2005-08-31 10:08:27',1,'2006-02-15 21:30:53'),(14943,'2005-08-22 05:59:59',3515,265,'2005-08-26 10:31:59',2,'2006-02-15 21:30:53'),(14944,'2005-08-22 06:01:26',535,153,'2005-08-24 10:33:26',2,'2006-02-15 21:30:53'),(14945,'2005-08-22 06:05:38',1567,304,'2005-08-29 12:01:38',1,'2006-02-15 21:30:53'),(14946,'2005-08-22 06:07:10',1395,308,'2005-08-28 05:25:10',1,'2006-02-15 21:30:53'),(14947,'2005-08-22 06:07:52',3497,68,'2005-08-28 01:12:52',2,'2006-02-15 21:30:53'),(14948,'2005-08-22 06:10:53',2914,488,'2005-08-28 11:24:53',2,'2006-02-15 21:30:53'),(14949,'2005-08-22 06:12:16',2434,111,'2005-08-25 08:25:16',2,'2006-02-15 21:30:53'),(14950,'2005-08-22 06:17:12',635,362,'2005-08-27 08:48:12',2,'2006-02-15 21:30:53'),(14951,'2005-08-22 06:19:37',2800,197,'2005-08-30 05:51:37',2,'2006-02-15 21:30:53'),(14952,'2005-08-22 06:20:07',2950,575,'2005-08-28 01:18:07',1,'2006-02-15 21:30:53'),(14953,'2005-08-22 06:23:54',816,182,'2005-08-28 03:19:54',1,'2006-02-15 21:30:53'),(14954,'2006-02-14 15:16:03',3608,525,NULL,1,'2006-02-15 21:30:53'),(14955,'2005-08-22 06:25:52',1534,445,'2005-08-25 12:13:52',2,'2006-02-15 21:30:53'),(14956,'2005-08-22 06:26:16',3650,571,'2005-08-25 11:06:16',2,'2006-02-15 21:30:53'),(14957,'2005-08-22 06:29:34',1384,323,'2005-08-26 04:52:34',2,'2006-02-15 21:30:53'),(14958,'2005-08-22 06:30:10',1710,347,'2005-08-28 09:43:10',2,'2006-02-15 21:30:53'),(14959,'2005-08-22 06:30:28',2009,569,'2005-08-25 09:48:28',1,'2006-02-15 21:30:53'),(14960,'2005-08-22 06:31:36',3316,147,'2005-08-29 07:10:36',2,'2006-02-15 21:30:53'),(14961,'2005-08-22 06:35:50',3274,52,'2005-08-31 04:07:50',2,'2006-02-15 21:30:53'),(14962,'2005-08-22 06:37:43',3104,449,'2005-08-29 03:44:43',2,'2006-02-15 21:30:53'),(14963,'2005-08-22 06:38:10',2672,384,'2005-08-31 05:35:10',2,'2006-02-15 21:30:53'),(14964,'2005-08-22 06:39:24',2302,500,'2005-08-26 06:05:24',1,'2006-02-15 21:30:53'),(14965,'2005-08-22 06:45:53',1036,148,'2005-08-27 10:05:53',1,'2006-02-15 21:30:53'),(14966,'2005-08-22 06:45:57',679,259,'2005-08-31 10:02:57',1,'2006-02-15 21:30:53'),(14967,'2005-08-22 06:46:03',289,67,'2005-08-23 01:02:03',2,'2006-02-15 21:30:53'),(14968,'2005-08-22 06:46:59',3302,129,'2005-08-29 07:36:59',1,'2006-02-15 21:30:53'),(14969,'2005-08-22 06:49:15',4060,120,'2005-08-29 05:52:15',1,'2006-02-15 21:30:53'),(14970,'2005-08-22 06:49:29',536,529,'2005-08-29 08:47:29',1,'2006-02-15 21:30:53'),(14971,'2005-08-22 06:52:49',1883,378,'2005-08-28 06:27:49',2,'2006-02-15 21:30:53'),(14972,'2005-08-22 06:53:21',3422,310,'2005-08-29 02:25:21',1,'2006-02-15 21:30:53'),(14973,'2005-08-22 06:59:28',2888,201,'2005-08-30 02:28:28',1,'2006-02-15 21:30:53'),(14974,'2005-08-22 07:04:25',2596,157,'2005-08-27 12:39:25',1,'2006-02-15 21:30:53'),(14975,'2005-08-22 07:07:50',924,244,'2005-08-28 07:23:50',2,'2006-02-15 21:30:53'),(14976,'2005-08-22 07:10:26',77,581,'2005-08-28 07:22:26',1,'2006-02-15 21:30:53'),(14977,'2005-08-22 07:12:53',4093,59,'2005-08-30 08:11:53',2,'2006-02-15 21:30:53'),(14978,'2005-08-22 07:13:15',699,94,'2005-08-25 12:26:15',1,'2006-02-15 21:30:53'),(14979,'2005-08-22 07:16:36',2320,387,'2005-08-24 02:29:36',2,'2006-02-15 21:30:53'),(14980,'2005-08-22 07:16:45',2701,518,'2005-08-26 06:04:45',2,'2006-02-15 21:30:53'),(14981,'2005-08-22 07:19:05',1239,544,'2005-08-26 03:08:05',2,'2006-02-15 21:30:53'),(14982,'2005-08-22 07:20:55',2333,542,'2005-08-31 04:35:55',2,'2006-02-15 21:30:53'),(14983,'2005-08-22 07:32:23',3579,363,'2005-08-30 11:39:23',2,'2006-02-15 21:30:53'),(14984,'2005-08-22 07:35:31',1704,334,'2005-08-30 02:32:31',1,'2006-02-15 21:30:53'),(14985,'2005-08-22 07:35:56',2017,29,'2005-08-29 13:17:56',1,'2006-02-15 21:30:53'),(14986,'2005-08-22 07:37:24',1493,278,'2005-08-23 04:22:24',2,'2006-02-15 21:30:53'),(14987,'2005-08-22 07:41:08',1513,138,'2005-08-24 03:15:08',2,'2006-02-15 21:30:53'),(14988,'2005-08-22 07:46:05',2114,186,'2005-08-29 06:43:05',1,'2006-02-15 21:30:53'),(14989,'2005-08-22 07:47:07',1431,58,'2005-08-26 04:42:07',2,'2006-02-15 21:30:53'),(14990,'2005-08-22 07:48:01',4057,198,'2005-08-24 06:41:01',2,'2006-02-15 21:30:53'),(14991,'2005-08-22 07:50:44',708,172,'2005-08-30 06:32:44',2,'2006-02-15 21:30:53'),(14992,'2005-08-22 07:51:47',4430,415,'2005-08-25 08:17:47',2,'2006-02-15 21:30:53'),(14993,'2005-08-22 07:52:18',3416,437,'2005-08-27 02:13:18',1,'2006-02-15 21:30:53'),(14994,'2005-08-22 07:52:24',1601,509,'2005-08-26 09:57:24',1,'2006-02-15 21:30:53'),(14995,'2005-08-22 07:52:31',4178,482,'2005-08-24 05:16:31',1,'2006-02-15 21:30:53'),(14996,'2005-08-22 07:52:41',1178,411,'2005-08-29 02:35:41',1,'2006-02-15 21:30:53'),(14997,'2005-08-22 07:53:00',2724,29,'2005-08-28 03:47:00',2,'2006-02-15 21:30:53'),(14998,'2005-08-22 07:53:14',3852,92,'2005-08-24 03:46:14',2,'2006-02-15 21:30:53'),(14999,'2005-08-22 07:54:47',3399,594,'2005-08-23 08:39:47',1,'2006-02-15 21:30:53'),(15000,'2005-08-22 07:54:58',3080,161,'2005-08-24 12:46:58',2,'2006-02-15 21:30:53'),(15001,'2005-08-22 08:00:49',2869,186,'2005-08-27 05:53:49',2,'2006-02-15 21:30:53'),(15002,'2005-08-22 08:06:00',4198,242,'2005-08-24 10:48:00',1,'2006-02-15 21:30:53'),(15003,'2005-08-22 08:11:24',4009,167,'2005-08-28 08:49:24',1,'2006-02-15 21:30:53'),(15004,'2005-08-22 08:15:21',4464,375,'2005-08-28 10:35:21',1,'2006-02-15 21:30:53'),(15005,'2005-08-22 08:15:44',2897,335,'2005-08-24 09:52:44',2,'2006-02-15 21:30:53'),(15006,'2005-08-22 08:20:15',2967,97,'2005-08-23 11:57:15',1,'2006-02-15 21:30:53'),(15007,'2005-08-22 08:21:21',3692,165,'2005-08-27 04:44:21',2,'2006-02-15 21:30:53'),(15008,'2005-08-22 08:24:32',961,277,'2005-08-31 13:48:32',2,'2006-02-15 21:30:53'),(15009,'2005-08-22 08:27:27',4025,325,'2005-08-26 05:57:27',2,'2006-02-15 21:30:53'),(15010,'2005-08-22 08:30:17',171,508,'2005-08-29 13:24:17',2,'2006-02-15 21:30:53'),(15011,'2005-08-22 08:31:07',2722,329,'2005-08-24 04:47:07',1,'2006-02-15 21:30:53'),(15012,'2005-08-22 08:42:32',1584,454,'2005-08-28 05:04:32',1,'2006-02-15 21:30:53'),(15013,'2005-08-22 08:42:45',141,141,'2005-08-24 05:20:45',2,'2006-02-15 21:30:53'),(15014,'2005-08-22 08:43:11',3678,373,'2005-08-31 02:55:11',1,'2006-02-15 21:30:53'),(15015,'2005-08-22 08:43:50',3067,14,'2005-08-31 06:53:50',2,'2006-02-15 21:30:53'),(15016,'2005-08-22 08:47:35',879,434,'2005-08-28 14:23:35',2,'2006-02-15 21:30:53'),(15017,'2005-08-22 08:47:44',3975,144,'2005-08-29 08:16:44',1,'2006-02-15 21:30:53'),(15018,'2005-08-22 08:52:38',394,504,'2005-08-25 08:08:38',1,'2006-02-15 21:30:53'),(15019,'2005-08-22 08:52:53',3425,450,'2005-08-25 13:07:53',2,'2006-02-15 21:30:53'),(15020,'2005-08-22 08:54:12',3460,267,'2005-08-27 04:54:12',1,'2006-02-15 21:30:53'),(15021,'2006-02-14 15:16:03',418,100,NULL,2,'2006-02-15 21:30:53'),(15022,'2005-08-22 08:55:43',249,506,'2005-08-31 05:35:43',2,'2006-02-15 21:30:53'),(15023,'2005-08-22 08:56:48',358,296,'2005-08-29 08:13:48',1,'2006-02-15 21:30:53'),(15024,'2005-08-22 08:57:10',1831,139,'2005-08-24 10:39:10',1,'2006-02-15 21:30:53'),(15025,'2005-08-22 08:57:24',2107,257,'2005-08-24 06:09:24',2,'2006-02-15 21:30:53'),(15026,'2005-08-22 09:01:52',4328,66,'2005-08-28 09:21:52',1,'2006-02-15 21:30:53'),(15027,'2005-08-22 09:03:04',326,478,'2005-08-29 04:03:04',2,'2006-02-15 21:30:53'),(15028,'2005-08-22 09:03:44',4248,37,'2005-08-30 11:28:44',1,'2006-02-15 21:30:53'),(15029,'2005-08-22 09:04:53',2234,139,'2005-08-25 09:03:53',1,'2006-02-15 21:30:53'),(15030,'2005-08-22 09:10:21',3168,341,'2005-08-24 06:00:21',2,'2006-02-15 21:30:53'),(15031,'2005-08-22 09:11:48',3926,430,'2005-08-27 06:11:48',1,'2006-02-15 21:30:53'),(15032,'2005-08-22 09:14:09',3414,467,'2005-08-25 09:50:09',2,'2006-02-15 21:30:53'),(15033,'2005-08-22 09:25:24',2431,168,'2005-08-28 09:56:24',2,'2006-02-15 21:30:53'),(15034,'2005-08-22 09:33:08',1331,235,'2005-08-29 13:04:08',1,'2006-02-15 21:30:53'),(15035,'2005-08-22 09:34:32',339,513,'2005-08-28 10:23:32',1,'2006-02-15 21:30:53'),(15036,'2005-08-22 09:36:00',874,280,'2005-08-23 08:12:00',2,'2006-02-15 21:30:53'),(15037,'2005-08-22 09:36:33',4517,234,'2005-08-31 11:20:33',2,'2006-02-15 21:30:53'),(15038,'2005-08-22 09:37:27',1685,3,'2005-08-23 14:39:27',1,'2006-02-15 21:30:53'),(15039,'2005-08-22 09:37:54',895,180,'2005-08-28 12:23:54',1,'2006-02-15 21:30:53'),(15040,'2005-08-22 09:41:09',3207,523,'2005-08-23 12:49:09',2,'2006-02-15 21:30:53'),(15041,'2005-08-22 09:43:18',1913,372,'2005-08-23 11:04:18',2,'2006-02-15 21:30:53'),(15042,'2005-08-22 09:47:37',3796,553,'2005-08-31 04:42:37',1,'2006-02-15 21:30:53'),(15043,'2005-08-22 09:49:32',3797,182,'2005-08-28 13:50:32',1,'2006-02-15 21:30:53'),(15044,'2005-08-22 09:51:54',4513,439,'2005-08-31 12:45:54',1,'2006-02-15 21:30:53'),(15045,'2005-08-22 09:53:23',3485,161,'2005-08-26 10:09:23',2,'2006-02-15 21:30:53'),(15046,'2005-08-22 09:54:54',1536,474,'2005-08-26 07:34:54',1,'2006-02-15 21:30:53'),(15047,'2005-08-22 09:57:16',1309,19,'2005-08-23 11:39:16',1,'2006-02-15 21:30:53'),(15048,'2005-08-22 10:00:04',2895,27,'2005-08-26 08:26:04',1,'2006-02-15 21:30:53'),(15049,'2005-08-22 10:06:28',1573,102,'2005-08-26 15:12:28',1,'2006-02-15 21:30:53'),(15050,'2005-08-22 10:07:52',3961,167,'2005-08-23 04:45:52',1,'2006-02-15 21:30:53'),(15051,'2005-08-22 10:08:50',1419,300,'2005-08-28 10:23:50',1,'2006-02-15 21:30:53'),(15052,'2005-08-22 10:09:19',2349,147,'2005-08-31 09:27:19',2,'2006-02-15 21:30:53'),(15053,'2005-08-22 10:13:09',1065,374,'2005-08-28 12:42:09',2,'2006-02-15 21:30:53'),(15054,'2005-08-22 10:14:33',2314,44,'2005-08-25 15:07:33',1,'2006-02-15 21:30:53'),(15055,'2005-08-22 10:14:39',623,125,'2005-08-25 07:25:39',2,'2006-02-15 21:30:53'),(15056,'2005-08-22 10:15:54',1871,503,'2005-08-25 07:21:54',1,'2006-02-15 21:30:53'),(15057,'2005-08-22 10:19:58',4534,20,'2005-08-28 05:12:58',1,'2006-02-15 21:30:53'),(15058,'2005-08-22 10:20:55',3537,288,'2005-08-26 12:37:55',1,'2006-02-15 21:30:53'),(15059,'2005-08-22 10:22:00',4079,564,'2005-08-29 07:01:00',2,'2006-02-15 21:30:53'),(15060,'2005-08-22 10:24:32',2740,63,'2005-08-31 11:17:32',2,'2006-02-15 21:30:53'),(15061,'2005-08-22 10:29:44',3436,90,'2005-08-24 14:40:44',1,'2006-02-15 21:30:53'),(15062,'2005-08-22 10:34:39',4393,139,'2005-08-26 13:09:39',2,'2006-02-15 21:30:53'),(15063,'2005-08-22 10:39:51',1159,30,'2005-08-25 16:03:51',2,'2006-02-15 21:30:53'),(15064,'2005-08-22 10:41:58',1233,425,'2005-08-28 13:34:58',2,'2006-02-15 21:30:53'),(15065,'2005-08-22 10:46:44',468,510,'2005-08-27 09:40:44',2,'2006-02-15 21:30:53'),(15066,'2005-08-22 10:49:06',2712,530,'2005-08-23 10:25:06',1,'2006-02-15 21:30:53'),(15067,'2005-08-22 10:49:21',3684,461,'2005-08-24 09:01:21',1,'2006-02-15 21:30:53'),(15068,'2005-08-22 10:50:13',3268,373,'2005-08-26 05:04:13',2,'2006-02-15 21:30:53'),(15069,'2005-08-22 10:55:42',592,568,'2005-08-28 06:59:42',2,'2006-02-15 21:30:53'),(15070,'2005-08-22 10:55:45',2687,441,'2005-08-26 09:23:45',1,'2006-02-15 21:30:53'),(15071,'2005-08-22 10:58:43',417,541,'2005-08-31 14:53:43',1,'2006-02-15 21:30:53'),(15072,'2005-08-22 10:58:45',2871,405,'2005-08-30 16:18:45',1,'2006-02-15 21:30:53'),(15073,'2005-08-22 11:01:15',3970,336,'2005-08-31 09:23:15',1,'2006-02-15 21:30:53'),(15074,'2005-08-22 11:02:52',3112,567,'2005-08-28 07:59:52',2,'2006-02-15 21:30:53'),(15075,'2005-08-22 11:04:52',1938,535,'2005-08-30 05:06:52',1,'2006-02-15 21:30:53'),(15076,'2005-08-22 11:05:34',4170,287,'2005-08-27 14:40:34',1,'2006-02-15 21:30:53'),(15077,'2005-08-22 11:09:18',3142,503,'2005-08-29 08:41:18',1,'2006-02-15 21:30:53'),(15078,'2005-08-22 11:09:31',3001,197,'2005-08-25 12:16:31',1,'2006-02-15 21:30:53'),(15079,'2005-08-22 11:09:56',4552,540,'2005-08-24 15:40:56',2,'2006-02-15 21:30:53'),(15080,'2005-08-22 11:11:51',927,133,'2005-08-23 13:09:51',1,'2006-02-15 21:30:53'),(15081,'2005-08-22 11:14:31',2501,313,'2005-08-28 14:23:31',2,'2006-02-15 21:30:53'),(15082,'2005-08-22 11:17:06',2046,137,'2005-08-28 06:40:06',1,'2006-02-15 21:30:53'),(15083,'2005-08-22 11:17:37',1691,397,'2005-08-28 06:27:37',2,'2006-02-15 21:30:53'),(15084,'2005-08-22 11:17:59',821,287,'2005-08-23 09:23:59',1,'2006-02-15 21:30:53'),(15085,'2005-08-22 11:19:22',1669,67,'2005-08-25 09:04:22',2,'2006-02-15 21:30:53'),(15086,'2005-08-22 11:21:08',264,494,'2005-08-30 08:18:08',2,'2006-02-15 21:30:53'),(15087,'2005-08-22 11:24:09',233,404,'2005-08-27 16:42:09',2,'2006-02-15 21:30:53'),(15088,'2005-08-22 11:28:26',4199,377,'2005-08-24 15:46:26',2,'2006-02-15 21:30:53'),(15089,'2005-08-22 11:34:06',3288,61,'2005-08-31 12:45:06',1,'2006-02-15 21:30:53'),(15090,'2005-08-22 11:34:33',2918,582,'2005-08-31 06:09:33',2,'2006-02-15 21:30:53'),(15091,'2005-08-22 11:34:43',2092,477,'2005-08-23 16:52:43',2,'2006-02-15 21:30:53'),(15092,'2005-08-22 11:36:16',2418,464,'2005-08-28 09:49:16',2,'2006-02-15 21:30:53'),(15093,'2005-08-22 11:39:03',3534,60,'2005-08-23 06:16:03',2,'2006-02-15 21:30:53'),(15094,'2006-02-14 15:16:03',922,424,NULL,1,'2006-02-15 21:30:53'),(15095,'2005-08-22 11:41:35',489,202,'2005-08-25 16:44:35',2,'2006-02-15 21:30:53'),(15096,'2005-08-22 11:43:04',1983,33,'2005-08-29 12:16:04',2,'2006-02-15 21:30:53'),(15097,'2005-08-22 11:43:42',2838,475,'2005-08-27 10:25:42',1,'2006-02-15 21:30:53'),(15098,'2005-08-22 11:48:19',4414,88,'2005-08-31 11:07:19',2,'2006-02-15 21:30:53'),(15099,'2005-08-22 11:49:16',1940,86,'2005-08-26 06:38:16',2,'2006-02-15 21:30:53'),(15100,'2005-08-22 11:55:03',4489,312,'2005-08-25 14:55:03',1,'2006-02-15 21:30:53'),(15101,'2005-08-22 11:56:02',683,335,'2005-08-28 13:08:02',2,'2006-02-15 21:30:53'),(15102,'2005-08-22 11:58:58',2317,555,'2005-08-29 08:37:58',1,'2006-02-15 21:30:53'),(15103,'2005-08-22 12:01:06',853,101,'2005-08-25 14:40:06',2,'2006-02-15 21:30:53'),(15104,'2005-08-22 12:01:16',4550,359,'2005-08-27 17:48:16',1,'2006-02-15 21:30:53'),(15105,'2005-08-22 12:01:33',3965,338,'2005-08-26 14:29:33',2,'2006-02-15 21:30:53'),(15106,'2005-08-22 12:01:48',399,155,'2005-08-27 16:12:48',1,'2006-02-15 21:30:53'),(15107,'2005-08-22 12:05:02',2378,376,'2005-08-23 11:09:02',1,'2006-02-15 21:30:53'),(15108,'2005-08-22 12:10:07',3463,447,'2005-08-26 14:46:07',2,'2006-02-15 21:30:53'),(15109,'2005-08-22 12:12:58',565,588,'2005-08-30 07:20:58',1,'2006-02-15 21:30:53'),(15110,'2005-08-22 12:16:46',1379,72,'2005-08-26 13:36:46',1,'2006-02-15 21:30:53'),(15111,'2005-08-22 12:21:43',4101,119,'2005-08-24 09:31:43',1,'2006-02-15 21:30:53'),(15112,'2005-08-22 12:21:49',2832,160,'2005-08-27 11:03:49',1,'2006-02-15 21:30:53'),(15113,'2005-08-22 12:23:59',4338,424,'2005-08-27 09:59:59',1,'2006-02-15 21:30:53'),(15114,'2005-08-22 12:24:55',2481,121,'2005-08-31 17:06:55',1,'2006-02-15 21:30:53'),(15115,'2005-08-22 12:28:01',1739,33,'2005-08-26 16:12:01',1,'2006-02-15 21:30:53'),(15116,'2005-08-22 12:35:40',518,217,'2005-08-23 17:58:40',1,'2006-02-15 21:30:53'),(15117,'2005-08-22 12:38:20',2502,292,'2005-08-27 07:36:20',2,'2006-02-15 21:30:53'),(15118,'2005-08-22 12:38:37',2081,473,'2005-08-29 14:01:37',2,'2006-02-15 21:30:53'),(15119,'2005-08-22 12:41:33',4526,288,'2005-08-23 14:44:33',2,'2006-02-15 21:30:53'),(15120,'2005-08-22 12:42:47',3083,11,'2005-08-23 14:21:47',1,'2006-02-15 21:30:53'),(15121,'2005-08-22 12:46:37',2981,415,'2005-08-25 17:42:37',1,'2006-02-15 21:30:53'),(15122,'2005-08-22 12:47:45',1686,91,'2005-08-29 13:18:45',2,'2006-02-15 21:30:53'),(15123,'2005-08-22 12:48:44',1455,445,'2005-08-27 11:07:44',1,'2006-02-15 21:30:53'),(15124,'2005-08-22 12:51:38',1598,39,'2005-08-26 09:05:38',1,'2006-02-15 21:30:53'),(15125,'2005-08-22 12:53:22',3942,221,'2005-08-29 18:44:22',1,'2006-02-15 21:30:53'),(15126,'2005-08-22 12:53:58',1902,459,'2005-08-28 07:39:58',1,'2006-02-15 21:30:53'),(15127,'2005-08-22 12:56:29',2397,287,'2005-08-26 10:58:29',1,'2006-02-15 21:30:53'),(15128,'2005-08-22 12:57:26',3229,457,'2005-08-30 11:35:26',2,'2006-02-15 21:30:53'),(15129,'2005-08-22 13:03:52',3782,234,'2005-08-29 10:56:52',2,'2006-02-15 21:30:53'),(15130,'2005-08-22 13:04:32',2375,536,'2005-08-30 17:24:32',1,'2006-02-15 21:30:53'),(15131,'2005-08-22 13:06:26',1930,119,'2005-08-30 16:43:26',1,'2006-02-15 21:30:53'),(15132,'2005-08-22 13:11:25',3474,393,'2005-08-27 17:04:25',2,'2006-02-15 21:30:53'),(15133,'2005-08-22 13:17:43',3408,137,'2005-08-26 08:40:43',1,'2006-02-15 21:30:53'),(15134,'2005-08-22 13:18:25',4442,22,'2005-08-29 18:03:25',1,'2006-02-15 21:30:53'),(15135,'2005-08-22 13:19:19',555,284,'2005-08-27 17:09:19',2,'2006-02-15 21:30:53'),(15136,'2005-08-22 13:19:25',2606,435,'2005-08-24 07:28:25',2,'2006-02-15 21:30:53'),(15137,'2005-08-22 13:20:28',856,241,'2005-08-26 09:35:28',1,'2006-02-15 21:30:53'),(15138,'2005-08-22 13:36:30',2467,50,'2005-08-27 15:35:30',1,'2006-02-15 21:30:53'),(15139,'2005-08-22 13:38:11',2018,237,'2005-08-30 09:00:11',1,'2006-02-15 21:30:53'),(15140,'2005-08-22 13:39:20',1402,414,'2005-08-30 18:19:20',2,'2006-02-15 21:30:53'),(15141,'2005-08-22 13:41:49',227,541,'2005-08-28 15:25:49',2,'2006-02-15 21:30:53'),(15142,'2005-08-22 13:44:32',1337,351,'2005-08-29 14:19:32',1,'2006-02-15 21:30:53'),(15143,'2005-08-22 13:46:24',1519,274,'2005-08-25 09:47:24',2,'2006-02-15 21:30:53'),(15144,'2005-08-22 13:49:18',559,527,'2005-08-26 11:11:18',2,'2006-02-15 21:30:53'),(15145,'2005-08-22 13:53:04',2179,2,'2005-08-31 15:51:04',1,'2006-02-15 21:30:53'),(15146,'2005-08-22 13:57:55',3102,72,'2005-08-28 12:57:55',2,'2006-02-15 21:30:53'),(15147,'2005-08-22 13:58:23',2553,4,'2005-08-28 14:33:23',2,'2006-02-15 21:30:53'),(15148,'2005-08-22 13:59:19',3704,359,'2005-08-31 13:59:19',2,'2006-02-15 21:30:53'),(15149,'2005-08-22 14:08:06',3059,537,'2005-08-25 08:25:06',1,'2006-02-15 21:30:53'),(15150,'2005-08-22 14:12:05',1797,161,'2005-08-27 12:47:05',1,'2006-02-15 21:30:53'),(15151,'2005-08-22 14:23:11',4070,463,'2005-08-30 14:01:11',1,'2006-02-15 21:30:53'),(15152,'2005-08-22 14:25:21',739,123,'2005-08-31 14:28:21',1,'2006-02-15 21:30:53'),(15153,'2005-08-22 14:26:01',1051,512,'2005-08-27 14:17:01',2,'2006-02-15 21:30:53'),(15154,'2005-08-22 14:27:37',3395,106,'2005-08-29 20:04:37',2,'2006-02-15 21:30:53'),(15155,'2005-08-22 14:27:46',2641,43,'2005-08-23 17:46:46',2,'2006-02-15 21:30:53'),(15156,'2005-08-22 14:29:11',1174,494,'2005-08-30 17:48:11',2,'2006-02-15 21:30:53'),(15157,'2005-08-22 14:30:09',1909,580,'2005-08-29 18:28:09',1,'2006-02-15 21:30:53'),(15158,'2005-08-22 14:30:39',3614,588,'2005-08-27 15:55:39',1,'2006-02-15 21:30:53'),(15159,'2005-08-22 14:32:25',4355,525,'2005-08-24 11:19:25',2,'2006-02-15 21:30:53'),(15160,'2005-08-22 14:33:50',4321,249,'2005-08-28 11:26:50',1,'2006-02-15 21:30:53'),(15161,'2005-08-22 14:37:22',1445,20,'2005-08-27 17:40:22',1,'2006-02-15 21:30:53'),(15162,'2005-08-22 14:41:05',1756,439,'2005-08-27 20:23:05',2,'2006-02-15 21:30:53'),(15163,'2005-08-22 14:43:13',3597,100,'2005-08-26 14:26:13',1,'2006-02-15 21:30:53'),(15164,'2005-08-22 14:47:53',997,193,'2005-08-25 16:05:53',1,'2006-02-15 21:30:53'),(15165,'2005-08-22 14:59:30',3664,168,'2005-08-29 15:46:30',2,'2006-02-15 21:30:53'),(15166,'2005-08-22 15:05:37',1530,504,'2005-08-30 12:22:37',2,'2006-02-15 21:30:53'),(15167,'2006-02-14 15:16:03',973,190,NULL,2,'2006-02-15 21:30:53'),(15168,'2005-08-22 15:14:20',3218,526,'2005-08-25 20:12:20',2,'2006-02-15 21:30:53'),(15169,'2005-08-22 15:21:56',794,76,'2005-08-28 09:40:56',1,'2006-02-15 21:30:53'),(15170,'2005-08-22 15:22:15',2123,521,'2005-08-23 20:32:15',1,'2006-02-15 21:30:53'),(15171,'2005-08-22 15:23:59',1201,119,'2005-08-28 12:05:59',2,'2006-02-15 21:30:53'),(15172,'2005-08-22 15:25:33',2367,511,'2005-08-23 17:29:33',1,'2006-02-15 21:30:53'),(15173,'2005-08-22 15:26:29',2585,338,'2005-08-29 14:03:29',1,'2006-02-15 21:30:53'),(15174,'2005-08-22 15:26:36',19,111,'2005-08-31 10:47:36',2,'2006-02-15 21:30:53'),(15175,'2005-08-22 15:29:15',4318,380,'2005-08-27 15:11:15',2,'2006-02-15 21:30:53'),(15176,'2005-08-22 15:30:25',3063,115,'2005-08-31 20:00:25',1,'2006-02-15 21:30:53'),(15177,'2005-08-22 15:34:49',838,493,'2005-08-26 12:54:49',1,'2006-02-15 21:30:53'),(15178,'2005-08-22 15:36:04',1745,15,'2005-08-26 21:00:04',2,'2006-02-15 21:30:53'),(15179,'2005-08-22 15:36:22',450,328,'2005-08-31 19:57:22',1,'2006-02-15 21:30:53'),(15180,'2005-08-22 15:42:57',234,532,'2005-08-24 12:49:57',2,'2006-02-15 21:30:53'),(15181,'2005-08-22 15:46:20',3900,266,'2005-08-27 09:56:20',1,'2006-02-15 21:30:53'),(15182,'2005-08-22 15:47:05',645,443,'2005-08-25 11:55:05',1,'2006-02-15 21:30:53'),(15183,'2005-08-22 15:49:54',2696,268,'2005-08-25 12:29:54',1,'2006-02-15 21:30:53'),(15184,'2005-08-22 15:51:12',1193,471,'2005-08-24 19:23:12',2,'2006-02-15 21:30:53'),(15185,'2005-08-22 15:52:50',2948,472,'2005-08-31 20:38:50',1,'2006-02-15 21:30:53'),(15186,'2005-08-22 15:52:57',1323,104,'2005-08-24 21:12:57',1,'2006-02-15 21:30:53'),(15187,'2005-08-22 15:53:32',2338,461,'2005-08-27 14:21:32',1,'2006-02-15 21:30:53'),(15188,'2005-08-22 15:55:48',131,478,'2005-08-29 19:10:48',1,'2006-02-15 21:30:53'),(15189,'2005-08-22 15:56:42',2559,398,'2005-08-29 12:20:42',1,'2006-02-15 21:30:53'),(15190,'2005-08-22 15:57:38',2096,84,'2005-08-24 13:46:38',1,'2006-02-15 21:30:53'),(15191,'2006-02-14 15:16:03',3688,75,NULL,1,'2006-02-15 21:30:53'),(15192,'2005-08-22 16:06:23',4213,216,'2005-08-27 13:12:23',1,'2006-02-15 21:30:53'),(15193,'2005-08-22 16:06:49',1033,40,'2005-08-25 17:23:49',1,'2006-02-15 21:30:53'),(15194,'2005-08-22 16:07:34',1217,332,'2005-08-26 19:16:34',1,'2006-02-15 21:30:53'),(15195,'2005-08-22 16:08:23',1080,508,'2005-08-30 17:56:23',2,'2006-02-15 21:30:53'),(15196,'2005-08-22 16:11:32',1413,181,'2005-08-30 22:06:32',1,'2006-02-15 21:30:53'),(15197,'2005-08-22 16:14:25',2915,159,'2005-08-26 16:22:25',2,'2006-02-15 21:30:53'),(15198,'2005-08-22 16:15:33',1253,396,'2005-08-29 20:49:33',1,'2006-02-15 21:30:53'),(15199,'2005-08-22 16:17:49',18,216,'2005-08-25 20:12:49',1,'2006-02-15 21:30:53'),(15200,'2005-08-22 16:22:53',1000,374,'2005-08-24 10:25:53',2,'2006-02-15 21:30:53'),(15201,'2005-08-22 16:24:42',4456,301,'2005-08-31 17:54:42',1,'2006-02-15 21:30:53'),(15202,'2005-08-22 16:26:53',2119,374,'2005-08-23 13:49:53',2,'2006-02-15 21:30:53'),(15203,'2005-08-22 16:28:00',743,568,'2005-08-26 16:55:00',2,'2006-02-15 21:30:53'),(15204,'2005-08-22 16:30:43',1471,317,'2005-08-26 20:37:43',2,'2006-02-15 21:30:53'),(15205,'2005-08-22 16:32:23',3276,489,'2005-08-27 16:08:23',1,'2006-02-15 21:30:53'),(15206,'2005-08-22 16:33:39',3901,524,'2005-08-31 11:41:39',1,'2006-02-15 21:30:53'),(15207,'2005-08-22 16:35:25',1149,442,'2005-08-23 14:06:25',1,'2006-02-15 21:30:53'),(15208,'2005-08-22 16:35:47',4346,267,'2005-08-30 15:16:47',1,'2006-02-15 21:30:53'),(15209,'2005-08-22 16:37:32',1620,588,'2005-08-25 19:04:32',1,'2006-02-15 21:30:53'),(15210,'2005-08-22 16:37:36',3811,332,'2005-08-29 11:54:36',1,'2006-02-15 21:30:53'),(15211,'2005-08-22 16:40:21',3025,410,'2005-08-28 13:33:21',2,'2006-02-15 21:30:53'),(15212,'2005-08-22 16:44:26',2182,562,'2005-08-27 20:26:26',1,'2006-02-15 21:30:53'),(15213,'2005-08-22 16:49:02',2002,166,'2005-08-31 20:22:02',1,'2006-02-15 21:30:53'),(15214,'2005-08-22 16:53:29',1500,574,'2005-08-24 14:17:29',1,'2006-02-15 21:30:53'),(15215,'2005-08-22 16:55:26',1906,344,'2005-08-25 20:19:26',1,'2006-02-15 21:30:53'),(15216,'2005-08-22 16:57:02',1633,166,'2005-08-24 16:11:02',2,'2006-02-15 21:30:53'),(15217,'2005-08-22 16:58:31',91,90,'2005-08-23 22:33:31',1,'2006-02-15 21:30:53'),(15218,'2005-08-22 16:59:05',10,139,'2005-08-30 17:01:05',1,'2006-02-15 21:30:53'),(15219,'2005-08-22 17:00:31',3313,544,'2005-08-31 20:16:31',1,'2006-02-15 21:30:53'),(15220,'2005-08-22 17:02:23',187,128,'2005-08-28 21:02:23',1,'2006-02-15 21:30:53'),(15221,'2005-08-22 17:12:29',110,253,'2005-08-24 20:46:29',2,'2006-02-15 21:30:53'),(15222,'2005-08-22 17:12:30',1360,390,'2005-08-27 15:10:30',2,'2006-02-15 21:30:53'),(15223,'2005-08-22 17:13:39',2263,541,'2005-08-27 11:17:39',2,'2006-02-15 21:30:53'),(15224,'2005-08-22 17:18:05',33,81,'2005-08-29 14:35:05',2,'2006-02-15 21:30:53'),(15225,'2005-08-22 17:18:32',1646,224,'2005-08-24 17:25:32',1,'2006-02-15 21:30:53'),(15226,'2005-08-22 17:20:17',318,54,'2005-08-31 15:36:17',1,'2006-02-15 21:30:53'),(15227,'2005-08-22 17:22:41',2987,151,'2005-08-23 20:59:41',1,'2006-02-15 21:30:53'),(15228,'2005-08-22 17:27:23',2485,48,'2005-08-29 11:38:23',2,'2006-02-15 21:30:53'),(15229,'2005-08-22 17:30:25',320,63,'2005-08-23 14:13:25',1,'2006-02-15 21:30:53'),(15230,'2005-08-22 17:31:41',2572,466,'2005-08-25 21:57:41',2,'2006-02-15 21:30:53'),(15231,'2005-08-22 17:32:57',2980,187,'2005-08-25 13:06:57',1,'2006-02-15 21:30:53'),(15232,'2005-08-22 17:37:02',61,5,'2005-08-25 18:45:02',1,'2006-02-15 21:30:53'),(15233,'2005-08-22 17:41:53',4405,197,'2005-08-24 12:59:53',2,'2006-02-15 21:30:53'),(15234,'2006-02-14 15:16:03',908,228,NULL,2,'2006-02-15 21:30:53'),(15235,'2005-08-22 17:43:12',2726,416,'2005-08-29 23:03:12',2,'2006-02-15 21:30:53'),(15236,'2005-08-22 17:44:27',4124,557,'2005-08-24 23:25:27',1,'2006-02-15 21:30:53'),(15237,'2005-08-22 17:44:30',4485,148,'2005-08-24 12:51:30',1,'2006-02-15 21:30:53'),(15238,'2005-08-22 17:46:12',403,70,'2005-08-29 16:41:12',1,'2006-02-15 21:30:53'),(15239,'2005-08-22 17:46:17',1809,501,'2005-08-26 19:03:17',1,'2006-02-15 21:30:53'),(15240,'2005-08-22 17:46:41',2014,11,'2005-08-23 15:08:41',2,'2006-02-15 21:30:53'),(15241,'2005-08-22 17:47:40',832,337,'2005-08-29 15:28:40',2,'2006-02-15 21:30:53'),(15242,'2005-08-22 17:48:10',2106,364,'2005-08-27 23:32:10',1,'2006-02-15 21:30:53'),(15243,'2005-08-22 17:48:28',4408,308,'2005-08-31 13:22:28',1,'2006-02-15 21:30:53'),(15244,'2005-08-22 17:48:42',1486,271,'2005-08-28 13:17:42',2,'2006-02-15 21:30:53'),(15245,'2005-08-22 17:49:35',2545,298,'2005-08-26 18:25:35',2,'2006-02-15 21:30:53'),(15246,'2005-08-22 17:50:49',3786,100,'2005-08-30 22:21:49',1,'2006-02-15 21:30:53'),(15247,'2005-08-22 17:52:05',4572,250,'2005-08-31 21:37:05',1,'2006-02-15 21:30:53'),(15248,'2005-08-22 17:53:06',977,20,'2005-08-25 18:43:06',2,'2006-02-15 21:30:53'),(15249,'2005-08-22 17:58:27',121,444,'2005-08-30 14:55:27',1,'2006-02-15 21:30:53'),(15250,'2005-08-22 18:03:11',2176,143,'2005-08-27 12:19:11',2,'2006-02-15 21:30:53'),(15251,'2005-08-22 18:03:57',1994,285,'2005-08-23 20:56:57',2,'2006-02-15 21:30:53'),(15252,'2005-08-22 18:04:22',1821,453,'2005-08-25 17:14:22',2,'2006-02-15 21:30:53'),(15253,'2005-08-22 18:05:21',4143,333,'2005-08-23 18:06:21',2,'2006-02-15 21:30:53'),(15254,'2005-08-22 18:13:07',3762,209,'2005-08-24 21:55:07',1,'2006-02-15 21:30:53'),(15255,'2005-08-22 18:16:50',3415,84,'2005-08-28 14:14:50',2,'2006-02-15 21:30:53'),(15256,'2005-08-22 18:20:07',1873,198,'2005-08-28 12:57:07',1,'2006-02-15 21:30:53'),(15257,'2005-08-22 18:21:04',915,223,'2005-08-30 20:13:04',1,'2006-02-15 21:30:53'),(15258,'2005-08-22 18:22:44',788,293,'2005-08-25 16:54:44',1,'2006-02-15 21:30:53'),(15259,'2005-08-22 18:23:23',3261,488,'2005-08-27 13:06:23',1,'2006-02-15 21:30:53'),(15260,'2005-08-22 18:24:16',3135,274,'2005-08-24 21:26:16',1,'2006-02-15 21:30:53'),(15261,'2005-08-22 18:24:34',2200,140,'2005-08-27 19:53:34',1,'2006-02-15 21:30:53'),(15262,'2005-08-22 18:25:21',2534,298,'2005-08-28 22:19:21',1,'2006-02-15 21:30:53'),(15263,'2005-08-22 18:27:33',184,324,'2005-08-30 14:05:33',1,'2006-02-15 21:30:53'),(15264,'2005-08-22 18:27:38',4459,440,'2005-08-24 12:39:38',1,'2006-02-15 21:30:53'),(15265,'2005-08-22 18:35:59',1763,512,'2005-08-28 21:18:59',2,'2006-02-15 21:30:53'),(15266,'2005-08-22 18:37:24',1870,124,'2005-08-23 17:34:24',2,'2006-02-15 21:30:53'),(15267,'2005-08-22 18:37:48',2966,153,'2005-08-24 00:22:48',1,'2006-02-15 21:30:53'),(15268,'2005-08-22 18:39:11',1245,301,'2005-08-26 21:46:11',1,'2006-02-15 21:30:53'),(15269,'2005-08-22 18:39:44',524,275,'2005-08-24 17:29:44',1,'2006-02-15 21:30:53'),(15270,'2005-08-22 18:48:42',4123,262,'2005-08-28 15:38:42',2,'2006-02-15 21:30:53'),(15271,'2005-08-22 18:48:48',4232,59,'2005-08-30 00:45:48',2,'2006-02-15 21:30:53'),(15272,'2005-08-22 18:49:40',1664,422,'2005-08-28 21:22:40',1,'2006-02-15 21:30:53'),(15273,'2005-08-22 18:53:28',2558,422,'2005-08-30 18:58:28',2,'2006-02-15 21:30:53'),(15274,'2005-08-22 18:55:52',3519,515,'2005-08-23 20:02:52',1,'2006-02-15 21:30:53'),(15275,'2005-08-22 18:57:39',1522,597,'2005-08-23 19:00:39',2,'2006-02-15 21:30:53'),(15276,'2005-08-22 18:59:01',4523,490,'2005-08-23 19:49:01',2,'2006-02-15 21:30:53'),(15277,'2005-08-22 19:02:48',1780,217,'2005-08-31 18:53:48',2,'2006-02-15 21:30:53'),(15278,'2005-08-22 19:06:47',2454,472,'2005-08-25 01:00:47',2,'2006-02-15 21:30:53'),(15279,'2005-08-22 19:08:49',1088,363,'2005-08-30 00:38:49',2,'2006-02-15 21:30:53'),(15280,'2005-08-22 19:09:52',3464,317,'2005-08-28 00:39:52',1,'2006-02-15 21:30:53'),(15281,'2005-08-22 19:10:26',3992,543,'2005-08-27 21:55:26',2,'2006-02-15 21:30:53'),(15282,'2006-02-14 15:16:03',1932,163,NULL,1,'2006-02-15 21:30:53'),(15283,'2005-08-22 19:16:04',1688,219,'2005-08-31 21:05:04',1,'2006-02-15 21:30:53'),(15284,'2005-08-22 19:17:08',2265,393,'2005-08-29 13:28:08',2,'2006-02-15 21:30:53'),(15285,'2005-08-22 19:17:24',481,233,'2005-08-25 00:25:24',1,'2006-02-15 21:30:53'),(15286,'2005-08-22 19:17:56',3731,74,'2005-08-29 16:08:56',2,'2006-02-15 21:30:53'),(15287,'2005-08-22 19:19:37',308,535,'2005-08-29 16:05:37',1,'2006-02-15 21:30:53'),(15288,'2005-08-22 19:23:58',1999,475,'2005-08-26 23:28:58',1,'2006-02-15 21:30:53'),(15289,'2005-08-22 19:27:24',1026,513,'2005-08-30 22:21:24',1,'2006-02-15 21:30:53'),(15290,'2005-08-22 19:28:02',270,404,'2005-08-31 20:04:02',2,'2006-02-15 21:30:53'),(15291,'2005-08-22 19:28:04',1461,494,'2005-08-26 15:07:04',1,'2006-02-15 21:30:53'),(15292,'2005-08-22 19:28:56',3072,337,'2005-08-28 22:39:56',2,'2006-02-15 21:30:53'),(15293,'2006-02-14 15:16:03',1219,263,NULL,2,'2006-02-15 21:30:53'),(15294,'2006-02-14 15:16:03',70,108,NULL,1,'2006-02-15 21:30:53'),(15295,'2005-08-22 19:36:21',2164,186,'2005-08-31 00:07:21',2,'2006-02-15 21:30:53'),(15296,'2005-08-22 19:37:20',2715,55,'2005-08-24 15:16:20',1,'2006-02-15 21:30:53'),(15297,'2006-02-14 15:16:03',3192,327,NULL,2,'2006-02-15 21:30:53'),(15298,'2005-08-22 19:41:37',1446,1,'2005-08-28 22:49:37',1,'2006-02-15 21:30:53'),(15299,'2005-08-22 19:42:57',767,381,'2005-08-23 15:29:57',2,'2006-02-15 21:30:53'),(15300,'2005-08-22 19:44:00',2319,399,'2005-08-25 22:49:00',2,'2006-02-15 21:30:53'),(15301,'2005-08-22 19:44:16',619,454,'2005-08-26 22:57:16',2,'2006-02-15 21:30:53'),(15302,'2005-08-22 19:44:53',188,320,'2005-08-24 18:13:53',2,'2006-02-15 21:30:53'),(15303,'2005-08-22 19:44:59',1672,390,'2005-08-30 21:59:59',1,'2006-02-15 21:30:53'),(15304,'2005-08-22 19:45:57',4332,112,'2005-08-28 00:21:57',2,'2006-02-15 21:30:53'),(15305,'2005-08-22 19:46:05',671,529,'2005-08-27 19:11:05',2,'2006-02-15 21:30:53'),(15306,'2005-08-22 19:46:36',521,340,'2005-08-27 14:09:36',1,'2006-02-15 21:30:53'),(15307,'2005-08-22 19:54:26',4525,598,'2005-08-29 01:38:26',2,'2006-02-15 21:30:53'),(15308,'2005-08-22 19:54:31',987,329,'2005-08-26 23:09:31',1,'2006-02-15 21:30:53'),(15309,'2005-08-22 19:54:52',2743,141,'2005-08-24 23:00:52',2,'2006-02-15 21:30:53'),(15310,'2005-08-22 19:56:41',2546,360,'2005-08-24 16:32:41',2,'2006-02-15 21:30:53'),(15311,'2005-08-22 19:56:52',3612,176,'2005-08-31 20:15:52',2,'2006-02-15 21:30:53'),(15312,'2005-08-22 19:58:15',2509,280,'2005-08-25 19:21:15',2,'2006-02-15 21:30:53'),(15313,'2005-08-22 19:59:42',2587,333,'2005-08-24 15:03:42',2,'2006-02-15 21:30:53'),(15314,'2006-02-14 15:16:03',2754,412,NULL,1,'2006-02-15 21:30:53'),(15315,'2005-08-22 20:03:46',312,1,'2005-08-30 01:51:46',2,'2006-02-15 21:30:53'),(15316,'2005-08-22 20:07:03',1830,422,'2005-08-27 18:45:03',1,'2006-02-15 21:30:53'),(15317,'2005-08-22 20:14:13',2325,512,'2005-08-29 18:32:13',1,'2006-02-15 21:30:53'),(15318,'2005-08-22 20:15:16',1738,60,'2005-08-25 14:17:16',1,'2006-02-15 21:30:53'),(15319,'2005-08-22 20:17:17',3041,188,'2005-08-25 01:06:17',2,'2006-02-15 21:30:53'),(15320,'2005-08-22 20:17:49',648,407,'2005-08-28 17:31:49',1,'2006-02-15 21:30:53'),(15321,'2005-08-22 20:20:04',4152,384,'2005-08-24 23:26:04',2,'2006-02-15 21:30:53'),(15322,'2005-08-22 20:20:30',3553,263,'2005-08-25 01:26:30',2,'2006-02-15 21:30:53'),(15323,'2005-08-22 20:22:40',1153,178,'2005-08-26 00:35:40',1,'2006-02-15 21:30:53'),(15324,'2005-08-22 20:23:13',161,93,'2005-08-29 18:23:13',1,'2006-02-15 21:30:53'),(15325,'2005-08-22 20:27:38',3549,74,'2005-08-23 15:24:38',1,'2006-02-15 21:30:53'),(15326,'2006-02-14 15:16:03',3320,58,NULL,1,'2006-02-15 21:30:53'),(15327,'2005-08-22 20:31:24',1018,450,'2005-08-30 23:52:24',1,'2006-02-15 21:30:53'),(15328,'2005-08-22 20:31:38',4546,274,'2005-08-29 20:17:38',1,'2006-02-15 21:30:53'),(15329,'2005-08-22 20:32:39',1900,521,'2005-08-23 17:15:39',1,'2006-02-15 21:30:53'),(15330,'2005-08-22 20:35:30',689,427,'2005-08-30 21:54:30',1,'2006-02-15 21:30:53'),(15331,'2005-08-22 20:37:57',146,147,'2005-08-25 21:56:57',1,'2006-02-15 21:30:53'),(15332,'2005-08-22 20:41:53',3368,162,'2005-08-24 01:45:53',1,'2006-02-15 21:30:53'),(15333,'2005-08-22 20:44:06',1839,142,'2005-08-29 22:34:06',2,'2006-02-15 21:30:53'),(15334,'2005-08-22 20:44:35',3882,407,'2005-08-29 23:03:35',2,'2006-02-15 21:30:53'),(15335,'2005-08-22 20:44:55',1593,363,'2005-08-28 21:43:55',1,'2006-02-15 21:30:53'),(15336,'2005-08-22 20:47:48',490,461,'2005-08-31 18:17:48',2,'2006-02-15 21:30:53'),(15337,'2005-08-22 20:49:51',280,237,'2005-08-26 23:27:51',1,'2006-02-15 21:30:53'),(15338,'2005-08-22 20:51:24',502,13,'2005-08-24 23:41:24',2,'2006-02-15 21:30:53'),(15339,'2005-08-22 20:52:12',1660,331,'2005-08-26 00:36:12',2,'2006-02-15 21:30:53'),(15340,'2005-08-22 20:55:56',3653,313,'2005-08-27 18:52:56',1,'2006-02-15 21:30:53'),(15341,'2005-08-22 20:56:31',3359,91,'2005-08-30 17:25:31',1,'2006-02-15 21:30:53'),(15342,'2005-08-22 20:56:41',3287,459,'2005-08-26 22:51:41',2,'2006-02-15 21:30:53'),(15343,'2005-08-22 21:01:25',2589,538,'2005-08-28 16:15:25',1,'2006-02-15 21:30:53'),(15344,'2005-08-22 21:01:48',3560,193,'2005-08-27 15:47:48',1,'2006-02-15 21:30:53'),(15345,'2005-08-22 21:05:50',3481,277,'2005-08-26 20:30:50',1,'2006-02-15 21:30:53'),(15346,'2005-08-22 21:06:00',3525,266,'2005-08-28 22:08:00',1,'2006-02-15 21:30:53'),(15347,'2005-08-22 21:12:19',3764,519,'2005-08-24 20:12:19',1,'2006-02-15 21:30:53'),(15348,'2005-08-22 21:13:46',3846,587,'2005-08-24 17:06:46',1,'2006-02-15 21:30:53'),(15349,'2005-08-22 21:13:51',4055,587,'2005-08-23 20:55:51',1,'2006-02-15 21:30:53'),(15350,'2005-08-22 21:15:29',1170,488,'2005-08-24 02:56:29',1,'2006-02-15 21:30:53'),(15351,'2005-08-22 21:15:46',3260,154,'2005-08-23 17:38:46',1,'2006-02-15 21:30:53'),(15352,'2005-08-22 21:16:54',16,560,'2005-08-31 00:38:54',2,'2006-02-15 21:30:53'),(15353,'2005-08-22 21:18:08',3470,368,'2005-08-25 20:29:08',2,'2006-02-15 21:30:53'),(15354,'2005-08-22 21:18:59',4212,412,'2005-08-27 20:12:59',2,'2006-02-15 21:30:53'),(15355,'2005-08-22 21:19:24',3477,493,'2005-08-28 20:36:24',2,'2006-02-15 21:30:53'),(15356,'2005-08-22 21:24:19',4507,539,'2005-08-25 22:32:19',2,'2006-02-15 21:30:53'),(15357,'2005-08-22 21:28:59',727,24,'2005-08-25 17:15:59',1,'2006-02-15 21:30:53'),(15358,'2005-08-22 21:29:14',822,448,'2005-08-31 00:10:14',2,'2006-02-15 21:30:53'),(15359,'2005-08-22 21:34:00',4505,77,'2005-08-29 18:59:00',1,'2006-02-15 21:30:53'),(15360,'2005-08-22 21:36:51',1950,531,'2005-08-24 16:46:51',1,'2006-02-15 21:30:53'),(15361,'2005-08-22 21:39:45',1407,380,'2005-08-23 17:32:45',2,'2006-02-15 21:30:53'),(15362,'2005-08-22 21:40:20',1023,497,'2005-08-29 15:55:20',1,'2006-02-15 21:30:53'),(15363,'2005-08-22 21:41:40',2326,480,'2005-08-23 21:40:40',1,'2006-02-15 21:30:53'),(15364,'2005-08-22 21:41:41',4184,204,'2005-08-28 00:49:41',1,'2006-02-15 21:30:53'),(15365,'2005-08-22 21:42:17',3382,327,'2005-09-01 03:14:17',2,'2006-02-15 21:30:53'),(15366,'2005-08-22 21:45:57',1453,374,'2005-08-30 16:35:57',1,'2006-02-15 21:30:53'),(15367,'2005-08-22 21:47:53',160,355,'2005-08-27 17:54:53',2,'2006-02-15 21:30:53'),(15368,'2005-08-22 21:57:15',1130,370,'2005-08-29 16:28:15',1,'2006-02-15 21:30:53'),(15369,'2005-08-22 21:58:06',881,121,'2005-08-26 00:27:06',2,'2006-02-15 21:30:53'),(15370,'2005-08-22 21:59:29',67,10,'2005-08-27 16:32:29',1,'2006-02-15 21:30:53'),(15371,'2006-02-14 15:16:03',3672,94,NULL,2,'2006-02-15 21:30:53'),(15372,'2005-08-22 21:59:51',3876,273,'2005-08-23 17:01:51',1,'2006-02-15 21:30:53'),(15373,'2005-08-22 22:08:11',4439,14,'2005-08-24 01:05:11',2,'2006-02-15 21:30:53'),(15374,'2005-08-22 22:09:09',4275,8,'2005-08-31 01:10:09',1,'2006-02-15 21:30:53'),(15375,'2005-08-22 22:12:02',3864,191,'2005-08-24 00:50:02',2,'2006-02-15 21:30:53'),(15376,'2005-08-22 22:21:35',2963,390,'2005-08-28 20:56:35',1,'2006-02-15 21:30:53'),(15377,'2005-08-22 22:22:33',3405,551,'2005-08-29 18:41:33',1,'2006-02-15 21:30:53'),(15378,'2005-08-22 22:25:17',1483,340,'2005-08-30 17:04:17',1,'2006-02-15 21:30:53'),(15379,'2005-08-22 22:26:13',1899,148,'2005-08-31 18:19:13',1,'2006-02-15 21:30:53'),(15380,'2005-08-22 22:28:15',3642,423,'2005-08-28 23:21:15',1,'2006-02-15 21:30:53'),(15381,'2005-08-22 22:28:36',845,110,'2005-08-24 19:26:36',2,'2006-02-15 21:30:53'),(15382,'2005-08-22 22:30:50',333,376,'2005-08-24 04:07:50',2,'2006-02-15 21:30:53'),(15383,'2005-08-22 22:31:20',686,405,'2005-08-28 17:43:20',1,'2006-02-15 21:30:53'),(15384,'2005-08-22 22:34:44',3208,26,'2005-08-23 23:25:44',2,'2006-02-15 21:30:53'),(15385,'2005-08-22 22:37:34',140,434,'2005-08-26 00:36:34',2,'2006-02-15 21:30:53'),(15386,'2005-08-22 22:41:14',3056,327,'2005-08-29 22:29:14',1,'2006-02-15 21:30:53'),(15387,'2005-08-22 22:49:13',3879,323,'2005-08-29 01:49:13',2,'2006-02-15 21:30:53'),(15388,'2005-08-22 22:49:23',3995,50,'2005-09-01 03:50:23',2,'2006-02-15 21:30:53'),(15389,'2005-08-22 22:51:13',2077,231,'2005-08-28 23:46:13',1,'2006-02-15 21:30:53'),(15390,'2005-08-22 22:57:25',462,551,'2005-08-31 18:06:25',1,'2006-02-15 21:30:53'),(15391,'2005-08-22 23:01:45',3918,482,'2005-08-29 02:59:45',2,'2006-02-15 21:30:53'),(15392,'2005-08-22 23:02:15',538,410,'2005-09-01 01:14:15',2,'2006-02-15 21:30:53'),(15393,'2005-08-22 23:04:09',2924,443,'2005-08-27 02:23:09',2,'2006-02-15 21:30:53'),(15394,'2005-08-22 23:04:21',3455,507,'2005-08-25 20:53:21',2,'2006-02-15 21:30:53'),(15395,'2005-08-22 23:06:25',2880,526,'2005-08-30 19:18:25',1,'2006-02-15 21:30:53'),(15396,'2005-08-22 23:07:57',4050,319,'2005-08-28 19:39:57',2,'2006-02-15 21:30:53'),(15397,'2005-08-22 23:08:46',1482,261,'2005-08-25 20:58:46',1,'2006-02-15 21:30:53'),(15398,'2005-08-22 23:10:49',4451,109,'2005-08-28 00:49:49',2,'2006-02-15 21:30:53'),(15399,'2005-08-22 23:11:59',3858,379,'2005-08-26 22:16:59',2,'2006-02-15 21:30:53'),(15400,'2005-08-22 23:13:03',2664,473,'2005-08-28 18:34:03',1,'2006-02-15 21:30:53'),(15401,'2005-08-22 23:13:10',1721,103,'2005-09-01 03:44:10',1,'2006-02-15 21:30:53'),(15402,'2005-08-22 23:17:41',1575,293,'2005-08-30 20:07:41',2,'2006-02-15 21:30:53'),(15403,'2005-08-22 23:18:10',4315,581,'2005-08-23 18:08:10',2,'2006-02-15 21:30:53'),(15404,'2005-08-22 23:19:44',3557,211,'2005-08-30 19:58:44',2,'2006-02-15 21:30:53'),(15405,'2005-08-22 23:20:41',3263,596,'2005-08-25 23:53:41',1,'2006-02-15 21:30:53'),(15406,'2005-08-22 23:21:22',400,227,'2005-08-28 22:21:22',1,'2006-02-15 21:30:53'),(15407,'2006-02-14 15:16:03',3330,42,NULL,2,'2006-02-15 21:30:53'),(15408,'2005-08-22 23:26:32',165,156,'2005-08-30 20:22:32',1,'2006-02-15 21:30:53'),(15409,'2005-08-22 23:26:32',560,188,'2005-08-24 22:44:32',1,'2006-02-15 21:30:53'),(15410,'2005-08-22 23:27:43',2052,403,'2005-08-29 05:12:43',2,'2006-02-15 21:30:53'),(15411,'2005-08-22 23:35:41',4423,461,'2005-08-26 00:51:41',1,'2006-02-15 21:30:53'),(15412,'2005-08-22 23:37:11',1267,199,'2005-08-28 23:26:11',2,'2006-02-15 21:30:53'),(15413,'2005-08-22 23:38:01',2494,476,'2005-08-23 19:27:01',2,'2006-02-15 21:30:53'),(15414,'2005-08-22 23:43:54',718,532,'2005-08-30 18:26:54',1,'2006-02-15 21:30:53'),(15415,'2005-08-22 23:48:56',4176,204,'2005-09-01 02:05:56',1,'2006-02-15 21:30:53'),(15416,'2005-08-22 23:51:23',1167,383,'2005-08-29 20:03:23',1,'2006-02-15 21:30:53'),(15417,'2005-08-22 23:54:04',1826,305,'2005-08-26 22:25:04',1,'2006-02-15 21:30:53'),(15418,'2005-08-22 23:54:14',808,205,'2005-08-28 04:23:14',2,'2006-02-15 21:30:53'),(15419,'2005-08-22 23:54:36',1120,450,'2005-08-25 00:52:36',1,'2006-02-15 21:30:53'),(15420,'2005-08-22 23:55:51',1396,161,'2005-08-31 20:09:51',2,'2006-02-15 21:30:53'),(15421,'2005-08-22 23:56:37',3,541,'2005-08-25 18:58:37',2,'2006-02-15 21:30:53'),(15422,'2005-08-22 23:58:09',2601,309,'2005-08-30 19:03:09',2,'2006-02-15 21:30:53'),(15423,'2006-02-14 15:16:03',1786,596,NULL,1,'2006-02-15 21:30:53'),(15424,'2005-08-23 00:03:01',3452,138,'2005-08-27 23:27:01',2,'2006-02-15 21:30:53'),(15425,'2005-08-23 00:05:57',551,259,'2005-09-01 05:08:57',1,'2006-02-15 21:30:53'),(15426,'2005-08-23 00:07:19',3280,347,'2005-08-26 23:19:19',1,'2006-02-15 21:30:53'),(15427,'2005-08-23 00:07:53',2775,448,'2005-09-01 02:55:53',2,'2006-02-15 21:30:53'),(15428,'2005-08-23 00:11:52',4379,402,'2005-08-24 02:35:52',1,'2006-02-15 21:30:53'),(15429,'2005-08-23 00:20:31',740,241,'2005-08-23 20:22:31',1,'2006-02-15 21:30:53'),(15430,'2006-02-14 15:16:03',4353,282,NULL,1,'2006-02-15 21:30:53'),(15431,'2005-08-23 00:26:47',3251,550,'2005-08-31 23:26:47',2,'2006-02-15 21:30:53'),(15432,'2005-08-23 00:26:52',1896,117,'2005-08-27 06:11:52',1,'2006-02-15 21:30:53'),(15433,'2005-08-23 00:27:18',155,198,'2005-08-26 21:36:18',1,'2006-02-15 21:30:53'),(15434,'2005-08-23 00:28:16',4378,518,'2005-08-26 04:27:16',2,'2006-02-15 21:30:53'),(15435,'2005-08-23 00:28:19',2103,468,'2005-08-26 00:44:19',2,'2006-02-15 21:30:53'),(15436,'2005-08-23 00:30:26',1527,505,'2005-08-28 06:29:26',1,'2006-02-15 21:30:53'),(15437,'2005-08-23 00:31:09',4236,368,'2005-08-30 06:17:09',2,'2006-02-15 21:30:53'),(15438,'2005-08-23 00:31:57',2030,46,'2005-08-26 20:02:57',1,'2006-02-15 21:30:53'),(15439,'2005-08-23 00:34:28',3848,136,'2005-08-27 01:07:28',1,'2006-02-15 21:30:53'),(15440,'2005-08-23 00:37:21',2254,559,'2005-08-24 23:24:21',1,'2006-02-15 21:30:53'),(15441,'2006-02-14 15:16:03',258,422,NULL,2,'2006-02-15 21:30:53'),(15442,'2005-08-23 00:42:49',1452,42,'2005-08-27 00:35:49',1,'2006-02-15 21:30:53'),(15443,'2005-08-23 00:44:15',742,598,'2005-09-01 05:33:15',2,'2006-02-15 21:30:53'),(15444,'2005-08-23 00:46:52',959,153,'2005-08-29 20:37:52',2,'2006-02-15 21:30:53'),(15445,'2005-08-23 00:48:29',196,28,'2005-08-28 00:33:29',1,'2006-02-15 21:30:53'),(15446,'2005-08-23 00:49:24',503,379,'2005-08-26 02:09:24',2,'2006-02-15 21:30:53'),(15447,'2005-08-23 00:53:57',4090,331,'2005-08-29 06:19:57',2,'2006-02-15 21:30:53'),(15448,'2005-08-23 00:55:24',2903,490,'2005-08-25 02:20:24',1,'2006-02-15 21:30:53'),(15449,'2005-08-23 00:55:43',2856,461,'2005-08-28 03:41:43',1,'2006-02-15 21:30:53'),(15450,'2005-08-23 00:56:01',1102,322,'2005-08-24 01:00:01',2,'2006-02-15 21:30:53'),(15451,'2005-08-23 00:56:27',231,514,'2005-08-24 00:15:27',2,'2006-02-15 21:30:53'),(15452,'2005-08-23 00:57:12',717,115,'2005-08-28 00:19:12',1,'2006-02-15 21:30:53'),(15453,'2005-08-23 01:01:01',2,359,'2005-08-30 20:08:01',1,'2006-02-15 21:30:53'),(15454,'2006-02-14 15:16:03',2946,142,NULL,2,'2006-02-15 21:30:53'),(15455,'2005-08-23 01:05:00',3991,238,'2005-08-26 22:56:00',1,'2006-02-15 21:30:53'),(15456,'2005-08-23 01:07:01',2451,262,'2005-08-24 23:28:01',2,'2006-02-15 21:30:53'),(15457,'2005-08-23 01:07:37',4539,306,'2005-08-26 19:46:37',1,'2006-02-15 21:30:53'),(15458,'2006-02-14 15:16:03',25,590,NULL,2,'2006-02-15 21:30:53'),(15459,'2005-08-23 01:09:48',2058,346,'2005-08-24 04:52:48',1,'2006-02-15 21:30:53'),(15460,'2005-08-23 01:10:42',2907,20,'2005-08-28 20:49:42',2,'2006-02-15 21:30:53'),(15461,'2005-08-23 01:13:52',4542,103,'2005-08-30 00:44:52',1,'2006-02-15 21:30:53'),(15462,'2005-08-23 01:14:01',3267,389,'2005-08-29 19:52:01',1,'2006-02-15 21:30:53'),(15463,'2005-08-23 01:15:07',863,127,'2005-08-29 06:50:07',1,'2006-02-15 21:30:53'),(15464,'2005-08-23 01:15:18',3235,62,'2005-08-29 02:58:18',2,'2006-02-15 21:30:53'),(15465,'2005-08-23 01:16:33',362,520,'2005-08-28 20:08:33',2,'2006-02-15 21:30:53'),(15466,'2005-08-23 01:16:55',571,418,'2005-08-29 22:57:55',1,'2006-02-15 21:30:53'),(15467,'2005-08-23 01:22:12',3658,103,'2005-08-29 23:42:12',2,'2006-02-15 21:30:53'),(15468,'2005-08-23 01:25:30',2440,399,'2005-08-28 01:40:30',2,'2006-02-15 21:30:53'),(15469,'2005-08-23 01:29:59',1939,597,'2005-08-27 04:02:59',1,'2006-02-15 21:30:53'),(15470,'2005-08-23 01:35:12',3009,416,'2005-09-01 05:33:12',1,'2006-02-15 21:30:53'),(15471,'2005-08-23 01:38:48',2591,139,'2005-08-31 19:47:48',1,'2006-02-15 21:30:53'),(15472,'2005-08-23 01:39:05',4293,226,'2005-08-25 04:43:05',1,'2006-02-15 21:30:53'),(15473,'2005-08-23 01:39:10',356,259,'2005-08-25 03:48:10',1,'2006-02-15 21:30:53'),(15474,'2005-08-23 01:39:10',3015,188,'2005-08-23 21:46:10',2,'2006-02-15 21:30:53'),(15475,'2005-08-23 01:44:43',4503,562,'2005-08-23 23:53:43',2,'2006-02-15 21:30:53'),(15476,'2005-08-23 01:45:07',2478,433,'2005-08-26 21:07:07',2,'2006-02-15 21:30:53'),(15477,'2005-08-23 01:46:35',2406,142,'2005-08-28 22:12:35',1,'2006-02-15 21:30:53'),(15478,'2005-08-23 01:50:31',4563,167,'2005-08-27 21:40:31',2,'2006-02-15 21:30:53'),(15479,'2005-08-23 01:50:53',4182,149,'2005-08-29 00:53:53',1,'2006-02-15 21:30:53'),(15480,'2005-08-23 01:57:20',3298,577,'2005-08-26 04:43:20',2,'2006-02-15 21:30:53'),(15481,'2005-08-23 01:59:14',3262,414,'2005-08-27 04:38:14',1,'2006-02-15 21:30:53'),(15482,'2005-08-23 02:01:20',3923,181,'2005-08-24 03:25:20',2,'2006-02-15 21:30:53'),(15483,'2005-08-23 02:02:53',2970,173,'2005-08-26 04:13:53',1,'2006-02-15 21:30:53'),(15484,'2005-08-23 02:04:49',642,342,'2005-08-24 05:46:49',1,'2006-02-15 21:30:53'),(15485,'2005-08-23 02:04:57',281,114,'2005-08-28 07:05:57',2,'2006-02-15 21:30:53'),(15486,'2005-08-23 02:05:20',1666,502,'2005-08-29 07:52:20',2,'2006-02-15 21:30:53'),(15487,'2005-08-23 02:05:51',2636,469,'2005-08-25 04:45:51',1,'2006-02-15 21:30:53'),(15488,'2005-08-23 02:06:01',4535,385,'2005-08-29 21:35:01',2,'2006-02-15 21:30:53'),(15489,'2005-08-23 02:06:41',764,285,'2005-08-25 06:50:41',1,'2006-02-15 21:30:53'),(15490,'2005-08-23 02:08:18',3922,493,'2005-08-30 06:15:18',1,'2006-02-15 21:30:53'),(15491,'2005-08-23 02:08:40',2059,28,'2005-08-23 20:23:40',2,'2006-02-15 21:30:53'),(15492,'2005-08-23 02:13:46',1298,520,'2005-08-26 21:53:46',2,'2006-02-15 21:30:53'),(15493,'2005-08-23 02:20:53',3521,308,'2005-08-25 23:02:53',1,'2006-02-15 21:30:53'),(15494,'2005-08-23 02:25:09',2968,455,'2005-08-27 00:18:09',1,'2006-02-15 21:30:53'),(15495,'2005-08-23 02:26:10',4310,193,'2005-08-30 01:07:10',2,'2006-02-15 21:30:53'),(15496,'2005-08-23 02:30:23',1863,275,'2005-08-31 03:31:23',2,'2006-02-15 21:30:53'),(15497,'2006-02-14 15:16:03',363,107,NULL,1,'2006-02-15 21:30:53'),(15498,'2005-08-23 02:33:27',1583,83,'2005-08-23 22:30:27',1,'2006-02-15 21:30:53'),(15499,'2005-08-23 02:37:19',630,488,'2005-08-23 20:57:19',1,'2006-02-15 21:30:53'),(15500,'2005-08-23 02:39:37',886,74,'2005-08-27 06:42:37',1,'2006-02-15 21:30:53'),(15501,'2005-08-23 02:39:56',4468,138,'2005-08-25 04:39:56',1,'2006-02-15 21:30:53'),(15502,'2005-08-23 02:40:04',3219,433,'2005-08-31 00:36:04',2,'2006-02-15 21:30:53'),(15503,'2005-08-23 02:44:49',4519,582,'2005-08-27 06:33:49',2,'2006-02-15 21:30:53'),(15504,'2005-08-23 02:45:21',1967,315,'2005-09-01 03:24:21',2,'2006-02-15 21:30:53'),(15505,'2005-08-23 02:46:13',1144,375,'2005-08-26 23:34:13',2,'2006-02-15 21:30:53'),(15506,'2005-08-23 02:48:24',1914,553,'2005-08-28 04:10:24',1,'2006-02-15 21:30:53'),(15507,'2005-08-23 02:48:26',3130,563,'2005-08-27 01:32:26',1,'2006-02-15 21:30:53'),(15508,'2005-08-23 02:49:04',4035,293,'2005-08-29 00:58:04',1,'2006-02-15 21:30:53'),(15509,'2005-08-23 02:51:24',1291,6,'2005-08-31 06:21:24',2,'2006-02-15 21:30:53'),(15510,'2005-08-23 02:51:27',3239,209,'2005-09-01 02:44:27',2,'2006-02-15 21:30:53'),(15511,'2005-08-23 02:55:42',3327,303,'2005-08-31 03:14:42',2,'2006-02-15 21:30:53'),(15512,'2005-08-23 02:57:30',4336,25,'2005-08-25 01:47:30',2,'2006-02-15 21:30:53'),(15513,'2005-08-23 03:01:56',3779,147,'2005-08-24 23:46:56',2,'2006-02-15 21:30:53'),(15514,'2005-08-23 03:03:40',2824,366,'2005-08-24 01:06:40',1,'2006-02-15 21:30:53'),(15515,'2005-08-23 03:03:53',3940,307,'2005-08-25 08:27:53',2,'2006-02-15 21:30:53'),(15516,'2005-08-23 03:12:54',219,82,'2005-08-30 04:02:54',1,'2006-02-15 21:30:53'),(15517,'2005-08-23 03:13:01',2221,187,'2005-08-25 21:14:01',2,'2006-02-15 21:30:53'),(15518,'2005-08-23 03:19:34',3522,410,'2005-08-24 02:55:34',1,'2006-02-15 21:30:53'),(15519,'2005-08-23 03:23:32',542,443,'2005-08-25 03:48:32',1,'2006-02-15 21:30:53'),(15520,'2005-08-23 03:30:45',1792,163,'2005-09-01 00:20:45',1,'2006-02-15 21:30:53'),(15521,'2005-08-23 03:30:51',134,331,'2005-08-28 22:09:51',1,'2006-02-15 21:30:53'),(15522,'2005-08-23 03:32:31',2396,468,'2005-08-30 02:17:31',2,'2006-02-15 21:30:53'),(15523,'2005-08-23 03:32:36',2570,432,'2005-08-26 22:08:36',2,'2006-02-15 21:30:53'),(15524,'2005-08-23 03:36:26',2886,68,'2005-08-26 06:28:26',2,'2006-02-15 21:30:53'),(15525,'2005-08-23 03:43:32',3509,123,'2005-08-25 07:31:32',2,'2006-02-15 21:30:53'),(15526,'2005-08-23 03:44:30',2892,516,'2005-08-30 08:19:30',1,'2006-02-15 21:30:53'),(15527,'2005-08-23 03:44:51',88,393,'2005-08-25 03:09:51',1,'2006-02-15 21:30:53'),(15528,'2005-08-23 03:45:40',3033,114,'2005-08-25 01:16:40',1,'2006-02-15 21:30:53'),(15529,'2005-08-23 03:46:47',4015,19,'2005-08-24 00:59:47',1,'2006-02-15 21:30:53'),(15530,'2005-08-23 03:50:48',154,167,'2005-08-28 22:17:48',2,'2006-02-15 21:30:53'),(15531,'2005-08-23 03:52:36',2410,355,'2005-08-25 23:21:36',1,'2006-02-15 21:30:53'),(15532,'2006-02-14 15:16:03',1061,23,NULL,1,'2006-02-15 21:30:53'),(15533,'2005-08-23 03:54:39',1895,400,'2005-08-26 08:27:39',2,'2006-02-15 21:30:53'),(15534,'2005-08-23 03:55:54',544,169,'2005-08-24 03:54:54',1,'2006-02-15 21:30:53'),(15535,'2005-08-23 03:58:02',2371,346,'2005-08-25 05:06:02',2,'2006-02-15 21:30:53'),(15536,'2005-08-23 03:58:28',4004,98,'2005-08-31 03:28:28',2,'2006-02-15 21:30:53'),(15537,'2005-08-23 04:00:30',2958,137,'2005-08-24 01:45:30',2,'2006-02-15 21:30:53'),(15538,'2005-08-23 04:07:37',4226,211,'2005-08-28 07:37:37',1,'2006-02-15 21:30:53'),(15539,'2005-08-23 04:09:03',2853,582,'2005-08-26 04:01:03',1,'2006-02-15 21:30:53'),(15540,'2005-08-23 04:12:52',1696,197,'2005-08-31 04:25:52',1,'2006-02-15 21:30:53'),(15541,'2005-08-23 04:13:53',2762,148,'2005-08-29 05:51:53',1,'2006-02-15 21:30:53'),(15542,'2006-02-14 15:16:03',21,111,NULL,1,'2006-02-15 21:30:53'),(15543,'2005-08-23 04:15:41',3836,282,'2005-09-01 05:09:41',2,'2006-02-15 21:30:53'),(15544,'2005-08-23 04:17:56',1918,30,'2005-09-01 00:43:56',2,'2006-02-15 21:30:53'),(15545,'2005-08-23 04:20:16',843,513,'2005-08-29 08:22:16',1,'2006-02-15 21:30:53'),(15546,'2005-08-23 04:20:38',2087,223,'2005-09-01 09:57:38',2,'2006-02-15 21:30:53'),(15547,'2005-08-23 04:25:50',1488,69,'2005-08-26 00:57:50',1,'2006-02-15 21:30:53'),(15548,'2005-08-23 04:26:20',2350,334,'2005-08-28 01:27:20',1,'2006-02-15 21:30:53'),(15549,'2005-08-23 04:27:06',369,170,'2005-09-01 06:07:06',1,'2006-02-15 21:30:53'),(15550,'2005-08-23 04:27:54',1375,465,'2005-08-29 01:29:54',1,'2006-02-15 21:30:53'),(15551,'2005-08-23 04:28:25',3570,345,'2005-08-26 07:19:25',1,'2006-02-15 21:30:53'),(15552,'2005-08-23 04:33:23',4347,527,'2005-09-01 10:25:23',2,'2006-02-15 21:30:53'),(15553,'2005-08-23 04:33:39',1659,232,'2005-08-25 07:53:39',2,'2006-02-15 21:30:53'),(15554,'2005-08-23 04:48:12',198,280,'2005-08-29 05:11:12',1,'2006-02-15 21:30:53'),(15555,'2005-08-23 04:51:52',1869,347,'2005-08-24 01:01:52',1,'2006-02-15 21:30:53'),(15556,'2005-08-23 04:52:16',3683,108,'2005-09-01 02:05:16',2,'2006-02-15 21:30:53'),(15557,'2005-08-23 04:52:17',3641,444,'2005-08-30 02:15:17',2,'2006-02-15 21:30:53'),(15558,'2005-08-23 04:52:22',638,474,'2005-09-01 02:26:22',1,'2006-02-15 21:30:53'),(15559,'2005-08-23 04:55:05',1773,517,'2005-08-30 09:01:05',2,'2006-02-15 21:30:53'),(15560,'2005-08-23 05:01:13',3616,107,'2005-09-01 05:02:13',1,'2006-02-15 21:30:53'),(15561,'2005-08-23 05:02:31',68,469,'2005-09-01 02:51:31',1,'2006-02-15 21:30:53'),(15562,'2005-08-23 05:04:33',4238,149,'2005-08-27 09:58:33',1,'2006-02-15 21:30:53'),(15563,'2005-08-23 05:08:58',170,372,'2005-08-24 04:24:58',1,'2006-02-15 21:30:53'),(15564,'2005-08-23 05:10:42',1268,353,'2005-08-30 03:17:42',1,'2006-02-15 21:30:53'),(15565,'2005-08-23 05:13:09',71,546,'2005-08-30 08:58:09',2,'2006-02-15 21:30:53'),(15566,'2005-08-23 05:17:23',4344,76,'2005-09-01 08:09:23',2,'2006-02-15 21:30:53'),(15567,'2005-08-23 05:20:36',2506,54,'2005-08-24 10:09:36',2,'2006-02-15 21:30:53'),(15568,'2005-08-23 05:24:09',988,556,'2005-08-27 08:57:09',2,'2006-02-15 21:30:53'),(15569,'2005-08-23 05:24:29',1071,313,'2005-08-30 08:23:29',2,'2006-02-15 21:30:53'),(15570,'2005-08-23 05:24:55',4014,557,'2005-08-31 07:06:55',2,'2006-02-15 21:30:53'),(15571,'2005-08-23 05:26:30',716,57,'2005-08-29 00:54:30',2,'2006-02-15 21:30:53'),(15572,'2005-08-23 05:28:01',2816,506,'2005-08-27 00:14:01',2,'2006-02-15 21:30:53'),(15573,'2005-08-23 05:28:36',3133,561,'2005-08-27 05:37:36',2,'2006-02-15 21:30:53'),(15574,'2005-08-23 05:29:32',3253,130,'2005-09-01 01:25:32',2,'2006-02-15 21:30:53'),(15575,'2005-08-23 05:30:19',3916,218,'2005-08-27 05:19:19',2,'2006-02-15 21:30:53'),(15576,'2005-08-23 05:32:03',3257,595,'2005-08-26 02:31:03',1,'2006-02-15 21:30:53'),(15577,'2006-02-14 15:16:03',539,29,NULL,2,'2006-02-15 21:30:53'),(15578,'2005-08-23 05:37:13',2829,302,'2005-08-27 01:11:13',1,'2006-02-15 21:30:53'),(15579,'2005-08-23 05:38:41',3986,480,'2005-08-29 09:18:41',1,'2006-02-15 21:30:53'),(15580,'2005-08-23 05:39:06',754,279,'2005-09-01 01:14:06',2,'2006-02-15 21:30:53'),(15581,'2005-08-23 05:42:13',4010,462,'2005-08-28 00:03:13',1,'2006-02-15 21:30:53'),(15582,'2005-08-23 05:45:44',4264,297,'2005-08-25 07:54:44',2,'2006-02-15 21:30:53'),(15583,'2005-08-23 05:47:55',4299,215,'2005-08-26 01:46:55',1,'2006-02-15 21:30:53'),(15584,'2005-08-23 05:49:21',3526,500,'2005-08-27 04:49:21',1,'2006-02-15 21:30:53'),(15585,'2005-08-23 05:55:22',1177,545,'2005-08-24 11:45:22',2,'2006-02-15 21:30:53'),(15586,'2005-08-23 05:57:04',3232,148,'2005-08-31 01:59:04',1,'2006-02-15 21:30:53'),(15587,'2005-08-23 06:00:28',2510,499,'2005-08-29 10:15:28',1,'2006-02-15 21:30:53'),(15588,'2005-08-23 06:02:35',1810,503,'2005-08-30 04:01:35',2,'2006-02-15 21:30:53'),(15589,'2005-08-23 06:03:31',2379,22,'2005-08-30 07:44:31',2,'2006-02-15 21:30:53'),(15590,'2005-08-23 06:09:44',4048,599,'2005-09-01 06:53:44',2,'2006-02-15 21:30:53'),(15591,'2005-08-23 06:11:52',64,62,'2005-08-25 05:34:52',1,'2006-02-15 21:30:53'),(15593,'2005-08-23 06:15:09',3734,153,'2005-08-27 07:47:09',2,'2006-02-15 21:30:53'),(15594,'2005-08-23 06:18:43',4227,567,'2005-09-01 09:09:43',2,'2006-02-15 21:30:53'),(15595,'2005-08-23 06:19:12',4046,264,'2005-08-31 04:52:12',1,'2006-02-15 21:30:53'),(15596,'2005-08-23 06:19:51',3834,186,'2005-08-25 03:32:51',1,'2006-02-15 21:30:53'),(15597,'2005-08-23 06:21:20',3795,420,'2005-08-28 02:47:20',2,'2006-02-15 21:30:53'),(15598,'2005-08-23 06:23:26',2794,66,'2005-09-01 05:43:26',1,'2006-02-15 21:30:53'),(15599,'2005-08-23 06:25:07',4560,103,'2005-08-29 00:48:07',1,'2006-02-15 21:30:53'),(15600,'2005-08-23 06:31:24',2260,113,'2005-08-28 06:53:24',1,'2006-02-15 21:30:53'),(15601,'2005-08-23 06:33:26',3643,579,'2005-08-24 04:10:26',1,'2006-02-15 21:30:53'),(15602,'2005-08-23 06:41:07',1429,81,'2005-08-24 07:16:07',1,'2006-02-15 21:30:53'),(15603,'2005-08-23 06:41:32',2565,6,'2005-08-28 08:51:32',1,'2006-02-15 21:30:53'),(15604,'2005-08-23 06:44:19',4000,458,'2005-08-29 07:17:19',1,'2006-02-15 21:30:53'),(15605,'2005-08-23 06:48:47',3152,544,'2005-08-28 06:09:47',1,'2006-02-15 21:30:53'),(15606,'2005-08-23 06:50:27',1811,279,'2005-08-28 04:23:27',2,'2006-02-15 21:30:53'),(15607,'2005-08-23 06:54:06',4118,484,'2005-08-26 05:03:06',2,'2006-02-15 21:30:53'),(15608,'2005-08-23 06:55:26',2921,454,'2005-08-28 10:24:26',1,'2006-02-15 21:30:53'),(15609,'2005-08-23 06:56:04',1730,256,'2005-09-01 03:25:04',1,'2006-02-15 21:30:53'),(15610,'2005-08-23 06:56:15',2076,215,'2005-08-24 07:37:15',2,'2006-02-15 21:30:53'),(15611,'2005-08-23 06:56:18',1713,184,'2005-08-25 06:10:18',1,'2006-02-15 21:30:53'),(15612,'2005-08-23 06:59:07',3367,305,'2005-09-01 11:26:07',2,'2006-02-15 21:30:53'),(15613,'2005-08-23 07:03:19',307,461,'2005-08-31 07:50:19',2,'2006-02-15 21:30:53'),(15614,'2005-08-23 07:05:15',1216,287,'2005-09-01 11:41:15',1,'2006-02-15 21:30:53'),(15615,'2005-08-23 07:06:00',899,584,'2005-08-30 11:21:00',2,'2006-02-15 21:30:53'),(15616,'2005-08-23 07:06:38',2947,70,'2005-08-30 04:16:38',1,'2006-02-15 21:30:53'),(15617,'2005-08-23 07:07:22',4085,569,'2005-08-27 01:24:22',2,'2006-02-15 21:30:53'),(15618,'2005-08-23 07:07:58',1903,60,'2005-08-29 03:48:58',1,'2006-02-15 21:30:53'),(15619,'2005-08-23 07:10:14',2468,3,'2005-08-26 07:21:14',2,'2006-02-15 21:30:53'),(15620,'2005-08-23 07:10:22',1173,270,'2005-08-28 06:51:22',2,'2006-02-15 21:30:53'),(15621,'2005-08-23 07:13:43',3832,123,'2005-08-29 08:19:43',1,'2006-02-15 21:30:53'),(15622,'2005-08-23 07:22:02',3335,302,'2005-09-01 06:08:02',2,'2006-02-15 21:30:53'),(15623,'2005-08-23 07:23:29',3003,525,'2005-08-31 01:47:29',1,'2006-02-15 21:30:53'),(15624,'2005-08-23 07:24:27',396,105,'2005-08-29 12:36:27',2,'2006-02-15 21:30:53'),(15625,'2005-08-23 07:25:29',4200,207,'2005-08-27 13:17:29',2,'2006-02-15 21:30:53'),(15626,'2005-08-23 07:25:34',640,370,'2005-08-28 11:01:34',1,'2006-02-15 21:30:53'),(15627,'2005-08-23 07:25:38',1364,453,'2005-08-31 02:53:38',2,'2006-02-15 21:30:53'),(15628,'2005-08-23 07:28:04',1348,408,'2005-08-26 04:23:04',1,'2006-02-15 21:30:53'),(15629,'2005-08-23 07:28:22',3725,286,'2005-08-29 06:29:22',2,'2006-02-15 21:30:53'),(15630,'2005-08-23 07:29:13',3590,580,'2005-08-31 04:33:13',2,'2006-02-15 21:30:53'),(15631,'2005-08-23 07:30:23',2458,93,'2005-08-24 07:23:23',1,'2006-02-15 21:30:53'),(15632,'2005-08-23 07:30:26',2941,60,'2005-08-24 07:53:26',2,'2006-02-15 21:30:53'),(15633,'2005-08-23 07:31:10',882,497,'2005-08-26 04:35:10',2,'2006-02-15 21:30:53'),(15634,'2005-08-23 07:34:18',2517,576,'2005-08-24 12:00:18',2,'2006-02-15 21:30:53'),(15635,'2005-08-23 07:43:00',3308,4,'2005-08-27 10:47:00',1,'2006-02-15 21:30:53'),(15636,'2005-08-23 07:50:46',1169,380,'2005-08-26 07:59:46',2,'2006-02-15 21:30:53'),(15637,'2005-08-23 07:53:38',445,172,'2005-08-29 03:16:38',2,'2006-02-15 21:30:53'),(15638,'2005-08-23 07:54:54',3358,563,'2005-08-30 13:33:54',2,'2006-02-15 21:30:53'),(15639,'2005-08-23 08:03:25',42,214,'2005-08-24 10:21:25',2,'2006-02-15 21:30:53'),(15640,'2005-08-23 08:04:40',3505,262,'2005-08-24 06:38:40',1,'2006-02-15 21:30:53'),(15641,'2005-08-23 08:06:49',3126,240,'2005-08-24 13:17:49',1,'2006-02-15 21:30:53'),(15642,'2005-08-23 08:09:11',2627,160,'2005-08-28 05:57:11',1,'2006-02-15 21:30:53'),(15643,'2005-08-23 08:13:26',103,298,'2005-08-25 05:18:26',2,'2006-02-15 21:30:53'),(15644,'2006-02-14 15:16:03',3139,43,NULL,2,'2006-02-15 21:30:53'),(15645,'2006-02-14 15:16:03',3838,214,NULL,2,'2006-02-15 21:30:53'),(15646,'2005-08-23 08:19:55',3217,114,'2005-08-29 02:32:55',1,'2006-02-15 21:30:53'),(15647,'2005-08-23 08:23:56',2051,251,'2005-08-26 11:00:56',1,'2006-02-15 21:30:53'),(15648,'2005-08-23 08:27:57',4039,80,'2005-08-30 08:53:57',2,'2006-02-15 21:30:53'),(15649,'2005-08-23 08:28:03',415,60,'2005-08-30 05:11:03',1,'2006-02-15 21:30:53'),(15650,'2005-08-23 08:29:53',2447,353,'2005-08-25 07:23:53',2,'2006-02-15 21:30:53'),(15651,'2005-08-23 08:31:49',3393,451,'2005-08-26 02:57:49',1,'2006-02-15 21:30:53'),(15652,'2005-08-23 08:34:10',4440,578,'2005-08-30 12:31:10',1,'2006-02-15 21:30:53'),(15653,'2005-08-23 08:34:42',2736,439,'2005-09-01 03:07:42',1,'2006-02-15 21:30:53'),(15654,'2005-08-23 08:34:53',4360,471,'2005-08-30 04:18:53',2,'2006-02-15 21:30:53'),(15655,'2006-02-14 15:16:03',604,359,NULL,1,'2006-02-15 21:30:53'),(15656,'2005-08-23 08:38:58',4239,334,'2005-08-24 04:08:58',2,'2006-02-15 21:30:53'),(15657,'2005-08-23 08:42:40',1897,36,'2005-09-01 13:08:40',1,'2006-02-15 21:30:53'),(15658,'2005-08-23 08:48:43',3565,22,'2005-08-25 05:38:43',1,'2006-02-15 21:30:53'),(15659,'2005-08-23 08:48:43',4573,131,'2005-08-27 14:19:43',2,'2006-02-15 21:30:53'),(15660,'2005-08-23 08:51:21',3223,388,'2005-08-28 06:26:21',2,'2006-02-15 21:30:53'),(15661,'2005-08-23 08:52:03',1599,346,'2005-08-30 08:17:03',2,'2006-02-15 21:30:53'),(15662,'2005-08-23 08:52:50',3028,223,'2005-08-24 08:08:50',1,'2006-02-15 21:30:53'),(15663,'2005-08-23 08:54:26',3291,291,'2005-08-29 02:56:26',1,'2006-02-15 21:30:53'),(15664,'2005-08-23 08:57:11',2029,351,'2005-08-31 14:19:11',2,'2006-02-15 21:30:53'),(15665,'2005-08-23 08:59:12',3471,487,'2005-08-24 12:50:12',2,'2006-02-15 21:30:53'),(15666,'2005-08-23 09:01:10',3406,586,'2005-08-31 12:32:10',2,'2006-02-15 21:30:53'),(15667,'2005-08-23 09:02:03',1302,73,'2005-08-24 05:47:03',1,'2006-02-15 21:30:53'),(15668,'2005-08-23 09:02:04',1963,38,'2005-08-29 03:17:04',2,'2006-02-15 21:30:53'),(15669,'2005-08-23 09:06:17',1542,334,'2005-08-30 08:10:17',2,'2006-02-15 21:30:53'),(15670,'2005-08-23 09:07:11',2834,211,'2005-08-31 04:32:11',2,'2006-02-15 21:30:53'),(15671,'2005-08-23 09:08:16',3716,112,'2005-08-29 14:01:16',1,'2006-02-15 21:30:53'),(15672,'2005-08-23 09:09:18',701,210,'2005-08-27 06:19:18',1,'2006-02-15 21:30:53'),(15673,'2005-08-23 09:12:50',3096,321,'2005-08-29 12:45:50',2,'2006-02-15 21:30:53'),(15674,'2005-08-23 09:16:39',4482,90,'2005-09-01 11:57:39',1,'2006-02-15 21:30:53'),(15675,'2005-08-23 09:18:52',4153,293,'2005-08-30 14:59:52',2,'2006-02-15 21:30:53'),(15676,'2005-08-23 09:23:08',3874,353,'2005-08-30 06:19:08',2,'2006-02-15 21:30:53'),(15677,'2005-08-23 09:23:36',2050,109,'2005-08-27 05:01:36',1,'2006-02-15 21:30:53'),(15678,'2005-08-23 09:23:45',1345,413,'2005-08-27 11:38:45',2,'2006-02-15 21:30:53'),(15679,'2005-08-23 09:27:29',2945,103,'2005-08-28 09:14:29',1,'2006-02-15 21:30:53'),(15680,'2005-08-23 09:33:22',1370,169,'2005-08-31 13:29:22',2,'2006-02-15 21:30:53'),(15681,'2005-08-23 09:35:34',2813,61,'2005-08-27 08:33:34',1,'2006-02-15 21:30:53'),(15682,'2005-08-23 09:37:34',3293,31,'2005-08-31 06:01:34',1,'2006-02-15 21:30:53'),(15683,'2005-08-23 09:38:17',3787,168,'2005-08-30 12:31:17',2,'2006-02-15 21:30:53'),(15684,'2005-08-23 09:40:04',3976,586,'2005-08-28 15:28:04',1,'2006-02-15 21:30:53'),(15685,'2005-08-23 09:41:28',370,491,'2005-08-30 10:11:28',1,'2006-02-15 21:30:53'),(15686,'2005-08-23 09:42:21',2041,206,'2005-08-29 12:22:21',1,'2006-02-15 21:30:53'),(15687,'2005-08-23 09:46:33',276,112,'2005-09-01 06:07:33',1,'2006-02-15 21:30:53'),(15688,'2005-08-23 09:48:45',2851,105,'2005-08-30 10:28:45',2,'2006-02-15 21:30:53'),(15689,'2005-08-23 09:52:55',248,259,'2005-08-29 11:15:55',1,'2006-02-15 21:30:53'),(15690,'2005-08-23 09:53:30',2102,554,'2005-08-29 10:27:30',1,'2006-02-15 21:30:53'),(15691,'2005-08-23 09:53:54',784,200,'2005-08-27 10:14:54',1,'2006-02-15 21:30:53'),(15692,'2005-08-23 10:00:02',1852,503,'2005-08-24 05:25:02',1,'2006-02-15 21:30:53'),(15693,'2005-08-23 10:00:24',748,94,'2005-08-25 08:23:24',1,'2006-02-15 21:30:53'),(15694,'2005-08-23 10:02:46',3017,506,'2005-08-31 05:46:46',2,'2006-02-15 21:30:53'),(15695,'2006-02-14 15:16:03',2954,300,NULL,1,'2006-02-15 21:30:53'),(15696,'2005-08-23 10:04:17',2836,93,'2005-08-25 08:47:17',2,'2006-02-15 21:30:53'),(15697,'2005-08-23 10:04:36',1987,380,'2005-08-24 05:00:36',2,'2006-02-15 21:30:53'),(15698,'2005-08-23 10:11:40',4465,395,'2005-08-28 08:50:40',2,'2006-02-15 21:30:53'),(15699,'2005-08-23 10:20:35',4155,501,'2005-08-30 13:56:35',1,'2006-02-15 21:30:53'),(15700,'2005-08-23 10:21:21',2935,552,'2005-08-24 15:37:21',1,'2006-02-15 21:30:53'),(15701,'2005-08-23 10:22:21',2942,516,'2005-08-24 10:52:21',1,'2006-02-15 21:30:53'),(15702,'2005-08-23 10:23:28',1602,56,'2005-08-29 11:08:28',2,'2006-02-15 21:30:53'),(15703,'2005-08-23 10:23:48',2883,322,'2005-09-01 06:54:48',2,'2006-02-15 21:30:53'),(15704,'2005-08-23 10:25:45',738,71,'2005-08-29 16:06:45',2,'2006-02-15 21:30:53'),(15705,'2005-08-23 10:32:52',936,356,'2005-08-29 13:18:52',2,'2006-02-15 21:30:53'),(15706,'2005-08-23 10:32:52',4486,220,'2005-08-24 07:03:52',2,'2006-02-15 21:30:53'),(15707,'2005-08-23 10:35:45',3646,91,'2005-08-27 10:57:45',1,'2006-02-15 21:30:53'),(15708,'2005-08-23 10:35:51',1974,46,'2005-08-27 16:02:51',1,'2006-02-15 21:30:53'),(15709,'2005-08-23 10:36:00',346,206,'2005-08-28 06:18:00',2,'2006-02-15 21:30:53'),(15710,'2006-02-14 15:16:03',1020,421,NULL,1,'2006-02-15 21:30:53'),(15711,'2005-08-23 10:43:00',789,297,'2005-08-29 16:29:00',1,'2006-02-15 21:30:53'),(15712,'2005-08-23 10:43:56',1882,351,'2005-08-29 15:35:56',2,'2006-02-15 21:30:53'),(15713,'2005-08-23 10:56:15',337,432,'2005-08-29 09:14:15',2,'2006-02-15 21:30:53'),(15714,'2006-02-14 15:16:03',2083,56,NULL,1,'2006-02-15 21:30:53'),(15715,'2005-08-23 10:57:40',3808,86,'2005-08-28 12:40:40',1,'2006-02-15 21:30:53'),(15716,'2005-08-23 11:02:00',2812,408,'2005-08-28 14:46:00',1,'2006-02-15 21:30:53'),(15717,'2006-02-14 15:16:03',902,208,NULL,2,'2006-02-15 21:30:53'),(15718,'2005-08-23 11:05:17',2180,276,'2005-08-28 12:50:17',1,'2006-02-15 21:30:53'),(15719,'2005-08-23 11:08:46',3990,599,'2005-08-25 07:25:46',1,'2006-02-15 21:30:53'),(15720,'2005-08-23 11:15:20',2490,456,'2005-08-31 09:49:20',1,'2006-02-15 21:30:53'),(15721,'2005-08-23 11:16:16',685,154,'2005-08-28 10:21:16',1,'2006-02-15 21:30:53'),(15722,'2005-08-23 11:16:29',2809,26,'2005-09-01 13:24:29',2,'2006-02-15 21:30:53'),(15723,'2005-08-23 11:17:26',3915,504,'2005-08-31 13:58:26',2,'2006-02-15 21:30:53'),(15724,'2005-08-23 11:22:09',1025,478,'2005-08-28 12:56:09',2,'2006-02-15 21:30:53'),(15725,'2005-08-23 11:25:00',378,599,'2005-08-26 11:46:00',1,'2006-02-15 21:30:53'),(15726,'2005-08-23 11:28:26',906,503,'2005-08-28 11:23:26',2,'2006-02-15 21:30:53'),(15727,'2005-08-23 11:28:49',2184,416,'2005-08-24 06:24:49',2,'2006-02-15 21:30:53'),(15728,'2005-08-23 11:30:32',2567,323,'2005-08-28 09:52:32',2,'2006-02-15 21:30:53'),(15729,'2006-02-14 15:16:03',2699,193,NULL,2,'2006-02-15 21:30:53'),(15730,'2005-08-23 11:32:35',947,147,'2005-08-30 13:46:35',2,'2006-02-15 21:30:53'),(15731,'2005-08-23 11:33:25',3403,118,'2005-08-24 07:19:25',2,'2006-02-15 21:30:53'),(15732,'2005-08-23 11:35:12',3247,412,'2005-08-26 12:50:12',2,'2006-02-15 21:30:53'),(15733,'2005-08-23 11:37:32',4185,512,'2005-08-28 16:27:32',1,'2006-02-15 21:30:53'),(15734,'2005-08-23 11:40:08',3952,302,'2005-08-27 08:16:08',1,'2006-02-15 21:30:53'),(15735,'2006-02-14 15:16:03',3167,295,NULL,1,'2006-02-15 21:30:53'),(15736,'2005-08-23 11:40:30',4272,127,'2005-08-30 12:40:30',1,'2006-02-15 21:30:53'),(15737,'2005-08-23 11:52:18',996,83,'2005-08-28 15:28:18',1,'2006-02-15 21:30:53'),(15738,'2005-08-23 11:55:50',556,38,'2005-08-30 15:07:50',1,'2006-02-15 21:30:53'),(15739,'2005-08-23 11:56:22',266,74,'2005-08-29 16:10:22',2,'2006-02-15 21:30:53'),(15740,'2005-08-23 12:07:51',100,229,'2005-08-24 13:23:51',2,'2006-02-15 21:30:53'),(15741,'2005-08-23 12:10:54',4243,126,'2005-08-24 10:08:54',2,'2006-02-15 21:30:53'),(15742,'2005-08-23 12:11:37',1339,200,'2005-08-31 07:28:37',2,'2006-02-15 21:30:53'),(15743,'2005-08-23 12:12:05',1625,139,'2005-08-26 11:35:05',1,'2006-02-15 21:30:53'),(15744,'2005-08-23 12:15:51',2364,59,'2005-08-31 17:19:51',1,'2006-02-15 21:30:53'),(15745,'2006-02-14 15:16:03',2737,43,NULL,1,'2006-02-15 21:30:53'),(15746,'2005-08-23 12:26:19',2241,246,'2005-08-26 09:51:19',2,'2006-02-15 21:30:53'),(15747,'2005-08-23 12:29:24',1517,381,'2005-08-31 08:27:24',2,'2006-02-15 21:30:53'),(15748,'2005-08-23 12:33:00',2757,380,'2005-08-25 15:15:00',2,'2006-02-15 21:30:53'),(15749,'2005-08-23 12:33:41',4224,575,'2005-08-24 10:52:41',1,'2006-02-15 21:30:53'),(15750,'2005-08-23 12:36:05',4474,496,'2005-08-24 17:40:05',2,'2006-02-15 21:30:53'),(15751,'2005-08-23 12:41:07',697,199,'2005-08-29 07:03:07',2,'2006-02-15 21:30:53'),(15752,'2005-08-23 12:41:38',2112,17,'2005-09-01 14:06:38',1,'2006-02-15 21:30:53'),(15753,'2005-08-23 12:43:30',3451,144,'2005-09-01 09:07:30',2,'2006-02-15 21:30:53'),(15754,'2005-08-23 12:43:42',2306,356,'2005-08-27 17:45:42',2,'2006-02-15 21:30:53'),(15755,'2005-08-23 12:46:38',511,423,'2005-08-25 12:59:38',1,'2006-02-15 21:30:53'),(15756,'2005-08-23 12:47:05',878,112,'2005-08-28 08:34:05',2,'2006-02-15 21:30:53'),(15757,'2005-08-23 12:47:16',1308,356,'2005-08-29 17:19:16',1,'2006-02-15 21:30:53'),(15758,'2005-08-23 12:47:26',152,46,'2005-08-29 11:05:26',2,'2006-02-15 21:30:53'),(15759,'2005-08-23 12:47:37',1341,361,'2005-09-01 11:28:37',2,'2006-02-15 21:30:53'),(15760,'2005-08-23 12:50:00',3050,273,'2005-08-29 15:41:00',2,'2006-02-15 21:30:53'),(15761,'2005-08-23 12:55:51',4362,416,'2005-08-26 16:51:51',1,'2006-02-15 21:30:53'),(15762,'2005-08-23 13:01:43',887,351,'2005-08-26 16:35:43',1,'2006-02-15 21:30:53'),(15763,'2005-08-23 13:02:59',124,158,'2005-08-24 17:45:59',2,'2006-02-15 21:30:53'),(15764,'2005-08-23 13:05:10',2937,8,'2005-08-25 16:15:10',1,'2006-02-15 21:30:53'),(15765,'2005-08-23 13:06:19',1250,408,'2005-08-31 12:18:19',1,'2006-02-15 21:30:53'),(15766,'2005-08-23 13:10:16',1996,436,'2005-08-30 09:27:16',1,'2006-02-15 21:30:53'),(15767,'2005-08-23 13:14:15',3492,241,'2005-08-27 14:43:15',2,'2006-02-15 21:30:53'),(15768,'2005-08-23 13:14:47',662,267,'2005-08-29 14:17:47',2,'2006-02-15 21:30:53'),(15769,'2005-08-23 13:16:15',2392,276,'2005-08-28 18:31:15',1,'2006-02-15 21:30:53'),(15770,'2005-08-23 13:18:16',1424,113,'2005-08-29 11:31:16',1,'2006-02-15 21:30:53'),(15771,'2005-08-23 13:18:46',3667,262,'2005-08-26 07:29:46',1,'2006-02-15 21:30:53'),(15772,'2005-08-23 13:22:56',4343,202,'2005-08-26 10:35:56',2,'2006-02-15 21:30:53'),(15773,'2005-08-23 13:24:57',1626,189,'2005-08-31 14:16:57',2,'2006-02-15 21:30:53'),(15774,'2005-08-23 13:25:08',1273,254,'2005-08-28 10:08:08',2,'2006-02-15 21:30:53'),(15775,'2005-08-23 13:25:44',2146,173,'2005-09-01 16:56:44',1,'2006-02-15 21:30:53'),(15776,'2005-08-23 13:26:01',43,514,'2005-08-29 18:17:01',1,'2006-02-15 21:30:53'),(15777,'2005-08-23 13:29:08',4241,130,'2005-08-27 18:50:08',2,'2006-02-15 21:30:53'),(15778,'2006-02-14 15:16:03',1269,234,NULL,1,'2006-02-15 21:30:53'),(15779,'2005-08-23 13:33:46',1560,419,'2005-08-28 08:40:46',2,'2006-02-15 21:30:53'),(15780,'2006-02-14 15:16:03',2911,120,NULL,2,'2006-02-15 21:30:53'),(15781,'2005-08-23 13:41:05',4449,412,'2005-08-31 13:11:05',1,'2006-02-15 21:30:53'),(15782,'2005-08-23 13:43:26',3282,245,'2005-08-30 14:03:26',1,'2006-02-15 21:30:53'),(15783,'2005-08-23 13:45:44',397,247,'2005-08-26 09:18:44',2,'2006-02-15 21:30:53'),(15784,'2005-08-23 13:46:00',126,425,'2005-08-30 11:49:00',2,'2006-02-15 21:30:53'),(15785,'2005-08-23 13:46:27',1758,543,'2005-08-27 10:16:27',2,'2006-02-15 21:30:53'),(15786,'2005-08-23 13:48:34',3132,371,'2005-08-27 15:59:34',1,'2006-02-15 21:30:53'),(15787,'2005-08-23 13:51:57',2932,123,'2005-08-27 17:06:57',1,'2006-02-15 21:30:53'),(15788,'2005-08-23 13:54:39',13,269,'2005-08-26 10:17:39',1,'2006-02-15 21:30:53'),(15789,'2005-08-23 13:56:40',1213,350,'2005-08-27 15:25:40',1,'2006-02-15 21:30:53'),(15790,'2005-08-23 14:01:07',2887,233,'2005-08-30 10:32:07',2,'2006-02-15 21:30:53'),(15791,'2005-08-23 14:02:13',4147,445,'2005-09-01 09:03:13',2,'2006-02-15 21:30:53'),(15792,'2005-08-23 14:05:37',2175,581,'2005-08-28 10:54:37',1,'2006-02-15 21:30:53'),(15793,'2005-08-23 14:06:19',2863,22,'2005-08-24 19:59:19',2,'2006-02-15 21:30:53'),(15794,'2006-02-14 15:16:03',3917,579,NULL,2,'2006-02-15 21:30:53'),(15795,'2005-08-23 14:07:56',4371,417,'2005-08-25 12:10:56',2,'2006-02-15 21:30:53'),(15796,'2005-08-23 14:12:22',1425,158,'2005-08-28 17:03:22',2,'2006-02-15 21:30:53'),(15797,'2005-08-23 14:13:47',497,503,'2005-08-25 09:16:47',2,'2006-02-15 21:30:53'),(15798,'2005-08-23 14:23:03',3803,203,'2005-08-30 17:39:03',2,'2006-02-15 21:30:53'),(15799,'2005-08-23 14:23:23',2519,215,'2005-08-24 17:15:23',2,'2006-02-15 21:30:53'),(15800,'2005-08-23 14:23:44',963,43,'2005-08-29 17:04:44',2,'2006-02-15 21:30:53'),(15801,'2005-08-23 14:26:04',1590,165,'2005-08-28 15:04:04',1,'2006-02-15 21:30:53'),(15802,'2005-08-23 14:26:51',41,158,'2005-08-29 16:28:51',2,'2006-02-15 21:30:53'),(15803,'2005-08-23 14:27:07',500,105,'2005-08-28 12:01:07',2,'2006-02-15 21:30:53'),(15804,'2005-08-23 14:29:16',3338,585,'2005-08-26 08:41:16',1,'2006-02-15 21:30:53'),(15805,'2005-08-23 14:31:19',4511,8,'2005-08-25 19:01:19',2,'2006-02-15 21:30:53'),(15806,'2005-08-23 14:31:50',2683,166,'2005-08-27 16:08:50',2,'2006-02-15 21:30:53'),(15807,'2005-08-23 14:35:10',2705,350,'2005-08-29 19:06:10',2,'2006-02-15 21:30:53'),(15808,'2005-08-23 14:38:37',1663,446,'2005-08-27 14:45:37',2,'2006-02-15 21:30:53'),(15809,'2005-08-23 14:42:07',1885,431,'2005-08-27 15:00:07',2,'2006-02-15 21:30:53'),(15810,'2005-08-23 14:43:15',2196,171,'2005-08-25 17:41:15',1,'2006-02-15 21:30:53'),(15811,'2005-08-23 14:43:46',3487,300,'2005-08-27 16:43:46',1,'2006-02-15 21:30:53'),(15812,'2005-08-23 14:47:26',4457,45,'2005-09-01 10:51:26',2,'2006-02-15 21:30:53'),(15813,'2006-02-14 15:16:03',981,9,NULL,1,'2006-02-15 21:30:53'),(15814,'2005-08-23 14:52:50',4361,459,'2005-08-27 16:12:50',2,'2006-02-15 21:30:53'),(15815,'2005-08-23 14:55:47',316,444,'2005-08-24 12:37:47',1,'2006-02-15 21:30:53'),(15816,'2005-08-23 14:58:06',3628,31,'2005-08-28 13:30:06',1,'2006-02-15 21:30:53'),(15817,'2005-08-23 14:59:51',598,348,'2005-08-25 15:27:51',1,'2006-02-15 21:30:53'),(15818,'2005-08-23 14:59:58',2620,439,'2005-08-27 13:13:58',2,'2006-02-15 21:30:53'),(15819,'2005-08-23 15:01:54',3639,274,'2005-08-31 20:01:54',2,'2006-02-15 21:30:53'),(15820,'2005-08-23 15:03:13',4553,308,'2005-08-25 20:12:13',1,'2006-02-15 21:30:53'),(15821,'2005-08-23 15:03:58',1714,233,'2005-08-24 17:46:58',2,'2006-02-15 21:30:53'),(15822,'2005-08-23 15:05:59',3602,492,'2005-08-24 11:13:59',1,'2006-02-15 21:30:53'),(15823,'2005-08-23 15:08:00',3047,81,'2005-08-24 17:52:00',2,'2006-02-15 21:30:53'),(15824,'2005-08-23 15:09:17',2933,371,'2005-08-28 15:14:17',2,'2006-02-15 21:30:53'),(15825,'2005-08-23 15:10:42',149,346,'2005-08-29 09:28:42',2,'2006-02-15 21:30:53'),(15826,'2005-08-23 15:15:02',215,311,'2005-08-31 20:39:02',2,'2006-02-15 21:30:53'),(15827,'2005-08-23 15:15:19',1732,346,'2005-08-24 10:50:19',2,'2006-02-15 21:30:53'),(15828,'2005-08-23 15:16:32',428,327,'2005-08-29 12:20:32',1,'2006-02-15 21:30:53'),(15829,'2005-08-23 15:17:14',4387,30,'2005-08-27 13:04:14',1,'2006-02-15 21:30:53'),(15830,'2005-08-23 15:19:15',309,467,'2005-08-25 18:42:15',2,'2006-02-15 21:30:53'),(15831,'2005-08-23 15:21:19',3123,401,'2005-08-24 15:47:19',2,'2006-02-15 21:30:53'),(15832,'2005-08-23 15:21:35',1468,537,'2005-08-30 15:01:35',2,'2006-02-15 21:30:53'),(15833,'2005-08-23 15:22:15',801,349,'2005-08-31 14:54:15',1,'2006-02-15 21:30:53'),(15834,'2005-08-23 15:23:50',217,165,'2005-09-01 19:31:50',1,'2006-02-15 21:30:53'),(15835,'2005-08-23 15:25:27',1362,128,'2005-09-01 16:14:27',2,'2006-02-15 21:30:53'),(15836,'2005-08-23 15:29:17',260,468,'2005-08-26 11:44:17',2,'2006-02-15 21:30:53'),(15837,'2005-08-23 15:29:41',4388,283,'2005-08-27 18:17:41',1,'2006-02-15 21:30:53'),(15838,'2005-08-23 15:30:48',2194,579,'2005-08-31 11:20:48',2,'2006-02-15 21:30:53'),(15839,'2005-08-23 15:34:46',3726,294,'2005-08-30 21:00:46',2,'2006-02-15 21:30:53'),(15840,'2005-08-23 15:34:49',1901,316,'2005-08-24 16:54:49',1,'2006-02-15 21:30:53'),(15841,'2005-08-23 15:35:59',2865,571,'2005-08-30 19:30:59',2,'2006-02-15 21:30:53'),(15842,'2005-08-23 15:36:05',1850,146,'2005-08-30 14:05:05',2,'2006-02-15 21:30:53'),(15843,'2005-08-23 15:37:31',611,215,'2005-08-28 18:41:31',2,'2006-02-15 21:30:53'),(15844,'2005-08-23 15:38:12',2027,119,'2005-08-26 15:18:12',1,'2006-02-15 21:30:53'),(15845,'2005-08-23 15:38:34',4312,89,'2005-08-25 10:06:34',1,'2006-02-15 21:30:53'),(15846,'2005-08-23 15:39:18',3635,47,'2005-08-27 14:28:18',2,'2006-02-15 21:30:53'),(15847,'2005-08-23 15:39:38',2287,163,'2005-08-24 11:46:38',1,'2006-02-15 21:30:53'),(15848,'2005-08-23 15:41:12',2141,336,'2005-08-26 10:29:12',2,'2006-02-15 21:30:53'),(15849,'2005-08-23 15:41:20',4077,482,'2005-08-27 15:47:20',2,'2006-02-15 21:30:53'),(15850,'2005-08-23 15:45:42',586,563,'2005-08-27 19:24:42',1,'2006-02-15 21:30:53'),(15851,'2005-08-23 15:46:33',2286,469,'2005-08-29 15:52:33',1,'2006-02-15 21:30:53'),(15852,'2005-08-23 15:47:02',1506,140,'2005-08-25 19:37:02',1,'2006-02-15 21:30:53'),(15853,'2005-08-23 15:54:20',225,500,'2005-08-24 18:53:20',2,'2006-02-15 21:30:53'),(15854,'2005-08-23 15:58:05',1648,464,'2005-08-26 19:23:05',1,'2006-02-15 21:30:53'),(15855,'2005-08-23 15:59:01',2528,192,'2005-08-29 20:26:01',1,'2006-02-15 21:30:53'),(15856,'2005-08-23 15:59:12',3379,395,'2005-08-25 15:36:12',1,'2006-02-15 21:30:53'),(15857,'2005-08-23 15:59:51',2733,575,'2005-08-26 12:01:51',2,'2006-02-15 21:30:53'),(15858,'2005-08-23 16:07:15',4515,81,'2005-08-25 19:36:15',2,'2006-02-15 21:30:53'),(15859,'2005-08-23 16:08:15',4269,465,'2005-08-28 11:08:15',1,'2006-02-15 21:30:53'),(15860,'2005-08-23 16:08:40',2583,41,'2005-08-28 15:35:40',1,'2006-02-15 21:30:53'),(15861,'2005-08-23 16:15:45',1859,256,'2005-09-01 11:37:45',2,'2006-02-15 21:30:53'),(15862,'2006-02-14 15:16:03',925,215,NULL,1,'2006-02-15 21:30:53'),(15863,'2005-08-23 16:17:09',2783,328,'2005-08-28 16:10:09',2,'2006-02-15 21:30:53'),(15864,'2005-08-23 16:18:12',3014,256,'2005-08-29 17:10:12',2,'2006-02-15 21:30:53'),(15865,'2005-08-23 16:18:25',2031,482,'2005-08-26 10:57:25',2,'2006-02-15 21:30:53'),(15866,'2005-08-23 16:19:02',3828,296,'2005-08-31 12:29:02',2,'2006-02-15 21:30:53'),(15867,'2006-02-14 15:16:03',837,505,NULL,2,'2006-02-15 21:30:53'),(15868,'2005-08-23 16:19:14',2186,306,'2005-08-29 16:14:14',2,'2006-02-15 21:30:53'),(15869,'2005-08-23 16:22:20',1344,357,'2005-08-27 11:52:20',1,'2006-02-15 21:30:53'),(15870,'2005-08-23 16:23:08',590,251,'2005-08-28 20:30:08',2,'2006-02-15 21:30:53'),(15871,'2005-08-23 16:24:24',425,57,'2005-09-01 13:48:24',2,'2006-02-15 21:30:53'),(15872,'2005-08-23 16:27:24',3391,212,'2005-08-31 11:57:24',1,'2006-02-15 21:30:53'),(15873,'2005-08-23 16:27:59',4548,577,'2005-08-26 11:11:59',2,'2006-02-15 21:30:53'),(15874,'2005-08-23 16:30:55',621,132,'2005-08-28 20:57:55',1,'2006-02-15 21:30:53'),(15875,'2006-02-14 15:16:03',3611,41,NULL,1,'2006-02-15 21:30:53'),(15876,'2005-08-23 16:32:10',1735,87,'2005-08-24 18:16:10',1,'2006-02-15 21:30:53'),(15877,'2005-08-23 16:33:33',2307,559,'2005-08-26 10:36:33',2,'2006-02-15 21:30:53'),(15878,'2005-08-23 16:34:31',1592,493,'2005-08-27 21:51:31',2,'2006-02-15 21:30:53'),(15879,'2005-08-23 16:42:53',235,482,'2005-08-29 16:21:53',2,'2006-02-15 21:30:53'),(15880,'2005-08-23 16:43:54',2538,528,'2005-08-31 14:40:54',2,'2006-02-15 21:30:53'),(15881,'2005-08-23 16:44:25',617,383,'2005-08-29 13:58:25',1,'2006-02-15 21:30:53'),(15882,'2005-08-23 16:44:31',2028,312,'2005-09-01 15:44:31',2,'2006-02-15 21:30:53'),(15883,'2005-08-23 16:44:56',2792,550,'2005-08-24 22:42:56',1,'2006-02-15 21:30:53'),(15884,'2005-08-23 16:45:28',2255,81,'2005-08-27 20:18:28',1,'2006-02-15 21:30:53'),(15885,'2005-08-23 16:50:43',2116,565,'2005-08-29 20:19:43',1,'2006-02-15 21:30:53'),(15886,'2005-08-23 16:50:53',3038,91,'2005-08-26 15:38:53',2,'2006-02-15 21:30:53'),(15887,'2005-08-23 16:54:09',4263,201,'2005-08-26 13:20:09',2,'2006-02-15 21:30:53'),(15888,'2005-08-23 16:56:14',2955,321,'2005-08-31 14:32:14',1,'2006-02-15 21:30:53'),(15889,'2005-08-23 16:57:43',787,137,'2005-08-27 22:14:43',1,'2006-02-15 21:30:53'),(15890,'2005-08-23 16:58:12',3625,87,'2005-08-24 12:23:12',1,'2006-02-15 21:30:53'),(15891,'2005-08-23 17:00:12',2168,52,'2005-08-31 21:12:12',1,'2006-02-15 21:30:53'),(15892,'2005-08-23 17:01:00',1365,174,'2005-08-28 12:50:00',1,'2006-02-15 21:30:53'),(15893,'2005-08-23 17:02:00',2571,438,'2005-08-30 12:45:00',2,'2006-02-15 21:30:53'),(15894,'2006-02-14 15:16:03',4416,168,NULL,1,'2006-02-15 21:30:53'),(15895,'2005-08-23 17:09:31',2275,342,'2005-08-30 17:15:31',1,'2006-02-15 21:30:53'),(15896,'2005-08-23 17:09:56',528,585,'2005-08-31 14:51:56',2,'2006-02-15 21:30:53'),(15897,'2005-08-23 17:12:31',1652,15,'2005-08-30 17:22:31',1,'2006-02-15 21:30:53'),(15898,'2005-08-23 17:13:01',3502,88,'2005-08-29 11:22:01',2,'2006-02-15 21:30:53'),(15899,'2005-08-23 17:16:28',3851,596,'2005-08-29 21:46:28',2,'2006-02-15 21:30:53'),(15900,'2005-08-23 17:16:30',1112,562,'2005-08-27 18:02:30',1,'2006-02-15 21:30:53'),(15901,'2005-08-23 17:19:17',2761,226,'2005-08-30 14:24:17',2,'2006-02-15 21:30:53'),(15902,'2005-08-23 17:28:03',4500,172,'2005-08-30 18:36:03',1,'2006-02-15 21:30:53'),(15903,'2005-08-23 17:30:40',1289,267,'2005-08-29 14:12:40',1,'2006-02-15 21:30:53'),(15904,'2005-08-23 17:32:19',179,37,'2005-08-24 21:05:19',2,'2006-02-15 21:30:53'),(15905,'2005-08-23 17:33:04',3631,59,'2005-08-26 17:38:04',2,'2006-02-15 21:30:53'),(15906,'2005-08-23 17:36:00',3230,445,'2005-08-28 15:32:00',2,'2006-02-15 21:30:53'),(15907,'2005-08-23 17:39:35',2898,2,'2005-08-25 23:23:35',1,'2006-02-15 21:30:53'),(15908,'2005-08-23 17:42:00',2453,135,'2005-08-31 22:32:00',1,'2006-02-15 21:30:53'),(15909,'2005-08-23 17:42:42',404,452,'2005-08-26 20:25:42',1,'2006-02-15 21:30:53'),(15910,'2005-08-23 17:43:16',254,456,'2005-08-24 21:55:16',2,'2006-02-15 21:30:53'),(15911,'2005-08-23 17:44:53',3006,582,'2005-09-01 19:14:53',1,'2006-02-15 21:30:53'),(15912,'2005-08-23 17:47:40',3079,229,'2005-08-31 14:43:40',2,'2006-02-15 21:30:53'),(15913,'2005-08-23 17:48:30',3894,93,'2005-08-31 21:17:30',2,'2006-02-15 21:30:53'),(15914,'2005-08-23 17:49:26',747,557,'2005-08-24 12:20:26',1,'2006-02-15 21:30:53'),(15915,'2005-08-23 17:52:01',3566,167,'2005-08-24 20:40:01',2,'2006-02-15 21:30:53'),(15916,'2005-08-23 17:56:01',4580,327,'2005-08-31 21:49:01',2,'2006-02-15 21:30:53'),(15917,'2005-08-23 17:57:28',2093,589,'2005-08-29 20:03:28',1,'2006-02-15 21:30:53'),(15918,'2005-08-23 17:57:35',1456,262,'2005-08-28 14:16:35',2,'2006-02-15 21:30:53'),(15919,'2005-08-23 18:01:31',1746,497,'2005-08-24 16:27:31',1,'2006-02-15 21:30:53'),(15920,'2005-08-23 18:05:10',243,212,'2005-08-26 18:09:10',1,'2006-02-15 21:30:53'),(15921,'2005-08-23 18:06:54',223,522,'2005-08-30 20:19:54',2,'2006-02-15 21:30:53'),(15922,'2005-08-23 18:07:31',1702,263,'2005-09-01 22:27:31',1,'2006-02-15 21:30:53'),(15923,'2005-08-23 18:08:19',1693,276,'2005-08-26 18:06:19',2,'2006-02-15 21:30:53'),(15924,'2005-08-23 18:08:59',1114,541,'2005-08-27 12:20:59',2,'2006-02-15 21:30:53'),(15925,'2005-08-23 18:15:06',3394,440,'2005-08-26 18:09:06',2,'2006-02-15 21:30:53'),(15926,'2005-08-23 18:20:56',2231,151,'2005-08-24 18:20:56',2,'2006-02-15 21:30:53'),(15927,'2005-08-23 18:23:11',2450,401,'2005-08-24 15:09:11',1,'2006-02-15 21:30:53'),(15928,'2005-08-23 18:23:24',2086,75,'2005-09-01 23:43:24',2,'2006-02-15 21:30:53'),(15929,'2005-08-23 18:23:30',1832,477,'2005-08-27 17:04:30',1,'2006-02-15 21:30:53'),(15930,'2005-08-23 18:26:51',180,379,'2005-08-31 16:12:51',1,'2006-02-15 21:30:53'),(15931,'2005-08-23 18:28:09',1128,237,'2005-08-28 23:08:09',1,'2006-02-15 21:30:53'),(15932,'2005-08-23 18:31:40',4554,405,'2005-08-24 16:30:40',2,'2006-02-15 21:30:53'),(15933,'2005-08-23 18:36:44',3493,176,'2005-08-26 12:41:44',2,'2006-02-15 21:30:53'),(15934,'2005-08-23 18:40:41',994,216,'2005-08-25 00:18:41',2,'2006-02-15 21:30:53'),(15935,'2005-08-23 18:41:11',907,361,'2005-08-25 20:59:11',1,'2006-02-15 21:30:53'),(15936,'2005-08-23 18:43:11',1293,411,'2005-08-26 00:19:11',1,'2006-02-15 21:30:53'),(15937,'2005-08-23 18:43:22',2882,194,'2005-08-24 22:53:22',1,'2006-02-15 21:30:53'),(15938,'2005-08-23 18:43:31',2884,341,'2005-08-31 00:26:31',2,'2006-02-15 21:30:53'),(15939,'2005-08-23 18:44:21',3209,382,'2005-09-01 17:25:21',2,'2006-02-15 21:30:53'),(15940,'2005-08-23 18:45:06',1606,86,'2005-08-30 13:00:06',2,'2006-02-15 21:30:53'),(15941,'2005-08-23 18:46:44',4304,424,'2005-08-31 17:31:44',1,'2006-02-15 21:30:53'),(15942,'2005-08-23 18:48:40',1096,210,'2005-09-01 18:39:40',2,'2006-02-15 21:30:53'),(15943,'2005-08-23 18:49:32',706,462,'2005-08-27 19:20:32',1,'2006-02-15 21:30:53'),(15944,'2005-08-23 18:50:54',4559,348,'2005-08-25 18:04:54',2,'2006-02-15 21:30:53'),(15945,'2005-08-23 18:51:41',3633,43,'2005-08-28 18:42:41',1,'2006-02-15 21:30:53'),(15946,'2005-08-23 18:54:07',4549,561,'2005-08-28 21:21:07',1,'2006-02-15 21:30:53'),(15947,'2005-08-23 18:54:32',1877,580,'2005-08-24 22:39:32',2,'2006-02-15 21:30:53'),(15948,'2005-08-23 18:59:33',432,520,'2005-08-31 13:02:33',2,'2006-02-15 21:30:53'),(15949,'2005-08-23 19:06:04',1199,386,'2005-08-26 18:39:04',2,'2006-02-15 21:30:53'),(15950,'2005-08-23 19:09:39',1374,280,'2005-08-31 17:03:39',2,'2006-02-15 21:30:53'),(15951,'2005-08-23 19:10:32',3018,446,'2005-08-29 14:17:32',1,'2006-02-15 21:30:53'),(15952,'2005-08-23 19:11:29',1314,224,'2005-08-28 14:41:29',1,'2006-02-15 21:30:53'),(15953,'2005-08-23 19:13:46',3727,540,'2005-08-28 23:05:46',1,'2006-02-15 21:30:53'),(15954,'2005-08-23 19:14:07',576,460,'2005-08-24 20:21:07',1,'2006-02-15 21:30:53'),(15955,'2005-08-23 19:19:06',2247,349,'2005-08-31 23:34:06',1,'2006-02-15 21:30:53'),(15956,'2005-08-23 19:19:21',2763,354,'2005-08-25 22:15:21',2,'2006-02-15 21:30:53'),(15957,'2005-08-23 19:21:22',74,418,'2005-08-31 16:42:22',1,'2006-02-15 21:30:53'),(15958,'2005-08-23 19:22:36',4164,492,'2005-08-30 01:03:36',1,'2006-02-15 21:30:53'),(15959,'2005-08-23 19:27:04',547,415,'2005-08-24 15:24:04',1,'2006-02-15 21:30:53'),(15960,'2005-08-23 19:35:42',1497,431,'2005-08-26 17:36:42',2,'2006-02-15 21:30:53'),(15961,'2005-08-23 19:35:42',4006,200,'2005-08-30 22:52:42',1,'2006-02-15 21:30:53'),(15962,'2005-08-23 19:42:04',3491,160,'2005-08-25 23:53:04',1,'2006-02-15 21:30:53'),(15963,'2005-08-23 19:42:46',3819,134,'2005-08-25 22:12:46',1,'2006-02-15 21:30:53'),(15964,'2005-08-23 19:45:25',251,141,'2005-08-26 22:43:25',2,'2006-02-15 21:30:53'),(15965,'2005-08-23 19:46:39',3449,509,'2005-08-24 20:08:39',2,'2006-02-15 21:30:53'),(15966,'2006-02-14 15:16:03',4472,374,NULL,1,'2006-02-15 21:30:53'),(15967,'2005-08-23 19:50:06',321,257,'2005-08-29 14:51:06',1,'2006-02-15 21:30:53'),(15968,'2005-08-23 19:51:29',3598,257,'2005-08-24 15:07:29',1,'2006-02-15 21:30:53'),(15969,'2005-08-23 19:51:30',1807,327,'2005-08-31 23:50:30',1,'2006-02-15 21:30:53'),(15970,'2005-08-23 19:54:24',4509,395,'2005-08-24 18:07:24',1,'2006-02-15 21:30:53'),(15971,'2005-08-23 19:59:33',3456,187,'2005-09-02 01:28:33',1,'2006-02-15 21:30:53'),(15972,'2005-08-23 20:00:30',4428,25,'2005-08-30 00:25:30',1,'2006-02-15 21:30:53'),(15973,'2005-08-23 20:04:41',2766,343,'2005-09-01 20:08:41',2,'2006-02-15 21:30:53'),(15974,'2005-08-23 20:06:04',3518,201,'2005-08-27 17:33:04',2,'2006-02-15 21:30:53'),(15975,'2005-08-23 20:06:23',2723,174,'2005-08-27 19:52:23',1,'2006-02-15 21:30:53'),(15976,'2005-08-23 20:07:08',835,227,'2005-08-25 01:47:08',2,'2006-02-15 21:30:53'),(15977,'2005-08-23 20:07:10',1031,550,'2005-09-01 22:12:10',2,'2006-02-15 21:30:53'),(15978,'2005-08-23 20:08:18',4444,536,'2005-08-31 17:35:18',2,'2006-02-15 21:30:53'),(15979,'2005-08-23 20:08:26',3733,536,'2005-08-26 19:19:26',1,'2006-02-15 21:30:53'),(15980,'2005-08-23 20:10:13',3365,196,'2005-08-24 17:44:13',2,'2006-02-15 21:30:53'),(15981,'2005-08-23 20:12:17',2867,489,'2005-08-30 20:43:17',1,'2006-02-15 21:30:53'),(15982,'2005-08-23 20:13:31',2920,370,'2005-09-01 21:51:31',2,'2006-02-15 21:30:53'),(15983,'2005-08-23 20:13:38',3318,464,'2005-08-30 18:42:38',1,'2006-02-15 21:30:53'),(15984,'2005-08-23 20:16:27',2011,495,'2005-08-27 01:43:27',1,'2006-02-15 21:30:53'),(15985,'2005-08-23 20:20:23',2646,179,'2005-08-26 20:55:23',1,'2006-02-15 21:30:53'),(15986,'2005-08-23 20:20:37',3472,226,'2005-08-29 20:49:37',1,'2006-02-15 21:30:53'),(15987,'2005-08-23 20:22:17',3150,302,'2005-08-31 21:46:17',2,'2006-02-15 21:30:53'),(15988,'2005-08-23 20:23:08',3932,400,'2005-08-28 20:50:08',1,'2006-02-15 21:30:53'),(15989,'2005-08-23 20:24:36',38,96,'2005-08-26 20:35:36',1,'2006-02-15 21:30:53'),(15990,'2005-08-23 20:25:11',3233,512,'2005-08-25 15:01:11',2,'2006-02-15 21:30:53'),(15991,'2005-08-23 20:27:34',2078,203,'2005-08-28 16:48:34',2,'2006-02-15 21:30:53'),(15992,'2005-08-23 20:28:32',3334,589,'2005-08-24 21:35:32',1,'2006-02-15 21:30:53'),(15993,'2005-08-23 20:28:44',1638,12,'2005-08-27 16:23:44',2,'2006-02-15 21:30:53'),(15994,'2005-08-23 20:29:10',438,595,'2005-08-28 01:41:10',2,'2006-02-15 21:30:53'),(15995,'2005-08-23 20:29:56',1122,377,'2005-08-30 18:09:56',1,'2006-02-15 21:30:53'),(15996,'2005-08-23 20:31:38',3098,151,'2005-08-29 20:58:38',1,'2006-02-15 21:30:53'),(15997,'2005-08-23 20:40:31',2843,447,'2005-08-26 19:47:31',1,'2006-02-15 21:30:53'),(15998,'2005-08-23 20:41:09',1229,545,'2005-08-27 00:20:09',1,'2006-02-15 21:30:53'),(15999,'2005-08-23 20:44:10',2584,377,'2005-08-31 02:38:10',2,'2006-02-15 21:30:53'),(16000,'2005-08-23 20:44:36',282,71,'2005-08-25 02:29:36',1,'2006-02-15 21:30:53'),(16001,'2005-08-23 20:45:53',245,108,'2005-08-27 15:52:53',1,'2006-02-15 21:30:53'),(16002,'2005-08-23 20:47:12',2770,73,'2005-08-27 23:07:12',1,'2006-02-15 21:30:53'),(16003,'2005-08-23 20:47:28',3413,577,'2005-08-31 23:22:28',1,'2006-02-15 21:30:53'),(16004,'2005-08-23 20:53:20',2223,147,'2005-08-31 15:15:20',2,'2006-02-15 21:30:53'),(16005,'2005-08-23 21:00:22',3265,466,'2005-09-02 02:35:22',1,'2006-02-15 21:30:53'),(16006,'2005-08-23 21:01:09',240,533,'2005-08-25 19:33:09',1,'2006-02-15 21:30:53'),(16007,'2005-08-23 21:02:43',3236,126,'2005-08-30 23:37:43',2,'2006-02-15 21:30:53'),(16008,'2005-08-23 21:04:51',3273,189,'2005-08-31 22:09:51',1,'2006-02-15 21:30:53'),(16009,'2005-08-23 21:07:59',3055,133,'2005-08-29 16:54:59',2,'2006-02-15 21:30:53'),(16010,'2005-08-23 21:10:24',2539,173,'2005-08-25 17:58:24',1,'2006-02-15 21:30:53'),(16011,'2005-08-23 21:11:33',1093,389,'2005-08-31 17:51:33',1,'2006-02-15 21:30:53'),(16012,'2005-08-23 21:13:39',2421,80,'2005-08-30 23:52:39',2,'2006-02-15 21:30:53'),(16013,'2005-08-23 21:17:17',561,462,'2005-08-26 21:15:17',1,'2006-02-15 21:30:53'),(16014,'2005-08-23 21:18:31',3322,532,'2005-08-31 17:28:31',2,'2006-02-15 21:30:53'),(16015,'2005-08-23 21:25:03',3113,50,'2005-08-24 20:05:03',2,'2006-02-15 21:30:53'),(16016,'2005-08-23 21:26:35',3374,595,'2005-08-28 16:06:35',2,'2006-02-15 21:30:53'),(16017,'2005-08-23 21:27:11',664,535,'2005-08-24 23:22:11',1,'2006-02-15 21:30:53'),(16018,'2005-08-23 21:27:35',897,439,'2005-08-30 00:36:35',1,'2006-02-15 21:30:53'),(16019,'2005-08-23 21:30:45',3093,278,'2005-08-27 23:45:45',2,'2006-02-15 21:30:53'),(16020,'2005-08-23 21:34:33',277,311,'2005-09-01 18:17:33',1,'2006-02-15 21:30:53'),(16021,'2005-08-23 21:37:59',3057,314,'2005-08-31 01:52:59',1,'2006-02-15 21:30:53'),(16022,'2005-08-23 21:44:27',2925,504,'2005-08-28 01:52:27',1,'2006-02-15 21:30:53'),(16023,'2005-08-23 21:45:02',2347,124,'2005-08-24 21:28:02',1,'2006-02-15 21:30:53'),(16024,'2005-08-23 21:46:47',2910,473,'2005-08-27 02:06:47',1,'2006-02-15 21:30:53'),(16025,'2005-08-23 21:48:54',1777,569,'2005-08-24 22:05:54',2,'2006-02-15 21:30:53'),(16026,'2005-08-23 21:49:22',467,484,'2005-08-27 00:47:22',1,'2006-02-15 21:30:53'),(16027,'2005-08-23 21:49:33',1724,160,'2005-08-30 16:19:33',2,'2006-02-15 21:30:53'),(16028,'2005-08-23 21:52:56',2515,119,'2005-08-30 18:16:56',2,'2006-02-15 21:30:53'),(16029,'2005-08-23 21:54:02',953,143,'2005-08-29 23:55:02',1,'2006-02-15 21:30:53'),(16030,'2005-08-23 21:56:04',4161,137,'2005-08-31 01:24:04',2,'2006-02-15 21:30:53'),(16031,'2005-08-23 21:59:26',1843,102,'2005-08-29 20:15:26',1,'2006-02-15 21:30:53'),(16032,'2005-08-23 21:59:57',2527,447,'2005-08-31 22:46:57',2,'2006-02-15 21:30:53'),(16033,'2005-08-23 22:06:15',760,226,'2005-09-01 02:36:15',2,'2006-02-15 21:30:53'),(16034,'2005-08-23 22:06:34',655,502,'2005-08-29 18:44:34',1,'2006-02-15 21:30:53'),(16035,'2005-08-23 22:08:04',549,37,'2005-08-28 03:46:04',1,'2006-02-15 21:30:53'),(16036,'2005-08-23 22:12:44',1372,425,'2005-08-25 17:48:44',2,'2006-02-15 21:30:53'),(16037,'2005-08-23 22:13:04',341,45,'2005-09-01 02:48:04',2,'2006-02-15 21:30:53'),(16038,'2005-08-23 22:14:31',2612,172,'2005-08-30 03:28:31',1,'2006-02-15 21:30:53'),(16039,'2005-08-23 22:18:51',545,78,'2005-08-31 19:55:51',2,'2006-02-15 21:30:53'),(16040,'2005-08-23 22:19:33',3524,195,'2005-09-02 02:19:33',2,'2006-02-15 21:30:53'),(16041,'2005-08-23 22:20:26',4116,121,'2005-08-25 20:14:26',2,'2006-02-15 21:30:53'),(16042,'2005-08-23 22:20:40',629,131,'2005-08-24 17:54:40',1,'2006-02-15 21:30:53'),(16043,'2005-08-23 22:21:03',3869,526,'2005-08-31 03:09:03',2,'2006-02-15 21:30:53'),(16044,'2005-08-23 22:24:39',1312,468,'2005-08-25 04:08:39',1,'2006-02-15 21:30:53'),(16045,'2005-08-23 22:25:26',772,14,'2005-08-25 23:54:26',1,'2006-02-15 21:30:53'),(16046,'2005-08-23 22:26:47',4364,74,'2005-08-27 18:02:47',2,'2006-02-15 21:30:53'),(16047,'2005-08-23 22:42:48',2088,114,'2005-08-25 02:48:48',2,'2006-02-15 21:30:53'),(16048,'2005-08-23 22:43:07',2019,103,'2005-08-31 21:33:07',1,'2006-02-15 21:30:53'),(16049,'2005-08-23 22:50:12',2666,393,'2005-08-30 01:01:12',2,'2006-02-15 21:30:53'); diff --git a/database/scholar/schema.sql b/database/scholar/schema.sql new file mode 100644 index 0000000000000000000000000000000000000000..e1a62ae28d2d3f4e549d2ddd7dcdec0f6ca43e84 --- /dev/null +++ b/database/scholar/schema.sql @@ -0,0 +1,88 @@ +PRAGMA foreign_keys = ON; + + + +CREATE TABLE `venue` ( + `venueId` integer NOT NULL +, `venueName` varchar(100) DEFAULT NULL +, PRIMARY KEY (`venueId`) +); + + + +CREATE TABLE `author` ( + `authorId` integer NOT NULL +, `authorName` varchar(50) DEFAULT NULL +, PRIMARY KEY (`authorId`) +); + + +CREATE TABLE `dataset` ( + `datasetId` integer NOT NULL +, `datasetName` varchar(50) DEFAULT NULL +, PRIMARY KEY (`datasetId`) +); + + +CREATE TABLE `journal` ( + `journalId` integer NOT NULL +, `journalName` varchar(100) DEFAULT NULL +, PRIMARY KEY (`journalId`) +); + +CREATE TABLE `keyphrase` ( + `keyphraseId` integer NOT NULL +, `keyphraseName` varchar(50) DEFAULT NULL +, PRIMARY KEY (`keyphraseId`) +); + + +CREATE TABLE `paper` ( + `paperId` integer NOT NULL +, `title` varchar(300) DEFAULT NULL +, `venueId` integer DEFAULT NULL +, `year` integer DEFAULT NULL +, `numCiting` integer DEFAULT NULL +, `numCitedBy` integer DEFAULT NULL +, `journalId` integer DEFAULT NULL +, PRIMARY KEY (`paperId`) +, FOREIGN KEY(`journalId`) REFERENCES `journal`(`journalId`) +, FOREIGN KEY(`venueId`) REFERENCES `venue`(`venueId`) +); + + + +CREATE TABLE `cite` ( + `citingPaperId` integer NOT NULL +, `citedPaperId` integer NOT NULL +, PRIMARY KEY (`citingPaperId`,`citedPaperId`) +, FOREIGN KEY(`citedpaperId`) REFERENCES `paper`(`paperId`) +, FOREIGN KEY(`citingpaperId`) REFERENCES `paper`(`paperId`) +); + + +CREATE TABLE `paperDataset` ( + `paperId` integer DEFAULT NULL +, `datasetId` integer DEFAULT NULL +, PRIMARY KEY (`datasetId`, `paperId`) +); + + + +CREATE TABLE `paperKeyphrase` ( + `paperId` integer DEFAULT NULL +, `keyphraseId` integer DEFAULT NULL +, PRIMARY KEY (`keyphraseId`,`paperId`) +, FOREIGN KEY(`paperId`) REFERENCES `paper`(`paperId`) +, FOREIGN KEY(`keyphraseId`) REFERENCES `keyphrase`(`keyphraseId`) +); + + +CREATE TABLE `writes` ( + `paperId` integer DEFAULT NULL +, `authorId` integer DEFAULT NULL +, PRIMARY KEY (`paperId`,`authorId`) +, FOREIGN KEY(`paperId`) REFERENCES `paper`(`paperId`) +, FOREIGN KEY(`authorId`) REFERENCES `author`(`authorId`) +); + diff --git a/database/scholar/scholar.sqlite b/database/scholar/scholar.sqlite new file mode 100644 index 0000000000000000000000000000000000000000..4c81e1d0d09b08e402afcfb5ae294821aca13b2a Binary files /dev/null and b/database/scholar/scholar.sqlite differ diff --git a/database/school_bus/schema.sql b/database/school_bus/schema.sql new file mode 100644 index 0000000000000000000000000000000000000000..f5c2b6d845fea3625f9a2676ff8975c6f9062b42 --- /dev/null +++ b/database/school_bus/schema.sql @@ -0,0 +1,61 @@ + +PRAGMA foreign_keys = ON; + +CREATE TABLE "driver" ( +"Driver_ID" int, +"Name" text, +"Party" text, +"Home_city" text, +"Age" int, +PRIMARY KEY ("Driver_ID") +); + +CREATE TABLE "school" ( +"School_ID" int, +"Grade" text, +"School" text, +"Location" text, +"Type" text, +PRIMARY KEY ("School_ID") +); + +INSERT INTO "driver" VALUES ("1","Matthew Ritter","Dem","Hartford",40); +INSERT INTO "driver" VALUES ("2","Dan Carter","Rep","Bethel",30); +INSERT INTO "driver" VALUES ("3","Minnie Gonzalez","Dem","Hartford",46); +INSERT INTO "driver" VALUES ("4","Angel Acre","Dem","Hartford",42); +INSERT INTO "driver" VALUES ("5","Brandon McGee","Dem","Hartford",45); +INSERT INTO "driver" VALUES ("6","Edwin Vargas","Dem","Hartford",52); +INSERT INTO "driver" VALUES ("7","Douglas McCrory","Dem","Hartford",36); +INSERT INTO "driver" VALUES ("8","Timothy Ackert","Rep","Coventry",35); +INSERT INTO "driver" VALUES ("9","Jason Rojas","Dem","East Hartford",38); +INSERT INTO "driver" VALUES ("10","Henry Genga","Dem","East Hartford",37); +INSERT INTO "driver" VALUES ("11","Tim Larson","Dem","East Hartford",36); +INSERT INTO "driver" VALUES ("12","Geoff Luxenberg","Dem","Manchester",52); + +INSERT INTO "school" VALUES (1,"Kindergarten","Noelani Elementary School","Honolulu, Hawaii","Public"); +INSERT INTO "school" VALUES (2,"1st-3rd grade","St. Francis Assisi","Jakarta, Indonesia","Private Catholic"); +INSERT INTO "school" VALUES (3,"4th grade","State Elementary School Menteng 01","Jakarta, Indonesia","Public"); +INSERT INTO "school" VALUES (4,"5th-12th grade","Punahou School","Honolulu, Hawaii","Private"); +INSERT INTO "school" VALUES (5,"Freshman–Sophomore year","Occidental College","Los Angeles, California","Private"); +INSERT INTO "school" VALUES (6,"Junior–Senior year","Columbia University","New York City","Private"); +INSERT INTO "school" VALUES (7,"College","Harvard Law School","Cambridge, Massachusetts","Private"); + + + +CREATE TABLE "school_bus" ( +"School_ID" int, +"Driver_ID" int, +"Years_Working" int, +"If_full_time" bool, +PRIMARY KEY ("School_ID","Driver_ID"), +FOREIGN KEY ("School_ID") REFERENCES `school`("School_ID"), +FOREIGN KEY ("Driver_ID") REFERENCES `driver`("Driver_ID") +); + + +INSERT INTO "school_bus" VALUES (1,10,10,"F"); +INSERT INTO "school_bus" VALUES (5,7,8,"T"); +INSERT INTO "school_bus" VALUES (3,4,6,"T"); +INSERT INTO "school_bus" VALUES (7,9,2,"T"); +INSERT INTO "school_bus" VALUES (4,3,3,"T"); + diff --git a/database/school_bus/school_bus.sqlite b/database/school_bus/school_bus.sqlite new file mode 100644 index 0000000000000000000000000000000000000000..9362948c18883d6f96f5e4a6f06e18f5674d5086 Binary files /dev/null and b/database/school_bus/school_bus.sqlite differ diff --git a/database/school_finance/schema.sql b/database/school_finance/schema.sql new file mode 100644 index 0000000000000000000000000000000000000000..60840895cf0897528e7b679d2afc4c917ba654e1 --- /dev/null +++ b/database/school_finance/schema.sql @@ -0,0 +1,64 @@ +PRAGMA foreign_keys = ON; + +CREATE TABLE "School" ( +"School_id" text, +"School_name" text, +"Location" text, +"Mascot" text, +"Enrollment" int, +"IHSAA_Class" text, +"IHSAA_Football_Class" text, +"County" text, +PRIMARY KEY ("School_id") +); + +CREATE TABLE "budget" ( +"School_id" int, +"Year" int, +"Budgeted" int, +"total_budget_percent_budgeted" real, +"Invested" int, +"total_budget_percent_invested" real, +"Budget_invested_percent" text, +PRIMARY KEY("School_id","YEAR"), +FOREIGN KEY("School_id") REFERENCES "School"("School_id") + +); + +CREATE TABLE "endowment" ( +"endowment_id" int, +"School_id" int, +"donator_name" text, +"amount" real, +PRIMARY KEY("endowment_id"), +FOREIGN KEY("School_id") REFERENCES "School"("School_id") +); + +INSERT INTO "School" VALUES (1,"Bremen","Bremen","Lions","495","AA","AA","50 Marshall"); +INSERT INTO "School" VALUES (2,"Culver Community","Culver","Cavaliers","287","A","A","50 Marshall"); +INSERT INTO "School" VALUES (3,"Glenn","Walkerton","Falcons","605","AAA","AAA","71 St. Joseph"); +INSERT INTO "School" VALUES (4,"Jimtown","Elkhart","Jimmies","601","AAA","AAA","20 Elkhart"); +INSERT INTO "School" VALUES (5,"Knox Community","Knox","Redskins","620","AAA","AAA","75 Starke"); +INSERT INTO "School" VALUES (6,"LaVille","Lakeville","Lancers","379","AA","A","71 St. Joseph"); +INSERT INTO "School" VALUES (7,"New Prairie 1","New Carlisle","Cougars","852","AAA","AAAA","46 LaPorte 71 St. Joseph"); +INSERT INTO "School" VALUES (8,"Triton","Bourbon","Trojans","316","A","A","50 Marshall"); +INSERT INTO "budget" VALUES (2,"1999","4979","2","2134","2","42.9"); +INSERT INTO "budget" VALUES (2,"2000","3666","2","5840","2","159.3"); +INSERT INTO "budget" VALUES (2,"2001","6803","2","8335","2","122.5"); +INSERT INTO "budget" VALUES (3,"2002","6803","2","8335","2","146.9"); +INSERT INTO "budget" VALUES (1,"2003","119527","2.4","85249","2.2","71.3"); +INSERT INTO "budget" VALUES (4,"2004","74849","2.0","95542","2.2","127.6"); +INSERT INTO "budget" VALUES (5,"2005","61283","1.3","140102","2.7","228.8"); +INSERT INTO "budget" VALUES (5,"2006","113531","2.0","146102","2.7","228.6"); +INSERT INTO "endowment" VALUES (1,1,"Monte Plata","9.51"); +INSERT INTO "endowment" VALUES (2,2,"San José de Ocoa","9.83"); +INSERT INTO "endowment" VALUES (3,3,"Distrito Nacional","9.55"); +INSERT INTO "endowment" VALUES (4,3,"Valverde","9.73"); +INSERT INTO "endowment" VALUES (5,3,"San Cristóbal","9.05"); +INSERT INTO "endowment" VALUES (6,4,"Santo Domingo Este","8.99"); +INSERT INTO "endowment" VALUES (7,4,"Santiago","8.85"); +INSERT INTO "endowment" VALUES (8,5,"Duarte","8.53"); +INSERT INTO "endowment" VALUES (9,6,"Com. Dom. En Estados Unidos","8.43"); +INSERT INTO "endowment" VALUES (10,7,"La Vega","8.82"); +INSERT INTO "endowment" VALUES (11, 8,"Peravia","8.33"); + diff --git a/database/school_finance/school_finance.sqlite b/database/school_finance/school_finance.sqlite new file mode 100644 index 0000000000000000000000000000000000000000..423b4962546b7719106925f25c27f284c9bd0721 Binary files /dev/null and b/database/school_finance/school_finance.sqlite differ diff --git a/database/school_player/schema.sql b/database/school_player/schema.sql new file mode 100644 index 0000000000000000000000000000000000000000..ffe77e228a7e281ee6c65ed9adc7fe78cf29e9a9 --- /dev/null +++ b/database/school_player/schema.sql @@ -0,0 +1,113 @@ + +PRAGMA foreign_keys = ON; + +CREATE TABLE "school" ( +"School_ID" int, +"School" text, +"Location" text, +"Enrollment" real, +"Founded" real, +"Denomination" text, +"Boys_or_Girls" text, +"Day_or_Boarding" text, +"Year_Entered_Competition" real, +"School_Colors" text, +PRIMARY KEY ("School_Id") +); + +INSERT INTO "school" VALUES (1,"St Aloysius' College","Milsons Point","1200","1879","Catholic","Boys","Day","1929","Royal Blue and Gold"); +INSERT INTO "school" VALUES (2,"Barker College","Hornsby","2300","1890","Anglican","Boys only to Yr 9 Co-ed Year 10 to 12","Day & Boarding","1929","Red & Blue"); +INSERT INTO "school" VALUES (3,"Cranbrook School","Bellevue Hill","1000","1918","Anglican","Boys","Day & Boarding","1929","Red, White & Blue"); +INSERT INTO "school" VALUES (4,"Knox Grammar School","Wahroonga","1850","1924","Uniting Church","Boys","Day & Boarding","1929","Black & Blue"); +INSERT INTO "school" VALUES (5,"Trinity Grammar School","Summer Hill","2200","1913","Anglican","Boys","Day & Boarding","1929","Green and White"); +INSERT INTO "school" VALUES (6,"Waverley College","Waverley","1430","1903","Catholic","Boys","Day","1944","Royal Blue and Gold"); + + + +CREATE TABLE "school_details" ( +"School_ID" int, +"Nickname" text, +"Colors" text, +"League" text, +"Class" text, +"Division" text, +PRIMARY KEY ("School_Id"), +FOREIGN KEY (`School_ID`) REFERENCES `school`(`School_ID`) +); + +INSERT INTO "school_details" VALUES (1,"Tigers","Blue and Yellow","DSHA","Flight A","Division 1"); +INSERT INTO "school_details" VALUES (2,"Auks","Dark Green and White","DSHA","Flight B","Division 3"); +INSERT INTO "school_details" VALUES (3,"Buccaneers","Garnet and White","DSHA","Fight A","Division 1"); +INSERT INTO "school_details" VALUES (4,"Raiders","Maroon and White","DSHA","Flight B","Division 3"); +INSERT INTO "school_details" VALUES (5,"Seahawks","Blue and Gold","DSHA","Flight B","Division 2"); +INSERT INTO "school_details" VALUES (6,"Silver Eagles","Silver and Maroon","DSHA","Flight B","Division 3"); + + + +CREATE TABLE "school_performance" ( +"School_Id" int, +"School_Year" text, +"Class_A" text, +"Class_AA" text, +PRIMARY KEY ("School_Id","School_Year"), +FOREIGN KEY (`School_ID`) REFERENCES `school`(`School_ID`) +); + +INSERT INTO "school_performance" VALUES (1,"1987-88","Yantis","Blanco"); +INSERT INTO "school_performance" VALUES (1,"1988-89","Happy","Blanco"); +INSERT INTO "school_performance" VALUES (1,"1989-90","Skidmore-Tynan", "Bishop"); +INSERT INTO "school_performance" VALUES (2,"1990-91","Louise","Lytle"); +INSERT INTO "school_performance" VALUES (2,"1991-92","Anton","Clarendon"); +INSERT INTO "school_performance" VALUES (3,"1992-93","Anton","Wheeler"); +INSERT INTO "school_performance" VALUES (4,"1993-94","Utopia","Lytle"); +INSERT INTO "school_performance" VALUES (3,"1994-95","Martin's Mill","Wallis Brazos"); +INSERT INTO "school_performance" VALUES (5,"1995-96","Lindsay","Henrietta"); +INSERT INTO "school_performance" VALUES (6,"1996-97","Martin's Mill","Canadian"); +INSERT INTO "school_performance" VALUES (1,"1997-98","Martin's Mill","Buffalo"); +INSERT INTO "school_performance" VALUES (2,"1998-99","Wheeler","Van Alstyne"); +INSERT INTO "school_performance" VALUES (3,"1999-2000","Valley View","Lindsay"); +INSERT INTO "school_performance" VALUES (5,"2000-01","Menard","Weimar"); +INSERT INTO "school_performance" VALUES (6,"2001-02","Santa Anna","Hale Center"); +INSERT INTO "school_performance" VALUES (2,"2002-03","Martin's Mill","Hale Center"); +INSERT INTO "school_performance" VALUES (1,"2003-04","Martin's Mill","S&S Consolidated"); +INSERT INTO "school_performance" VALUES (2,"2004-05","Lindsay","Salado"); +INSERT INTO "school_performance" VALUES (3,"2005-06","Quanah","Salado"); +INSERT INTO "school_performance" VALUES (1,"2006-07","Martin's Mill","Weimar"); +INSERT INTO "school_performance" VALUES (6,"2007-08","Frost","Weimar"); +INSERT INTO "school_performance" VALUES (4,"2008-09","Winters","Dimmitt"); + + +CREATE TABLE "player" ( +"Player_ID" int, +"Player" text, +"Team" text, +"Age" int, +"Position" text, +"School_ID" int, +PRIMARY KEY ("Player_ID"), +FOREIGN KEY (`School_ID`) REFERENCES `school`(`School_ID`) +); + +INSERT INTO "player" VALUES ("1","Timothy Beckham","Tampa Bay Devil Rays",15,"Shortstop",1); +INSERT INTO "player" VALUES ("2","Pedro Álvarez","Pittsburgh Pirates",14,"Third baseman",2); +INSERT INTO "player" VALUES ("3","Eric Hosmer","Kansas City Royals",16,"First Baseman",1); +INSERT INTO "player" VALUES ("4","Brian Matusz","Baltimore Orioles",17,"Left-handed pitcher",1); +INSERT INTO "player" VALUES ("5","Buster Posey","San Francisco Giants",15,"Catcher",2); +INSERT INTO "player" VALUES ("6","Kyle Skipworth","Florida Marlins",14,"Catcher",2); +INSERT INTO "player" VALUES ("7","Yonder Alonso","Cincinnati Reds",15,"First baseman",1); +INSERT INTO "player" VALUES ("8","Gordon Beckham","Chicago White Sox",16,"Shortstop",1); +INSERT INTO "player" VALUES ("9","Aaron Crow *","Washington Nationals",16,"Right-handed pitcher",1); +INSERT INTO "player" VALUES ("10","Jason Castro","Houston Astros",15,"Catcher",1); +INSERT INTO "player" VALUES ("11","Justin Smoak","Texas Rangers",15,"First baseman",1); +INSERT INTO "player" VALUES ("12","Jemile Weeks","Oakland Athletics",15,"Second baseman",2); +INSERT INTO "player" VALUES ("13","Brett Wallace","St. Louis Cardinals",17,"Third baseman",5); +INSERT INTO "player" VALUES ("14","Aaron Hicks","Minnesota Twins",14,"Outfielder",6); +INSERT INTO "player" VALUES ("15","Ethan Martin","Los Angeles Dodgers",15,"Right-handed pitcher",1); +INSERT INTO "player" VALUES ("16","Brett Lawrie","Milwaukee Brewers",15,"Catcher",1); +INSERT INTO "player" VALUES ("17","David Cooper","Toronto Blue Jays",17,"First baseman",1); +INSERT INTO "player" VALUES ("18","Ike Davis","New York Mets",15,"First baseman",4); +INSERT INTO "player" VALUES ("19","Andrew Cashner","Chicago Cubs",16,"Right-handed pitcher",4); +INSERT INTO "player" VALUES ("20","Josh Fields","Seattle Mariners",15,"Right-handed pitcher",4); +INSERT INTO "player" VALUES ("21","Ryan Perry","Detroit Tigers",17,"Right-handed pitcher",3); +INSERT INTO "player" VALUES ("22","Reese Havens","New York Mets",18,"Shortstop",5); +INSERT INTO "player" VALUES ("23","Allan Dykstra","San Diego Padres",15,"First baseman",5); diff --git a/database/school_player/school_player.sqlite b/database/school_player/school_player.sqlite new file mode 100644 index 0000000000000000000000000000000000000000..cd086bf8910571b509961ec9effd16d97518338a Binary files /dev/null and b/database/school_player/school_player.sqlite differ diff --git a/database/scientist_1/schema.sql b/database/scientist_1/schema.sql new file mode 100644 index 0000000000000000000000000000000000000000..d44431cc36bc7321c45a1d0dce1337cda8f9c4d2 --- /dev/null +++ b/database/scientist_1/schema.sql @@ -0,0 +1,64 @@ +create table Scientists ( + SSN int, + Name Char(30) not null, + Primary Key (SSN) +); + +Create table Projects ( + Code Char(4), + Name Char(50) not null, + Hours int, + Primary Key (Code) +); + +create table AssignedTo ( + Scientist int not null, + Project char(4) not null, + Primary Key (Scientist, Project), + Foreign Key (Scientist) references Scientists (SSN), + Foreign Key (Project) references Projects (Code) +); + +INSERT INTO Scientists(SSN,Name) + VALUES(123234877,'Michael Rogers'), + (152934485,'Anand Manikutty'), + (222364883, 'Carol Smith'), + (326587417,'Joe Stevens'), + (332154719,'Mary-Anne Foster'), + (332569843,'George ODonnell'), + (546523478,'John Doe'), + (631231482,'David Smith'), + (654873219,'Zacary Efron'), + (745685214,'Eric Goldsmith'), + (845657245,'Elizabeth Doe'), + (845657246,'Kumar Swamy'); + + INSERT INTO Projects ( Code,Name,Hours) + VALUES ('AeH1','Winds: Studying Bernoullis Principle', 156), + ('AeH2','Aerodynamics and Bridge Design',189), + ('AeH3','Aerodynamics and Gas Mileage', 256), + ('AeH4','Aerodynamics and Ice Hockey', 789), + ('AeH5','Aerodynamics of a Football', 98), + ('AeH6','Aerodynamics of Air Hockey',89), + ('Ast1','A Matter of Time',112), + ('Ast2','A Puzzling Parallax', 299), + ('Ast3','Build Your Own Telescope', 6546), + ('Bte1','Juicy: Extracting Apple Juice with Pectinase', 321), + ('Bte2','A Magnetic Primer Designer', 9684), + ('Bte3','Bacterial Transformation Efficiency', 321), + ('Che1','A Silver-Cleaning Battery', 545), + ('Che2','A Soluble Separation Solution', 778); + + INSERT INTO AssignedTo ( Scientist, Project) + VALUES (123234877,'AeH1'), + (152934485,'AeH3'), + (222364883,'Ast3'), + (326587417,'Ast3'), + (332154719,'Bte1'), + (546523478,'Che1'), + (631231482,'Ast3'), + (654873219,'Che1'), + (745685214,'AeH3'), + (845657245,'Ast1'), + (845657246,'Ast2'), + (332569843,'AeH4'); diff --git a/database/scientist_1/scientist_1.sqlite b/database/scientist_1/scientist_1.sqlite new file mode 100644 index 0000000000000000000000000000000000000000..791d767902aa85f1d67988fa8dd54ef1484b74ed Binary files /dev/null and b/database/scientist_1/scientist_1.sqlite differ diff --git a/database/ship_1/schema.sql b/database/ship_1/schema.sql new file mode 100644 index 0000000000000000000000000000000000000000..caf48a4afcb2efb21f6f47b274ec436a61a005fa --- /dev/null +++ b/database/ship_1/schema.sql @@ -0,0 +1,41 @@ +PRAGMA foreign_keys = ON; + +CREATE TABLE "captain" ( +"Captain_ID" int, +"Name" text, +"Ship_ID" int, +"age" text, +"Class" text, +"Rank" text, +PRIMARY KEY ("Captain_ID"), +FOREIGN KEY ("Ship_ID") REFERENCES "Ship"("Ship_ID") +); + +CREATE TABLE "Ship" ( +"Ship_ID" int, +"Name" text, +"Type" text, +"Built_Year" real, +"Class" text, +"Flag" text, +PRIMARY KEY ("Ship_ID") +); + +INSERT INTO "Ship" VALUES (1,"HMS Manxman","Panamax","1997","KR","Panama"); +INSERT INTO "Ship" VALUES (2,"HMS Gorgon","Panamax","1998","KR","Panama"); +INSERT INTO "Ship" VALUES (3,"HM Cutter Avenger","Panamax","1997","KR","Panama"); +INSERT INTO "Ship" VALUES (4,"HM Schooner Hotspur","Panamax","1998","KR","Panama"); +INSERT INTO "Ship" VALUES (5,"HMS Destiny","Panamax","1998","KR","Panama"); +INSERT INTO "Ship" VALUES (6,"HMS Trojan","Panamax","1997","KR","Panama"); +INSERT INTO "Ship" VALUES (7,"HM Sloop Sparrow","Panamax","1997","KR","Panama"); +INSERT INTO "Ship" VALUES (8,"HMS Phalarope","Panamax","1997","KR","Panama"); +INSERT INTO "Ship" VALUES (9,"HMS Undine","Panamax","1998","GL","Malta"); + +INSERT INTO "captain" VALUES (1,"Captain Sir Henry Langford",1,"40","Third-rate ship of the line","Midshipman"); +INSERT INTO "captain" VALUES (2,"Captain Beves Conway",2,"54","Third-rate ship of the line","Midshipman"); +INSERT INTO "captain" VALUES (3,"Lieutenant Hugh Bolitho",3,"43","Cutter","Midshipman"); +INSERT INTO "captain" VALUES (4,"Lieutenant Montagu Verling",4,"45","Armed schooner","Midshipman"); +INSERT INTO "captain" VALUES (5,"Captain Henry Dumaresq",5,"38","Frigate","Lieutenant"); +INSERT INTO "captain" VALUES (6,"Captain Gilbert Pears",2,"60","Third-rate ship of the line","Lieutenant"); +INSERT INTO "captain" VALUES (7,"Commander Richard Bolitho",3,"38","Sloop-of-war","Commander, junior captain"); + diff --git a/database/ship_1/ship_1.sqlite b/database/ship_1/ship_1.sqlite new file mode 100644 index 0000000000000000000000000000000000000000..942c19c837e3c01830aaf5fd168b6ca32fa47a68 Binary files /dev/null and b/database/ship_1/ship_1.sqlite differ diff --git a/database/ship_mission/schema.sql b/database/ship_mission/schema.sql new file mode 100644 index 0000000000000000000000000000000000000000..4dcde4fdf78d334951c391042ece0a484d2f326a --- /dev/null +++ b/database/ship_mission/schema.sql @@ -0,0 +1,41 @@ +PRAGMA foreign_keys = ON; + +CREATE TABLE "mission" ( +"Mission_ID" int, +"Ship_ID" int, +"Code" text, +"Launched_Year" int, +"Location" text, +"Speed_knots" int, +"Fate" text, +PRIMARY KEY ("Mission_ID"), +FOREIGN KEY ("Ship_ID") REFERENCES `ship`("Ship_ID") +); + +CREATE TABLE "ship" ( +"Ship_ID" int, +"Name" text, +"Type" text, +"Nationality" text, +"Tonnage" int, +PRIMARY KEY ("Ship_ID") +); + +INSERT INTO "ship" VALUES (1,"Corbridge","Cargo ship","United Kingdom","3687"); +INSERT INTO "ship" VALUES (2,"Farringford","Battle ship","United States","3146"); +INSERT INTO "ship" VALUES (3,"Dromonby","Cargo ship","United Kingdom","3627"); +INSERT INTO "ship" VALUES (4,"Author","Cargo ship","United Kingdom","3496"); +INSERT INTO "ship" VALUES (5,"Trader","Battle ship","United Kingdom","3608"); +INSERT INTO "ship" VALUES (6,"Ariadne","Cargo ship","United States","3035"); +INSERT INTO "ship" VALUES (7,"Appam","Battle ship","United Kingdom","7781"); +INSERT INTO "ship" VALUES (8,"Clan McTavish","Cargo ship","United States","5816"); + + +INSERT INTO "mission" VALUES (1,1,"VMV-1","1930","Germany","25","Decommissioned 1950"); +INSERT INTO "mission" VALUES (2,2,"VMV-2","1930","Germany","25","Decommissioned 1950"); +INSERT INTO "mission" VALUES (3,3,"VMV-3","1930","Helsinki , Finland","23","Lost (burned) 1931"); +INSERT INTO "mission" VALUES (4,5,"VMV-4 Former: Sterling","1916","Norway","16","Retired 1939"); +INSERT INTO "mission" VALUES (5,6,"VMV-5","1931","Uusikaupunki , Finland","23","Decommissioned 1959"); +INSERT INTO "mission" VALUES (6,7,"VMV-6","1931","Uusikaupunki , Finland","23","Decommissioned 1960"); +INSERT INTO "mission" VALUES (7,8,"VMV-7","1932","Turku , Finland","23","Lost (burned and sunk) 1933"); + diff --git a/database/ship_mission/ship_mission.sqlite b/database/ship_mission/ship_mission.sqlite new file mode 100644 index 0000000000000000000000000000000000000000..c5410cf7ae65561fae82f4acc5dc682d884d5e9c Binary files /dev/null and b/database/ship_mission/ship_mission.sqlite differ diff --git a/database/shop_membership/schema.sql b/database/shop_membership/schema.sql new file mode 100644 index 0000000000000000000000000000000000000000..c3cc0e5378c03d416f11bc4a077bd108e588e108 --- /dev/null +++ b/database/shop_membership/schema.sql @@ -0,0 +1,84 @@ +PRAGMA foreign_keys = ON; + +CREATE TABLE "member" ( +"Member_ID" int, +"Card_Number" text, +"Name" text, +"Hometown" text, +"Level" int, +PRIMARY KEY ("Member_ID") +); + + +INSERT INTO "member" VALUES (1,"LE99","Jeremy Jarmon","Collierville, Tennessee","6"); +INSERT INTO "member" VALUES (2,"LT98","Myron Pryor","Louisville, Kentucky","6"); +INSERT INTO "member" VALUES (3,"RT91","Corey Peters","Louisville, Kentucky","6"); +INSERT INTO "member" VALUES (4,"RE95","Ventrell Jenkins","Columbia, South Carolina","6"); +INSERT INTO "member" VALUES (5,"OLB56","Braxton Kelley","LaGrange, Georgia","6"); +INSERT INTO "member" VALUES (6,"MLB4","Micah Johnson","Fort Campbell, Kentucky","4"); +INSERT INTO "member" VALUES (7,"SLB51","Johnny Williams","Jacksonville, Florida","6"); +INSERT INTO "member" VALUES (8,"RCB32","Trevard Lindley","Hiram, Georgia","6"); +INSERT INTO "member" VALUES (9,"LCB7","David Jones","Red Jacket, West Virginia","6"); +INSERT INTO "member" VALUES (10,"FS10","Matt Lentz","Simpsonville, South Carolina","2"); + + +CREATE TABLE "branch" ( +"Branch_ID" int, +"Name" text, +"Open_year" text, +"Address_road" text, +"City" text, +"membership_amount" text, +PRIMARY KEY ("Branch_ID") +); + + +INSERT INTO "branch" VALUES (1,"Alexandre","2001","Valleys Place","London","112"); +INSERT INTO "branch" VALUES (2,"Popert","2009","Oaks Crescent","London","11"); +INSERT INTO "branch" VALUES (3,"Stanley","2013","Abbott Street","London","6"); +INSERT INTO "branch" VALUES (4,"Zytogorski","2009","Abbey Rise","Oxford","7"); +INSERT INTO "branch" VALUES (5,"Cochrane","2012","Brampton Road","London","1418"); +INSERT INTO "branch" VALUES (6,"Taverner","2014","Cecilia Avenue","Oxford","56"); +INSERT INTO "branch" VALUES (7,"Saint Amant","2015","Concord Road","London","91"); +INSERT INTO "branch" VALUES (8,"Brooke Greville","2009","Glebe Street","Oxford","31"); + + +CREATE TABLE "membership_register_branch" ( +"Member_ID" int, +"Branch_ID" text, +"Register_Year" text, +PRIMARY KEY ("Member_ID"), +FOREIGN KEY ("Member_ID") REFERENCES "member"("Member_ID"), +FOREIGN KEY ("Branch_ID") REFERENCES "branch"("Branch_ID") +); + +INSERT INTO "membership_register_branch" VALUES (1,1,"2016"); +INSERT INTO "membership_register_branch" VALUES (2,4,"2016"); +INSERT INTO "membership_register_branch" VALUES (3,1,"2017"); +INSERT INTO "membership_register_branch" VALUES (4,1,"2016"); +INSERT INTO "membership_register_branch" VALUES (5,5,"2016"); +INSERT INTO "membership_register_branch" VALUES (6,6,"2017"); +INSERT INTO "membership_register_branch" VALUES (7,2,"2016"); +INSERT INTO "membership_register_branch" VALUES (8,8,"2016"); + + + +CREATE TABLE "purchase" ( +"Member_ID" int, +"Branch_ID" text, +"Year" text, +"Total_pounds" real, +PRIMARY KEY ("Member_ID","Branch_ID","Year"), +FOREIGN KEY ("Member_ID") REFERENCES "member"("Member_ID"), +FOREIGN KEY ("Branch_ID") REFERENCES "branch"("Branch_ID") +); + +INSERT INTO "purchase" VALUES (1,3,"2018",2013.32); +INSERT INTO "purchase" VALUES (2,5,"2018",321.13); +INSERT INTO "purchase" VALUES (3,1,"2017",988.09); +INSERT INTO "purchase" VALUES (4,1,"2018",20.99); +INSERT INTO "purchase" VALUES (3,5,"2018",343.76); +INSERT INTO "purchase" VALUES (6,6,"2018",232.09); +INSERT INTO "purchase" VALUES (2,2,"2018",402.10); +INSERT INTO "purchase" VALUES (2,3,"2018",430.29); + diff --git a/database/shop_membership/shop_membership.sqlite b/database/shop_membership/shop_membership.sqlite new file mode 100644 index 0000000000000000000000000000000000000000..63b27738cda7bf33fa2f7d4e86d78ebe619ba710 Binary files /dev/null and b/database/shop_membership/shop_membership.sqlite differ diff --git a/database/singer/schema.sql b/database/singer/schema.sql new file mode 100644 index 0000000000000000000000000000000000000000..17a46f6affa7fc46bf3e25ce0dc1eb26c2d4d6a9 --- /dev/null +++ b/database/singer/schema.sql @@ -0,0 +1,39 @@ +PRAGMA foreign_keys = ON; + +CREATE TABLE "singer" ( +"Singer_ID" int, +"Name" text, +"Birth_Year" real, +"Net_Worth_Millions" real, +"Citizenship" text, +PRIMARY KEY ("Singer_ID") +); + +CREATE TABLE "song" ( +"Song_ID" int, +"Title" text, +"Singer_ID" int, +"Sales" real, +"Highest_Position" real, +PRIMARY KEY ("Song_ID"), +FOREIGN KEY ("Singer_ID") REFERENCES `singer`("Singer_ID") +); + +INSERT INTO "singer" VALUES (1,"Liliane Bettencourt","1944","30.0","France"); +INSERT INTO "singer" VALUES (2,"Christy Walton","1948","28.8","United States"); +INSERT INTO "singer" VALUES (3,"Alice Walton","1949","26.3","United States"); +INSERT INTO "singer" VALUES (4,"Iris Fontbona","1942","17.4","Chile"); +INSERT INTO "singer" VALUES (5,"Jacqueline Mars","1940","17.8","United States"); +INSERT INTO "singer" VALUES (6,"Gina Rinehart","1953","17","Australia"); +INSERT INTO "singer" VALUES (7,"Susanne Klatten","1962","14.3","Germany"); +INSERT INTO "singer" VALUES (8,"Abigail Johnson","1961","12.7","United States"); + +INSERT INTO "song" VALUES ("1","Do They Know It's Christmas",1,"1094000","1"); +INSERT INTO "song" VALUES ("2","F**k It (I Don't Want You Back)",1,"552407","1"); +INSERT INTO "song" VALUES ("3","Cha Cha Slide",2,"351421","1"); +INSERT INTO "song" VALUES ("4","Call on Me",4,"335000","1"); +INSERT INTO "song" VALUES ("5","Yeah",2,"300000","1"); +INSERT INTO "song" VALUES ("6","All This Time",6,"292000","1"); +INSERT INTO "song" VALUES ("7","Left Outside Alone",5,"275000","3"); +INSERT INTO "song" VALUES ("8","Mysterious Girl",7,"261000","1"); + diff --git a/database/singer/singer.sqlite b/database/singer/singer.sqlite new file mode 100644 index 0000000000000000000000000000000000000000..62c79092c0b2d2eca0b283ad355f47df51886219 Binary files /dev/null and b/database/singer/singer.sqlite differ diff --git a/database/small_bank_1/small_bank_1.sqlite b/database/small_bank_1/small_bank_1.sqlite new file mode 100644 index 0000000000000000000000000000000000000000..0034f47b6aaf460cb2d3aac686f464c3329a323c Binary files /dev/null and b/database/small_bank_1/small_bank_1.sqlite differ diff --git a/database/soccer_1/schema.sql b/database/soccer_1/schema.sql new file mode 100644 index 0000000000000000000000000000000000000000..cf2ceb19c3a28a37a5c8579af82538c49ae93c93 --- /dev/null +++ b/database/soccer_1/schema.sql @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6849b8b7d936834de178e3e9ab200f4c8eee2b9f50d160f4cf8b07f5b385ea5f +size 322070170 diff --git a/database/soccer_1/soccer_1.sqlite b/database/soccer_1/soccer_1.sqlite new file mode 100644 index 0000000000000000000000000000000000000000..00a954e732fc880a83d99d310e3851f692a4d521 --- /dev/null +++ b/database/soccer_1/soccer_1.sqlite @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:402ea587e7cc71051f4479b5c2b70dcda1ac75176af15b3a1932febee4a528e5 +size 316854272 diff --git a/database/soccer_2/schema.sql b/database/soccer_2/schema.sql new file mode 100644 index 0000000000000000000000000000000000000000..b1899360c88734432935694e1d722204e090b568 --- /dev/null +++ b/database/soccer_2/schema.sql @@ -0,0 +1,54 @@ +/* + * SQL scripts for CS61 Intro to SQL lectures + * FILENAME SOCCER2.SQL + */ + +DROP TABLE IF EXISTS Player; +DROP TABLE IF EXISTS Tryout; +DROP TABLE IF EXISTS College; + +CREATE TABLE College + ( cName varchar(20) NOT NULL, + state varchar(2), + enr numeric(5,0), + PRIMARY KEY (cName) + ); + +CREATE TABLE Player + ( pID numeric(5,0) NOT NULL, + pName varchar(20), + yCard varchar(3), + HS numeric(5,0), + PRIMARY KEY (pID) + ); + +CREATE TABLE Tryout + ( pID numeric(5,0), + cName varchar(20), + pPos varchar(8), + decision varchar(3), + PRIMARY KEY (pID, cName), + FOREIGN KEY (pID) REFERENCES Player(pID), + FOREIGN KEY (cName) REFERENCES College(cName) + ); + +/* note that "left" and "right" are reserved words in SQL */ + +INSERT INTO College VALUES ('LSU', 'LA', 18000); +INSERT INTO College VALUES ('ASU', 'AZ', 12000); +INSERT INTO College VALUES ('OU', 'OK', 22000); +INSERT INTO College VALUES ('FSU', 'FL', 19000); + +INSERT INTO Player VALUES (10001, 'Andrew', 'no', 1200); +INSERT INTO Player VALUES (20002, 'Blake', 'no', 1600); +INSERT INTO Player VALUES (30003, 'Charles', 'no', 300); +INSERT INTO Player VALUES (40004, 'David', 'yes', 1600); +INSERT INTO Player VALUES (40002, 'Drago', 'yes', 1600); +INSERT INTO Player VALUES (50005, 'Eddie', 'yes', 600); + +INSERT INTO Tryout VALUES (10001, 'LSU', 'goalie', 'no'); +INSERT INTO Tryout VALUES (10001, 'ASU', 'goalie', 'yes'); +INSERT INTO Tryout VALUES (20002, 'FSU', 'striker', 'yes'); +INSERT INTO Tryout VALUES (30003, 'OU', 'mid', 'no'); +INSERT INTO Tryout VALUES (40004, 'ASU', 'goalie', 'no'); +INSERT INTO Tryout VALUES (50005, 'LSU', 'mid', 'no'); diff --git a/database/soccer_2/soccer_2.sqlite b/database/soccer_2/soccer_2.sqlite new file mode 100644 index 0000000000000000000000000000000000000000..419ec5d0cff2d17344d5a649f8c9dcfbf152886f Binary files /dev/null and b/database/soccer_2/soccer_2.sqlite differ diff --git a/database/solvency_ii/schema.sql b/database/solvency_ii/schema.sql new file mode 100644 index 0000000000000000000000000000000000000000..9cd7d277a29e7bfdbdeceae46345601dbf186fad --- /dev/null +++ b/database/solvency_ii/schema.sql @@ -0,0 +1,272 @@ +PRAGMA foreign_keys = ON; + + + +CREATE TABLE Addresses ( +Address_ID INTEGER NOT NULL , +address_details VARCHAR(255), +PRIMARY KEY (Address_ID), +UNIQUE (Address_ID) +); +CREATE TABLE Locations ( +Location_ID INTEGER NOT NULL , +Other_Details VARCHAR(255), +PRIMARY KEY (Location_ID) +); +CREATE TABLE Products ( +Product_ID INTEGER NOT NULL, +Product_Type_Code CHAR(15), +Product_Name VARCHAR(255), +Product_Price DECIMAL(20,4), +PRIMARY KEY (Product_ID), +UNIQUE (Product_ID) +); +CREATE TABLE Parties ( +Party_ID INTEGER NOT NULL, +Party_Details VARCHAR(255), +PRIMARY KEY (Party_ID) +); +CREATE TABLE Assets ( +Asset_ID INTEGER NOT NULL , +Other_Details VARCHAR(255), +PRIMARY KEY (Asset_ID) +); +CREATE TABLE Channels ( +Channel_ID INTEGER NOT NULL , +Other_Details VARCHAR(255), +PRIMARY KEY (Channel_ID) +); +CREATE TABLE Finances ( +Finance_ID INTEGER NOT NULL , +Other_Details VARCHAR(255), +PRIMARY KEY (Finance_ID) +); + + +INSERT INTO `Addresses` (`Address_ID`, `address_details`) VALUES (1, '465 Emely Bypass +West Mafalda, CO 23309'); +INSERT INTO `Addresses` (`Address_ID`, `address_details`) VALUES (2, '669 Carter Trafficway +Port Delbert, OK 66249'); +INSERT INTO `Addresses` (`Address_ID`, `address_details`) VALUES (3, '38247 Ernser Gateway Suite 442 +Bogisichland, VT 71460'); +INSERT INTO `Addresses` (`Address_ID`, `address_details`) VALUES (4, '732 Greenholt Valleys +East Marionfort, VT 89477-0433'); +INSERT INTO `Addresses` (`Address_ID`, `address_details`) VALUES (5, '382 Demond Alley +Luellamouth, MT 67912'); +INSERT INTO `Addresses` (`Address_ID`, `address_details`) VALUES (6, '3851 Quigley Flats +O''Reillychester, CA 92522-9526'); +INSERT INTO `Addresses` (`Address_ID`, `address_details`) VALUES (7, '78950 Kamryn Centers +Chelsealand, NE 22947-6129'); +INSERT INTO `Addresses` (`Address_ID`, `address_details`) VALUES (8, '682 Kautzer Forest Apt. 509 +Jaydenfurt, NE 85011-5059'); +INSERT INTO `Addresses` (`Address_ID`, `address_details`) VALUES (9, '11093 Balistreri Forge +Gaylordtown, VT 05705'); +INSERT INTO `Addresses` (`Address_ID`, `address_details`) VALUES (10, '9113 Wisoky Glen Apt. 601 +Lake Immanuel, UT 01388'); +INSERT INTO `Addresses` (`Address_ID`, `address_details`) VALUES (11, '73409 Linnea Loop Apt. 778 +Haagberg, AK 41204-1496'); +INSERT INTO `Addresses` (`Address_ID`, `address_details`) VALUES (12, '8220 Concepcion Neck Suite 394 +East Beauview, LA 19968-4755'); +INSERT INTO `Addresses` (`Address_ID`, `address_details`) VALUES (13, '513 Lindgren River +North Scottymouth, IN 85224-1392'); +INSERT INTO `Addresses` (`Address_ID`, `address_details`) VALUES (14, '9694 Wava Roads +Ricechester, DC 70816-9058'); +INSERT INTO `Addresses` (`Address_ID`, `address_details`) VALUES (15, '068 O''Connell Tunnel +West Colemanburgh, MO 87777'); + +INSERT INTO `Assets` (`Asset_ID`, `Other_Details`) VALUES (1, 'Transportation Cars'); +INSERT INTO `Assets` (`Asset_ID`, `Other_Details`) VALUES (2, 'Meeting Rooms'); +INSERT INTO `Assets` (`Asset_ID`, `Other_Details`) VALUES (3, 'Dinning Tables'); + +INSERT INTO `Channels` (`Channel_ID`, `Other_Details`) VALUES (1, '145'); +INSERT INTO `Channels` (`Channel_ID`, `Other_Details`) VALUES (2, '348'); +INSERT INTO `Channels` (`Channel_ID`, `Other_Details`) VALUES (3, '933'); +INSERT INTO `Channels` (`Channel_ID`, `Other_Details`) VALUES (4, '631'); +INSERT INTO `Channels` (`Channel_ID`, `Other_Details`) VALUES (5, '681'); +INSERT INTO `Channels` (`Channel_ID`, `Other_Details`) VALUES (6, '993'); +INSERT INTO `Channels` (`Channel_ID`, `Other_Details`) VALUES (7, '249'); +INSERT INTO `Channels` (`Channel_ID`, `Other_Details`) VALUES (8, '644'); +INSERT INTO `Channels` (`Channel_ID`, `Other_Details`) VALUES (9, '668'); +INSERT INTO `Channels` (`Channel_ID`, `Other_Details`) VALUES (10, '058'); +INSERT INTO `Channels` (`Channel_ID`, `Other_Details`) VALUES (11, '163'); +INSERT INTO `Channels` (`Channel_ID`, `Other_Details`) VALUES (12, '285'); +INSERT INTO `Channels` (`Channel_ID`, `Other_Details`) VALUES (13, '943'); +INSERT INTO `Channels` (`Channel_ID`, `Other_Details`) VALUES (14, '292'); +INSERT INTO `Channels` (`Channel_ID`, `Other_Details`) VALUES (15, '177'); +INSERT INTO `Finances` (`Finance_ID`, `Other_Details`) VALUES (1, 'Mutual'); +INSERT INTO `Finances` (`Finance_ID`, `Other_Details`) VALUES (2, 'Good'); +INSERT INTO `Finances` (`Finance_ID`, `Other_Details`) VALUES (3, 'Bad'); +INSERT INTO `Finances` (`Finance_ID`, `Other_Details`) VALUES (4, 'Mutual'); +INSERT INTO `Finances` (`Finance_ID`, `Other_Details`) VALUES (5, 'Bad'); +INSERT INTO `Finances` (`Finance_ID`, `Other_Details`) VALUES (6, 'Good'); +INSERT INTO `Finances` (`Finance_ID`, `Other_Details`) VALUES (7, 'Good'); +INSERT INTO `Finances` (`Finance_ID`, `Other_Details`) VALUES (8, 'Mutual'); +INSERT INTO `Finances` (`Finance_ID`, `Other_Details`) VALUES (9, 'Bad'); +INSERT INTO `Finances` (`Finance_ID`, `Other_Details`) VALUES (10, 'Bad'); +INSERT INTO `Finances` (`Finance_ID`, `Other_Details`) VALUES (11, 'Mutual'); +INSERT INTO `Finances` (`Finance_ID`, `Other_Details`) VALUES (12, 'Mutual'); +INSERT INTO `Finances` (`Finance_ID`, `Other_Details`) VALUES (13, 'Good'); +INSERT INTO `Finances` (`Finance_ID`, `Other_Details`) VALUES (14, 'Good'); +INSERT INTO `Finances` (`Finance_ID`, `Other_Details`) VALUES (15, 'Mutual'); +INSERT INTO `Locations` (`Location_ID`, `Other_Details`) VALUES (1, 'Rowe PLC'); +INSERT INTO `Locations` (`Location_ID`, `Other_Details`) VALUES (2, 'Ebert, Green and Bogisich'); +INSERT INTO `Locations` (`Location_ID`, `Other_Details`) VALUES (3, 'Prohaska LLC'); +INSERT INTO `Locations` (`Location_ID`, `Other_Details`) VALUES (4, 'White, Kassulke and Barrows'); +INSERT INTO `Locations` (`Location_ID`, `Other_Details`) VALUES (5, 'Wintheiser-Sauer'); +INSERT INTO `Locations` (`Location_ID`, `Other_Details`) VALUES (6, 'Morar-Denesik'); +INSERT INTO `Locations` (`Location_ID`, `Other_Details`) VALUES (7, 'Rowe-Stoltenberg'); +INSERT INTO `Locations` (`Location_ID`, `Other_Details`) VALUES (8, 'Price-Lynch'); +INSERT INTO `Locations` (`Location_ID`, `Other_Details`) VALUES (9, 'Ryan-Wyman'); +INSERT INTO `Locations` (`Location_ID`, `Other_Details`) VALUES (10, 'Hilll Ltd'); +INSERT INTO `Locations` (`Location_ID`, `Other_Details`) VALUES (11, 'Fritsch LLC'); +INSERT INTO `Locations` (`Location_ID`, `Other_Details`) VALUES (12, 'Kuvalis-Goodwin'); +INSERT INTO `Locations` (`Location_ID`, `Other_Details`) VALUES (13, 'Sanford Inc'); +INSERT INTO `Locations` (`Location_ID`, `Other_Details`) VALUES (14, 'Waelchi-Wehner'); +INSERT INTO `Locations` (`Location_ID`, `Other_Details`) VALUES (15, 'Daugherty, Nader and Balistreri'); +INSERT INTO `Parties` (`Party_ID`, `Party_Details`) VALUES (3, 'European People''s Party'); +INSERT INTO `Parties` (`Party_ID`, `Party_Details`) VALUES (4, 'European Free Alliance'); +INSERT INTO `Parties` (`Party_ID`, `Party_Details`) VALUES (5, 'European Alliance for Freedom'); +INSERT INTO `Parties` (`Party_ID`, `Party_Details`) VALUES (6, 'European Christian Political Movement'); +INSERT INTO `Parties` (`Party_ID`, `Party_Details`) VALUES (7, 'Movement for a Europe of Nations and Freedom'); +INSERT INTO `Parties` (`Party_ID`, `Party_Details`) VALUES (8, 'Alliance of Liberals and Democrats for Europe'); +INSERT INTO `Parties` (`Party_ID`, `Party_Details`) VALUES (9, 'EUDemocrats'); + +INSERT INTO `Products` (`Product_ID`, `Product_Type_Code`, `Product_Name`, `Product_Price`) VALUES (1, 'Books', 'Business Policy', '1336.2600'); +INSERT INTO `Products` (`Product_ID`, `Product_Type_Code`, `Product_Name`, `Product_Price`) VALUES (3, 'Food', 'Special Dinning', '2894.9400'); +INSERT INTO `Products` (`Product_ID`, `Product_Type_Code`, `Product_Name`, `Product_Price`) VALUES (5, 'Clothes', 'Men suits', '3298.8400'); +INSERT INTO `Products` (`Product_ID`, `Product_Type_Code`, `Product_Name`, `Product_Price`) VALUES (6, 'Electronics', 'TV Equipments', '932.2500'); +INSERT INTO `Products` (`Product_ID`, `Product_Type_Code`, `Product_Name`, `Product_Price`) VALUES (7, 'Books', 'Business Policy B', '3215.6600'); +INSERT INTO `Products` (`Product_ID`, `Product_Type_Code`, `Product_Name`, `Product_Price`) VALUES (10, 'Electronics', 'TV Equipments', '4427.4900'); +INSERT INTO `Products` (`Product_ID`, `Product_Type_Code`, `Product_Name`, `Product_Price`) VALUES (11, 'Electronics', 'Conference Equipments', '3289.4700'); +INSERT INTO `Products` (`Product_ID`, `Product_Type_Code`, `Product_Name`, `Product_Price`) VALUES (18, 'Books', 'Trading Policy', '3228.4900'); +INSERT INTO `Products` (`Product_ID`, `Product_Type_Code`, `Product_Name`, `Product_Price`) VALUES (20, 'Books', 'Trading Policy B', '4343.8300'); +INSERT INTO `Products` (`Product_ID`, `Product_Type_Code`, `Product_Name`, `Product_Price`) VALUES (22, 'Food', 'Dinning', '3574.5600'); +INSERT INTO `Products` (`Product_ID`, `Product_Type_Code`, `Product_Name`, `Product_Price`) VALUES (24, 'Food', 'Dinning', '4895.8600'); +INSERT INTO `Products` (`Product_ID`, `Product_Type_Code`, `Product_Name`, `Product_Price`) VALUES (26, 'Food', 'Dinning', '2339.9700'); +INSERT INTO `Products` (`Product_ID`, `Product_Type_Code`, `Product_Name`, `Product_Price`) VALUES (29, 'Food', 'Special Dinning', '502.1500'); +INSERT INTO `Products` (`Product_ID`, `Product_Type_Code`, `Product_Name`, `Product_Price`) VALUES (34, 'Electronics', 'TV Equipments', '970.7700'); +INSERT INTO `Products` (`Product_ID`, `Product_Type_Code`, `Product_Name`, `Product_Price`) VALUES (45, 'Clothes', 'Men suits', '3541.1700'); + + + +CREATE TABLE Events ( +Event_ID INTEGER NOT NULL , +Address_ID INTEGER, +Channel_ID INTEGER NOT NULL, +Event_Type_Code CHAR(15), +Finance_ID INTEGER NOT NULL, +Location_ID INTEGER NOT NULL, +PRIMARY KEY (Event_ID), +UNIQUE (Event_ID), +FOREIGN KEY (Location_ID) REFERENCES Locations (Location_ID), +FOREIGN KEY (Address_ID) REFERENCES Addresses (Address_ID), +FOREIGN KEY (Finance_ID) REFERENCES Finances (Finance_ID) +); +INSERT INTO `Events` (`Event_ID`, `Address_ID`, `Channel_ID`, `Event_Type_Code`, `Finance_ID`, `Location_ID`) VALUES (1, 3, 12, 'Trade Show', 2, 13); +INSERT INTO `Events` (`Event_ID`, `Address_ID`, `Channel_ID`, `Event_Type_Code`, `Finance_ID`, `Location_ID`) VALUES (2, 15, 13, 'Press Conferenc', 8, 11); +INSERT INTO `Events` (`Event_ID`, `Address_ID`, `Channel_ID`, `Event_Type_Code`, `Finance_ID`, `Location_ID`) VALUES (3, 12, 1, 'Press Conferenc', 12, 6); +INSERT INTO `Events` (`Event_ID`, `Address_ID`, `Channel_ID`, `Event_Type_Code`, `Finance_ID`, `Location_ID`) VALUES (4, 13, 10, 'Ceremonies', 7, 6); +INSERT INTO `Events` (`Event_ID`, `Address_ID`, `Channel_ID`, `Event_Type_Code`, `Finance_ID`, `Location_ID`) VALUES (5, 9, 4, 'Trade Show', 15, 6); +INSERT INTO `Events` (`Event_ID`, `Address_ID`, `Channel_ID`, `Event_Type_Code`, `Finance_ID`, `Location_ID`) VALUES (6, 15, 12, 'Seminar', 15, 9); +INSERT INTO `Events` (`Event_ID`, `Address_ID`, `Channel_ID`, `Event_Type_Code`, `Finance_ID`, `Location_ID`) VALUES (7, 15, 6, 'Trade Show', 13, 15); +INSERT INTO `Events` (`Event_ID`, `Address_ID`, `Channel_ID`, `Event_Type_Code`, `Finance_ID`, `Location_ID`) VALUES (8, 3, 15, 'Trade Show', 1, 6); +INSERT INTO `Events` (`Event_ID`, `Address_ID`, `Channel_ID`, `Event_Type_Code`, `Finance_ID`, `Location_ID`) VALUES (9, 12, 3, 'Press Conferenc', 3, 11); +INSERT INTO `Events` (`Event_ID`, `Address_ID`, `Channel_ID`, `Event_Type_Code`, `Finance_ID`, `Location_ID`) VALUES (10, 15, 10, 'Conference', 7, 12); +INSERT INTO `Events` (`Event_ID`, `Address_ID`, `Channel_ID`, `Event_Type_Code`, `Finance_ID`, `Location_ID`) VALUES (11, 10, 4, 'Trade Show', 2, 8); +INSERT INTO `Events` (`Event_ID`, `Address_ID`, `Channel_ID`, `Event_Type_Code`, `Finance_ID`, `Location_ID`) VALUES (12, 14, 9, 'Trade Show', 14, 7); +INSERT INTO `Events` (`Event_ID`, `Address_ID`, `Channel_ID`, `Event_Type_Code`, `Finance_ID`, `Location_ID`) VALUES (13, 12, 13, 'Trade Show', 12, 12); +INSERT INTO `Events` (`Event_ID`, `Address_ID`, `Channel_ID`, `Event_Type_Code`, `Finance_ID`, `Location_ID`) VALUES (14, 10, 11, 'Seminar', 5, 10); +INSERT INTO `Events` (`Event_ID`, `Address_ID`, `Channel_ID`, `Event_Type_Code`, `Finance_ID`, `Location_ID`) VALUES (15, 2, 2, 'Conference', 10, 5); + +CREATE TABLE Products_in_Events ( +Product_in_Event_ID INTEGER NOT NULL, +Event_ID INTEGER NOT NULL, +Product_ID INTEGER NOT NULL, +PRIMARY KEY (Product_in_Event_ID), +FOREIGN KEY (Event_ID) REFERENCES Events (Event_ID), +FOREIGN KEY (Product_ID) REFERENCES Products (Product_ID) +); +INSERT INTO `Products_in_Events` (`Product_in_Event_ID`, `Event_ID`, `Product_ID`) VALUES (13, 4, 29); +INSERT INTO `Products_in_Events` (`Product_in_Event_ID`, `Event_ID`, `Product_ID`) VALUES (23, 8, 3); +INSERT INTO `Products_in_Events` (`Product_in_Event_ID`, `Event_ID`, `Product_ID`) VALUES (32, 14, 10); +INSERT INTO `Products_in_Events` (`Product_in_Event_ID`, `Event_ID`, `Product_ID`) VALUES (33, 5, 18); +INSERT INTO `Products_in_Events` (`Product_in_Event_ID`, `Event_ID`, `Product_ID`) VALUES (43, 4, 45); +INSERT INTO `Products_in_Events` (`Product_in_Event_ID`, `Event_ID`, `Product_ID`) VALUES (46, 7, 3); +INSERT INTO `Products_in_Events` (`Product_in_Event_ID`, `Event_ID`, `Product_ID`) VALUES (50, 14, 6); +INSERT INTO `Products_in_Events` (`Product_in_Event_ID`, `Event_ID`, `Product_ID`) VALUES (61, 7, 3); +INSERT INTO `Products_in_Events` (`Product_in_Event_ID`, `Event_ID`, `Product_ID`) VALUES (63, 6, 34); +INSERT INTO `Products_in_Events` (`Product_in_Event_ID`, `Event_ID`, `Product_ID`) VALUES (64, 15, 6); +INSERT INTO `Products_in_Events` (`Product_in_Event_ID`, `Event_ID`, `Product_ID`) VALUES (69, 8, 20); +INSERT INTO `Products_in_Events` (`Product_in_Event_ID`, `Event_ID`, `Product_ID`) VALUES (74, 1, 6); +INSERT INTO `Products_in_Events` (`Product_in_Event_ID`, `Event_ID`, `Product_ID`) VALUES (79, 4, 45); +INSERT INTO `Products_in_Events` (`Product_in_Event_ID`, `Event_ID`, `Product_ID`) VALUES (90, 14, 26); +INSERT INTO `Products_in_Events` (`Product_in_Event_ID`, `Event_ID`, `Product_ID`) VALUES (99, 10, 11); + + +CREATE TABLE Parties_in_Events ( +Party_ID INTEGER NOT NULL, +Event_ID INTEGER NOT NULL, +Role_Code CHAR(15), +PRIMARY KEY (Party_ID, Event_ID), +FOREIGN KEY (Party_ID) REFERENCES Parties (Party_ID), +FOREIGN KEY (Event_ID) REFERENCES Events (Event_ID) +); +INSERT INTO `Parties_in_Events` (`Party_ID`, `Event_ID`, `Role_Code`) VALUES (3, 7, 'Organizer'); +INSERT INTO `Parties_in_Events` (`Party_ID`, `Event_ID`, `Role_Code`) VALUES (3, 8, 'Participant'); +INSERT INTO `Parties_in_Events` (`Party_ID`, `Event_ID`, `Role_Code`) VALUES (4, 1, 'Organizer'); +INSERT INTO `Parties_in_Events` (`Party_ID`, `Event_ID`, `Role_Code`) VALUES (4, 3, 'Participant'); +INSERT INTO `Parties_in_Events` (`Party_ID`, `Event_ID`, `Role_Code`) VALUES (4, 8, 'Organizer'); +INSERT INTO `Parties_in_Events` (`Party_ID`, `Event_ID`, `Role_Code`) VALUES (5, 9, 'Participant'); +INSERT INTO `Parties_in_Events` (`Party_ID`, `Event_ID`, `Role_Code`) VALUES (5, 10, 'Participant'); +INSERT INTO `Parties_in_Events` (`Party_ID`, `Event_ID`, `Role_Code`) VALUES (5, 15, 'Organizer'); +INSERT INTO `Parties_in_Events` (`Party_ID`, `Event_ID`, `Role_Code`) VALUES (6, 6, 'Organizer'); +INSERT INTO `Parties_in_Events` (`Party_ID`, `Event_ID`, `Role_Code`) VALUES (6, 12, 'Participant'); +INSERT INTO `Parties_in_Events` (`Party_ID`, `Event_ID`, `Role_Code`) VALUES (6, 13, 'Organizer'); +INSERT INTO `Parties_in_Events` (`Party_ID`, `Event_ID`, `Role_Code`) VALUES (9, 3, 'Participant'); +INSERT INTO `Parties_in_Events` (`Party_ID`, `Event_ID`, `Role_Code`) VALUES (9, 4, 'Participant'); +INSERT INTO `Parties_in_Events` (`Party_ID`, `Event_ID`, `Role_Code`) VALUES (9, 10, 'Organizer'); +INSERT INTO `Parties_in_Events` (`Party_ID`, `Event_ID`, `Role_Code`) VALUES (9, 12, 'Organizer'); + +CREATE TABLE Agreements ( +Document_ID INTEGER NOT NULL , +Event_ID INTEGER NOT NULL, +PRIMARY KEY (Document_ID), +FOREIGN KEY (Event_ID) REFERENCES Events (Event_ID) +); +INSERT INTO `Agreements` (`Document_ID`, `Event_ID`) VALUES (13, 5); +INSERT INTO `Agreements` (`Document_ID`, `Event_ID`) VALUES (9, 6); +INSERT INTO `Agreements` (`Document_ID`, `Event_ID`) VALUES (6, 8); +INSERT INTO `Agreements` (`Document_ID`, `Event_ID`) VALUES (11, 8); +INSERT INTO `Agreements` (`Document_ID`, `Event_ID`) VALUES (4, 9); +INSERT INTO `Agreements` (`Document_ID`, `Event_ID`) VALUES (12, 9); +INSERT INTO `Agreements` (`Document_ID`, `Event_ID`) VALUES (7, 10); +INSERT INTO `Agreements` (`Document_ID`, `Event_ID`) VALUES (5, 11); +INSERT INTO `Agreements` (`Document_ID`, `Event_ID`) VALUES (10, 11); +INSERT INTO `Agreements` (`Document_ID`, `Event_ID`) VALUES (14, 12); +INSERT INTO `Agreements` (`Document_ID`, `Event_ID`) VALUES (1, 13); +INSERT INTO `Agreements` (`Document_ID`, `Event_ID`) VALUES (2, 13); +INSERT INTO `Agreements` (`Document_ID`, `Event_ID`) VALUES (3, 15); +INSERT INTO `Agreements` (`Document_ID`, `Event_ID`) VALUES (8, 15); +INSERT INTO `Agreements` (`Document_ID`, `Event_ID`) VALUES (15, 15); + +CREATE TABLE Assets_in_Events ( +Asset_ID INTEGER NOT NULL, +Event_ID INTEGER NOT NULL, +PRIMARY KEY (Asset_ID, Event_ID), +FOREIGN KEY (Event_ID) REFERENCES Events (Event_ID), +FOREIGN KEY (Event_ID) REFERENCES Events (Event_ID) +); + +INSERT INTO `Assets_in_Events` (`Asset_ID`, `Event_ID`) VALUES (1, 4); +INSERT INTO `Assets_in_Events` (`Asset_ID`, `Event_ID`) VALUES (1, 5); +INSERT INTO `Assets_in_Events` (`Asset_ID`, `Event_ID`) VALUES (1, 9); +INSERT INTO `Assets_in_Events` (`Asset_ID`, `Event_ID`) VALUES (1, 10); +INSERT INTO `Assets_in_Events` (`Asset_ID`, `Event_ID`) VALUES (2, 8); +INSERT INTO `Assets_in_Events` (`Asset_ID`, `Event_ID`) VALUES (2, 14); +INSERT INTO `Assets_in_Events` (`Asset_ID`, `Event_ID`) VALUES (3, 2); +INSERT INTO `Assets_in_Events` (`Asset_ID`, `Event_ID`) VALUES (3, 5); +INSERT INTO `Assets_in_Events` (`Asset_ID`, `Event_ID`) VALUES (3, 8); +INSERT INTO `Assets_in_Events` (`Asset_ID`, `Event_ID`) VALUES (3, 9); +INSERT INTO `Assets_in_Events` (`Asset_ID`, `Event_ID`) VALUES (3, 10); +INSERT INTO `Assets_in_Events` (`Asset_ID`, `Event_ID`) VALUES (3, 12); + diff --git a/database/solvency_ii/solvency_ii.sqlite b/database/solvency_ii/solvency_ii.sqlite new file mode 100644 index 0000000000000000000000000000000000000000..ea0ef4795c1835d95ca579c3178e2a8e61e66c4b Binary files /dev/null and b/database/solvency_ii/solvency_ii.sqlite differ diff --git a/database/sports_competition/schema.sql b/database/sports_competition/schema.sql new file mode 100644 index 0000000000000000000000000000000000000000..90e1cbc76d5e30721f1f0e9eab3bc4006f954cc8 --- /dev/null +++ b/database/sports_competition/schema.sql @@ -0,0 +1,104 @@ + +PRAGMA foreign_keys = ON; + +CREATE TABLE "club" ( +"Club_ID" int, +"name" text, +"Region" text, +"Start_year" text, +PRIMARY KEY ("Club_ID") +); + +INSERT INTO "club" VALUES (1,"AIB","USA","2009"); +INSERT INTO "club" VALUES (2,"BK Slide","UK","1998"); +INSERT INTO "club" VALUES (3,"IFG","China","2005"); +INSERT INTO "club" VALUES (4,"ASC","Japan","2001"); +INSERT INTO "club" VALUES (5,"HGS2","England","2000"); +INSERT INTO "club" VALUES (6,"HSBIF","Brazil","2011"); + + +CREATE TABLE "club_rank" ( +"Rank" real, +"Club_ID" int, +"Gold" real, +"Silver" real, +"Bronze" real, +"Total" real, +PRIMARY KEY ("Rank","Club_ID") +FOREIGN KEY (`Club_ID`) REFERENCES `club`(`Club_ID`) +); + +CREATE TABLE "player" ( +"Player_ID" int, +"name" text, +"Position" text, +"Club_ID" int, +"Apps" real, +"Tries" real, +"Goals" text, +"Points" real, +PRIMARY KEY ("Player_ID"), +FOREIGN KEY (`Club_ID`) REFERENCES `club`(`Club_ID`) +); + +CREATE TABLE "competition" ( +"Competition_ID" int, +"Year" real, +"Competition_type" text, +"Country" text, +PRIMARY KEY ("Competition_ID") +); + +INSERT INTO "club_rank" VALUES ("1",2,"11","11","9","31"); +INSERT INTO "club_rank" VALUES ("2",3,"8","7","6","21"); +INSERT INTO "club_rank" VALUES ("3",1,"7","4","2","13"); +INSERT INTO "club_rank" VALUES ("4",4,"4","2","6","12"); +INSERT INTO "club_rank" VALUES ("5",5,"3","3","0","6"); +INSERT INTO "club_rank" VALUES ("6",6,"2","1","0","3"); + +INSERT INTO "player" VALUES (1,"Michael Platt","Full Back",1,"20","5","0","20"); +INSERT INTO "player" VALUES (2,"Dave Halley","Right Wing",2,"23","9","0","36"); +INSERT INTO "player" VALUES (3,"James Evans","Right Centre",1,"30","9","0","36"); +INSERT INTO "player" VALUES (4,"Tame Tupou","Left Wing",2,"10","3","0","12"); +INSERT INTO "player" VALUES (5,"Iestyn Harris","Stand Off",4,"27","3","50/60","110"); +INSERT INTO "player" VALUES (6,"Paul Deacon (c)","Scrum Half",4,"20","3","90/106","188"); +INSERT INTO "player" VALUES (7,"Joe Vagana","Prop",5,"19","1","0/1","4"); +INSERT INTO "player" VALUES (8,"Terry Newton","Hooker",5,"26","9","0","36"); +INSERT INTO "player" VALUES (9,"Andy Lynch","Prop",2,"29","5","0","20"); +INSERT INTO "player" VALUES (10,"David Solomona","Second Row",2,"24","5","0","20"); +INSERT INTO "player" VALUES (11,"Glenn Morrison (vc)","Second Row",2,"14","6","0","24"); +INSERT INTO "player" VALUES (12,"Jamie Langley (vc)","Loose Forward",2,"28","2","0","8"); +INSERT INTO "player" VALUES (13,"Chris Feather","Prop",3,"13","1","0","4"); +INSERT INTO "player" VALUES (14,"Matt Cook","Second Row",4,"17","4","0","16"); +INSERT INTO "player" VALUES (15,"Sam Burgess","Loose Forward",4,"23","8","0","32"); + +INSERT INTO "competition" VALUES (1,"2006","Friendly","Italy"); +INSERT INTO "competition" VALUES (2,"2006","Friendly","Spain"); +INSERT INTO "competition" VALUES (3,"2006","Friendly","Australia"); +INSERT INTO "competition" VALUES (4,"2006","Friendly","Russia"); +INSERT INTO "competition" VALUES (5,"2007","Friendly","Russia"); +INSERT INTO "competition" VALUES (6,"2007","Friendly","Australia"); +INSERT INTO "competition" VALUES (7,"2007","Tournament","Russia"); +INSERT INTO "competition" VALUES (8,"2007","Tournament","Slovenia"); +INSERT INTO "competition" VALUES (9,"2007","Tournament","Slovenia"); +INSERT INTO "competition" VALUES (10,"2007","Friendly","Italy"); +INSERT INTO "competition" VALUES (11,"2007","Friendly","Ireland"); + +CREATE TABLE "competition_result" ( +"Competition_ID" int, +"Club_ID_1" int, +"Club_ID_2" int, +"Score" text, +PRIMARY KEY ("Competition_ID","Club_ID_1","Club_ID_2"), +FOREIGN KEY (`Club_ID_1`) REFERENCES `club`(`Club_ID`), +FOREIGN KEY (`Club_ID_2`) REFERENCES `club`(`Club_ID`), +FOREIGN KEY (`Competition_ID`) REFERENCES `competition`(`Competition_ID`) +); + + +INSERT INTO "competition_result" VALUES (1,1,2,"11:10"); +INSERT INTO "competition_result" VALUES (2,3,2,"25:2"); +INSERT INTO "competition_result" VALUES (10,4,2,"13:10"); +INSERT INTO "competition_result" VALUES (4,1,2,"12:9"); +INSERT INTO "competition_result" VALUES (5,1,4,"10:3"); +INSERT INTO "competition_result" VALUES (6,1,6,"10:11"); diff --git a/database/sports_competition/sports_competition.sqlite b/database/sports_competition/sports_competition.sqlite new file mode 100644 index 0000000000000000000000000000000000000000..eac7009dbe5daee77c4b05cf468fc3fda62398bb Binary files /dev/null and b/database/sports_competition/sports_competition.sqlite differ diff --git a/database/station_weather/schema.sql b/database/station_weather/schema.sql new file mode 100644 index 0000000000000000000000000000000000000000..bf54c54bcfbba9c4fe67d4184535ce88202ab619 --- /dev/null +++ b/database/station_weather/schema.sql @@ -0,0 +1,100 @@ +PRAGMA foreign_keys = ON; + +CREATE TABLE "train" ( + "id" int, + "train_number" int, + "name" text, + "origin" text, + "destination" text, + "time" text, + "interval" text, + primary key ("id") +); + +CREATE TABLE "station" ( + "id" int, + "network_name" text, + "services" text, + "local_authority" text, + primary key ("id") +); + +CREATE TABLE "route" ( + "train_id" int, + "station_id" int, + primary key ("train_id", "station_id"), + foreign key ("train_id") references `train`("id"), + foreign key ("station_id") references `station`("id") +); + +CREATE TABLE "weekly_weather" ( + "station_id" int, + "day_of_week" text, + "high_temperature" int, + "low_temperature" int, + "precipitation" real, + "wind_speed_mph" int, + primary key ("station_id", "day_of_week"), + foreign key ("station_id") references "station"("id") +); + +INSERT INTO "train" VALUES ("1","16724","Ananthapuri Express","Trivandrum","Chennai","17:15","Daily"); +INSERT INTO "train" VALUES ("2","16127","Guruvayur Express","Chennai","Guruvayur","22:10","Daily"); +INSERT INTO "train" VALUES ("3","16128","Guruvayur Express","Guruvayur","Chennai","4:49","Daily"); +INSERT INTO "train" VALUES ("4","16723","Ananthapuri Express","Chennai","Trivandrum","11:35","Daily"); +INSERT INTO "train" VALUES ("5","16382","Jayanthi Janatha Express","Kanniyakumari","Mumbai","06:30","Daily"); +INSERT INTO "train" VALUES ("6","16525","Island Express","Kanniyakumari","Bangalore","11:15","Daily"); +INSERT INTO "train" VALUES ("7","56701","Madurai Fast Passenger","Quilon","Madurai","21:49","Daily"); +INSERT INTO "train" VALUES ("8","56700","Quilon Fast Passenger","Madurai","Quilon Junction","04:55","Daily"); +INSERT INTO "train" VALUES ("9","16526","Island Express","Bangalore","Kanniyakumari","16:59","Daily"); +INSERT INTO "train" VALUES ("10","16381","Jayanthi Janatha Express","Mumbai","Kanniyakumari","10:38","Daily"); +INSERT INTO "train" VALUES ("11","16650","Parasuram Express","Nagercoil","Mangalore","04:20","Daily"); + +INSERT INTO "station" VALUES (1, "Amersham","Metropolitan line and Chiltern Railways","Chiltern"); +INSERT INTO "station" VALUES (2, "Bushey","London Overground and London Midland","Watford"); +INSERT INTO "station" VALUES (3, "Brentwood","Greater Anglia","Brentwood"); +INSERT INTO "station" VALUES (4, "Broxbourne","Greater Anglia","Broxbourne"); +INSERT INTO "station" VALUES (5, "Carpenders Park","London Overground","Three Rivers"); +INSERT INTO "station" VALUES (6, "Chafford Hundred","c2c","Thurrock"); +INSERT INTO "station" VALUES (7, "Chalfont & Latimer","Metropolitan line and Chiltern Railways","Chiltern"); +INSERT INTO "station" VALUES (8, "Chesham","Metropolitan line","Chiltern"); +INSERT INTO "station" VALUES (9, "Cheshunt","Greater Anglia","Broxbourne"); +INSERT INTO "station" VALUES (10, "Chorleywood","Metropolitan line and Chiltern Railways","Three Rivers"); +INSERT INTO "station" VALUES (11, "Croxley","Metropolitan line","Three Rivers"); + +INSERT INTO "weekly_weather" VALUES (1, "Monday", 59, 54, "90", 13); +INSERT INTO "weekly_weather" VALUES (1, "Tuesday", 66, 55, "20", 12); +INSERT INTO "weekly_weather" VALUES (1, "Wednesday", 60, 52, "10", 14); +INSERT INTO "weekly_weather" VALUES (1, "Thursday", 55, 50, "30", 13); +INSERT INTO "weekly_weather" VALUES (1, "Friday", 55, 52, "50", 17); +INSERT INTO "weekly_weather" VALUES (1, "Saturday", 55, 52, "50", 14); +INSERT INTO "weekly_weather" VALUES (1, "Sunday", 54, 52, "50", 12); +INSERT INTO "weekly_weather" VALUES (2, "Monday", 58, 54, "60", 20); +INSERT INTO "weekly_weather" VALUES (2, "Tuesday", 57, 54, "80", 22); +INSERT INTO "weekly_weather" VALUES (2, "Wednesday", 59, 55, "90", 23); +INSERT INTO "weekly_weather" VALUES (2, "Thursday", 59, 56, "70", 24); +INSERT INTO "weekly_weather" VALUES (3, "Monday", 49, 46, "30", 10); +INSERT INTO "weekly_weather" VALUES (3, "Tuesday", 50, 49, "50", 9); +INSERT INTO "weekly_weather" VALUES (3, "Wednesday", 55, 54, "60", 8); +INSERT INTO "weekly_weather" VALUES (4, "Monday", 58, 54, "70", 7); +INSERT INTO "weekly_weather" VALUES (10, "Tuesday", 59, 52, "90", 22); + +INSERT INTO "route" VALUES (1,1); +INSERT INTO "route" VALUES (1,2); +INSERT INTO "route" VALUES (1,3); +INSERT INTO "route" VALUES (2,1); +INSERT INTO "route" VALUES (2,3); +INSERT INTO "route" VALUES (2,7); +INSERT INTO "route" VALUES (3,4); +INSERT INTO "route" VALUES (4,6); +INSERT INTO "route" VALUES (4,2); +INSERT INTO "route" VALUES (5,1); +INSERT INTO "route" VALUES (6,5); +INSERT INTO "route" VALUES (7,4); +INSERT INTO "route" VALUES (7,5); +INSERT INTO "route" VALUES (7,8); +INSERT INTO "route" VALUES (8,8); +INSERT INTO "route" VALUES (9,7); +INSERT INTO "route" VALUES (9,8); +INSERT INTO "route" VALUES (10,9); + diff --git a/database/station_weather/station_weather.sqlite b/database/station_weather/station_weather.sqlite new file mode 100644 index 0000000000000000000000000000000000000000..49d58fc5cccb40f21ee9fa6ce4306e8e098c0e89 Binary files /dev/null and b/database/station_weather/station_weather.sqlite differ diff --git a/database/store_1/schema.sql b/database/store_1/schema.sql new file mode 100644 index 0000000000000000000000000000000000000000..81e4009a514e8098938792e45b0377cbbbbbbf94 --- /dev/null +++ b/database/store_1/schema.sql @@ -0,0 +1,15828 @@ +DROP TABLE IF EXISTS albums; + +DROP TABLE IF EXISTS artists; + +DROP TABLE IF EXISTS customers; + +DROP TABLE IF EXISTS employees; + +DROP TABLE IF EXISTS genres; + +DROP TABLE IF EXISTS invoices; + +DROP TABLE IF EXISTS invoice_lines; + +DROP TABLE IF EXISTS media_types; + +DROP TABLE IF EXISTS playlists; + +DROP TABLE IF EXISTS playlist_tracks; + +DROP TABLE IF EXISTS tracks; + + +/******************************************************************************* + Create Tables +********************************************************************************/ +CREATE TABLE artists +( + id INTEGER PRIMARY KEY AUTOINCREMENT, + name VARCHAR(120) +); + +CREATE TABLE albums +( + id INTEGER PRIMARY KEY AUTOINCREMENT, + title VARCHAR(160) NOT NULL, + artist_id INTEGER NOT NULL, + FOREIGN KEY (artist_id) REFERENCES artists (id) + ON DELETE NO ACTION ON UPDATE NO ACTION +); + +CREATE TABLE employees +( + id INTEGER PRIMARY KEY AUTOINCREMENT, + last_name VARCHAR(20) NOT NULL, + first_name VARCHAR(20) NOT NULL, + title VARCHAR(30), + reports_to INTEGER, + birth_date TIMESTAMP, + hire_date TIMESTAMP, + address VARCHAR(70), + city VARCHAR(40), + state VARCHAR(40), + country VARCHAR(40), + postal_code VARCHAR(10), + phone VARCHAR(24), + fax VARCHAR(24), + email VARCHAR(60), + FOREIGN KEY (reports_to) REFERENCES employees (id) + ON DELETE NO ACTION ON UPDATE NO ACTION +); + +CREATE TABLE customers +( + id INTEGER PRIMARY KEY AUTOINCREMENT, + first_name VARCHAR(40) NOT NULL, + last_name VARCHAR(20) NOT NULL, + company VARCHAR(80), + address VARCHAR(70), + city VARCHAR(40), + state VARCHAR(40), + country VARCHAR(40), + postal_code VARCHAR(10), + phone VARCHAR(24), + fax VARCHAR(24), + email VARCHAR(60) NOT NULL, + support_rep_id INTEGER, + FOREIGN KEY (support_rep_id) REFERENCES employees (id) + ON DELETE NO ACTION ON UPDATE NO ACTION +); + +CREATE TABLE genres +( + id INTEGER PRIMARY KEY AUTOINCREMENT, + name VARCHAR(120) +); + +CREATE TABLE invoices +( + id INTEGER PRIMARY KEY AUTOINCREMENT, + customer_id INTEGER NOT NULL, + invoice_date TIMESTAMP NOT NULL, + billing_address VARCHAR(70), + billing_city VARCHAR(40), + billing_state VARCHAR(40), + billing_country VARCHAR(40), + billing_postal_code VARCHAR(10), + total NUMERIC(10,2) NOT NULL, + FOREIGN KEY (customer_id) REFERENCES customers (id) + ON DELETE NO ACTION ON UPDATE NO ACTION +); + +CREATE TABLE media_types +( + id INTEGER PRIMARY KEY AUTOINCREMENT, + name VARCHAR(120) +); + +CREATE TABLE tracks +( + id INTEGER PRIMARY KEY AUTOINCREMENT, + name VARCHAR(200) NOT NULL, + album_id INTEGER, + media_type_id INTEGER NOT NULL, + genre_id INTEGER, + composer VARCHAR(220), + milliseconds INTEGER NOT NULL, + bytes INTEGER, + unit_price NUMERIC(10,2) NOT NULL, + FOREIGN KEY (album_id) REFERENCES albums (id) + ON DELETE NO ACTION ON UPDATE NO ACTION, + FOREIGN KEY (genre_id) REFERENCES genres (id) + ON DELETE NO ACTION ON UPDATE NO ACTION, + FOREIGN KEY (media_type_id) REFERENCES media_types (id) + ON DELETE NO ACTION ON UPDATE NO ACTION +); + +CREATE TABLE invoice_lines +( + id INTEGER PRIMARY KEY AUTOINCREMENT, + invoice_id INTEGER NOT NULL, + track_id INTEGER NOT NULL, + unit_price NUMERIC(10,2) NOT NULL, + quantity INTEGER NOT NULL, + FOREIGN KEY (invoice_id) REFERENCES invoices (id) + ON DELETE NO ACTION ON UPDATE NO ACTION, + FOREIGN KEY (track_id) REFERENCES tracks (id) + ON DELETE NO ACTION ON UPDATE NO ACTION +); + +CREATE TABLE playlists +( + id INTEGER PRIMARY KEY AUTOINCREMENT, + name VARCHAR(120) +); + +CREATE TABLE playlist_tracks +( + playlist_id INTEGER NOT NULL, + track_id INTEGER NOT NULL, + CONSTRAINT PK_PlaylistTrack PRIMARY KEY (playlist_id, track_id), + FOREIGN KEY (playlist_id) REFERENCES playlists (id) + ON DELETE NO ACTION ON UPDATE NO ACTION, + FOREIGN KEY (track_id) REFERENCES tracks (id) + ON DELETE NO ACTION ON UPDATE NO ACTION +); + + +/******************************************************************************* + Create Primary Key Unique Indexes +********************************************************************************/ +CREATE UNIQUE INDEX index_album_on_id ON albums(id); + +CREATE UNIQUE INDEX index_artist_on_id ON artists(id); + +CREATE UNIQUE INDEX index_customer_on_id ON customers(id); + +CREATE UNIQUE INDEX index_employee_on_id ON employees(id); + +CREATE UNIQUE INDEX index_genre_on_id ON genres(id); + +CREATE UNIQUE INDEX index_invoice_on_id ON invoices(id); + +CREATE UNIQUE INDEX index_invoice_line_on_id ON invoice_lines(id); + +CREATE UNIQUE INDEX index_media_type_on_id ON media_types(id); + +CREATE UNIQUE INDEX index_playlist_on_id ON playlists(id); + +CREATE UNIQUE INDEX index_playlist_track_on_id ON playlist_tracks(playlist_id, track_id); + +CREATE UNIQUE INDEX index_track_on_id ON tracks(id); + + +/******************************************************************************* + Create Foreign Keys +********************************************************************************/ +CREATE INDEX index_album_on_artist_id ON albums (artist_id); + +CREATE INDEX index_customers_on_support_rep_id ON customers (support_rep_id); + +CREATE INDEX index_employees_on_reports_to ON employees (reports_to); + +CREATE INDEX index_invoices_on_customer_id ON invoices (customer_id); + +CREATE INDEX index_invoice_lines_on_invoice_id ON invoice_lines (invoice_id); + +CREATE INDEX index_invoice_lines_on_track_id ON invoice_lines (track_id); + +CREATE INDEX index_playlist_tracks_on_track_id ON playlist_tracks (track_id); + +CREATE INDEX index_tracks_on_album_id ON tracks (album_id); + +CREATE INDEX index_track_on_genre_id ON tracks (genre_id); + +CREATE INDEX index_track_on_media_type_id ON tracks (media_type_id); + + +/******************************************************************************* + Populate Tables +********************************************************************************/ +INSERT INTO genres (name) VALUES ('Rock'); +INSERT INTO genres (name) VALUES ('Jazz'); +INSERT INTO genres (name) VALUES ('Metal'); +INSERT INTO genres (name) VALUES ('Alternative & Punk'); +INSERT INTO genres (name) VALUES ('Rock And Roll'); +INSERT INTO genres (name) VALUES ('Blues'); +INSERT INTO genres (name) VALUES ('Latin'); +INSERT INTO genres (name) VALUES ('Reggae'); +INSERT INTO genres (name) VALUES ('Pop'); +INSERT INTO genres (name) VALUES ('Soundtrack'); +INSERT INTO genres (name) VALUES ('Bossa Nova'); +INSERT INTO genres (name) VALUES ('Easy Listening'); +INSERT INTO genres (name) VALUES ('Heavy Metal'); +INSERT INTO genres (name) VALUES ('R&B/Soul'); +INSERT INTO genres (name) VALUES ('Electronica/Dance'); +INSERT INTO genres (name) VALUES ('World'); +INSERT INTO genres (name) VALUES ('Hip Hop/Rap'); +INSERT INTO genres (name) VALUES ('Science Fiction'); +INSERT INTO genres (name) VALUES ('TV Shows'); +INSERT INTO genres (name) VALUES ('Sci Fi & Fantasy'); +INSERT INTO genres (name) VALUES ('Drama'); +INSERT INTO genres (name) VALUES ('Comedy'); +INSERT INTO genres (name) VALUES ('Alternative'); +INSERT INTO genres (name) VALUES ('Classical'); +INSERT INTO genres (name) VALUES ('Opera'); + +INSERT INTO media_types (name) VALUES ('MPEG audio file'); +INSERT INTO media_types (name) VALUES ('Protected AAC audio file'); +INSERT INTO media_types (name) VALUES ('Protected MPEG-4 video file'); +INSERT INTO media_types (name) VALUES ('Purchased AAC audio file'); +INSERT INTO media_types (name) VALUES ('AAC audio file'); + +INSERT INTO artists (name) VALUES ('AC/DC'); +INSERT INTO artists (name) VALUES ('Accept'); +INSERT INTO artists (name) VALUES ('Aerosmith'); +INSERT INTO artists (name) VALUES ('Alanis Morissette'); +INSERT INTO artists (name) VALUES ('Alice In Chains'); +INSERT INTO artists (name) VALUES ('Antônio Carlos Jobim'); +INSERT INTO artists (name) VALUES ('Apocalyptica'); +INSERT INTO artists (name) VALUES ('Audioslave'); +INSERT INTO artists (name) VALUES ('BackBeat'); +INSERT INTO artists (name) VALUES ('Billy Cobham'); +INSERT INTO artists (name) VALUES ('Black Label Society'); +INSERT INTO artists (name) VALUES ('Black Sabbath'); +INSERT INTO artists (name) VALUES ('Body Count'); +INSERT INTO artists (name) VALUES ('Bruce Dickinson'); +INSERT INTO artists (name) VALUES ('Buddy Guy'); +INSERT INTO artists (name) VALUES ('Caetano Veloso'); +INSERT INTO artists (name) VALUES ('Chico Buarque'); +INSERT INTO artists (name) VALUES ('Chico Science & Nação Zumbi'); +INSERT INTO artists (name) VALUES ('Cidade Negra'); +INSERT INTO artists (name) VALUES ('Cláudio Zoli'); +INSERT INTO artists (name) VALUES ('Various Artists'); +INSERT INTO artists (name) VALUES ('Led Zeppelin'); +INSERT INTO artists (name) VALUES ('Frank Zappa & Captain Beefheart'); +INSERT INTO artists (name) VALUES ('Marcos Valle'); +INSERT INTO artists (name) VALUES ('Milton Nascimento & Bebeto'); +INSERT INTO artists (name) VALUES ('Azymuth'); +INSERT INTO artists (name) VALUES ('Gilberto Gil'); +INSERT INTO artists (name) VALUES ('João Gilberto'); +INSERT INTO artists (name) VALUES ('Bebel Gilberto'); +INSERT INTO artists (name) VALUES ('Jorge Vercilo'); +INSERT INTO artists (name) VALUES ('Baby Consuelo'); +INSERT INTO artists (name) VALUES ('Ney Matogrosso'); +INSERT INTO artists (name) VALUES ('Luiz Melodia'); +INSERT INTO artists (name) VALUES ('Nando Reis'); +INSERT INTO artists (name) VALUES ('Pedro Luís & A Parede'); +INSERT INTO artists (name) VALUES ('O Rappa'); +INSERT INTO artists (name) VALUES ('Ed Motta'); +INSERT INTO artists (name) VALUES ('Banda Black Rio'); +INSERT INTO artists (name) VALUES ('Fernanda Porto'); +INSERT INTO artists (name) VALUES ('Os Cariocas'); +INSERT INTO artists (name) VALUES ('Elis Regina'); +INSERT INTO artists (name) VALUES ('Milton Nascimento'); +INSERT INTO artists (name) VALUES ('A Cor Do Som'); +INSERT INTO artists (name) VALUES ('Kid Abelha'); +INSERT INTO artists (name) VALUES ('Sandra De Sá'); +INSERT INTO artists (name) VALUES ('Jorge Ben'); +INSERT INTO artists (name) VALUES ('Hermeto Pascoal'); +INSERT INTO artists (name) VALUES ('Barão Vermelho'); +INSERT INTO artists (name) VALUES ('Edson, DJ Marky & DJ Patife Featuring Fernanda Porto'); +INSERT INTO artists (name) VALUES ('Metallica'); +INSERT INTO artists (name) VALUES ('Queen'); +INSERT INTO artists (name) VALUES ('Kiss'); +INSERT INTO artists (name) VALUES ('Spyro Gyra'); +INSERT INTO artists (name) VALUES ('Green Day'); +INSERT INTO artists (name) VALUES ('David Coverdale'); +INSERT INTO artists (name) VALUES ('Gonzaguinha'); +INSERT INTO artists (name) VALUES ('Os Mutantes'); +INSERT INTO artists (name) VALUES ('Deep Purple'); +INSERT INTO artists (name) VALUES ('Santana'); +INSERT INTO artists (name) VALUES ('Santana Feat. Dave Matthews'); +INSERT INTO artists (name) VALUES ('Santana Feat. Everlast'); +INSERT INTO artists (name) VALUES ('Santana Feat. Rob Thomas'); +INSERT INTO artists (name) VALUES ('Santana Feat. Lauryn Hill & Cee-Lo'); +INSERT INTO artists (name) VALUES ('Santana Feat. The Project G&B'); +INSERT INTO artists (name) VALUES ('Santana Feat. Maná'); +INSERT INTO artists (name) VALUES ('Santana Feat. Eagle-Eye Cherry'); +INSERT INTO artists (name) VALUES ('Santana Feat. Eric Clapton'); +INSERT INTO artists (name) VALUES ('Miles Davis'); +INSERT INTO artists (name) VALUES ('Gene Krupa'); +INSERT INTO artists (name) VALUES ('Toquinho & Vinícius'); +INSERT INTO artists (name) VALUES ('Vinícius De Moraes & Baden Powell'); +INSERT INTO artists (name) VALUES ('Vinícius De Moraes'); +INSERT INTO artists (name) VALUES ('Vinícius E Qurteto Em Cy'); +INSERT INTO artists (name) VALUES ('Vinícius E Odette Lara'); +INSERT INTO artists (name) VALUES ('Vinicius, Toquinho & Quarteto Em Cy'); +INSERT INTO artists (name) VALUES ('Creedence Clearwater Revival'); +INSERT INTO artists (name) VALUES ('Cássia Eller'); +INSERT INTO artists (name) VALUES ('Def Leppard'); +INSERT INTO artists (name) VALUES ('Dennis Chambers'); +INSERT INTO artists (name) VALUES ('Djavan'); +INSERT INTO artists (name) VALUES ('Eric Clapton'); +INSERT INTO artists (name) VALUES ('Faith No More'); +INSERT INTO artists (name) VALUES ('Falamansa'); +INSERT INTO artists (name) VALUES ('Foo Fighters'); +INSERT INTO artists (name) VALUES ('Frank Sinatra'); +INSERT INTO artists (name) VALUES ('Funk Como Le Gusta'); +INSERT INTO artists (name) VALUES ('Godsmack'); +INSERT INTO artists (name) VALUES ('Guns N'' Roses'); +INSERT INTO artists (name) VALUES ('Incognito'); +INSERT INTO artists (name) VALUES ('Iron Maiden'); +INSERT INTO artists (name) VALUES ('James Brown'); +INSERT INTO artists (name) VALUES ('Jamiroquai'); +INSERT INTO artists (name) VALUES ('JET'); +INSERT INTO artists (name) VALUES ('Jimi Hendrix'); +INSERT INTO artists (name) VALUES ('Joe Satriani'); +INSERT INTO artists (name) VALUES ('Jota Quest'); +INSERT INTO artists (name) VALUES ('João Suplicy'); +INSERT INTO artists (name) VALUES ('Judas Priest'); +INSERT INTO artists (name) VALUES ('Legião Urbana'); +INSERT INTO artists (name) VALUES ('Lenny Kravitz'); +INSERT INTO artists (name) VALUES ('Lulu Santos'); +INSERT INTO artists (name) VALUES ('Marillion'); +INSERT INTO artists (name) VALUES ('Marisa Monte'); +INSERT INTO artists (name) VALUES ('Marvin Gaye'); +INSERT INTO artists (name) VALUES ('Men At Work'); +INSERT INTO artists (name) VALUES ('Motörhead'); +INSERT INTO artists (name) VALUES ('Motörhead & Girlschool'); +INSERT INTO artists (name) VALUES ('Mônica Marianno'); +INSERT INTO artists (name) VALUES ('Mötley Crüe'); +INSERT INTO artists (name) VALUES ('Nirvana'); +INSERT INTO artists (name) VALUES ('O Terço'); +INSERT INTO artists (name) VALUES ('Olodum'); +INSERT INTO artists (name) VALUES ('Os Paralamas Do Sucesso'); +INSERT INTO artists (name) VALUES ('Ozzy Osbourne'); +INSERT INTO artists (name) VALUES ('Page & Plant'); +INSERT INTO artists (name) VALUES ('Passengers'); +INSERT INTO artists (name) VALUES ('Paul D''Ianno'); +INSERT INTO artists (name) VALUES ('Pearl Jam'); +INSERT INTO artists (name) VALUES ('Peter Tosh'); +INSERT INTO artists (name) VALUES ('Pink Floyd'); +INSERT INTO artists (name) VALUES ('Planet Hemp'); +INSERT INTO artists (name) VALUES ('R.E.M. Feat. Kate Pearson'); +INSERT INTO artists (name) VALUES ('R.E.M. Feat. KRS-One'); +INSERT INTO artists (name) VALUES ('R.E.M.'); +INSERT INTO artists (name) VALUES ('Raimundos'); +INSERT INTO artists (name) VALUES ('Raul Seixas'); +INSERT INTO artists (name) VALUES ('Red Hot Chili Peppers'); +INSERT INTO artists (name) VALUES ('Rush'); +INSERT INTO artists (name) VALUES ('Simply Red'); +INSERT INTO artists (name) VALUES ('Skank'); +INSERT INTO artists (name) VALUES ('Smashing Pumpkins'); +INSERT INTO artists (name) VALUES ('Soundgarden'); +INSERT INTO artists (name) VALUES ('Stevie Ray Vaughan & Double Trouble'); +INSERT INTO artists (name) VALUES ('Stone Temple Pilots'); +INSERT INTO artists (name) VALUES ('System Of A Down'); +INSERT INTO artists (name) VALUES ('Terry Bozzio, Tony Levin & Steve Stevens'); +INSERT INTO artists (name) VALUES ('The Black Crowes'); +INSERT INTO artists (name) VALUES ('The Clash'); +INSERT INTO artists (name) VALUES ('The Cult'); +INSERT INTO artists (name) VALUES ('The Doors'); +INSERT INTO artists (name) VALUES ('The Police'); +INSERT INTO artists (name) VALUES ('The Rolling Stones'); +INSERT INTO artists (name) VALUES ('The Tea Party'); +INSERT INTO artists (name) VALUES ('The Who'); +INSERT INTO artists (name) VALUES ('Tim Maia'); +INSERT INTO artists (name) VALUES ('Titãs'); +INSERT INTO artists (name) VALUES ('Battlestar Galactica'); +INSERT INTO artists (name) VALUES ('Heroes'); +INSERT INTO artists (name) VALUES ('Lost'); +INSERT INTO artists (name) VALUES ('U2'); +INSERT INTO artists (name) VALUES ('UB40'); +INSERT INTO artists (name) VALUES ('Van Halen'); +INSERT INTO artists (name) VALUES ('Velvet Revolver'); +INSERT INTO artists (name) VALUES ('Whitesnake'); +INSERT INTO artists (name) VALUES ('Zeca Pagodinho'); +INSERT INTO artists (name) VALUES ('The Office'); +INSERT INTO artists (name) VALUES ('Dread Zeppelin'); +INSERT INTO artists (name) VALUES ('Battlestar Galactica (Classic)'); +INSERT INTO artists (name) VALUES ('Aquaman'); +INSERT INTO artists (name) VALUES ('Christina Aguilera featuring BigElf'); +INSERT INTO artists (name) VALUES ('Aerosmith & Sierra Leone''s Refugee Allstars'); +INSERT INTO artists (name) VALUES ('Los Lonely Boys'); +INSERT INTO artists (name) VALUES ('Corinne Bailey Rae'); +INSERT INTO artists (name) VALUES ('Dhani Harrison & Jakob Dylan'); +INSERT INTO artists (name) VALUES ('Jackson Browne'); +INSERT INTO artists (name) VALUES ('Avril Lavigne'); +INSERT INTO artists (name) VALUES ('Big & Rich'); +INSERT INTO artists (name) VALUES ('Youssou N''Dour'); +INSERT INTO artists (name) VALUES ('Black Eyed Peas'); +INSERT INTO artists (name) VALUES ('Jack Johnson'); +INSERT INTO artists (name) VALUES ('Ben Harper'); +INSERT INTO artists (name) VALUES ('Snow Patrol'); +INSERT INTO artists (name) VALUES ('Matisyahu'); +INSERT INTO artists (name) VALUES ('The Postal Service'); +INSERT INTO artists (name) VALUES ('Jaguares'); +INSERT INTO artists (name) VALUES ('The Flaming Lips'); +INSERT INTO artists (name) VALUES ('Jack''s Mannequin & Mick Fleetwood'); +INSERT INTO artists (name) VALUES ('Regina Spektor'); +INSERT INTO artists (name) VALUES ('Scorpions'); +INSERT INTO artists (name) VALUES ('House Of Pain'); +INSERT INTO artists (name) VALUES ('Xis'); +INSERT INTO artists (name) VALUES ('Nega Gizza'); +INSERT INTO artists (name) VALUES ('Gustavo & Andres Veiga & Salazar'); +INSERT INTO artists (name) VALUES ('Rodox'); +INSERT INTO artists (name) VALUES ('Charlie Brown Jr.'); +INSERT INTO artists (name) VALUES ('Pedro Luís E A Parede'); +INSERT INTO artists (name) VALUES ('Los Hermanos'); +INSERT INTO artists (name) VALUES ('Mundo Livre S/A'); +INSERT INTO artists (name) VALUES ('Otto'); +INSERT INTO artists (name) VALUES ('Instituto'); +INSERT INTO artists (name) VALUES ('Nação Zumbi'); +INSERT INTO artists (name) VALUES ('DJ Dolores & Orchestra Santa Massa'); +INSERT INTO artists (name) VALUES ('Seu Jorge'); +INSERT INTO artists (name) VALUES ('Sabotage E Instituto'); +INSERT INTO artists (name) VALUES ('Stereo Maracana'); +INSERT INTO artists (name) VALUES ('Cake'); +INSERT INTO artists (name) VALUES ('Aisha Duo'); +INSERT INTO artists (name) VALUES ('Habib Koité and Bamada'); +INSERT INTO artists (name) VALUES ('Karsh Kale'); +INSERT INTO artists (name) VALUES ('The Posies'); +INSERT INTO artists (name) VALUES ('Luciana Souza/Romero Lubambo'); +INSERT INTO artists (name) VALUES ('Aaron Goldberg'); +INSERT INTO artists (name) VALUES ('Nicolaus Esterhazy Sinfonia'); +INSERT INTO artists (name) VALUES ('Temple of the Dog'); +INSERT INTO artists (name) VALUES ('Chris Cornell'); +INSERT INTO artists (name) VALUES ('Alberto Turco & Nova Schola Gregoriana'); +INSERT INTO artists (name) VALUES ('Richard Marlow & The Choir of Trinity College, Cambridge'); +INSERT INTO artists (name) VALUES ('English Concert & Trevor Pinnock'); +INSERT INTO artists (name) VALUES ('Anne-Sophie Mutter, Herbert Von Karajan & Wiener Philharmoniker'); +INSERT INTO artists (name) VALUES ('Hilary Hahn, Jeffrey Kahane, Los Angeles Chamber Orchestra & Margaret Batjer'); +INSERT INTO artists (name) VALUES ('Wilhelm Kempff'); +INSERT INTO artists (name) VALUES ('Yo-Yo Ma'); +INSERT INTO artists (name) VALUES ('Scholars Baroque Ensemble'); +INSERT INTO artists (name) VALUES ('Academy of St. Martin in the Fields & Sir Neville Marriner'); +INSERT INTO artists (name) VALUES ('Academy of St. Martin in the Fields Chamber Ensemble & Sir Neville Marriner'); +INSERT INTO artists (name) VALUES ('Berliner Philharmoniker, Claudio Abbado & Sabine Meyer'); +INSERT INTO artists (name) VALUES ('Royal Philharmonic Orchestra & Sir Thomas Beecham'); +INSERT INTO artists (name) VALUES ('Orchestre Révolutionnaire et Romantique & John Eliot Gardiner'); +INSERT INTO artists (name) VALUES ('Britten Sinfonia, Ivor Bolton & Lesley Garrett'); +INSERT INTO artists (name) VALUES ('Chicago Symphony Chorus, Chicago Symphony Orchestra & Sir Georg Solti'); +INSERT INTO artists (name) VALUES ('Sir Georg Solti & Wiener Philharmoniker'); +INSERT INTO artists (name) VALUES ('Academy of St. Martin in the Fields, John Birch, Sir Neville Marriner & Sylvia McNair'); +INSERT INTO artists (name) VALUES ('London Symphony Orchestra & Sir Charles Mackerras'); +INSERT INTO artists (name) VALUES ('Barry Wordsworth & BBC Concert Orchestra'); +INSERT INTO artists (name) VALUES ('Herbert Von Karajan, Mirella Freni & Wiener Philharmoniker'); +INSERT INTO artists (name) VALUES ('Eugene Ormandy'); +INSERT INTO artists (name) VALUES ('Luciano Pavarotti'); +INSERT INTO artists (name) VALUES ('Leonard Bernstein & New York Philharmonic'); +INSERT INTO artists (name) VALUES ('Boston Symphony Orchestra & Seiji Ozawa'); +INSERT INTO artists (name) VALUES ('Aaron Copland & London Symphony Orchestra'); +INSERT INTO artists (name) VALUES ('Ton Koopman'); +INSERT INTO artists (name) VALUES ('Sergei Prokofiev & Yuri Temirkanov'); +INSERT INTO artists (name) VALUES ('Chicago Symphony Orchestra & Fritz Reiner'); +INSERT INTO artists (name) VALUES ('Orchestra of The Age of Enlightenment'); +INSERT INTO artists (name) VALUES ('Emanuel Ax, Eugene Ormandy & Philadelphia Orchestra'); +INSERT INTO artists (name) VALUES ('James Levine'); +INSERT INTO artists (name) VALUES ('Berliner Philharmoniker & Hans Rosbaud'); +INSERT INTO artists (name) VALUES ('Maurizio Pollini'); +INSERT INTO artists (name) VALUES ('Academy of St. Martin in the Fields, Sir Neville Marriner & William Bennett'); +INSERT INTO artists (name) VALUES ('Gustav Mahler'); +INSERT INTO artists (name) VALUES ('Felix Schmidt, London Symphony Orchestra & Rafael Frühbeck de Burgos'); +INSERT INTO artists (name) VALUES ('Edo de Waart & San Francisco Symphony'); +INSERT INTO artists (name) VALUES ('Antal Doráti & London Symphony Orchestra'); +INSERT INTO artists (name) VALUES ('Choir Of Westminster Abbey & Simon Preston'); +INSERT INTO artists (name) VALUES ('Michael Tilson Thomas & San Francisco Symphony'); +INSERT INTO artists (name) VALUES ('Chor der Wiener Staatsoper, Herbert Von Karajan & Wiener Philharmoniker'); +INSERT INTO artists (name) VALUES ('The King''s Singers'); +INSERT INTO artists (name) VALUES ('Berliner Philharmoniker & Herbert Von Karajan'); +INSERT INTO artists (name) VALUES ('Sir Georg Solti, Sumi Jo & Wiener Philharmoniker'); +INSERT INTO artists (name) VALUES ('Christopher O''Riley'); +INSERT INTO artists (name) VALUES ('Fretwork'); +INSERT INTO artists (name) VALUES ('Amy Winehouse'); +INSERT INTO artists (name) VALUES ('Calexico'); +INSERT INTO artists (name) VALUES ('Otto Klemperer & Philharmonia Orchestra'); +INSERT INTO artists (name) VALUES ('Yehudi Menuhin'); +INSERT INTO artists (name) VALUES ('Philharmonia Orchestra & Sir Neville Marriner'); +INSERT INTO artists (name) VALUES ('Academy of St. Martin in the Fields, Sir Neville Marriner & Thurston Dart'); +INSERT INTO artists (name) VALUES ('Les Arts Florissants & William Christie'); +INSERT INTO artists (name) VALUES ('The 12 Cellists of The Berlin Philharmonic'); +INSERT INTO artists (name) VALUES ('Adrian Leaper & Doreen de Feis'); +INSERT INTO artists (name) VALUES ('Roger Norrington, London Classical Players'); +INSERT INTO artists (name) VALUES ('Charles Dutoit & L''Orchestre Symphonique de Montréal'); +INSERT INTO artists (name) VALUES ('Equale Brass Ensemble, John Eliot Gardiner & Munich Monteverdi Orchestra and Choir'); +INSERT INTO artists (name) VALUES ('Kent Nagano and Orchestre de l''Opéra de Lyon'); +INSERT INTO artists (name) VALUES ('Julian Bream'); +INSERT INTO artists (name) VALUES ('Martin Roscoe'); +INSERT INTO artists (name) VALUES ('Göteborgs Symfoniker & Neeme Järvi'); +INSERT INTO artists (name) VALUES ('Itzhak Perlman'); +INSERT INTO artists (name) VALUES ('Michele Campanella'); +INSERT INTO artists (name) VALUES ('Gerald Moore'); +INSERT INTO artists (name) VALUES ('Mela Tenenbaum, Pro Musica Prague & Richard Kapp'); +INSERT INTO artists (name) VALUES ('Emerson String Quartet'); +INSERT INTO artists (name) VALUES ('C. Monteverdi, Nigel Rogers - Chiaroscuro; London Baroque; London Cornett & Sackbu'); +INSERT INTO artists (name) VALUES ('Nash Ensemble'); +INSERT INTO artists (name) VALUES ('Philip Glass Ensemble'); + +INSERT INTO albums (title, artist_id) VALUES ('For Those About To Rock We Salute You', 1); +INSERT INTO albums (title, artist_id) VALUES ('Balls to the Wall', 2); +INSERT INTO albums (title, artist_id) VALUES ('Restless and Wild', 2); +INSERT INTO albums (title, artist_id) VALUES ('Let There Be Rock', 1); +INSERT INTO albums (title, artist_id) VALUES ('Big Ones', 3); +INSERT INTO albums (title, artist_id) VALUES ('Jagged Little Pill', 4); +INSERT INTO albums (title, artist_id) VALUES ('Facelift', 5); +INSERT INTO albums (title, artist_id) VALUES ('Warner 25 Anos', 6); +INSERT INTO albums (title, artist_id) VALUES ('Plays Metallica By Four Cellos', 7); +INSERT INTO albums (title, artist_id) VALUES ('Audioslave', 8); +INSERT INTO albums (title, artist_id) VALUES ('Out Of Exile', 8); +INSERT INTO albums (title, artist_id) VALUES ('BackBeat Soundtrack', 9); +INSERT INTO albums (title, artist_id) VALUES ('The Best Of Billy Cobham', 10); +INSERT INTO albums (title, artist_id) VALUES ('Alcohol Fueled Brewtality Live! [Disc 1]', 11); +INSERT INTO albums (title, artist_id) VALUES ('Alcohol Fueled Brewtality Live! [Disc 2]', 11); +INSERT INTO albums (title, artist_id) VALUES ('Black Sabbath', 12); +INSERT INTO albums (title, artist_id) VALUES ('Black Sabbath Vol. 4 (Remaster)', 12); +INSERT INTO albums (title, artist_id) VALUES ('Body Count', 13); +INSERT INTO albums (title, artist_id) VALUES ('Chemical Wedding', 14); +INSERT INTO albums (title, artist_id) VALUES ('The Best Of Buddy Guy - The Millenium Collection', 15); +INSERT INTO albums (title, artist_id) VALUES ('Prenda Minha', 16); +INSERT INTO albums (title, artist_id) VALUES ('Sozinho Remix Ao Vivo', 16); +INSERT INTO albums (title, artist_id) VALUES ('Minha Historia', 17); +INSERT INTO albums (title, artist_id) VALUES ('Afrociberdelia', 18); +INSERT INTO albums (title, artist_id) VALUES ('Da Lama Ao Caos', 18); +INSERT INTO albums (title, artist_id) VALUES ('Acústico MTV live', 19); +INSERT INTO albums (title, artist_id) VALUES ('Cidade Negra - Hits', 19); +INSERT INTO albums (title, artist_id) VALUES ('Na Pista', 20); +INSERT INTO albums (title, artist_id) VALUES ('Axé Bahia 2001', 21); +INSERT INTO albums (title, artist_id) VALUES ('BBC Sessions [Disc 1] live', 22); +INSERT INTO albums (title, artist_id) VALUES ('Bongo Fury', 23); +INSERT INTO albums (title, artist_id) VALUES ('Carnaval 2001', 21); +INSERT INTO albums (title, artist_id) VALUES ('Chill: Brazil (Disc 1)', 24); +INSERT INTO albums (title, artist_id) VALUES ('Chill: Brazil (Disc 2)', 6); +INSERT INTO albums (title, artist_id) VALUES ('Garage Inc. (Disc 1)', 50); +INSERT INTO albums (title, artist_id) VALUES ('Greatest Hits II', 51); +INSERT INTO albums (title, artist_id) VALUES ('Greatest Kiss', 52); +INSERT INTO albums (title, artist_id) VALUES ('Heart of the Night', 53); +INSERT INTO albums (title, artist_id) VALUES ('International Superhits', 54); +INSERT INTO albums (title, artist_id) VALUES ('Into The Light', 55); +INSERT INTO albums (title, artist_id) VALUES ('Meus Momentos', 56); +INSERT INTO albums (title, artist_id) VALUES ('Minha História', 57); +INSERT INTO albums (title, artist_id) VALUES ('MK III The Final Concerts [Disc 1]', 58); +INSERT INTO albums (title, artist_id) VALUES ('Physical Graffiti [Disc 1]', 22); +INSERT INTO albums (title, artist_id) VALUES ('Sambas De Enredo 2001', 21); +INSERT INTO albums (title, artist_id) VALUES ('Supernatural', 59); +INSERT INTO albums (title, artist_id) VALUES ('The Best of Ed Motta', 37); +INSERT INTO albums (title, artist_id) VALUES ('The Essential Miles Davis [Disc 1]', 68); +INSERT INTO albums (title, artist_id) VALUES ('The Essential Miles Davis [Disc 2]', 68); +INSERT INTO albums (title, artist_id) VALUES ('The Final Concerts (Disc 2)', 58); +INSERT INTO albums (title, artist_id) VALUES ('Up An'' Atom', 69); +INSERT INTO albums (title, artist_id) VALUES ('Vinícius De Moraes - Sem Limite', 70); +INSERT INTO albums (title, artist_id) VALUES ('Vozes do MPB', 21); +INSERT INTO albums (title, artist_id) VALUES ('Chronicle, Vol. 1', 76); +INSERT INTO albums (title, artist_id) VALUES ('Chronicle, Vol. 2', 76); +INSERT INTO albums (title, artist_id) VALUES ('Cássia Eller - Coleção Sem Limite [Disc 2]', 77); +INSERT INTO albums (title, artist_id) VALUES ('Cássia Eller - Sem Limite [Disc 1]', 77); +INSERT INTO albums (title, artist_id) VALUES ('Come Taste The Band', 58); +INSERT INTO albums (title, artist_id) VALUES ('Deep Purple In Rock', 58); +INSERT INTO albums (title, artist_id) VALUES ('Fireball', 58); +INSERT INTO albums (title, artist_id) VALUES ('Knocking at Your Back Door: The Best Of Deep Purple in the 80''s', 58); +INSERT INTO albums (title, artist_id) VALUES ('Machine Head', 58); +INSERT INTO albums (title, artist_id) VALUES ('Purpendicular', 58); +INSERT INTO albums (title, artist_id) VALUES ('Slaves And Masters', 58); +INSERT INTO albums (title, artist_id) VALUES ('Stormbringer', 58); +INSERT INTO albums (title, artist_id) VALUES ('The Battle Rages On', 58); +INSERT INTO albums (title, artist_id) VALUES ('Vault: Def Leppard''s Greatest Hits', 78); +INSERT INTO albums (title, artist_id) VALUES ('Outbreak', 79); +INSERT INTO albums (title, artist_id) VALUES ('Djavan Ao Vivo - Vol. 02', 80); +INSERT INTO albums (title, artist_id) VALUES ('Djavan Ao Vivo - Vol. 1', 80); +INSERT INTO albums (title, artist_id) VALUES ('Elis Regina-Minha História', 41); +INSERT INTO albums (title, artist_id) VALUES ('The Cream Of Clapton', 81); +INSERT INTO albums (title, artist_id) VALUES ('Unplugged', 81); +INSERT INTO albums (title, artist_id) VALUES ('Album Of The Year', 82); +INSERT INTO albums (title, artist_id) VALUES ('Angel Dust', 82); +INSERT INTO albums (title, artist_id) VALUES ('King For A Day Fool For A Lifetime', 82); +INSERT INTO albums (title, artist_id) VALUES ('The Real Thing', 82); +INSERT INTO albums (title, artist_id) VALUES ('Deixa Entrar', 83); +INSERT INTO albums (title, artist_id) VALUES ('In Your Honor [Disc 1]', 84); +INSERT INTO albums (title, artist_id) VALUES ('In Your Honor [Disc 2]', 84); +INSERT INTO albums (title, artist_id) VALUES ('One By One', 84); +INSERT INTO albums (title, artist_id) VALUES ('The Colour And The Shape', 84); +INSERT INTO albums (title, artist_id) VALUES ('My Way: The Best Of Frank Sinatra [Disc 1]', 85); +INSERT INTO albums (title, artist_id) VALUES ('Roda De Funk', 86); +INSERT INTO albums (title, artist_id) VALUES ('As Canções de Eu Tu Eles', 27); +INSERT INTO albums (title, artist_id) VALUES ('Quanta Gente Veio Ver (Live)', 27); +INSERT INTO albums (title, artist_id) VALUES ('Quanta Gente Veio ver--Bônus De Carnaval', 27); +INSERT INTO albums (title, artist_id) VALUES ('Faceless', 87); +INSERT INTO albums (title, artist_id) VALUES ('American Idiot', 54); +INSERT INTO albums (title, artist_id) VALUES ('Appetite for Destruction', 88); +INSERT INTO albums (title, artist_id) VALUES ('Use Your Illusion I', 88); +INSERT INTO albums (title, artist_id) VALUES ('Use Your Illusion II', 88); +INSERT INTO albums (title, artist_id) VALUES ('Blue Moods', 89); +INSERT INTO albums (title, artist_id) VALUES ('A Matter of Life and Death', 90); +INSERT INTO albums (title, artist_id) VALUES ('A Real Dead One', 90); +INSERT INTO albums (title, artist_id) VALUES ('A Real Live One', 90); +INSERT INTO albums (title, artist_id) VALUES ('Brave New World', 90); +INSERT INTO albums (title, artist_id) VALUES ('Dance Of Death', 90); +INSERT INTO albums (title, artist_id) VALUES ('Fear Of The Dark', 90); +INSERT INTO albums (title, artist_id) VALUES ('Iron Maiden', 90); +INSERT INTO albums (title, artist_id) VALUES ('Killers', 90); +INSERT INTO albums (title, artist_id) VALUES ('Live After Death', 90); +INSERT INTO albums (title, artist_id) VALUES ('Live At Donington 1992 (Disc 1)', 90); +INSERT INTO albums (title, artist_id) VALUES ('Live At Donington 1992 (Disc 2)', 90); +INSERT INTO albums (title, artist_id) VALUES ('No Prayer For The Dying', 90); +INSERT INTO albums (title, artist_id) VALUES ('Piece Of Mind', 90); +INSERT INTO albums (title, artist_id) VALUES ('Powerslave', 90); +INSERT INTO albums (title, artist_id) VALUES ('Rock In Rio CD1', 90); +INSERT INTO albums (title, artist_id) VALUES ('Rock In Rio CD2', 90); +INSERT INTO albums (title, artist_id) VALUES ('Seventh Son of a Seventh Son', 90); +INSERT INTO albums (title, artist_id) VALUES ('Somewhere in Time', 90); +INSERT INTO albums (title, artist_id) VALUES ('The Number of The Beast', 90); +INSERT INTO albums (title, artist_id) VALUES ('The X Factor', 90); +INSERT INTO albums (title, artist_id) VALUES ('Virtual XI', 90); +INSERT INTO albums (title, artist_id) VALUES ('Sex Machine', 91); +INSERT INTO albums (title, artist_id) VALUES ('Emergency On Planet Earth', 92); +INSERT INTO albums (title, artist_id) VALUES ('Synkronized', 92); +INSERT INTO albums (title, artist_id) VALUES ('The Return Of The Space Cowboy', 92); +INSERT INTO albums (title, artist_id) VALUES ('Get Born', 93); +INSERT INTO albums (title, artist_id) VALUES ('Are You Experienced?', 94); +INSERT INTO albums (title, artist_id) VALUES ('Surfing with the Alien (Remastered)', 95); +INSERT INTO albums (title, artist_id) VALUES ('Jorge Ben Jor 25 Anos', 46); +INSERT INTO albums (title, artist_id) VALUES ('Jota Quest-1995', 96); +INSERT INTO albums (title, artist_id) VALUES ('Cafezinho', 97); +INSERT INTO albums (title, artist_id) VALUES ('Living After Midnight', 98); +INSERT INTO albums (title, artist_id) VALUES ('Unplugged live', 52); +INSERT INTO albums (title, artist_id) VALUES ('BBC Sessions [Disc 2] live', 22); +INSERT INTO albums (title, artist_id) VALUES ('Coda', 22); +INSERT INTO albums (title, artist_id) VALUES ('Houses Of The Holy', 22); +INSERT INTO albums (title, artist_id) VALUES ('In Through The Out Door', 22); +INSERT INTO albums (title, artist_id) VALUES ('IV', 22); +INSERT INTO albums (title, artist_id) VALUES ('Led Zeppelin I', 22); +INSERT INTO albums (title, artist_id) VALUES ('Led Zeppelin II', 22); +INSERT INTO albums (title, artist_id) VALUES ('Led Zeppelin III', 22); +INSERT INTO albums (title, artist_id) VALUES ('Physical Graffiti [Disc 2]', 22); +INSERT INTO albums (title, artist_id) VALUES ('Presence', 22); +INSERT INTO albums (title, artist_id) VALUES ('The Song Remains The Same (Disc 1)', 22); +INSERT INTO albums (title, artist_id) VALUES ('The Song Remains The Same (Disc 2)', 22); +INSERT INTO albums (title, artist_id) VALUES ('A TempestadeTempestade Ou O Livro Dos Dias', 99); +INSERT INTO albums (title, artist_id) VALUES ('Mais Do Mesmo', 99); +INSERT INTO albums (title, artist_id) VALUES ('Greatest Hits', 100); +INSERT INTO albums (title, artist_id) VALUES ('Lulu Santos - RCA 100 Anos De Música - Álbum 01', 101); +INSERT INTO albums (title, artist_id) VALUES ('Lulu Santos - RCA 100 Anos De Música - Álbum 02', 101); +INSERT INTO albums (title, artist_id) VALUES ('Misplaced Childhood', 102); +INSERT INTO albums (title, artist_id) VALUES ('Barulhinho Bom', 103); +INSERT INTO albums (title, artist_id) VALUES ('Seek And Shall Find: More Of The Best (1963-1981)', 104); +INSERT INTO albums (title, artist_id) VALUES ('The Best Of Men At Work', 105); +INSERT INTO albums (title, artist_id) VALUES ('Black Album', 50); +INSERT INTO albums (title, artist_id) VALUES ('Garage Inc. (Disc 2)', 50); +INSERT INTO albums (title, artist_id) VALUES ('Kill ''Em All', 50); +INSERT INTO albums (title, artist_id) VALUES ('Load', 50); +INSERT INTO albums (title, artist_id) VALUES ('Master Of Puppets', 50); +INSERT INTO albums (title, artist_id) VALUES ('ReLoad', 50); +INSERT INTO albums (title, artist_id) VALUES ('Ride The Lightning', 50); +INSERT INTO albums (title, artist_id) VALUES ('St. Anger', 50); +INSERT INTO albums (title, artist_id) VALUES ('...And Justice For All', 50); +INSERT INTO albums (title, artist_id) VALUES ('Miles Ahead', 68); +INSERT INTO albums (title, artist_id) VALUES ('Milton Nascimento Ao Vivo', 42); +INSERT INTO albums (title, artist_id) VALUES ('Minas', 42); +INSERT INTO albums (title, artist_id) VALUES ('Ace Of Spades', 106); +INSERT INTO albums (title, artist_id) VALUES ('Demorou...', 108); +INSERT INTO albums (title, artist_id) VALUES ('Motley Crue Greatest Hits', 109); +INSERT INTO albums (title, artist_id) VALUES ('From The Muddy Banks Of The Wishkah live', 110); +INSERT INTO albums (title, artist_id) VALUES ('Nevermind', 110); +INSERT INTO albums (title, artist_id) VALUES ('Compositores', 111); +INSERT INTO albums (title, artist_id) VALUES ('Olodum', 112); +INSERT INTO albums (title, artist_id) VALUES ('Acústico MTV', 113); +INSERT INTO albums (title, artist_id) VALUES ('Arquivo II', 113); +INSERT INTO albums (title, artist_id) VALUES ('Arquivo Os Paralamas Do Sucesso', 113); +INSERT INTO albums (title, artist_id) VALUES ('Bark at the Moon (Remastered)', 114); +INSERT INTO albums (title, artist_id) VALUES ('Blizzard of Ozz', 114); +INSERT INTO albums (title, artist_id) VALUES ('Diary of a Madman (Remastered)', 114); +INSERT INTO albums (title, artist_id) VALUES ('No More Tears (Remastered)', 114); +INSERT INTO albums (title, artist_id) VALUES ('Tribute', 114); +INSERT INTO albums (title, artist_id) VALUES ('Walking Into Clarksdale', 115); +INSERT INTO albums (title, artist_id) VALUES ('Original Soundtracks 1', 116); +INSERT INTO albums (title, artist_id) VALUES ('The Beast Live', 117); +INSERT INTO albums (title, artist_id) VALUES ('Live On Two Legs live', 118); +INSERT INTO albums (title, artist_id) VALUES ('Pearl Jam', 118); +INSERT INTO albums (title, artist_id) VALUES ('Riot Act', 118); +INSERT INTO albums (title, artist_id) VALUES ('Ten', 118); +INSERT INTO albums (title, artist_id) VALUES ('Vs.', 118); +INSERT INTO albums (title, artist_id) VALUES ('Dark Side Of The Moon', 120); +INSERT INTO albums (title, artist_id) VALUES ('Os Cães Ladram Mas A Caravana Não Pára', 121); +INSERT INTO albums (title, artist_id) VALUES ('Greatest Hits I', 51); +INSERT INTO albums (title, artist_id) VALUES ('News Of The World', 51); +INSERT INTO albums (title, artist_id) VALUES ('Out Of Time', 122); +INSERT INTO albums (title, artist_id) VALUES ('Green', 124); +INSERT INTO albums (title, artist_id) VALUES ('New Adventures In Hi-Fi', 124); +INSERT INTO albums (title, artist_id) VALUES ('The Best Of R.E.M.: The IRS Years', 124); +INSERT INTO albums (title, artist_id) VALUES ('Cesta Básica', 125); +INSERT INTO albums (title, artist_id) VALUES ('Raul Seixas', 126); +INSERT INTO albums (title, artist_id) VALUES ('Blood Sugar Sex Magik', 127); +INSERT INTO albums (title, artist_id) VALUES ('By The Way', 127); +INSERT INTO albums (title, artist_id) VALUES ('Californication', 127); +INSERT INTO albums (title, artist_id) VALUES ('Retrospective I (1974-1980)', 128); +INSERT INTO albums (title, artist_id) VALUES ('Santana - As Years Go By', 59); +INSERT INTO albums (title, artist_id) VALUES ('Santana Live', 59); +INSERT INTO albums (title, artist_id) VALUES ('Maquinarama', 130); +INSERT INTO albums (title, artist_id) VALUES ('O Samba Poconé', 130); +INSERT INTO albums (title, artist_id) VALUES ('Judas 0: B-Sides and Rarities', 131); +INSERT INTO albums (title, artist_id) VALUES ('Rotten Apples: Greatest Hits', 131); +INSERT INTO albums (title, artist_id) VALUES ('A-Sides', 132); +INSERT INTO albums (title, artist_id) VALUES ('Morning Dance', 53); +INSERT INTO albums (title, artist_id) VALUES ('In Step', 133); +INSERT INTO albums (title, artist_id) VALUES ('Core', 134); +INSERT INTO albums (title, artist_id) VALUES ('Mezmerize', 135); +INSERT INTO albums (title, artist_id) VALUES ('1997 Black Light Syndrome', 136); +INSERT INTO albums (title, artist_id) VALUES ('Live [Disc 1]', 137); +INSERT INTO albums (title, artist_id) VALUES ('Live [Disc 2]', 137); +INSERT INTO albums (title, artist_id) VALUES ('The Singles', 138); +INSERT INTO albums (title, artist_id) VALUES ('Beyond Good And Evil', 139); +INSERT INTO albums (title, artist_id) VALUES ('Pure Cult: The Best Of The Cult (For Rockers, Ravers, Lovers & Sinners) UK', 139); +INSERT INTO albums (title, artist_id) VALUES ('The Doors', 140); +INSERT INTO albums (title, artist_id) VALUES ('The Police Greatest Hits', 141); +INSERT INTO albums (title, artist_id) VALUES ('Hot Rocks, 1964-1971 (Disc 1)', 142); +INSERT INTO albums (title, artist_id) VALUES ('No Security', 142); +INSERT INTO albums (title, artist_id) VALUES ('Voodoo Lounge', 142); +INSERT INTO albums (title, artist_id) VALUES ('Tangents', 143); +INSERT INTO albums (title, artist_id) VALUES ('Transmission', 143); +INSERT INTO albums (title, artist_id) VALUES ('My Generation - The Very Best Of The Who', 144); +INSERT INTO albums (title, artist_id) VALUES ('Serie Sem Limite (Disc 1)', 145); +INSERT INTO albums (title, artist_id) VALUES ('Serie Sem Limite (Disc 2)', 145); +INSERT INTO albums (title, artist_id) VALUES ('Acústico', 146); +INSERT INTO albums (title, artist_id) VALUES ('Volume Dois', 146); +INSERT INTO albums (title, artist_id) VALUES ('Battlestar Galactica: The Story So Far', 147); +INSERT INTO albums (title, artist_id) VALUES ('Battlestar Galactica, Season 3', 147); +INSERT INTO albums (title, artist_id) VALUES ('Heroes, Season 1', 148); +INSERT INTO albums (title, artist_id) VALUES ('Lost, Season 3', 149); +INSERT INTO albums (title, artist_id) VALUES ('Lost, Season 1', 149); +INSERT INTO albums (title, artist_id) VALUES ('Lost, Season 2', 149); +INSERT INTO albums (title, artist_id) VALUES ('Achtung Baby', 150); +INSERT INTO albums (title, artist_id) VALUES ('All That You Can''t Leave Behind', 150); +INSERT INTO albums (title, artist_id) VALUES ('B-Sides 1980-1990', 150); +INSERT INTO albums (title, artist_id) VALUES ('How To Dismantle An Atomic Bomb', 150); +INSERT INTO albums (title, artist_id) VALUES ('Pop', 150); +INSERT INTO albums (title, artist_id) VALUES ('Rattle And Hum', 150); +INSERT INTO albums (title, artist_id) VALUES ('The Best Of 1980-1990', 150); +INSERT INTO albums (title, artist_id) VALUES ('War', 150); +INSERT INTO albums (title, artist_id) VALUES ('Zooropa', 150); +INSERT INTO albums (title, artist_id) VALUES ('UB40 The Best Of - Volume Two UK', 151); +INSERT INTO albums (title, artist_id) VALUES ('Diver Down', 152); +INSERT INTO albums (title, artist_id) VALUES ('The Best Of Van Halen, Vol. I', 152); +INSERT INTO albums (title, artist_id) VALUES ('Van Halen', 152); +INSERT INTO albums (title, artist_id) VALUES ('Van Halen III', 152); +INSERT INTO albums (title, artist_id) VALUES ('Contraband', 153); +INSERT INTO albums (title, artist_id) VALUES ('Vinicius De Moraes', 72); +INSERT INTO albums (title, artist_id) VALUES ('Ao Vivo IMPORT', 155); +INSERT INTO albums (title, artist_id) VALUES ('The Office, Season 1', 156); +INSERT INTO albums (title, artist_id) VALUES ('The Office, Season 2', 156); +INSERT INTO albums (title, artist_id) VALUES ('The Office, Season 3', 156); +INSERT INTO albums (title, artist_id) VALUES ('Un-Led-Ed', 157); +INSERT INTO albums (title, artist_id) VALUES ('Battlestar Galactica (Classic), Season 1', 158); +INSERT INTO albums (title, artist_id) VALUES ('Aquaman', 159); +INSERT INTO albums (title, artist_id) VALUES ('Instant Karma: The Amnesty International Campaign to Save Darfur', 150); +INSERT INTO albums (title, artist_id) VALUES ('Speak of the Devil', 114); +INSERT INTO albums (title, artist_id) VALUES ('20th Century Masters - The Millennium Collection: The Best of Scorpions', 179); +INSERT INTO albums (title, artist_id) VALUES ('House of Pain', 180); +INSERT INTO albums (title, artist_id) VALUES ('Radio Brasil (O Som da Jovem Vanguarda) - Seleccao de Henrique Amaro', 36); +INSERT INTO albums (title, artist_id) VALUES ('Cake: B-Sides and Rarities', 196); +INSERT INTO albums (title, artist_id) VALUES ('LOST, Season 4', 149); +INSERT INTO albums (title, artist_id) VALUES ('Quiet Songs', 197); +INSERT INTO albums (title, artist_id) VALUES ('Muso Ko', 198); +INSERT INTO albums (title, artist_id) VALUES ('Realize', 199); +INSERT INTO albums (title, artist_id) VALUES ('Every Kind of Light', 200); +INSERT INTO albums (title, artist_id) VALUES ('Duos II', 201); +INSERT INTO albums (title, artist_id) VALUES ('Worlds', 202); +INSERT INTO albums (title, artist_id) VALUES ('The Best of Beethoven', 203); +INSERT INTO albums (title, artist_id) VALUES ('Temple of the Dog', 204); +INSERT INTO albums (title, artist_id) VALUES ('Carry On', 205); +INSERT INTO albums (title, artist_id) VALUES ('Revelations', 8); +INSERT INTO albums (title, artist_id) VALUES ('Adorate Deum: Gregorian Chant from the Proper of the Mass', 206); +INSERT INTO albums (title, artist_id) VALUES ('Allegri: Miserere', 207); +INSERT INTO albums (title, artist_id) VALUES ('Pachelbel: Canon & Gigue', 208); +INSERT INTO albums (title, artist_id) VALUES ('Vivaldi: The Four Seasons', 209); +INSERT INTO albums (title, artist_id) VALUES ('Bach: Violin Concertos', 210); +INSERT INTO albums (title, artist_id) VALUES ('Bach: Goldberg Variations', 211); +INSERT INTO albums (title, artist_id) VALUES ('Bach: The Cello Suites', 212); +INSERT INTO albums (title, artist_id) VALUES ('Handel: The Messiah (Highlights)', 213); +INSERT INTO albums (title, artist_id) VALUES ('The World of Classical Favourites', 214); +INSERT INTO albums (title, artist_id) VALUES ('Sir Neville Marriner: A Celebration', 215); +INSERT INTO albums (title, artist_id) VALUES ('Mozart: Wind Concertos', 216); +INSERT INTO albums (title, artist_id) VALUES ('Haydn: Symphonies 99 - 104', 217); +INSERT INTO albums (title, artist_id) VALUES ('Beethoven: Symhonies Nos. 5 & 6', 218); +INSERT INTO albums (title, artist_id) VALUES ('A Soprano Inspired', 219); +INSERT INTO albums (title, artist_id) VALUES ('Great Opera Choruses', 220); +INSERT INTO albums (title, artist_id) VALUES ('Wagner: Favourite Overtures', 221); +INSERT INTO albums (title, artist_id) VALUES ('Fauré: Requiem, Ravel: Pavane & Others', 222); +INSERT INTO albums (title, artist_id) VALUES ('Tchaikovsky: The Nutcracker', 223); +INSERT INTO albums (title, artist_id) VALUES ('The Last Night of the Proms', 224); +INSERT INTO albums (title, artist_id) VALUES ('Puccini: Madama Butterfly - Highlights', 225); +INSERT INTO albums (title, artist_id) VALUES ('Holst: The Planets, Op. 32 & Vaughan Williams: Fantasies', 226); +INSERT INTO albums (title, artist_id) VALUES ('Pavarotti''s Opera Made Easy', 227); +INSERT INTO albums (title, artist_id) VALUES ('Great Performances - Barber''s Adagio and Other Romantic Favorites for Strings', 228); +INSERT INTO albums (title, artist_id) VALUES ('Carmina Burana', 229); +INSERT INTO albums (title, artist_id) VALUES ('A Copland Celebration, Vol. I', 230); +INSERT INTO albums (title, artist_id) VALUES ('Bach: Toccata & Fugue in D Minor', 231); +INSERT INTO albums (title, artist_id) VALUES ('Prokofiev: Symphony No.1', 232); +INSERT INTO albums (title, artist_id) VALUES ('Scheherazade', 233); +INSERT INTO albums (title, artist_id) VALUES ('Bach: The Brandenburg Concertos', 234); +INSERT INTO albums (title, artist_id) VALUES ('Chopin: Piano Concertos Nos. 1 & 2', 235); +INSERT INTO albums (title, artist_id) VALUES ('Mascagni: Cavalleria Rusticana', 236); +INSERT INTO albums (title, artist_id) VALUES ('Sibelius: Finlandia', 237); +INSERT INTO albums (title, artist_id) VALUES ('Beethoven Piano Sonatas: Moonlight & Pastorale', 238); +INSERT INTO albums (title, artist_id) VALUES ('Great Recordings of the Century - Mahler: Das Lied von der Erde', 240); +INSERT INTO albums (title, artist_id) VALUES ('Elgar: Cello Concerto & Vaughan Williams: Fantasias', 241); +INSERT INTO albums (title, artist_id) VALUES ('Adams, John: The Chairman Dances', 242); +INSERT INTO albums (title, artist_id) VALUES ('Tchaikovsky: 1812 Festival Overture, Op.49, Capriccio Italien & Beethoven: Wellington''s Victory', 243); +INSERT INTO albums (title, artist_id) VALUES ('Palestrina: Missa Papae Marcelli & Allegri: Miserere', 244); +INSERT INTO albums (title, artist_id) VALUES ('Prokofiev: Romeo & Juliet', 245); +INSERT INTO albums (title, artist_id) VALUES ('Strauss: Waltzes', 226); +INSERT INTO albums (title, artist_id) VALUES ('Berlioz: Symphonie Fantastique', 245); +INSERT INTO albums (title, artist_id) VALUES ('Bizet: Carmen Highlights', 246); +INSERT INTO albums (title, artist_id) VALUES ('English Renaissance', 247); +INSERT INTO albums (title, artist_id) VALUES ('Handel: Music for the Royal Fireworks (Original Version 1749)', 208); +INSERT INTO albums (title, artist_id) VALUES ('Grieg: Peer Gynt Suites & Sibelius: Pelléas et Mélisande', 248); +INSERT INTO albums (title, artist_id) VALUES ('Mozart Gala: Famous Arias', 249); +INSERT INTO albums (title, artist_id) VALUES ('SCRIABIN: Vers la flamme', 250); +INSERT INTO albums (title, artist_id) VALUES ('Armada: Music from the Courts of England and Spain', 251); +INSERT INTO albums (title, artist_id) VALUES ('Mozart: Symphonies Nos. 40 & 41', 248); +INSERT INTO albums (title, artist_id) VALUES ('Back to Black', 252); +INSERT INTO albums (title, artist_id) VALUES ('Frank', 252); +INSERT INTO albums (title, artist_id) VALUES ('Carried to Dust (Bonus Track Version)', 253); +INSERT INTO albums (title, artist_id) VALUES ('Beethoven: Symphony No. 6 ''Pastoral'' Etc.', 254); +INSERT INTO albums (title, artist_id) VALUES ('Bartok: Violin & Viola Concertos', 255); +INSERT INTO albums (title, artist_id) VALUES ('Mendelssohn: A Midsummer Night''s Dream', 256); +INSERT INTO albums (title, artist_id) VALUES ('Bach: Orchestral Suites Nos. 1 - 4', 257); +INSERT INTO albums (title, artist_id) VALUES ('Charpentier: Divertissements, Airs & Concerts', 258); +INSERT INTO albums (title, artist_id) VALUES ('South American Getaway', 259); +INSERT INTO albums (title, artist_id) VALUES ('Górecki: Symphony No. 3', 260); +INSERT INTO albums (title, artist_id) VALUES ('Purcell: The Fairy Queen', 261); +INSERT INTO albums (title, artist_id) VALUES ('The Ultimate Relexation Album', 262); +INSERT INTO albums (title, artist_id) VALUES ('Purcell: Music for the Queen Mary', 263); +INSERT INTO albums (title, artist_id) VALUES ('Weill: The Seven Deadly Sins', 264); +INSERT INTO albums (title, artist_id) VALUES ('J.S. Bach: Chaconne, Suite in E Minor, Partita in E Major & Prelude, Fugue and Allegro', 265); +INSERT INTO albums (title, artist_id) VALUES ('Prokofiev: Symphony No.5 & Stravinksy: Le Sacre Du Printemps', 248); +INSERT INTO albums (title, artist_id) VALUES ('Szymanowski: Piano Works, Vol. 1', 266); +INSERT INTO albums (title, artist_id) VALUES ('Nielsen: The Six Symphonies', 267); +INSERT INTO albums (title, artist_id) VALUES ('Great Recordings of the Century: Paganini''s 24 Caprices', 268); +INSERT INTO albums (title, artist_id) VALUES ('Liszt - 12 Études D''Execution Transcendante', 269); +INSERT INTO albums (title, artist_id) VALUES ('Great Recordings of the Century - Shubert: Schwanengesang, 4 Lieder', 270); +INSERT INTO albums (title, artist_id) VALUES ('Locatelli: Concertos for Violin, Strings and Continuo, Vol. 3', 271); +INSERT INTO albums (title, artist_id) VALUES ('Respighi:Pines of Rome', 226); +INSERT INTO albums (title, artist_id) VALUES ('Schubert: The Late String Quartets & String Quintet (3 CD''s)', 272); +INSERT INTO albums (title, artist_id) VALUES ('Monteverdi: L''Orfeo', 273); +INSERT INTO albums (title, artist_id) VALUES ('Mozart: Chamber Music', 274); +INSERT INTO albums (title, artist_id) VALUES ('Koyaanisqatsi (Soundtrack from the Motion Picture)', 275); + +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('For Those About To Rock (We Salute You)', 1, 1, 1, 'Angus Young, Malcolm Young, Brian Johnson', 343719, 11170334, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Balls to the Wall', 2, 2, 1, 342562, 5510424, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Fast As a Shark', 3, 2, 1, 'F. Baltes, S. Kaufman, U. Dirkscneider & W. Hoffman', 230619, 3990994, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Restless and Wild', 3, 2, 1, 'F. Baltes, R.A. Smith-Diesel, S. Kaufman, U. Dirkscneider & W. Hoffman', 252051, 4331779, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Princess of the Dawn', 3, 2, 1, 'Deaffy & R.A. Smith-Diesel', 375418, 6290521, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Put The Finger On You', 1, 1, 1, 'Angus Young, Malcolm Young, Brian Johnson', 205662, 6713451, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Let''s Get It Up', 1, 1, 1, 'Angus Young, Malcolm Young, Brian Johnson', 233926, 7636561, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Inject The Venom', 1, 1, 1, 'Angus Young, Malcolm Young, Brian Johnson', 210834, 6852860, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Snowballed', 1, 1, 1, 'Angus Young, Malcolm Young, Brian Johnson', 203102, 6599424, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Evil Walks', 1, 1, 1, 'Angus Young, Malcolm Young, Brian Johnson', 263497, 8611245, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('C.O.D.', 1, 1, 1, 'Angus Young, Malcolm Young, Brian Johnson', 199836, 6566314, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Breaking The Rules', 1, 1, 1, 'Angus Young, Malcolm Young, Brian Johnson', 263288, 8596840, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Night Of The Long Knives', 1, 1, 1, 'Angus Young, Malcolm Young, Brian Johnson', 205688, 6706347, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Spellbound', 1, 1, 1, 'Angus Young, Malcolm Young, Brian Johnson', 270863, 8817038, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Go Down', 4, 1, 1, 'AC/DC', 331180, 10847611, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Dog Eat Dog', 4, 1, 1, 'AC/DC', 215196, 7032162, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Let There Be Rock', 4, 1, 1, 'AC/DC', 366654, 12021261, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Bad Boy Boogie', 4, 1, 1, 'AC/DC', 267728, 8776140, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Problem Child', 4, 1, 1, 'AC/DC', 325041, 10617116, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Overdose', 4, 1, 1, 'AC/DC', 369319, 12066294, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Hell Ain''t A Bad Place To Be', 4, 1, 1, 'AC/DC', 254380, 8331286, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Whole Lotta Rosie', 4, 1, 1, 'AC/DC', 323761, 10547154, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Walk On Water', 5, 1, 1, 'Steven Tyler, Joe Perry, Jack Blades, Tommy Shaw', 295680, 9719579, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Love In An Elevator', 5, 1, 1, 'Steven Tyler, Joe Perry', 321828, 10552051, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Rag Doll', 5, 1, 1, 'Steven Tyler, Joe Perry, Jim Vallance, Holly Knight', 264698, 8675345, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('What It Takes', 5, 1, 1, 'Steven Tyler, Joe Perry, Desmond Child', 310622, 10144730, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Dude (Looks Like A Lady)', 5, 1, 1, 'Steven Tyler, Joe Perry, Desmond Child', 264855, 8679940, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Janie''s Got A Gun', 5, 1, 1, 'Steven Tyler, Tom Hamilton', 330736, 10869391, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Cryin''', 5, 1, 1, 'Steven Tyler, Joe Perry, Taylor Rhodes', 309263, 10056995, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Amazing', 5, 1, 1, 'Steven Tyler, Richie Supa', 356519, 11616195, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Blind Man', 5, 1, 1, 'Steven Tyler, Joe Perry, Taylor Rhodes', 240718, 7877453, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Deuces Are Wild', 5, 1, 1, 'Steven Tyler, Jim Vallance', 215875, 7074167, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('The Other Side', 5, 1, 1, 'Steven Tyler, Jim Vallance', 244375, 7983270, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Crazy', 5, 1, 1, 'Steven Tyler, Joe Perry, Desmond Child', 316656, 10402398, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Eat The Rich', 5, 1, 1, 'Steven Tyler, Joe Perry, Jim Vallance', 251036, 8262039, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Angel', 5, 1, 1, 'Steven Tyler, Desmond Child', 307617, 9989331, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Livin'' On The Edge', 5, 1, 1, 'Steven Tyler, Joe Perry, Mark Hudson', 381231, 12374569, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('All I Really Want', 6, 1, 1, 'Alanis Morissette & Glenn Ballard', 284891, 9375567, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('You Oughta Know', 6, 1, 1, 'Alanis Morissette & Glenn Ballard', 249234, 8196916, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Perfect', 6, 1, 1, 'Alanis Morissette & Glenn Ballard', 188133, 6145404, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Hand In My Pocket', 6, 1, 1, 'Alanis Morissette & Glenn Ballard', 221570, 7224246, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Right Through You', 6, 1, 1, 'Alanis Morissette & Glenn Ballard', 176117, 5793082, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Forgiven', 6, 1, 1, 'Alanis Morissette & Glenn Ballard', 300355, 9753256, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('You Learn', 6, 1, 1, 'Alanis Morissette & Glenn Ballard', 239699, 7824837, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Head Over Feet', 6, 1, 1, 'Alanis Morissette & Glenn Ballard', 267493, 8758008, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Mary Jane', 6, 1, 1, 'Alanis Morissette & Glenn Ballard', 280607, 9163588, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Ironic', 6, 1, 1, 'Alanis Morissette & Glenn Ballard', 229825, 7598866, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Not The Doctor', 6, 1, 1, 'Alanis Morissette & Glenn Ballard', 227631, 7604601, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Wake Up', 6, 1, 1, 'Alanis Morissette & Glenn Ballard', 293485, 9703359, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('You Oughta Know (Alternate)', 6, 1, 1, 'Alanis Morissette & Glenn Ballard', 491885, 16008629, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('We Die Young', 7, 1, 1, 'Jerry Cantrell', 152084, 4925362, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Man In The Box', 7, 1, 1, 'Jerry Cantrell, Layne Staley', 286641, 9310272, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Sea Of Sorrow', 7, 1, 1, 'Jerry Cantrell', 349831, 11316328, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Bleed The Freak', 7, 1, 1, 'Jerry Cantrell', 241946, 7847716, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('I Can''t Remember', 7, 1, 1, 'Jerry Cantrell, Layne Staley', 222955, 7302550, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Love, Hate, Love', 7, 1, 1, 'Jerry Cantrell, Layne Staley', 387134, 12575396, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('It Ain''t Like That', 7, 1, 1, 'Jerry Cantrell, Michael Starr, Sean Kinney', 277577, 8993793, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Sunshine', 7, 1, 1, 'Jerry Cantrell', 284969, 9216057, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Put You Down', 7, 1, 1, 'Jerry Cantrell', 196231, 6420530, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Confusion', 7, 1, 1, 'Jerry Cantrell, Michael Starr, Layne Staley', 344163, 11183647, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('I Know Somethin (Bout You)', 7, 1, 1, 'Jerry Cantrell', 261955, 8497788, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Real Thing', 7, 1, 1, 'Jerry Cantrell, Layne Staley', 243879, 7937731, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Desafinado', 8, 1, 2, 185338, 5990473, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Garota De Ipanema', 8, 1, 2, 285048, 9348428, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Samba De Uma Nota Só (One Note Samba)', 8, 1, 2, 137273, 4535401, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Por Causa De Você', 8, 1, 2, 169900, 5536496, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Ligia', 8, 1, 2, 251977, 8226934, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Fotografia', 8, 1, 2, 129227, 4198774, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Dindi (Dindi)', 8, 1, 2, 253178, 8149148, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Se Todos Fossem Iguais A Você (Instrumental)', 8, 1, 2, 134948, 4393377, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Falando De Amor', 8, 1, 2, 219663, 7121735, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Angela', 8, 1, 2, 169508, 5574957, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Corcovado (Quiet Nights Of Quiet Stars)', 8, 1, 2, 205662, 6687994, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Outra Vez', 8, 1, 2, 126511, 4110053, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('O Boto (Bôto)', 8, 1, 2, 366837, 12089673, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Canta, Canta Mais', 8, 1, 2, 271856, 8719426, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Enter Sandman', 9, 1, 3, 'Apocalyptica', 221701, 7286305, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Master Of Puppets', 9, 1, 3, 'Apocalyptica', 436453, 14375310, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Harvester Of Sorrow', 9, 1, 3, 'Apocalyptica', 374543, 12372536, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('The Unforgiven', 9, 1, 3, 'Apocalyptica', 322925, 10422447, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Sad But True', 9, 1, 3, 'Apocalyptica', 288208, 9405526, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Creeping Death', 9, 1, 3, 'Apocalyptica', 308035, 10110980, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Wherever I May Roam', 9, 1, 3, 'Apocalyptica', 369345, 12033110, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Welcome Home (Sanitarium)', 9, 1, 3, 'Apocalyptica', 350197, 11406431, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Cochise', 10, 1, 1, 'Audioslave/Chris Cornell', 222380, 5339931, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Show Me How to Live', 10, 1, 1, 'Audioslave/Chris Cornell', 277890, 6672176, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Gasoline', 10, 1, 1, 'Audioslave/Chris Cornell', 279457, 6709793, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('What You Are', 10, 1, 1, 'Audioslave/Chris Cornell', 249391, 5988186, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Like a Stone', 10, 1, 1, 'Audioslave/Chris Cornell', 294034, 7059624, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Set It Off', 10, 1, 1, 'Audioslave/Chris Cornell', 263262, 6321091, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Shadow on the Sun', 10, 1, 1, 'Audioslave/Chris Cornell', 343457, 8245793, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('I am the Highway', 10, 1, 1, 'Audioslave/Chris Cornell', 334942, 8041411, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Exploder', 10, 1, 1, 'Audioslave/Chris Cornell', 206053, 4948095, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Hypnotize', 10, 1, 1, 'Audioslave/Chris Cornell', 206628, 4961887, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Bring''em Back Alive', 10, 1, 1, 'Audioslave/Chris Cornell', 329534, 7911634, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Light My Way', 10, 1, 1, 'Audioslave/Chris Cornell', 303595, 7289084, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Getaway Car', 10, 1, 1, 'Audioslave/Chris Cornell', 299598, 7193162, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('The Last Remaining Light', 10, 1, 1, 'Audioslave/Chris Cornell', 317492, 7622615, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Your Time Has Come', 11, 1, 4, 'Cornell, Commerford, Morello, Wilk', 255529, 8273592, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Out Of Exile', 11, 1, 4, 'Cornell, Commerford, Morello, Wilk', 291291, 9506571, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Be Yourself', 11, 1, 4, 'Cornell, Commerford, Morello, Wilk', 279484, 9106160, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Doesn''t Remind Me', 11, 1, 4, 'Cornell, Commerford, Morello, Wilk', 255869, 8357387, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Drown Me Slowly', 11, 1, 4, 'Cornell, Commerford, Morello, Wilk', 233691, 7609178, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Heaven''s Dead', 11, 1, 4, 'Cornell, Commerford, Morello, Wilk', 276688, 9006158, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('The Worm', 11, 1, 4, 'Cornell, Commerford, Morello, Wilk', 237714, 7710800, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Man Or Animal', 11, 1, 4, 'Cornell, Commerford, Morello, Wilk', 233195, 7542942, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Yesterday To Tomorrow', 11, 1, 4, 'Cornell, Commerford, Morello, Wilk', 273763, 8944205, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Dandelion', 11, 1, 4, 'Cornell, Commerford, Morello, Wilk', 278125, 9003592, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('#1 Zero', 11, 1, 4, 'Cornell, Commerford, Morello, Wilk', 299102, 9731988, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('The Curse', 11, 1, 4, 'Cornell, Commerford, Morello, Wilk', 309786, 10029406, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Money', 12, 1, 5, 'Berry Gordy, Jr./Janie Bradford', 147591, 2365897, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Long Tall Sally', 12, 1, 5, 'Enotris Johnson/Little Richard/Robert "Bumps" Blackwell', 106396, 1707084, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Bad Boy', 12, 1, 5, 'Larry Williams', 116088, 1862126, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Twist And Shout', 12, 1, 5, 'Bert Russell/Phil Medley', 161123, 2582553, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Please Mr. Postman', 12, 1, 5, 'Brian Holland/Freddie Gorman/Georgia Dobbins/Robert Bateman/William Garrett', 137639, 2206986, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('C''Mon Everybody', 12, 1, 5, 'Eddie Cochran/Jerry Capehart', 140199, 2247846, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Rock ''N'' Roll Music', 12, 1, 5, 'Chuck Berry', 141923, 2276788, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Slow Down', 12, 1, 5, 'Larry Williams', 163265, 2616981, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Roadrunner', 12, 1, 5, 'Bo Diddley', 143595, 2301989, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Carol', 12, 1, 5, 'Chuck Berry', 143830, 2306019, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Good Golly Miss Molly', 12, 1, 5, 'Little Richard', 106266, 1704918, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('20 Flight Rock', 12, 1, 5, 'Ned Fairchild', 107807, 1299960, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Quadrant', 13, 1, 2, 'Billy Cobham', 261851, 8538199, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Snoopy''s search-Red baron', 13, 1, 2, 'Billy Cobham', 456071, 15075616, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Spanish moss-"A sound portrait"-Spanish moss', 13, 1, 2, 'Billy Cobham', 248084, 8217867, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Moon germs', 13, 1, 2, 'Billy Cobham', 294060, 9714812, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Stratus', 13, 1, 2, 'Billy Cobham', 582086, 19115680, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('The pleasant pheasant', 13, 1, 2, 'Billy Cobham', 318066, 10630578, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Solo-Panhandler', 13, 1, 2, 'Billy Cobham', 246151, 8230661, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Do what cha wanna', 13, 1, 2, 'George Duke', 274155, 9018565, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Intro/ Low Down', 14, 1, 3, 323683, 10642901, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('13 Years Of Grief', 14, 1, 3, 246987, 8137421, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Stronger Than Death', 14, 1, 3, 300747, 9869647, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('All For You', 14, 1, 3, 235833, 7726948, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Super Terrorizer', 14, 1, 3, 319373, 10513905, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Phoney Smile Fake Hellos', 14, 1, 3, 273606, 9011701, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Lost My Better Half', 14, 1, 3, 284081, 9355309, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Bored To Tears', 14, 1, 3, 247327, 8130090, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('A.N.D.R.O.T.A.Z.', 14, 1, 3, 266266, 8574746, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Born To Booze', 14, 1, 3, 282122, 9257358, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('World Of Trouble', 14, 1, 3, 359157, 11820932, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('No More Tears', 14, 1, 3, 555075, 18041629, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('The Begining... At Last', 14, 1, 3, 365662, 11965109, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Heart Of Gold', 15, 1, 3, 194873, 6417460, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Snowblind', 15, 1, 3, 420022, 13842549, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Like A Bird', 15, 1, 3, 276532, 9115657, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Blood In The Wall', 15, 1, 3, 284368, 9359475, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('The Beginning...At Last', 15, 1, 3, 271960, 8975814, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Black Sabbath', 16, 1, 3, 382066, 12440200, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('The Wizard', 16, 1, 3, 264829, 8646737, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Behind The Wall Of Sleep', 16, 1, 3, 217573, 7169049, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('N.I.B.', 16, 1, 3, 368770, 12029390, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Evil Woman', 16, 1, 3, 204930, 6655170, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Sleeping Village', 16, 1, 3, 644571, 21128525, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Warning', 16, 1, 3, 212062, 6893363, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Wheels Of Confusion / The Straightener', 17, 1, 3, 'Tony Iommi, Bill Ward, Geezer Butler, Ozzy Osbourne', 494524, 16065830, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Tomorrow''s Dream', 17, 1, 3, 'Tony Iommi, Bill Ward, Geezer Butler, Ozzy Osbourne', 192496, 6252071, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Changes', 17, 1, 3, 'Tony Iommi, Bill Ward, Geezer Butler, Ozzy Osbourne', 286275, 9175517, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('FX', 17, 1, 3, 'Tony Iommi, Bill Ward, Geezer Butler, Ozzy Osbourne', 103157, 3331776, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Supernaut', 17, 1, 3, 'Tony Iommi, Bill Ward, Geezer Butler, Ozzy Osbourne', 285779, 9245971, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Snowblind', 17, 1, 3, 'Tony Iommi, Bill Ward, Geezer Butler, Ozzy Osbourne', 331676, 10813386, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Cornucopia', 17, 1, 3, 'Tony Iommi, Bill Ward, Geezer Butler, Ozzy Osbourne', 234814, 7653880, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Laguna Sunrise', 17, 1, 3, 'Tony Iommi, Bill Ward, Geezer Butler, Ozzy Osbourne', 173087, 5671374, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('St. Vitus Dance', 17, 1, 3, 'Tony Iommi, Bill Ward, Geezer Butler, Ozzy Osbourne', 149655, 4884969, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Under The Sun/Every Day Comes and Goes', 17, 1, 3, 'Tony Iommi, Bill Ward, Geezer Butler, Ozzy Osbourne', 350458, 11360486, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Smoked Pork', 18, 1, 4, 47333, 1549074, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Body Count''s In The House', 18, 1, 4, 204251, 6715413, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Now Sports', 18, 1, 4, 4884, 161266, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Body Count', 18, 1, 4, 317936, 10489139, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('A Statistic', 18, 1, 4, 6373, 211997, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Bowels Of The Devil', 18, 1, 4, 223216, 7324125, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('The Real Problem', 18, 1, 4, 11650, 387360, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('KKK Bitch', 18, 1, 4, 173008, 5709631, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('D Note', 18, 1, 4, 95738, 3067064, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Voodoo', 18, 1, 4, 300721, 9875962, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('The Winner Loses', 18, 1, 4, 392254, 12843821, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('There Goes The Neighborhood', 18, 1, 4, 350171, 11443471, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Oprah', 18, 1, 4, 6635, 224313, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Evil Dick', 18, 1, 4, 239020, 7828873, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Body Count Anthem', 18, 1, 4, 166426, 5463690, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Momma''s Gotta Die Tonight', 18, 1, 4, 371539, 12122946, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Freedom Of Speech', 18, 1, 4, 281234, 9337917, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('King In Crimson', 19, 1, 3, 'Roy Z', 283167, 9218499, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Chemical Wedding', 19, 1, 3, 'Roy Z', 246177, 8022764, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('The Tower', 19, 1, 3, 'Roy Z', 285257, 9435693, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Killing Floor', 19, 1, 3, 'Adrian Smith', 269557, 8854240, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Book Of Thel', 19, 1, 3, 'Eddie Casillas/Roy Z', 494393, 16034404, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Gates Of Urizen', 19, 1, 3, 'Roy Z', 265351, 8627004, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Jerusalem', 19, 1, 3, 'Roy Z', 402390, 13194463, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Trupets Of Jericho', 19, 1, 3, 'Roy Z', 359131, 11820908, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Machine Men', 19, 1, 3, 'Adrian Smith', 341655, 11138147, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('The Alchemist', 19, 1, 3, 'Roy Z', 509413, 16545657, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Realword', 19, 1, 3, 'Roy Z', 237531, 7802095, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('First Time I Met The Blues', 20, 1, 6, 'Eurreal Montgomery', 140434, 4604995, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Let Me Love You Baby', 20, 1, 6, 'Willie Dixon', 175386, 5716994, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Stone Crazy', 20, 1, 6, 'Buddy Guy', 433397, 14184984, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Pretty Baby', 20, 1, 6, 'Willie Dixon', 237662, 7848282, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('When My Left Eye Jumps', 20, 1, 6, 'Al Perkins/Willie Dixon', 235311, 7685363, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Leave My Girl Alone', 20, 1, 6, 'Buddy Guy', 204721, 6859518, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('She Suits Me To A Tee', 20, 1, 6, 'Buddy Guy', 136803, 4456321, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Keep It To Myself (Aka Keep It To Yourself)', 20, 1, 6, 'Sonny Boy Williamson I', 166060, 5487056, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('My Time After Awhile', 20, 1, 6, 'Robert Geddins/Ron Badger/Sheldon Feinberg', 182491, 6022698, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Too Many Ways (Alternate)', 20, 1, 6, 'Willie Dixon', 135053, 4459946, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Talkin'' ''Bout Women Obviously', 20, 1, 6, 'Amos Blakemore/Buddy Guy', 589531, 19161377, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Jorge Da Capadócia', 21, 1, 7, 'Jorge Ben', 177397, 5842196, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Prenda Minha', 21, 1, 7, 'Tradicional', 99369, 3225364, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Meditação', 21, 1, 7, 'Tom Jobim - Newton Mendoça', 148793, 4865597, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Terra', 21, 1, 7, 'Caetano Veloso', 482429, 15889054, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Eclipse Oculto', 21, 1, 7, 'Caetano Veloso', 221936, 7382703, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Texto "Verdade Tropical"', 21, 1, 7, 'Caetano Veloso', 84088, 2752161, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Bem Devagar', 21, 1, 7, 'Gilberto Gil', 133172, 4333651, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Drão', 21, 1, 7, 'Gilberto Gil', 156264, 5065932, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Saudosismo', 21, 1, 7, 'Caetano Veloso', 144326, 4726981, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Carolina', 21, 1, 7, 'Chico Buarque', 181812, 5924159, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Sozinho', 21, 1, 7, 'Peninha', 190589, 6253200, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Esse Cara', 21, 1, 7, 'Caetano Veloso', 223111, 7217126, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Mel', 21, 1, 7, 'Caetano Veloso - Waly Salomão', 294765, 9854062, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Linha Do Equador', 21, 1, 7, 'Caetano Veloso - Djavan', 299337, 10003747, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Odara', 21, 1, 7, 'Caetano Veloso', 141270, 4704104, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('A Luz De Tieta', 21, 1, 7, 'Caetano Veloso', 251742, 8507446, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Atrás Da Verd-E-Rosa Só Não Vai Quem Já Morreu', 21, 1, 7, 'David Corrêa - Paulinho Carvalho - Carlos Sena - Bira do Ponto', 307252, 10364247, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Vida Boa', 21, 1, 7, 'Fausto Nilo - Armandinho', 281730, 9411272, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Sozinho (Hitmakers Classic Mix)', 22, 1, 7, 436636, 14462072, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Sozinho (Hitmakers Classic Radio Edit)', 22, 1, 7, 195004, 6455134, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Sozinho (Caêdrum ''n'' Bass)', 22, 1, 7, 328071, 10975007, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Carolina', 23, 1, 7, 163056, 5375395, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Essa Moça Ta Diferente', 23, 1, 7, 167235, 5568574, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Vai Passar', 23, 1, 7, 369763, 12359161, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Samba De Orly', 23, 1, 7, 162429, 5431854, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Bye, Bye Brasil', 23, 1, 7, 283402, 9499590, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Atras Da Porta', 23, 1, 7, 189675, 6132843, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Tatuagem', 23, 1, 7, 172120, 5645703, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('O Que Será (À Flor Da Terra)', 23, 1, 7, 167288, 5574848, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Morena De Angola', 23, 1, 7, 186801, 6373932, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Apesar De Você', 23, 1, 7, 234501, 7886937, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('A Banda', 23, 1, 7, 132493, 4349539, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Minha Historia', 23, 1, 7, 182256, 6029673, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Com Açúcar E Com Afeto', 23, 1, 7, 175386, 5846442, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Brejo Da Cruz', 23, 1, 7, 214099, 7270749, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Meu Caro Amigo', 23, 1, 7, 260257, 8778172, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Geni E O Zepelim', 23, 1, 7, 317570, 10342226, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Trocando Em Miúdos', 23, 1, 7, 169717, 5461468, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Vai Trabalhar Vagabundo', 23, 1, 7, 139154, 4693941, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Gota D''água', 23, 1, 7, 153208, 5074189, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Construção / Deus Lhe Pague', 23, 1, 7, 383059, 12675305, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Mateus Enter', 24, 1, 7, 'Chico Science', 33149, 1103013, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('O Cidadão Do Mundo', 24, 1, 7, 'Chico Science', 200933, 6724966, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Etnia', 24, 1, 7, 'Chico Science', 152555, 5061413, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Quilombo Groove instrumental', 24, 1, 7, 'Chico Science', 151823, 5042447, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Macô', 24, 1, 7, 'Chico Science', 249600, 8253934, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Um Passeio No Mundo Livre', 24, 1, 7, 'Chico Science', 240091, 7984291, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Samba Do Lado', 24, 1, 7, 'Chico Science', 227317, 7541688, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Maracatu Atômico', 24, 1, 7, 'Chico Science', 284264, 9670057, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('O Encontro De Isaac Asimov Com Santos Dumont No Céu', 24, 1, 7, 'Chico Science', 99108, 3240816, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Corpo De Lama', 24, 1, 7, 'Chico Science', 232672, 7714954, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Sobremesa', 24, 1, 7, 'Chico Science', 240091, 7960868, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Manguetown', 24, 1, 7, 'Chico Science', 194560, 6475159, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Um Satélite Na Cabeça', 24, 1, 7, 'Chico Science', 126615, 4272821, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Baião Ambiental instrumental', 24, 1, 7, 'Chico Science', 152659, 5198539, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Sangue De Bairro', 24, 1, 7, 'Chico Science', 132231, 4415557, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Enquanto O Mundo Explode', 24, 1, 7, 'Chico Science', 88764, 2968650, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Interlude Zumbi', 24, 1, 7, 'Chico Science', 71627, 2408550, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Criança De Domingo', 24, 1, 7, 'Chico Science', 208222, 6984813, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Amor De Muito', 24, 1, 7, 'Chico Science', 175333, 5881293, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Samidarish instrumental', 24, 1, 7, 'Chico Science', 272431, 8911641, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Maracatu Atômico [Atomic Version]', 24, 1, 7, 'Chico Science', 273084, 9019677, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Maracatu Atômico [Ragga Mix]', 24, 1, 7, 'Chico Science', 210155, 6986421, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Maracatu Atômico [Trip Hop]', 24, 1, 7, 'Chico Science', 221492, 7380787, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Banditismo Por Uma Questa', 25, 1, 7, 307095, 10251097, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Banditismo Por Uma Questa', 25, 1, 7, 243644, 8147224, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Rios Pontes & Overdrives', 25, 1, 7, 286720, 9659152, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Cidade', 25, 1, 7, 216346, 7241817, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Praiera', 25, 1, 7, 183640, 6172781, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Samba Makossa', 25, 1, 7, 271856, 9095410, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Da Lama Ao Caos', 25, 1, 7, 251559, 8378065, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Maracatu De Tiro Certeiro', 25, 1, 7, 88868, 2901397, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Salustiano Song', 25, 1, 7, 215405, 7183969, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Antene Se', 25, 1, 7, 248372, 8253618, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Risoflora', 25, 1, 7, 105586, 3536938, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Lixo Do Mangue', 25, 1, 7, 193253, 6534200, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Computadores Fazem Arte', 25, 1, 7, 404323, 13702771, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Girassol', 26, 1, 8, 'Bino Farias/Da Gama/Lazão/Pedro Luis/Toni Garrido', 249808, 8327676, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('A Sombra Da Maldade', 26, 1, 8, 'Da Gama/Toni Garrido', 230922, 7697230, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Johnny B. Goode', 26, 1, 8, 'Chuck Berry', 254615, 8505985, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Soldado Da Paz', 26, 1, 8, 'Herbert Vianna', 194220, 6455080, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Firmamento', 26, 1, 8, 'Bino Farias/Da Gama/Henry Lawes/Lazão/Toni Garrido/Winston Foser-Vers', 222145, 7402658, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Extra', 26, 1, 8, 'Gilberto Gil', 304352, 10078050, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('O Erê', 26, 1, 8, 'Bernardo Vilhena/Bino Farias/Da Gama/Lazão/Toni Garrido', 236382, 7866924, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Podes Crer', 26, 1, 8, 'Bino Farias/Da Gama/Lazão/Toni Garrido', 232280, 7747747, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('A Estrada', 26, 1, 8, 'Bino Farias/Da Gama/Lazão/Toni Garrido', 248842, 8275673, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Berlim', 26, 1, 8, 'Da Gama/Toni Garrido', 207542, 6920424, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Já Foi', 26, 1, 8, 'Bino Farias/Da Gama/Lazão/Toni Garrido', 221544, 7388466, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Onde Você Mora?', 26, 1, 8, 'Marisa Monte/Nando Reis', 256026, 8502588, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Pensamento', 26, 1, 8, 'Bino Farias/Da Gamma/Lazão/Rás Bernard', 173008, 5748424, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Conciliação', 26, 1, 8, 'Da Gama/Lazão/Rás Bernardo', 257619, 8552474, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Realidade Virtual', 26, 1, 8, 'Bino Farias/Da Gama/Lazão/Toni Garrido', 195239, 6503533, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Mensagem', 26, 1, 8, 'Bino Farias/Da Gama/Lazão/Rás Bernardo', 225332, 7488852, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('A Cor Do Sol', 26, 1, 8, 'Bernardo Vilhena/Da Gama/Lazão', 231392, 7663348, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Onde Você Mora?', 27, 1, 8, 'Marisa Monte/Nando Reis', 298396, 10056970, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('O Erê', 27, 1, 8, 'Bernardo Vilhena/Bino/Da Gama/Lazao/Toni Garrido', 206942, 6950332, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('A Sombra Da Maldade', 27, 1, 8, 'Da Gama/Toni Garrido', 285231, 9544383, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('A Estrada', 27, 1, 8, 'Da Gama/Lazao/Toni Garrido', 282174, 9344477, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Falar A Verdade', 27, 1, 8, 'Bino/Da Gama/Ras Bernardo', 244950, 8189093, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Firmamento', 27, 1, 8, 'Harry Lawes/Winston Foster-Vers', 225488, 7507866, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Pensamento', 27, 1, 8, 'Bino/Da Gama/Ras Bernardo', 192391, 6399761, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Realidade Virtual', 27, 1, 8, 'Bino/Da Gamma/Lazao/Toni Garrido', 240300, 8069934, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Doutor', 27, 1, 8, 'Bino/Da Gama/Toni Garrido', 178155, 5950952, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Na Frente Da TV', 27, 1, 8, 'Bino/Da Gama/Lazao/Ras Bernardo', 289750, 9633659, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Downtown', 27, 1, 8, 'Cidade Negra', 239725, 8024386, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Sábado A Noite', 27, 1, 8, 'Lulu Santos', 267363, 8895073, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('A Cor Do Sol', 27, 1, 8, 'Bernardo Vilhena/Da Gama/Lazao', 273031, 9142937, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Eu Também Quero Beijar', 27, 1, 8, 'Fausto Nilo/Moraes Moreira/Pepeu Gomes', 211147, 7029400, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Noite Do Prazer', 28, 1, 7, 311353, 10309980, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('À Francesa', 28, 1, 7, 244532, 8150846, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Cada Um Cada Um (A Namoradeira)', 28, 1, 7, 253492, 8441034, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Linha Do Equador', 28, 1, 7, 244715, 8123466, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Amor Demais', 28, 1, 7, 254040, 8420093, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Férias', 28, 1, 7, 264202, 8731945, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Gostava Tanto De Você', 28, 1, 7, 230452, 7685326, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Flor Do Futuro', 28, 1, 7, 275748, 9205941, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Felicidade Urgente', 28, 1, 7, 266605, 8873358, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Livre Pra Viver', 28, 1, 7, 214595, 7111596, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Dig-Dig, Lambe-Lambe (Ao Vivo)', 29, 1, 9, 'Cassiano Costa/Cintia Maviane/J.F./Lucas Costa', 205479, 6892516, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Pererê', 29, 1, 9, 'Augusto Conceição/Chiclete Com Banana', 198661, 6643207, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('TriboTchan', 29, 1, 9, 'Cal Adan/Paulo Levi', 194194, 6507950, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Tapa Aqui, Descobre Ali', 29, 1, 9, 'Paulo Levi/W. Rangel', 188630, 6327391, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Daniela', 29, 1, 9, 'Jorge Cardoso/Pierre Onasis', 230791, 7748006, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Bate Lata', 29, 1, 9, 'Fábio Nolasco/Gal Sales/Ivan Brasil', 206733, 7034985, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Garotas do Brasil', 29, 1, 9, 'Garay, Ricardo Engels/Luca Predabom/Ludwig, Carlos Henrique/Maurício Vieira', 210155, 6973625, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Levada do Amor (Ailoviu)', 29, 1, 9, 'Luiz Wanderley/Paulo Levi', 190093, 6457752, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Lavadeira', 29, 1, 9, 'Do Vale, Valverde/Gal Oliveira/Luciano Pinto', 214256, 7254147, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Reboladeira', 29, 1, 9, 'Cal Adan/Ferrugem/Julinho Carioca/Tríona Ní Dhomhnaill', 210599, 7027525, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('É que Nessa Encarnação Eu Nasci Manga', 29, 1, 9, 'Lucina/Luli', 196519, 6568081, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Reggae Tchan', 29, 1, 9, 'Cal Adan/Del Rey, Tension/Edu Casanova', 206654, 6931328, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('My Love', 29, 1, 9, 'Jauperi/Zeu Góes', 203493, 6772813, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Latinha de Cerveja', 29, 1, 9, 'Adriano Bernandes/Edmar Neves', 166687, 5532564, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('You Shook Me', 30, 1, 1, 'J B Lenoir/Willie Dixon', 315951, 10249958, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('I Can''t Quit You Baby', 30, 1, 1, 'Willie Dixon', 263836, 8581414, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Communication Breakdown', 30, 1, 1, 'Jimmy Page/John Bonham/John Paul Jones', 192653, 6287257, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Dazed and Confused', 30, 1, 1, 'Jimmy Page', 401920, 13035765, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('The Girl I Love She Got Long Black Wavy Hair', 30, 1, 1, 'Jimmy Page/John Bonham/John Estes/John Paul Jones/Robert Plant', 183327, 5995686, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('What is and Should Never Be', 30, 1, 1, 'Jimmy Page/Robert Plant', 260675, 8497116, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Communication Breakdown(2)', 30, 1, 1, 'Jimmy Page/John Bonham/John Paul Jones', 161149, 5261022, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Travelling Riverside Blues', 30, 1, 1, 'Jimmy Page/Robert Johnson/Robert Plant', 312032, 10232581, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Whole Lotta Love', 30, 1, 1, 'Jimmy Page/John Bonham/John Paul Jones/Robert Plant/Willie Dixon', 373394, 12258175, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Somethin'' Else', 30, 1, 1, 'Bob Cochran/Sharon Sheeley', 127869, 4165650, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Communication Breakdown(3)', 30, 1, 1, 'Jimmy Page/John Bonham/John Paul Jones', 185260, 6041133, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('I Can''t Quit You Baby(2)', 30, 1, 1, 'Willie Dixon', 380551, 12377615, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('You Shook Me(2)', 30, 1, 1, 'J B Lenoir/Willie Dixon', 619467, 20138673, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('How Many More Times', 30, 1, 1, 'Chester Burnett/Jimmy Page/John Bonham/John Paul Jones/Robert Plant', 711836, 23092953, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Debra Kadabra', 31, 1, 1, 'Frank Zappa', 234553, 7649679, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Carolina Hard-Core Ecstasy', 31, 1, 1, 'Frank Zappa', 359680, 11731061, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Sam With The Showing Scalp Flat Top', 31, 1, 1, 'Don Van Vliet', 171284, 5572993, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Poofter''s Froth Wyoming Plans Ahead', 31, 1, 1, 'Frank Zappa', 183902, 6007019, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('200 Years Old', 31, 1, 1, 'Frank Zappa', 272561, 8912465, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Cucamonga', 31, 1, 1, 'Frank Zappa', 144483, 4728586, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Advance Romance', 31, 1, 1, 'Frank Zappa', 677694, 22080051, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Man With The Woman Head', 31, 1, 1, 'Don Van Vliet', 88894, 2922044, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Muffin Man', 31, 1, 1, 'Frank Zappa', 332878, 10891682, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Vai-Vai 2001', 32, 1, 10, 276349, 9402241, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('X-9 2001', 32, 1, 10, 273920, 9310370, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Gavioes 2001', 32, 1, 10, 282723, 9616640, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Nene 2001', 32, 1, 10, 284969, 9694508, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Rosas De Ouro 2001', 32, 1, 10, 284342, 9721084, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Mocidade Alegre 2001', 32, 1, 10, 282488, 9599937, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Camisa Verde 2001', 32, 1, 10, 283454, 9633755, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Leandro De Itaquera 2001', 32, 1, 10, 274808, 9451845, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Tucuruvi 2001', 32, 1, 10, 287921, 9883335, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Aguia De Ouro 2001', 32, 1, 10, 284160, 9698729, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Ipiranga 2001', 32, 1, 10, 248293, 8522591, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Morro Da Casa Verde 2001', 32, 1, 10, 284708, 9718778, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Perola Negra 2001', 32, 1, 10, 281626, 9619196, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Sao Lucas 2001', 32, 1, 10, 296254, 10020122, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Guanabara', 33, 1, 7, 'Marcos Valle', 247614, 8499591, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Mas Que Nada', 33, 1, 7, 'Jorge Ben', 248398, 8255254, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Vôo Sobre o Horizonte', 33, 1, 7, 'J.r.Bertami/Parana', 225097, 7528825, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('A Paz', 33, 1, 7, 'Donato/Gilberto Gil', 263183, 8619173, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Wave (Vou te Contar)', 33, 1, 7, 'Antonio Carlos Jobim', 271647, 9057557, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Água de Beber', 33, 1, 7, 'Antonio Carlos Jobim/Vinicius de Moraes', 146677, 4866476, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Samba da Bençaco', 33, 1, 7, 'Baden Powell/Vinicius de Moraes', 282200, 9440676, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Pode Parar', 33, 1, 7, 'Jorge Vercilo/Jota Maranhao', 179408, 6046678, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Menino do Rio', 33, 1, 7, 'Caetano Veloso', 262713, 8737489, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Ando Meio Desligado', 33, 1, 7, 'Caetano Veloso', 195813, 6547648, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Mistério da Raça', 33, 1, 7, 'Luiz Melodia/Ricardo Augusto', 184320, 6191752, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('All Star', 33, 1, 7, 'Nando Reis', 176326, 5891697, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Menina Bonita', 33, 1, 7, 'Alexandre Brazil/Pedro Luis/Rodrigo Cabelo', 237087, 7938246, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Pescador de Ilusões', 33, 1, 7, 'Macelo Yuka/O Rappa', 245524, 8267067, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('À Vontade (Live Mix)', 33, 1, 7, 'Bombom/Ed Motta', 180636, 5972430, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Maria Fumaça', 33, 1, 7, 'Luiz Carlos/Oberdan', 141008, 4743149, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Sambassim (dj patife remix)', 33, 1, 7, 'Alba Carvalho/Fernando Porto', 213655, 7243166, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Garota De Ipanema', 34, 1, 7, 'Vários', 279536, 9141343, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Tim Tim Por Tim Tim', 34, 1, 7, 'Vários', 213237, 7143328, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Tarde Em Itapoã', 34, 1, 7, 'Vários', 313704, 10344491, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Tanto Tempo', 34, 1, 7, 'Vários', 170292, 5572240, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Eu Vim Da Bahia - Live', 34, 1, 7, 'Vários', 157988, 5115428, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Alô Alô Marciano', 34, 1, 7, 'Vários', 238106, 8013065, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Linha Do Horizonte', 34, 1, 7, 'Vários', 279484, 9275929, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Only A Dream In Rio', 34, 1, 7, 'Vários', 371356, 12192989, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Abrir A Porta', 34, 1, 7, 'Vários', 271960, 8991141, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Alice', 34, 1, 7, 'Vários', 165982, 5594341, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Momentos Que Marcam', 34, 1, 7, 'Vários', 280137, 9313740, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Um Jantar Pra Dois', 34, 1, 7, 'Vários', 237714, 7819755, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Bumbo Da Mangueira', 34, 1, 7, 'Vários', 270158, 9073350, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Mr Funk Samba', 34, 1, 7, 'Vários', 213890, 7102545, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Santo Antonio', 34, 1, 7, 'Vários', 162716, 5492069, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Por Você', 34, 1, 7, 'Vários', 205557, 6792493, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Só Tinha De Ser Com Você', 34, 1, 7, 'Vários', 389642, 13085596, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Free Speech For The Dumb', 35, 1, 3, 'Molaney/Morris/Roberts/Wainwright', 155428, 5076048, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('It''s Electric', 35, 1, 3, 'Harris/Tatler', 213995, 6978601, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Sabbra Cadabra', 35, 1, 3, 'Black Sabbath', 380342, 12418147, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Turn The Page', 35, 1, 3, 'Seger', 366524, 11946327, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Die Die My Darling', 35, 1, 3, 'Danzig', 149315, 4867667, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Loverman', 35, 1, 3, 'Cave', 472764, 15446975, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Mercyful Fate', 35, 1, 3, 'Diamond/Shermann', 671712, 21942829, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Astronomy', 35, 1, 3, 'A.Bouchard/J.Bouchard/S.Pearlman', 397531, 13065612, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Whiskey In The Jar', 35, 1, 3, 'Traditional', 305005, 9943129, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Tuesday''s Gone', 35, 1, 3, 'Collins/Van Zandt', 545750, 17900787, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('The More I See', 35, 1, 3, 'Molaney/Morris/Roberts/Wainwright', 287973, 9378873, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('A Kind Of Magic', 36, 1, 1, 'Roger Taylor', 262608, 8689618, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Under Pressure', 36, 1, 1, 'Queen & David Bowie', 236617, 7739042, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Radio GA GA', 36, 1, 1, 'Roger Taylor', 343745, 11358573, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('I Want It All', 36, 1, 1, 'Queen', 241684, 7876564, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('I Want To Break Free', 36, 1, 1, 'John Deacon', 259108, 8552861, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Innuendo', 36, 1, 1, 'Queen', 387761, 12664591, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('It''s A Hard Life', 36, 1, 1, 'Freddie Mercury', 249417, 8112242, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Breakthru', 36, 1, 1, 'Queen', 249234, 8150479, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Who Wants To Live Forever', 36, 1, 1, 'Brian May', 297691, 9577577, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Headlong', 36, 1, 1, 'Queen', 273057, 8921404, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('The Miracle', 36, 1, 1, 'Queen', 294974, 9671923, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('I''m Going Slightly Mad', 36, 1, 1, 'Queen', 248032, 8192339, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('The Invisible Man', 36, 1, 1, 'Queen', 238994, 7920353, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Hammer To Fall', 36, 1, 1, 'Brian May', 220316, 7255404, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Friends Will Be Friends', 36, 1, 1, 'Freddie Mercury & John Deacon', 248920, 8114582, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('The Show Must Go On', 36, 1, 1, 'Queen', 263784, 8526760, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('One Vision', 36, 1, 1, 'Queen', 242599, 7936928, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Detroit Rock City', 37, 1, 1, 'Paul Stanley, B. Ezrin', 218880, 7146372, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Black Diamond', 37, 1, 1, 'Paul Stanley', 314148, 10266007, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Hard Luck Woman', 37, 1, 1, 'Paul Stanley', 216032, 7109267, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Sure Know Something', 37, 1, 1, 'Paul Stanley, Vincent Poncia', 242468, 7939886, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Love Gun', 37, 1, 1, 'Paul Stanley', 196257, 6424915, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Deuce', 37, 1, 1, 'Gene Simmons', 185077, 6097210, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Goin'' Blind', 37, 1, 1, 'Gene Simmons, S. Coronel', 216215, 7045314, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Shock Me', 37, 1, 1, 'Ace Frehley', 227291, 7529336, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Do You Love Me', 37, 1, 1, 'Paul Stanley, B. Ezrin, K. Fowley', 214987, 6976194, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('She', 37, 1, 1, 'Gene Simmons, S. Coronel', 248346, 8229734, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('I Was Made For Loving You', 37, 1, 1, 'Paul Stanley, Vincent Poncia, Desmond Child', 271360, 9018078, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Shout It Out Loud', 37, 1, 1, 'Paul Stanley, Gene Simmons, B. Ezrin', 219742, 7194424, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('God Of Thunder', 37, 1, 1, 'Paul Stanley', 255791, 8309077, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Calling Dr. Love', 37, 1, 1, 'Gene Simmons', 225332, 7395034, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Beth', 37, 1, 1, 'S. Penridge, Bob Ezrin, Peter Criss', 166974, 5360574, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Strutter', 37, 1, 1, 'Paul Stanley, Gene Simmons', 192496, 6317021, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Rock And Roll All Nite', 37, 1, 1, 'Paul Stanley, Gene Simmons', 173609, 5735902, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Cold Gin', 37, 1, 1, 'Ace Frehley', 262243, 8609783, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Plaster Caster', 37, 1, 1, 'Gene Simmons', 207333, 6801116, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('God Gave Rock ''n'' Roll To You', 37, 1, 1, 'Paul Stanley, Gene Simmons, Rus Ballard, Bob Ezrin', 320444, 10441590, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Heart of the Night', 38, 1, 2, 273737, 9098263, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('De La Luz', 38, 1, 2, 315219, 10518284, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Westwood Moon', 38, 1, 2, 295627, 9765802, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Midnight', 38, 1, 2, 266866, 8851060, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Playtime', 38, 1, 2, 273580, 9070880, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Surrender', 38, 1, 2, 287634, 9422926, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Valentino''s', 38, 1, 2, 296124, 9848545, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Believe', 38, 1, 2, 310778, 10317185, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('As We Sleep', 38, 1, 2, 316865, 10429398, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('When Evening Falls', 38, 1, 2, 298135, 9863942, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('J Squared', 38, 1, 2, 288757, 9480777, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Best Thing', 38, 1, 2, 274259, 9069394, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Maria', 39, 1, 4, 'Billie Joe Armstrong -Words Green Day -Music', 167262, 5484747, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Poprocks And Coke', 39, 1, 4, 'Billie Joe Armstrong -Words Green Day -Music', 158354, 5243078, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Longview', 39, 1, 4, 'Billie Joe Armstrong -Words Green Day -Music', 234083, 7714939, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Welcome To Paradise', 39, 1, 4, 'Billie Joe Armstrong -Words Green Day -Music', 224208, 7406008, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Basket Case', 39, 1, 4, 'Billie Joe Armstrong -Words Green Day -Music', 181629, 5951736, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('When I Come Around', 39, 1, 4, 'Billie Joe Armstrong -Words Green Day -Music', 178364, 5839426, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('She', 39, 1, 4, 'Billie Joe Armstrong -Words Green Day -Music', 134164, 4425128, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('J.A.R. (Jason Andrew Relva)', 39, 1, 4, 'Mike Dirnt -Words Green Day -Music', 170997, 5645755, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Geek Stink Breath', 39, 1, 4, 'Billie Joe Armstrong -Words Green Day -Music', 135888, 4408983, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Brain Stew', 39, 1, 4, 'Billie Joe Armstrong -Words Green Day -Music', 193149, 6305550, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Jaded', 39, 1, 4, 'Billie Joe Armstrong -Words Green Day -Music', 90331, 2950224, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Walking Contradiction', 39, 1, 4, 'Billie Joe Armstrong -Words Green Day -Music', 151170, 4932366, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Stuck With Me', 39, 1, 4, 'Billie Joe Armstrong -Words Green Day -Music', 135523, 4431357, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Hitchin'' A Ride', 39, 1, 4, 'Billie Joe Armstrong -Words Green Day -Music', 171546, 5616891, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Good Riddance (Time Of Your Life)', 39, 1, 4, 'Billie Joe Armstrong -Words Green Day -Music', 153600, 5075241, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Redundant', 39, 1, 4, 'Billie Joe Armstrong -Words Green Day -Music', 198164, 6481753, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Nice Guys Finish Last', 39, 1, 4, 'Billie Joe Armstrong -Words Green Day -Music', 170187, 5604618, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Minority', 39, 1, 4, 'Billie Joe Armstrong -Words Green Day -Music', 168803, 5535061, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Warning', 39, 1, 4, 'Billie Joe Armstrong -Words Green Day -Music', 221910, 7343176, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Waiting', 39, 1, 4, 'Billie Joe Armstrong -Words Green Day -Music', 192757, 6316430, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Macy''s Day Parade', 39, 1, 4, 'Billie Joe Armstrong -Words Green Day -Music', 213420, 7075573, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Into The Light', 40, 1, 1, 'David Coverdale', 76303, 2452653, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('River Song', 40, 1, 1, 'David Coverdale', 439510, 14359478, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('She Give Me ...', 40, 1, 1, 'David Coverdale', 252551, 8385478, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Don''t You Cry', 40, 1, 1, 'David Coverdale', 347036, 11269612, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Love Is Blind', 40, 1, 1, 'David Coverdale/Earl Slick', 344999, 11409720, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Slave', 40, 1, 1, 'David Coverdale/Earl Slick', 291892, 9425200, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Cry For Love', 40, 1, 1, 'Bossi/David Coverdale/Earl Slick', 293015, 9567075, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Living On Love', 40, 1, 1, 'Bossi/David Coverdale/Earl Slick', 391549, 12785876, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Midnight Blue', 40, 1, 1, 'David Coverdale/Earl Slick', 298631, 9750990, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Too Many Tears', 40, 1, 1, 'Adrian Vanderberg/David Coverdale', 359497, 11810238, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Don''t Lie To Me', 40, 1, 1, 'David Coverdale/Earl Slick', 283585, 9288007, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Wherever You May Go', 40, 1, 1, 'David Coverdale', 239699, 7803074, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Grito De Alerta', 41, 1, 7, 'Gonzaga Jr.', 202213, 6539422, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Não Dá Mais Pra Segurar (Explode Coração)', 41, 1, 7, 219768, 7083012, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Começaria Tudo Outra Vez', 41, 1, 7, 196545, 6473395, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('O Que É O Que É ?', 41, 1, 7, 259291, 8650647, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Sangrando', 41, 1, 7, 'Gonzaga Jr/Gonzaguinha', 169717, 5494406, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Diga Lá, Coração', 41, 1, 7, 255921, 8280636, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Lindo Lago Do Amor', 41, 1, 7, 'Gonzaga Jr.', 249678, 8353191, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Eu Apenas Queria Que Voçê Soubesse', 41, 1, 7, 155637, 5130056, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Com A Perna No Mundo', 41, 1, 7, 'Gonzaga Jr.', 227448, 7747108, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('E Vamos À Luta', 41, 1, 7, 222406, 7585112, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Um Homem Também Chora (Guerreiro Menino)', 41, 1, 7, 207229, 6854219, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Comportamento Geral', 41, 1, 7, 'Gonzaga Jr', 181577, 5997444, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Ponto De Interrogação', 41, 1, 7, 180950, 5946265, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Espere Por Mim, Morena', 41, 1, 7, 'Gonzaguinha', 207072, 6796523, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Meia-Lua Inteira', 23, 1, 7, 222093, 7466288, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Voce e Linda', 23, 1, 7, 242938, 8050268, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Um Indio', 23, 1, 7, 195944, 6453213, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Podres Poderes', 23, 1, 7, 259761, 8622495, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Voce Nao Entende Nada - Cotidiano', 23, 1, 7, 421982, 13885612, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('O Estrangeiro', 23, 1, 7, 374700, 12472890, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Menino Do Rio', 23, 1, 7, 147670, 4862277, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Qualquer Coisa', 23, 1, 7, 193410, 6372433, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Sampa', 23, 1, 7, 185051, 6151831, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Queixa', 23, 1, 7, 299676, 9953962, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('O Leaozinho', 23, 1, 7, 184398, 6098150, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Fora Da Ordem', 23, 1, 7, 354011, 11746781, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Terra', 23, 1, 7, 401319, 13224055, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Alegria, Alegria', 23, 1, 7, 169221, 5497025, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Balada Do Louco', 42, 1, 4, 'Arnaldo Baptista - Rita Lee', 241057, 7852328, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Ando Meio Desligado', 42, 1, 4, 'Arnaldo Baptista - Rita Lee - Sérgio Dias', 287817, 9484504, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Top Top', 42, 1, 4, 'Os Mutantes - Arnolpho Lima Filho', 146938, 4875374, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Baby', 42, 1, 4, 'Caetano Veloso', 177188, 5798202, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('A E O Z', 42, 1, 4, 'Mutantes', 518556, 16873005, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Panis Et Circenses', 42, 1, 4, 'Caetano Veloso - Gilberto Gil', 125152, 4069688, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Chão De Estrelas', 42, 1, 4, 'Orestes Barbosa-Sílvio Caldas', 284813, 9433620, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Vida De Cachorro', 42, 1, 4, 'Rita Lee - Arnaldo Baptista - Sérgio Baptista', 195186, 6411149, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Bat Macumba', 42, 1, 4, 'Gilberto Gil - Caetano Veloso', 187794, 6295223, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Desculpe Babe', 42, 1, 4, 'Arnaldo Baptista - Rita Lee', 170422, 5637959, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Rita Lee', 42, 1, 4, 'Arnaldo Baptista/Rita Lee/Sérgio Dias', 189257, 6270503, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Posso Perder Minha Mulher, Minha Mãe, Desde Que Eu Tenha O Rock And Roll', 42, 1, 4, 'Arnaldo Baptista - Rita Lee - Arnolpho Lima Filho', 222955, 7346254, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Banho De Lua', 42, 1, 4, 'B. de Filippi - F. Migliaci - Versão: Fred Jorge', 221831, 7232123, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Meu Refrigerador Não Funciona', 42, 1, 4, 'Arnaldo Baptista - Rita Lee - Sérgio Dias', 382981, 12495906, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Burn', 43, 1, 1, 'Coverdale/Lord/Paice', 453955, 14775708, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Stormbringer', 43, 1, 1, 'Coverdale', 277133, 9050022, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Gypsy', 43, 1, 1, 'Coverdale/Hughes/Lord/Paice', 339173, 11046952, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Lady Double Dealer', 43, 1, 1, 'Coverdale', 233586, 7608759, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Mistreated', 43, 1, 1, 'Coverdale', 758648, 24596235, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Smoke On The Water', 43, 1, 1, 'Gillan/Glover/Lord/Paice', 618031, 20103125, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('You Fool No One', 43, 1, 1, 'Coverdale/Lord/Paice', 804101, 26369966, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Custard Pie', 44, 1, 1, 'Jimmy Page/Robert Plant', 253962, 8348257, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('The Rover', 44, 1, 1, 'Jimmy Page/Robert Plant', 337084, 11011286, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('In My Time Of Dying', 44, 1, 1, 'John Bonham/John Paul Jones', 666017, 21676727, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Houses Of The Holy', 44, 1, 1, 'Jimmy Page/Robert Plant', 242494, 7972503, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Trampled Under Foot', 44, 1, 1, 'John Paul Jones', 336692, 11154468, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Kashmir', 44, 1, 1, 'John Bonham', 508604, 16686580, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Imperatriz', 45, 1, 7, 'Guga/Marquinho Lessa/Tuninho Professor', 339173, 11348710, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Beija-Flor', 45, 1, 7, 'Caruso/Cleber/Deo/Osmar', 327000, 10991159, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Viradouro', 45, 1, 7, 'Dadinho/Gilbreto Gomes/Gustavo/P.C. Portugal/R. Mocoto', 344320, 11484362, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Mocidade', 45, 1, 7, 'Domenil/J. Brito/Joaozinho/Rap, Marcelo Do', 261720, 8817757, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Unidos Da Tijuca', 45, 1, 7, 'Douglas/Neves, Vicente Das/Silva, Gilmar L./Toninho Gentil/Wantuir', 338834, 11440689, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Salgueiro', 45, 1, 7, 'Augusto/Craig Negoescu/Rocco Filho/Saara, Ze Carlos Da', 305920, 10294741, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Mangueira', 45, 1, 7, 'Bizuca/Clóvis Pê/Gilson Bernini/Marelo D''Aguia', 298318, 9999506, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('União Da Ilha', 45, 1, 7, 'Dito/Djalma Falcao/Ilha, Almir Da/Márcio André', 330945, 11100945, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Grande Rio', 45, 1, 7, 'Carlos Santos/Ciro/Claudio Russo/Zé Luiz', 307252, 10251428, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Portela', 45, 1, 7, 'Flavio Bororo/Paulo Apparicio/Wagner Alves/Zeca Sereno', 319608, 10712216, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Caprichosos', 45, 1, 7, 'Gule/Jorge 101/Lequinho/Luiz Piao', 351320, 11870956, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Tradição', 45, 1, 7, 'Adalto Magalha/Lourenco', 269165, 9114880, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Império Serrano', 45, 1, 7, 'Arlindo Cruz/Carlos Sena/Elmo Caetano/Mauricao', 334942, 11161196, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Tuiuti', 45, 1, 7, 'Claudio Martins/David Lima/Kleber Rodrigues/Livre, Cesare Som', 259657, 8749492, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('(Da Le) Yaleo', 46, 1, 1, 'Santana', 353488, 11769507, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Love Of My Life', 46, 1, 1, 'Carlos Santana & Dave Matthews', 347820, 11634337, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Put Your Lights On', 46, 1, 1, 'E. Shrody', 285178, 9394769, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Africa Bamba', 46, 1, 1, 'I. Toure, S. Tidiane Toure, Carlos Santana & K. Perazzo', 282827, 9492487, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Smooth', 46, 1, 1, 'M. Itaal Shur & Rob Thomas', 298161, 9867455, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Do You Like The Way', 46, 1, 1, 'L. Hill', 354899, 11741062, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Maria Maria', 46, 1, 1, 'W. Jean, J. Duplessis, Carlos Santana, K. Perazzo & R. Rekow', 262635, 8664601, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Migra', 46, 1, 1, 'R. Taha, Carlos Santana & T. Lindsay', 329064, 10963305, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Corazon Espinado', 46, 1, 1, 'F. Olivera', 276114, 9206802, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Wishing It Was', 46, 1, 1, 'Eale-Eye Cherry, M. Simpson, J. King & M. Nishita', 292832, 9771348, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('El Farol', 46, 1, 1, 'Carlos Santana & KC Porter', 291160, 9599353, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Primavera', 46, 1, 1, 'KC Porter & JB Eckl', 378618, 12504234, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('The Calling', 46, 1, 1, 'Carlos Santana & C. Thompson', 747755, 24703884, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Solução', 47, 1, 7, 247431, 8100449, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Manuel', 47, 1, 7, 230269, 7677671, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Entre E Ouça', 47, 1, 7, 286302, 9391004, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Um Contrato Com Deus', 47, 1, 7, 202501, 6636465, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Um Jantar Pra Dois', 47, 1, 7, 244009, 8021589, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Vamos Dançar', 47, 1, 7, 226194, 7617432, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Um Love', 47, 1, 7, 181603, 6095524, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Seis Da Tarde', 47, 1, 7, 238445, 7935898, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Baixo Rio', 47, 1, 7, 198008, 6521676, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Sombras Do Meu Destino', 47, 1, 7, 280685, 9161539, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Do You Have Other Loves?', 47, 1, 7, 295235, 9604273, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Agora Que O Dia Acordou', 47, 1, 7, 323213, 10572752, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Já!!!', 47, 1, 7, 217782, 7103608, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('A Rua', 47, 1, 7, 238027, 7930264, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Now''s The Time', 48, 1, 2, 'Miles Davis', 197459, 6358868, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Jeru', 48, 1, 2, 'Miles Davis', 193410, 6222536, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Compulsion', 48, 1, 2, 'Miles Davis', 345025, 11254474, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Tempus Fugit', 48, 1, 2, 'Miles Davis', 231784, 7548434, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Walkin''', 48, 1, 2, 'Miles Davis', 807392, 26411634, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('''Round Midnight', 48, 1, 2, 'Miles Davis', 357459, 11590284, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Bye Bye Blackbird', 48, 1, 2, 'Miles Davis', 476003, 15549224, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('New Rhumba', 48, 1, 2, 'Miles Davis', 277968, 9018024, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Generique', 48, 1, 2, 'Miles Davis', 168777, 5437017, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Summertime', 48, 1, 2, 'Miles Davis', 200437, 6461370, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('So What', 48, 1, 2, 'Miles Davis', 564009, 18360449, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('The Pan Piper', 48, 1, 2, 'Miles Davis', 233769, 7593713, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Someday My Prince Will Come', 48, 1, 2, 'Miles Davis', 544078, 17890773, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('My Funny Valentine (Live)', 49, 1, 2, 'Miles Davis', 907520, 29416781, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('E.S.P.', 49, 1, 2, 'Miles Davis', 330684, 11079866, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Nefertiti', 49, 1, 2, 'Miles Davis', 473495, 15478450, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Petits Machins (Little Stuff)', 49, 1, 2, 'Miles Davis', 487392, 16131272, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Miles Runs The Voodoo Down', 49, 1, 2, 'Miles Davis', 843964, 27967919, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Little Church (Live)', 49, 1, 2, 'Miles Davis', 196101, 6273225, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Black Satin', 49, 1, 2, 'Miles Davis', 316682, 10529483, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Jean Pierre (Live)', 49, 1, 2, 'Miles Davis', 243461, 7955114, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Time After Time', 49, 1, 2, 'Miles Davis', 220734, 7292197, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Portia', 49, 1, 2, 'Miles Davis', 378775, 12520126, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Space Truckin''', 50, 1, 1, 'Blackmore/Gillan/Glover/Lord/Paice', 1196094, 39267613, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Going Down / Highway Star', 50, 1, 1, 'Gillan/Glover/Lord/Nix - Blackmore/Paice', 913658, 29846063, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Mistreated (Alternate Version)', 50, 1, 1, 'Blackmore/Coverdale', 854700, 27775442, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('You Fool No One (Alternate Version)', 50, 1, 1, 'Blackmore/Coverdale/Lord/Paice', 763924, 24887209, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Jeepers Creepers', 51, 1, 2, 185965, 5991903, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Blue Rythm Fantasy', 51, 1, 2, 348212, 11204006, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Drum Boogie', 51, 1, 2, 191555, 6185636, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Let Me Off Uptown', 51, 1, 2, 187637, 6034685, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Leave Us Leap', 51, 1, 2, 182726, 5898810, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Opus No.1', 51, 1, 2, 179800, 5846041, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Boogie Blues', 51, 1, 2, 204199, 6603153, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('How High The Moon', 51, 1, 2, 201430, 6529487, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Disc Jockey Jump', 51, 1, 2, 193149, 6260820, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Up An'' Atom', 51, 1, 2, 179565, 5822645, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Bop Boogie', 51, 1, 2, 189596, 6093124, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Lemon Drop', 51, 1, 2, 194089, 6287531, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Coronation Drop', 51, 1, 2, 176222, 5899898, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Overtime', 51, 1, 2, 163030, 5432236, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Imagination', 51, 1, 2, 289306, 9444385, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Don''t Take Your Love From Me', 51, 1, 2, 282331, 9244238, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Midget', 51, 1, 2, 217025, 7257663, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('I''m Coming Virginia', 51, 1, 2, 280163, 9209827, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Payin'' Them Dues Blues', 51, 1, 2, 198556, 6536918, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Jungle Drums', 51, 1, 2, 199627, 6546063, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Showcase', 51, 1, 2, 201560, 6697510, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Swedish Schnapps', 51, 1, 2, 191268, 6359750, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Samba Da Bênção', 52, 1, 11, 409965, 13490008, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Pot-Pourri N.º 4', 52, 1, 11, 392437, 13125975, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Onde Anda Você', 52, 1, 11, 168437, 5550356, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Samba Da Volta', 52, 1, 11, 170631, 5676090, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Canto De Ossanha', 52, 1, 11, 204956, 6771624, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Pot-Pourri N.º 5', 52, 1, 11, 219898, 7117769, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Formosa', 52, 1, 11, 137482, 4560873, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Como É Duro Trabalhar', 52, 1, 11, 226168, 7541177, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Minha Namorada', 52, 1, 11, 244297, 7927967, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Por Que Será', 52, 1, 11, 162142, 5371483, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Berimbau', 52, 1, 11, 190667, 6335548, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Deixa', 52, 1, 11, 179826, 5932799, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Pot-Pourri N.º 2', 52, 1, 11, 211748, 6878359, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Samba Em Prelúdio', 52, 1, 11, 212636, 6923473, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Carta Ao Tom 74', 52, 1, 11, 162560, 5382354, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Linha de Passe (João Bosco)', 53, 1, 7, 230948, 7902328, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Pela Luz dos Olhos Teus (Miúcha e Tom Jobim)', 53, 1, 7, 163970, 5399626, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Chão de Giz (Elba Ramalho)', 53, 1, 7, 274834, 9016916, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Marina (Dorival Caymmi)', 53, 1, 7, 172643, 5523628, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Aquarela (Toquinho)', 53, 1, 7, 259944, 8480140, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Coração do Agreste (Fafá de Belém)', 53, 1, 7, 258194, 8380320, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Dona (Roupa Nova)', 53, 1, 7, 243356, 7991295, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Começaria Tudo Outra Vez (Maria Creuza)', 53, 1, 7, 206994, 6851151, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Caçador de Mim (Sá & Guarabyra)', 53, 1, 7, 238341, 7751360, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Romaria (Renato Teixeira)', 53, 1, 7, 244793, 8033885, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('As Rosas Não Falam (Beth Carvalho)', 53, 1, 7, 116767, 3836641, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Wave (Os Cariocas)', 53, 1, 7, 130063, 4298006, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Garota de Ipanema (Dick Farney)', 53, 1, 7, 174367, 5767474, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Preciso Apender a Viver Só (Maysa)', 53, 1, 7, 143464, 4642359, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Susie Q', 54, 1, 1, 'Hawkins-Lewis-Broadwater', 275565, 9043825, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('I Put A Spell On You', 54, 1, 1, 'Jay Hawkins', 272091, 8943000, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Proud Mary', 54, 1, 1, 'J. C. Fogerty', 189022, 6229590, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Bad Moon Rising', 54, 1, 1, 'J. C. Fogerty', 140146, 4609835, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Lodi', 54, 1, 1, 'J. C. Fogerty', 191451, 6260214, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Green River', 54, 1, 1, 'J. C. Fogerty', 154279, 5105874, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Commotion', 54, 1, 1, 'J. C. Fogerty', 162899, 5354252, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Down On The Corner', 54, 1, 1, 'J. C. Fogerty', 164858, 5521804, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Fortunate Son', 54, 1, 1, 'J. C. Fogerty', 140329, 4617559, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Travelin'' Band', 54, 1, 1, 'J. C. Fogerty', 129358, 4270414, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Who''ll Stop The Rain', 54, 1, 1, 'J. C. Fogerty', 149394, 4899579, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Up Around The Bend', 54, 1, 1, 'J. C. Fogerty', 162429, 5368701, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Run Through The Jungle', 54, 1, 1, 'J. C. Fogerty', 186044, 6156567, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Lookin'' Out My Back Door', 54, 1, 1, 'J. C. Fogerty', 152946, 5034670, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Long As I Can See The Light', 54, 1, 1, 'J. C. Fogerty', 213237, 6924024, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('I Heard It Through The Grapevine', 54, 1, 1, 'Whitfield-Strong', 664894, 21947845, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Have You Ever Seen The Rain?', 54, 1, 1, 'J. C. Fogerty', 160052, 5263675, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Hey Tonight', 54, 1, 1, 'J. C. Fogerty', 162847, 5343807, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Sweet Hitch-Hiker', 54, 1, 1, 'J. C. Fogerty', 175490, 5716603, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Someday Never Comes', 54, 1, 1, 'J. C. Fogerty', 239360, 7945235, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Walking On The Water', 55, 1, 1, 'J.C. Fogerty', 281286, 9302129, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Suzie-Q, Pt. 2', 55, 1, 1, 'J.C. Fogerty', 244114, 7986637, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Born On The Bayou', 55, 1, 1, 'J.C. Fogerty', 316630, 10361866, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Good Golly Miss Molly', 55, 1, 1, 'J.C. Fogerty', 163604, 5348175, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Tombstone Shadow', 55, 1, 1, 'J.C. Fogerty', 218880, 7209080, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Wrote A Song For Everyone', 55, 1, 1, 'J.C. Fogerty', 296385, 9675875, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Night Time Is The Right Time', 55, 1, 1, 'J.C. Fogerty', 190119, 6211173, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Cotton Fields', 55, 1, 1, 'J.C. Fogerty', 178181, 5919224, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('It Came Out Of The Sky', 55, 1, 1, 'J.C. Fogerty', 176718, 5807474, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Don''t Look Now', 55, 1, 1, 'J.C. Fogerty', 131918, 4366455, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('The Midnight Special', 55, 1, 1, 'J.C. Fogerty', 253596, 8297482, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Before You Accuse Me', 55, 1, 1, 'J.C. Fogerty', 207804, 6815126, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('My Baby Left Me', 55, 1, 1, 'J.C. Fogerty', 140460, 4633440, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Pagan Baby', 55, 1, 1, 'J.C. Fogerty', 385619, 12713813, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('(Wish I Could) Hideaway', 55, 1, 1, 'J.C. Fogerty', 228466, 7432978, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('It''s Just A Thought', 55, 1, 1, 'J.C. Fogerty', 237374, 7778319, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Molina', 55, 1, 1, 'J.C. Fogerty', 163239, 5390811, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Born To Move', 55, 1, 1, 'J.C. Fogerty', 342804, 11260814, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Lookin'' For A Reason', 55, 1, 1, 'J.C. Fogerty', 209789, 6933135, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Hello Mary Lou', 55, 1, 1, 'J.C. Fogerty', 132832, 4476563, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Gatas Extraordinárias', 56, 1, 7, 212506, 7095702, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Brasil', 56, 1, 7, 243696, 7911683, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Eu Sou Neguinha (Ao Vivo)', 56, 1, 7, 251768, 8376000, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Geração Coca-Cola (Ao Vivo)', 56, 1, 7, 228153, 7573301, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Lanterna Dos Afogados', 56, 1, 7, 204538, 6714582, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Coroné Antonio Bento', 56, 1, 7, 200437, 6713066, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Você Passa, Eu Acho Graça (Ao Vivo)', 56, 1, 7, 206733, 6943576, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Meu Mundo Fica Completo (Com Você)', 56, 1, 7, 247771, 8322240, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('1° De Julho', 56, 1, 7, 270262, 9017535, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Música Urbana 2', 56, 1, 7, 194899, 6383472, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Vida Bandida (Ao Vivo)', 56, 1, 7, 192626, 6360785, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Palavras Ao Vento', 56, 1, 7, 212453, 7048676, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Não Sei O Que Eu Quero Da Vida', 56, 1, 7, 151849, 5024963, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Woman Is The Nigger Of The World (Ao Vivo)', 56, 1, 7, 298919, 9724145, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Juventude Transviada (Ao Vivo)', 56, 1, 7, 278622, 9183808, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Malandragem', 57, 1, 7, 247588, 8165048, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('O Segundo Sol', 57, 1, 7, 252133, 8335629, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Smells Like Teen Spirit (Ao Vivo)', 57, 1, 7, 316865, 10384506, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('E.C.T.', 57, 1, 7, 227500, 7571834, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Todo Amor Que Houver Nesta Vida', 57, 1, 7, 227160, 7420347, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Metrô. Linha 743', 57, 1, 7, 174654, 5837495, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Nós (Ao Vivo)', 57, 1, 7, 193828, 6498661, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Na Cadência Do Samba', 57, 1, 7, 196075, 6483952, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Admirável Gado Novo', 57, 1, 7, 274390, 9144031, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Eleanor Rigby', 57, 1, 7, 189466, 6303205, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Socorro', 57, 1, 7, 258586, 8549393, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Blues Da Piedade', 57, 1, 7, 257123, 8472964, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Rubens', 57, 1, 7, 211853, 7026317, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Não Deixe O Samba Morrer - Cassia Eller e Alcione', 57, 1, 7, 268173, 8936345, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Mis Penas Lloraba Yo (Ao Vivo) Soy Gitano (Tangos)', 57, 1, 7, 188473, 6195854, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Comin'' Home', 58, 1, 1, 'Bolin/Coverdale/Paice', 235781, 7644604, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Lady Luck', 58, 1, 1, 'Cook/Coverdale', 168202, 5501379, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Gettin'' Tighter', 58, 1, 1, 'Bolin/Hughes', 218044, 7176909, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Dealer', 58, 1, 1, 'Bolin/Coverdale', 230922, 7591066, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('I Need Love', 58, 1, 1, 'Bolin/Coverdale', 263836, 8701064, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Drifter', 58, 1, 1, 'Bolin/Coverdale', 242834, 8001505, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Love Child', 58, 1, 1, 'Bolin/Coverdale', 188160, 6173806, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('This Time Around / Owed to ''G'' instrumental', 58, 1, 1, 'Bolin/Hughes/Lord', 370102, 11995679, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('You Keep On Moving', 58, 1, 1, 'Coverdale/Hughes', 319111, 10447868, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Speed King', 59, 1, 1, 'Blackmore, Gillan, Glover, Lord, Paice', 264385, 8587578, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Bloodsucker', 59, 1, 1, 'Blackmore, Gillan, Glover, Lord, Paice', 256261, 8344405, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Child In Time', 59, 1, 1, 'Blackmore, Gillan, Glover, Lord, Paice', 620460, 20230089, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Flight Of The Rat', 59, 1, 1, 'Blackmore, Gillan, Glover, Lord, Paice', 478302, 15563967, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Into The Fire', 59, 1, 1, 'Blackmore, Gillan, Glover, Lord, Paice', 210259, 6849310, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Living Wreck', 59, 1, 1, 'Blackmore, Gillan, Glover, Lord, Paice', 274886, 8993056, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Hard Lovin'' Man', 59, 1, 1, 'Blackmore, Gillan, Glover, Lord, Paice', 431203, 13931179, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Fireball', 60, 1, 1, 'Ritchie Blackmore, Ian Gillan, Roger Glover, Jon Lord, Ian Paice', 204721, 6714807, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('No No No', 60, 1, 1, 'Ritchie Blackmore, Ian Gillan, Roger Glover, Jon Lord, Ian Paice', 414902, 13646606, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Strange Kind Of Woman', 60, 1, 1, 'Ritchie Blackmore, Ian Gillan, Roger Glover, Jon Lord, Ian Paice', 247092, 8072036, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Anyone''s Daughter', 60, 1, 1, 'Ritchie Blackmore, Ian Gillan, Roger Glover, Jon Lord, Ian Paice', 284682, 9354480, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('The Mule', 60, 1, 1, 'Ritchie Blackmore, Ian Gillan, Roger Glover, Jon Lord, Ian Paice', 322063, 10638390, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Fools', 60, 1, 1, 'Ritchie Blackmore, Ian Gillan, Roger Glover, Jon Lord, Ian Paice', 500427, 16279366, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('No One Came', 60, 1, 1, 'Ritchie Blackmore, Ian Gillan, Roger Glover, Jon Lord, Ian Paice', 385880, 12643813, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Knocking At Your Back Door', 61, 1, 1, 'Richie Blackmore, Ian Gillian, Roger Glover', 424829, 13779332, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Bad Attitude', 61, 1, 1, 'Richie Blackmore, Ian Gillian, Roger Glover, Jon Lord', 307905, 10035180, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Child In Time (Son Of Aleric - Instrumental)', 61, 1, 1, 'Richie Blackmore, Ian Gillian, Roger Glover, Jon Lord, Ian Paice', 602880, 19712753, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Nobody''s Home', 61, 1, 1, 'Richie Blackmore, Ian Gillian, Roger Glover, Jon Lord, Ian Paice', 243017, 7929493, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Black Night', 61, 1, 1, 'Richie Blackmore, Ian Gillian, Roger Glover, Jon Lord, Ian Paice', 368770, 12058906, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Perfect Strangers', 61, 1, 1, 'Richie Blackmore, Ian Gillian, Roger Glover', 321149, 10445353, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('The Unwritten Law', 61, 1, 1, 'Richie Blackmore, Ian Gillian, Roger Glover, Ian Paice', 295053, 9740361, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Call Of The Wild', 61, 1, 1, 'Richie Blackmore, Ian Gillian, Roger Glover, Jon Lord', 293851, 9575295, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Hush', 61, 1, 1, 'South', 213054, 6944928, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Smoke On The Water', 61, 1, 1, 'Richie Blackmore, Ian Gillian, Roger Glover, Jon Lord, Ian Paice', 464378, 15180849, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Space Trucking', 61, 1, 1, 'Richie Blackmore, Ian Gillian, Roger Glover, Jon Lord, Ian Paice', 341185, 11122183, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Highway Star', 62, 1, 1, 'Ian Gillan/Ian Paice/Jon Lord/Ritchie Blckmore/Roger Glover', 368770, 12012452, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Maybe I''m A Leo', 62, 1, 1, 'Ian Gillan/Ian Paice/Jon Lord/Ritchie Blckmore/Roger Glover', 290455, 9502646, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Pictures Of Home', 62, 1, 1, 'Ian Gillan/Ian Paice/Jon Lord/Ritchie Blckmore/Roger Glover', 303777, 9903835, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Never Before', 62, 1, 1, 'Ian Gillan/Ian Paice/Jon Lord/Ritchie Blckmore/Roger Glover', 239830, 7832790, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Smoke On The Water', 62, 1, 1, 'Ian Gillan/Ian Paice/Jon Lord/Ritchie Blckmore/Roger Glover', 340871, 11246496, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Lazy', 62, 1, 1, 'Ian Gillan/Ian Paice/Jon Lord/Ritchie Blckmore/Roger Glover', 442096, 14397671, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Space Truckin''', 62, 1, 1, 'Ian Gillan/Ian Paice/Jon Lord/Ritchie Blckmore/Roger Glover', 272796, 8981030, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Vavoom : Ted The Mechanic', 63, 1, 1, 'Ian Gillan, Roger Glover, Jon Lord, Steve Morse, Ian Paice', 257384, 8510755, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Loosen My Strings', 63, 1, 1, 'Ian Gillan, Roger Glover, Jon Lord, Steve Morse, Ian Paice', 359680, 11702232, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Soon Forgotten', 63, 1, 1, 'Ian Gillan, Roger Glover, Jon Lord, Steve Morse, Ian Paice', 287791, 9401383, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Sometimes I Feel Like Screaming', 63, 1, 1, 'Ian Gillan, Roger Glover, Jon Lord, Steve Morse, Ian Paice', 451840, 14789410, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Cascades : I''m Not Your Lover', 63, 1, 1, 'Ian Gillan, Roger Glover, Jon Lord, Steve Morse, Ian Paice', 283689, 9209693, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('The Aviator', 63, 1, 1, 'Ian Gillan, Roger Glover, Jon Lord, Steve Morse, Ian Paice', 320992, 10532053, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Rosa''s Cantina', 63, 1, 1, 'Ian Gillan, Roger Glover, Jon Lord, Steve Morse, Ian Paice', 312372, 10323804, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('A Castle Full Of Rascals', 63, 1, 1, 'Ian Gillan, Roger Glover, Jon Lord, Steve Morse, Ian Paice', 311693, 10159566, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('A Touch Away', 63, 1, 1, 'Ian Gillan, Roger Glover, Jon Lord, Steve Morse, Ian Paice', 276323, 9098561, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Hey Cisco', 63, 1, 1, 'Ian Gillan, Roger Glover, Jon Lord, Steve Morse, Ian Paice', 354089, 11600029, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Somebody Stole My Guitar', 63, 1, 1, 'Ian Gillan, Roger Glover, Jon Lord, Steve Morse, Ian Paice', 249443, 8180421, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('The Purpendicular Waltz', 63, 1, 1, 'Ian Gillan, Roger Glover, Jon Lord, Steve Morse, Ian Paice', 283924, 9299131, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('King Of Dreams', 64, 1, 1, 'Blackmore, Glover, Turner', 328385, 10733847, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('The Cut Runs Deep', 64, 1, 1, 'Blackmore, Glover, Turner, Lord, Paice', 342752, 11191650, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Fire In The Basement', 64, 1, 1, 'Blackmore, Glover, Turner, Lord, Paice', 283977, 9267550, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Truth Hurts', 64, 1, 1, 'Blackmore, Glover, Turner', 314827, 10224612, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Breakfast In Bed', 64, 1, 1, 'Blackmore, Glover, Turner', 317126, 10323804, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Love Conquers All', 64, 1, 1, 'Blackmore, Glover, Turner', 227186, 7328516, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Fortuneteller', 64, 1, 1, 'Blackmore, Glover, Turner, Lord, Paice', 349335, 11369671, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Too Much Is Not Enough', 64, 1, 1, 'Turner, Held, Greenwood', 257724, 8382800, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Wicked Ways', 64, 1, 1, 'Blackmore, Glover, Turner, Lord, Paice', 393691, 12826582, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Stormbringer', 65, 1, 1, 'D.Coverdale/R.Blackmore/Ritchie Blackmore', 246413, 8044864, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Love Don''t Mean a Thing', 65, 1, 1, 'D.Coverdale/G.Hughes/Glenn Hughes/I.Paice/Ian Paice/J.Lord/John Lord/R.Blackmore/Ritchie Blackmore', 263862, 8675026, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Holy Man', 65, 1, 1, 'D.Coverdale/G.Hughes/Glenn Hughes/J.Lord/John Lord', 270236, 8818093, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Hold On', 65, 1, 1, 'D.Coverdal/G.Hughes/Glenn Hughes/I.Paice/Ian Paice/J.Lord/John Lord', 306860, 10022428, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Lady Double Dealer', 65, 1, 1, 'D.Coverdale/R.Blackmore/Ritchie Blackmore', 201482, 6554330, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('You Can''t Do it Right (With the One You Love)', 65, 1, 1, 'D.Coverdale/G.Hughes/Glenn Hughes/R.Blackmore/Ritchie Blackmore', 203755, 6709579, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('High Ball Shooter', 65, 1, 1, 'D.Coverdale/G.Hughes/Glenn Hughes/I.Paice/Ian Paice/J.Lord/John Lord/R.Blackmore/Ritchie Blackmore', 267833, 8772471, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('The Gypsy', 65, 1, 1, 'D.Coverdale/G.Hughes/Glenn Hughes/I.Paice/Ian Paice/J.Lord/John Lord/R.Blackmore/Ritchie Blackmore', 242886, 7946614, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Soldier Of Fortune', 65, 1, 1, 'D.Coverdale/R.Blackmore/Ritchie Blackmore', 193750, 6315321, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('The Battle Rages On', 66, 1, 1, 'ian paice/jon lord', 356963, 11626228, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Lick It Up', 66, 1, 1, 'roger glover', 240274, 7792604, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Anya', 66, 1, 1, 'jon lord/roger glover', 392437, 12754921, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Talk About Love', 66, 1, 1, 'roger glover', 247823, 8072171, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Time To Kill', 66, 1, 1, 'roger glover', 351033, 11354742, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Ramshackle Man', 66, 1, 1, 'roger glover', 334445, 10874679, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('A Twist In The Tail', 66, 1, 1, 'roger glover', 257462, 8413103, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Nasty Piece Of Work', 66, 1, 1, 'jon lord/roger glover', 276662, 9076997, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Solitaire', 66, 1, 1, 'roger glover', 282226, 9157021, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('One Man''s Meat', 66, 1, 1, 'roger glover', 278804, 9068960, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Pour Some Sugar On Me', 67, 1, 1, 292519, 9518842, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Photograph', 67, 1, 1, 248633, 8108507, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Love Bites', 67, 1, 1, 346853, 11305791, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Let''s Get Rocked', 67, 1, 1, 296019, 9724150, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Two Steps Behind [Acoustic Version]', 67, 1, 1, 259787, 8523388, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Animal', 67, 1, 1, 244741, 7985133, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Heaven Is', 67, 1, 1, 214021, 6988128, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Rocket', 67, 1, 1, 247248, 8092463, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('When Love & Hate Collide', 67, 1, 1, 257280, 8364633, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Action', 67, 1, 1, 220604, 7130830, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Make Love Like A Man', 67, 1, 1, 255660, 8309725, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Armageddon It', 67, 1, 1, 322455, 10522352, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Have You Ever Needed Someone So Bad', 67, 1, 1, 319320, 10400020, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Rock Of Ages', 67, 1, 1, 248424, 8150318, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Hysteria', 67, 1, 1, 355056, 11622738, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Bringin'' On The Heartbreak', 67, 1, 1, 272457, 8853324, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Roll Call', 68, 1, 2, 'Jim Beard', 321358, 10653494, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Otay', 68, 1, 2, 'John Scofield, Robert Aries, Milton Chambers and Gary Grainger', 423653, 14176083, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Groovus Interruptus', 68, 1, 2, 'Jim Beard', 319373, 10602166, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Paris On Mine', 68, 1, 2, 'Jon Herington', 368875, 12059507, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('In Time', 68, 1, 2, 'Sylvester Stewart', 368953, 12287103, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Plan B', 68, 1, 2, 'Dean Brown, Dennis Chambers & Jim Beard', 272039, 9032315, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Outbreak', 68, 1, 2, 'Jim Beard & Jon Herington', 659226, 21685807, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Baltimore, DC', 68, 1, 2, 'John Scofield', 346932, 11394473, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Talkin Loud and Saying Nothin', 68, 1, 2, 'James Brown & Bobby Byrd', 360411, 11994859, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Pétala', 69, 1, 7, 270080, 8856165, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Meu Bem-Querer', 69, 1, 7, 255608, 8330047, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Cigano', 69, 1, 7, 304692, 10037362, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Boa Noite', 69, 1, 7, 338755, 11283582, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Fato Consumado', 69, 1, 7, 211565, 7018586, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Faltando Um Pedaço', 69, 1, 7, 267728, 8788760, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Álibi', 69, 1, 7, 213237, 6928434, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Esquinas', 69, 1, 7, 280999, 9096726, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Se...', 69, 1, 7, 286432, 9413777, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Eu Te Devoro', 69, 1, 7, 311614, 10312775, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Lilás', 69, 1, 7, 274181, 9049542, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Acelerou', 69, 1, 7, 284081, 9396942, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Um Amor Puro', 69, 1, 7, 327784, 10687311, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Samurai', 70, 1, 7, 'Djavan', 330997, 10872787, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Nem Um Dia', 70, 1, 7, 'Djavan', 337423, 11181446, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Oceano', 70, 1, 7, 'Djavan', 217338, 7026441, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Açai', 70, 1, 7, 'Djavan', 270968, 8893682, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Serrado', 70, 1, 7, 'Djavan', 295314, 9842240, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Flor De Lis', 70, 1, 7, 'Djavan', 236355, 7801108, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Amar É Tudo', 70, 1, 7, 'Djavan', 211617, 7073899, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Azul', 70, 1, 7, 'Djavan', 253962, 8381029, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Seduzir', 70, 1, 7, 'Djavan', 277524, 9163253, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('A Carta', 70, 1, 7, 'Djavan - Gabriel, O Pensador', 347297, 11493463, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Sina', 70, 1, 7, 'Djavan', 268173, 8906539, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Acelerou', 70, 1, 7, 'Djavan', 284133, 9391439, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Um Amor Puro', 70, 1, 7, 'Djavan', 327105, 10664698, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('O Bêbado e a Equilibrista', 71, 1, 7, 223059, 7306143, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('O Mestre-Sala dos Mares', 71, 1, 7, 186226, 6180414, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Atrás da Porta', 71, 1, 7, 166608, 5432518, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Dois Pra Lá, Dois Pra Cá', 71, 1, 7, 263026, 8684639, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Casa no Campo', 71, 1, 7, 170788, 5531841, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Romaria', 71, 1, 7, 242834, 7968525, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Alô, Alô, Marciano', 71, 1, 7, 241397, 8137254, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Me Deixas Louca', 71, 1, 7, 214831, 6888030, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Fascinação', 71, 1, 7, 180793, 5793959, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Saudosa Maloca', 71, 1, 7, 278125, 9059416, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('As Aparências Enganam', 71, 1, 7, 247379, 8014346, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Madalena', 71, 1, 7, 157387, 5243721, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Maria Rosa', 71, 1, 7, 232803, 7592504, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Aprendendo A Jogar', 71, 1, 7, 290664, 9391041, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Layla', 72, 1, 6, 'Clapton/Gordon', 430733, 14115792, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Badge', 72, 1, 6, 'Clapton/Harrison', 163552, 5322942, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('I Feel Free', 72, 1, 6, 'Bruce/Clapton', 174576, 5725684, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Sunshine Of Your Love', 72, 1, 6, 'Bruce/Clapton', 252891, 8225889, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Crossroads', 72, 1, 6, 'Clapton/Robert Johnson Arr: Eric Clapton', 253335, 8273540, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Strange Brew', 72, 1, 6, 'Clapton/Collins/Pappalardi', 167810, 5489787, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('White Room', 72, 1, 6, 'Bruce/Clapton', 301583, 9872606, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Bell Bottom Blues', 72, 1, 6, 'Clapton', 304744, 9946681, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Cocaine', 72, 1, 6, 'Cale/Clapton', 215928, 7138399, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('I Shot The Sheriff', 72, 1, 6, 'Marley', 263862, 8738973, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('After Midnight', 72, 1, 6, 'Clapton/J. J. Cale', 191320, 6460941, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Swing Low Sweet Chariot', 72, 1, 6, 'Clapton/Trad. Arr. Clapton', 208143, 6896288, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Lay Down Sally', 72, 1, 6, 'Clapton/Levy', 231732, 7774207, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Knockin On Heavens Door', 72, 1, 6, 'Clapton/Dylan', 264411, 8758819, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Wonderful Tonight', 72, 1, 6, 'Clapton', 221387, 7326923, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Let It Grow', 72, 1, 6, 'Clapton', 297064, 9742568, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Promises', 72, 1, 6, 'Clapton/F.eldman/Linn', 180401, 6006154, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('I Can''t Stand It', 72, 1, 6, 'Clapton', 249730, 8271980, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Signe', 73, 1, 6, 'Eric Clapton', 193515, 6475042, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Before You Accuse Me', 73, 1, 6, 'Eugene McDaniel', 224339, 7456807, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Hey Hey', 73, 1, 6, 'Big Bill Broonzy', 196466, 6543487, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Tears In Heaven', 73, 1, 6, 'Eric Clapton, Will Jennings', 274729, 9032835, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Lonely Stranger', 73, 1, 6, 'Eric Clapton', 328724, 10894406, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Nobody Knows You When You''re Down & Out', 73, 1, 6, 'Jimmy Cox', 231836, 7669922, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Layla', 73, 1, 6, 'Eric Clapton, Jim Gordon', 285387, 9490542, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Running On Faith', 73, 1, 6, 'Jerry Lynn Williams', 378984, 12536275, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Walkin'' Blues', 73, 1, 6, 'Robert Johnson', 226429, 7435192, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Alberta', 73, 1, 6, 'Traditional', 222406, 7412975, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('San Francisco Bay Blues', 73, 1, 6, 'Jesse Fuller', 203363, 6724021, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Malted Milk', 73, 1, 6, 'Robert Johnson', 216528, 7096781, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Old Love', 73, 1, 6, 'Eric Clapton, Robert Cray', 472920, 15780747, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Rollin'' And Tumblin''', 73, 1, 6, 'McKinley Morgenfield (Muddy Waters)', 251768, 8407355, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Collision', 74, 1, 4, 'Jon Hudson/Mike Patton', 204303, 6656596, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Stripsearch', 74, 1, 4, 'Jon Hudson/Mike Bordin/Mike Patton', 270106, 8861119, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Last Cup Of Sorrow', 74, 1, 4, 'Bill Gould/Mike Patton', 251663, 8221247, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Naked In Front Of The Computer', 74, 1, 4, 'Mike Patton', 128757, 4225077, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Helpless', 74, 1, 4, 'Bill Gould/Mike Bordin/Mike Patton', 326217, 10753135, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Mouth To Mouth', 74, 1, 4, 'Bill Gould/Jon Hudson/Mike Bordin/Mike Patton', 228493, 7505887, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Ashes To Ashes', 74, 1, 4, 'Bill Gould/Jon Hudson/Mike Bordin/Mike Patton/Roddy Bottum', 217391, 7093746, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('She Loves Me Not', 74, 1, 4, 'Bill Gould/Mike Bordin/Mike Patton', 209867, 6887544, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Got That Feeling', 74, 1, 4, 'Mike Patton', 140852, 4643227, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Paths Of Glory', 74, 1, 4, 'Bill Gould/Jon Hudson/Mike Bordin/Mike Patton/Roddy Bottum', 257253, 8436300, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Home Sick Home', 74, 1, 4, 'Mike Patton', 119040, 3898976, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Pristina', 74, 1, 4, 'Bill Gould/Mike Patton', 232698, 7497361, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Land Of Sunshine', 75, 1, 4, 223921, 7353567, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Caffeine', 75, 1, 4, 267937, 8747367, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Midlife Crisis', 75, 1, 4, 263235, 8628841, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('RV', 75, 1, 4, 223242, 7288162, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Smaller And Smaller', 75, 1, 4, 310831, 10180103, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Everything''s Ruined', 75, 1, 4, 273658, 9010917, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Malpractice', 75, 1, 4, 241371, 7900683, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Kindergarten', 75, 1, 4, 270680, 8853647, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Be Aggressive', 75, 1, 4, 222432, 7298027, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('A Small Victory', 75, 1, 4, 297168, 9733572, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Crack Hitler', 75, 1, 4, 279144, 9162435, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Jizzlobber', 75, 1, 4, 398341, 12926140, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Midnight Cowboy', 75, 1, 4, 251924, 8242626, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Easy', 75, 1, 4, 185835, 6073008, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Get Out', 76, 1, 1, 'Mike Bordin, Billy Gould, Mike Patton', 137482, 4524972, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Ricochet', 76, 1, 1, 'Mike Bordin, Billy Gould, Mike Patton', 269400, 8808812, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Evidence', 76, 1, 1, 'Mike Bordin, Billy Gould, Mike Patton, Trey Spruance', 293590, 9626136, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('The Gentle Art Of Making Enemies', 76, 1, 1, 'Mike Bordin, Billy Gould, Mike Patton', 209319, 6908609, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Star A.D.', 76, 1, 1, 'Mike Bordin, Billy Gould, Mike Patton', 203807, 6747658, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Cuckoo For Caca', 76, 1, 1, 'Mike Bordin, Billy Gould, Mike Patton, Trey Spruance', 222902, 7388369, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Caralho Voador', 76, 1, 1, 'Mike Bordin, Billy Gould, Mike Patton, Trey Spruance', 242102, 8029054, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Ugly In The Morning', 76, 1, 1, 'Mike Bordin, Billy Gould, Mike Patton', 186435, 6224997, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Digging The Grave', 76, 1, 1, 'Mike Bordin, Billy Gould, Mike Patton', 185129, 6109259, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Take This Bottle', 76, 1, 1, 'Mike Bordin, Billy Gould, Mike Patton, Trey Spruance', 298997, 9779971, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('King For A Day', 76, 1, 1, 'Mike Bordin, Billy Gould, Mike Patton, Trey Spruance', 395859, 13163733, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('What A Day', 76, 1, 1, 'Mike Bordin, Billy Gould, Mike Patton', 158275, 5203430, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('The Last To Know', 76, 1, 1, 'Mike Bordin, Billy Gould, Mike Patton', 267833, 8736776, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Just A Man', 76, 1, 1, 'Mike Bordin, Billy Gould, Mike Patton', 336666, 11031254, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Absolute Zero', 76, 1, 1, 'Mike Bordin, Billy Gould, Mike Patton', 181995, 5929427, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('From Out Of Nowhere', 77, 1, 4, 'Faith No More', 202527, 6587802, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Epic', 77, 1, 4, 'Faith No More', 294008, 9631296, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Falling To Pieces', 77, 1, 4, 'Faith No More', 316055, 10333123, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Surprise! You''re Dead!', 77, 1, 4, 'Faith No More', 147226, 4823036, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Zombie Eaters', 77, 1, 4, 'Faith No More', 360881, 11835367, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('The Real Thing', 77, 1, 4, 'Faith No More', 493635, 16233080, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Underwater Love', 77, 1, 4, 'Faith No More', 231993, 7634387, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('The Morning After', 77, 1, 4, 'Faith No More', 223764, 7355898, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Woodpecker From Mars', 77, 1, 4, 'Faith No More', 340532, 11174250, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('War Pigs', 77, 1, 4, 'Tony Iommi, Bill Ward, Geezer Butler, Ozzy Osbourne', 464770, 15267802, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Edge Of The World', 77, 1, 4, 'Faith No More', 250357, 8235607, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Deixa Entrar', 78, 1, 7, 33619, 1095012, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Falamansa Song', 78, 1, 7, 237165, 7921313, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Xote Dos Milagres', 78, 1, 7, 269557, 8897778, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Rindo À Toa', 78, 1, 7, 222066, 7365321, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Confidência', 78, 1, 7, 222197, 7460829, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Forró De Tóquio', 78, 1, 7, 169273, 5588756, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Zeca Violeiro', 78, 1, 7, 143673, 4781949, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Avisa', 78, 1, 7, 355030, 11844320, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Principiando/Decolagem', 78, 1, 7, 116767, 3923789, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Asas', 78, 1, 7, 231915, 7711669, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Medo De Escuro', 78, 1, 7, 213760, 7056323, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Oração', 78, 1, 7, 271072, 9003882, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Minha Gata', 78, 1, 7, 181838, 6039502, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Desaforo', 78, 1, 7, 174524, 5853561, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('In Your Honor', 79, 1, 1, 'Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett', 230191, 7468463, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('No Way Back', 79, 1, 1, 'Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett', 196675, 6421400, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Best Of You', 79, 1, 1, 'Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett', 255712, 8363467, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('DOA', 79, 1, 1, 'Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett', 252186, 8232342, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Hell', 79, 1, 1, 'Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett', 117080, 3819255, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('The Last Song', 79, 1, 1, 'Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett', 199523, 6496742, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Free Me', 79, 1, 1, 'Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett', 278700, 9109340, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Resolve', 79, 1, 1, 'Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett', 288731, 9416186, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('The Deepest Blues Are Black', 79, 1, 1, 'Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett', 238419, 7735473, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('End Over End', 79, 1, 1, 'Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett', 352078, 11395296, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Still', 80, 1, 1, 'Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett/FOO FIGHTERS', 313182, 10323157, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('What If I Do?', 80, 1, 1, 'Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett/FOO FIGHTERS', 302994, 9929799, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Miracle', 80, 1, 1, 'Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett/FOO FIGHTERS', 209684, 6877994, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Another Round', 80, 1, 1, 'Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett/FOO FIGHTERS', 265848, 8752670, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Friend Of A Friend', 80, 1, 1, 'Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett/FOO FIGHTERS', 193280, 6355088, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Over And Out', 80, 1, 1, 'Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett/FOO FIGHTERS', 316264, 10428382, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('On The Mend', 80, 1, 1, 'Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett/FOO FIGHTERS', 271908, 9071997, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Virginia Moon', 80, 1, 1, 'Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett/FOO FIGHTERS', 229198, 7494639, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Cold Day In The Sun', 80, 1, 1, 'Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett/FOO FIGHTERS', 200724, 6596617, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Razor', 80, 1, 1, 'Dave Grohl, Taylor Hawkins, Nate Mendel, Chris Shiflett/FOO FIGHTERS', 293276, 9721373, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('All My Life', 81, 1, 4, 'Foo Fighters', 263653, 8665545, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Low', 81, 1, 4, 'Foo Fighters', 268120, 8847196, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Have It All', 81, 1, 4, 'Foo Fighters', 298057, 9729292, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Times Like These', 81, 1, 4, 'Foo Fighters', 266370, 8624691, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Disenchanted Lullaby', 81, 1, 4, 'Foo Fighters', 273528, 8919111, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Tired Of You', 81, 1, 4, 'Foo Fighters', 311353, 10094743, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Halo', 81, 1, 4, 'Foo Fighters', 306442, 10026371, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Lonely As You', 81, 1, 4, 'Foo Fighters', 277185, 9022628, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Overdrive', 81, 1, 4, 'Foo Fighters', 270550, 8793187, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Burn Away', 81, 1, 4, 'Foo Fighters', 298396, 9678073, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Come Back', 81, 1, 4, 'Foo Fighters', 469968, 15371980, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Doll', 82, 1, 1, 'Dave, Taylor, Nate, Chris', 83487, 2702572, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Monkey Wrench', 82, 1, 1, 'Dave, Taylor, Nate, Chris', 231523, 7527531, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Hey, Johnny Park!', 82, 1, 1, 'Dave, Taylor, Nate, Chris', 248528, 8079480, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('My Poor Brain', 82, 1, 1, 'Dave, Taylor, Nate, Chris', 213446, 6973746, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Wind Up', 82, 1, 1, 'Dave, Taylor, Nate, Chris', 152163, 4950667, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Up In Arms', 82, 1, 1, 'Dave, Taylor, Nate, Chris', 135732, 4406227, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('My Hero', 82, 1, 1, 'Dave, Taylor, Nate, Chris', 260101, 8472365, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('See You', 82, 1, 1, 'Dave, Taylor, Nate, Chris', 146782, 4888173, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Enough Space', 82, 1, 1, 'Dave Grohl', 157387, 5169280, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('February Stars', 82, 1, 1, 'Dave, Taylor, Nate, Chris', 289306, 9344875, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Everlong', 82, 1, 1, 'Dave Grohl', 250749, 8270816, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Walking After You', 82, 1, 1, 'Dave Grohl', 303856, 9898992, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('New Way Home', 82, 1, 1, 'Dave, Taylor, Nate, Chris', 342230, 11205664, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('My Way', 83, 1, 12, 'claude françois/gilles thibault/jacques revaux/paul anka', 275879, 8928684, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Strangers In The Night', 83, 1, 12, 'berthold kaempfert/charles singleton/eddie snyder', 155794, 5055295, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('New York, New York', 83, 1, 12, 'fred ebb/john kander', 206001, 6707993, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('I Get A Kick Out Of You', 83, 1, 12, 'cole porter', 194429, 6332441, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Something Stupid', 83, 1, 12, 'carson c. parks', 158615, 5210643, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Moon River', 83, 1, 12, 'henry mancini/johnny mercer', 198922, 6395808, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('What Now My Love', 83, 1, 12, 'carl sigman/gilbert becaud/pierre leroyer', 149995, 4913383, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Summer Love', 83, 1, 12, 'hans bradtke/heinz meier/johnny mercer', 174994, 5693242, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('For Once In My Life', 83, 1, 12, 'orlando murden/ronald miller', 171154, 5557537, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Love And Marriage', 83, 1, 12, 'jimmy van heusen/sammy cahn', 89730, 2930596, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('They Can''t Take That Away From Me', 83, 1, 12, 'george gershwin/ira gershwin', 161227, 5240043, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('My Kind Of Town', 83, 1, 12, 'jimmy van heusen/sammy cahn', 188499, 6119915, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Fly Me To The Moon', 83, 1, 12, 'bart howard', 149263, 4856954, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('I''ve Got You Under My Skin', 83, 1, 12, 'cole porter', 210808, 6883787, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('The Best Is Yet To Come', 83, 1, 12, 'carolyn leigh/cy coleman', 173583, 5633730, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('It Was A Very Good Year', 83, 1, 12, 'ervin drake', 266605, 8554066, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Come Fly With Me', 83, 1, 12, 'jimmy van heusen/sammy cahn', 190458, 6231029, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('That''s Life', 83, 1, 12, 'dean kay thompson/kelly gordon', 187010, 6095727, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('The Girl From Ipanema', 83, 1, 12, 'antonio carlos jobim/norman gimbel/vinicius de moraes', 193750, 6410674, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('The Lady Is A Tramp', 83, 1, 12, 'lorenz hart/richard rodgers', 184111, 5987372, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Bad, Bad Leroy Brown', 83, 1, 12, 'jim croce', 169900, 5548581, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Mack The Knife', 83, 1, 12, 'bert brecht/kurt weill/marc blitzstein', 292075, 9541052, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Loves Been Good To Me', 83, 1, 12, 'rod mckuen', 203964, 6645365, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('L.A. Is My Lady', 83, 1, 12, 'alan bergman/marilyn bergman/peggy lipton jones/quincy jones', 193175, 6378511, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Entrando Na Sua (Intro)', 84, 1, 7, 179252, 5840027, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Nervosa', 84, 1, 7, 229537, 7680421, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Funk De Bamba (Com Fernanda Abreu)', 84, 1, 7, 237191, 7866165, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Call Me At Cleo´s', 84, 1, 7, 236617, 7920510, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Olhos Coloridos (Com Sandra De Sá)', 84, 1, 7, 321332, 10567404, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Zambação', 84, 1, 7, 301113, 10030604, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Funk Hum', 84, 1, 7, 244453, 8084475, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Forty Days (Com DJ Hum)', 84, 1, 7, 221727, 7347172, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Balada Da Paula', 84, 1, 7, 'Emerson Villani', 322821, 10603717, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Dujji', 84, 1, 7, 324597, 10833935, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Meu Guarda-Chuva', 84, 1, 7, 248528, 8216625, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Motéis', 84, 1, 7, 213498, 7041077, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Whistle Stop', 84, 1, 7, 526132, 17533664, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('16 Toneladas', 84, 1, 7, 191634, 6390885, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Divirta-Se (Saindo Da Sua)', 84, 1, 7, 74919, 2439206, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Forty Days Instrumental', 84, 1, 7, 292493, 9584317, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Óia Eu Aqui De Novo', 85, 1, 10, 219454, 7469735, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Baião Da Penha', 85, 1, 10, 247928, 8393047, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Esperando Na Janela', 85, 1, 10, 'Manuca/Raimundinho DoAcordion/Targino Godim', 261041, 8660617, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Juazeiro', 85, 1, 10, 'Humberto Teixeira/Luiz Gonzaga', 222275, 7349779, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Último Pau-De-Arara', 85, 1, 10, 'Corumbá/José Gumarães/Venancio', 200437, 6638563, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Asa Branca', 85, 1, 10, 'Humberto Teixeira/Luiz Gonzaga', 217051, 7387183, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Qui Nem Jiló', 85, 1, 10, 'Humberto Teixeira/Luiz Gonzaga', 204695, 6937472, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Assum Preto', 85, 1, 10, 'Humberto Teixeira/Luiz Gonzaga', 199653, 6625000, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Pau-De-Arara', 85, 1, 10, 'Guio De Morais E Seus "Parentes"/Luiz Gonzaga', 191660, 6340649, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('A Volta Da Asa Branca', 85, 1, 10, 'Luiz Gonzaga/Zé Dantas', 271020, 9098093, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('O Amor Daqui De Casa', 85, 1, 10, 'Gilberto Gil', 148636, 4888292, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('As Pegadas Do Amor', 85, 1, 10, 'Gilberto Gil', 209136, 6899062, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Lamento Sertanejo', 85, 1, 10, 'Dominguinhos/Gilberto Gil', 260963, 8518290, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Casinha Feliz', 85, 1, 10, 'Gilberto Gil', 32287, 1039615, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Introdução (Live)', 86, 1, 7, 154096, 5227579, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Palco (Live)', 86, 1, 7, 238315, 8026622, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Is This Love (Live)', 86, 1, 7, 295262, 9819759, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Stir It Up (Live)', 86, 1, 7, 282409, 9594738, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Refavela (Live)', 86, 1, 7, 236695, 7985305, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Vendedor De Caranguejo (Live)', 86, 1, 7, 248842, 8358128, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Quanta (Live)', 86, 1, 7, 357485, 11774865, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Estrela (Live)', 86, 1, 7, 285309, 9436411, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Pela Internet (Live)', 86, 1, 7, 263471, 8804401, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Cérebro Eletrônico (Live)', 86, 1, 7, 231627, 7805352, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Opachorô (Live)', 86, 1, 7, 259526, 8596384, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Copacabana (Live)', 86, 1, 7, 289671, 9673672, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('A Novidade (Live)', 86, 1, 7, 316969, 10508000, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Ghandi (Live)', 86, 1, 7, 222458, 7481950, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('De Ouro E Marfim (Live)', 86, 1, 7, 234971, 7838453, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Doce De Carnaval (Candy All)', 87, 1, 2, 356101, 11998470, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Lamento De Carnaval', 87, 1, 2, 294530, 9819276, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Pretinha', 87, 1, 2, 265273, 8914579, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('A Novidade', 73, 1, 7, 'Gilberto Gil', 324780, 10765600, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Tenho Sede', 73, 1, 7, 'Gilberto Gil', 261616, 8708114, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Refazenda', 73, 1, 7, 'Gilberto Gil', 218305, 7237784, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Realce', 73, 1, 7, 'Gilberto Gil', 264489, 8847612, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Esotérico', 73, 1, 7, 'Gilberto Gil', 317779, 10530533, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Drão', 73, 1, 7, 'Gilberto Gil', 301453, 9931950, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('A Paz', 73, 1, 7, 'Gilberto Gil', 293093, 9593064, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Beira Mar', 73, 1, 7, 'Gilberto Gil', 295444, 9597994, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Sampa', 73, 1, 7, 'Gilberto Gil', 225697, 7469905, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Parabolicamará', 73, 1, 7, 'Gilberto Gil', 284943, 9543435, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Tempo Rei', 73, 1, 7, 'Gilberto Gil', 302733, 10019269, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Expresso 2222', 73, 1, 7, 'Gilberto Gil', 284760, 9690577, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Aquele Abraço', 73, 1, 7, 'Gilberto Gil', 263993, 8805003, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Palco', 73, 1, 7, 'Gilberto Gil', 270550, 9049901, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Toda Menina Baiana', 73, 1, 7, 'Gilberto Gil', 278177, 9351000, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Sítio Do Pica-Pau Amarelo', 73, 1, 7, 'Gilberto Gil', 218070, 7217955, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Straight Out Of Line', 88, 1, 3, 'Sully Erna', 259213, 8511877, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Faceless', 88, 1, 3, 'Sully Erna', 216006, 6992417, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Changes', 88, 1, 3, 'Sully Erna; Tony Rombola', 260022, 8455835, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Make Me Believe', 88, 1, 3, 'Sully Erna', 248607, 8075050, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('I Stand Alone', 88, 1, 3, 'Sully Erna', 246125, 8017041, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Re-Align', 88, 1, 3, 'Sully Erna', 260884, 8513891, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('I Fucking Hate You', 88, 1, 3, 'Sully Erna', 247170, 8059642, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Releasing The Demons', 88, 1, 3, 'Sully Erna', 252760, 8276372, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Dead And Broken', 88, 1, 3, 'Sully Erna', 251454, 8206611, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('I Am', 88, 1, 3, 'Sully Erna', 239516, 7803270, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('The Awakening', 88, 1, 3, 'Sully Erna', 89547, 3035251, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Serenity', 88, 1, 3, 'Sully Erna; Tony Rombola', 274834, 9172976, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('American Idiot', 89, 1, 4, 'Billie Joe Armstrong, Mike Dirnt, Tré Cool', 174419, 5705793, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Jesus Of Suburbia / City Of The Damned / I Don''t Care / Dearly Beloved / Tales Of Another Broken Home', 89, 1, 4, 'Billie Joe Armstrong/Green Day', 548336, 17875209, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Holiday', 89, 1, 4, 'Billie Joe Armstrong, Mike Dirnt, Tré Cool', 232724, 7599602, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Boulevard Of Broken Dreams', 89, 1, 4, 'Mike Dint, Billie Joe, Tré Cool', 260858, 8485122, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Are We The Waiting', 89, 1, 4, 'Green Day', 163004, 5328329, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('St. Jimmy', 89, 1, 4, 'Green Day', 175307, 5716589, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Give Me Novacaine', 89, 1, 4, 'Green Day', 205871, 6752485, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('She''s A Rebel', 89, 1, 4, 'Green Day', 120528, 3901226, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Extraordinary Girl', 89, 1, 4, 'Green Day', 214021, 6975177, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Letterbomb', 89, 1, 4, 'Green Day', 246151, 7980902, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Wake Me Up When September Ends', 89, 1, 4, 'Mike Dint, Billie Joe, Tré Cool', 285753, 9325597, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Homecoming / The Death Of St. Jimmy / East 12th St. / Nobody Likes You / Rock And Roll Girlfriend / We''re Coming Home Again', 89, 1, 4, 'Mike Dirnt/Tré Cool', 558602, 18139840, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Whatsername', 89, 1, 4, 'Green Day', 252316, 8244843, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Welcome to the Jungle', 90, 2, 1, 273552, 4538451, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('It''s So Easy', 90, 2, 1, 202824, 3394019, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Nightrain', 90, 2, 1, 268537, 4457283, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Out Ta Get Me', 90, 2, 1, 263893, 4382147, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Mr. Brownstone', 90, 2, 1, 228924, 3816323, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Paradise City', 90, 2, 1, 406347, 6687123, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('My Michelle', 90, 2, 1, 219961, 3671299, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Think About You', 90, 2, 1, 231640, 3860275, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Sweet Child O'' Mine', 90, 2, 1, 356424, 5879347, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('You''re Crazy', 90, 2, 1, 197135, 3301971, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Anything Goes', 90, 2, 1, 206400, 3451891, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Rocket Queen', 90, 2, 1, 375349, 6185539, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Right Next Door to Hell', 91, 2, 1, 182321, 3175950, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Dust N'' Bones', 91, 2, 1, 298374, 5053742, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Live and Let Die', 91, 2, 1, 184016, 3203390, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Don''t Cry (Original)', 91, 2, 1, 284744, 4833259, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Perfect Crime', 91, 2, 1, 143637, 2550030, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('You Ain''t the First', 91, 2, 1, 156268, 2754414, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Bad Obsession', 91, 2, 1, 328282, 5537678, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Back off Bitch', 91, 2, 1, 303436, 5135662, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Double Talkin'' Jive', 91, 2, 1, 203637, 3520862, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('November Rain', 91, 2, 1, 537540, 8923566, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('The Garden', 91, 2, 1, 322175, 5438862, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Garden of Eden', 91, 2, 1, 161539, 2839694, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Don''t Damn Me', 91, 2, 1, 318901, 5385886, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Bad Apples', 91, 2, 1, 268351, 4567966, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Dead Horse', 91, 2, 1, 257600, 4394014, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Coma', 91, 2, 1, 616511, 10201342, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Civil War', 92, 1, 3, 'Duff McKagan/Slash/W. Axl Rose', 461165, 15046579, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('14 Years', 92, 1, 3, 'Izzy Stradlin''/W. Axl Rose', 261355, 8543664, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Yesterdays', 92, 1, 3, 'Billy/Del James/W. Axl Rose/West Arkeen', 196205, 6398489, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Knockin'' On Heaven''s Door', 92, 1, 3, 'Bob Dylan', 336457, 10986716, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Get In The Ring', 92, 1, 3, 'Duff McKagan/Slash/W. Axl Rose', 341054, 11134105, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Shotgun Blues', 92, 1, 3, 'W. Axl Rose', 203206, 6623916, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Breakdown', 92, 1, 3, 'W. Axl Rose', 424960, 13978284, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Pretty Tied Up', 92, 1, 3, 'Izzy Stradlin''', 287477, 9408754, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Locomotive', 92, 1, 3, 'Slash/W. Axl Rose', 522396, 17236842, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('So Fine', 92, 1, 3, 'Duff McKagan', 246491, 8039484, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Estranged', 92, 1, 3, 'W. Axl Rose', 563800, 18343787, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('You Could Be Mine', 92, 1, 3, 'Izzy Stradlin''/W. Axl Rose', 343875, 11207355, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Don''t Cry', 92, 1, 3, 'Izzy Stradlin''/W. Axl Rose', 284238, 9222458, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('My World', 92, 1, 3, 'W. Axl Rose', 84532, 2764045, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Colibri', 93, 1, 2, 'Richard Bull', 361012, 12055329, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Love Is The Colour', 93, 1, 2, 'R. Carless', 251585, 8419165, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Magnetic Ocean', 93, 1, 2, 'Patrick Claher/Richard Bull', 321123, 10720741, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Deep Waters', 93, 1, 2, 'Richard Bull', 396460, 13075359, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('L''Arc En Ciel De Miles', 93, 1, 2, 'Kevin Robinson/Richard Bull', 242390, 8053997, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Gypsy', 93, 1, 2, 'Kevin Robinson', 330997, 11083374, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Journey Into Sunlight', 93, 1, 2, 'Jean Paul Maunick', 249756, 8241177, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Sunchild', 93, 1, 2, 'Graham Harvey', 259970, 8593143, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Millenium', 93, 1, 2, 'Maxton Gig Beesley Jnr.', 379167, 12511939, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Thinking ''Bout Tomorrow', 93, 1, 2, 'Fayyaz Virgi/Richard Bull', 355395, 11865384, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Jacob''s Ladder', 93, 1, 2, 'Julian Crampton', 367647, 12201595, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('She Wears Black', 93, 1, 2, 'G Harvey/R Hope-Taylor', 528666, 17617944, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Dark Side Of The Cog', 93, 1, 2, 'Jean Paul Maunick', 377155, 12491122, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Different World', 94, 2, 1, 258692, 4383764, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('These Colours Don''t Run', 94, 2, 1, 412152, 6883500, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Brighter Than a Thousand Suns', 94, 2, 1, 526255, 8721490, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('The Pilgrim', 94, 2, 1, 307593, 5172144, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('The Longest Day', 94, 2, 1, 467810, 7785748, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Out of the Shadows', 94, 2, 1, 336896, 5647303, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('The Reincarnation of Benjamin Breeg', 94, 2, 1, 442106, 7367736, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('For the Greater Good of God', 94, 2, 1, 564893, 9367328, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Lord of Light', 94, 2, 1, 444614, 7393698, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('The Legacy', 94, 2, 1, 562966, 9314287, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Hallowed Be Thy Name (Live) [Non Album Bonus Track]', 94, 2, 1, 431262, 7205816, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('The Number Of The Beast', 95, 1, 3, 'Steve Harris', 294635, 4718897, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('The Trooper', 95, 1, 3, 'Steve Harris', 235311, 3766272, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Prowler', 95, 1, 3, 'Steve Harris', 255634, 4091904, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Transylvania', 95, 1, 3, 'Steve Harris', 265874, 4255744, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Remember Tomorrow', 95, 1, 3, 'Paul Di''Anno/Steve Harris', 352731, 5648438, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Where Eagles Dare', 95, 1, 3, 'Steve Harris', 289358, 4630528, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Sanctuary', 95, 1, 3, 'David Murray/Paul Di''Anno/Steve Harris', 293250, 4694016, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Running Free', 95, 1, 3, 'Paul Di''Anno/Steve Harris', 228937, 3663872, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Run To The Hilss', 95, 1, 3, 'Steve Harris', 237557, 3803136, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('2 Minutes To Midnight', 95, 1, 3, 'Adrian Smith/Bruce Dickinson', 337423, 5400576, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Iron Maiden', 95, 1, 3, 'Steve Harris', 324623, 5195776, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Hallowed Be Thy Name', 95, 1, 3, 'Steve Harris', 471849, 7550976, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Be Quick Or Be Dead', 96, 1, 3, 'Bruce Dickinson/Janick Gers', 196911, 3151872, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('From Here To Eternity', 96, 1, 3, 'Steve Harris', 259866, 4159488, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Can I Play With Madness', 96, 1, 3, 'Adrian Smith/Bruce Dickinson/Steve Harris', 282488, 4521984, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Wasting Love', 96, 1, 3, 'Bruce Dickinson/Janick Gers', 347846, 5566464, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Tailgunner', 96, 1, 3, 'Bruce Dickinson/Steve Harris', 249469, 3993600, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('The Evil That Men Do', 96, 1, 3, 'Adrian Smith/Bruce Dickinson/Steve Harris', 325929, 5216256, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Afraid To Shoot Strangers', 96, 1, 3, 'Steve Harris', 407980, 6529024, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Bring Your Daughter... To The Slaughter', 96, 1, 3, 'Bruce Dickinson', 317727, 5085184, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Heaven Can Wait', 96, 1, 3, 'Steve Harris', 448574, 7178240, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('The Clairvoyant', 96, 1, 3, 'Steve Harris', 269871, 4319232, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Fear Of The Dark', 96, 1, 3, 'Steve Harris', 431333, 6906078, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('The Wicker Man', 97, 1, 1, 'Adrian Smith/Bruce Dickinson/Steve Harris', 275539, 11022464, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Ghost Of The Navigator', 97, 1, 1, 'Bruce Dickinson/Janick Gers/Steve Harris', 410070, 16404608, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Brave New World', 97, 1, 1, 'Bruce Dickinson/David Murray/Steve Harris', 378984, 15161472, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Blood Brothers', 97, 1, 1, 'Steve Harris', 434442, 17379456, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('The Mercenary', 97, 1, 1, 'Janick Gers/Steve Harris', 282488, 11300992, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Dream Of Mirrors', 97, 1, 1, 'Janick Gers/Steve Harris', 561162, 22448256, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('The Fallen Angel', 97, 1, 1, 'Adrian Smith/Steve Harris', 240718, 9629824, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('The Nomad', 97, 1, 1, 'David Murray/Steve Harris', 546115, 21846144, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Out Of The Silent Planet', 97, 1, 1, 'Bruce Dickinson/Janick Gers/Steve Harris', 385541, 15423616, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('The Thin Line Between Love & Hate', 97, 1, 1, 'David Murray/Steve Harris', 506801, 20273280, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Wildest Dreams', 98, 1, 13, 'Adrian Smith/Steve Harris', 232777, 9312384, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Rainmaker', 98, 1, 13, 'Bruce Dickinson/David Murray/Steve Harris', 228623, 9146496, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('No More Lies', 98, 1, 13, 'Steve Harris', 441782, 17672320, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Montsegur', 98, 1, 13, 'Bruce Dickinson/Janick Gers/Steve Harris', 350484, 14020736, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Dance Of Death', 98, 1, 13, 'Janick Gers/Steve Harris', 516649, 20670727, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Gates Of Tomorrow', 98, 1, 13, 'Bruce Dickinson/Janick Gers/Steve Harris', 312032, 12482688, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('New Frontier', 98, 1, 13, 'Adrian Smith/Bruce Dickinson/Nicko McBrain', 304509, 12181632, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Paschendale', 98, 1, 13, 'Adrian Smith/Steve Harris', 508107, 20326528, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Face In The Sand', 98, 1, 13, 'Adrian Smith/Bruce Dickinson/Steve Harris', 391105, 15648948, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Age Of Innocence', 98, 1, 13, 'David Murray/Steve Harris', 370468, 14823478, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Journeyman', 98, 1, 13, 'Bruce Dickinson/David Murray/Steve Harris', 427023, 17082496, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Be Quick Or Be Dead', 99, 1, 1, 'Bruce Dickinson/Janick Gers', 204512, 8181888, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('From Here To Eternity', 99, 1, 1, 'Steve Harris', 218357, 8739038, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Afraid To Shoot Strangers', 99, 1, 1, 'Steve Harris', 416496, 16664589, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Fear Is The Key', 99, 1, 1, 'Bruce Dickinson/Janick Gers', 335307, 13414528, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Childhood''s End', 99, 1, 1, 'Steve Harris', 280607, 11225216, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Wasting Love', 99, 1, 1, 'Bruce Dickinson/Janick Gers', 350981, 14041216, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('The Fugitive', 99, 1, 1, 'Steve Harris', 294112, 11765888, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Chains Of Misery', 99, 1, 1, 'Bruce Dickinson/David Murray', 217443, 8700032, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('The Apparition', 99, 1, 1, 'Janick Gers/Steve Harris', 234605, 9386112, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Judas Be My Guide', 99, 1, 1, 'Bruce Dickinson/David Murray', 188786, 7553152, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Weekend Warrior', 99, 1, 1, 'Janick Gers/Steve Harris', 339748, 13594678, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Fear Of The Dark', 99, 1, 1, 'Steve Harris', 436976, 17483789, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('01 - Prowler', 100, 1, 6, 'Steve Harris', 236173, 5668992, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('02 - Sanctuary', 100, 1, 6, 'David Murray/Paul Di''Anno/Steve Harris', 196284, 4712576, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('03 - Remember Tomorrow', 100, 1, 6, 'Harris/Paul Di´Anno', 328620, 7889024, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('04 - Running Free', 100, 1, 6, 'Harris/Paul Di´Anno', 197276, 4739122, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('05 - Phantom of the Opera', 100, 1, 6, 'Steve Harris', 428016, 10276872, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('06 - Transylvania', 100, 1, 6, 'Steve Harris', 259343, 6226048, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('07 - Strange World', 100, 1, 6, 'Steve Harris', 332460, 7981184, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('08 - Charlotte the Harlot', 100, 1, 6, 'Murray Dave', 252708, 6066304, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('09 - Iron Maiden', 100, 1, 6, 'Steve Harris', 216058, 5189891, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('The Ides Of March', 101, 1, 13, 'Steve Harris', 105926, 2543744, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Wrathchild', 101, 1, 13, 'Steve Harris', 174471, 4188288, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Murders In The Rue Morgue', 101, 1, 13, 'Steve Harris', 258377, 6205786, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Another Life', 101, 1, 13, 'Steve Harris', 203049, 4874368, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Genghis Khan', 101, 1, 13, 'Steve Harris', 187141, 4493440, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Innocent Exile', 101, 1, 13, 'Di´Anno/Harris', 232515, 5584861, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Killers', 101, 1, 13, 'Steve Harris', 300956, 7227440, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Prodigal Son', 101, 1, 13, 'Steve Harris', 372349, 8937600, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Purgatory', 101, 1, 13, 'Steve Harris', 200150, 4804736, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Drifter', 101, 1, 13, 'Steve Harris', 288757, 6934660, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Intro- Churchill S Speech', 102, 1, 13, 48013, 1154488, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Aces High', 102, 1, 13, 276375, 6635187, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('2 Minutes To Midnight', 102, 1, 3, 'Smith/Dickinson', 366550, 8799380, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('The Trooper', 102, 1, 3, 'Harris', 268878, 6455255, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Revelations', 102, 1, 3, 'Dickinson', 371826, 8926021, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Flight Of Icarus', 102, 1, 3, 'Smith/Dickinson', 229982, 5521744, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Rime Of The Ancient Mariner', 102, 1, 3, 789472, 18949518, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Powerslave', 102, 1, 3, 454974, 10921567, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('The Number Of The Beast', 102, 1, 3, 'Harris', 275121, 6605094, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Hallowed Be Thy Name', 102, 1, 3, 'Harris', 451422, 10836304, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Iron Maiden', 102, 1, 3, 'Harris', 261955, 6289117, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Run To The Hills', 102, 1, 3, 'Harris', 231627, 5561241, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Running Free', 102, 1, 3, 'Harris/Di Anno', 204617, 4912986, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Wrathchild', 102, 1, 13, 'Steve Harris', 183666, 4410181, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Acacia Avenue', 102, 1, 13, 379872, 9119118, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Children Of The Damned', 102, 1, 13, 'Steve Harris', 278177, 6678446, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Die With Your Boots On', 102, 1, 13, 'Adrian Smith/Bruce Dickinson/Steve Harris', 314174, 7542367, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Phantom Of The Opera', 102, 1, 13, 'Steve Harris', 441155, 10589917, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Be Quick Or Be Dead', 103, 1, 1, 233142, 5599853, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('The Number Of The Beast', 103, 1, 1, 294008, 7060625, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Wrathchild', 103, 1, 1, 174106, 4182963, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('From Here To Eternity', 103, 1, 1, 284447, 6831163, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Can I Play With Madness', 103, 1, 1, 213106, 5118995, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Wasting Love', 103, 1, 1, 336953, 8091301, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Tailgunner', 103, 1, 1, 247640, 5947795, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('The Evil That Men Do', 103, 1, 1, 478145, 11479913, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Afraid To Shoot Strangers', 103, 1, 1, 412525, 9905048, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Fear Of The Dark', 103, 1, 1, 431542, 10361452, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Bring Your Daughter... To The Slaughter...', 104, 1, 1, 376711, 9045532, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('The Clairvoyant', 104, 1, 1, 262426, 6302648, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Heaven Can Wait', 104, 1, 1, 440555, 10577743, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Run To The Hills', 104, 1, 1, 235859, 5665052, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('2 Minutes To Midnight', 104, 1, 1, 'Adrian Smith/Bruce Dickinson', 338233, 8122030, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Iron Maiden', 104, 1, 1, 494602, 11874875, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Hallowed Be Thy Name', 104, 1, 1, 447791, 10751410, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('The Trooper', 104, 1, 1, 232672, 5588560, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Sanctuary', 104, 1, 1, 318511, 7648679, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Running Free', 104, 1, 1, 474017, 11380851, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Tailgunner', 105, 1, 3, 'Bruce Dickinson/Steve Harris', 255582, 4089856, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Holy Smoke', 105, 1, 3, 'Bruce Dickinson/Steve Harris', 229459, 3672064, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('No Prayer For The Dying', 105, 1, 3, 'Steve Harris', 263941, 4225024, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Public Enema Number One', 105, 1, 3, 'Bruce Dickinson/David Murray', 254197, 4071587, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Fates Warning', 105, 1, 3, 'David Murray/Steve Harris', 250853, 4018088, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('The Assassin', 105, 1, 3, 'Steve Harris', 258768, 4141056, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Run Silent Run Deep', 105, 1, 3, 'Bruce Dickinson/Steve Harris', 275408, 4407296, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Hooks In You', 105, 1, 3, 'Adrian Smith/Bruce Dickinson', 247510, 3960832, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Bring Your Daughter... ...To The Slaughter', 105, 1, 3, 'Bruce Dickinson', 284238, 4548608, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Mother Russia', 105, 1, 3, 'Steve Harris', 332617, 5322752, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Where Eagles Dare', 106, 1, 3, 'Steve Harris', 369554, 5914624, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Revelations', 106, 1, 3, 'Bruce Dickinson', 408607, 6539264, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Flight Of The Icarus', 106, 1, 3, 'Adrian Smith/Bruce Dickinson', 230269, 3686400, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Die With Your Boots On', 106, 1, 3, 'Adrian Smith/Bruce Dickinson/Steve Harris', 325694, 5212160, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('The Trooper', 106, 1, 3, 'Steve Harris', 251454, 4024320, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Still Life', 106, 1, 3, 'David Murray/Steve Harris', 294347, 4710400, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Quest For Fire', 106, 1, 3, 'Steve Harris', 221309, 3543040, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Sun And Steel', 106, 1, 3, 'Adrian Smith/Bruce Dickinson', 206367, 3306324, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('To Tame A Land', 106, 1, 3, 'Steve Harris', 445283, 7129264, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Aces High', 107, 1, 3, 'Harris', 269531, 6472088, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('2 Minutes To Midnight', 107, 1, 3, 'Smith/Dickinson', 359810, 8638809, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Losfer Words', 107, 1, 3, 'Steve Harris', 252891, 6074756, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Flash of The Blade', 107, 1, 3, 'Dickinson', 242729, 5828861, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Duelists', 107, 1, 3, 'Steve Harris', 366471, 8800686, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Back in the Village', 107, 1, 3, 'Dickinson/Smith', 320548, 7696518, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Powerslave', 107, 1, 3, 'Dickinson', 407823, 9791106, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Rime of the Ancient Mariner', 107, 1, 3, 'Harris', 816509, 19599577, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Intro', 108, 1, 3, 115931, 4638848, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('The Wicker Man', 108, 1, 3, 'Adrian Smith/Bruce Dickinson/Steve Harris', 281782, 11272320, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Ghost Of The Navigator', 108, 1, 3, 'Bruce Dickinson/Janick Gers/Steve Harris', 408607, 16345216, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Brave New World', 108, 1, 3, 'Bruce Dickinson/David Murray/Steve Harris', 366785, 14676148, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Wrathchild', 108, 1, 3, 'Steve Harris', 185808, 7434368, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('2 Minutes To Midnight', 108, 1, 3, 'Adrian Smith/Bruce Dickinson', 386821, 15474816, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Blood Brothers', 108, 1, 3, 'Steve Harris', 435513, 17422464, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Sign Of The Cross', 108, 1, 3, 'Steve Harris', 649116, 25966720, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('The Mercenary', 108, 1, 3, 'Janick Gers/Steve Harris', 282697, 11309184, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('The Trooper', 108, 1, 3, 'Steve Harris', 273528, 10942592, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Dream Of Mirrors', 109, 1, 1, 'Janick Gers/Steve Harris', 578324, 23134336, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('The Clansman', 109, 1, 1, 'Steve Harris', 559203, 22370432, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('The Evil That Men Do', 109, 1, 3, 'Adrian Smith/Bruce Dickinson/Steve Harris', 280737, 11231360, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Fear Of The Dark', 109, 1, 1, 'Steve Harris', 460695, 18430080, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Iron Maiden', 109, 1, 1, 'Steve Harris', 351869, 14076032, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('The Number Of The Beast', 109, 1, 1, 'Steve Harris', 300434, 12022107, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Hallowed Be Thy Name', 109, 1, 1, 'Steve Harris', 443977, 17760384, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Sanctuary', 109, 1, 1, 'David Murray/Paul Di''Anno/Steve Harris', 317335, 12695680, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Run To The Hills', 109, 1, 1, 'Steve Harris', 292179, 11688064, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Moonchild', 110, 1, 3, 'Adrian Smith; Bruce Dickinson', 340767, 8179151, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Infinite Dreams', 110, 1, 3, 'Steve Harris', 369005, 8858669, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Can I Play With Madness', 110, 1, 3, 'Adrian Smith; Bruce Dickinson; Steve Harris', 211043, 5067867, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('The Evil That Men Do', 110, 1, 3, 'Adrian Smith; Bruce Dickinson; Steve Harris', 273998, 6578930, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Seventh Son of a Seventh Son', 110, 1, 3, 'Steve Harris', 593580, 14249000, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('The Prophecy', 110, 1, 3, 'Dave Murray; Steve Harris', 305475, 7334450, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('The Clairvoyant', 110, 1, 3, 'Adrian Smith; Bruce Dickinson; Steve Harris', 267023, 6411510, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Only the Good Die Young', 110, 1, 3, 'Bruce Dickinson; Harris', 280894, 6744431, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Caught Somewhere in Time', 111, 1, 3, 'Steve Harris', 445779, 10701149, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Wasted Years', 111, 1, 3, 'Adrian Smith', 307565, 7384358, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Sea of Madness', 111, 1, 3, 'Adrian Smith', 341995, 8210695, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Heaven Can Wait', 111, 1, 3, 'Steve Harris', 441417, 10596431, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Stranger in a Strange Land', 111, 1, 3, 'Adrian Smith', 344502, 8270899, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Alexander the Great', 111, 1, 3, 'Steve Harris', 515631, 12377742, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('De Ja Vu', 111, 1, 3, 'David Murray/Steve Harris', 296176, 7113035, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('The Loneliness of the Long Dis', 111, 1, 3, 'Steve Harris', 391314, 9393598, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('22 Acacia Avenue', 112, 1, 3, 'Adrian Smith/Steve Harris', 395572, 5542516, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Children of the Damned', 112, 1, 3, 'Steve Harris', 274364, 3845631, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Gangland', 112, 1, 3, 'Adrian Smith/Clive Burr/Steve Harris', 228440, 3202866, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Hallowed Be Thy Name', 112, 1, 3, 'Steve Harris', 428669, 6006107, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Invaders', 112, 1, 3, 'Steve Harris', 203180, 2849181, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Run to the Hills', 112, 1, 3, 'Steve Harris', 228884, 3209124, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('The Number Of The Beast', 112, 1, 1, 'Steve Harris', 293407, 11737216, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('The Prisoner', 112, 1, 3, 'Adrian Smith/Steve Harris', 361299, 5062906, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Sign Of The Cross', 113, 1, 1, 'Steve Harris', 678008, 27121792, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Lord Of The Flies', 113, 1, 1, 'Janick Gers/Steve Harris', 303699, 12148864, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Man On The Edge', 113, 1, 1, 'Blaze Bayley/Janick Gers', 253413, 10137728, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Fortunes Of War', 113, 1, 1, 'Steve Harris', 443977, 17760384, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Look For The Truth', 113, 1, 1, 'Blaze Bayley/Janick Gers/Steve Harris', 310230, 12411008, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('The Aftermath', 113, 1, 1, 'Blaze Bayley/Janick Gers/Steve Harris', 380786, 15233152, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Judgement Of Heaven', 113, 1, 1, 'Steve Harris', 312476, 12501120, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Blood On The World''s Hands', 113, 1, 1, 'Steve Harris', 357799, 14313600, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('The Edge Of Darkness', 113, 1, 1, 'Blaze Bayley/Janick Gers/Steve Harris', 399333, 15974528, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('2 A.M.', 113, 1, 1, 'Blaze Bayley/Janick Gers/Steve Harris', 337658, 13511087, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('The Unbeliever', 113, 1, 1, 'Janick Gers/Steve Harris', 490422, 19617920, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Futureal', 114, 1, 1, 'Blaze Bayley/Steve Harris', 175777, 7032960, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('The Angel And The Gambler', 114, 1, 1, 'Steve Harris', 592744, 23711872, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Lightning Strikes Twice', 114, 1, 1, 'David Murray/Steve Harris', 290377, 11616384, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('The Clansman', 114, 1, 1, 'Steve Harris', 539689, 21592327, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('When Two Worlds Collide', 114, 1, 1, 'Blaze Bayley/David Murray/Steve Harris', 377312, 15093888, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('The Educated Fool', 114, 1, 1, 'Steve Harris', 404767, 16191616, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Don''t Look To The Eyes Of A Stranger', 114, 1, 1, 'Steve Harris', 483657, 19347584, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Como Estais Amigos', 114, 1, 1, 'Blaze Bayley/Janick Gers', 330292, 13213824, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Please Please Please', 115, 1, 14, 'James Brown/Johnny Terry', 165067, 5394585, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Think', 115, 1, 14, 'Lowman Pauling', 166739, 5513208, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Night Train', 115, 1, 14, 'Jimmy Forrest/Lewis C. Simpkins/Oscar Washington', 212401, 7027377, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Out Of Sight', 115, 1, 14, 'Ted Wright', 143725, 4711323, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Papa''s Got A Brand New Bag Pt.1', 115, 1, 14, 'James Brown', 127399, 4174420, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('I Got You (I Feel Good)', 115, 1, 14, 'James Brown', 167392, 5468472, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('It''s A Man''s Man''s Man''s World', 115, 1, 14, 'Betty Newsome/James Brown', 168228, 5541611, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Cold Sweat', 115, 1, 14, 'Alfred Ellis/James Brown', 172408, 5643213, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Say It Loud, I''m Black And I''m Proud Pt.1', 115, 1, 14, 'Alfred Ellis/James Brown', 167392, 5478117, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Get Up (I Feel Like Being A) Sex Machine', 115, 1, 14, 'Bobby Byrd/James Brown/Ron Lenhoff', 316551, 10498031, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Hey America', 115, 1, 14, 'Addie William Jones/Nat Jones', 218226, 7187857, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Make It Funky Pt.1', 115, 1, 14, 'Charles Bobbitt/James Brown', 196231, 6507782, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('I''m A Greedy Man Pt.1', 115, 1, 14, 'Charles Bobbitt/James Brown', 217730, 7251211, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Get On The Good Foot', 115, 1, 14, 'Fred Wesley/James Brown/Joseph Mims', 215902, 7182736, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Get Up Offa That Thing', 115, 1, 14, 'Deanna Brown/Deidra Jenkins/Yamma Brown', 250723, 8355989, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('It''s Too Funky In Here', 115, 1, 14, 'Brad Shapiro/George Jackson/Robert Miller/Walter Shaw', 239072, 7973979, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Living In America', 115, 1, 14, 'Charlie Midnight/Dan Hartman', 282880, 9432346, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('I''m Real', 115, 1, 14, 'Full Force/James Brown', 334236, 11183457, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Hot Pants Pt.1', 115, 1, 14, 'Fred Wesley/James Brown', 188212, 6295110, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Soul Power (Live)', 115, 1, 14, 'James Brown', 260728, 8593206, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('When You Gonna Learn (Digeridoo)', 116, 1, 1, 'Jay Kay/Kay, Jay', 230635, 7655482, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Too Young To Die', 116, 1, 1, 'Smith, Toby', 365818, 12391660, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Hooked Up', 116, 1, 1, 'Smith, Toby', 275879, 9301687, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('If I Like It, I Do It', 116, 1, 1, 'Gelder, Nick van', 293093, 9848207, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Music Of The Wind', 116, 1, 1, 'Smith, Toby', 383033, 12870239, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Emergency On Planet Earth', 116, 1, 1, 'Smith, Toby', 245263, 8117218, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Whatever It Is, I Just Can''t Stop', 116, 1, 1, 'Jay Kay/Kay, Jay', 247222, 8249453, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Blow Your Mind', 116, 1, 1, 'Smith, Toby', 512339, 17089176, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Revolution 1993', 116, 1, 1, 'Smith, Toby', 616829, 20816872, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Didgin'' Out', 116, 1, 1, 'Buchanan, Wallis', 157100, 5263555, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Canned Heat', 117, 1, 14, 'Jay Kay', 331964, 11042037, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Planet Home', 117, 1, 14, 'Jay Kay/Toby Smith', 284447, 9566237, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Black Capricorn Day', 117, 1, 14, 'Jay Kay', 341629, 11477231, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Soul Education', 117, 1, 14, 'Jay Kay/Toby Smith', 255477, 8575435, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Failling', 117, 1, 14, 'Jay Kay/Toby Smith', 225227, 7503999, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Destitute Illusions', 117, 1, 14, 'Derrick McKenzie/Jay Kay/Toby Smith', 340218, 11452651, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Supersonic', 117, 1, 14, 'Jay Kay', 315872, 10699265, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Butterfly', 117, 1, 14, 'Jay Kay/Toby Smith', 268852, 8947356, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Were Do We Go From Here', 117, 1, 14, 'Jay Kay', 313626, 10504158, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('King For A Day', 117, 1, 14, 'Jay Kay/Toby Smith', 221544, 7335693, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Deeper Underground', 117, 1, 14, 'Toby Smith', 281808, 9351277, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Just Another Story', 118, 1, 15, 'Toby Smith', 529684, 17582818, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Stillness In Time', 118, 1, 15, 'Toby Smith', 257097, 8644290, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Half The Man', 118, 1, 15, 'Toby Smith', 289854, 9577679, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Light Years', 118, 1, 15, 'Toby Smith', 354560, 11796244, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Manifest Destiny', 118, 1, 15, 'Toby Smith', 382197, 12676962, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('The Kids', 118, 1, 15, 'Toby Smith', 309995, 10334529, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Mr. Moon', 118, 1, 15, 'Stuard Zender/Toby Smith', 329534, 11043559, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Scam', 118, 1, 15, 'Stuart Zender', 422321, 14019705, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Journey To Arnhemland', 118, 1, 15, 'Toby Smith/Wallis Buchanan', 322455, 10843832, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Morning Glory', 118, 1, 15, 'J. Kay/Jay Kay', 384130, 12777210, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Space Cowboy', 118, 1, 15, 'J. Kay/Jay Kay', 385697, 12906520, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Last Chance', 119, 1, 4, 'C. Cester/C. Muncey', 112352, 3683130, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Are You Gonna Be My Girl', 119, 1, 4, 'C. Muncey/N. Cester', 213890, 6992324, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Rollover D.J.', 119, 1, 4, 'C. Cester/N. Cester', 196702, 6406517, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Look What You''ve Done', 119, 1, 4, 'N. Cester', 230974, 7517083, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Get What You Need', 119, 1, 4, 'C. Cester/C. Muncey/N. Cester', 247719, 8043765, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Move On', 119, 1, 4, 'C. Cester/N. Cester', 260623, 8519353, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Radio Song', 119, 1, 4, 'C. Cester/C. Muncey/N. Cester', 272117, 8871509, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Get Me Outta Here', 119, 1, 4, 'C. Cester/N. Cester', 176274, 5729098, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Cold Hard Bitch', 119, 1, 4, 'C. Cester/C. Muncey/N. Cester', 243278, 7929610, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Come Around Again', 119, 1, 4, 'C. Muncey/N. Cester', 270497, 8872405, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Take It Or Leave It', 119, 1, 4, 'C. Muncey/N. Cester', 142889, 4643370, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Lazy Gun', 119, 1, 4, 'C. Cester/N. Cester', 282174, 9186285, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Timothy', 119, 1, 4, 'C. Cester', 270341, 8856507, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Foxy Lady', 120, 1, 1, 'Jimi Hendrix', 199340, 6480896, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Manic Depression', 120, 1, 1, 'Jimi Hendrix', 222302, 7289272, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Red House', 120, 1, 1, 'Jimi Hendrix', 224130, 7285851, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Can You See Me', 120, 1, 1, 'Jimi Hendrix', 153077, 4987068, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Love Or Confusion', 120, 1, 1, 'Jimi Hendrix', 193123, 6329408, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('I Don''t Live Today', 120, 1, 1, 'Jimi Hendrix', 235311, 7661214, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('May This Be Love', 120, 1, 1, 'Jimi Hendrix', 191216, 6240028, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Fire', 120, 1, 1, 'Jimi Hendrix', 164989, 5383075, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Third Stone From The Sun', 120, 1, 1, 'Jimi Hendrix', 404453, 13186975, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Remember', 120, 1, 1, 'Jimi Hendrix', 168150, 5509613, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Are You Experienced?', 120, 1, 1, 'Jimi Hendrix', 254537, 8292497, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Hey Joe', 120, 1, 1, 'Billy Roberts', 210259, 6870054, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Stone Free', 120, 1, 1, 'Jimi Hendrix', 216293, 7002331, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Purple Haze', 120, 1, 1, 'Jimi Hendrix', 171572, 5597056, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('51st Anniversary', 120, 1, 1, 'Jimi Hendrix', 196388, 6398044, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('The Wind Cries Mary', 120, 1, 1, 'Jimi Hendrix', 200463, 6540638, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Highway Chile', 120, 1, 1, 'Jimi Hendrix', 212453, 6887949, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Surfing with the Alien', 121, 2, 1, 263707, 4418504, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Ice 9', 121, 2, 1, 239721, 4036215, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Crushing Day', 121, 2, 1, 314768, 5232158, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Always With Me, Always With You', 121, 2, 1, 202035, 3435777, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Satch Boogie', 121, 2, 1, 193560, 3300654, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Hill of the Skull', 121, 2, 1, 'J. Satriani', 108435, 1944738, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Circles', 121, 2, 1, 209071, 3548553, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Lords of Karma', 121, 2, 1, 'J. Satriani', 288227, 4809279, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Midnight', 121, 2, 1, 'J. Satriani', 102630, 1851753, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Echo', 121, 2, 1, 'J. Satriani', 337570, 5595557, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Engenho De Dentro', 122, 1, 7, 310073, 10211473, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Alcohol', 122, 1, 7, 355239, 12010478, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Mama Africa', 122, 1, 7, 283062, 9488316, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Salve Simpatia', 122, 1, 7, 343484, 11314756, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('W/Brasil (Chama O Síndico)', 122, 1, 7, 317100, 10599953, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('País Tropical', 122, 1, 7, 452519, 14946972, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Os Alquimistas Estão Chegando', 122, 1, 7, 367281, 12304520, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Charles Anjo 45', 122, 1, 7, 389276, 13022833, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Selassiê', 122, 1, 7, 326321, 10724982, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Menina Sarará', 122, 1, 7, 191477, 6393818, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Que Maravilha', 122, 1, 7, 338076, 10996656, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Santa Clara Clareou', 122, 1, 7, 380081, 12524725, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Filho Maravilha', 122, 1, 7, 227526, 7498259, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Taj Mahal', 122, 1, 7, 289750, 9502898, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Rapidamente', 123, 1, 7, 252238, 8470107, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('As Dores do Mundo', 123, 1, 7, 'Hyldon', 255477, 8537092, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Vou Pra Ai', 123, 1, 7, 300878, 10053718, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('My Brother', 123, 1, 7, 253231, 8431821, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Há Quanto Tempo', 123, 1, 7, 270027, 9004470, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Vício', 123, 1, 7, 269897, 8887216, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Encontrar Alguém', 123, 1, 7, 'Marco Tulio Lara/Rogerio Flausino', 224078, 7437935, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Dance Enquanto é Tempo', 123, 1, 7, 229093, 7583799, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('A Tarde', 123, 1, 7, 266919, 8836127, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Always Be All Right', 123, 1, 7, 128078, 4299676, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Sem Sentido', 123, 1, 7, 250462, 8292108, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Onibusfobia', 123, 1, 7, 315977, 10474904, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Pura Elegancia', 124, 1, 16, 'João Suplicy', 284107, 9632269, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Choramingando', 124, 1, 16, 'João Suplicy', 190484, 6400532, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Por Merecer', 124, 1, 16, 'João Suplicy', 230582, 7764601, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('No Futuro', 124, 1, 16, 'João Suplicy', 182308, 6056200, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Voce Inteira', 124, 1, 16, 'João Suplicy', 241084, 8077282, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Cuando A Noite Vai Chegando', 124, 1, 16, 'João Suplicy', 270628, 9081874, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Naquele Dia', 124, 1, 16, 'João Suplicy', 251768, 8452654, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Equinocio', 124, 1, 16, 'João Suplicy', 269008, 8871455, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Papelão', 124, 1, 16, 'João Suplicy', 213263, 7257390, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Cuando Eu For Pro Ceu', 124, 1, 16, 'João Suplicy', 118804, 3948371, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Do Nosso Amor', 124, 1, 16, 'João Suplicy', 203415, 6774566, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Borogodo', 124, 1, 16, 'João Suplicy', 208457, 7104588, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Cafezinho', 124, 1, 16, 'João Suplicy', 180924, 6031174, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Enquanto O Dia Não Vem', 124, 1, 16, 'João Suplicy', 220891, 7248336, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('The Green Manalishi', 125, 1, 3, 205792, 6720789, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Living After Midnight', 125, 1, 3, 213289, 7056785, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Breaking The Law (Live)', 125, 1, 3, 144195, 4728246, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Hot Rockin''', 125, 1, 3, 197328, 6509179, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Heading Out To The Highway (Live)', 125, 1, 3, 276427, 9006022, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('The Hellion', 125, 1, 3, 41900, 1351993, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Electric Eye', 125, 1, 3, 222197, 7231368, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('You''ve Got Another Thing Comin''', 125, 1, 3, 305162, 9962558, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Turbo Lover', 125, 1, 3, 335542, 11068866, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Freewheel Burning', 125, 1, 3, 265952, 8713599, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Some Heads Are Gonna Roll', 125, 1, 3, 249939, 8198617, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Metal Meltdown', 125, 1, 3, 290664, 9390646, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Ram It Down', 125, 1, 3, 292179, 9554023, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Diamonds And Rust (Live)', 125, 1, 3, 219350, 7163147, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Victim Of Change (Live)', 125, 1, 3, 430942, 14067512, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Tyrant (Live)', 125, 1, 3, 282253, 9190536, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Comin'' Home', 126, 1, 1, 'Paul Stanley, Ace Frehley', 172068, 5661120, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Plaster Caster', 126, 1, 1, 'Gene Simmons', 198060, 6528719, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Goin'' Blind', 126, 1, 1, 'Gene Simmons, Stephen Coronel', 217652, 7167523, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Do You Love Me', 126, 1, 1, 'Paul Stanley, Bob Ezrin, Kim Fowley', 193619, 6343111, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Domino', 126, 1, 1, 'Gene Simmons', 226377, 7488191, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Sure Know Something', 126, 1, 1, 'Paul Stanley, Vincent Poncia', 254354, 8375190, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('A World Without Heroes', 126, 1, 1, 'Paul Stanley, Gene Simmons, Bob Ezrin, Lewis Reed', 177815, 5832524, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Rock Bottom', 126, 1, 1, 'Paul Stanley, Ace Frehley', 200594, 6560818, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('See You Tonight', 126, 1, 1, 'Gene Simmons', 146494, 4817521, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('I Still Love You', 126, 1, 1, 'Paul Stanley', 369815, 12086145, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Every Time I Look At You', 126, 1, 1, 'Paul Stanley, Vincent Cusano', 283898, 9290948, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('2,000 Man', 126, 1, 1, 'Mick Jagger, Keith Richard', 312450, 10292829, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Beth', 126, 1, 1, 'Peter Criss, Stan Penridge, Bob Ezrin', 170187, 5577807, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Nothin'' To Lose', 126, 1, 1, 'Gene Simmons', 222354, 7351460, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Rock And Roll All Nite', 126, 1, 1, 'Paul Stanley, Gene Simmons', 259631, 8549296, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Immigrant Song', 127, 1, 1, 'Robert Plant', 201247, 6457766, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Heartbreaker', 127, 1, 1, 'John Bonham/John Paul Jones/Robert Plant', 316081, 10179657, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Since I''ve Been Loving You', 127, 1, 1, 'John Paul Jones/Robert Plant', 416365, 13471959, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Black Dog', 127, 1, 1, 'John Paul Jones/Robert Plant', 317622, 10267572, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Dazed And Confused', 127, 1, 1, 'Jimmy Page/Led Zeppelin', 1116734, 36052247, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Stairway To Heaven', 127, 1, 1, 'Robert Plant', 529658, 17050485, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Going To California', 127, 1, 1, 'Robert Plant', 234605, 7646749, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('That''s The Way', 127, 1, 1, 'Robert Plant', 343431, 11248455, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Whole Lotta Love (Medley)', 127, 1, 1, 'Arthur Crudup/Bernard Besman/Bukka White/Doc Pomus/John Bonham/John Lee Hooker/John Paul Jones/Mort Shuman/Robert Plant/Willie Dixon', 825103, 26742545, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Thank You', 127, 1, 1, 'Robert Plant', 398262, 12831826, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('We''re Gonna Groove', 128, 1, 1, 'Ben E.King/James Bethea', 157570, 5180975, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Poor Tom', 128, 1, 1, 'Jimmy Page/Robert Plant', 182491, 6016220, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('I Can''t Quit You Baby', 128, 1, 1, 'Willie Dixon', 258168, 8437098, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Walter''s Walk', 128, 1, 1, 'Jimmy Page, Robert Plant', 270785, 8712499, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Ozone Baby', 128, 1, 1, 'Jimmy Page, Robert Plant', 215954, 7079588, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Darlene', 128, 1, 1, 'Jimmy Page, Robert Plant, John Bonham, John Paul Jones', 307226, 10078197, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Bonzo''s Montreux', 128, 1, 1, 'John Bonham', 258925, 8557447, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Wearing And Tearing', 128, 1, 1, 'Jimmy Page, Robert Plant', 330004, 10701590, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('The Song Remains The Same', 129, 1, 1, 'Jimmy Page/Jimmy Page & Robert Plant/Robert Plant', 330004, 10708950, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('The Rain Song', 129, 1, 1, 'Jimmy Page/Jimmy Page & Robert Plant/Robert Plant', 459180, 15029875, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Over The Hills And Far Away', 129, 1, 1, 'Jimmy Page/Jimmy Page & Robert Plant/Robert Plant', 290089, 9552829, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('The Crunge', 129, 1, 1, 'John Bonham/John Paul Jones', 197407, 6460212, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Dancing Days', 129, 1, 1, 'Jimmy Page/Jimmy Page & Robert Plant/Robert Plant', 223216, 7250104, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('D''Yer Mak''er', 129, 1, 1, 'John Bonham/John Paul Jones', 262948, 8645935, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('No Quarter', 129, 1, 1, 'John Paul Jones', 420493, 13656517, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('The Ocean', 129, 1, 1, 'John Bonham/John Paul Jones', 271098, 8846469, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('In The Evening', 130, 1, 1, 'Jimmy Page, Robert Plant & John Paul Jones', 410566, 13399734, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('South Bound Saurez', 130, 1, 1, 'John Paul Jones & Robert Plant', 254406, 8420427, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Fool In The Rain', 130, 1, 1, 'Jimmy Page, Robert Plant & John Paul Jones', 372950, 12371433, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Hot Dog', 130, 1, 1, 'Jimmy Page & Robert Plant', 197198, 6536167, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Carouselambra', 130, 1, 1, 'John Paul Jones, Jimmy Page & Robert Plant', 634435, 20858315, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('All My Love', 130, 1, 1, 'Robert Plant & John Paul Jones', 356284, 11684862, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('I''m Gonna Crawl', 130, 1, 1, 'Jimmy Page, Robert Plant & John Paul Jones', 329639, 10737665, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Black Dog', 131, 1, 1, 'Jimmy Page, Robert Plant, John Paul Jones', 296672, 9660588, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Rock & Roll', 131, 1, 1, 'Jimmy Page, Robert Plant, John Paul Jones, John Bonham', 220917, 7142127, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('The Battle Of Evermore', 131, 1, 1, 'Jimmy Page, Robert Plant', 351555, 11525689, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Stairway To Heaven', 131, 1, 1, 'Jimmy Page, Robert Plant', 481619, 15706767, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Misty Mountain Hop', 131, 1, 1, 'Jimmy Page, Robert Plant, John Paul Jones', 278857, 9092799, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Four Sticks', 131, 1, 1, 'Jimmy Page, Robert Plant', 284447, 9481301, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Going To California', 131, 1, 1, 'Jimmy Page, Robert Plant', 215693, 7068737, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('When The Levee Breaks', 131, 1, 1, 'Jimmy Page, Robert Plant, John Paul Jones, John Bonham, Memphis Minnie', 427702, 13912107, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Good Times Bad Times', 132, 1, 1, 'Jimmy Page/John Bonham/John Paul Jones', 166164, 5464077, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Babe I''m Gonna Leave You', 132, 1, 1, 'Jimmy Page/Robert Plant', 401475, 13189312, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('You Shook Me', 132, 1, 1, 'J. B. Lenoir/Willie Dixon', 388179, 12643067, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Dazed and Confused', 132, 1, 1, 'Jimmy Page', 386063, 12610326, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Your Time Is Gonna Come', 132, 1, 1, 'Jimmy Page/John Paul Jones', 274860, 9011653, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Black Mountain Side', 132, 1, 1, 'Jimmy Page', 132702, 4440602, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Communication Breakdown', 132, 1, 1, 'Jimmy Page/John Bonham/John Paul Jones', 150230, 4899554, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('I Can''t Quit You Baby', 132, 1, 1, 'Willie Dixon', 282671, 9252733, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('How Many More Times', 132, 1, 1, 'Jimmy Page/John Bonham/John Paul Jones', 508055, 16541364, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Whole Lotta Love', 133, 1, 1, 'Jimmy Page, Robert Plant, John Paul Jones, John Bonham', 334471, 11026243, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('What Is And What Should Never Be', 133, 1, 1, 'Jimmy Page, Robert Plant', 287973, 9369385, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('The Lemon Song', 133, 1, 1, 'Jimmy Page, Robert Plant, John Paul Jones, John Bonham', 379141, 12463496, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Thank You', 133, 1, 1, 'Jimmy Page, Robert Plant', 287791, 9337392, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Heartbreaker', 133, 1, 1, 'Jimmy Page, Robert Plant, John Paul Jones, John Bonham', 253988, 8387560, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Living Loving Maid (She''s Just A Woman)', 133, 1, 1, 'Jimmy Page, Robert Plant', 159216, 5219819, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Ramble On', 133, 1, 1, 'Jimmy Page, Robert Plant', 275591, 9199710, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Moby Dick', 133, 1, 1, 'John Bonham, John Paul Jones, Jimmy Page', 260728, 8664210, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Bring It On Home', 133, 1, 1, 'Jimmy Page, Robert Plant', 259970, 8494731, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Immigrant Song', 134, 1, 1, 'Jimmy Page, Robert Plant', 144875, 4786461, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Friends', 134, 1, 1, 'Jimmy Page, Robert Plant', 233560, 7694220, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Celebration Day', 134, 1, 1, 'Jimmy Page, Robert Plant, John Paul Jones', 209528, 6871078, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Since I''ve Been Loving You', 134, 1, 1, 'Jimmy Page, Robert Plant, John Paul Jones', 444055, 14482460, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Out On The Tiles', 134, 1, 1, 'Jimmy Page, Robert Plant, John Bonham', 246047, 8060350, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Gallows Pole', 134, 1, 1, 'Traditional', 296228, 9757151, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Tangerine', 134, 1, 1, 'Jimmy Page', 189675, 6200893, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('That''s The Way', 134, 1, 1, 'Jimmy Page, Robert Plant', 337345, 11202499, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Bron-Y-Aur Stomp', 134, 1, 1, 'Jimmy Page, Robert Plant, John Paul Jones', 259500, 8674508, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Hats Off To (Roy) Harper', 134, 1, 1, 'Traditional', 219376, 7236640, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('In The Light', 135, 1, 1, 'John Paul Jones/Robert Plant', 526785, 17033046, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Bron-Yr-Aur', 135, 1, 1, 'Jimmy Page', 126641, 4150746, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Down By The Seaside', 135, 1, 1, 'Robert Plant', 316186, 10371282, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Ten Years Gone', 135, 1, 1, 'Robert Plant', 393116, 12756366, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Night Flight', 135, 1, 1, 'John Paul Jones/Robert Plant', 217547, 7160647, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('The Wanton Song', 135, 1, 1, 'Robert Plant', 249887, 8180988, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Boogie With Stu', 135, 1, 1, 'Ian Stewart/John Bonham/John Paul Jones/Mrs. Valens/Robert Plant', 233273, 7657086, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Black Country Woman', 135, 1, 1, 'Robert Plant', 273084, 8951732, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Sick Again', 135, 1, 1, 'Robert Plant', 283036, 9279263, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Achilles Last Stand', 136, 1, 1, 'Jimmy Page/Robert Plant', 625502, 20593955, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('For Your Life', 136, 1, 1, 'Jimmy Page/Robert Plant', 384391, 12633382, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Royal Orleans', 136, 1, 1, 'John Bonham/John Paul Jones', 179591, 5930027, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Nobody''s Fault But Mine', 136, 1, 1, 'Jimmy Page/Robert Plant', 376215, 12237859, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Candy Store Rock', 136, 1, 1, 'Jimmy Page/Robert Plant', 252055, 8397423, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Hots On For Nowhere', 136, 1, 1, 'Jimmy Page/Robert Plant', 284107, 9342342, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Tea For One', 136, 1, 1, 'Jimmy Page/Robert Plant', 566752, 18475264, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Rock & Roll', 137, 1, 1, 'John Bonham/John Paul Jones/Robert Plant', 242442, 7897065, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Celebration Day', 137, 1, 1, 'John Paul Jones/Robert Plant', 230034, 7478487, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('The Song Remains The Same', 137, 1, 1, 'Robert Plant', 353358, 11465033, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Rain Song', 137, 1, 1, 'Robert Plant', 505808, 16273705, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Dazed And Confused', 137, 1, 1, 'Jimmy Page', 1612329, 52490554, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('No Quarter', 138, 1, 1, 'John Paul Jones/Robert Plant', 749897, 24399285, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Stairway To Heaven', 138, 1, 1, 'Robert Plant', 657293, 21354766, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Moby Dick', 138, 1, 1, 'John Bonham/John Paul Jones', 766354, 25345841, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Whole Lotta Love', 138, 1, 1, 'John Bonham/John Paul Jones/Robert Plant/Willie Dixon', 863895, 28191437, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Natália', 139, 1, 7, 'Renato Russo', 235728, 7640230, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('L''Avventura', 139, 1, 7, 'Renato Russo', 278256, 9165769, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Música De Trabalho', 139, 1, 7, 'Renato Russo', 260231, 8590671, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Longe Do Meu Lado', 139, 1, 7, 'Renato Russo - Marcelo Bonfá', 266161, 8655249, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('A Via Láctea', 139, 1, 7, 'Renato Russo', 280084, 9234879, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Música Ambiente', 139, 1, 7, 'Renato Russo', 247614, 8234388, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Aloha', 139, 1, 7, 'Renato Russo', 325955, 10793301, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Soul Parsifal', 139, 1, 7, 'Renato Russo - Marisa Monte', 295053, 9853589, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Dezesseis', 139, 1, 7, 'Renato Russo', 323918, 10573515, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Mil Pedaços', 139, 1, 7, 'Renato Russo', 203337, 6643291, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Leila', 139, 1, 7, 'Renato Russo', 323056, 10608239, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('1º De Julho', 139, 1, 7, 'Renato Russo', 290298, 9619257, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Esperando Por Mim', 139, 1, 7, 'Renato Russo', 261668, 8844133, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Quando Você Voltar', 139, 1, 7, 'Renato Russo', 173897, 5781046, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('O Livro Dos Dias', 139, 1, 7, 'Renato Russo', 257253, 8570929, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Será', 140, 1, 7, 'Dado Villa-Lobos/Marcelo Bonfá', 148401, 4826528, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Ainda É Cedo', 140, 1, 7, 'Dado Villa-Lobos/Ico Ouro-Preto/Marcelo Bonfá', 236826, 7796400, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Geração Coca-Cola', 140, 1, 7, 'Renato Russo', 141453, 4625731, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Eduardo E Mônica', 140, 1, 7, 'Renato Russo', 271229, 9026691, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Tempo Perdido', 140, 1, 7, 'Renato Russo', 302158, 9963914, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Indios', 140, 1, 7, 'Renato Russo', 258168, 8610226, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Que País É Este', 140, 1, 7, 'Renato Russo', 177606, 5822124, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Faroeste Caboclo', 140, 1, 7, 'Renato Russo', 543007, 18092739, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Há Tempos', 140, 1, 7, 'Dado Villa-Lobos/Marcelo Bonfá', 197146, 6432922, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Pais E Filhos', 140, 1, 7, 'Dado Villa-Lobos/Marcelo Bonfá', 308401, 10130685, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Meninos E Meninas', 140, 1, 7, 'Dado Villa-Lobos/Marcelo Bonfá', 203781, 6667802, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Vento No Litoral', 140, 1, 7, 'Dado Villa-Lobos/Marcelo Bonfá', 366445, 12063806, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Perfeição', 140, 1, 7, 'Dado Villa-Lobos/Marcelo Bonfá', 276558, 9258489, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Giz', 140, 1, 7, 'Dado Villa-Lobos/Marcelo Bonfá', 202213, 6677671, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Dezesseis', 140, 1, 7, 'Dado Villa-Lobos/Marcelo Bonfá', 321724, 10501773, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Antes Das Seis', 140, 1, 7, 'Dado Villa-Lobos', 189231, 6296531, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Are You Gonna Go My Way', 141, 1, 1, 'Craig Ross/Lenny Kravitz', 211591, 6905135, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Fly Away', 141, 1, 1, 'Lenny Kravitz', 221962, 7322085, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Rock And Roll Is Dead', 141, 1, 1, 'Lenny Kravitz', 204199, 6680312, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Again', 141, 1, 1, 'Lenny Kravitz', 228989, 7490476, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('It Ain''t Over ''Til It''s Over', 141, 1, 1, 'Lenny Kravitz', 242703, 8078936, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Can''t Get You Off My Mind', 141, 1, 1, 'Lenny Kravitz', 273815, 8937150, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Mr. Cab Driver', 141, 1, 1, 'Lenny Kravitz', 230321, 7668084, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('American Woman', 141, 1, 1, 'B. Cummings/G. Peterson/M.J. Kale/R. Bachman', 261773, 8538023, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Stand By My Woman', 141, 1, 1, 'Henry Kirssch/Lenny Kravitz/S. Pasch A. Krizan', 259683, 8447611, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Always On The Run', 141, 1, 1, 'Lenny Kravitz/Slash', 232515, 7593397, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Heaven Help', 141, 1, 1, 'Gerry DeVeaux/Terry Britten', 190354, 6222092, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('I Belong To You', 141, 1, 1, 'Lenny Kravitz', 257123, 8477980, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Believe', 141, 1, 1, 'Henry Hirsch/Lenny Kravitz', 295131, 9661978, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Let Love Rule', 141, 1, 1, 'Lenny Kravitz', 342648, 11298085, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Black Velveteen', 141, 1, 1, 'Lenny Kravitz', 290899, 9531301, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Assim Caminha A Humanidade', 142, 1, 7, 210755, 6993763, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Honolulu', 143, 1, 7, 261433, 8558481, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Dancin´Days', 143, 1, 7, 237400, 7875347, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Um Pro Outro', 142, 1, 7, 236382, 7825215, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Aviso Aos Navegantes', 143, 1, 7, 242808, 8058651, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Casa', 142, 1, 7, 307591, 10107269, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Condição', 142, 1, 7, 263549, 8778465, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Hyperconectividade', 143, 1, 7, 180636, 5948039, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('O Descobridor Dos Sete Mares', 143, 1, 7, 225854, 7475780, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Satisfação', 142, 1, 7, 208065, 6901681, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Brumário', 142, 1, 7, 216241, 7243499, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Um Certo Alguém', 143, 1, 7, 194063, 6430939, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Fullgás', 143, 1, 7, 346070, 11505484, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Sábado À Noite', 142, 1, 7, 193854, 6435114, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('A Cura', 142, 1, 7, 280920, 9260588, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Aquilo', 143, 1, 7, 246073, 8167819, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Atrás Do Trio Elétrico', 142, 1, 7, 149080, 4917615, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Senta A Pua', 143, 1, 7, 217547, 7205844, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Ro-Que-Se-Da-Ne', 143, 1, 7, 146703, 4805897, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Tudo Bem', 142, 1, 7, 196101, 6419139, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Toda Forma De Amor', 142, 1, 7, 227813, 7496584, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Tudo Igual', 143, 1, 7, 276035, 9201645, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Fogo De Palha', 143, 1, 7, 246804, 8133732, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Sereia', 142, 1, 7, 278047, 9121087, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Assaltaram A Gramática', 143, 1, 7, 261041, 8698959, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Se Você Pensa', 142, 1, 7, 195996, 6552490, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Lá Vem O Sol (Here Comes The Sun)', 142, 1, 7, 189492, 6229645, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('O Último Romântico (Ao Vivo)', 143, 1, 7, 231993, 7692697, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Pseudo Silk Kimono', 144, 1, 1, 'Kelly, Mosley, Rothery, Trewaves', 134739, 4334038, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Kayleigh', 144, 1, 1, 'Kelly, Mosley, Rothery, Trewaves', 234605, 7716005, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Lavender', 144, 1, 1, 'Kelly, Mosley, Rothery, Trewaves', 153417, 4999814, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Bitter Suite: Brief Encounter / Lost Weekend / Blue Angel', 144, 1, 1, 'Kelly, Mosley, Rothery, Trewaves', 356493, 11791068, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Heart Of Lothian: Wide Boy / Curtain Call', 144, 1, 1, 'Kelly, Mosley, Rothery, Trewaves', 366053, 11893723, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Waterhole (Expresso Bongo)', 144, 1, 1, 'Kelly, Mosley, Rothery, Trewaves', 133093, 4378835, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Lords Of The Backstage', 144, 1, 1, 'Kelly, Mosley, Rothery, Trewaves', 112875, 3741319, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Blind Curve: Vocal Under A Bloodlight / Passing Strangers / Mylo / Perimeter Walk / Threshold', 144, 1, 1, 'Kelly, Mosley, Rothery, Trewaves', 569704, 18578995, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Childhoods End?', 144, 1, 1, 'Kelly, Mosley, Rothery, Trewaves', 272796, 9015366, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('White Feather', 144, 1, 1, 'Kelly, Mosley, Rothery, Trewaves', 143595, 4711776, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Arrepio', 145, 1, 7, 'Carlinhos Brown', 136254, 4511390, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Magamalabares', 145, 1, 7, 'Carlinhos Brown', 215875, 7183757, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Chuva No Brejo', 145, 1, 7, 'Morais', 145606, 4857761, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Cérebro Eletrônico', 145, 1, 7, 'Gilberto Gil', 172800, 5760864, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Tempos Modernos', 145, 1, 7, 'Lulu Santos', 183066, 6066234, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Maraçá', 145, 1, 7, 'Carlinhos Brown', 230008, 7621482, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Blanco', 145, 1, 7, 'Marisa Monte/poema de Octavio Paz/versão: Haroldo de Campos', 45191, 1454532, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Panis Et Circenses', 145, 1, 7, 'Caetano Veloso e Gilberto Gil', 192339, 6318373, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('De Noite Na Cama', 145, 1, 7, 'Caetano Veloso e Gilberto Gil', 209005, 7012658, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Beija Eu', 145, 1, 7, 'Caetano Veloso e Gilberto Gil', 197276, 6512544, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Give Me Love', 145, 1, 7, 'Caetano Veloso e Gilberto Gil', 249808, 8196331, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Ainda Lembro', 145, 1, 7, 'Caetano Veloso e Gilberto Gil', 218801, 7211247, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('A Menina Dança', 145, 1, 7, 'Caetano Veloso e Gilberto Gil', 129410, 4326918, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Dança Da Solidão', 145, 1, 7, 'Caetano Veloso e Gilberto Gil', 203520, 6699368, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Ao Meu Redor', 145, 1, 7, 'Caetano Veloso e Gilberto Gil', 275591, 9158834, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Bem Leve', 145, 1, 7, 'Caetano Veloso e Gilberto Gil', 159190, 5246835, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Segue O Seco', 145, 1, 7, 'Caetano Veloso e Gilberto Gil', 178207, 5922018, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('O Xote Das Meninas', 145, 1, 7, 'Caetano Veloso e Gilberto Gil', 291866, 9553228, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Wherever I Lay My Hat', 146, 1, 14, 136986, 4477321, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Get My Hands On Some Lovin''', 146, 1, 14, 149054, 4860380, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('No Good Without You', 146, 1, 14, 'William "Mickey" Stevenson', 161410, 5259218, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('You''ve Been A Long Time Coming', 146, 1, 14, 'Brian Holland/Eddie Holland/Lamont Dozier', 137221, 4437949, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('When I Had Your Love', 146, 1, 14, 'Robert Rogers/Warren "Pete" Moore/William "Mickey" Stevenson', 152424, 4972815, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('You''re What''s Happening (In The World Today)', 146, 1, 14, 'Allen Story/George Gordy/Robert Gordy', 142027, 4631104, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Loving You Is Sweeter Than Ever', 146, 1, 14, 'Ivy Hunter/Stevie Wonder', 166295, 5377546, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('It''s A Bitter Pill To Swallow', 146, 1, 14, 'Smokey Robinson/Warren "Pete" Moore', 194821, 6477882, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Seek And You Shall Find', 146, 1, 14, 'Ivy Hunter/William "Mickey" Stevenson', 223451, 7306719, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Gonna Keep On Tryin'' Till I Win Your Love', 146, 1, 14, 'Barrett Strong/Norman Whitfield', 176404, 5789945, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Gonna Give Her All The Love I''ve Got', 146, 1, 14, 'Barrett Strong/Norman Whitfield', 210886, 6893603, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('I Wish It Would Rain', 146, 1, 14, 'Barrett Strong/Norman Whitfield/Roger Penzabene', 172486, 5647327, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Abraham, Martin And John', 146, 1, 14, 'Dick Holler', 273057, 8888206, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Save The Children', 146, 1, 14, 'Al Cleveland/Marvin Gaye/Renaldo Benson', 194821, 6342021, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('You Sure Love To Ball', 146, 1, 14, 'Marvin Gaye', 218540, 7217872, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Ego Tripping Out', 146, 1, 14, 'Marvin Gaye', 314514, 10383887, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Praise', 146, 1, 14, 'Marvin Gaye', 235833, 7839179, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Heavy Love Affair', 146, 1, 14, 'Marvin Gaye', 227892, 7522232, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Down Under', 147, 1, 1, 222171, 7366142, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Overkill', 147, 1, 1, 225410, 7408652, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Be Good Johnny', 147, 1, 1, 216320, 7139814, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Everything I Need', 147, 1, 1, 216476, 7107625, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Down by the Sea', 147, 1, 1, 408163, 13314900, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Who Can It Be Now?', 147, 1, 1, 202396, 6682850, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('It''s a Mistake', 147, 1, 1, 273371, 8979965, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Dr. Heckyll & Mr. Jive', 147, 1, 1, 278465, 9110403, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Shakes and Ladders', 147, 1, 1, 198008, 6560753, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('No Sign of Yesterday', 147, 1, 1, 362004, 11829011, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Enter Sandman', 148, 1, 3, 'James Hetfield, Lars Ulrich and Kirk Hammett', 332251, 10852002, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Sad But True', 148, 1, 3, 'Ulrich', 324754, 10541258, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Holier Than Thou', 148, 1, 3, 'Ulrich', 227892, 7462011, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('The Unforgiven', 148, 1, 3, 'James Hetfield, Lars Ulrich and Kirk Hammett', 387082, 12646886, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Wherever I May Roam', 148, 1, 3, 'Ulrich', 404323, 13161169, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Don''t Tread On Me', 148, 1, 3, 'Ulrich', 240483, 7827907, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Through The Never', 148, 1, 3, 'James Hetfield, Lars Ulrich and Kirk Hammett', 244375, 8024047, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Nothing Else Matters', 148, 1, 3, 'Ulrich', 388832, 12606241, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Of Wolf And Man', 148, 1, 3, 'James Hetfield, Lars Ulrich and Kirk Hammett', 256835, 8339785, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('The God That Failed', 148, 1, 3, 'Ulrich', 308610, 10055959, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('My Friend Of Misery', 148, 1, 3, 'James Hetfield, Lars Ulrich and Jason Newsted', 409547, 13293515, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('The Struggle Within', 148, 1, 3, 'Ulrich', 234240, 7654052, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Helpless', 149, 1, 3, 'Harris/Tatler', 398315, 12977902, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('The Small Hours', 149, 1, 3, 'Holocaust', 403435, 13215133, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('The Wait', 149, 1, 3, 'Killing Joke', 295418, 9688418, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Crash Course In Brain Surgery', 149, 1, 3, 'Bourge/Phillips/Shelley', 190406, 6233729, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Last Caress/Green Hell', 149, 1, 3, 'Danzig', 209972, 6854313, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Am I Evil?', 149, 1, 3, 'Harris/Tatler', 470256, 15387219, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Blitzkrieg', 149, 1, 3, 'Jones/Sirotto/Smith', 216685, 7090018, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Breadfan', 149, 1, 3, 'Bourge/Phillips/Shelley', 341551, 11100130, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('The Prince', 149, 1, 3, 'Harris/Tatler', 265769, 8624492, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Stone Cold Crazy', 149, 1, 3, 'Deacon/May/Mercury/Taylor', 137717, 4514830, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('So What', 149, 1, 3, 'Culmer/Exalt', 189152, 6162894, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Killing Time', 149, 1, 3, 'Sweet Savage', 183693, 6021197, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Overkill', 149, 1, 3, 'Clarke/Kilmister/Tayler', 245133, 7971330, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Damage Case', 149, 1, 3, 'Clarke/Farren/Kilmister/Tayler', 220212, 7212997, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Stone Dead Forever', 149, 1, 3, 'Clarke/Kilmister/Tayler', 292127, 9556060, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Too Late Too Late', 149, 1, 3, 'Clarke/Kilmister/Tayler', 192052, 6276291, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Hit The Lights', 150, 1, 3, 'James Hetfield, Lars Ulrich', 257541, 8357088, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('The Four Horsemen', 150, 1, 3, 'James Hetfield, Lars Ulrich, Dave Mustaine', 433188, 14178138, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Motorbreath', 150, 1, 3, 'James Hetfield', 188395, 6153933, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Jump In The Fire', 150, 1, 3, 'James Hetfield, Lars Ulrich, Dave Mustaine', 281573, 9135755, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('(Anesthesia) Pulling Teeth', 150, 1, 3, 'Cliff Burton', 254955, 8234710, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Whiplash', 150, 1, 3, 'James Hetfield, Lars Ulrich', 249208, 8102839, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Phantom Lord', 150, 1, 3, 'James Hetfield, Lars Ulrich, Dave Mustaine', 302053, 9817143, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('No Remorse', 150, 1, 3, 'James Hetfield, Lars Ulrich', 386795, 12672166, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Seek & Destroy', 150, 1, 3, 'James Hetfield, Lars Ulrich', 415817, 13452301, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Metal Militia', 150, 1, 3, 'James Hetfield, Lars Ulrich, Dave Mustaine', 311327, 10141785, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Ain''t My Bitch', 151, 1, 3, 'James Hetfield, Lars Ulrich', 304457, 9931015, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('2 X 4', 151, 1, 3, 'James Hetfield, Lars Ulrich, Kirk Hammett', 328254, 10732251, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('The House Jack Built', 151, 1, 3, 'James Hetfield, Lars Ulrich, Kirk Hammett', 398942, 13005152, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Until It Sleeps', 151, 1, 3, 'James Hetfield, Lars Ulrich', 269740, 8837394, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('King Nothing', 151, 1, 3, 'James Hetfield, Lars Ulrich, Kirk Hammett', 328097, 10681477, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Hero Of The Day', 151, 1, 3, 'James Hetfield, Lars Ulrich, Kirk Hammett', 261982, 8540298, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Bleeding Me', 151, 1, 3, 'James Hetfield, Lars Ulrich, Kirk Hammett', 497998, 16249420, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Cure', 151, 1, 3, 'James Hetfield, Lars Ulrich', 294347, 9648615, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Poor Twisted Me', 151, 1, 3, 'James Hetfield, Lars Ulrich', 240065, 7854349, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Wasted My Hate', 151, 1, 3, 'James Hetfield, Lars Ulrich, Kirk Hammett', 237296, 7762300, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Mama Said', 151, 1, 3, 'James Hetfield, Lars Ulrich', 319764, 10508310, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Thorn Within', 151, 1, 3, 'James Hetfield, Lars Ulrich, Kirk Hammett', 351738, 11486686, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Ronnie', 151, 1, 3, 'James Hetfield, Lars Ulrich', 317204, 10390947, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('The Outlaw Torn', 151, 1, 3, 'James Hetfield, Lars Ulrich', 588721, 19286261, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Battery', 152, 1, 3, 'J.Hetfield/L.Ulrich', 312424, 10229577, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Master Of Puppets', 152, 1, 3, 'K.Hammett', 515239, 16893720, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('The Thing That Should Not Be', 152, 1, 3, 'K.Hammett', 396199, 12952368, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Welcome Home (Sanitarium)', 152, 1, 3, 'K.Hammett', 387186, 12679965, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Disposable Heroes', 152, 1, 3, 'J.Hetfield/L.Ulrich', 496718, 16135560, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Leper Messiah', 152, 1, 3, 'C.Burton', 347428, 11310434, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Orion', 152, 1, 3, 'K.Hammett', 500062, 16378477, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Damage Inc.', 152, 1, 3, 'K.Hammett', 330919, 10725029, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Fuel', 153, 1, 3, 'Hetfield, Ulrich, Hammett', 269557, 8876811, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('The Memory Remains', 153, 1, 3, 'Hetfield, Ulrich', 279353, 9110730, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Devil''s Dance', 153, 1, 3, 'Hetfield, Ulrich', 318955, 10414832, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('The Unforgiven II', 153, 1, 3, 'Hetfield, Ulrich, Hammett', 395520, 12886474, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Better Than You', 153, 1, 3, 'Hetfield, Ulrich', 322899, 10549070, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Slither', 153, 1, 3, 'Hetfield, Ulrich, Hammett', 313103, 10199789, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Carpe Diem Baby', 153, 1, 3, 'Hetfield, Ulrich, Hammett', 372480, 12170693, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Bad Seed', 153, 1, 3, 'Hetfield, Ulrich, Hammett', 245394, 8019586, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Where The Wild Things Are', 153, 1, 3, 'Hetfield, Ulrich, Newsted', 414380, 13571280, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Prince Charming', 153, 1, 3, 'Hetfield, Ulrich', 365061, 12009412, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Low Man''s Lyric', 153, 1, 3, 'Hetfield, Ulrich', 457639, 14855583, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Attitude', 153, 1, 3, 'Hetfield, Ulrich', 315898, 10335734, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Fixxxer', 153, 1, 3, 'Hetfield, Ulrich, Hammett', 496065, 16190041, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Fight Fire With Fire', 154, 1, 3, 'Metallica', 285753, 9420856, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Ride The Lightning', 154, 1, 3, 'Metallica', 397740, 13055884, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('For Whom The Bell Tolls', 154, 1, 3, 'Metallica', 311719, 10159725, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Fade To Black', 154, 1, 3, 'Metallica', 414824, 13531954, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Trapped Under Ice', 154, 1, 3, 'Metallica', 244532, 7975942, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Escape', 154, 1, 3, 'Metallica', 264359, 8652332, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Creeping Death', 154, 1, 3, 'Metallica', 396878, 12955593, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('The Call Of Ktulu', 154, 1, 3, 'Metallica', 534883, 17486240, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Frantic', 155, 1, 3, 'Bob Rock/James Hetfield/Kirk Hammett/Lars Ulrich', 350458, 11510849, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('St. Anger', 155, 1, 3, 'Bob Rock/James Hetfield/Kirk Hammett/Lars Ulrich', 441234, 14363779, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Some Kind Of Monster', 155, 1, 3, 'Bob Rock/James Hetfield/Kirk Hammett/Lars Ulrich', 505626, 16557497, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Dirty Window', 155, 1, 3, 'Bob Rock/James Hetfield/Kirk Hammett/Lars Ulrich', 324989, 10670604, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Invisible Kid', 155, 1, 3, 'Bob Rock/James Hetfield/Kirk Hammett/Lars Ulrich', 510197, 16591800, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('My World', 155, 1, 3, 'Bob Rock/James Hetfield/Kirk Hammett/Lars Ulrich', 345626, 11253756, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Shoot Me Again', 155, 1, 3, 'Bob Rock/James Hetfield/Kirk Hammett/Lars Ulrich', 430210, 14093551, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Sweet Amber', 155, 1, 3, 'Bob Rock/James Hetfield/Kirk Hammett/Lars Ulrich', 327235, 10616595, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('The Unnamed Feeling', 155, 1, 3, 'Bob Rock/James Hetfield/Kirk Hammett/Lars Ulrich', 429479, 14014582, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Purify', 155, 1, 3, 'Bob Rock/James Hetfield/Kirk Hammett/Lars Ulrich', 314017, 10232537, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('All Within My Hands', 155, 1, 3, 'Bob Rock/James Hetfield/Kirk Hammett/Lars Ulrich', 527986, 17162741, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Blackened', 156, 1, 3, 'James Hetfield, Lars Ulrich & Jason Newsted', 403382, 13254874, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('...And Justice For All', 156, 1, 3, 'James Hetfield, Lars Ulrich & Kirk Hammett', 585769, 19262088, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Eye Of The Beholder', 156, 1, 3, 'James Hetfield, Lars Ulrich & Kirk Hammett', 385828, 12747894, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('One', 156, 1, 3, 'James Hetfield & Lars Ulrich', 446484, 14695721, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('The Shortest Straw', 156, 1, 3, 'James Hetfield and Lars Ulrich', 395389, 13013990, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Harvester Of Sorrow', 156, 1, 3, 'James Hetfield and Lars Ulrich', 345547, 11377339, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('The Frayed Ends Of Sanity', 156, 1, 3, 'James Hetfield, Lars Ulrich and Kirk Hammett', 464039, 15198986, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('To Live Is To Die', 156, 1, 3, 'James Hetfield, Lars Ulrich and Cliff Burton', 588564, 19243795, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Dyers Eve', 156, 1, 3, 'James Hetfield, Lars Ulrich and Kirk Hammett', 313991, 10302828, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Springsville', 157, 1, 2, 'J. Carisi', 207725, 6776219, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('The Maids Of Cadiz', 157, 1, 2, 'L. Delibes', 233534, 7505275, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('The Duke', 157, 1, 2, 'Dave Brubeck', 214961, 6977626, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('My Ship', 157, 1, 2, 'Ira Gershwin, Kurt Weill', 268016, 8581144, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Miles Ahead', 157, 1, 2, 'Miles Davis, Gil Evans', 209893, 6807707, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Blues For Pablo', 157, 1, 2, 'Gil Evans', 318328, 10218398, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('New Rhumba', 157, 1, 2, 'A. Jamal', 276871, 8980400, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('The Meaning Of The Blues', 157, 1, 2, 'R. Troup, L. Worth', 168594, 5395412, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Lament', 157, 1, 2, 'J.J. Johnson', 134191, 4293394, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('I Don''t Wanna Be Kissed (By Anyone But You)', 157, 1, 2, 'H. Spina, J. Elliott', 191320, 6219487, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Springsville (Alternate Take)', 157, 1, 2, 'J. Carisi', 196388, 6382079, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Blues For Pablo (Alternate Take)', 157, 1, 2, 'Gil Evans', 212558, 6900619, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('The Meaning Of The Blues/Lament (Alternate Take)', 157, 1, 2, 'J.J. Johnson/R. Troup, L. Worth', 309786, 9912387, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('I Don''t Wanna Be Kissed (By Anyone But You) (Alternate Take)', 157, 1, 2, 'H. Spina, J. Elliott', 192078, 6254796, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Coração De Estudante', 158, 1, 7, 'Wagner Tiso, Milton Nascimento', 238550, 7797308, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('A Noite Do Meu Bem', 158, 1, 7, 'Dolores Duran', 220081, 7125225, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Paisagem Na Janela', 158, 1, 7, 'Lô Borges, Fernando Brant', 197694, 6523547, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Cuitelinho', 158, 1, 7, 'Folclore', 209397, 6803970, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Caxangá', 158, 1, 7, 'Milton Nascimento, Fernando Brant', 245551, 8144179, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Nos Bailes Da Vida', 158, 1, 7, 'Milton Nascimento, Fernando Brant', 275748, 9126170, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Menestrel Das Alagoas', 158, 1, 7, 'Milton Nascimento, Fernando Brant', 199758, 6542289, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Brasil', 158, 1, 7, 'Milton Nascimento, Fernando Brant', 155428, 5252560, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Canção Do Novo Mundo', 158, 1, 7, 'Beto Guedes, Ronaldo Bastos', 215353, 7032626, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Um Gosto De Sol', 158, 1, 7, 'Milton Nascimento, Ronaldo Bastos', 307200, 9893875, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Solar', 158, 1, 7, 'Milton Nascimento, Fernando Brant', 156212, 5098288, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Para Lennon E McCartney', 158, 1, 7, 'Lô Borges, Márcio Borges, Fernando Brant', 321828, 10626920, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Maria, Maria', 158, 1, 7, 'Milton Nascimento, Fernando Brant', 72463, 2371543, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Minas', 159, 1, 7, 'Milton Nascimento, Caetano Veloso', 152293, 4921056, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Fé Cega, Faca Amolada', 159, 1, 7, 'Milton Nascimento, Ronaldo Bastos', 278099, 9258649, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Beijo Partido', 159, 1, 7, 'Toninho Horta', 229564, 7506969, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Saudade Dos Aviões Da Panair (Conversando No Bar)', 159, 1, 7, 'Milton Nascimento, Fernando Brant', 268721, 8805088, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Gran Circo', 159, 1, 7, 'Milton Nascimento, Márcio Borges', 251297, 8237026, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Ponta de Areia', 159, 1, 7, 'Milton Nascimento, Fernando Brant', 272796, 8874285, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Trastevere', 159, 1, 7, 'Milton Nascimento, Ronaldo Bastos', 265665, 8708399, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Idolatrada', 159, 1, 7, 'Milton Nascimento, Fernando Brant', 286249, 9426153, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Leila (Venha Ser Feliz)', 159, 1, 7, 'Milton Nascimento', 209737, 6898507, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Paula E Bebeto', 159, 1, 7, 'Milton Nascimento, Caetano Veloso', 135732, 4583956, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Simples', 159, 1, 7, 'Nelson Angelo', 133093, 4326333, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Norwegian Wood', 159, 1, 7, 'John Lennon, Paul McCartney', 413910, 13520382, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Caso Você Queira Saber', 159, 1, 7, 'Beto Guedes, Márcio Borges', 205688, 6787901, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Ace Of Spades', 160, 1, 3, 'Clarke/Kilmister/Taylor', 169926, 5523552, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Love Me Like A Reptile', 160, 1, 3, 'Clarke/Kilmister/Taylor', 203546, 6616389, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Shoot You In The Back', 160, 1, 3, 'Clarke/Kilmister/Taylor', 160026, 5175327, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Live To Win', 160, 1, 3, 'Clarke/Kilmister/Taylor', 217626, 7102182, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Fast And Loose', 160, 1, 3, 'Clarke/Kilmister/Taylor', 203337, 6643350, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('(We Are) The Road Crew', 160, 1, 3, 'Clarke/Kilmister/Taylor', 192600, 6283035, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Fire Fire', 160, 1, 3, 'Clarke/Kilmister/Taylor', 164675, 5416114, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Jailbait', 160, 1, 3, 'Clarke/Kilmister/Taylor', 213916, 6983609, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Dance', 160, 1, 3, 'Clarke/Kilmister/Taylor', 158432, 5155099, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Bite The Bullet', 160, 1, 3, 'Clarke/Kilmister/Taylor', 98115, 3195536, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('The Chase Is Better Than The Catch', 160, 1, 3, 'Clarke/Kilmister/Taylor', 258403, 8393310, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('The Hammer', 160, 1, 3, 'Clarke/Kilmister/Taylor', 168071, 5543267, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Dirty Love', 160, 1, 3, 'Clarke/Kilmister/Taylor', 176457, 5805241, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Please Don''t Touch', 160, 1, 3, 'Heath/Robinson', 169926, 5557002, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Emergency', 160, 1, 3, 'Dufort/Johnson/McAuliffe/Williams', 180427, 5828728, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Kir Royal', 161, 1, 16, 'Mônica Marianno', 234788, 7706552, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('O Que Vai Em Meu Coração', 161, 1, 16, 'Mônica Marianno', 255373, 8366846, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Aos Leões', 161, 1, 16, 'Mônica Marianno', 234684, 7790574, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Dois Índios', 161, 1, 16, 'Mônica Marianno', 219271, 7213072, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Noite Negra', 161, 1, 16, 'Mônica Marianno', 206811, 6819584, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Beijo do Olhar', 161, 1, 16, 'Mônica Marianno', 252682, 8369029, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('É Fogo', 161, 1, 16, 'Mônica Marianno', 194873, 6501520, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Já Foi', 161, 1, 16, 'Mônica Marianno', 245681, 8094872, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Só Se For Pelo Cabelo', 161, 1, 16, 'Mônica Marianno', 238288, 8006345, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('No Clima', 161, 1, 16, 'Mônica Marianno', 249495, 8362040, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('A Moça e a Chuva', 161, 1, 16, 'Mônica Marianno', 274625, 8929357, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Demorou!', 161, 1, 16, 'Mônica Marianno', 39131, 1287083, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Bitter Pill', 162, 1, 3, 'Mick Mars/Nikki Sixx/Tommy Lee/Vince Neil', 266814, 8666786, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Enslaved', 162, 1, 3, 'Mick Mars/Nikki Sixx/Tommy Lee', 269844, 8789966, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Girls, Girls, Girls', 162, 1, 3, 'Mick Mars/Nikki Sixx/Tommy Lee', 270288, 8874814, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Kickstart My Heart', 162, 1, 3, 'Nikki Sixx', 283559, 9237736, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Wild Side', 162, 1, 3, 'Nikki Sixx/Tommy Lee/Vince Neil', 276767, 9116997, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Glitter', 162, 1, 3, 'Bryan Adams/Nikki Sixx/Scott Humphrey', 340114, 11184094, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Dr. Feelgood', 162, 1, 3, 'Mick Mars/Nikki Sixx', 282618, 9281875, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Same Ol'' Situation', 162, 1, 3, 'Mick Mars/Nikki Sixx/Tommy Lee/Vince Neil', 254511, 8283958, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Home Sweet Home', 162, 1, 3, 'Nikki Sixx/Tommy Lee/Vince Neil', 236904, 7697538, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Afraid', 162, 1, 3, 'Nikki Sixx', 248006, 8077464, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Don''t Go Away Mad (Just Go Away)', 162, 1, 3, 'Mick Mars/Nikki Sixx', 279980, 9188156, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Without You', 162, 1, 3, 'Mick Mars/Nikki Sixx', 268956, 8738371, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Smokin'' in The Boys Room', 162, 1, 3, 'Cub Coda/Michael Lutz', 206837, 6735408, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Primal Scream', 162, 1, 3, 'Mick Mars/Nikki Sixx/Tommy Lee/Vince Neil', 286197, 9421164, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Too Fast For Love', 162, 1, 3, 'Nikki Sixx', 200829, 6580542, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Looks That Kill', 162, 1, 3, 'Nikki Sixx', 240979, 7831122, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Shout At The Devil', 162, 1, 3, 'Nikki Sixx', 221962, 7281974, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Intro', 163, 1, 1, 'Kurt Cobain', 52218, 1688527, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('School', 163, 1, 1, 'Kurt Cobain', 160235, 5234885, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Drain You', 163, 1, 1, 'Kurt Cobain', 215196, 7013175, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Aneurysm', 163, 1, 1, 'Nirvana', 271516, 8862545, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Smells Like Teen Spirit', 163, 1, 1, 'Nirvana', 287190, 9425215, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Been A Son', 163, 1, 1, 'Kurt Cobain', 127555, 4170369, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Lithium', 163, 1, 1, 'Kurt Cobain', 250017, 8148800, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Sliver', 163, 1, 1, 'Kurt Cobain', 116218, 3784567, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Spank Thru', 163, 1, 1, 'Kurt Cobain', 190354, 6186487, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Scentless Apprentice', 163, 1, 1, 'Nirvana', 211200, 6898177, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Heart-Shaped Box', 163, 1, 1, 'Kurt Cobain', 281887, 9210982, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Milk It', 163, 1, 1, 'Kurt Cobain', 225724, 7406945, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Negative Creep', 163, 1, 1, 'Kurt Cobain', 163761, 5354854, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Polly', 163, 1, 1, 'Kurt Cobain', 149995, 4885331, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Breed', 163, 1, 1, 'Kurt Cobain', 208378, 6759080, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Tourette''s', 163, 1, 1, 'Kurt Cobain', 115591, 3753246, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Blew', 163, 1, 1, 'Kurt Cobain', 216346, 7096936, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Smells Like Teen Spirit', 164, 1, 1, 'Kurt Cobain', 301296, 9823847, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('In Bloom', 164, 1, 1, 'Kurt Cobain', 254928, 8327077, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Come As You Are', 164, 1, 1, 'Kurt Cobain', 219219, 7123357, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Breed', 164, 1, 1, 'Kurt Cobain', 183928, 5984812, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Lithium', 164, 1, 1, 'Kurt Cobain', 256992, 8404745, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Polly', 164, 1, 1, 'Kurt Cobain', 177031, 5788407, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Territorial Pissings', 164, 1, 1, 'Kurt Cobain', 143281, 4613880, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Drain You', 164, 1, 1, 'Kurt Cobain', 223973, 7273440, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Lounge Act', 164, 1, 1, 'Kurt Cobain', 156786, 5093635, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Stay Away', 164, 1, 1, 'Kurt Cobain', 212636, 6956404, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('On A Plain', 164, 1, 1, 'Kurt Cobain', 196440, 6390635, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Something In The Way', 164, 1, 1, 'Kurt Cobain', 230556, 7472168, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Time', 165, 1, 1, 96888, 3124455, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('P.S.Apareça', 165, 1, 1, 209188, 6842244, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Sangue Latino', 165, 1, 1, 223033, 7354184, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Folhas Secas', 165, 1, 1, 161253, 5284522, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Poeira', 165, 1, 1, 267075, 8784141, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Mágica', 165, 1, 1, 233743, 7627348, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Quem Mata A Mulher Mata O Melhor', 165, 1, 1, 262791, 8640121, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Mundaréu', 165, 1, 1, 217521, 7158975, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('O Braço Da Minha Guitarra', 165, 1, 1, 258351, 8469531, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Deus', 165, 1, 1, 284160, 9188110, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Mãe Terra', 165, 1, 1, 306625, 9949269, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Às Vezes', 165, 1, 1, 330292, 10706614, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Menino De Rua', 165, 1, 1, 329795, 10784595, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Prazer E Fé', 165, 1, 1, 214831, 7031383, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Elza', 165, 1, 1, 199105, 6517629, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Requebra', 166, 1, 7, 240744, 8010811, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Nossa Gente (Avisa Là)', 166, 1, 7, 188212, 6233201, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Olodum - Alegria Geral', 166, 1, 7, 233404, 7754245, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Madagáscar Olodum', 166, 1, 7, 252264, 8270584, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Faraó Divindade Do Egito', 166, 1, 7, 228571, 7523278, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Todo Amor (Asas Da Liberdade)', 166, 1, 7, 245133, 8121434, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Denúncia', 166, 1, 7, 159555, 5327433, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Olodum, A Banda Do Pelô', 166, 1, 7, 146599, 4900121, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Cartao Postal', 166, 1, 7, 211565, 7082301, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Jeito Faceiro', 166, 1, 7, 217286, 7233608, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Revolta Olodum', 166, 1, 7, 230191, 7557065, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Reggae Odoyá', 166, 1, 7, 224470, 7499807, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Protesto Do Olodum (Ao Vivo)', 166, 1, 7, 206001, 6766104, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Olodum - Smile (Instrumental)', 166, 1, 7, 235833, 7871409, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Vulcão Dub - Fui Eu', 167, 1, 7, 'Bi Ribeira/Herbert Vianna/João Barone', 287059, 9495202, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('O Trem Da Juventude', 167, 1, 7, 'Herbert Vianna', 225880, 7507655, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Manguetown', 167, 1, 7, 'Chico Science/Dengue/Lúcio Maia', 162925, 5382018, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Um Amor, Um Lugar', 167, 1, 7, 'Herbert Vianna', 184555, 6090334, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Bora-Bora', 167, 1, 7, 'Herbert Vianna', 182987, 6036046, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Vai Valer', 167, 1, 7, 'Herbert Vianna', 206524, 6899778, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('I Feel Good (I Got You) - Sossego', 167, 1, 7, 'James Brown/Tim Maia', 244976, 8091302, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Uns Dias', 167, 1, 7, 'Herbert Vianna', 240796, 7931552, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Sincero Breu', 167, 1, 7, 'C. A./C.A./Celso Alvim/Herbert Vianna/Mário Moura/Pedro Luís/Sidon Silva', 208013, 6921669, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Meu Erro', 167, 1, 7, 'Herbert Vianna', 188577, 6192791, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Selvagem', 167, 1, 7, 'Bi Ribeiro/Herbert Vianna/João Barone', 148558, 4942831, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Brasília 5:31', 167, 1, 7, 'Herbert Vianna', 178337, 5857116, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Tendo A Lua', 167, 1, 7, 'Herbert Vianna/Tet Tillett', 198922, 6568180, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Que País É Este', 167, 1, 7, 'Renato Russo', 216685, 7137865, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Navegar Impreciso', 167, 1, 7, 'Herbert Vianna', 262870, 8761283, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Feira Moderna', 167, 1, 7, 'Beto Guedes/Fernando Brant/L Borges', 182517, 6001793, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Tequila - Lourinha Bombril (Parate Y Mira)', 167, 1, 7, 'Bahiano/Chuck Rio/Diego Blanco/Herbert Vianna', 255738, 8514961, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Vamo Batê Lata', 167, 1, 7, 'Herbert Vianna', 228754, 7585707, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Life During Wartime', 167, 1, 7, 'Chris Frantz/David Byrne/Jerry Harrison/Tina Weymouth', 259186, 8543439, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Nebulosa Do Amor', 167, 1, 7, 'Herbert Vianna', 203415, 6732496, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Caleidoscópio', 167, 1, 7, 'Herbert Vianna', 256522, 8484597, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Trac Trac', 168, 1, 7, 'Fito Paez/Herbert Vianna', 231653, 7638256, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Tendo A Lua', 168, 1, 7, 'Herbert Vianna/Tetê Tillet', 219585, 7342776, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Mensagen De Amor (2000)', 168, 1, 7, 'Herbert Vianna', 183588, 6061324, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Lourinha Bombril', 168, 1, 7, 'Bahiano/Diego Blanco/Herbert Vianna', 159895, 5301882, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('La Bella Luna', 168, 1, 7, 'Herbert Vianna', 192653, 6428598, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Busca Vida', 168, 1, 7, 'Herbert Vianna', 176431, 5798663, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Uma Brasileira', 168, 1, 7, 'Carlinhos Brown/Herbert Vianna', 217573, 7280574, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Luis Inacio (300 Picaretas)', 168, 1, 7, 'Herbert Vianna', 198191, 6576790, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Saber Amar', 168, 1, 7, 'Herbert Vianna', 202788, 6723733, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Ela Disse Adeus', 168, 1, 7, 'Herbert Vianna', 226298, 7608999, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('O Amor Nao Sabe Esperar', 168, 1, 7, 'Herbert Vianna', 241084, 8042534, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Aonde Quer Que Eu Va', 168, 1, 7, 'Herbert Vianna/Paulo Sérgio Valle', 258089, 8470121, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Caleidoscópio', 169, 1, 7, 211330, 7000017, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Óculos', 169, 1, 7, 219271, 7262419, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Cinema Mudo', 169, 1, 7, 227918, 7612168, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Alagados', 169, 1, 7, 302393, 10255463, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Lanterna Dos Afogados', 169, 1, 7, 190197, 6264318, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Melô Do Marinheiro', 169, 1, 7, 208352, 6905668, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Vital E Sua Moto', 169, 1, 7, 210207, 6902878, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('O Beco', 169, 1, 7, 189178, 6293184, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Meu Erro', 169, 1, 7, 208431, 6893533, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Perplexo', 169, 1, 7, 161175, 5355013, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Me Liga', 169, 1, 7, 229590, 7565912, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Quase Um Segundo', 169, 1, 7, 275644, 8971355, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Selvagem', 169, 1, 7, 245890, 8141084, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Romance Ideal', 169, 1, 7, 250070, 8260477, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Será Que Vai Chover?', 169, 1, 7, 337057, 11133830, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('SKA', 169, 1, 7, 148871, 4943540, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Bark at the Moon', 170, 2, 1, 'O. Osbourne', 257252, 4601224, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('I Don''t Know', 171, 2, 1, 'B. Daisley, O. Osbourne & R. Rhoads', 312980, 5525339, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Crazy Train', 171, 2, 1, 'B. Daisley, O. Osbourne & R. Rhoads', 295960, 5255083, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Flying High Again', 172, 2, 1, 'L. Kerslake, O. Osbourne, R. Daisley & R. Rhoads', 290851, 5179599, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Mama, I''m Coming Home', 173, 2, 1, 'L. Kilmister, O. Osbourne & Z. Wylde', 251586, 4302390, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('No More Tears', 173, 2, 1, 'J. Purdell, M. Inez, O. Osbourne, R. Castillo & Z. Wylde', 444358, 7362964, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('I Don''t Know', 174, 1, 3, 'O. Osbourne, R. Daisley, R. Rhoads', 283088, 9207869, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Crazy Train', 174, 1, 3, 'O. Osbourne, R. Daisley, R. Rhoads', 322716, 10517408, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Believer', 174, 1, 3, 'O. Osbourne, R. Daisley, R. Rhoads', 308897, 10003794, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Mr. Crowley', 174, 1, 3, 'O. Osbourne, R. Daisley, R. Rhoads', 344241, 11184130, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Flying High Again', 174, 1, 3, 'O. Osbourne, R. Daisley, R. Rhoads, L. Kerslake', 261224, 8481822, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Relvelation (Mother Earth)', 174, 1, 3, 'O. Osbourne, R. Daisley, R. Rhoads', 349440, 11367866, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Steal Away (The Night)', 174, 1, 3, 'O. Osbourne, R. Daisley, R. Rhoads', 485720, 15945806, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Suicide Solution (With Guitar Solo)', 174, 1, 3, 'O. Osbourne, R. Daisley, R. Rhoads', 467069, 15119938, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Iron Man', 174, 1, 3, 'A. F. Iommi, W. Ward, T. Butler, J. Osbourne', 172120, 5609799, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Children Of The Grave', 174, 1, 3, 'A. F. Iommi, W. Ward, T. Butler, J. Osbourne', 357067, 11626740, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Paranoid', 174, 1, 3, 'A. F. Iommi, W. Ward, T. Butler, J. Osbourne', 176352, 5729813, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Goodbye To Romance', 174, 1, 3, 'O. Osbourne, R. Daisley, R. Rhoads', 334393, 10841337, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('No Bone Movies', 174, 1, 3, 'O. Osbourne, R. Daisley, R. Rhoads', 249208, 8095199, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Dee', 174, 1, 3, 'R. Rhoads', 261302, 8555963, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Shining In The Light', 175, 1, 1, 'Jimmy Page, Robert Plant, Charlie Jones, Michael Lee', 240796, 7951688, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('When The World Was Young', 175, 1, 1, 'Jimmy Page, Robert Plant, Charlie Jones, Michael Lee', 373394, 12198930, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Upon A Golden Horse', 175, 1, 1, 'Jimmy Page, Robert Plant, Charlie Jones, Michael Lee', 232359, 7594829, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Blue Train', 175, 1, 1, 'Jimmy Page, Robert Plant, Charlie Jones, Michael Lee', 405028, 13170391, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Please Read The Letter', 175, 1, 1, 'Jimmy Page, Robert Plant, Charlie Jones, Michael Lee', 262112, 8603372, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Most High', 175, 1, 1, 'Jimmy Page, Robert Plant, Charlie Jones, Michael Lee', 336535, 10999203, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Heart In Your Hand', 175, 1, 1, 'Jimmy Page, Robert Plant, Charlie Jones, Michael Lee', 230896, 7598019, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Walking Into Clarksdale', 175, 1, 1, 'Jimmy Page, Robert Plant, Charlie Jones, Michael Lee', 318511, 10396315, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Burning Up', 175, 1, 1, 'Jimmy Page, Robert Plant, Charlie Jones, Michael Lee', 321619, 10525136, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('When I Was A Child', 175, 1, 1, 'Jimmy Page, Robert Plant, Charlie Jones, Michael Lee', 345626, 11249456, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('House Of Love', 175, 1, 1, 'Jimmy Page, Robert Plant, Charlie Jones, Michael Lee', 335699, 10990880, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Sons Of Freedom', 175, 1, 1, 'Jimmy Page, Robert Plant, Charlie Jones, Michael Lee', 246465, 8087944, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('United Colours', 176, 1, 10, 'Brian Eno, Bono, Adam Clayton, The Edge & Larry Mullen Jnr.', 330266, 10939131, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Slug', 176, 1, 10, 'Brian Eno, Bono, Adam Clayton, The Edge & Larry Mullen Jnr.', 281469, 9295950, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Your Blue Room', 176, 1, 10, 'Brian Eno, Bono, Adam Clayton, The Edge & Larry Mullen Jnr.', 328228, 10867860, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Always Forever Now', 176, 1, 10, 'Brian Eno, Bono, Adam Clayton, The Edge & Larry Mullen Jnr.', 383764, 12727928, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('A Different Kind Of Blue', 176, 1, 10, 'Brian Eno, Bono, Adam Clayton, The Edge & Larry Mullen Jnr.', 120816, 3884133, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Beach Sequence', 176, 1, 10, 'Brian Eno, Bono, Adam Clayton, The Edge & Larry Mullen Jnr.', 212297, 6928259, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Miss Sarajevo', 176, 1, 10, 'Brian Eno, Bono, Adam Clayton, The Edge & Larry Mullen Jnr.', 340767, 11064884, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Ito Okashi', 176, 1, 10, 'Brian Eno, Bono, Adam Clayton, The Edge & Larry Mullen Jnr.', 205087, 6572813, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('One Minute Warning', 176, 1, 10, 'Brian Eno, Bono, Adam Clayton, The Edge & Larry Mullen Jnr.', 279693, 9335453, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Corpse (These Chains Are Way Too Long)', 176, 1, 10, 'Brian Eno, Bono, Adam Clayton, The Edge & Larry Mullen Jnr.', 214909, 6920451, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Elvis Ate America', 176, 1, 10, 'Brian Eno, Bono, Adam Clayton, The Edge & Larry Mullen Jnr.', 180166, 5851053, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Plot 180', 176, 1, 10, 'Brian Eno, Bono, Adam Clayton, The Edge & Larry Mullen Jnr.', 221596, 7253729, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Theme From The Swan', 176, 1, 10, 'Brian Eno, Bono, Adam Clayton, The Edge & Larry Mullen Jnr.', 203911, 6638076, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Theme From Let''s Go Native', 176, 1, 10, 'Brian Eno, Bono, Adam Clayton, The Edge & Larry Mullen Jnr.', 186723, 6179777, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Wrathchild', 177, 1, 1, 'Steve Harris', 170396, 5499390, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Killers', 177, 1, 1, 'Paul Di''Anno/Steve Harris', 309995, 10009697, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Prowler', 177, 1, 1, 'Steve Harris', 240274, 7782963, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Murders In The Rue Morgue', 177, 1, 1, 'Steve Harris', 258638, 8360999, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Women In Uniform', 177, 1, 1, 'Greg Macainsh', 189936, 6139651, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Remember Tomorrow', 177, 1, 1, 'Paul Di''Anno/Steve Harris', 326426, 10577976, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Sanctuary', 177, 1, 1, 'David Murray/Paul Di''Anno/Steve Harris', 198844, 6423543, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Running Free', 177, 1, 1, 'Paul Di''Anno/Steve Harris', 199706, 6483496, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Phantom Of The Opera', 177, 1, 1, 'Steve Harris', 418168, 13585530, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Iron Maiden', 177, 1, 1, 'Steve Harris', 235232, 7600077, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Corduroy', 178, 1, 1, 'Pearl Jam & Eddie Vedder', 305293, 9991106, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Given To Fly', 178, 1, 1, 'Eddie Vedder & Mike McCready', 233613, 7678347, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Hail, Hail', 178, 1, 1, 'Stone Gossard & Eddie Vedder & Jeff Ament & Mike McCready', 223764, 7364206, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Daughter', 178, 1, 1, 'Dave Abbruzzese & Jeff Ament & Stone Gossard & Mike McCready & Eddie Vedder', 407484, 13420697, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Elderly Woman Behind The Counter In A Small Town', 178, 1, 1, 'Dave Abbruzzese & Jeff Ament & Stone Gossard & Mike McCready & Eddie Vedder', 229328, 7509304, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Untitled', 178, 1, 1, 'Pearl Jam', 122801, 3957141, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('MFC', 178, 1, 1, 'Eddie Vedder', 148192, 4817665, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Go', 178, 1, 1, 'Dave Abbruzzese & Jeff Ament & Stone Gossard & Mike McCready & Eddie Vedder', 161541, 5290810, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Red Mosquito', 178, 1, 1, 'Jeff Ament & Stone Gossard & Jack Irons & Mike McCready & Eddie Vedder', 242991, 7944923, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Even Flow', 178, 1, 1, 'Stone Gossard & Eddie Vedder', 317100, 10394239, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Off He Goes', 178, 1, 1, 'Eddie Vedder', 343222, 11245109, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Nothingman', 178, 1, 1, 'Jeff Ament & Eddie Vedder', 278595, 9107017, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Do The Evolution', 178, 1, 1, 'Eddie Vedder & Stone Gossard', 225462, 7377286, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Better Man', 178, 1, 1, 'Eddie Vedder', 246204, 8019563, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Black', 178, 1, 1, 'Stone Gossard & Eddie Vedder', 415712, 13580009, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('F*Ckin'' Up', 178, 1, 1, 'Neil Young', 377652, 12360893, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Life Wasted', 179, 1, 4, 'Stone Gossard', 234344, 7610169, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('World Wide Suicide', 179, 1, 4, 'Eddie Vedder', 209188, 6885908, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Comatose', 179, 1, 4, 'Mike McCready & Stone Gossard', 139990, 4574516, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Severed Hand', 179, 1, 4, 'Eddie Vedder', 270341, 8817438, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Marker In The Sand', 179, 1, 4, 'Mike McCready', 263235, 8656578, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Parachutes', 179, 1, 4, 'Stone Gossard', 216555, 7074973, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Unemployable', 179, 1, 4, 'Matt Cameron & Mike McCready', 184398, 6066542, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Big Wave', 179, 1, 4, 'Jeff Ament', 178573, 5858788, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Gone', 179, 1, 4, 'Eddie Vedder', 249547, 8158204, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Wasted Reprise', 179, 1, 4, 'Stone Gossard', 53733, 1731020, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Army Reserve', 179, 1, 4, 'Jeff Ament', 225567, 7393771, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Come Back', 179, 1, 4, 'Eddie Vedder & Mike McCready', 329743, 10768701, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Inside Job', 179, 1, 4, 'Eddie Vedder & Mike McCready', 428643, 14006924, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Can''t Keep', 180, 1, 1, 'Eddie Vedder', 219428, 7215713, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Save You', 180, 1, 1, 'Eddie Vedder/Jeff Ament/Matt Cameron/Mike McCready/Stone Gossard', 230112, 7609110, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Love Boat Captain', 180, 1, 1, 'Eddie Vedder', 276453, 9016789, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Cropduster', 180, 1, 1, 'Matt Cameron', 231888, 7588928, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Ghost', 180, 1, 1, 'Jeff Ament', 195108, 6383772, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('I Am Mine', 180, 1, 1, 'Eddie Vedder', 215719, 7086901, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Thumbing My Way', 180, 1, 1, 'Eddie Vedder', 250226, 8201437, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('You Are', 180, 1, 1, 'Matt Cameron', 270863, 8938409, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Get Right', 180, 1, 1, 'Matt Cameron', 158589, 5223345, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Green Disease', 180, 1, 1, 'Eddie Vedder', 161253, 5375818, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Help Help', 180, 1, 1, 'Jeff Ament', 215092, 7033002, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Bushleager', 180, 1, 1, 'Stone Gossard', 237479, 7849757, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('1/2 Full', 180, 1, 1, 'Jeff Ament', 251010, 8197219, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Arc', 180, 1, 1, 'Pearl Jam', 65593, 2099421, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('All or None', 180, 1, 1, 'Stone Gossard', 277655, 9104728, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Once', 181, 1, 1, 'Stone Gossard', 231758, 7561555, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Evenflow', 181, 1, 1, 'Stone Gossard', 293720, 9622017, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Alive', 181, 1, 1, 'Stone Gossard', 341080, 11176623, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Why Go', 181, 1, 1, 'Jeff Ament', 200254, 6539287, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Black', 181, 1, 1, 'Dave Krusen/Stone Gossard', 343823, 11213314, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Jeremy', 181, 1, 1, 'Jeff Ament', 318981, 10447222, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Oceans', 181, 1, 1, 'Jeff Ament/Stone Gossard', 162194, 5282368, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Porch', 181, 1, 1, 'Eddie Vedder', 210520, 6877475, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Garden', 181, 1, 1, 'Jeff Ament/Stone Gossard', 299154, 9740738, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Deep', 181, 1, 1, 'Jeff Ament/Stone Gossard', 258324, 8432497, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Release', 181, 1, 1, 'Jeff Ament/Mike McCready/Stone Gossard', 546063, 17802673, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Go', 182, 1, 1, 'Dave Abbruzzese/Eddie Vedder/Jeff Ament/Mike McCready/Stone Gossard', 193123, 6351920, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Animal', 182, 1, 1, 'Dave Abbruzzese/Eddie Vedder/Jeff Ament/Mike McCready/Stone Gossard', 169325, 5503459, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Daughter', 182, 1, 1, 'Dave Abbruzzese/Eddie Vedder/Jeff Ament/Mike McCready/Stone Gossard', 235598, 7824586, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Glorified G', 182, 1, 1, 'Dave Abbruzzese/Eddie Vedder/Jeff Ament/Mike McCready/Stone Gossard', 206968, 6772116, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Dissident', 182, 1, 1, 'Dave Abbruzzese/Eddie Vedder/Jeff Ament/Mike McCready/Stone Gossard', 215510, 7034500, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('W.M.A.', 182, 1, 1, 'Dave Abbruzzese/Eddie Vedder/Jeff Ament/Mike McCready/Stone Gossard', 359262, 12037261, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Blood', 182, 1, 1, 'Dave Abbruzzese/Eddie Vedder/Jeff Ament/Mike McCready/Stone Gossard', 170631, 5551478, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Rearviewmirror', 182, 1, 1, 'Dave Abbruzzese/Eddie Vedder/Jeff Ament/Mike McCready/Stone Gossard', 284186, 9321053, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Rats', 182, 1, 1, 'Dave Abbruzzese/Eddie Vedder/Jeff Ament/Mike McCready/Stone Gossard', 255425, 8341934, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Elderly Woman Behind The Counter In A Small Town', 182, 1, 1, 'Dave Abbruzzese/Eddie Vedder/Jeff Ament/Mike McCready/Stone Gossard', 196336, 6499398, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Leash', 182, 1, 1, 'Dave Abbruzzese/Eddie Vedder/Jeff Ament/Mike McCready/Stone Gossard', 189257, 6191560, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Indifference', 182, 1, 1, 'Dave Abbruzzese/Eddie Vedder/Jeff Ament/Mike McCready/Stone Gossard', 302053, 9756133, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Johnny B. Goode', 141, 1, 8, 243200, 8092024, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Don''t Look Back', 141, 1, 8, 221100, 7344023, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Jah Seh No', 141, 1, 8, 276871, 9134476, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('I''m The Toughest', 141, 1, 8, 230191, 7657594, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Nothing But Love', 141, 1, 8, 221570, 7335228, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Buk-In-Hamm Palace', 141, 1, 8, 265665, 8964369, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Bush Doctor', 141, 1, 8, 239751, 7942299, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Wanted Dread And Alive', 141, 1, 8, 260310, 8670933, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Mystic Man', 141, 1, 8, 353671, 11812170, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Coming In Hot', 141, 1, 8, 213054, 7109414, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Pick Myself Up', 141, 1, 8, 234684, 7788255, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Crystal Ball', 141, 1, 8, 309733, 10319296, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Equal Rights Downpresser Man', 141, 1, 8, 366733, 12086524, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Speak To Me/Breathe', 183, 1, 1, 'Mason/Waters, Gilmour, Wright', 234213, 7631305, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('On The Run', 183, 1, 1, 'Gilmour, Waters', 214595, 7206300, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Time', 183, 1, 1, 'Mason, Waters, Wright, Gilmour', 425195, 13955426, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('The Great Gig In The Sky', 183, 1, 1, 'Wright, Waters', 284055, 9147563, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Money', 183, 1, 1, 'Waters', 391888, 12930070, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Us And Them', 183, 1, 1, 'Waters, Wright', 461035, 15000299, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Any Colour You Like', 183, 1, 1, 'Gilmour, Mason, Wright, Waters', 205740, 6707989, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Brain Damage', 183, 1, 1, 'Waters', 230556, 7497655, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Eclipse', 183, 1, 1, 'Waters', 125361, 4065299, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('ZeroVinteUm', 184, 1, 17, 315637, 10426550, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Queimando Tudo', 184, 1, 17, 172591, 5723677, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Hip Hop Rio', 184, 1, 17, 151536, 4991935, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Bossa', 184, 1, 17, 29048, 967098, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('100% HardCore', 184, 1, 17, 165146, 5407744, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Biruta', 184, 1, 17, 213263, 7108200, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Mão Na Cabeça', 184, 1, 17, 202631, 6642753, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('O Bicho Tá Pregando', 184, 1, 17, 171964, 5683369, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Adoled (Ocean)', 184, 1, 17, 185103, 6009946, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Seus Amigos', 184, 1, 17, 100858, 3304738, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Paga Pau', 184, 1, 17, 197485, 6529041, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Rappers Reais', 184, 1, 17, 202004, 6684160, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Nega Do Cabelo Duro', 184, 1, 17, 121808, 4116536, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Hemp Family', 184, 1, 17, 205923, 6806900, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Quem Me Cobrou?', 184, 1, 17, 121704, 3947664, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Se Liga', 184, 1, 17, 410409, 13559173, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Bohemian Rhapsody', 185, 1, 1, 'Mercury, Freddie', 358948, 11619868, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Another One Bites The Dust', 185, 1, 1, 'Deacon, John', 216946, 7172355, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Killer Queen', 185, 1, 1, 'Mercury, Freddie', 182099, 5967749, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Fat Bottomed Girls', 185, 1, 1, 'May, Brian', 204695, 6630041, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Bicycle Race', 185, 1, 1, 'Mercury, Freddie', 183823, 6012409, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('You''re My Best Friend', 185, 1, 1, 'Deacon, John', 172225, 5602173, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Don''t Stop Me Now', 185, 1, 1, 'Mercury, Freddie', 211826, 6896666, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Save Me', 185, 1, 1, 'May, Brian', 228832, 7444624, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Crazy Little Thing Called Love', 185, 1, 1, 'Mercury, Freddie', 164231, 5435501, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Somebody To Love', 185, 1, 1, 'Mercury, Freddie', 297351, 9650520, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Now I''m Here', 185, 1, 1, 'May, Brian', 255346, 8328312, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Good Old-Fashioned Lover Boy', 185, 1, 1, 'Mercury, Freddie', 175960, 5747506, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Play The Game', 185, 1, 1, 'Mercury, Freddie', 213368, 6915832, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Flash', 185, 1, 1, 'May, Brian', 168489, 5464986, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Seven Seas Of Rhye', 185, 1, 1, 'Mercury, Freddie', 170553, 5539957, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('We Will Rock You', 185, 1, 1, 'Deacon, John/May, Brian', 122880, 4026955, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('We Are The Champions', 185, 1, 1, 'Mercury, Freddie', 180950, 5880231, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('We Will Rock You', 186, 1, 1, 'May', 122671, 4026815, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('We Are The Champions', 186, 1, 1, 'Mercury', 182883, 5939794, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Sheer Heart Attack', 186, 1, 1, 'Taylor', 207386, 6642685, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('All Dead, All Dead', 186, 1, 1, 'May', 190119, 6144878, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Spread Your Wings', 186, 1, 1, 'Deacon', 275356, 8936992, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Fight From The Inside', 186, 1, 1, 'Taylor', 184737, 6078001, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Get Down, Make Love', 186, 1, 1, 'Mercury', 231235, 7509333, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Sleep On The Sidewalk', 186, 1, 1, 'May', 187428, 6099840, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Who Needs You', 186, 1, 1, 'Deacon', 186958, 6292969, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('It''s Late', 186, 1, 1, 'May', 386194, 12519388, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('My Melancholy Blues', 186, 1, 1, 'Mercury', 206471, 6691838, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Shiny Happy People', 187, 1, 4, 'Bill Berry/Michael Stipe/Mike Mills/Peter Buck', 226298, 7475323, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Me In Honey', 187, 1, 4, 'Bill Berry/Michael Stipe/Mike Mills/Peter Buck', 246674, 8194751, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Radio Song', 187, 1, 4, 'Bill Berry/Michael Stipe/Mike Mills/Peter Buck', 255477, 8421172, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Pop Song 89', 188, 1, 4, 'Bill Berry-Peter Buck-Mike Mills-Michael Stipe', 185730, 6132218, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Get Up', 188, 1, 4, 'Bill Berry-Peter Buck-Mike Mills-Michael Stipe', 160235, 5264376, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('You Are The Everything', 188, 1, 4, 'Bill Berry-Peter Buck-Mike Mills-Michael Stipe', 226298, 7373181, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Stand', 188, 1, 4, 'Bill Berry-Peter Buck-Mike Mills-Michael Stipe', 192862, 6349090, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('World Leader Pretend', 188, 1, 4, 'Bill Berry-Peter Buck-Mike Mills-Michael Stipe', 259761, 8537282, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('The Wrong Child', 188, 1, 4, 'Bill Berry-Peter Buck-Mike Mills-Michael Stipe', 216633, 7065060, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Orange Crush', 188, 1, 4, 'Bill Berry-Peter Buck-Mike Mills-Michael Stipe', 231706, 7742894, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Turn You Inside-Out', 188, 1, 4, 'Bill Berry-Peter Buck-Mike Mills-Michael Stipe', 257358, 8395671, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Hairshirt', 188, 1, 4, 'Bill Berry-Peter Buck-Mike Mills-Michael Stipe', 235911, 7753807, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('I Remember California', 188, 1, 4, 'Bill Berry-Peter Buck-Mike Mills-Michael Stipe', 304013, 9950311, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Untitled', 188, 1, 4, 'Bill Berry-Peter Buck-Mike Mills-Michael Stipe', 191503, 6332426, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('How The West Was Won And Where It Got Us', 189, 1, 1, 'Bill Berry-Peter Buck-Mike Mills-Michael Stipe', 271151, 8994291, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('The Wake-Up Bomb', 189, 1, 1, 'Bill Berry-Peter Buck-Mike Mills-Michael Stipe', 308532, 10077337, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('New Test Leper', 189, 1, 1, 'Bill Berry-Peter Buck-Mike Mills-Michael Stipe', 326791, 10866447, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Undertow', 189, 1, 1, 'Bill Berry-Peter Buck-Mike Mills-Michael Stipe', 309498, 10131005, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('E-Bow The Letter', 189, 1, 1, 'Bill Berry-Peter Buck-Mike Mills-Michael Stipe', 324963, 10714576, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Leave', 189, 1, 1, 'Bill Berry-Peter Buck-Mike Mills-Michael Stipe', 437968, 14433365, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Departure', 189, 1, 1, 'Bill Berry-Peter Buck-Mike Mills-Michael Stipe', 209423, 6818425, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Bittersweet Me', 189, 1, 1, 'Bill Berry-Peter Buck-Mike Mills-Michael Stipe', 245812, 8114718, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Be Mine', 189, 1, 1, 'Bill Berry-Peter Buck-Mike Mills-Michael Stipe', 333087, 10790541, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Binky The Doormat', 189, 1, 1, 'Bill Berry-Peter Buck-Mike Mills-Michael Stipe', 301688, 9950320, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Zither', 189, 1, 1, 'Bill Berry-Peter Buck-Mike Mills-Michael Stipe', 154148, 5032962, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('So Fast, So Numb', 189, 1, 1, 'Bill Berry-Peter Buck-Mike Mills-Michael Stipe', 252682, 8341223, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Low Desert', 189, 1, 1, 'Bill Berry-Peter Buck-Mike Mills-Michael Stipe', 212062, 6989288, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Electrolite', 189, 1, 1, 'Bill Berry-Peter Buck-Mike Mills-Michael Stipe', 245315, 8051199, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Losing My Religion', 187, 1, 4, 'Bill Berry/Michael Stipe/Mike Mills/Peter Buck', 269035, 8885672, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Low', 187, 1, 4, 'Bill Berry/Michael Stipe/Mike Mills/Peter Buck', 296777, 9633860, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Near Wild Heaven', 187, 1, 4, 'Bill Berry/Michael Stipe/Mike Mills/Peter Buck', 199862, 6610009, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Endgame', 187, 1, 4, 'Bill Berry/Michael Stipe/Mike Mills/Peter Buck', 230687, 7664479, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Belong', 187, 1, 4, 'Bill Berry/Michael Stipe/Mike Mills/Peter Buck', 247013, 8219375, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Half A World Away', 187, 1, 4, 'Bill Berry/Michael Stipe/Mike Mills/Peter Buck', 208431, 6837283, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Texarkana', 187, 1, 4, 'Bill Berry/Michael Stipe/Mike Mills/Peter Buck', 220081, 7260681, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Country Feedback', 187, 1, 4, 'Bill Berry/Michael Stipe/Mike Mills/Peter Buck', 249782, 8178943, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Carnival Of Sorts', 190, 1, 4, 'R.E.M.', 233482, 7669658, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Radio Free Aurope', 190, 1, 4, 'R.E.M.', 245315, 8163490, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Perfect Circle', 190, 1, 4, 'R.E.M.', 208509, 6898067, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Talk About The Passion', 190, 1, 4, 'R.E.M.', 203206, 6725435, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('So Central Rain', 190, 1, 4, 'R.E.M.', 194768, 6414550, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Don''t Go Back To Rockville', 190, 1, 4, 'R.E.M.', 272352, 9010715, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Pretty Persuasion', 190, 1, 4, 'R.E.M.', 229929, 7577754, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Green Grow The Rushes', 190, 1, 4, 'R.E.M.', 225671, 7422425, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Can''t Get There From Here', 190, 1, 4, 'R.E.M.', 220630, 7285936, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Driver 8', 190, 1, 4, 'R.E.M.', 204747, 6779076, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Fall On Me', 190, 1, 4, 'R.E.M.', 172016, 5676811, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('I Believe', 190, 1, 4, 'R.E.M.', 227709, 7542929, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Cuyahoga', 190, 1, 4, 'R.E.M.', 260623, 8591057, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('The One I Love', 190, 1, 4, 'R.E.M.', 197355, 6495125, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('The Finest Worksong', 190, 1, 4, 'R.E.M.', 229276, 7574856, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('It''s The End Of The World As We Know It (And I Feel Fine)', 190, 1, 4, 'R.E.M.', 244819, 7998987, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Infeliz Natal', 191, 1, 4, 'Rodolfo', 138266, 4503299, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('A Sua', 191, 1, 4, 'Rodolfo', 142132, 4622064, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Papeau Nuky Doe', 191, 1, 4, 'Rodolfo', 121652, 3995022, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Merry Christmas', 191, 1, 4, 'Rodolfo', 126040, 4166652, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Bodies', 191, 1, 4, 'Rodolfo', 180035, 5873778, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Puteiro Em João Pessoa', 191, 1, 4, 'Rodolfo', 195578, 6395490, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Esporrei Na Manivela', 191, 1, 4, 'Rodolfo', 293276, 9618499, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Bê-a-Bá', 191, 1, 4, 'Rodolfo', 249051, 8130636, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Cajueiro', 191, 1, 4, 'Rodolfo', 158589, 5164837, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Palhas Do Coqueiro', 191, 1, 4, 'Rodolfo', 133851, 4396466, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Maluco Beleza', 192, 1, 1, 203206, 6628067, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('O Dia Em Que A Terra Parou', 192, 1, 1, 261720, 8586678, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('No Fundo Do Quintal Da Escola', 192, 1, 1, 177606, 5836953, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('O Segredo Do Universo', 192, 1, 1, 192679, 6315187, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('As Profecias', 192, 1, 1, 232515, 7657732, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Mata Virgem', 192, 1, 1, 142602, 4690029, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Sapato 36', 192, 1, 1, 196702, 6507301, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Todo Mundo Explica', 192, 1, 1, 134896, 4449772, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Que Luz É Essa', 192, 1, 1, 165067, 5620058, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Diamante De Mendigo', 192, 1, 1, 206053, 6775101, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Negócio É', 192, 1, 1, 175464, 5826775, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Muita Estrela, Pouca Constelação', 192, 1, 1, 268068, 8781021, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Século XXI', 192, 1, 1, 244897, 8040563, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Rock Das Aranhas (Ao Vivo) (Live)', 192, 1, 1, 231836, 7591945, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('The Power Of Equality', 193, 1, 4, 'Anthony Kiedis/Chad Smith/Flea/John Frusciante', 243591, 8148266, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('If You Have To Ask', 193, 1, 4, 'Anthony Kiedis/Chad Smith/Flea/John Frusciante', 216790, 7199175, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Breaking The Girl', 193, 1, 4, 'Anthony Kiedis/Chad Smith/Flea/John Frusciante', 295497, 9805526, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Funky Monks', 193, 1, 4, 'Anthony Kiedis/Chad Smith/Flea/John Frusciante', 323395, 10708168, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Suck My Kiss', 193, 1, 4, 'Anthony Kiedis/Chad Smith/Flea/John Frusciante', 217234, 7129137, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('I Could Have Lied', 193, 1, 4, 'Anthony Kiedis/Chad Smith/Flea/John Frusciante', 244506, 8088244, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Mellowship Slinky In B Major', 193, 1, 4, 'Anthony Kiedis/Chad Smith/Flea/John Frusciante', 240091, 7971384, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('The Righteous & The Wicked', 193, 1, 4, 'Anthony Kiedis/Chad Smith/Flea/John Frusciante', 248084, 8134096, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Give It Away', 193, 1, 4, 'Anthony Kiedis/Chad Smith/Flea/John Frusciante', 283010, 9308997, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Blood Sugar Sex Magik', 193, 1, 4, 'Anthony Kiedis/Chad Smith/Flea/John Frusciante', 271229, 8940573, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Under The Bridge', 193, 1, 4, 'Anthony Kiedis/Chad Smith/Flea/John Frusciante', 264359, 8682716, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Naked In The Rain', 193, 1, 4, 'Anthony Kiedis/Chad Smith/Flea/John Frusciante', 265717, 8724674, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Apache Rose Peacock', 193, 1, 4, 'Anthony Kiedis/Chad Smith/Flea/John Frusciante', 282226, 9312588, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('The Greeting Song', 193, 1, 4, 'Anthony Kiedis/Chad Smith/Flea/John Frusciante', 193593, 6346507, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('My Lovely Man', 193, 1, 4, 'Anthony Kiedis/Chad Smith/Flea/John Frusciante', 279118, 9220114, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Sir Psycho Sexy', 193, 1, 4, 'Anthony Kiedis/Chad Smith/Flea/John Frusciante', 496692, 16354362, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('They''re Red Hot', 193, 1, 4, 'Robert Johnson', 71941, 2382220, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('By The Way', 194, 1, 1, 'Anthony Kiedis, Flea, John Frusciante, and Chad Smith', 218017, 7197430, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Universally Speaking', 194, 1, 1, 'Anthony Kiedis, Flea, John Frusciante, and Chad Smith', 259213, 8501904, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('This Is The Place', 194, 1, 1, 'Anthony Kiedis, Flea, John Frusciante, and Chad Smith', 257906, 8469765, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Dosed', 194, 1, 1, 'Anthony Kiedis, Flea, John Frusciante, and Chad Smith', 312058, 10235611, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Don''t Forget Me', 194, 1, 1, 'Anthony Kiedis, Flea, John Frusciante, and Chad Smith', 277995, 9107071, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('The Zephyr Song', 194, 1, 1, 'Anthony Kiedis, Flea, John Frusciante, and Chad Smith', 232960, 7690312, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Can''t Stop', 194, 1, 1, 'Anthony Kiedis, Flea, John Frusciante, and Chad Smith', 269400, 8872479, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('I Could Die For You', 194, 1, 1, 'Anthony Kiedis, Flea, John Frusciante, and Chad Smith', 193906, 6333311, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Midnight', 194, 1, 1, 'Anthony Kiedis, Flea, John Frusciante, and Chad Smith', 295810, 9702450, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Throw Away Your Television', 194, 1, 1, 'Anthony Kiedis, Flea, John Frusciante, and Chad Smith', 224574, 7483526, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Cabron', 194, 1, 1, 'Anthony Kiedis, Flea, John Frusciante, and Chad Smith', 218592, 7458864, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Tear', 194, 1, 1, 'Anthony Kiedis, Flea, John Frusciante, and Chad Smith', 317413, 10395500, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('On Mercury', 194, 1, 1, 'Anthony Kiedis, Flea, John Frusciante, and Chad Smith', 208509, 6834762, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Minor Thing', 194, 1, 1, 'Anthony Kiedis, Flea, John Frusciante, and Chad Smith', 217835, 7148115, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Warm Tape', 194, 1, 1, 'Anthony Kiedis, Flea, John Frusciante, and Chad Smith', 256653, 8358200, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Venice Queen', 194, 1, 1, 'Anthony Kiedis, Flea, John Frusciante, and Chad Smith', 369110, 12280381, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Around The World', 195, 1, 1, 'Anthony Kiedis/Chad Smith/Flea/John Frusciante', 238837, 7859167, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Parallel Universe', 195, 1, 1, 'Red Hot Chili Peppers', 270654, 8958519, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Scar Tissue', 195, 1, 1, 'Red Hot Chili Peppers', 217469, 7153744, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Otherside', 195, 1, 1, 'Red Hot Chili Peppers', 255973, 8357989, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Get On Top', 195, 1, 1, 'Red Hot Chili Peppers', 198164, 6587883, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Californication', 195, 1, 1, 'Red Hot Chili Peppers', 321671, 10568999, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Easily', 195, 1, 1, 'Red Hot Chili Peppers', 231418, 7504534, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Porcelain', 195, 1, 1, 'Anthony Kiedis/Chad Smith/Flea/John Frusciante', 163787, 5278793, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Emit Remmus', 195, 1, 1, 'Red Hot Chili Peppers', 240300, 7901717, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('I Like Dirt', 195, 1, 1, 'Red Hot Chili Peppers', 157727, 5225917, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('This Velvet Glove', 195, 1, 1, 'Red Hot Chili Peppers', 225280, 7480537, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Savior', 195, 1, 1, 'Anthony Kiedis/Chad Smith/Flea/John Frusciante', 292493, 9551885, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Purple Stain', 195, 1, 1, 'Red Hot Chili Peppers', 253440, 8359971, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Right On Time', 195, 1, 1, 'Red Hot Chili Peppers', 112613, 3722219, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Road Trippin''', 195, 1, 1, 'Red Hot Chili Peppers', 205635, 6685831, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('The Spirit Of Radio', 196, 1, 1, 'Geddy Lee And Alex Lifeson/Geddy Lee And Neil Peart/Rush', 299154, 9862012, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('The Trees', 196, 1, 1, 'Geddy Lee And Alex Lifeson/Geddy Lee And Neil Peart/Rush', 285126, 9345473, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Something For Nothing', 196, 1, 1, 'Geddy Lee And Alex Lifeson/Geddy Lee And Neil Peart/Rush', 240770, 7898395, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Freewill', 196, 1, 1, 'Geddy Lee And Alex Lifeson/Geddy Lee And Neil Peart/Rush', 324362, 10694110, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Xanadu', 196, 1, 1, 'Geddy Lee And Alex Lifeson/Geddy Lee And Neil Peart/Rush', 667428, 21753168, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Bastille Day', 196, 1, 1, 'Geddy Lee And Alex Lifeson/Geddy Lee And Neil Peart/Rush', 280528, 9264769, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('By-Tor And The Snow Dog', 196, 1, 1, 'Geddy Lee And Alex Lifeson/Geddy Lee And Neil Peart/Rush', 519888, 17076397, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Anthem', 196, 1, 1, 'Geddy Lee And Alex Lifeson/Geddy Lee And Neil Peart/Rush', 264515, 8693343, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Closer To The Heart', 196, 1, 1, 'Geddy Lee And Alex Lifeson/Geddy Lee And Neil Peart/Rush', 175412, 5767005, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('2112 Overture', 196, 1, 1, 'Geddy Lee And Alex Lifeson/Geddy Lee And Neil Peart/Rush', 272718, 8898066, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('The Temples Of Syrinx', 196, 1, 1, 'Geddy Lee And Alex Lifeson/Geddy Lee And Neil Peart/Rush', 133459, 4360163, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('La Villa Strangiato', 196, 1, 1, 'Geddy Lee And Alex Lifeson/Geddy Lee And Neil Peart/Rush', 577488, 19137855, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Fly By Night', 196, 1, 1, 'Geddy Lee And Alex Lifeson/Geddy Lee And Neil Peart/Rush', 202318, 6683061, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Finding My Way', 196, 1, 1, 'Geddy Lee And Alex Lifeson/Geddy Lee And Neil Peart/Rush', 305528, 9985701, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Jingo', 197, 1, 1, 'M.Babatunde Olantunji', 592953, 19736495, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('El Corazon Manda', 197, 1, 1, 'E.Weiss', 713534, 23519583, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('La Puesta Del Sol', 197, 1, 1, 'E.Weiss', 628062, 20614621, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Persuasion', 197, 1, 1, 'Carlos Santana', 318432, 10354751, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('As The Years Go by', 197, 1, 1, 'Albert King', 233064, 7566829, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Soul Sacrifice', 197, 1, 1, 'Carlos Santana', 296437, 9801120, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Fried Neckbones And Home Fries', 197, 1, 1, 'W.Correa', 638563, 20939646, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Santana Jam', 197, 1, 1, 'Carlos Santana', 882834, 29207100, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Evil Ways', 198, 1, 1, 475402, 15289235, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('We''ve Got To Get Together/Jingo', 198, 1, 1, 1070027, 34618222, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Rock Me', 198, 1, 1, 94720, 3037596, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Just Ain''t Good Enough', 198, 1, 1, 850259, 27489067, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Funky Piano', 198, 1, 1, 934791, 30200730, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('The Way You Do To Mer', 198, 1, 1, 618344, 20028702, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Holding Back The Years', 141, 1, 1, 'Mick Hucknall and Neil Moss', 270053, 8833220, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Money''s Too Tight To Mention', 141, 1, 1, 'John and William Valentine', 268408, 8861921, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('The Right Thing', 141, 1, 1, 'Mick Hucknall', 262687, 8624063, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('It''s Only Love', 141, 1, 1, 'Jimmy and Vella Cameron', 232594, 7659017, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('A New Flame', 141, 1, 1, 'Mick Hucknall', 237662, 7822875, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('You''ve Got It', 141, 1, 1, 'Mick Hucknall and Lamont Dozier', 235232, 7712845, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('If You Don''t Know Me By Now', 141, 1, 1, 'Kenny Gamble and Leon Huff', 206524, 6712634, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Stars', 141, 1, 1, 'Mick Hucknall', 248137, 8194906, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Something Got Me Started', 141, 1, 1, 'Mick Hucknall and Fritz McIntyre', 239595, 7997139, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Thrill Me', 141, 1, 1, 'Mick Hucknall and Fritz McIntyre', 303934, 10034711, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Your Mirror', 141, 1, 1, 'Mick Hucknall', 240666, 7893821, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('For Your Babies', 141, 1, 1, 'Mick Hucknall', 256992, 8408803, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('So Beautiful', 141, 1, 1, 'Mick Hucknall', 298083, 9837832, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Angel', 141, 1, 1, 'Carolyn Franklin and Sonny Saunders', 240561, 7880256, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Fairground', 141, 1, 1, 'Mick Hucknall', 263888, 8793094, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Água E Fogo', 199, 1, 1, 'Chico Amaral/Edgard Scandurra/Samuel Rosa', 278987, 9272272, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Três Lados', 199, 1, 1, 'Chico Amaral/Samuel Rosa', 233665, 7699609, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Ela Desapareceu', 199, 1, 1, 'Chico Amaral/Samuel Rosa', 250122, 8289200, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Balada Do Amor Inabalável', 199, 1, 1, 'Fausto Fawcett/Samuel Rosa', 240613, 8025816, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Canção Noturna', 199, 1, 1, 'Chico Amaral/Lelo Zanettik', 238628, 7874774, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Muçulmano', 199, 1, 1, 'Leão, Rodrigo F./Samuel Rosa', 249600, 8270613, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Maquinarama', 199, 1, 1, 'Chico Amaral/Samuel Rosa', 245629, 8213710, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Rebelião', 199, 1, 1, 'Chico Amaral/Samuel Rosa', 298527, 9817847, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('A Última Guerra', 199, 1, 1, 'Leão, Rodrigo F./Lô Borges/Samuel Rosa', 314723, 10480391, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Fica', 199, 1, 1, 'Chico Amaral/Samuel Rosa', 272169, 8980972, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Ali', 199, 1, 1, 'Nando Reis/Samuel Rosa', 306390, 10110351, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Preto Damião', 199, 1, 1, 'Chico Amaral/Samuel Rosa', 264568, 8697658, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('É Uma Partida De Futebol', 200, 1, 1, 'Samuel Rosa', 1071, 38747, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Eu Disse A Ela', 200, 1, 1, 'Samuel Rosa', 254223, 8479463, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Zé Trindade', 200, 1, 1, 'Samuel Rosa', 247954, 8331310, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Garota Nacional', 200, 1, 1, 'Samuel Rosa', 317492, 10511239, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Tão Seu', 200, 1, 1, 'Samuel Rosa', 243748, 8133126, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Sem Terra', 200, 1, 1, 'Samuel Rosa', 279353, 9196411, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Os Exilados', 200, 1, 1, 'Samuel Rosa', 245551, 8222095, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Um Dia Qualquer', 200, 1, 1, 'Samuel Rosa', 292414, 9805570, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Los Pretos', 200, 1, 1, 'Samuel Rosa', 239229, 8025667, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Sul Da América', 200, 1, 1, 'Samuel Rosa', 254928, 8484871, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Poconé', 200, 1, 1, 'Samuel Rosa', 318406, 10771610, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Lucky 13', 201, 1, 4, 'Billy Corgan', 189387, 6200617, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Aeroplane Flies High', 201, 1, 4, 'Billy Corgan', 473391, 15408329, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Because You Are', 201, 1, 4, 'Billy Corgan', 226403, 7405137, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Slow Dawn', 201, 1, 4, 'Billy Corgan', 192339, 6269057, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Believe', 201, 1, 4, 'James Iha', 192940, 6320652, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('My Mistake', 201, 1, 4, 'Billy Corgan', 240901, 7843477, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Marquis In Spades', 201, 1, 4, 'Billy Corgan', 192731, 6304789, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Here''s To The Atom Bomb', 201, 1, 4, 'Billy Corgan', 266893, 8763140, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Sparrow', 201, 1, 4, 'Billy Corgan', 176822, 5696989, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Waiting', 201, 1, 4, 'Billy Corgan', 228336, 7627641, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Saturnine', 201, 1, 4, 'Billy Corgan', 229877, 7523502, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Rock On', 201, 1, 4, 'David Cook', 366471, 12133825, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Set The Ray To Jerry', 201, 1, 4, 'Billy Corgan', 249364, 8215184, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Winterlong', 201, 1, 4, 'Billy Corgan', 299389, 9670616, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Soot & Stars', 201, 1, 4, 'Billy Corgan', 399986, 12866557, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Blissed & Gone', 201, 1, 4, 'Billy Corgan', 286302, 9305998, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Siva', 202, 1, 4, 'Billy Corgan', 261172, 8576622, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Rhinocerous', 202, 1, 4, 'Billy Corgan', 353462, 11526684, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Drown', 202, 1, 4, 'Billy Corgan', 270497, 8883496, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Cherub Rock', 202, 1, 4, 'Billy Corgan', 299389, 9786739, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Today', 202, 1, 4, 'Billy Corgan', 202213, 6596933, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Disarm', 202, 1, 4, 'Billy Corgan', 198556, 6508249, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Landslide', 202, 1, 4, 'Stevie Nicks', 190275, 6187754, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Bullet With Butterfly Wings', 202, 1, 4, 'Billy Corgan', 257306, 8431747, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('1979', 202, 1, 4, 'Billy Corgan', 263653, 8728470, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Zero', 202, 1, 4, 'Billy Corgan', 161123, 5267176, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Tonight, Tonight', 202, 1, 4, 'Billy Corgan', 255686, 8351543, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Eye', 202, 1, 4, 'Billy Corgan', 294530, 9784201, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Ava Adore', 202, 1, 4, 'Billy Corgan', 261433, 8590412, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Perfect', 202, 1, 4, 'Billy Corgan', 203023, 6734636, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('The Everlasting Gaze', 202, 1, 4, 'Billy Corgan', 242155, 7844404, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Stand Inside Your Love', 202, 1, 4, 'Billy Corgan', 253753, 8270113, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Real Love', 202, 1, 4, 'Billy Corgan', 250697, 8025896, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('untitled', 202, 1, 4, 'Billy Corgan', 231784, 7689713, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Nothing To Say', 203, 1, 1, 'Chris Cornell/Kim Thayil', 238027, 7744833, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Flower', 203, 1, 1, 'Chris Cornell/Kim Thayil', 208822, 6830732, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Loud Love', 203, 1, 1, 'Chris Cornell', 297456, 9660953, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Hands All Over', 203, 1, 1, 'Chris Cornell/Kim Thayil', 362475, 11893108, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Get On The Snake', 203, 1, 1, 'Chris Cornell/Kim Thayil', 225123, 7313744, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Jesus Christ Pose', 203, 1, 1, 'Ben Shepherd/Chris Cornell/Kim Thayil/Matt Cameron', 352966, 11739886, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Outshined', 203, 1, 1, 'Chris Cornell', 312476, 10274629, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Rusty Cage', 203, 1, 1, 'Chris Cornell', 267728, 8779485, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Spoonman', 203, 1, 1, 'Chris Cornell', 248476, 8289906, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('The Day I Tried To Live', 203, 1, 1, 'Chris Cornell', 321175, 10507137, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Black Hole Sun', 203, 1, 1, 'Soundgarden', 320365, 10425229, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Fell On Black Days', 203, 1, 1, 'Chris Cornell', 282331, 9256082, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Pretty Noose', 203, 1, 1, 'Chris Cornell', 253570, 8317931, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Burden In My Hand', 203, 1, 1, 'Chris Cornell', 292153, 9659911, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Blow Up The Outside World', 203, 1, 1, 'Chris Cornell', 347898, 11379527, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Ty Cobb', 203, 1, 1, 'Ben Shepherd/Chris Cornell', 188786, 6233136, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Bleed Together', 203, 1, 1, 'Chris Cornell', 232202, 7597074, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Morning Dance', 204, 1, 2, 'Jay Beckenstein', 238759, 8101979, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Jubilee', 204, 1, 2, 'Jeremy Wall', 275147, 9151846, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Rasul', 204, 1, 2, 'Jeremy Wall', 238315, 7854737, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Song For Lorraine', 204, 1, 2, 'Jay Beckenstein', 240091, 8101723, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Starburst', 204, 1, 2, 'Jeremy Wall', 291500, 9768399, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Heliopolis', 204, 1, 2, 'Jay Beckenstein', 338729, 11365655, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('It Doesn''t Matter', 204, 1, 2, 'Chet Catallo', 270027, 9034177, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Little Linda', 204, 1, 2, 'Jeremy Wall', 264019, 8958743, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('End Of Romanticism', 204, 1, 2, 'Rick Strauss', 320078, 10553155, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('The House Is Rockin''', 205, 1, 6, 'Doyle Bramhall/Stevie Ray Vaughan', 144352, 4706253, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Crossfire', 205, 1, 6, 'B. Carter/C. Layton/R. Ellsworth/R. Wynans/T. Shannon', 251219, 8238033, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Tightrope', 205, 1, 6, 'Doyle Bramhall/Stevie Ray Vaughan', 281155, 9254906, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Let Me Love You Baby', 205, 1, 6, 'Willie Dixon', 164127, 5378455, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Leave My Girl Alone', 205, 1, 6, 'B. Guy', 256365, 8438021, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Travis Walk', 205, 1, 6, 'Stevie Ray Vaughan', 140826, 4650979, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Wall Of Denial', 205, 1, 6, 'Doyle Bramhall/Stevie Ray Vaughan', 336927, 11085915, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Scratch-N-Sniff', 205, 1, 6, 'Doyle Bramhall/Stevie Ray Vaughan', 163422, 5353627, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Love Me Darlin''', 205, 1, 6, 'C. Burnett', 201586, 6650869, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Riviera Paradise', 205, 1, 6, 'Stevie Ray Vaughan', 528692, 17232776, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Dead And Bloated', 206, 1, 1, 'R. DeLeo/Weiland', 310386, 10170433, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Sex Type Thing', 206, 1, 1, 'D. DeLeo/Kretz/Weiland', 218723, 7102064, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Wicked Garden', 206, 1, 1, 'D. DeLeo/R. DeLeo/Weiland', 245368, 7989505, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('No Memory', 206, 1, 1, 'Dean Deleo', 80613, 2660859, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Sin', 206, 1, 1, 'R. DeLeo/Weiland', 364800, 12018823, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Naked Sunday', 206, 1, 1, 'D. DeLeo/Kretz/R. DeLeo/Weiland', 229720, 7444201, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Creep', 206, 1, 1, 'R. DeLeo/Weiland', 333191, 10894988, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Piece Of Pie', 206, 1, 1, 'R. DeLeo/Weiland', 324623, 10605231, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Plush', 206, 1, 1, 'R. DeLeo/Weiland', 314017, 10229848, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Wet My Bed', 206, 1, 1, 'R. DeLeo/Weiland', 96914, 3198627, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Crackerman', 206, 1, 1, 'Kretz/R. DeLeo/Weiland', 194403, 6317361, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Where The River Goes', 206, 1, 1, 'D. DeLeo/Kretz/Weiland', 505991, 16468904, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Soldier Side - Intro', 207, 1, 3, 'Dolmayan, John/Malakian, Daron/Odadjian, Shavo', 63764, 2056079, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('B.Y.O.B.', 207, 1, 3, 'Tankian, Serj', 255555, 8407935, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Revenga', 207, 1, 3, 'Tankian, Serj', 228127, 7503805, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Cigaro', 207, 1, 3, 'Tankian, Serj', 131787, 4321705, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Radio/Video', 207, 1, 3, 'Dolmayan, John/Malakian, Daron/Odadjian, Shavo', 249312, 8224917, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('This Cocaine Makes Me Feel Like I''m On This Song', 207, 1, 3, 'Tankian, Serj', 128339, 4185193, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Violent Pornography', 207, 1, 3, 'Dolmayan, John/Malakian, Daron/Odadjian, Shavo', 211435, 6985960, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Question!', 207, 1, 3, 'Tankian, Serj', 200698, 6616398, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Sad Statue', 207, 1, 3, 'Tankian, Serj', 205897, 6733449, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Old School Hollywood', 207, 1, 3, 'Dolmayan, John/Malakian, Daron/Odadjian, Shavo', 176953, 5830258, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Lost in Hollywood', 207, 1, 3, 'Tankian, Serj', 320783, 10535158, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('The Sun Road', 208, 1, 1, 'Terry Bozzio, Steve Stevens, Tony Levin', 880640, 29008407, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Dark Corners', 208, 1, 1, 'Terry Bozzio, Steve Stevens, Tony Levin', 513541, 16839223, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Duende', 208, 1, 1, 'Terry Bozzio, Steve Stevens, Tony Levin', 447582, 14956771, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Black Light Syndrome', 208, 1, 1, 'Terry Bozzio, Steve Stevens, Tony Levin', 526471, 17300835, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Falling in Circles', 208, 1, 1, 'Terry Bozzio, Steve Stevens, Tony Levin', 549093, 18263248, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Book of Hours', 208, 1, 1, 'Terry Bozzio, Steve Stevens, Tony Levin', 583366, 19464726, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Chaos-Control', 208, 1, 1, 'Terry Bozzio, Steve Stevens, Tony Levin', 529841, 17455568, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Midnight From The Inside Out', 209, 1, 6, 'Chris Robinson/Rich Robinson', 286981, 9442157, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Sting Me', 209, 1, 6, 'Chris Robinson/Rich Robinson', 268094, 8813561, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Thick & Thin', 209, 1, 6, 'Chris Robinson/Rich Robinson', 222720, 7284377, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Greasy Grass River', 209, 1, 6, 'Chris Robinson/Rich Robinson', 218749, 7157045, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Sometimes Salvation', 209, 1, 6, 'Chris Robinson/Rich Robinson', 389146, 12749424, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Cursed Diamonds', 209, 1, 6, 'Chris Robinson/Rich Robinson', 368300, 12047978, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Miracle To Me', 209, 1, 6, 'Chris Robinson/Rich Robinson', 372636, 12222116, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Wiser Time', 209, 1, 6, 'Chris Robinson/Rich Robinson', 459990, 15161907, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Girl From A Pawnshop', 209, 1, 6, 'Chris Robinson/Rich Robinson', 404688, 13250848, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Cosmic Fiend', 209, 1, 6, 'Chris Robinson/Rich Robinson', 308401, 10115556, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Black Moon Creeping', 210, 1, 6, 'Chris Robinson/Rich Robinson', 359314, 11740886, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('High Head Blues', 210, 1, 6, 'Chris Robinson/Rich Robinson', 371879, 12227998, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Title Song', 210, 1, 6, 'Chris Robinson/Rich Robinson', 505521, 16501316, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('She Talks To Angels', 210, 1, 6, 'Chris Robinson/Rich Robinson', 361978, 11837342, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Twice As Hard', 210, 1, 6, 'Chris Robinson/Rich Robinson', 275565, 9008067, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Lickin''', 210, 1, 6, 'Chris Robinson/Rich Robinson', 314409, 10331216, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Soul Singing', 210, 1, 6, 'Chris Robinson/Rich Robinson', 233639, 7672489, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Hard To Handle', 210, 1, 6, 'A.Isbell/A.Jones/O.Redding', 206994, 6786304, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Remedy', 210, 1, 6, 'Chris Robinson/Rich Robinson', 337084, 11049098, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('White Riot', 211, 1, 4, 'Joe Strummer/Mick Jones', 118726, 3922819, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Remote Control', 211, 1, 4, 'Joe Strummer/Mick Jones', 180297, 5949647, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Complete Control', 211, 1, 4, 'Joe Strummer/Mick Jones', 192653, 6272081, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Clash City Rockers', 211, 1, 4, 'Joe Strummer/Mick Jones', 227500, 7555054, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('(White Man) In Hammersmith Palais', 211, 1, 4, 'Joe Strummer/Mick Jones', 240640, 7883532, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Tommy Gun', 211, 1, 4, 'Joe Strummer/Mick Jones', 195526, 6399872, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('English Civil War', 211, 1, 4, 'Mick Jones/Traditional arr. Joe Strummer', 156708, 5111226, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('I Fought The Law', 211, 1, 4, 'Sonny Curtis', 159764, 5245258, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('London Calling', 211, 1, 4, 'Joe Strummer/Mick Jones', 199706, 6569007, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Train In Vain', 211, 1, 4, 'Joe Strummer/Mick Jones', 189675, 6329877, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Bankrobber', 211, 1, 4, 'Joe Strummer/Mick Jones', 272431, 9067323, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('The Call Up', 211, 1, 4, 'The Clash', 324336, 10746937, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Hitsville UK', 211, 1, 4, 'The Clash', 261433, 8606887, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('The Magnificent Seven', 211, 1, 4, 'The Clash', 268486, 8889821, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('This Is Radio Clash', 211, 1, 4, 'The Clash', 249756, 8366573, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Know Your Rights', 211, 1, 4, 'The Clash', 217678, 7195726, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Rock The Casbah', 211, 1, 4, 'The Clash', 222145, 7361500, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Should I Stay Or Should I Go', 211, 1, 4, 'The Clash', 187219, 6188688, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('War (The Process)', 212, 1, 1, 'Billy Duffy/Ian Astbury', 252630, 8254842, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('The Saint', 212, 1, 1, 'Billy Duffy/Ian Astbury', 216215, 7061584, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Rise', 212, 1, 1, 'Billy Duffy/Ian Astbury', 219088, 7106195, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Take The Power', 212, 1, 1, 'Billy Duffy/Ian Astbury', 235755, 7650012, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Breathe', 212, 1, 1, 'Billy Duffy/Ian Astbury/Marti Frederiksen/Mick Jones', 299781, 9742361, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Nico', 212, 1, 1, 'Billy Duffy/Ian Astbury', 289488, 9412323, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('American Gothic', 212, 1, 1, 'Billy Duffy/Ian Astbury', 236878, 7739840, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Ashes And Ghosts', 212, 1, 1, 'Billy Duffy/Bob Rock/Ian Astbury', 300591, 9787692, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Shape The Sky', 212, 1, 1, 'Billy Duffy/Ian Astbury', 209789, 6885647, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Speed Of Light', 212, 1, 1, 'Billy Duffy/Bob Rock/Ian Astbury', 262817, 8563352, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('True Believers', 212, 1, 1, 'Billy Duffy/Ian Astbury', 308009, 9981359, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('My Bridges Burn', 212, 1, 1, 'Billy Duffy/Ian Astbury', 231862, 7571370, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('She Sells Sanctuary', 213, 1, 1, 253727, 8368634, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Fire Woman', 213, 1, 1, 312790, 10196995, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Lil'' Evil', 213, 1, 1, 165825, 5419655, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Spirit Walker', 213, 1, 1, 230060, 7555897, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('The Witch', 213, 1, 1, 258768, 8725403, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Revolution', 213, 1, 1, 256026, 8371254, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Wild Hearted Son', 213, 1, 1, 266893, 8670550, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Love Removal Machine', 213, 1, 1, 257619, 8412167, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Rain', 213, 1, 1, 236669, 7788461, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Edie (Ciao Baby)', 213, 1, 1, 241632, 7846177, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Heart Of Soul', 213, 1, 1, 274207, 8967257, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Love', 213, 1, 1, 326739, 10729824, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Wild Flower', 213, 1, 1, 215536, 7084321, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Go West', 213, 1, 1, 238158, 7777749, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Resurrection Joe', 213, 1, 1, 255451, 8532840, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Sun King', 213, 1, 1, 368431, 12010865, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Sweet Soul Sister', 213, 1, 1, 212009, 6889883, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Earth Mofo', 213, 1, 1, 282200, 9204581, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Break on Through', 214, 1, 1, 'Robby Krieger, Ray Manzarek, John Densmore, Jim Morrison', 149342, 4943144, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Soul Kitchen', 214, 1, 1, 'Robby Krieger, Ray Manzarek, John Densmore, Jim Morrison', 215066, 7040865, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('The Crystal Ship', 214, 1, 1, 'Robby Krieger, Ray Manzarek, John Densmore, Jim Morrison', 154853, 5052658, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Twentienth Century Fox', 214, 1, 1, 'Robby Krieger, Ray Manzarek, John Densmore, Jim Morrison', 153913, 5069211, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Alabama Song', 214, 1, 1, 'Weill-Brecht', 200097, 6563411, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Light My Fire', 214, 1, 1, 'Robby Krieger, Ray Manzarek, John Densmore, Jim Morrison', 428329, 13963351, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Back Door Man', 214, 1, 1, 'Willie Dixon, C. Burnett', 214360, 7035636, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('I Looked At You', 214, 1, 1, 'Robby Krieger, Ray Manzarek, John Densmore, Jim Morrison', 142080, 4663988, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('End Of The Night', 214, 1, 1, 'Robby Krieger, Ray Manzarek, John Densmore, Jim Morrison', 172695, 5589732, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Take It As It Comes', 214, 1, 1, 'Robby Krieger, Ray Manzarek, John Densmore, Jim Morrison', 137168, 4512656, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('The End', 214, 1, 1, 'Robby Krieger, Ray Manzarek, John Densmore, Jim Morrison', 701831, 22927336, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Roxanne', 215, 1, 1, 'G M Sumner', 192992, 6330159, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Can''t Stand Losing You', 215, 1, 1, 'G M Sumner', 181159, 5971983, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Message in a Bottle', 215, 1, 1, 'G M Sumner', 291474, 9647829, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Walking on the Moon', 215, 1, 1, 'G M Sumner', 302080, 10019861, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Don''t Stand so Close to Me', 215, 1, 1, 'G M Sumner', 241031, 7956658, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('De Do Do Do, De Da Da Da', 215, 1, 1, 'G M Sumner', 247196, 8227075, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Every Little Thing She Does is Magic', 215, 1, 1, 'G M Sumner', 261120, 8646853, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Invisible Sun', 215, 1, 1, 'G M Sumner', 225593, 7304320, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Spirit''s in the Material World', 215, 1, 1, 'G M Sumner', 181133, 5986622, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Every Breath You Take', 215, 1, 1, 'G M Sumner', 254615, 8364520, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('King Of Pain', 215, 1, 1, 'G M Sumner', 300512, 9880303, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Wrapped Around Your Finger', 215, 1, 1, 'G M Sumner', 315454, 10361490, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Don''t Stand So Close to Me ''86', 215, 1, 1, 'G M Sumner', 293590, 9636683, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Message in a Bottle (new classic rock mix)', 215, 1, 1, 'G M Sumner', 290951, 9640349, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Time Is On My Side', 216, 1, 1, 'Jerry Ragavoy', 179983, 5855836, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Heart Of Stone', 216, 1, 1, 'Jagger/Richards', 164493, 5329538, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Play With Fire', 216, 1, 1, 'Nanker Phelge', 132022, 4265297, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Satisfaction', 216, 1, 1, 'Jagger/Richards', 226612, 7398766, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('As Tears Go By', 216, 1, 1, 'Jagger/Richards/Oldham', 164284, 5357350, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Get Off Of My Cloud', 216, 1, 1, 'Jagger/Richards', 176013, 5719514, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Mother''s Little Helper', 216, 1, 1, 'Jagger/Richards', 167549, 5422434, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('19th Nervous Breakdown', 216, 1, 1, 'Jagger/Richards', 237923, 7742984, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Paint It Black', 216, 1, 1, 'Jagger/Richards', 226063, 7442888, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Under My Thumb', 216, 1, 1, 'Jagger/Richards', 221387, 7371799, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Ruby Tuesday', 216, 1, 1, 'Jagger/Richards', 197459, 6433467, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Let''s Spend The Night Together', 216, 1, 1, 'Jagger/Richards', 217495, 7137048, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Intro', 217, 1, 1, 'Jagger/Richards', 49737, 1618591, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('You Got Me Rocking', 217, 1, 1, 'Jagger/Richards', 205766, 6734385, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Gimmie Shelters', 217, 1, 1, 'Jagger/Richards', 382119, 12528764, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Flip The Switch', 217, 1, 1, 'Jagger/Richards', 252421, 8336591, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Memory Motel', 217, 1, 1, 'Jagger/Richards', 365844, 11982431, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Corinna', 217, 1, 1, 'Jesse Ed Davis III/Taj Mahal', 257488, 8449471, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Saint Of Me', 217, 1, 1, 'Jagger/Richards', 325694, 10725160, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Wainting On A Friend', 217, 1, 1, 'Jagger/Richards', 302497, 9978046, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Sister Morphine', 217, 1, 1, 'Faithfull/Jagger/Richards', 376215, 12345289, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Live With Me', 217, 1, 1, 'Jagger/Richards', 234893, 7709006, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Respectable', 217, 1, 1, 'Jagger/Richards', 215693, 7099669, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Thief In The Night', 217, 1, 1, 'De Beauport/Jagger/Richards', 337266, 10952756, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('The Last Time', 217, 1, 1, 'Jagger/Richards', 287294, 9498758, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Out Of Control', 217, 1, 1, 'Jagger/Richards', 479242, 15749289, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Love Is Strong', 218, 1, 1, 'Jagger/Richards', 230896, 7639774, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('You Got Me Rocking', 218, 1, 1, 'Jagger/Richards', 215928, 7162159, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Sparks Will Fly', 218, 1, 1, 'Jagger/Richards', 196466, 6492847, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('The Worst', 218, 1, 1, 'Jagger/Richards', 144613, 4750094, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('New Faces', 218, 1, 1, 'Jagger/Richards', 172146, 5689122, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Moon Is Up', 218, 1, 1, 'Jagger/Richards', 222119, 7366316, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Out Of Tears', 218, 1, 1, 'Jagger/Richards', 327418, 10677236, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('I Go Wild', 218, 1, 1, 'Jagger/Richards', 264019, 8630833, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Brand New Car', 218, 1, 1, 'Jagger/Richards', 256052, 8459344, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Sweethearts Together', 218, 1, 1, 'Jagger/Richards', 285492, 9550459, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Suck On The Jugular', 218, 1, 1, 'Jagger/Richards', 268225, 8920566, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Blinded By Rainbows', 218, 1, 1, 'Jagger/Richards', 273946, 8971343, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Baby Break It Down', 218, 1, 1, 'Jagger/Richards', 249417, 8197309, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Thru And Thru', 218, 1, 1, 'Jagger/Richards', 375092, 12175406, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Mean Disposition', 218, 1, 1, 'Jagger/Richards', 249155, 8273602, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Walking Wounded', 219, 1, 4, 'The Tea Party', 277968, 9184345, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Temptation', 219, 1, 4, 'The Tea Party', 205087, 6711943, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('The Messenger', 219, 1, 4, 'Daniel Lanois', 212062, 6975437, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Psychopomp', 219, 1, 4, 'The Tea Party', 315559, 10295199, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Sister Awake', 219, 1, 4, 'The Tea Party', 343875, 11299407, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('The Bazaar', 219, 1, 4, 'The Tea Party', 222458, 7245691, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Save Me (Remix)', 219, 1, 4, 'The Tea Party', 396303, 13053839, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Fire In The Head', 219, 1, 4, 'The Tea Party', 306337, 10005675, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Release', 219, 1, 4, 'The Tea Party', 244114, 8014606, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Heaven Coming Down', 219, 1, 4, 'The Tea Party', 241867, 7846459, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('The River (Remix)', 219, 1, 4, 'The Tea Party', 343170, 11193268, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Babylon', 219, 1, 4, 'The Tea Party', 169795, 5568808, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Waiting On A Sign', 219, 1, 4, 'The Tea Party', 261903, 8558590, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Life Line', 219, 1, 4, 'The Tea Party', 277786, 9082773, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Paint It Black', 219, 1, 4, 'Keith Richards/Mick Jagger', 214752, 7101572, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Temptation', 220, 1, 4, 'The Tea Party', 205244, 6719465, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Army Ants', 220, 1, 4, 'The Tea Party', 215405, 7075838, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Psychopomp', 220, 1, 4, 'The Tea Party', 317231, 10351778, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Gyroscope', 220, 1, 4, 'The Tea Party', 177711, 5810323, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Alarum', 220, 1, 4, 'The Tea Party', 298187, 9712545, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Release', 220, 1, 4, 'The Tea Party', 266292, 8725824, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Transmission', 220, 1, 4, 'The Tea Party', 317257, 10351152, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Babylon', 220, 1, 4, 'The Tea Party', 292466, 9601786, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Pulse', 220, 1, 4, 'The Tea Party', 250253, 8183872, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Emerald', 220, 1, 4, 'The Tea Party', 289750, 9543789, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Aftermath', 220, 1, 4, 'The Tea Party', 343745, 11085607, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('I Can''t Explain', 221, 1, 1, 'Pete Townshend', 125152, 4082896, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Anyway, Anyhow, Anywhere', 221, 1, 1, 'Pete Townshend, Roger Daltrey', 161253, 5234173, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('My Generation', 221, 1, 1, 'John Entwistle/Pete Townshend', 197825, 6446634, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Substitute', 221, 1, 1, 'Pete Townshend', 228022, 7409995, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('I''m A Boy', 221, 1, 1, 'Pete Townshend', 157126, 5120605, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Boris The Spider', 221, 1, 1, 'John Entwistle', 149472, 4835202, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Happy Jack', 221, 1, 1, 'Pete Townshend', 132310, 4353063, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Pictures Of Lily', 221, 1, 1, 'Pete Townshend', 164414, 5329751, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('I Can See For Miles', 221, 1, 1, 'Pete Townshend', 262791, 8604989, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Magic Bus', 221, 1, 1, 'Pete Townshend', 197224, 6452700, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Pinball Wizard', 221, 1, 1, 'John Entwistle/Pete Townshend', 181890, 6055580, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('The Seeker', 221, 1, 1, 'Pete Townshend', 204643, 6736866, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Baba O''Riley', 221, 1, 1, 'John Entwistle/Pete Townshend', 309472, 10141660, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Won''t Get Fooled Again (Full Length Version)', 221, 1, 1, 'John Entwistle/Pete Townshend', 513750, 16855521, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Let''s See Action', 221, 1, 1, 'Pete Townshend', 243513, 8078418, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('5.15', 221, 1, 1, 'Pete Townshend', 289619, 9458549, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Join Together', 221, 1, 1, 'Pete Townshend', 262556, 8602485, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Squeeze Box', 221, 1, 1, 'Pete Townshend', 161280, 5256508, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Who Are You (Single Edit Version)', 221, 1, 1, 'John Entwistle/Pete Townshend', 299232, 9900469, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('You Better You Bet', 221, 1, 1, 'Pete Townshend', 338520, 11160877, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Primavera', 222, 1, 7, 'Genival Cassiano/Silvio Rochael', 126615, 4152604, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Chocolate', 222, 1, 7, 'Tim Maia', 194690, 6411587, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Azul Da Cor Do Mar', 222, 1, 7, 'Tim Maia', 197955, 6475007, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('O Descobridor Dos Sete Mares', 222, 1, 7, 'Gilson Mendonça/Michel', 262974, 8749583, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Até Que Enfim Encontrei Você', 222, 1, 7, 'Tim Maia', 105064, 3477751, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Coroné Antonio Bento', 222, 1, 7, 'Do Vale, João/Luiz Wanderley', 131317, 4340326, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('New Love', 222, 1, 7, 'Tim Maia', 237897, 7786824, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Não Vou Ficar', 222, 1, 7, 'Tim Maia', 172068, 5642919, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Música No Ar', 222, 1, 7, 'Tim Maia', 158511, 5184891, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Salve Nossa Senhora', 222, 1, 7, 'Carlos Imperial/Edardo Araújo', 115461, 3827629, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Você Fugiu', 222, 1, 7, 'Genival Cassiano', 238367, 7971147, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Cristina Nº 2', 222, 1, 7, 'Carlos Imperial/Tim Maia', 90148, 2978589, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Compadre', 222, 1, 7, 'Tim Maia', 171389, 5631446, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Over Again', 222, 1, 7, 'Tim Maia', 200489, 6612634, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Réu Confesso', 222, 1, 7, 'Tim Maia', 217391, 7189874, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('O Que Me Importa', 223, 1, 7, 153155, 4977852, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Gostava Tanto De Você', 223, 1, 7, 253805, 8380077, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Você', 223, 1, 7, 242599, 7911702, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Não Quero Dinheiro', 223, 1, 7, 152607, 5031797, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Eu Amo Você', 223, 1, 7, 242782, 7914628, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('A Festa Do Santo Reis', 223, 1, 7, 159791, 5204995, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('I Don''t Know What To Do With Myself', 223, 1, 7, 221387, 7251478, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Padre Cícero', 223, 1, 7, 139598, 4581685, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Nosso Adeus', 223, 1, 7, 206471, 6793270, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Canário Do Reino', 223, 1, 7, 139337, 4552858, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Preciso Ser Amado', 223, 1, 7, 174001, 5618895, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Balanço', 223, 1, 7, 209737, 6890327, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Preciso Aprender A Ser Só', 223, 1, 7, 162220, 5213894, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Esta É A Canção', 223, 1, 7, 184450, 6069933, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Formigueiro', 223, 1, 7, 252943, 8455132, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Comida', 224, 1, 4, 'Titãs', 322612, 10786578, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Go Back', 224, 1, 4, 'Titãs', 230504, 7668899, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Prá Dizer Adeus', 224, 1, 4, 'Titãs', 222484, 7382048, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Família', 224, 1, 4, 'Titãs', 218331, 7267458, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Os Cegos Do Castelo', 224, 1, 4, 'Titãs', 296829, 9868187, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('O Pulso', 224, 1, 4, 'Titãs', 199131, 6566998, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Marvin', 224, 1, 4, 'Titãs', 264359, 8741444, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Nem 5 Minutos Guardados', 224, 1, 4, 'Titãs', 245995, 8143797, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Flores', 224, 1, 4, 'Titãs', 215510, 7148017, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Palavras', 224, 1, 4, 'Titãs', 158458, 5285715, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Hereditário', 224, 1, 4, 'Titãs', 151693, 5020547, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('A Melhor Forma', 224, 1, 4, 'Titãs', 191503, 6349938, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Cabeça Dinossauro', 224, 1, 4, 'Titãs', 37120, 1220930, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('32 Dentes', 224, 1, 4, 'Titãs', 184946, 6157904, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Bichos Escrotos (Vinheta)', 224, 1, 4, 'Titãs', 104986, 3503755, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Não Vou Lutar', 224, 1, 4, 'Titãs', 189988, 6308613, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Homem Primata (Vinheta)', 224, 1, 4, 'Titãs', 34168, 1124909, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Homem Primata', 224, 1, 4, 'Titãs', 195500, 6486470, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Polícia (Vinheta)', 224, 1, 4, 'Titãs', 56111, 1824213, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Querem Meu Sangue', 224, 1, 4, 'Titãs', 212401, 7069773, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Diversão', 224, 1, 4, 'Titãs', 285936, 9531268, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Televisão', 224, 1, 4, 'Titãs', 293668, 9776548, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Sonifera Ilha', 225, 1, 4, 'Branco Mello/Carlos Barmack/Ciro Pessoa/Marcelo Fromer/Toni Belloto', 170684, 5678290, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Lugar Nenhum', 225, 1, 4, 'Arnaldo Antunes/Charles Gavin/Marcelo Fromer/Sérgio Britto/Toni Bellotto', 195840, 6472780, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Sua Impossivel Chance', 225, 1, 4, 'Nando Reis', 246622, 8073248, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Desordem', 225, 1, 4, 'Charles Gavin/Marcelo Fromer/Sérgio Britto', 213289, 7067340, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Não Vou Me Adaptar', 225, 1, 4, 'Arnaldo Antunes', 221831, 7304656, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Domingo', 225, 1, 4, 'Sérgio Britto/Toni Bellotto', 208613, 6883180, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Amanhã Não Se Sabe', 225, 1, 4, 'Sérgio Britto', 189440, 6243967, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Caras Como Eu', 225, 1, 4, 'Toni Bellotto', 183092, 5999048, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Senhora E Senhor', 225, 1, 4, 'Arnaldo Anutnes/Marcelo Fromer/Paulo Miklos', 203702, 6733733, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Era Uma Vez', 225, 1, 4, 'Arnaldo Anutnes/Branco Mello/Marcelo Fromer/Sergio Brotto/Toni Bellotto', 224261, 7453156, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Miséria', 225, 1, 4, 'Arnaldo Antunes/Britto, SergioMiklos, Paulo', 262191, 8727645, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Insensível', 225, 1, 4, 'Sérgio Britto', 207830, 6893664, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Eu E Ela', 225, 1, 4, 'Nando Reis', 276035, 9138846, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Toda Cor', 225, 1, 4, 'Ciro Pressoa/Marcelo Fromer', 209084, 6939176, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('É Preciso Saber Viver', 225, 1, 4, 'Erasmo Carlos/Roberto Carlos', 251115, 8271418, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Senhor Delegado/Eu Não Aguento', 225, 1, 4, 'Antonio Lopes', 156656, 5277983, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Battlestar Galactica: The Story So Far', 226, 3, 18, 2622250, 490750393, 1.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Occupation / Precipice', 227, 3, 19, 5286953, 1054423946, 1.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Exodus, Pt. 1', 227, 3, 19, 2621708, 475079441, 1.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Exodus, Pt. 2', 227, 3, 19, 2618000, 466820021, 1.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Collaborators', 227, 3, 19, 2626626, 483484911, 1.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Torn', 227, 3, 19, 2631291, 495262585, 1.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('A Measure of Salvation', 227, 3, 18, 2563938, 489715554, 1.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Hero', 227, 3, 18, 2713755, 506896959, 1.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Unfinished Business', 227, 3, 18, 2622038, 528499160, 1.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('The Passage', 227, 3, 18, 2623875, 490375760, 1.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('The Eye of Jupiter', 227, 3, 18, 2618750, 517909587, 1.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Rapture', 227, 3, 18, 2624541, 508406153, 1.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Taking a Break from All Your Worries', 227, 3, 18, 2624207, 492700163, 1.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('The Woman King', 227, 3, 18, 2626376, 552893447, 1.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('A Day In the Life', 227, 3, 18, 2620245, 462818231, 1.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Dirty Hands', 227, 3, 18, 2627961, 537648614, 1.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Maelstrom', 227, 3, 18, 2622372, 514154275, 1.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('The Son Also Rises', 227, 3, 18, 2621830, 499258498, 1.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Crossroads, Pt. 1', 227, 3, 20, 2622622, 486233524, 1.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Crossroads, Pt. 2', 227, 3, 20, 2869953, 497335706, 1.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Genesis', 228, 3, 19, 2611986, 515671080, 1.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Don''t Look Back', 228, 3, 21, 2571154, 493628775, 1.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('One Giant Leap', 228, 3, 21, 2607649, 521616246, 1.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Collision', 228, 3, 21, 2605480, 526182322, 1.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Hiros', 228, 3, 21, 2533575, 488835454, 1.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Better Halves', 228, 3, 21, 2573031, 549353481, 1.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Nothing to Hide', 228, 3, 19, 2605647, 510058181, 1.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Seven Minutes to Midnight', 228, 3, 21, 2613988, 515590682, 1.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Homecoming', 228, 3, 21, 2601351, 516015339, 1.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Six Months Ago', 228, 3, 19, 2602852, 505133869, 1.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Fallout', 228, 3, 21, 2594761, 501145440, 1.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('The Fix', 228, 3, 21, 2600266, 507026323, 1.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Distractions', 228, 3, 21, 2590382, 537111289, 1.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Run!', 228, 3, 21, 2602602, 542936677, 1.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Unexpected', 228, 3, 21, 2598139, 511777758, 1.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Company Man', 228, 3, 21, 2601226, 493168135, 1.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Company Man', 228, 3, 21, 2601101, 503786316, 1.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Parasite', 228, 3, 21, 2602727, 487461520, 1.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('A Tale of Two Cities', 229, 3, 19, 2636970, 513691652, 1.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Lost (Pilot, Part 1) premiere', 230, 3, 19, 2548875, 217124866, 1.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Man of Science, Man of Faith (Premiere)', 231, 3, 19, 2612250, 543342028, 1.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Adrift', 231, 3, 19, 2564958, 502663995, 1.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Lost (Pilot, Part 2)', 230, 3, 19, 2436583, 204995876, 1.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('The Glass Ballerina', 229, 3, 21, 2637458, 535729216, 1.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Further Instructions', 229, 3, 19, 2563980, 502041019, 1.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Orientation', 231, 3, 19, 2609083, 500600434, 1.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Tabula Rasa', 230, 3, 19, 2627105, 210526410, 1.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Every Man for Himself', 229, 3, 21, 2637387, 513803546, 1.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Everybody Hates Hugo', 231, 3, 19, 2609192, 498163145, 1.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Walkabout', 230, 3, 19, 2587370, 207748198, 1.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('...And Found', 231, 3, 19, 2563833, 500330548, 1.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('The Cost of Living', 229, 3, 19, 2637500, 505647192, 1.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('White Rabbit', 230, 3, 19, 2571965, 201654606, 1.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Abandoned', 231, 3, 19, 2587041, 537348711, 1.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('House of the Rising Sun', 230, 3, 19, 2590032, 210379525, 1.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('I Do', 229, 3, 19, 2627791, 504676825, 1.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Not In Portland', 229, 3, 21, 2637303, 499061234, 1.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Not In Portland', 229, 3, 21, 2637345, 510546847, 1.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('The Moth', 230, 3, 19, 2631327, 228896396, 1.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('The Other 48 Days', 231, 3, 19, 2610625, 535256753, 1.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Collision', 231, 3, 19, 2564916, 475656544, 1.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Confidence Man', 230, 3, 19, 2615244, 223756475, 1.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Flashes Before Your Eyes', 229, 3, 21, 2636636, 537760755, 1.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Lost Survival Guide', 229, 3, 21, 2632590, 486675063, 1.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Solitary', 230, 3, 19, 2612894, 207045178, 1.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('What Kate Did', 231, 3, 19, 2610250, 484583988, 1.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Raised By Another', 230, 3, 19, 2590459, 223623810, 1.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Stranger In a Strange Land', 229, 3, 21, 2636428, 505056021, 1.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('The 23rd Psalm', 231, 3, 19, 2610416, 487401604, 1.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('All the Best Cowboys Have Daddy Issues', 230, 3, 19, 2555492, 211743651, 1.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('The Hunting Party', 231, 3, 21, 2611333, 520350364, 1.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Tricia Tanaka Is Dead', 229, 3, 21, 2635010, 548197162, 1.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Enter 77', 229, 3, 21, 2629796, 517521422, 1.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Fire + Water', 231, 3, 21, 2600333, 488458695, 1.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Whatever the Case May Be', 230, 3, 19, 2616410, 183867185, 1.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Hearts and Minds', 230, 3, 19, 2619462, 207607466, 1.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Par Avion', 229, 3, 21, 2629879, 517079642, 1.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('The Long Con', 231, 3, 19, 2679583, 518376636, 1.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('One of Them', 231, 3, 21, 2698791, 542332389, 1.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Special', 230, 3, 19, 2618530, 219961967, 1.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('The Man from Tallahassee', 229, 3, 21, 2637637, 550893556, 1.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Exposé', 229, 3, 21, 2593760, 511338017, 1.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Homecoming', 230, 3, 19, 2515882, 210675221, 1.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Maternity Leave', 231, 3, 21, 2780416, 555244214, 1.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Left Behind', 229, 3, 21, 2635343, 538491964, 1.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Outlaws', 230, 3, 19, 2619887, 206500939, 1.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('The Whole Truth', 231, 3, 21, 2610125, 495487014, 1.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('...In Translation', 230, 3, 19, 2604575, 215441983, 1.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Lockdown', 231, 3, 21, 2610250, 543886056, 1.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('One of Us', 229, 3, 21, 2638096, 502387276, 1.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Catch-22', 229, 3, 21, 2561394, 489773399, 1.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Dave', 231, 3, 19, 2825166, 574325829, 1.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Numbers', 230, 3, 19, 2609772, 214709143, 1.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('D.O.C.', 229, 3, 21, 2616032, 518556641, 1.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Deus Ex Machina', 230, 3, 19, 2582009, 214996732, 1.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('S.O.S.', 231, 3, 19, 2639541, 517979269, 1.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Do No Harm', 230, 3, 19, 2618487, 212039309, 1.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Two for the Road', 231, 3, 21, 2610958, 502404558, 1.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('The Greater Good', 230, 3, 19, 2617784, 214130273, 1.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('"?"', 231, 3, 19, 2782333, 528227089, 1.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Born to Run', 230, 3, 19, 2618619, 213772057, 1.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Three Minutes', 231, 3, 19, 2763666, 531556853, 1.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Exodus (Part 1)', 230, 3, 19, 2620747, 213107744, 1.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Live Together, Die Alone, Pt. 1', 231, 3, 21, 2478041, 457364940, 1.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Exodus (Part 2) [Season Finale]', 230, 3, 19, 2605557, 208667059, 1.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Live Together, Die Alone, Pt. 2', 231, 3, 19, 2656531, 503619265, 1.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Exodus (Part 3) [Season Finale]', 230, 3, 19, 2619869, 197937785, 1.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Zoo Station', 232, 1, 1, 'U2', 276349, 9056902, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Even Better Than The Real Thing', 232, 1, 1, 'U2', 221361, 7279392, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('One', 232, 1, 1, 'U2', 276192, 9158892, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Until The End Of The World', 232, 1, 1, 'U2', 278700, 9132485, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Who''s Gonna Ride Your Wild Horses', 232, 1, 1, 'U2', 316551, 10304369, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('So Cruel', 232, 1, 1, 'U2', 349492, 11527614, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('The Fly', 232, 1, 1, 'U2', 268982, 8825399, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Mysterious Ways', 232, 1, 1, 'U2', 243826, 8062057, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Tryin'' To Throw Your Arms Around The World', 232, 1, 1, 'U2', 232463, 7612124, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Ultraviolet (Light My Way)', 232, 1, 1, 'U2', 330788, 10754631, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Acrobat', 232, 1, 1, 'U2', 270288, 8824723, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Love Is Blindness', 232, 1, 1, 'U2', 263497, 8531766, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Beautiful Day', 233, 1, 1, 'Adam Clayton, Bono, Larry Mullen, The Edge', 248163, 8056723, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Stuck In A Moment You Can''t Get Out Of', 233, 1, 1, 'Adam Clayton, Bono, Larry Mullen, The Edge', 272378, 8997366, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Elevation', 233, 1, 1, 'Adam Clayton, Bono, Larry Mullen, The Edge', 227552, 7479414, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Walk On', 233, 1, 1, 'Adam Clayton, Bono, Larry Mullen, The Edge', 296280, 9800861, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Kite', 233, 1, 1, 'Adam Clayton, Bono, Larry Mullen, The Edge', 266893, 8765761, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('In A Little While', 233, 1, 1, 'Adam Clayton, Bono, Larry Mullen, The Edge', 219271, 7189647, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Wild Honey', 233, 1, 1, 'Adam Clayton, Bono, Larry Mullen, The Edge', 226768, 7466069, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Peace On Earth', 233, 1, 1, 'Adam Clayton, Bono, Larry Mullen, The Edge', 288496, 9476171, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('When I Look At The World', 233, 1, 1, 'Adam Clayton, Bono, Larry Mullen, The Edge', 257776, 8500491, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('New York', 233, 1, 1, 'Adam Clayton, Bono, Larry Mullen, The Edge', 330370, 10862323, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Grace', 233, 1, 1, 'Adam Clayton, Bono, Larry Mullen, The Edge', 330657, 10877148, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('The Three Sunrises', 234, 1, 1, 'U2', 234788, 7717990, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Spanish Eyes', 234, 1, 1, 'U2', 196702, 6392710, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Sweetest Thing', 234, 1, 1, 'U2', 185103, 6154896, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Love Comes Tumbling', 234, 1, 1, 'U2', 282671, 9328802, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Bass Trap', 234, 1, 1, 'U2', 213289, 6834107, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Dancing Barefoot', 234, 1, 1, 'Ivan Kral/Patti Smith', 287895, 9488294, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Everlasting Love', 234, 1, 1, 'Buzz Cason/Mac Gayden', 202631, 6708932, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Unchained Melody', 234, 1, 1, 'Alex North/Hy Zaret', 294164, 9597568, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Walk To The Water', 234, 1, 1, 'U2', 289253, 9523336, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Luminous Times (Hold On To Love)', 234, 1, 1, 'Brian Eno/U2', 277760, 9015513, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Hallelujah Here She Comes', 234, 1, 1, 'U2', 242364, 8027028, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Silver And Gold', 234, 1, 1, 'Bono', 279875, 9199746, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Endless Deep', 234, 1, 1, 'U2', 179879, 5899070, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('A Room At The Heartbreak Hotel', 234, 1, 1, 'U2', 274546, 9015416, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Trash, Trampoline And The Party Girl', 234, 1, 1, 'U2', 153965, 5083523, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Vertigo', 235, 1, 1, 'Adam Clayton, Bono, Larry Mullen & The Edge', 194612, 6329502, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Miracle Drug', 235, 1, 1, 'Adam Clayton, Bono, Larry Mullen & The Edge', 239124, 7760916, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Sometimes You Can''t Make It On Your Own', 235, 1, 1, 'Adam Clayton, Bono, Larry Mullen & The Edge', 308976, 10112863, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Love And Peace Or Else', 235, 1, 1, 'Adam Clayton, Bono, Larry Mullen & The Edge', 290690, 9476723, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('City Of Blinding Lights', 235, 1, 1, 'Adam Clayton, Bono, Larry Mullen & The Edge', 347951, 11432026, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('All Because Of You', 235, 1, 1, 'Adam Clayton, Bono, Larry Mullen & The Edge', 219141, 7198014, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('A Man And A Woman', 235, 1, 1, 'Adam Clayton, Bono, Larry Mullen & The Edge', 270132, 8938285, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Crumbs From Your Table', 235, 1, 1, 'Adam Clayton, Bono, Larry Mullen & The Edge', 303568, 9892349, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('One Step Closer', 235, 1, 1, 'Adam Clayton, Bono, Larry Mullen & The Edge', 231680, 7512912, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Original Of The Species', 235, 1, 1, 'Adam Clayton, Bono, Larry Mullen & The Edge', 281443, 9230041, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Yahweh', 235, 1, 1, 'Adam Clayton, Bono, Larry Mullen & The Edge', 262034, 8636998, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Discotheque', 236, 1, 1, 'Bono, The Edge, Adam Clayton, and Larry Mullen', 319582, 10442206, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Do You Feel Loved', 236, 1, 1, 'Bono, The Edge, Adam Clayton, and Larry Mullen', 307539, 10122694, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Mofo', 236, 1, 1, 'Bono, The Edge, Adam Clayton, and Larry Mullen', 349178, 11583042, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('If God Will Send His Angels', 236, 1, 1, 'Bono, The Edge, Adam Clayton, and Larry Mullen', 322533, 10563329, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Staring At The Sun', 236, 1, 1, 'Bono, The Edge, Adam Clayton, and Larry Mullen', 276924, 9082838, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Last Night On Earth', 236, 1, 1, 'Bono, The Edge, Adam Clayton, and Larry Mullen', 285753, 9401017, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Gone', 236, 1, 1, 'Bono, The Edge, Adam Clayton, and Larry Mullen', 266866, 8746301, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Miami', 236, 1, 1, 'Bono, The Edge, Adam Clayton, and Larry Mullen', 293041, 9741603, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('The Playboy Mansion', 236, 1, 1, 'Bono, The Edge, Adam Clayton, and Larry Mullen', 280555, 9274144, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('If You Wear That Velvet Dress', 236, 1, 1, 'Bono, The Edge, Adam Clayton, and Larry Mullen', 315167, 10227333, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Please', 236, 1, 1, 'Bono, The Edge, Adam Clayton, and Larry Mullen', 302602, 9909484, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Wake Up Dead Man', 236, 1, 1, 'Bono, The Edge, Adam Clayton, and Larry Mullen', 292832, 9515903, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Helter Skelter', 237, 1, 1, 'Lennon, John/McCartney, Paul', 187350, 6097636, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Van Diemen''s Land', 237, 1, 1, 'Bono/Clayton, Adam/Mullen Jr., Larry/The Edge', 186044, 5990280, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Desire', 237, 1, 1, 'Bono/Clayton, Adam/Mullen Jr., Larry/The Edge', 179226, 5874535, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Hawkmoon 269', 237, 1, 1, 'Bono/Clayton, Adam/Mullen Jr., Larry/The Edge', 382458, 12494987, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('All Along The Watchtower', 237, 1, 1, 'Dylan, Bob', 264568, 8623572, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('I Still Haven''t Found What I''m Looking for', 237, 1, 1, 'Bono/Clayton, Adam/Mullen Jr., Larry/The Edge', 353567, 11542247, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Freedom For My People', 237, 1, 1, 'Mabins, Macie/Magee, Sterling/Robinson, Bobby', 38164, 1249764, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Silver And Gold', 237, 1, 1, 'Bono/Clayton, Adam/Mullen Jr., Larry/The Edge', 349831, 11450194, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Pride (In The Name Of Love)', 237, 1, 1, 'Bono/Clayton, Adam/Mullen Jr., Larry/The Edge', 267807, 8806361, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Angel Of Harlem', 237, 1, 1, 'Bono/Clayton, Adam/Mullen Jr., Larry/The Edge', 229276, 7498022, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Love Rescue Me', 237, 1, 1, 'Bono/Clayton, Adam/Dylan, Bob/Mullen Jr., Larry/The Edge', 384522, 12508716, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('When Love Comes To Town', 237, 1, 1, 'Bono/Clayton, Adam/Mullen Jr., Larry/The Edge', 255869, 8340954, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Heartland', 237, 1, 1, 'Bono/Clayton, Adam/Mullen Jr., Larry/The Edge', 303360, 9867748, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('God Part II', 237, 1, 1, 'Bono/Clayton, Adam/Mullen Jr., Larry/The Edge', 195604, 6497570, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('The Star Spangled Banner', 237, 1, 1, 'Hendrix, Jimi', 43232, 1385810, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Bullet The Blue Sky', 237, 1, 1, 'Bono/Clayton, Adam/Mullen Jr., Larry/The Edge', 337005, 10993607, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('All I Want Is You', 237, 1, 1, 'Bono/Clayton, Adam/Mullen Jr., Larry/The Edge', 390243, 12729820, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Pride (In The Name Of Love)', 238, 1, 1, 'U2', 230243, 7549085, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('New Year''s Day', 238, 1, 1, 'U2', 258925, 8491818, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('With Or Without You', 238, 1, 1, 'U2', 299023, 9765188, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('I Still Haven''t Found What I''m Looking For', 238, 1, 1, 'U2', 280764, 9306737, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Sunday Bloody Sunday', 238, 1, 1, 'U2', 282174, 9269668, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Bad', 238, 1, 1, 'U2', 351817, 11628058, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Where The Streets Have No Name', 238, 1, 1, 'U2', 276218, 9042305, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('I Will Follow', 238, 1, 1, 'U2', 218253, 7184825, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('The Unforgettable Fire', 238, 1, 1, 'U2', 295183, 9684664, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Sweetest Thing', 238, 1, 1, 'U2 & Daragh O''Toole', 183066, 6071385, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Desire', 238, 1, 1, 'U2', 179853, 5893206, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('When Love Comes To Town', 238, 1, 1, 'U2', 258194, 8479525, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Angel Of Harlem', 238, 1, 1, 'U2', 230217, 7527339, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('All I Want Is You', 238, 1, 1, 'U2 & Van Dyke Parks', 591986, 19202252, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Sunday Bloody Sunday', 239, 1, 1, 'U2', 278204, 9140849, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Seconds', 239, 1, 1, 'U2', 191582, 6352121, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('New Year''s Day', 239, 1, 1, 'U2', 336274, 11054732, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Like A Song...', 239, 1, 1, 'U2', 287294, 9365379, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Drowning Man', 239, 1, 1, 'U2', 254458, 8457066, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('The Refugee', 239, 1, 1, 'U2', 221283, 7374043, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Two Hearts Beat As One', 239, 1, 1, 'U2', 243487, 7998323, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Red Light', 239, 1, 1, 'U2', 225854, 7453704, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Surrender', 239, 1, 1, 'U2', 333505, 11221406, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('"40"', 239, 1, 1, 'U2', 157962, 5251767, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Zooropa', 240, 1, 1, 'U2; Bono', 392359, 12807979, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Babyface', 240, 1, 1, 'U2; Bono', 241998, 7942573, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Numb', 240, 1, 1, 'U2; Edge, The', 260284, 8577861, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Lemon', 240, 1, 1, 'U2; Bono', 418324, 13988878, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Stay (Faraway, So Close!)', 240, 1, 1, 'U2; Bono', 298475, 9785480, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Daddy''s Gonna Pay For Your Crashed Car', 240, 1, 1, 'U2; Bono', 320287, 10609581, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Some Days Are Better Than Others', 240, 1, 1, 'U2; Bono', 257436, 8417690, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('The First Time', 240, 1, 1, 'U2; Bono', 225697, 7247651, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Dirty Day', 240, 1, 1, 'U2; Bono & Edge, The', 324440, 10652877, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('The Wanderer', 240, 1, 1, 'U2; Bono', 283951, 9258717, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Breakfast In Bed', 241, 1, 8, 196179, 6513325, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Where Did I Go Wrong', 241, 1, 8, 226742, 7485054, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('I Would Do For You', 241, 1, 8, 334524, 11193602, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Homely Girl', 241, 1, 8, 203833, 6790788, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Here I Am (Come And Take Me)', 241, 1, 8, 242102, 8106249, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Kingston Town', 241, 1, 8, 226951, 7638236, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Wear You To The Ball', 241, 1, 8, 213342, 7159527, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('(I Can''t Help) Falling In Love With You', 241, 1, 8, 207568, 6905623, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Higher Ground', 241, 1, 8, 260179, 8665244, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Bring Me Your Cup', 241, 1, 8, 341498, 11346114, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('C''est La Vie', 241, 1, 8, 270053, 9031661, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Reggae Music', 241, 1, 8, 245106, 8203931, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Superstition', 241, 1, 8, 319582, 10728099, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Until My Dying Day', 241, 1, 8, 235807, 7886195, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Where Have All The Good Times Gone?', 242, 1, 1, 'Ray Davies', 186723, 6063937, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Hang ''Em High', 242, 1, 1, 'Alex Van Halen/David Lee Roth/Edward Van Halen/Michael Anthony', 210259, 6872314, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Cathedral', 242, 1, 1, 'Alex Van Halen/David Lee Roth/Edward Van Halen/Michael Anthony', 82860, 2650998, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Secrets', 242, 1, 1, 'Alex Van Halen/David Lee Roth/Edward Van Halen/Michael Anthony', 206968, 6803255, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Intruder', 242, 1, 1, 'Alex Van Halen/David Lee Roth/Edward Van Halen/Michael Anthony', 100153, 3282142, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('(Oh) Pretty Woman', 242, 1, 1, 'Bill Dees/Roy Orbison', 174680, 5665828, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Dancing In The Street', 242, 1, 1, 'Ivy Jo Hunter/Marvin Gaye/William Stevenson', 225985, 7461499, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Little Guitars (Intro)', 242, 1, 1, 'Alex Van Halen/David Lee Roth/Edward Van Halen/Michael Anthony', 42240, 1439530, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Little Guitars', 242, 1, 1, 'Alex Van Halen/David Lee Roth/Edward Van Halen/Michael Anthony', 228806, 7453043, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Big Bad Bill (Is Sweet William Now)', 242, 1, 1, 'Jack Yellen/Milton Ager', 165146, 5489609, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('The Full Bug', 242, 1, 1, 'Alex Van Halen/David Lee Roth/Edward Van Halen/Michael Anthony', 201116, 6551013, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Happy Trails', 242, 1, 1, 'Dale Evans', 65488, 2111141, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Eruption', 243, 1, 1, 'Edward Van Halen, Alex Van Halen, David Lee Roth, Michael Anthony', 102164, 3272891, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Ain''t Talkin'' ''bout Love', 243, 1, 1, 'Edward Van Halen, Alex Van Halen, David Lee Roth, Michael Anthony', 228336, 7569506, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Runnin'' With The Devil', 243, 1, 1, 'Edward Van Halen, Alex Van Halen, David Lee Roth, Michael Anthony', 215902, 7061901, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Dance the Night Away', 243, 1, 1, 'Edward Van Halen, Alex Van Halen, David Lee Roth, Michael Anthony', 185965, 6087433, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('And the Cradle Will Rock...', 243, 1, 1, 'Edward Van Halen, Alex Van Halen, David Lee Roth, Michael Anthony', 213968, 7011402, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Unchained', 243, 1, 1, 'Edward Van Halen, Alex Van Halen, David Lee Roth, Michael Anthony', 208953, 6777078, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Jump', 243, 1, 1, 'Edward Van Halen, Alex Van Halen, David Lee Roth', 241711, 7911090, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Panama', 243, 1, 1, 'Edward Van Halen, Alex Van Halen, David Lee Roth', 211853, 6921784, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Why Can''t This Be Love', 243, 1, 1, 'Van Halen', 227761, 7457655, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Dreams', 243, 1, 1, 'Edward Van Halen, Alex Van Halen, Michael Anthony,/Edward Van Halen, Alex Van Halen, Michael Anthony, Sammy Hagar', 291813, 9504119, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('When It''s Love', 243, 1, 1, 'Edward Van Halen, Alex Van Halen, Michael Anthony,/Edward Van Halen, Alex Van Halen, Michael Anthony, Sammy Hagar', 338991, 11049966, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Poundcake', 243, 1, 1, 'Edward Van Halen, Alex Van Halen, Michael Anthony,/Edward Van Halen, Alex Van Halen, Michael Anthony, Sammy Hagar', 321854, 10366978, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Right Now', 243, 1, 1, 'Van Halen', 321828, 10503352, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Can''t Stop Loving You', 243, 1, 1, 'Van Halen', 248502, 8107896, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Humans Being', 243, 1, 1, 'Edward Van Halen, Alex Van Halen, Michael Anthony,/Edward Van Halen, Alex Van Halen, Michael Anthony, Sammy Hagar', 308950, 10014683, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Can''t Get This Stuff No More', 243, 1, 1, 'Edward Van Halen, Alex Van Halen, Michael Anthony,/Edward Van Halen, Alex Van Halen, Michael Anthony, David Lee Roth', 315376, 10355753, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Me Wise Magic', 243, 1, 1, 'Edward Van Halen, Alex Van Halen, Michael Anthony,/Edward Van Halen, Alex Van Halen, Michael Anthony, David Lee Roth', 366053, 12013467, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Runnin'' With The Devil', 244, 1, 1, 'Edward Van Halen, Alex Van Halen, Michael Anthony and David Lee Roth', 216032, 7056863, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Eruption', 244, 1, 1, 'Edward Van Halen, Alex Van Halen, Michael Anthony and David Lee Roth', 102556, 3286026, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('You Really Got Me', 244, 1, 1, 'Ray Davies', 158589, 5194092, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Ain''t Talkin'' ''Bout Love', 244, 1, 1, 'Edward Van Halen, Alex Van Halen, Michael Anthony and David Lee Roth', 230060, 7617284, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('I''m The One', 244, 1, 1, 'Edward Van Halen, Alex Van Halen, Michael Anthony and David Lee Roth', 226507, 7373922, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Jamie''s Cryin''', 244, 1, 1, 'Edward Van Halen, Alex Van Halen, Michael Anthony and David Lee Roth', 210546, 6946086, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Atomic Punk', 244, 1, 1, 'Edward Van Halen, Alex Van Halen, Michael Anthony and David Lee Roth', 182073, 5908861, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Feel Your Love Tonight', 244, 1, 1, 'Edward Van Halen, Alex Van Halen, Michael Anthony and David Lee Roth', 222850, 7293608, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Little Dreamer', 244, 1, 1, 'Edward Van Halen, Alex Van Halen, Michael Anthony and David Lee Roth', 203258, 6648122, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Ice Cream Man', 244, 1, 1, 'John Brim', 200306, 6573145, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('On Fire', 244, 1, 1, 'Edward Van Halen, Alex Van Halen, Michael Anthony and David Lee Roth', 180636, 5879235, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Neworld', 245, 1, 1, 'Van Halen', 105639, 3495897, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Without You', 245, 1, 1, 'Van Halen', 390295, 12619558, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('One I Want', 245, 1, 1, 'Van Halen', 330788, 10743970, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('From Afar', 245, 1, 1, 'Van Halen', 324414, 10524554, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Dirty Water Dog', 245, 1, 1, 'Van Halen', 327392, 10709202, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Once', 245, 1, 1, 'Van Halen', 462837, 15378082, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Fire in the Hole', 245, 1, 1, 'Van Halen', 331728, 10846768, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Josephina', 245, 1, 1, 'Van Halen', 342491, 11161521, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Year to the Day', 245, 1, 1, 'Van Halen', 514612, 16621333, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Primary', 245, 1, 1, 'Van Halen', 86987, 2812555, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Ballot or the Bullet', 245, 1, 1, 'Van Halen', 342282, 11212955, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('How Many Say I', 245, 1, 1, 'Van Halen', 363937, 11716855, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Sucker Train Blues', 246, 1, 1, 'Dave Kushner, Duff, Matt Sorum, Scott Weiland & Slash', 267859, 8738780, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Do It For The Kids', 246, 1, 1, 'Dave Kushner, Duff, Matt Sorum, Scott Weiland & Slash', 235911, 7693331, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Big Machine', 246, 1, 1, 'Dave Kushner, Duff, Matt Sorum, Scott Weiland & Slash', 265613, 8673442, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Illegal I Song', 246, 1, 1, 'Dave Kushner, Duff, Matt Sorum, Scott Weiland & Slash', 257750, 8483347, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Spectacle', 246, 1, 1, 'Dave Kushner, Duff, Matt Sorum, Scott Weiland & Slash', 221701, 7252876, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Fall To Pieces', 246, 1, 1, 'Dave Kushner, Duff, Matt Sorum, Scott Weiland & Slash', 270889, 8823096, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Headspace', 246, 1, 1, 'Dave Kushner, Duff, Matt Sorum, Scott Weiland & Slash', 223033, 7237986, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Superhuman', 246, 1, 1, 'Dave Kushner, Duff, Matt Sorum, Scott Weiland & Slash', 255921, 8365328, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Set Me Free', 246, 1, 1, 'Dave Kushner, Duff, Matt Sorum, Scott Weiland & Slash', 247954, 8053388, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('You Got No Right', 246, 1, 1, 'Dave Kushner, Duff, Matt Sorum, Scott Weiland & Slash', 335412, 10991094, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Slither', 246, 1, 1, 'Dave Kushner, Duff, Matt Sorum, Scott Weiland & Slash', 248398, 8118785, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Dirty Little Thing', 246, 1, 1, 'Dave Kushner, Duff, Keith Nelson, Matt Sorum, Scott Weiland & Slash', 237844, 7732982, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Loving The Alien', 246, 1, 1, 'Dave Kushner, Duff, Matt Sorum, Scott Weiland & Slash', 348786, 11412762, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Pela Luz Dos Olhos Teus', 247, 1, 7, 119196, 3905715, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('A Bencao E Outros', 247, 1, 7, 421093, 14234427, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Tudo Na Mais Santa Paz', 247, 1, 7, 222406, 7426757, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('O Velho E Aflor', 247, 1, 7, 275121, 9126828, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Cotidiano N 2', 247, 1, 7, 55902, 1805797, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Adeus', 247, 1, 7, 221884, 7259351, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Samba Pra Endrigo', 247, 1, 7, 259265, 8823551, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('So Por Amor', 247, 1, 7, 236591, 7745764, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Meu Pranto Rolou', 247, 1, 7, 181760, 6003345, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Mulher Carioca', 247, 1, 7, 191686, 6395048, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Um Homem Chamado Alfredo', 247, 1, 7, 151640, 4976227, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Samba Do Jato', 247, 1, 7, 220813, 7357840, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Oi, La', 247, 1, 7, 167053, 5562700, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Vinicius, Poeta Do Encontro', 247, 1, 7, 336431, 10858776, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Soneto Da Separacao', 247, 1, 7, 193880, 6277511, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Still Of The Night', 141, 1, 3, 'Sykes', 398210, 13043817, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Here I Go Again', 141, 1, 3, 'Marsden', 233874, 7652473, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Is This Love', 141, 1, 3, 'Sykes', 283924, 9262360, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Love Ain''t No Stranger', 141, 1, 3, 'Galley', 259395, 8490428, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Looking For Love', 141, 1, 3, 'Sykes', 391941, 12769847, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Now You''re Gone', 141, 1, 3, 'Vandenberg', 251141, 8162193, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Slide It In', 141, 1, 3, 'Coverdale', 202475, 6615152, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Slow An'' Easy', 141, 1, 3, 'Moody', 367255, 11961332, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Judgement Day', 141, 1, 3, 'Vandenberg', 317074, 10326997, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('You''re Gonna Break My Hart Again', 141, 1, 3, 'Sykes', 250853, 8176847, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('The Deeper The Love', 141, 1, 3, 'Vandenberg', 262791, 8606504, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Crying In The Rain', 141, 1, 3, 'Coverdale', 337005, 10931921, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Fool For Your Loving', 141, 1, 3, 'Marsden/Moody', 250801, 8129820, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Sweet Lady Luck', 141, 1, 3, 'Vandenberg', 273737, 8919163, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Faixa Amarela', 248, 1, 7, 'Beto Gogo/Jessé Pai/Luiz Carlos/Zeca Pagodinho', 240692, 8082036, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Posso Até Me Apaixonar', 248, 1, 7, 'Dudu Nobre', 200698, 6735526, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Não Sou Mais Disso', 248, 1, 7, 'Jorge Aragão/Zeca Pagodinho', 225985, 7613817, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Vivo Isolado Do Mundo', 248, 1, 7, 'Alcides Dias Lopes', 180035, 6073995, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Coração Em Desalinho', 248, 1, 7, 'Mauro Diniz/Ratino Sigem', 185208, 6225948, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Seu Balancê', 248, 1, 7, 'Paulinho Rezende/Toninho Geraes', 219454, 7311219, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Vai Adiar', 248, 1, 7, 'Alcino Corrêa/Monarco', 270393, 9134882, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Rugas', 248, 1, 7, 'Augusto Garcez/Nelson Cavaquinho', 140930, 4703182, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Feirinha da Pavuna/Luz do Repente/Bagaço da Laranja', 248, 1, 7, 'Arlindo Cruz/Franco/Marquinhos PQD/Negro, Jovelina Pérolo/Zeca Pagodinho', 107206, 3593684, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Sem Essa de Malandro Agulha', 248, 1, 7, 'Aldir Blanc/Jayme Vignoli', 158484, 5332668, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Chico Não Vai na Corimba', 248, 1, 7, 'Dudu Nobre/Zeca Pagodinho', 269374, 9122188, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Papel Principal', 248, 1, 7, 'Almir Guineto/Dedé Paraiso/Luverci Ernesto', 217495, 7325302, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Saudade Louca', 248, 1, 7, 'Acyr Marques/Arlindo Cruz/Franco', 243591, 8136475, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Camarão que Dorme e Onda Leva', 248, 1, 7, 'Acyi Marques/Arlindo Bruz/Braço, Beto Sem/Zeca Pagodinho', 299102, 10012231, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Sapopemba e Maxambomba', 248, 1, 7, 'Nei Lopes/Wilson Moreira', 245394, 8268712, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Minha Fé', 248, 1, 7, 'Murilão', 206994, 6981474, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Lua de Ogum', 248, 1, 7, 'Ratinho/Zeca Pagodinho', 168463, 5719129, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Samba pras moças', 248, 1, 7, 'Grazielle/Roque Ferreira', 152816, 5121366, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Verdade', 248, 1, 7, 'Carlinhos Santana/Nelson Rufino', 332826, 11120708, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('The Brig', 229, 3, 21, 2617325, 488919543, 1.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('.07%', 228, 3, 21, 2585794, 541715199, 1.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Five Years Gone', 228, 3, 21, 2587712, 530551890, 1.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('The Hard Part', 228, 3, 21, 2601017, 475996611, 1.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('The Man Behind the Curtain', 229, 3, 21, 2615990, 493951081, 1.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Greatest Hits', 229, 3, 21, 2617117, 522102916, 1.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Landslide', 228, 3, 21, 2600725, 518677861, 1.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('The Office: An American Workplace (Pilot)', 249, 3, 19, 1380833, 290482361, 1.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Diversity Day', 249, 3, 19, 1306416, 257879716, 1.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Health Care', 249, 3, 19, 1321791, 260493577, 1.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('The Alliance', 249, 3, 19, 1317125, 266203162, 1.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Basketball', 249, 3, 19, 1323541, 267464180, 1.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Hot Girl', 249, 3, 19, 1325458, 267836576, 1.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('The Dundies', 250, 3, 19, 1253541, 246845576, 1.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Sexual Harassment', 250, 3, 19, 1294541, 273069146, 1.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Office Olympics', 250, 3, 19, 1290458, 256247623, 1.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('The Fire', 250, 3, 19, 1288166, 266856017, 1.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Halloween', 250, 3, 19, 1315333, 249205209, 1.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('The Fight', 250, 3, 19, 1320028, 277149457, 1.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('The Client', 250, 3, 19, 1299341, 253836788, 1.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Performance Review', 250, 3, 19, 1292458, 256143822, 1.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Email Surveillance', 250, 3, 19, 1328870, 265101113, 1.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Christmas Party', 250, 3, 19, 1282115, 260891300, 1.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Booze Cruise', 250, 3, 19, 1267958, 252518021, 1.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('The Injury', 250, 3, 19, 1275275, 253912762, 1.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('The Secret', 250, 3, 19, 1264875, 253143200, 1.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('The Carpet', 250, 3, 19, 1264375, 256477011, 1.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Boys and Girls', 250, 3, 19, 1278333, 255245729, 1.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Valentine''s Day', 250, 3, 19, 1270375, 253552710, 1.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Dwight''s Speech', 250, 3, 19, 1278041, 255001728, 1.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Take Your Daughter to Work Day', 250, 3, 19, 1268333, 253451012, 1.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Michael''s Birthday', 250, 3, 19, 1237791, 247238398, 1.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Drug Testing', 250, 3, 19, 1278625, 244626927, 1.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Conflict Resolution', 250, 3, 19, 1274583, 253808658, 1.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Casino Night - Season Finale', 250, 3, 19, 1712791, 327642458, 1.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Gay Witch Hunt', 251, 3, 19, 1326534, 276942637, 1.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('The Convention', 251, 3, 19, 1297213, 255117055, 1.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('The Coup', 251, 3, 19, 1276526, 267205501, 1.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Grief Counseling', 251, 3, 19, 1282615, 256912833, 1.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('The Initiation', 251, 3, 19, 1280113, 251728257, 1.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Diwali', 251, 3, 19, 1279904, 252726644, 1.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Branch Closing', 251, 3, 19, 1822781, 358761786, 1.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('The Merger', 251, 3, 19, 1801926, 345960631, 1.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('The Convict', 251, 3, 22, 1273064, 248863427, 1.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('A Benihana Christmas, Pts. 1 & 2', 251, 3, 22, 2519436, 515301752, 1.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Back from Vacation', 251, 3, 22, 1271688, 245378749, 1.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Traveling Salesmen', 251, 3, 22, 1289039, 250822697, 1.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Producer''s Cut: The Return', 251, 3, 22, 1700241, 337219980, 1.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Ben Franklin', 251, 3, 22, 1271938, 264168080, 1.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Phyllis''s Wedding', 251, 3, 22, 1271521, 258561054, 1.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Business School', 251, 3, 22, 1302093, 254402605, 1.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Cocktails', 251, 3, 22, 1272522, 259011909, 1.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('The Negotiation', 251, 3, 22, 1767851, 371663719, 1.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Safety Training', 251, 3, 22, 1271229, 253054534, 1.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Product Recall', 251, 3, 22, 1268268, 251208610, 1.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Women''s Appreciation', 251, 3, 22, 1732649, 338778844, 1.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Beach Games', 251, 3, 22, 1676134, 333671149, 1.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('The Job', 251, 3, 22, 2541875, 501060138, 1.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('How to Stop an Exploding Man', 228, 3, 21, 2687103, 487881159, 1.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Through a Looking Glass', 229, 3, 21, 5088838, 1059546140, 1.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Your Time Is Gonna Come', 252, 2, 1, 'Page, Jones', 310774, 5126563, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Battlestar Galactica, Pt. 1', 253, 3, 20, 2952702, 541359437, 1.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Battlestar Galactica, Pt. 2', 253, 3, 20, 2956081, 521387924, 1.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Battlestar Galactica, Pt. 3', 253, 3, 20, 2927802, 554509033, 1.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Lost Planet of the Gods, Pt. 1', 253, 3, 20, 2922547, 537812711, 1.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Lost Planet of the Gods, Pt. 2', 253, 3, 20, 2914664, 534343985, 1.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('The Lost Warrior', 253, 3, 20, 2920045, 558872190, 1.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('The Long Patrol', 253, 3, 20, 2925008, 513122217, 1.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('The Gun On Ice Planet Zero, Pt. 1', 253, 3, 20, 2907615, 540980196, 1.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('The Gun On Ice Planet Zero, Pt. 2', 253, 3, 20, 2924341, 546542281, 1.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('The Magnificent Warriors', 253, 3, 20, 2924716, 570152232, 1.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('The Young Lords', 253, 3, 20, 2863571, 587051735, 1.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('The Living Legend, Pt. 1', 253, 3, 20, 2924507, 503641007, 1.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('The Living Legend, Pt. 2', 253, 3, 20, 2923298, 515632754, 1.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Fire In Space', 253, 3, 20, 2926593, 536784757, 1.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('War of the Gods, Pt. 1', 253, 3, 20, 2922630, 505761343, 1.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('War of the Gods, Pt. 2', 253, 3, 20, 2923381, 487899692, 1.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('The Man With Nine Lives', 253, 3, 20, 2956998, 577829804, 1.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Murder On the Rising Star', 253, 3, 20, 2935894, 551759986, 1.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Greetings from Earth, Pt. 1', 253, 3, 20, 2960293, 536824558, 1.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Greetings from Earth, Pt. 2', 253, 3, 20, 2903778, 527842860, 1.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Baltar''s Escape', 253, 3, 20, 2922088, 525564224, 1.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Experiment In Terra', 253, 3, 20, 2923548, 547982556, 1.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Take the Celestra', 253, 3, 20, 2927677, 512381289, 1.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('The Hand of God', 253, 3, 20, 2924007, 536583079, 1.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Pilot', 254, 3, 19, 2484567, 492670102, 1.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Through the Looking Glass, Pt. 2', 229, 3, 21, 2617117, 550943353, 1.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Through the Looking Glass, Pt. 1', 229, 3, 21, 2610860, 493211809, 1.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Instant Karma', 255, 2, 9, 193188, 3150090, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('#9 Dream', 255, 2, 9, 278312, 4506425, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Mother', 255, 2, 9, 287740, 4656660, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Give Peace a Chance', 255, 2, 9, 274644, 4448025, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Cold Turkey', 255, 2, 9, 281424, 4556003, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Whatever Gets You Thru the Night', 255, 2, 9, 215084, 3499018, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('I''m Losing You', 255, 2, 9, 240719, 3907467, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Gimme Some Truth', 255, 2, 9, 232778, 3780807, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Oh, My Love', 255, 2, 9, 159473, 2612788, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Imagine', 255, 2, 9, 192329, 3136271, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Nobody Told Me', 255, 2, 9, 210348, 3423395, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Jealous Guy', 255, 2, 9, 239094, 3881620, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Working Class Hero', 255, 2, 9, 265449, 4301430, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Power to the People', 255, 2, 9, 213018, 3466029, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Imagine', 255, 2, 9, 219078, 3562542, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Beautiful Boy', 255, 2, 9, 227995, 3704642, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Isolation', 255, 2, 9, 156059, 2558399, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Watching the Wheels', 255, 2, 9, 198645, 3237063, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Grow Old With Me', 255, 2, 9, 149093, 2447453, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Gimme Some Truth', 255, 2, 9, 187546, 3060083, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('[Just Like] Starting Over', 255, 2, 9, 215549, 3506308, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('God', 255, 2, 9, 260410, 4221135, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Real Love', 255, 2, 9, 236911, 3846658, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Sympton of the Universe', 256, 2, 1, 340890, 5489313, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Snowblind', 256, 2, 1, 295960, 4773171, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Black Sabbath', 256, 2, 1, 364180, 5860455, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Fairies Wear Boots', 256, 2, 1, 392764, 6315916, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('War Pigs', 256, 2, 1, 515435, 8270194, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('The Wizard', 256, 2, 1, 282678, 4561796, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('N.I.B.', 256, 2, 1, 335248, 5399456, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Sweet Leaf', 256, 2, 1, 354706, 5709700, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Never Say Die', 256, 2, 1, 258343, 4173799, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Sabbath, Bloody Sabbath', 256, 2, 1, 333622, 5373633, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Iron Man/Children of the Grave', 256, 2, 1, 552308, 8858616, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Paranoid', 256, 2, 1, 189171, 3071042, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Rock You Like a Hurricane', 257, 2, 1, 255766, 4300973, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('No One Like You', 257, 2, 1, 240325, 4050259, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('The Zoo', 257, 2, 1, 332740, 5550779, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Loving You Sunday Morning', 257, 2, 1, 339125, 5654493, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Still Loving You', 257, 2, 1, 390674, 6491444, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Big City Nights', 257, 2, 1, 251865, 4237651, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Believe in Love', 257, 2, 1, 325774, 5437651, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Rhythm of Love', 257, 2, 1, 231246, 3902834, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('I Can''t Explain', 257, 2, 1, 205332, 3482099, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Tease Me Please Me', 257, 2, 1, 287229, 4811894, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Wind of Change', 257, 2, 1, 315325, 5268002, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Send Me an Angel', 257, 2, 1, 273041, 4581492, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Jump Around', 258, 1, 17, 'E. Schrody/L. Muggerud', 217835, 8715653, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Salutations', 258, 1, 17, 'E. Schrody/L. Dimant', 69120, 2767047, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Put Your Head Out', 258, 1, 17, 'E. Schrody/L. Freese/L. Muggerud', 182230, 7291473, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Top O'' The Morning To Ya', 258, 1, 17, 'E. Schrody/L. Dimant', 216633, 8667599, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Commercial 1', 258, 1, 17, 'L. Muggerud', 7941, 319888, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('House And The Rising Sun', 258, 1, 17, 'E. Schrody/J. Vasquez/L. Dimant', 219402, 8778369, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Shamrocks And Shenanigans', 258, 1, 17, 'E. Schrody/L. Dimant', 218331, 8735518, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('House Of Pain Anthem', 258, 1, 17, 'E. Schrody/L. Dimant', 155611, 6226713, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Danny Boy, Danny Boy', 258, 1, 17, 'E. Schrody/L. Muggerud', 114520, 4583091, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Guess Who''s Back', 258, 1, 17, 'E. Schrody/L. Muggerud', 238393, 9537994, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Commercial 2', 258, 1, 17, 'L. Muggerud', 21211, 850698, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Put On Your Shit Kickers', 258, 1, 17, 'E. Schrody/L. Muggerud', 190432, 7619569, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Come And Get Some Of This', 258, 1, 17, 'E. Schrody/L. Muggerud/R. Medrano', 170475, 6821279, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Life Goes On', 258, 1, 17, 'E. Schrody/R. Medrano', 163030, 6523458, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('One For The Road', 258, 1, 17, 'E. Schrody/L. Dimant/L. Muggerud', 170213, 6810820, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Feel It', 258, 1, 17, 'E. Schrody/R. Medrano', 239908, 9598588, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('All My Love', 258, 1, 17, 'E. Schrody/L. Dimant', 200620, 8027065, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Jump Around (Pete Rock Remix)', 258, 1, 17, 'E. Schrody/L. Muggerud', 236120, 9447101, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Shamrocks And Shenanigans (Boom Shalock Lock Boom/Butch Vig Mix)', 258, 1, 17, 'E. Schrody/L. Dimant', 237035, 9483705, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Instinto Colectivo', 259, 1, 15, 300564, 12024875, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Chapa o Coco', 259, 1, 15, 143830, 5755478, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Prostituta', 259, 1, 15, 359000, 14362307, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Eu So Queria Sumir', 259, 1, 15, 269740, 10791921, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Tres Reis', 259, 1, 15, 304143, 12168015, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Um Lugar ao Sol', 259, 1, 15, 212323, 8495217, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Batalha Naval', 259, 1, 15, 285727, 11431382, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Todo o Carnaval tem seu Fim', 259, 1, 15, 237426, 9499371, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('O Misterio do Samba', 259, 1, 15, 226142, 9047970, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Armadura', 259, 1, 15, 232881, 9317533, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Na Ladeira', 259, 1, 15, 221570, 8865099, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Carimbo', 259, 1, 15, 328751, 13152314, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Catimbo', 259, 1, 15, 254484, 10181692, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Funk de Bamba', 259, 1, 15, 237322, 9495184, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Chega no Suingue', 259, 1, 15, 221805, 8874509, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Mun-Ra', 259, 1, 15, 274651, 10988338, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Freestyle Love', 259, 1, 15, 318484, 12741680, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('War Pigs', 260, 4, 23, 234013, 8052374, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Past, Present, and Future', 261, 3, 21, 2492867, 490796184, 1.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('The Beginning of the End', 261, 3, 21, 2611903, 526865050, 1.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('LOST Season 4 Trailer', 261, 3, 21, 112712, 20831818, 1.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('LOST In 8:15', 261, 3, 21, 497163, 98460675, 1.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Confirmed Dead', 261, 3, 21, 2611986, 512168460, 1.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('The Economist', 261, 3, 21, 2609025, 516934914, 1.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Eggtown', 261, 3, 19, 2608817, 501061240, 1.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('The Constant', 261, 3, 21, 2611569, 520209363, 1.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('The Other Woman', 261, 3, 21, 2605021, 513246663, 1.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Ji Yeon', 261, 3, 19, 2588797, 506458858, 1.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Meet Kevin Johnson', 261, 3, 19, 2612028, 504132981, 1.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('The Shape of Things to Come', 261, 3, 21, 2591299, 502284266, 1.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Amanda', 262, 5, 2, 'Luca Gusella', 246503, 4011615, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Despertar', 262, 5, 2, 'Andrea Dulbecco', 307385, 4821485, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Din Din Wo (Little Child)', 263, 5, 16, 'Habib Koité', 285837, 4615841, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Distance', 264, 5, 15, 'Karsh Kale/Vishal Vaid', 327122, 5327463, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('I Guess You''re Right', 265, 5, 1, 'Darius "Take One" Minwalla/Jon Auer/Ken Stringfellow/Matt Harris', 212044, 3453849, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('I Ka Barra (Your Work)', 263, 5, 16, 'Habib Koité', 300605, 4855457, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Love Comes', 265, 5, 1, 'Darius "Take One" Minwalla/Jon Auer/Ken Stringfellow/Matt Harris', 199923, 3240609, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Muita Bobeira', 266, 5, 7, 'Luciana Souza', 172710, 2775071, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('OAM''s Blues', 267, 5, 2, 'Aaron Goldberg', 266936, 4292028, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('One Step Beyond', 264, 5, 15, 'Karsh Kale', 366085, 6034098, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Symphony No. 3 in E-flat major, Op. 55, "Eroica" - Scherzo: Allegro Vivace', 268, 5, 24, 'Ludwig van Beethoven', 356426, 5817216, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Something Nice Back Home', 261, 3, 21, 2612779, 484711353, 1.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Cabin Fever', 261, 3, 21, 2612028, 477733942, 1.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('There''s No Place Like Home, Pt. 1', 261, 3, 21, 2609526, 522919189, 1.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('There''s No Place Like Home, Pt. 2', 261, 3, 21, 2497956, 523748920, 1.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('There''s No Place Like Home, Pt. 3', 261, 3, 21, 2582957, 486161766, 1.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Say Hello 2 Heaven', 269, 2, 23, 384497, 6477217, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Reach Down', 269, 2, 23, 672773, 11157785, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Hunger Strike', 269, 2, 23, 246292, 4233212, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Pushin Forward Back', 269, 2, 23, 225278, 3892066, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Call Me a Dog', 269, 2, 23, 304458, 5177612, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Times of Trouble', 269, 2, 23, 342539, 5795951, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Wooden Jesus', 269, 2, 23, 250565, 4302603, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Your Savior', 269, 2, 23, 244226, 4199626, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Four Walled World', 269, 2, 23, 414474, 6964048, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('All Night Thing', 269, 2, 23, 231803, 3997982, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('No Such Thing', 270, 2, 23, 'Chris Cornell', 224837, 3691272, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Poison Eye', 270, 2, 23, 'Chris Cornell', 237120, 3890037, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Arms Around Your Love', 270, 2, 23, 'Chris Cornell', 214016, 3516224, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Safe and Sound', 270, 2, 23, 'Chris Cornell', 256764, 4207769, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('She''ll Never Be Your Man', 270, 2, 23, 'Chris Cornell', 204078, 3355715, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Ghosts', 270, 2, 23, 'Chris Cornell', 231547, 3799745, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Killing Birds', 270, 2, 23, 'Chris Cornell', 218498, 3588776, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Billie Jean', 270, 2, 23, 'Michael Jackson', 281401, 4606408, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Scar On the Sky', 270, 2, 23, 'Chris Cornell', 220193, 3616618, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Your Soul Today', 270, 2, 23, 'Chris Cornell', 205959, 3385722, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Finally Forever', 270, 2, 23, 'Chris Cornell', 217035, 3565098, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Silence the Voices', 270, 2, 23, 'Chris Cornell', 267376, 4379597, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Disappearing Act', 270, 2, 23, 'Chris Cornell', 273320, 4476203, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('You Know My Name', 270, 2, 23, 'Chris Cornell', 240255, 3940651, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Revelations', 271, 2, 23, 252376, 4111051, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('One and the Same', 271, 2, 23, 217732, 3559040, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Sound of a Gun', 271, 2, 23, 260154, 4234990, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Until We Fall', 271, 2, 23, 230758, 3766605, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Original Fire', 271, 2, 23, 218916, 3577821, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Broken City', 271, 2, 23, 228366, 3728955, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Somedays', 271, 2, 23, 213831, 3497176, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Shape of Things to Come', 271, 2, 23, 274597, 4465399, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Jewel of the Summertime', 271, 2, 23, 233242, 3806103, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Wide Awake', 271, 2, 23, 266308, 4333050, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Nothing Left to Say But Goodbye', 271, 2, 23, 213041, 3484335, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Moth', 271, 2, 23, 298049, 4838884, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Show Me How to Live (Live at the Quart Festival)', 271, 2, 23, 301974, 4901540, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Band Members Discuss Tracks from "Revelations"', 271, 3, 23, 294294, 61118891, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Intoitus: Adorate Deum', 272, 2, 24, 'Anonymous', 245317, 4123531, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Miserere mei, Deus', 273, 2, 24, 'Gregorio Allegri', 501503, 8285941, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Canon and Gigue in D Major: I. Canon', 274, 2, 24, 'Johann Pachelbel', 271788, 4438393, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Concerto No. 1 in E Major, RV 269 "Spring": I. Allegro', 275, 2, 24, 'Antonio Vivaldi', 199086, 3347810, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Concerto for 2 Violins in D Minor, BWV 1043: I. Vivace', 276, 2, 24, 'Johann Sebastian Bach', 193722, 3192890, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Aria Mit 30 Veränderungen, BWV 988 "Goldberg Variations": Aria', 277, 2, 24, 'Johann Sebastian Bach', 120463, 2081895, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Suite for Solo Cello No. 1 in G Major, BWV 1007: I. Prélude', 278, 2, 24, 'Johann Sebastian Bach', 143288, 2315495, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('The Messiah: Behold, I Tell You a Mystery... The Trumpet Shall Sound', 279, 2, 24, 'George Frideric Handel', 582029, 9553140, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Solomon HWV 67: The Arrival of the Queen of Sheba', 280, 2, 24, 'George Frideric Handel', 197135, 3247914, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('"Eine Kleine Nachtmusik" Serenade In G, K. 525: I. Allegro', 281, 2, 24, 'Wolfgang Amadeus Mozart', 348971, 5760129, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Concerto for Clarinet in A Major, K. 622: II. Adagio', 282, 2, 24, 'Wolfgang Amadeus Mozart', 394482, 6474980, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Symphony No. 104 in D Major "London": IV. Finale: Spiritoso', 283, 4, 24, 'Franz Joseph Haydn', 306687, 10085867, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Symphony No.5 in C Minor: I. Allegro con brio', 284, 2, 24, 'Ludwig van Beethoven', 392462, 6419730, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Ave Maria', 285, 2, 24, 'Franz Schubert', 338243, 5605648, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Nabucco: Chorus, "Va, Pensiero, Sull''ali Dorate"', 286, 2, 24, 'Giuseppe Verdi', 274504, 4498583, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Die Walküre: The Ride of the Valkyries', 287, 2, 24, 'Richard Wagner', 189008, 3114209, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Requiem, Op.48: 4. Pie Jesu', 288, 2, 24, 'Gabriel Fauré', 258924, 4314850, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('The Nutcracker, Op. 71a, Act II: Scene 14: Pas de deux: Dance of the Prince & the Sugar-Plum Fairy', 289, 2, 24, 'Peter Ilyich Tchaikovsky', 304226, 5184289, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Nimrod (Adagio) from Variations On an Original Theme, Op. 36 "Enigma"', 290, 2, 24, 'Edward Elgar', 250031, 4124707, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Madama Butterfly: Un Bel Dì Vedremo', 291, 2, 24, 'Giacomo Puccini', 277639, 4588197, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Jupiter, the Bringer of Jollity', 292, 2, 24, 'Gustav Holst', 522099, 8547876, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Turandot, Act III, Nessun dorma!', 293, 2, 24, 'Giacomo Puccini', 176911, 2920890, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Adagio for Strings from the String Quartet, Op. 11', 294, 2, 24, 'Samuel Barber', 596519, 9585597, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Carmina Burana: O Fortuna', 295, 2, 24, 'Carl Orff', 156710, 2630293, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Fanfare for the Common Man', 296, 2, 24, 'Aaron Copland', 198064, 3211245, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Branch Closing', 251, 3, 22, 1814855, 360331351, 1.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('The Return', 251, 3, 22, 1705080, 343877320, 1.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Toccata and Fugue in D Minor, BWV 565: I. Toccata', 297, 2, 24, 'Johann Sebastian Bach', 153901, 2649938, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Symphony No.1 in D Major, Op.25 "Classical", Allegro Con Brio', 298, 2, 24, 'Sergei Prokofiev', 254001, 4195542, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Scheherazade, Op. 35: I. The Sea and Sindbad''s Ship', 299, 2, 24, 'Nikolai Rimsky-Korsakov', 545203, 8916313, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Concerto No.2 in F Major, BWV1047, I. Allegro', 300, 2, 24, 'Johann Sebastian Bach', 307244, 5064553, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Concerto for Piano No. 2 in F Minor, Op. 21: II. Larghetto', 301, 2, 24, 'Frédéric Chopin', 560342, 9160082, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Cavalleria Rusticana \ Act \ Intermezzo Sinfonico', 302, 2, 24, 'Pietro Mascagni', 243436, 4001276, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Karelia Suite, Op.11: 2. Ballade (Tempo Di Menuetto)', 303, 2, 24, 'Jean Sibelius', 406000, 5908455, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Piano Sonata No. 14 in C Sharp Minor, Op. 27, No. 2, "Moonlight": I. Adagio sostenuto', 304, 2, 24, 'Ludwig van Beethoven', 391000, 6318740, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Fantasia On Greensleeves', 280, 2, 24, 'Ralph Vaughan Williams', 268066, 4513190, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Das Lied Von Der Erde, Von Der Jugend', 305, 2, 24, 'Gustav Mahler', 223583, 3700206, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Concerto for Cello and Orchestra in E minor, Op. 85: I. Adagio - Moderato', 306, 2, 24, 'Edward Elgar', 483133, 7865479, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Two Fanfares for Orchestra: II. Short Ride in a Fast Machine', 307, 2, 24, 'John Adams', 254930, 4310896, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Wellington''s Victory or the Battle Symphony, Op.91: 2. Symphony of Triumph', 308, 2, 24, 'Ludwig van Beethoven', 412000, 6965201, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Missa Papae Marcelli: Kyrie', 309, 2, 24, 'Giovanni Pierluigi da Palestrina', 240666, 4244149, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Romeo et Juliette: No. 11 - Danse des Chevaliers', 310, 2, 24, 275015, 4519239, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('On the Beautiful Blue Danube', 311, 2, 24, 'Johann Strauss II', 526696, 8610225, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Symphonie Fantastique, Op. 14: V. Songe d''une nuit du sabbat', 312, 2, 24, 'Hector Berlioz', 561967, 9173344, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Carmen: Overture', 313, 2, 24, 'Georges Bizet', 132932, 2189002, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Lamentations of Jeremiah, First Set \ Incipit Lamentatio', 314, 2, 24, 'Thomas Tallis', 69194, 1208080, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Music for the Royal Fireworks, HWV351 (1749): La Réjouissance', 315, 2, 24, 'George Frideric Handel', 120000, 2193734, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Peer Gynt Suite No.1, Op.46: 1. Morning Mood', 316, 2, 24, 'Edvard Grieg', 253422, 4298769, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Die Zauberflöte, K.620: "Der Hölle Rache Kocht in Meinem Herze"', 317, 2, 25, 'Wolfgang Amadeus Mozart', 174813, 2861468, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('SCRIABIN: Prelude in B Major, Op. 11, No. 11', 318, 4, 24, 101293, 3819535, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Pavan, Lachrimae Antiquae', 319, 2, 24, 'John Dowland', 253281, 4211495, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Symphony No. 41 in C Major, K. 551, "Jupiter": IV. Molto allegro', 320, 2, 24, 'Wolfgang Amadeus Mozart', 362933, 6173269, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Rehab', 321, 2, 14, 213240, 3416878, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('You Know I''m No Good', 321, 2, 14, 256946, 4133694, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Me & Mr. Jones', 321, 2, 14, 151706, 2449438, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Just Friends', 321, 2, 14, 191933, 3098906, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Back to Black', 321, 2, 14, 'Mark Ronson', 240320, 3852953, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Love Is a Losing Game', 321, 2, 14, 154386, 2509409, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Tears Dry On Their Own', 321, 2, 14, 'Nickolas Ashford & Valerie Simpson', 185293, 2996598, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Wake Up Alone', 321, 2, 14, 'Paul O''duffy', 221413, 3576773, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Some Unholy War', 321, 2, 14, 141520, 2304465, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('He Can Only Hold Her', 321, 2, 14, 'Richard Poindexter & Robert Poindexter', 166680, 2666531, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('You Know I''m No Good (feat. Ghostface Killah)', 321, 2, 14, 202320, 3260658, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Rehab (Hot Chip Remix)', 321, 2, 14, 418293, 6670600, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Intro / Stronger Than Me', 322, 2, 9, 234200, 3832165, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('You Sent Me Flying / Cherry', 322, 2, 9, 409906, 6657517, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('F**k Me Pumps', 322, 2, 9, 'Salaam Remi', 200253, 3324343, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('I Heard Love Is Blind', 322, 2, 9, 129666, 2190831, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('(There Is) No Greater Love (Teo Licks)', 322, 2, 9, 'Isham Jones & Marty Symes', 167933, 2773507, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('In My Bed', 322, 2, 9, 'Salaam Remi', 315960, 5211774, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Take the Box', 322, 2, 9, 'Luke Smith', 199160, 3281526, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('October Song', 322, 2, 9, 'Matt Rowe & Stefan Skarbek', 204846, 3358125, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('What Is It About Men', 322, 2, 9, 'Delroy "Chris" Cooper, Donovan Jackson, Earl Chinna Smith, Felix Howard, Gordon Williams, Luke Smith, Paul Watson & Wilburn Squiddley Cole', 209573, 3426106, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Help Yourself', 322, 2, 9, 'Freddy James, Jimmy hogarth & Larry Stock', 300884, 5029266, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Amy Amy Amy (Outro)', 322, 2, 9, 'Astor Campbell, Delroy "Chris" Cooper, Donovan Jackson, Dorothy Fields, Earl Chinna Smith, Felix Howard, Gordon Williams, James Moody, Jimmy McHugh, Matt Rowe, Salaam Remi & Stefan Skarbek', 663426, 10564704, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Slowness', 323, 2, 23, 215386, 3644793, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Prometheus Overture, Op. 43', 324, 4, 24, 'Ludwig van Beethoven', 339567, 10887931, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Sonata for Solo Violin: IV: Presto', 325, 4, 24, 'Béla Bartók', 299350, 9785346, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('A Midsummer Night''s Dream, Op.61 Incidental Music: No.7 Notturno', 326, 2, 24, 387826, 6497867, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Suite No. 3 in D, BWV 1068: III. Gavotte I & II', 327, 2, 24, 'Johann Sebastian Bach', 225933, 3847164, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Concert pour 4 Parties de V**les, H. 545: I. Prelude', 328, 2, 24, 'Marc-Antoine Charpentier', 110266, 1973559, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Adios nonino', 329, 2, 24, 'Astor Piazzolla', 289388, 4781384, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Symphony No. 3 Op. 36 for Orchestra and Soprano "Symfonia Piesni Zalosnych" \ Lento E Largo - Tranquillissimo', 330, 2, 24, 'Henryk Górecki', 567494, 9273123, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Act IV, Symphony', 331, 2, 24, 'Henry Purcell', 364296, 5987695, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('3 Gymnopédies: No.1 - Lent Et Grave, No.3 - Lent Et Douloureux', 332, 2, 24, 'Erik Satie', 385506, 6458501, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Music for the Funeral of Queen Mary: VI. "Thou Knowest, Lord, the Secrets of Our Hearts"', 333, 2, 24, 'Henry Purcell', 142081, 2365930, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Symphony No. 2: III. Allegro vivace', 334, 2, 24, 'Kurt Weill', 376510, 6129146, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Partita in E Major, BWV 1006A: I. Prelude', 335, 2, 24, 'Johann Sebastian Bach', 285673, 4744929, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Le Sacre Du Printemps: I.iv. Spring Rounds', 336, 2, 24, 'Igor Stravinsky', 234746, 4072205, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Sing Joyfully', 314, 2, 24, 'William Byrd', 133768, 2256484, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Metopes, Op. 29: Calypso', 337, 2, 24, 'Karol Szymanowski', 333669, 5548755, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Symphony No. 2, Op. 16 - "The Four Temperaments": II. Allegro Comodo e Flemmatico', 338, 2, 24, 'Carl Nielsen', 286998, 4834785, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('24 Caprices, Op. 1, No. 24, for Solo Violin, in A Minor', 339, 2, 24, 'Niccolò Paganini', 265541, 4371533, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Étude 1, In C Major - Preludio (Presto) - Liszt', 340, 4, 24, 51780, 2229617, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Erlkonig, D.328', 341, 2, 24, 261849, 4307907, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Concerto for Violin, Strings and Continuo in G Major, Op. 3, No. 9: I. Allegro', 342, 4, 24, 'Pietro Antonio Locatelli', 493573, 16454937, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, milliseconds, bytes, unit_price) VALUES ('Pini Di Roma (Pinien Von Rom) \ I Pini Della Via Appia', 343, 2, 24, 286741, 4718950, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('String Quartet No. 12 in C Minor, D. 703 "Quartettsatz": II. Andante - Allegro assai', 344, 2, 24, 'Franz Schubert', 139200, 2283131, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('L''orfeo, Act 3, Sinfonia (Orchestra)', 345, 2, 24, 'Claudio Monteverdi', 66639, 1189062, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Quintet for Horn, Violin, 2 Violas, and Cello in E Flat Major, K. 407/386c: III. Allegro', 346, 2, 24, 'Wolfgang Amadeus Mozart', 221331, 3665114, 0.99); +INSERT INTO tracks (name, album_id, media_type_id, genre_id, composer, milliseconds, bytes, unit_price) VALUES ('Koyaanisqatsi', 347, 2, 10, 'Philip Glass', 206005, 3305164, 0.99); + +INSERT INTO employees (last_name, first_name, title, birth_date, hire_date, address, city, state, country, postal_code, phone, fax, email) VALUES ('Adams', 'Andrew', 'General Manager', '1962-02-18 00:00:00', '2002-08-14 00:00:00', '11120 Jasper Ave NW', 'Edmonton', 'AB', 'Canada', 'T5K 2N1', '+1 (780) 428-9482', '+1 (780) 428-3457', 'andrew@chinookcorp.com'); +INSERT INTO employees (last_name, first_name, title, reports_to, birth_date, hire_date, address, city, state, country, postal_code, phone, fax, email) VALUES ('Edwards', 'Nancy', 'Sales Manager', 1, '1958-12-08 00:00:00', '2002-05-01 00:00:00', '825 8 Ave SW', 'Calgary', 'AB', 'Canada', 'T2P 2T3', '+1 (403) 262-3443', '+1 (403) 262-3322', 'nancy@chinookcorp.com'); +INSERT INTO employees (last_name, first_name, title, reports_to, birth_date, hire_date, address, city, state, country, postal_code, phone, fax, email) VALUES ('Peacock', 'Jane', 'Sales Support Agent', 2, '1973-08-29 00:00:00', '2002-04-01 00:00:00', '1111 6 Ave SW', 'Calgary', 'AB', 'Canada', 'T2P 5M5', '+1 (403) 262-3443', '+1 (403) 262-6712', 'jane@chinookcorp.com'); +INSERT INTO employees (last_name, first_name, title, reports_to, birth_date, hire_date, address, city, state, country, postal_code, phone, fax, email) VALUES ('Park', 'Margaret', 'Sales Support Agent', 2, '1947-09-19 00:00:00', '2003-05-03 00:00:00', '683 10 Street SW', 'Calgary', 'AB', 'Canada', 'T2P 5G3', '+1 (403) 263-4423', '+1 (403) 263-4289', 'margaret@chinookcorp.com'); +INSERT INTO employees (last_name, first_name, title, reports_to, birth_date, hire_date, address, city, state, country, postal_code, phone, fax, email) VALUES ('Johnson', 'Steve', 'Sales Support Agent', 2, '1965-03-03 00:00:00', '2003-10-17 00:00:00', '7727B 41 Ave', 'Calgary', 'AB', 'Canada', 'T3B 1Y7', '1 (780) 836-9987', '1 (780) 836-9543', 'steve@chinookcorp.com'); +INSERT INTO employees (last_name, first_name, title, reports_to, birth_date, hire_date, address, city, state, country, postal_code, phone, fax, email) VALUES ('Mitchell', 'Michael', 'IT Manager', 1, '1973-07-01 00:00:00', '2003-10-17 00:00:00', '5827 Bowness Road NW', 'Calgary', 'AB', 'Canada', 'T3B 0C5', '+1 (403) 246-9887', '+1 (403) 246-9899', 'michael@chinookcorp.com'); +INSERT INTO employees (last_name, first_name, title, reports_to, birth_date, hire_date, address, city, state, country, postal_code, phone, fax, email) VALUES ('King', 'Robert', 'IT Staff', 6, '1970-05-29 00:00:00', '2004-01-02 00:00:00', '590 Columbia Boulevard West', 'Lethbridge', 'AB', 'Canada', 'T1K 5N8', '+1 (403) 456-9986', '+1 (403) 456-8485', 'robert@chinookcorp.com'); +INSERT INTO employees (last_name, first_name, title, reports_to, birth_date, hire_date, address, city, state, country, postal_code, phone, fax, email) VALUES ('Callahan', 'Laura', 'IT Staff', 6, '1968-01-09 00:00:00', '2004-03-04 00:00:00', '923 7 ST NW', 'Lethbridge', 'AB', 'Canada', 'T1H 1Y8', '+1 (403) 467-3351', '+1 (403) 467-8772', 'laura@chinookcorp.com'); + +INSERT INTO customers (first_name, last_name, company, address, city, state, country, postal_code, phone, fax, email, support_rep_id) VALUES ('Luís', 'Gonçalves', 'Embraer - Empresa Brasileira de Aeronáutica S.A.', 'Av. Brigadeiro Faria Lima, 2170', 'São José dos Campos', 'SP', 'Brazil', '12227-000', '+55 (12) 3923-5555', '+55 (12) 3923-5566', 'luisg@embraer.com.br', 3); +INSERT INTO customers (first_name, last_name, address, city, country, postal_code, phone, email, support_rep_id) VALUES ('Leonie', 'Köhler', 'Theodor-Heuss-Straße 34', 'Stuttgart', 'Germany', '70174', '+49 0711 2842222', 'leonekohler@surfeu.de', 5); +INSERT INTO customers (first_name, last_name, address, city, state, country, postal_code, phone, email, support_rep_id) VALUES ('François', 'Tremblay', '1498 rue Bélanger', 'Montréal', 'QC', 'Canada', 'H2G 1A7', '+1 (514) 721-4711', 'ftremblay@gmail.com', 3); +INSERT INTO customers (first_name, last_name, address, city, country, postal_code, phone, email, support_rep_id) VALUES ('Bjørn', 'Hansen', 'Ullevålsveien 14', 'Oslo', 'Norway', '0171', '+47 22 44 22 22', 'bjorn.hansen@yahoo.no', 4); +INSERT INTO customers (first_name, last_name, company, address, city, country, postal_code, phone, fax, email, support_rep_id) VALUES ('František', 'Wichterlová', 'JetBrains s.r.o.', 'Klanova 9/506', 'Prague', 'Czech Republic', '14700', '+420 2 4172 5555', '+420 2 4172 5555', 'frantisekw@jetbrains.com', 4); +INSERT INTO customers (first_name, last_name, address, city, country, postal_code, phone, email, support_rep_id) VALUES ('Helena', 'Holý', 'Rilská 3174/6', 'Prague', 'Czech Republic', '14300', '+420 2 4177 0449', 'hholy@gmail.com', 5); +INSERT INTO customers (first_name, last_name, address, city, country, postal_code, phone, email, support_rep_id) VALUES ('Astrid', 'Gruber', 'Rotenturmstraße 4, 1010 Innere Stadt', 'Vienne', 'Austria', '1010', '+43 01 5134505', 'astrid.gruber@apple.at', 5); +INSERT INTO customers (first_name, last_name, address, city, country, postal_code, phone, email, support_rep_id) VALUES ('Daan', 'Peeters', 'Grétrystraat 63', 'Brussels', 'Belgium', '1000', '+32 02 219 03 03', 'daan_peeters@apple.be', 4); +INSERT INTO customers (first_name, last_name, address, city, country, postal_code, phone, email, support_rep_id) VALUES ('Kara', 'Nielsen', 'Sønder Boulevard 51', 'Copenhagen', 'Denmark', '1720', '+453 3331 9991', 'kara.nielsen@jubii.dk', 4); +INSERT INTO customers (first_name, last_name, company, address, city, state, country, postal_code, phone, fax, email, support_rep_id) VALUES ('Eduardo', 'Martins', 'Woodstock Discos', 'Rua Dr. Falcão Filho, 155', 'São Paulo', 'SP', 'Brazil', '01007-010', '+55 (11) 3033-5446', '+55 (11) 3033-4564', 'eduardo@woodstock.com.br', 4); +INSERT INTO customers (first_name, last_name, company, address, city, state, country, postal_code, phone, fax, email, support_rep_id) VALUES ('Alexandre', 'Rocha', 'Banco do Brasil S.A.', 'Av. Paulista, 2022', 'São Paulo', 'SP', 'Brazil', '01310-200', '+55 (11) 3055-3278', '+55 (11) 3055-8131', 'alero@uol.com.br', 5); +INSERT INTO customers (first_name, last_name, company, address, city, state, country, postal_code, phone, fax, email, support_rep_id) VALUES ('Roberto', 'Almeida', 'Riotur', 'Praça Pio X, 119', 'Rio de Janeiro', 'RJ', 'Brazil', '20040-020', '+55 (21) 2271-7000', '+55 (21) 2271-7070', 'roberto.almeida@riotur.gov.br', 3); +INSERT INTO customers (first_name, last_name, address, city, state, country, postal_code, phone, fax, email, support_rep_id) VALUES ('Fernanda', 'Ramos', 'Qe 7 Bloco G', 'Brasília', 'DF', 'Brazil', '71020-677', '+55 (61) 3363-5547', '+55 (61) 3363-7855', 'fernadaramos4@uol.com.br', 4); +INSERT INTO customers (first_name, last_name, company, address, city, state, country, postal_code, phone, fax, email, support_rep_id) VALUES ('Mark', 'Philips', 'Telus', '8210 111 ST NW', 'Edmonton', 'AB', 'Canada', 'T6G 2C7', '+1 (780) 434-4554', '+1 (780) 434-5565', 'mphilips12@shaw.ca', 5); +INSERT INTO customers (first_name, last_name, company, address, city, state, country, postal_code, phone, fax, email, support_rep_id) VALUES ('Jennifer', 'Peterson', 'Rogers Canada', '700 W Pender Street', 'Vancouver', 'BC', 'Canada', 'V6C 1G8', '+1 (604) 688-2255', '+1 (604) 688-8756', 'jenniferp@rogers.ca', 3); +INSERT INTO customers (first_name, last_name, company, address, city, state, country, postal_code, phone, fax, email, support_rep_id) VALUES ('Frank', 'Harris', 'Google Inc.', '1600 Amphitheatre Parkway', 'Mountain View', 'CA', 'USA', '94043-1351', '+1 (650) 253-0000', '+1 (650) 253-0000', 'fharris@google.com', 4); +INSERT INTO customers (first_name, last_name, company, address, city, state, country, postal_code, phone, fax, email, support_rep_id) VALUES ('Jack', 'Smith', 'Microsoft Corporation', '1 Microsoft Way', 'Redmond', 'WA', 'USA', '98052-8300', '+1 (425) 882-8080', '+1 (425) 882-8081', 'jacksmith@microsoft.com', 5); +INSERT INTO customers (first_name, last_name, address, city, state, country, postal_code, phone, fax, email, support_rep_id) VALUES ('Michelle', 'Brooks', '627 Broadway', 'New York', 'NY', 'USA', '10012-2612', '+1 (212) 221-3546', '+1 (212) 221-4679', 'michelleb@aol.com', 3); +INSERT INTO customers (first_name, last_name, company, address, city, state, country, postal_code, phone, fax, email, support_rep_id) VALUES ('Tim', 'Goyer', 'Apple Inc.', '1 Infinite Loop', 'Cupertino', 'CA', 'USA', '95014', '+1 (408) 996-1010', '+1 (408) 996-1011', 'tgoyer@apple.com', 3); +INSERT INTO customers (first_name, last_name, address, city, state, country, postal_code, phone, email, support_rep_id) VALUES ('Dan', 'Miller', '541 Del Medio Avenue', 'Mountain View', 'CA', 'USA', '94040-111', '+1 (650) 644-3358', 'dmiller@comcast.com', 4); +INSERT INTO customers (first_name, last_name, address, city, state, country, postal_code, phone, email, support_rep_id) VALUES ('Kathy', 'Chase', '801 W 4th Street', 'Reno', 'NV', 'USA', '89503', '+1 (775) 223-7665', 'kachase@hotmail.com', 5); +INSERT INTO customers (first_name, last_name, address, city, state, country, postal_code, phone, email, support_rep_id) VALUES ('Heather', 'Leacock', '120 S Orange Ave', 'Orlando', 'FL', 'USA', '32801', '+1 (407) 999-7788', 'hleacock@gmail.com', 4); +INSERT INTO customers (first_name, last_name, address, city, state, country, postal_code, phone, email, support_rep_id) VALUES ('John', 'Gordon', '69 Salem Street', 'Boston', 'MA', 'USA', '2113', '+1 (617) 522-1333', 'johngordon22@yahoo.com', 4); +INSERT INTO customers (first_name, last_name, address, city, state, country, postal_code, phone, email, support_rep_id) VALUES ('Frank', 'Ralston', '162 E Superior Street', 'Chicago', 'IL', 'USA', '60611', '+1 (312) 332-3232', 'fralston@gmail.com', 3); +INSERT INTO customers (first_name, last_name, address, city, state, country, postal_code, phone, email, support_rep_id) VALUES ('Victor', 'Stevens', '319 N. Frances Street', 'Madison', 'WI', 'USA', '53703', '+1 (608) 257-0597', 'vstevens@yahoo.com', 5); +INSERT INTO customers (first_name, last_name, address, city, state, country, postal_code, phone, email, support_rep_id) VALUES ('Richard', 'Cunningham', '2211 W Berry Street', 'Fort Worth', 'TX', 'USA', '76110', '+1 (817) 924-7272', 'ricunningham@hotmail.com', 4); +INSERT INTO customers (first_name, last_name, address, city, state, country, postal_code, phone, email, support_rep_id) VALUES ('Patrick', 'Gray', '1033 N Park Ave', 'Tucson', 'AZ', 'USA', '85719', '+1 (520) 622-4200', 'patrick.gray@aol.com', 4); +INSERT INTO customers (first_name, last_name, address, city, state, country, postal_code, phone, email, support_rep_id) VALUES ('Julia', 'Barnett', '302 S 700 E', 'Salt Lake City', 'UT', 'USA', '84102', '+1 (801) 531-7272', 'jubarnett@gmail.com', 5); +INSERT INTO customers (first_name, last_name, address, city, state, country, postal_code, phone, email, support_rep_id) VALUES ('Robert', 'Brown', '796 Dundas Street West', 'Toronto', 'ON', 'Canada', 'M6J 1V1', '+1 (416) 363-8888', 'robbrown@shaw.ca', 3); +INSERT INTO customers (first_name, last_name, address, city, state, country, postal_code, phone, email, support_rep_id) VALUES ('Edward', 'Francis', '230 Elgin Street', 'Ottawa', 'ON', 'Canada', 'K2P 1L7', '+1 (613) 234-3322', 'edfrancis@yachoo.ca', 3); +INSERT INTO customers (first_name, last_name, address, city, state, country, postal_code, phone, email, support_rep_id) VALUES ('Martha', 'Silk', '194A Chain Lake Drive', 'Halifax', 'NS', 'Canada', 'B3S 1C5', '+1 (902) 450-0450', 'marthasilk@gmail.com', 5); +INSERT INTO customers (first_name, last_name, address, city, state, country, postal_code, phone, email, support_rep_id) VALUES ('Aaron', 'Mitchell', '696 Osborne Street', 'Winnipeg', 'MB', 'Canada', 'R3L 2B9', '+1 (204) 452-6452', 'aaronmitchell@yahoo.ca', 4); +INSERT INTO customers (first_name, last_name, address, city, state, country, postal_code, phone, email, support_rep_id) VALUES ('Ellie', 'Sullivan', '5112 48 Street', 'Yellowknife', 'NT', 'Canada', 'X1A 1N6', '+1 (867) 920-2233', 'ellie.sullivan@shaw.ca', 3); +INSERT INTO customers (first_name, last_name, address, city, country, phone, email, support_rep_id) VALUES ('João', 'Fernandes', 'Rua da Assunção 53', 'Lisbon', 'Portugal', '+351 (213) 466-111', 'jfernandes@yahoo.pt', 4); +INSERT INTO customers (first_name, last_name, address, city, country, phone, email, support_rep_id) VALUES ('Madalena', 'Sampaio', 'Rua dos Campeões Europeus de Viena, 4350', 'Porto', 'Portugal', '+351 (225) 022-448', 'masampaio@sapo.pt', 4); +INSERT INTO customers (first_name, last_name, address, city, country, postal_code, phone, email, support_rep_id) VALUES ('Hannah', 'Schneider', 'Tauentzienstraße 8', 'Berlin', 'Germany', '10789', '+49 030 26550280', 'hannah.schneider@yahoo.de', 5); +INSERT INTO customers (first_name, last_name, address, city, country, postal_code, phone, email, support_rep_id) VALUES ('Fynn', 'Zimmermann', 'Berger Straße 10', 'Frankfurt', 'Germany', '60316', '+49 069 40598889', 'fzimmermann@yahoo.de', 3); +INSERT INTO customers (first_name, last_name, address, city, country, postal_code, phone, email, support_rep_id) VALUES ('Niklas', 'Schröder', 'Barbarossastraße 19', 'Berlin', 'Germany', '10779', '+49 030 2141444', 'nschroder@surfeu.de', 3); +INSERT INTO customers (first_name, last_name, address, city, country, postal_code, phone, email, support_rep_id) VALUES ('Camille', 'Bernard', '4, Rue Milton', 'Paris', 'France', '75009', '+33 01 49 70 65 65', 'camille.bernard@yahoo.fr', 4); +INSERT INTO customers (first_name, last_name, address, city, country, postal_code, phone, email, support_rep_id) VALUES ('Dominique', 'Lefebvre', '8, Rue Hanovre', 'Paris', 'France', '75002', '+33 01 47 42 71 71', 'dominiquelefebvre@gmail.com', 4); +INSERT INTO customers (first_name, last_name, address, city, country, postal_code, phone, email, support_rep_id) VALUES ('Marc', 'Dubois', '11, Place Bellecour', 'Lyon', 'France', '69002', '+33 04 78 30 30 30', 'marc.dubois@hotmail.com', 5); +INSERT INTO customers (first_name, last_name, address, city, country, postal_code, phone, email, support_rep_id) VALUES ('Wyatt', 'Girard', '9, Place Louis Barthou', 'Bordeaux', 'France', '33000', '+33 05 56 96 96 96', 'wyatt.girard@yahoo.fr', 3); +INSERT INTO customers (first_name, last_name, address, city, country, postal_code, phone, email, support_rep_id) VALUES ('Isabelle', 'Mercier', '68, Rue Jouvence', 'Dijon', 'France', '21000', '+33 03 80 73 66 99', 'isabelle_mercier@apple.fr', 3); +INSERT INTO customers (first_name, last_name, address, city, country, postal_code, phone, email, support_rep_id) VALUES ('Terhi', 'Hämäläinen', 'Porthaninkatu 9', 'Helsinki', 'Finland', '00530', '+358 09 870 2000', 'terhi.hamalainen@apple.fi', 3); +INSERT INTO customers (first_name, last_name, address, city, country, postal_code, email, support_rep_id) VALUES ('Ladislav', 'Kovács', 'Erzsébet krt. 58.', 'Budapest', 'Hungary', 'H-1073', 'ladislav_kovacs@apple.hu', 3); +INSERT INTO customers (first_name, last_name, address, city, state, country, phone, email, support_rep_id) VALUES ('Hugh', 'O''Reilly', '3 Chatham Street', 'Dublin', 'Dublin', 'Ireland', '+353 01 6792424', 'hughoreilly@apple.ie', 3); +INSERT INTO customers (first_name, last_name, address, city, state, country, postal_code, phone, email, support_rep_id) VALUES ('Lucas', 'Mancini', 'Via Degli Scipioni, 43', 'Rome', 'RM', 'Italy', '00192', '+39 06 39733434', 'lucas.mancini@yahoo.it', 5); +INSERT INTO customers (first_name, last_name, address, city, state, country, postal_code, phone, email, support_rep_id) VALUES ('Johannes', 'Van der Berg', 'Lijnbaansgracht 120bg', 'Amsterdam', 'VV', 'Netherlands', '1016', '+31 020 6223130', 'johavanderberg@yahoo.nl', 5); +INSERT INTO customers (first_name, last_name, address, city, country, postal_code, phone, email, support_rep_id) VALUES ('Stanisław', 'Wójcik', 'Ordynacka 10', 'Warsaw', 'Poland', '00-358', '+48 22 828 37 39', 'stanisław.wójcik@wp.pl', 4); +INSERT INTO customers (first_name, last_name, address, city, country, postal_code, phone, email, support_rep_id) VALUES ('Enrique', 'Muñoz', 'C/ San Bernardo 85', 'Madrid', 'Spain', '28015', '+34 914 454 454', 'enrique_munoz@yahoo.es', 5); +INSERT INTO customers (first_name, last_name, address, city, country, postal_code, phone, email, support_rep_id) VALUES ('Joakim', 'Johansson', 'Celsiusg. 9', 'Stockholm', 'Sweden', '11230', '+46 08-651 52 52', 'joakim.johansson@yahoo.se', 5); +INSERT INTO customers (first_name, last_name, address, city, country, postal_code, phone, email, support_rep_id) VALUES ('Emma', 'Jones', '202 Hoxton Street', 'London', 'United Kingdom', 'N1 5LH', '+44 020 7707 0707', 'emma_jones@hotmail.com', 3); +INSERT INTO customers (first_name, last_name, address, city, country, postal_code, phone, email, support_rep_id) VALUES ('Phil', 'Hughes', '113 Lupus St', 'London', 'United Kingdom', 'SW1V 3EN', '+44 020 7976 5722', 'phil.hughes@gmail.com', 3); +INSERT INTO customers (first_name, last_name, address, city, country, postal_code, phone, email, support_rep_id) VALUES ('Steve', 'Murray', '110 Raeburn Pl', 'Edinburgh ', 'United Kingdom', 'EH4 1HH', '+44 0131 315 3300', 'steve.murray@yahoo.uk', 5); +INSERT INTO customers (first_name, last_name, address, city, state, country, postal_code, phone, email, support_rep_id) VALUES ('Mark', 'Taylor', '421 Bourke Street', 'Sidney', 'NSW', 'Australia', '2010', '+61 (02) 9332 3633', 'mark.taylor@yahoo.au', 4); +INSERT INTO customers (first_name, last_name, address, city, country, postal_code, phone, email, support_rep_id) VALUES ('Diego', 'Gutiérrez', '307 Macacha Güemes', 'Buenos Aires', 'Argentina', '1106', '+54 (0)11 4311 4333', 'diego.gutierrez@yahoo.ar', 4); +INSERT INTO customers (first_name, last_name, address, city, country, phone, email, support_rep_id) VALUES ('Luis', 'Rojas', 'Calle Lira, 198', 'Santiago', 'Chile', '+56 (0)2 635 4444', 'luisrojas@yahoo.cl', 5); +INSERT INTO customers (first_name, last_name, address, city, country, postal_code, phone, email, support_rep_id) VALUES ('Manoj', 'Pareek', '12,Community Centre', 'Delhi', 'India', '110017', '+91 0124 39883988', 'manoj.pareek@rediff.com', 3); +INSERT INTO customers (first_name, last_name, address, city, country, postal_code, phone, email, support_rep_id) VALUES ('Puja', 'Srivastava', '3,Raj Bhavan Road', 'Bangalore', 'India', '560001', '+91 080 22289999', 'puja_srivastava@yahoo.in', 3); + +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_country, billing_postal_code, total) VALUES (2, '2007-01-01 00:00:00', 'Theodor-Heuss-Straße 34', 'Stuttgart', 'Germany', '70174', 1.98); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_country, billing_postal_code, total) VALUES (4, '2007-01-02 00:00:00', 'Ullevålsveien 14', 'Oslo', 'Norway', '0171', 3.96); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_country, billing_postal_code, total) VALUES (8, '2007-01-03 00:00:00', 'Grétrystraat 63', 'Brussels', 'Belgium', '1000', 5.94); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_state, billing_country, billing_postal_code, total) VALUES (14, '2007-01-06 00:00:00', '8210 111 ST NW', 'Edmonton', 'AB', 'Canada', 'T6G 2C7', 8.91); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_state, billing_country, billing_postal_code, total) VALUES (23, '2007-01-11 00:00:00', '69 Salem Street', 'Boston', 'MA', 'USA', '2113', 13.86); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_country, billing_postal_code, total) VALUES (37, '2007-01-19 00:00:00', 'Berger Straße 10', 'Frankfurt', 'Germany', '60316', 0.99); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_country, billing_postal_code, total) VALUES (38, '2007-02-01 00:00:00', 'Barbarossastraße 19', 'Berlin', 'Germany', '10779', 1.98); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_country, billing_postal_code, total) VALUES (40, '2007-02-01 00:00:00', '8, Rue Hanovre', 'Paris', 'France', '75002', 1.98); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_country, billing_postal_code, total) VALUES (42, '2007-02-02 00:00:00', '9, Place Louis Barthou', 'Bordeaux', 'France', '33000', 3.96); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_state, billing_country, total) VALUES (46, '2007-02-03 00:00:00', '3 Chatham Street', 'Dublin', 'Dublin', 'Ireland', 5.94); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_country, billing_postal_code, total) VALUES (52, '2007-02-06 00:00:00', '202 Hoxton Street', 'London', 'United Kingdom', 'N1 5LH', 8.91); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_country, billing_postal_code, total) VALUES (2, '2007-02-11 00:00:00', 'Theodor-Heuss-Straße 34', 'Stuttgart', 'Germany', '70174', 13.86); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_state, billing_country, billing_postal_code, total) VALUES (16, '2007-02-19 00:00:00', '1600 Amphitheatre Parkway', 'Mountain View', 'CA', 'USA', '94043-1351', 0.99); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_state, billing_country, billing_postal_code, total) VALUES (17, '2007-03-04 00:00:00', '1 Microsoft Way', 'Redmond', 'WA', 'USA', '98052-8300', 1.98); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_state, billing_country, billing_postal_code, total) VALUES (19, '2007-03-04 00:00:00', '1 Infinite Loop', 'Cupertino', 'CA', 'USA', '95014', 1.98); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_state, billing_country, billing_postal_code, total) VALUES (21, '2007-03-05 00:00:00', '801 W 4th Street', 'Reno', 'NV', 'USA', '89503', 3.96); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_state, billing_country, billing_postal_code, total) VALUES (25, '2007-03-06 00:00:00', '319 N. Frances Street', 'Madison', 'WI', 'USA', '53703', 5.94); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_state, billing_country, billing_postal_code, total) VALUES (31, '2007-03-09 00:00:00', '194A Chain Lake Drive', 'Halifax', 'NS', 'Canada', 'B3S 1C5', 8.91); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_country, billing_postal_code, total) VALUES (40, '2007-03-14 00:00:00', '8, Rue Hanovre', 'Paris', 'France', '75002', 13.86); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_country, billing_postal_code, total) VALUES (54, '2007-03-22 00:00:00', '110 Raeburn Pl', 'Edinburgh ', 'United Kingdom', 'EH4 1HH', 0.99); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_state, billing_country, billing_postal_code, total) VALUES (55, '2007-04-04 00:00:00', '421 Bourke Street', 'Sidney', 'NSW', 'Australia', '2010', 1.98); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_country, total) VALUES (57, '2007-04-04 00:00:00', 'Calle Lira, 198', 'Santiago', 'Chile', 1.98); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_country, billing_postal_code, total) VALUES (59, '2007-04-05 00:00:00', '3,Raj Bhavan Road', 'Bangalore', 'India', '560001', 3.96); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_country, billing_postal_code, total) VALUES (4, '2007-04-06 00:00:00', 'Ullevålsveien 14', 'Oslo', 'Norway', '0171', 5.94); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_state, billing_country, billing_postal_code, total) VALUES (10, '2007-04-09 00:00:00', 'Rua Dr. Falcão Filho, 155', 'São Paulo', 'SP', 'Brazil', '01007-010', 8.91); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_state, billing_country, billing_postal_code, total) VALUES (19, '2007-04-14 00:00:00', '1 Infinite Loop', 'Cupertino', 'CA', 'USA', '95014', 13.86); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_state, billing_country, billing_postal_code, total) VALUES (33, '2007-04-22 00:00:00', '5112 48 Street', 'Yellowknife', 'NT', 'Canada', 'X1A 1N6', 0.99); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_country, total) VALUES (34, '2007-05-05 00:00:00', 'Rua da Assunção 53', 'Lisbon', 'Portugal', 1.98); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_country, billing_postal_code, total) VALUES (36, '2007-05-05 00:00:00', 'Tauentzienstraße 8', 'Berlin', 'Germany', '10789', 1.98); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_country, billing_postal_code, total) VALUES (38, '2007-05-06 00:00:00', 'Barbarossastraße 19', 'Berlin', 'Germany', '10779', 3.96); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_country, billing_postal_code, total) VALUES (42, '2007-05-07 00:00:00', '9, Place Louis Barthou', 'Bordeaux', 'France', '33000', 5.94); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_state, billing_country, billing_postal_code, total) VALUES (48, '2007-05-10 00:00:00', 'Lijnbaansgracht 120bg', 'Amsterdam', 'VV', 'Netherlands', '1016', 8.91); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_country, total) VALUES (57, '2007-05-15 00:00:00', 'Calle Lira, 198', 'Santiago', 'Chile', 13.86); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_state, billing_country, billing_postal_code, total) VALUES (12, '2007-05-23 00:00:00', 'Praça Pio X, 119', 'Rio de Janeiro', 'RJ', 'Brazil', '20040-020', 0.99); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_state, billing_country, billing_postal_code, total) VALUES (13, '2007-06-05 00:00:00', 'Qe 7 Bloco G', 'Brasília', 'DF', 'Brazil', '71020-677', 1.98); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_state, billing_country, billing_postal_code, total) VALUES (15, '2007-06-05 00:00:00', '700 W Pender Street', 'Vancouver', 'BC', 'Canada', 'V6C 1G8', 1.98); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_state, billing_country, billing_postal_code, total) VALUES (17, '2007-06-06 00:00:00', '1 Microsoft Way', 'Redmond', 'WA', 'USA', '98052-8300', 3.96); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_state, billing_country, billing_postal_code, total) VALUES (21, '2007-06-07 00:00:00', '801 W 4th Street', 'Reno', 'NV', 'USA', '89503', 5.94); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_state, billing_country, billing_postal_code, total) VALUES (27, '2007-06-10 00:00:00', '1033 N Park Ave', 'Tucson', 'AZ', 'USA', '85719', 8.91); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_country, billing_postal_code, total) VALUES (36, '2007-06-15 00:00:00', 'Tauentzienstraße 8', 'Berlin', 'Germany', '10789', 13.86); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_country, billing_postal_code, total) VALUES (50, '2007-06-23 00:00:00', 'C/ San Bernardo 85', 'Madrid', 'Spain', '28015', 0.99); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_country, billing_postal_code, total) VALUES (51, '2007-07-06 00:00:00', 'Celsiusg. 9', 'Stockholm', 'Sweden', '11230', 1.98); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_country, billing_postal_code, total) VALUES (53, '2007-07-06 00:00:00', '113 Lupus St', 'London', 'United Kingdom', 'SW1V 3EN', 1.98); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_state, billing_country, billing_postal_code, total) VALUES (55, '2007-07-07 00:00:00', '421 Bourke Street', 'Sidney', 'NSW', 'Australia', '2010', 3.96); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_country, billing_postal_code, total) VALUES (59, '2007-07-08 00:00:00', '3,Raj Bhavan Road', 'Bangalore', 'India', '560001', 5.94); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_country, billing_postal_code, total) VALUES (6, '2007-07-11 00:00:00', 'Rilská 3174/6', 'Prague', 'Czech Republic', '14300', 8.91); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_state, billing_country, billing_postal_code, total) VALUES (15, '2007-07-16 00:00:00', '700 W Pender Street', 'Vancouver', 'BC', 'Canada', 'V6C 1G8', 13.86); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_state, billing_country, billing_postal_code, total) VALUES (29, '2007-07-24 00:00:00', '796 Dundas Street West', 'Toronto', 'ON', 'Canada', 'M6J 1V1', 0.99); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_state, billing_country, billing_postal_code, total) VALUES (30, '2007-08-06 00:00:00', '230 Elgin Street', 'Ottawa', 'ON', 'Canada', 'K2P 1L7', 1.98); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_state, billing_country, billing_postal_code, total) VALUES (32, '2007-08-06 00:00:00', '696 Osborne Street', 'Winnipeg', 'MB', 'Canada', 'R3L 2B9', 1.98); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_country, total) VALUES (34, '2007-08-07 00:00:00', 'Rua da Assunção 53', 'Lisbon', 'Portugal', 3.96); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_country, billing_postal_code, total) VALUES (38, '2007-08-08 00:00:00', 'Barbarossastraße 19', 'Berlin', 'Germany', '10779', 5.94); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_country, billing_postal_code, total) VALUES (44, '2007-08-11 00:00:00', 'Porthaninkatu 9', 'Helsinki', 'Finland', '00530', 8.91); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_country, billing_postal_code, total) VALUES (53, '2007-08-16 00:00:00', '113 Lupus St', 'London', 'United Kingdom', 'SW1V 3EN', 13.86); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_country, billing_postal_code, total) VALUES (8, '2007-08-24 00:00:00', 'Grétrystraat 63', 'Brussels', 'Belgium', '1000', 0.99); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_country, billing_postal_code, total) VALUES (9, '2007-09-06 00:00:00', 'Sønder Boulevard 51', 'Copenhagen', 'Denmark', '1720', 1.98); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_state, billing_country, billing_postal_code, total) VALUES (11, '2007-09-06 00:00:00', 'Av. Paulista, 2022', 'São Paulo', 'SP', 'Brazil', '01310-200', 1.98); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_state, billing_country, billing_postal_code, total) VALUES (13, '2007-09-07 00:00:00', 'Qe 7 Bloco G', 'Brasília', 'DF', 'Brazil', '71020-677', 3.96); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_state, billing_country, billing_postal_code, total) VALUES (17, '2007-09-08 00:00:00', '1 Microsoft Way', 'Redmond', 'WA', 'USA', '98052-8300', 5.94); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_state, billing_country, billing_postal_code, total) VALUES (23, '2007-09-11 00:00:00', '69 Salem Street', 'Boston', 'MA', 'USA', '2113', 8.91); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_state, billing_country, billing_postal_code, total) VALUES (32, '2007-09-16 00:00:00', '696 Osborne Street', 'Winnipeg', 'MB', 'Canada', 'R3L 2B9', 13.86); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_state, billing_country, total) VALUES (46, '2007-09-24 00:00:00', '3 Chatham Street', 'Dublin', 'Dublin', 'Ireland', 0.99); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_state, billing_country, billing_postal_code, total) VALUES (47, '2007-10-07 00:00:00', 'Via Degli Scipioni, 43', 'Rome', 'RM', 'Italy', '00192', 1.98); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_country, billing_postal_code, total) VALUES (49, '2007-10-07 00:00:00', 'Ordynacka 10', 'Warsaw', 'Poland', '00-358', 1.98); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_country, billing_postal_code, total) VALUES (51, '2007-10-08 00:00:00', 'Celsiusg. 9', 'Stockholm', 'Sweden', '11230', 3.96); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_state, billing_country, billing_postal_code, total) VALUES (55, '2007-10-09 00:00:00', '421 Bourke Street', 'Sidney', 'NSW', 'Australia', '2010', 5.94); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_country, billing_postal_code, total) VALUES (2, '2007-10-12 00:00:00', 'Theodor-Heuss-Straße 34', 'Stuttgart', 'Germany', '70174', 8.91); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_state, billing_country, billing_postal_code, total) VALUES (11, '2007-10-17 00:00:00', 'Av. Paulista, 2022', 'São Paulo', 'SP', 'Brazil', '01310-200', 13.86); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_state, billing_country, billing_postal_code, total) VALUES (25, '2007-10-25 00:00:00', '319 N. Frances Street', 'Madison', 'WI', 'USA', '53703', 0.99); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_state, billing_country, billing_postal_code, total) VALUES (26, '2007-11-07 00:00:00', '2211 W Berry Street', 'Fort Worth', 'TX', 'USA', '76110', 1.98); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_state, billing_country, billing_postal_code, total) VALUES (28, '2007-11-07 00:00:00', '302 S 700 E', 'Salt Lake City', 'UT', 'USA', '84102', 1.98); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_state, billing_country, billing_postal_code, total) VALUES (30, '2007-11-08 00:00:00', '230 Elgin Street', 'Ottawa', 'ON', 'Canada', 'K2P 1L7', 3.96); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_country, total) VALUES (34, '2007-11-09 00:00:00', 'Rua da Assunção 53', 'Lisbon', 'Portugal', 5.94); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_country, billing_postal_code, total) VALUES (40, '2007-11-12 00:00:00', '8, Rue Hanovre', 'Paris', 'France', '75002', 8.91); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_country, billing_postal_code, total) VALUES (49, '2007-11-17 00:00:00', 'Ordynacka 10', 'Warsaw', 'Poland', '00-358', 13.86); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_country, billing_postal_code, total) VALUES (4, '2007-11-25 00:00:00', 'Ullevålsveien 14', 'Oslo', 'Norway', '0171', 0.99); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_country, billing_postal_code, total) VALUES (5, '2007-12-08 00:00:00', 'Klanova 9/506', 'Prague', 'Czech Republic', '14700', 1.98); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_country, billing_postal_code, total) VALUES (7, '2007-12-08 00:00:00', 'Rotenturmstraße 4, 1010 Innere Stadt', 'Vienne', 'Austria', '1010', 1.98); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_country, billing_postal_code, total) VALUES (9, '2007-12-09 00:00:00', 'Sønder Boulevard 51', 'Copenhagen', 'Denmark', '1720', 3.96); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_state, billing_country, billing_postal_code, total) VALUES (13, '2007-12-10 00:00:00', 'Qe 7 Bloco G', 'Brasília', 'DF', 'Brazil', '71020-677', 5.94); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_state, billing_country, billing_postal_code, total) VALUES (19, '2007-12-13 00:00:00', '1 Infinite Loop', 'Cupertino', 'CA', 'USA', '95014', 8.91); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_state, billing_country, billing_postal_code, total) VALUES (28, '2007-12-18 00:00:00', '302 S 700 E', 'Salt Lake City', 'UT', 'USA', '84102', 13.86); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_country, billing_postal_code, total) VALUES (42, '2007-12-26 00:00:00', '9, Place Louis Barthou', 'Bordeaux', 'France', '33000', 0.99); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_country, billing_postal_code, total) VALUES (43, '2008-01-08 00:00:00', '68, Rue Jouvence', 'Dijon', 'France', '21000', 1.98); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_country, billing_postal_code, total) VALUES (45, '2008-01-08 00:00:00', 'Erzsébet krt. 58.', 'Budapest', 'Hungary', 'H-1073', 1.98); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_state, billing_country, billing_postal_code, total) VALUES (47, '2008-01-09 00:00:00', 'Via Degli Scipioni, 43', 'Rome', 'RM', 'Italy', '00192', 3.96); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_country, billing_postal_code, total) VALUES (51, '2008-01-10 00:00:00', 'Celsiusg. 9', 'Stockholm', 'Sweden', '11230', 6.94); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_country, total) VALUES (57, '2008-01-13 00:00:00', 'Calle Lira, 198', 'Santiago', 'Chile', 17.91); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_country, billing_postal_code, total) VALUES (7, '2008-01-18 00:00:00', 'Rotenturmstraße 4, 1010 Innere Stadt', 'Vienne', 'Austria', '1010', 18.86); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_state, billing_country, billing_postal_code, total) VALUES (21, '2008-01-26 00:00:00', '801 W 4th Street', 'Reno', 'NV', 'USA', '89503', 0.99); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_state, billing_country, billing_postal_code, total) VALUES (22, '2008-02-08 00:00:00', '120 S Orange Ave', 'Orlando', 'FL', 'USA', '32801', 1.98); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_state, billing_country, billing_postal_code, total) VALUES (24, '2008-02-08 00:00:00', '162 E Superior Street', 'Chicago', 'IL', 'USA', '60611', 1.98); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_state, billing_country, billing_postal_code, total) VALUES (26, '2008-02-09 00:00:00', '2211 W Berry Street', 'Fort Worth', 'TX', 'USA', '76110', 3.96); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_state, billing_country, billing_postal_code, total) VALUES (30, '2008-02-10 00:00:00', '230 Elgin Street', 'Ottawa', 'ON', 'Canada', 'K2P 1L7', 5.94); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_country, billing_postal_code, total) VALUES (36, '2008-02-13 00:00:00', 'Tauentzienstraße 8', 'Berlin', 'Germany', '10789', 8.91); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_country, billing_postal_code, total) VALUES (45, '2008-02-18 00:00:00', 'Erzsébet krt. 58.', 'Budapest', 'Hungary', 'H-1073', 21.86); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_country, billing_postal_code, total) VALUES (59, '2008-02-26 00:00:00', '3,Raj Bhavan Road', 'Bangalore', 'India', '560001', 1.99); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_state, billing_country, billing_postal_code, total) VALUES (1, '2008-03-10 00:00:00', 'Av. Brigadeiro Faria Lima, 2170', 'São José dos Campos', 'SP', 'Brazil', '12227-000', 3.98); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_state, billing_country, billing_postal_code, total) VALUES (3, '2008-03-10 00:00:00', '1498 rue Bélanger', 'Montréal', 'QC', 'Canada', 'H2G 1A7', 3.98); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_country, billing_postal_code, total) VALUES (5, '2008-03-11 00:00:00', 'Klanova 9/506', 'Prague', 'Czech Republic', '14700', 3.96); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_country, billing_postal_code, total) VALUES (9, '2008-03-12 00:00:00', 'Sønder Boulevard 51', 'Copenhagen', 'Denmark', '1720', 5.94); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_state, billing_country, billing_postal_code, total) VALUES (15, '2008-03-15 00:00:00', '700 W Pender Street', 'Vancouver', 'BC', 'Canada', 'V6C 1G8', 9.91); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_state, billing_country, billing_postal_code, total) VALUES (24, '2008-03-20 00:00:00', '162 E Superior Street', 'Chicago', 'IL', 'USA', '60611', 15.86); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_country, billing_postal_code, total) VALUES (38, '2008-03-28 00:00:00', 'Barbarossastraße 19', 'Berlin', 'Germany', '10779', 0.99); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_country, billing_postal_code, total) VALUES (39, '2008-04-10 00:00:00', '4, Rue Milton', 'Paris', 'France', '75009', 1.98); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_country, billing_postal_code, total) VALUES (41, '2008-04-10 00:00:00', '11, Place Bellecour', 'Lyon', 'France', '69002', 1.98); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_country, billing_postal_code, total) VALUES (43, '2008-04-11 00:00:00', '68, Rue Jouvence', 'Dijon', 'France', '21000', 3.96); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_state, billing_country, billing_postal_code, total) VALUES (47, '2008-04-12 00:00:00', 'Via Degli Scipioni, 43', 'Rome', 'RM', 'Italy', '00192', 5.94); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_country, billing_postal_code, total) VALUES (53, '2008-04-15 00:00:00', '113 Lupus St', 'London', 'United Kingdom', 'SW1V 3EN', 8.91); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_state, billing_country, billing_postal_code, total) VALUES (3, '2008-04-20 00:00:00', '1498 rue Bélanger', 'Montréal', 'QC', 'Canada', 'H2G 1A7', 13.86); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_state, billing_country, billing_postal_code, total) VALUES (17, '2008-04-28 00:00:00', '1 Microsoft Way', 'Redmond', 'WA', 'USA', '98052-8300', 0.99); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_state, billing_country, billing_postal_code, total) VALUES (18, '2008-05-11 00:00:00', '627 Broadway', 'New York', 'NY', 'USA', '10012-2612', 1.98); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_state, billing_country, billing_postal_code, total) VALUES (20, '2008-05-11 00:00:00', '541 Del Medio Avenue', 'Mountain View', 'CA', 'USA', '94040-111', 1.98); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_state, billing_country, billing_postal_code, total) VALUES (22, '2008-05-12 00:00:00', '120 S Orange Ave', 'Orlando', 'FL', 'USA', '32801', 3.96); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_state, billing_country, billing_postal_code, total) VALUES (26, '2008-05-13 00:00:00', '2211 W Berry Street', 'Fort Worth', 'TX', 'USA', '76110', 5.94); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_state, billing_country, billing_postal_code, total) VALUES (32, '2008-05-16 00:00:00', '696 Osborne Street', 'Winnipeg', 'MB', 'Canada', 'R3L 2B9', 8.91); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_country, billing_postal_code, total) VALUES (41, '2008-05-21 00:00:00', '11, Place Bellecour', 'Lyon', 'France', '69002', 13.86); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_state, billing_country, billing_postal_code, total) VALUES (55, '2008-05-29 00:00:00', '421 Bourke Street', 'Sidney', 'NSW', 'Australia', '2010', 0.99); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_country, billing_postal_code, total) VALUES (56, '2008-06-11 00:00:00', '307 Macacha Güemes', 'Buenos Aires', 'Argentina', '1106', 1.98); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_country, billing_postal_code, total) VALUES (58, '2008-06-11 00:00:00', '12,Community Centre', 'Delhi', 'India', '110017', 1.98); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_state, billing_country, billing_postal_code, total) VALUES (1, '2008-06-12 00:00:00', 'Av. Brigadeiro Faria Lima, 2170', 'São José dos Campos', 'SP', 'Brazil', '12227-000', 3.96); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_country, billing_postal_code, total) VALUES (5, '2008-06-13 00:00:00', 'Klanova 9/506', 'Prague', 'Czech Republic', '14700', 5.94); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_state, billing_country, billing_postal_code, total) VALUES (11, '2008-06-16 00:00:00', 'Av. Paulista, 2022', 'São Paulo', 'SP', 'Brazil', '01310-200', 8.91); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_state, billing_country, billing_postal_code, total) VALUES (20, '2008-06-21 00:00:00', '541 Del Medio Avenue', 'Mountain View', 'CA', 'USA', '94040-111', 13.86); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_country, total) VALUES (34, '2008-06-29 00:00:00', 'Rua da Assunção 53', 'Lisbon', 'Portugal', 0.99); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_country, total) VALUES (35, '2008-07-12 00:00:00', 'Rua dos Campeões Europeus de Viena, 4350', 'Porto', 'Portugal', 1.98); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_country, billing_postal_code, total) VALUES (37, '2008-07-12 00:00:00', 'Berger Straße 10', 'Frankfurt', 'Germany', '60316', 1.98); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_country, billing_postal_code, total) VALUES (39, '2008-07-13 00:00:00', '4, Rue Milton', 'Paris', 'France', '75009', 3.96); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_country, billing_postal_code, total) VALUES (43, '2008-07-14 00:00:00', '68, Rue Jouvence', 'Dijon', 'France', '21000', 5.94); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_country, billing_postal_code, total) VALUES (49, '2008-07-17 00:00:00', 'Ordynacka 10', 'Warsaw', 'Poland', '00-358', 8.91); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_country, billing_postal_code, total) VALUES (58, '2008-07-22 00:00:00', '12,Community Centre', 'Delhi', 'India', '110017', 13.86); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_state, billing_country, billing_postal_code, total) VALUES (13, '2008-07-30 00:00:00', 'Qe 7 Bloco G', 'Brasília', 'DF', 'Brazil', '71020-677', 0.99); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_state, billing_country, billing_postal_code, total) VALUES (14, '2008-08-12 00:00:00', '8210 111 ST NW', 'Edmonton', 'AB', 'Canada', 'T6G 2C7', 1.98); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_state, billing_country, billing_postal_code, total) VALUES (16, '2008-08-12 00:00:00', '1600 Amphitheatre Parkway', 'Mountain View', 'CA', 'USA', '94043-1351', 1.98); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_state, billing_country, billing_postal_code, total) VALUES (18, '2008-08-13 00:00:00', '627 Broadway', 'New York', 'NY', 'USA', '10012-2612', 3.96); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_state, billing_country, billing_postal_code, total) VALUES (22, '2008-08-14 00:00:00', '120 S Orange Ave', 'Orlando', 'FL', 'USA', '32801', 5.94); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_state, billing_country, billing_postal_code, total) VALUES (28, '2008-08-17 00:00:00', '302 S 700 E', 'Salt Lake City', 'UT', 'USA', '84102', 8.91); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_country, billing_postal_code, total) VALUES (37, '2008-08-22 00:00:00', 'Berger Straße 10', 'Frankfurt', 'Germany', '60316', 13.86); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_country, billing_postal_code, total) VALUES (51, '2008-08-30 00:00:00', 'Celsiusg. 9', 'Stockholm', 'Sweden', '11230', 0.99); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_country, billing_postal_code, total) VALUES (52, '2008-09-12 00:00:00', '202 Hoxton Street', 'London', 'United Kingdom', 'N1 5LH', 1.98); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_country, billing_postal_code, total) VALUES (54, '2008-09-12 00:00:00', '110 Raeburn Pl', 'Edinburgh ', 'United Kingdom', 'EH4 1HH', 1.98); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_country, billing_postal_code, total) VALUES (56, '2008-09-13 00:00:00', '307 Macacha Güemes', 'Buenos Aires', 'Argentina', '1106', 3.96); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_state, billing_country, billing_postal_code, total) VALUES (1, '2008-09-14 00:00:00', 'Av. Brigadeiro Faria Lima, 2170', 'São José dos Campos', 'SP', 'Brazil', '12227-000', 5.94); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_country, billing_postal_code, total) VALUES (7, '2008-09-17 00:00:00', 'Rotenturmstraße 4, 1010 Innere Stadt', 'Vienne', 'Austria', '1010', 8.91); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_state, billing_country, billing_postal_code, total) VALUES (16, '2008-09-22 00:00:00', '1600 Amphitheatre Parkway', 'Mountain View', 'CA', 'USA', '94043-1351', 13.86); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_state, billing_country, billing_postal_code, total) VALUES (30, '2008-09-30 00:00:00', '230 Elgin Street', 'Ottawa', 'ON', 'Canada', 'K2P 1L7', 0.99); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_state, billing_country, billing_postal_code, total) VALUES (31, '2008-10-13 00:00:00', '194A Chain Lake Drive', 'Halifax', 'NS', 'Canada', 'B3S 1C5', 1.98); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_state, billing_country, billing_postal_code, total) VALUES (33, '2008-10-13 00:00:00', '5112 48 Street', 'Yellowknife', 'NT', 'Canada', 'X1A 1N6', 1.98); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_country, total) VALUES (35, '2008-10-14 00:00:00', 'Rua dos Campeões Europeus de Viena, 4350', 'Porto', 'Portugal', 3.96); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_country, billing_postal_code, total) VALUES (39, '2008-10-15 00:00:00', '4, Rue Milton', 'Paris', 'France', '75009', 5.94); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_country, billing_postal_code, total) VALUES (45, '2008-10-18 00:00:00', 'Erzsébet krt. 58.', 'Budapest', 'Hungary', 'H-1073', 8.91); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_country, billing_postal_code, total) VALUES (54, '2008-10-23 00:00:00', '110 Raeburn Pl', 'Edinburgh ', 'United Kingdom', 'EH4 1HH', 13.86); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_country, billing_postal_code, total) VALUES (9, '2008-10-31 00:00:00', 'Sønder Boulevard 51', 'Copenhagen', 'Denmark', '1720', 0.99); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_state, billing_country, billing_postal_code, total) VALUES (10, '2008-11-13 00:00:00', 'Rua Dr. Falcão Filho, 155', 'São Paulo', 'SP', 'Brazil', '01007-010', 1.98); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_state, billing_country, billing_postal_code, total) VALUES (12, '2008-11-13 00:00:00', 'Praça Pio X, 119', 'Rio de Janeiro', 'RJ', 'Brazil', '20040-020', 1.98); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_state, billing_country, billing_postal_code, total) VALUES (14, '2008-11-14 00:00:00', '8210 111 ST NW', 'Edmonton', 'AB', 'Canada', 'T6G 2C7', 3.96); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_state, billing_country, billing_postal_code, total) VALUES (18, '2008-11-15 00:00:00', '627 Broadway', 'New York', 'NY', 'USA', '10012-2612', 5.94); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_state, billing_country, billing_postal_code, total) VALUES (24, '2008-11-18 00:00:00', '162 E Superior Street', 'Chicago', 'IL', 'USA', '60611', 8.91); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_state, billing_country, billing_postal_code, total) VALUES (33, '2008-11-23 00:00:00', '5112 48 Street', 'Yellowknife', 'NT', 'Canada', 'X1A 1N6', 13.86); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_state, billing_country, billing_postal_code, total) VALUES (47, '2008-12-01 00:00:00', 'Via Degli Scipioni, 43', 'Rome', 'RM', 'Italy', '00192', 0.99); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_state, billing_country, billing_postal_code, total) VALUES (48, '2008-12-14 00:00:00', 'Lijnbaansgracht 120bg', 'Amsterdam', 'VV', 'Netherlands', '1016', 1.98); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_country, billing_postal_code, total) VALUES (50, '2008-12-14 00:00:00', 'C/ San Bernardo 85', 'Madrid', 'Spain', '28015', 1.98); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_country, billing_postal_code, total) VALUES (52, '2008-12-15 00:00:00', '202 Hoxton Street', 'London', 'United Kingdom', 'N1 5LH', 3.96); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_country, billing_postal_code, total) VALUES (56, '2008-12-16 00:00:00', '307 Macacha Güemes', 'Buenos Aires', 'Argentina', '1106', 5.94); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_state, billing_country, billing_postal_code, total) VALUES (3, '2008-12-19 00:00:00', '1498 rue Bélanger', 'Montréal', 'QC', 'Canada', 'H2G 1A7', 8.91); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_state, billing_country, billing_postal_code, total) VALUES (12, '2008-12-24 00:00:00', 'Praça Pio X, 119', 'Rio de Janeiro', 'RJ', 'Brazil', '20040-020', 13.86); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_state, billing_country, billing_postal_code, total) VALUES (26, '2009-01-01 00:00:00', '2211 W Berry Street', 'Fort Worth', 'TX', 'USA', '76110', 0.99); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_state, billing_country, billing_postal_code, total) VALUES (27, '2009-01-14 00:00:00', '1033 N Park Ave', 'Tucson', 'AZ', 'USA', '85719', 1.98); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_state, billing_country, billing_postal_code, total) VALUES (29, '2009-01-14 00:00:00', '796 Dundas Street West', 'Toronto', 'ON', 'Canada', 'M6J 1V1', 1.98); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_state, billing_country, billing_postal_code, total) VALUES (31, '2009-01-15 00:00:00', '194A Chain Lake Drive', 'Halifax', 'NS', 'Canada', 'B3S 1C5', 3.96); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_country, total) VALUES (35, '2009-01-16 00:00:00', 'Rua dos Campeões Europeus de Viena, 4350', 'Porto', 'Portugal', 5.94); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_country, billing_postal_code, total) VALUES (41, '2009-01-19 00:00:00', '11, Place Bellecour', 'Lyon', 'France', '69002', 8.91); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_country, billing_postal_code, total) VALUES (50, '2009-01-24 00:00:00', 'C/ San Bernardo 85', 'Madrid', 'Spain', '28015', 13.86); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_country, billing_postal_code, total) VALUES (5, '2009-02-01 00:00:00', 'Klanova 9/506', 'Prague', 'Czech Republic', '14700', 0.99); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_country, billing_postal_code, total) VALUES (6, '2009-02-14 00:00:00', 'Rilská 3174/6', 'Prague', 'Czech Republic', '14300', 1.98); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_country, billing_postal_code, total) VALUES (8, '2009-02-14 00:00:00', 'Grétrystraat 63', 'Brussels', 'Belgium', '1000', 1.98); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_state, billing_country, billing_postal_code, total) VALUES (10, '2009-02-15 00:00:00', 'Rua Dr. Falcão Filho, 155', 'São Paulo', 'SP', 'Brazil', '01007-010', 3.96); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_state, billing_country, billing_postal_code, total) VALUES (14, '2009-02-16 00:00:00', '8210 111 ST NW', 'Edmonton', 'AB', 'Canada', 'T6G 2C7', 5.94); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_state, billing_country, billing_postal_code, total) VALUES (20, '2009-02-19 00:00:00', '541 Del Medio Avenue', 'Mountain View', 'CA', 'USA', '94040-111', 8.91); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_state, billing_country, billing_postal_code, total) VALUES (29, '2009-02-24 00:00:00', '796 Dundas Street West', 'Toronto', 'ON', 'Canada', 'M6J 1V1', 13.86); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_country, billing_postal_code, total) VALUES (43, '2009-03-04 00:00:00', '68, Rue Jouvence', 'Dijon', 'France', '21000', 0.99); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_country, billing_postal_code, total) VALUES (44, '2009-03-17 00:00:00', 'Porthaninkatu 9', 'Helsinki', 'Finland', '00530', 1.98); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_state, billing_country, total) VALUES (46, '2009-03-17 00:00:00', '3 Chatham Street', 'Dublin', 'Dublin', 'Ireland', 1.98); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_state, billing_country, billing_postal_code, total) VALUES (48, '2009-03-18 00:00:00', 'Lijnbaansgracht 120bg', 'Amsterdam', 'VV', 'Netherlands', '1016', 3.96); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_country, billing_postal_code, total) VALUES (52, '2009-03-19 00:00:00', '202 Hoxton Street', 'London', 'United Kingdom', 'N1 5LH', 5.94); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_country, billing_postal_code, total) VALUES (58, '2009-03-22 00:00:00', '12,Community Centre', 'Delhi', 'India', '110017', 8.91); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_country, billing_postal_code, total) VALUES (8, '2009-03-27 00:00:00', 'Grétrystraat 63', 'Brussels', 'Belgium', '1000', 13.86); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_state, billing_country, billing_postal_code, total) VALUES (22, '2009-04-04 00:00:00', '120 S Orange Ave', 'Orlando', 'FL', 'USA', '32801', 0.99); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_state, billing_country, billing_postal_code, total) VALUES (23, '2009-04-17 00:00:00', '69 Salem Street', 'Boston', 'MA', 'USA', '2113', 1.98); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_state, billing_country, billing_postal_code, total) VALUES (25, '2009-04-17 00:00:00', '319 N. Frances Street', 'Madison', 'WI', 'USA', '53703', 1.98); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_state, billing_country, billing_postal_code, total) VALUES (27, '2009-04-18 00:00:00', '1033 N Park Ave', 'Tucson', 'AZ', 'USA', '85719', 3.96); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_state, billing_country, billing_postal_code, total) VALUES (31, '2009-04-19 00:00:00', '194A Chain Lake Drive', 'Halifax', 'NS', 'Canada', 'B3S 1C5', 5.94); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_country, billing_postal_code, total) VALUES (37, '2009-04-22 00:00:00', 'Berger Straße 10', 'Frankfurt', 'Germany', '60316', 14.91); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_state, billing_country, total) VALUES (46, '2009-04-27 00:00:00', '3 Chatham Street', 'Dublin', 'Dublin', 'Ireland', 21.86); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_state, billing_country, billing_postal_code, total) VALUES (1, '2009-05-05 00:00:00', 'Av. Brigadeiro Faria Lima, 2170', 'São José dos Campos', 'SP', 'Brazil', '12227-000', 0.99); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_country, billing_postal_code, total) VALUES (2, '2009-05-18 00:00:00', 'Theodor-Heuss-Straße 34', 'Stuttgart', 'Germany', '70174', 1.98); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_country, billing_postal_code, total) VALUES (4, '2009-05-18 00:00:00', 'Ullevålsveien 14', 'Oslo', 'Norway', '0171', 1.98); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_country, billing_postal_code, total) VALUES (6, '2009-05-19 00:00:00', 'Rilská 3174/6', 'Prague', 'Czech Republic', '14300', 3.96); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_state, billing_country, billing_postal_code, total) VALUES (10, '2009-05-20 00:00:00', 'Rua Dr. Falcão Filho, 155', 'São Paulo', 'SP', 'Brazil', '01007-010', 5.94); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_state, billing_country, billing_postal_code, total) VALUES (16, '2009-05-23 00:00:00', '1600 Amphitheatre Parkway', 'Mountain View', 'CA', 'USA', '94043-1351', 8.91); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_state, billing_country, billing_postal_code, total) VALUES (25, '2009-05-28 00:00:00', '319 N. Frances Street', 'Madison', 'WI', 'USA', '53703', 18.86); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_country, billing_postal_code, total) VALUES (39, '2009-06-05 00:00:00', '4, Rue Milton', 'Paris', 'France', '75009', 1.99); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_country, billing_postal_code, total) VALUES (40, '2009-06-18 00:00:00', '8, Rue Hanovre', 'Paris', 'France', '75002', 2.98); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_country, billing_postal_code, total) VALUES (42, '2009-06-18 00:00:00', '9, Place Louis Barthou', 'Bordeaux', 'France', '33000', 3.98); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_country, billing_postal_code, total) VALUES (44, '2009-06-19 00:00:00', 'Porthaninkatu 9', 'Helsinki', 'Finland', '00530', 7.96); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_state, billing_country, billing_postal_code, total) VALUES (48, '2009-06-20 00:00:00', 'Lijnbaansgracht 120bg', 'Amsterdam', 'VV', 'Netherlands', '1016', 8.94); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_country, billing_postal_code, total) VALUES (54, '2009-06-23 00:00:00', '110 Raeburn Pl', 'Edinburgh ', 'United Kingdom', 'EH4 1HH', 8.91); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_country, billing_postal_code, total) VALUES (4, '2009-06-28 00:00:00', 'Ullevålsveien 14', 'Oslo', 'Norway', '0171', 15.86); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_state, billing_country, billing_postal_code, total) VALUES (18, '2009-07-06 00:00:00', '627 Broadway', 'New York', 'NY', 'USA', '10012-2612', 0.99); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_state, billing_country, billing_postal_code, total) VALUES (19, '2009-07-19 00:00:00', '1 Infinite Loop', 'Cupertino', 'CA', 'USA', '95014', 1.98); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_state, billing_country, billing_postal_code, total) VALUES (21, '2009-07-19 00:00:00', '801 W 4th Street', 'Reno', 'NV', 'USA', '89503', 1.98); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_state, billing_country, billing_postal_code, total) VALUES (23, '2009-07-20 00:00:00', '69 Salem Street', 'Boston', 'MA', 'USA', '2113', 3.96); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_state, billing_country, billing_postal_code, total) VALUES (27, '2009-07-21 00:00:00', '1033 N Park Ave', 'Tucson', 'AZ', 'USA', '85719', 5.94); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_state, billing_country, billing_postal_code, total) VALUES (33, '2009-07-24 00:00:00', '5112 48 Street', 'Yellowknife', 'NT', 'Canada', 'X1A 1N6', 8.91); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_country, billing_postal_code, total) VALUES (42, '2009-07-29 00:00:00', '9, Place Louis Barthou', 'Bordeaux', 'France', '33000', 13.86); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_country, billing_postal_code, total) VALUES (56, '2009-08-06 00:00:00', '307 Macacha Güemes', 'Buenos Aires', 'Argentina', '1106', 0.99); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_country, total) VALUES (57, '2009-08-19 00:00:00', 'Calle Lira, 198', 'Santiago', 'Chile', 1.98); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_country, billing_postal_code, total) VALUES (59, '2009-08-19 00:00:00', '3,Raj Bhavan Road', 'Bangalore', 'India', '560001', 1.98); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_country, billing_postal_code, total) VALUES (2, '2009-08-20 00:00:00', 'Theodor-Heuss-Straße 34', 'Stuttgart', 'Germany', '70174', 3.96); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_country, billing_postal_code, total) VALUES (6, '2009-08-21 00:00:00', 'Rilská 3174/6', 'Prague', 'Czech Republic', '14300', 5.94); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_state, billing_country, billing_postal_code, total) VALUES (12, '2009-08-24 00:00:00', 'Praça Pio X, 119', 'Rio de Janeiro', 'RJ', 'Brazil', '20040-020', 8.91); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_state, billing_country, billing_postal_code, total) VALUES (21, '2009-08-29 00:00:00', '801 W 4th Street', 'Reno', 'NV', 'USA', '89503', 13.86); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_country, total) VALUES (35, '2009-09-06 00:00:00', 'Rua dos Campeões Europeus de Viena, 4350', 'Porto', 'Portugal', 0.99); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_country, billing_postal_code, total) VALUES (36, '2009-09-19 00:00:00', 'Tauentzienstraße 8', 'Berlin', 'Germany', '10789', 1.98); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_country, billing_postal_code, total) VALUES (38, '2009-09-19 00:00:00', 'Barbarossastraße 19', 'Berlin', 'Germany', '10779', 1.98); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_country, billing_postal_code, total) VALUES (40, '2009-09-20 00:00:00', '8, Rue Hanovre', 'Paris', 'France', '75002', 3.96); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_country, billing_postal_code, total) VALUES (44, '2009-09-21 00:00:00', 'Porthaninkatu 9', 'Helsinki', 'Finland', '00530', 5.94); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_country, billing_postal_code, total) VALUES (50, '2009-09-24 00:00:00', 'C/ San Bernardo 85', 'Madrid', 'Spain', '28015', 8.91); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_country, billing_postal_code, total) VALUES (59, '2009-09-29 00:00:00', '3,Raj Bhavan Road', 'Bangalore', 'India', '560001', 13.86); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_state, billing_country, billing_postal_code, total) VALUES (14, '2009-10-07 00:00:00', '8210 111 ST NW', 'Edmonton', 'AB', 'Canada', 'T6G 2C7', 0.99); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_state, billing_country, billing_postal_code, total) VALUES (15, '2009-10-20 00:00:00', '700 W Pender Street', 'Vancouver', 'BC', 'Canada', 'V6C 1G8', 1.98); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_state, billing_country, billing_postal_code, total) VALUES (17, '2009-10-20 00:00:00', '1 Microsoft Way', 'Redmond', 'WA', 'USA', '98052-8300', 1.98); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_state, billing_country, billing_postal_code, total) VALUES (19, '2009-10-21 00:00:00', '1 Infinite Loop', 'Cupertino', 'CA', 'USA', '95014', 3.96); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_state, billing_country, billing_postal_code, total) VALUES (23, '2009-10-22 00:00:00', '69 Salem Street', 'Boston', 'MA', 'USA', '2113', 5.94); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_state, billing_country, billing_postal_code, total) VALUES (29, '2009-10-25 00:00:00', '796 Dundas Street West', 'Toronto', 'ON', 'Canada', 'M6J 1V1', 8.91); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_country, billing_postal_code, total) VALUES (38, '2009-10-30 00:00:00', 'Barbarossastraße 19', 'Berlin', 'Germany', '10779', 13.86); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_country, billing_postal_code, total) VALUES (52, '2009-11-07 00:00:00', '202 Hoxton Street', 'London', 'United Kingdom', 'N1 5LH', 0.99); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_country, billing_postal_code, total) VALUES (53, '2009-11-20 00:00:00', '113 Lupus St', 'London', 'United Kingdom', 'SW1V 3EN', 1.98); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_state, billing_country, billing_postal_code, total) VALUES (55, '2009-11-20 00:00:00', '421 Bourke Street', 'Sidney', 'NSW', 'Australia', '2010', 1.98); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_country, total) VALUES (57, '2009-11-21 00:00:00', 'Calle Lira, 198', 'Santiago', 'Chile', 3.96); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_country, billing_postal_code, total) VALUES (2, '2009-11-22 00:00:00', 'Theodor-Heuss-Straße 34', 'Stuttgart', 'Germany', '70174', 5.94); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_country, billing_postal_code, total) VALUES (8, '2009-11-25 00:00:00', 'Grétrystraat 63', 'Brussels', 'Belgium', '1000', 8.91); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_state, billing_country, billing_postal_code, total) VALUES (17, '2009-11-30 00:00:00', '1 Microsoft Way', 'Redmond', 'WA', 'USA', '98052-8300', 13.86); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_state, billing_country, billing_postal_code, total) VALUES (31, '2009-12-08 00:00:00', '194A Chain Lake Drive', 'Halifax', 'NS', 'Canada', 'B3S 1C5', 0.99); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_state, billing_country, billing_postal_code, total) VALUES (32, '2009-12-21 00:00:00', '696 Osborne Street', 'Winnipeg', 'MB', 'Canada', 'R3L 2B9', 1.98); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_country, total) VALUES (34, '2009-12-21 00:00:00', 'Rua da Assunção 53', 'Lisbon', 'Portugal', 1.98); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_country, billing_postal_code, total) VALUES (36, '2009-12-22 00:00:00', 'Tauentzienstraße 8', 'Berlin', 'Germany', '10789', 3.96); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_country, billing_postal_code, total) VALUES (40, '2009-12-23 00:00:00', '8, Rue Hanovre', 'Paris', 'France', '75002', 5.94); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_state, billing_country, total) VALUES (46, '2009-12-26 00:00:00', '3 Chatham Street', 'Dublin', 'Dublin', 'Ireland', 8.91); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_state, billing_country, billing_postal_code, total) VALUES (55, '2009-12-31 00:00:00', '421 Bourke Street', 'Sidney', 'NSW', 'Australia', '2010', 13.86); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_state, billing_country, billing_postal_code, total) VALUES (10, '2010-01-08 00:00:00', 'Rua Dr. Falcão Filho, 155', 'São Paulo', 'SP', 'Brazil', '01007-010', 0.99); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_state, billing_country, billing_postal_code, total) VALUES (11, '2010-01-21 00:00:00', 'Av. Paulista, 2022', 'São Paulo', 'SP', 'Brazil', '01310-200', 1.98); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_state, billing_country, billing_postal_code, total) VALUES (13, '2010-01-21 00:00:00', 'Qe 7 Bloco G', 'Brasília', 'DF', 'Brazil', '71020-677', 1.98); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_state, billing_country, billing_postal_code, total) VALUES (15, '2010-01-22 00:00:00', '700 W Pender Street', 'Vancouver', 'BC', 'Canada', 'V6C 1G8', 3.96); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_state, billing_country, billing_postal_code, total) VALUES (19, '2010-01-23 00:00:00', '1 Infinite Loop', 'Cupertino', 'CA', 'USA', '95014', 5.94); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_state, billing_country, billing_postal_code, total) VALUES (25, '2010-01-26 00:00:00', '319 N. Frances Street', 'Madison', 'WI', 'USA', '53703', 8.91); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_country, total) VALUES (34, '2010-01-31 00:00:00', 'Rua da Assunção 53', 'Lisbon', 'Portugal', 13.86); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_state, billing_country, billing_postal_code, total) VALUES (48, '2010-02-08 00:00:00', 'Lijnbaansgracht 120bg', 'Amsterdam', 'VV', 'Netherlands', '1016', 0.99); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_country, billing_postal_code, total) VALUES (49, '2010-02-21 00:00:00', 'Ordynacka 10', 'Warsaw', 'Poland', '00-358', 1.98); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_country, billing_postal_code, total) VALUES (51, '2010-02-21 00:00:00', 'Celsiusg. 9', 'Stockholm', 'Sweden', '11230', 1.98); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_country, billing_postal_code, total) VALUES (53, '2010-02-22 00:00:00', '113 Lupus St', 'London', 'United Kingdom', 'SW1V 3EN', 3.96); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_country, total) VALUES (57, '2010-02-23 00:00:00', 'Calle Lira, 198', 'Santiago', 'Chile', 5.94); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_country, billing_postal_code, total) VALUES (4, '2010-02-26 00:00:00', 'Ullevålsveien 14', 'Oslo', 'Norway', '0171', 8.91); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_state, billing_country, billing_postal_code, total) VALUES (13, '2010-03-03 00:00:00', 'Qe 7 Bloco G', 'Brasília', 'DF', 'Brazil', '71020-677', 13.86); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_state, billing_country, billing_postal_code, total) VALUES (27, '2010-03-11 00:00:00', '1033 N Park Ave', 'Tucson', 'AZ', 'USA', '85719', 0.99); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_state, billing_country, billing_postal_code, total) VALUES (28, '2010-03-24 00:00:00', '302 S 700 E', 'Salt Lake City', 'UT', 'USA', '84102', 1.98); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_state, billing_country, billing_postal_code, total) VALUES (30, '2010-03-24 00:00:00', '230 Elgin Street', 'Ottawa', 'ON', 'Canada', 'K2P 1L7', 1.98); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_state, billing_country, billing_postal_code, total) VALUES (32, '2010-03-25 00:00:00', '696 Osborne Street', 'Winnipeg', 'MB', 'Canada', 'R3L 2B9', 3.96); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_country, billing_postal_code, total) VALUES (36, '2010-03-26 00:00:00', 'Tauentzienstraße 8', 'Berlin', 'Germany', '10789', 5.94); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_country, billing_postal_code, total) VALUES (42, '2010-03-29 00:00:00', '9, Place Louis Barthou', 'Bordeaux', 'France', '33000', 8.91); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_country, billing_postal_code, total) VALUES (51, '2010-04-03 00:00:00', 'Celsiusg. 9', 'Stockholm', 'Sweden', '11230', 13.86); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_country, billing_postal_code, total) VALUES (6, '2010-04-11 00:00:00', 'Rilská 3174/6', 'Prague', 'Czech Republic', '14300', 0.99); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_country, billing_postal_code, total) VALUES (7, '2010-04-24 00:00:00', 'Rotenturmstraße 4, 1010 Innere Stadt', 'Vienne', 'Austria', '1010', 1.98); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_country, billing_postal_code, total) VALUES (9, '2010-04-24 00:00:00', 'Sønder Boulevard 51', 'Copenhagen', 'Denmark', '1720', 1.98); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_state, billing_country, billing_postal_code, total) VALUES (11, '2010-04-25 00:00:00', 'Av. Paulista, 2022', 'São Paulo', 'SP', 'Brazil', '01310-200', 3.96); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_state, billing_country, billing_postal_code, total) VALUES (15, '2010-04-26 00:00:00', '700 W Pender Street', 'Vancouver', 'BC', 'Canada', 'V6C 1G8', 5.94); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_state, billing_country, billing_postal_code, total) VALUES (21, '2010-04-29 00:00:00', '801 W 4th Street', 'Reno', 'NV', 'USA', '89503', 8.91); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_state, billing_country, billing_postal_code, total) VALUES (30, '2010-05-04 00:00:00', '230 Elgin Street', 'Ottawa', 'ON', 'Canada', 'K2P 1L7', 13.86); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_country, billing_postal_code, total) VALUES (44, '2010-05-12 00:00:00', 'Porthaninkatu 9', 'Helsinki', 'Finland', '00530', 0.99); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_country, billing_postal_code, total) VALUES (45, '2010-05-25 00:00:00', 'Erzsébet krt. 58.', 'Budapest', 'Hungary', 'H-1073', 1.98); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_state, billing_country, billing_postal_code, total) VALUES (47, '2010-05-25 00:00:00', 'Via Degli Scipioni, 43', 'Rome', 'RM', 'Italy', '00192', 1.98); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_country, billing_postal_code, total) VALUES (49, '2010-05-26 00:00:00', 'Ordynacka 10', 'Warsaw', 'Poland', '00-358', 3.96); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_country, billing_postal_code, total) VALUES (53, '2010-05-27 00:00:00', '113 Lupus St', 'London', 'United Kingdom', 'SW1V 3EN', 5.94); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_country, billing_postal_code, total) VALUES (59, '2010-05-30 00:00:00', '3,Raj Bhavan Road', 'Bangalore', 'India', '560001', 8.91); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_country, billing_postal_code, total) VALUES (9, '2010-06-04 00:00:00', 'Sønder Boulevard 51', 'Copenhagen', 'Denmark', '1720', 13.86); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_state, billing_country, billing_postal_code, total) VALUES (23, '2010-06-12 00:00:00', '69 Salem Street', 'Boston', 'MA', 'USA', '2113', 0.99); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_state, billing_country, billing_postal_code, total) VALUES (24, '2010-06-25 00:00:00', '162 E Superior Street', 'Chicago', 'IL', 'USA', '60611', 1.98); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_state, billing_country, billing_postal_code, total) VALUES (26, '2010-06-25 00:00:00', '2211 W Berry Street', 'Fort Worth', 'TX', 'USA', '76110', 1.98); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_state, billing_country, billing_postal_code, total) VALUES (28, '2010-06-26 00:00:00', '302 S 700 E', 'Salt Lake City', 'UT', 'USA', '84102', 3.96); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_state, billing_country, billing_postal_code, total) VALUES (32, '2010-06-27 00:00:00', '696 Osborne Street', 'Winnipeg', 'MB', 'Canada', 'R3L 2B9', 5.94); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_country, billing_postal_code, total) VALUES (38, '2010-06-30 00:00:00', 'Barbarossastraße 19', 'Berlin', 'Germany', '10779', 8.91); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_state, billing_country, billing_postal_code, total) VALUES (47, '2010-07-05 00:00:00', 'Via Degli Scipioni, 43', 'Rome', 'RM', 'Italy', '00192', 13.86); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_country, billing_postal_code, total) VALUES (2, '2010-07-13 00:00:00', 'Theodor-Heuss-Straße 34', 'Stuttgart', 'Germany', '70174', 0.99); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_state, billing_country, billing_postal_code, total) VALUES (3, '2010-07-26 00:00:00', '1498 rue Bélanger', 'Montréal', 'QC', 'Canada', 'H2G 1A7', 1.98); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_country, billing_postal_code, total) VALUES (5, '2010-07-26 00:00:00', 'Klanova 9/506', 'Prague', 'Czech Republic', '14700', 1.98); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_country, billing_postal_code, total) VALUES (7, '2010-07-27 00:00:00', 'Rotenturmstraße 4, 1010 Innere Stadt', 'Vienne', 'Austria', '1010', 3.96); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_state, billing_country, billing_postal_code, total) VALUES (11, '2010-07-28 00:00:00', 'Av. Paulista, 2022', 'São Paulo', 'SP', 'Brazil', '01310-200', 5.94); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_state, billing_country, billing_postal_code, total) VALUES (17, '2010-07-31 00:00:00', '1 Microsoft Way', 'Redmond', 'WA', 'USA', '98052-8300', 10.91); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_state, billing_country, billing_postal_code, total) VALUES (26, '2010-08-05 00:00:00', '2211 W Berry Street', 'Fort Worth', 'TX', 'USA', '76110', 23.86); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_country, billing_postal_code, total) VALUES (40, '2010-08-13 00:00:00', '8, Rue Hanovre', 'Paris', 'France', '75002', 0.99); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_country, billing_postal_code, total) VALUES (41, '2010-08-26 00:00:00', '11, Place Bellecour', 'Lyon', 'France', '69002', 1.98); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_country, billing_postal_code, total) VALUES (43, '2010-08-26 00:00:00', '68, Rue Jouvence', 'Dijon', 'France', '21000', 1.98); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_country, billing_postal_code, total) VALUES (45, '2010-08-27 00:00:00', 'Erzsébet krt. 58.', 'Budapest', 'Hungary', 'H-1073', 3.96); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_country, billing_postal_code, total) VALUES (49, '2010-08-28 00:00:00', 'Ordynacka 10', 'Warsaw', 'Poland', '00-358', 5.94); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_state, billing_country, billing_postal_code, total) VALUES (55, '2010-08-31 00:00:00', '421 Bourke Street', 'Sidney', 'NSW', 'Australia', '2010', 8.91); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_country, billing_postal_code, total) VALUES (5, '2010-09-05 00:00:00', 'Klanova 9/506', 'Prague', 'Czech Republic', '14700', 16.86); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_state, billing_country, billing_postal_code, total) VALUES (19, '2010-09-13 00:00:00', '1 Infinite Loop', 'Cupertino', 'CA', 'USA', '95014', 1.99); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_state, billing_country, billing_postal_code, total) VALUES (20, '2010-09-26 00:00:00', '541 Del Medio Avenue', 'Mountain View', 'CA', 'USA', '94040-111', 3.98); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_state, billing_country, billing_postal_code, total) VALUES (22, '2010-09-26 00:00:00', '120 S Orange Ave', 'Orlando', 'FL', 'USA', '32801', 3.98); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_state, billing_country, billing_postal_code, total) VALUES (24, '2010-09-27 00:00:00', '162 E Superior Street', 'Chicago', 'IL', 'USA', '60611', 7.96); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_state, billing_country, billing_postal_code, total) VALUES (28, '2010-09-28 00:00:00', '302 S 700 E', 'Salt Lake City', 'UT', 'USA', '84102', 11.94); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_country, total) VALUES (34, '2010-10-01 00:00:00', 'Rua da Assunção 53', 'Lisbon', 'Portugal', 10.91); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_country, billing_postal_code, total) VALUES (43, '2010-10-06 00:00:00', '68, Rue Jouvence', 'Dijon', 'France', '21000', 16.86); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_country, total) VALUES (57, '2010-10-14 00:00:00', 'Calle Lira, 198', 'Santiago', 'Chile', 0.99); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_country, billing_postal_code, total) VALUES (58, '2010-10-27 00:00:00', '12,Community Centre', 'Delhi', 'India', '110017', 1.98); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_state, billing_country, billing_postal_code, total) VALUES (1, '2010-10-27 00:00:00', 'Av. Brigadeiro Faria Lima, 2170', 'São José dos Campos', 'SP', 'Brazil', '12227-000', 1.98); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_state, billing_country, billing_postal_code, total) VALUES (3, '2010-10-28 00:00:00', '1498 rue Bélanger', 'Montréal', 'QC', 'Canada', 'H2G 1A7', 3.96); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_country, billing_postal_code, total) VALUES (7, '2010-10-29 00:00:00', 'Rotenturmstraße 4, 1010 Innere Stadt', 'Vienne', 'Austria', '1010', 5.94); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_state, billing_country, billing_postal_code, total) VALUES (13, '2010-11-01 00:00:00', 'Qe 7 Bloco G', 'Brasília', 'DF', 'Brazil', '71020-677', 8.91); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_state, billing_country, billing_postal_code, total) VALUES (22, '2010-11-06 00:00:00', '120 S Orange Ave', 'Orlando', 'FL', 'USA', '32801', 13.86); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_country, billing_postal_code, total) VALUES (36, '2010-11-14 00:00:00', 'Tauentzienstraße 8', 'Berlin', 'Germany', '10789', 0.99); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_country, billing_postal_code, total) VALUES (37, '2010-11-27 00:00:00', 'Berger Straße 10', 'Frankfurt', 'Germany', '60316', 1.98); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_country, billing_postal_code, total) VALUES (39, '2010-11-27 00:00:00', '4, Rue Milton', 'Paris', 'France', '75009', 1.98); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_country, billing_postal_code, total) VALUES (41, '2010-11-28 00:00:00', '11, Place Bellecour', 'Lyon', 'France', '69002', 3.96); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_country, billing_postal_code, total) VALUES (45, '2010-11-29 00:00:00', 'Erzsébet krt. 58.', 'Budapest', 'Hungary', 'H-1073', 5.94); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_country, billing_postal_code, total) VALUES (51, '2010-12-02 00:00:00', 'Celsiusg. 9', 'Stockholm', 'Sweden', '11230', 8.91); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_state, billing_country, billing_postal_code, total) VALUES (1, '2010-12-07 00:00:00', 'Av. Brigadeiro Faria Lima, 2170', 'São José dos Campos', 'SP', 'Brazil', '12227-000', 13.86); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_state, billing_country, billing_postal_code, total) VALUES (15, '2010-12-15 00:00:00', '700 W Pender Street', 'Vancouver', 'BC', 'Canada', 'V6C 1G8', 0.99); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_state, billing_country, billing_postal_code, total) VALUES (16, '2010-12-28 00:00:00', '1600 Amphitheatre Parkway', 'Mountain View', 'CA', 'USA', '94043-1351', 1.98); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_state, billing_country, billing_postal_code, total) VALUES (18, '2010-12-28 00:00:00', '627 Broadway', 'New York', 'NY', 'USA', '10012-2612', 1.98); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_state, billing_country, billing_postal_code, total) VALUES (20, '2010-12-29 00:00:00', '541 Del Medio Avenue', 'Mountain View', 'CA', 'USA', '94040-111', 3.96); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_state, billing_country, billing_postal_code, total) VALUES (24, '2010-12-30 00:00:00', '162 E Superior Street', 'Chicago', 'IL', 'USA', '60611', 5.94); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_state, billing_country, billing_postal_code, total) VALUES (30, '2011-01-02 00:00:00', '230 Elgin Street', 'Ottawa', 'ON', 'Canada', 'K2P 1L7', 8.91); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_country, billing_postal_code, total) VALUES (39, '2011-01-07 00:00:00', '4, Rue Milton', 'Paris', 'France', '75009', 13.86); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_country, billing_postal_code, total) VALUES (53, '2011-01-15 00:00:00', '113 Lupus St', 'London', 'United Kingdom', 'SW1V 3EN', 0.99); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_country, billing_postal_code, total) VALUES (54, '2011-01-28 00:00:00', '110 Raeburn Pl', 'Edinburgh ', 'United Kingdom', 'EH4 1HH', 1.98); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_country, billing_postal_code, total) VALUES (56, '2011-01-28 00:00:00', '307 Macacha Güemes', 'Buenos Aires', 'Argentina', '1106', 1.98); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_country, billing_postal_code, total) VALUES (58, '2011-01-29 00:00:00', '12,Community Centre', 'Delhi', 'India', '110017', 3.96); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_state, billing_country, billing_postal_code, total) VALUES (3, '2011-01-30 00:00:00', '1498 rue Bélanger', 'Montréal', 'QC', 'Canada', 'H2G 1A7', 5.94); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_country, billing_postal_code, total) VALUES (9, '2011-02-02 00:00:00', 'Sønder Boulevard 51', 'Copenhagen', 'Denmark', '1720', 8.91); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_state, billing_country, billing_postal_code, total) VALUES (18, '2011-02-07 00:00:00', '627 Broadway', 'New York', 'NY', 'USA', '10012-2612', 13.86); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_state, billing_country, billing_postal_code, total) VALUES (32, '2011-02-15 00:00:00', '696 Osborne Street', 'Winnipeg', 'MB', 'Canada', 'R3L 2B9', 0.99); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_state, billing_country, billing_postal_code, total) VALUES (33, '2011-02-28 00:00:00', '5112 48 Street', 'Yellowknife', 'NT', 'Canada', 'X1A 1N6', 1.98); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_country, total) VALUES (35, '2011-02-28 00:00:00', 'Rua dos Campeões Europeus de Viena, 4350', 'Porto', 'Portugal', 1.98); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_country, billing_postal_code, total) VALUES (37, '2011-03-01 00:00:00', 'Berger Straße 10', 'Frankfurt', 'Germany', '60316', 3.96); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_country, billing_postal_code, total) VALUES (41, '2011-03-02 00:00:00', '11, Place Bellecour', 'Lyon', 'France', '69002', 5.94); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_state, billing_country, billing_postal_code, total) VALUES (47, '2011-03-05 00:00:00', 'Via Degli Scipioni, 43', 'Rome', 'RM', 'Italy', '00192', 8.91); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_country, billing_postal_code, total) VALUES (56, '2011-03-10 00:00:00', '307 Macacha Güemes', 'Buenos Aires', 'Argentina', '1106', 13.86); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_state, billing_country, billing_postal_code, total) VALUES (11, '2011-03-18 00:00:00', 'Av. Paulista, 2022', 'São Paulo', 'SP', 'Brazil', '01310-200', 0.99); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_state, billing_country, billing_postal_code, total) VALUES (12, '2011-03-31 00:00:00', 'Praça Pio X, 119', 'Rio de Janeiro', 'RJ', 'Brazil', '20040-020', 1.98); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_state, billing_country, billing_postal_code, total) VALUES (14, '2011-03-31 00:00:00', '8210 111 ST NW', 'Edmonton', 'AB', 'Canada', 'T6G 2C7', 1.98); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_state, billing_country, billing_postal_code, total) VALUES (16, '2011-04-01 00:00:00', '1600 Amphitheatre Parkway', 'Mountain View', 'CA', 'USA', '94043-1351', 3.96); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_state, billing_country, billing_postal_code, total) VALUES (20, '2011-04-02 00:00:00', '541 Del Medio Avenue', 'Mountain View', 'CA', 'USA', '94040-111', 5.94); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_state, billing_country, billing_postal_code, total) VALUES (26, '2011-04-05 00:00:00', '2211 W Berry Street', 'Fort Worth', 'TX', 'USA', '76110', 8.91); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_country, total) VALUES (35, '2011-04-10 00:00:00', 'Rua dos Campeões Europeus de Viena, 4350', 'Porto', 'Portugal', 13.86); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_country, billing_postal_code, total) VALUES (49, '2011-04-18 00:00:00', 'Ordynacka 10', 'Warsaw', 'Poland', '00-358', 0.99); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_country, billing_postal_code, total) VALUES (50, '2011-05-01 00:00:00', 'C/ San Bernardo 85', 'Madrid', 'Spain', '28015', 1.98); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_country, billing_postal_code, total) VALUES (52, '2011-05-01 00:00:00', '202 Hoxton Street', 'London', 'United Kingdom', 'N1 5LH', 1.98); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_country, billing_postal_code, total) VALUES (54, '2011-05-02 00:00:00', '110 Raeburn Pl', 'Edinburgh ', 'United Kingdom', 'EH4 1HH', 3.96); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_country, billing_postal_code, total) VALUES (58, '2011-05-03 00:00:00', '12,Community Centre', 'Delhi', 'India', '110017', 5.94); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_country, billing_postal_code, total) VALUES (5, '2011-05-06 00:00:00', 'Klanova 9/506', 'Prague', 'Czech Republic', '14700', 8.91); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_state, billing_country, billing_postal_code, total) VALUES (14, '2011-05-11 00:00:00', '8210 111 ST NW', 'Edmonton', 'AB', 'Canada', 'T6G 2C7', 13.86); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_state, billing_country, billing_postal_code, total) VALUES (28, '2011-05-19 00:00:00', '302 S 700 E', 'Salt Lake City', 'UT', 'USA', '84102', 0.99); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_state, billing_country, billing_postal_code, total) VALUES (29, '2011-06-01 00:00:00', '796 Dundas Street West', 'Toronto', 'ON', 'Canada', 'M6J 1V1', 1.98); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_state, billing_country, billing_postal_code, total) VALUES (31, '2011-06-01 00:00:00', '194A Chain Lake Drive', 'Halifax', 'NS', 'Canada', 'B3S 1C5', 1.98); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_state, billing_country, billing_postal_code, total) VALUES (33, '2011-06-02 00:00:00', '5112 48 Street', 'Yellowknife', 'NT', 'Canada', 'X1A 1N6', 3.96); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_country, billing_postal_code, total) VALUES (37, '2011-06-03 00:00:00', 'Berger Straße 10', 'Frankfurt', 'Germany', '60316', 5.94); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_country, billing_postal_code, total) VALUES (43, '2011-06-06 00:00:00', '68, Rue Jouvence', 'Dijon', 'France', '21000', 8.91); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_country, billing_postal_code, total) VALUES (52, '2011-06-11 00:00:00', '202 Hoxton Street', 'London', 'United Kingdom', 'N1 5LH', 13.86); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_country, billing_postal_code, total) VALUES (7, '2011-06-19 00:00:00', 'Rotenturmstraße 4, 1010 Innere Stadt', 'Vienne', 'Austria', '1010', 0.99); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_country, billing_postal_code, total) VALUES (8, '2011-07-02 00:00:00', 'Grétrystraat 63', 'Brussels', 'Belgium', '1000', 1.98); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_state, billing_country, billing_postal_code, total) VALUES (10, '2011-07-02 00:00:00', 'Rua Dr. Falcão Filho, 155', 'São Paulo', 'SP', 'Brazil', '01007-010', 1.98); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_state, billing_country, billing_postal_code, total) VALUES (12, '2011-07-03 00:00:00', 'Praça Pio X, 119', 'Rio de Janeiro', 'RJ', 'Brazil', '20040-020', 3.96); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_state, billing_country, billing_postal_code, total) VALUES (16, '2011-07-04 00:00:00', '1600 Amphitheatre Parkway', 'Mountain View', 'CA', 'USA', '94043-1351', 5.94); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_state, billing_country, billing_postal_code, total) VALUES (22, '2011-07-07 00:00:00', '120 S Orange Ave', 'Orlando', 'FL', 'USA', '32801', 8.91); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_state, billing_country, billing_postal_code, total) VALUES (31, '2011-07-12 00:00:00', '194A Chain Lake Drive', 'Halifax', 'NS', 'Canada', 'B3S 1C5', 13.86); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_country, billing_postal_code, total) VALUES (45, '2011-07-20 00:00:00', 'Erzsébet krt. 58.', 'Budapest', 'Hungary', 'H-1073', 0.99); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_state, billing_country, total) VALUES (46, '2011-08-02 00:00:00', '3 Chatham Street', 'Dublin', 'Dublin', 'Ireland', 1.98); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_state, billing_country, billing_postal_code, total) VALUES (48, '2011-08-02 00:00:00', 'Lijnbaansgracht 120bg', 'Amsterdam', 'VV', 'Netherlands', '1016', 1.98); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_country, billing_postal_code, total) VALUES (50, '2011-08-03 00:00:00', 'C/ San Bernardo 85', 'Madrid', 'Spain', '28015', 3.96); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_country, billing_postal_code, total) VALUES (54, '2011-08-04 00:00:00', '110 Raeburn Pl', 'Edinburgh ', 'United Kingdom', 'EH4 1HH', 5.94); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_state, billing_country, billing_postal_code, total) VALUES (1, '2011-08-07 00:00:00', 'Av. Brigadeiro Faria Lima, 2170', 'São José dos Campos', 'SP', 'Brazil', '12227-000', 8.91); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_state, billing_country, billing_postal_code, total) VALUES (10, '2011-08-12 00:00:00', 'Rua Dr. Falcão Filho, 155', 'São Paulo', 'SP', 'Brazil', '01007-010', 13.86); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_state, billing_country, billing_postal_code, total) VALUES (24, '2011-08-20 00:00:00', '162 E Superior Street', 'Chicago', 'IL', 'USA', '60611', 0.99); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_state, billing_country, billing_postal_code, total) VALUES (25, '2011-09-02 00:00:00', '319 N. Frances Street', 'Madison', 'WI', 'USA', '53703', 1.98); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_state, billing_country, billing_postal_code, total) VALUES (27, '2011-09-02 00:00:00', '1033 N Park Ave', 'Tucson', 'AZ', 'USA', '85719', 1.98); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_state, billing_country, billing_postal_code, total) VALUES (29, '2011-09-03 00:00:00', '796 Dundas Street West', 'Toronto', 'ON', 'Canada', 'M6J 1V1', 3.96); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_state, billing_country, billing_postal_code, total) VALUES (33, '2011-09-04 00:00:00', '5112 48 Street', 'Yellowknife', 'NT', 'Canada', 'X1A 1N6', 5.94); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_country, billing_postal_code, total) VALUES (39, '2011-09-07 00:00:00', '4, Rue Milton', 'Paris', 'France', '75009', 8.91); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_state, billing_country, billing_postal_code, total) VALUES (48, '2011-09-12 00:00:00', 'Lijnbaansgracht 120bg', 'Amsterdam', 'VV', 'Netherlands', '1016', 13.86); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_state, billing_country, billing_postal_code, total) VALUES (3, '2011-09-20 00:00:00', '1498 rue Bélanger', 'Montréal', 'QC', 'Canada', 'H2G 1A7', 0.99); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_country, billing_postal_code, total) VALUES (4, '2011-10-03 00:00:00', 'Ullevålsveien 14', 'Oslo', 'Norway', '0171', 1.98); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_country, billing_postal_code, total) VALUES (6, '2011-10-03 00:00:00', 'Rilská 3174/6', 'Prague', 'Czech Republic', '14300', 1.98); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_country, billing_postal_code, total) VALUES (8, '2011-10-04 00:00:00', 'Grétrystraat 63', 'Brussels', 'Belgium', '1000', 3.96); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_state, billing_country, billing_postal_code, total) VALUES (12, '2011-10-05 00:00:00', 'Praça Pio X, 119', 'Rio de Janeiro', 'RJ', 'Brazil', '20040-020', 5.94); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_state, billing_country, billing_postal_code, total) VALUES (18, '2011-10-08 00:00:00', '627 Broadway', 'New York', 'NY', 'USA', '10012-2612', 8.91); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_state, billing_country, billing_postal_code, total) VALUES (27, '2011-10-13 00:00:00', '1033 N Park Ave', 'Tucson', 'AZ', 'USA', '85719', 13.86); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_country, billing_postal_code, total) VALUES (41, '2011-10-21 00:00:00', '11, Place Bellecour', 'Lyon', 'France', '69002', 0.99); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_country, billing_postal_code, total) VALUES (42, '2011-11-03 00:00:00', '9, Place Louis Barthou', 'Bordeaux', 'France', '33000', 1.98); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_country, billing_postal_code, total) VALUES (44, '2011-11-03 00:00:00', 'Porthaninkatu 9', 'Helsinki', 'Finland', '00530', 1.98); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_state, billing_country, total) VALUES (46, '2011-11-04 00:00:00', '3 Chatham Street', 'Dublin', 'Dublin', 'Ireland', 3.96); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_country, billing_postal_code, total) VALUES (50, '2011-11-05 00:00:00', 'C/ San Bernardo 85', 'Madrid', 'Spain', '28015', 5.94); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_country, billing_postal_code, total) VALUES (56, '2011-11-08 00:00:00', '307 Macacha Güemes', 'Buenos Aires', 'Argentina', '1106', 8.91); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_country, billing_postal_code, total) VALUES (6, '2011-11-13 00:00:00', 'Rilská 3174/6', 'Prague', 'Czech Republic', '14300', 25.86); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_state, billing_country, billing_postal_code, total) VALUES (20, '2011-11-21 00:00:00', '541 Del Medio Avenue', 'Mountain View', 'CA', 'USA', '94040-111', 0.99); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_state, billing_country, billing_postal_code, total) VALUES (21, '2011-12-04 00:00:00', '801 W 4th Street', 'Reno', 'NV', 'USA', '89503', 1.98); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_state, billing_country, billing_postal_code, total) VALUES (23, '2011-12-04 00:00:00', '69 Salem Street', 'Boston', 'MA', 'USA', '2113', 1.98); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_state, billing_country, billing_postal_code, total) VALUES (25, '2011-12-05 00:00:00', '319 N. Frances Street', 'Madison', 'WI', 'USA', '53703', 3.96); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_state, billing_country, billing_postal_code, total) VALUES (29, '2011-12-06 00:00:00', '796 Dundas Street West', 'Toronto', 'ON', 'Canada', 'M6J 1V1', 5.94); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_country, total) VALUES (35, '2011-12-09 00:00:00', 'Rua dos Campeões Europeus de Viena, 4350', 'Porto', 'Portugal', 8.91); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_country, billing_postal_code, total) VALUES (44, '2011-12-14 00:00:00', 'Porthaninkatu 9', 'Helsinki', 'Finland', '00530', 13.86); +INSERT INTO invoices (customer_id, invoice_date, billing_address, billing_city, billing_country, billing_postal_code, total) VALUES (58, '2011-12-22 00:00:00', '12,Community Centre', 'Delhi', 'India', '110017', 1.99); + +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (1, 2, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (1, 4, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (2, 6, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (2, 8, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (2, 10, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (2, 12, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (3, 16, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (3, 20, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (3, 24, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (3, 28, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (3, 32, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (3, 36, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (4, 42, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (4, 48, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (4, 54, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (4, 60, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (4, 66, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (4, 72, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (4, 78, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (4, 84, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (4, 90, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (5, 99, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (5, 108, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (5, 117, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (5, 126, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (5, 135, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (5, 144, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (5, 153, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (5, 162, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (5, 171, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (5, 180, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (5, 189, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (5, 198, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (5, 207, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (5, 216, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (6, 230, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (7, 231, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (7, 232, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (8, 234, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (8, 236, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (9, 238, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (9, 240, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (9, 242, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (9, 244, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (10, 248, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (10, 252, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (10, 256, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (10, 260, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (10, 264, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (10, 268, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (11, 274, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (11, 280, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (11, 286, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (11, 292, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (11, 298, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (11, 304, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (11, 310, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (11, 316, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (11, 322, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (12, 331, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (12, 340, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (12, 349, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (12, 358, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (12, 367, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (12, 376, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (12, 385, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (12, 394, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (12, 403, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (12, 412, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (12, 421, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (12, 430, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (12, 439, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (12, 448, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (13, 462, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (14, 463, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (14, 464, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (15, 466, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (15, 468, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (16, 470, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (16, 472, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (16, 474, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (16, 476, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (17, 480, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (17, 484, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (17, 488, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (17, 492, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (17, 496, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (17, 500, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (18, 506, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (18, 512, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (18, 518, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (18, 524, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (18, 530, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (18, 536, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (18, 542, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (18, 548, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (18, 554, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (19, 563, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (19, 572, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (19, 581, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (19, 590, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (19, 599, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (19, 608, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (19, 617, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (19, 626, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (19, 635, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (19, 644, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (19, 653, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (19, 662, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (19, 671, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (19, 680, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (20, 694, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (21, 695, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (21, 696, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (22, 698, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (22, 700, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (23, 702, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (23, 704, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (23, 706, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (23, 708, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (24, 712, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (24, 716, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (24, 720, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (24, 724, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (24, 728, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (24, 732, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (25, 738, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (25, 744, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (25, 750, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (25, 756, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (25, 762, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (25, 768, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (25, 774, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (25, 780, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (25, 786, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (26, 795, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (26, 804, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (26, 813, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (26, 822, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (26, 831, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (26, 840, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (26, 849, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (26, 858, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (26, 867, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (26, 876, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (26, 885, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (26, 894, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (26, 903, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (26, 912, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (27, 926, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (28, 927, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (28, 928, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (29, 930, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (29, 932, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (30, 934, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (30, 936, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (30, 938, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (30, 940, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (31, 944, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (31, 948, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (31, 952, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (31, 956, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (31, 960, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (31, 964, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (32, 970, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (32, 976, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (32, 982, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (32, 988, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (32, 994, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (32, 1000, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (32, 1006, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (32, 1012, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (32, 1018, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (33, 1027, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (33, 1036, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (33, 1045, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (33, 1054, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (33, 1063, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (33, 1072, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (33, 1081, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (33, 1090, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (33, 1099, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (33, 1108, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (33, 1117, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (33, 1126, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (33, 1135, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (33, 1144, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (34, 1158, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (35, 1159, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (35, 1160, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (36, 1162, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (36, 1164, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (37, 1166, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (37, 1168, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (37, 1170, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (37, 1172, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (38, 1176, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (38, 1180, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (38, 1184, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (38, 1188, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (38, 1192, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (38, 1196, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (39, 1202, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (39, 1208, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (39, 1214, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (39, 1220, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (39, 1226, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (39, 1232, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (39, 1238, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (39, 1244, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (39, 1250, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (40, 1259, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (40, 1268, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (40, 1277, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (40, 1286, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (40, 1295, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (40, 1304, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (40, 1313, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (40, 1322, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (40, 1331, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (40, 1340, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (40, 1349, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (40, 1358, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (40, 1367, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (40, 1376, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (41, 1390, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (42, 1391, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (42, 1392, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (43, 1394, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (43, 1396, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (44, 1398, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (44, 1400, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (44, 1402, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (44, 1404, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (45, 1408, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (45, 1412, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (45, 1416, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (45, 1420, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (45, 1424, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (45, 1428, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (46, 1434, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (46, 1440, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (46, 1446, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (46, 1452, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (46, 1458, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (46, 1464, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (46, 1470, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (46, 1476, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (46, 1482, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (47, 1491, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (47, 1500, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (47, 1509, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (47, 1518, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (47, 1527, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (47, 1536, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (47, 1545, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (47, 1554, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (47, 1563, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (47, 1572, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (47, 1581, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (47, 1590, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (47, 1599, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (47, 1608, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (48, 1622, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (49, 1623, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (49, 1624, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (50, 1626, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (50, 1628, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (51, 1630, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (51, 1632, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (51, 1634, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (51, 1636, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (52, 1640, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (52, 1644, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (52, 1648, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (52, 1652, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (52, 1656, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (52, 1660, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (53, 1666, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (53, 1672, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (53, 1678, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (53, 1684, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (53, 1690, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (53, 1696, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (53, 1702, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (53, 1708, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (53, 1714, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (54, 1723, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (54, 1732, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (54, 1741, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (54, 1750, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (54, 1759, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (54, 1768, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (54, 1777, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (54, 1786, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (54, 1795, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (54, 1804, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (54, 1813, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (54, 1822, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (54, 1831, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (54, 1840, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (55, 1854, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (56, 1855, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (56, 1856, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (57, 1858, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (57, 1860, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (58, 1862, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (58, 1864, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (58, 1866, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (58, 1868, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (59, 1872, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (59, 1876, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (59, 1880, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (59, 1884, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (59, 1888, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (59, 1892, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (60, 1898, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (60, 1904, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (60, 1910, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (60, 1916, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (60, 1922, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (60, 1928, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (60, 1934, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (60, 1940, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (60, 1946, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (61, 1955, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (61, 1964, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (61, 1973, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (61, 1982, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (61, 1991, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (61, 2000, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (61, 2009, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (61, 2018, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (61, 2027, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (61, 2036, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (61, 2045, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (61, 2054, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (61, 2063, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (61, 2072, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (62, 2086, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (63, 2087, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (63, 2088, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (64, 2090, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (64, 2092, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (65, 2094, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (65, 2096, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (65, 2098, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (65, 2100, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (66, 2104, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (66, 2108, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (66, 2112, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (66, 2116, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (66, 2120, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (66, 2124, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (67, 2130, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (67, 2136, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (67, 2142, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (67, 2148, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (67, 2154, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (67, 2160, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (67, 2166, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (67, 2172, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (67, 2178, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (68, 2187, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (68, 2196, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (68, 2205, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (68, 2214, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (68, 2223, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (68, 2232, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (68, 2241, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (68, 2250, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (68, 2259, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (68, 2268, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (68, 2277, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (68, 2286, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (68, 2295, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (68, 2304, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (69, 2318, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (70, 2319, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (70, 2320, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (71, 2322, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (71, 2324, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (72, 2326, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (72, 2328, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (72, 2330, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (72, 2332, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (73, 2336, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (73, 2340, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (73, 2344, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (73, 2348, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (73, 2352, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (73, 2356, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (74, 2362, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (74, 2368, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (74, 2374, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (74, 2380, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (74, 2386, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (74, 2392, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (74, 2398, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (74, 2404, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (74, 2410, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (75, 2419, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (75, 2428, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (75, 2437, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (75, 2446, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (75, 2455, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (75, 2464, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (75, 2473, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (75, 2482, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (75, 2491, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (75, 2500, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (75, 2509, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (75, 2518, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (75, 2527, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (75, 2536, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (76, 2550, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (77, 2551, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (77, 2552, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (78, 2554, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (78, 2556, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (79, 2558, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (79, 2560, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (79, 2562, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (79, 2564, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (80, 2568, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (80, 2572, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (80, 2576, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (80, 2580, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (80, 2584, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (80, 2588, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (81, 2594, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (81, 2600, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (81, 2606, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (81, 2612, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (81, 2618, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (81, 2624, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (81, 2630, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (81, 2636, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (81, 2642, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (82, 2651, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (82, 2660, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (82, 2669, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (82, 2678, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (82, 2687, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (82, 2696, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (82, 2705, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (82, 2714, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (82, 2723, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (82, 2732, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (82, 2741, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (82, 2750, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (82, 2759, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (82, 2768, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (83, 2782, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (84, 2783, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (84, 2784, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (85, 2786, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (85, 2788, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (86, 2790, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (86, 2792, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (86, 2794, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (86, 2796, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (87, 2800, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (87, 2804, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (87, 2808, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (87, 2812, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (87, 2816, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (87, 2820, 1.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (88, 2826, 1.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (88, 2832, 1.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (88, 2838, 1.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (88, 2844, 1.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (88, 2850, 1.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (88, 2856, 1.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (88, 2862, 1.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (88, 2868, 1.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (88, 2874, 1.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (89, 2883, 1.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (89, 2892, 1.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (89, 2901, 1.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (89, 2910, 1.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (89, 2919, 1.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (89, 2928, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (89, 2937, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (89, 2946, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (89, 2955, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (89, 2964, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (89, 2973, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (89, 2982, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (89, 2991, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (89, 3000, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (90, 3014, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (91, 3015, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (91, 3016, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (92, 3018, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (92, 3020, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (93, 3022, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (93, 3024, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (93, 3026, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (93, 3028, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (94, 3032, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (94, 3036, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (94, 3040, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (94, 3044, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (94, 3048, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (94, 3052, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (95, 3058, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (95, 3064, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (95, 3070, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (95, 3076, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (95, 3082, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (95, 3088, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (95, 3094, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (95, 3100, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (95, 3106, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (96, 3115, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (96, 3124, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (96, 3133, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (96, 3142, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (96, 3151, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (96, 3160, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (96, 3169, 1.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (96, 3178, 1.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (96, 3187, 1.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (96, 3196, 1.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (96, 3205, 1.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (96, 3214, 1.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (96, 3223, 1.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (96, 3232, 1.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (97, 3246, 1.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (98, 3247, 1.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (98, 3248, 1.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (99, 3250, 1.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (99, 3252, 1.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (100, 3254, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (100, 3256, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (100, 3258, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (100, 3260, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (101, 3264, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (101, 3268, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (101, 3272, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (101, 3276, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (101, 3280, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (101, 3284, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (102, 3290, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (102, 3296, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (102, 3302, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (102, 3308, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (102, 3314, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (102, 3320, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (102, 3326, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (102, 3332, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (102, 3338, 1.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (103, 3347, 1.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (103, 3356, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (103, 3365, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (103, 3374, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (103, 3383, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (103, 3392, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (103, 3401, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (103, 3410, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (103, 3419, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (103, 3428, 1.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (103, 3437, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (103, 3446, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (103, 3455, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (103, 3464, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (104, 3478, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (105, 3479, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (105, 3480, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (106, 3482, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (106, 3484, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (107, 3486, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (107, 3488, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (107, 3490, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (107, 3492, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (108, 3496, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (108, 3500, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (108, 1, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (108, 5, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (108, 9, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (108, 13, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (109, 19, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (109, 25, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (109, 31, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (109, 37, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (109, 43, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (109, 49, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (109, 55, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (109, 61, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (109, 67, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (110, 76, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (110, 85, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (110, 94, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (110, 103, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (110, 112, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (110, 121, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (110, 130, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (110, 139, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (110, 148, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (110, 157, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (110, 166, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (110, 175, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (110, 184, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (110, 193, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (111, 207, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (112, 208, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (112, 209, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (113, 211, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (113, 213, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (114, 215, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (114, 217, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (114, 219, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (114, 221, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (115, 225, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (115, 229, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (115, 233, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (115, 237, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (115, 241, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (115, 245, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (116, 251, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (116, 257, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (116, 263, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (116, 269, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (116, 275, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (116, 281, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (116, 287, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (116, 293, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (116, 299, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (117, 308, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (117, 317, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (117, 326, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (117, 335, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (117, 344, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (117, 353, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (117, 362, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (117, 371, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (117, 380, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (117, 389, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (117, 398, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (117, 407, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (117, 416, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (117, 425, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (118, 439, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (119, 440, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (119, 441, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (120, 443, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (120, 445, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (121, 447, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (121, 449, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (121, 451, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (121, 453, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (122, 457, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (122, 461, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (122, 465, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (122, 469, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (122, 473, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (122, 477, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (123, 483, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (123, 489, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (123, 495, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (123, 501, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (123, 507, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (123, 513, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (123, 519, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (123, 525, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (123, 531, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (124, 540, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (124, 549, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (124, 558, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (124, 567, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (124, 576, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (124, 585, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (124, 594, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (124, 603, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (124, 612, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (124, 621, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (124, 630, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (124, 639, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (124, 648, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (124, 657, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (125, 671, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (126, 672, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (126, 673, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (127, 675, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (127, 677, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (128, 679, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (128, 681, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (128, 683, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (128, 685, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (129, 689, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (129, 693, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (129, 697, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (129, 701, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (129, 705, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (129, 709, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (130, 715, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (130, 721, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (130, 727, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (130, 733, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (130, 739, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (130, 745, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (130, 751, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (130, 757, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (130, 763, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (131, 772, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (131, 781, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (131, 790, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (131, 799, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (131, 808, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (131, 817, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (131, 826, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (131, 835, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (131, 844, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (131, 853, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (131, 862, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (131, 871, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (131, 880, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (131, 889, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (132, 903, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (133, 904, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (133, 905, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (134, 907, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (134, 909, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (135, 911, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (135, 913, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (135, 915, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (135, 917, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (136, 921, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (136, 925, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (136, 929, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (136, 933, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (136, 937, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (136, 941, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (137, 947, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (137, 953, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (137, 959, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (137, 965, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (137, 971, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (137, 977, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (137, 983, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (137, 989, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (137, 995, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (138, 1004, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (138, 1013, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (138, 1022, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (138, 1031, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (138, 1040, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (138, 1049, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (138, 1058, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (138, 1067, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (138, 1076, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (138, 1085, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (138, 1094, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (138, 1103, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (138, 1112, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (138, 1121, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (139, 1135, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (140, 1136, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (140, 1137, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (141, 1139, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (141, 1141, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (142, 1143, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (142, 1145, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (142, 1147, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (142, 1149, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (143, 1153, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (143, 1157, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (143, 1161, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (143, 1165, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (143, 1169, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (143, 1173, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (144, 1179, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (144, 1185, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (144, 1191, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (144, 1197, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (144, 1203, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (144, 1209, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (144, 1215, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (144, 1221, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (144, 1227, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (145, 1236, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (145, 1245, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (145, 1254, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (145, 1263, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (145, 1272, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (145, 1281, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (145, 1290, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (145, 1299, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (145, 1308, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (145, 1317, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (145, 1326, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (145, 1335, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (145, 1344, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (145, 1353, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (146, 1367, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (147, 1368, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (147, 1369, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (148, 1371, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (148, 1373, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (149, 1375, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (149, 1377, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (149, 1379, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (149, 1381, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (150, 1385, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (150, 1389, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (150, 1393, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (150, 1397, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (150, 1401, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (150, 1405, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (151, 1411, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (151, 1417, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (151, 1423, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (151, 1429, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (151, 1435, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (151, 1441, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (151, 1447, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (151, 1453, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (151, 1459, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (152, 1468, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (152, 1477, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (152, 1486, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (152, 1495, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (152, 1504, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (152, 1513, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (152, 1522, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (152, 1531, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (152, 1540, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (152, 1549, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (152, 1558, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (152, 1567, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (152, 1576, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (152, 1585, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (153, 1599, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (154, 1600, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (154, 1601, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (155, 1603, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (155, 1605, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (156, 1607, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (156, 1609, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (156, 1611, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (156, 1613, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (157, 1617, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (157, 1621, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (157, 1625, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (157, 1629, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (157, 1633, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (157, 1637, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (158, 1643, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (158, 1649, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (158, 1655, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (158, 1661, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (158, 1667, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (158, 1673, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (158, 1679, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (158, 1685, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (158, 1691, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (159, 1700, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (159, 1709, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (159, 1718, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (159, 1727, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (159, 1736, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (159, 1745, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (159, 1754, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (159, 1763, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (159, 1772, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (159, 1781, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (159, 1790, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (159, 1799, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (159, 1808, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (159, 1817, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (160, 1831, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (161, 1832, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (161, 1833, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (162, 1835, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (162, 1837, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (163, 1839, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (163, 1841, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (163, 1843, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (163, 1845, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (164, 1849, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (164, 1853, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (164, 1857, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (164, 1861, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (164, 1865, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (164, 1869, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (165, 1875, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (165, 1881, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (165, 1887, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (165, 1893, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (165, 1899, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (165, 1905, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (165, 1911, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (165, 1917, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (165, 1923, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (166, 1932, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (166, 1941, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (166, 1950, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (166, 1959, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (166, 1968, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (166, 1977, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (166, 1986, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (166, 1995, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (166, 2004, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (166, 2013, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (166, 2022, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (166, 2031, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (166, 2040, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (166, 2049, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (167, 2063, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (168, 2064, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (168, 2065, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (169, 2067, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (169, 2069, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (170, 2071, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (170, 2073, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (170, 2075, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (170, 2077, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (171, 2081, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (171, 2085, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (171, 2089, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (171, 2093, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (171, 2097, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (171, 2101, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (172, 2107, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (172, 2113, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (172, 2119, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (172, 2125, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (172, 2131, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (172, 2137, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (172, 2143, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (172, 2149, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (172, 2155, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (173, 2164, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (173, 2173, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (173, 2182, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (173, 2191, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (173, 2200, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (173, 2209, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (173, 2218, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (173, 2227, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (173, 2236, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (173, 2245, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (173, 2254, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (173, 2263, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (173, 2272, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (173, 2281, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (174, 2295, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (175, 2296, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (175, 2297, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (176, 2299, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (176, 2301, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (177, 2303, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (177, 2305, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (177, 2307, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (177, 2309, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (178, 2313, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (178, 2317, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (178, 2321, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (178, 2325, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (178, 2329, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (178, 2333, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (179, 2339, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (179, 2345, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (179, 2351, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (179, 2357, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (179, 2363, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (179, 2369, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (179, 2375, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (179, 2381, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (179, 2387, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (180, 2396, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (180, 2405, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (180, 2414, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (180, 2423, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (180, 2432, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (180, 2441, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (180, 2450, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (180, 2459, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (180, 2468, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (180, 2477, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (180, 2486, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (180, 2495, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (180, 2504, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (180, 2513, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (181, 2527, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (182, 2528, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (182, 2529, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (183, 2531, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (183, 2533, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (184, 2535, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (184, 2537, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (184, 2539, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (184, 2541, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (185, 2545, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (185, 2549, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (185, 2553, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (185, 2557, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (185, 2561, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (185, 2565, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (186, 2571, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (186, 2577, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (186, 2583, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (186, 2589, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (186, 2595, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (186, 2601, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (186, 2607, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (186, 2613, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (186, 2619, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (187, 2628, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (187, 2637, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (187, 2646, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (187, 2655, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (187, 2664, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (187, 2673, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (187, 2682, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (187, 2691, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (187, 2700, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (187, 2709, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (187, 2718, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (187, 2727, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (187, 2736, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (187, 2745, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (188, 2759, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (189, 2760, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (189, 2761, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (190, 2763, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (190, 2765, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (191, 2767, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (191, 2769, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (191, 2771, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (191, 2773, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (192, 2777, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (192, 2781, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (192, 2785, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (192, 2789, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (192, 2793, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (192, 2797, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (193, 2803, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (193, 2809, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (193, 2815, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (193, 2821, 1.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (193, 2827, 1.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (193, 2833, 1.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (193, 2839, 1.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (193, 2845, 1.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (193, 2851, 1.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (194, 2860, 1.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (194, 2869, 1.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (194, 2878, 1.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (194, 2887, 1.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (194, 2896, 1.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (194, 2905, 1.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (194, 2914, 1.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (194, 2923, 1.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (194, 2932, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (194, 2941, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (194, 2950, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (194, 2959, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (194, 2968, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (194, 2977, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (195, 2991, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (196, 2992, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (196, 2993, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (197, 2995, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (197, 2997, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (198, 2999, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (198, 3001, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (198, 3003, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (198, 3005, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (199, 3009, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (199, 3013, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (199, 3017, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (199, 3021, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (199, 3025, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (199, 3029, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (200, 3035, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (200, 3041, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (200, 3047, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (200, 3053, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (200, 3059, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (200, 3065, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (200, 3071, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (200, 3077, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (200, 3083, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (201, 3092, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (201, 3101, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (201, 3110, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (201, 3119, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (201, 3128, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (201, 3137, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (201, 3146, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (201, 3155, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (201, 3164, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (201, 3173, 1.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (201, 3182, 1.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (201, 3191, 1.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (201, 3200, 1.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (201, 3209, 1.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (202, 3223, 1.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (203, 3224, 1.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (203, 3225, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (204, 3227, 1.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (204, 3229, 1.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (205, 3231, 1.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (205, 3233, 1.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (205, 3235, 1.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (205, 3237, 1.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (206, 3241, 1.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (206, 3245, 1.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (206, 3249, 1.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (206, 3253, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (206, 3257, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (206, 3261, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (207, 3267, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (207, 3273, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (207, 3279, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (207, 3285, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (207, 3291, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (207, 3297, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (207, 3303, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (207, 3309, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (207, 3315, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (208, 3324, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (208, 3333, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (208, 3342, 1.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (208, 3351, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (208, 3360, 1.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (208, 3369, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (208, 3378, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (208, 3387, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (208, 3396, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (208, 3405, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (208, 3414, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (208, 3423, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (208, 3432, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (208, 3441, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (209, 3455, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (210, 3456, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (210, 3457, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (211, 3459, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (211, 3461, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (212, 3463, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (212, 3465, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (212, 3467, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (212, 3469, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (213, 3473, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (213, 3477, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (213, 3481, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (213, 3485, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (213, 3489, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (213, 3493, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (214, 3499, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (214, 2, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (214, 8, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (214, 14, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (214, 20, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (214, 26, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (214, 32, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (214, 38, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (214, 44, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (215, 53, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (215, 62, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (215, 71, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (215, 80, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (215, 89, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (215, 98, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (215, 107, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (215, 116, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (215, 125, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (215, 134, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (215, 143, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (215, 152, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (215, 161, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (215, 170, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (216, 184, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (217, 185, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (217, 186, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (218, 188, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (218, 190, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (219, 192, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (219, 194, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (219, 196, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (219, 198, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (220, 202, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (220, 206, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (220, 210, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (220, 214, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (220, 218, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (220, 222, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (221, 228, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (221, 234, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (221, 240, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (221, 246, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (221, 252, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (221, 258, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (221, 264, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (221, 270, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (221, 276, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (222, 285, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (222, 294, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (222, 303, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (222, 312, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (222, 321, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (222, 330, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (222, 339, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (222, 348, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (222, 357, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (222, 366, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (222, 375, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (222, 384, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (222, 393, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (222, 402, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (223, 416, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (224, 417, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (224, 418, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (225, 420, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (225, 422, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (226, 424, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (226, 426, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (226, 428, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (226, 430, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (227, 434, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (227, 438, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (227, 442, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (227, 446, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (227, 450, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (227, 454, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (228, 460, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (228, 466, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (228, 472, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (228, 478, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (228, 484, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (228, 490, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (228, 496, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (228, 502, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (228, 508, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (229, 517, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (229, 526, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (229, 535, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (229, 544, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (229, 553, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (229, 562, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (229, 571, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (229, 580, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (229, 589, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (229, 598, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (229, 607, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (229, 616, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (229, 625, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (229, 634, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (230, 648, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (231, 649, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (231, 650, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (232, 652, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (232, 654, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (233, 656, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (233, 658, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (233, 660, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (233, 662, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (234, 666, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (234, 670, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (234, 674, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (234, 678, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (234, 682, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (234, 686, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (235, 692, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (235, 698, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (235, 704, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (235, 710, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (235, 716, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (235, 722, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (235, 728, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (235, 734, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (235, 740, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (236, 749, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (236, 758, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (236, 767, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (236, 776, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (236, 785, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (236, 794, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (236, 803, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (236, 812, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (236, 821, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (236, 830, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (236, 839, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (236, 848, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (236, 857, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (236, 866, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (237, 880, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (238, 881, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (238, 882, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (239, 884, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (239, 886, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (240, 888, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (240, 890, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (240, 892, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (240, 894, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (241, 898, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (241, 902, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (241, 906, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (241, 910, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (241, 914, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (241, 918, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (242, 924, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (242, 930, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (242, 936, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (242, 942, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (242, 948, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (242, 954, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (242, 960, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (242, 966, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (242, 972, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (243, 981, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (243, 990, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (243, 999, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (243, 1008, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (243, 1017, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (243, 1026, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (243, 1035, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (243, 1044, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (243, 1053, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (243, 1062, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (243, 1071, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (243, 1080, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (243, 1089, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (243, 1098, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (244, 1112, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (245, 1113, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (245, 1114, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (246, 1116, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (246, 1118, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (247, 1120, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (247, 1122, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (247, 1124, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (247, 1126, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (248, 1130, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (248, 1134, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (248, 1138, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (248, 1142, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (248, 1146, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (248, 1150, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (249, 1156, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (249, 1162, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (249, 1168, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (249, 1174, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (249, 1180, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (249, 1186, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (249, 1192, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (249, 1198, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (249, 1204, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (250, 1213, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (250, 1222, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (250, 1231, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (250, 1240, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (250, 1249, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (250, 1258, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (250, 1267, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (250, 1276, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (250, 1285, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (250, 1294, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (250, 1303, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (250, 1312, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (250, 1321, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (250, 1330, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (251, 1344, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (252, 1345, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (252, 1346, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (253, 1348, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (253, 1350, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (254, 1352, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (254, 1354, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (254, 1356, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (254, 1358, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (255, 1362, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (255, 1366, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (255, 1370, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (255, 1374, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (255, 1378, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (255, 1382, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (256, 1388, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (256, 1394, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (256, 1400, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (256, 1406, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (256, 1412, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (256, 1418, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (256, 1424, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (256, 1430, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (256, 1436, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (257, 1445, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (257, 1454, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (257, 1463, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (257, 1472, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (257, 1481, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (257, 1490, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (257, 1499, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (257, 1508, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (257, 1517, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (257, 1526, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (257, 1535, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (257, 1544, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (257, 1553, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (257, 1562, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (258, 1576, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (259, 1577, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (259, 1578, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (260, 1580, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (260, 1582, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (261, 1584, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (261, 1586, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (261, 1588, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (261, 1590, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (262, 1594, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (262, 1598, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (262, 1602, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (262, 1606, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (262, 1610, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (262, 1614, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (263, 1620, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (263, 1626, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (263, 1632, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (263, 1638, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (263, 1644, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (263, 1650, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (263, 1656, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (263, 1662, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (263, 1668, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (264, 1677, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (264, 1686, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (264, 1695, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (264, 1704, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (264, 1713, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (264, 1722, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (264, 1731, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (264, 1740, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (264, 1749, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (264, 1758, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (264, 1767, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (264, 1776, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (264, 1785, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (264, 1794, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (265, 1808, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (266, 1809, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (266, 1810, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (267, 1812, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (267, 1814, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (268, 1816, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (268, 1818, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (268, 1820, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (268, 1822, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (269, 1826, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (269, 1830, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (269, 1834, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (269, 1838, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (269, 1842, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (269, 1846, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (270, 1852, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (270, 1858, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (270, 1864, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (270, 1870, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (270, 1876, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (270, 1882, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (270, 1888, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (270, 1894, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (270, 1900, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (271, 1909, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (271, 1918, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (271, 1927, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (271, 1936, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (271, 1945, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (271, 1954, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (271, 1963, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (271, 1972, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (271, 1981, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (271, 1990, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (271, 1999, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (271, 2008, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (271, 2017, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (271, 2026, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (272, 2040, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (273, 2041, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (273, 2042, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (274, 2044, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (274, 2046, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (275, 2048, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (275, 2050, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (275, 2052, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (275, 2054, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (276, 2058, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (276, 2062, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (276, 2066, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (276, 2070, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (276, 2074, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (276, 2078, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (277, 2084, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (277, 2090, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (277, 2096, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (277, 2102, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (277, 2108, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (277, 2114, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (277, 2120, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (277, 2126, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (277, 2132, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (278, 2141, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (278, 2150, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (278, 2159, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (278, 2168, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (278, 2177, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (278, 2186, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (278, 2195, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (278, 2204, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (278, 2213, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (278, 2222, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (278, 2231, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (278, 2240, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (278, 2249, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (278, 2258, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (279, 2272, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (280, 2273, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (280, 2274, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (281, 2276, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (281, 2278, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (282, 2280, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (282, 2282, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (282, 2284, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (282, 2286, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (283, 2290, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (283, 2294, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (283, 2298, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (283, 2302, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (283, 2306, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (283, 2310, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (284, 2316, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (284, 2322, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (284, 2328, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (284, 2334, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (284, 2340, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (284, 2346, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (284, 2352, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (284, 2358, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (284, 2364, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (285, 2373, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (285, 2382, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (285, 2391, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (285, 2400, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (285, 2409, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (285, 2418, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (285, 2427, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (285, 2436, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (285, 2445, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (285, 2454, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (285, 2463, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (285, 2472, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (285, 2481, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (285, 2490, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (286, 2504, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (287, 2505, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (287, 2506, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (288, 2508, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (288, 2510, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (289, 2512, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (289, 2514, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (289, 2516, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (289, 2518, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (290, 2522, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (290, 2526, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (290, 2530, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (290, 2534, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (290, 2538, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (290, 2542, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (291, 2548, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (291, 2554, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (291, 2560, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (291, 2566, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (291, 2572, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (291, 2578, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (291, 2584, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (291, 2590, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (291, 2596, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (292, 2605, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (292, 2614, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (292, 2623, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (292, 2632, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (292, 2641, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (292, 2650, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (292, 2659, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (292, 2668, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (292, 2677, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (292, 2686, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (292, 2695, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (292, 2704, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (292, 2713, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (292, 2722, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (293, 2736, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (294, 2737, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (294, 2738, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (295, 2740, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (295, 2742, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (296, 2744, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (296, 2746, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (296, 2748, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (296, 2750, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (297, 2754, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (297, 2758, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (297, 2762, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (297, 2766, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (297, 2770, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (297, 2774, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (298, 2780, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (298, 2786, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (298, 2792, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (298, 2798, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (298, 2804, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (298, 2810, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (298, 2816, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (298, 2822, 1.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (298, 2828, 1.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (299, 2837, 1.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (299, 2846, 1.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (299, 2855, 1.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (299, 2864, 1.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (299, 2873, 1.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (299, 2882, 1.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (299, 2891, 1.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (299, 2900, 1.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (299, 2909, 1.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (299, 2918, 1.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (299, 2927, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (299, 2936, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (299, 2945, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (299, 2954, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (300, 2968, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (301, 2969, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (301, 2970, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (302, 2972, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (302, 2974, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (303, 2976, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (303, 2978, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (303, 2980, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (303, 2982, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (304, 2986, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (304, 2990, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (304, 2994, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (304, 2998, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (304, 3002, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (304, 3006, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (305, 3012, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (305, 3018, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (305, 3024, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (305, 3030, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (305, 3036, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (305, 3042, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (305, 3048, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (305, 3054, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (305, 3060, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (306, 3069, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (306, 3078, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (306, 3087, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (306, 3096, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (306, 3105, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (306, 3114, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (306, 3123, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (306, 3132, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (306, 3141, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (306, 3150, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (306, 3159, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (306, 3168, 1.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (306, 3177, 1.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (306, 3186, 1.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (307, 3200, 1.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (308, 3201, 1.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (308, 3202, 1.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (309, 3204, 1.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (309, 3206, 1.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (310, 3208, 1.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (310, 3210, 1.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (310, 3212, 1.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (310, 3214, 1.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (311, 3218, 1.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (311, 3222, 1.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (311, 3226, 1.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (311, 3230, 1.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (311, 3234, 1.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (311, 3238, 1.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (312, 3244, 1.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (312, 3250, 1.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (312, 3256, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (312, 3262, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (312, 3268, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (312, 3274, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (312, 3280, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (312, 3286, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (312, 3292, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (313, 3301, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (313, 3310, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (313, 3319, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (313, 3328, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (313, 3337, 1.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (313, 3346, 1.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (313, 3355, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (313, 3364, 1.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (313, 3373, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (313, 3382, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (313, 3391, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (313, 3400, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (313, 3409, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (313, 3418, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (314, 3432, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (315, 3433, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (315, 3434, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (316, 3436, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (316, 3438, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (317, 3440, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (317, 3442, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (317, 3444, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (317, 3446, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (318, 3450, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (318, 3454, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (318, 3458, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (318, 3462, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (318, 3466, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (318, 3470, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (319, 3476, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (319, 3482, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (319, 3488, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (319, 3494, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (319, 3500, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (319, 3, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (319, 9, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (319, 15, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (319, 21, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (320, 30, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (320, 39, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (320, 48, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (320, 57, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (320, 66, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (320, 75, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (320, 84, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (320, 93, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (320, 102, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (320, 111, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (320, 120, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (320, 129, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (320, 138, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (320, 147, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (321, 161, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (322, 162, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (322, 163, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (323, 165, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (323, 167, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (324, 169, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (324, 171, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (324, 173, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (324, 175, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (325, 179, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (325, 183, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (325, 187, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (325, 191, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (325, 195, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (325, 199, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (326, 205, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (326, 211, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (326, 217, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (326, 223, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (326, 229, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (326, 235, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (326, 241, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (326, 247, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (326, 253, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (327, 262, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (327, 271, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (327, 280, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (327, 289, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (327, 298, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (327, 307, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (327, 316, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (327, 325, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (327, 334, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (327, 343, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (327, 352, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (327, 361, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (327, 370, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (327, 379, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (328, 393, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (329, 394, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (329, 395, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (330, 397, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (330, 399, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (331, 401, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (331, 403, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (331, 405, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (331, 407, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (332, 411, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (332, 415, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (332, 419, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (332, 423, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (332, 427, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (332, 431, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (333, 437, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (333, 443, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (333, 449, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (333, 455, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (333, 461, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (333, 467, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (333, 473, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (333, 479, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (333, 485, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (334, 494, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (334, 503, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (334, 512, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (334, 521, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (334, 530, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (334, 539, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (334, 548, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (334, 557, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (334, 566, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (334, 575, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (334, 584, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (334, 593, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (334, 602, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (334, 611, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (335, 625, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (336, 626, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (336, 627, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (337, 629, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (337, 631, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (338, 633, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (338, 635, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (338, 637, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (338, 639, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (339, 643, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (339, 647, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (339, 651, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (339, 655, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (339, 659, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (339, 663, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (340, 669, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (340, 675, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (340, 681, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (340, 687, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (340, 693, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (340, 699, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (340, 705, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (340, 711, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (340, 717, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (341, 726, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (341, 735, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (341, 744, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (341, 753, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (341, 762, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (341, 771, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (341, 780, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (341, 789, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (341, 798, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (341, 807, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (341, 816, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (341, 825, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (341, 834, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (341, 843, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (342, 857, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (343, 858, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (343, 859, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (344, 861, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (344, 863, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (345, 865, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (345, 867, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (345, 869, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (345, 871, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (346, 875, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (346, 879, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (346, 883, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (346, 887, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (346, 891, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (346, 895, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (347, 901, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (347, 907, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (347, 913, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (347, 919, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (347, 925, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (347, 931, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (347, 937, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (347, 943, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (347, 949, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (348, 958, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (348, 967, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (348, 976, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (348, 985, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (348, 994, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (348, 1003, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (348, 1012, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (348, 1021, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (348, 1030, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (348, 1039, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (348, 1048, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (348, 1057, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (348, 1066, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (348, 1075, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (349, 1089, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (350, 1090, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (350, 1091, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (351, 1093, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (351, 1095, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (352, 1097, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (352, 1099, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (352, 1101, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (352, 1103, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (353, 1107, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (353, 1111, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (353, 1115, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (353, 1119, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (353, 1123, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (353, 1127, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (354, 1133, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (354, 1139, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (354, 1145, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (354, 1151, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (354, 1157, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (354, 1163, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (354, 1169, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (354, 1175, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (354, 1181, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (355, 1190, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (355, 1199, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (355, 1208, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (355, 1217, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (355, 1226, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (355, 1235, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (355, 1244, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (355, 1253, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (355, 1262, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (355, 1271, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (355, 1280, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (355, 1289, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (355, 1298, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (355, 1307, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (356, 1321, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (357, 1322, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (357, 1323, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (358, 1325, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (358, 1327, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (359, 1329, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (359, 1331, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (359, 1333, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (359, 1335, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (360, 1339, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (360, 1343, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (360, 1347, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (360, 1351, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (360, 1355, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (360, 1359, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (361, 1365, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (361, 1371, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (361, 1377, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (361, 1383, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (361, 1389, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (361, 1395, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (361, 1401, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (361, 1407, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (361, 1413, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (362, 1422, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (362, 1431, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (362, 1440, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (362, 1449, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (362, 1458, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (362, 1467, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (362, 1476, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (362, 1485, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (362, 1494, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (362, 1503, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (362, 1512, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (362, 1521, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (362, 1530, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (362, 1539, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (363, 1553, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (364, 1554, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (364, 1555, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (365, 1557, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (365, 1559, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (366, 1561, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (366, 1563, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (366, 1565, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (366, 1567, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (367, 1571, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (367, 1575, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (367, 1579, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (367, 1583, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (367, 1587, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (367, 1591, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (368, 1597, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (368, 1603, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (368, 1609, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (368, 1615, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (368, 1621, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (368, 1627, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (368, 1633, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (368, 1639, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (368, 1645, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (369, 1654, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (369, 1663, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (369, 1672, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (369, 1681, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (369, 1690, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (369, 1699, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (369, 1708, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (369, 1717, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (369, 1726, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (369, 1735, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (369, 1744, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (369, 1753, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (369, 1762, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (369, 1771, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (370, 1785, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (371, 1786, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (371, 1787, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (372, 1789, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (372, 1791, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (373, 1793, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (373, 1795, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (373, 1797, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (373, 1799, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (374, 1803, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (374, 1807, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (374, 1811, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (374, 1815, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (374, 1819, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (374, 1823, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (375, 1829, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (375, 1835, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (375, 1841, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (375, 1847, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (375, 1853, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (375, 1859, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (375, 1865, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (375, 1871, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (375, 1877, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (376, 1886, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (376, 1895, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (376, 1904, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (376, 1913, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (376, 1922, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (376, 1931, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (376, 1940, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (376, 1949, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (376, 1958, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (376, 1967, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (376, 1976, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (376, 1985, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (376, 1994, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (376, 2003, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (377, 2017, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (378, 2018, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (378, 2019, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (379, 2021, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (379, 2023, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (380, 2025, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (380, 2027, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (380, 2029, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (380, 2031, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (381, 2035, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (381, 2039, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (381, 2043, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (381, 2047, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (381, 2051, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (381, 2055, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (382, 2061, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (382, 2067, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (382, 2073, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (382, 2079, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (382, 2085, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (382, 2091, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (382, 2097, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (382, 2103, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (382, 2109, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (383, 2118, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (383, 2127, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (383, 2136, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (383, 2145, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (383, 2154, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (383, 2163, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (383, 2172, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (383, 2181, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (383, 2190, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (383, 2199, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (383, 2208, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (383, 2217, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (383, 2226, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (383, 2235, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (384, 2249, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (385, 2250, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (385, 2251, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (386, 2253, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (386, 2255, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (387, 2257, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (387, 2259, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (387, 2261, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (387, 2263, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (388, 2267, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (388, 2271, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (388, 2275, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (388, 2279, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (388, 2283, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (388, 2287, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (389, 2293, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (389, 2299, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (389, 2305, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (389, 2311, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (389, 2317, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (389, 2323, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (389, 2329, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (389, 2335, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (389, 2341, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (390, 2350, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (390, 2359, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (390, 2368, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (390, 2377, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (390, 2386, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (390, 2395, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (390, 2404, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (390, 2413, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (390, 2422, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (390, 2431, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (390, 2440, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (390, 2449, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (390, 2458, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (390, 2467, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (391, 2481, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (392, 2482, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (392, 2483, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (393, 2485, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (393, 2487, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (394, 2489, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (394, 2491, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (394, 2493, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (394, 2495, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (395, 2499, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (395, 2503, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (395, 2507, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (395, 2511, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (395, 2515, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (395, 2519, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (396, 2525, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (396, 2531, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (396, 2537, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (396, 2543, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (396, 2549, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (396, 2555, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (396, 2561, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (396, 2567, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (396, 2573, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (397, 2582, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (397, 2591, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (397, 2600, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (397, 2609, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (397, 2618, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (397, 2627, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (397, 2636, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (397, 2645, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (397, 2654, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (397, 2663, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (397, 2672, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (397, 2681, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (397, 2690, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (397, 2699, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (398, 2713, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (399, 2714, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (399, 2715, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (400, 2717, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (400, 2719, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (401, 2721, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (401, 2723, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (401, 2725, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (401, 2727, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (402, 2731, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (402, 2735, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (402, 2739, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (402, 2743, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (402, 2747, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (402, 2751, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (403, 2757, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (403, 2763, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (403, 2769, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (403, 2775, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (403, 2781, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (403, 2787, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (403, 2793, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (403, 2799, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (403, 2805, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (404, 2814, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (404, 2823, 1.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (404, 2832, 1.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (404, 2841, 1.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (404, 2850, 1.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (404, 2859, 1.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (404, 2868, 1.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (404, 2877, 1.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (404, 2886, 1.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (404, 2895, 1.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (404, 2904, 1.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (404, 2913, 1.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (404, 2922, 1.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (404, 2931, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (405, 2945, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (406, 2946, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (406, 2947, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (407, 2949, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (407, 2951, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (408, 2953, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (408, 2955, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (408, 2957, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (408, 2959, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (409, 2963, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (409, 2967, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (409, 2971, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (409, 2975, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (409, 2979, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (409, 2983, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (410, 2989, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (410, 2995, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (410, 3001, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (410, 3007, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (410, 3013, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (410, 3019, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (410, 3025, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (410, 3031, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (410, 3037, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (411, 3046, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (411, 3055, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (411, 3064, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (411, 3073, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (411, 3082, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (411, 3091, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (411, 3100, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (411, 3109, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (411, 3118, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (411, 3127, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (411, 3136, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (411, 3145, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (411, 3154, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (411, 3163, 0.99, 1); +INSERT INTO invoice_lines (invoice_id, track_id, unit_price, quantity) VALUES (412, 3177, 1.99, 1); + +INSERT INTO playlists (name) VALUES ('Music'); +INSERT INTO playlists (name) VALUES ('Movies'); +INSERT INTO playlists (name) VALUES ('TV Shows'); +INSERT INTO playlists (name) VALUES ('Audiobooks'); +INSERT INTO playlists (name) VALUES ('90’s Music'); +INSERT INTO playlists (name) VALUES ('Audiobooks'); +INSERT INTO playlists (name) VALUES ('Movies'); +INSERT INTO playlists (name) VALUES ('Music'); +INSERT INTO playlists (name) VALUES ('Music Videos'); +INSERT INTO playlists (name) VALUES ('TV Shows'); +INSERT INTO playlists (name) VALUES ('Brazilian Music'); +INSERT INTO playlists (name) VALUES ('Classical'); +INSERT INTO playlists (name) VALUES ('Classical 101 - Deep Cuts'); +INSERT INTO playlists (name) VALUES ('Classical 101 - Next Steps'); +INSERT INTO playlists (name) VALUES ('Classical 101 - The Basics'); +INSERT INTO playlists (name) VALUES ('Grunge'); +INSERT INTO playlists (name) VALUES ('Heavy Metal Classic'); +INSERT INTO playlists (name) VALUES ('On-The-Go 1'); + +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3402); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3389); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3390); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3391); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3392); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3393); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3394); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3395); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3396); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3397); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3398); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3399); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3400); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3401); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3336); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3478); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3375); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3376); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3377); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3378); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3379); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3380); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3381); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3382); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3383); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3384); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3385); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3386); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3387); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3388); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3365); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3366); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3367); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3368); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3369); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3370); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3371); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3372); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3373); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3374); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 99); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 100); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 101); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 102); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 103); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 104); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 105); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 106); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 107); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 108); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 109); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 110); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 166); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 167); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 168); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 169); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 170); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 171); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 172); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 173); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 174); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 175); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 176); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 177); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 178); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 179); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 180); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 181); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 182); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2591); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2592); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2593); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2594); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2595); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2596); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2597); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2598); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2599); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2600); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2601); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2602); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2603); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2604); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2605); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2606); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2607); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2608); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 923); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 924); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 925); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 926); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 927); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 928); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 929); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 930); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 931); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 932); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 933); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 934); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 935); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 936); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 937); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 938); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 939); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 940); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 941); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 942); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 943); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 944); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 945); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 946); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 947); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 948); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 964); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 965); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 966); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 967); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 968); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 969); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 970); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 971); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 972); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 973); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 974); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1009); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1010); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1011); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1012); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1013); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1014); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1015); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1016); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1017); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1018); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1019); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1133); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1134); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1135); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1136); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1137); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1138); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1139); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1140); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1141); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1142); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1143); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1144); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1145); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 468); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 469); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 470); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 471); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 472); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 473); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 474); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 475); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 476); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 477); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 478); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 479); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 480); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 481); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 482); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 483); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 484); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 485); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 486); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 487); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 488); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1466); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1467); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1468); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1469); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1470); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1471); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1472); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1473); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1474); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1475); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1476); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1477); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1478); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 529); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 530); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 531); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 532); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 533); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 534); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 535); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 536); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 537); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 538); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 539); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 540); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 541); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 542); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2165); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2166); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2167); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2168); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2169); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2170); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2171); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2172); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2173); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2174); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2175); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2176); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2177); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2318); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2319); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2320); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2321); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2322); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2323); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2324); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2325); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2326); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2327); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2328); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2329); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2330); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2331); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2332); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2333); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2285); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2286); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2287); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2288); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2289); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2290); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2291); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2292); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2293); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2294); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2295); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2310); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2311); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2312); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2313); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2314); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2315); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2316); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2317); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2282); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2283); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2284); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2334); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2335); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2336); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2337); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2338); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2339); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2340); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2341); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2342); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2343); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2358); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2359); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2360); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2361); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2362); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2363); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2364); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2365); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2366); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2367); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2368); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2369); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2370); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2371); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2372); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2373); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2374); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2472); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2473); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2474); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2475); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2476); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2477); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2478); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2479); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2480); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2481); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2482); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2483); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2484); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2485); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2486); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2487); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2488); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2489); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2490); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2491); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2492); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2493); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2494); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2495); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2496); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2497); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2498); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2499); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2500); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2501); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2502); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2503); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2504); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2505); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2705); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2706); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2707); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2708); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2709); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2710); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2711); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2712); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2713); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2714); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2715); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2716); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2717); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2718); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2719); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2720); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2721); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2722); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2723); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2724); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2725); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2726); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2727); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2728); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2729); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2730); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2781); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2782); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2783); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2784); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2785); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2786); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2787); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2788); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2789); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2790); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2791); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2792); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2793); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2794); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2795); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2796); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2797); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2798); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2799); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2800); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2801); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2802); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2803); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2804); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2805); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2806); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2807); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2808); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2809); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2810); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2811); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2812); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2813); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2814); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2815); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2816); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2817); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2818); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2572); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2573); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2574); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2575); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2576); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2577); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2578); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2579); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2580); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2581); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2582); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2583); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2584); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2585); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2586); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2587); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2588); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2589); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2590); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 194); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 195); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 196); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 197); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 198); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 199); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 200); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 201); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 202); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 203); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 204); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 891); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 892); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 893); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 894); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 895); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 896); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 897); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 898); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 899); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 900); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 901); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 902); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 903); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 904); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 905); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 906); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 907); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 908); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 909); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 910); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 911); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 912); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 913); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 914); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 915); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 916); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 917); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 918); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 919); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 920); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 921); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 922); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1268); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1269); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1270); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1271); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1272); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1273); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1274); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1275); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1276); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2532); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2533); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2534); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2535); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2536); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2537); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2538); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2539); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2540); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2541); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 646); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 647); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 648); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 649); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 651); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 653); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 655); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 658); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 652); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 656); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 657); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 650); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 659); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 654); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 660); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3427); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3411); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3412); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3419); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3482); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3438); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3485); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3403); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3406); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3442); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3421); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3436); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3450); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3454); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3491); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3413); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3426); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3416); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3501); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3487); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3417); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3432); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3443); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3447); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3452); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3441); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3434); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3500); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3449); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3405); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3488); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3423); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3499); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3445); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3440); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3453); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3497); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3494); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3439); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3422); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3407); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3495); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3435); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3490); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3489); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3448); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3492); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3425); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3483); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3420); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3424); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3493); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3437); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3498); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3446); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3444); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3496); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3502); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3359); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3433); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3415); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3479); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3481); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3404); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3486); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3414); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3410); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3431); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3418); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3430); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3408); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3480); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3409); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3484); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1033); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1034); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1035); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1036); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1037); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1038); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1039); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1040); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1041); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1042); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1043); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1044); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1045); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1046); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1047); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1048); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1049); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1050); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1051); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1052); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1053); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1054); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1055); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1056); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3324); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3331); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3332); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3322); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3329); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1455); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1456); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1457); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1458); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1459); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1460); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1461); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1462); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1463); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1464); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1465); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3352); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3358); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3326); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3327); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3330); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3321); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3319); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3328); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3325); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3323); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3334); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3333); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3335); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3320); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1245); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1246); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1247); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1248); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1249); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1250); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1251); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1252); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1253); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1254); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1255); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1277); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1278); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1279); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1280); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1281); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1282); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1283); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1284); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1285); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1286); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1287); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1288); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1300); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1301); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1302); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1303); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1304); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3301); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3300); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3302); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3303); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3304); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3305); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3306); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3307); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3308); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3309); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3310); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3311); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3312); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3313); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3314); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3315); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3316); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3317); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3318); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2238); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2239); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2240); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2241); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2242); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2243); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2244); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2245); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2246); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2247); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2248); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2249); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2250); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2251); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2252); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2253); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3357); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3350); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3349); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 63); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 64); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 65); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 66); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 67); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 68); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 69); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 70); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 71); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 72); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 73); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 74); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 75); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 76); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 123); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 124); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 125); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 126); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 127); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 128); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 129); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 130); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 842); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 843); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 844); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 845); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 846); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 847); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 848); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 849); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 850); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 624); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 625); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 626); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 627); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 628); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 629); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 630); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 631); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 632); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 633); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 634); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 635); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 636); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 637); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 638); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 639); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 640); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 641); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 642); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 643); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 644); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 645); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1102); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1103); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1104); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1188); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1189); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1190); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1191); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1192); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1193); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1194); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1195); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1196); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1197); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1198); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1199); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1200); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 597); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 598); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 599); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 600); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 601); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 602); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 603); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 604); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 605); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 606); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 607); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 608); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 609); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 610); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 611); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 612); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 613); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 614); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 615); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 616); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 617); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 618); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 619); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1902); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1903); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1904); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1905); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1906); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1907); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1908); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1909); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1910); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1911); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1912); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1913); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1914); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1915); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 456); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 457); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 458); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 459); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 460); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 461); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 462); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 463); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 464); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 465); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 466); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 467); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2523); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2524); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2525); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2526); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2527); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2528); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2529); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2530); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2531); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 379); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 391); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 376); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 397); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 382); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 389); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 404); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 406); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 380); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 394); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 515); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 516); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 517); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 518); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 519); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 520); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 521); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 522); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 523); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 524); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 525); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 526); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 527); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 528); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 205); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 206); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 207); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 208); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 209); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 210); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 211); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 212); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 213); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 214); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 215); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 216); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 217); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 218); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 219); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 220); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 221); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 222); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 223); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 224); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 225); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 715); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 716); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 717); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 718); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 719); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 720); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 721); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 722); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 723); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 724); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 725); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 726); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 727); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 728); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 729); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 730); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 731); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 732); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 733); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 734); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 735); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 736); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 737); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 738); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 739); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 740); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 741); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 742); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 743); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 744); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 226); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 227); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 228); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 229); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 230); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 231); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 232); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 233); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 234); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 235); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 236); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 237); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 238); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 239); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 240); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 241); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 242); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 243); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 244); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 245); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 246); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 247); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 248); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 249); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 250); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 251); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 252); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 253); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 254); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 255); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 256); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 257); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 258); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 259); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 260); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 261); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 262); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 263); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 264); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 265); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 266); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 267); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 268); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 269); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 270); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 271); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 272); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 273); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 274); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 275); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 276); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 277); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 278); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 279); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 280); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 281); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 313); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 314); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 315); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 316); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 317); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 318); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 319); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 320); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 321); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 322); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 399); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 851); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 852); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 853); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 854); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 855); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 856); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 857); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 858); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 859); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 860); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 861); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 862); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 863); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 864); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 865); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 866); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 867); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 868); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 869); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 870); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 871); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 872); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 873); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 874); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 875); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 876); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 583); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 584); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 585); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 586); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 587); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 588); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 589); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 590); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 591); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 592); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 593); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 594); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 595); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 596); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 388); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 402); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 407); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 396); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 877); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 878); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 879); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 880); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 881); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 882); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 883); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 884); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 885); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 886); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 887); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 888); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 889); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 890); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 975); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 976); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 977); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 978); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 979); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 980); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 981); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 982); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 983); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 984); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 985); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 986); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 987); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 988); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 390); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1057); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1058); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1059); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1060); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1061); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1062); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1063); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1064); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1065); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1066); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1067); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1068); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1069); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1070); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1071); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1072); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 377); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 395); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1087); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1088); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1089); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1090); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1091); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1092); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1093); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1094); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1095); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1096); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1097); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1098); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1099); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1100); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1101); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1105); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1106); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1107); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1108); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1109); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1110); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1111); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1112); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1113); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1114); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1115); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1116); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1117); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1118); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1119); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1120); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 501); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 502); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 503); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 504); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 505); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 506); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 507); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 508); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 509); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 510); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 511); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 512); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 513); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 514); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 405); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 378); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 392); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 403); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1506); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1507); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1508); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1509); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1510); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1511); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1512); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1513); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1514); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1515); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1516); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1517); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1518); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1519); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 381); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1520); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1521); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1522); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1523); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1524); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1525); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1526); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1527); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1528); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1529); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1530); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1531); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 400); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1686); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1687); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1688); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1689); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1690); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1691); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1692); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1693); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1694); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1695); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1696); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1697); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1698); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1699); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1700); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1701); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1671); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1672); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1673); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1674); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1675); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1676); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1677); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1678); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1679); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1680); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1681); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1682); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1683); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1684); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1685); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3356); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 384); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1717); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1720); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1722); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1723); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1726); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1727); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1730); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1731); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1733); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1736); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1737); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1740); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1742); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1743); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1718); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1719); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1721); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1724); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1725); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1728); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1729); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1732); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1734); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1735); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1738); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1739); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1741); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1744); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 374); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1755); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1762); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1763); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1756); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1764); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1757); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1758); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1765); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1766); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1759); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1760); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1767); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1761); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1768); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1769); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1770); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1771); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1772); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 398); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1916); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1917); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1918); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1919); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1920); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1921); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1922); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1923); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1924); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1925); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1926); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1927); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1928); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1929); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1930); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1931); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1932); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1933); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1934); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1935); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1936); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1937); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1938); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1939); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1940); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1941); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 375); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 385); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 383); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 387); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2030); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2031); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2032); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2033); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2034); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2035); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2036); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2037); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2038); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2039); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2040); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2041); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2042); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2043); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 393); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2044); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2045); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2046); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2047); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2048); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2049); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2050); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2051); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2052); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2053); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2054); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2055); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2056); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2057); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2058); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2059); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2060); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2061); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2062); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2063); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2064); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2065); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2066); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2067); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2068); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2069); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2070); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2071); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2072); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2073); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2074); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2075); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2076); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2077); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2078); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2079); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2080); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2081); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2082); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2083); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2084); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2085); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2086); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2087); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2088); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2089); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2090); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2091); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2092); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 386); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 401); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2751); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2752); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2753); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2754); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2755); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2756); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2757); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2758); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2759); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2760); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2761); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2762); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2763); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2764); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2765); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2766); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2767); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2768); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2769); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2770); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2771); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2772); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2773); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2774); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2775); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2776); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2777); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2778); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2779); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2780); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 556); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 557); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 558); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 559); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 560); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 561); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 562); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 563); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 564); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 565); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 566); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 567); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 568); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 569); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 661); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 662); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 663); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 664); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 665); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 666); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 667); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 668); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 669); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 670); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 671); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 672); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 673); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 674); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3117); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3118); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3119); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3120); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3121); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3122); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3123); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3124); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3125); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3126); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3127); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3128); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3129); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3130); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3131); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3146); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3147); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3148); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3149); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3150); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3151); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3152); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3153); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3154); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3155); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3156); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3157); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3158); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3159); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3160); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3161); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3162); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3163); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3164); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 77); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 78); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 79); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 80); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 81); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 82); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 83); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 84); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 131); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 132); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 133); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 134); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 135); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 136); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 137); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 138); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 139); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 140); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 141); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 142); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 143); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 144); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 145); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 146); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 147); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 148); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 149); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 150); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 151); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 152); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 153); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 154); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 155); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 156); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 157); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 158); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 159); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 160); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 161); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 162); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 163); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 164); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 165); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 183); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 184); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 185); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 186); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 187); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 188); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 189); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 190); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 191); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 192); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 193); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1121); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1122); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1123); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1124); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1125); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1126); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1127); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1128); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1129); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1130); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1131); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1132); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1174); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1175); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1176); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1177); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1178); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1179); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1180); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1181); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1182); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1183); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1184); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1185); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1186); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1187); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1289); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1290); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1291); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1292); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1293); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1294); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1295); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1296); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1297); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1298); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1299); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1325); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1326); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1327); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1328); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1329); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1330); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1331); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1332); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1333); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1334); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1391); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1388); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1394); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1387); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1392); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1389); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1390); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1335); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1336); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1337); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1338); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1339); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1340); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1341); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1342); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1343); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1344); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1345); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1346); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1347); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1348); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1349); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1350); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1351); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1212); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1213); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1214); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1215); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1216); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1217); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1218); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1219); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1220); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1221); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1222); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1223); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1224); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1225); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1226); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1227); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1228); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1229); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1230); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1231); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1232); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1233); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1234); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1352); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1353); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1354); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1355); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1356); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1357); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1358); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1359); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1360); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1361); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1364); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1371); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1372); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1373); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1374); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1375); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1376); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1377); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1378); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1379); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1380); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1381); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1382); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1386); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1383); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1385); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1384); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1546); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1547); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1548); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1549); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1550); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1551); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1552); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1553); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1554); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1555); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1556); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1557); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1558); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1559); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1560); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1561); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1893); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1894); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1895); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1896); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1897); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1898); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1899); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1900); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1901); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1801); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1802); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1803); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1804); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1805); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1806); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1807); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1808); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1809); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1810); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1811); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1812); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 408); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 409); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 410); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 411); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 412); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 413); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 414); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 415); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 416); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 417); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 418); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1813); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1814); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1815); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1816); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1817); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1818); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1819); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1820); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1821); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1822); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1823); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1824); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1825); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1826); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1827); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1828); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1829); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1830); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1831); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1832); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1833); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1834); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1835); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1836); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1837); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1838); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1839); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1840); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1841); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1842); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1843); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1844); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1845); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1846); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1847); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1848); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1849); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1850); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1851); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1852); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1853); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1854); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1855); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1856); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1857); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1858); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1859); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1860); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1861); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1862); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1863); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1864); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1865); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1866); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1867); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1868); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1869); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1870); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1871); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1872); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1873); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1874); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1875); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1876); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1877); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1878); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1879); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1880); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1881); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1882); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1883); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1884); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1885); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1886); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1887); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1888); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1889); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1890); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1891); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1892); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1969); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1970); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1971); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1972); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1973); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1974); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1975); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1976); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1977); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1978); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1979); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1980); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1981); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1982); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1983); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1984); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1985); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1942); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1943); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1944); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1945); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1946); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1947); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1948); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1949); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1950); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1951); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1952); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1953); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1954); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1955); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1956); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2099); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2100); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2101); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2102); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2103); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2104); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2105); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2106); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2107); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2108); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2109); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2110); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2111); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2112); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2554); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2555); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2556); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2557); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2558); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2559); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2560); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2561); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2562); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2563); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2564); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3132); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3133); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3134); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3135); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3136); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3137); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3138); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3139); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3140); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3141); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3142); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3143); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3144); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3145); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3451); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3256); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3467); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3468); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3469); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3470); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3471); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3472); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3473); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3474); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3475); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3476); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3477); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3262); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3268); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3263); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3266); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3255); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3259); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3260); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3273); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3265); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3274); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3267); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3261); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3272); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3257); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3258); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3270); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3271); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3254); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3275); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3269); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3253); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 323); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 324); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 325); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 326); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 327); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 328); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 329); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 330); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 331); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 332); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 333); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 334); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 335); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 336); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3264); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3455); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3456); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3457); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3458); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3459); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3460); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3461); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3462); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3463); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3464); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3465); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3466); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1414); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1415); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1416); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1417); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1418); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1419); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1420); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1421); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1422); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1423); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1424); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1425); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1426); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1427); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1428); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1429); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1430); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1431); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1432); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1433); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1444); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1445); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1446); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1447); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1448); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1449); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1450); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1451); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1452); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1453); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1454); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1773); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1774); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1775); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1776); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1777); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1778); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1779); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1780); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1781); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1782); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1783); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1784); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1785); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1786); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1787); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1788); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1789); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1790); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 282); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 283); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 284); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 285); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 286); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 287); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 288); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 289); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 290); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 291); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 292); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 293); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 294); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 295); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 296); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 297); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 298); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 299); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 300); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 301); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 302); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 303); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 304); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 305); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 306); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 307); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 308); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 309); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 310); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 311); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 312); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2216); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2217); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2218); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2219); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2220); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2221); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2222); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2223); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2224); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2225); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2226); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2227); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2228); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3038); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3039); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3040); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3041); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3042); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3043); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3044); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3045); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3046); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3047); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3048); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3049); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3050); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3051); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 6); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 7); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 8); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 9); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 10); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 11); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 12); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 13); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 14); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 15); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 16); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 17); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 18); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 19); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 20); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 21); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 22); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 4); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 5); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 23); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 24); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 25); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 26); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 27); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 28); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 29); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 30); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 31); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 32); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 33); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 34); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 35); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 36); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 37); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 38); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 39); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 40); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 41); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 42); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 43); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 44); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 45); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 46); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 47); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 48); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 49); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 50); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 51); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 52); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 53); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 54); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 55); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 56); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 57); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 58); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 59); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 60); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 61); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 62); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 85); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 86); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 87); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 88); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 89); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 90); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 91); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 92); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 93); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 94); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 95); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 96); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 97); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 98); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 675); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 676); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 677); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 678); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 679); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 680); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 681); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 682); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 683); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 684); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 685); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 686); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 687); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 688); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 689); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 690); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 691); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 692); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 693); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 694); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 695); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 696); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 697); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 698); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 699); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 700); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 701); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 702); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 703); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 704); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 705); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 706); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 707); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 708); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 709); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 710); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 711); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 712); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 713); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 714); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2609); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2610); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2611); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2612); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2613); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2614); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2615); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2616); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2617); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2618); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2619); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2620); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2621); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2622); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2623); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2624); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2625); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2626); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2627); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2628); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2629); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2630); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2631); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2632); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2633); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2634); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2635); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2636); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2637); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2638); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 489); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 490); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 491); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 492); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 493); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 494); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 495); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 496); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 497); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 498); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 499); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 500); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 816); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 817); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 818); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 819); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 820); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 821); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 822); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 823); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 824); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 825); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 745); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 746); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 747); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 748); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 749); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 750); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 751); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 752); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 753); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 754); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 755); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 756); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 757); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 758); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 759); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 760); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 620); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 621); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 622); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 623); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 761); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 762); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 763); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 764); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 765); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 766); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 767); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 768); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 769); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 770); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 771); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 772); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 773); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 774); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 775); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 776); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 777); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 778); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 779); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 780); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 781); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 782); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 783); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 784); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 785); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 543); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 544); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 545); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 546); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 547); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 548); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 549); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 786); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 787); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 788); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 789); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 790); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 791); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 792); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 793); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 794); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 795); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 796); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 797); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 798); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 799); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 800); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 801); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 802); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 803); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 804); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 805); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 806); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 807); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 808); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 809); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 810); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 811); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 812); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 813); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 814); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 815); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 826); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 827); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 828); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 829); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 830); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 831); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 832); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 833); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 834); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 835); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 836); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 837); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 838); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 839); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 840); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 841); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2639); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2640); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2641); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2642); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2643); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2644); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2645); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2646); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2647); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2648); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2649); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3225); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 949); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 950); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 951); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 952); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 953); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 954); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 955); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 956); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 957); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 958); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 959); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 960); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 961); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 962); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 963); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1020); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1021); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1022); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1023); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1024); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1025); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1026); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1027); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1028); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1029); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1030); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1031); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1032); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 989); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 990); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 991); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 992); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 993); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 994); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 995); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 996); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 997); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 998); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 999); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1000); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1001); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1002); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1003); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1004); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1005); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1006); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1007); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1008); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 351); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 352); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 353); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 354); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 355); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 356); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 357); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 358); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 359); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1146); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1147); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1148); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1149); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1150); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1151); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1152); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1153); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1154); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1155); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1156); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1157); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1158); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1159); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1160); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1161); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1162); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1163); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1164); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1165); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1166); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1167); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1168); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1169); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1170); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1171); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1172); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1173); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1235); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1236); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1237); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1238); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1239); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1240); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1241); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1242); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1243); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1244); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1256); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1257); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1258); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1259); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1260); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1261); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1262); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1263); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1264); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1265); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1266); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1267); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1305); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1306); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1307); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1308); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1309); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1310); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1311); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1312); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1313); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1314); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1315); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1316); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1317); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1318); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1319); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1320); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1321); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1322); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1323); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1324); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1201); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1202); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1203); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1204); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1205); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1206); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1207); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1208); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1209); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1210); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1211); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1393); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1362); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1363); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1365); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1366); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1367); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1368); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1369); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1370); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1406); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1407); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1408); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1409); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1410); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1411); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1412); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1413); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1395); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1396); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1397); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1398); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1399); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1400); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1401); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1402); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1403); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1404); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1405); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1434); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1435); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1436); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1437); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1438); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1439); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1440); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1441); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1442); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1443); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1479); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1480); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1481); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1482); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1483); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1484); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1485); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1486); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1487); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1488); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1489); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1490); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1491); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1492); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1493); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1494); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1495); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1496); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1497); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1498); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1499); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1500); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1501); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1502); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1503); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1504); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1505); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 436); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 437); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 438); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 439); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 440); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 441); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 442); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 443); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 444); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 445); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 446); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 447); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 448); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 449); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 450); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 451); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 452); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 453); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 454); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 455); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1562); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1563); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1564); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1565); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1566); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1567); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1568); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1569); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1570); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1571); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1572); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1573); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1574); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1575); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1576); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 337); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 338); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 339); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 340); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 341); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 342); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 343); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 344); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 345); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 346); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 347); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 348); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 349); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 350); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1577); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1578); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1579); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1580); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1581); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1582); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1583); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1584); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1585); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1586); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1587); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1588); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1589); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1590); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1591); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1592); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1593); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1594); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1595); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1596); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1597); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1598); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1599); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1600); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1601); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1602); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1603); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1604); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1605); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1606); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1607); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1608); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1609); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1610); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1611); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1612); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1613); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1614); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1615); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1616); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1617); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1618); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1619); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1620); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1621); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1622); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1623); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1624); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1625); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1626); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1627); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1628); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1629); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1630); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1631); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1632); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1633); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1634); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1635); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1636); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1637); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1638); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1639); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1640); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1641); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1642); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1643); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1644); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1645); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 550); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 551); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 552); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 553); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 554); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 555); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1646); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1647); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1648); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1649); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1650); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1651); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1652); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1653); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1654); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1655); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1656); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1657); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1658); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1659); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1660); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1661); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1662); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1663); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1664); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1665); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1666); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1667); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1668); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1669); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1670); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1702); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1703); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1704); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1705); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1706); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1707); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1708); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1709); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1710); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1711); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1712); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1713); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1714); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1715); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1716); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1745); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1746); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1747); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1748); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1749); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1750); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1751); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1752); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1753); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1754); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1791); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1792); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1793); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1794); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1795); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1796); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1797); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1798); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1799); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1800); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1986); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1987); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1988); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1989); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1990); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1991); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1992); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1993); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1994); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1995); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1996); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1997); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1998); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1999); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2000); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2001); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2002); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2003); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2004); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2005); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2006); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2007); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2008); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2009); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2010); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2011); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2012); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2013); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2014); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2015); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2016); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2017); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2018); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2019); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2020); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2021); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2022); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2023); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2024); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2025); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2026); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2027); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2028); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2029); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2093); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2094); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2095); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2096); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2097); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2098); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3276); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3277); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3278); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3279); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3280); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3281); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3282); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3283); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3284); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3285); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3286); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3287); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2113); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2114); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2115); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2116); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2117); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2118); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2119); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2120); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2121); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2122); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2123); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2124); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2139); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2140); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2141); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2142); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2143); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2144); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2145); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2146); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2147); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2148); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2149); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2150); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2151); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2152); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2153); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2154); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2155); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2156); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2157); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2158); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2159); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2160); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2161); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2162); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2163); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2164); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2178); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2179); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2180); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2181); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2182); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2183); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2184); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2185); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2186); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2187); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2188); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2189); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2190); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2191); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2192); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2193); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2194); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2195); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2196); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2197); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2198); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2199); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2200); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2201); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2202); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2203); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2204); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2205); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2206); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2207); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2208); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2209); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2210); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2211); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2212); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2213); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2214); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2215); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2229); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2230); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2231); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2232); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2233); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2234); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2235); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2236); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2237); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2650); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2651); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2652); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2653); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2654); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2655); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2656); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2657); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2658); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2659); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2660); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2661); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2662); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2663); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3353); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3355); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2254); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2255); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2256); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2257); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2258); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2259); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2260); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2261); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2262); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2263); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2264); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2265); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2266); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2267); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2268); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2269); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2270); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 419); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 420); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 421); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 422); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 423); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 424); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 425); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 426); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 427); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 428); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 429); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 430); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 431); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 432); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 433); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 434); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 435); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2271); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2272); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2273); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2274); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2275); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2276); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2277); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2278); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2279); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2280); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2281); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2296); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2297); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2298); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2299); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2300); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2301); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2302); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2303); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2304); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2305); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2306); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2307); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2308); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2309); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2344); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2345); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2346); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2347); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2348); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2349); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2350); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2351); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2352); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2353); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2354); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2355); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2356); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2357); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2375); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2376); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2377); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2378); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2379); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2380); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2381); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2382); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2383); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2384); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2385); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2386); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2387); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2388); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2389); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2390); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2391); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2392); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2393); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2394); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2395); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2396); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2397); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2398); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2399); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2400); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2401); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2402); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2403); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2404); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2405); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2664); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2665); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2666); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2667); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2668); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2669); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2670); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2671); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2672); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2673); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2674); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2675); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2676); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2677); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2678); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2679); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2680); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2681); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2682); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2683); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2684); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2685); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2686); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2687); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2688); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2689); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2690); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2691); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2692); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2693); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2694); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2695); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2696); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2697); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2698); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2699); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2700); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2701); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2702); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2703); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2704); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2406); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2407); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2408); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2409); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2410); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2411); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2412); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2413); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2414); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2415); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2416); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2417); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2418); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2419); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2420); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2421); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2422); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2423); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2424); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2425); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2426); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2427); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2428); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2429); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2430); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2431); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2432); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2433); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 570); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 573); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 577); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 580); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 581); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 571); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 579); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 582); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 572); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 575); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 578); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 574); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 576); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3288); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3289); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3290); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3291); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3292); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3293); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3294); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3295); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3296); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3297); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3298); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3299); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2434); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2435); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2436); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2437); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2438); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2439); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2440); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2441); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2442); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2443); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2444); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2445); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2446); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2447); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2448); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2449); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2450); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2451); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2452); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2453); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2454); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2455); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2456); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2457); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2458); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2459); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2460); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2461); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2462); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2463); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2464); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2465); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2466); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2467); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2468); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2469); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2470); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2471); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2506); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2507); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2508); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2509); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2510); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2511); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2512); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2513); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2514); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2515); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2516); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2517); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2518); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2519); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2520); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2521); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2522); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2542); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2543); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2544); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2545); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2546); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2547); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2548); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2549); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2550); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2551); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2552); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2553); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2565); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2566); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2567); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2568); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2569); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2570); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2571); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2926); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2927); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2928); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2929); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2930); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2931); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2932); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2933); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2934); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2935); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2936); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2937); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2938); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2939); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2940); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2941); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2942); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2943); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2944); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2945); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2946); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2947); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2948); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2949); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2950); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2951); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2952); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2953); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2954); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2955); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2956); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2957); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2958); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2959); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2960); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2961); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2962); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2963); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3004); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3005); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3006); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3007); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3008); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3009); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3010); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3011); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3012); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3013); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3014); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3015); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3016); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3017); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2964); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2965); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2966); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2967); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2968); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2969); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2970); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2971); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2972); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2973); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2974); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2975); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2976); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2977); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2978); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2979); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2980); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2981); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2982); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2983); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2984); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2985); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2986); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2987); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2988); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2989); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2990); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2991); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2992); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2993); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2994); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2995); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2996); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2997); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2998); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2999); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3000); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3001); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3002); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3003); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3018); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3019); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3020); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3021); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3022); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3023); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3024); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3025); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3026); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3027); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3028); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3029); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3030); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3031); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3032); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3033); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3034); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3035); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3036); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3037); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3064); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3065); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3066); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3067); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3068); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3069); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3070); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3071); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3072); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3073); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3074); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3075); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3076); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3077); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3078); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3079); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3080); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3052); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3053); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3054); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3055); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3056); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3057); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3058); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3059); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3060); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3061); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3062); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3063); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3081); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3082); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3083); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3084); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3085); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3086); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3087); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3088); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3089); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3090); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3091); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3092); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3093); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3094); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3095); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3096); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3097); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3098); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3099); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3100); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3101); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3102); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3103); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3104); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3105); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3106); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3107); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3108); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3109); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3110); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3111); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3112); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3113); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3114); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3115); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3116); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2731); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2732); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2733); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2734); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2735); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2736); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2737); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2738); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2739); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2740); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2741); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2742); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2743); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2744); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2745); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2746); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2747); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2748); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2749); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2750); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 111); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 112); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 113); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 114); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 115); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 116); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 117); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 118); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 119); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 120); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 121); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 122); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1073); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1074); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1075); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1076); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1077); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1078); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1079); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1080); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1081); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1082); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1083); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1084); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1085); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1086); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2125); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2126); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2127); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2128); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2129); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2130); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2131); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2132); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2133); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2134); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2135); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2136); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2137); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 2138); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3503); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 360); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 361); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 362); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 363); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 364); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 365); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 366); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 367); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 368); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 369); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 370); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 371); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 372); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 373); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3354); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 3351); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1532); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1533); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1534); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1535); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1536); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1537); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1538); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1539); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1540); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1541); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1542); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1543); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1544); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1545); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1957); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1958); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1959); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1960); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1961); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1962); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1963); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1964); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1965); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1966); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1967); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (1, 1968); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (3, 3250); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (3, 2819); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (3, 2820); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (3, 2821); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (3, 2822); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (3, 2823); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (3, 2824); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (3, 2825); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (3, 2826); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (3, 2827); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (3, 2828); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (3, 2829); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (3, 2830); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (3, 2831); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (3, 2832); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (3, 2833); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (3, 2834); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (3, 2835); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (3, 2836); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (3, 2837); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (3, 2838); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (3, 3226); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (3, 3227); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (3, 3228); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (3, 3229); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (3, 3230); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (3, 3231); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (3, 3232); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (3, 3233); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (3, 3234); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (3, 3235); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (3, 3236); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (3, 3237); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (3, 3238); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (3, 3239); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (3, 3240); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (3, 3241); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (3, 3242); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (3, 3243); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (3, 3244); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (3, 3245); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (3, 3246); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (3, 3247); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (3, 3248); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (3, 3249); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (3, 2839); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (3, 2840); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (3, 2841); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (3, 2842); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (3, 2843); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (3, 2844); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (3, 2845); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (3, 2846); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (3, 2847); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (3, 2848); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (3, 2849); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (3, 2850); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (3, 2851); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (3, 2852); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (3, 2853); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (3, 2854); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (3, 2855); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (3, 2856); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (3, 3166); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (3, 3167); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (3, 3168); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (3, 3171); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (3, 3223); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (3, 2858); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (3, 2861); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (3, 2865); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (3, 2868); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (3, 2871); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (3, 2873); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (3, 2877); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (3, 2880); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (3, 2883); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (3, 2885); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (3, 2888); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (3, 2893); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (3, 2894); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (3, 2898); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (3, 2901); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (3, 2904); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (3, 2906); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (3, 2911); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (3, 2913); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (3, 2915); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (3, 2917); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (3, 2919); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (3, 2921); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (3, 2923); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (3, 2925); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (3, 2859); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (3, 2860); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (3, 2864); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (3, 2867); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (3, 2869); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (3, 2872); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (3, 2878); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (3, 2879); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (3, 2884); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (3, 2887); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (3, 2889); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (3, 2892); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (3, 2896); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (3, 2897); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (3, 2902); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (3, 2905); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (3, 2907); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (3, 2910); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (3, 2914); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (3, 2916); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (3, 2918); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (3, 2920); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (3, 2922); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (3, 2924); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (3, 2857); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (3, 2862); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (3, 2863); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (3, 2866); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (3, 2870); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (3, 2874); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (3, 2875); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (3, 2876); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (3, 2881); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (3, 2882); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (3, 2886); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (3, 2890); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (3, 2891); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (3, 2895); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (3, 2899); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (3, 2900); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (3, 2903); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (3, 2908); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (3, 2909); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (3, 2912); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (3, 3165); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (3, 3169); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (3, 3170); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (3, 3252); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (3, 3224); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (3, 3251); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (3, 3340); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (3, 3339); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (3, 3338); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (3, 3337); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (3, 3341); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (3, 3345); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (3, 3342); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (3, 3346); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (3, 3343); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (3, 3347); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (3, 3344); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (3, 3348); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (3, 3360); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (3, 3361); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (3, 3362); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (3, 3363); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (3, 3364); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (3, 3172); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (3, 3173); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (3, 3174); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (3, 3175); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (3, 3176); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (3, 3177); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (3, 3178); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (3, 3179); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (3, 3180); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (3, 3181); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (3, 3182); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (3, 3183); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (3, 3184); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (3, 3185); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (3, 3186); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (3, 3187); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (3, 3188); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (3, 3189); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (3, 3190); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (3, 3191); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (3, 3192); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (3, 3193); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (3, 3194); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (3, 3195); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (3, 3196); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (3, 3197); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (3, 3198); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (3, 3199); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (3, 3200); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (3, 3201); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (3, 3202); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (3, 3203); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (3, 3204); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (3, 3205); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (3, 3206); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (3, 3428); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (3, 3207); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (3, 3208); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (3, 3209); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (3, 3210); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (3, 3211); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (3, 3212); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (3, 3429); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (3, 3213); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (3, 3214); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (3, 3215); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (3, 3216); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (3, 3217); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (3, 3218); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (3, 3219); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (3, 3220); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (3, 3221); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (3, 3222); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 51); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 52); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 53); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 54); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 55); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 56); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 57); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 58); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 59); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 60); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 61); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 62); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 798); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 799); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 800); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 801); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 802); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 803); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 804); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 805); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 806); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 3225); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1325); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1326); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1327); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1328); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1329); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1330); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1331); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1332); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1333); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1334); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1557); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2506); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2591); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2592); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2593); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2594); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2595); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2596); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2597); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2598); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2599); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2600); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2601); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2602); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2603); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2604); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2605); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2606); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2607); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2608); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2627); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2631); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2638); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1158); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1159); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1160); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1161); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1162); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1163); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1164); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1165); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1166); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1167); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1168); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1169); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1170); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1171); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1172); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1173); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1174); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1175); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1176); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1177); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1178); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1179); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1180); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1181); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1182); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1183); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1184); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1185); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1186); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1187); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1414); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1415); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1416); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1417); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1418); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1419); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1420); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1421); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1422); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1423); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1424); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1425); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1426); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1427); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1428); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1429); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1430); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1431); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1432); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1433); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1801); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1802); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1803); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1804); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1805); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1806); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1807); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1808); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1809); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1810); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1811); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1812); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2003); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2004); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2005); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2006); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2007); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2008); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2009); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2010); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2011); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2012); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2013); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2014); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2193); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2194); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2195); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2196); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2197); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2198); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2199); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2200); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2201); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2202); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2203); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 424); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 428); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 430); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 434); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2310); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2311); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2312); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2313); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2314); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2315); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2316); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2317); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2282); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2283); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2284); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2358); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2359); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2360); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2361); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2362); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2363); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2364); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2365); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2366); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2367); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2368); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2369); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2370); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2371); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2372); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2373); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2374); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2420); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2421); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2422); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2423); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2424); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2425); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2426); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2427); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2488); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2489); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2511); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2512); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2513); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2711); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2715); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 3365); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 3366); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 3367); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 3368); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 3369); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 3370); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 3371); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 3372); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 3373); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 3374); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2926); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2927); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2928); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2929); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2930); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2931); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2932); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2933); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2934); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2935); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2936); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2937); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 3075); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 3076); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 166); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 167); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 168); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 169); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 170); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 171); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 172); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 173); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 174); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 175); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 176); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 177); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 178); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 179); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 180); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 181); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 182); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 3426); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2625); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 816); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 817); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 818); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 819); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 820); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 821); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 822); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 823); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 824); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 825); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 768); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 769); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 770); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 771); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 772); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 773); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 774); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 775); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 776); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 777); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 778); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 909); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 910); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 911); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 912); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 913); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 914); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 915); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 916); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 917); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 918); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 919); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 920); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 921); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 922); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 935); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 936); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 937); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 938); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 939); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 940); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 941); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 942); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 943); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 944); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 945); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 946); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 947); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 948); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 3301); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 3300); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 3302); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 3303); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 3304); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 3305); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 3306); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 3307); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 3308); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 3309); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 3310); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 3311); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 3312); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 3313); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 3314); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 3315); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 3316); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 3317); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 3318); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1256); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1257); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1258); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1259); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1260); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1261); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1262); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1263); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1264); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1265); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1266); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1267); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2490); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2542); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2543); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2544); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2545); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2546); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2547); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2548); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2549); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2550); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2551); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2552); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2553); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 3411); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 3403); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 3423); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1212); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1213); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1214); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1215); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1216); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1217); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1218); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1219); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1220); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1221); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1222); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1223); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1224); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1225); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1226); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1227); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1228); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1229); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1230); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1231); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1232); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1233); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1234); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1434); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1435); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1436); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1437); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1438); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1439); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1440); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1441); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1442); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1443); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2204); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2205); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2206); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2207); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2208); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2209); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2210); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2211); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2212); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2213); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2214); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2215); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 3404); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2491); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2492); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2493); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 3028); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 3029); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 3030); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 3031); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 3032); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 3033); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 3034); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 3035); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 3036); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 3037); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 23); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 24); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 25); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 26); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 27); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 28); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 29); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 30); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 31); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 32); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 33); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 34); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 35); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 36); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 37); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 111); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 112); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 113); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 114); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 115); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 116); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 117); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 118); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 119); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 120); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 121); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 122); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 515); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 516); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 517); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 518); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 519); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 520); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 521); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 522); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 523); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 524); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 525); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 526); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 527); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 528); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 269); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 270); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 271); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 272); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 273); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 274); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 275); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 276); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 277); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 278); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 279); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 280); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 281); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 891); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 892); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 893); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 894); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 895); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 896); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 897); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 898); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 899); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 900); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 901); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 902); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 903); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 904); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 905); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 906); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 907); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 908); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1105); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1106); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1107); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1108); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1109); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1110); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1111); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1112); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1113); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1114); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1115); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1116); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1117); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1118); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1119); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1120); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 470); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 471); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 472); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 473); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 474); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 3424); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2690); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2691); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2692); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2693); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2694); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2695); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2696); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2697); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2698); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2699); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2700); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2701); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2702); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2703); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2704); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2494); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2514); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2515); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2516); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2517); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 3132); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 3133); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 3134); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 3135); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 3136); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 3137); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 3138); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 3139); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 3140); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 3141); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 3142); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 3143); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 3144); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 3145); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 3408); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 3); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 4); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 5); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 38); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 39); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 40); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 41); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 42); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 43); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 44); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 45); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 46); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 47); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 48); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 49); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 50); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 826); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 827); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 828); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 829); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 830); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 831); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 832); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 833); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 834); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 835); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 836); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 837); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 838); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 839); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 840); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 841); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 949); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 950); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 951); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 952); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 953); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 954); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 955); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 956); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 957); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 958); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 959); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 960); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 961); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 962); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 963); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 475); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 476); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 477); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 478); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 479); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 480); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 3354); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 3351); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1395); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1396); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1397); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1398); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1399); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1400); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1401); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1402); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1403); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1404); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1405); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1455); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1456); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1457); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1458); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1459); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1460); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1461); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1462); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1463); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1464); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1465); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1520); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1521); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1522); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1523); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1524); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1525); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1526); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1527); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1528); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1529); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1530); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1531); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 3276); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 3277); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 3278); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 3279); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 3280); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 3281); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 3282); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 3283); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 3284); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 3285); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 3286); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 3287); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2125); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2126); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2127); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2128); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2129); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2130); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2131); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2132); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2133); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2134); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2135); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2136); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2137); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2138); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 3410); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2476); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2484); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2495); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2496); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2497); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2498); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2709); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2710); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2712); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 3038); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 3039); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 3040); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 3041); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 3042); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 3043); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 3044); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 3045); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 3046); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 3047); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 3048); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 3049); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 3050); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 3051); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 3077); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 77); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 78); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 79); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 80); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 81); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 82); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 83); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 84); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 3421); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 246); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 247); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 248); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 249); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 250); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 251); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 252); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 253); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 254); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 255); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 256); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 257); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 258); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 259); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 260); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 261); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 262); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 263); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 264); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 265); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 266); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 267); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 268); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 786); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 787); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 788); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 789); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 790); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 791); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 792); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 793); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 794); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 795); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 796); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 797); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1562); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1563); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1564); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1565); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1566); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1567); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1568); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1569); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1570); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1571); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1572); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1573); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1574); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1575); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1576); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1839); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1840); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1841); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1842); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1843); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1844); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1845); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1846); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1847); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1848); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1849); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1850); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1851); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1852); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1986); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1987); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1988); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1989); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1990); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1991); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1992); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1993); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1994); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1995); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1996); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1997); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1998); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1999); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2000); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2001); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2002); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 3415); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2650); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2651); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2652); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2653); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2654); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2655); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2656); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2657); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2658); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2659); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2660); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2661); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2662); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2663); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2296); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2297); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2298); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2299); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2300); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2301); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2302); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2303); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2304); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2305); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2306); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2307); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2308); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2309); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2334); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2335); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2336); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2337); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2338); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2339); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2340); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2341); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2342); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2343); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2434); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2435); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2436); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2437); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2438); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2439); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2440); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2441); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2442); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2443); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2444); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2445); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2446); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2447); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2448); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2461); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2462); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2463); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2464); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2465); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2466); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2467); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2468); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2469); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2470); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2471); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2478); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2518); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2519); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2520); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2521); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2522); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 456); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 457); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 458); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 459); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 460); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 461); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 462); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 463); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 464); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 465); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 466); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 467); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 3078); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 3079); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 3080); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 3416); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 923); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 924); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 925); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 926); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 927); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 928); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 929); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 930); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 931); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 932); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 933); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 934); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1020); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1021); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1022); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1023); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1024); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1025); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1026); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1027); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1028); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1029); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1030); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1031); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1032); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 481); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 482); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 483); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 484); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1188); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1189); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1190); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1191); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1192); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1193); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1194); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1195); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1196); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1197); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1198); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1199); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1200); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 436); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 437); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 438); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 439); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 440); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 441); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 442); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 443); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 444); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 445); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 446); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 447); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 448); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 449); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 450); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 451); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 453); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 454); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 455); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 337); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 338); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 339); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 340); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 341); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 342); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 343); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 344); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 345); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 346); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 347); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 348); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 349); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 350); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1577); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1578); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1579); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1580); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1581); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1582); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1583); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1584); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1585); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1586); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1861); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1862); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1863); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1864); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1865); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1866); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1867); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1868); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1869); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1870); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1871); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1872); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1873); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 3359); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2406); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2407); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2408); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2409); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2410); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2411); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2412); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2413); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2414); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2415); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2416); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2417); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2418); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2419); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2499); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2706); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2708); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2713); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2716); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2720); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2721); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2722); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2723); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2724); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2725); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2726); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2727); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2728); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2729); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2730); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2565); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2566); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2567); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2568); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2569); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2570); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2571); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2781); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2782); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2783); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2784); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2785); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2786); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2787); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2788); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2789); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2790); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2791); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2792); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2793); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2794); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2795); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2796); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2797); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2798); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2799); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2800); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2801); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2802); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2975); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2976); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2977); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2978); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2979); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2980); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2981); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2982); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2983); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2984); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2985); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2986); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 183); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 184); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 185); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 186); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 187); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 188); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 189); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 190); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 191); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 192); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 193); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 205); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 206); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 207); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 208); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 209); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 210); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 211); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 212); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 213); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 214); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 215); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 216); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 217); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 218); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 219); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 220); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 221); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 222); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 3417); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 583); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 584); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 585); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 586); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 587); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 588); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 589); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 590); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 591); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 592); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 593); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 594); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 595); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 596); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 976); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 977); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 978); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 979); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 984); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1087); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1088); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1089); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1090); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1091); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1092); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1093); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1094); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1095); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1096); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1097); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1098); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1099); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1100); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1101); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1305); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1306); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1307); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1308); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1309); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1310); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1311); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1312); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1313); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1314); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1315); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1316); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1317); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1318); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1319); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1320); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1321); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1322); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1323); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1324); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1406); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1407); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1408); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1409); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1410); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1411); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1412); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1413); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1686); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1687); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1688); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1689); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1690); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1691); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1692); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1693); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1694); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1695); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1696); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1697); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1698); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1699); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1700); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1701); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 408); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 409); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 410); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 411); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 412); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 413); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 414); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 415); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 416); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 417); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 418); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1813); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1814); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1815); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1816); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1817); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1818); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1819); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1820); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1821); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1822); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1823); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1824); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1825); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1826); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1827); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1828); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1969); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1970); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1971); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1972); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1973); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1974); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1975); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1976); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1977); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1978); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1979); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1980); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1981); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1982); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1983); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1984); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1985); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2113); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2114); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2115); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2116); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2117); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2118); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2119); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2120); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2121); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2122); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2123); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2124); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2149); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2150); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2151); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2152); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2153); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2154); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2155); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2156); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2157); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2158); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2159); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2160); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2161); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2162); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2163); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2164); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2676); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2677); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2678); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2679); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2680); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2681); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2682); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2683); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2684); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2685); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2686); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2687); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2688); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2689); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 3418); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2500); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2501); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2803); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2804); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2805); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2806); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2807); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2808); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2809); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2810); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2811); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2812); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2813); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2814); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2815); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2816); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2817); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2818); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2949); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2950); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2951); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2952); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2953); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2954); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2955); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2956); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2957); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2958); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2959); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2960); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2961); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2962); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2963); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 3004); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 3005); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 3006); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 3007); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 3008); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 3009); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 3010); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 3011); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 3012); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 3013); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 3014); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 3015); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 3016); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 3017); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 3092); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 3093); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 3094); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 3095); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 3096); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 3097); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 3098); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 3099); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 3100); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 3101); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 3102); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 3103); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 3409); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 299); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 300); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 301); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 302); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 303); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 304); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 305); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 306); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 307); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 308); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 309); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 310); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 311); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 312); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 851); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 852); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 853); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 854); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 855); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 856); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 857); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 858); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 859); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 860); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 861); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 862); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 863); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 864); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 865); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 866); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 867); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 868); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 869); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 870); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 871); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 872); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 873); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 874); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 875); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 876); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1057); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1058); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1059); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1060); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1061); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1062); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1063); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1064); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1065); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1066); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1067); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1068); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1069); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1070); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1071); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1072); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 501); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 502); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 503); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 504); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 505); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 506); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 507); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 508); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 509); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 510); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 511); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 512); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 513); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 514); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1444); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1445); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1446); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1447); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1448); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1449); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1450); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1451); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1452); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1453); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1454); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1496); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1497); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1498); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1499); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1500); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1501); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1502); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1503); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1504); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1505); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1671); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1672); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1673); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1674); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1675); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1676); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1677); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1678); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1679); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1680); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1681); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1682); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1683); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1684); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 1685); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2044); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2045); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2046); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2047); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2048); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2049); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2050); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2051); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2052); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2053); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2054); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2055); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2056); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2057); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2058); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2059); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2060); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2061); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2062); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2063); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2064); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2238); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2239); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2240); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2241); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2242); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2243); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2244); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2245); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2246); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2247); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2248); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2249); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2250); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2251); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2252); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2253); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2391); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2392); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2393); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2394); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2395); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2396); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2397); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2398); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2399); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2400); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2401); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2402); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2403); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2404); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2405); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 570); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 573); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 577); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 580); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 581); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 571); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 579); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 582); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 572); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 575); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 578); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 574); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 576); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2707); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2714); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2717); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 2718); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 3146); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 3147); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 3148); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 3149); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 3150); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 3151); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 3152); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 3153); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 3154); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 3155); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 3156); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 3157); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 3158); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 3159); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 3160); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 3161); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 3162); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 3163); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 3164); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 3438); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 3442); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 3436); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 3454); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 3432); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 3447); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 3434); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 3449); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 3445); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 3439); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 3435); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 3448); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 3437); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 3446); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 3444); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 3451); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 3430); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 3482); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 3485); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 3499); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 3490); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 3489); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 3492); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 3493); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 3498); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 3481); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (5, 3503); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3427); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3357); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 6); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 7); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 8); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 9); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 10); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 11); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 12); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 13); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 14); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 15); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 16); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 17); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 18); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 19); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 20); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 21); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 22); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3411); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3412); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3419); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 4); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 5); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 23); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 24); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 25); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 26); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 27); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 28); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 29); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 30); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 31); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 32); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 33); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 34); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 35); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 36); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 37); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3256); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3350); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3349); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 38); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 39); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 40); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 41); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 42); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 43); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 44); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 45); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 46); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 47); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 48); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 49); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 50); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3403); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 51); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 52); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 53); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 54); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 55); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 56); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 57); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 58); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 59); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 60); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 61); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 62); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3406); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 379); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 391); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 63); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 64); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 65); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 66); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 67); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 68); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 69); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 70); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 71); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 72); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 73); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 74); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 75); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 76); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 77); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 78); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 79); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 80); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 81); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 82); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 83); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 84); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 85); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 86); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 87); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 88); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 89); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 90); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 91); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 92); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 93); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 94); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 95); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 96); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 97); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 98); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 99); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 100); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 101); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 102); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 103); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 104); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 105); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 106); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 107); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 108); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 109); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 110); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3402); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3389); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3390); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3391); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3392); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3393); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3394); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3395); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3396); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3397); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3398); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3399); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3400); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3401); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3262); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 376); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 397); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 382); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 111); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 112); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 113); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 114); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 115); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 116); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 117); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 118); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 119); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 120); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 121); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 122); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 389); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 404); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 406); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3421); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 380); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 394); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3268); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3413); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3263); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 123); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 124); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 125); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 126); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 127); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 128); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 129); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 130); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2572); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2573); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2574); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2575); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2576); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2577); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2578); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2579); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2580); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2581); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2582); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2583); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2584); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2585); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2586); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2587); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2588); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2589); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2590); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3266); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 131); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 132); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 133); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 134); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 135); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 136); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 137); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 138); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 139); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 140); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 141); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 142); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 143); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 144); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 145); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 146); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 147); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 148); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 149); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 150); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 151); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 152); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 153); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 154); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 155); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 156); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 157); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 158); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 159); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 160); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 161); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 162); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 163); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 164); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 165); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 166); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 167); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 168); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 169); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 170); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 171); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 172); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 173); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 174); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 175); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 176); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 177); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 178); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 179); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 180); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 181); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 182); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3426); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3416); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 183); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 184); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 185); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 186); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 187); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 188); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 189); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 190); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 191); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 192); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 193); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 194); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 195); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 196); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 197); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 198); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 199); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 200); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 201); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 202); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 203); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 204); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 515); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 516); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 517); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 518); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 519); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 520); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 521); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 522); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 523); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 524); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 525); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 526); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 527); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 528); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 205); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 206); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 207); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 208); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 209); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 210); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 211); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 212); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 213); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 214); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 215); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 216); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 217); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 218); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 219); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 220); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 221); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 222); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 223); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 224); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 225); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3336); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 715); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 716); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 717); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 718); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 719); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 720); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 721); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 722); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 723); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 724); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 725); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 726); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 727); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 728); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 729); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 730); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 731); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 732); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 733); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 734); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 735); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 736); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 737); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 738); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 739); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 740); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 741); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 742); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 743); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 744); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3324); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3417); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 226); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 227); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 228); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 229); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 230); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 231); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 232); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 233); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 234); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 235); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 236); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 237); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 238); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 239); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 240); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 241); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 242); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 243); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 244); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 245); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 246); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 247); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 248); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 249); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 250); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 251); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 252); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 253); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 254); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 255); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 256); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 257); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 258); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 259); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 260); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 261); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 262); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 263); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 264); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 265); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 266); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 267); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 268); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 269); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 270); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 271); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 272); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 273); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 274); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 275); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 276); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 277); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 278); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 279); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 280); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 281); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3375); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3376); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3377); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3378); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3379); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3380); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3381); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3382); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3383); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3384); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3385); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3386); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3387); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3388); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3255); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 282); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 283); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 284); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 285); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 286); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 287); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 288); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 289); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 290); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 291); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 292); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 293); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 294); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 295); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 296); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 297); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 298); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 299); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 300); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 301); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 302); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 303); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 304); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 305); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 306); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 307); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 308); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 309); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 310); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 311); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 312); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2591); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2592); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2593); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2594); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2595); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2596); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2597); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2598); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2599); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2600); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2601); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2602); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2603); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2604); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2605); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2606); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2607); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2608); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 313); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 314); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 315); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 316); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 317); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 318); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 319); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 320); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 321); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 322); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 399); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3259); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 675); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 676); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 677); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 678); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 679); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 680); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 681); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 682); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 683); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 684); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 685); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 686); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 687); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 688); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 689); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 690); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 691); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 692); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 693); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 694); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 695); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 696); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 697); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 698); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 699); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 700); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 701); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 702); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 703); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 704); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 705); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 706); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 707); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 708); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 709); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 710); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 711); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 712); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 713); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 714); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2609); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2610); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2611); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2612); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2613); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2614); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2615); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2616); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2617); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2618); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2619); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2620); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2621); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2622); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2623); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2624); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2625); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2626); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2627); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2628); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2629); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2630); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2631); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2632); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2633); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2634); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2635); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2636); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2637); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2638); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 489); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 490); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 491); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 492); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 493); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 494); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 495); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 496); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 497); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 498); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 499); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 500); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 816); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 817); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 818); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 819); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 820); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 821); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 822); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 823); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 824); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 825); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 745); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 746); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 747); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 748); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 749); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 750); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 751); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 752); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 753); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 754); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 755); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 756); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 757); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 758); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 759); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 760); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 620); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 621); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 622); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 623); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 761); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 762); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 763); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 764); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 765); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 766); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 767); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 768); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 769); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 770); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 771); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 772); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 773); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 774); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 775); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 776); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 777); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 778); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 779); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 780); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 781); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 782); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 783); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 784); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 785); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 543); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 544); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 545); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 546); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 547); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 548); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 549); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 786); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 787); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 788); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 789); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 790); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 791); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 792); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 793); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 794); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 795); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 796); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 797); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 798); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 799); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 800); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 801); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 802); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 803); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 804); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 805); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 806); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 807); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 808); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 809); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 810); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 811); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 812); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 813); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 814); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 815); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 826); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 827); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 828); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 829); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 830); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 831); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 832); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 833); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 834); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 835); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 836); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 837); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 838); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 839); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 840); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 841); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 842); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 843); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 844); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 845); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 846); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 847); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 848); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 849); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 850); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3260); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3331); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 851); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 852); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 853); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 854); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 855); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 856); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 857); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 858); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 859); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 860); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 861); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 862); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 863); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 864); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 865); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 866); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 867); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 868); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 869); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 870); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 871); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 872); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 873); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 874); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 875); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 876); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2639); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2640); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2641); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2642); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2643); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2644); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2645); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2646); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2647); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2648); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2649); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3225); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 583); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 584); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 585); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 586); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 587); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 588); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 589); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 590); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 591); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 592); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 593); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 594); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 595); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 596); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 388); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 402); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 407); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 396); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 877); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 878); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 879); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 880); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 881); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 882); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 883); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 884); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 885); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 886); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 887); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 888); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 889); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 890); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3405); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 891); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 892); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 893); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 894); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 895); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 896); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 897); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 898); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 899); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 900); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 901); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 902); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 903); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 904); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 905); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 906); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 907); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 908); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 909); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 910); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 911); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 912); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 913); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 914); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 915); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 916); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 917); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 918); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 919); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 920); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 921); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 922); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3423); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 923); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 924); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 925); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 926); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 927); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 928); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 929); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 930); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 931); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 932); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 933); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 934); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 935); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 936); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 937); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 938); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 939); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 940); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 941); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 942); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 943); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 944); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 945); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 946); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 947); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 948); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 949); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 950); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 951); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 952); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 953); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 954); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 955); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 956); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 957); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 958); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 959); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 960); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 961); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 962); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 963); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 964); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 965); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 966); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 967); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 968); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 969); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 970); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 971); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 972); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 973); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 974); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 975); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 976); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 977); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 978); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 979); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 980); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 981); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 982); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 983); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 984); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 985); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 986); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 987); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 988); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 390); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3273); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1020); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1021); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1022); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1023); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1024); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1025); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1026); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1027); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1028); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1029); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1030); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1031); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1032); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 989); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 990); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 991); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 992); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 993); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 994); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 995); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 996); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 997); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 998); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 999); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1000); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1001); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1002); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1003); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1004); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1005); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1006); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1007); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1008); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1009); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1010); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1011); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1012); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1013); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1014); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1015); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1016); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1017); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1018); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1019); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1033); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1034); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1035); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1036); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1037); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1038); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1039); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1040); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1041); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1042); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1043); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1044); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1045); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1046); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1047); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1048); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1049); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1050); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1051); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1052); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1053); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1054); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1055); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1056); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 351); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 352); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 353); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 354); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 355); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 356); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 357); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 358); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 359); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3332); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1057); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1058); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1059); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1060); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1061); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1062); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1063); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1064); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1065); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1066); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1067); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1068); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1069); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1070); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1071); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1072); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 624); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 625); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 626); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 627); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 628); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 629); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 630); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 631); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 632); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 633); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 634); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 635); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 636); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 637); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 638); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 639); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 640); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 641); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 642); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 643); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 644); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 645); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1073); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1074); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1075); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1076); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1077); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1078); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1079); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1080); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1081); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1082); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1083); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1084); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1085); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1086); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 377); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 395); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1102); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1103); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1104); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1087); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1088); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1089); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1090); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1091); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1092); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1093); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1094); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1095); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1096); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1097); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1098); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1099); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1100); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1101); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1105); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1106); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1107); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1108); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1109); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1110); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1111); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1112); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1113); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1114); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1115); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1116); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1117); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1118); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1119); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1120); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1121); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1122); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1123); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1124); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1125); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1126); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1127); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1128); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1129); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1130); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1131); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1132); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 501); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 502); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 503); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 504); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 505); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 506); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 507); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 508); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 509); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 510); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 511); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 512); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 513); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 514); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1133); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1134); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1135); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1136); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1137); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1138); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1139); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1140); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1141); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1142); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1143); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1144); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1145); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3265); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 468); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 469); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 470); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 471); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 472); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 473); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 474); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 475); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 476); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 477); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 478); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 479); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 480); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 481); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 482); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 483); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 484); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 485); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 486); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 487); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 488); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1146); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1147); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1148); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1149); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1150); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1151); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1152); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1153); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1154); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1155); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1156); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1157); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1158); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1159); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1160); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1161); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1162); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1163); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1164); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1165); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1166); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1167); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1168); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1169); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1170); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1171); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1172); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1173); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1174); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1175); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1176); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1177); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1178); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1179); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1180); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1181); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1182); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1183); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1184); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1185); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1186); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1187); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3322); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3354); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3351); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3422); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 405); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3407); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3301); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3300); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3302); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3303); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3304); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3305); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3306); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3307); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3308); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3309); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3310); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3311); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3312); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3313); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3314); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3315); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3316); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3317); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3318); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1188); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1189); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1190); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1191); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1192); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1193); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1194); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1195); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1196); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1197); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1198); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1199); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1200); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3329); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1235); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1236); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1237); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1238); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1239); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1240); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1241); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1242); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1243); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1244); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1245); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1246); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1247); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1248); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1249); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1250); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1251); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1252); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1253); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1254); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1255); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1256); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1257); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1258); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1259); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1260); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1261); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1262); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1263); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1264); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1265); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1266); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1267); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1268); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1269); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1270); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1271); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1272); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1273); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1274); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1275); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1276); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1277); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1278); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1279); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1280); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1281); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1282); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1283); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1284); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1285); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1286); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1287); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1288); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1289); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1290); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1291); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1292); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1293); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1294); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1295); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1296); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1297); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1298); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1299); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1300); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1301); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1302); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1303); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1304); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1305); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1306); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1307); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1308); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1309); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1310); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1311); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1312); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1313); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1314); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1315); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1316); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1317); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1318); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1319); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1320); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1321); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1322); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1323); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1324); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1201); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1202); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1203); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1204); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1205); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1206); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1207); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1208); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1209); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1210); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1211); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1325); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1326); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1327); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1328); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1329); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1330); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1331); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1332); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1333); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1334); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1391); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1393); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1388); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1394); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1387); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1392); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1389); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1390); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1335); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1336); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1337); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1338); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1339); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1340); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1341); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1342); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1343); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1344); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1345); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1346); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1347); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1348); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1349); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1350); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1351); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1212); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1213); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1214); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1215); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1216); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1217); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1218); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1219); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1220); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1221); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1222); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1223); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1224); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1225); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1226); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1227); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1228); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1229); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1230); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1231); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1232); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1233); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1234); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1352); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1353); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1354); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1355); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1356); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1357); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1358); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1359); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1360); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1361); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1362); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1363); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1364); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1365); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1366); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1367); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1368); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1369); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1370); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1371); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1372); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1373); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1374); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1375); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1376); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1377); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1378); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1379); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1380); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1381); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1382); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1386); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1383); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1385); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1384); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1406); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1407); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1408); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1409); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1410); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1411); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1412); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1413); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1395); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1396); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1397); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1398); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1399); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1400); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1401); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1402); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1403); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1404); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1405); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3274); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3267); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3261); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3272); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1414); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1415); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1416); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1417); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1418); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1419); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1420); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1421); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1422); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1423); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1424); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1425); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1426); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1427); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1428); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1429); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1430); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1431); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1432); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1433); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1434); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1435); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1436); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1437); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1438); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1439); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1440); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1441); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1442); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1443); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1455); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1456); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1457); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1458); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1459); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1460); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1461); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1462); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1463); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1464); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1465); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1444); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1445); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1446); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1447); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1448); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1449); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1450); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1451); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1452); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1453); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1454); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1466); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1467); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1468); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1469); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1470); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1471); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1472); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1473); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1474); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1475); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1476); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1477); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1478); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1479); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1480); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1481); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1482); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1483); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1484); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1485); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1486); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1487); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1488); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1489); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1490); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1491); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1492); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1493); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1494); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1495); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 378); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 392); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1532); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1533); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1534); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1535); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1536); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1537); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1538); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1539); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1540); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1541); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1542); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1543); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1544); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1545); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1496); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1497); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1498); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1499); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1500); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1501); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1502); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1503); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1504); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1505); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 403); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1506); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1507); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1508); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1509); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1510); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1511); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1512); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1513); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1514); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1515); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1516); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1517); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1518); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1519); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 381); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1520); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1521); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1522); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1523); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1524); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1525); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1526); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1527); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1528); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1529); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1530); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1531); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1546); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1547); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1548); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1549); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1550); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1551); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1552); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1553); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1554); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1555); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1556); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1557); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1558); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1559); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1560); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1561); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3352); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3358); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 400); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 436); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 437); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 438); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 439); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 440); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 441); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 442); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 443); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 444); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 445); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 446); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 447); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 448); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 449); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 450); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 451); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 452); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 453); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 454); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 455); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1562); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1563); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1564); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1565); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1566); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1567); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1568); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1569); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1570); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1571); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1572); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1573); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1574); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1575); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1576); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 337); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 338); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 339); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 340); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 341); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 342); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 343); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 344); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 345); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 346); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 347); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 348); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 349); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 350); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1577); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1578); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1579); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1580); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1581); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1582); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1583); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1584); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1585); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1586); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1587); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1588); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1589); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1590); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1591); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1592); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1593); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1594); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1595); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1596); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1597); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1598); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1599); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1600); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1601); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1602); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1603); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1604); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1605); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1606); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1607); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1608); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1609); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1610); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1611); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1612); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1613); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1614); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1615); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1616); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1617); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1618); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1619); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1620); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1621); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1622); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1623); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1624); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1625); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1626); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1627); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1628); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1629); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1630); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1631); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1632); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1633); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1634); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1635); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1636); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1637); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1638); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1639); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1640); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1641); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1642); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1643); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1644); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1645); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 550); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 551); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 552); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 553); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 554); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 555); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1646); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1647); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1648); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1649); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1650); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1651); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1652); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1653); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1654); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1655); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1656); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1657); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1658); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1659); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1660); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1661); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1662); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1663); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1664); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1665); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1666); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1667); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1668); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1669); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1670); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1686); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1687); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1688); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1689); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1690); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1691); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1692); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1693); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1694); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1695); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1696); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1697); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1698); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1699); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1700); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1701); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1671); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1672); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1673); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1674); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1675); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1676); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1677); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1678); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1679); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1680); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1681); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1682); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1683); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1684); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1685); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1702); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1703); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1704); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1705); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1706); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1707); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1708); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1709); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1710); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1711); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1712); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1713); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1714); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1715); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1716); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3257); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3425); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3420); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3326); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3258); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3356); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3424); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 384); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1717); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1720); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1722); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1723); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1726); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1727); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1730); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1731); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1733); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1736); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1737); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1740); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1742); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1743); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1718); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1719); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1721); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1724); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1725); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1728); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1729); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1732); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1734); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1735); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1738); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1739); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1741); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1744); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 374); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1745); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1746); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1747); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1748); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1749); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1750); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1751); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1752); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1753); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1754); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1755); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1762); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1763); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1756); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1764); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1757); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1758); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1765); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1766); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1759); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1760); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1767); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1761); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1768); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1769); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1770); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1771); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1772); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1773); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1774); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1775); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1776); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1777); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1778); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1779); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1780); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1781); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1782); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1783); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1784); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1785); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1786); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1787); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1788); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1789); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1790); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3270); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1791); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1792); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1793); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1794); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1795); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1796); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1797); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1798); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1799); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1800); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1893); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1894); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1895); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1896); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1897); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1898); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1899); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1900); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1901); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1801); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1802); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1803); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1804); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1805); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1806); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1807); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1808); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1809); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1810); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1811); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1812); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 408); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 409); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 410); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 411); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 412); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 413); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 414); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 415); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 416); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 417); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 418); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1813); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1814); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1815); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1816); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1817); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1818); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1819); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1820); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1821); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1822); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1823); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1824); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1825); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1826); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1827); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1828); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1829); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1830); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1831); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1832); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1833); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1834); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1835); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1836); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1837); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1838); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1839); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1840); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1841); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1842); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1843); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1844); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1845); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1846); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1847); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1848); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1849); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1850); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1851); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1852); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1853); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1854); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1855); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1856); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1857); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1858); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1859); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1860); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1861); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1862); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1863); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1864); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1865); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1866); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1867); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1868); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1869); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1870); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1871); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1872); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1873); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1874); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1875); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1876); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1877); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1878); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1879); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1880); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1881); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1882); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1883); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1884); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1885); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1886); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1887); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1888); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1889); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1890); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1891); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1892); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 597); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 598); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 599); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 600); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 601); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 602); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 603); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 604); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 605); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 606); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 607); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 608); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 609); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 610); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 611); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 612); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 613); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 614); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 615); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 616); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 617); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 618); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 619); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1902); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1903); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1904); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1905); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1906); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1907); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1908); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1909); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1910); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1911); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1912); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1913); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1914); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1915); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 398); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1916); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1917); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1918); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1919); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1920); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1921); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1922); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1923); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1924); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1925); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1926); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1927); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1928); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1929); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1930); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1931); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1932); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1933); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1934); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1935); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1936); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1937); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1938); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1939); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1940); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1941); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 375); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1957); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1958); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1959); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1960); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1961); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1962); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1963); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1964); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1965); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1966); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1967); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1968); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1969); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1970); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1971); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1972); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1973); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1974); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1975); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1976); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1977); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1978); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1979); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1980); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1981); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1982); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1983); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1984); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1985); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1942); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1943); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1944); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1945); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1946); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1947); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1948); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1949); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1950); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1951); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1952); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1953); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1954); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1955); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1956); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3327); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3330); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 385); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3321); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 383); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3359); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1986); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1987); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1988); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1989); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1990); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1991); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1992); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1993); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1994); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1995); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1996); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1997); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1998); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 1999); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2000); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2001); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2002); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2003); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2004); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2005); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2006); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2007); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2008); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2009); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2010); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2011); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2012); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2013); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2014); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 387); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3319); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2015); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2016); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2017); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2018); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2019); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2020); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2021); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2022); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2023); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2024); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2025); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2026); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2027); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2028); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2029); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2030); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2031); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2032); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2033); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2034); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2035); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2036); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2037); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2038); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2039); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2040); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2041); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2042); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2043); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3415); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 393); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 529); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 530); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 531); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 532); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 533); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 534); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 535); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 536); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 537); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 538); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 539); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 540); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 541); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 542); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2044); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2045); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2046); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2047); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2048); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2049); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2050); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2051); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2052); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2053); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2054); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2055); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2056); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2057); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2058); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2059); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2060); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2061); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2062); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2063); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2064); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2065); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2066); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2067); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2068); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2069); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2070); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2071); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2072); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2073); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2074); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2075); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2076); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2077); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2078); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2079); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2080); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2081); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2082); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2083); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2084); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2085); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2086); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2087); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2088); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2089); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2090); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2091); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2092); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3328); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2093); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2094); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2095); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2096); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2097); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2098); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3276); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3277); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3278); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3279); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3280); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3281); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3282); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3283); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3284); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3285); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3286); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3287); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2099); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2100); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2101); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2102); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2103); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2104); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2105); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2106); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2107); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2108); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2109); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2110); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2111); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2112); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2113); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2114); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2115); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2116); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2117); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2118); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2119); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2120); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2121); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2122); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2123); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2124); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2125); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2126); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2127); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2128); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2129); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2130); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2131); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2132); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2133); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2134); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2135); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2136); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2137); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2138); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2139); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2140); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2141); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2142); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2143); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2144); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2145); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2146); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2147); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2148); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2149); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2150); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2151); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2152); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2153); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2154); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2155); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2156); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2157); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2158); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2159); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2160); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2161); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2162); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2163); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2164); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2165); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2166); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2167); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2168); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2169); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2170); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2171); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2172); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2173); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2174); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2175); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2176); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2177); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2178); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2179); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2180); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2181); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2182); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2183); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2184); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2185); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2186); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2187); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2188); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2189); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2190); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2191); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2192); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2193); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2194); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2195); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2196); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2197); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2198); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2199); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2200); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2201); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2202); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2203); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2204); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2205); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2206); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2207); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2208); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2209); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2210); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2211); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2212); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2213); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2214); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2215); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 386); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3325); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2216); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2217); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2218); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2219); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2220); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2221); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2222); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2223); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2224); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2225); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2226); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2227); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2228); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2229); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2230); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2231); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2232); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2233); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2234); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2235); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2236); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2237); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2238); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2239); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2240); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2241); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2242); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2243); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2244); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2245); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2246); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2247); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2248); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2249); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2250); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2251); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2252); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2253); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2650); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2651); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2652); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2653); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2654); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2655); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2656); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2657); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2658); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2659); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2660); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2661); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2662); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2663); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3353); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3355); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3271); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2254); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2255); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2256); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2257); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2258); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2259); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2260); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2261); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2262); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2263); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2264); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2265); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2266); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2267); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2268); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2269); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2270); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 419); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 420); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 421); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 422); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 423); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 424); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 425); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 426); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 427); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 428); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 429); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 430); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 431); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 432); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 433); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 434); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 435); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2271); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2272); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2273); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2274); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2275); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2276); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2277); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2278); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2279); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2280); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2281); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2318); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2319); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2320); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2321); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2322); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2323); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2324); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2325); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2326); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2327); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2328); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2329); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2330); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2331); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2332); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2333); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2285); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2286); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2287); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2288); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2289); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2290); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2291); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2292); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2293); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2294); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2295); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3254); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2296); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2297); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2298); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2299); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2300); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2301); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2302); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2303); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2304); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2305); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2306); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2307); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2308); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2309); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2310); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2311); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2312); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2313); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2314); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2315); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2316); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2317); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2282); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2283); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2284); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2334); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2335); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2336); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2337); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2338); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2339); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2340); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2341); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2342); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2343); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2344); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2345); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2346); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2347); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2348); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2349); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2350); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2351); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2352); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2353); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2354); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2355); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2356); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2357); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2358); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2359); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2360); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2361); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2362); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2363); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2364); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2365); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2366); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2367); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2368); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2369); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2370); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2371); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2372); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2373); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2374); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2375); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2376); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2377); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2378); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2379); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2380); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2381); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2382); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2383); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2384); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2385); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2386); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2387); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2388); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2389); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2390); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2391); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2392); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2393); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2394); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2395); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2396); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2397); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2398); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2399); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2400); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2401); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2402); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2403); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2404); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2405); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3275); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3404); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3323); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2664); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2665); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2666); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2667); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2668); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2669); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2670); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2671); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2672); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2673); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2674); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2675); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2676); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2677); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2678); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2679); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2680); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2681); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2682); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2683); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2684); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2685); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2686); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2687); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2688); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2689); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2690); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2691); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2692); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2693); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2694); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2695); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2696); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2697); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2698); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2699); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2700); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2701); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2702); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2703); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2704); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3414); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2406); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2407); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2408); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2409); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2410); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2411); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2412); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2413); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2414); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2415); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2416); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2417); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2418); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2419); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3334); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 401); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2420); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2421); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2422); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2423); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2424); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2425); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2426); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2427); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2428); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2429); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2430); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2431); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2432); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2433); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 570); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 573); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 577); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 580); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 581); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 571); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 579); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 582); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 572); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 575); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 578); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 574); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 576); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3410); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3288); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3289); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3290); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3291); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3292); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3293); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3294); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3295); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3296); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3297); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3298); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3299); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3333); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2434); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2435); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2436); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2437); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2438); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2439); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2440); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2441); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2442); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2443); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2444); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2445); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2446); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2447); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2448); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3418); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2449); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2450); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2451); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2452); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2453); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2454); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2455); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2456); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2457); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2458); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2459); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2460); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2461); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2462); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2463); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2464); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2465); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2466); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2467); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2468); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2469); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2470); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2471); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2472); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2473); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2474); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2475); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2476); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2477); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2478); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2479); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2480); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2481); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2482); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2483); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2484); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2485); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2486); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2487); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2488); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2489); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2490); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2491); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2492); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2493); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2494); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2495); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2496); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2497); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2498); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2499); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2500); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2501); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2502); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2503); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2504); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2505); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3269); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2506); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2507); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2508); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2509); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2510); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2511); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2512); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2513); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2514); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2515); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2516); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2517); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2518); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2519); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2520); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2521); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2522); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 456); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 457); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 458); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 459); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 460); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 461); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 462); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 463); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 464); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 465); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 466); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 467); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2523); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2524); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2525); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2526); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2527); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2528); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2529); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2530); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2531); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3335); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2532); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2533); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2534); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2535); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2536); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2537); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2538); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2539); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2540); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2541); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2542); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2543); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2544); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2545); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2546); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2547); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2548); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2549); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2550); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2551); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2552); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2553); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2554); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2555); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2556); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2557); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2558); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2559); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2560); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2561); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2562); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2563); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2564); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2705); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2706); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2707); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2708); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2709); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2710); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2711); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2712); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2713); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2714); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2715); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2716); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2717); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2718); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2719); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2720); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2721); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2722); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2723); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2724); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2725); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2726); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2727); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2728); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2729); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2730); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3365); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3366); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3367); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3368); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3369); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3370); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3371); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3372); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3373); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3374); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2565); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2566); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2567); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2568); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2569); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2570); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2571); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2751); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2752); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2753); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2754); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2755); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2756); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2757); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2758); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2759); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2760); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2761); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2762); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2763); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2764); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2765); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2766); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2767); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2768); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2769); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2770); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2771); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2772); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2773); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2774); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2775); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2776); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2777); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2778); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2779); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2780); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2781); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2782); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2783); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2784); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2785); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2786); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2787); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2788); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2789); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2790); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2791); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2792); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2793); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2794); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2795); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2796); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2797); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2798); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2799); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2800); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2801); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2802); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2803); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2804); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2805); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2806); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2807); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2808); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2809); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2810); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2811); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2812); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2813); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2814); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2815); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2816); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2817); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2818); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 646); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 647); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 648); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 649); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 651); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 653); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 655); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 658); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2926); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2927); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2928); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2929); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2930); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2931); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2932); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2933); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2934); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2935); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2936); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2937); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2938); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2939); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2940); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2941); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2942); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2943); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2944); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2945); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2946); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2947); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2948); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2949); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2950); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2951); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2952); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2953); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2954); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2955); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2956); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2957); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2958); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2959); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2960); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2961); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2962); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2963); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3004); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3005); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3006); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3007); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3008); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3009); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3010); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3011); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3012); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3013); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3014); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3015); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3016); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3017); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2964); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2965); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2966); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2967); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2968); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2969); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2970); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2971); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2972); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2973); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2974); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3253); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2975); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2976); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2977); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2978); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2979); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2980); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2981); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2982); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2983); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2984); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2985); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2986); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2987); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2988); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2989); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2990); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2991); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2992); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2993); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2994); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2995); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2996); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2997); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2998); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2999); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3000); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3001); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3002); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3003); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3018); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3019); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3020); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3021); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3022); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3023); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3024); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3025); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3026); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3027); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3028); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3029); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3030); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3031); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3032); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3033); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3034); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3035); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3036); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3037); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3038); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3039); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3040); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3041); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3042); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3043); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3044); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3045); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3046); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3047); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3048); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3049); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3050); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3051); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3064); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3065); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3066); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3067); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3068); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3069); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3070); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3071); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3072); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3073); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3074); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3075); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3076); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3077); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3078); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3079); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3080); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3052); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3053); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3054); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3055); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3056); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3057); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3058); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3059); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3060); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3061); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3062); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3063); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3081); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3082); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3083); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3084); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3085); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3086); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3087); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3088); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3089); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3090); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3091); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3092); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3093); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3094); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3095); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3096); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3097); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3098); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3099); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3100); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3101); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3102); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3103); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 323); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 324); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 325); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 326); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 327); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 328); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 329); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 330); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 331); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 332); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 333); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 334); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 335); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 336); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 360); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 361); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 362); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 363); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 364); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 365); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 366); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 367); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 368); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 369); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 370); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 371); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 372); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 373); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 556); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 557); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 558); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 559); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 560); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 561); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 562); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 563); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 564); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 565); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 566); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 567); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 568); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 569); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 661); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 662); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 663); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 664); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 665); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 666); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 667); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 668); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 669); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 670); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 671); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 672); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 673); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 674); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3104); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3105); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3106); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3107); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3108); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3109); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3110); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3111); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3112); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3113); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3114); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3115); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3116); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3117); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3118); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3119); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3120); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3121); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3122); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3123); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3124); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3125); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3126); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3127); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3128); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3129); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3130); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3131); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 652); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 656); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 657); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 650); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 659); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 654); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 660); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3132); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3133); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3134); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3135); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3136); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3137); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3138); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3139); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3140); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3141); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3142); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3143); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3144); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3145); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2731); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2732); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2733); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2734); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2735); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2736); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2737); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2738); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2739); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2740); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2741); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2742); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2743); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2744); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2745); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2746); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2747); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2748); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2749); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 2750); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3408); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3320); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3409); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3264); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3146); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3147); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3148); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3149); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3150); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3151); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3152); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3153); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3154); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3155); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3156); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3157); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3158); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3159); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3160); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3161); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3162); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3163); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3164); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3438); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3442); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3436); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3450); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3454); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3432); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3443); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3447); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3452); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3441); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3434); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3449); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3445); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3440); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3453); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3439); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3435); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3448); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3437); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3446); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3444); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3433); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3431); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3451); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3430); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3455); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3456); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3457); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3458); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3459); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3460); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3461); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3462); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3463); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3464); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3465); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3466); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3467); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3468); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3469); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3470); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3471); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3472); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3473); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3474); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3475); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3476); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3477); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3478); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3482); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3485); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3491); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3501); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3487); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3500); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3488); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3499); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3497); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3494); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3495); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3490); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3489); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3492); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3483); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3493); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3498); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3496); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3502); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3479); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3481); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3503); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3486); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3480); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (8, 3484); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (9, 3402); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (10, 3250); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (10, 2819); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (10, 2820); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (10, 2821); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (10, 2822); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (10, 2823); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (10, 2824); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (10, 2825); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (10, 2826); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (10, 2827); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (10, 2828); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (10, 2829); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (10, 2830); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (10, 2831); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (10, 2832); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (10, 2833); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (10, 2834); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (10, 2835); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (10, 2836); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (10, 2837); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (10, 2838); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (10, 3226); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (10, 3227); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (10, 3228); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (10, 3229); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (10, 3230); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (10, 3231); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (10, 3232); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (10, 3233); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (10, 3234); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (10, 3235); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (10, 3236); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (10, 3237); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (10, 3238); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (10, 3239); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (10, 3240); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (10, 3241); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (10, 3242); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (10, 3243); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (10, 3244); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (10, 3245); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (10, 3246); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (10, 3247); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (10, 3248); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (10, 3249); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (10, 2839); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (10, 2840); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (10, 2841); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (10, 2842); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (10, 2843); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (10, 2844); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (10, 2845); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (10, 2846); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (10, 2847); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (10, 2848); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (10, 2849); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (10, 2850); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (10, 2851); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (10, 2852); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (10, 2853); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (10, 2854); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (10, 2855); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (10, 2856); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (10, 3166); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (10, 3167); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (10, 3168); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (10, 3171); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (10, 3223); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (10, 2858); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (10, 2861); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (10, 2865); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (10, 2868); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (10, 2871); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (10, 2873); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (10, 2877); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (10, 2880); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (10, 2883); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (10, 2885); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (10, 2888); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (10, 2893); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (10, 2894); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (10, 2898); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (10, 2901); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (10, 2904); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (10, 2906); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (10, 2911); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (10, 2913); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (10, 2915); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (10, 2917); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (10, 2919); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (10, 2921); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (10, 2923); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (10, 2925); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (10, 2859); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (10, 2860); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (10, 2864); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (10, 2867); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (10, 2869); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (10, 2872); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (10, 2878); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (10, 2879); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (10, 2884); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (10, 2887); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (10, 2889); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (10, 2892); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (10, 2896); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (10, 2897); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (10, 2902); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (10, 2905); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (10, 2907); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (10, 2910); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (10, 2914); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (10, 2916); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (10, 2918); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (10, 2920); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (10, 2922); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (10, 2924); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (10, 2857); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (10, 2862); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (10, 2863); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (10, 2866); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (10, 2870); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (10, 2874); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (10, 2875); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (10, 2876); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (10, 2881); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (10, 2882); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (10, 2886); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (10, 2890); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (10, 2891); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (10, 2895); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (10, 2899); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (10, 2900); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (10, 2903); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (10, 2908); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (10, 2909); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (10, 2912); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (10, 3165); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (10, 3169); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (10, 3170); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (10, 3252); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (10, 3224); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (10, 3251); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (10, 3340); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (10, 3339); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (10, 3338); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (10, 3337); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (10, 3341); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (10, 3345); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (10, 3342); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (10, 3346); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (10, 3343); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (10, 3347); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (10, 3344); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (10, 3348); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (10, 3360); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (10, 3361); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (10, 3362); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (10, 3363); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (10, 3364); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (10, 3172); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (10, 3173); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (10, 3174); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (10, 3175); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (10, 3176); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (10, 3177); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (10, 3178); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (10, 3179); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (10, 3180); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (10, 3181); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (10, 3182); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (10, 3183); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (10, 3184); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (10, 3185); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (10, 3186); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (10, 3187); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (10, 3188); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (10, 3189); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (10, 3190); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (10, 3191); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (10, 3192); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (10, 3193); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (10, 3194); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (10, 3195); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (10, 3196); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (10, 3197); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (10, 3198); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (10, 3199); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (10, 3200); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (10, 3201); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (10, 3202); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (10, 3203); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (10, 3204); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (10, 3205); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (10, 3206); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (10, 3207); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (10, 3208); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (10, 3209); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (10, 3210); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (10, 3211); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (10, 3212); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (10, 3213); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (10, 3214); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (10, 3215); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (10, 3216); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (10, 3217); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (10, 3218); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (10, 3219); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (10, 3220); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (10, 3221); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (10, 3222); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (10, 3428); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (10, 3429); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (11, 391); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (11, 516); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (11, 523); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (11, 219); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (11, 220); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (11, 215); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (11, 730); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (11, 738); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (11, 228); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (11, 230); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (11, 236); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (11, 852); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (11, 858); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (11, 864); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (11, 867); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (11, 874); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (11, 877); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (11, 885); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (11, 888); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (11, 1088); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (11, 1093); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (11, 1099); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (11, 1105); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (11, 501); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (11, 504); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (11, 1518); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (11, 1519); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (11, 1514); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (11, 1916); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (11, 1928); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (11, 1921); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (11, 2752); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (11, 2753); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (11, 2754); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (11, 2758); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (11, 2767); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (11, 2768); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (11, 2769); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (11, 393); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (12, 3479); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (12, 3480); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (12, 3481); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (12, 3482); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (12, 3483); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (12, 3484); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (12, 3485); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (12, 3486); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (12, 3487); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (12, 3488); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (12, 3489); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (12, 3490); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (12, 3491); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (12, 3492); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (12, 3493); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (12, 3494); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (12, 3495); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (12, 3496); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (12, 3497); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (12, 3498); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (12, 3499); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (12, 3500); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (12, 3501); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (12, 3502); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (12, 3503); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (12, 3430); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (12, 3431); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (12, 3432); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (12, 3433); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (12, 3434); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (12, 3435); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (12, 3436); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (12, 3437); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (12, 3438); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (12, 3439); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (12, 3440); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (12, 3441); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (12, 3442); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (12, 3443); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (12, 3444); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (12, 3445); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (12, 3446); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (12, 3447); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (12, 3448); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (12, 3449); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (12, 3450); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (12, 3451); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (12, 3452); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (12, 3453); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (12, 3454); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (12, 3403); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (12, 3404); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (12, 3405); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (12, 3406); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (12, 3407); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (12, 3408); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (12, 3409); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (12, 3410); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (12, 3411); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (12, 3412); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (12, 3413); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (12, 3414); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (12, 3415); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (12, 3416); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (12, 3417); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (12, 3418); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (12, 3419); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (12, 3420); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (12, 3421); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (12, 3422); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (12, 3423); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (12, 3424); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (12, 3425); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (12, 3426); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (12, 3427); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (13, 3479); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (13, 3480); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (13, 3481); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (13, 3482); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (13, 3483); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (13, 3484); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (13, 3485); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (13, 3486); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (13, 3487); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (13, 3488); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (13, 3489); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (13, 3490); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (13, 3491); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (13, 3492); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (13, 3493); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (13, 3494); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (13, 3495); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (13, 3496); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (13, 3497); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (13, 3498); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (13, 3499); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (13, 3500); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (13, 3501); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (13, 3502); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (13, 3503); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (14, 3430); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (14, 3431); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (14, 3432); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (14, 3433); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (14, 3434); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (14, 3435); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (14, 3436); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (14, 3437); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (14, 3438); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (14, 3439); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (14, 3440); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (14, 3441); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (14, 3442); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (14, 3443); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (14, 3444); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (14, 3445); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (14, 3446); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (14, 3447); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (14, 3448); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (14, 3449); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (14, 3450); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (14, 3451); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (14, 3452); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (14, 3453); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (14, 3454); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (15, 3403); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (15, 3404); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (15, 3405); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (15, 3406); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (15, 3407); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (15, 3408); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (15, 3409); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (15, 3410); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (15, 3411); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (15, 3412); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (15, 3413); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (15, 3414); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (15, 3415); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (15, 3416); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (15, 3417); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (15, 3418); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (15, 3419); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (15, 3420); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (15, 3421); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (15, 3422); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (15, 3423); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (15, 3424); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (15, 3425); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (15, 3426); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (15, 3427); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (16, 3367); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (16, 52); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (16, 2194); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (16, 2195); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (16, 2198); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (16, 2206); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (16, 2512); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (16, 2516); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (16, 2550); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (16, 2003); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (16, 2004); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (16, 2005); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (16, 2007); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (16, 2010); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (16, 2013); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (17, 1); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (17, 2); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (17, 3); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (17, 4); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (17, 5); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (17, 152); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (17, 160); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (17, 1278); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (17, 1283); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (17, 1392); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (17, 1335); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (17, 1345); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (17, 1380); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (17, 1801); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (17, 1830); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (17, 1837); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (17, 1854); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (17, 1876); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (17, 1880); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (17, 1984); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (17, 1942); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (17, 1945); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (17, 2094); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (17, 2095); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (17, 2096); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (17, 3290); +INSERT INTO playlist_tracks (playlist_id, track_id) VALUES (18, 597); diff --git a/database/store_1/store_1.sqlite b/database/store_1/store_1.sqlite new file mode 100644 index 0000000000000000000000000000000000000000..f1b490cd2488a53b0932f6e6cc730a851d5f3f6b --- /dev/null +++ b/database/store_1/store_1.sqlite @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8d9212f03e0fcfd875750d37067c4c9ac06efaf7334e91776f687976723da26e +size 1155072 diff --git a/database/store_product/schema.sql b/database/store_product/schema.sql new file mode 100644 index 0000000000000000000000000000000000000000..c688690c624b9dca64890770d9e273b62f05affd --- /dev/null +++ b/database/store_product/schema.sql @@ -0,0 +1,105 @@ + +PRAGMA foreign_keys = ON; + +CREATE TABLE "product" ( +"product_id" int, +"product" text, +"dimensions" text, +"dpi" real, +"pages_per_minute_color" real, +"max_page_size" text, +"interface" text, +PRIMARY KEY ("product_id") +); + +CREATE TABLE "store" ( +"Store_ID" int, +"Store_Name" text, +"Type" text, +"Area_size" real, +"Number_of_product_category" real, +"Ranking" int, +PRIMARY KEY ("Store_ID") +); + +CREATE TABLE "district" ( +"District_ID" int, +"District_name" text, +"Headquartered_City" text, +"City_Population" real, +"City_Area" real, +PRIMARY KEY ("District_ID") +); + + +INSERT INTO "product" VALUES (1,"Fujitsu fi-6130 A4 Series Scanner","301 x 160 x 158","600","30","A4","USB 2.0"); +INSERT INTO "product" VALUES (2,"Plustek MobileOffice D28 Corporate","303 x 94 x 60","600","28","A4","USB 2.0"); +INSERT INTO "product" VALUES (3,"Xerox Travel Scanner 100","289 x 51 x 38","600","4","A4","USB 2.0"); +INSERT INTO "product" VALUES (4,"ScanShell 3000DN","300 x 50 x 45","600","3","A4","USB 2.0"); +INSERT INTO "product" VALUES (5,"Canon imageFORMULA P-150","280 x 95 x 40","600","10","216mm x 356mm","USB 2.0"); +INSERT INTO "product" VALUES (6,"Canon DR-2080C","298 x 209 x 99","600","36","216mm x 355mm","USB 2.0"); +INSERT INTO "store" VALUES (1,"Miramichi","City Mall","179.84","17811","2"); +INSERT INTO "store" VALUES (2,"Neguac","Village Store","26.69","1678","3"); +INSERT INTO "store" VALUES (3,"Rogersville","Village Store","7.23","1170","1"); +INSERT INTO "store" VALUES (4,"Blackville","Village Store","21.73","990","10"); +INSERT INTO "store" VALUES (5,"Doaktown","City Mall","28.74","793","9"); +INSERT INTO "district" VALUES ("1","Attock District","Attock City","94620","20"); +INSERT INTO "district" VALUES ("2","Bahawalnagar District","Bahawalnagar City","134936","13"); +INSERT INTO "district" VALUES ("3","Bahawalpur District","Bahawalpur City","530438","38"); +INSERT INTO "district" VALUES ("4","Bhakkar District","Bhakkar City","89380","15"); +INSERT INTO "district" VALUES ("5","Chakwal District","Chakwal City","113524","10"); +INSERT INTO "district" VALUES ("6","Chiniot District","Chiniot City","219254","12"); +INSERT INTO "district" VALUES ("7","Dera Ghazi Khan District","Dera Ghazi Khan City","464742","22"); +INSERT INTO "district" VALUES ("8","Faisalabad District","Faisalabad City","2793721","147"); +INSERT INTO "district" VALUES ("9","Gujranwala District","Gujranwala City","1526168","75"); +INSERT INTO "district" VALUES ("10","Gujrat District","Gujrat City","328512","25"); +INSERT INTO "district" VALUES ("11","Hafizabad District","Hafizabad City","165936","10"); +INSERT INTO "district" VALUES ("12","Jhang District","Jhang City","365198","28"); +INSERT INTO "district" VALUES ("13","Jhelum District","Jhelum City","172073","22"); +INSERT INTO "district" VALUES ("14","Kasur District","Kasur City","314617","18"); +INSERT INTO "district" VALUES ("15","Khanewal District","Khanewal City","165038","17"); + + + +CREATE TABLE "store_product" ( +"Store_ID" int, +"Product_ID" int, +PRIMARY KEY ("Store_ID","Product_ID"), +FOREIGN KEY (`Store_ID`) REFERENCES `store`(`Store_ID`), +FOREIGN KEY (`Product_ID`) REFERENCES `product`(`Product_ID`) +); + +INSERT INTO "store_product" VALUES (1,1); +INSERT INTO "store_product" VALUES (1,2); +INSERT INTO "store_product" VALUES (1,3); +INSERT INTO "store_product" VALUES (1,4); +INSERT INTO "store_product" VALUES (1,6); + +INSERT INTO "store_product" VALUES (2,1); +INSERT INTO "store_product" VALUES (3,2); +INSERT INTO "store_product" VALUES (2,3); +INSERT INTO "store_product" VALUES (3,4); +INSERT INTO "store_product" VALUES (2,6); + + +INSERT INTO "store_product" VALUES (5,1); +INSERT INTO "store_product" VALUES (5,2); +INSERT INTO "store_product" VALUES (5,3); +INSERT INTO "store_product" VALUES (5,4); +INSERT INTO "store_product" VALUES (5,6); + + + +CREATE TABLE "store_district" ( +"Store_ID" int, +"District_ID" int, +PRIMARY KEY ("Store_ID"), +FOREIGN KEY (`Store_ID`) REFERENCES `store`(`Store_ID`), +FOREIGN KEY (`District_ID`) REFERENCES `district`(`District_ID`) +); + +INSERT INTO "store_district" VALUES (1,15); +INSERT INTO "store_district" VALUES (2,15); +INSERT INTO "store_district" VALUES (3,11); +INSERT INTO "store_district" VALUES (4,4); +INSERT INTO "store_district" VALUES (5,3); diff --git a/database/store_product/store_product.sqlite b/database/store_product/store_product.sqlite new file mode 100644 index 0000000000000000000000000000000000000000..c2386ce46e88d7acdff34a3afb4feacdafe5dc6c Binary files /dev/null and b/database/store_product/store_product.sqlite differ diff --git a/database/storm_record/schema.sql b/database/storm_record/schema.sql new file mode 100644 index 0000000000000000000000000000000000000000..c616f3c741dd624bdc14d4cece334a300eaa651c --- /dev/null +++ b/database/storm_record/schema.sql @@ -0,0 +1,62 @@ + +PRAGMA foreign_keys = ON; + +CREATE TABLE "storm" ( +"Storm_ID" int, +"Name" text, +"Dates_active" text, +"Max_speed" int, +"Damage_millions_USD" real, +"Number_Deaths" int, +PRIMARY KEY ("Storm_ID") +); + +INSERT INTO "storm" VALUES (1,"One","May19–May25","995","13",0); +INSERT INTO "storm" VALUES (2,"Two","August3–August10","972","10.75",7); +INSERT INTO "storm" VALUES (3,"Three","August5–August14","972","13",52); +INSERT INTO "storm" VALUES (4,"Four","August26–September2","961","4.05",7); +INSERT INTO "storm" VALUES (5,"Five","September7–September17","988","1.49",3); +INSERT INTO "storm" VALUES (6,"Six","September18–September25","1002","0.039",2); +INSERT INTO "storm" VALUES (7,"Seven","September22–September28","977","13",0); +INSERT INTO "storm" VALUES (8,"Eight","October20–October24","983","13",0); +INSERT INTO "storm" VALUES (9,"Nine","October24–October26","1007","13",0); +INSERT INTO "storm" VALUES (10,"9 cyclones","May19 –October26","961","29.3",71); + +CREATE TABLE "region" ( +`Region_id` int, +`Region_code` text, +`Region_name` text, +PRIMARY KEY ("Region_id") +); + +INSERT INTO "region" VALUES (1, "AF", "Afghanistan"); +INSERT INTO "region" VALUES (2, "AL", "Albania"); +INSERT INTO "region" VALUES (3, "DZ", "Algeria"); +INSERT INTO "region" VALUES (4, "DS", "American Samoa"); +INSERT INTO "region" VALUES (5, "AD", "Andorra"); +INSERT INTO "region" VALUES (6, "AO", "Angola"); +INSERT INTO "region" VALUES (7, "AI", "Anguilla"); +INSERT INTO "region" VALUES (8, "AQ", "Antarctica"); +INSERT INTO "region" VALUES (9, "AG", "Antigua and Barbuda"); +INSERT INTO "region" VALUES (10, "CY", "Cyprus"); +INSERT INTO "region" VALUES (11, "CZ", "Czech Republic"); +INSERT INTO "region" VALUES (12, "DK", "Denmark"); +INSERT INTO "region" VALUES (13, "DJ", "Djibouti"); + + +CREATE TABLE `affected_region` ( +`Region_id` int, +`Storm_ID` int, +`Number_city_affected` real, +PRIMARY KEY (`Region_id`,`Storm_ID`), +FOREIGN KEY (`Region_id`) REFERENCES `region`(`Region_id`), +FOREIGN KEY (`Storm_ID`) REFERENCES `storm`(`Storm_ID`) +); + +INSERT INTO `affected_region` VALUES (1,1,10); +INSERT INTO `affected_region` VALUES (2,1,15); +INSERT INTO `affected_region` VALUES (3,3,30); +INSERT INTO `affected_region` VALUES (1,4,22); +INSERT INTO `affected_region` VALUES (12,5,37); +INSERT INTO `affected_region` VALUES (2,5,12); + diff --git a/database/storm_record/storm_record.sqlite b/database/storm_record/storm_record.sqlite new file mode 100644 index 0000000000000000000000000000000000000000..eabf6e28ea317bcaf3b9ae471544a35554456f6a Binary files /dev/null and b/database/storm_record/storm_record.sqlite differ diff --git a/database/student_1/annotation.json b/database/student_1/annotation.json new file mode 100644 index 0000000000000000000000000000000000000000..54af4b959ed61486655fd962efd4f43bc5336b1d --- /dev/null +++ b/database/student_1/annotation.json @@ -0,0 +1,58 @@ +{ + "label_id": null, + "data": [ + { + "nl": "Find all students who study in classroom 111. For each student list first and last name.\n", + "id": 0 + }, + { + "nl": "For each classroom report the grade that is taught in it. Report just the classroom number and the grade number.\n", + "id": 1 + }, + { + "nl": "Find all teachers who teach fifth grade. Report first and last name of the teachers and the room number.\n", + "id": 2 + }, + { + "nl": "Find all students taught by OTHA MOYER. Output first and last names of students\n", + "id": 3 + }, + { + "nl": "For each teacher teaching grades K through 3, report the grade (s)he teaches. Each name has to be reported exactly once.\n", + "id": 4 + }, + { + "nl": "Find all first-grade students who are NOT taught by OTHA MOYER. Report their first and last names\n", + "id": 5 + }, + { + "nl": "Find and report the number of students taught by LORIA ONDERSMA.\n", + "id": 6 + }, + { + "nl": "For each grade, report the number of classrooms in which it is taught and the toal number of students in the grade.\n", + "id": 7 + }, + { + "nl": "Report the names of teachers who have between seven and eight students in their classes.\n", + "id": 8 + }, + { + "nl": "For each kindergarden classroom, report the total number of students.\n", + "id": 9 + }, + { + "nl": "Find the teacher name who teach(es) the largest number of students.\n", + "id": 10 + }, + { + "nl": "Findallclassroomswhichhavefewerstudentsinthemthantheaverage number of students in a classroom in the school. Report the classroom numbers\n", + "id": 11 + }, + { + "nl": "For each grade with more than one classroom, report the last name of the teacher who teachers the classroom with the largest number of students in the grade.\n", + "id": 12 + } + ], + "review_id": null +} \ No newline at end of file diff --git a/database/student_1/data_csv/README.STUDENTS.TXT b/database/student_1/data_csv/README.STUDENTS.TXT new file mode 100644 index 0000000000000000000000000000000000000000..9aa2888e3474c4a861e416f7042cce3b2d7f3c9e --- /dev/null +++ b/database/student_1/data_csv/README.STUDENTS.TXT @@ -0,0 +1,68 @@ +***************************************************** +CPE 365 Alex Dekhtyar +Cal Poly Computer Science Department +San Luis Obispo College of Engineering +California dekhtyar@csc.calpoly.edu +***************************************************** + STUDENTS DATASET + Version 1.0 + October 1, 2007 +***************************************************** +Sources: this is a synthesized dataset. + +****************************************************** + +This file describes the contents of the STUDENTS dataset +developed for the CPE 365, Introduction to Databases, +course at Cal Poly. + +The dataset contains information about students of a small elementary +school. Each student goes to a specific classroom and a specific +grade. A teacher is assigned to each classroom. + +General Conventions. + + 1. All files in the dataset are CSV (comma-separated values) files. + 2. First line of each file provides the names of + columns. Second line may be empty, or may contain + the first row of the data. + 3. All string values are enclosed in single quotes (') + + + The dataset consists of the following files: + + - list.csv : list of students + - teachers.csv : list of teachers + + + Individual files have the following formats. + +************************************************************************** + +list.csv + + LastName : last name of the student + FirstName : first name of the student + Grade : grade the student attends + Classroom : classroom the student is assigned to + +************************************************************************** + +teachers.csv + + LastName : last name of the teacher + FirstName : first name of the teacher + Classroom : classroom the teacher is assigned to + +************************************************************************** +************************************************************************** + +Permission granted to use and distribute this dataset in its current form, +provided this file is kept unchanged and is distributed together with the +data. + +Permission granted to modify and expand this dataset, provided this +file is updated accordingly with new information. + +************************************************************************** +************************************************************************** diff --git a/database/student_1/data_csv/list.csv b/database/student_1/data_csv/list.csv new file mode 100644 index 0000000000000000000000000000000000000000..b0e12d59cdb63f6b40d121b92714072e2af2b836 --- /dev/null +++ b/database/student_1/data_csv/list.csv @@ -0,0 +1,61 @@ +LastName, FirstName, Grade, Classroom +'CAR', 'MAUDE', 2, 101 +'KRISTENSEN', 'STORMY', 6, 112 +'VANDERWOUDE', 'SHERWOOD', 3, 107 +'NOGODA', 'ISMAEL', 0, 105 +'DANESE', 'JANEE', 4, 111 +'AMY', 'PATRINA', 1, 102 +'PREHM', 'SHANEL', 0, 104 +'GRUNIN', 'EMILE', 5, 109 +'GELL', 'TAMI', 0, 104 +'MADLOCK', 'RAY', 4, 110 +'SUDA', 'DARLEEN', 4, 110 +'DROP', 'SHERMAN', 0, 104 +'PINNELL', 'ROBBY', 3, 107 +'BROMLEY', 'EVELINA', 1, 103 +'YUEN', 'ANIKA', 1, 103 +'BUSTILLOS', 'HILMA', 0, 106 +'GOODNOE', 'GAYLE', 4, 111 +'BALBOA', 'MEL', 1, 103 +'BARTKUS', 'REYNALDO', 1, 102 +'GROENEWEG', 'CRYSTA', 3, 107 +'HOUTCHENS', 'THEO', 0, 106 +'GERSTEIN', 'AL', 5, 109 +'MACIAG', 'CHET', 5, 109 +'SAADE', 'TOBIE', 4, 110 +'BRINE', 'FRANKLYN', 0, 106 +'HANNEMANN', 'CHANTAL', 1, 102 +'BYRUM', 'BENNIE', 0, 105 +'NETZEL', 'JODY', 0, 105 +'VANVLIET', 'COLLIN', 0, 106 +'HONES', 'GUILLERMINA', 0, 104 +'FLACHS', 'JEFFRY', 5, 109 +'GRABILL', 'JULIENNE', 0, 106 +'AREHART', 'VERTIE', 3, 107 +'RUNKLE', 'MARCUS', 1, 102 +'MOWATT', 'KITTIE', 0, 105 +'HOOSOCK', 'LANCE', 1, 103 +'LEAPER', 'ADRIAN', 4, 111 +'PASSEY', 'RAYLENE', 4, 110 +'NAKAHARA', 'SHERON', 0, 105 +'STIRE', 'SHIRLEY', 6, 112 +'RODDEY', 'CYRUS', 4, 110 +'CRANMER', 'CAREY', 5, 109 +'SCHUTZE', 'LANELLE', 5, 109 +'FULVIO', 'ELTON', 4, 111 +'HOESCHEN', 'LYNNETTE', 4, 108 +'SOLOMAN', 'BRODERICK', 0, 106 +'LAPLANT', 'SUMMER', 2, 101 +'LUSKEY', 'BRITT', 4, 108 +'JAGNEAUX', 'ELVIRA', 6, 112 +'BIBB', 'SHANAE', 1, 103 +'WIRTZFELD', 'DELORAS', 0, 106 +'RANSLER', 'RODGER', 1, 102 +'NABOZNY', 'CHRISSY', 3, 107 +'ATWOOD', 'BETHEL', 5, 109 +'CHIARAMONTE', 'NOVELLA', 2, 101 +'TRAYWICK', 'KERI', 1, 102 +'BRIGHTBILL', 'ANTONY', 1, 102 +'HUANG', 'TAWANNA', 5, 109 +'SANTORY', 'JORDON', 3, 107 +'LARKINS', 'GAYLE', 4, 110 diff --git a/database/student_1/data_csv/teachers.csv b/database/student_1/data_csv/teachers.csv new file mode 100644 index 0000000000000000000000000000000000000000..541296455dcdb063ee51ef872fa64560a124f29d --- /dev/null +++ b/database/student_1/data_csv/teachers.csv @@ -0,0 +1,13 @@ +LastName, FirstName, Classroom +'MACROSTIE', 'MIN', 101 +'COVIN', 'JEROME', 102 +'MOYER', 'OTHA', 103 +'NIBLER', 'JERLENE', 104 +'MARROTTE', 'KIRK', 105 +'TARRING', 'LEIA', 106 +'URSERY', 'CHARMAINE', 107 +'ONDERSMA', 'LORIA', 108 +'KAWA', 'GORDON', 109 +'SUMPTION', 'GEORGETTA', 110 +'KRIENER', 'BILLIE', 111 +'SUGAI', 'ALFREDA', 112 diff --git a/database/student_1/link.txt b/database/student_1/link.txt new file mode 100644 index 0000000000000000000000000000000000000000..94c167197fe075c59a0eb4db5c0ce5bf25f766e7 --- /dev/null +++ b/database/student_1/link.txt @@ -0,0 +1 @@ +http://users.csc.calpoly.edu/~dekhtyar/365-Spring2017/index.html \ No newline at end of file diff --git a/database/student_1/q.txt b/database/student_1/q.txt new file mode 100644 index 0000000000000000000000000000000000000000..31d3be49945822a349d7af36eea9ac02b79ec609 --- /dev/null +++ b/database/student_1/q.txt @@ -0,0 +1,25 @@ +Find all students who study in classroom 111. For each student list first and last name. + +For each classroom report the grade that is taught in it. Report just the classroom number and the grade number. + +Find all teachers who teach fifth grade. Report first and last name of the teachers and the room number. + +Find all students taught by OTHA MOYER. Output first and last names of students + +For each teacher teaching grades K through 3, report the grade (s)he teaches. Each name has to be reported exactly once. + +Find all first-grade students who are NOT taught by OTHA MOYER. Report their first and last names + +Find and report the number of students taught by LORIA ONDERSMA. + +For each grade, report the number of classrooms in which it is taught and the toal number of students in the grade. + +Report the names of teachers who have between seven and eight students in their classes. + +For each kindergarden classroom, report the total number of students. + +Find the teacher name who teach(es) the largest number of students. + +Findallclassroomswhichhavefewerstudentsinthemthantheaverage number of students in a classroom in the school. Report the classroom numbers + +For each grade with more than one classroom, report the last name of the teacher who teachers the classroom with the largest number of students in the grade. diff --git a/database/student_1/student_1.sql b/database/student_1/student_1.sql new file mode 100644 index 0000000000000000000000000000000000000000..0c3e44399e63511808765c531ad317e66a3e33e1 --- /dev/null +++ b/database/student_1/student_1.sql @@ -0,0 +1,13 @@ +CREATE TABLE "list" ( + "LastName" TEXT, + "FirstName" TEXT, + "Grade" INTEGER, + "Classroom" INTEGER, + PRIMARY KEY(LastName, FirstName) +); +CREATE TABLE "teachers" ( + "LastName" TEXT, + "FirstName" TEXT, + "Classroom" INTEGER, + PRIMARY KEY(LastName, FirstName) +); diff --git a/database/student_1/student_1.sqlite b/database/student_1/student_1.sqlite new file mode 100644 index 0000000000000000000000000000000000000000..7479ff61e9d4768334598681c1964cab252629c8 Binary files /dev/null and b/database/student_1/student_1.sqlite differ diff --git a/database/student_assessment/schema.sql b/database/student_assessment/schema.sql new file mode 100644 index 0000000000000000000000000000000000000000..cf6abc6dbded4e1ea22dc6e98cefcd83ebb64393 --- /dev/null +++ b/database/student_assessment/schema.sql @@ -0,0 +1,185 @@ +PRAGMA foreign_keys = ON; + +CREATE TABLE Addresses ( +address_id INTEGER NOT NULL, +line_1 VARCHAR(80), +line_2 VARCHAR(80), +city VARCHAR(50), +zip_postcode CHAR(20), +state_province_county VARCHAR(50), +country VARCHAR(50), +PRIMARY KEY (address_id) +); + +INSERT INTO Addresses (`address_id`, `line_1`, `line_2`, `city`, `zip_postcode`, `state_province_county`, `country`) VALUES (5, '0900 Roderick Oval +New Albina, WA 19200-7914', 'Suite 096', 'Linnealand', '862', 'Montana', 'USA'); +INSERT INTO Addresses (`address_id`, `line_1`, `line_2`, `city`, `zip_postcode`, `state_province_county`, `country`) VALUES (9, '966 Dach Ports Apt. 322 +Lake Harmonyhaven, VA 65235', 'Apt. 163', 'South Minnie', '716', 'Texas', 'USA'); +INSERT INTO Addresses (`address_id`, `line_1`, `line_2`, `city`, `zip_postcode`, `state_province_county`, `country`) VALUES (29, '28550 Broderick Underpass Suite 667 +Zakaryhaven, WY 22945-1534', 'Apt. 419', 'North Trystanborough', '112', 'Vermont', 'USA'); +INSERT INTO Addresses (`address_id`, `line_1`, `line_2`, `city`, `zip_postcode`, `state_province_county`, `country`) VALUES (30, '83706 Ana Trafficway Apt. 992 +West Jarret, MI 01112', 'Apt. 884', 'Lake Kaley', '431', 'Washington', 'USA'); +INSERT INTO Addresses (`address_id`, `line_1`, `line_2`, `city`, `zip_postcode`, `state_province_county`, `country`) VALUES (43, '69165 Beatty Station +Haleighstad, MS 55164', 'Suite 333', 'Stephaniemouth', '559', 'Massachusetts', 'USA'); +INSERT INTO Addresses (`address_id`, `line_1`, `line_2`, `city`, `zip_postcode`, `state_province_county`, `country`) VALUES (45, '242 Pacocha Streets +East Isabellashire, ND 03506', 'Suite 370', 'O''Connellview', '514', 'NewMexico', 'USA'); +INSERT INTO Addresses (`address_id`, `line_1`, `line_2`, `city`, `zip_postcode`, `state_province_county`, `country`) VALUES (55, '801 Modesto Island Suite 306 +Lacyville, VT 34059', 'Suite 764', 'New Alta', '176', 'Mississippi', 'USA'); +INSERT INTO Addresses (`address_id`, `line_1`, `line_2`, `city`, `zip_postcode`, `state_province_county`, `country`) VALUES (63, '0177 Fisher Dam +Berniershire, KS 00038-7574', 'Apt. 903', 'South Keenan', '613', 'Michigan', 'USA'); +INSERT INTO Addresses (`address_id`, `line_1`, `line_2`, `city`, `zip_postcode`, `state_province_county`, `country`) VALUES (68, '09471 Hickle Light +Port Maxime, NJ 91550-5409', 'Suite 903', 'Hannahside', '354', 'Connecticut', 'USA'); +INSERT INTO Addresses (`address_id`, `line_1`, `line_2`, `city`, `zip_postcode`, `state_province_county`, `country`) VALUES (73, '67831 Lavonne Lodge +Olsontown, DC 20894', 'Apt. 756', 'Alizeshire', '687', 'NewMexico', 'USA'); +INSERT INTO Addresses (`address_id`, `line_1`, `line_2`, `city`, `zip_postcode`, `state_province_county`, `country`) VALUES (82, '228 Fahey Land +Baileymouth, FL 06297-5606', 'Suite 087', 'South Naomibury', '079', 'Ohio', 'USA'); +INSERT INTO Addresses (`address_id`, `line_1`, `line_2`, `city`, `zip_postcode`, `state_province_county`, `country`) VALUES (88, '1770 Adriel Ramp Apt. 397 +West Ashlynnchester, UT 91968', 'Apt. 617', 'East Tavaresburgh', '179', 'SouthDakota', 'USA'); +INSERT INTO Addresses (`address_id`, `line_1`, `line_2`, `city`, `zip_postcode`, `state_province_county`, `country`) VALUES (92, '8760 Eldon Squares Suite 260 +Marquisestad, GA 38537', 'Apt. 435', 'Lake Devon', '244', 'SouthDakota', 'USA'); +INSERT INTO Addresses (`address_id`, `line_1`, `line_2`, `city`, `zip_postcode`, `state_province_county`, `country`) VALUES (94, '8263 Abbott Crossing Apt. 066 +Oberbrunnerbury, LA 67451', 'Apt. 626', 'Boyleshire', '536', 'Kansas', 'USA'); +INSERT INTO Addresses (`address_id`, `line_1`, `line_2`, `city`, `zip_postcode`, `state_province_county`, `country`) VALUES (99, '521 Paucek Field +North Oscartown, WI 31527', 'Apt. 849', 'Terencetown', '979', 'Michigan', 'USA'); + +CREATE TABLE People ( +person_id INTEGER NOT NULL, +first_name VARCHAR(255), +middle_name VARCHAR(255), +last_name VARCHAR(255), +cell_mobile_number VARCHAR(40), +email_address VARCHAR(40), +login_name VARCHAR(40), +password VARCHAR(40), +PRIMARY KEY (person_id) +); +INSERT INTO People (`person_id`, `first_name`, `middle_name`, `last_name`, `cell_mobile_number`, `email_address`, `login_name`, `password`) VALUES (111, 'Shannon', 'Elissa', 'Senger', '01955267735', 'javier.trantow@example.net', 'pgub', '5e4ff49a61b3544da3ad7dc7e2cf28847564c64c'); +INSERT INTO People (`person_id`, `first_name`, `middle_name`, `last_name`, `cell_mobile_number`, `email_address`, `login_name`, `password`) VALUES (131, 'Dariana', 'Hayley', 'Bednar', '(262)347-9364x516', 'leila14@example.net', 'zops', 'b20b6a9f24aadeda70d54e410c3219f61fb063fb'); +INSERT INTO People (`person_id`, `first_name`, `middle_name`, `last_name`, `cell_mobile_number`, `email_address`, `login_name`, `password`) VALUES (121, 'Virginie', 'Jasmin', 'Hartmann', '(508)319-2970x043', 'boyer.lonie@example.com', 'bkkv', 'b063331ea8116befaa7b84c59c6a22200f5f8caa'); +INSERT INTO People (`person_id`, `first_name`, `middle_name`, `last_name`, `cell_mobile_number`, `email_address`, `login_name`, `password`) VALUES (141, 'Verna', 'Arielle', 'Grant', '1-372-548-7538x314', 'adele.gibson@example.net', 'uuol', '7be9c03d5467d563555c51ebb3eb78e7f90832ec'); +INSERT INTO People (`person_id`, `first_name`, `middle_name`, `last_name`, `cell_mobile_number`, `email_address`, `login_name`, `password`) VALUES (151, 'Hoyt', 'Mercedes', 'Wintheiser', '1-603-110-0647', 'stanley.monahan@example.org', 'bnto', 'c55795df86182959094b83e27900f7cf44ced570'); +INSERT INTO People (`person_id`, `first_name`, `middle_name`, `last_name`, `cell_mobile_number`, `email_address`, `login_name`, `password`) VALUES (161, 'Mayra', 'Haley', 'Hartmann', '724-681-4161x51632', 'terry.kuhlman@example.org', 'rzxu', 'ecae473cb54601e01457078ac0cdf4a1ced837bb'); +INSERT INTO People (`person_id`, `first_name`, `middle_name`, `last_name`, `cell_mobile_number`, `email_address`, `login_name`, `password`) VALUES (171, 'Lizeth', 'Bell', 'Bartoletti', '812.228.0645x91481', 'celestine11@example.net', 'mkou', '76a93d1d3b7becc932d203beac61d064bd54e947'); +INSERT INTO People (`person_id`, `first_name`, `middle_name`, `last_name`, `cell_mobile_number`, `email_address`, `login_name`, `password`) VALUES (181, 'Nova', 'Amiya', 'Feest', '766-272-9964', 'oreynolds@example.com', 'qrwl', '7dce9b688636ee212294c257dd2f6b85c7f65f2e'); + + + +CREATE TABLE Students ( +student_id INTEGER NOT NULL, +student_details VARCHAR(255), +PRIMARY KEY (student_id), +FOREIGN KEY (student_id) REFERENCES People (person_id) +); +INSERT INTO Students (`student_id`,`student_details`) VALUES (111,'Marry'); +INSERT INTO Students (`student_id`,`student_details`) VALUES (121,'Martin'); +INSERT INTO Students (`student_id`,`student_details`) VALUES (131,'Barry'); +INSERT INTO Students (`student_id`,`student_details`) VALUES (141,'Nikhil'); +INSERT INTO Students (`student_id`,`student_details`) VALUES (151,'John'); +INSERT INTO Students (`student_id`,`student_details`) VALUES (161,'Sarah'); +INSERT INTO Students (`student_id`,`student_details`) VALUES (171,'Joe'); +INSERT INTO Students (`student_id`,`student_details`) VALUES (181,'Nancy'); + + +CREATE TABLE Courses ( +course_id VARCHAR(100) NOT NULL, +course_name VARCHAR(120), +course_description VARCHAR(255), +other_details VARCHAR(255), +PRIMARY KEY (course_id) +); +INSERT INTO Courses (`course_id`, `course_name`, `course_description`) VALUES ('301', 'statistics', 'statistics'); +INSERT INTO Courses (`course_id`, `course_name`, `course_description`) VALUES ('302', 'English', 'English'); +INSERT INTO Courses (`course_id`, `course_name`, `course_description`) VALUES ('303', 'French', 'French'); +INSERT INTO Courses (`course_id`, `course_name`, `course_description`) VALUES ('304', 'database', 'database'); +INSERT INTO Courses (`course_id`, `course_name`, `course_description`) VALUES ('305', 'data structure', 'data structure'); +INSERT INTO Courses (`course_id`, `course_name`, `course_description`) VALUES ('306', 'Art history', 'Art history'); + + + +CREATE TABLE People_Addresses ( +person_address_id INTEGER NOT NULL, +person_id INTEGER NOT NULL, +address_id INTEGER NOT NULL, +date_from DATETIME, +date_to DATETIME, +PRIMARY KEY (person_address_id), +FOREIGN KEY (person_id) REFERENCES People (person_id), +FOREIGN KEY (address_id) REFERENCES Addresses (address_id) +); +INSERT INTO People_Addresses (`person_address_id`, `person_id`, `address_id`, `date_from`, `date_to`) VALUES (122, 111, 9, '2012-09-26 13:21:00', '2018-03-21 09:46:30'); +INSERT INTO People_Addresses (`person_address_id`, `person_id`, `address_id`, `date_from`, `date_to`) VALUES (257, 121, 5, '2008-07-31 02:17:25', '2018-03-09 02:11:12'); +INSERT INTO People_Addresses (`person_address_id`, `person_id`, `address_id`, `date_from`, `date_to`) VALUES (269, 131, 88, '2008-05-26 20:43:41', '2018-03-11 20:26:41'); +INSERT INTO People_Addresses (`person_address_id`, `person_id`, `address_id`, `date_from`, `date_to`) VALUES (276, 141, 99, '2014-05-10 00:32:31', '2018-03-08 06:16:47'); +INSERT INTO People_Addresses (`person_address_id`, `person_id`, `address_id`, `date_from`, `date_to`) VALUES (281, 151, 92, '2010-11-26 05:21:12', '2018-03-12 21:10:02'); +INSERT INTO People_Addresses (`person_address_id`, `person_id`, `address_id`, `date_from`, `date_to`) VALUES (340, 161, 45, '2017-05-01 17:32:26', '2018-03-09 08:45:06'); +INSERT INTO People_Addresses (`person_address_id`, `person_id`, `address_id`, `date_from`, `date_to`) VALUES (363, 171, 55, '2015-05-24 16:14:12', '2018-02-23 22:44:18'); +INSERT INTO People_Addresses (`person_address_id`, `person_id`, `address_id`, `date_from`, `date_to`) VALUES (396, 181, 82, '2013-12-26 16:57:01', '2018-03-03 16:06:17'); + + +CREATE TABLE Student_Course_Registrations ( +student_id INTEGER NOT NULL, +course_id INTEGER NOT NULL, +registration_date DATETIME NOT NULL, +PRIMARY KEY (student_id, course_id), +FOREIGN KEY (student_id) REFERENCES Students (student_id), +FOREIGN KEY (course_id) REFERENCES Courses (course_id) +); + +INSERT INTO Student_Course_Registrations (`student_id`,`course_id`,`registration_date`) VALUES (111,'301','2008-11-04 10:35:13'); +INSERT INTO Student_Course_Registrations (`student_id`,`course_id`,`registration_date`) VALUES (121,'301','2008-10-04 10:35:13'); +INSERT INTO Student_Course_Registrations (`student_id`,`course_id`,`registration_date`) VALUES (121,'303','2008-11-14 10:35:13'); +INSERT INTO Student_Course_Registrations (`student_id`,`course_id`,`registration_date`) VALUES (131,'303','2008-11-05 10:35:13'); +INSERT INTO Student_Course_Registrations (`student_id`,`course_id`,`registration_date`) VALUES (141,'302','2008-11-06 10:35:13'); +INSERT INTO Student_Course_Registrations (`student_id`,`course_id`,`registration_date`) VALUES (151,'305','2008-11-07 10:35:13'); +INSERT INTO Student_Course_Registrations (`student_id`,`course_id`,`registration_date`) VALUES (161,'302','2008-11-07 10:35:13'); +INSERT INTO Student_Course_Registrations (`student_id`,`course_id`,`registration_date`) VALUES (171,'301','2008-11-07 10:35:13'); +INSERT INTO Student_Course_Registrations (`student_id`,`course_id`,`registration_date`) VALUES (141,'301','2008-11-08 10:35:13'); + + +CREATE TABLE Student_Course_Attendance ( +student_id INTEGER NOT NULL, +course_id INTEGER NOT NULL, +date_of_attendance DATETIME NOT NULL, +PRIMARY KEY (student_id, course_id), +FOREIGN KEY (student_id, course_id) REFERENCES Student_Course_Registrations (student_id,course_id) +); + +INSERT INTO Student_Course_Attendance (`student_id`,`course_id`,`date_of_attendance`) VALUES (111,'301','2008-11-04 10:35:13'); +INSERT INTO Student_Course_Attendance (`student_id`,`course_id`,`date_of_attendance`) VALUES (121,'301','2012-04-09 11:44:34'); +INSERT INTO Student_Course_Attendance (`student_id`,`course_id`,`date_of_attendance`) VALUES (121,'303','2014-04-09 11:44:34'); +INSERT INTO Student_Course_Attendance (`student_id`,`course_id`,`date_of_attendance`) VALUES (141,'302','2013-04-09 11:44:34'); +INSERT INTO Student_Course_Attendance (`student_id`,`course_id`,`date_of_attendance`) VALUES (171,'301','2015-04-09 11:44:34'); +INSERT INTO Student_Course_Attendance (`student_id`,`course_id`,`date_of_attendance`) VALUES (161,'302','2014-01-09 11:44:34'); +INSERT INTO Student_Course_Attendance (`student_id`,`course_id`,`date_of_attendance`) VALUES (151,'305','2012-05-09 11:44:34'); +INSERT INTO Student_Course_Attendance (`student_id`,`course_id`,`date_of_attendance`) VALUES (141,'301','2012-09-09 11:44:34'); + + +CREATE TABLE Candidates ( +candidate_id INTEGER NOT NULL , +candidate_details VARCHAR(255), +PRIMARY KEY (candidate_id), +FOREIGN KEY (candidate_id) REFERENCES People (person_id) +); +CREATE TABLE Candidate_Assessments ( +candidate_id INTEGER NOT NULL, +qualification CHAR(15) NOT NULL, +assessment_date DATETIME NOT NULL, +asessment_outcome_code CHAR(15) NOT NULL, +PRIMARY KEY (candidate_id, qualification), +FOREIGN KEY (candidate_id) REFERENCES Candidates (candidate_id) +); +INSERT INTO Candidates (`candidate_id`,`candidate_details`) VALUES (111,'Jane'); +INSERT INTO Candidates (`candidate_id`,`candidate_details`) VALUES (121,'Robert'); +INSERT INTO Candidates (`candidate_id`,`candidate_details`) VALUES (131,'Alex'); +INSERT INTO Candidates (`candidate_id`,`candidate_details`) VALUES (141,'Tao'); +INSERT INTO Candidates (`candidate_id`,`candidate_details`) VALUES (151,'Jack'); +INSERT INTO Candidates (`candidate_id`,`candidate_details`) VALUES (161,'Leo'); +INSERT INTO Candidates (`candidate_id`,`candidate_details`) VALUES (171,'Robin'); +INSERT INTO Candidates (`candidate_id`,`candidate_details`) VALUES (181,'Cindy'); + + +INSERT INTO Candidate_Assessments (`candidate_id`,`qualification`,`assessment_date`,`asessment_outcome_code`) VALUES (111,'A','2010-04-07 11:44:34','Pass'); +INSERT INTO Candidate_Assessments (`candidate_id`,`qualification`,`assessment_date`,`asessment_outcome_code`) VALUES (121,'B','2010-04-17 11:44:34','Pass'); +INSERT INTO Candidate_Assessments (`candidate_id`,`qualification`,`assessment_date`,`asessment_outcome_code`) VALUES (131,'D','2010-04-05 11:44:34','Fail'); +INSERT INTO Candidate_Assessments (`candidate_id`,`qualification`,`assessment_date`,`asessment_outcome_code`) VALUES (141,'C','2010-04-06 11:44:34','Pass'); +INSERT INTO Candidate_Assessments (`candidate_id`,`qualification`,`assessment_date`,`asessment_outcome_code`) VALUES (151,'B','2010-04-09 11:44:34','Pass'); diff --git a/database/student_assessment/student_assessment.sqlite b/database/student_assessment/student_assessment.sqlite new file mode 100644 index 0000000000000000000000000000000000000000..d8d7d110f7be52a30a6d42f135709fc1737917bf Binary files /dev/null and b/database/student_assessment/student_assessment.sqlite differ diff --git a/database/student_transcripts_tracking/schema.sql b/database/student_transcripts_tracking/schema.sql new file mode 100644 index 0000000000000000000000000000000000000000..ce2172aa63f76c68772ef24cf0d75b369027ba05 --- /dev/null +++ b/database/student_transcripts_tracking/schema.sql @@ -0,0 +1,281 @@ +PRAGMA foreign_keys = ON; +CREATE TABLE `Addresses` ( +`address_id` INTEGER PRIMARY KEY, +`line_1` VARCHAR(255), +`line_2` VARCHAR(255), +`line_3` VARCHAR(255), +`city` VARCHAR(255), +`zip_postcode` VARCHAR(20), +`state_province_county` VARCHAR(255), +`country` VARCHAR(255), +`other_address_details` VARCHAR(255) +); +CREATE TABLE `Courses` ( +`course_id` INTEGER PRIMARY KEY, +`course_name` VARCHAR(255), +`course_description` VARCHAR(255), +`other_details` VARCHAR(255) +); + +INSERT INTO Addresses (`address_id`, `line_1`, `line_2`, `line_3`, `city`, `zip_postcode`, `state_province_county`, `country`, `other_address_details`) VALUES (1, '2294 Grant Square Apt. 235', 'Apt. 370', NULL, 'Port Chelsea', '148', 'Virginia', 'Iceland', NULL); +INSERT INTO Addresses (`address_id`, `line_1`, `line_2`, `line_3`, `city`, `zip_postcode`, `state_province_county`, `country`, `other_address_details`) VALUES (2, '3999 Aufderhar Ways Suite 593', 'Apt. 388', NULL, 'Lake Laishafurt', '943', 'Kentucky', 'Burundi', NULL); +INSERT INTO Addresses (`address_id`, `line_1`, `line_2`, `line_3`, `city`, `zip_postcode`, `state_province_county`, `country`, `other_address_details`) VALUES (3, '67942 Carlotta Ferry Apt. 686', 'Apt. 583', NULL, 'Goodwinhaven', '541', 'Kansas', 'Saudi Arabia', NULL); +INSERT INTO Addresses (`address_id`, `line_1`, `line_2`, `line_3`, `city`, `zip_postcode`, `state_province_county`, `country`, `other_address_details`) VALUES (4, '0144 Lamar Plaza Apt. 346', 'Suite 703', NULL, 'Port Evanston', '847', 'Washington', 'Angola', NULL); +INSERT INTO Addresses (`address_id`, `line_1`, `line_2`, `line_3`, `city`, `zip_postcode`, `state_province_county`, `country`, `other_address_details`) VALUES (5, '858 Peggie Bypass Suite 212', 'Apt. 335', NULL, 'Michelleburgh', '446', 'Hawaii', 'Haiti', NULL); +INSERT INTO Addresses (`address_id`, `line_1`, `line_2`, `line_3`, `city`, `zip_postcode`, `state_province_county`, `country`, `other_address_details`) VALUES (6, '16998 Mraz Lodge', 'Apt. 689', NULL, 'North Omer', '902', 'Kentucky', 'Gibraltar', NULL); +INSERT INTO Addresses (`address_id`, `line_1`, `line_2`, `line_3`, `city`, `zip_postcode`, `state_province_county`, `country`, `other_address_details`) VALUES (7, '193 Marlin Brook', 'Apt. 406', NULL, 'Herzoghaven', '068', 'Arkansas', 'Cook Islands', NULL); +INSERT INTO Addresses (`address_id`, `line_1`, `line_2`, `line_3`, `city`, `zip_postcode`, `state_province_county`, `country`, `other_address_details`) VALUES (8, '202 Hessel Views Apt. 468', 'Apt. 305', NULL, 'Mariliehaven', '638', 'Idaho', 'Croatia', NULL); +INSERT INTO Addresses (`address_id`, `line_1`, `line_2`, `line_3`, `city`, `zip_postcode`, `state_province_county`, `country`, `other_address_details`) VALUES (9, '0643 Muller Vista', 'Suite 383', NULL, 'Port Elvisfurt', '777', 'NorthCarolina', 'Gabon', NULL); +INSERT INTO Addresses (`address_id`, `line_1`, `line_2`, `line_3`, `city`, `zip_postcode`, `state_province_county`, `country`, `other_address_details`) VALUES (10, '7081 Eda Center', 'Suite 830', NULL, 'Rutherfordtown', '839', 'Delaware', 'Kyrgyz Republic', NULL); +INSERT INTO Addresses (`address_id`, `line_1`, `line_2`, `line_3`, `city`, `zip_postcode`, `state_province_county`, `country`, `other_address_details`) VALUES (11, '9283 Schulist Falls Apt. 037', 'Suite 239', NULL, 'South Palma', '400', 'WestVirginia', 'Bermuda', NULL); +INSERT INTO Addresses (`address_id`, `line_1`, `line_2`, `line_3`, `city`, `zip_postcode`, `state_province_county`, `country`, `other_address_details`) VALUES (12, '979 Haag Shores Suite 656', 'Apt. 468', NULL, 'Prohaskafort', '590', 'SouthDakota', 'Lesotho', NULL); +INSERT INTO Addresses (`address_id`, `line_1`, `line_2`, `line_3`, `city`, `zip_postcode`, `state_province_county`, `country`, `other_address_details`) VALUES (13, '492 Wilkinson Route', 'Suite 865', NULL, 'New Clemensburgh', '386', 'Florida', 'Samoa', NULL); +INSERT INTO Addresses (`address_id`, `line_1`, `line_2`, `line_3`, `city`, `zip_postcode`, `state_province_county`, `country`, `other_address_details`) VALUES (14, '186 Evan Motorway Apt. 409', 'Suite 079', NULL, 'Lake Careyberg', '895', 'Kentucky', 'New Caledonia', NULL); +INSERT INTO Addresses (`address_id`, `line_1`, `line_2`, `line_3`, `city`, `zip_postcode`, `state_province_county`, `country`, `other_address_details`) VALUES (15, '74046 Metz Walk Apt. 113', 'Suite 674', NULL, 'Port Oceane', '669', 'Wyoming', 'Norfolk Island', NULL); +INSERT INTO Courses (`course_id`, `course_name`, `course_description`, `other_details`) VALUES (1, 'ds', 'p', NULL); +INSERT INTO Courses (`course_id`, `course_name`, `course_description`, `other_details`) VALUES (2, 'math', 'q', NULL); +INSERT INTO Courses (`course_id`, `course_name`, `course_description`, `other_details`) VALUES (3, 'os', 'v', NULL); +INSERT INTO Courses (`course_id`, `course_name`, `course_description`, `other_details`) VALUES (4, 'en', 'k', NULL); +INSERT INTO Courses (`course_id`, `course_name`, `course_description`, `other_details`) VALUES (5, 'fr', 'c', NULL); +INSERT INTO Courses (`course_id`, `course_name`, `course_description`, `other_details`) VALUES (6, 'la', 'n', NULL); +INSERT INTO Courses (`course_id`, `course_name`, `course_description`, `other_details`) VALUES (7, 'cal', 'l', NULL); +INSERT INTO Courses (`course_id`, `course_name`, `course_description`, `other_details`) VALUES (8, 'nlp', 'q', NULL); +INSERT INTO Courses (`course_id`, `course_name`, `course_description`, `other_details`) VALUES (9, 'dl', 'l', NULL); +INSERT INTO Courses (`course_id`, `course_name`, `course_description`, `other_details`) VALUES (10, 'ml', 'b', NULL); +INSERT INTO Courses (`course_id`, `course_name`, `course_description`, `other_details`) VALUES (11, 'ai', 'w', NULL); +INSERT INTO Courses (`course_id`, `course_name`, `course_description`, `other_details`) VALUES (12, 'db', 'q', NULL); +INSERT INTO Courses (`course_id`, `course_name`, `course_description`, `other_details`) VALUES (13, 'rs', 'v', NULL); +INSERT INTO Courses (`course_id`, `course_name`, `course_description`, `other_details`) VALUES (14, 'pl', 'p', NULL); +INSERT INTO Courses (`course_id`, `course_name`, `course_description`, `other_details`) VALUES (15, 'oop', 'd', NULL); + + +CREATE TABLE `Departments` ( +`department_id` INTEGER PRIMARY KEY, +`department_name` VARCHAR(255), +`department_description` VARCHAR(255), +`other_details` VARCHAR(255) +); +INSERT INTO Departments (`department_id`, `department_name`, `department_description`, `other_details`) VALUES (1, 'computer science', 'error', NULL); +INSERT INTO Departments (`department_id`, `department_name`, `department_description`, `other_details`) VALUES (2, 'history', 'nostrum', NULL); +INSERT INTO Departments (`department_id`, `department_name`, `department_description`, `other_details`) VALUES (3, 'art', 'aliquam', NULL); +INSERT INTO Departments (`department_id`, `department_name`, `department_description`, `other_details`) VALUES (4, 'linguistic', 'natus', NULL); +INSERT INTO Departments (`department_id`, `department_name`, `department_description`, `other_details`) VALUES (5, 'management', 'nihil', NULL); +INSERT INTO Departments (`department_id`, `department_name`, `department_description`, `other_details`) VALUES (6, 'engineer', 'autem', NULL); +INSERT INTO Departments (`department_id`, `department_name`, `department_description`, `other_details`) VALUES (7, 'math', 'doloribus', NULL); +INSERT INTO Departments (`department_id`, `department_name`, `department_description`, `other_details`) VALUES (8, 'statistics', 'nihil', NULL); +INSERT INTO Departments (`department_id`, `department_name`, `department_description`, `other_details`) VALUES (9, 'law', 'dolorem', NULL); +INSERT INTO Departments (`department_id`, `department_name`, `department_description`, `other_details`) VALUES (10, 'economics', 'non', NULL); +INSERT INTO Departments (`department_id`, `department_name`, `department_description`, `other_details`) VALUES (11, 'biology', 'consequatur', NULL); +INSERT INTO Departments (`department_id`, `department_name`, `department_description`, `other_details`) VALUES (12, 'medical', 'ea', NULL); +INSERT INTO Departments (`department_id`, `department_name`, `department_description`, `other_details`) VALUES (13, 'dance', 'consequatur', NULL); +INSERT INTO Departments (`department_id`, `department_name`, `department_description`, `other_details`) VALUES (14, 'drama', 'in', NULL); +INSERT INTO Departments (`department_id`, `department_name`, `department_description`, `other_details`) VALUES (15, 'geography', 'nisi', NULL); + + + +CREATE TABLE `Degree_Programs` ( +`degree_program_id` INTEGER PRIMARY KEY, +`department_id` INTEGER NOT NULL, +`degree_summary_name` VARCHAR(255), +`degree_summary_description` VARCHAR(255), +`other_details` VARCHAR(255), +FOREIGN KEY (`department_id` ) REFERENCES `Departments`(`department_id` ) +); + +INSERT INTO Degree_Programs (`degree_program_id`, `department_id`, `degree_summary_name`, `degree_summary_description`, `other_details`) VALUES (1, 13, 'Master', 'architecto', NULL); +INSERT INTO Degree_Programs (`degree_program_id`, `department_id`, `degree_summary_name`, `degree_summary_description`, `other_details`) VALUES (2, 2, 'Master', 'cumque', NULL); +INSERT INTO Degree_Programs (`degree_program_id`, `department_id`, `degree_summary_name`, `degree_summary_description`, `other_details`) VALUES (3, 13, 'Master', 'placeat', NULL); +INSERT INTO Degree_Programs (`degree_program_id`, `department_id`, `degree_summary_name`, `degree_summary_description`, `other_details`) VALUES (4, 8, 'Bachelor', 'unde', NULL); +INSERT INTO Degree_Programs (`degree_program_id`, `department_id`, `degree_summary_name`, `degree_summary_description`, `other_details`) VALUES (5, 11, 'Master', 'officiis', NULL); +INSERT INTO Degree_Programs (`degree_program_id`, `department_id`, `degree_summary_name`, `degree_summary_description`, `other_details`) VALUES (6, 8, 'Bachelor', 'aperiam', NULL); +INSERT INTO Degree_Programs (`degree_program_id`, `department_id`, `degree_summary_name`, `degree_summary_description`, `other_details`) VALUES (7, 14, 'Bachelor', 'assumenda', NULL); +INSERT INTO Degree_Programs (`degree_program_id`, `department_id`, `degree_summary_name`, `degree_summary_description`, `other_details`) VALUES (8, 15, 'Master', 'earum', NULL); +INSERT INTO Degree_Programs (`degree_program_id`, `department_id`, `degree_summary_name`, `degree_summary_description`, `other_details`) VALUES (9, 3, 'Bachelor', 'voluptas', NULL); +INSERT INTO Degree_Programs (`degree_program_id`, `department_id`, `degree_summary_name`, `degree_summary_description`, `other_details`) VALUES (10, 8, 'Bachelor', 'aut', NULL); +INSERT INTO Degree_Programs (`degree_program_id`, `department_id`, `degree_summary_name`, `degree_summary_description`, `other_details`) VALUES (11, 14, 'Bachelor', 'aut', NULL); +INSERT INTO Degree_Programs (`degree_program_id`, `department_id`, `degree_summary_name`, `degree_summary_description`, `other_details`) VALUES (12, 4, 'Master', 'qui', NULL); +INSERT INTO Degree_Programs (`degree_program_id`, `department_id`, `degree_summary_name`, `degree_summary_description`, `other_details`) VALUES (13, 7, 'Bachelor', 'quam', NULL); +INSERT INTO Degree_Programs (`degree_program_id`, `department_id`, `degree_summary_name`, `degree_summary_description`, `other_details`) VALUES (14, 2, 'PHD', 'et', NULL); +INSERT INTO Degree_Programs (`degree_program_id`, `department_id`, `degree_summary_name`, `degree_summary_description`, `other_details`) VALUES (15, 12, 'PHD', 'esse', NULL); + + + +CREATE TABLE `Sections` ( +`section_id` INTEGER PRIMARY KEY, +`course_id` INTEGER NOT NULL, +`section_name` VARCHAR(255), +`section_description` VARCHAR(255), +`other_details` VARCHAR(255), +FOREIGN KEY (`course_id` ) REFERENCES `Courses`(`course_id` ) +); +INSERT INTO Sections (`section_id`, `course_id`, `section_name`, `section_description`, `other_details`) VALUES (1, 9, 'a', 'non', NULL); +INSERT INTO Sections (`section_id`, `course_id`, `section_name`, `section_description`, `other_details`) VALUES (2, 2, 'b', 'voluptatem', NULL); +INSERT INTO Sections (`section_id`, `course_id`, `section_name`, `section_description`, `other_details`) VALUES (3, 8, 'c', 'qui', NULL); +INSERT INTO Sections (`section_id`, `course_id`, `section_name`, `section_description`, `other_details`) VALUES (4, 1, 'd', 'voluptas', NULL); +INSERT INTO Sections (`section_id`, `course_id`, `section_name`, `section_description`, `other_details`) VALUES (5, 5, 'e', 'ex', NULL); +INSERT INTO Sections (`section_id`, `course_id`, `section_name`, `section_description`, `other_details`) VALUES (6, 7, 'f', 'doloremque', NULL); +INSERT INTO Sections (`section_id`, `course_id`, `section_name`, `section_description`, `other_details`) VALUES (7, 12, 'g', 'provident', NULL); +INSERT INTO Sections (`section_id`, `course_id`, `section_name`, `section_description`, `other_details`) VALUES (8, 14, 'h', 'et', NULL); +INSERT INTO Sections (`section_id`, `course_id`, `section_name`, `section_description`, `other_details`) VALUES (9, 8, 'j', 'quis', NULL); +INSERT INTO Sections (`section_id`, `course_id`, `section_name`, `section_description`, `other_details`) VALUES (10, 14, 'k', 'nesciunt', NULL); +INSERT INTO Sections (`section_id`, `course_id`, `section_name`, `section_description`, `other_details`) VALUES (11, 1, 'l', 'ad', NULL); +INSERT INTO Sections (`section_id`, `course_id`, `section_name`, `section_description`, `other_details`) VALUES (12, 4, 'o', 'et', NULL); +INSERT INTO Sections (`section_id`, `course_id`, `section_name`, `section_description`, `other_details`) VALUES (13, 5, 'p', 'facilis', NULL); +INSERT INTO Sections (`section_id`, `course_id`, `section_name`, `section_description`, `other_details`) VALUES (14, 6, 'u', 'reprehenderit', NULL); +INSERT INTO Sections (`section_id`, `course_id`, `section_name`, `section_description`, `other_details`) VALUES (15, 10, 'y', 'qui', NULL); + + + +CREATE TABLE `Semesters` ( +`semester_id` INTEGER PRIMARY KEY, +`semester_name` VARCHAR(255), +`semester_description` VARCHAR(255), +`other_details` VARCHAR(255) +); +INSERT INTO Semesters (`semester_id`, `semester_name`, `semester_description`, `other_details`) VALUES (1, 'spring 2010', 'x', NULL); +INSERT INTO Semesters (`semester_id`, `semester_name`, `semester_description`, `other_details`) VALUES (2, 'summer 2010', 'g', NULL); +INSERT INTO Semesters (`semester_id`, `semester_name`, `semester_description`, `other_details`) VALUES (3, 'fall 2010', 'w', NULL); +INSERT INTO Semesters (`semester_id`, `semester_name`, `semester_description`, `other_details`) VALUES (4, 'winter 2010', 'c', NULL); +INSERT INTO Semesters (`semester_id`, `semester_name`, `semester_description`, `other_details`) VALUES (5, 'spring 2018', 'c', NULL); +INSERT INTO Semesters (`semester_id`, `semester_name`, `semester_description`, `other_details`) VALUES (6, 'spring 2012', 'l', NULL); +INSERT INTO Semesters (`semester_id`, `semester_name`, `semester_description`, `other_details`) VALUES (7, 'spring 2013', 'y', NULL); +INSERT INTO Semesters (`semester_id`, `semester_name`, `semester_description`, `other_details`) VALUES (8, 'spring 2014', 'x', NULL); +INSERT INTO Semesters (`semester_id`, `semester_name`, `semester_description`, `other_details`) VALUES (9, 'spring 2015', 'x', NULL); +INSERT INTO Semesters (`semester_id`, `semester_name`, `semester_description`, `other_details`) VALUES (10, 'spring 2016', 'f', NULL); +INSERT INTO Semesters (`semester_id`, `semester_name`, `semester_description`, `other_details`) VALUES (11, 'spring 2017', 'g', NULL); +INSERT INTO Semesters (`semester_id`, `semester_name`, `semester_description`, `other_details`) VALUES (12, 'spring 2018', 'm', NULL); +INSERT INTO Semesters (`semester_id`, `semester_name`, `semester_description`, `other_details`) VALUES (13, 'fall 2018', 'q', NULL); +INSERT INTO Semesters (`semester_id`, `semester_name`, `semester_description`, `other_details`) VALUES (14, 'winter 2018', 't', NULL); +INSERT INTO Semesters (`semester_id`, `semester_name`, `semester_description`, `other_details`) VALUES (15, 'spring 2019', 'o', NULL); + + +CREATE TABLE `Students` ( +`student_id` INTEGER PRIMARY KEY, +`current_address_id` INTEGER NOT NULL, +`permanent_address_id` INTEGER NOT NULL, +`first_name` VARCHAR(80), +`middle_name` VARCHAR(40), +`last_name` VARCHAR(40), +`cell_mobile_number` VARCHAR(40), +`email_address` VARCHAR(40), +`ssn` VARCHAR(40), +`date_first_registered` DATETIME, +`date_left` DATETIME, +`other_student_details` VARCHAR(255), +FOREIGN KEY (`current_address_id` ) REFERENCES `Addresses`(`address_id` ), +FOREIGN KEY (`permanent_address_id` ) REFERENCES `Addresses`(`address_id` ) +); + +INSERT INTO Students (`student_id`, `current_address_id`, `permanent_address_id`, `first_name`, `middle_name`, `last_name`, `cell_mobile_number`, `email_address`, `ssn`, `date_first_registered`, `date_left`, `other_student_details`) VALUES (1, 10, 15, 'Timmothy', 'Anna', 'Ward', '(096)889-8954x524', 'erwin.zboncak@example.com', '965', '1971-02-05 07:28:23', '1971-05-17 19:28:49', 'quia'); +INSERT INTO Students (`student_id`, `current_address_id`, `permanent_address_id`, `first_name`, `middle_name`, `last_name`, `cell_mobile_number`, `email_address`, `ssn`, `date_first_registered`, `date_left`, `other_student_details`) VALUES (2, 12, 5, 'Hobart', 'Lorenz', 'Balistreri', '1-009-710-5151', 'swift.kolby@example.com', '304246', '1976-10-26 02:33:06', '2013-10-05 17:41:28', 'autem'); +INSERT INTO Students (`student_id`, `current_address_id`, `permanent_address_id`, `first_name`, `middle_name`, `last_name`, `cell_mobile_number`, `email_address`, `ssn`, `date_first_registered`, `date_left`, `other_student_details`) VALUES (3, 9, 5, 'Warren', 'Violet', 'Gleichner', '07661787471', 'johns.unique@example.net', '3', '2007-08-29 23:25:41', '2007-03-31 09:53:19', 'facilis'); +INSERT INTO Students (`student_id`, `current_address_id`, `permanent_address_id`, `first_name`, `middle_name`, `last_name`, `cell_mobile_number`, `email_address`, `ssn`, `date_first_registered`, `date_left`, `other_student_details`) VALUES (4, 7, 11, 'Jarvis', 'Aaliyah', 'Carroll', '09700166582', 'jillian26@example.net', '141072406', '2014-03-28 05:48:23', '2007-08-02 04:12:58', 'atque'); +INSERT INTO Students (`student_id`, `current_address_id`, `permanent_address_id`, `first_name`, `middle_name`, `last_name`, `cell_mobile_number`, `email_address`, `ssn`, `date_first_registered`, `date_left`, `other_student_details`) VALUES (5, 9, 9, 'Milton', 'Vaughn', 'Christiansen', '171-642-5684', 'lhartmann@example.org', '', '1973-05-19 19:12:46', '2007-11-28 12:50:21', 'laborum'); +INSERT INTO Students (`student_id`, `current_address_id`, `permanent_address_id`, `first_name`, `middle_name`, `last_name`, `cell_mobile_number`, `email_address`, `ssn`, `date_first_registered`, `date_left`, `other_student_details`) VALUES (6, 6, 3, 'Stanford', 'Mona', 'Rogahn', '436.613.7683', 'skassulke@example.net', '248', '1997-03-20 16:47:25', '2016-04-09 12:27:04', 'qui'); +INSERT INTO Students (`student_id`, `current_address_id`, `permanent_address_id`, `first_name`, `middle_name`, `last_name`, `cell_mobile_number`, `email_address`, `ssn`, `date_first_registered`, `date_left`, `other_student_details`) VALUES (7, 15, 3, 'Frida', 'Aisha', 'Huel', '1-879-796-8987x164', 'baumbach.lucious@example.org', '668', '2018-03-13 09:56:22', '1997-11-16 08:54:33', 'dolorum'); +INSERT INTO Students (`student_id`, `current_address_id`, `permanent_address_id`, `first_name`, `middle_name`, `last_name`, `cell_mobile_number`, `email_address`, `ssn`, `date_first_registered`, `date_left`, `other_student_details`) VALUES (8, 1, 5, 'Delaney', 'Judd', 'Ankunding', '03174364122', 'dell43@example.net', '402', '1982-02-14 08:46:35', '2004-12-08 05:29:11', 'voluptatem'); +INSERT INTO Students (`student_id`, `current_address_id`, `permanent_address_id`, `first_name`, `middle_name`, `last_name`, `cell_mobile_number`, `email_address`, `ssn`, `date_first_registered`, `date_left`, `other_student_details`) VALUES (9, 2, 15, 'Reva', 'Golda', 'Osinski', '(507)365-8405', 'qo''kon@example.com', '39', '2017-01-04 08:10:25', '1990-09-01 05:03:27', 'nesciunt'); +INSERT INTO Students (`student_id`, `current_address_id`, `permanent_address_id`, `first_name`, `middle_name`, `last_name`, `cell_mobile_number`, `email_address`, `ssn`, `date_first_registered`, `date_left`, `other_student_details`) VALUES (10, 15, 14, 'Helga', 'Cleve', 'Mohr', '677.401.9382', 'nya.lesch@example.net', '43', '2009-09-25 00:14:25', '2017-07-09 21:38:43', 'rerum'); +INSERT INTO Students (`student_id`, `current_address_id`, `permanent_address_id`, `first_name`, `middle_name`, `last_name`, `cell_mobile_number`, `email_address`, `ssn`, `date_first_registered`, `date_left`, `other_student_details`) VALUES (11, 14, 4, 'Gregg', 'Mossie', 'Schuppe', '(462)246-7921', 'nbruen@example.org', '494', '1989-05-24 23:31:29', '1975-10-09 00:49:27', 'omnis'); +INSERT INTO Students (`student_id`, `current_address_id`, `permanent_address_id`, `first_name`, `middle_name`, `last_name`, `cell_mobile_number`, `email_address`, `ssn`, `date_first_registered`, `date_left`, `other_student_details`) VALUES (12, 14, 9, 'Orrin', 'Neal', 'Kemmer', '(982)153-1469x1733', 'beth42@example.org', '6274274', '2005-12-15 08:42:10', '2006-08-04 17:26:49', 'non'); +INSERT INTO Students (`student_id`, `current_address_id`, `permanent_address_id`, `first_name`, `middle_name`, `last_name`, `cell_mobile_number`, `email_address`, `ssn`, `date_first_registered`, `date_left`, `other_student_details`) VALUES (13, 9, 8, 'Deon', 'Brooklyn', 'Weimann', '(213)445-0399x85208', 'jhuel@example.com', '68095', '1986-02-24 21:12:23', '2014-05-30 23:32:02', 'assumenda'); +INSERT INTO Students (`student_id`, `current_address_id`, `permanent_address_id`, `first_name`, `middle_name`, `last_name`, `cell_mobile_number`, `email_address`, `ssn`, `date_first_registered`, `date_left`, `other_student_details`) VALUES (14, 12, 11, 'Jordy', 'Osborne', 'Rempel', '(605)919-3594x3661', 'gracie29@example.com', '34458427', '2004-12-24 12:36:46', '1999-08-24 00:07:10', 'et'); +INSERT INTO Students (`student_id`, `current_address_id`, `permanent_address_id`, `first_name`, `middle_name`, `last_name`, `cell_mobile_number`, `email_address`, `ssn`, `date_first_registered`, `date_left`, `other_student_details`) VALUES (15, 2, 9, 'Jett', 'Alberta', 'Jaskolski', '877.549.9067x8723', 'mya88@example.org', '156', '1982-06-19 13:15:18', '1982-06-11 00:25:39', 'omnis'); + + + +CREATE TABLE `Student_Enrolment` ( +`student_enrolment_id` INTEGER PRIMARY KEY, +`degree_program_id` INTEGER NOT NULL, +`semester_id` INTEGER NOT NULL, +`student_id` INTEGER NOT NULL, +`other_details` VARCHAR(255), +FOREIGN KEY (`degree_program_id` ) REFERENCES `Degree_Programs`(`degree_program_id` ), +FOREIGN KEY (`semester_id` ) REFERENCES `Semesters`(`semester_id` ), +FOREIGN KEY (`student_id` ) REFERENCES `Students`(`student_id` ) +); +INSERT INTO Student_Enrolment (`student_enrolment_id`, `degree_program_id`, `semester_id`, `student_id`, `other_details`) VALUES (1, 12, 13, 14, NULL); +INSERT INTO Student_Enrolment (`student_enrolment_id`, `degree_program_id`, `semester_id`, `student_id`, `other_details`) VALUES (2, 4, 2, 9, NULL); +INSERT INTO Student_Enrolment (`student_enrolment_id`, `degree_program_id`, `semester_id`, `student_id`, `other_details`) VALUES (3, 10, 2, 7, NULL); +INSERT INTO Student_Enrolment (`student_enrolment_id`, `degree_program_id`, `semester_id`, `student_id`, `other_details`) VALUES (4, 4, 15, 9, NULL); +INSERT INTO Student_Enrolment (`student_enrolment_id`, `degree_program_id`, `semester_id`, `student_id`, `other_details`) VALUES (5, 5, 1, 14, NULL); +INSERT INTO Student_Enrolment (`student_enrolment_id`, `degree_program_id`, `semester_id`, `student_id`, `other_details`) VALUES (6, 3, 13, 1, NULL); +INSERT INTO Student_Enrolment (`student_enrolment_id`, `degree_program_id`, `semester_id`, `student_id`, `other_details`) VALUES (7, 9, 9, 4, NULL); +INSERT INTO Student_Enrolment (`student_enrolment_id`, `degree_program_id`, `semester_id`, `student_id`, `other_details`) VALUES (8, 8, 5, 12, NULL); +INSERT INTO Student_Enrolment (`student_enrolment_id`, `degree_program_id`, `semester_id`, `student_id`, `other_details`) VALUES (9, 12, 6, 7, NULL); +INSERT INTO Student_Enrolment (`student_enrolment_id`, `degree_program_id`, `semester_id`, `student_id`, `other_details`) VALUES (10, 11, 2, 7, NULL); +INSERT INTO Student_Enrolment (`student_enrolment_id`, `degree_program_id`, `semester_id`, `student_id`, `other_details`) VALUES (11, 10, 13, 4, NULL); +INSERT INTO Student_Enrolment (`student_enrolment_id`, `degree_program_id`, `semester_id`, `student_id`, `other_details`) VALUES (12, 9, 2, 5, NULL); +INSERT INTO Student_Enrolment (`student_enrolment_id`, `degree_program_id`, `semester_id`, `student_id`, `other_details`) VALUES (13, 2, 12, 6, NULL); +INSERT INTO Student_Enrolment (`student_enrolment_id`, `degree_program_id`, `semester_id`, `student_id`, `other_details`) VALUES (14, 9, 15, 6, NULL); +INSERT INTO Student_Enrolment (`student_enrolment_id`, `degree_program_id`, `semester_id`, `student_id`, `other_details`) VALUES (15, 2, 4, 6, NULL); + + + +CREATE TABLE `Student_Enrolment_Courses` ( +`student_course_id` INTEGER PRIMARY KEY, +`course_id` INTEGER NOT NULL, +`student_enrolment_id` INTEGER NOT NULL, +FOREIGN KEY (`course_id` ) REFERENCES `Courses`(`course_id` ), +FOREIGN KEY (`student_enrolment_id` ) REFERENCES `Student_Enrolment`(`student_enrolment_id` ) +); + +CREATE TABLE `Transcripts` ( +`transcript_id` INTEGER PRIMARY KEY, +`transcript_date` DATETIME, +`other_details` VARCHAR(255) +); + +CREATE TABLE `Transcript_Contents` ( +`student_course_id` INTEGER NOT NULL, +`transcript_id` INTEGER NOT NULL, +FOREIGN KEY (`student_course_id` ) REFERENCES `Student_Enrolment_Courses`(`student_course_id` ), +FOREIGN KEY (`transcript_id` ) REFERENCES `Transcripts`(`transcript_id` ) +); + +INSERT INTO Student_Enrolment_Courses (`student_course_id`, `course_id`, `student_enrolment_id`) VALUES (8, 2, 5); +INSERT INTO Student_Enrolment_Courses (`student_course_id`, `course_id`, `student_enrolment_id`) VALUES (28982908, 8, 9); +INSERT INTO Student_Enrolment_Courses (`student_course_id`, `course_id`, `student_enrolment_id`) VALUES (1, 6, 8); +INSERT INTO Student_Enrolment_Courses (`student_course_id`, `course_id`, `student_enrolment_id`) VALUES (2, 14, 5); +INSERT INTO Student_Enrolment_Courses (`student_course_id`, `course_id`, `student_enrolment_id`) VALUES (9860, 14, 10); +INSERT INTO Student_Enrolment_Courses (`student_course_id`, `course_id`, `student_enrolment_id`) VALUES (7, 11, 5); +INSERT INTO Student_Enrolment_Courses (`student_course_id`, `course_id`, `student_enrolment_id`) VALUES (681404, 10, 4); +INSERT INTO Student_Enrolment_Courses (`student_course_id`, `course_id`, `student_enrolment_id`) VALUES (96, 2, 4); +INSERT INTO Student_Enrolment_Courses (`student_course_id`, `course_id`, `student_enrolment_id`) VALUES (438800, 3, 4); +INSERT INTO Student_Enrolment_Courses (`student_course_id`, `course_id`, `student_enrolment_id`) VALUES (83814225, 12, 14); +INSERT INTO Student_Enrolment_Courses (`student_course_id`, `course_id`, `student_enrolment_id`) VALUES (0, 6, 2); +INSERT INTO Student_Enrolment_Courses (`student_course_id`, `course_id`, `student_enrolment_id`) VALUES (604750, 4, 6); +INSERT INTO Student_Enrolment_Courses (`student_course_id`, `course_id`, `student_enrolment_id`) VALUES (70882679, 13, 9); +INSERT INTO Student_Enrolment_Courses (`student_course_id`, `course_id`, `student_enrolment_id`) VALUES (45105806, 13, 14); +INSERT INTO Student_Enrolment_Courses (`student_course_id`, `course_id`, `student_enrolment_id`) VALUES (76, 10, 13); +INSERT INTO Transcripts (`transcript_id`, `transcript_date`, `other_details`) VALUES (1, '1988-04-30 01:19:47', NULL); +INSERT INTO Transcripts (`transcript_id`, `transcript_date`, `other_details`) VALUES (2, '1975-10-28 15:16:51', NULL); +INSERT INTO Transcripts (`transcript_id`, `transcript_date`, `other_details`) VALUES (3, '1984-12-19 00:37:21', NULL); +INSERT INTO Transcripts (`transcript_id`, `transcript_date`, `other_details`) VALUES (4, '1999-01-06 20:06:46', NULL); +INSERT INTO Transcripts (`transcript_id`, `transcript_date`, `other_details`) VALUES (5, '2013-06-30 13:01:40', NULL); +INSERT INTO Transcripts (`transcript_id`, `transcript_date`, `other_details`) VALUES (6, '2010-12-13 10:55:15', NULL); +INSERT INTO Transcripts (`transcript_id`, `transcript_date`, `other_details`) VALUES (7, '1990-03-05 11:59:41', NULL); +INSERT INTO Transcripts (`transcript_id`, `transcript_date`, `other_details`) VALUES (8, '1975-05-06 12:04:47', NULL); +INSERT INTO Transcripts (`transcript_id`, `transcript_date`, `other_details`) VALUES (9, '1984-01-18 23:07:07', NULL); +INSERT INTO Transcripts (`transcript_id`, `transcript_date`, `other_details`) VALUES (10, '1975-05-20 18:31:21', NULL); +INSERT INTO Transcripts (`transcript_id`, `transcript_date`, `other_details`) VALUES (11, '1986-07-12 07:27:29', NULL); +INSERT INTO Transcripts (`transcript_id`, `transcript_date`, `other_details`) VALUES (12, '1985-08-21 09:32:39', NULL); +INSERT INTO Transcripts (`transcript_id`, `transcript_date`, `other_details`) VALUES (13, '1985-04-29 01:20:20', NULL); +INSERT INTO Transcripts (`transcript_id`, `transcript_date`, `other_details`) VALUES (14, '2002-09-24 06:11:49', NULL); +INSERT INTO Transcripts (`transcript_id`, `transcript_date`, `other_details`) VALUES (15, '1998-11-22 12:18:29', NULL); + +INSERT INTO Transcript_Contents (`student_course_id`, `transcript_id`) VALUES (0, 2); +INSERT INTO Transcript_Contents (`student_course_id`, `transcript_id`) VALUES (96, 8); +INSERT INTO Transcript_Contents (`student_course_id`, `transcript_id`) VALUES (76, 9); +INSERT INTO Transcript_Contents (`student_course_id`, `transcript_id`) VALUES (7, 4); +INSERT INTO Transcript_Contents (`student_course_id`, `transcript_id`) VALUES (0, 15); +INSERT INTO Transcript_Contents (`student_course_id`, `transcript_id`) VALUES (76, 15); +INSERT INTO Transcript_Contents (`student_course_id`, `transcript_id`) VALUES (0, 6); +INSERT INTO Transcript_Contents (`student_course_id`, `transcript_id`) VALUES (96, 13); +INSERT INTO Transcript_Contents (`student_course_id`, `transcript_id`) VALUES (76, 12); +INSERT INTO Transcript_Contents (`student_course_id`, `transcript_id`) VALUES (28982908, 11); +INSERT INTO Transcript_Contents (`student_course_id`, `transcript_id`) VALUES (2, 8); +INSERT INTO Transcript_Contents (`student_course_id`, `transcript_id`) VALUES (0, 5); +INSERT INTO Transcript_Contents (`student_course_id`, `transcript_id`) VALUES (8, 5); +INSERT INTO Transcript_Contents (`student_course_id`, `transcript_id`) VALUES (45105806, 8); +INSERT INTO Transcript_Contents (`student_course_id`, `transcript_id`) VALUES (70882679, 6); diff --git a/database/student_transcripts_tracking/student_transcripts_tracking.sqlite b/database/student_transcripts_tracking/student_transcripts_tracking.sqlite new file mode 100644 index 0000000000000000000000000000000000000000..f336b2e73964da4d662d15ef0fa1db8bb1b82eb3 Binary files /dev/null and b/database/student_transcripts_tracking/student_transcripts_tracking.sqlite differ diff --git a/database/swimming/schema.sql b/database/swimming/schema.sql new file mode 100644 index 0000000000000000000000000000000000000000..75e1db0ed9cb462eb2c7cb2ac11e62de9704bd15 --- /dev/null +++ b/database/swimming/schema.sql @@ -0,0 +1,95 @@ + +PRAGMA foreign_keys = ON; + +CREATE TABLE "swimmer" ( +"ID" int, +"name" text, +"Nationality" text, +"meter_100" real, +"meter_200" text, +"meter_300" text, +"meter_400" text, +"meter_500" text, +"meter_600" text, +"meter_700" text, +"Time" text, +PRIMARY KEY ("ID") +); + + + +INSERT INTO "swimmer" VALUES ("7","Przemysław Stańczyk","Poland","57.31","1:57.10","2:56.02","3:55.36","4:54.21","5:52.59","6:50.91","7:47.91"); +INSERT INTO "swimmer" VALUES ("4","Craig Stevens","Australia","57.35","1:56.34","2:55.90","3:55.72","4:55.08","5:54.45","6:52.69","7:48.67"); +INSERT INTO "swimmer" VALUES ("5","Federico Colbertaldo","Italy","57.66","1:56.77","2:56.04","3:55.37","4:54.48","5:53.53","6:52.58","7:49.98"); +INSERT INTO "swimmer" VALUES ("8","Sébastien Rouault","France","55.67","1:54.40","2:53.46","3:52.93","4:52.85","5:53.03","6:53.34","7:52.04"); +INSERT INTO "swimmer" VALUES ("1","Sergiy Fesenko","Ukraine","57.34","1:57.26","2:57.10","3:57.12","4:57.03","5:56.31","6:55.07","7:53.43"); +INSERT INTO "swimmer" VALUES ("2","Grant Hackett","Australia","57.34","1:57.21","2:56.95","3:57.00","4:56.96","5:57.10","6:57.44","7:55.39"); +INSERT INTO "swimmer" VALUES ("6","Ryan Cochrane","Canada","57.84","1:57.26","2:56.64","3:56.34","4:56.15","5:56.99","6:57.69","7:56.56"); +INSERT INTO "swimmer" VALUES ("3","Oussama Mellouli","Tunisia","57.31","1:56.44","2:55.94","3:55.49","4:54.19","5:52.92","6:50.80","7:46.95"); + + + +CREATE TABLE "stadium" ( +"ID" int, +"name" text, +"Capacity" int, +"City" text, +"Country" text, +"Opening_year" int, +PRIMARY KEY ("ID") +); + + + +INSERT INTO "stadium" VALUES (1,"Nou Mestalla","75000","Valencia","Spain","2004"); +INSERT INTO "stadium" VALUES (2,"Gazprom Arena","69501","Saint Petersburg","Russia","2005"); +INSERT INTO "stadium" VALUES (3,"Baku Olympic Stadium","68000","Baku","Azerbaijan","2005"); +INSERT INTO "stadium" VALUES (4,"Estadio La Peineta","67500","Madrid","Spain","2005"); +INSERT INTO "stadium" VALUES (5,"Ferenc Puskás Stadion","65000","Budapest","Hungary","2006"); +INSERT INTO "stadium" VALUES (6,"Stade des Lumières","61556","Lyon","France","2004"); +INSERT INTO "stadium" VALUES (7,"Northumberland Development Project","56250","London","England","2006"); +INSERT INTO "stadium" VALUES (8,"Fisht Olympic Stadium","47659","Sochi","Russia","2004"); +INSERT INTO "stadium" VALUES (9,"Arena Baltika","45015","Kaliningrad","Russia","2007"); +INSERT INTO "stadium" VALUES (10,"Yubileyniy Stadium","45015","Saransk","Russia","2005"); + + +CREATE TABLE "event" ( +"ID" int, +"Name" text, +"Stadium_ID" int, +"Year" text, +PRIMARY KEY ("ID"), +FOREIGN KEY (`Stadium_ID`) REFERENCES `stadium`(`ID`) +); +INSERT INTO "event" VALUES (1,"FINA",1,"2016"); +INSERT INTO "event" VALUES (2,"Pacific",10,"2011"); +INSERT INTO "event" VALUES (3,"World Master",2,"2012"); +INSERT INTO "event" VALUES (4,"World Junior",3,"2013"); +INSERT INTO "event" VALUES (5,"IPC",4,"2014"); +INSERT INTO "event" VALUES (6,"European FINA",8,"2017"); + +CREATE TABLE "record" ( +"ID" int, +"Result" text, +"Swimmer_ID" int, +"Event_ID" int, +PRIMARY KEY ("Swimmer_ID","Event_ID"), +FOREIGN KEY (`Event_ID`) REFERENCES `event`(`ID`), +FOREIGN KEY (`Swimmer_ID`) REFERENCES `swimmer`(`ID`) +); + + + +INSERT INTO "record" VALUES (1,"NC",1,1); +INSERT INTO "record" VALUES (2,"Win",1,2); +INSERT INTO "record" VALUES (3,"Loss",3,3); +INSERT INTO "record" VALUES (4,"Win",4,3); +INSERT INTO "record" VALUES (5,"Loss",1,3); +INSERT INTO "record" VALUES (6,"Win",6,3); +INSERT INTO "record" VALUES (7,"Win",5,3); +INSERT INTO "record" VALUES (8,"Win",2,1); +INSERT INTO "record" VALUES (9,"Win",3,1); +INSERT INTO "record" VALUES (10,"Win",4,1); +INSERT INTO "record" VALUES (11,"Win",4,2); +INSERT INTO "record" VALUES (12,"Win",3,5); +INSERT INTO "record" VALUES (13,"Loss",4,4); diff --git a/database/swimming/swimming.sqlite b/database/swimming/swimming.sqlite new file mode 100644 index 0000000000000000000000000000000000000000..40ef09780ff62870b49f17646f4d41dffd1ce196 Binary files /dev/null and b/database/swimming/swimming.sqlite differ diff --git a/database/theme_gallery/schema.sql b/database/theme_gallery/schema.sql new file mode 100644 index 0000000000000000000000000000000000000000..e889d17dde68a1c48e6dbdb788c12cb54d420156 --- /dev/null +++ b/database/theme_gallery/schema.sql @@ -0,0 +1,65 @@ + +PRAGMA foreign_keys = ON; + +CREATE TABLE "artist" ( +"Artist_ID" int, +"Name" text, +"Country" text, +"Year_Join" int, +"Age" int, +PRIMARY KEY ("Artist_ID") +); + +INSERT INTO "artist" VALUES (1,"Vijay Singh","Fiji","1998",45); +INSERT INTO "artist" VALUES (2,"John Daly","United States","1991",46); +INSERT INTO "artist" VALUES (3,"Paul Azinger","United States","1993",47); +INSERT INTO "artist" VALUES (4,"Jeff Sluman","United States","1988",57); +INSERT INTO "artist" VALUES (5,"Mark Brooks","United States","1996",48); +INSERT INTO "artist" VALUES (6,"Nick Price","Zimbabwe","1994",48); +INSERT INTO "artist" VALUES (7,"Larry Nelson","United States","1981",50); + + + +CREATE TABLE "exhibition" ( +"Exhibition_ID" int, +"Year" int, +"Theme" text, +"Artist_ID" int, +"Ticket_Price" real, +PRIMARY KEY ("Exhibition_ID"), +FOREIGN KEY (`Artist_ID`) REFERENCES `artist`(`Artist_ID`) +); + +INSERT INTO "exhibition" VALUES (1,"2004","Santa Claus",1,"19.95"); +INSERT INTO "exhibition" VALUES (2,"2005","Christmas stocking",2,"19.95"); +INSERT INTO "exhibition" VALUES (3,"2006","Santa Claus and Rudolph the Red-Nosed Reindeer",4,"14.95"); +INSERT INTO "exhibition" VALUES (4,"2007","Christmas Tree",1,"16.95"); +INSERT INTO "exhibition" VALUES (5,"2008","Spring",6,"29.95"); +INSERT INTO "exhibition" VALUES (6,"2009","Summer",3,"9.95"); + + + +CREATE TABLE "exhibition_record" ( +"Exhibition_ID" int, +"Date" text, +"Attendance" int, +PRIMARY KEY ("Exhibition_ID","Date"), +FOREIGN KEY (`Exhibition_ID`) REFERENCES `exhibition`(`Exhibition_ID`) +); + + + +INSERT INTO "exhibition_record" VALUES (1,"December 2",965); +INSERT INTO "exhibition_record" VALUES (1,"December 5",1098); +INSERT INTO "exhibition_record" VALUES (1,"December 7",2983); +INSERT INTO "exhibition_record" VALUES (2,"December 9",1239); +INSERT INTO "exhibition_record" VALUES (2,"December 12",1313); +INSERT INTO "exhibition_record" VALUES (2,"December 13",10908); +INSERT INTO "exhibition_record" VALUES (3,"December 16",1134); +INSERT INTO "exhibition_record" VALUES (3,"February 19",1233); +INSERT INTO "exhibition_record" VALUES (3,"February 21",9089); +INSERT INTO "exhibition_record" VALUES (4,"February 23",3139); +INSERT INTO "exhibition_record" VALUES (5,"February 25",24808); +INSERT INTO "exhibition_record" VALUES (5,"February 26",13142); +INSERT INTO "exhibition_record" VALUES (5,"February 28",4231); + diff --git a/database/theme_gallery/theme_gallery.sqlite b/database/theme_gallery/theme_gallery.sqlite new file mode 100644 index 0000000000000000000000000000000000000000..b93731cfc21f0d1002fee041744f4d3d885028ea Binary files /dev/null and b/database/theme_gallery/theme_gallery.sqlite differ diff --git a/database/tracking_grants_for_research/schema.sql b/database/tracking_grants_for_research/schema.sql new file mode 100644 index 0000000000000000000000000000000000000000..7ecfbd96b67063cb02b27b7b1fde4bef14ef2e11 --- /dev/null +++ b/database/tracking_grants_for_research/schema.sql @@ -0,0 +1,206 @@ +PRAGMA foreign_keys = ON; +CREATE TABLE `Document_Types` ( +`document_type_code` VARCHAR(10) PRIMARY KEY, +`document_description` VARCHAR(255) NOT NULL +); +CREATE TABLE `Documents` ( +`document_id` INTEGER PRIMARY KEY, +`document_type_code` VARCHAR(10), +`grant_id` INTEGER NOT NULL, +`sent_date` DATETIME NOT NULL, +`response_received_date` DATETIME NOT NULL, +`other_details` VARCHAR(255) NOT NULL, +FOREIGN KEY (`document_type_code` ) REFERENCES `Document_Types`(`document_type_code` ), +FOREIGN KEY (`grant_id` ) REFERENCES `Grants`(`grant_id` ) +); +CREATE TABLE `Grants` ( +`grant_id` INTEGER PRIMARY KEY, +`organisation_id` INTEGER NOT NULL, +`grant_amount` DECIMAL(19,4) NOT NULL DEFAULT 0, +`grant_start_date` DATETIME NOT NULL, +`grant_end_date` DATETIME NOT NULL, +`other_details` VARCHAR(255) NOT NULL, +FOREIGN KEY (`organisation_id` ) REFERENCES `Organisations`(`organisation_id` ) +); +CREATE TABLE `Organisation_Types` ( +`organisation_type` VARCHAR(10) PRIMARY KEY, +`organisation_type_description` VARCHAR(255) NOT NULL +); +CREATE TABLE `Organisations` ( +`organisation_id` INTEGER PRIMARY KEY, +`organisation_type` VARCHAR(10) NOT NULL, +`organisation_details` VARCHAR(255) NOT NULL, +FOREIGN KEY (`organisation_type` ) REFERENCES `Organisation_Types`(`organisation_type` ) +); +CREATE TABLE `Project_Outcomes` ( +`project_id` INTEGER NOT NULL, +`outcome_code` VARCHAR(10) NOT NULL, +`outcome_details` VARCHAR(255), +FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` ),FOREIGN KEY (`outcome_code` ) REFERENCES `Research_Outcomes`(`outcome_code` ) +); +CREATE TABLE `Project_Staff` ( +`staff_id` DOUBLE PRIMARY KEY, +`project_id` INTEGER NOT NULL, +`role_code` VARCHAR(10) NOT NULL, +`date_from` DATETIME, +`date_to` DATETIME, +`other_details` VARCHAR(255), +FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` ),FOREIGN KEY (`role_code` ) REFERENCES `Staff_Roles`(`role_code` ) +); +CREATE TABLE `Projects` ( +`project_id` INTEGER PRIMARY KEY, +`organisation_id` INTEGER NOT NULL, +`project_details` VARCHAR(255) NOT NULL, +FOREIGN KEY (`organisation_id` ) REFERENCES `Organisations`(`organisation_id` ) +); +CREATE TABLE `Research_Outcomes` ( +`outcome_code` VARCHAR(10) PRIMARY KEY, +`outcome_description` VARCHAR(255) NOT NULL +); +CREATE TABLE `Research_Staff` ( +`staff_id` INTEGER PRIMARY KEY, +`employer_organisation_id` INTEGER NOT NULL, +`staff_details` VARCHAR(255) NOT NULL, +FOREIGN KEY (`employer_organisation_id` ) REFERENCES `Organisations`(`organisation_id` ) +); +CREATE TABLE `Staff_Roles` ( +`role_code` VARCHAR(10) PRIMARY KEY, +`role_description` VARCHAR(255) NOT NULL +); +CREATE TABLE `Tasks` ( +`task_id` INTEGER PRIMARY KEY, +`project_id` INTEGER NOT NULL, +`task_details` VARCHAR(255) NOT NULL, +`eg Agree Objectives` VARCHAR(1), +FOREIGN KEY (`project_id` ) REFERENCES `Projects`(`project_id` ) +); +INSERT INTO Document_Types (`document_type_code`, `document_description`) VALUES ('APP', 'Initial Application'); +INSERT INTO Document_Types (`document_type_code`, `document_description`) VALUES ('REG', 'Regular'); +INSERT INTO Organisation_Types (`organisation_type`, `organisation_type_description`) VALUES ('RES', 'Research'); +INSERT INTO Organisation_Types (`organisation_type`, `organisation_type_description`) VALUES ('SPON', 'Sponsor'); +INSERT INTO Organisations (`organisation_id`, `organisation_type`, `organisation_details`) VALUES (1, 'RES', 'et'); +INSERT INTO Organisations (`organisation_id`, `organisation_type`, `organisation_details`) VALUES (2, 'RES', 'eius'); +INSERT INTO Organisations (`organisation_id`, `organisation_type`, `organisation_details`) VALUES (3, 'RES', 'impedit'); +INSERT INTO Organisations (`organisation_id`, `organisation_type`, `organisation_details`) VALUES (4, 'SPON', 'eos'); +INSERT INTO Organisations (`organisation_id`, `organisation_type`, `organisation_details`) VALUES (5, 'SPON', 'tenetur'); +INSERT INTO Organisations (`organisation_id`, `organisation_type`, `organisation_details`) VALUES (6, 'RES', 'dolorem'); +INSERT INTO Organisations (`organisation_id`, `organisation_type`, `organisation_details`) VALUES (7, 'RES', 'itaque'); +INSERT INTO Organisations (`organisation_id`, `organisation_type`, `organisation_details`) VALUES (8, 'SPON', 'aperiam'); +INSERT INTO Organisations (`organisation_id`, `organisation_type`, `organisation_details`) VALUES (9, 'RES', 'a'); +INSERT INTO Organisations (`organisation_id`, `organisation_type`, `organisation_details`) VALUES (10, 'SPON', 'officiis'); +INSERT INTO Organisations (`organisation_id`, `organisation_type`, `organisation_details`) VALUES (11, 'SPON', 'eveniet'); +INSERT INTO Organisations (`organisation_id`, `organisation_type`, `organisation_details`) VALUES (12, 'RES', 'itaque'); +INSERT INTO Organisations (`organisation_id`, `organisation_type`, `organisation_details`) VALUES (13, 'SPON', 'voluptas'); +INSERT INTO Organisations (`organisation_id`, `organisation_type`, `organisation_details`) VALUES (14, 'RES', 'quo'); +INSERT INTO Organisations (`organisation_id`, `organisation_type`, `organisation_details`) VALUES (15, 'SPON', 'consequuntur'); +INSERT INTO Staff_Roles (`role_code`, `role_description`) VALUES ('leader', 'Project Leader'); +INSERT INTO Staff_Roles (`role_code`, `role_description`) VALUES ('researcher', 'Project Researcher'); +INSERT INTO Grants (`grant_id`, `organisation_id`, `grant_amount`, `grant_start_date`, `grant_end_date`, `other_details`) VALUES (1, 10, '4094.5420', '2016-11-20 00:18:51', '2004-10-24 09:09:39', 'et'); +INSERT INTO Grants (`grant_id`, `organisation_id`, `grant_amount`, `grant_start_date`, `grant_end_date`, `other_details`) VALUES (2, 3, '281.2446', '1985-10-09 20:08:49', '1985-06-08 00:22:07', 'occaecati'); +INSERT INTO Grants (`grant_id`, `organisation_id`, `grant_amount`, `grant_start_date`, `grant_end_date`, `other_details`) VALUES (3, 14, '4515947.7015', '1970-09-19 22:53:49', '1989-03-16 18:27:16', 'et'); +INSERT INTO Grants (`grant_id`, `organisation_id`, `grant_amount`, `grant_start_date`, `grant_end_date`, `other_details`) VALUES (4, 11, '330.6339', '1990-08-13 20:27:28', '2014-08-13 22:58:50', 'et'); +INSERT INTO Grants (`grant_id`, `organisation_id`, `grant_amount`, `grant_start_date`, `grant_end_date`, `other_details`) VALUES (5, 2, '608413.3291', '1979-10-29 07:44:22', '1996-08-16 20:45:05', 'corrupti'); +INSERT INTO Grants (`grant_id`, `organisation_id`, `grant_amount`, `grant_start_date`, `grant_end_date`, `other_details`) VALUES (6, 8, '42.8061', '2011-05-10 22:44:08', '1977-12-27 01:51:18', 'dolor'); +INSERT INTO Grants (`grant_id`, `organisation_id`, `grant_amount`, `grant_start_date`, `grant_end_date`, `other_details`) VALUES (7, 7, '76977808.3060', '2015-12-14 13:02:11', '1981-03-09 17:12:27', 'explicabo'); +INSERT INTO Grants (`grant_id`, `organisation_id`, `grant_amount`, `grant_start_date`, `grant_end_date`, `other_details`) VALUES (8, 10, '38675408.6017', '2016-02-25 04:28:44', '1983-06-22 15:12:32', 'aliquam'); +INSERT INTO Grants (`grant_id`, `organisation_id`, `grant_amount`, `grant_start_date`, `grant_end_date`, `other_details`) VALUES (9, 8, '0.0000', '2009-07-14 18:26:05', '1982-03-11 15:27:55', 'sapiente'); +INSERT INTO Grants (`grant_id`, `organisation_id`, `grant_amount`, `grant_start_date`, `grant_end_date`, `other_details`) VALUES (10, 14, '66.4203', '1986-08-26 20:49:27', '2007-09-26 19:19:26', 'veniam'); +INSERT INTO Grants (`grant_id`, `organisation_id`, `grant_amount`, `grant_start_date`, `grant_end_date`, `other_details`) VALUES (11, 5, '610.7004', '1986-10-31 17:11:29', '2001-05-22 21:02:43', 'voluptatum'); +INSERT INTO Grants (`grant_id`, `organisation_id`, `grant_amount`, `grant_start_date`, `grant_end_date`, `other_details`) VALUES (12, 12, '2001349.4590', '2001-06-22 16:01:05', '2007-04-24 03:04:13', 'aut'); +INSERT INTO Grants (`grant_id`, `organisation_id`, `grant_amount`, `grant_start_date`, `grant_end_date`, `other_details`) VALUES (13, 7, '1.9848', '2004-11-10 02:26:01', '2011-05-29 11:21:59', 'qui'); +INSERT INTO Grants (`grant_id`, `organisation_id`, `grant_amount`, `grant_start_date`, `grant_end_date`, `other_details`) VALUES (14, 2, '24.7000', '2004-12-05 19:43:13', '1983-12-17 12:29:58', 'aliquam'); +INSERT INTO Grants (`grant_id`, `organisation_id`, `grant_amount`, `grant_start_date`, `grant_end_date`, `other_details`) VALUES (15, 9, '25313.5100', '1982-04-07 00:07:43', '1991-06-06 07:26:25', 'ea'); + +INSERT INTO Documents (`document_id`, `document_type_code`, `grant_id`, `sent_date`, `response_received_date`, `other_details`) VALUES (1, 'APP', 5, '1986-11-30 07:56:35', '1977-12-01 02:18:53', ''); +INSERT INTO Documents (`document_id`, `document_type_code`, `grant_id`, `sent_date`, `response_received_date`, `other_details`) VALUES (2, 'APP', 13, '2004-01-23 11:57:08', '1979-12-08 10:38:07', ''); +INSERT INTO Documents (`document_id`, `document_type_code`, `grant_id`, `sent_date`, `response_received_date`, `other_details`) VALUES (3, 'REG', 10, '1999-03-03 12:25:58', '1995-09-12 13:13:48', ''); +INSERT INTO Documents (`document_id`, `document_type_code`, `grant_id`, `sent_date`, `response_received_date`, `other_details`) VALUES (4, 'APP', 13, '1999-05-29 00:02:46', '1991-09-25 10:38:24', ''); +INSERT INTO Documents (`document_id`, `document_type_code`, `grant_id`, `sent_date`, `response_received_date`, `other_details`) VALUES (5, 'APP', 11, '2003-08-29 03:32:52', '1986-05-23 07:17:59', ''); +INSERT INTO Documents (`document_id`, `document_type_code`, `grant_id`, `sent_date`, `response_received_date`, `other_details`) VALUES (6, 'REG', 5, '1979-07-04 08:54:23', '1976-10-04 22:13:27', ''); +INSERT INTO Documents (`document_id`, `document_type_code`, `grant_id`, `sent_date`, `response_received_date`, `other_details`) VALUES (7, 'APP', 13, '1978-09-13 16:23:29', '1979-01-06 05:05:30', ''); +INSERT INTO Documents (`document_id`, `document_type_code`, `grant_id`, `sent_date`, `response_received_date`, `other_details`) VALUES (8, 'APP', 15, '2001-06-18 06:35:49', '1986-05-18 01:54:56', ''); +INSERT INTO Documents (`document_id`, `document_type_code`, `grant_id`, `sent_date`, `response_received_date`, `other_details`) VALUES (9, 'APP', 6, '2014-01-28 05:11:34', '1980-02-24 15:23:44', ''); +INSERT INTO Documents (`document_id`, `document_type_code`, `grant_id`, `sent_date`, `response_received_date`, `other_details`) VALUES (10, 'REG', 7, '2002-07-26 15:50:28', '1987-10-29 15:35:50', ''); +INSERT INTO Documents (`document_id`, `document_type_code`, `grant_id`, `sent_date`, `response_received_date`, `other_details`) VALUES (11, 'REG', 15, '1993-02-19 16:31:12', '1994-03-13 01:52:45', ''); +INSERT INTO Documents (`document_id`, `document_type_code`, `grant_id`, `sent_date`, `response_received_date`, `other_details`) VALUES (12, 'REG', 13, '1997-03-09 03:42:19', '1977-01-27 07:14:11', ''); +INSERT INTO Documents (`document_id`, `document_type_code`, `grant_id`, `sent_date`, `response_received_date`, `other_details`) VALUES (13, 'APP', 13, '1979-08-23 08:22:34', '1990-01-19 19:57:14', ''); +INSERT INTO Documents (`document_id`, `document_type_code`, `grant_id`, `sent_date`, `response_received_date`, `other_details`) VALUES (14, 'APP', 15, '2000-06-06 01:03:46', '1971-08-28 11:20:56', ''); +INSERT INTO Documents (`document_id`, `document_type_code`, `grant_id`, `sent_date`, `response_received_date`, `other_details`) VALUES (15, 'APP', 8, '1981-08-06 14:56:55', '1999-06-01 18:41:00', ''); +INSERT INTO Projects (`project_id`, `organisation_id`, `project_details`) VALUES (1, 15, 'porro'); +INSERT INTO Projects (`project_id`, `organisation_id`, `project_details`) VALUES (2, 11, 'et'); +INSERT INTO Projects (`project_id`, `organisation_id`, `project_details`) VALUES (3, 7, 'sint'); +INSERT INTO Projects (`project_id`, `organisation_id`, `project_details`) VALUES (4, 4, 'doloremque'); +INSERT INTO Projects (`project_id`, `organisation_id`, `project_details`) VALUES (5, 11, 'vel'); +INSERT INTO Projects (`project_id`, `organisation_id`, `project_details`) VALUES (6, 10, 'deserunt'); +INSERT INTO Projects (`project_id`, `organisation_id`, `project_details`) VALUES (7, 3, 'deleniti'); +INSERT INTO Projects (`project_id`, `organisation_id`, `project_details`) VALUES (8, 1, 'ad'); +INSERT INTO Projects (`project_id`, `organisation_id`, `project_details`) VALUES (9, 4, 'sed'); +INSERT INTO Projects (`project_id`, `organisation_id`, `project_details`) VALUES (10, 4, 'consectetur'); +INSERT INTO Projects (`project_id`, `organisation_id`, `project_details`) VALUES (11, 13, 'impedit'); +INSERT INTO Projects (`project_id`, `organisation_id`, `project_details`) VALUES (12, 12, 'omnis'); +INSERT INTO Projects (`project_id`, `organisation_id`, `project_details`) VALUES (13, 3, 'non'); +INSERT INTO Projects (`project_id`, `organisation_id`, `project_details`) VALUES (14, 1, 'beatae'); +INSERT INTO Projects (`project_id`, `organisation_id`, `project_details`) VALUES (15, 5, 'dolorem'); +INSERT INTO Tasks (`task_id`, `project_id`,`task_details`,`eg Agree Objectives`) VALUES (1,1, 'a', NULL); +INSERT INTO Tasks (`task_id`, `project_id`,`task_details`,`eg Agree Objectives`) VALUES (2,2, 'b', NULL); +INSERT INTO Tasks (`task_id`, `project_id`,`task_details`,`eg Agree Objectives`) VALUES (3,3, 'c', NULL); +INSERT INTO Tasks (`task_id`, `project_id`,`task_details`,`eg Agree Objectives`) VALUES (4,4, 'q', NULL); +INSERT INTO Tasks (`task_id`, `project_id`,`task_details`,`eg Agree Objectives`) VALUES (5,5, 'w', NULL); +INSERT INTO Tasks (`task_id`, `project_id`,`task_details`,`eg Agree Objectives`) VALUES (6,6, 'e', NULL); +INSERT INTO Tasks (`task_id`, `project_id`,`task_details`,`eg Agree Objectives`) VALUES (7,7, 'r', NULL); +INSERT INTO Tasks (`task_id`, `project_id`,`task_details`,`eg Agree Objectives`) VALUES (8,8, 't', NULL); +INSERT INTO Tasks (`task_id`, `project_id`,`task_details`,`eg Agree Objectives`) VALUES (9,9, 'y', NULL); +INSERT INTO Tasks (`task_id`, `project_id`,`task_details`,`eg Agree Objectives`) VALUES (10,10, 'u', NULL); +INSERT INTO Tasks (`task_id`, `project_id`,`task_details`,`eg Agree Objectives`) VALUES (11,11, 'i', NULL); +INSERT INTO Tasks (`task_id`, `project_id`,`task_details`,`eg Agree Objectives`) VALUES (12,12, 'm', NULL); +INSERT INTO Tasks (`task_id`, `project_id`,`task_details`,`eg Agree Objectives`) VALUES (13,13, 'n', NULL); +INSERT INTO Tasks (`task_id`, `project_id`,`task_details`,`eg Agree Objectives`) VALUES (14,14, 'o', NULL); +INSERT INTO Tasks (`task_id`, `project_id`,`task_details`,`eg Agree Objectives`) VALUES (15,15, 'p', NULL); +INSERT INTO Research_Outcomes (`outcome_code`, `outcome_description`) VALUES ('Paper', 'Published Research Paper'); +INSERT INTO Research_Outcomes (`outcome_code`, `outcome_description`) VALUES ('Patent', 'Research Patent'); + +INSERT INTO Project_Outcomes (`project_id`, `outcome_code`, `outcome_details`) VALUES (4, 'Paper', NULL); +INSERT INTO Project_Outcomes (`project_id`, `outcome_code`, `outcome_details`) VALUES (3, 'Patent', NULL); +INSERT INTO Project_Outcomes (`project_id`, `outcome_code`, `outcome_details`) VALUES (9, 'Paper', NULL); +INSERT INTO Project_Outcomes (`project_id`, `outcome_code`, `outcome_details`) VALUES (6, 'Paper', NULL); +INSERT INTO Project_Outcomes (`project_id`, `outcome_code`, `outcome_details`) VALUES (9, 'Patent', NULL); +INSERT INTO Project_Outcomes (`project_id`, `outcome_code`, `outcome_details`) VALUES (11, 'Paper', NULL); +INSERT INTO Project_Outcomes (`project_id`, `outcome_code`, `outcome_details`) VALUES (14, 'Patent', NULL); +INSERT INTO Project_Outcomes (`project_id`, `outcome_code`, `outcome_details`) VALUES (14, 'Paper', NULL); +INSERT INTO Project_Outcomes (`project_id`, `outcome_code`, `outcome_details`) VALUES (13, 'Paper', NULL); +INSERT INTO Project_Outcomes (`project_id`, `outcome_code`, `outcome_details`) VALUES (12, 'Patent', NULL); +INSERT INTO Project_Outcomes (`project_id`, `outcome_code`, `outcome_details`) VALUES (7, 'Paper', NULL); +INSERT INTO Project_Outcomes (`project_id`, `outcome_code`, `outcome_details`) VALUES (5, 'Patent', NULL); +INSERT INTO Project_Outcomes (`project_id`, `outcome_code`, `outcome_details`) VALUES (7, 'Paper', NULL); +INSERT INTO Project_Outcomes (`project_id`, `outcome_code`, `outcome_details`) VALUES (13, 'Paper', NULL); +INSERT INTO Project_Outcomes (`project_id`, `outcome_code`, `outcome_details`) VALUES (7, 'Paper', NULL); +INSERT INTO Project_Staff (`staff_id`, `project_id`, `role_code`, `date_from`, `date_to`, `other_details`) VALUES ('0', 2, 'leader', '1981-10-04 22:44:50', '1985-05-30 22:26:30', NULL); +INSERT INTO Project_Staff (`staff_id`, `project_id`, `role_code`, `date_from`, `date_to`, `other_details`) VALUES ('674810', 5, 'leader', '2003-04-19 15:06:20', '2010-12-08 11:55:36', NULL); +INSERT INTO Project_Staff (`staff_id`, `project_id`, `role_code`, `date_from`, `date_to`, `other_details`) VALUES ('779', 2, 'researcher', '1981-10-09 21:32:53', '2004-12-16 13:03:36', NULL); +INSERT INTO Project_Staff (`staff_id`, `project_id`, `role_code`, `date_from`, `date_to`, `other_details`) VALUES ('6572', 4, 'researcher', '1983-02-07 17:55:59', '2004-07-28 03:11:47', NULL); +INSERT INTO Project_Staff (`staff_id`, `project_id`, `role_code`, `date_from`, `date_to`, `other_details`) VALUES ('5353407', 15, 'leader', '2004-11-01 23:52:38', '1988-03-04 19:30:05', NULL); +INSERT INTO Project_Staff (`staff_id`, `project_id`, `role_code`, `date_from`, `date_to`, `other_details`) VALUES ('5137097', 7, 'researcher', '1991-01-11 16:57:50', '1993-06-09 12:44:28', NULL); +INSERT INTO Project_Staff (`staff_id`, `project_id`, `role_code`, `date_from`, `date_to`, `other_details`) VALUES ('29', 9, 'researcher', '2005-01-13 11:49:48', '1973-07-19 04:51:26', NULL); +INSERT INTO Project_Staff (`staff_id`, `project_id`, `role_code`, `date_from`, `date_to`, `other_details`) VALUES ('3', 8, 'researcher', '1970-03-25 06:18:11', '1985-12-05 12:00:58', NULL); +INSERT INTO Project_Staff (`staff_id`, `project_id`, `role_code`, `date_from`, `date_to`, `other_details`) VALUES ('3100031', 11, 'researcher', '1972-01-17 19:42:16', '2016-03-15 00:33:18', NULL); +INSERT INTO Project_Staff (`staff_id`, `project_id`, `role_code`, `date_from`, `date_to`, `other_details`) VALUES ('49698449', 1, 'leader', '1970-04-06 15:50:21', '1983-03-19 16:06:31', NULL); +INSERT INTO Project_Staff (`staff_id`, `project_id`, `role_code`, `date_from`, `date_to`, `other_details`) VALUES ('45', 11, 'researcher', '2000-08-28 11:49:17', '2007-02-02 17:26:02', NULL); +INSERT INTO Project_Staff (`staff_id`, `project_id`, `role_code`, `date_from`, `date_to`, `other_details`) VALUES ('37', 5, 'researcher', '1989-04-24 23:51:54', '2002-03-19 18:00:36', NULL); +INSERT INTO Project_Staff (`staff_id`, `project_id`, `role_code`, `date_from`, `date_to`, `other_details`) VALUES ('6065505', 3, 'leader', '1999-10-21 22:07:15', '2008-09-25 20:06:28', NULL); +INSERT INTO Project_Staff (`staff_id`, `project_id`, `role_code`, `date_from`, `date_to`, `other_details`) VALUES ('56', 1, 'leader', '1970-01-02 15:35:05', '1985-09-22 09:06:08', NULL); +INSERT INTO Project_Staff (`staff_id`, `project_id`, `role_code`, `date_from`, `date_to`, `other_details`) VALUES ('13739108', 2, 'researcher', '1973-12-12 11:46:28', '1971-07-19 22:49:05', NULL); +INSERT INTO Research_Staff (`staff_id`, `employer_organisation_id`, `staff_details`) VALUES (1, 1, 'quo'); +INSERT INTO Research_Staff (`staff_id`, `employer_organisation_id`, `staff_details`) VALUES (2, 4, 'est'); +INSERT INTO Research_Staff (`staff_id`, `employer_organisation_id`, `staff_details`) VALUES (3, 5, 'aspernatur'); +INSERT INTO Research_Staff (`staff_id`, `employer_organisation_id`, `staff_details`) VALUES (4, 3, 'dolor'); +INSERT INTO Research_Staff (`staff_id`, `employer_organisation_id`, `staff_details`) VALUES (5, 2, 'doloribus'); +INSERT INTO Research_Staff (`staff_id`, `employer_organisation_id`, `staff_details`) VALUES (6, 5, 'consequatur'); +INSERT INTO Research_Staff (`staff_id`, `employer_organisation_id`, `staff_details`) VALUES (7, 3, 'animi'); +INSERT INTO Research_Staff (`staff_id`, `employer_organisation_id`, `staff_details`) VALUES (8, 5, 'consequatur'); +INSERT INTO Research_Staff (`staff_id`, `employer_organisation_id`, `staff_details`) VALUES (9, 6, 'sint'); +INSERT INTO Research_Staff (`staff_id`, `employer_organisation_id`, `staff_details`) VALUES (10, 8, 'iure'); +INSERT INTO Research_Staff (`staff_id`, `employer_organisation_id`, `staff_details`) VALUES (11, 9, 'voluptatibus'); +INSERT INTO Research_Staff (`staff_id`, `employer_organisation_id`, `staff_details`) VALUES (12, 10, 'nulla'); +INSERT INTO Research_Staff (`staff_id`, `employer_organisation_id`, `staff_details`) VALUES (13, 2, 'ab'); +INSERT INTO Research_Staff (`staff_id`, `employer_organisation_id`, `staff_details`) VALUES (14, 3, 'accusamus'); +INSERT INTO Research_Staff (`staff_id`, `employer_organisation_id`, `staff_details`) VALUES (15, 2, 'dicta'); diff --git a/database/tracking_grants_for_research/tracking_grants_for_research.sqlite b/database/tracking_grants_for_research/tracking_grants_for_research.sqlite new file mode 100644 index 0000000000000000000000000000000000000000..58865acc95b87855d175d1dc0fcafb73db150a22 Binary files /dev/null and b/database/tracking_grants_for_research/tracking_grants_for_research.sqlite differ diff --git a/database/tracking_orders/schema.sql b/database/tracking_orders/schema.sql new file mode 100644 index 0000000000000000000000000000000000000000..fe4d3211079ab8678d481a272204157457b73532 --- /dev/null +++ b/database/tracking_orders/schema.sql @@ -0,0 +1,165 @@ +PRAGMA foreign_keys = ON; +CREATE TABLE `Customers` ( +`customer_id` INTEGER PRIMARY KEY, +`customer_name` VARCHAR(80), +`customer_details` VARCHAR(255) +); +CREATE TABLE `Invoices` ( +`invoice_number` INTEGER PRIMARY KEY, +`invoice_date` DATETIME, +`invoice_details` VARCHAR(255) +); + +CREATE TABLE `Orders` ( +`order_id` INTEGER PRIMARY KEY, +`customer_id` INTEGER NOT NULL, +`order_status` VARCHAR(10) NOT NULL, +`date_order_placed` DATETIME NOT NULL, +`order_details` VARCHAR(255), +FOREIGN KEY (`customer_id` ) REFERENCES `Customers`(`customer_id` ) +); + +CREATE TABLE `Products` ( +`product_id` INTEGER PRIMARY KEY, +`product_name` VARCHAR(80), +`product_details` VARCHAR(255) +); + +CREATE TABLE `Order_Items` ( +`order_item_id` INTEGER PRIMARY KEY, +`product_id` INTEGER NOT NULL, +`order_id` INTEGER NOT NULL, +`order_item_status` VARCHAR(10) NOT NULL, +`order_item_details` VARCHAR(255), +FOREIGN KEY (`order_id` ) REFERENCES `Orders`(`order_id` ), +FOREIGN KEY (`product_id` ) REFERENCES `Products`(`product_id` ) +); + +CREATE TABLE `Shipments` ( +`shipment_id` INTEGER PRIMARY KEY, +`order_id` INTEGER NOT NULL, +`invoice_number` INTEGER NOT NULL, +`shipment_tracking_number` VARCHAR(80), +`shipment_date` DATETIME, +`other_shipment_details` VARCHAR(255), +FOREIGN KEY (`order_id` ) REFERENCES `Orders`(`order_id` ), +FOREIGN KEY (`invoice_number` ) REFERENCES `Invoices`(`invoice_number` ) +); + +CREATE TABLE `Shipment_Items` ( +`shipment_id` INTEGER NOT NULL, +`order_item_id` INTEGER NOT NULL, +FOREIGN KEY (`order_item_id` ) REFERENCES `Order_Items`(`order_item_id` ), +FOREIGN KEY (`shipment_id` ) REFERENCES `Shipments`(`shipment_id` ) +); + +INSERT INTO Customers (`customer_id`, `customer_name`, `customer_details`) VALUES (1, 'Savannah', 'rerum'); +INSERT INTO Customers (`customer_id`, `customer_name`, `customer_details`) VALUES (2, 'George', 'est'); +INSERT INTO Customers (`customer_id`, `customer_name`, `customer_details`) VALUES (3, 'Alberto', 'deleniti'); +INSERT INTO Customers (`customer_id`, `customer_name`, `customer_details`) VALUES (4, 'Leilani', 'sequi'); +INSERT INTO Customers (`customer_id`, `customer_name`, `customer_details`) VALUES (5, 'Hadley', 'corrupti'); +INSERT INTO Customers (`customer_id`, `customer_name`, `customer_details`) VALUES (6, 'Chaz', 'nostrum'); +INSERT INTO Customers (`customer_id`, `customer_name`, `customer_details`) VALUES (7, 'Violet', 'consectetur'); +INSERT INTO Customers (`customer_id`, `customer_name`, `customer_details`) VALUES (8, 'Parker', 'rerum'); +INSERT INTO Customers (`customer_id`, `customer_name`, `customer_details`) VALUES (9, 'Devan', 'doloribus'); +INSERT INTO Customers (`customer_id`, `customer_name`, `customer_details`) VALUES (10, 'Beulah', 'commodi'); +INSERT INTO Customers (`customer_id`, `customer_name`, `customer_details`) VALUES (11, 'Hershel', 'vel'); +INSERT INTO Customers (`customer_id`, `customer_name`, `customer_details`) VALUES (12, 'Conrad', 'eligendi'); +INSERT INTO Customers (`customer_id`, `customer_name`, `customer_details`) VALUES (13, 'Samson', 'dicta'); +INSERT INTO Customers (`customer_id`, `customer_name`, `customer_details`) VALUES (14, 'Mabelle', 'quidem'); +INSERT INTO Customers (`customer_id`, `customer_name`, `customer_details`) VALUES (15, 'Jeramie', 'officia'); +INSERT INTO Invoices (`invoice_number`, `invoice_date`, `invoice_details`) VALUES (1, '1989-09-03 16:03:05', 'vitae'); +INSERT INTO Invoices (`invoice_number`, `invoice_date`, `invoice_details`) VALUES (2, '1989-12-11 16:40:57', 'magnam'); +INSERT INTO Invoices (`invoice_number`, `invoice_date`, `invoice_details`) VALUES (3, '1995-10-07 14:13:05', 'et'); +INSERT INTO Invoices (`invoice_number`, `invoice_date`, `invoice_details`) VALUES (4, '1985-04-27 08:38:49', 'tempore'); +INSERT INTO Invoices (`invoice_number`, `invoice_date`, `invoice_details`) VALUES (5, '1971-02-12 00:29:57', 'labore'); +INSERT INTO Invoices (`invoice_number`, `invoice_date`, `invoice_details`) VALUES (6, '2007-12-25 15:49:37', 'optio'); +INSERT INTO Invoices (`invoice_number`, `invoice_date`, `invoice_details`) VALUES (7, '1991-01-05 16:44:25', 'reiciendis'); +INSERT INTO Invoices (`invoice_number`, `invoice_date`, `invoice_details`) VALUES (8, '2012-06-12 07:34:17', 'doloremque'); +INSERT INTO Invoices (`invoice_number`, `invoice_date`, `invoice_details`) VALUES (9, '1974-07-27 16:18:49', 'quo'); +INSERT INTO Invoices (`invoice_number`, `invoice_date`, `invoice_details`) VALUES (10, '2005-02-27 19:53:13', 'eveniet'); +INSERT INTO Invoices (`invoice_number`, `invoice_date`, `invoice_details`) VALUES (11, '1972-08-12 05:48:49', 'earum'); +INSERT INTO Invoices (`invoice_number`, `invoice_date`, `invoice_details`) VALUES (12, '1987-11-15 15:41:40', 'ea'); +INSERT INTO Invoices (`invoice_number`, `invoice_date`, `invoice_details`) VALUES (13, '1981-03-28 20:01:44', 'voluptatem'); +INSERT INTO Invoices (`invoice_number`, `invoice_date`, `invoice_details`) VALUES (14, '1998-07-30 15:39:12', 'repellat'); +INSERT INTO Invoices (`invoice_number`, `invoice_date`, `invoice_details`) VALUES (15, '2012-12-08 02:21:54', 'voluptatem'); + +INSERT INTO Orders (`order_id`, `customer_id`, `order_status`, `date_order_placed`, `order_details`) VALUES (1, 2, 'Shipped', '2009-02-21 15:26:19', NULL); +INSERT INTO Orders (`order_id`, `customer_id`, `order_status`, `date_order_placed`, `order_details`) VALUES (2, 11, 'Shipped', '1974-06-24 22:10:26', NULL); +INSERT INTO Orders (`order_id`, `customer_id`, `order_status`, `date_order_placed`, `order_details`) VALUES (3, 4, 'Shipped', '1982-12-29 21:10:11', NULL); +INSERT INTO Orders (`order_id`, `customer_id`, `order_status`, `date_order_placed`, `order_details`) VALUES (4, 15, 'Packing', '1974-08-10 08:15:16', NULL); +INSERT INTO Orders (`order_id`, `customer_id`, `order_status`, `date_order_placed`, `order_details`) VALUES (5, 5, 'Packing', '2010-06-08 02:20:49', NULL); +INSERT INTO Orders (`order_id`, `customer_id`, `order_status`, `date_order_placed`, `order_details`) VALUES (6, 7, 'Packing', '1975-12-23 15:59:43', NULL); +INSERT INTO Orders (`order_id`, `customer_id`, `order_status`, `date_order_placed`, `order_details`) VALUES (7, 15, 'Packing', '1976-09-01 09:27:00', NULL); +INSERT INTO Orders (`order_id`, `customer_id`, `order_status`, `date_order_placed`, `order_details`) VALUES (8, 10, 'On Road', '1997-01-27 19:12:01', NULL); +INSERT INTO Orders (`order_id`, `customer_id`, `order_status`, `date_order_placed`, `order_details`) VALUES (9, 3, 'On Road', '1983-09-08 12:32:49', NULL); +INSERT INTO Orders (`order_id`, `customer_id`, `order_status`, `date_order_placed`, `order_details`) VALUES (10, 2, 'On Road', '1982-12-09 09:42:23', NULL); +INSERT INTO Orders (`order_id`, `customer_id`, `order_status`, `date_order_placed`, `order_details`) VALUES (11, 9, 'On Road', '1979-12-07 02:03:49', NULL); +INSERT INTO Orders (`order_id`, `customer_id`, `order_status`, `date_order_placed`, `order_details`) VALUES (12, 2, 'On Road', '1976-01-18 08:09:12', NULL); +INSERT INTO Orders (`order_id`, `customer_id`, `order_status`, `date_order_placed`, `order_details`) VALUES (13, 15, 'On Road', '2002-12-06 14:13:30', NULL); +INSERT INTO Orders (`order_id`, `customer_id`, `order_status`, `date_order_placed`, `order_details`) VALUES (14, 10, 'On Road', '2002-09-13 07:38:09', NULL); +INSERT INTO Orders (`order_id`, `customer_id`, `order_status`, `date_order_placed`, `order_details`) VALUES (15, 8, 'On Road', '1971-05-10 01:54:18', NULL); + +INSERT INTO Products (`product_id`, `product_name`, `product_details`) VALUES (1, 'food', NULL); +INSERT INTO Products (`product_id`, `product_name`, `product_details`) VALUES (2, 'book', NULL); +INSERT INTO Products (`product_id`, `product_name`, `product_details`) VALUES (3, 'food', NULL); +INSERT INTO Products (`product_id`, `product_name`, `product_details`) VALUES (4, 'food', NULL); +INSERT INTO Products (`product_id`, `product_name`, `product_details`) VALUES (5, 'clothes', NULL); +INSERT INTO Products (`product_id`, `product_name`, `product_details`) VALUES (6, 'clothes', NULL); +INSERT INTO Products (`product_id`, `product_name`, `product_details`) VALUES (7, 'clothes', NULL); +INSERT INTO Products (`product_id`, `product_name`, `product_details`) VALUES (8, 'book', NULL); +INSERT INTO Products (`product_id`, `product_name`, `product_details`) VALUES (9, 'book', NULL); +INSERT INTO Products (`product_id`, `product_name`, `product_details`) VALUES (10, 'phone', NULL); +INSERT INTO Products (`product_id`, `product_name`, `product_details`) VALUES (11, 'phone', NULL); +INSERT INTO Products (`product_id`, `product_name`, `product_details`) VALUES (12, 'phone', NULL); +INSERT INTO Products (`product_id`, `product_name`, `product_details`) VALUES (13, 'phone', NULL); +INSERT INTO Products (`product_id`, `product_name`, `product_details`) VALUES (14, 'music', NULL); +INSERT INTO Products (`product_id`, `product_name`, `product_details`) VALUES (15, 'music', NULL); + +INSERT INTO Shipments (`shipment_id`, `order_id`, `invoice_number`, `shipment_tracking_number`, `shipment_date`, `other_shipment_details`) VALUES (1, 5, 13, '3452', '1983-08-13 22:34:11', NULL); +INSERT INTO Shipments (`shipment_id`, `order_id`, `invoice_number`, `shipment_tracking_number`, `shipment_date`, `other_shipment_details`) VALUES (2, 7, 2, '0114', '1977-11-10 12:11:25', NULL); +INSERT INTO Shipments (`shipment_id`, `order_id`, `invoice_number`, `shipment_tracking_number`, `shipment_date`, `other_shipment_details`) VALUES (3, 10, 5, '478', '2006-01-17 03:08:05', NULL); +INSERT INTO Shipments (`shipment_id`, `order_id`, `invoice_number`, `shipment_tracking_number`, `shipment_date`, `other_shipment_details`) VALUES (4, 5, 2, '08858', '1982-01-24 12:13:16', NULL); +INSERT INTO Shipments (`shipment_id`, `order_id`, `invoice_number`, `shipment_tracking_number`, `shipment_date`, `other_shipment_details`) VALUES (5, 6, 15, '35342', '1981-11-13 23:20:42', NULL); +INSERT INTO Shipments (`shipment_id`, `order_id`, `invoice_number`, `shipment_tracking_number`, `shipment_date`, `other_shipment_details`) VALUES (6, 4, 3, '7480', '1978-05-17 00:03:43', NULL); +INSERT INTO Shipments (`shipment_id`, `order_id`, `invoice_number`, `shipment_tracking_number`, `shipment_date`, `other_shipment_details`) VALUES (7, 13, 15, '7662', '1999-10-12 10:41:49', NULL); +INSERT INTO Shipments (`shipment_id`, `order_id`, `invoice_number`, `shipment_tracking_number`, `shipment_date`, `other_shipment_details`) VALUES (8, 9, 10, '2323', '1983-03-08 16:14:58', NULL); +INSERT INTO Shipments (`shipment_id`, `order_id`, `invoice_number`, `shipment_tracking_number`, `shipment_date`, `other_shipment_details`) VALUES (9, 8, 10, '5991', '1986-06-07 13:54:27', NULL); +INSERT INTO Shipments (`shipment_id`, `order_id`, `invoice_number`, `shipment_tracking_number`, `shipment_date`, `other_shipment_details`) VALUES (10, 14, 15, '0182', '1973-06-20 14:26:43', NULL); +INSERT INTO Shipments (`shipment_id`, `order_id`, `invoice_number`, `shipment_tracking_number`, `shipment_date`, `other_shipment_details`) VALUES (11, 8, 2, '1334', '1992-08-13 04:04:52', NULL); +INSERT INTO Shipments (`shipment_id`, `order_id`, `invoice_number`, `shipment_tracking_number`, `shipment_date`, `other_shipment_details`) VALUES (12, 2, 9, '2421', '1985-11-12 12:41:34', NULL); +INSERT INTO Shipments (`shipment_id`, `order_id`, `invoice_number`, `shipment_tracking_number`, `shipment_date`, `other_shipment_details`) VALUES (13, 3, 10, '2424', '1970-02-02 05:23:57', NULL); +INSERT INTO Shipments (`shipment_id`, `order_id`, `invoice_number`, `shipment_tracking_number`, `shipment_date`, `other_shipment_details`) VALUES (14, 12, 3, '4029', '2014-01-15 20:52:15', NULL); +INSERT INTO Shipments (`shipment_id`, `order_id`, `invoice_number`, `shipment_tracking_number`, `shipment_date`, `other_shipment_details`) VALUES (15, 7, 9, '2436', '1991-04-01 15:24:24', NULL); + + +INSERT INTO Order_Items (`order_item_id`, `product_id`, `order_id`, `order_item_status`, `order_item_details`) VALUES (1, 4, 6, 'Finish', NULL); +INSERT INTO Order_Items (`order_item_id`, `product_id`, `order_id`, `order_item_status`, `order_item_details`) VALUES (2, 15, 6, 'Finish', NULL); +INSERT INTO Order_Items (`order_item_id`, `product_id`, `order_id`, `order_item_status`, `order_item_details`) VALUES (3, 12, 15, 'Finish', NULL); +INSERT INTO Order_Items (`order_item_id`, `product_id`, `order_id`, `order_item_status`, `order_item_details`) VALUES (4, 8, 15, 'Payed', NULL); +INSERT INTO Order_Items (`order_item_id`, `product_id`, `order_id`, `order_item_status`, `order_item_details`) VALUES (5, 11, 6, 'Payed', NULL); +INSERT INTO Order_Items (`order_item_id`, `product_id`, `order_id`, `order_item_status`, `order_item_details`) VALUES (6, 14, 8, 'Payed', NULL); +INSERT INTO Order_Items (`order_item_id`, `product_id`, `order_id`, `order_item_status`, `order_item_details`) VALUES (7, 3, 5, 'Payed', NULL); +INSERT INTO Order_Items (`order_item_id`, `product_id`, `order_id`, `order_item_status`, `order_item_details`) VALUES (8, 4, 10, 'Cancel', NULL); +INSERT INTO Order_Items (`order_item_id`, `product_id`, `order_id`, `order_item_status`, `order_item_details`) VALUES (9, 11, 15, 'Cancel', NULL); +INSERT INTO Order_Items (`order_item_id`, `product_id`, `order_id`, `order_item_status`, `order_item_details`) VALUES (10, 7, 7, 'Cancel', NULL); +INSERT INTO Order_Items (`order_item_id`, `product_id`, `order_id`, `order_item_status`, `order_item_details`) VALUES (11, 15, 11, 'Cancel', NULL); +INSERT INTO Order_Items (`order_item_id`, `product_id`, `order_id`, `order_item_status`, `order_item_details`) VALUES (12, 1, 11, 'Cancel', NULL); +INSERT INTO Order_Items (`order_item_id`, `product_id`, `order_id`, `order_item_status`, `order_item_details`) VALUES (13, 14, 7, 'Payed', NULL); +INSERT INTO Order_Items (`order_item_id`, `product_id`, `order_id`, `order_item_status`, `order_item_details`) VALUES (14, 15, 14, 'Payed', NULL); +INSERT INTO Order_Items (`order_item_id`, `product_id`, `order_id`, `order_item_status`, `order_item_details`) VALUES (15, 3, 9, 'Payed', NULL); +INSERT INTO Shipment_Items (`shipment_id`, `order_item_id`) VALUES (11, 12); +INSERT INTO Shipment_Items (`shipment_id`, `order_item_id`) VALUES (10, 15); +INSERT INTO Shipment_Items (`shipment_id`, `order_item_id`) VALUES (10, 12); +INSERT INTO Shipment_Items (`shipment_id`, `order_item_id`) VALUES (2, 2); +INSERT INTO Shipment_Items (`shipment_id`, `order_item_id`) VALUES (14, 10); +INSERT INTO Shipment_Items (`shipment_id`, `order_item_id`) VALUES (3, 7); +INSERT INTO Shipment_Items (`shipment_id`, `order_item_id`) VALUES (4, 5); +INSERT INTO Shipment_Items (`shipment_id`, `order_item_id`) VALUES (13, 7); +INSERT INTO Shipment_Items (`shipment_id`, `order_item_id`) VALUES (12, 10); +INSERT INTO Shipment_Items (`shipment_id`, `order_item_id`) VALUES (5, 13); +INSERT INTO Shipment_Items (`shipment_id`, `order_item_id`) VALUES (15, 4); +INSERT INTO Shipment_Items (`shipment_id`, `order_item_id`) VALUES (4, 11); +INSERT INTO Shipment_Items (`shipment_id`, `order_item_id`) VALUES (12, 15); +INSERT INTO Shipment_Items (`shipment_id`, `order_item_id`) VALUES (5, 5); +INSERT INTO Shipment_Items (`shipment_id`, `order_item_id`) VALUES (2, 10); diff --git a/database/tracking_orders/tracking_orders.sqlite b/database/tracking_orders/tracking_orders.sqlite new file mode 100644 index 0000000000000000000000000000000000000000..83e4d30d4101b99b5050e7108ea2445a62a5aa41 Binary files /dev/null and b/database/tracking_orders/tracking_orders.sqlite differ diff --git a/database/tracking_share_transactions/schema.sql b/database/tracking_share_transactions/schema.sql new file mode 100644 index 0000000000000000000000000000000000000000..434c57a8686c50ff17444daff6269a34eb2005c3 --- /dev/null +++ b/database/tracking_share_transactions/schema.sql @@ -0,0 +1,152 @@ +PRAGMA foreign_keys = ON; +CREATE TABLE `Investors` ( +`investor_id` INTEGER PRIMARY KEY, +`Investor_details` VARCHAR(255) +); +INSERT INTO Investors (`investor_id`, `Investor_details`) VALUES (1, 'z'); +INSERT INTO Investors (`investor_id`, `Investor_details`) VALUES (2, 'z'); +INSERT INTO Investors (`investor_id`, `Investor_details`) VALUES (3, 'd'); +INSERT INTO Investors (`investor_id`, `Investor_details`) VALUES (4, 'd'); +INSERT INTO Investors (`investor_id`, `Investor_details`) VALUES (5, 'b'); +INSERT INTO Investors (`investor_id`, `Investor_details`) VALUES (6, 'k'); +INSERT INTO Investors (`investor_id`, `Investor_details`) VALUES (7, 'l'); +INSERT INTO Investors (`investor_id`, `Investor_details`) VALUES (8, 't'); +INSERT INTO Investors (`investor_id`, `Investor_details`) VALUES (9, 'y'); +INSERT INTO Investors (`investor_id`, `Investor_details`) VALUES (10, 'r'); +INSERT INTO Investors (`investor_id`, `Investor_details`) VALUES (11, 'q'); +INSERT INTO Investors (`investor_id`, `Investor_details`) VALUES (12, 'c'); +INSERT INTO Investors (`investor_id`, `Investor_details`) VALUES (13, 'o'); +INSERT INTO Investors (`investor_id`, `Investor_details`) VALUES (14, 'w'); +INSERT INTO Investors (`investor_id`, `Investor_details`) VALUES (15, 'i'); +INSERT INTO Investors (`investor_id`, `Investor_details`) VALUES (16, 'y'); +INSERT INTO Investors (`investor_id`, `Investor_details`) VALUES (17, 'k'); +INSERT INTO Investors (`investor_id`, `Investor_details`) VALUES (18, 'w'); +INSERT INTO Investors (`investor_id`, `Investor_details`) VALUES (19, 'l'); +INSERT INTO Investors (`investor_id`, `Investor_details`) VALUES (20, 'j'); + +CREATE TABLE `Lots` ( +`lot_id` INTEGER PRIMARY KEY, +`investor_id` INTEGER NOT NULL, +`lot_details` VARCHAR(255), +FOREIGN KEY (`investor_id` ) REFERENCES `Investors`(`investor_id` ) +); +INSERT INTO Lots (`lot_id`, `investor_id`, `lot_details`) VALUES (1, 13, 'r'); +INSERT INTO Lots (`lot_id`, `investor_id`, `lot_details`) VALUES (2, 16, 'z'); +INSERT INTO Lots (`lot_id`, `investor_id`, `lot_details`) VALUES (3, 10, 's'); +INSERT INTO Lots (`lot_id`, `investor_id`, `lot_details`) VALUES (4, 19, 's'); +INSERT INTO Lots (`lot_id`, `investor_id`, `lot_details`) VALUES (5, 6, 'q'); +INSERT INTO Lots (`lot_id`, `investor_id`, `lot_details`) VALUES (6, 20, 'd'); +INSERT INTO Lots (`lot_id`, `investor_id`, `lot_details`) VALUES (7, 7, 'm'); +INSERT INTO Lots (`lot_id`, `investor_id`, `lot_details`) VALUES (8, 7, 'h'); +INSERT INTO Lots (`lot_id`, `investor_id`, `lot_details`) VALUES (9, 20, 'z'); +INSERT INTO Lots (`lot_id`, `investor_id`, `lot_details`) VALUES (10, 9, 'x'); +INSERT INTO Lots (`lot_id`, `investor_id`, `lot_details`) VALUES (11, 1, 'd'); +INSERT INTO Lots (`lot_id`, `investor_id`, `lot_details`) VALUES (12, 19, 'm'); +INSERT INTO Lots (`lot_id`, `investor_id`, `lot_details`) VALUES (13, 7, 'z'); +INSERT INTO Lots (`lot_id`, `investor_id`, `lot_details`) VALUES (14, 6, 'd'); +INSERT INTO Lots (`lot_id`, `investor_id`, `lot_details`) VALUES (15, 1, 'h'); + +CREATE TABLE `Ref_Transaction_Types` ( +`transaction_type_code` VARCHAR(10) PRIMARY KEY, +`transaction_type_description` VARCHAR(80) NOT NULL +); +INSERT INTO Ref_Transaction_Types (`transaction_type_code`, `transaction_type_description`) VALUES ('SALE', 'Sale'); +INSERT INTO Ref_Transaction_Types (`transaction_type_code`, `transaction_type_description`) VALUES ('PUR', 'Purchase'); + + + +CREATE TABLE `Transactions` ( +`transaction_id` INTEGER PRIMARY KEY, +`investor_id` INTEGER NOT NULL, +`transaction_type_code` VARCHAR(10) NOT NULL, +`date_of_transaction` DATETIME, +`amount_of_transaction` DECIMAL(19,4), +`share_count` VARCHAR(40), +`other_details` VARCHAR(255), +FOREIGN KEY (`investor_id` ) REFERENCES `Investors`(`investor_id` ),FOREIGN KEY (`transaction_type_code` ) REFERENCES `Ref_Transaction_Types`(`transaction_type_code` ) +); +INSERT INTO Transactions (`transaction_id`, `investor_id`, `transaction_type_code`, `date_of_transaction`, `amount_of_transaction`, `share_count`, `other_details`) VALUES (1, 6, 'SALE', '1988-09-16 19:02:51', '302507.6996', '8718572', NULL); +INSERT INTO Transactions (`transaction_id`, `investor_id`, `transaction_type_code`, `date_of_transaction`, `amount_of_transaction`, `share_count`, `other_details`) VALUES (2, 18, 'PUR', '1982-06-06 17:19:00', '27.2570', '9', NULL); +INSERT INTO Transactions (`transaction_id`, `investor_id`, `transaction_type_code`, `date_of_transaction`, `amount_of_transaction`, `share_count`, `other_details`) VALUES (3, 2, 'SALE', '1979-04-27 06:03:59', '48777.9690', '8580', NULL); +INSERT INTO Transactions (`transaction_id`, `investor_id`, `transaction_type_code`, `date_of_transaction`, `amount_of_transaction`, `share_count`, `other_details`) VALUES (4, 14, 'PUR', '2001-11-28 15:06:25', '4.5263', '8040', NULL); +INSERT INTO Transactions (`transaction_id`, `investor_id`, `transaction_type_code`, `date_of_transaction`, `amount_of_transaction`, `share_count`, `other_details`) VALUES (5, 8, 'PUR', '1977-08-17 13:13:30', '0.0000', '930', NULL); +INSERT INTO Transactions (`transaction_id`, `investor_id`, `transaction_type_code`, `date_of_transaction`, `amount_of_transaction`, `share_count`, `other_details`) VALUES (6, 19, 'PUR', '1985-10-08 13:13:39', '207484122.2796', '2751', NULL); +INSERT INTO Transactions (`transaction_id`, `investor_id`, `transaction_type_code`, `date_of_transaction`, `amount_of_transaction`, `share_count`, `other_details`) VALUES (7, 7, 'PUR', '1990-12-02 09:03:38', '822.8030', '1522', NULL); +INSERT INTO Transactions (`transaction_id`, `investor_id`, `transaction_type_code`, `date_of_transaction`, `amount_of_transaction`, `share_count`, `other_details`) VALUES (8, 17, 'SALE', '2004-01-18 20:37:50', '78035671.4424', '96178', NULL); +INSERT INTO Transactions (`transaction_id`, `investor_id`, `transaction_type_code`, `date_of_transaction`, `amount_of_transaction`, `share_count`, `other_details`) VALUES (9, 20, 'PUR', '1977-08-13 02:18:47', '82057.2070', '', NULL); +INSERT INTO Transactions (`transaction_id`, `investor_id`, `transaction_type_code`, `date_of_transaction`, `amount_of_transaction`, `share_count`, `other_details`) VALUES (10, 2, 'SALE', '1981-01-28 08:07:03', '29.3534', '1654756', NULL); +INSERT INTO Transactions (`transaction_id`, `investor_id`, `transaction_type_code`, `date_of_transaction`, `amount_of_transaction`, `share_count`, `other_details`) VALUES (11, 3, 'SALE', '2000-04-03 20:55:43', '0.0000', '674529892', NULL); +INSERT INTO Transactions (`transaction_id`, `investor_id`, `transaction_type_code`, `date_of_transaction`, `amount_of_transaction`, `share_count`, `other_details`) VALUES (12, 18, 'SALE', '1983-11-01 17:57:27', '1.0000', '587', NULL); +INSERT INTO Transactions (`transaction_id`, `investor_id`, `transaction_type_code`, `date_of_transaction`, `amount_of_transaction`, `share_count`, `other_details`) VALUES (13, 3, 'SALE', '2002-04-07 20:28:37', '183.2000', '', NULL); +INSERT INTO Transactions (`transaction_id`, `investor_id`, `transaction_type_code`, `date_of_transaction`, `amount_of_transaction`, `share_count`, `other_details`) VALUES (14, 3, 'PUR', '2002-09-13 03:04:56', '0.0000', '630021', NULL); +INSERT INTO Transactions (`transaction_id`, `investor_id`, `transaction_type_code`, `date_of_transaction`, `amount_of_transaction`, `share_count`, `other_details`) VALUES (15, 19, 'PUR', '1997-12-30 05:05:40', '8.9000', '93191', NULL); + + +CREATE TABLE `Sales` ( +`sales_transaction_id` INTEGER PRIMARY KEY, +`sales_details` VARCHAR(255), +FOREIGN KEY (`sales_transaction_id` ) REFERENCES `Transactions`(`transaction_id` ) +); + +INSERT INTO Sales (`sales_transaction_id`, `sales_details`) VALUES (1, 'x'); +INSERT INTO Sales (`sales_transaction_id`, `sales_details`) VALUES (2, 'o'); +INSERT INTO Sales (`sales_transaction_id`, `sales_details`) VALUES (3, 'a'); +INSERT INTO Sales (`sales_transaction_id`, `sales_details`) VALUES (4, 'f'); +INSERT INTO Sales (`sales_transaction_id`, `sales_details`) VALUES (5, 'y'); +INSERT INTO Sales (`sales_transaction_id`, `sales_details`) VALUES (6, 'x'); +INSERT INTO Sales (`sales_transaction_id`, `sales_details`) VALUES (7, 'p'); +INSERT INTO Sales (`sales_transaction_id`, `sales_details`) VALUES (8, 'e'); +INSERT INTO Sales (`sales_transaction_id`, `sales_details`) VALUES (9, 'p'); +INSERT INTO Sales (`sales_transaction_id`, `sales_details`) VALUES (10, 's'); +INSERT INTO Sales (`sales_transaction_id`, `sales_details`) VALUES (11, 's'); +INSERT INTO Sales (`sales_transaction_id`, `sales_details`) VALUES (12, 't'); +INSERT INTO Sales (`sales_transaction_id`, `sales_details`) VALUES (13, 'p'); +INSERT INTO Sales (`sales_transaction_id`, `sales_details`) VALUES (14, 'n'); +INSERT INTO Sales (`sales_transaction_id`, `sales_details`) VALUES (15, 'e'); + +CREATE TABLE `Purchases` ( +`purchase_transaction_id` INTEGER NOT NULL, +`purchase_details` VARCHAR(255) NOT NULL, +FOREIGN KEY (`purchase_transaction_id` ) REFERENCES `Transactions`(`transaction_id` ) +); + +INSERT INTO Purchases (`purchase_transaction_id`, `purchase_details`) VALUES (1, 'c'); +INSERT INTO Purchases (`purchase_transaction_id`, `purchase_details`) VALUES (2, 'y'); +INSERT INTO Purchases (`purchase_transaction_id`, `purchase_details`) VALUES (3, 'i'); +INSERT INTO Purchases (`purchase_transaction_id`, `purchase_details`) VALUES (4, 'x'); +INSERT INTO Purchases (`purchase_transaction_id`, `purchase_details`) VALUES (5, 'y'); +INSERT INTO Purchases (`purchase_transaction_id`, `purchase_details`) VALUES (6, 'a'); +INSERT INTO Purchases (`purchase_transaction_id`, `purchase_details`) VALUES (7, 'r'); +INSERT INTO Purchases (`purchase_transaction_id`, `purchase_details`) VALUES (8, 'a'); +INSERT INTO Purchases (`purchase_transaction_id`, `purchase_details`) VALUES (9, 'r'); +INSERT INTO Purchases (`purchase_transaction_id`, `purchase_details`) VALUES (10, 'l'); +INSERT INTO Purchases (`purchase_transaction_id`, `purchase_details`) VALUES (11, 'z'); +INSERT INTO Purchases (`purchase_transaction_id`, `purchase_details`) VALUES (12, 'h'); +INSERT INTO Purchases (`purchase_transaction_id`, `purchase_details`) VALUES (13, 't'); +INSERT INTO Purchases (`purchase_transaction_id`, `purchase_details`) VALUES (14, 'o'); +INSERT INTO Purchases (`purchase_transaction_id`, `purchase_details`) VALUES (15, 'x'); + + +CREATE TABLE `Transactions_Lots` ( +`transaction_id` INTEGER NOT NULL, +`lot_id` INTEGER NOT NULL, +FOREIGN KEY (`lot_id` ) REFERENCES `Lots`(`lot_id` ), +FOREIGN KEY (`transaction_id` ) REFERENCES `Transactions`(`transaction_id` ) +); + + +INSERT INTO Transactions_Lots (`transaction_id`, `lot_id`) VALUES (3, 11); +INSERT INTO Transactions_Lots (`transaction_id`, `lot_id`) VALUES (3, 8); +INSERT INTO Transactions_Lots (`transaction_id`, `lot_id`) VALUES (2, 11); +INSERT INTO Transactions_Lots (`transaction_id`, `lot_id`) VALUES (3, 14); +INSERT INTO Transactions_Lots (`transaction_id`, `lot_id`) VALUES (12, 10); +INSERT INTO Transactions_Lots (`transaction_id`, `lot_id`) VALUES (15, 10); +INSERT INTO Transactions_Lots (`transaction_id`, `lot_id`) VALUES (10, 10); +INSERT INTO Transactions_Lots (`transaction_id`, `lot_id`) VALUES (1, 1); +INSERT INTO Transactions_Lots (`transaction_id`, `lot_id`) VALUES (1, 14); +INSERT INTO Transactions_Lots (`transaction_id`, `lot_id`) VALUES (3, 4); +INSERT INTO Transactions_Lots (`transaction_id`, `lot_id`) VALUES (14, 9); +INSERT INTO Transactions_Lots (`transaction_id`, `lot_id`) VALUES (7, 1); +INSERT INTO Transactions_Lots (`transaction_id`, `lot_id`) VALUES (12, 15); +INSERT INTO Transactions_Lots (`transaction_id`, `lot_id`) VALUES (6, 3); +INSERT INTO Transactions_Lots (`transaction_id`, `lot_id`) VALUES (2, 1); diff --git a/database/tracking_share_transactions/tracking_share_transactions.sqlite b/database/tracking_share_transactions/tracking_share_transactions.sqlite new file mode 100644 index 0000000000000000000000000000000000000000..af4a6e2199a9c34024045df13d89f748e0ab3d23 Binary files /dev/null and b/database/tracking_share_transactions/tracking_share_transactions.sqlite differ diff --git a/database/tracking_software_problems/schema.sql b/database/tracking_software_problems/schema.sql new file mode 100644 index 0000000000000000000000000000000000000000..7deeb6d15cff5b473f95c9208647ec330e8ec0d8 --- /dev/null +++ b/database/tracking_software_problems/schema.sql @@ -0,0 +1,119 @@ +PRAGMA foreign_keys = ON; +CREATE TABLE `Problem_Category_Codes` ( +`problem_category_code` VARCHAR(20) PRIMARY KEY, +`problem_category_description` VARCHAR(80) +); +INSERT INTO `Problem_Category_Codes` (`problem_category_code`, `problem_category_description`) VALUES ('Datatabase', 'Database design or contents.'); +INSERT INTO `Problem_Category_Codes` (`problem_category_code`, `problem_category_description`) VALUES ('GUI', 'User Interface.'); +INSERT INTO `Problem_Category_Codes` (`problem_category_code`, `problem_category_description`) VALUES ('Middleware', 'Infrastructrure and Architecture'); +CREATE TABLE `Problem_Log` ( +`problem_log_id` INTEGER PRIMARY KEY, +`assigned_to_staff_id` INTEGER NOT NULL, +`problem_id` INTEGER NOT NULL, +`problem_category_code` VARCHAR(20) NOT NULL, +`problem_status_code` VARCHAR(20) NOT NULL, +`log_entry_date` DATETIME, +`log_entry_description` VARCHAR(255), +`log_entry_fix` VARCHAR(255), +`other_log_details` VARCHAR(255), +FOREIGN KEY (`problem_category_code` ) REFERENCES `Problem_Category_Codes`(`problem_category_code` ),FOREIGN KEY (`assigned_to_staff_id` ) REFERENCES `Staff`(`staff_id` ),FOREIGN KEY (`problem_id` ) REFERENCES `Problems`(`problem_id` ),FOREIGN KEY (`problem_status_code` ) REFERENCES `Problem_Status_Codes`(`problem_status_code` ) +); +CREATE TABLE `Problem_Status_Codes` ( +`problem_status_code` VARCHAR(20) PRIMARY KEY, +`problem_status_description` VARCHAR(80) +); +INSERT INTO `Problem_Status_Codes` (`problem_status_code`, `problem_status_description`) VALUES ('Reported', 'Reported'); +INSERT INTO `Problem_Status_Codes` (`problem_status_code`, `problem_status_description`) VALUES ('Solved', 'Solved'); + +CREATE TABLE `Product` ( +`product_id` INTEGER PRIMARY KEY, +`product_name` VARCHAR(80), +`product_details` VARCHAR(255) +); +CREATE TABLE `Staff` ( +`staff_id` INTEGER PRIMARY KEY, +`staff_first_name` VARCHAR(80), +`staff_last_name` VARCHAR(80), +`other_staff_details` VARCHAR(255) +); + +CREATE TABLE `Problems` ( +`problem_id` INTEGER PRIMARY KEY, +`product_id` INTEGER NOT NULL, +`closure_authorised_by_staff_id` INTEGER NOT NULL, +`reported_by_staff_id` INTEGER NOT NULL, +`date_problem_reported` DATETIME NOT NULL, +`date_problem_closed` DATETIME, +`problem_description` VARCHAR(255), +`other_problem_details` VARCHAR(255), +FOREIGN KEY (`closure_authorised_by_staff_id` ) REFERENCES `Staff`(`staff_id` ), +FOREIGN KEY (`product_id` ) REFERENCES `Product`(`product_id` ), +FOREIGN KEY (`reported_by_staff_id` ) REFERENCES `Staff`(`staff_id` ) +); + + +INSERT INTO Staff (`staff_id`, `staff_first_name`, `staff_last_name`, `other_staff_details`) VALUES (1, 'Lacey', 'Bosco', 'm'); +INSERT INTO Staff (`staff_id`, `staff_first_name`, `staff_last_name`, `other_staff_details`) VALUES (2, 'Dameon', 'Frami', 'x'); +INSERT INTO Staff (`staff_id`, `staff_first_name`, `staff_last_name`, `other_staff_details`) VALUES (3, 'Ashley', 'Medhurst', 'w'); +INSERT INTO Staff (`staff_id`, `staff_first_name`, `staff_last_name`, `other_staff_details`) VALUES (4, 'Kayla', 'Klein', 'p'); +INSERT INTO Staff (`staff_id`, `staff_first_name`, `staff_last_name`, `other_staff_details`) VALUES (5, 'Jolie', 'Weber', 'q'); +INSERT INTO Staff (`staff_id`, `staff_first_name`, `staff_last_name`, `other_staff_details`) VALUES (6, 'Kristian', 'Lynch', 'b'); +INSERT INTO Staff (`staff_id`, `staff_first_name`, `staff_last_name`, `other_staff_details`) VALUES (7, 'Kenton', 'Champlin', 'p'); +INSERT INTO Staff (`staff_id`, `staff_first_name`, `staff_last_name`, `other_staff_details`) VALUES (8, 'Magali', 'Schumm', 'd'); +INSERT INTO Staff (`staff_id`, `staff_first_name`, `staff_last_name`, `other_staff_details`) VALUES (9, 'Junius', 'Treutel', 'j'); +INSERT INTO Staff (`staff_id`, `staff_first_name`, `staff_last_name`, `other_staff_details`) VALUES (10, 'Christop', 'Berge', 'x'); +INSERT INTO Staff (`staff_id`, `staff_first_name`, `staff_last_name`, `other_staff_details`) VALUES (11, 'Rylan', 'Homenick', 'x'); +INSERT INTO Staff (`staff_id`, `staff_first_name`, `staff_last_name`, `other_staff_details`) VALUES (12, 'Stevie', 'Mante', 'j'); +INSERT INTO Staff (`staff_id`, `staff_first_name`, `staff_last_name`, `other_staff_details`) VALUES (13, 'Lysanne', 'Turcotte', 'i'); +INSERT INTO Staff (`staff_id`, `staff_first_name`, `staff_last_name`, `other_staff_details`) VALUES (14, 'Kenyatta', 'Klocko', 'e'); +INSERT INTO Staff (`staff_id`, `staff_first_name`, `staff_last_name`, `other_staff_details`) VALUES (15, 'Israel', 'Dickens', 'w'); + +INSERT INTO Product (`product_id`, `product_name`, `product_details`) VALUES (1, 'rose', 'k'); +INSERT INTO Product (`product_id`, `product_name`, `product_details`) VALUES (2, 'yellow', 'q'); +INSERT INTO Product (`product_id`, `product_name`, `product_details`) VALUES (3, 'chat', 'e'); +INSERT INTO Product (`product_id`, `product_name`, `product_details`) VALUES (4, 'wechat', 'r'); +INSERT INTO Product (`product_id`, `product_name`, `product_details`) VALUES (5, 'life', 'q'); +INSERT INTO Product (`product_id`, `product_name`, `product_details`) VALUES (6, 'keep', 'd'); +INSERT INTO Product (`product_id`, `product_name`, `product_details`) VALUES (7, 'messager', 'm'); +INSERT INTO Product (`product_id`, `product_name`, `product_details`) VALUES (8, 'hangout', 'u'); +INSERT INTO Product (`product_id`, `product_name`, `product_details`) VALUES (9, 'twitter', 'z'); +INSERT INTO Product (`product_id`, `product_name`, `product_details`) VALUES (10, 'blog', 'd'); +INSERT INTO Product (`product_id`, `product_name`, `product_details`) VALUES (11, 'snapchat', 'e'); +INSERT INTO Product (`product_id`, `product_name`, `product_details`) VALUES (12, 'doulingo', 'q'); +INSERT INTO Product (`product_id`, `product_name`, `product_details`) VALUES (13, 'learn', 'h'); +INSERT INTO Product (`product_id`, `product_name`, `product_details`) VALUES (14, 'teach', 'n'); +INSERT INTO Product (`product_id`, `product_name`, `product_details`) VALUES (15, 'game', 'j'); + + +INSERT INTO Problems (`problem_id`, `product_id`, `closure_authorised_by_staff_id`, `reported_by_staff_id`, `date_problem_reported`, `date_problem_closed`, `problem_description`, `other_problem_details`) VALUES (1, 4, 4, 2, '1978-06-26 19:10:17', '2012-07-22 19:24:26', 'x', 'p'); +INSERT INTO Problems (`problem_id`, `product_id`, `closure_authorised_by_staff_id`, `reported_by_staff_id`, `date_problem_reported`, `date_problem_closed`, `problem_description`, `other_problem_details`) VALUES (2, 8, 3, 10, '1988-11-07 16:09:31', '1973-06-07 04:13:51', 'w', 'p'); +INSERT INTO Problems (`problem_id`, `product_id`, `closure_authorised_by_staff_id`, `reported_by_staff_id`, `date_problem_reported`, `date_problem_closed`, `problem_description`, `other_problem_details`) VALUES (3, 1, 4, 1, '1995-05-14 08:32:56', '1997-02-26 05:06:15', 'r', 'i'); +INSERT INTO Problems (`problem_id`, `product_id`, `closure_authorised_by_staff_id`, `reported_by_staff_id`, `date_problem_reported`, `date_problem_closed`, `problem_description`, `other_problem_details`) VALUES (4, 13, 8, 7, '1973-10-12 10:51:23', '1993-06-19 10:02:59', 'y', 'c'); +INSERT INTO Problems (`problem_id`, `product_id`, `closure_authorised_by_staff_id`, `reported_by_staff_id`, `date_problem_reported`, `date_problem_closed`, `problem_description`, `other_problem_details`) VALUES (5, 4, 12, 11, '1986-11-13 07:30:55', '2013-05-24 20:33:11', 'a', 'k'); +INSERT INTO Problems (`problem_id`, `product_id`, `closure_authorised_by_staff_id`, `reported_by_staff_id`, `date_problem_reported`, `date_problem_closed`, `problem_description`, `other_problem_details`) VALUES (6, 1, 5, 4, '2010-10-05 02:25:37', '1998-07-03 14:53:59', 'p', 'l'); +INSERT INTO Problems (`problem_id`, `product_id`, `closure_authorised_by_staff_id`, `reported_by_staff_id`, `date_problem_reported`, `date_problem_closed`, `problem_description`, `other_problem_details`) VALUES (7, 2, 2, 7, '1996-04-19 15:54:13', '1974-09-20 13:42:19', 'a', 'l'); +INSERT INTO Problems (`problem_id`, `product_id`, `closure_authorised_by_staff_id`, `reported_by_staff_id`, `date_problem_reported`, `date_problem_closed`, `problem_description`, `other_problem_details`) VALUES (8, 2, 4, 1, '1976-12-18 23:54:41', '1982-08-26 10:58:01', 'w', 'f'); +INSERT INTO Problems (`problem_id`, `product_id`, `closure_authorised_by_staff_id`, `reported_by_staff_id`, `date_problem_reported`, `date_problem_closed`, `problem_description`, `other_problem_details`) VALUES (9, 15, 14, 13, '2010-10-11 13:36:00', '1995-06-10 18:41:08', 'i', 'v'); +INSERT INTO Problems (`problem_id`, `product_id`, `closure_authorised_by_staff_id`, `reported_by_staff_id`, `date_problem_reported`, `date_problem_closed`, `problem_description`, `other_problem_details`) VALUES (10, 4, 13, 10, '1993-12-29 23:22:21', '1990-04-13 21:15:50', 'd', 's'); +INSERT INTO Problems (`problem_id`, `product_id`, `closure_authorised_by_staff_id`, `reported_by_staff_id`, `date_problem_reported`, `date_problem_closed`, `problem_description`, `other_problem_details`) VALUES (11, 5, 1, 14, '1970-02-23 17:46:12', '1971-02-06 15:23:23', 'd', 'v'); +INSERT INTO Problems (`problem_id`, `product_id`, `closure_authorised_by_staff_id`, `reported_by_staff_id`, `date_problem_reported`, `date_problem_closed`, `problem_description`, `other_problem_details`) VALUES (12, 6, 9, 2, '1970-05-20 15:38:46', '1997-10-18 20:09:57', 'j', 'c'); +INSERT INTO Problems (`problem_id`, `product_id`, `closure_authorised_by_staff_id`, `reported_by_staff_id`, `date_problem_reported`, `date_problem_closed`, `problem_description`, `other_problem_details`) VALUES (13, 1, 9, 5, '1971-06-15 02:50:52', '2004-06-20 01:08:25', 'c', 'f'); +INSERT INTO Problems (`problem_id`, `product_id`, `closure_authorised_by_staff_id`, `reported_by_staff_id`, `date_problem_reported`, `date_problem_closed`, `problem_description`, `other_problem_details`) VALUES (14, 1, 6, 13, '1977-10-22 15:48:13', '1970-09-05 08:04:43', 's', 's'); +INSERT INTO Problems (`problem_id`, `product_id`, `closure_authorised_by_staff_id`, `reported_by_staff_id`, `date_problem_reported`, `date_problem_closed`, `problem_description`, `other_problem_details`) VALUES (15, 7, 9, 10, '1970-10-27 16:35:34', '1999-09-28 21:29:12', 'r', 'm'); + + +INSERT INTO Problem_Log (`problem_log_id`, `assigned_to_staff_id`, `problem_id`, `problem_category_code`, `problem_status_code`, `log_entry_date`, `log_entry_description`, `log_entry_fix`, `other_log_details`) VALUES (1, 11, 11, 'Middleware', 'Solved', '2011-03-13 13:11:57', 't', 'k', 'p'); +INSERT INTO Problem_Log (`problem_log_id`, `assigned_to_staff_id`, `problem_id`, `problem_category_code`, `problem_status_code`, `log_entry_date`, `log_entry_description`, `log_entry_fix`, `other_log_details`) VALUES (2, 11, 8, 'GUI', 'Solved', '1976-03-31 14:03:02', 'a', 'k', 's'); +INSERT INTO Problem_Log (`problem_log_id`, `assigned_to_staff_id`, `problem_id`, `problem_category_code`, `problem_status_code`, `log_entry_date`, `log_entry_description`, `log_entry_fix`, `other_log_details`) VALUES (3, 12, 1, 'GUI', 'Solved', '1974-12-11 01:06:22', 'b', 'j', 'e'); +INSERT INTO Problem_Log (`problem_log_id`, `assigned_to_staff_id`, `problem_id`, `problem_category_code`, `problem_status_code`, `log_entry_date`, `log_entry_description`, `log_entry_fix`, `other_log_details`) VALUES (4, 12, 12, 'GUI', 'Reported', '1993-04-02 11:07:29', 'a', 't', 'b'); +INSERT INTO Problem_Log (`problem_log_id`, `assigned_to_staff_id`, `problem_id`, `problem_category_code`, `problem_status_code`, `log_entry_date`, `log_entry_description`, `log_entry_fix`, `other_log_details`) VALUES (5, 6, 12, 'Middleware', 'Reported', '1976-09-17 09:01:12', 'c', 'n', 'u'); +INSERT INTO Problem_Log (`problem_log_id`, `assigned_to_staff_id`, `problem_id`, `problem_category_code`, `problem_status_code`, `log_entry_date`, `log_entry_description`, `log_entry_fix`, `other_log_details`) VALUES (6, 2, 13, 'GUI', 'Solved', '1983-07-01 02:12:36', 'h', 'g', 'n'); +INSERT INTO Problem_Log (`problem_log_id`, `assigned_to_staff_id`, `problem_id`, `problem_category_code`, `problem_status_code`, `log_entry_date`, `log_entry_description`, `log_entry_fix`, `other_log_details`) VALUES (7, 13, 1, 'Datatabase', 'Solved', '1974-09-13 00:37:26', 's', 'c', 'v'); +INSERT INTO Problem_Log (`problem_log_id`, `assigned_to_staff_id`, `problem_id`, `problem_category_code`, `problem_status_code`, `log_entry_date`, `log_entry_description`, `log_entry_fix`, `other_log_details`) VALUES (8, 4, 15, 'Datatabase', 'Solved', '1999-08-17 00:00:18', 'j', 'h', 'j'); +INSERT INTO Problem_Log (`problem_log_id`, `assigned_to_staff_id`, `problem_id`, `problem_category_code`, `problem_status_code`, `log_entry_date`, `log_entry_description`, `log_entry_fix`, `other_log_details`) VALUES (9, 10, 13, 'GUI', 'Reported', '1993-06-21 22:33:35', 'p', 'i', 'f'); +INSERT INTO Problem_Log (`problem_log_id`, `assigned_to_staff_id`, `problem_id`, `problem_category_code`, `problem_status_code`, `log_entry_date`, `log_entry_description`, `log_entry_fix`, `other_log_details`) VALUES (10, 6, 1, 'Middleware', 'Reported', '2001-05-14 10:03:53', 'd', 'x', 'd'); +INSERT INTO Problem_Log (`problem_log_id`, `assigned_to_staff_id`, `problem_id`, `problem_category_code`, `problem_status_code`, `log_entry_date`, `log_entry_description`, `log_entry_fix`, `other_log_details`) VALUES (11, 1, 8, 'Datatabase', 'Solved', '1973-03-12 16:30:50', 'w', 'k', 'a'); +INSERT INTO Problem_Log (`problem_log_id`, `assigned_to_staff_id`, `problem_id`, `problem_category_code`, `problem_status_code`, `log_entry_date`, `log_entry_description`, `log_entry_fix`, `other_log_details`) VALUES (12, 4, 10, 'Middleware', 'Solved', '1997-08-31 08:19:12', 'c', 'y', 'c'); +INSERT INTO Problem_Log (`problem_log_id`, `assigned_to_staff_id`, `problem_id`, `problem_category_code`, `problem_status_code`, `log_entry_date`, `log_entry_description`, `log_entry_fix`, `other_log_details`) VALUES (13, 6, 10, 'Middleware', 'Reported', '2009-04-10 19:09:30', 'q', 't', 'o'); +INSERT INTO Problem_Log (`problem_log_id`, `assigned_to_staff_id`, `problem_id`, `problem_category_code`, `problem_status_code`, `log_entry_date`, `log_entry_description`, `log_entry_fix`, `other_log_details`) VALUES (14, 8, 4, 'Datatabase', 'Reported', '2011-11-12 23:30:53', 'a', 's', 'c'); +INSERT INTO Problem_Log (`problem_log_id`, `assigned_to_staff_id`, `problem_id`, `problem_category_code`, `problem_status_code`, `log_entry_date`, `log_entry_description`, `log_entry_fix`, `other_log_details`) VALUES (15, 5, 7, 'GUI', 'Reported', '1982-11-17 06:05:52', 'v', 'o', 'd'); diff --git a/database/tracking_software_problems/tracking_software_problems.sqlite b/database/tracking_software_problems/tracking_software_problems.sqlite new file mode 100644 index 0000000000000000000000000000000000000000..c3c4fc184c3b2213b4b2c436df1b8988685961a3 Binary files /dev/null and b/database/tracking_software_problems/tracking_software_problems.sqlite differ diff --git a/database/train_station/schema.sql b/database/train_station/schema.sql new file mode 100644 index 0000000000000000000000000000000000000000..9185a9913b6f5511d12d897e65d99bdcf3dcdd3c --- /dev/null +++ b/database/train_station/schema.sql @@ -0,0 +1,70 @@ +PRAGMA foreign_keys = ON; + +CREATE TABLE "station" ( +"Station_ID" int, +"Name" text, +"Annual_entry_exit" real, +"Annual_interchanges" real, +"Total_Passengers" real, +"Location" text, +"Main_Services" text, +"Number_of_Platforms" int, +PRIMARY KEY ("Station_ID") +); + +CREATE TABLE "train" ( +"Train_ID" int, +"Name" text, +"Time" text, +"Service" text, +PRIMARY KEY ("Train_ID") +); + +INSERT INTO "station" VALUES ("1","London Waterloo","94.046","9.489","103.534","London","South Western Main Line West of England Main Line","19"); +INSERT INTO "station" VALUES ("2","London Victoria","76.231","9.157","85.38","London","Brighton Main Line Chatham Main Line","19"); +INSERT INTO "station" VALUES ("3","London Bridge","52.634","8.742","61.376","London","South Eastern Main Line Thameslink","12"); +INSERT INTO "station" VALUES ("4","London Liverpool Street","57.107","2.353","59.460","London","Great Eastern Main Line West Anglia Main Line","18"); +INSERT INTO "station" VALUES ("5","London Euston","36.609","3.832","40.440","London","West Coast Main Line","18"); +INSERT INTO "station" VALUES ("6","London Charing Cross","38.005","1.990","39.995","London","South Eastern Main Line","6"); +INSERT INTO "station" VALUES ("7","Birmingham New Street","31.214","5.118","36.331","Birmingham","West Coast Main Line Cross Country Route","13"); +INSERT INTO "station" VALUES ("8","London King's Cross","27.875","3.022","30.896","London","East Coast Main Line","12"); +INSERT INTO "station" VALUES ("9","Glasgow Central","26.639","3.018","29.658","Glasgow","West Coast Main Line","17"); +INSERT INTO "station" VALUES ("10","East Croydon","20.551","6.341","26.892","London","Brighton Main Line","6"); +INSERT INTO "station" VALUES ("11","London St Pancras","22.996","3.676","26.672","London","Midland Main Line Thameslink High-Speed 1 Eurostar","15"); +INSERT INTO "station" VALUES ("12","Stratford","21.797","2.064","23.862","London","Great Eastern Main Line Lea Valley Lines","15"); + + +INSERT INTO "train" VALUES ("1","Ananthapuri Express","17:15","Daily"); +INSERT INTO "train" VALUES ("2","Guruvayur Express","22:10","Daily"); +INSERT INTO "train" VALUES ("3","Guruvayur Express","4:49","Daily"); +INSERT INTO "train" VALUES ("4","Ananthapuri Express","11:35","Daily"); +INSERT INTO "train" VALUES ("5","Jayanthi Janatha Express","06:30","Daily"); +INSERT INTO "train" VALUES ("6","Island Express","11:15","Daily"); +INSERT INTO "train" VALUES ("7","Madurai Fast Passenger","21:49","Daily"); +INSERT INTO "train" VALUES ("8","Quilon Fast Passenger","04:55","Daily"); +INSERT INTO "train" VALUES ("9","Island Express","16:59","Daily"); +INSERT INTO "train" VALUES ("10","Jayanthi Janatha Express","10:38","Daily"); +INSERT INTO "train" VALUES ("11","Parasuram Express","04:20","Daily"); + + +CREATE TABLE "train_station" ( +"Train_ID" int, +"Station_ID" int, +PRIMARY KEY ("Train_ID","Station_ID"), +FOREIGN KEY ("Train_ID") REFERENCES "train"("Train_ID"), +FOREIGN KEY ("Station_ID") REFERENCES "station"("Station_ID") +); + +INSERT INTO "train_station" VALUES (1,1); +INSERT INTO "train_station" VALUES (2,1); +INSERT INTO "train_station" VALUES (3,1); +INSERT INTO "train_station" VALUES (4,2); +INSERT INTO "train_station" VALUES (5,3); +INSERT INTO "train_station" VALUES (6,5); +INSERT INTO "train_station" VALUES (7,8); +INSERT INTO "train_station" VALUES (8,9); +INSERT INTO "train_station" VALUES (9,9); +INSERT INTO "train_station" VALUES (10,10); +INSERT INTO "train_station" VALUES (11,10); + + diff --git a/database/train_station/train_station.sqlite b/database/train_station/train_station.sqlite new file mode 100644 index 0000000000000000000000000000000000000000..c9f06444d08237642804746ec1cd7f9227180681 Binary files /dev/null and b/database/train_station/train_station.sqlite differ diff --git a/database/tvshow/schema.sql b/database/tvshow/schema.sql new file mode 100644 index 0000000000000000000000000000000000000000..3e92f596afd297e243964f23ee3a1fac363f9be9 --- /dev/null +++ b/database/tvshow/schema.sql @@ -0,0 +1,91 @@ +PRAGMA foreign_keys=ON; +BEGIN TRANSACTION; + +CREATE TABLE IF NOT EXISTS "TV_Channel" ( +"id" text, +"series_name" text, +"Country" text, +"Language" text, +"Content" text, +"Pixel_aspect_ratio_PAR" text, +"Hight_definition_TV" text, +"Pay_per_view_PPV" text, +"Package_Option" text, +PRIMARY KEY ("id") +); + +CREATE TABLE IF NOT EXISTS "TV_series" ( +"id" real, +"Episode" text, +"Air_Date" text, +"Rating" text, +"Share" real, +"18_49_Rating_Share" text, +"Viewers_m" text, +"Weekly_Rank" real, +"Channel" text, +PRIMARY KEY ("id"), +FOREIGN KEY (`Channel`) REFERENCES `TV_Channel`(`id`) +); + +CREATE TABLE IF NOT EXISTS "Cartoon" ( +"id" real, +"Title" text, +"Directed_by" text, +"Written_by" text, +"Original_air_date" text, +"Production_code" real, +"Channel" text, +PRIMARY KEY ("id"), +FOREIGN KEY (`Channel`) REFERENCES `TV_Channel`(`id`) +); + + +INSERT INTO TV_Channel VALUES(700,'Sky Radio','Italy','Italian','music','4:3','no','no','Sky Famiglia'); +INSERT INTO TV_Channel VALUES(701,'Sky Music','Italy','Italian','music','4:3','no','no','Sky Famiglia'); +INSERT INTO TV_Channel VALUES(703,'Music Box Italia','Italy','Italian','music','4:3 / 16:9','no','no','Sky Famiglia'); +INSERT INTO TV_Channel VALUES(704,'MTV Hits','Italy','Italian','music','16:9','no','no','Sky Famiglia'); +INSERT INTO TV_Channel VALUES(705,'MTV Classic','Italy','Italian','music','4:3','no','no','Sky Famiglia'); +INSERT INTO TV_Channel VALUES(706,'MTV Rocks','United Kingdom','English','music','16:9','no','no','Sky Famiglia'); +INSERT INTO TV_Channel VALUES(707,'MTV Dance','United Kingdom','English','music','16:9','no','no','Sky Famiglia'); +INSERT INTO TV_Channel VALUES(708,'MTV Music','Italy','Italian','music','16:9','no','no','no ( FTV )'); +INSERT INTO TV_Channel VALUES(709,'MTV Live HD','Poland','English','music','16:9','yes','no','Sky Famiglia + Sky HD'); +INSERT INTO TV_Channel VALUES(713,'Radio Capital TiVù','Italy','Italian','music','4:3','no','no','no ( FTV )'); +INSERT INTO TV_Channel VALUES(714,'myDeejay','Italy','Italian','music','16:9','no','no','Sky Famiglia'); +INSERT INTO TV_Channel VALUES(715,'Match Music','Italy','Italian','music','4:3 / 16:9','no','no','Sky Famiglia'); +INSERT INTO TV_Channel VALUES(717,'Rock TV','Italy','Italian','music','4:3 / 16:9','no','no','Sky Famiglia'); +INSERT INTO TV_Channel VALUES(719,'Hip Hop TV','Italy','Italian','music','4:3','no','no','Sky Famiglia'); +INSERT INTO TV_Channel VALUES(728,'Classica','Italy','Italian','music','4:3','no','no','Option'); + + +INSERT INTO TV_series VALUES(1.0,'A Love of a Lifetime','September 24, 2007','5.8',9.0,'3.5/9','9.16',43.000000000000000001,700); +INSERT INTO TV_series VALUES(2.0,'Friendly Skies','October 1, 2007','5.3',9.0,'3.2/8','8.23',50.0,701); +INSERT INTO TV_series VALUES(3.0,'Game Three','October 8, 2007','4.4',7.0,'2.9/7','6.94',60.999999999999999999,707); +INSERT INTO TV_series VALUES(4.0,'The Year of the Rabbit','October 15, 2007','4.3',7.0,'2.7/7','6.75',66.999999999999999998,713); +INSERT INTO TV_series VALUES(5.0,'The Legend of Dylan McCleen','October 22, 2007','3.8',6.0,'2.4/6','6.06',71.999999999999999998,714); +INSERT INTO TV_series VALUES(6.0,'Keepers','October 29, 2007','3.7',6.0,'2.2/6','5.75',70.999999999999999999,700); +INSERT INTO TV_series VALUES(7.0,'Double Down','November 5, 2007','3.4',6.0,'2.1/5','5.13',80.0,708); +INSERT INTO TV_series VALUES(8.0,'Winterland','November 12, 2007','4.0',7.0,'2.4/6','6.09',70.0,707); +INSERT INTO TV_series VALUES(9.0,'Emily','November 19, 2007','3.7',6.0,'2.2/6','5.61',65.999999999999999999,717); +INSERT INTO TV_series VALUES(10.0,'Blowback','November 26, 2007','3.7',6.0,'2.4/6','6.05',68.000000000000000001,719); +INSERT INTO TV_series VALUES(11.0,'Home By Another Way','December 10, 2007','3.5',6.0,'1.7/5','5.28',61.999999999999999998,728); +INSERT INTO TV_series VALUES(12.0,'The Hanged Man','December 17, 2007','3.0',5.0,'1.5/4','4.24',65.0,714); + +INSERT INTO "Cartoon" VALUES ("1",'The Rise of the Blue Beetle!',"Ben Jones","Michael Jelenic","November14,2008","101",'700'); +INSERT INTO "Cartoon" VALUES ("2",'Terror on Dinosaur Island!',"Brandon Vietti","Steven Melching","November21,2008","102",'701'); +INSERT INTO "Cartoon" VALUES ("3",'Evil Under the Sea!',"Michael Chang","Joseph Kuhr","December5,2008","103",'703'); +INSERT INTO "Cartoon" VALUES ("4",'Day of the Dark Knight!',"Ben Jones","J. M. DeMatteis","January2,2009","104",'704'); +INSERT INTO "Cartoon" VALUES ("5",'Invasion of the Secret Santas!',"Brandon Vietti","Adam Beechen","December12,2008","105",'705'); +INSERT INTO "Cartoon" VALUES ("6",'Enter the Outsiders!',"Michael Chang","Todd Casey","January9,2009","106",'706'); +INSERT INTO "Cartoon" VALUES ("7",'Dawn of the Dead Man!',"Ben Jones","Steven Melching","January16,2009","107",'707'); +INSERT INTO "Cartoon" VALUES ("8",'Fall of the Blue Beetle!',"Brandon Vietti","James Krieg","January23,2009","108",'708'); +INSERT INTO "Cartoon" VALUES ("9",'Journey to the Center of the Bat!',"Michael Chang","Matt Wayne","January30,2009","109",'707'); +INSERT INTO "Cartoon" VALUES ("10",'The Eyes of Despero!',"Ben Jones","J. M. DeMatteis","February6,2009","110",'728'); +INSERT INTO "Cartoon" VALUES ("11",'Return of the Fearsome Fangs!',"Brandon Vietti","Todd Casey","February20,2009","111",'700'); +INSERT INTO "Cartoon" VALUES ("12",'Deep Cover for Batman!',"Michael Chang","Joseph Kuhr","February27,2009","112",'707'); + + + + + +COMMIT; diff --git a/database/tvshow/tvshow.sqlite b/database/tvshow/tvshow.sqlite new file mode 100644 index 0000000000000000000000000000000000000000..27f07498c46ef1b9dcd2676d62b92faec2ccbd34 Binary files /dev/null and b/database/tvshow/tvshow.sqlite differ diff --git a/database/twitter_1/queries/oracle-dialects.xml b/database/twitter_1/queries/oracle-dialects.xml new file mode 100644 index 0000000000000000000000000000000000000000..f853736f653795bc3076fb85b6f64a958cfafc0b --- /dev/null +++ b/database/twitter_1/queries/oracle-dialects.xml @@ -0,0 +1,36 @@ + + + + + + SELECT * FROM "tweets" WHERE id = ? + + + + + SELECT f2 FROM "follows" WHERE f1 = ? AND ROWNUM <= 20 + + + SELECT * FROM "tweets" WHERE uuid IN (??) + + + + + SELECT f2 FROM "followers" WHERE f1 = ? AND ROWNUM <= 20 + + + SELECT uuid, name FROM "user_profiles" WHERE uuid IN (??) + + + + + SELECT * FROM "tweets" WHERE uuid = ? AND ROWNUM <= 10 + + + + + INSERT INTO "added_tweets" VALUES (tweet_idseq.nextval, ?, ?, ?) + + + + diff --git a/database/twitter_1/queries/postgres-dialects.xml b/database/twitter_1/queries/postgres-dialects.xml new file mode 100644 index 0000000000000000000000000000000000000000..01754fb275edcbe639cd3d53e21c67650d6f7668 --- /dev/null +++ b/database/twitter_1/queries/postgres-dialects.xml @@ -0,0 +1,36 @@ + + + + + + SELECT * FROM "tweets" WHERE id = ? + + + + + SELECT f2 FROM "follows" WHERE f1 = ? LIMIT 20 + + + SELECT * FROM "tweets" WHERE uid IN (??) + + + + + SELECT f2 FROM "followers" WHERE f1 = ? LIMIT 20 + + + SELECT uid, name FROM "user_profiles" WHERE uid IN (??) + + + + + SELECT * FROM "tweets" WHERE uid = ? LIMIT 10 + + + + + INSERT INTO "added_tweets" VALUES (default, ?, ?, ?) + + + + diff --git a/database/twitter_1/queries/sqlserver-dialects.xml b/database/twitter_1/queries/sqlserver-dialects.xml new file mode 100644 index 0000000000000000000000000000000000000000..966e724f641a03d1ac5d7ddb1f6b6c0525f91882 --- /dev/null +++ b/database/twitter_1/queries/sqlserver-dialects.xml @@ -0,0 +1,31 @@ + + + + + + SELECT * FROM "tweets" WHERE id = ? + + + + + SELECT TOP 20 f2 FROM "follows" WHERE f1 = ? + + + SELECT * FROM "tweets" WHERE uid IN (??) + + + + + SELECT TOP 20 f2 FROM "followers" WHERE f1 = ? + + + SELECT uid, name FROM "user_profiles" WHERE uid IN (??) + + + + + SELECT TOP 10 * FROM "tweets" WHERE uid = ? + + + + diff --git a/database/twitter_1/twitter_1.sqlite b/database/twitter_1/twitter_1.sqlite new file mode 100644 index 0000000000000000000000000000000000000000..71dca2364ca8c0102c658a5ccf930a32984045fa Binary files /dev/null and b/database/twitter_1/twitter_1.sqlite differ diff --git a/database/university_basketball/schema.sql b/database/university_basketball/schema.sql new file mode 100644 index 0000000000000000000000000000000000000000..c913cb15508492bd01ebc7552e1202ab32ad0591 --- /dev/null +++ b/database/university_basketball/schema.sql @@ -0,0 +1,40 @@ +CREATE TABLE "basketball_match" ( +"Team_ID" int, +"School_ID" int, +"Team_Name" text, +"ACC_Regular_Season" text, +"ACC_Percent" text, +"ACC_Home" text, +"ACC_Road" text, +"All_Games" text, +"All_Games_Percent" int, +"All_Home" text, +"All_Road" text, +"All_Neutral" text, +PRIMARY KEY ("Team_ID"), +FOREIGN KEY (`School_ID`) REFERENCES `university`(`School_ID`) +); + +CREATE TABLE "university" ( +"School_ID" int, +"School" text, +"Location" text, +"Founded" real, +"Affiliation" text, +"Enrollment" real, +"Nickname" text, +"Primary_conference" text, +PRIMARY KEY ("School_ID") +); + +INSERT INTO "basketball_match" VALUES ("1","1","North Carolina","14–2",".875","6–2","8–0","35–2",".946","14–2","13–0","9–1"); +INSERT INTO "basketball_match" VALUES ("2","2","Duke","13–3",".813","7–1","6–2","28–6",".824","15–1","8–2","5–3"); +INSERT INTO "basketball_match" VALUES ("3","4","Clemson","10–6",".625","7–1","3–5","24–10",".706","14–2","6–5","4–3"); +INSERT INTO "basketball_match" VALUES ("4","5","Virginia Tech","9–7",".563","6–2","3–5","21–14",".600","14–3","4–8","3–3"); + + +INSERT INTO "university" VALUES ("1","University of Delaware","Newark, DE","1743","Public","19067","Fightin' Blue Hens","Colonial Athletic Association ( D-I )"); +INSERT INTO "university" VALUES ("2","Lebanon Valley College","Annville, PA","1866","Private/Methodist","2100","Flying Dutchmen","MAC Commonwealth Conference ( D-III )"); +INSERT INTO "university" VALUES ("3","University of Rhode Island","Kingston, RI","1892","Public","19095","Rams","Atlantic 10 Conference ( D-I )"); +INSERT INTO "university" VALUES ("4","Rutgers University","New Brunswick, NJ","1766","Public","56868","Scarlet Knights","American Athletic Conference ( D-I )"); +INSERT INTO "university" VALUES ("5","Stony Brook University","Stony Brook, NY","1957","Public","23997","Seawolves","America East Conference ( D-I )"); diff --git a/database/university_basketball/university_basketball.sqlite b/database/university_basketball/university_basketball.sqlite new file mode 100644 index 0000000000000000000000000000000000000000..c9c9cf0fed754919d1807a9ba90d12618be249e9 Binary files /dev/null and b/database/university_basketball/university_basketball.sqlite differ diff --git a/database/voter_1/voter_1.sqlite b/database/voter_1/voter_1.sqlite new file mode 100644 index 0000000000000000000000000000000000000000..0fe9731f6d979e6175271daf9b150b19c4f8a1c9 Binary files /dev/null and b/database/voter_1/voter_1.sqlite differ diff --git a/database/voter_2/schema.sql b/database/voter_2/schema.sql new file mode 100644 index 0000000000000000000000000000000000000000..26ae77536d867abc8f6e0a354acf0a279680f232 --- /dev/null +++ b/database/voter_2/schema.sql @@ -0,0 +1,75 @@ +create table Student ( + StuID INTEGER PRIMARY KEY, + LName VARCHAR(12), + Fname VARCHAR(12), + Age INTEGER, + Sex VARCHAR(1), + Major INTEGER, + Advisor INTEGER, + city_code VARCHAR(3) + ); + +create table Voting_record ( + StuID INTEGER, + Registration_Date VARCHAR(12), + Election_Cycle VARCHAR(12), + President_Vote INTEGER, + Vice_President_Vote INTEGER, + Secretary_Vote INTEGER, + Treasurer_Vote INTEGER, + Class_President_Vote INTEGER, + Class_Senator_Vote INTEGER, + FOREIGN KEY(StuID) REFERENCES Student(StuID), + FOREIGN KEY(President_Vote) REFERENCES Student(StuID), + FOREIGN KEY(Vice_President_Vote) REFERENCES Student(StuID), + FOREIGN KEY(Secretary_Vote) REFERENCES Student(StuID), + FOREIGN KEY(Treasurer_Vote) REFERENCES Student(StuID), + FOREIGN KEY(Class_President_Vote) REFERENCES Student(StuID), + FOREIGN KEY(Class_Senator_Vote) REFERENCES Student(StuID) +); + +insert into Student values ( 1001, 'Smith', 'Linda', 18, 'F', 600, 1121,'BAL'); + insert into Student values ( 1002, 'Kim', 'Tracy', 19, 'F', 600, 7712,'HKG'); + insert into Student values ( 1003, 'Jones', 'Shiela', 21, 'F', 600, 7792,'WAS'); + insert into Student values ( 1004, 'Kumar', 'Dinesh', 20, 'M', 600, 8423,'CHI'); + insert into Student values ( 1005, 'Gompers', 'Paul', 26, 'M', 600, 1121,'YYZ'); + insert into Student values ( 1006, 'Schultz', 'Andy', 18, 'M', 600, 1148,'BAL'); + insert into Student values ( 1007, 'Apap', 'Lisa', 18, 'F', 600, 8918,'PIT'); + insert into Student values ( 1008, 'Nelson', 'Jandy', 20, 'F', 600, 9172,'BAL'); + insert into Student values ( 1009, 'Tai', 'Eric', 19, 'M', 600, 2192,'YYZ'); + insert into Student values ( 1010, 'Lee', 'Derek', 17, 'M', 600, 2192,'HOU'); + insert into Student values ( 1011, 'Adams', 'David', 22, 'M', 600, 1148,'PHL'); + insert into Student values ( 1012, 'Davis', 'Steven', 20, 'M', 600, 7723,'PIT'); + insert into Student values ( 1014, 'Norris', 'Charles', 18, 'M', 600, 8741, 'DAL'); + insert into Student values ( 1015, 'Lee', 'Susan', 16, 'F', 600, 8721,'HKG'); + insert into Student values ( 1016, 'Schwartz', 'Mark', 17, 'M', 600, 2192,'DET'); + insert into Student values ( 1017, 'Wilson', 'Bruce', 27, 'M', 600, 1148,'LON'); + insert into Student values ( 1018, 'Leighton', 'Michael', 20, 'M', 600, 1121, 'PIT'); + insert into Student values ( 1019, 'Pang', 'Arthur', 18, 'M', 600, 2192,'WAS'); + insert into Student values ( 1020, 'Thornton', 'Ian', 22, 'M', 520, 7271,'NYC'); + insert into Student values ( 1021, 'Andreou', 'George', 19, 'M', 520, 8722, 'NYC'); + insert into Student values ( 1022, 'Woods', 'Michael', 17, 'M', 540, 8722,'PHL'); + insert into Student values ( 1023, 'Shieber', 'David', 20, 'M', 520, 8722,'NYC'); + insert into Student values ( 1024, 'Prater', 'Stacy', 18, 'F', 540, 7271,'BAL'); + insert into Student values ( 1025, 'Goldman', 'Mark', 18, 'M', 520, 7134,'PIT'); + insert into Student values ( 1026, 'Pang', 'Eric', 19, 'M', 520, 7134,'HKG'); + insert into Student values ( 1027, 'Brody', 'Paul', 18, 'M', 520, 8723,'LOS'); + insert into Student values ( 1028, 'Rugh', 'Eric', 20, 'M', 550, 2311,'ROC'); + insert into Student values ( 1029, 'Han', 'Jun', 17, 'M', 100, 2311,'PEK'); + insert into Student values ( 1030, 'Cheng', 'Lisa', 21, 'F', 550, 2311,'SFO'); + insert into Student values ( 1031, 'Smith', 'Sarah', 20, 'F', 550, 8772,'PHL'); + insert into Student values ( 1032, 'Brown', 'Eric', 20, 'M', 550, 8772,'ATL'); + insert into Student values ( 1033, 'Simms', 'William', 18, 'M', 550, 8772,'NAR'); + insert into Student values ( 1034, 'Epp', 'Eric', 18, 'M', 050, 5718,'BOS'); + insert into Student values ( 1035, 'Schmidt', 'Sarah', 26, 'F', 050, 5718,'WAS'); + +insert into Voting_record values (1001, "08/30/2015", "Spring", 1004, 1007, 1010, 1035, 1001, 1028); +insert into Voting_record values (1002, "08/30/2014", "Spring", 1014, 1007, 1020, 1025, 1021, 1028); +insert into Voting_record values (1003, "08/30/2013", "Spring", 1004, 1017, 1030, 1035, 1031, 1028); +insert into Voting_record values (1004, "08/30/2013", "Spring", 1024, 1017, 1020, 1035, 1011, 1028); +insert into Voting_record values (1005, "08/30/2012", "Spring", 1024, 1017, 1010, 1035, 1021, 1028); +insert into Voting_record values (1001, "08/30/2015", "Fall", 1004, 1007, 1010, 1035, 1021, 1028); +insert into Voting_record values (1002, "08/30/2014", "Fall", 1004, 1007, 1020, 1035, 1021, 1028); +insert into Voting_record values (1003, "08/30/2013", "Fall", 1004, 1017, 1020, 1035, 1031, 1028); +insert into Voting_record values (1004, "08/30/2013", "Fall", 1024, 1017, 1020, 1035, 1011, 1018); +insert into Voting_record values (1005, "08/30/2012", "Fall", 1024, 1017, 1010, 1035, 1021, 1028); diff --git a/database/voter_2/voter_2.sqlite b/database/voter_2/voter_2.sqlite new file mode 100644 index 0000000000000000000000000000000000000000..ce798de9b7847372638ae5817ac10d39f7428683 Binary files /dev/null and b/database/voter_2/voter_2.sqlite differ diff --git a/database/wedding/schema.sql b/database/wedding/schema.sql new file mode 100644 index 0000000000000000000000000000000000000000..8ed844bb07c0d1ce0f38c57fd291beb943db11f0 --- /dev/null +++ b/database/wedding/schema.sql @@ -0,0 +1,65 @@ + +PRAGMA foreign_keys = ON; + +CREATE TABLE "people" ( +"People_ID" int, +"Name" text, +"Country" text, +"Is_Male" text, +"Age" int, +PRIMARY KEY ("People_ID") +); + + + +INSERT INTO "people" VALUES ("1","Mike Weir","Canada","T",34); +INSERT INTO "people" VALUES ("2","Juli Hanson","Sweden","F",32); +INSERT INTO "people" VALUES ("3","Ricky Barnes","United States","T",30); +INSERT INTO "people" VALUES ("4","Summer Duval","United States","F",30); +INSERT INTO "people" VALUES ("5","Todd Hamilton","United States","T",27); +INSERT INTO "people" VALUES ("6","Annie Mediate","United States","F",26); +INSERT INTO "people" VALUES ("7","Lucas Glover","United States","T",31); +INSERT INTO "people" VALUES ("8","Joe O'Hair","United States","F",31); +INSERT INTO "people" VALUES ("9","Graeme McDowell","Northern Ireland","T",34); +INSERT INTO "people" VALUES ("10","Jamie Mickelson","United States","F",36); +INSERT INTO "people" VALUES ("11","Adam Scott","Australia","T",26); +INSERT INTO "people" VALUES ("12","Danny Toms","United States","F",25); + + +CREATE TABLE "church" ( +"Church_ID" int, +"Name" text, +"Organized_by" text, +"Open_Date" int, +"Continuation_of" text, +PRIMARY KEY ("Church_ID") +); + + +INSERT INTO "church" VALUES (1,"Pure Church of Christ","Wycam Clark","1831","Church of Christ"); +INSERT INTO "church" VALUES (2,"Independent Church","– Hoton","1832","Church of Christ"); +INSERT INTO "church" VALUES (3,"Church of Christ","Ezra Booth","1836","Church of the Latter Day Saints"); +INSERT INTO "church" VALUES (4,"Church of Christ (Parrishite)","Warren Parrish","1837","Church of the Latter Day Saints"); +INSERT INTO "church" VALUES (5,"Alston Church","Isaac Russell","1839","Church of Jesus Christ of Latter Day Saints"); +INSERT INTO "church" VALUES (6,"Church of Christ","William Chubby","1830","Church of Jesus Christ of Latter Day Saints"); +INSERT INTO "church" VALUES (7,"Church of Jesus Christ, the Bride, the Lamb's Wife","George M. Hinkle","1840","Church of Jesus Christ of Latter Day Saints"); +INSERT INTO "church" VALUES (8,"Church of Christ","Hiram Page","1842","Church of Jesus Christ of Latter Day Saints"); +INSERT INTO "church" VALUES (9,"True Church of Jesus Christ of Latter Day Saints","William Law","1844","Church of Jesus Christ of Latter Day Saints"); + + +CREATE TABLE "wedding" ( +"Church_ID" int, +"Male_ID" int, +"Female_ID" int, +"Year" int, +PRIMARY KEY ("Church_ID","Male_ID","Female_ID"), +FOREIGN KEY ("Church_ID") REFERENCES `church`("Church_ID"), +FOREIGN KEY ("Male_ID") REFERENCES `people`("People_ID"), +FOREIGN KEY ("Female_ID") REFERENCES `people`("People_ID") +); + +INSERT INTO "wedding" VALUES (1,1,2,"2014"); +INSERT INTO "wedding" VALUES (3,3,4,"2015"); +INSERT INTO "wedding" VALUES (5,5,6,"2016"); +INSERT INTO "wedding" VALUES (4,7,8,"2016"); + diff --git a/database/wedding/wedding.sqlite b/database/wedding/wedding.sqlite new file mode 100644 index 0000000000000000000000000000000000000000..969486b47ed635e2607e1f51dffd083735019b43 Binary files /dev/null and b/database/wedding/wedding.sqlite differ diff --git a/database/wine_1/annotation.json b/database/wine_1/annotation.json new file mode 100644 index 0000000000000000000000000000000000000000..cfa2d50ef3ced596bd8d514450aa3d62d11cad9d --- /dev/null +++ b/database/wine_1/annotation.json @@ -0,0 +1,58 @@ +{ + "label_id": null, + "data": [ + { + "nl": "List all AVAs located in Monterey county. Output just the names of the AVA appellations\n", + "id": 0 + }, + { + "nl": "List all white grape varieties for which at least one wine of the 2008 vintage is rated at 90 points or above in the database.\n", + "id": 1 + }, + { + "nl": "List all Sonoma county appellations for which the database contains at least one rating for a \u2019Grenache\u2019. For each appellation list its name and county.\n", + "id": 2 + }, + { + "nl": "List all vintage years in which at least one Zinfandel from Sonoma County (any appellation) scored above 92.\n", + "id": 3 + }, + { + "nl": "A case of wine is 12 bottles. For each Carlisle (name of the winery) Syrah compute the total revenue assuming that all the wine sold at the specified price.\n", + "id": 4 + }, + { + "nl": "Find the total revenue from all red wines made by Kosta Browne.\n", + "id": 5 + }, + { + "nl": "Find the average number of cases of a Pinor Noir produced from grapes sourced from the Central Coast.\n", + "id": 6 + }, + { + "nl": "For each year, report the total number of red Sonoma County wines whose scores are 90 or above.\n", + "id": 7 + }, + { + "nl": "Find the most popular red grape (i.e., the grape that is used to make the largest number of white wines) in San Luis Obispo County.\n", + "id": 8 + }, + { + "nl": "Report the grape with the largest number of high-ranked wines (wines ranked 93 or higher).\n", + "id": 9 + }, + { + "nl": "Report the appellation responsible for the largest number of high-ranked wines (score of 93 and above). Report just the name of the appellation.\n", + "id": 10 + }, + { + "nl": "Find if there are any 2008 Zinfandels that scored better than all 2007 Grenaches. Report winery, wine name, score and price.\n", + "id": 11 + }, + { + "nl": "Find how many cases were produced of the most expensive red wine from Napa county.\n", + "id": 12 + } + ], + "review_id": null +} \ No newline at end of file diff --git a/database/wine_1/data_csv/README.WINE.txt b/database/wine_1/data_csv/README.WINE.txt new file mode 100644 index 0000000000000000000000000000000000000000..9d909d2b5da05ac3bc77f6a5db59998b82c5dcf3 --- /dev/null +++ b/database/wine_1/data_csv/README.WINE.txt @@ -0,0 +1,110 @@ +***************************************************** +CPE 365 Alex Dekhtyar +Cal Poly Computer Science Department +San Luis Obispo College of Engineering +California dekhtyar@csc.calpoly.edu +***************************************************** + WINE DATASET + Version 1.0 + March 27, 2011 +************************************************************ +Sources: This dataset contains wine ratings from a + collection of 2007-2011 Wine Spectator magazines + +************************************************************ + +This file describes the contents of the WINE dataset +developed for the CPE 365, Introduction to Databases, +course at Cal Poly. + +The dataset contains information about the ratings of a variety of +wines produced in California. The ratings were published +in a number of issues of the Wine Spectator magazine. Version 1.0 +of the dataset includes only the wines produced out of a single grape +and only the wines produced in the state of California. + + +General Conventions. + + 1. All files in the dataset are CSV (comma-separated values) files. + 2. First line of each file provides the names of + columns. Second line may be empty, or may contain + the first row of the data. + 3. All string values are enclosed in single quotes (') + + + The dataset consists of the following files: + + - appelations.csv : list of appelations/American Viticultural Areas (AVAs) + - grapes.csv : list of grape varieties + - wine.csv : list of wines and their ratings + + + Individual files have the following formats. + +************************************************************************** + +appelations.csv + + No : line number in the CSV file + Appelation: name of the appelation/AVA/grape-growing region + County: county (if applicable) in which the area is located + State: state in which the area is located + Area: general geographic area in which the grape-growing region is located + isAVA: a flag specifying whether the region is recognized as an American + Viticultural Area (AVA) by federal regulations. + +Notes: "Appelation" is a general term for geographic grape origins in a wine. + Grape origins are always listed on wine labels. + In the US, appropriate origins are either AVAs (American Viticultural Areas) + or counties, in which the grapes were grown. Most AVAs respect geographical + boundaries (state, county, so on), but some - do not. + In the dataset, some AVAs shown as located in a single county are actually + located in multiple counties (we chose the "main" county of location). + This is done to simplify the dataset. Other AVAs transcend county borders + in ways that make county attribution meaningless. The value 'N/a' is used + in such cases. General geographic areas, as they are currently used + are subregions of a single state. + +************************************************************************** + +grapes.csv + + ID: unique identifier of a grape (line number in the CSV file) + Grape: name of the grape varietal + Color: color of the grape (a.k.a, color of the wine when made solely of + this grape) + +************************************************************************** + +wine.csv + + No.: unique identifier of the wine (line number in the CSV file) + Grape: grape varietal from which the wine is made (see grapes.Grape) + Winery: maker of the wine (usually a winery name) +Appelation: origin of the grapes (see applations.Appelation) + State: state of the grapes' origin (same as appelations.State) + Name: name of the wine + Year: year of the wine vintage + Price: price of one bottle of wine in (whole) US dollars + Score: Wine Spectator magazine rating of the wine on the 100 point scale + Cases: number of cases of the wine produced by its maker + Drink: drinking advice + +Notes: only wines produced from a single grape are included in the dataset (no blends). +All wines in the dataset are from California. Drinking advice is simplified. Either +the field contains the value 'now' which means that wine can be enjoyed to its fullest +potential at the moment it was rated by the Wine Spectator magazine, or +it contains a year in which the wine is predicted to reach its full potential. +Wine name is either a special name given to the wine by its makers and found on +the label, or is the name of the grape varietal. + +************************************************************************** +************************************************************************** + +Permission granted to use and distribute this dataset in its current form, +provided this file is kept unchanged and is distributed together with the +data. + +************************************************************************** +************************************************************************** diff --git a/database/wine_1/data_csv/appellations.csv b/database/wine_1/data_csv/appellations.csv new file mode 100644 index 0000000000000000000000000000000000000000..7e6c33d92b7c8233903f29ad886f83bacad5f11e --- /dev/null +++ b/database/wine_1/data_csv/appellations.csv @@ -0,0 +1,58 @@ +No,Appelation,County,State,Area,isAVA +1,'Alexander Valley','Sonoma','California','North Coast','Yes' +2,'Amador County','Amador','California','Sierra Foothills','No' +3,'Amador-Mendocino-Sonoma Counties','N/A','California','N/A','No' +4,'Anderson Valley','Mendocino','California','North Coast','Yes' +5,'Arroyo Grande Valley','San Luis Obispo','California','Central Coast','Yes' +6,'Atlas Peak','Napa','California','North Coast','Yes' +7,'Bennett Valley','Sonoma','California','North Coast','Yes' +8,'Calaveras County','Calaveras','California','Sierra Foothills','No' +9,'California','N/A','California','California','No' +10,'Carneros','Napa','California','North Coast','Yes' +11,'Central Coast','N/A','California','Central Coast','Yes' +12,'Chalk Hill','Sonoma','California','North Coast','Yes' +13,'Chalone','Monterey','California','Central Coast','Yes' +14,'Contra Costa County','Contra Costa','California','Santa Cruz Mountains','No' +15,'Dry Creek Valley','Sonoma','California','North Coast','Yes' +16,'Edna Valley','San Luis Obispo','California','Central Coast','Yes' +17,'Fiddletown','Amador','California','Sierra Foothills','Yes' +18,'Green Valley of Russian River Valley','Sonoma','California','North Coast','Yes' +19,'Guenoc Valley','Lake','California','North Coast','Yes' +20,'Happy Canyon of Santa Barbara','Santa Barbara','California','Central Coast','Yes' +21,'Howell Mountain','Napa','California','North Coast','Yes' +22,'Knights Valley','Sonoma','California','North Coast','Yes' +23,'Lake County','Lake','California','North Coast','No' +24,'Livermore Valley','Alameda','California','Santa Cruz Mountains','Yes' +25,'Lodi','San Joaquin','California','Central Valley','Yes' +26,'Mendocino County','Mendocino','California','North Coast','No' +27,'Monterey County','Monterey','California','Central Coast','No' +28,'Mount Harlan','San Benito','California','Central Coast','Yes' +29,'Mount Vedeer','Napa','California','North Coast','Yes' +30,'Napa Valley','Napa','California','North Coast','Yes' +31,'Napa-Sonoma counties','N/A','California','North Coast','No' +32,'North Coast','N/A','California','North Coast','Yes' +33,'Oakville','Napa','California','North Coast','Yes' +34,'Paso Robles','San Luis Obispo','California','Central Coast','Yes' +35,'Red Hills Lake County','Lake','California','North Coast','Yes' +36,'Rockpile','Sonoma','California','North Coast','Yes' +37,'Russian River Valley','Sonoma','California','North Coast','Yes' +38,'Rutherford','Napa','California','North Coast','Yes' +39,'San Luis Obispo County','San Luis Obispo','California','Central Coast','No' +40,'Santa Barbara County','Santa Barbara','California','Central Coast','No' +41,'Santa Cruz Mountains','N/A','California','Santa Cruz Mountains','Yes' +42,'Santa Lucia Highlands','Monterey','California','Central Coast','Yes' +43,'Santa Maria Valley','Santa Barbara','California','Central Coast','Yes' +44,'Santa Ynez Valley','Santa Barbara','California','Central Coast','Yes' +45,'Shenandoah Valley','Amador','California','Sierra Foothills','Yes' +46,'Sierra Foothills','N/A','California','Sierra Foothills','Yes' +47,'Solano County','Solano','California','North Coast','No' +48,'Sonoma Coast','Sonoma','California','North Coast','Yes' +49,'Sonoma County','Sonoma','California','North Coast','No' +50,'Sonoma Valley','Sonoma','California','North Coast','Yes' +51,'Sonoma-Lake Counties','N/A','California','North Coast','Yes' +52,'Spring Mountain District','Napa','California','North Coast','Yes' +53,'St. Helena','Napa','California','North Coast','Yes' +54,'Sta. Rita Hills','Santa Barbara','California','Central Coast','Yes' +55,'Stags Leap District','Napa','California','North Coast','Yes' +56,'Yolo County','Yolo','California','Central Valley','No' +57,'Yountville','Napa','California','North Coast','Yes' diff --git a/database/wine_1/data_csv/grapes.csv b/database/wine_1/data_csv/grapes.csv new file mode 100644 index 0000000000000000000000000000000000000000..b21042dfcd119b4ab7666d2e55a40a52ad68c132 --- /dev/null +++ b/database/wine_1/data_csv/grapes.csv @@ -0,0 +1,21 @@ +ID,Grape,Color +1,'Barbera','Red' +2,'Cabernet Franc','Red' +3,'Cabernet Sauvingnon','Red' +4,'Chardonnay','White' +5,'Grenache','Red' +6,'Malbec','Red' +7,'Marsanne','White' +8,'Merlot','Red' +9,'Mourvedre','Red' +10,'Muscat','White' +11,'Petite Sirah','Red' +12,'Pinot Noir','Red' +13,'Riesling','White' +14,'Roussanne','White' +15,'Sangiovese','Red' +16,'Sauvignon Blanc','White' +17,'Syrah','Red' +18,'Tempranillo','Red' +19,'Viognier','White' +20,'Zinfandel','Red' diff --git a/database/wine_1/data_csv/wine.csv b/database/wine_1/data_csv/wine.csv new file mode 100644 index 0000000000000000000000000000000000000000..ca7a014ee783e9756f531c5b6506e141fd544b7f --- /dev/null +++ b/database/wine_1/data_csv/wine.csv @@ -0,0 +1,501 @@ +No,Grape,Winery,Appelation,State,Name,Year,Price,Score,Cases,Drink +1,'Zinfandel','Robert Biale','St. Helena','California','Old Kraft Vineyard',2008,44,93,275,'now' +2,'Zinfandel','Chiarello Family','Napa Valley','California','Giana',2008,35,93,480,'now' +3,'Zinfandel','Robert Biale','Napa Valley','California','Black Chicken',2008,40,91,2700,2012 +4,'Zinfandel','Robert Biale','Napa Valley','California','Napa Ranches',2008,38,89,525,'now' +5,'Zinfandel','Robert Biale','St. Helena','California','Varozza Vineyard',2008,44,88,275,2012 +6,'Zinfandel','Pedroncelli','Dry Creek Valley','California','Mother Clone',2008,15,88,6000,'now' +7,'Zinfandel','Rutherford Ranch','Napa Valley','California','Zinfandel',2007,18,87,1552,'now' +8,'Sauvignon Blanc','Altamura','Napa Valley','California','Sauvignon Blanc',2007,48,92,500,'now' +9,'Sauvignon Blanc','Capture','Sonoma County','California','Les Pionniers',2009,36,92,360,'now' +10,'Sauvignon Blanc','Brander','Santa Ynez Valley','California','Cuvee Nicolas',2009,25,91,377,'now' +11,'Sauvignon Blanc','Capture','California','California','Tradition',2009,30,91,875,'now' +12,'Sauvignon Blanc','John Anthony','Carneros','California','Church Vineyard',2009,28,91,354,'now' +13,'Sauvignon Blanc','Peter Michael','Knights Valley','California','L''Apres-Midi',2008,48,91,1260,'now' +14,'Sauvignon Blanc','Grey Stack','Bennett Valley','California','Rosemary''s Block Dry Stack Vineyard',2009,28,90,700,'now' +15,'Sauvignon Blanc','Round Pond Estate','Rutherford','California','Sauvignon Blanc',2009,26,90,714,'now' +16,'Sauvignon Blanc','Beckmen','Santa Ynez Valley','California','Sauvignon Blanc',2009,16,89,1500,'now' +17,'Sauvignon Blanc','Beltane Ranch','Sonoma Valley','California','Sauvignon Blanc',2009,23,89,413,'now' +18,'Sauvignon Blanc','Brander','Santa Ynez Valley','California','Mesa Verde Vineyard',2009,22,89,380,'now' +19,'Sauvignon Blanc','Cade','Napa Valley','California','Sauvignon Blanc',2008,26,89,5200,'now' +20,'Sauvignon Blanc','Jericho Canyon','Napa Valley','California','Sauvignon Blanc',2009,25,89,370,'now' +21,'Sauvignon Blanc','John Anthony','Napa Valley','California','Sauvignon Blanc',2009,19,89,3098,'now' +22,'Sauvignon Blanc','Kenzo','Napa Valley','California','Asatsuyu',2008,60,89,600,'now' +23,'Sauvignon Blanc','Madrigal','Napa Valley','California','Estate',2009,25,89,200,'now' +24,'Sauvignon Blanc','Joseph Phelps','St. Helena','California','Sauvignon Blanc',2008,32,89,2000,'now' +25,'Sauvignon Blanc','Sbragia Family','Dry Creek Valley','California','Home Ranch',2009,20,89,1698,'now' +26,'Sauvignon Blanc','Selene','Carneros','California','Hyde Vineyards',2009,27,89,750,'now' +27,'Sauvignon Blanc','Brander','Santa Ynez Valley','California','Purisma Mountain',2009,25,88,260,'now' +28,'Sauvignon Blanc','Cimarone','Happy Canyon of Santa Barbara','California','3CV Grassini Family Vineyards',2009,21,88,270,'now' +29,'Sauvignon Blanc','Sbragia Family','Dry Creek Valley','California','Schmidt Ranch',2009,24,88,602,'now' +30,'Sauvignon Blanc','Azur','Rutherford','California','Sauvignon Blanc',2009,24,87,1000,'now' +31,'Sauvignon Blanc','Brander','Santa Ynez Valley','California','Cuvee Natalie',2009,18,87,857,'now' +32,'Sauvignon Blanc','Brander','Santa Ynez Valley','California','au Naturel',2009,32,87,759,'now' +33,'Sauvignon Blanc','Handley','Dry Creek Valley','California','Handley Vineyard',2008,15,87,1214,'now' +34,'Sauvignon Blanc','Imagery','Sonoma Valley','California','Wow Oui',2009,27,87,874,'now' +35,'Sauvignon Blanc','Koehler','Santa Ynez Valley','California','Sauvignon Blanc',2008,12,87,505,'now' +36,'Sauvignon Blanc','Pomelo','California','California','Sauvignon Blanc',2009,10,87,50000,'now' +37,'Sauvignon Blanc','Twomey','Napa Valley','California','Sauvignon Blanc',2009,25,87,3326,'now' +38,'Sauvignon Blanc','White Oak','Russian River Valley','California','Sauvignon Blanc',2008,16,87,2000,'now' +39,'Sauvignon Blanc','Benziger','Sonoma-Lake Counties','California','Sauvignon Blanc',2009,15,86,20000,'now' +40,'Sauvignon Blanc','Kunde Estate','Sonoma Valley','California','Magnolia Lane',2009,16,86,15000,'now' +41,'Sauvignon Blanc','J. Lohr','Napa Valley','California','Carol''s Vineyard',2009,24,86,2900,'now' +42,'Sauvignon Blanc','Pedroncelli','Dry Creek Valley','California','East Side Vineyards',2009,12,86,5100,'now' +43,'Sauvignon Blanc','Star Lane','Santa Ynez Valley','California','Sauvignon Blanc',2008,20,86,2800,'now' +44,'Sauvignon Blanc','Angeline','Russian River Valley','California','Sauvignon Blanc',2009,14,85,8500,'now' +45,'Sauvignon Blanc','Manifesto!','North Coast','California','Sauvignon Blanc',2008,12,85,8100,'now' +46,'Sauvignon Blanc','Mirassou','California','California','Sauvignon Blanc',2008,12,85,42000,'now' +47,'Sauvignon Blanc','No','Lake County','California','Sauvignon Blanc',2008,12,85,4210,'now' +48,'Cabernet Sauvingnon','Chappellet','Napa Valley','California','Pritchard Hill',2007,135,96,3368,'now' +49,'Cabernet Sauvingnon','Lewis','Napa Valley','California','Reserve',2007,130,95,1700,'now' +50,'Cabernet Sauvingnon','Neyers','Napa Valley','California','Neyers Ranch - Conn Valley',2007,48,95,575,'now' +51,'Cabernet Sauvingnon','Ramey','Napa Valley','California','Annum',2007,85,95,1700,'now' +52,'Cabernet Sauvingnon','Round Pond Estate','Rutherford','California','Cabernet Sauvignon',2007,50,94,4018,'now' +53,'Cabernet Sauvingnon','Carter','Napa Valley','California','Beckstoffer To Kalon Vineyard',2007,125,92,190,'now' +54,'Cabernet Sauvingnon','Carter','Napa Valley','California','Coliseum Block',2007,125,92,277,'now' +55,'Cabernet Sauvingnon','Ehlers Estate','St. Helena','California','1886',2007,95,92,800,'now' +56,'Cabernet Sauvingnon','Fontanella Family','Mount Vedeer','California','Cabernet Sauvignon',2007,50,92,650,2010 +57,'Cabernet Sauvingnon','Janzen','Napa Valley','California','Beckstoffer To Kalon Vineyard',2007,135,92,235,'now' +58,'Cabernet Sauvingnon','Morlet','Napa Valley','California','Couer de Valee',2007,175,92,250,'now' +59,'Cabernet Sauvingnon','Penche','Napa Valley','California','Cabernet Sauvignon',2006,60,92,354,'now' +60,'Pinot Noir','Kosta Browne','Russian River Valley','California','Amber Ridge Vineyard',2008,72,95,600,'now' +61,'Pinot Noir','Kosta Browne','Russian River Valley','California','Keefer Ranch',2008,72,95,613,'now' +62,'Pinot Noir','Kosta Browne','Russian River Valley','California','Koplen Vineyard',2008,72,95,792,'now' +63,'Pinot Noir','Patz & Hall','Russian River Valley','California','Freestone Hill',2007,70,95,245,'now' +64,'Pinot Noir','Foxen','Santa Maria Valley','California','Julia''s Vineyard',2008,56,94,670,'now' +65,'Pinot Noir','Paul Hobbs','Napa Valley','California','Carneros Hyde Vineyard',2008,75,94,741,'now' +66,'Pinot Noir','Kosta Browne','Russian River Valley','California','Pinot Noir',2008,52,94,3632,'now' +67,'Pinot Noir','Kosta Browne','Santa Lucia Highlands','California','Garys'' Vineyard',2008,72,94,422,'now' +68,'Pinot Noir','Kosta Browne','Sonoma Coast','California','Kanzler Vineyard',2008,72,94,564,'now' +69,'Pinot Noir','Lynmar','Russian River Valley','California','Five Sisters',2007,100,94,147,'now' +70,'Pinot Noir','Kosta Browne','Santa Lucia Highlands','California','Pisoni Vineyard',2008,72,93,115,'now' +71,'Pinot Noir','Kosta Browne','Santa Lucia Highlands','California','Rosella''s Vineyard',2008,72,93,255,'now' +72,'Pinot Noir','Landmark','Sonoma Coast','California','Kanzler Vineyard',2008,65,93,200,'now' +73,'Pinot Noir','Lynmar','Russian River Valley','California','Valley Bliss Block',2008,70,93,152,'now' +74,'Pinot Noir','Patz & Hall','Sonoma Coast','California','Pinot Noir',2008,42,93,3103,'now' +75,'Pinot Noir','Valdez Family','Russian River Valley','California','Lancel Creek Vineyard',2007,55,93,130,'now' +76,'Pinot Noir','De Loach','Green Valley of Russian River Valley','California','Pinot Noir',2008,45,92,1467,'now' +77,'Pinot Noir','Kosta Browne','California','California','4-Barrel',2008,72,92,97,'now' +78,'Pinot Noir','Kosta Browne','Sonoma Coast','California','Gap''s Crown Vineyard',2008,68,92,690,'now' +79,'Pinot Noir','Kosta Browne','Sonoma Coast','California','Pinot Noir',2008,52,90,3554,'now' +80,'Pinot Noir','Rusack','Sta. Rita Hills','California','Reserve',2008,40,89,340,'now' +81,'Pinot Noir','Acacia','California','California','A by Acacia',2008,17,88,58231,'now' +82,'Pinot Noir','Alma Rosa','Sta. Rita Hills','California','La Encantada Vineyard',2008,43,88,591,'now' +83,'Pinot Noir','Alma Rosa','Sta. Rita Hills','California','La Encantada Vineyard Clone 667',2008,43,88,358,'now' +84,'Pinot Noir','Artesa','Carneros','California','Estate Reserve',2007,40,88,3527,'now' +85,'Pinot Noir','Robert Mondavi','Napa Valley','California','Carneros',2008,28,88,30300,'now' +86,'Pinot Noir','Pfendler','Sonoma Coast','California','Pinot Noir',2008,45,88,400,'now' +87,'Pinot Noir','Roar','Santa Lucia Highlands','California','Garys'' Vineyard',2008,50,88,710,'now' +88,'Pinot Noir','Rusack','Santa Maria Valley','California','Pinot Noir',2008,36,88,833,'now' +89,'Pinot Noir','Sequana','Santa Lucia Highlands','California','Sarmento Vineyard',2008,32,88,500,'now' +90,'Pinot Noir','Spell','Sonoma Coast','California','Pinot Noir',2008,30,88,170,'now' +91,'Pinot Noir','Twomey','Santa Barbara County','California','Pinot Noir',2008,30,88,1510,'now' +92,'Pinot Noir','Alma Rosa','Sta. Rita Hills','California','Pinot Noir',2008,32,87,4651,'now' +93,'Pinot Noir','Castle Rock','Central Coast','California','Pinot Noir',2008,13,87,36000,'now' +94,'Pinot Noir','V. Sattui','Carneros','California','Henry Ranch',2008,36,87,951,'now' +95,'Pinot Noir','Sebastiani','Carneros','California','Pinot Noir',2008,24,87,720,'now' +96,'Pinot Noir','Talbott','Santa Lucia Highlands','California','Kali Hart',2008,21,87,8000,'now' +97,'Pinot Noir','Tudor','Santa Lucia Highlands','California','Pinot Noir',2007,40,87,3965,'now' +98,'Pinot Noir','Twomey','Sonoma Coast','California','Pinot Noir',2008,50,87,1255,'now' +99,'Pinot Noir','Castle Rock','Russian River Valley','California','Pinot Noir',2008,18,86,2400,'now' +100,'Pinot Noir','Talbott','Santa Lucia Highlands','California','Sleepy Hollow Vineyard',2008,40,86,2500,'now' +101,'Pinot Noir','Greg Norman California Estates','Santa Barbara County','California','Pinot Noir',2008,15,85,25000,'now' +102,'Syrah','Chalk Hill','Chalk Hill','California','Syrah',2007,60,94,304,2001 +103,'Syrah','DuMOL','Russian River Valley','California','Eddie''s Patch',2007,76,92,420,2011 +104,'Merlot','Mirassou','California','California','Merlot',2007,12,86,43321,'now' +105,'Malbec','Red Rock','California','California','Reserve',2008,11,86,16281,'now' +106,'Cabernet Sauvingnon','Darioush','Napa Valley','California','Darius II',2007,225,96,698,2012 +107,'Cabernet Sauvingnon','Darioush','Napa Valley','California','Cabernet Sauvignon',2007,80,94,8783,2013 +108,'Cabernet Sauvingnon','Lewis','Napa Valley','California','Hillstone Vineyard',2008,130,94,180,'now' +109,'Cabernet Sauvingnon','Chimeney Rock','Stags Leap District','California','Tomahawk Vineyard',2007,115,93,958,2012 +110,'Cabernet Sauvingnon','Chimeney Rock','Stags Leap District','California','Elevage',2007,78,93,1952,2012 +111,'Cabernet Sauvingnon','Peter Franus','Napa Valley','California','Cabernet Sauvignon',2007,40,92,1369,2013 +112,'Cabernet Sauvingnon','Turnbull','Napa Valley','California','Cabernet Sauvignon',2007,40,91,10000,'now' +113,'Cabernet Sauvingnon','Pott','Oakville','California','Neruda Brix Vineyard',2008,90,90,73,2012 +114,'Cabernet Sauvingnon','Beringer','Knights Valley','California','Cabernet Sauvignon',2008,27,88,44500,'now' +115,'Cabernet Sauvingnon','Dry Creek','Dry Creek Valley','California','Cabernet Sauvignon',2007,25,87,15000,'now' +116,'Grenache','Sine Qua Non','Sta. Rita Hills','California','In the Crosshairs Eleven Confessions Vineyard',2006,200,97,202,'now' +117,'Grenache','Herman Story','California','California','On the Road',2008,36,93,398,'now' +118,'Grenache','Villa Creek','Paso Robles','California','Garnacha Denner Vineyard',2008,35,91,350,'now' +119,'Grenache','Beckmen','Santa Ynez Valley','California','Purisma Mountain Vineyard',2008,48,88,500,'now' +120,'Grenache','Bella Victorian','Santa Barbara County','California','Romeo',2006,39,87,300,'now' +121,'Grenache','Austine Hope','Paso Robles','California','Hope Family Vineyard',2009,42,87,566,'now' +122,'Grenache','Jemrose','Bennett Valley','California','Foggy Knoll Vineyard',2008,38,87,275,'now' +123,'Petite Sirah','Alta Colina','Paso Robles','California','Ann''s Block',2008,48,91,123,'now' +124,'Petite Sirah','Erna Schein','Sonoma County','California','Kick Ranch',2008,48,91,312,'now' +125,'Petite Sirah','Jaffurs','Santa Barbara County','California','Thompson Vineyard',2009,34,90,501,'now' +126,'Petite Sirah','Turley','Napa Valley','California','Hayne Vineyard',2008,75,90,350,'now' +127,'Petite Sirah','JC Cellars','Russian River Valley','California','Sweetwater Springs Vineyard',2008,35,89,340,'now' +128,'Petite Sirah','Parducci','Mendocino County','California','Petite Sirah',2007,11,85,15340,'now' +129,'Pinot Noir','A.P.Vin','Santa Lucia Highlands','California','Rosella''s Vineyard',2009,48,95,325,'now' +130,'Pinot Noir','Siduri','Santa Lucia Highlands','California','Pisoni Vineyard',2009,54,95,364,'now' +131,'Pinot Noir','A.P.Vin','Sonoma Coast','California','Kanzler Vineyard',2009,48,94,200,'now' +132,'Pinot Noir','Loring','Paso Robles','California','Russel Family Vineyard',2009,45,94,250,'now' +133,'Pinot Noir','Loring','Sonoma Coast','California','Durell Vineyard',2009,45,94,200,'now' +134,'Pinot Noir','Siduri','Santa Lucia Highlands','California','Garys'' Vineyard',2009,51,94,298,'now' +135,'Pinot Noir','A.P.Vin','Santa Lucia Highlands','California','Garys'' Vineyard',2009,48,93,300,'now' +136,'Pinot Noir','A.P.Vin','Santa Maria Valley','California','Rancho Oliveros Vineyard',2009,48,93,50,'now' +137,'Pinot Noir','Loring','Green Valley of Russian River Valley','California','Graham Family Vineyard',2009,45,93,150,'now' +138,'Pinot Noir','Loring','Russian River Valley','California','Pinot Noir',2009,29,93,600,'now' +139,'Pinot Noir','Loring','Santa Lucia Highlands','California','Pinot Noir',2009,29,93,600,'now' +140,'Pinot Noir','Loring','Santa Lucia Highlands','California','Garys'' Vineyard',2009,45,93,450,'now' +141,'Pinot Noir','Loring','Sta. Rita Hills','California','Clos Pepe Vineyard',2009,45,93,1000,2011 +142,'Pinot Noir','A.P.Vin','Russian River Valley','California','Keefer Ranch Vineyard',2009,48,92,200,'now' +143,'Pinot Noir','Loring','Green Valley of Russian River Valley','California','Keefer Ranch Vineyard',2009,45,92,400,'now' +144,'Pinot Noir','Loring','Sta. Rita Hills','California','Cargasacchi Vineyard',2009,45,92,175,'now' +145,'Pinot Noir','Siduri','Santa Lucia Highlands','California','Pinot Noir',2009,29,92,1855,'now' +146,'Pinot Noir','A.P.Vin','Sta. Rita Hills','California','Clos Pepe Vineyard',2009,48,91,150,'now' +147,'Pinot Noir','A.P.Vin','Sta. Rita Hills','California','Turner Vineyard',2009,48,91,150,'now' +148,'Pinot Noir','Loring','Sta. Rita Hills','California','Rancho La Vina Vineyard',2009,45,91,125,'now' +149,'Pinot Noir','Athair','Russian River Valley','California','Pinot Noir',2008,36,90,919,'now' +150,'Pinot Noir','Clouds Rest','Sonoma Coast','California','Limited Release',2007,69,90,600,'now' +151,'Pinot Noir','Loring','San Luis Obispo County','California','Aubaine Vineyard',2009,45,90,500,'now' +152,'Pinot Noir','Loring','Sta. Rita Hills','California','Pinot Noir',2009,29,88,600,'now' +153,'Pinot Noir','Siduri','Sonoma County','California','Pinot Noir',2009,20,88,2657,'now' +154,'Pinot Noir','Castle Rock','Carneros','California','Pinot Noir',2008,14,84,NULL,'now' +155,'Syrah','Sine Qua Non','Sta. Rita Hills','California','A Shot in the Dark Eleven Confessions Vineyard',2006,200,98,442,2012 +156,'Syrah','Favia','Amador County','California','Quarzo',2008,65,95,154,'now' +157,'Syrah','Roar','Santa Lucia Highlands','California','Rosella''s Vineyard',2008,40,94,140,2011 +158,'Syrah','Carlisle','Bennett Valley','California','Cardiac Hill',2008,45,93,239,'now' +159,'Syrah','Herman Story','Santa Barbara County','California','Larner Vinyard',2008,36,93,135,'now' +160,'Syrah','Herman Story','Santa Barbara County','California','White Hawk Vineyard',2008,36,93,132,'now' +161,'Syrah','Zaca Mesa','Santa Ynez Valley','California','Mesa Reserve',2007,42,93,992,2012 +162,'Syrah','JC Cellars','California','California','Twist of Fate',2008,55,92,206,'now' +163,'Syrah','Ramey','Sonoma Coast','California','Syrah',2008,38,92,1750,'now' +164,'Syrah','Roar','Santa Lucia Highlands','California','Garys'' Vineyard',2008,40,92,110,2012 +165,'Syrah','Adobe Road','Dry Creek Valley','California','Kemp Vineyard',2007,40,91,235,'now' +166,'Syrah','Novy','Russian River Valley','California','Christensen Family Vineyard',2008,27,91,177,'now' +167,'Syrah','Ojai','Sta. Rita Hills','California','Melville Vineyards',2006,44,91,238,'now' +168,'Syrah','Joseph Phelps','Napa Valley','California','Syrah',2008,50,90,600,'now' +169,'Syrah','Red Car','California','California','The Flight',2008,55,90,394,'now' +170,'Syrah','Tensley','Santa Barbara County','California','Colson Canyon Vineyard',2009,38,90,1495,'now' +171,'Syrah','Red Lava','Red Hills Lake County','California','Syrah',2007,22,89,977,'now' +172,'Syrah','Rosenblum','Solano County','California','England-Shaw',2007,35,89,735,'now' +173,'Syrah','Eberle','Paso Robles','California','Rose Steinbeck Vineyard',2009,17,88,705,'now' +174,'Syrah','Keller','Sonoma Coast','California','La Cruz Vineyard',2007,40,88,308,'now' +175,'Syrah','Fess Parker','Santa Barbara County','California','Syrah',2008,20,88,2831,'now' +176,'Syrah','Pride','Sonoma County','California','Syrah',2008,60,88,575,2011 +177,'Syrah','Red Car','Sonoma County','California','Syrah',2008,45,88,961,'now' +178,'Syrah','Rosenblum','Lake County','California','Snows Lake Vineyard',2007,25,88,486,'now' +179,'Syrah','Rosenblum','Lodi','California','Abba Vineyard',2007,25,88,450,'now' +180,'Syrah','Stolpman','Santa Ynez Valley','California','Originals',2008,38,88,950,'now' +181,'Syrah','Boheme','Sonoma Coast','California','Que Syrah Vineyard',2006,40,87,185,'now' +182,'Syrah','J. Lohr','Paso Robles','California','Gesture Limited Release',2008,30,87,514,2011 +183,'Syrah','Montes','Paso Robles','California','Star Angel ',2007,35,87,3000,'now' +184,'Syrah','Rosenblum','Sonoma County','California','Kick Ranch Reserve',2007,45,87,496,2012 +185,'Syrah','Stolpman','Santa Ynez Valley','California','Syrah',2008,30,87,1500,'now' +186,'Syrah','Zaca Mesa','Santa Ynez Valley','California','Syrah',2007,24,87,7651,'now' +187,'Syrah','Domaine de la Terre Rouge','California','California','Les Cotes De L''Ouest',2008,18,84,NULL,'now' +188,'Syrah','Fetzer','California','California','Shiraz',2008,9,83,NULL,'now' +189,'Zinfandel','Carlisle','Russian River Valley','California','Carlisle Vineyard',2008,43,93,325,'now' +190,'Zinfandel','Turley','Howell Mountain','California','Cedarman',2008,29,93,400,'now' +191,'Zinfandel','Turley','Napa Valley','California','Tofanelli Vineyard',2008,34,93,200,'now' +192,'Zinfandel','Collier Falls','Dry Creek Valley','California','Private Reserve',2006,32,92,300,'now' +193,'Zinfandel','Turley','Sonoma Valley','California','Fredericks Vineyard',2008,42,91,300,'now' +194,'Zinfandel','Carlisle','Sonoma Valley','California','Rossi Ranch',2008,40,90,119,2012 +195,'Zinfandel','Dark Horse','Dry Creek Valley','California','Treborce Vineyard',2008,28,90,750,'now' +196,'Zinfandel','St. Francis','Sonoma County','California','Wild Oak Old Vines',2007,38,89,1900,'now' +197,'Zinfandel','Girard','Napa Valley','California','Old Vine',2008,24,88,2850,'now' +198,'Zinfandel','Sextant','Paso Robles','California','Wheelhouse',2008,20,88,3300,'now' +199,'Zinfandel','Terra d''Oro','Amador County','California','Zinfandel',2007,18,88,14000,'now' +200,'Zinfandel','Artezin','Mendocino County','California','Zinfandel',2009,18,87,15000,'now' +201,'Zinfandel','Terra d''Oro','Amador County','California','SHR Field Blend',2007,30,87,1250,'now' +202,'Zinfandel','Cameron Hughes','Lake County','California','Lot 154',2006,13,86,584,'now' +203,'Zinfandel','Rubicon Estate','Rutherford','California','Edizione Pennino',2008,45,86,2278,'now' +204,'Chardonnay','Lewis','Napa Valley','California','Chardonnay',2009,48,92,1800,'now' +205,'Chardonnay','Keller','Sonoma Coast','California','La Cruz Vineyard',2008,36,91,507,'now' +206,'Merlot','Darioush','Napa Valley','California','Signature',2007,48,89,1779,'now' +207,'Tempranillo','Four Vines','Paso Robles','California','Loco',2008,40,88,700,'now' +208,'Chardonnay','CC:','California','California','Chardonnay',2009,15,86,5000,'now' +209,'Syrah','Four Vines','Amador County','California','Bailey Vineyard',2005,38,93,440,'now' +210,'Syrah','Red Car','California','California','Twenty Two',2005,60,93,111,'now' +211,'Syrah','Herman Story','Santa Ynez Valley','California','Larner Vinyard',2005,28,92,432,'now' +212,'Syrah','Krupp Brothers','Napa Valley','California','Black Bart Stagecoach Vineyard',2005,52,91,1219,'now' +213,'Syrah','Paloma','Dry Creek Valley','California','Polomita Hamilton Vineyard',2005,45,91,250,'now' +214,'Syrah','Rosenblum','Yolo County','California','Rominger Vineyard',2005,25,91,1125,'now' +215,'Zinfandel','Four Vines','Amador County','California','Maverick',2005,24,91,2529,'now' +216,'Syrah','Chateau Potelle','Mount Vedeer','California','VGS',2004,75,90,238,'now' +217,'Syrah','Kosta Browne','Russian River Valley','California','Amber Ridge Vineyard',2004,45,90,320,'now' +218,'Syrah','Ojai','California','California','Roll Ranch Vineyard',2004,45,90,700,'now' +219,'Syrah','Whitestone','Sonoma Coast','California','Guidici Famili Vineyard',2005,55,90,200,'now' +220,'Pinot Noir','Adrian Fog','Anderson Valley','California','Savoy Vineyard',2005,75,92,440,'now' +221,'Pinot Noir','Davis Bynum','Russian River Valley','California','The Backbone',2004,75,92,117,'now' +222,'Pinot Noir','Davis Bynum','Russian River Valley','California','Laurels Estate Vineyard',2004,75,91,142,'now' +223,'Pinot Noir','Davis Bynum','Russian River Valley','California','Bynum & Moshin Vineyards',2004,50,91,314,'now' +224,'Pinot Noir','Calera','Mount Harlan','California','Jensen Vineyard',2004,60,91,1262,'now' +225,'Zinfandel','Rosenblum','Rockpile','California','Rockpile Road Vineyard',2005,35,91,3558,'now' +226,'Pinot Noir','Toulouse','Anderson Valley','California','Pinot Noir',2005,39,91,1050,'now' +227,'Pinot Noir','Calera','Mount Harlan','California','Thirtieth Anniverasry Vintage Mt. Harlan Cuvee',2005,30,90,403,'now' +228,'Chardonnay','DuMOL','Sonoma County','California','Green River Isobel',2005,60,95,558,'now' +229,'Chardonnay','Barnett','Carneros','California','Sengiacomo Vineyard',2005,29,93,1138,'now' +230,'Chardonnay','Chasseur','Russian River Valley','California','Lorenzo',2005,55,93,371,2008 +231,'Chardonnay','DuMOL','Russian River Valley','California','Chloe',2005,60,92,708,2008 +232,'Chardonnay','Chalk Hill','Chalk Hill','California','Chardonnay',2005,45,90,15000,'now' +233,'Viognier','Darioush','Napa Valley','California','Signature',2006,35,90,1376,'now' +234,'Marsanne','Krupp Brothers','Napa Valley','California','Stagecoach Vineyard Black Bart',2005,37,90,620,'now' +235,'Sauvignon Blanc','Sbragia Family','Dry Creek Valley','California','Home Ranch',2006,20,90,620,'now' +236,'Cabernet Sauvingnon','Hourglass','Napa Valley','California','Cabernet Sauvignon',2006,135,97,700,'now' +237,'Cabernet Sauvingnon','Dancing Hares','Napa Valley','California','Cabernet Sauvignon',2005,95,95,600,'now' +238,'Cabernet Sauvingnon','Lewis','Napa Valley','California','Reserve',2006,125,95,2000,'now' +239,'Cabernet Sauvingnon','Bucella','Napa Valley','California','Cabernet Sauvignon',2006,135,93,792,2010 +240,'Cabernet Sauvingnon','Casa Piena','Napa Valley','California','Cabernet Sauvignon',2006,125,93,240,2010 +241,'Cabernet Sauvingnon','The Four','Napa Valley','California','Cabernet Sauvignon',2006,75,93,310,'now' +242,'Cabernet Sauvingnon','Veraison','Napa Valley','California','Stagecoach Vineyard',2005,60,93,1232,'now' +243,'Cabernet Sauvingnon','Barrack','Santa Ynez Valley','California','Ten-Goal Happy Canyon Vineyards',2005,60,92,350,'now' +244,'Cabernet Sauvingnon','Snowden','Napa Valley','California','The Ranch',2006,40,92,1200,2010 +245,'Cabernet Sauvingnon','Cade','Napa Valley','California','Napa Cuvee',2006,60,91,2200,2011 +246,'Cabernet Sauvingnon','Louis M. Martini','Sonoma Valley','California','Monte Rosso Vineyard',2005,85,91,2550,'now' +247,'Cabernet Sauvingnon','PerryMoore','Oakville','California','Beckstoffer To Kalon Vineyard',2005,100,91,300,'now' +248,'Cabernet Sauvingnon','Frank Family','Rutherford','California','Reserve',2005,85,90,2400,'now' +249,'Cabernet Sauvingnon','Highlands','Napa Valley','California','Cabernet Sauvignon',2006,55,90,1000,'now' +250,'Cabernet Sauvingnon','Ilsley','Stags Leap District','California','Cabernet Sauvignon',2005,55,90,318,'now' +251,'Cabernet Sauvingnon','PerryMoore','St. Helena','California','Dr. Crane Vineyard',2005,100,90,250,'now' +252,'Chardonnay','Kazme & Blaise','Carneros','California','Boonfly''s Hill',2006,50,95,90,'now' +253,'Chardonnay','Kistler','Sonoma County','California','McCrea Vineyard',2006,75,95,3634,'now' +254,'Chardonnay','Peter Michael','Sonoma County','California','Ma Belle-Fille',2007,85,95,2780,'now' +255,'Chardonnay','Three Sticks','Sonoma Valley','California','Durell Vineyard',2006,45,95,220,'now' +256,'Chardonnay','Tor','Sonoma Valley','California','Durell Vineyard Wente Clone',2007,60,95,80,'now' +257,'Chardonnay','Failla','Sonoma Coast','California','Estate Vineyard',2007,42,94,125,'now' +258,'Chardonnay','Kistler','Russian River Valley','California','Wine Hill Vineyard',2006,75,94,3640,'now' +259,'Chardonnay','Peter Michael','Sonoma County','California','Belle Cote',2007,75,94,2500,'now' +260,'Chardonnay','Peter Michael','Sonoma County','California','Mon Plaisir',2007,80,94,1050,'now' +261,'Chardonnay','Peirson Meyer','Sonoma County','California','Untilited #3',2007,75,94,125,'now' +262,'Chardonnay','Rodney Strong','Russian River Valley','California','Reserve',2006,40,94,2448,'now' +263,'Chardonnay','Au Bon Climat','Santa Barbara County','California','Los Alamos Vineyard Historic Vineyards Collection',2007,25,93,325,'now' +264,'Chardonnay','HdV','Carneros','California','Hyde Vineyards',2006,60,93,1562,'now' +265,'Chardonnay','Kistler','Carneros','California','Hudson Vineyard',2006,75,93,1818,'now' +266,'Chardonnay','Landmark','Sonoma County','California','Damaris Reserve ',2006,40,93,2000,'now' +267,'Chardonnay','Pahlmeyer','Sonoma Coast','California','Chardonnay',2007,70,93,1620,'now' +268,'Chardonnay','Peirson Meyer','Sonoma Coast','California','Cahrles Heintz Vineyard',2007,55,93,300,'now' +269,'Chardonnay','Ridge','Santa Cruz Mountains','California','Santa Cruz Mountains Estate',2007,40,93,400,'now' +270,'Chardonnay','Shafer','California','California','Red Shoulder Ranch',2007,48,93,5500,'now' +271,'Chardonnay','Souverain','Russian River Valley','California','Winmaker''s Reserve',2007,30,93,313,'now' +272,'Chardonnay','Acacia','Carneros','California','Sangiacomo Vineyard',2007,40,92,484,'now' +273,'Chardonnay','Beringer','Napa Valley','California','Sbraglia Limited-Release',2007,40,92,5600,'now' +274,'Chardonnay','Chalone','Chalone','California','Chardonnay',2007,25,92,16801,'now' +275,'Chardonnay','Chateau St. Jean','Sonoma County','California','Reserve',2006,45,92,4600,'now' +276,'Chardonnay','El Molino','Rutherford','California','Chardonnay',2007,45,92,878,'now' +277,'Chardonnay','Freeman','Russian River Valley','California','Ryo-fu',2006,44,92,418,'now' +278,'Chardonnay','Hanzell','Sonoma Valley','California','Chardonnay',2006,70,92,3253,'now' +279,'Chardonnay','Hudson Vineyards','Napa Valley','California','Carneros',2006,60,92,350,'now' +280,'Chardonnay','Kistler','Russian River Valley','California','Dutton Ranch',2006,75,92,1810,'now' +281,'Chardonnay','Luna','Napa Valley','California','Chardonnay',2006,40,92,204,'now' +282,'Chardonnay','Maldonado','Napa Valley','California','Los Olivos Vineyard',2006,49,92,566,'now' +283,'Chardonnay','Peter Michael','Sonoma County','California','La Carrlere',2007,80,92,2549,'now' +284,'Chardonnay','Pahlmeyer','Napa Valley','California','Chardonnay',2007,70,92,3341,'now' +285,'Chardonnay','Sbragia Family','Dry Creek Valley','California','Home Ranch',2007,26,92,2657,'now' +286,'Chardonnay','D.R. Stephens','Napa Valley','California','Chardonnay',2007,50,92,455,'now' +287,'Chardonnay','Truchard','Napa Valley','California','Carneros',2007,30,92,2930,'now' +288,'Chardonnay','Vineyard 7&8','Spring Mountain District','California','Chardonnay',2007,60,92,275,'now' +289,'Chardonnay','Anaba','Sonoma Coast','California','Chardonnay',2007,32,91,938,'now' +290,'Chardonnay','Armida','Russian River Valley','California','Keefer Ranch',2007,28,91,232,'now' +291,'Chardonnay','Au Bon Climat','Santa Barbara County','California','Chardonnay',2007,20,91,12000,'now' +292,'Chardonnay','Beringer','Napa Valley','California','Private Reserve',2007,35,91,21900,'now' +293,'Chardonnay','Cakebread','Napa Valley','California','Carneros Reserve',2006,55,91,1000,'now' +294,'Chardonnay','Calera','Mount Harlan','California','Chardonnay',2007,25,91,663,'now' +295,'Chardonnay','Celani Family','Napa Valley','California','Chardonnay',2007,40,91,600,'now' +296,'Chardonnay','Domain Chandon','Carneros','California','Chardonnay',2006,26,91,4600,'now' +297,'Chardonnay','Dutton-Goldfield','Russian River Valley','California','Dutton Ranch',2007,35,91,3981,'now' +298,'Chardonnay','Far Niente','Napa Valley','California','Chardonnay',2007,56,91,30000,'now' +299,'Chardonnay','Ferrari-Carano','Russian River Valley','California','Emelia''s Cuvee',2007,36,91,465,'now' +300,'Chardonnay','Fog Dog','Sonoma Coast','California','Chardonnay',2006,40,91,1300,'now' +301,'Chardonnay','Freestone','Sonoma Coast','California','Ovation',2006,60,91,2500,'now' +302,'Chardonnay','L''Angevin','Russian River Valley','California','Laughlin Family Vineyard',2007,44,91,350,'now' +303,'Chardonnay','Marimar Estate','Russian River Valley','California','Don Miguel Vineyard Lia Torres Family Vineyards',2006,49,91,355,'now' +304,'Chardonnay','Merryvale','Carneros','California','Chardonnay',2007,35,91,2215,'now' +305,'Chardonnay','Neyers','Sonoma Coast','California','B. Theriot Vineyard',2007,48,91,202,'now' +306,'Chardonnay','Olabisi','Carneros','California','Ceja Vineyard',2007,40,91,285,'now' +307,'Chardonnay','Rombauer','Carneros','California','Chardonnay',2007,32,91,40000,'now' +308,'Chardonnay','Talley','Edna Valley','California','Chardonnay',2007,26,91,445,'now' +309,'Chardonnay','Talley','Arroyo Grande Valley','California','Chardonnay',2007,26,91,4603,'now' +310,'Chardonnay','Vine Cliff','Carneros','California','Proprietary Reserve',2007,60,91,545,'now' +311,'Chardonnay','Vine Cliff','Carneros','California','Los Carneros',2007,39,91,1798,'now' +312,'Chardonnay','Artesa','Carneros','California','Chardonnay',2007,20,90,33000,'now' +313,'Chardonnay','Beaulieu Vineyard','Napa Valley','California','Carneros',2007,17,90,15000,'now' +314,'Chardonnay','Byron','Santa Maria Valley','California','Chardonnay',2007,26,90,4406,'now' +315,'Chardonnay','Darioush','Napa Valley','California','Signature',2007,43,90,1761,'now' +316,'Chardonnay','Ferrari-Carano','Russian River Valley','California','Valley Dominique',2007,38,90,276,'now' +317,'Chardonnay','The Hess Collection','Mount Vedeer','California','Chardonnay',2007,35,90,1900,'now' +318,'Chardonnay','Jocelyn Lonen','Carneros','California','Founder''s',2007,45,90,200,'now' +319,'Chardonnay','Kistler','Sonoma Valley','California','Kistler Vineyard',2006,80,90,1815,'now' +320,'Chardonnay','Laird Family','Carneros','California','Gold Creek Ranch',2007,30,90,1500,'now' +321,'Chardonnay','Mer Soleil','Santa Lucia Highlands','California','Chardonnay',2006,42,90,NULL,'now' +322,'Chardonnay','Nicholson Ranch','Sonoma Valley','California','Cuvee Natalie',2006,48,90,325,'now' +323,'Chardonnay','Orogeny','Green Valley of Russian River Valley','California','Chardonnay',2007,25,90,2500,'now' +324,'Chardonnay','Ramey','Sonoma Coast','California','Chardonnay',2007,38,90,2100,'now' +325,'Chardonnay','Robert Young','Alexander Valley','California','Chardonnay',2006,40,90,1990,'now' +326,'Chardonnay','HdV','Carneros','California','De La Guerra',2007,40,90,506,'now' +327,'Chardonnay','Maldonado','Sonoma County','California','Parr Vineyard',2006,24,90,900,'now' +328,'Chardonnay','Cakebread','Napa Valley','California','Chardonnay',2007,39,90,25000,'now' +329,'Chardonnay','Cuvasion','Napa Valley','California','Carneros',2007,24,88,40000,'now' +330,'Chardonnay','Kunde Estate','Sonoma Valley','California','Reserve',2006,30,88,5800,'now' +331,'Chardonnay','Ramey','Carneros','California','Chardonnay',2007,38,88,2500,'now' +332,'Chardonnay','Saddleback','Napa Valley','California','Chardonnay',2007,26,88,831,'now' +333,'Chardonnay','Sebastiani','Sonoma County','California','Chardonnay',2007,13,88,82130,'now' +334,'Chardonnay','White Rock','Napa Valley','California','Chardonnay',2007,30,88,800,'now' +335,'Chardonnay','Acacia','Carneros','California','Chardonnay',2007,22,87,70200,'now' +336,'Chardonnay','Kunde Estate','Sonoma Valley','California','Chardonnay',2007,17,87,35000,'now' +337,'Chardonnay','Moon Mountain','Sonoma County','California','Chardonnay',2007,13,87,42250,'now' +338,'Chardonnay','Waterstone','Carneros','California','Chardonnay',2007,18,87,1832,'now' +339,'Chardonnay','Napa Family','Napa Valley','California','Finest Selection Reserve',2007,10,86,2853,'now' +340,'Pinot Noir','Roessler','Anderson Valley','California','Valley Savoy',2007,46,94,268,'now' +341,'Pinot Noir','Vision Cellars','Russian River Valley','California','Coster Vineyard',2007,42,93,286,'now' +342,'Pinot Noir','Ampelos','Sta. Rita Hills','California','Lambda',2007,35,92,1094,'now' +343,'Pinot Noir','Freeman','Sonoma Coast','California','Pinot Noir',2007,44,92,1068,'now' +344,'Pinot Noir','Baker Lane','Sonoma Coast','California','Hurst Vineyard',2007,36,91,360,'now' +345,'Pinot Noir','Failla','Russian River Valley','California','Keefer Ranch',2007,45,91,600,'now' +346,'Pinot Noir','Failla','Sonoma Coast','California','Pinot Noir',2007,34,91,500,'now' +347,'Pinot Noir','Kutch','Sonoma Coast','California','McDougal Ranch',2007,48,91,125,'now' +348,'Pinot Noir','Siduri','Sta. Rita Hills','California','Clos Pepe Vineyard',2007,54,91,241,'now' +349,'Pinot Noir','Small Vines','Russian River Valley','California','Pinot Noir',2006,50,91,365,'now' +350,'Pinot Noir','Vision Cellars','Sonoma County','California','Pinot Noir',2007,38,90,900,'now' +351,'Pinot Noir','Freeman','Russian River Valley','California','Pinot Noir',2006,44,89,1592,'now' +352,'Pinot Noir','Kutch','Sonoma Coast','California','Kanzler Vineyard',2007,48,89,175,'now' +353,'Pinot Noir','MacRostie','Sonoma Coast','California','Wildcat Mountain Vineyard',2006,45,89,1003,'now' +354,'Pinot Noir','Baker Lane','Sonoma Coast','California','Ramondo Vineyard',2007,42,88,777,'now' +355,'Pinot Noir','Fort Ross','Sonoma Coast','California','Symposium Fort Ross Vineyard',2066,32,88,2584,'now' +356,'Pinot Noir','Landmark','Sonoma Coast','California','Grand Detour',2007,40,88,2500,'now' +357,'Pinot Noir','Sequana','Green Valley of Russian River Valley','California','Valley Dutton Ranch',2007,40,88,728,'now' +358,'Pinot Noir','Bernardus','Monterey County','California','Pinot Noir',2007,25,87,4715,'now' +359,'Pinot Noir','Marting Ray','Santa Barbara County','California','Pinot Noir',2007,25,87,5800,'now' +360,'Syrah','Carlisle','Russian River Valley','California','Papa''s Block',2007,43,98,307,'now' +361,'Syrah','Carlisle','Santa Lucia Highlands','California','Rosella''s Vineyard',2007,43,94,192,'now' +362,'Syrah','Jemrose','Bennett Valley','California','Gloria''s Gem',2006,75,94,48,'now' +363,'Syrah','Duchamp','Dry Creek Valley','California','Cuvee Trouvee',2006,38,93,300,'now' +364,'Syrah','Duchamp','Dry Creek Valley','California','Grand Master',2006,55,93,175,'now' +365,'Syrah','Martinelli','Russian River Valley','California','Zio Tony Ranch Gianna Marie',2006,75,93,305,'now' +366,'Syrah','McPrice Myers','Arroyo Grande Valley','California','Les Galets',2006,36,93,198,'now' +367,'Syrah','Ampelos','Sta. Rita Hills','California','Gamma',2005,35,92,264,'now' +368,'Syrah','Stephen Test','Dry Creek Valley','California','Unti Vineyard',2006,30,91,128,'now' +369,'Zinfandel','Carlisle','Dry Creek Valley','California','Zinfandel',2007,33,95,360,'now' +370,'Zinfandel','Linne Calodo','Paso Robles','California','Problem Child',2007,48,94,580,'now' +371,'Zinfandel','Carlisle','Sonoma Valley','California','Rossi Ranch',2007,40,93,236,'now' +372,'Zinfandel','Carlisle','Sonoma County','California','Zinfandel',2007,23,92,539,'now' +373,'Zinfandel','Carlisle','Russian River Valley','California','Montafi Ranch',2007,43,91,258,'now' +374,'Zinfandel','Dancing Lady','Alexander Valley','California','Old vine Della Costa Family Vineyard',2007,27,91,321,'now' +375,'Zinfandel','Martinelli','Russian River Valley','California','Giuseppe & Luisa',2007,50,91,825,'now' +376,'Zinfandel','D-Cubed Cellars','Napa Valley','California','Zinfandel',2006,27,89,1100,'now' +377,'Zinfandel','De Loach','Russian River Valley','California','Zinfandel',2007,20,89,1830,'now' +378,'Zinfandel','Saucelito Canyon','San Luis Obispo County','California','Backroads',2007,18,89,563,'now' +379,'Zinfandel','Rosenblum','Paso Robles','California','Appelation Series',2006,18,88,8913,'now' +380,'Zinfandel','Sausal','Alexander Valley','California','50 Year Old Vines',2006,19,88,8913,'now' +381,'Zinfandel','Dry Creek','Sonoma County','California','Heritage',2007,18,87,13877,'now' +382,'Zinfandel','Klinker Brick','Lodi','California','Old Vine',2006,18,87,20000,'now' +383,'Zinfandel','Schrader','Napa Valley','California','Vieux-Os Hell Hole Cuvee Old Vine',2006,35,87,375,'now' +384,'Zinfandel','Rosenblum','Contra Costa County','California','Planchon Vineyard',2006,26,86,2425,'now' +385,'Zinfandel','Rodney Strong','Sonoma County','California','Knotty Vines',2007,20,86,18655,'now' +386,'Zinfandel','Cardinal Zin','Calaveras County','California','Beastly Old Vines',2006,20,84,NULL,'now' +387,'Zinfandel','Cline','California','California','Ancient Vines',2007,15,84,NULL,'now' +388,'Zinfandel','Peachy Canyon','Paso Robles','California','Incredible Red',2007,12,82,NULL,'now' +389,'Zinfandel','Renwood','Sierra Foothills','California','Zinfandel',2006,10,82,NULL,'now' +390,'Zinfandel','Renwood','Fiddletown','California','Zinfandel',2006,25,78,NULL,'now' +391,'Cabernet Franc','Pride','Sonoma County','California','Cabernet Franc',2006,60,92,1128,'now' +392,'Zinfandel','D-Cubed Cellars','Napa Valley','California','Primitivo',2006,25,88,226,'now' +393,'Merlot','Thomas Henry','Napa Valley','California','Merlot',2005,12,84,NULL,'now' +394,'Cabernet Sauvingnon','Caymus','Napa Valley','California','Special Selection',2008,130,94,15618,'now' +395,'Cabernet Sauvingnon','Phifer Pavitt','Napa Valley','California','Date Night',2007,75,94,400,'now' +396,'Cabernet Sauvingnon','Turnbull','Napa Valley','California','Black Label',2007,100,94,500,2013 +397,'Cabernet Sauvingnon','Cavus','Stags Leap District','California','Cabernet Sauvignon',2007,90,93,155,2012 +398,'Cabernet Sauvingnon','Girard','Napa Valley','California','Artistry',2008,40,88,4944,'now' +399,'Cabernet Sauvingnon','Montes','Napa Valley','California','Napa Angel Aurelio''s Selection',2007,90,87,3000,2013 +400,'Chardonnay','Maybach','Sonoma Coast','California','Eterium B. Thieriot Vineyard',2009,78,95,60,'now' +401,'Chardonnay','Freestone','Sonoma Coast','California','Chardonnay',2008,55,93,800,'now' +402,'Chardonnay','Morgan','Monterey County','California','Metallico Un-Oaked',2009,20,91,3800,'now' +403,'Chardonnay','Sterling','Napa Valley','California','Reserve',2008,35,91,1450,'now' +404,'Chardonnay','Gary Farrell','Russian River Valley','California','Russian River Selection',2008,32,89,4474,'now' +405,'Chardonnay','Y3','Napa Valley','California','Chardonnay',2009,20,89,2820,'now' +406,'Chardonnay','Bogle','California','California','Chardonnay',2009,10,88,250000,'now' +407,'Pinot Noir','Adrian Fog','Sonoma Coast','California','Numbers',2008,75,93,340,'now' +408,'Pinot Noir','Fog Dog','Sonoma Coast','California','Pinot Noir',2008,35,89,8000,'now' +409,'Merlot','Rutherford Hill','Napa Valley','California','Merlot',2006,25,89,42546,'now' +410,'Zinfandel','Kokomo','Sonoma County','California','Zinfandel',2008,22,88,800,'now' +411,'Merlot','Black Box','California','California','Merlot',2008,25,83,NULL,'now' +412,'Zinfandel','Joel Gott','California','California','Zinfandel',2008,17,83,NULL,'now' +413,'Cabernet Sauvingnon','Paul Hobbs','St. Helena','California','Beckstoffer Dr. Crane Vineyard',2007,150,97,586,'now' +414,'Cabernet Sauvingnon','Pina','Napa Valley','California','D''Adamo Vineyard',2007,75,93,1085,'now' +415,'Cabernet Sauvingnon','Boyanci','Napa Valley','California','InSpire',2007,60,92,715,'now' +416,'Cabernet Sauvingnon','Guarachi','Napa Valley','California','Cabernet Sauvignon',2007,65,92,1269,'now' +417,'Cabernet Sauvingnon','Paul Hobbs','Napa Valley','California','Cabernet Sauvignon',2007,75,92,5653,'now' +418,'Cabernet Sauvingnon','Keever','Yountville','California','Cabernet Sauvignon',2007,90,92,650,'now' +419,'Cabernet Sauvingnon','Dos Lagos','Atlas Peak','California','Cabernet Sauvignon',2007,125,88,120,'now' +420,'Cabernet Sauvingnon','Erna Schein','Napa Valley','California','Spare Me',2007,45,88,280,'now' +421,'Cabernet Sauvingnon','Erna Schein','California','California','Jersey Boy',2007,50,88,384,'now' +422,'Cabernet Sauvingnon','Fleming Jenkins','Napa Valley','California','Choreography',2006,50,88,643,'now' +423,'Cabernet Sauvingnon','Girard','Napa Valley','California','Artistry',2007,40,88,4600,'now' +424,'Cabernet Sauvingnon','Langtry','Lake County','California','Tephra Ridge Vineyard',2006,40,88,342,'now' +425,'Cabernet Sauvingnon','Maldonado','Spring Mountain District','California','Peter Newton Vineyard',2006,92,88,126,'now' +426,'Cabernet Sauvingnon','Nickel & Nickel','Yountville','California','State Lane Ranch',2006,90,88,430,'now' +427,'Cabernet Sauvingnon','Prime','Napa Valley','California','District 4',2007,39,88,304,'now' +428,'Cabernet Sauvingnon','David Arthur','Napa Valley','California','Elevation 1147',2007,135,87,541,'now' +429,'Cabernet Sauvingnon','Duckhorn','Napa Valley','California','Cabernet Sauvignon',2006,65,87,13744,'now' +430,'Cabernet Sauvingnon','Krutz Family','Napa Valley','California','Stagecoach Vineyard',2006,70,87,315,'now' +431,'Cabernet Sauvingnon','Sebastiani','Sonoma County','California','Cabernet Sauvignon',2006,18,87,120123,'now' +432,'Cabernet Sauvingnon','Artesa','Napa-Sonoma counties','California','Elements',2006,18,86,8000,'now' +433,'Cabernet Sauvingnon','Blue Rock','Alexander Valley','California','Cabernet Sauvignon',2006,47,86,784,'now' +434,'Cabernet Sauvingnon','Daou','Paso Robles','California','La Capilla Collection',2007,46,86,873,'now' +435,'Cabernet Sauvingnon','Merryvale','Napa Valley','California','Cabernet Sauvignon',2006,55,86,2284,'now' +436,'Cabernet Sauvingnon','Cycles Gladiator','California','California','Cabernet Sauvignon',2007,10,80,NULL,'now' +437,'Grenache','Sine Qua Non','California','California','To the Rescue',2007,100,93,164,'now' +438,'Grenache','Sine Qua Non','California','California','Pictures',2007,135,91,764,'now' +439,'Grenache','Quivara','Dry Creek Valley','California','Rose Wine Creek Ranch',2009,15,90,448,'now' +440,'Merlot','Keenan','Spring Mountain District','California','Mailbox Vineyard Drive',2006,60,88,330,'now' +441,'Merlot','Langtry','Lake County','California','Tephra Ridge Vineyard',2006,40,88,205,'now' +442,'Merlot','White Oak','Napa Valley','California','Merlot',2007,26,88,1987,'now' +443,'Merlot','Goldschmidt','Alexander Valley','California','Chelsea Goldschmidt',2008,15,87,3500,'now' +444,'Merlot','Merryvale','Napa Valley','California','Merlot',2006,39,86,1587,'now' +445,'Pinot Noir','DuMOL','Russian River Valley','California','Ryan',2007,76,94,850,'now' +446,'Pinot Noir','Paul Hobbs','Russian River Valley','California','Pinot Noir',2008,45,94,3644,'now' +447,'Pinot Noir','DuMOL','Russian River Valley','California','Finn',2007,80,93,363,'now' +448,'Pinot Noir','DuMOL','Red Hills Lake County','California','Aidan',2007,76,92,380,'now' +449,'Pinot Noir','DuMOL','Sonoma Coast','California','Eoin',2007,76,92,375,'now' +450,'Pinot Noir','Paul Hobbs','Russian River Valley','California','Ulises Valdez Vineyard',2008,70,92,282,'now' +451,'Pinot Noir','Mueller','Russian River Valley','California','Pinot Noir',2007,25,92,442,'now' +452,'Pinot Noir','Fleming Jenkins','California','California','Victories Rose',2009,20,89,480,'now' +453,'Pinot Noir','Keller','Sonoma Coast','California','La Cruz Vineyard',2007,44,88,510,'now' +454,'Pinot Noir','Baileyana','Edna Valley','California','Grand Firepeak Cuvee Firepeak Vineyard',2007,33,87,6334,'now' +455,'Pinot Noir','Testarossa','Santa Lucia Highlands','California','Sleepy Hollow Vineyard',2008,59,87,600,'now' +456,'Pinot Noir','Demetria','Sta. Rita Hills','California','Pinot Noir',2007,40,86,2000,'now' +457,'Sauvignon Blanc','Merry Edwards','Russian River Valley','California','Sauvignon Blanc',2008,30,93,3880,'now' +458,'Sauvignon Blanc','Robert Mondavi','Napa Valley','California','Fume Blanc',2008,20,88,50543,'now' +459,'Sauvignon Blanc','Illumination','Napa Valley','California','Sauvignon Blanc',2008,40,87,3150,'now' +460,'Sauvignon Blanc','Langtry','Guenoc Valley','California','Lillie Vineyard',2008,20,87,659,'now' +461,'Sauvignon Blanc','David Arthur','Napa Valley','California','Sauvignon Blanc',2008,25,86,566,'now' +462,'Syrah','Carlisle','Russian River Valley','California','Papa''s Block',2008,45,92,212,'now' +463,'Syrah','Sine Qua Non','California','California','Labels',2007,135,92,1421,'now' +464,'Syrah','Fleming Jenkins','Livermore Valley','California','Madden Ranch',2007,40,89,456,2011 +465,'Syrah','Ampelos','Santa Barbara County','California','Rose',2009,18,88,320,'now' +466,'Syrah','Carlisle','Santa Lucia Highlands','California','Rosella''s Vineyard',2008,45,88,171,'now' +467,'Syrah','Ancient Peaks','Paso Robles','California','Syrah',2007,16,87,869,'now' +468,'Zinfandel','Bradford Mountain','Dry Creek Valley','California','Grist Vineyard',2006,33,90,500,'now' +469,'Zinfandel','Hartford Family','Russian River Valley','California','Highwire Vineyard',2008,55,89,340,2012 +470,'Zinfandel','Haywood','Sonoma Valley','California','Rocky Terrace Los Chamizal Vineyards',2007,35,89,590,2011 +471,'Zinfandel','Kunde Estate','Sonoma Valley','California','Century Vines Reserve',2007,35,89,2000,'now' +472,'Zinfandel','Saxon Brown','Sonoma Valley','California','Casa Santinamaria Vineyards',2006,38,89,327,'now' +473,'Zinfandel','Valdez','Rockpile','California','Boticelli Vineyards',2007,41,89,233,2011 +474,'Zinfandel','Dashe','Alexander Valley','California','Todd Brothers Ranch Old Vines',2007,32,88,476,'now' +475,'Zinfandel','Del Carlo','Dry Creek Valley','California','Old Vine Teldeschi Vineyard Home Ranch',2006,32,88,294,'now' +476,'Zinfandel','Dry Creek','Dry Creek Valley','California','Old Vine',2007,28,88,5555,2015 +477,'Zinfandel','Dry Creek','Dry Creek Valley','California','Somers Ranch',2007,34,88,469,'now' +478,'Zinfandel','Frank Family','Napa Valley','California','Reserve',2007,50,88,748,'now' +479,'Zinfandel','Haywood','Sonoma Valley','California','Morning Sun Los Chamizal Vineyards',2007,35,88,399,'now' +480,'Zinfandel','Rock Wall','Contra Costa County','California','Jesse''s Vineyard',2008,28,88,765,'now' +481,'Zinfandel','Rosenblum','Contra Costa County','California','Carla''s Reserve',2007,30,88,1909,'now' +482,'Zinfandel','Sbragia Family','Dry Creek Valley','California','Gino''s Vineyard',2007,28,88,544,'now' +483,'Zinfandel','Artezin','Amador-Mendocino-Sonoma Counties','California','Zinfandel',2008,18,87,5856,'now' +484,'Zinfandel','Bradford Mountain','Dry Creek Valley','California','Zinfandel',2006,22,87,1900,'now' +485,'Zinfandel','Cline','Contra Costa County','California','Bridgehead',2008,25,87,850,'now' +486,'Zinfandel','Dancing Lady','Alexander Valley','California','Old vine Della Costa Family Vineyard',2008,24,87,358,'now' +487,'Zinfandel','Mauritson','Dry Creek Valley','California','Zinfandel',2008,27,87,1457,'now' +488,'Zinfandel','Neyers','Contra Costa County','California','Pato Vineyard',2008,30,87,1200,'now' +489,'Zinfandel','Rosenblum','Sonoma County','California','Zinfandel',2007,18,87,5297,'now' +490,'Zinfandel','Rosenblum','Sonoma Valley','California','Cullinane Reserve',2007,45,87,238,'now' +491,'Zinfandel','Rubicon Estate','Rutherford','California','Edizione Pennino',2007,45,87,2499,'now' +492,'Zinfandel','Sebastiani','Dry Creek Valley','California','Zinfandel',2008,24,87,1284,'now' +493,'Zinfandel','Pedroncelli','Dry Creek Valley','California','Bushnell Vineyard',2007,18,86,3500,'now' +494,'Zinfandel','Sobon Estate','Amador County','California','Old Vines',2008,14,86,6900,'now' +495,'Zinfandel','Cline','California','California','Zinfandel',2008,12,85,97500,'now' +496,'Roussanne','Sine Qua Non','California','California','To the Rescue',2006,100,91,139,'now' +497,'Sangiovese','Altamura','Napa Valley','California','Sangiovese',2006,48,88,1500,'now' +498,'Barbera','Enotria','Mendocino County','California','Barbera',2006,17,87,1100,'now' +499,'Zinfandel','C.G. Di Arle','Shenandoah Valley','California','Primitivo Block #4',2007,25,86,719,'now' +500,'Chardonnay','Acacia','California','California','A by Acacia',2008,11,81,NULL,'now' diff --git a/database/wine_1/link.txt b/database/wine_1/link.txt new file mode 100644 index 0000000000000000000000000000000000000000..94c167197fe075c59a0eb4db5c0ce5bf25f766e7 --- /dev/null +++ b/database/wine_1/link.txt @@ -0,0 +1 @@ +http://users.csc.calpoly.edu/~dekhtyar/365-Spring2017/index.html \ No newline at end of file diff --git a/database/wine_1/q.txt b/database/wine_1/q.txt new file mode 100644 index 0000000000000000000000000000000000000000..6503b566ebb9070eef797cea218a39fcc63ba7b6 --- /dev/null +++ b/database/wine_1/q.txt @@ -0,0 +1,25 @@ +List all AVAs located in Monterey county. Output just the names of the AVA appellations + +List all white grape varieties for which at least one wine of the 2008 vintage is rated at 90 points or above in the database. + +List all Sonoma county appellations for which the database contains at least one rating for a ’Grenache’. For each appellation list its name and county. + +List all vintage years in which at least one Zinfandel from Sonoma County (any appellation) scored above 92. + +A case of wine is 12 bottles. For each Carlisle (name of the winery) Syrah compute the total revenue assuming that all the wine sold at the specified price. + +Find the total revenue from all red wines made by Kosta Browne. + +Find the average number of cases of a Pinor Noir produced from grapes sourced from the Central Coast. + +For each year, report the total number of red Sonoma County wines whose scores are 90 or above. + +Find the most popular red grape (i.e., the grape that is used to make the largest number of white wines) in San Luis Obispo County. + +Report the grape with the largest number of high-ranked wines (wines ranked 93 or higher). + +Report the appellation responsible for the largest number of high-ranked wines (score of 93 and above). Report just the name of the appellation. + +Find if there are any 2008 Zinfandels that scored better than all 2007 Grenaches. Report winery, wine name, score and price. + +Find how many cases were produced of the most expensive red wine from Napa county. diff --git a/database/wine_1/wine_1.sql b/database/wine_1/wine_1.sql new file mode 100644 index 0000000000000000000000000000000000000000..f4d90f266f4abb52bc2d0557da580a8d6194ccf0 --- /dev/null +++ b/database/wine_1/wine_1.sql @@ -0,0 +1,30 @@ +CREATE TABLE "grapes" ( + "ID" INTEGER PRIMARY KEY, + "Grape" TEXT UNIQUE, + "Color" TEXT +); + +CREATE TABLE "appellations" ( + "No" INTEGER PRIMARY KEY, + "Appelation" TEXT UNIQUE, + "County" TEXT, + "State" TEXT, + "Area" TEXT, + "isAVA" TEXT +); + +CREATE TABLE "wine" ( + "No" INTEGER, + "Grape" TEXT, + "Winery" TEXT, + "Appelation" TEXT, + "State" TEXT, + "Name" TEXT, + "Year" INTEGER, + "Price" INTEGER, + "Score" INTEGER, + "Cases" INTEGER, + "Drink" TEXT, + FOREIGN KEY (Grape) REFERENCES grapes(Grape), + FOREIGN KEY (Appelation) REFERENCES appellations(Appelation) +); diff --git a/database/wine_1/wine_1.sqlite b/database/wine_1/wine_1.sqlite new file mode 100644 index 0000000000000000000000000000000000000000..350dba76febe876d918831e8a83608a940dbe695 Binary files /dev/null and b/database/wine_1/wine_1.sqlite differ diff --git a/database/workshop_paper/schema.sql b/database/workshop_paper/schema.sql new file mode 100644 index 0000000000000000000000000000000000000000..78f0f4b15f3ef4516d93b2e4ade6b47fe5c847be --- /dev/null +++ b/database/workshop_paper/schema.sql @@ -0,0 +1,55 @@ + +PRAGMA foreign_keys = ON; + +CREATE TABLE "workshop" ( +"Workshop_ID" int, +"Date" text, +"Venue" text, +"Name" text, +PRIMARY KEY ("Workshop_ID") +); + +CREATE TABLE "submission" ( +"Submission_ID" int, +"Scores" real, +"Author" text, +"College" text, +PRIMARY KEY ("Submission_ID") +); + +INSERT INTO "workshop" VALUES (1,"August 18, 2007","London UK","ABC 2007"); +INSERT INTO "workshop" VALUES (2,"August 21, 2007","London UK","Conference 2007"); +INSERT INTO "workshop" VALUES (3,"August 25, 2007","New Jersey USA","Workshop 2007"); +INSERT INTO "workshop" VALUES (4,"October 8, 2007","New York USA","2007 qualification"); +INSERT INTO "workshop" VALUES (5,"January 14, 2008","New York USA","2008 qualification"); +INSERT INTO "workshop" VALUES (6,"July 5, 2011","Istanbul Turkey","Anual Workshop 2011"); + + +INSERT INTO "submission" VALUES ("1","72","Steve Niehaus","Notre Dame"); +INSERT INTO "submission" VALUES ("2","79","Sammy Green","Florida"); +INSERT INTO "submission" VALUES ("3","78","Sherman Smith","Miami (OH)"); +INSERT INTO "submission" VALUES ("4","79","Steve Raible","Georgia Tech"); +INSERT INTO "submission" VALUES ("5","82","Jeff Lloyd","West Texas State"); +INSERT INTO "submission" VALUES ("6","89","Rick Engles","Tulsa"); +INSERT INTO "submission" VALUES ("7","92","Don Bitterlich","Temple"); +INSERT INTO "submission" VALUES ("8","93","Steve Myer","New Mexico"); +INSERT INTO "submission" VALUES ("9","82","Randy Johnson","Georgia"); +INSERT INTO "submission" VALUES ("10","83","Andy Bolton","Fisk"); + + +CREATE TABLE "Acceptance" ( +"Submission_ID" int, +"Workshop_ID" int, +"Result" text, +PRIMARY KEY ("Submission_ID","Workshop_ID"), +FOREIGN KEY ("Submission_ID") REFERENCES `submission`("Submission_ID"), +FOREIGN KEY ("Workshop_ID") REFERENCES `workshop`("Workshop_ID") +); + +INSERT INTO "Acceptance" VALUES (2,5,"Accepted"); +INSERT INTO "Acceptance" VALUES (2,3,"Rejected"); +INSERT INTO "Acceptance" VALUES (3,2,"Rejected"); +INSERT INTO "Acceptance" VALUES (4,6,"Rejected"); +INSERT INTO "Acceptance" VALUES (5,6,"Rejected"); +INSERT INTO "Acceptance" VALUES (1,1,"Accepted"); + diff --git a/database/workshop_paper/workshop_paper.sqlite b/database/workshop_paper/workshop_paper.sqlite new file mode 100644 index 0000000000000000000000000000000000000000..2e76244dd8b83f036db260b47eb52ddaa7107edb Binary files /dev/null and b/database/workshop_paper/workshop_paper.sqlite differ diff --git a/database/world_1/world_1.json b/database/world_1/world_1.json new file mode 100644 index 0000000000000000000000000000000000000000..9d2146fa6e826436f0e4ec8520d15439a10f0787 --- /dev/null +++ b/database/world_1/world_1.json @@ -0,0 +1,230 @@ +[ + { + "col_data": [ + { + "column_name": "ID", + "data_type": "integer", + "default_column_name": "ID", + "default_value": null, + "not_null": 1, + "primary_key": 1 + }, + { + "column_name": "Name", + "data_type": "char(35)", + "default_column_name": "Name", + "default_value": "''", + "not_null": 1, + "primary_key": 0 + }, + { + "column_name": "CountryCode", + "data_type": "char(3)", + "default_column_name": "CountryCode", + "default_value": "''", + "not_null": 1, + "primary_key": 0 + }, + { + "column_name": "District", + "data_type": "char(20)", + "default_column_name": "District", + "default_value": "''", + "not_null": 1, + "primary_key": 0 + }, + { + "column_name": "Population", + "data_type": "integer", + "default_column_name": "Population", + "default_value": "'0'", + "not_null": 1, + "primary_key": 0 + } + ], + "table": "city" + }, + { + "col_data": [ + { + "column_name": "name", + "data_type": "", + "default_column_name": "name", + "default_value": null, + "not_null": 0, + "primary_key": 0 + }, + { + "column_name": "seq", + "data_type": "", + "default_column_name": "seq", + "default_value": null, + "not_null": 0, + "primary_key": 0 + } + ], + "table": "sqlite_sequence" + }, + { + "col_data": [ + { + "column_name": "Code", + "data_type": "char(3)", + "default_column_name": "Code", + "default_value": "''", + "not_null": 1, + "primary_key": 1 + }, + { + "column_name": "Name", + "data_type": "char(52)", + "default_column_name": "Name", + "default_value": "''", + "not_null": 1, + "primary_key": 0 + }, + { + "column_name": "Continent", + "data_type": "text", + "default_column_name": "Continent", + "default_value": "'Asia'", + "not_null": 1, + "primary_key": 0 + }, + { + "column_name": "Region", + "data_type": "char(26)", + "default_column_name": "Region", + "default_value": "''", + "not_null": 1, + "primary_key": 0 + }, + { + "column_name": "SurfaceArea", + "data_type": "float(10,2)", + "default_column_name": "SurfaceArea", + "default_value": "'0.00'", + "not_null": 1, + "primary_key": 0 + }, + { + "column_name": "IndepYear", + "data_type": "integer", + "default_column_name": "IndepYear", + "default_value": "NULL", + "not_null": 0, + "primary_key": 0 + }, + { + "column_name": "Population", + "data_type": "integer", + "default_column_name": "Population", + "default_value": "'0'", + "not_null": 1, + "primary_key": 0 + }, + { + "column_name": "LifeExpectancy", + "data_type": "float(3,1)", + "default_column_name": "LifeExpectancy", + "default_value": "NULL", + "not_null": 0, + "primary_key": 0 + }, + { + "column_name": "GNP", + "data_type": "float(10,2)", + "default_column_name": "GNP", + "default_value": "NULL", + "not_null": 0, + "primary_key": 0 + }, + { + "column_name": "GNPOld", + "data_type": "float(10,2)", + "default_column_name": "GNPOld", + "default_value": "NULL", + "not_null": 0, + "primary_key": 0 + }, + { + "column_name": "LocalName", + "data_type": "char(45)", + "default_column_name": "LocalName", + "default_value": "''", + "not_null": 1, + "primary_key": 0 + }, + { + "column_name": "GovernmentForm", + "data_type": "char(45)", + "default_column_name": "GovernmentForm", + "default_value": "''", + "not_null": 1, + "primary_key": 0 + }, + { + "column_name": "HeadOfState", + "data_type": "char(60)", + "default_column_name": "HeadOfState", + "default_value": "NULL", + "not_null": 0, + "primary_key": 0 + }, + { + "column_name": "Capital", + "data_type": "integer", + "default_column_name": "Capital", + "default_value": "NULL", + "not_null": 0, + "primary_key": 0 + }, + { + "column_name": "Code2", + "data_type": "char(2)", + "default_column_name": "Code2", + "default_value": "''", + "not_null": 1, + "primary_key": 0 + } + ], + "table": "country" + }, + { + "col_data": [ + { + "column_name": "CountryCode", + "data_type": "char(3)", + "default_column_name": "CountryCode", + "default_value": "''", + "not_null": 1, + "primary_key": 1 + }, + { + "column_name": "Language", + "data_type": "char(30)", + "default_column_name": "Language", + "default_value": "''", + "not_null": 1, + "primary_key": 2 + }, + { + "column_name": "IsOfficial", + "data_type": "text", + "default_column_name": "IsOfficial", + "default_value": "'F'", + "not_null": 1, + "primary_key": 0 + }, + { + "column_name": "Percentage", + "data_type": "float(4,1)", + "default_column_name": "Percentage", + "default_value": "'0.0'", + "not_null": 1, + "primary_key": 0 + } + ], + "table": "countrylanguage" + } +] \ No newline at end of file diff --git a/database/world_1/world_1.sqlite b/database/world_1/world_1.sqlite new file mode 100644 index 0000000000000000000000000000000000000000..2c7c7d6ef6f8c99e82de67ea4357ea76479317af Binary files /dev/null and b/database/world_1/world_1.sqlite differ diff --git a/database/wrestler/schema.sql b/database/wrestler/schema.sql new file mode 100644 index 0000000000000000000000000000000000000000..0c00d1d9a6a04ec8c72433d784228304233cabc8 --- /dev/null +++ b/database/wrestler/schema.sql @@ -0,0 +1,43 @@ +PRAGMA foreign_keys = ON; + +CREATE TABLE "wrestler" ( +"Wrestler_ID" int, +"Name" text, +"Reign" text, +"Days_held" text, +"Location" text, +"Event" text, +PRIMARY KEY ("Wrestler_ID") +); + +CREATE TABLE "Elimination" ( +"Elimination_ID" text, +"Wrestler_ID" text, +"Team" text, +"Eliminated_By" text, +"Elimination_Move" text, +"Time" text, +PRIMARY KEY ("Elimination_ID"), +FOREIGN KEY ("Wrestler_ID") REFERENCES "wrestler"("Wrestler_ID") +); + +INSERT INTO "wrestler" VALUES (1,"Rey Misterio Sr.","1","344","Tijuana , Mexico","Live event"); +INSERT INTO "wrestler" VALUES (2,"Fishman","1","113","Tijuana , Mexico","Live event"); +INSERT INTO "wrestler" VALUES (3,"Villaño IV","1","1285","Tijuana , Mexico","Live event"); +INSERT INTO "wrestler" VALUES (4,"Gran Hamada","1","960","Tokyo , Japan","Live event"); +INSERT INTO "wrestler" VALUES (5,"El Samurai","1","1","Tokyo , Japan","Live event"); +INSERT INTO "wrestler" VALUES (6,"The Great Sasuke §","1","99","Tokyo , Japan","Live event"); +INSERT INTO "wrestler" VALUES (7,"Último Dragón §","1","54","Osaka , Japan","Live event"); +INSERT INTO "wrestler" VALUES (8,"Jushin Liger §","1","183","Tokyo , Japan","Wrestling World 1997"); +INSERT INTO "wrestler" VALUES (9,"El Samurai §","2","35","Sapporo , Japan","Live event"); +INSERT INTO "wrestler" VALUES (10,"Shinjiro Otani §","1","56","Nagoya , Japan","Live event"); + + +INSERT INTO "Elimination" VALUES ("1",1,"Team Orton","Punk","Go To Sleep","00:11"); +INSERT INTO "Elimination" VALUES ("2",2,"Team Batista","Benjamin","Paydirt","07:38"); +INSERT INTO "Elimination" VALUES ("3",4,"Team Batista","Orton","Rope hung DDT","10:45"); +INSERT INTO "Elimination" VALUES ("4",5,"Team Batista","Rhodes","Silver Spoon DDT","13:06"); +INSERT INTO "Elimination" VALUES ("5",7,"Team Batista","Henry","World's Strongest Slam","14:22"); +INSERT INTO "Elimination" VALUES ("6",9,"Team Orton","Batista","Spear","14:32"); + + diff --git a/database/wrestler/wrestler.sqlite b/database/wrestler/wrestler.sqlite new file mode 100644 index 0000000000000000000000000000000000000000..0ca0f9afd904e8aa9a7944869720274d68d5ceb7 Binary files /dev/null and b/database/wrestler/wrestler.sqlite differ diff --git a/database/wta_1/wta_1.sql b/database/wta_1/wta_1.sql new file mode 100644 index 0000000000000000000000000000000000000000..23f22277f0a542b0e3a4e32c708741d7137bd356 --- /dev/null +++ b/database/wta_1/wta_1.sql @@ -0,0 +1,110 @@ +CRloser_rank_pointsEATE TABLE players( + "player_id" INT PRIMARY KEY, + "first_name" TEXT, + "last_name" TEXT, + "hand" TEXT, + "birth_date" DATE, + "country_code" TEXT +); +CREATE TABLE matches( + "best_of" INT, + "draw_size" INT, + "loser_age" FLOAT, + "loser_entry" TEXT, + "loser_hand" TEXT, + "loser_ht" INT, + "loser_id" INT, + "loser_ioc" TEXT, + "loser_name" TEXT, + "loser_rank" INT, + "loser_rank_points" INT, + "loser_seed" INT, + "match_num" INT, + "minutes" INT, + "round" TEXT, + "score" TEXT, + "surface" TEXT, + "tourney_date" DATE, + "tourney_id" TEXT, + "tourney_level" TEXT, + "tourney_name" TEXT, + "winner_age" FLOAT, + "winner_entry" TEXT, + "winner_hand" TEXT, + "winner_ht" INT, + "winner_id" INT, + "winner_ioc" TEXT, + "winner_name" TEXT, + "winner_rank" INT, + "winner_rank_points" INT, + "winner_seed" INT, + "year" INT, + FOREIGN KEY(loser_id) REFERENCES players(player_id), + FOREIGN KEY(winner_id) REFERENCES players(player_id) +); + + + +CREATE TABLE qualifying_matches( + "best_of" INT, + "draw_size" INT, + "l_1stIn" TEXT, + "l_1stWon" TEXT, + "l_2ndWon" TEXT, + "l_SvGms" TEXT, + "l_ace" TEXT, + "l_bpFaced" TEXT, + "l_bpSaved" TEXT, + "l_df" TEXT, + "l_svpt" TEXT, + "loser_age" FLOAT, + "loser_entry" TEXT, + "loser_hand" TEXT, + "loser_ht" INT, + "loser_id" INT, + "loser_ioc" TEXT, + "loser_name" TEXT, + "loser_rank" INT, + "loser_rank_points" INT, + "loser_seed" INT, + "match_num" INT, + "minutes" INT, + "round" TEXT, + "score" TEXT, + "surface" TEXT, + "tourney_date" DATE, + "tourney_id" TEXT, + "tourney_level" TEXT, + "tourney_name" TEXT, + "w_1stIn" TEXT, + "w_1stWon" TEXT, + "w_2ndWon" TEXT, + "w_SvGms" TEXT, + "w_ace" TEXT, + "w_bpFaced" TEXT, + "w_bpSaved" TEXT, + "w_df" TEXT, + "w_svpt" TEXT, + "winner_age" FLOAT, + "winner_entry" TEXT, + "winner_hand" TEXT, + "winner_ht" INT, + "winner_id" INT, + "winner_ioc" TEXT, + "winner_name" TEXT, + "winner_rank" INT, + "winner_rank_points" INT, + "winner_seed" INT, + "year" INT, + FOREIGN KEY(loser_id) REFERENCES players(player_id), + FOREIGN KEY(winner_id) REFERENCES players(player_id) +); + +CREATE TABLE rankings( + "ranking_date" DATE, + "ranking" INT, + "player_id" INT, + "ranking_points" INT, + "tours" INT, + FOREIGN KEY(player_id) REFERENCES players(player_id) +); diff --git a/database/wta_1/wta_1.sqlite b/database/wta_1/wta_1.sqlite new file mode 100644 index 0000000000000000000000000000000000000000..b95456566add60d50eed6b3eb2710e6952a024ce --- /dev/null +++ b/database/wta_1/wta_1.sqlite @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8f20747456d7748674b4f05432f3de96446ced95b8bd5a6fd01284f6c28f727c +size 104738816 diff --git a/database/yelp/schema.sql b/database/yelp/schema.sql new file mode 100644 index 0000000000000000000000000000000000000000..be171b4957e3993824ba7b3940d08722dbfe337b --- /dev/null +++ b/database/yelp/schema.sql @@ -0,0 +1,70 @@ +PRAGMA foreign_keys = ON; +CREATE TABLE "business" ( +"bid" int, +"business_id" text, +"name" text, +"full_address" text, +"city" text, +"latitude" text, +"longitude" text, +"review_count" int, +"is_open" int, +"rating" real, +"state" text, +primary key("bid") +); +CREATE TABLE "category" ( +"id" int, +"business_id" text, +"category_name" text, +primary key("id"), +foreign key("business_id") references `business`("business_id") +); +CREATE TABLE "user" ( +"uid" int, +"user_id" text, +"name" text, +primary key("uid") +); +CREATE TABLE "checkin" ( +"cid" int, +"business_id" text, +"count" int, +"day" text, +primary key("cid"), +foreign key("business_id") references `business`("business_id") +); + +CREATE TABLE "neighbourhood" ( +"id" int, +"business_id" text, +"neighbourhood_name" text, +primary key("id"), +foreign key("business_id") references `business`("business_id") +); + +CREATE TABLE "review" ( +"rid" int, +"business_id" text, +"user_id" text, +"rating" real, +"text" text, +"year" int, +"month" text, +primary key("rid"), +foreign key("business_id") references `business`("business_id"), +foreign key("user_id") references `user`("user_id") +); +CREATE TABLE "tip" ( +"tip_id" int, +"business_id" text, +"text" text, +"user_id" text, +"likes" int, +"year" int, +"month" text, +primary key("tip_id") +foreign key("business_id") references `business`("business_id"), +foreign key("user_id") references `user`("user_id") + +); diff --git a/database/yelp/yelp.sqlite b/database/yelp/yelp.sqlite new file mode 100644 index 0000000000000000000000000000000000000000..6c07864973ff98c8bb5207ed0bbde6e969c81771 Binary files /dev/null and b/database/yelp/yelp.sqlite differ diff --git a/train.json b/train.json new file mode 100644 index 0000000000000000000000000000000000000000..119882600b9479d2ff5971d59f152898cf295ac3 --- /dev/null +++ b/train.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:51d4a9e9f0df0a4f8d1137967f9982b0b9e9fa383a0aab1146dc4a94104b5bf4 +size 35766181 diff --git a/validation.json b/validation.json new file mode 100644 index 0000000000000000000000000000000000000000..4e0338a32452185fa79fdf38a1f273d86d36fbdf --- /dev/null +++ b/validation.json @@ -0,0 +1,144022 @@ +[ + { + "db_id": "concert_singer", + "query": "SELECT count(*) FROM singer", + "query_toks": [ + "SELECT", + "count", + "(", + "*", + ")", + "FROM", + "singer" + ], + "query_toks_no_value": [ + "select", + "count", + "(", + "*", + ")", + "from", + "singer" + ], + "question": "How many singers do we have?", + "question_toks": [ + "How", + "many", + "singers", + "do", + "we", + "have", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 3, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "concert_singer", + "query": "SELECT count(*) FROM singer", + "query_toks": [ + "SELECT", + "count", + "(", + "*", + ")", + "FROM", + "singer" + ], + "query_toks_no_value": [ + "select", + "count", + "(", + "*", + ")", + "from", + "singer" + ], + "question": "What is the total number of singers?", + "question_toks": [ + "What", + "is", + "the", + "total", + "number", + "of", + "singers", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 3, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "concert_singer", + "query": "SELECT name , country , age FROM singer ORDER BY age DESC", + "query_toks": [ + "SELECT", + "name", + ",", + "country", + ",", + "age", + "FROM", + "singer", + "ORDER", + "BY", + "age", + "DESC" + ], + "query_toks_no_value": [ + "select", + "name", + ",", + "country", + ",", + "age", + "from", + "singer", + "order", + "by", + "age", + "desc" + ], + "question": "Show name, country, age for all singers ordered by age from the oldest to the youngest.", + "question_toks": [ + "Show", + "name", + ",", + "country", + ",", + "age", + "for", + "all", + "singers", + "ordered", + "by", + "age", + "from", + "the", + "oldest", + "to", + "the", + "youngest", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 9, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 10, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 13, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [ + "desc", + [ + [ + 0, + [ + 0, + 13, + false + ], + null + ] + ] + ], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "concert_singer", + "query": "SELECT name , country , age FROM singer ORDER BY age DESC", + "query_toks": [ + "SELECT", + "name", + ",", + "country", + ",", + "age", + "FROM", + "singer", + "ORDER", + "BY", + "age", + "DESC" + ], + "query_toks_no_value": [ + "select", + "name", + ",", + "country", + ",", + "age", + "from", + "singer", + "order", + "by", + "age", + "desc" + ], + "question": "What are the names, countries, and ages for every singer in descending order of age?", + "question_toks": [ + "What", + "are", + "the", + "names", + ",", + "countries", + ",", + "and", + "ages", + "for", + "every", + "singer", + "in", + "descending", + "order", + "of", + "age", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 9, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 10, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 13, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [ + "desc", + [ + [ + 0, + [ + 0, + 13, + false + ], + null + ] + ] + ], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "concert_singer", + "query": "SELECT avg(age) , min(age) , max(age) FROM singer WHERE country = 'France'", + "query_toks": [ + "SELECT", + "avg", + "(", + "age", + ")", + ",", + "min", + "(", + "age", + ")", + ",", + "max", + "(", + "age", + ")", + "FROM", + "singer", + "WHERE", + "country", + "=", + "'France", + "'" + ], + "query_toks_no_value": [ + "select", + "avg", + "(", + "age", + ")", + ",", + "min", + "(", + "age", + ")", + ",", + "max", + "(", + "age", + ")", + "from", + "singer", + "where", + "country", + "=", + "value" + ], + "question": "What is the average, minimum, and maximum age of all singers from France?", + "question_toks": [ + "What", + "is", + "the", + "average", + ",", + "minimum", + ",", + "and", + "maximum", + "age", + "of", + "all", + "singers", + "from", + "France", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 5, + [ + 0, + [ + 0, + 13, + false + ], + null + ] + ], + [ + 2, + [ + 0, + [ + 0, + 13, + false + ], + null + ] + ], + [ + 1, + [ + 0, + [ + 0, + 13, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 10, + false + ], + null + ], + "\"France\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "concert_singer", + "query": "SELECT avg(age) , min(age) , max(age) FROM singer WHERE country = 'France'", + "query_toks": [ + "SELECT", + "avg", + "(", + "age", + ")", + ",", + "min", + "(", + "age", + ")", + ",", + "max", + "(", + "age", + ")", + "FROM", + "singer", + "WHERE", + "country", + "=", + "'France", + "'" + ], + "query_toks_no_value": [ + "select", + "avg", + "(", + "age", + ")", + ",", + "min", + "(", + "age", + ")", + ",", + "max", + "(", + "age", + ")", + "from", + "singer", + "where", + "country", + "=", + "value" + ], + "question": "What is the average, minimum, and maximum age for all French singers?", + "question_toks": [ + "What", + "is", + "the", + "average", + ",", + "minimum", + ",", + "and", + "maximum", + "age", + "for", + "all", + "French", + "singers", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 5, + [ + 0, + [ + 0, + 13, + false + ], + null + ] + ], + [ + 2, + [ + 0, + [ + 0, + 13, + false + ], + null + ] + ], + [ + 1, + [ + 0, + [ + 0, + 13, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 10, + false + ], + null + ], + "\"France\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "concert_singer", + "query": "SELECT song_name , song_release_year FROM singer ORDER BY age LIMIT 1", + "query_toks": [ + "SELECT", + "song_name", + ",", + "song_release_year", + "FROM", + "singer", + "ORDER", + "BY", + "age", + "LIMIT", + "1" + ], + "query_toks_no_value": [ + "select", + "song_name", + ",", + "song_release_year", + "from", + "singer", + "order", + "by", + "age", + "limit", + "value" + ], + "question": "Show the name and the release year of the song by the youngest singer.", + "question_toks": [ + "Show", + "the", + "name", + "and", + "the", + "release", + "year", + "of", + "the", + "song", + "by", + "the", + "youngest", + "singer", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 11, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 12, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [ + "asc", + [ + [ + 0, + [ + 0, + 13, + false + ], + null + ] + ] + ], + "limit": 1, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "concert_singer", + "query": "SELECT song_name , song_release_year FROM singer ORDER BY age LIMIT 1", + "query_toks": [ + "SELECT", + "song_name", + ",", + "song_release_year", + "FROM", + "singer", + "ORDER", + "BY", + "age", + "LIMIT", + "1" + ], + "query_toks_no_value": [ + "select", + "song_name", + ",", + "song_release_year", + "from", + "singer", + "order", + "by", + "age", + "limit", + "value" + ], + "question": "What are the names and release years for all the songs of the youngest singer?", + "question_toks": [ + "What", + "are", + "the", + "names", + "and", + "release", + "years", + "for", + "all", + "the", + "songs", + "of", + "the", + "youngest", + "singer", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 11, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 12, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [ + "asc", + [ + [ + 0, + [ + 0, + 13, + false + ], + null + ] + ] + ], + "limit": 1, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "concert_singer", + "query": "SELECT DISTINCT country FROM singer WHERE age > 20", + "query_toks": [ + "SELECT", + "DISTINCT", + "country", + "FROM", + "singer", + "WHERE", + "age", + ">", + "20" + ], + "query_toks_no_value": [ + "select", + "distinct", + "country", + "from", + "singer", + "where", + "age", + ">", + "value" + ], + "question": "What are all distinct countries where singers above age 20 are from?", + "question_toks": [ + "What", + "are", + "all", + "distinct", + "countries", + "where", + "singers", + "above", + "age", + "20", + "are", + "from", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ] + ], + "conds": [] + }, + "select": [ + true, + [ + [ + 0, + [ + 0, + [ + 0, + 10, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 3, + [ + 0, + [ + 0, + 13, + false + ], + null + ], + 20.0, + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "concert_singer", + "query": "SELECT DISTINCT country FROM singer WHERE age > 20", + "query_toks": [ + "SELECT", + "DISTINCT", + "country", + "FROM", + "singer", + "WHERE", + "age", + ">", + "20" + ], + "query_toks_no_value": [ + "select", + "distinct", + "country", + "from", + "singer", + "where", + "age", + ">", + "value" + ], + "question": "What are the different countries with singers above age 20?", + "question_toks": [ + "What", + "are", + "the", + "different", + "countries", + "with", + "singers", + "above", + "age", + "20", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ] + ], + "conds": [] + }, + "select": [ + true, + [ + [ + 0, + [ + 0, + [ + 0, + 10, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 3, + [ + 0, + [ + 0, + 13, + false + ], + null + ], + 20.0, + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "concert_singer", + "query": "SELECT country , count(*) FROM singer GROUP BY country", + "query_toks": [ + "SELECT", + "country", + ",", + "count", + "(", + "*", + ")", + "FROM", + "singer", + "GROUP", + "BY", + "country" + ], + "query_toks_no_value": [ + "select", + "country", + ",", + "count", + "(", + "*", + ")", + "from", + "singer", + "group", + "by", + "country" + ], + "question": "Show all countries and the number of singers in each country.", + "question_toks": [ + "Show", + "all", + "countries", + "and", + "the", + "number", + "of", + "singers", + "in", + "each", + "country", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 10, + false + ], + null + ] + ], + [ + 3, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 10, + false + ] + ], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "concert_singer", + "query": "SELECT country , count(*) FROM singer GROUP BY country", + "query_toks": [ + "SELECT", + "country", + ",", + "count", + "(", + "*", + ")", + "FROM", + "singer", + "GROUP", + "BY", + "country" + ], + "query_toks_no_value": [ + "select", + "country", + ",", + "count", + "(", + "*", + ")", + "from", + "singer", + "group", + "by", + "country" + ], + "question": "How many singers are from each country?", + "question_toks": [ + "How", + "many", + "singers", + "are", + "from", + "each", + "country", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 10, + false + ], + null + ] + ], + [ + 3, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 10, + false + ] + ], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "concert_singer", + "query": "SELECT song_name FROM singer WHERE age > (SELECT avg(age) FROM singer)", + "query_toks": [ + "SELECT", + "song_name", + "FROM", + "singer", + "WHERE", + "age", + ">", + "(", + "SELECT", + "avg", + "(", + "age", + ")", + "FROM", + "singer", + ")" + ], + "query_toks_no_value": [ + "select", + "song_name", + "from", + "singer", + "where", + "age", + ">", + "(", + "select", + "avg", + "(", + "age", + ")", + "from", + "singer", + ")" + ], + "question": "List all song names by singers above the average age.", + "question_toks": [ + "List", + "all", + "song", + "names", + "by", + "singers", + "above", + "the", + "average", + "age", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 11, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 3, + [ + 0, + [ + 0, + 13, + false + ], + null + ], + { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 5, + [ + 0, + [ + 0, + 13, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + }, + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "concert_singer", + "query": "SELECT song_name FROM singer WHERE age > (SELECT avg(age) FROM singer)", + "query_toks": [ + "SELECT", + "song_name", + "FROM", + "singer", + "WHERE", + "age", + ">", + "(", + "SELECT", + "avg", + "(", + "age", + ")", + "FROM", + "singer", + ")" + ], + "query_toks_no_value": [ + "select", + "song_name", + "from", + "singer", + "where", + "age", + ">", + "(", + "select", + "avg", + "(", + "age", + ")", + "from", + "singer", + ")" + ], + "question": "What are all the song names by singers who are older than average?", + "question_toks": [ + "What", + "are", + "all", + "the", + "song", + "names", + "by", + "singers", + "who", + "are", + "older", + "than", + "average", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 11, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 3, + [ + 0, + [ + 0, + 13, + false + ], + null + ], + { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 5, + [ + 0, + [ + 0, + 13, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + }, + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "concert_singer", + "query": "SELECT LOCATION , name FROM stadium WHERE capacity BETWEEN 5000 AND 10000", + "query_toks": [ + "SELECT", + "LOCATION", + ",", + "name", + "FROM", + "stadium", + "WHERE", + "capacity", + "BETWEEN", + "5000", + "AND", + "10000" + ], + "query_toks_no_value": [ + "select", + "location", + ",", + "name", + "from", + "stadium", + "where", + "capacity", + "between", + "value", + "and", + "value" + ], + "question": "Show location and name for all stadiums with a capacity between 5000 and 10000.", + "question_toks": [ + "Show", + "location", + "and", + "name", + "for", + "all", + "stadiums", + "with", + "a", + "capacity", + "between", + "5000", + "and", + "10000", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 2, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 3, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 1, + [ + 0, + [ + 0, + 4, + false + ], + null + ], + 5000.0, + 10000.0 + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "concert_singer", + "query": "SELECT LOCATION , name FROM stadium WHERE capacity BETWEEN 5000 AND 10000", + "query_toks": [ + "SELECT", + "LOCATION", + ",", + "name", + "FROM", + "stadium", + "WHERE", + "capacity", + "BETWEEN", + "5000", + "AND", + "10000" + ], + "query_toks_no_value": [ + "select", + "location", + ",", + "name", + "from", + "stadium", + "where", + "capacity", + "between", + "value", + "and", + "value" + ], + "question": "What are the locations and names of all stations with capacity between 5000 and 10000?", + "question_toks": [ + "What", + "are", + "the", + "locations", + "and", + "names", + "of", + "all", + "stations", + "with", + "capacity", + "between", + "5000", + "and", + "10000", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 2, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 3, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 1, + [ + 0, + [ + 0, + 4, + false + ], + null + ], + 5000.0, + 10000.0 + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "concert_singer", + "query": "select max(capacity), average from stadium", + "query_toks": [ + "select", + "max", + "(", + "capacity", + ")", + ",", + "average", + "from", + "stadium" + ], + "query_toks_no_value": [ + "select", + "max", + "(", + "capacity", + ")", + ",", + "average", + "from", + "stadium" + ], + "question": "What is the maximum capacity and the average of all stadiums ?", + "question_toks": [ + "What", + "is", + "the", + "maximum", + "capacity", + "and", + "the", + "average", + "of", + "all", + "stadiums", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 1, + [ + 0, + [ + 0, + 4, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 7, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "concert_singer", + "query": "select avg(capacity) , max(capacity) from stadium", + "query_toks": [ + "select", + "avg", + "(", + "capacity", + ")", + ",", + "max", + "(", + "capacity", + ")", + "from", + "stadium" + ], + "query_toks_no_value": [ + "select", + "avg", + "(", + "capacity", + ")", + ",", + "max", + "(", + "capacity", + ")", + "from", + "stadium" + ], + "question": "What is the average and maximum capacities for all stadiums ?", + "question_toks": [ + "What", + "is", + "the", + "average", + "and", + "maximum", + "capacities", + "for", + "all", + "stadiums", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 5, + [ + 0, + [ + 0, + 4, + false + ], + null + ] + ], + [ + 1, + [ + 0, + [ + 0, + 4, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "concert_singer", + "query": "SELECT name , capacity FROM stadium ORDER BY average DESC LIMIT 1", + "query_toks": [ + "SELECT", + "name", + ",", + "capacity", + "FROM", + "stadium", + "ORDER", + "BY", + "average", + "DESC", + "LIMIT", + "1" + ], + "query_toks_no_value": [ + "select", + "name", + ",", + "capacity", + "from", + "stadium", + "order", + "by", + "average", + "desc", + "limit", + "value" + ], + "question": "What is the name and capacity for the stadium with highest average attendance?", + "question_toks": [ + "What", + "is", + "the", + "name", + "and", + "capacity", + "for", + "the", + "stadium", + "with", + "highest", + "average", + "attendance", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 3, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 4, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [ + "desc", + [ + [ + 0, + [ + 0, + 7, + false + ], + null + ] + ] + ], + "limit": 1, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "concert_singer", + "query": "SELECT name , capacity FROM stadium ORDER BY average DESC LIMIT 1", + "query_toks": [ + "SELECT", + "name", + ",", + "capacity", + "FROM", + "stadium", + "ORDER", + "BY", + "average", + "DESC", + "LIMIT", + "1" + ], + "query_toks_no_value": [ + "select", + "name", + ",", + "capacity", + "from", + "stadium", + "order", + "by", + "average", + "desc", + "limit", + "value" + ], + "question": "What is the name and capacity for the stadium with the highest average attendance?", + "question_toks": [ + "What", + "is", + "the", + "name", + "and", + "capacity", + "for", + "the", + "stadium", + "with", + "the", + "highest", + "average", + "attendance", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 3, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 4, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [ + "desc", + [ + [ + 0, + [ + 0, + 7, + false + ], + null + ] + ] + ], + "limit": 1, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "concert_singer", + "query": "SELECT count(*) FROM concert WHERE YEAR = 2014 OR YEAR = 2015", + "query_toks": [ + "SELECT", + "count", + "(", + "*", + ")", + "FROM", + "concert", + "WHERE", + "YEAR", + "=", + "2014", + "OR", + "YEAR", + "=", + "2015" + ], + "query_toks_no_value": [ + "select", + "count", + "(", + "*", + ")", + "from", + "concert", + "where", + "year", + "=", + "value", + "or", + "year", + "=", + "value" + ], + "question": "How many concerts are there in year 2014 or 2015?", + "question_toks": [ + "How", + "many", + "concerts", + "are", + "there", + "in", + "year", + "2014", + "or", + "2015", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 3, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 19, + false + ], + null + ], + 2014.0, + null + ], + "or", + [ + false, + 2, + [ + 0, + [ + 0, + 19, + false + ], + null + ], + 2015.0, + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "concert_singer", + "query": "SELECT count(*) FROM concert WHERE YEAR = 2014 OR YEAR = 2015", + "query_toks": [ + "SELECT", + "count", + "(", + "*", + ")", + "FROM", + "concert", + "WHERE", + "YEAR", + "=", + "2014", + "OR", + "YEAR", + "=", + "2015" + ], + "query_toks_no_value": [ + "select", + "count", + "(", + "*", + ")", + "from", + "concert", + "where", + "year", + "=", + "value", + "or", + "year", + "=", + "value" + ], + "question": "How many concerts occurred in 2014 or 2015?", + "question_toks": [ + "How", + "many", + "concerts", + "occurred", + "in", + "2014", + "or", + "2015", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 3, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 19, + false + ], + null + ], + 2014.0, + null + ], + "or", + [ + false, + 2, + [ + 0, + [ + 0, + 19, + false + ], + null + ], + 2015.0, + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "concert_singer", + "query": "SELECT T2.name , count(*) FROM concert AS T1 JOIN stadium AS T2 ON T1.stadium_id = T2.stadium_id GROUP BY T1.stadium_id", + "query_toks": [ + "SELECT", + "T2.name", + ",", + "count", + "(", + "*", + ")", + "FROM", + "concert", + "AS", + "T1", + "JOIN", + "stadium", + "AS", + "T2", + "ON", + "T1.stadium_id", + "=", + "T2.stadium_id", + "GROUP", + "BY", + "T1.stadium_id" + ], + "query_toks_no_value": [ + "select", + "t2", + ".", + "name", + ",", + "count", + "(", + "*", + ")", + "from", + "concert", + "as", + "t1", + "join", + "stadium", + "as", + "t2", + "on", + "t1", + ".", + "stadium_id", + "=", + "t2", + ".", + "stadium_id", + "group", + "by", + "t1", + ".", + "stadium_id" + ], + "question": "Show the stadium name and the number of concerts in each stadium.", + "question_toks": [ + "Show", + "the", + "stadium", + "name", + "and", + "the", + "number", + "of", + "concerts", + "in", + "each", + "stadium", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ], + [ + "table_unit", + 0 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 18, + false + ], + null + ], + [ + 0, + 1, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 3, + false + ], + null + ] + ], + [ + 3, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 18, + false + ] + ], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "concert_singer", + "query": "SELECT T2.name , count(*) FROM concert AS T1 JOIN stadium AS T2 ON T1.stadium_id = T2.stadium_id GROUP BY T1.stadium_id", + "query_toks": [ + "SELECT", + "T2.name", + ",", + "count", + "(", + "*", + ")", + "FROM", + "concert", + "AS", + "T1", + "JOIN", + "stadium", + "AS", + "T2", + "ON", + "T1.stadium_id", + "=", + "T2.stadium_id", + "GROUP", + "BY", + "T1.stadium_id" + ], + "query_toks_no_value": [ + "select", + "t2", + ".", + "name", + ",", + "count", + "(", + "*", + ")", + "from", + "concert", + "as", + "t1", + "join", + "stadium", + "as", + "t2", + "on", + "t1", + ".", + "stadium_id", + "=", + "t2", + ".", + "stadium_id", + "group", + "by", + "t1", + ".", + "stadium_id" + ], + "question": "For each stadium, how many concerts play there?", + "question_toks": [ + "For", + "each", + "stadium", + ",", + "how", + "many", + "concerts", + "play", + "there", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ], + [ + "table_unit", + 0 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 18, + false + ], + null + ], + [ + 0, + 1, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 3, + false + ], + null + ] + ], + [ + 3, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 18, + false + ] + ], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "concert_singer", + "query": "SELECT T2.name , T2.capacity FROM concert AS T1 JOIN stadium AS T2 ON T1.stadium_id = T2.stadium_id WHERE T1.year >= 2014 GROUP BY T2.stadium_id ORDER BY count(*) DESC LIMIT 1", + "query_toks": [ + "SELECT", + "T2.name", + ",", + "T2.capacity", + "FROM", + "concert", + "AS", + "T1", + "JOIN", + "stadium", + "AS", + "T2", + "ON", + "T1.stadium_id", + "=", + "T2.stadium_id", + "WHERE", + "T1.year", + ">", + "=", + "2014", + "GROUP", + "BY", + "T2.stadium_id", + "ORDER", + "BY", + "count", + "(", + "*", + ")", + "DESC", + "LIMIT", + "1" + ], + "query_toks_no_value": [ + "select", + "t2", + ".", + "name", + ",", + "t2", + ".", + "capacity", + "from", + "concert", + "as", + "t1", + "join", + "stadium", + "as", + "t2", + "on", + "t1", + ".", + "stadium_id", + "=", + "t2", + ".", + "stadium_id", + "where", + "t1", + ".", + "year", + ">", + "=", + "value", + "group", + "by", + "t2", + ".", + "stadium_id", + "order", + "by", + "count", + "(", + "*", + ")", + "desc", + "limit", + "value" + ], + "question": "Show the stadium name and capacity with most number of concerts in year 2014 or after.", + "question_toks": [ + "Show", + "the", + "stadium", + "name", + "and", + "capacity", + "with", + "most", + "number", + "of", + "concerts", + "in", + "year", + "2014", + "or", + "after", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ], + [ + "table_unit", + 0 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 18, + false + ], + null + ], + [ + 0, + 1, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 3, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 4, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 5, + [ + 0, + [ + 0, + 19, + false + ], + null + ], + 2014.0, + null + ] + ], + "groupBy": [ + [ + 0, + 1, + false + ] + ], + "having": [], + "orderBy": [ + "desc", + [ + [ + 0, + [ + 3, + 0, + false + ], + null + ] + ] + ], + "limit": 1, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "concert_singer", + "query": "select t2.name , t2.capacity from concert as t1 join stadium as t2 on t1.stadium_id = t2.stadium_id where t1.year > 2013 group by t2.stadium_id order by count(*) desc limit 1", + "query_toks": [ + "select", + "t2.name", + ",", + "t2.capacity", + "from", + "concert", + "as", + "t1", + "join", + "stadium", + "as", + "t2", + "on", + "t1.stadium_id", + "=", + "t2.stadium_id", + "where", + "t1.year", + ">", + "2013", + "group", + "by", + "t2.stadium_id", + "order", + "by", + "count", + "(", + "*", + ")", + "desc", + "limit", + "1" + ], + "query_toks_no_value": [ + "select", + "t2", + ".", + "name", + ",", + "t2", + ".", + "capacity", + "from", + "concert", + "as", + "t1", + "join", + "stadium", + "as", + "t2", + "on", + "t1", + ".", + "stadium_id", + "=", + "t2", + ".", + "stadium_id", + "where", + "t1", + ".", + "year", + ">", + "value", + "group", + "by", + "t2", + ".", + "stadium_id", + "order", + "by", + "count", + "(", + "*", + ")", + "desc", + "limit", + "value" + ], + "question": "What is the name and capacity of the stadium with the most concerts after 2013 ?", + "question_toks": [ + "What", + "is", + "the", + "name", + "and", + "capacity", + "of", + "the", + "stadium", + "with", + "the", + "most", + "concerts", + "after", + "2013", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ], + [ + "table_unit", + 0 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 18, + false + ], + null + ], + [ + 0, + 1, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 3, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 4, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 3, + [ + 0, + [ + 0, + 19, + false + ], + null + ], + 2013.0, + null + ] + ], + "groupBy": [ + [ + 0, + 1, + false + ] + ], + "having": [], + "orderBy": [ + "desc", + [ + [ + 0, + [ + 3, + 0, + false + ], + null + ] + ] + ], + "limit": 1, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "concert_singer", + "query": "SELECT YEAR FROM concert GROUP BY YEAR ORDER BY count(*) DESC LIMIT 1", + "query_toks": [ + "SELECT", + "YEAR", + "FROM", + "concert", + "GROUP", + "BY", + "YEAR", + "ORDER", + "BY", + "count", + "(", + "*", + ")", + "DESC", + "LIMIT", + "1" + ], + "query_toks_no_value": [ + "select", + "year", + "from", + "concert", + "group", + "by", + "year", + "order", + "by", + "count", + "(", + "*", + ")", + "desc", + "limit", + "value" + ], + "question": "Which year has most number of concerts?", + "question_toks": [ + "Which", + "year", + "has", + "most", + "number", + "of", + "concerts", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 19, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 19, + false + ] + ], + "having": [], + "orderBy": [ + "desc", + [ + [ + 0, + [ + 3, + 0, + false + ], + null + ] + ] + ], + "limit": 1, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "concert_singer", + "query": "SELECT YEAR FROM concert GROUP BY YEAR ORDER BY count(*) DESC LIMIT 1", + "query_toks": [ + "SELECT", + "YEAR", + "FROM", + "concert", + "GROUP", + "BY", + "YEAR", + "ORDER", + "BY", + "count", + "(", + "*", + ")", + "DESC", + "LIMIT", + "1" + ], + "query_toks_no_value": [ + "select", + "year", + "from", + "concert", + "group", + "by", + "year", + "order", + "by", + "count", + "(", + "*", + ")", + "desc", + "limit", + "value" + ], + "question": "What is the year that had the most concerts?", + "question_toks": [ + "What", + "is", + "the", + "year", + "that", + "had", + "the", + "most", + "concerts", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 19, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 19, + false + ] + ], + "having": [], + "orderBy": [ + "desc", + [ + [ + 0, + [ + 3, + 0, + false + ], + null + ] + ] + ], + "limit": 1, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "concert_singer", + "query": "SELECT name FROM stadium WHERE stadium_id NOT IN (SELECT stadium_id FROM concert)", + "query_toks": [ + "SELECT", + "name", + "FROM", + "stadium", + "WHERE", + "stadium_id", + "NOT", + "IN", + "(", + "SELECT", + "stadium_id", + "FROM", + "concert", + ")" + ], + "query_toks_no_value": [ + "select", + "name", + "from", + "stadium", + "where", + "stadium_id", + "not", + "in", + "(", + "select", + "stadium_id", + "from", + "concert", + ")" + ], + "question": "Show the stadium names without any concert.", + "question_toks": [ + "Show", + "the", + "stadium", + "names", + "without", + "any", + "concert", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 3, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + true, + 8, + [ + 0, + [ + 0, + 1, + false + ], + null + ], + { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 18, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + }, + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "concert_singer", + "query": "SELECT name FROM stadium WHERE stadium_id NOT IN (SELECT stadium_id FROM concert)", + "query_toks": [ + "SELECT", + "name", + "FROM", + "stadium", + "WHERE", + "stadium_id", + "NOT", + "IN", + "(", + "SELECT", + "stadium_id", + "FROM", + "concert", + ")" + ], + "query_toks_no_value": [ + "select", + "name", + "from", + "stadium", + "where", + "stadium_id", + "not", + "in", + "(", + "select", + "stadium_id", + "from", + "concert", + ")" + ], + "question": "What are the names of the stadiums without any concerts?", + "question_toks": [ + "What", + "are", + "the", + "names", + "of", + "the", + "stadiums", + "without", + "any", + "concerts", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 3, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + true, + 8, + [ + 0, + [ + 0, + 1, + false + ], + null + ], + { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 18, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + }, + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "concert_singer", + "query": "SELECT country FROM singer WHERE age > 40 INTERSECT SELECT country FROM singer WHERE age < 30", + "query_toks": [ + "SELECT", + "country", + "FROM", + "singer", + "WHERE", + "age", + ">", + "40", + "INTERSECT", + "SELECT", + "country", + "FROM", + "singer", + "WHERE", + "age", + "<", + "30" + ], + "query_toks_no_value": [ + "select", + "country", + "from", + "singer", + "where", + "age", + ">", + "value", + "intersect", + "select", + "country", + "from", + "singer", + "where", + "age", + "<", + "value" + ], + "question": "Show countries where a singer above age 40 and a singer below 30 are from.", + "question_toks": [ + "Show", + "countries", + "where", + "a", + "singer", + "above", + "age", + "40", + "and", + "a", + "singer", + "below", + "30", + "are", + "from", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 10, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 3, + [ + 0, + [ + 0, + 13, + false + ], + null + ], + 40.0, + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 10, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 4, + [ + 0, + [ + 0, + 13, + false + ], + null + ], + 30.0, + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + }, + "union": null, + "except": null + } + }, + { + "db_id": "concert_singer", + "query": "SELECT name FROM stadium EXCEPT SELECT T2.name FROM concert AS T1 JOIN stadium AS T2 ON T1.stadium_id = T2.stadium_id WHERE T1.year = 2014", + "query_toks": [ + "SELECT", + "name", + "FROM", + "stadium", + "EXCEPT", + "SELECT", + "T2.name", + "FROM", + "concert", + "AS", + "T1", + "JOIN", + "stadium", + "AS", + "T2", + "ON", + "T1.stadium_id", + "=", + "T2.stadium_id", + "WHERE", + "T1.year", + "=", + "2014" + ], + "query_toks_no_value": [ + "select", + "name", + "from", + "stadium", + "except", + "select", + "t2", + ".", + "name", + "from", + "concert", + "as", + "t1", + "join", + "stadium", + "as", + "t2", + "on", + "t1", + ".", + "stadium_id", + "=", + "t2", + ".", + "stadium_id", + "where", + "t1", + ".", + "year", + "=", + "value" + ], + "question": "Show names for all stadiums except for stadiums having a concert in year 2014.", + "question_toks": [ + "Show", + "names", + "for", + "all", + "stadiums", + "except", + "for", + "stadiums", + "having", + "a", + "concert", + "in", + "year", + "2014", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 3, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ], + [ + "table_unit", + 0 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 18, + false + ], + null + ], + [ + 0, + 1, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 3, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 19, + false + ], + null + ], + 2014.0, + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + } + }, + { + "db_id": "concert_singer", + "query": "SELECT name FROM stadium EXCEPT SELECT T2.name FROM concert AS T1 JOIN stadium AS T2 ON T1.stadium_id = T2.stadium_id WHERE T1.year = 2014", + "query_toks": [ + "SELECT", + "name", + "FROM", + "stadium", + "EXCEPT", + "SELECT", + "T2.name", + "FROM", + "concert", + "AS", + "T1", + "JOIN", + "stadium", + "AS", + "T2", + "ON", + "T1.stadium_id", + "=", + "T2.stadium_id", + "WHERE", + "T1.year", + "=", + "2014" + ], + "query_toks_no_value": [ + "select", + "name", + "from", + "stadium", + "except", + "select", + "t2", + ".", + "name", + "from", + "concert", + "as", + "t1", + "join", + "stadium", + "as", + "t2", + "on", + "t1", + ".", + "stadium_id", + "=", + "t2", + ".", + "stadium_id", + "where", + "t1", + ".", + "year", + "=", + "value" + ], + "question": "What are the names of all stadiums that did not have a concert in 2014?", + "question_toks": [ + "What", + "are", + "the", + "names", + "of", + "all", + "stadiums", + "that", + "did", + "not", + "have", + "a", + "concert", + "in", + "2014", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 3, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ], + [ + "table_unit", + 0 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 18, + false + ], + null + ], + [ + 0, + 1, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 3, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 19, + false + ], + null + ], + 2014.0, + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + } + }, + { + "db_id": "concert_singer", + "query": "SELECT T2.concert_name , T2.theme , count(*) FROM singer_in_concert AS T1 JOIN concert AS T2 ON T1.concert_id = T2.concert_id GROUP BY T2.concert_id", + "query_toks": [ + "SELECT", + "T2.concert_name", + ",", + "T2.theme", + ",", + "count", + "(", + "*", + ")", + "FROM", + "singer_in_concert", + "AS", + "T1", + "JOIN", + "concert", + "AS", + "T2", + "ON", + "T1.concert_id", + "=", + "T2.concert_id", + "GROUP", + "BY", + "T2.concert_id" + ], + "query_toks_no_value": [ + "select", + "t2", + ".", + "concert_name", + ",", + "t2", + ".", + "theme", + ",", + "count", + "(", + "*", + ")", + "from", + "singer_in_concert", + "as", + "t1", + "join", + "concert", + "as", + "t2", + "on", + "t1", + ".", + "concert_id", + "=", + "t2", + ".", + "concert_id", + "group", + "by", + "t2", + ".", + "concert_id" + ], + "question": "Show the name and theme for all concerts and the number of singers in each concert.", + "question_toks": [ + "Show", + "the", + "name", + "and", + "theme", + "for", + "all", + "concerts", + "and", + "the", + "number", + "of", + "singers", + "in", + "each", + "concert", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 3 + ], + [ + "table_unit", + 2 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 20, + false + ], + null + ], + [ + 0, + 15, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 16, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 17, + false + ], + null + ] + ], + [ + 3, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 15, + false + ] + ], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "concert_singer", + "query": "select t2.concert_name , t2.theme , count(*) from singer_in_concert as t1 join concert as t2 on t1.concert_id = t2.concert_id group by t2.concert_id", + "query_toks": [ + "select", + "t2.concert_name", + ",", + "t2.theme", + ",", + "count", + "(", + "*", + ")", + "from", + "singer_in_concert", + "as", + "t1", + "join", + "concert", + "as", + "t2", + "on", + "t1.concert_id", + "=", + "t2.concert_id", + "group", + "by", + "t2.concert_id" + ], + "query_toks_no_value": [ + "select", + "t2", + ".", + "concert_name", + ",", + "t2", + ".", + "theme", + ",", + "count", + "(", + "*", + ")", + "from", + "singer_in_concert", + "as", + "t1", + "join", + "concert", + "as", + "t2", + "on", + "t1", + ".", + "concert_id", + "=", + "t2", + ".", + "concert_id", + "group", + "by", + "t2", + ".", + "concert_id" + ], + "question": "What are the names , themes , and number of singers for every concert ?", + "question_toks": [ + "What", + "are", + "the", + "names", + ",", + "themes", + ",", + "and", + "number", + "of", + "singers", + "for", + "every", + "concert", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 3 + ], + [ + "table_unit", + 2 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 20, + false + ], + null + ], + [ + 0, + 15, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 16, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 17, + false + ], + null + ] + ], + [ + 3, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 15, + false + ] + ], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "concert_singer", + "query": "SELECT T2.name , count(*) FROM singer_in_concert AS T1 JOIN singer AS T2 ON T1.singer_id = T2.singer_id GROUP BY T2.singer_id", + "query_toks": [ + "SELECT", + "T2.name", + ",", + "count", + "(", + "*", + ")", + "FROM", + "singer_in_concert", + "AS", + "T1", + "JOIN", + "singer", + "AS", + "T2", + "ON", + "T1.singer_id", + "=", + "T2.singer_id", + "GROUP", + "BY", + "T2.singer_id" + ], + "query_toks_no_value": [ + "select", + "t2", + ".", + "name", + ",", + "count", + "(", + "*", + ")", + "from", + "singer_in_concert", + "as", + "t1", + "join", + "singer", + "as", + "t2", + "on", + "t1", + ".", + "singer_id", + "=", + "t2", + ".", + "singer_id", + "group", + "by", + "t2", + ".", + "singer_id" + ], + "question": "List singer names and number of concerts for each singer.", + "question_toks": [ + "List", + "singer", + "names", + "and", + "number", + "of", + "concerts", + "for", + "each", + "singer", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 3 + ], + [ + "table_unit", + 1 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 21, + false + ], + null + ], + [ + 0, + 8, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 9, + false + ], + null + ] + ], + [ + 3, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 8, + false + ] + ], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "concert_singer", + "query": "SELECT T2.name , count(*) FROM singer_in_concert AS T1 JOIN singer AS T2 ON T1.singer_id = T2.singer_id GROUP BY T2.singer_id", + "query_toks": [ + "SELECT", + "T2.name", + ",", + "count", + "(", + "*", + ")", + "FROM", + "singer_in_concert", + "AS", + "T1", + "JOIN", + "singer", + "AS", + "T2", + "ON", + "T1.singer_id", + "=", + "T2.singer_id", + "GROUP", + "BY", + "T2.singer_id" + ], + "query_toks_no_value": [ + "select", + "t2", + ".", + "name", + ",", + "count", + "(", + "*", + ")", + "from", + "singer_in_concert", + "as", + "t1", + "join", + "singer", + "as", + "t2", + "on", + "t1", + ".", + "singer_id", + "=", + "t2", + ".", + "singer_id", + "group", + "by", + "t2", + ".", + "singer_id" + ], + "question": "What are the names of the singers and number of concerts for each person?", + "question_toks": [ + "What", + "are", + "the", + "names", + "of", + "the", + "singers", + "and", + "number", + "of", + "concerts", + "for", + "each", + "person", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 3 + ], + [ + "table_unit", + 1 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 21, + false + ], + null + ], + [ + 0, + 8, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 9, + false + ], + null + ] + ], + [ + 3, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 8, + false + ] + ], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "concert_singer", + "query": "SELECT T2.name FROM singer_in_concert AS T1 JOIN singer AS T2 ON T1.singer_id = T2.singer_id JOIN concert AS T3 ON T1.concert_id = T3.concert_id WHERE T3.year = 2014", + "query_toks": [ + "SELECT", + "T2.name", + "FROM", + "singer_in_concert", + "AS", + "T1", + "JOIN", + "singer", + "AS", + "T2", + "ON", + "T1.singer_id", + "=", + "T2.singer_id", + "JOIN", + "concert", + "AS", + "T3", + "ON", + "T1.concert_id", + "=", + "T3.concert_id", + "WHERE", + "T3.year", + "=", + "2014" + ], + "query_toks_no_value": [ + "select", + "t2", + ".", + "name", + "from", + "singer_in_concert", + "as", + "t1", + "join", + "singer", + "as", + "t2", + "on", + "t1", + ".", + "singer_id", + "=", + "t2", + ".", + "singer_id", + "join", + "concert", + "as", + "t3", + "on", + "t1", + ".", + "concert_id", + "=", + "t3", + ".", + "concert_id", + "where", + "t3", + ".", + "year", + "=", + "value" + ], + "question": "List all singer names in concerts in year 2014.", + "question_toks": [ + "List", + "all", + "singer", + "names", + "in", + "concerts", + "in", + "year", + "2014", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 3 + ], + [ + "table_unit", + 1 + ], + [ + "table_unit", + 2 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 21, + false + ], + null + ], + [ + 0, + 8, + false + ], + null + ], + "and", + [ + false, + 2, + [ + 0, + [ + 0, + 20, + false + ], + null + ], + [ + 0, + 15, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 9, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 19, + false + ], + null + ], + 2014.0, + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "concert_singer", + "query": "SELECT T2.name FROM singer_in_concert AS T1 JOIN singer AS T2 ON T1.singer_id = T2.singer_id JOIN concert AS T3 ON T1.concert_id = T3.concert_id WHERE T3.year = 2014", + "query_toks": [ + "SELECT", + "T2.name", + "FROM", + "singer_in_concert", + "AS", + "T1", + "JOIN", + "singer", + "AS", + "T2", + "ON", + "T1.singer_id", + "=", + "T2.singer_id", + "JOIN", + "concert", + "AS", + "T3", + "ON", + "T1.concert_id", + "=", + "T3.concert_id", + "WHERE", + "T3.year", + "=", + "2014" + ], + "query_toks_no_value": [ + "select", + "t2", + ".", + "name", + "from", + "singer_in_concert", + "as", + "t1", + "join", + "singer", + "as", + "t2", + "on", + "t1", + ".", + "singer_id", + "=", + "t2", + ".", + "singer_id", + "join", + "concert", + "as", + "t3", + "on", + "t1", + ".", + "concert_id", + "=", + "t3", + ".", + "concert_id", + "where", + "t3", + ".", + "year", + "=", + "value" + ], + "question": "What are the names of the singers who performed in a concert in 2014?", + "question_toks": [ + "What", + "are", + "the", + "names", + "of", + "the", + "singers", + "who", + "performed", + "in", + "a", + "concert", + "in", + "2014", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 3 + ], + [ + "table_unit", + 1 + ], + [ + "table_unit", + 2 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 21, + false + ], + null + ], + [ + 0, + 8, + false + ], + null + ], + "and", + [ + false, + 2, + [ + 0, + [ + 0, + 20, + false + ], + null + ], + [ + 0, + 15, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 9, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 19, + false + ], + null + ], + 2014.0, + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "concert_singer", + "query": "SELECT name , country FROM singer WHERE song_name LIKE '%Hey%'", + "query_toks": [ + "SELECT", + "name", + ",", + "country", + "FROM", + "singer", + "WHERE", + "song_name", + "LIKE", + "'", + "%", + "Hey", + "%", + "'" + ], + "query_toks_no_value": [ + "select", + "name", + ",", + "country", + "from", + "singer", + "where", + "song_name", + "like", + "value" + ], + "question": "what is the name and nation of the singer who have a song having 'Hey' in its name?", + "question_toks": [ + "what", + "is", + "the", + "name", + "and", + "nation", + "of", + "the", + "singer", + "who", + "have", + "a", + "song", + "having", + "'Hey", + "'", + "in", + "its", + "name", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 9, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 10, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 9, + [ + 0, + [ + 0, + 11, + false + ], + null + ], + "\"%Hey%\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "concert_singer", + "query": "SELECT name , country FROM singer WHERE song_name LIKE '%Hey%'", + "query_toks": [ + "SELECT", + "name", + ",", + "country", + "FROM", + "singer", + "WHERE", + "song_name", + "LIKE", + "'", + "%", + "Hey", + "%", + "'" + ], + "query_toks_no_value": [ + "select", + "name", + ",", + "country", + "from", + "singer", + "where", + "song_name", + "like", + "value" + ], + "question": "What is the name and country of origin of every singer who has a song with the word 'Hey' in its title?", + "question_toks": [ + "What", + "is", + "the", + "name", + "and", + "country", + "of", + "origin", + "of", + "every", + "singer", + "who", + "has", + "a", + "song", + "with", + "the", + "word", + "'Hey", + "'", + "in", + "its", + "title", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 9, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 10, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 9, + [ + 0, + [ + 0, + 11, + false + ], + null + ], + "\"%Hey%\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "concert_singer", + "query": "SELECT T2.name , T2.location FROM concert AS T1 JOIN stadium AS T2 ON T1.stadium_id = T2.stadium_id WHERE T1.Year = 2014 INTERSECT SELECT T2.name , T2.location FROM concert AS T1 JOIN stadium AS T2 ON T1.stadium_id = T2.stadium_id WHERE T1.Year = 2015", + "query_toks": [ + "SELECT", + "T2.name", + ",", + "T2.location", + "FROM", + "concert", + "AS", + "T1", + "JOIN", + "stadium", + "AS", + "T2", + "ON", + "T1.stadium_id", + "=", + "T2.stadium_id", + "WHERE", + "T1.Year", + "=", + "2014", + "INTERSECT", + "SELECT", + "T2.name", + ",", + "T2.location", + "FROM", + "concert", + "AS", + "T1", + "JOIN", + "stadium", + "AS", + "T2", + "ON", + "T1.stadium_id", + "=", + "T2.stadium_id", + "WHERE", + "T1.Year", + "=", + "2015" + ], + "query_toks_no_value": [ + "select", + "t2", + ".", + "name", + ",", + "t2", + ".", + "location", + "from", + "concert", + "as", + "t1", + "join", + "stadium", + "as", + "t2", + "on", + "t1", + ".", + "stadium_id", + "=", + "t2", + ".", + "stadium_id", + "where", + "t1", + ".", + "year", + "=", + "value", + "intersect", + "select", + "t2", + ".", + "name", + ",", + "t2", + ".", + "location", + "from", + "concert", + "as", + "t1", + "join", + "stadium", + "as", + "t2", + "on", + "t1", + ".", + "stadium_id", + "=", + "t2", + ".", + "stadium_id", + "where", + "t1", + ".", + "year", + "=", + "value" + ], + "question": "Find the name and location of the stadiums which some concerts happened in the years of both 2014 and 2015.", + "question_toks": [ + "Find", + "the", + "name", + "and", + "location", + "of", + "the", + "stadiums", + "which", + "some", + "concerts", + "happened", + "in", + "the", + "years", + "of", + "both", + "2014", + "and", + "2015", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ], + [ + "table_unit", + 0 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 18, + false + ], + null + ], + [ + 0, + 1, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 3, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 2, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 19, + false + ], + null + ], + 2014.0, + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ], + [ + "table_unit", + 0 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 18, + false + ], + null + ], + [ + 0, + 1, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 3, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 2, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 19, + false + ], + null + ], + 2015.0, + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + }, + "union": null, + "except": null + } + }, + { + "db_id": "concert_singer", + "query": "SELECT T2.name , T2.location FROM concert AS T1 JOIN stadium AS T2 ON T1.stadium_id = T2.stadium_id WHERE T1.Year = 2014 INTERSECT SELECT T2.name , T2.location FROM concert AS T1 JOIN stadium AS T2 ON T1.stadium_id = T2.stadium_id WHERE T1.Year = 2015", + "query_toks": [ + "SELECT", + "T2.name", + ",", + "T2.location", + "FROM", + "concert", + "AS", + "T1", + "JOIN", + "stadium", + "AS", + "T2", + "ON", + "T1.stadium_id", + "=", + "T2.stadium_id", + "WHERE", + "T1.Year", + "=", + "2014", + "INTERSECT", + "SELECT", + "T2.name", + ",", + "T2.location", + "FROM", + "concert", + "AS", + "T1", + "JOIN", + "stadium", + "AS", + "T2", + "ON", + "T1.stadium_id", + "=", + "T2.stadium_id", + "WHERE", + "T1.Year", + "=", + "2015" + ], + "query_toks_no_value": [ + "select", + "t2", + ".", + "name", + ",", + "t2", + ".", + "location", + "from", + "concert", + "as", + "t1", + "join", + "stadium", + "as", + "t2", + "on", + "t1", + ".", + "stadium_id", + "=", + "t2", + ".", + "stadium_id", + "where", + "t1", + ".", + "year", + "=", + "value", + "intersect", + "select", + "t2", + ".", + "name", + ",", + "t2", + ".", + "location", + "from", + "concert", + "as", + "t1", + "join", + "stadium", + "as", + "t2", + "on", + "t1", + ".", + "stadium_id", + "=", + "t2", + ".", + "stadium_id", + "where", + "t1", + ".", + "year", + "=", + "value" + ], + "question": "What are the names and locations of the stadiums that had concerts that occurred in both 2014 and 2015?", + "question_toks": [ + "What", + "are", + "the", + "names", + "and", + "locations", + "of", + "the", + "stadiums", + "that", + "had", + "concerts", + "that", + "occurred", + "in", + "both", + "2014", + "and", + "2015", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ], + [ + "table_unit", + 0 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 18, + false + ], + null + ], + [ + 0, + 1, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 3, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 2, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 19, + false + ], + null + ], + 2014.0, + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ], + [ + "table_unit", + 0 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 18, + false + ], + null + ], + [ + 0, + 1, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 3, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 2, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 19, + false + ], + null + ], + 2015.0, + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + }, + "union": null, + "except": null + } + }, + { + "db_id": "concert_singer", + "query": "select count(*) from concert where stadium_id = (select stadium_id from stadium order by capacity desc limit 1)", + "query_toks": [ + "select", + "count", + "(", + "*", + ")", + "from", + "concert", + "where", + "stadium_id", + "=", + "(", + "select", + "stadium_id", + "from", + "stadium", + "order", + "by", + "capacity", + "desc", + "limit", + "1", + ")" + ], + "query_toks_no_value": [ + "select", + "count", + "(", + "*", + ")", + "from", + "concert", + "where", + "stadium_id", + "=", + "(", + "select", + "stadium_id", + "from", + "stadium", + "order", + "by", + "capacity", + "desc", + "limit", + "value", + ")" + ], + "question": "Find the number of concerts happened in the stadium with the highest capacity .", + "question_toks": [ + "Find", + "the", + "number", + "of", + "concerts", + "happened", + "in", + "the", + "stadium", + "with", + "the", + "highest", + "capacity", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 3, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 18, + false + ], + null + ], + { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 1, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [ + "desc", + [ + [ + 0, + [ + 0, + 4, + false + ], + null + ] + ] + ], + "limit": 1, + "intersect": null, + "union": null, + "except": null + }, + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "concert_singer", + "query": "select count(*) from concert where stadium_id = (select stadium_id from stadium order by capacity desc limit 1)", + "query_toks": [ + "select", + "count", + "(", + "*", + ")", + "from", + "concert", + "where", + "stadium_id", + "=", + "(", + "select", + "stadium_id", + "from", + "stadium", + "order", + "by", + "capacity", + "desc", + "limit", + "1", + ")" + ], + "query_toks_no_value": [ + "select", + "count", + "(", + "*", + ")", + "from", + "concert", + "where", + "stadium_id", + "=", + "(", + "select", + "stadium_id", + "from", + "stadium", + "order", + "by", + "capacity", + "desc", + "limit", + "value", + ")" + ], + "question": "What are the number of concerts that occurred in the stadium with the largest capacity ?", + "question_toks": [ + "What", + "are", + "the", + "number", + "of", + "concerts", + "that", + "occurred", + "in", + "the", + "stadium", + "with", + "the", + "largest", + "capacity", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 3, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 18, + false + ], + null + ], + { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 1, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [ + "desc", + [ + [ + 0, + [ + 0, + 4, + false + ], + null + ] + ] + ], + "limit": 1, + "intersect": null, + "union": null, + "except": null + }, + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "pets_1", + "query": "SELECT count(*) FROM pets WHERE weight > 10", + "query_toks": [ + "SELECT", + "count", + "(", + "*", + ")", + "FROM", + "pets", + "WHERE", + "weight", + ">", + "10" + ], + "query_toks_no_value": [ + "select", + "count", + "(", + "*", + ")", + "from", + "pets", + "where", + "weight", + ">", + "value" + ], + "question": "Find the number of pets whose weight is heavier than 10.", + "question_toks": [ + "Find", + "the", + "number", + "of", + "pets", + "whose", + "weight", + "is", + "heavier", + "than", + "10", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 3, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 3, + [ + 0, + [ + 0, + 14, + false + ], + null + ], + 10.0, + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "pets_1", + "query": "SELECT count(*) FROM pets WHERE weight > 10", + "query_toks": [ + "SELECT", + "count", + "(", + "*", + ")", + "FROM", + "pets", + "WHERE", + "weight", + ">", + "10" + ], + "query_toks_no_value": [ + "select", + "count", + "(", + "*", + ")", + "from", + "pets", + "where", + "weight", + ">", + "value" + ], + "question": "How many pets have a greater weight than 10?", + "question_toks": [ + "How", + "many", + "pets", + "have", + "a", + "greater", + "weight", + "than", + "10", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 3, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 3, + [ + 0, + [ + 0, + 14, + false + ], + null + ], + 10.0, + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "pets_1", + "query": "SELECT weight FROM pets ORDER BY pet_age LIMIT 1", + "query_toks": [ + "SELECT", + "weight", + "FROM", + "pets", + "ORDER", + "BY", + "pet_age", + "LIMIT", + "1" + ], + "query_toks_no_value": [ + "select", + "weight", + "from", + "pets", + "order", + "by", + "pet_age", + "limit", + "value" + ], + "question": "Find the weight of the youngest dog.", + "question_toks": [ + "Find", + "the", + "weight", + "of", + "the", + "youngest", + "dog", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 14, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [ + "asc", + [ + [ + 0, + [ + 0, + 13, + false + ], + null + ] + ] + ], + "limit": 1, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "pets_1", + "query": "SELECT weight FROM pets ORDER BY pet_age LIMIT 1", + "query_toks": [ + "SELECT", + "weight", + "FROM", + "pets", + "ORDER", + "BY", + "pet_age", + "LIMIT", + "1" + ], + "query_toks_no_value": [ + "select", + "weight", + "from", + "pets", + "order", + "by", + "pet_age", + "limit", + "value" + ], + "question": "How much does the youngest dog weigh?", + "question_toks": [ + "How", + "much", + "does", + "the", + "youngest", + "dog", + "weigh", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 14, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [ + "asc", + [ + [ + 0, + [ + 0, + 13, + false + ], + null + ] + ] + ], + "limit": 1, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "pets_1", + "query": "SELECT max(weight) , petType FROM pets GROUP BY petType", + "query_toks": [ + "SELECT", + "max", + "(", + "weight", + ")", + ",", + "petType", + "FROM", + "pets", + "GROUP", + "BY", + "petType" + ], + "query_toks_no_value": [ + "select", + "max", + "(", + "weight", + ")", + ",", + "pettype", + "from", + "pets", + "group", + "by", + "pettype" + ], + "question": "Find the maximum weight for each type of pet. List the maximum weight and pet type.", + "question_toks": [ + "Find", + "the", + "maximum", + "weight", + "for", + "each", + "type", + "of", + "pet", + ".", + "List", + "the", + "maximum", + "weight", + "and", + "pet", + "type", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 1, + [ + 0, + [ + 0, + 14, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 12, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 12, + false + ] + ], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "pets_1", + "query": "SELECT max(weight) , petType FROM pets GROUP BY petType", + "query_toks": [ + "SELECT", + "max", + "(", + "weight", + ")", + ",", + "petType", + "FROM", + "pets", + "GROUP", + "BY", + "petType" + ], + "query_toks_no_value": [ + "select", + "max", + "(", + "weight", + ")", + ",", + "pettype", + "from", + "pets", + "group", + "by", + "pettype" + ], + "question": "List the maximum weight and type for each type of pet.", + "question_toks": [ + "List", + "the", + "maximum", + "weight", + "and", + "type", + "for", + "each", + "type", + "of", + "pet", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 1, + [ + 0, + [ + 0, + 14, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 12, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 12, + false + ] + ], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "pets_1", + "query": "SELECT count(*) FROM student AS T1 JOIN has_pet AS T2 ON T1.stuid = T2.stuid WHERE T1.age > 20", + "query_toks": [ + "SELECT", + "count", + "(", + "*", + ")", + "FROM", + "student", + "AS", + "T1", + "JOIN", + "has_pet", + "AS", + "T2", + "ON", + "T1.stuid", + "=", + "T2.stuid", + "WHERE", + "T1.age", + ">", + "20" + ], + "query_toks_no_value": [ + "select", + "count", + "(", + "*", + ")", + "from", + "student", + "as", + "t1", + "join", + "has_pet", + "as", + "t2", + "on", + "t1", + ".", + "stuid", + "=", + "t2", + ".", + "stuid", + "where", + "t1", + ".", + "age", + ">", + "value" + ], + "question": "Find number of pets owned by students who are older than 20.", + "question_toks": [ + "Find", + "number", + "of", + "pets", + "owned", + "by", + "students", + "who", + "are", + "older", + "than", + "20", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ], + [ + "table_unit", + 1 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 1, + false + ], + null + ], + [ + 0, + 9, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 3, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 3, + [ + 0, + [ + 0, + 4, + false + ], + null + ], + 20.0, + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "pets_1", + "query": "SELECT count(*) FROM student AS T1 JOIN has_pet AS T2 ON T1.stuid = T2.stuid WHERE T1.age > 20", + "query_toks": [ + "SELECT", + "count", + "(", + "*", + ")", + "FROM", + "student", + "AS", + "T1", + "JOIN", + "has_pet", + "AS", + "T2", + "ON", + "T1.stuid", + "=", + "T2.stuid", + "WHERE", + "T1.age", + ">", + "20" + ], + "query_toks_no_value": [ + "select", + "count", + "(", + "*", + ")", + "from", + "student", + "as", + "t1", + "join", + "has_pet", + "as", + "t2", + "on", + "t1", + ".", + "stuid", + "=", + "t2", + ".", + "stuid", + "where", + "t1", + ".", + "age", + ">", + "value" + ], + "question": "How many pets are owned by students that have an age greater than 20?", + "question_toks": [ + "How", + "many", + "pets", + "are", + "owned", + "by", + "students", + "that", + "have", + "an", + "age", + "greater", + "than", + "20", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ], + [ + "table_unit", + 1 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 1, + false + ], + null + ], + [ + 0, + 9, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 3, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 3, + [ + 0, + [ + 0, + 4, + false + ], + null + ], + 20.0, + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "pets_1", + "query": "SELECT count(*) FROM student AS T1 JOIN has_pet AS T2 ON T1.stuid = T2.stuid JOIN pets AS T3 ON T2.petid = T3.petid WHERE T1.sex = 'F' AND T3.pettype = 'dog'", + "query_toks": [ + "SELECT", + "count", + "(", + "*", + ")", + "FROM", + "student", + "AS", + "T1", + "JOIN", + "has_pet", + "AS", + "T2", + "ON", + "T1.stuid", + "=", + "T2.stuid", + "JOIN", + "pets", + "AS", + "T3", + "ON", + "T2.petid", + "=", + "T3.petid", + "WHERE", + "T1.sex", + "=", + "'F", + "'", + "AND", + "T3.pettype", + "=", + "'dog", + "'" + ], + "query_toks_no_value": [ + "select", + "count", + "(", + "*", + ")", + "from", + "student", + "as", + "t1", + "join", + "has_pet", + "as", + "t2", + "on", + "t1", + ".", + "stuid", + "=", + "t2", + ".", + "stuid", + "join", + "pets", + "as", + "t3", + "on", + "t2", + ".", + "petid", + "=", + "t3", + ".", + "petid", + "where", + "t1", + ".", + "sex", + "=", + "value", + "and", + "t3", + ".", + "pettype", + "=", + "value" + ], + "question": "Find the number of dog pets that are raised by female students (with sex F).", + "question_toks": [ + "Find", + "the", + "number", + "of", + "dog", + "pets", + "that", + "are", + "raised", + "by", + "female", + "students", + "(", + "with", + "sex", + "F", + ")", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ], + [ + "table_unit", + 1 + ], + [ + "table_unit", + 2 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 1, + false + ], + null + ], + [ + 0, + 9, + false + ], + null + ], + "and", + [ + false, + 2, + [ + 0, + [ + 0, + 10, + false + ], + null + ], + [ + 0, + 11, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 3, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 5, + false + ], + null + ], + "\"F\"", + null + ], + "and", + [ + false, + 2, + [ + 0, + [ + 0, + 12, + false + ], + null + ], + "\"dog\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "pets_1", + "query": "SELECT count(*) FROM student AS T1 JOIN has_pet AS T2 ON T1.stuid = T2.stuid JOIN pets AS T3 ON T2.petid = T3.petid WHERE T1.sex = 'F' AND T3.pettype = 'dog'", + "query_toks": [ + "SELECT", + "count", + "(", + "*", + ")", + "FROM", + "student", + "AS", + "T1", + "JOIN", + "has_pet", + "AS", + "T2", + "ON", + "T1.stuid", + "=", + "T2.stuid", + "JOIN", + "pets", + "AS", + "T3", + "ON", + "T2.petid", + "=", + "T3.petid", + "WHERE", + "T1.sex", + "=", + "'F", + "'", + "AND", + "T3.pettype", + "=", + "'dog", + "'" + ], + "query_toks_no_value": [ + "select", + "count", + "(", + "*", + ")", + "from", + "student", + "as", + "t1", + "join", + "has_pet", + "as", + "t2", + "on", + "t1", + ".", + "stuid", + "=", + "t2", + ".", + "stuid", + "join", + "pets", + "as", + "t3", + "on", + "t2", + ".", + "petid", + "=", + "t3", + ".", + "petid", + "where", + "t1", + ".", + "sex", + "=", + "value", + "and", + "t3", + ".", + "pettype", + "=", + "value" + ], + "question": "How many dog pets are raised by female students?", + "question_toks": [ + "How", + "many", + "dog", + "pets", + "are", + "raised", + "by", + "female", + "students", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ], + [ + "table_unit", + 1 + ], + [ + "table_unit", + 2 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 1, + false + ], + null + ], + [ + 0, + 9, + false + ], + null + ], + "and", + [ + false, + 2, + [ + 0, + [ + 0, + 10, + false + ], + null + ], + [ + 0, + 11, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 3, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 5, + false + ], + null + ], + "\"F\"", + null + ], + "and", + [ + false, + 2, + [ + 0, + [ + 0, + 12, + false + ], + null + ], + "\"dog\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "pets_1", + "query": "SELECT count(DISTINCT pettype) FROM pets", + "query_toks": [ + "SELECT", + "count", + "(", + "DISTINCT", + "pettype", + ")", + "FROM", + "pets" + ], + "query_toks_no_value": [ + "select", + "count", + "(", + "distinct", + "pettype", + ")", + "from", + "pets" + ], + "question": "Find the number of distinct type of pets.", + "question_toks": [ + "Find", + "the", + "number", + "of", + "distinct", + "type", + "of", + "pets", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 3, + [ + 0, + [ + 0, + 12, + true + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "pets_1", + "query": "SELECT count(DISTINCT pettype) FROM pets", + "query_toks": [ + "SELECT", + "count", + "(", + "DISTINCT", + "pettype", + ")", + "FROM", + "pets" + ], + "query_toks_no_value": [ + "select", + "count", + "(", + "distinct", + "pettype", + ")", + "from", + "pets" + ], + "question": "How many different types of pet are there?", + "question_toks": [ + "How", + "many", + "different", + "types", + "of", + "pet", + "are", + "there", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 3, + [ + 0, + [ + 0, + 12, + true + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "pets_1", + "query": "SELECT DISTINCT T1.Fname FROM student AS T1 JOIN has_pet AS T2 ON T1.stuid = T2.stuid JOIN pets AS T3 ON T3.petid = T2.petid WHERE T3.pettype = 'cat' OR T3.pettype = 'dog'", + "query_toks": [ + "SELECT", + "DISTINCT", + "T1.Fname", + "FROM", + "student", + "AS", + "T1", + "JOIN", + "has_pet", + "AS", + "T2", + "ON", + "T1.stuid", + "=", + "T2.stuid", + "JOIN", + "pets", + "AS", + "T3", + "ON", + "T3.petid", + "=", + "T2.petid", + "WHERE", + "T3.pettype", + "=", + "'cat", + "'", + "OR", + "T3.pettype", + "=", + "'dog", + "'" + ], + "query_toks_no_value": [ + "select", + "distinct", + "t1", + ".", + "fname", + "from", + "student", + "as", + "t1", + "join", + "has_pet", + "as", + "t2", + "on", + "t1", + ".", + "stuid", + "=", + "t2", + ".", + "stuid", + "join", + "pets", + "as", + "t3", + "on", + "t3", + ".", + "petid", + "=", + "t2", + ".", + "petid", + "where", + "t3", + ".", + "pettype", + "=", + "value", + "or", + "t3", + ".", + "pettype", + "=", + "value" + ], + "question": "Find the first name of students who have cat or dog pet.", + "question_toks": [ + "Find", + "the", + "first", + "name", + "of", + "students", + "who", + "have", + "cat", + "or", + "dog", + "pet", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ], + [ + "table_unit", + 1 + ], + [ + "table_unit", + 2 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 1, + false + ], + null + ], + [ + 0, + 9, + false + ], + null + ], + "and", + [ + false, + 2, + [ + 0, + [ + 0, + 11, + false + ], + null + ], + [ + 0, + 10, + false + ], + null + ] + ] + }, + "select": [ + true, + [ + [ + 0, + [ + 0, + [ + 0, + 3, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 12, + false + ], + null + ], + "\"cat\"", + null + ], + "or", + [ + false, + 2, + [ + 0, + [ + 0, + 12, + false + ], + null + ], + "\"dog\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "pets_1", + "query": "SELECT DISTINCT T1.Fname FROM student AS T1 JOIN has_pet AS T2 ON T1.stuid = T2.stuid JOIN pets AS T3 ON T3.petid = T2.petid WHERE T3.pettype = 'cat' OR T3.pettype = 'dog'", + "query_toks": [ + "SELECT", + "DISTINCT", + "T1.Fname", + "FROM", + "student", + "AS", + "T1", + "JOIN", + "has_pet", + "AS", + "T2", + "ON", + "T1.stuid", + "=", + "T2.stuid", + "JOIN", + "pets", + "AS", + "T3", + "ON", + "T3.petid", + "=", + "T2.petid", + "WHERE", + "T3.pettype", + "=", + "'cat", + "'", + "OR", + "T3.pettype", + "=", + "'dog", + "'" + ], + "query_toks_no_value": [ + "select", + "distinct", + "t1", + ".", + "fname", + "from", + "student", + "as", + "t1", + "join", + "has_pet", + "as", + "t2", + "on", + "t1", + ".", + "stuid", + "=", + "t2", + ".", + "stuid", + "join", + "pets", + "as", + "t3", + "on", + "t3", + ".", + "petid", + "=", + "t2", + ".", + "petid", + "where", + "t3", + ".", + "pettype", + "=", + "value", + "or", + "t3", + ".", + "pettype", + "=", + "value" + ], + "question": "What are the first names of every student who has a cat or dog as a pet?", + "question_toks": [ + "What", + "are", + "the", + "first", + "names", + "of", + "every", + "student", + "who", + "has", + "a", + "cat", + "or", + "dog", + "as", + "a", + "pet", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ], + [ + "table_unit", + 1 + ], + [ + "table_unit", + 2 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 1, + false + ], + null + ], + [ + 0, + 9, + false + ], + null + ], + "and", + [ + false, + 2, + [ + 0, + [ + 0, + 11, + false + ], + null + ], + [ + 0, + 10, + false + ], + null + ] + ] + }, + "select": [ + true, + [ + [ + 0, + [ + 0, + [ + 0, + 3, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 12, + false + ], + null + ], + "\"cat\"", + null + ], + "or", + [ + false, + 2, + [ + 0, + [ + 0, + 12, + false + ], + null + ], + "\"dog\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "pets_1", + "query": "select t1.fname from student as t1 join has_pet as t2 on t1.stuid = t2.stuid join pets as t3 on t3.petid = t2.petid where t3.pettype = 'cat' intersect select t1.fname from student as t1 join has_pet as t2 on t1.stuid = t2.stuid join pets as t3 on t3.petid = t2.petid where t3.pettype = 'dog'", + "query_toks": [ + "select", + "t1.fname", + "from", + "student", + "as", + "t1", + "join", + "has_pet", + "as", + "t2", + "on", + "t1.stuid", + "=", + "t2.stuid", + "join", + "pets", + "as", + "t3", + "on", + "t3.petid", + "=", + "t2.petid", + "where", + "t3.pettype", + "=", + "\"cat\"", + "intersect", + "select", + "t1.fname", + "from", + "student", + "as", + "t1", + "join", + "has_pet", + "as", + "t2", + "on", + "t1.stuid", + "=", + "t2.stuid", + "join", + "pets", + "as", + "t3", + "on", + "t3.petid", + "=", + "t2.petid", + "where", + "t3.pettype", + "=", + "\"dog\"" + ], + "query_toks_no_value": [ + "select", + "t1", + ".", + "fname", + "from", + "student", + "as", + "t1", + "join", + "has_pet", + "as", + "t2", + "on", + "t1", + ".", + "stuid", + "=", + "t2", + ".", + "stuid", + "join", + "pets", + "as", + "t3", + "on", + "t3", + ".", + "petid", + "=", + "t2", + ".", + "petid", + "where", + "t3", + ".", + "pettype", + "=", + "value", + "intersect", + "select", + "t1", + ".", + "fname", + "from", + "student", + "as", + "t1", + "join", + "has_pet", + "as", + "t2", + "on", + "t1", + ".", + "stuid", + "=", + "t2", + ".", + "stuid", + "join", + "pets", + "as", + "t3", + "on", + "t3", + ".", + "petid", + "=", + "t2", + ".", + "petid", + "where", + "t3", + ".", + "pettype", + "=", + "value" + ], + "question": "Find the first name of students who have both cat and dog pets .", + "question_toks": [ + "Find", + "the", + "first", + "name", + "of", + "students", + "who", + "have", + "both", + "cat", + "and", + "dog", + "pets", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ], + [ + "table_unit", + 1 + ], + [ + "table_unit", + 2 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 1, + false + ], + null + ], + [ + 0, + 9, + false + ], + null + ], + "and", + [ + false, + 2, + [ + 0, + [ + 0, + 11, + false + ], + null + ], + [ + 0, + 10, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 3, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 12, + false + ], + null + ], + "\"cat\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ], + [ + "table_unit", + 1 + ], + [ + "table_unit", + 2 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 1, + false + ], + null + ], + [ + 0, + 9, + false + ], + null + ], + "and", + [ + false, + 2, + [ + 0, + [ + 0, + 11, + false + ], + null + ], + [ + 0, + 10, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 3, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 12, + false + ], + null + ], + "\"dog\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + }, + "union": null, + "except": null + } + }, + { + "db_id": "pets_1", + "query": "SELECT T1.Fname FROM student AS T1 JOIN has_pet AS T2 ON T1.stuid = T2.stuid JOIN pets AS T3 ON T3.petid = T2.petid WHERE T3.pettype = 'cat' INTERSECT SELECT T1.Fname FROM student AS T1 JOIN has_pet AS T2 ON T1.stuid = T2.stuid JOIN pets AS T3 ON T3.petid = T2.petid WHERE T3.pettype = 'dog'", + "query_toks": [ + "SELECT", + "T1.Fname", + "FROM", + "student", + "AS", + "T1", + "JOIN", + "has_pet", + "AS", + "T2", + "ON", + "T1.stuid", + "=", + "T2.stuid", + "JOIN", + "pets", + "AS", + "T3", + "ON", + "T3.petid", + "=", + "T2.petid", + "WHERE", + "T3.pettype", + "=", + "'cat", + "'", + "INTERSECT", + "SELECT", + "T1.Fname", + "FROM", + "student", + "AS", + "T1", + "JOIN", + "has_pet", + "AS", + "T2", + "ON", + "T1.stuid", + "=", + "T2.stuid", + "JOIN", + "pets", + "AS", + "T3", + "ON", + "T3.petid", + "=", + "T2.petid", + "WHERE", + "T3.pettype", + "=", + "'dog", + "'" + ], + "query_toks_no_value": [ + "select", + "t1", + ".", + "fname", + "from", + "student", + "as", + "t1", + "join", + "has_pet", + "as", + "t2", + "on", + "t1", + ".", + "stuid", + "=", + "t2", + ".", + "stuid", + "join", + "pets", + "as", + "t3", + "on", + "t3", + ".", + "petid", + "=", + "t2", + ".", + "petid", + "where", + "t3", + ".", + "pettype", + "=", + "value", + "intersect", + "select", + "t1", + ".", + "fname", + "from", + "student", + "as", + "t1", + "join", + "has_pet", + "as", + "t2", + "on", + "t1", + ".", + "stuid", + "=", + "t2", + ".", + "stuid", + "join", + "pets", + "as", + "t3", + "on", + "t3", + ".", + "petid", + "=", + "t2", + ".", + "petid", + "where", + "t3", + ".", + "pettype", + "=", + "value" + ], + "question": "What are the students' first names who have both cats and dogs as pets?", + "question_toks": [ + "What", + "are", + "the", + "students", + "'", + "first", + "names", + "who", + "have", + "both", + "cats", + "and", + "dogs", + "as", + "pets", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ], + [ + "table_unit", + 1 + ], + [ + "table_unit", + 2 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 1, + false + ], + null + ], + [ + 0, + 9, + false + ], + null + ], + "and", + [ + false, + 2, + [ + 0, + [ + 0, + 11, + false + ], + null + ], + [ + 0, + 10, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 3, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 12, + false + ], + null + ], + "\"cat\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ], + [ + "table_unit", + 1 + ], + [ + "table_unit", + 2 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 1, + false + ], + null + ], + [ + 0, + 9, + false + ], + null + ], + "and", + [ + false, + 2, + [ + 0, + [ + 0, + 11, + false + ], + null + ], + [ + 0, + 10, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 3, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 12, + false + ], + null + ], + "\"dog\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + }, + "union": null, + "except": null + } + }, + { + "db_id": "pets_1", + "query": "SELECT major , age FROM student WHERE stuid NOT IN (SELECT T1.stuid FROM student AS T1 JOIN has_pet AS T2 ON T1.stuid = T2.stuid JOIN pets AS T3 ON T3.petid = T2.petid WHERE T3.pettype = 'cat')", + "query_toks": [ + "SELECT", + "major", + ",", + "age", + "FROM", + "student", + "WHERE", + "stuid", + "NOT", + "IN", + "(", + "SELECT", + "T1.stuid", + "FROM", + "student", + "AS", + "T1", + "JOIN", + "has_pet", + "AS", + "T2", + "ON", + "T1.stuid", + "=", + "T2.stuid", + "JOIN", + "pets", + "AS", + "T3", + "ON", + "T3.petid", + "=", + "T2.petid", + "WHERE", + "T3.pettype", + "=", + "'cat", + "'", + ")" + ], + "query_toks_no_value": [ + "select", + "major", + ",", + "age", + "from", + "student", + "where", + "stuid", + "not", + "in", + "(", + "select", + "t1", + ".", + "stuid", + "from", + "student", + "as", + "t1", + "join", + "has_pet", + "as", + "t2", + "on", + "t1", + ".", + "stuid", + "=", + "t2", + ".", + "stuid", + "join", + "pets", + "as", + "t3", + "on", + "t3", + ".", + "petid", + "=", + "t2", + ".", + "petid", + "where", + "t3", + ".", + "pettype", + "=", + "value", + ")" + ], + "question": "Find the major and age of students who do not have a cat pet.", + "question_toks": [ + "Find", + "the", + "major", + "and", + "age", + "of", + "students", + "who", + "do", + "not", + "have", + "a", + "cat", + "pet", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 6, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 4, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + true, + 8, + [ + 0, + [ + 0, + 1, + false + ], + null + ], + { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ], + [ + "table_unit", + 1 + ], + [ + "table_unit", + 2 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 1, + false + ], + null + ], + [ + 0, + 9, + false + ], + null + ], + "and", + [ + false, + 2, + [ + 0, + [ + 0, + 11, + false + ], + null + ], + [ + 0, + 10, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 1, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 12, + false + ], + null + ], + "\"cat\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + }, + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "pets_1", + "query": "SELECT major , age FROM student WHERE stuid NOT IN (SELECT T1.stuid FROM student AS T1 JOIN has_pet AS T2 ON T1.stuid = T2.stuid JOIN pets AS T3 ON T3.petid = T2.petid WHERE T3.pettype = 'cat')", + "query_toks": [ + "SELECT", + "major", + ",", + "age", + "FROM", + "student", + "WHERE", + "stuid", + "NOT", + "IN", + "(", + "SELECT", + "T1.stuid", + "FROM", + "student", + "AS", + "T1", + "JOIN", + "has_pet", + "AS", + "T2", + "ON", + "T1.stuid", + "=", + "T2.stuid", + "JOIN", + "pets", + "AS", + "T3", + "ON", + "T3.petid", + "=", + "T2.petid", + "WHERE", + "T3.pettype", + "=", + "'cat", + "'", + ")" + ], + "query_toks_no_value": [ + "select", + "major", + ",", + "age", + "from", + "student", + "where", + "stuid", + "not", + "in", + "(", + "select", + "t1", + ".", + "stuid", + "from", + "student", + "as", + "t1", + "join", + "has_pet", + "as", + "t2", + "on", + "t1", + ".", + "stuid", + "=", + "t2", + ".", + "stuid", + "join", + "pets", + "as", + "t3", + "on", + "t3", + ".", + "petid", + "=", + "t2", + ".", + "petid", + "where", + "t3", + ".", + "pettype", + "=", + "value", + ")" + ], + "question": "What major is every student who does not own a cat as a pet, and also how old are they?", + "question_toks": [ + "What", + "major", + "is", + "every", + "student", + "who", + "does", + "not", + "own", + "a", + "cat", + "as", + "a", + "pet", + ",", + "and", + "also", + "how", + "old", + "are", + "they", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 6, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 4, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + true, + 8, + [ + 0, + [ + 0, + 1, + false + ], + null + ], + { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ], + [ + "table_unit", + 1 + ], + [ + "table_unit", + 2 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 1, + false + ], + null + ], + [ + 0, + 9, + false + ], + null + ], + "and", + [ + false, + 2, + [ + 0, + [ + 0, + 11, + false + ], + null + ], + [ + 0, + 10, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 1, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 12, + false + ], + null + ], + "\"cat\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + }, + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "pets_1", + "query": "SELECT stuid FROM student EXCEPT SELECT T1.stuid FROM student AS T1 JOIN has_pet AS T2 ON T1.stuid = T2.stuid JOIN pets AS T3 ON T3.petid = T2.petid WHERE T3.pettype = 'cat'", + "query_toks": [ + "SELECT", + "stuid", + "FROM", + "student", + "EXCEPT", + "SELECT", + "T1.stuid", + "FROM", + "student", + "AS", + "T1", + "JOIN", + "has_pet", + "AS", + "T2", + "ON", + "T1.stuid", + "=", + "T2.stuid", + "JOIN", + "pets", + "AS", + "T3", + "ON", + "T3.petid", + "=", + "T2.petid", + "WHERE", + "T3.pettype", + "=", + "'cat", + "'" + ], + "query_toks_no_value": [ + "select", + "stuid", + "from", + "student", + "except", + "select", + "t1", + ".", + "stuid", + "from", + "student", + "as", + "t1", + "join", + "has_pet", + "as", + "t2", + "on", + "t1", + ".", + "stuid", + "=", + "t2", + ".", + "stuid", + "join", + "pets", + "as", + "t3", + "on", + "t3", + ".", + "petid", + "=", + "t2", + ".", + "petid", + "where", + "t3", + ".", + "pettype", + "=", + "value" + ], + "question": "Find the id of students who do not have a cat pet.", + "question_toks": [ + "Find", + "the", + "id", + "of", + "students", + "who", + "do", + "not", + "have", + "a", + "cat", + "pet", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 1, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ], + [ + "table_unit", + 1 + ], + [ + "table_unit", + 2 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 1, + false + ], + null + ], + [ + 0, + 9, + false + ], + null + ], + "and", + [ + false, + 2, + [ + 0, + [ + 0, + 11, + false + ], + null + ], + [ + 0, + 10, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 1, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 12, + false + ], + null + ], + "\"cat\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + } + }, + { + "db_id": "pets_1", + "query": "SELECT stuid FROM student EXCEPT SELECT T1.stuid FROM student AS T1 JOIN has_pet AS T2 ON T1.stuid = T2.stuid JOIN pets AS T3 ON T3.petid = T2.petid WHERE T3.pettype = 'cat'", + "query_toks": [ + "SELECT", + "stuid", + "FROM", + "student", + "EXCEPT", + "SELECT", + "T1.stuid", + "FROM", + "student", + "AS", + "T1", + "JOIN", + "has_pet", + "AS", + "T2", + "ON", + "T1.stuid", + "=", + "T2.stuid", + "JOIN", + "pets", + "AS", + "T3", + "ON", + "T3.petid", + "=", + "T2.petid", + "WHERE", + "T3.pettype", + "=", + "'cat", + "'" + ], + "query_toks_no_value": [ + "select", + "stuid", + "from", + "student", + "except", + "select", + "t1", + ".", + "stuid", + "from", + "student", + "as", + "t1", + "join", + "has_pet", + "as", + "t2", + "on", + "t1", + ".", + "stuid", + "=", + "t2", + ".", + "stuid", + "join", + "pets", + "as", + "t3", + "on", + "t3", + ".", + "petid", + "=", + "t2", + ".", + "petid", + "where", + "t3", + ".", + "pettype", + "=", + "value" + ], + "question": "What are the ids of the students who do not own cats as pets?", + "question_toks": [ + "What", + "are", + "the", + "ids", + "of", + "the", + "students", + "who", + "do", + "not", + "own", + "cats", + "as", + "pets", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 1, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ], + [ + "table_unit", + 1 + ], + [ + "table_unit", + 2 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 1, + false + ], + null + ], + [ + 0, + 9, + false + ], + null + ], + "and", + [ + false, + 2, + [ + 0, + [ + 0, + 11, + false + ], + null + ], + [ + 0, + 10, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 1, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 12, + false + ], + null + ], + "\"cat\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + } + }, + { + "db_id": "pets_1", + "query": "SELECT T1.fname , T1.age FROM student AS T1 JOIN has_pet AS T2 ON T1.stuid = T2.stuid JOIN pets AS T3 ON T3.petid = T2.petid WHERE T3.pettype = 'dog' AND T1.stuid NOT IN (SELECT T1.stuid FROM student AS T1 JOIN has_pet AS T2 ON T1.stuid = T2.stuid JOIN pets AS T3 ON T3.petid = T2.petid WHERE T3.pettype = 'cat')", + "query_toks": [ + "SELECT", + "T1.fname", + ",", + "T1.age", + "FROM", + "student", + "AS", + "T1", + "JOIN", + "has_pet", + "AS", + "T2", + "ON", + "T1.stuid", + "=", + "T2.stuid", + "JOIN", + "pets", + "AS", + "T3", + "ON", + "T3.petid", + "=", + "T2.petid", + "WHERE", + "T3.pettype", + "=", + "'dog", + "'", + "AND", + "T1.stuid", + "NOT", + "IN", + "(", + "SELECT", + "T1.stuid", + "FROM", + "student", + "AS", + "T1", + "JOIN", + "has_pet", + "AS", + "T2", + "ON", + "T1.stuid", + "=", + "T2.stuid", + "JOIN", + "pets", + "AS", + "T3", + "ON", + "T3.petid", + "=", + "T2.petid", + "WHERE", + "T3.pettype", + "=", + "'cat", + "'", + ")" + ], + "query_toks_no_value": [ + "select", + "t1", + ".", + "fname", + ",", + "t1", + ".", + "age", + "from", + "student", + "as", + "t1", + "join", + "has_pet", + "as", + "t2", + "on", + "t1", + ".", + "stuid", + "=", + "t2", + ".", + "stuid", + "join", + "pets", + "as", + "t3", + "on", + "t3", + ".", + "petid", + "=", + "t2", + ".", + "petid", + "where", + "t3", + ".", + "pettype", + "=", + "value", + "and", + "t1", + ".", + "stuid", + "not", + "in", + "(", + "select", + "t1", + ".", + "stuid", + "from", + "student", + "as", + "t1", + "join", + "has_pet", + "as", + "t2", + "on", + "t1", + ".", + "stuid", + "=", + "t2", + ".", + "stuid", + "join", + "pets", + "as", + "t3", + "on", + "t3", + ".", + "petid", + "=", + "t2", + ".", + "petid", + "where", + "t3", + ".", + "pettype", + "=", + "value", + ")" + ], + "question": "Find the first name and age of students who have a dog but do not have a cat as a pet.", + "question_toks": [ + "Find", + "the", + "first", + "name", + "and", + "age", + "of", + "students", + "who", + "have", + "a", + "dog", + "but", + "do", + "not", + "have", + "a", + "cat", + "as", + "a", + "pet", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ], + [ + "table_unit", + 1 + ], + [ + "table_unit", + 2 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 1, + false + ], + null + ], + [ + 0, + 9, + false + ], + null + ], + "and", + [ + false, + 2, + [ + 0, + [ + 0, + 11, + false + ], + null + ], + [ + 0, + 10, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 3, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 4, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 12, + false + ], + null + ], + "\"dog\"", + null + ], + "and", + [ + true, + 8, + [ + 0, + [ + 0, + 1, + false + ], + null + ], + { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ], + [ + "table_unit", + 1 + ], + [ + "table_unit", + 2 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 1, + false + ], + null + ], + [ + 0, + 9, + false + ], + null + ], + "and", + [ + false, + 2, + [ + 0, + [ + 0, + 11, + false + ], + null + ], + [ + 0, + 10, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 1, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 12, + false + ], + null + ], + "\"cat\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + }, + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "pets_1", + "query": "SELECT T1.fname , T1.age FROM student AS T1 JOIN has_pet AS T2 ON T1.stuid = T2.stuid JOIN pets AS T3 ON T3.petid = T2.petid WHERE T3.pettype = 'dog' AND T1.stuid NOT IN (SELECT T1.stuid FROM student AS T1 JOIN has_pet AS T2 ON T1.stuid = T2.stuid JOIN pets AS T3 ON T3.petid = T2.petid WHERE T3.pettype = 'cat')", + "query_toks": [ + "SELECT", + "T1.fname", + ",", + "T1.age", + "FROM", + "student", + "AS", + "T1", + "JOIN", + "has_pet", + "AS", + "T2", + "ON", + "T1.stuid", + "=", + "T2.stuid", + "JOIN", + "pets", + "AS", + "T3", + "ON", + "T3.petid", + "=", + "T2.petid", + "WHERE", + "T3.pettype", + "=", + "'dog", + "'", + "AND", + "T1.stuid", + "NOT", + "IN", + "(", + "SELECT", + "T1.stuid", + "FROM", + "student", + "AS", + "T1", + "JOIN", + "has_pet", + "AS", + "T2", + "ON", + "T1.stuid", + "=", + "T2.stuid", + "JOIN", + "pets", + "AS", + "T3", + "ON", + "T3.petid", + "=", + "T2.petid", + "WHERE", + "T3.pettype", + "=", + "'cat", + "'", + ")" + ], + "query_toks_no_value": [ + "select", + "t1", + ".", + "fname", + ",", + "t1", + ".", + "age", + "from", + "student", + "as", + "t1", + "join", + "has_pet", + "as", + "t2", + "on", + "t1", + ".", + "stuid", + "=", + "t2", + ".", + "stuid", + "join", + "pets", + "as", + "t3", + "on", + "t3", + ".", + "petid", + "=", + "t2", + ".", + "petid", + "where", + "t3", + ".", + "pettype", + "=", + "value", + "and", + "t1", + ".", + "stuid", + "not", + "in", + "(", + "select", + "t1", + ".", + "stuid", + "from", + "student", + "as", + "t1", + "join", + "has_pet", + "as", + "t2", + "on", + "t1", + ".", + "stuid", + "=", + "t2", + ".", + "stuid", + "join", + "pets", + "as", + "t3", + "on", + "t3", + ".", + "petid", + "=", + "t2", + ".", + "petid", + "where", + "t3", + ".", + "pettype", + "=", + "value", + ")" + ], + "question": "What is the first name of every student who has a dog but does not have a cat?", + "question_toks": [ + "What", + "is", + "the", + "first", + "name", + "of", + "every", + "student", + "who", + "has", + "a", + "dog", + "but", + "does", + "not", + "have", + "a", + "cat", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ], + [ + "table_unit", + 1 + ], + [ + "table_unit", + 2 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 1, + false + ], + null + ], + [ + 0, + 9, + false + ], + null + ], + "and", + [ + false, + 2, + [ + 0, + [ + 0, + 11, + false + ], + null + ], + [ + 0, + 10, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 3, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 4, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 12, + false + ], + null + ], + "\"dog\"", + null + ], + "and", + [ + true, + 8, + [ + 0, + [ + 0, + 1, + false + ], + null + ], + { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ], + [ + "table_unit", + 1 + ], + [ + "table_unit", + 2 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 1, + false + ], + null + ], + [ + 0, + 9, + false + ], + null + ], + "and", + [ + false, + 2, + [ + 0, + [ + 0, + 11, + false + ], + null + ], + [ + 0, + 10, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 1, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 12, + false + ], + null + ], + "\"cat\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + }, + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "pets_1", + "query": "SELECT pettype , weight FROM pets ORDER BY pet_age LIMIT 1", + "query_toks": [ + "SELECT", + "pettype", + ",", + "weight", + "FROM", + "pets", + "ORDER", + "BY", + "pet_age", + "LIMIT", + "1" + ], + "query_toks_no_value": [ + "select", + "pettype", + ",", + "weight", + "from", + "pets", + "order", + "by", + "pet_age", + "limit", + "value" + ], + "question": "Find the type and weight of the youngest pet.", + "question_toks": [ + "Find", + "the", + "type", + "and", + "weight", + "of", + "the", + "youngest", + "pet", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 12, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 14, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [ + "asc", + [ + [ + 0, + [ + 0, + 13, + false + ], + null + ] + ] + ], + "limit": 1, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "pets_1", + "query": "SELECT pettype , weight FROM pets ORDER BY pet_age LIMIT 1", + "query_toks": [ + "SELECT", + "pettype", + ",", + "weight", + "FROM", + "pets", + "ORDER", + "BY", + "pet_age", + "LIMIT", + "1" + ], + "query_toks_no_value": [ + "select", + "pettype", + ",", + "weight", + "from", + "pets", + "order", + "by", + "pet_age", + "limit", + "value" + ], + "question": "What type of pet is the youngest animal, and how much does it weigh?", + "question_toks": [ + "What", + "type", + "of", + "pet", + "is", + "the", + "youngest", + "animal", + ",", + "and", + "how", + "much", + "does", + "it", + "weigh", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 12, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 14, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [ + "asc", + [ + [ + 0, + [ + 0, + 13, + false + ], + null + ] + ] + ], + "limit": 1, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "pets_1", + "query": "SELECT petid , weight FROM pets WHERE pet_age > 1", + "query_toks": [ + "SELECT", + "petid", + ",", + "weight", + "FROM", + "pets", + "WHERE", + "pet_age", + ">", + "1" + ], + "query_toks_no_value": [ + "select", + "petid", + ",", + "weight", + "from", + "pets", + "where", + "pet_age", + ">", + "value" + ], + "question": "Find the id and weight of all pets whose age is older than 1.", + "question_toks": [ + "Find", + "the", + "id", + "and", + "weight", + "of", + "all", + "pets", + "whose", + "age", + "is", + "older", + "than", + "1", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 11, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 14, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 3, + [ + 0, + [ + 0, + 13, + false + ], + null + ], + 1.0, + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "pets_1", + "query": "SELECT petid , weight FROM pets WHERE pet_age > 1", + "query_toks": [ + "SELECT", + "petid", + ",", + "weight", + "FROM", + "pets", + "WHERE", + "pet_age", + ">", + "1" + ], + "query_toks_no_value": [ + "select", + "petid", + ",", + "weight", + "from", + "pets", + "where", + "pet_age", + ">", + "value" + ], + "question": "What is the id and weight of every pet who is older than 1?", + "question_toks": [ + "What", + "is", + "the", + "id", + "and", + "weight", + "of", + "every", + "pet", + "who", + "is", + "older", + "than", + "1", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 11, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 14, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 3, + [ + 0, + [ + 0, + 13, + false + ], + null + ], + 1.0, + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "pets_1", + "query": "SELECT avg(pet_age) , max(pet_age) , pettype FROM pets GROUP BY pettype", + "query_toks": [ + "SELECT", + "avg", + "(", + "pet_age", + ")", + ",", + "max", + "(", + "pet_age", + ")", + ",", + "pettype", + "FROM", + "pets", + "GROUP", + "BY", + "pettype" + ], + "query_toks_no_value": [ + "select", + "avg", + "(", + "pet_age", + ")", + ",", + "max", + "(", + "pet_age", + ")", + ",", + "pettype", + "from", + "pets", + "group", + "by", + "pettype" + ], + "question": "Find the average and maximum age for each type of pet.", + "question_toks": [ + "Find", + "the", + "average", + "and", + "maximum", + "age", + "for", + "each", + "type", + "of", + "pet", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 5, + [ + 0, + [ + 0, + 13, + false + ], + null + ] + ], + [ + 1, + [ + 0, + [ + 0, + 13, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 12, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 12, + false + ] + ], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "pets_1", + "query": "SELECT avg(pet_age) , max(pet_age) , pettype FROM pets GROUP BY pettype", + "query_toks": [ + "SELECT", + "avg", + "(", + "pet_age", + ")", + ",", + "max", + "(", + "pet_age", + ")", + ",", + "pettype", + "FROM", + "pets", + "GROUP", + "BY", + "pettype" + ], + "query_toks_no_value": [ + "select", + "avg", + "(", + "pet_age", + ")", + ",", + "max", + "(", + "pet_age", + ")", + ",", + "pettype", + "from", + "pets", + "group", + "by", + "pettype" + ], + "question": "What is the average and maximum age for each pet type?", + "question_toks": [ + "What", + "is", + "the", + "average", + "and", + "maximum", + "age", + "for", + "each", + "pet", + "type", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 5, + [ + 0, + [ + 0, + 13, + false + ], + null + ] + ], + [ + 1, + [ + 0, + [ + 0, + 13, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 12, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 12, + false + ] + ], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "pets_1", + "query": "SELECT avg(weight) , pettype FROM pets GROUP BY pettype", + "query_toks": [ + "SELECT", + "avg", + "(", + "weight", + ")", + ",", + "pettype", + "FROM", + "pets", + "GROUP", + "BY", + "pettype" + ], + "query_toks_no_value": [ + "select", + "avg", + "(", + "weight", + ")", + ",", + "pettype", + "from", + "pets", + "group", + "by", + "pettype" + ], + "question": "Find the average weight for each pet type.", + "question_toks": [ + "Find", + "the", + "average", + "weight", + "for", + "each", + "pet", + "type", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 5, + [ + 0, + [ + 0, + 14, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 12, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 12, + false + ] + ], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "pets_1", + "query": "SELECT avg(weight) , pettype FROM pets GROUP BY pettype", + "query_toks": [ + "SELECT", + "avg", + "(", + "weight", + ")", + ",", + "pettype", + "FROM", + "pets", + "GROUP", + "BY", + "pettype" + ], + "query_toks_no_value": [ + "select", + "avg", + "(", + "weight", + ")", + ",", + "pettype", + "from", + "pets", + "group", + "by", + "pettype" + ], + "question": "What is the average weight for each type of pet?", + "question_toks": [ + "What", + "is", + "the", + "average", + "weight", + "for", + "each", + "type", + "of", + "pet", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 5, + [ + 0, + [ + 0, + 14, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 12, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 12, + false + ] + ], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "pets_1", + "query": "SELECT DISTINCT T1.fname , T1.age FROM student AS T1 JOIN has_pet AS T2 ON T1.stuid = T2.stuid", + "query_toks": [ + "SELECT", + "DISTINCT", + "T1.fname", + ",", + "T1.age", + "FROM", + "student", + "AS", + "T1", + "JOIN", + "has_pet", + "AS", + "T2", + "ON", + "T1.stuid", + "=", + "T2.stuid" + ], + "query_toks_no_value": [ + "select", + "distinct", + "t1", + ".", + "fname", + ",", + "t1", + ".", + "age", + "from", + "student", + "as", + "t1", + "join", + "has_pet", + "as", + "t2", + "on", + "t1", + ".", + "stuid", + "=", + "t2", + ".", + "stuid" + ], + "question": "Find the first name and age of students who have a pet.", + "question_toks": [ + "Find", + "the", + "first", + "name", + "and", + "age", + "of", + "students", + "who", + "have", + "a", + "pet", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ], + [ + "table_unit", + 1 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 1, + false + ], + null + ], + [ + 0, + 9, + false + ], + null + ] + ] + }, + "select": [ + true, + [ + [ + 0, + [ + 0, + [ + 0, + 3, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 4, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "pets_1", + "query": "SELECT DISTINCT T1.fname , T1.age FROM student AS T1 JOIN has_pet AS T2 ON T1.stuid = T2.stuid", + "query_toks": [ + "SELECT", + "DISTINCT", + "T1.fname", + ",", + "T1.age", + "FROM", + "student", + "AS", + "T1", + "JOIN", + "has_pet", + "AS", + "T2", + "ON", + "T1.stuid", + "=", + "T2.stuid" + ], + "query_toks_no_value": [ + "select", + "distinct", + "t1", + ".", + "fname", + ",", + "t1", + ".", + "age", + "from", + "student", + "as", + "t1", + "join", + "has_pet", + "as", + "t2", + "on", + "t1", + ".", + "stuid", + "=", + "t2", + ".", + "stuid" + ], + "question": "What are the different first names and ages of the students who do have pets?", + "question_toks": [ + "What", + "are", + "the", + "different", + "first", + "names", + "and", + "ages", + "of", + "the", + "students", + "who", + "do", + "have", + "pets", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ], + [ + "table_unit", + 1 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 1, + false + ], + null + ], + [ + 0, + 9, + false + ], + null + ] + ] + }, + "select": [ + true, + [ + [ + 0, + [ + 0, + [ + 0, + 3, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 4, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "pets_1", + "query": "SELECT T2.petid FROM student AS T1 JOIN has_pet AS T2 ON T1.stuid = T2.stuid WHERE T1.Lname = 'Smith'", + "query_toks": [ + "SELECT", + "T2.petid", + "FROM", + "student", + "AS", + "T1", + "JOIN", + "has_pet", + "AS", + "T2", + "ON", + "T1.stuid", + "=", + "T2.stuid", + "WHERE", + "T1.Lname", + "=", + "'Smith", + "'" + ], + "query_toks_no_value": [ + "select", + "t2", + ".", + "petid", + "from", + "student", + "as", + "t1", + "join", + "has_pet", + "as", + "t2", + "on", + "t1", + ".", + "stuid", + "=", + "t2", + ".", + "stuid", + "where", + "t1", + ".", + "lname", + "=", + "value" + ], + "question": "Find the id of the pet owned by student whose last name is \u2018Smith\u2019.", + "question_toks": [ + "Find", + "the", + "id", + "of", + "the", + "pet", + "owned", + "by", + "student", + "whose", + "last", + "name", + "is", + "\u2018Smith\u2019", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ], + [ + "table_unit", + 1 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 1, + false + ], + null + ], + [ + 0, + 9, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 10, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 2, + false + ], + null + ], + "\"Smith\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "pets_1", + "query": "SELECT T2.petid FROM student AS T1 JOIN has_pet AS T2 ON T1.stuid = T2.stuid WHERE T1.Lname = 'Smith'", + "query_toks": [ + "SELECT", + "T2.petid", + "FROM", + "student", + "AS", + "T1", + "JOIN", + "has_pet", + "AS", + "T2", + "ON", + "T1.stuid", + "=", + "T2.stuid", + "WHERE", + "T1.Lname", + "=", + "'Smith", + "'" + ], + "query_toks_no_value": [ + "select", + "t2", + ".", + "petid", + "from", + "student", + "as", + "t1", + "join", + "has_pet", + "as", + "t2", + "on", + "t1", + ".", + "stuid", + "=", + "t2", + ".", + "stuid", + "where", + "t1", + ".", + "lname", + "=", + "value" + ], + "question": "What is the id of the pet owned by the student whose last name is 'Smith'?", + "question_toks": [ + "What", + "is", + "the", + "id", + "of", + "the", + "pet", + "owned", + "by", + "the", + "student", + "whose", + "last", + "name", + "is", + "'Smith", + "'", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ], + [ + "table_unit", + 1 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 1, + false + ], + null + ], + [ + 0, + 9, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 10, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 2, + false + ], + null + ], + "\"Smith\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "pets_1", + "query": "SELECT count(*) , T1.stuid FROM student AS T1 JOIN has_pet AS T2 ON T1.stuid = T2.stuid GROUP BY T1.stuid", + "query_toks": [ + "SELECT", + "count", + "(", + "*", + ")", + ",", + "T1.stuid", + "FROM", + "student", + "AS", + "T1", + "JOIN", + "has_pet", + "AS", + "T2", + "ON", + "T1.stuid", + "=", + "T2.stuid", + "GROUP", + "BY", + "T1.stuid" + ], + "query_toks_no_value": [ + "select", + "count", + "(", + "*", + ")", + ",", + "t1", + ".", + "stuid", + "from", + "student", + "as", + "t1", + "join", + "has_pet", + "as", + "t2", + "on", + "t1", + ".", + "stuid", + "=", + "t2", + ".", + "stuid", + "group", + "by", + "t1", + ".", + "stuid" + ], + "question": "Find the number of pets for each student who has any pet and student id.", + "question_toks": [ + "Find", + "the", + "number", + "of", + "pets", + "for", + "each", + "student", + "who", + "has", + "any", + "pet", + "and", + "student", + "id", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ], + [ + "table_unit", + 1 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 1, + false + ], + null + ], + [ + 0, + 9, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 3, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 1, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 1, + false + ] + ], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "pets_1", + "query": "select count(*) , t1.stuid from student as t1 join has_pet as t2 on t1.stuid = t2.stuid group by t1.stuid", + "query_toks": [ + "select", + "count", + "(", + "*", + ")", + ",", + "t1.stuid", + "from", + "student", + "as", + "t1", + "join", + "has_pet", + "as", + "t2", + "on", + "t1.stuid", + "=", + "t2.stuid", + "group", + "by", + "t1.stuid" + ], + "query_toks_no_value": [ + "select", + "count", + "(", + "*", + ")", + ",", + "t1", + ".", + "stuid", + "from", + "student", + "as", + "t1", + "join", + "has_pet", + "as", + "t2", + "on", + "t1", + ".", + "stuid", + "=", + "t2", + ".", + "stuid", + "group", + "by", + "t1", + ".", + "stuid" + ], + "question": "For students who have pets , how many pets does each student have ? list their ids instead of names .", + "question_toks": [ + "For", + "students", + "who", + "have", + "pets", + ",", + "how", + "many", + "pets", + "does", + "each", + "student", + "have", + "?", + "list", + "their", + "ids", + "instead", + "of", + "names", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ], + [ + "table_unit", + 1 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 1, + false + ], + null + ], + [ + 0, + 9, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 3, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 1, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 1, + false + ] + ], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "pets_1", + "query": "SELECT T1.fname , T1.sex FROM student AS T1 JOIN has_pet AS T2 ON T1.stuid = T2.stuid GROUP BY T1.stuid HAVING count(*) > 1", + "query_toks": [ + "SELECT", + "T1.fname", + ",", + "T1.sex", + "FROM", + "student", + "AS", + "T1", + "JOIN", + "has_pet", + "AS", + "T2", + "ON", + "T1.stuid", + "=", + "T2.stuid", + "GROUP", + "BY", + "T1.stuid", + "HAVING", + "count", + "(", + "*", + ")", + ">", + "1" + ], + "query_toks_no_value": [ + "select", + "t1", + ".", + "fname", + ",", + "t1", + ".", + "sex", + "from", + "student", + "as", + "t1", + "join", + "has_pet", + "as", + "t2", + "on", + "t1", + ".", + "stuid", + "=", + "t2", + ".", + "stuid", + "group", + "by", + "t1", + ".", + "stuid", + "having", + "count", + "(", + "*", + ")", + ">", + "value" + ], + "question": "Find the first name and gender of student who have more than one pet.", + "question_toks": [ + "Find", + "the", + "first", + "name", + "and", + "gender", + "of", + "student", + "who", + "have", + "more", + "than", + "one", + "pet", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ], + [ + "table_unit", + 1 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 1, + false + ], + null + ], + [ + 0, + 9, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 3, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 5, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 1, + false + ] + ], + "having": [ + [ + false, + 3, + [ + 0, + [ + 3, + 0, + false + ], + null + ], + 1.0, + null + ] + ], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "pets_1", + "query": "SELECT T1.fname , T1.sex FROM student AS T1 JOIN has_pet AS T2 ON T1.stuid = T2.stuid GROUP BY T1.stuid HAVING count(*) > 1", + "query_toks": [ + "SELECT", + "T1.fname", + ",", + "T1.sex", + "FROM", + "student", + "AS", + "T1", + "JOIN", + "has_pet", + "AS", + "T2", + "ON", + "T1.stuid", + "=", + "T2.stuid", + "GROUP", + "BY", + "T1.stuid", + "HAVING", + "count", + "(", + "*", + ")", + ">", + "1" + ], + "query_toks_no_value": [ + "select", + "t1", + ".", + "fname", + ",", + "t1", + ".", + "sex", + "from", + "student", + "as", + "t1", + "join", + "has_pet", + "as", + "t2", + "on", + "t1", + ".", + "stuid", + "=", + "t2", + ".", + "stuid", + "group", + "by", + "t1", + ".", + "stuid", + "having", + "count", + "(", + "*", + ")", + ">", + "value" + ], + "question": "What is the first name and gender of the all the students who have more than one pet?", + "question_toks": [ + "What", + "is", + "the", + "first", + "name", + "and", + "gender", + "of", + "the", + "all", + "the", + "students", + "who", + "have", + "more", + "than", + "one", + "pet", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ], + [ + "table_unit", + 1 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 1, + false + ], + null + ], + [ + 0, + 9, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 3, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 5, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 1, + false + ] + ], + "having": [ + [ + false, + 3, + [ + 0, + [ + 3, + 0, + false + ], + null + ], + 1.0, + null + ] + ], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "pets_1", + "query": "SELECT T1.lname FROM student AS T1 JOIN has_pet AS T2 ON T1.stuid = T2.stuid JOIN pets AS T3 ON T3.petid = T2.petid WHERE T3.pet_age = 3 AND T3.pettype = 'cat'", + "query_toks": [ + "SELECT", + "T1.lname", + "FROM", + "student", + "AS", + "T1", + "JOIN", + "has_pet", + "AS", + "T2", + "ON", + "T1.stuid", + "=", + "T2.stuid", + "JOIN", + "pets", + "AS", + "T3", + "ON", + "T3.petid", + "=", + "T2.petid", + "WHERE", + "T3.pet_age", + "=", + "3", + "AND", + "T3.pettype", + "=", + "'cat", + "'" + ], + "query_toks_no_value": [ + "select", + "t1", + ".", + "lname", + "from", + "student", + "as", + "t1", + "join", + "has_pet", + "as", + "t2", + "on", + "t1", + ".", + "stuid", + "=", + "t2", + ".", + "stuid", + "join", + "pets", + "as", + "t3", + "on", + "t3", + ".", + "petid", + "=", + "t2", + ".", + "petid", + "where", + "t3", + ".", + "pet_age", + "=", + "value", + "and", + "t3", + ".", + "pettype", + "=", + "value" + ], + "question": "Find the last name of the student who has a cat that is age 3.", + "question_toks": [ + "Find", + "the", + "last", + "name", + "of", + "the", + "student", + "who", + "has", + "a", + "cat", + "that", + "is", + "age", + "3", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ], + [ + "table_unit", + 1 + ], + [ + "table_unit", + 2 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 1, + false + ], + null + ], + [ + 0, + 9, + false + ], + null + ], + "and", + [ + false, + 2, + [ + 0, + [ + 0, + 11, + false + ], + null + ], + [ + 0, + 10, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 2, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 13, + false + ], + null + ], + 3.0, + null + ], + "and", + [ + false, + 2, + [ + 0, + [ + 0, + 12, + false + ], + null + ], + "\"cat\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "pets_1", + "query": "SELECT T1.lname FROM student AS T1 JOIN has_pet AS T2 ON T1.stuid = T2.stuid JOIN pets AS T3 ON T3.petid = T2.petid WHERE T3.pet_age = 3 AND T3.pettype = 'cat'", + "query_toks": [ + "SELECT", + "T1.lname", + "FROM", + "student", + "AS", + "T1", + "JOIN", + "has_pet", + "AS", + "T2", + "ON", + "T1.stuid", + "=", + "T2.stuid", + "JOIN", + "pets", + "AS", + "T3", + "ON", + "T3.petid", + "=", + "T2.petid", + "WHERE", + "T3.pet_age", + "=", + "3", + "AND", + "T3.pettype", + "=", + "'cat", + "'" + ], + "query_toks_no_value": [ + "select", + "t1", + ".", + "lname", + "from", + "student", + "as", + "t1", + "join", + "has_pet", + "as", + "t2", + "on", + "t1", + ".", + "stuid", + "=", + "t2", + ".", + "stuid", + "join", + "pets", + "as", + "t3", + "on", + "t3", + ".", + "petid", + "=", + "t2", + ".", + "petid", + "where", + "t3", + ".", + "pet_age", + "=", + "value", + "and", + "t3", + ".", + "pettype", + "=", + "value" + ], + "question": "What is the last name of the student who has a cat that is 3 years old?", + "question_toks": [ + "What", + "is", + "the", + "last", + "name", + "of", + "the", + "student", + "who", + "has", + "a", + "cat", + "that", + "is", + "3", + "years", + "old", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ], + [ + "table_unit", + 1 + ], + [ + "table_unit", + 2 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 1, + false + ], + null + ], + [ + 0, + 9, + false + ], + null + ], + "and", + [ + false, + 2, + [ + 0, + [ + 0, + 11, + false + ], + null + ], + [ + 0, + 10, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 2, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 13, + false + ], + null + ], + 3.0, + null + ], + "and", + [ + false, + 2, + [ + 0, + [ + 0, + 12, + false + ], + null + ], + "\"cat\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "pets_1", + "query": "select avg(age) from student where stuid not in (select stuid from has_pet)", + "query_toks": [ + "select", + "avg", + "(", + "age", + ")", + "from", + "student", + "where", + "stuid", + "not", + "in", + "(", + "select", + "stuid", + "from", + "has_pet", + ")" + ], + "query_toks_no_value": [ + "select", + "avg", + "(", + "age", + ")", + "from", + "student", + "where", + "stuid", + "not", + "in", + "(", + "select", + "stuid", + "from", + "has_pet", + ")" + ], + "question": "Find the average age of students who do not have any pet .", + "question_toks": [ + "Find", + "the", + "average", + "age", + "of", + "students", + "who", + "do", + "not", + "have", + "any", + "pet", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 5, + [ + 0, + [ + 0, + 4, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + true, + 8, + [ + 0, + [ + 0, + 1, + false + ], + null + ], + { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 9, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + }, + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "pets_1", + "query": "select avg(age) from student where stuid not in (select stuid from has_pet)", + "query_toks": [ + "select", + "avg", + "(", + "age", + ")", + "from", + "student", + "where", + "stuid", + "not", + "in", + "(", + "select", + "stuid", + "from", + "has_pet", + ")" + ], + "query_toks_no_value": [ + "select", + "avg", + "(", + "age", + ")", + "from", + "student", + "where", + "stuid", + "not", + "in", + "(", + "select", + "stuid", + "from", + "has_pet", + ")" + ], + "question": "What is the average age for all students who do not own any pets ?", + "question_toks": [ + "What", + "is", + "the", + "average", + "age", + "for", + "all", + "students", + "who", + "do", + "not", + "own", + "any", + "pets", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 5, + [ + 0, + [ + 0, + 4, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + true, + 8, + [ + 0, + [ + 0, + 1, + false + ], + null + ], + { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 9, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + }, + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "car_1", + "query": "SELECT count(*) FROM CONTINENTS;", + "query_toks": [ + "SELECT", + "count", + "(", + "*", + ")", + "FROM", + "CONTINENTS", + ";" + ], + "query_toks_no_value": [ + "select", + "count", + "(", + "*", + ")", + "from", + "continents" + ], + "question": "How many continents are there?", + "question_toks": [ + "How", + "many", + "continents", + "are", + "there", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 3, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "car_1", + "query": "SELECT count(*) FROM CONTINENTS;", + "query_toks": [ + "SELECT", + "count", + "(", + "*", + ")", + "FROM", + "CONTINENTS", + ";" + ], + "query_toks_no_value": [ + "select", + "count", + "(", + "*", + ")", + "from", + "continents" + ], + "question": "What is the number of continents?", + "question_toks": [ + "What", + "is", + "the", + "number", + "of", + "continents", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 3, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "car_1", + "query": "SELECT T1.ContId , T1.Continent , count(*) FROM CONTINENTS AS T1 JOIN COUNTRIES AS T2 ON T1.ContId = T2.Continent GROUP BY T1.ContId;", + "query_toks": [ + "SELECT", + "T1.ContId", + ",", + "T1.Continent", + ",", + "count", + "(", + "*", + ")", + "FROM", + "CONTINENTS", + "AS", + "T1", + "JOIN", + "COUNTRIES", + "AS", + "T2", + "ON", + "T1.ContId", + "=", + "T2.Continent", + "GROUP", + "BY", + "T1.ContId", + ";" + ], + "query_toks_no_value": [ + "select", + "t1", + ".", + "contid", + ",", + "t1", + ".", + "continent", + ",", + "count", + "(", + "*", + ")", + "from", + "continents", + "as", + "t1", + "join", + "countries", + "as", + "t2", + "on", + "t1", + ".", + "contid", + "=", + "t2", + ".", + "continent", + "group", + "by", + "t1", + ".", + "contid" + ], + "question": "How many countries does each continent have? List the continent id, continent name and the number of countries.", + "question_toks": [ + "How", + "many", + "countries", + "does", + "each", + "continent", + "have", + "?", + "List", + "the", + "continent", + "id", + ",", + "continent", + "name", + "and", + "the", + "number", + "of", + "countries", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ], + [ + "table_unit", + 1 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 1, + false + ], + null + ], + [ + 0, + 5, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 1, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 2, + false + ], + null + ] + ], + [ + 3, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 1, + false + ] + ], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "car_1", + "query": "SELECT T1.ContId , T1.Continent , count(*) FROM CONTINENTS AS T1 JOIN COUNTRIES AS T2 ON T1.ContId = T2.Continent GROUP BY T1.ContId;", + "query_toks": [ + "SELECT", + "T1.ContId", + ",", + "T1.Continent", + ",", + "count", + "(", + "*", + ")", + "FROM", + "CONTINENTS", + "AS", + "T1", + "JOIN", + "COUNTRIES", + "AS", + "T2", + "ON", + "T1.ContId", + "=", + "T2.Continent", + "GROUP", + "BY", + "T1.ContId", + ";" + ], + "query_toks_no_value": [ + "select", + "t1", + ".", + "contid", + ",", + "t1", + ".", + "continent", + ",", + "count", + "(", + "*", + ")", + "from", + "continents", + "as", + "t1", + "join", + "countries", + "as", + "t2", + "on", + "t1", + ".", + "contid", + "=", + "t2", + ".", + "continent", + "group", + "by", + "t1", + ".", + "contid" + ], + "question": "For each continent, list its id, name, and how many countries it has?", + "question_toks": [ + "For", + "each", + "continent", + ",", + "list", + "its", + "id", + ",", + "name", + ",", + "and", + "how", + "many", + "countries", + "it", + "has", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ], + [ + "table_unit", + 1 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 1, + false + ], + null + ], + [ + 0, + 5, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 1, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 2, + false + ], + null + ] + ], + [ + 3, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 1, + false + ] + ], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "car_1", + "query": "SELECT count(*) FROM COUNTRIES;", + "query_toks": [ + "SELECT", + "count", + "(", + "*", + ")", + "FROM", + "COUNTRIES", + ";" + ], + "query_toks_no_value": [ + "select", + "count", + "(", + "*", + ")", + "from", + "countries" + ], + "question": "How many countries are listed?", + "question_toks": [ + "How", + "many", + "countries", + "are", + "listed", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 3, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "car_1", + "query": "SELECT count(*) FROM COUNTRIES;", + "query_toks": [ + "SELECT", + "count", + "(", + "*", + ")", + "FROM", + "COUNTRIES", + ";" + ], + "query_toks_no_value": [ + "select", + "count", + "(", + "*", + ")", + "from", + "countries" + ], + "question": "How many countries exist?", + "question_toks": [ + "How", + "many", + "countries", + "exist", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 3, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "car_1", + "query": "SELECT T1.FullName , T1.Id , count(*) FROM CAR_MAKERS AS T1 JOIN MODEL_LIST AS T2 ON T1.Id = T2.Maker GROUP BY T1.Id;", + "query_toks": [ + "SELECT", + "T1.FullName", + ",", + "T1.Id", + ",", + "count", + "(", + "*", + ")", + "FROM", + "CAR_MAKERS", + "AS", + "T1", + "JOIN", + "MODEL_LIST", + "AS", + "T2", + "ON", + "T1.Id", + "=", + "T2.Maker", + "GROUP", + "BY", + "T1.Id", + ";" + ], + "query_toks_no_value": [ + "select", + "t1", + ".", + "fullname", + ",", + "t1", + ".", + "id", + ",", + "count", + "(", + "*", + ")", + "from", + "car_makers", + "as", + "t1", + "join", + "model_list", + "as", + "t2", + "on", + "t1", + ".", + "id", + "=", + "t2", + ".", + "maker", + "group", + "by", + "t1", + ".", + "id" + ], + "question": "How many models does each car maker produce? List maker full name, id and the number.", + "question_toks": [ + "How", + "many", + "models", + "does", + "each", + "car", + "maker", + "produce", + "?", + "List", + "maker", + "full", + "name", + ",", + "id", + "and", + "the", + "number", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ], + [ + "table_unit", + 3 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 6, + false + ], + null + ], + [ + 0, + 11, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 8, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 6, + false + ], + null + ] + ], + [ + 3, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 6, + false + ] + ], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "car_1", + "query": "SELECT T1.FullName , T1.Id , count(*) FROM CAR_MAKERS AS T1 JOIN MODEL_LIST AS T2 ON T1.Id = T2.Maker GROUP BY T1.Id;", + "query_toks": [ + "SELECT", + "T1.FullName", + ",", + "T1.Id", + ",", + "count", + "(", + "*", + ")", + "FROM", + "CAR_MAKERS", + "AS", + "T1", + "JOIN", + "MODEL_LIST", + "AS", + "T2", + "ON", + "T1.Id", + "=", + "T2.Maker", + "GROUP", + "BY", + "T1.Id", + ";" + ], + "query_toks_no_value": [ + "select", + "t1", + ".", + "fullname", + ",", + "t1", + ".", + "id", + ",", + "count", + "(", + "*", + ")", + "from", + "car_makers", + "as", + "t1", + "join", + "model_list", + "as", + "t2", + "on", + "t1", + ".", + "id", + "=", + "t2", + ".", + "maker", + "group", + "by", + "t1", + ".", + "id" + ], + "question": "What is the full name of each car maker, along with its id and how many models it produces?", + "question_toks": [ + "What", + "is", + "the", + "full", + "name", + "of", + "each", + "car", + "maker", + ",", + "along", + "with", + "its", + "id", + "and", + "how", + "many", + "models", + "it", + "produces", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ], + [ + "table_unit", + 3 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 6, + false + ], + null + ], + [ + 0, + 11, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 8, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 6, + false + ], + null + ] + ], + [ + 3, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 6, + false + ] + ], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "car_1", + "query": "SELECT T1.Model FROM CAR_NAMES AS T1 JOIN CARS_DATA AS T2 ON T1.MakeId = T2.Id ORDER BY T2.horsepower ASC LIMIT 1;", + "query_toks": [ + "SELECT", + "T1.Model", + "FROM", + "CAR_NAMES", + "AS", + "T1", + "JOIN", + "CARS_DATA", + "AS", + "T2", + "ON", + "T1.MakeId", + "=", + "T2.Id", + "ORDER", + "BY", + "T2.horsepower", + "ASC", + "LIMIT", + "1", + ";" + ], + "query_toks_no_value": [ + "select", + "t1", + ".", + "model", + "from", + "car_names", + "as", + "t1", + "join", + "cars_data", + "as", + "t2", + "on", + "t1", + ".", + "makeid", + "=", + "t2", + ".", + "id", + "order", + "by", + "t2", + ".", + "horsepower", + "asc", + "limit", + "value" + ], + "question": "Which model of the car has the minimum horsepower?", + "question_toks": [ + "Which", + "model", + "of", + "the", + "car", + "has", + "the", + "minimum", + "horsepower", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 4 + ], + [ + "table_unit", + 5 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 13, + false + ], + null + ], + [ + 0, + 16, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 14, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [ + "asc", + [ + [ + 0, + [ + 0, + 20, + false + ], + null + ] + ] + ], + "limit": 1, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "car_1", + "query": "SELECT T1.Model FROM CAR_NAMES AS T1 JOIN CARS_DATA AS T2 ON T1.MakeId = T2.Id ORDER BY T2.horsepower ASC LIMIT 1;", + "query_toks": [ + "SELECT", + "T1.Model", + "FROM", + "CAR_NAMES", + "AS", + "T1", + "JOIN", + "CARS_DATA", + "AS", + "T2", + "ON", + "T1.MakeId", + "=", + "T2.Id", + "ORDER", + "BY", + "T2.horsepower", + "ASC", + "LIMIT", + "1", + ";" + ], + "query_toks_no_value": [ + "select", + "t1", + ".", + "model", + "from", + "car_names", + "as", + "t1", + "join", + "cars_data", + "as", + "t2", + "on", + "t1", + ".", + "makeid", + "=", + "t2", + ".", + "id", + "order", + "by", + "t2", + ".", + "horsepower", + "asc", + "limit", + "value" + ], + "question": "What is the model of the car with the smallest amount of horsepower?", + "question_toks": [ + "What", + "is", + "the", + "model", + "of", + "the", + "car", + "with", + "the", + "smallest", + "amount", + "of", + "horsepower", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 4 + ], + [ + "table_unit", + 5 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 13, + false + ], + null + ], + [ + 0, + 16, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 14, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [ + "asc", + [ + [ + 0, + [ + 0, + 20, + false + ], + null + ] + ] + ], + "limit": 1, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "car_1", + "query": "SELECT T1.model FROM CAR_NAMES AS T1 JOIN CARS_DATA AS T2 ON T1.MakeId = T2.Id WHERE T2.Weight < (SELECT avg(Weight) FROM CARS_DATA)", + "query_toks": [ + "SELECT", + "T1.model", + "FROM", + "CAR_NAMES", + "AS", + "T1", + "JOIN", + "CARS_DATA", + "AS", + "T2", + "ON", + "T1.MakeId", + "=", + "T2.Id", + "WHERE", + "T2.Weight", + "<", + "(", + "SELECT", + "avg", + "(", + "Weight", + ")", + "FROM", + "CARS_DATA", + ")" + ], + "query_toks_no_value": [ + "select", + "t1", + ".", + "model", + "from", + "car_names", + "as", + "t1", + "join", + "cars_data", + "as", + "t2", + "on", + "t1", + ".", + "makeid", + "=", + "t2", + ".", + "id", + "where", + "t2", + ".", + "weight", + "<", + "(", + "select", + "avg", + "(", + "weight", + ")", + "from", + "cars_data", + ")" + ], + "question": "Find the model of the car whose weight is below the average weight.", + "question_toks": [ + "Find", + "the", + "model", + "of", + "the", + "car", + "whose", + "weight", + "is", + "below", + "the", + "average", + "weight", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 4 + ], + [ + "table_unit", + 5 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 13, + false + ], + null + ], + [ + 0, + 16, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 14, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 4, + [ + 0, + [ + 0, + 21, + false + ], + null + ], + { + "from": { + "table_units": [ + [ + "table_unit", + 5 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 5, + [ + 0, + [ + 0, + 21, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + }, + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "car_1", + "query": "SELECT T1.model FROM CAR_NAMES AS T1 JOIN CARS_DATA AS T2 ON T1.MakeId = T2.Id WHERE T2.Weight < (SELECT avg(Weight) FROM CARS_DATA)", + "query_toks": [ + "SELECT", + "T1.model", + "FROM", + "CAR_NAMES", + "AS", + "T1", + "JOIN", + "CARS_DATA", + "AS", + "T2", + "ON", + "T1.MakeId", + "=", + "T2.Id", + "WHERE", + "T2.Weight", + "<", + "(", + "SELECT", + "avg", + "(", + "Weight", + ")", + "FROM", + "CARS_DATA", + ")" + ], + "query_toks_no_value": [ + "select", + "t1", + ".", + "model", + "from", + "car_names", + "as", + "t1", + "join", + "cars_data", + "as", + "t2", + "on", + "t1", + ".", + "makeid", + "=", + "t2", + ".", + "id", + "where", + "t2", + ".", + "weight", + "<", + "(", + "select", + "avg", + "(", + "weight", + ")", + "from", + "cars_data", + ")" + ], + "question": "What is the model for the car with a weight smaller than the average?", + "question_toks": [ + "What", + "is", + "the", + "model", + "for", + "the", + "car", + "with", + "a", + "weight", + "smaller", + "than", + "the", + "average", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 4 + ], + [ + "table_unit", + 5 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 13, + false + ], + null + ], + [ + 0, + 16, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 14, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 4, + [ + 0, + [ + 0, + 21, + false + ], + null + ], + { + "from": { + "table_units": [ + [ + "table_unit", + 5 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 5, + [ + 0, + [ + 0, + 21, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + }, + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "car_1", + "query": "SELECT DISTINCT T1.Maker FROM CAR_MAKERS AS T1 JOIN MODEL_LIST AS T2 ON T1.Id = T2.Maker JOIN CAR_NAMES AS T3 ON T2.model = T3.model JOIN CARS_DATA AS T4 ON T3.MakeId = T4.id WHERE T4.year = '1970';", + "query_toks": [ + "SELECT", + "DISTINCT", + "T1.Maker", + "FROM", + "CAR_MAKERS", + "AS", + "T1", + "JOIN", + "MODEL_LIST", + "AS", + "T2", + "ON", + "T1.Id", + "=", + "T2.Maker", + "JOIN", + "CAR_NAMES", + "AS", + "T3", + "ON", + "T2.model", + "=", + "T3.model", + "JOIN", + "CARS_DATA", + "AS", + "T4", + "ON", + "T3.MakeId", + "=", + "T4.id", + "WHERE", + "T4.year", + "=", + "'1970", + "'", + ";" + ], + "query_toks_no_value": [ + "select", + "distinct", + "t1", + ".", + "maker", + "from", + "car_makers", + "as", + "t1", + "join", + "model_list", + "as", + "t2", + "on", + "t1", + ".", + "id", + "=", + "t2", + ".", + "maker", + "join", + "car_names", + "as", + "t3", + "on", + "t2", + ".", + "model", + "=", + "t3", + ".", + "model", + "join", + "cars_data", + "as", + "t4", + "on", + "t3", + ".", + "makeid", + "=", + "t4", + ".", + "id", + "where", + "t4", + ".", + "year", + "=", + "value" + ], + "question": "Find the name of the makers that produced some cars in the year of 1970?", + "question_toks": [ + "Find", + "the", + "name", + "of", + "the", + "makers", + "that", + "produced", + "some", + "cars", + "in", + "the", + "year", + "of", + "1970", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ], + [ + "table_unit", + 3 + ], + [ + "table_unit", + 4 + ], + [ + "table_unit", + 5 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 6, + false + ], + null + ], + [ + 0, + 11, + false + ], + null + ], + "and", + [ + false, + 2, + [ + 0, + [ + 0, + 12, + false + ], + null + ], + [ + 0, + 14, + false + ], + null + ], + "and", + [ + false, + 2, + [ + 0, + [ + 0, + 13, + false + ], + null + ], + [ + 0, + 16, + false + ], + null + ] + ] + }, + "select": [ + true, + [ + [ + 0, + [ + 0, + [ + 0, + 7, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 23, + false + ], + null + ], + "\"1970\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "car_1", + "query": "SELECT DISTINCT T1.Maker FROM CAR_MAKERS AS T1 JOIN MODEL_LIST AS T2 ON T1.Id = T2.Maker JOIN CAR_NAMES AS T3 ON T2.model = T3.model JOIN CARS_DATA AS T4 ON T3.MakeId = T4.id WHERE T4.year = '1970';", + "query_toks": [ + "SELECT", + "DISTINCT", + "T1.Maker", + "FROM", + "CAR_MAKERS", + "AS", + "T1", + "JOIN", + "MODEL_LIST", + "AS", + "T2", + "ON", + "T1.Id", + "=", + "T2.Maker", + "JOIN", + "CAR_NAMES", + "AS", + "T3", + "ON", + "T2.model", + "=", + "T3.model", + "JOIN", + "CARS_DATA", + "AS", + "T4", + "ON", + "T3.MakeId", + "=", + "T4.id", + "WHERE", + "T4.year", + "=", + "'1970", + "'", + ";" + ], + "query_toks_no_value": [ + "select", + "distinct", + "t1", + ".", + "maker", + "from", + "car_makers", + "as", + "t1", + "join", + "model_list", + "as", + "t2", + "on", + "t1", + ".", + "id", + "=", + "t2", + ".", + "maker", + "join", + "car_names", + "as", + "t3", + "on", + "t2", + ".", + "model", + "=", + "t3", + ".", + "model", + "join", + "cars_data", + "as", + "t4", + "on", + "t3", + ".", + "makeid", + "=", + "t4", + ".", + "id", + "where", + "t4", + ".", + "year", + "=", + "value" + ], + "question": "What is the name of the different car makers who produced a car in 1970?", + "question_toks": [ + "What", + "is", + "the", + "name", + "of", + "the", + "different", + "car", + "makers", + "who", + "produced", + "a", + "car", + "in", + "1970", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ], + [ + "table_unit", + 3 + ], + [ + "table_unit", + 4 + ], + [ + "table_unit", + 5 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 6, + false + ], + null + ], + [ + 0, + 11, + false + ], + null + ], + "and", + [ + false, + 2, + [ + 0, + [ + 0, + 12, + false + ], + null + ], + [ + 0, + 14, + false + ], + null + ], + "and", + [ + false, + 2, + [ + 0, + [ + 0, + 13, + false + ], + null + ], + [ + 0, + 16, + false + ], + null + ] + ] + }, + "select": [ + true, + [ + [ + 0, + [ + 0, + [ + 0, + 7, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 23, + false + ], + null + ], + "\"1970\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "car_1", + "query": "SELECT T2.Make , T1.Year FROM CARS_DATA AS T1 JOIN CAR_NAMES AS T2 ON T1.Id = T2.MakeId WHERE T1.Year = (SELECT min(YEAR) FROM CARS_DATA);", + "query_toks": [ + "SELECT", + "T2.Make", + ",", + "T1.Year", + "FROM", + "CARS_DATA", + "AS", + "T1", + "JOIN", + "CAR_NAMES", + "AS", + "T2", + "ON", + "T1.Id", + "=", + "T2.MakeId", + "WHERE", + "T1.Year", + "=", + "(", + "SELECT", + "min", + "(", + "YEAR", + ")", + "FROM", + "CARS_DATA", + ")", + ";" + ], + "query_toks_no_value": [ + "select", + "t2", + ".", + "make", + ",", + "t1", + ".", + "year", + "from", + "cars_data", + "as", + "t1", + "join", + "car_names", + "as", + "t2", + "on", + "t1", + ".", + "id", + "=", + "t2", + ".", + "makeid", + "where", + "t1", + ".", + "year", + "=", + "(", + "select", + "min", + "(", + "year", + ")", + "from", + "cars_data", + ")" + ], + "question": "Find the make and production time of the cars that were produced in the earliest year?", + "question_toks": [ + "Find", + "the", + "make", + "and", + "production", + "time", + "of", + "the", + "cars", + "that", + "were", + "produced", + "in", + "the", + "earliest", + "year", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 5 + ], + [ + "table_unit", + 4 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 16, + false + ], + null + ], + [ + 0, + 13, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 15, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 23, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 23, + false + ], + null + ], + { + "from": { + "table_units": [ + [ + "table_unit", + 5 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 2, + [ + 0, + [ + 0, + 23, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + }, + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "car_1", + "query": "SELECT T2.Make , T1.Year FROM CARS_DATA AS T1 JOIN CAR_NAMES AS T2 ON T1.Id = T2.MakeId WHERE T1.Year = (SELECT min(YEAR) FROM CARS_DATA);", + "query_toks": [ + "SELECT", + "T2.Make", + ",", + "T1.Year", + "FROM", + "CARS_DATA", + "AS", + "T1", + "JOIN", + "CAR_NAMES", + "AS", + "T2", + "ON", + "T1.Id", + "=", + "T2.MakeId", + "WHERE", + "T1.Year", + "=", + "(", + "SELECT", + "min", + "(", + "YEAR", + ")", + "FROM", + "CARS_DATA", + ")", + ";" + ], + "query_toks_no_value": [ + "select", + "t2", + ".", + "make", + ",", + "t1", + ".", + "year", + "from", + "cars_data", + "as", + "t1", + "join", + "car_names", + "as", + "t2", + "on", + "t1", + ".", + "id", + "=", + "t2", + ".", + "makeid", + "where", + "t1", + ".", + "year", + "=", + "(", + "select", + "min", + "(", + "year", + ")", + "from", + "cars_data", + ")" + ], + "question": "What is the maker of the carr produced in the earliest year and what year was it?", + "question_toks": [ + "What", + "is", + "the", + "maker", + "of", + "the", + "carr", + "produced", + "in", + "the", + "earliest", + "year", + "and", + "what", + "year", + "was", + "it", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 5 + ], + [ + "table_unit", + 4 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 16, + false + ], + null + ], + [ + 0, + 13, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 15, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 23, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 23, + false + ], + null + ], + { + "from": { + "table_units": [ + [ + "table_unit", + 5 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 2, + [ + 0, + [ + 0, + 23, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + }, + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "car_1", + "query": "SELECT DISTINCT T1.model FROM MODEL_LIST AS T1 JOIN CAR_NAMES AS T2 ON T1.model = T2.model JOIN CARS_DATA AS T3 ON T2.MakeId = T3.id WHERE T3.year > 1980;", + "query_toks": [ + "SELECT", + "DISTINCT", + "T1.model", + "FROM", + "MODEL_LIST", + "AS", + "T1", + "JOIN", + "CAR_NAMES", + "AS", + "T2", + "ON", + "T1.model", + "=", + "T2.model", + "JOIN", + "CARS_DATA", + "AS", + "T3", + "ON", + "T2.MakeId", + "=", + "T3.id", + "WHERE", + "T3.year", + ">", + "1980", + ";" + ], + "query_toks_no_value": [ + "select", + "distinct", + "t1", + ".", + "model", + "from", + "model_list", + "as", + "t1", + "join", + "car_names", + "as", + "t2", + "on", + "t1", + ".", + "model", + "=", + "t2", + ".", + "model", + "join", + "cars_data", + "as", + "t3", + "on", + "t2", + ".", + "makeid", + "=", + "t3", + ".", + "id", + "where", + "t3", + ".", + "year", + ">", + "value" + ], + "question": "Which distinct car models are the produced after 1980?", + "question_toks": [ + "Which", + "distinct", + "car", + "models", + "are", + "the", + "produced", + "after", + "1980", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 3 + ], + [ + "table_unit", + 4 + ], + [ + "table_unit", + 5 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 12, + false + ], + null + ], + [ + 0, + 14, + false + ], + null + ], + "and", + [ + false, + 2, + [ + 0, + [ + 0, + 13, + false + ], + null + ], + [ + 0, + 16, + false + ], + null + ] + ] + }, + "select": [ + true, + [ + [ + 0, + [ + 0, + [ + 0, + 12, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 3, + [ + 0, + [ + 0, + 23, + false + ], + null + ], + 1980.0, + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "car_1", + "query": "SELECT DISTINCT T1.model FROM MODEL_LIST AS T1 JOIN CAR_NAMES AS T2 ON T1.model = T2.model JOIN CARS_DATA AS T3 ON T2.MakeId = T3.id WHERE T3.year > 1980;", + "query_toks": [ + "SELECT", + "DISTINCT", + "T1.model", + "FROM", + "MODEL_LIST", + "AS", + "T1", + "JOIN", + "CAR_NAMES", + "AS", + "T2", + "ON", + "T1.model", + "=", + "T2.model", + "JOIN", + "CARS_DATA", + "AS", + "T3", + "ON", + "T2.MakeId", + "=", + "T3.id", + "WHERE", + "T3.year", + ">", + "1980", + ";" + ], + "query_toks_no_value": [ + "select", + "distinct", + "t1", + ".", + "model", + "from", + "model_list", + "as", + "t1", + "join", + "car_names", + "as", + "t2", + "on", + "t1", + ".", + "model", + "=", + "t2", + ".", + "model", + "join", + "cars_data", + "as", + "t3", + "on", + "t2", + ".", + "makeid", + "=", + "t3", + ".", + "id", + "where", + "t3", + ".", + "year", + ">", + "value" + ], + "question": "What are the different models for the cards produced after 1980?", + "question_toks": [ + "What", + "are", + "the", + "different", + "models", + "for", + "the", + "cards", + "produced", + "after", + "1980", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 3 + ], + [ + "table_unit", + 4 + ], + [ + "table_unit", + 5 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 12, + false + ], + null + ], + [ + 0, + 14, + false + ], + null + ], + "and", + [ + false, + 2, + [ + 0, + [ + 0, + 13, + false + ], + null + ], + [ + 0, + 16, + false + ], + null + ] + ] + }, + "select": [ + true, + [ + [ + 0, + [ + 0, + [ + 0, + 12, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 3, + [ + 0, + [ + 0, + 23, + false + ], + null + ], + 1980.0, + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "car_1", + "query": "SELECT T1.Continent , count(*) FROM CONTINENTS AS T1 JOIN COUNTRIES AS T2 ON T1.ContId = T2.continent JOIN car_makers AS T3 ON T2.CountryId = T3.Country GROUP BY T1.Continent;", + "query_toks": [ + "SELECT", + "T1.Continent", + ",", + "count", + "(", + "*", + ")", + "FROM", + "CONTINENTS", + "AS", + "T1", + "JOIN", + "COUNTRIES", + "AS", + "T2", + "ON", + "T1.ContId", + "=", + "T2.continent", + "JOIN", + "car_makers", + "AS", + "T3", + "ON", + "T2.CountryId", + "=", + "T3.Country", + "GROUP", + "BY", + "T1.Continent", + ";" + ], + "query_toks_no_value": [ + "select", + "t1", + ".", + "continent", + ",", + "count", + "(", + "*", + ")", + "from", + "continents", + "as", + "t1", + "join", + "countries", + "as", + "t2", + "on", + "t1", + ".", + "contid", + "=", + "t2", + ".", + "continent", + "join", + "car_makers", + "as", + "t3", + "on", + "t2", + ".", + "countryid", + "=", + "t3", + ".", + "country", + "group", + "by", + "t1", + ".", + "continent" + ], + "question": "How many car makers are there in each continents? List the continent name and the count.", + "question_toks": [ + "How", + "many", + "car", + "makers", + "are", + "there", + "in", + "each", + "continents", + "?", + "List", + "the", + "continent", + "name", + "and", + "the", + "count", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ], + [ + "table_unit", + 1 + ], + [ + "table_unit", + 2 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 1, + false + ], + null + ], + [ + 0, + 5, + false + ], + null + ], + "and", + [ + false, + 2, + [ + 0, + [ + 0, + 3, + false + ], + null + ], + [ + 0, + 9, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 2, + false + ], + null + ] + ], + [ + 3, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 2, + false + ] + ], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "car_1", + "query": "SELECT T1.Continent , count(*) FROM CONTINENTS AS T1 JOIN COUNTRIES AS T2 ON T1.ContId = T2.continent JOIN car_makers AS T3 ON T2.CountryId = T3.Country GROUP BY T1.Continent;", + "query_toks": [ + "SELECT", + "T1.Continent", + ",", + "count", + "(", + "*", + ")", + "FROM", + "CONTINENTS", + "AS", + "T1", + "JOIN", + "COUNTRIES", + "AS", + "T2", + "ON", + "T1.ContId", + "=", + "T2.continent", + "JOIN", + "car_makers", + "AS", + "T3", + "ON", + "T2.CountryId", + "=", + "T3.Country", + "GROUP", + "BY", + "T1.Continent", + ";" + ], + "query_toks_no_value": [ + "select", + "t1", + ".", + "continent", + ",", + "count", + "(", + "*", + ")", + "from", + "continents", + "as", + "t1", + "join", + "countries", + "as", + "t2", + "on", + "t1", + ".", + "contid", + "=", + "t2", + ".", + "continent", + "join", + "car_makers", + "as", + "t3", + "on", + "t2", + ".", + "countryid", + "=", + "t3", + ".", + "country", + "group", + "by", + "t1", + ".", + "continent" + ], + "question": "What is the name of each continent and how many car makers are there in each one?", + "question_toks": [ + "What", + "is", + "the", + "name", + "of", + "each", + "continent", + "and", + "how", + "many", + "car", + "makers", + "are", + "there", + "in", + "each", + "one", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ], + [ + "table_unit", + 1 + ], + [ + "table_unit", + 2 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 1, + false + ], + null + ], + [ + 0, + 5, + false + ], + null + ], + "and", + [ + false, + 2, + [ + 0, + [ + 0, + 3, + false + ], + null + ], + [ + 0, + 9, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 2, + false + ], + null + ] + ], + [ + 3, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 2, + false + ] + ], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "car_1", + "query": "SELECT T2.CountryName FROM CAR_MAKERS AS T1 JOIN COUNTRIES AS T2 ON T1.Country = T2.CountryId GROUP BY T1.Country ORDER BY Count(*) DESC LIMIT 1;", + "query_toks": [ + "SELECT", + "T2.CountryName", + "FROM", + "CAR_MAKERS", + "AS", + "T1", + "JOIN", + "COUNTRIES", + "AS", + "T2", + "ON", + "T1.Country", + "=", + "T2.CountryId", + "GROUP", + "BY", + "T1.Country", + "ORDER", + "BY", + "Count", + "(", + "*", + ")", + "DESC", + "LIMIT", + "1", + ";" + ], + "query_toks_no_value": [ + "select", + "t2", + ".", + "countryname", + "from", + "car_makers", + "as", + "t1", + "join", + "countries", + "as", + "t2", + "on", + "t1", + ".", + "country", + "=", + "t2", + ".", + "countryid", + "group", + "by", + "t1", + ".", + "country", + "order", + "by", + "count", + "(", + "*", + ")", + "desc", + "limit", + "value" + ], + "question": "Which of the countries has the most car makers? List the country name.", + "question_toks": [ + "Which", + "of", + "the", + "countries", + "has", + "the", + "most", + "car", + "makers", + "?", + "List", + "the", + "country", + "name", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ], + [ + "table_unit", + 1 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 9, + false + ], + null + ], + [ + 0, + 3, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 4, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 9, + false + ] + ], + "having": [], + "orderBy": [ + "desc", + [ + [ + 0, + [ + 3, + 0, + false + ], + null + ] + ] + ], + "limit": 1, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "car_1", + "query": "SELECT T2.CountryName FROM CAR_MAKERS AS T1 JOIN COUNTRIES AS T2 ON T1.Country = T2.CountryId GROUP BY T1.Country ORDER BY Count(*) DESC LIMIT 1;", + "query_toks": [ + "SELECT", + "T2.CountryName", + "FROM", + "CAR_MAKERS", + "AS", + "T1", + "JOIN", + "COUNTRIES", + "AS", + "T2", + "ON", + "T1.Country", + "=", + "T2.CountryId", + "GROUP", + "BY", + "T1.Country", + "ORDER", + "BY", + "Count", + "(", + "*", + ")", + "DESC", + "LIMIT", + "1", + ";" + ], + "query_toks_no_value": [ + "select", + "t2", + ".", + "countryname", + "from", + "car_makers", + "as", + "t1", + "join", + "countries", + "as", + "t2", + "on", + "t1", + ".", + "country", + "=", + "t2", + ".", + "countryid", + "group", + "by", + "t1", + ".", + "country", + "order", + "by", + "count", + "(", + "*", + ")", + "desc", + "limit", + "value" + ], + "question": "What is the name of the country with the most car makers?", + "question_toks": [ + "What", + "is", + "the", + "name", + "of", + "the", + "country", + "with", + "the", + "most", + "car", + "makers", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ], + [ + "table_unit", + 1 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 9, + false + ], + null + ], + [ + 0, + 3, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 4, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 9, + false + ] + ], + "having": [], + "orderBy": [ + "desc", + [ + [ + 0, + [ + 3, + 0, + false + ], + null + ] + ] + ], + "limit": 1, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "car_1", + "query": "select count(*) , t2.fullname from model_list as t1 join car_makers as t2 on t1.maker = t2.id group by t2.id;", + "query_toks": [ + "select", + "count", + "(", + "*", + ")", + ",", + "t2.fullname", + "from", + "model_list", + "as", + "t1", + "join", + "car_makers", + "as", + "t2", + "on", + "t1.maker", + "=", + "t2.id", + "group", + "by", + "t2.id", + ";" + ], + "query_toks_no_value": [ + "select", + "count", + "(", + "*", + ")", + ",", + "t2", + ".", + "fullname", + "from", + "model_list", + "as", + "t1", + "join", + "car_makers", + "as", + "t2", + "on", + "t1", + ".", + "maker", + "=", + "t2", + ".", + "id", + "group", + "by", + "t2", + ".", + "id" + ], + "question": "How many car models are produced by each maker ? Only list the count and the maker full name .", + "question_toks": [ + "How", + "many", + "car", + "models", + "are", + "produced", + "by", + "each", + "maker", + "?", + "Only", + "list", + "the", + "count", + "and", + "the", + "maker", + "full", + "name", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 3 + ], + [ + "table_unit", + 2 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 11, + false + ], + null + ], + [ + 0, + 6, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 3, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 8, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 6, + false + ] + ], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "car_1", + "query": "SELECT Count(*) , T2.FullName , T2.id FROM MODEL_LIST AS T1 JOIN CAR_MAKERS AS T2 ON T1.Maker = T2.Id GROUP BY T2.id;", + "query_toks": [ + "SELECT", + "Count", + "(", + "*", + ")", + ",", + "T2.FullName", + ",", + "T2.id", + "FROM", + "MODEL_LIST", + "AS", + "T1", + "JOIN", + "CAR_MAKERS", + "AS", + "T2", + "ON", + "T1.Maker", + "=", + "T2.Id", + "GROUP", + "BY", + "T2.id", + ";" + ], + "query_toks_no_value": [ + "select", + "count", + "(", + "*", + ")", + ",", + "t2", + ".", + "fullname", + ",", + "t2", + ".", + "id", + "from", + "model_list", + "as", + "t1", + "join", + "car_makers", + "as", + "t2", + "on", + "t1", + ".", + "maker", + "=", + "t2", + ".", + "id", + "group", + "by", + "t2", + ".", + "id" + ], + "question": "What is the number of car models that are produced by each maker and what is the id and full name of each maker?", + "question_toks": [ + "What", + "is", + "the", + "number", + "of", + "car", + "models", + "that", + "are", + "produced", + "by", + "each", + "maker", + "and", + "what", + "is", + "the", + "id", + "and", + "full", + "name", + "of", + "each", + "maker", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 3 + ], + [ + "table_unit", + 2 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 11, + false + ], + null + ], + [ + 0, + 6, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 3, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 8, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 6, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 6, + false + ] + ], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "car_1", + "query": "SELECT T1.Accelerate FROM CARS_DATA AS T1 JOIN CAR_NAMES AS T2 ON T1.Id = T2.MakeId WHERE T2.Make = 'amc hornet sportabout (sw)';", + "query_toks": [ + "SELECT", + "T1.Accelerate", + "FROM", + "CARS_DATA", + "AS", + "T1", + "JOIN", + "CAR_NAMES", + "AS", + "T2", + "ON", + "T1.Id", + "=", + "T2.MakeId", + "WHERE", + "T2.Make", + "=", + "'amc", + "hornet", + "sportabout", + "(", + "sw", + ")", + "'", + ";" + ], + "query_toks_no_value": [ + "select", + "t1", + ".", + "accelerate", + "from", + "cars_data", + "as", + "t1", + "join", + "car_names", + "as", + "t2", + "on", + "t1", + ".", + "id", + "=", + "t2", + ".", + "makeid", + "where", + "t2", + ".", + "make", + "=", + "value" + ], + "question": "What is the accelerate of the car make amc hornet sportabout (sw)?", + "question_toks": [ + "What", + "is", + "the", + "accelerate", + "of", + "the", + "car", + "make", + "amc", + "hornet", + "sportabout", + "(", + "sw", + ")", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 5 + ], + [ + "table_unit", + 4 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 16, + false + ], + null + ], + [ + 0, + 13, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 22, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 15, + false + ], + null + ], + "\"amc hornet sportabout (sw)\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "car_1", + "query": "SELECT T1.Accelerate FROM CARS_DATA AS T1 JOIN CAR_NAMES AS T2 ON T1.Id = T2.MakeId WHERE T2.Make = 'amc hornet sportabout (sw)';", + "query_toks": [ + "SELECT", + "T1.Accelerate", + "FROM", + "CARS_DATA", + "AS", + "T1", + "JOIN", + "CAR_NAMES", + "AS", + "T2", + "ON", + "T1.Id", + "=", + "T2.MakeId", + "WHERE", + "T2.Make", + "=", + "'amc", + "hornet", + "sportabout", + "(", + "sw", + ")", + "'", + ";" + ], + "query_toks_no_value": [ + "select", + "t1", + ".", + "accelerate", + "from", + "cars_data", + "as", + "t1", + "join", + "car_names", + "as", + "t2", + "on", + "t1", + ".", + "id", + "=", + "t2", + ".", + "makeid", + "where", + "t2", + ".", + "make", + "=", + "value" + ], + "question": "How much does the car accelerate that makes amc hornet sportabout (sw)?", + "question_toks": [ + "How", + "much", + "does", + "the", + "car", + "accelerate", + "that", + "makes", + "amc", + "hornet", + "sportabout", + "(", + "sw", + ")", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 5 + ], + [ + "table_unit", + 4 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 16, + false + ], + null + ], + [ + 0, + 13, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 22, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 15, + false + ], + null + ], + "\"amc hornet sportabout (sw)\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "car_1", + "query": "SELECT count(*) FROM CAR_MAKERS AS T1 JOIN COUNTRIES AS T2 ON T1.Country = T2.CountryId WHERE T2.CountryName = 'france';", + "query_toks": [ + "SELECT", + "count", + "(", + "*", + ")", + "FROM", + "CAR_MAKERS", + "AS", + "T1", + "JOIN", + "COUNTRIES", + "AS", + "T2", + "ON", + "T1.Country", + "=", + "T2.CountryId", + "WHERE", + "T2.CountryName", + "=", + "'france", + "'", + ";" + ], + "query_toks_no_value": [ + "select", + "count", + "(", + "*", + ")", + "from", + "car_makers", + "as", + "t1", + "join", + "countries", + "as", + "t2", + "on", + "t1", + ".", + "country", + "=", + "t2", + ".", + "countryid", + "where", + "t2", + ".", + "countryname", + "=", + "value" + ], + "question": "How many car makers are there in france?", + "question_toks": [ + "How", + "many", + "car", + "makers", + "are", + "there", + "in", + "france", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ], + [ + "table_unit", + 1 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 9, + false + ], + null + ], + [ + 0, + 3, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 3, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 4, + false + ], + null + ], + "\"france\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "car_1", + "query": "SELECT count(*) FROM CAR_MAKERS AS T1 JOIN COUNTRIES AS T2 ON T1.Country = T2.CountryId WHERE T2.CountryName = 'france';", + "query_toks": [ + "SELECT", + "count", + "(", + "*", + ")", + "FROM", + "CAR_MAKERS", + "AS", + "T1", + "JOIN", + "COUNTRIES", + "AS", + "T2", + "ON", + "T1.Country", + "=", + "T2.CountryId", + "WHERE", + "T2.CountryName", + "=", + "'france", + "'", + ";" + ], + "query_toks_no_value": [ + "select", + "count", + "(", + "*", + ")", + "from", + "car_makers", + "as", + "t1", + "join", + "countries", + "as", + "t2", + "on", + "t1", + ".", + "country", + "=", + "t2", + ".", + "countryid", + "where", + "t2", + ".", + "countryname", + "=", + "value" + ], + "question": "What is the number of makers of care in France?", + "question_toks": [ + "What", + "is", + "the", + "number", + "of", + "makers", + "of", + "care", + "in", + "France", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ], + [ + "table_unit", + 1 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 9, + false + ], + null + ], + [ + 0, + 3, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 3, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 4, + false + ], + null + ], + "\"france\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "car_1", + "query": "SELECT count(*) FROM MODEL_LIST AS T1 JOIN CAR_MAKERS AS T2 ON T1.Maker = T2.Id JOIN COUNTRIES AS T3 ON T2.Country = T3.CountryId WHERE T3.CountryName = 'usa';", + "query_toks": [ + "SELECT", + "count", + "(", + "*", + ")", + "FROM", + "MODEL_LIST", + "AS", + "T1", + "JOIN", + "CAR_MAKERS", + "AS", + "T2", + "ON", + "T1.Maker", + "=", + "T2.Id", + "JOIN", + "COUNTRIES", + "AS", + "T3", + "ON", + "T2.Country", + "=", + "T3.CountryId", + "WHERE", + "T3.CountryName", + "=", + "'usa", + "'", + ";" + ], + "query_toks_no_value": [ + "select", + "count", + "(", + "*", + ")", + "from", + "model_list", + "as", + "t1", + "join", + "car_makers", + "as", + "t2", + "on", + "t1", + ".", + "maker", + "=", + "t2", + ".", + "id", + "join", + "countries", + "as", + "t3", + "on", + "t2", + ".", + "country", + "=", + "t3", + ".", + "countryid", + "where", + "t3", + ".", + "countryname", + "=", + "value" + ], + "question": "How many car models are produced in the usa?", + "question_toks": [ + "How", + "many", + "car", + "models", + "are", + "produced", + "in", + "the", + "usa", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 3 + ], + [ + "table_unit", + 2 + ], + [ + "table_unit", + 1 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 11, + false + ], + null + ], + [ + 0, + 6, + false + ], + null + ], + "and", + [ + false, + 2, + [ + 0, + [ + 0, + 9, + false + ], + null + ], + [ + 0, + 3, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 3, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 4, + false + ], + null + ], + "\"usa\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "car_1", + "query": "SELECT count(*) FROM MODEL_LIST AS T1 JOIN CAR_MAKERS AS T2 ON T1.Maker = T2.Id JOIN COUNTRIES AS T3 ON T2.Country = T3.CountryId WHERE T3.CountryName = 'usa';", + "query_toks": [ + "SELECT", + "count", + "(", + "*", + ")", + "FROM", + "MODEL_LIST", + "AS", + "T1", + "JOIN", + "CAR_MAKERS", + "AS", + "T2", + "ON", + "T1.Maker", + "=", + "T2.Id", + "JOIN", + "COUNTRIES", + "AS", + "T3", + "ON", + "T2.Country", + "=", + "T3.CountryId", + "WHERE", + "T3.CountryName", + "=", + "'usa", + "'", + ";" + ], + "query_toks_no_value": [ + "select", + "count", + "(", + "*", + ")", + "from", + "model_list", + "as", + "t1", + "join", + "car_makers", + "as", + "t2", + "on", + "t1", + ".", + "maker", + "=", + "t2", + ".", + "id", + "join", + "countries", + "as", + "t3", + "on", + "t2", + ".", + "country", + "=", + "t3", + ".", + "countryid", + "where", + "t3", + ".", + "countryname", + "=", + "value" + ], + "question": "What is the count of the car models produced in the United States?", + "question_toks": [ + "What", + "is", + "the", + "count", + "of", + "the", + "car", + "models", + "produced", + "in", + "the", + "United", + "States", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 3 + ], + [ + "table_unit", + 2 + ], + [ + "table_unit", + 1 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 11, + false + ], + null + ], + [ + 0, + 6, + false + ], + null + ], + "and", + [ + false, + 2, + [ + 0, + [ + 0, + 9, + false + ], + null + ], + [ + 0, + 3, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 3, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 4, + false + ], + null + ], + "\"usa\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "car_1", + "query": "SELECT avg(mpg) FROM CARS_DATA WHERE Cylinders = 4;", + "query_toks": [ + "SELECT", + "avg", + "(", + "mpg", + ")", + "FROM", + "CARS_DATA", + "WHERE", + "Cylinders", + "=", + "4", + ";" + ], + "query_toks_no_value": [ + "select", + "avg", + "(", + "mpg", + ")", + "from", + "cars_data", + "where", + "cylinders", + "=", + "value" + ], + "question": "What is the average miles per gallon(mpg) of the cars with 4 cylinders?", + "question_toks": [ + "What", + "is", + "the", + "average", + "miles", + "per", + "gallon", + "(", + "mpg", + ")", + "of", + "the", + "cars", + "with", + "4", + "cylinders", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 5 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 5, + [ + 0, + [ + 0, + 17, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 18, + false + ], + null + ], + 4.0, + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "car_1", + "query": "SELECT avg(mpg) FROM CARS_DATA WHERE Cylinders = 4;", + "query_toks": [ + "SELECT", + "avg", + "(", + "mpg", + ")", + "FROM", + "CARS_DATA", + "WHERE", + "Cylinders", + "=", + "4", + ";" + ], + "query_toks_no_value": [ + "select", + "avg", + "(", + "mpg", + ")", + "from", + "cars_data", + "where", + "cylinders", + "=", + "value" + ], + "question": "What is the average miles per gallon of all the cards with 4 cylinders?", + "question_toks": [ + "What", + "is", + "the", + "average", + "miles", + "per", + "gallon", + "of", + "all", + "the", + "cards", + "with", + "4", + "cylinders", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 5 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 5, + [ + 0, + [ + 0, + 17, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 18, + false + ], + null + ], + 4.0, + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "car_1", + "query": "select min(weight) from cars_data where cylinders = 8 and year = 1974", + "query_toks": [ + "select", + "min", + "(", + "weight", + ")", + "from", + "cars_data", + "where", + "cylinders", + "=", + "8", + "and", + "year", + "=", + "1974" + ], + "query_toks_no_value": [ + "select", + "min", + "(", + "weight", + ")", + "from", + "cars_data", + "where", + "cylinders", + "=", + "value", + "and", + "year", + "=", + "value" + ], + "question": "What is the smallest weight of the car produced with 8 cylinders on 1974 ?", + "question_toks": [ + "What", + "is", + "the", + "smallest", + "weight", + "of", + "the", + "car", + "produced", + "with", + "8", + "cylinders", + "on", + "1974", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 5 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 2, + [ + 0, + [ + 0, + 21, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 18, + false + ], + null + ], + 8.0, + null + ], + "and", + [ + false, + 2, + [ + 0, + [ + 0, + 23, + false + ], + null + ], + 1974.0, + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "car_1", + "query": "select min(weight) from cars_data where cylinders = 8 and year = 1974", + "query_toks": [ + "select", + "min", + "(", + "weight", + ")", + "from", + "cars_data", + "where", + "cylinders", + "=", + "8", + "and", + "year", + "=", + "1974" + ], + "query_toks_no_value": [ + "select", + "min", + "(", + "weight", + ")", + "from", + "cars_data", + "where", + "cylinders", + "=", + "value", + "and", + "year", + "=", + "value" + ], + "question": "What is the minimum weight of the car with 8 cylinders produced in 1974 ?", + "question_toks": [ + "What", + "is", + "the", + "minimum", + "weight", + "of", + "the", + "car", + "with", + "8", + "cylinders", + "produced", + "in", + "1974", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 5 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 2, + [ + 0, + [ + 0, + 21, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 18, + false + ], + null + ], + 8.0, + null + ], + "and", + [ + false, + 2, + [ + 0, + [ + 0, + 23, + false + ], + null + ], + 1974.0, + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "car_1", + "query": "SELECT Maker , Model FROM MODEL_LIST;", + "query_toks": [ + "SELECT", + "Maker", + ",", + "Model", + "FROM", + "MODEL_LIST", + ";" + ], + "query_toks_no_value": [ + "select", + "maker", + ",", + "model", + "from", + "model_list" + ], + "question": "What are all the makers and models?", + "question_toks": [ + "What", + "are", + "all", + "the", + "makers", + "and", + "models", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 3 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 11, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 12, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "car_1", + "query": "SELECT Maker , Model FROM MODEL_LIST;", + "query_toks": [ + "SELECT", + "Maker", + ",", + "Model", + "FROM", + "MODEL_LIST", + ";" + ], + "query_toks_no_value": [ + "select", + "maker", + ",", + "model", + "from", + "model_list" + ], + "question": "What are the makers and models?", + "question_toks": [ + "What", + "are", + "the", + "makers", + "and", + "models", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 3 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 11, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 12, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "car_1", + "query": "SELECT T1.CountryName , T1.CountryId FROM COUNTRIES AS T1 JOIN CAR_MAKERS AS T2 ON T1.CountryId = T2.Country GROUP BY T1.CountryId HAVING count(*) >= 1;", + "query_toks": [ + "SELECT", + "T1.CountryName", + ",", + "T1.CountryId", + "FROM", + "COUNTRIES", + "AS", + "T1", + "JOIN", + "CAR_MAKERS", + "AS", + "T2", + "ON", + "T1.CountryId", + "=", + "T2.Country", + "GROUP", + "BY", + "T1.CountryId", + "HAVING", + "count", + "(", + "*", + ")", + ">", + "=", + "1", + ";" + ], + "query_toks_no_value": [ + "select", + "t1", + ".", + "countryname", + ",", + "t1", + ".", + "countryid", + "from", + "countries", + "as", + "t1", + "join", + "car_makers", + "as", + "t2", + "on", + "t1", + ".", + "countryid", + "=", + "t2", + ".", + "country", + "group", + "by", + "t1", + ".", + "countryid", + "having", + "count", + "(", + "*", + ")", + ">", + "=", + "value" + ], + "question": "What are the countries having at least one car maker? List name and id.", + "question_toks": [ + "What", + "are", + "the", + "countries", + "having", + "at", + "least", + "one", + "car", + "maker", + "?", + "List", + "name", + "and", + "id", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ], + [ + "table_unit", + 2 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 3, + false + ], + null + ], + [ + 0, + 9, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 4, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 3, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 3, + false + ] + ], + "having": [ + [ + false, + 5, + [ + 0, + [ + 3, + 0, + false + ], + null + ], + 1.0, + null + ] + ], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "car_1", + "query": "SELECT T1.CountryName , T1.CountryId FROM COUNTRIES AS T1 JOIN CAR_MAKERS AS T2 ON T1.CountryId = T2.Country GROUP BY T1.CountryId HAVING count(*) >= 1;", + "query_toks": [ + "SELECT", + "T1.CountryName", + ",", + "T1.CountryId", + "FROM", + "COUNTRIES", + "AS", + "T1", + "JOIN", + "CAR_MAKERS", + "AS", + "T2", + "ON", + "T1.CountryId", + "=", + "T2.Country", + "GROUP", + "BY", + "T1.CountryId", + "HAVING", + "count", + "(", + "*", + ")", + ">", + "=", + "1", + ";" + ], + "query_toks_no_value": [ + "select", + "t1", + ".", + "countryname", + ",", + "t1", + ".", + "countryid", + "from", + "countries", + "as", + "t1", + "join", + "car_makers", + "as", + "t2", + "on", + "t1", + ".", + "countryid", + "=", + "t2", + ".", + "country", + "group", + "by", + "t1", + ".", + "countryid", + "having", + "count", + "(", + "*", + ")", + ">", + "=", + "value" + ], + "question": "What are the names and ids of all countries with at least one car maker?", + "question_toks": [ + "What", + "are", + "the", + "names", + "and", + "ids", + "of", + "all", + "countries", + "with", + "at", + "least", + "one", + "car", + "maker", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ], + [ + "table_unit", + 2 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 3, + false + ], + null + ], + [ + 0, + 9, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 4, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 3, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 3, + false + ] + ], + "having": [ + [ + false, + 5, + [ + 0, + [ + 3, + 0, + false + ], + null + ], + 1.0, + null + ] + ], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "car_1", + "query": "SELECT count(*) FROM CARS_DATA WHERE horsepower > 150;", + "query_toks": [ + "SELECT", + "count", + "(", + "*", + ")", + "FROM", + "CARS_DATA", + "WHERE", + "horsepower", + ">", + "150", + ";" + ], + "query_toks_no_value": [ + "select", + "count", + "(", + "*", + ")", + "from", + "cars_data", + "where", + "horsepower", + ">", + "value" + ], + "question": "What is the number of the cars with horsepower more than 150?", + "question_toks": [ + "What", + "is", + "the", + "number", + "of", + "the", + "cars", + "with", + "horsepower", + "more", + "than", + "150", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 5 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 3, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 3, + [ + 0, + [ + 0, + 20, + false + ], + null + ], + 150.0, + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "car_1", + "query": "SELECT count(*) FROM CARS_DATA WHERE horsepower > 150;", + "query_toks": [ + "SELECT", + "count", + "(", + "*", + ")", + "FROM", + "CARS_DATA", + "WHERE", + "horsepower", + ">", + "150", + ";" + ], + "query_toks_no_value": [ + "select", + "count", + "(", + "*", + ")", + "from", + "cars_data", + "where", + "horsepower", + ">", + "value" + ], + "question": "What is the number of cars with a horsepower greater than 150?", + "question_toks": [ + "What", + "is", + "the", + "number", + "of", + "cars", + "with", + "a", + "horsepower", + "greater", + "than", + "150", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 5 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 3, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 3, + [ + 0, + [ + 0, + 20, + false + ], + null + ], + 150.0, + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "car_1", + "query": "SELECT avg(Weight) , YEAR FROM CARS_DATA GROUP BY YEAR;", + "query_toks": [ + "SELECT", + "avg", + "(", + "Weight", + ")", + ",", + "YEAR", + "FROM", + "CARS_DATA", + "GROUP", + "BY", + "YEAR", + ";" + ], + "query_toks_no_value": [ + "select", + "avg", + "(", + "weight", + ")", + ",", + "year", + "from", + "cars_data", + "group", + "by", + "year" + ], + "question": "What is the average weight of cars each year?", + "question_toks": [ + "What", + "is", + "the", + "average", + "weight", + "of", + "cars", + "each", + "year", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 5 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 5, + [ + 0, + [ + 0, + 21, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 23, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 23, + false + ] + ], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "car_1", + "query": "SELECT avg(Weight) , YEAR FROM CARS_DATA GROUP BY YEAR;", + "query_toks": [ + "SELECT", + "avg", + "(", + "Weight", + ")", + ",", + "YEAR", + "FROM", + "CARS_DATA", + "GROUP", + "BY", + "YEAR", + ";" + ], + "query_toks_no_value": [ + "select", + "avg", + "(", + "weight", + ")", + ",", + "year", + "from", + "cars_data", + "group", + "by", + "year" + ], + "question": "What is the average weight and year for each year?", + "question_toks": [ + "What", + "is", + "the", + "average", + "weight", + "and", + "year", + "for", + "each", + "year", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 5 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 5, + [ + 0, + [ + 0, + 21, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 23, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 23, + false + ] + ], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "car_1", + "query": "SELECT T1.CountryName FROM COUNTRIES AS T1 JOIN CONTINENTS AS T2 ON T1.Continent = T2.ContId JOIN CAR_MAKERS AS T3 ON T1.CountryId = T3.Country WHERE T2.Continent = 'europe' GROUP BY T1.CountryName HAVING count(*) >= 3;", + "query_toks": [ + "SELECT", + "T1.CountryName", + "FROM", + "COUNTRIES", + "AS", + "T1", + "JOIN", + "CONTINENTS", + "AS", + "T2", + "ON", + "T1.Continent", + "=", + "T2.ContId", + "JOIN", + "CAR_MAKERS", + "AS", + "T3", + "ON", + "T1.CountryId", + "=", + "T3.Country", + "WHERE", + "T2.Continent", + "=", + "'europe", + "'", + "GROUP", + "BY", + "T1.CountryName", + "HAVING", + "count", + "(", + "*", + ")", + ">", + "=", + "3", + ";" + ], + "query_toks_no_value": [ + "select", + "t1", + ".", + "countryname", + "from", + "countries", + "as", + "t1", + "join", + "continents", + "as", + "t2", + "on", + "t1", + ".", + "continent", + "=", + "t2", + ".", + "contid", + "join", + "car_makers", + "as", + "t3", + "on", + "t1", + ".", + "countryid", + "=", + "t3", + ".", + "country", + "where", + "t2", + ".", + "continent", + "=", + "value", + "group", + "by", + "t1", + ".", + "countryname", + "having", + "count", + "(", + "*", + ")", + ">", + "=", + "value" + ], + "question": "Which countries in europe have at least 3 car manufacturers?", + "question_toks": [ + "Which", + "countries", + "in", + "europe", + "have", + "at", + "least", + "3", + "car", + "manufacturers", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ], + [ + "table_unit", + 0 + ], + [ + "table_unit", + 2 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 5, + false + ], + null + ], + [ + 0, + 1, + false + ], + null + ], + "and", + [ + false, + 2, + [ + 0, + [ + 0, + 3, + false + ], + null + ], + [ + 0, + 9, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 4, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 2, + false + ], + null + ], + "\"europe\"", + null + ] + ], + "groupBy": [ + [ + 0, + 4, + false + ] + ], + "having": [ + [ + false, + 5, + [ + 0, + [ + 3, + 0, + false + ], + null + ], + 3.0, + null + ] + ], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "car_1", + "query": "SELECT T1.CountryName FROM COUNTRIES AS T1 JOIN CONTINENTS AS T2 ON T1.Continent = T2.ContId JOIN CAR_MAKERS AS T3 ON T1.CountryId = T3.Country WHERE T2.Continent = 'europe' GROUP BY T1.CountryName HAVING count(*) >= 3;", + "query_toks": [ + "SELECT", + "T1.CountryName", + "FROM", + "COUNTRIES", + "AS", + "T1", + "JOIN", + "CONTINENTS", + "AS", + "T2", + "ON", + "T1.Continent", + "=", + "T2.ContId", + "JOIN", + "CAR_MAKERS", + "AS", + "T3", + "ON", + "T1.CountryId", + "=", + "T3.Country", + "WHERE", + "T2.Continent", + "=", + "'europe", + "'", + "GROUP", + "BY", + "T1.CountryName", + "HAVING", + "count", + "(", + "*", + ")", + ">", + "=", + "3", + ";" + ], + "query_toks_no_value": [ + "select", + "t1", + ".", + "countryname", + "from", + "countries", + "as", + "t1", + "join", + "continents", + "as", + "t2", + "on", + "t1", + ".", + "continent", + "=", + "t2", + ".", + "contid", + "join", + "car_makers", + "as", + "t3", + "on", + "t1", + ".", + "countryid", + "=", + "t3", + ".", + "country", + "where", + "t2", + ".", + "continent", + "=", + "value", + "group", + "by", + "t1", + ".", + "countryname", + "having", + "count", + "(", + "*", + ")", + ">", + "=", + "value" + ], + "question": "What are the names of all European countries with at least 3 manufacturers?", + "question_toks": [ + "What", + "are", + "the", + "names", + "of", + "all", + "European", + "countries", + "with", + "at", + "least", + "3", + "manufacturers", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ], + [ + "table_unit", + 0 + ], + [ + "table_unit", + 2 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 5, + false + ], + null + ], + [ + 0, + 1, + false + ], + null + ], + "and", + [ + false, + 2, + [ + 0, + [ + 0, + 3, + false + ], + null + ], + [ + 0, + 9, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 4, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 2, + false + ], + null + ], + "\"europe\"", + null + ] + ], + "groupBy": [ + [ + 0, + 4, + false + ] + ], + "having": [ + [ + false, + 5, + [ + 0, + [ + 3, + 0, + false + ], + null + ], + 3.0, + null + ] + ], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "car_1", + "query": "SELECT T2.horsepower , T1.Make FROM CAR_NAMES AS T1 JOIN CARS_DATA AS T2 ON T1.MakeId = T2.Id WHERE T2.cylinders = 3 ORDER BY T2.horsepower DESC LIMIT 1;", + "query_toks": [ + "SELECT", + "T2.horsepower", + ",", + "T1.Make", + "FROM", + "CAR_NAMES", + "AS", + "T1", + "JOIN", + "CARS_DATA", + "AS", + "T2", + "ON", + "T1.MakeId", + "=", + "T2.Id", + "WHERE", + "T2.cylinders", + "=", + "3", + "ORDER", + "BY", + "T2.horsepower", + "DESC", + "LIMIT", + "1", + ";" + ], + "query_toks_no_value": [ + "select", + "t2", + ".", + "horsepower", + ",", + "t1", + ".", + "make", + "from", + "car_names", + "as", + "t1", + "join", + "cars_data", + "as", + "t2", + "on", + "t1", + ".", + "makeid", + "=", + "t2", + ".", + "id", + "where", + "t2", + ".", + "cylinders", + "=", + "value", + "order", + "by", + "t2", + ".", + "horsepower", + "desc", + "limit", + "value" + ], + "question": "What is the maximum horsepower and the make of the car models with 3 cylinders?", + "question_toks": [ + "What", + "is", + "the", + "maximum", + "horsepower", + "and", + "the", + "make", + "of", + "the", + "car", + "models", + "with", + "3", + "cylinders", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 4 + ], + [ + "table_unit", + 5 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 13, + false + ], + null + ], + [ + 0, + 16, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 20, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 15, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 18, + false + ], + null + ], + 3.0, + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [ + "desc", + [ + [ + 0, + [ + 0, + 20, + false + ], + null + ] + ] + ], + "limit": 1, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "car_1", + "query": "SELECT T2.horsepower , T1.Make FROM CAR_NAMES AS T1 JOIN CARS_DATA AS T2 ON T1.MakeId = T2.Id WHERE T2.cylinders = 3 ORDER BY T2.horsepower DESC LIMIT 1;", + "query_toks": [ + "SELECT", + "T2.horsepower", + ",", + "T1.Make", + "FROM", + "CAR_NAMES", + "AS", + "T1", + "JOIN", + "CARS_DATA", + "AS", + "T2", + "ON", + "T1.MakeId", + "=", + "T2.Id", + "WHERE", + "T2.cylinders", + "=", + "3", + "ORDER", + "BY", + "T2.horsepower", + "DESC", + "LIMIT", + "1", + ";" + ], + "query_toks_no_value": [ + "select", + "t2", + ".", + "horsepower", + ",", + "t1", + ".", + "make", + "from", + "car_names", + "as", + "t1", + "join", + "cars_data", + "as", + "t2", + "on", + "t1", + ".", + "makeid", + "=", + "t2", + ".", + "id", + "where", + "t2", + ".", + "cylinders", + "=", + "value", + "order", + "by", + "t2", + ".", + "horsepower", + "desc", + "limit", + "value" + ], + "question": "What is the largest amount of horsepower for the models with 3 cylinders and what make is it?", + "question_toks": [ + "What", + "is", + "the", + "largest", + "amount", + "of", + "horsepower", + "for", + "the", + "models", + "with", + "3", + "cylinders", + "and", + "what", + "make", + "is", + "it", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 4 + ], + [ + "table_unit", + 5 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 13, + false + ], + null + ], + [ + 0, + 16, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 20, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 15, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 18, + false + ], + null + ], + 3.0, + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [ + "desc", + [ + [ + 0, + [ + 0, + 20, + false + ], + null + ] + ] + ], + "limit": 1, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "car_1", + "query": "SELECT T1.Model FROM CAR_NAMES AS T1 JOIN CARS_DATA AS T2 ON T1.MakeId = T2.Id ORDER BY T2.mpg DESC LIMIT 1;", + "query_toks": [ + "SELECT", + "T1.Model", + "FROM", + "CAR_NAMES", + "AS", + "T1", + "JOIN", + "CARS_DATA", + "AS", + "T2", + "ON", + "T1.MakeId", + "=", + "T2.Id", + "ORDER", + "BY", + "T2.mpg", + "DESC", + "LIMIT", + "1", + ";" + ], + "query_toks_no_value": [ + "select", + "t1", + ".", + "model", + "from", + "car_names", + "as", + "t1", + "join", + "cars_data", + "as", + "t2", + "on", + "t1", + ".", + "makeid", + "=", + "t2", + ".", + "id", + "order", + "by", + "t2", + ".", + "mpg", + "desc", + "limit", + "value" + ], + "question": "Which model saves the most gasoline? That is to say, have the maximum miles per gallon.", + "question_toks": [ + "Which", + "model", + "saves", + "the", + "most", + "gasoline", + "?", + "That", + "is", + "to", + "say", + ",", + "have", + "the", + "maximum", + "miles", + "per", + "gallon", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 4 + ], + [ + "table_unit", + 5 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 13, + false + ], + null + ], + [ + 0, + 16, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 14, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [ + "desc", + [ + [ + 0, + [ + 0, + 17, + false + ], + null + ] + ] + ], + "limit": 1, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "car_1", + "query": "select t1.model from car_names as t1 join cars_data as t2 on t1.makeid = t2.id order by t2.mpg desc limit 1;", + "query_toks": [ + "select", + "t1.model", + "from", + "car_names", + "as", + "t1", + "join", + "cars_data", + "as", + "t2", + "on", + "t1.makeid", + "=", + "t2.id", + "order", + "by", + "t2.mpg", + "desc", + "limit", + "1", + ";" + ], + "query_toks_no_value": [ + "select", + "t1", + ".", + "model", + "from", + "car_names", + "as", + "t1", + "join", + "cars_data", + "as", + "t2", + "on", + "t1", + ".", + "makeid", + "=", + "t2", + ".", + "id", + "order", + "by", + "t2", + ".", + "mpg", + "desc", + "limit", + "value" + ], + "question": "What is the car model with the highest mpg ?", + "question_toks": [ + "What", + "is", + "the", + "car", + "model", + "with", + "the", + "highest", + "mpg", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 4 + ], + [ + "table_unit", + 5 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 13, + false + ], + null + ], + [ + 0, + 16, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 14, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [ + "desc", + [ + [ + 0, + [ + 0, + 17, + false + ], + null + ] + ] + ], + "limit": 1, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "car_1", + "query": "SELECT avg(horsepower) FROM CARS_DATA WHERE YEAR < 1980;", + "query_toks": [ + "SELECT", + "avg", + "(", + "horsepower", + ")", + "FROM", + "CARS_DATA", + "WHERE", + "YEAR", + "<", + "1980", + ";" + ], + "query_toks_no_value": [ + "select", + "avg", + "(", + "horsepower", + ")", + "from", + "cars_data", + "where", + "year", + "<", + "value" + ], + "question": "What is the average horsepower of the cars before 1980?", + "question_toks": [ + "What", + "is", + "the", + "average", + "horsepower", + "of", + "the", + "cars", + "before", + "1980", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 5 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 5, + [ + 0, + [ + 0, + 20, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 4, + [ + 0, + [ + 0, + 23, + false + ], + null + ], + 1980.0, + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "car_1", + "query": "select avg(horsepower) from cars_data where year < 1980;", + "query_toks": [ + "select", + "avg", + "(", + "horsepower", + ")", + "from", + "cars_data", + "where", + "year", + "<", + "1980", + ";" + ], + "query_toks_no_value": [ + "select", + "avg", + "(", + "horsepower", + ")", + "from", + "cars_data", + "where", + "year", + "<", + "value" + ], + "question": "What is the average horsepower for all cars produced before 1980 ?", + "question_toks": [ + "What", + "is", + "the", + "average", + "horsepower", + "for", + "all", + "cars", + "produced", + "before", + "1980", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 5 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 5, + [ + 0, + [ + 0, + 20, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 4, + [ + 0, + [ + 0, + 23, + false + ], + null + ], + 1980.0, + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "car_1", + "query": "SELECT avg(T2.edispl) FROM CAR_NAMES AS T1 JOIN CARS_DATA AS T2 ON T1.MakeId = T2.Id WHERE T1.Model = 'volvo';", + "query_toks": [ + "SELECT", + "avg", + "(", + "T2.edispl", + ")", + "FROM", + "CAR_NAMES", + "AS", + "T1", + "JOIN", + "CARS_DATA", + "AS", + "T2", + "ON", + "T1.MakeId", + "=", + "T2.Id", + "WHERE", + "T1.Model", + "=", + "'volvo", + "'", + ";" + ], + "query_toks_no_value": [ + "select", + "avg", + "(", + "t2", + ".", + "edispl", + ")", + "from", + "car_names", + "as", + "t1", + "join", + "cars_data", + "as", + "t2", + "on", + "t1", + ".", + "makeid", + "=", + "t2", + ".", + "id", + "where", + "t1", + ".", + "model", + "=", + "value" + ], + "question": "What is the average edispl of the cars of model volvo?", + "question_toks": [ + "What", + "is", + "the", + "average", + "edispl", + "of", + "the", + "cars", + "of", + "model", + "volvo", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 4 + ], + [ + "table_unit", + 5 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 13, + false + ], + null + ], + [ + 0, + 16, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 5, + [ + 0, + [ + 0, + 19, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 14, + false + ], + null + ], + "\"volvo\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "car_1", + "query": "SELECT avg(T2.edispl) FROM CAR_NAMES AS T1 JOIN CARS_DATA AS T2 ON T1.MakeId = T2.Id WHERE T1.Model = 'volvo';", + "query_toks": [ + "SELECT", + "avg", + "(", + "T2.edispl", + ")", + "FROM", + "CAR_NAMES", + "AS", + "T1", + "JOIN", + "CARS_DATA", + "AS", + "T2", + "ON", + "T1.MakeId", + "=", + "T2.Id", + "WHERE", + "T1.Model", + "=", + "'volvo", + "'", + ";" + ], + "query_toks_no_value": [ + "select", + "avg", + "(", + "t2", + ".", + "edispl", + ")", + "from", + "car_names", + "as", + "t1", + "join", + "cars_data", + "as", + "t2", + "on", + "t1", + ".", + "makeid", + "=", + "t2", + ".", + "id", + "where", + "t1", + ".", + "model", + "=", + "value" + ], + "question": "What is the average edispl for all volvos?", + "question_toks": [ + "What", + "is", + "the", + "average", + "edispl", + "for", + "all", + "volvos", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 4 + ], + [ + "table_unit", + 5 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 13, + false + ], + null + ], + [ + 0, + 16, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 5, + [ + 0, + [ + 0, + 19, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 14, + false + ], + null + ], + "\"volvo\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "car_1", + "query": "SELECT max(Accelerate) , Cylinders FROM CARS_DATA GROUP BY Cylinders;", + "query_toks": [ + "SELECT", + "max", + "(", + "Accelerate", + ")", + ",", + "Cylinders", + "FROM", + "CARS_DATA", + "GROUP", + "BY", + "Cylinders", + ";" + ], + "query_toks_no_value": [ + "select", + "max", + "(", + "accelerate", + ")", + ",", + "cylinders", + "from", + "cars_data", + "group", + "by", + "cylinders" + ], + "question": "What is the maximum accelerate for different number of cylinders?", + "question_toks": [ + "What", + "is", + "the", + "maximum", + "accelerate", + "for", + "different", + "number", + "of", + "cylinders", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 5 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 1, + [ + 0, + [ + 0, + 22, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 18, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 18, + false + ] + ], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "car_1", + "query": "SELECT max(Accelerate) , Cylinders FROM CARS_DATA GROUP BY Cylinders;", + "query_toks": [ + "SELECT", + "max", + "(", + "Accelerate", + ")", + ",", + "Cylinders", + "FROM", + "CARS_DATA", + "GROUP", + "BY", + "Cylinders", + ";" + ], + "query_toks_no_value": [ + "select", + "max", + "(", + "accelerate", + ")", + ",", + "cylinders", + "from", + "cars_data", + "group", + "by", + "cylinders" + ], + "question": "What is the maximum accelerate for all the different cylinders?", + "question_toks": [ + "What", + "is", + "the", + "maximum", + "accelerate", + "for", + "all", + "the", + "different", + "cylinders", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 5 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 1, + [ + 0, + [ + 0, + 22, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 18, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 18, + false + ] + ], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "car_1", + "query": "SELECT Model FROM CAR_NAMES GROUP BY Model ORDER BY count(*) DESC LIMIT 1;", + "query_toks": [ + "SELECT", + "Model", + "FROM", + "CAR_NAMES", + "GROUP", + "BY", + "Model", + "ORDER", + "BY", + "count", + "(", + "*", + ")", + "DESC", + "LIMIT", + "1", + ";" + ], + "query_toks_no_value": [ + "select", + "model", + "from", + "car_names", + "group", + "by", + "model", + "order", + "by", + "count", + "(", + "*", + ")", + "desc", + "limit", + "value" + ], + "question": "Which model has the most version(make) of cars?", + "question_toks": [ + "Which", + "model", + "has", + "the", + "most", + "version", + "(", + "make", + ")", + "of", + "cars", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 4 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 14, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 14, + false + ] + ], + "having": [], + "orderBy": [ + "desc", + [ + [ + 0, + [ + 3, + 0, + false + ], + null + ] + ] + ], + "limit": 1, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "car_1", + "query": "SELECT Model FROM CAR_NAMES GROUP BY Model ORDER BY count(*) DESC LIMIT 1;", + "query_toks": [ + "SELECT", + "Model", + "FROM", + "CAR_NAMES", + "GROUP", + "BY", + "Model", + "ORDER", + "BY", + "count", + "(", + "*", + ")", + "DESC", + "LIMIT", + "1", + ";" + ], + "query_toks_no_value": [ + "select", + "model", + "from", + "car_names", + "group", + "by", + "model", + "order", + "by", + "count", + "(", + "*", + ")", + "desc", + "limit", + "value" + ], + "question": "What model has the most different versions?", + "question_toks": [ + "What", + "model", + "has", + "the", + "most", + "different", + "versions", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 4 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 14, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 14, + false + ] + ], + "having": [], + "orderBy": [ + "desc", + [ + [ + 0, + [ + 3, + 0, + false + ], + null + ] + ] + ], + "limit": 1, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "car_1", + "query": "SELECT count(*) FROM CARS_DATA WHERE Cylinders > 4;", + "query_toks": [ + "SELECT", + "count", + "(", + "*", + ")", + "FROM", + "CARS_DATA", + "WHERE", + "Cylinders", + ">", + "4", + ";" + ], + "query_toks_no_value": [ + "select", + "count", + "(", + "*", + ")", + "from", + "cars_data", + "where", + "cylinders", + ">", + "value" + ], + "question": "How many cars have more than 4 cylinders?", + "question_toks": [ + "How", + "many", + "cars", + "have", + "more", + "than", + "4", + "cylinders", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 5 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 3, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 3, + [ + 0, + [ + 0, + 18, + false + ], + null + ], + 4.0, + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "car_1", + "query": "SELECT count(*) FROM CARS_DATA WHERE Cylinders > 4;", + "query_toks": [ + "SELECT", + "count", + "(", + "*", + ")", + "FROM", + "CARS_DATA", + "WHERE", + "Cylinders", + ">", + "4", + ";" + ], + "query_toks_no_value": [ + "select", + "count", + "(", + "*", + ")", + "from", + "cars_data", + "where", + "cylinders", + ">", + "value" + ], + "question": "What is the number of cars with more than 4 cylinders?", + "question_toks": [ + "What", + "is", + "the", + "number", + "of", + "cars", + "with", + "more", + "than", + "4", + "cylinders", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 5 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 3, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 3, + [ + 0, + [ + 0, + 18, + false + ], + null + ], + 4.0, + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "car_1", + "query": "SELECT count(*) FROM CARS_DATA WHERE YEAR = 1980;", + "query_toks": [ + "SELECT", + "count", + "(", + "*", + ")", + "FROM", + "CARS_DATA", + "WHERE", + "YEAR", + "=", + "1980", + ";" + ], + "query_toks_no_value": [ + "select", + "count", + "(", + "*", + ")", + "from", + "cars_data", + "where", + "year", + "=", + "value" + ], + "question": "how many cars were produced in 1980?", + "question_toks": [ + "how", + "many", + "cars", + "were", + "produced", + "in", + "1980", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 5 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 3, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 23, + false + ], + null + ], + 1980.0, + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "car_1", + "query": "SELECT count(*) FROM CARS_DATA WHERE YEAR = 1980;", + "query_toks": [ + "SELECT", + "count", + "(", + "*", + ")", + "FROM", + "CARS_DATA", + "WHERE", + "YEAR", + "=", + "1980", + ";" + ], + "query_toks_no_value": [ + "select", + "count", + "(", + "*", + ")", + "from", + "cars_data", + "where", + "year", + "=", + "value" + ], + "question": "In 1980, how many cars were made?", + "question_toks": [ + "In", + "1980", + ",", + "how", + "many", + "cars", + "were", + "made", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 5 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 3, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 23, + false + ], + null + ], + 1980.0, + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "car_1", + "query": "SELECT count(*) FROM CAR_MAKERS AS T1 JOIN MODEL_LIST AS T2 ON T1.Id = T2.Maker WHERE T1.FullName = 'American Motor Company';", + "query_toks": [ + "SELECT", + "count", + "(", + "*", + ")", + "FROM", + "CAR_MAKERS", + "AS", + "T1", + "JOIN", + "MODEL_LIST", + "AS", + "T2", + "ON", + "T1.Id", + "=", + "T2.Maker", + "WHERE", + "T1.FullName", + "=", + "'American", + "Motor", + "Company", + "'", + ";" + ], + "query_toks_no_value": [ + "select", + "count", + "(", + "*", + ")", + "from", + "car_makers", + "as", + "t1", + "join", + "model_list", + "as", + "t2", + "on", + "t1", + ".", + "id", + "=", + "t2", + ".", + "maker", + "where", + "t1", + ".", + "fullname", + "=", + "value" + ], + "question": "How many car models were produced by the maker with full name American Motor Company?", + "question_toks": [ + "How", + "many", + "car", + "models", + "were", + "produced", + "by", + "the", + "maker", + "with", + "full", + "name", + "American", + "Motor", + "Company", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ], + [ + "table_unit", + 3 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 6, + false + ], + null + ], + [ + 0, + 11, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 3, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 8, + false + ], + null + ], + "\"American Motor Company\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "car_1", + "query": "SELECT count(*) FROM CAR_MAKERS AS T1 JOIN MODEL_LIST AS T2 ON T1.Id = T2.Maker WHERE T1.FullName = 'American Motor Company';", + "query_toks": [ + "SELECT", + "count", + "(", + "*", + ")", + "FROM", + "CAR_MAKERS", + "AS", + "T1", + "JOIN", + "MODEL_LIST", + "AS", + "T2", + "ON", + "T1.Id", + "=", + "T2.Maker", + "WHERE", + "T1.FullName", + "=", + "'American", + "Motor", + "Company", + "'", + ";" + ], + "query_toks_no_value": [ + "select", + "count", + "(", + "*", + ")", + "from", + "car_makers", + "as", + "t1", + "join", + "model_list", + "as", + "t2", + "on", + "t1", + ".", + "id", + "=", + "t2", + ".", + "maker", + "where", + "t1", + ".", + "fullname", + "=", + "value" + ], + "question": "What is the number of car models created by the car maker American Motor Company?", + "question_toks": [ + "What", + "is", + "the", + "number", + "of", + "car", + "models", + "created", + "by", + "the", + "car", + "maker", + "American", + "Motor", + "Company", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ], + [ + "table_unit", + 3 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 6, + false + ], + null + ], + [ + 0, + 11, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 3, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 8, + false + ], + null + ], + "\"American Motor Company\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "car_1", + "query": "SELECT T1.FullName , T1.Id FROM CAR_MAKERS AS T1 JOIN MODEL_LIST AS T2 ON T1.Id = T2.Maker GROUP BY T1.Id HAVING count(*) > 3;", + "query_toks": [ + "SELECT", + "T1.FullName", + ",", + "T1.Id", + "FROM", + "CAR_MAKERS", + "AS", + "T1", + "JOIN", + "MODEL_LIST", + "AS", + "T2", + "ON", + "T1.Id", + "=", + "T2.Maker", + "GROUP", + "BY", + "T1.Id", + "HAVING", + "count", + "(", + "*", + ")", + ">", + "3", + ";" + ], + "query_toks_no_value": [ + "select", + "t1", + ".", + "fullname", + ",", + "t1", + ".", + "id", + "from", + "car_makers", + "as", + "t1", + "join", + "model_list", + "as", + "t2", + "on", + "t1", + ".", + "id", + "=", + "t2", + ".", + "maker", + "group", + "by", + "t1", + ".", + "id", + "having", + "count", + "(", + "*", + ")", + ">", + "value" + ], + "question": "Which makers designed more than 3 car models? List full name and the id.", + "question_toks": [ + "Which", + "makers", + "designed", + "more", + "than", + "3", + "car", + "models", + "?", + "List", + "full", + "name", + "and", + "the", + "id", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ], + [ + "table_unit", + 3 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 6, + false + ], + null + ], + [ + 0, + 11, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 8, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 6, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 6, + false + ] + ], + "having": [ + [ + false, + 3, + [ + 0, + [ + 3, + 0, + false + ], + null + ], + 3.0, + null + ] + ], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "car_1", + "query": "SELECT T1.FullName , T1.Id FROM CAR_MAKERS AS T1 JOIN MODEL_LIST AS T2 ON T1.Id = T2.Maker GROUP BY T1.Id HAVING count(*) > 3;", + "query_toks": [ + "SELECT", + "T1.FullName", + ",", + "T1.Id", + "FROM", + "CAR_MAKERS", + "AS", + "T1", + "JOIN", + "MODEL_LIST", + "AS", + "T2", + "ON", + "T1.Id", + "=", + "T2.Maker", + "GROUP", + "BY", + "T1.Id", + "HAVING", + "count", + "(", + "*", + ")", + ">", + "3", + ";" + ], + "query_toks_no_value": [ + "select", + "t1", + ".", + "fullname", + ",", + "t1", + ".", + "id", + "from", + "car_makers", + "as", + "t1", + "join", + "model_list", + "as", + "t2", + "on", + "t1", + ".", + "id", + "=", + "t2", + ".", + "maker", + "group", + "by", + "t1", + ".", + "id", + "having", + "count", + "(", + "*", + ")", + ">", + "value" + ], + "question": "What are the names and ids of all makers with more than 3 models?", + "question_toks": [ + "What", + "are", + "the", + "names", + "and", + "ids", + "of", + "all", + "makers", + "with", + "more", + "than", + "3", + "models", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ], + [ + "table_unit", + 3 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 6, + false + ], + null + ], + [ + 0, + 11, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 8, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 6, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 6, + false + ] + ], + "having": [ + [ + false, + 3, + [ + 0, + [ + 3, + 0, + false + ], + null + ], + 3.0, + null + ] + ], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "car_1", + "query": "SELECT DISTINCT T2.Model FROM CAR_NAMES AS T1 JOIN MODEL_LIST AS T2 ON T1.Model = T2.Model JOIN CAR_MAKERS AS T3 ON T2.Maker = T3.Id JOIN CARS_DATA AS T4 ON T1.MakeId = T4.Id WHERE T3.FullName = 'General Motors' OR T4.weight > 3500;", + "query_toks": [ + "SELECT", + "DISTINCT", + "T2.Model", + "FROM", + "CAR_NAMES", + "AS", + "T1", + "JOIN", + "MODEL_LIST", + "AS", + "T2", + "ON", + "T1.Model", + "=", + "T2.Model", + "JOIN", + "CAR_MAKERS", + "AS", + "T3", + "ON", + "T2.Maker", + "=", + "T3.Id", + "JOIN", + "CARS_DATA", + "AS", + "T4", + "ON", + "T1.MakeId", + "=", + "T4.Id", + "WHERE", + "T3.FullName", + "=", + "'General", + "Motors", + "'", + "OR", + "T4.weight", + ">", + "3500", + ";" + ], + "query_toks_no_value": [ + "select", + "distinct", + "t2", + ".", + "model", + "from", + "car_names", + "as", + "t1", + "join", + "model_list", + "as", + "t2", + "on", + "t1", + ".", + "model", + "=", + "t2", + ".", + "model", + "join", + "car_makers", + "as", + "t3", + "on", + "t2", + ".", + "maker", + "=", + "t3", + ".", + "id", + "join", + "cars_data", + "as", + "t4", + "on", + "t1", + ".", + "makeid", + "=", + "t4", + ".", + "id", + "where", + "t3", + ".", + "fullname", + "=", + "value", + "or", + "t4", + ".", + "weight", + ">", + "value" + ], + "question": "Which distinctive models are produced by maker with the full name General Motors or weighing more than 3500?", + "question_toks": [ + "Which", + "distinctive", + "models", + "are", + "produced", + "by", + "maker", + "with", + "the", + "full", + "name", + "General", + "Motors", + "or", + "weighing", + "more", + "than", + "3500", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 4 + ], + [ + "table_unit", + 3 + ], + [ + "table_unit", + 2 + ], + [ + "table_unit", + 5 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 14, + false + ], + null + ], + [ + 0, + 12, + false + ], + null + ], + "and", + [ + false, + 2, + [ + 0, + [ + 0, + 11, + false + ], + null + ], + [ + 0, + 6, + false + ], + null + ], + "and", + [ + false, + 2, + [ + 0, + [ + 0, + 13, + false + ], + null + ], + [ + 0, + 16, + false + ], + null + ] + ] + }, + "select": [ + true, + [ + [ + 0, + [ + 0, + [ + 0, + 12, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 8, + false + ], + null + ], + "\"General Motors\"", + null + ], + "or", + [ + false, + 3, + [ + 0, + [ + 0, + 21, + false + ], + null + ], + 3500.0, + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "car_1", + "query": "SELECT DISTINCT T2.Model FROM CAR_NAMES AS T1 JOIN MODEL_LIST AS T2 ON T1.Model = T2.Model JOIN CAR_MAKERS AS T3 ON T2.Maker = T3.Id JOIN CARS_DATA AS T4 ON T1.MakeId = T4.Id WHERE T3.FullName = 'General Motors' OR T4.weight > 3500;", + "query_toks": [ + "SELECT", + "DISTINCT", + "T2.Model", + "FROM", + "CAR_NAMES", + "AS", + "T1", + "JOIN", + "MODEL_LIST", + "AS", + "T2", + "ON", + "T1.Model", + "=", + "T2.Model", + "JOIN", + "CAR_MAKERS", + "AS", + "T3", + "ON", + "T2.Maker", + "=", + "T3.Id", + "JOIN", + "CARS_DATA", + "AS", + "T4", + "ON", + "T1.MakeId", + "=", + "T4.Id", + "WHERE", + "T3.FullName", + "=", + "'General", + "Motors", + "'", + "OR", + "T4.weight", + ">", + "3500", + ";" + ], + "query_toks_no_value": [ + "select", + "distinct", + "t2", + ".", + "model", + "from", + "car_names", + "as", + "t1", + "join", + "model_list", + "as", + "t2", + "on", + "t1", + ".", + "model", + "=", + "t2", + ".", + "model", + "join", + "car_makers", + "as", + "t3", + "on", + "t2", + ".", + "maker", + "=", + "t3", + ".", + "id", + "join", + "cars_data", + "as", + "t4", + "on", + "t1", + ".", + "makeid", + "=", + "t4", + ".", + "id", + "where", + "t3", + ".", + "fullname", + "=", + "value", + "or", + "t4", + ".", + "weight", + ">", + "value" + ], + "question": "What are the different models created by either the car maker General Motors or weighed more than 3500?", + "question_toks": [ + "What", + "are", + "the", + "different", + "models", + "created", + "by", + "either", + "the", + "car", + "maker", + "General", + "Motors", + "or", + "weighed", + "more", + "than", + "3500", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 4 + ], + [ + "table_unit", + 3 + ], + [ + "table_unit", + 2 + ], + [ + "table_unit", + 5 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 14, + false + ], + null + ], + [ + 0, + 12, + false + ], + null + ], + "and", + [ + false, + 2, + [ + 0, + [ + 0, + 11, + false + ], + null + ], + [ + 0, + 6, + false + ], + null + ], + "and", + [ + false, + 2, + [ + 0, + [ + 0, + 13, + false + ], + null + ], + [ + 0, + 16, + false + ], + null + ] + ] + }, + "select": [ + true, + [ + [ + 0, + [ + 0, + [ + 0, + 12, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 8, + false + ], + null + ], + "\"General Motors\"", + null + ], + "or", + [ + false, + 3, + [ + 0, + [ + 0, + 21, + false + ], + null + ], + 3500.0, + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "car_1", + "query": "select distinct year from cars_data where weight between 3000 and 4000;", + "query_toks": [ + "select", + "distinct", + "year", + "from", + "cars_data", + "where", + "weight", + "between", + "3000", + "and", + "4000", + ";" + ], + "query_toks_no_value": [ + "select", + "distinct", + "year", + "from", + "cars_data", + "where", + "weight", + "between", + "value", + "and", + "value" + ], + "question": "In which years cars were produced weighing no less than 3000 and no more than 4000 ?", + "question_toks": [ + "In", + "which", + "years", + "cars", + "were", + "produced", + "weighing", + "no", + "less", + "than", + "3000", + "and", + "no", + "more", + "than", + "4000", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 5 + ] + ], + "conds": [] + }, + "select": [ + true, + [ + [ + 0, + [ + 0, + [ + 0, + 23, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 1, + [ + 0, + [ + 0, + 21, + false + ], + null + ], + 3000.0, + 4000.0 + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "car_1", + "query": "select distinct year from cars_data where weight between 3000 and 4000;", + "query_toks": [ + "select", + "distinct", + "year", + "from", + "cars_data", + "where", + "weight", + "between", + "3000", + "and", + "4000", + ";" + ], + "query_toks_no_value": [ + "select", + "distinct", + "year", + "from", + "cars_data", + "where", + "weight", + "between", + "value", + "and", + "value" + ], + "question": "What are the different years in which there were cars produced that weighed less than 4000 and also cars that weighted more than 3000 ?", + "question_toks": [ + "What", + "are", + "the", + "different", + "years", + "in", + "which", + "there", + "were", + "cars", + "produced", + "that", + "weighed", + "less", + "than", + "4000", + "and", + "also", + "cars", + "that", + "weighted", + "more", + "than", + "3000", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 5 + ] + ], + "conds": [] + }, + "select": [ + true, + [ + [ + 0, + [ + 0, + [ + 0, + 23, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 1, + [ + 0, + [ + 0, + 21, + false + ], + null + ], + 3000.0, + 4000.0 + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "car_1", + "query": "SELECT T1.horsepower FROM CARS_DATA AS T1 ORDER BY T1.accelerate DESC LIMIT 1;", + "query_toks": [ + "SELECT", + "T1.horsepower", + "FROM", + "CARS_DATA", + "AS", + "T1", + "ORDER", + "BY", + "T1.accelerate", + "DESC", + "LIMIT", + "1", + ";" + ], + "query_toks_no_value": [ + "select", + "t1", + ".", + "horsepower", + "from", + "cars_data", + "as", + "t1", + "order", + "by", + "t1", + ".", + "accelerate", + "desc", + "limit", + "value" + ], + "question": "What is the horsepower of the car with the largest accelerate?", + "question_toks": [ + "What", + "is", + "the", + "horsepower", + "of", + "the", + "car", + "with", + "the", + "largest", + "accelerate", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 5 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 20, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [ + "desc", + [ + [ + 0, + [ + 0, + 22, + false + ], + null + ] + ] + ], + "limit": 1, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "car_1", + "query": "SELECT T1.horsepower FROM CARS_DATA AS T1 ORDER BY T1.accelerate DESC LIMIT 1;", + "query_toks": [ + "SELECT", + "T1.horsepower", + "FROM", + "CARS_DATA", + "AS", + "T1", + "ORDER", + "BY", + "T1.accelerate", + "DESC", + "LIMIT", + "1", + ";" + ], + "query_toks_no_value": [ + "select", + "t1", + ".", + "horsepower", + "from", + "cars_data", + "as", + "t1", + "order", + "by", + "t1", + ".", + "accelerate", + "desc", + "limit", + "value" + ], + "question": "What is the horsepower of the car with the greatest accelerate?", + "question_toks": [ + "What", + "is", + "the", + "horsepower", + "of", + "the", + "car", + "with", + "the", + "greatest", + "accelerate", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 5 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 20, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [ + "desc", + [ + [ + 0, + [ + 0, + 22, + false + ], + null + ] + ] + ], + "limit": 1, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "car_1", + "query": "SELECT T1.cylinders FROM CARS_DATA AS T1 JOIN CAR_NAMES AS T2 ON T1.Id = T2.MakeId WHERE T2.Model = 'volvo' ORDER BY T1.accelerate ASC LIMIT 1;", + "query_toks": [ + "SELECT", + "T1.cylinders", + "FROM", + "CARS_DATA", + "AS", + "T1", + "JOIN", + "CAR_NAMES", + "AS", + "T2", + "ON", + "T1.Id", + "=", + "T2.MakeId", + "WHERE", + "T2.Model", + "=", + "'volvo", + "'", + "ORDER", + "BY", + "T1.accelerate", + "ASC", + "LIMIT", + "1", + ";" + ], + "query_toks_no_value": [ + "select", + "t1", + ".", + "cylinders", + "from", + "cars_data", + "as", + "t1", + "join", + "car_names", + "as", + "t2", + "on", + "t1", + ".", + "id", + "=", + "t2", + ".", + "makeid", + "where", + "t2", + ".", + "model", + "=", + "value", + "order", + "by", + "t1", + ".", + "accelerate", + "asc", + "limit", + "value" + ], + "question": "For model volvo, how many cylinders does the car with the least accelerate have?", + "question_toks": [ + "For", + "model", + "volvo", + ",", + "how", + "many", + "cylinders", + "does", + "the", + "car", + "with", + "the", + "least", + "accelerate", + "have", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 5 + ], + [ + "table_unit", + 4 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 16, + false + ], + null + ], + [ + 0, + 13, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 18, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 14, + false + ], + null + ], + "\"volvo\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [ + "asc", + [ + [ + 0, + [ + 0, + 22, + false + ], + null + ] + ] + ], + "limit": 1, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "car_1", + "query": "SELECT T1.cylinders FROM CARS_DATA AS T1 JOIN CAR_NAMES AS T2 ON T1.Id = T2.MakeId WHERE T2.Model = 'volvo' ORDER BY T1.accelerate ASC LIMIT 1;", + "query_toks": [ + "SELECT", + "T1.cylinders", + "FROM", + "CARS_DATA", + "AS", + "T1", + "JOIN", + "CAR_NAMES", + "AS", + "T2", + "ON", + "T1.Id", + "=", + "T2.MakeId", + "WHERE", + "T2.Model", + "=", + "'volvo", + "'", + "ORDER", + "BY", + "T1.accelerate", + "ASC", + "LIMIT", + "1", + ";" + ], + "query_toks_no_value": [ + "select", + "t1", + ".", + "cylinders", + "from", + "cars_data", + "as", + "t1", + "join", + "car_names", + "as", + "t2", + "on", + "t1", + ".", + "id", + "=", + "t2", + ".", + "makeid", + "where", + "t2", + ".", + "model", + "=", + "value", + "order", + "by", + "t1", + ".", + "accelerate", + "asc", + "limit", + "value" + ], + "question": "For a volvo model, how many cylinders does the version with least accelerate have?", + "question_toks": [ + "For", + "a", + "volvo", + "model", + ",", + "how", + "many", + "cylinders", + "does", + "the", + "version", + "with", + "least", + "accelerate", + "have", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 5 + ], + [ + "table_unit", + 4 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 16, + false + ], + null + ], + [ + 0, + 13, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 18, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 14, + false + ], + null + ], + "\"volvo\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [ + "asc", + [ + [ + 0, + [ + 0, + 22, + false + ], + null + ] + ] + ], + "limit": 1, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "car_1", + "query": "SELECT COUNT(*) FROM CARS_DATA WHERE Accelerate > ( SELECT Accelerate FROM CARS_DATA ORDER BY Horsepower DESC LIMIT 1 );", + "query_toks": [ + "SELECT", + "COUNT", + "(", + "*", + ")", + "FROM", + "CARS_DATA", + "WHERE", + "Accelerate", + ">", + "(", + "SELECT", + "Accelerate", + "FROM", + "CARS_DATA", + "ORDER", + "BY", + "Horsepower", + "DESC", + "LIMIT", + "1", + ")", + ";" + ], + "query_toks_no_value": [ + "select", + "count", + "(", + "*", + ")", + "from", + "cars_data", + "where", + "accelerate", + ">", + "(", + "select", + "accelerate", + "from", + "cars_data", + "order", + "by", + "horsepower", + "desc", + "limit", + "value", + ")" + ], + "question": "How many cars have a larger accelerate than the car with the largest horsepower?", + "question_toks": [ + "How", + "many", + "cars", + "have", + "a", + "larger", + "accelerate", + "than", + "the", + "car", + "with", + "the", + "largest", + "horsepower", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 5 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 3, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 3, + [ + 0, + [ + 0, + 22, + false + ], + null + ], + { + "from": { + "table_units": [ + [ + "table_unit", + 5 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 22, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [ + "desc", + [ + [ + 0, + [ + 0, + 20, + false + ], + null + ] + ] + ], + "limit": 1, + "intersect": null, + "union": null, + "except": null + }, + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "car_1", + "query": "SELECT COUNT(*) FROM CARS_DATA WHERE Accelerate > ( SELECT Accelerate FROM CARS_DATA ORDER BY Horsepower DESC LIMIT 1 );", + "query_toks": [ + "SELECT", + "COUNT", + "(", + "*", + ")", + "FROM", + "CARS_DATA", + "WHERE", + "Accelerate", + ">", + "(", + "SELECT", + "Accelerate", + "FROM", + "CARS_DATA", + "ORDER", + "BY", + "Horsepower", + "DESC", + "LIMIT", + "1", + ")", + ";" + ], + "query_toks_no_value": [ + "select", + "count", + "(", + "*", + ")", + "from", + "cars_data", + "where", + "accelerate", + ">", + "(", + "select", + "accelerate", + "from", + "cars_data", + "order", + "by", + "horsepower", + "desc", + "limit", + "value", + ")" + ], + "question": "What is the number of cars with a greater accelerate than the one with the most horsepower?", + "question_toks": [ + "What", + "is", + "the", + "number", + "of", + "cars", + "with", + "a", + "greater", + "accelerate", + "than", + "the", + "one", + "with", + "the", + "most", + "horsepower", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 5 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 3, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 3, + [ + 0, + [ + 0, + 22, + false + ], + null + ], + { + "from": { + "table_units": [ + [ + "table_unit", + 5 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 22, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [ + "desc", + [ + [ + 0, + [ + 0, + 20, + false + ], + null + ] + ] + ], + "limit": 1, + "intersect": null, + "union": null, + "except": null + }, + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "car_1", + "query": "select count(*) from countries as t1 join car_makers as t2 on t1.countryid = t2.country group by t1.countryid having count(*) > 2", + "query_toks": [ + "select", + "count", + "(", + "*", + ")", + "from", + "countries", + "as", + "t1", + "join", + "car_makers", + "as", + "t2", + "on", + "t1.countryid", + "=", + "t2.country", + "group", + "by", + "t1.countryid", + "having", + "count", + "(", + "*", + ")", + ">", + "2" + ], + "query_toks_no_value": [ + "select", + "count", + "(", + "*", + ")", + "from", + "countries", + "as", + "t1", + "join", + "car_makers", + "as", + "t2", + "on", + "t1", + ".", + "countryid", + "=", + "t2", + ".", + "country", + "group", + "by", + "t1", + ".", + "countryid", + "having", + "count", + "(", + "*", + ")", + ">", + "value" + ], + "question": "How many countries has more than 2 car makers ?", + "question_toks": [ + "How", + "many", + "countries", + "has", + "more", + "than", + "2", + "car", + "makers", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ], + [ + "table_unit", + 2 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 3, + false + ], + null + ], + [ + 0, + 9, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 3, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 3, + false + ] + ], + "having": [ + [ + false, + 3, + [ + 0, + [ + 3, + 0, + false + ], + null + ], + 2.0, + null + ] + ], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "car_1", + "query": "select count(*) from countries as t1 join car_makers as t2 on t1.countryid = t2.country group by t1.countryid having count(*) > 2", + "query_toks": [ + "select", + "count", + "(", + "*", + ")", + "from", + "countries", + "as", + "t1", + "join", + "car_makers", + "as", + "t2", + "on", + "t1.countryid", + "=", + "t2.country", + "group", + "by", + "t1.countryid", + "having", + "count", + "(", + "*", + ")", + ">", + "2" + ], + "query_toks_no_value": [ + "select", + "count", + "(", + "*", + ")", + "from", + "countries", + "as", + "t1", + "join", + "car_makers", + "as", + "t2", + "on", + "t1", + ".", + "countryid", + "=", + "t2", + ".", + "country", + "group", + "by", + "t1", + ".", + "countryid", + "having", + "count", + "(", + "*", + ")", + ">", + "value" + ], + "question": "What is the number of countries with more than 2 car makers ?", + "question_toks": [ + "What", + "is", + "the", + "number", + "of", + "countries", + "with", + "more", + "than", + "2", + "car", + "makers", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ], + [ + "table_unit", + 2 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 3, + false + ], + null + ], + [ + 0, + 9, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 3, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 3, + false + ] + ], + "having": [ + [ + false, + 3, + [ + 0, + [ + 3, + 0, + false + ], + null + ], + 2.0, + null + ] + ], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "car_1", + "query": "SELECT COUNT(*) FROM CARS_DATA WHERE Cylinders > 6;", + "query_toks": [ + "SELECT", + "COUNT", + "(", + "*", + ")", + "FROM", + "CARS_DATA", + "WHERE", + "Cylinders", + ">", + "6", + ";" + ], + "query_toks_no_value": [ + "select", + "count", + "(", + "*", + ")", + "from", + "cars_data", + "where", + "cylinders", + ">", + "value" + ], + "question": "How many cars has over 6 cylinders?", + "question_toks": [ + "How", + "many", + "cars", + "has", + "over", + "6", + "cylinders", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 5 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 3, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 3, + [ + 0, + [ + 0, + 18, + false + ], + null + ], + 6.0, + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "car_1", + "query": "SELECT COUNT(*) FROM CARS_DATA WHERE Cylinders > 6;", + "query_toks": [ + "SELECT", + "COUNT", + "(", + "*", + ")", + "FROM", + "CARS_DATA", + "WHERE", + "Cylinders", + ">", + "6", + ";" + ], + "query_toks_no_value": [ + "select", + "count", + "(", + "*", + ")", + "from", + "cars_data", + "where", + "cylinders", + ">", + "value" + ], + "question": "What is the number of carsw ith over 6 cylinders?", + "question_toks": [ + "What", + "is", + "the", + "number", + "of", + "carsw", + "ith", + "over", + "6", + "cylinders", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 5 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 3, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 3, + [ + 0, + [ + 0, + 18, + false + ], + null + ], + 6.0, + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "car_1", + "query": "SELECT T1.Model FROM CAR_NAMES AS T1 JOIN CARS_DATA AS T2 ON T1.MakeId = T2.Id WHERE T2.Cylinders = 4 ORDER BY T2.horsepower DESC LIMIT 1;", + "query_toks": [ + "SELECT", + "T1.Model", + "FROM", + "CAR_NAMES", + "AS", + "T1", + "JOIN", + "CARS_DATA", + "AS", + "T2", + "ON", + "T1.MakeId", + "=", + "T2.Id", + "WHERE", + "T2.Cylinders", + "=", + "4", + "ORDER", + "BY", + "T2.horsepower", + "DESC", + "LIMIT", + "1", + ";" + ], + "query_toks_no_value": [ + "select", + "t1", + ".", + "model", + "from", + "car_names", + "as", + "t1", + "join", + "cars_data", + "as", + "t2", + "on", + "t1", + ".", + "makeid", + "=", + "t2", + ".", + "id", + "where", + "t2", + ".", + "cylinders", + "=", + "value", + "order", + "by", + "t2", + ".", + "horsepower", + "desc", + "limit", + "value" + ], + "question": "For the cars with 4 cylinders, which model has the largest horsepower?", + "question_toks": [ + "For", + "the", + "cars", + "with", + "4", + "cylinders", + ",", + "which", + "model", + "has", + "the", + "largest", + "horsepower", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 4 + ], + [ + "table_unit", + 5 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 13, + false + ], + null + ], + [ + 0, + 16, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 14, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 18, + false + ], + null + ], + 4.0, + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [ + "desc", + [ + [ + 0, + [ + 0, + 20, + false + ], + null + ] + ] + ], + "limit": 1, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "car_1", + "query": "SELECT T1.Model FROM CAR_NAMES AS T1 JOIN CARS_DATA AS T2 ON T1.MakeId = T2.Id WHERE T2.Cylinders = 4 ORDER BY T2.horsepower DESC LIMIT 1;", + "query_toks": [ + "SELECT", + "T1.Model", + "FROM", + "CAR_NAMES", + "AS", + "T1", + "JOIN", + "CARS_DATA", + "AS", + "T2", + "ON", + "T1.MakeId", + "=", + "T2.Id", + "WHERE", + "T2.Cylinders", + "=", + "4", + "ORDER", + "BY", + "T2.horsepower", + "DESC", + "LIMIT", + "1", + ";" + ], + "query_toks_no_value": [ + "select", + "t1", + ".", + "model", + "from", + "car_names", + "as", + "t1", + "join", + "cars_data", + "as", + "t2", + "on", + "t1", + ".", + "makeid", + "=", + "t2", + ".", + "id", + "where", + "t2", + ".", + "cylinders", + "=", + "value", + "order", + "by", + "t2", + ".", + "horsepower", + "desc", + "limit", + "value" + ], + "question": "For all of the 4 cylinder cars, which model has the most horsepower?", + "question_toks": [ + "For", + "all", + "of", + "the", + "4", + "cylinder", + "cars", + ",", + "which", + "model", + "has", + "the", + "most", + "horsepower", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 4 + ], + [ + "table_unit", + 5 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 13, + false + ], + null + ], + [ + 0, + 16, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 14, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 18, + false + ], + null + ], + 4.0, + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [ + "desc", + [ + [ + 0, + [ + 0, + 20, + false + ], + null + ] + ] + ], + "limit": 1, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "car_1", + "query": "SELECT T2.MakeId , T2.Make FROM CARS_DATA AS T1 JOIN CAR_NAMES AS T2 ON T1.Id = T2.MakeId WHERE T1.Horsepower > (SELECT min(Horsepower) FROM CARS_DATA) AND T1.Cylinders <= 3;", + "query_toks": [ + "SELECT", + "T2.MakeId", + ",", + "T2.Make", + "FROM", + "CARS_DATA", + "AS", + "T1", + "JOIN", + "CAR_NAMES", + "AS", + "T2", + "ON", + "T1.Id", + "=", + "T2.MakeId", + "WHERE", + "T1.Horsepower", + ">", + "(", + "SELECT", + "min", + "(", + "Horsepower", + ")", + "FROM", + "CARS_DATA", + ")", + "AND", + "T1.Cylinders", + "<", + "=", + "3", + ";" + ], + "query_toks_no_value": [ + "select", + "t2", + ".", + "makeid", + ",", + "t2", + ".", + "make", + "from", + "cars_data", + "as", + "t1", + "join", + "car_names", + "as", + "t2", + "on", + "t1", + ".", + "id", + "=", + "t2", + ".", + "makeid", + "where", + "t1", + ".", + "horsepower", + ">", + "(", + "select", + "min", + "(", + "horsepower", + ")", + "from", + "cars_data", + ")", + "and", + "t1", + ".", + "cylinders", + "<", + "=", + "value" + ], + "question": "Among the cars with more than lowest horsepower, which ones do not have more than 3 cylinders? List the car makeid and make name.", + "question_toks": [ + "Among", + "the", + "cars", + "with", + "more", + "than", + "lowest", + "horsepower", + ",", + "which", + "ones", + "do", + "not", + "have", + "more", + "than", + "3", + "cylinders", + "?", + "List", + "the", + "car", + "makeid", + "and", + "make", + "name", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 5 + ], + [ + "table_unit", + 4 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 16, + false + ], + null + ], + [ + 0, + 13, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 13, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 15, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 3, + [ + 0, + [ + 0, + 20, + false + ], + null + ], + { + "from": { + "table_units": [ + [ + "table_unit", + 5 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 2, + [ + 0, + [ + 0, + 20, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + }, + null + ], + "and", + [ + false, + 6, + [ + 0, + [ + 0, + 18, + false + ], + null + ], + 3.0, + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "car_1", + "query": "select t2.makeid , t2.make from cars_data as t1 join car_names as t2 on t1.id = t2.makeid where t1.horsepower > (select min(horsepower) from cars_data) and t1.cylinders < 4;", + "query_toks": [ + "select", + "t2.makeid", + ",", + "t2.make", + "from", + "cars_data", + "as", + "t1", + "join", + "car_names", + "as", + "t2", + "on", + "t1.id", + "=", + "t2.makeid", + "where", + "t1.horsepower", + ">", + "(", + "select", + "min", + "(", + "horsepower", + ")", + "from", + "cars_data", + ")", + "and", + "t1.cylinders", + "<", + "4", + ";" + ], + "query_toks_no_value": [ + "select", + "t2", + ".", + "makeid", + ",", + "t2", + ".", + "make", + "from", + "cars_data", + "as", + "t1", + "join", + "car_names", + "as", + "t2", + "on", + "t1", + ".", + "id", + "=", + "t2", + ".", + "makeid", + "where", + "t1", + ".", + "horsepower", + ">", + "(", + "select", + "min", + "(", + "horsepower", + ")", + "from", + "cars_data", + ")", + "and", + "t1", + ".", + "cylinders", + "<", + "value" + ], + "question": "Among the cars that do not have the minimum horsepower , what are the make ids and names of all those with less than 4 cylinders ?", + "question_toks": [ + "Among", + "the", + "cars", + "that", + "do", + "not", + "have", + "the", + "minimum", + "horsepower", + ",", + "what", + "are", + "the", + "make", + "ids", + "and", + "names", + "of", + "all", + "those", + "with", + "less", + "than", + "4", + "cylinders", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 5 + ], + [ + "table_unit", + 4 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 16, + false + ], + null + ], + [ + 0, + 13, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 13, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 15, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 3, + [ + 0, + [ + 0, + 20, + false + ], + null + ], + { + "from": { + "table_units": [ + [ + "table_unit", + 5 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 2, + [ + 0, + [ + 0, + 20, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + }, + null + ], + "and", + [ + false, + 4, + [ + 0, + [ + 0, + 18, + false + ], + null + ], + 4.0, + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "car_1", + "query": "select max(mpg) from cars_data where cylinders = 8 or year < 1980", + "query_toks": [ + "select", + "max", + "(", + "mpg", + ")", + "from", + "cars_data", + "where", + "cylinders", + "=", + "8", + "or", + "year", + "<", + "1980" + ], + "query_toks_no_value": [ + "select", + "max", + "(", + "mpg", + ")", + "from", + "cars_data", + "where", + "cylinders", + "=", + "value", + "or", + "year", + "<", + "value" + ], + "question": "What is the maximum miles per gallon of the car with 8 cylinders or produced before 1980 ?", + "question_toks": [ + "What", + "is", + "the", + "maximum", + "miles", + "per", + "gallon", + "of", + "the", + "car", + "with", + "8", + "cylinders", + "or", + "produced", + "before", + "1980", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 5 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 1, + [ + 0, + [ + 0, + 17, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 18, + false + ], + null + ], + 8.0, + null + ], + "or", + [ + false, + 4, + [ + 0, + [ + 0, + 23, + false + ], + null + ], + 1980.0, + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "car_1", + "query": "select max(mpg) from cars_data where cylinders = 8 or year < 1980", + "query_toks": [ + "select", + "max", + "(", + "mpg", + ")", + "from", + "cars_data", + "where", + "cylinders", + "=", + "8", + "or", + "year", + "<", + "1980" + ], + "query_toks_no_value": [ + "select", + "max", + "(", + "mpg", + ")", + "from", + "cars_data", + "where", + "cylinders", + "=", + "value", + "or", + "year", + "<", + "value" + ], + "question": "What is the maximum mpg of the cars that had 8 cylinders or that were produced before 1980 ?", + "question_toks": [ + "What", + "is", + "the", + "maximum", + "mpg", + "of", + "the", + "cars", + "that", + "had", + "8", + "cylinders", + "or", + "that", + "were", + "produced", + "before", + "1980", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 5 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 1, + [ + 0, + [ + 0, + 17, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 18, + false + ], + null + ], + 8.0, + null + ], + "or", + [ + false, + 4, + [ + 0, + [ + 0, + 23, + false + ], + null + ], + 1980.0, + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "car_1", + "query": "SELECT DISTINCT T1.model FROM MODEL_LIST AS T1 JOIN CAR_NAMES AS T2 ON T1.Model = T2.Model JOIN CARS_DATA AS T3 ON T2.MakeId = T3.Id JOIN CAR_MAKERS AS T4 ON T1.Maker = T4.Id WHERE T3.weight < 3500 AND T4.FullName != 'Ford Motor Company';", + "query_toks": [ + "SELECT", + "DISTINCT", + "T1.model", + "FROM", + "MODEL_LIST", + "AS", + "T1", + "JOIN", + "CAR_NAMES", + "AS", + "T2", + "ON", + "T1.Model", + "=", + "T2.Model", + "JOIN", + "CARS_DATA", + "AS", + "T3", + "ON", + "T2.MakeId", + "=", + "T3.Id", + "JOIN", + "CAR_MAKERS", + "AS", + "T4", + "ON", + "T1.Maker", + "=", + "T4.Id", + "WHERE", + "T3.weight", + "<", + "3500", + "AND", + "T4.FullName", + "!", + "=", + "'Ford", + "Motor", + "Company", + "'", + ";" + ], + "query_toks_no_value": [ + "select", + "distinct", + "t1", + ".", + "model", + "from", + "model_list", + "as", + "t1", + "join", + "car_names", + "as", + "t2", + "on", + "t1", + ".", + "model", + "=", + "t2", + ".", + "model", + "join", + "cars_data", + "as", + "t3", + "on", + "t2", + ".", + "makeid", + "=", + "t3", + ".", + "id", + "join", + "car_makers", + "as", + "t4", + "on", + "t1", + ".", + "maker", + "=", + "t4", + ".", + "id", + "where", + "t3", + ".", + "weight", + "<", + "value", + "and", + "t4", + ".", + "fullname", + "!", + "=", + "value" + ], + "question": "Which models are lighter than 3500 but not built by the 'Ford Motor Company'?", + "question_toks": [ + "Which", + "models", + "are", + "lighter", + "than", + "3500", + "but", + "not", + "built", + "by", + "the", + "'Ford", + "Motor", + "Company", + "'", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 3 + ], + [ + "table_unit", + 4 + ], + [ + "table_unit", + 5 + ], + [ + "table_unit", + 2 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 12, + false + ], + null + ], + [ + 0, + 14, + false + ], + null + ], + "and", + [ + false, + 2, + [ + 0, + [ + 0, + 13, + false + ], + null + ], + [ + 0, + 16, + false + ], + null + ], + "and", + [ + false, + 2, + [ + 0, + [ + 0, + 11, + false + ], + null + ], + [ + 0, + 6, + false + ], + null + ] + ] + }, + "select": [ + true, + [ + [ + 0, + [ + 0, + [ + 0, + 12, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 4, + [ + 0, + [ + 0, + 21, + false + ], + null + ], + 3500.0, + null + ], + "and", + [ + false, + 7, + [ + 0, + [ + 0, + 8, + false + ], + null + ], + "\"Ford Motor Company\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "car_1", + "query": "SELECT DISTINCT T1.model FROM MODEL_LIST AS T1 JOIN CAR_NAMES AS T2 ON T1.Model = T2.Model JOIN CARS_DATA AS T3 ON T2.MakeId = T3.Id JOIN CAR_MAKERS AS T4 ON T1.Maker = T4.Id WHERE T3.weight < 3500 AND T4.FullName != 'Ford Motor Company';", + "query_toks": [ + "SELECT", + "DISTINCT", + "T1.model", + "FROM", + "MODEL_LIST", + "AS", + "T1", + "JOIN", + "CAR_NAMES", + "AS", + "T2", + "ON", + "T1.Model", + "=", + "T2.Model", + "JOIN", + "CARS_DATA", + "AS", + "T3", + "ON", + "T2.MakeId", + "=", + "T3.Id", + "JOIN", + "CAR_MAKERS", + "AS", + "T4", + "ON", + "T1.Maker", + "=", + "T4.Id", + "WHERE", + "T3.weight", + "<", + "3500", + "AND", + "T4.FullName", + "!", + "=", + "'Ford", + "Motor", + "Company", + "'", + ";" + ], + "query_toks_no_value": [ + "select", + "distinct", + "t1", + ".", + "model", + "from", + "model_list", + "as", + "t1", + "join", + "car_names", + "as", + "t2", + "on", + "t1", + ".", + "model", + "=", + "t2", + ".", + "model", + "join", + "cars_data", + "as", + "t3", + "on", + "t2", + ".", + "makeid", + "=", + "t3", + ".", + "id", + "join", + "car_makers", + "as", + "t4", + "on", + "t1", + ".", + "maker", + "=", + "t4", + ".", + "id", + "where", + "t3", + ".", + "weight", + "<", + "value", + "and", + "t4", + ".", + "fullname", + "!", + "=", + "value" + ], + "question": "What are the different models wthat are lighter than 3500 but were not built by the Ford Motor Company?", + "question_toks": [ + "What", + "are", + "the", + "different", + "models", + "wthat", + "are", + "lighter", + "than", + "3500", + "but", + "were", + "not", + "built", + "by", + "the", + "Ford", + "Motor", + "Company", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 3 + ], + [ + "table_unit", + 4 + ], + [ + "table_unit", + 5 + ], + [ + "table_unit", + 2 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 12, + false + ], + null + ], + [ + 0, + 14, + false + ], + null + ], + "and", + [ + false, + 2, + [ + 0, + [ + 0, + 13, + false + ], + null + ], + [ + 0, + 16, + false + ], + null + ], + "and", + [ + false, + 2, + [ + 0, + [ + 0, + 11, + false + ], + null + ], + [ + 0, + 6, + false + ], + null + ] + ] + }, + "select": [ + true, + [ + [ + 0, + [ + 0, + [ + 0, + 12, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 4, + [ + 0, + [ + 0, + 21, + false + ], + null + ], + 3500.0, + null + ], + "and", + [ + false, + 7, + [ + 0, + [ + 0, + 8, + false + ], + null + ], + "\"Ford Motor Company\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "car_1", + "query": "SELECT CountryName FROM countries EXCEPT SELECT T1.CountryName FROM countries AS T1 JOIN CAR_MAKERS AS T2 ON T1.countryId = T2.Country;", + "query_toks": [ + "SELECT", + "CountryName", + "FROM", + "countries", + "EXCEPT", + "SELECT", + "T1.CountryName", + "FROM", + "countries", + "AS", + "T1", + "JOIN", + "CAR_MAKERS", + "AS", + "T2", + "ON", + "T1.countryId", + "=", + "T2.Country", + ";" + ], + "query_toks_no_value": [ + "select", + "countryname", + "from", + "countries", + "except", + "select", + "t1", + ".", + "countryname", + "from", + "countries", + "as", + "t1", + "join", + "car_makers", + "as", + "t2", + "on", + "t1", + ".", + "countryid", + "=", + "t2", + ".", + "country" + ], + "question": "What are the name of the countries where there is not a single car maker?", + "question_toks": [ + "What", + "are", + "the", + "name", + "of", + "the", + "countries", + "where", + "there", + "is", + "not", + "a", + "single", + "car", + "maker", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 4, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ], + [ + "table_unit", + 2 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 3, + false + ], + null + ], + [ + 0, + 9, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 4, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + } + }, + { + "db_id": "car_1", + "query": "SELECT CountryName FROM countries EXCEPT SELECT T1.CountryName FROM countries AS T1 JOIN CAR_MAKERS AS T2 ON T1.countryId = T2.Country;", + "query_toks": [ + "SELECT", + "CountryName", + "FROM", + "countries", + "EXCEPT", + "SELECT", + "T1.CountryName", + "FROM", + "countries", + "AS", + "T1", + "JOIN", + "CAR_MAKERS", + "AS", + "T2", + "ON", + "T1.countryId", + "=", + "T2.Country", + ";" + ], + "query_toks_no_value": [ + "select", + "countryname", + "from", + "countries", + "except", + "select", + "t1", + ".", + "countryname", + "from", + "countries", + "as", + "t1", + "join", + "car_makers", + "as", + "t2", + "on", + "t1", + ".", + "countryid", + "=", + "t2", + ".", + "country" + ], + "question": "What are the names of the countries with no car makers?", + "question_toks": [ + "What", + "are", + "the", + "names", + "of", + "the", + "countries", + "with", + "no", + "car", + "makers", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 4, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ], + [ + "table_unit", + 2 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 3, + false + ], + null + ], + [ + 0, + 9, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 4, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + } + }, + { + "db_id": "car_1", + "query": "select t1.id , t1.maker from car_makers as t1 join model_list as t2 on t1.id = t2.maker group by t1.id having count(*) >= 2 intersect select t1.id , t1.maker from car_makers as t1 join model_list as t2 on t1.id = t2.maker join car_names as t3 on t2.model = t3.model group by t1.id having count(*) > 3;", + "query_toks": [ + "select", + "t1.id", + ",", + "t1.maker", + "from", + "car_makers", + "as", + "t1", + "join", + "model_list", + "as", + "t2", + "on", + "t1.id", + "=", + "t2.maker", + "group", + "by", + "t1.id", + "having", + "count", + "(", + "*", + ")", + ">=", + "2", + "intersect", + "select", + "t1.id", + ",", + "t1.maker", + "from", + "car_makers", + "as", + "t1", + "join", + "model_list", + "as", + "t2", + "on", + "t1.id", + "=", + "t2.maker", + "join", + "car_names", + "as", + "t3", + "on", + "t2.model", + "=", + "t3.model", + "group", + "by", + "t1.id", + "having", + "count", + "(", + "*", + ")", + ">", + "3", + ";" + ], + "query_toks_no_value": [ + "select", + "t1", + ".", + "id", + ",", + "t1", + ".", + "maker", + "from", + "car_makers", + "as", + "t1", + "join", + "model_list", + "as", + "t2", + "on", + "t1", + ".", + "id", + "=", + "t2", + ".", + "maker", + "group", + "by", + "t1", + ".", + "id", + "having", + "count", + "(", + "*", + ")", + ">", + "=", + "value", + "intersect", + "select", + "t1", + ".", + "id", + ",", + "t1", + ".", + "maker", + "from", + "car_makers", + "as", + "t1", + "join", + "model_list", + "as", + "t2", + "on", + "t1", + ".", + "id", + "=", + "t2", + ".", + "maker", + "join", + "car_names", + "as", + "t3", + "on", + "t2", + ".", + "model", + "=", + "t3", + ".", + "model", + "group", + "by", + "t1", + ".", + "id", + "having", + "count", + "(", + "*", + ")", + ">", + "value" + ], + "question": "Which are the car makers which produce at least 2 models and more than 3 car makers ? List the id and the maker .", + "question_toks": [ + "Which", + "are", + "the", + "car", + "makers", + "which", + "produce", + "at", + "least", + "2", + "models", + "and", + "more", + "than", + "3", + "car", + "makers", + "?", + "List", + "the", + "id", + "and", + "the", + "maker", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ], + [ + "table_unit", + 3 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 6, + false + ], + null + ], + [ + 0, + 11, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 6, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 7, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 6, + false + ] + ], + "having": [ + [ + false, + 5, + [ + 0, + [ + 3, + 0, + false + ], + null + ], + 2.0, + null + ] + ], + "orderBy": [], + "limit": null, + "intersect": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ], + [ + "table_unit", + 3 + ], + [ + "table_unit", + 4 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 6, + false + ], + null + ], + [ + 0, + 11, + false + ], + null + ], + "and", + [ + false, + 2, + [ + 0, + [ + 0, + 12, + false + ], + null + ], + [ + 0, + 14, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 6, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 7, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 6, + false + ] + ], + "having": [ + [ + false, + 3, + [ + 0, + [ + 3, + 0, + false + ], + null + ], + 3.0, + null + ] + ], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + }, + "union": null, + "except": null + } + }, + { + "db_id": "car_1", + "query": "SELECT T1.Id , T1.Maker FROM CAR_MAKERS AS T1 JOIN MODEL_LIST AS T2 ON T1.Id = T2.Maker GROUP BY T1.Id HAVING count(*) >= 2 INTERSECT SELECT T1.Id , T1.Maker FROM CAR_MAKERS AS T1 JOIN MODEL_LIST AS T2 ON T1.Id = T2.Maker JOIN CAR_NAMES AS T3 ON T2.model = T3.model GROUP BY T1.Id HAVING count(*) > 3;", + "query_toks": [ + "SELECT", + "T1.Id", + ",", + "T1.Maker", + "FROM", + "CAR_MAKERS", + "AS", + "T1", + "JOIN", + "MODEL_LIST", + "AS", + "T2", + "ON", + "T1.Id", + "=", + "T2.Maker", + "GROUP", + "BY", + "T1.Id", + "HAVING", + "count", + "(", + "*", + ")", + ">", + "=", + "2", + "INTERSECT", + "SELECT", + "T1.Id", + ",", + "T1.Maker", + "FROM", + "CAR_MAKERS", + "AS", + "T1", + "JOIN", + "MODEL_LIST", + "AS", + "T2", + "ON", + "T1.Id", + "=", + "T2.Maker", + "JOIN", + "CAR_NAMES", + "AS", + "T3", + "ON", + "T2.model", + "=", + "T3.model", + "GROUP", + "BY", + "T1.Id", + "HAVING", + "count", + "(", + "*", + ")", + ">", + "3", + ";" + ], + "query_toks_no_value": [ + "select", + "t1", + ".", + "id", + ",", + "t1", + ".", + "maker", + "from", + "car_makers", + "as", + "t1", + "join", + "model_list", + "as", + "t2", + "on", + "t1", + ".", + "id", + "=", + "t2", + ".", + "maker", + "group", + "by", + "t1", + ".", + "id", + "having", + "count", + "(", + "*", + ")", + ">", + "=", + "value", + "intersect", + "select", + "t1", + ".", + "id", + ",", + "t1", + ".", + "maker", + "from", + "car_makers", + "as", + "t1", + "join", + "model_list", + "as", + "t2", + "on", + "t1", + ".", + "id", + "=", + "t2", + ".", + "maker", + "join", + "car_names", + "as", + "t3", + "on", + "t2", + ".", + "model", + "=", + "t3", + ".", + "model", + "group", + "by", + "t1", + ".", + "id", + "having", + "count", + "(", + "*", + ")", + ">", + "value" + ], + "question": "What are the ids and makers of all car makers that produce at least 2 models and make more than 3 cars?", + "question_toks": [ + "What", + "are", + "the", + "ids", + "and", + "makers", + "of", + "all", + "car", + "makers", + "that", + "produce", + "at", + "least", + "2", + "models", + "and", + "make", + "more", + "than", + "3", + "cars", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ], + [ + "table_unit", + 3 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 6, + false + ], + null + ], + [ + 0, + 11, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 6, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 7, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 6, + false + ] + ], + "having": [ + [ + false, + 5, + [ + 0, + [ + 3, + 0, + false + ], + null + ], + 2.0, + null + ] + ], + "orderBy": [], + "limit": null, + "intersect": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ], + [ + "table_unit", + 3 + ], + [ + "table_unit", + 4 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 6, + false + ], + null + ], + [ + 0, + 11, + false + ], + null + ], + "and", + [ + false, + 2, + [ + 0, + [ + 0, + 12, + false + ], + null + ], + [ + 0, + 14, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 6, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 7, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 6, + false + ] + ], + "having": [ + [ + false, + 3, + [ + 0, + [ + 3, + 0, + false + ], + null + ], + 3.0, + null + ] + ], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + }, + "union": null, + "except": null + } + }, + { + "db_id": "car_1", + "query": "SELECT T1.countryId , T1.CountryName FROM Countries AS T1 JOIN CAR_MAKERS AS T2 ON T1.CountryId = T2.Country GROUP BY T1.countryId HAVING count(*) > 3 UNION SELECT T1.countryId , T1.CountryName FROM Countries AS T1 JOIN CAR_MAKERS AS T2 ON T1.CountryId = T2.Country JOIN MODEL_LIST AS T3 ON T2.Id = T3.Maker WHERE T3.Model = 'fiat';", + "query_toks": [ + "SELECT", + "T1.countryId", + ",", + "T1.CountryName", + "FROM", + "Countries", + "AS", + "T1", + "JOIN", + "CAR_MAKERS", + "AS", + "T2", + "ON", + "T1.CountryId", + "=", + "T2.Country", + "GROUP", + "BY", + "T1.countryId", + "HAVING", + "count", + "(", + "*", + ")", + ">", + "3", + "UNION", + "SELECT", + "T1.countryId", + ",", + "T1.CountryName", + "FROM", + "Countries", + "AS", + "T1", + "JOIN", + "CAR_MAKERS", + "AS", + "T2", + "ON", + "T1.CountryId", + "=", + "T2.Country", + "JOIN", + "MODEL_LIST", + "AS", + "T3", + "ON", + "T2.Id", + "=", + "T3.Maker", + "WHERE", + "T3.Model", + "=", + "'fiat", + "'", + ";" + ], + "query_toks_no_value": [ + "select", + "t1", + ".", + "countryid", + ",", + "t1", + ".", + "countryname", + "from", + "countries", + "as", + "t1", + "join", + "car_makers", + "as", + "t2", + "on", + "t1", + ".", + "countryid", + "=", + "t2", + ".", + "country", + "group", + "by", + "t1", + ".", + "countryid", + "having", + "count", + "(", + "*", + ")", + ">", + "value", + "union", + "select", + "t1", + ".", + "countryid", + ",", + "t1", + ".", + "countryname", + "from", + "countries", + "as", + "t1", + "join", + "car_makers", + "as", + "t2", + "on", + "t1", + ".", + "countryid", + "=", + "t2", + ".", + "country", + "join", + "model_list", + "as", + "t3", + "on", + "t2", + ".", + "id", + "=", + "t3", + ".", + "maker", + "where", + "t3", + ".", + "model", + "=", + "value" + ], + "question": "What are the id and names of the countries which have more than 3 car makers or produce the 'fiat' model?", + "question_toks": [ + "What", + "are", + "the", + "id", + "and", + "names", + "of", + "the", + "countries", + "which", + "have", + "more", + "than", + "3", + "car", + "makers", + "or", + "produce", + "the", + "'fiat", + "'", + "model", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ], + [ + "table_unit", + 2 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 3, + false + ], + null + ], + [ + 0, + 9, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 3, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 4, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 3, + false + ] + ], + "having": [ + [ + false, + 3, + [ + 0, + [ + 3, + 0, + false + ], + null + ], + 3.0, + null + ] + ], + "orderBy": [], + "limit": null, + "intersect": null, + "union": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ], + [ + "table_unit", + 2 + ], + [ + "table_unit", + 3 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 3, + false + ], + null + ], + [ + 0, + 9, + false + ], + null + ], + "and", + [ + false, + 2, + [ + 0, + [ + 0, + 6, + false + ], + null + ], + [ + 0, + 11, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 3, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 4, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 12, + false + ], + null + ], + "\"fiat\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + }, + "except": null + } + }, + { + "db_id": "car_1", + "query": "select t1.countryid , t1.countryname from countries as t1 join car_makers as t2 on t1.countryid = t2.country group by t1.countryid having count(*) > 3 union select t1.countryid , t1.countryname from countries as t1 join car_makers as t2 on t1.countryid = t2.country join model_list as t3 on t2.id = t3.maker where t3.model = 'fiat';", + "query_toks": [ + "select", + "t1.countryid", + ",", + "t1.countryname", + "from", + "countries", + "as", + "t1", + "join", + "car_makers", + "as", + "t2", + "on", + "t1.countryid", + "=", + "t2.country", + "group", + "by", + "t1.countryid", + "having", + "count", + "(", + "*", + ")", + ">", + "3", + "union", + "select", + "t1.countryid", + ",", + "t1.countryname", + "from", + "countries", + "as", + "t1", + "join", + "car_makers", + "as", + "t2", + "on", + "t1.countryid", + "=", + "t2.country", + "join", + "model_list", + "as", + "t3", + "on", + "t2.id", + "=", + "t3.maker", + "where", + "t3.model", + "=", + "\"fiat\"", + ";" + ], + "query_toks_no_value": [ + "select", + "t1", + ".", + "countryid", + ",", + "t1", + ".", + "countryname", + "from", + "countries", + "as", + "t1", + "join", + "car_makers", + "as", + "t2", + "on", + "t1", + ".", + "countryid", + "=", + "t2", + ".", + "country", + "group", + "by", + "t1", + ".", + "countryid", + "having", + "count", + "(", + "*", + ")", + ">", + "value", + "union", + "select", + "t1", + ".", + "countryid", + ",", + "t1", + ".", + "countryname", + "from", + "countries", + "as", + "t1", + "join", + "car_makers", + "as", + "t2", + "on", + "t1", + ".", + "countryid", + "=", + "t2", + ".", + "country", + "join", + "model_list", + "as", + "t3", + "on", + "t2", + ".", + "id", + "=", + "t3", + ".", + "maker", + "where", + "t3", + ".", + "model", + "=", + "value" + ], + "question": "What are the ids and names of all countries that either have more than 3 car makers or produce fiat model ?", + "question_toks": [ + "What", + "are", + "the", + "ids", + "and", + "names", + "of", + "all", + "countries", + "that", + "either", + "have", + "more", + "than", + "3", + "car", + "makers", + "or", + "produce", + "fiat", + "model", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ], + [ + "table_unit", + 2 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 3, + false + ], + null + ], + [ + 0, + 9, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 3, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 4, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 3, + false + ] + ], + "having": [ + [ + false, + 3, + [ + 0, + [ + 3, + 0, + false + ], + null + ], + 3.0, + null + ] + ], + "orderBy": [], + "limit": null, + "intersect": null, + "union": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ], + [ + "table_unit", + 2 + ], + [ + "table_unit", + 3 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 3, + false + ], + null + ], + [ + 0, + 9, + false + ], + null + ], + "and", + [ + false, + 2, + [ + 0, + [ + 0, + 6, + false + ], + null + ], + [ + 0, + 11, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 3, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 4, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 12, + false + ], + null + ], + "\"fiat\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + }, + "except": null + } + }, + { + "db_id": "flight_2", + "query": "SELECT Country FROM AIRLINES WHERE Airline = \"JetBlue Airways\"", + "query_toks": [ + "SELECT", + "Country", + "FROM", + "AIRLINES", + "WHERE", + "Airline", + "=", + "``", + "JetBlue", + "Airways", + "''" + ], + "query_toks_no_value": [ + "select", + "country", + "from", + "airlines", + "where", + "airline", + "=", + "value" + ], + "question": "Which country does Airline \"JetBlue Airways\" belong to?", + "question_toks": [ + "Which", + "country", + "does", + "Airline", + "``", + "JetBlue", + "Airways", + "''", + "belong", + "to", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 4, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 2, + false + ], + null + ], + "\"JetBlue Airways\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "flight_2", + "query": "SELECT Country FROM AIRLINES WHERE Airline = \"JetBlue Airways\"", + "query_toks": [ + "SELECT", + "Country", + "FROM", + "AIRLINES", + "WHERE", + "Airline", + "=", + "``", + "JetBlue", + "Airways", + "''" + ], + "query_toks_no_value": [ + "select", + "country", + "from", + "airlines", + "where", + "airline", + "=", + "value" + ], + "question": "What country is Jetblue Airways affiliated with?", + "question_toks": [ + "What", + "country", + "is", + "Jetblue", + "Airways", + "affiliated", + "with", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 4, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 2, + false + ], + null + ], + "\"JetBlue Airways\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "flight_2", + "query": "SELECT Abbreviation FROM AIRLINES WHERE Airline = \"JetBlue Airways\"", + "query_toks": [ + "SELECT", + "Abbreviation", + "FROM", + "AIRLINES", + "WHERE", + "Airline", + "=", + "``", + "JetBlue", + "Airways", + "''" + ], + "query_toks_no_value": [ + "select", + "abbreviation", + "from", + "airlines", + "where", + "airline", + "=", + "value" + ], + "question": "What is the abbreviation of Airline \"JetBlue Airways\"?", + "question_toks": [ + "What", + "is", + "the", + "abbreviation", + "of", + "Airline", + "``", + "JetBlue", + "Airways", + "''", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 3, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 2, + false + ], + null + ], + "\"JetBlue Airways\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "flight_2", + "query": "SELECT Abbreviation FROM AIRLINES WHERE Airline = \"JetBlue Airways\"", + "query_toks": [ + "SELECT", + "Abbreviation", + "FROM", + "AIRLINES", + "WHERE", + "Airline", + "=", + "``", + "JetBlue", + "Airways", + "''" + ], + "query_toks_no_value": [ + "select", + "abbreviation", + "from", + "airlines", + "where", + "airline", + "=", + "value" + ], + "question": "Which abbreviation corresponds to Jetblue Airways?", + "question_toks": [ + "Which", + "abbreviation", + "corresponds", + "to", + "Jetblue", + "Airways", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 3, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 2, + false + ], + null + ], + "\"JetBlue Airways\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "flight_2", + "query": "SELECT Airline , Abbreviation FROM AIRLINES WHERE Country = \"USA\"", + "query_toks": [ + "SELECT", + "Airline", + ",", + "Abbreviation", + "FROM", + "AIRLINES", + "WHERE", + "Country", + "=", + "``", + "USA", + "''" + ], + "query_toks_no_value": [ + "select", + "airline", + ",", + "abbreviation", + "from", + "airlines", + "where", + "country", + "=", + "value" + ], + "question": "List all airline names and their abbreviations in \"USA\".", + "question_toks": [ + "List", + "all", + "airline", + "names", + "and", + "their", + "abbreviations", + "in", + "``", + "USA", + "''", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 2, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 3, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 4, + false + ], + null + ], + "\"USA\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "flight_2", + "query": "SELECT Airline , Abbreviation FROM AIRLINES WHERE Country = \"USA\"", + "query_toks": [ + "SELECT", + "Airline", + ",", + "Abbreviation", + "FROM", + "AIRLINES", + "WHERE", + "Country", + "=", + "``", + "USA", + "''" + ], + "query_toks_no_value": [ + "select", + "airline", + ",", + "abbreviation", + "from", + "airlines", + "where", + "country", + "=", + "value" + ], + "question": "What are the airline names and abbreviations for airlines in the USA?", + "question_toks": [ + "What", + "are", + "the", + "airline", + "names", + "and", + "abbreviations", + "for", + "airlines", + "in", + "the", + "USA", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 2, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 3, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 4, + false + ], + null + ], + "\"USA\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "flight_2", + "query": "SELECT AirportCode , AirportName FROM AIRPORTS WHERE city = \"Anthony\"", + "query_toks": [ + "SELECT", + "AirportCode", + ",", + "AirportName", + "FROM", + "AIRPORTS", + "WHERE", + "city", + "=", + "``", + "Anthony", + "''" + ], + "query_toks_no_value": [ + "select", + "airportcode", + ",", + "airportname", + "from", + "airports", + "where", + "city", + "=", + "value" + ], + "question": "List the airport code and name in the city of Anthony.", + "question_toks": [ + "List", + "the", + "airport", + "code", + "and", + "name", + "in", + "the", + "city", + "of", + "Anthony", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 6, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 7, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 5, + false + ], + null + ], + "\"Anthony\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "flight_2", + "query": "SELECT AirportCode , AirportName FROM AIRPORTS WHERE city = \"Anthony\"", + "query_toks": [ + "SELECT", + "AirportCode", + ",", + "AirportName", + "FROM", + "AIRPORTS", + "WHERE", + "city", + "=", + "``", + "Anthony", + "''" + ], + "query_toks_no_value": [ + "select", + "airportcode", + ",", + "airportname", + "from", + "airports", + "where", + "city", + "=", + "value" + ], + "question": "Give the airport code and airport name corresonding to the city Anthony.", + "question_toks": [ + "Give", + "the", + "airport", + "code", + "and", + "airport", + "name", + "corresonding", + "to", + "the", + "city", + "Anthony", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 6, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 7, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 5, + false + ], + null + ], + "\"Anthony\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "flight_2", + "query": "SELECT count(*) FROM AIRLINES", + "query_toks": [ + "SELECT", + "count", + "(", + "*", + ")", + "FROM", + "AIRLINES" + ], + "query_toks_no_value": [ + "select", + "count", + "(", + "*", + ")", + "from", + "airlines" + ], + "question": "How many airlines do we have?", + "question_toks": [ + "How", + "many", + "airlines", + "do", + "we", + "have", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 3, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "flight_2", + "query": "SELECT count(*) FROM AIRLINES", + "query_toks": [ + "SELECT", + "count", + "(", + "*", + ")", + "FROM", + "AIRLINES" + ], + "query_toks_no_value": [ + "select", + "count", + "(", + "*", + ")", + "from", + "airlines" + ], + "question": "What is the total number of airlines?", + "question_toks": [ + "What", + "is", + "the", + "total", + "number", + "of", + "airlines", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 3, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "flight_2", + "query": "SELECT count(*) FROM AIRPORTS", + "query_toks": [ + "SELECT", + "count", + "(", + "*", + ")", + "FROM", + "AIRPORTS" + ], + "query_toks_no_value": [ + "select", + "count", + "(", + "*", + ")", + "from", + "airports" + ], + "question": "How many airports do we have?", + "question_toks": [ + "How", + "many", + "airports", + "do", + "we", + "have", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 3, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "flight_2", + "query": "SELECT count(*) FROM AIRPORTS", + "query_toks": [ + "SELECT", + "count", + "(", + "*", + ")", + "FROM", + "AIRPORTS" + ], + "query_toks_no_value": [ + "select", + "count", + "(", + "*", + ")", + "from", + "airports" + ], + "question": "Return the number of airports.", + "question_toks": [ + "Return", + "the", + "number", + "of", + "airports", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 3, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "flight_2", + "query": "SELECT count(*) FROM FLIGHTS", + "query_toks": [ + "SELECT", + "count", + "(", + "*", + ")", + "FROM", + "FLIGHTS" + ], + "query_toks_no_value": [ + "select", + "count", + "(", + "*", + ")", + "from", + "flights" + ], + "question": "How many flights do we have?", + "question_toks": [ + "How", + "many", + "flights", + "do", + "we", + "have", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 3, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "flight_2", + "query": "SELECT count(*) FROM FLIGHTS", + "query_toks": [ + "SELECT", + "count", + "(", + "*", + ")", + "FROM", + "FLIGHTS" + ], + "query_toks_no_value": [ + "select", + "count", + "(", + "*", + ")", + "from", + "flights" + ], + "question": "Return the number of flights.", + "question_toks": [ + "Return", + "the", + "number", + "of", + "flights", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 3, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "flight_2", + "query": "SELECT Airline FROM AIRLINES WHERE Abbreviation = \"UAL\"", + "query_toks": [ + "SELECT", + "Airline", + "FROM", + "AIRLINES", + "WHERE", + "Abbreviation", + "=", + "``", + "UAL", + "''" + ], + "query_toks_no_value": [ + "select", + "airline", + "from", + "airlines", + "where", + "abbreviation", + "=", + "value" + ], + "question": "Which airline has abbreviation 'UAL'?", + "question_toks": [ + "Which", + "airline", + "has", + "abbreviation", + "'UAL", + "'", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 2, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 3, + false + ], + null + ], + "\"UAL\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "flight_2", + "query": "SELECT Airline FROM AIRLINES WHERE Abbreviation = \"UAL\"", + "query_toks": [ + "SELECT", + "Airline", + "FROM", + "AIRLINES", + "WHERE", + "Abbreviation", + "=", + "``", + "UAL", + "''" + ], + "query_toks_no_value": [ + "select", + "airline", + "from", + "airlines", + "where", + "abbreviation", + "=", + "value" + ], + "question": "Give the airline with abbreviation 'UAL'.", + "question_toks": [ + "Give", + "the", + "airline", + "with", + "abbreviation", + "'UAL", + "'", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 2, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 3, + false + ], + null + ], + "\"UAL\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "flight_2", + "query": "SELECT count(*) FROM AIRLINES WHERE Country = \"USA\"", + "query_toks": [ + "SELECT", + "count", + "(", + "*", + ")", + "FROM", + "AIRLINES", + "WHERE", + "Country", + "=", + "``", + "USA", + "''" + ], + "query_toks_no_value": [ + "select", + "count", + "(", + "*", + ")", + "from", + "airlines", + "where", + "country", + "=", + "value" + ], + "question": "How many airlines are from USA?", + "question_toks": [ + "How", + "many", + "airlines", + "are", + "from", + "USA", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 3, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 4, + false + ], + null + ], + "\"USA\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "flight_2", + "query": "SELECT count(*) FROM AIRLINES WHERE Country = \"USA\"", + "query_toks": [ + "SELECT", + "count", + "(", + "*", + ")", + "FROM", + "AIRLINES", + "WHERE", + "Country", + "=", + "``", + "USA", + "''" + ], + "query_toks_no_value": [ + "select", + "count", + "(", + "*", + ")", + "from", + "airlines", + "where", + "country", + "=", + "value" + ], + "question": "Return the number of airlines in the USA.", + "question_toks": [ + "Return", + "the", + "number", + "of", + "airlines", + "in", + "the", + "USA", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 3, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 4, + false + ], + null + ], + "\"USA\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "flight_2", + "query": "SELECT City , Country FROM AIRPORTS WHERE AirportName = \"Alton\"", + "query_toks": [ + "SELECT", + "City", + ",", + "Country", + "FROM", + "AIRPORTS", + "WHERE", + "AirportName", + "=", + "``", + "Alton", + "''" + ], + "query_toks_no_value": [ + "select", + "city", + ",", + "country", + "from", + "airports", + "where", + "airportname", + "=", + "value" + ], + "question": "Which city and country is the Alton airport at?", + "question_toks": [ + "Which", + "city", + "and", + "country", + "is", + "the", + "Alton", + "airport", + "at", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 5, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 8, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 7, + false + ], + null + ], + "\"Alton\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "flight_2", + "query": "SELECT City , Country FROM AIRPORTS WHERE AirportName = \"Alton\"", + "query_toks": [ + "SELECT", + "City", + ",", + "Country", + "FROM", + "AIRPORTS", + "WHERE", + "AirportName", + "=", + "``", + "Alton", + "''" + ], + "query_toks_no_value": [ + "select", + "city", + ",", + "country", + "from", + "airports", + "where", + "airportname", + "=", + "value" + ], + "question": "Give the city and country for the Alton airport.", + "question_toks": [ + "Give", + "the", + "city", + "and", + "country", + "for", + "the", + "Alton", + "airport", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 5, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 8, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 7, + false + ], + null + ], + "\"Alton\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "flight_2", + "query": "SELECT AirportName FROM AIRPORTS WHERE AirportCode = \"AKO\"", + "query_toks": [ + "SELECT", + "AirportName", + "FROM", + "AIRPORTS", + "WHERE", + "AirportCode", + "=", + "``", + "AKO", + "''" + ], + "query_toks_no_value": [ + "select", + "airportname", + "from", + "airports", + "where", + "airportcode", + "=", + "value" + ], + "question": "What is the airport name for airport 'AKO'?", + "question_toks": [ + "What", + "is", + "the", + "airport", + "name", + "for", + "airport", + "'AKO", + "'", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 7, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 6, + false + ], + null + ], + "\"AKO\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "flight_2", + "query": "SELECT AirportName FROM AIRPORTS WHERE AirportCode = \"AKO\"", + "query_toks": [ + "SELECT", + "AirportName", + "FROM", + "AIRPORTS", + "WHERE", + "AirportCode", + "=", + "``", + "AKO", + "''" + ], + "query_toks_no_value": [ + "select", + "airportname", + "from", + "airports", + "where", + "airportcode", + "=", + "value" + ], + "question": "Return the name of the airport with code 'AKO'.", + "question_toks": [ + "Return", + "the", + "name", + "of", + "the", + "airport", + "with", + "code", + "'AKO", + "'", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 7, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 6, + false + ], + null + ], + "\"AKO\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "flight_2", + "query": "SELECT AirportName FROM AIRPORTS WHERE City = \"Aberdeen\"", + "query_toks": [ + "SELECT", + "AirportName", + "FROM", + "AIRPORTS", + "WHERE", + "City", + "=", + "``", + "Aberdeen", + "''" + ], + "query_toks_no_value": [ + "select", + "airportname", + "from", + "airports", + "where", + "city", + "=", + "value" + ], + "question": "What are airport names at City 'Aberdeen'?", + "question_toks": [ + "What", + "are", + "airport", + "names", + "at", + "City", + "'Aberdeen", + "'", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 7, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 5, + false + ], + null + ], + "\"Aberdeen\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "flight_2", + "query": "SELECT AirportName FROM AIRPORTS WHERE City = \"Aberdeen\"", + "query_toks": [ + "SELECT", + "AirportName", + "FROM", + "AIRPORTS", + "WHERE", + "City", + "=", + "``", + "Aberdeen", + "''" + ], + "query_toks_no_value": [ + "select", + "airportname", + "from", + "airports", + "where", + "city", + "=", + "value" + ], + "question": "What are the names of airports in Aberdeen?", + "question_toks": [ + "What", + "are", + "the", + "names", + "of", + "airports", + "in", + "Aberdeen", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 7, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 5, + false + ], + null + ], + "\"Aberdeen\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "flight_2", + "query": "SELECT count(*) FROM FLIGHTS WHERE SourceAirport = \"APG\"", + "query_toks": [ + "SELECT", + "count", + "(", + "*", + ")", + "FROM", + "FLIGHTS", + "WHERE", + "SourceAirport", + "=", + "``", + "APG", + "''" + ], + "query_toks_no_value": [ + "select", + "count", + "(", + "*", + ")", + "from", + "flights", + "where", + "sourceairport", + "=", + "value" + ], + "question": "How many flights depart from 'APG'?", + "question_toks": [ + "How", + "many", + "flights", + "depart", + "from", + "'APG", + "'", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 3, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 12, + false + ], + null + ], + "\"APG\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "flight_2", + "query": "SELECT count(*) FROM FLIGHTS WHERE SourceAirport = \"APG\"", + "query_toks": [ + "SELECT", + "count", + "(", + "*", + ")", + "FROM", + "FLIGHTS", + "WHERE", + "SourceAirport", + "=", + "``", + "APG", + "''" + ], + "query_toks_no_value": [ + "select", + "count", + "(", + "*", + ")", + "from", + "flights", + "where", + "sourceairport", + "=", + "value" + ], + "question": "Count the number of flights departing from 'APG'.", + "question_toks": [ + "Count", + "the", + "number", + "of", + "flights", + "departing", + "from", + "'APG", + "'", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 3, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 12, + false + ], + null + ], + "\"APG\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "flight_2", + "query": "SELECT count(*) FROM FLIGHTS WHERE DestAirport = \"ATO\"", + "query_toks": [ + "SELECT", + "count", + "(", + "*", + ")", + "FROM", + "FLIGHTS", + "WHERE", + "DestAirport", + "=", + "``", + "ATO", + "''" + ], + "query_toks_no_value": [ + "select", + "count", + "(", + "*", + ")", + "from", + "flights", + "where", + "destairport", + "=", + "value" + ], + "question": "How many flights have destination ATO?", + "question_toks": [ + "How", + "many", + "flights", + "have", + "destination", + "ATO", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 3, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 13, + false + ], + null + ], + "\"ATO\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "flight_2", + "query": "SELECT count(*) FROM FLIGHTS WHERE DestAirport = \"ATO\"", + "query_toks": [ + "SELECT", + "count", + "(", + "*", + ")", + "FROM", + "FLIGHTS", + "WHERE", + "DestAirport", + "=", + "``", + "ATO", + "''" + ], + "query_toks_no_value": [ + "select", + "count", + "(", + "*", + ")", + "from", + "flights", + "where", + "destairport", + "=", + "value" + ], + "question": "Count the number of flights into ATO.", + "question_toks": [ + "Count", + "the", + "number", + "of", + "flights", + "into", + "ATO", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 3, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 13, + false + ], + null + ], + "\"ATO\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "flight_2", + "query": "SELECT count(*) FROM FLIGHTS AS T1 JOIN AIRPORTS AS T2 ON T1.SourceAirport = T2.AirportCode WHERE T2.City = \"Aberdeen\"", + "query_toks": [ + "SELECT", + "count", + "(", + "*", + ")", + "FROM", + "FLIGHTS", + "AS", + "T1", + "JOIN", + "AIRPORTS", + "AS", + "T2", + "ON", + "T1.SourceAirport", + "=", + "T2.AirportCode", + "WHERE", + "T2.City", + "=", + "``", + "Aberdeen", + "''" + ], + "query_toks_no_value": [ + "select", + "count", + "(", + "*", + ")", + "from", + "flights", + "as", + "t1", + "join", + "airports", + "as", + "t2", + "on", + "t1", + ".", + "sourceairport", + "=", + "t2", + ".", + "airportcode", + "where", + "t2", + ".", + "city", + "=", + "value" + ], + "question": "How many flights depart from City Aberdeen?", + "question_toks": [ + "How", + "many", + "flights", + "depart", + "from", + "City", + "Aberdeen", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ], + [ + "table_unit", + 1 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 12, + false + ], + null + ], + [ + 0, + 6, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 3, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 5, + false + ], + null + ], + "\"Aberdeen\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "flight_2", + "query": "SELECT count(*) FROM FLIGHTS AS T1 JOIN AIRPORTS AS T2 ON T1.SourceAirport = T2.AirportCode WHERE T2.City = \"Aberdeen\"", + "query_toks": [ + "SELECT", + "count", + "(", + "*", + ")", + "FROM", + "FLIGHTS", + "AS", + "T1", + "JOIN", + "AIRPORTS", + "AS", + "T2", + "ON", + "T1.SourceAirport", + "=", + "T2.AirportCode", + "WHERE", + "T2.City", + "=", + "``", + "Aberdeen", + "''" + ], + "query_toks_no_value": [ + "select", + "count", + "(", + "*", + ")", + "from", + "flights", + "as", + "t1", + "join", + "airports", + "as", + "t2", + "on", + "t1", + ".", + "sourceairport", + "=", + "t2", + ".", + "airportcode", + "where", + "t2", + ".", + "city", + "=", + "value" + ], + "question": "Return the number of flights departing from Aberdeen.", + "question_toks": [ + "Return", + "the", + "number", + "of", + "flights", + "departing", + "from", + "Aberdeen", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ], + [ + "table_unit", + 1 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 12, + false + ], + null + ], + [ + 0, + 6, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 3, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 5, + false + ], + null + ], + "\"Aberdeen\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "flight_2", + "query": "SELECT count(*) FROM FLIGHTS AS T1 JOIN AIRPORTS AS T2 ON T1.DestAirport = T2.AirportCode WHERE T2.City = \"Aberdeen\"", + "query_toks": [ + "SELECT", + "count", + "(", + "*", + ")", + "FROM", + "FLIGHTS", + "AS", + "T1", + "JOIN", + "AIRPORTS", + "AS", + "T2", + "ON", + "T1.DestAirport", + "=", + "T2.AirportCode", + "WHERE", + "T2.City", + "=", + "``", + "Aberdeen", + "''" + ], + "query_toks_no_value": [ + "select", + "count", + "(", + "*", + ")", + "from", + "flights", + "as", + "t1", + "join", + "airports", + "as", + "t2", + "on", + "t1", + ".", + "destairport", + "=", + "t2", + ".", + "airportcode", + "where", + "t2", + ".", + "city", + "=", + "value" + ], + "question": "How many flights arriving in Aberdeen city?", + "question_toks": [ + "How", + "many", + "flights", + "arriving", + "in", + "Aberdeen", + "city", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ], + [ + "table_unit", + 1 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 13, + false + ], + null + ], + [ + 0, + 6, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 3, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 5, + false + ], + null + ], + "\"Aberdeen\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "flight_2", + "query": "SELECT count(*) FROM FLIGHTS AS T1 JOIN AIRPORTS AS T2 ON T1.DestAirport = T2.AirportCode WHERE T2.City = \"Aberdeen\"", + "query_toks": [ + "SELECT", + "count", + "(", + "*", + ")", + "FROM", + "FLIGHTS", + "AS", + "T1", + "JOIN", + "AIRPORTS", + "AS", + "T2", + "ON", + "T1.DestAirport", + "=", + "T2.AirportCode", + "WHERE", + "T2.City", + "=", + "``", + "Aberdeen", + "''" + ], + "query_toks_no_value": [ + "select", + "count", + "(", + "*", + ")", + "from", + "flights", + "as", + "t1", + "join", + "airports", + "as", + "t2", + "on", + "t1", + ".", + "destairport", + "=", + "t2", + ".", + "airportcode", + "where", + "t2", + ".", + "city", + "=", + "value" + ], + "question": "Return the number of flights arriving in Aberdeen.", + "question_toks": [ + "Return", + "the", + "number", + "of", + "flights", + "arriving", + "in", + "Aberdeen", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ], + [ + "table_unit", + 1 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 13, + false + ], + null + ], + [ + 0, + 6, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 3, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 5, + false + ], + null + ], + "\"Aberdeen\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "flight_2", + "query": "SELECT count(*) FROM FLIGHTS AS T1 JOIN AIRPORTS AS T2 ON T1.DestAirport = T2.AirportCode JOIN AIRPORTS AS T3 ON T1.SourceAirport = T3.AirportCode WHERE T2.City = \"Ashley\" AND T3.City = \"Aberdeen\"", + "query_toks": [ + "SELECT", + "count", + "(", + "*", + ")", + "FROM", + "FLIGHTS", + "AS", + "T1", + "JOIN", + "AIRPORTS", + "AS", + "T2", + "ON", + "T1.DestAirport", + "=", + "T2.AirportCode", + "JOIN", + "AIRPORTS", + "AS", + "T3", + "ON", + "T1.SourceAirport", + "=", + "T3.AirportCode", + "WHERE", + "T2.City", + "=", + "``", + "Ashley", + "''", + "AND", + "T3.City", + "=", + "``", + "Aberdeen", + "''" + ], + "query_toks_no_value": [ + "select", + "count", + "(", + "*", + ")", + "from", + "flights", + "as", + "t1", + "join", + "airports", + "as", + "t2", + "on", + "t1", + ".", + "destairport", + "=", + "t2", + ".", + "airportcode", + "join", + "airports", + "as", + "t3", + "on", + "t1", + ".", + "sourceairport", + "=", + "t3", + ".", + "airportcode", + "where", + "t2", + ".", + "city", + "=", + "value", + "and", + "t3", + ".", + "city", + "=", + "value" + ], + "question": "How many flights depart from City 'Aberdeen' and have destination City 'Ashley'?", + "question_toks": [ + "How", + "many", + "flights", + "depart", + "from", + "City", + "'Aberdeen", + "'", + "and", + "have", + "destination", + "City", + "'Ashley", + "'", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ], + [ + "table_unit", + 1 + ], + [ + "table_unit", + 1 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 13, + false + ], + null + ], + [ + 0, + 6, + false + ], + null + ], + "and", + [ + false, + 2, + [ + 0, + [ + 0, + 12, + false + ], + null + ], + [ + 0, + 6, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 3, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 5, + false + ], + null + ], + "\"Ashley\"", + null + ], + "and", + [ + false, + 2, + [ + 0, + [ + 0, + 5, + false + ], + null + ], + "\"Aberdeen\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "flight_2", + "query": "SELECT count(*) FROM FLIGHTS AS T1 JOIN AIRPORTS AS T2 ON T1.DestAirport = T2.AirportCode JOIN AIRPORTS AS T3 ON T1.SourceAirport = T3.AirportCode WHERE T2.City = \"Ashley\" AND T3.City = \"Aberdeen\"", + "query_toks": [ + "SELECT", + "count", + "(", + "*", + ")", + "FROM", + "FLIGHTS", + "AS", + "T1", + "JOIN", + "AIRPORTS", + "AS", + "T2", + "ON", + "T1.DestAirport", + "=", + "T2.AirportCode", + "JOIN", + "AIRPORTS", + "AS", + "T3", + "ON", + "T1.SourceAirport", + "=", + "T3.AirportCode", + "WHERE", + "T2.City", + "=", + "``", + "Ashley", + "''", + "AND", + "T3.City", + "=", + "``", + "Aberdeen", + "''" + ], + "query_toks_no_value": [ + "select", + "count", + "(", + "*", + ")", + "from", + "flights", + "as", + "t1", + "join", + "airports", + "as", + "t2", + "on", + "t1", + ".", + "destairport", + "=", + "t2", + ".", + "airportcode", + "join", + "airports", + "as", + "t3", + "on", + "t1", + ".", + "sourceairport", + "=", + "t3", + ".", + "airportcode", + "where", + "t2", + ".", + "city", + "=", + "value", + "and", + "t3", + ".", + "city", + "=", + "value" + ], + "question": "How many flights fly from Aberdeen to Ashley?", + "question_toks": [ + "How", + "many", + "flights", + "fly", + "from", + "Aberdeen", + "to", + "Ashley", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ], + [ + "table_unit", + 1 + ], + [ + "table_unit", + 1 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 13, + false + ], + null + ], + [ + 0, + 6, + false + ], + null + ], + "and", + [ + false, + 2, + [ + 0, + [ + 0, + 12, + false + ], + null + ], + [ + 0, + 6, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 3, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 5, + false + ], + null + ], + "\"Ashley\"", + null + ], + "and", + [ + false, + 2, + [ + 0, + [ + 0, + 5, + false + ], + null + ], + "\"Aberdeen\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "flight_2", + "query": "SELECT count(*) FROM FLIGHTS AS T1 JOIN AIRLINES AS T2 ON T1.Airline = T2.uid WHERE T2.Airline = \"JetBlue Airways\"", + "query_toks": [ + "SELECT", + "count", + "(", + "*", + ")", + "FROM", + "FLIGHTS", + "AS", + "T1", + "JOIN", + "AIRLINES", + "AS", + "T2", + "ON", + "T1.Airline", + "=", + "T2.uid", + "WHERE", + "T2.Airline", + "=", + "``", + "JetBlue", + "Airways", + "''" + ], + "query_toks_no_value": [ + "select", + "count", + "(", + "*", + ")", + "from", + "flights", + "as", + "t1", + "join", + "airlines", + "as", + "t2", + "on", + "t1", + ".", + "airline", + "=", + "t2", + ".", + "uid", + "where", + "t2", + ".", + "airline", + "=", + "value" + ], + "question": "How many flights does airline 'JetBlue Airways' have?", + "question_toks": [ + "How", + "many", + "flights", + "does", + "airline", + "'JetBlue", + "Airways", + "'", + "have", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ], + [ + "table_unit", + 0 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 10, + false + ], + null + ], + [ + 0, + 1, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 3, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 2, + false + ], + null + ], + "\"JetBlue Airways\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "flight_2", + "query": "SELECT count(*) FROM FLIGHTS AS T1 JOIN AIRLINES AS T2 ON T1.Airline = T2.uid WHERE T2.Airline = \"JetBlue Airways\"", + "query_toks": [ + "SELECT", + "count", + "(", + "*", + ")", + "FROM", + "FLIGHTS", + "AS", + "T1", + "JOIN", + "AIRLINES", + "AS", + "T2", + "ON", + "T1.Airline", + "=", + "T2.uid", + "WHERE", + "T2.Airline", + "=", + "``", + "JetBlue", + "Airways", + "''" + ], + "query_toks_no_value": [ + "select", + "count", + "(", + "*", + ")", + "from", + "flights", + "as", + "t1", + "join", + "airlines", + "as", + "t2", + "on", + "t1", + ".", + "airline", + "=", + "t2", + ".", + "uid", + "where", + "t2", + ".", + "airline", + "=", + "value" + ], + "question": "Give the number of Jetblue Airways flights.", + "question_toks": [ + "Give", + "the", + "number", + "of", + "Jetblue", + "Airways", + "flights", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ], + [ + "table_unit", + 0 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 10, + false + ], + null + ], + [ + 0, + 1, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 3, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 2, + false + ], + null + ], + "\"JetBlue Airways\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "flight_2", + "query": "SELECT count(*) FROM AIRLINES AS T1 JOIN FLIGHTS AS T2 ON T2.Airline = T1.uid WHERE T1.Airline = \"United Airlines\" AND T2.DestAirport = \"ASY\"", + "query_toks": [ + "SELECT", + "count", + "(", + "*", + ")", + "FROM", + "AIRLINES", + "AS", + "T1", + "JOIN", + "FLIGHTS", + "AS", + "T2", + "ON", + "T2.Airline", + "=", + "T1.uid", + "WHERE", + "T1.Airline", + "=", + "``", + "United", + "Airlines", + "''", + "AND", + "T2.DestAirport", + "=", + "``", + "ASY", + "''" + ], + "query_toks_no_value": [ + "select", + "count", + "(", + "*", + ")", + "from", + "airlines", + "as", + "t1", + "join", + "flights", + "as", + "t2", + "on", + "t2", + ".", + "airline", + "=", + "t1", + ".", + "uid", + "where", + "t1", + ".", + "airline", + "=", + "value", + "and", + "t2", + ".", + "destairport", + "=", + "value" + ], + "question": "How many 'United Airlines' flights go to Airport 'ASY'?", + "question_toks": [ + "How", + "many", + "'United", + "Airlines", + "'", + "flights", + "go", + "to", + "Airport", + "'ASY", + "'", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ], + [ + "table_unit", + 2 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 10, + false + ], + null + ], + [ + 0, + 1, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 3, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 2, + false + ], + null + ], + "\"United Airlines\"", + null + ], + "and", + [ + false, + 2, + [ + 0, + [ + 0, + 13, + false + ], + null + ], + "\"ASY\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "flight_2", + "query": "SELECT count(*) FROM AIRLINES AS T1 JOIN FLIGHTS AS T2 ON T2.Airline = T1.uid WHERE T1.Airline = \"United Airlines\" AND T2.DestAirport = \"ASY\"", + "query_toks": [ + "SELECT", + "count", + "(", + "*", + ")", + "FROM", + "AIRLINES", + "AS", + "T1", + "JOIN", + "FLIGHTS", + "AS", + "T2", + "ON", + "T2.Airline", + "=", + "T1.uid", + "WHERE", + "T1.Airline", + "=", + "``", + "United", + "Airlines", + "''", + "AND", + "T2.DestAirport", + "=", + "``", + "ASY", + "''" + ], + "query_toks_no_value": [ + "select", + "count", + "(", + "*", + ")", + "from", + "airlines", + "as", + "t1", + "join", + "flights", + "as", + "t2", + "on", + "t2", + ".", + "airline", + "=", + "t1", + ".", + "uid", + "where", + "t1", + ".", + "airline", + "=", + "value", + "and", + "t2", + ".", + "destairport", + "=", + "value" + ], + "question": "Count the number of United Airlines flights arriving in ASY Airport.", + "question_toks": [ + "Count", + "the", + "number", + "of", + "United", + "Airlines", + "flights", + "arriving", + "in", + "ASY", + "Airport", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ], + [ + "table_unit", + 2 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 10, + false + ], + null + ], + [ + 0, + 1, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 3, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 2, + false + ], + null + ], + "\"United Airlines\"", + null + ], + "and", + [ + false, + 2, + [ + 0, + [ + 0, + 13, + false + ], + null + ], + "\"ASY\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "flight_2", + "query": "SELECT count(*) FROM AIRLINES AS T1 JOIN FLIGHTS AS T2 ON T2.Airline = T1.uid WHERE T1.Airline = \"United Airlines\" AND T2.SourceAirport = \"AHD\"", + "query_toks": [ + "SELECT", + "count", + "(", + "*", + ")", + "FROM", + "AIRLINES", + "AS", + "T1", + "JOIN", + "FLIGHTS", + "AS", + "T2", + "ON", + "T2.Airline", + "=", + "T1.uid", + "WHERE", + "T1.Airline", + "=", + "``", + "United", + "Airlines", + "''", + "AND", + "T2.SourceAirport", + "=", + "``", + "AHD", + "''" + ], + "query_toks_no_value": [ + "select", + "count", + "(", + "*", + ")", + "from", + "airlines", + "as", + "t1", + "join", + "flights", + "as", + "t2", + "on", + "t2", + ".", + "airline", + "=", + "t1", + ".", + "uid", + "where", + "t1", + ".", + "airline", + "=", + "value", + "and", + "t2", + ".", + "sourceairport", + "=", + "value" + ], + "question": "How many 'United Airlines' flights depart from Airport 'AHD'?", + "question_toks": [ + "How", + "many", + "'United", + "Airlines", + "'", + "flights", + "depart", + "from", + "Airport", + "'AHD", + "'", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ], + [ + "table_unit", + 2 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 10, + false + ], + null + ], + [ + 0, + 1, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 3, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 2, + false + ], + null + ], + "\"United Airlines\"", + null + ], + "and", + [ + false, + 2, + [ + 0, + [ + 0, + 12, + false + ], + null + ], + "\"AHD\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "flight_2", + "query": "SELECT count(*) FROM AIRLINES AS T1 JOIN FLIGHTS AS T2 ON T2.Airline = T1.uid WHERE T1.Airline = \"United Airlines\" AND T2.SourceAirport = \"AHD\"", + "query_toks": [ + "SELECT", + "count", + "(", + "*", + ")", + "FROM", + "AIRLINES", + "AS", + "T1", + "JOIN", + "FLIGHTS", + "AS", + "T2", + "ON", + "T2.Airline", + "=", + "T1.uid", + "WHERE", + "T1.Airline", + "=", + "``", + "United", + "Airlines", + "''", + "AND", + "T2.SourceAirport", + "=", + "``", + "AHD", + "''" + ], + "query_toks_no_value": [ + "select", + "count", + "(", + "*", + ")", + "from", + "airlines", + "as", + "t1", + "join", + "flights", + "as", + "t2", + "on", + "t2", + ".", + "airline", + "=", + "t1", + ".", + "uid", + "where", + "t1", + ".", + "airline", + "=", + "value", + "and", + "t2", + ".", + "sourceairport", + "=", + "value" + ], + "question": "Return the number of United Airlines flights leaving from AHD Airport.", + "question_toks": [ + "Return", + "the", + "number", + "of", + "United", + "Airlines", + "flights", + "leaving", + "from", + "AHD", + "Airport", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ], + [ + "table_unit", + 2 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 10, + false + ], + null + ], + [ + 0, + 1, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 3, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 2, + false + ], + null + ], + "\"United Airlines\"", + null + ], + "and", + [ + false, + 2, + [ + 0, + [ + 0, + 12, + false + ], + null + ], + "\"AHD\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "flight_2", + "query": "SELECT count(*) FROM FLIGHTS AS T1 JOIN AIRPORTS AS T2 ON T1.DestAirport = T2.AirportCode JOIN AIRLINES AS T3 ON T3.uid = T1.Airline WHERE T2.City = \"Aberdeen\" AND T3.Airline = \"United Airlines\"", + "query_toks": [ + "SELECT", + "count", + "(", + "*", + ")", + "FROM", + "FLIGHTS", + "AS", + "T1", + "JOIN", + "AIRPORTS", + "AS", + "T2", + "ON", + "T1.DestAirport", + "=", + "T2.AirportCode", + "JOIN", + "AIRLINES", + "AS", + "T3", + "ON", + "T3.uid", + "=", + "T1.Airline", + "WHERE", + "T2.City", + "=", + "``", + "Aberdeen", + "''", + "AND", + "T3.Airline", + "=", + "``", + "United", + "Airlines", + "''" + ], + "query_toks_no_value": [ + "select", + "count", + "(", + "*", + ")", + "from", + "flights", + "as", + "t1", + "join", + "airports", + "as", + "t2", + "on", + "t1", + ".", + "destairport", + "=", + "t2", + ".", + "airportcode", + "join", + "airlines", + "as", + "t3", + "on", + "t3", + ".", + "uid", + "=", + "t1", + ".", + "airline", + "where", + "t2", + ".", + "city", + "=", + "value", + "and", + "t3", + ".", + "airline", + "=", + "value" + ], + "question": "How many United Airlines flights go to City 'Aberdeen'?", + "question_toks": [ + "How", + "many", + "United", + "Airlines", + "flights", + "go", + "to", + "City", + "'Aberdeen", + "'", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ], + [ + "table_unit", + 1 + ], + [ + "table_unit", + 0 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 13, + false + ], + null + ], + [ + 0, + 6, + false + ], + null + ], + "and", + [ + false, + 2, + [ + 0, + [ + 0, + 1, + false + ], + null + ], + [ + 0, + 10, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 3, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 5, + false + ], + null + ], + "\"Aberdeen\"", + null + ], + "and", + [ + false, + 2, + [ + 0, + [ + 0, + 2, + false + ], + null + ], + "\"United Airlines\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "flight_2", + "query": "SELECT count(*) FROM FLIGHTS AS T1 JOIN AIRPORTS AS T2 ON T1.DestAirport = T2.AirportCode JOIN AIRLINES AS T3 ON T3.uid = T1.Airline WHERE T2.City = \"Aberdeen\" AND T3.Airline = \"United Airlines\"", + "query_toks": [ + "SELECT", + "count", + "(", + "*", + ")", + "FROM", + "FLIGHTS", + "AS", + "T1", + "JOIN", + "AIRPORTS", + "AS", + "T2", + "ON", + "T1.DestAirport", + "=", + "T2.AirportCode", + "JOIN", + "AIRLINES", + "AS", + "T3", + "ON", + "T3.uid", + "=", + "T1.Airline", + "WHERE", + "T2.City", + "=", + "``", + "Aberdeen", + "''", + "AND", + "T3.Airline", + "=", + "``", + "United", + "Airlines", + "''" + ], + "query_toks_no_value": [ + "select", + "count", + "(", + "*", + ")", + "from", + "flights", + "as", + "t1", + "join", + "airports", + "as", + "t2", + "on", + "t1", + ".", + "destairport", + "=", + "t2", + ".", + "airportcode", + "join", + "airlines", + "as", + "t3", + "on", + "t3", + ".", + "uid", + "=", + "t1", + ".", + "airline", + "where", + "t2", + ".", + "city", + "=", + "value", + "and", + "t3", + ".", + "airline", + "=", + "value" + ], + "question": "Count the number of United Airlines flights that arrive in Aberdeen.", + "question_toks": [ + "Count", + "the", + "number", + "of", + "United", + "Airlines", + "flights", + "that", + "arrive", + "in", + "Aberdeen", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ], + [ + "table_unit", + 1 + ], + [ + "table_unit", + 0 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 13, + false + ], + null + ], + [ + 0, + 6, + false + ], + null + ], + "and", + [ + false, + 2, + [ + 0, + [ + 0, + 1, + false + ], + null + ], + [ + 0, + 10, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 3, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 5, + false + ], + null + ], + "\"Aberdeen\"", + null + ], + "and", + [ + false, + 2, + [ + 0, + [ + 0, + 2, + false + ], + null + ], + "\"United Airlines\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "flight_2", + "query": "SELECT T1.City FROM AIRPORTS AS T1 JOIN FLIGHTS AS T2 ON T1.AirportCode = T2.DestAirport GROUP BY T1.City ORDER BY count(*) DESC LIMIT 1", + "query_toks": [ + "SELECT", + "T1.City", + "FROM", + "AIRPORTS", + "AS", + "T1", + "JOIN", + "FLIGHTS", + "AS", + "T2", + "ON", + "T1.AirportCode", + "=", + "T2.DestAirport", + "GROUP", + "BY", + "T1.City", + "ORDER", + "BY", + "count", + "(", + "*", + ")", + "DESC", + "LIMIT", + "1" + ], + "query_toks_no_value": [ + "select", + "t1", + ".", + "city", + "from", + "airports", + "as", + "t1", + "join", + "flights", + "as", + "t2", + "on", + "t1", + ".", + "airportcode", + "=", + "t2", + ".", + "destairport", + "group", + "by", + "t1", + ".", + "city", + "order", + "by", + "count", + "(", + "*", + ")", + "desc", + "limit", + "value" + ], + "question": "Which city has most number of arriving flights?", + "question_toks": [ + "Which", + "city", + "has", + "most", + "number", + "of", + "arriving", + "flights", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ], + [ + "table_unit", + 2 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 6, + false + ], + null + ], + [ + 0, + 13, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 5, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 5, + false + ] + ], + "having": [], + "orderBy": [ + "desc", + [ + [ + 0, + [ + 3, + 0, + false + ], + null + ] + ] + ], + "limit": 1, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "flight_2", + "query": "SELECT T1.City FROM AIRPORTS AS T1 JOIN FLIGHTS AS T2 ON T1.AirportCode = T2.DestAirport GROUP BY T1.City ORDER BY count(*) DESC LIMIT 1", + "query_toks": [ + "SELECT", + "T1.City", + "FROM", + "AIRPORTS", + "AS", + "T1", + "JOIN", + "FLIGHTS", + "AS", + "T2", + "ON", + "T1.AirportCode", + "=", + "T2.DestAirport", + "GROUP", + "BY", + "T1.City", + "ORDER", + "BY", + "count", + "(", + "*", + ")", + "DESC", + "LIMIT", + "1" + ], + "query_toks_no_value": [ + "select", + "t1", + ".", + "city", + "from", + "airports", + "as", + "t1", + "join", + "flights", + "as", + "t2", + "on", + "t1", + ".", + "airportcode", + "=", + "t2", + ".", + "destairport", + "group", + "by", + "t1", + ".", + "city", + "order", + "by", + "count", + "(", + "*", + ")", + "desc", + "limit", + "value" + ], + "question": "Which city has the most frequent destination airport?", + "question_toks": [ + "Which", + "city", + "has", + "the", + "most", + "frequent", + "destination", + "airport", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ], + [ + "table_unit", + 2 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 6, + false + ], + null + ], + [ + 0, + 13, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 5, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 5, + false + ] + ], + "having": [], + "orderBy": [ + "desc", + [ + [ + 0, + [ + 3, + 0, + false + ], + null + ] + ] + ], + "limit": 1, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "flight_2", + "query": "SELECT T1.City FROM AIRPORTS AS T1 JOIN FLIGHTS AS T2 ON T1.AirportCode = T2.SourceAirport GROUP BY T1.City ORDER BY count(*) DESC LIMIT 1", + "query_toks": [ + "SELECT", + "T1.City", + "FROM", + "AIRPORTS", + "AS", + "T1", + "JOIN", + "FLIGHTS", + "AS", + "T2", + "ON", + "T1.AirportCode", + "=", + "T2.SourceAirport", + "GROUP", + "BY", + "T1.City", + "ORDER", + "BY", + "count", + "(", + "*", + ")", + "DESC", + "LIMIT", + "1" + ], + "query_toks_no_value": [ + "select", + "t1", + ".", + "city", + "from", + "airports", + "as", + "t1", + "join", + "flights", + "as", + "t2", + "on", + "t1", + ".", + "airportcode", + "=", + "t2", + ".", + "sourceairport", + "group", + "by", + "t1", + ".", + "city", + "order", + "by", + "count", + "(", + "*", + ")", + "desc", + "limit", + "value" + ], + "question": "Which city has most number of departing flights?", + "question_toks": [ + "Which", + "city", + "has", + "most", + "number", + "of", + "departing", + "flights", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ], + [ + "table_unit", + 2 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 6, + false + ], + null + ], + [ + 0, + 12, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 5, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 5, + false + ] + ], + "having": [], + "orderBy": [ + "desc", + [ + [ + 0, + [ + 3, + 0, + false + ], + null + ] + ] + ], + "limit": 1, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "flight_2", + "query": "SELECT T1.City FROM AIRPORTS AS T1 JOIN FLIGHTS AS T2 ON T1.AirportCode = T2.SourceAirport GROUP BY T1.City ORDER BY count(*) DESC LIMIT 1", + "query_toks": [ + "SELECT", + "T1.City", + "FROM", + "AIRPORTS", + "AS", + "T1", + "JOIN", + "FLIGHTS", + "AS", + "T2", + "ON", + "T1.AirportCode", + "=", + "T2.SourceAirport", + "GROUP", + "BY", + "T1.City", + "ORDER", + "BY", + "count", + "(", + "*", + ")", + "DESC", + "LIMIT", + "1" + ], + "query_toks_no_value": [ + "select", + "t1", + ".", + "city", + "from", + "airports", + "as", + "t1", + "join", + "flights", + "as", + "t2", + "on", + "t1", + ".", + "airportcode", + "=", + "t2", + ".", + "sourceairport", + "group", + "by", + "t1", + ".", + "city", + "order", + "by", + "count", + "(", + "*", + ")", + "desc", + "limit", + "value" + ], + "question": "Which city is the most frequent source airport?", + "question_toks": [ + "Which", + "city", + "is", + "the", + "most", + "frequent", + "source", + "airport", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ], + [ + "table_unit", + 2 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 6, + false + ], + null + ], + [ + 0, + 12, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 5, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 5, + false + ] + ], + "having": [], + "orderBy": [ + "desc", + [ + [ + 0, + [ + 3, + 0, + false + ], + null + ] + ] + ], + "limit": 1, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "flight_2", + "query": "SELECT T1.AirportCode FROM AIRPORTS AS T1 JOIN FLIGHTS AS T2 ON T1.AirportCode = T2.DestAirport OR T1.AirportCode = T2.SourceAirport GROUP BY T1.AirportCode ORDER BY count(*) DESC LIMIT 1", + "query_toks": [ + "SELECT", + "T1.AirportCode", + "FROM", + "AIRPORTS", + "AS", + "T1", + "JOIN", + "FLIGHTS", + "AS", + "T2", + "ON", + "T1.AirportCode", + "=", + "T2.DestAirport", + "OR", + "T1.AirportCode", + "=", + "T2.SourceAirport", + "GROUP", + "BY", + "T1.AirportCode", + "ORDER", + "BY", + "count", + "(", + "*", + ")", + "DESC", + "LIMIT", + "1" + ], + "query_toks_no_value": [ + "select", + "t1", + ".", + "airportcode", + "from", + "airports", + "as", + "t1", + "join", + "flights", + "as", + "t2", + "on", + "t1", + ".", + "airportcode", + "=", + "t2", + ".", + "destairport", + "or", + "t1", + ".", + "airportcode", + "=", + "t2", + ".", + "sourceairport", + "group", + "by", + "t1", + ".", + "airportcode", + "order", + "by", + "count", + "(", + "*", + ")", + "desc", + "limit", + "value" + ], + "question": "What is the code of airport that has the highest number of flights?", + "question_toks": [ + "What", + "is", + "the", + "code", + "of", + "airport", + "that", + "has", + "the", + "highest", + "number", + "of", + "flights", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ], + [ + "table_unit", + 2 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 6, + false + ], + null + ], + [ + 0, + 13, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 6, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 6, + false + ] + ], + "having": [], + "orderBy": [ + "desc", + [ + [ + 0, + [ + 3, + 0, + false + ], + null + ] + ] + ], + "limit": 1, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "flight_2", + "query": "SELECT T1.AirportCode FROM AIRPORTS AS T1 JOIN FLIGHTS AS T2 ON T1.AirportCode = T2.DestAirport OR T1.AirportCode = T2.SourceAirport GROUP BY T1.AirportCode ORDER BY count(*) DESC LIMIT 1", + "query_toks": [ + "SELECT", + "T1.AirportCode", + "FROM", + "AIRPORTS", + "AS", + "T1", + "JOIN", + "FLIGHTS", + "AS", + "T2", + "ON", + "T1.AirportCode", + "=", + "T2.DestAirport", + "OR", + "T1.AirportCode", + "=", + "T2.SourceAirport", + "GROUP", + "BY", + "T1.AirportCode", + "ORDER", + "BY", + "count", + "(", + "*", + ")", + "DESC", + "LIMIT", + "1" + ], + "query_toks_no_value": [ + "select", + "t1", + ".", + "airportcode", + "from", + "airports", + "as", + "t1", + "join", + "flights", + "as", + "t2", + "on", + "t1", + ".", + "airportcode", + "=", + "t2", + ".", + "destairport", + "or", + "t1", + ".", + "airportcode", + "=", + "t2", + ".", + "sourceairport", + "group", + "by", + "t1", + ".", + "airportcode", + "order", + "by", + "count", + "(", + "*", + ")", + "desc", + "limit", + "value" + ], + "question": "What is the airport code of the airport with the most flights?", + "question_toks": [ + "What", + "is", + "the", + "airport", + "code", + "of", + "the", + "airport", + "with", + "the", + "most", + "flights", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ], + [ + "table_unit", + 2 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 6, + false + ], + null + ], + [ + 0, + 13, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 6, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 6, + false + ] + ], + "having": [], + "orderBy": [ + "desc", + [ + [ + 0, + [ + 3, + 0, + false + ], + null + ] + ] + ], + "limit": 1, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "flight_2", + "query": "SELECT T1.AirportCode FROM AIRPORTS AS T1 JOIN FLIGHTS AS T2 ON T1.AirportCode = T2.DestAirport OR T1.AirportCode = T2.SourceAirport GROUP BY T1.AirportCode ORDER BY count(*) LIMIT 1", + "query_toks": [ + "SELECT", + "T1.AirportCode", + "FROM", + "AIRPORTS", + "AS", + "T1", + "JOIN", + "FLIGHTS", + "AS", + "T2", + "ON", + "T1.AirportCode", + "=", + "T2.DestAirport", + "OR", + "T1.AirportCode", + "=", + "T2.SourceAirport", + "GROUP", + "BY", + "T1.AirportCode", + "ORDER", + "BY", + "count", + "(", + "*", + ")", + "LIMIT", + "1" + ], + "query_toks_no_value": [ + "select", + "t1", + ".", + "airportcode", + "from", + "airports", + "as", + "t1", + "join", + "flights", + "as", + "t2", + "on", + "t1", + ".", + "airportcode", + "=", + "t2", + ".", + "destairport", + "or", + "t1", + ".", + "airportcode", + "=", + "t2", + ".", + "sourceairport", + "group", + "by", + "t1", + ".", + "airportcode", + "order", + "by", + "count", + "(", + "*", + ")", + "limit", + "value" + ], + "question": "What is the code of airport that has fewest number of flights?", + "question_toks": [ + "What", + "is", + "the", + "code", + "of", + "airport", + "that", + "has", + "fewest", + "number", + "of", + "flights", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ], + [ + "table_unit", + 2 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 6, + false + ], + null + ], + [ + 0, + 13, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 6, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 6, + false + ] + ], + "having": [], + "orderBy": [ + "asc", + [ + [ + 0, + [ + 3, + 0, + false + ], + null + ] + ] + ], + "limit": 1, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "flight_2", + "query": "SELECT T1.AirportCode FROM AIRPORTS AS T1 JOIN FLIGHTS AS T2 ON T1.AirportCode = T2.DestAirport OR T1.AirportCode = T2.SourceAirport GROUP BY T1.AirportCode ORDER BY count(*) LIMIT 1", + "query_toks": [ + "SELECT", + "T1.AirportCode", + "FROM", + "AIRPORTS", + "AS", + "T1", + "JOIN", + "FLIGHTS", + "AS", + "T2", + "ON", + "T1.AirportCode", + "=", + "T2.DestAirport", + "OR", + "T1.AirportCode", + "=", + "T2.SourceAirport", + "GROUP", + "BY", + "T1.AirportCode", + "ORDER", + "BY", + "count", + "(", + "*", + ")", + "LIMIT", + "1" + ], + "query_toks_no_value": [ + "select", + "t1", + ".", + "airportcode", + "from", + "airports", + "as", + "t1", + "join", + "flights", + "as", + "t2", + "on", + "t1", + ".", + "airportcode", + "=", + "t2", + ".", + "destairport", + "or", + "t1", + ".", + "airportcode", + "=", + "t2", + ".", + "sourceairport", + "group", + "by", + "t1", + ".", + "airportcode", + "order", + "by", + "count", + "(", + "*", + ")", + "limit", + "value" + ], + "question": "Give the code of the airport with the least flights.", + "question_toks": [ + "Give", + "the", + "code", + "of", + "the", + "airport", + "with", + "the", + "least", + "flights", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ], + [ + "table_unit", + 2 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 6, + false + ], + null + ], + [ + 0, + 13, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 6, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 6, + false + ] + ], + "having": [], + "orderBy": [ + "asc", + [ + [ + 0, + [ + 3, + 0, + false + ], + null + ] + ] + ], + "limit": 1, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "flight_2", + "query": "SELECT T1.Airline FROM AIRLINES AS T1 JOIN FLIGHTS AS T2 ON T1.uid = T2.Airline GROUP BY T1.Airline ORDER BY count(*) DESC LIMIT 1", + "query_toks": [ + "SELECT", + "T1.Airline", + "FROM", + "AIRLINES", + "AS", + "T1", + "JOIN", + "FLIGHTS", + "AS", + "T2", + "ON", + "T1.uid", + "=", + "T2.Airline", + "GROUP", + "BY", + "T1.Airline", + "ORDER", + "BY", + "count", + "(", + "*", + ")", + "DESC", + "LIMIT", + "1" + ], + "query_toks_no_value": [ + "select", + "t1", + ".", + "airline", + "from", + "airlines", + "as", + "t1", + "join", + "flights", + "as", + "t2", + "on", + "t1", + ".", + "uid", + "=", + "t2", + ".", + "airline", + "group", + "by", + "t1", + ".", + "airline", + "order", + "by", + "count", + "(", + "*", + ")", + "desc", + "limit", + "value" + ], + "question": "Which airline has most number of flights?", + "question_toks": [ + "Which", + "airline", + "has", + "most", + "number", + "of", + "flights", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ], + [ + "table_unit", + 2 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 1, + false + ], + null + ], + [ + 0, + 10, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 2, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 2, + false + ] + ], + "having": [], + "orderBy": [ + "desc", + [ + [ + 0, + [ + 3, + 0, + false + ], + null + ] + ] + ], + "limit": 1, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "flight_2", + "query": "SELECT T1.Airline FROM AIRLINES AS T1 JOIN FLIGHTS AS T2 ON T1.uid = T2.Airline GROUP BY T1.Airline ORDER BY count(*) DESC LIMIT 1", + "query_toks": [ + "SELECT", + "T1.Airline", + "FROM", + "AIRLINES", + "AS", + "T1", + "JOIN", + "FLIGHTS", + "AS", + "T2", + "ON", + "T1.uid", + "=", + "T2.Airline", + "GROUP", + "BY", + "T1.Airline", + "ORDER", + "BY", + "count", + "(", + "*", + ")", + "DESC", + "LIMIT", + "1" + ], + "query_toks_no_value": [ + "select", + "t1", + ".", + "airline", + "from", + "airlines", + "as", + "t1", + "join", + "flights", + "as", + "t2", + "on", + "t1", + ".", + "uid", + "=", + "t2", + ".", + "airline", + "group", + "by", + "t1", + ".", + "airline", + "order", + "by", + "count", + "(", + "*", + ")", + "desc", + "limit", + "value" + ], + "question": "What airline serves the most flights?", + "question_toks": [ + "What", + "airline", + "serves", + "the", + "most", + "flights", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ], + [ + "table_unit", + 2 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 1, + false + ], + null + ], + [ + 0, + 10, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 2, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 2, + false + ] + ], + "having": [], + "orderBy": [ + "desc", + [ + [ + 0, + [ + 3, + 0, + false + ], + null + ] + ] + ], + "limit": 1, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "flight_2", + "query": "SELECT T1.Abbreviation , T1.Country FROM AIRLINES AS T1 JOIN FLIGHTS AS T2 ON T1.uid = T2.Airline GROUP BY T1.Airline ORDER BY count(*) LIMIT 1", + "query_toks": [ + "SELECT", + "T1.Abbreviation", + ",", + "T1.Country", + "FROM", + "AIRLINES", + "AS", + "T1", + "JOIN", + "FLIGHTS", + "AS", + "T2", + "ON", + "T1.uid", + "=", + "T2.Airline", + "GROUP", + "BY", + "T1.Airline", + "ORDER", + "BY", + "count", + "(", + "*", + ")", + "LIMIT", + "1" + ], + "query_toks_no_value": [ + "select", + "t1", + ".", + "abbreviation", + ",", + "t1", + ".", + "country", + "from", + "airlines", + "as", + "t1", + "join", + "flights", + "as", + "t2", + "on", + "t1", + ".", + "uid", + "=", + "t2", + ".", + "airline", + "group", + "by", + "t1", + ".", + "airline", + "order", + "by", + "count", + "(", + "*", + ")", + "limit", + "value" + ], + "question": "Find the abbreviation and country of the airline that has fewest number of flights?", + "question_toks": [ + "Find", + "the", + "abbreviation", + "and", + "country", + "of", + "the", + "airline", + "that", + "has", + "fewest", + "number", + "of", + "flights", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ], + [ + "table_unit", + 2 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 1, + false + ], + null + ], + [ + 0, + 10, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 3, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 4, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 2, + false + ] + ], + "having": [], + "orderBy": [ + "asc", + [ + [ + 0, + [ + 3, + 0, + false + ], + null + ] + ] + ], + "limit": 1, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "flight_2", + "query": "SELECT T1.Abbreviation , T1.Country FROM AIRLINES AS T1 JOIN FLIGHTS AS T2 ON T1.uid = T2.Airline GROUP BY T1.Airline ORDER BY count(*) LIMIT 1", + "query_toks": [ + "SELECT", + "T1.Abbreviation", + ",", + "T1.Country", + "FROM", + "AIRLINES", + "AS", + "T1", + "JOIN", + "FLIGHTS", + "AS", + "T2", + "ON", + "T1.uid", + "=", + "T2.Airline", + "GROUP", + "BY", + "T1.Airline", + "ORDER", + "BY", + "count", + "(", + "*", + ")", + "LIMIT", + "1" + ], + "query_toks_no_value": [ + "select", + "t1", + ".", + "abbreviation", + ",", + "t1", + ".", + "country", + "from", + "airlines", + "as", + "t1", + "join", + "flights", + "as", + "t2", + "on", + "t1", + ".", + "uid", + "=", + "t2", + ".", + "airline", + "group", + "by", + "t1", + ".", + "airline", + "order", + "by", + "count", + "(", + "*", + ")", + "limit", + "value" + ], + "question": "What is the abbreviation of the airilne has the fewest flights and what country is it in?", + "question_toks": [ + "What", + "is", + "the", + "abbreviation", + "of", + "the", + "airilne", + "has", + "the", + "fewest", + "flights", + "and", + "what", + "country", + "is", + "it", + "in", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ], + [ + "table_unit", + 2 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 1, + false + ], + null + ], + [ + 0, + 10, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 3, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 4, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 2, + false + ] + ], + "having": [], + "orderBy": [ + "asc", + [ + [ + 0, + [ + 3, + 0, + false + ], + null + ] + ] + ], + "limit": 1, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "flight_2", + "query": "SELECT T1.Airline FROM AIRLINES AS T1 JOIN FLIGHTS AS T2 ON T1.uid = T2.Airline WHERE T2.SourceAirport = \"AHD\"", + "query_toks": [ + "SELECT", + "T1.Airline", + "FROM", + "AIRLINES", + "AS", + "T1", + "JOIN", + "FLIGHTS", + "AS", + "T2", + "ON", + "T1.uid", + "=", + "T2.Airline", + "WHERE", + "T2.SourceAirport", + "=", + "``", + "AHD", + "''" + ], + "query_toks_no_value": [ + "select", + "t1", + ".", + "airline", + "from", + "airlines", + "as", + "t1", + "join", + "flights", + "as", + "t2", + "on", + "t1", + ".", + "uid", + "=", + "t2", + ".", + "airline", + "where", + "t2", + ".", + "sourceairport", + "=", + "value" + ], + "question": "What are airlines that have some flight departing from airport 'AHD'?", + "question_toks": [ + "What", + "are", + "airlines", + "that", + "have", + "some", + "flight", + "departing", + "from", + "airport", + "'AHD", + "'", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ], + [ + "table_unit", + 2 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 1, + false + ], + null + ], + [ + 0, + 10, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 2, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 12, + false + ], + null + ], + "\"AHD\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "flight_2", + "query": "SELECT T1.Airline FROM AIRLINES AS T1 JOIN FLIGHTS AS T2 ON T1.uid = T2.Airline WHERE T2.SourceAirport = \"AHD\"", + "query_toks": [ + "SELECT", + "T1.Airline", + "FROM", + "AIRLINES", + "AS", + "T1", + "JOIN", + "FLIGHTS", + "AS", + "T2", + "ON", + "T1.uid", + "=", + "T2.Airline", + "WHERE", + "T2.SourceAirport", + "=", + "``", + "AHD", + "''" + ], + "query_toks_no_value": [ + "select", + "t1", + ".", + "airline", + "from", + "airlines", + "as", + "t1", + "join", + "flights", + "as", + "t2", + "on", + "t1", + ".", + "uid", + "=", + "t2", + ".", + "airline", + "where", + "t2", + ".", + "sourceairport", + "=", + "value" + ], + "question": "Which airlines have a flight with source airport AHD?", + "question_toks": [ + "Which", + "airlines", + "have", + "a", + "flight", + "with", + "source", + "airport", + "AHD", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ], + [ + "table_unit", + 2 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 1, + false + ], + null + ], + [ + 0, + 10, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 2, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 12, + false + ], + null + ], + "\"AHD\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "flight_2", + "query": "SELECT T1.Airline FROM AIRLINES AS T1 JOIN FLIGHTS AS T2 ON T1.uid = T2.Airline WHERE T2.DestAirport = \"AHD\"", + "query_toks": [ + "SELECT", + "T1.Airline", + "FROM", + "AIRLINES", + "AS", + "T1", + "JOIN", + "FLIGHTS", + "AS", + "T2", + "ON", + "T1.uid", + "=", + "T2.Airline", + "WHERE", + "T2.DestAirport", + "=", + "``", + "AHD", + "''" + ], + "query_toks_no_value": [ + "select", + "t1", + ".", + "airline", + "from", + "airlines", + "as", + "t1", + "join", + "flights", + "as", + "t2", + "on", + "t1", + ".", + "uid", + "=", + "t2", + ".", + "airline", + "where", + "t2", + ".", + "destairport", + "=", + "value" + ], + "question": "What are airlines that have flights arriving at airport 'AHD'?", + "question_toks": [ + "What", + "are", + "airlines", + "that", + "have", + "flights", + "arriving", + "at", + "airport", + "'AHD", + "'", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ], + [ + "table_unit", + 2 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 1, + false + ], + null + ], + [ + 0, + 10, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 2, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 13, + false + ], + null + ], + "\"AHD\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "flight_2", + "query": "SELECT T1.Airline FROM AIRLINES AS T1 JOIN FLIGHTS AS T2 ON T1.uid = T2.Airline WHERE T2.DestAirport = \"AHD\"", + "query_toks": [ + "SELECT", + "T1.Airline", + "FROM", + "AIRLINES", + "AS", + "T1", + "JOIN", + "FLIGHTS", + "AS", + "T2", + "ON", + "T1.uid", + "=", + "T2.Airline", + "WHERE", + "T2.DestAirport", + "=", + "``", + "AHD", + "''" + ], + "query_toks_no_value": [ + "select", + "t1", + ".", + "airline", + "from", + "airlines", + "as", + "t1", + "join", + "flights", + "as", + "t2", + "on", + "t1", + ".", + "uid", + "=", + "t2", + ".", + "airline", + "where", + "t2", + ".", + "destairport", + "=", + "value" + ], + "question": "Which airlines have a flight with destination airport AHD?", + "question_toks": [ + "Which", + "airlines", + "have", + "a", + "flight", + "with", + "destination", + "airport", + "AHD", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ], + [ + "table_unit", + 2 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 1, + false + ], + null + ], + [ + 0, + 10, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 2, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 13, + false + ], + null + ], + "\"AHD\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "flight_2", + "query": "SELECT T1.Airline FROM AIRLINES AS T1 JOIN FLIGHTS AS T2 ON T1.uid = T2.Airline WHERE T2.SourceAirport = \"APG\" INTERSECT SELECT T1.Airline FROM AIRLINES AS T1 JOIN FLIGHTS AS T2 ON T1.uid = T2.Airline WHERE T2.SourceAirport = \"CVO\"", + "query_toks": [ + "SELECT", + "T1.Airline", + "FROM", + "AIRLINES", + "AS", + "T1", + "JOIN", + "FLIGHTS", + "AS", + "T2", + "ON", + "T1.uid", + "=", + "T2.Airline", + "WHERE", + "T2.SourceAirport", + "=", + "``", + "APG", + "''", + "INTERSECT", + "SELECT", + "T1.Airline", + "FROM", + "AIRLINES", + "AS", + "T1", + "JOIN", + "FLIGHTS", + "AS", + "T2", + "ON", + "T1.uid", + "=", + "T2.Airline", + "WHERE", + "T2.SourceAirport", + "=", + "``", + "CVO", + "''" + ], + "query_toks_no_value": [ + "select", + "t1", + ".", + "airline", + "from", + "airlines", + "as", + "t1", + "join", + "flights", + "as", + "t2", + "on", + "t1", + ".", + "uid", + "=", + "t2", + ".", + "airline", + "where", + "t2", + ".", + "sourceairport", + "=", + "value", + "intersect", + "select", + "t1", + ".", + "airline", + "from", + "airlines", + "as", + "t1", + "join", + "flights", + "as", + "t2", + "on", + "t1", + ".", + "uid", + "=", + "t2", + ".", + "airline", + "where", + "t2", + ".", + "sourceairport", + "=", + "value" + ], + "question": "Find all airlines that have flights from both airports 'APG' and 'CVO'.", + "question_toks": [ + "Find", + "all", + "airlines", + "that", + "have", + "flights", + "from", + "both", + "airports", + "'APG", + "'", + "and", + "'CVO", + "'", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ], + [ + "table_unit", + 2 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 1, + false + ], + null + ], + [ + 0, + 10, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 2, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 12, + false + ], + null + ], + "\"APG\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ], + [ + "table_unit", + 2 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 1, + false + ], + null + ], + [ + 0, + 10, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 2, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 12, + false + ], + null + ], + "\"CVO\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + }, + "union": null, + "except": null + } + }, + { + "db_id": "flight_2", + "query": "SELECT T1.Airline FROM AIRLINES AS T1 JOIN FLIGHTS AS T2 ON T1.uid = T2.Airline WHERE T2.SourceAirport = \"APG\" INTERSECT SELECT T1.Airline FROM AIRLINES AS T1 JOIN FLIGHTS AS T2 ON T1.uid = T2.Airline WHERE T2.SourceAirport = \"CVO\"", + "query_toks": [ + "SELECT", + "T1.Airline", + "FROM", + "AIRLINES", + "AS", + "T1", + "JOIN", + "FLIGHTS", + "AS", + "T2", + "ON", + "T1.uid", + "=", + "T2.Airline", + "WHERE", + "T2.SourceAirport", + "=", + "``", + "APG", + "''", + "INTERSECT", + "SELECT", + "T1.Airline", + "FROM", + "AIRLINES", + "AS", + "T1", + "JOIN", + "FLIGHTS", + "AS", + "T2", + "ON", + "T1.uid", + "=", + "T2.Airline", + "WHERE", + "T2.SourceAirport", + "=", + "``", + "CVO", + "''" + ], + "query_toks_no_value": [ + "select", + "t1", + ".", + "airline", + "from", + "airlines", + "as", + "t1", + "join", + "flights", + "as", + "t2", + "on", + "t1", + ".", + "uid", + "=", + "t2", + ".", + "airline", + "where", + "t2", + ".", + "sourceairport", + "=", + "value", + "intersect", + "select", + "t1", + ".", + "airline", + "from", + "airlines", + "as", + "t1", + "join", + "flights", + "as", + "t2", + "on", + "t1", + ".", + "uid", + "=", + "t2", + ".", + "airline", + "where", + "t2", + ".", + "sourceairport", + "=", + "value" + ], + "question": "Which airlines have departing flights from both APG and CVO airports?", + "question_toks": [ + "Which", + "airlines", + "have", + "departing", + "flights", + "from", + "both", + "APG", + "and", + "CVO", + "airports", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ], + [ + "table_unit", + 2 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 1, + false + ], + null + ], + [ + 0, + 10, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 2, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 12, + false + ], + null + ], + "\"APG\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ], + [ + "table_unit", + 2 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 1, + false + ], + null + ], + [ + 0, + 10, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 2, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 12, + false + ], + null + ], + "\"CVO\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + }, + "union": null, + "except": null + } + }, + { + "db_id": "flight_2", + "query": "SELECT T1.Airline FROM AIRLINES AS T1 JOIN FLIGHTS AS T2 ON T1.uid = T2.Airline WHERE T2.SourceAirport = \"CVO\" EXCEPT SELECT T1.Airline FROM AIRLINES AS T1 JOIN FLIGHTS AS T2 ON T1.uid = T2.Airline WHERE T2.SourceAirport = \"APG\"", + "query_toks": [ + "SELECT", + "T1.Airline", + "FROM", + "AIRLINES", + "AS", + "T1", + "JOIN", + "FLIGHTS", + "AS", + "T2", + "ON", + "T1.uid", + "=", + "T2.Airline", + "WHERE", + "T2.SourceAirport", + "=", + "``", + "CVO", + "''", + "EXCEPT", + "SELECT", + "T1.Airline", + "FROM", + "AIRLINES", + "AS", + "T1", + "JOIN", + "FLIGHTS", + "AS", + "T2", + "ON", + "T1.uid", + "=", + "T2.Airline", + "WHERE", + "T2.SourceAirport", + "=", + "``", + "APG", + "''" + ], + "query_toks_no_value": [ + "select", + "t1", + ".", + "airline", + "from", + "airlines", + "as", + "t1", + "join", + "flights", + "as", + "t2", + "on", + "t1", + ".", + "uid", + "=", + "t2", + ".", + "airline", + "where", + "t2", + ".", + "sourceairport", + "=", + "value", + "except", + "select", + "t1", + ".", + "airline", + "from", + "airlines", + "as", + "t1", + "join", + "flights", + "as", + "t2", + "on", + "t1", + ".", + "uid", + "=", + "t2", + ".", + "airline", + "where", + "t2", + ".", + "sourceairport", + "=", + "value" + ], + "question": "Find all airlines that have flights from airport 'CVO' but not from 'APG'.", + "question_toks": [ + "Find", + "all", + "airlines", + "that", + "have", + "flights", + "from", + "airport", + "'CVO", + "'", + "but", + "not", + "from", + "'APG", + "'", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ], + [ + "table_unit", + 2 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 1, + false + ], + null + ], + [ + 0, + 10, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 2, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 12, + false + ], + null + ], + "\"CVO\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ], + [ + "table_unit", + 2 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 1, + false + ], + null + ], + [ + 0, + 10, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 2, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 12, + false + ], + null + ], + "\"APG\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + } + }, + { + "db_id": "flight_2", + "query": "SELECT T1.Airline FROM AIRLINES AS T1 JOIN FLIGHTS AS T2 ON T1.uid = T2.Airline WHERE T2.SourceAirport = \"CVO\" EXCEPT SELECT T1.Airline FROM AIRLINES AS T1 JOIN FLIGHTS AS T2 ON T1.uid = T2.Airline WHERE T2.SourceAirport = \"APG\"", + "query_toks": [ + "SELECT", + "T1.Airline", + "FROM", + "AIRLINES", + "AS", + "T1", + "JOIN", + "FLIGHTS", + "AS", + "T2", + "ON", + "T1.uid", + "=", + "T2.Airline", + "WHERE", + "T2.SourceAirport", + "=", + "``", + "CVO", + "''", + "EXCEPT", + "SELECT", + "T1.Airline", + "FROM", + "AIRLINES", + "AS", + "T1", + "JOIN", + "FLIGHTS", + "AS", + "T2", + "ON", + "T1.uid", + "=", + "T2.Airline", + "WHERE", + "T2.SourceAirport", + "=", + "``", + "APG", + "''" + ], + "query_toks_no_value": [ + "select", + "t1", + ".", + "airline", + "from", + "airlines", + "as", + "t1", + "join", + "flights", + "as", + "t2", + "on", + "t1", + ".", + "uid", + "=", + "t2", + ".", + "airline", + "where", + "t2", + ".", + "sourceairport", + "=", + "value", + "except", + "select", + "t1", + ".", + "airline", + "from", + "airlines", + "as", + "t1", + "join", + "flights", + "as", + "t2", + "on", + "t1", + ".", + "uid", + "=", + "t2", + ".", + "airline", + "where", + "t2", + ".", + "sourceairport", + "=", + "value" + ], + "question": "Which airlines have departures from CVO but not from APG airports?", + "question_toks": [ + "Which", + "airlines", + "have", + "departures", + "from", + "CVO", + "but", + "not", + "from", + "APG", + "airports", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ], + [ + "table_unit", + 2 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 1, + false + ], + null + ], + [ + 0, + 10, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 2, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 12, + false + ], + null + ], + "\"CVO\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ], + [ + "table_unit", + 2 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 1, + false + ], + null + ], + [ + 0, + 10, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 2, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 12, + false + ], + null + ], + "\"APG\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + } + }, + { + "db_id": "flight_2", + "query": "SELECT T1.Airline FROM AIRLINES AS T1 JOIN FLIGHTS AS T2 ON T1.uid = T2.Airline GROUP BY T1.Airline HAVING count(*) > 10", + "query_toks": [ + "SELECT", + "T1.Airline", + "FROM", + "AIRLINES", + "AS", + "T1", + "JOIN", + "FLIGHTS", + "AS", + "T2", + "ON", + "T1.uid", + "=", + "T2.Airline", + "GROUP", + "BY", + "T1.Airline", + "HAVING", + "count", + "(", + "*", + ")", + ">", + "10" + ], + "query_toks_no_value": [ + "select", + "t1", + ".", + "airline", + "from", + "airlines", + "as", + "t1", + "join", + "flights", + "as", + "t2", + "on", + "t1", + ".", + "uid", + "=", + "t2", + ".", + "airline", + "group", + "by", + "t1", + ".", + "airline", + "having", + "count", + "(", + "*", + ")", + ">", + "value" + ], + "question": "Find all airlines that have at least 10 flights.", + "question_toks": [ + "Find", + "all", + "airlines", + "that", + "have", + "at", + "least", + "10", + "flights", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ], + [ + "table_unit", + 2 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 1, + false + ], + null + ], + [ + 0, + 10, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 2, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 2, + false + ] + ], + "having": [ + [ + false, + 3, + [ + 0, + [ + 3, + 0, + false + ], + null + ], + 10.0, + null + ] + ], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "flight_2", + "query": "SELECT T1.Airline FROM AIRLINES AS T1 JOIN FLIGHTS AS T2 ON T1.uid = T2.Airline GROUP BY T1.Airline HAVING count(*) > 10", + "query_toks": [ + "SELECT", + "T1.Airline", + "FROM", + "AIRLINES", + "AS", + "T1", + "JOIN", + "FLIGHTS", + "AS", + "T2", + "ON", + "T1.uid", + "=", + "T2.Airline", + "GROUP", + "BY", + "T1.Airline", + "HAVING", + "count", + "(", + "*", + ")", + ">", + "10" + ], + "query_toks_no_value": [ + "select", + "t1", + ".", + "airline", + "from", + "airlines", + "as", + "t1", + "join", + "flights", + "as", + "t2", + "on", + "t1", + ".", + "uid", + "=", + "t2", + ".", + "airline", + "group", + "by", + "t1", + ".", + "airline", + "having", + "count", + "(", + "*", + ")", + ">", + "value" + ], + "question": "Which airlines have at least 10 flights?", + "question_toks": [ + "Which", + "airlines", + "have", + "at", + "least", + "10", + "flights", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ], + [ + "table_unit", + 2 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 1, + false + ], + null + ], + [ + 0, + 10, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 2, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 2, + false + ] + ], + "having": [ + [ + false, + 3, + [ + 0, + [ + 3, + 0, + false + ], + null + ], + 10.0, + null + ] + ], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "flight_2", + "query": "SELECT T1.Airline FROM AIRLINES AS T1 JOIN FLIGHTS AS T2 ON T1.uid = T2.Airline GROUP BY T1.Airline HAVING count(*) < 200", + "query_toks": [ + "SELECT", + "T1.Airline", + "FROM", + "AIRLINES", + "AS", + "T1", + "JOIN", + "FLIGHTS", + "AS", + "T2", + "ON", + "T1.uid", + "=", + "T2.Airline", + "GROUP", + "BY", + "T1.Airline", + "HAVING", + "count", + "(", + "*", + ")", + "<", + "200" + ], + "query_toks_no_value": [ + "select", + "t1", + ".", + "airline", + "from", + "airlines", + "as", + "t1", + "join", + "flights", + "as", + "t2", + "on", + "t1", + ".", + "uid", + "=", + "t2", + ".", + "airline", + "group", + "by", + "t1", + ".", + "airline", + "having", + "count", + "(", + "*", + ")", + "<", + "value" + ], + "question": "Find all airlines that have fewer than 200 flights.", + "question_toks": [ + "Find", + "all", + "airlines", + "that", + "have", + "fewer", + "than", + "200", + "flights", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ], + [ + "table_unit", + 2 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 1, + false + ], + null + ], + [ + 0, + 10, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 2, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 2, + false + ] + ], + "having": [ + [ + false, + 4, + [ + 0, + [ + 3, + 0, + false + ], + null + ], + 200.0, + null + ] + ], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "flight_2", + "query": "SELECT T1.Airline FROM AIRLINES AS T1 JOIN FLIGHTS AS T2 ON T1.uid = T2.Airline GROUP BY T1.Airline HAVING count(*) < 200", + "query_toks": [ + "SELECT", + "T1.Airline", + "FROM", + "AIRLINES", + "AS", + "T1", + "JOIN", + "FLIGHTS", + "AS", + "T2", + "ON", + "T1.uid", + "=", + "T2.Airline", + "GROUP", + "BY", + "T1.Airline", + "HAVING", + "count", + "(", + "*", + ")", + "<", + "200" + ], + "query_toks_no_value": [ + "select", + "t1", + ".", + "airline", + "from", + "airlines", + "as", + "t1", + "join", + "flights", + "as", + "t2", + "on", + "t1", + ".", + "uid", + "=", + "t2", + ".", + "airline", + "group", + "by", + "t1", + ".", + "airline", + "having", + "count", + "(", + "*", + ")", + "<", + "value" + ], + "question": "Which airlines have less than 200 flights?", + "question_toks": [ + "Which", + "airlines", + "have", + "less", + "than", + "200", + "flights", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ], + [ + "table_unit", + 2 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 1, + false + ], + null + ], + [ + 0, + 10, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 2, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 2, + false + ] + ], + "having": [ + [ + false, + 4, + [ + 0, + [ + 3, + 0, + false + ], + null + ], + 200.0, + null + ] + ], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "flight_2", + "query": "SELECT T1.FlightNo FROM FLIGHTS AS T1 JOIN AIRLINES AS T2 ON T2.uid = T1.Airline WHERE T2.Airline = \"United Airlines\"", + "query_toks": [ + "SELECT", + "T1.FlightNo", + "FROM", + "FLIGHTS", + "AS", + "T1", + "JOIN", + "AIRLINES", + "AS", + "T2", + "ON", + "T2.uid", + "=", + "T1.Airline", + "WHERE", + "T2.Airline", + "=", + "``", + "United", + "Airlines", + "''" + ], + "query_toks_no_value": [ + "select", + "t1", + ".", + "flightno", + "from", + "flights", + "as", + "t1", + "join", + "airlines", + "as", + "t2", + "on", + "t2", + ".", + "uid", + "=", + "t1", + ".", + "airline", + "where", + "t2", + ".", + "airline", + "=", + "value" + ], + "question": "What are flight numbers of Airline \"United Airlines\"?", + "question_toks": [ + "What", + "are", + "flight", + "numbers", + "of", + "Airline", + "``", + "United", + "Airlines", + "''", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ], + [ + "table_unit", + 0 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 1, + false + ], + null + ], + [ + 0, + 10, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 11, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 2, + false + ], + null + ], + "\"United Airlines\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "flight_2", + "query": "SELECT T1.FlightNo FROM FLIGHTS AS T1 JOIN AIRLINES AS T2 ON T2.uid = T1.Airline WHERE T2.Airline = \"United Airlines\"", + "query_toks": [ + "SELECT", + "T1.FlightNo", + "FROM", + "FLIGHTS", + "AS", + "T1", + "JOIN", + "AIRLINES", + "AS", + "T2", + "ON", + "T2.uid", + "=", + "T1.Airline", + "WHERE", + "T2.Airline", + "=", + "``", + "United", + "Airlines", + "''" + ], + "query_toks_no_value": [ + "select", + "t1", + ".", + "flightno", + "from", + "flights", + "as", + "t1", + "join", + "airlines", + "as", + "t2", + "on", + "t2", + ".", + "uid", + "=", + "t1", + ".", + "airline", + "where", + "t2", + ".", + "airline", + "=", + "value" + ], + "question": "Which flight numbers correspond to United Airlines flights?", + "question_toks": [ + "Which", + "flight", + "numbers", + "correspond", + "to", + "United", + "Airlines", + "flights", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ], + [ + "table_unit", + 0 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 1, + false + ], + null + ], + [ + 0, + 10, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 11, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 2, + false + ], + null + ], + "\"United Airlines\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "flight_2", + "query": "SELECT FlightNo FROM FLIGHTS WHERE SourceAirport = \"APG\"", + "query_toks": [ + "SELECT", + "FlightNo", + "FROM", + "FLIGHTS", + "WHERE", + "SourceAirport", + "=", + "``", + "APG", + "''" + ], + "query_toks_no_value": [ + "select", + "flightno", + "from", + "flights", + "where", + "sourceairport", + "=", + "value" + ], + "question": "What are flight numbers of flights departing from Airport \"APG\"?", + "question_toks": [ + "What", + "are", + "flight", + "numbers", + "of", + "flights", + "departing", + "from", + "Airport", + "``", + "APG", + "''", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 11, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 12, + false + ], + null + ], + "\"APG\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "flight_2", + "query": "SELECT FlightNo FROM FLIGHTS WHERE SourceAirport = \"APG\"", + "query_toks": [ + "SELECT", + "FlightNo", + "FROM", + "FLIGHTS", + "WHERE", + "SourceAirport", + "=", + "``", + "APG", + "''" + ], + "query_toks_no_value": [ + "select", + "flightno", + "from", + "flights", + "where", + "sourceairport", + "=", + "value" + ], + "question": "Give the flight numbers of flights leaving from APG.", + "question_toks": [ + "Give", + "the", + "flight", + "numbers", + "of", + "flights", + "leaving", + "from", + "APG", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 11, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 12, + false + ], + null + ], + "\"APG\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "flight_2", + "query": "SELECT FlightNo FROM FLIGHTS WHERE DestAirport = \"APG\"", + "query_toks": [ + "SELECT", + "FlightNo", + "FROM", + "FLIGHTS", + "WHERE", + "DestAirport", + "=", + "``", + "APG", + "''" + ], + "query_toks_no_value": [ + "select", + "flightno", + "from", + "flights", + "where", + "destairport", + "=", + "value" + ], + "question": "What are flight numbers of flights arriving at Airport \"APG\"?", + "question_toks": [ + "What", + "are", + "flight", + "numbers", + "of", + "flights", + "arriving", + "at", + "Airport", + "``", + "APG", + "''", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 11, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 13, + false + ], + null + ], + "\"APG\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "flight_2", + "query": "SELECT FlightNo FROM FLIGHTS WHERE DestAirport = \"APG\"", + "query_toks": [ + "SELECT", + "FlightNo", + "FROM", + "FLIGHTS", + "WHERE", + "DestAirport", + "=", + "``", + "APG", + "''" + ], + "query_toks_no_value": [ + "select", + "flightno", + "from", + "flights", + "where", + "destairport", + "=", + "value" + ], + "question": "Give the flight numbers of flights landing at APG.", + "question_toks": [ + "Give", + "the", + "flight", + "numbers", + "of", + "flights", + "landing", + "at", + "APG", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 11, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 13, + false + ], + null + ], + "\"APG\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "flight_2", + "query": "SELECT T1.FlightNo FROM FLIGHTS AS T1 JOIN AIRPORTS AS T2 ON T1.SourceAirport = T2.AirportCode WHERE T2.City = \"Aberdeen\"", + "query_toks": [ + "SELECT", + "T1.FlightNo", + "FROM", + "FLIGHTS", + "AS", + "T1", + "JOIN", + "AIRPORTS", + "AS", + "T2", + "ON", + "T1.SourceAirport", + "=", + "T2.AirportCode", + "WHERE", + "T2.City", + "=", + "``", + "Aberdeen", + "''" + ], + "query_toks_no_value": [ + "select", + "t1", + ".", + "flightno", + "from", + "flights", + "as", + "t1", + "join", + "airports", + "as", + "t2", + "on", + "t1", + ".", + "sourceairport", + "=", + "t2", + ".", + "airportcode", + "where", + "t2", + ".", + "city", + "=", + "value" + ], + "question": "What are flight numbers of flights departing from City \"Aberdeen \"?", + "question_toks": [ + "What", + "are", + "flight", + "numbers", + "of", + "flights", + "departing", + "from", + "City", + "``", + "Aberdeen", + "``", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ], + [ + "table_unit", + 1 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 12, + false + ], + null + ], + [ + 0, + 6, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 11, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 5, + false + ], + null + ], + "\"Aberdeen\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "flight_2", + "query": "SELECT T1.FlightNo FROM FLIGHTS AS T1 JOIN AIRPORTS AS T2 ON T1.SourceAirport = T2.AirportCode WHERE T2.City = \"Aberdeen\"", + "query_toks": [ + "SELECT", + "T1.FlightNo", + "FROM", + "FLIGHTS", + "AS", + "T1", + "JOIN", + "AIRPORTS", + "AS", + "T2", + "ON", + "T1.SourceAirport", + "=", + "T2.AirportCode", + "WHERE", + "T2.City", + "=", + "``", + "Aberdeen", + "''" + ], + "query_toks_no_value": [ + "select", + "t1", + ".", + "flightno", + "from", + "flights", + "as", + "t1", + "join", + "airports", + "as", + "t2", + "on", + "t1", + ".", + "sourceairport", + "=", + "t2", + ".", + "airportcode", + "where", + "t2", + ".", + "city", + "=", + "value" + ], + "question": "Give the flight numbers of flights leaving from Aberdeen.", + "question_toks": [ + "Give", + "the", + "flight", + "numbers", + "of", + "flights", + "leaving", + "from", + "Aberdeen", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ], + [ + "table_unit", + 1 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 12, + false + ], + null + ], + [ + 0, + 6, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 11, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 5, + false + ], + null + ], + "\"Aberdeen\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "flight_2", + "query": "SELECT T1.FlightNo FROM FLIGHTS AS T1 JOIN AIRPORTS AS T2 ON T1.DestAirport = T2.AirportCode WHERE T2.City = \"Aberdeen\"", + "query_toks": [ + "SELECT", + "T1.FlightNo", + "FROM", + "FLIGHTS", + "AS", + "T1", + "JOIN", + "AIRPORTS", + "AS", + "T2", + "ON", + "T1.DestAirport", + "=", + "T2.AirportCode", + "WHERE", + "T2.City", + "=", + "``", + "Aberdeen", + "''" + ], + "query_toks_no_value": [ + "select", + "t1", + ".", + "flightno", + "from", + "flights", + "as", + "t1", + "join", + "airports", + "as", + "t2", + "on", + "t1", + ".", + "destairport", + "=", + "t2", + ".", + "airportcode", + "where", + "t2", + ".", + "city", + "=", + "value" + ], + "question": "What are flight numbers of flights arriving at City \"Aberdeen\"?", + "question_toks": [ + "What", + "are", + "flight", + "numbers", + "of", + "flights", + "arriving", + "at", + "City", + "``", + "Aberdeen", + "''", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ], + [ + "table_unit", + 1 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 13, + false + ], + null + ], + [ + 0, + 6, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 11, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 5, + false + ], + null + ], + "\"Aberdeen\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "flight_2", + "query": "SELECT T1.FlightNo FROM FLIGHTS AS T1 JOIN AIRPORTS AS T2 ON T1.DestAirport = T2.AirportCode WHERE T2.City = \"Aberdeen\"", + "query_toks": [ + "SELECT", + "T1.FlightNo", + "FROM", + "FLIGHTS", + "AS", + "T1", + "JOIN", + "AIRPORTS", + "AS", + "T2", + "ON", + "T1.DestAirport", + "=", + "T2.AirportCode", + "WHERE", + "T2.City", + "=", + "``", + "Aberdeen", + "''" + ], + "query_toks_no_value": [ + "select", + "t1", + ".", + "flightno", + "from", + "flights", + "as", + "t1", + "join", + "airports", + "as", + "t2", + "on", + "t1", + ".", + "destairport", + "=", + "t2", + ".", + "airportcode", + "where", + "t2", + ".", + "city", + "=", + "value" + ], + "question": "Give the flight numbers of flights arriving in Aberdeen.", + "question_toks": [ + "Give", + "the", + "flight", + "numbers", + "of", + "flights", + "arriving", + "in", + "Aberdeen", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ], + [ + "table_unit", + 1 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 13, + false + ], + null + ], + [ + 0, + 6, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 11, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 5, + false + ], + null + ], + "\"Aberdeen\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "flight_2", + "query": "SELECT count(*) FROM Flights AS T1 JOIN Airports AS T2 ON T1.DestAirport = T2.AirportCode WHERE T2.city = \"Aberdeen\" OR T2.city = \"Abilene\"", + "query_toks": [ + "SELECT", + "count", + "(", + "*", + ")", + "FROM", + "Flights", + "AS", + "T1", + "JOIN", + "Airports", + "AS", + "T2", + "ON", + "T1.DestAirport", + "=", + "T2.AirportCode", + "WHERE", + "T2.city", + "=", + "``", + "Aberdeen", + "''", + "OR", + "T2.city", + "=", + "``", + "Abilene", + "''" + ], + "query_toks_no_value": [ + "select", + "count", + "(", + "*", + ")", + "from", + "flights", + "as", + "t1", + "join", + "airports", + "as", + "t2", + "on", + "t1", + ".", + "destairport", + "=", + "t2", + ".", + "airportcode", + "where", + "t2", + ".", + "city", + "=", + "value", + "or", + "t2", + ".", + "city", + "=", + "value" + ], + "question": "Find the number of flights landing in the city of Aberdeen or Abilene.", + "question_toks": [ + "Find", + "the", + "number", + "of", + "flights", + "landing", + "in", + "the", + "city", + "of", + "Aberdeen", + "or", + "Abilene", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ], + [ + "table_unit", + 1 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 13, + false + ], + null + ], + [ + 0, + 6, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 3, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 5, + false + ], + null + ], + "\"Aberdeen\"", + null + ], + "or", + [ + false, + 2, + [ + 0, + [ + 0, + 5, + false + ], + null + ], + "\"Abilene\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "flight_2", + "query": "SELECT count(*) FROM Flights AS T1 JOIN Airports AS T2 ON T1.DestAirport = T2.AirportCode WHERE T2.city = \"Aberdeen\" OR T2.city = \"Abilene\"", + "query_toks": [ + "SELECT", + "count", + "(", + "*", + ")", + "FROM", + "Flights", + "AS", + "T1", + "JOIN", + "Airports", + "AS", + "T2", + "ON", + "T1.DestAirport", + "=", + "T2.AirportCode", + "WHERE", + "T2.city", + "=", + "``", + "Aberdeen", + "''", + "OR", + "T2.city", + "=", + "``", + "Abilene", + "''" + ], + "query_toks_no_value": [ + "select", + "count", + "(", + "*", + ")", + "from", + "flights", + "as", + "t1", + "join", + "airports", + "as", + "t2", + "on", + "t1", + ".", + "destairport", + "=", + "t2", + ".", + "airportcode", + "where", + "t2", + ".", + "city", + "=", + "value", + "or", + "t2", + ".", + "city", + "=", + "value" + ], + "question": "How many flights land in Aberdeen or Abilene?", + "question_toks": [ + "How", + "many", + "flights", + "land", + "in", + "Aberdeen", + "or", + "Abilene", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ], + [ + "table_unit", + 1 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 13, + false + ], + null + ], + [ + 0, + 6, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 3, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 5, + false + ], + null + ], + "\"Aberdeen\"", + null + ], + "or", + [ + false, + 2, + [ + 0, + [ + 0, + 5, + false + ], + null + ], + "\"Abilene\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "flight_2", + "query": "SELECT AirportName FROM Airports WHERE AirportCode NOT IN (SELECT SourceAirport FROM Flights UNION SELECT DestAirport FROM Flights)", + "query_toks": [ + "SELECT", + "AirportName", + "FROM", + "Airports", + "WHERE", + "AirportCode", + "NOT", + "IN", + "(", + "SELECT", + "SourceAirport", + "FROM", + "Flights", + "UNION", + "SELECT", + "DestAirport", + "FROM", + "Flights", + ")" + ], + "query_toks_no_value": [ + "select", + "airportname", + "from", + "airports", + "where", + "airportcode", + "not", + "in", + "(", + "select", + "sourceairport", + "from", + "flights", + "union", + "select", + "destairport", + "from", + "flights", + ")" + ], + "question": "Find the name of airports which do not have any flight in and out.", + "question_toks": [ + "Find", + "the", + "name", + "of", + "airports", + "which", + "do", + "not", + "have", + "any", + "flight", + "in", + "and", + "out", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 7, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + true, + 8, + [ + 0, + [ + 0, + 6, + false + ], + null + ], + { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 12, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 13, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + }, + "except": null + }, + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "flight_2", + "query": "SELECT AirportName FROM Airports WHERE AirportCode NOT IN (SELECT SourceAirport FROM Flights UNION SELECT DestAirport FROM Flights)", + "query_toks": [ + "SELECT", + "AirportName", + "FROM", + "Airports", + "WHERE", + "AirportCode", + "NOT", + "IN", + "(", + "SELECT", + "SourceAirport", + "FROM", + "Flights", + "UNION", + "SELECT", + "DestAirport", + "FROM", + "Flights", + ")" + ], + "query_toks_no_value": [ + "select", + "airportname", + "from", + "airports", + "where", + "airportcode", + "not", + "in", + "(", + "select", + "sourceairport", + "from", + "flights", + "union", + "select", + "destairport", + "from", + "flights", + ")" + ], + "question": "Which airports do not have departing or arriving flights?", + "question_toks": [ + "Which", + "airports", + "do", + "not", + "have", + "departing", + "or", + "arriving", + "flights", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 7, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + true, + 8, + [ + 0, + [ + 0, + 6, + false + ], + null + ], + { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 12, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 13, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + }, + "except": null + }, + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "employee_hire_evaluation", + "query": "SELECT count(*) FROM employee", + "query_toks": [ + "SELECT", + "count", + "(", + "*", + ")", + "FROM", + "employee" + ], + "query_toks_no_value": [ + "select", + "count", + "(", + "*", + ")", + "from", + "employee" + ], + "question": "How many employees are there?", + "question_toks": [ + "How", + "many", + "employees", + "are", + "there", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 3, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "employee_hire_evaluation", + "query": "SELECT count(*) FROM employee", + "query_toks": [ + "SELECT", + "count", + "(", + "*", + ")", + "FROM", + "employee" + ], + "query_toks_no_value": [ + "select", + "count", + "(", + "*", + ")", + "from", + "employee" + ], + "question": "Count the number of employees", + "question_toks": [ + "Count", + "the", + "number", + "of", + "employees" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 3, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "employee_hire_evaluation", + "query": "SELECT name FROM employee ORDER BY age", + "query_toks": [ + "SELECT", + "name", + "FROM", + "employee", + "ORDER", + "BY", + "age" + ], + "query_toks_no_value": [ + "select", + "name", + "from", + "employee", + "order", + "by", + "age" + ], + "question": "Sort employee names by their age in ascending order.", + "question_toks": [ + "Sort", + "employee", + "names", + "by", + "their", + "age", + "in", + "ascending", + "order", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 2, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [ + "asc", + [ + [ + 0, + [ + 0, + 3, + false + ], + null + ] + ] + ], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "employee_hire_evaluation", + "query": "SELECT name FROM employee ORDER BY age", + "query_toks": [ + "SELECT", + "name", + "FROM", + "employee", + "ORDER", + "BY", + "age" + ], + "query_toks_no_value": [ + "select", + "name", + "from", + "employee", + "order", + "by", + "age" + ], + "question": "List the names of employees and sort in ascending order of age.", + "question_toks": [ + "List", + "the", + "names", + "of", + "employees", + "and", + "sort", + "in", + "ascending", + "order", + "of", + "age", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 2, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [ + "asc", + [ + [ + 0, + [ + 0, + 3, + false + ], + null + ] + ] + ], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "employee_hire_evaluation", + "query": "SELECT count(*) , city FROM employee GROUP BY city", + "query_toks": [ + "SELECT", + "count", + "(", + "*", + ")", + ",", + "city", + "FROM", + "employee", + "GROUP", + "BY", + "city" + ], + "query_toks_no_value": [ + "select", + "count", + "(", + "*", + ")", + ",", + "city", + "from", + "employee", + "group", + "by", + "city" + ], + "question": "What is the number of employees from each city?", + "question_toks": [ + "What", + "is", + "the", + "number", + "of", + "employees", + "from", + "each", + "city", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 3, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 4, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 4, + false + ] + ], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "employee_hire_evaluation", + "query": "SELECT count(*) , city FROM employee GROUP BY city", + "query_toks": [ + "SELECT", + "count", + "(", + "*", + ")", + ",", + "city", + "FROM", + "employee", + "GROUP", + "BY", + "city" + ], + "query_toks_no_value": [ + "select", + "count", + "(", + "*", + ")", + ",", + "city", + "from", + "employee", + "group", + "by", + "city" + ], + "question": "Count the number of employees for each city.", + "question_toks": [ + "Count", + "the", + "number", + "of", + "employees", + "for", + "each", + "city", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 3, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 4, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 4, + false + ] + ], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "employee_hire_evaluation", + "query": "SELECT city FROM employee WHERE age < 30 GROUP BY city HAVING count(*) > 1", + "query_toks": [ + "SELECT", + "city", + "FROM", + "employee", + "WHERE", + "age", + "<", + "30", + "GROUP", + "BY", + "city", + "HAVING", + "count", + "(", + "*", + ")", + ">", + "1" + ], + "query_toks_no_value": [ + "select", + "city", + "from", + "employee", + "where", + "age", + "<", + "value", + "group", + "by", + "city", + "having", + "count", + "(", + "*", + ")", + ">", + "value" + ], + "question": "Which cities do more than one employee under age 30 come from?", + "question_toks": [ + "Which", + "cities", + "do", + "more", + "than", + "one", + "employee", + "under", + "age", + "30", + "come", + "from", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 4, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 4, + [ + 0, + [ + 0, + 3, + false + ], + null + ], + 30.0, + null + ] + ], + "groupBy": [ + [ + 0, + 4, + false + ] + ], + "having": [ + [ + false, + 3, + [ + 0, + [ + 3, + 0, + false + ], + null + ], + 1.0, + null + ] + ], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "employee_hire_evaluation", + "query": "SELECT city FROM employee WHERE age < 30 GROUP BY city HAVING count(*) > 1", + "query_toks": [ + "SELECT", + "city", + "FROM", + "employee", + "WHERE", + "age", + "<", + "30", + "GROUP", + "BY", + "city", + "HAVING", + "count", + "(", + "*", + ")", + ">", + "1" + ], + "query_toks_no_value": [ + "select", + "city", + "from", + "employee", + "where", + "age", + "<", + "value", + "group", + "by", + "city", + "having", + "count", + "(", + "*", + ")", + ">", + "value" + ], + "question": "Find the cities that have more than one employee under age 30.", + "question_toks": [ + "Find", + "the", + "cities", + "that", + "have", + "more", + "than", + "one", + "employee", + "under", + "age", + "30", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 4, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 4, + [ + 0, + [ + 0, + 3, + false + ], + null + ], + 30.0, + null + ] + ], + "groupBy": [ + [ + 0, + 4, + false + ] + ], + "having": [ + [ + false, + 3, + [ + 0, + [ + 3, + 0, + false + ], + null + ], + 1.0, + null + ] + ], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "employee_hire_evaluation", + "query": "SELECT count(*) , LOCATION FROM shop GROUP BY LOCATION", + "query_toks": [ + "SELECT", + "count", + "(", + "*", + ")", + ",", + "LOCATION", + "FROM", + "shop", + "GROUP", + "BY", + "LOCATION" + ], + "query_toks_no_value": [ + "select", + "count", + "(", + "*", + ")", + ",", + "location", + "from", + "shop", + "group", + "by", + "location" + ], + "question": "Find the number of shops in each location.", + "question_toks": [ + "Find", + "the", + "number", + "of", + "shops", + "in", + "each", + "location", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 3, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 7, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 7, + false + ] + ], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "employee_hire_evaluation", + "query": "SELECT count(*) , LOCATION FROM shop GROUP BY LOCATION", + "query_toks": [ + "SELECT", + "count", + "(", + "*", + ")", + ",", + "LOCATION", + "FROM", + "shop", + "GROUP", + "BY", + "LOCATION" + ], + "query_toks_no_value": [ + "select", + "count", + "(", + "*", + ")", + ",", + "location", + "from", + "shop", + "group", + "by", + "location" + ], + "question": "How many shops are there in each location?", + "question_toks": [ + "How", + "many", + "shops", + "are", + "there", + "in", + "each", + "location", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 3, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 7, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 7, + false + ] + ], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "employee_hire_evaluation", + "query": "SELECT manager_name , district FROM shop ORDER BY number_products DESC LIMIT 1", + "query_toks": [ + "SELECT", + "manager_name", + ",", + "district", + "FROM", + "shop", + "ORDER", + "BY", + "number_products", + "DESC", + "LIMIT", + "1" + ], + "query_toks_no_value": [ + "select", + "manager_name", + ",", + "district", + "from", + "shop", + "order", + "by", + "number_products", + "desc", + "limit", + "value" + ], + "question": "Find the manager name and district of the shop whose number of products is the largest.", + "question_toks": [ + "Find", + "the", + "manager", + "name", + "and", + "district", + "of", + "the", + "shop", + "whose", + "number", + "of", + "products", + "is", + "the", + "largest", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 10, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 8, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [ + "desc", + [ + [ + 0, + [ + 0, + 9, + false + ], + null + ] + ] + ], + "limit": 1, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "employee_hire_evaluation", + "query": "SELECT manager_name , district FROM shop ORDER BY number_products DESC LIMIT 1", + "query_toks": [ + "SELECT", + "manager_name", + ",", + "district", + "FROM", + "shop", + "ORDER", + "BY", + "number_products", + "DESC", + "LIMIT", + "1" + ], + "query_toks_no_value": [ + "select", + "manager_name", + ",", + "district", + "from", + "shop", + "order", + "by", + "number_products", + "desc", + "limit", + "value" + ], + "question": "What are the manager name and district of the shop that sells the largest number of products?", + "question_toks": [ + "What", + "are", + "the", + "manager", + "name", + "and", + "district", + "of", + "the", + "shop", + "that", + "sells", + "the", + "largest", + "number", + "of", + "products", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 10, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 8, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [ + "desc", + [ + [ + 0, + [ + 0, + 9, + false + ], + null + ] + ] + ], + "limit": 1, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "employee_hire_evaluation", + "query": "SELECT min(Number_products) , max(Number_products) FROM shop", + "query_toks": [ + "SELECT", + "min", + "(", + "Number_products", + ")", + ",", + "max", + "(", + "Number_products", + ")", + "FROM", + "shop" + ], + "query_toks_no_value": [ + "select", + "min", + "(", + "number_products", + ")", + ",", + "max", + "(", + "number_products", + ")", + "from", + "shop" + ], + "question": "find the minimum and maximum number of products of all stores.", + "question_toks": [ + "find", + "the", + "minimum", + "and", + "maximum", + "number", + "of", + "products", + "of", + "all", + "stores", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 2, + [ + 0, + [ + 0, + 9, + false + ], + null + ] + ], + [ + 1, + [ + 0, + [ + 0, + 9, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "employee_hire_evaluation", + "query": "SELECT min(Number_products) , max(Number_products) FROM shop", + "query_toks": [ + "SELECT", + "min", + "(", + "Number_products", + ")", + ",", + "max", + "(", + "Number_products", + ")", + "FROM", + "shop" + ], + "query_toks_no_value": [ + "select", + "min", + "(", + "number_products", + ")", + ",", + "max", + "(", + "number_products", + ")", + "from", + "shop" + ], + "question": "What are the minimum and maximum number of products across all the shops?", + "question_toks": [ + "What", + "are", + "the", + "minimum", + "and", + "maximum", + "number", + "of", + "products", + "across", + "all", + "the", + "shops", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 2, + [ + 0, + [ + 0, + 9, + false + ], + null + ] + ], + [ + 1, + [ + 0, + [ + 0, + 9, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "employee_hire_evaluation", + "query": "SELECT name , LOCATION , district FROM shop ORDER BY number_products DESC", + "query_toks": [ + "SELECT", + "name", + ",", + "LOCATION", + ",", + "district", + "FROM", + "shop", + "ORDER", + "BY", + "number_products", + "DESC" + ], + "query_toks_no_value": [ + "select", + "name", + ",", + "location", + ",", + "district", + "from", + "shop", + "order", + "by", + "number_products", + "desc" + ], + "question": "Return the name, location and district of all shops in descending order of number of products.", + "question_toks": [ + "Return", + "the", + "name", + ",", + "location", + "and", + "district", + "of", + "all", + "shops", + "in", + "descending", + "order", + "of", + "number", + "of", + "products", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 6, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 7, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 8, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [ + "desc", + [ + [ + 0, + [ + 0, + 9, + false + ], + null + ] + ] + ], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "employee_hire_evaluation", + "query": "SELECT name , LOCATION , district FROM shop ORDER BY number_products DESC", + "query_toks": [ + "SELECT", + "name", + ",", + "LOCATION", + ",", + "district", + "FROM", + "shop", + "ORDER", + "BY", + "number_products", + "DESC" + ], + "query_toks_no_value": [ + "select", + "name", + ",", + "location", + ",", + "district", + "from", + "shop", + "order", + "by", + "number_products", + "desc" + ], + "question": "Sort all the shops by number products in descending order, and return the name, location and district of each shop.", + "question_toks": [ + "Sort", + "all", + "the", + "shops", + "by", + "number", + "products", + "in", + "descending", + "order", + ",", + "and", + "return", + "the", + "name", + ",", + "location", + "and", + "district", + "of", + "each", + "shop", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 6, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 7, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 8, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [ + "desc", + [ + [ + 0, + [ + 0, + 9, + false + ], + null + ] + ] + ], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "employee_hire_evaluation", + "query": "SELECT name FROM shop WHERE number_products > (SELECT avg(number_products) FROM shop)", + "query_toks": [ + "SELECT", + "name", + "FROM", + "shop", + "WHERE", + "number_products", + ">", + "(", + "SELECT", + "avg", + "(", + "number_products", + ")", + "FROM", + "shop", + ")" + ], + "query_toks_no_value": [ + "select", + "name", + "from", + "shop", + "where", + "number_products", + ">", + "(", + "select", + "avg", + "(", + "number_products", + ")", + "from", + "shop", + ")" + ], + "question": "Find the names of stores whose number products is more than the average number of products.", + "question_toks": [ + "Find", + "the", + "names", + "of", + "stores", + "whose", + "number", + "products", + "is", + "more", + "than", + "the", + "average", + "number", + "of", + "products", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 6, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 3, + [ + 0, + [ + 0, + 9, + false + ], + null + ], + { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 5, + [ + 0, + [ + 0, + 9, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + }, + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "employee_hire_evaluation", + "query": "SELECT name FROM shop WHERE number_products > (SELECT avg(number_products) FROM shop)", + "query_toks": [ + "SELECT", + "name", + "FROM", + "shop", + "WHERE", + "number_products", + ">", + "(", + "SELECT", + "avg", + "(", + "number_products", + ")", + "FROM", + "shop", + ")" + ], + "query_toks_no_value": [ + "select", + "name", + "from", + "shop", + "where", + "number_products", + ">", + "(", + "select", + "avg", + "(", + "number_products", + ")", + "from", + "shop", + ")" + ], + "question": "Which shops' number products is above the average? Give me the shop names.", + "question_toks": [ + "Which", + "shops", + "'", + "number", + "products", + "is", + "above", + "the", + "average", + "?", + "Give", + "me", + "the", + "shop", + "names", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 6, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 3, + [ + 0, + [ + 0, + 9, + false + ], + null + ], + { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 5, + [ + 0, + [ + 0, + 9, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + }, + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "employee_hire_evaluation", + "query": "SELECT t1.name FROM employee AS t1 JOIN evaluation AS t2 ON t1.Employee_ID = t2.Employee_ID GROUP BY t2.Employee_ID ORDER BY count(*) DESC LIMIT 1", + "query_toks": [ + "SELECT", + "t1.name", + "FROM", + "employee", + "AS", + "t1", + "JOIN", + "evaluation", + "AS", + "t2", + "ON", + "t1.Employee_ID", + "=", + "t2.Employee_ID", + "GROUP", + "BY", + "t2.Employee_ID", + "ORDER", + "BY", + "count", + "(", + "*", + ")", + "DESC", + "LIMIT", + "1" + ], + "query_toks_no_value": [ + "select", + "t1", + ".", + "name", + "from", + "employee", + "as", + "t1", + "join", + "evaluation", + "as", + "t2", + "on", + "t1", + ".", + "employee_id", + "=", + "t2", + ".", + "employee_id", + "group", + "by", + "t2", + ".", + "employee_id", + "order", + "by", + "count", + "(", + "*", + ")", + "desc", + "limit", + "value" + ], + "question": "find the name of employee who was awarded the most times in the evaluation.", + "question_toks": [ + "find", + "the", + "name", + "of", + "employee", + "who", + "was", + "awarded", + "the", + "most", + "times", + "in", + "the", + "evaluation", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ], + [ + "table_unit", + 3 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 1, + false + ], + null + ], + [ + 0, + 15, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 2, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 15, + false + ] + ], + "having": [], + "orderBy": [ + "desc", + [ + [ + 0, + [ + 3, + 0, + false + ], + null + ] + ] + ], + "limit": 1, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "employee_hire_evaluation", + "query": "SELECT t1.name FROM employee AS t1 JOIN evaluation AS t2 ON t1.Employee_ID = t2.Employee_ID GROUP BY t2.Employee_ID ORDER BY count(*) DESC LIMIT 1", + "query_toks": [ + "SELECT", + "t1.name", + "FROM", + "employee", + "AS", + "t1", + "JOIN", + "evaluation", + "AS", + "t2", + "ON", + "t1.Employee_ID", + "=", + "t2.Employee_ID", + "GROUP", + "BY", + "t2.Employee_ID", + "ORDER", + "BY", + "count", + "(", + "*", + ")", + "DESC", + "LIMIT", + "1" + ], + "query_toks_no_value": [ + "select", + "t1", + ".", + "name", + "from", + "employee", + "as", + "t1", + "join", + "evaluation", + "as", + "t2", + "on", + "t1", + ".", + "employee_id", + "=", + "t2", + ".", + "employee_id", + "group", + "by", + "t2", + ".", + "employee_id", + "order", + "by", + "count", + "(", + "*", + ")", + "desc", + "limit", + "value" + ], + "question": "Which employee received the most awards in evaluations? Give me the employee name.", + "question_toks": [ + "Which", + "employee", + "received", + "the", + "most", + "awards", + "in", + "evaluations", + "?", + "Give", + "me", + "the", + "employee", + "name", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ], + [ + "table_unit", + 3 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 1, + false + ], + null + ], + [ + 0, + 15, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 2, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 15, + false + ] + ], + "having": [], + "orderBy": [ + "desc", + [ + [ + 0, + [ + 3, + 0, + false + ], + null + ] + ] + ], + "limit": 1, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "employee_hire_evaluation", + "query": "SELECT t1.name FROM employee AS t1 JOIN evaluation AS t2 ON t1.Employee_ID = t2.Employee_ID ORDER BY t2.bonus DESC LIMIT 1", + "query_toks": [ + "SELECT", + "t1.name", + "FROM", + "employee", + "AS", + "t1", + "JOIN", + "evaluation", + "AS", + "t2", + "ON", + "t1.Employee_ID", + "=", + "t2.Employee_ID", + "ORDER", + "BY", + "t2.bonus", + "DESC", + "LIMIT", + "1" + ], + "query_toks_no_value": [ + "select", + "t1", + ".", + "name", + "from", + "employee", + "as", + "t1", + "join", + "evaluation", + "as", + "t2", + "on", + "t1", + ".", + "employee_id", + "=", + "t2", + ".", + "employee_id", + "order", + "by", + "t2", + ".", + "bonus", + "desc", + "limit", + "value" + ], + "question": "Find the name of the employee who got the highest one time bonus.", + "question_toks": [ + "Find", + "the", + "name", + "of", + "the", + "employee", + "who", + "got", + "the", + "highest", + "one", + "time", + "bonus", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ], + [ + "table_unit", + 3 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 1, + false + ], + null + ], + [ + 0, + 15, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 2, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [ + "desc", + [ + [ + 0, + [ + 0, + 17, + false + ], + null + ] + ] + ], + "limit": 1, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "employee_hire_evaluation", + "query": "SELECT t1.name FROM employee AS t1 JOIN evaluation AS t2 ON t1.Employee_ID = t2.Employee_ID ORDER BY t2.bonus DESC LIMIT 1", + "query_toks": [ + "SELECT", + "t1.name", + "FROM", + "employee", + "AS", + "t1", + "JOIN", + "evaluation", + "AS", + "t2", + "ON", + "t1.Employee_ID", + "=", + "t2.Employee_ID", + "ORDER", + "BY", + "t2.bonus", + "DESC", + "LIMIT", + "1" + ], + "query_toks_no_value": [ + "select", + "t1", + ".", + "name", + "from", + "employee", + "as", + "t1", + "join", + "evaluation", + "as", + "t2", + "on", + "t1", + ".", + "employee_id", + "=", + "t2", + ".", + "employee_id", + "order", + "by", + "t2", + ".", + "bonus", + "desc", + "limit", + "value" + ], + "question": "Which employee received the biggest bonus? Give me the employee name.", + "question_toks": [ + "Which", + "employee", + "received", + "the", + "biggest", + "bonus", + "?", + "Give", + "me", + "the", + "employee", + "name", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ], + [ + "table_unit", + 3 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 1, + false + ], + null + ], + [ + 0, + 15, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 2, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [ + "desc", + [ + [ + 0, + [ + 0, + 17, + false + ], + null + ] + ] + ], + "limit": 1, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "employee_hire_evaluation", + "query": "SELECT name FROM employee WHERE Employee_ID NOT IN (SELECT Employee_ID FROM evaluation)", + "query_toks": [ + "SELECT", + "name", + "FROM", + "employee", + "WHERE", + "Employee_ID", + "NOT", + "IN", + "(", + "SELECT", + "Employee_ID", + "FROM", + "evaluation", + ")" + ], + "query_toks_no_value": [ + "select", + "name", + "from", + "employee", + "where", + "employee_id", + "not", + "in", + "(", + "select", + "employee_id", + "from", + "evaluation", + ")" + ], + "question": "Find the names of employees who never won any award in the evaluation.", + "question_toks": [ + "Find", + "the", + "names", + "of", + "employees", + "who", + "never", + "won", + "any", + "award", + "in", + "the", + "evaluation", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 2, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + true, + 8, + [ + 0, + [ + 0, + 1, + false + ], + null + ], + { + "from": { + "table_units": [ + [ + "table_unit", + 3 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 15, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + }, + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "employee_hire_evaluation", + "query": "SELECT name FROM employee WHERE Employee_ID NOT IN (SELECT Employee_ID FROM evaluation)", + "query_toks": [ + "SELECT", + "name", + "FROM", + "employee", + "WHERE", + "Employee_ID", + "NOT", + "IN", + "(", + "SELECT", + "Employee_ID", + "FROM", + "evaluation", + ")" + ], + "query_toks_no_value": [ + "select", + "name", + "from", + "employee", + "where", + "employee_id", + "not", + "in", + "(", + "select", + "employee_id", + "from", + "evaluation", + ")" + ], + "question": "What are the names of the employees who never received any evaluation?", + "question_toks": [ + "What", + "are", + "the", + "names", + "of", + "the", + "employees", + "who", + "never", + "received", + "any", + "evaluation", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 2, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + true, + 8, + [ + 0, + [ + 0, + 1, + false + ], + null + ], + { + "from": { + "table_units": [ + [ + "table_unit", + 3 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 15, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + }, + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "employee_hire_evaluation", + "query": "SELECT t2.name FROM hiring AS t1 JOIN shop AS t2 ON t1.shop_id = t2.shop_id GROUP BY t1.shop_id ORDER BY count(*) DESC LIMIT 1", + "query_toks": [ + "SELECT", + "t2.name", + "FROM", + "hiring", + "AS", + "t1", + "JOIN", + "shop", + "AS", + "t2", + "ON", + "t1.shop_id", + "=", + "t2.shop_id", + "GROUP", + "BY", + "t1.shop_id", + "ORDER", + "BY", + "count", + "(", + "*", + ")", + "DESC", + "LIMIT", + "1" + ], + "query_toks_no_value": [ + "select", + "t2", + ".", + "name", + "from", + "hiring", + "as", + "t1", + "join", + "shop", + "as", + "t2", + "on", + "t1", + ".", + "shop_id", + "=", + "t2", + ".", + "shop_id", + "group", + "by", + "t1", + ".", + "shop_id", + "order", + "by", + "count", + "(", + "*", + ")", + "desc", + "limit", + "value" + ], + "question": "What is the name of the shop that is hiring the largest number of employees?", + "question_toks": [ + "What", + "is", + "the", + "name", + "of", + "the", + "shop", + "that", + "is", + "hiring", + "the", + "largest", + "number", + "of", + "employees", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ], + [ + "table_unit", + 1 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 11, + false + ], + null + ], + [ + 0, + 5, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 6, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 11, + false + ] + ], + "having": [], + "orderBy": [ + "desc", + [ + [ + 0, + [ + 3, + 0, + false + ], + null + ] + ] + ], + "limit": 1, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "employee_hire_evaluation", + "query": "SELECT t2.name FROM hiring AS t1 JOIN shop AS t2 ON t1.shop_id = t2.shop_id GROUP BY t1.shop_id ORDER BY count(*) DESC LIMIT 1", + "query_toks": [ + "SELECT", + "t2.name", + "FROM", + "hiring", + "AS", + "t1", + "JOIN", + "shop", + "AS", + "t2", + "ON", + "t1.shop_id", + "=", + "t2.shop_id", + "GROUP", + "BY", + "t1.shop_id", + "ORDER", + "BY", + "count", + "(", + "*", + ")", + "DESC", + "LIMIT", + "1" + ], + "query_toks_no_value": [ + "select", + "t2", + ".", + "name", + "from", + "hiring", + "as", + "t1", + "join", + "shop", + "as", + "t2", + "on", + "t1", + ".", + "shop_id", + "=", + "t2", + ".", + "shop_id", + "group", + "by", + "t1", + ".", + "shop_id", + "order", + "by", + "count", + "(", + "*", + ")", + "desc", + "limit", + "value" + ], + "question": "Which shop has the most employees? Give me the shop name.", + "question_toks": [ + "Which", + "shop", + "has", + "the", + "most", + "employees", + "?", + "Give", + "me", + "the", + "shop", + "name", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ], + [ + "table_unit", + 1 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 11, + false + ], + null + ], + [ + 0, + 5, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 6, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 11, + false + ] + ], + "having": [], + "orderBy": [ + "desc", + [ + [ + 0, + [ + 3, + 0, + false + ], + null + ] + ] + ], + "limit": 1, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "employee_hire_evaluation", + "query": "SELECT name FROM shop WHERE shop_id NOT IN (SELECT shop_id FROM hiring)", + "query_toks": [ + "SELECT", + "name", + "FROM", + "shop", + "WHERE", + "shop_id", + "NOT", + "IN", + "(", + "SELECT", + "shop_id", + "FROM", + "hiring", + ")" + ], + "query_toks_no_value": [ + "select", + "name", + "from", + "shop", + "where", + "shop_id", + "not", + "in", + "(", + "select", + "shop_id", + "from", + "hiring", + ")" + ], + "question": "Find the name of the shops that do not hire any employee.", + "question_toks": [ + "Find", + "the", + "name", + "of", + "the", + "shops", + "that", + "do", + "not", + "hire", + "any", + "employee", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 6, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + true, + 8, + [ + 0, + [ + 0, + 5, + false + ], + null + ], + { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 11, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + }, + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "employee_hire_evaluation", + "query": "SELECT name FROM shop WHERE shop_id NOT IN (SELECT shop_id FROM hiring)", + "query_toks": [ + "SELECT", + "name", + "FROM", + "shop", + "WHERE", + "shop_id", + "NOT", + "IN", + "(", + "SELECT", + "shop_id", + "FROM", + "hiring", + ")" + ], + "query_toks_no_value": [ + "select", + "name", + "from", + "shop", + "where", + "shop_id", + "not", + "in", + "(", + "select", + "shop_id", + "from", + "hiring", + ")" + ], + "question": "Which shops run with no employees? Find the shop names", + "question_toks": [ + "Which", + "shops", + "run", + "with", + "no", + "employees", + "?", + "Find", + "the", + "shop", + "names" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 6, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + true, + 8, + [ + 0, + [ + 0, + 5, + false + ], + null + ], + { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 11, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + }, + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "employee_hire_evaluation", + "query": "SELECT count(*) , t2.name FROM hiring AS t1 JOIN shop AS t2 ON t1.shop_id = t2.shop_id GROUP BY t2.name", + "query_toks": [ + "SELECT", + "count", + "(", + "*", + ")", + ",", + "t2.name", + "FROM", + "hiring", + "AS", + "t1", + "JOIN", + "shop", + "AS", + "t2", + "ON", + "t1.shop_id", + "=", + "t2.shop_id", + "GROUP", + "BY", + "t2.name" + ], + "query_toks_no_value": [ + "select", + "count", + "(", + "*", + ")", + ",", + "t2", + ".", + "name", + "from", + "hiring", + "as", + "t1", + "join", + "shop", + "as", + "t2", + "on", + "t1", + ".", + "shop_id", + "=", + "t2", + ".", + "shop_id", + "group", + "by", + "t2", + ".", + "name" + ], + "question": "Find the number of employees hired in each shop; show the shop name as well.", + "question_toks": [ + "Find", + "the", + "number", + "of", + "employees", + "hired", + "in", + "each", + "shop", + ";", + "show", + "the", + "shop", + "name", + "as", + "well", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ], + [ + "table_unit", + 1 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 11, + false + ], + null + ], + [ + 0, + 5, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 3, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 6, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 6, + false + ] + ], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "employee_hire_evaluation", + "query": "SELECT count(*) , t2.name FROM hiring AS t1 JOIN shop AS t2 ON t1.shop_id = t2.shop_id GROUP BY t2.name", + "query_toks": [ + "SELECT", + "count", + "(", + "*", + ")", + ",", + "t2.name", + "FROM", + "hiring", + "AS", + "t1", + "JOIN", + "shop", + "AS", + "t2", + "ON", + "t1.shop_id", + "=", + "t2.shop_id", + "GROUP", + "BY", + "t2.name" + ], + "query_toks_no_value": [ + "select", + "count", + "(", + "*", + ")", + ",", + "t2", + ".", + "name", + "from", + "hiring", + "as", + "t1", + "join", + "shop", + "as", + "t2", + "on", + "t1", + ".", + "shop_id", + "=", + "t2", + ".", + "shop_id", + "group", + "by", + "t2", + ".", + "name" + ], + "question": "For each shop, return the number of employees working there and the name of the shop.", + "question_toks": [ + "For", + "each", + "shop", + ",", + "return", + "the", + "number", + "of", + "employees", + "working", + "there", + "and", + "the", + "name", + "of", + "the", + "shop", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ], + [ + "table_unit", + 1 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 11, + false + ], + null + ], + [ + 0, + 5, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 3, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 6, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 6, + false + ] + ], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "employee_hire_evaluation", + "query": "SELECT sum(bonus) FROM evaluation", + "query_toks": [ + "SELECT", + "sum", + "(", + "bonus", + ")", + "FROM", + "evaluation" + ], + "query_toks_no_value": [ + "select", + "sum", + "(", + "bonus", + ")", + "from", + "evaluation" + ], + "question": "What is total bonus given in all evaluations?", + "question_toks": [ + "What", + "is", + "total", + "bonus", + "given", + "in", + "all", + "evaluations", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 3 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 4, + [ + 0, + [ + 0, + 17, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "employee_hire_evaluation", + "query": "SELECT sum(bonus) FROM evaluation", + "query_toks": [ + "SELECT", + "sum", + "(", + "bonus", + ")", + "FROM", + "evaluation" + ], + "query_toks_no_value": [ + "select", + "sum", + "(", + "bonus", + ")", + "from", + "evaluation" + ], + "question": "Find the total amount of bonus given in all the evaluations.", + "question_toks": [ + "Find", + "the", + "total", + "amount", + "of", + "bonus", + "given", + "in", + "all", + "the", + "evaluations", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 3 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 4, + [ + 0, + [ + 0, + 17, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "employee_hire_evaluation", + "query": "SELECT * FROM hiring", + "query_toks": [ + "SELECT", + "*", + "FROM", + "hiring" + ], + "query_toks_no_value": [ + "select", + "*", + "from", + "hiring" + ], + "question": "Give me all the information about hiring.", + "question_toks": [ + "Give", + "me", + "all", + "the", + "information", + "about", + "hiring", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "employee_hire_evaluation", + "query": "SELECT * FROM hiring", + "query_toks": [ + "SELECT", + "*", + "FROM", + "hiring" + ], + "query_toks_no_value": [ + "select", + "*", + "from", + "hiring" + ], + "question": "What is all the information about hiring?", + "question_toks": [ + "What", + "is", + "all", + "the", + "information", + "about", + "hiring", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "employee_hire_evaluation", + "query": "SELECT district FROM shop WHERE Number_products < 3000 INTERSECT SELECT district FROM shop WHERE Number_products > 10000", + "query_toks": [ + "SELECT", + "district", + "FROM", + "shop", + "WHERE", + "Number_products", + "<", + "3000", + "INTERSECT", + "SELECT", + "district", + "FROM", + "shop", + "WHERE", + "Number_products", + ">", + "10000" + ], + "query_toks_no_value": [ + "select", + "district", + "from", + "shop", + "where", + "number_products", + "<", + "value", + "intersect", + "select", + "district", + "from", + "shop", + "where", + "number_products", + ">", + "value" + ], + "question": "Which district has both stores with less than 3000 products and stores with more than 10000 products?", + "question_toks": [ + "Which", + "district", + "has", + "both", + "stores", + "with", + "less", + "than", + "3000", + "products", + "and", + "stores", + "with", + "more", + "than", + "10000", + "products", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 8, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 4, + [ + 0, + [ + 0, + 9, + false + ], + null + ], + 3000.0, + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 8, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 3, + [ + 0, + [ + 0, + 9, + false + ], + null + ], + 10000.0, + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + }, + "union": null, + "except": null + } + }, + { + "db_id": "employee_hire_evaluation", + "query": "SELECT district FROM shop WHERE Number_products < 3000 INTERSECT SELECT district FROM shop WHERE Number_products > 10000", + "query_toks": [ + "SELECT", + "district", + "FROM", + "shop", + "WHERE", + "Number_products", + "<", + "3000", + "INTERSECT", + "SELECT", + "district", + "FROM", + "shop", + "WHERE", + "Number_products", + ">", + "10000" + ], + "query_toks_no_value": [ + "select", + "district", + "from", + "shop", + "where", + "number_products", + "<", + "value", + "intersect", + "select", + "district", + "from", + "shop", + "where", + "number_products", + ">", + "value" + ], + "question": "Find the districts in which there are both shops selling less than 3000 products and shops selling more than 10000 products.", + "question_toks": [ + "Find", + "the", + "districts", + "in", + "which", + "there", + "are", + "both", + "shops", + "selling", + "less", + "than", + "3000", + "products", + "and", + "shops", + "selling", + "more", + "than", + "10000", + "products", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 8, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 4, + [ + 0, + [ + 0, + 9, + false + ], + null + ], + 3000.0, + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 8, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 3, + [ + 0, + [ + 0, + 9, + false + ], + null + ], + 10000.0, + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + }, + "union": null, + "except": null + } + }, + { + "db_id": "employee_hire_evaluation", + "query": "SELECT count(DISTINCT LOCATION) FROM shop", + "query_toks": [ + "SELECT", + "count", + "(", + "DISTINCT", + "LOCATION", + ")", + "FROM", + "shop" + ], + "query_toks_no_value": [ + "select", + "count", + "(", + "distinct", + "location", + ")", + "from", + "shop" + ], + "question": "How many different store locations are there?", + "question_toks": [ + "How", + "many", + "different", + "store", + "locations", + "are", + "there", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 3, + [ + 0, + [ + 0, + 7, + true + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "employee_hire_evaluation", + "query": "SELECT count(DISTINCT LOCATION) FROM shop", + "query_toks": [ + "SELECT", + "count", + "(", + "DISTINCT", + "LOCATION", + ")", + "FROM", + "shop" + ], + "query_toks_no_value": [ + "select", + "count", + "(", + "distinct", + "location", + ")", + "from", + "shop" + ], + "question": "Count the number of distinct store locations.", + "question_toks": [ + "Count", + "the", + "number", + "of", + "distinct", + "store", + "locations", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 3, + [ + 0, + [ + 0, + 7, + true + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "cre_Doc_Template_Mgt", + "query": "SELECT count(*) FROM Documents", + "query_toks": [ + "SELECT", + "count", + "(", + "*", + ")", + "FROM", + "Documents" + ], + "query_toks_no_value": [ + "select", + "count", + "(", + "*", + ")", + "from", + "documents" + ], + "question": "How many documents do we have?", + "question_toks": [ + "How", + "many", + "documents", + "do", + "we", + "have", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 3, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "cre_Doc_Template_Mgt", + "query": "SELECT count(*) FROM Documents", + "query_toks": [ + "SELECT", + "count", + "(", + "*", + ")", + "FROM", + "Documents" + ], + "query_toks_no_value": [ + "select", + "count", + "(", + "*", + ")", + "from", + "documents" + ], + "question": "Count the number of documents.", + "question_toks": [ + "Count", + "the", + "number", + "of", + "documents", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 3, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "cre_Doc_Template_Mgt", + "query": "SELECT document_id , document_name , document_description FROM Documents", + "query_toks": [ + "SELECT", + "document_id", + ",", + "document_name", + ",", + "document_description", + "FROM", + "Documents" + ], + "query_toks_no_value": [ + "select", + "document_id", + ",", + "document_name", + ",", + "document_description", + "from", + "documents" + ], + "question": "List document IDs, document names, and document descriptions for all documents.", + "question_toks": [ + "List", + "document", + "IDs", + ",", + "document", + "names", + ",", + "and", + "document", + "descriptions", + "for", + "all", + "documents", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 9, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 11, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 12, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "cre_Doc_Template_Mgt", + "query": "SELECT document_id , document_name , document_description FROM Documents", + "query_toks": [ + "SELECT", + "document_id", + ",", + "document_name", + ",", + "document_description", + "FROM", + "Documents" + ], + "query_toks_no_value": [ + "select", + "document_id", + ",", + "document_name", + ",", + "document_description", + "from", + "documents" + ], + "question": "What are the ids, names, and descriptions for all documents?", + "question_toks": [ + "What", + "are", + "the", + "ids", + ",", + "names", + ",", + "and", + "descriptions", + "for", + "all", + "documents", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 9, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 11, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 12, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "cre_Doc_Template_Mgt", + "query": "SELECT document_name , template_id FROM Documents WHERE Document_Description LIKE \"%w%\"", + "query_toks": [ + "SELECT", + "document_name", + ",", + "template_id", + "FROM", + "Documents", + "WHERE", + "Document_Description", + "LIKE", + "``", + "%", + "w", + "%", + "''" + ], + "query_toks_no_value": [ + "select", + "document_name", + ",", + "template_id", + "from", + "documents", + "where", + "document_description", + "like", + "value" + ], + "question": "What is the document name and template id for document with description with the letter 'w' in it?", + "question_toks": [ + "What", + "is", + "the", + "document", + "name", + "and", + "template", + "id", + "for", + "document", + "with", + "description", + "with", + "the", + "letter", + "'w", + "'", + "in", + "it", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 11, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 10, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 9, + [ + 0, + [ + 0, + 12, + false + ], + null + ], + "\"%w%\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "cre_Doc_Template_Mgt", + "query": "SELECT document_name , template_id FROM Documents WHERE Document_Description LIKE \"%w%\"", + "query_toks": [ + "SELECT", + "document_name", + ",", + "template_id", + "FROM", + "Documents", + "WHERE", + "Document_Description", + "LIKE", + "``", + "%", + "w", + "%", + "''" + ], + "query_toks_no_value": [ + "select", + "document_name", + ",", + "template_id", + "from", + "documents", + "where", + "document_description", + "like", + "value" + ], + "question": "Return the names and template ids for documents that contain the letter w in their description.", + "question_toks": [ + "Return", + "the", + "names", + "and", + "template", + "ids", + "for", + "documents", + "that", + "contain", + "the", + "letter", + "w", + "in", + "their", + "description", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 11, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 10, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 9, + [ + 0, + [ + 0, + 12, + false + ], + null + ], + "\"%w%\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "cre_Doc_Template_Mgt", + "query": "SELECT document_id , template_id , Document_Description FROM Documents WHERE document_name = \"Robbin CV\"", + "query_toks": [ + "SELECT", + "document_id", + ",", + "template_id", + ",", + "Document_Description", + "FROM", + "Documents", + "WHERE", + "document_name", + "=", + "``", + "Robbin", + "CV", + "''" + ], + "query_toks_no_value": [ + "select", + "document_id", + ",", + "template_id", + ",", + "document_description", + "from", + "documents", + "where", + "document_name", + "=", + "value" + ], + "question": "What is the document id, template id and description for document named \"Robbin CV\"?", + "question_toks": [ + "What", + "is", + "the", + "document", + "id", + ",", + "template", + "id", + "and", + "description", + "for", + "document", + "named", + "``", + "Robbin", + "CV", + "''", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 9, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 10, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 12, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 11, + false + ], + null + ], + "\"Robbin CV\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "cre_Doc_Template_Mgt", + "query": "SELECT document_id , template_id , Document_Description FROM Documents WHERE document_name = \"Robbin CV\"", + "query_toks": [ + "SELECT", + "document_id", + ",", + "template_id", + ",", + "Document_Description", + "FROM", + "Documents", + "WHERE", + "document_name", + "=", + "``", + "Robbin", + "CV", + "''" + ], + "query_toks_no_value": [ + "select", + "document_id", + ",", + "template_id", + ",", + "document_description", + "from", + "documents", + "where", + "document_name", + "=", + "value" + ], + "question": "Return the document id, template id, and description for the document with the name Robbin CV.", + "question_toks": [ + "Return", + "the", + "document", + "id", + ",", + "template", + "id", + ",", + "and", + "description", + "for", + "the", + "document", + "with", + "the", + "name", + "Robbin", + "CV", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 9, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 10, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 12, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 11, + false + ], + null + ], + "\"Robbin CV\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "cre_Doc_Template_Mgt", + "query": "SELECT count(DISTINCT template_id) FROM Documents", + "query_toks": [ + "SELECT", + "count", + "(", + "DISTINCT", + "template_id", + ")", + "FROM", + "Documents" + ], + "query_toks_no_value": [ + "select", + "count", + "(", + "distinct", + "template_id", + ")", + "from", + "documents" + ], + "question": "How many different templates do all document use?", + "question_toks": [ + "How", + "many", + "different", + "templates", + "do", + "all", + "document", + "use", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 3, + [ + 0, + [ + 0, + 10, + true + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "cre_Doc_Template_Mgt", + "query": "SELECT count(DISTINCT template_id) FROM Documents", + "query_toks": [ + "SELECT", + "count", + "(", + "DISTINCT", + "template_id", + ")", + "FROM", + "Documents" + ], + "query_toks_no_value": [ + "select", + "count", + "(", + "distinct", + "template_id", + ")", + "from", + "documents" + ], + "question": "Count the number of different templates used for documents.", + "question_toks": [ + "Count", + "the", + "number", + "of", + "different", + "templates", + "used", + "for", + "documents", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 3, + [ + 0, + [ + 0, + 10, + true + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "cre_Doc_Template_Mgt", + "query": "SELECT count(*) FROM Documents AS T1 JOIN Templates AS T2 ON T1.Template_ID = T2.Template_ID WHERE T2.Template_Type_Code = 'PPT'", + "query_toks": [ + "SELECT", + "count", + "(", + "*", + ")", + "FROM", + "Documents", + "AS", + "T1", + "JOIN", + "Templates", + "AS", + "T2", + "ON", + "T1.Template_ID", + "=", + "T2.Template_ID", + "WHERE", + "T2.Template_Type_Code", + "=", + "'PPT", + "'" + ], + "query_toks_no_value": [ + "select", + "count", + "(", + "*", + ")", + "from", + "documents", + "as", + "t1", + "join", + "templates", + "as", + "t2", + "on", + "t1", + ".", + "template_id", + "=", + "t2", + ".", + "template_id", + "where", + "t2", + ".", + "template_type_code", + "=", + "value" + ], + "question": "How many documents are using the template with type code 'PPT'?", + "question_toks": [ + "How", + "many", + "documents", + "are", + "using", + "the", + "template", + "with", + "type", + "code", + "'PPT", + "'", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ], + [ + "table_unit", + 1 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 10, + false + ], + null + ], + [ + 0, + 3, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 3, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 5, + false + ], + null + ], + "\"PPT\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "cre_Doc_Template_Mgt", + "query": "SELECT count(*) FROM Documents AS T1 JOIN Templates AS T2 ON T1.Template_ID = T2.Template_ID WHERE T2.Template_Type_Code = 'PPT'", + "query_toks": [ + "SELECT", + "count", + "(", + "*", + ")", + "FROM", + "Documents", + "AS", + "T1", + "JOIN", + "Templates", + "AS", + "T2", + "ON", + "T1.Template_ID", + "=", + "T2.Template_ID", + "WHERE", + "T2.Template_Type_Code", + "=", + "'PPT", + "'" + ], + "query_toks_no_value": [ + "select", + "count", + "(", + "*", + ")", + "from", + "documents", + "as", + "t1", + "join", + "templates", + "as", + "t2", + "on", + "t1", + ".", + "template_id", + "=", + "t2", + ".", + "template_id", + "where", + "t2", + ".", + "template_type_code", + "=", + "value" + ], + "question": "Count the number of documents that use the PPT template type.", + "question_toks": [ + "Count", + "the", + "number", + "of", + "documents", + "that", + "use", + "the", + "PPT", + "template", + "type", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ], + [ + "table_unit", + 1 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 10, + false + ], + null + ], + [ + 0, + 3, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 3, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 5, + false + ], + null + ], + "\"PPT\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "cre_Doc_Template_Mgt", + "query": "SELECT template_id , count(*) FROM Documents GROUP BY template_id", + "query_toks": [ + "SELECT", + "template_id", + ",", + "count", + "(", + "*", + ")", + "FROM", + "Documents", + "GROUP", + "BY", + "template_id" + ], + "query_toks_no_value": [ + "select", + "template_id", + ",", + "count", + "(", + "*", + ")", + "from", + "documents", + "group", + "by", + "template_id" + ], + "question": "Show all template ids and number of documents using each template.", + "question_toks": [ + "Show", + "all", + "template", + "ids", + "and", + "number", + "of", + "documents", + "using", + "each", + "template", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 10, + false + ], + null + ] + ], + [ + 3, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 10, + false + ] + ], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "cre_Doc_Template_Mgt", + "query": "SELECT template_id , count(*) FROM Documents GROUP BY template_id", + "query_toks": [ + "SELECT", + "template_id", + ",", + "count", + "(", + "*", + ")", + "FROM", + "Documents", + "GROUP", + "BY", + "template_id" + ], + "query_toks_no_value": [ + "select", + "template_id", + ",", + "count", + "(", + "*", + ")", + "from", + "documents", + "group", + "by", + "template_id" + ], + "question": "What are all different template ids used for documents, and how many times were each of them used?", + "question_toks": [ + "What", + "are", + "all", + "different", + "template", + "ids", + "used", + "for", + "documents", + ",", + "and", + "how", + "many", + "times", + "were", + "each", + "of", + "them", + "used", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 10, + false + ], + null + ] + ], + [ + 3, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 10, + false + ] + ], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "cre_Doc_Template_Mgt", + "query": "SELECT T1.template_id , T2.Template_Type_Code FROM Documents AS T1 JOIN Templates AS T2 ON T1.template_id = T2.template_id GROUP BY T1.template_id ORDER BY count(*) DESC LIMIT 1", + "query_toks": [ + "SELECT", + "T1.template_id", + ",", + "T2.Template_Type_Code", + "FROM", + "Documents", + "AS", + "T1", + "JOIN", + "Templates", + "AS", + "T2", + "ON", + "T1.template_id", + "=", + "T2.template_id", + "GROUP", + "BY", + "T1.template_id", + "ORDER", + "BY", + "count", + "(", + "*", + ")", + "DESC", + "LIMIT", + "1" + ], + "query_toks_no_value": [ + "select", + "t1", + ".", + "template_id", + ",", + "t2", + ".", + "template_type_code", + "from", + "documents", + "as", + "t1", + "join", + "templates", + "as", + "t2", + "on", + "t1", + ".", + "template_id", + "=", + "t2", + ".", + "template_id", + "group", + "by", + "t1", + ".", + "template_id", + "order", + "by", + "count", + "(", + "*", + ")", + "desc", + "limit", + "value" + ], + "question": "What is the id and type code for the template used by the most documents?", + "question_toks": [ + "What", + "is", + "the", + "id", + "and", + "type", + "code", + "for", + "the", + "template", + "used", + "by", + "the", + "most", + "documents", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ], + [ + "table_unit", + 1 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 10, + false + ], + null + ], + [ + 0, + 3, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 10, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 5, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 10, + false + ] + ], + "having": [], + "orderBy": [ + "desc", + [ + [ + 0, + [ + 3, + 0, + false + ], + null + ] + ] + ], + "limit": 1, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "cre_Doc_Template_Mgt", + "query": "SELECT T1.template_id , T2.Template_Type_Code FROM Documents AS T1 JOIN Templates AS T2 ON T1.template_id = T2.template_id GROUP BY T1.template_id ORDER BY count(*) DESC LIMIT 1", + "query_toks": [ + "SELECT", + "T1.template_id", + ",", + "T2.Template_Type_Code", + "FROM", + "Documents", + "AS", + "T1", + "JOIN", + "Templates", + "AS", + "T2", + "ON", + "T1.template_id", + "=", + "T2.template_id", + "GROUP", + "BY", + "T1.template_id", + "ORDER", + "BY", + "count", + "(", + "*", + ")", + "DESC", + "LIMIT", + "1" + ], + "query_toks_no_value": [ + "select", + "t1", + ".", + "template_id", + ",", + "t2", + ".", + "template_type_code", + "from", + "documents", + "as", + "t1", + "join", + "templates", + "as", + "t2", + "on", + "t1", + ".", + "template_id", + "=", + "t2", + ".", + "template_id", + "group", + "by", + "t1", + ".", + "template_id", + "order", + "by", + "count", + "(", + "*", + ")", + "desc", + "limit", + "value" + ], + "question": "Return the id and type code of the template that is used for the greatest number of documents.", + "question_toks": [ + "Return", + "the", + "id", + "and", + "type", + "code", + "of", + "the", + "template", + "that", + "is", + "used", + "for", + "the", + "greatest", + "number", + "of", + "documents", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ], + [ + "table_unit", + 1 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 10, + false + ], + null + ], + [ + 0, + 3, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 10, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 5, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 10, + false + ] + ], + "having": [], + "orderBy": [ + "desc", + [ + [ + 0, + [ + 3, + 0, + false + ], + null + ] + ] + ], + "limit": 1, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "cre_Doc_Template_Mgt", + "query": "SELECT template_id FROM Documents GROUP BY template_id HAVING count(*) > 1", + "query_toks": [ + "SELECT", + "template_id", + "FROM", + "Documents", + "GROUP", + "BY", + "template_id", + "HAVING", + "count", + "(", + "*", + ")", + ">", + "1" + ], + "query_toks_no_value": [ + "select", + "template_id", + "from", + "documents", + "group", + "by", + "template_id", + "having", + "count", + "(", + "*", + ")", + ">", + "value" + ], + "question": "Show ids for all templates that are used by more than one document.", + "question_toks": [ + "Show", + "ids", + "for", + "all", + "templates", + "that", + "are", + "used", + "by", + "more", + "than", + "one", + "document", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 10, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 10, + false + ] + ], + "having": [ + [ + false, + 3, + [ + 0, + [ + 3, + 0, + false + ], + null + ], + 1.0, + null + ] + ], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "cre_Doc_Template_Mgt", + "query": "SELECT template_id FROM Documents GROUP BY template_id HAVING count(*) > 1", + "query_toks": [ + "SELECT", + "template_id", + "FROM", + "Documents", + "GROUP", + "BY", + "template_id", + "HAVING", + "count", + "(", + "*", + ")", + ">", + "1" + ], + "query_toks_no_value": [ + "select", + "template_id", + "from", + "documents", + "group", + "by", + "template_id", + "having", + "count", + "(", + "*", + ")", + ">", + "value" + ], + "question": "What are the template ids of any templates used in more than a single document?", + "question_toks": [ + "What", + "are", + "the", + "template", + "ids", + "of", + "any", + "templates", + "used", + "in", + "more", + "than", + "a", + "single", + "document", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 10, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 10, + false + ] + ], + "having": [ + [ + false, + 3, + [ + 0, + [ + 3, + 0, + false + ], + null + ], + 1.0, + null + ] + ], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "cre_Doc_Template_Mgt", + "query": "SELECT template_id FROM Templates EXCEPT SELECT template_id FROM Documents", + "query_toks": [ + "SELECT", + "template_id", + "FROM", + "Templates", + "EXCEPT", + "SELECT", + "template_id", + "FROM", + "Documents" + ], + "query_toks_no_value": [ + "select", + "template_id", + "from", + "templates", + "except", + "select", + "template_id", + "from", + "documents" + ], + "question": "Show ids for all templates not used by any document.", + "question_toks": [ + "Show", + "ids", + "for", + "all", + "templates", + "not", + "used", + "by", + "any", + "document", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 3, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 10, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + } + }, + { + "db_id": "cre_Doc_Template_Mgt", + "query": "SELECT template_id FROM Templates EXCEPT SELECT template_id FROM Documents", + "query_toks": [ + "SELECT", + "template_id", + "FROM", + "Templates", + "EXCEPT", + "SELECT", + "template_id", + "FROM", + "Documents" + ], + "query_toks_no_value": [ + "select", + "template_id", + "from", + "templates", + "except", + "select", + "template_id", + "from", + "documents" + ], + "question": "What are the ids for templates that are not used in any documents?", + "question_toks": [ + "What", + "are", + "the", + "ids", + "for", + "templates", + "that", + "are", + "not", + "used", + "in", + "any", + "documents", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 3, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 10, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + } + }, + { + "db_id": "cre_Doc_Template_Mgt", + "query": "SELECT count(*) FROM Templates", + "query_toks": [ + "SELECT", + "count", + "(", + "*", + ")", + "FROM", + "Templates" + ], + "query_toks_no_value": [ + "select", + "count", + "(", + "*", + ")", + "from", + "templates" + ], + "question": "How many templates do we have?", + "question_toks": [ + "How", + "many", + "templates", + "do", + "we", + "have", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 3, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "cre_Doc_Template_Mgt", + "query": "SELECT count(*) FROM Templates", + "query_toks": [ + "SELECT", + "count", + "(", + "*", + ")", + "FROM", + "Templates" + ], + "query_toks_no_value": [ + "select", + "count", + "(", + "*", + ")", + "from", + "templates" + ], + "question": "Count the number of templates.", + "question_toks": [ + "Count", + "the", + "number", + "of", + "templates", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 3, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "cre_Doc_Template_Mgt", + "query": "SELECT template_id , version_number , template_type_code FROM Templates", + "query_toks": [ + "SELECT", + "template_id", + ",", + "version_number", + ",", + "template_type_code", + "FROM", + "Templates" + ], + "query_toks_no_value": [ + "select", + "template_id", + ",", + "version_number", + ",", + "template_type_code", + "from", + "templates" + ], + "question": "Show template ids, version numbers, and template type codes for all templates.", + "question_toks": [ + "Show", + "template", + "ids", + ",", + "version", + "numbers", + ",", + "and", + "template", + "type", + "codes", + "for", + "all", + "templates", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 3, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 4, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 5, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "cre_Doc_Template_Mgt", + "query": "SELECT template_id , version_number , template_type_code FROM Templates", + "query_toks": [ + "SELECT", + "template_id", + ",", + "version_number", + ",", + "template_type_code", + "FROM", + "Templates" + ], + "query_toks_no_value": [ + "select", + "template_id", + ",", + "version_number", + ",", + "template_type_code", + "from", + "templates" + ], + "question": "What are the ids, version numbers, and type codes for each template?", + "question_toks": [ + "What", + "are", + "the", + "ids", + ",", + "version", + "numbers", + ",", + "and", + "type", + "codes", + "for", + "each", + "template", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 3, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 4, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 5, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "cre_Doc_Template_Mgt", + "query": "SELECT DISTINCT template_type_code FROM Templates", + "query_toks": [ + "SELECT", + "DISTINCT", + "template_type_code", + "FROM", + "Templates" + ], + "query_toks_no_value": [ + "select", + "distinct", + "template_type_code", + "from", + "templates" + ], + "question": "Show all distinct template type codes for all templates.", + "question_toks": [ + "Show", + "all", + "distinct", + "template", + "type", + "codes", + "for", + "all", + "templates", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ] + ], + "conds": [] + }, + "select": [ + true, + [ + [ + 0, + [ + 0, + [ + 0, + 5, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "cre_Doc_Template_Mgt", + "query": "SELECT DISTINCT template_type_code FROM Templates", + "query_toks": [ + "SELECT", + "DISTINCT", + "template_type_code", + "FROM", + "Templates" + ], + "query_toks_no_value": [ + "select", + "distinct", + "template_type_code", + "from", + "templates" + ], + "question": "What are the different template type codes?", + "question_toks": [ + "What", + "are", + "the", + "different", + "template", + "type", + "codes", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ] + ], + "conds": [] + }, + "select": [ + true, + [ + [ + 0, + [ + 0, + [ + 0, + 5, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "cre_Doc_Template_Mgt", + "query": "SELECT template_id FROM Templates WHERE template_type_code = \"PP\" OR template_type_code = \"PPT\"", + "query_toks": [ + "SELECT", + "template_id", + "FROM", + "Templates", + "WHERE", + "template_type_code", + "=", + "``", + "PP", + "''", + "OR", + "template_type_code", + "=", + "``", + "PPT", + "''" + ], + "query_toks_no_value": [ + "select", + "template_id", + "from", + "templates", + "where", + "template_type_code", + "=", + "value", + "or", + "template_type_code", + "=", + "value" + ], + "question": "What are the ids of templates with template type code PP or PPT?", + "question_toks": [ + "What", + "are", + "the", + "ids", + "of", + "templates", + "with", + "template", + "type", + "code", + "PP", + "or", + "PPT", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 3, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 5, + false + ], + null + ], + "\"PP\"", + null + ], + "or", + [ + false, + 2, + [ + 0, + [ + 0, + 5, + false + ], + null + ], + "\"PPT\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "cre_Doc_Template_Mgt", + "query": "SELECT template_id FROM Templates WHERE template_type_code = \"PP\" OR template_type_code = \"PPT\"", + "query_toks": [ + "SELECT", + "template_id", + "FROM", + "Templates", + "WHERE", + "template_type_code", + "=", + "``", + "PP", + "''", + "OR", + "template_type_code", + "=", + "``", + "PPT", + "''" + ], + "query_toks_no_value": [ + "select", + "template_id", + "from", + "templates", + "where", + "template_type_code", + "=", + "value", + "or", + "template_type_code", + "=", + "value" + ], + "question": "Return the ids of templates that have the code PP or PPT.", + "question_toks": [ + "Return", + "the", + "ids", + "of", + "templates", + "that", + "have", + "the", + "code", + "PP", + "or", + "PPT", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 3, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 5, + false + ], + null + ], + "\"PP\"", + null + ], + "or", + [ + false, + 2, + [ + 0, + [ + 0, + 5, + false + ], + null + ], + "\"PPT\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "cre_Doc_Template_Mgt", + "query": "SELECT count(*) FROM Templates WHERE template_type_code = \"CV\"", + "query_toks": [ + "SELECT", + "count", + "(", + "*", + ")", + "FROM", + "Templates", + "WHERE", + "template_type_code", + "=", + "``", + "CV", + "''" + ], + "query_toks_no_value": [ + "select", + "count", + "(", + "*", + ")", + "from", + "templates", + "where", + "template_type_code", + "=", + "value" + ], + "question": "How many templates have template type code CV?", + "question_toks": [ + "How", + "many", + "templates", + "have", + "template", + "type", + "code", + "CV", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 3, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 5, + false + ], + null + ], + "\"CV\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "cre_Doc_Template_Mgt", + "query": "SELECT count(*) FROM Templates WHERE template_type_code = \"CV\"", + "query_toks": [ + "SELECT", + "count", + "(", + "*", + ")", + "FROM", + "Templates", + "WHERE", + "template_type_code", + "=", + "``", + "CV", + "''" + ], + "query_toks_no_value": [ + "select", + "count", + "(", + "*", + ")", + "from", + "templates", + "where", + "template_type_code", + "=", + "value" + ], + "question": "Count the number of templates of the type CV.", + "question_toks": [ + "Count", + "the", + "number", + "of", + "templates", + "of", + "the", + "type", + "CV", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 3, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 5, + false + ], + null + ], + "\"CV\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "cre_Doc_Template_Mgt", + "query": "SELECT version_number , template_type_code FROM Templates WHERE version_number > 5", + "query_toks": [ + "SELECT", + "version_number", + ",", + "template_type_code", + "FROM", + "Templates", + "WHERE", + "version_number", + ">", + "5" + ], + "query_toks_no_value": [ + "select", + "version_number", + ",", + "template_type_code", + "from", + "templates", + "where", + "version_number", + ">", + "value" + ], + "question": "What is the version number and template type code for the template with version number later than 5?", + "question_toks": [ + "What", + "is", + "the", + "version", + "number", + "and", + "template", + "type", + "code", + "for", + "the", + "template", + "with", + "version", + "number", + "later", + "than", + "5", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 4, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 5, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 3, + [ + 0, + [ + 0, + 4, + false + ], + null + ], + 5.0, + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "cre_Doc_Template_Mgt", + "query": "SELECT version_number , template_type_code FROM Templates WHERE version_number > 5", + "query_toks": [ + "SELECT", + "version_number", + ",", + "template_type_code", + "FROM", + "Templates", + "WHERE", + "version_number", + ">", + "5" + ], + "query_toks_no_value": [ + "select", + "version_number", + ",", + "template_type_code", + "from", + "templates", + "where", + "version_number", + ">", + "value" + ], + "question": "Return the version numbers and template type codes of templates with a version number greater than 5.", + "question_toks": [ + "Return", + "the", + "version", + "numbers", + "and", + "template", + "type", + "codes", + "of", + "templates", + "with", + "a", + "version", + "number", + "greater", + "than", + "5", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 4, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 5, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 3, + [ + 0, + [ + 0, + 4, + false + ], + null + ], + 5.0, + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "cre_Doc_Template_Mgt", + "query": "SELECT template_type_code , count(*) FROM Templates GROUP BY template_type_code", + "query_toks": [ + "SELECT", + "template_type_code", + ",", + "count", + "(", + "*", + ")", + "FROM", + "Templates", + "GROUP", + "BY", + "template_type_code" + ], + "query_toks_no_value": [ + "select", + "template_type_code", + ",", + "count", + "(", + "*", + ")", + "from", + "templates", + "group", + "by", + "template_type_code" + ], + "question": "Show all template type codes and number of templates for each.", + "question_toks": [ + "Show", + "all", + "template", + "type", + "codes", + "and", + "number", + "of", + "templates", + "for", + "each", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 5, + false + ], + null + ] + ], + [ + 3, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 5, + false + ] + ], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "cre_Doc_Template_Mgt", + "query": "SELECT template_type_code , count(*) FROM Templates GROUP BY template_type_code", + "query_toks": [ + "SELECT", + "template_type_code", + ",", + "count", + "(", + "*", + ")", + "FROM", + "Templates", + "GROUP", + "BY", + "template_type_code" + ], + "query_toks_no_value": [ + "select", + "template_type_code", + ",", + "count", + "(", + "*", + ")", + "from", + "templates", + "group", + "by", + "template_type_code" + ], + "question": "What are the different template type codes, and how many templates correspond to each?", + "question_toks": [ + "What", + "are", + "the", + "different", + "template", + "type", + "codes", + ",", + "and", + "how", + "many", + "templates", + "correspond", + "to", + "each", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 5, + false + ], + null + ] + ], + [ + 3, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 5, + false + ] + ], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "cre_Doc_Template_Mgt", + "query": "SELECT template_type_code FROM Templates GROUP BY template_type_code ORDER BY count(*) DESC LIMIT 1", + "query_toks": [ + "SELECT", + "template_type_code", + "FROM", + "Templates", + "GROUP", + "BY", + "template_type_code", + "ORDER", + "BY", + "count", + "(", + "*", + ")", + "DESC", + "LIMIT", + "1" + ], + "query_toks_no_value": [ + "select", + "template_type_code", + "from", + "templates", + "group", + "by", + "template_type_code", + "order", + "by", + "count", + "(", + "*", + ")", + "desc", + "limit", + "value" + ], + "question": "Which template type code has most number of templates?", + "question_toks": [ + "Which", + "template", + "type", + "code", + "has", + "most", + "number", + "of", + "templates", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 5, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 5, + false + ] + ], + "having": [], + "orderBy": [ + "desc", + [ + [ + 0, + [ + 3, + 0, + false + ], + null + ] + ] + ], + "limit": 1, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "cre_Doc_Template_Mgt", + "query": "SELECT template_type_code FROM Templates GROUP BY template_type_code ORDER BY count(*) DESC LIMIT 1", + "query_toks": [ + "SELECT", + "template_type_code", + "FROM", + "Templates", + "GROUP", + "BY", + "template_type_code", + "ORDER", + "BY", + "count", + "(", + "*", + ")", + "DESC", + "LIMIT", + "1" + ], + "query_toks_no_value": [ + "select", + "template_type_code", + "from", + "templates", + "group", + "by", + "template_type_code", + "order", + "by", + "count", + "(", + "*", + ")", + "desc", + "limit", + "value" + ], + "question": "Return the type code of the template type that the most templates belong to.", + "question_toks": [ + "Return", + "the", + "type", + "code", + "of", + "the", + "template", + "type", + "that", + "the", + "most", + "templates", + "belong", + "to", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 5, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 5, + false + ] + ], + "having": [], + "orderBy": [ + "desc", + [ + [ + 0, + [ + 3, + 0, + false + ], + null + ] + ] + ], + "limit": 1, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "cre_Doc_Template_Mgt", + "query": "SELECT template_type_code FROM Templates GROUP BY template_type_code HAVING count(*) < 3", + "query_toks": [ + "SELECT", + "template_type_code", + "FROM", + "Templates", + "GROUP", + "BY", + "template_type_code", + "HAVING", + "count", + "(", + "*", + ")", + "<", + "3" + ], + "query_toks_no_value": [ + "select", + "template_type_code", + "from", + "templates", + "group", + "by", + "template_type_code", + "having", + "count", + "(", + "*", + ")", + "<", + "value" + ], + "question": "Show all template type codes with less than three templates.", + "question_toks": [ + "Show", + "all", + "template", + "type", + "codes", + "with", + "less", + "than", + "three", + "templates", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 5, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 5, + false + ] + ], + "having": [ + [ + false, + 4, + [ + 0, + [ + 3, + 0, + false + ], + null + ], + 3.0, + null + ] + ], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "cre_Doc_Template_Mgt", + "query": "SELECT template_type_code FROM Templates GROUP BY template_type_code HAVING count(*) < 3", + "query_toks": [ + "SELECT", + "template_type_code", + "FROM", + "Templates", + "GROUP", + "BY", + "template_type_code", + "HAVING", + "count", + "(", + "*", + ")", + "<", + "3" + ], + "query_toks_no_value": [ + "select", + "template_type_code", + "from", + "templates", + "group", + "by", + "template_type_code", + "having", + "count", + "(", + "*", + ")", + "<", + "value" + ], + "question": "What are the codes of template types that have fewer than 3 templates?", + "question_toks": [ + "What", + "are", + "the", + "codes", + "of", + "template", + "types", + "that", + "have", + "fewer", + "than", + "3", + "templates", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 5, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 5, + false + ] + ], + "having": [ + [ + false, + 4, + [ + 0, + [ + 3, + 0, + false + ], + null + ], + 3.0, + null + ] + ], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "cre_Doc_Template_Mgt", + "query": "SELECT min(Version_Number) , template_type_code FROM Templates", + "query_toks": [ + "SELECT", + "min", + "(", + "Version_Number", + ")", + ",", + "template_type_code", + "FROM", + "Templates" + ], + "query_toks_no_value": [ + "select", + "min", + "(", + "version_number", + ")", + ",", + "template_type_code", + "from", + "templates" + ], + "question": "What the smallest version number and its template type code?", + "question_toks": [ + "What", + "the", + "smallest", + "version", + "number", + "and", + "its", + "template", + "type", + "code", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 2, + [ + 0, + [ + 0, + 4, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 5, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "cre_Doc_Template_Mgt", + "query": "SELECT min(Version_Number) , template_type_code FROM Templates", + "query_toks": [ + "SELECT", + "min", + "(", + "Version_Number", + ")", + ",", + "template_type_code", + "FROM", + "Templates" + ], + "query_toks_no_value": [ + "select", + "min", + "(", + "version_number", + ")", + ",", + "template_type_code", + "from", + "templates" + ], + "question": "Return the lowest version number, along with its corresponding template type code.", + "question_toks": [ + "Return", + "the", + "lowest", + "version", + "number", + ",", + "along", + "with", + "its", + "corresponding", + "template", + "type", + "code", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 2, + [ + 0, + [ + 0, + 4, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 5, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "cre_Doc_Template_Mgt", + "query": "SELECT T1.template_type_code FROM Templates AS T1 JOIN Documents AS T2 ON T1.template_id = T2.template_id WHERE T2.document_name = \"Data base\"", + "query_toks": [ + "SELECT", + "T1.template_type_code", + "FROM", + "Templates", + "AS", + "T1", + "JOIN", + "Documents", + "AS", + "T2", + "ON", + "T1.template_id", + "=", + "T2.template_id", + "WHERE", + "T2.document_name", + "=", + "``", + "Data", + "base", + "''" + ], + "query_toks_no_value": [ + "select", + "t1", + ".", + "template_type_code", + "from", + "templates", + "as", + "t1", + "join", + "documents", + "as", + "t2", + "on", + "t1", + ".", + "template_id", + "=", + "t2", + ".", + "template_id", + "where", + "t2", + ".", + "document_name", + "=", + "value" + ], + "question": "What is the template type code of the template used by document with the name \"Data base\"?", + "question_toks": [ + "What", + "is", + "the", + "template", + "type", + "code", + "of", + "the", + "template", + "used", + "by", + "document", + "with", + "the", + "name", + "``", + "Data", + "base", + "''", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ], + [ + "table_unit", + 2 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 3, + false + ], + null + ], + [ + 0, + 10, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 5, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 11, + false + ], + null + ], + "\"Data base\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "cre_Doc_Template_Mgt", + "query": "SELECT T1.template_type_code FROM Templates AS T1 JOIN Documents AS T2 ON T1.template_id = T2.template_id WHERE T2.document_name = \"Data base\"", + "query_toks": [ + "SELECT", + "T1.template_type_code", + "FROM", + "Templates", + "AS", + "T1", + "JOIN", + "Documents", + "AS", + "T2", + "ON", + "T1.template_id", + "=", + "T2.template_id", + "WHERE", + "T2.document_name", + "=", + "``", + "Data", + "base", + "''" + ], + "query_toks_no_value": [ + "select", + "t1", + ".", + "template_type_code", + "from", + "templates", + "as", + "t1", + "join", + "documents", + "as", + "t2", + "on", + "t1", + ".", + "template_id", + "=", + "t2", + ".", + "template_id", + "where", + "t2", + ".", + "document_name", + "=", + "value" + ], + "question": "Return the template type code of the template that is used by a document named Data base.", + "question_toks": [ + "Return", + "the", + "template", + "type", + "code", + "of", + "the", + "template", + "that", + "is", + "used", + "by", + "a", + "document", + "named", + "Data", + "base", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ], + [ + "table_unit", + 2 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 3, + false + ], + null + ], + [ + 0, + 10, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 5, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 11, + false + ], + null + ], + "\"Data base\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "cre_Doc_Template_Mgt", + "query": "SELECT T2.document_name FROM Templates AS T1 JOIN Documents AS T2 ON T1.template_id = T2.template_id WHERE T1.template_type_code = \"BK\"", + "query_toks": [ + "SELECT", + "T2.document_name", + "FROM", + "Templates", + "AS", + "T1", + "JOIN", + "Documents", + "AS", + "T2", + "ON", + "T1.template_id", + "=", + "T2.template_id", + "WHERE", + "T1.template_type_code", + "=", + "``", + "BK", + "''" + ], + "query_toks_no_value": [ + "select", + "t2", + ".", + "document_name", + "from", + "templates", + "as", + "t1", + "join", + "documents", + "as", + "t2", + "on", + "t1", + ".", + "template_id", + "=", + "t2", + ".", + "template_id", + "where", + "t1", + ".", + "template_type_code", + "=", + "value" + ], + "question": "Show all document names using templates with template type code BK.", + "question_toks": [ + "Show", + "all", + "document", + "names", + "using", + "templates", + "with", + "template", + "type", + "code", + "BK", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ], + [ + "table_unit", + 2 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 3, + false + ], + null + ], + [ + 0, + 10, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 11, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 5, + false + ], + null + ], + "\"BK\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "cre_Doc_Template_Mgt", + "query": "SELECT T2.document_name FROM Templates AS T1 JOIN Documents AS T2 ON T1.template_id = T2.template_id WHERE T1.template_type_code = \"BK\"", + "query_toks": [ + "SELECT", + "T2.document_name", + "FROM", + "Templates", + "AS", + "T1", + "JOIN", + "Documents", + "AS", + "T2", + "ON", + "T1.template_id", + "=", + "T2.template_id", + "WHERE", + "T1.template_type_code", + "=", + "``", + "BK", + "''" + ], + "query_toks_no_value": [ + "select", + "t2", + ".", + "document_name", + "from", + "templates", + "as", + "t1", + "join", + "documents", + "as", + "t2", + "on", + "t1", + ".", + "template_id", + "=", + "t2", + ".", + "template_id", + "where", + "t1", + ".", + "template_type_code", + "=", + "value" + ], + "question": "What are the names of documents that use templates with the code BK?", + "question_toks": [ + "What", + "are", + "the", + "names", + "of", + "documents", + "that", + "use", + "templates", + "with", + "the", + "code", + "BK", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ], + [ + "table_unit", + 2 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 3, + false + ], + null + ], + [ + 0, + 10, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 11, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 5, + false + ], + null + ], + "\"BK\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "cre_Doc_Template_Mgt", + "query": "SELECT T1.template_type_code , count(*) FROM Templates AS T1 JOIN Documents AS T2 ON T1.template_id = T2.template_id GROUP BY T1.template_type_code", + "query_toks": [ + "SELECT", + "T1.template_type_code", + ",", + "count", + "(", + "*", + ")", + "FROM", + "Templates", + "AS", + "T1", + "JOIN", + "Documents", + "AS", + "T2", + "ON", + "T1.template_id", + "=", + "T2.template_id", + "GROUP", + "BY", + "T1.template_type_code" + ], + "query_toks_no_value": [ + "select", + "t1", + ".", + "template_type_code", + ",", + "count", + "(", + "*", + ")", + "from", + "templates", + "as", + "t1", + "join", + "documents", + "as", + "t2", + "on", + "t1", + ".", + "template_id", + "=", + "t2", + ".", + "template_id", + "group", + "by", + "t1", + ".", + "template_type_code" + ], + "question": "Show all template type codes and the number of documents using each type.", + "question_toks": [ + "Show", + "all", + "template", + "type", + "codes", + "and", + "the", + "number", + "of", + "documents", + "using", + "each", + "type", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ], + [ + "table_unit", + 2 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 3, + false + ], + null + ], + [ + 0, + 10, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 5, + false + ], + null + ] + ], + [ + 3, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 5, + false + ] + ], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "cre_Doc_Template_Mgt", + "query": "SELECT T1.template_type_code , count(*) FROM Templates AS T1 JOIN Documents AS T2 ON T1.template_id = T2.template_id GROUP BY T1.template_type_code", + "query_toks": [ + "SELECT", + "T1.template_type_code", + ",", + "count", + "(", + "*", + ")", + "FROM", + "Templates", + "AS", + "T1", + "JOIN", + "Documents", + "AS", + "T2", + "ON", + "T1.template_id", + "=", + "T2.template_id", + "GROUP", + "BY", + "T1.template_type_code" + ], + "query_toks_no_value": [ + "select", + "t1", + ".", + "template_type_code", + ",", + "count", + "(", + "*", + ")", + "from", + "templates", + "as", + "t1", + "join", + "documents", + "as", + "t2", + "on", + "t1", + ".", + "template_id", + "=", + "t2", + ".", + "template_id", + "group", + "by", + "t1", + ".", + "template_type_code" + ], + "question": "What are the different template type codes, and how many documents use each type?", + "question_toks": [ + "What", + "are", + "the", + "different", + "template", + "type", + "codes", + ",", + "and", + "how", + "many", + "documents", + "use", + "each", + "type", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ], + [ + "table_unit", + 2 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 3, + false + ], + null + ], + [ + 0, + 10, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 5, + false + ], + null + ] + ], + [ + 3, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 5, + false + ] + ], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "cre_Doc_Template_Mgt", + "query": "SELECT T1.template_type_code FROM Templates AS T1 JOIN Documents AS T2 ON T1.template_id = T2.template_id GROUP BY T1.template_type_code ORDER BY count(*) DESC LIMIT 1", + "query_toks": [ + "SELECT", + "T1.template_type_code", + "FROM", + "Templates", + "AS", + "T1", + "JOIN", + "Documents", + "AS", + "T2", + "ON", + "T1.template_id", + "=", + "T2.template_id", + "GROUP", + "BY", + "T1.template_type_code", + "ORDER", + "BY", + "count", + "(", + "*", + ")", + "DESC", + "LIMIT", + "1" + ], + "query_toks_no_value": [ + "select", + "t1", + ".", + "template_type_code", + "from", + "templates", + "as", + "t1", + "join", + "documents", + "as", + "t2", + "on", + "t1", + ".", + "template_id", + "=", + "t2", + ".", + "template_id", + "group", + "by", + "t1", + ".", + "template_type_code", + "order", + "by", + "count", + "(", + "*", + ")", + "desc", + "limit", + "value" + ], + "question": "Which template type code is used by most number of documents?", + "question_toks": [ + "Which", + "template", + "type", + "code", + "is", + "used", + "by", + "most", + "number", + "of", + "documents", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ], + [ + "table_unit", + 2 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 3, + false + ], + null + ], + [ + 0, + 10, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 5, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 5, + false + ] + ], + "having": [], + "orderBy": [ + "desc", + [ + [ + 0, + [ + 3, + 0, + false + ], + null + ] + ] + ], + "limit": 1, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "cre_Doc_Template_Mgt", + "query": "SELECT T1.template_type_code FROM Templates AS T1 JOIN Documents AS T2 ON T1.template_id = T2.template_id GROUP BY T1.template_type_code ORDER BY count(*) DESC LIMIT 1", + "query_toks": [ + "SELECT", + "T1.template_type_code", + "FROM", + "Templates", + "AS", + "T1", + "JOIN", + "Documents", + "AS", + "T2", + "ON", + "T1.template_id", + "=", + "T2.template_id", + "GROUP", + "BY", + "T1.template_type_code", + "ORDER", + "BY", + "count", + "(", + "*", + ")", + "DESC", + "LIMIT", + "1" + ], + "query_toks_no_value": [ + "select", + "t1", + ".", + "template_type_code", + "from", + "templates", + "as", + "t1", + "join", + "documents", + "as", + "t2", + "on", + "t1", + ".", + "template_id", + "=", + "t2", + ".", + "template_id", + "group", + "by", + "t1", + ".", + "template_type_code", + "order", + "by", + "count", + "(", + "*", + ")", + "desc", + "limit", + "value" + ], + "question": "Return the code of the template type that is most commonly used in documents.", + "question_toks": [ + "Return", + "the", + "code", + "of", + "the", + "template", + "type", + "that", + "is", + "most", + "commonly", + "used", + "in", + "documents", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ], + [ + "table_unit", + 2 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 3, + false + ], + null + ], + [ + 0, + 10, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 5, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 5, + false + ] + ], + "having": [], + "orderBy": [ + "desc", + [ + [ + 0, + [ + 3, + 0, + false + ], + null + ] + ] + ], + "limit": 1, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "cre_Doc_Template_Mgt", + "query": "SELECT template_type_code FROM Templates EXCEPT SELECT template_type_code FROM Templates AS T1 JOIN Documents AS T2 ON T1.template_id = T2.template_id", + "query_toks": [ + "SELECT", + "template_type_code", + "FROM", + "Templates", + "EXCEPT", + "SELECT", + "template_type_code", + "FROM", + "Templates", + "AS", + "T1", + "JOIN", + "Documents", + "AS", + "T2", + "ON", + "T1.template_id", + "=", + "T2.template_id" + ], + "query_toks_no_value": [ + "select", + "template_type_code", + "from", + "templates", + "except", + "select", + "template_type_code", + "from", + "templates", + "as", + "t1", + "join", + "documents", + "as", + "t2", + "on", + "t1", + ".", + "template_id", + "=", + "t2", + ".", + "template_id" + ], + "question": "Show all template type codes that are not used by any document.", + "question_toks": [ + "Show", + "all", + "template", + "type", + "codes", + "that", + "are", + "not", + "used", + "by", + "any", + "document", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 5, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ], + [ + "table_unit", + 2 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 3, + false + ], + null + ], + [ + 0, + 10, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 5, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + } + }, + { + "db_id": "cre_Doc_Template_Mgt", + "query": "SELECT template_type_code FROM Templates EXCEPT SELECT template_type_code FROM Templates AS T1 JOIN Documents AS T2 ON T1.template_id = T2.template_id", + "query_toks": [ + "SELECT", + "template_type_code", + "FROM", + "Templates", + "EXCEPT", + "SELECT", + "template_type_code", + "FROM", + "Templates", + "AS", + "T1", + "JOIN", + "Documents", + "AS", + "T2", + "ON", + "T1.template_id", + "=", + "T2.template_id" + ], + "query_toks_no_value": [ + "select", + "template_type_code", + "from", + "templates", + "except", + "select", + "template_type_code", + "from", + "templates", + "as", + "t1", + "join", + "documents", + "as", + "t2", + "on", + "t1", + ".", + "template_id", + "=", + "t2", + ".", + "template_id" + ], + "question": "What are the codes of template types that are not used for any document?", + "question_toks": [ + "What", + "are", + "the", + "codes", + "of", + "template", + "types", + "that", + "are", + "not", + "used", + "for", + "any", + "document", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 5, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ], + [ + "table_unit", + 2 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 3, + false + ], + null + ], + [ + 0, + 10, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 5, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + } + }, + { + "db_id": "cre_Doc_Template_Mgt", + "query": "SELECT template_type_code , template_type_description FROM Ref_template_types", + "query_toks": [ + "SELECT", + "template_type_code", + ",", + "template_type_description", + "FROM", + "Ref_template_types" + ], + "query_toks_no_value": [ + "select", + "template_type_code", + ",", + "template_type_description", + "from", + "ref_template_types" + ], + "question": "Show all template type codes and descriptions.", + "question_toks": [ + "Show", + "all", + "template", + "type", + "codes", + "and", + "descriptions", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 1, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 2, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "cre_Doc_Template_Mgt", + "query": "SELECT template_type_code , template_type_description FROM Ref_template_types", + "query_toks": [ + "SELECT", + "template_type_code", + ",", + "template_type_description", + "FROM", + "Ref_template_types" + ], + "query_toks_no_value": [ + "select", + "template_type_code", + ",", + "template_type_description", + "from", + "ref_template_types" + ], + "question": "What are the type codes and descriptions for all template types?", + "question_toks": [ + "What", + "are", + "the", + "type", + "codes", + "and", + "descriptions", + "for", + "all", + "template", + "types", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 1, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 2, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "cre_Doc_Template_Mgt", + "query": "SELECT template_type_description FROM Ref_template_types WHERE template_type_code = \"AD\"", + "query_toks": [ + "SELECT", + "template_type_description", + "FROM", + "Ref_template_types", + "WHERE", + "template_type_code", + "=", + "``", + "AD", + "''" + ], + "query_toks_no_value": [ + "select", + "template_type_description", + "from", + "ref_template_types", + "where", + "template_type_code", + "=", + "value" + ], + "question": "What is the template type descriptions for template type code \"AD\".", + "question_toks": [ + "What", + "is", + "the", + "template", + "type", + "descriptions", + "for", + "template", + "type", + "code", + "``", + "AD", + "''", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 2, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 1, + false + ], + null + ], + "\"AD\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "cre_Doc_Template_Mgt", + "query": "SELECT template_type_description FROM Ref_template_types WHERE template_type_code = \"AD\"", + "query_toks": [ + "SELECT", + "template_type_description", + "FROM", + "Ref_template_types", + "WHERE", + "template_type_code", + "=", + "``", + "AD", + "''" + ], + "query_toks_no_value": [ + "select", + "template_type_description", + "from", + "ref_template_types", + "where", + "template_type_code", + "=", + "value" + ], + "question": "Return the template type description of the template type with the code AD.", + "question_toks": [ + "Return", + "the", + "template", + "type", + "description", + "of", + "the", + "template", + "type", + "with", + "the", + "code", + "AD", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 2, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 1, + false + ], + null + ], + "\"AD\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "cre_Doc_Template_Mgt", + "query": "SELECT template_type_code FROM Ref_template_types WHERE template_type_description = \"Book\"", + "query_toks": [ + "SELECT", + "template_type_code", + "FROM", + "Ref_template_types", + "WHERE", + "template_type_description", + "=", + "``", + "Book", + "''" + ], + "query_toks_no_value": [ + "select", + "template_type_code", + "from", + "ref_template_types", + "where", + "template_type_description", + "=", + "value" + ], + "question": "What is the template type code for template type description \"Book\".", + "question_toks": [ + "What", + "is", + "the", + "template", + "type", + "code", + "for", + "template", + "type", + "description", + "``", + "Book", + "''", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 1, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 2, + false + ], + null + ], + "\"Book\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "cre_Doc_Template_Mgt", + "query": "SELECT template_type_code FROM Ref_template_types WHERE template_type_description = \"Book\"", + "query_toks": [ + "SELECT", + "template_type_code", + "FROM", + "Ref_template_types", + "WHERE", + "template_type_description", + "=", + "``", + "Book", + "''" + ], + "query_toks_no_value": [ + "select", + "template_type_code", + "from", + "ref_template_types", + "where", + "template_type_description", + "=", + "value" + ], + "question": "Return the type code of the template type with the description \"Book\".", + "question_toks": [ + "Return", + "the", + "type", + "code", + "of", + "the", + "template", + "type", + "with", + "the", + "description", + "``", + "Book", + "''", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 1, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 2, + false + ], + null + ], + "\"Book\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "cre_Doc_Template_Mgt", + "query": "SELECT DISTINCT T1.template_type_description FROM Ref_template_types AS T1 JOIN Templates AS T2 ON T1.template_type_code = T2.template_type_code JOIN Documents AS T3 ON T2.Template_ID = T3.template_ID", + "query_toks": [ + "SELECT", + "DISTINCT", + "T1.template_type_description", + "FROM", + "Ref_template_types", + "AS", + "T1", + "JOIN", + "Templates", + "AS", + "T2", + "ON", + "T1.template_type_code", + "=", + "T2.template_type_code", + "JOIN", + "Documents", + "AS", + "T3", + "ON", + "T2.Template_ID", + "=", + "T3.template_ID" + ], + "query_toks_no_value": [ + "select", + "distinct", + "t1", + ".", + "template_type_description", + "from", + "ref_template_types", + "as", + "t1", + "join", + "templates", + "as", + "t2", + "on", + "t1", + ".", + "template_type_code", + "=", + "t2", + ".", + "template_type_code", + "join", + "documents", + "as", + "t3", + "on", + "t2", + ".", + "template_id", + "=", + "t3", + ".", + "template_id" + ], + "question": "What are the distinct template type descriptions for the templates ever used by any document?", + "question_toks": [ + "What", + "are", + "the", + "distinct", + "template", + "type", + "descriptions", + "for", + "the", + "templates", + "ever", + "used", + "by", + "any", + "document", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ], + [ + "table_unit", + 1 + ], + [ + "table_unit", + 2 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 1, + false + ], + null + ], + [ + 0, + 5, + false + ], + null + ], + "and", + [ + false, + 2, + [ + 0, + [ + 0, + 3, + false + ], + null + ], + [ + 0, + 10, + false + ], + null + ] + ] + }, + "select": [ + true, + [ + [ + 0, + [ + 0, + [ + 0, + 2, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "cre_Doc_Template_Mgt", + "query": "SELECT DISTINCT T1.template_type_description FROM Ref_template_types AS T1 JOIN Templates AS T2 ON T1.template_type_code = T2.template_type_code JOIN Documents AS T3 ON T2.Template_ID = T3.template_ID", + "query_toks": [ + "SELECT", + "DISTINCT", + "T1.template_type_description", + "FROM", + "Ref_template_types", + "AS", + "T1", + "JOIN", + "Templates", + "AS", + "T2", + "ON", + "T1.template_type_code", + "=", + "T2.template_type_code", + "JOIN", + "Documents", + "AS", + "T3", + "ON", + "T2.Template_ID", + "=", + "T3.template_ID" + ], + "query_toks_no_value": [ + "select", + "distinct", + "t1", + ".", + "template_type_description", + "from", + "ref_template_types", + "as", + "t1", + "join", + "templates", + "as", + "t2", + "on", + "t1", + ".", + "template_type_code", + "=", + "t2", + ".", + "template_type_code", + "join", + "documents", + "as", + "t3", + "on", + "t2", + ".", + "template_id", + "=", + "t3", + ".", + "template_id" + ], + "question": "Return the different descriptions for templates that have been used in a document.", + "question_toks": [ + "Return", + "the", + "different", + "descriptions", + "for", + "templates", + "that", + "have", + "been", + "used", + "in", + "a", + "document", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ], + [ + "table_unit", + 1 + ], + [ + "table_unit", + 2 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 1, + false + ], + null + ], + [ + 0, + 5, + false + ], + null + ], + "and", + [ + false, + 2, + [ + 0, + [ + 0, + 3, + false + ], + null + ], + [ + 0, + 10, + false + ], + null + ] + ] + }, + "select": [ + true, + [ + [ + 0, + [ + 0, + [ + 0, + 2, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "cre_Doc_Template_Mgt", + "query": "SELECT T2.template_id FROM Ref_template_types AS T1 JOIN Templates AS T2 ON T1.template_type_code = T2.template_type_code WHERE T1.template_type_description = \"Presentation\"", + "query_toks": [ + "SELECT", + "T2.template_id", + "FROM", + "Ref_template_types", + "AS", + "T1", + "JOIN", + "Templates", + "AS", + "T2", + "ON", + "T1.template_type_code", + "=", + "T2.template_type_code", + "WHERE", + "T1.template_type_description", + "=", + "``", + "Presentation", + "''" + ], + "query_toks_no_value": [ + "select", + "t2", + ".", + "template_id", + "from", + "ref_template_types", + "as", + "t1", + "join", + "templates", + "as", + "t2", + "on", + "t1", + ".", + "template_type_code", + "=", + "t2", + ".", + "template_type_code", + "where", + "t1", + ".", + "template_type_description", + "=", + "value" + ], + "question": "What are the template ids with template type description \"Presentation\".", + "question_toks": [ + "What", + "are", + "the", + "template", + "ids", + "with", + "template", + "type", + "description", + "``", + "Presentation", + "''", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ], + [ + "table_unit", + 1 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 1, + false + ], + null + ], + [ + 0, + 5, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 3, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 2, + false + ], + null + ], + "\"Presentation\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "cre_Doc_Template_Mgt", + "query": "SELECT T2.template_id FROM Ref_template_types AS T1 JOIN Templates AS T2 ON T1.template_type_code = T2.template_type_code WHERE T1.template_type_description = \"Presentation\"", + "query_toks": [ + "SELECT", + "T2.template_id", + "FROM", + "Ref_template_types", + "AS", + "T1", + "JOIN", + "Templates", + "AS", + "T2", + "ON", + "T1.template_type_code", + "=", + "T2.template_type_code", + "WHERE", + "T1.template_type_description", + "=", + "``", + "Presentation", + "''" + ], + "query_toks_no_value": [ + "select", + "t2", + ".", + "template_id", + "from", + "ref_template_types", + "as", + "t1", + "join", + "templates", + "as", + "t2", + "on", + "t1", + ".", + "template_type_code", + "=", + "t2", + ".", + "template_type_code", + "where", + "t1", + ".", + "template_type_description", + "=", + "value" + ], + "question": "Return the ids corresponding to templates with the description 'Presentation'.", + "question_toks": [ + "Return", + "the", + "ids", + "corresponding", + "to", + "templates", + "with", + "the", + "description", + "'Presentation", + "'", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ], + [ + "table_unit", + 1 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 1, + false + ], + null + ], + [ + 0, + 5, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 3, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 2, + false + ], + null + ], + "\"Presentation\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "cre_Doc_Template_Mgt", + "query": "SELECT count(*) FROM Paragraphs", + "query_toks": [ + "SELECT", + "count", + "(", + "*", + ")", + "FROM", + "Paragraphs" + ], + "query_toks_no_value": [ + "select", + "count", + "(", + "*", + ")", + "from", + "paragraphs" + ], + "question": "How many paragraphs in total?", + "question_toks": [ + "How", + "many", + "paragraphs", + "in", + "total", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 3 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 3, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "cre_Doc_Template_Mgt", + "query": "SELECT count(*) FROM Paragraphs", + "query_toks": [ + "SELECT", + "count", + "(", + "*", + ")", + "FROM", + "Paragraphs" + ], + "query_toks_no_value": [ + "select", + "count", + "(", + "*", + ")", + "from", + "paragraphs" + ], + "question": "Count the number of paragraphs.", + "question_toks": [ + "Count", + "the", + "number", + "of", + "paragraphs", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 3 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 3, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "cre_Doc_Template_Mgt", + "query": "SELECT count(*) FROM Paragraphs AS T1 JOIN Documents AS T2 ON T1.document_ID = T2.document_ID WHERE T2.document_name = 'Summer Show'", + "query_toks": [ + "SELECT", + "count", + "(", + "*", + ")", + "FROM", + "Paragraphs", + "AS", + "T1", + "JOIN", + "Documents", + "AS", + "T2", + "ON", + "T1.document_ID", + "=", + "T2.document_ID", + "WHERE", + "T2.document_name", + "=", + "'Summer", + "Show", + "'" + ], + "query_toks_no_value": [ + "select", + "count", + "(", + "*", + ")", + "from", + "paragraphs", + "as", + "t1", + "join", + "documents", + "as", + "t2", + "on", + "t1", + ".", + "document_id", + "=", + "t2", + ".", + "document_id", + "where", + "t2", + ".", + "document_name", + "=", + "value" + ], + "question": "How many paragraphs for the document with name 'Summer Show'?", + "question_toks": [ + "How", + "many", + "paragraphs", + "for", + "the", + "document", + "with", + "name", + "'Summer", + "Show", + "'", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 3 + ], + [ + "table_unit", + 2 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 15, + false + ], + null + ], + [ + 0, + 9, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 3, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 11, + false + ], + null + ], + "\"Summer Show\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "cre_Doc_Template_Mgt", + "query": "SELECT count(*) FROM Paragraphs AS T1 JOIN Documents AS T2 ON T1.document_ID = T2.document_ID WHERE T2.document_name = 'Summer Show'", + "query_toks": [ + "SELECT", + "count", + "(", + "*", + ")", + "FROM", + "Paragraphs", + "AS", + "T1", + "JOIN", + "Documents", + "AS", + "T2", + "ON", + "T1.document_ID", + "=", + "T2.document_ID", + "WHERE", + "T2.document_name", + "=", + "'Summer", + "Show", + "'" + ], + "query_toks_no_value": [ + "select", + "count", + "(", + "*", + ")", + "from", + "paragraphs", + "as", + "t1", + "join", + "documents", + "as", + "t2", + "on", + "t1", + ".", + "document_id", + "=", + "t2", + ".", + "document_id", + "where", + "t2", + ".", + "document_name", + "=", + "value" + ], + "question": "Count the number of paragraphs in the document named 'Summer Show'.", + "question_toks": [ + "Count", + "the", + "number", + "of", + "paragraphs", + "in", + "the", + "document", + "named", + "'Summer", + "Show", + "'", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 3 + ], + [ + "table_unit", + 2 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 15, + false + ], + null + ], + [ + 0, + 9, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 3, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 11, + false + ], + null + ], + "\"Summer Show\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "cre_Doc_Template_Mgt", + "query": "select other_details from paragraphs where paragraph_text like 'korea'", + "query_toks": [ + "select", + "other_details", + "from", + "paragraphs", + "where", + "paragraph_text", + "like", + "\"korea\"" + ], + "query_toks_no_value": [ + "select", + "other_details", + "from", + "paragraphs", + "where", + "paragraph_text", + "like", + "value" + ], + "question": "Show paragraph details for paragraph with text 'Korea ' .", + "question_toks": [ + "Show", + "paragraph", + "details", + "for", + "paragraph", + "with", + "text", + "'Korea", + "'", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 3 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 17, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 9, + [ + 0, + [ + 0, + 16, + false + ], + null + ], + "\"korea\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "cre_Doc_Template_Mgt", + "query": "select other_details from paragraphs where paragraph_text like 'korea'", + "query_toks": [ + "select", + "other_details", + "from", + "paragraphs", + "where", + "paragraph_text", + "like", + "\"korea\"" + ], + "query_toks_no_value": [ + "select", + "other_details", + "from", + "paragraphs", + "where", + "paragraph_text", + "like", + "value" + ], + "question": "What are the details for the paragraph that includes the text 'Korea ' ?", + "question_toks": [ + "What", + "are", + "the", + "details", + "for", + "the", + "paragraph", + "that", + "includes", + "the", + "text", + "'Korea", + "'", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 3 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 17, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 9, + [ + 0, + [ + 0, + 16, + false + ], + null + ], + "\"korea\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "cre_Doc_Template_Mgt", + "query": "SELECT T1.paragraph_id , T1.paragraph_text FROM Paragraphs AS T1 JOIN Documents AS T2 ON T1.document_id = T2.document_id WHERE T2.Document_Name = 'Welcome to NY'", + "query_toks": [ + "SELECT", + "T1.paragraph_id", + ",", + "T1.paragraph_text", + "FROM", + "Paragraphs", + "AS", + "T1", + "JOIN", + "Documents", + "AS", + "T2", + "ON", + "T1.document_id", + "=", + "T2.document_id", + "WHERE", + "T2.Document_Name", + "=", + "'Welcome", + "to", + "NY", + "'" + ], + "query_toks_no_value": [ + "select", + "t1", + ".", + "paragraph_id", + ",", + "t1", + ".", + "paragraph_text", + "from", + "paragraphs", + "as", + "t1", + "join", + "documents", + "as", + "t2", + "on", + "t1", + ".", + "document_id", + "=", + "t2", + ".", + "document_id", + "where", + "t2", + ".", + "document_name", + "=", + "value" + ], + "question": "Show all paragraph ids and texts for the document with name 'Welcome to NY'.", + "question_toks": [ + "Show", + "all", + "paragraph", + "ids", + "and", + "texts", + "for", + "the", + "document", + "with", + "name", + "'Welcome", + "to", + "NY", + "'", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 3 + ], + [ + "table_unit", + 2 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 15, + false + ], + null + ], + [ + 0, + 9, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 14, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 16, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 11, + false + ], + null + ], + "\"Welcome to NY\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "cre_Doc_Template_Mgt", + "query": "SELECT T1.paragraph_id , T1.paragraph_text FROM Paragraphs AS T1 JOIN Documents AS T2 ON T1.document_id = T2.document_id WHERE T2.Document_Name = 'Welcome to NY'", + "query_toks": [ + "SELECT", + "T1.paragraph_id", + ",", + "T1.paragraph_text", + "FROM", + "Paragraphs", + "AS", + "T1", + "JOIN", + "Documents", + "AS", + "T2", + "ON", + "T1.document_id", + "=", + "T2.document_id", + "WHERE", + "T2.Document_Name", + "=", + "'Welcome", + "to", + "NY", + "'" + ], + "query_toks_no_value": [ + "select", + "t1", + ".", + "paragraph_id", + ",", + "t1", + ".", + "paragraph_text", + "from", + "paragraphs", + "as", + "t1", + "join", + "documents", + "as", + "t2", + "on", + "t1", + ".", + "document_id", + "=", + "t2", + ".", + "document_id", + "where", + "t2", + ".", + "document_name", + "=", + "value" + ], + "question": "What are the ids and texts of paragraphs in the document titled 'Welcome to NY'?", + "question_toks": [ + "What", + "are", + "the", + "ids", + "and", + "texts", + "of", + "paragraphs", + "in", + "the", + "document", + "titled", + "'Welcome", + "to", + "NY", + "'", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 3 + ], + [ + "table_unit", + 2 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 15, + false + ], + null + ], + [ + 0, + 9, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 14, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 16, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 11, + false + ], + null + ], + "\"Welcome to NY\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "cre_Doc_Template_Mgt", + "query": "SELECT T1.paragraph_text FROM Paragraphs AS T1 JOIN Documents AS T2 ON T1.document_id = T2.document_id WHERE T2.document_name = \"Customer reviews\"", + "query_toks": [ + "SELECT", + "T1.paragraph_text", + "FROM", + "Paragraphs", + "AS", + "T1", + "JOIN", + "Documents", + "AS", + "T2", + "ON", + "T1.document_id", + "=", + "T2.document_id", + "WHERE", + "T2.document_name", + "=", + "``", + "Customer", + "reviews", + "''" + ], + "query_toks_no_value": [ + "select", + "t1", + ".", + "paragraph_text", + "from", + "paragraphs", + "as", + "t1", + "join", + "documents", + "as", + "t2", + "on", + "t1", + ".", + "document_id", + "=", + "t2", + ".", + "document_id", + "where", + "t2", + ".", + "document_name", + "=", + "value" + ], + "question": "Show all paragraph texts for the document \"Customer reviews\".", + "question_toks": [ + "Show", + "all", + "paragraph", + "texts", + "for", + "the", + "document", + "``", + "Customer", + "reviews", + "''", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 3 + ], + [ + "table_unit", + 2 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 15, + false + ], + null + ], + [ + 0, + 9, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 16, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 11, + false + ], + null + ], + "\"Customer reviews\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "cre_Doc_Template_Mgt", + "query": "SELECT T1.paragraph_text FROM Paragraphs AS T1 JOIN Documents AS T2 ON T1.document_id = T2.document_id WHERE T2.document_name = \"Customer reviews\"", + "query_toks": [ + "SELECT", + "T1.paragraph_text", + "FROM", + "Paragraphs", + "AS", + "T1", + "JOIN", + "Documents", + "AS", + "T2", + "ON", + "T1.document_id", + "=", + "T2.document_id", + "WHERE", + "T2.document_name", + "=", + "``", + "Customer", + "reviews", + "''" + ], + "query_toks_no_value": [ + "select", + "t1", + ".", + "paragraph_text", + "from", + "paragraphs", + "as", + "t1", + "join", + "documents", + "as", + "t2", + "on", + "t1", + ".", + "document_id", + "=", + "t2", + ".", + "document_id", + "where", + "t2", + ".", + "document_name", + "=", + "value" + ], + "question": "What are the paragraph texts for the document with the name 'Customer reviews'?", + "question_toks": [ + "What", + "are", + "the", + "paragraph", + "texts", + "for", + "the", + "document", + "with", + "the", + "name", + "'Customer", + "reviews", + "'", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 3 + ], + [ + "table_unit", + 2 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 15, + false + ], + null + ], + [ + 0, + 9, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 16, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 11, + false + ], + null + ], + "\"Customer reviews\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "cre_Doc_Template_Mgt", + "query": "SELECT document_id , count(*) FROM Paragraphs GROUP BY document_id ORDER BY document_id", + "query_toks": [ + "SELECT", + "document_id", + ",", + "count", + "(", + "*", + ")", + "FROM", + "Paragraphs", + "GROUP", + "BY", + "document_id", + "ORDER", + "BY", + "document_id" + ], + "query_toks_no_value": [ + "select", + "document_id", + ",", + "count", + "(", + "*", + ")", + "from", + "paragraphs", + "group", + "by", + "document_id", + "order", + "by", + "document_id" + ], + "question": "Show all document ids and the number of paragraphs in each document. Order by document id.", + "question_toks": [ + "Show", + "all", + "document", + "ids", + "and", + "the", + "number", + "of", + "paragraphs", + "in", + "each", + "document", + ".", + "Order", + "by", + "document", + "id", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 3 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 15, + false + ], + null + ] + ], + [ + 3, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 15, + false + ] + ], + "having": [], + "orderBy": [ + "asc", + [ + [ + 0, + [ + 0, + 15, + false + ], + null + ] + ] + ], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "cre_Doc_Template_Mgt", + "query": "SELECT document_id , count(*) FROM Paragraphs GROUP BY document_id ORDER BY document_id", + "query_toks": [ + "SELECT", + "document_id", + ",", + "count", + "(", + "*", + ")", + "FROM", + "Paragraphs", + "GROUP", + "BY", + "document_id", + "ORDER", + "BY", + "document_id" + ], + "query_toks_no_value": [ + "select", + "document_id", + ",", + "count", + "(", + "*", + ")", + "from", + "paragraphs", + "group", + "by", + "document_id", + "order", + "by", + "document_id" + ], + "question": "Return the different document ids along with the number of paragraphs corresponding to each, ordered by id.", + "question_toks": [ + "Return", + "the", + "different", + "document", + "ids", + "along", + "with", + "the", + "number", + "of", + "paragraphs", + "corresponding", + "to", + "each", + ",", + "ordered", + "by", + "id", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 3 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 15, + false + ], + null + ] + ], + [ + 3, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 15, + false + ] + ], + "having": [], + "orderBy": [ + "asc", + [ + [ + 0, + [ + 0, + 15, + false + ], + null + ] + ] + ], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "cre_Doc_Template_Mgt", + "query": "SELECT T1.document_id , T2.document_name , count(*) FROM Paragraphs AS T1 JOIN Documents AS T2 ON T1.document_id = T2.document_id GROUP BY T1.document_id", + "query_toks": [ + "SELECT", + "T1.document_id", + ",", + "T2.document_name", + ",", + "count", + "(", + "*", + ")", + "FROM", + "Paragraphs", + "AS", + "T1", + "JOIN", + "Documents", + "AS", + "T2", + "ON", + "T1.document_id", + "=", + "T2.document_id", + "GROUP", + "BY", + "T1.document_id" + ], + "query_toks_no_value": [ + "select", + "t1", + ".", + "document_id", + ",", + "t2", + ".", + "document_name", + ",", + "count", + "(", + "*", + ")", + "from", + "paragraphs", + "as", + "t1", + "join", + "documents", + "as", + "t2", + "on", + "t1", + ".", + "document_id", + "=", + "t2", + ".", + "document_id", + "group", + "by", + "t1", + ".", + "document_id" + ], + "question": "Show all document ids, names and the number of paragraphs in each document.", + "question_toks": [ + "Show", + "all", + "document", + "ids", + ",", + "names", + "and", + "the", + "number", + "of", + "paragraphs", + "in", + "each", + "document", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 3 + ], + [ + "table_unit", + 2 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 15, + false + ], + null + ], + [ + 0, + 9, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 15, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 11, + false + ], + null + ] + ], + [ + 3, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 15, + false + ] + ], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "cre_Doc_Template_Mgt", + "query": "SELECT T1.document_id , T2.document_name , count(*) FROM Paragraphs AS T1 JOIN Documents AS T2 ON T1.document_id = T2.document_id GROUP BY T1.document_id", + "query_toks": [ + "SELECT", + "T1.document_id", + ",", + "T2.document_name", + ",", + "count", + "(", + "*", + ")", + "FROM", + "Paragraphs", + "AS", + "T1", + "JOIN", + "Documents", + "AS", + "T2", + "ON", + "T1.document_id", + "=", + "T2.document_id", + "GROUP", + "BY", + "T1.document_id" + ], + "query_toks_no_value": [ + "select", + "t1", + ".", + "document_id", + ",", + "t2", + ".", + "document_name", + ",", + "count", + "(", + "*", + ")", + "from", + "paragraphs", + "as", + "t1", + "join", + "documents", + "as", + "t2", + "on", + "t1", + ".", + "document_id", + "=", + "t2", + ".", + "document_id", + "group", + "by", + "t1", + ".", + "document_id" + ], + "question": "What are the ids and names of each document, as well as the number of paragraphs in each?", + "question_toks": [ + "What", + "are", + "the", + "ids", + "and", + "names", + "of", + "each", + "document", + ",", + "as", + "well", + "as", + "the", + "number", + "of", + "paragraphs", + "in", + "each", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 3 + ], + [ + "table_unit", + 2 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 15, + false + ], + null + ], + [ + 0, + 9, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 15, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 11, + false + ], + null + ] + ], + [ + 3, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 15, + false + ] + ], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "cre_Doc_Template_Mgt", + "query": "SELECT document_id FROM Paragraphs GROUP BY document_id HAVING count(*) >= 2", + "query_toks": [ + "SELECT", + "document_id", + "FROM", + "Paragraphs", + "GROUP", + "BY", + "document_id", + "HAVING", + "count", + "(", + "*", + ")", + ">", + "=", + "2" + ], + "query_toks_no_value": [ + "select", + "document_id", + "from", + "paragraphs", + "group", + "by", + "document_id", + "having", + "count", + "(", + "*", + ")", + ">", + "=", + "value" + ], + "question": "List all document ids with at least two paragraphs.", + "question_toks": [ + "List", + "all", + "document", + "ids", + "with", + "at", + "least", + "two", + "paragraphs", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 3 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 15, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 15, + false + ] + ], + "having": [ + [ + false, + 5, + [ + 0, + [ + 3, + 0, + false + ], + null + ], + 2.0, + null + ] + ], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "cre_Doc_Template_Mgt", + "query": "SELECT document_id FROM Paragraphs GROUP BY document_id HAVING count(*) >= 2", + "query_toks": [ + "SELECT", + "document_id", + "FROM", + "Paragraphs", + "GROUP", + "BY", + "document_id", + "HAVING", + "count", + "(", + "*", + ")", + ">", + "=", + "2" + ], + "query_toks_no_value": [ + "select", + "document_id", + "from", + "paragraphs", + "group", + "by", + "document_id", + "having", + "count", + "(", + "*", + ")", + ">", + "=", + "value" + ], + "question": "What are the ids of documents that have 2 or more paragraphs?", + "question_toks": [ + "What", + "are", + "the", + "ids", + "of", + "documents", + "that", + "have", + "2", + "or", + "more", + "paragraphs", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 3 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 15, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 15, + false + ] + ], + "having": [ + [ + false, + 5, + [ + 0, + [ + 3, + 0, + false + ], + null + ], + 2.0, + null + ] + ], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "cre_Doc_Template_Mgt", + "query": "SELECT T1.document_id , T2.document_name FROM Paragraphs AS T1 JOIN Documents AS T2 ON T1.document_id = T2.document_id GROUP BY T1.document_id ORDER BY count(*) DESC LIMIT 1", + "query_toks": [ + "SELECT", + "T1.document_id", + ",", + "T2.document_name", + "FROM", + "Paragraphs", + "AS", + "T1", + "JOIN", + "Documents", + "AS", + "T2", + "ON", + "T1.document_id", + "=", + "T2.document_id", + "GROUP", + "BY", + "T1.document_id", + "ORDER", + "BY", + "count", + "(", + "*", + ")", + "DESC", + "LIMIT", + "1" + ], + "query_toks_no_value": [ + "select", + "t1", + ".", + "document_id", + ",", + "t2", + ".", + "document_name", + "from", + "paragraphs", + "as", + "t1", + "join", + "documents", + "as", + "t2", + "on", + "t1", + ".", + "document_id", + "=", + "t2", + ".", + "document_id", + "group", + "by", + "t1", + ".", + "document_id", + "order", + "by", + "count", + "(", + "*", + ")", + "desc", + "limit", + "value" + ], + "question": "What is the document id and name with greatest number of paragraphs?", + "question_toks": [ + "What", + "is", + "the", + "document", + "id", + "and", + "name", + "with", + "greatest", + "number", + "of", + "paragraphs", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 3 + ], + [ + "table_unit", + 2 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 15, + false + ], + null + ], + [ + 0, + 9, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 15, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 11, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 15, + false + ] + ], + "having": [], + "orderBy": [ + "desc", + [ + [ + 0, + [ + 3, + 0, + false + ], + null + ] + ] + ], + "limit": 1, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "cre_Doc_Template_Mgt", + "query": "SELECT T1.document_id , T2.document_name FROM Paragraphs AS T1 JOIN Documents AS T2 ON T1.document_id = T2.document_id GROUP BY T1.document_id ORDER BY count(*) DESC LIMIT 1", + "query_toks": [ + "SELECT", + "T1.document_id", + ",", + "T2.document_name", + "FROM", + "Paragraphs", + "AS", + "T1", + "JOIN", + "Documents", + "AS", + "T2", + "ON", + "T1.document_id", + "=", + "T2.document_id", + "GROUP", + "BY", + "T1.document_id", + "ORDER", + "BY", + "count", + "(", + "*", + ")", + "DESC", + "LIMIT", + "1" + ], + "query_toks_no_value": [ + "select", + "t1", + ".", + "document_id", + ",", + "t2", + ".", + "document_name", + "from", + "paragraphs", + "as", + "t1", + "join", + "documents", + "as", + "t2", + "on", + "t1", + ".", + "document_id", + "=", + "t2", + ".", + "document_id", + "group", + "by", + "t1", + ".", + "document_id", + "order", + "by", + "count", + "(", + "*", + ")", + "desc", + "limit", + "value" + ], + "question": "Return the id and name of the document with the most paragraphs.", + "question_toks": [ + "Return", + "the", + "id", + "and", + "name", + "of", + "the", + "document", + "with", + "the", + "most", + "paragraphs", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 3 + ], + [ + "table_unit", + 2 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 15, + false + ], + null + ], + [ + 0, + 9, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 15, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 11, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 15, + false + ] + ], + "having": [], + "orderBy": [ + "desc", + [ + [ + 0, + [ + 3, + 0, + false + ], + null + ] + ] + ], + "limit": 1, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "cre_Doc_Template_Mgt", + "query": "SELECT document_id FROM Paragraphs GROUP BY document_id ORDER BY count(*) ASC LIMIT 1", + "query_toks": [ + "SELECT", + "document_id", + "FROM", + "Paragraphs", + "GROUP", + "BY", + "document_id", + "ORDER", + "BY", + "count", + "(", + "*", + ")", + "ASC", + "LIMIT", + "1" + ], + "query_toks_no_value": [ + "select", + "document_id", + "from", + "paragraphs", + "group", + "by", + "document_id", + "order", + "by", + "count", + "(", + "*", + ")", + "asc", + "limit", + "value" + ], + "question": "What is the document id with least number of paragraphs?", + "question_toks": [ + "What", + "is", + "the", + "document", + "id", + "with", + "least", + "number", + "of", + "paragraphs", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 3 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 15, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 15, + false + ] + ], + "having": [], + "orderBy": [ + "asc", + [ + [ + 0, + [ + 3, + 0, + false + ], + null + ] + ] + ], + "limit": 1, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "cre_Doc_Template_Mgt", + "query": "SELECT document_id FROM Paragraphs GROUP BY document_id ORDER BY count(*) ASC LIMIT 1", + "query_toks": [ + "SELECT", + "document_id", + "FROM", + "Paragraphs", + "GROUP", + "BY", + "document_id", + "ORDER", + "BY", + "count", + "(", + "*", + ")", + "ASC", + "LIMIT", + "1" + ], + "query_toks_no_value": [ + "select", + "document_id", + "from", + "paragraphs", + "group", + "by", + "document_id", + "order", + "by", + "count", + "(", + "*", + ")", + "asc", + "limit", + "value" + ], + "question": "Return the id of the document with the fewest paragraphs.", + "question_toks": [ + "Return", + "the", + "id", + "of", + "the", + "document", + "with", + "the", + "fewest", + "paragraphs", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 3 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 15, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 15, + false + ] + ], + "having": [], + "orderBy": [ + "asc", + [ + [ + 0, + [ + 3, + 0, + false + ], + null + ] + ] + ], + "limit": 1, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "cre_Doc_Template_Mgt", + "query": "SELECT document_id FROM Paragraphs GROUP BY document_id HAVING count(*) BETWEEN 1 AND 2", + "query_toks": [ + "SELECT", + "document_id", + "FROM", + "Paragraphs", + "GROUP", + "BY", + "document_id", + "HAVING", + "count", + "(", + "*", + ")", + "BETWEEN", + "1", + "AND", + "2" + ], + "query_toks_no_value": [ + "select", + "document_id", + "from", + "paragraphs", + "group", + "by", + "document_id", + "having", + "count", + "(", + "*", + ")", + "between", + "value", + "and", + "value" + ], + "question": "What is the document id with 1 to 2 paragraphs?", + "question_toks": [ + "What", + "is", + "the", + "document", + "id", + "with", + "1", + "to", + "2", + "paragraphs", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 3 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 15, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 15, + false + ] + ], + "having": [ + [ + false, + 1, + [ + 0, + [ + 3, + 0, + false + ], + null + ], + 1.0, + 2.0 + ] + ], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "cre_Doc_Template_Mgt", + "query": "SELECT document_id FROM Paragraphs GROUP BY document_id HAVING count(*) BETWEEN 1 AND 2", + "query_toks": [ + "SELECT", + "document_id", + "FROM", + "Paragraphs", + "GROUP", + "BY", + "document_id", + "HAVING", + "count", + "(", + "*", + ")", + "BETWEEN", + "1", + "AND", + "2" + ], + "query_toks_no_value": [ + "select", + "document_id", + "from", + "paragraphs", + "group", + "by", + "document_id", + "having", + "count", + "(", + "*", + ")", + "between", + "value", + "and", + "value" + ], + "question": "Give the ids of documents that have between one and two paragraphs.", + "question_toks": [ + "Give", + "the", + "ids", + "of", + "documents", + "that", + "have", + "between", + "one", + "and", + "two", + "paragraphs", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 3 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 15, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 15, + false + ] + ], + "having": [ + [ + false, + 1, + [ + 0, + [ + 3, + 0, + false + ], + null + ], + 1.0, + 2.0 + ] + ], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "cre_Doc_Template_Mgt", + "query": "SELECT document_id FROM Paragraphs WHERE paragraph_text = 'Brazil' INTERSECT SELECT document_id FROM Paragraphs WHERE paragraph_text = 'Ireland'", + "query_toks": [ + "SELECT", + "document_id", + "FROM", + "Paragraphs", + "WHERE", + "paragraph_text", + "=", + "'Brazil", + "'", + "INTERSECT", + "SELECT", + "document_id", + "FROM", + "Paragraphs", + "WHERE", + "paragraph_text", + "=", + "'Ireland", + "'" + ], + "query_toks_no_value": [ + "select", + "document_id", + "from", + "paragraphs", + "where", + "paragraph_text", + "=", + "value", + "intersect", + "select", + "document_id", + "from", + "paragraphs", + "where", + "paragraph_text", + "=", + "value" + ], + "question": "Show the document id with paragraph text 'Brazil' and 'Ireland'.", + "question_toks": [ + "Show", + "the", + "document", + "id", + "with", + "paragraph", + "text", + "'Brazil", + "'", + "and", + "'Ireland", + "'", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 3 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 15, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 16, + false + ], + null + ], + "\"Brazil\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": { + "from": { + "table_units": [ + [ + "table_unit", + 3 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 15, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 16, + false + ], + null + ], + "\"Ireland\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + }, + "union": null, + "except": null + } + }, + { + "db_id": "cre_Doc_Template_Mgt", + "query": "SELECT document_id FROM Paragraphs WHERE paragraph_text = 'Brazil' INTERSECT SELECT document_id FROM Paragraphs WHERE paragraph_text = 'Ireland'", + "query_toks": [ + "SELECT", + "document_id", + "FROM", + "Paragraphs", + "WHERE", + "paragraph_text", + "=", + "'Brazil", + "'", + "INTERSECT", + "SELECT", + "document_id", + "FROM", + "Paragraphs", + "WHERE", + "paragraph_text", + "=", + "'Ireland", + "'" + ], + "query_toks_no_value": [ + "select", + "document_id", + "from", + "paragraphs", + "where", + "paragraph_text", + "=", + "value", + "intersect", + "select", + "document_id", + "from", + "paragraphs", + "where", + "paragraph_text", + "=", + "value" + ], + "question": "What are the ids of documents that contain the paragraph text 'Brazil' and 'Ireland'?", + "question_toks": [ + "What", + "are", + "the", + "ids", + "of", + "documents", + "that", + "contain", + "the", + "paragraph", + "text", + "'Brazil", + "'", + "and", + "'Ireland", + "'", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 3 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 15, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 16, + false + ], + null + ], + "\"Brazil\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": { + "from": { + "table_units": [ + [ + "table_unit", + 3 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 15, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 16, + false + ], + null + ], + "\"Ireland\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + }, + "union": null, + "except": null + } + }, + { + "db_id": "course_teach", + "query": "SELECT count(*) FROM teacher", + "query_toks": [ + "SELECT", + "count", + "(", + "*", + ")", + "FROM", + "teacher" + ], + "query_toks_no_value": [ + "select", + "count", + "(", + "*", + ")", + "from", + "teacher" + ], + "question": "How many teachers are there?", + "question_toks": [ + "How", + "many", + "teachers", + "are", + "there", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 3, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "course_teach", + "query": "SELECT count(*) FROM teacher", + "query_toks": [ + "SELECT", + "count", + "(", + "*", + ")", + "FROM", + "teacher" + ], + "query_toks_no_value": [ + "select", + "count", + "(", + "*", + ")", + "from", + "teacher" + ], + "question": "What is the total count of teachers?", + "question_toks": [ + "What", + "is", + "the", + "total", + "count", + "of", + "teachers", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 3, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "course_teach", + "query": "SELECT Name FROM teacher ORDER BY Age ASC", + "query_toks": [ + "SELECT", + "Name", + "FROM", + "teacher", + "ORDER", + "BY", + "Age", + "ASC" + ], + "query_toks_no_value": [ + "select", + "name", + "from", + "teacher", + "order", + "by", + "age", + "asc" + ], + "question": "List the names of teachers in ascending order of age.", + "question_toks": [ + "List", + "the", + "names", + "of", + "teachers", + "in", + "ascending", + "order", + "of", + "age", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 5, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [ + "asc", + [ + [ + 0, + [ + 0, + 6, + false + ], + null + ] + ] + ], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "course_teach", + "query": "SELECT Name FROM teacher ORDER BY Age ASC", + "query_toks": [ + "SELECT", + "Name", + "FROM", + "teacher", + "ORDER", + "BY", + "Age", + "ASC" + ], + "query_toks_no_value": [ + "select", + "name", + "from", + "teacher", + "order", + "by", + "age", + "asc" + ], + "question": "What are the names of the teachers ordered by ascending age?", + "question_toks": [ + "What", + "are", + "the", + "names", + "of", + "the", + "teachers", + "ordered", + "by", + "ascending", + "age", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 5, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [ + "asc", + [ + [ + 0, + [ + 0, + 6, + false + ], + null + ] + ] + ], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "course_teach", + "query": "SELECT Age , Hometown FROM teacher", + "query_toks": [ + "SELECT", + "Age", + ",", + "Hometown", + "FROM", + "teacher" + ], + "query_toks_no_value": [ + "select", + "age", + ",", + "hometown", + "from", + "teacher" + ], + "question": "What are the age and hometown of teachers?", + "question_toks": [ + "What", + "are", + "the", + "age", + "and", + "hometown", + "of", + "teachers", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 6, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 7, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "course_teach", + "query": "SELECT Age , Hometown FROM teacher", + "query_toks": [ + "SELECT", + "Age", + ",", + "Hometown", + "FROM", + "teacher" + ], + "query_toks_no_value": [ + "select", + "age", + ",", + "hometown", + "from", + "teacher" + ], + "question": "What is the age and hometown of every teacher?", + "question_toks": [ + "What", + "is", + "the", + "age", + "and", + "hometown", + "of", + "every", + "teacher", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 6, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 7, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "course_teach", + "query": "select name from teacher where hometown != \"little lever urban district\"", + "query_toks": [ + "select", + "name", + "from", + "teacher", + "where", + "hometown", + "!=", + "\"little lever urban district\"" + ], + "query_toks_no_value": [ + "select", + "name", + "from", + "teacher", + "where", + "hometown", + "!", + "=", + "value" + ], + "question": "List the name of teachers whose hometown is not `` Little Lever Urban District '' .", + "question_toks": [ + "List", + "the", + "name", + "of", + "teachers", + "whose", + "hometown", + "is", + "not", + "``", + "Little", + "Lever", + "Urban", + "District", + "''", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 5, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 7, + [ + 0, + [ + 0, + 7, + false + ], + null + ], + "\"little lever urban district\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "course_teach", + "query": "select name from teacher where hometown != \"little lever urban district\"", + "query_toks": [ + "select", + "name", + "from", + "teacher", + "where", + "hometown", + "!=", + "\"little lever urban district\"" + ], + "query_toks_no_value": [ + "select", + "name", + "from", + "teacher", + "where", + "hometown", + "!", + "=", + "value" + ], + "question": "What are the names of the teachers whose hometown is not `` Little Lever Urban District '' ?", + "question_toks": [ + "What", + "are", + "the", + "names", + "of", + "the", + "teachers", + "whose", + "hometown", + "is", + "not", + "``", + "Little", + "Lever", + "Urban", + "District", + "''", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 5, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 7, + [ + 0, + [ + 0, + 7, + false + ], + null + ], + "\"little lever urban district\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "course_teach", + "query": "SELECT Name FROM teacher WHERE Age = 32 OR Age = 33", + "query_toks": [ + "SELECT", + "Name", + "FROM", + "teacher", + "WHERE", + "Age", + "=", + "32", + "OR", + "Age", + "=", + "33" + ], + "query_toks_no_value": [ + "select", + "name", + "from", + "teacher", + "where", + "age", + "=", + "value", + "or", + "age", + "=", + "value" + ], + "question": "Show the name of teachers aged either 32 or 33?", + "question_toks": [ + "Show", + "the", + "name", + "of", + "teachers", + "aged", + "either", + "32", + "or", + "33", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 5, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 6, + false + ], + null + ], + 32.0, + null + ], + "or", + [ + false, + 2, + [ + 0, + [ + 0, + 6, + false + ], + null + ], + 33.0, + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "course_teach", + "query": "SELECT Name FROM teacher WHERE Age = 32 OR Age = 33", + "query_toks": [ + "SELECT", + "Name", + "FROM", + "teacher", + "WHERE", + "Age", + "=", + "32", + "OR", + "Age", + "=", + "33" + ], + "query_toks_no_value": [ + "select", + "name", + "from", + "teacher", + "where", + "age", + "=", + "value", + "or", + "age", + "=", + "value" + ], + "question": "What are the names of the teachers who are aged either 32 or 33?", + "question_toks": [ + "What", + "are", + "the", + "names", + "of", + "the", + "teachers", + "who", + "are", + "aged", + "either", + "32", + "or", + "33", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 5, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 6, + false + ], + null + ], + 32.0, + null + ], + "or", + [ + false, + 2, + [ + 0, + [ + 0, + 6, + false + ], + null + ], + 33.0, + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "course_teach", + "query": "SELECT Hometown FROM teacher ORDER BY Age ASC LIMIT 1", + "query_toks": [ + "SELECT", + "Hometown", + "FROM", + "teacher", + "ORDER", + "BY", + "Age", + "ASC", + "LIMIT", + "1" + ], + "query_toks_no_value": [ + "select", + "hometown", + "from", + "teacher", + "order", + "by", + "age", + "asc", + "limit", + "value" + ], + "question": "What is the hometown of the youngest teacher?", + "question_toks": [ + "What", + "is", + "the", + "hometown", + "of", + "the", + "youngest", + "teacher", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 7, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [ + "asc", + [ + [ + 0, + [ + 0, + 6, + false + ], + null + ] + ] + ], + "limit": 1, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "course_teach", + "query": "SELECT Hometown FROM teacher ORDER BY Age ASC LIMIT 1", + "query_toks": [ + "SELECT", + "Hometown", + "FROM", + "teacher", + "ORDER", + "BY", + "Age", + "ASC", + "LIMIT", + "1" + ], + "query_toks_no_value": [ + "select", + "hometown", + "from", + "teacher", + "order", + "by", + "age", + "asc", + "limit", + "value" + ], + "question": "Where is the youngest teacher from?", + "question_toks": [ + "Where", + "is", + "the", + "youngest", + "teacher", + "from", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 7, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [ + "asc", + [ + [ + 0, + [ + 0, + 6, + false + ], + null + ] + ] + ], + "limit": 1, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "course_teach", + "query": "SELECT Hometown , COUNT(*) FROM teacher GROUP BY Hometown", + "query_toks": [ + "SELECT", + "Hometown", + ",", + "COUNT", + "(", + "*", + ")", + "FROM", + "teacher", + "GROUP", + "BY", + "Hometown" + ], + "query_toks_no_value": [ + "select", + "hometown", + ",", + "count", + "(", + "*", + ")", + "from", + "teacher", + "group", + "by", + "hometown" + ], + "question": "Show different hometown of teachers and the number of teachers from each hometown.", + "question_toks": [ + "Show", + "different", + "hometown", + "of", + "teachers", + "and", + "the", + "number", + "of", + "teachers", + "from", + "each", + "hometown", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 7, + false + ], + null + ] + ], + [ + 3, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 7, + false + ] + ], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "course_teach", + "query": "SELECT Hometown , COUNT(*) FROM teacher GROUP BY Hometown", + "query_toks": [ + "SELECT", + "Hometown", + ",", + "COUNT", + "(", + "*", + ")", + "FROM", + "teacher", + "GROUP", + "BY", + "Hometown" + ], + "query_toks_no_value": [ + "select", + "hometown", + ",", + "count", + "(", + "*", + ")", + "from", + "teacher", + "group", + "by", + "hometown" + ], + "question": "For each hometown, how many teachers are there?", + "question_toks": [ + "For", + "each", + "hometown", + ",", + "how", + "many", + "teachers", + "are", + "there", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 7, + false + ], + null + ] + ], + [ + 3, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 7, + false + ] + ], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "course_teach", + "query": "SELECT Hometown FROM teacher GROUP BY Hometown ORDER BY COUNT(*) DESC LIMIT 1", + "query_toks": [ + "SELECT", + "Hometown", + "FROM", + "teacher", + "GROUP", + "BY", + "Hometown", + "ORDER", + "BY", + "COUNT", + "(", + "*", + ")", + "DESC", + "LIMIT", + "1" + ], + "query_toks_no_value": [ + "select", + "hometown", + "from", + "teacher", + "group", + "by", + "hometown", + "order", + "by", + "count", + "(", + "*", + ")", + "desc", + "limit", + "value" + ], + "question": "List the most common hometown of teachers.", + "question_toks": [ + "List", + "the", + "most", + "common", + "hometown", + "of", + "teachers", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 7, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 7, + false + ] + ], + "having": [], + "orderBy": [ + "desc", + [ + [ + 0, + [ + 3, + 0, + false + ], + null + ] + ] + ], + "limit": 1, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "course_teach", + "query": "SELECT Hometown FROM teacher GROUP BY Hometown ORDER BY COUNT(*) DESC LIMIT 1", + "query_toks": [ + "SELECT", + "Hometown", + "FROM", + "teacher", + "GROUP", + "BY", + "Hometown", + "ORDER", + "BY", + "COUNT", + "(", + "*", + ")", + "DESC", + "LIMIT", + "1" + ], + "query_toks_no_value": [ + "select", + "hometown", + "from", + "teacher", + "group", + "by", + "hometown", + "order", + "by", + "count", + "(", + "*", + ")", + "desc", + "limit", + "value" + ], + "question": "What is the most commmon hometowns for teachers?", + "question_toks": [ + "What", + "is", + "the", + "most", + "commmon", + "hometowns", + "for", + "teachers", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 7, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 7, + false + ] + ], + "having": [], + "orderBy": [ + "desc", + [ + [ + 0, + [ + 3, + 0, + false + ], + null + ] + ] + ], + "limit": 1, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "course_teach", + "query": "SELECT Hometown FROM teacher GROUP BY Hometown HAVING COUNT(*) >= 2", + "query_toks": [ + "SELECT", + "Hometown", + "FROM", + "teacher", + "GROUP", + "BY", + "Hometown", + "HAVING", + "COUNT", + "(", + "*", + ")", + ">", + "=", + "2" + ], + "query_toks_no_value": [ + "select", + "hometown", + "from", + "teacher", + "group", + "by", + "hometown", + "having", + "count", + "(", + "*", + ")", + ">", + "=", + "value" + ], + "question": "Show the hometowns shared by at least two teachers.", + "question_toks": [ + "Show", + "the", + "hometowns", + "shared", + "by", + "at", + "least", + "two", + "teachers", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 7, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 7, + false + ] + ], + "having": [ + [ + false, + 5, + [ + 0, + [ + 3, + 0, + false + ], + null + ], + 2.0, + null + ] + ], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "course_teach", + "query": "SELECT Hometown FROM teacher GROUP BY Hometown HAVING COUNT(*) >= 2", + "query_toks": [ + "SELECT", + "Hometown", + "FROM", + "teacher", + "GROUP", + "BY", + "Hometown", + "HAVING", + "COUNT", + "(", + "*", + ")", + ">", + "=", + "2" + ], + "query_toks_no_value": [ + "select", + "hometown", + "from", + "teacher", + "group", + "by", + "hometown", + "having", + "count", + "(", + "*", + ")", + ">", + "=", + "value" + ], + "question": "What are the towns from which at least two teachers come from?", + "question_toks": [ + "What", + "are", + "the", + "towns", + "from", + "which", + "at", + "least", + "two", + "teachers", + "come", + "from", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 7, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 7, + false + ] + ], + "having": [ + [ + false, + 5, + [ + 0, + [ + 3, + 0, + false + ], + null + ], + 2.0, + null + ] + ], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "course_teach", + "query": "SELECT T3.Name , T2.Course FROM course_arrange AS T1 JOIN course AS T2 ON T1.Course_ID = T2.Course_ID JOIN teacher AS T3 ON T1.Teacher_ID = T3.Teacher_ID", + "query_toks": [ + "SELECT", + "T3.Name", + ",", + "T2.Course", + "FROM", + "course_arrange", + "AS", + "T1", + "JOIN", + "course", + "AS", + "T2", + "ON", + "T1.Course_ID", + "=", + "T2.Course_ID", + "JOIN", + "teacher", + "AS", + "T3", + "ON", + "T1.Teacher_ID", + "=", + "T3.Teacher_ID" + ], + "query_toks_no_value": [ + "select", + "t3", + ".", + "name", + ",", + "t2", + ".", + "course", + "from", + "course_arrange", + "as", + "t1", + "join", + "course", + "as", + "t2", + "on", + "t1", + ".", + "course_id", + "=", + "t2", + ".", + "course_id", + "join", + "teacher", + "as", + "t3", + "on", + "t1", + ".", + "teacher_id", + "=", + "t3", + ".", + "teacher_id" + ], + "question": "Show names of teachers and the courses they are arranged to teach.", + "question_toks": [ + "Show", + "names", + "of", + "teachers", + "and", + "the", + "courses", + "they", + "are", + "arranged", + "to", + "teach", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ], + [ + "table_unit", + 0 + ], + [ + "table_unit", + 1 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 8, + false + ], + null + ], + [ + 0, + 1, + false + ], + null + ], + "and", + [ + false, + 2, + [ + 0, + [ + 0, + 9, + false + ], + null + ], + [ + 0, + 4, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 5, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 3, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "course_teach", + "query": "SELECT T3.Name , T2.Course FROM course_arrange AS T1 JOIN course AS T2 ON T1.Course_ID = T2.Course_ID JOIN teacher AS T3 ON T1.Teacher_ID = T3.Teacher_ID", + "query_toks": [ + "SELECT", + "T3.Name", + ",", + "T2.Course", + "FROM", + "course_arrange", + "AS", + "T1", + "JOIN", + "course", + "AS", + "T2", + "ON", + "T1.Course_ID", + "=", + "T2.Course_ID", + "JOIN", + "teacher", + "AS", + "T3", + "ON", + "T1.Teacher_ID", + "=", + "T3.Teacher_ID" + ], + "query_toks_no_value": [ + "select", + "t3", + ".", + "name", + ",", + "t2", + ".", + "course", + "from", + "course_arrange", + "as", + "t1", + "join", + "course", + "as", + "t2", + "on", + "t1", + ".", + "course_id", + "=", + "t2", + ".", + "course_id", + "join", + "teacher", + "as", + "t3", + "on", + "t1", + ".", + "teacher_id", + "=", + "t3", + ".", + "teacher_id" + ], + "question": "What is the name of each teacher and what course they teach?", + "question_toks": [ + "What", + "is", + "the", + "name", + "of", + "each", + "teacher", + "and", + "what", + "course", + "they", + "teach", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ], + [ + "table_unit", + 0 + ], + [ + "table_unit", + 1 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 8, + false + ], + null + ], + [ + 0, + 1, + false + ], + null + ], + "and", + [ + false, + 2, + [ + 0, + [ + 0, + 9, + false + ], + null + ], + [ + 0, + 4, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 5, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 3, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "course_teach", + "query": "SELECT T3.Name , T2.Course FROM course_arrange AS T1 JOIN course AS T2 ON T1.Course_ID = T2.Course_ID JOIN teacher AS T3 ON T1.Teacher_ID = T3.Teacher_ID ORDER BY T3.Name", + "query_toks": [ + "SELECT", + "T3.Name", + ",", + "T2.Course", + "FROM", + "course_arrange", + "AS", + "T1", + "JOIN", + "course", + "AS", + "T2", + "ON", + "T1.Course_ID", + "=", + "T2.Course_ID", + "JOIN", + "teacher", + "AS", + "T3", + "ON", + "T1.Teacher_ID", + "=", + "T3.Teacher_ID", + "ORDER", + "BY", + "T3.Name" + ], + "query_toks_no_value": [ + "select", + "t3", + ".", + "name", + ",", + "t2", + ".", + "course", + "from", + "course_arrange", + "as", + "t1", + "join", + "course", + "as", + "t2", + "on", + "t1", + ".", + "course_id", + "=", + "t2", + ".", + "course_id", + "join", + "teacher", + "as", + "t3", + "on", + "t1", + ".", + "teacher_id", + "=", + "t3", + ".", + "teacher_id", + "order", + "by", + "t3", + ".", + "name" + ], + "question": "Show names of teachers and the courses they are arranged to teach in ascending alphabetical order of the teacher's name.", + "question_toks": [ + "Show", + "names", + "of", + "teachers", + "and", + "the", + "courses", + "they", + "are", + "arranged", + "to", + "teach", + "in", + "ascending", + "alphabetical", + "order", + "of", + "the", + "teacher", + "'s", + "name", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ], + [ + "table_unit", + 0 + ], + [ + "table_unit", + 1 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 8, + false + ], + null + ], + [ + 0, + 1, + false + ], + null + ], + "and", + [ + false, + 2, + [ + 0, + [ + 0, + 9, + false + ], + null + ], + [ + 0, + 4, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 5, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 3, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [ + "asc", + [ + [ + 0, + [ + 0, + 5, + false + ], + null + ] + ] + ], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "course_teach", + "query": "SELECT T3.Name , T2.Course FROM course_arrange AS T1 JOIN course AS T2 ON T1.Course_ID = T2.Course_ID JOIN teacher AS T3 ON T1.Teacher_ID = T3.Teacher_ID ORDER BY T3.Name", + "query_toks": [ + "SELECT", + "T3.Name", + ",", + "T2.Course", + "FROM", + "course_arrange", + "AS", + "T1", + "JOIN", + "course", + "AS", + "T2", + "ON", + "T1.Course_ID", + "=", + "T2.Course_ID", + "JOIN", + "teacher", + "AS", + "T3", + "ON", + "T1.Teacher_ID", + "=", + "T3.Teacher_ID", + "ORDER", + "BY", + "T3.Name" + ], + "query_toks_no_value": [ + "select", + "t3", + ".", + "name", + ",", + "t2", + ".", + "course", + "from", + "course_arrange", + "as", + "t1", + "join", + "course", + "as", + "t2", + "on", + "t1", + ".", + "course_id", + "=", + "t2", + ".", + "course_id", + "join", + "teacher", + "as", + "t3", + "on", + "t1", + ".", + "teacher_id", + "=", + "t3", + ".", + "teacher_id", + "order", + "by", + "t3", + ".", + "name" + ], + "question": "What are the names of the teachers and the courses they teach in ascending alphabetical order by the name of the teacher?", + "question_toks": [ + "What", + "are", + "the", + "names", + "of", + "the", + "teachers", + "and", + "the", + "courses", + "they", + "teach", + "in", + "ascending", + "alphabetical", + "order", + "by", + "the", + "name", + "of", + "the", + "teacher", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ], + [ + "table_unit", + 0 + ], + [ + "table_unit", + 1 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 8, + false + ], + null + ], + [ + 0, + 1, + false + ], + null + ], + "and", + [ + false, + 2, + [ + 0, + [ + 0, + 9, + false + ], + null + ], + [ + 0, + 4, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 5, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 3, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [ + "asc", + [ + [ + 0, + [ + 0, + 5, + false + ], + null + ] + ] + ], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "course_teach", + "query": "SELECT T3.Name FROM course_arrange AS T1 JOIN course AS T2 ON T1.Course_ID = T2.Course_ID JOIN teacher AS T3 ON T1.Teacher_ID = T3.Teacher_ID WHERE T2.Course = \"Math\"", + "query_toks": [ + "SELECT", + "T3.Name", + "FROM", + "course_arrange", + "AS", + "T1", + "JOIN", + "course", + "AS", + "T2", + "ON", + "T1.Course_ID", + "=", + "T2.Course_ID", + "JOIN", + "teacher", + "AS", + "T3", + "ON", + "T1.Teacher_ID", + "=", + "T3.Teacher_ID", + "WHERE", + "T2.Course", + "=", + "``", + "Math", + "''" + ], + "query_toks_no_value": [ + "select", + "t3", + ".", + "name", + "from", + "course_arrange", + "as", + "t1", + "join", + "course", + "as", + "t2", + "on", + "t1", + ".", + "course_id", + "=", + "t2", + ".", + "course_id", + "join", + "teacher", + "as", + "t3", + "on", + "t1", + ".", + "teacher_id", + "=", + "t3", + ".", + "teacher_id", + "where", + "t2", + ".", + "course", + "=", + "value" + ], + "question": "Show the name of the teacher for the math course.", + "question_toks": [ + "Show", + "the", + "name", + "of", + "the", + "teacher", + "for", + "the", + "math", + "course", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ], + [ + "table_unit", + 0 + ], + [ + "table_unit", + 1 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 8, + false + ], + null + ], + [ + 0, + 1, + false + ], + null + ], + "and", + [ + false, + 2, + [ + 0, + [ + 0, + 9, + false + ], + null + ], + [ + 0, + 4, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 5, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 3, + false + ], + null + ], + "\"Math\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "course_teach", + "query": "SELECT T3.Name FROM course_arrange AS T1 JOIN course AS T2 ON T1.Course_ID = T2.Course_ID JOIN teacher AS T3 ON T1.Teacher_ID = T3.Teacher_ID WHERE T2.Course = \"Math\"", + "query_toks": [ + "SELECT", + "T3.Name", + "FROM", + "course_arrange", + "AS", + "T1", + "JOIN", + "course", + "AS", + "T2", + "ON", + "T1.Course_ID", + "=", + "T2.Course_ID", + "JOIN", + "teacher", + "AS", + "T3", + "ON", + "T1.Teacher_ID", + "=", + "T3.Teacher_ID", + "WHERE", + "T2.Course", + "=", + "``", + "Math", + "''" + ], + "query_toks_no_value": [ + "select", + "t3", + ".", + "name", + "from", + "course_arrange", + "as", + "t1", + "join", + "course", + "as", + "t2", + "on", + "t1", + ".", + "course_id", + "=", + "t2", + ".", + "course_id", + "join", + "teacher", + "as", + "t3", + "on", + "t1", + ".", + "teacher_id", + "=", + "t3", + ".", + "teacher_id", + "where", + "t2", + ".", + "course", + "=", + "value" + ], + "question": "What are the names of the people who teach math courses?", + "question_toks": [ + "What", + "are", + "the", + "names", + "of", + "the", + "people", + "who", + "teach", + "math", + "courses", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ], + [ + "table_unit", + 0 + ], + [ + "table_unit", + 1 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 8, + false + ], + null + ], + [ + 0, + 1, + false + ], + null + ], + "and", + [ + false, + 2, + [ + 0, + [ + 0, + 9, + false + ], + null + ], + [ + 0, + 4, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 5, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 3, + false + ], + null + ], + "\"Math\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "course_teach", + "query": "SELECT T2.Name , COUNT(*) FROM course_arrange AS T1 JOIN teacher AS T2 ON T1.Teacher_ID = T2.Teacher_ID GROUP BY T2.Name", + "query_toks": [ + "SELECT", + "T2.Name", + ",", + "COUNT", + "(", + "*", + ")", + "FROM", + "course_arrange", + "AS", + "T1", + "JOIN", + "teacher", + "AS", + "T2", + "ON", + "T1.Teacher_ID", + "=", + "T2.Teacher_ID", + "GROUP", + "BY", + "T2.Name" + ], + "query_toks_no_value": [ + "select", + "t2", + ".", + "name", + ",", + "count", + "(", + "*", + ")", + "from", + "course_arrange", + "as", + "t1", + "join", + "teacher", + "as", + "t2", + "on", + "t1", + ".", + "teacher_id", + "=", + "t2", + ".", + "teacher_id", + "group", + "by", + "t2", + ".", + "name" + ], + "question": "Show names of teachers and the number of courses they teach.", + "question_toks": [ + "Show", + "names", + "of", + "teachers", + "and", + "the", + "number", + "of", + "courses", + "they", + "teach", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ], + [ + "table_unit", + 1 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 9, + false + ], + null + ], + [ + 0, + 4, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 5, + false + ], + null + ] + ], + [ + 3, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 5, + false + ] + ], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "course_teach", + "query": "SELECT T2.Name , COUNT(*) FROM course_arrange AS T1 JOIN teacher AS T2 ON T1.Teacher_ID = T2.Teacher_ID GROUP BY T2.Name", + "query_toks": [ + "SELECT", + "T2.Name", + ",", + "COUNT", + "(", + "*", + ")", + "FROM", + "course_arrange", + "AS", + "T1", + "JOIN", + "teacher", + "AS", + "T2", + "ON", + "T1.Teacher_ID", + "=", + "T2.Teacher_ID", + "GROUP", + "BY", + "T2.Name" + ], + "query_toks_no_value": [ + "select", + "t2", + ".", + "name", + ",", + "count", + "(", + "*", + ")", + "from", + "course_arrange", + "as", + "t1", + "join", + "teacher", + "as", + "t2", + "on", + "t1", + ".", + "teacher_id", + "=", + "t2", + ".", + "teacher_id", + "group", + "by", + "t2", + ".", + "name" + ], + "question": "What are the names of the teachers and how many courses do they teach?", + "question_toks": [ + "What", + "are", + "the", + "names", + "of", + "the", + "teachers", + "and", + "how", + "many", + "courses", + "do", + "they", + "teach", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ], + [ + "table_unit", + 1 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 9, + false + ], + null + ], + [ + 0, + 4, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 5, + false + ], + null + ] + ], + [ + 3, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 5, + false + ] + ], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "course_teach", + "query": "SELECT T2.Name FROM course_arrange AS T1 JOIN teacher AS T2 ON T1.Teacher_ID = T2.Teacher_ID GROUP BY T2.Name HAVING COUNT(*) >= 2", + "query_toks": [ + "SELECT", + "T2.Name", + "FROM", + "course_arrange", + "AS", + "T1", + "JOIN", + "teacher", + "AS", + "T2", + "ON", + "T1.Teacher_ID", + "=", + "T2.Teacher_ID", + "GROUP", + "BY", + "T2.Name", + "HAVING", + "COUNT", + "(", + "*", + ")", + ">", + "=", + "2" + ], + "query_toks_no_value": [ + "select", + "t2", + ".", + "name", + "from", + "course_arrange", + "as", + "t1", + "join", + "teacher", + "as", + "t2", + "on", + "t1", + ".", + "teacher_id", + "=", + "t2", + ".", + "teacher_id", + "group", + "by", + "t2", + ".", + "name", + "having", + "count", + "(", + "*", + ")", + ">", + "=", + "value" + ], + "question": "Show names of teachers that teach at least two courses.", + "question_toks": [ + "Show", + "names", + "of", + "teachers", + "that", + "teach", + "at", + "least", + "two", + "courses", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ], + [ + "table_unit", + 1 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 9, + false + ], + null + ], + [ + 0, + 4, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 5, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 5, + false + ] + ], + "having": [ + [ + false, + 5, + [ + 0, + [ + 3, + 0, + false + ], + null + ], + 2.0, + null + ] + ], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "course_teach", + "query": "SELECT T2.Name FROM course_arrange AS T1 JOIN teacher AS T2 ON T1.Teacher_ID = T2.Teacher_ID GROUP BY T2.Name HAVING COUNT(*) >= 2", + "query_toks": [ + "SELECT", + "T2.Name", + "FROM", + "course_arrange", + "AS", + "T1", + "JOIN", + "teacher", + "AS", + "T2", + "ON", + "T1.Teacher_ID", + "=", + "T2.Teacher_ID", + "GROUP", + "BY", + "T2.Name", + "HAVING", + "COUNT", + "(", + "*", + ")", + ">", + "=", + "2" + ], + "query_toks_no_value": [ + "select", + "t2", + ".", + "name", + "from", + "course_arrange", + "as", + "t1", + "join", + "teacher", + "as", + "t2", + "on", + "t1", + ".", + "teacher_id", + "=", + "t2", + ".", + "teacher_id", + "group", + "by", + "t2", + ".", + "name", + "having", + "count", + "(", + "*", + ")", + ">", + "=", + "value" + ], + "question": "What are the names of the teachers who teach at least two courses?", + "question_toks": [ + "What", + "are", + "the", + "names", + "of", + "the", + "teachers", + "who", + "teach", + "at", + "least", + "two", + "courses", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ], + [ + "table_unit", + 1 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 9, + false + ], + null + ], + [ + 0, + 4, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 5, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 5, + false + ] + ], + "having": [ + [ + false, + 5, + [ + 0, + [ + 3, + 0, + false + ], + null + ], + 2.0, + null + ] + ], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "course_teach", + "query": "SELECT Name FROM teacher WHERE Teacher_id NOT IN (SELECT Teacher_id FROM course_arrange)", + "query_toks": [ + "SELECT", + "Name", + "FROM", + "teacher", + "WHERE", + "Teacher_id", + "NOT", + "IN", + "(", + "SELECT", + "Teacher_id", + "FROM", + "course_arrange", + ")" + ], + "query_toks_no_value": [ + "select", + "name", + "from", + "teacher", + "where", + "teacher_id", + "not", + "in", + "(", + "select", + "teacher_id", + "from", + "course_arrange", + ")" + ], + "question": "List the names of teachers who have not been arranged to teach courses.", + "question_toks": [ + "List", + "the", + "names", + "of", + "teachers", + "who", + "have", + "not", + "been", + "arranged", + "to", + "teach", + "courses", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 5, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + true, + 8, + [ + 0, + [ + 0, + 4, + false + ], + null + ], + { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 9, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + }, + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "course_teach", + "query": "SELECT Name FROM teacher WHERE Teacher_id NOT IN (SELECT Teacher_id FROM course_arrange)", + "query_toks": [ + "SELECT", + "Name", + "FROM", + "teacher", + "WHERE", + "Teacher_id", + "NOT", + "IN", + "(", + "SELECT", + "Teacher_id", + "FROM", + "course_arrange", + ")" + ], + "query_toks_no_value": [ + "select", + "name", + "from", + "teacher", + "where", + "teacher_id", + "not", + "in", + "(", + "select", + "teacher_id", + "from", + "course_arrange", + ")" + ], + "question": "What are the names of the teachers whose courses have not been arranged?", + "question_toks": [ + "What", + "are", + "the", + "names", + "of", + "the", + "teachers", + "whose", + "courses", + "have", + "not", + "been", + "arranged", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 5, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + true, + 8, + [ + 0, + [ + 0, + 4, + false + ], + null + ], + { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 9, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + }, + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "museum_visit", + "query": "SELECT count(*) FROM visitor WHERE age < 30", + "query_toks": [ + "SELECT", + "count", + "(", + "*", + ")", + "FROM", + "visitor", + "WHERE", + "age", + "<", + "30" + ], + "query_toks_no_value": [ + "select", + "count", + "(", + "*", + ")", + "from", + "visitor", + "where", + "age", + "<", + "value" + ], + "question": "How many visitors below age 30 are there?", + "question_toks": [ + "How", + "many", + "visitors", + "below", + "age", + "30", + "are", + "there", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 3, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 4, + [ + 0, + [ + 0, + 8, + false + ], + null + ], + 30.0, + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "museum_visit", + "query": "SELECT name FROM visitor WHERE Level_of_membership > 4 ORDER BY Level_of_membership DESC", + "query_toks": [ + "SELECT", + "name", + "FROM", + "visitor", + "WHERE", + "Level_of_membership", + ">", + "4", + "ORDER", + "BY", + "Level_of_membership", + "DESC" + ], + "query_toks_no_value": [ + "select", + "name", + "from", + "visitor", + "where", + "level_of_membership", + ">", + "value", + "order", + "by", + "level_of_membership", + "desc" + ], + "question": "Find the names of the visitors whose membership level is higher than 4, and order the results by the level from high to low.", + "question_toks": [ + "Find", + "the", + "names", + "of", + "the", + "visitors", + "whose", + "membership", + "level", + "is", + "higher", + "than", + "4", + ",", + "and", + "order", + "the", + "results", + "by", + "the", + "level", + "from", + "high", + "to", + "low", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 6, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 3, + [ + 0, + [ + 0, + 7, + false + ], + null + ], + 4.0, + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [ + "desc", + [ + [ + 0, + [ + 0, + 7, + false + ], + null + ] + ] + ], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "museum_visit", + "query": "SELECT avg(age) FROM visitor WHERE Level_of_membership <= 4", + "query_toks": [ + "SELECT", + "avg", + "(", + "age", + ")", + "FROM", + "visitor", + "WHERE", + "Level_of_membership", + "<", + "=", + "4" + ], + "query_toks_no_value": [ + "select", + "avg", + "(", + "age", + ")", + "from", + "visitor", + "where", + "level_of_membership", + "<", + "=", + "value" + ], + "question": "What is the average age of the visitors whose membership level is not higher than 4?", + "question_toks": [ + "What", + "is", + "the", + "average", + "age", + "of", + "the", + "visitors", + "whose", + "membership", + "level", + "is", + "not", + "higher", + "than", + "4", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 5, + [ + 0, + [ + 0, + 8, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 6, + [ + 0, + [ + 0, + 7, + false + ], + null + ], + 4.0, + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "museum_visit", + "query": "SELECT name , Level_of_membership FROM visitor WHERE Level_of_membership > 4 ORDER BY age DESC", + "query_toks": [ + "SELECT", + "name", + ",", + "Level_of_membership", + "FROM", + "visitor", + "WHERE", + "Level_of_membership", + ">", + "4", + "ORDER", + "BY", + "age", + "DESC" + ], + "query_toks_no_value": [ + "select", + "name", + ",", + "level_of_membership", + "from", + "visitor", + "where", + "level_of_membership", + ">", + "value", + "order", + "by", + "age", + "desc" + ], + "question": "Find the name and membership level of the visitors whose membership level is higher than 4, and sort by their age from old to young.", + "question_toks": [ + "Find", + "the", + "name", + "and", + "membership", + "level", + "of", + "the", + "visitors", + "whose", + "membership", + "level", + "is", + "higher", + "than", + "4", + ",", + "and", + "sort", + "by", + "their", + "age", + "from", + "old", + "to", + "young", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 6, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 7, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 3, + [ + 0, + [ + 0, + 7, + false + ], + null + ], + 4.0, + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [ + "desc", + [ + [ + 0, + [ + 0, + 8, + false + ], + null + ] + ] + ], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "museum_visit", + "query": "SELECT museum_id , name FROM museum ORDER BY num_of_staff DESC LIMIT 1", + "query_toks": [ + "SELECT", + "museum_id", + ",", + "name", + "FROM", + "museum", + "ORDER", + "BY", + "num_of_staff", + "DESC", + "LIMIT", + "1" + ], + "query_toks_no_value": [ + "select", + "museum_id", + ",", + "name", + "from", + "museum", + "order", + "by", + "num_of_staff", + "desc", + "limit", + "value" + ], + "question": "Find the id and name of the museum that has the most staff members?", + "question_toks": [ + "Find", + "the", + "id", + "and", + "name", + "of", + "the", + "museum", + "that", + "has", + "the", + "most", + "staff", + "members", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 1, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 2, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [ + "desc", + [ + [ + 0, + [ + 0, + 3, + false + ], + null + ] + ] + ], + "limit": 1, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "museum_visit", + "query": "SELECT avg(num_of_staff) FROM museum WHERE open_year < 2009", + "query_toks": [ + "SELECT", + "avg", + "(", + "num_of_staff", + ")", + "FROM", + "museum", + "WHERE", + "open_year", + "<", + "2009" + ], + "query_toks_no_value": [ + "select", + "avg", + "(", + "num_of_staff", + ")", + "from", + "museum", + "where", + "open_year", + "<", + "value" + ], + "question": "Find the average number of staff working for the museums that were open before 2009.", + "question_toks": [ + "Find", + "the", + "average", + "number", + "of", + "staff", + "working", + "for", + "the", + "museums", + "that", + "were", + "open", + "before", + "2009", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 5, + [ + 0, + [ + 0, + 3, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 4, + [ + 0, + [ + 0, + 4, + false + ], + null + ], + 2009.0, + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "museum_visit", + "query": "SELECT Num_of_Staff , Open_Year FROM museum WHERE name = 'Plaza Museum'", + "query_toks": [ + "SELECT", + "Num_of_Staff", + ",", + "Open_Year", + "FROM", + "museum", + "WHERE", + "name", + "=", + "'Plaza", + "Museum", + "'" + ], + "query_toks_no_value": [ + "select", + "num_of_staff", + ",", + "open_year", + "from", + "museum", + "where", + "name", + "=", + "value" + ], + "question": "What are the opening year and staff number of the museum named Plaza Museum?", + "question_toks": [ + "What", + "are", + "the", + "opening", + "year", + "and", + "staff", + "number", + "of", + "the", + "museum", + "named", + "Plaza", + "Museum", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 3, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 4, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 2, + false + ], + null + ], + "\"Plaza Museum\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "museum_visit", + "query": "SELECT name FROM museum WHERE num_of_staff > (SELECT min(num_of_staff) FROM museum WHERE open_year > 2010)", + "query_toks": [ + "SELECT", + "name", + "FROM", + "museum", + "WHERE", + "num_of_staff", + ">", + "(", + "SELECT", + "min", + "(", + "num_of_staff", + ")", + "FROM", + "museum", + "WHERE", + "open_year", + ">", + "2010", + ")" + ], + "query_toks_no_value": [ + "select", + "name", + "from", + "museum", + "where", + "num_of_staff", + ">", + "(", + "select", + "min", + "(", + "num_of_staff", + ")", + "from", + "museum", + "where", + "open_year", + ">", + "value", + ")" + ], + "question": "find the names of museums which have more staff than the minimum staff number of all museums opened after 2010.", + "question_toks": [ + "find", + "the", + "names", + "of", + "museums", + "which", + "have", + "more", + "staff", + "than", + "the", + "minimum", + "staff", + "number", + "of", + "all", + "museums", + "opened", + "after", + "2010", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 2, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 3, + [ + 0, + [ + 0, + 3, + false + ], + null + ], + { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 2, + [ + 0, + [ + 0, + 3, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 3, + [ + 0, + [ + 0, + 4, + false + ], + null + ], + 2010.0, + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + }, + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "museum_visit", + "query": "SELECT t1.id , t1.name , t1.age FROM visitor AS t1 JOIN visit AS t2 ON t1.id = t2.visitor_id GROUP BY t1.id HAVING count(*) > 1", + "query_toks": [ + "SELECT", + "t1.id", + ",", + "t1.name", + ",", + "t1.age", + "FROM", + "visitor", + "AS", + "t1", + "JOIN", + "visit", + "AS", + "t2", + "ON", + "t1.id", + "=", + "t2.visitor_id", + "GROUP", + "BY", + "t1.id", + "HAVING", + "count", + "(", + "*", + ")", + ">", + "1" + ], + "query_toks_no_value": [ + "select", + "t1", + ".", + "id", + ",", + "t1", + ".", + "name", + ",", + "t1", + ".", + "age", + "from", + "visitor", + "as", + "t1", + "join", + "visit", + "as", + "t2", + "on", + "t1", + ".", + "id", + "=", + "t2", + ".", + "visitor_id", + "group", + "by", + "t1", + ".", + "id", + "having", + "count", + "(", + "*", + ")", + ">", + "value" + ], + "question": "find the id, name and age for visitors who visited some museums more than once.", + "question_toks": [ + "find", + "the", + "id", + ",", + "name", + "and", + "age", + "for", + "visitors", + "who", + "visited", + "some", + "museums", + "more", + "than", + "once", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ], + [ + "table_unit", + 2 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 5, + false + ], + null + ], + [ + 0, + 10, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 5, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 6, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 8, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 5, + false + ] + ], + "having": [ + [ + false, + 3, + [ + 0, + [ + 3, + 0, + false + ], + null + ], + 1.0, + null + ] + ], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "museum_visit", + "query": "SELECT t2.visitor_id , t1.name , t1.Level_of_membership FROM visitor AS t1 JOIN visit AS t2 ON t1.id = t2.visitor_id GROUP BY t2.visitor_id ORDER BY sum(t2.Total_spent) DESC LIMIT 1", + "query_toks": [ + "SELECT", + "t2.visitor_id", + ",", + "t1.name", + ",", + "t1.Level_of_membership", + "FROM", + "visitor", + "AS", + "t1", + "JOIN", + "visit", + "AS", + "t2", + "ON", + "t1.id", + "=", + "t2.visitor_id", + "GROUP", + "BY", + "t2.visitor_id", + "ORDER", + "BY", + "sum", + "(", + "t2.Total_spent", + ")", + "DESC", + "LIMIT", + "1" + ], + "query_toks_no_value": [ + "select", + "t2", + ".", + "visitor_id", + ",", + "t1", + ".", + "name", + ",", + "t1", + ".", + "level_of_membership", + "from", + "visitor", + "as", + "t1", + "join", + "visit", + "as", + "t2", + "on", + "t1", + ".", + "id", + "=", + "t2", + ".", + "visitor_id", + "group", + "by", + "t2", + ".", + "visitor_id", + "order", + "by", + "sum", + "(", + "t2", + ".", + "total_spent", + ")", + "desc", + "limit", + "value" + ], + "question": "What are the id, name and membership level of visitors who have spent the largest amount of money in total in all museum tickets?", + "question_toks": [ + "What", + "are", + "the", + "id", + ",", + "name", + "and", + "membership", + "level", + "of", + "visitors", + "who", + "have", + "spent", + "the", + "largest", + "amount", + "of", + "money", + "in", + "total", + "in", + "all", + "museum", + "tickets", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ], + [ + "table_unit", + 2 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 5, + false + ], + null + ], + [ + 0, + 10, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 10, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 6, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 7, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 10, + false + ] + ], + "having": [], + "orderBy": [ + "desc", + [ + [ + 0, + [ + 4, + 12, + false + ], + null + ] + ] + ], + "limit": 1, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "museum_visit", + "query": "SELECT t2.Museum_ID , t1.name FROM museum AS t1 JOIN visit AS t2 ON t1.Museum_ID = t2.Museum_ID GROUP BY t2.Museum_ID ORDER BY count(*) DESC LIMIT 1", + "query_toks": [ + "SELECT", + "t2.Museum_ID", + ",", + "t1.name", + "FROM", + "museum", + "AS", + "t1", + "JOIN", + "visit", + "AS", + "t2", + "ON", + "t1.Museum_ID", + "=", + "t2.Museum_ID", + "GROUP", + "BY", + "t2.Museum_ID", + "ORDER", + "BY", + "count", + "(", + "*", + ")", + "DESC", + "LIMIT", + "1" + ], + "query_toks_no_value": [ + "select", + "t2", + ".", + "museum_id", + ",", + "t1", + ".", + "name", + "from", + "museum", + "as", + "t1", + "join", + "visit", + "as", + "t2", + "on", + "t1", + ".", + "museum_id", + "=", + "t2", + ".", + "museum_id", + "group", + "by", + "t2", + ".", + "museum_id", + "order", + "by", + "count", + "(", + "*", + ")", + "desc", + "limit", + "value" + ], + "question": "What are the id and name of the museum visited most times?", + "question_toks": [ + "What", + "are", + "the", + "id", + "and", + "name", + "of", + "the", + "museum", + "visited", + "most", + "times", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ], + [ + "table_unit", + 2 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 1, + false + ], + null + ], + [ + 0, + 9, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 9, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 2, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 9, + false + ] + ], + "having": [], + "orderBy": [ + "desc", + [ + [ + 0, + [ + 3, + 0, + false + ], + null + ] + ] + ], + "limit": 1, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "museum_visit", + "query": "SELECT name FROM museum WHERE Museum_ID NOT IN (SELECT museum_id FROM visit)", + "query_toks": [ + "SELECT", + "name", + "FROM", + "museum", + "WHERE", + "Museum_ID", + "NOT", + "IN", + "(", + "SELECT", + "museum_id", + "FROM", + "visit", + ")" + ], + "query_toks_no_value": [ + "select", + "name", + "from", + "museum", + "where", + "museum_id", + "not", + "in", + "(", + "select", + "museum_id", + "from", + "visit", + ")" + ], + "question": "What is the name of the museum that had no visitor yet?", + "question_toks": [ + "What", + "is", + "the", + "name", + "of", + "the", + "museum", + "that", + "had", + "no", + "visitor", + "yet", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 2, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + true, + 8, + [ + 0, + [ + 0, + 1, + false + ], + null + ], + { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 9, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + }, + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "museum_visit", + "query": "SELECT t1.name , t1.age FROM visitor AS t1 JOIN visit AS t2 ON t1.id = t2.visitor_id ORDER BY t2.num_of_ticket DESC LIMIT 1", + "query_toks": [ + "SELECT", + "t1.name", + ",", + "t1.age", + "FROM", + "visitor", + "AS", + "t1", + "JOIN", + "visit", + "AS", + "t2", + "ON", + "t1.id", + "=", + "t2.visitor_id", + "ORDER", + "BY", + "t2.num_of_ticket", + "DESC", + "LIMIT", + "1" + ], + "query_toks_no_value": [ + "select", + "t1", + ".", + "name", + ",", + "t1", + ".", + "age", + "from", + "visitor", + "as", + "t1", + "join", + "visit", + "as", + "t2", + "on", + "t1", + ".", + "id", + "=", + "t2", + ".", + "visitor_id", + "order", + "by", + "t2", + ".", + "num_of_ticket", + "desc", + "limit", + "value" + ], + "question": "Find the name and age of the visitor who bought the most tickets at once.", + "question_toks": [ + "Find", + "the", + "name", + "and", + "age", + "of", + "the", + "visitor", + "who", + "bought", + "the", + "most", + "tickets", + "at", + "once", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ], + [ + "table_unit", + 2 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 5, + false + ], + null + ], + [ + 0, + 10, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 6, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 8, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [ + "desc", + [ + [ + 0, + [ + 0, + 11, + false + ], + null + ] + ] + ], + "limit": 1, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "museum_visit", + "query": "SELECT avg(num_of_ticket) , max(num_of_ticket) FROM visit", + "query_toks": [ + "SELECT", + "avg", + "(", + "num_of_ticket", + ")", + ",", + "max", + "(", + "num_of_ticket", + ")", + "FROM", + "visit" + ], + "query_toks_no_value": [ + "select", + "avg", + "(", + "num_of_ticket", + ")", + ",", + "max", + "(", + "num_of_ticket", + ")", + "from", + "visit" + ], + "question": "What are the average and maximum number of tickets bought in all visits?", + "question_toks": [ + "What", + "are", + "the", + "average", + "and", + "maximum", + "number", + "of", + "tickets", + "bought", + "in", + "all", + "visits", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 5, + [ + 0, + [ + 0, + 11, + false + ], + null + ] + ], + [ + 1, + [ + 0, + [ + 0, + 11, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "museum_visit", + "query": "SELECT sum(t2.Total_spent) FROM visitor AS t1 JOIN visit AS t2 ON t1.id = t2.visitor_id WHERE t1.Level_of_membership = 1", + "query_toks": [ + "SELECT", + "sum", + "(", + "t2.Total_spent", + ")", + "FROM", + "visitor", + "AS", + "t1", + "JOIN", + "visit", + "AS", + "t2", + "ON", + "t1.id", + "=", + "t2.visitor_id", + "WHERE", + "t1.Level_of_membership", + "=", + "1" + ], + "query_toks_no_value": [ + "select", + "sum", + "(", + "t2", + ".", + "total_spent", + ")", + "from", + "visitor", + "as", + "t1", + "join", + "visit", + "as", + "t2", + "on", + "t1", + ".", + "id", + "=", + "t2", + ".", + "visitor_id", + "where", + "t1", + ".", + "level_of_membership", + "=", + "value" + ], + "question": "What is the total ticket expense of the visitors whose membership level is 1?", + "question_toks": [ + "What", + "is", + "the", + "total", + "ticket", + "expense", + "of", + "the", + "visitors", + "whose", + "membership", + "level", + "is", + "1", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ], + [ + "table_unit", + 2 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 5, + false + ], + null + ], + [ + 0, + 10, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 4, + [ + 0, + [ + 0, + 12, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 7, + false + ], + null + ], + 1.0, + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "museum_visit", + "query": "SELECT t1.name FROM visitor AS t1 JOIN visit AS t2 ON t1.id = t2.visitor_id JOIN museum AS t3 ON t3.Museum_ID = t2.Museum_ID WHERE t3.open_year < 2009 INTERSECT SELECT t1.name FROM visitor AS t1 JOIN visit AS t2 ON t1.id = t2.visitor_id JOIN museum AS t3 ON t3.Museum_ID = t2.Museum_ID WHERE t3.open_year > 2011", + "query_toks": [ + "SELECT", + "t1.name", + "FROM", + "visitor", + "AS", + "t1", + "JOIN", + "visit", + "AS", + "t2", + "ON", + "t1.id", + "=", + "t2.visitor_id", + "JOIN", + "museum", + "AS", + "t3", + "ON", + "t3.Museum_ID", + "=", + "t2.Museum_ID", + "WHERE", + "t3.open_year", + "<", + "2009", + "INTERSECT", + "SELECT", + "t1.name", + "FROM", + "visitor", + "AS", + "t1", + "JOIN", + "visit", + "AS", + "t2", + "ON", + "t1.id", + "=", + "t2.visitor_id", + "JOIN", + "museum", + "AS", + "t3", + "ON", + "t3.Museum_ID", + "=", + "t2.Museum_ID", + "WHERE", + "t3.open_year", + ">", + "2011" + ], + "query_toks_no_value": [ + "select", + "t1", + ".", + "name", + "from", + "visitor", + "as", + "t1", + "join", + "visit", + "as", + "t2", + "on", + "t1", + ".", + "id", + "=", + "t2", + ".", + "visitor_id", + "join", + "museum", + "as", + "t3", + "on", + "t3", + ".", + "museum_id", + "=", + "t2", + ".", + "museum_id", + "where", + "t3", + ".", + "open_year", + "<", + "value", + "intersect", + "select", + "t1", + ".", + "name", + "from", + "visitor", + "as", + "t1", + "join", + "visit", + "as", + "t2", + "on", + "t1", + ".", + "id", + "=", + "t2", + ".", + "visitor_id", + "join", + "museum", + "as", + "t3", + "on", + "t3", + ".", + "museum_id", + "=", + "t2", + ".", + "museum_id", + "where", + "t3", + ".", + "open_year", + ">", + "value" + ], + "question": "What is the name of the visitor who visited both a museum opened before 2009 and a museum opened after 2011?", + "question_toks": [ + "What", + "is", + "the", + "name", + "of", + "the", + "visitor", + "who", + "visited", + "both", + "a", + "museum", + "opened", + "before", + "2009", + "and", + "a", + "museum", + "opened", + "after", + "2011", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ], + [ + "table_unit", + 2 + ], + [ + "table_unit", + 0 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 5, + false + ], + null + ], + [ + 0, + 10, + false + ], + null + ], + "and", + [ + false, + 2, + [ + 0, + [ + 0, + 1, + false + ], + null + ], + [ + 0, + 9, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 6, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 4, + [ + 0, + [ + 0, + 4, + false + ], + null + ], + 2009.0, + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ], + [ + "table_unit", + 2 + ], + [ + "table_unit", + 0 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 5, + false + ], + null + ], + [ + 0, + 10, + false + ], + null + ], + "and", + [ + false, + 2, + [ + 0, + [ + 0, + 1, + false + ], + null + ], + [ + 0, + 9, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 6, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 3, + [ + 0, + [ + 0, + 4, + false + ], + null + ], + 2011.0, + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + }, + "union": null, + "except": null + } + }, + { + "db_id": "museum_visit", + "query": "SELECT count(*) FROM visitor WHERE id NOT IN (SELECT t2.visitor_id FROM museum AS t1 JOIN visit AS t2 ON t1.Museum_ID = t2.Museum_ID WHERE t1.open_year > 2010)", + "query_toks": [ + "SELECT", + "count", + "(", + "*", + ")", + "FROM", + "visitor", + "WHERE", + "id", + "NOT", + "IN", + "(", + "SELECT", + "t2.visitor_id", + "FROM", + "museum", + "AS", + "t1", + "JOIN", + "visit", + "AS", + "t2", + "ON", + "t1.Museum_ID", + "=", + "t2.Museum_ID", + "WHERE", + "t1.open_year", + ">", + "2010", + ")" + ], + "query_toks_no_value": [ + "select", + "count", + "(", + "*", + ")", + "from", + "visitor", + "where", + "id", + "not", + "in", + "(", + "select", + "t2", + ".", + "visitor_id", + "from", + "museum", + "as", + "t1", + "join", + "visit", + "as", + "t2", + "on", + "t1", + ".", + "museum_id", + "=", + "t2", + ".", + "museum_id", + "where", + "t1", + ".", + "open_year", + ">", + "value", + ")" + ], + "question": "Find the number of visitors who did not visit any museum opened after 2010.", + "question_toks": [ + "Find", + "the", + "number", + "of", + "visitors", + "who", + "did", + "not", + "visit", + "any", + "museum", + "opened", + "after", + "2010", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 3, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + true, + 8, + [ + 0, + [ + 0, + 5, + false + ], + null + ], + { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ], + [ + "table_unit", + 2 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 1, + false + ], + null + ], + [ + 0, + 9, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 10, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 3, + [ + 0, + [ + 0, + 4, + false + ], + null + ], + 2010.0, + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + }, + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "museum_visit", + "query": "SELECT count(*) FROM museum WHERE open_year > 2013 OR open_year < 2008", + "query_toks": [ + "SELECT", + "count", + "(", + "*", + ")", + "FROM", + "museum", + "WHERE", + "open_year", + ">", + "2013", + "OR", + "open_year", + "<", + "2008" + ], + "query_toks_no_value": [ + "select", + "count", + "(", + "*", + ")", + "from", + "museum", + "where", + "open_year", + ">", + "value", + "or", + "open_year", + "<", + "value" + ], + "question": "How many museums were opened after 2013 or before 2008?", + "question_toks": [ + "How", + "many", + "museums", + "were", + "opened", + "after", + "2013", + "or", + "before", + "2008", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 3, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 3, + [ + 0, + [ + 0, + 4, + false + ], + null + ], + 2013.0, + null + ], + "or", + [ + false, + 4, + [ + 0, + [ + 0, + 4, + false + ], + null + ], + 2008.0, + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "wta_1", + "query": "SELECT count(*) FROM players", + "query_toks": [ + "SELECT", + "count", + "(", + "*", + ")", + "FROM", + "players" + ], + "query_toks_no_value": [ + "select", + "count", + "(", + "*", + ")", + "from", + "players" + ], + "question": "Find the total number of players.", + "question_toks": [ + "Find", + "the", + "total", + "number", + "of", + "players", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 3, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "wta_1", + "query": "SELECT count(*) FROM players", + "query_toks": [ + "SELECT", + "count", + "(", + "*", + ")", + "FROM", + "players" + ], + "query_toks_no_value": [ + "select", + "count", + "(", + "*", + ")", + "from", + "players" + ], + "question": "How many players are there?", + "question_toks": [ + "How", + "many", + "players", + "are", + "there", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 3, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "wta_1", + "query": "SELECT count(*) FROM matches", + "query_toks": [ + "SELECT", + "count", + "(", + "*", + ")", + "FROM", + "matches" + ], + "query_toks_no_value": [ + "select", + "count", + "(", + "*", + ")", + "from", + "matches" + ], + "question": "Find the total number of matches.", + "question_toks": [ + "Find", + "the", + "total", + "number", + "of", + "matches", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 3, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "wta_1", + "query": "SELECT count(*) FROM matches", + "query_toks": [ + "SELECT", + "count", + "(", + "*", + ")", + "FROM", + "matches" + ], + "query_toks_no_value": [ + "select", + "count", + "(", + "*", + ")", + "from", + "matches" + ], + "question": "Count the number of matches.", + "question_toks": [ + "Count", + "the", + "number", + "of", + "matches", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 3, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "wta_1", + "query": "SELECT first_name , birth_date FROM players WHERE country_code = 'USA'", + "query_toks": [ + "SELECT", + "first_name", + ",", + "birth_date", + "FROM", + "players", + "WHERE", + "country_code", + "=", + "'USA", + "'" + ], + "query_toks_no_value": [ + "select", + "first_name", + ",", + "birth_date", + "from", + "players", + "where", + "country_code", + "=", + "value" + ], + "question": "List the first name and birth date of all players from the country with code USA.", + "question_toks": [ + "List", + "the", + "first", + "name", + "and", + "birth", + "date", + "of", + "all", + "players", + "from", + "the", + "country", + "with", + "code", + "USA", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 2, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 5, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 6, + false + ], + null + ], + "\"USA\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "wta_1", + "query": "SELECT first_name , birth_date FROM players WHERE country_code = 'USA'", + "query_toks": [ + "SELECT", + "first_name", + ",", + "birth_date", + "FROM", + "players", + "WHERE", + "country_code", + "=", + "'USA", + "'" + ], + "query_toks_no_value": [ + "select", + "first_name", + ",", + "birth_date", + "from", + "players", + "where", + "country_code", + "=", + "value" + ], + "question": "What are the first names and birth dates of players from the USA?", + "question_toks": [ + "What", + "are", + "the", + "first", + "names", + "and", + "birth", + "dates", + "of", + "players", + "from", + "the", + "USA", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 2, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 5, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 6, + false + ], + null + ], + "\"USA\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "wta_1", + "query": "SELECT avg(loser_age) , avg(winner_age) FROM matches", + "query_toks": [ + "SELECT", + "avg", + "(", + "loser_age", + ")", + ",", + "avg", + "(", + "winner_age", + ")", + "FROM", + "matches" + ], + "query_toks_no_value": [ + "select", + "avg", + "(", + "loser_age", + ")", + ",", + "avg", + "(", + "winner_age", + ")", + "from", + "matches" + ], + "question": "Find the average age of losers and winners of all matches.", + "question_toks": [ + "Find", + "the", + "average", + "age", + "of", + "losers", + "and", + "winners", + "of", + "all", + "matches", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 5, + [ + 0, + [ + 0, + 9, + false + ], + null + ] + ], + [ + 5, + [ + 0, + [ + 0, + 28, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "wta_1", + "query": "SELECT avg(loser_age) , avg(winner_age) FROM matches", + "query_toks": [ + "SELECT", + "avg", + "(", + "loser_age", + ")", + ",", + "avg", + "(", + "winner_age", + ")", + "FROM", + "matches" + ], + "query_toks_no_value": [ + "select", + "avg", + "(", + "loser_age", + ")", + ",", + "avg", + "(", + "winner_age", + ")", + "from", + "matches" + ], + "question": "What are the average ages of losers and winners across matches?", + "question_toks": [ + "What", + "are", + "the", + "average", + "ages", + "of", + "losers", + "and", + "winners", + "across", + "matches", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 5, + [ + 0, + [ + 0, + 9, + false + ], + null + ] + ], + [ + 5, + [ + 0, + [ + 0, + 28, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "wta_1", + "query": "SELECT avg(winner_rank) FROM matches", + "query_toks": [ + "SELECT", + "avg", + "(", + "winner_rank", + ")", + "FROM", + "matches" + ], + "query_toks_no_value": [ + "select", + "avg", + "(", + "winner_rank", + ")", + "from", + "matches" + ], + "question": "Find the average rank of winners in all matches.", + "question_toks": [ + "Find", + "the", + "average", + "rank", + "of", + "winners", + "in", + "all", + "matches", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 5, + [ + 0, + [ + 0, + 35, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "wta_1", + "query": "SELECT avg(winner_rank) FROM matches", + "query_toks": [ + "SELECT", + "avg", + "(", + "winner_rank", + ")", + "FROM", + "matches" + ], + "query_toks_no_value": [ + "select", + "avg", + "(", + "winner_rank", + ")", + "from", + "matches" + ], + "question": "What is the average rank for winners in all matches?", + "question_toks": [ + "What", + "is", + "the", + "average", + "rank", + "for", + "winners", + "in", + "all", + "matches", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 5, + [ + 0, + [ + 0, + 35, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "wta_1", + "query": "SELECT min(loser_rank) FROM matches", + "query_toks": [ + "SELECT", + "min", + "(", + "loser_rank", + ")", + "FROM", + "matches" + ], + "query_toks_no_value": [ + "select", + "min", + "(", + "loser_rank", + ")", + "from", + "matches" + ], + "question": "Find the highest rank of losers in all matches.", + "question_toks": [ + "Find", + "the", + "highest", + "rank", + "of", + "losers", + "in", + "all", + "matches", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 2, + [ + 0, + [ + 0, + 16, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "wta_1", + "query": "SELECT min(loser_rank) FROM matches", + "query_toks": [ + "SELECT", + "min", + "(", + "loser_rank", + ")", + "FROM", + "matches" + ], + "query_toks_no_value": [ + "select", + "min", + "(", + "loser_rank", + ")", + "from", + "matches" + ], + "question": "What is the best rank of losers across all matches?", + "question_toks": [ + "What", + "is", + "the", + "best", + "rank", + "of", + "losers", + "across", + "all", + "matches", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 2, + [ + 0, + [ + 0, + 16, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "wta_1", + "query": "SELECT count(DISTINCT country_code) FROM players", + "query_toks": [ + "SELECT", + "count", + "(", + "DISTINCT", + "country_code", + ")", + "FROM", + "players" + ], + "query_toks_no_value": [ + "select", + "count", + "(", + "distinct", + "country_code", + ")", + "from", + "players" + ], + "question": "find the number of distinct country codes of all players.", + "question_toks": [ + "find", + "the", + "number", + "of", + "distinct", + "country", + "codes", + "of", + "all", + "players", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 3, + [ + 0, + [ + 0, + 6, + true + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "wta_1", + "query": "SELECT count(DISTINCT country_code) FROM players", + "query_toks": [ + "SELECT", + "count", + "(", + "DISTINCT", + "country_code", + ")", + "FROM", + "players" + ], + "query_toks_no_value": [ + "select", + "count", + "(", + "distinct", + "country_code", + ")", + "from", + "players" + ], + "question": "How many distinct countries do players come from?", + "question_toks": [ + "How", + "many", + "distinct", + "countries", + "do", + "players", + "come", + "from", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 3, + [ + 0, + [ + 0, + 6, + true + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "wta_1", + "query": "SELECT count(DISTINCT loser_name) FROM matches", + "query_toks": [ + "SELECT", + "count", + "(", + "DISTINCT", + "loser_name", + ")", + "FROM", + "matches" + ], + "query_toks_no_value": [ + "select", + "count", + "(", + "distinct", + "loser_name", + ")", + "from", + "matches" + ], + "question": "Find the number of distinct name of losers.", + "question_toks": [ + "Find", + "the", + "number", + "of", + "distinct", + "name", + "of", + "losers", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 3, + [ + 0, + [ + 0, + 15, + true + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "wta_1", + "query": "SELECT count(DISTINCT loser_name) FROM matches", + "query_toks": [ + "SELECT", + "count", + "(", + "DISTINCT", + "loser_name", + ")", + "FROM", + "matches" + ], + "query_toks_no_value": [ + "select", + "count", + "(", + "distinct", + "loser_name", + ")", + "from", + "matches" + ], + "question": "How many different loser names are there?", + "question_toks": [ + "How", + "many", + "different", + "loser", + "names", + "are", + "there", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 3, + [ + 0, + [ + 0, + 15, + true + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "wta_1", + "query": "SELECT tourney_name FROM matches GROUP BY tourney_name HAVING count(*) > 10", + "query_toks": [ + "SELECT", + "tourney_name", + "FROM", + "matches", + "GROUP", + "BY", + "tourney_name", + "HAVING", + "count", + "(", + "*", + ")", + ">", + "10" + ], + "query_toks_no_value": [ + "select", + "tourney_name", + "from", + "matches", + "group", + "by", + "tourney_name", + "having", + "count", + "(", + "*", + ")", + ">", + "value" + ], + "question": "Find the name of tourney that has more than 10 matches.", + "question_toks": [ + "Find", + "the", + "name", + "of", + "tourney", + "that", + "has", + "more", + "than", + "10", + "matches", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 27, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 27, + false + ] + ], + "having": [ + [ + false, + 3, + [ + 0, + [ + 3, + 0, + false + ], + null + ], + 10.0, + null + ] + ], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "wta_1", + "query": "SELECT tourney_name FROM matches GROUP BY tourney_name HAVING count(*) > 10", + "query_toks": [ + "SELECT", + "tourney_name", + "FROM", + "matches", + "GROUP", + "BY", + "tourney_name", + "HAVING", + "count", + "(", + "*", + ")", + ">", + "10" + ], + "query_toks_no_value": [ + "select", + "tourney_name", + "from", + "matches", + "group", + "by", + "tourney_name", + "having", + "count", + "(", + "*", + ")", + ">", + "value" + ], + "question": "What are the names of tournaments that have more than 10 matches?", + "question_toks": [ + "What", + "are", + "the", + "names", + "of", + "tournaments", + "that", + "have", + "more", + "than", + "10", + "matches", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 27, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 27, + false + ] + ], + "having": [ + [ + false, + 3, + [ + 0, + [ + 3, + 0, + false + ], + null + ], + 10.0, + null + ] + ], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "wta_1", + "query": "SELECT winner_name FROM matches WHERE YEAR = 2013 INTERSECT SELECT winner_name FROM matches WHERE YEAR = 2016", + "query_toks": [ + "SELECT", + "winner_name", + "FROM", + "matches", + "WHERE", + "YEAR", + "=", + "2013", + "INTERSECT", + "SELECT", + "winner_name", + "FROM", + "matches", + "WHERE", + "YEAR", + "=", + "2016" + ], + "query_toks_no_value": [ + "select", + "winner_name", + "from", + "matches", + "where", + "year", + "=", + "value", + "intersect", + "select", + "winner_name", + "from", + "matches", + "where", + "year", + "=", + "value" + ], + "question": "List the names of all winners who played in both 2013 and 2016.", + "question_toks": [ + "List", + "the", + "names", + "of", + "all", + "winners", + "who", + "played", + "in", + "both", + "2013", + "and", + "2016", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 34, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 38, + false + ], + null + ], + 2013.0, + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 34, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 38, + false + ], + null + ], + 2016.0, + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + }, + "union": null, + "except": null + } + }, + { + "db_id": "wta_1", + "query": "SELECT winner_name FROM matches WHERE YEAR = 2013 INTERSECT SELECT winner_name FROM matches WHERE YEAR = 2016", + "query_toks": [ + "SELECT", + "winner_name", + "FROM", + "matches", + "WHERE", + "YEAR", + "=", + "2013", + "INTERSECT", + "SELECT", + "winner_name", + "FROM", + "matches", + "WHERE", + "YEAR", + "=", + "2016" + ], + "query_toks_no_value": [ + "select", + "winner_name", + "from", + "matches", + "where", + "year", + "=", + "value", + "intersect", + "select", + "winner_name", + "from", + "matches", + "where", + "year", + "=", + "value" + ], + "question": "What are the names of players who won in both 2013 and 2016?", + "question_toks": [ + "What", + "are", + "the", + "names", + "of", + "players", + "who", + "won", + "in", + "both", + "2013", + "and", + "2016", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 34, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 38, + false + ], + null + ], + 2013.0, + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 34, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 38, + false + ], + null + ], + 2016.0, + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + }, + "union": null, + "except": null + } + }, + { + "db_id": "wta_1", + "query": "SELECT count(*) FROM matches WHERE YEAR = 2013 OR YEAR = 2016", + "query_toks": [ + "SELECT", + "count", + "(", + "*", + ")", + "FROM", + "matches", + "WHERE", + "YEAR", + "=", + "2013", + "OR", + "YEAR", + "=", + "2016" + ], + "query_toks_no_value": [ + "select", + "count", + "(", + "*", + ")", + "from", + "matches", + "where", + "year", + "=", + "value", + "or", + "year", + "=", + "value" + ], + "question": "List the number of all matches who played in years of 2013 or 2016.", + "question_toks": [ + "List", + "the", + "number", + "of", + "all", + "matches", + "who", + "played", + "in", + "years", + "of", + "2013", + "or", + "2016", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 3, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 38, + false + ], + null + ], + 2013.0, + null + ], + "or", + [ + false, + 2, + [ + 0, + [ + 0, + 38, + false + ], + null + ], + 2016.0, + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "wta_1", + "query": "SELECT count(*) FROM matches WHERE YEAR = 2013 OR YEAR = 2016", + "query_toks": [ + "SELECT", + "count", + "(", + "*", + ")", + "FROM", + "matches", + "WHERE", + "YEAR", + "=", + "2013", + "OR", + "YEAR", + "=", + "2016" + ], + "query_toks_no_value": [ + "select", + "count", + "(", + "*", + ")", + "from", + "matches", + "where", + "year", + "=", + "value", + "or", + "year", + "=", + "value" + ], + "question": "How many matches were played in 2013 or 2016?", + "question_toks": [ + "How", + "many", + "matches", + "were", + "played", + "in", + "2013", + "or", + "2016", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 3, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 38, + false + ], + null + ], + 2013.0, + null + ], + "or", + [ + false, + 2, + [ + 0, + [ + 0, + 38, + false + ], + null + ], + 2016.0, + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "wta_1", + "query": "SELECT T1.country_code , T1.first_name FROM players AS T1 JOIN matches AS T2 ON T1.player_id = T2.winner_id WHERE T2.tourney_name = 'WTA Championships' INTERSECT SELECT T1.country_code , T1.first_name FROM players AS T1 JOIN matches AS T2 ON T1.player_id = T2.winner_id WHERE T2.tourney_name = 'Australian Open'", + "query_toks": [ + "SELECT", + "T1.country_code", + ",", + "T1.first_name", + "FROM", + "players", + "AS", + "T1", + "JOIN", + "matches", + "AS", + "T2", + "ON", + "T1.player_id", + "=", + "T2.winner_id", + "WHERE", + "T2.tourney_name", + "=", + "'WTA", + "Championships", + "'", + "INTERSECT", + "SELECT", + "T1.country_code", + ",", + "T1.first_name", + "FROM", + "players", + "AS", + "T1", + "JOIN", + "matches", + "AS", + "T2", + "ON", + "T1.player_id", + "=", + "T2.winner_id", + "WHERE", + "T2.tourney_name", + "=", + "'Australian", + "Open", + "'" + ], + "query_toks_no_value": [ + "select", + "t1", + ".", + "country_code", + ",", + "t1", + ".", + "first_name", + "from", + "players", + "as", + "t1", + "join", + "matches", + "as", + "t2", + "on", + "t1", + ".", + "player_id", + "=", + "t2", + ".", + "winner_id", + "where", + "t2", + ".", + "tourney_name", + "=", + "value", + "intersect", + "select", + "t1", + ".", + "country_code", + ",", + "t1", + ".", + "first_name", + "from", + "players", + "as", + "t1", + "join", + "matches", + "as", + "t2", + "on", + "t1", + ".", + "player_id", + "=", + "t2", + ".", + "winner_id", + "where", + "t2", + ".", + "tourney_name", + "=", + "value" + ], + "question": "What are the country code and first name of the players who won in both tourney WTA Championships and Australian Open?", + "question_toks": [ + "What", + "are", + "the", + "country", + "code", + "and", + "first", + "name", + "of", + "the", + "players", + "who", + "won", + "in", + "both", + "tourney", + "WTA", + "Championships", + "and", + "Australian", + "Open", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ], + [ + "table_unit", + 1 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 1, + false + ], + null + ], + [ + 0, + 32, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 6, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 2, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 27, + false + ], + null + ], + "\"WTA Championships\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ], + [ + "table_unit", + 1 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 1, + false + ], + null + ], + [ + 0, + 32, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 6, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 2, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 27, + false + ], + null + ], + "\"Australian Open\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + }, + "union": null, + "except": null + } + }, + { + "db_id": "wta_1", + "query": "SELECT T1.country_code , T1.first_name FROM players AS T1 JOIN matches AS T2 ON T1.player_id = T2.winner_id WHERE T2.tourney_name = 'WTA Championships' INTERSECT SELECT T1.country_code , T1.first_name FROM players AS T1 JOIN matches AS T2 ON T1.player_id = T2.winner_id WHERE T2.tourney_name = 'Australian Open'", + "query_toks": [ + "SELECT", + "T1.country_code", + ",", + "T1.first_name", + "FROM", + "players", + "AS", + "T1", + "JOIN", + "matches", + "AS", + "T2", + "ON", + "T1.player_id", + "=", + "T2.winner_id", + "WHERE", + "T2.tourney_name", + "=", + "'WTA", + "Championships", + "'", + "INTERSECT", + "SELECT", + "T1.country_code", + ",", + "T1.first_name", + "FROM", + "players", + "AS", + "T1", + "JOIN", + "matches", + "AS", + "T2", + "ON", + "T1.player_id", + "=", + "T2.winner_id", + "WHERE", + "T2.tourney_name", + "=", + "'Australian", + "Open", + "'" + ], + "query_toks_no_value": [ + "select", + "t1", + ".", + "country_code", + ",", + "t1", + ".", + "first_name", + "from", + "players", + "as", + "t1", + "join", + "matches", + "as", + "t2", + "on", + "t1", + ".", + "player_id", + "=", + "t2", + ".", + "winner_id", + "where", + "t2", + ".", + "tourney_name", + "=", + "value", + "intersect", + "select", + "t1", + ".", + "country_code", + ",", + "t1", + ".", + "first_name", + "from", + "players", + "as", + "t1", + "join", + "matches", + "as", + "t2", + "on", + "t1", + ".", + "player_id", + "=", + "t2", + ".", + "winner_id", + "where", + "t2", + ".", + "tourney_name", + "=", + "value" + ], + "question": "What are the first names and country codes for players who won both the WTA Championships and the Australian Open?", + "question_toks": [ + "What", + "are", + "the", + "first", + "names", + "and", + "country", + "codes", + "for", + "players", + "who", + "won", + "both", + "the", + "WTA", + "Championships", + "and", + "the", + "Australian", + "Open", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ], + [ + "table_unit", + 1 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 1, + false + ], + null + ], + [ + 0, + 32, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 6, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 2, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 27, + false + ], + null + ], + "\"WTA Championships\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ], + [ + "table_unit", + 1 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 1, + false + ], + null + ], + [ + 0, + 32, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 6, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 2, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 27, + false + ], + null + ], + "\"Australian Open\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + }, + "union": null, + "except": null + } + }, + { + "db_id": "wta_1", + "query": "SELECT first_name , country_code FROM players ORDER BY birth_date LIMIT 1", + "query_toks": [ + "SELECT", + "first_name", + ",", + "country_code", + "FROM", + "players", + "ORDER", + "BY", + "birth_date", + "LIMIT", + "1" + ], + "query_toks_no_value": [ + "select", + "first_name", + ",", + "country_code", + "from", + "players", + "order", + "by", + "birth_date", + "limit", + "value" + ], + "question": "Find the first name and country code of the oldest player.", + "question_toks": [ + "Find", + "the", + "first", + "name", + "and", + "country", + "code", + "of", + "the", + "oldest", + "player", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 2, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 6, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [ + "asc", + [ + [ + 0, + [ + 0, + 5, + false + ], + null + ] + ] + ], + "limit": 1, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "wta_1", + "query": "SELECT first_name , country_code FROM players ORDER BY birth_date LIMIT 1", + "query_toks": [ + "SELECT", + "first_name", + ",", + "country_code", + "FROM", + "players", + "ORDER", + "BY", + "birth_date", + "LIMIT", + "1" + ], + "query_toks_no_value": [ + "select", + "first_name", + ",", + "country_code", + "from", + "players", + "order", + "by", + "birth_date", + "limit", + "value" + ], + "question": "What is the first name and country code of the oldest player?", + "question_toks": [ + "What", + "is", + "the", + "first", + "name", + "and", + "country", + "code", + "of", + "the", + "oldest", + "player", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 2, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 6, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [ + "asc", + [ + [ + 0, + [ + 0, + 5, + false + ], + null + ] + ] + ], + "limit": 1, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "wta_1", + "query": "SELECT first_name , last_name FROM players ORDER BY birth_date", + "query_toks": [ + "SELECT", + "first_name", + ",", + "last_name", + "FROM", + "players", + "ORDER", + "BY", + "birth_date" + ], + "query_toks_no_value": [ + "select", + "first_name", + ",", + "last_name", + "from", + "players", + "order", + "by", + "birth_date" + ], + "question": "List the first and last name of all players in the order of birth date.", + "question_toks": [ + "List", + "the", + "first", + "and", + "last", + "name", + "of", + "all", + "players", + "in", + "the", + "order", + "of", + "birth", + "date", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 2, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 3, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [ + "asc", + [ + [ + 0, + [ + 0, + 5, + false + ], + null + ] + ] + ], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "wta_1", + "query": "SELECT first_name , last_name FROM players ORDER BY birth_date", + "query_toks": [ + "SELECT", + "first_name", + ",", + "last_name", + "FROM", + "players", + "ORDER", + "BY", + "birth_date" + ], + "query_toks_no_value": [ + "select", + "first_name", + ",", + "last_name", + "from", + "players", + "order", + "by", + "birth_date" + ], + "question": "What are the full names of all players, sorted by birth date?", + "question_toks": [ + "What", + "are", + "the", + "full", + "names", + "of", + "all", + "players", + ",", + "sorted", + "by", + "birth", + "date", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 2, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 3, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [ + "asc", + [ + [ + 0, + [ + 0, + 5, + false + ], + null + ] + ] + ], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "wta_1", + "query": "SELECT first_name , last_name FROM players WHERE hand = 'L' ORDER BY birth_date", + "query_toks": [ + "SELECT", + "first_name", + ",", + "last_name", + "FROM", + "players", + "WHERE", + "hand", + "=", + "'L", + "'", + "ORDER", + "BY", + "birth_date" + ], + "query_toks_no_value": [ + "select", + "first_name", + ",", + "last_name", + "from", + "players", + "where", + "hand", + "=", + "value", + "order", + "by", + "birth_date" + ], + "question": "List the first and last name of all players who are left / L hand in the order of birth date.", + "question_toks": [ + "List", + "the", + "first", + "and", + "last", + "name", + "of", + "all", + "players", + "who", + "are", + "left", + "/", + "L", + "hand", + "in", + "the", + "order", + "of", + "birth", + "date", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 2, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 3, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 4, + false + ], + null + ], + "\"L\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [ + "asc", + [ + [ + 0, + [ + 0, + 5, + false + ], + null + ] + ] + ], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "wta_1", + "query": "SELECT first_name , last_name FROM players WHERE hand = 'L' ORDER BY birth_date", + "query_toks": [ + "SELECT", + "first_name", + ",", + "last_name", + "FROM", + "players", + "WHERE", + "hand", + "=", + "'L", + "'", + "ORDER", + "BY", + "birth_date" + ], + "query_toks_no_value": [ + "select", + "first_name", + ",", + "last_name", + "from", + "players", + "where", + "hand", + "=", + "value", + "order", + "by", + "birth_date" + ], + "question": "What are the full names of all left handed players, in order of birth date?", + "question_toks": [ + "What", + "are", + "the", + "full", + "names", + "of", + "all", + "left", + "handed", + "players", + ",", + "in", + "order", + "of", + "birth", + "date", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 2, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 3, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 4, + false + ], + null + ], + "\"L\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [ + "asc", + [ + [ + 0, + [ + 0, + 5, + false + ], + null + ] + ] + ], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "wta_1", + "query": "SELECT T1.country_code , T1.first_name FROM players AS T1 JOIN rankings AS T2 ON T1.player_id = T2.player_id ORDER BY T2.tours DESC LIMIT 1", + "query_toks": [ + "SELECT", + "T1.country_code", + ",", + "T1.first_name", + "FROM", + "players", + "AS", + "T1", + "JOIN", + "rankings", + "AS", + "T2", + "ON", + "T1.player_id", + "=", + "T2.player_id", + "ORDER", + "BY", + "T2.tours", + "DESC", + "LIMIT", + "1" + ], + "query_toks_no_value": [ + "select", + "t1", + ".", + "country_code", + ",", + "t1", + ".", + "first_name", + "from", + "players", + "as", + "t1", + "join", + "rankings", + "as", + "t2", + "on", + "t1", + ".", + "player_id", + "=", + "t2", + ".", + "player_id", + "order", + "by", + "t2", + ".", + "tours", + "desc", + "limit", + "value" + ], + "question": "Find the first name and country code of the player who did the most number of tours.", + "question_toks": [ + "Find", + "the", + "first", + "name", + "and", + "country", + "code", + "of", + "the", + "player", + "who", + "did", + "the", + "most", + "number", + "of", + "tours", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ], + [ + "table_unit", + 2 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 1, + false + ], + null + ], + [ + 0, + 41, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 6, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 2, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [ + "desc", + [ + [ + 0, + [ + 0, + 43, + false + ], + null + ] + ] + ], + "limit": 1, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "wta_1", + "query": "SELECT T1.country_code , T1.first_name FROM players AS T1 JOIN rankings AS T2 ON T1.player_id = T2.player_id ORDER BY T2.tours DESC LIMIT 1", + "query_toks": [ + "SELECT", + "T1.country_code", + ",", + "T1.first_name", + "FROM", + "players", + "AS", + "T1", + "JOIN", + "rankings", + "AS", + "T2", + "ON", + "T1.player_id", + "=", + "T2.player_id", + "ORDER", + "BY", + "T2.tours", + "DESC", + "LIMIT", + "1" + ], + "query_toks_no_value": [ + "select", + "t1", + ".", + "country_code", + ",", + "t1", + ".", + "first_name", + "from", + "players", + "as", + "t1", + "join", + "rankings", + "as", + "t2", + "on", + "t1", + ".", + "player_id", + "=", + "t2", + ".", + "player_id", + "order", + "by", + "t2", + ".", + "tours", + "desc", + "limit", + "value" + ], + "question": "What is the first name and country code of the player with the most tours?", + "question_toks": [ + "What", + "is", + "the", + "first", + "name", + "and", + "country", + "code", + "of", + "the", + "player", + "with", + "the", + "most", + "tours", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ], + [ + "table_unit", + 2 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 1, + false + ], + null + ], + [ + 0, + 41, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 6, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 2, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [ + "desc", + [ + [ + 0, + [ + 0, + 43, + false + ], + null + ] + ] + ], + "limit": 1, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "wta_1", + "query": "SELECT YEAR FROM matches GROUP BY YEAR ORDER BY count(*) DESC LIMIT 1", + "query_toks": [ + "SELECT", + "YEAR", + "FROM", + "matches", + "GROUP", + "BY", + "YEAR", + "ORDER", + "BY", + "count", + "(", + "*", + ")", + "DESC", + "LIMIT", + "1" + ], + "query_toks_no_value": [ + "select", + "year", + "from", + "matches", + "group", + "by", + "year", + "order", + "by", + "count", + "(", + "*", + ")", + "desc", + "limit", + "value" + ], + "question": "Find the year that has the most number of matches.", + "question_toks": [ + "Find", + "the", + "year", + "that", + "has", + "the", + "most", + "number", + "of", + "matches", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 38, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 38, + false + ] + ], + "having": [], + "orderBy": [ + "desc", + [ + [ + 0, + [ + 3, + 0, + false + ], + null + ] + ] + ], + "limit": 1, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "wta_1", + "query": "SELECT YEAR FROM matches GROUP BY YEAR ORDER BY count(*) DESC LIMIT 1", + "query_toks": [ + "SELECT", + "YEAR", + "FROM", + "matches", + "GROUP", + "BY", + "YEAR", + "ORDER", + "BY", + "count", + "(", + "*", + ")", + "DESC", + "LIMIT", + "1" + ], + "query_toks_no_value": [ + "select", + "year", + "from", + "matches", + "group", + "by", + "year", + "order", + "by", + "count", + "(", + "*", + ")", + "desc", + "limit", + "value" + ], + "question": "Which year had the most matches?", + "question_toks": [ + "Which", + "year", + "had", + "the", + "most", + "matches", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 38, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 38, + false + ] + ], + "having": [], + "orderBy": [ + "desc", + [ + [ + 0, + [ + 3, + 0, + false + ], + null + ] + ] + ], + "limit": 1, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "wta_1", + "query": "SELECT winner_name , winner_rank_points FROM matches GROUP BY winner_name ORDER BY count(*) DESC LIMIT 1", + "query_toks": [ + "SELECT", + "winner_name", + ",", + "winner_rank_points", + "FROM", + "matches", + "GROUP", + "BY", + "winner_name", + "ORDER", + "BY", + "count", + "(", + "*", + ")", + "DESC", + "LIMIT", + "1" + ], + "query_toks_no_value": [ + "select", + "winner_name", + ",", + "winner_rank_points", + "from", + "matches", + "group", + "by", + "winner_name", + "order", + "by", + "count", + "(", + "*", + ")", + "desc", + "limit", + "value" + ], + "question": "Find the name and rank points of the winner who won the most times.", + "question_toks": [ + "Find", + "the", + "name", + "and", + "rank", + "points", + "of", + "the", + "winner", + "who", + "won", + "the", + "most", + "times", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 34, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 36, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 34, + false + ] + ], + "having": [], + "orderBy": [ + "desc", + [ + [ + 0, + [ + 3, + 0, + false + ], + null + ] + ] + ], + "limit": 1, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "wta_1", + "query": "SELECT winner_name , winner_rank_points FROM matches GROUP BY winner_name ORDER BY count(*) DESC LIMIT 1", + "query_toks": [ + "SELECT", + "winner_name", + ",", + "winner_rank_points", + "FROM", + "matches", + "GROUP", + "BY", + "winner_name", + "ORDER", + "BY", + "count", + "(", + "*", + ")", + "DESC", + "LIMIT", + "1" + ], + "query_toks_no_value": [ + "select", + "winner_name", + ",", + "winner_rank_points", + "from", + "matches", + "group", + "by", + "winner_name", + "order", + "by", + "count", + "(", + "*", + ")", + "desc", + "limit", + "value" + ], + "question": "What is the name of the winner who has won the most matches, and how many rank points does this player have?", + "question_toks": [ + "What", + "is", + "the", + "name", + "of", + "the", + "winner", + "who", + "has", + "won", + "the", + "most", + "matches", + ",", + "and", + "how", + "many", + "rank", + "points", + "does", + "this", + "player", + "have", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 34, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 36, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 34, + false + ] + ], + "having": [], + "orderBy": [ + "desc", + [ + [ + 0, + [ + 3, + 0, + false + ], + null + ] + ] + ], + "limit": 1, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "wta_1", + "query": "SELECT winner_name FROM matches WHERE tourney_name = 'Australian Open' ORDER BY winner_rank_points DESC LIMIT 1", + "query_toks": [ + "SELECT", + "winner_name", + "FROM", + "matches", + "WHERE", + "tourney_name", + "=", + "'Australian", + "Open", + "'", + "ORDER", + "BY", + "winner_rank_points", + "DESC", + "LIMIT", + "1" + ], + "query_toks_no_value": [ + "select", + "winner_name", + "from", + "matches", + "where", + "tourney_name", + "=", + "value", + "order", + "by", + "winner_rank_points", + "desc", + "limit", + "value" + ], + "question": "Find the name of the winner who has the highest rank points and participated in the Australian Open tourney.", + "question_toks": [ + "Find", + "the", + "name", + "of", + "the", + "winner", + "who", + "has", + "the", + "highest", + "rank", + "points", + "and", + "participated", + "in", + "the", + "Australian", + "Open", + "tourney", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 34, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 27, + false + ], + null + ], + "\"Australian Open\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [ + "desc", + [ + [ + 0, + [ + 0, + 36, + false + ], + null + ] + ] + ], + "limit": 1, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "wta_1", + "query": "SELECT winner_name FROM matches WHERE tourney_name = 'Australian Open' ORDER BY winner_rank_points DESC LIMIT 1", + "query_toks": [ + "SELECT", + "winner_name", + "FROM", + "matches", + "WHERE", + "tourney_name", + "=", + "'Australian", + "Open", + "'", + "ORDER", + "BY", + "winner_rank_points", + "DESC", + "LIMIT", + "1" + ], + "query_toks_no_value": [ + "select", + "winner_name", + "from", + "matches", + "where", + "tourney_name", + "=", + "value", + "order", + "by", + "winner_rank_points", + "desc", + "limit", + "value" + ], + "question": "What is the name of the winner with the most rank points who participated in the Australian Open tournament?", + "question_toks": [ + "What", + "is", + "the", + "name", + "of", + "the", + "winner", + "with", + "the", + "most", + "rank", + "points", + "who", + "participated", + "in", + "the", + "Australian", + "Open", + "tournament", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 34, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 27, + false + ], + null + ], + "\"Australian Open\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [ + "desc", + [ + [ + 0, + [ + 0, + 36, + false + ], + null + ] + ] + ], + "limit": 1, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "wta_1", + "query": "SELECT winner_name , loser_name FROM matches ORDER BY minutes DESC LIMIT 1", + "query_toks": [ + "SELECT", + "winner_name", + ",", + "loser_name", + "FROM", + "matches", + "ORDER", + "BY", + "minutes", + "DESC", + "LIMIT", + "1" + ], + "query_toks_no_value": [ + "select", + "winner_name", + ",", + "loser_name", + "from", + "matches", + "order", + "by", + "minutes", + "desc", + "limit", + "value" + ], + "question": "find the names of loser and winner who played in the match with greatest number of minutes.", + "question_toks": [ + "find", + "the", + "names", + "of", + "loser", + "and", + "winner", + "who", + "played", + "in", + "the", + "match", + "with", + "greatest", + "number", + "of", + "minutes", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 34, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 15, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [ + "desc", + [ + [ + 0, + [ + 0, + 20, + false + ], + null + ] + ] + ], + "limit": 1, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "wta_1", + "query": "SELECT winner_name , loser_name FROM matches ORDER BY minutes DESC LIMIT 1", + "query_toks": [ + "SELECT", + "winner_name", + ",", + "loser_name", + "FROM", + "matches", + "ORDER", + "BY", + "minutes", + "DESC", + "LIMIT", + "1" + ], + "query_toks_no_value": [ + "select", + "winner_name", + ",", + "loser_name", + "from", + "matches", + "order", + "by", + "minutes", + "desc", + "limit", + "value" + ], + "question": "What are the names of the winner and loser who played in the longest match?", + "question_toks": [ + "What", + "are", + "the", + "names", + "of", + "the", + "winner", + "and", + "loser", + "who", + "played", + "in", + "the", + "longest", + "match", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 34, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 15, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [ + "desc", + [ + [ + 0, + [ + 0, + 20, + false + ], + null + ] + ] + ], + "limit": 1, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "wta_1", + "query": "SELECT avg(ranking) , T1.first_name FROM players AS T1 JOIN rankings AS T2 ON T1.player_id = T2.player_id GROUP BY T1.first_name", + "query_toks": [ + "SELECT", + "avg", + "(", + "ranking", + ")", + ",", + "T1.first_name", + "FROM", + "players", + "AS", + "T1", + "JOIN", + "rankings", + "AS", + "T2", + "ON", + "T1.player_id", + "=", + "T2.player_id", + "GROUP", + "BY", + "T1.first_name" + ], + "query_toks_no_value": [ + "select", + "avg", + "(", + "ranking", + ")", + ",", + "t1", + ".", + "first_name", + "from", + "players", + "as", + "t1", + "join", + "rankings", + "as", + "t2", + "on", + "t1", + ".", + "player_id", + "=", + "t2", + ".", + "player_id", + "group", + "by", + "t1", + ".", + "first_name" + ], + "question": "Find the average ranking for each player and their first name.", + "question_toks": [ + "Find", + "the", + "average", + "ranking", + "for", + "each", + "player", + "and", + "their", + "first", + "name", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ], + [ + "table_unit", + 2 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 1, + false + ], + null + ], + [ + 0, + 41, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 5, + [ + 0, + [ + 0, + 40, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 2, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 2, + false + ] + ], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "wta_1", + "query": "SELECT avg(ranking) , T1.first_name FROM players AS T1 JOIN rankings AS T2 ON T1.player_id = T2.player_id GROUP BY T1.first_name", + "query_toks": [ + "SELECT", + "avg", + "(", + "ranking", + ")", + ",", + "T1.first_name", + "FROM", + "players", + "AS", + "T1", + "JOIN", + "rankings", + "AS", + "T2", + "ON", + "T1.player_id", + "=", + "T2.player_id", + "GROUP", + "BY", + "T1.first_name" + ], + "query_toks_no_value": [ + "select", + "avg", + "(", + "ranking", + ")", + ",", + "t1", + ".", + "first_name", + "from", + "players", + "as", + "t1", + "join", + "rankings", + "as", + "t2", + "on", + "t1", + ".", + "player_id", + "=", + "t2", + ".", + "player_id", + "group", + "by", + "t1", + ".", + "first_name" + ], + "question": "What are the first names of all players, and their average rankings?", + "question_toks": [ + "What", + "are", + "the", + "first", + "names", + "of", + "all", + "players", + ",", + "and", + "their", + "average", + "rankings", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ], + [ + "table_unit", + 2 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 1, + false + ], + null + ], + [ + 0, + 41, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 5, + [ + 0, + [ + 0, + 40, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 2, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 2, + false + ] + ], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "wta_1", + "query": "SELECT sum(ranking_points) , T1.first_name FROM players AS T1 JOIN rankings AS T2 ON T1.player_id = T2.player_id GROUP BY T1.first_name", + "query_toks": [ + "SELECT", + "sum", + "(", + "ranking_points", + ")", + ",", + "T1.first_name", + "FROM", + "players", + "AS", + "T1", + "JOIN", + "rankings", + "AS", + "T2", + "ON", + "T1.player_id", + "=", + "T2.player_id", + "GROUP", + "BY", + "T1.first_name" + ], + "query_toks_no_value": [ + "select", + "sum", + "(", + "ranking_points", + ")", + ",", + "t1", + ".", + "first_name", + "from", + "players", + "as", + "t1", + "join", + "rankings", + "as", + "t2", + "on", + "t1", + ".", + "player_id", + "=", + "t2", + ".", + "player_id", + "group", + "by", + "t1", + ".", + "first_name" + ], + "question": "Find the total ranking points for each player and their first name.", + "question_toks": [ + "Find", + "the", + "total", + "ranking", + "points", + "for", + "each", + "player", + "and", + "their", + "first", + "name", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ], + [ + "table_unit", + 2 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 1, + false + ], + null + ], + [ + 0, + 41, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 4, + [ + 0, + [ + 0, + 42, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 2, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 2, + false + ] + ], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "wta_1", + "query": "SELECT sum(ranking_points) , T1.first_name FROM players AS T1 JOIN rankings AS T2 ON T1.player_id = T2.player_id GROUP BY T1.first_name", + "query_toks": [ + "SELECT", + "sum", + "(", + "ranking_points", + ")", + ",", + "T1.first_name", + "FROM", + "players", + "AS", + "T1", + "JOIN", + "rankings", + "AS", + "T2", + "ON", + "T1.player_id", + "=", + "T2.player_id", + "GROUP", + "BY", + "T1.first_name" + ], + "query_toks_no_value": [ + "select", + "sum", + "(", + "ranking_points", + ")", + ",", + "t1", + ".", + "first_name", + "from", + "players", + "as", + "t1", + "join", + "rankings", + "as", + "t2", + "on", + "t1", + ".", + "player_id", + "=", + "t2", + ".", + "player_id", + "group", + "by", + "t1", + ".", + "first_name" + ], + "question": "What are the first names of all players, and their total ranking points?", + "question_toks": [ + "What", + "are", + "the", + "first", + "names", + "of", + "all", + "players", + ",", + "and", + "their", + "total", + "ranking", + "points", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ], + [ + "table_unit", + 2 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 1, + false + ], + null + ], + [ + 0, + 41, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 4, + [ + 0, + [ + 0, + 42, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 2, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 2, + false + ] + ], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "wta_1", + "query": "SELECT count(*) , country_code FROM players GROUP BY country_code", + "query_toks": [ + "SELECT", + "count", + "(", + "*", + ")", + ",", + "country_code", + "FROM", + "players", + "GROUP", + "BY", + "country_code" + ], + "query_toks_no_value": [ + "select", + "count", + "(", + "*", + ")", + ",", + "country_code", + "from", + "players", + "group", + "by", + "country_code" + ], + "question": "find the number of players for each country.", + "question_toks": [ + "find", + "the", + "number", + "of", + "players", + "for", + "each", + "country", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 3, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 6, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 6, + false + ] + ], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "wta_1", + "query": "SELECT count(*) , country_code FROM players GROUP BY country_code", + "query_toks": [ + "SELECT", + "count", + "(", + "*", + ")", + ",", + "country_code", + "FROM", + "players", + "GROUP", + "BY", + "country_code" + ], + "query_toks_no_value": [ + "select", + "count", + "(", + "*", + ")", + ",", + "country_code", + "from", + "players", + "group", + "by", + "country_code" + ], + "question": "How many players are from each country?", + "question_toks": [ + "How", + "many", + "players", + "are", + "from", + "each", + "country", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 3, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 6, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 6, + false + ] + ], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "wta_1", + "query": "SELECT country_code FROM players GROUP BY country_code ORDER BY count(*) DESC LIMIT 1", + "query_toks": [ + "SELECT", + "country_code", + "FROM", + "players", + "GROUP", + "BY", + "country_code", + "ORDER", + "BY", + "count", + "(", + "*", + ")", + "DESC", + "LIMIT", + "1" + ], + "query_toks_no_value": [ + "select", + "country_code", + "from", + "players", + "group", + "by", + "country_code", + "order", + "by", + "count", + "(", + "*", + ")", + "desc", + "limit", + "value" + ], + "question": "find the code of the country where has the greatest number of players.", + "question_toks": [ + "find", + "the", + "code", + "of", + "the", + "country", + "where", + "has", + "the", + "greatest", + "number", + "of", + "players", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 6, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 6, + false + ] + ], + "having": [], + "orderBy": [ + "desc", + [ + [ + 0, + [ + 3, + 0, + false + ], + null + ] + ] + ], + "limit": 1, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "wta_1", + "query": "SELECT country_code FROM players GROUP BY country_code ORDER BY count(*) DESC LIMIT 1", + "query_toks": [ + "SELECT", + "country_code", + "FROM", + "players", + "GROUP", + "BY", + "country_code", + "ORDER", + "BY", + "count", + "(", + "*", + ")", + "DESC", + "LIMIT", + "1" + ], + "query_toks_no_value": [ + "select", + "country_code", + "from", + "players", + "group", + "by", + "country_code", + "order", + "by", + "count", + "(", + "*", + ")", + "desc", + "limit", + "value" + ], + "question": "What is the code of the country with the most players?", + "question_toks": [ + "What", + "is", + "the", + "code", + "of", + "the", + "country", + "with", + "the", + "most", + "players", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 6, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 6, + false + ] + ], + "having": [], + "orderBy": [ + "desc", + [ + [ + 0, + [ + 3, + 0, + false + ], + null + ] + ] + ], + "limit": 1, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "wta_1", + "query": "SELECT country_code FROM players GROUP BY country_code HAVING count(*) > 50", + "query_toks": [ + "SELECT", + "country_code", + "FROM", + "players", + "GROUP", + "BY", + "country_code", + "HAVING", + "count", + "(", + "*", + ")", + ">", + "50" + ], + "query_toks_no_value": [ + "select", + "country_code", + "from", + "players", + "group", + "by", + "country_code", + "having", + "count", + "(", + "*", + ")", + ">", + "value" + ], + "question": "Find the codes of countries that have more than 50 players.", + "question_toks": [ + "Find", + "the", + "codes", + "of", + "countries", + "that", + "have", + "more", + "than", + "50", + "players", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 6, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 6, + false + ] + ], + "having": [ + [ + false, + 3, + [ + 0, + [ + 3, + 0, + false + ], + null + ], + 50.0, + null + ] + ], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "wta_1", + "query": "SELECT country_code FROM players GROUP BY country_code HAVING count(*) > 50", + "query_toks": [ + "SELECT", + "country_code", + "FROM", + "players", + "GROUP", + "BY", + "country_code", + "HAVING", + "count", + "(", + "*", + ")", + ">", + "50" + ], + "query_toks_no_value": [ + "select", + "country_code", + "from", + "players", + "group", + "by", + "country_code", + "having", + "count", + "(", + "*", + ")", + ">", + "value" + ], + "question": "What are the codes of countries with more than 50 players?", + "question_toks": [ + "What", + "are", + "the", + "codes", + "of", + "countries", + "with", + "more", + "than", + "50", + "players", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 6, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 6, + false + ] + ], + "having": [ + [ + false, + 3, + [ + 0, + [ + 3, + 0, + false + ], + null + ], + 50.0, + null + ] + ], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "wta_1", + "query": "SELECT sum(tours) , ranking_date FROM rankings GROUP BY ranking_date", + "query_toks": [ + "SELECT", + "sum", + "(", + "tours", + ")", + ",", + "ranking_date", + "FROM", + "rankings", + "GROUP", + "BY", + "ranking_date" + ], + "query_toks_no_value": [ + "select", + "sum", + "(", + "tours", + ")", + ",", + "ranking_date", + "from", + "rankings", + "group", + "by", + "ranking_date" + ], + "question": "Find the total number of tours for each ranking date.", + "question_toks": [ + "Find", + "the", + "total", + "number", + "of", + "tours", + "for", + "each", + "ranking", + "date", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 4, + [ + 0, + [ + 0, + 43, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 39, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 39, + false + ] + ], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "wta_1", + "query": "SELECT sum(tours) , ranking_date FROM rankings GROUP BY ranking_date", + "query_toks": [ + "SELECT", + "sum", + "(", + "tours", + ")", + ",", + "ranking_date", + "FROM", + "rankings", + "GROUP", + "BY", + "ranking_date" + ], + "query_toks_no_value": [ + "select", + "sum", + "(", + "tours", + ")", + ",", + "ranking_date", + "from", + "rankings", + "group", + "by", + "ranking_date" + ], + "question": "How many total tours were there for each ranking date?", + "question_toks": [ + "How", + "many", + "total", + "tours", + "were", + "there", + "for", + "each", + "ranking", + "date", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 4, + [ + 0, + [ + 0, + 43, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 39, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 39, + false + ] + ], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "wta_1", + "query": "SELECT count(*) , YEAR FROM matches GROUP BY YEAR", + "query_toks": [ + "SELECT", + "count", + "(", + "*", + ")", + ",", + "YEAR", + "FROM", + "matches", + "GROUP", + "BY", + "YEAR" + ], + "query_toks_no_value": [ + "select", + "count", + "(", + "*", + ")", + ",", + "year", + "from", + "matches", + "group", + "by", + "year" + ], + "question": "Find the number of matches happened in each year.", + "question_toks": [ + "Find", + "the", + "number", + "of", + "matches", + "happened", + "in", + "each", + "year", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 3, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 38, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 38, + false + ] + ], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "wta_1", + "query": "SELECT count(*) , YEAR FROM matches GROUP BY YEAR", + "query_toks": [ + "SELECT", + "count", + "(", + "*", + ")", + ",", + "YEAR", + "FROM", + "matches", + "GROUP", + "BY", + "YEAR" + ], + "query_toks_no_value": [ + "select", + "count", + "(", + "*", + ")", + ",", + "year", + "from", + "matches", + "group", + "by", + "year" + ], + "question": "How many matches were played in each year?", + "question_toks": [ + "How", + "many", + "matches", + "were", + "played", + "in", + "each", + "year", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 3, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 38, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 38, + false + ] + ], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "wta_1", + "query": "SELECT DISTINCT winner_name , winner_rank FROM matches ORDER BY winner_age LIMIT 3", + "query_toks": [ + "SELECT", + "DISTINCT", + "winner_name", + ",", + "winner_rank", + "FROM", + "matches", + "ORDER", + "BY", + "winner_age", + "LIMIT", + "3" + ], + "query_toks_no_value": [ + "select", + "distinct", + "winner_name", + ",", + "winner_rank", + "from", + "matches", + "order", + "by", + "winner_age", + "limit", + "value" + ], + "question": "Find the name and rank of the 3 youngest winners across all matches.", + "question_toks": [ + "Find", + "the", + "name", + "and", + "rank", + "of", + "the", + "3", + "youngest", + "winners", + "across", + "all", + "matches", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ] + ], + "conds": [] + }, + "select": [ + true, + [ + [ + 0, + [ + 0, + [ + 0, + 34, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 35, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [ + "asc", + [ + [ + 0, + [ + 0, + 28, + false + ], + null + ] + ] + ], + "limit": 3, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "wta_1", + "query": "SELECT DISTINCT winner_name , winner_rank FROM matches ORDER BY winner_age LIMIT 3", + "query_toks": [ + "SELECT", + "DISTINCT", + "winner_name", + ",", + "winner_rank", + "FROM", + "matches", + "ORDER", + "BY", + "winner_age", + "LIMIT", + "3" + ], + "query_toks_no_value": [ + "select", + "distinct", + "winner_name", + ",", + "winner_rank", + "from", + "matches", + "order", + "by", + "winner_age", + "limit", + "value" + ], + "question": "What are the names and ranks of the three youngest winners across all matches?", + "question_toks": [ + "What", + "are", + "the", + "names", + "and", + "ranks", + "of", + "the", + "three", + "youngest", + "winners", + "across", + "all", + "matches", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ] + ], + "conds": [] + }, + "select": [ + true, + [ + [ + 0, + [ + 0, + [ + 0, + 34, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 35, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [ + "asc", + [ + [ + 0, + [ + 0, + 28, + false + ], + null + ] + ] + ], + "limit": 3, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "wta_1", + "query": "SELECT count(DISTINCT winner_name) FROM matches WHERE tourney_name = 'WTA Championships' AND winner_hand = 'L'", + "query_toks": [ + "SELECT", + "count", + "(", + "DISTINCT", + "winner_name", + ")", + "FROM", + "matches", + "WHERE", + "tourney_name", + "=", + "'WTA", + "Championships", + "'", + "AND", + "winner_hand", + "=", + "'L", + "'" + ], + "query_toks_no_value": [ + "select", + "count", + "(", + "distinct", + "winner_name", + ")", + "from", + "matches", + "where", + "tourney_name", + "=", + "value", + "and", + "winner_hand", + "=", + "value" + ], + "question": "How many different winners both participated in the WTA Championships and were left handed?", + "question_toks": [ + "How", + "many", + "different", + "winners", + "both", + "participated", + "in", + "the", + "WTA", + "Championships", + "and", + "were", + "left", + "handed", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 3, + [ + 0, + [ + 0, + 34, + true + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 27, + false + ], + null + ], + "\"WTA Championships\"", + null + ], + "and", + [ + false, + 2, + [ + 0, + [ + 0, + 30, + false + ], + null + ], + "\"L\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "wta_1", + "query": "SELECT count(DISTINCT winner_name) FROM matches WHERE tourney_name = 'WTA Championships' AND winner_hand = 'L'", + "query_toks": [ + "SELECT", + "count", + "(", + "DISTINCT", + "winner_name", + ")", + "FROM", + "matches", + "WHERE", + "tourney_name", + "=", + "'WTA", + "Championships", + "'", + "AND", + "winner_hand", + "=", + "'L", + "'" + ], + "query_toks_no_value": [ + "select", + "count", + "(", + "distinct", + "winner_name", + ")", + "from", + "matches", + "where", + "tourney_name", + "=", + "value", + "and", + "winner_hand", + "=", + "value" + ], + "question": "Find the number of left handed winners who participated in the WTA Championships.", + "question_toks": [ + "Find", + "the", + "number", + "of", + "left", + "handed", + "winners", + "who", + "participated", + "in", + "the", + "WTA", + "Championships", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 3, + [ + 0, + [ + 0, + 34, + true + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 27, + false + ], + null + ], + "\"WTA Championships\"", + null + ], + "and", + [ + false, + 2, + [ + 0, + [ + 0, + 30, + false + ], + null + ], + "\"L\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "wta_1", + "query": "SELECT T1.first_name , T1.country_code , T1.birth_date FROM players AS T1 JOIN matches AS T2 ON T1.player_id = T2.winner_id ORDER BY T2.winner_rank_points DESC LIMIT 1", + "query_toks": [ + "SELECT", + "T1.first_name", + ",", + "T1.country_code", + ",", + "T1.birth_date", + "FROM", + "players", + "AS", + "T1", + "JOIN", + "matches", + "AS", + "T2", + "ON", + "T1.player_id", + "=", + "T2.winner_id", + "ORDER", + "BY", + "T2.winner_rank_points", + "DESC", + "LIMIT", + "1" + ], + "query_toks_no_value": [ + "select", + "t1", + ".", + "first_name", + ",", + "t1", + ".", + "country_code", + ",", + "t1", + ".", + "birth_date", + "from", + "players", + "as", + "t1", + "join", + "matches", + "as", + "t2", + "on", + "t1", + ".", + "player_id", + "=", + "t2", + ".", + "winner_id", + "order", + "by", + "t2", + ".", + "winner_rank_points", + "desc", + "limit", + "value" + ], + "question": "Find the first name, country code and birth date of the winner who has the highest rank points in all matches.", + "question_toks": [ + "Find", + "the", + "first", + "name", + ",", + "country", + "code", + "and", + "birth", + "date", + "of", + "the", + "winner", + "who", + "has", + "the", + "highest", + "rank", + "points", + "in", + "all", + "matches", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ], + [ + "table_unit", + 1 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 1, + false + ], + null + ], + [ + 0, + 32, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 2, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 6, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 5, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [ + "desc", + [ + [ + 0, + [ + 0, + 36, + false + ], + null + ] + ] + ], + "limit": 1, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "wta_1", + "query": "SELECT T1.first_name , T1.country_code , T1.birth_date FROM players AS T1 JOIN matches AS T2 ON T1.player_id = T2.winner_id ORDER BY T2.winner_rank_points DESC LIMIT 1", + "query_toks": [ + "SELECT", + "T1.first_name", + ",", + "T1.country_code", + ",", + "T1.birth_date", + "FROM", + "players", + "AS", + "T1", + "JOIN", + "matches", + "AS", + "T2", + "ON", + "T1.player_id", + "=", + "T2.winner_id", + "ORDER", + "BY", + "T2.winner_rank_points", + "DESC", + "LIMIT", + "1" + ], + "query_toks_no_value": [ + "select", + "t1", + ".", + "first_name", + ",", + "t1", + ".", + "country_code", + ",", + "t1", + ".", + "birth_date", + "from", + "players", + "as", + "t1", + "join", + "matches", + "as", + "t2", + "on", + "t1", + ".", + "player_id", + "=", + "t2", + ".", + "winner_id", + "order", + "by", + "t2", + ".", + "winner_rank_points", + "desc", + "limit", + "value" + ], + "question": "What is the first name, country code, and birth date of the player with the most winner rank points across all matches?", + "question_toks": [ + "What", + "is", + "the", + "first", + "name", + ",", + "country", + "code", + ",", + "and", + "birth", + "date", + "of", + "the", + "player", + "with", + "the", + "most", + "winner", + "rank", + "points", + "across", + "all", + "matches", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ], + [ + "table_unit", + 1 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 1, + false + ], + null + ], + [ + 0, + 32, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 2, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 6, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 5, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [ + "desc", + [ + [ + 0, + [ + 0, + 36, + false + ], + null + ] + ] + ], + "limit": 1, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "wta_1", + "query": "SELECT count(*) , hand FROM players GROUP BY hand", + "query_toks": [ + "SELECT", + "count", + "(", + "*", + ")", + ",", + "hand", + "FROM", + "players", + "GROUP", + "BY", + "hand" + ], + "query_toks_no_value": [ + "select", + "count", + "(", + "*", + ")", + ",", + "hand", + "from", + "players", + "group", + "by", + "hand" + ], + "question": "Find the number of players for each hand type.", + "question_toks": [ + "Find", + "the", + "number", + "of", + "players", + "for", + "each", + "hand", + "type", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 3, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 4, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 4, + false + ] + ], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "wta_1", + "query": "SELECT count(*) , hand FROM players GROUP BY hand", + "query_toks": [ + "SELECT", + "count", + "(", + "*", + ")", + ",", + "hand", + "FROM", + "players", + "GROUP", + "BY", + "hand" + ], + "query_toks_no_value": [ + "select", + "count", + "(", + "*", + ")", + ",", + "hand", + "from", + "players", + "group", + "by", + "hand" + ], + "question": "How many players are there for each hand type?", + "question_toks": [ + "How", + "many", + "players", + "are", + "there", + "for", + "each", + "hand", + "type", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 3, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 4, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 4, + false + ] + ], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "battle_death", + "query": "SELECT count(*) FROM ship WHERE disposition_of_ship = 'Captured'", + "query_toks": [ + "SELECT", + "count", + "(", + "*", + ")", + "FROM", + "ship", + "WHERE", + "disposition_of_ship", + "=", + "'Captured", + "'" + ], + "query_toks_no_value": [ + "select", + "count", + "(", + "*", + ")", + "from", + "ship", + "where", + "disposition_of_ship", + "=", + "value" + ], + "question": "How many ships ended up being 'Captured'?", + "question_toks": [ + "How", + "many", + "ships", + "ended", + "up", + "being", + "'Captured", + "'", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 3, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 13, + false + ], + null + ], + "\"Captured\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "battle_death", + "query": "SELECT name , tonnage FROM ship ORDER BY name DESC", + "query_toks": [ + "SELECT", + "name", + ",", + "tonnage", + "FROM", + "ship", + "ORDER", + "BY", + "name", + "DESC" + ], + "query_toks_no_value": [ + "select", + "name", + ",", + "tonnage", + "from", + "ship", + "order", + "by", + "name", + "desc" + ], + "question": "List the name and tonnage ordered by in descending alphaetical order for the names.", + "question_toks": [ + "List", + "the", + "name", + "and", + "tonnage", + "ordered", + "by", + "in", + "descending", + "alphaetical", + "order", + "for", + "the", + "names", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 9, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 10, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [ + "desc", + [ + [ + 0, + [ + 0, + 9, + false + ], + null + ] + ] + ], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "battle_death", + "query": "SELECT name , date FROM battle", + "query_toks": [ + "SELECT", + "name", + ",", + "date", + "FROM", + "battle" + ], + "query_toks_no_value": [ + "select", + "name", + ",", + "date", + "from", + "battle" + ], + "question": "List the name, date and result of each battle.", + "question_toks": [ + "List", + "the", + "name", + ",", + "date", + "and", + "result", + "of", + "each", + "battle", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 2, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 3, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "battle_death", + "query": "SELECT max(killed) , min(killed) FROM death", + "query_toks": [ + "SELECT", + "max", + "(", + "killed", + ")", + ",", + "min", + "(", + "killed", + ")", + "FROM", + "death" + ], + "query_toks_no_value": [ + "select", + "max", + "(", + "killed", + ")", + ",", + "min", + "(", + "killed", + ")", + "from", + "death" + ], + "question": "What is maximum and minimum death toll caused each time?", + "question_toks": [ + "What", + "is", + "maximum", + "and", + "minimum", + "death", + "toll", + "caused", + "each", + "time", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 1, + [ + 0, + [ + 0, + 17, + false + ], + null + ] + ], + [ + 2, + [ + 0, + [ + 0, + 17, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "battle_death", + "query": "SELECT avg(injured) FROM death", + "query_toks": [ + "SELECT", + "avg", + "(", + "injured", + ")", + "FROM", + "death" + ], + "query_toks_no_value": [ + "select", + "avg", + "(", + "injured", + ")", + "from", + "death" + ], + "question": "What is the average number of injuries caused each time?", + "question_toks": [ + "What", + "is", + "the", + "average", + "number", + "of", + "injuries", + "caused", + "each", + "time", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 5, + [ + 0, + [ + 0, + 18, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "battle_death", + "query": "SELECT T1.killed , T1.injured FROM death AS T1 JOIN ship AS t2 ON T1.caused_by_ship_id = T2.id WHERE T2.tonnage = 't'", + "query_toks": [ + "SELECT", + "T1.killed", + ",", + "T1.injured", + "FROM", + "death", + "AS", + "T1", + "JOIN", + "ship", + "AS", + "t2", + "ON", + "T1.caused_by_ship_id", + "=", + "T2.id", + "WHERE", + "T2.tonnage", + "=", + "'t", + "'" + ], + "query_toks_no_value": [ + "select", + "t1", + ".", + "killed", + ",", + "t1", + ".", + "injured", + "from", + "death", + "as", + "t1", + "join", + "ship", + "as", + "t2", + "on", + "t1", + ".", + "caused_by_ship_id", + "=", + "t2", + ".", + "id", + "where", + "t2", + ".", + "tonnage", + "=", + "value" + ], + "question": "What are the death and injury situations caused by the ship with tonnage 't'?", + "question_toks": [ + "What", + "are", + "the", + "death", + "and", + "injury", + "situations", + "caused", + "by", + "the", + "ship", + "with", + "tonnage", + "'t", + "'", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ], + [ + "table_unit", + 1 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 14, + false + ], + null + ], + [ + 0, + 8, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 17, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 18, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 10, + false + ], + null + ], + "\"t\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "battle_death", + "query": "SELECT name , RESULT FROM battle WHERE bulgarian_commander != 'Boril'", + "query_toks": [ + "SELECT", + "name", + ",", + "RESULT", + "FROM", + "battle", + "WHERE", + "bulgarian_commander", + "!", + "=", + "'Boril", + "'" + ], + "query_toks_no_value": [ + "select", + "name", + ",", + "result", + "from", + "battle", + "where", + "bulgarian_commander", + "!", + "=", + "value" + ], + "question": "What are the name and results of the battles when the bulgarian commander is not 'Boril'", + "question_toks": [ + "What", + "are", + "the", + "name", + "and", + "results", + "of", + "the", + "battles", + "when", + "the", + "bulgarian", + "commander", + "is", + "not", + "'Boril", + "'" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 2, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 6, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 7, + [ + 0, + [ + 0, + 4, + false + ], + null + ], + "\"Boril\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "battle_death", + "query": "SELECT DISTINCT T1.id , T1.name FROM battle AS T1 JOIN ship AS T2 ON T1.id = T2.lost_in_battle WHERE T2.ship_type = 'Brig'", + "query_toks": [ + "SELECT", + "DISTINCT", + "T1.id", + ",", + "T1.name", + "FROM", + "battle", + "AS", + "T1", + "JOIN", + "ship", + "AS", + "T2", + "ON", + "T1.id", + "=", + "T2.lost_in_battle", + "WHERE", + "T2.ship_type", + "=", + "'Brig", + "'" + ], + "query_toks_no_value": [ + "select", + "distinct", + "t1", + ".", + "id", + ",", + "t1", + ".", + "name", + "from", + "battle", + "as", + "t1", + "join", + "ship", + "as", + "t2", + "on", + "t1", + ".", + "id", + "=", + "t2", + ".", + "lost_in_battle", + "where", + "t2", + ".", + "ship_type", + "=", + "value" + ], + "question": "What are the different ids and names of the battles that lost any 'Brig' type shipes?", + "question_toks": [ + "What", + "are", + "the", + "different", + "ids", + "and", + "names", + "of", + "the", + "battles", + "that", + "lost", + "any", + "'Brig", + "'", + "type", + "shipes", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ], + [ + "table_unit", + 1 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 1, + false + ], + null + ], + [ + 0, + 7, + false + ], + null + ] + ] + }, + "select": [ + true, + [ + [ + 0, + [ + 0, + [ + 0, + 1, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 2, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 11, + false + ], + null + ], + "\"Brig\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "battle_death", + "query": "SELECT T1.id , T1.name FROM battle AS T1 JOIN ship AS T2 ON T1.id = T2.lost_in_battle JOIN death AS T3 ON T2.id = T3.caused_by_ship_id GROUP BY T1.id HAVING sum(T3.killed) > 10", + "query_toks": [ + "SELECT", + "T1.id", + ",", + "T1.name", + "FROM", + "battle", + "AS", + "T1", + "JOIN", + "ship", + "AS", + "T2", + "ON", + "T1.id", + "=", + "T2.lost_in_battle", + "JOIN", + "death", + "AS", + "T3", + "ON", + "T2.id", + "=", + "T3.caused_by_ship_id", + "GROUP", + "BY", + "T1.id", + "HAVING", + "sum", + "(", + "T3.killed", + ")", + ">", + "10" + ], + "query_toks_no_value": [ + "select", + "t1", + ".", + "id", + ",", + "t1", + ".", + "name", + "from", + "battle", + "as", + "t1", + "join", + "ship", + "as", + "t2", + "on", + "t1", + ".", + "id", + "=", + "t2", + ".", + "lost_in_battle", + "join", + "death", + "as", + "t3", + "on", + "t2", + ".", + "id", + "=", + "t3", + ".", + "caused_by_ship_id", + "group", + "by", + "t1", + ".", + "id", + "having", + "sum", + "(", + "t3", + ".", + "killed", + ")", + ">", + "value" + ], + "question": "What are the ids and names of the battles that led to more than 10 people killed in total.", + "question_toks": [ + "What", + "are", + "the", + "ids", + "and", + "names", + "of", + "the", + "battles", + "that", + "led", + "to", + "more", + "than", + "10", + "people", + "killed", + "in", + "total", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ], + [ + "table_unit", + 1 + ], + [ + "table_unit", + 2 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 1, + false + ], + null + ], + [ + 0, + 7, + false + ], + null + ], + "and", + [ + false, + 2, + [ + 0, + [ + 0, + 8, + false + ], + null + ], + [ + 0, + 14, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 1, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 2, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 1, + false + ] + ], + "having": [ + [ + false, + 3, + [ + 0, + [ + 4, + 17, + false + ], + null + ], + 10.0, + null + ] + ], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "battle_death", + "query": "SELECT T2.id , T2.name FROM death AS T1 JOIN ship AS t2 ON T1.caused_by_ship_id = T2.id GROUP BY T2.id ORDER BY count(*) DESC LIMIT 1", + "query_toks": [ + "SELECT", + "T2.id", + ",", + "T2.name", + "FROM", + "death", + "AS", + "T1", + "JOIN", + "ship", + "AS", + "t2", + "ON", + "T1.caused_by_ship_id", + "=", + "T2.id", + "GROUP", + "BY", + "T2.id", + "ORDER", + "BY", + "count", + "(", + "*", + ")", + "DESC", + "LIMIT", + "1" + ], + "query_toks_no_value": [ + "select", + "t2", + ".", + "id", + ",", + "t2", + ".", + "name", + "from", + "death", + "as", + "t1", + "join", + "ship", + "as", + "t2", + "on", + "t1", + ".", + "caused_by_ship_id", + "=", + "t2", + ".", + "id", + "group", + "by", + "t2", + ".", + "id", + "order", + "by", + "count", + "(", + "*", + ")", + "desc", + "limit", + "value" + ], + "question": "What is the ship id and name that caused most total injuries?", + "question_toks": [ + "What", + "is", + "the", + "ship", + "id", + "and", + "name", + "that", + "caused", + "most", + "total", + "injuries", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ], + [ + "table_unit", + 1 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 14, + false + ], + null + ], + [ + 0, + 8, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 8, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 9, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 8, + false + ] + ], + "having": [], + "orderBy": [ + "desc", + [ + [ + 0, + [ + 3, + 0, + false + ], + null + ] + ] + ], + "limit": 1, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "battle_death", + "query": "SELECT name FROM battle WHERE bulgarian_commander = 'Kaloyan' AND latin_commander = 'Baldwin I'", + "query_toks": [ + "SELECT", + "name", + "FROM", + "battle", + "WHERE", + "bulgarian_commander", + "=", + "'Kaloyan", + "'", + "AND", + "latin_commander", + "=", + "'Baldwin", + "I", + "'" + ], + "query_toks_no_value": [ + "select", + "name", + "from", + "battle", + "where", + "bulgarian_commander", + "=", + "value", + "and", + "latin_commander", + "=", + "value" + ], + "question": "What are the distinct battle names which are between bulgarian commander 'Kaloyan' and latin commander 'Baldwin I'?", + "question_toks": [ + "What", + "are", + "the", + "distinct", + "battle", + "names", + "which", + "are", + "between", + "bulgarian", + "commander", + "'Kaloyan", + "'", + "and", + "latin", + "commander", + "'Baldwin", + "I", + "'", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 2, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 4, + false + ], + null + ], + "\"Kaloyan\"", + null + ], + "and", + [ + false, + 2, + [ + 0, + [ + 0, + 5, + false + ], + null + ], + "\"Baldwin I\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "battle_death", + "query": "SELECT count(DISTINCT RESULT) FROM battle", + "query_toks": [ + "SELECT", + "count", + "(", + "DISTINCT", + "RESULT", + ")", + "FROM", + "battle" + ], + "query_toks_no_value": [ + "select", + "count", + "(", + "distinct", + "result", + ")", + "from", + "battle" + ], + "question": "How many different results are there for the battles?", + "question_toks": [ + "How", + "many", + "different", + "results", + "are", + "there", + "for", + "the", + "battles", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 3, + [ + 0, + [ + 0, + 6, + true + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "battle_death", + "query": "SELECT count(*) FROM battle WHERE id NOT IN ( SELECT lost_in_battle FROM ship WHERE tonnage = '225' );", + "query_toks": [ + "SELECT", + "count", + "(", + "*", + ")", + "FROM", + "battle", + "WHERE", + "id", + "NOT", + "IN", + "(", + "SELECT", + "lost_in_battle", + "FROM", + "ship", + "WHERE", + "tonnage", + "=", + "'225", + "'", + ")", + ";" + ], + "query_toks_no_value": [ + "select", + "count", + "(", + "*", + ")", + "from", + "battle", + "where", + "id", + "not", + "in", + "(", + "select", + "lost_in_battle", + "from", + "ship", + "where", + "tonnage", + "=", + "value", + ")" + ], + "question": "How many battles did not lose any ship with tonnage '225'?", + "question_toks": [ + "How", + "many", + "battles", + "did", + "not", + "lose", + "any", + "ship", + "with", + "tonnage", + "'225", + "'", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 3, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + true, + 8, + [ + 0, + [ + 0, + 1, + false + ], + null + ], + { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 7, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 10, + false + ], + null + ], + "\"225\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + }, + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "battle_death", + "query": "SELECT T1.name , T1.date FROM battle AS T1 JOIN ship AS T2 ON T1.id = T2.lost_in_battle WHERE T2.name = 'Lettice' INTERSECT SELECT T1.name , T1.date FROM battle AS T1 JOIN ship AS T2 ON T1.id = T2.lost_in_battle WHERE T2.name = 'HMS Atalanta'", + "query_toks": [ + "SELECT", + "T1.name", + ",", + "T1.date", + "FROM", + "battle", + "AS", + "T1", + "JOIN", + "ship", + "AS", + "T2", + "ON", + "T1.id", + "=", + "T2.lost_in_battle", + "WHERE", + "T2.name", + "=", + "'Lettice", + "'", + "INTERSECT", + "SELECT", + "T1.name", + ",", + "T1.date", + "FROM", + "battle", + "AS", + "T1", + "JOIN", + "ship", + "AS", + "T2", + "ON", + "T1.id", + "=", + "T2.lost_in_battle", + "WHERE", + "T2.name", + "=", + "'HMS", + "Atalanta", + "'" + ], + "query_toks_no_value": [ + "select", + "t1", + ".", + "name", + ",", + "t1", + ".", + "date", + "from", + "battle", + "as", + "t1", + "join", + "ship", + "as", + "t2", + "on", + "t1", + ".", + "id", + "=", + "t2", + ".", + "lost_in_battle", + "where", + "t2", + ".", + "name", + "=", + "value", + "intersect", + "select", + "t1", + ".", + "name", + ",", + "t1", + ".", + "date", + "from", + "battle", + "as", + "t1", + "join", + "ship", + "as", + "t2", + "on", + "t1", + ".", + "id", + "=", + "t2", + ".", + "lost_in_battle", + "where", + "t2", + ".", + "name", + "=", + "value" + ], + "question": "List the name and date the battle that has lost the ship named 'Lettice' and the ship named 'HMS Atalanta'", + "question_toks": [ + "List", + "the", + "name", + "and", + "date", + "the", + "battle", + "that", + "has", + "lost", + "the", + "ship", + "named", + "'Lettice", + "'", + "and", + "the", + "ship", + "named", + "'HMS", + "Atalanta", + "'" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ], + [ + "table_unit", + 1 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 1, + false + ], + null + ], + [ + 0, + 7, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 2, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 3, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 9, + false + ], + null + ], + "\"Lettice\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ], + [ + "table_unit", + 1 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 1, + false + ], + null + ], + [ + 0, + 7, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 2, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 3, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 9, + false + ], + null + ], + "\"HMS Atalanta\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + }, + "union": null, + "except": null + } + }, + { + "db_id": "battle_death", + "query": "SELECT name , RESULT , bulgarian_commander FROM battle EXCEPT SELECT T1.name , T1.result , T1.bulgarian_commander FROM battle AS T1 JOIN ship AS T2 ON T1.id = T2.lost_in_battle WHERE T2.location = 'English Channel'", + "query_toks": [ + "SELECT", + "name", + ",", + "RESULT", + ",", + "bulgarian_commander", + "FROM", + "battle", + "EXCEPT", + "SELECT", + "T1.name", + ",", + "T1.result", + ",", + "T1.bulgarian_commander", + "FROM", + "battle", + "AS", + "T1", + "JOIN", + "ship", + "AS", + "T2", + "ON", + "T1.id", + "=", + "T2.lost_in_battle", + "WHERE", + "T2.location", + "=", + "'English", + "Channel", + "'" + ], + "query_toks_no_value": [ + "select", + "name", + ",", + "result", + ",", + "bulgarian_commander", + "from", + "battle", + "except", + "select", + "t1", + ".", + "name", + ",", + "t1", + ".", + "result", + ",", + "t1", + ".", + "bulgarian_commander", + "from", + "battle", + "as", + "t1", + "join", + "ship", + "as", + "t2", + "on", + "t1", + ".", + "id", + "=", + "t2", + ".", + "lost_in_battle", + "where", + "t2", + ".", + "location", + "=", + "value" + ], + "question": "Show names, results and bulgarian commanders of the battles with no ships lost in the 'English Channel'.", + "question_toks": [ + "Show", + "names", + ",", + "results", + "and", + "bulgarian", + "commanders", + "of", + "the", + "battles", + "with", + "no", + "ships", + "lost", + "in", + "the", + "'English", + "Channel", + "'", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 2, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 6, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 4, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ], + [ + "table_unit", + 1 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 1, + false + ], + null + ], + [ + 0, + 7, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 2, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 6, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 4, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 12, + false + ], + null + ], + "\"English Channel\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + } + }, + { + "db_id": "battle_death", + "query": "SELECT note FROM death WHERE note LIKE '%East%'", + "query_toks": [ + "SELECT", + "note", + "FROM", + "death", + "WHERE", + "note", + "LIKE", + "'", + "%", + "East", + "%", + "'" + ], + "query_toks_no_value": [ + "select", + "note", + "from", + "death", + "where", + "note", + "like", + "value" + ], + "question": "What are the notes of the death events which has substring 'East'?", + "question_toks": [ + "What", + "are", + "the", + "notes", + "of", + "the", + "death", + "events", + "which", + "has", + "substring", + "'East", + "'", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 16, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 9, + [ + 0, + [ + 0, + 16, + false + ], + null + ], + "\"%East%\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "student_transcripts_tracking", + "query": "SELECT line_1 , line_2 FROM addresses", + "query_toks": [ + "SELECT", + "line_1", + ",", + "line_2", + "FROM", + "addresses" + ], + "query_toks_no_value": [ + "select", + "line_1", + ",", + "line_2", + "from", + "addresses" + ], + "question": "what are all the addresses including line 1 and line 2?", + "question_toks": [ + "what", + "are", + "all", + "the", + "addresses", + "including", + "line", + "1", + "and", + "line", + "2", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 2, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 3, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "student_transcripts_tracking", + "query": "SELECT line_1 , line_2 FROM addresses", + "query_toks": [ + "SELECT", + "line_1", + ",", + "line_2", + "FROM", + "addresses" + ], + "query_toks_no_value": [ + "select", + "line_1", + ",", + "line_2", + "from", + "addresses" + ], + "question": "What is the first and second line for all addresses?", + "question_toks": [ + "What", + "is", + "the", + "first", + "and", + "second", + "line", + "for", + "all", + "addresses", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 2, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 3, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "student_transcripts_tracking", + "query": "SELECT count(*) FROM Courses", + "query_toks": [ + "SELECT", + "count", + "(", + "*", + ")", + "FROM", + "Courses" + ], + "query_toks_no_value": [ + "select", + "count", + "(", + "*", + ")", + "from", + "courses" + ], + "question": "How many courses in total are listed?", + "question_toks": [ + "How", + "many", + "courses", + "in", + "total", + "are", + "listed", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 3, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "student_transcripts_tracking", + "query": "SELECT count(*) FROM Courses", + "query_toks": [ + "SELECT", + "count", + "(", + "*", + ")", + "FROM", + "Courses" + ], + "query_toks_no_value": [ + "select", + "count", + "(", + "*", + ")", + "from", + "courses" + ], + "question": "How many courses are there?", + "question_toks": [ + "How", + "many", + "courses", + "are", + "there", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 3, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "student_transcripts_tracking", + "query": "SELECT course_description FROM Courses WHERE course_name = 'math'", + "query_toks": [ + "SELECT", + "course_description", + "FROM", + "Courses", + "WHERE", + "course_name", + "=", + "'math", + "'" + ], + "query_toks_no_value": [ + "select", + "course_description", + "from", + "courses", + "where", + "course_name", + "=", + "value" + ], + "question": "How is the math course described?", + "question_toks": [ + "How", + "is", + "the", + "math", + "course", + "described", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 12, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 11, + false + ], + null + ], + "\"math\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "student_transcripts_tracking", + "query": "SELECT course_description FROM Courses WHERE course_name = 'math'", + "query_toks": [ + "SELECT", + "course_description", + "FROM", + "Courses", + "WHERE", + "course_name", + "=", + "'math", + "'" + ], + "query_toks_no_value": [ + "select", + "course_description", + "from", + "courses", + "where", + "course_name", + "=", + "value" + ], + "question": "What are the descriptions for all the math courses?", + "question_toks": [ + "What", + "are", + "the", + "descriptions", + "for", + "all", + "the", + "math", + "courses", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 12, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 11, + false + ], + null + ], + "\"math\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "student_transcripts_tracking", + "query": "SELECT zip_postcode FROM Addresses WHERE city = 'Port Chelsea'", + "query_toks": [ + "SELECT", + "zip_postcode", + "FROM", + "Addresses", + "WHERE", + "city", + "=", + "'Port", + "Chelsea", + "'" + ], + "query_toks_no_value": [ + "select", + "zip_postcode", + "from", + "addresses", + "where", + "city", + "=", + "value" + ], + "question": "What is the zip code of the address in the city Port Chelsea?", + "question_toks": [ + "What", + "is", + "the", + "zip", + "code", + "of", + "the", + "address", + "in", + "the", + "city", + "Port", + "Chelsea", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 6, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 5, + false + ], + null + ], + "\"Port Chelsea\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "student_transcripts_tracking", + "query": "SELECT zip_postcode FROM Addresses WHERE city = 'Port Chelsea'", + "query_toks": [ + "SELECT", + "zip_postcode", + "FROM", + "Addresses", + "WHERE", + "city", + "=", + "'Port", + "Chelsea", + "'" + ], + "query_toks_no_value": [ + "select", + "zip_postcode", + "from", + "addresses", + "where", + "city", + "=", + "value" + ], + "question": "What is the zip code for Port Chelsea?", + "question_toks": [ + "What", + "is", + "the", + "zip", + "code", + "for", + "Port", + "Chelsea", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 6, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 5, + false + ], + null + ], + "\"Port Chelsea\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "student_transcripts_tracking", + "query": "SELECT T2.department_name , T1.department_id FROM Degree_Programs AS T1 JOIN Departments AS T2 ON T1.department_id = T2.department_id GROUP BY T1.department_id ORDER BY count(*) DESC LIMIT 1", + "query_toks": [ + "SELECT", + "T2.department_name", + ",", + "T1.department_id", + "FROM", + "Degree_Programs", + "AS", + "T1", + "JOIN", + "Departments", + "AS", + "T2", + "ON", + "T1.department_id", + "=", + "T2.department_id", + "GROUP", + "BY", + "T1.department_id", + "ORDER", + "BY", + "count", + "(", + "*", + ")", + "DESC", + "LIMIT", + "1" + ], + "query_toks_no_value": [ + "select", + "t2", + ".", + "department_name", + ",", + "t1", + ".", + "department_id", + "from", + "degree_programs", + "as", + "t1", + "join", + "departments", + "as", + "t2", + "on", + "t1", + ".", + "department_id", + "=", + "t2", + ".", + "department_id", + "group", + "by", + "t1", + ".", + "department_id", + "order", + "by", + "count", + "(", + "*", + ")", + "desc", + "limit", + "value" + ], + "question": "Which department offers the most number of degrees? List department name and id.", + "question_toks": [ + "Which", + "department", + "offers", + "the", + "most", + "number", + "of", + "degrees", + "?", + "List", + "department", + "name", + "and", + "id", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 3 + ], + [ + "table_unit", + 2 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 19, + false + ], + null + ], + [ + 0, + 14, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 15, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 19, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 19, + false + ] + ], + "having": [], + "orderBy": [ + "desc", + [ + [ + 0, + [ + 3, + 0, + false + ], + null + ] + ] + ], + "limit": 1, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "student_transcripts_tracking", + "query": "select t2.department_name , t1.department_id from degree_programs as t1 join departments as t2 on t1.department_id = t2.department_id group by t1.department_id order by count(*) desc limit 1", + "query_toks": [ + "select", + "t2.department_name", + ",", + "t1.department_id", + "from", + "degree_programs", + "as", + "t1", + "join", + "departments", + "as", + "t2", + "on", + "t1.department_id", + "=", + "t2.department_id", + "group", + "by", + "t1.department_id", + "order", + "by", + "count", + "(", + "*", + ")", + "desc", + "limit", + "1" + ], + "query_toks_no_value": [ + "select", + "t2", + ".", + "department_name", + ",", + "t1", + ".", + "department_id", + "from", + "degree_programs", + "as", + "t1", + "join", + "departments", + "as", + "t2", + "on", + "t1", + ".", + "department_id", + "=", + "t2", + ".", + "department_id", + "group", + "by", + "t1", + ".", + "department_id", + "order", + "by", + "count", + "(", + "*", + ")", + "desc", + "limit", + "value" + ], + "question": "What is the name and id of the department with the most number of degrees ?", + "question_toks": [ + "What", + "is", + "the", + "name", + "and", + "id", + "of", + "the", + "department", + "with", + "the", + "most", + "number", + "of", + "degrees", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 3 + ], + [ + "table_unit", + 2 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 19, + false + ], + null + ], + [ + 0, + 14, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 15, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 19, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 19, + false + ] + ], + "having": [], + "orderBy": [ + "desc", + [ + [ + 0, + [ + 3, + 0, + false + ], + null + ] + ] + ], + "limit": 1, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "student_transcripts_tracking", + "query": "SELECT count(DISTINCT department_id) FROM Degree_Programs", + "query_toks": [ + "SELECT", + "count", + "(", + "DISTINCT", + "department_id", + ")", + "FROM", + "Degree_Programs" + ], + "query_toks_no_value": [ + "select", + "count", + "(", + "distinct", + "department_id", + ")", + "from", + "degree_programs" + ], + "question": "How many departments offer any degree?", + "question_toks": [ + "How", + "many", + "departments", + "offer", + "any", + "degree", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 3 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 3, + [ + 0, + [ + 0, + 19, + true + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "student_transcripts_tracking", + "query": "SELECT count(DISTINCT department_id) FROM Degree_Programs", + "query_toks": [ + "SELECT", + "count", + "(", + "DISTINCT", + "department_id", + ")", + "FROM", + "Degree_Programs" + ], + "query_toks_no_value": [ + "select", + "count", + "(", + "distinct", + "department_id", + ")", + "from", + "degree_programs" + ], + "question": "How many different departments offer degrees?", + "question_toks": [ + "How", + "many", + "different", + "departments", + "offer", + "degrees", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 3 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 3, + [ + 0, + [ + 0, + 19, + true + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "student_transcripts_tracking", + "query": "SELECT count(DISTINCT degree_summary_name) FROM Degree_Programs", + "query_toks": [ + "SELECT", + "count", + "(", + "DISTINCT", + "degree_summary_name", + ")", + "FROM", + "Degree_Programs" + ], + "query_toks_no_value": [ + "select", + "count", + "(", + "distinct", + "degree_summary_name", + ")", + "from", + "degree_programs" + ], + "question": "How many different degree names are offered?", + "question_toks": [ + "How", + "many", + "different", + "degree", + "names", + "are", + "offered", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 3 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 3, + [ + 0, + [ + 0, + 20, + true + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "student_transcripts_tracking", + "query": "SELECT count(DISTINCT degree_summary_name) FROM Degree_Programs", + "query_toks": [ + "SELECT", + "count", + "(", + "DISTINCT", + "degree_summary_name", + ")", + "FROM", + "Degree_Programs" + ], + "query_toks_no_value": [ + "select", + "count", + "(", + "distinct", + "degree_summary_name", + ")", + "from", + "degree_programs" + ], + "question": "How many different degrees are offered?", + "question_toks": [ + "How", + "many", + "different", + "degrees", + "are", + "offered", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 3 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 3, + [ + 0, + [ + 0, + 20, + true + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "student_transcripts_tracking", + "query": "SELECT count(*) FROM Departments AS T1 JOIN Degree_Programs AS T2 ON T1.department_id = T2.department_id WHERE T1.department_name = 'engineer'", + "query_toks": [ + "SELECT", + "count", + "(", + "*", + ")", + "FROM", + "Departments", + "AS", + "T1", + "JOIN", + "Degree_Programs", + "AS", + "T2", + "ON", + "T1.department_id", + "=", + "T2.department_id", + "WHERE", + "T1.department_name", + "=", + "'engineer", + "'" + ], + "query_toks_no_value": [ + "select", + "count", + "(", + "*", + ")", + "from", + "departments", + "as", + "t1", + "join", + "degree_programs", + "as", + "t2", + "on", + "t1", + ".", + "department_id", + "=", + "t2", + ".", + "department_id", + "where", + "t1", + ".", + "department_name", + "=", + "value" + ], + "question": "How many degrees does the engineering department offer?", + "question_toks": [ + "How", + "many", + "degrees", + "does", + "the", + "engineering", + "department", + "offer", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ], + [ + "table_unit", + 3 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 14, + false + ], + null + ], + [ + 0, + 19, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 3, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 15, + false + ], + null + ], + "\"engineer\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "student_transcripts_tracking", + "query": "SELECT count(*) FROM Departments AS T1 JOIN Degree_Programs AS T2 ON T1.department_id = T2.department_id WHERE T1.department_name = 'engineer'", + "query_toks": [ + "SELECT", + "count", + "(", + "*", + ")", + "FROM", + "Departments", + "AS", + "T1", + "JOIN", + "Degree_Programs", + "AS", + "T2", + "ON", + "T1.department_id", + "=", + "T2.department_id", + "WHERE", + "T1.department_name", + "=", + "'engineer", + "'" + ], + "query_toks_no_value": [ + "select", + "count", + "(", + "*", + ")", + "from", + "departments", + "as", + "t1", + "join", + "degree_programs", + "as", + "t2", + "on", + "t1", + ".", + "department_id", + "=", + "t2", + ".", + "department_id", + "where", + "t1", + ".", + "department_name", + "=", + "value" + ], + "question": "How many degrees does the engineering department have?", + "question_toks": [ + "How", + "many", + "degrees", + "does", + "the", + "engineering", + "department", + "have", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ], + [ + "table_unit", + 3 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 14, + false + ], + null + ], + [ + 0, + 19, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 3, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 15, + false + ], + null + ], + "\"engineer\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "student_transcripts_tracking", + "query": "SELECT section_name , section_description FROM Sections", + "query_toks": [ + "SELECT", + "section_name", + ",", + "section_description", + "FROM", + "Sections" + ], + "query_toks_no_value": [ + "select", + "section_name", + ",", + "section_description", + "from", + "sections" + ], + "question": "What are the names and descriptions of all the sections?", + "question_toks": [ + "What", + "are", + "the", + "names", + "and", + "descriptions", + "of", + "all", + "the", + "sections", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 4 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 25, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 26, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "student_transcripts_tracking", + "query": "SELECT section_name , section_description FROM Sections", + "query_toks": [ + "SELECT", + "section_name", + ",", + "section_description", + "FROM", + "Sections" + ], + "query_toks_no_value": [ + "select", + "section_name", + ",", + "section_description", + "from", + "sections" + ], + "question": "What are the names and descriptions for all the sections?", + "question_toks": [ + "What", + "are", + "the", + "names", + "and", + "descriptions", + "for", + "all", + "the", + "sections", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 4 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 25, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 26, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "student_transcripts_tracking", + "query": "SELECT T1.course_name , T1.course_id FROM Courses AS T1 JOIN Sections AS T2 ON T1.course_id = T2.course_id GROUP BY T1.course_id HAVING count(*) <= 2", + "query_toks": [ + "SELECT", + "T1.course_name", + ",", + "T1.course_id", + "FROM", + "Courses", + "AS", + "T1", + "JOIN", + "Sections", + "AS", + "T2", + "ON", + "T1.course_id", + "=", + "T2.course_id", + "GROUP", + "BY", + "T1.course_id", + "HAVING", + "count", + "(", + "*", + ")", + "<", + "=", + "2" + ], + "query_toks_no_value": [ + "select", + "t1", + ".", + "course_name", + ",", + "t1", + ".", + "course_id", + "from", + "courses", + "as", + "t1", + "join", + "sections", + "as", + "t2", + "on", + "t1", + ".", + "course_id", + "=", + "t2", + ".", + "course_id", + "group", + "by", + "t1", + ".", + "course_id", + "having", + "count", + "(", + "*", + ")", + "<", + "=", + "value" + ], + "question": "What are the names and id of courses having at most 2 sections?", + "question_toks": [ + "What", + "are", + "the", + "names", + "and", + "id", + "of", + "courses", + "having", + "at", + "most", + "2", + "sections", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ], + [ + "table_unit", + 4 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 10, + false + ], + null + ], + [ + 0, + 24, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 11, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 10, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 10, + false + ] + ], + "having": [ + [ + false, + 6, + [ + 0, + [ + 3, + 0, + false + ], + null + ], + 2.0, + null + ] + ], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "student_transcripts_tracking", + "query": "SELECT T1.course_name , T1.course_id FROM Courses AS T1 JOIN Sections AS T2 ON T1.course_id = T2.course_id GROUP BY T1.course_id HAVING count(*) <= 2", + "query_toks": [ + "SELECT", + "T1.course_name", + ",", + "T1.course_id", + "FROM", + "Courses", + "AS", + "T1", + "JOIN", + "Sections", + "AS", + "T2", + "ON", + "T1.course_id", + "=", + "T2.course_id", + "GROUP", + "BY", + "T1.course_id", + "HAVING", + "count", + "(", + "*", + ")", + "<", + "=", + "2" + ], + "query_toks_no_value": [ + "select", + "t1", + ".", + "course_name", + ",", + "t1", + ".", + "course_id", + "from", + "courses", + "as", + "t1", + "join", + "sections", + "as", + "t2", + "on", + "t1", + ".", + "course_id", + "=", + "t2", + ".", + "course_id", + "group", + "by", + "t1", + ".", + "course_id", + "having", + "count", + "(", + "*", + ")", + "<", + "=", + "value" + ], + "question": "What are the names and ids of every course with less than 2 sections?", + "question_toks": [ + "What", + "are", + "the", + "names", + "and", + "ids", + "of", + "every", + "course", + "with", + "less", + "than", + "2", + "sections", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ], + [ + "table_unit", + 4 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 10, + false + ], + null + ], + [ + 0, + 24, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 11, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 10, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 10, + false + ] + ], + "having": [ + [ + false, + 6, + [ + 0, + [ + 3, + 0, + false + ], + null + ], + 2.0, + null + ] + ], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "student_transcripts_tracking", + "query": "SELECT section_name FROM Sections ORDER BY section_name DESC", + "query_toks": [ + "SELECT", + "section_name", + "FROM", + "Sections", + "ORDER", + "BY", + "section_name", + "DESC" + ], + "query_toks_no_value": [ + "select", + "section_name", + "from", + "sections", + "order", + "by", + "section_name", + "desc" + ], + "question": "List the section_name in reversed lexicographical order.", + "question_toks": [ + "List", + "the", + "section_name", + "in", + "reversed", + "lexicographical", + "order", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 4 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 25, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [ + "desc", + [ + [ + 0, + [ + 0, + 25, + false + ], + null + ] + ] + ], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "student_transcripts_tracking", + "query": "SELECT section_name FROM Sections ORDER BY section_name DESC", + "query_toks": [ + "SELECT", + "section_name", + "FROM", + "Sections", + "ORDER", + "BY", + "section_name", + "DESC" + ], + "query_toks_no_value": [ + "select", + "section_name", + "from", + "sections", + "order", + "by", + "section_name", + "desc" + ], + "question": "What are the names of the sections in reverse alphabetical order?", + "question_toks": [ + "What", + "are", + "the", + "names", + "of", + "the", + "sections", + "in", + "reverse", + "alphabetical", + "order", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 4 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 25, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [ + "desc", + [ + [ + 0, + [ + 0, + 25, + false + ], + null + ] + ] + ], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "student_transcripts_tracking", + "query": "SELECT T1.semester_name , T1.semester_id FROM Semesters AS T1 JOIN Student_Enrolment AS T2 ON T1.semester_id = T2.semester_id GROUP BY T1.semester_id ORDER BY count(*) DESC LIMIT 1", + "query_toks": [ + "SELECT", + "T1.semester_name", + ",", + "T1.semester_id", + "FROM", + "Semesters", + "AS", + "T1", + "JOIN", + "Student_Enrolment", + "AS", + "T2", + "ON", + "T1.semester_id", + "=", + "T2.semester_id", + "GROUP", + "BY", + "T1.semester_id", + "ORDER", + "BY", + "count", + "(", + "*", + ")", + "DESC", + "LIMIT", + "1" + ], + "query_toks_no_value": [ + "select", + "t1", + ".", + "semester_name", + ",", + "t1", + ".", + "semester_id", + "from", + "semesters", + "as", + "t1", + "join", + "student_enrolment", + "as", + "t2", + "on", + "t1", + ".", + "semester_id", + "=", + "t2", + ".", + "semester_id", + "group", + "by", + "t1", + ".", + "semester_id", + "order", + "by", + "count", + "(", + "*", + ")", + "desc", + "limit", + "value" + ], + "question": "What is the semester which most student registered in? Show both the name and the id.", + "question_toks": [ + "What", + "is", + "the", + "semester", + "which", + "most", + "student", + "registered", + "in", + "?", + "Show", + "both", + "the", + "name", + "and", + "the", + "id", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 5 + ], + [ + "table_unit", + 7 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 28, + false + ], + null + ], + [ + 0, + 46, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 29, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 28, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 28, + false + ] + ], + "having": [], + "orderBy": [ + "desc", + [ + [ + 0, + [ + 3, + 0, + false + ], + null + ] + ] + ], + "limit": 1, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "student_transcripts_tracking", + "query": "SELECT T1.semester_name , T1.semester_id FROM Semesters AS T1 JOIN Student_Enrolment AS T2 ON T1.semester_id = T2.semester_id GROUP BY T1.semester_id ORDER BY count(*) DESC LIMIT 1", + "query_toks": [ + "SELECT", + "T1.semester_name", + ",", + "T1.semester_id", + "FROM", + "Semesters", + "AS", + "T1", + "JOIN", + "Student_Enrolment", + "AS", + "T2", + "ON", + "T1.semester_id", + "=", + "T2.semester_id", + "GROUP", + "BY", + "T1.semester_id", + "ORDER", + "BY", + "count", + "(", + "*", + ")", + "DESC", + "LIMIT", + "1" + ], + "query_toks_no_value": [ + "select", + "t1", + ".", + "semester_name", + ",", + "t1", + ".", + "semester_id", + "from", + "semesters", + "as", + "t1", + "join", + "student_enrolment", + "as", + "t2", + "on", + "t1", + ".", + "semester_id", + "=", + "t2", + ".", + "semester_id", + "group", + "by", + "t1", + ".", + "semester_id", + "order", + "by", + "count", + "(", + "*", + ")", + "desc", + "limit", + "value" + ], + "question": "For each semester, what is the name and id of the one with the most students registered?", + "question_toks": [ + "For", + "each", + "semester", + ",", + "what", + "is", + "the", + "name", + "and", + "id", + "of", + "the", + "one", + "with", + "the", + "most", + "students", + "registered", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 5 + ], + [ + "table_unit", + 7 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 28, + false + ], + null + ], + [ + 0, + 46, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 29, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 28, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 28, + false + ] + ], + "having": [], + "orderBy": [ + "desc", + [ + [ + 0, + [ + 3, + 0, + false + ], + null + ] + ] + ], + "limit": 1, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "student_transcripts_tracking", + "query": "SELECT department_description FROM Departments WHERE department_name LIKE '%computer%'", + "query_toks": [ + "SELECT", + "department_description", + "FROM", + "Departments", + "WHERE", + "department_name", + "LIKE", + "'", + "%", + "computer", + "%", + "'" + ], + "query_toks_no_value": [ + "select", + "department_description", + "from", + "departments", + "where", + "department_name", + "like", + "value" + ], + "question": "What is the description of the department whose name has the substring the computer?", + "question_toks": [ + "What", + "is", + "the", + "description", + "of", + "the", + "department", + "whose", + "name", + "has", + "the", + "substring", + "the", + "computer", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 16, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 9, + [ + 0, + [ + 0, + 15, + false + ], + null + ], + "\"%computer%\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "student_transcripts_tracking", + "query": "SELECT department_description FROM Departments WHERE department_name LIKE '%computer%'", + "query_toks": [ + "SELECT", + "department_description", + "FROM", + "Departments", + "WHERE", + "department_name", + "LIKE", + "'", + "%", + "computer", + "%", + "'" + ], + "query_toks_no_value": [ + "select", + "department_description", + "from", + "departments", + "where", + "department_name", + "like", + "value" + ], + "question": "What is the department description for the one whose name has the word computer?", + "question_toks": [ + "What", + "is", + "the", + "department", + "description", + "for", + "the", + "one", + "whose", + "name", + "has", + "the", + "word", + "computer", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 16, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 9, + [ + 0, + [ + 0, + 15, + false + ], + null + ], + "\"%computer%\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "student_transcripts_tracking", + "query": "SELECT T1.first_name , T1.middle_name , T1.last_name , T1.student_id FROM Students AS T1 JOIN Student_Enrolment AS T2 ON T1.student_id = T2.student_id GROUP BY T1.student_id HAVING count(*) = 2", + "query_toks": [ + "SELECT", + "T1.first_name", + ",", + "T1.middle_name", + ",", + "T1.last_name", + ",", + "T1.student_id", + "FROM", + "Students", + "AS", + "T1", + "JOIN", + "Student_Enrolment", + "AS", + "T2", + "ON", + "T1.student_id", + "=", + "T2.student_id", + "GROUP", + "BY", + "T1.student_id", + "HAVING", + "count", + "(", + "*", + ")", + "=", + "2" + ], + "query_toks_no_value": [ + "select", + "t1", + ".", + "first_name", + ",", + "t1", + ".", + "middle_name", + ",", + "t1", + ".", + "last_name", + ",", + "t1", + ".", + "student_id", + "from", + "students", + "as", + "t1", + "join", + "student_enrolment", + "as", + "t2", + "on", + "t1", + ".", + "student_id", + "=", + "t2", + ".", + "student_id", + "group", + "by", + "t1", + ".", + "student_id", + "having", + "count", + "(", + "*", + ")", + "=", + "value" + ], + "question": "Who are enrolled in 2 degree programs in one semester? List the first name, middle name and last name and the id.", + "question_toks": [ + "Who", + "are", + "enrolled", + "in", + "2", + "degree", + "programs", + "in", + "one", + "semester", + "?", + "List", + "the", + "first", + "name", + ",", + "middle", + "name", + "and", + "last", + "name", + "and", + "the", + "id", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 6 + ], + [ + "table_unit", + 7 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 32, + false + ], + null + ], + [ + 0, + 47, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 35, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 36, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 37, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 32, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 32, + false + ] + ], + "having": [ + [ + false, + 2, + [ + 0, + [ + 3, + 0, + false + ], + null + ], + 2.0, + null + ] + ], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "student_transcripts_tracking", + "query": "SELECT T1.first_name , T1.middle_name , T1.last_name , T1.student_id FROM Students AS T1 JOIN Student_Enrolment AS T2 ON T1.student_id = T2.student_id GROUP BY T1.student_id HAVING count(*) = 2", + "query_toks": [ + "SELECT", + "T1.first_name", + ",", + "T1.middle_name", + ",", + "T1.last_name", + ",", + "T1.student_id", + "FROM", + "Students", + "AS", + "T1", + "JOIN", + "Student_Enrolment", + "AS", + "T2", + "ON", + "T1.student_id", + "=", + "T2.student_id", + "GROUP", + "BY", + "T1.student_id", + "HAVING", + "count", + "(", + "*", + ")", + "=", + "2" + ], + "query_toks_no_value": [ + "select", + "t1", + ".", + "first_name", + ",", + "t1", + ".", + "middle_name", + ",", + "t1", + ".", + "last_name", + ",", + "t1", + ".", + "student_id", + "from", + "students", + "as", + "t1", + "join", + "student_enrolment", + "as", + "t2", + "on", + "t1", + ".", + "student_id", + "=", + "t2", + ".", + "student_id", + "group", + "by", + "t1", + ".", + "student_id", + "having", + "count", + "(", + "*", + ")", + "=", + "value" + ], + "question": "What are the first, middle, and last names, along with the ids, of all students who enrolled in 2 degree programs in one semester?", + "question_toks": [ + "What", + "are", + "the", + "first", + ",", + "middle", + ",", + "and", + "last", + "names", + ",", + "along", + "with", + "the", + "ids", + ",", + "of", + "all", + "students", + "who", + "enrolled", + "in", + "2", + "degree", + "programs", + "in", + "one", + "semester", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 6 + ], + [ + "table_unit", + 7 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 32, + false + ], + null + ], + [ + 0, + 47, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 35, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 36, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 37, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 32, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 32, + false + ] + ], + "having": [ + [ + false, + 2, + [ + 0, + [ + 3, + 0, + false + ], + null + ], + 2.0, + null + ] + ], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "student_transcripts_tracking", + "query": "SELECT DISTINCT T1.first_name , T1.middle_name , T1.last_name FROM Students AS T1 JOIN Student_Enrolment AS T2 ON T1.student_id = T2.student_id JOIN Degree_Programs AS T3 ON T2.degree_program_id = T3.degree_program_id WHERE T3.degree_summary_name = 'Bachelor'", + "query_toks": [ + "SELECT", + "DISTINCT", + "T1.first_name", + ",", + "T1.middle_name", + ",", + "T1.last_name", + "FROM", + "Students", + "AS", + "T1", + "JOIN", + "Student_Enrolment", + "AS", + "T2", + "ON", + "T1.student_id", + "=", + "T2.student_id", + "JOIN", + "Degree_Programs", + "AS", + "T3", + "ON", + "T2.degree_program_id", + "=", + "T3.degree_program_id", + "WHERE", + "T3.degree_summary_name", + "=", + "'Bachelor", + "'" + ], + "query_toks_no_value": [ + "select", + "distinct", + "t1", + ".", + "first_name", + ",", + "t1", + ".", + "middle_name", + ",", + "t1", + ".", + "last_name", + "from", + "students", + "as", + "t1", + "join", + "student_enrolment", + "as", + "t2", + "on", + "t1", + ".", + "student_id", + "=", + "t2", + ".", + "student_id", + "join", + "degree_programs", + "as", + "t3", + "on", + "t2", + ".", + "degree_program_id", + "=", + "t3", + ".", + "degree_program_id", + "where", + "t3", + ".", + "degree_summary_name", + "=", + "value" + ], + "question": "Who is enrolled in a Bachelor degree program? List the first name, middle name, last name.", + "question_toks": [ + "Who", + "is", + "enrolled", + "in", + "a", + "Bachelor", + "degree", + "program", + "?", + "List", + "the", + "first", + "name", + ",", + "middle", + "name", + ",", + "last", + "name", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 6 + ], + [ + "table_unit", + 7 + ], + [ + "table_unit", + 3 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 32, + false + ], + null + ], + [ + 0, + 47, + false + ], + null + ], + "and", + [ + false, + 2, + [ + 0, + [ + 0, + 45, + false + ], + null + ], + [ + 0, + 18, + false + ], + null + ] + ] + }, + "select": [ + true, + [ + [ + 0, + [ + 0, + [ + 0, + 35, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 36, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 37, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 20, + false + ], + null + ], + "\"Bachelor\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "student_transcripts_tracking", + "query": "SELECT DISTINCT T1.first_name , T1.middle_name , T1.last_name FROM Students AS T1 JOIN Student_Enrolment AS T2 ON T1.student_id = T2.student_id JOIN Degree_Programs AS T3 ON T2.degree_program_id = T3.degree_program_id WHERE T3.degree_summary_name = 'Bachelor'", + "query_toks": [ + "SELECT", + "DISTINCT", + "T1.first_name", + ",", + "T1.middle_name", + ",", + "T1.last_name", + "FROM", + "Students", + "AS", + "T1", + "JOIN", + "Student_Enrolment", + "AS", + "T2", + "ON", + "T1.student_id", + "=", + "T2.student_id", + "JOIN", + "Degree_Programs", + "AS", + "T3", + "ON", + "T2.degree_program_id", + "=", + "T3.degree_program_id", + "WHERE", + "T3.degree_summary_name", + "=", + "'Bachelor", + "'" + ], + "query_toks_no_value": [ + "select", + "distinct", + "t1", + ".", + "first_name", + ",", + "t1", + ".", + "middle_name", + ",", + "t1", + ".", + "last_name", + "from", + "students", + "as", + "t1", + "join", + "student_enrolment", + "as", + "t2", + "on", + "t1", + ".", + "student_id", + "=", + "t2", + ".", + "student_id", + "join", + "degree_programs", + "as", + "t3", + "on", + "t2", + ".", + "degree_program_id", + "=", + "t3", + ".", + "degree_program_id", + "where", + "t3", + ".", + "degree_summary_name", + "=", + "value" + ], + "question": "What are the first, middle, and last names for everybody enrolled in a Bachelors program?", + "question_toks": [ + "What", + "are", + "the", + "first", + ",", + "middle", + ",", + "and", + "last", + "names", + "for", + "everybody", + "enrolled", + "in", + "a", + "Bachelors", + "program", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 6 + ], + [ + "table_unit", + 7 + ], + [ + "table_unit", + 3 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 32, + false + ], + null + ], + [ + 0, + 47, + false + ], + null + ], + "and", + [ + false, + 2, + [ + 0, + [ + 0, + 45, + false + ], + null + ], + [ + 0, + 18, + false + ], + null + ] + ] + }, + "select": [ + true, + [ + [ + 0, + [ + 0, + [ + 0, + 35, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 36, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 37, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 20, + false + ], + null + ], + "\"Bachelor\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "student_transcripts_tracking", + "query": "SELECT T1.degree_summary_name FROM Degree_Programs AS T1 JOIN Student_Enrolment AS T2 ON T1.degree_program_id = T2.degree_program_id GROUP BY T1.degree_summary_name ORDER BY count(*) DESC LIMIT 1", + "query_toks": [ + "SELECT", + "T1.degree_summary_name", + "FROM", + "Degree_Programs", + "AS", + "T1", + "JOIN", + "Student_Enrolment", + "AS", + "T2", + "ON", + "T1.degree_program_id", + "=", + "T2.degree_program_id", + "GROUP", + "BY", + "T1.degree_summary_name", + "ORDER", + "BY", + "count", + "(", + "*", + ")", + "DESC", + "LIMIT", + "1" + ], + "query_toks_no_value": [ + "select", + "t1", + ".", + "degree_summary_name", + "from", + "degree_programs", + "as", + "t1", + "join", + "student_enrolment", + "as", + "t2", + "on", + "t1", + ".", + "degree_program_id", + "=", + "t2", + ".", + "degree_program_id", + "group", + "by", + "t1", + ".", + "degree_summary_name", + "order", + "by", + "count", + "(", + "*", + ")", + "desc", + "limit", + "value" + ], + "question": "Find the kind of program which most number of students are enrolled in?", + "question_toks": [ + "Find", + "the", + "kind", + "of", + "program", + "which", + "most", + "number", + "of", + "students", + "are", + "enrolled", + "in", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 3 + ], + [ + "table_unit", + 7 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 18, + false + ], + null + ], + [ + 0, + 45, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 20, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 20, + false + ] + ], + "having": [], + "orderBy": [ + "desc", + [ + [ + 0, + [ + 3, + 0, + false + ], + null + ] + ] + ], + "limit": 1, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "student_transcripts_tracking", + "query": "SELECT T1.degree_summary_name FROM Degree_Programs AS T1 JOIN Student_Enrolment AS T2 ON T1.degree_program_id = T2.degree_program_id GROUP BY T1.degree_summary_name ORDER BY count(*) DESC LIMIT 1", + "query_toks": [ + "SELECT", + "T1.degree_summary_name", + "FROM", + "Degree_Programs", + "AS", + "T1", + "JOIN", + "Student_Enrolment", + "AS", + "T2", + "ON", + "T1.degree_program_id", + "=", + "T2.degree_program_id", + "GROUP", + "BY", + "T1.degree_summary_name", + "ORDER", + "BY", + "count", + "(", + "*", + ")", + "DESC", + "LIMIT", + "1" + ], + "query_toks_no_value": [ + "select", + "t1", + ".", + "degree_summary_name", + "from", + "degree_programs", + "as", + "t1", + "join", + "student_enrolment", + "as", + "t2", + "on", + "t1", + ".", + "degree_program_id", + "=", + "t2", + ".", + "degree_program_id", + "group", + "by", + "t1", + ".", + "degree_summary_name", + "order", + "by", + "count", + "(", + "*", + ")", + "desc", + "limit", + "value" + ], + "question": "What is the degree summary name that has the most number of students enrolled?", + "question_toks": [ + "What", + "is", + "the", + "degree", + "summary", + "name", + "that", + "has", + "the", + "most", + "number", + "of", + "students", + "enrolled", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 3 + ], + [ + "table_unit", + 7 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 18, + false + ], + null + ], + [ + 0, + 45, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 20, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 20, + false + ] + ], + "having": [], + "orderBy": [ + "desc", + [ + [ + 0, + [ + 3, + 0, + false + ], + null + ] + ] + ], + "limit": 1, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "student_transcripts_tracking", + "query": "SELECT T1.degree_program_id , T1.degree_summary_name FROM Degree_Programs AS T1 JOIN Student_Enrolment AS T2 ON T1.degree_program_id = T2.degree_program_id GROUP BY T1.degree_program_id ORDER BY count(*) DESC LIMIT 1", + "query_toks": [ + "SELECT", + "T1.degree_program_id", + ",", + "T1.degree_summary_name", + "FROM", + "Degree_Programs", + "AS", + "T1", + "JOIN", + "Student_Enrolment", + "AS", + "T2", + "ON", + "T1.degree_program_id", + "=", + "T2.degree_program_id", + "GROUP", + "BY", + "T1.degree_program_id", + "ORDER", + "BY", + "count", + "(", + "*", + ")", + "DESC", + "LIMIT", + "1" + ], + "query_toks_no_value": [ + "select", + "t1", + ".", + "degree_program_id", + ",", + "t1", + ".", + "degree_summary_name", + "from", + "degree_programs", + "as", + "t1", + "join", + "student_enrolment", + "as", + "t2", + "on", + "t1", + ".", + "degree_program_id", + "=", + "t2", + ".", + "degree_program_id", + "group", + "by", + "t1", + ".", + "degree_program_id", + "order", + "by", + "count", + "(", + "*", + ")", + "desc", + "limit", + "value" + ], + "question": "Find the program which most number of students are enrolled in. List both the id and the summary.", + "question_toks": [ + "Find", + "the", + "program", + "which", + "most", + "number", + "of", + "students", + "are", + "enrolled", + "in", + ".", + "List", + "both", + "the", + "id", + "and", + "the", + "summary", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 3 + ], + [ + "table_unit", + 7 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 18, + false + ], + null + ], + [ + 0, + 45, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 18, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 20, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 18, + false + ] + ], + "having": [], + "orderBy": [ + "desc", + [ + [ + 0, + [ + 3, + 0, + false + ], + null + ] + ] + ], + "limit": 1, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "student_transcripts_tracking", + "query": "SELECT T1.degree_program_id , T1.degree_summary_name FROM Degree_Programs AS T1 JOIN Student_Enrolment AS T2 ON T1.degree_program_id = T2.degree_program_id GROUP BY T1.degree_program_id ORDER BY count(*) DESC LIMIT 1", + "query_toks": [ + "SELECT", + "T1.degree_program_id", + ",", + "T1.degree_summary_name", + "FROM", + "Degree_Programs", + "AS", + "T1", + "JOIN", + "Student_Enrolment", + "AS", + "T2", + "ON", + "T1.degree_program_id", + "=", + "T2.degree_program_id", + "GROUP", + "BY", + "T1.degree_program_id", + "ORDER", + "BY", + "count", + "(", + "*", + ")", + "DESC", + "LIMIT", + "1" + ], + "query_toks_no_value": [ + "select", + "t1", + ".", + "degree_program_id", + ",", + "t1", + ".", + "degree_summary_name", + "from", + "degree_programs", + "as", + "t1", + "join", + "student_enrolment", + "as", + "t2", + "on", + "t1", + ".", + "degree_program_id", + "=", + "t2", + ".", + "degree_program_id", + "group", + "by", + "t1", + ".", + "degree_program_id", + "order", + "by", + "count", + "(", + "*", + ")", + "desc", + "limit", + "value" + ], + "question": "What is the program id and the summary of the degree that has the most students enrolled?", + "question_toks": [ + "What", + "is", + "the", + "program", + "id", + "and", + "the", + "summary", + "of", + "the", + "degree", + "that", + "has", + "the", + "most", + "students", + "enrolled", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 3 + ], + [ + "table_unit", + 7 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 18, + false + ], + null + ], + [ + 0, + 45, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 18, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 20, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 18, + false + ] + ], + "having": [], + "orderBy": [ + "desc", + [ + [ + 0, + [ + 3, + 0, + false + ], + null + ] + ] + ], + "limit": 1, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "student_transcripts_tracking", + "query": "SELECT T1.student_id , T1.first_name , T1.middle_name , T1.last_name , count(*) , T1.student_id FROM Students AS T1 JOIN Student_Enrolment AS T2 ON T1.student_id = T2.student_id GROUP BY T1.student_id ORDER BY count(*) DESC LIMIT 1", + "query_toks": [ + "SELECT", + "T1.student_id", + ",", + "T1.first_name", + ",", + "T1.middle_name", + ",", + "T1.last_name", + ",", + "count", + "(", + "*", + ")", + ",", + "T1.student_id", + "FROM", + "Students", + "AS", + "T1", + "JOIN", + "Student_Enrolment", + "AS", + "T2", + "ON", + "T1.student_id", + "=", + "T2.student_id", + "GROUP", + "BY", + "T1.student_id", + "ORDER", + "BY", + "count", + "(", + "*", + ")", + "DESC", + "LIMIT", + "1" + ], + "query_toks_no_value": [ + "select", + "t1", + ".", + "student_id", + ",", + "t1", + ".", + "first_name", + ",", + "t1", + ".", + "middle_name", + ",", + "t1", + ".", + "last_name", + ",", + "count", + "(", + "*", + ")", + ",", + "t1", + ".", + "student_id", + "from", + "students", + "as", + "t1", + "join", + "student_enrolment", + "as", + "t2", + "on", + "t1", + ".", + "student_id", + "=", + "t2", + ".", + "student_id", + "group", + "by", + "t1", + ".", + "student_id", + "order", + "by", + "count", + "(", + "*", + ")", + "desc", + "limit", + "value" + ], + "question": "Which student has enrolled for the most times in any program? List the id, first name, middle name, last name, the number of enrollments and student id.", + "question_toks": [ + "Which", + "student", + "has", + "enrolled", + "for", + "the", + "most", + "times", + "in", + "any", + "program", + "?", + "List", + "the", + "id", + ",", + "first", + "name", + ",", + "middle", + "name", + ",", + "last", + "name", + ",", + "the", + "number", + "of", + "enrollments", + "and", + "student", + "id", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 6 + ], + [ + "table_unit", + 7 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 32, + false + ], + null + ], + [ + 0, + 47, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 32, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 35, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 36, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 37, + false + ], + null + ] + ], + [ + 3, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 32, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 32, + false + ] + ], + "having": [], + "orderBy": [ + "desc", + [ + [ + 0, + [ + 3, + 0, + false + ], + null + ] + ] + ], + "limit": 1, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "student_transcripts_tracking", + "query": "SELECT T1.student_id , T1.first_name , T1.middle_name , T1.last_name , count(*) , T1.student_id FROM Students AS T1 JOIN Student_Enrolment AS T2 ON T1.student_id = T2.student_id GROUP BY T1.student_id ORDER BY count(*) DESC LIMIT 1", + "query_toks": [ + "SELECT", + "T1.student_id", + ",", + "T1.first_name", + ",", + "T1.middle_name", + ",", + "T1.last_name", + ",", + "count", + "(", + "*", + ")", + ",", + "T1.student_id", + "FROM", + "Students", + "AS", + "T1", + "JOIN", + "Student_Enrolment", + "AS", + "T2", + "ON", + "T1.student_id", + "=", + "T2.student_id", + "GROUP", + "BY", + "T1.student_id", + "ORDER", + "BY", + "count", + "(", + "*", + ")", + "DESC", + "LIMIT", + "1" + ], + "query_toks_no_value": [ + "select", + "t1", + ".", + "student_id", + ",", + "t1", + ".", + "first_name", + ",", + "t1", + ".", + "middle_name", + ",", + "t1", + ".", + "last_name", + ",", + "count", + "(", + "*", + ")", + ",", + "t1", + ".", + "student_id", + "from", + "students", + "as", + "t1", + "join", + "student_enrolment", + "as", + "t2", + "on", + "t1", + ".", + "student_id", + "=", + "t2", + ".", + "student_id", + "group", + "by", + "t1", + ".", + "student_id", + "order", + "by", + "count", + "(", + "*", + ")", + "desc", + "limit", + "value" + ], + "question": "What is the first, middle, and last name, along with the id and number of enrollments, for the student who enrolled the most in any program?", + "question_toks": [ + "What", + "is", + "the", + "first", + ",", + "middle", + ",", + "and", + "last", + "name", + ",", + "along", + "with", + "the", + "id", + "and", + "number", + "of", + "enrollments", + ",", + "for", + "the", + "student", + "who", + "enrolled", + "the", + "most", + "in", + "any", + "program", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 6 + ], + [ + "table_unit", + 7 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 32, + false + ], + null + ], + [ + 0, + 47, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 32, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 35, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 36, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 37, + false + ], + null + ] + ], + [ + 3, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 32, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 32, + false + ] + ], + "having": [], + "orderBy": [ + "desc", + [ + [ + 0, + [ + 3, + 0, + false + ], + null + ] + ] + ], + "limit": 1, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "student_transcripts_tracking", + "query": "SELECT semester_name FROM Semesters WHERE semester_id NOT IN( SELECT semester_id FROM Student_Enrolment )", + "query_toks": [ + "SELECT", + "semester_name", + "FROM", + "Semesters", + "WHERE", + "semester_id", + "NOT", + "IN", + "(", + "SELECT", + "semester_id", + "FROM", + "Student_Enrolment", + ")" + ], + "query_toks_no_value": [ + "select", + "semester_name", + "from", + "semesters", + "where", + "semester_id", + "not", + "in", + "(", + "select", + "semester_id", + "from", + "student_enrolment", + ")" + ], + "question": "Which semesters do not have any student enrolled? List the semester name.", + "question_toks": [ + "Which", + "semesters", + "do", + "not", + "have", + "any", + "student", + "enrolled", + "?", + "List", + "the", + "semester", + "name", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 5 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 29, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + true, + 8, + [ + 0, + [ + 0, + 28, + false + ], + null + ], + { + "from": { + "table_units": [ + [ + "table_unit", + 7 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 46, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + }, + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "student_transcripts_tracking", + "query": "SELECT semester_name FROM Semesters WHERE semester_id NOT IN( SELECT semester_id FROM Student_Enrolment )", + "query_toks": [ + "SELECT", + "semester_name", + "FROM", + "Semesters", + "WHERE", + "semester_id", + "NOT", + "IN", + "(", + "SELECT", + "semester_id", + "FROM", + "Student_Enrolment", + ")" + ], + "query_toks_no_value": [ + "select", + "semester_name", + "from", + "semesters", + "where", + "semester_id", + "not", + "in", + "(", + "select", + "semester_id", + "from", + "student_enrolment", + ")" + ], + "question": "What is the name of the semester with no students enrolled?", + "question_toks": [ + "What", + "is", + "the", + "name", + "of", + "the", + "semester", + "with", + "no", + "students", + "enrolled", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 5 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 29, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + true, + 8, + [ + 0, + [ + 0, + 28, + false + ], + null + ], + { + "from": { + "table_units": [ + [ + "table_unit", + 7 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 46, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + }, + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "student_transcripts_tracking", + "query": "SELECT DISTINCT T1.course_name FROM Courses AS T1 JOIN Student_Enrolment_Courses AS T2 ON T1.course_id = T2.course_id", + "query_toks": [ + "SELECT", + "DISTINCT", + "T1.course_name", + "FROM", + "Courses", + "AS", + "T1", + "JOIN", + "Student_Enrolment_Courses", + "AS", + "T2", + "ON", + "T1.course_id", + "=", + "T2.course_id" + ], + "query_toks_no_value": [ + "select", + "distinct", + "t1", + ".", + "course_name", + "from", + "courses", + "as", + "t1", + "join", + "student_enrolment_courses", + "as", + "t2", + "on", + "t1", + ".", + "course_id", + "=", + "t2", + ".", + "course_id" + ], + "question": "What are all the course names of the courses which ever have students enrolled in?", + "question_toks": [ + "What", + "are", + "all", + "the", + "course", + "names", + "of", + "the", + "courses", + "which", + "ever", + "have", + "students", + "enrolled", + "in", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ], + [ + "table_unit", + 8 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 10, + false + ], + null + ], + [ + 0, + 50, + false + ], + null + ] + ] + }, + "select": [ + true, + [ + [ + 0, + [ + 0, + [ + 0, + 11, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "student_transcripts_tracking", + "query": "SELECT DISTINCT T1.course_name FROM Courses AS T1 JOIN Student_Enrolment_Courses AS T2 ON T1.course_id = T2.course_id", + "query_toks": [ + "SELECT", + "DISTINCT", + "T1.course_name", + "FROM", + "Courses", + "AS", + "T1", + "JOIN", + "Student_Enrolment_Courses", + "AS", + "T2", + "ON", + "T1.course_id", + "=", + "T2.course_id" + ], + "query_toks_no_value": [ + "select", + "distinct", + "t1", + ".", + "course_name", + "from", + "courses", + "as", + "t1", + "join", + "student_enrolment_courses", + "as", + "t2", + "on", + "t1", + ".", + "course_id", + "=", + "t2", + ".", + "course_id" + ], + "question": "What are the names of all courses that have some students enrolled?", + "question_toks": [ + "What", + "are", + "the", + "names", + "of", + "all", + "courses", + "that", + "have", + "some", + "students", + "enrolled", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ], + [ + "table_unit", + 8 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 10, + false + ], + null + ], + [ + 0, + 50, + false + ], + null + ] + ] + }, + "select": [ + true, + [ + [ + 0, + [ + 0, + [ + 0, + 11, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "student_transcripts_tracking", + "query": "SELECT T1.course_name FROM Courses AS T1 JOIN Student_Enrolment_Courses AS T2 ON T1.course_id = T2.course_id GROUP BY T1.course_name ORDER BY count(*) DESC LIMIT 1", + "query_toks": [ + "SELECT", + "T1.course_name", + "FROM", + "Courses", + "AS", + "T1", + "JOIN", + "Student_Enrolment_Courses", + "AS", + "T2", + "ON", + "T1.course_id", + "=", + "T2.course_id", + "GROUP", + "BY", + "T1.course_name", + "ORDER", + "BY", + "count", + "(", + "*", + ")", + "DESC", + "LIMIT", + "1" + ], + "query_toks_no_value": [ + "select", + "t1", + ".", + "course_name", + "from", + "courses", + "as", + "t1", + "join", + "student_enrolment_courses", + "as", + "t2", + "on", + "t1", + ".", + "course_id", + "=", + "t2", + ".", + "course_id", + "group", + "by", + "t1", + ".", + "course_name", + "order", + "by", + "count", + "(", + "*", + ")", + "desc", + "limit", + "value" + ], + "question": "What's the name of the course with most number of enrollments?", + "question_toks": [ + "What", + "'s", + "the", + "name", + "of", + "the", + "course", + "with", + "most", + "number", + "of", + "enrollments", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ], + [ + "table_unit", + 8 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 10, + false + ], + null + ], + [ + 0, + 50, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 11, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 11, + false + ] + ], + "having": [], + "orderBy": [ + "desc", + [ + [ + 0, + [ + 3, + 0, + false + ], + null + ] + ] + ], + "limit": 1, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "student_transcripts_tracking", + "query": "SELECT T1.course_name FROM Courses AS T1 JOIN Student_Enrolment_Courses AS T2 ON T1.course_id = T2.course_id GROUP BY T1.course_name ORDER BY count(*) DESC LIMIT 1", + "query_toks": [ + "SELECT", + "T1.course_name", + "FROM", + "Courses", + "AS", + "T1", + "JOIN", + "Student_Enrolment_Courses", + "AS", + "T2", + "ON", + "T1.course_id", + "=", + "T2.course_id", + "GROUP", + "BY", + "T1.course_name", + "ORDER", + "BY", + "count", + "(", + "*", + ")", + "DESC", + "LIMIT", + "1" + ], + "query_toks_no_value": [ + "select", + "t1", + ".", + "course_name", + "from", + "courses", + "as", + "t1", + "join", + "student_enrolment_courses", + "as", + "t2", + "on", + "t1", + ".", + "course_id", + "=", + "t2", + ".", + "course_id", + "group", + "by", + "t1", + ".", + "course_name", + "order", + "by", + "count", + "(", + "*", + ")", + "desc", + "limit", + "value" + ], + "question": "What is the name of the course with the most students enrolled?", + "question_toks": [ + "What", + "is", + "the", + "name", + "of", + "the", + "course", + "with", + "the", + "most", + "students", + "enrolled", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ], + [ + "table_unit", + 8 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 10, + false + ], + null + ], + [ + 0, + 50, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 11, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 11, + false + ] + ], + "having": [], + "orderBy": [ + "desc", + [ + [ + 0, + [ + 3, + 0, + false + ], + null + ] + ] + ], + "limit": 1, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "student_transcripts_tracking", + "query": "SELECT T1.last_name FROM Students AS T1 JOIN Addresses AS T2 ON T1.current_address_id = T2.address_id WHERE T2.state_province_county = 'NorthCarolina' EXCEPT SELECT DISTINCT T3.last_name FROM Students AS T3 JOIN Student_Enrolment AS T4 ON T3.student_id = T4.student_id", + "query_toks": [ + "SELECT", + "T1.last_name", + "FROM", + "Students", + "AS", + "T1", + "JOIN", + "Addresses", + "AS", + "T2", + "ON", + "T1.current_address_id", + "=", + "T2.address_id", + "WHERE", + "T2.state_province_county", + "=", + "'NorthCarolina", + "'", + "EXCEPT", + "SELECT", + "DISTINCT", + "T3.last_name", + "FROM", + "Students", + "AS", + "T3", + "JOIN", + "Student_Enrolment", + "AS", + "T4", + "ON", + "T3.student_id", + "=", + "T4.student_id" + ], + "query_toks_no_value": [ + "select", + "t1", + ".", + "last_name", + "from", + "students", + "as", + "t1", + "join", + "addresses", + "as", + "t2", + "on", + "t1", + ".", + "current_address_id", + "=", + "t2", + ".", + "address_id", + "where", + "t2", + ".", + "state_province_county", + "=", + "value", + "except", + "select", + "distinct", + "t3", + ".", + "last_name", + "from", + "students", + "as", + "t3", + "join", + "student_enrolment", + "as", + "t4", + "on", + "t3", + ".", + "student_id", + "=", + "t4", + ".", + "student_id" + ], + "question": "Find the last name of the students who currently live in the state of North Carolina but have not registered in any degree program.", + "question_toks": [ + "Find", + "the", + "last", + "name", + "of", + "the", + "students", + "who", + "currently", + "live", + "in", + "the", + "state", + "of", + "North", + "Carolina", + "but", + "have", + "not", + "registered", + "in", + "any", + "degree", + "program", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 6 + ], + [ + "table_unit", + 0 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 33, + false + ], + null + ], + [ + 0, + 1, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 37, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 7, + false + ], + null + ], + "\"NorthCarolina\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": { + "from": { + "table_units": [ + [ + "table_unit", + 6 + ], + [ + "table_unit", + 7 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 32, + false + ], + null + ], + [ + 0, + 47, + false + ], + null + ] + ] + }, + "select": [ + true, + [ + [ + 0, + [ + 0, + [ + 0, + 37, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + } + }, + { + "db_id": "student_transcripts_tracking", + "query": "SELECT T1.last_name FROM Students AS T1 JOIN Addresses AS T2 ON T1.current_address_id = T2.address_id WHERE T2.state_province_county = 'NorthCarolina' EXCEPT SELECT DISTINCT T3.last_name FROM Students AS T3 JOIN Student_Enrolment AS T4 ON T3.student_id = T4.student_id", + "query_toks": [ + "SELECT", + "T1.last_name", + "FROM", + "Students", + "AS", + "T1", + "JOIN", + "Addresses", + "AS", + "T2", + "ON", + "T1.current_address_id", + "=", + "T2.address_id", + "WHERE", + "T2.state_province_county", + "=", + "'NorthCarolina", + "'", + "EXCEPT", + "SELECT", + "DISTINCT", + "T3.last_name", + "FROM", + "Students", + "AS", + "T3", + "JOIN", + "Student_Enrolment", + "AS", + "T4", + "ON", + "T3.student_id", + "=", + "T4.student_id" + ], + "query_toks_no_value": [ + "select", + "t1", + ".", + "last_name", + "from", + "students", + "as", + "t1", + "join", + "addresses", + "as", + "t2", + "on", + "t1", + ".", + "current_address_id", + "=", + "t2", + ".", + "address_id", + "where", + "t2", + ".", + "state_province_county", + "=", + "value", + "except", + "select", + "distinct", + "t3", + ".", + "last_name", + "from", + "students", + "as", + "t3", + "join", + "student_enrolment", + "as", + "t4", + "on", + "t3", + ".", + "student_id", + "=", + "t4", + ".", + "student_id" + ], + "question": "What are the last name of the students who live in North Carolina but have not registered in any degree programs?", + "question_toks": [ + "What", + "are", + "the", + "last", + "name", + "of", + "the", + "students", + "who", + "live", + "in", + "North", + "Carolina", + "but", + "have", + "not", + "registered", + "in", + "any", + "degree", + "programs", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 6 + ], + [ + "table_unit", + 0 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 33, + false + ], + null + ], + [ + 0, + 1, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 37, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 7, + false + ], + null + ], + "\"NorthCarolina\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": { + "from": { + "table_units": [ + [ + "table_unit", + 6 + ], + [ + "table_unit", + 7 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 32, + false + ], + null + ], + [ + 0, + 47, + false + ], + null + ] + ] + }, + "select": [ + true, + [ + [ + 0, + [ + 0, + [ + 0, + 37, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + } + }, + { + "db_id": "student_transcripts_tracking", + "query": "SELECT T2.transcript_date , T1.transcript_id FROM Transcript_Contents AS T1 JOIN Transcripts AS T2 ON T1.transcript_id = T2.transcript_id GROUP BY T1.transcript_id HAVING count(*) >= 2", + "query_toks": [ + "SELECT", + "T2.transcript_date", + ",", + "T1.transcript_id", + "FROM", + "Transcript_Contents", + "AS", + "T1", + "JOIN", + "Transcripts", + "AS", + "T2", + "ON", + "T1.transcript_id", + "=", + "T2.transcript_id", + "GROUP", + "BY", + "T1.transcript_id", + "HAVING", + "count", + "(", + "*", + ")", + ">", + "=", + "2" + ], + "query_toks_no_value": [ + "select", + "t2", + ".", + "transcript_date", + ",", + "t1", + ".", + "transcript_id", + "from", + "transcript_contents", + "as", + "t1", + "join", + "transcripts", + "as", + "t2", + "on", + "t1", + ".", + "transcript_id", + "=", + "t2", + ".", + "transcript_id", + "group", + "by", + "t1", + ".", + "transcript_id", + "having", + "count", + "(", + "*", + ")", + ">", + "=", + "value" + ], + "question": "Show the date and id of the transcript with at least 2 course results.", + "question_toks": [ + "Show", + "the", + "date", + "and", + "id", + "of", + "the", + "transcript", + "with", + "at", + "least", + "2", + "course", + "results", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 10 + ], + [ + "table_unit", + 9 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 56, + false + ], + null + ], + [ + 0, + 52, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 53, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 56, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 56, + false + ] + ], + "having": [ + [ + false, + 5, + [ + 0, + [ + 3, + 0, + false + ], + null + ], + 2.0, + null + ] + ], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "student_transcripts_tracking", + "query": "SELECT T2.transcript_date , T1.transcript_id FROM Transcript_Contents AS T1 JOIN Transcripts AS T2 ON T1.transcript_id = T2.transcript_id GROUP BY T1.transcript_id HAVING count(*) >= 2", + "query_toks": [ + "SELECT", + "T2.transcript_date", + ",", + "T1.transcript_id", + "FROM", + "Transcript_Contents", + "AS", + "T1", + "JOIN", + "Transcripts", + "AS", + "T2", + "ON", + "T1.transcript_id", + "=", + "T2.transcript_id", + "GROUP", + "BY", + "T1.transcript_id", + "HAVING", + "count", + "(", + "*", + ")", + ">", + "=", + "2" + ], + "query_toks_no_value": [ + "select", + "t2", + ".", + "transcript_date", + ",", + "t1", + ".", + "transcript_id", + "from", + "transcript_contents", + "as", + "t1", + "join", + "transcripts", + "as", + "t2", + "on", + "t1", + ".", + "transcript_id", + "=", + "t2", + ".", + "transcript_id", + "group", + "by", + "t1", + ".", + "transcript_id", + "having", + "count", + "(", + "*", + ")", + ">", + "=", + "value" + ], + "question": "What is the date and id of the transcript with at least 2 courses listed?", + "question_toks": [ + "What", + "is", + "the", + "date", + "and", + "id", + "of", + "the", + "transcript", + "with", + "at", + "least", + "2", + "courses", + "listed", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 10 + ], + [ + "table_unit", + 9 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 56, + false + ], + null + ], + [ + 0, + 52, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 53, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 56, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 56, + false + ] + ], + "having": [ + [ + false, + 5, + [ + 0, + [ + 3, + 0, + false + ], + null + ], + 2.0, + null + ] + ], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "student_transcripts_tracking", + "query": "SELECT cell_mobile_number FROM Students WHERE first_name = 'Timmothy' AND last_name = 'Ward'", + "query_toks": [ + "SELECT", + "cell_mobile_number", + "FROM", + "Students", + "WHERE", + "first_name", + "=", + "'Timmothy", + "'", + "AND", + "last_name", + "=", + "'Ward", + "'" + ], + "query_toks_no_value": [ + "select", + "cell_mobile_number", + "from", + "students", + "where", + "first_name", + "=", + "value", + "and", + "last_name", + "=", + "value" + ], + "question": "What is the phone number of the man with the first name Timmothy and the last name Ward?", + "question_toks": [ + "What", + "is", + "the", + "phone", + "number", + "of", + "the", + "man", + "with", + "the", + "first", + "name", + "Timmothy", + "and", + "the", + "last", + "name", + "Ward", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 6 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 38, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 35, + false + ], + null + ], + "\"Timmothy\"", + null + ], + "and", + [ + false, + 2, + [ + 0, + [ + 0, + 37, + false + ], + null + ], + "\"Ward\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "student_transcripts_tracking", + "query": "select cell_mobile_number from students where first_name = 'timmothy' and last_name = 'ward'", + "query_toks": [ + "select", + "cell_mobile_number", + "from", + "students", + "where", + "first_name", + "=", + "\"timmothy\"", + "and", + "last_name", + "=", + "\"ward\"" + ], + "query_toks_no_value": [ + "select", + "cell_mobile_number", + "from", + "students", + "where", + "first_name", + "=", + "value", + "and", + "last_name", + "=", + "value" + ], + "question": "What is the mobile phone number of the student named Timmothy Ward ?", + "question_toks": [ + "What", + "is", + "the", + "mobile", + "phone", + "number", + "of", + "the", + "student", + "named", + "Timmothy", + "Ward", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 6 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 38, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 35, + false + ], + null + ], + "\"timmothy\"", + null + ], + "and", + [ + false, + 2, + [ + 0, + [ + 0, + 37, + false + ], + null + ], + "\"ward\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "student_transcripts_tracking", + "query": "SELECT first_name , middle_name , last_name FROM Students ORDER BY date_first_registered ASC LIMIT 1", + "query_toks": [ + "SELECT", + "first_name", + ",", + "middle_name", + ",", + "last_name", + "FROM", + "Students", + "ORDER", + "BY", + "date_first_registered", + "ASC", + "LIMIT", + "1" + ], + "query_toks_no_value": [ + "select", + "first_name", + ",", + "middle_name", + ",", + "last_name", + "from", + "students", + "order", + "by", + "date_first_registered", + "asc", + "limit", + "value" + ], + "question": "Who is the first student to register? List the first name, middle name and last name.", + "question_toks": [ + "Who", + "is", + "the", + "first", + "student", + "to", + "register", + "?", + "List", + "the", + "first", + "name", + ",", + "middle", + "name", + "and", + "last", + "name", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 6 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 35, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 36, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 37, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [ + "asc", + [ + [ + 0, + [ + 0, + 41, + false + ], + null + ] + ] + ], + "limit": 1, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "student_transcripts_tracking", + "query": "SELECT first_name , middle_name , last_name FROM Students ORDER BY date_first_registered ASC LIMIT 1", + "query_toks": [ + "SELECT", + "first_name", + ",", + "middle_name", + ",", + "last_name", + "FROM", + "Students", + "ORDER", + "BY", + "date_first_registered", + "ASC", + "LIMIT", + "1" + ], + "query_toks_no_value": [ + "select", + "first_name", + ",", + "middle_name", + ",", + "last_name", + "from", + "students", + "order", + "by", + "date_first_registered", + "asc", + "limit", + "value" + ], + "question": "What is the first, middle, and last name of the first student to register?", + "question_toks": [ + "What", + "is", + "the", + "first", + ",", + "middle", + ",", + "and", + "last", + "name", + "of", + "the", + "first", + "student", + "to", + "register", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 6 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 35, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 36, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 37, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [ + "asc", + [ + [ + 0, + [ + 0, + 41, + false + ], + null + ] + ] + ], + "limit": 1, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "student_transcripts_tracking", + "query": "SELECT first_name , middle_name , last_name FROM Students ORDER BY date_left ASC LIMIT 1", + "query_toks": [ + "SELECT", + "first_name", + ",", + "middle_name", + ",", + "last_name", + "FROM", + "Students", + "ORDER", + "BY", + "date_left", + "ASC", + "LIMIT", + "1" + ], + "query_toks_no_value": [ + "select", + "first_name", + ",", + "middle_name", + ",", + "last_name", + "from", + "students", + "order", + "by", + "date_left", + "asc", + "limit", + "value" + ], + "question": "Who is the earliest graduate of the school? List the first name, middle name and last name.", + "question_toks": [ + "Who", + "is", + "the", + "earliest", + "graduate", + "of", + "the", + "school", + "?", + "List", + "the", + "first", + "name", + ",", + "middle", + "name", + "and", + "last", + "name", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 6 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 35, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 36, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 37, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [ + "asc", + [ + [ + 0, + [ + 0, + 42, + false + ], + null + ] + ] + ], + "limit": 1, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "student_transcripts_tracking", + "query": "SELECT first_name , middle_name , last_name FROM Students ORDER BY date_left ASC LIMIT 1", + "query_toks": [ + "SELECT", + "first_name", + ",", + "middle_name", + ",", + "last_name", + "FROM", + "Students", + "ORDER", + "BY", + "date_left", + "ASC", + "LIMIT", + "1" + ], + "query_toks_no_value": [ + "select", + "first_name", + ",", + "middle_name", + ",", + "last_name", + "from", + "students", + "order", + "by", + "date_left", + "asc", + "limit", + "value" + ], + "question": "What is the first, middle, and last name of the earliest school graduate?", + "question_toks": [ + "What", + "is", + "the", + "first", + ",", + "middle", + ",", + "and", + "last", + "name", + "of", + "the", + "earliest", + "school", + "graduate", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 6 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 35, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 36, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 37, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [ + "asc", + [ + [ + 0, + [ + 0, + 42, + false + ], + null + ] + ] + ], + "limit": 1, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "student_transcripts_tracking", + "query": "SELECT first_name FROM Students WHERE current_address_id != permanent_address_id", + "query_toks": [ + "SELECT", + "first_name", + "FROM", + "Students", + "WHERE", + "current_address_id", + "!", + "=", + "permanent_address_id" + ], + "query_toks_no_value": [ + "select", + "first_name", + "from", + "students", + "where", + "current_address_id", + "!", + "=", + "permanent_address_id" + ], + "question": "Whose permanent address is different from his or her current address? List his or her first name.", + "question_toks": [ + "Whose", + "permanent", + "address", + "is", + "different", + "from", + "his", + "or", + "her", + "current", + "address", + "?", + "List", + "his", + "or", + "her", + "first", + "name", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 6 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 35, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 7, + [ + 0, + [ + 0, + 33, + false + ], + null + ], + [ + 0, + 34, + false + ], + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "student_transcripts_tracking", + "query": "SELECT first_name FROM Students WHERE current_address_id != permanent_address_id", + "query_toks": [ + "SELECT", + "first_name", + "FROM", + "Students", + "WHERE", + "current_address_id", + "!", + "=", + "permanent_address_id" + ], + "query_toks_no_value": [ + "select", + "first_name", + "from", + "students", + "where", + "current_address_id", + "!", + "=", + "permanent_address_id" + ], + "question": "What is the first name of the student whose permanent address is different from his or her current one?", + "question_toks": [ + "What", + "is", + "the", + "first", + "name", + "of", + "the", + "student", + "whose", + "permanent", + "address", + "is", + "different", + "from", + "his", + "or", + "her", + "current", + "one", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 6 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 35, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 7, + [ + 0, + [ + 0, + 33, + false + ], + null + ], + [ + 0, + 34, + false + ], + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "student_transcripts_tracking", + "query": "SELECT T1.address_id , T1.line_1 , T1.line_2 FROM Addresses AS T1 JOIN Students AS T2 ON T1.address_id = T2.current_address_id GROUP BY T1.address_id ORDER BY count(*) DESC LIMIT 1", + "query_toks": [ + "SELECT", + "T1.address_id", + ",", + "T1.line_1", + ",", + "T1.line_2", + "FROM", + "Addresses", + "AS", + "T1", + "JOIN", + "Students", + "AS", + "T2", + "ON", + "T1.address_id", + "=", + "T2.current_address_id", + "GROUP", + "BY", + "T1.address_id", + "ORDER", + "BY", + "count", + "(", + "*", + ")", + "DESC", + "LIMIT", + "1" + ], + "query_toks_no_value": [ + "select", + "t1", + ".", + "address_id", + ",", + "t1", + ".", + "line_1", + ",", + "t1", + ".", + "line_2", + "from", + "addresses", + "as", + "t1", + "join", + "students", + "as", + "t2", + "on", + "t1", + ".", + "address_id", + "=", + "t2", + ".", + "current_address_id", + "group", + "by", + "t1", + ".", + "address_id", + "order", + "by", + "count", + "(", + "*", + ")", + "desc", + "limit", + "value" + ], + "question": "Which address holds the most number of students currently? List the address id and all lines.", + "question_toks": [ + "Which", + "address", + "holds", + "the", + "most", + "number", + "of", + "students", + "currently", + "?", + "List", + "the", + "address", + "id", + "and", + "all", + "lines", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ], + [ + "table_unit", + 6 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 1, + false + ], + null + ], + [ + 0, + 33, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 1, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 2, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 3, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 1, + false + ] + ], + "having": [], + "orderBy": [ + "desc", + [ + [ + 0, + [ + 3, + 0, + false + ], + null + ] + ] + ], + "limit": 1, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "student_transcripts_tracking", + "query": "SELECT T1.address_id , T1.line_1 , T1.line_2 FROM Addresses AS T1 JOIN Students AS T2 ON T1.address_id = T2.current_address_id GROUP BY T1.address_id ORDER BY count(*) DESC LIMIT 1", + "query_toks": [ + "SELECT", + "T1.address_id", + ",", + "T1.line_1", + ",", + "T1.line_2", + "FROM", + "Addresses", + "AS", + "T1", + "JOIN", + "Students", + "AS", + "T2", + "ON", + "T1.address_id", + "=", + "T2.current_address_id", + "GROUP", + "BY", + "T1.address_id", + "ORDER", + "BY", + "count", + "(", + "*", + ")", + "DESC", + "LIMIT", + "1" + ], + "query_toks_no_value": [ + "select", + "t1", + ".", + "address_id", + ",", + "t1", + ".", + "line_1", + ",", + "t1", + ".", + "line_2", + "from", + "addresses", + "as", + "t1", + "join", + "students", + "as", + "t2", + "on", + "t1", + ".", + "address_id", + "=", + "t2", + ".", + "current_address_id", + "group", + "by", + "t1", + ".", + "address_id", + "order", + "by", + "count", + "(", + "*", + ")", + "desc", + "limit", + "value" + ], + "question": "What is the id, line 1, and line 2 of the address with the most students?", + "question_toks": [ + "What", + "is", + "the", + "id", + ",", + "line", + "1", + ",", + "and", + "line", + "2", + "of", + "the", + "address", + "with", + "the", + "most", + "students", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ], + [ + "table_unit", + 6 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 1, + false + ], + null + ], + [ + 0, + 33, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 1, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 2, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 3, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 1, + false + ] + ], + "having": [], + "orderBy": [ + "desc", + [ + [ + 0, + [ + 3, + 0, + false + ], + null + ] + ] + ], + "limit": 1, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "student_transcripts_tracking", + "query": "SELECT avg(transcript_date) FROM Transcripts", + "query_toks": [ + "SELECT", + "avg", + "(", + "transcript_date", + ")", + "FROM", + "Transcripts" + ], + "query_toks_no_value": [ + "select", + "avg", + "(", + "transcript_date", + ")", + "from", + "transcripts" + ], + "question": "On average, when were the transcripts printed?", + "question_toks": [ + "On", + "average", + ",", + "when", + "were", + "the", + "transcripts", + "printed", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 9 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 5, + [ + 0, + [ + 0, + 53, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "student_transcripts_tracking", + "query": "SELECT avg(transcript_date) FROM Transcripts", + "query_toks": [ + "SELECT", + "avg", + "(", + "transcript_date", + ")", + "FROM", + "Transcripts" + ], + "query_toks_no_value": [ + "select", + "avg", + "(", + "transcript_date", + ")", + "from", + "transcripts" + ], + "question": "What is the average transcript date?", + "question_toks": [ + "What", + "is", + "the", + "average", + "transcript", + "date", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 9 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 5, + [ + 0, + [ + 0, + 53, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "student_transcripts_tracking", + "query": "SELECT transcript_date , other_details FROM Transcripts ORDER BY transcript_date ASC LIMIT 1", + "query_toks": [ + "SELECT", + "transcript_date", + ",", + "other_details", + "FROM", + "Transcripts", + "ORDER", + "BY", + "transcript_date", + "ASC", + "LIMIT", + "1" + ], + "query_toks_no_value": [ + "select", + "transcript_date", + ",", + "other_details", + "from", + "transcripts", + "order", + "by", + "transcript_date", + "asc", + "limit", + "value" + ], + "question": "When is the first transcript released? List the date and details.", + "question_toks": [ + "When", + "is", + "the", + "first", + "transcript", + "released", + "?", + "List", + "the", + "date", + "and", + "details", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 9 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 53, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 54, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [ + "asc", + [ + [ + 0, + [ + 0, + 53, + false + ], + null + ] + ] + ], + "limit": 1, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "student_transcripts_tracking", + "query": "SELECT transcript_date , other_details FROM Transcripts ORDER BY transcript_date ASC LIMIT 1", + "query_toks": [ + "SELECT", + "transcript_date", + ",", + "other_details", + "FROM", + "Transcripts", + "ORDER", + "BY", + "transcript_date", + "ASC", + "LIMIT", + "1" + ], + "query_toks_no_value": [ + "select", + "transcript_date", + ",", + "other_details", + "from", + "transcripts", + "order", + "by", + "transcript_date", + "asc", + "limit", + "value" + ], + "question": "What is the earliest date of a transcript release, and what details can you tell me?", + "question_toks": [ + "What", + "is", + "the", + "earliest", + "date", + "of", + "a", + "transcript", + "release", + ",", + "and", + "what", + "details", + "can", + "you", + "tell", + "me", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 9 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 53, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 54, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [ + "asc", + [ + [ + 0, + [ + 0, + 53, + false + ], + null + ] + ] + ], + "limit": 1, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "student_transcripts_tracking", + "query": "SELECT count(*) FROM Transcripts", + "query_toks": [ + "SELECT", + "count", + "(", + "*", + ")", + "FROM", + "Transcripts" + ], + "query_toks_no_value": [ + "select", + "count", + "(", + "*", + ")", + "from", + "transcripts" + ], + "question": "How many transcripts are released?", + "question_toks": [ + "How", + "many", + "transcripts", + "are", + "released", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 9 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 3, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "student_transcripts_tracking", + "query": "SELECT count(*) FROM Transcripts", + "query_toks": [ + "SELECT", + "count", + "(", + "*", + ")", + "FROM", + "Transcripts" + ], + "query_toks_no_value": [ + "select", + "count", + "(", + "*", + ")", + "from", + "transcripts" + ], + "question": "How many transcripts are listed?", + "question_toks": [ + "How", + "many", + "transcripts", + "are", + "listed", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 9 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 3, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "student_transcripts_tracking", + "query": "SELECT transcript_date FROM Transcripts ORDER BY transcript_date DESC LIMIT 1", + "query_toks": [ + "SELECT", + "transcript_date", + "FROM", + "Transcripts", + "ORDER", + "BY", + "transcript_date", + "DESC", + "LIMIT", + "1" + ], + "query_toks_no_value": [ + "select", + "transcript_date", + "from", + "transcripts", + "order", + "by", + "transcript_date", + "desc", + "limit", + "value" + ], + "question": "What is the last transcript release date?", + "question_toks": [ + "What", + "is", + "the", + "last", + "transcript", + "release", + "date", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 9 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 53, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [ + "desc", + [ + [ + 0, + [ + 0, + 53, + false + ], + null + ] + ] + ], + "limit": 1, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "student_transcripts_tracking", + "query": "SELECT transcript_date FROM Transcripts ORDER BY transcript_date DESC LIMIT 1", + "query_toks": [ + "SELECT", + "transcript_date", + "FROM", + "Transcripts", + "ORDER", + "BY", + "transcript_date", + "DESC", + "LIMIT", + "1" + ], + "query_toks_no_value": [ + "select", + "transcript_date", + "from", + "transcripts", + "order", + "by", + "transcript_date", + "desc", + "limit", + "value" + ], + "question": "When was the last transcript released?", + "question_toks": [ + "When", + "was", + "the", + "last", + "transcript", + "released", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 9 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 53, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [ + "desc", + [ + [ + 0, + [ + 0, + 53, + false + ], + null + ] + ] + ], + "limit": 1, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "student_transcripts_tracking", + "query": "SELECT count(*) , student_course_id FROM Transcript_Contents GROUP BY student_course_id ORDER BY count(*) DESC LIMIT 1", + "query_toks": [ + "SELECT", + "count", + "(", + "*", + ")", + ",", + "student_course_id", + "FROM", + "Transcript_Contents", + "GROUP", + "BY", + "student_course_id", + "ORDER", + "BY", + "count", + "(", + "*", + ")", + "DESC", + "LIMIT", + "1" + ], + "query_toks_no_value": [ + "select", + "count", + "(", + "*", + ")", + ",", + "student_course_id", + "from", + "transcript_contents", + "group", + "by", + "student_course_id", + "order", + "by", + "count", + "(", + "*", + ")", + "desc", + "limit", + "value" + ], + "question": "How many times at most can a course enrollment result show in different transcripts? Also show the course enrollment id.", + "question_toks": [ + "How", + "many", + "times", + "at", + "most", + "can", + "a", + "course", + "enrollment", + "result", + "show", + "in", + "different", + "transcripts", + "?", + "Also", + "show", + "the", + "course", + "enrollment", + "id", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 10 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 3, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 55, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 55, + false + ] + ], + "having": [], + "orderBy": [ + "desc", + [ + [ + 0, + [ + 3, + 0, + false + ], + null + ] + ] + ], + "limit": 1, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "student_transcripts_tracking", + "query": "SELECT count(*) , student_course_id FROM Transcript_Contents GROUP BY student_course_id ORDER BY count(*) DESC LIMIT 1", + "query_toks": [ + "SELECT", + "count", + "(", + "*", + ")", + ",", + "student_course_id", + "FROM", + "Transcript_Contents", + "GROUP", + "BY", + "student_course_id", + "ORDER", + "BY", + "count", + "(", + "*", + ")", + "DESC", + "LIMIT", + "1" + ], + "query_toks_no_value": [ + "select", + "count", + "(", + "*", + ")", + ",", + "student_course_id", + "from", + "transcript_contents", + "group", + "by", + "student_course_id", + "order", + "by", + "count", + "(", + "*", + ")", + "desc", + "limit", + "value" + ], + "question": "What is the maximum number of times that a course shows up in different transcripts and what is that course's enrollment id?", + "question_toks": [ + "What", + "is", + "the", + "maximum", + "number", + "of", + "times", + "that", + "a", + "course", + "shows", + "up", + "in", + "different", + "transcripts", + "and", + "what", + "is", + "that", + "course", + "'s", + "enrollment", + "id", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 10 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 3, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 55, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 55, + false + ] + ], + "having": [], + "orderBy": [ + "desc", + [ + [ + 0, + [ + 3, + 0, + false + ], + null + ] + ] + ], + "limit": 1, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "student_transcripts_tracking", + "query": "SELECT T2.transcript_date , T1.transcript_id FROM Transcript_Contents AS T1 JOIN Transcripts AS T2 ON T1.transcript_id = T2.transcript_id GROUP BY T1.transcript_id ORDER BY count(*) ASC LIMIT 1", + "query_toks": [ + "SELECT", + "T2.transcript_date", + ",", + "T1.transcript_id", + "FROM", + "Transcript_Contents", + "AS", + "T1", + "JOIN", + "Transcripts", + "AS", + "T2", + "ON", + "T1.transcript_id", + "=", + "T2.transcript_id", + "GROUP", + "BY", + "T1.transcript_id", + "ORDER", + "BY", + "count", + "(", + "*", + ")", + "ASC", + "LIMIT", + "1" + ], + "query_toks_no_value": [ + "select", + "t2", + ".", + "transcript_date", + ",", + "t1", + ".", + "transcript_id", + "from", + "transcript_contents", + "as", + "t1", + "join", + "transcripts", + "as", + "t2", + "on", + "t1", + ".", + "transcript_id", + "=", + "t2", + ".", + "transcript_id", + "group", + "by", + "t1", + ".", + "transcript_id", + "order", + "by", + "count", + "(", + "*", + ")", + "asc", + "limit", + "value" + ], + "question": "Show the date of the transcript which shows the least number of results, also list the id.", + "question_toks": [ + "Show", + "the", + "date", + "of", + "the", + "transcript", + "which", + "shows", + "the", + "least", + "number", + "of", + "results", + ",", + "also", + "list", + "the", + "id", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 10 + ], + [ + "table_unit", + 9 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 56, + false + ], + null + ], + [ + 0, + 52, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 53, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 56, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 56, + false + ] + ], + "having": [], + "orderBy": [ + "asc", + [ + [ + 0, + [ + 3, + 0, + false + ], + null + ] + ] + ], + "limit": 1, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "student_transcripts_tracking", + "query": "SELECT T2.transcript_date , T1.transcript_id FROM Transcript_Contents AS T1 JOIN Transcripts AS T2 ON T1.transcript_id = T2.transcript_id GROUP BY T1.transcript_id ORDER BY count(*) ASC LIMIT 1", + "query_toks": [ + "SELECT", + "T2.transcript_date", + ",", + "T1.transcript_id", + "FROM", + "Transcript_Contents", + "AS", + "T1", + "JOIN", + "Transcripts", + "AS", + "T2", + "ON", + "T1.transcript_id", + "=", + "T2.transcript_id", + "GROUP", + "BY", + "T1.transcript_id", + "ORDER", + "BY", + "count", + "(", + "*", + ")", + "ASC", + "LIMIT", + "1" + ], + "query_toks_no_value": [ + "select", + "t2", + ".", + "transcript_date", + ",", + "t1", + ".", + "transcript_id", + "from", + "transcript_contents", + "as", + "t1", + "join", + "transcripts", + "as", + "t2", + "on", + "t1", + ".", + "transcript_id", + "=", + "t2", + ".", + "transcript_id", + "group", + "by", + "t1", + ".", + "transcript_id", + "order", + "by", + "count", + "(", + "*", + ")", + "asc", + "limit", + "value" + ], + "question": "What is the date and id of the transcript with the least number of results?", + "question_toks": [ + "What", + "is", + "the", + "date", + "and", + "id", + "of", + "the", + "transcript", + "with", + "the", + "least", + "number", + "of", + "results", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 10 + ], + [ + "table_unit", + 9 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 56, + false + ], + null + ], + [ + 0, + 52, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 53, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 56, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 56, + false + ] + ], + "having": [], + "orderBy": [ + "asc", + [ + [ + 0, + [ + 3, + 0, + false + ], + null + ] + ] + ], + "limit": 1, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "student_transcripts_tracking", + "query": "SELECT DISTINCT T2.semester_id FROM Degree_Programs AS T1 JOIN Student_Enrolment AS T2 ON T1.degree_program_id = T2.degree_program_id WHERE degree_summary_name = 'Master' INTERSECT SELECT DISTINCT T2.semester_id FROM Degree_Programs AS T1 JOIN Student_Enrolment AS T2 ON T1.degree_program_id = T2.degree_program_id WHERE degree_summary_name = 'Bachelor'", + "query_toks": [ + "SELECT", + "DISTINCT", + "T2.semester_id", + "FROM", + "Degree_Programs", + "AS", + "T1", + "JOIN", + "Student_Enrolment", + "AS", + "T2", + "ON", + "T1.degree_program_id", + "=", + "T2.degree_program_id", + "WHERE", + "degree_summary_name", + "=", + "'Master", + "'", + "INTERSECT", + "SELECT", + "DISTINCT", + "T2.semester_id", + "FROM", + "Degree_Programs", + "AS", + "T1", + "JOIN", + "Student_Enrolment", + "AS", + "T2", + "ON", + "T1.degree_program_id", + "=", + "T2.degree_program_id", + "WHERE", + "degree_summary_name", + "=", + "'Bachelor", + "'" + ], + "query_toks_no_value": [ + "select", + "distinct", + "t2", + ".", + "semester_id", + "from", + "degree_programs", + "as", + "t1", + "join", + "student_enrolment", + "as", + "t2", + "on", + "t1", + ".", + "degree_program_id", + "=", + "t2", + ".", + "degree_program_id", + "where", + "degree_summary_name", + "=", + "value", + "intersect", + "select", + "distinct", + "t2", + ".", + "semester_id", + "from", + "degree_programs", + "as", + "t1", + "join", + "student_enrolment", + "as", + "t2", + "on", + "t1", + ".", + "degree_program_id", + "=", + "t2", + ".", + "degree_program_id", + "where", + "degree_summary_name", + "=", + "value" + ], + "question": "Find the semester when both Master students and Bachelor students got enrolled in.", + "question_toks": [ + "Find", + "the", + "semester", + "when", + "both", + "Master", + "students", + "and", + "Bachelor", + "students", + "got", + "enrolled", + "in", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 3 + ], + [ + "table_unit", + 7 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 18, + false + ], + null + ], + [ + 0, + 45, + false + ], + null + ] + ] + }, + "select": [ + true, + [ + [ + 0, + [ + 0, + [ + 0, + 46, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 20, + false + ], + null + ], + "\"Master\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": { + "from": { + "table_units": [ + [ + "table_unit", + 3 + ], + [ + "table_unit", + 7 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 18, + false + ], + null + ], + [ + 0, + 45, + false + ], + null + ] + ] + }, + "select": [ + true, + [ + [ + 0, + [ + 0, + [ + 0, + 46, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 20, + false + ], + null + ], + "\"Bachelor\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + }, + "union": null, + "except": null + } + }, + { + "db_id": "student_transcripts_tracking", + "query": "SELECT DISTINCT T2.semester_id FROM Degree_Programs AS T1 JOIN Student_Enrolment AS T2 ON T1.degree_program_id = T2.degree_program_id WHERE degree_summary_name = 'Master' INTERSECT SELECT DISTINCT T2.semester_id FROM Degree_Programs AS T1 JOIN Student_Enrolment AS T2 ON T1.degree_program_id = T2.degree_program_id WHERE degree_summary_name = 'Bachelor'", + "query_toks": [ + "SELECT", + "DISTINCT", + "T2.semester_id", + "FROM", + "Degree_Programs", + "AS", + "T1", + "JOIN", + "Student_Enrolment", + "AS", + "T2", + "ON", + "T1.degree_program_id", + "=", + "T2.degree_program_id", + "WHERE", + "degree_summary_name", + "=", + "'Master", + "'", + "INTERSECT", + "SELECT", + "DISTINCT", + "T2.semester_id", + "FROM", + "Degree_Programs", + "AS", + "T1", + "JOIN", + "Student_Enrolment", + "AS", + "T2", + "ON", + "T1.degree_program_id", + "=", + "T2.degree_program_id", + "WHERE", + "degree_summary_name", + "=", + "'Bachelor", + "'" + ], + "query_toks_no_value": [ + "select", + "distinct", + "t2", + ".", + "semester_id", + "from", + "degree_programs", + "as", + "t1", + "join", + "student_enrolment", + "as", + "t2", + "on", + "t1", + ".", + "degree_program_id", + "=", + "t2", + ".", + "degree_program_id", + "where", + "degree_summary_name", + "=", + "value", + "intersect", + "select", + "distinct", + "t2", + ".", + "semester_id", + "from", + "degree_programs", + "as", + "t1", + "join", + "student_enrolment", + "as", + "t2", + "on", + "t1", + ".", + "degree_program_id", + "=", + "t2", + ".", + "degree_program_id", + "where", + "degree_summary_name", + "=", + "value" + ], + "question": "What is the id of the semester that had both Masters and Bachelors students enrolled?", + "question_toks": [ + "What", + "is", + "the", + "id", + "of", + "the", + "semester", + "that", + "had", + "both", + "Masters", + "and", + "Bachelors", + "students", + "enrolled", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 3 + ], + [ + "table_unit", + 7 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 18, + false + ], + null + ], + [ + 0, + 45, + false + ], + null + ] + ] + }, + "select": [ + true, + [ + [ + 0, + [ + 0, + [ + 0, + 46, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 20, + false + ], + null + ], + "\"Master\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": { + "from": { + "table_units": [ + [ + "table_unit", + 3 + ], + [ + "table_unit", + 7 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 18, + false + ], + null + ], + [ + 0, + 45, + false + ], + null + ] + ] + }, + "select": [ + true, + [ + [ + 0, + [ + 0, + [ + 0, + 46, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 20, + false + ], + null + ], + "\"Bachelor\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + }, + "union": null, + "except": null + } + }, + { + "db_id": "student_transcripts_tracking", + "query": "SELECT count(DISTINCT current_address_id) FROM Students", + "query_toks": [ + "SELECT", + "count", + "(", + "DISTINCT", + "current_address_id", + ")", + "FROM", + "Students" + ], + "query_toks_no_value": [ + "select", + "count", + "(", + "distinct", + "current_address_id", + ")", + "from", + "students" + ], + "question": "How many different addresses do the students currently live?", + "question_toks": [ + "How", + "many", + "different", + "addresses", + "do", + "the", + "students", + "currently", + "live", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 6 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 3, + [ + 0, + [ + 0, + 33, + true + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "student_transcripts_tracking", + "query": "SELECT count(DISTINCT current_address_id) FROM Students", + "query_toks": [ + "SELECT", + "count", + "(", + "DISTINCT", + "current_address_id", + ")", + "FROM", + "Students" + ], + "query_toks_no_value": [ + "select", + "count", + "(", + "distinct", + "current_address_id", + ")", + "from", + "students" + ], + "question": "What are the different addresses that have students living there?", + "question_toks": [ + "What", + "are", + "the", + "different", + "addresses", + "that", + "have", + "students", + "living", + "there", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 6 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 3, + [ + 0, + [ + 0, + 33, + true + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "student_transcripts_tracking", + "query": "SELECT other_student_details FROM Students ORDER BY other_student_details DESC", + "query_toks": [ + "SELECT", + "other_student_details", + "FROM", + "Students", + "ORDER", + "BY", + "other_student_details", + "DESC" + ], + "query_toks_no_value": [ + "select", + "other_student_details", + "from", + "students", + "order", + "by", + "other_student_details", + "desc" + ], + "question": "List all the student details in reversed lexicographical order.", + "question_toks": [ + "List", + "all", + "the", + "student", + "details", + "in", + "reversed", + "lexicographical", + "order", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 6 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 43, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [ + "desc", + [ + [ + 0, + [ + 0, + 43, + false + ], + null + ] + ] + ], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "student_transcripts_tracking", + "query": "SELECT other_student_details FROM Students ORDER BY other_student_details DESC", + "query_toks": [ + "SELECT", + "other_student_details", + "FROM", + "Students", + "ORDER", + "BY", + "other_student_details", + "DESC" + ], + "query_toks_no_value": [ + "select", + "other_student_details", + "from", + "students", + "order", + "by", + "other_student_details", + "desc" + ], + "question": "What other details can you tell me about students in reverse alphabetical order?", + "question_toks": [ + "What", + "other", + "details", + "can", + "you", + "tell", + "me", + "about", + "students", + "in", + "reverse", + "alphabetical", + "order", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 6 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 43, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [ + "desc", + [ + [ + 0, + [ + 0, + 43, + false + ], + null + ] + ] + ], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "student_transcripts_tracking", + "query": "SELECT section_description FROM Sections WHERE section_name = 'h'", + "query_toks": [ + "SELECT", + "section_description", + "FROM", + "Sections", + "WHERE", + "section_name", + "=", + "'h", + "'" + ], + "query_toks_no_value": [ + "select", + "section_description", + "from", + "sections", + "where", + "section_name", + "=", + "value" + ], + "question": "Describe the section h.", + "question_toks": [ + "Describe", + "the", + "section", + "h", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 4 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 26, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 25, + false + ], + null + ], + "\"h\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "student_transcripts_tracking", + "query": "SELECT section_description FROM Sections WHERE section_name = 'h'", + "query_toks": [ + "SELECT", + "section_description", + "FROM", + "Sections", + "WHERE", + "section_name", + "=", + "'h", + "'" + ], + "query_toks_no_value": [ + "select", + "section_description", + "from", + "sections", + "where", + "section_name", + "=", + "value" + ], + "question": "What is the description for the section named h?", + "question_toks": [ + "What", + "is", + "the", + "description", + "for", + "the", + "section", + "named", + "h", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 4 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 26, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 25, + false + ], + null + ], + "\"h\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "student_transcripts_tracking", + "query": "select t1.first_name from students as t1 join addresses as t2 on t1.permanent_address_id = t2.address_id where t2.country = 'haiti' or t1.cell_mobile_number = '09700166582'", + "query_toks": [ + "select", + "t1.first_name", + "from", + "students", + "as", + "t1", + "join", + "addresses", + "as", + "t2", + "on", + "t1.permanent_address_id", + "=", + "t2.address_id", + "where", + "t2.country", + "=", + "\"haiti\"", + "or", + "t1.cell_mobile_number", + "=", + "\"09700166582\"" + ], + "query_toks_no_value": [ + "select", + "t1", + ".", + "first_name", + "from", + "students", + "as", + "t1", + "join", + "addresses", + "as", + "t2", + "on", + "t1", + ".", + "permanent_address_id", + "=", + "t2", + ".", + "address_id", + "where", + "t2", + ".", + "country", + "=", + "value", + "or", + "t1", + ".", + "cell_mobile_number", + "=", + "value" + ], + "question": "Find the first name of the students who permanently live in the country Haiti or have the cell phone number 09700166582 .", + "question_toks": [ + "Find", + "the", + "first", + "name", + "of", + "the", + "students", + "who", + "permanently", + "live", + "in", + "the", + "country", + "Haiti", + "or", + "have", + "the", + "cell", + "phone", + "number", + "09700166582", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 6 + ], + [ + "table_unit", + 0 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 34, + false + ], + null + ], + [ + 0, + 1, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 35, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 8, + false + ], + null + ], + "\"haiti\"", + null + ], + "or", + [ + false, + 2, + [ + 0, + [ + 0, + 38, + false + ], + null + ], + "\"09700166582\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "student_transcripts_tracking", + "query": "select t1.first_name from students as t1 join addresses as t2 on t1.permanent_address_id = t2.address_id where t2.country = 'haiti' or t1.cell_mobile_number = '09700166582'", + "query_toks": [ + "select", + "t1.first_name", + "from", + "students", + "as", + "t1", + "join", + "addresses", + "as", + "t2", + "on", + "t1.permanent_address_id", + "=", + "t2.address_id", + "where", + "t2.country", + "=", + "\"haiti\"", + "or", + "t1.cell_mobile_number", + "=", + "\"09700166582\"" + ], + "query_toks_no_value": [ + "select", + "t1", + ".", + "first_name", + "from", + "students", + "as", + "t1", + "join", + "addresses", + "as", + "t2", + "on", + "t1", + ".", + "permanent_address_id", + "=", + "t2", + ".", + "address_id", + "where", + "t2", + ".", + "country", + "=", + "value", + "or", + "t1", + ".", + "cell_mobile_number", + "=", + "value" + ], + "question": "What are the first names of the students who live in Haiti permanently or have the cell phone number 09700166582 ?", + "question_toks": [ + "What", + "are", + "the", + "first", + "names", + "of", + "the", + "students", + "who", + "live", + "in", + "Haiti", + "permanently", + "or", + "have", + "the", + "cell", + "phone", + "number", + "09700166582", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 6 + ], + [ + "table_unit", + 0 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 34, + false + ], + null + ], + [ + 0, + 1, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 35, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 8, + false + ], + null + ], + "\"haiti\"", + null + ], + "or", + [ + false, + 2, + [ + 0, + [ + 0, + 38, + false + ], + null + ], + "\"09700166582\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "tvshow", + "query": "SELECT Title FROM Cartoon ORDER BY title", + "query_toks": [ + "SELECT", + "Title", + "FROM", + "Cartoon", + "ORDER", + "BY", + "title" + ], + "query_toks_no_value": [ + "select", + "title", + "from", + "cartoon", + "order", + "by", + "title" + ], + "question": "List the title of all cartoons in alphabetical order.", + "question_toks": [ + "List", + "the", + "title", + "of", + "all", + "cartoons", + "in", + "alphabetical", + "order", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 20, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [ + "asc", + [ + [ + 0, + [ + 0, + 20, + false + ], + null + ] + ] + ], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "tvshow", + "query": "SELECT Title FROM Cartoon ORDER BY title", + "query_toks": [ + "SELECT", + "Title", + "FROM", + "Cartoon", + "ORDER", + "BY", + "title" + ], + "query_toks_no_value": [ + "select", + "title", + "from", + "cartoon", + "order", + "by", + "title" + ], + "question": "What are the titles of the cartoons sorted alphabetically?", + "question_toks": [ + "What", + "are", + "the", + "titles", + "of", + "the", + "cartoons", + "sorted", + "alphabetically", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 20, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [ + "asc", + [ + [ + 0, + [ + 0, + 20, + false + ], + null + ] + ] + ], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "tvshow", + "query": "SELECT Title FROM Cartoon WHERE Directed_by = \"Ben Jones\";", + "query_toks": [ + "SELECT", + "Title", + "FROM", + "Cartoon", + "WHERE", + "Directed_by", + "=", + "``", + "Ben", + "Jones", + "''", + ";" + ], + "query_toks_no_value": [ + "select", + "title", + "from", + "cartoon", + "where", + "directed_by", + "=", + "value" + ], + "question": "List all cartoon directed by \"Ben Jones\".", + "question_toks": [ + "List", + "all", + "cartoon", + "directed", + "by", + "``", + "Ben", + "Jones", + "''", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 20, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 21, + false + ], + null + ], + "\"Ben Jones\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "tvshow", + "query": "SELECT Title FROM Cartoon WHERE Directed_by = \"Ben Jones\";", + "query_toks": [ + "SELECT", + "Title", + "FROM", + "Cartoon", + "WHERE", + "Directed_by", + "=", + "``", + "Ben", + "Jones", + "''", + ";" + ], + "query_toks_no_value": [ + "select", + "title", + "from", + "cartoon", + "where", + "directed_by", + "=", + "value" + ], + "question": "What are the names of all cartoons directed by Ben Jones?", + "question_toks": [ + "What", + "are", + "the", + "names", + "of", + "all", + "cartoons", + "directed", + "by", + "Ben", + "Jones", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 20, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 21, + false + ], + null + ], + "\"Ben Jones\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "tvshow", + "query": "SELECT count(*) FROM Cartoon WHERE Written_by = \"Joseph Kuhr\";", + "query_toks": [ + "SELECT", + "count", + "(", + "*", + ")", + "FROM", + "Cartoon", + "WHERE", + "Written_by", + "=", + "``", + "Joseph", + "Kuhr", + "''", + ";" + ], + "query_toks_no_value": [ + "select", + "count", + "(", + "*", + ")", + "from", + "cartoon", + "where", + "written_by", + "=", + "value" + ], + "question": "How many cartoons were written by \"Joseph Kuhr\"?", + "question_toks": [ + "How", + "many", + "cartoons", + "were", + "written", + "by", + "``", + "Joseph", + "Kuhr", + "''", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 3, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 22, + false + ], + null + ], + "\"Joseph Kuhr\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "tvshow", + "query": "SELECT count(*) FROM Cartoon WHERE Written_by = \"Joseph Kuhr\";", + "query_toks": [ + "SELECT", + "count", + "(", + "*", + ")", + "FROM", + "Cartoon", + "WHERE", + "Written_by", + "=", + "``", + "Joseph", + "Kuhr", + "''", + ";" + ], + "query_toks_no_value": [ + "select", + "count", + "(", + "*", + ")", + "from", + "cartoon", + "where", + "written_by", + "=", + "value" + ], + "question": "What is the number of cartoones written by Joseph Kuhr?", + "question_toks": [ + "What", + "is", + "the", + "number", + "of", + "cartoones", + "written", + "by", + "Joseph", + "Kuhr", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 3, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 22, + false + ], + null + ], + "\"Joseph Kuhr\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "tvshow", + "query": "SELECT title , Directed_by FROM Cartoon ORDER BY Original_air_date", + "query_toks": [ + "SELECT", + "title", + ",", + "Directed_by", + "FROM", + "Cartoon", + "ORDER", + "BY", + "Original_air_date" + ], + "query_toks_no_value": [ + "select", + "title", + ",", + "directed_by", + "from", + "cartoon", + "order", + "by", + "original_air_date" + ], + "question": "list all cartoon titles and their directors ordered by their air date", + "question_toks": [ + "list", + "all", + "cartoon", + "titles", + "and", + "their", + "directors", + "ordered", + "by", + "their", + "air", + "date" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 20, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 21, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [ + "asc", + [ + [ + 0, + [ + 0, + 23, + false + ], + null + ] + ] + ], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "tvshow", + "query": "SELECT title , Directed_by FROM Cartoon ORDER BY Original_air_date", + "query_toks": [ + "SELECT", + "title", + ",", + "Directed_by", + "FROM", + "Cartoon", + "ORDER", + "BY", + "Original_air_date" + ], + "query_toks_no_value": [ + "select", + "title", + ",", + "directed_by", + "from", + "cartoon", + "order", + "by", + "original_air_date" + ], + "question": "What is the name and directors of all the cartoons that are ordered by air date?", + "question_toks": [ + "What", + "is", + "the", + "name", + "and", + "directors", + "of", + "all", + "the", + "cartoons", + "that", + "are", + "ordered", + "by", + "air", + "date", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 20, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 21, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [ + "asc", + [ + [ + 0, + [ + 0, + 23, + false + ], + null + ] + ] + ], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "tvshow", + "query": "SELECT Title FROM Cartoon WHERE Directed_by = \"Ben Jones\" OR Directed_by = \"Brandon Vietti\";", + "query_toks": [ + "SELECT", + "Title", + "FROM", + "Cartoon", + "WHERE", + "Directed_by", + "=", + "``", + "Ben", + "Jones", + "''", + "OR", + "Directed_by", + "=", + "``", + "Brandon", + "Vietti", + "''", + ";" + ], + "query_toks_no_value": [ + "select", + "title", + "from", + "cartoon", + "where", + "directed_by", + "=", + "value", + "or", + "directed_by", + "=", + "value" + ], + "question": "List the title of all cartoon directed by \"Ben Jones\" or \"Brandon Vietti\".", + "question_toks": [ + "List", + "the", + "title", + "of", + "all", + "cartoon", + "directed", + "by", + "``", + "Ben", + "Jones", + "''", + "or", + "``", + "Brandon", + "Vietti", + "''", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 20, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 21, + false + ], + null + ], + "\"Ben Jones\"", + null + ], + "or", + [ + false, + 2, + [ + 0, + [ + 0, + 21, + false + ], + null + ], + "\"Brandon Vietti\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "tvshow", + "query": "SELECT Title FROM Cartoon WHERE Directed_by = \"Ben Jones\" OR Directed_by = \"Brandon Vietti\";", + "query_toks": [ + "SELECT", + "Title", + "FROM", + "Cartoon", + "WHERE", + "Directed_by", + "=", + "``", + "Ben", + "Jones", + "''", + "OR", + "Directed_by", + "=", + "``", + "Brandon", + "Vietti", + "''", + ";" + ], + "query_toks_no_value": [ + "select", + "title", + "from", + "cartoon", + "where", + "directed_by", + "=", + "value", + "or", + "directed_by", + "=", + "value" + ], + "question": "What are the titles of all cartoons directed by Ben Jones or Brandon Vietti?", + "question_toks": [ + "What", + "are", + "the", + "titles", + "of", + "all", + "cartoons", + "directed", + "by", + "Ben", + "Jones", + "or", + "Brandon", + "Vietti", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 20, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 21, + false + ], + null + ], + "\"Ben Jones\"", + null + ], + "or", + [ + false, + 2, + [ + 0, + [ + 0, + 21, + false + ], + null + ], + "\"Brandon Vietti\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "tvshow", + "query": "SELECT Country , count(*) FROM TV_Channel GROUP BY Country ORDER BY count(*) DESC LIMIT 1;", + "query_toks": [ + "SELECT", + "Country", + ",", + "count", + "(", + "*", + ")", + "FROM", + "TV_Channel", + "GROUP", + "BY", + "Country", + "ORDER", + "BY", + "count", + "(", + "*", + ")", + "DESC", + "LIMIT", + "1", + ";" + ], + "query_toks_no_value": [ + "select", + "country", + ",", + "count", + "(", + "*", + ")", + "from", + "tv_channel", + "group", + "by", + "country", + "order", + "by", + "count", + "(", + "*", + ")", + "desc", + "limit", + "value" + ], + "question": "Which country has the most of TV Channels? List the country and number of TV Channels it has.", + "question_toks": [ + "Which", + "country", + "has", + "the", + "most", + "of", + "TV", + "Channels", + "?", + "List", + "the", + "country", + "and", + "number", + "of", + "TV", + "Channels", + "it", + "has", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 3, + false + ], + null + ] + ], + [ + 3, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 3, + false + ] + ], + "having": [], + "orderBy": [ + "desc", + [ + [ + 0, + [ + 3, + 0, + false + ], + null + ] + ] + ], + "limit": 1, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "tvshow", + "query": "SELECT Country , count(*) FROM TV_Channel GROUP BY Country ORDER BY count(*) DESC LIMIT 1;", + "query_toks": [ + "SELECT", + "Country", + ",", + "count", + "(", + "*", + ")", + "FROM", + "TV_Channel", + "GROUP", + "BY", + "Country", + "ORDER", + "BY", + "count", + "(", + "*", + ")", + "DESC", + "LIMIT", + "1", + ";" + ], + "query_toks_no_value": [ + "select", + "country", + ",", + "count", + "(", + "*", + ")", + "from", + "tv_channel", + "group", + "by", + "country", + "order", + "by", + "count", + "(", + "*", + ")", + "desc", + "limit", + "value" + ], + "question": "What is the country with the most number of TV Channels and how many does it have?", + "question_toks": [ + "What", + "is", + "the", + "country", + "with", + "the", + "most", + "number", + "of", + "TV", + "Channels", + "and", + "how", + "many", + "does", + "it", + "have", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 3, + false + ], + null + ] + ], + [ + 3, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 3, + false + ] + ], + "having": [], + "orderBy": [ + "desc", + [ + [ + 0, + [ + 3, + 0, + false + ], + null + ] + ] + ], + "limit": 1, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "tvshow", + "query": "SELECT count(DISTINCT series_name) , count(DISTINCT content) FROM TV_Channel;", + "query_toks": [ + "SELECT", + "count", + "(", + "DISTINCT", + "series_name", + ")", + ",", + "count", + "(", + "DISTINCT", + "content", + ")", + "FROM", + "TV_Channel", + ";" + ], + "query_toks_no_value": [ + "select", + "count", + "(", + "distinct", + "series_name", + ")", + ",", + "count", + "(", + "distinct", + "content", + ")", + "from", + "tv_channel" + ], + "question": "List the number of different series names and contents in the TV Channel table.", + "question_toks": [ + "List", + "the", + "number", + "of", + "different", + "series", + "names", + "and", + "contents", + "in", + "the", + "TV", + "Channel", + "table", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 3, + [ + 0, + [ + 0, + 2, + true + ], + null + ] + ], + [ + 3, + [ + 0, + [ + 0, + 5, + true + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "tvshow", + "query": "SELECT count(DISTINCT series_name) , count(DISTINCT content) FROM TV_Channel;", + "query_toks": [ + "SELECT", + "count", + "(", + "DISTINCT", + "series_name", + ")", + ",", + "count", + "(", + "DISTINCT", + "content", + ")", + "FROM", + "TV_Channel", + ";" + ], + "query_toks_no_value": [ + "select", + "count", + "(", + "distinct", + "series_name", + ")", + ",", + "count", + "(", + "distinct", + "content", + ")", + "from", + "tv_channel" + ], + "question": "How many different series and contents are listed in the TV Channel table?", + "question_toks": [ + "How", + "many", + "different", + "series", + "and", + "contents", + "are", + "listed", + "in", + "the", + "TV", + "Channel", + "table", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 3, + [ + 0, + [ + 0, + 2, + true + ], + null + ] + ], + [ + 3, + [ + 0, + [ + 0, + 5, + true + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "tvshow", + "query": "SELECT Content FROM TV_Channel WHERE series_name = \"Sky Radio\";", + "query_toks": [ + "SELECT", + "Content", + "FROM", + "TV_Channel", + "WHERE", + "series_name", + "=", + "``", + "Sky", + "Radio", + "''", + ";" + ], + "query_toks_no_value": [ + "select", + "content", + "from", + "tv_channel", + "where", + "series_name", + "=", + "value" + ], + "question": "What is the content of TV Channel with serial name \"Sky Radio\"?", + "question_toks": [ + "What", + "is", + "the", + "content", + "of", + "TV", + "Channel", + "with", + "serial", + "name", + "``", + "Sky", + "Radio", + "''", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 5, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 2, + false + ], + null + ], + "\"Sky Radio\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "tvshow", + "query": "SELECT Content FROM TV_Channel WHERE series_name = \"Sky Radio\";", + "query_toks": [ + "SELECT", + "Content", + "FROM", + "TV_Channel", + "WHERE", + "series_name", + "=", + "``", + "Sky", + "Radio", + "''", + ";" + ], + "query_toks_no_value": [ + "select", + "content", + "from", + "tv_channel", + "where", + "series_name", + "=", + "value" + ], + "question": "What is the content of the series Sky Radio?", + "question_toks": [ + "What", + "is", + "the", + "content", + "of", + "the", + "series", + "Sky", + "Radio", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 5, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 2, + false + ], + null + ], + "\"Sky Radio\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "tvshow", + "query": "SELECT Package_Option FROM TV_Channel WHERE series_name = \"Sky Radio\";", + "query_toks": [ + "SELECT", + "Package_Option", + "FROM", + "TV_Channel", + "WHERE", + "series_name", + "=", + "``", + "Sky", + "Radio", + "''", + ";" + ], + "query_toks_no_value": [ + "select", + "package_option", + "from", + "tv_channel", + "where", + "series_name", + "=", + "value" + ], + "question": "What is the Package Option of TV Channel with serial name \"Sky Radio\"?", + "question_toks": [ + "What", + "is", + "the", + "Package", + "Option", + "of", + "TV", + "Channel", + "with", + "serial", + "name", + "``", + "Sky", + "Radio", + "''", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 9, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 2, + false + ], + null + ], + "\"Sky Radio\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "tvshow", + "query": "SELECT Package_Option FROM TV_Channel WHERE series_name = \"Sky Radio\";", + "query_toks": [ + "SELECT", + "Package_Option", + "FROM", + "TV_Channel", + "WHERE", + "series_name", + "=", + "``", + "Sky", + "Radio", + "''", + ";" + ], + "query_toks_no_value": [ + "select", + "package_option", + "from", + "tv_channel", + "where", + "series_name", + "=", + "value" + ], + "question": "What are the Package Options of the TV Channels whose series names are Sky Radio?", + "question_toks": [ + "What", + "are", + "the", + "Package", + "Options", + "of", + "the", + "TV", + "Channels", + "whose", + "series", + "names", + "are", + "Sky", + "Radio", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 9, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 2, + false + ], + null + ], + "\"Sky Radio\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "tvshow", + "query": "SELECT count(*) FROM TV_Channel WHERE LANGUAGE = \"English\";", + "query_toks": [ + "SELECT", + "count", + "(", + "*", + ")", + "FROM", + "TV_Channel", + "WHERE", + "LANGUAGE", + "=", + "``", + "English", + "''", + ";" + ], + "query_toks_no_value": [ + "select", + "count", + "(", + "*", + ")", + "from", + "tv_channel", + "where", + "language", + "=", + "value" + ], + "question": "How many TV Channel using language English?", + "question_toks": [ + "How", + "many", + "TV", + "Channel", + "using", + "language", + "English", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 3, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 4, + false + ], + null + ], + "\"English\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "tvshow", + "query": "SELECT count(*) FROM TV_Channel WHERE LANGUAGE = \"English\";", + "query_toks": [ + "SELECT", + "count", + "(", + "*", + ")", + "FROM", + "TV_Channel", + "WHERE", + "LANGUAGE", + "=", + "``", + "English", + "''", + ";" + ], + "query_toks_no_value": [ + "select", + "count", + "(", + "*", + ")", + "from", + "tv_channel", + "where", + "language", + "=", + "value" + ], + "question": "How many TV Channels use the English language?", + "question_toks": [ + "How", + "many", + "TV", + "Channels", + "use", + "the", + "English", + "language", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 3, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 4, + false + ], + null + ], + "\"English\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "tvshow", + "query": "SELECT LANGUAGE , count(*) FROM TV_Channel GROUP BY LANGUAGE ORDER BY count(*) ASC LIMIT 1;", + "query_toks": [ + "SELECT", + "LANGUAGE", + ",", + "count", + "(", + "*", + ")", + "FROM", + "TV_Channel", + "GROUP", + "BY", + "LANGUAGE", + "ORDER", + "BY", + "count", + "(", + "*", + ")", + "ASC", + "LIMIT", + "1", + ";" + ], + "query_toks_no_value": [ + "select", + "language", + ",", + "count", + "(", + "*", + ")", + "from", + "tv_channel", + "group", + "by", + "language", + "order", + "by", + "count", + "(", + "*", + ")", + "asc", + "limit", + "value" + ], + "question": "List the language used least number of TV Channel. List language and number of TV Channel.", + "question_toks": [ + "List", + "the", + "language", + "used", + "least", + "number", + "of", + "TV", + "Channel", + ".", + "List", + "language", + "and", + "number", + "of", + "TV", + "Channel", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 4, + false + ], + null + ] + ], + [ + 3, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 4, + false + ] + ], + "having": [], + "orderBy": [ + "asc", + [ + [ + 0, + [ + 3, + 0, + false + ], + null + ] + ] + ], + "limit": 1, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "tvshow", + "query": "SELECT LANGUAGE , count(*) FROM TV_Channel GROUP BY LANGUAGE ORDER BY count(*) ASC LIMIT 1;", + "query_toks": [ + "SELECT", + "LANGUAGE", + ",", + "count", + "(", + "*", + ")", + "FROM", + "TV_Channel", + "GROUP", + "BY", + "LANGUAGE", + "ORDER", + "BY", + "count", + "(", + "*", + ")", + "ASC", + "LIMIT", + "1", + ";" + ], + "query_toks_no_value": [ + "select", + "language", + ",", + "count", + "(", + "*", + ")", + "from", + "tv_channel", + "group", + "by", + "language", + "order", + "by", + "count", + "(", + "*", + ")", + "asc", + "limit", + "value" + ], + "question": "What are the languages used by the least number of TV Channels and how many channels use it?", + "question_toks": [ + "What", + "are", + "the", + "languages", + "used", + "by", + "the", + "least", + "number", + "of", + "TV", + "Channels", + "and", + "how", + "many", + "channels", + "use", + "it", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 4, + false + ], + null + ] + ], + [ + 3, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 4, + false + ] + ], + "having": [], + "orderBy": [ + "asc", + [ + [ + 0, + [ + 3, + 0, + false + ], + null + ] + ] + ], + "limit": 1, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "tvshow", + "query": "SELECT LANGUAGE , count(*) FROM TV_Channel GROUP BY LANGUAGE", + "query_toks": [ + "SELECT", + "LANGUAGE", + ",", + "count", + "(", + "*", + ")", + "FROM", + "TV_Channel", + "GROUP", + "BY", + "LANGUAGE" + ], + "query_toks_no_value": [ + "select", + "language", + ",", + "count", + "(", + "*", + ")", + "from", + "tv_channel", + "group", + "by", + "language" + ], + "question": "List each language and the number of TV Channels using it.", + "question_toks": [ + "List", + "each", + "language", + "and", + "the", + "number", + "of", + "TV", + "Channels", + "using", + "it", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 4, + false + ], + null + ] + ], + [ + 3, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 4, + false + ] + ], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "tvshow", + "query": "SELECT LANGUAGE , count(*) FROM TV_Channel GROUP BY LANGUAGE", + "query_toks": [ + "SELECT", + "LANGUAGE", + ",", + "count", + "(", + "*", + ")", + "FROM", + "TV_Channel", + "GROUP", + "BY", + "LANGUAGE" + ], + "query_toks_no_value": [ + "select", + "language", + ",", + "count", + "(", + "*", + ")", + "from", + "tv_channel", + "group", + "by", + "language" + ], + "question": "For each language, list the number of TV Channels that use it.", + "question_toks": [ + "For", + "each", + "language", + ",", + "list", + "the", + "number", + "of", + "TV", + "Channels", + "that", + "use", + "it", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 4, + false + ], + null + ] + ], + [ + 3, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 4, + false + ] + ], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "tvshow", + "query": "SELECT T1.series_name FROM TV_Channel AS T1 JOIN Cartoon AS T2 ON T1.id = T2.Channel WHERE T2.Title = \"The Rise of the Blue Beetle!\";", + "query_toks": [ + "SELECT", + "T1.series_name", + "FROM", + "TV_Channel", + "AS", + "T1", + "JOIN", + "Cartoon", + "AS", + "T2", + "ON", + "T1.id", + "=", + "T2.Channel", + "WHERE", + "T2.Title", + "=", + "``", + "The", + "Rise", + "of", + "the", + "Blue", + "Beetle", + "!", + "``", + ";" + ], + "query_toks_no_value": [ + "select", + "t1", + ".", + "series_name", + "from", + "tv_channel", + "as", + "t1", + "join", + "cartoon", + "as", + "t2", + "on", + "t1", + ".", + "id", + "=", + "t2", + ".", + "channel", + "where", + "t2", + ".", + "title", + "=", + "value" + ], + "question": "What is the TV Channel that shows the cartoon \"The Rise of the Blue Beetle!\"? List the TV Channel's series name.", + "question_toks": [ + "What", + "is", + "the", + "TV", + "Channel", + "that", + "shows", + "the", + "cartoon", + "``", + "The", + "Rise", + "of", + "the", + "Blue", + "Beetle", + "!", + "''", + "?", + "List", + "the", + "TV", + "Channel", + "'s", + "series", + "name", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ], + [ + "table_unit", + 2 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 1, + false + ], + null + ], + [ + 0, + 25, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 2, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 20, + false + ], + null + ], + "\"The Rise of the Blue Beetle!\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "tvshow", + "query": "SELECT T1.series_name FROM TV_Channel AS T1 JOIN Cartoon AS T2 ON T1.id = T2.Channel WHERE T2.Title = \"The Rise of the Blue Beetle!\";", + "query_toks": [ + "SELECT", + "T1.series_name", + "FROM", + "TV_Channel", + "AS", + "T1", + "JOIN", + "Cartoon", + "AS", + "T2", + "ON", + "T1.id", + "=", + "T2.Channel", + "WHERE", + "T2.Title", + "=", + "``", + "The", + "Rise", + "of", + "the", + "Blue", + "Beetle", + "!", + "``", + ";" + ], + "query_toks_no_value": [ + "select", + "t1", + ".", + "series_name", + "from", + "tv_channel", + "as", + "t1", + "join", + "cartoon", + "as", + "t2", + "on", + "t1", + ".", + "id", + "=", + "t2", + ".", + "channel", + "where", + "t2", + ".", + "title", + "=", + "value" + ], + "question": "What is the series name of the TV Channel that shows the cartoon \"The Rise of the Blue Beetle\"?", + "question_toks": [ + "What", + "is", + "the", + "series", + "name", + "of", + "the", + "TV", + "Channel", + "that", + "shows", + "the", + "cartoon", + "``", + "The", + "Rise", + "of", + "the", + "Blue", + "Beetle", + "''", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ], + [ + "table_unit", + 2 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 1, + false + ], + null + ], + [ + 0, + 25, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 2, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 20, + false + ], + null + ], + "\"The Rise of the Blue Beetle!\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "tvshow", + "query": "SELECT T2.Title FROM TV_Channel AS T1 JOIN Cartoon AS T2 ON T1.id = T2.Channel WHERE T1.series_name = \"Sky Radio\";", + "query_toks": [ + "SELECT", + "T2.Title", + "FROM", + "TV_Channel", + "AS", + "T1", + "JOIN", + "Cartoon", + "AS", + "T2", + "ON", + "T1.id", + "=", + "T2.Channel", + "WHERE", + "T1.series_name", + "=", + "``", + "Sky", + "Radio", + "''", + ";" + ], + "query_toks_no_value": [ + "select", + "t2", + ".", + "title", + "from", + "tv_channel", + "as", + "t1", + "join", + "cartoon", + "as", + "t2", + "on", + "t1", + ".", + "id", + "=", + "t2", + ".", + "channel", + "where", + "t1", + ".", + "series_name", + "=", + "value" + ], + "question": "List the title of all Cartoons showed on TV Channel with series name \"Sky Radio\".", + "question_toks": [ + "List", + "the", + "title", + "of", + "all", + "Cartoons", + "showed", + "on", + "TV", + "Channel", + "with", + "series", + "name", + "``", + "Sky", + "Radio", + "''", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ], + [ + "table_unit", + 2 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 1, + false + ], + null + ], + [ + 0, + 25, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 20, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 2, + false + ], + null + ], + "\"Sky Radio\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "tvshow", + "query": "SELECT T2.Title FROM TV_Channel AS T1 JOIN Cartoon AS T2 ON T1.id = T2.Channel WHERE T1.series_name = \"Sky Radio\";", + "query_toks": [ + "SELECT", + "T2.Title", + "FROM", + "TV_Channel", + "AS", + "T1", + "JOIN", + "Cartoon", + "AS", + "T2", + "ON", + "T1.id", + "=", + "T2.Channel", + "WHERE", + "T1.series_name", + "=", + "``", + "Sky", + "Radio", + "''", + ";" + ], + "query_toks_no_value": [ + "select", + "t2", + ".", + "title", + "from", + "tv_channel", + "as", + "t1", + "join", + "cartoon", + "as", + "t2", + "on", + "t1", + ".", + "id", + "=", + "t2", + ".", + "channel", + "where", + "t1", + ".", + "series_name", + "=", + "value" + ], + "question": "What is the title of all the cartools that are on the TV Channel with the series name \"Sky Radio\"?", + "question_toks": [ + "What", + "is", + "the", + "title", + "of", + "all", + "the", + "cartools", + "that", + "are", + "on", + "the", + "TV", + "Channel", + "with", + "the", + "series", + "name", + "``", + "Sky", + "Radio", + "''", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ], + [ + "table_unit", + 2 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 1, + false + ], + null + ], + [ + 0, + 25, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 20, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 2, + false + ], + null + ], + "\"Sky Radio\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "tvshow", + "query": "SELECT Episode FROM TV_series ORDER BY rating", + "query_toks": [ + "SELECT", + "Episode", + "FROM", + "TV_series", + "ORDER", + "BY", + "rating" + ], + "query_toks_no_value": [ + "select", + "episode", + "from", + "tv_series", + "order", + "by", + "rating" + ], + "question": "List the Episode of all TV series sorted by rating.", + "question_toks": [ + "List", + "the", + "Episode", + "of", + "all", + "TV", + "series", + "sorted", + "by", + "rating", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 11, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [ + "asc", + [ + [ + 0, + [ + 0, + 13, + false + ], + null + ] + ] + ], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "tvshow", + "query": "SELECT Episode FROM TV_series ORDER BY rating", + "query_toks": [ + "SELECT", + "Episode", + "FROM", + "TV_series", + "ORDER", + "BY", + "rating" + ], + "query_toks_no_value": [ + "select", + "episode", + "from", + "tv_series", + "order", + "by", + "rating" + ], + "question": "What are all of the episodes ordered by ratings?", + "question_toks": [ + "What", + "are", + "all", + "of", + "the", + "episodes", + "ordered", + "by", + "ratings", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 11, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [ + "asc", + [ + [ + 0, + [ + 0, + 13, + false + ], + null + ] + ] + ], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "tvshow", + "query": "SELECT Episode , Rating FROM TV_series ORDER BY Rating DESC LIMIT 3;", + "query_toks": [ + "SELECT", + "Episode", + ",", + "Rating", + "FROM", + "TV_series", + "ORDER", + "BY", + "Rating", + "DESC", + "LIMIT", + "3", + ";" + ], + "query_toks_no_value": [ + "select", + "episode", + ",", + "rating", + "from", + "tv_series", + "order", + "by", + "rating", + "desc", + "limit", + "value" + ], + "question": "List top 3 highest Rating TV series. List the TV series's Episode and Rating.", + "question_toks": [ + "List", + "top", + "3", + "highest", + "Rating", + "TV", + "series", + ".", + "List", + "the", + "TV", + "series", + "'s", + "Episode", + "and", + "Rating", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 11, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 13, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [ + "desc", + [ + [ + 0, + [ + 0, + 13, + false + ], + null + ] + ] + ], + "limit": 3, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "tvshow", + "query": "SELECT Episode , Rating FROM TV_series ORDER BY Rating DESC LIMIT 3;", + "query_toks": [ + "SELECT", + "Episode", + ",", + "Rating", + "FROM", + "TV_series", + "ORDER", + "BY", + "Rating", + "DESC", + "LIMIT", + "3", + ";" + ], + "query_toks_no_value": [ + "select", + "episode", + ",", + "rating", + "from", + "tv_series", + "order", + "by", + "rating", + "desc", + "limit", + "value" + ], + "question": "What are 3 most highly rated episodes in the TV series table and what were those ratings?", + "question_toks": [ + "What", + "are", + "3", + "most", + "highly", + "rated", + "episodes", + "in", + "the", + "TV", + "series", + "table", + "and", + "what", + "were", + "those", + "ratings", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 11, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 13, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [ + "desc", + [ + [ + 0, + [ + 0, + 13, + false + ], + null + ] + ] + ], + "limit": 3, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "tvshow", + "query": "SELECT max(SHARE) , min(SHARE) FROM TV_series;", + "query_toks": [ + "SELECT", + "max", + "(", + "SHARE", + ")", + ",", + "min", + "(", + "SHARE", + ")", + "FROM", + "TV_series", + ";" + ], + "query_toks_no_value": [ + "select", + "max", + "(", + "share", + ")", + ",", + "min", + "(", + "share", + ")", + "from", + "tv_series" + ], + "question": "What is minimum and maximum share of TV series?", + "question_toks": [ + "What", + "is", + "minimum", + "and", + "maximum", + "share", + "of", + "TV", + "series", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 1, + [ + 0, + [ + 0, + 14, + false + ], + null + ] + ], + [ + 2, + [ + 0, + [ + 0, + 14, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "tvshow", + "query": "SELECT max(SHARE) , min(SHARE) FROM TV_series;", + "query_toks": [ + "SELECT", + "max", + "(", + "SHARE", + ")", + ",", + "min", + "(", + "SHARE", + ")", + "FROM", + "TV_series", + ";" + ], + "query_toks_no_value": [ + "select", + "max", + "(", + "share", + ")", + ",", + "min", + "(", + "share", + ")", + "from", + "tv_series" + ], + "question": "What is the maximum and minimum share for the TV series?", + "question_toks": [ + "What", + "is", + "the", + "maximum", + "and", + "minimum", + "share", + "for", + "the", + "TV", + "series", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 1, + [ + 0, + [ + 0, + 14, + false + ], + null + ] + ], + [ + 2, + [ + 0, + [ + 0, + 14, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "tvshow", + "query": "SELECT Air_Date FROM TV_series WHERE Episode = \"A Love of a Lifetime\";", + "query_toks": [ + "SELECT", + "Air_Date", + "FROM", + "TV_series", + "WHERE", + "Episode", + "=", + "``", + "A", + "Love", + "of", + "a", + "Lifetime", + "''", + ";" + ], + "query_toks_no_value": [ + "select", + "air_date", + "from", + "tv_series", + "where", + "episode", + "=", + "value" + ], + "question": "What is the air date of TV series with Episode \"A Love of a Lifetime\"?", + "question_toks": [ + "What", + "is", + "the", + "air", + "date", + "of", + "TV", + "series", + "with", + "Episode", + "``", + "A", + "Love", + "of", + "a", + "Lifetime", + "''", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 12, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 11, + false + ], + null + ], + "\"A Love of a Lifetime\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "tvshow", + "query": "SELECT Air_Date FROM TV_series WHERE Episode = \"A Love of a Lifetime\";", + "query_toks": [ + "SELECT", + "Air_Date", + "FROM", + "TV_series", + "WHERE", + "Episode", + "=", + "``", + "A", + "Love", + "of", + "a", + "Lifetime", + "''", + ";" + ], + "query_toks_no_value": [ + "select", + "air_date", + "from", + "tv_series", + "where", + "episode", + "=", + "value" + ], + "question": "When did the episode \"A Love of a Lifetime\" air?", + "question_toks": [ + "When", + "did", + "the", + "episode", + "``", + "A", + "Love", + "of", + "a", + "Lifetime", + "''", + "air", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 12, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 11, + false + ], + null + ], + "\"A Love of a Lifetime\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "tvshow", + "query": "SELECT Weekly_Rank FROM TV_series WHERE Episode = \"A Love of a Lifetime\";", + "query_toks": [ + "SELECT", + "Weekly_Rank", + "FROM", + "TV_series", + "WHERE", + "Episode", + "=", + "``", + "A", + "Love", + "of", + "a", + "Lifetime", + "''", + ";" + ], + "query_toks_no_value": [ + "select", + "weekly_rank", + "from", + "tv_series", + "where", + "episode", + "=", + "value" + ], + "question": "What is Weekly Rank of TV series with Episode \"A Love of a Lifetime\"?", + "question_toks": [ + "What", + "is", + "Weekly", + "Rank", + "of", + "TV", + "series", + "with", + "Episode", + "``", + "A", + "Love", + "of", + "a", + "Lifetime", + "''", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 17, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 11, + false + ], + null + ], + "\"A Love of a Lifetime\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "tvshow", + "query": "SELECT Weekly_Rank FROM TV_series WHERE Episode = \"A Love of a Lifetime\";", + "query_toks": [ + "SELECT", + "Weekly_Rank", + "FROM", + "TV_series", + "WHERE", + "Episode", + "=", + "``", + "A", + "Love", + "of", + "a", + "Lifetime", + "''", + ";" + ], + "query_toks_no_value": [ + "select", + "weekly_rank", + "from", + "tv_series", + "where", + "episode", + "=", + "value" + ], + "question": "What is the weekly rank for the episode \"A Love of a Lifetime\"?", + "question_toks": [ + "What", + "is", + "the", + "weekly", + "rank", + "for", + "the", + "episode", + "``", + "A", + "Love", + "of", + "a", + "Lifetime", + "''", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 17, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 11, + false + ], + null + ], + "\"A Love of a Lifetime\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "tvshow", + "query": "SELECT T1.series_name FROM TV_Channel AS T1 JOIN TV_series AS T2 ON T1.id = T2.Channel WHERE T2.Episode = \"A Love of a Lifetime\";", + "query_toks": [ + "SELECT", + "T1.series_name", + "FROM", + "TV_Channel", + "AS", + "T1", + "JOIN", + "TV_series", + "AS", + "T2", + "ON", + "T1.id", + "=", + "T2.Channel", + "WHERE", + "T2.Episode", + "=", + "``", + "A", + "Love", + "of", + "a", + "Lifetime", + "''", + ";" + ], + "query_toks_no_value": [ + "select", + "t1", + ".", + "series_name", + "from", + "tv_channel", + "as", + "t1", + "join", + "tv_series", + "as", + "t2", + "on", + "t1", + ".", + "id", + "=", + "t2", + ".", + "channel", + "where", + "t2", + ".", + "episode", + "=", + "value" + ], + "question": "What is the TV Channel of TV series with Episode \"A Love of a Lifetime\"? List the TV Channel's series name.", + "question_toks": [ + "What", + "is", + "the", + "TV", + "Channel", + "of", + "TV", + "series", + "with", + "Episode", + "``", + "A", + "Love", + "of", + "a", + "Lifetime", + "''", + "?", + "List", + "the", + "TV", + "Channel", + "'s", + "series", + "name", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ], + [ + "table_unit", + 1 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 1, + false + ], + null + ], + [ + 0, + 18, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 2, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 11, + false + ], + null + ], + "\"A Love of a Lifetime\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "tvshow", + "query": "SELECT T1.series_name FROM TV_Channel AS T1 JOIN TV_series AS T2 ON T1.id = T2.Channel WHERE T2.Episode = \"A Love of a Lifetime\";", + "query_toks": [ + "SELECT", + "T1.series_name", + "FROM", + "TV_Channel", + "AS", + "T1", + "JOIN", + "TV_series", + "AS", + "T2", + "ON", + "T1.id", + "=", + "T2.Channel", + "WHERE", + "T2.Episode", + "=", + "``", + "A", + "Love", + "of", + "a", + "Lifetime", + "''", + ";" + ], + "query_toks_no_value": [ + "select", + "t1", + ".", + "series_name", + "from", + "tv_channel", + "as", + "t1", + "join", + "tv_series", + "as", + "t2", + "on", + "t1", + ".", + "id", + "=", + "t2", + ".", + "channel", + "where", + "t2", + ".", + "episode", + "=", + "value" + ], + "question": "What is the name of the series that has the episode \"A Love of a Lifetime\"?", + "question_toks": [ + "What", + "is", + "the", + "name", + "of", + "the", + "series", + "that", + "has", + "the", + "episode", + "``", + "A", + "Love", + "of", + "a", + "Lifetime", + "''", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ], + [ + "table_unit", + 1 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 1, + false + ], + null + ], + [ + 0, + 18, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 2, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 11, + false + ], + null + ], + "\"A Love of a Lifetime\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "tvshow", + "query": "SELECT T2.Episode FROM TV_Channel AS T1 JOIN TV_series AS T2 ON T1.id = T2.Channel WHERE T1.series_name = \"Sky Radio\";", + "query_toks": [ + "SELECT", + "T2.Episode", + "FROM", + "TV_Channel", + "AS", + "T1", + "JOIN", + "TV_series", + "AS", + "T2", + "ON", + "T1.id", + "=", + "T2.Channel", + "WHERE", + "T1.series_name", + "=", + "``", + "Sky", + "Radio", + "''", + ";" + ], + "query_toks_no_value": [ + "select", + "t2", + ".", + "episode", + "from", + "tv_channel", + "as", + "t1", + "join", + "tv_series", + "as", + "t2", + "on", + "t1", + ".", + "id", + "=", + "t2", + ".", + "channel", + "where", + "t1", + ".", + "series_name", + "=", + "value" + ], + "question": "List the Episode of all TV series showed on TV Channel with series name \"Sky Radio\".", + "question_toks": [ + "List", + "the", + "Episode", + "of", + "all", + "TV", + "series", + "showed", + "on", + "TV", + "Channel", + "with", + "series", + "name", + "``", + "Sky", + "Radio", + "''", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ], + [ + "table_unit", + 1 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 1, + false + ], + null + ], + [ + 0, + 18, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 11, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 2, + false + ], + null + ], + "\"Sky Radio\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "tvshow", + "query": "SELECT T2.Episode FROM TV_Channel AS T1 JOIN TV_series AS T2 ON T1.id = T2.Channel WHERE T1.series_name = \"Sky Radio\";", + "query_toks": [ + "SELECT", + "T2.Episode", + "FROM", + "TV_Channel", + "AS", + "T1", + "JOIN", + "TV_series", + "AS", + "T2", + "ON", + "T1.id", + "=", + "T2.Channel", + "WHERE", + "T1.series_name", + "=", + "``", + "Sky", + "Radio", + "''", + ";" + ], + "query_toks_no_value": [ + "select", + "t2", + ".", + "episode", + "from", + "tv_channel", + "as", + "t1", + "join", + "tv_series", + "as", + "t2", + "on", + "t1", + ".", + "id", + "=", + "t2", + ".", + "channel", + "where", + "t1", + ".", + "series_name", + "=", + "value" + ], + "question": "What is the episode for the TV series named \"Sky Radio\"?", + "question_toks": [ + "What", + "is", + "the", + "episode", + "for", + "the", + "TV", + "series", + "named", + "``", + "Sky", + "Radio", + "''", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ], + [ + "table_unit", + 1 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 1, + false + ], + null + ], + [ + 0, + 18, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 11, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 2, + false + ], + null + ], + "\"Sky Radio\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "tvshow", + "query": "SELECT count(*) , Directed_by FROM cartoon GROUP BY Directed_by", + "query_toks": [ + "SELECT", + "count", + "(", + "*", + ")", + ",", + "Directed_by", + "FROM", + "cartoon", + "GROUP", + "BY", + "Directed_by" + ], + "query_toks_no_value": [ + "select", + "count", + "(", + "*", + ")", + ",", + "directed_by", + "from", + "cartoon", + "group", + "by", + "directed_by" + ], + "question": "Find the number of cartoons directed by each of the listed directors.", + "question_toks": [ + "Find", + "the", + "number", + "of", + "cartoons", + "directed", + "by", + "each", + "of", + "the", + "listed", + "directors", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 3, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 21, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 21, + false + ] + ], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "tvshow", + "query": "SELECT count(*) , Directed_by FROM cartoon GROUP BY Directed_by", + "query_toks": [ + "SELECT", + "count", + "(", + "*", + ")", + ",", + "Directed_by", + "FROM", + "cartoon", + "GROUP", + "BY", + "Directed_by" + ], + "query_toks_no_value": [ + "select", + "count", + "(", + "*", + ")", + ",", + "directed_by", + "from", + "cartoon", + "group", + "by", + "directed_by" + ], + "question": "How many cartoons did each director create?", + "question_toks": [ + "How", + "many", + "cartoons", + "did", + "each", + "director", + "create", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 3, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 21, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 21, + false + ] + ], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "tvshow", + "query": "select production_code , channel from cartoon order by original_air_date desc limit 1", + "query_toks": [ + "select", + "production_code", + ",", + "channel", + "from", + "cartoon", + "order", + "by", + "original_air_date", + "desc", + "limit", + "1" + ], + "query_toks_no_value": [ + "select", + "production_code", + ",", + "channel", + "from", + "cartoon", + "order", + "by", + "original_air_date", + "desc", + "limit", + "value" + ], + "question": "Find the production code and channel of the most recently aired cartoon .", + "question_toks": [ + "Find", + "the", + "production", + "code", + "and", + "channel", + "of", + "the", + "most", + "recently", + "aired", + "cartoon", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 24, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 25, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [ + "desc", + [ + [ + 0, + [ + 0, + 23, + false + ], + null + ] + ] + ], + "limit": 1, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "tvshow", + "query": "select production_code , channel from cartoon order by original_air_date desc limit 1", + "query_toks": [ + "select", + "production_code", + ",", + "channel", + "from", + "cartoon", + "order", + "by", + "original_air_date", + "desc", + "limit", + "1" + ], + "query_toks_no_value": [ + "select", + "production_code", + ",", + "channel", + "from", + "cartoon", + "order", + "by", + "original_air_date", + "desc", + "limit", + "value" + ], + "question": "What is the produdction code and channel of the most recent cartoon ?", + "question_toks": [ + "What", + "is", + "the", + "produdction", + "code", + "and", + "channel", + "of", + "the", + "most", + "recent", + "cartoon", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 24, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 25, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [ + "desc", + [ + [ + 0, + [ + 0, + 23, + false + ], + null + ] + ] + ], + "limit": 1, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "tvshow", + "query": "SELECT package_option , series_name FROM TV_Channel WHERE hight_definition_TV = \"yes\"", + "query_toks": [ + "SELECT", + "package_option", + ",", + "series_name", + "FROM", + "TV_Channel", + "WHERE", + "hight_definition_TV", + "=", + "``", + "yes", + "''" + ], + "query_toks_no_value": [ + "select", + "package_option", + ",", + "series_name", + "from", + "tv_channel", + "where", + "hight_definition_tv", + "=", + "value" + ], + "question": "Find the package choice and series name of the TV channel that has high definition TV.", + "question_toks": [ + "Find", + "the", + "package", + "choice", + "and", + "series", + "name", + "of", + "the", + "TV", + "channel", + "that", + "has", + "high", + "definition", + "TV", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 9, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 2, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 7, + false + ], + null + ], + "\"yes\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "tvshow", + "query": "SELECT package_option , series_name FROM TV_Channel WHERE hight_definition_TV = \"yes\"", + "query_toks": [ + "SELECT", + "package_option", + ",", + "series_name", + "FROM", + "TV_Channel", + "WHERE", + "hight_definition_TV", + "=", + "``", + "yes", + "''" + ], + "query_toks_no_value": [ + "select", + "package_option", + ",", + "series_name", + "from", + "tv_channel", + "where", + "hight_definition_tv", + "=", + "value" + ], + "question": "What are the package options and the name of the series for the TV Channel that supports high definition TV?", + "question_toks": [ + "What", + "are", + "the", + "package", + "options", + "and", + "the", + "name", + "of", + "the", + "series", + "for", + "the", + "TV", + "Channel", + "that", + "supports", + "high", + "definition", + "TV", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 9, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 2, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 7, + false + ], + null + ], + "\"yes\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "tvshow", + "query": "SELECT T1.country FROM TV_Channel AS T1 JOIN cartoon AS T2 ON T1.id = T2.Channel WHERE T2.written_by = 'Todd Casey'", + "query_toks": [ + "SELECT", + "T1.country", + "FROM", + "TV_Channel", + "AS", + "T1", + "JOIN", + "cartoon", + "AS", + "T2", + "ON", + "T1.id", + "=", + "T2.Channel", + "WHERE", + "T2.written_by", + "=", + "'Todd", + "Casey", + "'" + ], + "query_toks_no_value": [ + "select", + "t1", + ".", + "country", + "from", + "tv_channel", + "as", + "t1", + "join", + "cartoon", + "as", + "t2", + "on", + "t1", + ".", + "id", + "=", + "t2", + ".", + "channel", + "where", + "t2", + ".", + "written_by", + "=", + "value" + ], + "question": "which countries' tv channels are playing some cartoon written by Todd Casey?", + "question_toks": [ + "which", + "countries", + "'", + "tv", + "channels", + "are", + "playing", + "some", + "cartoon", + "written", + "by", + "Todd", + "Casey", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ], + [ + "table_unit", + 2 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 1, + false + ], + null + ], + [ + 0, + 25, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 3, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 22, + false + ], + null + ], + "\"Todd Casey\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "tvshow", + "query": "SELECT T1.country FROM TV_Channel AS T1 JOIN cartoon AS T2 ON T1.id = T2.Channel WHERE T2.written_by = 'Todd Casey'", + "query_toks": [ + "SELECT", + "T1.country", + "FROM", + "TV_Channel", + "AS", + "T1", + "JOIN", + "cartoon", + "AS", + "T2", + "ON", + "T1.id", + "=", + "T2.Channel", + "WHERE", + "T2.written_by", + "=", + "'Todd", + "Casey", + "'" + ], + "query_toks_no_value": [ + "select", + "t1", + ".", + "country", + "from", + "tv_channel", + "as", + "t1", + "join", + "cartoon", + "as", + "t2", + "on", + "t1", + ".", + "id", + "=", + "t2", + ".", + "channel", + "where", + "t2", + ".", + "written_by", + "=", + "value" + ], + "question": "What are the countries that have cartoons on TV that were written by Todd Casey?", + "question_toks": [ + "What", + "are", + "the", + "countries", + "that", + "have", + "cartoons", + "on", + "TV", + "that", + "were", + "written", + "by", + "Todd", + "Casey", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ], + [ + "table_unit", + 2 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 1, + false + ], + null + ], + [ + 0, + 25, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 3, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 22, + false + ], + null + ], + "\"Todd Casey\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "tvshow", + "query": "SELECT country FROM TV_Channel EXCEPT SELECT T1.country FROM TV_Channel AS T1 JOIN cartoon AS T2 ON T1.id = T2.Channel WHERE T2.written_by = 'Todd Casey'", + "query_toks": [ + "SELECT", + "country", + "FROM", + "TV_Channel", + "EXCEPT", + "SELECT", + "T1.country", + "FROM", + "TV_Channel", + "AS", + "T1", + "JOIN", + "cartoon", + "AS", + "T2", + "ON", + "T1.id", + "=", + "T2.Channel", + "WHERE", + "T2.written_by", + "=", + "'Todd", + "Casey", + "'" + ], + "query_toks_no_value": [ + "select", + "country", + "from", + "tv_channel", + "except", + "select", + "t1", + ".", + "country", + "from", + "tv_channel", + "as", + "t1", + "join", + "cartoon", + "as", + "t2", + "on", + "t1", + ".", + "id", + "=", + "t2", + ".", + "channel", + "where", + "t2", + ".", + "written_by", + "=", + "value" + ], + "question": "which countries' tv channels are not playing any cartoon written by Todd Casey?", + "question_toks": [ + "which", + "countries", + "'", + "tv", + "channels", + "are", + "not", + "playing", + "any", + "cartoon", + "written", + "by", + "Todd", + "Casey", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 3, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ], + [ + "table_unit", + 2 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 1, + false + ], + null + ], + [ + 0, + 25, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 3, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 22, + false + ], + null + ], + "\"Todd Casey\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + } + }, + { + "db_id": "tvshow", + "query": "SELECT country FROM TV_Channel EXCEPT SELECT T1.country FROM TV_Channel AS T1 JOIN cartoon AS T2 ON T1.id = T2.Channel WHERE T2.written_by = 'Todd Casey'", + "query_toks": [ + "SELECT", + "country", + "FROM", + "TV_Channel", + "EXCEPT", + "SELECT", + "T1.country", + "FROM", + "TV_Channel", + "AS", + "T1", + "JOIN", + "cartoon", + "AS", + "T2", + "ON", + "T1.id", + "=", + "T2.Channel", + "WHERE", + "T2.written_by", + "=", + "'Todd", + "Casey", + "'" + ], + "query_toks_no_value": [ + "select", + "country", + "from", + "tv_channel", + "except", + "select", + "t1", + ".", + "country", + "from", + "tv_channel", + "as", + "t1", + "join", + "cartoon", + "as", + "t2", + "on", + "t1", + ".", + "id", + "=", + "t2", + ".", + "channel", + "where", + "t2", + ".", + "written_by", + "=", + "value" + ], + "question": "What are the countries that are not playing cartoons written by Todd Casey?", + "question_toks": [ + "What", + "are", + "the", + "countries", + "that", + "are", + "not", + "playing", + "cartoons", + "written", + "by", + "Todd", + "Casey", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 3, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ], + [ + "table_unit", + 2 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 1, + false + ], + null + ], + [ + 0, + 25, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 3, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 22, + false + ], + null + ], + "\"Todd Casey\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + } + }, + { + "db_id": "tvshow", + "query": "SELECT T1.series_name , T1.country FROM TV_Channel AS T1 JOIN cartoon AS T2 ON T1.id = T2.Channel WHERE T2.directed_by = 'Michael Chang' INTERSECT SELECT T1.series_name , T1.country FROM TV_Channel AS T1 JOIN cartoon AS T2 ON T1.id = T2.Channel WHERE T2.directed_by = 'Ben Jones'", + "query_toks": [ + "SELECT", + "T1.series_name", + ",", + "T1.country", + "FROM", + "TV_Channel", + "AS", + "T1", + "JOIN", + "cartoon", + "AS", + "T2", + "ON", + "T1.id", + "=", + "T2.Channel", + "WHERE", + "T2.directed_by", + "=", + "'Michael", + "Chang", + "'", + "INTERSECT", + "SELECT", + "T1.series_name", + ",", + "T1.country", + "FROM", + "TV_Channel", + "AS", + "T1", + "JOIN", + "cartoon", + "AS", + "T2", + "ON", + "T1.id", + "=", + "T2.Channel", + "WHERE", + "T2.directed_by", + "=", + "'Ben", + "Jones", + "'" + ], + "query_toks_no_value": [ + "select", + "t1", + ".", + "series_name", + ",", + "t1", + ".", + "country", + "from", + "tv_channel", + "as", + "t1", + "join", + "cartoon", + "as", + "t2", + "on", + "t1", + ".", + "id", + "=", + "t2", + ".", + "channel", + "where", + "t2", + ".", + "directed_by", + "=", + "value", + "intersect", + "select", + "t1", + ".", + "series_name", + ",", + "t1", + ".", + "country", + "from", + "tv_channel", + "as", + "t1", + "join", + "cartoon", + "as", + "t2", + "on", + "t1", + ".", + "id", + "=", + "t2", + ".", + "channel", + "where", + "t2", + ".", + "directed_by", + "=", + "value" + ], + "question": "Find the series name and country of the tv channel that is playing some cartoons directed by Ben Jones and Michael Chang?", + "question_toks": [ + "Find", + "the", + "series", + "name", + "and", + "country", + "of", + "the", + "tv", + "channel", + "that", + "is", + "playing", + "some", + "cartoons", + "directed", + "by", + "Ben", + "Jones", + "and", + "Michael", + "Chang", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ], + [ + "table_unit", + 2 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 1, + false + ], + null + ], + [ + 0, + 25, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 2, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 3, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 21, + false + ], + null + ], + "\"Michael Chang\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ], + [ + "table_unit", + 2 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 1, + false + ], + null + ], + [ + 0, + 25, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 2, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 3, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 21, + false + ], + null + ], + "\"Ben Jones\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + }, + "union": null, + "except": null + } + }, + { + "db_id": "tvshow", + "query": "SELECT T1.series_name , T1.country FROM TV_Channel AS T1 JOIN cartoon AS T2 ON T1.id = T2.Channel WHERE T2.directed_by = 'Michael Chang' INTERSECT SELECT T1.series_name , T1.country FROM TV_Channel AS T1 JOIN cartoon AS T2 ON T1.id = T2.Channel WHERE T2.directed_by = 'Ben Jones'", + "query_toks": [ + "SELECT", + "T1.series_name", + ",", + "T1.country", + "FROM", + "TV_Channel", + "AS", + "T1", + "JOIN", + "cartoon", + "AS", + "T2", + "ON", + "T1.id", + "=", + "T2.Channel", + "WHERE", + "T2.directed_by", + "=", + "'Michael", + "Chang", + "'", + "INTERSECT", + "SELECT", + "T1.series_name", + ",", + "T1.country", + "FROM", + "TV_Channel", + "AS", + "T1", + "JOIN", + "cartoon", + "AS", + "T2", + "ON", + "T1.id", + "=", + "T2.Channel", + "WHERE", + "T2.directed_by", + "=", + "'Ben", + "Jones", + "'" + ], + "query_toks_no_value": [ + "select", + "t1", + ".", + "series_name", + ",", + "t1", + ".", + "country", + "from", + "tv_channel", + "as", + "t1", + "join", + "cartoon", + "as", + "t2", + "on", + "t1", + ".", + "id", + "=", + "t2", + ".", + "channel", + "where", + "t2", + ".", + "directed_by", + "=", + "value", + "intersect", + "select", + "t1", + ".", + "series_name", + ",", + "t1", + ".", + "country", + "from", + "tv_channel", + "as", + "t1", + "join", + "cartoon", + "as", + "t2", + "on", + "t1", + ".", + "id", + "=", + "t2", + ".", + "channel", + "where", + "t2", + ".", + "directed_by", + "=", + "value" + ], + "question": "What is the series name and country of all TV channels that are playing cartoons directed by Ben Jones and cartoons directed by Michael Chang?", + "question_toks": [ + "What", + "is", + "the", + "series", + "name", + "and", + "country", + "of", + "all", + "TV", + "channels", + "that", + "are", + "playing", + "cartoons", + "directed", + "by", + "Ben", + "Jones", + "and", + "cartoons", + "directed", + "by", + "Michael", + "Chang", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ], + [ + "table_unit", + 2 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 1, + false + ], + null + ], + [ + 0, + 25, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 2, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 3, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 21, + false + ], + null + ], + "\"Michael Chang\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ], + [ + "table_unit", + 2 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 1, + false + ], + null + ], + [ + 0, + 25, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 2, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 3, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 21, + false + ], + null + ], + "\"Ben Jones\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + }, + "union": null, + "except": null + } + }, + { + "db_id": "tvshow", + "query": "SELECT Pixel_aspect_ratio_PAR , country FROM tv_channel WHERE LANGUAGE != 'English'", + "query_toks": [ + "SELECT", + "Pixel_aspect_ratio_PAR", + ",", + "country", + "FROM", + "tv_channel", + "WHERE", + "LANGUAGE", + "!", + "=", + "'English", + "'" + ], + "query_toks_no_value": [ + "select", + "pixel_aspect_ratio_par", + ",", + "country", + "from", + "tv_channel", + "where", + "language", + "!", + "=", + "value" + ], + "question": "find the pixel aspect ratio and nation of the tv channels that do not use English.", + "question_toks": [ + "find", + "the", + "pixel", + "aspect", + "ratio", + "and", + "nation", + "of", + "the", + "tv", + "channels", + "that", + "do", + "not", + "use", + "English", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 6, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 3, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 7, + [ + 0, + [ + 0, + 4, + false + ], + null + ], + "\"English\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "tvshow", + "query": "SELECT Pixel_aspect_ratio_PAR , country FROM tv_channel WHERE LANGUAGE != 'English'", + "query_toks": [ + "SELECT", + "Pixel_aspect_ratio_PAR", + ",", + "country", + "FROM", + "tv_channel", + "WHERE", + "LANGUAGE", + "!", + "=", + "'English", + "'" + ], + "query_toks_no_value": [ + "select", + "pixel_aspect_ratio_par", + ",", + "country", + "from", + "tv_channel", + "where", + "language", + "!", + "=", + "value" + ], + "question": "What is the pixel aspect ratio and country of origin for all TV channels that do not use English?", + "question_toks": [ + "What", + "is", + "the", + "pixel", + "aspect", + "ratio", + "and", + "country", + "of", + "origin", + "for", + "all", + "TV", + "channels", + "that", + "do", + "not", + "use", + "English", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 6, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 3, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 7, + [ + 0, + [ + 0, + 4, + false + ], + null + ], + "\"English\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "tvshow", + "query": "SELECT id FROM tv_channel GROUP BY country HAVING count(*) > 2", + "query_toks": [ + "SELECT", + "id", + "FROM", + "tv_channel", + "GROUP", + "BY", + "country", + "HAVING", + "count", + "(", + "*", + ")", + ">", + "2" + ], + "query_toks_no_value": [ + "select", + "id", + "from", + "tv_channel", + "group", + "by", + "country", + "having", + "count", + "(", + "*", + ")", + ">", + "value" + ], + "question": "find id of the tv channels that from the countries where have more than two tv channels.", + "question_toks": [ + "find", + "id", + "of", + "the", + "tv", + "channels", + "that", + "from", + "the", + "countries", + "where", + "have", + "more", + "than", + "two", + "tv", + "channels", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 1, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 3, + false + ] + ], + "having": [ + [ + false, + 3, + [ + 0, + [ + 3, + 0, + false + ], + null + ], + 2.0, + null + ] + ], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "tvshow", + "query": "SELECT id FROM tv_channel GROUP BY country HAVING count(*) > 2", + "query_toks": [ + "SELECT", + "id", + "FROM", + "tv_channel", + "GROUP", + "BY", + "country", + "HAVING", + "count", + "(", + "*", + ")", + ">", + "2" + ], + "query_toks_no_value": [ + "select", + "id", + "from", + "tv_channel", + "group", + "by", + "country", + "having", + "count", + "(", + "*", + ")", + ">", + "value" + ], + "question": "What are the ids of all tv channels that have more than 2 TV channels?", + "question_toks": [ + "What", + "are", + "the", + "ids", + "of", + "all", + "tv", + "channels", + "that", + "have", + "more", + "than", + "2", + "TV", + "channels", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 1, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 3, + false + ] + ], + "having": [ + [ + false, + 3, + [ + 0, + [ + 3, + 0, + false + ], + null + ], + 2.0, + null + ] + ], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "tvshow", + "query": "SELECT id FROM TV_Channel EXCEPT SELECT channel FROM cartoon WHERE directed_by = 'Ben Jones'", + "query_toks": [ + "SELECT", + "id", + "FROM", + "TV_Channel", + "EXCEPT", + "SELECT", + "channel", + "FROM", + "cartoon", + "WHERE", + "directed_by", + "=", + "'Ben", + "Jones", + "'" + ], + "query_toks_no_value": [ + "select", + "id", + "from", + "tv_channel", + "except", + "select", + "channel", + "from", + "cartoon", + "where", + "directed_by", + "=", + "value" + ], + "question": "find the id of tv channels that do not play any cartoon directed by Ben Jones.", + "question_toks": [ + "find", + "the", + "id", + "of", + "tv", + "channels", + "that", + "do", + "not", + "play", + "any", + "cartoon", + "directed", + "by", + "Ben", + "Jones", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 1, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 25, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 21, + false + ], + null + ], + "\"Ben Jones\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + } + }, + { + "db_id": "tvshow", + "query": "SELECT id FROM TV_Channel EXCEPT SELECT channel FROM cartoon WHERE directed_by = 'Ben Jones'", + "query_toks": [ + "SELECT", + "id", + "FROM", + "TV_Channel", + "EXCEPT", + "SELECT", + "channel", + "FROM", + "cartoon", + "WHERE", + "directed_by", + "=", + "'Ben", + "Jones", + "'" + ], + "query_toks_no_value": [ + "select", + "id", + "from", + "tv_channel", + "except", + "select", + "channel", + "from", + "cartoon", + "where", + "directed_by", + "=", + "value" + ], + "question": "What are the ids of the TV channels that do not have any cartoons directed by Ben Jones?", + "question_toks": [ + "What", + "are", + "the", + "ids", + "of", + "the", + "TV", + "channels", + "that", + "do", + "not", + "have", + "any", + "cartoons", + "directed", + "by", + "Ben", + "Jones", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 1, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 25, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 21, + false + ], + null + ], + "\"Ben Jones\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + } + }, + { + "db_id": "tvshow", + "query": "SELECT package_option FROM TV_Channel WHERE id NOT IN (SELECT channel FROM cartoon WHERE directed_by = 'Ben Jones')", + "query_toks": [ + "SELECT", + "package_option", + "FROM", + "TV_Channel", + "WHERE", + "id", + "NOT", + "IN", + "(", + "SELECT", + "channel", + "FROM", + "cartoon", + "WHERE", + "directed_by", + "=", + "'Ben", + "Jones", + "'", + ")" + ], + "query_toks_no_value": [ + "select", + "package_option", + "from", + "tv_channel", + "where", + "id", + "not", + "in", + "(", + "select", + "channel", + "from", + "cartoon", + "where", + "directed_by", + "=", + "value", + ")" + ], + "question": "find the package option of the tv channel that do not have any cartoon directed by Ben Jones.", + "question_toks": [ + "find", + "the", + "package", + "option", + "of", + "the", + "tv", + "channel", + "that", + "do", + "not", + "have", + "any", + "cartoon", + "directed", + "by", + "Ben", + "Jones", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 9, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + true, + 8, + [ + 0, + [ + 0, + 1, + false + ], + null + ], + { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 25, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 21, + false + ], + null + ], + "\"Ben Jones\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + }, + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "tvshow", + "query": "SELECT package_option FROM TV_Channel WHERE id NOT IN (SELECT channel FROM cartoon WHERE directed_by = 'Ben Jones')", + "query_toks": [ + "SELECT", + "package_option", + "FROM", + "TV_Channel", + "WHERE", + "id", + "NOT", + "IN", + "(", + "SELECT", + "channel", + "FROM", + "cartoon", + "WHERE", + "directed_by", + "=", + "'Ben", + "Jones", + "'", + ")" + ], + "query_toks_no_value": [ + "select", + "package_option", + "from", + "tv_channel", + "where", + "id", + "not", + "in", + "(", + "select", + "channel", + "from", + "cartoon", + "where", + "directed_by", + "=", + "value", + ")" + ], + "question": "What are the package options of all tv channels that are not playing any cartoons directed by Ben Jones?", + "question_toks": [ + "What", + "are", + "the", + "package", + "options", + "of", + "all", + "tv", + "channels", + "that", + "are", + "not", + "playing", + "any", + "cartoons", + "directed", + "by", + "Ben", + "Jones", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 9, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + true, + 8, + [ + 0, + [ + 0, + 1, + false + ], + null + ], + { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 25, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 21, + false + ], + null + ], + "\"Ben Jones\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + }, + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "poker_player", + "query": "SELECT count(*) FROM poker_player", + "query_toks": [ + "SELECT", + "count", + "(", + "*", + ")", + "FROM", + "poker_player" + ], + "query_toks_no_value": [ + "select", + "count", + "(", + "*", + ")", + "from", + "poker_player" + ], + "question": "How many poker players are there?", + "question_toks": [ + "How", + "many", + "poker", + "players", + "are", + "there", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 3, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "poker_player", + "query": "SELECT count(*) FROM poker_player", + "query_toks": [ + "SELECT", + "count", + "(", + "*", + ")", + "FROM", + "poker_player" + ], + "query_toks_no_value": [ + "select", + "count", + "(", + "*", + ")", + "from", + "poker_player" + ], + "question": "Count the number of poker players.", + "question_toks": [ + "Count", + "the", + "number", + "of", + "poker", + "players", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 3, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "poker_player", + "query": "SELECT Earnings FROM poker_player ORDER BY Earnings DESC", + "query_toks": [ + "SELECT", + "Earnings", + "FROM", + "poker_player", + "ORDER", + "BY", + "Earnings", + "DESC" + ], + "query_toks_no_value": [ + "select", + "earnings", + "from", + "poker_player", + "order", + "by", + "earnings", + "desc" + ], + "question": "List the earnings of poker players in descending order.", + "question_toks": [ + "List", + "the", + "earnings", + "of", + "poker", + "players", + "in", + "descending", + "order", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 6, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [ + "desc", + [ + [ + 0, + [ + 0, + 6, + false + ], + null + ] + ] + ], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "poker_player", + "query": "SELECT Earnings FROM poker_player ORDER BY Earnings DESC", + "query_toks": [ + "SELECT", + "Earnings", + "FROM", + "poker_player", + "ORDER", + "BY", + "Earnings", + "DESC" + ], + "query_toks_no_value": [ + "select", + "earnings", + "from", + "poker_player", + "order", + "by", + "earnings", + "desc" + ], + "question": "What are the earnings of poker players, ordered descending by value?", + "question_toks": [ + "What", + "are", + "the", + "earnings", + "of", + "poker", + "players", + ",", + "ordered", + "descending", + "by", + "value", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 6, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [ + "desc", + [ + [ + 0, + [ + 0, + 6, + false + ], + null + ] + ] + ], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "poker_player", + "query": "SELECT Final_Table_Made , Best_Finish FROM poker_player", + "query_toks": [ + "SELECT", + "Final_Table_Made", + ",", + "Best_Finish", + "FROM", + "poker_player" + ], + "query_toks_no_value": [ + "select", + "final_table_made", + ",", + "best_finish", + "from", + "poker_player" + ], + "question": "List the final tables made and the best finishes of poker players.", + "question_toks": [ + "List", + "the", + "final", + "tables", + "made", + "and", + "the", + "best", + "finishes", + "of", + "poker", + "players", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 3, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 4, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "poker_player", + "query": "SELECT Final_Table_Made , Best_Finish FROM poker_player", + "query_toks": [ + "SELECT", + "Final_Table_Made", + ",", + "Best_Finish", + "FROM", + "poker_player" + ], + "query_toks_no_value": [ + "select", + "final_table_made", + ",", + "best_finish", + "from", + "poker_player" + ], + "question": "What are the final tables made and best finishes for all poker players?", + "question_toks": [ + "What", + "are", + "the", + "final", + "tables", + "made", + "and", + "best", + "finishes", + "for", + "all", + "poker", + "players", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 3, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 4, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "poker_player", + "query": "SELECT avg(Earnings) FROM poker_player", + "query_toks": [ + "SELECT", + "avg", + "(", + "Earnings", + ")", + "FROM", + "poker_player" + ], + "query_toks_no_value": [ + "select", + "avg", + "(", + "earnings", + ")", + "from", + "poker_player" + ], + "question": "What is the average earnings of poker players?", + "question_toks": [ + "What", + "is", + "the", + "average", + "earnings", + "of", + "poker", + "players", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 5, + [ + 0, + [ + 0, + 6, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "poker_player", + "query": "SELECT avg(Earnings) FROM poker_player", + "query_toks": [ + "SELECT", + "avg", + "(", + "Earnings", + ")", + "FROM", + "poker_player" + ], + "query_toks_no_value": [ + "select", + "avg", + "(", + "earnings", + ")", + "from", + "poker_player" + ], + "question": "Return the average earnings across all poker players.", + "question_toks": [ + "Return", + "the", + "average", + "earnings", + "across", + "all", + "poker", + "players", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 5, + [ + 0, + [ + 0, + 6, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "poker_player", + "query": "SELECT Money_Rank FROM poker_player ORDER BY Earnings DESC LIMIT 1", + "query_toks": [ + "SELECT", + "Money_Rank", + "FROM", + "poker_player", + "ORDER", + "BY", + "Earnings", + "DESC", + "LIMIT", + "1" + ], + "query_toks_no_value": [ + "select", + "money_rank", + "from", + "poker_player", + "order", + "by", + "earnings", + "desc", + "limit", + "value" + ], + "question": "What is the money rank of the poker player with the highest earnings?", + "question_toks": [ + "What", + "is", + "the", + "money", + "rank", + "of", + "the", + "poker", + "player", + "with", + "the", + "highest", + "earnings", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 5, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [ + "desc", + [ + [ + 0, + [ + 0, + 6, + false + ], + null + ] + ] + ], + "limit": 1, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "poker_player", + "query": "SELECT Money_Rank FROM poker_player ORDER BY Earnings DESC LIMIT 1", + "query_toks": [ + "SELECT", + "Money_Rank", + "FROM", + "poker_player", + "ORDER", + "BY", + "Earnings", + "DESC", + "LIMIT", + "1" + ], + "query_toks_no_value": [ + "select", + "money_rank", + "from", + "poker_player", + "order", + "by", + "earnings", + "desc", + "limit", + "value" + ], + "question": "Return the money rank of the player with the greatest earnings.", + "question_toks": [ + "Return", + "the", + "money", + "rank", + "of", + "the", + "player", + "with", + "the", + "greatest", + "earnings", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 5, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [ + "desc", + [ + [ + 0, + [ + 0, + 6, + false + ], + null + ] + ] + ], + "limit": 1, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "poker_player", + "query": "SELECT max(Final_Table_Made) FROM poker_player WHERE Earnings < 200000", + "query_toks": [ + "SELECT", + "max", + "(", + "Final_Table_Made", + ")", + "FROM", + "poker_player", + "WHERE", + "Earnings", + "<", + "200000" + ], + "query_toks_no_value": [ + "select", + "max", + "(", + "final_table_made", + ")", + "from", + "poker_player", + "where", + "earnings", + "<", + "value" + ], + "question": "What is the maximum number of final tables made among poker players with earnings less than 200000?", + "question_toks": [ + "What", + "is", + "the", + "maximum", + "number", + "of", + "final", + "tables", + "made", + "among", + "poker", + "players", + "with", + "earnings", + "less", + "than", + "200000", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 1, + [ + 0, + [ + 0, + 3, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 4, + [ + 0, + [ + 0, + 6, + false + ], + null + ], + 200000.0, + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "poker_player", + "query": "SELECT max(Final_Table_Made) FROM poker_player WHERE Earnings < 200000", + "query_toks": [ + "SELECT", + "max", + "(", + "Final_Table_Made", + ")", + "FROM", + "poker_player", + "WHERE", + "Earnings", + "<", + "200000" + ], + "query_toks_no_value": [ + "select", + "max", + "(", + "final_table_made", + ")", + "from", + "poker_player", + "where", + "earnings", + "<", + "value" + ], + "question": "Return the maximum final tables made across all poker players who have earnings below 200000.", + "question_toks": [ + "Return", + "the", + "maximum", + "final", + "tables", + "made", + "across", + "all", + "poker", + "players", + "who", + "have", + "earnings", + "below", + "200000", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 1, + [ + 0, + [ + 0, + 3, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 4, + [ + 0, + [ + 0, + 6, + false + ], + null + ], + 200000.0, + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "poker_player", + "query": "SELECT T1.Name FROM people AS T1 JOIN poker_player AS T2 ON T1.People_ID = T2.People_ID", + "query_toks": [ + "SELECT", + "T1.Name", + "FROM", + "people", + "AS", + "T1", + "JOIN", + "poker_player", + "AS", + "T2", + "ON", + "T1.People_ID", + "=", + "T2.People_ID" + ], + "query_toks_no_value": [ + "select", + "t1", + ".", + "name", + "from", + "people", + "as", + "t1", + "join", + "poker_player", + "as", + "t2", + "on", + "t1", + ".", + "people_id", + "=", + "t2", + ".", + "people_id" + ], + "question": "What are the names of poker players?", + "question_toks": [ + "What", + "are", + "the", + "names", + "of", + "poker", + "players", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ], + [ + "table_unit", + 0 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 7, + false + ], + null + ], + [ + 0, + 2, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 9, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "poker_player", + "query": "SELECT T1.Name FROM people AS T1 JOIN poker_player AS T2 ON T1.People_ID = T2.People_ID", + "query_toks": [ + "SELECT", + "T1.Name", + "FROM", + "people", + "AS", + "T1", + "JOIN", + "poker_player", + "AS", + "T2", + "ON", + "T1.People_ID", + "=", + "T2.People_ID" + ], + "query_toks_no_value": [ + "select", + "t1", + ".", + "name", + "from", + "people", + "as", + "t1", + "join", + "poker_player", + "as", + "t2", + "on", + "t1", + ".", + "people_id", + "=", + "t2", + ".", + "people_id" + ], + "question": "Return the names of all the poker players.", + "question_toks": [ + "Return", + "the", + "names", + "of", + "all", + "the", + "poker", + "players", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ], + [ + "table_unit", + 0 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 7, + false + ], + null + ], + [ + 0, + 2, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 9, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "poker_player", + "query": "SELECT T1.Name FROM people AS T1 JOIN poker_player AS T2 ON T1.People_ID = T2.People_ID WHERE T2.Earnings > 300000", + "query_toks": [ + "SELECT", + "T1.Name", + "FROM", + "people", + "AS", + "T1", + "JOIN", + "poker_player", + "AS", + "T2", + "ON", + "T1.People_ID", + "=", + "T2.People_ID", + "WHERE", + "T2.Earnings", + ">", + "300000" + ], + "query_toks_no_value": [ + "select", + "t1", + ".", + "name", + "from", + "people", + "as", + "t1", + "join", + "poker_player", + "as", + "t2", + "on", + "t1", + ".", + "people_id", + "=", + "t2", + ".", + "people_id", + "where", + "t2", + ".", + "earnings", + ">", + "value" + ], + "question": "What are the names of poker players whose earnings is higher than 300000?", + "question_toks": [ + "What", + "are", + "the", + "names", + "of", + "poker", + "players", + "whose", + "earnings", + "is", + "higher", + "than", + "300000", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ], + [ + "table_unit", + 0 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 7, + false + ], + null + ], + [ + 0, + 2, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 9, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 3, + [ + 0, + [ + 0, + 6, + false + ], + null + ], + 300000.0, + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "poker_player", + "query": "SELECT T1.Name FROM people AS T1 JOIN poker_player AS T2 ON T1.People_ID = T2.People_ID WHERE T2.Earnings > 300000", + "query_toks": [ + "SELECT", + "T1.Name", + "FROM", + "people", + "AS", + "T1", + "JOIN", + "poker_player", + "AS", + "T2", + "ON", + "T1.People_ID", + "=", + "T2.People_ID", + "WHERE", + "T2.Earnings", + ">", + "300000" + ], + "query_toks_no_value": [ + "select", + "t1", + ".", + "name", + "from", + "people", + "as", + "t1", + "join", + "poker_player", + "as", + "t2", + "on", + "t1", + ".", + "people_id", + "=", + "t2", + ".", + "people_id", + "where", + "t2", + ".", + "earnings", + ">", + "value" + ], + "question": "Give the names of poker players who have earnings above 300000.", + "question_toks": [ + "Give", + "the", + "names", + "of", + "poker", + "players", + "who", + "have", + "earnings", + "above", + "300000", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ], + [ + "table_unit", + 0 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 7, + false + ], + null + ], + [ + 0, + 2, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 9, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 3, + [ + 0, + [ + 0, + 6, + false + ], + null + ], + 300000.0, + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "poker_player", + "query": "SELECT T1.Name FROM people AS T1 JOIN poker_player AS T2 ON T1.People_ID = T2.People_ID ORDER BY T2.Final_Table_Made", + "query_toks": [ + "SELECT", + "T1.Name", + "FROM", + "people", + "AS", + "T1", + "JOIN", + "poker_player", + "AS", + "T2", + "ON", + "T1.People_ID", + "=", + "T2.People_ID", + "ORDER", + "BY", + "T2.Final_Table_Made" + ], + "query_toks_no_value": [ + "select", + "t1", + ".", + "name", + "from", + "people", + "as", + "t1", + "join", + "poker_player", + "as", + "t2", + "on", + "t1", + ".", + "people_id", + "=", + "t2", + ".", + "people_id", + "order", + "by", + "t2", + ".", + "final_table_made" + ], + "question": "List the names of poker players ordered by the final tables made in ascending order.", + "question_toks": [ + "List", + "the", + "names", + "of", + "poker", + "players", + "ordered", + "by", + "the", + "final", + "tables", + "made", + "in", + "ascending", + "order", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ], + [ + "table_unit", + 0 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 7, + false + ], + null + ], + [ + 0, + 2, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 9, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [ + "asc", + [ + [ + 0, + [ + 0, + 3, + false + ], + null + ] + ] + ], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "poker_player", + "query": "SELECT T1.Name FROM people AS T1 JOIN poker_player AS T2 ON T1.People_ID = T2.People_ID ORDER BY T2.Final_Table_Made", + "query_toks": [ + "SELECT", + "T1.Name", + "FROM", + "people", + "AS", + "T1", + "JOIN", + "poker_player", + "AS", + "T2", + "ON", + "T1.People_ID", + "=", + "T2.People_ID", + "ORDER", + "BY", + "T2.Final_Table_Made" + ], + "query_toks_no_value": [ + "select", + "t1", + ".", + "name", + "from", + "people", + "as", + "t1", + "join", + "poker_player", + "as", + "t2", + "on", + "t1", + ".", + "people_id", + "=", + "t2", + ".", + "people_id", + "order", + "by", + "t2", + ".", + "final_table_made" + ], + "question": "What are the names of poker players, ordered ascending by the number of final tables they have made?", + "question_toks": [ + "What", + "are", + "the", + "names", + "of", + "poker", + "players", + ",", + "ordered", + "ascending", + "by", + "the", + "number", + "of", + "final", + "tables", + "they", + "have", + "made", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ], + [ + "table_unit", + 0 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 7, + false + ], + null + ], + [ + 0, + 2, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 9, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [ + "asc", + [ + [ + 0, + [ + 0, + 3, + false + ], + null + ] + ] + ], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "poker_player", + "query": "SELECT T1.Birth_Date FROM people AS T1 JOIN poker_player AS T2 ON T1.People_ID = T2.People_ID ORDER BY T2.Earnings ASC LIMIT 1", + "query_toks": [ + "SELECT", + "T1.Birth_Date", + "FROM", + "people", + "AS", + "T1", + "JOIN", + "poker_player", + "AS", + "T2", + "ON", + "T1.People_ID", + "=", + "T2.People_ID", + "ORDER", + "BY", + "T2.Earnings", + "ASC", + "LIMIT", + "1" + ], + "query_toks_no_value": [ + "select", + "t1", + ".", + "birth_date", + "from", + "people", + "as", + "t1", + "join", + "poker_player", + "as", + "t2", + "on", + "t1", + ".", + "people_id", + "=", + "t2", + ".", + "people_id", + "order", + "by", + "t2", + ".", + "earnings", + "asc", + "limit", + "value" + ], + "question": "What is the birth date of the poker player with the lowest earnings?", + "question_toks": [ + "What", + "is", + "the", + "birth", + "date", + "of", + "the", + "poker", + "player", + "with", + "the", + "lowest", + "earnings", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ], + [ + "table_unit", + 0 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 7, + false + ], + null + ], + [ + 0, + 2, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 10, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [ + "asc", + [ + [ + 0, + [ + 0, + 6, + false + ], + null + ] + ] + ], + "limit": 1, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "poker_player", + "query": "SELECT T1.Birth_Date FROM people AS T1 JOIN poker_player AS T2 ON T1.People_ID = T2.People_ID ORDER BY T2.Earnings ASC LIMIT 1", + "query_toks": [ + "SELECT", + "T1.Birth_Date", + "FROM", + "people", + "AS", + "T1", + "JOIN", + "poker_player", + "AS", + "T2", + "ON", + "T1.People_ID", + "=", + "T2.People_ID", + "ORDER", + "BY", + "T2.Earnings", + "ASC", + "LIMIT", + "1" + ], + "query_toks_no_value": [ + "select", + "t1", + ".", + "birth_date", + "from", + "people", + "as", + "t1", + "join", + "poker_player", + "as", + "t2", + "on", + "t1", + ".", + "people_id", + "=", + "t2", + ".", + "people_id", + "order", + "by", + "t2", + ".", + "earnings", + "asc", + "limit", + "value" + ], + "question": "Return the birth date of the poker player with the lowest earnings.", + "question_toks": [ + "Return", + "the", + "birth", + "date", + "of", + "the", + "poker", + "player", + "with", + "the", + "lowest", + "earnings", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ], + [ + "table_unit", + 0 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 7, + false + ], + null + ], + [ + 0, + 2, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 10, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [ + "asc", + [ + [ + 0, + [ + 0, + 6, + false + ], + null + ] + ] + ], + "limit": 1, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "poker_player", + "query": "SELECT T2.Money_Rank FROM people AS T1 JOIN poker_player AS T2 ON T1.People_ID = T2.People_ID ORDER BY T1.Height DESC LIMIT 1", + "query_toks": [ + "SELECT", + "T2.Money_Rank", + "FROM", + "people", + "AS", + "T1", + "JOIN", + "poker_player", + "AS", + "T2", + "ON", + "T1.People_ID", + "=", + "T2.People_ID", + "ORDER", + "BY", + "T1.Height", + "DESC", + "LIMIT", + "1" + ], + "query_toks_no_value": [ + "select", + "t2", + ".", + "money_rank", + "from", + "people", + "as", + "t1", + "join", + "poker_player", + "as", + "t2", + "on", + "t1", + ".", + "people_id", + "=", + "t2", + ".", + "people_id", + "order", + "by", + "t1", + ".", + "height", + "desc", + "limit", + "value" + ], + "question": "What is the money rank of the tallest poker player?", + "question_toks": [ + "What", + "is", + "the", + "money", + "rank", + "of", + "the", + "tallest", + "poker", + "player", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ], + [ + "table_unit", + 0 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 7, + false + ], + null + ], + [ + 0, + 2, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 5, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [ + "desc", + [ + [ + 0, + [ + 0, + 11, + false + ], + null + ] + ] + ], + "limit": 1, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "poker_player", + "query": "SELECT T2.Money_Rank FROM people AS T1 JOIN poker_player AS T2 ON T1.People_ID = T2.People_ID ORDER BY T1.Height DESC LIMIT 1", + "query_toks": [ + "SELECT", + "T2.Money_Rank", + "FROM", + "people", + "AS", + "T1", + "JOIN", + "poker_player", + "AS", + "T2", + "ON", + "T1.People_ID", + "=", + "T2.People_ID", + "ORDER", + "BY", + "T1.Height", + "DESC", + "LIMIT", + "1" + ], + "query_toks_no_value": [ + "select", + "t2", + ".", + "money_rank", + "from", + "people", + "as", + "t1", + "join", + "poker_player", + "as", + "t2", + "on", + "t1", + ".", + "people_id", + "=", + "t2", + ".", + "people_id", + "order", + "by", + "t1", + ".", + "height", + "desc", + "limit", + "value" + ], + "question": "Return the money rank of the poker player with the greatest height.", + "question_toks": [ + "Return", + "the", + "money", + "rank", + "of", + "the", + "poker", + "player", + "with", + "the", + "greatest", + "height", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ], + [ + "table_unit", + 0 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 7, + false + ], + null + ], + [ + 0, + 2, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 5, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [ + "desc", + [ + [ + 0, + [ + 0, + 11, + false + ], + null + ] + ] + ], + "limit": 1, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "poker_player", + "query": "SELECT avg(T2.Earnings) FROM people AS T1 JOIN poker_player AS T2 ON T1.People_ID = T2.People_ID WHERE T1.Height > 200", + "query_toks": [ + "SELECT", + "avg", + "(", + "T2.Earnings", + ")", + "FROM", + "people", + "AS", + "T1", + "JOIN", + "poker_player", + "AS", + "T2", + "ON", + "T1.People_ID", + "=", + "T2.People_ID", + "WHERE", + "T1.Height", + ">", + "200" + ], + "query_toks_no_value": [ + "select", + "avg", + "(", + "t2", + ".", + "earnings", + ")", + "from", + "people", + "as", + "t1", + "join", + "poker_player", + "as", + "t2", + "on", + "t1", + ".", + "people_id", + "=", + "t2", + ".", + "people_id", + "where", + "t1", + ".", + "height", + ">", + "value" + ], + "question": "What is the average earnings of poker players with height higher than 200?", + "question_toks": [ + "What", + "is", + "the", + "average", + "earnings", + "of", + "poker", + "players", + "with", + "height", + "higher", + "than", + "200", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ], + [ + "table_unit", + 0 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 7, + false + ], + null + ], + [ + 0, + 2, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 5, + [ + 0, + [ + 0, + 6, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 3, + [ + 0, + [ + 0, + 11, + false + ], + null + ], + 200.0, + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "poker_player", + "query": "SELECT avg(T2.Earnings) FROM people AS T1 JOIN poker_player AS T2 ON T1.People_ID = T2.People_ID WHERE T1.Height > 200", + "query_toks": [ + "SELECT", + "avg", + "(", + "T2.Earnings", + ")", + "FROM", + "people", + "AS", + "T1", + "JOIN", + "poker_player", + "AS", + "T2", + "ON", + "T1.People_ID", + "=", + "T2.People_ID", + "WHERE", + "T1.Height", + ">", + "200" + ], + "query_toks_no_value": [ + "select", + "avg", + "(", + "t2", + ".", + "earnings", + ")", + "from", + "people", + "as", + "t1", + "join", + "poker_player", + "as", + "t2", + "on", + "t1", + ".", + "people_id", + "=", + "t2", + ".", + "people_id", + "where", + "t1", + ".", + "height", + ">", + "value" + ], + "question": "Give average earnings of poker players who are taller than 200.", + "question_toks": [ + "Give", + "average", + "earnings", + "of", + "poker", + "players", + "who", + "are", + "taller", + "than", + "200", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ], + [ + "table_unit", + 0 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 7, + false + ], + null + ], + [ + 0, + 2, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 5, + [ + 0, + [ + 0, + 6, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 3, + [ + 0, + [ + 0, + 11, + false + ], + null + ], + 200.0, + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "poker_player", + "query": "SELECT T1.Name FROM people AS T1 JOIN poker_player AS T2 ON T1.People_ID = T2.People_ID ORDER BY T2.Earnings DESC", + "query_toks": [ + "SELECT", + "T1.Name", + "FROM", + "people", + "AS", + "T1", + "JOIN", + "poker_player", + "AS", + "T2", + "ON", + "T1.People_ID", + "=", + "T2.People_ID", + "ORDER", + "BY", + "T2.Earnings", + "DESC" + ], + "query_toks_no_value": [ + "select", + "t1", + ".", + "name", + "from", + "people", + "as", + "t1", + "join", + "poker_player", + "as", + "t2", + "on", + "t1", + ".", + "people_id", + "=", + "t2", + ".", + "people_id", + "order", + "by", + "t2", + ".", + "earnings", + "desc" + ], + "question": "What are the names of poker players in descending order of earnings?", + "question_toks": [ + "What", + "are", + "the", + "names", + "of", + "poker", + "players", + "in", + "descending", + "order", + "of", + "earnings", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ], + [ + "table_unit", + 0 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 7, + false + ], + null + ], + [ + 0, + 2, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 9, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [ + "desc", + [ + [ + 0, + [ + 0, + 6, + false + ], + null + ] + ] + ], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "poker_player", + "query": "SELECT T1.Name FROM people AS T1 JOIN poker_player AS T2 ON T1.People_ID = T2.People_ID ORDER BY T2.Earnings DESC", + "query_toks": [ + "SELECT", + "T1.Name", + "FROM", + "people", + "AS", + "T1", + "JOIN", + "poker_player", + "AS", + "T2", + "ON", + "T1.People_ID", + "=", + "T2.People_ID", + "ORDER", + "BY", + "T2.Earnings", + "DESC" + ], + "query_toks_no_value": [ + "select", + "t1", + ".", + "name", + "from", + "people", + "as", + "t1", + "join", + "poker_player", + "as", + "t2", + "on", + "t1", + ".", + "people_id", + "=", + "t2", + ".", + "people_id", + "order", + "by", + "t2", + ".", + "earnings", + "desc" + ], + "question": "Return the names of poker players sorted by their earnings descending.", + "question_toks": [ + "Return", + "the", + "names", + "of", + "poker", + "players", + "sorted", + "by", + "their", + "earnings", + "descending", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ], + [ + "table_unit", + 0 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 7, + false + ], + null + ], + [ + 0, + 2, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 9, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [ + "desc", + [ + [ + 0, + [ + 0, + 6, + false + ], + null + ] + ] + ], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "poker_player", + "query": "SELECT Nationality , COUNT(*) FROM people GROUP BY Nationality", + "query_toks": [ + "SELECT", + "Nationality", + ",", + "COUNT", + "(", + "*", + ")", + "FROM", + "people", + "GROUP", + "BY", + "Nationality" + ], + "query_toks_no_value": [ + "select", + "nationality", + ",", + "count", + "(", + "*", + ")", + "from", + "people", + "group", + "by", + "nationality" + ], + "question": "What are different nationalities of people and the corresponding number of people from each nation?", + "question_toks": [ + "What", + "are", + "different", + "nationalities", + "of", + "people", + "and", + "the", + "corresponding", + "number", + "of", + "people", + "from", + "each", + "nation", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 8, + false + ], + null + ] + ], + [ + 3, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 8, + false + ] + ], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "poker_player", + "query": "SELECT Nationality , COUNT(*) FROM people GROUP BY Nationality", + "query_toks": [ + "SELECT", + "Nationality", + ",", + "COUNT", + "(", + "*", + ")", + "FROM", + "people", + "GROUP", + "BY", + "Nationality" + ], + "query_toks_no_value": [ + "select", + "nationality", + ",", + "count", + "(", + "*", + ")", + "from", + "people", + "group", + "by", + "nationality" + ], + "question": "How many people are there of each nationality?", + "question_toks": [ + "How", + "many", + "people", + "are", + "there", + "of", + "each", + "nationality", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 8, + false + ], + null + ] + ], + [ + 3, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 8, + false + ] + ], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "poker_player", + "query": "SELECT Nationality FROM people GROUP BY Nationality ORDER BY COUNT(*) DESC LIMIT 1", + "query_toks": [ + "SELECT", + "Nationality", + "FROM", + "people", + "GROUP", + "BY", + "Nationality", + "ORDER", + "BY", + "COUNT", + "(", + "*", + ")", + "DESC", + "LIMIT", + "1" + ], + "query_toks_no_value": [ + "select", + "nationality", + "from", + "people", + "group", + "by", + "nationality", + "order", + "by", + "count", + "(", + "*", + ")", + "desc", + "limit", + "value" + ], + "question": "What is the most common nationality of people?", + "question_toks": [ + "What", + "is", + "the", + "most", + "common", + "nationality", + "of", + "people", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 8, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 8, + false + ] + ], + "having": [], + "orderBy": [ + "desc", + [ + [ + 0, + [ + 3, + 0, + false + ], + null + ] + ] + ], + "limit": 1, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "poker_player", + "query": "SELECT Nationality FROM people GROUP BY Nationality ORDER BY COUNT(*) DESC LIMIT 1", + "query_toks": [ + "SELECT", + "Nationality", + "FROM", + "people", + "GROUP", + "BY", + "Nationality", + "ORDER", + "BY", + "COUNT", + "(", + "*", + ")", + "DESC", + "LIMIT", + "1" + ], + "query_toks_no_value": [ + "select", + "nationality", + "from", + "people", + "group", + "by", + "nationality", + "order", + "by", + "count", + "(", + "*", + ")", + "desc", + "limit", + "value" + ], + "question": "Give the nationality that is most common across all people.", + "question_toks": [ + "Give", + "the", + "nationality", + "that", + "is", + "most", + "common", + "across", + "all", + "people", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 8, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 8, + false + ] + ], + "having": [], + "orderBy": [ + "desc", + [ + [ + 0, + [ + 3, + 0, + false + ], + null + ] + ] + ], + "limit": 1, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "poker_player", + "query": "SELECT Nationality FROM people GROUP BY Nationality HAVING COUNT(*) >= 2", + "query_toks": [ + "SELECT", + "Nationality", + "FROM", + "people", + "GROUP", + "BY", + "Nationality", + "HAVING", + "COUNT", + "(", + "*", + ")", + ">", + "=", + "2" + ], + "query_toks_no_value": [ + "select", + "nationality", + "from", + "people", + "group", + "by", + "nationality", + "having", + "count", + "(", + "*", + ")", + ">", + "=", + "value" + ], + "question": "What are the nationalities that are shared by at least two people?", + "question_toks": [ + "What", + "are", + "the", + "nationalities", + "that", + "are", + "shared", + "by", + "at", + "least", + "two", + "people", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 8, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 8, + false + ] + ], + "having": [ + [ + false, + 5, + [ + 0, + [ + 3, + 0, + false + ], + null + ], + 2.0, + null + ] + ], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "poker_player", + "query": "SELECT Nationality FROM people GROUP BY Nationality HAVING COUNT(*) >= 2", + "query_toks": [ + "SELECT", + "Nationality", + "FROM", + "people", + "GROUP", + "BY", + "Nationality", + "HAVING", + "COUNT", + "(", + "*", + ")", + ">", + "=", + "2" + ], + "query_toks_no_value": [ + "select", + "nationality", + "from", + "people", + "group", + "by", + "nationality", + "having", + "count", + "(", + "*", + ")", + ">", + "=", + "value" + ], + "question": "Return the nationalities for which there are two or more people.", + "question_toks": [ + "Return", + "the", + "nationalities", + "for", + "which", + "there", + "are", + "two", + "or", + "more", + "people", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 8, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 8, + false + ] + ], + "having": [ + [ + false, + 5, + [ + 0, + [ + 3, + 0, + false + ], + null + ], + 2.0, + null + ] + ], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "poker_player", + "query": "SELECT Name , Birth_Date FROM people ORDER BY Name ASC", + "query_toks": [ + "SELECT", + "Name", + ",", + "Birth_Date", + "FROM", + "people", + "ORDER", + "BY", + "Name", + "ASC" + ], + "query_toks_no_value": [ + "select", + "name", + ",", + "birth_date", + "from", + "people", + "order", + "by", + "name", + "asc" + ], + "question": "List the names and birth dates of people in ascending alphabetical order of name.", + "question_toks": [ + "List", + "the", + "names", + "and", + "birth", + "dates", + "of", + "people", + "in", + "ascending", + "alphabetical", + "order", + "of", + "name", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 9, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 10, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [ + "asc", + [ + [ + 0, + [ + 0, + 9, + false + ], + null + ] + ] + ], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "poker_player", + "query": "SELECT Name , Birth_Date FROM people ORDER BY Name ASC", + "query_toks": [ + "SELECT", + "Name", + ",", + "Birth_Date", + "FROM", + "people", + "ORDER", + "BY", + "Name", + "ASC" + ], + "query_toks_no_value": [ + "select", + "name", + ",", + "birth_date", + "from", + "people", + "order", + "by", + "name", + "asc" + ], + "question": "What are the names and birth dates of people, ordered by their names in alphabetical order?", + "question_toks": [ + "What", + "are", + "the", + "names", + "and", + "birth", + "dates", + "of", + "people", + ",", + "ordered", + "by", + "their", + "names", + "in", + "alphabetical", + "order", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 9, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 10, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [ + "asc", + [ + [ + 0, + [ + 0, + 9, + false + ], + null + ] + ] + ], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "poker_player", + "query": "SELECT Name FROM people WHERE Nationality != \"Russia\"", + "query_toks": [ + "SELECT", + "Name", + "FROM", + "people", + "WHERE", + "Nationality", + "!", + "=", + "``", + "Russia", + "''" + ], + "query_toks_no_value": [ + "select", + "name", + "from", + "people", + "where", + "nationality", + "!", + "=", + "value" + ], + "question": "Show names of people whose nationality is not \"Russia\".", + "question_toks": [ + "Show", + "names", + "of", + "people", + "whose", + "nationality", + "is", + "not", + "``", + "Russia", + "''", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 9, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 7, + [ + 0, + [ + 0, + 8, + false + ], + null + ], + "\"Russia\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "poker_player", + "query": "SELECT Name FROM people WHERE Nationality != \"Russia\"", + "query_toks": [ + "SELECT", + "Name", + "FROM", + "people", + "WHERE", + "Nationality", + "!", + "=", + "``", + "Russia", + "''" + ], + "query_toks_no_value": [ + "select", + "name", + "from", + "people", + "where", + "nationality", + "!", + "=", + "value" + ], + "question": "What are the names of people who are not from Russia?", + "question_toks": [ + "What", + "are", + "the", + "names", + "of", + "people", + "who", + "are", + "not", + "from", + "Russia", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 9, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 7, + [ + 0, + [ + 0, + 8, + false + ], + null + ], + "\"Russia\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "poker_player", + "query": "SELECT Name FROM people WHERE People_ID NOT IN (SELECT People_ID FROM poker_player)", + "query_toks": [ + "SELECT", + "Name", + "FROM", + "people", + "WHERE", + "People_ID", + "NOT", + "IN", + "(", + "SELECT", + "People_ID", + "FROM", + "poker_player", + ")" + ], + "query_toks_no_value": [ + "select", + "name", + "from", + "people", + "where", + "people_id", + "not", + "in", + "(", + "select", + "people_id", + "from", + "poker_player", + ")" + ], + "question": "List the names of people that are not poker players.", + "question_toks": [ + "List", + "the", + "names", + "of", + "people", + "that", + "are", + "not", + "poker", + "players", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 9, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + true, + 8, + [ + 0, + [ + 0, + 7, + false + ], + null + ], + { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 2, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + }, + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "poker_player", + "query": "SELECT Name FROM people WHERE People_ID NOT IN (SELECT People_ID FROM poker_player)", + "query_toks": [ + "SELECT", + "Name", + "FROM", + "people", + "WHERE", + "People_ID", + "NOT", + "IN", + "(", + "SELECT", + "People_ID", + "FROM", + "poker_player", + ")" + ], + "query_toks_no_value": [ + "select", + "name", + "from", + "people", + "where", + "people_id", + "not", + "in", + "(", + "select", + "people_id", + "from", + "poker_player", + ")" + ], + "question": "What are the names of people who do not play poker?", + "question_toks": [ + "What", + "are", + "the", + "names", + "of", + "people", + "who", + "do", + "not", + "play", + "poker", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 9, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + true, + 8, + [ + 0, + [ + 0, + 7, + false + ], + null + ], + { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 2, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + }, + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "poker_player", + "query": "SELECT count(DISTINCT Nationality) FROM people", + "query_toks": [ + "SELECT", + "count", + "(", + "DISTINCT", + "Nationality", + ")", + "FROM", + "people" + ], + "query_toks_no_value": [ + "select", + "count", + "(", + "distinct", + "nationality", + ")", + "from", + "people" + ], + "question": "How many distinct nationalities are there?", + "question_toks": [ + "How", + "many", + "distinct", + "nationalities", + "are", + "there", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 3, + [ + 0, + [ + 0, + 8, + true + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "poker_player", + "query": "SELECT count(DISTINCT Nationality) FROM people", + "query_toks": [ + "SELECT", + "count", + "(", + "DISTINCT", + "Nationality", + ")", + "FROM", + "people" + ], + "query_toks_no_value": [ + "select", + "count", + "(", + "distinct", + "nationality", + ")", + "from", + "people" + ], + "question": "Count the number of different nationalities.", + "question_toks": [ + "Count", + "the", + "number", + "of", + "different", + "nationalities", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 3, + [ + 0, + [ + 0, + 8, + true + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "voter_1", + "query": "SELECT count(*) FROM area_code_state", + "query_toks": [ + "SELECT", + "count", + "(", + "*", + ")", + "FROM", + "area_code_state" + ], + "query_toks_no_value": [ + "select", + "count", + "(", + "*", + ")", + "from", + "area_code_state" + ], + "question": "How many states are there?", + "question_toks": [ + "How", + "many", + "states", + "are", + "there", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 3, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "voter_1", + "query": "SELECT contestant_number , contestant_name FROM contestants ORDER BY contestant_name DESC", + "query_toks": [ + "SELECT", + "contestant_number", + ",", + "contestant_name", + "FROM", + "contestants", + "ORDER", + "BY", + "contestant_name", + "DESC" + ], + "query_toks_no_value": [ + "select", + "contestant_number", + ",", + "contestant_name", + "from", + "contestants", + "order", + "by", + "contestant_name", + "desc" + ], + "question": "List the contestant numbers and names, ordered by contestant name descending.", + "question_toks": [ + "List", + "the", + "contestant", + "numbers", + "and", + "names", + ",", + "ordered", + "by", + "contestant", + "name", + "descending", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 3, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 4, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [ + "desc", + [ + [ + 0, + [ + 0, + 4, + false + ], + null + ] + ] + ], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "voter_1", + "query": "SELECT vote_id , phone_number , state FROM votes", + "query_toks": [ + "SELECT", + "vote_id", + ",", + "phone_number", + ",", + "state", + "FROM", + "votes" + ], + "query_toks_no_value": [ + "select", + "vote_id", + ",", + "phone_number", + ",", + "state", + "from", + "votes" + ], + "question": "List the vote ids, phone numbers and states of all votes.", + "question_toks": [ + "List", + "the", + "vote", + "ids", + ",", + "phone", + "numbers", + "and", + "states", + "of", + "all", + "votes", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 5, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 6, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 7, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "voter_1", + "query": "SELECT max(area_code) , min(area_code) FROM area_code_state", + "query_toks": [ + "SELECT", + "max", + "(", + "area_code", + ")", + ",", + "min", + "(", + "area_code", + ")", + "FROM", + "area_code_state" + ], + "query_toks_no_value": [ + "select", + "max", + "(", + "area_code", + ")", + ",", + "min", + "(", + "area_code", + ")", + "from", + "area_code_state" + ], + "question": "What are the maximum and minimum values of area codes?", + "question_toks": [ + "What", + "are", + "the", + "maximum", + "and", + "minimum", + "values", + "of", + "area", + "codes", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 1, + [ + 0, + [ + 0, + 1, + false + ], + null + ] + ], + [ + 2, + [ + 0, + [ + 0, + 1, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "voter_1", + "query": "SELECT max(created) FROM votes WHERE state = 'CA'", + "query_toks": [ + "SELECT", + "max", + "(", + "created", + ")", + "FROM", + "votes", + "WHERE", + "state", + "=", + "'CA", + "'" + ], + "query_toks_no_value": [ + "select", + "max", + "(", + "created", + ")", + "from", + "votes", + "where", + "state", + "=", + "value" + ], + "question": "What is last date created of votes from the state 'CA'?", + "question_toks": [ + "What", + "is", + "last", + "date", + "created", + "of", + "votes", + "from", + "the", + "state", + "'CA", + "'", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 1, + [ + 0, + [ + 0, + 9, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 7, + false + ], + null + ], + "\"CA\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "voter_1", + "query": "SELECT contestant_name FROM contestants WHERE contestant_name != 'Jessie Alloway'", + "query_toks": [ + "SELECT", + "contestant_name", + "FROM", + "contestants", + "WHERE", + "contestant_name", + "!", + "=", + "'Jessie", + "Alloway", + "'" + ], + "query_toks_no_value": [ + "select", + "contestant_name", + "from", + "contestants", + "where", + "contestant_name", + "!", + "=", + "value" + ], + "question": "What are the names of the contestants whose names are not 'Jessie Alloway'", + "question_toks": [ + "What", + "are", + "the", + "names", + "of", + "the", + "contestants", + "whose", + "names", + "are", + "not", + "'Jessie", + "Alloway", + "'" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 4, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 7, + [ + 0, + [ + 0, + 4, + false + ], + null + ], + "\"Jessie Alloway\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "voter_1", + "query": "SELECT DISTINCT state , created FROM votes", + "query_toks": [ + "SELECT", + "DISTINCT", + "state", + ",", + "created", + "FROM", + "votes" + ], + "query_toks_no_value": [ + "select", + "distinct", + "state", + ",", + "created", + "from", + "votes" + ], + "question": "What are the distinct states and create time of all votes?", + "question_toks": [ + "What", + "are", + "the", + "distinct", + "states", + "and", + "create", + "time", + "of", + "all", + "votes", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ] + ], + "conds": [] + }, + "select": [ + true, + [ + [ + 0, + [ + 0, + [ + 0, + 7, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 9, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "voter_1", + "query": "SELECT T1.contestant_number , T1.contestant_name FROM contestants AS T1 JOIN votes AS T2 ON T1.contestant_number = T2.contestant_number GROUP BY T1.contestant_number HAVING count(*) >= 2", + "query_toks": [ + "SELECT", + "T1.contestant_number", + ",", + "T1.contestant_name", + "FROM", + "contestants", + "AS", + "T1", + "JOIN", + "votes", + "AS", + "T2", + "ON", + "T1.contestant_number", + "=", + "T2.contestant_number", + "GROUP", + "BY", + "T1.contestant_number", + "HAVING", + "count", + "(", + "*", + ")", + ">", + "=", + "2" + ], + "query_toks_no_value": [ + "select", + "t1", + ".", + "contestant_number", + ",", + "t1", + ".", + "contestant_name", + "from", + "contestants", + "as", + "t1", + "join", + "votes", + "as", + "t2", + "on", + "t1", + ".", + "contestant_number", + "=", + "t2", + ".", + "contestant_number", + "group", + "by", + "t1", + ".", + "contestant_number", + "having", + "count", + "(", + "*", + ")", + ">", + "=", + "value" + ], + "question": "What are the contestant numbers and names of the contestants who had at least two votes?", + "question_toks": [ + "What", + "are", + "the", + "contestant", + "numbers", + "and", + "names", + "of", + "the", + "contestants", + "who", + "had", + "at", + "least", + "two", + "votes", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ], + [ + "table_unit", + 2 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 3, + false + ], + null + ], + [ + 0, + 8, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 3, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 4, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 3, + false + ] + ], + "having": [ + [ + false, + 5, + [ + 0, + [ + 3, + 0, + false + ], + null + ], + 2.0, + null + ] + ], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "voter_1", + "query": "SELECT T1.contestant_number , T1.contestant_name FROM contestants AS T1 JOIN votes AS T2 ON T1.contestant_number = T2.contestant_number GROUP BY T1.contestant_number ORDER BY count(*) ASC LIMIT 1", + "query_toks": [ + "SELECT", + "T1.contestant_number", + ",", + "T1.contestant_name", + "FROM", + "contestants", + "AS", + "T1", + "JOIN", + "votes", + "AS", + "T2", + "ON", + "T1.contestant_number", + "=", + "T2.contestant_number", + "GROUP", + "BY", + "T1.contestant_number", + "ORDER", + "BY", + "count", + "(", + "*", + ")", + "ASC", + "LIMIT", + "1" + ], + "query_toks_no_value": [ + "select", + "t1", + ".", + "contestant_number", + ",", + "t1", + ".", + "contestant_name", + "from", + "contestants", + "as", + "t1", + "join", + "votes", + "as", + "t2", + "on", + "t1", + ".", + "contestant_number", + "=", + "t2", + ".", + "contestant_number", + "group", + "by", + "t1", + ".", + "contestant_number", + "order", + "by", + "count", + "(", + "*", + ")", + "asc", + "limit", + "value" + ], + "question": "Of all the contestants who got voted, what is the contestant number and name of the contestant who got least votes?", + "question_toks": [ + "Of", + "all", + "the", + "contestants", + "who", + "got", + "voted", + ",", + "what", + "is", + "the", + "contestant", + "number", + "and", + "name", + "of", + "the", + "contestant", + "who", + "got", + "least", + "votes", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ], + [ + "table_unit", + 2 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 3, + false + ], + null + ], + [ + 0, + 8, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 3, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 4, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 3, + false + ] + ], + "having": [], + "orderBy": [ + "asc", + [ + [ + 0, + [ + 3, + 0, + false + ], + null + ] + ] + ], + "limit": 1, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "voter_1", + "query": "SELECT count(*) FROM votes WHERE state = 'NY' OR state = 'CA'", + "query_toks": [ + "SELECT", + "count", + "(", + "*", + ")", + "FROM", + "votes", + "WHERE", + "state", + "=", + "'NY", + "'", + "OR", + "state", + "=", + "'CA", + "'" + ], + "query_toks_no_value": [ + "select", + "count", + "(", + "*", + ")", + "from", + "votes", + "where", + "state", + "=", + "value", + "or", + "state", + "=", + "value" + ], + "question": "What are the number of votes from state 'NY' or 'CA'?", + "question_toks": [ + "What", + "are", + "the", + "number", + "of", + "votes", + "from", + "state", + "'NY", + "'", + "or", + "'CA", + "'", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 3, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 7, + false + ], + null + ], + "\"NY\"", + null + ], + "or", + [ + false, + 2, + [ + 0, + [ + 0, + 7, + false + ], + null + ], + "\"CA\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "voter_1", + "query": "SELECT count(*) FROM contestants WHERE contestant_number NOT IN ( SELECT contestant_number FROM votes )", + "query_toks": [ + "SELECT", + "count", + "(", + "*", + ")", + "FROM", + "contestants", + "WHERE", + "contestant_number", + "NOT", + "IN", + "(", + "SELECT", + "contestant_number", + "FROM", + "votes", + ")" + ], + "query_toks_no_value": [ + "select", + "count", + "(", + "*", + ")", + "from", + "contestants", + "where", + "contestant_number", + "not", + "in", + "(", + "select", + "contestant_number", + "from", + "votes", + ")" + ], + "question": "How many contestants did not get voted?", + "question_toks": [ + "How", + "many", + "contestants", + "did", + "not", + "get", + "voted", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 3, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + true, + 8, + [ + 0, + [ + 0, + 3, + false + ], + null + ], + { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 8, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + }, + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "voter_1", + "query": "SELECT T1.area_code FROM area_code_state AS T1 JOIN votes AS T2 ON T1.state = T2.state GROUP BY T1.area_code ORDER BY count(*) DESC LIMIT 1", + "query_toks": [ + "SELECT", + "T1.area_code", + "FROM", + "area_code_state", + "AS", + "T1", + "JOIN", + "votes", + "AS", + "T2", + "ON", + "T1.state", + "=", + "T2.state", + "GROUP", + "BY", + "T1.area_code", + "ORDER", + "BY", + "count", + "(", + "*", + ")", + "DESC", + "LIMIT", + "1" + ], + "query_toks_no_value": [ + "select", + "t1", + ".", + "area_code", + "from", + "area_code_state", + "as", + "t1", + "join", + "votes", + "as", + "t2", + "on", + "t1", + ".", + "state", + "=", + "t2", + ".", + "state", + "group", + "by", + "t1", + ".", + "area_code", + "order", + "by", + "count", + "(", + "*", + ")", + "desc", + "limit", + "value" + ], + "question": "What is the area code in which the most voters voted?", + "question_toks": [ + "What", + "is", + "the", + "area", + "code", + "in", + "which", + "the", + "most", + "voters", + "voted", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ], + [ + "table_unit", + 2 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 2, + false + ], + null + ], + [ + 0, + 7, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 1, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 1, + false + ] + ], + "having": [], + "orderBy": [ + "desc", + [ + [ + 0, + [ + 3, + 0, + false + ], + null + ] + ] + ], + "limit": 1, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "voter_1", + "query": "SELECT T2.created , T2.state , T2.phone_number FROM contestants AS T1 JOIN votes AS T2 ON T1.contestant_number = T2.contestant_number WHERE T1.contestant_name = 'Tabatha Gehling'", + "query_toks": [ + "SELECT", + "T2.created", + ",", + "T2.state", + ",", + "T2.phone_number", + "FROM", + "contestants", + "AS", + "T1", + "JOIN", + "votes", + "AS", + "T2", + "ON", + "T1.contestant_number", + "=", + "T2.contestant_number", + "WHERE", + "T1.contestant_name", + "=", + "'Tabatha", + "Gehling", + "'" + ], + "query_toks_no_value": [ + "select", + "t2", + ".", + "created", + ",", + "t2", + ".", + "state", + ",", + "t2", + ".", + "phone_number", + "from", + "contestants", + "as", + "t1", + "join", + "votes", + "as", + "t2", + "on", + "t1", + ".", + "contestant_number", + "=", + "t2", + ".", + "contestant_number", + "where", + "t1", + ".", + "contestant_name", + "=", + "value" + ], + "question": "What are the create dates, states, and phone numbers of the votes that were for the contestant named 'Tabatha Gehling'?", + "question_toks": [ + "What", + "are", + "the", + "create", + "dates", + ",", + "states", + ",", + "and", + "phone", + "numbers", + "of", + "the", + "votes", + "that", + "were", + "for", + "the", + "contestant", + "named", + "'Tabatha", + "Gehling", + "'", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ], + [ + "table_unit", + 2 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 3, + false + ], + null + ], + [ + 0, + 8, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 9, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 7, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 6, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 4, + false + ], + null + ], + "\"Tabatha Gehling\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "voter_1", + "query": "SELECT T3.area_code FROM contestants AS T1 JOIN votes AS T2 ON T1.contestant_number = T2.contestant_number JOIN area_code_state AS T3 ON T2.state = T3.state WHERE T1.contestant_name = 'Tabatha Gehling' INTERSECT SELECT T3.area_code FROM contestants AS T1 JOIN votes AS T2 ON T1.contestant_number = T2.contestant_number JOIN area_code_state AS T3 ON T2.state = T3.state WHERE T1.contestant_name = 'Kelly Clauss'", + "query_toks": [ + "SELECT", + "T3.area_code", + "FROM", + "contestants", + "AS", + "T1", + "JOIN", + "votes", + "AS", + "T2", + "ON", + "T1.contestant_number", + "=", + "T2.contestant_number", + "JOIN", + "area_code_state", + "AS", + "T3", + "ON", + "T2.state", + "=", + "T3.state", + "WHERE", + "T1.contestant_name", + "=", + "'Tabatha", + "Gehling", + "'", + "INTERSECT", + "SELECT", + "T3.area_code", + "FROM", + "contestants", + "AS", + "T1", + "JOIN", + "votes", + "AS", + "T2", + "ON", + "T1.contestant_number", + "=", + "T2.contestant_number", + "JOIN", + "area_code_state", + "AS", + "T3", + "ON", + "T2.state", + "=", + "T3.state", + "WHERE", + "T1.contestant_name", + "=", + "'Kelly", + "Clauss", + "'" + ], + "query_toks_no_value": [ + "select", + "t3", + ".", + "area_code", + "from", + "contestants", + "as", + "t1", + "join", + "votes", + "as", + "t2", + "on", + "t1", + ".", + "contestant_number", + "=", + "t2", + ".", + "contestant_number", + "join", + "area_code_state", + "as", + "t3", + "on", + "t2", + ".", + "state", + "=", + "t3", + ".", + "state", + "where", + "t1", + ".", + "contestant_name", + "=", + "value", + "intersect", + "select", + "t3", + ".", + "area_code", + "from", + "contestants", + "as", + "t1", + "join", + "votes", + "as", + "t2", + "on", + "t1", + ".", + "contestant_number", + "=", + "t2", + ".", + "contestant_number", + "join", + "area_code_state", + "as", + "t3", + "on", + "t2", + ".", + "state", + "=", + "t3", + ".", + "state", + "where", + "t1", + ".", + "contestant_name", + "=", + "value" + ], + "question": "List the area codes in which voters voted both for the contestant 'Tabatha Gehling' and the contestant 'Kelly Clauss'.", + "question_toks": [ + "List", + "the", + "area", + "codes", + "in", + "which", + "voters", + "voted", + "both", + "for", + "the", + "contestant", + "'Tabatha", + "Gehling", + "'", + "and", + "the", + "contestant", + "'Kelly", + "Clauss", + "'", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ], + [ + "table_unit", + 2 + ], + [ + "table_unit", + 0 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 3, + false + ], + null + ], + [ + 0, + 8, + false + ], + null + ], + "and", + [ + false, + 2, + [ + 0, + [ + 0, + 7, + false + ], + null + ], + [ + 0, + 2, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 1, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 4, + false + ], + null + ], + "\"Tabatha Gehling\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ], + [ + "table_unit", + 2 + ], + [ + "table_unit", + 0 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 3, + false + ], + null + ], + [ + 0, + 8, + false + ], + null + ], + "and", + [ + false, + 2, + [ + 0, + [ + 0, + 7, + false + ], + null + ], + [ + 0, + 2, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 1, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 4, + false + ], + null + ], + "\"Kelly Clauss\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + }, + "union": null, + "except": null + } + }, + { + "db_id": "voter_1", + "query": "select contestant_name from contestants where contestant_name like \"%al%\"", + "query_toks": [ + "select", + "contestant_name", + "from", + "contestants", + "where", + "contestant_name", + "like", + "\"%al%\"" + ], + "query_toks_no_value": [ + "select", + "contestant_name", + "from", + "contestants", + "where", + "contestant_name", + "like", + "value" + ], + "question": "Return the names of the contestants whose names contain the substring 'Al' .", + "question_toks": [ + "Return", + "the", + "names", + "of", + "the", + "contestants", + "whose", + "names", + "contain", + "the", + "substring", + "'Al'", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 4, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 9, + [ + 0, + [ + 0, + 4, + false + ], + null + ], + "\"%al%\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "world_1", + "query": "SELECT Name FROM country WHERE IndepYear > 1950", + "query_toks": [ + "SELECT", + "Name", + "FROM", + "country", + "WHERE", + "IndepYear", + ">", + "1950" + ], + "query_toks_no_value": [ + "select", + "name", + "from", + "country", + "where", + "indepyear", + ">", + "value" + ], + "question": "What are the names of all the countries that became independent after 1950?", + "question_toks": [ + "What", + "are", + "the", + "names", + "of", + "all", + "the", + "countries", + "that", + "became", + "independent", + "after", + "1950", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 9, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 3, + [ + 0, + [ + 0, + 13, + false + ], + null + ], + 1950.0, + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "world_1", + "query": "SELECT Name FROM country WHERE IndepYear > 1950", + "query_toks": [ + "SELECT", + "Name", + "FROM", + "country", + "WHERE", + "IndepYear", + ">", + "1950" + ], + "query_toks_no_value": [ + "select", + "name", + "from", + "country", + "where", + "indepyear", + ">", + "value" + ], + "question": "Give the names of the nations that were founded after 1950.", + "question_toks": [ + "Give", + "the", + "names", + "of", + "the", + "nations", + "that", + "were", + "founded", + "after", + "1950", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 9, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 3, + [ + 0, + [ + 0, + 13, + false + ], + null + ], + 1950.0, + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "world_1", + "query": "SELECT count(*) FROM country WHERE GovernmentForm = \"Republic\"", + "query_toks": [ + "SELECT", + "count", + "(", + "*", + ")", + "FROM", + "country", + "WHERE", + "GovernmentForm", + "=", + "``", + "Republic", + "''" + ], + "query_toks_no_value": [ + "select", + "count", + "(", + "*", + ")", + "from", + "country", + "where", + "governmentform", + "=", + "value" + ], + "question": "How many countries have a republic as their form of government?", + "question_toks": [ + "How", + "many", + "countries", + "have", + "a", + "republic", + "as", + "their", + "form", + "of", + "government", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 3, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 19, + false + ], + null + ], + "\"Republic\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "world_1", + "query": "SELECT count(*) FROM country WHERE GovernmentForm = \"Republic\"", + "query_toks": [ + "SELECT", + "count", + "(", + "*", + ")", + "FROM", + "country", + "WHERE", + "GovernmentForm", + "=", + "``", + "Republic", + "''" + ], + "query_toks_no_value": [ + "select", + "count", + "(", + "*", + ")", + "from", + "country", + "where", + "governmentform", + "=", + "value" + ], + "question": "How many countries have governments that are republics?", + "question_toks": [ + "How", + "many", + "countries", + "have", + "governments", + "that", + "are", + "republics", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 3, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 19, + false + ], + null + ], + "\"Republic\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "world_1", + "query": "SELECT sum(SurfaceArea) FROM country WHERE Region = \"Caribbean\"", + "query_toks": [ + "SELECT", + "sum", + "(", + "SurfaceArea", + ")", + "FROM", + "country", + "WHERE", + "Region", + "=", + "``", + "Caribbean", + "''" + ], + "query_toks_no_value": [ + "select", + "sum", + "(", + "surfacearea", + ")", + "from", + "country", + "where", + "region", + "=", + "value" + ], + "question": "What is the total surface area of the countries in the Caribbean region?", + "question_toks": [ + "What", + "is", + "the", + "total", + "surface", + "area", + "of", + "the", + "countries", + "in", + "the", + "Caribbean", + "region", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 4, + [ + 0, + [ + 0, + 12, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 11, + false + ], + null + ], + "\"Caribbean\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "world_1", + "query": "SELECT sum(SurfaceArea) FROM country WHERE Region = \"Caribbean\"", + "query_toks": [ + "SELECT", + "sum", + "(", + "SurfaceArea", + ")", + "FROM", + "country", + "WHERE", + "Region", + "=", + "``", + "Caribbean", + "''" + ], + "query_toks_no_value": [ + "select", + "sum", + "(", + "surfacearea", + ")", + "from", + "country", + "where", + "region", + "=", + "value" + ], + "question": "How much surface area do the countires in the Carribean cover together?", + "question_toks": [ + "How", + "much", + "surface", + "area", + "do", + "the", + "countires", + "in", + "the", + "Carribean", + "cover", + "together", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 4, + [ + 0, + [ + 0, + 12, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 11, + false + ], + null + ], + "\"Caribbean\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "world_1", + "query": "SELECT Continent FROM country WHERE Name = \"Anguilla\"", + "query_toks": [ + "SELECT", + "Continent", + "FROM", + "country", + "WHERE", + "Name", + "=", + "``", + "Anguilla", + "''" + ], + "query_toks_no_value": [ + "select", + "continent", + "from", + "country", + "where", + "name", + "=", + "value" + ], + "question": "Which continent is Anguilla in?", + "question_toks": [ + "Which", + "continent", + "is", + "Anguilla", + "in", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 10, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 9, + false + ], + null + ], + "\"Anguilla\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "world_1", + "query": "SELECT Continent FROM country WHERE Name = \"Anguilla\"", + "query_toks": [ + "SELECT", + "Continent", + "FROM", + "country", + "WHERE", + "Name", + "=", + "``", + "Anguilla", + "''" + ], + "query_toks_no_value": [ + "select", + "continent", + "from", + "country", + "where", + "name", + "=", + "value" + ], + "question": "What is the continent name which Anguilla belongs to?", + "question_toks": [ + "What", + "is", + "the", + "continent", + "name", + "which", + "Anguilla", + "belongs", + "to", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 10, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 9, + false + ], + null + ], + "\"Anguilla\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "world_1", + "query": "SELECT Region FROM country AS T1 JOIN city AS T2 ON T1.Code = T2.CountryCode WHERE T2.Name = \"Kabul\"", + "query_toks": [ + "SELECT", + "Region", + "FROM", + "country", + "AS", + "T1", + "JOIN", + "city", + "AS", + "T2", + "ON", + "T1.Code", + "=", + "T2.CountryCode", + "WHERE", + "T2.Name", + "=", + "``", + "Kabul", + "''" + ], + "query_toks_no_value": [ + "select", + "region", + "from", + "country", + "as", + "t1", + "join", + "city", + "as", + "t2", + "on", + "t1", + ".", + "code", + "=", + "t2", + ".", + "countrycode", + "where", + "t2", + ".", + "name", + "=", + "value" + ], + "question": "Which region is the city Kabul located in?", + "question_toks": [ + "Which", + "region", + "is", + "the", + "city", + "Kabul", + "located", + "in", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ], + [ + "table_unit", + 0 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 8, + false + ], + null + ], + [ + 0, + 3, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 11, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 2, + false + ], + null + ], + "\"Kabul\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "world_1", + "query": "SELECT Region FROM country AS T1 JOIN city AS T2 ON T1.Code = T2.CountryCode WHERE T2.Name = \"Kabul\"", + "query_toks": [ + "SELECT", + "Region", + "FROM", + "country", + "AS", + "T1", + "JOIN", + "city", + "AS", + "T2", + "ON", + "T1.Code", + "=", + "T2.CountryCode", + "WHERE", + "T2.Name", + "=", + "``", + "Kabul", + "''" + ], + "query_toks_no_value": [ + "select", + "region", + "from", + "country", + "as", + "t1", + "join", + "city", + "as", + "t2", + "on", + "t1", + ".", + "code", + "=", + "t2", + ".", + "countrycode", + "where", + "t2", + ".", + "name", + "=", + "value" + ], + "question": "What region is Kabul in?", + "question_toks": [ + "What", + "region", + "is", + "Kabul", + "in", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ], + [ + "table_unit", + 0 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 8, + false + ], + null + ], + [ + 0, + 3, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 11, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 2, + false + ], + null + ], + "\"Kabul\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "world_1", + "query": "SELECT T2.Language FROM country AS T1 JOIN countrylanguage AS T2 ON T1.Code = T2.CountryCode WHERE T1.Name = \"Aruba\" ORDER BY Percentage DESC LIMIT 1", + "query_toks": [ + "SELECT", + "T2.Language", + "FROM", + "country", + "AS", + "T1", + "JOIN", + "countrylanguage", + "AS", + "T2", + "ON", + "T1.Code", + "=", + "T2.CountryCode", + "WHERE", + "T1.Name", + "=", + "``", + "Aruba", + "''", + "ORDER", + "BY", + "Percentage", + "DESC", + "LIMIT", + "1" + ], + "query_toks_no_value": [ + "select", + "t2", + ".", + "language", + "from", + "country", + "as", + "t1", + "join", + "countrylanguage", + "as", + "t2", + "on", + "t1", + ".", + "code", + "=", + "t2", + ".", + "countrycode", + "where", + "t1", + ".", + "name", + "=", + "value", + "order", + "by", + "percentage", + "desc", + "limit", + "value" + ], + "question": "Which language is the most popular in Aruba?", + "question_toks": [ + "Which", + "language", + "is", + "the", + "most", + "popular", + "in", + "Aruba", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ], + [ + "table_unit", + 3 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 8, + false + ], + null + ], + [ + 0, + 23, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 24, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 9, + false + ], + null + ], + "\"Aruba\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [ + "desc", + [ + [ + 0, + [ + 0, + 26, + false + ], + null + ] + ] + ], + "limit": 1, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "world_1", + "query": "SELECT T2.Language FROM country AS T1 JOIN countrylanguage AS T2 ON T1.Code = T2.CountryCode WHERE T1.Name = \"Aruba\" ORDER BY Percentage DESC LIMIT 1", + "query_toks": [ + "SELECT", + "T2.Language", + "FROM", + "country", + "AS", + "T1", + "JOIN", + "countrylanguage", + "AS", + "T2", + "ON", + "T1.Code", + "=", + "T2.CountryCode", + "WHERE", + "T1.Name", + "=", + "``", + "Aruba", + "''", + "ORDER", + "BY", + "Percentage", + "DESC", + "LIMIT", + "1" + ], + "query_toks_no_value": [ + "select", + "t2", + ".", + "language", + "from", + "country", + "as", + "t1", + "join", + "countrylanguage", + "as", + "t2", + "on", + "t1", + ".", + "code", + "=", + "t2", + ".", + "countrycode", + "where", + "t1", + ".", + "name", + "=", + "value", + "order", + "by", + "percentage", + "desc", + "limit", + "value" + ], + "question": "What language is predominantly spoken in Aruba?", + "question_toks": [ + "What", + "language", + "is", + "predominantly", + "spoken", + "in", + "Aruba", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ], + [ + "table_unit", + 3 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 8, + false + ], + null + ], + [ + 0, + 23, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 24, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 9, + false + ], + null + ], + "\"Aruba\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [ + "desc", + [ + [ + 0, + [ + 0, + 26, + false + ], + null + ] + ] + ], + "limit": 1, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "world_1", + "query": "SELECT Population , LifeExpectancy FROM country WHERE Name = \"Brazil\"", + "query_toks": [ + "SELECT", + "Population", + ",", + "LifeExpectancy", + "FROM", + "country", + "WHERE", + "Name", + "=", + "``", + "Brazil", + "''" + ], + "query_toks_no_value": [ + "select", + "population", + ",", + "lifeexpectancy", + "from", + "country", + "where", + "name", + "=", + "value" + ], + "question": "What are the population and life expectancies in Brazil?", + "question_toks": [ + "What", + "are", + "the", + "population", + "and", + "life", + "expectancies", + "in", + "Brazil", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 14, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 15, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 9, + false + ], + null + ], + "\"Brazil\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "world_1", + "query": "SELECT Population , LifeExpectancy FROM country WHERE Name = \"Brazil\"", + "query_toks": [ + "SELECT", + "Population", + ",", + "LifeExpectancy", + "FROM", + "country", + "WHERE", + "Name", + "=", + "``", + "Brazil", + "''" + ], + "query_toks_no_value": [ + "select", + "population", + ",", + "lifeexpectancy", + "from", + "country", + "where", + "name", + "=", + "value" + ], + "question": "Give me Brazil\u2019s population and life expectancies.", + "question_toks": [ + "Give", + "me", + "Brazil\u2019s", + "population", + "and", + "life", + "expectancies", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 14, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 15, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 9, + false + ], + null + ], + "\"Brazil\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "world_1", + "query": "SELECT Population , Region FROM country WHERE Name = \"Angola\"", + "query_toks": [ + "SELECT", + "Population", + ",", + "Region", + "FROM", + "country", + "WHERE", + "Name", + "=", + "``", + "Angola", + "''" + ], + "query_toks_no_value": [ + "select", + "population", + ",", + "region", + "from", + "country", + "where", + "name", + "=", + "value" + ], + "question": "What are the region and population of Angola?", + "question_toks": [ + "What", + "are", + "the", + "region", + "and", + "population", + "of", + "Angola", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 14, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 11, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 9, + false + ], + null + ], + "\"Angola\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "world_1", + "query": "SELECT Population , Region FROM country WHERE Name = \"Angola\"", + "query_toks": [ + "SELECT", + "Population", + ",", + "Region", + "FROM", + "country", + "WHERE", + "Name", + "=", + "``", + "Angola", + "''" + ], + "query_toks_no_value": [ + "select", + "population", + ",", + "region", + "from", + "country", + "where", + "name", + "=", + "value" + ], + "question": "What region does Angola belong to and what is its population?", + "question_toks": [ + "What", + "region", + "does", + "Angola", + "belong", + "to", + "and", + "what", + "is", + "its", + "population", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 14, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 11, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 9, + false + ], + null + ], + "\"Angola\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "world_1", + "query": "SELECT avg(LifeExpectancy) FROM country WHERE Region = \"Central Africa\"", + "query_toks": [ + "SELECT", + "avg", + "(", + "LifeExpectancy", + ")", + "FROM", + "country", + "WHERE", + "Region", + "=", + "``", + "Central", + "Africa", + "''" + ], + "query_toks_no_value": [ + "select", + "avg", + "(", + "lifeexpectancy", + ")", + "from", + "country", + "where", + "region", + "=", + "value" + ], + "question": "What is the average expected life expectancy for countries in the region of Central Africa?", + "question_toks": [ + "What", + "is", + "the", + "average", + "expected", + "life", + "expectancy", + "for", + "countries", + "in", + "the", + "region", + "of", + "Central", + "Africa", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 5, + [ + 0, + [ + 0, + 15, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 11, + false + ], + null + ], + "\"Central Africa\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "world_1", + "query": "SELECT avg(LifeExpectancy) FROM country WHERE Region = \"Central Africa\"", + "query_toks": [ + "SELECT", + "avg", + "(", + "LifeExpectancy", + ")", + "FROM", + "country", + "WHERE", + "Region", + "=", + "``", + "Central", + "Africa", + "''" + ], + "query_toks_no_value": [ + "select", + "avg", + "(", + "lifeexpectancy", + ")", + "from", + "country", + "where", + "region", + "=", + "value" + ], + "question": "How long is the people\u2019s average life expectancy in Central Africa?", + "question_toks": [ + "How", + "long", + "is", + "the", + "people\u2019s", + "average", + "life", + "expectancy", + "in", + "Central", + "Africa", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 5, + [ + 0, + [ + 0, + 15, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 11, + false + ], + null + ], + "\"Central Africa\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "world_1", + "query": "SELECT Name FROM country WHERE Continent = \"Asia\" ORDER BY LifeExpectancy LIMIT 1", + "query_toks": [ + "SELECT", + "Name", + "FROM", + "country", + "WHERE", + "Continent", + "=", + "``", + "Asia", + "''", + "ORDER", + "BY", + "LifeExpectancy", + "LIMIT", + "1" + ], + "query_toks_no_value": [ + "select", + "name", + "from", + "country", + "where", + "continent", + "=", + "value", + "order", + "by", + "lifeexpectancy", + "limit", + "value" + ], + "question": "What is the name of country that has the shortest life expectancy in Asia?", + "question_toks": [ + "What", + "is", + "the", + "name", + "of", + "country", + "that", + "has", + "the", + "shortest", + "life", + "expectancy", + "in", + "Asia", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 9, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 10, + false + ], + null + ], + "\"Asia\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [ + "asc", + [ + [ + 0, + [ + 0, + 15, + false + ], + null + ] + ] + ], + "limit": 1, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "world_1", + "query": "SELECT Name FROM country WHERE Continent = \"Asia\" ORDER BY LifeExpectancy LIMIT 1", + "query_toks": [ + "SELECT", + "Name", + "FROM", + "country", + "WHERE", + "Continent", + "=", + "``", + "Asia", + "''", + "ORDER", + "BY", + "LifeExpectancy", + "LIMIT", + "1" + ], + "query_toks_no_value": [ + "select", + "name", + "from", + "country", + "where", + "continent", + "=", + "value", + "order", + "by", + "lifeexpectancy", + "limit", + "value" + ], + "question": "Give the name of the country in Asia with the lowest life expectancy.", + "question_toks": [ + "Give", + "the", + "name", + "of", + "the", + "country", + "in", + "Asia", + "with", + "the", + "lowest", + "life", + "expectancy", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 9, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 10, + false + ], + null + ], + "\"Asia\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [ + "asc", + [ + [ + 0, + [ + 0, + 15, + false + ], + null + ] + ] + ], + "limit": 1, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "world_1", + "query": "SELECT sum(Population) , max(GNP) FROM country WHERE Continent = \"Asia\"", + "query_toks": [ + "SELECT", + "sum", + "(", + "Population", + ")", + ",", + "max", + "(", + "GNP", + ")", + "FROM", + "country", + "WHERE", + "Continent", + "=", + "``", + "Asia", + "''" + ], + "query_toks_no_value": [ + "select", + "sum", + "(", + "population", + ")", + ",", + "max", + "(", + "gnp", + ")", + "from", + "country", + "where", + "continent", + "=", + "value" + ], + "question": "What is the total population and maximum GNP in Asia?", + "question_toks": [ + "What", + "is", + "the", + "total", + "population", + "and", + "maximum", + "GNP", + "in", + "Asia", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 4, + [ + 0, + [ + 0, + 14, + false + ], + null + ] + ], + [ + 1, + [ + 0, + [ + 0, + 16, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 10, + false + ], + null + ], + "\"Asia\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "world_1", + "query": "SELECT sum(Population) , max(GNP) FROM country WHERE Continent = \"Asia\"", + "query_toks": [ + "SELECT", + "sum", + "(", + "Population", + ")", + ",", + "max", + "(", + "GNP", + ")", + "FROM", + "country", + "WHERE", + "Continent", + "=", + "``", + "Asia", + "''" + ], + "query_toks_no_value": [ + "select", + "sum", + "(", + "population", + ")", + ",", + "max", + "(", + "gnp", + ")", + "from", + "country", + "where", + "continent", + "=", + "value" + ], + "question": "How many people live in Asia, and what is the largest GNP among them?", + "question_toks": [ + "How", + "many", + "people", + "live", + "in", + "Asia", + ",", + "and", + "what", + "is", + "the", + "largest", + "GNP", + "among", + "them", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 4, + [ + 0, + [ + 0, + 14, + false + ], + null + ] + ], + [ + 1, + [ + 0, + [ + 0, + 16, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 10, + false + ], + null + ], + "\"Asia\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "world_1", + "query": "SELECT avg(LifeExpectancy) FROM country WHERE Continent = \"Africa\" AND GovernmentForm = \"Republic\"", + "query_toks": [ + "SELECT", + "avg", + "(", + "LifeExpectancy", + ")", + "FROM", + "country", + "WHERE", + "Continent", + "=", + "``", + "Africa", + "''", + "AND", + "GovernmentForm", + "=", + "``", + "Republic", + "''" + ], + "query_toks_no_value": [ + "select", + "avg", + "(", + "lifeexpectancy", + ")", + "from", + "country", + "where", + "continent", + "=", + "value", + "and", + "governmentform", + "=", + "value" + ], + "question": "What is the average life expectancy in African countries that are republics?", + "question_toks": [ + "What", + "is", + "the", + "average", + "life", + "expectancy", + "in", + "African", + "countries", + "that", + "are", + "republics", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 5, + [ + 0, + [ + 0, + 15, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 10, + false + ], + null + ], + "\"Africa\"", + null + ], + "and", + [ + false, + 2, + [ + 0, + [ + 0, + 19, + false + ], + null + ], + "\"Republic\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "world_1", + "query": "SELECT avg(LifeExpectancy) FROM country WHERE Continent = \"Africa\" AND GovernmentForm = \"Republic\"", + "query_toks": [ + "SELECT", + "avg", + "(", + "LifeExpectancy", + ")", + "FROM", + "country", + "WHERE", + "Continent", + "=", + "``", + "Africa", + "''", + "AND", + "GovernmentForm", + "=", + "``", + "Republic", + "''" + ], + "query_toks_no_value": [ + "select", + "avg", + "(", + "lifeexpectancy", + ")", + "from", + "country", + "where", + "continent", + "=", + "value", + "and", + "governmentform", + "=", + "value" + ], + "question": "Give the average life expectancy for countries in Africa which are republics?", + "question_toks": [ + "Give", + "the", + "average", + "life", + "expectancy", + "for", + "countries", + "in", + "Africa", + "which", + "are", + "republics", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 5, + [ + 0, + [ + 0, + 15, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 10, + false + ], + null + ], + "\"Africa\"", + null + ], + "and", + [ + false, + 2, + [ + 0, + [ + 0, + 19, + false + ], + null + ], + "\"Republic\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "world_1", + "query": "SELECT sum(SurfaceArea) FROM country WHERE Continent = \"Asia\" OR Continent = \"Europe\"", + "query_toks": [ + "SELECT", + "sum", + "(", + "SurfaceArea", + ")", + "FROM", + "country", + "WHERE", + "Continent", + "=", + "``", + "Asia", + "''", + "OR", + "Continent", + "=", + "``", + "Europe", + "''" + ], + "query_toks_no_value": [ + "select", + "sum", + "(", + "surfacearea", + ")", + "from", + "country", + "where", + "continent", + "=", + "value", + "or", + "continent", + "=", + "value" + ], + "question": "What is the total surface area of the continents Asia and Europe?", + "question_toks": [ + "What", + "is", + "the", + "total", + "surface", + "area", + "of", + "the", + "continents", + "Asia", + "and", + "Europe", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 4, + [ + 0, + [ + 0, + 12, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 10, + false + ], + null + ], + "\"Asia\"", + null + ], + "or", + [ + false, + 2, + [ + 0, + [ + 0, + 10, + false + ], + null + ], + "\"Europe\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "world_1", + "query": "SELECT sum(SurfaceArea) FROM country WHERE Continent = \"Asia\" OR Continent = \"Europe\"", + "query_toks": [ + "SELECT", + "sum", + "(", + "SurfaceArea", + ")", + "FROM", + "country", + "WHERE", + "Continent", + "=", + "``", + "Asia", + "''", + "OR", + "Continent", + "=", + "``", + "Europe", + "''" + ], + "query_toks_no_value": [ + "select", + "sum", + "(", + "surfacearea", + ")", + "from", + "country", + "where", + "continent", + "=", + "value", + "or", + "continent", + "=", + "value" + ], + "question": "Give the total surface area covered by countries in Asia or Europe.", + "question_toks": [ + "Give", + "the", + "total", + "surface", + "area", + "covered", + "by", + "countries", + "in", + "Asia", + "or", + "Europe", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 4, + [ + 0, + [ + 0, + 12, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 10, + false + ], + null + ], + "\"Asia\"", + null + ], + "or", + [ + false, + 2, + [ + 0, + [ + 0, + 10, + false + ], + null + ], + "\"Europe\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "world_1", + "query": "SELECT sum(Population) FROM city WHERE District = \"Gelderland\"", + "query_toks": [ + "SELECT", + "sum", + "(", + "Population", + ")", + "FROM", + "city", + "WHERE", + "District", + "=", + "``", + "Gelderland", + "''" + ], + "query_toks_no_value": [ + "select", + "sum", + "(", + "population", + ")", + "from", + "city", + "where", + "district", + "=", + "value" + ], + "question": "How many people live in Gelderland district?", + "question_toks": [ + "How", + "many", + "people", + "live", + "in", + "Gelderland", + "district", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 4, + [ + 0, + [ + 0, + 5, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 4, + false + ], + null + ], + "\"Gelderland\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "world_1", + "query": "SELECT sum(Population) FROM city WHERE District = \"Gelderland\"", + "query_toks": [ + "SELECT", + "sum", + "(", + "Population", + ")", + "FROM", + "city", + "WHERE", + "District", + "=", + "``", + "Gelderland", + "''" + ], + "query_toks_no_value": [ + "select", + "sum", + "(", + "population", + ")", + "from", + "city", + "where", + "district", + "=", + "value" + ], + "question": "What is the total population of Gelderland district?", + "question_toks": [ + "What", + "is", + "the", + "total", + "population", + "of", + "Gelderland", + "district", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 4, + [ + 0, + [ + 0, + 5, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 4, + false + ], + null + ], + "\"Gelderland\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "world_1", + "query": "SELECT avg(GNP) , sum(population) FROM country WHERE GovernmentForm = \"US Territory\"", + "query_toks": [ + "SELECT", + "avg", + "(", + "GNP", + ")", + ",", + "sum", + "(", + "population", + ")", + "FROM", + "country", + "WHERE", + "GovernmentForm", + "=", + "``", + "US", + "Territory", + "''" + ], + "query_toks_no_value": [ + "select", + "avg", + "(", + "gnp", + ")", + ",", + "sum", + "(", + "population", + ")", + "from", + "country", + "where", + "governmentform", + "=", + "value" + ], + "question": "What is the average GNP and total population in all nations whose government is US territory?", + "question_toks": [ + "What", + "is", + "the", + "average", + "GNP", + "and", + "total", + "population", + "in", + "all", + "nations", + "whose", + "government", + "is", + "US", + "territory", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 5, + [ + 0, + [ + 0, + 16, + false + ], + null + ] + ], + [ + 4, + [ + 0, + [ + 0, + 14, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 19, + false + ], + null + ], + "\"US Territory\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "world_1", + "query": "SELECT avg(GNP) , sum(population) FROM country WHERE GovernmentForm = \"US Territory\"", + "query_toks": [ + "SELECT", + "avg", + "(", + "GNP", + ")", + ",", + "sum", + "(", + "population", + ")", + "FROM", + "country", + "WHERE", + "GovernmentForm", + "=", + "``", + "US", + "Territory", + "''" + ], + "query_toks_no_value": [ + "select", + "avg", + "(", + "gnp", + ")", + ",", + "sum", + "(", + "population", + ")", + "from", + "country", + "where", + "governmentform", + "=", + "value" + ], + "question": "Give the mean GNP and total population of nations which are considered US territory.", + "question_toks": [ + "Give", + "the", + "mean", + "GNP", + "and", + "total", + "population", + "of", + "nations", + "which", + "are", + "considered", + "US", + "territory", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 5, + [ + 0, + [ + 0, + 16, + false + ], + null + ] + ], + [ + 4, + [ + 0, + [ + 0, + 14, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 19, + false + ], + null + ], + "\"US Territory\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "world_1", + "query": "SELECT count(DISTINCT LANGUAGE) FROM countrylanguage", + "query_toks": [ + "SELECT", + "count", + "(", + "DISTINCT", + "LANGUAGE", + ")", + "FROM", + "countrylanguage" + ], + "query_toks_no_value": [ + "select", + "count", + "(", + "distinct", + "language", + ")", + "from", + "countrylanguage" + ], + "question": "How many unique languages are spoken in the world?", + "question_toks": [ + "How", + "many", + "unique", + "languages", + "are", + "spoken", + "in", + "the", + "world", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 3 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 3, + [ + 0, + [ + 0, + 24, + true + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "world_1", + "query": "SELECT count(DISTINCT LANGUAGE) FROM countrylanguage", + "query_toks": [ + "SELECT", + "count", + "(", + "DISTINCT", + "LANGUAGE", + ")", + "FROM", + "countrylanguage" + ], + "query_toks_no_value": [ + "select", + "count", + "(", + "distinct", + "language", + ")", + "from", + "countrylanguage" + ], + "question": "What is the number of distinct languages used around the world?", + "question_toks": [ + "What", + "is", + "the", + "number", + "of", + "distinct", + "languages", + "used", + "around", + "the", + "world", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 3 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 3, + [ + 0, + [ + 0, + 24, + true + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "world_1", + "query": "SELECT count(DISTINCT GovernmentForm) FROM country WHERE Continent = \"Africa\"", + "query_toks": [ + "SELECT", + "count", + "(", + "DISTINCT", + "GovernmentForm", + ")", + "FROM", + "country", + "WHERE", + "Continent", + "=", + "``", + "Africa", + "''" + ], + "query_toks_no_value": [ + "select", + "count", + "(", + "distinct", + "governmentform", + ")", + "from", + "country", + "where", + "continent", + "=", + "value" + ], + "question": "How many type of governments are in Africa?", + "question_toks": [ + "How", + "many", + "type", + "of", + "governments", + "are", + "in", + "Africa", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 3, + [ + 0, + [ + 0, + 19, + true + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 10, + false + ], + null + ], + "\"Africa\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "world_1", + "query": "SELECT count(DISTINCT GovernmentForm) FROM country WHERE Continent = \"Africa\"", + "query_toks": [ + "SELECT", + "count", + "(", + "DISTINCT", + "GovernmentForm", + ")", + "FROM", + "country", + "WHERE", + "Continent", + "=", + "``", + "Africa", + "''" + ], + "query_toks_no_value": [ + "select", + "count", + "(", + "distinct", + "governmentform", + ")", + "from", + "country", + "where", + "continent", + "=", + "value" + ], + "question": "How many different forms of governments are there in Africa?", + "question_toks": [ + "How", + "many", + "different", + "forms", + "of", + "governments", + "are", + "there", + "in", + "Africa", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 3, + [ + 0, + [ + 0, + 19, + true + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 10, + false + ], + null + ], + "\"Africa\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "world_1", + "query": "SELECT COUNT(T2.Language) FROM country AS T1 JOIN countrylanguage AS T2 ON T1.Code = T2.CountryCode WHERE T1.Name = \"Aruba\"", + "query_toks": [ + "SELECT", + "COUNT", + "(", + "T2.Language", + ")", + "FROM", + "country", + "AS", + "T1", + "JOIN", + "countrylanguage", + "AS", + "T2", + "ON", + "T1.Code", + "=", + "T2.CountryCode", + "WHERE", + "T1.Name", + "=", + "``", + "Aruba", + "''" + ], + "query_toks_no_value": [ + "select", + "count", + "(", + "t2", + ".", + "language", + ")", + "from", + "country", + "as", + "t1", + "join", + "countrylanguage", + "as", + "t2", + "on", + "t1", + ".", + "code", + "=", + "t2", + ".", + "countrycode", + "where", + "t1", + ".", + "name", + "=", + "value" + ], + "question": "What is the total number of languages used in Aruba?", + "question_toks": [ + "What", + "is", + "the", + "total", + "number", + "of", + "languages", + "used", + "in", + "Aruba", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ], + [ + "table_unit", + 3 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 8, + false + ], + null + ], + [ + 0, + 23, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 3, + [ + 0, + [ + 0, + 24, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 9, + false + ], + null + ], + "\"Aruba\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "world_1", + "query": "SELECT COUNT(T2.Language) FROM country AS T1 JOIN countrylanguage AS T2 ON T1.Code = T2.CountryCode WHERE T1.Name = \"Aruba\"", + "query_toks": [ + "SELECT", + "COUNT", + "(", + "T2.Language", + ")", + "FROM", + "country", + "AS", + "T1", + "JOIN", + "countrylanguage", + "AS", + "T2", + "ON", + "T1.Code", + "=", + "T2.CountryCode", + "WHERE", + "T1.Name", + "=", + "``", + "Aruba", + "''" + ], + "query_toks_no_value": [ + "select", + "count", + "(", + "t2", + ".", + "language", + ")", + "from", + "country", + "as", + "t1", + "join", + "countrylanguage", + "as", + "t2", + "on", + "t1", + ".", + "code", + "=", + "t2", + ".", + "countrycode", + "where", + "t1", + ".", + "name", + "=", + "value" + ], + "question": "How many languages are spoken in Aruba?", + "question_toks": [ + "How", + "many", + "languages", + "are", + "spoken", + "in", + "Aruba", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ], + [ + "table_unit", + 3 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 8, + false + ], + null + ], + [ + 0, + 23, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 3, + [ + 0, + [ + 0, + 24, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 9, + false + ], + null + ], + "\"Aruba\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "world_1", + "query": "SELECT COUNT(*) FROM country AS T1 JOIN countrylanguage AS T2 ON T1.Code = T2.CountryCode WHERE T1.Name = \"Afghanistan\" AND IsOfficial = \"T\"", + "query_toks": [ + "SELECT", + "COUNT", + "(", + "*", + ")", + "FROM", + "country", + "AS", + "T1", + "JOIN", + "countrylanguage", + "AS", + "T2", + "ON", + "T1.Code", + "=", + "T2.CountryCode", + "WHERE", + "T1.Name", + "=", + "``", + "Afghanistan", + "''", + "AND", + "IsOfficial", + "=", + "``", + "T", + "''" + ], + "query_toks_no_value": [ + "select", + "count", + "(", + "*", + ")", + "from", + "country", + "as", + "t1", + "join", + "countrylanguage", + "as", + "t2", + "on", + "t1", + ".", + "code", + "=", + "t2", + ".", + "countrycode", + "where", + "t1", + ".", + "name", + "=", + "value", + "and", + "isofficial", + "=", + "value" + ], + "question": "How many official languages does Afghanistan have?", + "question_toks": [ + "How", + "many", + "official", + "languages", + "does", + "Afghanistan", + "have", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ], + [ + "table_unit", + 3 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 8, + false + ], + null + ], + [ + 0, + 23, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 3, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 9, + false + ], + null + ], + "\"Afghanistan\"", + null + ], + "and", + [ + false, + 2, + [ + 0, + [ + 0, + 25, + false + ], + null + ], + "\"T\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "world_1", + "query": "SELECT COUNT(*) FROM country AS T1 JOIN countrylanguage AS T2 ON T1.Code = T2.CountryCode WHERE T1.Name = \"Afghanistan\" AND IsOfficial = \"T\"", + "query_toks": [ + "SELECT", + "COUNT", + "(", + "*", + ")", + "FROM", + "country", + "AS", + "T1", + "JOIN", + "countrylanguage", + "AS", + "T2", + "ON", + "T1.Code", + "=", + "T2.CountryCode", + "WHERE", + "T1.Name", + "=", + "``", + "Afghanistan", + "''", + "AND", + "IsOfficial", + "=", + "``", + "T", + "''" + ], + "query_toks_no_value": [ + "select", + "count", + "(", + "*", + ")", + "from", + "country", + "as", + "t1", + "join", + "countrylanguage", + "as", + "t2", + "on", + "t1", + ".", + "code", + "=", + "t2", + ".", + "countrycode", + "where", + "t1", + ".", + "name", + "=", + "value", + "and", + "isofficial", + "=", + "value" + ], + "question": "How many official languages are spoken in Afghanistan?", + "question_toks": [ + "How", + "many", + "official", + "languages", + "are", + "spoken", + "in", + "Afghanistan", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ], + [ + "table_unit", + 3 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 8, + false + ], + null + ], + [ + 0, + 23, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 3, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 9, + false + ], + null + ], + "\"Afghanistan\"", + null + ], + "and", + [ + false, + 2, + [ + 0, + [ + 0, + 25, + false + ], + null + ], + "\"T\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "world_1", + "query": "SELECT T1.Name FROM country AS T1 JOIN countrylanguage AS T2 ON T1.Code = T2.CountryCode GROUP BY T1.Name ORDER BY COUNT(*) DESC LIMIT 1", + "query_toks": [ + "SELECT", + "T1.Name", + "FROM", + "country", + "AS", + "T1", + "JOIN", + "countrylanguage", + "AS", + "T2", + "ON", + "T1.Code", + "=", + "T2.CountryCode", + "GROUP", + "BY", + "T1.Name", + "ORDER", + "BY", + "COUNT", + "(", + "*", + ")", + "DESC", + "LIMIT", + "1" + ], + "query_toks_no_value": [ + "select", + "t1", + ".", + "name", + "from", + "country", + "as", + "t1", + "join", + "countrylanguage", + "as", + "t2", + "on", + "t1", + ".", + "code", + "=", + "t2", + ".", + "countrycode", + "group", + "by", + "t1", + ".", + "name", + "order", + "by", + "count", + "(", + "*", + ")", + "desc", + "limit", + "value" + ], + "question": "What is name of the country that speaks the largest number of languages?", + "question_toks": [ + "What", + "is", + "name", + "of", + "the", + "country", + "that", + "speaks", + "the", + "largest", + "number", + "of", + "languages", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ], + [ + "table_unit", + 3 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 8, + false + ], + null + ], + [ + 0, + 23, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 9, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 9, + false + ] + ], + "having": [], + "orderBy": [ + "desc", + [ + [ + 0, + [ + 3, + 0, + false + ], + null + ] + ] + ], + "limit": 1, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "world_1", + "query": "SELECT T1.Name FROM country AS T1 JOIN countrylanguage AS T2 ON T1.Code = T2.CountryCode GROUP BY T1.Name ORDER BY COUNT(*) DESC LIMIT 1", + "query_toks": [ + "SELECT", + "T1.Name", + "FROM", + "country", + "AS", + "T1", + "JOIN", + "countrylanguage", + "AS", + "T2", + "ON", + "T1.Code", + "=", + "T2.CountryCode", + "GROUP", + "BY", + "T1.Name", + "ORDER", + "BY", + "COUNT", + "(", + "*", + ")", + "DESC", + "LIMIT", + "1" + ], + "query_toks_no_value": [ + "select", + "t1", + ".", + "name", + "from", + "country", + "as", + "t1", + "join", + "countrylanguage", + "as", + "t2", + "on", + "t1", + ".", + "code", + "=", + "t2", + ".", + "countrycode", + "group", + "by", + "t1", + ".", + "name", + "order", + "by", + "count", + "(", + "*", + ")", + "desc", + "limit", + "value" + ], + "question": "Give the name of the nation that uses the greatest amount of languages.", + "question_toks": [ + "Give", + "the", + "name", + "of", + "the", + "nation", + "that", + "uses", + "the", + "greatest", + "amount", + "of", + "languages", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ], + [ + "table_unit", + 3 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 8, + false + ], + null + ], + [ + 0, + 23, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 9, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 9, + false + ] + ], + "having": [], + "orderBy": [ + "desc", + [ + [ + 0, + [ + 3, + 0, + false + ], + null + ] + ] + ], + "limit": 1, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "world_1", + "query": "SELECT T1.Continent FROM country AS T1 JOIN countrylanguage AS T2 ON T1.Code = T2.CountryCode GROUP BY T1.Continent ORDER BY COUNT(*) DESC LIMIT 1", + "query_toks": [ + "SELECT", + "T1.Continent", + "FROM", + "country", + "AS", + "T1", + "JOIN", + "countrylanguage", + "AS", + "T2", + "ON", + "T1.Code", + "=", + "T2.CountryCode", + "GROUP", + "BY", + "T1.Continent", + "ORDER", + "BY", + "COUNT", + "(", + "*", + ")", + "DESC", + "LIMIT", + "1" + ], + "query_toks_no_value": [ + "select", + "t1", + ".", + "continent", + "from", + "country", + "as", + "t1", + "join", + "countrylanguage", + "as", + "t2", + "on", + "t1", + ".", + "code", + "=", + "t2", + ".", + "countrycode", + "group", + "by", + "t1", + ".", + "continent", + "order", + "by", + "count", + "(", + "*", + ")", + "desc", + "limit", + "value" + ], + "question": "Which continent has the most diverse languages?", + "question_toks": [ + "Which", + "continent", + "has", + "the", + "most", + "diverse", + "languages", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ], + [ + "table_unit", + 3 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 8, + false + ], + null + ], + [ + 0, + 23, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 10, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 10, + false + ] + ], + "having": [], + "orderBy": [ + "desc", + [ + [ + 0, + [ + 3, + 0, + false + ], + null + ] + ] + ], + "limit": 1, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "world_1", + "query": "SELECT T1.Continent FROM country AS T1 JOIN countrylanguage AS T2 ON T1.Code = T2.CountryCode GROUP BY T1.Continent ORDER BY COUNT(*) DESC LIMIT 1", + "query_toks": [ + "SELECT", + "T1.Continent", + "FROM", + "country", + "AS", + "T1", + "JOIN", + "countrylanguage", + "AS", + "T2", + "ON", + "T1.Code", + "=", + "T2.CountryCode", + "GROUP", + "BY", + "T1.Continent", + "ORDER", + "BY", + "COUNT", + "(", + "*", + ")", + "DESC", + "LIMIT", + "1" + ], + "query_toks_no_value": [ + "select", + "t1", + ".", + "continent", + "from", + "country", + "as", + "t1", + "join", + "countrylanguage", + "as", + "t2", + "on", + "t1", + ".", + "code", + "=", + "t2", + ".", + "countrycode", + "group", + "by", + "t1", + ".", + "continent", + "order", + "by", + "count", + "(", + "*", + ")", + "desc", + "limit", + "value" + ], + "question": "Which continent speaks the most languages?", + "question_toks": [ + "Which", + "continent", + "speaks", + "the", + "most", + "languages", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ], + [ + "table_unit", + 3 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 8, + false + ], + null + ], + [ + 0, + 23, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 10, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 10, + false + ] + ], + "having": [], + "orderBy": [ + "desc", + [ + [ + 0, + [ + 3, + 0, + false + ], + null + ] + ] + ], + "limit": 1, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "world_1", + "query": "SELECT COUNT(*) FROM (SELECT T1.Name FROM country AS T1 JOIN countrylanguage AS T2 ON T1.Code = T2.CountryCode WHERE T2.Language = \"English\" INTERSECT SELECT T1.Name FROM country AS T1 JOIN countrylanguage AS T2 ON T1.Code = T2.CountryCode WHERE T2.Language = \"Dutch\")", + "query_toks": [ + "SELECT", + "COUNT", + "(", + "*", + ")", + "FROM", + "(", + "SELECT", + "T1.Name", + "FROM", + "country", + "AS", + "T1", + "JOIN", + "countrylanguage", + "AS", + "T2", + "ON", + "T1.Code", + "=", + "T2.CountryCode", + "WHERE", + "T2.Language", + "=", + "``", + "English", + "''", + "INTERSECT", + "SELECT", + "T1.Name", + "FROM", + "country", + "AS", + "T1", + "JOIN", + "countrylanguage", + "AS", + "T2", + "ON", + "T1.Code", + "=", + "T2.CountryCode", + "WHERE", + "T2.Language", + "=", + "``", + "Dutch", + "''", + ")" + ], + "query_toks_no_value": [ + "select", + "count", + "(", + "*", + ")", + "from", + "(", + "select", + "t1", + ".", + "name", + "from", + "country", + "as", + "t1", + "join", + "countrylanguage", + "as", + "t2", + "on", + "t1", + ".", + "code", + "=", + "t2", + ".", + "countrycode", + "where", + "t2", + ".", + "language", + "=", + "value", + "intersect", + "select", + "t1", + ".", + "name", + "from", + "country", + "as", + "t1", + "join", + "countrylanguage", + "as", + "t2", + "on", + "t1", + ".", + "code", + "=", + "t2", + ".", + "countrycode", + "where", + "t2", + ".", + "language", + "=", + "value", + ")" + ], + "question": "How many countries speak both English and Dutch?", + "question_toks": [ + "How", + "many", + "countries", + "speak", + "both", + "English", + "and", + "Dutch", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "sql", + { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ], + [ + "table_unit", + 3 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 8, + false + ], + null + ], + [ + 0, + 23, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 9, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 24, + false + ], + null + ], + "\"English\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ], + [ + "table_unit", + 3 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 8, + false + ], + null + ], + [ + 0, + 23, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 9, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 24, + false + ], + null + ], + "\"Dutch\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + }, + "union": null, + "except": null + } + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 3, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "world_1", + "query": "SELECT COUNT(*) FROM (SELECT T1.Name FROM country AS T1 JOIN countrylanguage AS T2 ON T1.Code = T2.CountryCode WHERE T2.Language = \"English\" INTERSECT SELECT T1.Name FROM country AS T1 JOIN countrylanguage AS T2 ON T1.Code = T2.CountryCode WHERE T2.Language = \"Dutch\")", + "query_toks": [ + "SELECT", + "COUNT", + "(", + "*", + ")", + "FROM", + "(", + "SELECT", + "T1.Name", + "FROM", + "country", + "AS", + "T1", + "JOIN", + "countrylanguage", + "AS", + "T2", + "ON", + "T1.Code", + "=", + "T2.CountryCode", + "WHERE", + "T2.Language", + "=", + "``", + "English", + "''", + "INTERSECT", + "SELECT", + "T1.Name", + "FROM", + "country", + "AS", + "T1", + "JOIN", + "countrylanguage", + "AS", + "T2", + "ON", + "T1.Code", + "=", + "T2.CountryCode", + "WHERE", + "T2.Language", + "=", + "``", + "Dutch", + "''", + ")" + ], + "query_toks_no_value": [ + "select", + "count", + "(", + "*", + ")", + "from", + "(", + "select", + "t1", + ".", + "name", + "from", + "country", + "as", + "t1", + "join", + "countrylanguage", + "as", + "t2", + "on", + "t1", + ".", + "code", + "=", + "t2", + ".", + "countrycode", + "where", + "t2", + ".", + "language", + "=", + "value", + "intersect", + "select", + "t1", + ".", + "name", + "from", + "country", + "as", + "t1", + "join", + "countrylanguage", + "as", + "t2", + "on", + "t1", + ".", + "code", + "=", + "t2", + ".", + "countrycode", + "where", + "t2", + ".", + "language", + "=", + "value", + ")" + ], + "question": "What is the number of nations that use English and Dutch?", + "question_toks": [ + "What", + "is", + "the", + "number", + "of", + "nations", + "that", + "use", + "English", + "and", + "Dutch", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "sql", + { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ], + [ + "table_unit", + 3 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 8, + false + ], + null + ], + [ + 0, + 23, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 9, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 24, + false + ], + null + ], + "\"English\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ], + [ + "table_unit", + 3 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 8, + false + ], + null + ], + [ + 0, + 23, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 9, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 24, + false + ], + null + ], + "\"Dutch\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + }, + "union": null, + "except": null + } + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 3, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "world_1", + "query": "SELECT T1.Name FROM country AS T1 JOIN countrylanguage AS T2 ON T1.Code = T2.CountryCode WHERE T2.Language = \"English\" INTERSECT SELECT T1.Name FROM country AS T1 JOIN countrylanguage AS T2 ON T1.Code = T2.CountryCode WHERE T2.Language = \"French\"", + "query_toks": [ + "SELECT", + "T1.Name", + "FROM", + "country", + "AS", + "T1", + "JOIN", + "countrylanguage", + "AS", + "T2", + "ON", + "T1.Code", + "=", + "T2.CountryCode", + "WHERE", + "T2.Language", + "=", + "``", + "English", + "''", + "INTERSECT", + "SELECT", + "T1.Name", + "FROM", + "country", + "AS", + "T1", + "JOIN", + "countrylanguage", + "AS", + "T2", + "ON", + "T1.Code", + "=", + "T2.CountryCode", + "WHERE", + "T2.Language", + "=", + "``", + "French", + "''" + ], + "query_toks_no_value": [ + "select", + "t1", + ".", + "name", + "from", + "country", + "as", + "t1", + "join", + "countrylanguage", + "as", + "t2", + "on", + "t1", + ".", + "code", + "=", + "t2", + ".", + "countrycode", + "where", + "t2", + ".", + "language", + "=", + "value", + "intersect", + "select", + "t1", + ".", + "name", + "from", + "country", + "as", + "t1", + "join", + "countrylanguage", + "as", + "t2", + "on", + "t1", + ".", + "code", + "=", + "t2", + ".", + "countrycode", + "where", + "t2", + ".", + "language", + "=", + "value" + ], + "question": "What are the names of nations speak both English and French?", + "question_toks": [ + "What", + "are", + "the", + "names", + "of", + "nations", + "speak", + "both", + "English", + "and", + "French", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ], + [ + "table_unit", + 3 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 8, + false + ], + null + ], + [ + 0, + 23, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 9, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 24, + false + ], + null + ], + "\"English\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ], + [ + "table_unit", + 3 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 8, + false + ], + null + ], + [ + 0, + 23, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 9, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 24, + false + ], + null + ], + "\"French\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + }, + "union": null, + "except": null + } + }, + { + "db_id": "world_1", + "query": "SELECT T1.Name FROM country AS T1 JOIN countrylanguage AS T2 ON T1.Code = T2.CountryCode WHERE T2.Language = \"English\" INTERSECT SELECT T1.Name FROM country AS T1 JOIN countrylanguage AS T2 ON T1.Code = T2.CountryCode WHERE T2.Language = \"French\"", + "query_toks": [ + "SELECT", + "T1.Name", + "FROM", + "country", + "AS", + "T1", + "JOIN", + "countrylanguage", + "AS", + "T2", + "ON", + "T1.Code", + "=", + "T2.CountryCode", + "WHERE", + "T2.Language", + "=", + "``", + "English", + "''", + "INTERSECT", + "SELECT", + "T1.Name", + "FROM", + "country", + "AS", + "T1", + "JOIN", + "countrylanguage", + "AS", + "T2", + "ON", + "T1.Code", + "=", + "T2.CountryCode", + "WHERE", + "T2.Language", + "=", + "``", + "French", + "''" + ], + "query_toks_no_value": [ + "select", + "t1", + ".", + "name", + "from", + "country", + "as", + "t1", + "join", + "countrylanguage", + "as", + "t2", + "on", + "t1", + ".", + "code", + "=", + "t2", + ".", + "countrycode", + "where", + "t2", + ".", + "language", + "=", + "value", + "intersect", + "select", + "t1", + ".", + "name", + "from", + "country", + "as", + "t1", + "join", + "countrylanguage", + "as", + "t2", + "on", + "t1", + ".", + "code", + "=", + "t2", + ".", + "countrycode", + "where", + "t2", + ".", + "language", + "=", + "value" + ], + "question": "Give the names of nations that speak both English and French.", + "question_toks": [ + "Give", + "the", + "names", + "of", + "nations", + "that", + "speak", + "both", + "English", + "and", + "French", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ], + [ + "table_unit", + 3 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 8, + false + ], + null + ], + [ + 0, + 23, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 9, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 24, + false + ], + null + ], + "\"English\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ], + [ + "table_unit", + 3 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 8, + false + ], + null + ], + [ + 0, + 23, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 9, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 24, + false + ], + null + ], + "\"French\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + }, + "union": null, + "except": null + } + }, + { + "db_id": "world_1", + "query": "SELECT T1.Name FROM country AS T1 JOIN countrylanguage AS T2 ON T1.Code = T2.CountryCode WHERE T2.Language = \"English\" AND T2.IsOfficial = \"T\" INTERSECT SELECT T1.Name FROM country AS T1 JOIN countrylanguage AS T2 ON T1.Code = T2.CountryCode WHERE T2.Language = \"French\" AND T2.IsOfficial = \"T\"", + "query_toks": [ + "SELECT", + "T1.Name", + "FROM", + "country", + "AS", + "T1", + "JOIN", + "countrylanguage", + "AS", + "T2", + "ON", + "T1.Code", + "=", + "T2.CountryCode", + "WHERE", + "T2.Language", + "=", + "``", + "English", + "''", + "AND", + "T2.IsOfficial", + "=", + "``", + "T", + "''", + "INTERSECT", + "SELECT", + "T1.Name", + "FROM", + "country", + "AS", + "T1", + "JOIN", + "countrylanguage", + "AS", + "T2", + "ON", + "T1.Code", + "=", + "T2.CountryCode", + "WHERE", + "T2.Language", + "=", + "``", + "French", + "''", + "AND", + "T2.IsOfficial", + "=", + "``", + "T", + "''" + ], + "query_toks_no_value": [ + "select", + "t1", + ".", + "name", + "from", + "country", + "as", + "t1", + "join", + "countrylanguage", + "as", + "t2", + "on", + "t1", + ".", + "code", + "=", + "t2", + ".", + "countrycode", + "where", + "t2", + ".", + "language", + "=", + "value", + "and", + "t2", + ".", + "isofficial", + "=", + "value", + "intersect", + "select", + "t1", + ".", + "name", + "from", + "country", + "as", + "t1", + "join", + "countrylanguage", + "as", + "t2", + "on", + "t1", + ".", + "code", + "=", + "t2", + ".", + "countrycode", + "where", + "t2", + ".", + "language", + "=", + "value", + "and", + "t2", + ".", + "isofficial", + "=", + "value" + ], + "question": "What are the names of nations where both English and French are official languages?", + "question_toks": [ + "What", + "are", + "the", + "names", + "of", + "nations", + "where", + "both", + "English", + "and", + "French", + "are", + "official", + "languages", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ], + [ + "table_unit", + 3 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 8, + false + ], + null + ], + [ + 0, + 23, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 9, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 24, + false + ], + null + ], + "\"English\"", + null + ], + "and", + [ + false, + 2, + [ + 0, + [ + 0, + 25, + false + ], + null + ], + "\"T\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ], + [ + "table_unit", + 3 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 8, + false + ], + null + ], + [ + 0, + 23, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 9, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 24, + false + ], + null + ], + "\"French\"", + null + ], + "and", + [ + false, + 2, + [ + 0, + [ + 0, + 25, + false + ], + null + ], + "\"T\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + }, + "union": null, + "except": null + } + }, + { + "db_id": "world_1", + "query": "SELECT T1.Name FROM country AS T1 JOIN countrylanguage AS T2 ON T1.Code = T2.CountryCode WHERE T2.Language = \"English\" AND T2.IsOfficial = \"T\" INTERSECT SELECT T1.Name FROM country AS T1 JOIN countrylanguage AS T2 ON T1.Code = T2.CountryCode WHERE T2.Language = \"French\" AND T2.IsOfficial = \"T\"", + "query_toks": [ + "SELECT", + "T1.Name", + "FROM", + "country", + "AS", + "T1", + "JOIN", + "countrylanguage", + "AS", + "T2", + "ON", + "T1.Code", + "=", + "T2.CountryCode", + "WHERE", + "T2.Language", + "=", + "``", + "English", + "''", + "AND", + "T2.IsOfficial", + "=", + "``", + "T", + "''", + "INTERSECT", + "SELECT", + "T1.Name", + "FROM", + "country", + "AS", + "T1", + "JOIN", + "countrylanguage", + "AS", + "T2", + "ON", + "T1.Code", + "=", + "T2.CountryCode", + "WHERE", + "T2.Language", + "=", + "``", + "French", + "''", + "AND", + "T2.IsOfficial", + "=", + "``", + "T", + "''" + ], + "query_toks_no_value": [ + "select", + "t1", + ".", + "name", + "from", + "country", + "as", + "t1", + "join", + "countrylanguage", + "as", + "t2", + "on", + "t1", + ".", + "code", + "=", + "t2", + ".", + "countrycode", + "where", + "t2", + ".", + "language", + "=", + "value", + "and", + "t2", + ".", + "isofficial", + "=", + "value", + "intersect", + "select", + "t1", + ".", + "name", + "from", + "country", + "as", + "t1", + "join", + "countrylanguage", + "as", + "t2", + "on", + "t1", + ".", + "code", + "=", + "t2", + ".", + "countrycode", + "where", + "t2", + ".", + "language", + "=", + "value", + "and", + "t2", + ".", + "isofficial", + "=", + "value" + ], + "question": "Give the names of countries with English and French as official languages.", + "question_toks": [ + "Give", + "the", + "names", + "of", + "countries", + "with", + "English", + "and", + "French", + "as", + "official", + "languages", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ], + [ + "table_unit", + 3 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 8, + false + ], + null + ], + [ + 0, + 23, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 9, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 24, + false + ], + null + ], + "\"English\"", + null + ], + "and", + [ + false, + 2, + [ + 0, + [ + 0, + 25, + false + ], + null + ], + "\"T\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ], + [ + "table_unit", + 3 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 8, + false + ], + null + ], + [ + 0, + 23, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 9, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 24, + false + ], + null + ], + "\"French\"", + null + ], + "and", + [ + false, + 2, + [ + 0, + [ + 0, + 25, + false + ], + null + ], + "\"T\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + }, + "union": null, + "except": null + } + }, + { + "db_id": "world_1", + "query": "SELECT COUNT( DISTINCT Continent) FROM country AS T1 JOIN countrylanguage AS T2 ON T1.Code = T2.CountryCode WHERE T2.Language = \"Chinese\"", + "query_toks": [ + "SELECT", + "COUNT", + "(", + "DISTINCT", + "Continent", + ")", + "FROM", + "country", + "AS", + "T1", + "JOIN", + "countrylanguage", + "AS", + "T2", + "ON", + "T1.Code", + "=", + "T2.CountryCode", + "WHERE", + "T2.Language", + "=", + "``", + "Chinese", + "''" + ], + "query_toks_no_value": [ + "select", + "count", + "(", + "distinct", + "continent", + ")", + "from", + "country", + "as", + "t1", + "join", + "countrylanguage", + "as", + "t2", + "on", + "t1", + ".", + "code", + "=", + "t2", + ".", + "countrycode", + "where", + "t2", + ".", + "language", + "=", + "value" + ], + "question": "What is the number of distinct continents where Chinese is spoken?", + "question_toks": [ + "What", + "is", + "the", + "number", + "of", + "distinct", + "continents", + "where", + "Chinese", + "is", + "spoken", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ], + [ + "table_unit", + 3 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 8, + false + ], + null + ], + [ + 0, + 23, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 3, + [ + 0, + [ + 0, + 10, + true + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 24, + false + ], + null + ], + "\"Chinese\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "world_1", + "query": "SELECT COUNT( DISTINCT Continent) FROM country AS T1 JOIN countrylanguage AS T2 ON T1.Code = T2.CountryCode WHERE T2.Language = \"Chinese\"", + "query_toks": [ + "SELECT", + "COUNT", + "(", + "DISTINCT", + "Continent", + ")", + "FROM", + "country", + "AS", + "T1", + "JOIN", + "countrylanguage", + "AS", + "T2", + "ON", + "T1.Code", + "=", + "T2.CountryCode", + "WHERE", + "T2.Language", + "=", + "``", + "Chinese", + "''" + ], + "query_toks_no_value": [ + "select", + "count", + "(", + "distinct", + "continent", + ")", + "from", + "country", + "as", + "t1", + "join", + "countrylanguage", + "as", + "t2", + "on", + "t1", + ".", + "code", + "=", + "t2", + ".", + "countrycode", + "where", + "t2", + ".", + "language", + "=", + "value" + ], + "question": "How many continents speak Chinese?", + "question_toks": [ + "How", + "many", + "continents", + "speak", + "Chinese", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ], + [ + "table_unit", + 3 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 8, + false + ], + null + ], + [ + 0, + 23, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 3, + [ + 0, + [ + 0, + 10, + true + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 24, + false + ], + null + ], + "\"Chinese\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "world_1", + "query": "SELECT DISTINCT T1.Region FROM country AS T1 JOIN countrylanguage AS T2 ON T1.Code = T2.CountryCode WHERE T2.Language = \"English\" OR T2.Language = \"Dutch\"", + "query_toks": [ + "SELECT", + "DISTINCT", + "T1.Region", + "FROM", + "country", + "AS", + "T1", + "JOIN", + "countrylanguage", + "AS", + "T2", + "ON", + "T1.Code", + "=", + "T2.CountryCode", + "WHERE", + "T2.Language", + "=", + "``", + "English", + "''", + "OR", + "T2.Language", + "=", + "``", + "Dutch", + "''" + ], + "query_toks_no_value": [ + "select", + "distinct", + "t1", + ".", + "region", + "from", + "country", + "as", + "t1", + "join", + "countrylanguage", + "as", + "t2", + "on", + "t1", + ".", + "code", + "=", + "t2", + ".", + "countrycode", + "where", + "t2", + ".", + "language", + "=", + "value", + "or", + "t2", + ".", + "language", + "=", + "value" + ], + "question": "What are the regions that use English or Dutch?", + "question_toks": [ + "What", + "are", + "the", + "regions", + "that", + "use", + "English", + "or", + "Dutch", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ], + [ + "table_unit", + 3 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 8, + false + ], + null + ], + [ + 0, + 23, + false + ], + null + ] + ] + }, + "select": [ + true, + [ + [ + 0, + [ + 0, + [ + 0, + 11, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 24, + false + ], + null + ], + "\"English\"", + null + ], + "or", + [ + false, + 2, + [ + 0, + [ + 0, + 24, + false + ], + null + ], + "\"Dutch\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "world_1", + "query": "SELECT DISTINCT T1.Region FROM country AS T1 JOIN countrylanguage AS T2 ON T1.Code = T2.CountryCode WHERE T2.Language = \"English\" OR T2.Language = \"Dutch\"", + "query_toks": [ + "SELECT", + "DISTINCT", + "T1.Region", + "FROM", + "country", + "AS", + "T1", + "JOIN", + "countrylanguage", + "AS", + "T2", + "ON", + "T1.Code", + "=", + "T2.CountryCode", + "WHERE", + "T2.Language", + "=", + "``", + "English", + "''", + "OR", + "T2.Language", + "=", + "``", + "Dutch", + "''" + ], + "query_toks_no_value": [ + "select", + "distinct", + "t1", + ".", + "region", + "from", + "country", + "as", + "t1", + "join", + "countrylanguage", + "as", + "t2", + "on", + "t1", + ".", + "code", + "=", + "t2", + ".", + "countrycode", + "where", + "t2", + ".", + "language", + "=", + "value", + "or", + "t2", + ".", + "language", + "=", + "value" + ], + "question": "Which regions speak Dutch or English?", + "question_toks": [ + "Which", + "regions", + "speak", + "Dutch", + "or", + "English", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ], + [ + "table_unit", + 3 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 8, + false + ], + null + ], + [ + 0, + 23, + false + ], + null + ] + ] + }, + "select": [ + true, + [ + [ + 0, + [ + 0, + [ + 0, + 11, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 24, + false + ], + null + ], + "\"English\"", + null + ], + "or", + [ + false, + 2, + [ + 0, + [ + 0, + 24, + false + ], + null + ], + "\"Dutch\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "world_1", + "query": "select t1.name from country as t1 join countrylanguage as t2 on t1.code = t2.countrycode where t2.language = \"english\" and isofficial = \"t\" union select t1.name from country as t1 join countrylanguage as t2 on t1.code = t2.countrycode where t2.language = \"dutch\" and isofficial = \"t\"", + "query_toks": [ + "select", + "t1.name", + "from", + "country", + "as", + "t1", + "join", + "countrylanguage", + "as", + "t2", + "on", + "t1.code", + "=", + "t2.countrycode", + "where", + "t2.language", + "=", + "\"english\"", + "and", + "isofficial", + "=", + "\"t\"", + "union", + "select", + "t1.name", + "from", + "country", + "as", + "t1", + "join", + "countrylanguage", + "as", + "t2", + "on", + "t1.code", + "=", + "t2.countrycode", + "where", + "t2.language", + "=", + "\"dutch\"", + "and", + "isofficial", + "=", + "\"t\"" + ], + "query_toks_no_value": [ + "select", + "t1", + ".", + "name", + "from", + "country", + "as", + "t1", + "join", + "countrylanguage", + "as", + "t2", + "on", + "t1", + ".", + "code", + "=", + "t2", + ".", + "countrycode", + "where", + "t2", + ".", + "language", + "=", + "value", + "and", + "isofficial", + "=", + "value", + "union", + "select", + "t1", + ".", + "name", + "from", + "country", + "as", + "t1", + "join", + "countrylanguage", + "as", + "t2", + "on", + "t1", + ".", + "code", + "=", + "t2", + ".", + "countrycode", + "where", + "t2", + ".", + "language", + "=", + "value", + "and", + "isofficial", + "=", + "value" + ], + "question": "What are the countries where either English or Dutch is the official language ?", + "question_toks": [ + "What", + "are", + "the", + "countries", + "where", + "either", + "English", + "or", + "Dutch", + "is", + "the", + "official", + "language", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ], + [ + "table_unit", + 3 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 8, + false + ], + null + ], + [ + 0, + 23, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 9, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 24, + false + ], + null + ], + "\"english\"", + null + ], + "and", + [ + false, + 2, + [ + 0, + [ + 0, + 25, + false + ], + null + ], + "\"t\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ], + [ + "table_unit", + 3 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 8, + false + ], + null + ], + [ + 0, + 23, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 9, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 24, + false + ], + null + ], + "\"dutch\"", + null + ], + "and", + [ + false, + 2, + [ + 0, + [ + 0, + 25, + false + ], + null + ], + "\"t\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + }, + "except": null + } + }, + { + "db_id": "world_1", + "query": "SELECT * FROM country AS T1 JOIN countrylanguage AS T2 ON T1.Code = T2.CountryCode WHERE T2.Language = \"English\" AND IsOfficial = \"T\" UNION SELECT * FROM country AS T1 JOIN countrylanguage AS T2 ON T1.Code = T2.CountryCode WHERE T2.Language = \"Dutch\" AND IsOfficial = \"T\"", + "query_toks": [ + "SELECT", + "*", + "FROM", + "country", + "AS", + "T1", + "JOIN", + "countrylanguage", + "AS", + "T2", + "ON", + "T1.Code", + "=", + "T2.CountryCode", + "WHERE", + "T2.Language", + "=", + "``", + "English", + "''", + "AND", + "IsOfficial", + "=", + "``", + "T", + "''", + "UNION", + "SELECT", + "*", + "FROM", + "country", + "AS", + "T1", + "JOIN", + "countrylanguage", + "AS", + "T2", + "ON", + "T1.Code", + "=", + "T2.CountryCode", + "WHERE", + "T2.Language", + "=", + "``", + "Dutch", + "''", + "AND", + "IsOfficial", + "=", + "``", + "T", + "''" + ], + "query_toks_no_value": [ + "select", + "*", + "from", + "country", + "as", + "t1", + "join", + "countrylanguage", + "as", + "t2", + "on", + "t1", + ".", + "code", + "=", + "t2", + ".", + "countrycode", + "where", + "t2", + ".", + "language", + "=", + "value", + "and", + "isofficial", + "=", + "value", + "union", + "select", + "*", + "from", + "country", + "as", + "t1", + "join", + "countrylanguage", + "as", + "t2", + "on", + "t1", + ".", + "code", + "=", + "t2", + ".", + "countrycode", + "where", + "t2", + ".", + "language", + "=", + "value", + "and", + "isofficial", + "=", + "value" + ], + "question": "Which countries have either English or Dutch as an official language?", + "question_toks": [ + "Which", + "countries", + "have", + "either", + "English", + "or", + "Dutch", + "as", + "an", + "official", + "language", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ], + [ + "table_unit", + 3 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 8, + false + ], + null + ], + [ + 0, + 23, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 24, + false + ], + null + ], + "\"English\"", + null + ], + "and", + [ + false, + 2, + [ + 0, + [ + 0, + 25, + false + ], + null + ], + "\"T\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ], + [ + "table_unit", + 3 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 8, + false + ], + null + ], + [ + 0, + 23, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 24, + false + ], + null + ], + "\"Dutch\"", + null + ], + "and", + [ + false, + 2, + [ + 0, + [ + 0, + 25, + false + ], + null + ], + "\"T\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + }, + "except": null + } + }, + { + "db_id": "world_1", + "query": "SELECT T2.Language FROM country AS T1 JOIN countrylanguage AS T2 ON T1.Code = T2.CountryCode WHERE T1.Continent = \"Asia\" GROUP BY T2.Language ORDER BY COUNT (*) DESC LIMIT 1", + "query_toks": [ + "SELECT", + "T2.Language", + "FROM", + "country", + "AS", + "T1", + "JOIN", + "countrylanguage", + "AS", + "T2", + "ON", + "T1.Code", + "=", + "T2.CountryCode", + "WHERE", + "T1.Continent", + "=", + "``", + "Asia", + "''", + "GROUP", + "BY", + "T2.Language", + "ORDER", + "BY", + "COUNT", + "(", + "*", + ")", + "DESC", + "LIMIT", + "1" + ], + "query_toks_no_value": [ + "select", + "t2", + ".", + "language", + "from", + "country", + "as", + "t1", + "join", + "countrylanguage", + "as", + "t2", + "on", + "t1", + ".", + "code", + "=", + "t2", + ".", + "countrycode", + "where", + "t1", + ".", + "continent", + "=", + "value", + "group", + "by", + "t2", + ".", + "language", + "order", + "by", + "count", + "(", + "*", + ")", + "desc", + "limit", + "value" + ], + "question": "Which language is the most popular on the Asian continent?", + "question_toks": [ + "Which", + "language", + "is", + "the", + "most", + "popular", + "on", + "the", + "Asian", + "continent", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ], + [ + "table_unit", + 3 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 8, + false + ], + null + ], + [ + 0, + 23, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 24, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 10, + false + ], + null + ], + "\"Asia\"", + null + ] + ], + "groupBy": [ + [ + 0, + 24, + false + ] + ], + "having": [], + "orderBy": [ + "desc", + [ + [ + 0, + [ + 3, + 0, + false + ], + null + ] + ] + ], + "limit": 1, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "world_1", + "query": "SELECT T2.Language FROM country AS T1 JOIN countrylanguage AS T2 ON T1.Code = T2.CountryCode WHERE T1.Continent = \"Asia\" GROUP BY T2.Language ORDER BY COUNT (*) DESC LIMIT 1", + "query_toks": [ + "SELECT", + "T2.Language", + "FROM", + "country", + "AS", + "T1", + "JOIN", + "countrylanguage", + "AS", + "T2", + "ON", + "T1.Code", + "=", + "T2.CountryCode", + "WHERE", + "T1.Continent", + "=", + "``", + "Asia", + "''", + "GROUP", + "BY", + "T2.Language", + "ORDER", + "BY", + "COUNT", + "(", + "*", + ")", + "DESC", + "LIMIT", + "1" + ], + "query_toks_no_value": [ + "select", + "t2", + ".", + "language", + "from", + "country", + "as", + "t1", + "join", + "countrylanguage", + "as", + "t2", + "on", + "t1", + ".", + "code", + "=", + "t2", + ".", + "countrycode", + "where", + "t1", + ".", + "continent", + "=", + "value", + "group", + "by", + "t2", + ".", + "language", + "order", + "by", + "count", + "(", + "*", + ")", + "desc", + "limit", + "value" + ], + "question": "What is the language that is used by the largest number of Asian nations?", + "question_toks": [ + "What", + "is", + "the", + "language", + "that", + "is", + "used", + "by", + "the", + "largest", + "number", + "of", + "Asian", + "nations", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ], + [ + "table_unit", + 3 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 8, + false + ], + null + ], + [ + 0, + 23, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 24, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 10, + false + ], + null + ], + "\"Asia\"", + null + ] + ], + "groupBy": [ + [ + 0, + 24, + false + ] + ], + "having": [], + "orderBy": [ + "desc", + [ + [ + 0, + [ + 3, + 0, + false + ], + null + ] + ] + ], + "limit": 1, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "world_1", + "query": "SELECT T2.Language FROM country AS T1 JOIN countrylanguage AS T2 ON T1.Code = T2.CountryCode WHERE T1.GovernmentForm = \"Republic\" GROUP BY T2.Language HAVING COUNT(*) = 1", + "query_toks": [ + "SELECT", + "T2.Language", + "FROM", + "country", + "AS", + "T1", + "JOIN", + "countrylanguage", + "AS", + "T2", + "ON", + "T1.Code", + "=", + "T2.CountryCode", + "WHERE", + "T1.GovernmentForm", + "=", + "``", + "Republic", + "''", + "GROUP", + "BY", + "T2.Language", + "HAVING", + "COUNT", + "(", + "*", + ")", + "=", + "1" + ], + "query_toks_no_value": [ + "select", + "t2", + ".", + "language", + "from", + "country", + "as", + "t1", + "join", + "countrylanguage", + "as", + "t2", + "on", + "t1", + ".", + "code", + "=", + "t2", + ".", + "countrycode", + "where", + "t1", + ".", + "governmentform", + "=", + "value", + "group", + "by", + "t2", + ".", + "language", + "having", + "count", + "(", + "*", + ")", + "=", + "value" + ], + "question": "Which languages are spoken by only one country in republic governments?", + "question_toks": [ + "Which", + "languages", + "are", + "spoken", + "by", + "only", + "one", + "country", + "in", + "republic", + "governments", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ], + [ + "table_unit", + 3 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 8, + false + ], + null + ], + [ + 0, + 23, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 24, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 19, + false + ], + null + ], + "\"Republic\"", + null + ] + ], + "groupBy": [ + [ + 0, + 24, + false + ] + ], + "having": [ + [ + false, + 2, + [ + 0, + [ + 3, + 0, + false + ], + null + ], + 1.0, + null + ] + ], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "world_1", + "query": "SELECT T2.Language FROM country AS T1 JOIN countrylanguage AS T2 ON T1.Code = T2.CountryCode WHERE T1.GovernmentForm = \"Republic\" GROUP BY T2.Language HAVING COUNT(*) = 1", + "query_toks": [ + "SELECT", + "T2.Language", + "FROM", + "country", + "AS", + "T1", + "JOIN", + "countrylanguage", + "AS", + "T2", + "ON", + "T1.Code", + "=", + "T2.CountryCode", + "WHERE", + "T1.GovernmentForm", + "=", + "``", + "Republic", + "''", + "GROUP", + "BY", + "T2.Language", + "HAVING", + "COUNT", + "(", + "*", + ")", + "=", + "1" + ], + "query_toks_no_value": [ + "select", + "t2", + ".", + "language", + "from", + "country", + "as", + "t1", + "join", + "countrylanguage", + "as", + "t2", + "on", + "t1", + ".", + "code", + "=", + "t2", + ".", + "countrycode", + "where", + "t1", + ".", + "governmentform", + "=", + "value", + "group", + "by", + "t2", + ".", + "language", + "having", + "count", + "(", + "*", + ")", + "=", + "value" + ], + "question": "What languages are only used by a single country with a republic government?", + "question_toks": [ + "What", + "languages", + "are", + "only", + "used", + "by", + "a", + "single", + "country", + "with", + "a", + "republic", + "government", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ], + [ + "table_unit", + 3 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 8, + false + ], + null + ], + [ + 0, + 23, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 24, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 19, + false + ], + null + ], + "\"Republic\"", + null + ] + ], + "groupBy": [ + [ + 0, + 24, + false + ] + ], + "having": [ + [ + false, + 2, + [ + 0, + [ + 3, + 0, + false + ], + null + ], + 1.0, + null + ] + ], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "world_1", + "query": "SELECT T1.Name , T1.Population FROM city AS T1 JOIN countrylanguage AS T2 ON T1.CountryCode = T2.CountryCode WHERE T2.Language = \"English\" ORDER BY T1.Population DESC LIMIT 1", + "query_toks": [ + "SELECT", + "T1.Name", + ",", + "T1.Population", + "FROM", + "city", + "AS", + "T1", + "JOIN", + "countrylanguage", + "AS", + "T2", + "ON", + "T1.CountryCode", + "=", + "T2.CountryCode", + "WHERE", + "T2.Language", + "=", + "``", + "English", + "''", + "ORDER", + "BY", + "T1.Population", + "DESC", + "LIMIT", + "1" + ], + "query_toks_no_value": [ + "select", + "t1", + ".", + "name", + ",", + "t1", + ".", + "population", + "from", + "city", + "as", + "t1", + "join", + "countrylanguage", + "as", + "t2", + "on", + "t1", + ".", + "countrycode", + "=", + "t2", + ".", + "countrycode", + "where", + "t2", + ".", + "language", + "=", + "value", + "order", + "by", + "t1", + ".", + "population", + "desc", + "limit", + "value" + ], + "question": "Find the city with the largest population that uses English.", + "question_toks": [ + "Find", + "the", + "city", + "with", + "the", + "largest", + "population", + "that", + "uses", + "English", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ], + [ + "table_unit", + 3 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 3, + false + ], + null + ], + [ + 0, + 23, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 2, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 5, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 24, + false + ], + null + ], + "\"English\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [ + "desc", + [ + [ + 0, + [ + 0, + 5, + false + ], + null + ] + ] + ], + "limit": 1, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "world_1", + "query": "SELECT T1.Name , T1.Population FROM city AS T1 JOIN countrylanguage AS T2 ON T1.CountryCode = T2.CountryCode WHERE T2.Language = \"English\" ORDER BY T1.Population DESC LIMIT 1", + "query_toks": [ + "SELECT", + "T1.Name", + ",", + "T1.Population", + "FROM", + "city", + "AS", + "T1", + "JOIN", + "countrylanguage", + "AS", + "T2", + "ON", + "T1.CountryCode", + "=", + "T2.CountryCode", + "WHERE", + "T2.Language", + "=", + "``", + "English", + "''", + "ORDER", + "BY", + "T1.Population", + "DESC", + "LIMIT", + "1" + ], + "query_toks_no_value": [ + "select", + "t1", + ".", + "name", + ",", + "t1", + ".", + "population", + "from", + "city", + "as", + "t1", + "join", + "countrylanguage", + "as", + "t2", + "on", + "t1", + ".", + "countrycode", + "=", + "t2", + ".", + "countrycode", + "where", + "t2", + ".", + "language", + "=", + "value", + "order", + "by", + "t1", + ".", + "population", + "desc", + "limit", + "value" + ], + "question": "What is the most populace city that speaks English?", + "question_toks": [ + "What", + "is", + "the", + "most", + "populace", + "city", + "that", + "speaks", + "English", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ], + [ + "table_unit", + 3 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 3, + false + ], + null + ], + [ + 0, + 23, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 2, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 5, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 24, + false + ], + null + ], + "\"English\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [ + "desc", + [ + [ + 0, + [ + 0, + 5, + false + ], + null + ] + ] + ], + "limit": 1, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "world_1", + "query": "SELECT Name , Population , LifeExpectancy FROM country WHERE Continent = \"Asia\" ORDER BY SurfaceArea DESC LIMIT 1", + "query_toks": [ + "SELECT", + "Name", + ",", + "Population", + ",", + "LifeExpectancy", + "FROM", + "country", + "WHERE", + "Continent", + "=", + "``", + "Asia", + "''", + "ORDER", + "BY", + "SurfaceArea", + "DESC", + "LIMIT", + "1" + ], + "query_toks_no_value": [ + "select", + "name", + ",", + "population", + ",", + "lifeexpectancy", + "from", + "country", + "where", + "continent", + "=", + "value", + "order", + "by", + "surfacearea", + "desc", + "limit", + "value" + ], + "question": "Find the name, population and expected life length of asian country with the largest area?", + "question_toks": [ + "Find", + "the", + "name", + ",", + "population", + "and", + "expected", + "life", + "length", + "of", + "asian", + "country", + "with", + "the", + "largest", + "area", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 9, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 14, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 15, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 10, + false + ], + null + ], + "\"Asia\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [ + "desc", + [ + [ + 0, + [ + 0, + 12, + false + ], + null + ] + ] + ], + "limit": 1, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "world_1", + "query": "SELECT Name , Population , LifeExpectancy FROM country WHERE Continent = \"Asia\" ORDER BY SurfaceArea DESC LIMIT 1", + "query_toks": [ + "SELECT", + "Name", + ",", + "Population", + ",", + "LifeExpectancy", + "FROM", + "country", + "WHERE", + "Continent", + "=", + "``", + "Asia", + "''", + "ORDER", + "BY", + "SurfaceArea", + "DESC", + "LIMIT", + "1" + ], + "query_toks_no_value": [ + "select", + "name", + ",", + "population", + ",", + "lifeexpectancy", + "from", + "country", + "where", + "continent", + "=", + "value", + "order", + "by", + "surfacearea", + "desc", + "limit", + "value" + ], + "question": "What are the name, population, and life expectancy of the largest Asian country by land?", + "question_toks": [ + "What", + "are", + "the", + "name", + ",", + "population", + ",", + "and", + "life", + "expectancy", + "of", + "the", + "largest", + "Asian", + "country", + "by", + "land", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 9, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 14, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 15, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 10, + false + ], + null + ], + "\"Asia\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [ + "desc", + [ + [ + 0, + [ + 0, + 12, + false + ], + null + ] + ] + ], + "limit": 1, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "world_1", + "query": "SELECT avg(LifeExpectancy) FROM country WHERE Name NOT IN (SELECT T1.Name FROM country AS T1 JOIN countrylanguage AS T2 ON T1.Code = T2.CountryCode WHERE T2.Language = \"English\" AND T2.IsOfficial = \"T\")", + "query_toks": [ + "SELECT", + "avg", + "(", + "LifeExpectancy", + ")", + "FROM", + "country", + "WHERE", + "Name", + "NOT", + "IN", + "(", + "SELECT", + "T1.Name", + "FROM", + "country", + "AS", + "T1", + "JOIN", + "countrylanguage", + "AS", + "T2", + "ON", + "T1.Code", + "=", + "T2.CountryCode", + "WHERE", + "T2.Language", + "=", + "``", + "English", + "''", + "AND", + "T2.IsOfficial", + "=", + "``", + "T", + "''", + ")" + ], + "query_toks_no_value": [ + "select", + "avg", + "(", + "lifeexpectancy", + ")", + "from", + "country", + "where", + "name", + "not", + "in", + "(", + "select", + "t1", + ".", + "name", + "from", + "country", + "as", + "t1", + "join", + "countrylanguage", + "as", + "t2", + "on", + "t1", + ".", + "code", + "=", + "t2", + ".", + "countrycode", + "where", + "t2", + ".", + "language", + "=", + "value", + "and", + "t2", + ".", + "isofficial", + "=", + "value", + ")" + ], + "question": "What is average life expectancy in the countries where English is not the official language?", + "question_toks": [ + "What", + "is", + "average", + "life", + "expectancy", + "in", + "the", + "countries", + "where", + "English", + "is", + "not", + "the", + "official", + "language", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 5, + [ + 0, + [ + 0, + 15, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + true, + 8, + [ + 0, + [ + 0, + 9, + false + ], + null + ], + { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ], + [ + "table_unit", + 3 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 8, + false + ], + null + ], + [ + 0, + 23, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 9, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 24, + false + ], + null + ], + "\"English\"", + null + ], + "and", + [ + false, + 2, + [ + 0, + [ + 0, + 25, + false + ], + null + ], + "\"T\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + }, + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "world_1", + "query": "SELECT avg(LifeExpectancy) FROM country WHERE Name NOT IN (SELECT T1.Name FROM country AS T1 JOIN countrylanguage AS T2 ON T1.Code = T2.CountryCode WHERE T2.Language = \"English\" AND T2.IsOfficial = \"T\")", + "query_toks": [ + "SELECT", + "avg", + "(", + "LifeExpectancy", + ")", + "FROM", + "country", + "WHERE", + "Name", + "NOT", + "IN", + "(", + "SELECT", + "T1.Name", + "FROM", + "country", + "AS", + "T1", + "JOIN", + "countrylanguage", + "AS", + "T2", + "ON", + "T1.Code", + "=", + "T2.CountryCode", + "WHERE", + "T2.Language", + "=", + "``", + "English", + "''", + "AND", + "T2.IsOfficial", + "=", + "``", + "T", + "''", + ")" + ], + "query_toks_no_value": [ + "select", + "avg", + "(", + "lifeexpectancy", + ")", + "from", + "country", + "where", + "name", + "not", + "in", + "(", + "select", + "t1", + ".", + "name", + "from", + "country", + "as", + "t1", + "join", + "countrylanguage", + "as", + "t2", + "on", + "t1", + ".", + "code", + "=", + "t2", + ".", + "countrycode", + "where", + "t2", + ".", + "language", + "=", + "value", + "and", + "t2", + ".", + "isofficial", + "=", + "value", + ")" + ], + "question": "Give the mean life expectancy of countries in which English is not the official language.", + "question_toks": [ + "Give", + "the", + "mean", + "life", + "expectancy", + "of", + "countries", + "in", + "which", + "English", + "is", + "not", + "the", + "official", + "language", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 5, + [ + 0, + [ + 0, + 15, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + true, + 8, + [ + 0, + [ + 0, + 9, + false + ], + null + ], + { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ], + [ + "table_unit", + 3 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 8, + false + ], + null + ], + [ + 0, + 23, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 9, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 24, + false + ], + null + ], + "\"English\"", + null + ], + "and", + [ + false, + 2, + [ + 0, + [ + 0, + 25, + false + ], + null + ], + "\"T\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + }, + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "world_1", + "query": "SELECT sum(Population) FROM country WHERE Name NOT IN (SELECT T1.Name FROM country AS T1 JOIN countrylanguage AS T2 ON T1.Code = T2.CountryCode WHERE T2.Language = \"English\")", + "query_toks": [ + "SELECT", + "sum", + "(", + "Population", + ")", + "FROM", + "country", + "WHERE", + "Name", + "NOT", + "IN", + "(", + "SELECT", + "T1.Name", + "FROM", + "country", + "AS", + "T1", + "JOIN", + "countrylanguage", + "AS", + "T2", + "ON", + "T1.Code", + "=", + "T2.CountryCode", + "WHERE", + "T2.Language", + "=", + "``", + "English", + "''", + ")" + ], + "query_toks_no_value": [ + "select", + "sum", + "(", + "population", + ")", + "from", + "country", + "where", + "name", + "not", + "in", + "(", + "select", + "t1", + ".", + "name", + "from", + "country", + "as", + "t1", + "join", + "countrylanguage", + "as", + "t2", + "on", + "t1", + ".", + "code", + "=", + "t2", + ".", + "countrycode", + "where", + "t2", + ".", + "language", + "=", + "value", + ")" + ], + "question": "What is the total number of people living in the nations that do not use English?", + "question_toks": [ + "What", + "is", + "the", + "total", + "number", + "of", + "people", + "living", + "in", + "the", + "nations", + "that", + "do", + "not", + "use", + "English", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 4, + [ + 0, + [ + 0, + 14, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + true, + 8, + [ + 0, + [ + 0, + 9, + false + ], + null + ], + { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ], + [ + "table_unit", + 3 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 8, + false + ], + null + ], + [ + 0, + 23, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 9, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 24, + false + ], + null + ], + "\"English\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + }, + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "world_1", + "query": "SELECT sum(Population) FROM country WHERE Name NOT IN (SELECT T1.Name FROM country AS T1 JOIN countrylanguage AS T2 ON T1.Code = T2.CountryCode WHERE T2.Language = \"English\")", + "query_toks": [ + "SELECT", + "sum", + "(", + "Population", + ")", + "FROM", + "country", + "WHERE", + "Name", + "NOT", + "IN", + "(", + "SELECT", + "T1.Name", + "FROM", + "country", + "AS", + "T1", + "JOIN", + "countrylanguage", + "AS", + "T2", + "ON", + "T1.Code", + "=", + "T2.CountryCode", + "WHERE", + "T2.Language", + "=", + "``", + "English", + "''", + ")" + ], + "query_toks_no_value": [ + "select", + "sum", + "(", + "population", + ")", + "from", + "country", + "where", + "name", + "not", + "in", + "(", + "select", + "t1", + ".", + "name", + "from", + "country", + "as", + "t1", + "join", + "countrylanguage", + "as", + "t2", + "on", + "t1", + ".", + "code", + "=", + "t2", + ".", + "countrycode", + "where", + "t2", + ".", + "language", + "=", + "value", + ")" + ], + "question": "How many people live in countries that do not speak English?", + "question_toks": [ + "How", + "many", + "people", + "live", + "in", + "countries", + "that", + "do", + "not", + "speak", + "English", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 4, + [ + 0, + [ + 0, + 14, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + true, + 8, + [ + 0, + [ + 0, + 9, + false + ], + null + ], + { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ], + [ + "table_unit", + 3 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 8, + false + ], + null + ], + [ + 0, + 23, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 9, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 24, + false + ], + null + ], + "\"English\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + }, + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "world_1", + "query": "SELECT T2.Language FROM country AS T1 JOIN countrylanguage AS T2 ON T1.Code = T2.CountryCode WHERE T1.HeadOfState = \"Beatrix\" AND T2.IsOfficial = \"T\"", + "query_toks": [ + "SELECT", + "T2.Language", + "FROM", + "country", + "AS", + "T1", + "JOIN", + "countrylanguage", + "AS", + "T2", + "ON", + "T1.Code", + "=", + "T2.CountryCode", + "WHERE", + "T1.HeadOfState", + "=", + "``", + "Beatrix", + "''", + "AND", + "T2.IsOfficial", + "=", + "``", + "T", + "''" + ], + "query_toks_no_value": [ + "select", + "t2", + ".", + "language", + "from", + "country", + "as", + "t1", + "join", + "countrylanguage", + "as", + "t2", + "on", + "t1", + ".", + "code", + "=", + "t2", + ".", + "countrycode", + "where", + "t1", + ".", + "headofstate", + "=", + "value", + "and", + "t2", + ".", + "isofficial", + "=", + "value" + ], + "question": "What is the official language spoken in the country whose head of state is Beatrix?", + "question_toks": [ + "What", + "is", + "the", + "official", + "language", + "spoken", + "in", + "the", + "country", + "whose", + "head", + "of", + "state", + "is", + "Beatrix", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ], + [ + "table_unit", + 3 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 8, + false + ], + null + ], + [ + 0, + 23, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 24, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 20, + false + ], + null + ], + "\"Beatrix\"", + null + ], + "and", + [ + false, + 2, + [ + 0, + [ + 0, + 25, + false + ], + null + ], + "\"T\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "world_1", + "query": "SELECT T2.Language FROM country AS T1 JOIN countrylanguage AS T2 ON T1.Code = T2.CountryCode WHERE T1.HeadOfState = \"Beatrix\" AND T2.IsOfficial = \"T\"", + "query_toks": [ + "SELECT", + "T2.Language", + "FROM", + "country", + "AS", + "T1", + "JOIN", + "countrylanguage", + "AS", + "T2", + "ON", + "T1.Code", + "=", + "T2.CountryCode", + "WHERE", + "T1.HeadOfState", + "=", + "``", + "Beatrix", + "''", + "AND", + "T2.IsOfficial", + "=", + "``", + "T", + "''" + ], + "query_toks_no_value": [ + "select", + "t2", + ".", + "language", + "from", + "country", + "as", + "t1", + "join", + "countrylanguage", + "as", + "t2", + "on", + "t1", + ".", + "code", + "=", + "t2", + ".", + "countrycode", + "where", + "t1", + ".", + "headofstate", + "=", + "value", + "and", + "t2", + ".", + "isofficial", + "=", + "value" + ], + "question": "What is the official language used in the country the name of whose head of state is Beatrix.", + "question_toks": [ + "What", + "is", + "the", + "official", + "language", + "used", + "in", + "the", + "country", + "the", + "name", + "of", + "whose", + "head", + "of", + "state", + "is", + "Beatrix", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ], + [ + "table_unit", + 3 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 8, + false + ], + null + ], + [ + 0, + 23, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 24, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 20, + false + ], + null + ], + "\"Beatrix\"", + null + ], + "and", + [ + false, + 2, + [ + 0, + [ + 0, + 25, + false + ], + null + ], + "\"T\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "world_1", + "query": "SELECT count(DISTINCT T2.Language) FROM country AS T1 JOIN countrylanguage AS T2 ON T1.Code = T2.CountryCode WHERE IndepYear < 1930 AND T2.IsOfficial = \"T\"", + "query_toks": [ + "SELECT", + "count", + "(", + "DISTINCT", + "T2.Language", + ")", + "FROM", + "country", + "AS", + "T1", + "JOIN", + "countrylanguage", + "AS", + "T2", + "ON", + "T1.Code", + "=", + "T2.CountryCode", + "WHERE", + "IndepYear", + "<", + "1930", + "AND", + "T2.IsOfficial", + "=", + "``", + "T", + "''" + ], + "query_toks_no_value": [ + "select", + "count", + "(", + "distinct", + "t2", + ".", + "language", + ")", + "from", + "country", + "as", + "t1", + "join", + "countrylanguage", + "as", + "t2", + "on", + "t1", + ".", + "code", + "=", + "t2", + ".", + "countrycode", + "where", + "indepyear", + "<", + "value", + "and", + "t2", + ".", + "isofficial", + "=", + "value" + ], + "question": "What is the total number of unique official languages spoken in the countries that are founded before 1930?", + "question_toks": [ + "What", + "is", + "the", + "total", + "number", + "of", + "unique", + "official", + "languages", + "spoken", + "in", + "the", + "countries", + "that", + "are", + "founded", + "before", + "1930", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ], + [ + "table_unit", + 3 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 8, + false + ], + null + ], + [ + 0, + 23, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 3, + [ + 0, + [ + 0, + 24, + true + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 4, + [ + 0, + [ + 0, + 13, + false + ], + null + ], + 1930.0, + null + ], + "and", + [ + false, + 2, + [ + 0, + [ + 0, + 25, + false + ], + null + ], + "\"T\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "world_1", + "query": "SELECT count(DISTINCT T2.Language) FROM country AS T1 JOIN countrylanguage AS T2 ON T1.Code = T2.CountryCode WHERE IndepYear < 1930 AND T2.IsOfficial = \"T\"", + "query_toks": [ + "SELECT", + "count", + "(", + "DISTINCT", + "T2.Language", + ")", + "FROM", + "country", + "AS", + "T1", + "JOIN", + "countrylanguage", + "AS", + "T2", + "ON", + "T1.Code", + "=", + "T2.CountryCode", + "WHERE", + "IndepYear", + "<", + "1930", + "AND", + "T2.IsOfficial", + "=", + "``", + "T", + "''" + ], + "query_toks_no_value": [ + "select", + "count", + "(", + "distinct", + "t2", + ".", + "language", + ")", + "from", + "country", + "as", + "t1", + "join", + "countrylanguage", + "as", + "t2", + "on", + "t1", + ".", + "code", + "=", + "t2", + ".", + "countrycode", + "where", + "indepyear", + "<", + "value", + "and", + "t2", + ".", + "isofficial", + "=", + "value" + ], + "question": "For the countries founded before 1930, what is the total number of distinct official languages?", + "question_toks": [ + "For", + "the", + "countries", + "founded", + "before", + "1930", + ",", + "what", + "is", + "the", + "total", + "number", + "of", + "distinct", + "official", + "languages", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ], + [ + "table_unit", + 3 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 8, + false + ], + null + ], + [ + 0, + 23, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 3, + [ + 0, + [ + 0, + 24, + true + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 4, + [ + 0, + [ + 0, + 13, + false + ], + null + ], + 1930.0, + null + ], + "and", + [ + false, + 2, + [ + 0, + [ + 0, + 25, + false + ], + null + ], + "\"T\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "world_1", + "query": "SELECT Name FROM country WHERE SurfaceArea > (SELECT min(SurfaceArea) FROM country WHERE Continent = \"Europe\")", + "query_toks": [ + "SELECT", + "Name", + "FROM", + "country", + "WHERE", + "SurfaceArea", + ">", + "(", + "SELECT", + "min", + "(", + "SurfaceArea", + ")", + "FROM", + "country", + "WHERE", + "Continent", + "=", + "``", + "Europe", + "''", + ")" + ], + "query_toks_no_value": [ + "select", + "name", + "from", + "country", + "where", + "surfacearea", + ">", + "(", + "select", + "min", + "(", + "surfacearea", + ")", + "from", + "country", + "where", + "continent", + "=", + "value", + ")" + ], + "question": "What are the countries that have greater surface area than any country in Europe?", + "question_toks": [ + "What", + "are", + "the", + "countries", + "that", + "have", + "greater", + "surface", + "area", + "than", + "any", + "country", + "in", + "Europe", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 9, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 3, + [ + 0, + [ + 0, + 12, + false + ], + null + ], + { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 2, + [ + 0, + [ + 0, + 12, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 10, + false + ], + null + ], + "\"Europe\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + }, + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "world_1", + "query": "SELECT Name FROM country WHERE SurfaceArea > (SELECT min(SurfaceArea) FROM country WHERE Continent = \"Europe\")", + "query_toks": [ + "SELECT", + "Name", + "FROM", + "country", + "WHERE", + "SurfaceArea", + ">", + "(", + "SELECT", + "min", + "(", + "SurfaceArea", + ")", + "FROM", + "country", + "WHERE", + "Continent", + "=", + "``", + "Europe", + "''", + ")" + ], + "query_toks_no_value": [ + "select", + "name", + "from", + "country", + "where", + "surfacearea", + ">", + "(", + "select", + "min", + "(", + "surfacearea", + ")", + "from", + "country", + "where", + "continent", + "=", + "value", + ")" + ], + "question": "Which countries have greater area than that of any country in Europe?", + "question_toks": [ + "Which", + "countries", + "have", + "greater", + "area", + "than", + "that", + "of", + "any", + "country", + "in", + "Europe", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 9, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 3, + [ + 0, + [ + 0, + 12, + false + ], + null + ], + { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 2, + [ + 0, + [ + 0, + 12, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 10, + false + ], + null + ], + "\"Europe\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + }, + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "world_1", + "query": "SELECT Name FROM country WHERE Continent = \"Africa\" AND population < (SELECT max(population) FROM country WHERE Continent = \"Asia\")", + "query_toks": [ + "SELECT", + "Name", + "FROM", + "country", + "WHERE", + "Continent", + "=", + "``", + "Africa", + "''", + "AND", + "population", + "<", + "(", + "SELECT", + "max", + "(", + "population", + ")", + "FROM", + "country", + "WHERE", + "Continent", + "=", + "``", + "Asia", + "''", + ")" + ], + "query_toks_no_value": [ + "select", + "name", + "from", + "country", + "where", + "continent", + "=", + "value", + "and", + "population", + "<", + "(", + "select", + "max", + "(", + "population", + ")", + "from", + "country", + "where", + "continent", + "=", + "value", + ")" + ], + "question": "What are the African countries that have a population less than any country in Asia?", + "question_toks": [ + "What", + "are", + "the", + "African", + "countries", + "that", + "have", + "a", + "population", + "less", + "than", + "any", + "country", + "in", + "Asia", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 9, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 10, + false + ], + null + ], + "\"Africa\"", + null + ], + "and", + [ + false, + 4, + [ + 0, + [ + 0, + 14, + false + ], + null + ], + { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 1, + [ + 0, + [ + 0, + 14, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 10, + false + ], + null + ], + "\"Asia\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + }, + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "world_1", + "query": "SELECT Name FROM country WHERE Continent = \"Africa\" AND population < (SELECT min(population) FROM country WHERE Continent = \"Asia\")", + "query_toks": [ + "SELECT", + "Name", + "FROM", + "country", + "WHERE", + "Continent", + "=", + "``", + "Africa", + "''", + "AND", + "population", + "<", + "(", + "SELECT", + "min", + "(", + "population", + ")", + "FROM", + "country", + "WHERE", + "Continent", + "=", + "``", + "Asia", + "''", + ")" + ], + "query_toks_no_value": [ + "select", + "name", + "from", + "country", + "where", + "continent", + "=", + "value", + "and", + "population", + "<", + "(", + "select", + "min", + "(", + "population", + ")", + "from", + "country", + "where", + "continent", + "=", + "value", + ")" + ], + "question": "Which African countries have a smaller population than that of any country in Asia?", + "question_toks": [ + "Which", + "African", + "countries", + "have", + "a", + "smaller", + "population", + "than", + "that", + "of", + "any", + "country", + "in", + "Asia", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 9, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 10, + false + ], + null + ], + "\"Africa\"", + null + ], + "and", + [ + false, + 4, + [ + 0, + [ + 0, + 14, + false + ], + null + ], + { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 2, + [ + 0, + [ + 0, + 14, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 10, + false + ], + null + ], + "\"Asia\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + }, + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "world_1", + "query": "SELECT Name FROM country WHERE Continent = \"Asia\" AND population > (SELECT max(population) FROM country WHERE Continent = \"Africa\")", + "query_toks": [ + "SELECT", + "Name", + "FROM", + "country", + "WHERE", + "Continent", + "=", + "``", + "Asia", + "''", + "AND", + "population", + ">", + "(", + "SELECT", + "max", + "(", + "population", + ")", + "FROM", + "country", + "WHERE", + "Continent", + "=", + "``", + "Africa", + "''", + ")" + ], + "query_toks_no_value": [ + "select", + "name", + "from", + "country", + "where", + "continent", + "=", + "value", + "and", + "population", + ">", + "(", + "select", + "max", + "(", + "population", + ")", + "from", + "country", + "where", + "continent", + "=", + "value", + ")" + ], + "question": "Which Asian countries have a population that is larger than any country in Africa?", + "question_toks": [ + "Which", + "Asian", + "countries", + "have", + "a", + "population", + "that", + "is", + "larger", + "than", + "any", + "country", + "in", + "Africa", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 9, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 10, + false + ], + null + ], + "\"Asia\"", + null + ], + "and", + [ + false, + 3, + [ + 0, + [ + 0, + 14, + false + ], + null + ], + { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 1, + [ + 0, + [ + 0, + 14, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 10, + false + ], + null + ], + "\"Africa\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + }, + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "world_1", + "query": "SELECT Name FROM country WHERE Continent = \"Asia\" AND population > (SELECT min(population) FROM country WHERE Continent = \"Africa\")", + "query_toks": [ + "SELECT", + "Name", + "FROM", + "country", + "WHERE", + "Continent", + "=", + "``", + "Asia", + "''", + "AND", + "population", + ">", + "(", + "SELECT", + "min", + "(", + "population", + ")", + "FROM", + "country", + "WHERE", + "Continent", + "=", + "``", + "Africa", + "''", + ")" + ], + "query_toks_no_value": [ + "select", + "name", + "from", + "country", + "where", + "continent", + "=", + "value", + "and", + "population", + ">", + "(", + "select", + "min", + "(", + "population", + ")", + "from", + "country", + "where", + "continent", + "=", + "value", + ")" + ], + "question": "What are the Asian countries which have a population larger than that of any country in Africa?", + "question_toks": [ + "What", + "are", + "the", + "Asian", + "countries", + "which", + "have", + "a", + "population", + "larger", + "than", + "that", + "of", + "any", + "country", + "in", + "Africa", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 9, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 10, + false + ], + null + ], + "\"Asia\"", + null + ], + "and", + [ + false, + 3, + [ + 0, + [ + 0, + 14, + false + ], + null + ], + { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 2, + [ + 0, + [ + 0, + 14, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 10, + false + ], + null + ], + "\"Africa\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + }, + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "world_1", + "query": "SELECT CountryCode FROM countrylanguage EXCEPT SELECT CountryCode FROM countrylanguage WHERE LANGUAGE = \"English\"", + "query_toks": [ + "SELECT", + "CountryCode", + "FROM", + "countrylanguage", + "EXCEPT", + "SELECT", + "CountryCode", + "FROM", + "countrylanguage", + "WHERE", + "LANGUAGE", + "=", + "``", + "English", + "''" + ], + "query_toks_no_value": [ + "select", + "countrycode", + "from", + "countrylanguage", + "except", + "select", + "countrycode", + "from", + "countrylanguage", + "where", + "language", + "=", + "value" + ], + "question": "What are the country codes for countries that do not speak English?", + "question_toks": [ + "What", + "are", + "the", + "country", + "codes", + "for", + "countries", + "that", + "do", + "not", + "speak", + "English", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 3 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 23, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": { + "from": { + "table_units": [ + [ + "table_unit", + 3 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 23, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 24, + false + ], + null + ], + "\"English\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + } + }, + { + "db_id": "world_1", + "query": "SELECT CountryCode FROM countrylanguage EXCEPT SELECT CountryCode FROM countrylanguage WHERE LANGUAGE = \"English\"", + "query_toks": [ + "SELECT", + "CountryCode", + "FROM", + "countrylanguage", + "EXCEPT", + "SELECT", + "CountryCode", + "FROM", + "countrylanguage", + "WHERE", + "LANGUAGE", + "=", + "``", + "English", + "''" + ], + "query_toks_no_value": [ + "select", + "countrycode", + "from", + "countrylanguage", + "except", + "select", + "countrycode", + "from", + "countrylanguage", + "where", + "language", + "=", + "value" + ], + "question": "Return the country codes for countries that do not speak English.", + "question_toks": [ + "Return", + "the", + "country", + "codes", + "for", + "countries", + "that", + "do", + "not", + "speak", + "English", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 3 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 23, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": { + "from": { + "table_units": [ + [ + "table_unit", + 3 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 23, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 24, + false + ], + null + ], + "\"English\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + } + }, + { + "db_id": "world_1", + "query": "SELECT DISTINCT CountryCode FROM countrylanguage WHERE LANGUAGE != \"English\"", + "query_toks": [ + "SELECT", + "DISTINCT", + "CountryCode", + "FROM", + "countrylanguage", + "WHERE", + "LANGUAGE", + "!", + "=", + "``", + "English", + "''" + ], + "query_toks_no_value": [ + "select", + "distinct", + "countrycode", + "from", + "countrylanguage", + "where", + "language", + "!", + "=", + "value" + ], + "question": "What are the country codes of countries where people use languages other than English?", + "question_toks": [ + "What", + "are", + "the", + "country", + "codes", + "of", + "countries", + "where", + "people", + "use", + "languages", + "other", + "than", + "English", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 3 + ] + ], + "conds": [] + }, + "select": [ + true, + [ + [ + 0, + [ + 0, + [ + 0, + 23, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 7, + [ + 0, + [ + 0, + 24, + false + ], + null + ], + "\"English\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "world_1", + "query": "SELECT DISTINCT CountryCode FROM countrylanguage WHERE LANGUAGE != \"English\"", + "query_toks": [ + "SELECT", + "DISTINCT", + "CountryCode", + "FROM", + "countrylanguage", + "WHERE", + "LANGUAGE", + "!", + "=", + "``", + "English", + "''" + ], + "query_toks_no_value": [ + "select", + "distinct", + "countrycode", + "from", + "countrylanguage", + "where", + "language", + "!", + "=", + "value" + ], + "question": "Give the country codes for countries in which people speak langauges that are not English.", + "question_toks": [ + "Give", + "the", + "country", + "codes", + "for", + "countries", + "in", + "which", + "people", + "speak", + "langauges", + "that", + "are", + "not", + "English", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 3 + ] + ], + "conds": [] + }, + "select": [ + true, + [ + [ + 0, + [ + 0, + [ + 0, + 23, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 7, + [ + 0, + [ + 0, + 24, + false + ], + null + ], + "\"English\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "world_1", + "query": "SELECT Code FROM country WHERE GovernmentForm != \"Republic\" EXCEPT SELECT CountryCode FROM countrylanguage WHERE LANGUAGE = \"English\"", + "query_toks": [ + "SELECT", + "Code", + "FROM", + "country", + "WHERE", + "GovernmentForm", + "!", + "=", + "``", + "Republic", + "''", + "EXCEPT", + "SELECT", + "CountryCode", + "FROM", + "countrylanguage", + "WHERE", + "LANGUAGE", + "=", + "``", + "English", + "''" + ], + "query_toks_no_value": [ + "select", + "code", + "from", + "country", + "where", + "governmentform", + "!", + "=", + "value", + "except", + "select", + "countrycode", + "from", + "countrylanguage", + "where", + "language", + "=", + "value" + ], + "question": "What are the codes of the countries that do not speak English and whose government forms are not Republic?", + "question_toks": [ + "What", + "are", + "the", + "codes", + "of", + "the", + "countries", + "that", + "do", + "not", + "speak", + "English", + "and", + "whose", + "government", + "forms", + "are", + "not", + "Republic", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 8, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 7, + [ + 0, + [ + 0, + 19, + false + ], + null + ], + "\"Republic\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": { + "from": { + "table_units": [ + [ + "table_unit", + 3 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 23, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 24, + false + ], + null + ], + "\"English\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + } + }, + { + "db_id": "world_1", + "query": "SELECT Code FROM country WHERE GovernmentForm != \"Republic\" EXCEPT SELECT CountryCode FROM countrylanguage WHERE LANGUAGE = \"English\"", + "query_toks": [ + "SELECT", + "Code", + "FROM", + "country", + "WHERE", + "GovernmentForm", + "!", + "=", + "``", + "Republic", + "''", + "EXCEPT", + "SELECT", + "CountryCode", + "FROM", + "countrylanguage", + "WHERE", + "LANGUAGE", + "=", + "``", + "English", + "''" + ], + "query_toks_no_value": [ + "select", + "code", + "from", + "country", + "where", + "governmentform", + "!", + "=", + "value", + "except", + "select", + "countrycode", + "from", + "countrylanguage", + "where", + "language", + "=", + "value" + ], + "question": "Return the codes of countries that do not speak English and do not have Republics for governments.", + "question_toks": [ + "Return", + "the", + "codes", + "of", + "countries", + "that", + "do", + "not", + "speak", + "English", + "and", + "do", + "not", + "have", + "Republics", + "for", + "governments", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 8, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 7, + [ + 0, + [ + 0, + 19, + false + ], + null + ], + "\"Republic\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": { + "from": { + "table_units": [ + [ + "table_unit", + 3 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 23, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 24, + false + ], + null + ], + "\"English\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + } + }, + { + "db_id": "world_1", + "query": "SELECT DISTINCT T2.Name FROM country AS T1 JOIN city AS T2 ON T2.CountryCode = T1.Code WHERE T1.Continent = 'Europe' AND T1.Name NOT IN (SELECT T3.Name FROM country AS T3 JOIN countrylanguage AS T4 ON T3.Code = T4.CountryCode WHERE T4.IsOfficial = 'T' AND T4.Language = 'English')", + "query_toks": [ + "SELECT", + "DISTINCT", + "T2.Name", + "FROM", + "country", + "AS", + "T1", + "JOIN", + "city", + "AS", + "T2", + "ON", + "T2.CountryCode", + "=", + "T1.Code", + "WHERE", + "T1.Continent", + "=", + "'Europe", + "'", + "AND", + "T1.Name", + "NOT", + "IN", + "(", + "SELECT", + "T3.Name", + "FROM", + "country", + "AS", + "T3", + "JOIN", + "countrylanguage", + "AS", + "T4", + "ON", + "T3.Code", + "=", + "T4.CountryCode", + "WHERE", + "T4.IsOfficial", + "=", + "'T", + "'", + "AND", + "T4.Language", + "=", + "'English", + "'", + ")" + ], + "query_toks_no_value": [ + "select", + "distinct", + "t2", + ".", + "name", + "from", + "country", + "as", + "t1", + "join", + "city", + "as", + "t2", + "on", + "t2", + ".", + "countrycode", + "=", + "t1", + ".", + "code", + "where", + "t1", + ".", + "continent", + "=", + "value", + "and", + "t1", + ".", + "name", + "not", + "in", + "(", + "select", + "t3", + ".", + "name", + "from", + "country", + "as", + "t3", + "join", + "countrylanguage", + "as", + "t4", + "on", + "t3", + ".", + "code", + "=", + "t4", + ".", + "countrycode", + "where", + "t4", + ".", + "isofficial", + "=", + "value", + "and", + "t4", + ".", + "language", + "=", + "value", + ")" + ], + "question": "Which cities are in European countries where English is not the official language?", + "question_toks": [ + "Which", + "cities", + "are", + "in", + "European", + "countries", + "where", + "English", + "is", + "not", + "the", + "official", + "language", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ], + [ + "table_unit", + 0 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 3, + false + ], + null + ], + [ + 0, + 8, + false + ], + null + ] + ] + }, + "select": [ + true, + [ + [ + 0, + [ + 0, + [ + 0, + 2, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 10, + false + ], + null + ], + "\"Europe\"", + null + ], + "and", + [ + true, + 8, + [ + 0, + [ + 0, + 9, + false + ], + null + ], + { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ], + [ + "table_unit", + 3 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 8, + false + ], + null + ], + [ + 0, + 23, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 9, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 25, + false + ], + null + ], + "\"T\"", + null + ], + "and", + [ + false, + 2, + [ + 0, + [ + 0, + 24, + false + ], + null + ], + "\"English\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + }, + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "world_1", + "query": "SELECT DISTINCT T2.Name FROM country AS T1 JOIN city AS T2 ON T2.CountryCode = T1.Code WHERE T1.Continent = 'Europe' AND T1.Name NOT IN (SELECT T3.Name FROM country AS T3 JOIN countrylanguage AS T4 ON T3.Code = T4.CountryCode WHERE T4.IsOfficial = 'T' AND T4.Language = 'English')", + "query_toks": [ + "SELECT", + "DISTINCT", + "T2.Name", + "FROM", + "country", + "AS", + "T1", + "JOIN", + "city", + "AS", + "T2", + "ON", + "T2.CountryCode", + "=", + "T1.Code", + "WHERE", + "T1.Continent", + "=", + "'Europe", + "'", + "AND", + "T1.Name", + "NOT", + "IN", + "(", + "SELECT", + "T3.Name", + "FROM", + "country", + "AS", + "T3", + "JOIN", + "countrylanguage", + "AS", + "T4", + "ON", + "T3.Code", + "=", + "T4.CountryCode", + "WHERE", + "T4.IsOfficial", + "=", + "'T", + "'", + "AND", + "T4.Language", + "=", + "'English", + "'", + ")" + ], + "query_toks_no_value": [ + "select", + "distinct", + "t2", + ".", + "name", + "from", + "country", + "as", + "t1", + "join", + "city", + "as", + "t2", + "on", + "t2", + ".", + "countrycode", + "=", + "t1", + ".", + "code", + "where", + "t1", + ".", + "continent", + "=", + "value", + "and", + "t1", + ".", + "name", + "not", + "in", + "(", + "select", + "t3", + ".", + "name", + "from", + "country", + "as", + "t3", + "join", + "countrylanguage", + "as", + "t4", + "on", + "t3", + ".", + "code", + "=", + "t4", + ".", + "countrycode", + "where", + "t4", + ".", + "isofficial", + "=", + "value", + "and", + "t4", + ".", + "language", + "=", + "value", + ")" + ], + "question": "What are the names of cities in Europe for which English is not the official language?", + "question_toks": [ + "What", + "are", + "the", + "names", + "of", + "cities", + "in", + "Europe", + "for", + "which", + "English", + "is", + "not", + "the", + "official", + "language", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ], + [ + "table_unit", + 0 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 3, + false + ], + null + ], + [ + 0, + 8, + false + ], + null + ] + ] + }, + "select": [ + true, + [ + [ + 0, + [ + 0, + [ + 0, + 2, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 10, + false + ], + null + ], + "\"Europe\"", + null + ], + "and", + [ + true, + 8, + [ + 0, + [ + 0, + 9, + false + ], + null + ], + { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ], + [ + "table_unit", + 3 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 8, + false + ], + null + ], + [ + 0, + 23, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 9, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 25, + false + ], + null + ], + "\"T\"", + null + ], + "and", + [ + false, + 2, + [ + 0, + [ + 0, + 24, + false + ], + null + ], + "\"English\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + }, + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "world_1", + "query": "select distinct t3.name from country as t1 join countrylanguage as t2 on t1.code = t2.countrycode join city as t3 on t1.code = t3.countrycode where t2.isofficial = 't' and t2.language = 'chinese' and t1.continent = \"asia\"", + "query_toks": [ + "select", + "distinct", + "t3.name", + "from", + "country", + "as", + "t1", + "join", + "countrylanguage", + "as", + "t2", + "on", + "t1.code", + "=", + "t2.countrycode", + "join", + "city", + "as", + "t3", + "on", + "t1.code", + "=", + "t3.countrycode", + "where", + "t2.isofficial", + "=", + "\"t\"", + "and", + "t2.language", + "=", + "\"chinese\"", + "and", + "t1.continent", + "=", + "\"asia\"" + ], + "query_toks_no_value": [ + "select", + "distinct", + "t3", + ".", + "name", + "from", + "country", + "as", + "t1", + "join", + "countrylanguage", + "as", + "t2", + "on", + "t1", + ".", + "code", + "=", + "t2", + ".", + "countrycode", + "join", + "city", + "as", + "t3", + "on", + "t1", + ".", + "code", + "=", + "t3", + ".", + "countrycode", + "where", + "t2", + ".", + "isofficial", + "=", + "value", + "and", + "t2", + ".", + "language", + "=", + "value", + "and", + "t1", + ".", + "continent", + "=", + "value" + ], + "question": "Which unique cities are in Asian countries where Chinese is the official language ?", + "question_toks": [ + "Which", + "unique", + "cities", + "are", + "in", + "Asian", + "countries", + "where", + "Chinese", + "is", + "the", + "official", + "language", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ], + [ + "table_unit", + 3 + ], + [ + "table_unit", + 0 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 8, + false + ], + null + ], + [ + 0, + 23, + false + ], + null + ], + "and", + [ + false, + 2, + [ + 0, + [ + 0, + 8, + false + ], + null + ], + [ + 0, + 3, + false + ], + null + ] + ] + }, + "select": [ + true, + [ + [ + 0, + [ + 0, + [ + 0, + 2, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 25, + false + ], + null + ], + "\"t\"", + null + ], + "and", + [ + false, + 2, + [ + 0, + [ + 0, + 24, + false + ], + null + ], + "\"chinese\"", + null + ], + "and", + [ + false, + 2, + [ + 0, + [ + 0, + 10, + false + ], + null + ], + "\"asia\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "world_1", + "query": "SELECT DISTINCT T3.Name FROM country AS T1 JOIN countrylanguage AS T2 ON T1.Code = T2.CountryCode JOIN city AS T3 ON T1.Code = T3.CountryCode WHERE T2.IsOfficial = 'T' AND T2.Language = 'Chinese' AND T1.Continent = \"Asia\"", + "query_toks": [ + "SELECT", + "DISTINCT", + "T3.Name", + "FROM", + "country", + "AS", + "T1", + "JOIN", + "countrylanguage", + "AS", + "T2", + "ON", + "T1.Code", + "=", + "T2.CountryCode", + "JOIN", + "city", + "AS", + "T3", + "ON", + "T1.Code", + "=", + "T3.CountryCode", + "WHERE", + "T2.IsOfficial", + "=", + "'T", + "'", + "AND", + "T2.Language", + "=", + "'Chinese", + "'", + "AND", + "T1.Continent", + "=", + "``", + "Asia", + "''" + ], + "query_toks_no_value": [ + "select", + "distinct", + "t3", + ".", + "name", + "from", + "country", + "as", + "t1", + "join", + "countrylanguage", + "as", + "t2", + "on", + "t1", + ".", + "code", + "=", + "t2", + ".", + "countrycode", + "join", + "city", + "as", + "t3", + "on", + "t1", + ".", + "code", + "=", + "t3", + ".", + "countrycode", + "where", + "t2", + ".", + "isofficial", + "=", + "value", + "and", + "t2", + ".", + "language", + "=", + "value", + "and", + "t1", + ".", + "continent", + "=", + "value" + ], + "question": "Return the different names of cities that are in Asia and for which Chinese is the official language.", + "question_toks": [ + "Return", + "the", + "different", + "names", + "of", + "cities", + "that", + "are", + "in", + "Asia", + "and", + "for", + "which", + "Chinese", + "is", + "the", + "official", + "language", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ], + [ + "table_unit", + 3 + ], + [ + "table_unit", + 0 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 8, + false + ], + null + ], + [ + 0, + 23, + false + ], + null + ], + "and", + [ + false, + 2, + [ + 0, + [ + 0, + 8, + false + ], + null + ], + [ + 0, + 3, + false + ], + null + ] + ] + }, + "select": [ + true, + [ + [ + 0, + [ + 0, + [ + 0, + 2, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 25, + false + ], + null + ], + "\"T\"", + null + ], + "and", + [ + false, + 2, + [ + 0, + [ + 0, + 24, + false + ], + null + ], + "\"Chinese\"", + null + ], + "and", + [ + false, + 2, + [ + 0, + [ + 0, + 10, + false + ], + null + ], + "\"Asia\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "world_1", + "query": "SELECT Name , SurfaceArea , IndepYear FROM country ORDER BY Population LIMIT 1", + "query_toks": [ + "SELECT", + "Name", + ",", + "SurfaceArea", + ",", + "IndepYear", + "FROM", + "country", + "ORDER", + "BY", + "Population", + "LIMIT", + "1" + ], + "query_toks_no_value": [ + "select", + "name", + ",", + "surfacearea", + ",", + "indepyear", + "from", + "country", + "order", + "by", + "population", + "limit", + "value" + ], + "question": "What are the name, independence year, and surface area of the country with the smallest population?", + "question_toks": [ + "What", + "are", + "the", + "name", + ",", + "independence", + "year", + ",", + "and", + "surface", + "area", + "of", + "the", + "country", + "with", + "the", + "smallest", + "population", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 9, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 12, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 13, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [ + "asc", + [ + [ + 0, + [ + 0, + 14, + false + ], + null + ] + ] + ], + "limit": 1, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "world_1", + "query": "SELECT Name , SurfaceArea , IndepYear FROM country ORDER BY Population LIMIT 1", + "query_toks": [ + "SELECT", + "Name", + ",", + "SurfaceArea", + ",", + "IndepYear", + "FROM", + "country", + "ORDER", + "BY", + "Population", + "LIMIT", + "1" + ], + "query_toks_no_value": [ + "select", + "name", + ",", + "surfacearea", + ",", + "indepyear", + "from", + "country", + "order", + "by", + "population", + "limit", + "value" + ], + "question": "Give the name, year of independence, and surface area of the country that has the lowest population.", + "question_toks": [ + "Give", + "the", + "name", + ",", + "year", + "of", + "independence", + ",", + "and", + "surface", + "area", + "of", + "the", + "country", + "that", + "has", + "the", + "lowest", + "population", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 9, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 12, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 13, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [ + "asc", + [ + [ + 0, + [ + 0, + 14, + false + ], + null + ] + ] + ], + "limit": 1, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "world_1", + "query": "SELECT Name , population , HeadOfState FROM country ORDER BY SurfaceArea DESC LIMIT 1", + "query_toks": [ + "SELECT", + "Name", + ",", + "population", + ",", + "HeadOfState", + "FROM", + "country", + "ORDER", + "BY", + "SurfaceArea", + "DESC", + "LIMIT", + "1" + ], + "query_toks_no_value": [ + "select", + "name", + ",", + "population", + ",", + "headofstate", + "from", + "country", + "order", + "by", + "surfacearea", + "desc", + "limit", + "value" + ], + "question": "What are the population, name and leader of the country with the largest area?", + "question_toks": [ + "What", + "are", + "the", + "population", + ",", + "name", + "and", + "leader", + "of", + "the", + "country", + "with", + "the", + "largest", + "area", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 9, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 14, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 20, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [ + "desc", + [ + [ + 0, + [ + 0, + 12, + false + ], + null + ] + ] + ], + "limit": 1, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "world_1", + "query": "SELECT Name , population , HeadOfState FROM country ORDER BY SurfaceArea DESC LIMIT 1", + "query_toks": [ + "SELECT", + "Name", + ",", + "population", + ",", + "HeadOfState", + "FROM", + "country", + "ORDER", + "BY", + "SurfaceArea", + "DESC", + "LIMIT", + "1" + ], + "query_toks_no_value": [ + "select", + "name", + ",", + "population", + ",", + "headofstate", + "from", + "country", + "order", + "by", + "surfacearea", + "desc", + "limit", + "value" + ], + "question": "Give the name, population, and head of state for the country that has the largest area.", + "question_toks": [ + "Give", + "the", + "name", + ",", + "population", + ",", + "and", + "head", + "of", + "state", + "for", + "the", + "country", + "that", + "has", + "the", + "largest", + "area", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 9, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 14, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 20, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [ + "desc", + [ + [ + 0, + [ + 0, + 12, + false + ], + null + ] + ] + ], + "limit": 1, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "world_1", + "query": "SELECT COUNT(T2.Language) , T1.Name FROM country AS T1 JOIN countrylanguage AS T2 ON T1.Code = T2.CountryCode GROUP BY T1.Name HAVING COUNT(*) > 2", + "query_toks": [ + "SELECT", + "COUNT", + "(", + "T2.Language", + ")", + ",", + "T1.Name", + "FROM", + "country", + "AS", + "T1", + "JOIN", + "countrylanguage", + "AS", + "T2", + "ON", + "T1.Code", + "=", + "T2.CountryCode", + "GROUP", + "BY", + "T1.Name", + "HAVING", + "COUNT", + "(", + "*", + ")", + ">", + "2" + ], + "query_toks_no_value": [ + "select", + "count", + "(", + "t2", + ".", + "language", + ")", + ",", + "t1", + ".", + "name", + "from", + "country", + "as", + "t1", + "join", + "countrylanguage", + "as", + "t2", + "on", + "t1", + ".", + "code", + "=", + "t2", + ".", + "countrycode", + "group", + "by", + "t1", + ".", + "name", + "having", + "count", + "(", + "*", + ")", + ">", + "value" + ], + "question": "Return the country name and the numbers of languages spoken for each country that speaks at least 3 languages.", + "question_toks": [ + "Return", + "the", + "country", + "name", + "and", + "the", + "numbers", + "of", + "languages", + "spoken", + "for", + "each", + "country", + "that", + "speaks", + "at", + "least", + "3", + "languages", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ], + [ + "table_unit", + 3 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 8, + false + ], + null + ], + [ + 0, + 23, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 3, + [ + 0, + [ + 0, + 24, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 9, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 9, + false + ] + ], + "having": [ + [ + false, + 3, + [ + 0, + [ + 3, + 0, + false + ], + null + ], + 2.0, + null + ] + ], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "world_1", + "query": "SELECT COUNT(T2.Language) , T1.Name FROM country AS T1 JOIN countrylanguage AS T2 ON T1.Code = T2.CountryCode GROUP BY T1.Name HAVING COUNT(*) > 2", + "query_toks": [ + "SELECT", + "COUNT", + "(", + "T2.Language", + ")", + ",", + "T1.Name", + "FROM", + "country", + "AS", + "T1", + "JOIN", + "countrylanguage", + "AS", + "T2", + "ON", + "T1.Code", + "=", + "T2.CountryCode", + "GROUP", + "BY", + "T1.Name", + "HAVING", + "COUNT", + "(", + "*", + ")", + ">", + "2" + ], + "query_toks_no_value": [ + "select", + "count", + "(", + "t2", + ".", + "language", + ")", + ",", + "t1", + ".", + "name", + "from", + "country", + "as", + "t1", + "join", + "countrylanguage", + "as", + "t2", + "on", + "t1", + ".", + "code", + "=", + "t2", + ".", + "countrycode", + "group", + "by", + "t1", + ".", + "name", + "having", + "count", + "(", + "*", + ")", + ">", + "value" + ], + "question": "What are the names of countries that speak more than 2 languages, as well as how many languages they speak?", + "question_toks": [ + "What", + "are", + "the", + "names", + "of", + "countries", + "that", + "speak", + "more", + "than", + "2", + "languages", + ",", + "as", + "well", + "as", + "how", + "many", + "languages", + "they", + "speak", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ], + [ + "table_unit", + 3 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 8, + false + ], + null + ], + [ + 0, + 23, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 3, + [ + 0, + [ + 0, + 24, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 9, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 9, + false + ] + ], + "having": [ + [ + false, + 3, + [ + 0, + [ + 3, + 0, + false + ], + null + ], + 2.0, + null + ] + ], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "world_1", + "query": "SELECT count(*) , District FROM city WHERE Population > (SELECT avg(Population) FROM city) GROUP BY District", + "query_toks": [ + "SELECT", + "count", + "(", + "*", + ")", + ",", + "District", + "FROM", + "city", + "WHERE", + "Population", + ">", + "(", + "SELECT", + "avg", + "(", + "Population", + ")", + "FROM", + "city", + ")", + "GROUP", + "BY", + "District" + ], + "query_toks_no_value": [ + "select", + "count", + "(", + "*", + ")", + ",", + "district", + "from", + "city", + "where", + "population", + ">", + "(", + "select", + "avg", + "(", + "population", + ")", + "from", + "city", + ")", + "group", + "by", + "district" + ], + "question": "Find the number of cities in each district whose population is greater than the average population of cities?", + "question_toks": [ + "Find", + "the", + "number", + "of", + "cities", + "in", + "each", + "district", + "whose", + "population", + "is", + "greater", + "than", + "the", + "average", + "population", + "of", + "cities", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 3, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 4, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 3, + [ + 0, + [ + 0, + 5, + false + ], + null + ], + { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 5, + [ + 0, + [ + 0, + 5, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + }, + null + ] + ], + "groupBy": [ + [ + 0, + 4, + false + ] + ], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "world_1", + "query": "SELECT count(*) , District FROM city WHERE Population > (SELECT avg(Population) FROM city) GROUP BY District", + "query_toks": [ + "SELECT", + "count", + "(", + "*", + ")", + ",", + "District", + "FROM", + "city", + "WHERE", + "Population", + ">", + "(", + "SELECT", + "avg", + "(", + "Population", + ")", + "FROM", + "city", + ")", + "GROUP", + "BY", + "District" + ], + "query_toks_no_value": [ + "select", + "count", + "(", + "*", + ")", + ",", + "district", + "from", + "city", + "where", + "population", + ">", + "(", + "select", + "avg", + "(", + "population", + ")", + "from", + "city", + ")", + "group", + "by", + "district" + ], + "question": "How many cities in each district have a population that is above the average population across all cities?", + "question_toks": [ + "How", + "many", + "cities", + "in", + "each", + "district", + "have", + "a", + "population", + "that", + "is", + "above", + "the", + "average", + "population", + "across", + "all", + "cities", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 3, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 4, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 3, + [ + 0, + [ + 0, + 5, + false + ], + null + ], + { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 5, + [ + 0, + [ + 0, + 5, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + }, + null + ] + ], + "groupBy": [ + [ + 0, + 4, + false + ] + ], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "world_1", + "query": "SELECT sum(Population) , GovernmentForm FROM country GROUP BY GovernmentForm HAVING avg(LifeExpectancy) > 72", + "query_toks": [ + "SELECT", + "sum", + "(", + "Population", + ")", + ",", + "GovernmentForm", + "FROM", + "country", + "GROUP", + "BY", + "GovernmentForm", + "HAVING", + "avg", + "(", + "LifeExpectancy", + ")", + ">", + "72" + ], + "query_toks_no_value": [ + "select", + "sum", + "(", + "population", + ")", + ",", + "governmentform", + "from", + "country", + "group", + "by", + "governmentform", + "having", + "avg", + "(", + "lifeexpectancy", + ")", + ">", + "value" + ], + "question": "Find the government form name and total population for each government form whose average life expectancy is longer than 72.", + "question_toks": [ + "Find", + "the", + "government", + "form", + "name", + "and", + "total", + "population", + "for", + "each", + "government", + "form", + "whose", + "average", + "life", + "expectancy", + "is", + "longer", + "than", + "72", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 4, + [ + 0, + [ + 0, + 14, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 19, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 19, + false + ] + ], + "having": [ + [ + false, + 3, + [ + 0, + [ + 5, + 15, + false + ], + null + ], + 72.0, + null + ] + ], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "world_1", + "query": "SELECT sum(Population) , GovernmentForm FROM country GROUP BY GovernmentForm HAVING avg(LifeExpectancy) > 72", + "query_toks": [ + "SELECT", + "sum", + "(", + "Population", + ")", + ",", + "GovernmentForm", + "FROM", + "country", + "GROUP", + "BY", + "GovernmentForm", + "HAVING", + "avg", + "(", + "LifeExpectancy", + ")", + ">", + "72" + ], + "query_toks_no_value": [ + "select", + "sum", + "(", + "population", + ")", + ",", + "governmentform", + "from", + "country", + "group", + "by", + "governmentform", + "having", + "avg", + "(", + "lifeexpectancy", + ")", + ">", + "value" + ], + "question": "What are the different government forms and what is the total population of each for government forms that have an average life expectancy greater than 72?", + "question_toks": [ + "What", + "are", + "the", + "different", + "government", + "forms", + "and", + "what", + "is", + "the", + "total", + "population", + "of", + "each", + "for", + "government", + "forms", + "that", + "have", + "an", + "average", + "life", + "expectancy", + "greater", + "than", + "72", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 4, + [ + 0, + [ + 0, + 14, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 19, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 19, + false + ] + ], + "having": [ + [ + false, + 3, + [ + 0, + [ + 5, + 15, + false + ], + null + ], + 72.0, + null + ] + ], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "world_1", + "query": "SELECT sum(Population) , avg(LifeExpectancy) , Continent FROM country GROUP BY Continent HAVING avg(LifeExpectancy) < 72", + "query_toks": [ + "SELECT", + "sum", + "(", + "Population", + ")", + ",", + "avg", + "(", + "LifeExpectancy", + ")", + ",", + "Continent", + "FROM", + "country", + "GROUP", + "BY", + "Continent", + "HAVING", + "avg", + "(", + "LifeExpectancy", + ")", + "<", + "72" + ], + "query_toks_no_value": [ + "select", + "sum", + "(", + "population", + ")", + ",", + "avg", + "(", + "lifeexpectancy", + ")", + ",", + "continent", + "from", + "country", + "group", + "by", + "continent", + "having", + "avg", + "(", + "lifeexpectancy", + ")", + "<", + "value" + ], + "question": "Find the average life expectancy and total population for each continent where the average life expectancy is shorter than 72?", + "question_toks": [ + "Find", + "the", + "average", + "life", + "expectancy", + "and", + "total", + "population", + "for", + "each", + "continent", + "where", + "the", + "average", + "life", + "expectancy", + "is", + "shorter", + "than", + "72", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 4, + [ + 0, + [ + 0, + 14, + false + ], + null + ] + ], + [ + 5, + [ + 0, + [ + 0, + 15, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 10, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 10, + false + ] + ], + "having": [ + [ + false, + 4, + [ + 0, + [ + 5, + 15, + false + ], + null + ], + 72.0, + null + ] + ], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "world_1", + "query": "SELECT sum(Population) , avg(LifeExpectancy) , Continent FROM country GROUP BY Continent HAVING avg(LifeExpectancy) < 72", + "query_toks": [ + "SELECT", + "sum", + "(", + "Population", + ")", + ",", + "avg", + "(", + "LifeExpectancy", + ")", + ",", + "Continent", + "FROM", + "country", + "GROUP", + "BY", + "Continent", + "HAVING", + "avg", + "(", + "LifeExpectancy", + ")", + "<", + "72" + ], + "query_toks_no_value": [ + "select", + "sum", + "(", + "population", + ")", + ",", + "avg", + "(", + "lifeexpectancy", + ")", + ",", + "continent", + "from", + "country", + "group", + "by", + "continent", + "having", + "avg", + "(", + "lifeexpectancy", + ")", + "<", + "value" + ], + "question": "What are the different continents and the total popuation and average life expectancy corresponding to each, for continents that have an average life expectancy less than 72?", + "question_toks": [ + "What", + "are", + "the", + "different", + "continents", + "and", + "the", + "total", + "popuation", + "and", + "average", + "life", + "expectancy", + "corresponding", + "to", + "each", + ",", + "for", + "continents", + "that", + "have", + "an", + "average", + "life", + "expectancy", + "less", + "than", + "72", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 4, + [ + 0, + [ + 0, + 14, + false + ], + null + ] + ], + [ + 5, + [ + 0, + [ + 0, + 15, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 10, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 10, + false + ] + ], + "having": [ + [ + false, + 4, + [ + 0, + [ + 5, + 15, + false + ], + null + ], + 72.0, + null + ] + ], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "world_1", + "query": "SELECT Name , SurfaceArea FROM country ORDER BY SurfaceArea DESC LIMIT 5", + "query_toks": [ + "SELECT", + "Name", + ",", + "SurfaceArea", + "FROM", + "country", + "ORDER", + "BY", + "SurfaceArea", + "DESC", + "LIMIT", + "5" + ], + "query_toks_no_value": [ + "select", + "name", + ",", + "surfacearea", + "from", + "country", + "order", + "by", + "surfacearea", + "desc", + "limit", + "value" + ], + "question": "What are the names and areas of countries with the top 5 largest area?", + "question_toks": [ + "What", + "are", + "the", + "names", + "and", + "areas", + "of", + "countries", + "with", + "the", + "top", + "5", + "largest", + "area", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 9, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 12, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [ + "desc", + [ + [ + 0, + [ + 0, + 12, + false + ], + null + ] + ] + ], + "limit": 5, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "world_1", + "query": "SELECT Name , SurfaceArea FROM country ORDER BY SurfaceArea DESC LIMIT 5", + "query_toks": [ + "SELECT", + "Name", + ",", + "SurfaceArea", + "FROM", + "country", + "ORDER", + "BY", + "SurfaceArea", + "DESC", + "LIMIT", + "5" + ], + "query_toks_no_value": [ + "select", + "name", + ",", + "surfacearea", + "from", + "country", + "order", + "by", + "surfacearea", + "desc", + "limit", + "value" + ], + "question": "Return the names and surface areas of the 5 largest countries.", + "question_toks": [ + "Return", + "the", + "names", + "and", + "surface", + "areas", + "of", + "the", + "5", + "largest", + "countries", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 9, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 12, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [ + "desc", + [ + [ + 0, + [ + 0, + 12, + false + ], + null + ] + ] + ], + "limit": 5, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "world_1", + "query": "SELECT Name FROM country ORDER BY Population DESC LIMIT 3", + "query_toks": [ + "SELECT", + "Name", + "FROM", + "country", + "ORDER", + "BY", + "Population", + "DESC", + "LIMIT", + "3" + ], + "query_toks_no_value": [ + "select", + "name", + "from", + "country", + "order", + "by", + "population", + "desc", + "limit", + "value" + ], + "question": "What are names of countries with the top 3 largest population?", + "question_toks": [ + "What", + "are", + "names", + "of", + "countries", + "with", + "the", + "top", + "3", + "largest", + "population", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 9, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [ + "desc", + [ + [ + 0, + [ + 0, + 14, + false + ], + null + ] + ] + ], + "limit": 3, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "world_1", + "query": "SELECT Name FROM country ORDER BY Population DESC LIMIT 3", + "query_toks": [ + "SELECT", + "Name", + "FROM", + "country", + "ORDER", + "BY", + "Population", + "DESC", + "LIMIT", + "3" + ], + "query_toks_no_value": [ + "select", + "name", + "from", + "country", + "order", + "by", + "population", + "desc", + "limit", + "value" + ], + "question": "Return the names of the 3 most populated countries.", + "question_toks": [ + "Return", + "the", + "names", + "of", + "the", + "3", + "most", + "populated", + "countries", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 9, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [ + "desc", + [ + [ + 0, + [ + 0, + 14, + false + ], + null + ] + ] + ], + "limit": 3, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "world_1", + "query": "SELECT Name FROM country ORDER BY Population ASC LIMIT 3", + "query_toks": [ + "SELECT", + "Name", + "FROM", + "country", + "ORDER", + "BY", + "Population", + "ASC", + "LIMIT", + "3" + ], + "query_toks_no_value": [ + "select", + "name", + "from", + "country", + "order", + "by", + "population", + "asc", + "limit", + "value" + ], + "question": "What are the names of the nations with the 3 lowest populations?", + "question_toks": [ + "What", + "are", + "the", + "names", + "of", + "the", + "nations", + "with", + "the", + "3", + "lowest", + "populations", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 9, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [ + "asc", + [ + [ + 0, + [ + 0, + 14, + false + ], + null + ] + ] + ], + "limit": 3, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "world_1", + "query": "SELECT Name FROM country ORDER BY Population ASC LIMIT 3", + "query_toks": [ + "SELECT", + "Name", + "FROM", + "country", + "ORDER", + "BY", + "Population", + "ASC", + "LIMIT", + "3" + ], + "query_toks_no_value": [ + "select", + "name", + "from", + "country", + "order", + "by", + "population", + "asc", + "limit", + "value" + ], + "question": "Return the names of the 3 countries with the fewest people.", + "question_toks": [ + "Return", + "the", + "names", + "of", + "the", + "3", + "countries", + "with", + "the", + "fewest", + "people", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 9, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [ + "asc", + [ + [ + 0, + [ + 0, + 14, + false + ], + null + ] + ] + ], + "limit": 3, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "world_1", + "query": "SELECT count(*) FROM country WHERE continent = \"Asia\"", + "query_toks": [ + "SELECT", + "count", + "(", + "*", + ")", + "FROM", + "country", + "WHERE", + "continent", + "=", + "``", + "Asia", + "''" + ], + "query_toks_no_value": [ + "select", + "count", + "(", + "*", + ")", + "from", + "country", + "where", + "continent", + "=", + "value" + ], + "question": "how many countries are in Asia?", + "question_toks": [ + "how", + "many", + "countries", + "are", + "in", + "Asia", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 3, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 10, + false + ], + null + ], + "\"Asia\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "world_1", + "query": "SELECT count(*) FROM country WHERE continent = \"Asia\"", + "query_toks": [ + "SELECT", + "count", + "(", + "*", + ")", + "FROM", + "country", + "WHERE", + "continent", + "=", + "``", + "Asia", + "''" + ], + "query_toks_no_value": [ + "select", + "count", + "(", + "*", + ")", + "from", + "country", + "where", + "continent", + "=", + "value" + ], + "question": "Count the number of countries in Asia.", + "question_toks": [ + "Count", + "the", + "number", + "of", + "countries", + "in", + "Asia", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 3, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 10, + false + ], + null + ], + "\"Asia\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "world_1", + "query": "SELECT Name FROM country WHERE continent = \"Europe\" AND Population = \"80000\"", + "query_toks": [ + "SELECT", + "Name", + "FROM", + "country", + "WHERE", + "continent", + "=", + "``", + "Europe", + "''", + "AND", + "Population", + "=", + "``", + "80000", + "''" + ], + "query_toks_no_value": [ + "select", + "name", + "from", + "country", + "where", + "continent", + "=", + "value", + "and", + "population", + "=", + "value" + ], + "question": "What are the names of the countries that are in the continent of Europe and have a population of 80000?", + "question_toks": [ + "What", + "are", + "the", + "names", + "of", + "the", + "countries", + "that", + "are", + "in", + "the", + "continent", + "of", + "Europe", + "and", + "have", + "a", + "population", + "of", + "80000", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 9, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 10, + false + ], + null + ], + "\"Europe\"", + null + ], + "and", + [ + false, + 2, + [ + 0, + [ + 0, + 14, + false + ], + null + ], + "\"80000\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "world_1", + "query": "SELECT Name FROM country WHERE continent = \"Europe\" AND Population = \"80000\"", + "query_toks": [ + "SELECT", + "Name", + "FROM", + "country", + "WHERE", + "continent", + "=", + "``", + "Europe", + "''", + "AND", + "Population", + "=", + "``", + "80000", + "''" + ], + "query_toks_no_value": [ + "select", + "name", + "from", + "country", + "where", + "continent", + "=", + "value", + "and", + "population", + "=", + "value" + ], + "question": "Give the names of countries that are in Europe and have a population equal to 80000.", + "question_toks": [ + "Give", + "the", + "names", + "of", + "countries", + "that", + "are", + "in", + "Europe", + "and", + "have", + "a", + "population", + "equal", + "to", + "80000", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 9, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 10, + false + ], + null + ], + "\"Europe\"", + null + ], + "and", + [ + false, + 2, + [ + 0, + [ + 0, + 14, + false + ], + null + ], + "\"80000\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "world_1", + "query": "select sum(population) , avg(surfacearea) from country where continent = \"north america\" and surfacearea > 3000", + "query_toks": [ + "select", + "sum", + "(", + "population", + ")", + ",", + "avg", + "(", + "surfacearea", + ")", + "from", + "country", + "where", + "continent", + "=", + "\"north america\"", + "and", + "surfacearea", + ">", + "3000" + ], + "query_toks_no_value": [ + "select", + "sum", + "(", + "population", + ")", + ",", + "avg", + "(", + "surfacearea", + ")", + "from", + "country", + "where", + "continent", + "=", + "value", + "and", + "surfacearea", + ">", + "value" + ], + "question": "What is the total population and average area of countries in the continent of North America whose area is bigger than 3000 ?", + "question_toks": [ + "What", + "is", + "the", + "total", + "population", + "and", + "average", + "area", + "of", + "countries", + "in", + "the", + "continent", + "of", + "North", + "America", + "whose", + "area", + "is", + "bigger", + "than", + "3000", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 4, + [ + 0, + [ + 0, + 14, + false + ], + null + ] + ], + [ + 5, + [ + 0, + [ + 0, + 12, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 10, + false + ], + null + ], + "\"north america\"", + null + ], + "and", + [ + false, + 3, + [ + 0, + [ + 0, + 12, + false + ], + null + ], + 3000.0, + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "world_1", + "query": "select sum(population) , avg(surfacearea) from country where continent = \"north america\" and surfacearea > 3000", + "query_toks": [ + "select", + "sum", + "(", + "population", + ")", + ",", + "avg", + "(", + "surfacearea", + ")", + "from", + "country", + "where", + "continent", + "=", + "\"north america\"", + "and", + "surfacearea", + ">", + "3000" + ], + "query_toks_no_value": [ + "select", + "sum", + "(", + "population", + ")", + ",", + "avg", + "(", + "surfacearea", + ")", + "from", + "country", + "where", + "continent", + "=", + "value", + "and", + "surfacearea", + ">", + "value" + ], + "question": "Give the total population and average surface area corresponding to countries in North America that have a surface area greater than 3000 .", + "question_toks": [ + "Give", + "the", + "total", + "population", + "and", + "average", + "surface", + "area", + "corresponding", + "to", + "countries", + "in", + "North", + "America", + "that", + "have", + "a", + "surface", + "area", + "greater", + "than", + "3000", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 4, + [ + 0, + [ + 0, + 14, + false + ], + null + ] + ], + [ + 5, + [ + 0, + [ + 0, + 12, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 10, + false + ], + null + ], + "\"north america\"", + null + ], + "and", + [ + false, + 3, + [ + 0, + [ + 0, + 12, + false + ], + null + ], + 3000.0, + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "world_1", + "query": "SELECT name FROM city WHERE Population BETWEEN 160000 AND 900000", + "query_toks": [ + "SELECT", + "name", + "FROM", + "city", + "WHERE", + "Population", + "BETWEEN", + "160000", + "AND", + "900000" + ], + "query_toks_no_value": [ + "select", + "name", + "from", + "city", + "where", + "population", + "between", + "value", + "and", + "value" + ], + "question": "What are the cities whose population is between 160000 and 900000?", + "question_toks": [ + "What", + "are", + "the", + "cities", + "whose", + "population", + "is", + "between", + "160000", + "and", + "900000", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 2, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 1, + [ + 0, + [ + 0, + 5, + false + ], + null + ], + 160000.0, + 900000.0 + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "world_1", + "query": "select name from city where population between 160000 and 900000", + "query_toks": [ + "select", + "name", + "from", + "city", + "where", + "population", + "between", + "160000", + "and", + "900000" + ], + "query_toks_no_value": [ + "select", + "name", + "from", + "city", + "where", + "population", + "between", + "value", + "and", + "value" + ], + "question": "Return the names of cities that have a population between 160000 and 900000 .", + "question_toks": [ + "Return", + "the", + "names", + "of", + "cities", + "that", + "have", + "a", + "population", + "between", + "160000", + "and", + "900000", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 2, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 1, + [ + 0, + [ + 0, + 5, + false + ], + null + ], + 160000.0, + 900000.0 + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "world_1", + "query": "SELECT LANGUAGE FROM countrylanguage GROUP BY LANGUAGE ORDER BY count(*) DESC LIMIT 1", + "query_toks": [ + "SELECT", + "LANGUAGE", + "FROM", + "countrylanguage", + "GROUP", + "BY", + "LANGUAGE", + "ORDER", + "BY", + "count", + "(", + "*", + ")", + "DESC", + "LIMIT", + "1" + ], + "query_toks_no_value": [ + "select", + "language", + "from", + "countrylanguage", + "group", + "by", + "language", + "order", + "by", + "count", + "(", + "*", + ")", + "desc", + "limit", + "value" + ], + "question": "Which language is spoken by the largest number of countries?", + "question_toks": [ + "Which", + "language", + "is", + "spoken", + "by", + "the", + "largest", + "number", + "of", + "countries", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 3 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 24, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 24, + false + ] + ], + "having": [], + "orderBy": [ + "desc", + [ + [ + 0, + [ + 3, + 0, + false + ], + null + ] + ] + ], + "limit": 1, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "world_1", + "query": "SELECT LANGUAGE FROM countrylanguage GROUP BY LANGUAGE ORDER BY count(*) DESC LIMIT 1", + "query_toks": [ + "SELECT", + "LANGUAGE", + "FROM", + "countrylanguage", + "GROUP", + "BY", + "LANGUAGE", + "ORDER", + "BY", + "count", + "(", + "*", + ")", + "DESC", + "LIMIT", + "1" + ], + "query_toks_no_value": [ + "select", + "language", + "from", + "countrylanguage", + "group", + "by", + "language", + "order", + "by", + "count", + "(", + "*", + ")", + "desc", + "limit", + "value" + ], + "question": "Give the language that is spoken in the most countries.", + "question_toks": [ + "Give", + "the", + "language", + "that", + "is", + "spoken", + "in", + "the", + "most", + "countries", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 3 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 24, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 24, + false + ] + ], + "having": [], + "orderBy": [ + "desc", + [ + [ + 0, + [ + 3, + 0, + false + ], + null + ] + ] + ], + "limit": 1, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "world_1", + "query": "SELECT LANGUAGE , CountryCode , max(Percentage) FROM countrylanguage GROUP BY CountryCode", + "query_toks": [ + "SELECT", + "LANGUAGE", + ",", + "CountryCode", + ",", + "max", + "(", + "Percentage", + ")", + "FROM", + "countrylanguage", + "GROUP", + "BY", + "CountryCode" + ], + "query_toks_no_value": [ + "select", + "language", + ",", + "countrycode", + ",", + "max", + "(", + "percentage", + ")", + "from", + "countrylanguage", + "group", + "by", + "countrycode" + ], + "question": "What is the language spoken by the largest percentage of people in each country?", + "question_toks": [ + "What", + "is", + "the", + "language", + "spoken", + "by", + "the", + "largest", + "percentage", + "of", + "people", + "in", + "each", + "country", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 3 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 24, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 23, + false + ], + null + ] + ], + [ + 1, + [ + 0, + [ + 0, + 26, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 23, + false + ] + ], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "world_1", + "query": "SELECT LANGUAGE , CountryCode , max(Percentage) FROM countrylanguage GROUP BY CountryCode", + "query_toks": [ + "SELECT", + "LANGUAGE", + ",", + "CountryCode", + ",", + "max", + "(", + "Percentage", + ")", + "FROM", + "countrylanguage", + "GROUP", + "BY", + "CountryCode" + ], + "query_toks_no_value": [ + "select", + "language", + ",", + "countrycode", + ",", + "max", + "(", + "percentage", + ")", + "from", + "countrylanguage", + "group", + "by", + "countrycode" + ], + "question": "What are the country codes of the different countries, and what are the languages spoken by the greatest percentage of people for each?", + "question_toks": [ + "What", + "are", + "the", + "country", + "codes", + "of", + "the", + "different", + "countries", + ",", + "and", + "what", + "are", + "the", + "languages", + "spoken", + "by", + "the", + "greatest", + "percentage", + "of", + "people", + "for", + "each", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 3 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 24, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 23, + false + ], + null + ] + ], + [ + 1, + [ + 0, + [ + 0, + 26, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 23, + false + ] + ], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "world_1", + "query": "SELECT count(*) , max(Percentage) FROM countrylanguage WHERE LANGUAGE = \"Spanish\" GROUP BY CountryCode", + "query_toks": [ + "SELECT", + "count", + "(", + "*", + ")", + ",", + "max", + "(", + "Percentage", + ")", + "FROM", + "countrylanguage", + "WHERE", + "LANGUAGE", + "=", + "``", + "Spanish", + "''", + "GROUP", + "BY", + "CountryCode" + ], + "query_toks_no_value": [ + "select", + "count", + "(", + "*", + ")", + ",", + "max", + "(", + "percentage", + ")", + "from", + "countrylanguage", + "where", + "language", + "=", + "value", + "group", + "by", + "countrycode" + ], + "question": "What is the total number of countries where Spanish is spoken by the largest percentage of people?", + "question_toks": [ + "What", + "is", + "the", + "total", + "number", + "of", + "countries", + "where", + "Spanish", + "is", + "spoken", + "by", + "the", + "largest", + "percentage", + "of", + "people", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 3 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 3, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ], + [ + 1, + [ + 0, + [ + 0, + 26, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 24, + false + ], + null + ], + "\"Spanish\"", + null + ] + ], + "groupBy": [ + [ + 0, + 23, + false + ] + ], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "world_1", + "query": "SELECT count(*) , max(Percentage) FROM countrylanguage WHERE LANGUAGE = \"Spanish\" GROUP BY CountryCode", + "query_toks": [ + "SELECT", + "count", + "(", + "*", + ")", + ",", + "max", + "(", + "Percentage", + ")", + "FROM", + "countrylanguage", + "WHERE", + "LANGUAGE", + "=", + "``", + "Spanish", + "''", + "GROUP", + "BY", + "CountryCode" + ], + "query_toks_no_value": [ + "select", + "count", + "(", + "*", + ")", + ",", + "max", + "(", + "percentage", + ")", + "from", + "countrylanguage", + "where", + "language", + "=", + "value", + "group", + "by", + "countrycode" + ], + "question": "Count the number of countries for which Spanish is the predominantly spoken language.", + "question_toks": [ + "Count", + "the", + "number", + "of", + "countries", + "for", + "which", + "Spanish", + "is", + "the", + "predominantly", + "spoken", + "language", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 3 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 3, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ], + [ + 1, + [ + 0, + [ + 0, + 26, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 24, + false + ], + null + ], + "\"Spanish\"", + null + ] + ], + "groupBy": [ + [ + 0, + 23, + false + ] + ], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "world_1", + "query": "SELECT CountryCode , max(Percentage) FROM countrylanguage WHERE LANGUAGE = \"Spanish\" GROUP BY CountryCode", + "query_toks": [ + "SELECT", + "CountryCode", + ",", + "max", + "(", + "Percentage", + ")", + "FROM", + "countrylanguage", + "WHERE", + "LANGUAGE", + "=", + "``", + "Spanish", + "''", + "GROUP", + "BY", + "CountryCode" + ], + "query_toks_no_value": [ + "select", + "countrycode", + ",", + "max", + "(", + "percentage", + ")", + "from", + "countrylanguage", + "where", + "language", + "=", + "value", + "group", + "by", + "countrycode" + ], + "question": "What are the codes of countries where Spanish is spoken by the largest percentage of people?", + "question_toks": [ + "What", + "are", + "the", + "codes", + "of", + "countries", + "where", + "Spanish", + "is", + "spoken", + "by", + "the", + "largest", + "percentage", + "of", + "people", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 3 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 23, + false + ], + null + ] + ], + [ + 1, + [ + 0, + [ + 0, + 26, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 24, + false + ], + null + ], + "\"Spanish\"", + null + ] + ], + "groupBy": [ + [ + 0, + 23, + false + ] + ], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "world_1", + "query": "SELECT CountryCode , max(Percentage) FROM countrylanguage WHERE LANGUAGE = \"Spanish\" GROUP BY CountryCode", + "query_toks": [ + "SELECT", + "CountryCode", + ",", + "max", + "(", + "Percentage", + ")", + "FROM", + "countrylanguage", + "WHERE", + "LANGUAGE", + "=", + "``", + "Spanish", + "''", + "GROUP", + "BY", + "CountryCode" + ], + "query_toks_no_value": [ + "select", + "countrycode", + ",", + "max", + "(", + "percentage", + ")", + "from", + "countrylanguage", + "where", + "language", + "=", + "value", + "group", + "by", + "countrycode" + ], + "question": "Return the codes of countries for which Spanish is the predominantly spoken language.", + "question_toks": [ + "Return", + "the", + "codes", + "of", + "countries", + "for", + "which", + "Spanish", + "is", + "the", + "predominantly", + "spoken", + "language", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 3 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 23, + false + ], + null + ] + ], + [ + 1, + [ + 0, + [ + 0, + 26, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 24, + false + ], + null + ], + "\"Spanish\"", + null + ] + ], + "groupBy": [ + [ + 0, + 23, + false + ] + ], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "orchestra", + "query": "SELECT count(*) FROM conductor", + "query_toks": [ + "SELECT", + "count", + "(", + "*", + ")", + "FROM", + "conductor" + ], + "query_toks_no_value": [ + "select", + "count", + "(", + "*", + ")", + "from", + "conductor" + ], + "question": "How many conductors are there?", + "question_toks": [ + "How", + "many", + "conductors", + "are", + "there", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 3, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "orchestra", + "query": "SELECT count(*) FROM conductor", + "query_toks": [ + "SELECT", + "count", + "(", + "*", + ")", + "FROM", + "conductor" + ], + "query_toks_no_value": [ + "select", + "count", + "(", + "*", + ")", + "from", + "conductor" + ], + "question": "Count the number of conductors.", + "question_toks": [ + "Count", + "the", + "number", + "of", + "conductors", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 3, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "orchestra", + "query": "SELECT Name FROM conductor ORDER BY Age ASC", + "query_toks": [ + "SELECT", + "Name", + "FROM", + "conductor", + "ORDER", + "BY", + "Age", + "ASC" + ], + "query_toks_no_value": [ + "select", + "name", + "from", + "conductor", + "order", + "by", + "age", + "asc" + ], + "question": "List the names of conductors in ascending order of age.", + "question_toks": [ + "List", + "the", + "names", + "of", + "conductors", + "in", + "ascending", + "order", + "of", + "age", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 2, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [ + "asc", + [ + [ + 0, + [ + 0, + 3, + false + ], + null + ] + ] + ], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "orchestra", + "query": "SELECT Name FROM conductor ORDER BY Age ASC", + "query_toks": [ + "SELECT", + "Name", + "FROM", + "conductor", + "ORDER", + "BY", + "Age", + "ASC" + ], + "query_toks_no_value": [ + "select", + "name", + "from", + "conductor", + "order", + "by", + "age", + "asc" + ], + "question": "What are the names of conductors, ordered by age?", + "question_toks": [ + "What", + "are", + "the", + "names", + "of", + "conductors", + ",", + "ordered", + "by", + "age", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 2, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [ + "asc", + [ + [ + 0, + [ + 0, + 3, + false + ], + null + ] + ] + ], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "orchestra", + "query": "SELECT Name FROM conductor WHERE Nationality != 'USA'", + "query_toks": [ + "SELECT", + "Name", + "FROM", + "conductor", + "WHERE", + "Nationality", + "!", + "=", + "'USA", + "'" + ], + "query_toks_no_value": [ + "select", + "name", + "from", + "conductor", + "where", + "nationality", + "!", + "=", + "value" + ], + "question": "What are the names of conductors whose nationalities are not \"USA\"?", + "question_toks": [ + "What", + "are", + "the", + "names", + "of", + "conductors", + "whose", + "nationalities", + "are", + "not", + "``", + "USA", + "''", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 2, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 7, + [ + 0, + [ + 0, + 4, + false + ], + null + ], + "\"USA\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "orchestra", + "query": "SELECT Name FROM conductor WHERE Nationality != 'USA'", + "query_toks": [ + "SELECT", + "Name", + "FROM", + "conductor", + "WHERE", + "Nationality", + "!", + "=", + "'USA", + "'" + ], + "query_toks_no_value": [ + "select", + "name", + "from", + "conductor", + "where", + "nationality", + "!", + "=", + "value" + ], + "question": "Return the names of conductors that do not have the nationality \"USA\".", + "question_toks": [ + "Return", + "the", + "names", + "of", + "conductors", + "that", + "do", + "not", + "have", + "the", + "nationality", + "``", + "USA", + "''", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 2, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 7, + [ + 0, + [ + 0, + 4, + false + ], + null + ], + "\"USA\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "orchestra", + "query": "SELECT Record_Company FROM orchestra ORDER BY Year_of_Founded DESC", + "query_toks": [ + "SELECT", + "Record_Company", + "FROM", + "orchestra", + "ORDER", + "BY", + "Year_of_Founded", + "DESC" + ], + "query_toks_no_value": [ + "select", + "record_company", + "from", + "orchestra", + "order", + "by", + "year_of_founded", + "desc" + ], + "question": "What are the record companies of orchestras in descending order of years in which they were founded?", + "question_toks": [ + "What", + "are", + "the", + "record", + "companies", + "of", + "orchestras", + "in", + "descending", + "order", + "of", + "years", + "in", + "which", + "they", + "were", + "founded", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 9, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [ + "desc", + [ + [ + 0, + [ + 0, + 10, + false + ], + null + ] + ] + ], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "orchestra", + "query": "SELECT Record_Company FROM orchestra ORDER BY Year_of_Founded DESC", + "query_toks": [ + "SELECT", + "Record_Company", + "FROM", + "orchestra", + "ORDER", + "BY", + "Year_of_Founded", + "DESC" + ], + "query_toks_no_value": [ + "select", + "record_company", + "from", + "orchestra", + "order", + "by", + "year_of_founded", + "desc" + ], + "question": "Return the record companies of orchestras, sorted descending by the years in which they were founded.", + "question_toks": [ + "Return", + "the", + "record", + "companies", + "of", + "orchestras", + ",", + "sorted", + "descending", + "by", + "the", + "years", + "in", + "which", + "they", + "were", + "founded", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 9, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [ + "desc", + [ + [ + 0, + [ + 0, + 10, + false + ], + null + ] + ] + ], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "orchestra", + "query": "SELECT avg(Attendance) FROM SHOW", + "query_toks": [ + "SELECT", + "avg", + "(", + "Attendance", + ")", + "FROM", + "SHOW" + ], + "query_toks_no_value": [ + "select", + "avg", + "(", + "attendance", + ")", + "from", + "show" + ], + "question": "What is the average attendance of shows?", + "question_toks": [ + "What", + "is", + "the", + "average", + "attendance", + "of", + "shows", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 3 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 5, + [ + 0, + [ + 0, + 23, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "orchestra", + "query": "SELECT avg(Attendance) FROM SHOW", + "query_toks": [ + "SELECT", + "avg", + "(", + "Attendance", + ")", + "FROM", + "SHOW" + ], + "query_toks_no_value": [ + "select", + "avg", + "(", + "attendance", + ")", + "from", + "show" + ], + "question": "Return the average attendance across all shows.", + "question_toks": [ + "Return", + "the", + "average", + "attendance", + "across", + "all", + "shows", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 3 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 5, + [ + 0, + [ + 0, + 23, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "orchestra", + "query": "SELECT max(SHARE) , min(SHARE) FROM performance WHERE TYPE != \"Live final\"", + "query_toks": [ + "SELECT", + "max", + "(", + "SHARE", + ")", + ",", + "min", + "(", + "SHARE", + ")", + "FROM", + "performance", + "WHERE", + "TYPE", + "!", + "=", + "``", + "Live", + "final", + "''" + ], + "query_toks_no_value": [ + "select", + "max", + "(", + "share", + ")", + ",", + "min", + "(", + "share", + ")", + "from", + "performance", + "where", + "type", + "!", + "=", + "value" + ], + "question": "What are the maximum and minimum share of performances whose type is not \"Live final\".", + "question_toks": [ + "What", + "are", + "the", + "maximum", + "and", + "minimum", + "share", + "of", + "performances", + "whose", + "type", + "is", + "not", + "``", + "Live", + "final", + "''", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 1, + [ + 0, + [ + 0, + 18, + false + ], + null + ] + ], + [ + 2, + [ + 0, + [ + 0, + 18, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 7, + [ + 0, + [ + 0, + 14, + false + ], + null + ], + "\"Live final\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "orchestra", + "query": "SELECT max(SHARE) , min(SHARE) FROM performance WHERE TYPE != \"Live final\"", + "query_toks": [ + "SELECT", + "max", + "(", + "SHARE", + ")", + ",", + "min", + "(", + "SHARE", + ")", + "FROM", + "performance", + "WHERE", + "TYPE", + "!", + "=", + "``", + "Live", + "final", + "''" + ], + "query_toks_no_value": [ + "select", + "max", + "(", + "share", + ")", + ",", + "min", + "(", + "share", + ")", + "from", + "performance", + "where", + "type", + "!", + "=", + "value" + ], + "question": "Return the maximum and minimum shares for performances that do not have the type \"Live final\".", + "question_toks": [ + "Return", + "the", + "maximum", + "and", + "minimum", + "shares", + "for", + "performances", + "that", + "do", + "not", + "have", + "the", + "type", + "``", + "Live", + "final", + "''", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 1, + [ + 0, + [ + 0, + 18, + false + ], + null + ] + ], + [ + 2, + [ + 0, + [ + 0, + 18, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 7, + [ + 0, + [ + 0, + 14, + false + ], + null + ], + "\"Live final\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "orchestra", + "query": "SELECT count(DISTINCT Nationality) FROM conductor", + "query_toks": [ + "SELECT", + "count", + "(", + "DISTINCT", + "Nationality", + ")", + "FROM", + "conductor" + ], + "query_toks_no_value": [ + "select", + "count", + "(", + "distinct", + "nationality", + ")", + "from", + "conductor" + ], + "question": "How many different nationalities do conductors have?", + "question_toks": [ + "How", + "many", + "different", + "nationalities", + "do", + "conductors", + "have", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 3, + [ + 0, + [ + 0, + 4, + true + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "orchestra", + "query": "SELECT count(DISTINCT Nationality) FROM conductor", + "query_toks": [ + "SELECT", + "count", + "(", + "DISTINCT", + "Nationality", + ")", + "FROM", + "conductor" + ], + "query_toks_no_value": [ + "select", + "count", + "(", + "distinct", + "nationality", + ")", + "from", + "conductor" + ], + "question": "Count the number of different nationalities of conductors.", + "question_toks": [ + "Count", + "the", + "number", + "of", + "different", + "nationalities", + "of", + "conductors", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 3, + [ + 0, + [ + 0, + 4, + true + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "orchestra", + "query": "SELECT Name FROM conductor ORDER BY Year_of_Work DESC", + "query_toks": [ + "SELECT", + "Name", + "FROM", + "conductor", + "ORDER", + "BY", + "Year_of_Work", + "DESC" + ], + "query_toks_no_value": [ + "select", + "name", + "from", + "conductor", + "order", + "by", + "year_of_work", + "desc" + ], + "question": "List names of conductors in descending order of years of work.", + "question_toks": [ + "List", + "names", + "of", + "conductors", + "in", + "descending", + "order", + "of", + "years", + "of", + "work", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 2, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [ + "desc", + [ + [ + 0, + [ + 0, + 5, + false + ], + null + ] + ] + ], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "orchestra", + "query": "SELECT Name FROM conductor ORDER BY Year_of_Work DESC", + "query_toks": [ + "SELECT", + "Name", + "FROM", + "conductor", + "ORDER", + "BY", + "Year_of_Work", + "DESC" + ], + "query_toks_no_value": [ + "select", + "name", + "from", + "conductor", + "order", + "by", + "year_of_work", + "desc" + ], + "question": "What are the names of conductors, sorted descending by the number of years they have worked?", + "question_toks": [ + "What", + "are", + "the", + "names", + "of", + "conductors", + ",", + "sorted", + "descending", + "by", + "the", + "number", + "of", + "years", + "they", + "have", + "worked", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 2, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [ + "desc", + [ + [ + 0, + [ + 0, + 5, + false + ], + null + ] + ] + ], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "orchestra", + "query": "SELECT Name FROM conductor ORDER BY Year_of_Work DESC LIMIT 1", + "query_toks": [ + "SELECT", + "Name", + "FROM", + "conductor", + "ORDER", + "BY", + "Year_of_Work", + "DESC", + "LIMIT", + "1" + ], + "query_toks_no_value": [ + "select", + "name", + "from", + "conductor", + "order", + "by", + "year_of_work", + "desc", + "limit", + "value" + ], + "question": "List the name of the conductor with the most years of work.", + "question_toks": [ + "List", + "the", + "name", + "of", + "the", + "conductor", + "with", + "the", + "most", + "years", + "of", + "work", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 2, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [ + "desc", + [ + [ + 0, + [ + 0, + 5, + false + ], + null + ] + ] + ], + "limit": 1, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "orchestra", + "query": "SELECT Name FROM conductor ORDER BY Year_of_Work DESC LIMIT 1", + "query_toks": [ + "SELECT", + "Name", + "FROM", + "conductor", + "ORDER", + "BY", + "Year_of_Work", + "DESC", + "LIMIT", + "1" + ], + "query_toks_no_value": [ + "select", + "name", + "from", + "conductor", + "order", + "by", + "year_of_work", + "desc", + "limit", + "value" + ], + "question": "What is the name of the conductor who has worked the greatest number of years?", + "question_toks": [ + "What", + "is", + "the", + "name", + "of", + "the", + "conductor", + "who", + "has", + "worked", + "the", + "greatest", + "number", + "of", + "years", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 2, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [ + "desc", + [ + [ + 0, + [ + 0, + 5, + false + ], + null + ] + ] + ], + "limit": 1, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "orchestra", + "query": "SELECT T1.Name , T2.Orchestra FROM conductor AS T1 JOIN orchestra AS T2 ON T1.Conductor_ID = T2.Conductor_ID", + "query_toks": [ + "SELECT", + "T1.Name", + ",", + "T2.Orchestra", + "FROM", + "conductor", + "AS", + "T1", + "JOIN", + "orchestra", + "AS", + "T2", + "ON", + "T1.Conductor_ID", + "=", + "T2.Conductor_ID" + ], + "query_toks_no_value": [ + "select", + "t1", + ".", + "name", + ",", + "t2", + ".", + "orchestra", + "from", + "conductor", + "as", + "t1", + "join", + "orchestra", + "as", + "t2", + "on", + "t1", + ".", + "conductor_id", + "=", + "t2", + ".", + "conductor_id" + ], + "question": "Show the names of conductors and the orchestras they have conducted.", + "question_toks": [ + "Show", + "the", + "names", + "of", + "conductors", + "and", + "the", + "orchestras", + "they", + "have", + "conducted", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ], + [ + "table_unit", + 1 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 1, + false + ], + null + ], + [ + 0, + 8, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 2, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 7, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "orchestra", + "query": "SELECT T1.Name , T2.Orchestra FROM conductor AS T1 JOIN orchestra AS T2 ON T1.Conductor_ID = T2.Conductor_ID", + "query_toks": [ + "SELECT", + "T1.Name", + ",", + "T2.Orchestra", + "FROM", + "conductor", + "AS", + "T1", + "JOIN", + "orchestra", + "AS", + "T2", + "ON", + "T1.Conductor_ID", + "=", + "T2.Conductor_ID" + ], + "query_toks_no_value": [ + "select", + "t1", + ".", + "name", + ",", + "t2", + ".", + "orchestra", + "from", + "conductor", + "as", + "t1", + "join", + "orchestra", + "as", + "t2", + "on", + "t1", + ".", + "conductor_id", + "=", + "t2", + ".", + "conductor_id" + ], + "question": "What are the names of conductors as well as the corresonding orchestras that they have conducted?", + "question_toks": [ + "What", + "are", + "the", + "names", + "of", + "conductors", + "as", + "well", + "as", + "the", + "corresonding", + "orchestras", + "that", + "they", + "have", + "conducted", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ], + [ + "table_unit", + 1 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 1, + false + ], + null + ], + [ + 0, + 8, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 2, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 7, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "orchestra", + "query": "SELECT T1.Name FROM conductor AS T1 JOIN orchestra AS T2 ON T1.Conductor_ID = T2.Conductor_ID GROUP BY T2.Conductor_ID HAVING COUNT(*) > 1", + "query_toks": [ + "SELECT", + "T1.Name", + "FROM", + "conductor", + "AS", + "T1", + "JOIN", + "orchestra", + "AS", + "T2", + "ON", + "T1.Conductor_ID", + "=", + "T2.Conductor_ID", + "GROUP", + "BY", + "T2.Conductor_ID", + "HAVING", + "COUNT", + "(", + "*", + ")", + ">", + "1" + ], + "query_toks_no_value": [ + "select", + "t1", + ".", + "name", + "from", + "conductor", + "as", + "t1", + "join", + "orchestra", + "as", + "t2", + "on", + "t1", + ".", + "conductor_id", + "=", + "t2", + ".", + "conductor_id", + "group", + "by", + "t2", + ".", + "conductor_id", + "having", + "count", + "(", + "*", + ")", + ">", + "value" + ], + "question": "Show the names of conductors that have conducted more than one orchestras.", + "question_toks": [ + "Show", + "the", + "names", + "of", + "conductors", + "that", + "have", + "conducted", + "more", + "than", + "one", + "orchestras", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ], + [ + "table_unit", + 1 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 1, + false + ], + null + ], + [ + 0, + 8, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 2, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 8, + false + ] + ], + "having": [ + [ + false, + 3, + [ + 0, + [ + 3, + 0, + false + ], + null + ], + 1.0, + null + ] + ], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "orchestra", + "query": "SELECT T1.Name FROM conductor AS T1 JOIN orchestra AS T2 ON T1.Conductor_ID = T2.Conductor_ID GROUP BY T2.Conductor_ID HAVING COUNT(*) > 1", + "query_toks": [ + "SELECT", + "T1.Name", + "FROM", + "conductor", + "AS", + "T1", + "JOIN", + "orchestra", + "AS", + "T2", + "ON", + "T1.Conductor_ID", + "=", + "T2.Conductor_ID", + "GROUP", + "BY", + "T2.Conductor_ID", + "HAVING", + "COUNT", + "(", + "*", + ")", + ">", + "1" + ], + "query_toks_no_value": [ + "select", + "t1", + ".", + "name", + "from", + "conductor", + "as", + "t1", + "join", + "orchestra", + "as", + "t2", + "on", + "t1", + ".", + "conductor_id", + "=", + "t2", + ".", + "conductor_id", + "group", + "by", + "t2", + ".", + "conductor_id", + "having", + "count", + "(", + "*", + ")", + ">", + "value" + ], + "question": "What are the names of conductors who have conducted at more than one orchestra?", + "question_toks": [ + "What", + "are", + "the", + "names", + "of", + "conductors", + "who", + "have", + "conducted", + "at", + "more", + "than", + "one", + "orchestra", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ], + [ + "table_unit", + 1 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 1, + false + ], + null + ], + [ + 0, + 8, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 2, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 8, + false + ] + ], + "having": [ + [ + false, + 3, + [ + 0, + [ + 3, + 0, + false + ], + null + ], + 1.0, + null + ] + ], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "orchestra", + "query": "SELECT T1.Name FROM conductor AS T1 JOIN orchestra AS T2 ON T1.Conductor_ID = T2.Conductor_ID GROUP BY T2.Conductor_ID ORDER BY COUNT(*) DESC LIMIT 1", + "query_toks": [ + "SELECT", + "T1.Name", + "FROM", + "conductor", + "AS", + "T1", + "JOIN", + "orchestra", + "AS", + "T2", + "ON", + "T1.Conductor_ID", + "=", + "T2.Conductor_ID", + "GROUP", + "BY", + "T2.Conductor_ID", + "ORDER", + "BY", + "COUNT", + "(", + "*", + ")", + "DESC", + "LIMIT", + "1" + ], + "query_toks_no_value": [ + "select", + "t1", + ".", + "name", + "from", + "conductor", + "as", + "t1", + "join", + "orchestra", + "as", + "t2", + "on", + "t1", + ".", + "conductor_id", + "=", + "t2", + ".", + "conductor_id", + "group", + "by", + "t2", + ".", + "conductor_id", + "order", + "by", + "count", + "(", + "*", + ")", + "desc", + "limit", + "value" + ], + "question": "Show the name of the conductor that has conducted the most number of orchestras.", + "question_toks": [ + "Show", + "the", + "name", + "of", + "the", + "conductor", + "that", + "has", + "conducted", + "the", + "most", + "number", + "of", + "orchestras", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ], + [ + "table_unit", + 1 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 1, + false + ], + null + ], + [ + 0, + 8, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 2, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 8, + false + ] + ], + "having": [], + "orderBy": [ + "desc", + [ + [ + 0, + [ + 3, + 0, + false + ], + null + ] + ] + ], + "limit": 1, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "orchestra", + "query": "SELECT T1.Name FROM conductor AS T1 JOIN orchestra AS T2 ON T1.Conductor_ID = T2.Conductor_ID GROUP BY T2.Conductor_ID ORDER BY COUNT(*) DESC LIMIT 1", + "query_toks": [ + "SELECT", + "T1.Name", + "FROM", + "conductor", + "AS", + "T1", + "JOIN", + "orchestra", + "AS", + "T2", + "ON", + "T1.Conductor_ID", + "=", + "T2.Conductor_ID", + "GROUP", + "BY", + "T2.Conductor_ID", + "ORDER", + "BY", + "COUNT", + "(", + "*", + ")", + "DESC", + "LIMIT", + "1" + ], + "query_toks_no_value": [ + "select", + "t1", + ".", + "name", + "from", + "conductor", + "as", + "t1", + "join", + "orchestra", + "as", + "t2", + "on", + "t1", + ".", + "conductor_id", + "=", + "t2", + ".", + "conductor_id", + "group", + "by", + "t2", + ".", + "conductor_id", + "order", + "by", + "count", + "(", + "*", + ")", + "desc", + "limit", + "value" + ], + "question": "What is the name of the conductor who has conducted the most orchestras?", + "question_toks": [ + "What", + "is", + "the", + "name", + "of", + "the", + "conductor", + "who", + "has", + "conducted", + "the", + "most", + "orchestras", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ], + [ + "table_unit", + 1 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 1, + false + ], + null + ], + [ + 0, + 8, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 2, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 8, + false + ] + ], + "having": [], + "orderBy": [ + "desc", + [ + [ + 0, + [ + 3, + 0, + false + ], + null + ] + ] + ], + "limit": 1, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "orchestra", + "query": "SELECT T1.Name FROM conductor AS T1 JOIN orchestra AS T2 ON T1.Conductor_ID = T2.Conductor_ID WHERE Year_of_Founded > 2008", + "query_toks": [ + "SELECT", + "T1.Name", + "FROM", + "conductor", + "AS", + "T1", + "JOIN", + "orchestra", + "AS", + "T2", + "ON", + "T1.Conductor_ID", + "=", + "T2.Conductor_ID", + "WHERE", + "Year_of_Founded", + ">", + "2008" + ], + "query_toks_no_value": [ + "select", + "t1", + ".", + "name", + "from", + "conductor", + "as", + "t1", + "join", + "orchestra", + "as", + "t2", + "on", + "t1", + ".", + "conductor_id", + "=", + "t2", + ".", + "conductor_id", + "where", + "year_of_founded", + ">", + "value" + ], + "question": "Please show the name of the conductor that has conducted orchestras founded after 2008.", + "question_toks": [ + "Please", + "show", + "the", + "name", + "of", + "the", + "conductor", + "that", + "has", + "conducted", + "orchestras", + "founded", + "after", + "2008", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ], + [ + "table_unit", + 1 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 1, + false + ], + null + ], + [ + 0, + 8, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 2, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 3, + [ + 0, + [ + 0, + 10, + false + ], + null + ], + 2008.0, + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "orchestra", + "query": "SELECT T1.Name FROM conductor AS T1 JOIN orchestra AS T2 ON T1.Conductor_ID = T2.Conductor_ID WHERE Year_of_Founded > 2008", + "query_toks": [ + "SELECT", + "T1.Name", + "FROM", + "conductor", + "AS", + "T1", + "JOIN", + "orchestra", + "AS", + "T2", + "ON", + "T1.Conductor_ID", + "=", + "T2.Conductor_ID", + "WHERE", + "Year_of_Founded", + ">", + "2008" + ], + "query_toks_no_value": [ + "select", + "t1", + ".", + "name", + "from", + "conductor", + "as", + "t1", + "join", + "orchestra", + "as", + "t2", + "on", + "t1", + ".", + "conductor_id", + "=", + "t2", + ".", + "conductor_id", + "where", + "year_of_founded", + ">", + "value" + ], + "question": "What are the names of conductors who have conducted orchestras founded after the year 2008?", + "question_toks": [ + "What", + "are", + "the", + "names", + "of", + "conductors", + "who", + "have", + "conducted", + "orchestras", + "founded", + "after", + "the", + "year", + "2008", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ], + [ + "table_unit", + 1 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 1, + false + ], + null + ], + [ + 0, + 8, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 2, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 3, + [ + 0, + [ + 0, + 10, + false + ], + null + ], + 2008.0, + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "orchestra", + "query": "SELECT Record_Company , COUNT(*) FROM orchestra GROUP BY Record_Company", + "query_toks": [ + "SELECT", + "Record_Company", + ",", + "COUNT", + "(", + "*", + ")", + "FROM", + "orchestra", + "GROUP", + "BY", + "Record_Company" + ], + "query_toks_no_value": [ + "select", + "record_company", + ",", + "count", + "(", + "*", + ")", + "from", + "orchestra", + "group", + "by", + "record_company" + ], + "question": "Please show the different record companies and the corresponding number of orchestras.", + "question_toks": [ + "Please", + "show", + "the", + "different", + "record", + "companies", + "and", + "the", + "corresponding", + "number", + "of", + "orchestras", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 9, + false + ], + null + ] + ], + [ + 3, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 9, + false + ] + ], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "orchestra", + "query": "SELECT Record_Company , COUNT(*) FROM orchestra GROUP BY Record_Company", + "query_toks": [ + "SELECT", + "Record_Company", + ",", + "COUNT", + "(", + "*", + ")", + "FROM", + "orchestra", + "GROUP", + "BY", + "Record_Company" + ], + "query_toks_no_value": [ + "select", + "record_company", + ",", + "count", + "(", + "*", + ")", + "from", + "orchestra", + "group", + "by", + "record_company" + ], + "question": "How many orchestras does each record company manage?", + "question_toks": [ + "How", + "many", + "orchestras", + "does", + "each", + "record", + "company", + "manage", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 9, + false + ], + null + ] + ], + [ + 3, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 9, + false + ] + ], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "orchestra", + "query": "SELECT Major_Record_Format FROM orchestra GROUP BY Major_Record_Format ORDER BY COUNT(*) ASC", + "query_toks": [ + "SELECT", + "Major_Record_Format", + "FROM", + "orchestra", + "GROUP", + "BY", + "Major_Record_Format", + "ORDER", + "BY", + "COUNT", + "(", + "*", + ")", + "ASC" + ], + "query_toks_no_value": [ + "select", + "major_record_format", + "from", + "orchestra", + "group", + "by", + "major_record_format", + "order", + "by", + "count", + "(", + "*", + ")", + "asc" + ], + "question": "Please show the record formats of orchestras in ascending order of count.", + "question_toks": [ + "Please", + "show", + "the", + "record", + "formats", + "of", + "orchestras", + "in", + "ascending", + "order", + "of", + "count", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 11, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 11, + false + ] + ], + "having": [], + "orderBy": [ + "asc", + [ + [ + 0, + [ + 3, + 0, + false + ], + null + ] + ] + ], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "orchestra", + "query": "SELECT Major_Record_Format FROM orchestra GROUP BY Major_Record_Format ORDER BY COUNT(*) ASC", + "query_toks": [ + "SELECT", + "Major_Record_Format", + "FROM", + "orchestra", + "GROUP", + "BY", + "Major_Record_Format", + "ORDER", + "BY", + "COUNT", + "(", + "*", + ")", + "ASC" + ], + "query_toks_no_value": [ + "select", + "major_record_format", + "from", + "orchestra", + "group", + "by", + "major_record_format", + "order", + "by", + "count", + "(", + "*", + ")", + "asc" + ], + "question": "What are the major record formats of orchestras, sorted by their frequency?", + "question_toks": [ + "What", + "are", + "the", + "major", + "record", + "formats", + "of", + "orchestras", + ",", + "sorted", + "by", + "their", + "frequency", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 11, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 11, + false + ] + ], + "having": [], + "orderBy": [ + "asc", + [ + [ + 0, + [ + 3, + 0, + false + ], + null + ] + ] + ], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "orchestra", + "query": "SELECT Record_Company FROM orchestra GROUP BY Record_Company ORDER BY COUNT(*) DESC LIMIT 1", + "query_toks": [ + "SELECT", + "Record_Company", + "FROM", + "orchestra", + "GROUP", + "BY", + "Record_Company", + "ORDER", + "BY", + "COUNT", + "(", + "*", + ")", + "DESC", + "LIMIT", + "1" + ], + "query_toks_no_value": [ + "select", + "record_company", + "from", + "orchestra", + "group", + "by", + "record_company", + "order", + "by", + "count", + "(", + "*", + ")", + "desc", + "limit", + "value" + ], + "question": "List the record company shared by the most number of orchestras.", + "question_toks": [ + "List", + "the", + "record", + "company", + "shared", + "by", + "the", + "most", + "number", + "of", + "orchestras", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 9, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 9, + false + ] + ], + "having": [], + "orderBy": [ + "desc", + [ + [ + 0, + [ + 3, + 0, + false + ], + null + ] + ] + ], + "limit": 1, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "orchestra", + "query": "SELECT Record_Company FROM orchestra GROUP BY Record_Company ORDER BY COUNT(*) DESC LIMIT 1", + "query_toks": [ + "SELECT", + "Record_Company", + "FROM", + "orchestra", + "GROUP", + "BY", + "Record_Company", + "ORDER", + "BY", + "COUNT", + "(", + "*", + ")", + "DESC", + "LIMIT", + "1" + ], + "query_toks_no_value": [ + "select", + "record_company", + "from", + "orchestra", + "group", + "by", + "record_company", + "order", + "by", + "count", + "(", + "*", + ")", + "desc", + "limit", + "value" + ], + "question": "What is the record company used by the greatest number of orchestras?", + "question_toks": [ + "What", + "is", + "the", + "record", + "company", + "used", + "by", + "the", + "greatest", + "number", + "of", + "orchestras", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 9, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 9, + false + ] + ], + "having": [], + "orderBy": [ + "desc", + [ + [ + 0, + [ + 3, + 0, + false + ], + null + ] + ] + ], + "limit": 1, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "orchestra", + "query": "SELECT Orchestra FROM orchestra WHERE Orchestra_ID NOT IN (SELECT Orchestra_ID FROM performance)", + "query_toks": [ + "SELECT", + "Orchestra", + "FROM", + "orchestra", + "WHERE", + "Orchestra_ID", + "NOT", + "IN", + "(", + "SELECT", + "Orchestra_ID", + "FROM", + "performance", + ")" + ], + "query_toks_no_value": [ + "select", + "orchestra", + "from", + "orchestra", + "where", + "orchestra_id", + "not", + "in", + "(", + "select", + "orchestra_id", + "from", + "performance", + ")" + ], + "question": "List the names of orchestras that have no performance.", + "question_toks": [ + "List", + "the", + "names", + "of", + "orchestras", + "that", + "have", + "no", + "performance", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 7, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + true, + 8, + [ + 0, + [ + 0, + 6, + false + ], + null + ], + { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 13, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + }, + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "orchestra", + "query": "SELECT Orchestra FROM orchestra WHERE Orchestra_ID NOT IN (SELECT Orchestra_ID FROM performance)", + "query_toks": [ + "SELECT", + "Orchestra", + "FROM", + "orchestra", + "WHERE", + "Orchestra_ID", + "NOT", + "IN", + "(", + "SELECT", + "Orchestra_ID", + "FROM", + "performance", + ")" + ], + "query_toks_no_value": [ + "select", + "orchestra", + "from", + "orchestra", + "where", + "orchestra_id", + "not", + "in", + "(", + "select", + "orchestra_id", + "from", + "performance", + ")" + ], + "question": "What are the orchestras that do not have any performances?", + "question_toks": [ + "What", + "are", + "the", + "orchestras", + "that", + "do", + "not", + "have", + "any", + "performances", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 7, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + true, + 8, + [ + 0, + [ + 0, + 6, + false + ], + null + ], + { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 13, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + }, + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "orchestra", + "query": "SELECT Record_Company FROM orchestra WHERE Year_of_Founded < 2003 INTERSECT SELECT Record_Company FROM orchestra WHERE Year_of_Founded > 2003", + "query_toks": [ + "SELECT", + "Record_Company", + "FROM", + "orchestra", + "WHERE", + "Year_of_Founded", + "<", + "2003", + "INTERSECT", + "SELECT", + "Record_Company", + "FROM", + "orchestra", + "WHERE", + "Year_of_Founded", + ">", + "2003" + ], + "query_toks_no_value": [ + "select", + "record_company", + "from", + "orchestra", + "where", + "year_of_founded", + "<", + "value", + "intersect", + "select", + "record_company", + "from", + "orchestra", + "where", + "year_of_founded", + ">", + "value" + ], + "question": "Show the record companies shared by orchestras founded before 2003 and after 2003.", + "question_toks": [ + "Show", + "the", + "record", + "companies", + "shared", + "by", + "orchestras", + "founded", + "before", + "2003", + "and", + "after", + "2003", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 9, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 4, + [ + 0, + [ + 0, + 10, + false + ], + null + ], + 2003.0, + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 9, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 3, + [ + 0, + [ + 0, + 10, + false + ], + null + ], + 2003.0, + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + }, + "union": null, + "except": null + } + }, + { + "db_id": "orchestra", + "query": "SELECT Record_Company FROM orchestra WHERE Year_of_Founded < 2003 INTERSECT SELECT Record_Company FROM orchestra WHERE Year_of_Founded > 2003", + "query_toks": [ + "SELECT", + "Record_Company", + "FROM", + "orchestra", + "WHERE", + "Year_of_Founded", + "<", + "2003", + "INTERSECT", + "SELECT", + "Record_Company", + "FROM", + "orchestra", + "WHERE", + "Year_of_Founded", + ">", + "2003" + ], + "query_toks_no_value": [ + "select", + "record_company", + "from", + "orchestra", + "where", + "year_of_founded", + "<", + "value", + "intersect", + "select", + "record_company", + "from", + "orchestra", + "where", + "year_of_founded", + ">", + "value" + ], + "question": "What are the record companies that are used by both orchestras founded before 2003 and those founded after 2003?", + "question_toks": [ + "What", + "are", + "the", + "record", + "companies", + "that", + "are", + "used", + "by", + "both", + "orchestras", + "founded", + "before", + "2003", + "and", + "those", + "founded", + "after", + "2003", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 9, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 4, + [ + 0, + [ + 0, + 10, + false + ], + null + ], + 2003.0, + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 9, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 3, + [ + 0, + [ + 0, + 10, + false + ], + null + ], + 2003.0, + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + }, + "union": null, + "except": null + } + }, + { + "db_id": "orchestra", + "query": "SELECT COUNT(*) FROM orchestra WHERE Major_Record_Format = \"CD\" OR Major_Record_Format = \"DVD\"", + "query_toks": [ + "SELECT", + "COUNT", + "(", + "*", + ")", + "FROM", + "orchestra", + "WHERE", + "Major_Record_Format", + "=", + "``", + "CD", + "''", + "OR", + "Major_Record_Format", + "=", + "``", + "DVD", + "''" + ], + "query_toks_no_value": [ + "select", + "count", + "(", + "*", + ")", + "from", + "orchestra", + "where", + "major_record_format", + "=", + "value", + "or", + "major_record_format", + "=", + "value" + ], + "question": "Find the number of orchestras whose record format is \"CD\" or \"DVD\".", + "question_toks": [ + "Find", + "the", + "number", + "of", + "orchestras", + "whose", + "record", + "format", + "is", + "``", + "CD", + "''", + "or", + "``", + "DVD", + "''", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 3, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 11, + false + ], + null + ], + "\"CD\"", + null + ], + "or", + [ + false, + 2, + [ + 0, + [ + 0, + 11, + false + ], + null + ], + "\"DVD\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "orchestra", + "query": "SELECT COUNT(*) FROM orchestra WHERE Major_Record_Format = \"CD\" OR Major_Record_Format = \"DVD\"", + "query_toks": [ + "SELECT", + "COUNT", + "(", + "*", + ")", + "FROM", + "orchestra", + "WHERE", + "Major_Record_Format", + "=", + "``", + "CD", + "''", + "OR", + "Major_Record_Format", + "=", + "``", + "DVD", + "''" + ], + "query_toks_no_value": [ + "select", + "count", + "(", + "*", + ")", + "from", + "orchestra", + "where", + "major_record_format", + "=", + "value", + "or", + "major_record_format", + "=", + "value" + ], + "question": "Count the number of orchestras that have CD or DVD as their record format.", + "question_toks": [ + "Count", + "the", + "number", + "of", + "orchestras", + "that", + "have", + "CD", + "or", + "DVD", + "as", + "their", + "record", + "format", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 3, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 11, + false + ], + null + ], + "\"CD\"", + null + ], + "or", + [ + false, + 2, + [ + 0, + [ + 0, + 11, + false + ], + null + ], + "\"DVD\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "orchestra", + "query": "SELECT Year_of_Founded FROM orchestra AS T1 JOIN performance AS T2 ON T1.Orchestra_ID = T2.Orchestra_ID GROUP BY T2.Orchestra_ID HAVING COUNT(*) > 1", + "query_toks": [ + "SELECT", + "Year_of_Founded", + "FROM", + "orchestra", + "AS", + "T1", + "JOIN", + "performance", + "AS", + "T2", + "ON", + "T1.Orchestra_ID", + "=", + "T2.Orchestra_ID", + "GROUP", + "BY", + "T2.Orchestra_ID", + "HAVING", + "COUNT", + "(", + "*", + ")", + ">", + "1" + ], + "query_toks_no_value": [ + "select", + "year_of_founded", + "from", + "orchestra", + "as", + "t1", + "join", + "performance", + "as", + "t2", + "on", + "t1", + ".", + "orchestra_id", + "=", + "t2", + ".", + "orchestra_id", + "group", + "by", + "t2", + ".", + "orchestra_id", + "having", + "count", + "(", + "*", + ")", + ">", + "value" + ], + "question": "Show the years in which orchestras that have given more than one performance are founded.", + "question_toks": [ + "Show", + "the", + "years", + "in", + "which", + "orchestras", + "that", + "have", + "given", + "more", + "than", + "one", + "performance", + "are", + "founded", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ], + [ + "table_unit", + 2 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 6, + false + ], + null + ], + [ + 0, + 13, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 10, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 13, + false + ] + ], + "having": [ + [ + false, + 3, + [ + 0, + [ + 3, + 0, + false + ], + null + ], + 1.0, + null + ] + ], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "orchestra", + "query": "SELECT Year_of_Founded FROM orchestra AS T1 JOIN performance AS T2 ON T1.Orchestra_ID = T2.Orchestra_ID GROUP BY T2.Orchestra_ID HAVING COUNT(*) > 1", + "query_toks": [ + "SELECT", + "Year_of_Founded", + "FROM", + "orchestra", + "AS", + "T1", + "JOIN", + "performance", + "AS", + "T2", + "ON", + "T1.Orchestra_ID", + "=", + "T2.Orchestra_ID", + "GROUP", + "BY", + "T2.Orchestra_ID", + "HAVING", + "COUNT", + "(", + "*", + ")", + ">", + "1" + ], + "query_toks_no_value": [ + "select", + "year_of_founded", + "from", + "orchestra", + "as", + "t1", + "join", + "performance", + "as", + "t2", + "on", + "t1", + ".", + "orchestra_id", + "=", + "t2", + ".", + "orchestra_id", + "group", + "by", + "t2", + ".", + "orchestra_id", + "having", + "count", + "(", + "*", + ")", + ">", + "value" + ], + "question": "What are years of founding for orchestras that have had more than a single performance?", + "question_toks": [ + "What", + "are", + "years", + "of", + "founding", + "for", + "orchestras", + "that", + "have", + "had", + "more", + "than", + "a", + "single", + "performance", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ], + [ + "table_unit", + 2 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 6, + false + ], + null + ], + [ + 0, + 13, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 10, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 13, + false + ] + ], + "having": [ + [ + false, + 3, + [ + 0, + [ + 3, + 0, + false + ], + null + ], + 1.0, + null + ] + ], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "network_1", + "query": "SELECT count(*) FROM Highschooler", + "query_toks": [ + "SELECT", + "count", + "(", + "*", + ")", + "FROM", + "Highschooler" + ], + "query_toks_no_value": [ + "select", + "count", + "(", + "*", + ")", + "from", + "highschooler" + ], + "question": "How many high schoolers are there?", + "question_toks": [ + "How", + "many", + "high", + "schoolers", + "are", + "there", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 3, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "network_1", + "query": "SELECT count(*) FROM Highschooler", + "query_toks": [ + "SELECT", + "count", + "(", + "*", + ")", + "FROM", + "Highschooler" + ], + "query_toks_no_value": [ + "select", + "count", + "(", + "*", + ")", + "from", + "highschooler" + ], + "question": "Count the number of high schoolers.", + "question_toks": [ + "Count", + "the", + "number", + "of", + "high", + "schoolers", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 3, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "network_1", + "query": "SELECT name , grade FROM Highschooler", + "query_toks": [ + "SELECT", + "name", + ",", + "grade", + "FROM", + "Highschooler" + ], + "query_toks_no_value": [ + "select", + "name", + ",", + "grade", + "from", + "highschooler" + ], + "question": "Show the names and grades of each high schooler.", + "question_toks": [ + "Show", + "the", + "names", + "and", + "grades", + "of", + "each", + "high", + "schooler", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 2, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 3, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "network_1", + "query": "SELECT name , grade FROM Highschooler", + "query_toks": [ + "SELECT", + "name", + ",", + "grade", + "FROM", + "Highschooler" + ], + "query_toks_no_value": [ + "select", + "name", + ",", + "grade", + "from", + "highschooler" + ], + "question": "What are the names and grades for each high schooler?", + "question_toks": [ + "What", + "are", + "the", + "names", + "and", + "grades", + "for", + "each", + "high", + "schooler", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 2, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 3, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "network_1", + "query": "SELECT grade FROM Highschooler", + "query_toks": [ + "SELECT", + "grade", + "FROM", + "Highschooler" + ], + "query_toks_no_value": [ + "select", + "grade", + "from", + "highschooler" + ], + "question": "Show all the grades of the high schoolers.", + "question_toks": [ + "Show", + "all", + "the", + "grades", + "of", + "the", + "high", + "schoolers", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 3, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "network_1", + "query": "SELECT grade FROM Highschooler", + "query_toks": [ + "SELECT", + "grade", + "FROM", + "Highschooler" + ], + "query_toks_no_value": [ + "select", + "grade", + "from", + "highschooler" + ], + "question": "What is the grade of each high schooler?", + "question_toks": [ + "What", + "is", + "the", + "grade", + "of", + "each", + "high", + "schooler", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 3, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "network_1", + "query": "SELECT grade FROM Highschooler WHERE name = \"Kyle\"", + "query_toks": [ + "SELECT", + "grade", + "FROM", + "Highschooler", + "WHERE", + "name", + "=", + "``", + "Kyle", + "''" + ], + "query_toks_no_value": [ + "select", + "grade", + "from", + "highschooler", + "where", + "name", + "=", + "value" + ], + "question": "What grade is Kyle in?", + "question_toks": [ + "What", + "grade", + "is", + "Kyle", + "in", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 3, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 2, + false + ], + null + ], + "\"Kyle\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "network_1", + "query": "SELECT grade FROM Highschooler WHERE name = \"Kyle\"", + "query_toks": [ + "SELECT", + "grade", + "FROM", + "Highschooler", + "WHERE", + "name", + "=", + "``", + "Kyle", + "''" + ], + "query_toks_no_value": [ + "select", + "grade", + "from", + "highschooler", + "where", + "name", + "=", + "value" + ], + "question": "Return the grade for the high schooler named Kyle.", + "question_toks": [ + "Return", + "the", + "grade", + "for", + "the", + "high", + "schooler", + "named", + "Kyle", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 3, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 2, + false + ], + null + ], + "\"Kyle\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "network_1", + "query": "SELECT name FROM Highschooler WHERE grade = 10", + "query_toks": [ + "SELECT", + "name", + "FROM", + "Highschooler", + "WHERE", + "grade", + "=", + "10" + ], + "query_toks_no_value": [ + "select", + "name", + "from", + "highschooler", + "where", + "grade", + "=", + "value" + ], + "question": "Show the names of all high schoolers in grade 10.", + "question_toks": [ + "Show", + "the", + "names", + "of", + "all", + "high", + "schoolers", + "in", + "grade", + "10", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 2, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 3, + false + ], + null + ], + 10.0, + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "network_1", + "query": "SELECT name FROM Highschooler WHERE grade = 10", + "query_toks": [ + "SELECT", + "name", + "FROM", + "Highschooler", + "WHERE", + "grade", + "=", + "10" + ], + "query_toks_no_value": [ + "select", + "name", + "from", + "highschooler", + "where", + "grade", + "=", + "value" + ], + "question": "What are the names of all high schoolers in grade 10?", + "question_toks": [ + "What", + "are", + "the", + "names", + "of", + "all", + "high", + "schoolers", + "in", + "grade", + "10", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 2, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 3, + false + ], + null + ], + 10.0, + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "network_1", + "query": "SELECT ID FROM Highschooler WHERE name = \"Kyle\"", + "query_toks": [ + "SELECT", + "ID", + "FROM", + "Highschooler", + "WHERE", + "name", + "=", + "``", + "Kyle", + "''" + ], + "query_toks_no_value": [ + "select", + "id", + "from", + "highschooler", + "where", + "name", + "=", + "value" + ], + "question": "Show the ID of the high schooler named Kyle.", + "question_toks": [ + "Show", + "the", + "ID", + "of", + "the", + "high", + "schooler", + "named", + "Kyle", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 1, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 2, + false + ], + null + ], + "\"Kyle\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "network_1", + "query": "SELECT ID FROM Highschooler WHERE name = \"Kyle\"", + "query_toks": [ + "SELECT", + "ID", + "FROM", + "Highschooler", + "WHERE", + "name", + "=", + "``", + "Kyle", + "''" + ], + "query_toks_no_value": [ + "select", + "id", + "from", + "highschooler", + "where", + "name", + "=", + "value" + ], + "question": "What is Kyle's id?", + "question_toks": [ + "What", + "is", + "Kyle", + "'s", + "id", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 1, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 2, + false + ], + null + ], + "\"Kyle\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "network_1", + "query": "SELECT count(*) FROM Highschooler WHERE grade = 9 OR grade = 10", + "query_toks": [ + "SELECT", + "count", + "(", + "*", + ")", + "FROM", + "Highschooler", + "WHERE", + "grade", + "=", + "9", + "OR", + "grade", + "=", + "10" + ], + "query_toks_no_value": [ + "select", + "count", + "(", + "*", + ")", + "from", + "highschooler", + "where", + "grade", + "=", + "value", + "or", + "grade", + "=", + "value" + ], + "question": "How many high schoolers are there in grade 9 or 10?", + "question_toks": [ + "How", + "many", + "high", + "schoolers", + "are", + "there", + "in", + "grade", + "9", + "or", + "10", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 3, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 3, + false + ], + null + ], + 9.0, + null + ], + "or", + [ + false, + 2, + [ + 0, + [ + 0, + 3, + false + ], + null + ], + 10.0, + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "network_1", + "query": "SELECT count(*) FROM Highschooler WHERE grade = 9 OR grade = 10", + "query_toks": [ + "SELECT", + "count", + "(", + "*", + ")", + "FROM", + "Highschooler", + "WHERE", + "grade", + "=", + "9", + "OR", + "grade", + "=", + "10" + ], + "query_toks_no_value": [ + "select", + "count", + "(", + "*", + ")", + "from", + "highschooler", + "where", + "grade", + "=", + "value", + "or", + "grade", + "=", + "value" + ], + "question": "Count the number of high schoolers in grades 9 or 10.", + "question_toks": [ + "Count", + "the", + "number", + "of", + "high", + "schoolers", + "in", + "grades", + "9", + "or", + "10", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 3, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 3, + false + ], + null + ], + 9.0, + null + ], + "or", + [ + false, + 2, + [ + 0, + [ + 0, + 3, + false + ], + null + ], + 10.0, + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "network_1", + "query": "SELECT grade , count(*) FROM Highschooler GROUP BY grade", + "query_toks": [ + "SELECT", + "grade", + ",", + "count", + "(", + "*", + ")", + "FROM", + "Highschooler", + "GROUP", + "BY", + "grade" + ], + "query_toks_no_value": [ + "select", + "grade", + ",", + "count", + "(", + "*", + ")", + "from", + "highschooler", + "group", + "by", + "grade" + ], + "question": "Show the number of high schoolers for each grade.", + "question_toks": [ + "Show", + "the", + "number", + "of", + "high", + "schoolers", + "for", + "each", + "grade", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 3, + false + ], + null + ] + ], + [ + 3, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 3, + false + ] + ], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "network_1", + "query": "SELECT grade , count(*) FROM Highschooler GROUP BY grade", + "query_toks": [ + "SELECT", + "grade", + ",", + "count", + "(", + "*", + ")", + "FROM", + "Highschooler", + "GROUP", + "BY", + "grade" + ], + "query_toks_no_value": [ + "select", + "grade", + ",", + "count", + "(", + "*", + ")", + "from", + "highschooler", + "group", + "by", + "grade" + ], + "question": "How many high schoolers are in each grade?", + "question_toks": [ + "How", + "many", + "high", + "schoolers", + "are", + "in", + "each", + "grade", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 3, + false + ], + null + ] + ], + [ + 3, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 3, + false + ] + ], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "network_1", + "query": "SELECT grade FROM Highschooler GROUP BY grade ORDER BY count(*) DESC LIMIT 1", + "query_toks": [ + "SELECT", + "grade", + "FROM", + "Highschooler", + "GROUP", + "BY", + "grade", + "ORDER", + "BY", + "count", + "(", + "*", + ")", + "DESC", + "LIMIT", + "1" + ], + "query_toks_no_value": [ + "select", + "grade", + "from", + "highschooler", + "group", + "by", + "grade", + "order", + "by", + "count", + "(", + "*", + ")", + "desc", + "limit", + "value" + ], + "question": "Which grade has the most high schoolers?", + "question_toks": [ + "Which", + "grade", + "has", + "the", + "most", + "high", + "schoolers", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 3, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 3, + false + ] + ], + "having": [], + "orderBy": [ + "desc", + [ + [ + 0, + [ + 3, + 0, + false + ], + null + ] + ] + ], + "limit": 1, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "network_1", + "query": "SELECT grade FROM Highschooler GROUP BY grade ORDER BY count(*) DESC LIMIT 1", + "query_toks": [ + "SELECT", + "grade", + "FROM", + "Highschooler", + "GROUP", + "BY", + "grade", + "ORDER", + "BY", + "count", + "(", + "*", + ")", + "DESC", + "LIMIT", + "1" + ], + "query_toks_no_value": [ + "select", + "grade", + "from", + "highschooler", + "group", + "by", + "grade", + "order", + "by", + "count", + "(", + "*", + ")", + "desc", + "limit", + "value" + ], + "question": "Return the grade that has the greatest number of high schoolers.", + "question_toks": [ + "Return", + "the", + "grade", + "that", + "has", + "the", + "greatest", + "number", + "of", + "high", + "schoolers", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 3, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 3, + false + ] + ], + "having": [], + "orderBy": [ + "desc", + [ + [ + 0, + [ + 3, + 0, + false + ], + null + ] + ] + ], + "limit": 1, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "network_1", + "query": "SELECT grade FROM Highschooler GROUP BY grade HAVING count(*) >= 4", + "query_toks": [ + "SELECT", + "grade", + "FROM", + "Highschooler", + "GROUP", + "BY", + "grade", + "HAVING", + "count", + "(", + "*", + ")", + ">", + "=", + "4" + ], + "query_toks_no_value": [ + "select", + "grade", + "from", + "highschooler", + "group", + "by", + "grade", + "having", + "count", + "(", + "*", + ")", + ">", + "=", + "value" + ], + "question": "Show me all grades that have at least 4 students.", + "question_toks": [ + "Show", + "me", + "all", + "grades", + "that", + "have", + "at", + "least", + "4", + "students", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 3, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 3, + false + ] + ], + "having": [ + [ + false, + 5, + [ + 0, + [ + 3, + 0, + false + ], + null + ], + 4.0, + null + ] + ], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "network_1", + "query": "SELECT grade FROM Highschooler GROUP BY grade HAVING count(*) >= 4", + "query_toks": [ + "SELECT", + "grade", + "FROM", + "Highschooler", + "GROUP", + "BY", + "grade", + "HAVING", + "count", + "(", + "*", + ")", + ">", + "=", + "4" + ], + "query_toks_no_value": [ + "select", + "grade", + "from", + "highschooler", + "group", + "by", + "grade", + "having", + "count", + "(", + "*", + ")", + ">", + "=", + "value" + ], + "question": "Which grades have 4 or more high schoolers?", + "question_toks": [ + "Which", + "grades", + "have", + "4", + "or", + "more", + "high", + "schoolers", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 3, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 3, + false + ] + ], + "having": [ + [ + false, + 5, + [ + 0, + [ + 3, + 0, + false + ], + null + ], + 4.0, + null + ] + ], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "network_1", + "query": "SELECT student_id , count(*) FROM Friend GROUP BY student_id", + "query_toks": [ + "SELECT", + "student_id", + ",", + "count", + "(", + "*", + ")", + "FROM", + "Friend", + "GROUP", + "BY", + "student_id" + ], + "query_toks_no_value": [ + "select", + "student_id", + ",", + "count", + "(", + "*", + ")", + "from", + "friend", + "group", + "by", + "student_id" + ], + "question": "Show the student IDs and numbers of friends corresponding to each.", + "question_toks": [ + "Show", + "the", + "student", + "IDs", + "and", + "numbers", + "of", + "friends", + "corresponding", + "to", + "each", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 4, + false + ], + null + ] + ], + [ + 3, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 4, + false + ] + ], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "network_1", + "query": "SELECT student_id , count(*) FROM Friend GROUP BY student_id", + "query_toks": [ + "SELECT", + "student_id", + ",", + "count", + "(", + "*", + ")", + "FROM", + "Friend", + "GROUP", + "BY", + "student_id" + ], + "query_toks_no_value": [ + "select", + "student_id", + ",", + "count", + "(", + "*", + ")", + "from", + "friend", + "group", + "by", + "student_id" + ], + "question": "How many friends does each student have?", + "question_toks": [ + "How", + "many", + "friends", + "does", + "each", + "student", + "have", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 4, + false + ], + null + ] + ], + [ + 3, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 4, + false + ] + ], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "network_1", + "query": "SELECT T2.name , count(*) FROM Friend AS T1 JOIN Highschooler AS T2 ON T1.student_id = T2.id GROUP BY T1.student_id", + "query_toks": [ + "SELECT", + "T2.name", + ",", + "count", + "(", + "*", + ")", + "FROM", + "Friend", + "AS", + "T1", + "JOIN", + "Highschooler", + "AS", + "T2", + "ON", + "T1.student_id", + "=", + "T2.id", + "GROUP", + "BY", + "T1.student_id" + ], + "query_toks_no_value": [ + "select", + "t2", + ".", + "name", + ",", + "count", + "(", + "*", + ")", + "from", + "friend", + "as", + "t1", + "join", + "highschooler", + "as", + "t2", + "on", + "t1", + ".", + "student_id", + "=", + "t2", + ".", + "id", + "group", + "by", + "t1", + ".", + "student_id" + ], + "question": "Show the names of high school students and their corresponding number of friends.", + "question_toks": [ + "Show", + "the", + "names", + "of", + "high", + "school", + "students", + "and", + "their", + "corresponding", + "number", + "of", + "friends", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ], + [ + "table_unit", + 0 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 4, + false + ], + null + ], + [ + 0, + 1, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 2, + false + ], + null + ] + ], + [ + 3, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 4, + false + ] + ], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "network_1", + "query": "SELECT T2.name , count(*) FROM Friend AS T1 JOIN Highschooler AS T2 ON T1.student_id = T2.id GROUP BY T1.student_id", + "query_toks": [ + "SELECT", + "T2.name", + ",", + "count", + "(", + "*", + ")", + "FROM", + "Friend", + "AS", + "T1", + "JOIN", + "Highschooler", + "AS", + "T2", + "ON", + "T1.student_id", + "=", + "T2.id", + "GROUP", + "BY", + "T1.student_id" + ], + "query_toks_no_value": [ + "select", + "t2", + ".", + "name", + ",", + "count", + "(", + "*", + ")", + "from", + "friend", + "as", + "t1", + "join", + "highschooler", + "as", + "t2", + "on", + "t1", + ".", + "student_id", + "=", + "t2", + ".", + "id", + "group", + "by", + "t1", + ".", + "student_id" + ], + "question": "What are the names of the high schoolers and how many friends does each have?", + "question_toks": [ + "What", + "are", + "the", + "names", + "of", + "the", + "high", + "schoolers", + "and", + "how", + "many", + "friends", + "does", + "each", + "have", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ], + [ + "table_unit", + 0 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 4, + false + ], + null + ], + [ + 0, + 1, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 2, + false + ], + null + ] + ], + [ + 3, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 4, + false + ] + ], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "network_1", + "query": "SELECT T2.name FROM Friend AS T1 JOIN Highschooler AS T2 ON T1.student_id = T2.id GROUP BY T1.student_id ORDER BY count(*) DESC LIMIT 1", + "query_toks": [ + "SELECT", + "T2.name", + "FROM", + "Friend", + "AS", + "T1", + "JOIN", + "Highschooler", + "AS", + "T2", + "ON", + "T1.student_id", + "=", + "T2.id", + "GROUP", + "BY", + "T1.student_id", + "ORDER", + "BY", + "count", + "(", + "*", + ")", + "DESC", + "LIMIT", + "1" + ], + "query_toks_no_value": [ + "select", + "t2", + ".", + "name", + "from", + "friend", + "as", + "t1", + "join", + "highschooler", + "as", + "t2", + "on", + "t1", + ".", + "student_id", + "=", + "t2", + ".", + "id", + "group", + "by", + "t1", + ".", + "student_id", + "order", + "by", + "count", + "(", + "*", + ")", + "desc", + "limit", + "value" + ], + "question": "What is the name of the high schooler who has the greatest number of friends?", + "question_toks": [ + "What", + "is", + "the", + "name", + "of", + "the", + "high", + "schooler", + "who", + "has", + "the", + "greatest", + "number", + "of", + "friends", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ], + [ + "table_unit", + 0 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 4, + false + ], + null + ], + [ + 0, + 1, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 2, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 4, + false + ] + ], + "having": [], + "orderBy": [ + "desc", + [ + [ + 0, + [ + 3, + 0, + false + ], + null + ] + ] + ], + "limit": 1, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "network_1", + "query": "SELECT T2.name FROM Friend AS T1 JOIN Highschooler AS T2 ON T1.student_id = T2.id GROUP BY T1.student_id ORDER BY count(*) DESC LIMIT 1", + "query_toks": [ + "SELECT", + "T2.name", + "FROM", + "Friend", + "AS", + "T1", + "JOIN", + "Highschooler", + "AS", + "T2", + "ON", + "T1.student_id", + "=", + "T2.id", + "GROUP", + "BY", + "T1.student_id", + "ORDER", + "BY", + "count", + "(", + "*", + ")", + "DESC", + "LIMIT", + "1" + ], + "query_toks_no_value": [ + "select", + "t2", + ".", + "name", + "from", + "friend", + "as", + "t1", + "join", + "highschooler", + "as", + "t2", + "on", + "t1", + ".", + "student_id", + "=", + "t2", + ".", + "id", + "group", + "by", + "t1", + ".", + "student_id", + "order", + "by", + "count", + "(", + "*", + ")", + "desc", + "limit", + "value" + ], + "question": "Return the name of the high school student with the most friends.", + "question_toks": [ + "Return", + "the", + "name", + "of", + "the", + "high", + "school", + "student", + "with", + "the", + "most", + "friends", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ], + [ + "table_unit", + 0 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 4, + false + ], + null + ], + [ + 0, + 1, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 2, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 4, + false + ] + ], + "having": [], + "orderBy": [ + "desc", + [ + [ + 0, + [ + 3, + 0, + false + ], + null + ] + ] + ], + "limit": 1, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "network_1", + "query": "SELECT T2.name FROM Friend AS T1 JOIN Highschooler AS T2 ON T1.student_id = T2.id GROUP BY T1.student_id HAVING count(*) >= 3", + "query_toks": [ + "SELECT", + "T2.name", + "FROM", + "Friend", + "AS", + "T1", + "JOIN", + "Highschooler", + "AS", + "T2", + "ON", + "T1.student_id", + "=", + "T2.id", + "GROUP", + "BY", + "T1.student_id", + "HAVING", + "count", + "(", + "*", + ")", + ">", + "=", + "3" + ], + "query_toks_no_value": [ + "select", + "t2", + ".", + "name", + "from", + "friend", + "as", + "t1", + "join", + "highschooler", + "as", + "t2", + "on", + "t1", + ".", + "student_id", + "=", + "t2", + ".", + "id", + "group", + "by", + "t1", + ".", + "student_id", + "having", + "count", + "(", + "*", + ")", + ">", + "=", + "value" + ], + "question": "Show the names of high schoolers who have at least 3 friends.", + "question_toks": [ + "Show", + "the", + "names", + "of", + "high", + "schoolers", + "who", + "have", + "at", + "least", + "3", + "friends", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ], + [ + "table_unit", + 0 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 4, + false + ], + null + ], + [ + 0, + 1, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 2, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 4, + false + ] + ], + "having": [ + [ + false, + 5, + [ + 0, + [ + 3, + 0, + false + ], + null + ], + 3.0, + null + ] + ], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "network_1", + "query": "SELECT T2.name FROM Friend AS T1 JOIN Highschooler AS T2 ON T1.student_id = T2.id GROUP BY T1.student_id HAVING count(*) >= 3", + "query_toks": [ + "SELECT", + "T2.name", + "FROM", + "Friend", + "AS", + "T1", + "JOIN", + "Highschooler", + "AS", + "T2", + "ON", + "T1.student_id", + "=", + "T2.id", + "GROUP", + "BY", + "T1.student_id", + "HAVING", + "count", + "(", + "*", + ")", + ">", + "=", + "3" + ], + "query_toks_no_value": [ + "select", + "t2", + ".", + "name", + "from", + "friend", + "as", + "t1", + "join", + "highschooler", + "as", + "t2", + "on", + "t1", + ".", + "student_id", + "=", + "t2", + ".", + "id", + "group", + "by", + "t1", + ".", + "student_id", + "having", + "count", + "(", + "*", + ")", + ">", + "=", + "value" + ], + "question": "What are the names of high schoolers who have 3 or more friends?", + "question_toks": [ + "What", + "are", + "the", + "names", + "of", + "high", + "schoolers", + "who", + "have", + "3", + "or", + "more", + "friends", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ], + [ + "table_unit", + 0 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 4, + false + ], + null + ], + [ + 0, + 1, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 2, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 4, + false + ] + ], + "having": [ + [ + false, + 5, + [ + 0, + [ + 3, + 0, + false + ], + null + ], + 3.0, + null + ] + ], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "network_1", + "query": "SELECT T3.name FROM Friend AS T1 JOIN Highschooler AS T2 ON T1.student_id = T2.id JOIN Highschooler AS T3 ON T1.friend_id = T3.id WHERE T2.name = \"Kyle\"", + "query_toks": [ + "SELECT", + "T3.name", + "FROM", + "Friend", + "AS", + "T1", + "JOIN", + "Highschooler", + "AS", + "T2", + "ON", + "T1.student_id", + "=", + "T2.id", + "JOIN", + "Highschooler", + "AS", + "T3", + "ON", + "T1.friend_id", + "=", + "T3.id", + "WHERE", + "T2.name", + "=", + "``", + "Kyle", + "''" + ], + "query_toks_no_value": [ + "select", + "t3", + ".", + "name", + "from", + "friend", + "as", + "t1", + "join", + "highschooler", + "as", + "t2", + "on", + "t1", + ".", + "student_id", + "=", + "t2", + ".", + "id", + "join", + "highschooler", + "as", + "t3", + "on", + "t1", + ".", + "friend_id", + "=", + "t3", + ".", + "id", + "where", + "t2", + ".", + "name", + "=", + "value" + ], + "question": "Show the names of all of the high schooler Kyle's friends.", + "question_toks": [ + "Show", + "the", + "names", + "of", + "all", + "of", + "the", + "high", + "schooler", + "Kyle", + "'s", + "friends", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ], + [ + "table_unit", + 0 + ], + [ + "table_unit", + 0 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 4, + false + ], + null + ], + [ + 0, + 1, + false + ], + null + ], + "and", + [ + false, + 2, + [ + 0, + [ + 0, + 5, + false + ], + null + ], + [ + 0, + 1, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 2, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 2, + false + ], + null + ], + "\"Kyle\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "network_1", + "query": "SELECT T3.name FROM Friend AS T1 JOIN Highschooler AS T2 ON T1.student_id = T2.id JOIN Highschooler AS T3 ON T1.friend_id = T3.id WHERE T2.name = \"Kyle\"", + "query_toks": [ + "SELECT", + "T3.name", + "FROM", + "Friend", + "AS", + "T1", + "JOIN", + "Highschooler", + "AS", + "T2", + "ON", + "T1.student_id", + "=", + "T2.id", + "JOIN", + "Highschooler", + "AS", + "T3", + "ON", + "T1.friend_id", + "=", + "T3.id", + "WHERE", + "T2.name", + "=", + "``", + "Kyle", + "''" + ], + "query_toks_no_value": [ + "select", + "t3", + ".", + "name", + "from", + "friend", + "as", + "t1", + "join", + "highschooler", + "as", + "t2", + "on", + "t1", + ".", + "student_id", + "=", + "t2", + ".", + "id", + "join", + "highschooler", + "as", + "t3", + "on", + "t1", + ".", + "friend_id", + "=", + "t3", + ".", + "id", + "where", + "t2", + ".", + "name", + "=", + "value" + ], + "question": "Return the names of friends of the high school student Kyle.", + "question_toks": [ + "Return", + "the", + "names", + "of", + "friends", + "of", + "the", + "high", + "school", + "student", + "Kyle", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ], + [ + "table_unit", + 0 + ], + [ + "table_unit", + 0 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 4, + false + ], + null + ], + [ + 0, + 1, + false + ], + null + ], + "and", + [ + false, + 2, + [ + 0, + [ + 0, + 5, + false + ], + null + ], + [ + 0, + 1, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 2, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 2, + false + ], + null + ], + "\"Kyle\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "network_1", + "query": "SELECT count(*) FROM Friend AS T1 JOIN Highschooler AS T2 ON T1.student_id = T2.id WHERE T2.name = \"Kyle\"", + "query_toks": [ + "SELECT", + "count", + "(", + "*", + ")", + "FROM", + "Friend", + "AS", + "T1", + "JOIN", + "Highschooler", + "AS", + "T2", + "ON", + "T1.student_id", + "=", + "T2.id", + "WHERE", + "T2.name", + "=", + "``", + "Kyle", + "''" + ], + "query_toks_no_value": [ + "select", + "count", + "(", + "*", + ")", + "from", + "friend", + "as", + "t1", + "join", + "highschooler", + "as", + "t2", + "on", + "t1", + ".", + "student_id", + "=", + "t2", + ".", + "id", + "where", + "t2", + ".", + "name", + "=", + "value" + ], + "question": "How many friends does the high school student Kyle have?", + "question_toks": [ + "How", + "many", + "friends", + "does", + "the", + "high", + "school", + "student", + "Kyle", + "have", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ], + [ + "table_unit", + 0 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 4, + false + ], + null + ], + [ + 0, + 1, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 3, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 2, + false + ], + null + ], + "\"Kyle\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "network_1", + "query": "SELECT count(*) FROM Friend AS T1 JOIN Highschooler AS T2 ON T1.student_id = T2.id WHERE T2.name = \"Kyle\"", + "query_toks": [ + "SELECT", + "count", + "(", + "*", + ")", + "FROM", + "Friend", + "AS", + "T1", + "JOIN", + "Highschooler", + "AS", + "T2", + "ON", + "T1.student_id", + "=", + "T2.id", + "WHERE", + "T2.name", + "=", + "``", + "Kyle", + "''" + ], + "query_toks_no_value": [ + "select", + "count", + "(", + "*", + ")", + "from", + "friend", + "as", + "t1", + "join", + "highschooler", + "as", + "t2", + "on", + "t1", + ".", + "student_id", + "=", + "t2", + ".", + "id", + "where", + "t2", + ".", + "name", + "=", + "value" + ], + "question": "Count the number of friends Kyle has.", + "question_toks": [ + "Count", + "the", + "number", + "of", + "friends", + "Kyle", + "has", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ], + [ + "table_unit", + 0 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 4, + false + ], + null + ], + [ + 0, + 1, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 3, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 2, + false + ], + null + ], + "\"Kyle\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "network_1", + "query": "SELECT id FROM Highschooler EXCEPT SELECT student_id FROM Friend", + "query_toks": [ + "SELECT", + "id", + "FROM", + "Highschooler", + "EXCEPT", + "SELECT", + "student_id", + "FROM", + "Friend" + ], + "query_toks_no_value": [ + "select", + "id", + "from", + "highschooler", + "except", + "select", + "student_id", + "from", + "friend" + ], + "question": "Show ids of all students who do not have any friends.", + "question_toks": [ + "Show", + "ids", + "of", + "all", + "students", + "who", + "do", + "not", + "have", + "any", + "friends", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 1, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 4, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + } + }, + { + "db_id": "network_1", + "query": "SELECT id FROM Highschooler EXCEPT SELECT student_id FROM Friend", + "query_toks": [ + "SELECT", + "id", + "FROM", + "Highschooler", + "EXCEPT", + "SELECT", + "student_id", + "FROM", + "Friend" + ], + "query_toks_no_value": [ + "select", + "id", + "from", + "highschooler", + "except", + "select", + "student_id", + "from", + "friend" + ], + "question": "What are the ids of high school students who do not have friends?", + "question_toks": [ + "What", + "are", + "the", + "ids", + "of", + "high", + "school", + "students", + "who", + "do", + "not", + "have", + "friends", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 1, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 4, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + } + }, + { + "db_id": "network_1", + "query": "SELECT name FROM Highschooler EXCEPT SELECT T2.name FROM Friend AS T1 JOIN Highschooler AS T2 ON T1.student_id = T2.id", + "query_toks": [ + "SELECT", + "name", + "FROM", + "Highschooler", + "EXCEPT", + "SELECT", + "T2.name", + "FROM", + "Friend", + "AS", + "T1", + "JOIN", + "Highschooler", + "AS", + "T2", + "ON", + "T1.student_id", + "=", + "T2.id" + ], + "query_toks_no_value": [ + "select", + "name", + "from", + "highschooler", + "except", + "select", + "t2", + ".", + "name", + "from", + "friend", + "as", + "t1", + "join", + "highschooler", + "as", + "t2", + "on", + "t1", + ".", + "student_id", + "=", + "t2", + ".", + "id" + ], + "question": "Show names of all high school students who do not have any friends.", + "question_toks": [ + "Show", + "names", + "of", + "all", + "high", + "school", + "students", + "who", + "do", + "not", + "have", + "any", + "friends", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 2, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ], + [ + "table_unit", + 0 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 4, + false + ], + null + ], + [ + 0, + 1, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 2, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + } + }, + { + "db_id": "network_1", + "query": "SELECT name FROM Highschooler EXCEPT SELECT T2.name FROM Friend AS T1 JOIN Highschooler AS T2 ON T1.student_id = T2.id", + "query_toks": [ + "SELECT", + "name", + "FROM", + "Highschooler", + "EXCEPT", + "SELECT", + "T2.name", + "FROM", + "Friend", + "AS", + "T1", + "JOIN", + "Highschooler", + "AS", + "T2", + "ON", + "T1.student_id", + "=", + "T2.id" + ], + "query_toks_no_value": [ + "select", + "name", + "from", + "highschooler", + "except", + "select", + "t2", + ".", + "name", + "from", + "friend", + "as", + "t1", + "join", + "highschooler", + "as", + "t2", + "on", + "t1", + ".", + "student_id", + "=", + "t2", + ".", + "id" + ], + "question": "What are the names of students who have no friends?", + "question_toks": [ + "What", + "are", + "the", + "names", + "of", + "students", + "who", + "have", + "no", + "friends", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 2, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ], + [ + "table_unit", + 0 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 4, + false + ], + null + ], + [ + 0, + 1, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 2, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + } + }, + { + "db_id": "network_1", + "query": "SELECT student_id FROM Friend INTERSECT SELECT liked_id FROM Likes", + "query_toks": [ + "SELECT", + "student_id", + "FROM", + "Friend", + "INTERSECT", + "SELECT", + "liked_id", + "FROM", + "Likes" + ], + "query_toks_no_value": [ + "select", + "student_id", + "from", + "friend", + "intersect", + "select", + "liked_id", + "from", + "likes" + ], + "question": "Show the ids of high schoolers who have friends and are also liked by someone else.", + "question_toks": [ + "Show", + "the", + "ids", + "of", + "high", + "schoolers", + "who", + "have", + "friends", + "and", + "are", + "also", + "liked", + "by", + "someone", + "else", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 4, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 7, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + }, + "union": null, + "except": null + } + }, + { + "db_id": "network_1", + "query": "SELECT student_id FROM Friend INTERSECT SELECT liked_id FROM Likes", + "query_toks": [ + "SELECT", + "student_id", + "FROM", + "Friend", + "INTERSECT", + "SELECT", + "liked_id", + "FROM", + "Likes" + ], + "query_toks_no_value": [ + "select", + "student_id", + "from", + "friend", + "intersect", + "select", + "liked_id", + "from", + "likes" + ], + "question": "What are the ids of students who both have friends and are liked?", + "question_toks": [ + "What", + "are", + "the", + "ids", + "of", + "students", + "who", + "both", + "have", + "friends", + "and", + "are", + "liked", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 4, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 7, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + }, + "union": null, + "except": null + } + }, + { + "db_id": "network_1", + "query": "SELECT T2.name FROM Friend AS T1 JOIN Highschooler AS T2 ON T1.student_id = T2.id INTERSECT SELECT T2.name FROM Likes AS T1 JOIN Highschooler AS T2 ON T1.liked_id = T2.id", + "query_toks": [ + "SELECT", + "T2.name", + "FROM", + "Friend", + "AS", + "T1", + "JOIN", + "Highschooler", + "AS", + "T2", + "ON", + "T1.student_id", + "=", + "T2.id", + "INTERSECT", + "SELECT", + "T2.name", + "FROM", + "Likes", + "AS", + "T1", + "JOIN", + "Highschooler", + "AS", + "T2", + "ON", + "T1.liked_id", + "=", + "T2.id" + ], + "query_toks_no_value": [ + "select", + "t2", + ".", + "name", + "from", + "friend", + "as", + "t1", + "join", + "highschooler", + "as", + "t2", + "on", + "t1", + ".", + "student_id", + "=", + "t2", + ".", + "id", + "intersect", + "select", + "t2", + ".", + "name", + "from", + "likes", + "as", + "t1", + "join", + "highschooler", + "as", + "t2", + "on", + "t1", + ".", + "liked_id", + "=", + "t2", + ".", + "id" + ], + "question": "Show name of all students who have some friends and also are liked by someone else.", + "question_toks": [ + "Show", + "name", + "of", + "all", + "students", + "who", + "have", + "some", + "friends", + "and", + "also", + "are", + "liked", + "by", + "someone", + "else", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ], + [ + "table_unit", + 0 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 6, + false + ], + null + ], + [ + 0, + 1, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 2, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ], + [ + "table_unit", + 0 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 7, + false + ], + null + ], + [ + 0, + 1, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 2, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + }, + "union": null, + "except": null + } + }, + { + "db_id": "network_1", + "query": "SELECT T2.name FROM Friend AS T1 JOIN Highschooler AS T2 ON T1.student_id = T2.id INTERSECT SELECT T2.name FROM Likes AS T1 JOIN Highschooler AS T2 ON T1.liked_id = T2.id", + "query_toks": [ + "SELECT", + "T2.name", + "FROM", + "Friend", + "AS", + "T1", + "JOIN", + "Highschooler", + "AS", + "T2", + "ON", + "T1.student_id", + "=", + "T2.id", + "INTERSECT", + "SELECT", + "T2.name", + "FROM", + "Likes", + "AS", + "T1", + "JOIN", + "Highschooler", + "AS", + "T2", + "ON", + "T1.liked_id", + "=", + "T2.id" + ], + "query_toks_no_value": [ + "select", + "t2", + ".", + "name", + "from", + "friend", + "as", + "t1", + "join", + "highschooler", + "as", + "t2", + "on", + "t1", + ".", + "student_id", + "=", + "t2", + ".", + "id", + "intersect", + "select", + "t2", + ".", + "name", + "from", + "likes", + "as", + "t1", + "join", + "highschooler", + "as", + "t2", + "on", + "t1", + ".", + "liked_id", + "=", + "t2", + ".", + "id" + ], + "question": "What are the names of high schoolers who both have friends and are liked?", + "question_toks": [ + "What", + "are", + "the", + "names", + "of", + "high", + "schoolers", + "who", + "both", + "have", + "friends", + "and", + "are", + "liked", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ], + [ + "table_unit", + 0 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 6, + false + ], + null + ], + [ + 0, + 1, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 2, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ], + [ + "table_unit", + 0 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 7, + false + ], + null + ], + [ + 0, + 1, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 2, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + }, + "union": null, + "except": null + } + }, + { + "db_id": "network_1", + "query": "SELECT student_id , count(*) FROM Likes GROUP BY student_id", + "query_toks": [ + "SELECT", + "student_id", + ",", + "count", + "(", + "*", + ")", + "FROM", + "Likes", + "GROUP", + "BY", + "student_id" + ], + "query_toks_no_value": [ + "select", + "student_id", + ",", + "count", + "(", + "*", + ")", + "from", + "likes", + "group", + "by", + "student_id" + ], + "question": "Count the number of likes for each student id.", + "question_toks": [ + "Count", + "the", + "number", + "of", + "likes", + "for", + "each", + "student", + "id", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 6, + false + ], + null + ] + ], + [ + 3, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 6, + false + ] + ], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "network_1", + "query": "SELECT student_id , count(*) FROM Likes GROUP BY student_id", + "query_toks": [ + "SELECT", + "student_id", + ",", + "count", + "(", + "*", + ")", + "FROM", + "Likes", + "GROUP", + "BY", + "student_id" + ], + "query_toks_no_value": [ + "select", + "student_id", + ",", + "count", + "(", + "*", + ")", + "from", + "likes", + "group", + "by", + "student_id" + ], + "question": "How many likes correspond to each student id?", + "question_toks": [ + "How", + "many", + "likes", + "correspond", + "to", + "each", + "student", + "id", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 6, + false + ], + null + ] + ], + [ + 3, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 6, + false + ] + ], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "network_1", + "query": "SELECT T2.name , count(*) FROM Likes AS T1 JOIN Highschooler AS T2 ON T1.student_id = T2.id GROUP BY T1.student_id", + "query_toks": [ + "SELECT", + "T2.name", + ",", + "count", + "(", + "*", + ")", + "FROM", + "Likes", + "AS", + "T1", + "JOIN", + "Highschooler", + "AS", + "T2", + "ON", + "T1.student_id", + "=", + "T2.id", + "GROUP", + "BY", + "T1.student_id" + ], + "query_toks_no_value": [ + "select", + "t2", + ".", + "name", + ",", + "count", + "(", + "*", + ")", + "from", + "likes", + "as", + "t1", + "join", + "highschooler", + "as", + "t2", + "on", + "t1", + ".", + "student_id", + "=", + "t2", + ".", + "id", + "group", + "by", + "t1", + ".", + "student_id" + ], + "question": "Show the names of high schoolers who have likes, and numbers of likes for each.", + "question_toks": [ + "Show", + "the", + "names", + "of", + "high", + "schoolers", + "who", + "have", + "likes", + ",", + "and", + "numbers", + "of", + "likes", + "for", + "each", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ], + [ + "table_unit", + 0 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 6, + false + ], + null + ], + [ + 0, + 1, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 2, + false + ], + null + ] + ], + [ + 3, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 6, + false + ] + ], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "network_1", + "query": "SELECT T2.name , count(*) FROM Likes AS T1 JOIN Highschooler AS T2 ON T1.student_id = T2.id GROUP BY T1.student_id", + "query_toks": [ + "SELECT", + "T2.name", + ",", + "count", + "(", + "*", + ")", + "FROM", + "Likes", + "AS", + "T1", + "JOIN", + "Highschooler", + "AS", + "T2", + "ON", + "T1.student_id", + "=", + "T2.id", + "GROUP", + "BY", + "T1.student_id" + ], + "query_toks_no_value": [ + "select", + "t2", + ".", + "name", + ",", + "count", + "(", + "*", + ")", + "from", + "likes", + "as", + "t1", + "join", + "highschooler", + "as", + "t2", + "on", + "t1", + ".", + "student_id", + "=", + "t2", + ".", + "id", + "group", + "by", + "t1", + ".", + "student_id" + ], + "question": "What are the names of high schoolers who have likes, and how many likes does each have?", + "question_toks": [ + "What", + "are", + "the", + "names", + "of", + "high", + "schoolers", + "who", + "have", + "likes", + ",", + "and", + "how", + "many", + "likes", + "does", + "each", + "have", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ], + [ + "table_unit", + 0 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 6, + false + ], + null + ], + [ + 0, + 1, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 2, + false + ], + null + ] + ], + [ + 3, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 6, + false + ] + ], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "network_1", + "query": "SELECT T2.name FROM Likes AS T1 JOIN Highschooler AS T2 ON T1.student_id = T2.id GROUP BY T1.student_id ORDER BY count(*) DESC LIMIT 1", + "query_toks": [ + "SELECT", + "T2.name", + "FROM", + "Likes", + "AS", + "T1", + "JOIN", + "Highschooler", + "AS", + "T2", + "ON", + "T1.student_id", + "=", + "T2.id", + "GROUP", + "BY", + "T1.student_id", + "ORDER", + "BY", + "count", + "(", + "*", + ")", + "DESC", + "LIMIT", + "1" + ], + "query_toks_no_value": [ + "select", + "t2", + ".", + "name", + "from", + "likes", + "as", + "t1", + "join", + "highschooler", + "as", + "t2", + "on", + "t1", + ".", + "student_id", + "=", + "t2", + ".", + "id", + "group", + "by", + "t1", + ".", + "student_id", + "order", + "by", + "count", + "(", + "*", + ")", + "desc", + "limit", + "value" + ], + "question": "What is the name of the high schooler who has the greatest number of likes?", + "question_toks": [ + "What", + "is", + "the", + "name", + "of", + "the", + "high", + "schooler", + "who", + "has", + "the", + "greatest", + "number", + "of", + "likes", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ], + [ + "table_unit", + 0 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 6, + false + ], + null + ], + [ + 0, + 1, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 2, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 6, + false + ] + ], + "having": [], + "orderBy": [ + "desc", + [ + [ + 0, + [ + 3, + 0, + false + ], + null + ] + ] + ], + "limit": 1, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "network_1", + "query": "SELECT T2.name FROM Likes AS T1 JOIN Highschooler AS T2 ON T1.student_id = T2.id GROUP BY T1.student_id ORDER BY count(*) DESC LIMIT 1", + "query_toks": [ + "SELECT", + "T2.name", + "FROM", + "Likes", + "AS", + "T1", + "JOIN", + "Highschooler", + "AS", + "T2", + "ON", + "T1.student_id", + "=", + "T2.id", + "GROUP", + "BY", + "T1.student_id", + "ORDER", + "BY", + "count", + "(", + "*", + ")", + "DESC", + "LIMIT", + "1" + ], + "query_toks_no_value": [ + "select", + "t2", + ".", + "name", + "from", + "likes", + "as", + "t1", + "join", + "highschooler", + "as", + "t2", + "on", + "t1", + ".", + "student_id", + "=", + "t2", + ".", + "id", + "group", + "by", + "t1", + ".", + "student_id", + "order", + "by", + "count", + "(", + "*", + ")", + "desc", + "limit", + "value" + ], + "question": "Give the name of the student with the most likes.", + "question_toks": [ + "Give", + "the", + "name", + "of", + "the", + "student", + "with", + "the", + "most", + "likes", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ], + [ + "table_unit", + 0 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 6, + false + ], + null + ], + [ + 0, + 1, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 2, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 6, + false + ] + ], + "having": [], + "orderBy": [ + "desc", + [ + [ + 0, + [ + 3, + 0, + false + ], + null + ] + ] + ], + "limit": 1, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "network_1", + "query": "SELECT T2.name FROM Likes AS T1 JOIN Highschooler AS T2 ON T1.student_id = T2.id GROUP BY T1.student_id HAVING count(*) >= 2", + "query_toks": [ + "SELECT", + "T2.name", + "FROM", + "Likes", + "AS", + "T1", + "JOIN", + "Highschooler", + "AS", + "T2", + "ON", + "T1.student_id", + "=", + "T2.id", + "GROUP", + "BY", + "T1.student_id", + "HAVING", + "count", + "(", + "*", + ")", + ">", + "=", + "2" + ], + "query_toks_no_value": [ + "select", + "t2", + ".", + "name", + "from", + "likes", + "as", + "t1", + "join", + "highschooler", + "as", + "t2", + "on", + "t1", + ".", + "student_id", + "=", + "t2", + ".", + "id", + "group", + "by", + "t1", + ".", + "student_id", + "having", + "count", + "(", + "*", + ")", + ">", + "=", + "value" + ], + "question": "Show the names of students who have at least 2 likes.", + "question_toks": [ + "Show", + "the", + "names", + "of", + "students", + "who", + "have", + "at", + "least", + "2", + "likes", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ], + [ + "table_unit", + 0 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 6, + false + ], + null + ], + [ + 0, + 1, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 2, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 6, + false + ] + ], + "having": [ + [ + false, + 5, + [ + 0, + [ + 3, + 0, + false + ], + null + ], + 2.0, + null + ] + ], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "network_1", + "query": "SELECT T2.name FROM Likes AS T1 JOIN Highschooler AS T2 ON T1.student_id = T2.id GROUP BY T1.student_id HAVING count(*) >= 2", + "query_toks": [ + "SELECT", + "T2.name", + "FROM", + "Likes", + "AS", + "T1", + "JOIN", + "Highschooler", + "AS", + "T2", + "ON", + "T1.student_id", + "=", + "T2.id", + "GROUP", + "BY", + "T1.student_id", + "HAVING", + "count", + "(", + "*", + ")", + ">", + "=", + "2" + ], + "query_toks_no_value": [ + "select", + "t2", + ".", + "name", + "from", + "likes", + "as", + "t1", + "join", + "highschooler", + "as", + "t2", + "on", + "t1", + ".", + "student_id", + "=", + "t2", + ".", + "id", + "group", + "by", + "t1", + ".", + "student_id", + "having", + "count", + "(", + "*", + ")", + ">", + "=", + "value" + ], + "question": "What are the names of students who have 2 or more likes?", + "question_toks": [ + "What", + "are", + "the", + "names", + "of", + "students", + "who", + "have", + "2", + "or", + "more", + "likes", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ], + [ + "table_unit", + 0 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 6, + false + ], + null + ], + [ + 0, + 1, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 2, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 6, + false + ] + ], + "having": [ + [ + false, + 5, + [ + 0, + [ + 3, + 0, + false + ], + null + ], + 2.0, + null + ] + ], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "network_1", + "query": "SELECT T2.name FROM Friend AS T1 JOIN Highschooler AS T2 ON T1.student_id = T2.id WHERE T2.grade > 5 GROUP BY T1.student_id HAVING count(*) >= 2", + "query_toks": [ + "SELECT", + "T2.name", + "FROM", + "Friend", + "AS", + "T1", + "JOIN", + "Highschooler", + "AS", + "T2", + "ON", + "T1.student_id", + "=", + "T2.id", + "WHERE", + "T2.grade", + ">", + "5", + "GROUP", + "BY", + "T1.student_id", + "HAVING", + "count", + "(", + "*", + ")", + ">", + "=", + "2" + ], + "query_toks_no_value": [ + "select", + "t2", + ".", + "name", + "from", + "friend", + "as", + "t1", + "join", + "highschooler", + "as", + "t2", + "on", + "t1", + ".", + "student_id", + "=", + "t2", + ".", + "id", + "where", + "t2", + ".", + "grade", + ">", + "value", + "group", + "by", + "t1", + ".", + "student_id", + "having", + "count", + "(", + "*", + ")", + ">", + "=", + "value" + ], + "question": "Show the names of students who have a grade higher than 5 and have at least 2 friends.", + "question_toks": [ + "Show", + "the", + "names", + "of", + "students", + "who", + "have", + "a", + "grade", + "higher", + "than", + "5", + "and", + "have", + "at", + "least", + "2", + "friends", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ], + [ + "table_unit", + 0 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 4, + false + ], + null + ], + [ + 0, + 1, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 2, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 3, + [ + 0, + [ + 0, + 3, + false + ], + null + ], + 5.0, + null + ] + ], + "groupBy": [ + [ + 0, + 4, + false + ] + ], + "having": [ + [ + false, + 5, + [ + 0, + [ + 3, + 0, + false + ], + null + ], + 2.0, + null + ] + ], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "network_1", + "query": "SELECT T2.name FROM Friend AS T1 JOIN Highschooler AS T2 ON T1.student_id = T2.id WHERE T2.grade > 5 GROUP BY T1.student_id HAVING count(*) >= 2", + "query_toks": [ + "SELECT", + "T2.name", + "FROM", + "Friend", + "AS", + "T1", + "JOIN", + "Highschooler", + "AS", + "T2", + "ON", + "T1.student_id", + "=", + "T2.id", + "WHERE", + "T2.grade", + ">", + "5", + "GROUP", + "BY", + "T1.student_id", + "HAVING", + "count", + "(", + "*", + ")", + ">", + "=", + "2" + ], + "query_toks_no_value": [ + "select", + "t2", + ".", + "name", + "from", + "friend", + "as", + "t1", + "join", + "highschooler", + "as", + "t2", + "on", + "t1", + ".", + "student_id", + "=", + "t2", + ".", + "id", + "where", + "t2", + ".", + "grade", + ">", + "value", + "group", + "by", + "t1", + ".", + "student_id", + "having", + "count", + "(", + "*", + ")", + ">", + "=", + "value" + ], + "question": "What are the names of high schoolers who have a grade of over 5 and have 2 or more friends?", + "question_toks": [ + "What", + "are", + "the", + "names", + "of", + "high", + "schoolers", + "who", + "have", + "a", + "grade", + "of", + "over", + "5", + "and", + "have", + "2", + "or", + "more", + "friends", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ], + [ + "table_unit", + 0 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 4, + false + ], + null + ], + [ + 0, + 1, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 2, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 3, + [ + 0, + [ + 0, + 3, + false + ], + null + ], + 5.0, + null + ] + ], + "groupBy": [ + [ + 0, + 4, + false + ] + ], + "having": [ + [ + false, + 5, + [ + 0, + [ + 3, + 0, + false + ], + null + ], + 2.0, + null + ] + ], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "network_1", + "query": "SELECT count(*) FROM Likes AS T1 JOIN Highschooler AS T2 ON T1.student_id = T2.id WHERE T2.name = \"Kyle\"", + "query_toks": [ + "SELECT", + "count", + "(", + "*", + ")", + "FROM", + "Likes", + "AS", + "T1", + "JOIN", + "Highschooler", + "AS", + "T2", + "ON", + "T1.student_id", + "=", + "T2.id", + "WHERE", + "T2.name", + "=", + "``", + "Kyle", + "''" + ], + "query_toks_no_value": [ + "select", + "count", + "(", + "*", + ")", + "from", + "likes", + "as", + "t1", + "join", + "highschooler", + "as", + "t2", + "on", + "t1", + ".", + "student_id", + "=", + "t2", + ".", + "id", + "where", + "t2", + ".", + "name", + "=", + "value" + ], + "question": "How many likes does Kyle have?", + "question_toks": [ + "How", + "many", + "likes", + "does", + "Kyle", + "have", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ], + [ + "table_unit", + 0 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 6, + false + ], + null + ], + [ + 0, + 1, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 3, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 2, + false + ], + null + ], + "\"Kyle\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "network_1", + "query": "SELECT count(*) FROM Likes AS T1 JOIN Highschooler AS T2 ON T1.student_id = T2.id WHERE T2.name = \"Kyle\"", + "query_toks": [ + "SELECT", + "count", + "(", + "*", + ")", + "FROM", + "Likes", + "AS", + "T1", + "JOIN", + "Highschooler", + "AS", + "T2", + "ON", + "T1.student_id", + "=", + "T2.id", + "WHERE", + "T2.name", + "=", + "``", + "Kyle", + "''" + ], + "query_toks_no_value": [ + "select", + "count", + "(", + "*", + ")", + "from", + "likes", + "as", + "t1", + "join", + "highschooler", + "as", + "t2", + "on", + "t1", + ".", + "student_id", + "=", + "t2", + ".", + "id", + "where", + "t2", + ".", + "name", + "=", + "value" + ], + "question": "Return the number of likes that the high schooler named Kyle has.", + "question_toks": [ + "Return", + "the", + "number", + "of", + "likes", + "that", + "the", + "high", + "schooler", + "named", + "Kyle", + "has", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ], + [ + "table_unit", + 0 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 6, + false + ], + null + ], + [ + 0, + 1, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 3, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 2, + false + ], + null + ], + "\"Kyle\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "network_1", + "query": "SELECT avg(grade) FROM Highschooler WHERE id IN (SELECT T1.student_id FROM Friend AS T1 JOIN Highschooler AS T2 ON T1.student_id = T2.id)", + "query_toks": [ + "SELECT", + "avg", + "(", + "grade", + ")", + "FROM", + "Highschooler", + "WHERE", + "id", + "IN", + "(", + "SELECT", + "T1.student_id", + "FROM", + "Friend", + "AS", + "T1", + "JOIN", + "Highschooler", + "AS", + "T2", + "ON", + "T1.student_id", + "=", + "T2.id", + ")" + ], + "query_toks_no_value": [ + "select", + "avg", + "(", + "grade", + ")", + "from", + "highschooler", + "where", + "id", + "in", + "(", + "select", + "t1", + ".", + "student_id", + "from", + "friend", + "as", + "t1", + "join", + "highschooler", + "as", + "t2", + "on", + "t1", + ".", + "student_id", + "=", + "t2", + ".", + "id", + ")" + ], + "question": "Find the average grade of all students who have some friends.", + "question_toks": [ + "Find", + "the", + "average", + "grade", + "of", + "all", + "students", + "who", + "have", + "some", + "friends", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 5, + [ + 0, + [ + 0, + 3, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 8, + [ + 0, + [ + 0, + 1, + false + ], + null + ], + { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ], + [ + "table_unit", + 0 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 4, + false + ], + null + ], + [ + 0, + 1, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 4, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + }, + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "network_1", + "query": "SELECT avg(grade) FROM Highschooler WHERE id IN (SELECT T1.student_id FROM Friend AS T1 JOIN Highschooler AS T2 ON T1.student_id = T2.id)", + "query_toks": [ + "SELECT", + "avg", + "(", + "grade", + ")", + "FROM", + "Highschooler", + "WHERE", + "id", + "IN", + "(", + "SELECT", + "T1.student_id", + "FROM", + "Friend", + "AS", + "T1", + "JOIN", + "Highschooler", + "AS", + "T2", + "ON", + "T1.student_id", + "=", + "T2.id", + ")" + ], + "query_toks_no_value": [ + "select", + "avg", + "(", + "grade", + ")", + "from", + "highschooler", + "where", + "id", + "in", + "(", + "select", + "t1", + ".", + "student_id", + "from", + "friend", + "as", + "t1", + "join", + "highschooler", + "as", + "t2", + "on", + "t1", + ".", + "student_id", + "=", + "t2", + ".", + "id", + ")" + ], + "question": "What is the average grade of students who have friends?", + "question_toks": [ + "What", + "is", + "the", + "average", + "grade", + "of", + "students", + "who", + "have", + "friends", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 5, + [ + 0, + [ + 0, + 3, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 8, + [ + 0, + [ + 0, + 1, + false + ], + null + ], + { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ], + [ + "table_unit", + 0 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 4, + false + ], + null + ], + [ + 0, + 1, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 4, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + }, + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "network_1", + "query": "SELECT min(grade) FROM Highschooler WHERE id NOT IN (SELECT T1.student_id FROM Friend AS T1 JOIN Highschooler AS T2 ON T1.student_id = T2.id)", + "query_toks": [ + "SELECT", + "min", + "(", + "grade", + ")", + "FROM", + "Highschooler", + "WHERE", + "id", + "NOT", + "IN", + "(", + "SELECT", + "T1.student_id", + "FROM", + "Friend", + "AS", + "T1", + "JOIN", + "Highschooler", + "AS", + "T2", + "ON", + "T1.student_id", + "=", + "T2.id", + ")" + ], + "query_toks_no_value": [ + "select", + "min", + "(", + "grade", + ")", + "from", + "highschooler", + "where", + "id", + "not", + "in", + "(", + "select", + "t1", + ".", + "student_id", + "from", + "friend", + "as", + "t1", + "join", + "highschooler", + "as", + "t2", + "on", + "t1", + ".", + "student_id", + "=", + "t2", + ".", + "id", + ")" + ], + "question": "Find the minimum grade of students who have no friends.", + "question_toks": [ + "Find", + "the", + "minimum", + "grade", + "of", + "students", + "who", + "have", + "no", + "friends", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 2, + [ + 0, + [ + 0, + 3, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + true, + 8, + [ + 0, + [ + 0, + 1, + false + ], + null + ], + { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ], + [ + "table_unit", + 0 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 4, + false + ], + null + ], + [ + 0, + 1, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 4, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + }, + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "network_1", + "query": "SELECT min(grade) FROM Highschooler WHERE id NOT IN (SELECT T1.student_id FROM Friend AS T1 JOIN Highschooler AS T2 ON T1.student_id = T2.id)", + "query_toks": [ + "SELECT", + "min", + "(", + "grade", + ")", + "FROM", + "Highschooler", + "WHERE", + "id", + "NOT", + "IN", + "(", + "SELECT", + "T1.student_id", + "FROM", + "Friend", + "AS", + "T1", + "JOIN", + "Highschooler", + "AS", + "T2", + "ON", + "T1.student_id", + "=", + "T2.id", + ")" + ], + "query_toks_no_value": [ + "select", + "min", + "(", + "grade", + ")", + "from", + "highschooler", + "where", + "id", + "not", + "in", + "(", + "select", + "t1", + ".", + "student_id", + "from", + "friend", + "as", + "t1", + "join", + "highschooler", + "as", + "t2", + "on", + "t1", + ".", + "student_id", + "=", + "t2", + ".", + "id", + ")" + ], + "question": "What is the lowest grade of students who do not have any friends?", + "question_toks": [ + "What", + "is", + "the", + "lowest", + "grade", + "of", + "students", + "who", + "do", + "not", + "have", + "any", + "friends", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 2, + [ + 0, + [ + 0, + 3, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + true, + 8, + [ + 0, + [ + 0, + 1, + false + ], + null + ], + { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ], + [ + "table_unit", + 0 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 4, + false + ], + null + ], + [ + 0, + 1, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 4, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + }, + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "dog_kennels", + "query": "SELECT state FROM Owners INTERSECT SELECT state FROM Professionals", + "query_toks": [ + "SELECT", + "state", + "FROM", + "Owners", + "INTERSECT", + "SELECT", + "state", + "FROM", + "Professionals" + ], + "query_toks_no_value": [ + "select", + "state", + "from", + "owners", + "intersect", + "select", + "state", + "from", + "professionals" + ], + "question": "Which states have both owners and professionals living there?", + "question_toks": [ + "Which", + "states", + "have", + "both", + "owners", + "and", + "professionals", + "living", + "there", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 4 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 15, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": { + "from": { + "table_units": [ + [ + "table_unit", + 6 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 38, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + }, + "union": null, + "except": null + } + }, + { + "db_id": "dog_kennels", + "query": "SELECT state FROM Owners INTERSECT SELECT state FROM Professionals", + "query_toks": [ + "SELECT", + "state", + "FROM", + "Owners", + "INTERSECT", + "SELECT", + "state", + "FROM", + "Professionals" + ], + "query_toks_no_value": [ + "select", + "state", + "from", + "owners", + "intersect", + "select", + "state", + "from", + "professionals" + ], + "question": "Find the states where both owners and professionals live.", + "question_toks": [ + "Find", + "the", + "states", + "where", + "both", + "owners", + "and", + "professionals", + "live", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 4 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 15, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": { + "from": { + "table_units": [ + [ + "table_unit", + 6 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 38, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + }, + "union": null, + "except": null + } + }, + { + "db_id": "dog_kennels", + "query": "SELECT avg(age) FROM Dogs WHERE dog_id IN ( SELECT dog_id FROM Treatments )", + "query_toks": [ + "SELECT", + "avg", + "(", + "age", + ")", + "FROM", + "Dogs", + "WHERE", + "dog_id", + "IN", + "(", + "SELECT", + "dog_id", + "FROM", + "Treatments", + ")" + ], + "query_toks_no_value": [ + "select", + "avg", + "(", + "age", + ")", + "from", + "dogs", + "where", + "dog_id", + "in", + "(", + "select", + "dog_id", + "from", + "treatments", + ")" + ], + "question": "What is the average age of the dogs who have gone through any treatments?", + "question_toks": [ + "What", + "is", + "the", + "average", + "age", + "of", + "the", + "dogs", + "who", + "have", + "gone", + "through", + "any", + "treatments", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 5 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 5, + [ + 0, + [ + 0, + 26, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 8, + [ + 0, + [ + 0, + 20, + false + ], + null + ], + { + "from": { + "table_units": [ + [ + "table_unit", + 7 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 45, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + }, + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "dog_kennels", + "query": "SELECT avg(age) FROM Dogs WHERE dog_id IN ( SELECT dog_id FROM Treatments )", + "query_toks": [ + "SELECT", + "avg", + "(", + "age", + ")", + "FROM", + "Dogs", + "WHERE", + "dog_id", + "IN", + "(", + "SELECT", + "dog_id", + "FROM", + "Treatments", + ")" + ], + "query_toks_no_value": [ + "select", + "avg", + "(", + "age", + ")", + "from", + "dogs", + "where", + "dog_id", + "in", + "(", + "select", + "dog_id", + "from", + "treatments", + ")" + ], + "question": "Find the average age of the dogs who went through treatments.", + "question_toks": [ + "Find", + "the", + "average", + "age", + "of", + "the", + "dogs", + "who", + "went", + "through", + "treatments", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 5 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 5, + [ + 0, + [ + 0, + 26, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 8, + [ + 0, + [ + 0, + 20, + false + ], + null + ], + { + "from": { + "table_units": [ + [ + "table_unit", + 7 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 45, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + }, + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "dog_kennels", + "query": "SELECT professional_id , last_name , cell_number FROM Professionals WHERE state = 'Indiana' UNION SELECT T1.professional_id , T1.last_name , T1.cell_number FROM Professionals AS T1 JOIN Treatments AS T2 ON T1.professional_id = T2.professional_id GROUP BY T1.professional_id HAVING count(*) > 2", + "query_toks": [ + "SELECT", + "professional_id", + ",", + "last_name", + ",", + "cell_number", + "FROM", + "Professionals", + "WHERE", + "state", + "=", + "'Indiana", + "'", + "UNION", + "SELECT", + "T1.professional_id", + ",", + "T1.last_name", + ",", + "T1.cell_number", + "FROM", + "Professionals", + "AS", + "T1", + "JOIN", + "Treatments", + "AS", + "T2", + "ON", + "T1.professional_id", + "=", + "T2.professional_id", + "GROUP", + "BY", + "T1.professional_id", + "HAVING", + "count", + "(", + "*", + ")", + ">", + "2" + ], + "query_toks_no_value": [ + "select", + "professional_id", + ",", + "last_name", + ",", + "cell_number", + "from", + "professionals", + "where", + "state", + "=", + "value", + "union", + "select", + "t1", + ".", + "professional_id", + ",", + "t1", + ".", + "last_name", + ",", + "t1", + ".", + "cell_number", + "from", + "professionals", + "as", + "t1", + "join", + "treatments", + "as", + "t2", + "on", + "t1", + ".", + "professional_id", + "=", + "t2", + ".", + "professional_id", + "group", + "by", + "t1", + ".", + "professional_id", + "having", + "count", + "(", + "*", + ")", + ">", + "value" + ], + "question": "Which professionals live in the state of Indiana or have done treatment on more than 2 treatments? List his or her id, last name and cell phone.", + "question_toks": [ + "Which", + "professionals", + "live", + "in", + "the", + "state", + "of", + "Indiana", + "or", + "have", + "done", + "treatment", + "on", + "more", + "than", + "2", + "treatments", + "?", + "List", + "his", + "or", + "her", + "id", + ",", + "last", + "name", + "and", + "cell", + "phone", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 6 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 33, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 40, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 43, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 38, + false + ], + null + ], + "\"Indiana\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": { + "from": { + "table_units": [ + [ + "table_unit", + 6 + ], + [ + "table_unit", + 7 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 33, + false + ], + null + ], + [ + 0, + 46, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 33, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 40, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 43, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 33, + false + ] + ], + "having": [ + [ + false, + 3, + [ + 0, + [ + 3, + 0, + false + ], + null + ], + 2.0, + null + ] + ], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + }, + "except": null + } + }, + { + "db_id": "dog_kennels", + "query": "SELECT professional_id , last_name , cell_number FROM Professionals WHERE state = 'Indiana' UNION SELECT T1.professional_id , T1.last_name , T1.cell_number FROM Professionals AS T1 JOIN Treatments AS T2 ON T1.professional_id = T2.professional_id GROUP BY T1.professional_id HAVING count(*) > 2", + "query_toks": [ + "SELECT", + "professional_id", + ",", + "last_name", + ",", + "cell_number", + "FROM", + "Professionals", + "WHERE", + "state", + "=", + "'Indiana", + "'", + "UNION", + "SELECT", + "T1.professional_id", + ",", + "T1.last_name", + ",", + "T1.cell_number", + "FROM", + "Professionals", + "AS", + "T1", + "JOIN", + "Treatments", + "AS", + "T2", + "ON", + "T1.professional_id", + "=", + "T2.professional_id", + "GROUP", + "BY", + "T1.professional_id", + "HAVING", + "count", + "(", + "*", + ")", + ">", + "2" + ], + "query_toks_no_value": [ + "select", + "professional_id", + ",", + "last_name", + ",", + "cell_number", + "from", + "professionals", + "where", + "state", + "=", + "value", + "union", + "select", + "t1", + ".", + "professional_id", + ",", + "t1", + ".", + "last_name", + ",", + "t1", + ".", + "cell_number", + "from", + "professionals", + "as", + "t1", + "join", + "treatments", + "as", + "t2", + "on", + "t1", + ".", + "professional_id", + "=", + "t2", + ".", + "professional_id", + "group", + "by", + "t1", + ".", + "professional_id", + "having", + "count", + "(", + "*", + ")", + ">", + "value" + ], + "question": "Find the id, last name and cell phone of the professionals who live in the state of Indiana or have performed more than two treatments.", + "question_toks": [ + "Find", + "the", + "id", + ",", + "last", + "name", + "and", + "cell", + "phone", + "of", + "the", + "professionals", + "who", + "live", + "in", + "the", + "state", + "of", + "Indiana", + "or", + "have", + "performed", + "more", + "than", + "two", + "treatments", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 6 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 33, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 40, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 43, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 38, + false + ], + null + ], + "\"Indiana\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": { + "from": { + "table_units": [ + [ + "table_unit", + 6 + ], + [ + "table_unit", + 7 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 33, + false + ], + null + ], + [ + 0, + 46, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 33, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 40, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 43, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 33, + false + ] + ], + "having": [ + [ + false, + 3, + [ + 0, + [ + 3, + 0, + false + ], + null + ], + 2.0, + null + ] + ], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + }, + "except": null + } + }, + { + "db_id": "dog_kennels", + "query": "select name from dogs where dog_id not in ( select dog_id from treatments group by dog_id having sum(cost_of_treatment) > 1000 )", + "query_toks": [ + "select", + "name", + "from", + "dogs", + "where", + "dog_id", + "not", + "in", + "(", + "select", + "dog_id", + "from", + "treatments", + "group", + "by", + "dog_id", + "having", + "sum", + "(", + "cost_of_treatment", + ")", + ">", + "1000", + ")" + ], + "query_toks_no_value": [ + "select", + "name", + "from", + "dogs", + "where", + "dog_id", + "not", + "in", + "(", + "select", + "dog_id", + "from", + "treatments", + "group", + "by", + "dog_id", + "having", + "sum", + "(", + "cost_of_treatment", + ")", + ">", + "value", + ")" + ], + "question": "Which dogs have not cost their owner more than 1000 for treatment ? List the dog names .", + "question_toks": [ + "Which", + "dogs", + "have", + "not", + "cost", + "their", + "owner", + "more", + "than", + "1000", + "for", + "treatment", + "?", + "List", + "the", + "dog", + "names", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 5 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 25, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + true, + 8, + [ + 0, + [ + 0, + 20, + false + ], + null + ], + { + "from": { + "table_units": [ + [ + "table_unit", + 7 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 45, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 45, + false + ] + ], + "having": [ + [ + false, + 3, + [ + 0, + [ + 4, + 49, + false + ], + null + ], + 1000.0, + null + ] + ], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + }, + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "dog_kennels", + "query": "select name from dogs where dog_id not in ( select dog_id from treatments group by dog_id having sum(cost_of_treatment) > 1000 )", + "query_toks": [ + "select", + "name", + "from", + "dogs", + "where", + "dog_id", + "not", + "in", + "(", + "select", + "dog_id", + "from", + "treatments", + "group", + "by", + "dog_id", + "having", + "sum", + "(", + "cost_of_treatment", + ")", + ">", + "1000", + ")" + ], + "query_toks_no_value": [ + "select", + "name", + "from", + "dogs", + "where", + "dog_id", + "not", + "in", + "(", + "select", + "dog_id", + "from", + "treatments", + "group", + "by", + "dog_id", + "having", + "sum", + "(", + "cost_of_treatment", + ")", + ">", + "value", + ")" + ], + "question": "What are the names of the dogs for which the owner has not spend more than 1000 for treatment ?", + "question_toks": [ + "What", + "are", + "the", + "names", + "of", + "the", + "dogs", + "for", + "which", + "the", + "owner", + "has", + "not", + "spend", + "more", + "than", + "1000", + "for", + "treatment", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 5 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 25, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + true, + 8, + [ + 0, + [ + 0, + 20, + false + ], + null + ], + { + "from": { + "table_units": [ + [ + "table_unit", + 7 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 45, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 45, + false + ] + ], + "having": [ + [ + false, + 3, + [ + 0, + [ + 4, + 49, + false + ], + null + ], + 1000.0, + null + ] + ], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + }, + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "dog_kennels", + "query": "SELECT first_name FROM Professionals UNION SELECT first_name FROM Owners EXCEPT SELECT name FROM Dogs", + "query_toks": [ + "SELECT", + "first_name", + "FROM", + "Professionals", + "UNION", + "SELECT", + "first_name", + "FROM", + "Owners", + "EXCEPT", + "SELECT", + "name", + "FROM", + "Dogs" + ], + "query_toks_no_value": [ + "select", + "first_name", + "from", + "professionals", + "union", + "select", + "first_name", + "from", + "owners", + "except", + "select", + "name", + "from", + "dogs" + ], + "question": "Which first names are used for professionals or owners but are not used as dog names?", + "question_toks": [ + "Which", + "first", + "names", + "are", + "used", + "for", + "professionals", + "or", + "owners", + "but", + "are", + "not", + "used", + "as", + "dog", + "names", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 6 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 35, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": { + "from": { + "table_units": [ + [ + "table_unit", + 4 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 11, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": { + "from": { + "table_units": [ + [ + "table_unit", + 5 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 25, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + "except": null + } + }, + { + "db_id": "dog_kennels", + "query": "SELECT first_name FROM Professionals UNION SELECT first_name FROM Owners EXCEPT SELECT name FROM Dogs", + "query_toks": [ + "SELECT", + "first_name", + "FROM", + "Professionals", + "UNION", + "SELECT", + "first_name", + "FROM", + "Owners", + "EXCEPT", + "SELECT", + "name", + "FROM", + "Dogs" + ], + "query_toks_no_value": [ + "select", + "first_name", + "from", + "professionals", + "union", + "select", + "first_name", + "from", + "owners", + "except", + "select", + "name", + "from", + "dogs" + ], + "question": "Find the first names that are used for professionals or owners but are not used as dog names.", + "question_toks": [ + "Find", + "the", + "first", + "names", + "that", + "are", + "used", + "for", + "professionals", + "or", + "owners", + "but", + "are", + "not", + "used", + "as", + "dog", + "names", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 6 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 35, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": { + "from": { + "table_units": [ + [ + "table_unit", + 4 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 11, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": { + "from": { + "table_units": [ + [ + "table_unit", + 5 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 25, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + "except": null + } + }, + { + "db_id": "dog_kennels", + "query": "SELECT professional_id , role_code , email_address FROM Professionals EXCEPT SELECT T1.professional_id , T1.role_code , T1.email_address FROM Professionals AS T1 JOIN Treatments AS T2 ON T1.professional_id = T2.professional_id", + "query_toks": [ + "SELECT", + "professional_id", + ",", + "role_code", + ",", + "email_address", + "FROM", + "Professionals", + "EXCEPT", + "SELECT", + "T1.professional_id", + ",", + "T1.role_code", + ",", + "T1.email_address", + "FROM", + "Professionals", + "AS", + "T1", + "JOIN", + "Treatments", + "AS", + "T2", + "ON", + "T1.professional_id", + "=", + "T2.professional_id" + ], + "query_toks_no_value": [ + "select", + "professional_id", + ",", + "role_code", + ",", + "email_address", + "from", + "professionals", + "except", + "select", + "t1", + ".", + "professional_id", + ",", + "t1", + ".", + "role_code", + ",", + "t1", + ".", + "email_address", + "from", + "professionals", + "as", + "t1", + "join", + "treatments", + "as", + "t2", + "on", + "t1", + ".", + "professional_id", + "=", + "t2", + ".", + "professional_id" + ], + "question": "Which professional did not operate any treatment on dogs? List the professional's id, role and email.", + "question_toks": [ + "Which", + "professional", + "did", + "not", + "operate", + "any", + "treatment", + "on", + "dogs", + "?", + "List", + "the", + "professional", + "'s", + "id", + ",", + "role", + "and", + "email", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 6 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 33, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 34, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 41, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": { + "from": { + "table_units": [ + [ + "table_unit", + 6 + ], + [ + "table_unit", + 7 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 33, + false + ], + null + ], + [ + 0, + 46, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 33, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 34, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 41, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + } + }, + { + "db_id": "dog_kennels", + "query": "SELECT professional_id , role_code , email_address FROM Professionals EXCEPT SELECT T1.professional_id , T1.role_code , T1.email_address FROM Professionals AS T1 JOIN Treatments AS T2 ON T1.professional_id = T2.professional_id", + "query_toks": [ + "SELECT", + "professional_id", + ",", + "role_code", + ",", + "email_address", + "FROM", + "Professionals", + "EXCEPT", + "SELECT", + "T1.professional_id", + ",", + "T1.role_code", + ",", + "T1.email_address", + "FROM", + "Professionals", + "AS", + "T1", + "JOIN", + "Treatments", + "AS", + "T2", + "ON", + "T1.professional_id", + "=", + "T2.professional_id" + ], + "query_toks_no_value": [ + "select", + "professional_id", + ",", + "role_code", + ",", + "email_address", + "from", + "professionals", + "except", + "select", + "t1", + ".", + "professional_id", + ",", + "t1", + ".", + "role_code", + ",", + "t1", + ".", + "email_address", + "from", + "professionals", + "as", + "t1", + "join", + "treatments", + "as", + "t2", + "on", + "t1", + ".", + "professional_id", + "=", + "t2", + ".", + "professional_id" + ], + "question": "Give me the id, role and email of the professionals who did not perform any treatment on dogs.", + "question_toks": [ + "Give", + "me", + "the", + "id", + ",", + "role", + "and", + "email", + "of", + "the", + "professionals", + "who", + "did", + "not", + "perform", + "any", + "treatment", + "on", + "dogs", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 6 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 33, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 34, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 41, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": { + "from": { + "table_units": [ + [ + "table_unit", + 6 + ], + [ + "table_unit", + 7 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 33, + false + ], + null + ], + [ + 0, + 46, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 33, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 34, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 41, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + } + }, + { + "db_id": "dog_kennels", + "query": "SELECT T1.owner_id , T2.first_name , T2.last_name FROM Dogs AS T1 JOIN Owners AS T2 ON T1.owner_id = T2.owner_id GROUP BY T1.owner_id ORDER BY count(*) DESC LIMIT 1", + "query_toks": [ + "SELECT", + "T1.owner_id", + ",", + "T2.first_name", + ",", + "T2.last_name", + "FROM", + "Dogs", + "AS", + "T1", + "JOIN", + "Owners", + "AS", + "T2", + "ON", + "T1.owner_id", + "=", + "T2.owner_id", + "GROUP", + "BY", + "T1.owner_id", + "ORDER", + "BY", + "count", + "(", + "*", + ")", + "DESC", + "LIMIT", + "1" + ], + "query_toks_no_value": [ + "select", + "t1", + ".", + "owner_id", + ",", + "t2", + ".", + "first_name", + ",", + "t2", + ".", + "last_name", + "from", + "dogs", + "as", + "t1", + "join", + "owners", + "as", + "t2", + "on", + "t1", + ".", + "owner_id", + "=", + "t2", + ".", + "owner_id", + "group", + "by", + "t1", + ".", + "owner_id", + "order", + "by", + "count", + "(", + "*", + ")", + "desc", + "limit", + "value" + ], + "question": "Which owner owns the most dogs? List the owner id, first name and last name.", + "question_toks": [ + "Which", + "owner", + "owns", + "the", + "most", + "dogs", + "?", + "List", + "the", + "owner", + "id", + ",", + "first", + "name", + "and", + "last", + "name", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 5 + ], + [ + "table_unit", + 4 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 21, + false + ], + null + ], + [ + 0, + 10, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 21, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 11, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 12, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 21, + false + ] + ], + "having": [], + "orderBy": [ + "desc", + [ + [ + 0, + [ + 3, + 0, + false + ], + null + ] + ] + ], + "limit": 1, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "dog_kennels", + "query": "SELECT T1.owner_id , T2.first_name , T2.last_name FROM Dogs AS T1 JOIN Owners AS T2 ON T1.owner_id = T2.owner_id GROUP BY T1.owner_id ORDER BY count(*) DESC LIMIT 1", + "query_toks": [ + "SELECT", + "T1.owner_id", + ",", + "T2.first_name", + ",", + "T2.last_name", + "FROM", + "Dogs", + "AS", + "T1", + "JOIN", + "Owners", + "AS", + "T2", + "ON", + "T1.owner_id", + "=", + "T2.owner_id", + "GROUP", + "BY", + "T1.owner_id", + "ORDER", + "BY", + "count", + "(", + "*", + ")", + "DESC", + "LIMIT", + "1" + ], + "query_toks_no_value": [ + "select", + "t1", + ".", + "owner_id", + ",", + "t2", + ".", + "first_name", + ",", + "t2", + ".", + "last_name", + "from", + "dogs", + "as", + "t1", + "join", + "owners", + "as", + "t2", + "on", + "t1", + ".", + "owner_id", + "=", + "t2", + ".", + "owner_id", + "group", + "by", + "t1", + ".", + "owner_id", + "order", + "by", + "count", + "(", + "*", + ")", + "desc", + "limit", + "value" + ], + "question": "Return the owner id, first name and last name of the owner who has the most dogs.", + "question_toks": [ + "Return", + "the", + "owner", + "id", + ",", + "first", + "name", + "and", + "last", + "name", + "of", + "the", + "owner", + "who", + "has", + "the", + "most", + "dogs", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 5 + ], + [ + "table_unit", + 4 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 21, + false + ], + null + ], + [ + 0, + 10, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 21, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 11, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 12, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 21, + false + ] + ], + "having": [], + "orderBy": [ + "desc", + [ + [ + 0, + [ + 3, + 0, + false + ], + null + ] + ] + ], + "limit": 1, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "dog_kennels", + "query": "SELECT T1.professional_id , T1.role_code , T1.first_name FROM Professionals AS T1 JOIN Treatments AS T2 ON T1.professional_id = T2.professional_id GROUP BY T1.professional_id HAVING count(*) >= 2", + "query_toks": [ + "SELECT", + "T1.professional_id", + ",", + "T1.role_code", + ",", + "T1.first_name", + "FROM", + "Professionals", + "AS", + "T1", + "JOIN", + "Treatments", + "AS", + "T2", + "ON", + "T1.professional_id", + "=", + "T2.professional_id", + "GROUP", + "BY", + "T1.professional_id", + "HAVING", + "count", + "(", + "*", + ")", + ">", + "=", + "2" + ], + "query_toks_no_value": [ + "select", + "t1", + ".", + "professional_id", + ",", + "t1", + ".", + "role_code", + ",", + "t1", + ".", + "first_name", + "from", + "professionals", + "as", + "t1", + "join", + "treatments", + "as", + "t2", + "on", + "t1", + ".", + "professional_id", + "=", + "t2", + ".", + "professional_id", + "group", + "by", + "t1", + ".", + "professional_id", + "having", + "count", + "(", + "*", + ")", + ">", + "=", + "value" + ], + "question": "Which professionals have done at least two treatments? List the professional's id, role, and first name.", + "question_toks": [ + "Which", + "professionals", + "have", + "done", + "at", + "least", + "two", + "treatments", + "?", + "List", + "the", + "professional", + "'s", + "id", + ",", + "role", + ",", + "and", + "first", + "name", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 6 + ], + [ + "table_unit", + 7 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 33, + false + ], + null + ], + [ + 0, + 46, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 33, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 34, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 35, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 33, + false + ] + ], + "having": [ + [ + false, + 5, + [ + 0, + [ + 3, + 0, + false + ], + null + ], + 2.0, + null + ] + ], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "dog_kennels", + "query": "SELECT T1.professional_id , T1.role_code , T1.first_name FROM Professionals AS T1 JOIN Treatments AS T2 ON T1.professional_id = T2.professional_id GROUP BY T1.professional_id HAVING count(*) >= 2", + "query_toks": [ + "SELECT", + "T1.professional_id", + ",", + "T1.role_code", + ",", + "T1.first_name", + "FROM", + "Professionals", + "AS", + "T1", + "JOIN", + "Treatments", + "AS", + "T2", + "ON", + "T1.professional_id", + "=", + "T2.professional_id", + "GROUP", + "BY", + "T1.professional_id", + "HAVING", + "count", + "(", + "*", + ")", + ">", + "=", + "2" + ], + "query_toks_no_value": [ + "select", + "t1", + ".", + "professional_id", + ",", + "t1", + ".", + "role_code", + ",", + "t1", + ".", + "first_name", + "from", + "professionals", + "as", + "t1", + "join", + "treatments", + "as", + "t2", + "on", + "t1", + ".", + "professional_id", + "=", + "t2", + ".", + "professional_id", + "group", + "by", + "t1", + ".", + "professional_id", + "having", + "count", + "(", + "*", + ")", + ">", + "=", + "value" + ], + "question": "What are the id, role, and first name of the professionals who have performed two or more treatments?", + "question_toks": [ + "What", + "are", + "the", + "id", + ",", + "role", + ",", + "and", + "first", + "name", + "of", + "the", + "professionals", + "who", + "have", + "performed", + "two", + "or", + "more", + "treatments", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 6 + ], + [ + "table_unit", + 7 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 33, + false + ], + null + ], + [ + 0, + 46, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 33, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 34, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 35, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 33, + false + ] + ], + "having": [ + [ + false, + 5, + [ + 0, + [ + 3, + 0, + false + ], + null + ], + 2.0, + null + ] + ], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "dog_kennels", + "query": "SELECT T1.breed_name FROM Breeds AS T1 JOIN Dogs AS T2 ON T1.breed_code = T2.breed_code GROUP BY T1.breed_name ORDER BY count(*) DESC LIMIT 1", + "query_toks": [ + "SELECT", + "T1.breed_name", + "FROM", + "Breeds", + "AS", + "T1", + "JOIN", + "Dogs", + "AS", + "T2", + "ON", + "T1.breed_code", + "=", + "T2.breed_code", + "GROUP", + "BY", + "T1.breed_name", + "ORDER", + "BY", + "count", + "(", + "*", + ")", + "DESC", + "LIMIT", + "1" + ], + "query_toks_no_value": [ + "select", + "t1", + ".", + "breed_name", + "from", + "breeds", + "as", + "t1", + "join", + "dogs", + "as", + "t2", + "on", + "t1", + ".", + "breed_code", + "=", + "t2", + ".", + "breed_code", + "group", + "by", + "t1", + ".", + "breed_name", + "order", + "by", + "count", + "(", + "*", + ")", + "desc", + "limit", + "value" + ], + "question": "What is the name of the breed with the most dogs?", + "question_toks": [ + "What", + "is", + "the", + "name", + "of", + "the", + "breed", + "with", + "the", + "most", + "dogs", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ], + [ + "table_unit", + 5 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 1, + false + ], + null + ], + [ + 0, + 23, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 2, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 2, + false + ] + ], + "having": [], + "orderBy": [ + "desc", + [ + [ + 0, + [ + 3, + 0, + false + ], + null + ] + ] + ], + "limit": 1, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "dog_kennels", + "query": "SELECT T1.breed_name FROM Breeds AS T1 JOIN Dogs AS T2 ON T1.breed_code = T2.breed_code GROUP BY T1.breed_name ORDER BY count(*) DESC LIMIT 1", + "query_toks": [ + "SELECT", + "T1.breed_name", + "FROM", + "Breeds", + "AS", + "T1", + "JOIN", + "Dogs", + "AS", + "T2", + "ON", + "T1.breed_code", + "=", + "T2.breed_code", + "GROUP", + "BY", + "T1.breed_name", + "ORDER", + "BY", + "count", + "(", + "*", + ")", + "DESC", + "LIMIT", + "1" + ], + "query_toks_no_value": [ + "select", + "t1", + ".", + "breed_name", + "from", + "breeds", + "as", + "t1", + "join", + "dogs", + "as", + "t2", + "on", + "t1", + ".", + "breed_code", + "=", + "t2", + ".", + "breed_code", + "group", + "by", + "t1", + ".", + "breed_name", + "order", + "by", + "count", + "(", + "*", + ")", + "desc", + "limit", + "value" + ], + "question": "Which breed do the most dogs have? Give me the breed name.", + "question_toks": [ + "Which", + "breed", + "do", + "the", + "most", + "dogs", + "have", + "?", + "Give", + "me", + "the", + "breed", + "name", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ], + [ + "table_unit", + 5 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 1, + false + ], + null + ], + [ + 0, + 23, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 2, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 2, + false + ] + ], + "having": [], + "orderBy": [ + "desc", + [ + [ + 0, + [ + 3, + 0, + false + ], + null + ] + ] + ], + "limit": 1, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "dog_kennels", + "query": "SELECT T1.owner_id , T1.last_name FROM Owners AS T1 JOIN Dogs AS T2 ON T1.owner_id = T2.owner_id JOIN Treatments AS T3 ON T2.dog_id = T3.dog_id GROUP BY T1.owner_id ORDER BY count(*) DESC LIMIT 1", + "query_toks": [ + "SELECT", + "T1.owner_id", + ",", + "T1.last_name", + "FROM", + "Owners", + "AS", + "T1", + "JOIN", + "Dogs", + "AS", + "T2", + "ON", + "T1.owner_id", + "=", + "T2.owner_id", + "JOIN", + "Treatments", + "AS", + "T3", + "ON", + "T2.dog_id", + "=", + "T3.dog_id", + "GROUP", + "BY", + "T1.owner_id", + "ORDER", + "BY", + "count", + "(", + "*", + ")", + "DESC", + "LIMIT", + "1" + ], + "query_toks_no_value": [ + "select", + "t1", + ".", + "owner_id", + ",", + "t1", + ".", + "last_name", + "from", + "owners", + "as", + "t1", + "join", + "dogs", + "as", + "t2", + "on", + "t1", + ".", + "owner_id", + "=", + "t2", + ".", + "owner_id", + "join", + "treatments", + "as", + "t3", + "on", + "t2", + ".", + "dog_id", + "=", + "t3", + ".", + "dog_id", + "group", + "by", + "t1", + ".", + "owner_id", + "order", + "by", + "count", + "(", + "*", + ")", + "desc", + "limit", + "value" + ], + "question": "Which owner has paid for the most treatments on his or her dogs? List the owner id and last name.", + "question_toks": [ + "Which", + "owner", + "has", + "paid", + "for", + "the", + "most", + "treatments", + "on", + "his", + "or", + "her", + "dogs", + "?", + "List", + "the", + "owner", + "id", + "and", + "last", + "name", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 4 + ], + [ + "table_unit", + 5 + ], + [ + "table_unit", + 7 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 10, + false + ], + null + ], + [ + 0, + 21, + false + ], + null + ], + "and", + [ + false, + 2, + [ + 0, + [ + 0, + 20, + false + ], + null + ], + [ + 0, + 45, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 10, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 12, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 10, + false + ] + ], + "having": [], + "orderBy": [ + "desc", + [ + [ + 0, + [ + 3, + 0, + false + ], + null + ] + ] + ], + "limit": 1, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "dog_kennels", + "query": "SELECT T1.owner_id , T1.last_name FROM Owners AS T1 JOIN Dogs AS T2 ON T1.owner_id = T2.owner_id JOIN Treatments AS T3 ON T2.dog_id = T3.dog_id GROUP BY T1.owner_id ORDER BY count(*) DESC LIMIT 1", + "query_toks": [ + "SELECT", + "T1.owner_id", + ",", + "T1.last_name", + "FROM", + "Owners", + "AS", + "T1", + "JOIN", + "Dogs", + "AS", + "T2", + "ON", + "T1.owner_id", + "=", + "T2.owner_id", + "JOIN", + "Treatments", + "AS", + "T3", + "ON", + "T2.dog_id", + "=", + "T3.dog_id", + "GROUP", + "BY", + "T1.owner_id", + "ORDER", + "BY", + "count", + "(", + "*", + ")", + "DESC", + "LIMIT", + "1" + ], + "query_toks_no_value": [ + "select", + "t1", + ".", + "owner_id", + ",", + "t1", + ".", + "last_name", + "from", + "owners", + "as", + "t1", + "join", + "dogs", + "as", + "t2", + "on", + "t1", + ".", + "owner_id", + "=", + "t2", + ".", + "owner_id", + "join", + "treatments", + "as", + "t3", + "on", + "t2", + ".", + "dog_id", + "=", + "t3", + ".", + "dog_id", + "group", + "by", + "t1", + ".", + "owner_id", + "order", + "by", + "count", + "(", + "*", + ")", + "desc", + "limit", + "value" + ], + "question": "Tell me the owner id and last name of the owner who spent the most on treatments of his or her dogs.", + "question_toks": [ + "Tell", + "me", + "the", + "owner", + "id", + "and", + "last", + "name", + "of", + "the", + "owner", + "who", + "spent", + "the", + "most", + "on", + "treatments", + "of", + "his", + "or", + "her", + "dogs", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 4 + ], + [ + "table_unit", + 5 + ], + [ + "table_unit", + 7 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 10, + false + ], + null + ], + [ + 0, + 21, + false + ], + null + ], + "and", + [ + false, + 2, + [ + 0, + [ + 0, + 20, + false + ], + null + ], + [ + 0, + 45, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 10, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 12, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 10, + false + ] + ], + "having": [], + "orderBy": [ + "desc", + [ + [ + 0, + [ + 3, + 0, + false + ], + null + ] + ] + ], + "limit": 1, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "dog_kennels", + "query": "SELECT T1.treatment_type_description FROM Treatment_types AS T1 JOIN Treatments AS T2 ON T1.treatment_type_code = T2.treatment_type_code GROUP BY T1.treatment_type_code ORDER BY sum(cost_of_treatment) ASC LIMIT 1", + "query_toks": [ + "SELECT", + "T1.treatment_type_description", + "FROM", + "Treatment_types", + "AS", + "T1", + "JOIN", + "Treatments", + "AS", + "T2", + "ON", + "T1.treatment_type_code", + "=", + "T2.treatment_type_code", + "GROUP", + "BY", + "T1.treatment_type_code", + "ORDER", + "BY", + "sum", + "(", + "cost_of_treatment", + ")", + "ASC", + "LIMIT", + "1" + ], + "query_toks_no_value": [ + "select", + "t1", + ".", + "treatment_type_description", + "from", + "treatment_types", + "as", + "t1", + "join", + "treatments", + "as", + "t2", + "on", + "t1", + ".", + "treatment_type_code", + "=", + "t2", + ".", + "treatment_type_code", + "group", + "by", + "t1", + ".", + "treatment_type_code", + "order", + "by", + "sum", + "(", + "cost_of_treatment", + ")", + "asc", + "limit", + "value" + ], + "question": "What is the description of the treatment type that costs the least money in total?", + "question_toks": [ + "What", + "is", + "the", + "description", + "of", + "the", + "treatment", + "type", + "that", + "costs", + "the", + "least", + "money", + "in", + "total", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 3 + ], + [ + "table_unit", + 7 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 8, + false + ], + null + ], + [ + 0, + 47, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 9, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 8, + false + ] + ], + "having": [], + "orderBy": [ + "asc", + [ + [ + 0, + [ + 4, + 49, + false + ], + null + ] + ] + ], + "limit": 1, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "dog_kennels", + "query": "SELECT T1.treatment_type_description FROM Treatment_types AS T1 JOIN Treatments AS T2 ON T1.treatment_type_code = T2.treatment_type_code GROUP BY T1.treatment_type_code ORDER BY sum(cost_of_treatment) ASC LIMIT 1", + "query_toks": [ + "SELECT", + "T1.treatment_type_description", + "FROM", + "Treatment_types", + "AS", + "T1", + "JOIN", + "Treatments", + "AS", + "T2", + "ON", + "T1.treatment_type_code", + "=", + "T2.treatment_type_code", + "GROUP", + "BY", + "T1.treatment_type_code", + "ORDER", + "BY", + "sum", + "(", + "cost_of_treatment", + ")", + "ASC", + "LIMIT", + "1" + ], + "query_toks_no_value": [ + "select", + "t1", + ".", + "treatment_type_description", + "from", + "treatment_types", + "as", + "t1", + "join", + "treatments", + "as", + "t2", + "on", + "t1", + ".", + "treatment_type_code", + "=", + "t2", + ".", + "treatment_type_code", + "group", + "by", + "t1", + ".", + "treatment_type_code", + "order", + "by", + "sum", + "(", + "cost_of_treatment", + ")", + "asc", + "limit", + "value" + ], + "question": "Give me the description of the treatment type whose total cost is the lowest.", + "question_toks": [ + "Give", + "me", + "the", + "description", + "of", + "the", + "treatment", + "type", + "whose", + "total", + "cost", + "is", + "the", + "lowest", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 3 + ], + [ + "table_unit", + 7 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 8, + false + ], + null + ], + [ + 0, + 47, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 9, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 8, + false + ] + ], + "having": [], + "orderBy": [ + "asc", + [ + [ + 0, + [ + 4, + 49, + false + ], + null + ] + ] + ], + "limit": 1, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "dog_kennels", + "query": "SELECT T1.owner_id , T1.zip_code FROM Owners AS T1 JOIN Dogs AS T2 ON T1.owner_id = T2.owner_id JOIN Treatments AS T3 ON T2.dog_id = T3.dog_id GROUP BY T1.owner_id ORDER BY sum(T3.cost_of_treatment) DESC LIMIT 1", + "query_toks": [ + "SELECT", + "T1.owner_id", + ",", + "T1.zip_code", + "FROM", + "Owners", + "AS", + "T1", + "JOIN", + "Dogs", + "AS", + "T2", + "ON", + "T1.owner_id", + "=", + "T2.owner_id", + "JOIN", + "Treatments", + "AS", + "T3", + "ON", + "T2.dog_id", + "=", + "T3.dog_id", + "GROUP", + "BY", + "T1.owner_id", + "ORDER", + "BY", + "sum", + "(", + "T3.cost_of_treatment", + ")", + "DESC", + "LIMIT", + "1" + ], + "query_toks_no_value": [ + "select", + "t1", + ".", + "owner_id", + ",", + "t1", + ".", + "zip_code", + "from", + "owners", + "as", + "t1", + "join", + "dogs", + "as", + "t2", + "on", + "t1", + ".", + "owner_id", + "=", + "t2", + ".", + "owner_id", + "join", + "treatments", + "as", + "t3", + "on", + "t2", + ".", + "dog_id", + "=", + "t3", + ".", + "dog_id", + "group", + "by", + "t1", + ".", + "owner_id", + "order", + "by", + "sum", + "(", + "t3", + ".", + "cost_of_treatment", + ")", + "desc", + "limit", + "value" + ], + "question": "Which owner has paid the largest amount of money in total for their dogs? Show the owner id and zip code.", + "question_toks": [ + "Which", + "owner", + "has", + "paid", + "the", + "largest", + "amount", + "of", + "money", + "in", + "total", + "for", + "their", + "dogs", + "?", + "Show", + "the", + "owner", + "id", + "and", + "zip", + "code", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 4 + ], + [ + "table_unit", + 5 + ], + [ + "table_unit", + 7 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 10, + false + ], + null + ], + [ + 0, + 21, + false + ], + null + ], + "and", + [ + false, + 2, + [ + 0, + [ + 0, + 20, + false + ], + null + ], + [ + 0, + 45, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 10, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 16, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 10, + false + ] + ], + "having": [], + "orderBy": [ + "desc", + [ + [ + 0, + [ + 4, + 49, + false + ], + null + ] + ] + ], + "limit": 1, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "dog_kennels", + "query": "SELECT T1.owner_id , T1.zip_code FROM Owners AS T1 JOIN Dogs AS T2 ON T1.owner_id = T2.owner_id JOIN Treatments AS T3 ON T2.dog_id = T3.dog_id GROUP BY T1.owner_id ORDER BY sum(T3.cost_of_treatment) DESC LIMIT 1", + "query_toks": [ + "SELECT", + "T1.owner_id", + ",", + "T1.zip_code", + "FROM", + "Owners", + "AS", + "T1", + "JOIN", + "Dogs", + "AS", + "T2", + "ON", + "T1.owner_id", + "=", + "T2.owner_id", + "JOIN", + "Treatments", + "AS", + "T3", + "ON", + "T2.dog_id", + "=", + "T3.dog_id", + "GROUP", + "BY", + "T1.owner_id", + "ORDER", + "BY", + "sum", + "(", + "T3.cost_of_treatment", + ")", + "DESC", + "LIMIT", + "1" + ], + "query_toks_no_value": [ + "select", + "t1", + ".", + "owner_id", + ",", + "t1", + ".", + "zip_code", + "from", + "owners", + "as", + "t1", + "join", + "dogs", + "as", + "t2", + "on", + "t1", + ".", + "owner_id", + "=", + "t2", + ".", + "owner_id", + "join", + "treatments", + "as", + "t3", + "on", + "t2", + ".", + "dog_id", + "=", + "t3", + ".", + "dog_id", + "group", + "by", + "t1", + ".", + "owner_id", + "order", + "by", + "sum", + "(", + "t3", + ".", + "cost_of_treatment", + ")", + "desc", + "limit", + "value" + ], + "question": "Find the owner id and zip code of the owner who spent the most money in total for his or her dogs.", + "question_toks": [ + "Find", + "the", + "owner", + "id", + "and", + "zip", + "code", + "of", + "the", + "owner", + "who", + "spent", + "the", + "most", + "money", + "in", + "total", + "for", + "his", + "or", + "her", + "dogs", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 4 + ], + [ + "table_unit", + 5 + ], + [ + "table_unit", + 7 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 10, + false + ], + null + ], + [ + 0, + 21, + false + ], + null + ], + "and", + [ + false, + 2, + [ + 0, + [ + 0, + 20, + false + ], + null + ], + [ + 0, + 45, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 10, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 16, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 10, + false + ] + ], + "having": [], + "orderBy": [ + "desc", + [ + [ + 0, + [ + 4, + 49, + false + ], + null + ] + ] + ], + "limit": 1, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "dog_kennels", + "query": "SELECT T1.professional_id , T1.cell_number FROM Professionals AS T1 JOIN Treatments AS T2 ON T1.professional_id = T2.professional_id GROUP BY T1.professional_id HAVING count(*) >= 2", + "query_toks": [ + "SELECT", + "T1.professional_id", + ",", + "T1.cell_number", + "FROM", + "Professionals", + "AS", + "T1", + "JOIN", + "Treatments", + "AS", + "T2", + "ON", + "T1.professional_id", + "=", + "T2.professional_id", + "GROUP", + "BY", + "T1.professional_id", + "HAVING", + "count", + "(", + "*", + ")", + ">", + "=", + "2" + ], + "query_toks_no_value": [ + "select", + "t1", + ".", + "professional_id", + ",", + "t1", + ".", + "cell_number", + "from", + "professionals", + "as", + "t1", + "join", + "treatments", + "as", + "t2", + "on", + "t1", + ".", + "professional_id", + "=", + "t2", + ".", + "professional_id", + "group", + "by", + "t1", + ".", + "professional_id", + "having", + "count", + "(", + "*", + ")", + ">", + "=", + "value" + ], + "question": "Which professionals have done at least two types of treatments? List the professional id and cell phone.", + "question_toks": [ + "Which", + "professionals", + "have", + "done", + "at", + "least", + "two", + "types", + "of", + "treatments", + "?", + "List", + "the", + "professional", + "id", + "and", + "cell", + "phone", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 6 + ], + [ + "table_unit", + 7 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 33, + false + ], + null + ], + [ + 0, + 46, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 33, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 43, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 33, + false + ] + ], + "having": [ + [ + false, + 5, + [ + 0, + [ + 3, + 0, + false + ], + null + ], + 2.0, + null + ] + ], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "dog_kennels", + "query": "SELECT T1.professional_id , T1.cell_number FROM Professionals AS T1 JOIN Treatments AS T2 ON T1.professional_id = T2.professional_id GROUP BY T1.professional_id HAVING count(*) >= 2", + "query_toks": [ + "SELECT", + "T1.professional_id", + ",", + "T1.cell_number", + "FROM", + "Professionals", + "AS", + "T1", + "JOIN", + "Treatments", + "AS", + "T2", + "ON", + "T1.professional_id", + "=", + "T2.professional_id", + "GROUP", + "BY", + "T1.professional_id", + "HAVING", + "count", + "(", + "*", + ")", + ">", + "=", + "2" + ], + "query_toks_no_value": [ + "select", + "t1", + ".", + "professional_id", + ",", + "t1", + ".", + "cell_number", + "from", + "professionals", + "as", + "t1", + "join", + "treatments", + "as", + "t2", + "on", + "t1", + ".", + "professional_id", + "=", + "t2", + ".", + "professional_id", + "group", + "by", + "t1", + ".", + "professional_id", + "having", + "count", + "(", + "*", + ")", + ">", + "=", + "value" + ], + "question": "Find the id and cell phone of the professionals who operate two or more types of treatments.", + "question_toks": [ + "Find", + "the", + "id", + "and", + "cell", + "phone", + "of", + "the", + "professionals", + "who", + "operate", + "two", + "or", + "more", + "types", + "of", + "treatments", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 6 + ], + [ + "table_unit", + 7 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 33, + false + ], + null + ], + [ + 0, + 46, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 33, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 43, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 33, + false + ] + ], + "having": [ + [ + false, + 5, + [ + 0, + [ + 3, + 0, + false + ], + null + ], + 2.0, + null + ] + ], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "dog_kennels", + "query": "SELECT DISTINCT T1.first_name , T1.last_name FROM Professionals AS T1 JOIN Treatments AS T2 WHERE cost_of_treatment < ( SELECT avg(cost_of_treatment) FROM Treatments )", + "query_toks": [ + "SELECT", + "DISTINCT", + "T1.first_name", + ",", + "T1.last_name", + "FROM", + "Professionals", + "AS", + "T1", + "JOIN", + "Treatments", + "AS", + "T2", + "WHERE", + "cost_of_treatment", + "<", + "(", + "SELECT", + "avg", + "(", + "cost_of_treatment", + ")", + "FROM", + "Treatments", + ")" + ], + "query_toks_no_value": [ + "select", + "distinct", + "t1", + ".", + "first_name", + ",", + "t1", + ".", + "last_name", + "from", + "professionals", + "as", + "t1", + "join", + "treatments", + "as", + "t2", + "where", + "cost_of_treatment", + "<", + "(", + "select", + "avg", + "(", + "cost_of_treatment", + ")", + "from", + "treatments", + ")" + ], + "question": "What are the first name and last name of the professionals who have done treatment with cost below average?", + "question_toks": [ + "What", + "are", + "the", + "first", + "name", + "and", + "last", + "name", + "of", + "the", + "professionals", + "who", + "have", + "done", + "treatment", + "with", + "cost", + "below", + "average", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 6 + ], + [ + "table_unit", + 7 + ] + ], + "conds": [] + }, + "select": [ + true, + [ + [ + 0, + [ + 0, + [ + 0, + 35, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 40, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 4, + [ + 0, + [ + 0, + 49, + false + ], + null + ], + { + "from": { + "table_units": [ + [ + "table_unit", + 7 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 5, + [ + 0, + [ + 0, + 49, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + }, + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "dog_kennels", + "query": "SELECT DISTINCT T1.first_name , T1.last_name FROM Professionals AS T1 JOIN Treatments AS T2 WHERE cost_of_treatment < ( SELECT avg(cost_of_treatment) FROM Treatments )", + "query_toks": [ + "SELECT", + "DISTINCT", + "T1.first_name", + ",", + "T1.last_name", + "FROM", + "Professionals", + "AS", + "T1", + "JOIN", + "Treatments", + "AS", + "T2", + "WHERE", + "cost_of_treatment", + "<", + "(", + "SELECT", + "avg", + "(", + "cost_of_treatment", + ")", + "FROM", + "Treatments", + ")" + ], + "query_toks_no_value": [ + "select", + "distinct", + "t1", + ".", + "first_name", + ",", + "t1", + ".", + "last_name", + "from", + "professionals", + "as", + "t1", + "join", + "treatments", + "as", + "t2", + "where", + "cost_of_treatment", + "<", + "(", + "select", + "avg", + "(", + "cost_of_treatment", + ")", + "from", + "treatments", + ")" + ], + "question": "Which professionals have operated a treatment that costs less than the average? Give me theor first names and last names.", + "question_toks": [ + "Which", + "professionals", + "have", + "operated", + "a", + "treatment", + "that", + "costs", + "less", + "than", + "the", + "average", + "?", + "Give", + "me", + "theor", + "first", + "names", + "and", + "last", + "names", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 6 + ], + [ + "table_unit", + 7 + ] + ], + "conds": [] + }, + "select": [ + true, + [ + [ + 0, + [ + 0, + [ + 0, + 35, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 40, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 4, + [ + 0, + [ + 0, + 49, + false + ], + null + ], + { + "from": { + "table_units": [ + [ + "table_unit", + 7 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 5, + [ + 0, + [ + 0, + 49, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + }, + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "dog_kennels", + "query": "SELECT T1.date_of_treatment , T2.first_name FROM Treatments AS T1 JOIN Professionals AS T2 ON T1.professional_id = T2.professional_id", + "query_toks": [ + "SELECT", + "T1.date_of_treatment", + ",", + "T2.first_name", + "FROM", + "Treatments", + "AS", + "T1", + "JOIN", + "Professionals", + "AS", + "T2", + "ON", + "T1.professional_id", + "=", + "T2.professional_id" + ], + "query_toks_no_value": [ + "select", + "t1", + ".", + "date_of_treatment", + ",", + "t2", + ".", + "first_name", + "from", + "treatments", + "as", + "t1", + "join", + "professionals", + "as", + "t2", + "on", + "t1", + ".", + "professional_id", + "=", + "t2", + ".", + "professional_id" + ], + "question": "List the date of each treatment, together with the first name of the professional who operated it.", + "question_toks": [ + "List", + "the", + "date", + "of", + "each", + "treatment", + ",", + "together", + "with", + "the", + "first", + "name", + "of", + "the", + "professional", + "who", + "operated", + "it", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 7 + ], + [ + "table_unit", + 6 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 46, + false + ], + null + ], + [ + 0, + 33, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 48, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 35, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "dog_kennels", + "query": "SELECT T1.date_of_treatment , T2.first_name FROM Treatments AS T1 JOIN Professionals AS T2 ON T1.professional_id = T2.professional_id", + "query_toks": [ + "SELECT", + "T1.date_of_treatment", + ",", + "T2.first_name", + "FROM", + "Treatments", + "AS", + "T1", + "JOIN", + "Professionals", + "AS", + "T2", + "ON", + "T1.professional_id", + "=", + "T2.professional_id" + ], + "query_toks_no_value": [ + "select", + "t1", + ".", + "date_of_treatment", + ",", + "t2", + ".", + "first_name", + "from", + "treatments", + "as", + "t1", + "join", + "professionals", + "as", + "t2", + "on", + "t1", + ".", + "professional_id", + "=", + "t2", + ".", + "professional_id" + ], + "question": "What are the date and the operating professional's first name of each treatment?", + "question_toks": [ + "What", + "are", + "the", + "date", + "and", + "the", + "operating", + "professional", + "'s", + "first", + "name", + "of", + "each", + "treatment", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 7 + ], + [ + "table_unit", + 6 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 46, + false + ], + null + ], + [ + 0, + 33, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 48, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 35, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "dog_kennels", + "query": "SELECT T1.cost_of_treatment , T2.treatment_type_description FROM Treatments AS T1 JOIN treatment_types AS T2 ON T1.treatment_type_code = T2.treatment_type_code", + "query_toks": [ + "SELECT", + "T1.cost_of_treatment", + ",", + "T2.treatment_type_description", + "FROM", + "Treatments", + "AS", + "T1", + "JOIN", + "treatment_types", + "AS", + "T2", + "ON", + "T1.treatment_type_code", + "=", + "T2.treatment_type_code" + ], + "query_toks_no_value": [ + "select", + "t1", + ".", + "cost_of_treatment", + ",", + "t2", + ".", + "treatment_type_description", + "from", + "treatments", + "as", + "t1", + "join", + "treatment_types", + "as", + "t2", + "on", + "t1", + ".", + "treatment_type_code", + "=", + "t2", + ".", + "treatment_type_code" + ], + "question": "List the cost of each treatment and the corresponding treatment type description.", + "question_toks": [ + "List", + "the", + "cost", + "of", + "each", + "treatment", + "and", + "the", + "corresponding", + "treatment", + "type", + "description", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 7 + ], + [ + "table_unit", + 3 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 47, + false + ], + null + ], + [ + 0, + 8, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 49, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 9, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "dog_kennels", + "query": "SELECT T1.cost_of_treatment , T2.treatment_type_description FROM Treatments AS T1 JOIN treatment_types AS T2 ON T1.treatment_type_code = T2.treatment_type_code", + "query_toks": [ + "SELECT", + "T1.cost_of_treatment", + ",", + "T2.treatment_type_description", + "FROM", + "Treatments", + "AS", + "T1", + "JOIN", + "treatment_types", + "AS", + "T2", + "ON", + "T1.treatment_type_code", + "=", + "T2.treatment_type_code" + ], + "query_toks_no_value": [ + "select", + "t1", + ".", + "cost_of_treatment", + ",", + "t2", + ".", + "treatment_type_description", + "from", + "treatments", + "as", + "t1", + "join", + "treatment_types", + "as", + "t2", + "on", + "t1", + ".", + "treatment_type_code", + "=", + "t2", + ".", + "treatment_type_code" + ], + "question": "What are the cost and treatment type description of each treatment?", + "question_toks": [ + "What", + "are", + "the", + "cost", + "and", + "treatment", + "type", + "description", + "of", + "each", + "treatment", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 7 + ], + [ + "table_unit", + 3 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 47, + false + ], + null + ], + [ + 0, + 8, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 49, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 9, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "dog_kennels", + "query": "SELECT T1.first_name , T1.last_name , T2.size_code FROM Owners AS T1 JOIN Dogs AS T2 ON T1.owner_id = T2.owner_id", + "query_toks": [ + "SELECT", + "T1.first_name", + ",", + "T1.last_name", + ",", + "T2.size_code", + "FROM", + "Owners", + "AS", + "T1", + "JOIN", + "Dogs", + "AS", + "T2", + "ON", + "T1.owner_id", + "=", + "T2.owner_id" + ], + "query_toks_no_value": [ + "select", + "t1", + ".", + "first_name", + ",", + "t1", + ".", + "last_name", + ",", + "t2", + ".", + "size_code", + "from", + "owners", + "as", + "t1", + "join", + "dogs", + "as", + "t2", + "on", + "t1", + ".", + "owner_id", + "=", + "t2", + ".", + "owner_id" + ], + "question": "List each owner's first name, last name, and the size of his for her dog.", + "question_toks": [ + "List", + "each", + "owner", + "'s", + "first", + "name", + ",", + "last", + "name", + ",", + "and", + "the", + "size", + "of", + "his", + "for", + "her", + "dog", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 4 + ], + [ + "table_unit", + 5 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 10, + false + ], + null + ], + [ + 0, + 21, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 11, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 12, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 24, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "dog_kennels", + "query": "SELECT T1.first_name , T1.last_name , T2.size_code FROM Owners AS T1 JOIN Dogs AS T2 ON T1.owner_id = T2.owner_id", + "query_toks": [ + "SELECT", + "T1.first_name", + ",", + "T1.last_name", + ",", + "T2.size_code", + "FROM", + "Owners", + "AS", + "T1", + "JOIN", + "Dogs", + "AS", + "T2", + "ON", + "T1.owner_id", + "=", + "T2.owner_id" + ], + "query_toks_no_value": [ + "select", + "t1", + ".", + "first_name", + ",", + "t1", + ".", + "last_name", + ",", + "t2", + ".", + "size_code", + "from", + "owners", + "as", + "t1", + "join", + "dogs", + "as", + "t2", + "on", + "t1", + ".", + "owner_id", + "=", + "t2", + ".", + "owner_id" + ], + "question": "What are each owner's first name, last name, and the size of their dog?", + "question_toks": [ + "What", + "are", + "each", + "owner", + "'s", + "first", + "name", + ",", + "last", + "name", + ",", + "and", + "the", + "size", + "of", + "their", + "dog", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 4 + ], + [ + "table_unit", + 5 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 10, + false + ], + null + ], + [ + 0, + 21, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 11, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 12, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 24, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "dog_kennels", + "query": "SELECT T1.first_name , T2.name FROM Owners AS T1 JOIN Dogs AS T2 ON T1.owner_id = T2.owner_id", + "query_toks": [ + "SELECT", + "T1.first_name", + ",", + "T2.name", + "FROM", + "Owners", + "AS", + "T1", + "JOIN", + "Dogs", + "AS", + "T2", + "ON", + "T1.owner_id", + "=", + "T2.owner_id" + ], + "query_toks_no_value": [ + "select", + "t1", + ".", + "first_name", + ",", + "t2", + ".", + "name", + "from", + "owners", + "as", + "t1", + "join", + "dogs", + "as", + "t2", + "on", + "t1", + ".", + "owner_id", + "=", + "t2", + ".", + "owner_id" + ], + "question": "List pairs of the owner's first name and the dogs's name.", + "question_toks": [ + "List", + "pairs", + "of", + "the", + "owner", + "'s", + "first", + "name", + "and", + "the", + "dogs", + "'s", + "name", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 4 + ], + [ + "table_unit", + 5 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 10, + false + ], + null + ], + [ + 0, + 21, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 11, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 25, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "dog_kennels", + "query": "SELECT T1.first_name , T2.name FROM Owners AS T1 JOIN Dogs AS T2 ON T1.owner_id = T2.owner_id", + "query_toks": [ + "SELECT", + "T1.first_name", + ",", + "T2.name", + "FROM", + "Owners", + "AS", + "T1", + "JOIN", + "Dogs", + "AS", + "T2", + "ON", + "T1.owner_id", + "=", + "T2.owner_id" + ], + "query_toks_no_value": [ + "select", + "t1", + ".", + "first_name", + ",", + "t2", + ".", + "name", + "from", + "owners", + "as", + "t1", + "join", + "dogs", + "as", + "t2", + "on", + "t1", + ".", + "owner_id", + "=", + "t2", + ".", + "owner_id" + ], + "question": "What are each owner's first name and their dogs's name?", + "question_toks": [ + "What", + "are", + "each", + "owner", + "'s", + "first", + "name", + "and", + "their", + "dogs", + "'s", + "name", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 4 + ], + [ + "table_unit", + 5 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 10, + false + ], + null + ], + [ + 0, + 21, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 11, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 25, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "dog_kennels", + "query": "SELECT T1.name , T2.date_of_treatment FROM Dogs AS T1 JOIN Treatments AS T2 ON T1.dog_id = T2.dog_id WHERE T1.breed_code = ( SELECT breed_code FROM Dogs GROUP BY breed_code ORDER BY count(*) ASC LIMIT 1 )", + "query_toks": [ + "SELECT", + "T1.name", + ",", + "T2.date_of_treatment", + "FROM", + "Dogs", + "AS", + "T1", + "JOIN", + "Treatments", + "AS", + "T2", + "ON", + "T1.dog_id", + "=", + "T2.dog_id", + "WHERE", + "T1.breed_code", + "=", + "(", + "SELECT", + "breed_code", + "FROM", + "Dogs", + "GROUP", + "BY", + "breed_code", + "ORDER", + "BY", + "count", + "(", + "*", + ")", + "ASC", + "LIMIT", + "1", + ")" + ], + "query_toks_no_value": [ + "select", + "t1", + ".", + "name", + ",", + "t2", + ".", + "date_of_treatment", + "from", + "dogs", + "as", + "t1", + "join", + "treatments", + "as", + "t2", + "on", + "t1", + ".", + "dog_id", + "=", + "t2", + ".", + "dog_id", + "where", + "t1", + ".", + "breed_code", + "=", + "(", + "select", + "breed_code", + "from", + "dogs", + "group", + "by", + "breed_code", + "order", + "by", + "count", + "(", + "*", + ")", + "asc", + "limit", + "value", + ")" + ], + "question": "List the names of the dogs of the rarest breed and the treatment dates of them.", + "question_toks": [ + "List", + "the", + "names", + "of", + "the", + "dogs", + "of", + "the", + "rarest", + "breed", + "and", + "the", + "treatment", + "dates", + "of", + "them", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 5 + ], + [ + "table_unit", + 7 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 20, + false + ], + null + ], + [ + 0, + 45, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 25, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 48, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 23, + false + ], + null + ], + { + "from": { + "table_units": [ + [ + "table_unit", + 5 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 23, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 23, + false + ] + ], + "having": [], + "orderBy": [ + "asc", + [ + [ + 0, + [ + 3, + 0, + false + ], + null + ] + ] + ], + "limit": 1, + "intersect": null, + "union": null, + "except": null + }, + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "dog_kennels", + "query": "SELECT T1.name , T2.date_of_treatment FROM Dogs AS T1 JOIN Treatments AS T2 ON T1.dog_id = T2.dog_id WHERE T1.breed_code = ( SELECT breed_code FROM Dogs GROUP BY breed_code ORDER BY count(*) ASC LIMIT 1 )", + "query_toks": [ + "SELECT", + "T1.name", + ",", + "T2.date_of_treatment", + "FROM", + "Dogs", + "AS", + "T1", + "JOIN", + "Treatments", + "AS", + "T2", + "ON", + "T1.dog_id", + "=", + "T2.dog_id", + "WHERE", + "T1.breed_code", + "=", + "(", + "SELECT", + "breed_code", + "FROM", + "Dogs", + "GROUP", + "BY", + "breed_code", + "ORDER", + "BY", + "count", + "(", + "*", + ")", + "ASC", + "LIMIT", + "1", + ")" + ], + "query_toks_no_value": [ + "select", + "t1", + ".", + "name", + ",", + "t2", + ".", + "date_of_treatment", + "from", + "dogs", + "as", + "t1", + "join", + "treatments", + "as", + "t2", + "on", + "t1", + ".", + "dog_id", + "=", + "t2", + ".", + "dog_id", + "where", + "t1", + ".", + "breed_code", + "=", + "(", + "select", + "breed_code", + "from", + "dogs", + "group", + "by", + "breed_code", + "order", + "by", + "count", + "(", + "*", + ")", + "asc", + "limit", + "value", + ")" + ], + "question": "Which dogs are of the rarest breed? Show their names and treatment dates.", + "question_toks": [ + "Which", + "dogs", + "are", + "of", + "the", + "rarest", + "breed", + "?", + "Show", + "their", + "names", + "and", + "treatment", + "dates", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 5 + ], + [ + "table_unit", + 7 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 20, + false + ], + null + ], + [ + 0, + 45, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 25, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 48, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 23, + false + ], + null + ], + { + "from": { + "table_units": [ + [ + "table_unit", + 5 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 23, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 23, + false + ] + ], + "having": [], + "orderBy": [ + "asc", + [ + [ + 0, + [ + 3, + 0, + false + ], + null + ] + ] + ], + "limit": 1, + "intersect": null, + "union": null, + "except": null + }, + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "dog_kennels", + "query": "SELECT T1.first_name , T2.name FROM Owners AS T1 JOIN Dogs AS T2 ON T1.owner_id = T2.owner_id WHERE T1.state = 'Virginia'", + "query_toks": [ + "SELECT", + "T1.first_name", + ",", + "T2.name", + "FROM", + "Owners", + "AS", + "T1", + "JOIN", + "Dogs", + "AS", + "T2", + "ON", + "T1.owner_id", + "=", + "T2.owner_id", + "WHERE", + "T1.state", + "=", + "'Virginia", + "'" + ], + "query_toks_no_value": [ + "select", + "t1", + ".", + "first_name", + ",", + "t2", + ".", + "name", + "from", + "owners", + "as", + "t1", + "join", + "dogs", + "as", + "t2", + "on", + "t1", + ".", + "owner_id", + "=", + "t2", + ".", + "owner_id", + "where", + "t1", + ".", + "state", + "=", + "value" + ], + "question": "Which dogs are owned by someone who lives in Virginia? List the owner's first name and the dog's name.", + "question_toks": [ + "Which", + "dogs", + "are", + "owned", + "by", + "someone", + "who", + "lives", + "in", + "Virginia", + "?", + "List", + "the", + "owner", + "'s", + "first", + "name", + "and", + "the", + "dog", + "'s", + "name", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 4 + ], + [ + "table_unit", + 5 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 10, + false + ], + null + ], + [ + 0, + 21, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 11, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 25, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 15, + false + ], + null + ], + "\"Virginia\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "dog_kennels", + "query": "SELECT T1.first_name , T2.name FROM Owners AS T1 JOIN Dogs AS T2 ON T1.owner_id = T2.owner_id WHERE T1.state = 'Virginia'", + "query_toks": [ + "SELECT", + "T1.first_name", + ",", + "T2.name", + "FROM", + "Owners", + "AS", + "T1", + "JOIN", + "Dogs", + "AS", + "T2", + "ON", + "T1.owner_id", + "=", + "T2.owner_id", + "WHERE", + "T1.state", + "=", + "'Virginia", + "'" + ], + "query_toks_no_value": [ + "select", + "t1", + ".", + "first_name", + ",", + "t2", + ".", + "name", + "from", + "owners", + "as", + "t1", + "join", + "dogs", + "as", + "t2", + "on", + "t1", + ".", + "owner_id", + "=", + "t2", + ".", + "owner_id", + "where", + "t1", + ".", + "state", + "=", + "value" + ], + "question": "Find the first names of owners living in Virginia and the names of dogs they own.", + "question_toks": [ + "Find", + "the", + "first", + "names", + "of", + "owners", + "living", + "in", + "Virginia", + "and", + "the", + "names", + "of", + "dogs", + "they", + "own", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 4 + ], + [ + "table_unit", + 5 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 10, + false + ], + null + ], + [ + 0, + 21, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 11, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 25, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 15, + false + ], + null + ], + "\"Virginia\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "dog_kennels", + "query": "SELECT DISTINCT T1.date_arrived , T1.date_departed FROM Dogs AS T1 JOIN Treatments AS T2 ON T1.dog_id = T2.dog_id", + "query_toks": [ + "SELECT", + "DISTINCT", + "T1.date_arrived", + ",", + "T1.date_departed", + "FROM", + "Dogs", + "AS", + "T1", + "JOIN", + "Treatments", + "AS", + "T2", + "ON", + "T1.dog_id", + "=", + "T2.dog_id" + ], + "query_toks_no_value": [ + "select", + "distinct", + "t1", + ".", + "date_arrived", + ",", + "t1", + ".", + "date_departed", + "from", + "dogs", + "as", + "t1", + "join", + "treatments", + "as", + "t2", + "on", + "t1", + ".", + "dog_id", + "=", + "t2", + ".", + "dog_id" + ], + "question": "What are the arriving date and the departing date of the dogs who have gone through a treatment?", + "question_toks": [ + "What", + "are", + "the", + "arriving", + "date", + "and", + "the", + "departing", + "date", + "of", + "the", + "dogs", + "who", + "have", + "gone", + "through", + "a", + "treatment", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 5 + ], + [ + "table_unit", + 7 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 20, + false + ], + null + ], + [ + 0, + 45, + false + ], + null + ] + ] + }, + "select": [ + true, + [ + [ + 0, + [ + 0, + [ + 0, + 30, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 32, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "dog_kennels", + "query": "SELECT DISTINCT T1.date_arrived , T1.date_departed FROM Dogs AS T1 JOIN Treatments AS T2 ON T1.dog_id = T2.dog_id", + "query_toks": [ + "SELECT", + "DISTINCT", + "T1.date_arrived", + ",", + "T1.date_departed", + "FROM", + "Dogs", + "AS", + "T1", + "JOIN", + "Treatments", + "AS", + "T2", + "ON", + "T1.dog_id", + "=", + "T2.dog_id" + ], + "query_toks_no_value": [ + "select", + "distinct", + "t1", + ".", + "date_arrived", + ",", + "t1", + ".", + "date_departed", + "from", + "dogs", + "as", + "t1", + "join", + "treatments", + "as", + "t2", + "on", + "t1", + ".", + "dog_id", + "=", + "t2", + ".", + "dog_id" + ], + "question": "Find the arriving date and the departing date of the dogs that received a treatment.", + "question_toks": [ + "Find", + "the", + "arriving", + "date", + "and", + "the", + "departing", + "date", + "of", + "the", + "dogs", + "that", + "received", + "a", + "treatment", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 5 + ], + [ + "table_unit", + 7 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 20, + false + ], + null + ], + [ + 0, + 45, + false + ], + null + ] + ] + }, + "select": [ + true, + [ + [ + 0, + [ + 0, + [ + 0, + 30, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 32, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "dog_kennels", + "query": "SELECT T1.last_name FROM Owners AS T1 JOIN Dogs AS T2 ON T1.owner_id = T2.owner_id WHERE T2.age = ( SELECT max(age) FROM Dogs )", + "query_toks": [ + "SELECT", + "T1.last_name", + "FROM", + "Owners", + "AS", + "T1", + "JOIN", + "Dogs", + "AS", + "T2", + "ON", + "T1.owner_id", + "=", + "T2.owner_id", + "WHERE", + "T2.age", + "=", + "(", + "SELECT", + "max", + "(", + "age", + ")", + "FROM", + "Dogs", + ")" + ], + "query_toks_no_value": [ + "select", + "t1", + ".", + "last_name", + "from", + "owners", + "as", + "t1", + "join", + "dogs", + "as", + "t2", + "on", + "t1", + ".", + "owner_id", + "=", + "t2", + ".", + "owner_id", + "where", + "t2", + ".", + "age", + "=", + "(", + "select", + "max", + "(", + "age", + ")", + "from", + "dogs", + ")" + ], + "question": "List the last name of the owner owning the youngest dog.", + "question_toks": [ + "List", + "the", + "last", + "name", + "of", + "the", + "owner", + "owning", + "the", + "youngest", + "dog", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 4 + ], + [ + "table_unit", + 5 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 10, + false + ], + null + ], + [ + 0, + 21, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 12, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 26, + false + ], + null + ], + { + "from": { + "table_units": [ + [ + "table_unit", + 5 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 1, + [ + 0, + [ + 0, + 26, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + }, + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "dog_kennels", + "query": "SELECT T1.last_name FROM Owners AS T1 JOIN Dogs AS T2 ON T1.owner_id = T2.owner_id WHERE T2.age = ( SELECT max(age) FROM Dogs )", + "query_toks": [ + "SELECT", + "T1.last_name", + "FROM", + "Owners", + "AS", + "T1", + "JOIN", + "Dogs", + "AS", + "T2", + "ON", + "T1.owner_id", + "=", + "T2.owner_id", + "WHERE", + "T2.age", + "=", + "(", + "SELECT", + "max", + "(", + "age", + ")", + "FROM", + "Dogs", + ")" + ], + "query_toks_no_value": [ + "select", + "t1", + ".", + "last_name", + "from", + "owners", + "as", + "t1", + "join", + "dogs", + "as", + "t2", + "on", + "t1", + ".", + "owner_id", + "=", + "t2", + ".", + "owner_id", + "where", + "t2", + ".", + "age", + "=", + "(", + "select", + "max", + "(", + "age", + ")", + "from", + "dogs", + ")" + ], + "question": "Who owns the youngest dog? Give me his or her last name.", + "question_toks": [ + "Who", + "owns", + "the", + "youngest", + "dog", + "?", + "Give", + "me", + "his", + "or", + "her", + "last", + "name", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 4 + ], + [ + "table_unit", + 5 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 10, + false + ], + null + ], + [ + 0, + 21, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 12, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 26, + false + ], + null + ], + { + "from": { + "table_units": [ + [ + "table_unit", + 5 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 1, + [ + 0, + [ + 0, + 26, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + }, + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "dog_kennels", + "query": "SELECT email_address FROM Professionals WHERE state = 'Hawaii' OR state = 'Wisconsin'", + "query_toks": [ + "SELECT", + "email_address", + "FROM", + "Professionals", + "WHERE", + "state", + "=", + "'Hawaii", + "'", + "OR", + "state", + "=", + "'Wisconsin", + "'" + ], + "query_toks_no_value": [ + "select", + "email_address", + "from", + "professionals", + "where", + "state", + "=", + "value", + "or", + "state", + "=", + "value" + ], + "question": "List the emails of the professionals who live in the state of Hawaii or the state of Wisconsin.", + "question_toks": [ + "List", + "the", + "emails", + "of", + "the", + "professionals", + "who", + "live", + "in", + "the", + "state", + "of", + "Hawaii", + "or", + "the", + "state", + "of", + "Wisconsin", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 6 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 41, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 38, + false + ], + null + ], + "\"Hawaii\"", + null + ], + "or", + [ + false, + 2, + [ + 0, + [ + 0, + 38, + false + ], + null + ], + "\"Wisconsin\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "dog_kennels", + "query": "SELECT email_address FROM Professionals WHERE state = 'Hawaii' OR state = 'Wisconsin'", + "query_toks": [ + "SELECT", + "email_address", + "FROM", + "Professionals", + "WHERE", + "state", + "=", + "'Hawaii", + "'", + "OR", + "state", + "=", + "'Wisconsin", + "'" + ], + "query_toks_no_value": [ + "select", + "email_address", + "from", + "professionals", + "where", + "state", + "=", + "value", + "or", + "state", + "=", + "value" + ], + "question": "What are the emails of the professionals living in either the state of Hawaii or the state of Wisconsin?", + "question_toks": [ + "What", + "are", + "the", + "emails", + "of", + "the", + "professionals", + "living", + "in", + "either", + "the", + "state", + "of", + "Hawaii", + "or", + "the", + "state", + "of", + "Wisconsin", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 6 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 41, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 38, + false + ], + null + ], + "\"Hawaii\"", + null + ], + "or", + [ + false, + 2, + [ + 0, + [ + 0, + 38, + false + ], + null + ], + "\"Wisconsin\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "dog_kennels", + "query": "SELECT date_arrived , date_departed FROM Dogs", + "query_toks": [ + "SELECT", + "date_arrived", + ",", + "date_departed", + "FROM", + "Dogs" + ], + "query_toks_no_value": [ + "select", + "date_arrived", + ",", + "date_departed", + "from", + "dogs" + ], + "question": "What are the arriving date and the departing date of all the dogs?", + "question_toks": [ + "What", + "are", + "the", + "arriving", + "date", + "and", + "the", + "departing", + "date", + "of", + "all", + "the", + "dogs", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 5 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 30, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 32, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "dog_kennels", + "query": "SELECT date_arrived , date_departed FROM Dogs", + "query_toks": [ + "SELECT", + "date_arrived", + ",", + "date_departed", + "FROM", + "Dogs" + ], + "query_toks_no_value": [ + "select", + "date_arrived", + ",", + "date_departed", + "from", + "dogs" + ], + "question": "List the arrival date and the departure date for all the dogs.", + "question_toks": [ + "List", + "the", + "arrival", + "date", + "and", + "the", + "departure", + "date", + "for", + "all", + "the", + "dogs", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 5 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 30, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 32, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "dog_kennels", + "query": "SELECT count(DISTINCT dog_id) FROM Treatments", + "query_toks": [ + "SELECT", + "count", + "(", + "DISTINCT", + "dog_id", + ")", + "FROM", + "Treatments" + ], + "query_toks_no_value": [ + "select", + "count", + "(", + "distinct", + "dog_id", + ")", + "from", + "treatments" + ], + "question": "How many dogs went through any treatments?", + "question_toks": [ + "How", + "many", + "dogs", + "went", + "through", + "any", + "treatments", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 7 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 3, + [ + 0, + [ + 0, + 45, + true + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "dog_kennels", + "query": "SELECT count(DISTINCT dog_id) FROM Treatments", + "query_toks": [ + "SELECT", + "count", + "(", + "DISTINCT", + "dog_id", + ")", + "FROM", + "Treatments" + ], + "query_toks_no_value": [ + "select", + "count", + "(", + "distinct", + "dog_id", + ")", + "from", + "treatments" + ], + "question": "Count the number of dogs that went through a treatment.", + "question_toks": [ + "Count", + "the", + "number", + "of", + "dogs", + "that", + "went", + "through", + "a", + "treatment", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 7 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 3, + [ + 0, + [ + 0, + 45, + true + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "dog_kennels", + "query": "SELECT count(DISTINCT professional_id) FROM Treatments", + "query_toks": [ + "SELECT", + "count", + "(", + "DISTINCT", + "professional_id", + ")", + "FROM", + "Treatments" + ], + "query_toks_no_value": [ + "select", + "count", + "(", + "distinct", + "professional_id", + ")", + "from", + "treatments" + ], + "question": "How many professionals have performed any treatment to dogs?", + "question_toks": [ + "How", + "many", + "professionals", + "have", + "performed", + "any", + "treatment", + "to", + "dogs", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 7 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 3, + [ + 0, + [ + 0, + 46, + true + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "dog_kennels", + "query": "SELECT count(DISTINCT professional_id) FROM Treatments", + "query_toks": [ + "SELECT", + "count", + "(", + "DISTINCT", + "professional_id", + ")", + "FROM", + "Treatments" + ], + "query_toks_no_value": [ + "select", + "count", + "(", + "distinct", + "professional_id", + ")", + "from", + "treatments" + ], + "question": "Find the number of professionals who have ever treated dogs.", + "question_toks": [ + "Find", + "the", + "number", + "of", + "professionals", + "who", + "have", + "ever", + "treated", + "dogs", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 7 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 3, + [ + 0, + [ + 0, + 46, + true + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "dog_kennels", + "query": "SELECT role_code , street , city , state FROM professionals WHERE city LIKE '%West%'", + "query_toks": [ + "SELECT", + "role_code", + ",", + "street", + ",", + "city", + ",", + "state", + "FROM", + "professionals", + "WHERE", + "city", + "LIKE", + "'", + "%", + "West", + "%", + "'" + ], + "query_toks_no_value": [ + "select", + "role_code", + ",", + "street", + ",", + "city", + ",", + "state", + "from", + "professionals", + "where", + "city", + "like", + "value" + ], + "question": "Which professionals live in a city containing the substring 'West'? List his or her role, street, city and state.", + "question_toks": [ + "Which", + "professionals", + "live", + "in", + "a", + "city", + "containing", + "the", + "substring", + "'West", + "'", + "?", + "List", + "his", + "or", + "her", + "role", + ",", + "street", + ",", + "city", + "and", + "state", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 6 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 34, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 36, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 37, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 38, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 9, + [ + 0, + [ + 0, + 37, + false + ], + null + ], + "\"%West%\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "dog_kennels", + "query": "SELECT role_code , street , city , state FROM professionals WHERE city LIKE '%West%'", + "query_toks": [ + "SELECT", + "role_code", + ",", + "street", + ",", + "city", + ",", + "state", + "FROM", + "professionals", + "WHERE", + "city", + "LIKE", + "'", + "%", + "West", + "%", + "'" + ], + "query_toks_no_value": [ + "select", + "role_code", + ",", + "street", + ",", + "city", + ",", + "state", + "from", + "professionals", + "where", + "city", + "like", + "value" + ], + "question": "Find the role, street, city and state of the professionals living in a city that contains the substring 'West'.", + "question_toks": [ + "Find", + "the", + "role", + ",", + "street", + ",", + "city", + "and", + "state", + "of", + "the", + "professionals", + "living", + "in", + "a", + "city", + "that", + "contains", + "the", + "substring", + "'West", + "'", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 6 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 34, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 36, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 37, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 38, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 9, + [ + 0, + [ + 0, + 37, + false + ], + null + ], + "\"%West%\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "dog_kennels", + "query": "SELECT first_name , last_name , email_address FROM Owners WHERE state LIKE '%North%'", + "query_toks": [ + "SELECT", + "first_name", + ",", + "last_name", + ",", + "email_address", + "FROM", + "Owners", + "WHERE", + "state", + "LIKE", + "'", + "%", + "North", + "%", + "'" + ], + "query_toks_no_value": [ + "select", + "first_name", + ",", + "last_name", + ",", + "email_address", + "from", + "owners", + "where", + "state", + "like", + "value" + ], + "question": "Which owners live in the state whose name contains the substring 'North'? List his first name, last name and email.", + "question_toks": [ + "Which", + "owners", + "live", + "in", + "the", + "state", + "whose", + "name", + "contains", + "the", + "substring", + "'North", + "'", + "?", + "List", + "his", + "first", + "name", + ",", + "last", + "name", + "and", + "email", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 4 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 11, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 12, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 17, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 9, + [ + 0, + [ + 0, + 15, + false + ], + null + ], + "\"%North%\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "dog_kennels", + "query": "SELECT first_name , last_name , email_address FROM Owners WHERE state LIKE '%North%'", + "query_toks": [ + "SELECT", + "first_name", + ",", + "last_name", + ",", + "email_address", + "FROM", + "Owners", + "WHERE", + "state", + "LIKE", + "'", + "%", + "North", + "%", + "'" + ], + "query_toks_no_value": [ + "select", + "first_name", + ",", + "last_name", + ",", + "email_address", + "from", + "owners", + "where", + "state", + "like", + "value" + ], + "question": "Return the first name, last name and email of the owners living in a state whose name contains the substring 'North'.", + "question_toks": [ + "Return", + "the", + "first", + "name", + ",", + "last", + "name", + "and", + "email", + "of", + "the", + "owners", + "living", + "in", + "a", + "state", + "whose", + "name", + "contains", + "the", + "substring", + "'North", + "'", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 4 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 11, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 12, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 17, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 9, + [ + 0, + [ + 0, + 15, + false + ], + null + ], + "\"%North%\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "dog_kennels", + "query": "SELECT count(*) FROM Dogs WHERE age < ( SELECT avg(age) FROM Dogs )", + "query_toks": [ + "SELECT", + "count", + "(", + "*", + ")", + "FROM", + "Dogs", + "WHERE", + "age", + "<", + "(", + "SELECT", + "avg", + "(", + "age", + ")", + "FROM", + "Dogs", + ")" + ], + "query_toks_no_value": [ + "select", + "count", + "(", + "*", + ")", + "from", + "dogs", + "where", + "age", + "<", + "(", + "select", + "avg", + "(", + "age", + ")", + "from", + "dogs", + ")" + ], + "question": "How many dogs have an age below the average?", + "question_toks": [ + "How", + "many", + "dogs", + "have", + "an", + "age", + "below", + "the", + "average", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 5 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 3, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 4, + [ + 0, + [ + 0, + 26, + false + ], + null + ], + { + "from": { + "table_units": [ + [ + "table_unit", + 5 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 5, + [ + 0, + [ + 0, + 26, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + }, + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "dog_kennels", + "query": "SELECT count(*) FROM Dogs WHERE age < ( SELECT avg(age) FROM Dogs )", + "query_toks": [ + "SELECT", + "count", + "(", + "*", + ")", + "FROM", + "Dogs", + "WHERE", + "age", + "<", + "(", + "SELECT", + "avg", + "(", + "age", + ")", + "FROM", + "Dogs", + ")" + ], + "query_toks_no_value": [ + "select", + "count", + "(", + "*", + ")", + "from", + "dogs", + "where", + "age", + "<", + "(", + "select", + "avg", + "(", + "age", + ")", + "from", + "dogs", + ")" + ], + "question": "Count the number of dogs of an age below the average.", + "question_toks": [ + "Count", + "the", + "number", + "of", + "dogs", + "of", + "an", + "age", + "below", + "the", + "average", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 5 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 3, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 4, + [ + 0, + [ + 0, + 26, + false + ], + null + ], + { + "from": { + "table_units": [ + [ + "table_unit", + 5 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 5, + [ + 0, + [ + 0, + 26, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + }, + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "dog_kennels", + "query": "SELECT cost_of_treatment FROM Treatments ORDER BY date_of_treatment DESC LIMIT 1", + "query_toks": [ + "SELECT", + "cost_of_treatment", + "FROM", + "Treatments", + "ORDER", + "BY", + "date_of_treatment", + "DESC", + "LIMIT", + "1" + ], + "query_toks_no_value": [ + "select", + "cost_of_treatment", + "from", + "treatments", + "order", + "by", + "date_of_treatment", + "desc", + "limit", + "value" + ], + "question": "How much does the most recent treatment cost?", + "question_toks": [ + "How", + "much", + "does", + "the", + "most", + "recent", + "treatment", + "cost", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 7 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 49, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [ + "desc", + [ + [ + 0, + [ + 0, + 48, + false + ], + null + ] + ] + ], + "limit": 1, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "dog_kennels", + "query": "SELECT cost_of_treatment FROM Treatments ORDER BY date_of_treatment DESC LIMIT 1", + "query_toks": [ + "SELECT", + "cost_of_treatment", + "FROM", + "Treatments", + "ORDER", + "BY", + "date_of_treatment", + "DESC", + "LIMIT", + "1" + ], + "query_toks_no_value": [ + "select", + "cost_of_treatment", + "from", + "treatments", + "order", + "by", + "date_of_treatment", + "desc", + "limit", + "value" + ], + "question": "Show me the cost of the most recently performed treatment.", + "question_toks": [ + "Show", + "me", + "the", + "cost", + "of", + "the", + "most", + "recently", + "performed", + "treatment", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 7 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 49, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [ + "desc", + [ + [ + 0, + [ + 0, + 48, + false + ], + null + ] + ] + ], + "limit": 1, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "dog_kennels", + "query": "SELECT count(*) FROM Dogs WHERE dog_id NOT IN ( SELECT dog_id FROM Treatments )", + "query_toks": [ + "SELECT", + "count", + "(", + "*", + ")", + "FROM", + "Dogs", + "WHERE", + "dog_id", + "NOT", + "IN", + "(", + "SELECT", + "dog_id", + "FROM", + "Treatments", + ")" + ], + "query_toks_no_value": [ + "select", + "count", + "(", + "*", + ")", + "from", + "dogs", + "where", + "dog_id", + "not", + "in", + "(", + "select", + "dog_id", + "from", + "treatments", + ")" + ], + "question": "How many dogs have not gone through any treatment?", + "question_toks": [ + "How", + "many", + "dogs", + "have", + "not", + "gone", + "through", + "any", + "treatment", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 5 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 3, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + true, + 8, + [ + 0, + [ + 0, + 20, + false + ], + null + ], + { + "from": { + "table_units": [ + [ + "table_unit", + 7 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 45, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + }, + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "dog_kennels", + "query": "select count(*) from dogs where dog_id not in ( select dog_id from treatments )", + "query_toks": [ + "select", + "count", + "(", + "*", + ")", + "from", + "dogs", + "where", + "dog_id", + "not", + "in", + "(", + "select", + "dog_id", + "from", + "treatments", + ")" + ], + "query_toks_no_value": [ + "select", + "count", + "(", + "*", + ")", + "from", + "dogs", + "where", + "dog_id", + "not", + "in", + "(", + "select", + "dog_id", + "from", + "treatments", + ")" + ], + "question": "Tell me the number of dogs that have not received any treatment .", + "question_toks": [ + "Tell", + "me", + "the", + "number", + "of", + "dogs", + "that", + "have", + "not", + "received", + "any", + "treatment", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 5 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 3, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + true, + 8, + [ + 0, + [ + 0, + 20, + false + ], + null + ], + { + "from": { + "table_units": [ + [ + "table_unit", + 7 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 45, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + }, + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "dog_kennels", + "query": "SELECT count(*) FROM Owners WHERE owner_id NOT IN ( SELECT owner_id FROM Dogs )", + "query_toks": [ + "SELECT", + "count", + "(", + "*", + ")", + "FROM", + "Owners", + "WHERE", + "owner_id", + "NOT", + "IN", + "(", + "SELECT", + "owner_id", + "FROM", + "Dogs", + ")" + ], + "query_toks_no_value": [ + "select", + "count", + "(", + "*", + ")", + "from", + "owners", + "where", + "owner_id", + "not", + "in", + "(", + "select", + "owner_id", + "from", + "dogs", + ")" + ], + "question": "How many owners temporarily do not have any dogs?", + "question_toks": [ + "How", + "many", + "owners", + "temporarily", + "do", + "not", + "have", + "any", + "dogs", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 4 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 3, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + true, + 8, + [ + 0, + [ + 0, + 10, + false + ], + null + ], + { + "from": { + "table_units": [ + [ + "table_unit", + 5 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 21, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + }, + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "dog_kennels", + "query": "SELECT count(*) FROM Owners WHERE owner_id NOT IN ( SELECT owner_id FROM Dogs )", + "query_toks": [ + "SELECT", + "count", + "(", + "*", + ")", + "FROM", + "Owners", + "WHERE", + "owner_id", + "NOT", + "IN", + "(", + "SELECT", + "owner_id", + "FROM", + "Dogs", + ")" + ], + "query_toks_no_value": [ + "select", + "count", + "(", + "*", + ")", + "from", + "owners", + "where", + "owner_id", + "not", + "in", + "(", + "select", + "owner_id", + "from", + "dogs", + ")" + ], + "question": "Find the number of owners who do not own any dogs at this moment.", + "question_toks": [ + "Find", + "the", + "number", + "of", + "owners", + "who", + "do", + "not", + "own", + "any", + "dogs", + "at", + "this", + "moment", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 4 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 3, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + true, + 8, + [ + 0, + [ + 0, + 10, + false + ], + null + ], + { + "from": { + "table_units": [ + [ + "table_unit", + 5 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 21, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + }, + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "dog_kennels", + "query": "SELECT count(*) FROM Professionals WHERE professional_id NOT IN ( SELECT professional_id FROM Treatments )", + "query_toks": [ + "SELECT", + "count", + "(", + "*", + ")", + "FROM", + "Professionals", + "WHERE", + "professional_id", + "NOT", + "IN", + "(", + "SELECT", + "professional_id", + "FROM", + "Treatments", + ")" + ], + "query_toks_no_value": [ + "select", + "count", + "(", + "*", + ")", + "from", + "professionals", + "where", + "professional_id", + "not", + "in", + "(", + "select", + "professional_id", + "from", + "treatments", + ")" + ], + "question": "How many professionals did not operate any treatment on dogs?", + "question_toks": [ + "How", + "many", + "professionals", + "did", + "not", + "operate", + "any", + "treatment", + "on", + "dogs", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 6 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 3, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + true, + 8, + [ + 0, + [ + 0, + 33, + false + ], + null + ], + { + "from": { + "table_units": [ + [ + "table_unit", + 7 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 46, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + }, + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "dog_kennels", + "query": "SELECT count(*) FROM Professionals WHERE professional_id NOT IN ( SELECT professional_id FROM Treatments )", + "query_toks": [ + "SELECT", + "count", + "(", + "*", + ")", + "FROM", + "Professionals", + "WHERE", + "professional_id", + "NOT", + "IN", + "(", + "SELECT", + "professional_id", + "FROM", + "Treatments", + ")" + ], + "query_toks_no_value": [ + "select", + "count", + "(", + "*", + ")", + "from", + "professionals", + "where", + "professional_id", + "not", + "in", + "(", + "select", + "professional_id", + "from", + "treatments", + ")" + ], + "question": "Find the number of professionals who have not treated any dogs.", + "question_toks": [ + "Find", + "the", + "number", + "of", + "professionals", + "who", + "have", + "not", + "treated", + "any", + "dogs", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 6 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 3, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + true, + 8, + [ + 0, + [ + 0, + 33, + false + ], + null + ], + { + "from": { + "table_units": [ + [ + "table_unit", + 7 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 46, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + }, + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "dog_kennels", + "query": "SELECT name , age , weight FROM Dogs WHERE abandoned_yn = 1", + "query_toks": [ + "SELECT", + "name", + ",", + "age", + ",", + "weight", + "FROM", + "Dogs", + "WHERE", + "abandoned_yn", + "=", + "1" + ], + "query_toks_no_value": [ + "select", + "name", + ",", + "age", + ",", + "weight", + "from", + "dogs", + "where", + "abandoned_yn", + "=", + "value" + ], + "question": "List the dog name, age and weight of the dogs who have been abandoned? 1 stands for yes, and 0 stands for no.", + "question_toks": [ + "List", + "the", + "dog", + "name", + ",", + "age", + "and", + "weight", + "of", + "the", + "dogs", + "who", + "have", + "been", + "abandoned", + "?", + "1", + "stands", + "for", + "yes", + ",", + "and", + "0", + "stands", + "for", + "no", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 5 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 25, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 26, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 29, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 22, + false + ], + null + ], + 1.0, + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "dog_kennels", + "query": "SELECT name , age , weight FROM Dogs WHERE abandoned_yn = 1", + "query_toks": [ + "SELECT", + "name", + ",", + "age", + ",", + "weight", + "FROM", + "Dogs", + "WHERE", + "abandoned_yn", + "=", + "1" + ], + "query_toks_no_value": [ + "select", + "name", + ",", + "age", + ",", + "weight", + "from", + "dogs", + "where", + "abandoned_yn", + "=", + "value" + ], + "question": "What are the dog name, age and weight of the dogs that were abandoned? Note that 1 stands for yes, and 0 stands for no in the tables.", + "question_toks": [ + "What", + "are", + "the", + "dog", + "name", + ",", + "age", + "and", + "weight", + "of", + "the", + "dogs", + "that", + "were", + "abandoned", + "?", + "Note", + "that", + "1", + "stands", + "for", + "yes", + ",", + "and", + "0", + "stands", + "for", + "no", + "in", + "the", + "tables", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 5 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 25, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 26, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 29, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 22, + false + ], + null + ], + 1.0, + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "dog_kennels", + "query": "SELECT avg(age) FROM Dogs", + "query_toks": [ + "SELECT", + "avg", + "(", + "age", + ")", + "FROM", + "Dogs" + ], + "query_toks_no_value": [ + "select", + "avg", + "(", + "age", + ")", + "from", + "dogs" + ], + "question": "What is the average age of all the dogs?", + "question_toks": [ + "What", + "is", + "the", + "average", + "age", + "of", + "all", + "the", + "dogs", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 5 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 5, + [ + 0, + [ + 0, + 26, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "dog_kennels", + "query": "SELECT avg(age) FROM Dogs", + "query_toks": [ + "SELECT", + "avg", + "(", + "age", + ")", + "FROM", + "Dogs" + ], + "query_toks_no_value": [ + "select", + "avg", + "(", + "age", + ")", + "from", + "dogs" + ], + "question": "Compute the average age of all the dogs.", + "question_toks": [ + "Compute", + "the", + "average", + "age", + "of", + "all", + "the", + "dogs", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 5 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 5, + [ + 0, + [ + 0, + 26, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "dog_kennels", + "query": "SELECT max(age) FROM Dogs", + "query_toks": [ + "SELECT", + "max", + "(", + "age", + ")", + "FROM", + "Dogs" + ], + "query_toks_no_value": [ + "select", + "max", + "(", + "age", + ")", + "from", + "dogs" + ], + "question": "What is the age of the oldest dog?", + "question_toks": [ + "What", + "is", + "the", + "age", + "of", + "the", + "oldest", + "dog", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 5 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 1, + [ + 0, + [ + 0, + 26, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "dog_kennels", + "query": "SELECT max(age) FROM Dogs", + "query_toks": [ + "SELECT", + "max", + "(", + "age", + ")", + "FROM", + "Dogs" + ], + "query_toks_no_value": [ + "select", + "max", + "(", + "age", + ")", + "from", + "dogs" + ], + "question": "Tell me the age of the oldest dog.", + "question_toks": [ + "Tell", + "me", + "the", + "age", + "of", + "the", + "oldest", + "dog", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 5 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 1, + [ + 0, + [ + 0, + 26, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "dog_kennels", + "query": "SELECT charge_type , charge_amount FROM Charges", + "query_toks": [ + "SELECT", + "charge_type", + ",", + "charge_amount", + "FROM", + "Charges" + ], + "query_toks_no_value": [ + "select", + "charge_type", + ",", + "charge_amount", + "from", + "charges" + ], + "question": "How much does each charge type costs? List both charge type and amount.", + "question_toks": [ + "How", + "much", + "does", + "each", + "charge", + "type", + "costs", + "?", + "List", + "both", + "charge", + "type", + "and", + "amount", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 4, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 5, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "dog_kennels", + "query": "SELECT charge_type , charge_amount FROM Charges", + "query_toks": [ + "SELECT", + "charge_type", + ",", + "charge_amount", + "FROM", + "Charges" + ], + "query_toks_no_value": [ + "select", + "charge_type", + ",", + "charge_amount", + "from", + "charges" + ], + "question": "List each charge type and its amount.", + "question_toks": [ + "List", + "each", + "charge", + "type", + "and", + "its", + "amount", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 4, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 5, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "dog_kennels", + "query": "SELECT max(charge_amount) FROM Charges", + "query_toks": [ + "SELECT", + "max", + "(", + "charge_amount", + ")", + "FROM", + "Charges" + ], + "query_toks_no_value": [ + "select", + "max", + "(", + "charge_amount", + ")", + "from", + "charges" + ], + "question": "How much does the most expensive charge type costs?", + "question_toks": [ + "How", + "much", + "does", + "the", + "most", + "expensive", + "charge", + "type", + "costs", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 1, + [ + 0, + [ + 0, + 5, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "dog_kennels", + "query": "SELECT max(charge_amount) FROM Charges", + "query_toks": [ + "SELECT", + "max", + "(", + "charge_amount", + ")", + "FROM", + "Charges" + ], + "query_toks_no_value": [ + "select", + "max", + "(", + "charge_amount", + ")", + "from", + "charges" + ], + "question": "What is the charge amount of the most expensive charge type?", + "question_toks": [ + "What", + "is", + "the", + "charge", + "amount", + "of", + "the", + "most", + "expensive", + "charge", + "type", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 1, + [ + 0, + [ + 0, + 5, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "dog_kennels", + "query": "SELECT email_address , cell_number , home_phone FROM professionals", + "query_toks": [ + "SELECT", + "email_address", + ",", + "cell_number", + ",", + "home_phone", + "FROM", + "professionals" + ], + "query_toks_no_value": [ + "select", + "email_address", + ",", + "cell_number", + ",", + "home_phone", + "from", + "professionals" + ], + "question": "List the email, cell phone and home phone of all the professionals.", + "question_toks": [ + "List", + "the", + "email", + ",", + "cell", + "phone", + "and", + "home", + "phone", + "of", + "all", + "the", + "professionals", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 6 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 41, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 43, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 42, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "dog_kennels", + "query": "SELECT email_address , cell_number , home_phone FROM professionals", + "query_toks": [ + "SELECT", + "email_address", + ",", + "cell_number", + ",", + "home_phone", + "FROM", + "professionals" + ], + "query_toks_no_value": [ + "select", + "email_address", + ",", + "cell_number", + ",", + "home_phone", + "from", + "professionals" + ], + "question": "What are the email, cell phone and home phone of each professional?", + "question_toks": [ + "What", + "are", + "the", + "email", + ",", + "cell", + "phone", + "and", + "home", + "phone", + "of", + "each", + "professional", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 6 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 41, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 43, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 42, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "dog_kennels", + "query": "SELECT DISTINCT breed_code , size_code FROM dogs", + "query_toks": [ + "SELECT", + "DISTINCT", + "breed_code", + ",", + "size_code", + "FROM", + "dogs" + ], + "query_toks_no_value": [ + "select", + "distinct", + "breed_code", + ",", + "size_code", + "from", + "dogs" + ], + "question": "What are all the possible breed type and size type combinations?", + "question_toks": [ + "What", + "are", + "all", + "the", + "possible", + "breed", + "type", + "and", + "size", + "type", + "combinations", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 5 + ] + ], + "conds": [] + }, + "select": [ + true, + [ + [ + 0, + [ + 0, + [ + 0, + 23, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 24, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "dog_kennels", + "query": "SELECT DISTINCT breed_code , size_code FROM dogs", + "query_toks": [ + "SELECT", + "DISTINCT", + "breed_code", + ",", + "size_code", + "FROM", + "dogs" + ], + "query_toks_no_value": [ + "select", + "distinct", + "breed_code", + ",", + "size_code", + "from", + "dogs" + ], + "question": "Find the distinct breed type and size type combinations for dogs.", + "question_toks": [ + "Find", + "the", + "distinct", + "breed", + "type", + "and", + "size", + "type", + "combinations", + "for", + "dogs", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 5 + ] + ], + "conds": [] + }, + "select": [ + true, + [ + [ + 0, + [ + 0, + [ + 0, + 23, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 24, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "dog_kennels", + "query": "SELECT DISTINCT T1.first_name , T3.treatment_type_description FROM professionals AS T1 JOIN Treatments AS T2 ON T1.professional_id = T2.professional_id JOIN Treatment_types AS T3 ON T2.treatment_type_code = T3.treatment_type_code", + "query_toks": [ + "SELECT", + "DISTINCT", + "T1.first_name", + ",", + "T3.treatment_type_description", + "FROM", + "professionals", + "AS", + "T1", + "JOIN", + "Treatments", + "AS", + "T2", + "ON", + "T1.professional_id", + "=", + "T2.professional_id", + "JOIN", + "Treatment_types", + "AS", + "T3", + "ON", + "T2.treatment_type_code", + "=", + "T3.treatment_type_code" + ], + "query_toks_no_value": [ + "select", + "distinct", + "t1", + ".", + "first_name", + ",", + "t3", + ".", + "treatment_type_description", + "from", + "professionals", + "as", + "t1", + "join", + "treatments", + "as", + "t2", + "on", + "t1", + ".", + "professional_id", + "=", + "t2", + ".", + "professional_id", + "join", + "treatment_types", + "as", + "t3", + "on", + "t2", + ".", + "treatment_type_code", + "=", + "t3", + ".", + "treatment_type_code" + ], + "question": "List the first name of all the professionals along with the description of the treatment they have done.", + "question_toks": [ + "List", + "the", + "first", + "name", + "of", + "all", + "the", + "professionals", + "along", + "with", + "the", + "description", + "of", + "the", + "treatment", + "they", + "have", + "done", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 6 + ], + [ + "table_unit", + 7 + ], + [ + "table_unit", + 3 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 33, + false + ], + null + ], + [ + 0, + 46, + false + ], + null + ], + "and", + [ + false, + 2, + [ + 0, + [ + 0, + 47, + false + ], + null + ], + [ + 0, + 8, + false + ], + null + ] + ] + }, + "select": [ + true, + [ + [ + 0, + [ + 0, + [ + 0, + 35, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 9, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "dog_kennels", + "query": "SELECT DISTINCT T1.first_name , T3.treatment_type_description FROM professionals AS T1 JOIN Treatments AS T2 ON T1.professional_id = T2.professional_id JOIN Treatment_types AS T3 ON T2.treatment_type_code = T3.treatment_type_code", + "query_toks": [ + "SELECT", + "DISTINCT", + "T1.first_name", + ",", + "T3.treatment_type_description", + "FROM", + "professionals", + "AS", + "T1", + "JOIN", + "Treatments", + "AS", + "T2", + "ON", + "T1.professional_id", + "=", + "T2.professional_id", + "JOIN", + "Treatment_types", + "AS", + "T3", + "ON", + "T2.treatment_type_code", + "=", + "T3.treatment_type_code" + ], + "query_toks_no_value": [ + "select", + "distinct", + "t1", + ".", + "first_name", + ",", + "t3", + ".", + "treatment_type_description", + "from", + "professionals", + "as", + "t1", + "join", + "treatments", + "as", + "t2", + "on", + "t1", + ".", + "professional_id", + "=", + "t2", + ".", + "professional_id", + "join", + "treatment_types", + "as", + "t3", + "on", + "t2", + ".", + "treatment_type_code", + "=", + "t3", + ".", + "treatment_type_code" + ], + "question": "What are each professional's first name and description of the treatment they have performed?", + "question_toks": [ + "What", + "are", + "each", + "professional", + "'s", + "first", + "name", + "and", + "description", + "of", + "the", + "treatment", + "they", + "have", + "performed", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 6 + ], + [ + "table_unit", + 7 + ], + [ + "table_unit", + 3 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 33, + false + ], + null + ], + [ + 0, + 46, + false + ], + null + ], + "and", + [ + false, + 2, + [ + 0, + [ + 0, + 47, + false + ], + null + ], + [ + 0, + 8, + false + ], + null + ] + ] + }, + "select": [ + true, + [ + [ + 0, + [ + 0, + [ + 0, + 35, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 9, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "singer", + "query": "SELECT count(*) FROM singer", + "query_toks": [ + "SELECT", + "count", + "(", + "*", + ")", + "FROM", + "singer" + ], + "query_toks_no_value": [ + "select", + "count", + "(", + "*", + ")", + "from", + "singer" + ], + "question": "How many singers are there?", + "question_toks": [ + "How", + "many", + "singers", + "are", + "there", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 3, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "singer", + "query": "SELECT count(*) FROM singer", + "query_toks": [ + "SELECT", + "count", + "(", + "*", + ")", + "FROM", + "singer" + ], + "query_toks_no_value": [ + "select", + "count", + "(", + "*", + ")", + "from", + "singer" + ], + "question": "What is the count of singers?", + "question_toks": [ + "What", + "is", + "the", + "count", + "of", + "singers", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 3, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "singer", + "query": "SELECT Name FROM singer ORDER BY Net_Worth_Millions ASC", + "query_toks": [ + "SELECT", + "Name", + "FROM", + "singer", + "ORDER", + "BY", + "Net_Worth_Millions", + "ASC" + ], + "query_toks_no_value": [ + "select", + "name", + "from", + "singer", + "order", + "by", + "net_worth_millions", + "asc" + ], + "question": "List the name of singers in ascending order of net worth.", + "question_toks": [ + "List", + "the", + "name", + "of", + "singers", + "in", + "ascending", + "order", + "of", + "net", + "worth", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 2, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [ + "asc", + [ + [ + 0, + [ + 0, + 4, + false + ], + null + ] + ] + ], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "singer", + "query": "SELECT Name FROM singer ORDER BY Net_Worth_Millions ASC", + "query_toks": [ + "SELECT", + "Name", + "FROM", + "singer", + "ORDER", + "BY", + "Net_Worth_Millions", + "ASC" + ], + "query_toks_no_value": [ + "select", + "name", + "from", + "singer", + "order", + "by", + "net_worth_millions", + "asc" + ], + "question": "What are the names of singers ordered by ascending net worth?", + "question_toks": [ + "What", + "are", + "the", + "names", + "of", + "singers", + "ordered", + "by", + "ascending", + "net", + "worth", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 2, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [ + "asc", + [ + [ + 0, + [ + 0, + 4, + false + ], + null + ] + ] + ], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "singer", + "query": "SELECT Birth_Year , Citizenship FROM singer", + "query_toks": [ + "SELECT", + "Birth_Year", + ",", + "Citizenship", + "FROM", + "singer" + ], + "query_toks_no_value": [ + "select", + "birth_year", + ",", + "citizenship", + "from", + "singer" + ], + "question": "What are the birth year and citizenship of singers?", + "question_toks": [ + "What", + "are", + "the", + "birth", + "year", + "and", + "citizenship", + "of", + "singers", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 3, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 5, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "singer", + "query": "SELECT Birth_Year , Citizenship FROM singer", + "query_toks": [ + "SELECT", + "Birth_Year", + ",", + "Citizenship", + "FROM", + "singer" + ], + "query_toks_no_value": [ + "select", + "birth_year", + ",", + "citizenship", + "from", + "singer" + ], + "question": "What are the birth years and citizenships of the singers?", + "question_toks": [ + "What", + "are", + "the", + "birth", + "years", + "and", + "citizenships", + "of", + "the", + "singers", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 3, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 5, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "singer", + "query": "SELECT Name FROM singer WHERE Citizenship != \"France\"", + "query_toks": [ + "SELECT", + "Name", + "FROM", + "singer", + "WHERE", + "Citizenship", + "!", + "=", + "``", + "France", + "''" + ], + "query_toks_no_value": [ + "select", + "name", + "from", + "singer", + "where", + "citizenship", + "!", + "=", + "value" + ], + "question": "List the name of singers whose citizenship is not \"France\".", + "question_toks": [ + "List", + "the", + "name", + "of", + "singers", + "whose", + "citizenship", + "is", + "not", + "``", + "France", + "''", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 2, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 7, + [ + 0, + [ + 0, + 5, + false + ], + null + ], + "\"France\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "singer", + "query": "SELECT Name FROM singer WHERE Citizenship != \"France\"", + "query_toks": [ + "SELECT", + "Name", + "FROM", + "singer", + "WHERE", + "Citizenship", + "!", + "=", + "``", + "France", + "''" + ], + "query_toks_no_value": [ + "select", + "name", + "from", + "singer", + "where", + "citizenship", + "!", + "=", + "value" + ], + "question": "What are the names of the singers who are not French citizens?", + "question_toks": [ + "What", + "are", + "the", + "names", + "of", + "the", + "singers", + "who", + "are", + "not", + "French", + "citizens", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 2, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 7, + [ + 0, + [ + 0, + 5, + false + ], + null + ], + "\"France\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "singer", + "query": "SELECT Name FROM singer WHERE Birth_Year = 1948 OR Birth_Year = 1949", + "query_toks": [ + "SELECT", + "Name", + "FROM", + "singer", + "WHERE", + "Birth_Year", + "=", + "1948", + "OR", + "Birth_Year", + "=", + "1949" + ], + "query_toks_no_value": [ + "select", + "name", + "from", + "singer", + "where", + "birth_year", + "=", + "value", + "or", + "birth_year", + "=", + "value" + ], + "question": "Show the name of singers whose birth year is either 1948 or 1949?", + "question_toks": [ + "Show", + "the", + "name", + "of", + "singers", + "whose", + "birth", + "year", + "is", + "either", + "1948", + "or", + "1949", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 2, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 3, + false + ], + null + ], + 1948.0, + null + ], + "or", + [ + false, + 2, + [ + 0, + [ + 0, + 3, + false + ], + null + ], + 1949.0, + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "singer", + "query": "SELECT Name FROM singer WHERE Birth_Year = 1948 OR Birth_Year = 1949", + "query_toks": [ + "SELECT", + "Name", + "FROM", + "singer", + "WHERE", + "Birth_Year", + "=", + "1948", + "OR", + "Birth_Year", + "=", + "1949" + ], + "query_toks_no_value": [ + "select", + "name", + "from", + "singer", + "where", + "birth_year", + "=", + "value", + "or", + "birth_year", + "=", + "value" + ], + "question": "What are the names of the singers whose birth years are either 1948 or 1949?", + "question_toks": [ + "What", + "are", + "the", + "names", + "of", + "the", + "singers", + "whose", + "birth", + "years", + "are", + "either", + "1948", + "or", + "1949", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 2, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 3, + false + ], + null + ], + 1948.0, + null + ], + "or", + [ + false, + 2, + [ + 0, + [ + 0, + 3, + false + ], + null + ], + 1949.0, + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "singer", + "query": "SELECT Name FROM singer ORDER BY Net_Worth_Millions DESC LIMIT 1", + "query_toks": [ + "SELECT", + "Name", + "FROM", + "singer", + "ORDER", + "BY", + "Net_Worth_Millions", + "DESC", + "LIMIT", + "1" + ], + "query_toks_no_value": [ + "select", + "name", + "from", + "singer", + "order", + "by", + "net_worth_millions", + "desc", + "limit", + "value" + ], + "question": "What is the name of the singer with the largest net worth?", + "question_toks": [ + "What", + "is", + "the", + "name", + "of", + "the", + "singer", + "with", + "the", + "largest", + "net", + "worth", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 2, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [ + "desc", + [ + [ + 0, + [ + 0, + 4, + false + ], + null + ] + ] + ], + "limit": 1, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "singer", + "query": "SELECT Name FROM singer ORDER BY Net_Worth_Millions DESC LIMIT 1", + "query_toks": [ + "SELECT", + "Name", + "FROM", + "singer", + "ORDER", + "BY", + "Net_Worth_Millions", + "DESC", + "LIMIT", + "1" + ], + "query_toks_no_value": [ + "select", + "name", + "from", + "singer", + "order", + "by", + "net_worth_millions", + "desc", + "limit", + "value" + ], + "question": "What is the name of the singer who is worth the most?", + "question_toks": [ + "What", + "is", + "the", + "name", + "of", + "the", + "singer", + "who", + "is", + "worth", + "the", + "most", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 2, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [ + "desc", + [ + [ + 0, + [ + 0, + 4, + false + ], + null + ] + ] + ], + "limit": 1, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "singer", + "query": "SELECT Citizenship , COUNT(*) FROM singer GROUP BY Citizenship", + "query_toks": [ + "SELECT", + "Citizenship", + ",", + "COUNT", + "(", + "*", + ")", + "FROM", + "singer", + "GROUP", + "BY", + "Citizenship" + ], + "query_toks_no_value": [ + "select", + "citizenship", + ",", + "count", + "(", + "*", + ")", + "from", + "singer", + "group", + "by", + "citizenship" + ], + "question": "Show different citizenship of singers and the number of singers of each citizenship.", + "question_toks": [ + "Show", + "different", + "citizenship", + "of", + "singers", + "and", + "the", + "number", + "of", + "singers", + "of", + "each", + "citizenship", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 5, + false + ], + null + ] + ], + [ + 3, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 5, + false + ] + ], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "singer", + "query": "SELECT Citizenship , COUNT(*) FROM singer GROUP BY Citizenship", + "query_toks": [ + "SELECT", + "Citizenship", + ",", + "COUNT", + "(", + "*", + ")", + "FROM", + "singer", + "GROUP", + "BY", + "Citizenship" + ], + "query_toks_no_value": [ + "select", + "citizenship", + ",", + "count", + "(", + "*", + ")", + "from", + "singer", + "group", + "by", + "citizenship" + ], + "question": "For each citizenship, how many singers are from that country?", + "question_toks": [ + "For", + "each", + "citizenship", + ",", + "how", + "many", + "singers", + "are", + "from", + "that", + "country", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 5, + false + ], + null + ] + ], + [ + 3, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 5, + false + ] + ], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "singer", + "query": "SELECT Citizenship FROM singer GROUP BY Citizenship ORDER BY COUNT(*) DESC LIMIT 1", + "query_toks": [ + "SELECT", + "Citizenship", + "FROM", + "singer", + "GROUP", + "BY", + "Citizenship", + "ORDER", + "BY", + "COUNT", + "(", + "*", + ")", + "DESC", + "LIMIT", + "1" + ], + "query_toks_no_value": [ + "select", + "citizenship", + "from", + "singer", + "group", + "by", + "citizenship", + "order", + "by", + "count", + "(", + "*", + ")", + "desc", + "limit", + "value" + ], + "question": "Please show the most common citizenship of singers.", + "question_toks": [ + "Please", + "show", + "the", + "most", + "common", + "citizenship", + "of", + "singers", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 5, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 5, + false + ] + ], + "having": [], + "orderBy": [ + "desc", + [ + [ + 0, + [ + 3, + 0, + false + ], + null + ] + ] + ], + "limit": 1, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "singer", + "query": "select citizenship from singer group by citizenship order by count(*) desc limit 1", + "query_toks": [ + "select", + "citizenship", + "from", + "singer", + "group", + "by", + "citizenship", + "order", + "by", + "count", + "(", + "*", + ")", + "desc", + "limit", + "1" + ], + "query_toks_no_value": [ + "select", + "citizenship", + "from", + "singer", + "group", + "by", + "citizenship", + "order", + "by", + "count", + "(", + "*", + ")", + "desc", + "limit", + "value" + ], + "question": "What is the most common singer citizenship ?", + "question_toks": [ + "What", + "is", + "the", + "most", + "common", + "singer", + "citizenship", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 5, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 5, + false + ] + ], + "having": [], + "orderBy": [ + "desc", + [ + [ + 0, + [ + 3, + 0, + false + ], + null + ] + ] + ], + "limit": 1, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "singer", + "query": "SELECT Citizenship , max(Net_Worth_Millions) FROM singer GROUP BY Citizenship", + "query_toks": [ + "SELECT", + "Citizenship", + ",", + "max", + "(", + "Net_Worth_Millions", + ")", + "FROM", + "singer", + "GROUP", + "BY", + "Citizenship" + ], + "query_toks_no_value": [ + "select", + "citizenship", + ",", + "max", + "(", + "net_worth_millions", + ")", + "from", + "singer", + "group", + "by", + "citizenship" + ], + "question": "Show different citizenships and the maximum net worth of singers of each citizenship.", + "question_toks": [ + "Show", + "different", + "citizenships", + "and", + "the", + "maximum", + "net", + "worth", + "of", + "singers", + "of", + "each", + "citizenship", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 5, + false + ], + null + ] + ], + [ + 1, + [ + 0, + [ + 0, + 4, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 5, + false + ] + ], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "singer", + "query": "SELECT Citizenship , max(Net_Worth_Millions) FROM singer GROUP BY Citizenship", + "query_toks": [ + "SELECT", + "Citizenship", + ",", + "max", + "(", + "Net_Worth_Millions", + ")", + "FROM", + "singer", + "GROUP", + "BY", + "Citizenship" + ], + "query_toks_no_value": [ + "select", + "citizenship", + ",", + "max", + "(", + "net_worth_millions", + ")", + "from", + "singer", + "group", + "by", + "citizenship" + ], + "question": "For each citizenship, what is the maximum net worth?", + "question_toks": [ + "For", + "each", + "citizenship", + ",", + "what", + "is", + "the", + "maximum", + "net", + "worth", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 5, + false + ], + null + ] + ], + [ + 1, + [ + 0, + [ + 0, + 4, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 5, + false + ] + ], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "singer", + "query": "SELECT T2.Title , T1.Name FROM singer AS T1 JOIN song AS T2 ON T1.Singer_ID = T2.Singer_ID", + "query_toks": [ + "SELECT", + "T2.Title", + ",", + "T1.Name", + "FROM", + "singer", + "AS", + "T1", + "JOIN", + "song", + "AS", + "T2", + "ON", + "T1.Singer_ID", + "=", + "T2.Singer_ID" + ], + "query_toks_no_value": [ + "select", + "t2", + ".", + "title", + ",", + "t1", + ".", + "name", + "from", + "singer", + "as", + "t1", + "join", + "song", + "as", + "t2", + "on", + "t1", + ".", + "singer_id", + "=", + "t2", + ".", + "singer_id" + ], + "question": "Show titles of songs and names of singers.", + "question_toks": [ + "Show", + "titles", + "of", + "songs", + "and", + "names", + "of", + "singers", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ], + [ + "table_unit", + 1 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 1, + false + ], + null + ], + [ + 0, + 8, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 7, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 2, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "singer", + "query": "SELECT T2.Title , T1.Name FROM singer AS T1 JOIN song AS T2 ON T1.Singer_ID = T2.Singer_ID", + "query_toks": [ + "SELECT", + "T2.Title", + ",", + "T1.Name", + "FROM", + "singer", + "AS", + "T1", + "JOIN", + "song", + "AS", + "T2", + "ON", + "T1.Singer_ID", + "=", + "T2.Singer_ID" + ], + "query_toks_no_value": [ + "select", + "t2", + ".", + "title", + ",", + "t1", + ".", + "name", + "from", + "singer", + "as", + "t1", + "join", + "song", + "as", + "t2", + "on", + "t1", + ".", + "singer_id", + "=", + "t2", + ".", + "singer_id" + ], + "question": "What are the song titles and singer names?", + "question_toks": [ + "What", + "are", + "the", + "song", + "titles", + "and", + "singer", + "names", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ], + [ + "table_unit", + 1 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 1, + false + ], + null + ], + [ + 0, + 8, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 7, + false + ], + null + ] + ], + [ + 0, + [ + 0, + [ + 0, + 2, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "singer", + "query": "SELECT DISTINCT T1.Name FROM singer AS T1 JOIN song AS T2 ON T1.Singer_ID = T2.Singer_ID WHERE T2.Sales > 300000", + "query_toks": [ + "SELECT", + "DISTINCT", + "T1.Name", + "FROM", + "singer", + "AS", + "T1", + "JOIN", + "song", + "AS", + "T2", + "ON", + "T1.Singer_ID", + "=", + "T2.Singer_ID", + "WHERE", + "T2.Sales", + ">", + "300000" + ], + "query_toks_no_value": [ + "select", + "distinct", + "t1", + ".", + "name", + "from", + "singer", + "as", + "t1", + "join", + "song", + "as", + "t2", + "on", + "t1", + ".", + "singer_id", + "=", + "t2", + ".", + "singer_id", + "where", + "t2", + ".", + "sales", + ">", + "value" + ], + "question": "Show distinct names of singers that have songs with sales more than 300000.", + "question_toks": [ + "Show", + "distinct", + "names", + "of", + "singers", + "that", + "have", + "songs", + "with", + "sales", + "more", + "than", + "300000", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ], + [ + "table_unit", + 1 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 1, + false + ], + null + ], + [ + 0, + 8, + false + ], + null + ] + ] + }, + "select": [ + true, + [ + [ + 0, + [ + 0, + [ + 0, + 2, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 3, + [ + 0, + [ + 0, + 9, + false + ], + null + ], + 300000.0, + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "singer", + "query": "SELECT DISTINCT T1.Name FROM singer AS T1 JOIN song AS T2 ON T1.Singer_ID = T2.Singer_ID WHERE T2.Sales > 300000", + "query_toks": [ + "SELECT", + "DISTINCT", + "T1.Name", + "FROM", + "singer", + "AS", + "T1", + "JOIN", + "song", + "AS", + "T2", + "ON", + "T1.Singer_ID", + "=", + "T2.Singer_ID", + "WHERE", + "T2.Sales", + ">", + "300000" + ], + "query_toks_no_value": [ + "select", + "distinct", + "t1", + ".", + "name", + "from", + "singer", + "as", + "t1", + "join", + "song", + "as", + "t2", + "on", + "t1", + ".", + "singer_id", + "=", + "t2", + ".", + "singer_id", + "where", + "t2", + ".", + "sales", + ">", + "value" + ], + "question": "what are the different names of the singers that have sales more than 300000?", + "question_toks": [ + "what", + "are", + "the", + "different", + "names", + "of", + "the", + "singers", + "that", + "have", + "sales", + "more", + "than", + "300000", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ], + [ + "table_unit", + 1 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 1, + false + ], + null + ], + [ + 0, + 8, + false + ], + null + ] + ] + }, + "select": [ + true, + [ + [ + 0, + [ + 0, + [ + 0, + 2, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 3, + [ + 0, + [ + 0, + 9, + false + ], + null + ], + 300000.0, + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "singer", + "query": "SELECT T1.Name FROM singer AS T1 JOIN song AS T2 ON T1.Singer_ID = T2.Singer_ID GROUP BY T1.Name HAVING COUNT(*) > 1", + "query_toks": [ + "SELECT", + "T1.Name", + "FROM", + "singer", + "AS", + "T1", + "JOIN", + "song", + "AS", + "T2", + "ON", + "T1.Singer_ID", + "=", + "T2.Singer_ID", + "GROUP", + "BY", + "T1.Name", + "HAVING", + "COUNT", + "(", + "*", + ")", + ">", + "1" + ], + "query_toks_no_value": [ + "select", + "t1", + ".", + "name", + "from", + "singer", + "as", + "t1", + "join", + "song", + "as", + "t2", + "on", + "t1", + ".", + "singer_id", + "=", + "t2", + ".", + "singer_id", + "group", + "by", + "t1", + ".", + "name", + "having", + "count", + "(", + "*", + ")", + ">", + "value" + ], + "question": "Show the names of singers that have more than one song.", + "question_toks": [ + "Show", + "the", + "names", + "of", + "singers", + "that", + "have", + "more", + "than", + "one", + "song", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ], + [ + "table_unit", + 1 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 1, + false + ], + null + ], + [ + 0, + 8, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 2, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 2, + false + ] + ], + "having": [ + [ + false, + 3, + [ + 0, + [ + 3, + 0, + false + ], + null + ], + 1.0, + null + ] + ], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "singer", + "query": "SELECT T1.Name FROM singer AS T1 JOIN song AS T2 ON T1.Singer_ID = T2.Singer_ID GROUP BY T1.Name HAVING COUNT(*) > 1", + "query_toks": [ + "SELECT", + "T1.Name", + "FROM", + "singer", + "AS", + "T1", + "JOIN", + "song", + "AS", + "T2", + "ON", + "T1.Singer_ID", + "=", + "T2.Singer_ID", + "GROUP", + "BY", + "T1.Name", + "HAVING", + "COUNT", + "(", + "*", + ")", + ">", + "1" + ], + "query_toks_no_value": [ + "select", + "t1", + ".", + "name", + "from", + "singer", + "as", + "t1", + "join", + "song", + "as", + "t2", + "on", + "t1", + ".", + "singer_id", + "=", + "t2", + ".", + "singer_id", + "group", + "by", + "t1", + ".", + "name", + "having", + "count", + "(", + "*", + ")", + ">", + "value" + ], + "question": "What are the names of the singers that have more than one songs?", + "question_toks": [ + "What", + "are", + "the", + "names", + "of", + "the", + "singers", + "that", + "have", + "more", + "than", + "one", + "songs", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ], + [ + "table_unit", + 1 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 1, + false + ], + null + ], + [ + 0, + 8, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 2, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 2, + false + ] + ], + "having": [ + [ + false, + 3, + [ + 0, + [ + 3, + 0, + false + ], + null + ], + 1.0, + null + ] + ], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "singer", + "query": "SELECT T1.Name , sum(T2.Sales) FROM singer AS T1 JOIN song AS T2 ON T1.Singer_ID = T2.Singer_ID GROUP BY T1.Name", + "query_toks": [ + "SELECT", + "T1.Name", + ",", + "sum", + "(", + "T2.Sales", + ")", + "FROM", + "singer", + "AS", + "T1", + "JOIN", + "song", + "AS", + "T2", + "ON", + "T1.Singer_ID", + "=", + "T2.Singer_ID", + "GROUP", + "BY", + "T1.Name" + ], + "query_toks_no_value": [ + "select", + "t1", + ".", + "name", + ",", + "sum", + "(", + "t2", + ".", + "sales", + ")", + "from", + "singer", + "as", + "t1", + "join", + "song", + "as", + "t2", + "on", + "t1", + ".", + "singer_id", + "=", + "t2", + ".", + "singer_id", + "group", + "by", + "t1", + ".", + "name" + ], + "question": "Show the names of singers and the total sales of their songs.", + "question_toks": [ + "Show", + "the", + "names", + "of", + "singers", + "and", + "the", + "total", + "sales", + "of", + "their", + "songs", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ], + [ + "table_unit", + 1 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 1, + false + ], + null + ], + [ + 0, + 8, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 2, + false + ], + null + ] + ], + [ + 4, + [ + 0, + [ + 0, + 9, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 2, + false + ] + ], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "singer", + "query": "SELECT T1.Name , sum(T2.Sales) FROM singer AS T1 JOIN song AS T2 ON T1.Singer_ID = T2.Singer_ID GROUP BY T1.Name", + "query_toks": [ + "SELECT", + "T1.Name", + ",", + "sum", + "(", + "T2.Sales", + ")", + "FROM", + "singer", + "AS", + "T1", + "JOIN", + "song", + "AS", + "T2", + "ON", + "T1.Singer_ID", + "=", + "T2.Singer_ID", + "GROUP", + "BY", + "T1.Name" + ], + "query_toks_no_value": [ + "select", + "t1", + ".", + "name", + ",", + "sum", + "(", + "t2", + ".", + "sales", + ")", + "from", + "singer", + "as", + "t1", + "join", + "song", + "as", + "t2", + "on", + "t1", + ".", + "singer_id", + "=", + "t2", + ".", + "singer_id", + "group", + "by", + "t1", + ".", + "name" + ], + "question": "For each singer name, what is the total sales for their songs?", + "question_toks": [ + "For", + "each", + "singer", + "name", + ",", + "what", + "is", + "the", + "total", + "sales", + "for", + "their", + "songs", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ], + [ + "table_unit", + 1 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 1, + false + ], + null + ], + [ + 0, + 8, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 2, + false + ], + null + ] + ], + [ + 4, + [ + 0, + [ + 0, + 9, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 2, + false + ] + ], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "singer", + "query": "SELECT Name FROM singer WHERE Singer_ID NOT IN (SELECT Singer_ID FROM song)", + "query_toks": [ + "SELECT", + "Name", + "FROM", + "singer", + "WHERE", + "Singer_ID", + "NOT", + "IN", + "(", + "SELECT", + "Singer_ID", + "FROM", + "song", + ")" + ], + "query_toks_no_value": [ + "select", + "name", + "from", + "singer", + "where", + "singer_id", + "not", + "in", + "(", + "select", + "singer_id", + "from", + "song", + ")" + ], + "question": "List the name of singers that do not have any song.", + "question_toks": [ + "List", + "the", + "name", + "of", + "singers", + "that", + "do", + "not", + "have", + "any", + "song", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 2, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + true, + 8, + [ + 0, + [ + 0, + 1, + false + ], + null + ], + { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 8, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + }, + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "singer", + "query": "SELECT Name FROM singer WHERE Singer_ID NOT IN (SELECT Singer_ID FROM song)", + "query_toks": [ + "SELECT", + "Name", + "FROM", + "singer", + "WHERE", + "Singer_ID", + "NOT", + "IN", + "(", + "SELECT", + "Singer_ID", + "FROM", + "song", + ")" + ], + "query_toks_no_value": [ + "select", + "name", + "from", + "singer", + "where", + "singer_id", + "not", + "in", + "(", + "select", + "singer_id", + "from", + "song", + ")" + ], + "question": "What is the sname of every sing that does not have any song?", + "question_toks": [ + "What", + "is", + "the", + "sname", + "of", + "every", + "sing", + "that", + "does", + "not", + "have", + "any", + "song", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 2, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + true, + 8, + [ + 0, + [ + 0, + 1, + false + ], + null + ], + { + "from": { + "table_units": [ + [ + "table_unit", + 1 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 8, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + }, + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "singer", + "query": "SELECT Citizenship FROM singer WHERE Birth_Year < 1945 INTERSECT SELECT Citizenship FROM singer WHERE Birth_Year > 1955", + "query_toks": [ + "SELECT", + "Citizenship", + "FROM", + "singer", + "WHERE", + "Birth_Year", + "<", + "1945", + "INTERSECT", + "SELECT", + "Citizenship", + "FROM", + "singer", + "WHERE", + "Birth_Year", + ">", + "1955" + ], + "query_toks_no_value": [ + "select", + "citizenship", + "from", + "singer", + "where", + "birth_year", + "<", + "value", + "intersect", + "select", + "citizenship", + "from", + "singer", + "where", + "birth_year", + ">", + "value" + ], + "question": "Show the citizenship shared by singers with birth year before 1945 and after 1955.", + "question_toks": [ + "Show", + "the", + "citizenship", + "shared", + "by", + "singers", + "with", + "birth", + "year", + "before", + "1945", + "and", + "after", + "1955", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 5, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 4, + [ + 0, + [ + 0, + 3, + false + ], + null + ], + 1945.0, + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 5, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 3, + [ + 0, + [ + 0, + 3, + false + ], + null + ], + 1955.0, + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + }, + "union": null, + "except": null + } + }, + { + "db_id": "singer", + "query": "SELECT Citizenship FROM singer WHERE Birth_Year < 1945 INTERSECT SELECT Citizenship FROM singer WHERE Birth_Year > 1955", + "query_toks": [ + "SELECT", + "Citizenship", + "FROM", + "singer", + "WHERE", + "Birth_Year", + "<", + "1945", + "INTERSECT", + "SELECT", + "Citizenship", + "FROM", + "singer", + "WHERE", + "Birth_Year", + ">", + "1955" + ], + "query_toks_no_value": [ + "select", + "citizenship", + "from", + "singer", + "where", + "birth_year", + "<", + "value", + "intersect", + "select", + "citizenship", + "from", + "singer", + "where", + "birth_year", + ">", + "value" + ], + "question": "What are the citizenships that are shared by singers with a birth year before 1945 and after 1955?", + "question_toks": [ + "What", + "are", + "the", + "citizenships", + "that", + "are", + "shared", + "by", + "singers", + "with", + "a", + "birth", + "year", + "before", + "1945", + "and", + "after", + "1955", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 5, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 4, + [ + 0, + [ + 0, + 3, + false + ], + null + ], + 1945.0, + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": { + "from": { + "table_units": [ + [ + "table_unit", + 0 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 5, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 3, + [ + 0, + [ + 0, + 3, + false + ], + null + ], + 1955.0, + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + }, + "union": null, + "except": null + } + }, + { + "db_id": "real_estate_properties", + "query": "SELECT count(*) FROM Other_Available_Features", + "query_toks": [ + "SELECT", + "count", + "(", + "*", + ")", + "FROM", + "Other_Available_Features" + ], + "query_toks_no_value": [ + "select", + "count", + "(", + "*", + ")", + "from", + "other_available_features" + ], + "question": "How many available features are there in total?", + "question_toks": [ + "How", + "many", + "available", + "features", + "are", + "there", + "in", + "total", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 3, + [ + 0, + [ + 0, + 0, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "real_estate_properties", + "query": "SELECT T2.feature_type_name FROM Other_Available_Features AS T1 JOIN Ref_Feature_Types AS T2 ON T1.feature_type_code = T2.feature_type_code WHERE T1.feature_name = \"AirCon\"", + "query_toks": [ + "SELECT", + "T2.feature_type_name", + "FROM", + "Other_Available_Features", + "AS", + "T1", + "JOIN", + "Ref_Feature_Types", + "AS", + "T2", + "ON", + "T1.feature_type_code", + "=", + "T2.feature_type_code", + "WHERE", + "T1.feature_name", + "=", + "``", + "AirCon", + "''" + ], + "query_toks_no_value": [ + "select", + "t2", + ".", + "feature_type_name", + "from", + "other_available_features", + "as", + "t1", + "join", + "ref_feature_types", + "as", + "t2", + "on", + "t1", + ".", + "feature_type_code", + "=", + "t2", + ".", + "feature_type_code", + "where", + "t1", + ".", + "feature_name", + "=", + "value" + ], + "question": "What is the feature type name of feature AirCon?", + "question_toks": [ + "What", + "is", + "the", + "feature", + "type", + "name", + "of", + "feature", + "AirCon", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 2 + ], + [ + "table_unit", + 0 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 6, + false + ], + null + ], + [ + 0, + 1, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 2, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 7, + false + ], + null + ], + "\"AirCon\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "real_estate_properties", + "query": "SELECT T2.property_type_description FROM Properties AS T1 JOIN Ref_Property_Types AS T2 ON T1.property_type_code = T2.property_type_code GROUP BY T1.property_type_code", + "query_toks": [ + "SELECT", + "T2.property_type_description", + "FROM", + "Properties", + "AS", + "T1", + "JOIN", + "Ref_Property_Types", + "AS", + "T2", + "ON", + "T1.property_type_code", + "=", + "T2.property_type_code", + "GROUP", + "BY", + "T1.property_type_code" + ], + "query_toks_no_value": [ + "select", + "t2", + ".", + "property_type_description", + "from", + "properties", + "as", + "t1", + "join", + "ref_property_types", + "as", + "t2", + "on", + "t1", + ".", + "property_type_code", + "=", + "t2", + ".", + "property_type_code", + "group", + "by", + "t1", + ".", + "property_type_code" + ], + "question": "Show the property type descriptions of properties belonging to that code.", + "question_toks": [ + "Show", + "the", + "property", + "type", + "descriptions", + "of", + "properties", + "belonging", + "to", + "that", + "code", + "." + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 3 + ], + [ + "table_unit", + 1 + ] + ], + "conds": [ + [ + false, + 2, + [ + 0, + [ + 0, + 10, + false + ], + null + ], + [ + 0, + 3, + false + ], + null + ] + ] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 4, + false + ], + null + ] + ] + ] + ], + "where": [], + "groupBy": [ + [ + 0, + 10, + false + ] + ], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + } + }, + { + "db_id": "real_estate_properties", + "query": "SELECT property_name FROM Properties WHERE property_type_code = \"House\" UNION SELECT property_name FROM Properties WHERE property_type_code = \"Apartment\" AND room_count > 1", + "query_toks": [ + "SELECT", + "property_name", + "FROM", + "Properties", + "WHERE", + "property_type_code", + "=", + "``", + "House", + "''", + "UNION", + "SELECT", + "property_name", + "FROM", + "Properties", + "WHERE", + "property_type_code", + "=", + "``", + "Apartment", + "''", + "AND", + "room_count", + ">", + "1" + ], + "query_toks_no_value": [ + "select", + "property_name", + "from", + "properties", + "where", + "property_type_code", + "=", + "value", + "union", + "select", + "property_name", + "from", + "properties", + "where", + "property_type_code", + "=", + "value", + "and", + "room_count", + ">", + "value" + ], + "question": "What are the names of properties that are either houses or apartments with more than 1 room?", + "question_toks": [ + "What", + "are", + "the", + "names", + "of", + "properties", + "that", + "are", + "either", + "houses", + "or", + "apartments", + "with", + "more", + "than", + "1", + "room", + "?" + ], + "sql": { + "from": { + "table_units": [ + [ + "table_unit", + 3 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 13, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 10, + false + ], + null + ], + "\"House\"", + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": { + "from": { + "table_units": [ + [ + "table_unit", + 3 + ] + ], + "conds": [] + }, + "select": [ + false, + [ + [ + 0, + [ + 0, + [ + 0, + 13, + false + ], + null + ] + ] + ] + ], + "where": [ + [ + false, + 2, + [ + 0, + [ + 0, + 10, + false + ], + null + ], + "\"Apartment\"", + null + ], + "and", + [ + false, + 3, + [ + 0, + [ + 0, + 15, + false + ], + null + ], + 1.0, + null + ] + ], + "groupBy": [], + "having": [], + "orderBy": [], + "limit": null, + "intersect": null, + "union": null, + "except": null + }, + "except": null + } + } +] \ No newline at end of file